{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Text Mining for Hypothesis Generation - Improvements and Validation\n",
    "Group Members: Raya Kavosh, Ian Carrasco, Braden Riggs, Ron Hasson, Cameron Goharbin, Justin Yang, Maxwell Chen, Mor Greenbaum\n",
    "\n",
    "- Maxwell Chen ([GitHub](https://github.com/Xawwell), [LinkedIn](https://www.linkedin.com/in/maxchen1389/), [Twitter](https://twitter.com/CMaxwellsPFC))\n",
    "\n",
    "- Cameron Goharbin ([Github](https://github.com/cameron-g), [LinkedIn](https://www.linkedin.com/in/cameron-goharbin/))\n",
    "\n",
    "- Ron Hasson ([Github](https://github.com/Rohass20), [LinkedIn](https://www.linkedin.com/in/ronhasson/))\n",
    "\n",
    "- Raya Kavosh ([Github](https://github.com/raya-kavosh))\n",
    "\n",
    "- Braden Riggs ([GitHub](https://github.com/Briggs599), [LinkedIn](https://www.linkedin.com/in/briggs599/), [Twitter](https://twitter.com/BradenRiggs1))\n",
    "\n",
    "- Justin Yang ([GitHub](https://github.com/justintheyang), [LinkedIn](https://www.linkedin.com/in/justintheyang/))\n",
    "\n",
    "- Ian Carrasco ([Github](https://github.com/IanCarrasco), [LinkedIn](https://www.linkedin.com/in/ian-carrasco/))\n",
    "\n",
    "(FOR PUBLIC RELEASE)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Overview \n",
    ">In this work, we aim to develop new approaches to automated hypothesis generation by utilizing the vast neuroscience literature. Building on prior work in semi-automated hypothesis generation, we present a hypothesis-first algorithm for computing a hypothesis \"attractiveness\" metric which is more robust to spurious correlations (Voytek & Voytek, 2012). Using our proposed algorithm to generate hypotheses using PubMed data collected from the years 1700 to 2000, we then validate said hypotheses on data from 2000 to the present based on increased word mentions. This validation is used as a benchmark to quantify the strength of our proposed algorithm and demonstrate the potential to generate future hypotheses to be pursued."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Research Question\n",
    ">##### Can we generate valid hypotheses and assess their prevalence across time by utilizing a percent change measure gathered from large-scale, time-based analysis of neuroscience literature?"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Background & Prior Work\n",
    ">With neuroscientific research being published at an increasingly high rate, it is becoming increasingly difficult for individual researchers to keep up with the field, potentially missing novel interactions between topics that can advance current research. Thus, there is a growing need to create automated techniques capable of analyzing the vast literature and identifying possible gaps in our neuroscientific knowledge. \n",
    "\n",
    ">In recent years, approaches have been proposed to solve a problem known as *automated hypothesis generation*, which, at a high level, attempts to find said missing interactions by performing large-scale analysis across field-wide literature databases (i.e. PubMed). Voytek, et al.[1] proposed an algorithm based upon finding terms in the literature that show a large number of shared publications between two child terms and a parent term with a considerably less amount of publications between the two child terms. More recent work by Wilson et al. [2] and Sybrant et al. [3], utilized natural language processing (NLP) approaches to parse abstracts to find significant interactions between cancer genes and various biomedical research topics, respectively.\n",
    "Additionally, other approaches have proposed deep-learning based solutions operating on graph representations of term interactions as seen in [4]. <br/>\n",
    "\n",
    ">In our project our goals are two-fold. First, we aim to develop a new algorithm for identifying and ranking candidate hypotheses accurately. Second, we propose a framework and dataset that allows candidate hypotheses to be validated by their characteristics in future periods. Particularly, we use *term co-occurrence* aggregated from the years 1700-2000 to generate hypotheses which we then validate using co-occurrence data from 2000-present, by computing percent increase in citations between the two periods."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Data Collection \n",
    ">We based our data collection on the same 591 neuroscience terms that were analyzed in Voytek[1], to provide a reasonable benchmark to compare our models against. Using these terms, we utilized the NCBI E-Utils API to fetch intersection and union counts for the ~174k hypotheses (term-pairs) for the years 1700-2000 and 2000-2021 that were based on a term's presence in either the title and/or abstract of a given paper. For example, given a term pair (t1, t2), we would query all papers in a given time period whose titles and/or abstracts contain both t1 AND t2, and compute the sum of t1 NOT t2 and t2 NOT t1. From here, we constructed three matrices where the entries in each represented the intersection, union, and intersection over union (connectivity).\n",
    "\n",
    "> To make the fetching of multiple time periods reasonable we designed a scraper, called MicroLisc (*full source: ./data_collection/microlisc.py*), that utilizes multi-threading to make requests with a throughput of ~200 requests/sec. Additionally, we were able to vastly reduce the number of requests via caching since |X NOT Y| + |Y NOT X| = |X| + |Y|, when there are no intersections between X AND Y. Hence, by checking for intersection first, we could then retrieve the cardinalities of X and Y from a cache, leaving most hypotheses only requiring only 1 HTTP request (not intersecting), and at max 3 HTTP requests (if intersecting). The combination of these two optimizations allowed us to collect the complete set of hypothesis data for an entire time period in under 1.5 hours. We believe this decrease in data collection time will facilitate further analysis of multiple time periods."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Hypothesis\n",
    "Our algorithm's method of computing the \"attractiveness\" metric allows for the hypotheses to be compared on an ordinal scale. In doing so, our hypotheses will be more robust to spurious correlations and have greater specificity. We conjecture that these features of the resulting hypotheses make them more meaningful in terms of their utility in predicting future trends in neuroscience."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Data Analysis"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<style>.container { width:75% !important; }</style>"
      ],
      "text/plain": [
       "<IPython.core.display.HTML object>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# import general utilities\n",
    "import os # Filesystem Interaction\n",
    "import pandas as pd # Dataframe Processing\n",
    "import numpy as np # Numerical Computation\n",
    "import time # Benchmarking\n",
    "from itertools import chain, cycle, compress\n",
    "from scipy.stats import spearmanr\n",
    "\n",
    "# import tools used in this project\n",
    "from hfalgo import HypothesisFirst\n",
    "from neighbors import NeighborAnalysis\n",
    "from Voytek_Algorithm import Voytek_alg\n",
    "from data_collection.microlisc import MicroLisc \n",
    "from data_collection.utils import check_symmetric, percentage_change\n",
    "\n",
    "# set up plotting environment\n",
    "import seaborn as sns\n",
    "import plotly.express as px\n",
    "import ipywidgets as widgets\n",
    "import matplotlib.pyplot as plt\n",
    "from IPython.display import display, HTML, clear_output, Image, display_html\n",
    "display(HTML(\"<style>.container { width:75% !important; }</style>\"))\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Data Wrangling\n",
    "We configure our data directories and nest terms with their synonyms, producing a list of 591 terms (including synonyms). We then initialize our scraper(data_collection/microlisc.py) with this specific term set and run a job with a specified configuration, outlining the two time periods where we gather the conjunction, intersection, and connectivity counts."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "#### Configuration and Brain Term Initialization"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [],
   "source": [
    "# set up directory & file hierarchy\n",
    "proj_dir = os.getcwd()\n",
    "data_dir = os.path.join(proj_dir,'data')\n",
    "old_data_dir = os.path.join(proj_dir,'old_data')\n",
    "new_data_dir = os.path.join(proj_dir,'new_data')\n",
    "neighbor_data_dir = os.path.join(new_data_dir,'neighbors_of_neighbors')\n",
    "hypothesis_data_dir = os.path.join(new_data_dir,'hypothesis_first')\n",
    "\n",
    "# load in the 591 terms from the original analysis\n",
    "df = pd.read_csv(os.path.join(data_dir, 'brain_terms_new.csv'), names= None)\n",
    "\n",
    "# extract useful information from the dataframe\n",
    "term_types = df.domain.unique()\n",
    "mapping = dict(df[['term','domain']].values)\n",
    "mapping_lower = {k.lower(): v for k, v in mapping.items()}\n",
    "\n",
    "# Nest all unique terms from the terms dataframe\n",
    "lis = [[f'\"{j}\"' for j in list(set(list(df[df.term == i]['synonyms']) \\\n",
    "                                 + list(df[df.term == i]['term'])))] for i in df.term.unique()]\n",
    "\n",
    "assert len(lis) == 588"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [],
   "source": [
    "def fetch_data(**kwargs):\n",
    "    '''\n",
    "    Takes a configuration object (below) and fetches the relevant data\n",
    "    \n",
    "    '''\n",
    "    # Instantiate MicroLisc\n",
    "    ml = MicroLisc(terms=kwargs['terms'])\n",
    "\n",
    "    # Run The Scraping Job\n",
    "    print(f'Fetching from {kwargs[\"start\"]} to {kwargs[\"end\"]}')\n",
    "    t_start = time.time()\n",
    "    conj, disj = ml.run_collection(num_of_pairs=-1, date_range=(kwargs['start'], kwargs['end']))\n",
    "    t_end = (time.time() - t_start)\n",
    "\n",
    "    # Clean and Process the Conjunction and Disjunction Matrices\n",
    "    d_idxs = np.diag_indices(conj.shape[0])\n",
    "    conj[d_idxs] = 0\n",
    "    disj[d_idxs] = 0\n",
    "\n",
    "    # Turn left triangular matrix into symmetrical matrix since (t1, t2) <-> (t2, t1)\n",
    "    conj += conj.T\n",
    "    disj += disj.T\n",
    "    \n",
    "    # Build Connectivity (IoU) Matrix\n",
    "    np.seterr(divide='ignore', invalid='ignore')\n",
    "    conn = conj_pre/disj_pre\n",
    "    conn[d_idxs] = 1\n",
    "    conn = np.nan_to_num(conn)\n",
    "\n",
    "    # Make Sure Matrices Are Symmetrical\n",
    "    assert check_symmetric(conn) == True\n",
    "    assert check_symmetric(conj) == True\n",
    "    assert check_symmetric(disj) == True\n",
    "    \n",
    "    \n",
    "    print(f'Total Time: {end:0.3f}s')\n",
    "    print('Saving Matrices...')\n",
    "    \n",
    "    # Write matrices to files\n",
    "    np.savetxt(f'./conj_{out_prefix}.csv', conj, delimiter=',')\n",
    "    np.savetxt(f'./disj_{out_prefix}.csv', disj, delimiter=',')\n",
    "    np.savetxt(f'./conn_{out_prefix}.csv', conn, delimiter=',')"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "#### Skip These Cells to Use Already Downloaded Data"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [],
   "source": [
    "# '''\n",
    "# Configuration Fields:\n",
    "#     start: The start date in YYYY/MM/DD format\n",
    "#     end: The end date in YYYY/MM/DD format\n",
    "#     out_prefix: Prefix for output files\n",
    "# '''\n",
    "\n",
    "# # Initialize Configuration for Scraping\n",
    "# CONFIG_PRE = {'start':'1700/01/01', \n",
    "#               'end':'1999/12/31', \n",
    "#               'out_prefix':'pre_2000',\n",
    "#               'terms': lis}\n",
    "\n",
    "# CONFIG_POST = {'start':'2000/01/01', \n",
    "#                'end':'2021/03/08', \n",
    "#                'out_prefix':'post_2000',\n",
    "#                'terms': lis}"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {
    "scrolled": true
   },
   "outputs": [],
   "source": [
    "# fetch_data(**CONFIG_PRE)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "metadata": {},
   "outputs": [],
   "source": [
    "# fetch_data(**CONFIG_POST)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Data Visualization"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Load pre- and post- 2000 dataframes\n",
    "d_pre = np.genfromtxt(os.path.join(new_data_dir, 'disj_pre.csv'), delimiter=',')\n",
    "d_post = np.genfromtxt(os.path.join(new_data_dir, 'disj_post.csv'), delimiter=',')\n",
    "c_pre = np.genfromtxt(os.path.join(new_data_dir, 'conj_pre.csv'), delimiter=',')\n",
    "c_post = np.genfromtxt(os.path.join(new_data_dir, 'conj_post.csv'), delimiter=',')\n",
    "cn_pre = np.genfromtxt(os.path.join(new_data_dir, 'conn_pre.csv'), delimiter=',')\n",
    "cn_post = np.genfromtxt(os.path.join(new_data_dir, 'conn_post.csv'), delimiter=',')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "metadata": {
    "scrolled": false
   },
   "outputs": [
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEYCAYAAAAJeGK1AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjMsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAAgAElEQVR4nO3debxVZd338c83RAQhFXBCheN0i2JKgJpDTpllWdpLKody6s6sR8lutdu0DE3v7Cn1yawUuxVFNA3TzLI0VHBIGZTROSUxTMIBwQEBf88f6zqy3O59Js5hX6fzfb9e53XWXuta1/qta++zv3utvc7eigjMzMxy84F6F2BmZlaNA8rMzLLkgDIzsyw5oMzMLEsOKDMzy5IDyszMsuSAMgAkXSbpe+3U10BJSyV1S7fvkfSf7dF36u92Sce0V3+t2O55khZJ+uea3vbqkNQgKSSt1UH9t/n+rdd9aZ2DA6oLkDRP0puSlkh6VdIDkk6U9O79HxEnRsQPWtjXAU21iYjnIqJ3RKxsh9pHS7q2ov+DIuLq1e27lXVsAZwK7BARm1RZvq+k59dkTfVQ7f5YHa29L9t7+2tSe79Q6wocUF3HZyKiDzAIuAD4b+B/23sjHfUqPQODgJciYmFHdP5vPG5t1hFj0hXHWYXO+VwfEf75N/8B5gEHVMzbFXgH2DHdHgucl6b7A7cBrwIvA/dSvJgZl9Z5E1gKfBtoAAL4CvAcMLk0b63U3z3AD4EpwGLgd0DftGxf4Plq9QKfBN4GlqftzSz1959p+gPAd4G/AwuBa4D10rLGOo5JtS0CzmpinNZL6/8r9ffd1P8BaZ/fSXWMrVhv3YrlS4EBad0zgL8BLwE3lva7qXE7DpgPvAKcCOwCzEr3x6Wl7W4DTEpjugi4ocZ+NfZ7ArAAeAE4NS3bBHgD6FdqPzyNQfeKfpq6P34A3A8sAe4A+pfW+wjwQKp/JrBvaVn5vjw29XExxePuvBZufz2KF1svAP8AzgO61eqzYt6rwDPAHmn+fIrH0TFNPE76AlelsXwFuCXN34Di7+Zfaf5twOZp2fnASuCtVPulaf5g4M5U2xPAF0rb6Qf8HngNmJpqv6+0fI80f3H6vUfFuJ6f9vNN4HRgesV+nNpYe64/dS/AP2vgTq4SUGn+c8DX0/RYVgXUD4HLgO7p56OAqvXFqie/ayieqHtSPaD+AeyY2twEXJuW7UuNgErToxvblpbfw6onteOBp4GtgN7Ab4FxFbVdkeraGVgGbF9jnK6hCM8+ad0nga/UqrNi3Wr7cQrwILA50AO4HLi+BeN2GbAOcCDFE9otwEbAZhRPnvukPq4HzqIIwnWAvWrU1tjv9WlbH6J4Em0c4z82Pg7S7YuBn9Xoq9b98TfgP9J+3ANckJZtRhHOn0p1fjzd3rDKfXkssAI4GVgL6NnC7d+SxnbdNE5TgK/V6rM07zigG8UT/3PAz9P9dCBF0PauMQZ/AG6gCKTupfujH3AY0IviMfQbSgFQ3td0e12KQDwu1TaM4oXGkLT81+mnF7BDantfWtaXIgS/nNY9It3uV9rWc8CQtLwHRQhuX9r+I8Bh9X5+auqncx72WXtZQPFAr7Qc2BQYFBHLI+LeSI/oJoyOiNcj4s0ay8dFxJyIeB34HvCFxosoVtNRwEUR8UxELAW+AxxecSrnnIh4MyJmUryC37myk1TLF4HvRMSSiJgHXEjxBNBWX6M4Yns+IpZRPLmOrKit2rj9ICLeiog7gNcpQm1hRPyD4mj2w6ndcopTjwNS+/uaqeectK3ZFEcAR6T5VwNfgnfH4QiKo+XWuCoinkz7cSMwNM3/EvDHiPhjRLwTEXcC0ygCq5oFEfGziFjRxGPpXZI2Bg4CTkn7tpAiYA9vps9nI+KqKN4nvQHYAjg3IpalcX+b4gi1cnubpu2dGBGvpL+PSQAR8VJE3BQRb0TEEoojmH2aKP9gYF6qY0VEPEzx4m1kuh8OA76f+nuU4n5q9GngqYgYl9a9Hngc+EypzdiImJuWL0v72Xg/D6F44XJbU+Nbbw6orm0zildVlX5McVRyh6RnJJ3Rgr7mt2L53yleefZvUZVNG5D6K/e9FrBxaV75qrs3KI60KvUH1q7S12arUdsg4OZ0YcqrwGMUp3nKtVUbtxdL029Wud1Y/7cBAVMkzZV0fDP1VN4HA9L074AdJG1FcYSzOCKmNNNXpVpjPAj4fOMYpHHYi+IFUHM1tsQgisfSC6X+L6c4kmqqz8oxJSJqjXPZFsDLEfFK5QJJvSRdLunvkl6jOG27fhMvxAYBu1WMzVEUp103pHgcl2svT1c+7uH9j9fK/b4aOFKSKF543ZiCK1td7g1DK0jaheLB/L5X3enV36nAqemV1t2SpkbERIpTRdU0d4S1RWl6IMWr/0UURwi9SnV1o/jjbGm/Cyj+0Mt9r6B4Atq8mXXLFrHqiOTRUl//aOH61eqcDxwfEfdXLpDU0MR6LdtgxD+Br6b+9gL+ImlyRDxdY5UtKF5lQ7FvC1I/b0m6keLJcTBNHz21tt75FEfPX21h++b6r1w+n+K0bf+IWNHGPltjPtBX0voR8WrFslOB7YDdIuKfkoZSnEZTjTrmA5Mi4uOVG0l/BysoHsNPptnlv6HKxz0U9+mfSrffs72IeFDS2xSn7I9MP1nzEVQXI+mDkg6mOLd9bTrdU9nmYEnbpFdar1G86m+8ZPxFivd7WutLknaQ1As4F5iQTq88Cawj6dOSulNcmNCjtN6LQEMTVyFdD3xL0paSegP/Q3GxQK0nq6pSLTcC50vqI2kQ8F9ASy9pfhHoJ2m90rzLUn+DACRtKOmQ1tTVFEmfl9QYwq9QPCE1dWn/99Kr/CEU73vcUFp2DcV7M5+l6X1u7v6odC3wGUmfkNRN0jrpkvzWvHiouf2IeIHioowL02P7A5K2ltTUqbU2S9u7HfiFpA0kdZe0d1rch+LI61VJfYHvV6m9/LdzG/Afkr6c+ukuaRdJ26fH42+B0ek+GwwcXVr3j2ndIyWtJemLFO9TNXfK7hrgUmBFC04J150Dquv4vaQlFK/azgIuoniSqmZb4C8UVxv9FfhFRNyTlv0Q+G46JXFaK7Y/juJCjH9SvKE/CiAiFgPfAH5FcbTyOlD+f6LfpN8vSXq4Sr9Xpr4nA89SXFRwcivqKjs5bf8ZiiPL61L/zYqIxynC8pk0NgOAnwK3UpwqXUJxwcRubaytml2AhyQtTdv5ZkQ820T7SRSnbicCP0nvtTTWfz/FVYgPp/ffamnu/niPiJgPHAKcSXFhxnyKK8ra+txTbftHU5yefZQiqCdQ+xRie/gyxdH24xQXrZyS5v8/ioswFlHc13+qWO+nFO8vvSLpknSm4kCK98sWUPxt/IhVL9BOorhC8Z8Uj/HrKY4WiYiXKN7DOpXiopNvAwdHxKJmah9HcbFSa99jrIvGK7PMrIuTdBdwXUT8qt612PtJ+hGwSUS0+ZM3JPWkCNVhEfFUuxXXQXwEZWaN70kO472n/ayOJA2WtFP6R9tdKf5n7ubV7PbrwNTOEE7giyTMujxJVwOHUpwiXFLveuxdfShO6w2gOOq5kOKKyzaRNI/igo1D26O4NcGn+MzMLEs+xWdmZlnyKb4O1r9//2hoaKh3GWZm2Zo+ffqiiNiwcr4DqoM1NDQwbdq0epdhZpYtSZWfigH4FJ+ZmWXKAWVmZllyQJmZWZb8HlQHe+z5lxh++jX1LsPMrMNM//HRzTdqAx9BmZlZlhxQZmaWJQeUmZllyQFlZmZZckCZmVmWHFBmZpYlB5SZmWXJAWVmZllyQJmZWZYcUGZmliUHlJmZZckBZWZmWXJAmZlZljpFQEkaJekxSePbqb8GSUeWbo+QdEl79G1mZu2js3zdxjeAgyLi2XbqrwE4ErgOICKmAf5edjOzjGR/BCXpMmAr4FZJiyWdVlo2Jx0NNaQjrCskzZV0h6Seqc02kv4iaaakhyVtDVwAfFTSDEnfkrSvpNtS+76SbpE0S9KDknZK80dLulLSPZKekTRqzY+GmVnXkX1ARcSJwAJgP+DiJppuC/w8IoYArwKHpfnj0/ydgT2AF4AzgHsjYmhEVPZ5DvBIROwEnAmUv21wMPAJYFfg+5K6VytE0gmSpkmatuKNJa3YWzMza5R9QLXCsxExI01PBxok9QE2i4ibASLirYh4o5l+9gLGpfZ3Af0krZeW/SEilkXEImAhsHG1DiJiTESMiIgRa/Xqs5q7ZWbWNXW2gFrBe2tepzS9rDS9kuL9NbVhG9XWiSa2YWZmHaCzBdQ8YBiApGHAlk01jojXgOclHZrW6SGpF7AEqHVoMxk4KrXfF1iU+jEzszWoswXUTUBfSTOArwNPtmCdLwOjJM0CHgA2AWYBK9KFE9+qaD8aGJHaXwAc017Fm5lZyykimm9lbbbuJlvG4C+fU+8yzMw6zPQfH71a60uaHhEjKud3tiMoMzPrIhxQZmaWJQeUmZllyQFlZmZZckCZmVmWHFBmZpYlB5SZmWXJAWVmZllyQJmZWZYcUGZmliUHlJmZZckBZWZmWfL3GXWw7Tfvx7TV/CBFM7OuyEdQZmaWJQeUmZllyQFlZmZZckCZmVmWHFBmZpYlB5SZmWXJAWVmZllyQJmZWZb8j7od7O0X5vLcuR+qdxnvGnj27HqXYGbWIj6CMjOzLDmgzMwsSw4oMzPLkgPKzMyy5IAyM7MsOaDMzCxLDigzM8uSA8rMzLLkgDIzsyw5oMzMLEsOKDMzy5IDyszMsuSAMjOzLHWagJI0VtLIDuj3s5LOaOO68yT1b++azMysTl+3IalbRKysx7YrRcStwK31rsPMzN6r2SMoSQ2SHpN0haS5ku6Q1FPS1pL+JGm6pHslDU7t33OkI2lp+r2vpLslXQfMTvP+S9Kc9HNKaZ2jJc2SNFPSuFI5e0t6QNIzFds4XdLUtM45pbofl/Sr1P94SQdIul/SU5J2Te2OlXRpmt5Y0s1puzMl7ZHm35L2c66kE9o+3GZm1lItPYLaFjgiIr4q6UbgMOA44MSIeErSbsAvgP2b6WdXYMeIeFbS8NTHboCAhyRNAt4GzgL2jIhFkvqW1t8U2AsYTHHUM0HSgam+XVM/t0raG3gO2Ab4PHACMBU4Mq3/WeBM4NCK+i4BJkXE5yR1A3qn+cdHxMuSegJTJd0UES/V2skUYicAbLZe92aGxMzMqmlpQD0bETPS9HSgAdgD+I2kxjY9WtDPlIh4Nk3vBdwcEa8DSPot8FEggAkRsQggIl4urX9LRLwDPCpp4zTvwPTzSLrdmyKwnkt1Nx6tzQUmRkRImp32odL+wNFpuyuBxWn+KEmfS9NbpP5rBlREjAHGAOy0Wc9ockTMzKyqlgbUstL0SmBj4NWIGFql7QrSqUMV6bV2adnrpWlRnShCqrk6VPr9w4i4/D2dSA0V7d8p3X6HFu67pH2BA4DdI+INSfcA67RkXTMza7u2XsX3GvCspM9DEUSSdk7L5gHD0/QhQK1zXJOBQyX1krQu8DngXmAi8AVJ/VLffWus3+jPwPGSeqf2m0naqG27xUTg66mfbpI+CKwHvJLCaTDwkTb2bWZmrbA6l5kfBXxF0kxgLkUYAVwB7CNpCsX7S69XWzkiHgbGAlOAh4BfRcQjETEXOB+YlPq+qKkiIuIO4Drgr+nU3QSgTxv36ZvAfqmf6cAQ4E/AWpJmAT8AHmxj32Zm1gqK8FskHWmnzXrGbV/bpt5lvGvg2bPrXYKZ2XtImh4RIyrnd5p/1DUzs67FAWVmZllyQJmZWZYcUGZmliUHlJmZZckBZWZmWXJAmZlZlhxQZmaWJQeUmZllyQFlZmZZckCZmVmWHFBmZpalln4flLXR2psOYeDZ0+pdhplZp+MjKDMzy5IDyszMsuSAMjOzLDmgzMwsSw4oMzPLkgPKzMyy5IAyM7MsOaDMzCxL/kfdDvb4wsfZ82d71ruM1XL/yffXuwQz64J8BGVmZllyQJmZWZYcUGZmliUHlJmZZckBZWZmWXJAmZlZlhxQZmaWJQeUmZllyQFlZmZZckCZmVmWHFBmZpYlB5SZmWXJAWVmZlnqdAEl6VhJA0q350nq38r1L+2Y6szMrL10uoACjgUGNNfIzMw6t7oHlKQGSY9LulrSLEkTJPWSdLakqZLmSBqjwkhgBDBe0gxJPVM3J0t6WNJsSYNTv30l3ZL6fFDSTlW2PUjSxNRmoqSBaf7WaZ2pks6VtDTNHyfpkNL64yV9tsMHycysC6p7QCXbAWMiYifgNeAbwKURsUtE7Aj0BA6OiAnANOCoiBgaEW+m9RdFxDDgl8Bpad45wCOpzzOBa6ps91LgmtRmPHBJmv9T4KcRsQuwoNT+V8BxAJLWA/YA/ljZqaQTJE2TNG350uVtGQ8zsy4vl4CaHxGNX9t6LbAXsJ+khyTNBvYHhjSx/m/T7+lAQ5reCxgHEBF3Af1SqJTtDlyXpseldRrn/yZNNy4nIiYB20jaCDgCuCkiVlQWExFjImJERIzo3rt7E2WbmVktuXzle1S5/QtgRETMlzQaWKeJ9Zel3ytZtU9qwXZauxyKIDsKOBw4vgXtzcysDXI5ghooafc0fQRwX5peJKk3MLLUdgnQpwV9TqYIEiTtS3Ea8LWKNg9QBA2pbeN2HwQOS9OHV6wzFjgFICLmtqAOMzNrg1yOoB4DjpF0OfAUxXtJGwCzgXnA1FLbscBlkt6kOBVXy2jgKkmzgDeAY6q0GQVcKel04F+k95coAuhaSacCfwAWN64QES9Kegy4pXW7aGZmraGIlpzV6sACpAbgtnQxRBYk9QLejIiQdDhwREQcUlo2GxgWEYub6geg98DesfPpO3dswR3s/pPvb76RmVkbSZoeESMq5+dyBJWb4cClkgS8SnqvSdIBwJXARS0JJzMza7u6B1REzAOyOXoCiIh7gfcd9kTEX4CBa74iM7OuJ5eLJMzMzN7DAWVmZllyQJmZWZYcUGZmliUHlJmZZckBZWZmWXJAmZlZlhxQZmaWJQeUmZllyQFlZmZZqvtHHf27G7zRYH/YqplZG/gIyszMsuSAMjOzLDmgzMwsSw4oMzPLkgPKzMyy5IAyM7MsOaDMzCxL/j+oDrbkiSeYtPc+9S7D2mCfyZPqXYJZl+YjKDMzy5IDyszMsuSAMjOzLDmgzMwsSw4oMzPLkgPKzMyy5IAyM7MsOaDMzCxLDigzM8uSA8rMzLLkgDIzsyw5oMzMLEsOKDMzy5IDyszMstQpAkrSKZJ6tWN/Z7ZXX2Zm1jE6RUABpwBVA0pStzb01+qAkuTvzjIzW4OyCyhJ60r6g6SZkuZI+j4wALhb0t2pzVJJ50p6CNhd0jxJ/dOyEZLuSdO9JV0labakWZIOk3QB0FPSDEnjJTVImlPa/mmSRqfpeyT9j6RJwDclbSjpJklT08+ea3RwzMy6kByPCj4JLIiITwNIWg84DtgvIhalNusCcyLi7NSmVl/fAxZHxIdSuw0i4iZJJ0XE0DSvoZl61o+IfVLb64CLI+I+SQOBPwPbV64g6QTgBICNe/Ro0U6bmdl75RhQs4GfSPoRcFtE3FslgFYCN7WgrwOAwxtvRMQrbajnhor+dijV80FJfSJiSXmFiBgDjAHYrk+faMM2zcy6vOwCKiKelDQc+BTwQ0l3VGn2VkSsLN1ewarTleuU5gtoLiDK61auD/B6afoDwO4R8WYzfZqZ2WrK8T2oAcAbEXEt8BNgGLAE6NPEavOA4Wn6sNL8O4CTSn1vkCaXS+qepl8ENpLUT1IP4OAmtlPZ39Bmd8jMzNoku4ACPgRMkTQDOAs4j+J02e2NF0lUcQ7wU0n3Upz+a3QesEG62GImsF+aPwaYJWl8RCwHzgUeAm4DHm+itlHAiHTBxaPAiW3bRTMza44i/BZJR9quT58Y8+Fh9S7D2mCfyZPqXYJZlyBpekSMqJyf4xGUmZmZA8rMzPLkgDIzsyw5oMzMLEsOKDMzy5IDyszMsuSAMjOzLDmgzMwsSw4oMzPLkgPKzMyy5IAyM7MsOaDMzCxL2X0f1L+bPttt5w8dNTNrAx9BmZlZlhxQZmaWJQeUmZllyQFlZmZZckCZmVmWHFBmZpYlB5SZmWXJ/wfVwRY+v5hLT/19h2/npAs/0+HbMDNbk3wEZWZmWXJAmZlZlhxQZmaWJQeUmZllyQFlZmZZckCZmVmWHFBmZpYlB5SZmWXJAWVmZllyQJmZWZYcUGZmliUHlJmZZckBZWZmWXJAmZlZltZYQElaWmP+iZKOTtPHShqwpmpK2zxFUq/S7TPX5PbNzKy6uh9BRcRlEXFNunkssEYDCjgF6FW63eqAktSt/coxMzNop4CS9G1Jo9L0xZLuStMfk3Rtqd35kmZKelDSxmneaEmnSRoJjADGS5ohqaek4ZImSZou6c+SNq2y7bGSfinpbknPSNpH0pWSHpM0ttTul5KmSZor6Zw0bxRFIN6d1r8A6Jm2Pz61+ZKkKWne5Y1hJGmppHMlPQTs3h7jaGZmq7TXEdRk4KNpegTQW1J3YC/g3jR/XeDBiNg5tf9quYOImABMA46KiKHACuBnwMiIGA5cCZxfY/sbAPsD3wJ+D1wMDAE+JGloanNWRIwAdgL2kbRTRFwCLAD2i4j9IuIM4M2IGBoRR0naHvgisGeqaSVwVGl/5kTEbhFxX7kYSSekMJy29I3FLRxCMzMra6+vfJ8ODJfUB1gGPEwRVB8FRqU2bwO3ldp/vJk+twN2BO6UBNANeKFG299HREiaDbwYEbMBJM0FGoAZwBcknUCxz5sCOwCzmqnhY8BwYGqqoSewMC1bCdxUbaWIGAOMARi4ybbRzDbMzKyKdgmoiFguaR5wHPAAxRP/fsDWwGOp2fKIaHyyXtmCbQuYGxEtOX22LP1+pzTdeHstSVsCpwG7RMQr6dTfOi3oV8DVEfGdKsveioiVLejDzMzaoD0vkphMEQKTKU7rnQjMKIVSSywB+qTpJ4ANJe0OIKm7pCFtrO2DwOvA4vTe10E1tgmwPJ2eBJgIjJS0Uaqhr6RBbazBzMxaoT0D6l6KU2d/jYgXgbdY9f5TS40FLpM0g+KU3kjgR5JmUpym26MthUXETOARYC7Fe1n3lxaPAW6XdHfp9ixJ4yPiUeC7wB2SZgF3UuyjmZl1MLXuAMdaa+Am28a3j7qow7dz0oWf6fBtmJl1BEnT00Vs71H3/4MyMzOrxgFlZmZZckCZmVmWHFBmZpYlB5SZmWXJAWVmZllyQJmZWZYcUGZmliUHlJmZZckBZWZmWXJAmZlZltrr+6Csho02X8+fk2dm1gY+gjIzsyw5oMzMLEsOKDMzy5IDyszMsuQvLOxgkpZQfH19Z9MfWFTvIlqpM9YMnbPuzlgzdM66u0LNgyJiw8qZvoqv4z1R7ZsicydpWmeruzPWDJ2z7s5YM3TOurtyzT7FZ2ZmWXJAmZlZlhxQHW9MvQtoo85Yd2esGTpn3Z2xZuicdXfZmn2RhJmZZclHUGZmliUHlJmZZckB1YEkfVLSE5KelnRGveupRdI8SbMlzZA0Lc3rK+lOSU+l3xtkUOeVkhZKmlOaV7VOFS5JYz9L0rCMah4t6R9pvGdI+lRp2XdSzU9I+kSdat5C0t2SHpM0V9I30/zcx7pW3dmOt6R1JE2RNDPVfE6av6Wkh9JY3yBp7TS/R7r9dFresKZrbqbusZKeLY310DS/bY+RiPBPB/wA3YC/AVsBawMzgR3qXVeNWucB/Svm/V/gjDR9BvCjDOrcGxgGzGmuTuBTwO2AgI8AD2VU82jgtCptd0iPkx7Alunx060ONW8KDEvTfYAnU225j3WturMd7zRmvdN0d+ChNIY3Aoen+ZcBX0/T3wAuS9OHAzfUaaxr1T0WGFmlfZseIz6C6ji7Ak9HxDMR8Tbwa+CQOtfUGocAV6fpq4FD61gLABExGXi5YnatOg8BronCg8D6kjZdM5WuUqPmWg4Bfh0RyyLiWeBpisfRGhURL0TEw2l6CfAYsBn5j3Wtumup+3inMVuabnZPPwHsD0xI8yvHuvE+mAB8TJLWULnvaqLuWtr0GHFAdZzNgPml28/T9B9LPQVwh6Tpkk5I8zaOiBeg+MMHNqpbdU2rVWfu439SOtVxZen0aXY1p1NIH6Z4hdxpxrqibsh4vCV1kzQDWAjcSXEk92pErKhS17s1p+WLgX5rtuJCZd0R0TjW56exvlhSjzSvTWPtgOo41V7V5HpN/54RMQw4CPg/kvaud0HtIOfx/yWwNTAUeAG4MM3PqmZJvYGbgFMi4rWmmlaZl1PdWY93RKyMiKHA5hRHcNtXa5Z+Z1EzvL9uSTsC3wEGA7sAfYH/Ts3bVLcDquM8D2xRur05sKBOtTQpIhak3wuBmyn+SF5sPARPvxfWr8Im1aoz2/GPiBfTH/c7wBWsOq2UTc2SulM8yY+PiN+m2dmPdbW6O8N4A0TEq8A9FO/RrC+p8bNSy3W9W3Navh4tP4XcIUp1fzKdZo2IWAZcxWqOtQOq40wFtk1X46xN8YbmrXWu6X0krSupT+M0cCAwh6LWY1KzY4Df1afCZtWq81bg6HT10EeAxY2np+qt4tz75yjGG4qaD09Xam0JbAtMqUN9Av4XeCwiLiotynqsa9Wd83hL2lDS+mm6J3AAxXtndwMjU7PKsW68D0YCd0W6CmFNqlH346UXMKJ436w81q1/jNTjCpCu8kNx5cqTFOeUz6p3PTVq3IriSqaZwNzGOinOa08Enkq/+2ZQ6/UUp2iWU7wi+0qtOilOKfw8jf1sYERGNY9LNc1Kf7ibltqflWp+AjioTjXvRXH6ZRYwI/18qhOMda26sx1vYCfgkVTbHODsNH8rirB8GvgN0CPNXyfdfjot36pOY12r7rvSWM8BrmXVlX5teoz4o47MzCxLPsVnZmZZckCZmVmWHFBmZpYlB5SZmWXJAWVmZllyQJlZVZJOkdSr3nVY1+XLzM2sKknzKP5fZVG9a7GuyUdQZp2YpKPTB3POlDRO0iBJE9O8iZIGpnZjJY0srbc0/d5X0j2SJkh6XNL49N/+o4ABwN2S7rHQgFsAAAEaSURBVK7P3llXt1bzTcwsR5KGUHwSwp4RsUhSX4qvYrgmIq6WdDxwCc1/VcqHgSEUn412f+rvEkn/BeznIyirFx9BmXVe+wMTGgMkIl4GdgeuS8vHUXz8T3OmRMTzUXyY6gygoQNqNWs1B5RZ5yWa/8qCxuUrSH/v6YM81y61WVaaXonPrFgmHFBmnddE4AuS+gGkU3wPUHxyPsBRwH1peh4wPE0fQvENqM1ZQvHV6WZ14VdKZp1URMyVdD4wSdJKik+XHgVcKel04F/Acan5FcDvJE2hCLbXW7CJMcDtkl6IiP3afw/MmubLzM3MLEs+xWdmZllyQJmZWZYcUGZmliUHlJmZZckBZWZmWXJAmZlZlhxQZmaWpf8P8AdvOeyLc8YAAAAASUVORK5CYII=\n",
      "text/plain": [
       "<Figure size 432x288 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "sns.countplot(y=df.drop_duplicates('term').domain)\n",
    "plt.title('Distribution of terms by their term category')\n",
    "plt.ylabel('')\n",
    "plt.tight_layout()\n",
    "plt.savefig('visuals/terms_dist.png')"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Amongst, the terms we based our generation upon a majority of them belonged to the functional category."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "metadata": {},
   "outputs": [],
   "source": [
    "np.fill_diagonal(cn_pre,0)\n",
    "np.fill_diagonal(cn_post,0)\n",
    "\n",
    "\n",
    "outlier_removed_pre = cn_pre[(cn_pre >= 0) & (cn_pre < 1)]\n",
    "outlier_removed_post = cn_post[(cn_post >= 0) & (cn_post < 1)]"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "metadata": {
    "scrolled": true
   },
   "outputs": [
    {
     "data": {
      "text/html": [
       "        <script type=\"text/javascript\">\n",
       "        window.PlotlyConfig = {MathJaxConfig: 'local'};\n",
       "        if (window.MathJax) {MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}\n",
       "        if (typeof require !== 'undefined') {\n",
       "        require.undef(\"plotly\");\n",
       "        define('plotly', function(require, exports, module) {\n",
       "            /**\n",
       "* plotly.js v1.58.4\n",
       "* Copyright 2012-2020, Plotly, Inc.\n",
       "* All rights reserved.\n",
       "* Licensed under the MIT license\n",
       "*/\n",
       "!function(t){if(\"object\"==typeof exports&&\"undefined\"!=typeof module)module.exports=t();else if(\"function\"==typeof define&&define.amd)define([],t);else{(\"undefined\"!=typeof window?window:\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:this).Plotly=t()}}((function(){return function t(e,r,n){function i(o,s){if(!r[o]){if(!e[o]){var l=\"function\"==typeof require&&require;if(!s&&l)return l(o,!0);if(a)return a(o,!0);var c=new Error(\"Cannot find module '\"+o+\"'\");throw c.code=\"MODULE_NOT_FOUND\",c}var u=r[o]={exports:{}};e[o][0].call(u.exports,(function(t){return i(e[o][1][t]||t)}),u,u.exports,t,e,r,n)}return r[o].exports}for(var a=\"function\"==typeof require&&require,o=0;o<n.length;o++)i(n[o]);return i}({1:[function(t,e,r){\"use strict\";var n=t(\"../src/lib\"),i={\"X,X div\":\"direction:ltr;font-family:'Open Sans', verdana, arial, sans-serif;margin:0;padding:0;\",\"X input,X button\":\"font-family:'Open Sans', verdana, arial, sans-serif;\",\"X input:focus,X button:focus\":\"outline:none;\",\"X a\":\"text-decoration:none;\",\"X a:hover\":\"text-decoration:none;\",\"X .crisp\":\"shape-rendering:crispEdges;\",\"X .user-select-none\":\"-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;\",\"X svg\":\"overflow:hidden;\",\"X svg a\":\"fill:#447adb;\",\"X svg a:hover\":\"fill:#3c6dc5;\",\"X .main-svg\":\"position:absolute;top:0;left:0;pointer-events:none;\",\"X .main-svg .draglayer\":\"pointer-events:all;\",\"X .cursor-default\":\"cursor:default;\",\"X .cursor-pointer\":\"cursor:pointer;\",\"X .cursor-crosshair\":\"cursor:crosshair;\",\"X .cursor-move\":\"cursor:move;\",\"X .cursor-col-resize\":\"cursor:col-resize;\",\"X .cursor-row-resize\":\"cursor:row-resize;\",\"X .cursor-ns-resize\":\"cursor:ns-resize;\",\"X .cursor-ew-resize\":\"cursor:ew-resize;\",\"X .cursor-sw-resize\":\"cursor:sw-resize;\",\"X .cursor-s-resize\":\"cursor:s-resize;\",\"X .cursor-se-resize\":\"cursor:se-resize;\",\"X .cursor-w-resize\":\"cursor:w-resize;\",\"X .cursor-e-resize\":\"cursor:e-resize;\",\"X .cursor-nw-resize\":\"cursor:nw-resize;\",\"X .cursor-n-resize\":\"cursor:n-resize;\",\"X .cursor-ne-resize\":\"cursor:ne-resize;\",\"X .cursor-grab\":\"cursor:-webkit-grab;cursor:grab;\",\"X .modebar\":\"position:absolute;top:2px;right:2px;\",\"X .ease-bg\":\"-webkit-transition:background-color 0.3s ease 0s;-moz-transition:background-color 0.3s ease 0s;-ms-transition:background-color 0.3s ease 0s;-o-transition:background-color 0.3s ease 0s;transition:background-color 0.3s ease 0s;\",\"X .modebar--hover>:not(.watermark)\":\"opacity:0;-webkit-transition:opacity 0.3s ease 0s;-moz-transition:opacity 0.3s ease 0s;-ms-transition:opacity 0.3s ease 0s;-o-transition:opacity 0.3s ease 0s;transition:opacity 0.3s ease 0s;\",\"X:hover .modebar--hover .modebar-group\":\"opacity:1;\",\"X .modebar-group\":\"float:left;display:inline-block;box-sizing:border-box;padding-left:8px;position:relative;vertical-align:middle;white-space:nowrap;\",\"X .modebar-btn\":\"position:relative;font-size:16px;padding:3px 4px;height:22px;cursor:pointer;line-height:normal;box-sizing:border-box;\",\"X .modebar-btn svg\":\"position:relative;top:2px;\",\"X .modebar.vertical\":\"display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-end;max-height:100%;\",\"X .modebar.vertical svg\":\"top:-1px;\",\"X .modebar.vertical .modebar-group\":\"display:block;float:none;padding-left:0px;padding-bottom:8px;\",\"X .modebar.vertical .modebar-group .modebar-btn\":\"display:block;text-align:center;\",\"X [data-title]:before,X [data-title]:after\":\"position:absolute;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);display:none;opacity:0;z-index:1001;pointer-events:none;top:110%;right:50%;\",\"X [data-title]:hover:before,X [data-title]:hover:after\":\"display:block;opacity:1;\",\"X [data-title]:before\":\"content:'';position:absolute;background:transparent;border:6px solid transparent;z-index:1002;margin-top:-12px;border-bottom-color:#69738a;margin-right:-6px;\",\"X [data-title]:after\":\"content:attr(data-title);background:#69738a;color:white;padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;margin-right:-18px;border-radius:2px;\",\"X .vertical [data-title]:before,X .vertical [data-title]:after\":\"top:0%;right:200%;\",\"X .vertical [data-title]:before\":\"border:6px solid transparent;border-left-color:#69738a;margin-top:8px;margin-right:-30px;\",\"X .select-outline\":\"fill:none;stroke-width:1;shape-rendering:crispEdges;\",\"X .select-outline-1\":\"stroke:white;\",\"X .select-outline-2\":\"stroke:black;stroke-dasharray:2px 2px;\",Y:\"font-family:'Open Sans', verdana, arial, sans-serif;position:fixed;top:50px;right:20px;z-index:10000;font-size:10pt;max-width:180px;\",\"Y p\":\"margin:0;\",\"Y .notifier-note\":\"min-width:180px;max-width:250px;border:1px solid #fff;z-index:3000;margin:0;background-color:#8c97af;background-color:rgba(140,151,175,0.9);color:#fff;padding:10px;overflow-wrap:break-word;word-wrap:break-word;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto;\",\"Y .notifier-close\":\"color:#fff;opacity:0.8;float:right;padding:0 5px;background:none;border:none;font-size:20px;font-weight:bold;line-height:20px;\",\"Y .notifier-close:hover\":\"color:#444;text-decoration:none;cursor:pointer;\"};for(var a in i){var o=a.replace(/^,/,\" ,\").replace(/X/g,\".js-plotly-plot .plotly\").replace(/Y/g,\".plotly-notifier\");n.addStyleRule(o,i[a])}},{\"../src/lib\":778}],2:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/aggregate\")},{\"../src/transforms/aggregate\":1365}],3:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/bar\")},{\"../src/traces/bar\":929}],4:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/barpolar\")},{\"../src/traces/barpolar\":942}],5:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/box\")},{\"../src/traces/box\":952}],6:[function(t,e,r){\"use strict\";e.exports=t(\"../src/components/calendars\")},{\"../src/components/calendars\":641}],7:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/candlestick\")},{\"../src/traces/candlestick\":961}],8:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/carpet\")},{\"../src/traces/carpet\":980}],9:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/choropleth\")},{\"../src/traces/choropleth\":994}],10:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/choroplethmapbox\")},{\"../src/traces/choroplethmapbox\":1001}],11:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/cone\")},{\"../src/traces/cone\":1007}],12:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/contour\")},{\"../src/traces/contour\":1022}],13:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/contourcarpet\")},{\"../src/traces/contourcarpet\":1033}],14:[function(t,e,r){\"use strict\";e.exports=t(\"../src/core\")},{\"../src/core\":755}],15:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/densitymapbox\")},{\"../src/traces/densitymapbox\":1041}],16:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/filter\")},{\"../src/transforms/filter\":1366}],17:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/funnel\")},{\"../src/traces/funnel\":1051}],18:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/funnelarea\")},{\"../src/traces/funnelarea\":1060}],19:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/groupby\")},{\"../src/transforms/groupby\":1367}],20:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/heatmap\")},{\"../src/traces/heatmap\":1073}],21:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/heatmapgl\")},{\"../src/traces/heatmapgl\":1083}],22:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/histogram\")},{\"../src/traces/histogram\":1095}],23:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/histogram2d\")},{\"../src/traces/histogram2d\":1101}],24:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/histogram2dcontour\")},{\"../src/traces/histogram2dcontour\":1105}],25:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/image\")},{\"../src/traces/image\":1113}],26:[function(t,e,r){\"use strict\";var n=t(\"./core\");n.register([t(\"./bar\"),t(\"./box\"),t(\"./heatmap\"),t(\"./histogram\"),t(\"./histogram2d\"),t(\"./histogram2dcontour\"),t(\"./contour\"),t(\"./scatterternary\"),t(\"./violin\"),t(\"./funnel\"),t(\"./waterfall\"),t(\"./image\"),t(\"./pie\"),t(\"./sunburst\"),t(\"./treemap\"),t(\"./funnelarea\"),t(\"./scatter3d\"),t(\"./surface\"),t(\"./isosurface\"),t(\"./volume\"),t(\"./mesh3d\"),t(\"./cone\"),t(\"./streamtube\"),t(\"./scattergeo\"),t(\"./choropleth\"),t(\"./scattergl\"),t(\"./splom\"),t(\"./pointcloud\"),t(\"./heatmapgl\"),t(\"./parcoords\"),t(\"./parcats\"),t(\"./scattermapbox\"),t(\"./choroplethmapbox\"),t(\"./densitymapbox\"),t(\"./sankey\"),t(\"./indicator\"),t(\"./table\"),t(\"./carpet\"),t(\"./scattercarpet\"),t(\"./contourcarpet\"),t(\"./ohlc\"),t(\"./candlestick\"),t(\"./scatterpolar\"),t(\"./scatterpolargl\"),t(\"./barpolar\")]),n.register([t(\"./aggregate\"),t(\"./filter\"),t(\"./groupby\"),t(\"./sort\")]),n.register([t(\"./calendars\")]),e.exports=n},{\"./aggregate\":2,\"./bar\":3,\"./barpolar\":4,\"./box\":5,\"./calendars\":6,\"./candlestick\":7,\"./carpet\":8,\"./choropleth\":9,\"./choroplethmapbox\":10,\"./cone\":11,\"./contour\":12,\"./contourcarpet\":13,\"./core\":14,\"./densitymapbox\":15,\"./filter\":16,\"./funnel\":17,\"./funnelarea\":18,\"./groupby\":19,\"./heatmap\":20,\"./heatmapgl\":21,\"./histogram\":22,\"./histogram2d\":23,\"./histogram2dcontour\":24,\"./image\":25,\"./indicator\":27,\"./isosurface\":28,\"./mesh3d\":29,\"./ohlc\":30,\"./parcats\":31,\"./parcoords\":32,\"./pie\":33,\"./pointcloud\":34,\"./sankey\":35,\"./scatter3d\":36,\"./scattercarpet\":37,\"./scattergeo\":38,\"./scattergl\":39,\"./scattermapbox\":40,\"./scatterpolar\":41,\"./scatterpolargl\":42,\"./scatterternary\":43,\"./sort\":44,\"./splom\":45,\"./streamtube\":46,\"./sunburst\":47,\"./surface\":48,\"./table\":49,\"./treemap\":50,\"./violin\":51,\"./volume\":52,\"./waterfall\":53}],27:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/indicator\")},{\"../src/traces/indicator\":1121}],28:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/isosurface\")},{\"../src/traces/isosurface\":1127}],29:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/mesh3d\")},{\"../src/traces/mesh3d\":1132}],30:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/ohlc\")},{\"../src/traces/ohlc\":1137}],31:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/parcats\")},{\"../src/traces/parcats\":1146}],32:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/parcoords\")},{\"../src/traces/parcoords\":1156}],33:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/pie\")},{\"../src/traces/pie\":1167}],34:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/pointcloud\")},{\"../src/traces/pointcloud\":1176}],35:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/sankey\")},{\"../src/traces/sankey\":1182}],36:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatter3d\")},{\"../src/traces/scatter3d\":1220}],37:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattercarpet\")},{\"../src/traces/scattercarpet\":1227}],38:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattergeo\")},{\"../src/traces/scattergeo\":1235}],39:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattergl\")},{\"../src/traces/scattergl\":1248}],40:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scattermapbox\")},{\"../src/traces/scattermapbox\":1258}],41:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatterpolar\")},{\"../src/traces/scatterpolar\":1266}],42:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatterpolargl\")},{\"../src/traces/scatterpolargl\":1273}],43:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/scatterternary\")},{\"../src/traces/scatterternary\":1281}],44:[function(t,e,r){\"use strict\";e.exports=t(\"../src/transforms/sort\")},{\"../src/transforms/sort\":1369}],45:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/splom\")},{\"../src/traces/splom\":1290}],46:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/streamtube\")},{\"../src/traces/streamtube\":1298}],47:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/sunburst\")},{\"../src/traces/sunburst\":1306}],48:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/surface\")},{\"../src/traces/surface\":1315}],49:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/table\")},{\"../src/traces/table\":1323}],50:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/treemap\")},{\"../src/traces/treemap\":1332}],51:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/violin\")},{\"../src/traces/violin\":1344}],52:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/volume\")},{\"../src/traces/volume\":1352}],53:[function(t,e,r){\"use strict\";e.exports=t(\"../src/traces/waterfall\")},{\"../src/traces/waterfall\":1360}],54:[function(t,e,r){\"use strict\";e.exports=function(t){var e=(t=t||{}).eye||[0,0,1],r=t.center||[0,0,0],s=t.up||[0,1,0],l=t.distanceLimits||[0,1/0],c=t.mode||\"turntable\",u=n(),f=i(),h=a();return u.setDistanceLimits(l[0],l[1]),u.lookAt(0,e,r,s),f.setDistanceLimits(l[0],l[1]),f.lookAt(0,e,r,s),h.setDistanceLimits(l[0],l[1]),h.lookAt(0,e,r,s),new o({turntable:u,orbit:f,matrix:h},c)};var n=t(\"turntable-camera-controller\"),i=t(\"orbit-camera-controller\"),a=t(\"matrix-camera-controller\");function o(t,e){this._controllerNames=Object.keys(t),this._controllerList=this._controllerNames.map((function(e){return t[e]})),this._mode=e,this._active=t[e],this._active||(this._mode=\"turntable\",this._active=t.turntable),this.modes=this._controllerNames,this.computedMatrix=this._active.computedMatrix,this.computedEye=this._active.computedEye,this.computedUp=this._active.computedUp,this.computedCenter=this._active.computedCenter,this.computedRadius=this._active.computedRadius}var s=o.prototype;[[\"flush\",1],[\"idle\",1],[\"lookAt\",4],[\"rotate\",4],[\"pan\",4],[\"translate\",4],[\"setMatrix\",2],[\"setDistanceLimits\",2],[\"setDistance\",2]].forEach((function(t){for(var e=t[0],r=[],n=0;n<t[1];++n)r.push(\"a\"+n);var i=\"var cc=this._controllerList;for(var i=0;i<cc.length;++i){cc[i].\"+t[0]+\"(\"+r.join()+\")}\";s[e]=Function.apply(null,r.concat(i))})),s.recalcMatrix=function(t){this._active.recalcMatrix(t)},s.getDistance=function(t){return this._active.getDistance(t)},s.getDistanceLimits=function(t){return this._active.getDistanceLimits(t)},s.lastT=function(){return this._active.lastT()},s.setMode=function(t){if(t!==this._mode){var e=this._controllerNames.indexOf(t);if(!(e<0)){var r=this._active,n=this._controllerList[e],i=Math.max(r.lastT(),n.lastT());r.recalcMatrix(i),n.setMatrix(i,r.computedMatrix),this._active=n,this._mode=t,this.computedMatrix=this._active.computedMatrix,this.computedEye=this._active.computedEye,this.computedUp=this._active.computedUp,this.computedCenter=this._active.computedCenter,this.computedRadius=this._active.computedRadius}}},s.getMode=function(){return this._mode}},{\"matrix-camera-controller\":480,\"orbit-camera-controller\":501,\"turntable-camera-controller\":581}],55:[function(t,e,r){!function(n,i){\"object\"==typeof r&&\"undefined\"!=typeof e?i(r,t(\"d3-array\"),t(\"d3-collection\"),t(\"d3-shape\"),t(\"elementary-circuits-directed-graph\")):i(n.d3=n.d3||{},n.d3,n.d3,n.d3,null)}(this,(function(t,e,r,n,i){\"use strict\";function a(t){return t.target.depth}function o(t,e){return t.sourceLinks.length?t.depth:e-1}function s(t){return function(){return t}}i=i&&i.hasOwnProperty(\"default\")?i.default:i;var l=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":typeof t};function c(t,e){return f(t.source,e.source)||t.index-e.index}function u(t,e){return f(t.target,e.target)||t.index-e.index}function f(t,e){return t.partOfCycle===e.partOfCycle?t.y0-e.y0:\"top\"===t.circularLinkType||\"bottom\"===e.circularLinkType?-1:1}function h(t){return t.value}function p(t){return(t.y0+t.y1)/2}function d(t){return p(t.source)}function g(t){return p(t.target)}function m(t){return t.index}function v(t){return t.nodes}function y(t){return t.links}function x(t,e){var r=t.get(e);if(!r)throw new Error(\"missing: \"+e);return r}function b(t,e){return e(t)}function _(t,e,r){var n=0;if(null===r){for(var a=[],o=0;o<t.links.length;o++){var s=t.links[o],l=s.source.index,c=s.target.index;a[l]||(a[l]=[]),a[c]||(a[c]=[]),-1===a[l].indexOf(c)&&a[l].push(c)}var u=i(a);u.sort((function(t,e){return t.length-e.length}));var f={};for(o=0;o<u.length;o++){var h=u[o].slice(-2);f[h[0]]||(f[h[0]]={}),f[h[0]][h[1]]=!0}t.links.forEach((function(t){var e=t.target.index,r=t.source.index;e===r||f[r]&&f[r][e]?(t.circular=!0,t.circularLinkID=n,n+=1):t.circular=!1}))}else t.links.forEach((function(t){t.source[r]<t.target[r]?t.circular=!1:(t.circular=!0,t.circularLinkID=n,n+=1)}))}function w(t,e){var r=0,n=0;t.links.forEach((function(i){i.circular&&(i.source.circularLinkType||i.target.circularLinkType?i.circularLinkType=i.source.circularLinkType?i.source.circularLinkType:i.target.circularLinkType:i.circularLinkType=r<n?\"top\":\"bottom\",\"top\"==i.circularLinkType?r+=1:n+=1,t.nodes.forEach((function(t){b(t,e)!=b(i.source,e)&&b(t,e)!=b(i.target,e)||(t.circularLinkType=i.circularLinkType)})))})),t.links.forEach((function(t){t.circular&&(t.source.circularLinkType==t.target.circularLinkType&&(t.circularLinkType=t.source.circularLinkType),H(t,e)&&(t.circularLinkType=t.source.circularLinkType))}))}function T(t){var e=Math.abs(t.y1-t.y0),r=Math.abs(t.target.x0-t.source.x1);return Math.atan(r/e)}function k(t,e){var r=0;t.sourceLinks.forEach((function(t){r=t.circular&&!H(t,e)?r+1:r}));var n=0;return t.targetLinks.forEach((function(t){n=t.circular&&!H(t,e)?n+1:n})),r+n}function M(t){var e=t.source.sourceLinks,r=0;e.forEach((function(t){r=t.circular?r+1:r}));var n=t.target.targetLinks,i=0;return n.forEach((function(t){i=t.circular?i+1:i})),!(r>1||i>1)}function A(t,e,r){return t.sort(E),t.forEach((function(n,i){var a,o,s=0;if(H(n,r)&&M(n))n.circularPathData.verticalBuffer=s+n.width/2;else{for(var l=0;l<i;l++)if(a=t[i],o=t[l],!(a.source.column<o.target.column||a.target.column>o.source.column)){var c=t[l].circularPathData.verticalBuffer+t[l].width/2+e;s=c>s?c:s}n.circularPathData.verticalBuffer=s+n.width/2}})),t}function S(t,r,i,a){var o=e.min(t.links,(function(t){return t.source.y0}));t.links.forEach((function(t){t.circular&&(t.circularPathData={})})),A(t.links.filter((function(t){return\"top\"==t.circularLinkType})),r,a),A(t.links.filter((function(t){return\"bottom\"==t.circularLinkType})),r,a),t.links.forEach((function(e){if(e.circular){if(e.circularPathData.arcRadius=e.width+10,e.circularPathData.leftNodeBuffer=5,e.circularPathData.rightNodeBuffer=5,e.circularPathData.sourceWidth=e.source.x1-e.source.x0,e.circularPathData.sourceX=e.source.x0+e.circularPathData.sourceWidth,e.circularPathData.targetX=e.target.x0,e.circularPathData.sourceY=e.y0,e.circularPathData.targetY=e.y1,H(e,a)&&M(e))e.circularPathData.leftSmallArcRadius=10+e.width/2,e.circularPathData.leftLargeArcRadius=10+e.width/2,e.circularPathData.rightSmallArcRadius=10+e.width/2,e.circularPathData.rightLargeArcRadius=10+e.width/2,\"bottom\"==e.circularLinkType?(e.circularPathData.verticalFullExtent=e.source.y1+25+e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius):(e.circularPathData.verticalFullExtent=e.source.y0-25-e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius);else{var s=e.source.column,l=e.circularLinkType,c=t.links.filter((function(t){return t.source.column==s&&t.circularLinkType==l}));\"bottom\"==e.circularLinkType?c.sort(L):c.sort(C);var u=0;c.forEach((function(t,n){t.circularLinkID==e.circularLinkID&&(e.circularPathData.leftSmallArcRadius=10+e.width/2+u,e.circularPathData.leftLargeArcRadius=10+e.width/2+n*r+u),u+=t.width})),s=e.target.column,c=t.links.filter((function(t){return t.target.column==s&&t.circularLinkType==l})),\"bottom\"==e.circularLinkType?c.sort(P):c.sort(I),u=0,c.forEach((function(t,n){t.circularLinkID==e.circularLinkID&&(e.circularPathData.rightSmallArcRadius=10+e.width/2+u,e.circularPathData.rightLargeArcRadius=10+e.width/2+n*r+u),u+=t.width})),\"bottom\"==e.circularLinkType?(e.circularPathData.verticalFullExtent=Math.max(i,e.source.y1,e.target.y1)+25+e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent-e.circularPathData.rightLargeArcRadius):(e.circularPathData.verticalFullExtent=o-25-e.circularPathData.verticalBuffer,e.circularPathData.verticalLeftInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.leftLargeArcRadius,e.circularPathData.verticalRightInnerExtent=e.circularPathData.verticalFullExtent+e.circularPathData.rightLargeArcRadius)}e.circularPathData.leftInnerExtent=e.circularPathData.sourceX+e.circularPathData.leftNodeBuffer,e.circularPathData.rightInnerExtent=e.circularPathData.targetX-e.circularPathData.rightNodeBuffer,e.circularPathData.leftFullExtent=e.circularPathData.sourceX+e.circularPathData.leftLargeArcRadius+e.circularPathData.leftNodeBuffer,e.circularPathData.rightFullExtent=e.circularPathData.targetX-e.circularPathData.rightLargeArcRadius-e.circularPathData.rightNodeBuffer}if(e.circular)e.path=function(t){var e=\"\";e=\"top\"==t.circularLinkType?\"M\"+t.circularPathData.sourceX+\" \"+t.circularPathData.sourceY+\" L\"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.sourceY+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftSmallArcRadius+\" 0 0 0 \"+t.circularPathData.leftFullExtent+\" \"+(t.circularPathData.sourceY-t.circularPathData.leftSmallArcRadius)+\" L\"+t.circularPathData.leftFullExtent+\" \"+t.circularPathData.verticalLeftInnerExtent+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftLargeArcRadius+\" 0 0 0 \"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" L\"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightLargeArcRadius+\" 0 0 0 \"+t.circularPathData.rightFullExtent+\" \"+t.circularPathData.verticalRightInnerExtent+\" L\"+t.circularPathData.rightFullExtent+\" \"+(t.circularPathData.targetY-t.circularPathData.rightSmallArcRadius)+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightSmallArcRadius+\" 0 0 0 \"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.targetY+\" L\"+t.circularPathData.targetX+\" \"+t.circularPathData.targetY:\"M\"+t.circularPathData.sourceX+\" \"+t.circularPathData.sourceY+\" L\"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.sourceY+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftSmallArcRadius+\" 0 0 1 \"+t.circularPathData.leftFullExtent+\" \"+(t.circularPathData.sourceY+t.circularPathData.leftSmallArcRadius)+\" L\"+t.circularPathData.leftFullExtent+\" \"+t.circularPathData.verticalLeftInnerExtent+\" A\"+t.circularPathData.leftLargeArcRadius+\" \"+t.circularPathData.leftLargeArcRadius+\" 0 0 1 \"+t.circularPathData.leftInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" L\"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.verticalFullExtent+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightLargeArcRadius+\" 0 0 1 \"+t.circularPathData.rightFullExtent+\" \"+t.circularPathData.verticalRightInnerExtent+\" L\"+t.circularPathData.rightFullExtent+\" \"+(t.circularPathData.targetY+t.circularPathData.rightSmallArcRadius)+\" A\"+t.circularPathData.rightLargeArcRadius+\" \"+t.circularPathData.rightSmallArcRadius+\" 0 0 1 \"+t.circularPathData.rightInnerExtent+\" \"+t.circularPathData.targetY+\" L\"+t.circularPathData.targetX+\" \"+t.circularPathData.targetY;return e}(e);else{var f=n.linkHorizontal().source((function(t){return[t.source.x0+(t.source.x1-t.source.x0),t.y0]})).target((function(t){return[t.target.x0,t.y1]}));e.path=f(e)}}))}function E(t,e){return z(t)==z(e)?\"bottom\"==t.circularLinkType?L(t,e):C(t,e):z(e)-z(t)}function C(t,e){return t.y0-e.y0}function L(t,e){return e.y0-t.y0}function I(t,e){return t.y1-e.y1}function P(t,e){return e.y1-t.y1}function z(t){return t.target.column-t.source.column}function O(t){return t.target.x0-t.source.x1}function D(t,e){var r=T(t),n=O(e)/Math.tan(r);return\"up\"==q(t)?t.y1+n:t.y1-n}function R(t,e){var r=T(t),n=O(e)/Math.tan(r);return\"up\"==q(t)?t.y1-n:t.y1+n}function F(t,e,r,n){t.links.forEach((function(i){if(!i.circular&&i.target.column-i.source.column>1){var a=i.source.column+1,o=i.target.column-1,s=1,l=o-a+1;for(s=1;a<=o;a++,s++)t.nodes.forEach((function(o){if(o.column==a){var c,u=s/(l+1),f=Math.pow(1-u,3),h=3*u*Math.pow(1-u,2),p=3*Math.pow(u,2)*(1-u),d=Math.pow(u,3),g=f*i.y0+h*i.y0+p*i.y1+d*i.y1,m=g-i.width/2,v=g+i.width/2;m>o.y0&&m<o.y1?(c=o.y1-m+10,c=\"bottom\"==o.circularLinkType?c:-c,o=N(o,c,e,r),t.nodes.forEach((function(t){b(t,n)!=b(o,n)&&t.column==o.column&&B(o,t)&&N(t,c,e,r)}))):(v>o.y0&&v<o.y1||m<o.y0&&v>o.y1)&&(c=v-o.y0+10,o=N(o,c,e,r),t.nodes.forEach((function(t){b(t,n)!=b(o,n)&&t.column==o.column&&t.y0<o.y1&&t.y1>o.y1&&N(t,c,e,r)})))}}))}}))}function B(t,e){return t.y0>e.y0&&t.y0<e.y1||(t.y1>e.y0&&t.y1<e.y1||t.y0<e.y0&&t.y1>e.y1)}function N(t,e,r,n){return t.y0+e>=r&&t.y1+e<=n&&(t.y0=t.y0+e,t.y1=t.y1+e,t.targetLinks.forEach((function(t){t.y1=t.y1+e})),t.sourceLinks.forEach((function(t){t.y0=t.y0+e}))),t}function j(t,e,r,n){t.nodes.forEach((function(i){n&&i.y+(i.y1-i.y0)>e&&(i.y=i.y-(i.y+(i.y1-i.y0)-e));var a=t.links.filter((function(t){return b(t.source,r)==b(i,r)})),o=a.length;o>1&&a.sort((function(t,e){if(!t.circular&&!e.circular){if(t.target.column==e.target.column)return t.y1-e.y1;if(!V(t,e))return t.y1-e.y1;if(t.target.column>e.target.column){var r=R(e,t);return t.y1-r}if(e.target.column>t.target.column)return R(t,e)-e.y1}return t.circular&&!e.circular?\"top\"==t.circularLinkType?-1:1:e.circular&&!t.circular?\"top\"==e.circularLinkType?1:-1:t.circular&&e.circular?t.circularLinkType===e.circularLinkType&&\"top\"==t.circularLinkType?t.target.column===e.target.column?t.target.y1-e.target.y1:e.target.column-t.target.column:t.circularLinkType===e.circularLinkType&&\"bottom\"==t.circularLinkType?t.target.column===e.target.column?e.target.y1-t.target.y1:t.target.column-e.target.column:\"top\"==t.circularLinkType?-1:1:void 0}));var s=i.y0;a.forEach((function(t){t.y0=s+t.width/2,s+=t.width})),a.forEach((function(t,e){if(\"bottom\"==t.circularLinkType){for(var r=e+1,n=0;r<o;r++)n+=a[r].width;t.y0=i.y1-n-t.width/2}}))}))}function U(t,e,r){t.nodes.forEach((function(e){var n=t.links.filter((function(t){return b(t.target,r)==b(e,r)})),i=n.length;i>1&&n.sort((function(t,e){if(!t.circular&&!e.circular){if(t.source.column==e.source.column)return t.y0-e.y0;if(!V(t,e))return t.y0-e.y0;if(e.source.column<t.source.column){var r=D(e,t);return t.y0-r}if(t.source.column<e.source.column)return D(t,e)-e.y0}return t.circular&&!e.circular?\"top\"==t.circularLinkType?-1:1:e.circular&&!t.circular?\"top\"==e.circularLinkType?1:-1:t.circular&&e.circular?t.circularLinkType===e.circularLinkType&&\"top\"==t.circularLinkType?t.source.column===e.source.column?t.source.y1-e.source.y1:t.source.column-e.source.column:t.circularLinkType===e.circularLinkType&&\"bottom\"==t.circularLinkType?t.source.column===e.source.column?t.source.y1-e.source.y1:e.source.column-t.source.column:\"top\"==t.circularLinkType?-1:1:void 0}));var a=e.y0;n.forEach((function(t){t.y1=a+t.width/2,a+=t.width})),n.forEach((function(t,r){if(\"bottom\"==t.circularLinkType){for(var a=r+1,o=0;a<i;a++)o+=n[a].width;t.y1=e.y1-o-t.width/2}}))}))}function V(t,e){return q(t)==q(e)}function q(t){return t.y0-t.y1>0?\"up\":\"down\"}function H(t,e){return b(t.source,e)==b(t.target,e)}function G(t,r,n){var i=t.nodes,a=t.links,o=!1,s=!1;if(a.forEach((function(t){\"top\"==t.circularLinkType?o=!0:\"bottom\"==t.circularLinkType&&(s=!0)})),0==o||0==s){var l=e.min(i,(function(t){return t.y0})),c=(n-r)/(e.max(i,(function(t){return t.y1}))-l);i.forEach((function(t){var e=(t.y1-t.y0)*c;t.y0=(t.y0-l)*c,t.y1=t.y0+e})),a.forEach((function(t){t.y0=(t.y0-l)*c,t.y1=(t.y1-l)*c,t.width=t.width*c}))}}t.sankeyCircular=function(){var t,n,i=0,a=0,b=1,T=1,M=24,A=m,E=o,C=v,L=y,I=32,P=2,z=null;function O(){var t={nodes:C.apply(null,arguments),links:L.apply(null,arguments)};D(t),_(t,A,z),R(t),B(t),w(t,A),N(t,I,A),V(t);for(var e=4,r=0;r<e;r++)j(t,T,A),U(t,T,A),F(t,a,T,A),j(t,T,A),U(t,T,A);return G(t,a,T),S(t,P,T,A),t}function D(t){t.nodes.forEach((function(t,e){t.index=e,t.sourceLinks=[],t.targetLinks=[]}));var e=r.map(t.nodes,A);return t.links.forEach((function(t,r){t.index=r;var n=t.source,i=t.target;\"object\"!==(\"undefined\"==typeof n?\"undefined\":l(n))&&(n=t.source=x(e,n)),\"object\"!==(\"undefined\"==typeof i?\"undefined\":l(i))&&(i=t.target=x(e,i)),n.sourceLinks.push(t),i.targetLinks.push(t)})),t}function R(t){t.nodes.forEach((function(t){t.partOfCycle=!1,t.value=Math.max(e.sum(t.sourceLinks,h),e.sum(t.targetLinks,h)),t.sourceLinks.forEach((function(e){e.circular&&(t.partOfCycle=!0,t.circularLinkType=e.circularLinkType)})),t.targetLinks.forEach((function(e){e.circular&&(t.partOfCycle=!0,t.circularLinkType=e.circularLinkType)}))}))}function B(t){var e,r,n;for(e=t.nodes,r=[],n=0;e.length;++n,e=r,r=[])e.forEach((function(t){t.depth=n,t.sourceLinks.forEach((function(t){r.indexOf(t.target)<0&&!t.circular&&r.push(t.target)}))}));for(e=t.nodes,r=[],n=0;e.length;++n,e=r,r=[])e.forEach((function(t){t.height=n,t.targetLinks.forEach((function(t){r.indexOf(t.source)<0&&!t.circular&&r.push(t.source)}))}));t.nodes.forEach((function(t){t.column=Math.floor(E.call(null,t,n))}))}function N(o,s,l){var c=r.nest().key((function(t){return t.column})).sortKeys(e.ascending).entries(o.nodes).map((function(t){return t.values}));!function(r){if(n){var s=1/0;c.forEach((function(t){var e=T*n/(t.length+1);s=e<s?e:s})),t=s}var l=e.min(c,(function(r){return(T-a-(r.length-1)*t)/e.sum(r,h)}));l*=.3,o.links.forEach((function(t){t.width=t.value*l}));var u=function(t){var r=0,n=0,i=0,a=0,o=e.max(t.nodes,(function(t){return t.column}));return t.links.forEach((function(t){t.circular&&(\"top\"==t.circularLinkType?r+=t.width:n+=t.width,0==t.target.column&&(a+=t.width),t.source.column==o&&(i+=t.width))})),{top:r=r>0?r+25+10:r,bottom:n=n>0?n+25+10:n,left:a=a>0?a+25+10:a,right:i=i>0?i+25+10:i}}(o),f=function(t,r){var n=e.max(t.nodes,(function(t){return t.column})),o=b-i,s=T-a,l=o/(o+r.right+r.left),c=s/(s+r.top+r.bottom);return i=i*l+r.left,b=0==r.right?b:b*l,a=a*c+r.top,T*=c,t.nodes.forEach((function(t){t.x0=i+t.column*((b-i-M)/n),t.x1=t.x0+M})),c}(o,u);l*=f,o.links.forEach((function(t){t.width=t.value*l})),c.forEach((function(t){var e=t.length;t.forEach((function(t,n){t.depth==c.length-1&&1==e||0==t.depth&&1==e?(t.y0=T/2-t.value*l,t.y1=t.y0+t.value*l):t.partOfCycle?0==k(t,r)?(t.y0=T/2+n,t.y1=t.y0+t.value*l):\"top\"==t.circularLinkType?(t.y0=a+n,t.y1=t.y0+t.value*l):(t.y0=T-t.value*l-n,t.y1=t.y0+t.value*l):0==u.top||0==u.bottom?(t.y0=(T-a)/e*n,t.y1=t.y0+t.value*l):(t.y0=(T-a)/2-e/2+n,t.y1=t.y0+t.value*l)}))}))}(l),y();for(var u=1,m=s;m>0;--m)v(u*=.99,l),y();function v(t,r){var n=c.length;c.forEach((function(i){var a=i.length,o=i[0].depth;i.forEach((function(i){var s;if(i.sourceLinks.length||i.targetLinks.length)if(i.partOfCycle&&k(i,r)>0);else if(0==o&&1==a)s=i.y1-i.y0,i.y0=T/2-s/2,i.y1=T/2+s/2;else if(o==n-1&&1==a)s=i.y1-i.y0,i.y0=T/2-s/2,i.y1=T/2+s/2;else{var l=e.mean(i.sourceLinks,g),c=e.mean(i.targetLinks,d),u=((l&&c?(l+c)/2:l||c)-p(i))*t;i.y0+=u,i.y1+=u}}))}))}function y(){c.forEach((function(e){var r,n,i,o=a,s=e.length;for(e.sort(f),i=0;i<s;++i)(n=o-(r=e[i]).y0)>0&&(r.y0+=n,r.y1+=n),o=r.y1+t;if((n=o-t-T)>0)for(o=r.y0-=n,r.y1-=n,i=s-2;i>=0;--i)(n=(r=e[i]).y1+t-o)>0&&(r.y0-=n,r.y1-=n),o=r.y0}))}}function V(t){t.nodes.forEach((function(t){t.sourceLinks.sort(u),t.targetLinks.sort(c)})),t.nodes.forEach((function(t){var e=t.y0,r=e,n=t.y1,i=n;t.sourceLinks.forEach((function(t){t.circular?(t.y0=n-t.width/2,n-=t.width):(t.y0=e+t.width/2,e+=t.width)})),t.targetLinks.forEach((function(t){t.circular?(t.y1=i-t.width/2,i-=t.width):(t.y1=r+t.width/2,r+=t.width)}))}))}return O.nodeId=function(t){return arguments.length?(A=\"function\"==typeof t?t:s(t),O):A},O.nodeAlign=function(t){return arguments.length?(E=\"function\"==typeof t?t:s(t),O):E},O.nodeWidth=function(t){return arguments.length?(M=+t,O):M},O.nodePadding=function(e){return arguments.length?(t=+e,O):t},O.nodes=function(t){return arguments.length?(C=\"function\"==typeof t?t:s(t),O):C},O.links=function(t){return arguments.length?(L=\"function\"==typeof t?t:s(t),O):L},O.size=function(t){return arguments.length?(i=a=0,b=+t[0],T=+t[1],O):[b-i,T-a]},O.extent=function(t){return arguments.length?(i=+t[0][0],b=+t[1][0],a=+t[0][1],T=+t[1][1],O):[[i,a],[b,T]]},O.iterations=function(t){return arguments.length?(I=+t,O):I},O.circularLinkGap=function(t){return arguments.length?(P=+t,O):P},O.nodePaddingRatio=function(t){return arguments.length?(n=+t,O):n},O.sortNodes=function(t){return arguments.length?(z=t,O):z},O.update=function(t){return w(t,A),V(t),t.links.forEach((function(t){t.circular&&(t.circularLinkType=t.y0+t.y1<T?\"top\":\"bottom\",t.source.circularLinkType=t.circularLinkType,t.target.circularLinkType=t.circularLinkType)})),j(t,T,A,!1),U(t,T,A),S(t,P,T,A),t},O},t.sankeyCenter=function(t){return t.targetLinks.length?t.depth:t.sourceLinks.length?e.min(t.sourceLinks,a)-1:0},t.sankeyLeft=function(t){return t.depth},t.sankeyRight=function(t,e){return e-1-t.height},t.sankeyJustify=o,Object.defineProperty(t,\"__esModule\",{value:!0})}))},{\"d3-array\":156,\"d3-collection\":157,\"d3-shape\":165,\"elementary-circuits-directed-graph\":179}],56:[function(t,e,r){!function(n,i){\"object\"==typeof r&&\"undefined\"!=typeof e?i(r,t(\"d3-array\"),t(\"d3-collection\"),t(\"d3-shape\")):i(n.d3=n.d3||{},n.d3,n.d3,n.d3)}(this,(function(t,e,r,n){\"use strict\";function i(t){return t.target.depth}function a(t,e){return t.sourceLinks.length?t.depth:e-1}function o(t){return function(){return t}}function s(t,e){return c(t.source,e.source)||t.index-e.index}function l(t,e){return c(t.target,e.target)||t.index-e.index}function c(t,e){return t.y0-e.y0}function u(t){return t.value}function f(t){return(t.y0+t.y1)/2}function h(t){return f(t.source)*t.value}function p(t){return f(t.target)*t.value}function d(t){return t.index}function g(t){return t.nodes}function m(t){return t.links}function v(t,e){var r=t.get(e);if(!r)throw new Error(\"missing: \"+e);return r}function y(t){return[t.source.x1,t.y0]}function x(t){return[t.target.x0,t.y1]}t.sankey=function(){var t=0,n=0,i=1,y=1,x=24,b=8,_=d,w=a,T=g,k=m,M=32;function A(){var t={nodes:T.apply(null,arguments),links:k.apply(null,arguments)};return S(t),E(t),C(t),L(t),I(t),t}function S(t){t.nodes.forEach((function(t,e){t.index=e,t.sourceLinks=[],t.targetLinks=[]}));var e=r.map(t.nodes,_);t.links.forEach((function(t,r){t.index=r;var n=t.source,i=t.target;\"object\"!=typeof n&&(n=t.source=v(e,n)),\"object\"!=typeof i&&(i=t.target=v(e,i)),n.sourceLinks.push(t),i.targetLinks.push(t)}))}function E(t){t.nodes.forEach((function(t){t.value=Math.max(e.sum(t.sourceLinks,u),e.sum(t.targetLinks,u))}))}function C(e){var r,n,a;for(r=e.nodes,n=[],a=0;r.length;++a,r=n,n=[])r.forEach((function(t){t.depth=a,t.sourceLinks.forEach((function(t){n.indexOf(t.target)<0&&n.push(t.target)}))}));for(r=e.nodes,n=[],a=0;r.length;++a,r=n,n=[])r.forEach((function(t){t.height=a,t.targetLinks.forEach((function(t){n.indexOf(t.source)<0&&n.push(t.source)}))}));var o=(i-t-x)/(a-1);e.nodes.forEach((function(e){e.x1=(e.x0=t+Math.max(0,Math.min(a-1,Math.floor(w.call(null,e,a))))*o)+x}))}function L(t){var i=r.nest().key((function(t){return t.x0})).sortKeys(e.ascending).entries(t.nodes).map((function(t){return t.values}));!function(){var r=e.max(i,(function(t){return t.length})),a=2/3*(y-n)/(r-1);b>a&&(b=a);var o=e.min(i,(function(t){return(y-n-(t.length-1)*b)/e.sum(t,u)}));i.forEach((function(t){t.forEach((function(t,e){t.y1=(t.y0=e)+t.value*o}))})),t.links.forEach((function(t){t.width=t.value*o}))}(),d();for(var a=1,o=M;o>0;--o)l(a*=.99),d(),s(a),d();function s(t){i.forEach((function(r){r.forEach((function(r){if(r.targetLinks.length){var n=(e.sum(r.targetLinks,h)/e.sum(r.targetLinks,u)-f(r))*t;r.y0+=n,r.y1+=n}}))}))}function l(t){i.slice().reverse().forEach((function(r){r.forEach((function(r){if(r.sourceLinks.length){var n=(e.sum(r.sourceLinks,p)/e.sum(r.sourceLinks,u)-f(r))*t;r.y0+=n,r.y1+=n}}))}))}function d(){i.forEach((function(t){var e,r,i,a=n,o=t.length;for(t.sort(c),i=0;i<o;++i)(r=a-(e=t[i]).y0)>0&&(e.y0+=r,e.y1+=r),a=e.y1+b;if((r=a-b-y)>0)for(a=e.y0-=r,e.y1-=r,i=o-2;i>=0;--i)(r=(e=t[i]).y1+b-a)>0&&(e.y0-=r,e.y1-=r),a=e.y0}))}}function I(t){t.nodes.forEach((function(t){t.sourceLinks.sort(l),t.targetLinks.sort(s)})),t.nodes.forEach((function(t){var e=t.y0,r=e;t.sourceLinks.forEach((function(t){t.y0=e+t.width/2,e+=t.width})),t.targetLinks.forEach((function(t){t.y1=r+t.width/2,r+=t.width}))}))}return A.update=function(t){return I(t),t},A.nodeId=function(t){return arguments.length?(_=\"function\"==typeof t?t:o(t),A):_},A.nodeAlign=function(t){return arguments.length?(w=\"function\"==typeof t?t:o(t),A):w},A.nodeWidth=function(t){return arguments.length?(x=+t,A):x},A.nodePadding=function(t){return arguments.length?(b=+t,A):b},A.nodes=function(t){return arguments.length?(T=\"function\"==typeof t?t:o(t),A):T},A.links=function(t){return arguments.length?(k=\"function\"==typeof t?t:o(t),A):k},A.size=function(e){return arguments.length?(t=n=0,i=+e[0],y=+e[1],A):[i-t,y-n]},A.extent=function(e){return arguments.length?(t=+e[0][0],i=+e[1][0],n=+e[0][1],y=+e[1][1],A):[[t,n],[i,y]]},A.iterations=function(t){return arguments.length?(M=+t,A):M},A},t.sankeyCenter=function(t){return t.targetLinks.length?t.depth:t.sourceLinks.length?e.min(t.sourceLinks,i)-1:0},t.sankeyLeft=function(t){return t.depth},t.sankeyRight=function(t,e){return e-1-t.height},t.sankeyJustify=a,t.sankeyLinkHorizontal=function(){return n.linkHorizontal().source(y).target(x)},Object.defineProperty(t,\"__esModule\",{value:!0})}))},{\"d3-array\":156,\"d3-collection\":157,\"d3-shape\":165}],57:[function(t,e,r){\"use strict\";e.exports=t(\"./quad\")},{\"./quad\":58}],58:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),i=t(\"clamp\"),a=t(\"parse-rect\"),o=t(\"array-bounds\"),s=t(\"pick-by-alias\"),l=t(\"defined\"),c=t(\"flatten-vertex-data\"),u=t(\"is-obj\"),f=t(\"dtype\"),h=t(\"math-log2\");function p(t,e){for(var r=e[0],n=e[1],a=1/(e[2]-r),o=1/(e[3]-n),s=new Array(t.length),l=0,c=t.length/2;l<c;l++)s[2*l]=i((t[2*l]-r)*a,0,1),s[2*l+1]=i((t[2*l+1]-n)*o,0,1);return s}e.exports=function(t,e){e||(e={}),t=c(t,\"float64\"),e=s(e,{bounds:\"range bounds dataBox databox\",maxDepth:\"depth maxDepth maxdepth level maxLevel maxlevel levels\",dtype:\"type dtype format out dst output destination\"});var r=l(e.maxDepth,255),i=l(e.bounds,o(t,2));i[0]===i[2]&&i[2]++,i[1]===i[3]&&i[3]++;var d,g=p(t,i),m=t.length>>>1;e.dtype||(e.dtype=\"array\"),\"string\"==typeof e.dtype?d=new(f(e.dtype))(m):e.dtype&&(d=e.dtype,Array.isArray(d)&&(d.length=m));for(var v=0;v<m;++v)d[v]=v;var y=[],x=[],b=[],_=[];!function t(e,n,i,a,o,s){if(!a.length)return null;var l=y[o]||(y[o]=[]),c=b[o]||(b[o]=[]),u=x[o]||(x[o]=[]),f=l.length;if(++o>r||s>1073741824){for(var h=0;h<a.length;h++)l.push(a[h]),c.push(s),u.push(null,null,null,null);return f}if(l.push(a[0]),c.push(s),a.length<=1)return u.push(null,null,null,null),f;for(var p=.5*i,d=e+p,m=n+p,v=[],_=[],w=[],T=[],k=1,M=a.length;k<M;k++){var A=a[k],S=g[2*A],E=g[2*A+1];S<d?E<m?v.push(A):_.push(A):E<m?w.push(A):T.push(A)}return s<<=2,u.push(t(e,n,p,v,o,s),t(e,m,p,_,o,s+1),t(d,n,p,w,o,s+2),t(d,m,p,T,o,s+3)),f}(0,0,1,d,0,1);for(var w=0,T=0;T<y.length;T++){var k=y[T];if(d.set)d.set(k,w);else for(var M=0,A=k.length;M<A;M++)d[M+w]=k[M];var S=w+y[T].length;_[T]=[w,S],w=S}return d.range=function(){var e,r=[],n=arguments.length;for(;n--;)r[n]=arguments[n];if(u(r[r.length-1])){var o=r.pop();r.length||null==o.x&&null==o.l&&null==o.left||(r=[o],e={}),e=s(o,{level:\"level maxLevel\",d:\"d diam diameter r radius px pxSize pixel pixelSize maxD size minSize\",lod:\"lod details ranges offsets\"})}else e={};r.length||(r=i);var c=a.apply(void 0,r),f=[Math.min(c.x,c.x+c.width),Math.min(c.y,c.y+c.height),Math.max(c.x,c.x+c.width),Math.max(c.y,c.y+c.height)],d=f[0],g=f[1],m=f[2],v=f[3],b=p([d,g,m,v],i),_=b[0],w=b[1],T=b[2],k=b[3],M=l(e.level,y.length);if(null!=e.d){var A;\"number\"==typeof e.d?A=[e.d,e.d]:e.d.length&&(A=e.d),M=Math.min(Math.max(Math.ceil(-h(Math.abs(A[0])/(i[2]-i[0]))),Math.ceil(-h(Math.abs(A[1])/(i[3]-i[1])))),M)}if(M=Math.min(M,y.length),e.lod)return E(_,w,T,k,M);var S=[];function C(e,r,n,i,a,o){if(null!==a&&null!==o&&!(_>e+n||w>r+n||T<e||k<r||i>=M||a===o)){var s=y[i];void 0===o&&(o=s.length);for(var l=a;l<o;l++){var c=s[l],u=t[2*c],f=t[2*c+1];u>=d&&u<=m&&f>=g&&f<=v&&S.push(c)}var h=x[i],p=h[4*a+0],b=h[4*a+1],A=h[4*a+2],E=h[4*a+3],I=L(h,a+1),P=.5*n,z=i+1;C(e,r,P,z,p,b||A||E||I),C(e,r+P,P,z,b,A||E||I),C(e+P,r,P,z,A,E||I),C(e+P,r+P,P,z,E,I)}}function L(t,e){for(var r=null,n=0;null===r;)if(r=t[4*e+n],++n>t.length)return null;return r}return C(0,0,1,0,0,1),S},d;function E(t,e,r,i,a){for(var o=[],s=0;s<a;s++){var l=b[s],c=_[s][0],u=C(t,e,s),f=C(r,i,s),h=n.ge(l,u),p=n.gt(l,f,h,l.length-1);o[s]=[h+c,p+c]}return o}function C(t,e,r){for(var n=1,i=.5,a=.5,o=.5,s=0;s<r;s++)n<<=2,n+=t<i?e<a?0:1:e<a?2:3,o*=.5,i+=t<i?-o:o,a+=e<a?-o:o;return n}}},{\"array-bounds\":70,\"binary-search-bounds\":96,clamp:120,defined:170,dtype:175,\"flatten-vertex-data\":244,\"is-obj\":468,\"math-log2\":479,\"parse-rect\":504,\"pick-by-alias\":511}],59:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=t(\"@turf/meta\");function i(t){var e=0;if(t&&t.length>0){e+=Math.abs(a(t[0]));for(var r=1;r<t.length;r++)e-=Math.abs(a(t[r]))}return e}function a(t){var e,r,n,i,a,s,l=0,c=t.length;if(c>2){for(s=0;s<c;s++)s===c-2?(n=c-2,i=c-1,a=0):s===c-1?(n=c-1,i=0,a=1):(n=s,i=s+1,a=s+2),e=t[n],r=t[i],l+=(o(t[a][0])-o(e[0]))*Math.sin(o(r[1]));l=6378137*l*6378137/2}return l}function o(t){return t*Math.PI/180}r.default=function(t){return n.geomReduce(t,(function(t,e){return t+function(t){var e,r=0;switch(t.type){case\"Polygon\":return i(t.coordinates);case\"MultiPolygon\":for(e=0;e<t.coordinates.length;e++)r+=i(t.coordinates[e]);return r;case\"Point\":case\"MultiPoint\":case\"LineString\":case\"MultiLineString\":return 0}return 0}(e)}),0)}},{\"@turf/meta\":63}],60:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=t(\"@turf/meta\");r.default=function(t){var e=[1/0,1/0,-1/0,-1/0];return n.coordEach(t,(function(t){e[0]>t[0]&&(e[0]=t[0]),e[1]>t[1]&&(e[1]=t[1]),e[2]<t[0]&&(e[2]=t[0]),e[3]<t[1]&&(e[3]=t[1])})),e}},{\"@turf/meta\":63}],61:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=t(\"@turf/meta\"),i=t(\"@turf/helpers\");r.default=function(t,e){void 0===e&&(e={});var r=0,a=0,o=0;return n.coordEach(t,(function(t){r+=t[0],a+=t[1],o++})),i.point([r/o,a/o],e.properties)}},{\"@turf/helpers\":62,\"@turf/meta\":63}],62:[function(t,e,r){\"use strict\";function n(t,e,r){void 0===r&&(r={});var n={type:\"Feature\"};return(0===r.id||r.id)&&(n.id=r.id),r.bbox&&(n.bbox=r.bbox),n.properties=e||{},n.geometry=t,n}function i(t,e,r){return void 0===r&&(r={}),n({type:\"Point\",coordinates:t},e,r)}function a(t,e,r){void 0===r&&(r={});for(var i=0,a=t;i<a.length;i++){var o=a[i];if(o.length<4)throw new Error(\"Each LinearRing of a Polygon must have 4 or more Positions.\");for(var s=0;s<o[o.length-1].length;s++)if(o[o.length-1][s]!==o[0][s])throw new Error(\"First and last Position are not equivalent.\")}return n({type:\"Polygon\",coordinates:t},e,r)}function o(t,e,r){if(void 0===r&&(r={}),t.length<2)throw new Error(\"coordinates must be an array of two or more positions\");return n({type:\"LineString\",coordinates:t},e,r)}function s(t,e){void 0===e&&(e={});var r={type:\"FeatureCollection\"};return e.id&&(r.id=e.id),e.bbox&&(r.bbox=e.bbox),r.features=t,r}function l(t,e,r){return void 0===r&&(r={}),n({type:\"MultiLineString\",coordinates:t},e,r)}function c(t,e,r){return void 0===r&&(r={}),n({type:\"MultiPoint\",coordinates:t},e,r)}function u(t,e,r){return void 0===r&&(r={}),n({type:\"MultiPolygon\",coordinates:t},e,r)}function f(t,e){void 0===e&&(e=\"kilometers\");var n=r.factors[e];if(!n)throw new Error(e+\" units is invalid\");return t*n}function h(t,e){void 0===e&&(e=\"kilometers\");var n=r.factors[e];if(!n)throw new Error(e+\" units is invalid\");return t/n}function p(t){return 180*(t%(2*Math.PI))/Math.PI}function d(t){return!isNaN(t)&&null!==t&&!Array.isArray(t)&&!/^\\s*$/.test(t)}Object.defineProperty(r,\"__esModule\",{value:!0}),r.earthRadius=6371008.8,r.factors={centimeters:100*r.earthRadius,centimetres:100*r.earthRadius,degrees:r.earthRadius/111325,feet:3.28084*r.earthRadius,inches:39.37*r.earthRadius,kilometers:r.earthRadius/1e3,kilometres:r.earthRadius/1e3,meters:r.earthRadius,metres:r.earthRadius,miles:r.earthRadius/1609.344,millimeters:1e3*r.earthRadius,millimetres:1e3*r.earthRadius,nauticalmiles:r.earthRadius/1852,radians:1,yards:r.earthRadius/1.0936},r.unitsFactors={centimeters:100,centimetres:100,degrees:1/111325,feet:3.28084,inches:39.37,kilometers:.001,kilometres:.001,meters:1,metres:1,miles:1/1609.344,millimeters:1e3,millimetres:1e3,nauticalmiles:1/1852,radians:1/r.earthRadius,yards:1/1.0936},r.areaFactors={acres:247105e-9,centimeters:1e4,centimetres:1e4,feet:10.763910417,inches:1550.003100006,kilometers:1e-6,kilometres:1e-6,meters:1,metres:1,miles:386e-9,millimeters:1e6,millimetres:1e6,yards:1.195990046},r.feature=n,r.geometry=function(t,e,r){switch(void 0===r&&(r={}),t){case\"Point\":return i(e).geometry;case\"LineString\":return o(e).geometry;case\"Polygon\":return a(e).geometry;case\"MultiPoint\":return c(e).geometry;case\"MultiLineString\":return l(e).geometry;case\"MultiPolygon\":return u(e).geometry;default:throw new Error(t+\" is invalid\")}},r.point=i,r.points=function(t,e,r){return void 0===r&&(r={}),s(t.map((function(t){return i(t,e)})),r)},r.polygon=a,r.polygons=function(t,e,r){return void 0===r&&(r={}),s(t.map((function(t){return a(t,e)})),r)},r.lineString=o,r.lineStrings=function(t,e,r){return void 0===r&&(r={}),s(t.map((function(t){return o(t,e)})),r)},r.featureCollection=s,r.multiLineString=l,r.multiPoint=c,r.multiPolygon=u,r.geometryCollection=function(t,e,r){return void 0===r&&(r={}),n({type:\"GeometryCollection\",geometries:t},e,r)},r.round=function(t,e){if(void 0===e&&(e=0),e&&!(e>=0))throw new Error(\"precision must be a positive number\");var r=Math.pow(10,e||0);return Math.round(t*r)/r},r.radiansToLength=f,r.lengthToRadians=h,r.lengthToDegrees=function(t,e){return p(h(t,e))},r.bearingToAzimuth=function(t){var e=t%360;return e<0&&(e+=360),e},r.radiansToDegrees=p,r.degreesToRadians=function(t){return t%360*Math.PI/180},r.convertLength=function(t,e,r){if(void 0===e&&(e=\"kilometers\"),void 0===r&&(r=\"kilometers\"),!(t>=0))throw new Error(\"length must be a positive number\");return f(h(t,e),r)},r.convertArea=function(t,e,n){if(void 0===e&&(e=\"meters\"),void 0===n&&(n=\"kilometers\"),!(t>=0))throw new Error(\"area must be a positive number\");var i=r.areaFactors[e];if(!i)throw new Error(\"invalid original units\");var a=r.areaFactors[n];if(!a)throw new Error(\"invalid final units\");return t/i*a},r.isNumber=d,r.isObject=function(t){return!!t&&t.constructor===Object},r.validateBBox=function(t){if(!t)throw new Error(\"bbox is required\");if(!Array.isArray(t))throw new Error(\"bbox must be an Array\");if(4!==t.length&&6!==t.length)throw new Error(\"bbox must be an Array of 4 or 6 numbers\");t.forEach((function(t){if(!d(t))throw new Error(\"bbox must only contain numbers\")}))},r.validateId=function(t){if(!t)throw new Error(\"id is required\");if(-1===[\"string\",\"number\"].indexOf(typeof t))throw new Error(\"id must be a number or a string\")},r.radians2degrees=function(){throw new Error(\"method has been renamed to `radiansToDegrees`\")},r.degrees2radians=function(){throw new Error(\"method has been renamed to `degreesToRadians`\")},r.distanceToDegrees=function(){throw new Error(\"method has been renamed to `lengthToDegrees`\")},r.distanceToRadians=function(){throw new Error(\"method has been renamed to `lengthToRadians`\")},r.radiansToDistance=function(){throw new Error(\"method has been renamed to `radiansToLength`\")},r.bearingToAngle=function(){throw new Error(\"method has been renamed to `bearingToAzimuth`\")},r.convertDistance=function(){throw new Error(\"method has been renamed to `convertLength`\")}},{}],63:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=t(\"@turf/helpers\");function i(t,e,r){if(null!==t)for(var n,a,o,s,l,c,u,f,h=0,p=0,d=t.type,g=\"FeatureCollection\"===d,m=\"Feature\"===d,v=g?t.features.length:1,y=0;y<v;y++){l=(f=!!(u=g?t.features[y].geometry:m?t.geometry:t)&&\"GeometryCollection\"===u.type)?u.geometries.length:1;for(var x=0;x<l;x++){var b=0,_=0;if(null!==(s=f?u.geometries[x]:u)){c=s.coordinates;var w=s.type;switch(h=!r||\"Polygon\"!==w&&\"MultiPolygon\"!==w?0:1,w){case null:break;case\"Point\":if(!1===e(c,p,y,b,_))return!1;p++,b++;break;case\"LineString\":case\"MultiPoint\":for(n=0;n<c.length;n++){if(!1===e(c[n],p,y,b,_))return!1;p++,\"MultiPoint\"===w&&b++}\"LineString\"===w&&b++;break;case\"Polygon\":case\"MultiLineString\":for(n=0;n<c.length;n++){for(a=0;a<c[n].length-h;a++){if(!1===e(c[n][a],p,y,b,_))return!1;p++}\"MultiLineString\"===w&&b++,\"Polygon\"===w&&_++}\"Polygon\"===w&&b++;break;case\"MultiPolygon\":for(n=0;n<c.length;n++){for(_=0,a=0;a<c[n].length;a++){for(o=0;o<c[n][a].length-h;o++){if(!1===e(c[n][a][o],p,y,b,_))return!1;p++}_++}b++}break;case\"GeometryCollection\":for(n=0;n<s.geometries.length;n++)if(!1===i(s.geometries[n],e,r))return!1;break;default:throw new Error(\"Unknown Geometry Type\")}}}}}function a(t,e){var r;switch(t.type){case\"FeatureCollection\":for(r=0;r<t.features.length&&!1!==e(t.features[r].properties,r);r++);break;case\"Feature\":e(t.properties,0)}}function o(t,e){if(\"Feature\"===t.type)e(t,0);else if(\"FeatureCollection\"===t.type)for(var r=0;r<t.features.length&&!1!==e(t.features[r],r);r++);}function s(t,e){var r,n,i,a,o,s,l,c,u,f,h=0,p=\"FeatureCollection\"===t.type,d=\"Feature\"===t.type,g=p?t.features.length:1;for(r=0;r<g;r++){for(s=p?t.features[r].geometry:d?t.geometry:t,c=p?t.features[r].properties:d?t.properties:{},u=p?t.features[r].bbox:d?t.bbox:void 0,f=p?t.features[r].id:d?t.id:void 0,o=(l=!!s&&\"GeometryCollection\"===s.type)?s.geometries.length:1,i=0;i<o;i++)if(null!==(a=l?s.geometries[i]:s))switch(a.type){case\"Point\":case\"LineString\":case\"MultiPoint\":case\"Polygon\":case\"MultiLineString\":case\"MultiPolygon\":if(!1===e(a,h,c,u,f))return!1;break;case\"GeometryCollection\":for(n=0;n<a.geometries.length;n++)if(!1===e(a.geometries[n],h,c,u,f))return!1;break;default:throw new Error(\"Unknown Geometry Type\")}else if(!1===e(null,h,c,u,f))return!1;h++}}function l(t,e){s(t,(function(t,r,i,a,o){var s,l=null===t?null:t.type;switch(l){case null:case\"Point\":case\"LineString\":case\"Polygon\":return!1!==e(n.feature(t,i,{bbox:a,id:o}),r,0)&&void 0}switch(l){case\"MultiPoint\":s=\"Point\";break;case\"MultiLineString\":s=\"LineString\";break;case\"MultiPolygon\":s=\"Polygon\"}for(var c=0;c<t.coordinates.length;c++){var u={type:s,coordinates:t.coordinates[c]};if(!1===e(n.feature(u,i),r,c))return!1}}))}function c(t,e){l(t,(function(t,r,a){var o=0;if(t.geometry){var s=t.geometry.type;if(\"Point\"!==s&&\"MultiPoint\"!==s){var l,c=0,u=0,f=0;return!1!==i(t,(function(i,s,h,p,d){if(void 0===l||r>c||p>u||d>f)return l=i,c=r,u=p,f=d,void(o=0);var g=n.lineString([l,i],t.properties);if(!1===e(g,r,a,d,o))return!1;o++,l=i}))&&void 0}}}))}function u(t,e){if(!t)throw new Error(\"geojson is required\");l(t,(function(t,r,i){if(null!==t.geometry){var a=t.geometry.type,o=t.geometry.coordinates;switch(a){case\"LineString\":if(!1===e(t,r,i,0,0))return!1;break;case\"Polygon\":for(var s=0;s<o.length;s++)if(!1===e(n.lineString(o[s],t.properties),r,i,s))return!1}}}))}r.coordEach=i,r.coordReduce=function(t,e,r,n){var a=r;return i(t,(function(t,n,i,o,s){a=0===n&&void 0===r?t:e(a,t,n,i,o,s)}),n),a},r.propEach=a,r.propReduce=function(t,e,r){var n=r;return a(t,(function(t,i){n=0===i&&void 0===r?t:e(n,t,i)})),n},r.featureEach=o,r.featureReduce=function(t,e,r){var n=r;return o(t,(function(t,i){n=0===i&&void 0===r?t:e(n,t,i)})),n},r.coordAll=function(t){var e=[];return i(t,(function(t){e.push(t)})),e},r.geomEach=s,r.geomReduce=function(t,e,r){var n=r;return s(t,(function(t,i,a,o,s){n=0===i&&void 0===r?t:e(n,t,i,a,o,s)})),n},r.flattenEach=l,r.flattenReduce=function(t,e,r){var n=r;return l(t,(function(t,i,a){n=0===i&&0===a&&void 0===r?t:e(n,t,i,a)})),n},r.segmentEach=c,r.segmentReduce=function(t,e,r){var n=r,i=!1;return c(t,(function(t,a,o,s,l){n=!1===i&&void 0===r?t:e(n,t,a,o,s,l),i=!0})),n},r.lineEach=u,r.lineReduce=function(t,e,r){var n=r;return u(t,(function(t,i,a,o){n=0===i&&void 0===r?t:e(n,t,i,a,o)})),n},r.findSegment=function(t,e){if(e=e||{},!n.isObject(e))throw new Error(\"options is invalid\");var r,i=e.featureIndex||0,a=e.multiFeatureIndex||0,o=e.geometryIndex||0,s=e.segmentIndex||0,l=e.properties;switch(t.type){case\"FeatureCollection\":i<0&&(i=t.features.length+i),l=l||t.features[i].properties,r=t.features[i].geometry;break;case\"Feature\":l=l||t.properties,r=t.geometry;break;case\"Point\":case\"MultiPoint\":return null;case\"LineString\":case\"Polygon\":case\"MultiLineString\":case\"MultiPolygon\":r=t;break;default:throw new Error(\"geojson is invalid\")}if(null===r)return null;var c=r.coordinates;switch(r.type){case\"Point\":case\"MultiPoint\":return null;case\"LineString\":return s<0&&(s=c.length+s-1),n.lineString([c[s],c[s+1]],l,e);case\"Polygon\":return o<0&&(o=c.length+o),s<0&&(s=c[o].length+s-1),n.lineString([c[o][s],c[o][s+1]],l,e);case\"MultiLineString\":return a<0&&(a=c.length+a),s<0&&(s=c[a].length+s-1),n.lineString([c[a][s],c[a][s+1]],l,e);case\"MultiPolygon\":return a<0&&(a=c.length+a),o<0&&(o=c[a].length+o),s<0&&(s=c[a][o].length-s-1),n.lineString([c[a][o][s],c[a][o][s+1]],l,e)}throw new Error(\"geojson is invalid\")},r.findPoint=function(t,e){if(e=e||{},!n.isObject(e))throw new Error(\"options is invalid\");var r,i=e.featureIndex||0,a=e.multiFeatureIndex||0,o=e.geometryIndex||0,s=e.coordIndex||0,l=e.properties;switch(t.type){case\"FeatureCollection\":i<0&&(i=t.features.length+i),l=l||t.features[i].properties,r=t.features[i].geometry;break;case\"Feature\":l=l||t.properties,r=t.geometry;break;case\"Point\":case\"MultiPoint\":return null;case\"LineString\":case\"Polygon\":case\"MultiLineString\":case\"MultiPolygon\":r=t;break;default:throw new Error(\"geojson is invalid\")}if(null===r)return null;var c=r.coordinates;switch(r.type){case\"Point\":return n.point(c,l,e);case\"MultiPoint\":return a<0&&(a=c.length+a),n.point(c[a],l,e);case\"LineString\":return s<0&&(s=c.length+s),n.point(c[s],l,e);case\"Polygon\":return o<0&&(o=c.length+o),s<0&&(s=c[o].length+s),n.point(c[o][s],l,e);case\"MultiLineString\":return a<0&&(a=c.length+a),s<0&&(s=c[a].length+s),n.point(c[a][s],l,e);case\"MultiPolygon\":return a<0&&(a=c.length+a),o<0&&(o=c[a].length+o),s<0&&(s=c[a][o].length-s),n.point(c[a][o][s],l,e)}throw new Error(\"geojson is invalid\")}},{\"@turf/helpers\":62}],64:[function(t,e,r){\"use strict\";var n=\"undefined\"==typeof WeakMap?t(\"weak-map\"):WeakMap,i=t(\"gl-buffer\"),a=t(\"gl-vao\"),o=new n;e.exports=function(t){var e=o.get(t),r=e&&(e._triangleBuffer.handle||e._triangleBuffer.buffer);if(!r||!t.isBuffer(r)){var n=i(t,new Float32Array([-1,-1,-1,4,4,-1]));(e=a(t,[{buffer:n,type:t.FLOAT,size:2}]))._triangleBuffer=n,o.set(t,e)}e.bind(),t.drawArrays(t.TRIANGLES,0,3),e.unbind()}},{\"gl-buffer\":259,\"gl-vao\":358,\"weak-map\":602}],65:[function(t,e,r){e.exports=function(t){var e=0,r=0,n=0,i=0;return t.map((function(t){var a=(t=t.slice())[0],o=a.toUpperCase();if(a!=o)switch(t[0]=o,a){case\"a\":t[6]+=n,t[7]+=i;break;case\"v\":t[1]+=i;break;case\"h\":t[1]+=n;break;default:for(var s=1;s<t.length;)t[s++]+=n,t[s++]+=i}switch(o){case\"Z\":n=e,i=r;break;case\"H\":n=t[1];break;case\"V\":i=t[1];break;case\"M\":n=e=t[1],i=r=t[2];break;default:n=t[t.length-2],i=t[t.length-1]}return t}))}},{}],66:[function(t,e,r){var n=t(\"pad-left\");e.exports=function(t,e,r){e=\"number\"==typeof e?e:1,r=r||\": \";var i=t.split(/\\r?\\n/),a=String(i.length+e-1).length;return i.map((function(t,i){var o=i+e,s=String(o).length;return n(o,a-s)+r+t})).join(\"\\n\")}},{\"pad-left\":502}],67:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.length;if(0===e)return[];if(1===e)return[0];for(var r=t[0].length,n=[t[0]],a=[0],o=1;o<e;++o)if(n.push(t[o]),i(n,r)){if(a.push(o),a.length===r+1)return a}else n.pop();return a};var n=t(\"robust-orientation\");function i(t,e){for(var r=new Array(e+1),i=0;i<t.length;++i)r[i]=t[i];for(i=0;i<=t.length;++i){for(var a=t.length;a<=e;++a){for(var o=new Array(e),s=0;s<e;++s)o[s]=Math.pow(a+1-i,s);r[a]=o}if(n.apply(void 0,r))return!0}return!1}},{\"robust-orientation\":548}],68:[function(t,e,r){\"use strict\";e.exports=function(t,e){return n(e).filter((function(r){for(var n=new Array(r.length),a=0;a<r.length;++a)n[a]=e[r[a]];return i(n)*t<1}))};var n=t(\"delaunay-triangulate\"),i=t(\"circumradius\")},{circumradius:119,\"delaunay-triangulate\":171}],69:[function(t,e,r){e.exports=function(t,e){return i(n(t,e))};var n=t(\"alpha-complex\"),i=t(\"simplicial-complex-boundary\")},{\"alpha-complex\":68,\"simplicial-complex-boundary\":555}],70:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(!t||null==t.length)throw Error(\"Argument should be an array\");e=null==e?1:Math.floor(e);for(var r=Array(2*e),n=0;n<e;n++){for(var i=-1/0,a=1/0,o=n,s=t.length;o<s;o+=e)t[o]>i&&(i=t[o]),t[o]<a&&(a=t[o]);r[n]=a,r[e+n]=i}return r}},{}],71:[function(t,e,r){\"use strict\";var n=t(\"array-bounds\");e.exports=function(t,e,r){if(!t||null==t.length)throw Error(\"Argument should be an array\");null==e&&(e=1);null==r&&(r=n(t,e));for(var i=0;i<e;i++){var a=r[e+i],o=r[i],s=i,l=t.length;if(a===1/0&&o===-1/0)for(s=i;s<l;s+=e)t[s]=t[s]===a?1:t[s]===o?0:.5;else if(a===1/0)for(s=i;s<l;s+=e)t[s]=t[s]===a?1:0;else if(o===-1/0)for(s=i;s<l;s+=e)t[s]=t[s]===o?0:1;else{var c=a-o;for(s=i;s<l;s+=e)isNaN(t[s])||(t[s]=0===c?.5:(t[s]-o)/c)}}return t}},{\"array-bounds\":70}],72:[function(t,e,r){e.exports=function(t,e){var r=\"number\"==typeof t,n=\"number\"==typeof e;r&&!n?(e=t,t=0):r||n||(t=0,e=0);var i=(e|=0)-(t|=0);if(i<0)throw new Error(\"array length must be positive\");for(var a=new Array(i),o=0,s=t;o<i;o++,s++)a[o]=s;return a}},{}],73:[function(t,e,r){(function(r){(function(){\"use strict\";var n=t(\"object-assign\");\n",
       "/*!\n",
       " * The buffer module from node.js, for the browser.\n",
       " *\n",
       " * @author   Feross Aboukhadijeh <feross@feross.org> <http://feross.org>\n",
       " * @license  MIT\n",
       " */function i(t,e){if(t===e)return 0;for(var r=t.length,n=e.length,i=0,a=Math.min(r,n);i<a;++i)if(t[i]!==e[i]){r=t[i],n=e[i];break}return r<n?-1:n<r?1:0}function a(t){return r.Buffer&&\"function\"==typeof r.Buffer.isBuffer?r.Buffer.isBuffer(t):!(null==t||!t._isBuffer)}var o=t(\"util/\"),s=Object.prototype.hasOwnProperty,l=Array.prototype.slice,c=\"foo\"===function(){}.name;function u(t){return Object.prototype.toString.call(t)}function f(t){return!a(t)&&(\"function\"==typeof r.ArrayBuffer&&(\"function\"==typeof ArrayBuffer.isView?ArrayBuffer.isView(t):!!t&&(t instanceof DataView||!!(t.buffer&&t.buffer instanceof ArrayBuffer))))}var h=e.exports=y,p=/\\s*function\\s+([^\\(\\s]*)\\s*/;function d(t){if(o.isFunction(t)){if(c)return t.name;var e=t.toString().match(p);return e&&e[1]}}function g(t,e){return\"string\"==typeof t?t.length<e?t:t.slice(0,e):t}function m(t){if(c||!o.isFunction(t))return o.inspect(t);var e=d(t);return\"[Function\"+(e?\": \"+e:\"\")+\"]\"}function v(t,e,r,n,i){throw new h.AssertionError({message:r,actual:t,expected:e,operator:n,stackStartFunction:i})}function y(t,e){t||v(t,!0,e,\"==\",h.ok)}function x(t,e,r,n){if(t===e)return!0;if(a(t)&&a(e))return 0===i(t,e);if(o.isDate(t)&&o.isDate(e))return t.getTime()===e.getTime();if(o.isRegExp(t)&&o.isRegExp(e))return t.source===e.source&&t.global===e.global&&t.multiline===e.multiline&&t.lastIndex===e.lastIndex&&t.ignoreCase===e.ignoreCase;if(null!==t&&\"object\"==typeof t||null!==e&&\"object\"==typeof e){if(f(t)&&f(e)&&u(t)===u(e)&&!(t instanceof Float32Array||t instanceof Float64Array))return 0===i(new Uint8Array(t.buffer),new Uint8Array(e.buffer));if(a(t)!==a(e))return!1;var s=(n=n||{actual:[],expected:[]}).actual.indexOf(t);return-1!==s&&s===n.expected.indexOf(e)||(n.actual.push(t),n.expected.push(e),function(t,e,r,n){if(null==t||null==e)return!1;if(o.isPrimitive(t)||o.isPrimitive(e))return t===e;if(r&&Object.getPrototypeOf(t)!==Object.getPrototypeOf(e))return!1;var i=b(t),a=b(e);if(i&&!a||!i&&a)return!1;if(i)return t=l.call(t),e=l.call(e),x(t,e,r);var s,c,u=T(t),f=T(e);if(u.length!==f.length)return!1;for(u.sort(),f.sort(),c=u.length-1;c>=0;c--)if(u[c]!==f[c])return!1;for(c=u.length-1;c>=0;c--)if(s=u[c],!x(t[s],e[s],r,n))return!1;return!0}(t,e,r,n))}return r?t===e:t==e}function b(t){return\"[object Arguments]\"==Object.prototype.toString.call(t)}function _(t,e){if(!t||!e)return!1;if(\"[object RegExp]\"==Object.prototype.toString.call(e))return e.test(t);try{if(t instanceof e)return!0}catch(t){}return!Error.isPrototypeOf(e)&&!0===e.call({},t)}function w(t,e,r,n){var i;if(\"function\"!=typeof e)throw new TypeError('\"block\" argument must be a function');\"string\"==typeof r&&(n=r,r=null),i=function(t){var e;try{t()}catch(t){e=t}return e}(e),n=(r&&r.name?\" (\"+r.name+\").\":\".\")+(n?\" \"+n:\".\"),t&&!i&&v(i,r,\"Missing expected exception\"+n);var a=\"string\"==typeof n,s=!t&&i&&!r;if((!t&&o.isError(i)&&a&&_(i,r)||s)&&v(i,r,\"Got unwanted exception\"+n),t&&i&&r&&!_(i,r)||!t&&i)throw i}h.AssertionError=function(t){this.name=\"AssertionError\",this.actual=t.actual,this.expected=t.expected,this.operator=t.operator,t.message?(this.message=t.message,this.generatedMessage=!1):(this.message=function(t){return g(m(t.actual),128)+\" \"+t.operator+\" \"+g(m(t.expected),128)}(this),this.generatedMessage=!0);var e=t.stackStartFunction||v;if(Error.captureStackTrace)Error.captureStackTrace(this,e);else{var r=new Error;if(r.stack){var n=r.stack,i=d(e),a=n.indexOf(\"\\n\"+i);if(a>=0){var o=n.indexOf(\"\\n\",a+1);n=n.substring(o+1)}this.stack=n}}},o.inherits(h.AssertionError,Error),h.fail=v,h.ok=y,h.equal=function(t,e,r){t!=e&&v(t,e,r,\"==\",h.equal)},h.notEqual=function(t,e,r){t==e&&v(t,e,r,\"!=\",h.notEqual)},h.deepEqual=function(t,e,r){x(t,e,!1)||v(t,e,r,\"deepEqual\",h.deepEqual)},h.deepStrictEqual=function(t,e,r){x(t,e,!0)||v(t,e,r,\"deepStrictEqual\",h.deepStrictEqual)},h.notDeepEqual=function(t,e,r){x(t,e,!1)&&v(t,e,r,\"notDeepEqual\",h.notDeepEqual)},h.notDeepStrictEqual=function t(e,r,n){x(e,r,!0)&&v(e,r,n,\"notDeepStrictEqual\",t)},h.strictEqual=function(t,e,r){t!==e&&v(t,e,r,\"===\",h.strictEqual)},h.notStrictEqual=function(t,e,r){t===e&&v(t,e,r,\"!==\",h.notStrictEqual)},h.throws=function(t,e,r){w(!0,t,e,r)},h.doesNotThrow=function(t,e,r){w(!1,t,e,r)},h.ifError=function(t){if(t)throw t},h.strict=n((function t(e,r){e||v(e,!0,r,\"==\",t)}),h,{equal:h.strictEqual,deepEqual:h.deepStrictEqual,notEqual:h.notStrictEqual,notDeepEqual:h.notDeepStrictEqual}),h.strict.strict=h.strict;var T=Object.keys||function(t){var e=[];for(var r in t)s.call(t,r)&&e.push(r);return e}}).call(this)}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"object-assign\":499,\"util/\":76}],74:[function(t,e,r){\"function\"==typeof Object.create?e.exports=function(t,e){t.super_=e,t.prototype=Object.create(e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}})}:e.exports=function(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}},{}],75:[function(t,e,r){e.exports=function(t){return t&&\"object\"==typeof t&&\"function\"==typeof t.copy&&\"function\"==typeof t.fill&&\"function\"==typeof t.readUInt8}},{}],76:[function(t,e,r){(function(e,n){(function(){var i=/%[sdj%]/g;r.format=function(t){if(!v(t)){for(var e=[],r=0;r<arguments.length;r++)e.push(s(arguments[r]));return e.join(\" \")}r=1;for(var n=arguments,a=n.length,o=String(t).replace(i,(function(t){if(\"%%\"===t)return\"%\";if(r>=a)return t;switch(t){case\"%s\":return String(n[r++]);case\"%d\":return Number(n[r++]);case\"%j\":try{return JSON.stringify(n[r++])}catch(t){return\"[Circular]\"}default:return t}})),l=n[r];r<a;l=n[++r])g(l)||!b(l)?o+=\" \"+l:o+=\" \"+s(l);return o},r.deprecate=function(t,i){if(y(n.process))return function(){return r.deprecate(t,i).apply(this,arguments)};if(!0===e.noDeprecation)return t;var a=!1;return function(){if(!a){if(e.throwDeprecation)throw new Error(i);e.traceDeprecation?console.trace(i):console.error(i),a=!0}return t.apply(this,arguments)}};var a,o={};function s(t,e){var n={seen:[],stylize:c};return arguments.length>=3&&(n.depth=arguments[2]),arguments.length>=4&&(n.colors=arguments[3]),d(e)?n.showHidden=e:e&&r._extend(n,e),y(n.showHidden)&&(n.showHidden=!1),y(n.depth)&&(n.depth=2),y(n.colors)&&(n.colors=!1),y(n.customInspect)&&(n.customInspect=!0),n.colors&&(n.stylize=l),u(n,t,n.depth)}function l(t,e){var r=s.styles[e];return r?\"\\x1b[\"+s.colors[r][0]+\"m\"+t+\"\\x1b[\"+s.colors[r][1]+\"m\":t}function c(t,e){return t}function u(t,e,n){if(t.customInspect&&e&&T(e.inspect)&&e.inspect!==r.inspect&&(!e.constructor||e.constructor.prototype!==e)){var i=e.inspect(n,t);return v(i)||(i=u(t,i,n)),i}var a=function(t,e){if(y(e))return t.stylize(\"undefined\",\"undefined\");if(v(e)){var r=\"'\"+JSON.stringify(e).replace(/^\"|\"$/g,\"\").replace(/'/g,\"\\\\'\").replace(/\\\\\"/g,'\"')+\"'\";return t.stylize(r,\"string\")}if(m(e))return t.stylize(\"\"+e,\"number\");if(d(e))return t.stylize(\"\"+e,\"boolean\");if(g(e))return t.stylize(\"null\",\"null\")}(t,e);if(a)return a;var o=Object.keys(e),s=function(t){var e={};return t.forEach((function(t,r){e[t]=!0})),e}(o);if(t.showHidden&&(o=Object.getOwnPropertyNames(e)),w(e)&&(o.indexOf(\"message\")>=0||o.indexOf(\"description\")>=0))return f(e);if(0===o.length){if(T(e)){var l=e.name?\": \"+e.name:\"\";return t.stylize(\"[Function\"+l+\"]\",\"special\")}if(x(e))return t.stylize(RegExp.prototype.toString.call(e),\"regexp\");if(_(e))return t.stylize(Date.prototype.toString.call(e),\"date\");if(w(e))return f(e)}var c,b=\"\",k=!1,M=[\"{\",\"}\"];(p(e)&&(k=!0,M=[\"[\",\"]\"]),T(e))&&(b=\" [Function\"+(e.name?\": \"+e.name:\"\")+\"]\");return x(e)&&(b=\" \"+RegExp.prototype.toString.call(e)),_(e)&&(b=\" \"+Date.prototype.toUTCString.call(e)),w(e)&&(b=\" \"+f(e)),0!==o.length||k&&0!=e.length?n<0?x(e)?t.stylize(RegExp.prototype.toString.call(e),\"regexp\"):t.stylize(\"[Object]\",\"special\"):(t.seen.push(e),c=k?function(t,e,r,n,i){for(var a=[],o=0,s=e.length;o<s;++o)E(e,String(o))?a.push(h(t,e,r,n,String(o),!0)):a.push(\"\");return i.forEach((function(i){i.match(/^\\d+$/)||a.push(h(t,e,r,n,i,!0))})),a}(t,e,n,s,o):o.map((function(r){return h(t,e,n,s,r,k)})),t.seen.pop(),function(t,e,r){if(t.reduce((function(t,e){return e.indexOf(\"\\n\")>=0&&0,t+e.replace(/\\u001b\\[\\d\\d?m/g,\"\").length+1}),0)>60)return r[0]+(\"\"===e?\"\":e+\"\\n \")+\" \"+t.join(\",\\n  \")+\" \"+r[1];return r[0]+e+\" \"+t.join(\", \")+\" \"+r[1]}(c,b,M)):M[0]+b+M[1]}function f(t){return\"[\"+Error.prototype.toString.call(t)+\"]\"}function h(t,e,r,n,i,a){var o,s,l;if((l=Object.getOwnPropertyDescriptor(e,i)||{value:e[i]}).get?s=l.set?t.stylize(\"[Getter/Setter]\",\"special\"):t.stylize(\"[Getter]\",\"special\"):l.set&&(s=t.stylize(\"[Setter]\",\"special\")),E(n,i)||(o=\"[\"+i+\"]\"),s||(t.seen.indexOf(l.value)<0?(s=g(r)?u(t,l.value,null):u(t,l.value,r-1)).indexOf(\"\\n\")>-1&&(s=a?s.split(\"\\n\").map((function(t){return\"  \"+t})).join(\"\\n\").substr(2):\"\\n\"+s.split(\"\\n\").map((function(t){return\"   \"+t})).join(\"\\n\")):s=t.stylize(\"[Circular]\",\"special\")),y(o)){if(a&&i.match(/^\\d+$/))return s;(o=JSON.stringify(\"\"+i)).match(/^\"([a-zA-Z_][a-zA-Z_0-9]*)\"$/)?(o=o.substr(1,o.length-2),o=t.stylize(o,\"name\")):(o=o.replace(/'/g,\"\\\\'\").replace(/\\\\\"/g,'\"').replace(/(^\"|\"$)/g,\"'\"),o=t.stylize(o,\"string\"))}return o+\": \"+s}function p(t){return Array.isArray(t)}function d(t){return\"boolean\"==typeof t}function g(t){return null===t}function m(t){return\"number\"==typeof t}function v(t){return\"string\"==typeof t}function y(t){return void 0===t}function x(t){return b(t)&&\"[object RegExp]\"===k(t)}function b(t){return\"object\"==typeof t&&null!==t}function _(t){return b(t)&&\"[object Date]\"===k(t)}function w(t){return b(t)&&(\"[object Error]\"===k(t)||t instanceof Error)}function T(t){return\"function\"==typeof t}function k(t){return Object.prototype.toString.call(t)}function M(t){return t<10?\"0\"+t.toString(10):t.toString(10)}r.debuglog=function(t){if(y(a)&&(a=e.env.NODE_DEBUG||\"\"),t=t.toUpperCase(),!o[t])if(new RegExp(\"\\\\b\"+t+\"\\\\b\",\"i\").test(a)){var n=e.pid;o[t]=function(){var e=r.format.apply(r,arguments);console.error(\"%s %d: %s\",t,n,e)}}else o[t]=function(){};return o[t]},r.inspect=s,s.colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},s.styles={special:\"cyan\",number:\"yellow\",boolean:\"yellow\",undefined:\"grey\",null:\"bold\",string:\"green\",date:\"magenta\",regexp:\"red\"},r.isArray=p,r.isBoolean=d,r.isNull=g,r.isNullOrUndefined=function(t){return null==t},r.isNumber=m,r.isString=v,r.isSymbol=function(t){return\"symbol\"==typeof t},r.isUndefined=y,r.isRegExp=x,r.isObject=b,r.isDate=_,r.isError=w,r.isFunction=T,r.isPrimitive=function(t){return null===t||\"boolean\"==typeof t||\"number\"==typeof t||\"string\"==typeof t||\"symbol\"==typeof t||\"undefined\"==typeof t},r.isBuffer=t(\"./support/isBuffer\");var A=[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"];function S(){var t=new Date,e=[M(t.getHours()),M(t.getMinutes()),M(t.getSeconds())].join(\":\");return[t.getDate(),A[t.getMonth()],e].join(\" \")}function E(t,e){return Object.prototype.hasOwnProperty.call(t,e)}r.log=function(){console.log(\"%s - %s\",S(),r.format.apply(r,arguments))},r.inherits=t(\"inherits\"),r._extend=function(t,e){if(!e||!b(e))return t;for(var r=Object.keys(e),n=r.length;n--;)t[r[n]]=e[r[n]];return t}}).call(this)}).call(this,t(\"_process\"),\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"./support/isBuffer\":75,_process:526,inherits:74}],77:[function(t,e,r){e.exports=function(t){return atob(t)}},{}],78:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=e.length,a=new Array(r+1),o=0;o<r;++o){for(var s=new Array(r+1),l=0;l<=r;++l)s[l]=t[l][o];a[o]=s}a[r]=new Array(r+1);for(o=0;o<=r;++o)a[r][o]=1;var c=new Array(r+1);for(o=0;o<r;++o)c[o]=e[o];c[r]=1;var u=n(a,c),f=i(u[r+1]);0===f&&(f=1);var h=new Array(r+1);for(o=0;o<=r;++o)h[o]=i(u[o])/f;return h};var n=t(\"robust-linear-solve\");function i(t){for(var e=0,r=0;r<t.length;++r)e+=t[r];return e}},{\"robust-linear-solve\":547}],79:[function(t,e,r){\"use strict\";r.byteLength=function(t){var e=c(t),r=e[0],n=e[1];return 3*(r+n)/4-n},r.toByteArray=function(t){var e,r,n=c(t),o=n[0],s=n[1],l=new a(function(t,e,r){return 3*(e+r)/4-r}(0,o,s)),u=0,f=s>0?o-4:o;for(r=0;r<f;r+=4)e=i[t.charCodeAt(r)]<<18|i[t.charCodeAt(r+1)]<<12|i[t.charCodeAt(r+2)]<<6|i[t.charCodeAt(r+3)],l[u++]=e>>16&255,l[u++]=e>>8&255,l[u++]=255&e;2===s&&(e=i[t.charCodeAt(r)]<<2|i[t.charCodeAt(r+1)]>>4,l[u++]=255&e);1===s&&(e=i[t.charCodeAt(r)]<<10|i[t.charCodeAt(r+1)]<<4|i[t.charCodeAt(r+2)]>>2,l[u++]=e>>8&255,l[u++]=255&e);return l},r.fromByteArray=function(t){for(var e,r=t.length,i=r%3,a=[],o=0,s=r-i;o<s;o+=16383)a.push(u(t,o,o+16383>s?s:o+16383));1===i?(e=t[r-1],a.push(n[e>>2]+n[e<<4&63]+\"==\")):2===i&&(e=(t[r-2]<<8)+t[r-1],a.push(n[e>>10]+n[e>>4&63]+n[e<<2&63]+\"=\"));return a.join(\"\")};for(var n=[],i=[],a=\"undefined\"!=typeof Uint8Array?Uint8Array:Array,o=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\",s=0,l=o.length;s<l;++s)n[s]=o[s],i[o.charCodeAt(s)]=s;function c(t){var e=t.length;if(e%4>0)throw new Error(\"Invalid string. Length must be a multiple of 4\");var r=t.indexOf(\"=\");return-1===r&&(r=e),[r,r===e?0:4-r%4]}function u(t,e,r){for(var i,a,o=[],s=e;s<r;s+=3)i=(t[s]<<16&16711680)+(t[s+1]<<8&65280)+(255&t[s+2]),o.push(n[(a=i)>>18&63]+n[a>>12&63]+n[a>>6&63]+n[63&a]);return o.join(\"\")}i[\"-\".charCodeAt(0)]=62,i[\"_\".charCodeAt(0)]=63},{}],80:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[1]).add(e[0].mul(t[1])),t[1].mul(e[1]))}},{\"./lib/rationalize\":90}],81:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t[0].mul(e[1]).cmp(e[0].mul(t[1]))}},{}],82:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[1]),t[1].mul(e[0]))}},{\"./lib/rationalize\":90}],83:[function(t,e,r){\"use strict\";var n=t(\"./is-rat\"),i=t(\"./lib/is-bn\"),a=t(\"./lib/num-to-bn\"),o=t(\"./lib/str-to-bn\"),s=t(\"./lib/rationalize\"),l=t(\"./div\");e.exports=function t(e,r){if(n(e))return r?l(e,t(r)):[e[0].clone(),e[1].clone()];var c,u,f=0;if(i(e))c=e.clone();else if(\"string\"==typeof e)c=o(e);else{if(0===e)return[a(0),a(1)];if(e===Math.floor(e))c=a(e);else{for(;e!==Math.floor(e);)e*=Math.pow(2,256),f-=256;c=a(e)}}if(n(r))c.mul(r[1]),u=r[0].clone();else if(i(r))u=r.clone();else if(\"string\"==typeof r)u=o(r);else if(r)if(r===Math.floor(r))u=a(r);else{for(;r!==Math.floor(r);)r*=Math.pow(2,256),f+=256;u=a(r)}else u=a(1);f>0?c=c.ushln(f):f<0&&(u=u.ushln(-f));return s(c,u)}},{\"./div\":82,\"./is-rat\":84,\"./lib/is-bn\":88,\"./lib/num-to-bn\":89,\"./lib/rationalize\":90,\"./lib/str-to-bn\":91}],84:[function(t,e,r){\"use strict\";var n=t(\"./lib/is-bn\");e.exports=function(t){return Array.isArray(t)&&2===t.length&&n(t[0])&&n(t[1])}},{\"./lib/is-bn\":88}],85:[function(t,e,r){\"use strict\";var n=t(\"bn.js\");e.exports=function(t){return t.cmp(new n(0))}},{\"bn.js\":99}],86:[function(t,e,r){\"use strict\";var n=t(\"./bn-sign\");e.exports=function(t){var e=t.length,r=t.words,i=0;if(1===e)i=r[0];else if(2===e)i=r[0]+67108864*r[1];else for(var a=0;a<e;a++){var o=r[a];i+=o*Math.pow(67108864,a)}return n(t)*i}},{\"./bn-sign\":85}],87:[function(t,e,r){\"use strict\";var n=t(\"double-bits\"),i=t(\"bit-twiddle\").countTrailingZeros;e.exports=function(t){var e=i(n.lo(t));if(e<32)return e;var r=i(n.hi(t));if(r>20)return 52;return r+32}},{\"bit-twiddle\":97,\"double-bits\":173}],88:[function(t,e,r){\"use strict\";t(\"bn.js\");e.exports=function(t){return t&&\"object\"==typeof t&&Boolean(t.words)}},{\"bn.js\":99}],89:[function(t,e,r){\"use strict\";var n=t(\"bn.js\"),i=t(\"double-bits\");e.exports=function(t){var e=i.exponent(t);return e<52?new n(t):new n(t*Math.pow(2,52-e)).ushln(e-52)}},{\"bn.js\":99,\"double-bits\":173}],90:[function(t,e,r){\"use strict\";var n=t(\"./num-to-bn\"),i=t(\"./bn-sign\");e.exports=function(t,e){var r=i(t),a=i(e);if(0===r)return[n(0),n(1)];if(0===a)return[n(0),n(0)];a<0&&(t=t.neg(),e=e.neg());var o=t.gcd(e);if(o.cmpn(1))return[t.div(o),e.div(o)];return[t,e]}},{\"./bn-sign\":85,\"./num-to-bn\":89}],91:[function(t,e,r){\"use strict\";var n=t(\"bn.js\");e.exports=function(t){return new n(t)}},{\"bn.js\":99}],92:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[0]),t[1].mul(e[1]))}},{\"./lib/rationalize\":90}],93:[function(t,e,r){\"use strict\";var n=t(\"./lib/bn-sign\");e.exports=function(t){return n(t[0])*n(t[1])}},{\"./lib/bn-sign\":85}],94:[function(t,e,r){\"use strict\";var n=t(\"./lib/rationalize\");e.exports=function(t,e){return n(t[0].mul(e[1]).sub(t[1].mul(e[0])),t[1].mul(e[1]))}},{\"./lib/rationalize\":90}],95:[function(t,e,r){\"use strict\";var n=t(\"./lib/bn-to-num\"),i=t(\"./lib/ctz\");e.exports=function(t){var e=t[0],r=t[1];if(0===e.cmpn(0))return 0;var a=e.abs().divmod(r.abs()),o=a.div,s=n(o),l=a.mod,c=e.negative!==r.negative?-1:1;if(0===l.cmpn(0))return c*s;if(s){var u=i(s)+4,f=n(l.ushln(u).divRound(r));return c*(s+f*Math.pow(2,-u))}var h=r.bitLength()-l.bitLength()+53;f=n(l.ushln(h).divRound(r));return h<1023?c*f*Math.pow(2,-h):(f*=Math.pow(2,-1023),c*f*Math.pow(2,1023-h))}},{\"./lib/bn-to-num\":86,\"./lib/ctz\":87}],96:[function(t,e,r){\"use strict\";function n(t,e,r,n,i){var a=[\"function \",t,\"(a,l,h,\",n.join(\",\"),\"){\",i?\"\":\"var i=\",r?\"l-1\":\"h+1\",\";while(l<=h){var m=(l+h)>>>1,x=a[m]\"];return i?e.indexOf(\"c\")<0?a.push(\";if(x===y){return m}else if(x<=y){\"):a.push(\";var p=c(x,y);if(p===0){return m}else if(p<=0){\"):a.push(\";if(\",e,\"){i=m;\"),r?a.push(\"l=m+1}else{h=m-1}\"):a.push(\"h=m-1}else{l=m+1}\"),a.push(\"}\"),i?a.push(\"return -1};\"):a.push(\"return i};\"),a.join(\"\")}function i(t,e,r,i){return new Function([n(\"A\",\"x\"+t+\"y\",e,[\"y\"],i),n(\"P\",\"c(x,y)\"+t+\"0\",e,[\"y\",\"c\"],i),\"function dispatchBsearch\",r,\"(a,y,c,l,h){if(typeof(c)==='function'){return P(a,(l===void 0)?0:l|0,(h===void 0)?a.length-1:h|0,y,c)}else{return A(a,(c===void 0)?0:c|0,(l===void 0)?a.length-1:l|0,y)}}return dispatchBsearch\",r].join(\"\"))()}e.exports={ge:i(\">=\",!1,\"GE\"),gt:i(\">\",!1,\"GT\"),lt:i(\"<\",!0,\"LT\"),le:i(\"<=\",!0,\"LE\"),eq:i(\"-\",!0,\"EQ\",!0)}},{}],97:[function(t,e,r){\"use strict\";function n(t){var e=32;return(t&=-t)&&e--,65535&t&&(e-=16),16711935&t&&(e-=8),252645135&t&&(e-=4),858993459&t&&(e-=2),1431655765&t&&(e-=1),e}r.INT_BITS=32,r.INT_MAX=2147483647,r.INT_MIN=-1<<31,r.sign=function(t){return(t>0)-(t<0)},r.abs=function(t){var e=t>>31;return(t^e)-e},r.min=function(t,e){return e^(t^e)&-(t<e)},r.max=function(t,e){return t^(t^e)&-(t<e)},r.isPow2=function(t){return!(t&t-1||!t)},r.log2=function(t){var e,r;return e=(t>65535)<<4,e|=r=((t>>>=e)>255)<<3,e|=r=((t>>>=r)>15)<<2,(e|=r=((t>>>=r)>3)<<1)|(t>>>=r)>>1},r.log10=function(t){return t>=1e9?9:t>=1e8?8:t>=1e7?7:t>=1e6?6:t>=1e5?5:t>=1e4?4:t>=1e3?3:t>=100?2:t>=10?1:0},r.popCount=function(t){return 16843009*((t=(858993459&(t-=t>>>1&1431655765))+(t>>>2&858993459))+(t>>>4)&252645135)>>>24},r.countTrailingZeros=n,r.nextPow2=function(t){return t+=0===t,--t,t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)+1},r.prevPow2=function(t){return t|=t>>>1,t|=t>>>2,t|=t>>>4,t|=t>>>8,(t|=t>>>16)-(t>>>1)},r.parity=function(t){return t^=t>>>16,t^=t>>>8,t^=t>>>4,27030>>>(t&=15)&1};var i=new Array(256);!function(t){for(var e=0;e<256;++e){var r=e,n=e,i=7;for(r>>>=1;r;r>>>=1)n<<=1,n|=1&r,--i;t[e]=n<<i&255}}(i),r.reverse=function(t){return i[255&t]<<24|i[t>>>8&255]<<16|i[t>>>16&255]<<8|i[t>>>24&255]},r.interleave2=function(t,e){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t&=65535)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e&=65535)|e<<8))|e<<4))|e<<2))|e<<1))<<1},r.deinterleave2=function(t,e){return(t=65535&((t=16711935&((t=252645135&((t=858993459&((t=t>>>e&1431655765)|t>>>1))|t>>>2))|t>>>4))|t>>>16))<<16>>16},r.interleave3=function(t,e,r){return t=1227133513&((t=3272356035&((t=251719695&((t=4278190335&((t&=1023)|t<<16))|t<<8))|t<<4))|t<<2),(t|=(e=1227133513&((e=3272356035&((e=251719695&((e=4278190335&((e&=1023)|e<<16))|e<<8))|e<<4))|e<<2))<<1)|(r=1227133513&((r=3272356035&((r=251719695&((r=4278190335&((r&=1023)|r<<16))|r<<8))|r<<4))|r<<2))<<2},r.deinterleave3=function(t,e){return(t=1023&((t=4278190335&((t=251719695&((t=3272356035&((t=t>>>e&1227133513)|t>>>2))|t>>>4))|t>>>8))|t>>>16))<<22>>22},r.nextCombination=function(t){var e=t|t-1;return e+1|(~e&-~e)-1>>>n(t)+1}},{}],98:[function(t,e,r){\"use strict\";var n=t(\"clamp\");e.exports=function(t,e){e||(e={});var r,o,s,l,c,u,f,h,p,d,g,m=null==e.cutoff?.25:e.cutoff,v=null==e.radius?8:e.radius,y=e.channel||0;if(ArrayBuffer.isView(t)||Array.isArray(t)){if(!e.width||!e.height)throw Error(\"For raw data width and height should be provided by options\");r=e.width,o=e.height,l=t,u=e.stride?e.stride:Math.floor(t.length/r/o)}else window.HTMLCanvasElement&&t instanceof window.HTMLCanvasElement?(f=(h=t).getContext(\"2d\"),r=h.width,o=h.height,p=f.getImageData(0,0,r,o),l=p.data,u=4):window.CanvasRenderingContext2D&&t instanceof window.CanvasRenderingContext2D?(h=t.canvas,f=t,r=h.width,o=h.height,p=f.getImageData(0,0,r,o),l=p.data,u=4):window.ImageData&&t instanceof window.ImageData&&(p=t,r=t.width,o=t.height,l=p.data,u=4);if(s=Math.max(r,o),window.Uint8ClampedArray&&l instanceof window.Uint8ClampedArray||window.Uint8Array&&l instanceof window.Uint8Array)for(c=l,l=Array(r*o),d=0,g=c.length;d<g;d++)l[d]=c[d*u+y]/255;else if(1!==u)throw Error(\"Raw data can have only 1 value per pixel\");var x=Array(r*o),b=Array(r*o),_=Array(s),w=Array(s),T=Array(s+1),k=Array(s);for(d=0,g=r*o;d<g;d++){var M=l[d];x[d]=1===M?0:0===M?i:Math.pow(Math.max(0,.5-M),2),b[d]=1===M?i:0===M?0:Math.pow(Math.max(0,M-.5),2)}a(x,r,o,_,w,k,T),a(b,r,o,_,w,k,T);var A=window.Float32Array?new Float32Array(r*o):new Array(r*o);for(d=0,g=r*o;d<g;d++)A[d]=n(1-((x[d]-b[d])/v+m),0,1);return A};var i=1e20;function a(t,e,r,n,i,a,s){for(var l=0;l<e;l++){for(var c=0;c<r;c++)n[c]=t[c*e+l];for(o(n,i,a,s,r),c=0;c<r;c++)t[c*e+l]=i[c]}for(c=0;c<r;c++){for(l=0;l<e;l++)n[l]=t[c*e+l];for(o(n,i,a,s,e),l=0;l<e;l++)t[c*e+l]=Math.sqrt(i[l])}}function o(t,e,r,n,a){r[0]=0,n[0]=-i,n[1]=+i;for(var o=1,s=0;o<a;o++){for(var l=(t[o]+o*o-(t[r[s]]+r[s]*r[s]))/(2*o-2*r[s]);l<=n[s];)s--,l=(t[o]+o*o-(t[r[s]]+r[s]*r[s]))/(2*o-2*r[s]);r[++s]=o,n[s]=l,n[s+1]=+i}for(o=0,s=0;o<a;o++){for(;n[s+1]<o;)s++;e[o]=(o-r[s])*(o-r[s])+t[r[s]]}}},{clamp:120}],99:[function(t,e,r){!function(e,r){\"use strict\";function n(t,e){if(!t)throw new Error(e||\"Assertion failed\")}function i(t,e){t.super_=e;var r=function(){};r.prototype=e.prototype,t.prototype=new r,t.prototype.constructor=t}function a(t,e,r){if(a.isBN(t))return t;this.negative=0,this.words=null,this.length=0,this.red=null,null!==t&&(\"le\"!==e&&\"be\"!==e||(r=e,e=10),this._init(t||0,e||10,r||\"be\"))}var o;\"object\"==typeof e?e.exports=a:r.BN=a,a.BN=a,a.wordSize=26;try{o=t(\"buffer\").Buffer}catch(t){}function s(t,e,r){for(var n=0,i=Math.min(t.length,r),a=e;a<i;a++){var o=t.charCodeAt(a)-48;n<<=4,n|=o>=49&&o<=54?o-49+10:o>=17&&o<=22?o-17+10:15&o}return n}function l(t,e,r,n){for(var i=0,a=Math.min(t.length,r),o=e;o<a;o++){var s=t.charCodeAt(o)-48;i*=n,i+=s>=49?s-49+10:s>=17?s-17+10:s}return i}a.isBN=function(t){return t instanceof a||null!==t&&\"object\"==typeof t&&t.constructor.wordSize===a.wordSize&&Array.isArray(t.words)},a.max=function(t,e){return t.cmp(e)>0?t:e},a.min=function(t,e){return t.cmp(e)<0?t:e},a.prototype._init=function(t,e,r){if(\"number\"==typeof t)return this._initNumber(t,e,r);if(\"object\"==typeof t)return this._initArray(t,e,r);\"hex\"===e&&(e=16),n(e===(0|e)&&e>=2&&e<=36);var i=0;\"-\"===(t=t.toString().replace(/\\s+/g,\"\"))[0]&&i++,16===e?this._parseHex(t,i):this._parseBase(t,e,i),\"-\"===t[0]&&(this.negative=1),this.strip(),\"le\"===r&&this._initArray(this.toArray(),e,r)},a.prototype._initNumber=function(t,e,r){t<0&&(this.negative=1,t=-t),t<67108864?(this.words=[67108863&t],this.length=1):t<4503599627370496?(this.words=[67108863&t,t/67108864&67108863],this.length=2):(n(t<9007199254740992),this.words=[67108863&t,t/67108864&67108863,1],this.length=3),\"le\"===r&&this._initArray(this.toArray(),e,r)},a.prototype._initArray=function(t,e,r){if(n(\"number\"==typeof t.length),t.length<=0)return this.words=[0],this.length=1,this;this.length=Math.ceil(t.length/3),this.words=new Array(this.length);for(var i=0;i<this.length;i++)this.words[i]=0;var a,o,s=0;if(\"be\"===r)for(i=t.length-1,a=0;i>=0;i-=3)o=t[i]|t[i-1]<<8|t[i-2]<<16,this.words[a]|=o<<s&67108863,this.words[a+1]=o>>>26-s&67108863,(s+=24)>=26&&(s-=26,a++);else if(\"le\"===r)for(i=0,a=0;i<t.length;i+=3)o=t[i]|t[i+1]<<8|t[i+2]<<16,this.words[a]|=o<<s&67108863,this.words[a+1]=o>>>26-s&67108863,(s+=24)>=26&&(s-=26,a++);return this.strip()},a.prototype._parseHex=function(t,e){this.length=Math.ceil((t.length-e)/6),this.words=new Array(this.length);for(var r=0;r<this.length;r++)this.words[r]=0;var n,i,a=0;for(r=t.length-6,n=0;r>=e;r-=6)i=s(t,r,r+6),this.words[n]|=i<<a&67108863,this.words[n+1]|=i>>>26-a&4194303,(a+=24)>=26&&(a-=26,n++);r+6!==e&&(i=s(t,e,r+6),this.words[n]|=i<<a&67108863,this.words[n+1]|=i>>>26-a&4194303),this.strip()},a.prototype._parseBase=function(t,e,r){this.words=[0],this.length=1;for(var n=0,i=1;i<=67108863;i*=e)n++;n--,i=i/e|0;for(var a=t.length-r,o=a%n,s=Math.min(a,a-o)+r,c=0,u=r;u<s;u+=n)c=l(t,u,u+n,e),this.imuln(i),this.words[0]+c<67108864?this.words[0]+=c:this._iaddn(c);if(0!==o){var f=1;for(c=l(t,u,t.length,e),u=0;u<o;u++)f*=e;this.imuln(f),this.words[0]+c<67108864?this.words[0]+=c:this._iaddn(c)}},a.prototype.copy=function(t){t.words=new Array(this.length);for(var e=0;e<this.length;e++)t.words[e]=this.words[e];t.length=this.length,t.negative=this.negative,t.red=this.red},a.prototype.clone=function(){var t=new a(null);return this.copy(t),t},a.prototype._expand=function(t){for(;this.length<t;)this.words[this.length++]=0;return this},a.prototype.strip=function(){for(;this.length>1&&0===this.words[this.length-1];)this.length--;return this._normSign()},a.prototype._normSign=function(){return 1===this.length&&0===this.words[0]&&(this.negative=0),this},a.prototype.inspect=function(){return(this.red?\"<BN-R: \":\"<BN: \")+this.toString(16)+\">\"};var c=[\"\",\"0\",\"00\",\"000\",\"0000\",\"00000\",\"000000\",\"0000000\",\"00000000\",\"000000000\",\"0000000000\",\"00000000000\",\"000000000000\",\"0000000000000\",\"00000000000000\",\"000000000000000\",\"0000000000000000\",\"00000000000000000\",\"000000000000000000\",\"0000000000000000000\",\"00000000000000000000\",\"000000000000000000000\",\"0000000000000000000000\",\"00000000000000000000000\",\"000000000000000000000000\",\"0000000000000000000000000\"],u=[0,0,25,16,12,11,10,9,8,8,7,7,7,7,6,6,6,6,6,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5],f=[0,0,33554432,43046721,16777216,48828125,60466176,40353607,16777216,43046721,1e7,19487171,35831808,62748517,7529536,11390625,16777216,24137569,34012224,47045881,64e6,4084101,5153632,6436343,7962624,9765625,11881376,14348907,17210368,20511149,243e5,28629151,33554432,39135393,45435424,52521875,60466176];function h(t,e,r){r.negative=e.negative^t.negative;var n=t.length+e.length|0;r.length=n,n=n-1|0;var i=0|t.words[0],a=0|e.words[0],o=i*a,s=67108863&o,l=o/67108864|0;r.words[0]=s;for(var c=1;c<n;c++){for(var u=l>>>26,f=67108863&l,h=Math.min(c,e.length-1),p=Math.max(0,c-t.length+1);p<=h;p++){var d=c-p|0;u+=(o=(i=0|t.words[d])*(a=0|e.words[p])+f)/67108864|0,f=67108863&o}r.words[c]=0|f,l=0|u}return 0!==l?r.words[c]=0|l:r.length--,r.strip()}a.prototype.toString=function(t,e){var r;if(e=0|e||1,16===(t=t||10)||\"hex\"===t){r=\"\";for(var i=0,a=0,o=0;o<this.length;o++){var s=this.words[o],l=(16777215&(s<<i|a)).toString(16);r=0!==(a=s>>>24-i&16777215)||o!==this.length-1?c[6-l.length]+l+r:l+r,(i+=2)>=26&&(i-=26,o--)}for(0!==a&&(r=a.toString(16)+r);r.length%e!=0;)r=\"0\"+r;return 0!==this.negative&&(r=\"-\"+r),r}if(t===(0|t)&&t>=2&&t<=36){var h=u[t],p=f[t];r=\"\";var d=this.clone();for(d.negative=0;!d.isZero();){var g=d.modn(p).toString(t);r=(d=d.idivn(p)).isZero()?g+r:c[h-g.length]+g+r}for(this.isZero()&&(r=\"0\"+r);r.length%e!=0;)r=\"0\"+r;return 0!==this.negative&&(r=\"-\"+r),r}n(!1,\"Base should be between 2 and 36\")},a.prototype.toNumber=function(){var t=this.words[0];return 2===this.length?t+=67108864*this.words[1]:3===this.length&&1===this.words[2]?t+=4503599627370496+67108864*this.words[1]:this.length>2&&n(!1,\"Number can only safely store up to 53 bits\"),0!==this.negative?-t:t},a.prototype.toJSON=function(){return this.toString(16)},a.prototype.toBuffer=function(t,e){return n(\"undefined\"!=typeof o),this.toArrayLike(o,t,e)},a.prototype.toArray=function(t,e){return this.toArrayLike(Array,t,e)},a.prototype.toArrayLike=function(t,e,r){var i=this.byteLength(),a=r||Math.max(1,i);n(i<=a,\"byte array longer than desired length\"),n(a>0,\"Requested array length <= 0\"),this.strip();var o,s,l=\"le\"===e,c=new t(a),u=this.clone();if(l){for(s=0;!u.isZero();s++)o=u.andln(255),u.iushrn(8),c[s]=o;for(;s<a;s++)c[s]=0}else{for(s=0;s<a-i;s++)c[s]=0;for(s=0;!u.isZero();s++)o=u.andln(255),u.iushrn(8),c[a-s-1]=o}return c},Math.clz32?a.prototype._countBits=function(t){return 32-Math.clz32(t)}:a.prototype._countBits=function(t){var e=t,r=0;return e>=4096&&(r+=13,e>>>=13),e>=64&&(r+=7,e>>>=7),e>=8&&(r+=4,e>>>=4),e>=2&&(r+=2,e>>>=2),r+e},a.prototype._zeroBits=function(t){if(0===t)return 26;var e=t,r=0;return 0==(8191&e)&&(r+=13,e>>>=13),0==(127&e)&&(r+=7,e>>>=7),0==(15&e)&&(r+=4,e>>>=4),0==(3&e)&&(r+=2,e>>>=2),0==(1&e)&&r++,r},a.prototype.bitLength=function(){var t=this.words[this.length-1],e=this._countBits(t);return 26*(this.length-1)+e},a.prototype.zeroBits=function(){if(this.isZero())return 0;for(var t=0,e=0;e<this.length;e++){var r=this._zeroBits(this.words[e]);if(t+=r,26!==r)break}return t},a.prototype.byteLength=function(){return Math.ceil(this.bitLength()/8)},a.prototype.toTwos=function(t){return 0!==this.negative?this.abs().inotn(t).iaddn(1):this.clone()},a.prototype.fromTwos=function(t){return this.testn(t-1)?this.notn(t).iaddn(1).ineg():this.clone()},a.prototype.isNeg=function(){return 0!==this.negative},a.prototype.neg=function(){return this.clone().ineg()},a.prototype.ineg=function(){return this.isZero()||(this.negative^=1),this},a.prototype.iuor=function(t){for(;this.length<t.length;)this.words[this.length++]=0;for(var e=0;e<t.length;e++)this.words[e]=this.words[e]|t.words[e];return this.strip()},a.prototype.ior=function(t){return n(0==(this.negative|t.negative)),this.iuor(t)},a.prototype.or=function(t){return this.length>t.length?this.clone().ior(t):t.clone().ior(this)},a.prototype.uor=function(t){return this.length>t.length?this.clone().iuor(t):t.clone().iuor(this)},a.prototype.iuand=function(t){var e;e=this.length>t.length?t:this;for(var r=0;r<e.length;r++)this.words[r]=this.words[r]&t.words[r];return this.length=e.length,this.strip()},a.prototype.iand=function(t){return n(0==(this.negative|t.negative)),this.iuand(t)},a.prototype.and=function(t){return this.length>t.length?this.clone().iand(t):t.clone().iand(this)},a.prototype.uand=function(t){return this.length>t.length?this.clone().iuand(t):t.clone().iuand(this)},a.prototype.iuxor=function(t){var e,r;this.length>t.length?(e=this,r=t):(e=t,r=this);for(var n=0;n<r.length;n++)this.words[n]=e.words[n]^r.words[n];if(this!==e)for(;n<e.length;n++)this.words[n]=e.words[n];return this.length=e.length,this.strip()},a.prototype.ixor=function(t){return n(0==(this.negative|t.negative)),this.iuxor(t)},a.prototype.xor=function(t){return this.length>t.length?this.clone().ixor(t):t.clone().ixor(this)},a.prototype.uxor=function(t){return this.length>t.length?this.clone().iuxor(t):t.clone().iuxor(this)},a.prototype.inotn=function(t){n(\"number\"==typeof t&&t>=0);var e=0|Math.ceil(t/26),r=t%26;this._expand(e),r>0&&e--;for(var i=0;i<e;i++)this.words[i]=67108863&~this.words[i];return r>0&&(this.words[i]=~this.words[i]&67108863>>26-r),this.strip()},a.prototype.notn=function(t){return this.clone().inotn(t)},a.prototype.setn=function(t,e){n(\"number\"==typeof t&&t>=0);var r=t/26|0,i=t%26;return this._expand(r+1),this.words[r]=e?this.words[r]|1<<i:this.words[r]&~(1<<i),this.strip()},a.prototype.iadd=function(t){var e,r,n;if(0!==this.negative&&0===t.negative)return this.negative=0,e=this.isub(t),this.negative^=1,this._normSign();if(0===this.negative&&0!==t.negative)return t.negative=0,e=this.isub(t),t.negative=1,e._normSign();this.length>t.length?(r=this,n=t):(r=t,n=this);for(var i=0,a=0;a<n.length;a++)e=(0|r.words[a])+(0|n.words[a])+i,this.words[a]=67108863&e,i=e>>>26;for(;0!==i&&a<r.length;a++)e=(0|r.words[a])+i,this.words[a]=67108863&e,i=e>>>26;if(this.length=r.length,0!==i)this.words[this.length]=i,this.length++;else if(r!==this)for(;a<r.length;a++)this.words[a]=r.words[a];return this},a.prototype.add=function(t){var e;return 0!==t.negative&&0===this.negative?(t.negative=0,e=this.sub(t),t.negative^=1,e):0===t.negative&&0!==this.negative?(this.negative=0,e=t.sub(this),this.negative=1,e):this.length>t.length?this.clone().iadd(t):t.clone().iadd(this)},a.prototype.isub=function(t){if(0!==t.negative){t.negative=0;var e=this.iadd(t);return t.negative=1,e._normSign()}if(0!==this.negative)return this.negative=0,this.iadd(t),this.negative=1,this._normSign();var r,n,i=this.cmp(t);if(0===i)return this.negative=0,this.length=1,this.words[0]=0,this;i>0?(r=this,n=t):(r=t,n=this);for(var a=0,o=0;o<n.length;o++)a=(e=(0|r.words[o])-(0|n.words[o])+a)>>26,this.words[o]=67108863&e;for(;0!==a&&o<r.length;o++)a=(e=(0|r.words[o])+a)>>26,this.words[o]=67108863&e;if(0===a&&o<r.length&&r!==this)for(;o<r.length;o++)this.words[o]=r.words[o];return this.length=Math.max(this.length,o),r!==this&&(this.negative=1),this.strip()},a.prototype.sub=function(t){return this.clone().isub(t)};var p=function(t,e,r){var n,i,a,o=t.words,s=e.words,l=r.words,c=0,u=0|o[0],f=8191&u,h=u>>>13,p=0|o[1],d=8191&p,g=p>>>13,m=0|o[2],v=8191&m,y=m>>>13,x=0|o[3],b=8191&x,_=x>>>13,w=0|o[4],T=8191&w,k=w>>>13,M=0|o[5],A=8191&M,S=M>>>13,E=0|o[6],C=8191&E,L=E>>>13,I=0|o[7],P=8191&I,z=I>>>13,O=0|o[8],D=8191&O,R=O>>>13,F=0|o[9],B=8191&F,N=F>>>13,j=0|s[0],U=8191&j,V=j>>>13,q=0|s[1],H=8191&q,G=q>>>13,Y=0|s[2],W=8191&Y,X=Y>>>13,Z=0|s[3],J=8191&Z,K=Z>>>13,Q=0|s[4],$=8191&Q,tt=Q>>>13,et=0|s[5],rt=8191&et,nt=et>>>13,it=0|s[6],at=8191&it,ot=it>>>13,st=0|s[7],lt=8191&st,ct=st>>>13,ut=0|s[8],ft=8191&ut,ht=ut>>>13,pt=0|s[9],dt=8191&pt,gt=pt>>>13;r.negative=t.negative^e.negative,r.length=19;var mt=(c+(n=Math.imul(f,U))|0)+((8191&(i=(i=Math.imul(f,V))+Math.imul(h,U)|0))<<13)|0;c=((a=Math.imul(h,V))+(i>>>13)|0)+(mt>>>26)|0,mt&=67108863,n=Math.imul(d,U),i=(i=Math.imul(d,V))+Math.imul(g,U)|0,a=Math.imul(g,V);var vt=(c+(n=n+Math.imul(f,H)|0)|0)+((8191&(i=(i=i+Math.imul(f,G)|0)+Math.imul(h,H)|0))<<13)|0;c=((a=a+Math.imul(h,G)|0)+(i>>>13)|0)+(vt>>>26)|0,vt&=67108863,n=Math.imul(v,U),i=(i=Math.imul(v,V))+Math.imul(y,U)|0,a=Math.imul(y,V),n=n+Math.imul(d,H)|0,i=(i=i+Math.imul(d,G)|0)+Math.imul(g,H)|0,a=a+Math.imul(g,G)|0;var yt=(c+(n=n+Math.imul(f,W)|0)|0)+((8191&(i=(i=i+Math.imul(f,X)|0)+Math.imul(h,W)|0))<<13)|0;c=((a=a+Math.imul(h,X)|0)+(i>>>13)|0)+(yt>>>26)|0,yt&=67108863,n=Math.imul(b,U),i=(i=Math.imul(b,V))+Math.imul(_,U)|0,a=Math.imul(_,V),n=n+Math.imul(v,H)|0,i=(i=i+Math.imul(v,G)|0)+Math.imul(y,H)|0,a=a+Math.imul(y,G)|0,n=n+Math.imul(d,W)|0,i=(i=i+Math.imul(d,X)|0)+Math.imul(g,W)|0,a=a+Math.imul(g,X)|0;var xt=(c+(n=n+Math.imul(f,J)|0)|0)+((8191&(i=(i=i+Math.imul(f,K)|0)+Math.imul(h,J)|0))<<13)|0;c=((a=a+Math.imul(h,K)|0)+(i>>>13)|0)+(xt>>>26)|0,xt&=67108863,n=Math.imul(T,U),i=(i=Math.imul(T,V))+Math.imul(k,U)|0,a=Math.imul(k,V),n=n+Math.imul(b,H)|0,i=(i=i+Math.imul(b,G)|0)+Math.imul(_,H)|0,a=a+Math.imul(_,G)|0,n=n+Math.imul(v,W)|0,i=(i=i+Math.imul(v,X)|0)+Math.imul(y,W)|0,a=a+Math.imul(y,X)|0,n=n+Math.imul(d,J)|0,i=(i=i+Math.imul(d,K)|0)+Math.imul(g,J)|0,a=a+Math.imul(g,K)|0;var bt=(c+(n=n+Math.imul(f,$)|0)|0)+((8191&(i=(i=i+Math.imul(f,tt)|0)+Math.imul(h,$)|0))<<13)|0;c=((a=a+Math.imul(h,tt)|0)+(i>>>13)|0)+(bt>>>26)|0,bt&=67108863,n=Math.imul(A,U),i=(i=Math.imul(A,V))+Math.imul(S,U)|0,a=Math.imul(S,V),n=n+Math.imul(T,H)|0,i=(i=i+Math.imul(T,G)|0)+Math.imul(k,H)|0,a=a+Math.imul(k,G)|0,n=n+Math.imul(b,W)|0,i=(i=i+Math.imul(b,X)|0)+Math.imul(_,W)|0,a=a+Math.imul(_,X)|0,n=n+Math.imul(v,J)|0,i=(i=i+Math.imul(v,K)|0)+Math.imul(y,J)|0,a=a+Math.imul(y,K)|0,n=n+Math.imul(d,$)|0,i=(i=i+Math.imul(d,tt)|0)+Math.imul(g,$)|0,a=a+Math.imul(g,tt)|0;var _t=(c+(n=n+Math.imul(f,rt)|0)|0)+((8191&(i=(i=i+Math.imul(f,nt)|0)+Math.imul(h,rt)|0))<<13)|0;c=((a=a+Math.imul(h,nt)|0)+(i>>>13)|0)+(_t>>>26)|0,_t&=67108863,n=Math.imul(C,U),i=(i=Math.imul(C,V))+Math.imul(L,U)|0,a=Math.imul(L,V),n=n+Math.imul(A,H)|0,i=(i=i+Math.imul(A,G)|0)+Math.imul(S,H)|0,a=a+Math.imul(S,G)|0,n=n+Math.imul(T,W)|0,i=(i=i+Math.imul(T,X)|0)+Math.imul(k,W)|0,a=a+Math.imul(k,X)|0,n=n+Math.imul(b,J)|0,i=(i=i+Math.imul(b,K)|0)+Math.imul(_,J)|0,a=a+Math.imul(_,K)|0,n=n+Math.imul(v,$)|0,i=(i=i+Math.imul(v,tt)|0)+Math.imul(y,$)|0,a=a+Math.imul(y,tt)|0,n=n+Math.imul(d,rt)|0,i=(i=i+Math.imul(d,nt)|0)+Math.imul(g,rt)|0,a=a+Math.imul(g,nt)|0;var wt=(c+(n=n+Math.imul(f,at)|0)|0)+((8191&(i=(i=i+Math.imul(f,ot)|0)+Math.imul(h,at)|0))<<13)|0;c=((a=a+Math.imul(h,ot)|0)+(i>>>13)|0)+(wt>>>26)|0,wt&=67108863,n=Math.imul(P,U),i=(i=Math.imul(P,V))+Math.imul(z,U)|0,a=Math.imul(z,V),n=n+Math.imul(C,H)|0,i=(i=i+Math.imul(C,G)|0)+Math.imul(L,H)|0,a=a+Math.imul(L,G)|0,n=n+Math.imul(A,W)|0,i=(i=i+Math.imul(A,X)|0)+Math.imul(S,W)|0,a=a+Math.imul(S,X)|0,n=n+Math.imul(T,J)|0,i=(i=i+Math.imul(T,K)|0)+Math.imul(k,J)|0,a=a+Math.imul(k,K)|0,n=n+Math.imul(b,$)|0,i=(i=i+Math.imul(b,tt)|0)+Math.imul(_,$)|0,a=a+Math.imul(_,tt)|0,n=n+Math.imul(v,rt)|0,i=(i=i+Math.imul(v,nt)|0)+Math.imul(y,rt)|0,a=a+Math.imul(y,nt)|0,n=n+Math.imul(d,at)|0,i=(i=i+Math.imul(d,ot)|0)+Math.imul(g,at)|0,a=a+Math.imul(g,ot)|0;var Tt=(c+(n=n+Math.imul(f,lt)|0)|0)+((8191&(i=(i=i+Math.imul(f,ct)|0)+Math.imul(h,lt)|0))<<13)|0;c=((a=a+Math.imul(h,ct)|0)+(i>>>13)|0)+(Tt>>>26)|0,Tt&=67108863,n=Math.imul(D,U),i=(i=Math.imul(D,V))+Math.imul(R,U)|0,a=Math.imul(R,V),n=n+Math.imul(P,H)|0,i=(i=i+Math.imul(P,G)|0)+Math.imul(z,H)|0,a=a+Math.imul(z,G)|0,n=n+Math.imul(C,W)|0,i=(i=i+Math.imul(C,X)|0)+Math.imul(L,W)|0,a=a+Math.imul(L,X)|0,n=n+Math.imul(A,J)|0,i=(i=i+Math.imul(A,K)|0)+Math.imul(S,J)|0,a=a+Math.imul(S,K)|0,n=n+Math.imul(T,$)|0,i=(i=i+Math.imul(T,tt)|0)+Math.imul(k,$)|0,a=a+Math.imul(k,tt)|0,n=n+Math.imul(b,rt)|0,i=(i=i+Math.imul(b,nt)|0)+Math.imul(_,rt)|0,a=a+Math.imul(_,nt)|0,n=n+Math.imul(v,at)|0,i=(i=i+Math.imul(v,ot)|0)+Math.imul(y,at)|0,a=a+Math.imul(y,ot)|0,n=n+Math.imul(d,lt)|0,i=(i=i+Math.imul(d,ct)|0)+Math.imul(g,lt)|0,a=a+Math.imul(g,ct)|0;var kt=(c+(n=n+Math.imul(f,ft)|0)|0)+((8191&(i=(i=i+Math.imul(f,ht)|0)+Math.imul(h,ft)|0))<<13)|0;c=((a=a+Math.imul(h,ht)|0)+(i>>>13)|0)+(kt>>>26)|0,kt&=67108863,n=Math.imul(B,U),i=(i=Math.imul(B,V))+Math.imul(N,U)|0,a=Math.imul(N,V),n=n+Math.imul(D,H)|0,i=(i=i+Math.imul(D,G)|0)+Math.imul(R,H)|0,a=a+Math.imul(R,G)|0,n=n+Math.imul(P,W)|0,i=(i=i+Math.imul(P,X)|0)+Math.imul(z,W)|0,a=a+Math.imul(z,X)|0,n=n+Math.imul(C,J)|0,i=(i=i+Math.imul(C,K)|0)+Math.imul(L,J)|0,a=a+Math.imul(L,K)|0,n=n+Math.imul(A,$)|0,i=(i=i+Math.imul(A,tt)|0)+Math.imul(S,$)|0,a=a+Math.imul(S,tt)|0,n=n+Math.imul(T,rt)|0,i=(i=i+Math.imul(T,nt)|0)+Math.imul(k,rt)|0,a=a+Math.imul(k,nt)|0,n=n+Math.imul(b,at)|0,i=(i=i+Math.imul(b,ot)|0)+Math.imul(_,at)|0,a=a+Math.imul(_,ot)|0,n=n+Math.imul(v,lt)|0,i=(i=i+Math.imul(v,ct)|0)+Math.imul(y,lt)|0,a=a+Math.imul(y,ct)|0,n=n+Math.imul(d,ft)|0,i=(i=i+Math.imul(d,ht)|0)+Math.imul(g,ft)|0,a=a+Math.imul(g,ht)|0;var Mt=(c+(n=n+Math.imul(f,dt)|0)|0)+((8191&(i=(i=i+Math.imul(f,gt)|0)+Math.imul(h,dt)|0))<<13)|0;c=((a=a+Math.imul(h,gt)|0)+(i>>>13)|0)+(Mt>>>26)|0,Mt&=67108863,n=Math.imul(B,H),i=(i=Math.imul(B,G))+Math.imul(N,H)|0,a=Math.imul(N,G),n=n+Math.imul(D,W)|0,i=(i=i+Math.imul(D,X)|0)+Math.imul(R,W)|0,a=a+Math.imul(R,X)|0,n=n+Math.imul(P,J)|0,i=(i=i+Math.imul(P,K)|0)+Math.imul(z,J)|0,a=a+Math.imul(z,K)|0,n=n+Math.imul(C,$)|0,i=(i=i+Math.imul(C,tt)|0)+Math.imul(L,$)|0,a=a+Math.imul(L,tt)|0,n=n+Math.imul(A,rt)|0,i=(i=i+Math.imul(A,nt)|0)+Math.imul(S,rt)|0,a=a+Math.imul(S,nt)|0,n=n+Math.imul(T,at)|0,i=(i=i+Math.imul(T,ot)|0)+Math.imul(k,at)|0,a=a+Math.imul(k,ot)|0,n=n+Math.imul(b,lt)|0,i=(i=i+Math.imul(b,ct)|0)+Math.imul(_,lt)|0,a=a+Math.imul(_,ct)|0,n=n+Math.imul(v,ft)|0,i=(i=i+Math.imul(v,ht)|0)+Math.imul(y,ft)|0,a=a+Math.imul(y,ht)|0;var At=(c+(n=n+Math.imul(d,dt)|0)|0)+((8191&(i=(i=i+Math.imul(d,gt)|0)+Math.imul(g,dt)|0))<<13)|0;c=((a=a+Math.imul(g,gt)|0)+(i>>>13)|0)+(At>>>26)|0,At&=67108863,n=Math.imul(B,W),i=(i=Math.imul(B,X))+Math.imul(N,W)|0,a=Math.imul(N,X),n=n+Math.imul(D,J)|0,i=(i=i+Math.imul(D,K)|0)+Math.imul(R,J)|0,a=a+Math.imul(R,K)|0,n=n+Math.imul(P,$)|0,i=(i=i+Math.imul(P,tt)|0)+Math.imul(z,$)|0,a=a+Math.imul(z,tt)|0,n=n+Math.imul(C,rt)|0,i=(i=i+Math.imul(C,nt)|0)+Math.imul(L,rt)|0,a=a+Math.imul(L,nt)|0,n=n+Math.imul(A,at)|0,i=(i=i+Math.imul(A,ot)|0)+Math.imul(S,at)|0,a=a+Math.imul(S,ot)|0,n=n+Math.imul(T,lt)|0,i=(i=i+Math.imul(T,ct)|0)+Math.imul(k,lt)|0,a=a+Math.imul(k,ct)|0,n=n+Math.imul(b,ft)|0,i=(i=i+Math.imul(b,ht)|0)+Math.imul(_,ft)|0,a=a+Math.imul(_,ht)|0;var St=(c+(n=n+Math.imul(v,dt)|0)|0)+((8191&(i=(i=i+Math.imul(v,gt)|0)+Math.imul(y,dt)|0))<<13)|0;c=((a=a+Math.imul(y,gt)|0)+(i>>>13)|0)+(St>>>26)|0,St&=67108863,n=Math.imul(B,J),i=(i=Math.imul(B,K))+Math.imul(N,J)|0,a=Math.imul(N,K),n=n+Math.imul(D,$)|0,i=(i=i+Math.imul(D,tt)|0)+Math.imul(R,$)|0,a=a+Math.imul(R,tt)|0,n=n+Math.imul(P,rt)|0,i=(i=i+Math.imul(P,nt)|0)+Math.imul(z,rt)|0,a=a+Math.imul(z,nt)|0,n=n+Math.imul(C,at)|0,i=(i=i+Math.imul(C,ot)|0)+Math.imul(L,at)|0,a=a+Math.imul(L,ot)|0,n=n+Math.imul(A,lt)|0,i=(i=i+Math.imul(A,ct)|0)+Math.imul(S,lt)|0,a=a+Math.imul(S,ct)|0,n=n+Math.imul(T,ft)|0,i=(i=i+Math.imul(T,ht)|0)+Math.imul(k,ft)|0,a=a+Math.imul(k,ht)|0;var Et=(c+(n=n+Math.imul(b,dt)|0)|0)+((8191&(i=(i=i+Math.imul(b,gt)|0)+Math.imul(_,dt)|0))<<13)|0;c=((a=a+Math.imul(_,gt)|0)+(i>>>13)|0)+(Et>>>26)|0,Et&=67108863,n=Math.imul(B,$),i=(i=Math.imul(B,tt))+Math.imul(N,$)|0,a=Math.imul(N,tt),n=n+Math.imul(D,rt)|0,i=(i=i+Math.imul(D,nt)|0)+Math.imul(R,rt)|0,a=a+Math.imul(R,nt)|0,n=n+Math.imul(P,at)|0,i=(i=i+Math.imul(P,ot)|0)+Math.imul(z,at)|0,a=a+Math.imul(z,ot)|0,n=n+Math.imul(C,lt)|0,i=(i=i+Math.imul(C,ct)|0)+Math.imul(L,lt)|0,a=a+Math.imul(L,ct)|0,n=n+Math.imul(A,ft)|0,i=(i=i+Math.imul(A,ht)|0)+Math.imul(S,ft)|0,a=a+Math.imul(S,ht)|0;var Ct=(c+(n=n+Math.imul(T,dt)|0)|0)+((8191&(i=(i=i+Math.imul(T,gt)|0)+Math.imul(k,dt)|0))<<13)|0;c=((a=a+Math.imul(k,gt)|0)+(i>>>13)|0)+(Ct>>>26)|0,Ct&=67108863,n=Math.imul(B,rt),i=(i=Math.imul(B,nt))+Math.imul(N,rt)|0,a=Math.imul(N,nt),n=n+Math.imul(D,at)|0,i=(i=i+Math.imul(D,ot)|0)+Math.imul(R,at)|0,a=a+Math.imul(R,ot)|0,n=n+Math.imul(P,lt)|0,i=(i=i+Math.imul(P,ct)|0)+Math.imul(z,lt)|0,a=a+Math.imul(z,ct)|0,n=n+Math.imul(C,ft)|0,i=(i=i+Math.imul(C,ht)|0)+Math.imul(L,ft)|0,a=a+Math.imul(L,ht)|0;var Lt=(c+(n=n+Math.imul(A,dt)|0)|0)+((8191&(i=(i=i+Math.imul(A,gt)|0)+Math.imul(S,dt)|0))<<13)|0;c=((a=a+Math.imul(S,gt)|0)+(i>>>13)|0)+(Lt>>>26)|0,Lt&=67108863,n=Math.imul(B,at),i=(i=Math.imul(B,ot))+Math.imul(N,at)|0,a=Math.imul(N,ot),n=n+Math.imul(D,lt)|0,i=(i=i+Math.imul(D,ct)|0)+Math.imul(R,lt)|0,a=a+Math.imul(R,ct)|0,n=n+Math.imul(P,ft)|0,i=(i=i+Math.imul(P,ht)|0)+Math.imul(z,ft)|0,a=a+Math.imul(z,ht)|0;var It=(c+(n=n+Math.imul(C,dt)|0)|0)+((8191&(i=(i=i+Math.imul(C,gt)|0)+Math.imul(L,dt)|0))<<13)|0;c=((a=a+Math.imul(L,gt)|0)+(i>>>13)|0)+(It>>>26)|0,It&=67108863,n=Math.imul(B,lt),i=(i=Math.imul(B,ct))+Math.imul(N,lt)|0,a=Math.imul(N,ct),n=n+Math.imul(D,ft)|0,i=(i=i+Math.imul(D,ht)|0)+Math.imul(R,ft)|0,a=a+Math.imul(R,ht)|0;var Pt=(c+(n=n+Math.imul(P,dt)|0)|0)+((8191&(i=(i=i+Math.imul(P,gt)|0)+Math.imul(z,dt)|0))<<13)|0;c=((a=a+Math.imul(z,gt)|0)+(i>>>13)|0)+(Pt>>>26)|0,Pt&=67108863,n=Math.imul(B,ft),i=(i=Math.imul(B,ht))+Math.imul(N,ft)|0,a=Math.imul(N,ht);var zt=(c+(n=n+Math.imul(D,dt)|0)|0)+((8191&(i=(i=i+Math.imul(D,gt)|0)+Math.imul(R,dt)|0))<<13)|0;c=((a=a+Math.imul(R,gt)|0)+(i>>>13)|0)+(zt>>>26)|0,zt&=67108863;var Ot=(c+(n=Math.imul(B,dt))|0)+((8191&(i=(i=Math.imul(B,gt))+Math.imul(N,dt)|0))<<13)|0;return c=((a=Math.imul(N,gt))+(i>>>13)|0)+(Ot>>>26)|0,Ot&=67108863,l[0]=mt,l[1]=vt,l[2]=yt,l[3]=xt,l[4]=bt,l[5]=_t,l[6]=wt,l[7]=Tt,l[8]=kt,l[9]=Mt,l[10]=At,l[11]=St,l[12]=Et,l[13]=Ct,l[14]=Lt,l[15]=It,l[16]=Pt,l[17]=zt,l[18]=Ot,0!==c&&(l[19]=c,r.length++),r};function d(t,e,r){return(new g).mulp(t,e,r)}function g(t,e){this.x=t,this.y=e}Math.imul||(p=h),a.prototype.mulTo=function(t,e){var r=this.length+t.length;return 10===this.length&&10===t.length?p(this,t,e):r<63?h(this,t,e):r<1024?function(t,e,r){r.negative=e.negative^t.negative,r.length=t.length+e.length;for(var n=0,i=0,a=0;a<r.length-1;a++){var o=i;i=0;for(var s=67108863&n,l=Math.min(a,e.length-1),c=Math.max(0,a-t.length+1);c<=l;c++){var u=a-c,f=(0|t.words[u])*(0|e.words[c]),h=67108863&f;s=67108863&(h=h+s|0),i+=(o=(o=o+(f/67108864|0)|0)+(h>>>26)|0)>>>26,o&=67108863}r.words[a]=s,n=o,o=i}return 0!==n?r.words[a]=n:r.length--,r.strip()}(this,t,e):d(this,t,e)},g.prototype.makeRBT=function(t){for(var e=new Array(t),r=a.prototype._countBits(t)-1,n=0;n<t;n++)e[n]=this.revBin(n,r,t);return e},g.prototype.revBin=function(t,e,r){if(0===t||t===r-1)return t;for(var n=0,i=0;i<e;i++)n|=(1&t)<<e-i-1,t>>=1;return n},g.prototype.permute=function(t,e,r,n,i,a){for(var o=0;o<a;o++)n[o]=e[t[o]],i[o]=r[t[o]]},g.prototype.transform=function(t,e,r,n,i,a){this.permute(a,t,e,r,n,i);for(var o=1;o<i;o<<=1)for(var s=o<<1,l=Math.cos(2*Math.PI/s),c=Math.sin(2*Math.PI/s),u=0;u<i;u+=s)for(var f=l,h=c,p=0;p<o;p++){var d=r[u+p],g=n[u+p],m=r[u+p+o],v=n[u+p+o],y=f*m-h*v;v=f*v+h*m,m=y,r[u+p]=d+m,n[u+p]=g+v,r[u+p+o]=d-m,n[u+p+o]=g-v,p!==s&&(y=l*f-c*h,h=l*h+c*f,f=y)}},g.prototype.guessLen13b=function(t,e){var r=1|Math.max(e,t),n=1&r,i=0;for(r=r/2|0;r;r>>>=1)i++;return 1<<i+1+n},g.prototype.conjugate=function(t,e,r){if(!(r<=1))for(var n=0;n<r/2;n++){var i=t[n];t[n]=t[r-n-1],t[r-n-1]=i,i=e[n],e[n]=-e[r-n-1],e[r-n-1]=-i}},g.prototype.normalize13b=function(t,e){for(var r=0,n=0;n<e/2;n++){var i=8192*Math.round(t[2*n+1]/e)+Math.round(t[2*n]/e)+r;t[n]=67108863&i,r=i<67108864?0:i/67108864|0}return t},g.prototype.convert13b=function(t,e,r,i){for(var a=0,o=0;o<e;o++)a+=0|t[o],r[2*o]=8191&a,a>>>=13,r[2*o+1]=8191&a,a>>>=13;for(o=2*e;o<i;++o)r[o]=0;n(0===a),n(0==(-8192&a))},g.prototype.stub=function(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=0;return e},g.prototype.mulp=function(t,e,r){var n=2*this.guessLen13b(t.length,e.length),i=this.makeRBT(n),a=this.stub(n),o=new Array(n),s=new Array(n),l=new Array(n),c=new Array(n),u=new Array(n),f=new Array(n),h=r.words;h.length=n,this.convert13b(t.words,t.length,o,n),this.convert13b(e.words,e.length,c,n),this.transform(o,a,s,l,n,i),this.transform(c,a,u,f,n,i);for(var p=0;p<n;p++){var d=s[p]*u[p]-l[p]*f[p];l[p]=s[p]*f[p]+l[p]*u[p],s[p]=d}return this.conjugate(s,l,n),this.transform(s,l,h,a,n,i),this.conjugate(h,a,n),this.normalize13b(h,n),r.negative=t.negative^e.negative,r.length=t.length+e.length,r.strip()},a.prototype.mul=function(t){var e=new a(null);return e.words=new Array(this.length+t.length),this.mulTo(t,e)},a.prototype.mulf=function(t){var e=new a(null);return e.words=new Array(this.length+t.length),d(this,t,e)},a.prototype.imul=function(t){return this.clone().mulTo(t,this)},a.prototype.imuln=function(t){n(\"number\"==typeof t),n(t<67108864);for(var e=0,r=0;r<this.length;r++){var i=(0|this.words[r])*t,a=(67108863&i)+(67108863&e);e>>=26,e+=i/67108864|0,e+=a>>>26,this.words[r]=67108863&a}return 0!==e&&(this.words[r]=e,this.length++),this},a.prototype.muln=function(t){return this.clone().imuln(t)},a.prototype.sqr=function(){return this.mul(this)},a.prototype.isqr=function(){return this.imul(this.clone())},a.prototype.pow=function(t){var e=function(t){for(var e=new Array(t.bitLength()),r=0;r<e.length;r++){var n=r/26|0,i=r%26;e[r]=(t.words[n]&1<<i)>>>i}return e}(t);if(0===e.length)return new a(1);for(var r=this,n=0;n<e.length&&0===e[n];n++,r=r.sqr());if(++n<e.length)for(var i=r.sqr();n<e.length;n++,i=i.sqr())0!==e[n]&&(r=r.mul(i));return r},a.prototype.iushln=function(t){n(\"number\"==typeof t&&t>=0);var e,r=t%26,i=(t-r)/26,a=67108863>>>26-r<<26-r;if(0!==r){var o=0;for(e=0;e<this.length;e++){var s=this.words[e]&a,l=(0|this.words[e])-s<<r;this.words[e]=l|o,o=s>>>26-r}o&&(this.words[e]=o,this.length++)}if(0!==i){for(e=this.length-1;e>=0;e--)this.words[e+i]=this.words[e];for(e=0;e<i;e++)this.words[e]=0;this.length+=i}return this.strip()},a.prototype.ishln=function(t){return n(0===this.negative),this.iushln(t)},a.prototype.iushrn=function(t,e,r){var i;n(\"number\"==typeof t&&t>=0),i=e?(e-e%26)/26:0;var a=t%26,o=Math.min((t-a)/26,this.length),s=67108863^67108863>>>a<<a,l=r;if(i-=o,i=Math.max(0,i),l){for(var c=0;c<o;c++)l.words[c]=this.words[c];l.length=o}if(0===o);else if(this.length>o)for(this.length-=o,c=0;c<this.length;c++)this.words[c]=this.words[c+o];else this.words[0]=0,this.length=1;var u=0;for(c=this.length-1;c>=0&&(0!==u||c>=i);c--){var f=0|this.words[c];this.words[c]=u<<26-a|f>>>a,u=f&s}return l&&0!==u&&(l.words[l.length++]=u),0===this.length&&(this.words[0]=0,this.length=1),this.strip()},a.prototype.ishrn=function(t,e,r){return n(0===this.negative),this.iushrn(t,e,r)},a.prototype.shln=function(t){return this.clone().ishln(t)},a.prototype.ushln=function(t){return this.clone().iushln(t)},a.prototype.shrn=function(t){return this.clone().ishrn(t)},a.prototype.ushrn=function(t){return this.clone().iushrn(t)},a.prototype.testn=function(t){n(\"number\"==typeof t&&t>=0);var e=t%26,r=(t-e)/26,i=1<<e;return!(this.length<=r)&&!!(this.words[r]&i)},a.prototype.imaskn=function(t){n(\"number\"==typeof t&&t>=0);var e=t%26,r=(t-e)/26;if(n(0===this.negative,\"imaskn works only with positive numbers\"),this.length<=r)return this;if(0!==e&&r++,this.length=Math.min(r,this.length),0!==e){var i=67108863^67108863>>>e<<e;this.words[this.length-1]&=i}return this.strip()},a.prototype.maskn=function(t){return this.clone().imaskn(t)},a.prototype.iaddn=function(t){return n(\"number\"==typeof t),n(t<67108864),t<0?this.isubn(-t):0!==this.negative?1===this.length&&(0|this.words[0])<t?(this.words[0]=t-(0|this.words[0]),this.negative=0,this):(this.negative=0,this.isubn(t),this.negative=1,this):this._iaddn(t)},a.prototype._iaddn=function(t){this.words[0]+=t;for(var e=0;e<this.length&&this.words[e]>=67108864;e++)this.words[e]-=67108864,e===this.length-1?this.words[e+1]=1:this.words[e+1]++;return this.length=Math.max(this.length,e+1),this},a.prototype.isubn=function(t){if(n(\"number\"==typeof t),n(t<67108864),t<0)return this.iaddn(-t);if(0!==this.negative)return this.negative=0,this.iaddn(t),this.negative=1,this;if(this.words[0]-=t,1===this.length&&this.words[0]<0)this.words[0]=-this.words[0],this.negative=1;else for(var e=0;e<this.length&&this.words[e]<0;e++)this.words[e]+=67108864,this.words[e+1]-=1;return this.strip()},a.prototype.addn=function(t){return this.clone().iaddn(t)},a.prototype.subn=function(t){return this.clone().isubn(t)},a.prototype.iabs=function(){return this.negative=0,this},a.prototype.abs=function(){return this.clone().iabs()},a.prototype._ishlnsubmul=function(t,e,r){var i,a,o=t.length+r;this._expand(o);var s=0;for(i=0;i<t.length;i++){a=(0|this.words[i+r])+s;var l=(0|t.words[i])*e;s=((a-=67108863&l)>>26)-(l/67108864|0),this.words[i+r]=67108863&a}for(;i<this.length-r;i++)s=(a=(0|this.words[i+r])+s)>>26,this.words[i+r]=67108863&a;if(0===s)return this.strip();for(n(-1===s),s=0,i=0;i<this.length;i++)s=(a=-(0|this.words[i])+s)>>26,this.words[i]=67108863&a;return this.negative=1,this.strip()},a.prototype._wordDiv=function(t,e){var r=(this.length,t.length),n=this.clone(),i=t,o=0|i.words[i.length-1];0!==(r=26-this._countBits(o))&&(i=i.ushln(r),n.iushln(r),o=0|i.words[i.length-1]);var s,l=n.length-i.length;if(\"mod\"!==e){(s=new a(null)).length=l+1,s.words=new Array(s.length);for(var c=0;c<s.length;c++)s.words[c]=0}var u=n.clone()._ishlnsubmul(i,1,l);0===u.negative&&(n=u,s&&(s.words[l]=1));for(var f=l-1;f>=0;f--){var h=67108864*(0|n.words[i.length+f])+(0|n.words[i.length+f-1]);for(h=Math.min(h/o|0,67108863),n._ishlnsubmul(i,h,f);0!==n.negative;)h--,n.negative=0,n._ishlnsubmul(i,1,f),n.isZero()||(n.negative^=1);s&&(s.words[f]=h)}return s&&s.strip(),n.strip(),\"div\"!==e&&0!==r&&n.iushrn(r),{div:s||null,mod:n}},a.prototype.divmod=function(t,e,r){return n(!t.isZero()),this.isZero()?{div:new a(0),mod:new a(0)}:0!==this.negative&&0===t.negative?(s=this.neg().divmod(t,e),\"mod\"!==e&&(i=s.div.neg()),\"div\"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.iadd(t)),{div:i,mod:o}):0===this.negative&&0!==t.negative?(s=this.divmod(t.neg(),e),\"mod\"!==e&&(i=s.div.neg()),{div:i,mod:s.mod}):0!=(this.negative&t.negative)?(s=this.neg().divmod(t.neg(),e),\"div\"!==e&&(o=s.mod.neg(),r&&0!==o.negative&&o.isub(t)),{div:s.div,mod:o}):t.length>this.length||this.cmp(t)<0?{div:new a(0),mod:this}:1===t.length?\"div\"===e?{div:this.divn(t.words[0]),mod:null}:\"mod\"===e?{div:null,mod:new a(this.modn(t.words[0]))}:{div:this.divn(t.words[0]),mod:new a(this.modn(t.words[0]))}:this._wordDiv(t,e);var i,o,s},a.prototype.div=function(t){return this.divmod(t,\"div\",!1).div},a.prototype.mod=function(t){return this.divmod(t,\"mod\",!1).mod},a.prototype.umod=function(t){return this.divmod(t,\"mod\",!0).mod},a.prototype.divRound=function(t){var e=this.divmod(t);if(e.mod.isZero())return e.div;var r=0!==e.div.negative?e.mod.isub(t):e.mod,n=t.ushrn(1),i=t.andln(1),a=r.cmp(n);return a<0||1===i&&0===a?e.div:0!==e.div.negative?e.div.isubn(1):e.div.iaddn(1)},a.prototype.modn=function(t){n(t<=67108863);for(var e=(1<<26)%t,r=0,i=this.length-1;i>=0;i--)r=(e*r+(0|this.words[i]))%t;return r},a.prototype.idivn=function(t){n(t<=67108863);for(var e=0,r=this.length-1;r>=0;r--){var i=(0|this.words[r])+67108864*e;this.words[r]=i/t|0,e=i%t}return this.strip()},a.prototype.divn=function(t){return this.clone().idivn(t)},a.prototype.egcd=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var i=new a(1),o=new a(0),s=new a(0),l=new a(1),c=0;e.isEven()&&r.isEven();)e.iushrn(1),r.iushrn(1),++c;for(var u=r.clone(),f=e.clone();!e.isZero();){for(var h=0,p=1;0==(e.words[0]&p)&&h<26;++h,p<<=1);if(h>0)for(e.iushrn(h);h-- >0;)(i.isOdd()||o.isOdd())&&(i.iadd(u),o.isub(f)),i.iushrn(1),o.iushrn(1);for(var d=0,g=1;0==(r.words[0]&g)&&d<26;++d,g<<=1);if(d>0)for(r.iushrn(d);d-- >0;)(s.isOdd()||l.isOdd())&&(s.iadd(u),l.isub(f)),s.iushrn(1),l.iushrn(1);e.cmp(r)>=0?(e.isub(r),i.isub(s),o.isub(l)):(r.isub(e),s.isub(i),l.isub(o))}return{a:s,b:l,gcd:r.iushln(c)}},a.prototype._invmp=function(t){n(0===t.negative),n(!t.isZero());var e=this,r=t.clone();e=0!==e.negative?e.umod(t):e.clone();for(var i,o=new a(1),s=new a(0),l=r.clone();e.cmpn(1)>0&&r.cmpn(1)>0;){for(var c=0,u=1;0==(e.words[0]&u)&&c<26;++c,u<<=1);if(c>0)for(e.iushrn(c);c-- >0;)o.isOdd()&&o.iadd(l),o.iushrn(1);for(var f=0,h=1;0==(r.words[0]&h)&&f<26;++f,h<<=1);if(f>0)for(r.iushrn(f);f-- >0;)s.isOdd()&&s.iadd(l),s.iushrn(1);e.cmp(r)>=0?(e.isub(r),o.isub(s)):(r.isub(e),s.isub(o))}return(i=0===e.cmpn(1)?o:s).cmpn(0)<0&&i.iadd(t),i},a.prototype.gcd=function(t){if(this.isZero())return t.abs();if(t.isZero())return this.abs();var e=this.clone(),r=t.clone();e.negative=0,r.negative=0;for(var n=0;e.isEven()&&r.isEven();n++)e.iushrn(1),r.iushrn(1);for(;;){for(;e.isEven();)e.iushrn(1);for(;r.isEven();)r.iushrn(1);var i=e.cmp(r);if(i<0){var a=e;e=r,r=a}else if(0===i||0===r.cmpn(1))break;e.isub(r)}return r.iushln(n)},a.prototype.invm=function(t){return this.egcd(t).a.umod(t)},a.prototype.isEven=function(){return 0==(1&this.words[0])},a.prototype.isOdd=function(){return 1==(1&this.words[0])},a.prototype.andln=function(t){return this.words[0]&t},a.prototype.bincn=function(t){n(\"number\"==typeof t);var e=t%26,r=(t-e)/26,i=1<<e;if(this.length<=r)return this._expand(r+1),this.words[r]|=i,this;for(var a=i,o=r;0!==a&&o<this.length;o++){var s=0|this.words[o];a=(s+=a)>>>26,s&=67108863,this.words[o]=s}return 0!==a&&(this.words[o]=a,this.length++),this},a.prototype.isZero=function(){return 1===this.length&&0===this.words[0]},a.prototype.cmpn=function(t){var e,r=t<0;if(0!==this.negative&&!r)return-1;if(0===this.negative&&r)return 1;if(this.strip(),this.length>1)e=1;else{r&&(t=-t),n(t<=67108863,\"Number is too big\");var i=0|this.words[0];e=i===t?0:i<t?-1:1}return 0!==this.negative?0|-e:e},a.prototype.cmp=function(t){if(0!==this.negative&&0===t.negative)return-1;if(0===this.negative&&0!==t.negative)return 1;var e=this.ucmp(t);return 0!==this.negative?0|-e:e},a.prototype.ucmp=function(t){if(this.length>t.length)return 1;if(this.length<t.length)return-1;for(var e=0,r=this.length-1;r>=0;r--){var n=0|this.words[r],i=0|t.words[r];if(n!==i){n<i?e=-1:n>i&&(e=1);break}}return e},a.prototype.gtn=function(t){return 1===this.cmpn(t)},a.prototype.gt=function(t){return 1===this.cmp(t)},a.prototype.gten=function(t){return this.cmpn(t)>=0},a.prototype.gte=function(t){return this.cmp(t)>=0},a.prototype.ltn=function(t){return-1===this.cmpn(t)},a.prototype.lt=function(t){return-1===this.cmp(t)},a.prototype.lten=function(t){return this.cmpn(t)<=0},a.prototype.lte=function(t){return this.cmp(t)<=0},a.prototype.eqn=function(t){return 0===this.cmpn(t)},a.prototype.eq=function(t){return 0===this.cmp(t)},a.red=function(t){return new w(t)},a.prototype.toRed=function(t){return n(!this.red,\"Already a number in reduction context\"),n(0===this.negative,\"red works only with positives\"),t.convertTo(this)._forceRed(t)},a.prototype.fromRed=function(){return n(this.red,\"fromRed works only with numbers in reduction context\"),this.red.convertFrom(this)},a.prototype._forceRed=function(t){return this.red=t,this},a.prototype.forceRed=function(t){return n(!this.red,\"Already a number in reduction context\"),this._forceRed(t)},a.prototype.redAdd=function(t){return n(this.red,\"redAdd works only with red numbers\"),this.red.add(this,t)},a.prototype.redIAdd=function(t){return n(this.red,\"redIAdd works only with red numbers\"),this.red.iadd(this,t)},a.prototype.redSub=function(t){return n(this.red,\"redSub works only with red numbers\"),this.red.sub(this,t)},a.prototype.redISub=function(t){return n(this.red,\"redISub works only with red numbers\"),this.red.isub(this,t)},a.prototype.redShl=function(t){return n(this.red,\"redShl works only with red numbers\"),this.red.shl(this,t)},a.prototype.redMul=function(t){return n(this.red,\"redMul works only with red numbers\"),this.red._verify2(this,t),this.red.mul(this,t)},a.prototype.redIMul=function(t){return n(this.red,\"redMul works only with red numbers\"),this.red._verify2(this,t),this.red.imul(this,t)},a.prototype.redSqr=function(){return n(this.red,\"redSqr works only with red numbers\"),this.red._verify1(this),this.red.sqr(this)},a.prototype.redISqr=function(){return n(this.red,\"redISqr works only with red numbers\"),this.red._verify1(this),this.red.isqr(this)},a.prototype.redSqrt=function(){return n(this.red,\"redSqrt works only with red numbers\"),this.red._verify1(this),this.red.sqrt(this)},a.prototype.redInvm=function(){return n(this.red,\"redInvm works only with red numbers\"),this.red._verify1(this),this.red.invm(this)},a.prototype.redNeg=function(){return n(this.red,\"redNeg works only with red numbers\"),this.red._verify1(this),this.red.neg(this)},a.prototype.redPow=function(t){return n(this.red&&!t.red,\"redPow(normalNum)\"),this.red._verify1(this),this.red.pow(this,t)};var m={k256:null,p224:null,p192:null,p25519:null};function v(t,e){this.name=t,this.p=new a(e,16),this.n=this.p.bitLength(),this.k=new a(1).iushln(this.n).isub(this.p),this.tmp=this._tmp()}function y(){v.call(this,\"k256\",\"ffffffff ffffffff ffffffff ffffffff ffffffff ffffffff fffffffe fffffc2f\")}function x(){v.call(this,\"p224\",\"ffffffff ffffffff ffffffff ffffffff 00000000 00000000 00000001\")}function b(){v.call(this,\"p192\",\"ffffffff ffffffff ffffffff fffffffe ffffffff ffffffff\")}function _(){v.call(this,\"25519\",\"7fffffffffffffff ffffffffffffffff ffffffffffffffff ffffffffffffffed\")}function w(t){if(\"string\"==typeof t){var e=a._prime(t);this.m=e.p,this.prime=e}else n(t.gtn(1),\"modulus must be greater than 1\"),this.m=t,this.prime=null}function T(t){w.call(this,t),this.shift=this.m.bitLength(),this.shift%26!=0&&(this.shift+=26-this.shift%26),this.r=new a(1).iushln(this.shift),this.r2=this.imod(this.r.sqr()),this.rinv=this.r._invmp(this.m),this.minv=this.rinv.mul(this.r).isubn(1).div(this.m),this.minv=this.minv.umod(this.r),this.minv=this.r.sub(this.minv)}v.prototype._tmp=function(){var t=new a(null);return t.words=new Array(Math.ceil(this.n/13)),t},v.prototype.ireduce=function(t){var e,r=t;do{this.split(r,this.tmp),e=(r=(r=this.imulK(r)).iadd(this.tmp)).bitLength()}while(e>this.n);var n=e<this.n?-1:r.ucmp(this.p);return 0===n?(r.words[0]=0,r.length=1):n>0?r.isub(this.p):r.strip(),r},v.prototype.split=function(t,e){t.iushrn(this.n,0,e)},v.prototype.imulK=function(t){return t.imul(this.k)},i(y,v),y.prototype.split=function(t,e){for(var r=Math.min(t.length,9),n=0;n<r;n++)e.words[n]=t.words[n];if(e.length=r,t.length<=9)return t.words[0]=0,void(t.length=1);var i=t.words[9];for(e.words[e.length++]=4194303&i,n=10;n<t.length;n++){var a=0|t.words[n];t.words[n-10]=(4194303&a)<<4|i>>>22,i=a}i>>>=22,t.words[n-10]=i,0===i&&t.length>10?t.length-=10:t.length-=9},y.prototype.imulK=function(t){t.words[t.length]=0,t.words[t.length+1]=0,t.length+=2;for(var e=0,r=0;r<t.length;r++){var n=0|t.words[r];e+=977*n,t.words[r]=67108863&e,e=64*n+(e/67108864|0)}return 0===t.words[t.length-1]&&(t.length--,0===t.words[t.length-1]&&t.length--),t},i(x,v),i(b,v),i(_,v),_.prototype.imulK=function(t){for(var e=0,r=0;r<t.length;r++){var n=19*(0|t.words[r])+e,i=67108863&n;n>>>=26,t.words[r]=i,e=n}return 0!==e&&(t.words[t.length++]=e),t},a._prime=function(t){if(m[t])return m[t];var e;if(\"k256\"===t)e=new y;else if(\"p224\"===t)e=new x;else if(\"p192\"===t)e=new b;else{if(\"p25519\"!==t)throw new Error(\"Unknown prime \"+t);e=new _}return m[t]=e,e},w.prototype._verify1=function(t){n(0===t.negative,\"red works only with positives\"),n(t.red,\"red works only with red numbers\")},w.prototype._verify2=function(t,e){n(0==(t.negative|e.negative),\"red works only with positives\"),n(t.red&&t.red===e.red,\"red works only with red numbers\")},w.prototype.imod=function(t){return this.prime?this.prime.ireduce(t)._forceRed(this):t.umod(this.m)._forceRed(this)},w.prototype.neg=function(t){return t.isZero()?t.clone():this.m.sub(t)._forceRed(this)},w.prototype.add=function(t,e){this._verify2(t,e);var r=t.add(e);return r.cmp(this.m)>=0&&r.isub(this.m),r._forceRed(this)},w.prototype.iadd=function(t,e){this._verify2(t,e);var r=t.iadd(e);return r.cmp(this.m)>=0&&r.isub(this.m),r},w.prototype.sub=function(t,e){this._verify2(t,e);var r=t.sub(e);return r.cmpn(0)<0&&r.iadd(this.m),r._forceRed(this)},w.prototype.isub=function(t,e){this._verify2(t,e);var r=t.isub(e);return r.cmpn(0)<0&&r.iadd(this.m),r},w.prototype.shl=function(t,e){return this._verify1(t),this.imod(t.ushln(e))},w.prototype.imul=function(t,e){return this._verify2(t,e),this.imod(t.imul(e))},w.prototype.mul=function(t,e){return this._verify2(t,e),this.imod(t.mul(e))},w.prototype.isqr=function(t){return this.imul(t,t.clone())},w.prototype.sqr=function(t){return this.mul(t,t)},w.prototype.sqrt=function(t){if(t.isZero())return t.clone();var e=this.m.andln(3);if(n(e%2==1),3===e){var r=this.m.add(new a(1)).iushrn(2);return this.pow(t,r)}for(var i=this.m.subn(1),o=0;!i.isZero()&&0===i.andln(1);)o++,i.iushrn(1);n(!i.isZero());var s=new a(1).toRed(this),l=s.redNeg(),c=this.m.subn(1).iushrn(1),u=this.m.bitLength();for(u=new a(2*u*u).toRed(this);0!==this.pow(u,c).cmp(l);)u.redIAdd(l);for(var f=this.pow(u,i),h=this.pow(t,i.addn(1).iushrn(1)),p=this.pow(t,i),d=o;0!==p.cmp(s);){for(var g=p,m=0;0!==g.cmp(s);m++)g=g.redSqr();n(m<d);var v=this.pow(f,new a(1).iushln(d-m-1));h=h.redMul(v),f=v.redSqr(),p=p.redMul(f),d=m}return h},w.prototype.invm=function(t){var e=t._invmp(this.m);return 0!==e.negative?(e.negative=0,this.imod(e).redNeg()):this.imod(e)},w.prototype.pow=function(t,e){if(e.isZero())return new a(1).toRed(this);if(0===e.cmpn(1))return t.clone();var r=new Array(16);r[0]=new a(1).toRed(this),r[1]=t;for(var n=2;n<r.length;n++)r[n]=this.mul(r[n-1],t);var i=r[0],o=0,s=0,l=e.bitLength()%26;for(0===l&&(l=26),n=e.length-1;n>=0;n--){for(var c=e.words[n],u=l-1;u>=0;u--){var f=c>>u&1;i!==r[0]&&(i=this.sqr(i)),0!==f||0!==o?(o<<=1,o|=f,(4===++s||0===n&&0===u)&&(i=this.mul(i,r[o]),s=0,o=0)):s=0}l=26}return i},w.prototype.convertTo=function(t){var e=t.umod(this.m);return e===t?e.clone():e},w.prototype.convertFrom=function(t){var e=t.clone();return e.red=null,e},a.mont=function(t){return new T(t)},i(T,w),T.prototype.convertTo=function(t){return this.imod(t.ushln(this.shift))},T.prototype.convertFrom=function(t){var e=this.imod(t.mul(this.rinv));return e.red=null,e},T.prototype.imul=function(t,e){if(t.isZero()||e.isZero())return t.words[0]=0,t.length=1,t;var r=t.imul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=r.isub(n).iushrn(this.shift),a=i;return i.cmp(this.m)>=0?a=i.isub(this.m):i.cmpn(0)<0&&(a=i.iadd(this.m)),a._forceRed(this)},T.prototype.mul=function(t,e){if(t.isZero()||e.isZero())return new a(0)._forceRed(this);var r=t.mul(e),n=r.maskn(this.shift).mul(this.minv).imaskn(this.shift).mul(this.m),i=r.isub(n).iushrn(this.shift),o=i;return i.cmp(this.m)>=0?o=i.isub(this.m):i.cmpn(0)<0&&(o=i.iadd(this.m)),o._forceRed(this)},T.prototype.invm=function(t){return this.imod(t._invmp(this.m).mul(this.r2))._forceRed(this)}}(\"undefined\"==typeof e||e,this)},{buffer:108}],100:[function(t,e,r){\"use strict\";e.exports=function(t){var e,r,n,i=t.length,a=0;for(e=0;e<i;++e)a+=t[e].length;var o=new Array(a),s=0;for(e=0;e<i;++e){var l=t[e],c=l.length;for(r=0;r<c;++r){var u=o[s++]=new Array(c-1),f=0;for(n=0;n<c;++n)n!==r&&(u[f++]=l[n]);if(1&r){var h=u[1];u[1]=u[0],u[0]=h}}}return o}},{}],101:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){switch(arguments.length){case 1:return f(t);case 2:return\"function\"==typeof e?c(t,t,e,!0):h(t,e);case 3:return c(t,e,r,!1);default:throw new Error(\"box-intersect: Invalid arguments\")}};var n,i=t(\"typedarray-pool\"),a=t(\"./lib/sweep\"),o=t(\"./lib/intersect\");function s(t,e){for(var r=0;r<t;++r)if(!(e[r]<=e[r+t]))return!0;return!1}function l(t,e,r,n){for(var i=0,a=0,o=0,l=t.length;o<l;++o){var c=t[o];if(!s(e,c)){for(var u=0;u<2*e;++u)r[i++]=c[u];n[a++]=o}}return a}function c(t,e,r,n){var s=t.length,c=e.length;if(!(s<=0||c<=0)){var u=t[0].length>>>1;if(!(u<=0)){var f,h=i.mallocDouble(2*u*s),p=i.mallocInt32(s);if((s=l(t,u,h,p))>0){if(1===u&&n)a.init(s),f=a.sweepComplete(u,r,0,s,h,p,0,s,h,p);else{var d=i.mallocDouble(2*u*c),g=i.mallocInt32(c);(c=l(e,u,d,g))>0&&(a.init(s+c),f=1===u?a.sweepBipartite(u,r,0,s,h,p,0,c,d,g):o(u,r,n,s,h,p,c,d,g),i.free(d),i.free(g))}i.free(h),i.free(p)}return f}}}function u(t,e){n.push([t,e])}function f(t){return n=[],c(t,t,u,!0),n}function h(t,e){return n=[],c(t,e,u,!1),n}},{\"./lib/intersect\":103,\"./lib/sweep\":107,\"typedarray-pool\":595}],102:[function(t,e,r){\"use strict\";var n=[\"d\",\"ax\",\"vv\",\"rs\",\"re\",\"rb\",\"ri\",\"bs\",\"be\",\"bb\",\"bi\"];function i(t){var e=\"bruteForce\"+(t?\"Full\":\"Partial\"),r=[],i=n.slice();t||i.splice(3,0,\"fp\");var a=[\"function \"+e+\"(\"+i.join()+\"){\"];function o(e,i){var o=function(t,e,r){var i=\"bruteForce\"+(t?\"Red\":\"Blue\")+(e?\"Flip\":\"\")+(r?\"Full\":\"\"),a=[\"function \",i,\"(\",n.join(),\"){\",\"var \",\"es\",\"=2*\",\"d\",\";\"],o=\"for(var i=rs,rp=es*rs;i<re;++i,rp+=es){var x0=rb[ax+rp],x1=rb[ax+rp+d],xi=ri[i];\",s=\"for(var j=bs,bp=es*bs;j<be;++j,bp+=es){var y0=bb[ax+bp],\"+(r?\"y1=bb[ax+bp+d],\":\"\")+\"yi=bi[j];\";return t?a.push(o,\"Q\",\":\",s):a.push(s,\"Q\",\":\",o),r?a.push(\"if(y1<x0||x1<y0)continue;\"):e?a.push(\"if(y0<=x0||x1<y0)continue;\"):a.push(\"if(y0<x0||x1<y0)continue;\"),a.push(\"for(var k=ax+1;k<d;++k){var r0=rb[k+rp],r1=rb[k+d+rp],b0=bb[k+bp],b1=bb[k+d+bp];if(r1<b0||b1<r0)continue Q;}var rv=vv(\"),e?a.push(\"yi,xi\"):a.push(\"xi,yi\"),a.push(\");if(rv!==void 0)return rv;}}}\"),{name:i,code:a.join(\"\")}}(e,i,t);r.push(o.code),a.push(\"return \"+o.name+\"(\"+n.join()+\");\")}a.push(\"if(re-rs>be-bs){\"),t?(o(!0,!1),a.push(\"}else{\"),o(!1,!1)):(a.push(\"if(fp){\"),o(!0,!0),a.push(\"}else{\"),o(!0,!1),a.push(\"}}else{if(fp){\"),o(!1,!0),a.push(\"}else{\"),o(!1,!1),a.push(\"}\")),a.push(\"}}return \"+e);var s=r.join(\"\")+a.join(\"\");return new Function(s)()}r.partial=i(!1),r.full=i(!0)},{}],103:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,a,u,w,T,k,M){!function(t,e){var r=8*i.log2(e+1)*(t+1)|0,a=i.nextPow2(6*r);v.length<a&&(n.free(v),v=n.mallocInt32(a));var o=i.nextPow2(2*r);y.length<o&&(n.free(y),y=n.mallocDouble(o))}(t,a+T);var A,S=0,E=2*t;x(S++,0,0,a,0,T,r?16:0,-1/0,1/0),r||x(S++,0,0,T,0,a,1,-1/0,1/0);for(;S>0;){var C=6*(S-=1),L=v[C],I=v[C+1],P=v[C+2],z=v[C+3],O=v[C+4],D=v[C+5],R=2*S,F=y[R],B=y[R+1],N=1&D,j=!!(16&D),U=u,V=w,q=k,H=M;if(N&&(U=k,V=M,q=u,H=w),!(2&D&&(P=p(t,L,I,P,U,V,B),I>=P)||4&D&&(I=d(t,L,I,P,U,V,F))>=P)){var G=P-I,Y=O-z;if(j){if(t*G*(G+Y)<1<<22){if(void 0!==(A=l.scanComplete(t,L,e,I,P,U,V,z,O,q,H)))return A;continue}}else{if(t*Math.min(G,Y)<128){if(void 0!==(A=o(t,L,e,N,I,P,U,V,z,O,q,H)))return A;continue}if(t*G*Y<1<<22){if(void 0!==(A=l.scanBipartite(t,L,e,N,I,P,U,V,z,O,q,H)))return A;continue}}var W=f(t,L,I,P,U,V,F,B);if(I<W)if(t*(W-I)<128){if(void 0!==(A=s(t,L+1,e,I,W,U,V,z,O,q,H)))return A}else if(L===t-2){if(void 0!==(A=N?l.sweepBipartite(t,e,z,O,q,H,I,W,U,V):l.sweepBipartite(t,e,I,W,U,V,z,O,q,H)))return A}else x(S++,L+1,I,W,z,O,N,-1/0,1/0),x(S++,L+1,z,O,I,W,1^N,-1/0,1/0);if(W<P){var X=c(t,L,z,O,q,H),Z=q[E*X+L],J=h(t,L,X,O,q,H,Z);if(J<O&&x(S++,L,W,P,J,O,(4|N)+(j?16:0),Z,B),z<X&&x(S++,L,W,P,z,X,(2|N)+(j?16:0),F,Z),X+1===J){if(void 0!==(A=j?_(t,L,e,W,P,U,V,X,q,H[X]):b(t,L,e,N,W,P,U,V,X,q,H[X])))return A}else if(X<J){var K;if(j){if(K=g(t,L,W,P,U,V,Z),W<K){var Q=h(t,L,W,K,U,V,Z);if(L===t-2){if(W<Q&&void 0!==(A=l.sweepComplete(t,e,W,Q,U,V,X,J,q,H)))return A;if(Q<K&&void 0!==(A=l.sweepBipartite(t,e,Q,K,U,V,X,J,q,H)))return A}else W<Q&&x(S++,L+1,W,Q,X,J,16,-1/0,1/0),Q<K&&(x(S++,L+1,Q,K,X,J,0,-1/0,1/0),x(S++,L+1,X,J,Q,K,1,-1/0,1/0))}}else K=N?m(t,L,W,P,U,V,Z):g(t,L,W,P,U,V,Z),W<K&&(L===t-2?A=N?l.sweepBipartite(t,e,X,J,q,H,W,K,U,V):l.sweepBipartite(t,e,W,K,U,V,X,J,q,H):(x(S++,L+1,W,K,X,J,N,-1/0,1/0),x(S++,L+1,X,J,W,K,1^N,-1/0,1/0)))}}}}};var n=t(\"typedarray-pool\"),i=t(\"bit-twiddle\"),a=t(\"./brute\"),o=a.partial,s=a.full,l=t(\"./sweep\"),c=t(\"./median\"),u=t(\"./partition\"),f=u(\"!(lo>=p0)&&!(p1>=hi)\",[\"p0\",\"p1\"]),h=u(\"lo===p0\",[\"p0\"]),p=u(\"lo<p0\",[\"p0\"]),d=u(\"hi<=p0\",[\"p0\"]),g=u(\"lo<=p0&&p0<=hi\",[\"p0\"]),m=u(\"lo<p0&&p0<=hi\",[\"p0\"]),v=n.mallocInt32(1024),y=n.mallocDouble(1024);function x(t,e,r,n,i,a,o,s,l){var c=6*t;v[c]=e,v[c+1]=r,v[c+2]=n,v[c+3]=i,v[c+4]=a,v[c+5]=o;var u=2*t;y[u]=s,y[u+1]=l}function b(t,e,r,n,i,a,o,s,l,c,u){var f=2*t,h=l*f,p=c[h+e];t:for(var d=i,g=i*f;d<a;++d,g+=f){var m=o[g+e],v=o[g+e+t];if(!(p<m||v<p)&&(!n||p!==m)){for(var y,x=s[d],b=e+1;b<t;++b){m=o[g+b],v=o[g+b+t];var _=c[h+b],w=c[h+b+t];if(v<_||w<m)continue t}if(void 0!==(y=n?r(u,x):r(x,u)))return y}}}function _(t,e,r,n,i,a,o,s,l,c){var u=2*t,f=s*u,h=l[f+e];t:for(var p=n,d=n*u;p<i;++p,d+=u){var g=o[p];if(g!==c){var m=a[d+e],v=a[d+e+t];if(!(h<m||v<h)){for(var y=e+1;y<t;++y){m=a[d+y],v=a[d+y+t];var x=l[f+y],b=l[f+y+t];if(v<x||b<m)continue t}var _=r(g,c);if(void 0!==_)return _}}}}},{\"./brute\":102,\"./median\":104,\"./partition\":105,\"./sweep\":107,\"bit-twiddle\":97,\"typedarray-pool\":595}],104:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,a,o,s){if(a<=r+1)return r;var l=r,c=a,u=a+r>>>1,f=2*t,h=u,p=o[f*u+e];for(;l<c;){if(c-l<8){i(t,e,l,c,o,s),p=o[f*u+e];break}var d=c-l,g=Math.random()*d+l|0,m=o[f*g+e],v=Math.random()*d+l|0,y=o[f*v+e],x=Math.random()*d+l|0,b=o[f*x+e];m<=y?b>=y?(h=v,p=y):m>=b?(h=g,p=m):(h=x,p=b):y>=b?(h=v,p=y):b>=m?(h=g,p=m):(h=x,p=b);for(var _=f*(c-1),w=f*h,T=0;T<f;++T,++_,++w){var k=o[_];o[_]=o[w],o[w]=k}var M=s[c-1];s[c-1]=s[h],s[h]=M,h=n(t,e,l,c-1,o,s,p);for(_=f*(c-1),w=f*h,T=0;T<f;++T,++_,++w){k=o[_];o[_]=o[w],o[w]=k}M=s[c-1];if(s[c-1]=s[h],s[h]=M,u<h){for(c=h-1;l<c&&o[f*(c-1)+e]===p;)c-=1;c+=1}else{if(!(h<u))break;for(l=h+1;l<c&&o[f*l+e]===p;)l+=1}}return n(t,e,r,u,o,s,o[f*u+e])};var n=t(\"./partition\")(\"lo<p0\",[\"p0\"]);function i(t,e,r,n,i,a){for(var o=2*t,s=o*(r+1)+e,l=r+1;l<n;++l,s+=o)for(var c=i[s],u=l,f=o*(l-1);u>r&&i[f+e]>c;--u,f-=o){for(var h=f,p=f+o,d=0;d<o;++d,++h,++p){var g=i[h];i[h]=i[p],i[p]=g}var m=a[u];a[u]=a[u-1],a[u-1]=m}}},{\"./partition\":105}],105:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=\"abcdef\".split(\"\").concat(e),n=[];t.indexOf(\"lo\")>=0&&n.push(\"lo=e[k+n]\");t.indexOf(\"hi\")>=0&&n.push(\"hi=e[k+o]\");return r.push(\"for(var j=2*a,k=j*c,l=k,m=c,n=b,o=a+b,p=c;d>p;++p,k+=j){var _;if($)if(m===p)m+=1,l+=j;else{for(var s=0;j>s;++s){var t=e[k+s];e[k+s]=e[l],e[l++]=t}var u=f[p];f[p]=f[m],f[m++]=u}}return m\".replace(\"_\",n.join()).replace(\"$\",t)),Function.apply(void 0,r)}},{}],106:[function(t,e,r){\"use strict\";e.exports=function(t,e){e<=128?n(0,e-1,t):function t(e,r,u){var f=(r-e+1)/6|0,h=e+f,p=r-f,d=e+r>>1,g=d-f,m=d+f,v=h,y=g,x=d,b=m,_=p,w=e+1,T=r-1,k=0;l(v,y,u)&&(k=v,v=y,y=k);l(b,_,u)&&(k=b,b=_,_=k);l(v,x,u)&&(k=v,v=x,x=k);l(y,x,u)&&(k=y,y=x,x=k);l(v,b,u)&&(k=v,v=b,b=k);l(x,b,u)&&(k=x,x=b,b=k);l(y,_,u)&&(k=y,y=_,_=k);l(y,x,u)&&(k=y,y=x,x=k);l(b,_,u)&&(k=b,b=_,_=k);for(var M=u[2*y],A=u[2*y+1],S=u[2*b],E=u[2*b+1],C=2*v,L=2*x,I=2*_,P=2*h,z=2*d,O=2*p,D=0;D<2;++D){var R=u[C+D],F=u[L+D],B=u[I+D];u[P+D]=R,u[z+D]=F,u[O+D]=B}a(g,e,u),a(m,r,u);for(var N=w;N<=T;++N)if(c(N,M,A,u))N!==w&&i(N,w,u),++w;else if(!c(N,S,E,u))for(;;){if(c(T,S,E,u)){c(T,M,A,u)?(o(N,w,T,u),++w,--T):(i(N,T,u),--T);break}if(--T<N)break}s(e,w-1,M,A,u),s(r,T+1,S,E,u),w-2-e<=32?n(e,w-2,u):t(e,w-2,u);r-(T+2)<=32?n(T+2,r,u):t(T+2,r,u);T-w<=32?n(w,T,u):t(w,T,u)}(0,e-1,t)};function n(t,e,r){for(var n=2*(t+1),i=t+1;i<=e;++i){for(var a=r[n++],o=r[n++],s=i,l=n-2;s-- >t;){var c=r[l-2],u=r[l-1];if(c<a)break;if(c===a&&u<o)break;r[l]=c,r[l+1]=u,l-=2}r[l]=a,r[l+1]=o}}function i(t,e,r){e*=2;var n=r[t*=2],i=r[t+1];r[t]=r[e],r[t+1]=r[e+1],r[e]=n,r[e+1]=i}function a(t,e,r){e*=2,r[t*=2]=r[e],r[t+1]=r[e+1]}function o(t,e,r,n){e*=2,r*=2;var i=n[t*=2],a=n[t+1];n[t]=n[e],n[t+1]=n[e+1],n[e]=n[r],n[e+1]=n[r+1],n[r]=i,n[r+1]=a}function s(t,e,r,n,i){e*=2,i[t*=2]=i[e],i[e]=r,i[t+1]=i[e+1],i[e+1]=n}function l(t,e,r){e*=2;var n=r[t*=2],i=r[e];return!(n<i)&&(n!==i||r[t+1]>r[e+1])}function c(t,e,r,n){var i=n[t*=2];return i<e||i===e&&n[t+1]<r}},{}],107:[function(t,e,r){\"use strict\";e.exports={init:function(t){var e=i.nextPow2(t);o.length<e&&(n.free(o),o=n.mallocInt32(e));s.length<e&&(n.free(s),s=n.mallocInt32(e));l.length<e&&(n.free(l),l=n.mallocInt32(e));c.length<e&&(n.free(c),c=n.mallocInt32(e));u.length<e&&(n.free(u),u=n.mallocInt32(e));f.length<e&&(n.free(f),f=n.mallocInt32(e));var r=8*e;h.length<r&&(n.free(h),h=n.mallocDouble(r))},sweepBipartite:function(t,e,r,n,i,u,f,g,m,v){for(var y=0,x=2*t,b=t-1,_=x-1,w=r;w<n;++w){var T=u[w],k=x*w;h[y++]=i[k+b],h[y++]=-(T+1),h[y++]=i[k+_],h[y++]=T}for(w=f;w<g;++w){T=v[w]+(1<<28);var M=x*w;h[y++]=m[M+b],h[y++]=-T,h[y++]=m[M+_],h[y++]=T}var A=y>>>1;a(h,A);var S=0,E=0;for(w=0;w<A;++w){var C=0|h[2*w+1];if(C>=1<<28)p(l,c,E--,C=C-(1<<28)|0);else if(C>=0)p(o,s,S--,C);else if(C<=-(1<<28)){C=-C-(1<<28)|0;for(var L=0;L<S;++L){if(void 0!==(I=e(o[L],C)))return I}d(l,c,E++,C)}else{C=-C-1|0;for(L=0;L<E;++L){var I;if(void 0!==(I=e(C,l[L])))return I}d(o,s,S++,C)}}},sweepComplete:function(t,e,r,n,i,g,m,v,y,x){for(var b=0,_=2*t,w=t-1,T=_-1,k=r;k<n;++k){var M=g[k]+1<<1,A=_*k;h[b++]=i[A+w],h[b++]=-M,h[b++]=i[A+T],h[b++]=M}for(k=m;k<v;++k){M=x[k]+1<<1;var S=_*k;h[b++]=y[S+w],h[b++]=1|-M,h[b++]=y[S+T],h[b++]=1|M}var E=b>>>1;a(h,E);var C=0,L=0,I=0;for(k=0;k<E;++k){var P=0|h[2*k+1],z=1&P;if(k<E-1&&P>>1==h[2*k+3]>>1&&(z=2,k+=1),P<0){for(var O=-(P>>1)-1,D=0;D<I;++D){if(void 0!==(R=e(u[D],O)))return R}if(0!==z)for(D=0;D<C;++D){if(void 0!==(R=e(o[D],O)))return R}if(1!==z)for(D=0;D<L;++D){var R;if(void 0!==(R=e(l[D],O)))return R}0===z?d(o,s,C++,O):1===z?d(l,c,L++,O):2===z&&d(u,f,I++,O)}else{O=(P>>1)-1;0===z?p(o,s,C--,O):1===z?p(l,c,L--,O):2===z&&p(u,f,I--,O)}}},scanBipartite:function(t,e,r,n,i,l,c,u,f,g,m,v){var y=0,x=2*t,b=e,_=e+t,w=1,T=1;n?T=1<<28:w=1<<28;for(var k=i;k<l;++k){var M=k+w,A=x*k;h[y++]=c[A+b],h[y++]=-M,h[y++]=c[A+_],h[y++]=M}for(k=f;k<g;++k){M=k+T;var S=x*k;h[y++]=m[S+b],h[y++]=-M}var E=y>>>1;a(h,E);var C=0;for(k=0;k<E;++k){var L=0|h[2*k+1];if(L<0){var I=!1;if((M=-L)>=1<<28?(I=!n,M-=1<<28):(I=!!n,M-=1),I)d(o,s,C++,M);else{var P=v[M],z=x*M,O=m[z+e+1],D=m[z+e+1+t];t:for(var R=0;R<C;++R){var F=o[R],B=x*F;if(!(D<c[B+e+1]||c[B+e+1+t]<O)){for(var N=e+2;N<t;++N)if(m[z+N+t]<c[B+N]||c[B+N+t]<m[z+N])continue t;var j,U=u[F];if(void 0!==(j=n?r(P,U):r(U,P)))return j}}}}else p(o,s,C--,L-w)}},scanComplete:function(t,e,r,n,i,s,l,c,u,f,p){for(var d=0,g=2*t,m=e,v=e+t,y=n;y<i;++y){var x=y+(1<<28),b=g*y;h[d++]=s[b+m],h[d++]=-x,h[d++]=s[b+v],h[d++]=x}for(y=c;y<u;++y){x=y+1;var _=g*y;h[d++]=f[_+m],h[d++]=-x}var w=d>>>1;a(h,w);var T=0;for(y=0;y<w;++y){var k=0|h[2*y+1];if(k<0){if((x=-k)>=1<<28)o[T++]=x-(1<<28);else{var M=p[x-=1],A=g*x,S=f[A+e+1],E=f[A+e+1+t];t:for(var C=0;C<T;++C){var L=o[C],I=l[L];if(I===M)break;var P=g*L;if(!(E<s[P+e+1]||s[P+e+1+t]<S)){for(var z=e+2;z<t;++z)if(f[A+z+t]<s[P+z]||s[P+z+t]<f[A+z])continue t;var O=r(I,M);if(void 0!==O)return O}}}}else{for(x=k-(1<<28),C=T-1;C>=0;--C)if(o[C]===x){for(z=C+1;z<T;++z)o[z-1]=o[z];break}--T}}}};var n=t(\"typedarray-pool\"),i=t(\"bit-twiddle\"),a=t(\"./sort\"),o=n.mallocInt32(1024),s=n.mallocInt32(1024),l=n.mallocInt32(1024),c=n.mallocInt32(1024),u=n.mallocInt32(1024),f=n.mallocInt32(1024),h=n.mallocDouble(8192);function p(t,e,r,n){var i=e[n],a=t[r-1];t[i]=a,e[a]=i}function d(t,e,r,n){t[r]=n,e[n]=r}},{\"./sort\":106,\"bit-twiddle\":97,\"typedarray-pool\":595}],108:[function(t,e,r){},{}],109:[function(t,e,r){arguments[4][108][0].apply(r,arguments)},{dup:108}],110:[function(t,e,r){\"use strict\";var n,i=\"object\"==typeof Reflect?Reflect:null,a=i&&\"function\"==typeof i.apply?i.apply:function(t,e,r){return Function.prototype.apply.call(t,e,r)};n=i&&\"function\"==typeof i.ownKeys?i.ownKeys:Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:function(t){return Object.getOwnPropertyNames(t)};var o=Number.isNaN||function(t){return t!=t};function s(){s.init.call(this)}e.exports=s,e.exports.once=function(t,e){return new Promise((function(r,n){function i(){void 0!==a&&t.removeListener(\"error\",a),r([].slice.call(arguments))}var a;\"error\"!==e&&(a=function(r){t.removeListener(e,i),n(r)},t.once(\"error\",a)),t.once(e,i)}))},s.EventEmitter=s,s.prototype._events=void 0,s.prototype._eventsCount=0,s.prototype._maxListeners=void 0;var l=10;function c(t){if(\"function\"!=typeof t)throw new TypeError('The \"listener\" argument must be of type Function. Received type '+typeof t)}function u(t){return void 0===t._maxListeners?s.defaultMaxListeners:t._maxListeners}function f(t,e,r,n){var i,a,o,s;if(c(r),void 0===(a=t._events)?(a=t._events=Object.create(null),t._eventsCount=0):(void 0!==a.newListener&&(t.emit(\"newListener\",e,r.listener?r.listener:r),a=t._events),o=a[e]),void 0===o)o=a[e]=r,++t._eventsCount;else if(\"function\"==typeof o?o=a[e]=n?[r,o]:[o,r]:n?o.unshift(r):o.push(r),(i=u(t))>0&&o.length>i&&!o.warned){o.warned=!0;var l=new Error(\"Possible EventEmitter memory leak detected. \"+o.length+\" \"+String(e)+\" listeners added. Use emitter.setMaxListeners() to increase limit\");l.name=\"MaxListenersExceededWarning\",l.emitter=t,l.type=e,l.count=o.length,s=l,console&&console.warn&&console.warn(s)}return t}function h(){if(!this.fired)return this.target.removeListener(this.type,this.wrapFn),this.fired=!0,0===arguments.length?this.listener.call(this.target):this.listener.apply(this.target,arguments)}function p(t,e,r){var n={fired:!1,wrapFn:void 0,target:t,type:e,listener:r},i=h.bind(n);return i.listener=r,n.wrapFn=i,i}function d(t,e,r){var n=t._events;if(void 0===n)return[];var i=n[e];return void 0===i?[]:\"function\"==typeof i?r?[i.listener||i]:[i]:r?function(t){for(var e=new Array(t.length),r=0;r<e.length;++r)e[r]=t[r].listener||t[r];return e}(i):m(i,i.length)}function g(t){var e=this._events;if(void 0!==e){var r=e[t];if(\"function\"==typeof r)return 1;if(void 0!==r)return r.length}return 0}function m(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t[n];return r}Object.defineProperty(s,\"defaultMaxListeners\",{enumerable:!0,get:function(){return l},set:function(t){if(\"number\"!=typeof t||t<0||o(t))throw new RangeError('The value of \"defaultMaxListeners\" is out of range. It must be a non-negative number. Received '+t+\".\");l=t}}),s.init=function(){void 0!==this._events&&this._events!==Object.getPrototypeOf(this)._events||(this._events=Object.create(null),this._eventsCount=0),this._maxListeners=this._maxListeners||void 0},s.prototype.setMaxListeners=function(t){if(\"number\"!=typeof t||t<0||o(t))throw new RangeError('The value of \"n\" is out of range. It must be a non-negative number. Received '+t+\".\");return this._maxListeners=t,this},s.prototype.getMaxListeners=function(){return u(this)},s.prototype.emit=function(t){for(var e=[],r=1;r<arguments.length;r++)e.push(arguments[r]);var n=\"error\"===t,i=this._events;if(void 0!==i)n=n&&void 0===i.error;else if(!n)return!1;if(n){var o;if(e.length>0&&(o=e[0]),o instanceof Error)throw o;var s=new Error(\"Unhandled error.\"+(o?\" (\"+o.message+\")\":\"\"));throw s.context=o,s}var l=i[t];if(void 0===l)return!1;if(\"function\"==typeof l)a(l,this,e);else{var c=l.length,u=m(l,c);for(r=0;r<c;++r)a(u[r],this,e)}return!0},s.prototype.addListener=function(t,e){return f(this,t,e,!1)},s.prototype.on=s.prototype.addListener,s.prototype.prependListener=function(t,e){return f(this,t,e,!0)},s.prototype.once=function(t,e){return c(e),this.on(t,p(this,t,e)),this},s.prototype.prependOnceListener=function(t,e){return c(e),this.prependListener(t,p(this,t,e)),this},s.prototype.removeListener=function(t,e){var r,n,i,a,o;if(c(e),void 0===(n=this._events))return this;if(void 0===(r=n[t]))return this;if(r===e||r.listener===e)0==--this._eventsCount?this._events=Object.create(null):(delete n[t],n.removeListener&&this.emit(\"removeListener\",t,r.listener||e));else if(\"function\"!=typeof r){for(i=-1,a=r.length-1;a>=0;a--)if(r[a]===e||r[a].listener===e){o=r[a].listener,i=a;break}if(i<0)return this;0===i?r.shift():function(t,e){for(;e+1<t.length;e++)t[e]=t[e+1];t.pop()}(r,i),1===r.length&&(n[t]=r[0]),void 0!==n.removeListener&&this.emit(\"removeListener\",t,o||e)}return this},s.prototype.off=s.prototype.removeListener,s.prototype.removeAllListeners=function(t){var e,r,n;if(void 0===(r=this._events))return this;if(void 0===r.removeListener)return 0===arguments.length?(this._events=Object.create(null),this._eventsCount=0):void 0!==r[t]&&(0==--this._eventsCount?this._events=Object.create(null):delete r[t]),this;if(0===arguments.length){var i,a=Object.keys(r);for(n=0;n<a.length;++n)\"removeListener\"!==(i=a[n])&&this.removeAllListeners(i);return this.removeAllListeners(\"removeListener\"),this._events=Object.create(null),this._eventsCount=0,this}if(\"function\"==typeof(e=r[t]))this.removeListener(t,e);else if(void 0!==e)for(n=e.length-1;n>=0;n--)this.removeListener(t,e[n]);return this},s.prototype.listeners=function(t){return d(this,t,!0)},s.prototype.rawListeners=function(t){return d(this,t,!1)},s.listenerCount=function(t,e){return\"function\"==typeof t.listenerCount?t.listenerCount(e):g.call(t,e)},s.prototype.listenerCount=g,s.prototype.eventNames=function(){return this._eventsCount>0?n(this._events):[]}},{}],111:[function(t,e,r){(function(e){(function(){\n",
       "/*!\n",
       " * The buffer module from node.js, for the browser.\n",
       " *\n",
       " * @author   Feross Aboukhadijeh <https://feross.org>\n",
       " * @license  MIT\n",
       " */\n",
       "\"use strict\";var e=t(\"base64-js\"),n=t(\"ieee754\");r.Buffer=a,r.SlowBuffer=function(t){+t!=t&&(t=0);return a.alloc(+t)},r.INSPECT_MAX_BYTES=50;function i(t){if(t>2147483647)throw new RangeError('The value \"'+t+'\" is invalid for option \"size\"');var e=new Uint8Array(t);return e.__proto__=a.prototype,e}function a(t,e,r){if(\"number\"==typeof t){if(\"string\"==typeof e)throw new TypeError('The \"string\" argument must be of type string. Received type number');return l(t)}return o(t,e,r)}function o(t,e,r){if(\"string\"==typeof t)return function(t,e){\"string\"==typeof e&&\"\"!==e||(e=\"utf8\");if(!a.isEncoding(e))throw new TypeError(\"Unknown encoding: \"+e);var r=0|f(t,e),n=i(r),o=n.write(t,e);o!==r&&(n=n.slice(0,o));return n}(t,e);if(ArrayBuffer.isView(t))return c(t);if(null==t)throw TypeError(\"The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type \"+typeof t);if(B(t,ArrayBuffer)||t&&B(t.buffer,ArrayBuffer))return function(t,e,r){if(e<0||t.byteLength<e)throw new RangeError('\"offset\" is outside of buffer bounds');if(t.byteLength<e+(r||0))throw new RangeError('\"length\" is outside of buffer bounds');var n;n=void 0===e&&void 0===r?new Uint8Array(t):void 0===r?new Uint8Array(t,e):new Uint8Array(t,e,r);return n.__proto__=a.prototype,n}(t,e,r);if(\"number\"==typeof t)throw new TypeError('The \"value\" argument must not be of type number. Received type number');var n=t.valueOf&&t.valueOf();if(null!=n&&n!==t)return a.from(n,e,r);var o=function(t){if(a.isBuffer(t)){var e=0|u(t.length),r=i(e);return 0===r.length||t.copy(r,0,0,e),r}if(void 0!==t.length)return\"number\"!=typeof t.length||N(t.length)?i(0):c(t);if(\"Buffer\"===t.type&&Array.isArray(t.data))return c(t.data)}(t);if(o)return o;if(\"undefined\"!=typeof Symbol&&null!=Symbol.toPrimitive&&\"function\"==typeof t[Symbol.toPrimitive])return a.from(t[Symbol.toPrimitive](\"string\"),e,r);throw new TypeError(\"The first argument must be one of type string, Buffer, ArrayBuffer, Array, or Array-like Object. Received type \"+typeof t)}function s(t){if(\"number\"!=typeof t)throw new TypeError('\"size\" argument must be of type number');if(t<0)throw new RangeError('The value \"'+t+'\" is invalid for option \"size\"')}function l(t){return s(t),i(t<0?0:0|u(t))}function c(t){for(var e=t.length<0?0:0|u(t.length),r=i(e),n=0;n<e;n+=1)r[n]=255&t[n];return r}function u(t){if(t>=2147483647)throw new RangeError(\"Attempt to allocate Buffer larger than maximum size: 0x\"+2147483647..toString(16)+\" bytes\");return 0|t}function f(t,e){if(a.isBuffer(t))return t.length;if(ArrayBuffer.isView(t)||B(t,ArrayBuffer))return t.byteLength;if(\"string\"!=typeof t)throw new TypeError('The \"string\" argument must be one of type string, Buffer, or ArrayBuffer. Received type '+typeof t);var r=t.length,n=arguments.length>2&&!0===arguments[2];if(!n&&0===r)return 0;for(var i=!1;;)switch(e){case\"ascii\":case\"latin1\":case\"binary\":return r;case\"utf8\":case\"utf-8\":return D(t).length;case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return 2*r;case\"hex\":return r>>>1;case\"base64\":return R(t).length;default:if(i)return n?-1:D(t).length;e=(\"\"+e).toLowerCase(),i=!0}}function h(t,e,r){var n=!1;if((void 0===e||e<0)&&(e=0),e>this.length)return\"\";if((void 0===r||r>this.length)&&(r=this.length),r<=0)return\"\";if((r>>>=0)<=(e>>>=0))return\"\";for(t||(t=\"utf8\");;)switch(t){case\"hex\":return A(this,e,r);case\"utf8\":case\"utf-8\":return T(this,e,r);case\"ascii\":return k(this,e,r);case\"latin1\":case\"binary\":return M(this,e,r);case\"base64\":return w(this,e,r);case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return S(this,e,r);default:if(n)throw new TypeError(\"Unknown encoding: \"+t);t=(t+\"\").toLowerCase(),n=!0}}function p(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function d(t,e,r,n,i){if(0===t.length)return-1;if(\"string\"==typeof r?(n=r,r=0):r>2147483647?r=2147483647:r<-2147483648&&(r=-2147483648),N(r=+r)&&(r=i?0:t.length-1),r<0&&(r=t.length+r),r>=t.length){if(i)return-1;r=t.length-1}else if(r<0){if(!i)return-1;r=0}if(\"string\"==typeof e&&(e=a.from(e,n)),a.isBuffer(e))return 0===e.length?-1:g(t,e,r,n,i);if(\"number\"==typeof e)return e&=255,\"function\"==typeof Uint8Array.prototype.indexOf?i?Uint8Array.prototype.indexOf.call(t,e,r):Uint8Array.prototype.lastIndexOf.call(t,e,r):g(t,[e],r,n,i);throw new TypeError(\"val must be string, number or Buffer\")}function g(t,e,r,n,i){var a,o=1,s=t.length,l=e.length;if(void 0!==n&&(\"ucs2\"===(n=String(n).toLowerCase())||\"ucs-2\"===n||\"utf16le\"===n||\"utf-16le\"===n)){if(t.length<2||e.length<2)return-1;o=2,s/=2,l/=2,r/=2}function c(t,e){return 1===o?t[e]:t.readUInt16BE(e*o)}if(i){var u=-1;for(a=r;a<s;a++)if(c(t,a)===c(e,-1===u?0:a-u)){if(-1===u&&(u=a),a-u+1===l)return u*o}else-1!==u&&(a-=a-u),u=-1}else for(r+l>s&&(r=s-l),a=r;a>=0;a--){for(var f=!0,h=0;h<l;h++)if(c(t,a+h)!==c(e,h)){f=!1;break}if(f)return a}return-1}function m(t,e,r,n){r=Number(r)||0;var i=t.length-r;n?(n=Number(n))>i&&(n=i):n=i;var a=e.length;n>a/2&&(n=a/2);for(var o=0;o<n;++o){var s=parseInt(e.substr(2*o,2),16);if(N(s))return o;t[r+o]=s}return o}function v(t,e,r,n){return F(D(e,t.length-r),t,r,n)}function y(t,e,r,n){return F(function(t){for(var e=[],r=0;r<t.length;++r)e.push(255&t.charCodeAt(r));return e}(e),t,r,n)}function x(t,e,r,n){return y(t,e,r,n)}function b(t,e,r,n){return F(R(e),t,r,n)}function _(t,e,r,n){return F(function(t,e){for(var r,n,i,a=[],o=0;o<t.length&&!((e-=2)<0);++o)r=t.charCodeAt(o),n=r>>8,i=r%256,a.push(i),a.push(n);return a}(e,t.length-r),t,r,n)}function w(t,r,n){return 0===r&&n===t.length?e.fromByteArray(t):e.fromByteArray(t.slice(r,n))}function T(t,e,r){r=Math.min(t.length,r);for(var n=[],i=e;i<r;){var a,o,s,l,c=t[i],u=null,f=c>239?4:c>223?3:c>191?2:1;if(i+f<=r)switch(f){case 1:c<128&&(u=c);break;case 2:128==(192&(a=t[i+1]))&&(l=(31&c)<<6|63&a)>127&&(u=l);break;case 3:a=t[i+1],o=t[i+2],128==(192&a)&&128==(192&o)&&(l=(15&c)<<12|(63&a)<<6|63&o)>2047&&(l<55296||l>57343)&&(u=l);break;case 4:a=t[i+1],o=t[i+2],s=t[i+3],128==(192&a)&&128==(192&o)&&128==(192&s)&&(l=(15&c)<<18|(63&a)<<12|(63&o)<<6|63&s)>65535&&l<1114112&&(u=l)}null===u?(u=65533,f=1):u>65535&&(u-=65536,n.push(u>>>10&1023|55296),u=56320|1023&u),n.push(u),i+=f}return function(t){var e=t.length;if(e<=4096)return String.fromCharCode.apply(String,t);var r=\"\",n=0;for(;n<e;)r+=String.fromCharCode.apply(String,t.slice(n,n+=4096));return r}(n)}r.kMaxLength=2147483647,a.TYPED_ARRAY_SUPPORT=function(){try{var t=new Uint8Array(1);return t.__proto__={__proto__:Uint8Array.prototype,foo:function(){return 42}},42===t.foo()}catch(t){return!1}}(),a.TYPED_ARRAY_SUPPORT||\"undefined\"==typeof console||\"function\"!=typeof console.error||console.error(\"This browser lacks typed array (Uint8Array) support which is required by `buffer` v5.x. Use `buffer` v4.x if you require old browser support.\"),Object.defineProperty(a.prototype,\"parent\",{enumerable:!0,get:function(){if(a.isBuffer(this))return this.buffer}}),Object.defineProperty(a.prototype,\"offset\",{enumerable:!0,get:function(){if(a.isBuffer(this))return this.byteOffset}}),\"undefined\"!=typeof Symbol&&null!=Symbol.species&&a[Symbol.species]===a&&Object.defineProperty(a,Symbol.species,{value:null,configurable:!0,enumerable:!1,writable:!1}),a.poolSize=8192,a.from=function(t,e,r){return o(t,e,r)},a.prototype.__proto__=Uint8Array.prototype,a.__proto__=Uint8Array,a.alloc=function(t,e,r){return function(t,e,r){return s(t),t<=0?i(t):void 0!==e?\"string\"==typeof r?i(t).fill(e,r):i(t).fill(e):i(t)}(t,e,r)},a.allocUnsafe=function(t){return l(t)},a.allocUnsafeSlow=function(t){return l(t)},a.isBuffer=function(t){return null!=t&&!0===t._isBuffer&&t!==a.prototype},a.compare=function(t,e){if(B(t,Uint8Array)&&(t=a.from(t,t.offset,t.byteLength)),B(e,Uint8Array)&&(e=a.from(e,e.offset,e.byteLength)),!a.isBuffer(t)||!a.isBuffer(e))throw new TypeError('The \"buf1\", \"buf2\" arguments must be one of type Buffer or Uint8Array');if(t===e)return 0;for(var r=t.length,n=e.length,i=0,o=Math.min(r,n);i<o;++i)if(t[i]!==e[i]){r=t[i],n=e[i];break}return r<n?-1:n<r?1:0},a.isEncoding=function(t){switch(String(t).toLowerCase()){case\"hex\":case\"utf8\":case\"utf-8\":case\"ascii\":case\"latin1\":case\"binary\":case\"base64\":case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return!0;default:return!1}},a.concat=function(t,e){if(!Array.isArray(t))throw new TypeError('\"list\" argument must be an Array of Buffers');if(0===t.length)return a.alloc(0);var r;if(void 0===e)for(e=0,r=0;r<t.length;++r)e+=t[r].length;var n=a.allocUnsafe(e),i=0;for(r=0;r<t.length;++r){var o=t[r];if(B(o,Uint8Array)&&(o=a.from(o)),!a.isBuffer(o))throw new TypeError('\"list\" argument must be an Array of Buffers');o.copy(n,i),i+=o.length}return n},a.byteLength=f,a.prototype._isBuffer=!0,a.prototype.swap16=function(){var t=this.length;if(t%2!=0)throw new RangeError(\"Buffer size must be a multiple of 16-bits\");for(var e=0;e<t;e+=2)p(this,e,e+1);return this},a.prototype.swap32=function(){var t=this.length;if(t%4!=0)throw new RangeError(\"Buffer size must be a multiple of 32-bits\");for(var e=0;e<t;e+=4)p(this,e,e+3),p(this,e+1,e+2);return this},a.prototype.swap64=function(){var t=this.length;if(t%8!=0)throw new RangeError(\"Buffer size must be a multiple of 64-bits\");for(var e=0;e<t;e+=8)p(this,e,e+7),p(this,e+1,e+6),p(this,e+2,e+5),p(this,e+3,e+4);return this},a.prototype.toString=function(){var t=this.length;return 0===t?\"\":0===arguments.length?T(this,0,t):h.apply(this,arguments)},a.prototype.toLocaleString=a.prototype.toString,a.prototype.equals=function(t){if(!a.isBuffer(t))throw new TypeError(\"Argument must be a Buffer\");return this===t||0===a.compare(this,t)},a.prototype.inspect=function(){var t=\"\",e=r.INSPECT_MAX_BYTES;return t=this.toString(\"hex\",0,e).replace(/(.{2})/g,\"$1 \").trim(),this.length>e&&(t+=\" ... \"),\"<Buffer \"+t+\">\"},a.prototype.compare=function(t,e,r,n,i){if(B(t,Uint8Array)&&(t=a.from(t,t.offset,t.byteLength)),!a.isBuffer(t))throw new TypeError('The \"target\" argument must be one of type Buffer or Uint8Array. Received type '+typeof t);if(void 0===e&&(e=0),void 0===r&&(r=t?t.length:0),void 0===n&&(n=0),void 0===i&&(i=this.length),e<0||r>t.length||n<0||i>this.length)throw new RangeError(\"out of range index\");if(n>=i&&e>=r)return 0;if(n>=i)return-1;if(e>=r)return 1;if(this===t)return 0;for(var o=(i>>>=0)-(n>>>=0),s=(r>>>=0)-(e>>>=0),l=Math.min(o,s),c=this.slice(n,i),u=t.slice(e,r),f=0;f<l;++f)if(c[f]!==u[f]){o=c[f],s=u[f];break}return o<s?-1:s<o?1:0},a.prototype.includes=function(t,e,r){return-1!==this.indexOf(t,e,r)},a.prototype.indexOf=function(t,e,r){return d(this,t,e,r,!0)},a.prototype.lastIndexOf=function(t,e,r){return d(this,t,e,r,!1)},a.prototype.write=function(t,e,r,n){if(void 0===e)n=\"utf8\",r=this.length,e=0;else if(void 0===r&&\"string\"==typeof e)n=e,r=this.length,e=0;else{if(!isFinite(e))throw new Error(\"Buffer.write(string, encoding, offset[, length]) is no longer supported\");e>>>=0,isFinite(r)?(r>>>=0,void 0===n&&(n=\"utf8\")):(n=r,r=void 0)}var i=this.length-e;if((void 0===r||r>i)&&(r=i),t.length>0&&(r<0||e<0)||e>this.length)throw new RangeError(\"Attempt to write outside buffer bounds\");n||(n=\"utf8\");for(var a=!1;;)switch(n){case\"hex\":return m(this,t,e,r);case\"utf8\":case\"utf-8\":return v(this,t,e,r);case\"ascii\":return y(this,t,e,r);case\"latin1\":case\"binary\":return x(this,t,e,r);case\"base64\":return b(this,t,e,r);case\"ucs2\":case\"ucs-2\":case\"utf16le\":case\"utf-16le\":return _(this,t,e,r);default:if(a)throw new TypeError(\"Unknown encoding: \"+n);n=(\"\"+n).toLowerCase(),a=!0}},a.prototype.toJSON=function(){return{type:\"Buffer\",data:Array.prototype.slice.call(this._arr||this,0)}};function k(t,e,r){var n=\"\";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(127&t[i]);return n}function M(t,e,r){var n=\"\";r=Math.min(t.length,r);for(var i=e;i<r;++i)n+=String.fromCharCode(t[i]);return n}function A(t,e,r){var n=t.length;(!e||e<0)&&(e=0),(!r||r<0||r>n)&&(r=n);for(var i=\"\",a=e;a<r;++a)i+=O(t[a]);return i}function S(t,e,r){for(var n=t.slice(e,r),i=\"\",a=0;a<n.length;a+=2)i+=String.fromCharCode(n[a]+256*n[a+1]);return i}function E(t,e,r){if(t%1!=0||t<0)throw new RangeError(\"offset is not uint\");if(t+e>r)throw new RangeError(\"Trying to access beyond buffer length\")}function C(t,e,r,n,i,o){if(!a.isBuffer(t))throw new TypeError('\"buffer\" argument must be a Buffer instance');if(e>i||e<o)throw new RangeError('\"value\" argument is out of bounds');if(r+n>t.length)throw new RangeError(\"Index out of range\")}function L(t,e,r,n,i,a){if(r+n>t.length)throw new RangeError(\"Index out of range\");if(r<0)throw new RangeError(\"Index out of range\")}function I(t,e,r,i,a){return e=+e,r>>>=0,a||L(t,0,r,4),n.write(t,e,r,i,23,4),r+4}function P(t,e,r,i,a){return e=+e,r>>>=0,a||L(t,0,r,8),n.write(t,e,r,i,52,8),r+8}a.prototype.slice=function(t,e){var r=this.length;(t=~~t)<0?(t+=r)<0&&(t=0):t>r&&(t=r),(e=void 0===e?r:~~e)<0?(e+=r)<0&&(e=0):e>r&&(e=r),e<t&&(e=t);var n=this.subarray(t,e);return n.__proto__=a.prototype,n},a.prototype.readUIntLE=function(t,e,r){t>>>=0,e>>>=0,r||E(t,e,this.length);for(var n=this[t],i=1,a=0;++a<e&&(i*=256);)n+=this[t+a]*i;return n},a.prototype.readUIntBE=function(t,e,r){t>>>=0,e>>>=0,r||E(t,e,this.length);for(var n=this[t+--e],i=1;e>0&&(i*=256);)n+=this[t+--e]*i;return n},a.prototype.readUInt8=function(t,e){return t>>>=0,e||E(t,1,this.length),this[t]},a.prototype.readUInt16LE=function(t,e){return t>>>=0,e||E(t,2,this.length),this[t]|this[t+1]<<8},a.prototype.readUInt16BE=function(t,e){return t>>>=0,e||E(t,2,this.length),this[t]<<8|this[t+1]},a.prototype.readUInt32LE=function(t,e){return t>>>=0,e||E(t,4,this.length),(this[t]|this[t+1]<<8|this[t+2]<<16)+16777216*this[t+3]},a.prototype.readUInt32BE=function(t,e){return t>>>=0,e||E(t,4,this.length),16777216*this[t]+(this[t+1]<<16|this[t+2]<<8|this[t+3])},a.prototype.readIntLE=function(t,e,r){t>>>=0,e>>>=0,r||E(t,e,this.length);for(var n=this[t],i=1,a=0;++a<e&&(i*=256);)n+=this[t+a]*i;return n>=(i*=128)&&(n-=Math.pow(2,8*e)),n},a.prototype.readIntBE=function(t,e,r){t>>>=0,e>>>=0,r||E(t,e,this.length);for(var n=e,i=1,a=this[t+--n];n>0&&(i*=256);)a+=this[t+--n]*i;return a>=(i*=128)&&(a-=Math.pow(2,8*e)),a},a.prototype.readInt8=function(t,e){return t>>>=0,e||E(t,1,this.length),128&this[t]?-1*(255-this[t]+1):this[t]},a.prototype.readInt16LE=function(t,e){t>>>=0,e||E(t,2,this.length);var r=this[t]|this[t+1]<<8;return 32768&r?4294901760|r:r},a.prototype.readInt16BE=function(t,e){t>>>=0,e||E(t,2,this.length);var r=this[t+1]|this[t]<<8;return 32768&r?4294901760|r:r},a.prototype.readInt32LE=function(t,e){return t>>>=0,e||E(t,4,this.length),this[t]|this[t+1]<<8|this[t+2]<<16|this[t+3]<<24},a.prototype.readInt32BE=function(t,e){return t>>>=0,e||E(t,4,this.length),this[t]<<24|this[t+1]<<16|this[t+2]<<8|this[t+3]},a.prototype.readFloatLE=function(t,e){return t>>>=0,e||E(t,4,this.length),n.read(this,t,!0,23,4)},a.prototype.readFloatBE=function(t,e){return t>>>=0,e||E(t,4,this.length),n.read(this,t,!1,23,4)},a.prototype.readDoubleLE=function(t,e){return t>>>=0,e||E(t,8,this.length),n.read(this,t,!0,52,8)},a.prototype.readDoubleBE=function(t,e){return t>>>=0,e||E(t,8,this.length),n.read(this,t,!1,52,8)},a.prototype.writeUIntLE=function(t,e,r,n){(t=+t,e>>>=0,r>>>=0,n)||C(this,t,e,r,Math.pow(2,8*r)-1,0);var i=1,a=0;for(this[e]=255&t;++a<r&&(i*=256);)this[e+a]=t/i&255;return e+r},a.prototype.writeUIntBE=function(t,e,r,n){(t=+t,e>>>=0,r>>>=0,n)||C(this,t,e,r,Math.pow(2,8*r)-1,0);var i=r-1,a=1;for(this[e+i]=255&t;--i>=0&&(a*=256);)this[e+i]=t/a&255;return e+r},a.prototype.writeUInt8=function(t,e,r){return t=+t,e>>>=0,r||C(this,t,e,1,255,0),this[e]=255&t,e+1},a.prototype.writeUInt16LE=function(t,e,r){return t=+t,e>>>=0,r||C(this,t,e,2,65535,0),this[e]=255&t,this[e+1]=t>>>8,e+2},a.prototype.writeUInt16BE=function(t,e,r){return t=+t,e>>>=0,r||C(this,t,e,2,65535,0),this[e]=t>>>8,this[e+1]=255&t,e+2},a.prototype.writeUInt32LE=function(t,e,r){return t=+t,e>>>=0,r||C(this,t,e,4,4294967295,0),this[e+3]=t>>>24,this[e+2]=t>>>16,this[e+1]=t>>>8,this[e]=255&t,e+4},a.prototype.writeUInt32BE=function(t,e,r){return t=+t,e>>>=0,r||C(this,t,e,4,4294967295,0),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},a.prototype.writeIntLE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var i=Math.pow(2,8*r-1);C(this,t,e,r,i-1,-i)}var a=0,o=1,s=0;for(this[e]=255&t;++a<r&&(o*=256);)t<0&&0===s&&0!==this[e+a-1]&&(s=1),this[e+a]=(t/o>>0)-s&255;return e+r},a.prototype.writeIntBE=function(t,e,r,n){if(t=+t,e>>>=0,!n){var i=Math.pow(2,8*r-1);C(this,t,e,r,i-1,-i)}var a=r-1,o=1,s=0;for(this[e+a]=255&t;--a>=0&&(o*=256);)t<0&&0===s&&0!==this[e+a+1]&&(s=1),this[e+a]=(t/o>>0)-s&255;return e+r},a.prototype.writeInt8=function(t,e,r){return t=+t,e>>>=0,r||C(this,t,e,1,127,-128),t<0&&(t=255+t+1),this[e]=255&t,e+1},a.prototype.writeInt16LE=function(t,e,r){return t=+t,e>>>=0,r||C(this,t,e,2,32767,-32768),this[e]=255&t,this[e+1]=t>>>8,e+2},a.prototype.writeInt16BE=function(t,e,r){return t=+t,e>>>=0,r||C(this,t,e,2,32767,-32768),this[e]=t>>>8,this[e+1]=255&t,e+2},a.prototype.writeInt32LE=function(t,e,r){return t=+t,e>>>=0,r||C(this,t,e,4,2147483647,-2147483648),this[e]=255&t,this[e+1]=t>>>8,this[e+2]=t>>>16,this[e+3]=t>>>24,e+4},a.prototype.writeInt32BE=function(t,e,r){return t=+t,e>>>=0,r||C(this,t,e,4,2147483647,-2147483648),t<0&&(t=4294967295+t+1),this[e]=t>>>24,this[e+1]=t>>>16,this[e+2]=t>>>8,this[e+3]=255&t,e+4},a.prototype.writeFloatLE=function(t,e,r){return I(this,t,e,!0,r)},a.prototype.writeFloatBE=function(t,e,r){return I(this,t,e,!1,r)},a.prototype.writeDoubleLE=function(t,e,r){return P(this,t,e,!0,r)},a.prototype.writeDoubleBE=function(t,e,r){return P(this,t,e,!1,r)},a.prototype.copy=function(t,e,r,n){if(!a.isBuffer(t))throw new TypeError(\"argument should be a Buffer\");if(r||(r=0),n||0===n||(n=this.length),e>=t.length&&(e=t.length),e||(e=0),n>0&&n<r&&(n=r),n===r)return 0;if(0===t.length||0===this.length)return 0;if(e<0)throw new RangeError(\"targetStart out of bounds\");if(r<0||r>=this.length)throw new RangeError(\"Index out of range\");if(n<0)throw new RangeError(\"sourceEnd out of bounds\");n>this.length&&(n=this.length),t.length-e<n-r&&(n=t.length-e+r);var i=n-r;if(this===t&&\"function\"==typeof Uint8Array.prototype.copyWithin)this.copyWithin(e,r,n);else if(this===t&&r<e&&e<n)for(var o=i-1;o>=0;--o)t[o+e]=this[o+r];else Uint8Array.prototype.set.call(t,this.subarray(r,n),e);return i},a.prototype.fill=function(t,e,r,n){if(\"string\"==typeof t){if(\"string\"==typeof e?(n=e,e=0,r=this.length):\"string\"==typeof r&&(n=r,r=this.length),void 0!==n&&\"string\"!=typeof n)throw new TypeError(\"encoding must be a string\");if(\"string\"==typeof n&&!a.isEncoding(n))throw new TypeError(\"Unknown encoding: \"+n);if(1===t.length){var i=t.charCodeAt(0);(\"utf8\"===n&&i<128||\"latin1\"===n)&&(t=i)}}else\"number\"==typeof t&&(t&=255);if(e<0||this.length<e||this.length<r)throw new RangeError(\"Out of range index\");if(r<=e)return this;var o;if(e>>>=0,r=void 0===r?this.length:r>>>0,t||(t=0),\"number\"==typeof t)for(o=e;o<r;++o)this[o]=t;else{var s=a.isBuffer(t)?t:a.from(t,n),l=s.length;if(0===l)throw new TypeError('The value \"'+t+'\" is invalid for argument \"value\"');for(o=0;o<r-e;++o)this[o+e]=s[o%l]}return this};var z=/[^+/0-9A-Za-z-_]/g;function O(t){return t<16?\"0\"+t.toString(16):t.toString(16)}function D(t,e){var r;e=e||1/0;for(var n=t.length,i=null,a=[],o=0;o<n;++o){if((r=t.charCodeAt(o))>55295&&r<57344){if(!i){if(r>56319){(e-=3)>-1&&a.push(239,191,189);continue}if(o+1===n){(e-=3)>-1&&a.push(239,191,189);continue}i=r;continue}if(r<56320){(e-=3)>-1&&a.push(239,191,189),i=r;continue}r=65536+(i-55296<<10|r-56320)}else i&&(e-=3)>-1&&a.push(239,191,189);if(i=null,r<128){if((e-=1)<0)break;a.push(r)}else if(r<2048){if((e-=2)<0)break;a.push(r>>6|192,63&r|128)}else if(r<65536){if((e-=3)<0)break;a.push(r>>12|224,r>>6&63|128,63&r|128)}else{if(!(r<1114112))throw new Error(\"Invalid code point\");if((e-=4)<0)break;a.push(r>>18|240,r>>12&63|128,r>>6&63|128,63&r|128)}}return a}function R(t){return e.toByteArray(function(t){if((t=(t=t.split(\"=\")[0]).trim().replace(z,\"\")).length<2)return\"\";for(;t.length%4!=0;)t+=\"=\";return t}(t))}function F(t,e,r,n){for(var i=0;i<n&&!(i+r>=e.length||i>=t.length);++i)e[i+r]=t[i];return i}function B(t,e){return t instanceof e||null!=t&&null!=t.constructor&&null!=t.constructor.name&&t.constructor.name===e.name}function N(t){return t!=t}}).call(this)}).call(this,t(\"buffer\").Buffer)},{\"base64-js\":79,buffer:111,ieee754:442}],112:[function(t,e,r){\"use strict\";var n=t(\"./lib/monotone\"),i=t(\"./lib/triangulation\"),a=t(\"./lib/delaunay\"),o=t(\"./lib/filter\");function s(t){return[Math.min(t[0],t[1]),Math.max(t[0],t[1])]}function l(t,e){return t[0]-e[0]||t[1]-e[1]}function c(t,e,r){return e in t?t[e]:r}e.exports=function(t,e,r){Array.isArray(e)?(r=r||{},e=e||[]):(r=e||{},e=[]);var u=!!c(r,\"delaunay\",!0),f=!!c(r,\"interior\",!0),h=!!c(r,\"exterior\",!0),p=!!c(r,\"infinity\",!1);if(!f&&!h||0===t.length)return[];var d=n(t,e);if(u||f!==h||p){for(var g=i(t.length,function(t){return t.map(s).sort(l)}(e)),m=0;m<d.length;++m){var v=d[m];g.addTriangle(v[0],v[1],v[2])}return u&&a(t,g),h?f?p?o(g,0,p):g.cells():o(g,1,p):o(g,-1)}return d}},{\"./lib/delaunay\":113,\"./lib/filter\":114,\"./lib/monotone\":115,\"./lib/triangulation\":116}],113:[function(t,e,r){\"use strict\";var n=t(\"robust-in-sphere\")[4];t(\"binary-search-bounds\");function i(t,e,r,i,a,o){var s=e.opposite(i,a);if(!(s<0)){if(a<i){var l=i;i=a,a=l,l=o,o=s,s=l}e.isConstraint(i,a)||n(t[i],t[a],t[o],t[s])<0&&r.push(i,a)}}e.exports=function(t,e){for(var r=[],a=t.length,o=e.stars,s=0;s<a;++s)for(var l=o[s],c=1;c<l.length;c+=2){if(!((p=l[c])<s)&&!e.isConstraint(s,p)){for(var u=l[c-1],f=-1,h=1;h<l.length;h+=2)if(l[h-1]===p){f=l[h];break}f<0||n(t[s],t[p],t[u],t[f])<0&&r.push(s,p)}}for(;r.length>0;){for(var p=r.pop(),d=(s=r.pop(),u=-1,f=-1,l=o[s],1);d<l.length;d+=2){var g=l[d-1],m=l[d];g===p?f=m:m===p&&(u=g)}u<0||f<0||(n(t[s],t[p],t[u],t[f])>=0||(e.flip(s,p),i(t,e,r,u,s,f),i(t,e,r,s,f,u),i(t,e,r,f,p,u),i(t,e,r,p,u,f)))}}},{\"binary-search-bounds\":96,\"robust-in-sphere\":546}],114:[function(t,e,r){\"use strict\";var n,i=t(\"binary-search-bounds\");function a(t,e,r,n,i,a,o){this.cells=t,this.neighbor=e,this.flags=n,this.constraint=r,this.active=i,this.next=a,this.boundary=o}function o(t,e){return t[0]-e[0]||t[1]-e[1]||t[2]-e[2]}e.exports=function(t,e,r){var n=function(t,e){for(var r=t.cells(),n=r.length,i=0;i<n;++i){var s=(v=r[i])[0],l=v[1],c=v[2];l<c?l<s&&(v[0]=l,v[1]=c,v[2]=s):c<s&&(v[0]=c,v[1]=s,v[2]=l)}r.sort(o);var u=new Array(n);for(i=0;i<u.length;++i)u[i]=0;var f=[],h=[],p=new Array(3*n),d=new Array(3*n),g=null;e&&(g=[]);var m=new a(r,p,d,u,f,h,g);for(i=0;i<n;++i)for(var v=r[i],y=0;y<3;++y){s=v[y],l=v[(y+1)%3];var x=p[3*i+y]=m.locate(l,s,t.opposite(l,s)),b=d[3*i+y]=t.isConstraint(s,l);x<0&&(b?h.push(i):(f.push(i),u[i]=1),e&&g.push([l,s,-1]))}return m}(t,r);if(0===e)return r?n.cells.concat(n.boundary):n.cells;var i=1,s=n.active,l=n.next,c=n.flags,u=n.cells,f=n.constraint,h=n.neighbor;for(;s.length>0||l.length>0;){for(;s.length>0;){var p=s.pop();if(c[p]!==-i){c[p]=i;u[p];for(var d=0;d<3;++d){var g=h[3*p+d];g>=0&&0===c[g]&&(f[3*p+d]?l.push(g):(s.push(g),c[g]=i))}}}var m=l;l=s,s=m,l.length=0,i=-i}var v=function(t,e,r){for(var n=0,i=0;i<t.length;++i)e[i]===r&&(t[n++]=t[i]);return t.length=n,t}(u,c,e);if(r)return v.concat(n.boundary);return v},a.prototype.locate=(n=[0,0,0],function(t,e,r){var a=t,s=e,l=r;return e<r?e<t&&(a=e,s=r,l=t):r<t&&(a=r,s=t,l=e),a<0?-1:(n[0]=a,n[1]=s,n[2]=l,i.eq(this.cells,n,o))})},{\"binary-search-bounds\":96}],115:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),i=t(\"robust-orientation\")[3];function a(t,e,r,n,i){this.a=t,this.b=e,this.idx=r,this.lowerIds=n,this.upperIds=i}function o(t,e,r,n){this.a=t,this.b=e,this.type=r,this.idx=n}function s(t,e){var r=t.a[0]-e.a[0]||t.a[1]-e.a[1]||t.type-e.type;return r||(0!==t.type&&(r=i(t.a,t.b,e.b))?r:t.idx-e.idx)}function l(t,e){return i(t.a,t.b,e)}function c(t,e,r,a,o){for(var s=n.lt(e,a,l),c=n.gt(e,a,l),u=s;u<c;++u){for(var f=e[u],h=f.lowerIds,p=h.length;p>1&&i(r[h[p-2]],r[h[p-1]],a)>0;)t.push([h[p-1],h[p-2],o]),p-=1;h.length=p,h.push(o);var d=f.upperIds;for(p=d.length;p>1&&i(r[d[p-2]],r[d[p-1]],a)<0;)t.push([d[p-2],d[p-1],o]),p-=1;d.length=p,d.push(o)}}function u(t,e){var r;return(r=t.a[0]<e.a[0]?i(t.a,t.b,e.a):i(e.b,e.a,t.a))?r:(r=e.b[0]<t.b[0]?i(t.a,t.b,e.b):i(e.b,e.a,t.b))||t.idx-e.idx}function f(t,e,r){var i=n.le(t,r,u),o=t[i],s=o.upperIds,l=s[s.length-1];o.upperIds=[l],t.splice(i+1,0,new a(r.a,r.b,r.idx,[l],s))}function h(t,e,r){var i=r.a;r.a=r.b,r.b=i;var a=n.eq(t,r,u),o=t[a];t[a-1].upperIds=o.upperIds,t.splice(a,1)}e.exports=function(t,e){for(var r=t.length,n=e.length,i=[],l=0;l<r;++l)i.push(new o(t[l],null,0,l));for(l=0;l<n;++l){var u=e[l],p=t[u[0]],d=t[u[1]];p[0]<d[0]?i.push(new o(p,d,2,l),new o(d,p,1,l)):p[0]>d[0]&&i.push(new o(d,p,2,l),new o(p,d,1,l))}i.sort(s);for(var g=i[0].a[0]-(1+Math.abs(i[0].a[0]))*Math.pow(2,-52),m=[new a([g,1],[g,0],-1,[],[],[],[])],v=[],y=(l=0,i.length);l<y;++l){var x=i[l],b=x.type;0===b?c(v,m,t,x.a,x.idx):2===b?f(m,t,x):h(m,t,x)}return v}},{\"binary-search-bounds\":96,\"robust-orientation\":548}],116:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\");function i(t,e){this.stars=t,this.edges=e}e.exports=function(t,e){for(var r=new Array(t),n=0;n<t;++n)r[n]=[];return new i(r,e)};var a=i.prototype;function o(t,e,r){for(var n=1,i=t.length;n<i;n+=2)if(t[n-1]===e&&t[n]===r)return t[n-1]=t[i-2],t[n]=t[i-1],void(t.length=i-2)}a.isConstraint=function(){var t=[0,0];function e(t,e){return t[0]-e[0]||t[1]-e[1]}return function(r,i){return t[0]=Math.min(r,i),t[1]=Math.max(r,i),n.eq(this.edges,t,e)>=0}}(),a.removeTriangle=function(t,e,r){var n=this.stars;o(n[t],e,r),o(n[e],r,t),o(n[r],t,e)},a.addTriangle=function(t,e,r){var n=this.stars;n[t].push(e,r),n[e].push(r,t),n[r].push(t,e)},a.opposite=function(t,e){for(var r=this.stars[e],n=1,i=r.length;n<i;n+=2)if(r[n]===t)return r[n-1];return-1},a.flip=function(t,e){var r=this.opposite(t,e),n=this.opposite(e,t);this.removeTriangle(t,e,r),this.removeTriangle(e,t,n),this.addTriangle(t,n,r),this.addTriangle(e,r,n)},a.edges=function(){for(var t=this.stars,e=[],r=0,n=t.length;r<n;++r)for(var i=t[r],a=0,o=i.length;a<o;a+=2)e.push([i[a],i[a+1]]);return e},a.cells=function(){for(var t=this.stars,e=[],r=0,n=t.length;r<n;++r)for(var i=t[r],a=0,o=i.length;a<o;a+=2){var s=i[a],l=i[a+1];r<Math.min(s,l)&&e.push([r,s,l])}return e}},{\"binary-search-bounds\":96}],117:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=1,r=1;r<t.length;++r)for(var n=0;n<r;++n)if(t[r]<t[n])e=-e;else if(t[n]===t[r])return 0;return e}},{}],118:[function(t,e,r){\"use strict\";var n=t(\"dup\"),i=t(\"robust-linear-solve\");function a(t,e){for(var r=0,n=t.length,i=0;i<n;++i)r+=t[i]*e[i];return r}function o(t){var e=t.length;if(0===e)return[];t[0].length;var r=n([t.length+1,t.length+1],1),o=n([t.length+1],1);r[e][e]=0;for(var s=0;s<e;++s){for(var l=0;l<=s;++l)r[l][s]=r[s][l]=2*a(t[s],t[l]);o[s]=a(t[s],t[s])}var c=i(r,o),u=0,f=c[e+1];for(s=0;s<f.length;++s)u+=f[s];var h=new Array(e);for(s=0;s<e;++s){f=c[s];var p=0;for(l=0;l<f.length;++l)p+=f[l];h[s]=p/u}return h}function s(t){if(0===t.length)return[];for(var e=t[0].length,r=n([e]),i=o(t),a=0;a<t.length;++a)for(var s=0;s<e;++s)r[s]+=t[a][s]*i[a];return r}s.barycenetric=o,e.exports=s},{dup:176,\"robust-linear-solve\":547}],119:[function(t,e,r){e.exports=function(t){for(var e=n(t),r=0,i=0;i<t.length;++i)for(var a=t[i],o=0;o<e.length;++o)r+=Math.pow(a[o]-e[o],2);return Math.sqrt(r/t.length)};var n=t(\"circumcenter\")},{circumcenter:118}],120:[function(t,e,r){e.exports=function(t,e,r){return e<r?t<e?e:t>r?r:t:t<r?r:t>e?e:t}},{}],121:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n;if(r){n=e;for(var i=new Array(e.length),a=0;a<e.length;++a){var o=e[a];i[a]=[o[0],o[1],r[a]]}e=i}var s=function(t,e,r){var n=d(t,[],p(t));return v(e,n,r),!!n}(t,e,!!r);for(;y(t,e,!!r);)s=!0;if(r&&s){n.length=0,r.length=0;for(a=0;a<e.length;++a){o=e[a];n.push([o[0],o[1]]),r.push(o[2])}}return s};var n=t(\"union-find\"),i=t(\"box-intersect\"),a=t(\"robust-segment-intersect\"),o=t(\"big-rat\"),s=t(\"big-rat/cmp\"),l=t(\"big-rat/to-float\"),c=t(\"rat-vec\"),u=t(\"nextafter\"),f=t(\"./lib/rat-seg-intersect\");function h(t){var e=l(t);return[u(e,-1/0),u(e,1/0)]}function p(t){for(var e=new Array(t.length),r=0;r<t.length;++r){var n=t[r];e[r]=[u(n[0],-1/0),u(n[1],-1/0),u(n[0],1/0),u(n[1],1/0)]}return e}function d(t,e,r){for(var a=e.length,o=new n(a),s=[],l=0;l<e.length;++l){var c=e[l],f=h(c[0]),p=h(c[1]);s.push([u(f[0],-1/0),u(p[0],-1/0),u(f[1],1/0),u(p[1],1/0)])}i(s,(function(t,e){o.link(t,e)}));var d=!0,g=new Array(a);for(l=0;l<a;++l){(v=o.find(l))!==l&&(d=!1,t[v]=[Math.min(t[l][0],t[v][0]),Math.min(t[l][1],t[v][1])])}if(d)return null;var m=0;for(l=0;l<a;++l){var v;(v=o.find(l))===l?(g[l]=m,t[m++]=t[l]):g[l]=-1}t.length=m;for(l=0;l<a;++l)g[l]<0&&(g[l]=g[o.find(l)]);return g}function g(t,e){return t[0]-e[0]||t[1]-e[1]}function m(t,e){var r=t[0]-e[0]||t[1]-e[1];return r||(t[2]<e[2]?-1:t[2]>e[2]?1:0)}function v(t,e,r){if(0!==t.length){if(e)for(var n=0;n<t.length;++n){var i=e[(o=t[n])[0]],a=e[o[1]];o[0]=Math.min(i,a),o[1]=Math.max(i,a)}else for(n=0;n<t.length;++n){var o;i=(o=t[n])[0],a=o[1];o[0]=Math.min(i,a),o[1]=Math.max(i,a)}r?t.sort(m):t.sort(g);var s=1;for(n=1;n<t.length;++n){var l=t[n-1],c=t[n];(c[0]!==l[0]||c[1]!==l[1]||r&&c[2]!==l[2])&&(t[s++]=c)}t.length=s}}function y(t,e,r){var n=function(t,e){for(var r=new Array(e.length),n=0;n<e.length;++n){var i=e[n],a=t[i[0]],o=t[i[1]];r[n]=[u(Math.min(a[0],o[0]),-1/0),u(Math.min(a[1],o[1]),-1/0),u(Math.max(a[0],o[0]),1/0),u(Math.max(a[1],o[1]),1/0)]}return r}(t,e),h=function(t,e,r){var n=[];return i(r,(function(r,i){var o=e[r],s=e[i];if(o[0]!==s[0]&&o[0]!==s[1]&&o[1]!==s[0]&&o[1]!==s[1]){var l=t[o[0]],c=t[o[1]],u=t[s[0]],f=t[s[1]];a(l,c,u,f)&&n.push([r,i])}})),n}(t,e,n),g=p(t),m=function(t,e,r,n){var o=[];return i(r,n,(function(r,n){var i=e[r];if(i[0]!==n&&i[1]!==n){var s=t[n],l=t[i[0]],c=t[i[1]];a(l,c,s,s)&&o.push([r,n])}})),o}(t,e,n,g),y=d(t,function(t,e,r,n,i){var a,u,h=t.map((function(t){return[o(t[0]),o(t[1])]}));for(a=0;a<r.length;++a){var p=r[a];u=p[0];var d=p[1],g=e[u],m=e[d],v=f(c(t[g[0]]),c(t[g[1]]),c(t[m[0]]),c(t[m[1]]));if(v){var y=t.length;t.push([l(v[0]),l(v[1])]),h.push(v),n.push([u,y],[d,y])}}for(n.sort((function(t,e){if(t[0]!==e[0])return t[0]-e[0];var r=h[t[1]],n=h[e[1]];return s(r[0],n[0])||s(r[1],n[1])})),a=n.length-1;a>=0;--a){var x=e[u=(S=n[a])[0]],b=x[0],_=x[1],w=t[b],T=t[_];if((w[0]-T[0]||w[1]-T[1])<0){var k=b;b=_,_=k}x[0]=b;var M,A=x[1]=S[1];for(i&&(M=x[2]);a>0&&n[a-1][0]===u;){var S,E=(S=n[--a])[1];i?e.push([A,E,M]):e.push([A,E]),A=E}i?e.push([A,_,M]):e.push([A,_])}return h}(t,e,h,m,r));return v(e,y,r),!!y||(h.length>0||m.length>0)}},{\"./lib/rat-seg-intersect\":122,\"big-rat\":83,\"big-rat/cmp\":81,\"big-rat/to-float\":95,\"box-intersect\":101,nextafter:496,\"rat-vec\":530,\"robust-segment-intersect\":551,\"union-find\":596}],122:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var a=s(e,t),f=s(n,r),h=u(a,f);if(0===o(h))return null;var p=s(t,r),d=u(f,p),g=i(d,h),m=c(a,g);return l(t,m)};var n=t(\"big-rat/mul\"),i=t(\"big-rat/div\"),a=t(\"big-rat/sub\"),o=t(\"big-rat/sign\"),s=t(\"rat-vec/sub\"),l=t(\"rat-vec/add\"),c=t(\"rat-vec/muls\");function u(t,e){return a(n(t[0],e[1]),n(t[1],e[0]))}},{\"big-rat/div\":82,\"big-rat/mul\":92,\"big-rat/sign\":93,\"big-rat/sub\":94,\"rat-vec/add\":529,\"rat-vec/muls\":531,\"rat-vec/sub\":532}],123:[function(t,e,r){\"use strict\";var n=t(\"clamp\");function i(t,e){null==e&&(e=!0);var r=t[0],i=t[1],a=t[2],o=t[3];return null==o&&(o=e?1:255),e&&(r*=255,i*=255,a*=255,o*=255),16777216*(r=255&n(r,0,255))+((i=255&n(i,0,255))<<16)+((a=255&n(a,0,255))<<8)+(o=255&n(o,0,255))}e.exports=i,e.exports.to=i,e.exports.from=function(t,e){var r=(t=+t)>>>24,n=(16711680&t)>>>16,i=(65280&t)>>>8,a=255&t;return!1===e?[r,n,i,a]:[r/255,n/255,i/255,a/255]}},{clamp:120}],124:[function(t,e,r){\"use strict\";e.exports={aliceblue:[240,248,255],antiquewhite:[250,235,215],aqua:[0,255,255],aquamarine:[127,255,212],azure:[240,255,255],beige:[245,245,220],bisque:[255,228,196],black:[0,0,0],blanchedalmond:[255,235,205],blue:[0,0,255],blueviolet:[138,43,226],brown:[165,42,42],burlywood:[222,184,135],cadetblue:[95,158,160],chartreuse:[127,255,0],chocolate:[210,105,30],coral:[255,127,80],cornflowerblue:[100,149,237],cornsilk:[255,248,220],crimson:[220,20,60],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgoldenrod:[184,134,11],darkgray:[169,169,169],darkgreen:[0,100,0],darkgrey:[169,169,169],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkseagreen:[143,188,143],darkslateblue:[72,61,139],darkslategray:[47,79,79],darkslategrey:[47,79,79],darkturquoise:[0,206,209],darkviolet:[148,0,211],deeppink:[255,20,147],deepskyblue:[0,191,255],dimgray:[105,105,105],dimgrey:[105,105,105],dodgerblue:[30,144,255],firebrick:[178,34,34],floralwhite:[255,250,240],forestgreen:[34,139,34],fuchsia:[255,0,255],gainsboro:[220,220,220],ghostwhite:[248,248,255],gold:[255,215,0],goldenrod:[218,165,32],gray:[128,128,128],green:[0,128,0],greenyellow:[173,255,47],grey:[128,128,128],honeydew:[240,255,240],hotpink:[255,105,180],indianred:[205,92,92],indigo:[75,0,130],ivory:[255,255,240],khaki:[240,230,140],lavender:[230,230,250],lavenderblush:[255,240,245],lawngreen:[124,252,0],lemonchiffon:[255,250,205],lightblue:[173,216,230],lightcoral:[240,128,128],lightcyan:[224,255,255],lightgoldenrodyellow:[250,250,210],lightgray:[211,211,211],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightsalmon:[255,160,122],lightseagreen:[32,178,170],lightskyblue:[135,206,250],lightslategray:[119,136,153],lightslategrey:[119,136,153],lightsteelblue:[176,196,222],lightyellow:[255,255,224],lime:[0,255,0],limegreen:[50,205,50],linen:[250,240,230],magenta:[255,0,255],maroon:[128,0,0],mediumaquamarine:[102,205,170],mediumblue:[0,0,205],mediumorchid:[186,85,211],mediumpurple:[147,112,219],mediumseagreen:[60,179,113],mediumslateblue:[123,104,238],mediumspringgreen:[0,250,154],mediumturquoise:[72,209,204],mediumvioletred:[199,21,133],midnightblue:[25,25,112],mintcream:[245,255,250],mistyrose:[255,228,225],moccasin:[255,228,181],navajowhite:[255,222,173],navy:[0,0,128],oldlace:[253,245,230],olive:[128,128,0],olivedrab:[107,142,35],orange:[255,165,0],orangered:[255,69,0],orchid:[218,112,214],palegoldenrod:[238,232,170],palegreen:[152,251,152],paleturquoise:[175,238,238],palevioletred:[219,112,147],papayawhip:[255,239,213],peachpuff:[255,218,185],peru:[205,133,63],pink:[255,192,203],plum:[221,160,221],powderblue:[176,224,230],purple:[128,0,128],rebeccapurple:[102,51,153],red:[255,0,0],rosybrown:[188,143,143],royalblue:[65,105,225],saddlebrown:[139,69,19],salmon:[250,128,114],sandybrown:[244,164,96],seagreen:[46,139,87],seashell:[255,245,238],sienna:[160,82,45],silver:[192,192,192],skyblue:[135,206,235],slateblue:[106,90,205],slategray:[112,128,144],slategrey:[112,128,144],snow:[255,250,250],springgreen:[0,255,127],steelblue:[70,130,180],tan:[210,180,140],teal:[0,128,128],thistle:[216,191,216],tomato:[255,99,71],turquoise:[64,224,208],violet:[238,130,238],wheat:[245,222,179],white:[255,255,255],whitesmoke:[245,245,245],yellow:[255,255,0],yellowgreen:[154,205,50]}},{}],125:[function(t,e,r){\"use strict\";var n=t(\"color-rgba\"),i=t(\"clamp\"),a=t(\"dtype\");e.exports=function(t,e){\"float\"!==e&&e||(e=\"array\"),\"uint\"===e&&(e=\"uint8\"),\"uint_clamped\"===e&&(e=\"uint8_clamped\");var r=new(a(e))(4),o=\"uint8\"!==e&&\"uint8_clamped\"!==e;return t.length&&\"string\"!=typeof t||((t=n(t))[0]/=255,t[1]/=255,t[2]/=255),function(t){return t instanceof Uint8Array||t instanceof Uint8ClampedArray||!!(Array.isArray(t)&&(t[0]>1||0===t[0])&&(t[1]>1||0===t[1])&&(t[2]>1||0===t[2])&&(!t[3]||t[3]>1))}(t)?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:255,o&&(r[0]/=255,r[1]/=255,r[2]/=255,r[3]/=255),r):(o?(r[0]=t[0],r[1]=t[1],r[2]=t[2],r[3]=null!=t[3]?t[3]:1):(r[0]=i(Math.floor(255*t[0]),0,255),r[1]=i(Math.floor(255*t[1]),0,255),r[2]=i(Math.floor(255*t[2]),0,255),r[3]=null==t[3]?255:i(Math.floor(255*t[3]),0,255)),r)}},{clamp:120,\"color-rgba\":127,dtype:175}],126:[function(t,e,r){(function(r){(function(){\"use strict\";var n=t(\"color-name\"),i=t(\"is-plain-obj\"),a=t(\"defined\");e.exports=function(t){var e,s,l=[],c=1;if(\"string\"==typeof t)if(n[t])l=n[t].slice(),s=\"rgb\";else if(\"transparent\"===t)c=0,s=\"rgb\",l=[0,0,0];else if(/^#[A-Fa-f0-9]+$/.test(t)){var u=(p=t.slice(1)).length;c=1,u<=4?(l=[parseInt(p[0]+p[0],16),parseInt(p[1]+p[1],16),parseInt(p[2]+p[2],16)],4===u&&(c=parseInt(p[3]+p[3],16)/255)):(l=[parseInt(p[0]+p[1],16),parseInt(p[2]+p[3],16),parseInt(p[4]+p[5],16)],8===u&&(c=parseInt(p[6]+p[7],16)/255)),l[0]||(l[0]=0),l[1]||(l[1]=0),l[2]||(l[2]=0),s=\"rgb\"}else if(e=/^((?:rgb|hs[lvb]|hwb|cmyk?|xy[zy]|gray|lab|lchu?v?|[ly]uv|lms)a?)\\s*\\(([^\\)]*)\\)/.exec(t)){var f=e[1],h=\"rgb\"===f,p=f.replace(/a$/,\"\");s=p;u=\"cmyk\"===p?4:\"gray\"===p?1:3;l=e[2].trim().split(/\\s*,\\s*/).map((function(t,e){if(/%$/.test(t))return e===u?parseFloat(t)/100:\"rgb\"===p?255*parseFloat(t)/100:parseFloat(t);if(\"h\"===p[e]){if(/deg$/.test(t))return parseFloat(t);if(void 0!==o[t])return o[t]}return parseFloat(t)})),f===p&&l.push(1),c=h||void 0===l[u]?1:l[u],l=l.slice(0,u)}else t.length>10&&/[0-9](?:\\s|\\/)/.test(t)&&(l=t.match(/([0-9]+)/g).map((function(t){return parseFloat(t)})),s=t.match(/([a-z])/gi).join(\"\").toLowerCase());else if(isNaN(t))if(i(t)){var d=a(t.r,t.red,t.R,null);null!==d?(s=\"rgb\",l=[d,a(t.g,t.green,t.G),a(t.b,t.blue,t.B)]):(s=\"hsl\",l=[a(t.h,t.hue,t.H),a(t.s,t.saturation,t.S),a(t.l,t.lightness,t.L,t.b,t.brightness)]),c=a(t.a,t.alpha,t.opacity,1),null!=t.opacity&&(c/=100)}else(Array.isArray(t)||r.ArrayBuffer&&ArrayBuffer.isView&&ArrayBuffer.isView(t))&&(l=[t[0],t[1],t[2]],s=\"rgb\",c=4===t.length?t[3]:1);else s=\"rgb\",l=[t>>>16,(65280&t)>>>8,255&t];return{space:s,values:l,alpha:c}};var o={red:0,orange:60,yellow:120,green:180,blue:240,purple:300}}).call(this)}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"color-name\":124,defined:170,\"is-plain-obj\":469}],127:[function(t,e,r){\"use strict\";var n=t(\"color-parse\"),i=t(\"color-space/hsl\"),a=t(\"clamp\");e.exports=function(t){var e,r=n(t);return r.space?((e=Array(3))[0]=a(r.values[0],0,255),e[1]=a(r.values[1],0,255),e[2]=a(r.values[2],0,255),\"h\"===r.space[0]&&(e=i.rgb(e)),e.push(a(r.alpha,0,1)),e):[]}},{clamp:120,\"color-parse\":126,\"color-space/hsl\":128}],128:[function(t,e,r){\"use strict\";var n=t(\"./rgb\");e.exports={name:\"hsl\",min:[0,0,0],max:[360,100,100],channel:[\"hue\",\"saturation\",\"lightness\"],alias:[\"HSL\"],rgb:function(t){var e,r,n,i,a,o=t[0]/360,s=t[1]/100,l=t[2]/100;if(0===s)return[a=255*l,a,a];e=2*l-(r=l<.5?l*(1+s):l+s-l*s),i=[0,0,0];for(var c=0;c<3;c++)(n=o+1/3*-(c-1))<0?n++:n>1&&n--,a=6*n<1?e+6*(r-e)*n:2*n<1?r:3*n<2?e+(r-e)*(2/3-n)*6:e,i[c]=255*a;return i}},n.hsl=function(t){var e,r,n=t[0]/255,i=t[1]/255,a=t[2]/255,o=Math.min(n,i,a),s=Math.max(n,i,a),l=s-o;return s===o?e=0:n===s?e=(i-a)/l:i===s?e=2+(a-n)/l:a===s&&(e=4+(n-i)/l),(e=Math.min(60*e,360))<0&&(e+=360),r=(o+s)/2,[e,100*(s===o?0:r<=.5?l/(s+o):l/(2-s-o)),100*r]}},{\"./rgb\":129}],129:[function(t,e,r){\"use strict\";e.exports={name:\"rgb\",min:[0,0,0],max:[255,255,255],channel:[\"red\",\"green\",\"blue\"],alias:[\"RGB\"]}},{}],130:[function(t,e,r){e.exports={jet:[{index:0,rgb:[0,0,131]},{index:.125,rgb:[0,60,170]},{index:.375,rgb:[5,255,255]},{index:.625,rgb:[255,255,0]},{index:.875,rgb:[250,0,0]},{index:1,rgb:[128,0,0]}],hsv:[{index:0,rgb:[255,0,0]},{index:.169,rgb:[253,255,2]},{index:.173,rgb:[247,255,2]},{index:.337,rgb:[0,252,4]},{index:.341,rgb:[0,252,10]},{index:.506,rgb:[1,249,255]},{index:.671,rgb:[2,0,253]},{index:.675,rgb:[8,0,253]},{index:.839,rgb:[255,0,251]},{index:.843,rgb:[255,0,245]},{index:1,rgb:[255,0,6]}],hot:[{index:0,rgb:[0,0,0]},{index:.3,rgb:[230,0,0]},{index:.6,rgb:[255,210,0]},{index:1,rgb:[255,255,255]}],cool:[{index:0,rgb:[0,255,255]},{index:1,rgb:[255,0,255]}],spring:[{index:0,rgb:[255,0,255]},{index:1,rgb:[255,255,0]}],summer:[{index:0,rgb:[0,128,102]},{index:1,rgb:[255,255,102]}],autumn:[{index:0,rgb:[255,0,0]},{index:1,rgb:[255,255,0]}],winter:[{index:0,rgb:[0,0,255]},{index:1,rgb:[0,255,128]}],bone:[{index:0,rgb:[0,0,0]},{index:.376,rgb:[84,84,116]},{index:.753,rgb:[169,200,200]},{index:1,rgb:[255,255,255]}],copper:[{index:0,rgb:[0,0,0]},{index:.804,rgb:[255,160,102]},{index:1,rgb:[255,199,127]}],greys:[{index:0,rgb:[0,0,0]},{index:1,rgb:[255,255,255]}],yignbu:[{index:0,rgb:[8,29,88]},{index:.125,rgb:[37,52,148]},{index:.25,rgb:[34,94,168]},{index:.375,rgb:[29,145,192]},{index:.5,rgb:[65,182,196]},{index:.625,rgb:[127,205,187]},{index:.75,rgb:[199,233,180]},{index:.875,rgb:[237,248,217]},{index:1,rgb:[255,255,217]}],greens:[{index:0,rgb:[0,68,27]},{index:.125,rgb:[0,109,44]},{index:.25,rgb:[35,139,69]},{index:.375,rgb:[65,171,93]},{index:.5,rgb:[116,196,118]},{index:.625,rgb:[161,217,155]},{index:.75,rgb:[199,233,192]},{index:.875,rgb:[229,245,224]},{index:1,rgb:[247,252,245]}],yiorrd:[{index:0,rgb:[128,0,38]},{index:.125,rgb:[189,0,38]},{index:.25,rgb:[227,26,28]},{index:.375,rgb:[252,78,42]},{index:.5,rgb:[253,141,60]},{index:.625,rgb:[254,178,76]},{index:.75,rgb:[254,217,118]},{index:.875,rgb:[255,237,160]},{index:1,rgb:[255,255,204]}],bluered:[{index:0,rgb:[0,0,255]},{index:1,rgb:[255,0,0]}],rdbu:[{index:0,rgb:[5,10,172]},{index:.35,rgb:[106,137,247]},{index:.5,rgb:[190,190,190]},{index:.6,rgb:[220,170,132]},{index:.7,rgb:[230,145,90]},{index:1,rgb:[178,10,28]}],picnic:[{index:0,rgb:[0,0,255]},{index:.1,rgb:[51,153,255]},{index:.2,rgb:[102,204,255]},{index:.3,rgb:[153,204,255]},{index:.4,rgb:[204,204,255]},{index:.5,rgb:[255,255,255]},{index:.6,rgb:[255,204,255]},{index:.7,rgb:[255,153,255]},{index:.8,rgb:[255,102,204]},{index:.9,rgb:[255,102,102]},{index:1,rgb:[255,0,0]}],rainbow:[{index:0,rgb:[150,0,90]},{index:.125,rgb:[0,0,200]},{index:.25,rgb:[0,25,255]},{index:.375,rgb:[0,152,255]},{index:.5,rgb:[44,255,150]},{index:.625,rgb:[151,255,0]},{index:.75,rgb:[255,234,0]},{index:.875,rgb:[255,111,0]},{index:1,rgb:[255,0,0]}],portland:[{index:0,rgb:[12,51,131]},{index:.25,rgb:[10,136,186]},{index:.5,rgb:[242,211,56]},{index:.75,rgb:[242,143,56]},{index:1,rgb:[217,30,30]}],blackbody:[{index:0,rgb:[0,0,0]},{index:.2,rgb:[230,0,0]},{index:.4,rgb:[230,210,0]},{index:.7,rgb:[255,255,255]},{index:1,rgb:[160,200,255]}],earth:[{index:0,rgb:[0,0,130]},{index:.1,rgb:[0,180,180]},{index:.2,rgb:[40,210,40]},{index:.4,rgb:[230,230,50]},{index:.6,rgb:[120,70,20]},{index:1,rgb:[255,255,255]}],electric:[{index:0,rgb:[0,0,0]},{index:.15,rgb:[30,0,100]},{index:.4,rgb:[120,0,100]},{index:.6,rgb:[160,90,0]},{index:.8,rgb:[230,200,0]},{index:1,rgb:[255,250,220]}],alpha:[{index:0,rgb:[255,255,255,0]},{index:1,rgb:[255,255,255,1]}],viridis:[{index:0,rgb:[68,1,84]},{index:.13,rgb:[71,44,122]},{index:.25,rgb:[59,81,139]},{index:.38,rgb:[44,113,142]},{index:.5,rgb:[33,144,141]},{index:.63,rgb:[39,173,129]},{index:.75,rgb:[92,200,99]},{index:.88,rgb:[170,220,50]},{index:1,rgb:[253,231,37]}],inferno:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[31,12,72]},{index:.25,rgb:[85,15,109]},{index:.38,rgb:[136,34,106]},{index:.5,rgb:[186,54,85]},{index:.63,rgb:[227,89,51]},{index:.75,rgb:[249,140,10]},{index:.88,rgb:[249,201,50]},{index:1,rgb:[252,255,164]}],magma:[{index:0,rgb:[0,0,4]},{index:.13,rgb:[28,16,68]},{index:.25,rgb:[79,18,123]},{index:.38,rgb:[129,37,129]},{index:.5,rgb:[181,54,122]},{index:.63,rgb:[229,80,100]},{index:.75,rgb:[251,135,97]},{index:.88,rgb:[254,194,135]},{index:1,rgb:[252,253,191]}],plasma:[{index:0,rgb:[13,8,135]},{index:.13,rgb:[75,3,161]},{index:.25,rgb:[125,3,168]},{index:.38,rgb:[168,34,150]},{index:.5,rgb:[203,70,121]},{index:.63,rgb:[229,107,93]},{index:.75,rgb:[248,148,65]},{index:.88,rgb:[253,195,40]},{index:1,rgb:[240,249,33]}],warm:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[172,0,187]},{index:.25,rgb:[219,0,170]},{index:.38,rgb:[255,0,130]},{index:.5,rgb:[255,63,74]},{index:.63,rgb:[255,123,0]},{index:.75,rgb:[234,176,0]},{index:.88,rgb:[190,228,0]},{index:1,rgb:[147,255,0]}],cool:[{index:0,rgb:[125,0,179]},{index:.13,rgb:[116,0,218]},{index:.25,rgb:[98,74,237]},{index:.38,rgb:[68,146,231]},{index:.5,rgb:[0,204,197]},{index:.63,rgb:[0,247,146]},{index:.75,rgb:[0,255,88]},{index:.88,rgb:[40,255,8]},{index:1,rgb:[147,255,0]}],\"rainbow-soft\":[{index:0,rgb:[125,0,179]},{index:.1,rgb:[199,0,180]},{index:.2,rgb:[255,0,121]},{index:.3,rgb:[255,108,0]},{index:.4,rgb:[222,194,0]},{index:.5,rgb:[150,255,0]},{index:.6,rgb:[0,255,55]},{index:.7,rgb:[0,246,150]},{index:.8,rgb:[50,167,222]},{index:.9,rgb:[103,51,235]},{index:1,rgb:[124,0,186]}],bathymetry:[{index:0,rgb:[40,26,44]},{index:.13,rgb:[59,49,90]},{index:.25,rgb:[64,76,139]},{index:.38,rgb:[63,110,151]},{index:.5,rgb:[72,142,158]},{index:.63,rgb:[85,174,163]},{index:.75,rgb:[120,206,163]},{index:.88,rgb:[187,230,172]},{index:1,rgb:[253,254,204]}],cdom:[{index:0,rgb:[47,15,62]},{index:.13,rgb:[87,23,86]},{index:.25,rgb:[130,28,99]},{index:.38,rgb:[171,41,96]},{index:.5,rgb:[206,67,86]},{index:.63,rgb:[230,106,84]},{index:.75,rgb:[242,149,103]},{index:.88,rgb:[249,193,135]},{index:1,rgb:[254,237,176]}],chlorophyll:[{index:0,rgb:[18,36,20]},{index:.13,rgb:[25,63,41]},{index:.25,rgb:[24,91,59]},{index:.38,rgb:[13,119,72]},{index:.5,rgb:[18,148,80]},{index:.63,rgb:[80,173,89]},{index:.75,rgb:[132,196,122]},{index:.88,rgb:[175,221,162]},{index:1,rgb:[215,249,208]}],density:[{index:0,rgb:[54,14,36]},{index:.13,rgb:[89,23,80]},{index:.25,rgb:[110,45,132]},{index:.38,rgb:[120,77,178]},{index:.5,rgb:[120,113,213]},{index:.63,rgb:[115,151,228]},{index:.75,rgb:[134,185,227]},{index:.88,rgb:[177,214,227]},{index:1,rgb:[230,241,241]}],\"freesurface-blue\":[{index:0,rgb:[30,4,110]},{index:.13,rgb:[47,14,176]},{index:.25,rgb:[41,45,236]},{index:.38,rgb:[25,99,212]},{index:.5,rgb:[68,131,200]},{index:.63,rgb:[114,156,197]},{index:.75,rgb:[157,181,203]},{index:.88,rgb:[200,208,216]},{index:1,rgb:[241,237,236]}],\"freesurface-red\":[{index:0,rgb:[60,9,18]},{index:.13,rgb:[100,17,27]},{index:.25,rgb:[142,20,29]},{index:.38,rgb:[177,43,27]},{index:.5,rgb:[192,87,63]},{index:.63,rgb:[205,125,105]},{index:.75,rgb:[216,162,148]},{index:.88,rgb:[227,199,193]},{index:1,rgb:[241,237,236]}],oxygen:[{index:0,rgb:[64,5,5]},{index:.13,rgb:[106,6,15]},{index:.25,rgb:[144,26,7]},{index:.38,rgb:[168,64,3]},{index:.5,rgb:[188,100,4]},{index:.63,rgb:[206,136,11]},{index:.75,rgb:[220,174,25]},{index:.88,rgb:[231,215,44]},{index:1,rgb:[248,254,105]}],par:[{index:0,rgb:[51,20,24]},{index:.13,rgb:[90,32,35]},{index:.25,rgb:[129,44,34]},{index:.38,rgb:[159,68,25]},{index:.5,rgb:[182,99,19]},{index:.63,rgb:[199,134,22]},{index:.75,rgb:[212,171,35]},{index:.88,rgb:[221,210,54]},{index:1,rgb:[225,253,75]}],phase:[{index:0,rgb:[145,105,18]},{index:.13,rgb:[184,71,38]},{index:.25,rgb:[186,58,115]},{index:.38,rgb:[160,71,185]},{index:.5,rgb:[110,97,218]},{index:.63,rgb:[50,123,164]},{index:.75,rgb:[31,131,110]},{index:.88,rgb:[77,129,34]},{index:1,rgb:[145,105,18]}],salinity:[{index:0,rgb:[42,24,108]},{index:.13,rgb:[33,50,162]},{index:.25,rgb:[15,90,145]},{index:.38,rgb:[40,118,137]},{index:.5,rgb:[59,146,135]},{index:.63,rgb:[79,175,126]},{index:.75,rgb:[120,203,104]},{index:.88,rgb:[193,221,100]},{index:1,rgb:[253,239,154]}],temperature:[{index:0,rgb:[4,35,51]},{index:.13,rgb:[23,51,122]},{index:.25,rgb:[85,59,157]},{index:.38,rgb:[129,79,143]},{index:.5,rgb:[175,95,130]},{index:.63,rgb:[222,112,101]},{index:.75,rgb:[249,146,66]},{index:.88,rgb:[249,196,65]},{index:1,rgb:[232,250,91]}],turbidity:[{index:0,rgb:[34,31,27]},{index:.13,rgb:[65,50,41]},{index:.25,rgb:[98,69,52]},{index:.38,rgb:[131,89,57]},{index:.5,rgb:[161,112,59]},{index:.63,rgb:[185,140,66]},{index:.75,rgb:[202,174,88]},{index:.88,rgb:[216,209,126]},{index:1,rgb:[233,246,171]}],\"velocity-blue\":[{index:0,rgb:[17,32,64]},{index:.13,rgb:[35,52,116]},{index:.25,rgb:[29,81,156]},{index:.38,rgb:[31,113,162]},{index:.5,rgb:[50,144,169]},{index:.63,rgb:[87,173,176]},{index:.75,rgb:[149,196,189]},{index:.88,rgb:[203,221,211]},{index:1,rgb:[254,251,230]}],\"velocity-green\":[{index:0,rgb:[23,35,19]},{index:.13,rgb:[24,64,38]},{index:.25,rgb:[11,95,45]},{index:.38,rgb:[39,123,35]},{index:.5,rgb:[95,146,12]},{index:.63,rgb:[152,165,18]},{index:.75,rgb:[201,186,69]},{index:.88,rgb:[233,216,137]},{index:1,rgb:[255,253,205]}],cubehelix:[{index:0,rgb:[0,0,0]},{index:.07,rgb:[22,5,59]},{index:.13,rgb:[60,4,105]},{index:.2,rgb:[109,1,135]},{index:.27,rgb:[161,0,147]},{index:.33,rgb:[210,2,142]},{index:.4,rgb:[251,11,123]},{index:.47,rgb:[255,29,97]},{index:.53,rgb:[255,54,69]},{index:.6,rgb:[255,85,46]},{index:.67,rgb:[255,120,34]},{index:.73,rgb:[255,157,37]},{index:.8,rgb:[241,191,57]},{index:.87,rgb:[224,220,93]},{index:.93,rgb:[218,241,142]},{index:1,rgb:[227,253,198]}]}},{}],131:[function(t,e,r){\"use strict\";var n=t(\"./colorScale\"),i=t(\"lerp\");function a(t){return[t[0]/255,t[1]/255,t[2]/255,t[3]]}function o(t){for(var e,r=\"#\",n=0;n<3;++n)r+=(\"00\"+(e=(e=t[n]).toString(16))).substr(e.length);return r}function s(t){return\"rgba(\"+t.join(\",\")+\")\"}e.exports=function(t){var e,r,l,c,u,f,h,p,d,g;t||(t={});p=(t.nshades||72)-1,h=t.format||\"hex\",(f=t.colormap)||(f=\"jet\");if(\"string\"==typeof f){if(f=f.toLowerCase(),!n[f])throw Error(f+\" not a supported colorscale\");u=n[f]}else{if(!Array.isArray(f))throw Error(\"unsupported colormap option\",f);u=f.slice()}if(u.length>p+1)throw new Error(f+\" map requires nshades to be at least size \"+u.length);d=Array.isArray(t.alpha)?2!==t.alpha.length?[1,1]:t.alpha.slice():\"number\"==typeof t.alpha?[t.alpha,t.alpha]:[1,1];e=u.map((function(t){return Math.round(t.index*p)})),d[0]=Math.min(Math.max(d[0],0),1),d[1]=Math.min(Math.max(d[1],0),1);var m=u.map((function(t,e){var r=u[e].index,n=u[e].rgb.slice();return 4===n.length&&n[3]>=0&&n[3]<=1||(n[3]=d[0]+(d[1]-d[0])*r),n})),v=[];for(g=0;g<e.length-1;++g){c=e[g+1]-e[g],r=m[g],l=m[g+1];for(var y=0;y<c;y++){var x=y/c;v.push([Math.round(i(r[0],l[0],x)),Math.round(i(r[1],l[1],x)),Math.round(i(r[2],l[2],x)),i(r[3],l[3],x)])}}v.push(u[u.length-1].rgb.concat(d[1])),\"hex\"===h?v=v.map(o):\"rgbaString\"===h?v=v.map(s):\"float\"===h&&(v=v.map(a));return v}},{\"./colorScale\":130,lerp:472}],132:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,a){var o=n(e,r,a);if(0===o){var s=i(n(t,e,r)),c=i(n(t,e,a));if(s===c){if(0===s){var u=l(t,e,r),f=l(t,e,a);return u===f?0:u?1:-1}return 0}return 0===c?s>0||l(t,e,a)?-1:1:0===s?c>0||l(t,e,r)?1:-1:i(c-s)}var h=n(t,e,r);return h>0?o>0&&n(t,e,a)>0?1:-1:h<0?o>0||n(t,e,a)>0?1:-1:n(t,e,a)>0||l(t,e,r)?1:-1};var n=t(\"robust-orientation\"),i=t(\"signum\"),a=t(\"two-sum\"),o=t(\"robust-product\"),s=t(\"robust-sum\");function l(t,e,r){var n=a(t[0],-e[0]),i=a(t[1],-e[1]),l=a(r[0],-e[0]),c=a(r[1],-e[1]),u=s(o(n,l),o(i,c));return u[u.length-1]>=0}},{\"robust-orientation\":548,\"robust-product\":549,\"robust-sum\":553,signum:554,\"two-sum\":583}],133:[function(t,e,r){e.exports=function(t,e){var r=t.length,a=t.length-e.length;if(a)return a;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return t[0]+t[1]-e[0]-e[1]||n(t[0],t[1])-n(e[0],e[1]);case 3:var o=t[0]+t[1],s=e[0]+e[1];if(a=o+t[2]-(s+e[2]))return a;var l=n(t[0],t[1]),c=n(e[0],e[1]);return n(l,t[2])-n(c,e[2])||n(l+t[2],o)-n(c+e[2],s);case 4:var u=t[0],f=t[1],h=t[2],p=t[3],d=e[0],g=e[1],m=e[2],v=e[3];return u+f+h+p-(d+g+m+v)||n(u,f,h,p)-n(d,g,m,v,d)||n(u+f,u+h,u+p,f+h,f+p,h+p)-n(d+g,d+m,d+v,g+m,g+v,m+v)||n(u+f+h,u+f+p,u+h+p,f+h+p)-n(d+g+m,d+g+v,d+m+v,g+m+v);default:for(var y=t.slice().sort(i),x=e.slice().sort(i),b=0;b<r;++b)if(a=y[b]-x[b])return a;return 0}};var n=Math.min;function i(t,e){return t-e}},{}],134:[function(t,e,r){\"use strict\";var n=t(\"compare-cell\"),i=t(\"cell-orientation\");e.exports=function(t,e){return n(t,e)||i(t)-i(e)}},{\"cell-orientation\":117,\"compare-cell\":133}],135:[function(t,e,r){\"use strict\";var n=t(\"./lib/ch1d\"),i=t(\"./lib/ch2d\"),a=t(\"./lib/chnd\");e.exports=function(t){var e=t.length;if(0===e)return[];if(1===e)return[[0]];var r=t[0].length;if(0===r)return[];if(1===r)return n(t);if(2===r)return i(t);return a(t,r)}},{\"./lib/ch1d\":136,\"./lib/ch2d\":137,\"./lib/chnd\":138}],136:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=0,r=0,n=1;n<t.length;++n)t[n][0]<t[e][0]&&(e=n),t[n][0]>t[r][0]&&(r=n);return e<r?[[e],[r]]:e>r?[[r],[e]]:[[e]]}},{}],137:[function(t,e,r){\"use strict\";e.exports=function(t){var e=n(t),r=e.length;if(r<=2)return[];for(var i=new Array(r),a=e[r-1],o=0;o<r;++o){var s=e[o];i[o]=[a,s],a=s}return i};var n=t(\"monotone-convex-hull-2d\")},{\"monotone-convex-hull-2d\":482}],138:[function(t,e,r){\"use strict\";e.exports=function(t,e){try{return n(t,!0)}catch(o){var r=i(t);if(r.length<=e)return[];var a=function(t,e){for(var r=t.length,n=new Array(r),i=0;i<e.length;++i)n[i]=t[e[i]];var a=e.length;for(i=0;i<r;++i)e.indexOf(i)<0&&(n[a++]=t[i]);return n}(t,r);return function(t,e){for(var r=t.length,n=e.length,i=0;i<r;++i)for(var a=t[i],o=0;o<a.length;++o){var s=a[o];if(s<n)a[o]=e[s];else{s-=n;for(var l=0;l<n;++l)s>=e[l]&&(s+=1);a[o]=s}}return t}(n(a,!0),r)}};var n=t(\"incremental-convex-hull\"),i=t(\"affine-hull\")},{\"affine-hull\":67,\"incremental-convex-hull\":459}],139:[function(t,e,r){e.exports={AFG:\"afghan\",ALA:\"\\\\b\\\\wland\",ALB:\"albania\",DZA:\"algeria\",ASM:\"^(?=.*americ).*samoa\",AND:\"andorra\",AGO:\"angola\",AIA:\"anguill?a\",ATA:\"antarctica\",ATG:\"antigua\",ARG:\"argentin\",ARM:\"armenia\",ABW:\"^(?!.*bonaire).*\\\\baruba\",AUS:\"australia\",AUT:\"^(?!.*hungary).*austria|\\\\baustri.*\\\\bemp\",AZE:\"azerbaijan\",BHS:\"bahamas\",BHR:\"bahrain\",BGD:\"bangladesh|^(?=.*east).*paki?stan\",BRB:\"barbados\",BLR:\"belarus|byelo\",BEL:\"^(?!.*luxem).*belgium\",BLZ:\"belize|^(?=.*british).*honduras\",BEN:\"benin|dahome\",BMU:\"bermuda\",BTN:\"bhutan\",BOL:\"bolivia\",BES:\"^(?=.*bonaire).*eustatius|^(?=.*carib).*netherlands|\\\\bbes.?islands\",BIH:\"herzegovina|bosnia\",BWA:\"botswana|bechuana\",BVT:\"bouvet\",BRA:\"brazil\",IOT:\"british.?indian.?ocean\",BRN:\"brunei\",BGR:\"bulgaria\",BFA:\"burkina|\\\\bfaso|upper.?volta\",BDI:\"burundi\",CPV:\"verde\",KHM:\"cambodia|kampuchea|khmer\",CMR:\"cameroon\",CAN:\"canada\",CYM:\"cayman\",CAF:\"\\\\bcentral.african.republic\",TCD:\"\\\\bchad\",CHL:\"\\\\bchile\",CHN:\"^(?!.*\\\\bmac)(?!.*\\\\bhong)(?!.*\\\\btai)(?!.*\\\\brep).*china|^(?=.*peo)(?=.*rep).*china\",CXR:\"christmas\",CCK:\"\\\\bcocos|keeling\",COL:\"colombia\",COM:\"comoro\",COG:\"^(?!.*\\\\bdem)(?!.*\\\\bd[\\\\.]?r)(?!.*kinshasa)(?!.*zaire)(?!.*belg)(?!.*l.opoldville)(?!.*free).*\\\\bcongo\",COK:\"\\\\bcook\",CRI:\"costa.?rica\",CIV:\"ivoire|ivory\",HRV:\"croatia\",CUB:\"\\\\bcuba\",CUW:\"^(?!.*bonaire).*\\\\bcura(c|\\xe7)ao\",CYP:\"cyprus\",CSK:\"czechoslovakia\",CZE:\"^(?=.*rep).*czech|czechia|bohemia\",COD:\"\\\\bdem.*congo|congo.*\\\\bdem|congo.*\\\\bd[\\\\.]?r|\\\\bd[\\\\.]?r.*congo|belgian.?congo|congo.?free.?state|kinshasa|zaire|l.opoldville|drc|droc|rdc\",DNK:\"denmark\",DJI:\"djibouti\",DMA:\"dominica(?!n)\",DOM:\"dominican.rep\",ECU:\"ecuador\",EGY:\"egypt\",SLV:\"el.?salvador\",GNQ:\"guine.*eq|eq.*guine|^(?=.*span).*guinea\",ERI:\"eritrea\",EST:\"estonia\",ETH:\"ethiopia|abyssinia\",FLK:\"falkland|malvinas\",FRO:\"faroe|faeroe\",FJI:\"fiji\",FIN:\"finland\",FRA:\"^(?!.*\\\\bdep)(?!.*martinique).*france|french.?republic|\\\\bgaul\",GUF:\"^(?=.*french).*guiana\",PYF:\"french.?polynesia|tahiti\",ATF:\"french.?southern\",GAB:\"gabon\",GMB:\"gambia\",GEO:\"^(?!.*south).*georgia\",DDR:\"german.?democratic.?republic|democratic.?republic.*germany|east.germany\",DEU:\"^(?!.*east).*germany|^(?=.*\\\\bfed.*\\\\brep).*german\",GHA:\"ghana|gold.?coast\",GIB:\"gibraltar\",GRC:\"greece|hellenic|hellas\",GRL:\"greenland\",GRD:\"grenada\",GLP:\"guadeloupe\",GUM:\"\\\\bguam\",GTM:\"guatemala\",GGY:\"guernsey\",GIN:\"^(?!.*eq)(?!.*span)(?!.*bissau)(?!.*portu)(?!.*new).*guinea\",GNB:\"bissau|^(?=.*portu).*guinea\",GUY:\"guyana|british.?guiana\",HTI:\"haiti\",HMD:\"heard.*mcdonald\",VAT:\"holy.?see|vatican|papal.?st\",HND:\"^(?!.*brit).*honduras\",HKG:\"hong.?kong\",HUN:\"^(?!.*austr).*hungary\",ISL:\"iceland\",IND:\"india(?!.*ocea)\",IDN:\"indonesia\",IRN:\"\\\\biran|persia\",IRQ:\"\\\\biraq|mesopotamia\",IRL:\"(^ireland)|(^republic.*ireland)\",IMN:\"^(?=.*isle).*\\\\bman\",ISR:\"israel\",ITA:\"italy\",JAM:\"jamaica\",JPN:\"japan\",JEY:\"jersey\",JOR:\"jordan\",KAZ:\"kazak\",KEN:\"kenya|british.?east.?africa|east.?africa.?prot\",KIR:\"kiribati\",PRK:\"^(?=.*democrat|people|north|d.*p.*.r).*\\\\bkorea|dprk|korea.*(d.*p.*r)\",KWT:\"kuwait\",KGZ:\"kyrgyz|kirghiz\",LAO:\"\\\\blaos?\\\\b\",LVA:\"latvia\",LBN:\"lebanon\",LSO:\"lesotho|basuto\",LBR:\"liberia\",LBY:\"libya\",LIE:\"liechtenstein\",LTU:\"lithuania\",LUX:\"^(?!.*belg).*luxem\",MAC:\"maca(o|u)\",MDG:\"madagascar|malagasy\",MWI:\"malawi|nyasa\",MYS:\"malaysia\",MDV:\"maldive\",MLI:\"\\\\bmali\\\\b\",MLT:\"\\\\bmalta\",MHL:\"marshall\",MTQ:\"martinique\",MRT:\"mauritania\",MUS:\"mauritius\",MYT:\"\\\\bmayotte\",MEX:\"\\\\bmexic\",FSM:\"fed.*micronesia|micronesia.*fed\",MCO:\"monaco\",MNG:\"mongolia\",MNE:\"^(?!.*serbia).*montenegro\",MSR:\"montserrat\",MAR:\"morocco|\\\\bmaroc\",MOZ:\"mozambique\",MMR:\"myanmar|burma\",NAM:\"namibia\",NRU:\"nauru\",NPL:\"nepal\",NLD:\"^(?!.*\\\\bant)(?!.*\\\\bcarib).*netherlands\",ANT:\"^(?=.*\\\\bant).*(nether|dutch)\",NCL:\"new.?caledonia\",NZL:\"new.?zealand\",NIC:\"nicaragua\",NER:\"\\\\bniger(?!ia)\",NGA:\"nigeria\",NIU:\"niue\",NFK:\"norfolk\",MNP:\"mariana\",NOR:\"norway\",OMN:\"\\\\boman|trucial\",PAK:\"^(?!.*east).*paki?stan\",PLW:\"palau\",PSE:\"palestin|\\\\bgaza|west.?bank\",PAN:\"panama\",PNG:\"papua|new.?guinea\",PRY:\"paraguay\",PER:\"peru\",PHL:\"philippines\",PCN:\"pitcairn\",POL:\"poland\",PRT:\"portugal\",PRI:\"puerto.?rico\",QAT:\"qatar\",KOR:\"^(?!.*d.*p.*r)(?!.*democrat)(?!.*people)(?!.*north).*\\\\bkorea(?!.*d.*p.*r)\",MDA:\"moldov|b(a|e)ssarabia\",REU:\"r(e|\\xe9)union\",ROU:\"r(o|u|ou)mania\",RUS:\"\\\\brussia|soviet.?union|u\\\\.?s\\\\.?s\\\\.?r|socialist.?republics\",RWA:\"rwanda\",BLM:\"barth(e|\\xe9)lemy\",SHN:\"helena\",KNA:\"kitts|\\\\bnevis\",LCA:\"\\\\blucia\",MAF:\"^(?=.*collectivity).*martin|^(?=.*france).*martin(?!ique)|^(?=.*french).*martin(?!ique)\",SPM:\"miquelon\",VCT:\"vincent\",WSM:\"^(?!.*amer).*samoa\",SMR:\"san.?marino\",STP:\"\\\\bs(a|\\xe3)o.?tom(e|\\xe9)\",SAU:\"\\\\bsa\\\\w*.?arabia\",SEN:\"senegal\",SRB:\"^(?!.*monte).*serbia\",SYC:\"seychell\",SLE:\"sierra\",SGP:\"singapore\",SXM:\"^(?!.*martin)(?!.*saba).*maarten\",SVK:\"^(?!.*cze).*slovak\",SVN:\"slovenia\",SLB:\"solomon\",SOM:\"somali\",ZAF:\"south.africa|s\\\\\\\\..?africa\",SGS:\"south.?georgia|sandwich\",SSD:\"\\\\bs\\\\w*.?sudan\",ESP:\"spain\",LKA:\"sri.?lanka|ceylon\",SDN:\"^(?!.*\\\\bs(?!u)).*sudan\",SUR:\"surinam|dutch.?guiana\",SJM:\"svalbard\",SWZ:\"swaziland\",SWE:\"sweden\",CHE:\"switz|swiss\",SYR:\"syria\",TWN:\"taiwan|taipei|formosa|^(?!.*peo)(?=.*rep).*china\",TJK:\"tajik\",THA:\"thailand|\\\\bsiam\",MKD:\"macedonia|fyrom\",TLS:\"^(?=.*leste).*timor|^(?=.*east).*timor\",TGO:\"togo\",TKL:\"tokelau\",TON:\"tonga\",TTO:\"trinidad|tobago\",TUN:\"tunisia\",TUR:\"turkey\",TKM:\"turkmen\",TCA:\"turks\",TUV:\"tuvalu\",UGA:\"uganda\",UKR:\"ukrain\",ARE:\"emirates|^u\\\\.?a\\\\.?e\\\\.?$|united.?arab.?em\",GBR:\"united.?kingdom|britain|^u\\\\.?k\\\\.?$\",TZA:\"tanzania\",USA:\"united.?states\\\\b(?!.*islands)|\\\\bu\\\\.?s\\\\.?a\\\\.?\\\\b|^\\\\s*u\\\\.?s\\\\.?\\\\b(?!.*islands)\",UMI:\"minor.?outlying.?is\",URY:\"uruguay\",UZB:\"uzbek\",VUT:\"vanuatu|new.?hebrides\",VEN:\"venezuela\",VNM:\"^(?!.*republic).*viet.?nam|^(?=.*socialist).*viet.?nam\",VGB:\"^(?=.*\\\\bu\\\\.?\\\\s?k).*virgin|^(?=.*brit).*virgin|^(?=.*kingdom).*virgin\",VIR:\"^(?=.*\\\\bu\\\\.?\\\\s?s).*virgin|^(?=.*states).*virgin\",WLF:\"futuna|wallis\",ESH:\"western.sahara\",YEM:\"^(?!.*arab)(?!.*north)(?!.*sana)(?!.*peo)(?!.*dem)(?!.*south)(?!.*aden)(?!.*\\\\bp\\\\.?d\\\\.?r).*yemen\",YMD:\"^(?=.*peo).*yemen|^(?!.*rep)(?=.*dem).*yemen|^(?=.*south).*yemen|^(?=.*aden).*yemen|^(?=.*\\\\bp\\\\.?d\\\\.?r).*yemen\",YUG:\"yugoslavia\",ZMB:\"zambia|northern.?rhodesia\",EAZ:\"zanzibar\",ZWE:\"zimbabwe|^(?!.*northern).*rhodesia\"}},{}],140:[function(t,e,r){e.exports=[\"xx-small\",\"x-small\",\"small\",\"medium\",\"large\",\"x-large\",\"xx-large\",\"larger\",\"smaller\"]},{}],141:[function(t,e,r){e.exports=[\"normal\",\"condensed\",\"semi-condensed\",\"extra-condensed\",\"ultra-condensed\",\"expanded\",\"semi-expanded\",\"extra-expanded\",\"ultra-expanded\"]},{}],142:[function(t,e,r){e.exports=[\"normal\",\"italic\",\"oblique\"]},{}],143:[function(t,e,r){e.exports=[\"normal\",\"bold\",\"bolder\",\"lighter\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"]},{}],144:[function(t,e,r){\"use strict\";e.exports={parse:t(\"./parse\"),stringify:t(\"./stringify\")}},{\"./parse\":146,\"./stringify\":147}],145:[function(t,e,r){\"use strict\";var n=t(\"css-font-size-keywords\");e.exports={isSize:function(t){return/^[\\d\\.]/.test(t)||-1!==t.indexOf(\"/\")||-1!==n.indexOf(t)}}},{\"css-font-size-keywords\":140}],146:[function(t,e,r){\"use strict\";var n=t(\"unquote\"),i=t(\"css-global-keywords\"),a=t(\"css-system-font-keywords\"),o=t(\"css-font-weight-keywords\"),s=t(\"css-font-style-keywords\"),l=t(\"css-font-stretch-keywords\"),c=t(\"string-split-by\"),u=t(\"./lib/util\").isSize;e.exports=h;var f=h.cache={};function h(t){if(\"string\"!=typeof t)throw new Error(\"Font argument must be a string.\");if(f[t])return f[t];if(\"\"===t)throw new Error(\"Cannot parse an empty string.\");if(-1!==a.indexOf(t))return f[t]={system:t};for(var e,r={style:\"normal\",variant:\"normal\",weight:\"normal\",stretch:\"normal\",lineHeight:\"normal\",size:\"1rem\",family:[\"serif\"]},h=c(t,/\\s+/);e=h.shift();){if(-1!==i.indexOf(e))return[\"style\",\"variant\",\"weight\",\"stretch\"].forEach((function(t){r[t]=e})),f[t]=r;if(-1===s.indexOf(e))if(\"normal\"!==e&&\"small-caps\"!==e)if(-1===l.indexOf(e)){if(-1===o.indexOf(e)){if(u(e)){var d=c(e,\"/\");if(r.size=d[0],null!=d[1]?r.lineHeight=p(d[1]):\"/\"===h[0]&&(h.shift(),r.lineHeight=p(h.shift())),!h.length)throw new Error(\"Missing required font-family.\");return r.family=c(h.join(\" \"),/\\s*,\\s*/).map(n),f[t]=r}throw new Error(\"Unknown or unsupported font token: \"+e)}r.weight=e}else r.stretch=e;else r.variant=e;else r.style=e}throw new Error(\"Missing required font-size.\")}function p(t){var e=parseFloat(t);return e.toString()===t?e:t}},{\"./lib/util\":145,\"css-font-stretch-keywords\":141,\"css-font-style-keywords\":142,\"css-font-weight-keywords\":143,\"css-global-keywords\":148,\"css-system-font-keywords\":149,\"string-split-by\":568,unquote:598}],147:[function(t,e,r){\"use strict\";var n=t(\"pick-by-alias\"),i=t(\"./lib/util\").isSize,a=g(t(\"css-global-keywords\")),o=g(t(\"css-system-font-keywords\")),s=g(t(\"css-font-weight-keywords\")),l=g(t(\"css-font-style-keywords\")),c=g(t(\"css-font-stretch-keywords\")),u={normal:1,\"small-caps\":1},f={serif:1,\"sans-serif\":1,monospace:1,cursive:1,fantasy:1,\"system-ui\":1},h=\"1rem\",p=\"serif\";function d(t,e){if(t&&!e[t]&&!a[t])throw Error(\"Unknown keyword `\"+t+\"`\");return t}function g(t){for(var e={},r=0;r<t.length;r++)e[t[r]]=1;return e}e.exports=function(t){if((t=n(t,{style:\"style fontstyle fontStyle font-style slope distinction\",variant:\"variant font-variant fontVariant fontvariant var capitalization\",weight:\"weight w font-weight fontWeight fontweight\",stretch:\"stretch font-stretch fontStretch fontstretch width\",size:\"size s font-size fontSize fontsize height em emSize\",lineHeight:\"lh line-height lineHeight lineheight leading\",family:\"font family fontFamily font-family fontfamily type typeface face\",system:\"system reserved default global\"})).system)return t.system&&d(t.system,o),t.system;if(d(t.style,l),d(t.variant,u),d(t.weight,s),d(t.stretch,c),null==t.size&&(t.size=h),\"number\"==typeof t.size&&(t.size+=\"px\"),!i)throw Error(\"Bad size value `\"+t.size+\"`\");t.family||(t.family=p),Array.isArray(t.family)&&(t.family.length||(t.family=[p]),t.family=t.family.map((function(t){return f[t]?t:'\"'+t+'\"'})).join(\", \"));var e=[];return e.push(t.style),t.variant!==t.style&&e.push(t.variant),t.weight!==t.variant&&t.weight!==t.style&&e.push(t.weight),t.stretch!==t.weight&&t.stretch!==t.variant&&t.stretch!==t.style&&e.push(t.stretch),e.push(t.size+(null==t.lineHeight||\"normal\"===t.lineHeight||t.lineHeight+\"\"==\"1\"?\"\":\"/\"+t.lineHeight)),e.push(t.family),e.filter(Boolean).join(\" \")}},{\"./lib/util\":145,\"css-font-stretch-keywords\":141,\"css-font-style-keywords\":142,\"css-font-weight-keywords\":143,\"css-global-keywords\":148,\"css-system-font-keywords\":149,\"pick-by-alias\":511}],148:[function(t,e,r){e.exports=[\"inherit\",\"initial\",\"unset\"]},{}],149:[function(t,e,r){e.exports=[\"caption\",\"icon\",\"menu\",\"message-box\",\"small-caption\",\"status-bar\"]},{}],150:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i,a){var o=i-1,s=i*i,l=o*o,c=(1+2*i)*l,u=i*l,f=s*(3-2*i),h=s*o;if(t.length){a||(a=new Array(t.length));for(var p=t.length-1;p>=0;--p)a[p]=c*t[p]+u*e[p]+f*r[p]+h*n[p];return a}return c*t+u*e+f*r+h*n},e.exports.derivative=function(t,e,r,n,i,a){var o=6*i*i-6*i,s=3*i*i-4*i+1,l=-6*i*i+6*i,c=3*i*i-2*i;if(t.length){a||(a=new Array(t.length));for(var u=t.length-1;u>=0;--u)a[u]=o*t[u]+s*e[u]+l*r[u]+c*n[u];return a}return o*t+s*e+l*r[u]+c*n}},{}],151:[function(t,e,r){\"use strict\";var n=t(\"./lib/thunk.js\");function i(){this.argTypes=[],this.shimArgs=[],this.arrayArgs=[],this.arrayBlockIndices=[],this.scalarArgs=[],this.offsetArgs=[],this.offsetArgIndex=[],this.indexArgs=[],this.shapeArgs=[],this.funcName=\"\",this.pre=null,this.body=null,this.post=null,this.debug=!1}e.exports=function(t){var e=new i;e.pre=t.pre,e.body=t.body,e.post=t.post;var r=t.args.slice(0);e.argTypes=r;for(var a=0;a<r.length;++a){var o=r[a];if(\"array\"===o||\"object\"==typeof o&&o.blockIndices){if(e.argTypes[a]=\"array\",e.arrayArgs.push(a),e.arrayBlockIndices.push(o.blockIndices?o.blockIndices:0),e.shimArgs.push(\"array\"+a),a<e.pre.args.length&&e.pre.args[a].count>0)throw new Error(\"cwise: pre() block may not reference array args\");if(a<e.post.args.length&&e.post.args[a].count>0)throw new Error(\"cwise: post() block may not reference array args\")}else if(\"scalar\"===o)e.scalarArgs.push(a),e.shimArgs.push(\"scalar\"+a);else if(\"index\"===o){if(e.indexArgs.push(a),a<e.pre.args.length&&e.pre.args[a].count>0)throw new Error(\"cwise: pre() block may not reference array index\");if(a<e.body.args.length&&e.body.args[a].lvalue)throw new Error(\"cwise: body() block may not write to array index\");if(a<e.post.args.length&&e.post.args[a].count>0)throw new Error(\"cwise: post() block may not reference array index\")}else if(\"shape\"===o){if(e.shapeArgs.push(a),a<e.pre.args.length&&e.pre.args[a].lvalue)throw new Error(\"cwise: pre() block may not write to array shape\");if(a<e.body.args.length&&e.body.args[a].lvalue)throw new Error(\"cwise: body() block may not write to array shape\");if(a<e.post.args.length&&e.post.args[a].lvalue)throw new Error(\"cwise: post() block may not write to array shape\")}else{if(\"object\"!=typeof o||!o.offset)throw new Error(\"cwise: Unknown argument type \"+r[a]);e.argTypes[a]=\"offset\",e.offsetArgs.push({array:o.array,offset:o.offset}),e.offsetArgIndex.push(a)}}if(e.arrayArgs.length<=0)throw new Error(\"cwise: No array arguments specified\");if(e.pre.args.length>r.length)throw new Error(\"cwise: Too many arguments in pre() block\");if(e.body.args.length>r.length)throw new Error(\"cwise: Too many arguments in body() block\");if(e.post.args.length>r.length)throw new Error(\"cwise: Too many arguments in post() block\");return e.debug=!!t.printCode||!!t.debug,e.funcName=t.funcName||\"cwise\",e.blockSize=t.blockSize||64,n(e)}},{\"./lib/thunk.js\":153}],152:[function(t,e,r){\"use strict\";var n=t(\"uniq\");function i(t,e,r){var n,i,a=t.length,o=e.arrayArgs.length,s=e.indexArgs.length>0,l=[],c=[],u=0,f=0;for(n=0;n<a;++n)c.push([\"i\",n,\"=0\"].join(\"\"));for(i=0;i<o;++i)for(n=0;n<a;++n)f=u,u=t[n],0===n?c.push([\"d\",i,\"s\",n,\"=t\",i,\"p\",u].join(\"\")):c.push([\"d\",i,\"s\",n,\"=(t\",i,\"p\",u,\"-s\",f,\"*t\",i,\"p\",f,\")\"].join(\"\"));for(c.length>0&&l.push(\"var \"+c.join(\",\")),n=a-1;n>=0;--n)u=t[n],l.push([\"for(i\",n,\"=0;i\",n,\"<s\",u,\";++i\",n,\"){\"].join(\"\"));for(l.push(r),n=0;n<a;++n){for(f=u,u=t[n],i=0;i<o;++i)l.push([\"p\",i,\"+=d\",i,\"s\",n].join(\"\"));s&&(n>0&&l.push([\"index[\",f,\"]-=s\",f].join(\"\")),l.push([\"++index[\",u,\"]\"].join(\"\"))),l.push(\"}\")}return l.join(\"\\n\")}function a(t,e,r){for(var n=t.body,i=[],a=[],o=0;o<t.args.length;++o){var s=t.args[o];if(!(s.count<=0)){var l=new RegExp(s.name,\"g\"),c=\"\",u=e.arrayArgs.indexOf(o);switch(e.argTypes[o]){case\"offset\":var f=e.offsetArgIndex.indexOf(o);u=e.offsetArgs[f].array,c=\"+q\"+f;case\"array\":c=\"p\"+u+c;var h=\"l\"+o,p=\"a\"+u;if(0===e.arrayBlockIndices[u])1===s.count?\"generic\"===r[u]?s.lvalue?(i.push([\"var \",h,\"=\",p,\".get(\",c,\")\"].join(\"\")),n=n.replace(l,h),a.push([p,\".set(\",c,\",\",h,\")\"].join(\"\"))):n=n.replace(l,[p,\".get(\",c,\")\"].join(\"\")):n=n.replace(l,[p,\"[\",c,\"]\"].join(\"\")):\"generic\"===r[u]?(i.push([\"var \",h,\"=\",p,\".get(\",c,\")\"].join(\"\")),n=n.replace(l,h),s.lvalue&&a.push([p,\".set(\",c,\",\",h,\")\"].join(\"\"))):(i.push([\"var \",h,\"=\",p,\"[\",c,\"]\"].join(\"\")),n=n.replace(l,h),s.lvalue&&a.push([p,\"[\",c,\"]=\",h].join(\"\")));else{for(var d=[s.name],g=[c],m=0;m<Math.abs(e.arrayBlockIndices[u]);m++)d.push(\"\\\\s*\\\\[([^\\\\]]+)\\\\]\"),g.push(\"$\"+(m+1)+\"*t\"+u+\"b\"+m);if(l=new RegExp(d.join(\"\"),\"g\"),c=g.join(\"+\"),\"generic\"===r[u])throw new Error(\"cwise: Generic arrays not supported in combination with blocks!\");n=n.replace(l,[p,\"[\",c,\"]\"].join(\"\"))}break;case\"scalar\":n=n.replace(l,\"Y\"+e.scalarArgs.indexOf(o));break;case\"index\":n=n.replace(l,\"index\");break;case\"shape\":n=n.replace(l,\"shape\")}}}return[i.join(\"\\n\"),n,a.join(\"\\n\")].join(\"\\n\").trim()}function o(t){for(var e=new Array(t.length),r=!0,n=0;n<t.length;++n){var i=t[n],a=i.match(/\\d+/);a=a?a[0]:\"\",0===i.charAt(0)?e[n]=\"u\"+i.charAt(1)+a:e[n]=i.charAt(0)+a,n>0&&(r=r&&e[n]===e[n-1])}return r?e[0]:e.join(\"\")}e.exports=function(t,e){for(var r=e[1].length-Math.abs(t.arrayBlockIndices[0])|0,s=new Array(t.arrayArgs.length),l=new Array(t.arrayArgs.length),c=0;c<t.arrayArgs.length;++c)l[c]=e[2*c],s[c]=e[2*c+1];var u=[],f=[],h=[],p=[],d=[];for(c=0;c<t.arrayArgs.length;++c){t.arrayBlockIndices[c]<0?(h.push(0),p.push(r),u.push(r),f.push(r+t.arrayBlockIndices[c])):(h.push(t.arrayBlockIndices[c]),p.push(t.arrayBlockIndices[c]+r),u.push(0),f.push(t.arrayBlockIndices[c]));for(var g=[],m=0;m<s[c].length;m++)h[c]<=s[c][m]&&s[c][m]<p[c]&&g.push(s[c][m]-h[c]);d.push(g)}var v=[\"SS\"],y=[\"'use strict'\"],x=[];for(m=0;m<r;++m)x.push([\"s\",m,\"=SS[\",m,\"]\"].join(\"\"));for(c=0;c<t.arrayArgs.length;++c){v.push(\"a\"+c),v.push(\"t\"+c),v.push(\"p\"+c);for(m=0;m<r;++m)x.push([\"t\",c,\"p\",m,\"=t\",c,\"[\",h[c]+m,\"]\"].join(\"\"));for(m=0;m<Math.abs(t.arrayBlockIndices[c]);++m)x.push([\"t\",c,\"b\",m,\"=t\",c,\"[\",u[c]+m,\"]\"].join(\"\"))}for(c=0;c<t.scalarArgs.length;++c)v.push(\"Y\"+c);if(t.shapeArgs.length>0&&x.push(\"shape=SS.slice(0)\"),t.indexArgs.length>0){var b=new Array(r);for(c=0;c<r;++c)b[c]=\"0\";x.push([\"index=[\",b.join(\",\"),\"]\"].join(\"\"))}for(c=0;c<t.offsetArgs.length;++c){var _=t.offsetArgs[c],w=[];for(m=0;m<_.offset.length;++m)0!==_.offset[m]&&(1===_.offset[m]?w.push([\"t\",_.array,\"p\",m].join(\"\")):w.push([_.offset[m],\"*t\",_.array,\"p\",m].join(\"\")));0===w.length?x.push(\"q\"+c+\"=0\"):x.push([\"q\",c,\"=\",w.join(\"+\")].join(\"\"))}var T=n([].concat(t.pre.thisVars).concat(t.body.thisVars).concat(t.post.thisVars));for((x=x.concat(T)).length>0&&y.push(\"var \"+x.join(\",\")),c=0;c<t.arrayArgs.length;++c)y.push(\"p\"+c+\"|=0\");t.pre.body.length>3&&y.push(a(t.pre,t,l));var k=a(t.body,t,l),M=function(t){for(var e=0,r=t[0].length;e<r;){for(var n=1;n<t.length;++n)if(t[n][e]!==t[0][e])return e;++e}return e}(d);M<r?y.push(function(t,e,r,n){for(var a=e.length,o=r.arrayArgs.length,s=r.blockSize,l=r.indexArgs.length>0,c=[],u=0;u<o;++u)c.push([\"var offset\",u,\"=p\",u].join(\"\"));for(u=t;u<a;++u)c.push([\"for(var j\"+u+\"=SS[\",e[u],\"]|0;j\",u,\">0;){\"].join(\"\")),c.push([\"if(j\",u,\"<\",s,\"){\"].join(\"\")),c.push([\"s\",e[u],\"=j\",u].join(\"\")),c.push([\"j\",u,\"=0\"].join(\"\")),c.push([\"}else{s\",e[u],\"=\",s].join(\"\")),c.push([\"j\",u,\"-=\",s,\"}\"].join(\"\")),l&&c.push([\"index[\",e[u],\"]=j\",u].join(\"\"));for(u=0;u<o;++u){for(var f=[\"offset\"+u],h=t;h<a;++h)f.push([\"j\",h,\"*t\",u,\"p\",e[h]].join(\"\"));c.push([\"p\",u,\"=(\",f.join(\"+\"),\")\"].join(\"\"))}for(c.push(i(e,r,n)),u=t;u<a;++u)c.push(\"}\");return c.join(\"\\n\")}(M,d[0],t,k)):y.push(i(d[0],t,k)),t.post.body.length>3&&y.push(a(t.post,t,l)),t.debug&&console.log(\"-----Generated cwise routine for \",e,\":\\n\"+y.join(\"\\n\")+\"\\n----------\");var A=[t.funcName||\"unnamed\",\"_cwise_loop_\",s[0].join(\"s\"),\"m\",M,o(l)].join(\"\");return new Function([\"function \",A,\"(\",v.join(\",\"),\"){\",y.join(\"\\n\"),\"} return \",A].join(\"\"))()}},{uniq:597}],153:[function(t,e,r){\"use strict\";var n=t(\"./compile.js\");e.exports=function(t){var e=[\"'use strict'\",\"var CACHED={}\"],r=[],i=t.funcName+\"_cwise_thunk\";e.push([\"return function \",i,\"(\",t.shimArgs.join(\",\"),\"){\"].join(\"\"));for(var a=[],o=[],s=[[\"array\",t.arrayArgs[0],\".shape.slice(\",Math.max(0,t.arrayBlockIndices[0]),t.arrayBlockIndices[0]<0?\",\"+t.arrayBlockIndices[0]+\")\":\")\"].join(\"\")],l=[],c=[],u=0;u<t.arrayArgs.length;++u){var f=t.arrayArgs[u];r.push([\"t\",f,\"=array\",f,\".dtype,\",\"r\",f,\"=array\",f,\".order\"].join(\"\")),a.push(\"t\"+f),a.push(\"r\"+f),o.push(\"t\"+f),o.push(\"r\"+f+\".join()\"),s.push(\"array\"+f+\".data\"),s.push(\"array\"+f+\".stride\"),s.push(\"array\"+f+\".offset|0\"),u>0&&(l.push(\"array\"+t.arrayArgs[0]+\".shape.length===array\"+f+\".shape.length+\"+(Math.abs(t.arrayBlockIndices[0])-Math.abs(t.arrayBlockIndices[u]))),c.push(\"array\"+t.arrayArgs[0]+\".shape[shapeIndex+\"+Math.max(0,t.arrayBlockIndices[0])+\"]===array\"+f+\".shape[shapeIndex+\"+Math.max(0,t.arrayBlockIndices[u])+\"]\"))}for(t.arrayArgs.length>1&&(e.push(\"if (!(\"+l.join(\" && \")+\")) throw new Error('cwise: Arrays do not all have the same dimensionality!')\"),e.push(\"for(var shapeIndex=array\"+t.arrayArgs[0]+\".shape.length-\"+Math.abs(t.arrayBlockIndices[0])+\"; shapeIndex--\\x3e0;) {\"),e.push(\"if (!(\"+c.join(\" && \")+\")) throw new Error('cwise: Arrays do not all have the same shape!')\"),e.push(\"}\")),u=0;u<t.scalarArgs.length;++u)s.push(\"scalar\"+t.scalarArgs[u]);return r.push([\"type=[\",o.join(\",\"),\"].join()\"].join(\"\")),r.push(\"proc=CACHED[type]\"),e.push(\"var \"+r.join(\",\")),e.push([\"if(!proc){\",\"CACHED[type]=proc=compile([\",a.join(\",\"),\"])}\",\"return proc(\",s.join(\",\"),\")}\"].join(\"\")),t.debug&&console.log(\"-----Generated thunk:\\n\"+e.join(\"\\n\")+\"\\n----------\"),new Function(\"compile\",e.join(\"\\n\"))(n.bind(void 0,t))}},{\"./compile.js\":152}],154:[function(t,e,r){\"use strict\";var n,i=t(\"type/value/is\"),a=t(\"type/value/ensure\"),o=t(\"type/plain-function/ensure\"),s=t(\"es5-ext/object/copy\"),l=t(\"es5-ext/object/normalize-options\"),c=t(\"es5-ext/object/map\"),u=Function.prototype.bind,f=Object.defineProperty,h=Object.prototype.hasOwnProperty;n=function(t,e,r){var n,i=a(e)&&o(e.value);return delete(n=s(e)).writable,delete n.value,n.get=function(){return!r.overwriteDefinition&&h.call(this,t)?i:(e.value=u.call(i,r.resolveContext?r.resolveContext(this):this),f(this,t,e),this[t])},n},e.exports=function(t){var e=l(arguments[1]);return i(e.resolveContext)&&o(e.resolveContext),c(t,(function(t,r){return n(r,t,e)}))}},{\"es5-ext/object/copy\":196,\"es5-ext/object/map\":204,\"es5-ext/object/normalize-options\":205,\"type/plain-function/ensure\":589,\"type/value/ensure\":593,\"type/value/is\":594}],155:[function(t,e,r){\"use strict\";var n=t(\"type/value/is\"),i=t(\"type/plain-function/is\"),a=t(\"es5-ext/object/assign\"),o=t(\"es5-ext/object/normalize-options\"),s=t(\"es5-ext/string/#/contains\");(e.exports=function(t,e){var r,i,l,c,u;return arguments.length<2||\"string\"!=typeof t?(c=e,e=t,t=null):c=arguments[2],n(t)?(r=s.call(t,\"c\"),i=s.call(t,\"e\"),l=s.call(t,\"w\")):(r=l=!0,i=!1),u={value:e,configurable:r,enumerable:i,writable:l},c?a(o(c),u):u}).gs=function(t,e,r){var l,c,u,f;return\"string\"!=typeof t?(u=r,r=e,e=t,t=null):u=arguments[3],n(e)?i(e)?n(r)?i(r)||(u=r,r=void 0):r=void 0:(u=e,e=r=void 0):e=void 0,n(t)?(l=s.call(t,\"c\"),c=s.call(t,\"e\")):(l=!0,c=!1),f={get:e,set:r,configurable:l,enumerable:c},u?a(o(u),f):f}},{\"es5-ext/object/assign\":193,\"es5-ext/object/normalize-options\":205,\"es5-ext/string/#/contains\":212,\"type/plain-function/is\":590,\"type/value/is\":594}],156:[function(t,e,r){!function(t,n){n(\"object\"==typeof r&&\"undefined\"!=typeof e?r:t.d3=t.d3||{})}(this,(function(t){\"use strict\";function e(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}function r(t){var r;return 1===t.length&&(r=t,t=function(t,n){return e(r(t),n)}),{left:function(e,r,n,i){for(null==n&&(n=0),null==i&&(i=e.length);n<i;){var a=n+i>>>1;t(e[a],r)<0?n=a+1:i=a}return n},right:function(e,r,n,i){for(null==n&&(n=0),null==i&&(i=e.length);n<i;){var a=n+i>>>1;t(e[a],r)>0?i=a:n=a+1}return n}}}var n=r(e),i=n.right,a=n.left;function o(t,e){return[t,e]}function s(t){return null===t?NaN:+t}function l(t,e){var r,n,i=t.length,a=0,o=-1,l=0,c=0;if(null==e)for(;++o<i;)isNaN(r=s(t[o]))||(c+=(n=r-l)*(r-(l+=n/++a)));else for(;++o<i;)isNaN(r=s(e(t[o],o,t)))||(c+=(n=r-l)*(r-(l+=n/++a)));if(a>1)return c/(a-1)}function c(t,e){var r=l(t,e);return r?Math.sqrt(r):r}function u(t,e){var r,n,i,a=t.length,o=-1;if(null==e){for(;++o<a;)if(null!=(r=t[o])&&r>=r)for(n=i=r;++o<a;)null!=(r=t[o])&&(n>r&&(n=r),i<r&&(i=r))}else for(;++o<a;)if(null!=(r=e(t[o],o,t))&&r>=r)for(n=i=r;++o<a;)null!=(r=e(t[o],o,t))&&(n>r&&(n=r),i<r&&(i=r));return[n,i]}var f=Array.prototype,h=f.slice,p=f.map;function d(t){return function(){return t}}function g(t){return t}function m(t,e,r){t=+t,e=+e,r=(i=arguments.length)<2?(e=t,t=0,1):i<3?1:+r;for(var n=-1,i=0|Math.max(0,Math.ceil((e-t)/r)),a=new Array(i);++n<i;)a[n]=t+n*r;return a}var v=Math.sqrt(50),y=Math.sqrt(10),x=Math.sqrt(2);function b(t,e,r){var n=(e-t)/Math.max(0,r),i=Math.floor(Math.log(n)/Math.LN10),a=n/Math.pow(10,i);return i>=0?(a>=v?10:a>=y?5:a>=x?2:1)*Math.pow(10,i):-Math.pow(10,-i)/(a>=v?10:a>=y?5:a>=x?2:1)}function _(t,e,r){var n=Math.abs(e-t)/Math.max(0,r),i=Math.pow(10,Math.floor(Math.log(n)/Math.LN10)),a=n/i;return a>=v?i*=10:a>=y?i*=5:a>=x&&(i*=2),e<t?-i:i}function w(t){return Math.ceil(Math.log(t.length)/Math.LN2)+1}function T(t,e,r){if(null==r&&(r=s),n=t.length){if((e=+e)<=0||n<2)return+r(t[0],0,t);if(e>=1)return+r(t[n-1],n-1,t);var n,i=(n-1)*e,a=Math.floor(i),o=+r(t[a],a,t);return o+(+r(t[a+1],a+1,t)-o)*(i-a)}}function k(t,e){var r,n,i=t.length,a=-1;if(null==e){for(;++a<i;)if(null!=(r=t[a])&&r>=r)for(n=r;++a<i;)null!=(r=t[a])&&n>r&&(n=r)}else for(;++a<i;)if(null!=(r=e(t[a],a,t))&&r>=r)for(n=r;++a<i;)null!=(r=e(t[a],a,t))&&n>r&&(n=r);return n}function M(t){if(!(i=t.length))return[];for(var e=-1,r=k(t,A),n=new Array(r);++e<r;)for(var i,a=-1,o=n[e]=new Array(i);++a<i;)o[a]=t[a][e];return n}function A(t){return t.length}t.bisect=i,t.bisectRight=i,t.bisectLeft=a,t.ascending=e,t.bisector=r,t.cross=function(t,e,r){var n,i,a,s,l=t.length,c=e.length,u=new Array(l*c);for(null==r&&(r=o),n=a=0;n<l;++n)for(s=t[n],i=0;i<c;++i,++a)u[a]=r(s,e[i]);return u},t.descending=function(t,e){return e<t?-1:e>t?1:e>=t?0:NaN},t.deviation=c,t.extent=u,t.histogram=function(){var t=g,e=u,r=w;function n(n){var a,o,s=n.length,l=new Array(s);for(a=0;a<s;++a)l[a]=t(n[a],a,n);var c=e(l),u=c[0],f=c[1],h=r(l,u,f);Array.isArray(h)||(h=_(u,f,h),h=m(Math.ceil(u/h)*h,f,h));for(var p=h.length;h[0]<=u;)h.shift(),--p;for(;h[p-1]>f;)h.pop(),--p;var d,g=new Array(p+1);for(a=0;a<=p;++a)(d=g[a]=[]).x0=a>0?h[a-1]:u,d.x1=a<p?h[a]:f;for(a=0;a<s;++a)u<=(o=l[a])&&o<=f&&g[i(h,o,0,p)].push(n[a]);return g}return n.value=function(e){return arguments.length?(t=\"function\"==typeof e?e:d(e),n):t},n.domain=function(t){return arguments.length?(e=\"function\"==typeof t?t:d([t[0],t[1]]),n):e},n.thresholds=function(t){return arguments.length?(r=\"function\"==typeof t?t:Array.isArray(t)?d(h.call(t)):d(t),n):r},n},t.thresholdFreedmanDiaconis=function(t,r,n){return t=p.call(t,s).sort(e),Math.ceil((n-r)/(2*(T(t,.75)-T(t,.25))*Math.pow(t.length,-1/3)))},t.thresholdScott=function(t,e,r){return Math.ceil((r-e)/(3.5*c(t)*Math.pow(t.length,-1/3)))},t.thresholdSturges=w,t.max=function(t,e){var r,n,i=t.length,a=-1;if(null==e){for(;++a<i;)if(null!=(r=t[a])&&r>=r)for(n=r;++a<i;)null!=(r=t[a])&&r>n&&(n=r)}else for(;++a<i;)if(null!=(r=e(t[a],a,t))&&r>=r)for(n=r;++a<i;)null!=(r=e(t[a],a,t))&&r>n&&(n=r);return n},t.mean=function(t,e){var r,n=t.length,i=n,a=-1,o=0;if(null==e)for(;++a<n;)isNaN(r=s(t[a]))?--i:o+=r;else for(;++a<n;)isNaN(r=s(e(t[a],a,t)))?--i:o+=r;if(i)return o/i},t.median=function(t,r){var n,i=t.length,a=-1,o=[];if(null==r)for(;++a<i;)isNaN(n=s(t[a]))||o.push(n);else for(;++a<i;)isNaN(n=s(r(t[a],a,t)))||o.push(n);return T(o.sort(e),.5)},t.merge=function(t){for(var e,r,n,i=t.length,a=-1,o=0;++a<i;)o+=t[a].length;for(r=new Array(o);--i>=0;)for(e=(n=t[i]).length;--e>=0;)r[--o]=n[e];return r},t.min=k,t.pairs=function(t,e){null==e&&(e=o);for(var r=0,n=t.length-1,i=t[0],a=new Array(n<0?0:n);r<n;)a[r]=e(i,i=t[++r]);return a},t.permute=function(t,e){for(var r=e.length,n=new Array(r);r--;)n[r]=t[e[r]];return n},t.quantile=T,t.range=m,t.scan=function(t,r){if(n=t.length){var n,i,a=0,o=0,s=t[o];for(null==r&&(r=e);++a<n;)(r(i=t[a],s)<0||0!==r(s,s))&&(s=i,o=a);return 0===r(s,s)?o:void 0}},t.shuffle=function(t,e,r){for(var n,i,a=(null==r?t.length:r)-(e=null==e?0:+e);a;)i=Math.random()*a--|0,n=t[a+e],t[a+e]=t[i+e],t[i+e]=n;return t},t.sum=function(t,e){var r,n=t.length,i=-1,a=0;if(null==e)for(;++i<n;)(r=+t[i])&&(a+=r);else for(;++i<n;)(r=+e(t[i],i,t))&&(a+=r);return a},t.ticks=function(t,e,r){var n,i,a,o,s=-1;if(r=+r,(t=+t)===(e=+e)&&r>0)return[t];if((n=e<t)&&(i=t,t=e,e=i),0===(o=b(t,e,r))||!isFinite(o))return[];if(o>0)for(t=Math.ceil(t/o),e=Math.floor(e/o),a=new Array(i=Math.ceil(e-t+1));++s<i;)a[s]=(t+s)*o;else for(t=Math.floor(t*o),e=Math.ceil(e*o),a=new Array(i=Math.ceil(t-e+1));++s<i;)a[s]=(t-s)/o;return n&&a.reverse(),a},t.tickIncrement=b,t.tickStep=_,t.transpose=M,t.variance=l,t.zip=function(){return M(arguments)},Object.defineProperty(t,\"__esModule\",{value:!0})}))},{}],157:[function(t,e,r){!function(t,n){n(\"object\"==typeof r&&\"undefined\"!=typeof e?r:t.d3=t.d3||{})}(this,(function(t){\"use strict\";function e(){}function r(t,r){var n=new e;if(t instanceof e)t.each((function(t,e){n.set(e,t)}));else if(Array.isArray(t)){var i,a=-1,o=t.length;if(null==r)for(;++a<o;)n.set(a,t[a]);else for(;++a<o;)n.set(r(i=t[a],a,t),i)}else if(t)for(var s in t)n.set(s,t[s]);return n}function n(){return{}}function i(t,e,r){t[e]=r}function a(){return r()}function o(t,e,r){t.set(e,r)}function s(){}e.prototype=r.prototype={constructor:e,has:function(t){return\"$\"+t in this},get:function(t){return this[\"$\"+t]},set:function(t,e){return this[\"$\"+t]=e,this},remove:function(t){var e=\"$\"+t;return e in this&&delete this[e]},clear:function(){for(var t in this)\"$\"===t[0]&&delete this[t]},keys:function(){var t=[];for(var e in this)\"$\"===e[0]&&t.push(e.slice(1));return t},values:function(){var t=[];for(var e in this)\"$\"===e[0]&&t.push(this[e]);return t},entries:function(){var t=[];for(var e in this)\"$\"===e[0]&&t.push({key:e.slice(1),value:this[e]});return t},size:function(){var t=0;for(var e in this)\"$\"===e[0]&&++t;return t},empty:function(){for(var t in this)if(\"$\"===t[0])return!1;return!0},each:function(t){for(var e in this)\"$\"===e[0]&&t(this[e],e.slice(1),this)}};var l=r.prototype;function c(t,e){var r=new s;if(t instanceof s)t.each((function(t){r.add(t)}));else if(t){var n=-1,i=t.length;if(null==e)for(;++n<i;)r.add(t[n]);else for(;++n<i;)r.add(e(t[n],n,t))}return r}s.prototype=c.prototype={constructor:s,has:l.has,add:function(t){return this[\"$\"+(t+=\"\")]=t,this},remove:l.remove,clear:l.clear,values:l.keys,size:l.size,empty:l.empty,each:l.each},t.nest=function(){var t,e,s,l=[],c=[];function u(n,i,a,o){if(i>=l.length)return null!=t&&n.sort(t),null!=e?e(n):n;for(var s,c,f,h=-1,p=n.length,d=l[i++],g=r(),m=a();++h<p;)(f=g.get(s=d(c=n[h])+\"\"))?f.push(c):g.set(s,[c]);return g.each((function(t,e){o(m,e,u(t,i,a,o))})),m}return s={object:function(t){return u(t,0,n,i)},map:function(t){return u(t,0,a,o)},entries:function(t){return function t(r,n){if(++n>l.length)return r;var i,a=c[n-1];return null!=e&&n>=l.length?i=r.entries():(i=[],r.each((function(e,r){i.push({key:r,values:t(e,n)})}))),null!=a?i.sort((function(t,e){return a(t.key,e.key)})):i}(u(t,0,a,o),0)},key:function(t){return l.push(t),s},sortKeys:function(t){return c[l.length-1]=t,s},sortValues:function(e){return t=e,s},rollup:function(t){return e=t,s}}},t.set=c,t.map=r,t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},Object.defineProperty(t,\"__esModule\",{value:!0})}))},{}],158:[function(t,e,r){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){\"use strict\";function e(t,e,r){t.prototype=e.prototype=r,r.constructor=t}function r(t,e){var r=Object.create(t.prototype);for(var n in e)r[n]=e[n];return r}function n(){}var i=\"\\\\s*([+-]?\\\\d+)\\\\s*\",a=\"\\\\s*([+-]?\\\\d*\\\\.?\\\\d+(?:[eE][+-]?\\\\d+)?)\\\\s*\",o=\"\\\\s*([+-]?\\\\d*\\\\.?\\\\d+(?:[eE][+-]?\\\\d+)?)%\\\\s*\",s=/^#([0-9a-f]{3,8})$/,l=new RegExp(\"^rgb\\\\(\"+[i,i,i]+\"\\\\)$\"),c=new RegExp(\"^rgb\\\\(\"+[o,o,o]+\"\\\\)$\"),u=new RegExp(\"^rgba\\\\(\"+[i,i,i,a]+\"\\\\)$\"),f=new RegExp(\"^rgba\\\\(\"+[o,o,o,a]+\"\\\\)$\"),h=new RegExp(\"^hsl\\\\(\"+[a,o,o]+\"\\\\)$\"),p=new RegExp(\"^hsla\\\\(\"+[a,o,o,a]+\"\\\\)$\"),d={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074};function g(){return this.rgb().formatHex()}function m(){return this.rgb().formatRgb()}function v(t){var e,r;return t=(t+\"\").trim().toLowerCase(),(e=s.exec(t))?(r=e[1].length,e=parseInt(e[1],16),6===r?y(e):3===r?new w(e>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===r?x(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===r?x(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=l.exec(t))?new w(e[1],e[2],e[3],1):(e=c.exec(t))?new w(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=u.exec(t))?x(e[1],e[2],e[3],e[4]):(e=f.exec(t))?x(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=h.exec(t))?A(e[1],e[2]/100,e[3]/100,1):(e=p.exec(t))?A(e[1],e[2]/100,e[3]/100,e[4]):d.hasOwnProperty(t)?y(d[t]):\"transparent\"===t?new w(NaN,NaN,NaN,0):null}function y(t){return new w(t>>16&255,t>>8&255,255&t,1)}function x(t,e,r,n){return n<=0&&(t=e=r=NaN),new w(t,e,r,n)}function b(t){return t instanceof n||(t=v(t)),t?new w((t=t.rgb()).r,t.g,t.b,t.opacity):new w}function _(t,e,r,n){return 1===arguments.length?b(t):new w(t,e,r,null==n?1:n)}function w(t,e,r,n){this.r=+t,this.g=+e,this.b=+r,this.opacity=+n}function T(){return\"#\"+M(this.r)+M(this.g)+M(this.b)}function k(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?\"rgb(\":\"rgba(\")+Math.max(0,Math.min(255,Math.round(this.r)||0))+\", \"+Math.max(0,Math.min(255,Math.round(this.g)||0))+\", \"+Math.max(0,Math.min(255,Math.round(this.b)||0))+(1===t?\")\":\", \"+t+\")\")}function M(t){return((t=Math.max(0,Math.min(255,Math.round(t)||0)))<16?\"0\":\"\")+t.toString(16)}function A(t,e,r,n){return n<=0?t=e=r=NaN:r<=0||r>=1?t=e=NaN:e<=0&&(t=NaN),new C(t,e,r,n)}function S(t){if(t instanceof C)return new C(t.h,t.s,t.l,t.opacity);if(t instanceof n||(t=v(t)),!t)return new C;if(t instanceof C)return t;var e=(t=t.rgb()).r/255,r=t.g/255,i=t.b/255,a=Math.min(e,r,i),o=Math.max(e,r,i),s=NaN,l=o-a,c=(o+a)/2;return l?(s=e===o?(r-i)/l+6*(r<i):r===o?(i-e)/l+2:(e-r)/l+4,l/=c<.5?o+a:2-o-a,s*=60):l=c>0&&c<1?0:s,new C(s,l,c,t.opacity)}function E(t,e,r,n){return 1===arguments.length?S(t):new C(t,e,r,null==n?1:n)}function C(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}function L(t,e,r){return 255*(t<60?e+(r-e)*t/60:t<180?r:t<240?e+(r-e)*(240-t)/60:e)}e(n,v,{copy:function(t){return Object.assign(new this.constructor,this,t)},displayable:function(){return this.rgb().displayable()},hex:g,formatHex:g,formatHsl:function(){return S(this).formatHsl()},formatRgb:m,toString:m}),e(w,_,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new w(this.r*t,this.g*t,this.b*t,this.opacity)},rgb:function(){return this},displayable:function(){return-.5<=this.r&&this.r<255.5&&-.5<=this.g&&this.g<255.5&&-.5<=this.b&&this.b<255.5&&0<=this.opacity&&this.opacity<=1},hex:T,formatHex:T,formatRgb:k,toString:k})),e(C,E,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new C(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new C(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=this.h%360+360*(this.h<0),e=isNaN(t)||isNaN(this.s)?0:this.s,r=this.l,n=r+(r<.5?r:1-r)*e,i=2*r-n;return new w(L(t>=240?t-240:t+120,i,n),L(t,i,n),L(t<120?t+240:t-120,i,n),this.opacity)},displayable:function(){return(0<=this.s&&this.s<=1||isNaN(this.s))&&0<=this.l&&this.l<=1&&0<=this.opacity&&this.opacity<=1},formatHsl:function(){var t=this.opacity;return(1===(t=isNaN(t)?1:Math.max(0,Math.min(1,t)))?\"hsl(\":\"hsla(\")+(this.h||0)+\", \"+100*(this.s||0)+\"%, \"+100*(this.l||0)+\"%\"+(1===t?\")\":\", \"+t+\")\")}}));var I=Math.PI/180,P=180/Math.PI,z=6/29,O=3*z*z;function D(t){if(t instanceof F)return new F(t.l,t.a,t.b,t.opacity);if(t instanceof H)return G(t);t instanceof w||(t=b(t));var e,r,n=U(t.r),i=U(t.g),a=U(t.b),o=B((.2225045*n+.7168786*i+.0606169*a)/1);return n===i&&i===a?e=r=o:(e=B((.4360747*n+.3850649*i+.1430804*a)/.96422),r=B((.0139322*n+.0971045*i+.7141733*a)/.82521)),new F(116*o-16,500*(e-o),200*(o-r),t.opacity)}function R(t,e,r,n){return 1===arguments.length?D(t):new F(t,e,r,null==n?1:n)}function F(t,e,r,n){this.l=+t,this.a=+e,this.b=+r,this.opacity=+n}function B(t){return t>.008856451679035631?Math.pow(t,1/3):t/O+4/29}function N(t){return t>z?t*t*t:O*(t-4/29)}function j(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function U(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function V(t){if(t instanceof H)return new H(t.h,t.c,t.l,t.opacity);if(t instanceof F||(t=D(t)),0===t.a&&0===t.b)return new H(NaN,0<t.l&&t.l<100?0:NaN,t.l,t.opacity);var e=Math.atan2(t.b,t.a)*P;return new H(e<0?e+360:e,Math.sqrt(t.a*t.a+t.b*t.b),t.l,t.opacity)}function q(t,e,r,n){return 1===arguments.length?V(t):new H(t,e,r,null==n?1:n)}function H(t,e,r,n){this.h=+t,this.c=+e,this.l=+r,this.opacity=+n}function G(t){if(isNaN(t.h))return new F(t.l,0,0,t.opacity);var e=t.h*I;return new F(t.l,Math.cos(e)*t.c,Math.sin(e)*t.c,t.opacity)}e(F,R,r(n,{brighter:function(t){return new F(this.l+18*(null==t?1:t),this.a,this.b,this.opacity)},darker:function(t){return new F(this.l-18*(null==t?1:t),this.a,this.b,this.opacity)},rgb:function(){var t=(this.l+16)/116,e=isNaN(this.a)?t:t+this.a/500,r=isNaN(this.b)?t:t-this.b/200;return new w(j(3.1338561*(e=.96422*N(e))-1.6168667*(t=1*N(t))-.4906146*(r=.82521*N(r))),j(-.9787684*e+1.9161415*t+.033454*r),j(.0719453*e-.2289914*t+1.4052427*r),this.opacity)}})),e(H,q,r(n,{brighter:function(t){return new H(this.h,this.c,this.l+18*(null==t?1:t),this.opacity)},darker:function(t){return new H(this.h,this.c,this.l-18*(null==t?1:t),this.opacity)},rgb:function(){return G(this).rgb()}}));var Y=-.14861,W=1.78277,X=-.29227,Z=-.90649,J=1.97294,K=J*Z,Q=J*W,$=W*X-Z*Y;function tt(t){if(t instanceof rt)return new rt(t.h,t.s,t.l,t.opacity);t instanceof w||(t=b(t));var e=t.r/255,r=t.g/255,n=t.b/255,i=($*n+K*e-Q*r)/($+K-Q),a=n-i,o=(J*(r-i)-X*a)/Z,s=Math.sqrt(o*o+a*a)/(J*i*(1-i)),l=s?Math.atan2(o,a)*P-120:NaN;return new rt(l<0?l+360:l,s,i,t.opacity)}function et(t,e,r,n){return 1===arguments.length?tt(t):new rt(t,e,r,null==n?1:n)}function rt(t,e,r,n){this.h=+t,this.s=+e,this.l=+r,this.opacity=+n}e(rt,et,r(n,{brighter:function(t){return t=null==t?1/.7:Math.pow(1/.7,t),new rt(this.h,this.s,this.l*t,this.opacity)},darker:function(t){return t=null==t?.7:Math.pow(.7,t),new rt(this.h,this.s,this.l*t,this.opacity)},rgb:function(){var t=isNaN(this.h)?0:(this.h+120)*I,e=+this.l,r=isNaN(this.s)?0:this.s*e*(1-e),n=Math.cos(t),i=Math.sin(t);return new w(255*(e+r*(Y*n+W*i)),255*(e+r*(X*n+Z*i)),255*(e+r*(J*n)),this.opacity)}})),t.color=v,t.cubehelix=et,t.gray=function(t,e){return new F(t,0,0,null==e?1:e)},t.hcl=q,t.hsl=E,t.lab=R,t.lch=function(t,e,r,n){return 1===arguments.length?V(t):new H(r,e,t,null==n?1:n)},t.rgb=_,Object.defineProperty(t,\"__esModule\",{value:!0})}))},{}],159:[function(t,e,r){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){\"use strict\";var e={value:function(){}};function r(){for(var t,e=0,r=arguments.length,i={};e<r;++e){if(!(t=arguments[e]+\"\")||t in i||/[\\s.]/.test(t))throw new Error(\"illegal type: \"+t);i[t]=[]}return new n(i)}function n(t){this._=t}function i(t,e){return t.trim().split(/^|\\s+/).map((function(t){var r=\"\",n=t.indexOf(\".\");if(n>=0&&(r=t.slice(n+1),t=t.slice(0,n)),t&&!e.hasOwnProperty(t))throw new Error(\"unknown type: \"+t);return{type:t,name:r}}))}function a(t,e){for(var r,n=0,i=t.length;n<i;++n)if((r=t[n]).name===e)return r.value}function o(t,r,n){for(var i=0,a=t.length;i<a;++i)if(t[i].name===r){t[i]=e,t=t.slice(0,i).concat(t.slice(i+1));break}return null!=n&&t.push({name:r,value:n}),t}n.prototype=r.prototype={constructor:n,on:function(t,e){var r,n=this._,s=i(t+\"\",n),l=-1,c=s.length;if(!(arguments.length<2)){if(null!=e&&\"function\"!=typeof e)throw new Error(\"invalid callback: \"+e);for(;++l<c;)if(r=(t=s[l]).type)n[r]=o(n[r],t.name,e);else if(null==e)for(r in n)n[r]=o(n[r],t.name,null);return this}for(;++l<c;)if((r=(t=s[l]).type)&&(r=a(n[r],t.name)))return r},copy:function(){var t={},e=this._;for(var r in e)t[r]=e[r].slice();return new n(t)},call:function(t,e){if((r=arguments.length-2)>0)for(var r,n,i=new Array(r),a=0;a<r;++a)i[a]=arguments[a+2];if(!this._.hasOwnProperty(t))throw new Error(\"unknown type: \"+t);for(a=0,r=(n=this._[t]).length;a<r;++a)n[a].value.apply(e,i)},apply:function(t,e,r){if(!this._.hasOwnProperty(t))throw new Error(\"unknown type: \"+t);for(var n=this._[t],i=0,a=n.length;i<a;++i)n[i].value.apply(e,r)}},t.dispatch=r,Object.defineProperty(t,\"__esModule\",{value:!0})}))},{}],160:[function(t,e,r){!function(n,i){\"object\"==typeof r&&\"undefined\"!=typeof e?i(r,t(\"d3-quadtree\"),t(\"d3-collection\"),t(\"d3-dispatch\"),t(\"d3-timer\")):i(n.d3=n.d3||{},n.d3,n.d3,n.d3,n.d3)}(this,(function(t,e,r,n,i){\"use strict\";function a(t){return function(){return t}}function o(){return 1e-6*(Math.random()-.5)}function s(t){return t.x+t.vx}function l(t){return t.y+t.vy}function c(t){return t.index}function u(t,e){var r=t.get(e);if(!r)throw new Error(\"missing: \"+e);return r}function f(t){return t.x}function h(t){return t.y}var p=Math.PI*(3-Math.sqrt(5));t.forceCenter=function(t,e){var r;function n(){var n,i,a=r.length,o=0,s=0;for(n=0;n<a;++n)o+=(i=r[n]).x,s+=i.y;for(o=o/a-t,s=s/a-e,n=0;n<a;++n)(i=r[n]).x-=o,i.y-=s}return null==t&&(t=0),null==e&&(e=0),n.initialize=function(t){r=t},n.x=function(e){return arguments.length?(t=+e,n):t},n.y=function(t){return arguments.length?(e=+t,n):e},n},t.forceCollide=function(t){var r,n,i=1,c=1;function u(){for(var t,a,u,h,p,d,g,m=r.length,v=0;v<c;++v)for(a=e.quadtree(r,s,l).visitAfter(f),t=0;t<m;++t)u=r[t],d=n[u.index],g=d*d,h=u.x+u.vx,p=u.y+u.vy,a.visit(y);function y(t,e,r,n,a){var s=t.data,l=t.r,c=d+l;if(!s)return e>h+c||n<h-c||r>p+c||a<p-c;if(s.index>u.index){var f=h-s.x-s.vx,m=p-s.y-s.vy,v=f*f+m*m;v<c*c&&(0===f&&(v+=(f=o())*f),0===m&&(v+=(m=o())*m),v=(c-(v=Math.sqrt(v)))/v*i,u.vx+=(f*=v)*(c=(l*=l)/(g+l)),u.vy+=(m*=v)*c,s.vx-=f*(c=1-c),s.vy-=m*c)}}}function f(t){if(t.data)return t.r=n[t.data.index];for(var e=t.r=0;e<4;++e)t[e]&&t[e].r>t.r&&(t.r=t[e].r)}function h(){if(r){var e,i,a=r.length;for(n=new Array(a),e=0;e<a;++e)i=r[e],n[i.index]=+t(i,e,r)}}return\"function\"!=typeof t&&(t=a(null==t?1:+t)),u.initialize=function(t){r=t,h()},u.iterations=function(t){return arguments.length?(c=+t,u):c},u.strength=function(t){return arguments.length?(i=+t,u):i},u.radius=function(e){return arguments.length?(t=\"function\"==typeof e?e:a(+e),h(),u):t},u},t.forceLink=function(t){var e,n,i,s,l,f=c,h=function(t){return 1/Math.min(s[t.source.index],s[t.target.index])},p=a(30),d=1;function g(r){for(var i=0,a=t.length;i<d;++i)for(var s,c,u,f,h,p,g,m=0;m<a;++m)c=(s=t[m]).source,f=(u=s.target).x+u.vx-c.x-c.vx||o(),h=u.y+u.vy-c.y-c.vy||o(),f*=p=((p=Math.sqrt(f*f+h*h))-n[m])/p*r*e[m],h*=p,u.vx-=f*(g=l[m]),u.vy-=h*g,c.vx+=f*(g=1-g),c.vy+=h*g}function m(){if(i){var a,o,c=i.length,h=t.length,p=r.map(i,f);for(a=0,s=new Array(c);a<h;++a)(o=t[a]).index=a,\"object\"!=typeof o.source&&(o.source=u(p,o.source)),\"object\"!=typeof o.target&&(o.target=u(p,o.target)),s[o.source.index]=(s[o.source.index]||0)+1,s[o.target.index]=(s[o.target.index]||0)+1;for(a=0,l=new Array(h);a<h;++a)o=t[a],l[a]=s[o.source.index]/(s[o.source.index]+s[o.target.index]);e=new Array(h),v(),n=new Array(h),y()}}function v(){if(i)for(var r=0,n=t.length;r<n;++r)e[r]=+h(t[r],r,t)}function y(){if(i)for(var e=0,r=t.length;e<r;++e)n[e]=+p(t[e],e,t)}return null==t&&(t=[]),g.initialize=function(t){i=t,m()},g.links=function(e){return arguments.length?(t=e,m(),g):t},g.id=function(t){return arguments.length?(f=t,g):f},g.iterations=function(t){return arguments.length?(d=+t,g):d},g.strength=function(t){return arguments.length?(h=\"function\"==typeof t?t:a(+t),v(),g):h},g.distance=function(t){return arguments.length?(p=\"function\"==typeof t?t:a(+t),y(),g):p},g},t.forceManyBody=function(){var t,r,n,i,s=a(-30),l=1,c=1/0,u=.81;function p(i){var a,o=t.length,s=e.quadtree(t,f,h).visitAfter(g);for(n=i,a=0;a<o;++a)r=t[a],s.visit(m)}function d(){if(t){var e,r,n=t.length;for(i=new Array(n),e=0;e<n;++e)r=t[e],i[r.index]=+s(r,e,t)}}function g(t){var e,r,n,a,o,s=0,l=0;if(t.length){for(n=a=o=0;o<4;++o)(e=t[o])&&(r=Math.abs(e.value))&&(s+=e.value,l+=r,n+=r*e.x,a+=r*e.y);t.x=n/l,t.y=a/l}else{(e=t).x=e.data.x,e.y=e.data.y;do{s+=i[e.data.index]}while(e=e.next)}t.value=s}function m(t,e,a,s){if(!t.value)return!0;var f=t.x-r.x,h=t.y-r.y,p=s-e,d=f*f+h*h;if(p*p/u<d)return d<c&&(0===f&&(d+=(f=o())*f),0===h&&(d+=(h=o())*h),d<l&&(d=Math.sqrt(l*d)),r.vx+=f*t.value*n/d,r.vy+=h*t.value*n/d),!0;if(!(t.length||d>=c)){(t.data!==r||t.next)&&(0===f&&(d+=(f=o())*f),0===h&&(d+=(h=o())*h),d<l&&(d=Math.sqrt(l*d)));do{t.data!==r&&(p=i[t.data.index]*n/d,r.vx+=f*p,r.vy+=h*p)}while(t=t.next)}}return p.initialize=function(e){t=e,d()},p.strength=function(t){return arguments.length?(s=\"function\"==typeof t?t:a(+t),d(),p):s},p.distanceMin=function(t){return arguments.length?(l=t*t,p):Math.sqrt(l)},p.distanceMax=function(t){return arguments.length?(c=t*t,p):Math.sqrt(c)},p.theta=function(t){return arguments.length?(u=t*t,p):Math.sqrt(u)},p},t.forceRadial=function(t,e,r){var n,i,o,s=a(.1);function l(t){for(var a=0,s=n.length;a<s;++a){var l=n[a],c=l.x-e||1e-6,u=l.y-r||1e-6,f=Math.sqrt(c*c+u*u),h=(o[a]-f)*i[a]*t/f;l.vx+=c*h,l.vy+=u*h}}function c(){if(n){var e,r=n.length;for(i=new Array(r),o=new Array(r),e=0;e<r;++e)o[e]=+t(n[e],e,n),i[e]=isNaN(o[e])?0:+s(n[e],e,n)}}return\"function\"!=typeof t&&(t=a(+t)),null==e&&(e=0),null==r&&(r=0),l.initialize=function(t){n=t,c()},l.strength=function(t){return arguments.length?(s=\"function\"==typeof t?t:a(+t),c(),l):s},l.radius=function(e){return arguments.length?(t=\"function\"==typeof e?e:a(+e),c(),l):t},l.x=function(t){return arguments.length?(e=+t,l):e},l.y=function(t){return arguments.length?(r=+t,l):r},l},t.forceSimulation=function(t){var e,a=1,o=.001,s=1-Math.pow(o,1/300),l=0,c=.6,u=r.map(),f=i.timer(d),h=n.dispatch(\"tick\",\"end\");function d(){g(),h.call(\"tick\",e),a<o&&(f.stop(),h.call(\"end\",e))}function g(r){var n,i,o=t.length;void 0===r&&(r=1);for(var f=0;f<r;++f)for(a+=(l-a)*s,u.each((function(t){t(a)})),n=0;n<o;++n)null==(i=t[n]).fx?i.x+=i.vx*=c:(i.x=i.fx,i.vx=0),null==i.fy?i.y+=i.vy*=c:(i.y=i.fy,i.vy=0);return e}function m(){for(var e,r=0,n=t.length;r<n;++r){if((e=t[r]).index=r,null!=e.fx&&(e.x=e.fx),null!=e.fy&&(e.y=e.fy),isNaN(e.x)||isNaN(e.y)){var i=10*Math.sqrt(r),a=r*p;e.x=i*Math.cos(a),e.y=i*Math.sin(a)}(isNaN(e.vx)||isNaN(e.vy))&&(e.vx=e.vy=0)}}function v(e){return e.initialize&&e.initialize(t),e}return null==t&&(t=[]),m(),e={tick:g,restart:function(){return f.restart(d),e},stop:function(){return f.stop(),e},nodes:function(r){return arguments.length?(t=r,m(),u.each(v),e):t},alpha:function(t){return arguments.length?(a=+t,e):a},alphaMin:function(t){return arguments.length?(o=+t,e):o},alphaDecay:function(t){return arguments.length?(s=+t,e):+s},alphaTarget:function(t){return arguments.length?(l=+t,e):l},velocityDecay:function(t){return arguments.length?(c=1-t,e):1-c},force:function(t,r){return arguments.length>1?(null==r?u.remove(t):u.set(t,v(r)),e):u.get(t)},find:function(e,r,n){var i,a,o,s,l,c=0,u=t.length;for(null==n?n=1/0:n*=n,c=0;c<u;++c)(o=(i=e-(s=t[c]).x)*i+(a=r-s.y)*a)<n&&(l=s,n=o);return l},on:function(t,r){return arguments.length>1?(h.on(t,r),e):h.on(t)}}},t.forceX=function(t){var e,r,n,i=a(.1);function o(t){for(var i,a=0,o=e.length;a<o;++a)(i=e[a]).vx+=(n[a]-i.x)*r[a]*t}function s(){if(e){var a,o=e.length;for(r=new Array(o),n=new Array(o),a=0;a<o;++a)r[a]=isNaN(n[a]=+t(e[a],a,e))?0:+i(e[a],a,e)}}return\"function\"!=typeof t&&(t=a(null==t?0:+t)),o.initialize=function(t){e=t,s()},o.strength=function(t){return arguments.length?(i=\"function\"==typeof t?t:a(+t),s(),o):i},o.x=function(e){return arguments.length?(t=\"function\"==typeof e?e:a(+e),s(),o):t},o},t.forceY=function(t){var e,r,n,i=a(.1);function o(t){for(var i,a=0,o=e.length;a<o;++a)(i=e[a]).vy+=(n[a]-i.y)*r[a]*t}function s(){if(e){var a,o=e.length;for(r=new Array(o),n=new Array(o),a=0;a<o;++a)r[a]=isNaN(n[a]=+t(e[a],a,e))?0:+i(e[a],a,e)}}return\"function\"!=typeof t&&(t=a(null==t?0:+t)),o.initialize=function(t){e=t,s()},o.strength=function(t){return arguments.length?(i=\"function\"==typeof t?t:a(+t),s(),o):i},o.y=function(e){return arguments.length?(t=\"function\"==typeof e?e:a(+e),s(),o):t},o},Object.defineProperty(t,\"__esModule\",{value:!0})}))},{\"d3-collection\":157,\"d3-dispatch\":159,\"d3-quadtree\":164,\"d3-timer\":168}],161:[function(t,e,r){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){\"use strict\";function e(t,e){return t.parent===e.parent?1:2}function r(t,e){return t+e.x}function n(t,e){return Math.max(t,e.y)}function i(t){var e=0,r=t.children,n=r&&r.length;if(n)for(;--n>=0;)e+=r[n].value;else e=1;t.value=e}function a(t,e){var r,n,i,a,s,u=new c(t),f=+t.value&&(u.value=t.value),h=[u];for(null==e&&(e=o);r=h.pop();)if(f&&(r.value=+r.data.value),(i=e(r.data))&&(s=i.length))for(r.children=new Array(s),a=s-1;a>=0;--a)h.push(n=r.children[a]=new c(i[a])),n.parent=r,n.depth=r.depth+1;return u.eachBefore(l)}function o(t){return t.children}function s(t){t.data=t.data.data}function l(t){var e=0;do{t.height=e}while((t=t.parent)&&t.height<++e)}function c(t){this.data=t,this.depth=this.height=0,this.parent=null}c.prototype=a.prototype={constructor:c,count:function(){return this.eachAfter(i)},each:function(t){var e,r,n,i,a=this,o=[a];do{for(e=o.reverse(),o=[];a=e.pop();)if(t(a),r=a.children)for(n=0,i=r.length;n<i;++n)o.push(r[n])}while(o.length);return this},eachAfter:function(t){for(var e,r,n,i=this,a=[i],o=[];i=a.pop();)if(o.push(i),e=i.children)for(r=0,n=e.length;r<n;++r)a.push(e[r]);for(;i=o.pop();)t(i);return this},eachBefore:function(t){for(var e,r,n=this,i=[n];n=i.pop();)if(t(n),e=n.children)for(r=e.length-1;r>=0;--r)i.push(e[r]);return this},sum:function(t){return this.eachAfter((function(e){for(var r=+t(e.data)||0,n=e.children,i=n&&n.length;--i>=0;)r+=n[i].value;e.value=r}))},sort:function(t){return this.eachBefore((function(e){e.children&&e.children.sort(t)}))},path:function(t){for(var e=this,r=function(t,e){if(t===e)return t;var r=t.ancestors(),n=e.ancestors(),i=null;t=r.pop(),e=n.pop();for(;t===e;)i=t,t=r.pop(),e=n.pop();return i}(e,t),n=[e];e!==r;)e=e.parent,n.push(e);for(var i=n.length;t!==r;)n.splice(i,0,t),t=t.parent;return n},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){var t=[];return this.each((function(e){t.push(e)})),t},leaves:function(){var t=[];return this.eachBefore((function(e){e.children||t.push(e)})),t},links:function(){var t=this,e=[];return t.each((function(r){r!==t&&e.push({source:r.parent,target:r})})),e},copy:function(){return a(this).eachBefore(s)}};var u=Array.prototype.slice;function f(t){for(var e,r,n=0,i=(t=function(t){for(var e,r,n=t.length;n;)r=Math.random()*n--|0,e=t[n],t[n]=t[r],t[r]=e;return t}(u.call(t))).length,a=[];n<i;)e=t[n],r&&d(r,e)?++n:(r=m(a=h(a,e)),n=0);return r}function h(t,e){var r,n;if(g(e,t))return[e];for(r=0;r<t.length;++r)if(p(e,t[r])&&g(v(t[r],e),t))return[t[r],e];for(r=0;r<t.length-1;++r)for(n=r+1;n<t.length;++n)if(p(v(t[r],t[n]),e)&&p(v(t[r],e),t[n])&&p(v(t[n],e),t[r])&&g(y(t[r],t[n],e),t))return[t[r],t[n],e];throw new Error}function p(t,e){var r=t.r-e.r,n=e.x-t.x,i=e.y-t.y;return r<0||r*r<n*n+i*i}function d(t,e){var r=t.r-e.r+1e-6,n=e.x-t.x,i=e.y-t.y;return r>0&&r*r>n*n+i*i}function g(t,e){for(var r=0;r<e.length;++r)if(!d(t,e[r]))return!1;return!0}function m(t){switch(t.length){case 1:return{x:(e=t[0]).x,y:e.y,r:e.r};case 2:return v(t[0],t[1]);case 3:return y(t[0],t[1],t[2])}var e}function v(t,e){var r=t.x,n=t.y,i=t.r,a=e.x,o=e.y,s=e.r,l=a-r,c=o-n,u=s-i,f=Math.sqrt(l*l+c*c);return{x:(r+a+l/f*u)/2,y:(n+o+c/f*u)/2,r:(f+i+s)/2}}function y(t,e,r){var n=t.x,i=t.y,a=t.r,o=e.x,s=e.y,l=e.r,c=r.x,u=r.y,f=r.r,h=n-o,p=n-c,d=i-s,g=i-u,m=l-a,v=f-a,y=n*n+i*i-a*a,x=y-o*o-s*s+l*l,b=y-c*c-u*u+f*f,_=p*d-h*g,w=(d*b-g*x)/(2*_)-n,T=(g*m-d*v)/_,k=(p*x-h*b)/(2*_)-i,M=(h*v-p*m)/_,A=T*T+M*M-1,S=2*(a+w*T+k*M),E=w*w+k*k-a*a,C=-(A?(S+Math.sqrt(S*S-4*A*E))/(2*A):E/S);return{x:n+w+T*C,y:i+k+M*C,r:C}}function x(t,e,r){var n,i,a,o,s=t.x-e.x,l=t.y-e.y,c=s*s+l*l;c?(i=e.r+r.r,i*=i,o=t.r+r.r,i>(o*=o)?(n=(c+o-i)/(2*c),a=Math.sqrt(Math.max(0,o/c-n*n)),r.x=t.x-n*s-a*l,r.y=t.y-n*l+a*s):(n=(c+i-o)/(2*c),a=Math.sqrt(Math.max(0,i/c-n*n)),r.x=e.x+n*s-a*l,r.y=e.y+n*l+a*s)):(r.x=e.x+r.r,r.y=e.y)}function b(t,e){var r=t.r+e.r-1e-6,n=e.x-t.x,i=e.y-t.y;return r>0&&r*r>n*n+i*i}function _(t){var e=t._,r=t.next._,n=e.r+r.r,i=(e.x*r.r+r.x*e.r)/n,a=(e.y*r.r+r.y*e.r)/n;return i*i+a*a}function w(t){this._=t,this.next=null,this.previous=null}function T(t){if(!(i=t.length))return 0;var e,r,n,i,a,o,s,l,c,u,h;if((e=t[0]).x=0,e.y=0,!(i>1))return e.r;if(r=t[1],e.x=-r.r,r.x=e.r,r.y=0,!(i>2))return e.r+r.r;x(r,e,n=t[2]),e=new w(e),r=new w(r),n=new w(n),e.next=n.previous=r,r.next=e.previous=n,n.next=r.previous=e;t:for(s=3;s<i;++s){x(e._,r._,n=t[s]),n=new w(n),l=r.next,c=e.previous,u=r._.r,h=e._.r;do{if(u<=h){if(b(l._,n._)){r=l,e.next=r,r.previous=e,--s;continue t}u+=l._.r,l=l.next}else{if(b(c._,n._)){(e=c).next=r,r.previous=e,--s;continue t}h+=c._.r,c=c.previous}}while(l!==c.next);for(n.previous=e,n.next=r,e.next=r.previous=r=n,a=_(e);(n=n.next)!==r;)(o=_(n))<a&&(e=n,a=o);r=e.next}for(e=[r._],n=r;(n=n.next)!==r;)e.push(n._);for(n=f(e),s=0;s<i;++s)(e=t[s]).x-=n.x,e.y-=n.y;return n.r}function k(t){return null==t?null:M(t)}function M(t){if(\"function\"!=typeof t)throw new Error;return t}function A(){return 0}function S(t){return function(){return t}}function E(t){return Math.sqrt(t.value)}function C(t){return function(e){e.children||(e.r=Math.max(0,+t(e)||0))}}function L(t,e){return function(r){if(n=r.children){var n,i,a,o=n.length,s=t(r)*e||0;if(s)for(i=0;i<o;++i)n[i].r+=s;if(a=T(n),s)for(i=0;i<o;++i)n[i].r-=s;r.r=a+s}}}function I(t){return function(e){var r=e.parent;e.r*=t,r&&(e.x=r.x+t*e.x,e.y=r.y+t*e.y)}}function P(t){t.x0=Math.round(t.x0),t.y0=Math.round(t.y0),t.x1=Math.round(t.x1),t.y1=Math.round(t.y1)}function z(t,e,r,n,i){for(var a,o=t.children,s=-1,l=o.length,c=t.value&&(n-e)/t.value;++s<l;)(a=o[s]).y0=r,a.y1=i,a.x0=e,a.x1=e+=a.value*c}var O={depth:-1},D={};function R(t){return t.id}function F(t){return t.parentId}function B(t,e){return t.parent===e.parent?1:2}function N(t){var e=t.children;return e?e[0]:t.t}function j(t){var e=t.children;return e?e[e.length-1]:t.t}function U(t,e,r){var n=r/(e.i-t.i);e.c-=n,e.s+=r,t.c+=n,e.z+=r,e.m+=r}function V(t,e,r){return t.a.parent===e.parent?t.a:r}function q(t,e){this._=t,this.parent=null,this.children=null,this.A=null,this.a=this,this.z=0,this.m=0,this.c=0,this.s=0,this.t=null,this.i=e}function H(t,e,r,n,i){for(var a,o=t.children,s=-1,l=o.length,c=t.value&&(i-r)/t.value;++s<l;)(a=o[s]).x0=e,a.x1=n,a.y0=r,a.y1=r+=a.value*c}q.prototype=Object.create(c.prototype);var G=(1+Math.sqrt(5))/2;function Y(t,e,r,n,i,a){for(var o,s,l,c,u,f,h,p,d,g,m,v=[],y=e.children,x=0,b=0,_=y.length,w=e.value;x<_;){l=i-r,c=a-n;do{u=y[b++].value}while(!u&&b<_);for(f=h=u,m=u*u*(g=Math.max(c/l,l/c)/(w*t)),d=Math.max(h/m,m/f);b<_;++b){if(u+=s=y[b].value,s<f&&(f=s),s>h&&(h=s),m=u*u*g,(p=Math.max(h/m,m/f))>d){u-=s;break}d=p}v.push(o={value:u,dice:l<c,children:y.slice(x,b)}),o.dice?z(o,r,n,i,w?n+=c*u/w:a):H(o,r,n,w?r+=l*u/w:i,a),w-=u,x=b}return v}var W=function t(e){function r(t,r,n,i,a){Y(e,t,r,n,i,a)}return r.ratio=function(e){return t((e=+e)>1?e:1)},r}(G);var X=function t(e){function r(t,r,n,i,a){if((o=t._squarify)&&o.ratio===e)for(var o,s,l,c,u,f=-1,h=o.length,p=t.value;++f<h;){for(l=(s=o[f]).children,c=s.value=0,u=l.length;c<u;++c)s.value+=l[c].value;s.dice?z(s,r,n,i,n+=(a-n)*s.value/p):H(s,r,n,r+=(i-r)*s.value/p,a),p-=s.value}else t._squarify=o=Y(e,t,r,n,i,a),o.ratio=e}return r.ratio=function(e){return t((e=+e)>1?e:1)},r}(G);t.cluster=function(){var t=e,i=1,a=1,o=!1;function s(e){var s,l=0;e.eachAfter((function(e){var i=e.children;i?(e.x=function(t){return t.reduce(r,0)/t.length}(i),e.y=function(t){return 1+t.reduce(n,0)}(i)):(e.x=s?l+=t(e,s):0,e.y=0,s=e)}));var c=function(t){for(var e;e=t.children;)t=e[0];return t}(e),u=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(e),f=c.x-t(c,u)/2,h=u.x+t(u,c)/2;return e.eachAfter(o?function(t){t.x=(t.x-e.x)*i,t.y=(e.y-t.y)*a}:function(t){t.x=(t.x-f)/(h-f)*i,t.y=(1-(e.y?t.y/e.y:1))*a})}return s.separation=function(e){return arguments.length?(t=e,s):t},s.size=function(t){return arguments.length?(o=!1,i=+t[0],a=+t[1],s):o?null:[i,a]},s.nodeSize=function(t){return arguments.length?(o=!0,i=+t[0],a=+t[1],s):o?[i,a]:null},s},t.hierarchy=a,t.pack=function(){var t=null,e=1,r=1,n=A;function i(i){return i.x=e/2,i.y=r/2,t?i.eachBefore(C(t)).eachAfter(L(n,.5)).eachBefore(I(1)):i.eachBefore(C(E)).eachAfter(L(A,1)).eachAfter(L(n,i.r/Math.min(e,r))).eachBefore(I(Math.min(e,r)/(2*i.r))),i}return i.radius=function(e){return arguments.length?(t=k(e),i):t},i.size=function(t){return arguments.length?(e=+t[0],r=+t[1],i):[e,r]},i.padding=function(t){return arguments.length?(n=\"function\"==typeof t?t:S(+t),i):n},i},t.packEnclose=f,t.packSiblings=function(t){return T(t),t},t.partition=function(){var t=1,e=1,r=0,n=!1;function i(i){var a=i.height+1;return i.x0=i.y0=r,i.x1=t,i.y1=e/a,i.eachBefore(function(t,e){return function(n){n.children&&z(n,n.x0,t*(n.depth+1)/e,n.x1,t*(n.depth+2)/e);var i=n.x0,a=n.y0,o=n.x1-r,s=n.y1-r;o<i&&(i=o=(i+o)/2),s<a&&(a=s=(a+s)/2),n.x0=i,n.y0=a,n.x1=o,n.y1=s}}(e,a)),n&&i.eachBefore(P),i}return i.round=function(t){return arguments.length?(n=!!t,i):n},i.size=function(r){return arguments.length?(t=+r[0],e=+r[1],i):[t,e]},i.padding=function(t){return arguments.length?(r=+t,i):r},i},t.stratify=function(){var t=R,e=F;function r(r){var n,i,a,o,s,u,f,h=r.length,p=new Array(h),d={};for(i=0;i<h;++i)n=r[i],s=p[i]=new c(n),null!=(u=t(n,i,r))&&(u+=\"\")&&(d[f=\"$\"+(s.id=u)]=f in d?D:s);for(i=0;i<h;++i)if(s=p[i],null!=(u=e(r[i],i,r))&&(u+=\"\")){if(!(o=d[\"$\"+u]))throw new Error(\"missing: \"+u);if(o===D)throw new Error(\"ambiguous: \"+u);o.children?o.children.push(s):o.children=[s],s.parent=o}else{if(a)throw new Error(\"multiple roots\");a=s}if(!a)throw new Error(\"no root\");if(a.parent=O,a.eachBefore((function(t){t.depth=t.parent.depth+1,--h})).eachBefore(l),a.parent=null,h>0)throw new Error(\"cycle\");return a}return r.id=function(e){return arguments.length?(t=M(e),r):t},r.parentId=function(t){return arguments.length?(e=M(t),r):e},r},t.tree=function(){var t=B,e=1,r=1,n=null;function i(i){var l=function(t){for(var e,r,n,i,a,o=new q(t,0),s=[o];e=s.pop();)if(n=e._.children)for(e.children=new Array(a=n.length),i=a-1;i>=0;--i)s.push(r=e.children[i]=new q(n[i],i)),r.parent=e;return(o.parent=new q(null,0)).children=[o],o}(i);if(l.eachAfter(a),l.parent.m=-l.z,l.eachBefore(o),n)i.eachBefore(s);else{var c=i,u=i,f=i;i.eachBefore((function(t){t.x<c.x&&(c=t),t.x>u.x&&(u=t),t.depth>f.depth&&(f=t)}));var h=c===u?1:t(c,u)/2,p=h-c.x,d=e/(u.x+h+p),g=r/(f.depth||1);i.eachBefore((function(t){t.x=(t.x+p)*d,t.y=t.depth*g}))}return i}function a(e){var r=e.children,n=e.parent.children,i=e.i?n[e.i-1]:null;if(r){!function(t){for(var e,r=0,n=0,i=t.children,a=i.length;--a>=0;)(e=i[a]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(e);var a=(r[0].z+r[r.length-1].z)/2;i?(e.z=i.z+t(e._,i._),e.m=e.z-a):e.z=a}else i&&(e.z=i.z+t(e._,i._));e.parent.A=function(e,r,n){if(r){for(var i,a=e,o=e,s=r,l=a.parent.children[0],c=a.m,u=o.m,f=s.m,h=l.m;s=j(s),a=N(a),s&&a;)l=N(l),(o=j(o)).a=e,(i=s.z+f-a.z-c+t(s._,a._))>0&&(U(V(s,e,n),e,i),c+=i,u+=i),f+=s.m,c+=a.m,h+=l.m,u+=o.m;s&&!j(o)&&(o.t=s,o.m+=f-u),a&&!N(l)&&(l.t=a,l.m+=c-h,n=e)}return n}(e,i,e.parent.A||n[0])}function o(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function s(t){t.x*=e,t.y=t.depth*r}return i.separation=function(e){return arguments.length?(t=e,i):t},i.size=function(t){return arguments.length?(n=!1,e=+t[0],r=+t[1],i):n?null:[e,r]},i.nodeSize=function(t){return arguments.length?(n=!0,e=+t[0],r=+t[1],i):n?[e,r]:null},i},t.treemap=function(){var t=W,e=!1,r=1,n=1,i=[0],a=A,o=A,s=A,l=A,c=A;function u(t){return t.x0=t.y0=0,t.x1=r,t.y1=n,t.eachBefore(f),i=[0],e&&t.eachBefore(P),t}function f(e){var r=i[e.depth],n=e.x0+r,u=e.y0+r,f=e.x1-r,h=e.y1-r;f<n&&(n=f=(n+f)/2),h<u&&(u=h=(u+h)/2),e.x0=n,e.y0=u,e.x1=f,e.y1=h,e.children&&(r=i[e.depth+1]=a(e)/2,n+=c(e)-r,u+=o(e)-r,(f-=s(e)-r)<n&&(n=f=(n+f)/2),(h-=l(e)-r)<u&&(u=h=(u+h)/2),t(e,n,u,f,h))}return u.round=function(t){return arguments.length?(e=!!t,u):e},u.size=function(t){return arguments.length?(r=+t[0],n=+t[1],u):[r,n]},u.tile=function(e){return arguments.length?(t=M(e),u):t},u.padding=function(t){return arguments.length?u.paddingInner(t).paddingOuter(t):u.paddingInner()},u.paddingInner=function(t){return arguments.length?(a=\"function\"==typeof t?t:S(+t),u):a},u.paddingOuter=function(t){return arguments.length?u.paddingTop(t).paddingRight(t).paddingBottom(t).paddingLeft(t):u.paddingTop()},u.paddingTop=function(t){return arguments.length?(o=\"function\"==typeof t?t:S(+t),u):o},u.paddingRight=function(t){return arguments.length?(s=\"function\"==typeof t?t:S(+t),u):s},u.paddingBottom=function(t){return arguments.length?(l=\"function\"==typeof t?t:S(+t),u):l},u.paddingLeft=function(t){return arguments.length?(c=\"function\"==typeof t?t:S(+t),u):c},u},t.treemapBinary=function(t,e,r,n,i){var a,o,s=t.children,l=s.length,c=new Array(l+1);for(c[0]=o=a=0;a<l;++a)c[a+1]=o+=s[a].value;!function t(e,r,n,i,a,o,l){if(e>=r-1){var u=s[e];return u.x0=i,u.y0=a,u.x1=o,void(u.y1=l)}var f=c[e],h=n/2+f,p=e+1,d=r-1;for(;p<d;){var g=p+d>>>1;c[g]<h?p=g+1:d=g}h-c[p-1]<c[p]-h&&e+1<p&&--p;var m=c[p]-f,v=n-m;if(o-i>l-a){var y=(i*v+o*m)/n;t(e,p,m,i,a,y,l),t(p,r,v,y,a,o,l)}else{var x=(a*v+l*m)/n;t(e,p,m,i,a,o,x),t(p,r,v,i,x,o,l)}}(0,l,t.value,e,r,n,i)},t.treemapDice=z,t.treemapResquarify=X,t.treemapSlice=H,t.treemapSliceDice=function(t,e,r,n,i){(1&t.depth?H:z)(t,e,r,n,i)},t.treemapSquarify=W,Object.defineProperty(t,\"__esModule\",{value:!0})}))},{}],162:[function(t,e,r){!function(n,i){\"object\"==typeof r&&\"undefined\"!=typeof e?i(r,t(\"d3-color\")):i((n=n||self).d3=n.d3||{},n.d3)}(this,(function(t,e){\"use strict\";function r(t,e,r,n,i){var a=t*t,o=a*t;return((1-3*t+3*a-o)*e+(4-6*a+3*o)*r+(1+3*t+3*a-3*o)*n+o*i)/6}function n(t){var e=t.length-1;return function(n){var i=n<=0?n=0:n>=1?(n=1,e-1):Math.floor(n*e),a=t[i],o=t[i+1],s=i>0?t[i-1]:2*a-o,l=i<e-1?t[i+2]:2*o-a;return r((n-i/e)*e,s,a,o,l)}}function i(t){var e=t.length;return function(n){var i=Math.floor(((n%=1)<0?++n:n)*e),a=t[(i+e-1)%e],o=t[i%e],s=t[(i+1)%e],l=t[(i+2)%e];return r((n-i/e)*e,a,o,s,l)}}function a(t){return function(){return t}}function o(t,e){return function(r){return t+r*e}}function s(t,e){var r=e-t;return r?o(t,r>180||r<-180?r-360*Math.round(r/360):r):a(isNaN(t)?e:t)}function l(t){return 1==(t=+t)?c:function(e,r){return r-e?function(t,e,r){return t=Math.pow(t,r),e=Math.pow(e,r)-t,r=1/r,function(n){return Math.pow(t+n*e,r)}}(e,r,t):a(isNaN(e)?r:e)}}function c(t,e){var r=e-t;return r?o(t,r):a(isNaN(t)?e:t)}var u=function t(r){var n=l(r);function i(t,r){var i=n((t=e.rgb(t)).r,(r=e.rgb(r)).r),a=n(t.g,r.g),o=n(t.b,r.b),s=c(t.opacity,r.opacity);return function(e){return t.r=i(e),t.g=a(e),t.b=o(e),t.opacity=s(e),t+\"\"}}return i.gamma=t,i}(1);function f(t){return function(r){var n,i,a=r.length,o=new Array(a),s=new Array(a),l=new Array(a);for(n=0;n<a;++n)i=e.rgb(r[n]),o[n]=i.r||0,s[n]=i.g||0,l[n]=i.b||0;return o=t(o),s=t(s),l=t(l),i.opacity=1,function(t){return i.r=o(t),i.g=s(t),i.b=l(t),i+\"\"}}}var h=f(n),p=f(i);function d(t,e){e||(e=[]);var r,n=t?Math.min(e.length,t.length):0,i=e.slice();return function(a){for(r=0;r<n;++r)i[r]=t[r]*(1-a)+e[r]*a;return i}}function g(t){return ArrayBuffer.isView(t)&&!(t instanceof DataView)}function m(t,e){var r,n=e?e.length:0,i=t?Math.min(n,t.length):0,a=new Array(i),o=new Array(n);for(r=0;r<i;++r)a[r]=T(t[r],e[r]);for(;r<n;++r)o[r]=e[r];return function(t){for(r=0;r<i;++r)o[r]=a[r](t);return o}}function v(t,e){var r=new Date;return t=+t,e=+e,function(n){return r.setTime(t*(1-n)+e*n),r}}function y(t,e){return t=+t,e=+e,function(r){return t*(1-r)+e*r}}function x(t,e){var r,n={},i={};for(r in null!==t&&\"object\"==typeof t||(t={}),null!==e&&\"object\"==typeof e||(e={}),e)r in t?n[r]=T(t[r],e[r]):i[r]=e[r];return function(t){for(r in n)i[r]=n[r](t);return i}}var b=/[-+]?(?:\\d+\\.?\\d*|\\.?\\d+)(?:[eE][-+]?\\d+)?/g,_=new RegExp(b.source,\"g\");function w(t,e){var r,n,i,a=b.lastIndex=_.lastIndex=0,o=-1,s=[],l=[];for(t+=\"\",e+=\"\";(r=b.exec(t))&&(n=_.exec(e));)(i=n.index)>a&&(i=e.slice(a,i),s[o]?s[o]+=i:s[++o]=i),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:y(r,n)})),a=_.lastIndex;return a<e.length&&(i=e.slice(a),s[o]?s[o]+=i:s[++o]=i),s.length<2?l[0]?function(t){return function(e){return t(e)+\"\"}}(l[0].x):function(t){return function(){return t}}(e):(e=l.length,function(t){for(var r,n=0;n<e;++n)s[(r=l[n]).i]=r.x(t);return s.join(\"\")})}function T(t,r){var n,i=typeof r;return null==r||\"boolean\"===i?a(r):(\"number\"===i?y:\"string\"===i?(n=e.color(r))?(r=n,u):w:r instanceof e.color?u:r instanceof Date?v:g(r)?d:Array.isArray(r)?m:\"function\"!=typeof r.valueOf&&\"function\"!=typeof r.toString||isNaN(r)?x:y)(t,r)}var k,M,A,S,E=180/Math.PI,C={translateX:0,translateY:0,rotate:0,skewX:0,scaleX:1,scaleY:1};function L(t,e,r,n,i,a){var o,s,l;return(o=Math.sqrt(t*t+e*e))&&(t/=o,e/=o),(l=t*r+e*n)&&(r-=t*l,n-=e*l),(s=Math.sqrt(r*r+n*n))&&(r/=s,n/=s,l/=s),t*n<e*r&&(t=-t,e=-e,l=-l,o=-o),{translateX:i,translateY:a,rotate:Math.atan2(e,t)*E,skewX:Math.atan(l)*E,scaleX:o,scaleY:s}}function I(t,e,r,n){function i(t){return t.length?t.pop()+\" \":\"\"}return function(a,o){var s=[],l=[];return a=t(a),o=t(o),function(t,n,i,a,o,s){if(t!==i||n!==a){var l=o.push(\"translate(\",null,e,null,r);s.push({i:l-4,x:y(t,i)},{i:l-2,x:y(n,a)})}else(i||a)&&o.push(\"translate(\"+i+e+a+r)}(a.translateX,a.translateY,o.translateX,o.translateY,s,l),function(t,e,r,a){t!==e?(t-e>180?e+=360:e-t>180&&(t+=360),a.push({i:r.push(i(r)+\"rotate(\",null,n)-2,x:y(t,e)})):e&&r.push(i(r)+\"rotate(\"+e+n)}(a.rotate,o.rotate,s,l),function(t,e,r,a){t!==e?a.push({i:r.push(i(r)+\"skewX(\",null,n)-2,x:y(t,e)}):e&&r.push(i(r)+\"skewX(\"+e+n)}(a.skewX,o.skewX,s,l),function(t,e,r,n,a,o){if(t!==r||e!==n){var s=a.push(i(a)+\"scale(\",null,\",\",null,\")\");o.push({i:s-4,x:y(t,r)},{i:s-2,x:y(e,n)})}else 1===r&&1===n||a.push(i(a)+\"scale(\"+r+\",\"+n+\")\")}(a.scaleX,a.scaleY,o.scaleX,o.scaleY,s,l),a=o=null,function(t){for(var e,r=-1,n=l.length;++r<n;)s[(e=l[r]).i]=e.x(t);return s.join(\"\")}}}var P=I((function(t){return\"none\"===t?C:(k||(k=document.createElement(\"DIV\"),M=document.documentElement,A=document.defaultView),k.style.transform=t,t=A.getComputedStyle(M.appendChild(k),null).getPropertyValue(\"transform\"),M.removeChild(k),L(+(t=t.slice(7,-1).split(\",\"))[0],+t[1],+t[2],+t[3],+t[4],+t[5]))}),\"px, \",\"px)\",\"deg)\"),z=I((function(t){return null==t?C:(S||(S=document.createElementNS(\"http://www.w3.org/2000/svg\",\"g\")),S.setAttribute(\"transform\",t),(t=S.transform.baseVal.consolidate())?L((t=t.matrix).a,t.b,t.c,t.d,t.e,t.f):C)}),\", \",\")\",\")\"),O=Math.SQRT2;function D(t){return((t=Math.exp(t))+1/t)/2}function R(t){return function(r,n){var i=t((r=e.hsl(r)).h,(n=e.hsl(n)).h),a=c(r.s,n.s),o=c(r.l,n.l),s=c(r.opacity,n.opacity);return function(t){return r.h=i(t),r.s=a(t),r.l=o(t),r.opacity=s(t),r+\"\"}}}var F=R(s),B=R(c);function N(t){return function(r,n){var i=t((r=e.hcl(r)).h,(n=e.hcl(n)).h),a=c(r.c,n.c),o=c(r.l,n.l),s=c(r.opacity,n.opacity);return function(t){return r.h=i(t),r.c=a(t),r.l=o(t),r.opacity=s(t),r+\"\"}}}var j=N(s),U=N(c);function V(t){return function r(n){function i(r,i){var a=t((r=e.cubehelix(r)).h,(i=e.cubehelix(i)).h),o=c(r.s,i.s),s=c(r.l,i.l),l=c(r.opacity,i.opacity);return function(t){return r.h=a(t),r.s=o(t),r.l=s(Math.pow(t,n)),r.opacity=l(t),r+\"\"}}return n=+n,i.gamma=r,i}(1)}var q=V(s),H=V(c);t.interpolate=T,t.interpolateArray=function(t,e){return(g(e)?d:m)(t,e)},t.interpolateBasis=n,t.interpolateBasisClosed=i,t.interpolateCubehelix=q,t.interpolateCubehelixLong=H,t.interpolateDate=v,t.interpolateDiscrete=function(t){var e=t.length;return function(r){return t[Math.max(0,Math.min(e-1,Math.floor(r*e)))]}},t.interpolateHcl=j,t.interpolateHclLong=U,t.interpolateHsl=F,t.interpolateHslLong=B,t.interpolateHue=function(t,e){var r=s(+t,+e);return function(t){var e=r(t);return e-360*Math.floor(e/360)}},t.interpolateLab=function(t,r){var n=c((t=e.lab(t)).l,(r=e.lab(r)).l),i=c(t.a,r.a),a=c(t.b,r.b),o=c(t.opacity,r.opacity);return function(e){return t.l=n(e),t.a=i(e),t.b=a(e),t.opacity=o(e),t+\"\"}},t.interpolateNumber=y,t.interpolateNumberArray=d,t.interpolateObject=x,t.interpolateRgb=u,t.interpolateRgbBasis=h,t.interpolateRgbBasisClosed=p,t.interpolateRound=function(t,e){return t=+t,e=+e,function(r){return Math.round(t*(1-r)+e*r)}},t.interpolateString=w,t.interpolateTransformCss=P,t.interpolateTransformSvg=z,t.interpolateZoom=function(t,e){var r,n,i=t[0],a=t[1],o=t[2],s=e[0],l=e[1],c=e[2],u=s-i,f=l-a,h=u*u+f*f;if(h<1e-12)n=Math.log(c/o)/O,r=function(t){return[i+t*u,a+t*f,o*Math.exp(O*t*n)]};else{var p=Math.sqrt(h),d=(c*c-o*o+4*h)/(2*o*2*p),g=(c*c-o*o-4*h)/(2*c*2*p),m=Math.log(Math.sqrt(d*d+1)-d),v=Math.log(Math.sqrt(g*g+1)-g);n=(v-m)/O,r=function(t){var e,r=t*n,s=D(m),l=o/(2*p)*(s*(e=O*r+m,((e=Math.exp(2*e))-1)/(e+1))-function(t){return((t=Math.exp(t))-1/t)/2}(m));return[i+l*u,a+l*f,o*s/D(O*r+m)]}}return r.duration=1e3*n,r},t.piecewise=function(t,e){for(var r=0,n=e.length-1,i=e[0],a=new Array(n<0?0:n);r<n;)a[r]=t(i,i=e[++r]);return function(t){var e=Math.max(0,Math.min(n-1,Math.floor(t*=n)));return a[e](t-e)}},t.quantize=function(t,e){for(var r=new Array(e),n=0;n<e;++n)r[n]=t(n/(e-1));return r},Object.defineProperty(t,\"__esModule\",{value:!0})}))},{\"d3-color\":158}],163:[function(t,e,r){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){\"use strict\";var e=Math.PI,r=2*e,n=r-1e-6;function i(){this._x0=this._y0=this._x1=this._y1=null,this._=\"\"}function a(){return new i}i.prototype=a.prototype={constructor:i,moveTo:function(t,e){this._+=\"M\"+(this._x0=this._x1=+t)+\",\"+(this._y0=this._y1=+e)},closePath:function(){null!==this._x1&&(this._x1=this._x0,this._y1=this._y0,this._+=\"Z\")},lineTo:function(t,e){this._+=\"L\"+(this._x1=+t)+\",\"+(this._y1=+e)},quadraticCurveTo:function(t,e,r,n){this._+=\"Q\"+ +t+\",\"+ +e+\",\"+(this._x1=+r)+\",\"+(this._y1=+n)},bezierCurveTo:function(t,e,r,n,i,a){this._+=\"C\"+ +t+\",\"+ +e+\",\"+ +r+\",\"+ +n+\",\"+(this._x1=+i)+\",\"+(this._y1=+a)},arcTo:function(t,r,n,i,a){t=+t,r=+r,n=+n,i=+i,a=+a;var o=this._x1,s=this._y1,l=n-t,c=i-r,u=o-t,f=s-r,h=u*u+f*f;if(a<0)throw new Error(\"negative radius: \"+a);if(null===this._x1)this._+=\"M\"+(this._x1=t)+\",\"+(this._y1=r);else if(h>1e-6)if(Math.abs(f*l-c*u)>1e-6&&a){var p=n-o,d=i-s,g=l*l+c*c,m=p*p+d*d,v=Math.sqrt(g),y=Math.sqrt(h),x=a*Math.tan((e-Math.acos((g+h-m)/(2*v*y)))/2),b=x/y,_=x/v;Math.abs(b-1)>1e-6&&(this._+=\"L\"+(t+b*u)+\",\"+(r+b*f)),this._+=\"A\"+a+\",\"+a+\",0,0,\"+ +(f*p>u*d)+\",\"+(this._x1=t+_*l)+\",\"+(this._y1=r+_*c)}else this._+=\"L\"+(this._x1=t)+\",\"+(this._y1=r);else;},arc:function(t,i,a,o,s,l){t=+t,i=+i,l=!!l;var c=(a=+a)*Math.cos(o),u=a*Math.sin(o),f=t+c,h=i+u,p=1^l,d=l?o-s:s-o;if(a<0)throw new Error(\"negative radius: \"+a);null===this._x1?this._+=\"M\"+f+\",\"+h:(Math.abs(this._x1-f)>1e-6||Math.abs(this._y1-h)>1e-6)&&(this._+=\"L\"+f+\",\"+h),a&&(d<0&&(d=d%r+r),d>n?this._+=\"A\"+a+\",\"+a+\",0,1,\"+p+\",\"+(t-c)+\",\"+(i-u)+\"A\"+a+\",\"+a+\",0,1,\"+p+\",\"+(this._x1=f)+\",\"+(this._y1=h):d>1e-6&&(this._+=\"A\"+a+\",\"+a+\",0,\"+ +(d>=e)+\",\"+p+\",\"+(this._x1=t+a*Math.cos(s))+\",\"+(this._y1=i+a*Math.sin(s))))},rect:function(t,e,r,n){this._+=\"M\"+(this._x0=this._x1=+t)+\",\"+(this._y0=this._y1=+e)+\"h\"+ +r+\"v\"+ +n+\"h\"+-r+\"Z\"},toString:function(){return this._}},t.path=a,Object.defineProperty(t,\"__esModule\",{value:!0})}))},{}],164:[function(t,e,r){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){\"use strict\";function e(t,e,r,n){if(isNaN(e)||isNaN(r))return t;var i,a,o,s,l,c,u,f,h,p=t._root,d={data:n},g=t._x0,m=t._y0,v=t._x1,y=t._y1;if(!p)return t._root=d,t;for(;p.length;)if((c=e>=(a=(g+v)/2))?g=a:v=a,(u=r>=(o=(m+y)/2))?m=o:y=o,i=p,!(p=p[f=u<<1|c]))return i[f]=d,t;if(s=+t._x.call(null,p.data),l=+t._y.call(null,p.data),e===s&&r===l)return d.next=p,i?i[f]=d:t._root=d,t;do{i=i?i[f]=new Array(4):t._root=new Array(4),(c=e>=(a=(g+v)/2))?g=a:v=a,(u=r>=(o=(m+y)/2))?m=o:y=o}while((f=u<<1|c)==(h=(l>=o)<<1|s>=a));return i[h]=p,i[f]=d,t}function r(t,e,r,n,i){this.node=t,this.x0=e,this.y0=r,this.x1=n,this.y1=i}function n(t){return t[0]}function i(t){return t[1]}function a(t,e,r){var a=new o(null==e?n:e,null==r?i:r,NaN,NaN,NaN,NaN);return null==t?a:a.addAll(t)}function o(t,e,r,n,i,a){this._x=t,this._y=e,this._x0=r,this._y0=n,this._x1=i,this._y1=a,this._root=void 0}function s(t){for(var e={data:t.data},r=e;t=t.next;)r=r.next={data:t.data};return e}var l=a.prototype=o.prototype;l.copy=function(){var t,e,r=new o(this._x,this._y,this._x0,this._y0,this._x1,this._y1),n=this._root;if(!n)return r;if(!n.length)return r._root=s(n),r;for(t=[{source:n,target:r._root=new Array(4)}];n=t.pop();)for(var i=0;i<4;++i)(e=n.source[i])&&(e.length?t.push({source:e,target:n.target[i]=new Array(4)}):n.target[i]=s(e));return r},l.add=function(t){var r=+this._x.call(null,t),n=+this._y.call(null,t);return e(this.cover(r,n),r,n,t)},l.addAll=function(t){var r,n,i,a,o=t.length,s=new Array(o),l=new Array(o),c=1/0,u=1/0,f=-1/0,h=-1/0;for(n=0;n<o;++n)isNaN(i=+this._x.call(null,r=t[n]))||isNaN(a=+this._y.call(null,r))||(s[n]=i,l[n]=a,i<c&&(c=i),i>f&&(f=i),a<u&&(u=a),a>h&&(h=a));if(c>f||u>h)return this;for(this.cover(c,u).cover(f,h),n=0;n<o;++n)e(this,s[n],l[n],t[n]);return this},l.cover=function(t,e){if(isNaN(t=+t)||isNaN(e=+e))return this;var r=this._x0,n=this._y0,i=this._x1,a=this._y1;if(isNaN(r))i=(r=Math.floor(t))+1,a=(n=Math.floor(e))+1;else{for(var o,s,l=i-r,c=this._root;r>t||t>=i||n>e||e>=a;)switch(s=(e<n)<<1|t<r,(o=new Array(4))[s]=c,c=o,l*=2,s){case 0:i=r+l,a=n+l;break;case 1:r=i-l,a=n+l;break;case 2:i=r+l,n=a-l;break;case 3:r=i-l,n=a-l}this._root&&this._root.length&&(this._root=c)}return this._x0=r,this._y0=n,this._x1=i,this._y1=a,this},l.data=function(){var t=[];return this.visit((function(e){if(!e.length)do{t.push(e.data)}while(e=e.next)})),t},l.extent=function(t){return arguments.length?this.cover(+t[0][0],+t[0][1]).cover(+t[1][0],+t[1][1]):isNaN(this._x0)?void 0:[[this._x0,this._y0],[this._x1,this._y1]]},l.find=function(t,e,n){var i,a,o,s,l,c,u,f=this._x0,h=this._y0,p=this._x1,d=this._y1,g=[],m=this._root;for(m&&g.push(new r(m,f,h,p,d)),null==n?n=1/0:(f=t-n,h=e-n,p=t+n,d=e+n,n*=n);c=g.pop();)if(!(!(m=c.node)||(a=c.x0)>p||(o=c.y0)>d||(s=c.x1)<f||(l=c.y1)<h))if(m.length){var v=(a+s)/2,y=(o+l)/2;g.push(new r(m[3],v,y,s,l),new r(m[2],a,y,v,l),new r(m[1],v,o,s,y),new r(m[0],a,o,v,y)),(u=(e>=y)<<1|t>=v)&&(c=g[g.length-1],g[g.length-1]=g[g.length-1-u],g[g.length-1-u]=c)}else{var x=t-+this._x.call(null,m.data),b=e-+this._y.call(null,m.data),_=x*x+b*b;if(_<n){var w=Math.sqrt(n=_);f=t-w,h=e-w,p=t+w,d=e+w,i=m.data}}return i},l.remove=function(t){if(isNaN(a=+this._x.call(null,t))||isNaN(o=+this._y.call(null,t)))return this;var e,r,n,i,a,o,s,l,c,u,f,h,p=this._root,d=this._x0,g=this._y0,m=this._x1,v=this._y1;if(!p)return this;if(p.length)for(;;){if((c=a>=(s=(d+m)/2))?d=s:m=s,(u=o>=(l=(g+v)/2))?g=l:v=l,e=p,!(p=p[f=u<<1|c]))return this;if(!p.length)break;(e[f+1&3]||e[f+2&3]||e[f+3&3])&&(r=e,h=f)}for(;p.data!==t;)if(n=p,!(p=p.next))return this;return(i=p.next)&&delete p.next,n?(i?n.next=i:delete n.next,this):e?(i?e[f]=i:delete e[f],(p=e[0]||e[1]||e[2]||e[3])&&p===(e[3]||e[2]||e[1]||e[0])&&!p.length&&(r?r[h]=p:this._root=p),this):(this._root=i,this)},l.removeAll=function(t){for(var e=0,r=t.length;e<r;++e)this.remove(t[e]);return this},l.root=function(){return this._root},l.size=function(){var t=0;return this.visit((function(e){if(!e.length)do{++t}while(e=e.next)})),t},l.visit=function(t){var e,n,i,a,o,s,l=[],c=this._root;for(c&&l.push(new r(c,this._x0,this._y0,this._x1,this._y1));e=l.pop();)if(!t(c=e.node,i=e.x0,a=e.y0,o=e.x1,s=e.y1)&&c.length){var u=(i+o)/2,f=(a+s)/2;(n=c[3])&&l.push(new r(n,u,f,o,s)),(n=c[2])&&l.push(new r(n,i,f,u,s)),(n=c[1])&&l.push(new r(n,u,a,o,f)),(n=c[0])&&l.push(new r(n,i,a,u,f))}return this},l.visitAfter=function(t){var e,n=[],i=[];for(this._root&&n.push(new r(this._root,this._x0,this._y0,this._x1,this._y1));e=n.pop();){var a=e.node;if(a.length){var o,s=e.x0,l=e.y0,c=e.x1,u=e.y1,f=(s+c)/2,h=(l+u)/2;(o=a[0])&&n.push(new r(o,s,l,f,h)),(o=a[1])&&n.push(new r(o,f,l,c,h)),(o=a[2])&&n.push(new r(o,s,h,f,u)),(o=a[3])&&n.push(new r(o,f,h,c,u))}i.push(e)}for(;e=i.pop();)t(e.node,e.x0,e.y0,e.x1,e.y1);return this},l.x=function(t){return arguments.length?(this._x=t,this):this._x},l.y=function(t){return arguments.length?(this._y=t,this):this._y},t.quadtree=a,Object.defineProperty(t,\"__esModule\",{value:!0})}))},{}],165:[function(t,e,r){!function(n,i){\"object\"==typeof r&&\"undefined\"!=typeof e?i(r,t(\"d3-path\")):i((n=n||self).d3=n.d3||{},n.d3)}(this,(function(t,e){\"use strict\";function r(t){return function(){return t}}var n=Math.abs,i=Math.atan2,a=Math.cos,o=Math.max,s=Math.min,l=Math.sin,c=Math.sqrt,u=Math.PI,f=u/2,h=2*u;function p(t){return t>1?0:t<-1?u:Math.acos(t)}function d(t){return t>=1?f:t<=-1?-f:Math.asin(t)}function g(t){return t.innerRadius}function m(t){return t.outerRadius}function v(t){return t.startAngle}function y(t){return t.endAngle}function x(t){return t&&t.padAngle}function b(t,e,r,n,i,a,o,s){var l=r-t,c=n-e,u=o-i,f=s-a,h=f*l-u*c;if(!(h*h<1e-12))return[t+(h=(u*(e-a)-f*(t-i))/h)*l,e+h*c]}function _(t,e,r,n,i,a,s){var l=t-r,u=e-n,f=(s?a:-a)/c(l*l+u*u),h=f*u,p=-f*l,d=t+h,g=e+p,m=r+h,v=n+p,y=(d+m)/2,x=(g+v)/2,b=m-d,_=v-g,w=b*b+_*_,T=i-a,k=d*v-m*g,M=(_<0?-1:1)*c(o(0,T*T*w-k*k)),A=(k*_-b*M)/w,S=(-k*b-_*M)/w,E=(k*_+b*M)/w,C=(-k*b+_*M)/w,L=A-y,I=S-x,P=E-y,z=C-x;return L*L+I*I>P*P+z*z&&(A=E,S=C),{cx:A,cy:S,x01:-h,y01:-p,x11:A*(i/T-1),y11:S*(i/T-1)}}function w(t){this._context=t}function T(t){return new w(t)}function k(t){return t[0]}function M(t){return t[1]}function A(){var t=k,n=M,i=r(!0),a=null,o=T,s=null;function l(r){var l,c,u,f=r.length,h=!1;for(null==a&&(s=o(u=e.path())),l=0;l<=f;++l)!(l<f&&i(c=r[l],l,r))===h&&((h=!h)?s.lineStart():s.lineEnd()),h&&s.point(+t(c,l,r),+n(c,l,r));if(u)return s=null,u+\"\"||null}return l.x=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),l):t},l.y=function(t){return arguments.length?(n=\"function\"==typeof t?t:r(+t),l):n},l.defined=function(t){return arguments.length?(i=\"function\"==typeof t?t:r(!!t),l):i},l.curve=function(t){return arguments.length?(o=t,null!=a&&(s=o(a)),l):o},l.context=function(t){return arguments.length?(null==t?a=s=null:s=o(a=t),l):a},l}function S(){var t=k,n=null,i=r(0),a=M,o=r(!0),s=null,l=T,c=null;function u(r){var u,f,h,p,d,g=r.length,m=!1,v=new Array(g),y=new Array(g);for(null==s&&(c=l(d=e.path())),u=0;u<=g;++u){if(!(u<g&&o(p=r[u],u,r))===m)if(m=!m)f=u,c.areaStart(),c.lineStart();else{for(c.lineEnd(),c.lineStart(),h=u-1;h>=f;--h)c.point(v[h],y[h]);c.lineEnd(),c.areaEnd()}m&&(v[u]=+t(p,u,r),y[u]=+i(p,u,r),c.point(n?+n(p,u,r):v[u],a?+a(p,u,r):y[u]))}if(d)return c=null,d+\"\"||null}function f(){return A().defined(o).curve(l).context(s)}return u.x=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),n=null,u):t},u.x0=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),u):t},u.x1=function(t){return arguments.length?(n=null==t?null:\"function\"==typeof t?t:r(+t),u):n},u.y=function(t){return arguments.length?(i=\"function\"==typeof t?t:r(+t),a=null,u):i},u.y0=function(t){return arguments.length?(i=\"function\"==typeof t?t:r(+t),u):i},u.y1=function(t){return arguments.length?(a=null==t?null:\"function\"==typeof t?t:r(+t),u):a},u.lineX0=u.lineY0=function(){return f().x(t).y(i)},u.lineY1=function(){return f().x(t).y(a)},u.lineX1=function(){return f().x(n).y(i)},u.defined=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(!!t),u):o},u.curve=function(t){return arguments.length?(l=t,null!=s&&(c=l(s)),u):l},u.context=function(t){return arguments.length?(null==t?s=c=null:c=l(s=t),u):s},u}function E(t,e){return e<t?-1:e>t?1:e>=t?0:NaN}function C(t){return t}w.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}};var L=P(T);function I(t){this._curve=t}function P(t){function e(e){return new I(t(e))}return e._curve=t,e}function z(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function O(){return z(A().curve(L))}function D(){var t=S().curve(L),e=t.curve,r=t.lineX0,n=t.lineX1,i=t.lineY0,a=t.lineY1;return t.angle=t.x,delete t.x,t.startAngle=t.x0,delete t.x0,t.endAngle=t.x1,delete t.x1,t.radius=t.y,delete t.y,t.innerRadius=t.y0,delete t.y0,t.outerRadius=t.y1,delete t.y1,t.lineStartAngle=function(){return z(r())},delete t.lineX0,t.lineEndAngle=function(){return z(n())},delete t.lineX1,t.lineInnerRadius=function(){return z(i())},delete t.lineY0,t.lineOuterRadius=function(){return z(a())},delete t.lineY1,t.curve=function(t){return arguments.length?e(P(t)):e()._curve},t}function R(t,e){return[(e=+e)*Math.cos(t-=Math.PI/2),e*Math.sin(t)]}I.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),e*-Math.cos(t))}};var F=Array.prototype.slice;function B(t){return t.source}function N(t){return t.target}function j(t){var n=B,i=N,a=k,o=M,s=null;function l(){var r,l=F.call(arguments),c=n.apply(this,l),u=i.apply(this,l);if(s||(s=r=e.path()),t(s,+a.apply(this,(l[0]=c,l)),+o.apply(this,l),+a.apply(this,(l[0]=u,l)),+o.apply(this,l)),r)return s=null,r+\"\"||null}return l.source=function(t){return arguments.length?(n=t,l):n},l.target=function(t){return arguments.length?(i=t,l):i},l.x=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(+t),l):a},l.y=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(+t),l):o},l.context=function(t){return arguments.length?(s=null==t?null:t,l):s},l}function U(t,e,r,n,i){t.moveTo(e,r),t.bezierCurveTo(e=(e+n)/2,r,e,i,n,i)}function V(t,e,r,n,i){t.moveTo(e,r),t.bezierCurveTo(e,r=(r+i)/2,n,r,n,i)}function q(t,e,r,n,i){var a=R(e,r),o=R(e,r=(r+i)/2),s=R(n,r),l=R(n,i);t.moveTo(a[0],a[1]),t.bezierCurveTo(o[0],o[1],s[0],s[1],l[0],l[1])}var H={draw:function(t,e){var r=Math.sqrt(e/u);t.moveTo(r,0),t.arc(0,0,r,0,h)}},G={draw:function(t,e){var r=Math.sqrt(e/5)/2;t.moveTo(-3*r,-r),t.lineTo(-r,-r),t.lineTo(-r,-3*r),t.lineTo(r,-3*r),t.lineTo(r,-r),t.lineTo(3*r,-r),t.lineTo(3*r,r),t.lineTo(r,r),t.lineTo(r,3*r),t.lineTo(-r,3*r),t.lineTo(-r,r),t.lineTo(-3*r,r),t.closePath()}},Y=Math.sqrt(1/3),W=2*Y,X={draw:function(t,e){var r=Math.sqrt(e/W),n=r*Y;t.moveTo(0,-r),t.lineTo(n,0),t.lineTo(0,r),t.lineTo(-n,0),t.closePath()}},Z=Math.sin(u/10)/Math.sin(7*u/10),J=Math.sin(h/10)*Z,K=-Math.cos(h/10)*Z,Q={draw:function(t,e){var r=Math.sqrt(.8908130915292852*e),n=J*r,i=K*r;t.moveTo(0,-r),t.lineTo(n,i);for(var a=1;a<5;++a){var o=h*a/5,s=Math.cos(o),l=Math.sin(o);t.lineTo(l*r,-s*r),t.lineTo(s*n-l*i,l*n+s*i)}t.closePath()}},$={draw:function(t,e){var r=Math.sqrt(e),n=-r/2;t.rect(n,n,r,r)}},tt=Math.sqrt(3),et={draw:function(t,e){var r=-Math.sqrt(e/(3*tt));t.moveTo(0,2*r),t.lineTo(-tt*r,-r),t.lineTo(tt*r,-r),t.closePath()}},rt=-.5,nt=Math.sqrt(3)/2,it=1/Math.sqrt(12),at=3*(it/2+1),ot={draw:function(t,e){var r=Math.sqrt(e/at),n=r/2,i=r*it,a=n,o=r*it+r,s=-a,l=o;t.moveTo(n,i),t.lineTo(a,o),t.lineTo(s,l),t.lineTo(rt*n-nt*i,nt*n+rt*i),t.lineTo(rt*a-nt*o,nt*a+rt*o),t.lineTo(rt*s-nt*l,nt*s+rt*l),t.lineTo(rt*n+nt*i,rt*i-nt*n),t.lineTo(rt*a+nt*o,rt*o-nt*a),t.lineTo(rt*s+nt*l,rt*l-nt*s),t.closePath()}},st=[H,G,X,$,Q,et,ot];function lt(){}function ct(t,e,r){t._context.bezierCurveTo((2*t._x0+t._x1)/3,(2*t._y0+t._y1)/3,(t._x0+2*t._x1)/3,(t._y0+2*t._y1)/3,(t._x0+4*t._x1+e)/6,(t._y0+4*t._y1+r)/6)}function ut(t){this._context=t}function ft(t){this._context=t}function ht(t){this._context=t}function pt(t,e){this._basis=new ut(t),this._beta=e}ut.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){switch(this._point){case 3:ct(this,this._x1,this._y1);case 2:this._context.lineTo(this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,this._context.lineTo((5*this._x0+this._x1)/6,(5*this._y0+this._y1)/6);default:ct(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ft.prototype={areaStart:lt,areaEnd:lt,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._y0=this._y1=this._y2=this._y3=this._y4=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x2,this._y2),this._context.closePath();break;case 2:this._context.moveTo((this._x2+2*this._x3)/3,(this._y2+2*this._y3)/3),this._context.lineTo((this._x3+2*this._x2)/3,(this._y3+2*this._y2)/3),this._context.closePath();break;case 3:this.point(this._x2,this._y2),this.point(this._x3,this._y3),this.point(this._x4,this._y4)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x2=t,this._y2=e;break;case 1:this._point=2,this._x3=t,this._y3=e;break;case 2:this._point=3,this._x4=t,this._y4=e,this._context.moveTo((this._x0+4*this._x1+t)/6,(this._y0+4*this._y1+e)/6);break;default:ct(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},ht.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3;var r=(this._x0+4*this._x1+t)/6,n=(this._y0+4*this._y1+e)/6;this._line?this._context.lineTo(r,n):this._context.moveTo(r,n);break;case 3:this._point=4;default:ct(this,t,e)}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e}},pt.prototype={lineStart:function(){this._x=[],this._y=[],this._basis.lineStart()},lineEnd:function(){var t=this._x,e=this._y,r=t.length-1;if(r>0)for(var n,i=t[0],a=e[0],o=t[r]-i,s=e[r]-a,l=-1;++l<=r;)n=l/r,this._basis.point(this._beta*t[l]+(1-this._beta)*(i+n*o),this._beta*e[l]+(1-this._beta)*(a+n*s));this._x=this._y=null,this._basis.lineEnd()},point:function(t,e){this._x.push(+t),this._y.push(+e)}};var dt=function t(e){function r(t){return 1===e?new ut(t):new pt(t,e)}return r.beta=function(e){return t(+e)},r}(.85);function gt(t,e,r){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-r),t._x2,t._y2)}function mt(t,e){this._context=t,this._k=(1-e)/6}mt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:gt(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:gt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var vt=function t(e){function r(t){return new mt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function yt(t,e){this._context=t,this._k=(1-e)/6}yt.prototype={areaStart:lt,areaEnd:lt,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:gt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var xt=function t(e){function r(t){return new yt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function bt(t,e){this._context=t,this._k=(1-e)/6}bt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:gt(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var _t=function t(e){function r(t){return new bt(t,e)}return r.tension=function(e){return t(+e)},r}(0);function wt(t,e,r){var n=t._x1,i=t._y1,a=t._x2,o=t._y2;if(t._l01_a>1e-12){var s=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,l=3*t._l01_a*(t._l01_a+t._l12_a);n=(n*s-t._x0*t._l12_2a+t._x2*t._l01_2a)/l,i=(i*s-t._y0*t._l12_2a+t._y2*t._l01_2a)/l}if(t._l23_a>1e-12){var c=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,u=3*t._l23_a*(t._l23_a+t._l12_a);a=(a*c+t._x1*t._l23_2a-e*t._l12_2a)/u,o=(o*c+t._y1*t._l23_2a-r*t._l12_2a)/u}t._context.bezierCurveTo(n,i,a,o,t._x2,t._y2)}function Tt(t,e){this._context=t,this._alpha=e}Tt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:wt(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var kt=function t(e){function r(t){return e?new Tt(t,e):new mt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Mt(t,e){this._context=t,this._alpha=e}Mt.prototype={areaStart:lt,areaEnd:lt,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:wt(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var At=function t(e){function r(t){return e?new Mt(t,e):new yt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function St(t,e){this._context=t,this._alpha=e}St.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){(this._line||0!==this._line&&3===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t=+t,e=+e,this._point){var r=this._x2-t,n=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(r*r+n*n,this._alpha))}switch(this._point){case 0:this._point=1;break;case 1:this._point=2;break;case 2:this._point=3,this._line?this._context.lineTo(this._x2,this._y2):this._context.moveTo(this._x2,this._y2);break;case 3:this._point=4;default:wt(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};var Et=function t(e){function r(t){return e?new St(t,e):new bt(t,0)}return r.alpha=function(e){return t(+e)},r}(.5);function Ct(t){this._context=t}function Lt(t){return t<0?-1:1}function It(t,e,r){var n=t._x1-t._x0,i=e-t._x1,a=(t._y1-t._y0)/(n||i<0&&-0),o=(r-t._y1)/(i||n<0&&-0),s=(a*i+o*n)/(n+i);return(Lt(a)+Lt(o))*Math.min(Math.abs(a),Math.abs(o),.5*Math.abs(s))||0}function Pt(t,e){var r=t._x1-t._x0;return r?(3*(t._y1-t._y0)/r-e)/2:e}function zt(t,e,r){var n=t._x0,i=t._y0,a=t._x1,o=t._y1,s=(a-n)/3;t._context.bezierCurveTo(n+s,i+s*e,a-s,o-s*r,a,o)}function Ot(t){this._context=t}function Dt(t){this._context=new Rt(t)}function Rt(t){this._context=t}function Ft(t){this._context=t}function Bt(t){var e,r,n=t.length-1,i=new Array(n),a=new Array(n),o=new Array(n);for(i[0]=0,a[0]=2,o[0]=t[0]+2*t[1],e=1;e<n-1;++e)i[e]=1,a[e]=4,o[e]=4*t[e]+2*t[e+1];for(i[n-1]=2,a[n-1]=7,o[n-1]=8*t[n-1]+t[n],e=1;e<n;++e)r=i[e]/a[e-1],a[e]-=r,o[e]-=r*o[e-1];for(i[n-1]=o[n-1]/a[n-1],e=n-2;e>=0;--e)i[e]=(o[e]-i[e+1])/a[e];for(a[n-1]=(t[n]+i[n-1])/2,e=0;e<n-1;++e)a[e]=2*t[e+1]-i[e+1];return[i,a]}function Nt(t,e){this._context=t,this._t=e}function jt(t,e){if((i=t.length)>1)for(var r,n,i,a=1,o=t[e[0]],s=o.length;a<i;++a)for(n=o,o=t[e[a]],r=0;r<s;++r)o[r][1]+=o[r][0]=isNaN(n[r][1])?n[r][0]:n[r][1]}function Ut(t){for(var e=t.length,r=new Array(e);--e>=0;)r[e]=e;return r}function Vt(t,e){return t[e]}function qt(t){var e=t.map(Ht);return Ut(t).sort((function(t,r){return e[t]-e[r]}))}function Ht(t){for(var e,r=-1,n=0,i=t.length,a=-1/0;++r<i;)(e=+t[r][1])>a&&(a=e,n=r);return n}function Gt(t){var e=t.map(Yt);return Ut(t).sort((function(t,r){return e[t]-e[r]}))}function Yt(t){for(var e,r=0,n=-1,i=t.length;++n<i;)(e=+t[n][1])&&(r+=e);return r}Ct.prototype={areaStart:lt,areaEnd:lt,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,e){t=+t,e=+e,this._point?this._context.lineTo(t,e):(this._point=1,this._context.moveTo(t,e))}},Ot.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:zt(this,this._t0,Pt(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){var r=NaN;if(e=+e,(t=+t)!==this._x1||e!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,zt(this,Pt(this,r=It(this,t,e)),r);break;default:zt(this,this._t0,r=It(this,t,e))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e,this._t0=r}}},(Dt.prototype=Object.create(Ot.prototype)).point=function(t,e){Ot.prototype.point.call(this,e,t)},Rt.prototype={moveTo:function(t,e){this._context.moveTo(e,t)},closePath:function(){this._context.closePath()},lineTo:function(t,e){this._context.lineTo(e,t)},bezierCurveTo:function(t,e,r,n,i,a){this._context.bezierCurveTo(e,t,n,r,a,i)}},Ft.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=[],this._y=[]},lineEnd:function(){var t=this._x,e=this._y,r=t.length;if(r)if(this._line?this._context.lineTo(t[0],e[0]):this._context.moveTo(t[0],e[0]),2===r)this._context.lineTo(t[1],e[1]);else for(var n=Bt(t),i=Bt(e),a=0,o=1;o<r;++a,++o)this._context.bezierCurveTo(n[0][a],i[0][a],n[1][a],i[1][a],t[o],e[o]);(this._line||0!==this._line&&1===r)&&this._context.closePath(),this._line=1-this._line,this._x=this._y=null},point:function(t,e){this._x.push(+t),this._y.push(+e)}},Nt.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0<this._t&&this._t<1&&2===this._point&&this._context.lineTo(this._x,this._y),(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line>=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t=+t,e=+e,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var r=this._x*(1-this._t)+t*this._t;this._context.lineTo(r,this._y),this._context.lineTo(r,e)}}this._x=t,this._y=e}},t.arc=function(){var t=g,o=m,w=r(0),T=null,k=v,M=y,A=x,S=null;function E(){var r,g,m=+t.apply(this,arguments),v=+o.apply(this,arguments),y=k.apply(this,arguments)-f,x=M.apply(this,arguments)-f,E=n(x-y),C=x>y;if(S||(S=r=e.path()),v<m&&(g=v,v=m,m=g),v>1e-12)if(E>h-1e-12)S.moveTo(v*a(y),v*l(y)),S.arc(0,0,v,y,x,!C),m>1e-12&&(S.moveTo(m*a(x),m*l(x)),S.arc(0,0,m,x,y,C));else{var L,I,P=y,z=x,O=y,D=x,R=E,F=E,B=A.apply(this,arguments)/2,N=B>1e-12&&(T?+T.apply(this,arguments):c(m*m+v*v)),j=s(n(v-m)/2,+w.apply(this,arguments)),U=j,V=j;if(N>1e-12){var q=d(N/m*l(B)),H=d(N/v*l(B));(R-=2*q)>1e-12?(O+=q*=C?1:-1,D-=q):(R=0,O=D=(y+x)/2),(F-=2*H)>1e-12?(P+=H*=C?1:-1,z-=H):(F=0,P=z=(y+x)/2)}var G=v*a(P),Y=v*l(P),W=m*a(D),X=m*l(D);if(j>1e-12){var Z,J=v*a(z),K=v*l(z),Q=m*a(O),$=m*l(O);if(E<u&&(Z=b(G,Y,Q,$,J,K,W,X))){var tt=G-Z[0],et=Y-Z[1],rt=J-Z[0],nt=K-Z[1],it=1/l(p((tt*rt+et*nt)/(c(tt*tt+et*et)*c(rt*rt+nt*nt)))/2),at=c(Z[0]*Z[0]+Z[1]*Z[1]);U=s(j,(m-at)/(it-1)),V=s(j,(v-at)/(it+1))}}F>1e-12?V>1e-12?(L=_(Q,$,G,Y,v,V,C),I=_(J,K,W,X,v,V,C),S.moveTo(L.cx+L.x01,L.cy+L.y01),V<j?S.arc(L.cx,L.cy,V,i(L.y01,L.x01),i(I.y01,I.x01),!C):(S.arc(L.cx,L.cy,V,i(L.y01,L.x01),i(L.y11,L.x11),!C),S.arc(0,0,v,i(L.cy+L.y11,L.cx+L.x11),i(I.cy+I.y11,I.cx+I.x11),!C),S.arc(I.cx,I.cy,V,i(I.y11,I.x11),i(I.y01,I.x01),!C))):(S.moveTo(G,Y),S.arc(0,0,v,P,z,!C)):S.moveTo(G,Y),m>1e-12&&R>1e-12?U>1e-12?(L=_(W,X,J,K,m,-U,C),I=_(G,Y,Q,$,m,-U,C),S.lineTo(L.cx+L.x01,L.cy+L.y01),U<j?S.arc(L.cx,L.cy,U,i(L.y01,L.x01),i(I.y01,I.x01),!C):(S.arc(L.cx,L.cy,U,i(L.y01,L.x01),i(L.y11,L.x11),!C),S.arc(0,0,m,i(L.cy+L.y11,L.cx+L.x11),i(I.cy+I.y11,I.cx+I.x11),C),S.arc(I.cx,I.cy,U,i(I.y11,I.x11),i(I.y01,I.x01),!C))):S.arc(0,0,m,D,O,C):S.lineTo(W,X)}else S.moveTo(0,0);if(S.closePath(),r)return S=null,r+\"\"||null}return E.centroid=function(){var e=(+t.apply(this,arguments)+ +o.apply(this,arguments))/2,r=(+k.apply(this,arguments)+ +M.apply(this,arguments))/2-u/2;return[a(r)*e,l(r)*e]},E.innerRadius=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),E):t},E.outerRadius=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(+t),E):o},E.cornerRadius=function(t){return arguments.length?(w=\"function\"==typeof t?t:r(+t),E):w},E.padRadius=function(t){return arguments.length?(T=null==t?null:\"function\"==typeof t?t:r(+t),E):T},E.startAngle=function(t){return arguments.length?(k=\"function\"==typeof t?t:r(+t),E):k},E.endAngle=function(t){return arguments.length?(M=\"function\"==typeof t?t:r(+t),E):M},E.padAngle=function(t){return arguments.length?(A=\"function\"==typeof t?t:r(+t),E):A},E.context=function(t){return arguments.length?(S=null==t?null:t,E):S},E},t.area=S,t.areaRadial=D,t.curveBasis=function(t){return new ut(t)},t.curveBasisClosed=function(t){return new ft(t)},t.curveBasisOpen=function(t){return new ht(t)},t.curveBundle=dt,t.curveCardinal=vt,t.curveCardinalClosed=xt,t.curveCardinalOpen=_t,t.curveCatmullRom=kt,t.curveCatmullRomClosed=At,t.curveCatmullRomOpen=Et,t.curveLinear=T,t.curveLinearClosed=function(t){return new Ct(t)},t.curveMonotoneX=function(t){return new Ot(t)},t.curveMonotoneY=function(t){return new Dt(t)},t.curveNatural=function(t){return new Ft(t)},t.curveStep=function(t){return new Nt(t,.5)},t.curveStepAfter=function(t){return new Nt(t,1)},t.curveStepBefore=function(t){return new Nt(t,0)},t.line=A,t.lineRadial=O,t.linkHorizontal=function(){return j(U)},t.linkRadial=function(){var t=j(q);return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t},t.linkVertical=function(){return j(V)},t.pie=function(){var t=C,e=E,n=null,i=r(0),a=r(h),o=r(0);function s(r){var s,l,c,u,f,p=r.length,d=0,g=new Array(p),m=new Array(p),v=+i.apply(this,arguments),y=Math.min(h,Math.max(-h,a.apply(this,arguments)-v)),x=Math.min(Math.abs(y)/p,o.apply(this,arguments)),b=x*(y<0?-1:1);for(s=0;s<p;++s)(f=m[g[s]=s]=+t(r[s],s,r))>0&&(d+=f);for(null!=e?g.sort((function(t,r){return e(m[t],m[r])})):null!=n&&g.sort((function(t,e){return n(r[t],r[e])})),s=0,c=d?(y-p*b)/d:0;s<p;++s,v=u)l=g[s],u=v+((f=m[l])>0?f*c:0)+b,m[l]={data:r[l],index:s,value:f,startAngle:v,endAngle:u,padAngle:x};return m}return s.value=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(+e),s):t},s.sortValues=function(t){return arguments.length?(e=t,n=null,s):e},s.sort=function(t){return arguments.length?(n=t,e=null,s):n},s.startAngle=function(t){return arguments.length?(i=\"function\"==typeof t?t:r(+t),s):i},s.endAngle=function(t){return arguments.length?(a=\"function\"==typeof t?t:r(+t),s):a},s.padAngle=function(t){return arguments.length?(o=\"function\"==typeof t?t:r(+t),s):o},s},t.pointRadial=R,t.radialArea=D,t.radialLine=O,t.stack=function(){var t=r([]),e=Ut,n=jt,i=Vt;function a(r){var a,o,s=t.apply(this,arguments),l=r.length,c=s.length,u=new Array(c);for(a=0;a<c;++a){for(var f,h=s[a],p=u[a]=new Array(l),d=0;d<l;++d)p[d]=f=[0,+i(r[d],h,d,r)],f.data=r[d];p.key=h}for(a=0,o=e(u);a<c;++a)u[o[a]].index=a;return n(u,o),u}return a.keys=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(F.call(e)),a):t},a.value=function(t){return arguments.length?(i=\"function\"==typeof t?t:r(+t),a):i},a.order=function(t){return arguments.length?(e=null==t?Ut:\"function\"==typeof t?t:r(F.call(t)),a):e},a.offset=function(t){return arguments.length?(n=null==t?jt:t,a):n},a},t.stackOffsetDiverging=function(t,e){if((s=t.length)>0)for(var r,n,i,a,o,s,l=0,c=t[e[0]].length;l<c;++l)for(a=o=0,r=0;r<s;++r)(i=(n=t[e[r]][l])[1]-n[0])>0?(n[0]=a,n[1]=a+=i):i<0?(n[1]=o,n[0]=o+=i):(n[0]=0,n[1]=i)},t.stackOffsetExpand=function(t,e){if((n=t.length)>0){for(var r,n,i,a=0,o=t[0].length;a<o;++a){for(i=r=0;r<n;++r)i+=t[r][a][1]||0;if(i)for(r=0;r<n;++r)t[r][a][1]/=i}jt(t,e)}},t.stackOffsetNone=jt,t.stackOffsetSilhouette=function(t,e){if((r=t.length)>0){for(var r,n=0,i=t[e[0]],a=i.length;n<a;++n){for(var o=0,s=0;o<r;++o)s+=t[o][n][1]||0;i[n][1]+=i[n][0]=-s/2}jt(t,e)}},t.stackOffsetWiggle=function(t,e){if((i=t.length)>0&&(n=(r=t[e[0]]).length)>0){for(var r,n,i,a=0,o=1;o<n;++o){for(var s=0,l=0,c=0;s<i;++s){for(var u=t[e[s]],f=u[o][1]||0,h=(f-(u[o-1][1]||0))/2,p=0;p<s;++p){var d=t[e[p]];h+=(d[o][1]||0)-(d[o-1][1]||0)}l+=f,c+=h*f}r[o-1][1]+=r[o-1][0]=a,l&&(a-=c/l)}r[o-1][1]+=r[o-1][0]=a,jt(t,e)}},t.stackOrderAppearance=qt,t.stackOrderAscending=Gt,t.stackOrderDescending=function(t){return Gt(t).reverse()},t.stackOrderInsideOut=function(t){var e,r,n=t.length,i=t.map(Yt),a=qt(t),o=0,s=0,l=[],c=[];for(e=0;e<n;++e)r=a[e],o<s?(o+=i[r],l.push(r)):(s+=i[r],c.push(r));return c.reverse().concat(l)},t.stackOrderNone=Ut,t.stackOrderReverse=function(t){return Ut(t).reverse()},t.symbol=function(){var t=r(H),n=r(64),i=null;function a(){var r;if(i||(i=r=e.path()),t.apply(this,arguments).draw(i,+n.apply(this,arguments)),r)return i=null,r+\"\"||null}return a.type=function(e){return arguments.length?(t=\"function\"==typeof e?e:r(e),a):t},a.size=function(t){return arguments.length?(n=\"function\"==typeof t?t:r(+t),a):n},a.context=function(t){return arguments.length?(i=null==t?null:t,a):i},a},t.symbolCircle=H,t.symbolCross=G,t.symbolDiamond=X,t.symbolSquare=$,t.symbolStar=Q,t.symbolTriangle=et,t.symbolWye=ot,t.symbols=st,Object.defineProperty(t,\"__esModule\",{value:!0})}))},{\"d3-path\":163}],166:[function(t,e,r){!function(n,i){\"object\"==typeof r&&\"undefined\"!=typeof e?i(r,t(\"d3-time\")):i((n=n||self).d3=n.d3||{},n.d3)}(this,(function(t,e){\"use strict\";function r(t){if(0<=t.y&&t.y<100){var e=new Date(-1,t.m,t.d,t.H,t.M,t.S,t.L);return e.setFullYear(t.y),e}return new Date(t.y,t.m,t.d,t.H,t.M,t.S,t.L)}function n(t){if(0<=t.y&&t.y<100){var e=new Date(Date.UTC(-1,t.m,t.d,t.H,t.M,t.S,t.L));return e.setUTCFullYear(t.y),e}return new Date(Date.UTC(t.y,t.m,t.d,t.H,t.M,t.S,t.L))}function i(t,e,r){return{y:t,m:e,d:r,H:0,M:0,S:0,L:0}}function a(t){var a=t.dateTime,o=t.date,l=t.time,c=t.periods,u=t.days,f=t.shortDays,h=t.months,yt=t.shortMonths,xt=p(c),bt=d(c),_t=p(u),wt=d(u),Tt=p(f),kt=d(f),Mt=p(h),At=d(h),St=p(yt),Et=d(yt),Ct={a:function(t){return f[t.getDay()]},A:function(t){return u[t.getDay()]},b:function(t){return yt[t.getMonth()]},B:function(t){return h[t.getMonth()]},c:null,d:D,e:D,f:j,H:R,I:F,j:B,L:N,m:U,M:V,p:function(t){return c[+(t.getHours()>=12)]},q:function(t){return 1+~~(t.getMonth()/3)},Q:mt,s:vt,S:q,u:H,U:G,V:Y,w:W,W:X,x:null,X:null,y:Z,Y:J,Z:K,\"%\":gt},Lt={a:function(t){return f[t.getUTCDay()]},A:function(t){return u[t.getUTCDay()]},b:function(t){return yt[t.getUTCMonth()]},B:function(t){return h[t.getUTCMonth()]},c:null,d:Q,e:Q,f:nt,H:$,I:tt,j:et,L:rt,m:it,M:at,p:function(t){return c[+(t.getUTCHours()>=12)]},q:function(t){return 1+~~(t.getUTCMonth()/3)},Q:mt,s:vt,S:ot,u:st,U:lt,V:ct,w:ut,W:ft,x:null,X:null,y:ht,Y:pt,Z:dt,\"%\":gt},It={a:function(t,e,r){var n=Tt.exec(e.slice(r));return n?(t.w=kt[n[0].toLowerCase()],r+n[0].length):-1},A:function(t,e,r){var n=_t.exec(e.slice(r));return n?(t.w=wt[n[0].toLowerCase()],r+n[0].length):-1},b:function(t,e,r){var n=St.exec(e.slice(r));return n?(t.m=Et[n[0].toLowerCase()],r+n[0].length):-1},B:function(t,e,r){var n=Mt.exec(e.slice(r));return n?(t.m=At[n[0].toLowerCase()],r+n[0].length):-1},c:function(t,e,r){return Ot(t,a,e,r)},d:M,e:M,f:I,H:S,I:S,j:A,L:L,m:k,M:E,p:function(t,e,r){var n=xt.exec(e.slice(r));return n?(t.p=bt[n[0].toLowerCase()],r+n[0].length):-1},q:T,Q:z,s:O,S:C,u:m,U:v,V:y,w:g,W:x,x:function(t,e,r){return Ot(t,o,e,r)},X:function(t,e,r){return Ot(t,l,e,r)},y:_,Y:b,Z:w,\"%\":P};function Pt(t,e){return function(r){var n,i,a,o=[],l=-1,c=0,u=t.length;for(r instanceof Date||(r=new Date(+r));++l<u;)37===t.charCodeAt(l)&&(o.push(t.slice(c,l)),null!=(i=s[n=t.charAt(++l)])?n=t.charAt(++l):i=\"e\"===n?\" \":\"0\",(a=e[n])&&(n=a(r,i)),o.push(n),c=l+1);return o.push(t.slice(c,l)),o.join(\"\")}}function zt(t,a){return function(o){var s,l,c=i(1900,void 0,1);if(Ot(c,t,o+=\"\",0)!=o.length)return null;if(\"Q\"in c)return new Date(c.Q);if(\"s\"in c)return new Date(1e3*c.s+(\"L\"in c?c.L:0));if(a&&!(\"Z\"in c)&&(c.Z=0),\"p\"in c&&(c.H=c.H%12+12*c.p),void 0===c.m&&(c.m=\"q\"in c?c.q:0),\"V\"in c){if(c.V<1||c.V>53)return null;\"w\"in c||(c.w=1),\"Z\"in c?(l=(s=n(i(c.y,0,1))).getUTCDay(),s=l>4||0===l?e.utcMonday.ceil(s):e.utcMonday(s),s=e.utcDay.offset(s,7*(c.V-1)),c.y=s.getUTCFullYear(),c.m=s.getUTCMonth(),c.d=s.getUTCDate()+(c.w+6)%7):(l=(s=r(i(c.y,0,1))).getDay(),s=l>4||0===l?e.timeMonday.ceil(s):e.timeMonday(s),s=e.timeDay.offset(s,7*(c.V-1)),c.y=s.getFullYear(),c.m=s.getMonth(),c.d=s.getDate()+(c.w+6)%7)}else(\"W\"in c||\"U\"in c)&&(\"w\"in c||(c.w=\"u\"in c?c.u%7:\"W\"in c?1:0),l=\"Z\"in c?n(i(c.y,0,1)).getUTCDay():r(i(c.y,0,1)).getDay(),c.m=0,c.d=\"W\"in c?(c.w+6)%7+7*c.W-(l+5)%7:c.w+7*c.U-(l+6)%7);return\"Z\"in c?(c.H+=c.Z/100|0,c.M+=c.Z%100,n(c)):r(c)}}function Ot(t,e,r,n){for(var i,a,o=0,l=e.length,c=r.length;o<l;){if(n>=c)return-1;if(37===(i=e.charCodeAt(o++))){if(i=e.charAt(o++),!(a=It[i in s?e.charAt(o++):i])||(n=a(t,r,n))<0)return-1}else if(i!=r.charCodeAt(n++))return-1}return n}return Ct.x=Pt(o,Ct),Ct.X=Pt(l,Ct),Ct.c=Pt(a,Ct),Lt.x=Pt(o,Lt),Lt.X=Pt(l,Lt),Lt.c=Pt(a,Lt),{format:function(t){var e=Pt(t+=\"\",Ct);return e.toString=function(){return t},e},parse:function(t){var e=zt(t+=\"\",!1);return e.toString=function(){return t},e},utcFormat:function(t){var e=Pt(t+=\"\",Lt);return e.toString=function(){return t},e},utcParse:function(t){var e=zt(t+=\"\",!0);return e.toString=function(){return t},e}}}var o,s={\"-\":\"\",_:\" \",0:\"0\"},l=/^\\s*\\d+/,c=/^%/,u=/[\\\\^$*+?|[\\]().{}]/g;function f(t,e,r){var n=t<0?\"-\":\"\",i=(n?-t:t)+\"\",a=i.length;return n+(a<r?new Array(r-a+1).join(e)+i:i)}function h(t){return t.replace(u,\"\\\\$&\")}function p(t){return new RegExp(\"^(?:\"+t.map(h).join(\"|\")+\")\",\"i\")}function d(t){for(var e={},r=-1,n=t.length;++r<n;)e[t[r].toLowerCase()]=r;return e}function g(t,e,r){var n=l.exec(e.slice(r,r+1));return n?(t.w=+n[0],r+n[0].length):-1}function m(t,e,r){var n=l.exec(e.slice(r,r+1));return n?(t.u=+n[0],r+n[0].length):-1}function v(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.U=+n[0],r+n[0].length):-1}function y(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.V=+n[0],r+n[0].length):-1}function x(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.W=+n[0],r+n[0].length):-1}function b(t,e,r){var n=l.exec(e.slice(r,r+4));return n?(t.y=+n[0],r+n[0].length):-1}function _(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.y=+n[0]+(+n[0]>68?1900:2e3),r+n[0].length):-1}function w(t,e,r){var n=/^(Z)|([+-]\\d\\d)(?::?(\\d\\d))?/.exec(e.slice(r,r+6));return n?(t.Z=n[1]?0:-(n[2]+(n[3]||\"00\")),r+n[0].length):-1}function T(t,e,r){var n=l.exec(e.slice(r,r+1));return n?(t.q=3*n[0]-3,r+n[0].length):-1}function k(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.m=n[0]-1,r+n[0].length):-1}function M(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.d=+n[0],r+n[0].length):-1}function A(t,e,r){var n=l.exec(e.slice(r,r+3));return n?(t.m=0,t.d=+n[0],r+n[0].length):-1}function S(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.H=+n[0],r+n[0].length):-1}function E(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.M=+n[0],r+n[0].length):-1}function C(t,e,r){var n=l.exec(e.slice(r,r+2));return n?(t.S=+n[0],r+n[0].length):-1}function L(t,e,r){var n=l.exec(e.slice(r,r+3));return n?(t.L=+n[0],r+n[0].length):-1}function I(t,e,r){var n=l.exec(e.slice(r,r+6));return n?(t.L=Math.floor(n[0]/1e3),r+n[0].length):-1}function P(t,e,r){var n=c.exec(e.slice(r,r+1));return n?r+n[0].length:-1}function z(t,e,r){var n=l.exec(e.slice(r));return n?(t.Q=+n[0],r+n[0].length):-1}function O(t,e,r){var n=l.exec(e.slice(r));return n?(t.s=+n[0],r+n[0].length):-1}function D(t,e){return f(t.getDate(),e,2)}function R(t,e){return f(t.getHours(),e,2)}function F(t,e){return f(t.getHours()%12||12,e,2)}function B(t,r){return f(1+e.timeDay.count(e.timeYear(t),t),r,3)}function N(t,e){return f(t.getMilliseconds(),e,3)}function j(t,e){return N(t,e)+\"000\"}function U(t,e){return f(t.getMonth()+1,e,2)}function V(t,e){return f(t.getMinutes(),e,2)}function q(t,e){return f(t.getSeconds(),e,2)}function H(t){var e=t.getDay();return 0===e?7:e}function G(t,r){return f(e.timeSunday.count(e.timeYear(t)-1,t),r,2)}function Y(t,r){var n=t.getDay();return t=n>=4||0===n?e.timeThursday(t):e.timeThursday.ceil(t),f(e.timeThursday.count(e.timeYear(t),t)+(4===e.timeYear(t).getDay()),r,2)}function W(t){return t.getDay()}function X(t,r){return f(e.timeMonday.count(e.timeYear(t)-1,t),r,2)}function Z(t,e){return f(t.getFullYear()%100,e,2)}function J(t,e){return f(t.getFullYear()%1e4,e,4)}function K(t){var e=t.getTimezoneOffset();return(e>0?\"-\":(e*=-1,\"+\"))+f(e/60|0,\"0\",2)+f(e%60,\"0\",2)}function Q(t,e){return f(t.getUTCDate(),e,2)}function $(t,e){return f(t.getUTCHours(),e,2)}function tt(t,e){return f(t.getUTCHours()%12||12,e,2)}function et(t,r){return f(1+e.utcDay.count(e.utcYear(t),t),r,3)}function rt(t,e){return f(t.getUTCMilliseconds(),e,3)}function nt(t,e){return rt(t,e)+\"000\"}function it(t,e){return f(t.getUTCMonth()+1,e,2)}function at(t,e){return f(t.getUTCMinutes(),e,2)}function ot(t,e){return f(t.getUTCSeconds(),e,2)}function st(t){var e=t.getUTCDay();return 0===e?7:e}function lt(t,r){return f(e.utcSunday.count(e.utcYear(t)-1,t),r,2)}function ct(t,r){var n=t.getUTCDay();return t=n>=4||0===n?e.utcThursday(t):e.utcThursday.ceil(t),f(e.utcThursday.count(e.utcYear(t),t)+(4===e.utcYear(t).getUTCDay()),r,2)}function ut(t){return t.getUTCDay()}function ft(t,r){return f(e.utcMonday.count(e.utcYear(t)-1,t),r,2)}function ht(t,e){return f(t.getUTCFullYear()%100,e,2)}function pt(t,e){return f(t.getUTCFullYear()%1e4,e,4)}function dt(){return\"+0000\"}function gt(){return\"%\"}function mt(t){return+t}function vt(t){return Math.floor(+t/1e3)}function yt(e){return o=a(e),t.timeFormat=o.format,t.timeParse=o.parse,t.utcFormat=o.utcFormat,t.utcParse=o.utcParse,o}yt({dateTime:\"%x, %X\",date:\"%-m/%-d/%Y\",time:\"%-I:%M:%S %p\",periods:[\"AM\",\"PM\"],days:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],shortDays:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],months:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],shortMonths:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]});var xt=Date.prototype.toISOString?function(t){return t.toISOString()}:t.utcFormat(\"%Y-%m-%dT%H:%M:%S.%LZ\");var bt=+new Date(\"2000-01-01T00:00:00.000Z\")?function(t){var e=new Date(t);return isNaN(e)?null:e}:t.utcParse(\"%Y-%m-%dT%H:%M:%S.%LZ\");t.isoFormat=xt,t.isoParse=bt,t.timeFormatDefaultLocale=yt,t.timeFormatLocale=a,Object.defineProperty(t,\"__esModule\",{value:!0})}))},{\"d3-time\":167}],167:[function(t,e,r){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){\"use strict\";var e=new Date,r=new Date;function n(t,i,a,o){function s(e){return t(e=0===arguments.length?new Date:new Date(+e)),e}return s.floor=function(e){return t(e=new Date(+e)),e},s.ceil=function(e){return t(e=new Date(e-1)),i(e,1),t(e),e},s.round=function(t){var e=s(t),r=s.ceil(t);return t-e<r-t?e:r},s.offset=function(t,e){return i(t=new Date(+t),null==e?1:Math.floor(e)),t},s.range=function(e,r,n){var a,o=[];if(e=s.ceil(e),n=null==n?1:Math.floor(n),!(e<r&&n>0))return o;do{o.push(a=new Date(+e)),i(e,n),t(e)}while(a<e&&e<r);return o},s.filter=function(e){return n((function(r){if(r>=r)for(;t(r),!e(r);)r.setTime(r-1)}),(function(t,r){if(t>=t)if(r<0)for(;++r<=0;)for(;i(t,-1),!e(t););else for(;--r>=0;)for(;i(t,1),!e(t););}))},a&&(s.count=function(n,i){return e.setTime(+n),r.setTime(+i),t(e),t(r),Math.floor(a(e,r))},s.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?s.filter(o?function(e){return o(e)%t==0}:function(e){return s.count(0,e)%t==0}):s:null}),s}var i=n((function(){}),(function(t,e){t.setTime(+t+e)}),(function(t,e){return e-t}));i.every=function(t){return t=Math.floor(t),isFinite(t)&&t>0?t>1?n((function(e){e.setTime(Math.floor(e/t)*t)}),(function(e,r){e.setTime(+e+r*t)}),(function(e,r){return(r-e)/t})):i:null};var a=i.range,o=n((function(t){t.setTime(t-t.getMilliseconds())}),(function(t,e){t.setTime(+t+1e3*e)}),(function(t,e){return(e-t)/1e3}),(function(t){return t.getUTCSeconds()})),s=o.range,l=n((function(t){t.setTime(t-t.getMilliseconds()-1e3*t.getSeconds())}),(function(t,e){t.setTime(+t+6e4*e)}),(function(t,e){return(e-t)/6e4}),(function(t){return t.getMinutes()})),c=l.range,u=n((function(t){t.setTime(t-t.getMilliseconds()-1e3*t.getSeconds()-6e4*t.getMinutes())}),(function(t,e){t.setTime(+t+36e5*e)}),(function(t,e){return(e-t)/36e5}),(function(t){return t.getHours()})),f=u.range,h=n((function(t){t.setHours(0,0,0,0)}),(function(t,e){t.setDate(t.getDate()+e)}),(function(t,e){return(e-t-6e4*(e.getTimezoneOffset()-t.getTimezoneOffset()))/864e5}),(function(t){return t.getDate()-1})),p=h.range;function d(t){return n((function(e){e.setDate(e.getDate()-(e.getDay()+7-t)%7),e.setHours(0,0,0,0)}),(function(t,e){t.setDate(t.getDate()+7*e)}),(function(t,e){return(e-t-6e4*(e.getTimezoneOffset()-t.getTimezoneOffset()))/6048e5}))}var g=d(0),m=d(1),v=d(2),y=d(3),x=d(4),b=d(5),_=d(6),w=g.range,T=m.range,k=v.range,M=y.range,A=x.range,S=b.range,E=_.range,C=n((function(t){t.setDate(1),t.setHours(0,0,0,0)}),(function(t,e){t.setMonth(t.getMonth()+e)}),(function(t,e){return e.getMonth()-t.getMonth()+12*(e.getFullYear()-t.getFullYear())}),(function(t){return t.getMonth()})),L=C.range,I=n((function(t){t.setMonth(0,1),t.setHours(0,0,0,0)}),(function(t,e){t.setFullYear(t.getFullYear()+e)}),(function(t,e){return e.getFullYear()-t.getFullYear()}),(function(t){return t.getFullYear()}));I.every=function(t){return isFinite(t=Math.floor(t))&&t>0?n((function(e){e.setFullYear(Math.floor(e.getFullYear()/t)*t),e.setMonth(0,1),e.setHours(0,0,0,0)}),(function(e,r){e.setFullYear(e.getFullYear()+r*t)})):null};var P=I.range,z=n((function(t){t.setUTCSeconds(0,0)}),(function(t,e){t.setTime(+t+6e4*e)}),(function(t,e){return(e-t)/6e4}),(function(t){return t.getUTCMinutes()})),O=z.range,D=n((function(t){t.setUTCMinutes(0,0,0)}),(function(t,e){t.setTime(+t+36e5*e)}),(function(t,e){return(e-t)/36e5}),(function(t){return t.getUTCHours()})),R=D.range,F=n((function(t){t.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCDate(t.getUTCDate()+e)}),(function(t,e){return(e-t)/864e5}),(function(t){return t.getUTCDate()-1})),B=F.range;function N(t){return n((function(e){e.setUTCDate(e.getUTCDate()-(e.getUTCDay()+7-t)%7),e.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCDate(t.getUTCDate()+7*e)}),(function(t,e){return(e-t)/6048e5}))}var j=N(0),U=N(1),V=N(2),q=N(3),H=N(4),G=N(5),Y=N(6),W=j.range,X=U.range,Z=V.range,J=q.range,K=H.range,Q=G.range,$=Y.range,tt=n((function(t){t.setUTCDate(1),t.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCMonth(t.getUTCMonth()+e)}),(function(t,e){return e.getUTCMonth()-t.getUTCMonth()+12*(e.getUTCFullYear()-t.getUTCFullYear())}),(function(t){return t.getUTCMonth()})),et=tt.range,rt=n((function(t){t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)}),(function(t,e){t.setUTCFullYear(t.getUTCFullYear()+e)}),(function(t,e){return e.getUTCFullYear()-t.getUTCFullYear()}),(function(t){return t.getUTCFullYear()}));rt.every=function(t){return isFinite(t=Math.floor(t))&&t>0?n((function(e){e.setUTCFullYear(Math.floor(e.getUTCFullYear()/t)*t),e.setUTCMonth(0,1),e.setUTCHours(0,0,0,0)}),(function(e,r){e.setUTCFullYear(e.getUTCFullYear()+r*t)})):null};var nt=rt.range;t.timeDay=h,t.timeDays=p,t.timeFriday=b,t.timeFridays=S,t.timeHour=u,t.timeHours=f,t.timeInterval=n,t.timeMillisecond=i,t.timeMilliseconds=a,t.timeMinute=l,t.timeMinutes=c,t.timeMonday=m,t.timeMondays=T,t.timeMonth=C,t.timeMonths=L,t.timeSaturday=_,t.timeSaturdays=E,t.timeSecond=o,t.timeSeconds=s,t.timeSunday=g,t.timeSundays=w,t.timeThursday=x,t.timeThursdays=A,t.timeTuesday=v,t.timeTuesdays=k,t.timeWednesday=y,t.timeWednesdays=M,t.timeWeek=g,t.timeWeeks=w,t.timeYear=I,t.timeYears=P,t.utcDay=F,t.utcDays=B,t.utcFriday=G,t.utcFridays=Q,t.utcHour=D,t.utcHours=R,t.utcMillisecond=i,t.utcMilliseconds=a,t.utcMinute=z,t.utcMinutes=O,t.utcMonday=U,t.utcMondays=X,t.utcMonth=tt,t.utcMonths=et,t.utcSaturday=Y,t.utcSaturdays=$,t.utcSecond=o,t.utcSeconds=s,t.utcSunday=j,t.utcSundays=W,t.utcThursday=H,t.utcThursdays=K,t.utcTuesday=V,t.utcTuesdays=Z,t.utcWednesday=q,t.utcWednesdays=J,t.utcWeek=j,t.utcWeeks=W,t.utcYear=rt,t.utcYears=nt,Object.defineProperty(t,\"__esModule\",{value:!0})}))},{}],168:[function(t,e,r){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?n(r):n((t=t||self).d3=t.d3||{})}(this,(function(t){\"use strict\";var e,r,n=0,i=0,a=0,o=0,s=0,l=0,c=\"object\"==typeof performance&&performance.now?performance:Date,u=\"object\"==typeof window&&window.requestAnimationFrame?window.requestAnimationFrame.bind(window):function(t){setTimeout(t,17)};function f(){return s||(u(h),s=c.now()+l)}function h(){s=0}function p(){this._call=this._time=this._next=null}function d(t,e,r){var n=new p;return n.restart(t,e,r),n}function g(){f(),++n;for(var t,r=e;r;)(t=s-r._time)>=0&&r._call.call(null,t),r=r._next;--n}function m(){s=(o=c.now())+l,n=i=0;try{g()}finally{n=0,function(){var t,n,i=e,a=1/0;for(;i;)i._call?(a>i._time&&(a=i._time),t=i,i=i._next):(n=i._next,i._next=null,i=t?t._next=n:e=n);r=t,y(a)}(),s=0}}function v(){var t=c.now(),e=t-o;e>1e3&&(l-=e,o=t)}function y(t){n||(i&&(i=clearTimeout(i)),t-s>24?(t<1/0&&(i=setTimeout(m,t-c.now()-l)),a&&(a=clearInterval(a))):(a||(o=c.now(),a=setInterval(v,1e3)),n=1,u(m)))}p.prototype=d.prototype={constructor:p,restart:function(t,n,i){if(\"function\"!=typeof t)throw new TypeError(\"callback is not a function\");i=(null==i?f():+i)+(null==n?0:+n),this._next||r===this||(r?r._next=this:e=this,r=this),this._call=t,this._time=i,y()},stop:function(){this._call&&(this._call=null,this._time=1/0,y())}},t.interval=function(t,e,r){var n=new p,i=e;return null==e?(n.restart(t,e,r),n):(e=+e,r=null==r?f():+r,n.restart((function a(o){o+=i,n.restart(a,i+=e,r),t(o)}),e,r),n)},t.now=f,t.timeout=function(t,e,r){var n=new p;return e=null==e?0:+e,n.restart((function(r){n.stop(),t(r+e)}),e,r),n},t.timer=d,t.timerFlush=g,Object.defineProperty(t,\"__esModule\",{value:!0})}))},{}],169:[function(t,e,r){!function(){var t={version:\"3.5.17\"},r=[].slice,n=function(t){return r.call(t)},i=this.document;function a(t){return t&&(t.ownerDocument||t.document||t).documentElement}function o(t){return t&&(t.ownerDocument&&t.ownerDocument.defaultView||t.document&&t||t.defaultView)}if(i)try{n(i.documentElement.childNodes)[0].nodeType}catch(t){n=function(t){for(var e=t.length,r=new Array(e);e--;)r[e]=t[e];return r}}if(Date.now||(Date.now=function(){return+new Date}),i)try{i.createElement(\"DIV\").style.setProperty(\"opacity\",0,\"\")}catch(t){var s=this.Element.prototype,l=s.setAttribute,c=s.setAttributeNS,u=this.CSSStyleDeclaration.prototype,f=u.setProperty;s.setAttribute=function(t,e){l.call(this,t,e+\"\")},s.setAttributeNS=function(t,e,r){c.call(this,t,e,r+\"\")},u.setProperty=function(t,e,r){f.call(this,t,e+\"\",r)}}function h(t,e){return t<e?-1:t>e?1:t>=e?0:NaN}function p(t){return null===t?NaN:+t}function d(t){return!isNaN(t)}function g(t){return{left:function(e,r,n,i){for(arguments.length<3&&(n=0),arguments.length<4&&(i=e.length);n<i;){var a=n+i>>>1;t(e[a],r)<0?n=a+1:i=a}return n},right:function(e,r,n,i){for(arguments.length<3&&(n=0),arguments.length<4&&(i=e.length);n<i;){var a=n+i>>>1;t(e[a],r)>0?i=a:n=a+1}return n}}}t.ascending=h,t.descending=function(t,e){return e<t?-1:e>t?1:e>=t?0:NaN},t.min=function(t,e){var r,n,i=-1,a=t.length;if(1===arguments.length){for(;++i<a;)if(null!=(n=t[i])&&n>=n){r=n;break}for(;++i<a;)null!=(n=t[i])&&r>n&&(r=n)}else{for(;++i<a;)if(null!=(n=e.call(t,t[i],i))&&n>=n){r=n;break}for(;++i<a;)null!=(n=e.call(t,t[i],i))&&r>n&&(r=n)}return r},t.max=function(t,e){var r,n,i=-1,a=t.length;if(1===arguments.length){for(;++i<a;)if(null!=(n=t[i])&&n>=n){r=n;break}for(;++i<a;)null!=(n=t[i])&&n>r&&(r=n)}else{for(;++i<a;)if(null!=(n=e.call(t,t[i],i))&&n>=n){r=n;break}for(;++i<a;)null!=(n=e.call(t,t[i],i))&&n>r&&(r=n)}return r},t.extent=function(t,e){var r,n,i,a=-1,o=t.length;if(1===arguments.length){for(;++a<o;)if(null!=(n=t[a])&&n>=n){r=i=n;break}for(;++a<o;)null!=(n=t[a])&&(r>n&&(r=n),i<n&&(i=n))}else{for(;++a<o;)if(null!=(n=e.call(t,t[a],a))&&n>=n){r=i=n;break}for(;++a<o;)null!=(n=e.call(t,t[a],a))&&(r>n&&(r=n),i<n&&(i=n))}return[r,i]},t.sum=function(t,e){var r,n=0,i=t.length,a=-1;if(1===arguments.length)for(;++a<i;)d(r=+t[a])&&(n+=r);else for(;++a<i;)d(r=+e.call(t,t[a],a))&&(n+=r);return n},t.mean=function(t,e){var r,n=0,i=t.length,a=-1,o=i;if(1===arguments.length)for(;++a<i;)d(r=p(t[a]))?n+=r:--o;else for(;++a<i;)d(r=p(e.call(t,t[a],a)))?n+=r:--o;if(o)return n/o},t.quantile=function(t,e){var r=(t.length-1)*e+1,n=Math.floor(r),i=+t[n-1],a=r-n;return a?i+a*(t[n]-i):i},t.median=function(e,r){var n,i=[],a=e.length,o=-1;if(1===arguments.length)for(;++o<a;)d(n=p(e[o]))&&i.push(n);else for(;++o<a;)d(n=p(r.call(e,e[o],o)))&&i.push(n);if(i.length)return t.quantile(i.sort(h),.5)},t.variance=function(t,e){var r,n,i=t.length,a=0,o=0,s=-1,l=0;if(1===arguments.length)for(;++s<i;)d(r=p(t[s]))&&(o+=(n=r-a)*(r-(a+=n/++l)));else for(;++s<i;)d(r=p(e.call(t,t[s],s)))&&(o+=(n=r-a)*(r-(a+=n/++l)));if(l>1)return o/(l-1)},t.deviation=function(){var e=t.variance.apply(this,arguments);return e?Math.sqrt(e):e};var m=g(h);function v(t){return t.length}t.bisectLeft=m.left,t.bisect=t.bisectRight=m.right,t.bisector=function(t){return g(1===t.length?function(e,r){return h(t(e),r)}:t)},t.shuffle=function(t,e,r){(a=arguments.length)<3&&(r=t.length,a<2&&(e=0));for(var n,i,a=r-e;a;)i=Math.random()*a--|0,n=t[a+e],t[a+e]=t[i+e],t[i+e]=n;return t},t.permute=function(t,e){for(var r=e.length,n=new Array(r);r--;)n[r]=t[e[r]];return n},t.pairs=function(t){for(var e=0,r=t.length-1,n=t[0],i=new Array(r<0?0:r);e<r;)i[e]=[n,n=t[++e]];return i},t.transpose=function(e){if(!(a=e.length))return[];for(var r=-1,n=t.min(e,v),i=new Array(n);++r<n;)for(var a,o=-1,s=i[r]=new Array(a);++o<a;)s[o]=e[o][r];return i},t.zip=function(){return t.transpose(arguments)},t.keys=function(t){var e=[];for(var r in t)e.push(r);return e},t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.entries=function(t){var e=[];for(var r in t)e.push({key:r,value:t[r]});return e},t.merge=function(t){for(var e,r,n,i=t.length,a=-1,o=0;++a<i;)o+=t[a].length;for(r=new Array(o);--i>=0;)for(e=(n=t[i]).length;--e>=0;)r[--o]=n[e];return r};var y=Math.abs;function x(t){for(var e=1;t*e%1;)e*=10;return e}function b(t,e){for(var r in e)Object.defineProperty(t.prototype,r,{value:e[r],enumerable:!1})}function _(){this._=Object.create(null)}t.range=function(t,e,r){if(arguments.length<3&&(r=1,arguments.length<2&&(e=t,t=0)),(e-t)/r==1/0)throw new Error(\"infinite range\");var n,i=[],a=x(y(r)),o=-1;if(t*=a,e*=a,(r*=a)<0)for(;(n=t+r*++o)>e;)i.push(n/a);else for(;(n=t+r*++o)<e;)i.push(n/a);return i},t.map=function(t,e){var r=new _;if(t instanceof _)t.forEach((function(t,e){r.set(t,e)}));else if(Array.isArray(t)){var n,i=-1,a=t.length;if(1===arguments.length)for(;++i<a;)r.set(i,t[i]);else for(;++i<a;)r.set(e.call(t,n=t[i],i),n)}else for(var o in t)r.set(o,t[o]);return r};function w(t){return\"__proto__\"==(t+=\"\")||\"\\0\"===t[0]?\"\\0\"+t:t}function T(t){return\"\\0\"===(t+=\"\")[0]?t.slice(1):t}function k(t){return w(t)in this._}function M(t){return(t=w(t))in this._&&delete this._[t]}function A(){var t=[];for(var e in this._)t.push(T(e));return t}function S(){var t=0;for(var e in this._)++t;return t}function E(){for(var t in this._)return!1;return!0}function C(){this._=Object.create(null)}function L(t){return t}function I(t,e,r){return function(){var n=r.apply(e,arguments);return n===e?t:n}}function P(t,e){if(e in t)return e;e=e.charAt(0).toUpperCase()+e.slice(1);for(var r=0,n=z.length;r<n;++r){var i=z[r]+e;if(i in t)return i}}b(_,{has:k,get:function(t){return this._[w(t)]},set:function(t,e){return this._[w(t)]=e},remove:M,keys:A,values:function(){var t=[];for(var e in this._)t.push(this._[e]);return t},entries:function(){var t=[];for(var e in this._)t.push({key:T(e),value:this._[e]});return t},size:S,empty:E,forEach:function(t){for(var e in this._)t.call(this,T(e),this._[e])}}),t.nest=function(){var e,r,n={},i=[],a=[];function o(t,a,s){if(s>=i.length)return r?r.call(n,a):e?a.sort(e):a;for(var l,c,u,f,h=-1,p=a.length,d=i[s++],g=new _;++h<p;)(f=g.get(l=d(c=a[h])))?f.push(c):g.set(l,[c]);return t?(c=t(),u=function(e,r){c.set(e,o(t,r,s))}):(c={},u=function(e,r){c[e]=o(t,r,s)}),g.forEach(u),c}return n.map=function(t,e){return o(e,t,0)},n.entries=function(e){return function t(e,r){if(r>=i.length)return e;var n=[],o=a[r++];return e.forEach((function(e,i){n.push({key:e,values:t(i,r)})})),o?n.sort((function(t,e){return o(t.key,e.key)})):n}(o(t.map,e,0),0)},n.key=function(t){return i.push(t),n},n.sortKeys=function(t){return a[i.length-1]=t,n},n.sortValues=function(t){return e=t,n},n.rollup=function(t){return r=t,n},n},t.set=function(t){var e=new C;if(t)for(var r=0,n=t.length;r<n;++r)e.add(t[r]);return e},b(C,{has:k,add:function(t){return this._[w(t+=\"\")]=!0,t},remove:M,values:A,size:S,empty:E,forEach:function(t){for(var e in this._)t.call(this,T(e))}}),t.behavior={},t.rebind=function(t,e){for(var r,n=1,i=arguments.length;++n<i;)t[r=arguments[n]]=I(t,e,e[r]);return t};var z=[\"webkit\",\"ms\",\"moz\",\"Moz\",\"o\",\"O\"];function O(){}function D(){}function R(t){var e=[],r=new _;function n(){for(var r,n=e,i=-1,a=n.length;++i<a;)(r=n[i].on)&&r.apply(this,arguments);return t}return n.on=function(n,i){var a,o=r.get(n);return arguments.length<2?o&&o.on:(o&&(o.on=null,e=e.slice(0,a=e.indexOf(o)).concat(e.slice(a+1)),r.remove(n)),i&&e.push(r.set(n,{on:i})),t)},n}function F(){t.event.preventDefault()}function B(){for(var e,r=t.event;e=r.sourceEvent;)r=e;return r}function N(e){for(var r=new D,n=0,i=arguments.length;++n<i;)r[arguments[n]]=R(r);return r.of=function(n,i){return function(a){try{var o=a.sourceEvent=t.event;a.target=e,t.event=a,r[a.type].apply(n,i)}finally{t.event=o}}},r}t.dispatch=function(){for(var t=new D,e=-1,r=arguments.length;++e<r;)t[arguments[e]]=R(t);return t},D.prototype.on=function(t,e){var r=t.indexOf(\".\"),n=\"\";if(r>=0&&(n=t.slice(r+1),t=t.slice(0,r)),t)return arguments.length<2?this[t].on(n):this[t].on(n,e);if(2===arguments.length){if(null==e)for(t in this)this.hasOwnProperty(t)&&this[t].on(n,null);return this}},t.event=null,t.requote=function(t){return t.replace(j,\"\\\\$&\")};var j=/[\\\\\\^\\$\\*\\+\\?\\|\\[\\]\\(\\)\\.\\{\\}]/g,U={}.__proto__?function(t,e){t.__proto__=e}:function(t,e){for(var r in e)t[r]=e[r]};function V(t){return U(t,Y),t}var q=function(t,e){return e.querySelector(t)},H=function(t,e){return e.querySelectorAll(t)},G=function(t,e){var r=t.matches||t[P(t,\"matchesSelector\")];return(G=function(t,e){return r.call(t,e)})(t,e)};\"function\"==typeof Sizzle&&(q=function(t,e){return Sizzle(t,e)[0]||null},H=Sizzle,G=Sizzle.matchesSelector),t.selection=function(){return t.select(i.documentElement)};var Y=t.selection.prototype=[];function W(t){return\"function\"==typeof t?t:function(){return q(t,this)}}function X(t){return\"function\"==typeof t?t:function(){return H(t,this)}}Y.select=function(t){var e,r,n,i,a=[];t=W(t);for(var o=-1,s=this.length;++o<s;){a.push(e=[]),e.parentNode=(n=this[o]).parentNode;for(var l=-1,c=n.length;++l<c;)(i=n[l])?(e.push(r=t.call(i,i.__data__,l,o)),r&&\"__data__\"in i&&(r.__data__=i.__data__)):e.push(null)}return V(a)},Y.selectAll=function(t){var e,r,i=[];t=X(t);for(var a=-1,o=this.length;++a<o;)for(var s=this[a],l=-1,c=s.length;++l<c;)(r=s[l])&&(i.push(e=n(t.call(r,r.__data__,l,a))),e.parentNode=r);return V(i)};var Z=\"http://www.w3.org/1999/xhtml\",J={svg:\"http://www.w3.org/2000/svg\",xhtml:Z,xlink:\"http://www.w3.org/1999/xlink\",xml:\"http://www.w3.org/XML/1998/namespace\",xmlns:\"http://www.w3.org/2000/xmlns/\"};function K(e,r){return e=t.ns.qualify(e),null==r?e.local?function(){this.removeAttributeNS(e.space,e.local)}:function(){this.removeAttribute(e)}:\"function\"==typeof r?e.local?function(){var t=r.apply(this,arguments);null==t?this.removeAttributeNS(e.space,e.local):this.setAttributeNS(e.space,e.local,t)}:function(){var t=r.apply(this,arguments);null==t?this.removeAttribute(e):this.setAttribute(e,t)}:e.local?function(){this.setAttributeNS(e.space,e.local,r)}:function(){this.setAttribute(e,r)}}function Q(t){return t.trim().replace(/\\s+/g,\" \")}function $(e){return new RegExp(\"(?:^|\\\\s+)\"+t.requote(e)+\"(?:\\\\s+|$)\",\"g\")}function tt(t){return(t+\"\").trim().split(/^|\\s+/)}function et(t,e){var r=(t=tt(t).map(rt)).length;return\"function\"==typeof e?function(){for(var n=-1,i=e.apply(this,arguments);++n<r;)t[n](this,i)}:function(){for(var n=-1;++n<r;)t[n](this,e)}}function rt(t){var e=$(t);return function(r,n){if(i=r.classList)return n?i.add(t):i.remove(t);var i=r.getAttribute(\"class\")||\"\";n?(e.lastIndex=0,e.test(i)||r.setAttribute(\"class\",Q(i+\" \"+t))):r.setAttribute(\"class\",Q(i.replace(e,\" \")))}}function nt(t,e,r){return null==e?function(){this.style.removeProperty(t)}:\"function\"==typeof e?function(){var n=e.apply(this,arguments);null==n?this.style.removeProperty(t):this.style.setProperty(t,n,r)}:function(){this.style.setProperty(t,e,r)}}function it(t,e){return null==e?function(){delete this[t]}:\"function\"==typeof e?function(){var r=e.apply(this,arguments);null==r?delete this[t]:this[t]=r}:function(){this[t]=e}}function at(e){return\"function\"==typeof e?e:(e=t.ns.qualify(e)).local?function(){return this.ownerDocument.createElementNS(e.space,e.local)}:function(){var t=this.ownerDocument,r=this.namespaceURI;return r===Z&&t.documentElement.namespaceURI===Z?t.createElement(e):t.createElementNS(r,e)}}function ot(){var t=this.parentNode;t&&t.removeChild(this)}function st(t){return{__data__:t}}function lt(t){return function(){return G(this,t)}}function ct(t){return arguments.length||(t=h),function(e,r){return e&&r?t(e.__data__,r.__data__):!e-!r}}function ut(t,e){for(var r=0,n=t.length;r<n;r++)for(var i,a=t[r],o=0,s=a.length;o<s;o++)(i=a[o])&&e(i,o,r);return t}function ft(t){return U(t,ht),t}t.ns={prefix:J,qualify:function(t){var e=t.indexOf(\":\"),r=t;return e>=0&&\"xmlns\"!==(r=t.slice(0,e))&&(t=t.slice(e+1)),J.hasOwnProperty(r)?{space:J[r],local:t}:t}},Y.attr=function(e,r){if(arguments.length<2){if(\"string\"==typeof e){var n=this.node();return(e=t.ns.qualify(e)).local?n.getAttributeNS(e.space,e.local):n.getAttribute(e)}for(r in e)this.each(K(r,e[r]));return this}return this.each(K(e,r))},Y.classed=function(t,e){if(arguments.length<2){if(\"string\"==typeof t){var r=this.node(),n=(t=tt(t)).length,i=-1;if(e=r.classList){for(;++i<n;)if(!e.contains(t[i]))return!1}else for(e=r.getAttribute(\"class\");++i<n;)if(!$(t[i]).test(e))return!1;return!0}for(e in t)this.each(et(e,t[e]));return this}return this.each(et(t,e))},Y.style=function(t,e,r){var n=arguments.length;if(n<3){if(\"string\"!=typeof t){for(r in n<2&&(e=\"\"),t)this.each(nt(r,t[r],e));return this}if(n<2){var i=this.node();return o(i).getComputedStyle(i,null).getPropertyValue(t)}r=\"\"}return this.each(nt(t,e,r))},Y.property=function(t,e){if(arguments.length<2){if(\"string\"==typeof t)return this.node()[t];for(e in t)this.each(it(e,t[e]));return this}return this.each(it(t,e))},Y.text=function(t){return arguments.length?this.each(\"function\"==typeof t?function(){var e=t.apply(this,arguments);this.textContent=null==e?\"\":e}:null==t?function(){this.textContent=\"\"}:function(){this.textContent=t}):this.node().textContent},Y.html=function(t){return arguments.length?this.each(\"function\"==typeof t?function(){var e=t.apply(this,arguments);this.innerHTML=null==e?\"\":e}:null==t?function(){this.innerHTML=\"\"}:function(){this.innerHTML=t}):this.node().innerHTML},Y.append=function(t){return t=at(t),this.select((function(){return this.appendChild(t.apply(this,arguments))}))},Y.insert=function(t,e){return t=at(t),e=W(e),this.select((function(){return this.insertBefore(t.apply(this,arguments),e.apply(this,arguments)||null)}))},Y.remove=function(){return this.each(ot)},Y.data=function(t,e){var r,n,i=-1,a=this.length;if(!arguments.length){for(t=new Array(a=(r=this[0]).length);++i<a;)(n=r[i])&&(t[i]=n.__data__);return t}function o(t,r){var n,i,a,o=t.length,u=r.length,f=Math.min(o,u),h=new Array(u),p=new Array(u),d=new Array(o);if(e){var g,m=new _,v=new Array(o);for(n=-1;++n<o;)(i=t[n])&&(m.has(g=e.call(i,i.__data__,n))?d[n]=i:m.set(g,i),v[n]=g);for(n=-1;++n<u;)(i=m.get(g=e.call(r,a=r[n],n)))?!0!==i&&(h[n]=i,i.__data__=a):p[n]=st(a),m.set(g,!0);for(n=-1;++n<o;)n in v&&!0!==m.get(v[n])&&(d[n]=t[n])}else{for(n=-1;++n<f;)i=t[n],a=r[n],i?(i.__data__=a,h[n]=i):p[n]=st(a);for(;n<u;++n)p[n]=st(r[n]);for(;n<o;++n)d[n]=t[n]}p.update=h,p.parentNode=h.parentNode=d.parentNode=t.parentNode,s.push(p),l.push(h),c.push(d)}var s=ft([]),l=V([]),c=V([]);if(\"function\"==typeof t)for(;++i<a;)o(r=this[i],t.call(r,r.parentNode.__data__,i));else for(;++i<a;)o(r=this[i],t);return l.enter=function(){return s},l.exit=function(){return c},l},Y.datum=function(t){return arguments.length?this.property(\"__data__\",t):this.property(\"__data__\")},Y.filter=function(t){var e,r,n,i=[];\"function\"!=typeof t&&(t=lt(t));for(var a=0,o=this.length;a<o;a++){i.push(e=[]),e.parentNode=(r=this[a]).parentNode;for(var s=0,l=r.length;s<l;s++)(n=r[s])&&t.call(n,n.__data__,s,a)&&e.push(n)}return V(i)},Y.order=function(){for(var t=-1,e=this.length;++t<e;)for(var r,n=this[t],i=n.length-1,a=n[i];--i>=0;)(r=n[i])&&(a&&a!==r.nextSibling&&a.parentNode.insertBefore(r,a),a=r);return this},Y.sort=function(t){t=ct.apply(this,arguments);for(var e=-1,r=this.length;++e<r;)this[e].sort(t);return this.order()},Y.each=function(t){return ut(this,(function(e,r,n){t.call(e,e.__data__,r,n)}))},Y.call=function(t){var e=n(arguments);return t.apply(e[0]=this,e),this},Y.empty=function(){return!this.node()},Y.node=function(){for(var t=0,e=this.length;t<e;t++)for(var r=this[t],n=0,i=r.length;n<i;n++){var a=r[n];if(a)return a}return null},Y.size=function(){var t=0;return ut(this,(function(){++t})),t};var ht=[];function pt(t){var e,r;return function(n,i,a){var o,s=t[a].update,l=s.length;for(a!=r&&(r=a,e=0),i>=e&&(e=i+1);!(o=s[e])&&++e<l;);return o}}function dt(e,r,i){var a=\"__on\"+e,o=e.indexOf(\".\"),s=mt;o>0&&(e=e.slice(0,o));var l=gt.get(e);function c(){var t=this[a];t&&(this.removeEventListener(e,t,t.$),delete this[a])}return l&&(e=l,s=vt),o?r?function(){var t=s(r,n(arguments));c.call(this),this.addEventListener(e,this[a]=t,t.$=i),t._=r}:c:r?O:function(){var r,n=new RegExp(\"^__on([^.]+)\"+t.requote(e)+\"$\");for(var i in this)if(r=i.match(n)){var a=this[i];this.removeEventListener(r[1],a,a.$),delete this[i]}}}t.selection.enter=ft,t.selection.enter.prototype=ht,ht.append=Y.append,ht.empty=Y.empty,ht.node=Y.node,ht.call=Y.call,ht.size=Y.size,ht.select=function(t){for(var e,r,n,i,a,o=[],s=-1,l=this.length;++s<l;){n=(i=this[s]).update,o.push(e=[]),e.parentNode=i.parentNode;for(var c=-1,u=i.length;++c<u;)(a=i[c])?(e.push(n[c]=r=t.call(i.parentNode,a.__data__,c,s)),r.__data__=a.__data__):e.push(null)}return V(o)},ht.insert=function(t,e){return arguments.length<2&&(e=pt(this)),Y.insert.call(this,t,e)},t.select=function(t){var e;return\"string\"==typeof t?(e=[q(t,i)]).parentNode=i.documentElement:(e=[t]).parentNode=a(t),V([e])},t.selectAll=function(t){var e;return\"string\"==typeof t?(e=n(H(t,i))).parentNode=i.documentElement:(e=n(t)).parentNode=null,V([e])},Y.on=function(t,e,r){var n=arguments.length;if(n<3){if(\"string\"!=typeof t){for(r in n<2&&(e=!1),t)this.each(dt(r,t[r],e));return this}if(n<2)return(n=this.node()[\"__on\"+t])&&n._;r=!1}return this.each(dt(t,e,r))};var gt=t.map({mouseenter:\"mouseover\",mouseleave:\"mouseout\"});function mt(e,r){return function(n){var i=t.event;t.event=n,r[0]=this.__data__;try{e.apply(this,r)}finally{t.event=i}}}function vt(t,e){var r=mt(t,e);return function(t){var e=t.relatedTarget;e&&(e===this||8&e.compareDocumentPosition(this))||r.call(this,t)}}i&&gt.forEach((function(t){\"on\"+t in i&&gt.remove(t)}));var yt,xt=0;function bt(e){var r=\".dragsuppress-\"+ ++xt,n=\"click\"+r,i=t.select(o(e)).on(\"touchmove\"+r,F).on(\"dragstart\"+r,F).on(\"selectstart\"+r,F);if(null==yt&&(yt=!(\"onselectstart\"in e)&&P(e.style,\"userSelect\")),yt){var s=a(e).style,l=s[yt];s[yt]=\"none\"}return function(t){if(i.on(r,null),yt&&(s[yt]=l),t){var e=function(){i.on(n,null)};i.on(n,(function(){F(),e()}),!0),setTimeout(e,0)}}}t.mouse=function(t){return wt(t,B())};var _t=this.navigator&&/WebKit/.test(this.navigator.userAgent)?-1:0;function wt(e,r){r.changedTouches&&(r=r.changedTouches[0]);var n=e.ownerSVGElement||e;if(n.createSVGPoint){var i=n.createSVGPoint();if(_t<0){var a=o(e);if(a.scrollX||a.scrollY){var s=(n=t.select(\"body\").append(\"svg\").style({position:\"absolute\",top:0,left:0,margin:0,padding:0,border:\"none\"},\"important\"))[0][0].getScreenCTM();_t=!(s.f||s.e),n.remove()}}return _t?(i.x=r.pageX,i.y=r.pageY):(i.x=r.clientX,i.y=r.clientY),[(i=i.matrixTransform(e.getScreenCTM().inverse())).x,i.y]}var l=e.getBoundingClientRect();return[r.clientX-l.left-e.clientLeft,r.clientY-l.top-e.clientTop]}function Tt(){return t.event.changedTouches[0].identifier}t.touch=function(t,e,r){if(arguments.length<3&&(r=e,e=B().changedTouches),e)for(var n,i=0,a=e.length;i<a;++i)if((n=e[i]).identifier===r)return wt(t,n)},t.behavior.drag=function(){var e=N(a,\"drag\",\"dragstart\",\"dragend\"),r=null,n=s(O,t.mouse,o,\"mousemove\",\"mouseup\"),i=s(Tt,t.touch,L,\"touchmove\",\"touchend\");function a(){this.on(\"mousedown.drag\",n).on(\"touchstart.drag\",i)}function s(n,i,a,o,s){return function(){var l,c=this,u=t.event.target.correspondingElement||t.event.target,f=c.parentNode,h=e.of(c,arguments),p=0,d=n(),g=\".drag\"+(null==d?\"\":\"-\"+d),m=t.select(a(u)).on(o+g,x).on(s+g,b),v=bt(u),y=i(f,d);function x(){var t,e,r=i(f,d);r&&(t=r[0]-y[0],e=r[1]-y[1],p|=t|e,y=r,h({type:\"drag\",x:r[0]+l[0],y:r[1]+l[1],dx:t,dy:e}))}function b(){i(f,d)&&(m.on(o+g,null).on(s+g,null),v(p),h({type:\"dragend\"}))}l=r?[(l=r.apply(c,arguments)).x-y[0],l.y-y[1]]:[0,0],h({type:\"dragstart\"})}}return a.origin=function(t){return arguments.length?(r=t,a):r},t.rebind(a,e,\"on\")},t.touches=function(t,e){return arguments.length<2&&(e=B().touches),e?n(e).map((function(e){var r=wt(t,e);return r.identifier=e.identifier,r})):[]};var kt=1e-6,Mt=1e-12,At=Math.PI,St=2*At,Et=St-kt,Ct=At/2,Lt=At/180,It=180/At;function Pt(t){return t>0?1:t<0?-1:0}function zt(t,e,r){return(e[0]-t[0])*(r[1]-t[1])-(e[1]-t[1])*(r[0]-t[0])}function Ot(t){return t>1?0:t<-1?At:Math.acos(t)}function Dt(t){return t>1?Ct:t<-1?-Ct:Math.asin(t)}function Rt(t){return((t=Math.exp(t))+1/t)/2}function Ft(t){return(t=Math.sin(t/2))*t}var Bt=Math.SQRT2;t.interpolateZoom=function(t,e){var r,n,i=t[0],a=t[1],o=t[2],s=e[0],l=e[1],c=e[2],u=s-i,f=l-a,h=u*u+f*f;if(h<Mt)n=Math.log(c/o)/Bt,r=function(t){return[i+t*u,a+t*f,o*Math.exp(Bt*t*n)]};else{var p=Math.sqrt(h),d=(c*c-o*o+4*h)/(2*o*2*p),g=(c*c-o*o-4*h)/(2*c*2*p),m=Math.log(Math.sqrt(d*d+1)-d),v=Math.log(Math.sqrt(g*g+1)-g);n=(v-m)/Bt,r=function(t){var e,r=t*n,s=Rt(m),l=o/(2*p)*(s*(e=Bt*r+m,((e=Math.exp(2*e))-1)/(e+1))-function(t){return((t=Math.exp(t))-1/t)/2}(m));return[i+l*u,a+l*f,o*s/Rt(Bt*r+m)]}}return r.duration=1e3*n,r},t.behavior.zoom=function(){var e,r,n,a,s,l,c,u,f,h={x:0,y:0,k:1},p=[960,500],d=Ut,g=250,m=0,v=\"mousedown.zoom\",y=\"mousemove.zoom\",x=\"mouseup.zoom\",b=\"touchstart.zoom\",_=N(w,\"zoomstart\",\"zoom\",\"zoomend\");function w(t){t.on(v,I).on(jt+\".zoom\",z).on(\"dblclick.zoom\",O).on(b,P)}function T(t){return[(t[0]-h.x)/h.k,(t[1]-h.y)/h.k]}function k(t){h.k=Math.max(d[0],Math.min(d[1],t))}function M(t,e){e=function(t){return[t[0]*h.k+h.x,t[1]*h.k+h.y]}(e),h.x+=t[0]-e[0],h.y+=t[1]-e[1]}function A(e,n,i,a){e.__chart__={x:h.x,y:h.y,k:h.k},k(Math.pow(2,a)),M(r=n,i),e=t.select(e),g>0&&(e=e.transition().duration(g)),e.call(w.event)}function S(){c&&c.domain(l.range().map((function(t){return(t-h.x)/h.k})).map(l.invert)),f&&f.domain(u.range().map((function(t){return(t-h.y)/h.k})).map(u.invert))}function E(t){m++||t({type:\"zoomstart\"})}function C(t){S(),t({type:\"zoom\",scale:h.k,translate:[h.x,h.y]})}function L(t){--m||(t({type:\"zoomend\"}),r=null)}function I(){var e=this,r=_.of(e,arguments),n=0,i=t.select(o(e)).on(y,l).on(x,c),a=T(t.mouse(e)),s=bt(e);function l(){n=1,M(t.mouse(e),a),C(r)}function c(){i.on(y,null).on(x,null),s(n),L(r)}vs.call(e),E(r)}function P(){var e,r=this,n=_.of(r,arguments),i={},a=0,o=\".zoom-\"+t.event.changedTouches[0].identifier,l=\"touchmove\"+o,c=\"touchend\"+o,u=[],f=t.select(r),p=bt(r);function d(){var n=t.touches(r);return e=h.k,n.forEach((function(t){t.identifier in i&&(i[t.identifier]=T(t))})),n}function g(){var e=t.event.target;t.select(e).on(l,m).on(c,y),u.push(e);for(var n=t.event.changedTouches,o=0,f=n.length;o<f;++o)i[n[o].identifier]=null;var p=d(),g=Date.now();if(1===p.length){if(g-s<500){var v=p[0];A(r,v,i[v.identifier],Math.floor(Math.log(h.k)/Math.LN2)+1),F()}s=g}else if(p.length>1){v=p[0];var x=p[1],b=v[0]-x[0],_=v[1]-x[1];a=b*b+_*_}}function m(){var o,l,c,u,f=t.touches(r);vs.call(r);for(var h=0,p=f.length;h<p;++h,u=null)if(c=f[h],u=i[c.identifier]){if(l)break;o=c,l=u}if(u){var d=(d=c[0]-o[0])*d+(d=c[1]-o[1])*d,g=a&&Math.sqrt(d/a);o=[(o[0]+c[0])/2,(o[1]+c[1])/2],l=[(l[0]+u[0])/2,(l[1]+u[1])/2],k(g*e)}s=null,M(o,l),C(n)}function y(){if(t.event.touches.length){for(var e=t.event.changedTouches,r=0,a=e.length;r<a;++r)delete i[e[r].identifier];for(var s in i)return void d()}t.selectAll(u).on(o,null),f.on(v,I).on(b,P),p(),L(n)}g(),E(n),f.on(v,null).on(b,g)}function z(){var i=_.of(this,arguments);a?clearTimeout(a):(vs.call(this),e=T(r=n||t.mouse(this)),E(i)),a=setTimeout((function(){a=null,L(i)}),50),F(),k(Math.pow(2,.002*Nt())*h.k),M(r,e),C(i)}function O(){var e=t.mouse(this),r=Math.log(h.k)/Math.LN2;A(this,e,T(e),t.event.shiftKey?Math.ceil(r)-1:Math.floor(r)+1)}return jt||(jt=\"onwheel\"in i?(Nt=function(){return-t.event.deltaY*(t.event.deltaMode?120:1)},\"wheel\"):\"onmousewheel\"in i?(Nt=function(){return t.event.wheelDelta},\"mousewheel\"):(Nt=function(){return-t.event.detail},\"MozMousePixelScroll\")),w.event=function(e){e.each((function(){var e=_.of(this,arguments),n=h;bs?t.select(this).transition().each(\"start.zoom\",(function(){h=this.__chart__||{x:0,y:0,k:1},E(e)})).tween(\"zoom:zoom\",(function(){var i=p[0],a=p[1],o=r?r[0]:i/2,s=r?r[1]:a/2,l=t.interpolateZoom([(o-h.x)/h.k,(s-h.y)/h.k,i/h.k],[(o-n.x)/n.k,(s-n.y)/n.k,i/n.k]);return function(t){var r=l(t),n=i/r[2];this.__chart__=h={x:o-r[0]*n,y:s-r[1]*n,k:n},C(e)}})).each(\"interrupt.zoom\",(function(){L(e)})).each(\"end.zoom\",(function(){L(e)})):(this.__chart__=h,E(e),C(e),L(e))}))},w.translate=function(t){return arguments.length?(h={x:+t[0],y:+t[1],k:h.k},S(),w):[h.x,h.y]},w.scale=function(t){return arguments.length?(h={x:h.x,y:h.y,k:null},k(+t),S(),w):h.k},w.scaleExtent=function(t){return arguments.length?(d=null==t?Ut:[+t[0],+t[1]],w):d},w.center=function(t){return arguments.length?(n=t&&[+t[0],+t[1]],w):n},w.size=function(t){return arguments.length?(p=t&&[+t[0],+t[1]],w):p},w.duration=function(t){return arguments.length?(g=+t,w):g},w.x=function(t){return arguments.length?(c=t,l=t.copy(),h={x:0,y:0,k:1},w):c},w.y=function(t){return arguments.length?(f=t,u=t.copy(),h={x:0,y:0,k:1},w):f},t.rebind(w,_,\"on\")};var Nt,jt,Ut=[0,1/0];function Vt(){}function qt(t,e,r){return this instanceof qt?(this.h=+t,this.s=+e,void(this.l=+r)):arguments.length<2?t instanceof qt?new qt(t.h,t.s,t.l):le(\"\"+t,ce,qt):new qt(t,e,r)}t.color=Vt,Vt.prototype.toString=function(){return this.rgb()+\"\"},t.hsl=qt;var Ht=qt.prototype=new Vt;function Gt(t,e,r){var n,i;function a(t){return Math.round(255*function(t){return t>360?t-=360:t<0&&(t+=360),t<60?n+(i-n)*t/60:t<180?i:t<240?n+(i-n)*(240-t)/60:n}(t))}return t=isNaN(t)?0:(t%=360)<0?t+360:t,e=isNaN(e)||e<0?0:e>1?1:e,n=2*(r=r<0?0:r>1?1:r)-(i=r<=.5?r*(1+e):r+e-r*e),new ne(a(t+120),a(t),a(t-120))}function Yt(e,r,n){return this instanceof Yt?(this.h=+e,this.c=+r,void(this.l=+n)):arguments.length<2?e instanceof Yt?new Yt(e.h,e.c,e.l):$t(e instanceof Zt?e.l:(e=ue((e=t.rgb(e)).r,e.g,e.b)).l,e.a,e.b):new Yt(e,r,n)}Ht.brighter=function(t){return t=Math.pow(.7,arguments.length?t:1),new qt(this.h,this.s,this.l/t)},Ht.darker=function(t){return t=Math.pow(.7,arguments.length?t:1),new qt(this.h,this.s,t*this.l)},Ht.rgb=function(){return Gt(this.h,this.s,this.l)},t.hcl=Yt;var Wt=Yt.prototype=new Vt;function Xt(t,e,r){return isNaN(t)&&(t=0),isNaN(e)&&(e=0),new Zt(r,Math.cos(t*=Lt)*e,Math.sin(t)*e)}function Zt(t,e,r){return this instanceof Zt?(this.l=+t,this.a=+e,void(this.b=+r)):arguments.length<2?t instanceof Zt?new Zt(t.l,t.a,t.b):t instanceof Yt?Xt(t.h,t.c,t.l):ue((t=ne(t)).r,t.g,t.b):new Zt(t,e,r)}Wt.brighter=function(t){return new Yt(this.h,this.c,Math.min(100,this.l+Jt*(arguments.length?t:1)))},Wt.darker=function(t){return new Yt(this.h,this.c,Math.max(0,this.l-Jt*(arguments.length?t:1)))},Wt.rgb=function(){return Xt(this.h,this.c,this.l).rgb()},t.lab=Zt;var Jt=18,Kt=Zt.prototype=new Vt;function Qt(t,e,r){var n=(t+16)/116,i=n+e/500,a=n-r/200;return new ne(re(3.2404542*(i=.95047*te(i))-1.5371385*(n=1*te(n))-.4985314*(a=1.08883*te(a))),re(-.969266*i+1.8760108*n+.041556*a),re(.0556434*i-.2040259*n+1.0572252*a))}function $t(t,e,r){return t>0?new Yt(Math.atan2(r,e)*It,Math.sqrt(e*e+r*r),t):new Yt(NaN,NaN,t)}function te(t){return t>.206893034?t*t*t:(t-4/29)/7.787037}function ee(t){return t>.008856?Math.pow(t,1/3):7.787037*t+4/29}function re(t){return Math.round(255*(t<=.00304?12.92*t:1.055*Math.pow(t,1/2.4)-.055))}function ne(t,e,r){return this instanceof ne?(this.r=~~t,this.g=~~e,void(this.b=~~r)):arguments.length<2?t instanceof ne?new ne(t.r,t.g,t.b):le(\"\"+t,ne,Gt):new ne(t,e,r)}function ie(t){return new ne(t>>16,t>>8&255,255&t)}function ae(t){return ie(t)+\"\"}Kt.brighter=function(t){return new Zt(Math.min(100,this.l+Jt*(arguments.length?t:1)),this.a,this.b)},Kt.darker=function(t){return new Zt(Math.max(0,this.l-Jt*(arguments.length?t:1)),this.a,this.b)},Kt.rgb=function(){return Qt(this.l,this.a,this.b)},t.rgb=ne;var oe=ne.prototype=new Vt;function se(t){return t<16?\"0\"+Math.max(0,t).toString(16):Math.min(255,t).toString(16)}function le(t,e,r){var n,i,a,o=0,s=0,l=0;if(n=/([a-z]+)\\((.*)\\)/.exec(t=t.toLowerCase()))switch(i=n[2].split(\",\"),n[1]){case\"hsl\":return r(parseFloat(i[0]),parseFloat(i[1])/100,parseFloat(i[2])/100);case\"rgb\":return e(he(i[0]),he(i[1]),he(i[2]))}return(a=pe.get(t))?e(a.r,a.g,a.b):(null==t||\"#\"!==t.charAt(0)||isNaN(a=parseInt(t.slice(1),16))||(4===t.length?(o=(3840&a)>>4,o|=o>>4,s=240&a,s|=s>>4,l=15&a,l|=l<<4):7===t.length&&(o=(16711680&a)>>16,s=(65280&a)>>8,l=255&a)),e(o,s,l))}function ce(t,e,r){var n,i,a=Math.min(t/=255,e/=255,r/=255),o=Math.max(t,e,r),s=o-a,l=(o+a)/2;return s?(i=l<.5?s/(o+a):s/(2-o-a),n=t==o?(e-r)/s+(e<r?6:0):e==o?(r-t)/s+2:(t-e)/s+4,n*=60):(n=NaN,i=l>0&&l<1?0:n),new qt(n,i,l)}function ue(t,e,r){var n=ee((.4124564*(t=fe(t))+.3575761*(e=fe(e))+.1804375*(r=fe(r)))/.95047),i=ee((.2126729*t+.7151522*e+.072175*r)/1);return Zt(116*i-16,500*(n-i),200*(i-ee((.0193339*t+.119192*e+.9503041*r)/1.08883)))}function fe(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function he(t){var e=parseFloat(t);return\"%\"===t.charAt(t.length-1)?Math.round(2.55*e):e}oe.brighter=function(t){t=Math.pow(.7,arguments.length?t:1);var e=this.r,r=this.g,n=this.b,i=30;return e||r||n?(e&&e<i&&(e=i),r&&r<i&&(r=i),n&&n<i&&(n=i),new ne(Math.min(255,e/t),Math.min(255,r/t),Math.min(255,n/t))):new ne(i,i,i)},oe.darker=function(t){return new ne((t=Math.pow(.7,arguments.length?t:1))*this.r,t*this.g,t*this.b)},oe.hsl=function(){return ce(this.r,this.g,this.b)},oe.toString=function(){return\"#\"+se(this.r)+se(this.g)+se(this.b)};var pe=t.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});function de(t){return\"function\"==typeof t?t:function(){return t}}function ge(t){return function(e,r,n){return 2===arguments.length&&\"function\"==typeof r&&(n=r,r=null),me(e,r,t,n)}}function me(e,r,i,a){var o={},s=t.dispatch(\"beforesend\",\"progress\",\"load\",\"error\"),l={},c=new XMLHttpRequest,u=null;function f(){var t,e=c.status;if(!e&&function(t){var e=t.responseType;return e&&\"text\"!==e?t.response:t.responseText}(c)||e>=200&&e<300||304===e){try{t=i.call(o,c)}catch(t){return void s.error.call(o,t)}s.load.call(o,t)}else s.error.call(o,c)}return this.XDomainRequest&&!(\"withCredentials\"in c)&&/^(http(s)?:)?\\/\\//.test(e)&&(c=new XDomainRequest),\"onload\"in c?c.onload=c.onerror=f:c.onreadystatechange=function(){c.readyState>3&&f()},c.onprogress=function(e){var r=t.event;t.event=e;try{s.progress.call(o,c)}finally{t.event=r}},o.header=function(t,e){return t=(t+\"\").toLowerCase(),arguments.length<2?l[t]:(null==e?delete l[t]:l[t]=e+\"\",o)},o.mimeType=function(t){return arguments.length?(r=null==t?null:t+\"\",o):r},o.responseType=function(t){return arguments.length?(u=t,o):u},o.response=function(t){return i=t,o},[\"get\",\"post\"].forEach((function(t){o[t]=function(){return o.send.apply(o,[t].concat(n(arguments)))}})),o.send=function(t,n,i){if(2===arguments.length&&\"function\"==typeof n&&(i=n,n=null),c.open(t,e,!0),null==r||\"accept\"in l||(l.accept=r+\",*/*\"),c.setRequestHeader)for(var a in l)c.setRequestHeader(a,l[a]);return null!=r&&c.overrideMimeType&&c.overrideMimeType(r),null!=u&&(c.responseType=u),null!=i&&o.on(\"error\",i).on(\"load\",(function(t){i(null,t)})),s.beforesend.call(o,c),c.send(null==n?null:n),o},o.abort=function(){return c.abort(),o},t.rebind(o,s,\"on\"),null==a?o:o.get(function(t){return 1===t.length?function(e,r){t(null==e?r:null)}:t}(a))}pe.forEach((function(t,e){pe.set(t,ie(e))})),t.functor=de,t.xhr=ge(L),t.dsv=function(t,e){var r=new RegExp('[\"'+t+\"\\n]\"),n=t.charCodeAt(0);function i(t,r,n){arguments.length<3&&(n=r,r=null);var i=me(t,e,null==r?a:o(r),n);return i.row=function(t){return arguments.length?i.response(null==(r=t)?a:o(t)):r},i}function a(t){return i.parse(t.responseText)}function o(t){return function(e){return i.parse(e.responseText,t)}}function s(e){return e.map(l).join(t)}function l(t){return r.test(t)?'\"'+t.replace(/\\\"/g,'\"\"')+'\"':t}return i.parse=function(t,e){var r;return i.parseRows(t,(function(t,n){if(r)return r(t,n-1);var i=new Function(\"d\",\"return {\"+t.map((function(t,e){return JSON.stringify(t)+\": d[\"+e+\"]\"})).join(\",\")+\"}\");r=e?function(t,r){return e(i(t),r)}:i}))},i.parseRows=function(t,e){var r,i,a={},o={},s=[],l=t.length,c=0,u=0;function f(){if(c>=l)return o;if(i)return i=!1,a;var e=c;if(34===t.charCodeAt(e)){for(var r=e;r++<l;)if(34===t.charCodeAt(r)){if(34!==t.charCodeAt(r+1))break;++r}return c=r+2,13===(s=t.charCodeAt(r+1))?(i=!0,10===t.charCodeAt(r+2)&&++c):10===s&&(i=!0),t.slice(e+1,r).replace(/\"\"/g,'\"')}for(;c<l;){var s,u=1;if(10===(s=t.charCodeAt(c++)))i=!0;else if(13===s)i=!0,10===t.charCodeAt(c)&&(++c,++u);else if(s!==n)continue;return t.slice(e,c-u)}return t.slice(e)}for(;(r=f())!==o;){for(var h=[];r!==a&&r!==o;)h.push(r),r=f();e&&null==(h=e(h,u++))||s.push(h)}return s},i.format=function(e){if(Array.isArray(e[0]))return i.formatRows(e);var r=new C,n=[];return e.forEach((function(t){for(var e in t)r.has(e)||n.push(r.add(e))})),[n.map(l).join(t)].concat(e.map((function(e){return n.map((function(t){return l(e[t])})).join(t)}))).join(\"\\n\")},i.formatRows=function(t){return t.map(s).join(\"\\n\")},i},t.csv=t.dsv(\",\",\"text/csv\"),t.tsv=t.dsv(\"\\t\",\"text/tab-separated-values\");var ve,ye,xe,be,_e=this[P(this,\"requestAnimationFrame\")]||function(t){setTimeout(t,17)};function we(t,e,r){var n=arguments.length;n<2&&(e=0),n<3&&(r=Date.now());var i=r+e,a={c:t,t:i,n:null};return ye?ye.n=a:ve=a,ye=a,xe||(be=clearTimeout(be),xe=1,_e(Te)),a}function Te(){var t=ke(),e=Me()-t;e>24?(isFinite(e)&&(clearTimeout(be),be=setTimeout(Te,e)),xe=0):(xe=1,_e(Te))}function ke(){for(var t=Date.now(),e=ve;e;)t>=e.t&&e.c(t-e.t)&&(e.c=null),e=e.n;return t}function Me(){for(var t,e=ve,r=1/0;e;)e.c?(e.t<r&&(r=e.t),e=(t=e).n):e=t?t.n=e.n:ve=e.n;return ye=t,r}function Ae(t,e){return e-(t?Math.ceil(Math.log(t)/Math.LN10):1)}t.timer=function(){we.apply(this,arguments)},t.timer.flush=function(){ke(),Me()},t.round=function(t,e){return e?Math.round(t*(e=Math.pow(10,e)))/e:Math.round(t)};var Se=[\"y\",\"z\",\"a\",\"f\",\"p\",\"n\",\"\\xb5\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\",\"P\",\"E\",\"Z\",\"Y\"].map((function(t,e){var r=Math.pow(10,3*y(8-e));return{scale:e>8?function(t){return t/r}:function(t){return t*r},symbol:t}}));function Ee(e){var r=e.decimal,n=e.thousands,i=e.grouping,a=e.currency,o=i&&n?function(t,e){for(var r=t.length,a=[],o=0,s=i[0],l=0;r>0&&s>0&&(l+s+1>e&&(s=Math.max(1,e-l)),a.push(t.substring(r-=s,r+s)),!((l+=s+1)>e));)s=i[o=(o+1)%i.length];return a.reverse().join(n)}:L;return function(e){var n=Ce.exec(e),i=n[1]||\" \",s=n[2]||\">\",l=n[3]||\"-\",c=n[4]||\"\",u=n[5],f=+n[6],h=n[7],p=n[8],d=n[9],g=1,m=\"\",v=\"\",y=!1,x=!0;switch(p&&(p=+p.substring(1)),(u||\"0\"===i&&\"=\"===s)&&(u=i=\"0\",s=\"=\"),d){case\"n\":h=!0,d=\"g\";break;case\"%\":g=100,v=\"%\",d=\"f\";break;case\"p\":g=100,v=\"%\",d=\"r\";break;case\"b\":case\"o\":case\"x\":case\"X\":\"#\"===c&&(m=\"0\"+d.toLowerCase());case\"c\":x=!1;case\"d\":y=!0,p=0;break;case\"s\":g=-1,d=\"r\"}\"$\"===c&&(m=a[0],v=a[1]),\"r\"!=d||p||(d=\"g\"),null!=p&&(\"g\"==d?p=Math.max(1,Math.min(21,p)):\"e\"!=d&&\"f\"!=d||(p=Math.max(0,Math.min(20,p)))),d=Le.get(d)||Ie;var b=u&&h;return function(e){var n=v;if(y&&e%1)return\"\";var a=e<0||0===e&&1/e<0?(e=-e,\"-\"):\"-\"===l?\"\":l;if(g<0){var c=t.formatPrefix(e,p);e=c.scale(e),n=c.symbol+v}else e*=g;var _,w,T=(e=d(e,p)).lastIndexOf(\".\");if(T<0){var k=x?e.lastIndexOf(\"e\"):-1;k<0?(_=e,w=\"\"):(_=e.substring(0,k),w=e.substring(k))}else _=e.substring(0,T),w=r+e.substring(T+1);!u&&h&&(_=o(_,1/0));var M=m.length+_.length+w.length+(b?0:a.length),A=M<f?new Array(M=f-M+1).join(i):\"\";return b&&(_=o(A+_,A.length?f-w.length:1/0)),a+=m,e=_+w,(\"<\"===s?a+e+A:\">\"===s?A+a+e:\"^\"===s?A.substring(0,M>>=1)+a+e+A.substring(M):a+(b?e:A+e))+n}}}t.formatPrefix=function(e,r){var n=0;return(e=+e)&&(e<0&&(e*=-1),r&&(e=t.round(e,Ae(e,r))),n=1+Math.floor(1e-12+Math.log(e)/Math.LN10),n=Math.max(-24,Math.min(24,3*Math.floor((n-1)/3)))),Se[8+n/3]};var Ce=/(?:([^{])?([<>=^]))?([+\\- ])?([$#])?(0)?(\\d+)?(,)?(\\.-?\\d+)?([a-z%])?/i,Le=t.map({b:function(t){return t.toString(2)},c:function(t){return String.fromCharCode(t)},o:function(t){return t.toString(8)},x:function(t){return t.toString(16)},X:function(t){return t.toString(16).toUpperCase()},g:function(t,e){return t.toPrecision(e)},e:function(t,e){return t.toExponential(e)},f:function(t,e){return t.toFixed(e)},r:function(e,r){return(e=t.round(e,Ae(e,r))).toFixed(Math.max(0,Math.min(20,Ae(e*(1+1e-15),r))))}});function Ie(t){return t+\"\"}var Pe=t.time={},ze=Date;function Oe(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}Oe.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){De.setUTCDate.apply(this._,arguments)},setDay:function(){De.setUTCDay.apply(this._,arguments)},setFullYear:function(){De.setUTCFullYear.apply(this._,arguments)},setHours:function(){De.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){De.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){De.setUTCMinutes.apply(this._,arguments)},setMonth:function(){De.setUTCMonth.apply(this._,arguments)},setSeconds:function(){De.setUTCSeconds.apply(this._,arguments)},setTime:function(){De.setTime.apply(this._,arguments)}};var De=Date.prototype;function Re(t,e,r){function n(e){var r=t(e),n=a(r,1);return e-r<n-e?r:n}function i(r){return e(r=t(new ze(r-1)),1),r}function a(t,r){return e(t=new ze(+t),r),t}function o(t,n,a){var o=i(t),s=[];if(a>1)for(;o<n;)r(o)%a||s.push(new Date(+o)),e(o,1);else for(;o<n;)s.push(new Date(+o)),e(o,1);return s}t.floor=t,t.round=n,t.ceil=i,t.offset=a,t.range=o;var s=t.utc=Fe(t);return s.floor=s,s.round=Fe(n),s.ceil=Fe(i),s.offset=Fe(a),s.range=function(t,e,r){try{ze=Oe;var n=new Oe;return n._=t,o(n,e,r)}finally{ze=Date}},t}function Fe(t){return function(e,r){try{ze=Oe;var n=new Oe;return n._=e,t(n,r)._}finally{ze=Date}}}function Be(e){var r=e.dateTime,n=e.date,i=e.time,a=e.periods,o=e.days,s=e.shortDays,l=e.months,c=e.shortMonths;function u(t){var e=t.length;function r(r){for(var n,i,a,o=[],s=-1,l=0;++s<e;)37===t.charCodeAt(s)&&(o.push(t.slice(l,s)),null!=(i=Ne[n=t.charAt(++s)])&&(n=t.charAt(++s)),(a=_[n])&&(n=a(r,null==i?\"e\"===n?\" \":\"0\":i)),o.push(n),l=s+1);return o.push(t.slice(l,s)),o.join(\"\")}return r.parse=function(e){var r={y:1900,m:0,d:1,H:0,M:0,S:0,L:0,Z:null};if(f(r,t,e,0)!=e.length)return null;\"p\"in r&&(r.H=r.H%12+12*r.p);var n=null!=r.Z&&ze!==Oe,i=new(n?Oe:ze);return\"j\"in r?i.setFullYear(r.y,0,r.j):\"W\"in r||\"U\"in r?(\"w\"in r||(r.w=\"W\"in r?1:0),i.setFullYear(r.y,0,1),i.setFullYear(r.y,0,\"W\"in r?(r.w+6)%7+7*r.W-(i.getDay()+5)%7:r.w+7*r.U-(i.getDay()+6)%7)):i.setFullYear(r.y,r.m,r.d),i.setHours(r.H+(r.Z/100|0),r.M+r.Z%100,r.S,r.L),n?i._:i},r.toString=function(){return t},r}function f(t,e,r,n){for(var i,a,o,s=0,l=e.length,c=r.length;s<l;){if(n>=c)return-1;if(37===(i=e.charCodeAt(s++))){if(o=e.charAt(s++),!(a=w[o in Ne?e.charAt(s++):o])||(n=a(t,r,n))<0)return-1}else if(i!=r.charCodeAt(n++))return-1}return n}u.utc=function(t){var e=u(t);function r(t){try{var r=new(ze=Oe);return r._=t,e(r)}finally{ze=Date}}return r.parse=function(t){try{ze=Oe;var r=e.parse(t);return r&&r._}finally{ze=Date}},r.toString=e.toString,r},u.multi=u.utc.multi=or;var h=t.map(),p=qe(o),d=He(o),g=qe(s),m=He(s),v=qe(l),y=He(l),x=qe(c),b=He(c);a.forEach((function(t,e){h.set(t.toLowerCase(),e)}));var _={a:function(t){return s[t.getDay()]},A:function(t){return o[t.getDay()]},b:function(t){return c[t.getMonth()]},B:function(t){return l[t.getMonth()]},c:u(r),d:function(t,e){return Ve(t.getDate(),e,2)},e:function(t,e){return Ve(t.getDate(),e,2)},H:function(t,e){return Ve(t.getHours(),e,2)},I:function(t,e){return Ve(t.getHours()%12||12,e,2)},j:function(t,e){return Ve(1+Pe.dayOfYear(t),e,3)},L:function(t,e){return Ve(t.getMilliseconds(),e,3)},m:function(t,e){return Ve(t.getMonth()+1,e,2)},M:function(t,e){return Ve(t.getMinutes(),e,2)},p:function(t){return a[+(t.getHours()>=12)]},S:function(t,e){return Ve(t.getSeconds(),e,2)},U:function(t,e){return Ve(Pe.sundayOfYear(t),e,2)},w:function(t){return t.getDay()},W:function(t,e){return Ve(Pe.mondayOfYear(t),e,2)},x:u(n),X:u(i),y:function(t,e){return Ve(t.getFullYear()%100,e,2)},Y:function(t,e){return Ve(t.getFullYear()%1e4,e,4)},Z:ir,\"%\":function(){return\"%\"}},w={a:function(t,e,r){g.lastIndex=0;var n=g.exec(e.slice(r));return n?(t.w=m.get(n[0].toLowerCase()),r+n[0].length):-1},A:function(t,e,r){p.lastIndex=0;var n=p.exec(e.slice(r));return n?(t.w=d.get(n[0].toLowerCase()),r+n[0].length):-1},b:function(t,e,r){x.lastIndex=0;var n=x.exec(e.slice(r));return n?(t.m=b.get(n[0].toLowerCase()),r+n[0].length):-1},B:function(t,e,r){v.lastIndex=0;var n=v.exec(e.slice(r));return n?(t.m=y.get(n[0].toLowerCase()),r+n[0].length):-1},c:function(t,e,r){return f(t,_.c.toString(),e,r)},d:Qe,e:Qe,H:tr,I:tr,j:$e,L:nr,m:Ke,M:er,p:function(t,e,r){var n=h.get(e.slice(r,r+=2).toLowerCase());return null==n?-1:(t.p=n,r)},S:rr,U:Ye,w:Ge,W:We,x:function(t,e,r){return f(t,_.x.toString(),e,r)},X:function(t,e,r){return f(t,_.X.toString(),e,r)},y:Ze,Y:Xe,Z:Je,\"%\":ar};return u}Pe.year=Re((function(t){return(t=Pe.day(t)).setMonth(0,1),t}),(function(t,e){t.setFullYear(t.getFullYear()+e)}),(function(t){return t.getFullYear()})),Pe.years=Pe.year.range,Pe.years.utc=Pe.year.utc.range,Pe.day=Re((function(t){var e=new ze(2e3,0);return e.setFullYear(t.getFullYear(),t.getMonth(),t.getDate()),e}),(function(t,e){t.setDate(t.getDate()+e)}),(function(t){return t.getDate()-1})),Pe.days=Pe.day.range,Pe.days.utc=Pe.day.utc.range,Pe.dayOfYear=function(t){var e=Pe.year(t);return Math.floor((t-e-6e4*(t.getTimezoneOffset()-e.getTimezoneOffset()))/864e5)},[\"sunday\",\"monday\",\"tuesday\",\"wednesday\",\"thursday\",\"friday\",\"saturday\"].forEach((function(t,e){e=7-e;var r=Pe[t]=Re((function(t){return(t=Pe.day(t)).setDate(t.getDate()-(t.getDay()+e)%7),t}),(function(t,e){t.setDate(t.getDate()+7*Math.floor(e))}),(function(t){var r=Pe.year(t).getDay();return Math.floor((Pe.dayOfYear(t)+(r+e)%7)/7)-(r!==e)}));Pe[t+\"s\"]=r.range,Pe[t+\"s\"].utc=r.utc.range,Pe[t+\"OfYear\"]=function(t){var r=Pe.year(t).getDay();return Math.floor((Pe.dayOfYear(t)+(r+e)%7)/7)}})),Pe.week=Pe.sunday,Pe.weeks=Pe.sunday.range,Pe.weeks.utc=Pe.sunday.utc.range,Pe.weekOfYear=Pe.sundayOfYear;var Ne={\"-\":\"\",_:\" \",0:\"0\"},je=/^\\s*\\d+/,Ue=/^%/;function Ve(t,e,r){var n=t<0?\"-\":\"\",i=(n?-t:t)+\"\",a=i.length;return n+(a<r?new Array(r-a+1).join(e)+i:i)}function qe(e){return new RegExp(\"^(?:\"+e.map(t.requote).join(\"|\")+\")\",\"i\")}function He(t){for(var e=new _,r=-1,n=t.length;++r<n;)e.set(t[r].toLowerCase(),r);return e}function Ge(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+1));return n?(t.w=+n[0],r+n[0].length):-1}function Ye(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r));return n?(t.U=+n[0],r+n[0].length):-1}function We(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r));return n?(t.W=+n[0],r+n[0].length):-1}function Xe(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+4));return n?(t.y=+n[0],r+n[0].length):-1}function Ze(t,e,r){je.lastIndex=0;var n,i=je.exec(e.slice(r,r+2));return i?(t.y=(n=+i[0])+(n>68?1900:2e3),r+i[0].length):-1}function Je(t,e,r){return/^[+-]\\d{4}$/.test(e=e.slice(r,r+5))?(t.Z=-e,r+5):-1}function Ke(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.m=n[0]-1,r+n[0].length):-1}function Qe(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.d=+n[0],r+n[0].length):-1}function $e(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+3));return n?(t.j=+n[0],r+n[0].length):-1}function tr(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.H=+n[0],r+n[0].length):-1}function er(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.M=+n[0],r+n[0].length):-1}function rr(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+2));return n?(t.S=+n[0],r+n[0].length):-1}function nr(t,e,r){je.lastIndex=0;var n=je.exec(e.slice(r,r+3));return n?(t.L=+n[0],r+n[0].length):-1}function ir(t){var e=t.getTimezoneOffset(),r=e>0?\"-\":\"+\",n=y(e)/60|0,i=y(e)%60;return r+Ve(n,\"0\",2)+Ve(i,\"0\",2)}function ar(t,e,r){Ue.lastIndex=0;var n=Ue.exec(e.slice(r,r+1));return n?r+n[0].length:-1}function or(t){for(var e=t.length,r=-1;++r<e;)t[r][0]=this(t[r][0]);return function(e){for(var r=0,n=t[r];!n[1](e);)n=t[++r];return n[0](e)}}t.locale=function(t){return{numberFormat:Ee(t),timeFormat:Be(t)}};var sr=t.locale({decimal:\".\",thousands:\",\",grouping:[3],currency:[\"$\",\"\"],dateTime:\"%a %b %e %X %Y\",date:\"%m/%d/%Y\",time:\"%H:%M:%S\",periods:[\"AM\",\"PM\"],days:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],shortDays:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],months:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],shortMonths:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"]});function lr(){}t.format=sr.numberFormat,t.geo={},lr.prototype={s:0,t:0,add:function(t){ur(t,this.t,cr),ur(cr.s,this.s,this),this.s?this.t+=cr.t:this.s=cr.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var cr=new lr;function ur(t,e,r){var n=r.s=t+e,i=n-t,a=n-i;r.t=t-a+(e-i)}function fr(t,e){t&&pr.hasOwnProperty(t.type)&&pr[t.type](t,e)}t.geo.stream=function(t,e){t&&hr.hasOwnProperty(t.type)?hr[t.type](t,e):fr(t,e)};var hr={Feature:function(t,e){fr(t.geometry,e)},FeatureCollection:function(t,e){for(var r=t.features,n=-1,i=r.length;++n<i;)fr(r[n].geometry,e)}},pr={Sphere:function(t,e){e.sphere()},Point:function(t,e){t=t.coordinates,e.point(t[0],t[1],t[2])},MultiPoint:function(t,e){for(var r=t.coordinates,n=-1,i=r.length;++n<i;)t=r[n],e.point(t[0],t[1],t[2])},LineString:function(t,e){dr(t.coordinates,e,0)},MultiLineString:function(t,e){for(var r=t.coordinates,n=-1,i=r.length;++n<i;)dr(r[n],e,0)},Polygon:function(t,e){gr(t.coordinates,e)},MultiPolygon:function(t,e){for(var r=t.coordinates,n=-1,i=r.length;++n<i;)gr(r[n],e)},GeometryCollection:function(t,e){for(var r=t.geometries,n=-1,i=r.length;++n<i;)fr(r[n],e)}};function dr(t,e,r){var n,i=-1,a=t.length-r;for(e.lineStart();++i<a;)n=t[i],e.point(n[0],n[1],n[2]);e.lineEnd()}function gr(t,e){var r=-1,n=t.length;for(e.polygonStart();++r<n;)dr(t[r],e,1);e.polygonEnd()}t.geo.area=function(e){return mr=0,t.geo.stream(e,Cr),mr};var mr,vr,yr,xr,br,_r,wr,Tr,kr,Mr,Ar,Sr,Er=new lr,Cr={sphere:function(){mr+=4*At},point:O,lineStart:O,lineEnd:O,polygonStart:function(){Er.reset(),Cr.lineStart=Lr},polygonEnd:function(){var t=2*Er;mr+=t<0?4*At+t:t,Cr.lineStart=Cr.lineEnd=Cr.point=O}};function Lr(){var t,e,r,n,i;function a(t,e){e=e*Lt/2+At/4;var a=(t*=Lt)-r,o=a>=0?1:-1,s=o*a,l=Math.cos(e),c=Math.sin(e),u=i*c,f=n*l+u*Math.cos(s),h=u*o*Math.sin(s);Er.add(Math.atan2(h,f)),r=t,n=l,i=c}Cr.point=function(o,s){Cr.point=a,r=(t=o)*Lt,n=Math.cos(s=(e=s)*Lt/2+At/4),i=Math.sin(s)},Cr.lineEnd=function(){a(t,e)}}function Ir(t){var e=t[0],r=t[1],n=Math.cos(r);return[n*Math.cos(e),n*Math.sin(e),Math.sin(r)]}function Pr(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}function zr(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}function Or(t,e){t[0]+=e[0],t[1]+=e[1],t[2]+=e[2]}function Dr(t,e){return[t[0]*e,t[1]*e,t[2]*e]}function Rr(t){var e=Math.sqrt(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]);t[0]/=e,t[1]/=e,t[2]/=e}function Fr(t){return[Math.atan2(t[1],t[0]),Dt(t[2])]}function Br(t,e){return y(t[0]-e[0])<kt&&y(t[1]-e[1])<kt}t.geo.bounds=function(){var e,r,n,i,a,o,s,l,c,u,f,h={point:p,lineStart:g,lineEnd:m,polygonStart:function(){h.point=v,h.lineStart=x,h.lineEnd=b,c=0,Cr.polygonStart()},polygonEnd:function(){Cr.polygonEnd(),h.point=p,h.lineStart=g,h.lineEnd=m,Er<0?(e=-(n=180),r=-(i=90)):c>kt?i=90:c<-kt&&(r=-90),f[0]=e,f[1]=n}};function p(t,a){u.push(f=[e=t,n=t]),a<r&&(r=a),a>i&&(i=a)}function d(t,o){var s=Ir([t*Lt,o*Lt]);if(l){var c=zr(l,s),u=zr([c[1],-c[0],0],c);Rr(u),u=Fr(u);var f=t-a,h=f>0?1:-1,d=u[0]*It*h,g=y(f)>180;if(g^(h*a<d&&d<h*t))(m=u[1]*It)>i&&(i=m);else if(g^(h*a<(d=(d+360)%360-180)&&d<h*t)){var m;(m=-u[1]*It)<r&&(r=m)}else o<r&&(r=o),o>i&&(i=o);g?t<a?_(e,t)>_(e,n)&&(n=t):_(t,n)>_(e,n)&&(e=t):n>=e?(t<e&&(e=t),t>n&&(n=t)):t>a?_(e,t)>_(e,n)&&(n=t):_(t,n)>_(e,n)&&(e=t)}else p(t,o);l=s,a=t}function g(){h.point=d}function m(){f[0]=e,f[1]=n,h.point=p,l=null}function v(t,e){if(l){var r=t-a;c+=y(r)>180?r+(r>0?360:-360):r}else o=t,s=e;Cr.point(t,e),d(t,e)}function x(){Cr.lineStart()}function b(){v(o,s),Cr.lineEnd(),y(c)>kt&&(e=-(n=180)),f[0]=e,f[1]=n,l=null}function _(t,e){return(e-=t)<0?e+360:e}function w(t,e){return t[0]-e[0]}function T(t,e){return e[0]<=e[1]?e[0]<=t&&t<=e[1]:t<e[0]||e[1]<t}return function(a){if(i=n=-(e=r=1/0),u=[],t.geo.stream(a,h),c=u.length){u.sort(w);for(var o=1,s=[g=u[0]];o<c;++o)T((p=u[o])[0],g)||T(p[1],g)?(_(g[0],p[1])>_(g[0],g[1])&&(g[1]=p[1]),_(p[0],g[1])>_(g[0],g[1])&&(g[0]=p[0])):s.push(g=p);for(var l,c,p,d=-1/0,g=(o=0,s[c=s.length-1]);o<=c;g=p,++o)p=s[o],(l=_(g[1],p[0]))>d&&(d=l,e=p[0],n=g[1])}return u=f=null,e===1/0||r===1/0?[[NaN,NaN],[NaN,NaN]]:[[e,r],[n,i]]}}(),t.geo.centroid=function(e){vr=yr=xr=br=_r=wr=Tr=kr=Mr=Ar=Sr=0,t.geo.stream(e,Nr);var r=Mr,n=Ar,i=Sr,a=r*r+n*n+i*i;return a<Mt&&(r=wr,n=Tr,i=kr,yr<kt&&(r=xr,n=br,i=_r),(a=r*r+n*n+i*i)<Mt)?[NaN,NaN]:[Math.atan2(n,r)*It,Dt(i/Math.sqrt(a))*It]};var Nr={sphere:O,point:jr,lineStart:Vr,lineEnd:qr,polygonStart:function(){Nr.lineStart=Hr},polygonEnd:function(){Nr.lineStart=Vr}};function jr(t,e){t*=Lt;var r=Math.cos(e*=Lt);Ur(r*Math.cos(t),r*Math.sin(t),Math.sin(e))}function Ur(t,e,r){++vr,xr+=(t-xr)/vr,br+=(e-br)/vr,_r+=(r-_r)/vr}function Vr(){var t,e,r;function n(n,i){n*=Lt;var a=Math.cos(i*=Lt),o=a*Math.cos(n),s=a*Math.sin(n),l=Math.sin(i),c=Math.atan2(Math.sqrt((c=e*l-r*s)*c+(c=r*o-t*l)*c+(c=t*s-e*o)*c),t*o+e*s+r*l);yr+=c,wr+=c*(t+(t=o)),Tr+=c*(e+(e=s)),kr+=c*(r+(r=l)),Ur(t,e,r)}Nr.point=function(i,a){i*=Lt;var o=Math.cos(a*=Lt);t=o*Math.cos(i),e=o*Math.sin(i),r=Math.sin(a),Nr.point=n,Ur(t,e,r)}}function qr(){Nr.point=jr}function Hr(){var t,e,r,n,i;function a(t,e){t*=Lt;var a=Math.cos(e*=Lt),o=a*Math.cos(t),s=a*Math.sin(t),l=Math.sin(e),c=n*l-i*s,u=i*o-r*l,f=r*s-n*o,h=Math.sqrt(c*c+u*u+f*f),p=r*o+n*s+i*l,d=h&&-Ot(p)/h,g=Math.atan2(h,p);Mr+=d*c,Ar+=d*u,Sr+=d*f,yr+=g,wr+=g*(r+(r=o)),Tr+=g*(n+(n=s)),kr+=g*(i+(i=l)),Ur(r,n,i)}Nr.point=function(o,s){t=o,e=s,Nr.point=a,o*=Lt;var l=Math.cos(s*=Lt);r=l*Math.cos(o),n=l*Math.sin(o),i=Math.sin(s),Ur(r,n,i)},Nr.lineEnd=function(){a(t,e),Nr.lineEnd=qr,Nr.point=jr}}function Gr(t,e){function r(r,n){return r=t(r,n),e(r[0],r[1])}return t.invert&&e.invert&&(r.invert=function(r,n){return(r=e.invert(r,n))&&t.invert(r[0],r[1])}),r}function Yr(){return!0}function Wr(t,e,r,n,i){var a=[],o=[];if(t.forEach((function(t){if(!((e=t.length-1)<=0)){var e,r=t[0],n=t[e];if(Br(r,n)){i.lineStart();for(var s=0;s<e;++s)i.point((r=t[s])[0],r[1]);i.lineEnd()}else{var l=new Zr(r,t,null,!0),c=new Zr(r,null,l,!1);l.o=c,a.push(l),o.push(c),l=new Zr(n,t,null,!1),c=new Zr(n,null,l,!0),l.o=c,a.push(l),o.push(c)}}})),o.sort(e),Xr(a),Xr(o),a.length){for(var s=0,l=r,c=o.length;s<c;++s)o[s].e=l=!l;for(var u,f,h=a[0];;){for(var p=h,d=!0;p.v;)if((p=p.n)===h)return;u=p.z,i.lineStart();do{if(p.v=p.o.v=!0,p.e){if(d)for(s=0,c=u.length;s<c;++s)i.point((f=u[s])[0],f[1]);else n(p.x,p.n.x,1,i);p=p.n}else{if(d)for(s=(u=p.p.z).length-1;s>=0;--s)i.point((f=u[s])[0],f[1]);else n(p.x,p.p.x,-1,i);p=p.p}u=(p=p.o).z,d=!d}while(!p.v);i.lineEnd()}}}function Xr(t){if(e=t.length){for(var e,r,n=0,i=t[0];++n<e;)i.n=r=t[n],r.p=i,i=r;i.n=r=t[0],r.p=i}}function Zr(t,e,r,n){this.x=t,this.z=e,this.o=r,this.e=n,this.v=!1,this.n=this.p=null}function Jr(e,r,n,i){return function(a,o){var s,l=r(o),c=a.invert(i[0],i[1]),u={point:f,lineStart:p,lineEnd:d,polygonStart:function(){u.point=b,u.lineStart=_,u.lineEnd=w,s=[],g=[]},polygonEnd:function(){u.point=f,u.lineStart=p,u.lineEnd=d,s=t.merge(s);var e=function(t,e){var r=t[0],n=t[1],i=[Math.sin(r),-Math.cos(r),0],a=0,o=0;Er.reset();for(var s=0,l=e.length;s<l;++s){var c=e[s],u=c.length;if(u)for(var f=c[0],h=f[0],p=f[1]/2+At/4,d=Math.sin(p),g=Math.cos(p),m=1;;){m===u&&(m=0);var v=(t=c[m])[0],y=t[1]/2+At/4,x=Math.sin(y),b=Math.cos(y),_=v-h,w=_>=0?1:-1,T=w*_,k=T>At,M=d*x;if(Er.add(Math.atan2(M*w*Math.sin(T),g*b+M*Math.cos(T))),a+=k?_+w*St:_,k^h>=r^v>=r){var A=zr(Ir(f),Ir(t));Rr(A);var S=zr(i,A);Rr(S);var E=(k^_>=0?-1:1)*Dt(S[2]);(n>E||n===E&&(A[0]||A[1]))&&(o+=k^_>=0?1:-1)}if(!m++)break;h=v,d=x,g=b,f=t}}return(a<-kt||a<kt&&Er<-kt)^1&o}(c,g);s.length?(x||(o.polygonStart(),x=!0),Wr(s,$r,e,n,o)):e&&(x||(o.polygonStart(),x=!0),o.lineStart(),n(null,null,1,o),o.lineEnd()),x&&(o.polygonEnd(),x=!1),s=g=null},sphere:function(){o.polygonStart(),o.lineStart(),n(null,null,1,o),o.lineEnd(),o.polygonEnd()}};function f(t,r){var n=a(t,r);e(t=n[0],r=n[1])&&o.point(t,r)}function h(t,e){var r=a(t,e);l.point(r[0],r[1])}function p(){u.point=h,l.lineStart()}function d(){u.point=f,l.lineEnd()}var g,m,v=Qr(),y=r(v),x=!1;function b(t,e){m.push([t,e]);var r=a(t,e);y.point(r[0],r[1])}function _(){y.lineStart(),m=[]}function w(){b(m[0][0],m[0][1]),y.lineEnd();var t,e=y.clean(),r=v.buffer(),n=r.length;if(m.pop(),g.push(m),m=null,n)if(1&e){var i,a=-1;if((n=(t=r[0]).length-1)>0){for(x||(o.polygonStart(),x=!0),o.lineStart();++a<n;)o.point((i=t[a])[0],i[1]);o.lineEnd()}}else n>1&&2&e&&r.push(r.pop().concat(r.shift())),s.push(r.filter(Kr))}return u}}function Kr(t){return t.length>1}function Qr(){var t,e=[];return{lineStart:function(){e.push(t=[])},point:function(e,r){t.push([e,r])},lineEnd:O,buffer:function(){var r=e;return e=[],t=null,r},rejoin:function(){e.length>1&&e.push(e.pop().concat(e.shift()))}}}function $r(t,e){return((t=t.x)[0]<0?t[1]-Ct-kt:Ct-t[1])-((e=e.x)[0]<0?e[1]-Ct-kt:Ct-e[1])}var tn=Jr(Yr,(function(t){var e,r=NaN,n=NaN,i=NaN;return{lineStart:function(){t.lineStart(),e=1},point:function(a,o){var s=a>0?At:-At,l=y(a-r);y(l-At)<kt?(t.point(r,n=(n+o)/2>0?Ct:-Ct),t.point(i,n),t.lineEnd(),t.lineStart(),t.point(s,n),t.point(a,n),e=0):i!==s&&l>=At&&(y(r-i)<kt&&(r-=i*kt),y(a-s)<kt&&(a-=s*kt),n=function(t,e,r,n){var i,a,o=Math.sin(t-r);return y(o)>kt?Math.atan((Math.sin(e)*(a=Math.cos(n))*Math.sin(r)-Math.sin(n)*(i=Math.cos(e))*Math.sin(t))/(i*a*o)):(e+n)/2}(r,n,a,o),t.point(i,n),t.lineEnd(),t.lineStart(),t.point(s,n),e=0),t.point(r=a,n=o),i=s},lineEnd:function(){t.lineEnd(),r=n=NaN},clean:function(){return 2-e}}}),(function(t,e,r,n){var i;if(null==t)i=r*Ct,n.point(-At,i),n.point(0,i),n.point(At,i),n.point(At,0),n.point(At,-i),n.point(0,-i),n.point(-At,-i),n.point(-At,0),n.point(-At,i);else if(y(t[0]-e[0])>kt){var a=t[0]<e[0]?At:-At;i=r*a/2,n.point(-a,i),n.point(0,i),n.point(a,i)}else n.point(e[0],e[1])}),[-At,-At/2]);function en(t){var e=Math.cos(t),r=e>0,n=y(e)>kt;return Jr(i,(function(t){var e,s,l,c,u;return{lineStart:function(){c=l=!1,u=1},point:function(f,h){var p,d=[f,h],g=i(f,h),m=r?g?0:o(f,h):g?o(f+(f<0?At:-At),h):0;if(!e&&(c=l=g)&&t.lineStart(),g!==l&&(p=a(e,d),(Br(e,p)||Br(d,p))&&(d[0]+=kt,d[1]+=kt,g=i(d[0],d[1]))),g!==l)u=0,g?(t.lineStart(),p=a(d,e),t.point(p[0],p[1])):(p=a(e,d),t.point(p[0],p[1]),t.lineEnd()),e=p;else if(n&&e&&r^g){var v;m&s||!(v=a(d,e,!0))||(u=0,r?(t.lineStart(),t.point(v[0][0],v[0][1]),t.point(v[1][0],v[1][1]),t.lineEnd()):(t.point(v[1][0],v[1][1]),t.lineEnd(),t.lineStart(),t.point(v[0][0],v[0][1])))}!g||e&&Br(e,d)||t.point(d[0],d[1]),e=d,l=g,s=m},lineEnd:function(){l&&t.lineEnd(),e=null},clean:function(){return u|(c&&l)<<1}}}),Bn(t,6*Lt),r?[0,-t]:[-At,t-At]);function i(t,r){return Math.cos(t)*Math.cos(r)>e}function a(t,r,n){var i=[1,0,0],a=zr(Ir(t),Ir(r)),o=Pr(a,a),s=a[0],l=o-s*s;if(!l)return!n&&t;var c=e*o/l,u=-e*s/l,f=zr(i,a),h=Dr(i,c);Or(h,Dr(a,u));var p=f,d=Pr(h,p),g=Pr(p,p),m=d*d-g*(Pr(h,h)-1);if(!(m<0)){var v=Math.sqrt(m),x=Dr(p,(-d-v)/g);if(Or(x,h),x=Fr(x),!n)return x;var b,_=t[0],w=r[0],T=t[1],k=r[1];w<_&&(b=_,_=w,w=b);var M=w-_,A=y(M-At)<kt;if(!A&&k<T&&(b=T,T=k,k=b),A||M<kt?A?T+k>0^x[1]<(y(x[0]-_)<kt?T:k):T<=x[1]&&x[1]<=k:M>At^(_<=x[0]&&x[0]<=w)){var S=Dr(p,(-d+v)/g);return Or(S,h),[x,Fr(S)]}}}function o(e,n){var i=r?t:At-t,a=0;return e<-i?a|=1:e>i&&(a|=2),n<-i?a|=4:n>i&&(a|=8),a}}function rn(t,e,r,n){return function(i){var a,o=i.a,s=i.b,l=o.x,c=o.y,u=0,f=1,h=s.x-l,p=s.y-c;if(a=t-l,h||!(a>0)){if(a/=h,h<0){if(a<u)return;a<f&&(f=a)}else if(h>0){if(a>f)return;a>u&&(u=a)}if(a=r-l,h||!(a<0)){if(a/=h,h<0){if(a>f)return;a>u&&(u=a)}else if(h>0){if(a<u)return;a<f&&(f=a)}if(a=e-c,p||!(a>0)){if(a/=p,p<0){if(a<u)return;a<f&&(f=a)}else if(p>0){if(a>f)return;a>u&&(u=a)}if(a=n-c,p||!(a<0)){if(a/=p,p<0){if(a>f)return;a>u&&(u=a)}else if(p>0){if(a<u)return;a<f&&(f=a)}return u>0&&(i.a={x:l+u*h,y:c+u*p}),f<1&&(i.b={x:l+f*h,y:c+f*p}),i}}}}}}function nn(e,r,n,i){return function(l){var c,u,f,h,p,d,g,m,v,y,x,b=l,_=Qr(),w=rn(e,r,n,i),T={point:A,lineStart:function(){T.point=S,u&&u.push(f=[]);y=!0,v=!1,g=m=NaN},lineEnd:function(){c&&(S(h,p),d&&v&&_.rejoin(),c.push(_.buffer()));T.point=A,v&&l.lineEnd()},polygonStart:function(){l=_,c=[],u=[],x=!0},polygonEnd:function(){l=b,c=t.merge(c);var r=function(t){for(var e=0,r=u.length,n=t[1],i=0;i<r;++i)for(var a,o=1,s=u[i],l=s.length,c=s[0];o<l;++o)a=s[o],c[1]<=n?a[1]>n&&zt(c,a,t)>0&&++e:a[1]<=n&&zt(c,a,t)<0&&--e,c=a;return 0!==e}([e,i]),n=x&&r,a=c.length;(n||a)&&(l.polygonStart(),n&&(l.lineStart(),k(null,null,1,l),l.lineEnd()),a&&Wr(c,o,r,k,l),l.polygonEnd()),c=u=f=null}};function k(t,o,l,c){var u=0,f=0;if(null==t||(u=a(t,l))!==(f=a(o,l))||s(t,o)<0^l>0)do{c.point(0===u||3===u?e:n,u>1?i:r)}while((u=(u+l+4)%4)!==f);else c.point(o[0],o[1])}function M(t,a){return e<=t&&t<=n&&r<=a&&a<=i}function A(t,e){M(t,e)&&l.point(t,e)}function S(t,e){var r=M(t=Math.max(-1e9,Math.min(1e9,t)),e=Math.max(-1e9,Math.min(1e9,e)));if(u&&f.push([t,e]),y)h=t,p=e,d=r,y=!1,r&&(l.lineStart(),l.point(t,e));else if(r&&v)l.point(t,e);else{var n={a:{x:g,y:m},b:{x:t,y:e}};w(n)?(v||(l.lineStart(),l.point(n.a.x,n.a.y)),l.point(n.b.x,n.b.y),r||l.lineEnd(),x=!1):r&&(l.lineStart(),l.point(t,e),x=!1)}g=t,m=e,v=r}return T};function a(t,i){return y(t[0]-e)<kt?i>0?0:3:y(t[0]-n)<kt?i>0?2:1:y(t[1]-r)<kt?i>0?1:0:i>0?3:2}function o(t,e){return s(t.x,e.x)}function s(t,e){var r=a(t,1),n=a(e,1);return r!==n?r-n:0===r?e[1]-t[1]:1===r?t[0]-e[0]:2===r?t[1]-e[1]:e[0]-t[0]}}function an(t){var e=0,r=At/3,n=Ln(t),i=n(e,r);return i.parallels=function(t){return arguments.length?n(e=t[0]*At/180,r=t[1]*At/180):[e/At*180,r/At*180]},i}function on(t,e){var r=Math.sin(t),n=(r+Math.sin(e))/2,i=1+r*(2*n-r),a=Math.sqrt(i)/n;function o(t,e){var r=Math.sqrt(i-2*n*Math.sin(e))/n;return[r*Math.sin(t*=n),a-r*Math.cos(t)]}return o.invert=function(t,e){var r=a-e;return[Math.atan2(t,r)/n,Dt((i-(t*t+r*r)*n*n)/(2*n))]},o}t.geo.clipExtent=function(){var t,e,r,n,i,a,o={stream:function(t){return i&&(i.valid=!1),(i=a(t)).valid=!0,i},extent:function(s){return arguments.length?(a=nn(t=+s[0][0],e=+s[0][1],r=+s[1][0],n=+s[1][1]),i&&(i.valid=!1,i=null),o):[[t,e],[r,n]]}};return o.extent([[0,0],[960,500]])},(t.geo.conicEqualArea=function(){return an(on)}).raw=on,t.geo.albers=function(){return t.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},t.geo.albersUsa=function(){var e,r,n,i,a=t.geo.albers(),o=t.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),s=t.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(t,r){e=[t,r]}};function c(t){var a=t[0],o=t[1];return e=null,r(a,o),e||(n(a,o),e)||i(a,o),e}return c.invert=function(t){var e=a.scale(),r=a.translate(),n=(t[0]-r[0])/e,i=(t[1]-r[1])/e;return(i>=.12&&i<.234&&n>=-.425&&n<-.214?o:i>=.166&&i<.234&&n>=-.214&&n<-.115?s:a).invert(t)},c.stream=function(t){var e=a.stream(t),r=o.stream(t),n=s.stream(t);return{point:function(t,i){e.point(t,i),r.point(t,i),n.point(t,i)},sphere:function(){e.sphere(),r.sphere(),n.sphere()},lineStart:function(){e.lineStart(),r.lineStart(),n.lineStart()},lineEnd:function(){e.lineEnd(),r.lineEnd(),n.lineEnd()},polygonStart:function(){e.polygonStart(),r.polygonStart(),n.polygonStart()},polygonEnd:function(){e.polygonEnd(),r.polygonEnd(),n.polygonEnd()}}},c.precision=function(t){return arguments.length?(a.precision(t),o.precision(t),s.precision(t),c):a.precision()},c.scale=function(t){return arguments.length?(a.scale(t),o.scale(.35*t),s.scale(t),c.translate(a.translate())):a.scale()},c.translate=function(t){if(!arguments.length)return a.translate();var e=a.scale(),u=+t[0],f=+t[1];return r=a.translate(t).clipExtent([[u-.455*e,f-.238*e],[u+.455*e,f+.238*e]]).stream(l).point,n=o.translate([u-.307*e,f+.201*e]).clipExtent([[u-.425*e+kt,f+.12*e+kt],[u-.214*e-kt,f+.234*e-kt]]).stream(l).point,i=s.translate([u-.205*e,f+.212*e]).clipExtent([[u-.214*e+kt,f+.166*e+kt],[u-.115*e-kt,f+.234*e-kt]]).stream(l).point,c},c.scale(1070)};var sn,ln,cn,un,fn,hn,pn={point:O,lineStart:O,lineEnd:O,polygonStart:function(){ln=0,pn.lineStart=dn},polygonEnd:function(){pn.lineStart=pn.lineEnd=pn.point=O,sn+=y(ln/2)}};function dn(){var t,e,r,n;function i(t,e){ln+=n*t-r*e,r=t,n=e}pn.point=function(a,o){pn.point=i,t=r=a,e=n=o},pn.lineEnd=function(){i(t,e)}}var gn={point:function(t,e){t<cn&&(cn=t);t>fn&&(fn=t);e<un&&(un=e);e>hn&&(hn=e)},lineStart:O,lineEnd:O,polygonStart:O,polygonEnd:O};function mn(){var t=vn(4.5),e=[],r={point:n,lineStart:function(){r.point=i},lineEnd:o,polygonStart:function(){r.lineEnd=s},polygonEnd:function(){r.lineEnd=o,r.point=n},pointRadius:function(e){return t=vn(e),r},result:function(){if(e.length){var t=e.join(\"\");return e=[],t}}};function n(r,n){e.push(\"M\",r,\",\",n,t)}function i(t,n){e.push(\"M\",t,\",\",n),r.point=a}function a(t,r){e.push(\"L\",t,\",\",r)}function o(){r.point=n}function s(){e.push(\"Z\")}return r}function vn(t){return\"m0,\"+t+\"a\"+t+\",\"+t+\" 0 1,1 0,\"+-2*t+\"a\"+t+\",\"+t+\" 0 1,1 0,\"+2*t+\"z\"}var yn,xn={point:bn,lineStart:_n,lineEnd:wn,polygonStart:function(){xn.lineStart=Tn},polygonEnd:function(){xn.point=bn,xn.lineStart=_n,xn.lineEnd=wn}};function bn(t,e){xr+=t,br+=e,++_r}function _n(){var t,e;function r(r,n){var i=r-t,a=n-e,o=Math.sqrt(i*i+a*a);wr+=o*(t+r)/2,Tr+=o*(e+n)/2,kr+=o,bn(t=r,e=n)}xn.point=function(n,i){xn.point=r,bn(t=n,e=i)}}function wn(){xn.point=bn}function Tn(){var t,e,r,n;function i(t,e){var i=t-r,a=e-n,o=Math.sqrt(i*i+a*a);wr+=o*(r+t)/2,Tr+=o*(n+e)/2,kr+=o,Mr+=(o=n*t-r*e)*(r+t),Ar+=o*(n+e),Sr+=3*o,bn(r=t,n=e)}xn.point=function(a,o){xn.point=i,bn(t=r=a,e=n=o)},xn.lineEnd=function(){i(t,e)}}function kn(t){var e=4.5,r={point:n,lineStart:function(){r.point=i},lineEnd:o,polygonStart:function(){r.lineEnd=s},polygonEnd:function(){r.lineEnd=o,r.point=n},pointRadius:function(t){return e=t,r},result:O};function n(r,n){t.moveTo(r+e,n),t.arc(r,n,e,0,St)}function i(e,n){t.moveTo(e,n),r.point=a}function a(e,r){t.lineTo(e,r)}function o(){r.point=n}function s(){t.closePath()}return r}function Mn(t){var e=.5,r=Math.cos(30*Lt),n=16;function i(t){return(n?o:a)(t)}function a(e){return En(e,(function(r,n){r=t(r,n),e.point(r[0],r[1])}))}function o(e){var r,i,a,o,l,c,u,f,h,p,d,g,m={point:v,lineStart:y,lineEnd:b,polygonStart:function(){e.polygonStart(),m.lineStart=_},polygonEnd:function(){e.polygonEnd(),m.lineStart=y}};function v(r,n){r=t(r,n),e.point(r[0],r[1])}function y(){f=NaN,m.point=x,e.lineStart()}function x(r,i){var a=Ir([r,i]),o=t(r,i);s(f,h,u,p,d,g,f=o[0],h=o[1],u=r,p=a[0],d=a[1],g=a[2],n,e),e.point(f,h)}function b(){m.point=v,e.lineEnd()}function _(){y(),m.point=w,m.lineEnd=T}function w(t,e){x(r=t,e),i=f,a=h,o=p,l=d,c=g,m.point=x}function T(){s(f,h,u,p,d,g,i,a,r,o,l,c,n,e),m.lineEnd=b,b()}return m}function s(n,i,a,o,l,c,u,f,h,p,d,g,m,v){var x=u-n,b=f-i,_=x*x+b*b;if(_>4*e&&m--){var w=o+p,T=l+d,k=c+g,M=Math.sqrt(w*w+T*T+k*k),A=Math.asin(k/=M),S=y(y(k)-1)<kt||y(a-h)<kt?(a+h)/2:Math.atan2(T,w),E=t(S,A),C=E[0],L=E[1],I=C-n,P=L-i,z=b*I-x*P;(z*z/_>e||y((x*I+b*P)/_-.5)>.3||o*p+l*d+c*g<r)&&(s(n,i,a,o,l,c,C,L,S,w/=M,T/=M,k,m,v),v.point(C,L),s(C,L,S,w,T,k,u,f,h,p,d,g,m,v))}}return i.precision=function(t){return arguments.length?(n=(e=t*t)>0&&16,i):Math.sqrt(e)},i}function An(t){var e=Mn((function(e,r){return t([e*It,r*It])}));return function(t){return In(e(t))}}function Sn(t){this.stream=t}function En(t,e){return{point:e,sphere:function(){t.sphere()},lineStart:function(){t.lineStart()},lineEnd:function(){t.lineEnd()},polygonStart:function(){t.polygonStart()},polygonEnd:function(){t.polygonEnd()}}}function Cn(t){return Ln((function(){return t}))()}function Ln(e){var r,n,i,a,o,s,l=Mn((function(t,e){return[(t=r(t,e))[0]*c+a,o-t[1]*c]})),c=150,u=480,f=250,h=0,p=0,d=0,g=0,m=0,v=tn,y=L,x=null,b=null;function _(t){return[(t=i(t[0]*Lt,t[1]*Lt))[0]*c+a,o-t[1]*c]}function w(t){return(t=i.invert((t[0]-a)/c,(o-t[1])/c))&&[t[0]*It,t[1]*It]}function T(){i=Gr(n=On(d,g,m),r);var t=r(h,p);return a=u-t[0]*c,o=f+t[1]*c,k()}function k(){return s&&(s.valid=!1,s=null),_}return _.stream=function(t){return s&&(s.valid=!1),(s=In(v(n,l(y(t))))).valid=!0,s},_.clipAngle=function(t){return arguments.length?(v=null==t?(x=t,tn):en((x=+t)*Lt),k()):x},_.clipExtent=function(t){return arguments.length?(b=t,y=t?nn(t[0][0],t[0][1],t[1][0],t[1][1]):L,k()):b},_.scale=function(t){return arguments.length?(c=+t,T()):c},_.translate=function(t){return arguments.length?(u=+t[0],f=+t[1],T()):[u,f]},_.center=function(t){return arguments.length?(h=t[0]%360*Lt,p=t[1]%360*Lt,T()):[h*It,p*It]},_.rotate=function(t){return arguments.length?(d=t[0]%360*Lt,g=t[1]%360*Lt,m=t.length>2?t[2]%360*Lt:0,T()):[d*It,g*It,m*It]},t.rebind(_,l,\"precision\"),function(){return r=e.apply(this,arguments),_.invert=r.invert&&w,T()}}function In(t){return En(t,(function(e,r){t.point(e*Lt,r*Lt)}))}function Pn(t,e){return[t,e]}function zn(t,e){return[t>At?t-St:t<-At?t+St:t,e]}function On(t,e,r){return t?e||r?Gr(Rn(t),Fn(e,r)):Rn(t):e||r?Fn(e,r):zn}function Dn(t){return function(e,r){return[(e+=t)>At?e-St:e<-At?e+St:e,r]}}function Rn(t){var e=Dn(t);return e.invert=Dn(-t),e}function Fn(t,e){var r=Math.cos(t),n=Math.sin(t),i=Math.cos(e),a=Math.sin(e);function o(t,e){var o=Math.cos(e),s=Math.cos(t)*o,l=Math.sin(t)*o,c=Math.sin(e),u=c*r+s*n;return[Math.atan2(l*i-u*a,s*r-c*n),Dt(u*i+l*a)]}return o.invert=function(t,e){var o=Math.cos(e),s=Math.cos(t)*o,l=Math.sin(t)*o,c=Math.sin(e),u=c*i-l*a;return[Math.atan2(l*i+c*a,s*r+u*n),Dt(u*r-s*n)]},o}function Bn(t,e){var r=Math.cos(t),n=Math.sin(t);return function(i,a,o,s){var l=o*e;null!=i?(i=Nn(r,i),a=Nn(r,a),(o>0?i<a:i>a)&&(i+=o*St)):(i=t+o*St,a=t-.5*l);for(var c,u=i;o>0?u>a:u<a;u-=l)s.point((c=Fr([r,-n*Math.cos(u),-n*Math.sin(u)]))[0],c[1])}}function Nn(t,e){var r=Ir(e);r[0]-=t,Rr(r);var n=Ot(-r[1]);return((-r[2]<0?-n:n)+2*Math.PI-kt)%(2*Math.PI)}function jn(e,r,n){var i=t.range(e,r-kt,n).concat(r);return function(t){return i.map((function(e){return[t,e]}))}}function Un(e,r,n){var i=t.range(e,r-kt,n).concat(r);return function(t){return i.map((function(e){return[e,t]}))}}function Vn(t){return t.source}function qn(t){return t.target}t.geo.path=function(){var e,r,n,i,a,o=4.5;function s(e){return e&&(\"function\"==typeof o&&i.pointRadius(+o.apply(this,arguments)),a&&a.valid||(a=n(i)),t.geo.stream(e,a)),i.result()}function l(){return a=null,s}return s.area=function(e){return sn=0,t.geo.stream(e,n(pn)),sn},s.centroid=function(e){return xr=br=_r=wr=Tr=kr=Mr=Ar=Sr=0,t.geo.stream(e,n(xn)),Sr?[Mr/Sr,Ar/Sr]:kr?[wr/kr,Tr/kr]:_r?[xr/_r,br/_r]:[NaN,NaN]},s.bounds=function(e){return fn=hn=-(cn=un=1/0),t.geo.stream(e,n(gn)),[[cn,un],[fn,hn]]},s.projection=function(t){return arguments.length?(n=(e=t)?t.stream||An(t):L,l()):e},s.context=function(t){return arguments.length?(i=null==(r=t)?new mn:new kn(t),\"function\"!=typeof o&&i.pointRadius(o),l()):r},s.pointRadius=function(t){return arguments.length?(o=\"function\"==typeof t?t:(i.pointRadius(+t),+t),s):o},s.projection(t.geo.albersUsa()).context(null)},t.geo.transform=function(t){return{stream:function(e){var r=new Sn(e);for(var n in t)r[n]=t[n];return r}}},Sn.prototype={point:function(t,e){this.stream.point(t,e)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},t.geo.projection=Cn,t.geo.projectionMutator=Ln,(t.geo.equirectangular=function(){return Cn(Pn)}).raw=Pn.invert=Pn,t.geo.rotation=function(t){function e(e){return(e=t(e[0]*Lt,e[1]*Lt))[0]*=It,e[1]*=It,e}return t=On(t[0]%360*Lt,t[1]*Lt,t.length>2?t[2]*Lt:0),e.invert=function(e){return(e=t.invert(e[0]*Lt,e[1]*Lt))[0]*=It,e[1]*=It,e},e},zn.invert=Pn,t.geo.circle=function(){var t,e,r=[0,0],n=6;function i(){var t=\"function\"==typeof r?r.apply(this,arguments):r,n=On(-t[0]*Lt,-t[1]*Lt,0).invert,i=[];return e(null,null,1,{point:function(t,e){i.push(t=n(t,e)),t[0]*=It,t[1]*=It}}),{type:\"Polygon\",coordinates:[i]}}return i.origin=function(t){return arguments.length?(r=t,i):r},i.angle=function(r){return arguments.length?(e=Bn((t=+r)*Lt,n*Lt),i):t},i.precision=function(r){return arguments.length?(e=Bn(t*Lt,(n=+r)*Lt),i):n},i.angle(90)},t.geo.distance=function(t,e){var r,n=(e[0]-t[0])*Lt,i=t[1]*Lt,a=e[1]*Lt,o=Math.sin(n),s=Math.cos(n),l=Math.sin(i),c=Math.cos(i),u=Math.sin(a),f=Math.cos(a);return Math.atan2(Math.sqrt((r=f*o)*r+(r=c*u-l*f*s)*r),l*u+c*f*s)},t.geo.graticule=function(){var e,r,n,i,a,o,s,l,c,u,f,h,p=10,d=p,g=90,m=360,v=2.5;function x(){return{type:\"MultiLineString\",coordinates:b()}}function b(){return t.range(Math.ceil(i/g)*g,n,g).map(f).concat(t.range(Math.ceil(l/m)*m,s,m).map(h)).concat(t.range(Math.ceil(r/p)*p,e,p).filter((function(t){return y(t%g)>kt})).map(c)).concat(t.range(Math.ceil(o/d)*d,a,d).filter((function(t){return y(t%m)>kt})).map(u))}return x.lines=function(){return b().map((function(t){return{type:\"LineString\",coordinates:t}}))},x.outline=function(){return{type:\"Polygon\",coordinates:[f(i).concat(h(s).slice(1),f(n).reverse().slice(1),h(l).reverse().slice(1))]}},x.extent=function(t){return arguments.length?x.majorExtent(t).minorExtent(t):x.minorExtent()},x.majorExtent=function(t){return arguments.length?(i=+t[0][0],n=+t[1][0],l=+t[0][1],s=+t[1][1],i>n&&(t=i,i=n,n=t),l>s&&(t=l,l=s,s=t),x.precision(v)):[[i,l],[n,s]]},x.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],o=+t[0][1],a=+t[1][1],r>e&&(t=r,r=e,e=t),o>a&&(t=o,o=a,a=t),x.precision(v)):[[r,o],[e,a]]},x.step=function(t){return arguments.length?x.majorStep(t).minorStep(t):x.minorStep()},x.majorStep=function(t){return arguments.length?(g=+t[0],m=+t[1],x):[g,m]},x.minorStep=function(t){return arguments.length?(p=+t[0],d=+t[1],x):[p,d]},x.precision=function(t){return arguments.length?(v=+t,c=jn(o,a,90),u=Un(r,e,v),f=jn(l,s,90),h=Un(i,n,v),x):v},x.majorExtent([[-180,-90+kt],[180,90-kt]]).minorExtent([[-180,-80-kt],[180,80+kt]])},t.geo.greatArc=function(){var e,r,n=Vn,i=qn;function a(){return{type:\"LineString\",coordinates:[e||n.apply(this,arguments),r||i.apply(this,arguments)]}}return a.distance=function(){return t.geo.distance(e||n.apply(this,arguments),r||i.apply(this,arguments))},a.source=function(t){return arguments.length?(n=t,e=\"function\"==typeof t?null:t,a):n},a.target=function(t){return arguments.length?(i=t,r=\"function\"==typeof t?null:t,a):i},a.precision=function(){return arguments.length?a:0},a},t.geo.interpolate=function(t,e){return r=t[0]*Lt,n=t[1]*Lt,i=e[0]*Lt,a=e[1]*Lt,o=Math.cos(n),s=Math.sin(n),l=Math.cos(a),c=Math.sin(a),u=o*Math.cos(r),f=o*Math.sin(r),h=l*Math.cos(i),p=l*Math.sin(i),d=2*Math.asin(Math.sqrt(Ft(a-n)+o*l*Ft(i-r))),g=1/Math.sin(d),(m=d?function(t){var e=Math.sin(t*=d)*g,r=Math.sin(d-t)*g,n=r*u+e*h,i=r*f+e*p,a=r*s+e*c;return[Math.atan2(i,n)*It,Math.atan2(a,Math.sqrt(n*n+i*i))*It]}:function(){return[r*It,n*It]}).distance=d,m;var r,n,i,a,o,s,l,c,u,f,h,p,d,g,m},t.geo.length=function(e){return yn=0,t.geo.stream(e,Hn),yn};var Hn={sphere:O,point:O,lineStart:function(){var t,e,r;function n(n,i){var a=Math.sin(i*=Lt),o=Math.cos(i),s=y((n*=Lt)-t),l=Math.cos(s);yn+=Math.atan2(Math.sqrt((s=o*Math.sin(s))*s+(s=r*a-e*o*l)*s),e*a+r*o*l),t=n,e=a,r=o}Hn.point=function(i,a){t=i*Lt,e=Math.sin(a*=Lt),r=Math.cos(a),Hn.point=n},Hn.lineEnd=function(){Hn.point=Hn.lineEnd=O}},lineEnd:O,polygonStart:O,polygonEnd:O};function Gn(t,e){function r(e,r){var n=Math.cos(e),i=Math.cos(r),a=t(n*i);return[a*i*Math.sin(e),a*Math.sin(r)]}return r.invert=function(t,r){var n=Math.sqrt(t*t+r*r),i=e(n),a=Math.sin(i),o=Math.cos(i);return[Math.atan2(t*a,n*o),Math.asin(n&&r*a/n)]},r}var Yn=Gn((function(t){return Math.sqrt(2/(1+t))}),(function(t){return 2*Math.asin(t/2)}));(t.geo.azimuthalEqualArea=function(){return Cn(Yn)}).raw=Yn;var Wn=Gn((function(t){var e=Math.acos(t);return e&&e/Math.sin(e)}),L);function Xn(t,e){var r=Math.cos(t),n=function(t){return Math.tan(At/4+t/2)},i=t===e?Math.sin(t):Math.log(r/Math.cos(e))/Math.log(n(e)/n(t)),a=r*Math.pow(n(t),i)/i;if(!i)return Kn;function o(t,e){a>0?e<-Ct+kt&&(e=-Ct+kt):e>Ct-kt&&(e=Ct-kt);var r=a/Math.pow(n(e),i);return[r*Math.sin(i*t),a-r*Math.cos(i*t)]}return o.invert=function(t,e){var r=a-e,n=Pt(i)*Math.sqrt(t*t+r*r);return[Math.atan2(t,r)/i,2*Math.atan(Math.pow(a/n,1/i))-Ct]},o}function Zn(t,e){var r=Math.cos(t),n=t===e?Math.sin(t):(r-Math.cos(e))/(e-t),i=r/n+t;if(y(n)<kt)return Pn;function a(t,e){var r=i-e;return[r*Math.sin(n*t),i-r*Math.cos(n*t)]}return a.invert=function(t,e){var r=i-e;return[Math.atan2(t,r)/n,i-Pt(n)*Math.sqrt(t*t+r*r)]},a}(t.geo.azimuthalEquidistant=function(){return Cn(Wn)}).raw=Wn,(t.geo.conicConformal=function(){return an(Xn)}).raw=Xn,(t.geo.conicEquidistant=function(){return an(Zn)}).raw=Zn;var Jn=Gn((function(t){return 1/t}),Math.atan);function Kn(t,e){return[t,Math.log(Math.tan(At/4+e/2))]}function Qn(t){var e,r=Cn(t),n=r.scale,i=r.translate,a=r.clipExtent;return r.scale=function(){var t=n.apply(r,arguments);return t===r?e?r.clipExtent(null):r:t},r.translate=function(){var t=i.apply(r,arguments);return t===r?e?r.clipExtent(null):r:t},r.clipExtent=function(t){var o=a.apply(r,arguments);if(o===r){if(e=null==t){var s=At*n(),l=i();a([[l[0]-s,l[1]-s],[l[0]+s,l[1]+s]])}}else e&&(o=null);return o},r.clipExtent(null)}(t.geo.gnomonic=function(){return Cn(Jn)}).raw=Jn,Kn.invert=function(t,e){return[t,2*Math.atan(Math.exp(e))-Ct]},(t.geo.mercator=function(){return Qn(Kn)}).raw=Kn;var $n=Gn((function(){return 1}),Math.asin);(t.geo.orthographic=function(){return Cn($n)}).raw=$n;var ti=Gn((function(t){return 1/(1+t)}),(function(t){return 2*Math.atan(t)}));function ei(t,e){return[Math.log(Math.tan(At/4+e/2)),-t]}function ri(t){return t[0]}function ni(t){return t[1]}function ii(t){for(var e=t.length,r=[0,1],n=2,i=2;i<e;i++){for(;n>1&&zt(t[r[n-2]],t[r[n-1]],t[i])<=0;)--n;r[n++]=i}return r.slice(0,n)}function ai(t,e){return t[0]-e[0]||t[1]-e[1]}(t.geo.stereographic=function(){return Cn(ti)}).raw=ti,ei.invert=function(t,e){return[-e,2*Math.atan(Math.exp(t))-Ct]},(t.geo.transverseMercator=function(){var t=Qn(ei),e=t.center,r=t.rotate;return t.center=function(t){return t?e([-t[1],t[0]]):[(t=e())[1],-t[0]]},t.rotate=function(t){return t?r([t[0],t[1],t.length>2?t[2]+90:90]):[(t=r())[0],t[1],t[2]-90]},r([0,0,90])}).raw=ei,t.geom={},t.geom.hull=function(t){var e=ri,r=ni;if(arguments.length)return n(t);function n(t){if(t.length<3)return[];var n,i=de(e),a=de(r),o=t.length,s=[],l=[];for(n=0;n<o;n++)s.push([+i.call(this,t[n],n),+a.call(this,t[n],n),n]);for(s.sort(ai),n=0;n<o;n++)l.push([s[n][0],-s[n][1]]);var c=ii(s),u=ii(l),f=u[0]===c[0],h=u[u.length-1]===c[c.length-1],p=[];for(n=c.length-1;n>=0;--n)p.push(t[s[c[n]][2]]);for(n=+f;n<u.length-h;++n)p.push(t[s[u[n]][2]]);return p}return n.x=function(t){return arguments.length?(e=t,n):e},n.y=function(t){return arguments.length?(r=t,n):r},n},t.geom.polygon=function(t){return U(t,oi),t};var oi=t.geom.polygon.prototype=[];function si(t,e,r){return(r[0]-e[0])*(t[1]-e[1])<(r[1]-e[1])*(t[0]-e[0])}function li(t,e,r,n){var i=t[0],a=r[0],o=e[0]-i,s=n[0]-a,l=t[1],c=r[1],u=e[1]-l,f=n[1]-c,h=(s*(l-c)-f*(i-a))/(f*o-s*u);return[i+h*o,l+h*u]}function ci(t){var e=t[0],r=t[t.length-1];return!(e[0]-r[0]||e[1]-r[1])}oi.area=function(){for(var t,e=-1,r=this.length,n=this[r-1],i=0;++e<r;)t=n,n=this[e],i+=t[1]*n[0]-t[0]*n[1];return.5*i},oi.centroid=function(t){var e,r,n=-1,i=this.length,a=0,o=0,s=this[i-1];for(arguments.length||(t=-1/(6*this.area()));++n<i;)e=s,s=this[n],r=e[0]*s[1]-s[0]*e[1],a+=(e[0]+s[0])*r,o+=(e[1]+s[1])*r;return[a*t,o*t]},oi.clip=function(t){for(var e,r,n,i,a,o,s=ci(t),l=-1,c=this.length-ci(this),u=this[c-1];++l<c;){for(e=t.slice(),t.length=0,i=this[l],a=e[(n=e.length-s)-1],r=-1;++r<n;)si(o=e[r],u,i)?(si(a,u,i)||t.push(li(a,o,u,i)),t.push(o)):si(a,u,i)&&t.push(li(a,o,u,i)),a=o;s&&t.push(t[0]),u=i}return t};var ui,fi,hi,pi,di,gi=[],mi=[];function vi(){Ri(this),this.edge=this.site=this.circle=null}function yi(t){var e=gi.pop()||new vi;return e.site=t,e}function xi(t){Ei(t),hi.remove(t),gi.push(t),Ri(t)}function bi(t){var e=t.circle,r=e.x,n=e.cy,i={x:r,y:n},a=t.P,o=t.N,s=[t];xi(t);for(var l=a;l.circle&&y(r-l.circle.x)<kt&&y(n-l.circle.cy)<kt;)a=l.P,s.unshift(l),xi(l),l=a;s.unshift(l),Ei(l);for(var c=o;c.circle&&y(r-c.circle.x)<kt&&y(n-c.circle.cy)<kt;)o=c.N,s.push(c),xi(c),c=o;s.push(c),Ei(c);var u,f=s.length;for(u=1;u<f;++u)c=s[u],l=s[u-1],zi(c.edge,l.site,c.site,i);l=s[0],(c=s[f-1]).edge=Ii(l.site,c.site,null,i),Si(l),Si(c)}function _i(t){for(var e,r,n,i,a=t.x,o=t.y,s=hi._;s;)if((n=wi(s,o)-a)>kt)s=s.L;else{if(!((i=a-Ti(s,o))>kt)){n>-kt?(e=s.P,r=s):i>-kt?(e=s,r=s.N):e=r=s;break}if(!s.R){e=s;break}s=s.R}var l=yi(t);if(hi.insert(e,l),e||r){if(e===r)return Ei(e),r=yi(e.site),hi.insert(l,r),l.edge=r.edge=Ii(e.site,l.site),Si(e),void Si(r);if(r){Ei(e),Ei(r);var c=e.site,u=c.x,f=c.y,h=t.x-u,p=t.y-f,d=r.site,g=d.x-u,m=d.y-f,v=2*(h*m-p*g),y=h*h+p*p,x=g*g+m*m,b={x:(m*y-p*x)/v+u,y:(h*x-g*y)/v+f};zi(r.edge,c,d,b),l.edge=Ii(c,t,null,b),r.edge=Ii(t,d,null,b),Si(e),Si(r)}else l.edge=Ii(e.site,l.site)}}function wi(t,e){var r=t.site,n=r.x,i=r.y,a=i-e;if(!a)return n;var o=t.P;if(!o)return-1/0;var s=(r=o.site).x,l=r.y,c=l-e;if(!c)return s;var u=s-n,f=1/a-1/c,h=u/c;return f?(-h+Math.sqrt(h*h-2*f*(u*u/(-2*c)-l+c/2+i-a/2)))/f+n:(n+s)/2}function Ti(t,e){var r=t.N;if(r)return wi(r,e);var n=t.site;return n.y===e?n.x:1/0}function ki(t){this.site=t,this.edges=[]}function Mi(t,e){return e.angle-t.angle}function Ai(){Ri(this),this.x=this.y=this.arc=this.site=this.cy=null}function Si(t){var e=t.P,r=t.N;if(e&&r){var n=e.site,i=t.site,a=r.site;if(n!==a){var o=i.x,s=i.y,l=n.x-o,c=n.y-s,u=a.x-o,f=2*(l*(m=a.y-s)-c*u);if(!(f>=-Mt)){var h=l*l+c*c,p=u*u+m*m,d=(m*h-c*p)/f,g=(l*p-u*h)/f,m=g+s,v=mi.pop()||new Ai;v.arc=t,v.site=i,v.x=d+o,v.y=m+Math.sqrt(d*d+g*g),v.cy=m,t.circle=v;for(var y=null,x=di._;x;)if(v.y<x.y||v.y===x.y&&v.x<=x.x){if(!x.L){y=x.P;break}x=x.L}else{if(!x.R){y=x;break}x=x.R}di.insert(y,v),y||(pi=v)}}}}function Ei(t){var e=t.circle;e&&(e.P||(pi=e.N),di.remove(e),mi.push(e),Ri(e),t.circle=null)}function Ci(t,e){var r=t.b;if(r)return!0;var n,i,a=t.a,o=e[0][0],s=e[1][0],l=e[0][1],c=e[1][1],u=t.l,f=t.r,h=u.x,p=u.y,d=f.x,g=f.y,m=(h+d)/2,v=(p+g)/2;if(g===p){if(m<o||m>=s)return;if(h>d){if(a){if(a.y>=c)return}else a={x:m,y:l};r={x:m,y:c}}else{if(a){if(a.y<l)return}else a={x:m,y:c};r={x:m,y:l}}}else if(i=v-(n=(h-d)/(g-p))*m,n<-1||n>1)if(h>d){if(a){if(a.y>=c)return}else a={x:(l-i)/n,y:l};r={x:(c-i)/n,y:c}}else{if(a){if(a.y<l)return}else a={x:(c-i)/n,y:c};r={x:(l-i)/n,y:l}}else if(p<g){if(a){if(a.x>=s)return}else a={x:o,y:n*o+i};r={x:s,y:n*s+i}}else{if(a){if(a.x<o)return}else a={x:s,y:n*s+i};r={x:o,y:n*o+i}}return t.a=a,t.b=r,!0}function Li(t,e){this.l=t,this.r=e,this.a=this.b=null}function Ii(t,e,r,n){var i=new Li(t,e);return ui.push(i),r&&zi(i,t,e,r),n&&zi(i,e,t,n),fi[t.i].edges.push(new Oi(i,t,e)),fi[e.i].edges.push(new Oi(i,e,t)),i}function Pi(t,e,r){var n=new Li(t,null);return n.a=e,n.b=r,ui.push(n),n}function zi(t,e,r,n){t.a||t.b?t.l===r?t.b=n:t.a=n:(t.a=n,t.l=e,t.r=r)}function Oi(t,e,r){var n=t.a,i=t.b;this.edge=t,this.site=e,this.angle=r?Math.atan2(r.y-e.y,r.x-e.x):t.l===e?Math.atan2(i.x-n.x,n.y-i.y):Math.atan2(n.x-i.x,i.y-n.y)}function Di(){this._=null}function Ri(t){t.U=t.C=t.L=t.R=t.P=t.N=null}function Fi(t,e){var r=e,n=e.R,i=r.U;i?i.L===r?i.L=n:i.R=n:t._=n,n.U=i,r.U=n,r.R=n.L,r.R&&(r.R.U=r),n.L=r}function Bi(t,e){var r=e,n=e.L,i=r.U;i?i.L===r?i.L=n:i.R=n:t._=n,n.U=i,r.U=n,r.L=n.R,r.L&&(r.L.U=r),n.R=r}function Ni(t){for(;t.L;)t=t.L;return t}function ji(t,e){var r,n,i,a=t.sort(Ui).pop();for(ui=[],fi=new Array(t.length),hi=new Di,di=new Di;;)if(i=pi,a&&(!i||a.y<i.y||a.y===i.y&&a.x<i.x))a.x===r&&a.y===n||(fi[a.i]=new ki(a),_i(a),r=a.x,n=a.y),a=t.pop();else{if(!i)break;bi(i.arc)}e&&(function(t){for(var e,r=ui,n=rn(t[0][0],t[0][1],t[1][0],t[1][1]),i=r.length;i--;)(!Ci(e=r[i],t)||!n(e)||y(e.a.x-e.b.x)<kt&&y(e.a.y-e.b.y)<kt)&&(e.a=e.b=null,r.splice(i,1))}(e),function(t){for(var e,r,n,i,a,o,s,l,c,u,f=t[0][0],h=t[1][0],p=t[0][1],d=t[1][1],g=fi,m=g.length;m--;)if((a=g[m])&&a.prepare())for(l=(s=a.edges).length,o=0;o<l;)n=(u=s[o].end()).x,i=u.y,e=(c=s[++o%l].start()).x,r=c.y,(y(n-e)>kt||y(i-r)>kt)&&(s.splice(o,0,new Oi(Pi(a.site,u,y(n-f)<kt&&d-i>kt?{x:f,y:y(e-f)<kt?r:d}:y(i-d)<kt&&h-n>kt?{x:y(r-d)<kt?e:h,y:d}:y(n-h)<kt&&i-p>kt?{x:h,y:y(e-h)<kt?r:p}:y(i-p)<kt&&n-f>kt?{x:y(r-p)<kt?e:f,y:p}:null),a.site,null)),++l)}(e));var o={cells:fi,edges:ui};return hi=di=ui=fi=null,o}function Ui(t,e){return e.y-t.y||e.x-t.x}ki.prototype.prepare=function(){for(var t,e=this.edges,r=e.length;r--;)(t=e[r].edge).b&&t.a||e.splice(r,1);return e.sort(Mi),e.length},Oi.prototype={start:function(){return this.edge.l===this.site?this.edge.a:this.edge.b},end:function(){return this.edge.l===this.site?this.edge.b:this.edge.a}},Di.prototype={insert:function(t,e){var r,n,i;if(t){if(e.P=t,e.N=t.N,t.N&&(t.N.P=e),t.N=e,t.R){for(t=t.R;t.L;)t=t.L;t.L=e}else t.R=e;r=t}else this._?(t=Ni(this._),e.P=null,e.N=t,t.P=t.L=e,r=t):(e.P=e.N=null,this._=e,r=null);for(e.L=e.R=null,e.U=r,e.C=!0,t=e;r&&r.C;)r===(n=r.U).L?(i=n.R)&&i.C?(r.C=i.C=!1,n.C=!0,t=n):(t===r.R&&(Fi(this,r),r=(t=r).U),r.C=!1,n.C=!0,Bi(this,n)):(i=n.L)&&i.C?(r.C=i.C=!1,n.C=!0,t=n):(t===r.L&&(Bi(this,r),r=(t=r).U),r.C=!1,n.C=!0,Fi(this,n)),r=t.U;this._.C=!1},remove:function(t){t.N&&(t.N.P=t.P),t.P&&(t.P.N=t.N),t.N=t.P=null;var e,r,n,i=t.U,a=t.L,o=t.R;if(r=a?o?Ni(o):a:o,i?i.L===t?i.L=r:i.R=r:this._=r,a&&o?(n=r.C,r.C=t.C,r.L=a,a.U=r,r!==o?(i=r.U,r.U=t.U,t=r.R,i.L=t,r.R=o,o.U=r):(r.U=i,i=r,t=r.R)):(n=t.C,t=r),t&&(t.U=i),!n)if(t&&t.C)t.C=!1;else{do{if(t===this._)break;if(t===i.L){if((e=i.R).C&&(e.C=!1,i.C=!0,Fi(this,i),e=i.R),e.L&&e.L.C||e.R&&e.R.C){e.R&&e.R.C||(e.L.C=!1,e.C=!0,Bi(this,e),e=i.R),e.C=i.C,i.C=e.R.C=!1,Fi(this,i),t=this._;break}}else if((e=i.L).C&&(e.C=!1,i.C=!0,Bi(this,i),e=i.L),e.L&&e.L.C||e.R&&e.R.C){e.L&&e.L.C||(e.R.C=!1,e.C=!0,Fi(this,e),e=i.L),e.C=i.C,i.C=e.L.C=!1,Bi(this,i),t=this._;break}e.C=!0,t=i,i=i.U}while(!t.C);t&&(t.C=!1)}}},t.geom.voronoi=function(t){var e=ri,r=ni,n=e,i=r,a=Vi;if(t)return o(t);function o(t){var e=new Array(t.length),r=a[0][0],n=a[0][1],i=a[1][0],o=a[1][1];return ji(s(t),a).cells.forEach((function(a,s){var l=a.edges,c=a.site;(e[s]=l.length?l.map((function(t){var e=t.start();return[e.x,e.y]})):c.x>=r&&c.x<=i&&c.y>=n&&c.y<=o?[[r,o],[i,o],[i,n],[r,n]]:[]).point=t[s]})),e}function s(t){return t.map((function(t,e){return{x:Math.round(n(t,e)/kt)*kt,y:Math.round(i(t,e)/kt)*kt,i:e}}))}return o.links=function(t){return ji(s(t)).edges.filter((function(t){return t.l&&t.r})).map((function(e){return{source:t[e.l.i],target:t[e.r.i]}}))},o.triangles=function(t){var e=[];return ji(s(t)).cells.forEach((function(r,n){for(var i,a,o,s,l=r.site,c=r.edges.sort(Mi),u=-1,f=c.length,h=c[f-1].edge,p=h.l===l?h.r:h.l;++u<f;)h,i=p,p=(h=c[u].edge).l===l?h.r:h.l,n<i.i&&n<p.i&&(o=i,s=p,((a=l).x-s.x)*(o.y-a.y)-(a.x-o.x)*(s.y-a.y)<0)&&e.push([t[n],t[i.i],t[p.i]])})),e},o.x=function(t){return arguments.length?(n=de(e=t),o):e},o.y=function(t){return arguments.length?(i=de(r=t),o):r},o.clipExtent=function(t){return arguments.length?(a=null==t?Vi:t,o):a===Vi?null:a},o.size=function(t){return arguments.length?o.clipExtent(t&&[[0,0],t]):a===Vi?null:a&&a[1]},o};var Vi=[[-1e6,-1e6],[1e6,1e6]];function qi(t){return t.x}function Hi(t){return t.y}function Gi(t,e,r,n,i,a){if(!t(e,r,n,i,a)){var o=.5*(r+i),s=.5*(n+a),l=e.nodes;l[0]&&Gi(t,l[0],r,n,o,s),l[1]&&Gi(t,l[1],o,n,i,s),l[2]&&Gi(t,l[2],r,s,o,a),l[3]&&Gi(t,l[3],o,s,i,a)}}function Yi(t,e,r,n,i,a,o){var s,l=1/0;return function t(c,u,f,h,p){if(!(u>a||f>o||h<n||p<i)){if(d=c.point){var d,g=e-c.x,m=r-c.y,v=g*g+m*m;if(v<l){var y=Math.sqrt(l=v);n=e-y,i=r-y,a=e+y,o=r+y,s=d}}for(var x=c.nodes,b=.5*(u+h),_=.5*(f+p),w=(r>=_)<<1|e>=b,T=w+4;w<T;++w)if(c=x[3&w])switch(3&w){case 0:t(c,u,f,b,_);break;case 1:t(c,b,f,h,_);break;case 2:t(c,u,_,b,p);break;case 3:t(c,b,_,h,p)}}}(t,n,i,a,o),s}function Wi(e,r){e=t.rgb(e),r=t.rgb(r);var n=e.r,i=e.g,a=e.b,o=r.r-n,s=r.g-i,l=r.b-a;return function(t){return\"#\"+se(Math.round(n+o*t))+se(Math.round(i+s*t))+se(Math.round(a+l*t))}}function Xi(t,e){var r,n={},i={};for(r in t)r in e?n[r]=$i(t[r],e[r]):i[r]=t[r];for(r in e)r in t||(i[r]=e[r]);return function(t){for(r in n)i[r]=n[r](t);return i}}function Zi(t,e){return t=+t,e=+e,function(r){return t*(1-r)+e*r}}function Ji(t,e){var r,n,i,a=Ki.lastIndex=Qi.lastIndex=0,o=-1,s=[],l=[];for(t+=\"\",e+=\"\";(r=Ki.exec(t))&&(n=Qi.exec(e));)(i=n.index)>a&&(i=e.slice(a,i),s[o]?s[o]+=i:s[++o]=i),(r=r[0])===(n=n[0])?s[o]?s[o]+=n:s[++o]=n:(s[++o]=null,l.push({i:o,x:Zi(r,n)})),a=Qi.lastIndex;return a<e.length&&(i=e.slice(a),s[o]?s[o]+=i:s[++o]=i),s.length<2?l[0]?(e=l[0].x,function(t){return e(t)+\"\"}):function(){return e}:(e=l.length,function(t){for(var r,n=0;n<e;++n)s[(r=l[n]).i]=r.x(t);return s.join(\"\")})}t.geom.delaunay=function(e){return t.geom.voronoi().triangles(e)},t.geom.quadtree=function(t,e,r,n,i){var a,o=ri,s=ni;if(a=arguments.length)return o=qi,s=Hi,3===a&&(i=r,n=e,r=e=0),l(t);function l(t){var l,c,u,f,h,p,d,g,m,v=de(o),x=de(s);if(null!=e)p=e,d=r,g=n,m=i;else if(g=m=-(p=d=1/0),c=[],u=[],h=t.length,a)for(f=0;f<h;++f)(l=t[f]).x<p&&(p=l.x),l.y<d&&(d=l.y),l.x>g&&(g=l.x),l.y>m&&(m=l.y),c.push(l.x),u.push(l.y);else for(f=0;f<h;++f){var b=+v(l=t[f],f),_=+x(l,f);b<p&&(p=b),_<d&&(d=_),b>g&&(g=b),_>m&&(m=_),c.push(b),u.push(_)}var w=g-p,T=m-d;function k(t,e,r,n,i,a,o,s){if(!isNaN(r)&&!isNaN(n))if(t.leaf){var l=t.x,c=t.y;if(null!=l)if(y(l-r)+y(c-n)<.01)M(t,e,r,n,i,a,o,s);else{var u=t.point;t.x=t.y=t.point=null,M(t,u,l,c,i,a,o,s),M(t,e,r,n,i,a,o,s)}else t.x=r,t.y=n,t.point=e}else M(t,e,r,n,i,a,o,s)}function M(t,e,r,n,i,a,o,s){var l=.5*(i+o),c=.5*(a+s),u=r>=l,f=n>=c,h=f<<1|u;t.leaf=!1,u?i=l:o=l,f?a=c:s=c,k(t=t.nodes[h]||(t.nodes[h]={leaf:!0,nodes:[],point:null,x:null,y:null}),e,r,n,i,a,o,s)}w>T?m=d+w:g=p+T;var A={leaf:!0,nodes:[],point:null,x:null,y:null,add:function(t){k(A,t,+v(t,++f),+x(t,f),p,d,g,m)},visit:function(t){Gi(t,A,p,d,g,m)},find:function(t){return Yi(A,t[0],t[1],p,d,g,m)}};if(f=-1,null==e){for(;++f<h;)k(A,t[f],c[f],u[f],p,d,g,m);--f}else t.forEach(A.add);return c=u=t=l=null,A}return l.x=function(t){return arguments.length?(o=t,l):o},l.y=function(t){return arguments.length?(s=t,l):s},l.extent=function(t){return arguments.length?(null==t?e=r=n=i=null:(e=+t[0][0],r=+t[0][1],n=+t[1][0],i=+t[1][1]),l):null==e?null:[[e,r],[n,i]]},l.size=function(t){return arguments.length?(null==t?e=r=n=i=null:(e=r=0,n=+t[0],i=+t[1]),l):null==e?null:[n-e,i-r]},l},t.interpolateRgb=Wi,t.interpolateObject=Xi,t.interpolateNumber=Zi,t.interpolateString=Ji;var Ki=/[-+]?(?:\\d+\\.?\\d*|\\.?\\d+)(?:[eE][-+]?\\d+)?/g,Qi=new RegExp(Ki.source,\"g\");function $i(e,r){for(var n,i=t.interpolators.length;--i>=0&&!(n=t.interpolators[i](e,r)););return n}function ta(t,e){var r,n=[],i=[],a=t.length,o=e.length,s=Math.min(t.length,e.length);for(r=0;r<s;++r)n.push($i(t[r],e[r]));for(;r<a;++r)i[r]=t[r];for(;r<o;++r)i[r]=e[r];return function(t){for(r=0;r<s;++r)i[r]=n[r](t);return i}}t.interpolate=$i,t.interpolators=[function(t,e){var r=typeof e;return(\"string\"===r?pe.has(e.toLowerCase())||/^(#|rgb\\(|hsl\\()/i.test(e)?Wi:Ji:e instanceof Vt?Wi:Array.isArray(e)?ta:\"object\"===r&&isNaN(e)?Xi:Zi)(t,e)}],t.interpolateArray=ta;var ea=function(){return L},ra=t.map({linear:ea,poly:function(t){return function(e){return Math.pow(e,t)}},quad:function(){return sa},cubic:function(){return la},sin:function(){return ua},exp:function(){return fa},circle:function(){return ha},elastic:function(t,e){var r;arguments.length<2&&(e=.45);arguments.length?r=e/St*Math.asin(1/t):(t=1,r=e/4);return function(n){return 1+t*Math.pow(2,-10*n)*Math.sin((n-r)*St/e)}},back:function(t){t||(t=1.70158);return function(e){return e*e*((t+1)*e-t)}},bounce:function(){return pa}}),na=t.map({in:L,out:aa,\"in-out\":oa,\"out-in\":function(t){return oa(aa(t))}});function ia(t){return function(e){return e<=0?0:e>=1?1:t(e)}}function aa(t){return function(e){return 1-t(1-e)}}function oa(t){return function(e){return.5*(e<.5?t(2*e):2-t(2-2*e))}}function sa(t){return t*t}function la(t){return t*t*t}function ca(t){if(t<=0)return 0;if(t>=1)return 1;var e=t*t,r=e*t;return 4*(t<.5?r:3*(t-e)+r-.75)}function ua(t){return 1-Math.cos(t*Ct)}function fa(t){return Math.pow(2,10*(t-1))}function ha(t){return 1-Math.sqrt(1-t*t)}function pa(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375}function da(t,e){return e-=t,function(r){return Math.round(t+e*r)}}function ga(t){var e,r,n,i=[t.a,t.b],a=[t.c,t.d],o=va(i),s=ma(i,a),l=va(((e=a)[0]+=(n=-s)*(r=i)[0],e[1]+=n*r[1],e))||0;i[0]*a[1]<a[0]*i[1]&&(i[0]*=-1,i[1]*=-1,o*=-1,s*=-1),this.rotate=(o?Math.atan2(i[1],i[0]):Math.atan2(-a[0],a[1]))*It,this.translate=[t.e,t.f],this.scale=[o,l],this.skew=l?Math.atan2(s,l)*It:0}function ma(t,e){return t[0]*e[0]+t[1]*e[1]}function va(t){var e=Math.sqrt(ma(t,t));return e&&(t[0]/=e,t[1]/=e),e}t.ease=function(t){var e=t.indexOf(\"-\"),n=e>=0?t.slice(0,e):t,i=e>=0?t.slice(e+1):\"in\";return n=ra.get(n)||ea,ia((i=na.get(i)||L)(n.apply(null,r.call(arguments,1))))},t.interpolateHcl=function(e,r){e=t.hcl(e),r=t.hcl(r);var n=e.h,i=e.c,a=e.l,o=r.h-n,s=r.c-i,l=r.l-a;isNaN(s)&&(s=0,i=isNaN(i)?r.c:i);isNaN(o)?(o=0,n=isNaN(n)?r.h:n):o>180?o-=360:o<-180&&(o+=360);return function(t){return Xt(n+o*t,i+s*t,a+l*t)+\"\"}},t.interpolateHsl=function(e,r){e=t.hsl(e),r=t.hsl(r);var n=e.h,i=e.s,a=e.l,o=r.h-n,s=r.s-i,l=r.l-a;isNaN(s)&&(s=0,i=isNaN(i)?r.s:i);isNaN(o)?(o=0,n=isNaN(n)?r.h:n):o>180?o-=360:o<-180&&(o+=360);return function(t){return Gt(n+o*t,i+s*t,a+l*t)+\"\"}},t.interpolateLab=function(e,r){e=t.lab(e),r=t.lab(r);var n=e.l,i=e.a,a=e.b,o=r.l-n,s=r.a-i,l=r.b-a;return function(t){return Qt(n+o*t,i+s*t,a+l*t)+\"\"}},t.interpolateRound=da,t.transform=function(e){var r=i.createElementNS(t.ns.prefix.svg,\"g\");return(t.transform=function(t){if(null!=t){r.setAttribute(\"transform\",t);var e=r.transform.baseVal.consolidate()}return new ga(e?e.matrix:ya)})(e)},ga.prototype.toString=function(){return\"translate(\"+this.translate+\")rotate(\"+this.rotate+\")skewX(\"+this.skew+\")scale(\"+this.scale+\")\"};var ya={a:1,b:0,c:0,d:1,e:0,f:0};function xa(t){return t.length?t.pop()+\",\":\"\"}function ba(e,r){var n=[],i=[];return e=t.transform(e),r=t.transform(r),function(t,e,r,n){if(t[0]!==e[0]||t[1]!==e[1]){var i=r.push(\"translate(\",null,\",\",null,\")\");n.push({i:i-4,x:Zi(t[0],e[0])},{i:i-2,x:Zi(t[1],e[1])})}else(e[0]||e[1])&&r.push(\"translate(\"+e+\")\")}(e.translate,r.translate,n,i),function(t,e,r,n){t!==e?(t-e>180?e+=360:e-t>180&&(t+=360),n.push({i:r.push(xa(r)+\"rotate(\",null,\")\")-2,x:Zi(t,e)})):e&&r.push(xa(r)+\"rotate(\"+e+\")\")}(e.rotate,r.rotate,n,i),function(t,e,r,n){t!==e?n.push({i:r.push(xa(r)+\"skewX(\",null,\")\")-2,x:Zi(t,e)}):e&&r.push(xa(r)+\"skewX(\"+e+\")\")}(e.skew,r.skew,n,i),function(t,e,r,n){if(t[0]!==e[0]||t[1]!==e[1]){var i=r.push(xa(r)+\"scale(\",null,\",\",null,\")\");n.push({i:i-4,x:Zi(t[0],e[0])},{i:i-2,x:Zi(t[1],e[1])})}else 1===e[0]&&1===e[1]||r.push(xa(r)+\"scale(\"+e+\")\")}(e.scale,r.scale,n,i),e=r=null,function(t){for(var e,r=-1,a=i.length;++r<a;)n[(e=i[r]).i]=e.x(t);return n.join(\"\")}}function _a(t,e){return e=(e-=t=+t)||1/e,function(r){return(r-t)/e}}function wa(t,e){return e=(e-=t=+t)||1/e,function(r){return Math.max(0,Math.min(1,(r-t)/e))}}function Ta(t){for(var e=t.source,r=t.target,n=function(t,e){if(t===e)return t;var r=ka(t),n=ka(e),i=r.pop(),a=n.pop(),o=null;for(;i===a;)o=i,i=r.pop(),a=n.pop();return o}(e,r),i=[e];e!==n;)e=e.parent,i.push(e);for(var a=i.length;r!==n;)i.splice(a,0,r),r=r.parent;return i}function ka(t){for(var e=[],r=t.parent;null!=r;)e.push(t),t=r,r=r.parent;return e.push(t),e}function Ma(t){t.fixed|=2}function Aa(t){t.fixed&=-7}function Sa(t){t.fixed|=4,t.px=t.x,t.py=t.y}function Ea(t){t.fixed&=-5}t.interpolateTransform=ba,t.layout={},t.layout.bundle=function(){return function(t){for(var e=[],r=-1,n=t.length;++r<n;)e.push(Ta(t[r]));return e}},t.layout.chord=function(){var e,r,n,i,a,o,s,l={},c=0;function u(){var l,u,h,p,d,g={},m=[],v=t.range(i),y=[];for(e=[],r=[],l=0,p=-1;++p<i;){for(u=0,d=-1;++d<i;)u+=n[p][d];m.push(u),y.push(t.range(i)),l+=u}for(a&&v.sort((function(t,e){return a(m[t],m[e])})),o&&y.forEach((function(t,e){t.sort((function(t,r){return o(n[e][t],n[e][r])}))})),l=(St-c*i)/l,u=0,p=-1;++p<i;){for(h=u,d=-1;++d<i;){var x=v[p],b=y[x][d],_=n[x][b],w=u,T=u+=_*l;g[x+\"-\"+b]={index:x,subindex:b,startAngle:w,endAngle:T,value:_}}r[x]={index:x,startAngle:h,endAngle:u,value:m[x]},u+=c}for(p=-1;++p<i;)for(d=p-1;++d<i;){var k=g[p+\"-\"+d],M=g[d+\"-\"+p];(k.value||M.value)&&e.push(k.value<M.value?{source:M,target:k}:{source:k,target:M})}s&&f()}function f(){e.sort((function(t,e){return s((t.source.value+t.target.value)/2,(e.source.value+e.target.value)/2)}))}return l.matrix=function(t){return arguments.length?(i=(n=t)&&n.length,e=r=null,l):n},l.padding=function(t){return arguments.length?(c=t,e=r=null,l):c},l.sortGroups=function(t){return arguments.length?(a=t,e=r=null,l):a},l.sortSubgroups=function(t){return arguments.length?(o=t,e=null,l):o},l.sortChords=function(t){return arguments.length?(s=t,e&&f(),l):s},l.chords=function(){return e||u(),e},l.groups=function(){return r||u(),r},l},t.layout.force=function(){var e,r,n,i,a,o,s={},l=t.dispatch(\"start\",\"tick\",\"end\"),c=[1,1],u=.9,f=Ca,h=La,p=-30,d=Ia,g=.1,m=.64,v=[],y=[];function x(t){return function(e,r,n,i){if(e.point!==t){var a=e.cx-t.x,o=e.cy-t.y,s=i-r,l=a*a+o*o;if(s*s/m<l){if(l<d){var c=e.charge/l;t.px-=a*c,t.py-=o*c}return!0}if(e.point&&l&&l<d){c=e.pointCharge/l;t.px-=a*c,t.py-=o*c}}return!e.charge}}function b(e){e.px=t.event.x,e.py=t.event.y,s.resume()}return s.tick=function(){if((n*=.99)<.005)return e=null,l.end({type:\"end\",alpha:n=0}),!0;var r,s,f,h,d,m,b,_,w,T=v.length,k=y.length;for(s=0;s<k;++s)h=(f=y[s]).source,(m=(_=(d=f.target).x-h.x)*_+(w=d.y-h.y)*w)&&(_*=m=n*a[s]*((m=Math.sqrt(m))-i[s])/m,w*=m,d.x-=_*(b=h.weight+d.weight?h.weight/(h.weight+d.weight):.5),d.y-=w*b,h.x+=_*(b=1-b),h.y+=w*b);if((b=n*g)&&(_=c[0]/2,w=c[1]/2,s=-1,b))for(;++s<T;)(f=v[s]).x+=(_-f.x)*b,f.y+=(w-f.y)*b;if(p)for(!function t(e,r,n){var i=0,a=0;if(e.charge=0,!e.leaf)for(var o,s=e.nodes,l=s.length,c=-1;++c<l;)null!=(o=s[c])&&(t(o,r,n),e.charge+=o.charge,i+=o.charge*o.cx,a+=o.charge*o.cy);if(e.point){e.leaf||(e.point.x+=Math.random()-.5,e.point.y+=Math.random()-.5);var u=r*n[e.point.index];e.charge+=e.pointCharge=u,i+=u*e.point.x,a+=u*e.point.y}e.cx=i/e.charge,e.cy=a/e.charge}(r=t.geom.quadtree(v),n,o),s=-1;++s<T;)(f=v[s]).fixed||r.visit(x(f));for(s=-1;++s<T;)(f=v[s]).fixed?(f.x=f.px,f.y=f.py):(f.x-=(f.px-(f.px=f.x))*u,f.y-=(f.py-(f.py=f.y))*u);l.tick({type:\"tick\",alpha:n})},s.nodes=function(t){return arguments.length?(v=t,s):v},s.links=function(t){return arguments.length?(y=t,s):y},s.size=function(t){return arguments.length?(c=t,s):c},s.linkDistance=function(t){return arguments.length?(f=\"function\"==typeof t?t:+t,s):f},s.distance=s.linkDistance,s.linkStrength=function(t){return arguments.length?(h=\"function\"==typeof t?t:+t,s):h},s.friction=function(t){return arguments.length?(u=+t,s):u},s.charge=function(t){return arguments.length?(p=\"function\"==typeof t?t:+t,s):p},s.chargeDistance=function(t){return arguments.length?(d=t*t,s):Math.sqrt(d)},s.gravity=function(t){return arguments.length?(g=+t,s):g},s.theta=function(t){return arguments.length?(m=t*t,s):Math.sqrt(m)},s.alpha=function(t){return arguments.length?(t=+t,n?t>0?n=t:(e.c=null,e.t=NaN,e=null,l.end({type:\"end\",alpha:n=0})):t>0&&(l.start({type:\"start\",alpha:n=t}),e=we(s.tick)),s):n},s.start=function(){var t,e,r,n=v.length,l=y.length,u=c[0],d=c[1];for(t=0;t<n;++t)(r=v[t]).index=t,r.weight=0;for(t=0;t<l;++t)\"number\"==typeof(r=y[t]).source&&(r.source=v[r.source]),\"number\"==typeof r.target&&(r.target=v[r.target]),++r.source.weight,++r.target.weight;for(t=0;t<n;++t)r=v[t],isNaN(r.x)&&(r.x=g(\"x\",u)),isNaN(r.y)&&(r.y=g(\"y\",d)),isNaN(r.px)&&(r.px=r.x),isNaN(r.py)&&(r.py=r.y);if(i=[],\"function\"==typeof f)for(t=0;t<l;++t)i[t]=+f.call(this,y[t],t);else for(t=0;t<l;++t)i[t]=f;if(a=[],\"function\"==typeof h)for(t=0;t<l;++t)a[t]=+h.call(this,y[t],t);else for(t=0;t<l;++t)a[t]=h;if(o=[],\"function\"==typeof p)for(t=0;t<n;++t)o[t]=+p.call(this,v[t],t);else for(t=0;t<n;++t)o[t]=p;function g(r,i){if(!e){for(e=new Array(n),c=0;c<n;++c)e[c]=[];for(c=0;c<l;++c){var a=y[c];e[a.source.index].push(a.target),e[a.target.index].push(a.source)}}for(var o,s=e[t],c=-1,u=s.length;++c<u;)if(!isNaN(o=s[c][r]))return o;return Math.random()*i}return s.resume()},s.resume=function(){return s.alpha(.1)},s.stop=function(){return s.alpha(0)},s.drag=function(){if(r||(r=t.behavior.drag().origin(L).on(\"dragstart.force\",Ma).on(\"drag.force\",b).on(\"dragend.force\",Aa)),!arguments.length)return r;this.on(\"mouseover.force\",Sa).on(\"mouseout.force\",Ea).call(r)},t.rebind(s,l,\"on\")};var Ca=20,La=1,Ia=1/0;function Pa(e,r){return t.rebind(e,r,\"sort\",\"children\",\"value\"),e.nodes=e,e.links=Ba,e}function za(t,e){for(var r=[t];null!=(t=r.pop());)if(e(t),(i=t.children)&&(n=i.length))for(var n,i;--n>=0;)r.push(i[n])}function Oa(t,e){for(var r=[t],n=[];null!=(t=r.pop());)if(n.push(t),(a=t.children)&&(i=a.length))for(var i,a,o=-1;++o<i;)r.push(a[o]);for(;null!=(t=n.pop());)e(t)}function Da(t){return t.children}function Ra(t){return t.value}function Fa(t,e){return e.value-t.value}function Ba(e){return t.merge(e.map((function(t){return(t.children||[]).map((function(e){return{source:t,target:e}}))})))}t.layout.hierarchy=function(){var t=Fa,e=Da,r=Ra;function n(i){var a,o=[i],s=[];for(i.depth=0;null!=(a=o.pop());)if(s.push(a),(c=e.call(n,a,a.depth))&&(l=c.length)){for(var l,c,u;--l>=0;)o.push(u=c[l]),u.parent=a,u.depth=a.depth+1;r&&(a.value=0),a.children=c}else r&&(a.value=+r.call(n,a,a.depth)||0),delete a.children;return Oa(i,(function(e){var n,i;t&&(n=e.children)&&n.sort(t),r&&(i=e.parent)&&(i.value+=e.value)})),s}return n.sort=function(e){return arguments.length?(t=e,n):t},n.children=function(t){return arguments.length?(e=t,n):e},n.value=function(t){return arguments.length?(r=t,n):r},n.revalue=function(t){return r&&(za(t,(function(t){t.children&&(t.value=0)})),Oa(t,(function(t){var e;t.children||(t.value=+r.call(n,t,t.depth)||0),(e=t.parent)&&(e.value+=t.value)}))),t},n},t.layout.partition=function(){var e=t.layout.hierarchy(),r=[1,1];function n(t,n){var i=e.call(this,t,n);return function t(e,r,n,i){var a=e.children;if(e.x=r,e.y=e.depth*i,e.dx=n,e.dy=i,a&&(o=a.length)){var o,s,l,c=-1;for(n=e.value?n/e.value:0;++c<o;)t(s=a[c],r,l=s.value*n,i),r+=l}}(i[0],0,r[0],r[1]/function t(e){var r=e.children,n=0;if(r&&(i=r.length))for(var i,a=-1;++a<i;)n=Math.max(n,t(r[a]));return 1+n}(i[0])),i}return n.size=function(t){return arguments.length?(r=t,n):r},Pa(n,e)},t.layout.pie=function(){var e=Number,r=Na,n=0,i=St,a=0;function o(s){var l,c=s.length,u=s.map((function(t,r){return+e.call(o,t,r)})),f=+(\"function\"==typeof n?n.apply(this,arguments):n),h=(\"function\"==typeof i?i.apply(this,arguments):i)-f,p=Math.min(Math.abs(h)/c,+(\"function\"==typeof a?a.apply(this,arguments):a)),d=p*(h<0?-1:1),g=t.sum(u),m=g?(h-c*d)/g:0,v=t.range(c),y=[];return null!=r&&v.sort(r===Na?function(t,e){return u[e]-u[t]}:function(t,e){return r(s[t],s[e])}),v.forEach((function(t){y[t]={data:s[t],value:l=u[t],startAngle:f,endAngle:f+=l*m+d,padAngle:p}})),y}return o.value=function(t){return arguments.length?(e=t,o):e},o.sort=function(t){return arguments.length?(r=t,o):r},o.startAngle=function(t){return arguments.length?(n=t,o):n},o.endAngle=function(t){return arguments.length?(i=t,o):i},o.padAngle=function(t){return arguments.length?(a=t,o):a},o};var Na={};function ja(t){return t.x}function Ua(t){return t.y}function Va(t,e,r){t.y0=e,t.y=r}t.layout.stack=function(){var e=L,r=Ga,n=Ya,i=Va,a=ja,o=Ua;function s(l,c){if(!(p=l.length))return l;var u=l.map((function(t,r){return e.call(s,t,r)})),f=u.map((function(t){return t.map((function(t,e){return[a.call(s,t,e),o.call(s,t,e)]}))})),h=r.call(s,f,c);u=t.permute(u,h),f=t.permute(f,h);var p,d,g,m,v=n.call(s,f,c),y=u[0].length;for(g=0;g<y;++g)for(i.call(s,u[0][g],m=v[g],f[0][g][1]),d=1;d<p;++d)i.call(s,u[d][g],m+=f[d-1][g][1],f[d][g][1]);return l}return s.values=function(t){return arguments.length?(e=t,s):e},s.order=function(t){return arguments.length?(r=\"function\"==typeof t?t:qa.get(t)||Ga,s):r},s.offset=function(t){return arguments.length?(n=\"function\"==typeof t?t:Ha.get(t)||Ya,s):n},s.x=function(t){return arguments.length?(a=t,s):a},s.y=function(t){return arguments.length?(o=t,s):o},s.out=function(t){return arguments.length?(i=t,s):i},s};var qa=t.map({\"inside-out\":function(e){var r,n,i=e.length,a=e.map(Wa),o=e.map(Xa),s=t.range(i).sort((function(t,e){return a[t]-a[e]})),l=0,c=0,u=[],f=[];for(r=0;r<i;++r)n=s[r],l<c?(l+=o[n],u.push(n)):(c+=o[n],f.push(n));return f.reverse().concat(u)},reverse:function(e){return t.range(e.length).reverse()},default:Ga}),Ha=t.map({silhouette:function(t){var e,r,n,i=t.length,a=t[0].length,o=[],s=0,l=[];for(r=0;r<a;++r){for(e=0,n=0;e<i;e++)n+=t[e][r][1];n>s&&(s=n),o.push(n)}for(r=0;r<a;++r)l[r]=(s-o[r])/2;return l},wiggle:function(t){var e,r,n,i,a,o,s,l,c,u=t.length,f=t[0],h=f.length,p=[];for(p[0]=l=c=0,r=1;r<h;++r){for(e=0,i=0;e<u;++e)i+=t[e][r][1];for(e=0,a=0,s=f[r][0]-f[r-1][0];e<u;++e){for(n=0,o=(t[e][r][1]-t[e][r-1][1])/(2*s);n<e;++n)o+=(t[n][r][1]-t[n][r-1][1])/s;a+=o*t[e][r][1]}p[r]=l-=i?a/i*s:0,l<c&&(c=l)}for(r=0;r<h;++r)p[r]-=c;return p},expand:function(t){var e,r,n,i=t.length,a=t[0].length,o=1/i,s=[];for(r=0;r<a;++r){for(e=0,n=0;e<i;e++)n+=t[e][r][1];if(n)for(e=0;e<i;e++)t[e][r][1]/=n;else for(e=0;e<i;e++)t[e][r][1]=o}for(r=0;r<a;++r)s[r]=0;return s},zero:Ya});function Ga(e){return t.range(e.length)}function Ya(t){for(var e=-1,r=t[0].length,n=[];++e<r;)n[e]=0;return n}function Wa(t){for(var e,r=1,n=0,i=t[0][1],a=t.length;r<a;++r)(e=t[r][1])>i&&(n=r,i=e);return n}function Xa(t){return t.reduce(Za,0)}function Za(t,e){return t+e[1]}function Ja(t,e){return Ka(t,Math.ceil(Math.log(e.length)/Math.LN2+1))}function Ka(t,e){for(var r=-1,n=+t[0],i=(t[1]-n)/e,a=[];++r<=e;)a[r]=i*r+n;return a}function Qa(e){return[t.min(e),t.max(e)]}function $a(t,e){return t.value-e.value}function to(t,e){var r=t._pack_next;t._pack_next=e,e._pack_prev=t,e._pack_next=r,r._pack_prev=e}function eo(t,e){t._pack_next=e,e._pack_prev=t}function ro(t,e){var r=e.x-t.x,n=e.y-t.y,i=t.r+e.r;return.999*i*i>r*r+n*n}function no(t){if((e=t.children)&&(l=e.length)){var e,r,n,i,a,o,s,l,c=1/0,u=-1/0,f=1/0,h=-1/0;if(e.forEach(io),(r=e[0]).x=-r.r,r.y=0,x(r),l>1&&((n=e[1]).x=n.r,n.y=0,x(n),l>2))for(oo(r,n,i=e[2]),x(i),to(r,i),r._pack_prev=i,to(i,n),n=r._pack_next,a=3;a<l;a++){oo(r,n,i=e[a]);var p=0,d=1,g=1;for(o=n._pack_next;o!==n;o=o._pack_next,d++)if(ro(o,i)){p=1;break}if(1==p)for(s=r._pack_prev;s!==o._pack_prev&&!ro(s,i);s=s._pack_prev,g++);p?(d<g||d==g&&n.r<r.r?eo(r,n=o):eo(r=s,n),a--):(to(r,i),n=i,x(i))}var m=(c+u)/2,v=(f+h)/2,y=0;for(a=0;a<l;a++)(i=e[a]).x-=m,i.y-=v,y=Math.max(y,i.r+Math.sqrt(i.x*i.x+i.y*i.y));t.r=y,e.forEach(ao)}function x(t){c=Math.min(t.x-t.r,c),u=Math.max(t.x+t.r,u),f=Math.min(t.y-t.r,f),h=Math.max(t.y+t.r,h)}}function io(t){t._pack_next=t._pack_prev=t}function ao(t){delete t._pack_next,delete t._pack_prev}function oo(t,e,r){var n=t.r+r.r,i=e.x-t.x,a=e.y-t.y;if(n&&(i||a)){var o=e.r+r.r,s=i*i+a*a,l=.5+((n*=n)-(o*=o))/(2*s),c=Math.sqrt(Math.max(0,2*o*(n+s)-(n-=s)*n-o*o))/(2*s);r.x=t.x+l*i+c*a,r.y=t.y+l*a-c*i}else r.x=t.x+n,r.y=t.y}function so(t,e){return t.parent==e.parent?1:2}function lo(t){var e=t.children;return e.length?e[0]:t.t}function co(t){var e,r=t.children;return(e=r.length)?r[e-1]:t.t}function uo(t,e,r){var n=r/(e.i-t.i);e.c-=n,e.s+=r,t.c+=n,e.z+=r,e.m+=r}function fo(t,e,r){return t.a.parent===e.parent?t.a:r}function ho(t){return{x:t.x,y:t.y,dx:t.dx,dy:t.dy}}function po(t,e){var r=t.x+e[3],n=t.y+e[0],i=t.dx-e[1]-e[3],a=t.dy-e[0]-e[2];return i<0&&(r+=i/2,i=0),a<0&&(n+=a/2,a=0),{x:r,y:n,dx:i,dy:a}}function go(t){var e=t[0],r=t[t.length-1];return e<r?[e,r]:[r,e]}function mo(t){return t.rangeExtent?t.rangeExtent():go(t.range())}function vo(t,e,r,n){var i=r(t[0],t[1]),a=n(e[0],e[1]);return function(t){return a(i(t))}}function yo(t,e){var r,n=0,i=t.length-1,a=t[n],o=t[i];return o<a&&(r=n,n=i,i=r,r=a,a=o,o=r),t[n]=e.floor(a),t[i]=e.ceil(o),t}function xo(t){return t?{floor:function(e){return Math.floor(e/t)*t},ceil:function(e){return Math.ceil(e/t)*t}}:bo}t.layout.histogram=function(){var e=!0,r=Number,n=Qa,i=Ja;function a(a,o){for(var s,l,c=[],u=a.map(r,this),f=n.call(this,u,o),h=i.call(this,f,u,o),p=(o=-1,u.length),d=h.length-1,g=e?1:1/p;++o<d;)(s=c[o]=[]).dx=h[o+1]-(s.x=h[o]),s.y=0;if(d>0)for(o=-1;++o<p;)(l=u[o])>=f[0]&&l<=f[1]&&((s=c[t.bisect(h,l,1,d)-1]).y+=g,s.push(a[o]));return c}return a.value=function(t){return arguments.length?(r=t,a):r},a.range=function(t){return arguments.length?(n=de(t),a):n},a.bins=function(t){return arguments.length?(i=\"number\"==typeof t?function(e){return Ka(e,t)}:de(t),a):i},a.frequency=function(t){return arguments.length?(e=!!t,a):e},a},t.layout.pack=function(){var e,r=t.layout.hierarchy().sort($a),n=0,i=[1,1];function a(t,a){var o=r.call(this,t,a),s=o[0],l=i[0],c=i[1],u=null==e?Math.sqrt:\"function\"==typeof e?e:function(){return e};if(s.x=s.y=0,Oa(s,(function(t){t.r=+u(t.value)})),Oa(s,no),n){var f=n*(e?1:Math.max(2*s.r/l,2*s.r/c))/2;Oa(s,(function(t){t.r+=f})),Oa(s,no),Oa(s,(function(t){t.r-=f}))}return function t(e,r,n,i){var a=e.children;if(e.x=r+=i*e.x,e.y=n+=i*e.y,e.r*=i,a)for(var o=-1,s=a.length;++o<s;)t(a[o],r,n,i)}(s,l/2,c/2,e?1:1/Math.max(2*s.r/l,2*s.r/c)),o}return a.size=function(t){return arguments.length?(i=t,a):i},a.radius=function(t){return arguments.length?(e=null==t||\"function\"==typeof t?t:+t,a):e},a.padding=function(t){return arguments.length?(n=+t,a):n},Pa(a,r)},t.layout.tree=function(){var e=t.layout.hierarchy().sort(null).value(null),r=so,n=[1,1],i=null;function a(t,a){var c=e.call(this,t,a),u=c[0],f=function(t){var e,r={A:null,children:[t]},n=[r];for(;null!=(e=n.pop());)for(var i,a=e.children,o=0,s=a.length;o<s;++o)n.push((a[o]=i={_:a[o],parent:e,children:(i=a[o].children)&&i.slice()||[],A:null,a:null,z:0,m:0,c:0,s:0,t:null,i:o}).a=i);return r.children[0]}(u);if(Oa(f,o),f.parent.m=-f.z,za(f,s),i)za(u,l);else{var h=u,p=u,d=u;za(u,(function(t){t.x<h.x&&(h=t),t.x>p.x&&(p=t),t.depth>d.depth&&(d=t)}));var g=r(h,p)/2-h.x,m=n[0]/(p.x+r(p,h)/2+g),v=n[1]/(d.depth||1);za(u,(function(t){t.x=(t.x+g)*m,t.y=t.depth*v}))}return c}function o(t){var e=t.children,n=t.parent.children,i=t.i?n[t.i-1]:null;if(e.length){!function(t){var e,r=0,n=0,i=t.children,a=i.length;for(;--a>=0;)(e=i[a]).z+=r,e.m+=r,r+=e.s+(n+=e.c)}(t);var a=(e[0].z+e[e.length-1].z)/2;i?(t.z=i.z+r(t._,i._),t.m=t.z-a):t.z=a}else i&&(t.z=i.z+r(t._,i._));t.parent.A=function(t,e,n){if(e){for(var i,a=t,o=t,s=e,l=a.parent.children[0],c=a.m,u=o.m,f=s.m,h=l.m;s=co(s),a=lo(a),s&&a;)l=lo(l),(o=co(o)).a=t,(i=s.z+f-a.z-c+r(s._,a._))>0&&(uo(fo(s,t,n),t,i),c+=i,u+=i),f+=s.m,c+=a.m,h+=l.m,u+=o.m;s&&!co(o)&&(o.t=s,o.m+=f-u),a&&!lo(l)&&(l.t=a,l.m+=c-h,n=t)}return n}(t,i,t.parent.A||n[0])}function s(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function l(t){t.x*=n[0],t.y=t.depth*n[1]}return a.separation=function(t){return arguments.length?(r=t,a):r},a.size=function(t){return arguments.length?(i=null==(n=t)?l:null,a):i?null:n},a.nodeSize=function(t){return arguments.length?(i=null==(n=t)?null:l,a):i?n:null},Pa(a,e)},t.layout.cluster=function(){var e=t.layout.hierarchy().sort(null).value(null),r=so,n=[1,1],i=!1;function a(a,o){var s,l=e.call(this,a,o),c=l[0],u=0;Oa(c,(function(e){var n=e.children;n&&n.length?(e.x=function(t){return t.reduce((function(t,e){return t+e.x}),0)/t.length}(n),e.y=function(e){return 1+t.max(e,(function(t){return t.y}))}(n)):(e.x=s?u+=r(e,s):0,e.y=0,s=e)}));var f=function t(e){var r=e.children;return r&&r.length?t(r[0]):e}(c),h=function t(e){var r,n=e.children;return n&&(r=n.length)?t(n[r-1]):e}(c),p=f.x-r(f,h)/2,d=h.x+r(h,f)/2;return Oa(c,i?function(t){t.x=(t.x-c.x)*n[0],t.y=(c.y-t.y)*n[1]}:function(t){t.x=(t.x-p)/(d-p)*n[0],t.y=(1-(c.y?t.y/c.y:1))*n[1]}),l}return a.separation=function(t){return arguments.length?(r=t,a):r},a.size=function(t){return arguments.length?(i=null==(n=t),a):i?null:n},a.nodeSize=function(t){return arguments.length?(i=null!=(n=t),a):i?n:null},Pa(a,e)},t.layout.treemap=function(){var e,r=t.layout.hierarchy(),n=Math.round,i=[1,1],a=null,o=ho,s=!1,l=\"squarify\",c=.5*(1+Math.sqrt(5));function u(t,e){for(var r,n,i=-1,a=t.length;++i<a;)n=(r=t[i]).value*(e<0?0:e),r.area=isNaN(n)||n<=0?0:n}function f(t){var e=t.children;if(e&&e.length){var r,n,i,a=o(t),s=[],c=e.slice(),h=1/0,g=\"slice\"===l?a.dx:\"dice\"===l?a.dy:\"slice-dice\"===l?1&t.depth?a.dy:a.dx:Math.min(a.dx,a.dy);for(u(c,a.dx*a.dy/t.value),s.area=0;(i=c.length)>0;)s.push(r=c[i-1]),s.area+=r.area,\"squarify\"!==l||(n=p(s,g))<=h?(c.pop(),h=n):(s.area-=s.pop().area,d(s,g,a,!1),g=Math.min(a.dx,a.dy),s.length=s.area=0,h=1/0);s.length&&(d(s,g,a,!0),s.length=s.area=0),e.forEach(f)}}function h(t){var e=t.children;if(e&&e.length){var r,n=o(t),i=e.slice(),a=[];for(u(i,n.dx*n.dy/t.value),a.area=0;r=i.pop();)a.push(r),a.area+=r.area,null!=r.z&&(d(a,r.z?n.dx:n.dy,n,!i.length),a.length=a.area=0);e.forEach(h)}}function p(t,e){for(var r,n=t.area,i=0,a=1/0,o=-1,s=t.length;++o<s;)(r=t[o].area)&&(r<a&&(a=r),r>i&&(i=r));return e*=e,(n*=n)?Math.max(e*i*c/n,n/(e*a*c)):1/0}function d(t,e,r,i){var a,o=-1,s=t.length,l=r.x,c=r.y,u=e?n(t.area/e):0;if(e==r.dx){for((i||u>r.dy)&&(u=r.dy);++o<s;)(a=t[o]).x=l,a.y=c,a.dy=u,l+=a.dx=Math.min(r.x+r.dx-l,u?n(a.area/u):0);a.z=!0,a.dx+=r.x+r.dx-l,r.y+=u,r.dy-=u}else{for((i||u>r.dx)&&(u=r.dx);++o<s;)(a=t[o]).x=l,a.y=c,a.dx=u,c+=a.dy=Math.min(r.y+r.dy-c,u?n(a.area/u):0);a.z=!1,a.dy+=r.y+r.dy-c,r.x+=u,r.dx-=u}}function g(t){var n=e||r(t),a=n[0];return a.x=a.y=0,a.value?(a.dx=i[0],a.dy=i[1]):a.dx=a.dy=0,e&&r.revalue(a),u([a],a.dx*a.dy/a.value),(e?h:f)(a),s&&(e=n),n}return g.size=function(t){return arguments.length?(i=t,g):i},g.padding=function(t){if(!arguments.length)return a;function e(e){var r=t.call(g,e,e.depth);return null==r?ho(e):po(e,\"number\"==typeof r?[r,r,r,r]:r)}function r(e){return po(e,t)}var n;return o=null==(a=t)?ho:\"function\"==(n=typeof t)?e:\"number\"===n?(t=[t,t,t,t],r):r,g},g.round=function(t){return arguments.length?(n=t?Math.round:Number,g):n!=Number},g.sticky=function(t){return arguments.length?(s=t,e=null,g):s},g.ratio=function(t){return arguments.length?(c=t,g):c},g.mode=function(t){return arguments.length?(l=t+\"\",g):l},Pa(g,r)},t.random={normal:function(t,e){var r=arguments.length;return r<2&&(e=1),r<1&&(t=0),function(){var r,n,i;do{i=(r=2*Math.random()-1)*r+(n=2*Math.random()-1)*n}while(!i||i>1);return t+e*r*Math.sqrt(-2*Math.log(i)/i)}},logNormal:function(){var e=t.random.normal.apply(t,arguments);return function(){return Math.exp(e())}},bates:function(e){var r=t.random.irwinHall(e);return function(){return r()/e}},irwinHall:function(t){return function(){for(var e=0,r=0;r<t;r++)e+=Math.random();return e}}},t.scale={};var bo={floor:L,ceil:L};function _o(e,r,n,i){var a=[],o=[],s=0,l=Math.min(e.length,r.length)-1;for(e[l]<e[0]&&(e=e.slice().reverse(),r=r.slice().reverse());++s<=l;)a.push(n(e[s-1],e[s])),o.push(i(r[s-1],r[s]));return function(r){var n=t.bisect(e,r,1,l)-1;return o[n](a[n](r))}}function wo(e,r){return t.rebind(e,r,\"range\",\"rangeRound\",\"interpolate\",\"clamp\")}function To(t,e){return yo(t,xo(ko(t,e)[2])),yo(t,xo(ko(t,e)[2])),t}function ko(t,e){null==e&&(e=10);var r=go(t),n=r[1]-r[0],i=Math.pow(10,Math.floor(Math.log(n/e)/Math.LN10)),a=e/n*i;return a<=.15?i*=10:a<=.35?i*=5:a<=.75&&(i*=2),r[0]=Math.ceil(r[0]/i)*i,r[1]=Math.floor(r[1]/i)*i+.5*i,r[2]=i,r}function Mo(e,r){return t.range.apply(t,ko(e,r))}function Ao(e,r,n){var i=ko(e,r);if(n){var a=Ce.exec(n);if(a.shift(),\"s\"===a[8]){var o=t.formatPrefix(Math.max(y(i[0]),y(i[1])));return a[7]||(a[7]=\".\"+Eo(o.scale(i[2]))),a[8]=\"f\",n=t.format(a.join(\"\")),function(t){return n(o.scale(t))+o.symbol}}a[7]||(a[7]=\".\"+function(t,e){var r=Eo(e[2]);return t in So?Math.abs(r-Eo(Math.max(y(e[0]),y(e[1]))))+ +(\"e\"!==t):r-2*(\"%\"===t)}(a[8],i)),n=a.join(\"\")}else n=\",.\"+Eo(i[2])+\"f\";return t.format(n)}t.scale.linear=function(){return function t(e,r,n,i){var a,o;function s(){var t=Math.min(e.length,r.length)>2?_o:vo,s=i?wa:_a;return a=t(e,r,s,n),o=t(r,e,s,$i),l}function l(t){return a(t)}return l.invert=function(t){return o(t)},l.domain=function(t){return arguments.length?(e=t.map(Number),s()):e},l.range=function(t){return arguments.length?(r=t,s()):r},l.rangeRound=function(t){return l.range(t).interpolate(da)},l.clamp=function(t){return arguments.length?(i=t,s()):i},l.interpolate=function(t){return arguments.length?(n=t,s()):n},l.ticks=function(t){return Mo(e,t)},l.tickFormat=function(t,r){return Ao(e,t,r)},l.nice=function(t){return To(e,t),s()},l.copy=function(){return t(e,r,n,i)},s()}([0,1],[0,1],$i,!1)};var So={s:1,g:1,p:1,r:1,e:1};function Eo(t){return-Math.floor(Math.log(t)/Math.LN10+.01)}t.scale.log=function(){return function e(r,n,i,a){function o(t){return(i?Math.log(t<0?0:t):-Math.log(t>0?0:-t))/Math.log(n)}function s(t){return i?Math.pow(n,t):-Math.pow(n,-t)}function l(t){return r(o(t))}return l.invert=function(t){return s(r.invert(t))},l.domain=function(t){return arguments.length?(i=t[0]>=0,r.domain((a=t.map(Number)).map(o)),l):a},l.base=function(t){return arguments.length?(n=+t,r.domain(a.map(o)),l):n},l.nice=function(){var t=yo(a.map(o),i?Math:Lo);return r.domain(t),a=t.map(s),l},l.ticks=function(){var t=go(a),e=[],r=t[0],l=t[1],c=Math.floor(o(r)),u=Math.ceil(o(l)),f=n%1?2:n;if(isFinite(u-c)){if(i){for(;c<u;c++)for(var h=1;h<f;h++)e.push(s(c)*h);e.push(s(c))}else for(e.push(s(c));c++<u;)for(h=f-1;h>0;h--)e.push(s(c)*h);for(c=0;e[c]<r;c++);for(u=e.length;e[u-1]>l;u--);e=e.slice(c,u)}return e},l.tickFormat=function(e,r){if(!arguments.length)return Co;arguments.length<2?r=Co:\"function\"!=typeof r&&(r=t.format(r));var i=Math.max(1,n*e/l.ticks().length);return function(t){var e=t/s(Math.round(o(t)));return e*n<n-.5&&(e*=n),e<=i?r(t):\"\"}},l.copy=function(){return e(r.copy(),n,i,a)},wo(l,r)}(t.scale.linear().domain([0,1]),10,!0,[1,10])};var Co=t.format(\".0e\"),Lo={floor:function(t){return-Math.ceil(-t)},ceil:function(t){return-Math.floor(-t)}};function Io(t){return function(e){return e<0?-Math.pow(-e,t):Math.pow(e,t)}}t.scale.pow=function(){return function t(e,r,n){var i=Io(r),a=Io(1/r);function o(t){return e(i(t))}return o.invert=function(t){return a(e.invert(t))},o.domain=function(t){return arguments.length?(e.domain((n=t.map(Number)).map(i)),o):n},o.ticks=function(t){return Mo(n,t)},o.tickFormat=function(t,e){return Ao(n,t,e)},o.nice=function(t){return o.domain(To(n,t))},o.exponent=function(t){return arguments.length?(i=Io(r=t),a=Io(1/r),e.domain(n.map(i)),o):r},o.copy=function(){return t(e.copy(),r,n)},wo(o,e)}(t.scale.linear(),1,[0,1])},t.scale.sqrt=function(){return t.scale.pow().exponent(.5)},t.scale.ordinal=function(){return function e(r,n){var i,a,o;function s(t){return a[((i.get(t)||(\"range\"===n.t?i.set(t,r.push(t)):NaN))-1)%a.length]}function l(e,n){return t.range(r.length).map((function(t){return e+n*t}))}return s.domain=function(t){if(!arguments.length)return r;r=[],i=new _;for(var e,a=-1,o=t.length;++a<o;)i.has(e=t[a])||i.set(e,r.push(e));return s[n.t].apply(s,n.a)},s.range=function(t){return arguments.length?(a=t,o=0,n={t:\"range\",a:arguments},s):a},s.rangePoints=function(t,e){arguments.length<2&&(e=0);var i=t[0],c=t[1],u=r.length<2?(i=(i+c)/2,0):(c-i)/(r.length-1+e);return a=l(i+u*e/2,u),o=0,n={t:\"rangePoints\",a:arguments},s},s.rangeRoundPoints=function(t,e){arguments.length<2&&(e=0);var i=t[0],c=t[1],u=r.length<2?(i=c=Math.round((i+c)/2),0):(c-i)/(r.length-1+e)|0;return a=l(i+Math.round(u*e/2+(c-i-(r.length-1+e)*u)/2),u),o=0,n={t:\"rangeRoundPoints\",a:arguments},s},s.rangeBands=function(t,e,i){arguments.length<2&&(e=0),arguments.length<3&&(i=e);var c=t[1]<t[0],u=t[c-0],f=t[1-c],h=(f-u)/(r.length-e+2*i);return a=l(u+h*i,h),c&&a.reverse(),o=h*(1-e),n={t:\"rangeBands\",a:arguments},s},s.rangeRoundBands=function(t,e,i){arguments.length<2&&(e=0),arguments.length<3&&(i=e);var c=t[1]<t[0],u=t[c-0],f=t[1-c],h=Math.floor((f-u)/(r.length-e+2*i));return a=l(u+Math.round((f-u-(r.length-e)*h)/2),h),c&&a.reverse(),o=Math.round(h*(1-e)),n={t:\"rangeRoundBands\",a:arguments},s},s.rangeBand=function(){return o},s.rangeExtent=function(){return go(n.a[0])},s.copy=function(){return e(r,n)},s.domain(r)}([],{t:\"range\",a:[[]]})},t.scale.category10=function(){return t.scale.ordinal().range(Po)},t.scale.category20=function(){return t.scale.ordinal().range(zo)},t.scale.category20b=function(){return t.scale.ordinal().range(Oo)},t.scale.category20c=function(){return t.scale.ordinal().range(Do)};var Po=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(ae),zo=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(ae),Oo=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(ae),Do=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(ae);function Ro(){return 0}t.scale.quantile=function(){return function e(r,n){var i;function a(){var e=0,a=n.length;for(i=[];++e<a;)i[e-1]=t.quantile(r,e/a);return o}function o(e){if(!isNaN(e=+e))return n[t.bisect(i,e)]}return o.domain=function(t){return arguments.length?(r=t.map(p).filter(d).sort(h),a()):r},o.range=function(t){return arguments.length?(n=t,a()):n},o.quantiles=function(){return i},o.invertExtent=function(t){return(t=n.indexOf(t))<0?[NaN,NaN]:[t>0?i[t-1]:r[0],t<i.length?i[t]:r[r.length-1]]},o.copy=function(){return e(r,n)},a()}([],[])},t.scale.quantize=function(){return function t(e,r,n){var i,a;function o(t){return n[Math.max(0,Math.min(a,Math.floor(i*(t-e))))]}function s(){return i=n.length/(r-e),a=n.length-1,o}return o.domain=function(t){return arguments.length?(e=+t[0],r=+t[t.length-1],s()):[e,r]},o.range=function(t){return arguments.length?(n=t,s()):n},o.invertExtent=function(t){return[t=(t=n.indexOf(t))<0?NaN:t/i+e,t+1/i]},o.copy=function(){return t(e,r,n)},s()}(0,1,[0,1])},t.scale.threshold=function(){return function e(r,n){function i(e){if(e<=e)return n[t.bisect(r,e)]}return i.domain=function(t){return arguments.length?(r=t,i):r},i.range=function(t){return arguments.length?(n=t,i):n},i.invertExtent=function(t){return t=n.indexOf(t),[r[t-1],r[t]]},i.copy=function(){return e(r,n)},i}([.5],[0,1])},t.scale.identity=function(){return function t(e){function r(t){return+t}return r.invert=r,r.domain=r.range=function(t){return arguments.length?(e=t.map(r),r):e},r.ticks=function(t){return Mo(e,t)},r.tickFormat=function(t,r){return Ao(e,t,r)},r.copy=function(){return t(e)},r}([0,1])},t.svg={},t.svg.arc=function(){var t=Bo,e=No,r=Ro,n=Fo,i=jo,a=Uo,o=Vo;function s(){var s=Math.max(0,+t.apply(this,arguments)),c=Math.max(0,+e.apply(this,arguments)),u=i.apply(this,arguments)-Ct,f=a.apply(this,arguments)-Ct,h=Math.abs(f-u),p=u>f?0:1;if(c<s&&(d=c,c=s,s=d),h>=Et)return l(c,p)+(s?l(s,1-p):\"\")+\"Z\";var d,g,m,v,y,x,b,_,w,T,k,M,A=0,S=0,E=[];if((v=(+o.apply(this,arguments)||0)/2)&&(m=n===Fo?Math.sqrt(s*s+c*c):+n.apply(this,arguments),p||(S*=-1),c&&(S=Dt(m/c*Math.sin(v))),s&&(A=Dt(m/s*Math.sin(v)))),c){y=c*Math.cos(u+S),x=c*Math.sin(u+S),b=c*Math.cos(f-S),_=c*Math.sin(f-S);var C=Math.abs(f-u-2*S)<=At?0:1;if(S&&qo(y,x,b,_)===p^C){var L=(u+f)/2;y=c*Math.cos(L),x=c*Math.sin(L),b=_=null}}else y=x=0;if(s){w=s*Math.cos(f-A),T=s*Math.sin(f-A),k=s*Math.cos(u+A),M=s*Math.sin(u+A);var I=Math.abs(u-f+2*A)<=At?0:1;if(A&&qo(w,T,k,M)===1-p^I){var P=(u+f)/2;w=s*Math.cos(P),T=s*Math.sin(P),k=M=null}}else w=T=0;if(h>kt&&(d=Math.min(Math.abs(c-s)/2,+r.apply(this,arguments)))>.001){g=s<c^p?0:1;var z=d,O=d;if(h<At){var D=null==k?[w,T]:null==b?[y,x]:li([y,x],[k,M],[b,_],[w,T]),R=y-D[0],F=x-D[1],B=b-D[0],N=_-D[1],j=1/Math.sin(Math.acos((R*B+F*N)/(Math.sqrt(R*R+F*F)*Math.sqrt(B*B+N*N)))/2),U=Math.sqrt(D[0]*D[0]+D[1]*D[1]);O=Math.min(d,(s-U)/(j-1)),z=Math.min(d,(c-U)/(j+1))}if(null!=b){var V=Ho(null==k?[w,T]:[k,M],[y,x],c,z,p),q=Ho([b,_],[w,T],c,z,p);d===z?E.push(\"M\",V[0],\"A\",z,\",\",z,\" 0 0,\",g,\" \",V[1],\"A\",c,\",\",c,\" 0 \",1-p^qo(V[1][0],V[1][1],q[1][0],q[1][1]),\",\",p,\" \",q[1],\"A\",z,\",\",z,\" 0 0,\",g,\" \",q[0]):E.push(\"M\",V[0],\"A\",z,\",\",z,\" 0 1,\",g,\" \",q[0])}else E.push(\"M\",y,\",\",x);if(null!=k){var H=Ho([y,x],[k,M],s,-O,p),G=Ho([w,T],null==b?[y,x]:[b,_],s,-O,p);d===O?E.push(\"L\",G[0],\"A\",O,\",\",O,\" 0 0,\",g,\" \",G[1],\"A\",s,\",\",s,\" 0 \",p^qo(G[1][0],G[1][1],H[1][0],H[1][1]),\",\",1-p,\" \",H[1],\"A\",O,\",\",O,\" 0 0,\",g,\" \",H[0]):E.push(\"L\",G[0],\"A\",O,\",\",O,\" 0 0,\",g,\" \",H[0])}else E.push(\"L\",w,\",\",T)}else E.push(\"M\",y,\",\",x),null!=b&&E.push(\"A\",c,\",\",c,\" 0 \",C,\",\",p,\" \",b,\",\",_),E.push(\"L\",w,\",\",T),null!=k&&E.push(\"A\",s,\",\",s,\" 0 \",I,\",\",1-p,\" \",k,\",\",M);return E.push(\"Z\"),E.join(\"\")}function l(t,e){return\"M0,\"+t+\"A\"+t+\",\"+t+\" 0 1,\"+e+\" 0,\"+-t+\"A\"+t+\",\"+t+\" 0 1,\"+e+\" 0,\"+t}return s.innerRadius=function(e){return arguments.length?(t=de(e),s):t},s.outerRadius=function(t){return arguments.length?(e=de(t),s):e},s.cornerRadius=function(t){return arguments.length?(r=de(t),s):r},s.padRadius=function(t){return arguments.length?(n=t==Fo?Fo:de(t),s):n},s.startAngle=function(t){return arguments.length?(i=de(t),s):i},s.endAngle=function(t){return arguments.length?(a=de(t),s):a},s.padAngle=function(t){return arguments.length?(o=de(t),s):o},s.centroid=function(){var r=(+t.apply(this,arguments)+ +e.apply(this,arguments))/2,n=(+i.apply(this,arguments)+ +a.apply(this,arguments))/2-Ct;return[Math.cos(n)*r,Math.sin(n)*r]},s};var Fo=\"auto\";function Bo(t){return t.innerRadius}function No(t){return t.outerRadius}function jo(t){return t.startAngle}function Uo(t){return t.endAngle}function Vo(t){return t&&t.padAngle}function qo(t,e,r,n){return(t-r)*e-(e-n)*t>0?0:1}function Ho(t,e,r,n,i){var a=t[0]-e[0],o=t[1]-e[1],s=(i?n:-n)/Math.sqrt(a*a+o*o),l=s*o,c=-s*a,u=t[0]+l,f=t[1]+c,h=e[0]+l,p=e[1]+c,d=(u+h)/2,g=(f+p)/2,m=h-u,v=p-f,y=m*m+v*v,x=r-n,b=u*p-h*f,_=(v<0?-1:1)*Math.sqrt(Math.max(0,x*x*y-b*b)),w=(b*v-m*_)/y,T=(-b*m-v*_)/y,k=(b*v+m*_)/y,M=(-b*m+v*_)/y,A=w-d,S=T-g,E=k-d,C=M-g;return A*A+S*S>E*E+C*C&&(w=k,T=M),[[w-l,T-c],[w*r/x,T*r/x]]}function Go(t){var e=ri,r=ni,n=Yr,i=Wo,a=i.key,o=.7;function s(a){var s,l=[],c=[],u=-1,f=a.length,h=de(e),p=de(r);function d(){l.push(\"M\",i(t(c),o))}for(;++u<f;)n.call(this,s=a[u],u)?c.push([+h.call(this,s,u),+p.call(this,s,u)]):c.length&&(d(),c=[]);return c.length&&d(),l.length?l.join(\"\"):null}return s.x=function(t){return arguments.length?(e=t,s):e},s.y=function(t){return arguments.length?(r=t,s):r},s.defined=function(t){return arguments.length?(n=t,s):n},s.interpolate=function(t){return arguments.length?(a=\"function\"==typeof t?i=t:(i=Yo.get(t)||Wo).key,s):a},s.tension=function(t){return arguments.length?(o=t,s):o},s}t.svg.line=function(){return Go(L)};var Yo=t.map({linear:Wo,\"linear-closed\":Xo,step:function(t){var e=0,r=t.length,n=t[0],i=[n[0],\",\",n[1]];for(;++e<r;)i.push(\"H\",(n[0]+(n=t[e])[0])/2,\"V\",n[1]);r>1&&i.push(\"H\",n[0]);return i.join(\"\")},\"step-before\":Zo,\"step-after\":Jo,basis:$o,\"basis-open\":function(t){if(t.length<4)return Wo(t);var e,r=[],n=-1,i=t.length,a=[0],o=[0];for(;++n<3;)e=t[n],a.push(e[0]),o.push(e[1]);r.push(ts(ns,a)+\",\"+ts(ns,o)),--n;for(;++n<i;)e=t[n],a.shift(),a.push(e[0]),o.shift(),o.push(e[1]),is(r,a,o);return r.join(\"\")},\"basis-closed\":function(t){var e,r,n=-1,i=t.length,a=i+4,o=[],s=[];for(;++n<4;)r=t[n%i],o.push(r[0]),s.push(r[1]);e=[ts(ns,o),\",\",ts(ns,s)],--n;for(;++n<a;)r=t[n%i],o.shift(),o.push(r[0]),s.shift(),s.push(r[1]),is(e,o,s);return e.join(\"\")},bundle:function(t,e){var r=t.length-1;if(r)for(var n,i,a=t[0][0],o=t[0][1],s=t[r][0]-a,l=t[r][1]-o,c=-1;++c<=r;)n=t[c],i=c/r,n[0]=e*n[0]+(1-e)*(a+i*s),n[1]=e*n[1]+(1-e)*(o+i*l);return $o(t)},cardinal:function(t,e){return t.length<3?Wo(t):t[0]+Ko(t,Qo(t,e))},\"cardinal-open\":function(t,e){return t.length<4?Wo(t):t[1]+Ko(t.slice(1,-1),Qo(t,e))},\"cardinal-closed\":function(t,e){return t.length<3?Xo(t):t[0]+Ko((t.push(t[0]),t),Qo([t[t.length-2]].concat(t,[t[1]]),e))},monotone:function(t){return t.length<3?Wo(t):t[0]+Ko(t,function(t){var e,r,n,i,a=[],o=function(t){var e=0,r=t.length-1,n=[],i=t[0],a=t[1],o=n[0]=as(i,a);for(;++e<r;)n[e]=(o+(o=as(i=a,a=t[e+1])))/2;return n[e]=o,n}(t),s=-1,l=t.length-1;for(;++s<l;)e=as(t[s],t[s+1]),y(e)<kt?o[s]=o[s+1]=0:(r=o[s]/e,n=o[s+1]/e,(i=r*r+n*n)>9&&(i=3*e/Math.sqrt(i),o[s]=i*r,o[s+1]=i*n));s=-1;for(;++s<=l;)i=(t[Math.min(l,s+1)][0]-t[Math.max(0,s-1)][0])/(6*(1+o[s]*o[s])),a.push([i||0,o[s]*i||0]);return a}(t))}});function Wo(t){return t.length>1?t.join(\"L\"):t+\"Z\"}function Xo(t){return t.join(\"L\")+\"Z\"}function Zo(t){for(var e=0,r=t.length,n=t[0],i=[n[0],\",\",n[1]];++e<r;)i.push(\"V\",(n=t[e])[1],\"H\",n[0]);return i.join(\"\")}function Jo(t){for(var e=0,r=t.length,n=t[0],i=[n[0],\",\",n[1]];++e<r;)i.push(\"H\",(n=t[e])[0],\"V\",n[1]);return i.join(\"\")}function Ko(t,e){if(e.length<1||t.length!=e.length&&t.length!=e.length+2)return Wo(t);var r=t.length!=e.length,n=\"\",i=t[0],a=t[1],o=e[0],s=o,l=1;if(r&&(n+=\"Q\"+(a[0]-2*o[0]/3)+\",\"+(a[1]-2*o[1]/3)+\",\"+a[0]+\",\"+a[1],i=t[1],l=2),e.length>1){s=e[1],a=t[l],l++,n+=\"C\"+(i[0]+o[0])+\",\"+(i[1]+o[1])+\",\"+(a[0]-s[0])+\",\"+(a[1]-s[1])+\",\"+a[0]+\",\"+a[1];for(var c=2;c<e.length;c++,l++)a=t[l],s=e[c],n+=\"S\"+(a[0]-s[0])+\",\"+(a[1]-s[1])+\",\"+a[0]+\",\"+a[1]}if(r){var u=t[l];n+=\"Q\"+(a[0]+2*s[0]/3)+\",\"+(a[1]+2*s[1]/3)+\",\"+u[0]+\",\"+u[1]}return n}function Qo(t,e){for(var r,n=[],i=(1-e)/2,a=t[0],o=t[1],s=1,l=t.length;++s<l;)r=a,a=o,o=t[s],n.push([i*(o[0]-r[0]),i*(o[1]-r[1])]);return n}function $o(t){if(t.length<3)return Wo(t);var e=1,r=t.length,n=t[0],i=n[0],a=n[1],o=[i,i,i,(n=t[1])[0]],s=[a,a,a,n[1]],l=[i,\",\",a,\"L\",ts(ns,o),\",\",ts(ns,s)];for(t.push(t[r-1]);++e<=r;)n=t[e],o.shift(),o.push(n[0]),s.shift(),s.push(n[1]),is(l,o,s);return t.pop(),l.push(\"L\",n),l.join(\"\")}function ts(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]+t[3]*e[3]}Yo.forEach((function(t,e){e.key=t,e.closed=/-closed$/.test(t)}));var es=[0,2/3,1/3,0],rs=[0,1/3,2/3,0],ns=[0,1/6,2/3,1/6];function is(t,e,r){t.push(\"C\",ts(es,e),\",\",ts(es,r),\",\",ts(rs,e),\",\",ts(rs,r),\",\",ts(ns,e),\",\",ts(ns,r))}function as(t,e){return(e[1]-t[1])/(e[0]-t[0])}function os(t){for(var e,r,n,i=-1,a=t.length;++i<a;)r=(e=t[i])[0],n=e[1]-Ct,e[0]=r*Math.cos(n),e[1]=r*Math.sin(n);return t}function ss(t){var e=ri,r=ri,n=0,i=ni,a=Yr,o=Wo,s=o.key,l=o,c=\"L\",u=.7;function f(s){var f,h,p,d=[],g=[],m=[],v=-1,y=s.length,x=de(e),b=de(n),_=e===r?function(){return h}:de(r),w=n===i?function(){return p}:de(i);function T(){d.push(\"M\",o(t(m),u),c,l(t(g.reverse()),u),\"Z\")}for(;++v<y;)a.call(this,f=s[v],v)?(g.push([h=+x.call(this,f,v),p=+b.call(this,f,v)]),m.push([+_.call(this,f,v),+w.call(this,f,v)])):g.length&&(T(),g=[],m=[]);return g.length&&T(),d.length?d.join(\"\"):null}return f.x=function(t){return arguments.length?(e=r=t,f):r},f.x0=function(t){return arguments.length?(e=t,f):e},f.x1=function(t){return arguments.length?(r=t,f):r},f.y=function(t){return arguments.length?(n=i=t,f):i},f.y0=function(t){return arguments.length?(n=t,f):n},f.y1=function(t){return arguments.length?(i=t,f):i},f.defined=function(t){return arguments.length?(a=t,f):a},f.interpolate=function(t){return arguments.length?(s=\"function\"==typeof t?o=t:(o=Yo.get(t)||Wo).key,l=o.reverse||o,c=o.closed?\"M\":\"L\",f):s},f.tension=function(t){return arguments.length?(u=t,f):u},f}function ls(t){return t.radius}function cs(t){return[t.x,t.y]}function us(t){return function(){var e=t.apply(this,arguments),r=e[0],n=e[1]-Ct;return[r*Math.cos(n),r*Math.sin(n)]}}function fs(){return 64}function hs(){return\"circle\"}function ps(t){var e=Math.sqrt(t/At);return\"M0,\"+e+\"A\"+e+\",\"+e+\" 0 1,1 0,\"+-e+\"A\"+e+\",\"+e+\" 0 1,1 0,\"+e+\"Z\"}t.svg.line.radial=function(){var t=Go(os);return t.radius=t.x,delete t.x,t.angle=t.y,delete t.y,t},Zo.reverse=Jo,Jo.reverse=Zo,t.svg.area=function(){return ss(L)},t.svg.area.radial=function(){var t=ss(os);return t.radius=t.x,delete t.x,t.innerRadius=t.x0,delete t.x0,t.outerRadius=t.x1,delete t.x1,t.angle=t.y,delete t.y,t.startAngle=t.y0,delete t.y0,t.endAngle=t.y1,delete t.y1,t},t.svg.chord=function(){var t=Vn,e=qn,r=ls,n=jo,i=Uo;function a(r,n){var i,a,c=o(this,t,r,n),u=o(this,e,r,n);return\"M\"+c.p0+s(c.r,c.p1,c.a1-c.a0)+(a=u,((i=c).a0==a.a0&&i.a1==a.a1?l(c.r,c.p1,c.r,c.p0):l(c.r,c.p1,u.r,u.p0)+s(u.r,u.p1,u.a1-u.a0)+l(u.r,u.p1,c.r,c.p0))+\"Z\")}function o(t,e,a,o){var s=e.call(t,a,o),l=r.call(t,s,o),c=n.call(t,s,o)-Ct,u=i.call(t,s,o)-Ct;return{r:l,a0:c,a1:u,p0:[l*Math.cos(c),l*Math.sin(c)],p1:[l*Math.cos(u),l*Math.sin(u)]}}function s(t,e,r){return\"A\"+t+\",\"+t+\" 0 \"+ +(r>At)+\",1 \"+e}function l(t,e,r,n){return\"Q 0,0 \"+n}return a.radius=function(t){return arguments.length?(r=de(t),a):r},a.source=function(e){return arguments.length?(t=de(e),a):t},a.target=function(t){return arguments.length?(e=de(t),a):e},a.startAngle=function(t){return arguments.length?(n=de(t),a):n},a.endAngle=function(t){return arguments.length?(i=de(t),a):i},a},t.svg.diagonal=function(){var t=Vn,e=qn,r=cs;function n(n,i){var a=t.call(this,n,i),o=e.call(this,n,i),s=(a.y+o.y)/2,l=[a,{x:a.x,y:s},{x:o.x,y:s},o];return\"M\"+(l=l.map(r))[0]+\"C\"+l[1]+\" \"+l[2]+\" \"+l[3]}return n.source=function(e){return arguments.length?(t=de(e),n):t},n.target=function(t){return arguments.length?(e=de(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},t.svg.diagonal.radial=function(){var e=t.svg.diagonal(),r=cs,n=e.projection;return e.projection=function(t){return arguments.length?n(us(r=t)):r},e},t.svg.symbol=function(){var t=hs,e=fs;function r(r,n){return(ds.get(t.call(this,r,n))||ps)(e.call(this,r,n))}return r.type=function(e){return arguments.length?(t=de(e),r):t},r.size=function(t){return arguments.length?(e=de(t),r):e},r};var ds=t.map({circle:ps,cross:function(t){var e=Math.sqrt(t/5)/2;return\"M\"+-3*e+\",\"+-e+\"H\"+-e+\"V\"+-3*e+\"H\"+e+\"V\"+-e+\"H\"+3*e+\"V\"+e+\"H\"+e+\"V\"+3*e+\"H\"+-e+\"V\"+e+\"H\"+-3*e+\"Z\"},diamond:function(t){var e=Math.sqrt(t/(2*ms)),r=e*ms;return\"M0,\"+-e+\"L\"+r+\",0 0,\"+e+\" \"+-r+\",0Z\"},square:function(t){var e=Math.sqrt(t)/2;return\"M\"+-e+\",\"+-e+\"L\"+e+\",\"+-e+\" \"+e+\",\"+e+\" \"+-e+\",\"+e+\"Z\"},\"triangle-down\":function(t){var e=Math.sqrt(t/gs),r=e*gs/2;return\"M0,\"+r+\"L\"+e+\",\"+-r+\" \"+-e+\",\"+-r+\"Z\"},\"triangle-up\":function(t){var e=Math.sqrt(t/gs),r=e*gs/2;return\"M0,\"+-r+\"L\"+e+\",\"+r+\" \"+-e+\",\"+r+\"Z\"}});t.svg.symbolTypes=ds.keys();var gs=Math.sqrt(3),ms=Math.tan(30*Lt);Y.transition=function(t){for(var e,r,n=bs||++Ts,i=As(t),a=[],o=_s||{time:Date.now(),ease:ca,delay:0,duration:250},s=-1,l=this.length;++s<l;){a.push(e=[]);for(var c=this[s],u=-1,f=c.length;++u<f;)(r=c[u])&&Ss(r,u,i,n,o),e.push(r)}return xs(a,i,n)},Y.interrupt=function(t){return this.each(null==t?vs:ys(As(t)))};var vs=ys(As());function ys(t){return function(){var e,r,n;(e=this[t])&&(n=e[r=e.active])&&(n.timer.c=null,n.timer.t=NaN,--e.count?delete e[r]:delete this[t],e.active+=.5,n.event&&n.event.interrupt.call(this,this.__data__,n.index))}}function xs(t,e,r){return U(t,ws),t.namespace=e,t.id=r,t}var bs,_s,ws=[],Ts=0;function ks(t,e,r,n){var i=t.id,a=t.namespace;return ut(t,\"function\"==typeof r?function(t,o,s){t[a][i].tween.set(e,n(r.call(t,t.__data__,o,s)))}:(r=n(r),function(t){t[a][i].tween.set(e,r)}))}function Ms(t){return null==t&&(t=\"\"),function(){this.textContent=t}}function As(t){return null==t?\"__transition__\":\"__transition_\"+t+\"__\"}function Ss(t,e,r,n,i){var a,o,s,l,c,u=t[r]||(t[r]={active:0,count:0}),f=u[n];function h(r){var i=u.active,h=u[i];for(var d in h&&(h.timer.c=null,h.timer.t=NaN,--u.count,delete u[i],h.event&&h.event.interrupt.call(t,t.__data__,h.index)),u)if(+d<n){var g=u[d];g.timer.c=null,g.timer.t=NaN,--u.count,delete u[d]}o.c=p,we((function(){return o.c&&p(r||1)&&(o.c=null,o.t=NaN),1}),0,a),u.active=n,f.event&&f.event.start.call(t,t.__data__,e),c=[],f.tween.forEach((function(r,n){(n=n.call(t,t.__data__,e))&&c.push(n)})),l=f.ease,s=f.duration}function p(i){for(var a=i/s,o=l(a),h=c.length;h>0;)c[--h].call(t,o);if(a>=1)return f.event&&f.event.end.call(t,t.__data__,e),--u.count?delete u[n]:delete t[r],1}f||(a=i.time,o=we((function(t){var e=f.delay;if(o.t=e+a,e<=t)return h(t-e);o.c=h}),0,a),f=u[n]={tween:new _,time:a,timer:o,delay:i.delay,duration:i.duration,ease:i.ease,index:e},i=null,++u.count)}ws.call=Y.call,ws.empty=Y.empty,ws.node=Y.node,ws.size=Y.size,t.transition=function(e,r){return e&&e.transition?bs?e.transition(r):e:t.selection().transition(e)},t.transition.prototype=ws,ws.select=function(t){var e,r,n,i=this.id,a=this.namespace,o=[];t=W(t);for(var s=-1,l=this.length;++s<l;){o.push(e=[]);for(var c=this[s],u=-1,f=c.length;++u<f;)(n=c[u])&&(r=t.call(n,n.__data__,u,s))?(\"__data__\"in n&&(r.__data__=n.__data__),Ss(r,u,a,i,n[a][i]),e.push(r)):e.push(null)}return xs(o,a,i)},ws.selectAll=function(t){var e,r,n,i,a,o=this.id,s=this.namespace,l=[];t=X(t);for(var c=-1,u=this.length;++c<u;)for(var f=this[c],h=-1,p=f.length;++h<p;)if(n=f[h]){a=n[s][o],r=t.call(n,n.__data__,h,c),l.push(e=[]);for(var d=-1,g=r.length;++d<g;)(i=r[d])&&Ss(i,d,s,o,a),e.push(i)}return xs(l,s,o)},ws.filter=function(t){var e,r,n=[];\"function\"!=typeof t&&(t=lt(t));for(var i=0,a=this.length;i<a;i++){n.push(e=[]);for(var o,s=0,l=(o=this[i]).length;s<l;s++)(r=o[s])&&t.call(r,r.__data__,s,i)&&e.push(r)}return xs(n,this.namespace,this.id)},ws.tween=function(t,e){var r=this.id,n=this.namespace;return arguments.length<2?this.node()[n][r].tween.get(t):ut(this,null==e?function(e){e[n][r].tween.remove(t)}:function(i){i[n][r].tween.set(t,e)})},ws.attr=function(e,r){if(arguments.length<2){for(r in e)this.attr(r,e[r]);return this}var n=\"transform\"==e?ba:$i,i=t.ns.qualify(e);function a(){this.removeAttribute(i)}function o(){this.removeAttributeNS(i.space,i.local)}function s(t){return null==t?a:(t+=\"\",function(){var e,r=this.getAttribute(i);return r!==t&&(e=n(r,t),function(t){this.setAttribute(i,e(t))})})}function l(t){return null==t?o:(t+=\"\",function(){var e,r=this.getAttributeNS(i.space,i.local);return r!==t&&(e=n(r,t),function(t){this.setAttributeNS(i.space,i.local,e(t))})})}return ks(this,\"attr.\"+e,r,i.local?l:s)},ws.attrTween=function(e,r){var n=t.ns.qualify(e);return this.tween(\"attr.\"+e,n.local?function(t,e){var i=r.call(this,t,e,this.getAttributeNS(n.space,n.local));return i&&function(t){this.setAttributeNS(n.space,n.local,i(t))}}:function(t,e){var i=r.call(this,t,e,this.getAttribute(n));return i&&function(t){this.setAttribute(n,i(t))}})},ws.style=function(t,e,r){var n=arguments.length;if(n<3){if(\"string\"!=typeof t){for(r in n<2&&(e=\"\"),t)this.style(r,t[r],e);return this}r=\"\"}function i(){this.style.removeProperty(t)}function a(e){return null==e?i:(e+=\"\",function(){var n,i=o(this).getComputedStyle(this,null).getPropertyValue(t);return i!==e&&(n=$i(i,e),function(e){this.style.setProperty(t,n(e),r)})})}return ks(this,\"style.\"+t,e,a)},ws.styleTween=function(t,e,r){function n(n,i){var a=e.call(this,n,i,o(this).getComputedStyle(this,null).getPropertyValue(t));return a&&function(e){this.style.setProperty(t,a(e),r)}}return arguments.length<3&&(r=\"\"),this.tween(\"style.\"+t,n)},ws.text=function(t){return ks(this,\"text\",t,Ms)},ws.remove=function(){var t=this.namespace;return this.each(\"end.transition\",(function(){var e;this[t].count<2&&(e=this.parentNode)&&e.removeChild(this)}))},ws.ease=function(e){var r=this.id,n=this.namespace;return arguments.length<1?this.node()[n][r].ease:(\"function\"!=typeof e&&(e=t.ease.apply(t,arguments)),ut(this,(function(t){t[n][r].ease=e})))},ws.delay=function(t){var e=this.id,r=this.namespace;return arguments.length<1?this.node()[r][e].delay:ut(this,\"function\"==typeof t?function(n,i,a){n[r][e].delay=+t.call(n,n.__data__,i,a)}:(t=+t,function(n){n[r][e].delay=t}))},ws.duration=function(t){var e=this.id,r=this.namespace;return arguments.length<1?this.node()[r][e].duration:ut(this,\"function\"==typeof t?function(n,i,a){n[r][e].duration=Math.max(1,t.call(n,n.__data__,i,a))}:(t=Math.max(1,t),function(n){n[r][e].duration=t}))},ws.each=function(e,r){var n=this.id,i=this.namespace;if(arguments.length<2){var a=_s,o=bs;try{bs=n,ut(this,(function(t,r,a){_s=t[i][n],e.call(t,t.__data__,r,a)}))}finally{_s=a,bs=o}}else ut(this,(function(a){var o=a[i][n];(o.event||(o.event=t.dispatch(\"start\",\"end\",\"interrupt\"))).on(e,r)}));return this},ws.transition=function(){for(var t,e,r,n=this.id,i=++Ts,a=this.namespace,o=[],s=0,l=this.length;s<l;s++){o.push(t=[]);for(var c,u=0,f=(c=this[s]).length;u<f;u++)(e=c[u])&&Ss(e,u,a,i,{time:(r=e[a][n]).time,ease:r.ease,delay:r.delay+r.duration,duration:r.duration}),t.push(e)}return xs(o,a,i)},t.svg.axis=function(){var e,r=t.scale.linear(),i=Es,a=6,o=6,s=3,l=[10],c=null;function u(n){n.each((function(){var n,u=t.select(this),f=this.__chart__||r,h=this.__chart__=r.copy(),p=null==c?h.ticks?h.ticks.apply(h,l):h.domain():c,d=null==e?h.tickFormat?h.tickFormat.apply(h,l):L:e,g=u.selectAll(\".tick\").data(p,h),m=g.enter().insert(\"g\",\".domain\").attr(\"class\",\"tick\").style(\"opacity\",kt),v=t.transition(g.exit()).style(\"opacity\",kt).remove(),y=t.transition(g.order()).style(\"opacity\",1),x=Math.max(a,0)+s,b=mo(h),_=u.selectAll(\".domain\").data([0]),w=(_.enter().append(\"path\").attr(\"class\",\"domain\"),t.transition(_));m.append(\"line\"),m.append(\"text\");var T,k,M,A,S=m.select(\"line\"),E=y.select(\"line\"),C=g.select(\"text\").text(d),I=m.select(\"text\"),P=y.select(\"text\"),z=\"top\"===i||\"left\"===i?-1:1;if(\"bottom\"===i||\"top\"===i?(n=Ls,T=\"x\",M=\"y\",k=\"x2\",A=\"y2\",C.attr(\"dy\",z<0?\"0em\":\".71em\").style(\"text-anchor\",\"middle\"),w.attr(\"d\",\"M\"+b[0]+\",\"+z*o+\"V0H\"+b[1]+\"V\"+z*o)):(n=Is,T=\"y\",M=\"x\",k=\"y2\",A=\"x2\",C.attr(\"dy\",\".32em\").style(\"text-anchor\",z<0?\"end\":\"start\"),w.attr(\"d\",\"M\"+z*o+\",\"+b[0]+\"H0V\"+b[1]+\"H\"+z*o)),S.attr(A,z*a),I.attr(M,z*x),E.attr(k,0).attr(A,z*a),P.attr(T,0).attr(M,z*x),h.rangeBand){var O=h,D=O.rangeBand()/2;f=h=function(t){return O(t)+D}}else f.rangeBand?f=h:v.call(n,h,f);m.call(n,f,h),y.call(n,h,h)}))}return u.scale=function(t){return arguments.length?(r=t,u):r},u.orient=function(t){return arguments.length?(i=t in Cs?t+\"\":Es,u):i},u.ticks=function(){return arguments.length?(l=n(arguments),u):l},u.tickValues=function(t){return arguments.length?(c=t,u):c},u.tickFormat=function(t){return arguments.length?(e=t,u):e},u.tickSize=function(t){var e=arguments.length;return e?(a=+t,o=+arguments[e-1],u):a},u.innerTickSize=function(t){return arguments.length?(a=+t,u):a},u.outerTickSize=function(t){return arguments.length?(o=+t,u):o},u.tickPadding=function(t){return arguments.length?(s=+t,u):s},u.tickSubdivide=function(){return arguments.length&&u},u};var Es=\"bottom\",Cs={top:1,right:1,bottom:1,left:1};function Ls(t,e,r){t.attr(\"transform\",(function(t){var n=e(t);return\"translate(\"+(isFinite(n)?n:r(t))+\",0)\"}))}function Is(t,e,r){t.attr(\"transform\",(function(t){var n=e(t);return\"translate(0,\"+(isFinite(n)?n:r(t))+\")\"}))}t.svg.brush=function(){var e,r,n=N(h,\"brushstart\",\"brush\",\"brushend\"),i=null,a=null,s=[0,0],l=[0,0],c=!0,u=!0,f=zs[0];function h(e){e.each((function(){var e=t.select(this).style(\"pointer-events\",\"all\").style(\"-webkit-tap-highlight-color\",\"rgba(0,0,0,0)\").on(\"mousedown.brush\",m).on(\"touchstart.brush\",m),r=e.selectAll(\".background\").data([0]);r.enter().append(\"rect\").attr(\"class\",\"background\").style(\"visibility\",\"hidden\").style(\"cursor\",\"crosshair\"),e.selectAll(\".extent\").data([0]).enter().append(\"rect\").attr(\"class\",\"extent\").style(\"cursor\",\"move\");var n=e.selectAll(\".resize\").data(f,L);n.exit().remove(),n.enter().append(\"g\").attr(\"class\",(function(t){return\"resize \"+t})).style(\"cursor\",(function(t){return Ps[t]})).append(\"rect\").attr(\"x\",(function(t){return/[ew]$/.test(t)?-3:null})).attr(\"y\",(function(t){return/^[ns]/.test(t)?-3:null})).attr(\"width\",6).attr(\"height\",6).style(\"visibility\",\"hidden\"),n.style(\"display\",h.empty()?\"none\":null);var o,s=t.transition(e),l=t.transition(r);i&&(o=mo(i),l.attr(\"x\",o[0]).attr(\"width\",o[1]-o[0]),d(s)),a&&(o=mo(a),l.attr(\"y\",o[0]).attr(\"height\",o[1]-o[0]),g(s)),p(s)}))}function p(t){t.selectAll(\".resize\").attr(\"transform\",(function(t){return\"translate(\"+s[+/e$/.test(t)]+\",\"+l[+/^s/.test(t)]+\")\"}))}function d(t){t.select(\".extent\").attr(\"x\",s[0]),t.selectAll(\".extent,.n>rect,.s>rect\").attr(\"width\",s[1]-s[0])}function g(t){t.select(\".extent\").attr(\"y\",l[0]),t.selectAll(\".extent,.e>rect,.w>rect\").attr(\"height\",l[1]-l[0])}function m(){var f,m,v=this,y=t.select(t.event.target),x=n.of(v,arguments),b=t.select(v),_=y.datum(),w=!/^(n|s)$/.test(_)&&i,T=!/^(e|w)$/.test(_)&&a,k=y.classed(\"extent\"),M=bt(v),A=t.mouse(v),S=t.select(o(v)).on(\"keydown.brush\",L).on(\"keyup.brush\",I);if(t.event.changedTouches?S.on(\"touchmove.brush\",P).on(\"touchend.brush\",O):S.on(\"mousemove.brush\",P).on(\"mouseup.brush\",O),b.interrupt().selectAll(\"*\").interrupt(),k)A[0]=s[0]-A[0],A[1]=l[0]-A[1];else if(_){var E=+/w$/.test(_),C=+/^n/.test(_);m=[s[1-E]-A[0],l[1-C]-A[1]],A[0]=s[E],A[1]=l[C]}else t.event.altKey&&(f=A.slice());function L(){32==t.event.keyCode&&(k||(f=null,A[0]-=s[1],A[1]-=l[1],k=2),F())}function I(){32==t.event.keyCode&&2==k&&(A[0]+=s[1],A[1]+=l[1],k=0,F())}function P(){var e=t.mouse(v),r=!1;m&&(e[0]+=m[0],e[1]+=m[1]),k||(t.event.altKey?(f||(f=[(s[0]+s[1])/2,(l[0]+l[1])/2]),A[0]=s[+(e[0]<f[0])],A[1]=l[+(e[1]<f[1])]):f=null),w&&z(e,i,0)&&(d(b),r=!0),T&&z(e,a,1)&&(g(b),r=!0),r&&(p(b),x({type:\"brush\",mode:k?\"move\":\"resize\"}))}function z(t,n,i){var a,o,h=mo(n),p=h[0],d=h[1],g=A[i],m=i?l:s,v=m[1]-m[0];if(k&&(p-=g,d-=v+g),a=(i?u:c)?Math.max(p,Math.min(d,t[i])):t[i],k?o=(a+=g)+v:(f&&(g=Math.max(p,Math.min(d,2*f[i]-a))),g<a?(o=a,a=g):o=g),m[0]!=a||m[1]!=o)return i?r=null:e=null,m[0]=a,m[1]=o,!0}function O(){P(),b.style(\"pointer-events\",\"all\").selectAll(\".resize\").style(\"display\",h.empty()?\"none\":null),t.select(\"body\").style(\"cursor\",null),S.on(\"mousemove.brush\",null).on(\"mouseup.brush\",null).on(\"touchmove.brush\",null).on(\"touchend.brush\",null).on(\"keydown.brush\",null).on(\"keyup.brush\",null),M(),x({type:\"brushend\"})}b.style(\"pointer-events\",\"none\").selectAll(\".resize\").style(\"display\",null),t.select(\"body\").style(\"cursor\",y.style(\"cursor\")),x({type:\"brushstart\"}),P()}return h.event=function(i){i.each((function(){var i=n.of(this,arguments),a={x:s,y:l,i:e,j:r},o=this.__chart__||a;this.__chart__=a,bs?t.select(this).transition().each(\"start.brush\",(function(){e=o.i,r=o.j,s=o.x,l=o.y,i({type:\"brushstart\"})})).tween(\"brush:brush\",(function(){var t=ta(s,a.x),n=ta(l,a.y);return e=r=null,function(e){s=a.x=t(e),l=a.y=n(e),i({type:\"brush\",mode:\"resize\"})}})).each(\"end.brush\",(function(){e=a.i,r=a.j,i({type:\"brush\",mode:\"resize\"}),i({type:\"brushend\"})})):(i({type:\"brushstart\"}),i({type:\"brush\",mode:\"resize\"}),i({type:\"brushend\"}))}))},h.x=function(t){return arguments.length?(f=zs[!(i=t)<<1|!a],h):i},h.y=function(t){return arguments.length?(f=zs[!i<<1|!(a=t)],h):a},h.clamp=function(t){return arguments.length?(i&&a?(c=!!t[0],u=!!t[1]):i?c=!!t:a&&(u=!!t),h):i&&a?[c,u]:i?c:a?u:null},h.extent=function(t){var n,o,c,u,f;return arguments.length?(i&&(n=t[0],o=t[1],a&&(n=n[0],o=o[0]),e=[n,o],i.invert&&(n=i(n),o=i(o)),o<n&&(f=n,n=o,o=f),n==s[0]&&o==s[1]||(s=[n,o])),a&&(c=t[0],u=t[1],i&&(c=c[1],u=u[1]),r=[c,u],a.invert&&(c=a(c),u=a(u)),u<c&&(f=c,c=u,u=f),c==l[0]&&u==l[1]||(l=[c,u])),h):(i&&(e?(n=e[0],o=e[1]):(n=s[0],o=s[1],i.invert&&(n=i.invert(n),o=i.invert(o)),o<n&&(f=n,n=o,o=f))),a&&(r?(c=r[0],u=r[1]):(c=l[0],u=l[1],a.invert&&(c=a.invert(c),u=a.invert(u)),u<c&&(f=c,c=u,u=f))),i&&a?[[n,c],[o,u]]:i?[n,o]:a&&[c,u])},h.clear=function(){return h.empty()||(s=[0,0],l=[0,0],e=r=null),h},h.empty=function(){return!!i&&s[0]==s[1]||!!a&&l[0]==l[1]},t.rebind(h,n,\"on\")};var Ps={n:\"ns-resize\",e:\"ew-resize\",s:\"ns-resize\",w:\"ew-resize\",nw:\"nwse-resize\",ne:\"nesw-resize\",se:\"nwse-resize\",sw:\"nesw-resize\"},zs=[[\"n\",\"e\",\"s\",\"w\",\"nw\",\"ne\",\"se\",\"sw\"],[\"e\",\"w\"],[\"n\",\"s\"],[]],Os=Pe.format=sr.timeFormat,Ds=Os.utc,Rs=Ds(\"%Y-%m-%dT%H:%M:%S.%LZ\");function Fs(t){return t.toISOString()}function Bs(e,r,n){function i(t){return e(t)}function a(e,n){var i=(e[1]-e[0])/n,a=t.bisect(js,i);return a==js.length?[r.year,ko(e.map((function(t){return t/31536e6})),n)[2]]:a?r[i/js[a-1]<js[a]/i?a-1:a]:[qs,ko(e,n)[2]]}return i.invert=function(t){return Ns(e.invert(t))},i.domain=function(t){return arguments.length?(e.domain(t),i):e.domain().map(Ns)},i.nice=function(t,e){var r=i.domain(),n=go(r),o=null==t?a(n,10):\"number\"==typeof t&&a(n,t);function s(r){return!isNaN(r)&&!t.range(r,Ns(+r+1),e).length}return o&&(t=o[0],e=o[1]),i.domain(yo(r,e>1?{floor:function(e){for(;s(e=t.floor(e));)e=Ns(e-1);return e},ceil:function(e){for(;s(e=t.ceil(e));)e=Ns(+e+1);return e}}:t))},i.ticks=function(t,e){var r=go(i.domain()),n=null==t?a(r,10):\"number\"==typeof t?a(r,t):!t.range&&[{range:t},e];return n&&(t=n[0],e=n[1]),t.range(r[0],Ns(+r[1]+1),e<1?1:e)},i.tickFormat=function(){return n},i.copy=function(){return Bs(e.copy(),r,n)},wo(i,e)}function Ns(t){return new Date(t)}Os.iso=Date.prototype.toISOString&&+new Date(\"2000-01-01T00:00:00.000Z\")?Fs:Rs,Fs.parse=function(t){var e=new Date(t);return isNaN(e)?null:e},Fs.toString=Rs.toString,Pe.second=Re((function(t){return new ze(1e3*Math.floor(t/1e3))}),(function(t,e){t.setTime(t.getTime()+1e3*Math.floor(e))}),(function(t){return t.getSeconds()})),Pe.seconds=Pe.second.range,Pe.seconds.utc=Pe.second.utc.range,Pe.minute=Re((function(t){return new ze(6e4*Math.floor(t/6e4))}),(function(t,e){t.setTime(t.getTime()+6e4*Math.floor(e))}),(function(t){return t.getMinutes()})),Pe.minutes=Pe.minute.range,Pe.minutes.utc=Pe.minute.utc.range,Pe.hour=Re((function(t){var e=t.getTimezoneOffset()/60;return new ze(36e5*(Math.floor(t/36e5-e)+e))}),(function(t,e){t.setTime(t.getTime()+36e5*Math.floor(e))}),(function(t){return t.getHours()})),Pe.hours=Pe.hour.range,Pe.hours.utc=Pe.hour.utc.range,Pe.month=Re((function(t){return(t=Pe.day(t)).setDate(1),t}),(function(t,e){t.setMonth(t.getMonth()+e)}),(function(t){return t.getMonth()})),Pe.months=Pe.month.range,Pe.months.utc=Pe.month.utc.range;var js=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],Us=[[Pe.second,1],[Pe.second,5],[Pe.second,15],[Pe.second,30],[Pe.minute,1],[Pe.minute,5],[Pe.minute,15],[Pe.minute,30],[Pe.hour,1],[Pe.hour,3],[Pe.hour,6],[Pe.hour,12],[Pe.day,1],[Pe.day,2],[Pe.week,1],[Pe.month,1],[Pe.month,3],[Pe.year,1]],Vs=Os.multi([[\".%L\",function(t){return t.getMilliseconds()}],[\":%S\",function(t){return t.getSeconds()}],[\"%I:%M\",function(t){return t.getMinutes()}],[\"%I %p\",function(t){return t.getHours()}],[\"%a %d\",function(t){return t.getDay()&&1!=t.getDate()}],[\"%b %d\",function(t){return 1!=t.getDate()}],[\"%B\",function(t){return t.getMonth()}],[\"%Y\",Yr]]),qs={range:function(e,r,n){return t.range(Math.ceil(e/n)*n,+r,n).map(Ns)},floor:L,ceil:L};Us.year=Pe.year,Pe.scale=function(){return Bs(t.scale.linear(),Us,Vs)};var Hs=Us.map((function(t){return[t[0].utc,t[1]]})),Gs=Ds.multi([[\".%L\",function(t){return t.getUTCMilliseconds()}],[\":%S\",function(t){return t.getUTCSeconds()}],[\"%I:%M\",function(t){return t.getUTCMinutes()}],[\"%I %p\",function(t){return t.getUTCHours()}],[\"%a %d\",function(t){return t.getUTCDay()&&1!=t.getUTCDate()}],[\"%b %d\",function(t){return 1!=t.getUTCDate()}],[\"%B\",function(t){return t.getUTCMonth()}],[\"%Y\",Yr]]);function Ys(t){return JSON.parse(t.responseText)}function Ws(t){var e=i.createRange();return e.selectNode(i.body),e.createContextualFragment(t.responseText)}Hs.year=Pe.year.utc,Pe.scale.utc=function(){return Bs(t.scale.linear(),Hs,Gs)},t.text=ge((function(t){return t.responseText})),t.json=function(t,e){return me(t,\"application/json\",Ys,e)},t.html=function(t,e){return me(t,\"text/html\",Ws,e)},t.xml=ge((function(t){return t.responseXML})),\"object\"==typeof e&&e.exports?e.exports=t:this.d3=t}()},{}],170:[function(t,e,r){e.exports=function(){for(var t=0;t<arguments.length;t++)if(void 0!==arguments[t])return arguments[t]}},{}],171:[function(t,e,r){\"use strict\";var n=t(\"incremental-convex-hull\"),i=t(\"uniq\");function a(t,e){this.point=t,this.index=e}function o(t,e){for(var r=t.point,n=e.point,i=r.length,a=0;a<i;++a){var o=n[a]-r[a];if(o)return o}return 0}e.exports=function(t,e){var r=t.length;if(0===r)return[];var s=t[0].length;if(s<1)return[];if(1===s)return function(t,e,r){if(1===t)return r?[[-1,0]]:[];var n=e.map((function(t,e){return[t[0],e]}));n.sort((function(t,e){return t[0]-e[0]}));for(var i=new Array(t-1),a=1;a<t;++a){var o=n[a-1],s=n[a];i[a-1]=[o[1],s[1]]}r&&i.push([-1,i[0][1]],[i[t-1][1],-1]);return i}(r,t,e);for(var l=new Array(r),c=1,u=0;u<r;++u){for(var f=t[u],h=new Array(s+1),p=0,d=0;d<s;++d){var g=f[d];h[d]=g,p+=g*g}h[s]=p,l[u]=new a(h,u),c=Math.max(p,c)}i(l,o),r=l.length;var m=new Array(r+s+1),v=new Array(r+s+1),y=(s+1)*(s+1)*c,x=new Array(s+1);for(u=0;u<=s;++u)x[u]=0;x[s]=y,m[0]=x.slice(),v[0]=-1;for(u=0;u<=s;++u){(h=x.slice())[u]=1,m[u+1]=h,v[u+1]=-1}for(u=0;u<r;++u){var b=l[u];m[u+s+1]=b.point,v[u+s+1]=b.index}var _=n(m,!1);_=e?_.filter((function(t){for(var e=0,r=0;r<=s;++r){var n=v[t[r]];if(n<0&&++e>=2)return!1;t[r]=n}return!0})):_.filter((function(t){for(var e=0;e<=s;++e){var r=v[t[e]];if(r<0)return!1;t[e]=r}return!0}));if(1&s)for(u=0;u<_.length;++u){h=(b=_[u])[0];b[0]=b[1],b[1]=h}return _}},{\"incremental-convex-hull\":459,uniq:597}],172:[function(t,e,r){\"use strict\";e.exports=a;var n=(a.canvas=document.createElement(\"canvas\")).getContext(\"2d\"),i=o([32,126]);function a(t,e){Array.isArray(t)&&(t=t.join(\", \"));var r,a={},s=16,l=.05;e&&(2===e.length&&\"number\"==typeof e[0]?r=o(e):Array.isArray(e)?r=e:(e.o?r=o(e.o):e.pairs&&(r=e.pairs),e.fontSize&&(s=e.fontSize),null!=e.threshold&&(l=e.threshold))),r||(r=i),n.font=s+\"px \"+t;for(var c=0;c<r.length;c++){var u=r[c],f=n.measureText(u[0]).width+n.measureText(u[1]).width,h=n.measureText(u).width;if(Math.abs(f-h)>s*l){var p=(h-f)/s;a[u]=1e3*p}}return a}function o(t){for(var e=[],r=t[0];r<=t[1];r++)for(var n=String.fromCharCode(r),i=t[0];i<t[1];i++){var a=n+String.fromCharCode(i);e.push(a)}return e}a.createPairs=o,a.ascii=i},{}],173:[function(t,e,r){(function(t){(function(){var r=!1;if(\"undefined\"!=typeof Float64Array){var n=new Float64Array(1),i=new Uint32Array(n.buffer);if(n[0]=1,r=!0,1072693248===i[1]){e.exports=function(t){return n[0]=t,[i[0],i[1]]},e.exports.pack=function(t,e){return i[0]=t,i[1]=e,n[0]},e.exports.lo=function(t){return n[0]=t,i[0]},e.exports.hi=function(t){return n[0]=t,i[1]}}else if(1072693248===i[0]){e.exports=function(t){return n[0]=t,[i[1],i[0]]},e.exports.pack=function(t,e){return i[1]=t,i[0]=e,n[0]},e.exports.lo=function(t){return n[0]=t,i[1]},e.exports.hi=function(t){return n[0]=t,i[0]}}else r=!1}if(!r){var a=new t(8);e.exports=function(t){return a.writeDoubleLE(t,0,!0),[a.readUInt32LE(0,!0),a.readUInt32LE(4,!0)]},e.exports.pack=function(t,e){return a.writeUInt32LE(t,0,!0),a.writeUInt32LE(e,4,!0),a.readDoubleLE(0,!0)},e.exports.lo=function(t){return a.writeDoubleLE(t,0,!0),a.readUInt32LE(0,!0)},e.exports.hi=function(t){return a.writeDoubleLE(t,0,!0),a.readUInt32LE(4,!0)}}e.exports.sign=function(t){return e.exports.hi(t)>>>31},e.exports.exponent=function(t){return(e.exports.hi(t)<<1>>>21)-1023},e.exports.fraction=function(t){var r=e.exports.lo(t),n=e.exports.hi(t),i=1048575&n;return 2146435072&n&&(i+=1<<20),[r,i]},e.exports.denormalized=function(t){return!(2146435072&e.exports.hi(t))}}).call(this)}).call(this,t(\"buffer\").Buffer)},{buffer:111}],174:[function(t,e,r){var n=t(\"abs-svg-path\"),i=t(\"normalize-svg-path\"),a={M:\"moveTo\",C:\"bezierCurveTo\"};e.exports=function(t,e){t.beginPath(),i(n(e)).forEach((function(e){var r=e[0],n=e.slice(1);t[a[r]].apply(t,n)})),t.closePath()}},{\"abs-svg-path\":65,\"normalize-svg-path\":497}],175:[function(t,e,r){e.exports=function(t){switch(t){case\"int8\":return Int8Array;case\"int16\":return Int16Array;case\"int32\":return Int32Array;case\"uint8\":return Uint8Array;case\"uint16\":return Uint16Array;case\"uint32\":return Uint32Array;case\"float32\":return Float32Array;case\"float64\":return Float64Array;case\"array\":return Array;case\"uint8_clamped\":return Uint8ClampedArray}}},{}],176:[function(t,e,r){\"use strict\";e.exports=function(t,e){switch(\"undefined\"==typeof e&&(e=0),typeof t){case\"number\":if(t>0)return function(t,e){var r,n;for(r=new Array(t),n=0;n<t;++n)r[n]=e;return r}(0|t,e);break;case\"object\":if(\"number\"==typeof t.length)return function t(e,r,n){var i=0|e[n];if(i<=0)return[];var a,o=new Array(i);if(n===e.length-1)for(a=0;a<i;++a)o[a]=r;else for(a=0;a<i;++a)o[a]=t(e,r,n+1);return o}(t,e,0)}return[]}},{}],177:[function(t,e,r){\"use strict\";function n(t,e,r){r=r||2;var n,s,l,c,u,p,d,m=e&&e.length,v=m?e[0]*r:t.length,y=i(t,0,v,r,!0),x=[];if(!y||y.next===y.prev)return x;if(m&&(y=function(t,e,r,n){var o,s,l,c,u,p=[];for(o=0,s=e.length;o<s;o++)l=e[o]*n,c=o<s-1?e[o+1]*n:t.length,(u=i(t,l,c,n,!1))===u.next&&(u.steiner=!0),p.push(g(u));for(p.sort(f),o=0;o<p.length;o++)h(p[o],r),r=a(r,r.next);return r}(t,e,y,r)),t.length>80*r){n=l=t[0],s=c=t[1];for(var b=r;b<v;b+=r)(u=t[b])<n&&(n=u),(p=t[b+1])<s&&(s=p),u>l&&(l=u),p>c&&(c=p);d=0!==(d=Math.max(l-n,c-s))?1/d:0}return o(y,x,r,n,s,d),x}function i(t,e,r,n,i){var a,o;if(i===E(t,e,r,n)>0)for(a=e;a<r;a+=n)o=M(a,t[a],t[a+1],o);else for(a=r-n;a>=e;a-=n)o=M(a,t[a],t[a+1],o);return o&&x(o,o.next)&&(A(o),o=o.next),o}function a(t,e){if(!t)return t;e||(e=t);var r,n=t;do{if(r=!1,n.steiner||!x(n,n.next)&&0!==y(n.prev,n,n.next))n=n.next;else{if(A(n),(n=e=n.prev)===n.next)break;r=!0}}while(r||n!==e);return e}function o(t,e,r,n,i,f,h){if(t){!h&&f&&function(t,e,r,n){var i=t;do{null===i.z&&(i.z=d(i.x,i.y,e,r,n)),i.prevZ=i.prev,i.nextZ=i.next,i=i.next}while(i!==t);i.prevZ.nextZ=null,i.prevZ=null,function(t){var e,r,n,i,a,o,s,l,c=1;do{for(r=t,t=null,a=null,o=0;r;){for(o++,n=r,s=0,e=0;e<c&&(s++,n=n.nextZ);e++);for(l=c;s>0||l>0&&n;)0!==s&&(0===l||!n||r.z<=n.z)?(i=r,r=r.nextZ,s--):(i=n,n=n.nextZ,l--),a?a.nextZ=i:t=i,i.prevZ=a,a=i;r=n}a.nextZ=null,c*=2}while(o>1)}(i)}(t,n,i,f);for(var p,g,m=t;t.prev!==t.next;)if(p=t.prev,g=t.next,f?l(t,n,i,f):s(t))e.push(p.i/r),e.push(t.i/r),e.push(g.i/r),A(t),t=g.next,m=g.next;else if((t=g)===m){h?1===h?o(t=c(a(t),e,r),e,r,n,i,f,2):2===h&&u(t,e,r,n,i,f):o(a(t),e,r,n,i,f,1);break}}}function s(t){var e=t.prev,r=t,n=t.next;if(y(e,r,n)>=0)return!1;for(var i=t.next.next;i!==t.prev;){if(m(e.x,e.y,r.x,r.y,n.x,n.y,i.x,i.y)&&y(i.prev,i,i.next)>=0)return!1;i=i.next}return!0}function l(t,e,r,n){var i=t.prev,a=t,o=t.next;if(y(i,a,o)>=0)return!1;for(var s=i.x<a.x?i.x<o.x?i.x:o.x:a.x<o.x?a.x:o.x,l=i.y<a.y?i.y<o.y?i.y:o.y:a.y<o.y?a.y:o.y,c=i.x>a.x?i.x>o.x?i.x:o.x:a.x>o.x?a.x:o.x,u=i.y>a.y?i.y>o.y?i.y:o.y:a.y>o.y?a.y:o.y,f=d(s,l,e,r,n),h=d(c,u,e,r,n),p=t.prevZ,g=t.nextZ;p&&p.z>=f&&g&&g.z<=h;){if(p!==t.prev&&p!==t.next&&m(i.x,i.y,a.x,a.y,o.x,o.y,p.x,p.y)&&y(p.prev,p,p.next)>=0)return!1;if(p=p.prevZ,g!==t.prev&&g!==t.next&&m(i.x,i.y,a.x,a.y,o.x,o.y,g.x,g.y)&&y(g.prev,g,g.next)>=0)return!1;g=g.nextZ}for(;p&&p.z>=f;){if(p!==t.prev&&p!==t.next&&m(i.x,i.y,a.x,a.y,o.x,o.y,p.x,p.y)&&y(p.prev,p,p.next)>=0)return!1;p=p.prevZ}for(;g&&g.z<=h;){if(g!==t.prev&&g!==t.next&&m(i.x,i.y,a.x,a.y,o.x,o.y,g.x,g.y)&&y(g.prev,g,g.next)>=0)return!1;g=g.nextZ}return!0}function c(t,e,r){var n=t;do{var i=n.prev,o=n.next.next;!x(i,o)&&b(i,n,n.next,o)&&T(i,o)&&T(o,i)&&(e.push(i.i/r),e.push(n.i/r),e.push(o.i/r),A(n),A(n.next),n=t=o),n=n.next}while(n!==t);return a(n)}function u(t,e,r,n,i,s){var l=t;do{for(var c=l.next.next;c!==l.prev;){if(l.i!==c.i&&v(l,c)){var u=k(l,c);return l=a(l,l.next),u=a(u,u.next),o(l,e,r,n,i,s),void o(u,e,r,n,i,s)}c=c.next}l=l.next}while(l!==t)}function f(t,e){return t.x-e.x}function h(t,e){if(e=function(t,e){var r,n=e,i=t.x,a=t.y,o=-1/0;do{if(a<=n.y&&a>=n.next.y&&n.next.y!==n.y){var s=n.x+(a-n.y)*(n.next.x-n.x)/(n.next.y-n.y);if(s<=i&&s>o){if(o=s,s===i){if(a===n.y)return n;if(a===n.next.y)return n.next}r=n.x<n.next.x?n:n.next}}n=n.next}while(n!==e);if(!r)return null;if(i===o)return r;var l,c=r,u=r.x,f=r.y,h=1/0;n=r;do{i>=n.x&&n.x>=u&&i!==n.x&&m(a<f?i:o,a,u,f,a<f?o:i,a,n.x,n.y)&&(l=Math.abs(a-n.y)/(i-n.x),T(n,t)&&(l<h||l===h&&(n.x>r.x||n.x===r.x&&p(r,n)))&&(r=n,h=l)),n=n.next}while(n!==c);return r}(t,e)){var r=k(e,t);a(e,e.next),a(r,r.next)}}function p(t,e){return y(t.prev,t,e.prev)<0&&y(e.next,t,t.next)<0}function d(t,e,r,n,i){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-r)*i)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-n)*i)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function g(t){var e=t,r=t;do{(e.x<r.x||e.x===r.x&&e.y<r.y)&&(r=e),e=e.next}while(e!==t);return r}function m(t,e,r,n,i,a,o,s){return(i-o)*(e-s)-(t-o)*(a-s)>=0&&(t-o)*(n-s)-(r-o)*(e-s)>=0&&(r-o)*(a-s)-(i-o)*(n-s)>=0}function v(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!function(t,e){var r=t;do{if(r.i!==t.i&&r.next.i!==t.i&&r.i!==e.i&&r.next.i!==e.i&&b(r,r.next,t,e))return!0;r=r.next}while(r!==t);return!1}(t,e)&&(T(t,e)&&T(e,t)&&function(t,e){var r=t,n=!1,i=(t.x+e.x)/2,a=(t.y+e.y)/2;do{r.y>a!=r.next.y>a&&r.next.y!==r.y&&i<(r.next.x-r.x)*(a-r.y)/(r.next.y-r.y)+r.x&&(n=!n),r=r.next}while(r!==t);return n}(t,e)&&(y(t.prev,t,e.prev)||y(t,e.prev,e))||x(t,e)&&y(t.prev,t,t.next)>0&&y(e.prev,e,e.next)>0)}function y(t,e,r){return(e.y-t.y)*(r.x-e.x)-(e.x-t.x)*(r.y-e.y)}function x(t,e){return t.x===e.x&&t.y===e.y}function b(t,e,r,n){var i=w(y(t,e,r)),a=w(y(t,e,n)),o=w(y(r,n,t)),s=w(y(r,n,e));return i!==a&&o!==s||(!(0!==i||!_(t,r,e))||(!(0!==a||!_(t,n,e))||(!(0!==o||!_(r,t,n))||!(0!==s||!_(r,e,n)))))}function _(t,e,r){return e.x<=Math.max(t.x,r.x)&&e.x>=Math.min(t.x,r.x)&&e.y<=Math.max(t.y,r.y)&&e.y>=Math.min(t.y,r.y)}function w(t){return t>0?1:t<0?-1:0}function T(t,e){return y(t.prev,t,t.next)<0?y(t,e,t.next)>=0&&y(t,t.prev,e)>=0:y(t,e,t.prev)<0||y(t,t.next,e)<0}function k(t,e){var r=new S(t.i,t.x,t.y),n=new S(e.i,e.x,e.y),i=t.next,a=e.prev;return t.next=e,e.prev=t,r.next=i,i.prev=r,n.next=r,r.prev=n,a.next=n,n.prev=a,n}function M(t,e,r,n){var i=new S(t,e,r);return n?(i.next=n.next,i.prev=n,n.next.prev=i,n.next=i):(i.prev=i,i.next=i),i}function A(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function S(t,e,r){this.i=t,this.x=e,this.y=r,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function E(t,e,r,n){for(var i=0,a=e,o=r-n;a<r;a+=n)i+=(t[o]-t[a])*(t[a+1]+t[o+1]),o=a;return i}e.exports=n,e.exports.default=n,n.deviation=function(t,e,r,n){var i=e&&e.length,a=i?e[0]*r:t.length,o=Math.abs(E(t,0,a,r));if(i)for(var s=0,l=e.length;s<l;s++){var c=e[s]*r,u=s<l-1?e[s+1]*r:t.length;o-=Math.abs(E(t,c,u,r))}var f=0;for(s=0;s<n.length;s+=3){var h=n[s]*r,p=n[s+1]*r,d=n[s+2]*r;f+=Math.abs((t[h]-t[d])*(t[p+1]-t[h+1])-(t[h]-t[p])*(t[d+1]-t[h+1]))}return 0===o&&0===f?0:Math.abs((f-o)/o)},n.flatten=function(t){for(var e=t[0][0].length,r={vertices:[],holes:[],dimensions:e},n=0,i=0;i<t.length;i++){for(var a=0;a<t[i].length;a++)for(var o=0;o<e;o++)r.vertices.push(t[i][a][o]);i>0&&(n+=t[i-1].length,r.holes.push(n))}return r}},{}],178:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=t.length;if(\"number\"!=typeof e){e=0;for(var i=0;i<r;++i){var a=t[i];e=Math.max(e,a[0],a[1])}e=1+(0|e)}e|=0;var o=new Array(e);for(i=0;i<e;++i)o[i]=[];for(i=0;i<r;++i){a=t[i];o[a[0]].push(a[1]),o[a[1]].push(a[0])}for(var s=0;s<e;++s)n(o[s],(function(t,e){return t-e}));return o};var n=t(\"uniq\")},{uniq:597}],179:[function(t,e,r){var n=t(\"strongly-connected-components\");e.exports=function(t,e){var r,i=[],a=[],o=[],s={},l=[];function c(t){var e,n,i=!1;for(a.push(t),o[t]=!0,e=0;e<l[t].length;e++)(n=l[t][e])===r?(u(r,a),i=!0):o[n]||(i=c(n));if(i)!function t(e){o[e]=!1,s.hasOwnProperty(e)&&Object.keys(s[e]).forEach((function(r){delete s[e][r],o[r]&&t(r)}))}(t);else for(e=0;e<l[t].length;e++){n=l[t][e];var f=s[n];f||(f={},s[n]=f),f[n]=!0}return a.pop(),i}function u(t,r){var n=[].concat(r).concat(t);e?e(c):i.push(n)}function f(e){!function(e){for(var r=0;r<t.length;r++)r<e&&(t[r]=[]),t[r]=t[r].filter((function(t){return t>=e}))}(e);for(var r,i=n(t).components.filter((function(t){return t.length>1})),a=1/0,o=0;o<i.length;o++)for(var s=0;s<i[o].length;s++)i[o][s]<a&&(a=i[o][s],r=o);var l=i[r];return!!l&&{leastVertex:a,adjList:t.map((function(t,e){return-1===l.indexOf(e)?[]:t.filter((function(t){return-1!==l.indexOf(t)}))}))}}r=0;for(var h=t.length;r<h;){var p=f(r);if(r=p.leastVertex,l=p.adjList){for(var d=0;d<l.length;d++)for(var g=0;g<l[d].length;g++){var m=l[d][g];o[+m]=!1,s[m]={}}c(r),r+=1}else r=h}return e?void 0:i}},{\"strongly-connected-components\":569}],180:[function(t,e,r){\"use strict\";var n=t(\"../../object/valid-value\");e.exports=function(){return n(this).length=0,this}},{\"../../object/valid-value\":211}],181:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Array.from:t(\"./shim\")},{\"./is-implemented\":182,\"./shim\":183}],182:[function(t,e,r){\"use strict\";e.exports=function(){var t,e,r=Array.from;return\"function\"==typeof r&&(e=r(t=[\"raz\",\"dwa\"]),Boolean(e&&e!==t&&\"dwa\"===e[1]))}},{}],183:[function(t,e,r){\"use strict\";var n=t(\"es6-symbol\").iterator,i=t(\"../../function/is-arguments\"),a=t(\"../../function/is-function\"),o=t(\"../../number/to-pos-integer\"),s=t(\"../../object/valid-callable\"),l=t(\"../../object/valid-value\"),c=t(\"../../object/is-value\"),u=t(\"../../string/is-string\"),f=Array.isArray,h=Function.prototype.call,p={configurable:!0,enumerable:!0,writable:!0,value:null},d=Object.defineProperty;e.exports=function(t){var e,r,g,m,v,y,x,b,_,w,T=arguments[1],k=arguments[2];if(t=Object(l(t)),c(T)&&s(T),this&&this!==Array&&a(this))e=this;else{if(!T){if(i(t))return 1!==(v=t.length)?Array.apply(null,t):((m=new Array(1))[0]=t[0],m);if(f(t)){for(m=new Array(v=t.length),r=0;r<v;++r)m[r]=t[r];return m}}m=[]}if(!f(t))if(void 0!==(_=t[n])){for(x=s(_).call(t),e&&(m=new e),b=x.next(),r=0;!b.done;)w=T?h.call(T,k,b.value,r):b.value,e?(p.value=w,d(m,r,p)):m[r]=w,b=x.next(),++r;v=r}else if(u(t)){for(v=t.length,e&&(m=new e),r=0,g=0;r<v;++r)w=t[r],r+1<v&&(y=w.charCodeAt(0))>=55296&&y<=56319&&(w+=t[++r]),w=T?h.call(T,k,w,g):w,e?(p.value=w,d(m,g,p)):m[g]=w,++g;v=g}if(void 0===v)for(v=o(t.length),e&&(m=new e(v)),r=0;r<v;++r)w=T?h.call(T,k,t[r],r):t[r],e?(p.value=w,d(m,r,p)):m[r]=w;return e&&(p.value=null,m.length=v),m}},{\"../../function/is-arguments\":184,\"../../function/is-function\":185,\"../../number/to-pos-integer\":191,\"../../object/is-value\":200,\"../../object/valid-callable\":209,\"../../object/valid-value\":211,\"../../string/is-string\":215,\"es6-symbol\":225}],184:[function(t,e,r){\"use strict\";var n=Object.prototype.toString,i=n.call(function(){return arguments}());e.exports=function(t){return n.call(t)===i}},{}],185:[function(t,e,r){\"use strict\";var n=Object.prototype.toString,i=RegExp.prototype.test.bind(/^[object [A-Za-z0-9]*Function]$/);e.exports=function(t){return\"function\"==typeof t&&i(n.call(t))}},{}],186:[function(t,e,r){\"use strict\";e.exports=function(){}},{}],187:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Math.sign:t(\"./shim\")},{\"./is-implemented\":188,\"./shim\":189}],188:[function(t,e,r){\"use strict\";e.exports=function(){var t=Math.sign;return\"function\"==typeof t&&(1===t(10)&&-1===t(-20))}},{}],189:[function(t,e,r){\"use strict\";e.exports=function(t){return t=Number(t),isNaN(t)||0===t?t:t>0?1:-1}},{}],190:[function(t,e,r){\"use strict\";var n=t(\"../math/sign\"),i=Math.abs,a=Math.floor;e.exports=function(t){return isNaN(t)?0:0!==(t=Number(t))&&isFinite(t)?n(t)*a(i(t)):t}},{\"../math/sign\":187}],191:[function(t,e,r){\"use strict\";var n=t(\"./to-integer\"),i=Math.max;e.exports=function(t){return i(0,n(t))}},{\"./to-integer\":190}],192:[function(t,e,r){\"use strict\";var n=t(\"./valid-callable\"),i=t(\"./valid-value\"),a=Function.prototype.bind,o=Function.prototype.call,s=Object.keys,l=Object.prototype.propertyIsEnumerable;e.exports=function(t,e){return function(r,c){var u,f=arguments[2],h=arguments[3];return r=Object(i(r)),n(c),u=s(r),h&&u.sort(\"function\"==typeof h?a.call(h,r):void 0),\"function\"!=typeof t&&(t=u[t]),o.call(t,u,(function(t,n){return l.call(r,t)?o.call(c,f,r[t],t,r,n):e}))}}},{\"./valid-callable\":209,\"./valid-value\":211}],193:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Object.assign:t(\"./shim\")},{\"./is-implemented\":194,\"./shim\":195}],194:[function(t,e,r){\"use strict\";e.exports=function(){var t,e=Object.assign;return\"function\"==typeof e&&(e(t={foo:\"raz\"},{bar:\"dwa\"},{trzy:\"trzy\"}),t.foo+t.bar+t.trzy===\"razdwatrzy\")}},{}],195:[function(t,e,r){\"use strict\";var n=t(\"../keys\"),i=t(\"../valid-value\"),a=Math.max;e.exports=function(t,e){var r,o,s,l=a(arguments.length,2);for(t=Object(i(t)),s=function(n){try{t[n]=e[n]}catch(t){r||(r=t)}},o=1;o<l;++o)n(e=arguments[o]).forEach(s);if(void 0!==r)throw r;return t}},{\"../keys\":201,\"../valid-value\":211}],196:[function(t,e,r){\"use strict\";var n=t(\"../array/from\"),i=t(\"./assign\"),a=t(\"./valid-value\");e.exports=function(t){var e=Object(a(t)),r=arguments[1],o=Object(arguments[2]);if(e!==t&&!r)return e;var s={};return r?n(r,(function(e){(o.ensure||e in t)&&(s[e]=t[e])})):i(s,t),s}},{\"../array/from\":181,\"./assign\":193,\"./valid-value\":211}],197:[function(t,e,r){\"use strict\";var n,i,a,o,s=Object.create;t(\"./set-prototype-of/is-implemented\")()||(n=t(\"./set-prototype-of/shim\")),e.exports=n?1!==n.level?s:(i={},a={},o={configurable:!1,enumerable:!1,writable:!0,value:void 0},Object.getOwnPropertyNames(Object.prototype).forEach((function(t){a[t]=\"__proto__\"!==t?o:{configurable:!0,enumerable:!1,writable:!0,value:void 0}})),Object.defineProperties(i,a),Object.defineProperty(n,\"nullPolyfill\",{configurable:!1,enumerable:!1,writable:!1,value:i}),function(t,e){return s(null===t?i:t,e)}):s},{\"./set-prototype-of/is-implemented\":207,\"./set-prototype-of/shim\":208}],198:[function(t,e,r){\"use strict\";e.exports=t(\"./_iterate\")(\"forEach\")},{\"./_iterate\":192}],199:[function(t,e,r){\"use strict\";var n=t(\"./is-value\"),i={function:!0,object:!0};e.exports=function(t){return n(t)&&i[typeof t]||!1}},{\"./is-value\":200}],200:[function(t,e,r){\"use strict\";var n=t(\"../function/noop\")();e.exports=function(t){return t!==n&&null!==t}},{\"../function/noop\":186}],201:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Object.keys:t(\"./shim\")},{\"./is-implemented\":202,\"./shim\":203}],202:[function(t,e,r){\"use strict\";e.exports=function(){try{return Object.keys(\"primitive\"),!0}catch(t){return!1}}},{}],203:[function(t,e,r){\"use strict\";var n=t(\"../is-value\"),i=Object.keys;e.exports=function(t){return i(n(t)?Object(t):t)}},{\"../is-value\":200}],204:[function(t,e,r){\"use strict\";var n=t(\"./valid-callable\"),i=t(\"./for-each\"),a=Function.prototype.call;e.exports=function(t,e){var r={},o=arguments[2];return n(e),i(t,(function(t,n,i,s){r[n]=a.call(e,o,t,n,i,s)})),r}},{\"./for-each\":198,\"./valid-callable\":209}],205:[function(t,e,r){\"use strict\";var n=t(\"./is-value\"),i=Array.prototype.forEach,a=Object.create,o=function(t,e){var r;for(r in t)e[r]=t[r]};e.exports=function(t){var e=a(null);return i.call(arguments,(function(t){n(t)&&o(Object(t),e)})),e}},{\"./is-value\":200}],206:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?Object.setPrototypeOf:t(\"./shim\")},{\"./is-implemented\":207,\"./shim\":208}],207:[function(t,e,r){\"use strict\";var n=Object.create,i=Object.getPrototypeOf,a={};e.exports=function(){var t=Object.setPrototypeOf,e=arguments[0]||n;return\"function\"==typeof t&&i(t(e(null),a))===a}},{}],208:[function(t,e,r){\"use strict\";var n,i=t(\"../is-object\"),a=t(\"../valid-value\"),o=Object.prototype.isPrototypeOf,s=Object.defineProperty,l={configurable:!0,enumerable:!1,writable:!0,value:void 0};n=function(t,e){if(a(t),null===e||i(e))return t;throw new TypeError(\"Prototype must be null or an object\")},e.exports=function(t){var e,r;return t?(2===t.level?t.set?(r=t.set,e=function(t,e){return r.call(n(t,e),e),t}):e=function(t,e){return n(t,e).__proto__=e,t}:e=function t(e,r){var i;return n(e,r),(i=o.call(t.nullPolyfill,e))&&delete t.nullPolyfill.__proto__,null===r&&(r=t.nullPolyfill),e.__proto__=r,i&&s(t.nullPolyfill,\"__proto__\",l),e},Object.defineProperty(e,\"level\",{configurable:!1,enumerable:!1,writable:!1,value:t.level})):null}(function(){var t,e=Object.create(null),r={},n=Object.getOwnPropertyDescriptor(Object.prototype,\"__proto__\");if(n){try{(t=n.set).call(e,r)}catch(t){}if(Object.getPrototypeOf(e)===r)return{set:t,level:2}}return e.__proto__=r,Object.getPrototypeOf(e)===r?{level:2}:((e={}).__proto__=r,Object.getPrototypeOf(e)===r&&{level:1})}()),t(\"../create\")},{\"../create\":197,\"../is-object\":199,\"../valid-value\":211}],209:[function(t,e,r){\"use strict\";e.exports=function(t){if(\"function\"!=typeof t)throw new TypeError(t+\" is not a function\");return t}},{}],210:[function(t,e,r){\"use strict\";var n=t(\"./is-object\");e.exports=function(t){if(!n(t))throw new TypeError(t+\" is not an Object\");return t}},{\"./is-object\":199}],211:[function(t,e,r){\"use strict\";var n=t(\"./is-value\");e.exports=function(t){if(!n(t))throw new TypeError(\"Cannot use null or undefined\");return t}},{\"./is-value\":200}],212:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?String.prototype.contains:t(\"./shim\")},{\"./is-implemented\":213,\"./shim\":214}],213:[function(t,e,r){\"use strict\";var n=\"razdwatrzy\";e.exports=function(){return\"function\"==typeof n.contains&&(!0===n.contains(\"dwa\")&&!1===n.contains(\"foo\"))}},{}],214:[function(t,e,r){\"use strict\";var n=String.prototype.indexOf;e.exports=function(t){return n.call(this,t,arguments[1])>-1}},{}],215:[function(t,e,r){\"use strict\";var n=Object.prototype.toString,i=n.call(\"\");e.exports=function(t){return\"string\"==typeof t||t&&\"object\"==typeof t&&(t instanceof String||n.call(t)===i)||!1}},{}],216:[function(t,e,r){\"use strict\";var n=Object.create(null),i=Math.random;e.exports=function(){var t;do{t=i().toString(36).slice(2)}while(n[t]);return t}},{}],217:[function(t,e,r){\"use strict\";var n,i=t(\"es5-ext/object/set-prototype-of\"),a=t(\"es5-ext/string/#/contains\"),o=t(\"d\"),s=t(\"es6-symbol\"),l=t(\"./\"),c=Object.defineProperty;n=e.exports=function(t,e){if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");l.call(this,t),e=e?a.call(e,\"key+value\")?\"key+value\":a.call(e,\"key\")?\"key\":\"value\":\"value\",c(this,\"__kind__\",o(\"\",e))},i&&i(n,l),delete n.prototype.constructor,n.prototype=Object.create(l.prototype,{_resolve:o((function(t){return\"value\"===this.__kind__?this.__list__[t]:\"key+value\"===this.__kind__?[t,this.__list__[t]]:t}))}),c(n.prototype,s.toStringTag,o(\"c\",\"Array Iterator\"))},{\"./\":220,d:155,\"es5-ext/object/set-prototype-of\":206,\"es5-ext/string/#/contains\":212,\"es6-symbol\":225}],218:[function(t,e,r){\"use strict\";var n=t(\"es5-ext/function/is-arguments\"),i=t(\"es5-ext/object/valid-callable\"),a=t(\"es5-ext/string/is-string\"),o=t(\"./get\"),s=Array.isArray,l=Function.prototype.call,c=Array.prototype.some;e.exports=function(t,e){var r,u,f,h,p,d,g,m,v=arguments[2];if(s(t)||n(t)?r=\"array\":a(t)?r=\"string\":t=o(t),i(e),f=function(){h=!0},\"array\"!==r)if(\"string\"!==r)for(u=t.next();!u.done;){if(l.call(e,v,u.value,f),h)return;u=t.next()}else for(d=t.length,p=0;p<d&&(g=t[p],p+1<d&&(m=g.charCodeAt(0))>=55296&&m<=56319&&(g+=t[++p]),l.call(e,v,g,f),!h);++p);else c.call(t,(function(t){return l.call(e,v,t,f),h}))}},{\"./get\":219,\"es5-ext/function/is-arguments\":184,\"es5-ext/object/valid-callable\":209,\"es5-ext/string/is-string\":215}],219:[function(t,e,r){\"use strict\";var n=t(\"es5-ext/function/is-arguments\"),i=t(\"es5-ext/string/is-string\"),a=t(\"./array\"),o=t(\"./string\"),s=t(\"./valid-iterable\"),l=t(\"es6-symbol\").iterator;e.exports=function(t){return\"function\"==typeof s(t)[l]?t[l]():n(t)?new a(t):i(t)?new o(t):new a(t)}},{\"./array\":217,\"./string\":222,\"./valid-iterable\":223,\"es5-ext/function/is-arguments\":184,\"es5-ext/string/is-string\":215,\"es6-symbol\":225}],220:[function(t,e,r){\"use strict\";var n,i=t(\"es5-ext/array/#/clear\"),a=t(\"es5-ext/object/assign\"),o=t(\"es5-ext/object/valid-callable\"),s=t(\"es5-ext/object/valid-value\"),l=t(\"d\"),c=t(\"d/auto-bind\"),u=t(\"es6-symbol\"),f=Object.defineProperty,h=Object.defineProperties;e.exports=n=function(t,e){if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");h(this,{__list__:l(\"w\",s(t)),__context__:l(\"w\",e),__nextIndex__:l(\"w\",0)}),e&&(o(e.on),e.on(\"_add\",this._onAdd),e.on(\"_delete\",this._onDelete),e.on(\"_clear\",this._onClear))},delete n.prototype.constructor,h(n.prototype,a({_next:l((function(){var t;if(this.__list__)return this.__redo__&&void 0!==(t=this.__redo__.shift())?t:this.__nextIndex__<this.__list__.length?this.__nextIndex__++:void this._unBind()})),next:l((function(){return this._createResult(this._next())})),_createResult:l((function(t){return void 0===t?{done:!0,value:void 0}:{done:!1,value:this._resolve(t)}})),_resolve:l((function(t){return this.__list__[t]})),_unBind:l((function(){this.__list__=null,delete this.__redo__,this.__context__&&(this.__context__.off(\"_add\",this._onAdd),this.__context__.off(\"_delete\",this._onDelete),this.__context__.off(\"_clear\",this._onClear),this.__context__=null)})),toString:l((function(){return\"[object \"+(this[u.toStringTag]||\"Object\")+\"]\"}))},c({_onAdd:l((function(t){t>=this.__nextIndex__||(++this.__nextIndex__,this.__redo__?(this.__redo__.forEach((function(e,r){e>=t&&(this.__redo__[r]=++e)}),this),this.__redo__.push(t)):f(this,\"__redo__\",l(\"c\",[t])))})),_onDelete:l((function(t){var e;t>=this.__nextIndex__||(--this.__nextIndex__,this.__redo__&&(-1!==(e=this.__redo__.indexOf(t))&&this.__redo__.splice(e,1),this.__redo__.forEach((function(e,r){e>t&&(this.__redo__[r]=--e)}),this)))})),_onClear:l((function(){this.__redo__&&i.call(this.__redo__),this.__nextIndex__=0}))}))),f(n.prototype,u.iterator,l((function(){return this})))},{d:155,\"d/auto-bind\":154,\"es5-ext/array/#/clear\":180,\"es5-ext/object/assign\":193,\"es5-ext/object/valid-callable\":209,\"es5-ext/object/valid-value\":211,\"es6-symbol\":225}],221:[function(t,e,r){\"use strict\";var n=t(\"es5-ext/function/is-arguments\"),i=t(\"es5-ext/object/is-value\"),a=t(\"es5-ext/string/is-string\"),o=t(\"es6-symbol\").iterator,s=Array.isArray;e.exports=function(t){return!!i(t)&&(!!s(t)||(!!a(t)||(!!n(t)||\"function\"==typeof t[o])))}},{\"es5-ext/function/is-arguments\":184,\"es5-ext/object/is-value\":200,\"es5-ext/string/is-string\":215,\"es6-symbol\":225}],222:[function(t,e,r){\"use strict\";var n,i=t(\"es5-ext/object/set-prototype-of\"),a=t(\"d\"),o=t(\"es6-symbol\"),s=t(\"./\"),l=Object.defineProperty;n=e.exports=function(t){if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");t=String(t),s.call(this,t),l(this,\"__length__\",a(\"\",t.length))},i&&i(n,s),delete n.prototype.constructor,n.prototype=Object.create(s.prototype,{_next:a((function(){if(this.__list__)return this.__nextIndex__<this.__length__?this.__nextIndex__++:void this._unBind()})),_resolve:a((function(t){var e,r=this.__list__[t];return this.__nextIndex__===this.__length__?r:(e=r.charCodeAt(0))>=55296&&e<=56319?r+this.__list__[this.__nextIndex__++]:r}))}),l(n.prototype,o.toStringTag,a(\"c\",\"String Iterator\"))},{\"./\":220,d:155,\"es5-ext/object/set-prototype-of\":206,\"es6-symbol\":225}],223:[function(t,e,r){\"use strict\";var n=t(\"./is-iterable\");e.exports=function(t){if(!n(t))throw new TypeError(t+\" is not iterable\");return t}},{\"./is-iterable\":221}],224:[function(t,e,r){(function(n,i){(function(){\n",
       "/*!\n",
       " * @overview es6-promise - a tiny implementation of Promises/A+.\n",
       " * @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald)\n",
       " * @license   Licensed under MIT license\n",
       " *            See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE\n",
       " * @version   v4.2.8+1e68dce6\n",
       " */\n",
       "!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?e.exports=n():t.ES6Promise=n()}(this,(function(){\"use strict\";function e(t){return\"function\"==typeof t}var r=Array.isArray?Array.isArray:function(t){return\"[object Array]\"===Object.prototype.toString.call(t)},a=0,o=void 0,s=void 0,l=function(t,e){g[a]=t,g[a+1]=e,2===(a+=2)&&(s?s(m):_())};var c=\"undefined\"!=typeof window?window:void 0,u=c||{},f=u.MutationObserver||u.WebKitMutationObserver,h=\"undefined\"==typeof self&&\"undefined\"!=typeof n&&\"[object process]\"==={}.toString.call(n),p=\"undefined\"!=typeof Uint8ClampedArray&&\"undefined\"!=typeof importScripts&&\"undefined\"!=typeof MessageChannel;function d(){var t=setTimeout;return function(){return t(m,1)}}var g=new Array(1e3);function m(){for(var t=0;t<a;t+=2){(0,g[t])(g[t+1]),g[t]=void 0,g[t+1]=void 0}a=0}var v,y,x,b,_=void 0;function w(t,e){var r=this,n=new this.constructor(M);void 0===n[k]&&D(n);var i=r._state;if(i){var a=arguments[i-1];l((function(){return z(i,n,a,r._result)}))}else I(r,n,t,e);return n}function T(t){if(t&&\"object\"==typeof t&&t.constructor===this)return t;var e=new this(M);return S(e,t),e}h?_=function(){return n.nextTick(m)}:f?(y=0,x=new f(m),b=document.createTextNode(\"\"),x.observe(b,{characterData:!0}),_=function(){b.data=y=++y%2}):p?((v=new MessageChannel).port1.onmessage=m,_=function(){return v.port2.postMessage(0)}):_=void 0===c&&\"function\"==typeof t?function(){try{var t=Function(\"return this\")().require(\"vertx\");return\"undefined\"!=typeof(o=t.runOnLoop||t.runOnContext)?function(){o(m)}:d()}catch(t){return d()}}():d();var k=Math.random().toString(36).substring(2);function M(){}function A(t,r,n){r.constructor===t.constructor&&n===w&&r.constructor.resolve===T?function(t,e){1===e._state?C(t,e._result):2===e._state?L(t,e._result):I(e,void 0,(function(e){return S(t,e)}),(function(e){return L(t,e)}))}(t,r):void 0===n?C(t,r):e(n)?function(t,e,r){l((function(t){var n=!1,i=function(t,e,r,n){try{t.call(e,r,n)}catch(t){return t}}(r,e,(function(r){n||(n=!0,e!==r?S(t,r):C(t,r))}),(function(e){n||(n=!0,L(t,e))}),t._label);!n&&i&&(n=!0,L(t,i))}),t)}(t,r,n):C(t,r)}function S(t,e){if(t===e)L(t,new TypeError(\"You cannot resolve a promise with itself\"));else if(i=typeof(n=e),null===n||\"object\"!==i&&\"function\"!==i)C(t,e);else{var r=void 0;try{r=e.then}catch(e){return void L(t,e)}A(t,e,r)}var n,i}function E(t){t._onerror&&t._onerror(t._result),P(t)}function C(t,e){void 0===t._state&&(t._result=e,t._state=1,0!==t._subscribers.length&&l(P,t))}function L(t,e){void 0===t._state&&(t._state=2,t._result=e,l(E,t))}function I(t,e,r,n){var i=t._subscribers,a=i.length;t._onerror=null,i[a]=e,i[a+1]=r,i[a+2]=n,0===a&&t._state&&l(P,t)}function P(t){var e=t._subscribers,r=t._state;if(0!==e.length){for(var n=void 0,i=void 0,a=t._result,o=0;o<e.length;o+=3)n=e[o],i=e[o+r],n?z(r,n,i,a):i(a);t._subscribers.length=0}}function z(t,r,n,i){var a=e(n),o=void 0,s=void 0,l=!0;if(a){try{o=n(i)}catch(t){l=!1,s=t}if(r===o)return void L(r,new TypeError(\"A promises callback cannot return that same promise.\"))}else o=i;void 0!==r._state||(a&&l?S(r,o):!1===l?L(r,s):1===t?C(r,o):2===t&&L(r,o))}var O=0;function D(t){t[k]=O++,t._state=void 0,t._result=void 0,t._subscribers=[]}var R=function(){function t(t,e){this._instanceConstructor=t,this.promise=new t(M),this.promise[k]||D(this.promise),r(e)?(this.length=e.length,this._remaining=e.length,this._result=new Array(this.length),0===this.length?C(this.promise,this._result):(this.length=this.length||0,this._enumerate(e),0===this._remaining&&C(this.promise,this._result))):L(this.promise,new Error(\"Array Methods must be provided an Array\"))}return t.prototype._enumerate=function(t){for(var e=0;void 0===this._state&&e<t.length;e++)this._eachEntry(t[e],e)},t.prototype._eachEntry=function(t,e){var r=this._instanceConstructor,n=r.resolve;if(n===T){var i=void 0,a=void 0,o=!1;try{i=t.then}catch(t){o=!0,a=t}if(i===w&&void 0!==t._state)this._settledAt(t._state,e,t._result);else if(\"function\"!=typeof i)this._remaining--,this._result[e]=t;else if(r===F){var s=new r(M);o?L(s,a):A(s,t,i),this._willSettleAt(s,e)}else this._willSettleAt(new r((function(e){return e(t)})),e)}else this._willSettleAt(n(t),e)},t.prototype._settledAt=function(t,e,r){var n=this.promise;void 0===n._state&&(this._remaining--,2===t?L(n,r):this._result[e]=r),0===this._remaining&&C(n,this._result)},t.prototype._willSettleAt=function(t,e){var r=this;I(t,void 0,(function(t){return r._settledAt(1,e,t)}),(function(t){return r._settledAt(2,e,t)}))},t}();var F=function(){function t(e){this[k]=O++,this._result=this._state=void 0,this._subscribers=[],M!==e&&(\"function\"!=typeof e&&function(){throw new TypeError(\"You must pass a resolver function as the first argument to the promise constructor\")}(),this instanceof t?function(t,e){try{e((function(e){S(t,e)}),(function(e){L(t,e)}))}catch(e){L(t,e)}}(this,e):function(){throw new TypeError(\"Failed to construct 'Promise': Please use the 'new' operator, this object constructor cannot be called as a function.\")}())}return t.prototype.catch=function(t){return this.then(null,t)},t.prototype.finally=function(t){var r=this.constructor;return e(t)?this.then((function(e){return r.resolve(t()).then((function(){return e}))}),(function(e){return r.resolve(t()).then((function(){throw e}))})):this.then(t,t)},t}();return F.prototype.then=w,F.all=function(t){return new R(this,t).promise},F.race=function(t){var e=this;return r(t)?new e((function(r,n){for(var i=t.length,a=0;a<i;a++)e.resolve(t[a]).then(r,n)})):new e((function(t,e){return e(new TypeError(\"You must pass an array to race.\"))}))},F.resolve=T,F.reject=function(t){var e=new this(M);return L(e,t),e},F._setScheduler=function(t){s=t},F._setAsap=function(t){l=t},F._asap=l,F.polyfill=function(){var t=void 0;if(\"undefined\"!=typeof i)t=i;else if(\"undefined\"!=typeof self)t=self;else try{t=Function(\"return this\")()}catch(t){throw new Error(\"polyfill failed because global object is unavailable in this environment\")}var e=t.Promise;if(e){var r=null;try{r=Object.prototype.toString.call(e.resolve())}catch(t){}if(\"[object Promise]\"===r&&!e.cast)return}t.Promise=F},F.Promise=F,F}))}).call(this)}).call(this,t(\"_process\"),\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{_process:526}],225:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?t(\"ext/global-this\").Symbol:t(\"./polyfill\")},{\"./is-implemented\":226,\"./polyfill\":231,\"ext/global-this\":238}],226:[function(t,e,r){\"use strict\";var n=t(\"ext/global-this\"),i={object:!0,symbol:!0};e.exports=function(){var t,e=n.Symbol;if(\"function\"!=typeof e)return!1;t=e(\"test symbol\");try{String(t)}catch(t){return!1}return!!i[typeof e.iterator]&&(!!i[typeof e.toPrimitive]&&!!i[typeof e.toStringTag])}},{\"ext/global-this\":238}],227:[function(t,e,r){\"use strict\";e.exports=function(t){return!!t&&(\"symbol\"==typeof t||!!t.constructor&&(\"Symbol\"===t.constructor.name&&\"Symbol\"===t[t.constructor.toStringTag]))}},{}],228:[function(t,e,r){\"use strict\";var n=t(\"d\"),i=Object.create,a=Object.defineProperty,o=Object.prototype,s=i(null);e.exports=function(t){for(var e,r,i=0;s[t+(i||\"\")];)++i;return s[t+=i||\"\"]=!0,a(o,e=\"@@\"+t,n.gs(null,(function(t){r||(r=!0,a(this,e,n(t)),r=!1)}))),e}},{d:155}],229:[function(t,e,r){\"use strict\";var n=t(\"d\"),i=t(\"ext/global-this\").Symbol;e.exports=function(t){return Object.defineProperties(t,{hasInstance:n(\"\",i&&i.hasInstance||t(\"hasInstance\")),isConcatSpreadable:n(\"\",i&&i.isConcatSpreadable||t(\"isConcatSpreadable\")),iterator:n(\"\",i&&i.iterator||t(\"iterator\")),match:n(\"\",i&&i.match||t(\"match\")),replace:n(\"\",i&&i.replace||t(\"replace\")),search:n(\"\",i&&i.search||t(\"search\")),species:n(\"\",i&&i.species||t(\"species\")),split:n(\"\",i&&i.split||t(\"split\")),toPrimitive:n(\"\",i&&i.toPrimitive||t(\"toPrimitive\")),toStringTag:n(\"\",i&&i.toStringTag||t(\"toStringTag\")),unscopables:n(\"\",i&&i.unscopables||t(\"unscopables\"))})}},{d:155,\"ext/global-this\":238}],230:[function(t,e,r){\"use strict\";var n=t(\"d\"),i=t(\"../../../validate-symbol\"),a=Object.create(null);e.exports=function(t){return Object.defineProperties(t,{for:n((function(e){return a[e]?a[e]:a[e]=t(String(e))})),keyFor:n((function(t){var e;for(e in i(t),a)if(a[e]===t)return e}))})}},{\"../../../validate-symbol\":232,d:155}],231:[function(t,e,r){\"use strict\";var n,i,a,o=t(\"d\"),s=t(\"./validate-symbol\"),l=t(\"ext/global-this\").Symbol,c=t(\"./lib/private/generate-name\"),u=t(\"./lib/private/setup/standard-symbols\"),f=t(\"./lib/private/setup/symbol-registry\"),h=Object.create,p=Object.defineProperties,d=Object.defineProperty;if(\"function\"==typeof l)try{String(l()),a=!0}catch(t){}else l=null;i=function(t){if(this instanceof i)throw new TypeError(\"Symbol is not a constructor\");return n(t)},e.exports=n=function t(e){var r;if(this instanceof t)throw new TypeError(\"Symbol is not a constructor\");return a?l(e):(r=h(i.prototype),e=void 0===e?\"\":String(e),p(r,{__description__:o(\"\",e),__name__:o(\"\",c(e))}))},u(n),f(n),p(i.prototype,{constructor:o(n),toString:o(\"\",(function(){return this.__name__}))}),p(n.prototype,{toString:o((function(){return\"Symbol (\"+s(this).__description__+\")\"})),valueOf:o((function(){return s(this)}))}),d(n.prototype,n.toPrimitive,o(\"\",(function(){var t=s(this);return\"symbol\"==typeof t?t:t.toString()}))),d(n.prototype,n.toStringTag,o(\"c\",\"Symbol\")),d(i.prototype,n.toStringTag,o(\"c\",n.prototype[n.toStringTag])),d(i.prototype,n.toPrimitive,o(\"c\",n.prototype[n.toPrimitive]))},{\"./lib/private/generate-name\":228,\"./lib/private/setup/standard-symbols\":229,\"./lib/private/setup/symbol-registry\":230,\"./validate-symbol\":232,d:155,\"ext/global-this\":238}],232:[function(t,e,r){\"use strict\";var n=t(\"./is-symbol\");e.exports=function(t){if(!n(t))throw new TypeError(t+\" is not a symbol\");return t}},{\"./is-symbol\":227}],233:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?WeakMap:t(\"./polyfill\")},{\"./is-implemented\":234,\"./polyfill\":236}],234:[function(t,e,r){\"use strict\";e.exports=function(){var t,e;if(\"function\"!=typeof WeakMap)return!1;try{t=new WeakMap([[e={},\"one\"],[{},\"two\"],[{},\"three\"]])}catch(t){return!1}return\"[object WeakMap]\"===String(t)&&(\"function\"==typeof t.set&&(t.set({},1)===t&&(\"function\"==typeof t.delete&&(\"function\"==typeof t.has&&\"one\"===t.get(e)))))}},{}],235:[function(t,e,r){\"use strict\";e.exports=\"function\"==typeof WeakMap&&\"[object WeakMap]\"===Object.prototype.toString.call(new WeakMap)},{}],236:[function(t,e,r){\"use strict\";var n,i=t(\"es5-ext/object/is-value\"),a=t(\"es5-ext/object/set-prototype-of\"),o=t(\"es5-ext/object/valid-object\"),s=t(\"es5-ext/object/valid-value\"),l=t(\"es5-ext/string/random-uniq\"),c=t(\"d\"),u=t(\"es6-iterator/get\"),f=t(\"es6-iterator/for-of\"),h=t(\"es6-symbol\").toStringTag,p=t(\"./is-native-implemented\"),d=Array.isArray,g=Object.defineProperty,m=Object.prototype.hasOwnProperty,v=Object.getPrototypeOf;e.exports=n=function(){var t,e=arguments[0];if(!(this instanceof n))throw new TypeError(\"Constructor requires 'new'\");return t=p&&a&&WeakMap!==n?a(new WeakMap,v(this)):this,i(e)&&(d(e)||(e=u(e))),g(t,\"__weakMapData__\",c(\"c\",\"$weakMap$\"+l())),e?(f(e,(function(e){s(e),t.set(e[0],e[1])})),t):t},p&&(a&&a(n,WeakMap),n.prototype=Object.create(WeakMap.prototype,{constructor:c(n)})),Object.defineProperties(n.prototype,{delete:c((function(t){return!!m.call(o(t),this.__weakMapData__)&&(delete t[this.__weakMapData__],!0)})),get:c((function(t){if(m.call(o(t),this.__weakMapData__))return t[this.__weakMapData__]})),has:c((function(t){return m.call(o(t),this.__weakMapData__)})),set:c((function(t,e){return g(o(t),this.__weakMapData__,c(\"c\",e)),this})),toString:c((function(){return\"[object WeakMap]\"}))}),g(n.prototype,h,c(\"c\",\"WeakMap\"))},{\"./is-native-implemented\":235,d:155,\"es5-ext/object/is-value\":200,\"es5-ext/object/set-prototype-of\":206,\"es5-ext/object/valid-object\":210,\"es5-ext/object/valid-value\":211,\"es5-ext/string/random-uniq\":216,\"es6-iterator/for-of\":218,\"es6-iterator/get\":219,\"es6-symbol\":225}],237:[function(t,e,r){var n=function(){if(\"object\"==typeof self&&self)return self;if(\"object\"==typeof window&&window)return window;throw new Error(\"Unable to resolve global `this`\")};e.exports=function(){if(this)return this;try{Object.defineProperty(Object.prototype,\"__global__\",{get:function(){return this},configurable:!0})}catch(t){return n()}try{return __global__||n()}finally{delete Object.prototype.__global__}}()},{}],238:[function(t,e,r){\"use strict\";e.exports=t(\"./is-implemented\")()?globalThis:t(\"./implementation\")},{\"./implementation\":237,\"./is-implemented\":239}],239:[function(t,e,r){\"use strict\";e.exports=function(){return\"object\"==typeof globalThis&&(!!globalThis&&globalThis.Array===Array)}},{}],240:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n=e||0,i=r||1;return[[t[12]+t[0],t[13]+t[1],t[14]+t[2],t[15]+t[3]],[t[12]-t[0],t[13]-t[1],t[14]-t[2],t[15]-t[3]],[t[12]+t[4],t[13]+t[5],t[14]+t[6],t[15]+t[7]],[t[12]-t[4],t[13]-t[5],t[14]-t[6],t[15]-t[7]],[n*t[12]+t[8],n*t[13]+t[9],n*t[14]+t[10],n*t[15]+t[11]],[i*t[12]-t[8],i*t[13]-t[9],i*t[14]-t[10],i*t[15]-t[11]]]}},{}],241:[function(t,e,r){\"use strict\";var n=t(\"is-string-blank\");e.exports=function(t){var e=typeof t;if(\"string\"===e){var r=t;if(0===(t=+t)&&n(r))return!1}else if(\"number\"!==e)return!1;return t-t<1}},{\"is-string-blank\":470}],242:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){switch(arguments.length){case 0:return new o([0],[0],0);case 1:return\"number\"==typeof t?new o(n=l(t),n,0):new o(t,l(t.length),0);case 2:if(\"number\"==typeof e){var n=l(t.length);return new o(t,n,+e)}r=0;case 3:if(t.length!==e.length)throw new Error(\"state and velocity lengths must match\");return new o(t,e,r)}};var n=t(\"cubic-hermite\"),i=t(\"binary-search-bounds\");function a(t,e,r){return Math.min(e,Math.max(t,r))}function o(t,e,r){this.dimension=t.length,this.bounds=[new Array(this.dimension),new Array(this.dimension)];for(var n=0;n<this.dimension;++n)this.bounds[0][n]=-1/0,this.bounds[1][n]=1/0;this._state=t.slice().reverse(),this._velocity=e.slice().reverse(),this._time=[r],this._scratch=[t.slice(),t.slice(),t.slice(),t.slice(),t.slice()]}var s=o.prototype;function l(t){for(var e=new Array(t),r=0;r<t;++r)e[r]=0;return e}s.flush=function(t){var e=i.gt(this._time,t)-1;e<=0||(this._time.splice(0,e),this._state.splice(0,e*this.dimension),this._velocity.splice(0,e*this.dimension))},s.curve=function(t){var e=this._time,r=e.length,o=i.le(e,t),s=this._scratch[0],l=this._state,c=this._velocity,u=this.dimension,f=this.bounds;if(o<0)for(var h=u-1,p=0;p<u;++p,--h)s[p]=l[h];else if(o>=r-1){h=l.length-1;var d=t-e[r-1];for(p=0;p<u;++p,--h)s[p]=l[h]+d*c[h]}else{h=u*(o+1)-1;var g=e[o],m=e[o+1]-g||1,v=this._scratch[1],y=this._scratch[2],x=this._scratch[3],b=this._scratch[4],_=!0;for(p=0;p<u;++p,--h)v[p]=l[h],x[p]=c[h]*m,y[p]=l[h+u],b[p]=c[h+u]*m,_=_&&v[p]===y[p]&&x[p]===b[p]&&0===x[p];if(_)for(p=0;p<u;++p)s[p]=v[p];else n(v,x,y,b,(t-g)/m,s)}var w=f[0],T=f[1];for(p=0;p<u;++p)s[p]=a(w[p],T[p],s[p]);return s},s.dcurve=function(t){var e=this._time,r=e.length,a=i.le(e,t),o=this._scratch[0],s=this._state,l=this._velocity,c=this.dimension;if(a>=r-1)for(var u=s.length-1,f=(e[r-1],0);f<c;++f,--u)o[f]=l[u];else{u=c*(a+1)-1;var h=e[a],p=e[a+1]-h||1,d=this._scratch[1],g=this._scratch[2],m=this._scratch[3],v=this._scratch[4],y=!0;for(f=0;f<c;++f,--u)d[f]=s[u],m[f]=l[u]*p,g[f]=s[u+c],v[f]=l[u+c]*p,y=y&&d[f]===g[f]&&m[f]===v[f]&&0===m[f];if(y)for(f=0;f<c;++f)o[f]=0;else{n.derivative(d,m,g,v,(t-h)/p,o);for(f=0;f<c;++f)o[f]/=p}}return o},s.lastT=function(){var t=this._time;return t[t.length-1]},s.stable=function(){for(var t=this._velocity,e=t.length,r=this.dimension-1;r>=0;--r)if(t[--e])return!1;return!0},s.jump=function(t){var e=this.lastT(),r=this.dimension;if(!(t<e||arguments.length!==r+1)){var n=this._state,i=this._velocity,o=n.length-this.dimension,s=this.bounds,l=s[0],c=s[1];this._time.push(e,t);for(var u=0;u<2;++u)for(var f=0;f<r;++f)n.push(n[o++]),i.push(0);this._time.push(t);for(f=r;f>0;--f)n.push(a(l[f-1],c[f-1],arguments[f])),i.push(0)}},s.push=function(t){var e=this.lastT(),r=this.dimension;if(!(t<e||arguments.length!==r+1)){var n=this._state,i=this._velocity,o=n.length-this.dimension,s=t-e,l=this.bounds,c=l[0],u=l[1],f=s>1e-6?1/s:0;this._time.push(t);for(var h=r;h>0;--h){var p=a(c[h-1],u[h-1],arguments[h]);n.push(p),i.push((p-n[o++])*f)}}},s.set=function(t){var e=this.dimension;if(!(t<this.lastT()||arguments.length!==e+1)){var r=this._state,n=this._velocity,i=this.bounds,o=i[0],s=i[1];this._time.push(t);for(var l=e;l>0;--l)r.push(a(o[l-1],s[l-1],arguments[l])),n.push(0)}},s.move=function(t){var e=this.lastT(),r=this.dimension;if(!(t<=e||arguments.length!==r+1)){var n=this._state,i=this._velocity,o=n.length-this.dimension,s=this.bounds,l=s[0],c=s[1],u=t-e,f=u>1e-6?1/u:0;this._time.push(t);for(var h=r;h>0;--h){var p=arguments[h];n.push(a(l[h-1],c[h-1],n[o++]+p)),i.push(p*f)}}},s.idle=function(t){var e=this.lastT();if(!(t<e)){var r=this.dimension,n=this._state,i=this._velocity,o=n.length-r,s=this.bounds,l=s[0],c=s[1],u=t-e;this._time.push(t);for(var f=r-1;f>=0;--f)n.push(a(l[f],c[f],n[o]+u*i[o])),i.push(0),o+=1}}},{\"binary-search-bounds\":243,\"cubic-hermite\":150}],243:[function(t,e,r){\"use strict\";function n(t,e,r,n,i,a){var o=[\"function \",t,\"(a,l,h,\",n.join(\",\"),\"){\",a?\"\":\"var i=\",r?\"l-1\":\"h+1\",\";while(l<=h){var m=(l+h)>>>1,x=a\",i?\".get(m)\":\"[m]\"];return a?e.indexOf(\"c\")<0?o.push(\";if(x===y){return m}else if(x<=y){\"):o.push(\";var p=c(x,y);if(p===0){return m}else if(p<=0){\"):o.push(\";if(\",e,\"){i=m;\"),r?o.push(\"l=m+1}else{h=m-1}\"):o.push(\"h=m-1}else{l=m+1}\"),o.push(\"}\"),a?o.push(\"return -1};\"):o.push(\"return i};\"),o.join(\"\")}function i(t,e,r,i){return new Function([n(\"A\",\"x\"+t+\"y\",e,[\"y\"],!1,i),n(\"B\",\"x\"+t+\"y\",e,[\"y\"],!0,i),n(\"P\",\"c(x,y)\"+t+\"0\",e,[\"y\",\"c\"],!1,i),n(\"Q\",\"c(x,y)\"+t+\"0\",e,[\"y\",\"c\"],!0,i),\"function dispatchBsearch\",r,\"(a,y,c,l,h){if(a.shape){if(typeof(c)==='function'){return Q(a,(l===undefined)?0:l|0,(h===undefined)?a.shape[0]-1:h|0,y,c)}else{return B(a,(c===undefined)?0:c|0,(l===undefined)?a.shape[0]-1:l|0,y)}}else{if(typeof(c)==='function'){return P(a,(l===undefined)?0:l|0,(h===undefined)?a.length-1:h|0,y,c)}else{return A(a,(c===undefined)?0:c|0,(l===undefined)?a.length-1:l|0,y)}}}return dispatchBsearch\",r].join(\"\"))()}e.exports={ge:i(\">=\",!1,\"GE\"),gt:i(\">\",!1,\"GT\"),lt:i(\"<\",!0,\"LT\"),le:i(\"<=\",!0,\"LE\"),eq:i(\"-\",!0,\"EQ\",!0)}},{}],244:[function(t,e,r){var n=t(\"dtype\");e.exports=function(t,e,r){if(!t)throw new TypeError(\"must specify data as first parameter\");if(r=0|+(r||0),Array.isArray(t)&&t[0]&&\"number\"==typeof t[0][0]){var i,a,o,s,l=t[0].length,c=t.length*l;e&&\"string\"!=typeof e||(e=new(n(e||\"float32\"))(c+r));var u=e.length-r;if(c!==u)throw new Error(\"source length \"+c+\" (\"+l+\"x\"+t.length+\") does not match destination length \"+u);for(i=0,o=r;i<t.length;i++)for(a=0;a<l;a++)e[o++]=null===t[i][a]?NaN:t[i][a]}else if(e&&\"string\"!=typeof e)e.set(t,r);else{var f=n(e||\"float32\");if(Array.isArray(t)||\"array\"===e)for(e=new f(t.length+r),i=0,o=r,s=e.length;o<s;o++,i++)e[o]=null===t[i]?NaN:t[i];else 0===r?e=new f(t):(e=new f(t.length+r)).set(t,r)}return e}},{dtype:175}],245:[function(t,e,r){\"use strict\";var n=t(\"css-font/stringify\"),i=[32,126];e.exports=function(t){var e=(t=t||{}).shape?t.shape:t.canvas?[t.canvas.width,t.canvas.height]:[512,512],r=t.canvas||document.createElement(\"canvas\"),a=t.font,o=\"number\"==typeof t.step?[t.step,t.step]:t.step||[32,32],s=t.chars||i;a&&\"string\"!=typeof a&&(a=n(a));if(Array.isArray(s)){if(2===s.length&&\"number\"==typeof s[0]&&\"number\"==typeof s[1]){for(var l=[],c=s[0],u=0;c<=s[1];c++)l[u++]=String.fromCharCode(c);s=l}}else s=String(s).split(\"\");e=e.slice(),r.width=e[0],r.height=e[1];var f=r.getContext(\"2d\");f.fillStyle=\"#000\",f.fillRect(0,0,r.width,r.height),f.font=a,f.textAlign=\"center\",f.textBaseline=\"middle\",f.fillStyle=\"#fff\";var h=o[0]/2,p=o[1]/2;for(c=0;c<s.length;c++)f.fillText(s[c],h,p),(h+=o[0])>e[0]-o[0]/2&&(h=o[0]/2,p+=o[1]);return r}},{\"css-font/stringify\":147}],246:[function(t,e,r){\"use strict\";function n(t,e){e||(e={}),(\"string\"==typeof t||Array.isArray(t))&&(e.family=t);var r=Array.isArray(e.family)?e.family.join(\", \"):e.family;if(!r)throw Error(\"`family` must be defined\");var s=e.size||e.fontSize||e.em||48,l=e.weight||e.fontWeight||\"\",c=(t=[e.style||e.fontStyle||\"\",l,s].join(\" \")+\"px \"+r,e.origin||\"top\");if(n.cache[r]&&s<=n.cache[r].em)return i(n.cache[r],c);var u=e.canvas||n.canvas,f=u.getContext(\"2d\"),h={upper:void 0!==e.upper?e.upper:\"H\",lower:void 0!==e.lower?e.lower:\"x\",descent:void 0!==e.descent?e.descent:\"p\",ascent:void 0!==e.ascent?e.ascent:\"h\",tittle:void 0!==e.tittle?e.tittle:\"i\",overshoot:void 0!==e.overshoot?e.overshoot:\"O\"},p=Math.ceil(1.5*s);u.height=p,u.width=.5*p,f.font=t;var d={top:0};f.clearRect(0,0,p,p),f.textBaseline=\"top\",f.fillStyle=\"black\",f.fillText(\"H\",0,0);var g=a(f.getImageData(0,0,p,p));f.clearRect(0,0,p,p),f.textBaseline=\"bottom\",f.fillText(\"H\",0,p);var m=a(f.getImageData(0,0,p,p));d.lineHeight=d.bottom=p-m+g,f.clearRect(0,0,p,p),f.textBaseline=\"alphabetic\",f.fillText(\"H\",0,p);var v=p-a(f.getImageData(0,0,p,p))-1+g;d.baseline=d.alphabetic=v,f.clearRect(0,0,p,p),f.textBaseline=\"middle\",f.fillText(\"H\",0,.5*p);var y=a(f.getImageData(0,0,p,p));d.median=d.middle=p-y-1+g-.5*p,f.clearRect(0,0,p,p),f.textBaseline=\"hanging\",f.fillText(\"H\",0,.5*p);var x=a(f.getImageData(0,0,p,p));d.hanging=p-x-1+g-.5*p,f.clearRect(0,0,p,p),f.textBaseline=\"ideographic\",f.fillText(\"H\",0,p);var b=a(f.getImageData(0,0,p,p));if(d.ideographic=p-b-1+g,h.upper&&(f.clearRect(0,0,p,p),f.textBaseline=\"top\",f.fillText(h.upper,0,0),d.upper=a(f.getImageData(0,0,p,p)),d.capHeight=d.baseline-d.upper),h.lower&&(f.clearRect(0,0,p,p),f.textBaseline=\"top\",f.fillText(h.lower,0,0),d.lower=a(f.getImageData(0,0,p,p)),d.xHeight=d.baseline-d.lower),h.tittle&&(f.clearRect(0,0,p,p),f.textBaseline=\"top\",f.fillText(h.tittle,0,0),d.tittle=a(f.getImageData(0,0,p,p))),h.ascent&&(f.clearRect(0,0,p,p),f.textBaseline=\"top\",f.fillText(h.ascent,0,0),d.ascent=a(f.getImageData(0,0,p,p))),h.descent&&(f.clearRect(0,0,p,p),f.textBaseline=\"top\",f.fillText(h.descent,0,0),d.descent=o(f.getImageData(0,0,p,p))),h.overshoot){f.clearRect(0,0,p,p),f.textBaseline=\"top\",f.fillText(h.overshoot,0,0);var _=o(f.getImageData(0,0,p,p));d.overshoot=_-v}for(var w in d)d[w]/=s;return d.em=s,n.cache[r]=d,i(d,c)}function i(t,e){var r={};for(var n in\"string\"==typeof e&&(e=t[e]),t)\"em\"!==n&&(r[n]=t[n]-e);return r}function a(t){for(var e=t.height,r=t.data,n=3;n<r.length;n+=4)if(0!==r[n])return Math.floor(.25*(n-3)/e)}function o(t){for(var e=t.height,r=t.data,n=r.length-1;n>0;n-=4)if(0!==r[n])return Math.floor(.25*(n-3)/e)}e.exports=n,n.canvas=document.createElement(\"canvas\"),n.cache={}},{}],247:[function(t,e,r){\"use strict\";e.exports=function(t){return new s(t||g,null)};function n(t,e,r,n,i,a){this._color=t,this.key=e,this.value=r,this.left=n,this.right=i,this._count=a}function i(t){return new n(t._color,t.key,t.value,t.left,t.right,t._count)}function a(t,e){return new n(t,e.key,e.value,e.left,e.right,e._count)}function o(t){t._count=1+(t.left?t.left._count:0)+(t.right?t.right._count:0)}function s(t,e){this._compare=t,this.root=e}var l=s.prototype;function c(t,e){var r;if(e.left&&(r=c(t,e.left)))return r;return(r=t(e.key,e.value))||(e.right?c(t,e.right):void 0)}function u(t,e,r,n){if(e(t,n.key)<=0){var i;if(n.left)if(i=u(t,e,r,n.left))return i;if(i=r(n.key,n.value))return i}if(n.right)return u(t,e,r,n.right)}function f(t,e,r,n,i){var a,o=r(t,i.key),s=r(e,i.key);if(o<=0){if(i.left&&(a=f(t,e,r,n,i.left)))return a;if(s>0&&(a=n(i.key,i.value)))return a}if(s>0&&i.right)return f(t,e,r,n,i.right)}function h(t,e){this.tree=t,this._stack=e}Object.defineProperty(l,\"keys\",{get:function(){var t=[];return this.forEach((function(e,r){t.push(e)})),t}}),Object.defineProperty(l,\"values\",{get:function(){var t=[];return this.forEach((function(e,r){t.push(r)})),t}}),Object.defineProperty(l,\"length\",{get:function(){return this.root?this.root._count:0}}),l.insert=function(t,e){for(var r=this._compare,i=this.root,l=[],c=[];i;){var u=r(t,i.key);l.push(i),c.push(u),i=u<=0?i.left:i.right}l.push(new n(0,t,e,null,null,1));for(var f=l.length-2;f>=0;--f){i=l[f];c[f]<=0?l[f]=new n(i._color,i.key,i.value,l[f+1],i.right,i._count+1):l[f]=new n(i._color,i.key,i.value,i.left,l[f+1],i._count+1)}for(f=l.length-1;f>1;--f){var h=l[f-1];i=l[f];if(1===h._color||1===i._color)break;var p=l[f-2];if(p.left===h)if(h.left===i){if(!(d=p.right)||0!==d._color){if(p._color=0,p.left=h.right,h._color=1,h.right=p,l[f-2]=h,l[f-1]=i,o(p),o(h),f>=3)(g=l[f-3]).left===p?g.left=h:g.right=h;break}h._color=1,p.right=a(1,d),p._color=0,f-=1}else{if(!(d=p.right)||0!==d._color){if(h.right=i.left,p._color=0,p.left=i.right,i._color=1,i.left=h,i.right=p,l[f-2]=i,l[f-1]=h,o(p),o(h),o(i),f>=3)(g=l[f-3]).left===p?g.left=i:g.right=i;break}h._color=1,p.right=a(1,d),p._color=0,f-=1}else if(h.right===i){if(!(d=p.left)||0!==d._color){if(p._color=0,p.right=h.left,h._color=1,h.left=p,l[f-2]=h,l[f-1]=i,o(p),o(h),f>=3)(g=l[f-3]).right===p?g.right=h:g.left=h;break}h._color=1,p.left=a(1,d),p._color=0,f-=1}else{var d;if(!(d=p.left)||0!==d._color){var g;if(h.left=i.right,p._color=0,p.right=i.left,i._color=1,i.right=h,i.left=p,l[f-2]=i,l[f-1]=h,o(p),o(h),o(i),f>=3)(g=l[f-3]).right===p?g.right=i:g.left=i;break}h._color=1,p.left=a(1,d),p._color=0,f-=1}}return l[0]._color=1,new s(r,l[0])},l.forEach=function(t,e,r){if(this.root)switch(arguments.length){case 1:return c(t,this.root);case 2:return u(e,this._compare,t,this.root);case 3:if(this._compare(e,r)>=0)return;return f(e,r,this._compare,t,this.root)}},Object.defineProperty(l,\"begin\",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.left;return new h(this,t)}}),Object.defineProperty(l,\"end\",{get:function(){for(var t=[],e=this.root;e;)t.push(e),e=e.right;return new h(this,t)}}),l.at=function(t){if(t<0)return new h(this,[]);for(var e=this.root,r=[];;){if(r.push(e),e.left){if(t<e.left._count){e=e.left;continue}t-=e.left._count}if(!t)return new h(this,r);if(t-=1,!e.right)break;if(t>=e.right._count)break;e=e.right}return new h(this,[])},l.ge=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a<=0&&(i=n.length),r=a<=0?r.left:r.right}return n.length=i,new h(this,n)},l.gt=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a<0&&(i=n.length),r=a<0?r.left:r.right}return n.length=i,new h(this,n)},l.lt=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a>0&&(i=n.length),r=a<=0?r.left:r.right}return n.length=i,new h(this,n)},l.le=function(t){for(var e=this._compare,r=this.root,n=[],i=0;r;){var a=e(t,r.key);n.push(r),a>=0&&(i=n.length),r=a<0?r.left:r.right}return n.length=i,new h(this,n)},l.find=function(t){for(var e=this._compare,r=this.root,n=[];r;){var i=e(t,r.key);if(n.push(r),0===i)return new h(this,n);r=i<=0?r.left:r.right}return new h(this,[])},l.remove=function(t){var e=this.find(t);return e?e.remove():this},l.get=function(t){for(var e=this._compare,r=this.root;r;){var n=e(t,r.key);if(0===n)return r.value;r=n<=0?r.left:r.right}};var p=h.prototype;function d(t,e){t.key=e.key,t.value=e.value,t.left=e.left,t.right=e.right,t._color=e._color,t._count=e._count}function g(t,e){return t<e?-1:t>e?1:0}Object.defineProperty(p,\"valid\",{get:function(){return this._stack.length>0}}),Object.defineProperty(p,\"node\",{get:function(){return this._stack.length>0?this._stack[this._stack.length-1]:null},enumerable:!0}),p.clone=function(){return new h(this.tree,this._stack.slice())},p.remove=function(){var t=this._stack;if(0===t.length)return this.tree;var e=new Array(t.length),r=t[t.length-1];e[e.length-1]=new n(r._color,r.key,r.value,r.left,r.right,r._count);for(var l=t.length-2;l>=0;--l){(r=t[l]).left===t[l+1]?e[l]=new n(r._color,r.key,r.value,e[l+1],r.right,r._count):e[l]=new n(r._color,r.key,r.value,r.left,e[l+1],r._count)}if((r=e[e.length-1]).left&&r.right){var c=e.length;for(r=r.left;r.right;)e.push(r),r=r.right;var u=e[c-1];e.push(new n(r._color,u.key,u.value,r.left,r.right,r._count)),e[c-1].key=r.key,e[c-1].value=r.value;for(l=e.length-2;l>=c;--l)r=e[l],e[l]=new n(r._color,r.key,r.value,r.left,e[l+1],r._count);e[c-1].left=e[c]}if(0===(r=e[e.length-1])._color){var f=e[e.length-2];f.left===r?f.left=null:f.right===r&&(f.right=null),e.pop();for(l=0;l<e.length;++l)e[l]._count--;return new s(this.tree._compare,e[0])}if(r.left||r.right){r.left?d(r,r.left):r.right&&d(r,r.right),r._color=1;for(l=0;l<e.length-1;++l)e[l]._count--;return new s(this.tree._compare,e[0])}if(1===e.length)return new s(this.tree._compare,null);for(l=0;l<e.length;++l)e[l]._count--;var h=e[e.length-2];return function(t){for(var e,r,n,s,l=t.length-1;l>=0;--l){if(e=t[l],0===l)return void(e._color=1);if((r=t[l-1]).left===e){if((n=r.right).right&&0===n.right._color){if(s=(n=r.right=i(n)).right=i(n.right),r.right=n.left,n.left=r,n.right=s,n._color=r._color,e._color=1,r._color=1,s._color=1,o(r),o(n),l>1)(c=t[l-2]).left===r?c.left=n:c.right=n;return void(t[l-1]=n)}if(n.left&&0===n.left._color){if(s=(n=r.right=i(n)).left=i(n.left),r.right=s.left,n.left=s.right,s.left=r,s.right=n,s._color=r._color,r._color=1,n._color=1,e._color=1,o(r),o(n),o(s),l>1)(c=t[l-2]).left===r?c.left=s:c.right=s;return void(t[l-1]=s)}if(1===n._color){if(0===r._color)return r._color=1,void(r.right=a(0,n));r.right=a(0,n);continue}n=i(n),r.right=n.left,n.left=r,n._color=r._color,r._color=0,o(r),o(n),l>1&&((c=t[l-2]).left===r?c.left=n:c.right=n),t[l-1]=n,t[l]=r,l+1<t.length?t[l+1]=e:t.push(e),l+=2}else{if((n=r.left).left&&0===n.left._color){if(s=(n=r.left=i(n)).left=i(n.left),r.left=n.right,n.right=r,n.left=s,n._color=r._color,e._color=1,r._color=1,s._color=1,o(r),o(n),l>1)(c=t[l-2]).right===r?c.right=n:c.left=n;return void(t[l-1]=n)}if(n.right&&0===n.right._color){if(s=(n=r.left=i(n)).right=i(n.right),r.left=s.right,n.right=s.left,s.right=r,s.left=n,s._color=r._color,r._color=1,n._color=1,e._color=1,o(r),o(n),o(s),l>1)(c=t[l-2]).right===r?c.right=s:c.left=s;return void(t[l-1]=s)}if(1===n._color){if(0===r._color)return r._color=1,void(r.left=a(0,n));r.left=a(0,n);continue}var c;n=i(n),r.left=n.right,n.right=r,n._color=r._color,r._color=0,o(r),o(n),l>1&&((c=t[l-2]).right===r?c.right=n:c.left=n),t[l-1]=n,t[l]=r,l+1<t.length?t[l+1]=e:t.push(e),l+=2}}}(e),h.left===r?h.left=null:h.right=null,new s(this.tree._compare,e[0])},Object.defineProperty(p,\"key\",{get:function(){if(this._stack.length>0)return this._stack[this._stack.length-1].key},enumerable:!0}),Object.defineProperty(p,\"value\",{get:function(){if(this._stack.length>0)return this._stack[this._stack.length-1].value},enumerable:!0}),Object.defineProperty(p,\"index\",{get:function(){var t=0,e=this._stack;if(0===e.length){var r=this.tree.root;return r?r._count:0}e[e.length-1].left&&(t=e[e.length-1].left._count);for(var n=e.length-2;n>=0;--n)e[n+1]===e[n].right&&(++t,e[n].left&&(t+=e[n].left._count));return t},enumerable:!0}),p.next=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.right)for(e=e.right;e;)t.push(e),e=e.left;else for(t.pop();t.length>0&&t[t.length-1].right===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(p,\"hasNext\",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].right)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].left===t[e])return!0;return!1}}),p.update=function(t){var e=this._stack;if(0===e.length)throw new Error(\"Can't update empty node!\");var r=new Array(e.length),i=e[e.length-1];r[r.length-1]=new n(i._color,i.key,t,i.left,i.right,i._count);for(var a=e.length-2;a>=0;--a)(i=e[a]).left===e[a+1]?r[a]=new n(i._color,i.key,i.value,r[a+1],i.right,i._count):r[a]=new n(i._color,i.key,i.value,i.left,r[a+1],i._count);return new s(this.tree._compare,r[0])},p.prev=function(){var t=this._stack;if(0!==t.length){var e=t[t.length-1];if(e.left)for(e=e.left;e;)t.push(e),e=e.right;else for(t.pop();t.length>0&&t[t.length-1].left===e;)e=t[t.length-1],t.pop()}},Object.defineProperty(p,\"hasPrev\",{get:function(){var t=this._stack;if(0===t.length)return!1;if(t[t.length-1].left)return!0;for(var e=t.length-1;e>0;--e)if(t[e-1].right===t[e])return!0;return!1}})},{}],248:[function(t,e,r){var n=[.9999999999998099,676.5203681218851,-1259.1392167224028,771.3234287776531,-176.6150291621406,12.507343278686905,-.13857109526572012,9984369578019572e-21,1.5056327351493116e-7],i=[.9999999999999971,57.15623566586292,-59.59796035547549,14.136097974741746,-.4919138160976202,3399464998481189e-20,4652362892704858e-20,-9837447530487956e-20,.0001580887032249125,-.00021026444172410488,.00021743961811521265,-.0001643181065367639,8441822398385275e-20,-26190838401581408e-21,36899182659531625e-22];function a(t){if(t<0)return Number(\"0/0\");for(var e=i[0],r=i.length-1;r>0;--r)e+=i[r]/(t+r);var n=t+607/128+.5;return.5*Math.log(2*Math.PI)+(t+.5)*Math.log(n)-n+Math.log(e)-Math.log(t)}e.exports=function t(e){if(e<.5)return Math.PI/(Math.sin(Math.PI*e)*t(1-e));if(e>100)return Math.exp(a(e));e-=1;for(var r=n[0],i=1;i<9;i++)r+=n[i]/(e+i);var o=e+7+.5;return Math.sqrt(2*Math.PI)*Math.pow(o,e+.5)*Math.exp(-o)*r},e.exports.log=a},{}],249:[function(t,e,r){e.exports=function(t,e){if(\"string\"!=typeof t)throw new TypeError(\"must specify type string\");if(e=e||{},\"undefined\"==typeof document&&!e.canvas)return null;var r=e.canvas||document.createElement(\"canvas\");\"number\"==typeof e.width&&(r.width=e.width);\"number\"==typeof e.height&&(r.height=e.height);var n,i=e;try{var a=[t];0===t.indexOf(\"webgl\")&&a.push(\"experimental-\"+t);for(var o=0;o<a.length;o++)if(n=r.getContext(a[o],i))return n}catch(t){n=null}return n||null}},{}],250:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=new u(t);return r.update(e),r};var n=t(\"./lib/text.js\"),i=t(\"./lib/lines.js\"),a=t(\"./lib/background.js\"),o=t(\"./lib/cube.js\"),s=t(\"./lib/ticks.js\"),l=new Float32Array([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]);function c(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}function u(t){this.gl=t,this.pixelRatio=1,this.bounds=[[-10,-10,-10],[10,10,10]],this.ticks=[[],[],[]],this.autoTicks=!0,this.tickSpacing=[1,1,1],this.tickEnable=[!0,!0,!0],this.tickFont=[\"sans-serif\",\"sans-serif\",\"sans-serif\"],this.tickSize=[12,12,12],this.tickAngle=[0,0,0],this.tickAlign=[\"auto\",\"auto\",\"auto\"],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[10,10,10],this.lastCubeProps={cubeEdges:[0,0,0],axis:[0,0,0]},this.labels=[\"x\",\"y\",\"z\"],this.labelEnable=[!0,!0,!0],this.labelFont=\"sans-serif\",this.labelSize=[20,20,20],this.labelAngle=[0,0,0],this.labelAlign=[\"auto\",\"auto\",\"auto\"],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[10,10,10],this.lineEnable=[!0,!0,!0],this.lineMirror=[!1,!1,!1],this.lineWidth=[1,1,1],this.lineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.lineTickEnable=[!0,!0,!0],this.lineTickMirror=[!1,!1,!1],this.lineTickLength=[0,0,0],this.lineTickWidth=[1,1,1],this.lineTickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.gridEnable=[!0,!0,!0],this.gridWidth=[1,1,1],this.gridColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroEnable=[!0,!0,!0],this.zeroLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroLineWidth=[2,2,2],this.backgroundEnable=[!1,!1,!1],this.backgroundColor=[[.8,.8,.8,.5],[.8,.8,.8,.5],[.8,.8,.8,.5]],this._firstInit=!0,this._text=null,this._lines=null,this._background=a(t)}var f=u.prototype;function h(){this.primalOffset=[0,0,0],this.primalMinor=[0,0,0],this.mirrorOffset=[0,0,0],this.mirrorMinor=[0,0,0]}f.update=function(t){function e(e,r,n){if(n in t){var i,a=t[n],o=this[n];(e?Array.isArray(a)&&Array.isArray(a[0]):Array.isArray(a))?this[n]=i=[r(a[0]),r(a[1]),r(a[2])]:this[n]=i=[r(a),r(a),r(a)];for(var s=0;s<3;++s)if(i[s]!==o[s])return!0}return!1}t=t||{};var r,a=e.bind(this,!1,Number),o=e.bind(this,!1,Boolean),l=e.bind(this,!1,String),c=e.bind(this,!0,(function(t){if(Array.isArray(t)){if(3===t.length)return[+t[0],+t[1],+t[2],1];if(4===t.length)return[+t[0],+t[1],+t[2],+t[3]]}return[0,0,0,1]})),u=!1,f=!1;if(\"bounds\"in t)for(var h=t.bounds,p=0;p<2;++p)for(var d=0;d<3;++d)h[p][d]!==this.bounds[p][d]&&(f=!0),this.bounds[p][d]=h[p][d];if(\"ticks\"in t){r=t.ticks,u=!0,this.autoTicks=!1;for(p=0;p<3;++p)this.tickSpacing[p]=0}else a(\"tickSpacing\")&&(this.autoTicks=!0,f=!0);if(this._firstInit&&(\"ticks\"in t||\"tickSpacing\"in t||(this.autoTicks=!0),f=!0,u=!0,this._firstInit=!1),f&&this.autoTicks&&(r=s.create(this.bounds,this.tickSpacing),u=!0),u){for(p=0;p<3;++p)r[p].sort((function(t,e){return t.x-e.x}));s.equal(r,this.ticks)?u=!1:this.ticks=r}o(\"tickEnable\"),l(\"tickFont\")&&(u=!0),a(\"tickSize\"),a(\"tickAngle\"),a(\"tickPad\"),c(\"tickColor\");var g=l(\"labels\");l(\"labelFont\")&&(g=!0),o(\"labelEnable\"),a(\"labelSize\"),a(\"labelPad\"),c(\"labelColor\"),o(\"lineEnable\"),o(\"lineMirror\"),a(\"lineWidth\"),c(\"lineColor\"),o(\"lineTickEnable\"),o(\"lineTickMirror\"),a(\"lineTickLength\"),a(\"lineTickWidth\"),c(\"lineTickColor\"),o(\"gridEnable\"),a(\"gridWidth\"),c(\"gridColor\"),o(\"zeroEnable\"),c(\"zeroLineColor\"),a(\"zeroLineWidth\"),o(\"backgroundEnable\"),c(\"backgroundColor\"),this._text?this._text&&(g||u)&&this._text.update(this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont):this._text=n(this.gl,this.bounds,this.labels,this.labelFont,this.ticks,this.tickFont),this._lines&&u&&(this._lines.dispose(),this._lines=null),this._lines||(this._lines=i(this.gl,this.bounds,this.ticks))};var p=[new h,new h,new h];function d(t,e,r,n,i){for(var a=t.primalOffset,o=t.primalMinor,s=t.mirrorOffset,l=t.mirrorMinor,c=n[e],u=0;u<3;++u)if(e!==u){var f=a,h=s,p=o,d=l;c&1<<u&&(f=s,h=a,p=l,d=o),f[u]=r[0][u],h[u]=r[1][u],i[u]>0?(p[u]=-1,d[u]=0):(p[u]=0,d[u]=1)}}var g=[0,0,0],m={model:l,view:l,projection:l,_ortho:!1};f.isOpaque=function(){return!0},f.isTransparent=function(){return!1},f.drawTransparent=function(t){};var v=[0,0,0],y=[0,0,0],x=[0,0,0];f.draw=function(t){t=t||m;for(var e=this.gl,r=t.model||l,n=t.view||l,i=t.projection||l,a=this.bounds,s=t._ortho||!1,u=o(r,n,i,a,s),f=u.cubeEdges,h=u.axis,b=n[12],_=n[13],w=n[14],T=n[15],k=(s?2:1)*this.pixelRatio*(i[3]*b+i[7]*_+i[11]*w+i[15]*T)/e.drawingBufferHeight,M=0;M<3;++M)this.lastCubeProps.cubeEdges[M]=f[M],this.lastCubeProps.axis[M]=h[M];var A=p;for(M=0;M<3;++M)d(p[M],M,this.bounds,f,h);e=this.gl;var S,E=g;for(M=0;M<3;++M)this.backgroundEnable[M]?E[M]=h[M]:E[M]=0;this._background.draw(r,n,i,a,E,this.backgroundColor),this._lines.bind(r,n,i,this);for(M=0;M<3;++M){var C=[0,0,0];h[M]>0?C[M]=a[1][M]:C[M]=a[0][M];for(var L=0;L<2;++L){var I=(M+1+L)%3,P=(M+1+(1^L))%3;this.gridEnable[I]&&this._lines.drawGrid(I,P,this.bounds,C,this.gridColor[I],this.gridWidth[I]*this.pixelRatio)}for(L=0;L<2;++L){I=(M+1+L)%3,P=(M+1+(1^L))%3;this.zeroEnable[P]&&Math.min(a[0][P],a[1][P])<=0&&Math.max(a[0][P],a[1][P])>=0&&this._lines.drawZero(I,P,this.bounds,C,this.zeroLineColor[P],this.zeroLineWidth[P]*this.pixelRatio)}}for(M=0;M<3;++M){this.lineEnable[M]&&this._lines.drawAxisLine(M,this.bounds,A[M].primalOffset,this.lineColor[M],this.lineWidth[M]*this.pixelRatio),this.lineMirror[M]&&this._lines.drawAxisLine(M,this.bounds,A[M].mirrorOffset,this.lineColor[M],this.lineWidth[M]*this.pixelRatio);var z=c(v,A[M].primalMinor),O=c(y,A[M].mirrorMinor),D=this.lineTickLength;for(L=0;L<3;++L){var R=k/r[5*L];z[L]*=D[L]*R,O[L]*=D[L]*R}this.lineTickEnable[M]&&this._lines.drawAxisTicks(M,A[M].primalOffset,z,this.lineTickColor[M],this.lineTickWidth[M]*this.pixelRatio),this.lineTickMirror[M]&&this._lines.drawAxisTicks(M,A[M].mirrorOffset,O,this.lineTickColor[M],this.lineTickWidth[M]*this.pixelRatio)}this._lines.unbind(),this._text.bind(r,n,i,this.pixelRatio);var F,B;function N(t){(B=[0,0,0])[t]=1}function j(t,e,r){var n=(t+1)%3,i=(t+2)%3,a=e[n],o=e[i],s=r[n],l=r[i];a>0&&l>0||a>0&&l<0||a<0&&l>0||a<0&&l<0?N(n):(o>0&&s>0||o>0&&s<0||o<0&&s>0||o<0&&s<0)&&N(i)}for(M=0;M<3;++M){var U=A[M].primalMinor,V=A[M].mirrorMinor,q=c(x,A[M].primalOffset);for(L=0;L<3;++L)this.lineTickEnable[M]&&(q[L]+=k*U[L]*Math.max(this.lineTickLength[L],0)/r[5*L]);var H=[0,0,0];if(H[M]=1,this.tickEnable[M]){-3600===this.tickAngle[M]?(this.tickAngle[M]=0,this.tickAlign[M]=\"auto\"):this.tickAlign[M]=-1,F=1,\"auto\"===(S=[this.tickAlign[M],.5,F])[0]?S[0]=0:S[0]=parseInt(\"\"+S[0]),B=[0,0,0],j(M,U,V);for(L=0;L<3;++L)q[L]+=k*U[L]*this.tickPad[L]/r[5*L];this._text.drawTicks(M,this.tickSize[M],this.tickAngle[M],q,this.tickColor[M],H,B,S)}if(this.labelEnable[M]){F=0,B=[0,0,0],this.labels[M].length>4&&(N(M),F=1),\"auto\"===(S=[this.labelAlign[M],.5,F])[0]?S[0]=0:S[0]=parseInt(\"\"+S[0]);for(L=0;L<3;++L)q[L]+=k*U[L]*this.labelPad[L]/r[5*L];q[M]+=.5*(a[0][M]+a[1][M]),this._text.drawLabel(M,this.labelSize[M],this.labelAngle[M],q,this.labelColor[M],[0,0,0],B,S)}}this._text.unbind()},f.dispose=function(){this._text.dispose(),this._lines.dispose(),this._background.dispose(),this._lines=null,this._text=null,this._background=null,this.gl=null}},{\"./lib/background.js\":251,\"./lib/cube.js\":252,\"./lib/lines.js\":253,\"./lib/text.js\":255,\"./lib/ticks.js\":256}],251:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=[],r=[],s=0,l=0;l<3;++l)for(var c=(l+1)%3,u=(l+2)%3,f=[0,0,0],h=[0,0,0],p=-1;p<=1;p+=2){r.push(s,s+2,s+1,s+1,s+2,s+3),f[l]=p,h[l]=p;for(var d=-1;d<=1;d+=2){f[c]=d;for(var g=-1;g<=1;g+=2)f[u]=g,e.push(f[0],f[1],f[2],h[0],h[1],h[2]),s+=1}var m=c;c=u,u=m}var v=n(t,new Float32Array(e)),y=n(t,new Uint16Array(r),t.ELEMENT_ARRAY_BUFFER),x=i(t,[{buffer:v,type:t.FLOAT,size:3,offset:0,stride:24},{buffer:v,type:t.FLOAT,size:3,offset:12,stride:24}],y),b=a(t);return b.attributes.position.location=0,b.attributes.normal.location=1,new o(t,v,x,b)};var n=t(\"gl-buffer\"),i=t(\"gl-vao\"),a=t(\"./shaders\").bg;function o(t,e,r,n){this.gl=t,this.buffer=e,this.vao=r,this.shader=n}var s=o.prototype;s.draw=function(t,e,r,n,i,a){for(var o=!1,s=0;s<3;++s)o=o||i[s];if(o){var l=this.gl;l.enable(l.POLYGON_OFFSET_FILL),l.polygonOffset(1,2),this.shader.bind(),this.shader.uniforms={model:t,view:e,projection:r,bounds:n,enable:i,colors:a},this.vao.bind(),this.vao.draw(this.gl.TRIANGLES,36),this.vao.unbind(),l.disable(l.POLYGON_OFFSET_FILL)}},s.dispose=function(){this.vao.dispose(),this.buffer.dispose(),this.shader.dispose()}},{\"./shaders\":254,\"gl-buffer\":259,\"gl-vao\":358}],252:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,a,p){i(s,e,t),i(s,r,s);for(var y=0,x=0;x<2;++x){u[2]=a[x][2];for(var b=0;b<2;++b){u[1]=a[b][1];for(var _=0;_<2;++_)u[0]=a[_][0],h(l[y],u,s),y+=1}}var w=-1;for(x=0;x<8;++x){for(var T=l[x][3],k=0;k<3;++k)c[x][k]=l[x][k]/T;p&&(c[x][2]*=-1),T<0&&(w<0||c[x][2]<c[w][2])&&(w=x)}if(w<0){w=0;for(var M=0;M<3;++M){for(var A=(M+2)%3,S=(M+1)%3,E=-1,C=-1,L=0;L<2;++L){var I=(z=L<<M)+(L<<A)+(1-L<<S),P=z+(1-L<<A)+(L<<S);o(c[z],c[I],c[P],f)<0||(L?E=1:C=1)}if(E<0||C<0)C>E&&(w|=1<<M);else{for(L=0;L<2;++L){I=(z=L<<M)+(L<<A)+(1-L<<S),P=z+(1-L<<A)+(L<<S);var z,O=d([l[z],l[I],l[P],l[z+(1<<A)+(1<<S)]]);L?E=O:C=O}C>E&&(w|=1<<M)}}}var D=7^w,R=-1;for(x=0;x<8;++x)x!==w&&x!==D&&(R<0||c[R][1]>c[x][1])&&(R=x);var F=-1;for(x=0;x<3;++x){if((N=R^1<<x)!==w&&N!==D)F<0&&(F=N),(S=c[N])[0]<c[F][0]&&(F=N)}var B=-1;for(x=0;x<3;++x){var N;if((N=R^1<<x)!==w&&N!==D&&N!==F)B<0&&(B=N),(S=c[N])[0]>c[B][0]&&(B=N)}var j=g;j[0]=j[1]=j[2]=0,j[n.log2(F^R)]=R&F,j[n.log2(R^B)]=R&B;var U=7^B;U===w||U===D?(U=7^F,j[n.log2(B^U)]=U&B):j[n.log2(F^U)]=U&F;var V=m,q=w;for(M=0;M<3;++M)V[M]=q&1<<M?-1:1;return v};var n=t(\"bit-twiddle\"),i=t(\"gl-mat4/multiply\"),a=t(\"split-polygon\"),o=t(\"robust-orientation\"),s=new Array(16),l=new Array(8),c=new Array(8),u=new Array(3),f=[0,0,0];function h(t,e,r){for(var n=0;n<4;++n){t[n]=r[12+n];for(var i=0;i<3;++i)t[n]+=e[i]*r[4*i+n]}}!function(){for(var t=0;t<8;++t)l[t]=[1,1,1,1],c[t]=[1,1,1]}();var p=[[0,0,1,0,0],[0,0,-1,1,0],[0,-1,0,1,0],[0,1,0,1,0],[-1,0,0,1,0],[1,0,0,1,0]];function d(t){for(var e=0;e<p.length;++e)if((t=a.positive(t,p[e])).length<3)return 0;var r=t[0],n=r[0]/r[3],i=r[1]/r[3],o=0;for(e=1;e+1<t.length;++e){var s=t[e],l=t[e+1],c=s[0]/s[3]-n,u=s[1]/s[3]-i,f=l[0]/l[3]-n,h=l[1]/l[3]-i;o+=Math.abs(c*h-u*f)}return o}var g=[1,1,1],m=[0,0,0],v={cubeEdges:g,axis:m}},{\"bit-twiddle\":97,\"gl-mat4/multiply\":295,\"robust-orientation\":548,\"split-polygon\":566}],253:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var o=[],s=[0,0,0],l=[0,0,0],c=[0,0,0],u=[0,0,0];o.push(0,0,1,0,1,1,0,0,-1,0,0,-1,0,1,1,0,1,-1);for(var f=0;f<3;++f){for(var h=o.length/3|0,d=0;d<r[f].length;++d){var g=+r[f][d].x;o.push(g,0,1,g,1,1,g,0,-1,g,0,-1,g,1,1,g,1,-1)}var m=o.length/3|0;s[f]=h,l[f]=m-h;h=o.length/3|0;for(var v=0;v<r[f].length;++v){g=+r[f][v].x;o.push(g,0,1,g,1,1,g,0,-1,g,0,-1,g,1,1,g,1,-1)}m=o.length/3|0;c[f]=h,u[f]=m-h}var y=n(t,new Float32Array(o)),x=i(t,[{buffer:y,type:t.FLOAT,size:3,stride:0,offset:0}]),b=a(t);return b.attributes.position.location=0,new p(t,y,x,b,l,s,u,c)};var n=t(\"gl-buffer\"),i=t(\"gl-vao\"),a=t(\"./shaders\").line,o=[0,0,0],s=[0,0,0],l=[0,0,0],c=[0,0,0],u=[1,1];function f(t){return t[0]=t[1]=t[2]=0,t}function h(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}function p(t,e,r,n,i,a,o,s){this.gl=t,this.vertBuffer=e,this.vao=r,this.shader=n,this.tickCount=i,this.tickOffset=a,this.gridCount=o,this.gridOffset=s}var d=p.prototype;d.bind=function(t,e,r){this.shader.bind(),this.shader.uniforms.model=t,this.shader.uniforms.view=e,this.shader.uniforms.projection=r,u[0]=this.gl.drawingBufferWidth,u[1]=this.gl.drawingBufferHeight,this.shader.uniforms.screenShape=u,this.vao.bind()},d.unbind=function(){this.vao.unbind()},d.drawAxisLine=function(t,e,r,n,i){var a=f(s);this.shader.uniforms.majorAxis=s,a[t]=e[1][t]-e[0][t],this.shader.uniforms.minorAxis=a;var o,u=h(c,r);u[t]+=e[0][t],this.shader.uniforms.offset=u,this.shader.uniforms.lineWidth=i,this.shader.uniforms.color=n,(o=f(l))[(t+2)%3]=1,this.shader.uniforms.screenAxis=o,this.vao.draw(this.gl.TRIANGLES,6),(o=f(l))[(t+1)%3]=1,this.shader.uniforms.screenAxis=o,this.vao.draw(this.gl.TRIANGLES,6)},d.drawAxisTicks=function(t,e,r,n,i){if(this.tickCount[t]){var a=f(o);a[t]=1,this.shader.uniforms.majorAxis=a,this.shader.uniforms.offset=e,this.shader.uniforms.minorAxis=r,this.shader.uniforms.color=n,this.shader.uniforms.lineWidth=i;var s=f(l);s[t]=1,this.shader.uniforms.screenAxis=s,this.vao.draw(this.gl.TRIANGLES,this.tickCount[t],this.tickOffset[t])}},d.drawGrid=function(t,e,r,n,i,a){if(this.gridCount[t]){var u=f(s);u[e]=r[1][e]-r[0][e],this.shader.uniforms.minorAxis=u;var p=h(c,n);p[e]+=r[0][e],this.shader.uniforms.offset=p;var d=f(o);d[t]=1,this.shader.uniforms.majorAxis=d;var g=f(l);g[t]=1,this.shader.uniforms.screenAxis=g,this.shader.uniforms.lineWidth=a,this.shader.uniforms.color=i,this.vao.draw(this.gl.TRIANGLES,this.gridCount[t],this.gridOffset[t])}},d.drawZero=function(t,e,r,n,i,a){var o=f(s);this.shader.uniforms.majorAxis=o,o[t]=r[1][t]-r[0][t],this.shader.uniforms.minorAxis=o;var u=h(c,n);u[t]+=r[0][t],this.shader.uniforms.offset=u;var p=f(l);p[e]=1,this.shader.uniforms.screenAxis=p,this.shader.uniforms.lineWidth=a,this.shader.uniforms.color=i,this.vao.draw(this.gl.TRIANGLES,6)},d.dispose=function(){this.vao.dispose(),this.vertBuffer.dispose(),this.shader.dispose()}},{\"./shaders\":254,\"gl-buffer\":259,\"gl-vao\":358}],254:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),i=t(\"gl-shader\"),a=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 offset, majorAxis, minorAxis, screenAxis;\\nuniform float lineWidth;\\nuniform vec2 screenShape;\\n\\nvec3 project(vec3 p) {\\n  vec4 pp = projection * view * model * vec4(p, 1.0);\\n  return pp.xyz / max(pp.w, 0.0001);\\n}\\n\\nvoid main() {\\n  vec3 major = position.x * majorAxis;\\n  vec3 minor = position.y * minorAxis;\\n\\n  vec3 vPosition = major + minor + offset;\\n  vec3 pPosition = project(vPosition);\\n  vec3 offset = project(vPosition + screenAxis * position.z);\\n\\n  vec2 screen = normalize((offset - pPosition).xy * screenShape) / screenShape;\\n\\n  gl_Position = vec4(pPosition + vec3(0.5 * screen * lineWidth, 0), 1.0);\\n}\\n\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color;\\nvoid main() {\\n  gl_FragColor = color;\\n}\"]);r.line=function(t){return i(t,a,o,null,[{name:\"position\",type:\"vec3\"}])};var s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 offset, axis, alignDir, alignOpt;\\nuniform float scale, angle, pixelScale;\\nuniform vec2 resolution;\\n\\nvec3 project(vec3 p) {\\n  vec4 pp = projection * view * model * vec4(p, 1.0);\\n  return pp.xyz / max(pp.w, 0.0001);\\n}\\n\\nfloat computeViewAngle(vec3 a, vec3 b) {\\n  vec3 A = project(a);\\n  vec3 B = project(b);\\n\\n  return atan(\\n    (B.y - A.y) * resolution.y,\\n    (B.x - A.x) * resolution.x\\n  );\\n}\\n\\nconst float PI = 3.141592;\\nconst float TWO_PI = 2.0 * PI;\\nconst float HALF_PI = 0.5 * PI;\\nconst float ONE_AND_HALF_PI = 1.5 * PI;\\n\\nint option = int(floor(alignOpt.x + 0.001));\\nfloat hv_ratio =       alignOpt.y;\\nbool enableAlign =    (alignOpt.z != 0.0);\\n\\nfloat mod_angle(float a) {\\n  return mod(a, PI);\\n}\\n\\nfloat positive_angle(float a) {\\n  return mod_angle((a < 0.0) ?\\n    a + TWO_PI :\\n    a\\n  );\\n}\\n\\nfloat look_upwards(float a) {\\n  float b = positive_angle(a);\\n  return ((b > HALF_PI) && (b <= ONE_AND_HALF_PI)) ?\\n    b - PI :\\n    b;\\n}\\n\\nfloat look_horizontal_or_vertical(float a, float ratio) {\\n  // ratio controls the ratio between being horizontal to (vertical + horizontal)\\n  // if ratio is set to 0.5 then it is 50%, 50%.\\n  // when using a higher ratio e.g. 0.75 the result would\\n  // likely be more horizontal than vertical.\\n\\n  float b = positive_angle(a);\\n\\n  return\\n    (b < (      ratio) * HALF_PI) ? 0.0 :\\n    (b < (2.0 - ratio) * HALF_PI) ? -HALF_PI :\\n    (b < (2.0 + ratio) * HALF_PI) ? 0.0 :\\n    (b < (4.0 - ratio) * HALF_PI) ? HALF_PI :\\n                                    0.0;\\n}\\n\\nfloat roundTo(float a, float b) {\\n  return float(b * floor((a + 0.5 * b) / b));\\n}\\n\\nfloat look_round_n_directions(float a, int n) {\\n  float b = positive_angle(a);\\n  float div = TWO_PI / float(n);\\n  float c = roundTo(b, div);\\n  return look_upwards(c);\\n}\\n\\nfloat applyAlignOption(float rawAngle, float delta) {\\n  return\\n    (option >  2) ? look_round_n_directions(rawAngle + delta, option) :       // option 3-n: round to n directions\\n    (option == 2) ? look_horizontal_or_vertical(rawAngle + delta, hv_ratio) : // horizontal or vertical\\n    (option == 1) ? rawAngle + delta :       // use free angle, and flip to align with one direction of the axis\\n    (option == 0) ? look_upwards(rawAngle) : // use free angle, and stay upwards\\n    (option ==-1) ? 0.0 :                    // useful for backward compatibility, all texts remains horizontal\\n                    rawAngle;                // otherwise return back raw input angle\\n}\\n\\nbool isAxisTitle = (axis.x == 0.0) &&\\n                   (axis.y == 0.0) &&\\n                   (axis.z == 0.0);\\n\\nvoid main() {\\n  //Compute world offset\\n  float axisDistance = position.z;\\n  vec3 dataPosition = axisDistance * axis + offset;\\n\\n  float beta = angle; // i.e. user defined attributes for each tick\\n\\n  float axisAngle;\\n  float clipAngle;\\n  float flip;\\n\\n  if (enableAlign) {\\n    axisAngle = (isAxisTitle) ? HALF_PI :\\n                      computeViewAngle(dataPosition, dataPosition + axis);\\n    clipAngle = computeViewAngle(dataPosition, dataPosition + alignDir);\\n\\n    axisAngle += (sin(axisAngle) < 0.0) ? PI : 0.0;\\n    clipAngle += (sin(clipAngle) < 0.0) ? PI : 0.0;\\n\\n    flip = (dot(vec2(cos(axisAngle), sin(axisAngle)),\\n                vec2(sin(clipAngle),-cos(clipAngle))) > 0.0) ? 1.0 : 0.0;\\n\\n    beta += applyAlignOption(clipAngle, flip * PI);\\n  }\\n\\n  //Compute plane offset\\n  vec2 planeCoord = position.xy * pixelScale;\\n\\n  mat2 planeXform = scale * mat2(\\n     cos(beta), sin(beta),\\n    -sin(beta), cos(beta)\\n  );\\n\\n  vec2 viewOffset = 2.0 * planeXform * planeCoord / resolution;\\n\\n  //Compute clip position\\n  vec3 clipPosition = project(dataPosition);\\n\\n  //Apply text offset in clip coordinates\\n  clipPosition += vec3(viewOffset, 0.0);\\n\\n  //Done\\n  gl_Position = vec4(clipPosition, 1.0);\\n}\"]),l=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color;\\nvoid main() {\\n  gl_FragColor = color;\\n}\"]);r.text=function(t){return i(t,s,l,null,[{name:\"position\",type:\"vec3\"}])};var c=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec3 normal;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 enable;\\nuniform vec3 bounds[2];\\n\\nvarying vec3 colorChannel;\\n\\nvoid main() {\\n\\n  vec3 signAxis = sign(bounds[1] - bounds[0]);\\n\\n  vec3 realNormal = signAxis * normal;\\n\\n  if(dot(realNormal, enable) > 0.0) {\\n    vec3 minRange = min(bounds[0], bounds[1]);\\n    vec3 maxRange = max(bounds[0], bounds[1]);\\n    vec3 nPosition = mix(minRange, maxRange, 0.5 * (position + 1.0));\\n    gl_Position = projection * view * model * vec4(nPosition, 1.0);\\n  } else {\\n    gl_Position = vec4(0,0,0,0);\\n  }\\n\\n  colorChannel = abs(realNormal);\\n}\"]),u=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec4 colors[3];\\n\\nvarying vec3 colorChannel;\\n\\nvoid main() {\\n  gl_FragColor = colorChannel.x * colors[0] +\\n                 colorChannel.y * colors[1] +\\n                 colorChannel.z * colors[2];\\n}\"]);r.bg=function(t){return i(t,c,u,null,[{name:\"position\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}])}},{\"gl-shader\":335,glslify:257}],255:[function(t,e,r){(function(r){(function(){\"use strict\";e.exports=function(t,e,r,a,s,l){var u=n(t),f=i(t,[{buffer:u,size:3}]),h=o(t);h.attributes.position.location=0;var p=new c(t,h,u,f);return p.update(e,r,a,s,l),p};var n=t(\"gl-buffer\"),i=t(\"gl-vao\"),a=t(\"vectorize-text\"),o=t(\"./shaders\").text,s=window||r.global||{},l=s.__TEXT_CACHE||{};s.__TEXT_CACHE={};function c(t,e,r,n){this.gl=t,this.shader=e,this.buffer=r,this.vao=n,this.tickOffset=this.tickCount=this.labelOffset=this.labelCount=null}var u=c.prototype,f=[0,0];u.bind=function(t,e,r,n){this.vao.bind(),this.shader.bind();var i=this.shader.uniforms;i.model=t,i.view=e,i.projection=r,i.pixelScale=n,f[0]=this.gl.drawingBufferWidth,f[1]=this.gl.drawingBufferHeight,this.shader.uniforms.resolution=f},u.unbind=function(){this.vao.unbind()},u.update=function(t,e,r,n,i){var o=[];function s(t,e,r,n,i,s){var c=l[r];c||(c=l[r]={});var u=c[e];u||(u=c[e]=function(t,e){try{return a(t,e)}catch(e){return console.warn('error vectorizing text:\"'+t+'\" error:',e),{cells:[],positions:[]}}}(e,{triangles:!0,font:r,textAlign:\"center\",textBaseline:\"middle\",lineSpacing:i,styletags:s}));for(var f=(n||12)/12,h=u.positions,p=u.cells,d=0,g=p.length;d<g;++d)for(var m=p[d],v=2;v>=0;--v){var y=h[m[v]];o.push(f*y[0],-f*y[1],t)}}for(var c=[0,0,0],u=[0,0,0],f=[0,0,0],h=[0,0,0],p={breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},d=0;d<3;++d){f[d]=o.length/3|0,s(.5*(t[0][d]+t[1][d]),e[d],r[d],12,1.25,p),h[d]=(o.length/3|0)-f[d],c[d]=o.length/3|0;for(var g=0;g<n[d].length;++g)n[d][g].text&&s(n[d][g].x,n[d][g].text,n[d][g].font||i,n[d][g].fontSize||12,1.25,p);u[d]=(o.length/3|0)-c[d]}this.buffer.update(o),this.tickOffset=c,this.tickCount=u,this.labelOffset=f,this.labelCount=h},u.drawTicks=function(t,e,r,n,i,a,o,s){this.tickCount[t]&&(this.shader.uniforms.axis=a,this.shader.uniforms.color=i,this.shader.uniforms.angle=r,this.shader.uniforms.scale=e,this.shader.uniforms.offset=n,this.shader.uniforms.alignDir=o,this.shader.uniforms.alignOpt=s,this.vao.draw(this.gl.TRIANGLES,this.tickCount[t],this.tickOffset[t]))},u.drawLabel=function(t,e,r,n,i,a,o,s){this.labelCount[t]&&(this.shader.uniforms.axis=a,this.shader.uniforms.color=i,this.shader.uniforms.angle=r,this.shader.uniforms.scale=e,this.shader.uniforms.offset=n,this.shader.uniforms.alignDir=o,this.shader.uniforms.alignOpt=s,this.vao.draw(this.gl.TRIANGLES,this.labelCount[t],this.labelOffset[t]))},u.dispose=function(){this.shader.dispose(),this.vao.dispose(),this.buffer.dispose()}}).call(this)}).call(this,t(\"_process\"))},{\"./shaders\":254,_process:526,\"gl-buffer\":259,\"gl-vao\":358,\"vectorize-text\":600}],256:[function(t,e,r){\"use strict\";function n(t,e){var r=t+\"\",n=r.indexOf(\".\"),i=0;n>=0&&(i=r.length-n-1);var a=Math.pow(10,i),o=Math.round(t*e*a),s=o+\"\";if(s.indexOf(\"e\")>=0)return s;var l=o/a,c=o%a;o<0?(l=0|-Math.ceil(l),c=0|-c):(l=0|Math.floor(l),c|=0);var u=\"\"+l;if(o<0&&(u=\"-\"+u),i){for(var f=\"\"+c;f.length<i;)f=\"0\"+f;return u+\".\"+f}return u}r.create=function(t,e){for(var r=[],i=0;i<3;++i){for(var a=[],o=(t[0][i],t[1][i],0);o*e[i]<=t[1][i];++o)a.push({x:o*e[i],text:n(e[i],o)});for(o=-1;o*e[i]>=t[0][i];--o)a.push({x:o*e[i],text:n(e[i],o)});r.push(a)}return r},r.equal=function(t,e){for(var r=0;r<3;++r){if(t[r].length!==e[r].length)return!1;for(var n=0;n<t[r].length;++n){var i=t[r][n],a=e[r][n];if(i.x!==a.x||i.text!==a.text||i.font!==a.font||i.fontColor!==a.fontColor||i.fontSize!==a.fontSize||i.dx!==a.dx||i.dy!==a.dy)return!1}}return!0}},{}],257:[function(t,e,r){e.exports=function(t){\"string\"==typeof t&&(t=[t]);for(var e=[].slice.call(arguments,1),r=[],n=0;n<t.length-1;n++)r.push(t[n],e[n]||\"\");return r.push(t[n]),r.join(\"\")}},{}],258:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,l,f){var h=e.model||c,p=e.view||c,v=e.projection||c,y=e._ortho||!1,x=t.bounds,b=(f=f||a(h,p,v,x,y)).axis;o(u,p,h),o(u,v,u);for(var _=g,w=0;w<3;++w)_[w].lo=1/0,_[w].hi=-1/0,_[w].pixelsPerDataUnit=1/0;var T=n(s(u,u));s(u,u);for(var k=0;k<3;++k){var M=(k+1)%3,A=(k+2)%3,S=m;t:for(w=0;w<2;++w){var E=[];if(b[k]<0!=!!w){S[k]=x[w][k];for(var C=0;C<2;++C){S[M]=x[C^w][M];for(var L=0;L<2;++L)S[A]=x[L^C^w][A],E.push(S.slice())}var I=y?5:4;for(C=I;C===I;++C){if(0===E.length)continue t;E=i.positive(E,T[C])}for(C=0;C<E.length;++C){A=E[C];var P=d(m,u,A,r,l);for(L=0;L<3;++L)_[L].lo=Math.min(_[L].lo,A[L]),_[L].hi=Math.max(_[L].hi,A[L]),L!==k&&(_[L].pixelsPerDataUnit=Math.min(_[L].pixelsPerDataUnit,Math.abs(P[L])))}}}}return _};var n=t(\"extract-frustum-planes\"),i=t(\"split-polygon\"),a=t(\"./lib/cube.js\"),o=t(\"gl-mat4/multiply\"),s=t(\"gl-mat4/transpose\"),l=t(\"gl-vec4/transformMat4\"),c=new Float32Array([1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]),u=new Float32Array(16);function f(t,e,r){this.lo=t,this.hi=e,this.pixelsPerDataUnit=r}var h=[0,0,0,1],p=[0,0,0,1];function d(t,e,r,n,i){for(var a=0;a<3;++a){for(var o=h,s=p,c=0;c<3;++c)s[c]=o[c]=r[c];s[3]=o[3]=1,s[a]+=1,l(s,s,e),s[3]<0&&(t[a]=1/0),o[a]-=1,l(o,o,e),o[3]<0&&(t[a]=1/0);var u=(o[0]/o[3]-s[0]/s[3])*n,f=(o[1]/o[3]-s[1]/s[3])*i;t[a]=.25*Math.sqrt(u*u+f*f)}return t}var g=[new f(1/0,-1/0,1/0),new f(1/0,-1/0,1/0),new f(1/0,-1/0,1/0)],m=[0,0,0]},{\"./lib/cube.js\":252,\"extract-frustum-planes\":240,\"gl-mat4/multiply\":295,\"gl-mat4/transpose\":306,\"gl-vec4/transformMat4\":429,\"split-polygon\":566}],259:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\"),i=t(\"ndarray-ops\"),a=t(\"ndarray\"),o=[\"uint8\",\"uint8_clamped\",\"uint16\",\"uint32\",\"int8\",\"int16\",\"int32\",\"float32\"];function s(t,e,r,n,i){this.gl=t,this.type=e,this.handle=r,this.length=n,this.usage=i}var l=s.prototype;function c(t,e,r,n,i,a){var o=i.length*i.BYTES_PER_ELEMENT;if(a<0)return t.bufferData(e,i,n),o;if(o+a>r)throw new Error(\"gl-buffer: If resizing buffer, must not specify offset\");return t.bufferSubData(e,a,i),r}function u(t,e){for(var r=n.malloc(t.length,e),i=t.length,a=0;a<i;++a)r[a]=t[a];return r}l.bind=function(){this.gl.bindBuffer(this.type,this.handle)},l.unbind=function(){this.gl.bindBuffer(this.type,null)},l.dispose=function(){this.gl.deleteBuffer(this.handle)},l.update=function(t,e){if(\"number\"!=typeof e&&(e=-1),this.bind(),\"object\"==typeof t&&\"undefined\"!=typeof t.shape){var r=t.dtype;if(o.indexOf(r)<0&&(r=\"float32\"),this.type===this.gl.ELEMENT_ARRAY_BUFFER)r=gl.getExtension(\"OES_element_index_uint\")&&\"uint16\"!==r?\"uint32\":\"uint16\";if(r===t.dtype&&function(t,e){for(var r=1,n=e.length-1;n>=0;--n){if(e[n]!==r)return!1;r*=t[n]}return!0}(t.shape,t.stride))0===t.offset&&t.data.length===t.shape[0]?this.length=c(this.gl,this.type,this.length,this.usage,t.data,e):this.length=c(this.gl,this.type,this.length,this.usage,t.data.subarray(t.offset,t.shape[0]),e);else{var s=n.malloc(t.size,r),l=a(s,t.shape);i.assign(l,t),this.length=c(this.gl,this.type,this.length,this.usage,e<0?s:s.subarray(0,t.size),e),n.free(s)}}else if(Array.isArray(t)){var f;f=this.type===this.gl.ELEMENT_ARRAY_BUFFER?u(t,\"uint16\"):u(t,\"float32\"),this.length=c(this.gl,this.type,this.length,this.usage,e<0?f:f.subarray(0,t.length),e),n.free(f)}else if(\"object\"==typeof t&&\"number\"==typeof t.length)this.length=c(this.gl,this.type,this.length,this.usage,t,e);else{if(\"number\"!=typeof t&&void 0!==t)throw new Error(\"gl-buffer: Invalid data type\");if(e>=0)throw new Error(\"gl-buffer: Cannot specify offset when resizing buffer\");(t|=0)<=0&&(t=1),this.gl.bufferData(this.type,0|t,this.usage),this.length=t}},e.exports=function(t,e,r,n){if(r=r||t.ARRAY_BUFFER,n=n||t.DYNAMIC_DRAW,r!==t.ARRAY_BUFFER&&r!==t.ELEMENT_ARRAY_BUFFER)throw new Error(\"gl-buffer: Invalid type for webgl buffer, must be either gl.ARRAY_BUFFER or gl.ELEMENT_ARRAY_BUFFER\");if(n!==t.DYNAMIC_DRAW&&n!==t.STATIC_DRAW&&n!==t.STREAM_DRAW)throw new Error(\"gl-buffer: Invalid usage for buffer, must be either gl.DYNAMIC_DRAW, gl.STATIC_DRAW or gl.STREAM_DRAW\");var i=t.createBuffer(),a=new s(t,r,i,0,n);return a.update(e),a}},{ndarray:495,\"ndarray-ops\":490,\"typedarray-pool\":595}],260:[function(t,e,r){\"use strict\";var n=t(\"gl-vec3\");e.exports=function(t,e){var r=t.positions,i=t.vectors,a={positions:[],vertexIntensity:[],vertexIntensityBounds:t.vertexIntensityBounds,vectors:[],cells:[],coneOffset:t.coneOffset,colormap:t.colormap};if(0===t.positions.length)return e&&(e[0]=[0,0,0],e[1]=[0,0,0]),a;for(var o=0,s=1/0,l=-1/0,c=1/0,u=-1/0,f=1/0,h=-1/0,p=null,d=null,g=[],m=1/0,v=!1,y=0;y<r.length;y++){var x=r[y];s=Math.min(x[0],s),l=Math.max(x[0],l),c=Math.min(x[1],c),u=Math.max(x[1],u),f=Math.min(x[2],f),h=Math.max(x[2],h);var b=i[y];if(n.length(b)>o&&(o=n.length(b)),y){var _=2*n.distance(p,x)/(n.length(d)+n.length(b));_?(m=Math.min(m,_),v=!1):v=!0}v||(p=x,d=b),g.push(b)}var w=[s,c,f],T=[l,u,h];e&&(e[0]=w,e[1]=T),0===o&&(o=1);var k=1/o;isFinite(m)||(m=1),a.vectorScale=m;var M=t.coneSize||.5;t.absoluteConeSize&&(M=t.absoluteConeSize*k),a.coneScale=M;y=0;for(var A=0;y<r.length;y++)for(var S=(x=r[y])[0],E=x[1],C=x[2],L=g[y],I=n.length(L)*k,P=0;P<8;P++){a.positions.push([S,E,C,A++]),a.positions.push([S,E,C,A++]),a.positions.push([S,E,C,A++]),a.positions.push([S,E,C,A++]),a.positions.push([S,E,C,A++]),a.positions.push([S,E,C,A++]),a.vectors.push(L),a.vectors.push(L),a.vectors.push(L),a.vectors.push(L),a.vectors.push(L),a.vectors.push(L),a.vertexIntensity.push(I,I,I),a.vertexIntensity.push(I,I,I);var z=a.positions.length;a.cells.push([z-6,z-5,z-4],[z-3,z-2,z-1])}return a};var i=t(\"./lib/shaders\");e.exports.createMesh=t(\"./create_mesh\"),e.exports.createConeMesh=function(t,r){return e.exports.createMesh(t,r,{shaders:i,traceType:\"cone\"})}},{\"./create_mesh\":261,\"./lib/shaders\":262,\"gl-vec3\":377}],261:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),i=t(\"gl-buffer\"),a=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"gl-mat4/multiply\"),l=t(\"gl-mat4/invert\"),c=t(\"ndarray\"),u=t(\"colormap\"),f=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function h(t,e,r,n,i,a,o,s,l,c,u){this.gl=t,this.pixelRatio=1,this.cells=[],this.positions=[],this.intensity=[],this.texture=e,this.dirty=!0,this.triShader=r,this.pickShader=n,this.trianglePositions=i,this.triangleVectors=a,this.triangleColors=s,this.triangleUVs=l,this.triangleIds=o,this.triangleVAO=c,this.triangleCount=0,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this.traceType=u,this.tubeScale=1,this.coneScale=2,this.vectorScale=1,this.coneOffset=.25,this._model=f,this._view=f,this._projection=f,this._resolution=[1,1]}var p=h.prototype;function d(t,e){var r=n(t,e.meshShader.vertex,e.meshShader.fragment,null,e.meshShader.attributes);return r.attributes.position.location=0,r.attributes.color.location=2,r.attributes.uv.location=3,r.attributes.vector.location=4,r}function g(t,e){var r=n(t,e.pickShader.vertex,e.pickShader.fragment,null,e.pickShader.attributes);return r.attributes.position.location=0,r.attributes.id.location=1,r.attributes.vector.location=4,r}p.isOpaque=function(){return this.opacity>=1},p.isTransparent=function(){return this.opacity<1},p.pickSlots=1,p.setPickBase=function(t){this.pickId=t},p.update=function(t){t=t||{};var e=this.gl;this.dirty=!0,\"lightPosition\"in t&&(this.lightPosition=t.lightPosition),\"opacity\"in t&&(this.opacity=t.opacity),\"ambient\"in t&&(this.ambientLight=t.ambient),\"diffuse\"in t&&(this.diffuseLight=t.diffuse),\"specular\"in t&&(this.specularLight=t.specular),\"roughness\"in t&&(this.roughness=t.roughness),\"fresnel\"in t&&(this.fresnel=t.fresnel),void 0!==t.tubeScale&&(this.tubeScale=t.tubeScale),void 0!==t.vectorScale&&(this.vectorScale=t.vectorScale),void 0!==t.coneScale&&(this.coneScale=t.coneScale),void 0!==t.coneOffset&&(this.coneOffset=t.coneOffset),t.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=e.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=e.LINEAR,this.texture.setPixels(function(t){for(var e=u({colormap:t,nshades:256,format:\"rgba\"}),r=new Uint8Array(1024),n=0;n<256;++n){for(var i=e[n],a=0;a<3;++a)r[4*n+a]=i[a];r[4*n+3]=255*i[3]}return c(r,[256,256,4],[4,0,1])}(t.colormap)),this.texture.generateMipmap());var r=t.cells,n=t.positions,i=t.vectors;if(n&&r&&i){var a=[],o=[],s=[],l=[],f=[];this.cells=r,this.positions=n,this.vectors=i;var h=t.meshColor||[1,1,1,1],p=t.vertexIntensity,d=1/0,g=-1/0;if(p)if(t.vertexIntensityBounds)d=+t.vertexIntensityBounds[0],g=+t.vertexIntensityBounds[1];else for(var m=0;m<p.length;++m){var v=p[m];d=Math.min(d,v),g=Math.max(g,v)}else for(m=0;m<n.length;++m){v=n[m][2];d=Math.min(d,v),g=Math.max(g,v)}this.intensity=p||function(t){for(var e=t.length,r=new Array(e),n=0;n<e;++n)r[n]=t[n][2];return r}(n),this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]];for(m=0;m<n.length;++m)for(var y=n[m],x=0;x<3;++x)!isNaN(y[x])&&isFinite(y[x])&&(this.bounds[0][x]=Math.min(this.bounds[0][x],y[x]),this.bounds[1][x]=Math.max(this.bounds[1][x],y[x]));var b=0;t:for(m=0;m<r.length;++m){var _=r[m];switch(_.length){case 3:for(x=0;x<3;++x){y=n[T=_[x]];for(var w=0;w<3;++w)if(isNaN(y[w])||!isFinite(y[w]))continue t}for(x=0;x<3;++x){var T;y=n[T=_[2-x]];a.push(y[0],y[1],y[2],y[3]);var k=i[T];o.push(k[0],k[1],k[2],k[3]||0);var M,A=h;3===A.length?s.push(A[0],A[1],A[2],1):s.push(A[0],A[1],A[2],A[3]),M=p?[(p[T]-d)/(g-d),0]:[(y[2]-d)/(g-d),0],l.push(M[0],M[1]),f.push(m)}b+=1}}this.triangleCount=b,this.trianglePositions.update(a),this.triangleVectors.update(o),this.triangleColors.update(s),this.triangleUVs.update(l),this.triangleIds.update(new Uint32Array(f))}},p.drawTransparent=p.draw=function(t){t=t||{};for(var e=this.gl,r=t.model||f,n=t.view||f,i=t.projection||f,a=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)a[0][o]=Math.max(a[0][o],this.clipBounds[0][o]),a[1][o]=Math.min(a[1][o],this.clipBounds[1][o]);var c={model:r,view:n,projection:i,inverseModel:f.slice(),clipBounds:a,kambient:this.ambientLight,kdiffuse:this.diffuseLight,kspecular:this.specularLight,roughness:this.roughness,fresnel:this.fresnel,eyePosition:[0,0,0],lightPosition:[0,0,0],opacity:this.opacity,tubeScale:this.tubeScale,vectorScale:this.vectorScale,coneScale:this.coneScale,coneOffset:this.coneOffset,texture:0};c.inverseModel=l(c.inverseModel,c.model),e.disable(e.CULL_FACE),this.texture.bind(0);var u=new Array(16);s(u,c.view,c.model),s(u,c.projection,u),l(u,u);for(o=0;o<3;++o)c.eyePosition[o]=u[12+o]/u[15];var h=u[15];for(o=0;o<3;++o)h+=this.lightPosition[o]*u[4*o+3];for(o=0;o<3;++o){for(var p=u[12+o],d=0;d<3;++d)p+=u[4*d+o]*this.lightPosition[d];c.lightPosition[o]=p/h}if(this.triangleCount>0){var g=this.triShader;g.bind(),g.uniforms=c,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()}},p.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||f,n=t.view||f,i=t.projection||f,a=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)a[0][o]=Math.max(a[0][o],this.clipBounds[0][o]),a[1][o]=Math.min(a[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(i),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s={model:r,view:n,projection:i,clipBounds:a,tubeScale:this.tubeScale,vectorScale:this.vectorScale,coneScale:this.coneScale,coneOffset:this.coneOffset,pickId:this.pickId/255},l=this.pickShader;l.bind(),l.uniforms=s,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind())},p.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions[r[1]].slice(0,3),i={position:n,dataCoordinate:n,index:Math.floor(r[1]/48)};return\"cone\"===this.traceType?i.index=Math.floor(r[1]/48):\"streamtube\"===this.traceType&&(i.intensity=this.intensity[r[1]],i.velocity=this.vectors[r[1]].slice(0,3),i.divergence=this.vectors[r[1]][3],i.index=e),i},p.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.pickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleVectors.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleIds.dispose()},e.exports=function(t,e,r){var n=r.shaders;1===arguments.length&&(t=(e=t).gl);var s=d(t,n),l=g(t,n),u=o(t,c(new Uint8Array([255,255,255,255]),[1,1,4]));u.generateMipmap(),u.minFilter=t.LINEAR_MIPMAP_LINEAR,u.magFilter=t.LINEAR;var f=i(t),p=i(t),m=i(t),v=i(t),y=i(t),x=a(t,[{buffer:f,type:t.FLOAT,size:4},{buffer:y,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:m,type:t.FLOAT,size:4},{buffer:v,type:t.FLOAT,size:2},{buffer:p,type:t.FLOAT,size:4}]),b=new h(t,u,s,l,f,p,y,m,v,x,r.traceType||\"cone\");return b.update(e),b}},{colormap:131,\"gl-buffer\":259,\"gl-mat4/invert\":293,\"gl-mat4/multiply\":295,\"gl-shader\":335,\"gl-texture2d\":353,\"gl-vao\":358,ndarray:495}],262:[function(t,e,r){var n=t(\"glslify\"),i=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the cone vertex and normal at the given index.\\n//\\n// The returned vertex is for a cone with its top at origin and height of 1.0,\\n// pointing in the direction of the vector attribute.\\n//\\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\\n// These vertices are used to make up the triangles of the cone by the following:\\n//   segment + 0 top vertex\\n//   segment + 1 perimeter vertex a+1\\n//   segment + 2 perimeter vertex a\\n//   segment + 3 center base vertex\\n//   segment + 4 perimeter vertex a\\n//   segment + 5 perimeter vertex a+1\\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\\n// To go from index to segment, floor(index / 6)\\n// To go from segment to angle, 2*pi * (segment/segmentCount)\\n// To go from index to segment index, index - (segment*6)\\n//\\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\\n\\n  const float segmentCount = 8.0;\\n\\n  float index = rawIndex - floor(rawIndex /\\n    (segmentCount * 6.0)) *\\n    (segmentCount * 6.0);\\n\\n  float segment = floor(0.001 + index/6.0);\\n  float segmentIndex = index - (segment*6.0);\\n\\n  normal = -normalize(d);\\n\\n  if (segmentIndex > 2.99 && segmentIndex < 3.01) {\\n    return mix(vec3(0.0), -d, coneOffset);\\n  }\\n\\n  float nextAngle = (\\n    (segmentIndex > 0.99 &&  segmentIndex < 1.01) ||\\n    (segmentIndex > 4.99 &&  segmentIndex < 5.01)\\n  ) ? 1.0 : 0.0;\\n  float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\\n\\n  vec3 v1 = mix(d, vec3(0.0), coneOffset);\\n  vec3 v2 = v1 - d;\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d)*0.25;\\n  vec3 y = v * sin(angle) * length(d)*0.25;\\n  vec3 v3 = v2 + x + y;\\n  if (segmentIndex < 3.0) {\\n    vec3 tx = u * sin(angle);\\n    vec3 ty = v * -cos(angle);\\n    vec3 tangent = tx + ty;\\n    normal = normalize(cross(v3 - v1, tangent));\\n  }\\n\\n  if (segmentIndex == 0.0) {\\n    return mix(d, vec3(0.0), coneOffset);\\n  }\\n  return v3;\\n}\\n\\nattribute vec3 vector;\\nattribute vec4 color, position;\\nattribute vec2 uv;\\n\\nuniform float vectorScale, coneScale, coneOffset;\\nuniform mat4 model, view, projection, inverseModel;\\nuniform vec3 eyePosition, lightPosition;\\n\\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  // Scale the vector magnitude to stay constant with\\n  // model & view changes.\\n  vec3 normal;\\n  vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector), position.w, coneOffset, normal);\\n  vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * conePosition;\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n  f_eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  f_normal = normalize((vec4(normal, 0.0) * inverseModel).xyz);\\n\\n  // vec4 m_position  = model * vec4(conePosition, 1.0);\\n  vec4 t_position  = view * conePosition;\\n  gl_Position      = projection * t_position;\\n\\n  f_color          = color;\\n  f_data           = conePosition.xyz;\\n  f_position       = position.xyz;\\n  f_uv             = uv;\\n}\\n\"]),a=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness,\\n  float fresnel) {\\n\\n  float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n  float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n  //Half angle vector\\n  vec3 H = normalize(lightDirection + viewDirection);\\n\\n  //Geometric term\\n  float NdotH = max(dot(surfaceNormal, H), 0.0);\\n  float VdotH = max(dot(viewDirection, H), 0.000001);\\n  float LdotH = max(dot(lightDirection, H), 0.000001);\\n  float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n  float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n  float G = min(1.0, min(G1, G2));\\n  \\n  //Distribution term\\n  float D = beckmannDistribution(NdotH, roughness);\\n\\n  //Fresnel term\\n  float F = pow(1.0 - VdotN, fresnel);\\n\\n  //Multiply terms and done\\n  return  G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n  vec3 N = normalize(f_normal);\\n  vec3 L = normalize(f_lightDirection);\\n  vec3 V = normalize(f_eyeDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  vec4 surfaceColor = f_color * texture2D(texture, f_uv);\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = litColor * opacity;\\n}\\n\"]),o=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the cone vertex and normal at the given index.\\n//\\n// The returned vertex is for a cone with its top at origin and height of 1.0,\\n// pointing in the direction of the vector attribute.\\n//\\n// Each cone is made up of a top vertex, a center base vertex and base perimeter vertices.\\n// These vertices are used to make up the triangles of the cone by the following:\\n//   segment + 0 top vertex\\n//   segment + 1 perimeter vertex a+1\\n//   segment + 2 perimeter vertex a\\n//   segment + 3 center base vertex\\n//   segment + 4 perimeter vertex a\\n//   segment + 5 perimeter vertex a+1\\n// Where segment is the number of the radial segment * 6 and a is the angle at that radial segment.\\n// To go from index to segment, floor(index / 6)\\n// To go from segment to angle, 2*pi * (segment/segmentCount)\\n// To go from index to segment index, index - (segment*6)\\n//\\nvec3 getConePosition(vec3 d, float rawIndex, float coneOffset, out vec3 normal) {\\n\\n  const float segmentCount = 8.0;\\n\\n  float index = rawIndex - floor(rawIndex /\\n    (segmentCount * 6.0)) *\\n    (segmentCount * 6.0);\\n\\n  float segment = floor(0.001 + index/6.0);\\n  float segmentIndex = index - (segment*6.0);\\n\\n  normal = -normalize(d);\\n\\n  if (segmentIndex > 2.99 && segmentIndex < 3.01) {\\n    return mix(vec3(0.0), -d, coneOffset);\\n  }\\n\\n  float nextAngle = (\\n    (segmentIndex > 0.99 &&  segmentIndex < 1.01) ||\\n    (segmentIndex > 4.99 &&  segmentIndex < 5.01)\\n  ) ? 1.0 : 0.0;\\n  float angle = 2.0 * 3.14159 * ((segment + nextAngle) / segmentCount);\\n\\n  vec3 v1 = mix(d, vec3(0.0), coneOffset);\\n  vec3 v2 = v1 - d;\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d)*0.25;\\n  vec3 y = v * sin(angle) * length(d)*0.25;\\n  vec3 v3 = v2 + x + y;\\n  if (segmentIndex < 3.0) {\\n    vec3 tx = u * sin(angle);\\n    vec3 ty = v * -cos(angle);\\n    vec3 tangent = tx + ty;\\n    normal = normalize(cross(v3 - v1, tangent));\\n  }\\n\\n  if (segmentIndex == 0.0) {\\n    return mix(d, vec3(0.0), coneOffset);\\n  }\\n  return v3;\\n}\\n\\nattribute vec4 vector;\\nattribute vec4 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\nuniform float vectorScale, coneScale, coneOffset;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  vec3 normal;\\n  vec3 XYZ = getConePosition(mat3(model) * ((vectorScale * coneScale) * vector.xyz), position.w, coneOffset, normal);\\n  vec4 conePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n  gl_Position = projection * view * conePosition;\\n  f_id        = id;\\n  f_position  = position.xyz;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3  clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n  gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]);r.meshShader={vertex:i,fragment:a,attributes:[{name:\"position\",type:\"vec4\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"vector\",type:\"vec3\"}]},r.pickShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec4\"},{name:\"id\",type:\"vec4\"},{name:\"vector\",type:\"vec3\"}]}},{glslify:263}],263:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],264:[function(t,e,r){e.exports={0:\"NONE\",1:\"ONE\",2:\"LINE_LOOP\",3:\"LINE_STRIP\",4:\"TRIANGLES\",5:\"TRIANGLE_STRIP\",6:\"TRIANGLE_FAN\",256:\"DEPTH_BUFFER_BIT\",512:\"NEVER\",513:\"LESS\",514:\"EQUAL\",515:\"LEQUAL\",516:\"GREATER\",517:\"NOTEQUAL\",518:\"GEQUAL\",519:\"ALWAYS\",768:\"SRC_COLOR\",769:\"ONE_MINUS_SRC_COLOR\",770:\"SRC_ALPHA\",771:\"ONE_MINUS_SRC_ALPHA\",772:\"DST_ALPHA\",773:\"ONE_MINUS_DST_ALPHA\",774:\"DST_COLOR\",775:\"ONE_MINUS_DST_COLOR\",776:\"SRC_ALPHA_SATURATE\",1024:\"STENCIL_BUFFER_BIT\",1028:\"FRONT\",1029:\"BACK\",1032:\"FRONT_AND_BACK\",1280:\"INVALID_ENUM\",1281:\"INVALID_VALUE\",1282:\"INVALID_OPERATION\",1285:\"OUT_OF_MEMORY\",1286:\"INVALID_FRAMEBUFFER_OPERATION\",2304:\"CW\",2305:\"CCW\",2849:\"LINE_WIDTH\",2884:\"CULL_FACE\",2885:\"CULL_FACE_MODE\",2886:\"FRONT_FACE\",2928:\"DEPTH_RANGE\",2929:\"DEPTH_TEST\",2930:\"DEPTH_WRITEMASK\",2931:\"DEPTH_CLEAR_VALUE\",2932:\"DEPTH_FUNC\",2960:\"STENCIL_TEST\",2961:\"STENCIL_CLEAR_VALUE\",2962:\"STENCIL_FUNC\",2963:\"STENCIL_VALUE_MASK\",2964:\"STENCIL_FAIL\",2965:\"STENCIL_PASS_DEPTH_FAIL\",2966:\"STENCIL_PASS_DEPTH_PASS\",2967:\"STENCIL_REF\",2968:\"STENCIL_WRITEMASK\",2978:\"VIEWPORT\",3024:\"DITHER\",3042:\"BLEND\",3088:\"SCISSOR_BOX\",3089:\"SCISSOR_TEST\",3106:\"COLOR_CLEAR_VALUE\",3107:\"COLOR_WRITEMASK\",3317:\"UNPACK_ALIGNMENT\",3333:\"PACK_ALIGNMENT\",3379:\"MAX_TEXTURE_SIZE\",3386:\"MAX_VIEWPORT_DIMS\",3408:\"SUBPIXEL_BITS\",3410:\"RED_BITS\",3411:\"GREEN_BITS\",3412:\"BLUE_BITS\",3413:\"ALPHA_BITS\",3414:\"DEPTH_BITS\",3415:\"STENCIL_BITS\",3553:\"TEXTURE_2D\",4352:\"DONT_CARE\",4353:\"FASTEST\",4354:\"NICEST\",5120:\"BYTE\",5121:\"UNSIGNED_BYTE\",5122:\"SHORT\",5123:\"UNSIGNED_SHORT\",5124:\"INT\",5125:\"UNSIGNED_INT\",5126:\"FLOAT\",5386:\"INVERT\",5890:\"TEXTURE\",6401:\"STENCIL_INDEX\",6402:\"DEPTH_COMPONENT\",6406:\"ALPHA\",6407:\"RGB\",6408:\"RGBA\",6409:\"LUMINANCE\",6410:\"LUMINANCE_ALPHA\",7680:\"KEEP\",7681:\"REPLACE\",7682:\"INCR\",7683:\"DECR\",7936:\"VENDOR\",7937:\"RENDERER\",7938:\"VERSION\",9728:\"NEAREST\",9729:\"LINEAR\",9984:\"NEAREST_MIPMAP_NEAREST\",9985:\"LINEAR_MIPMAP_NEAREST\",9986:\"NEAREST_MIPMAP_LINEAR\",9987:\"LINEAR_MIPMAP_LINEAR\",10240:\"TEXTURE_MAG_FILTER\",10241:\"TEXTURE_MIN_FILTER\",10242:\"TEXTURE_WRAP_S\",10243:\"TEXTURE_WRAP_T\",10497:\"REPEAT\",10752:\"POLYGON_OFFSET_UNITS\",16384:\"COLOR_BUFFER_BIT\",32769:\"CONSTANT_COLOR\",32770:\"ONE_MINUS_CONSTANT_COLOR\",32771:\"CONSTANT_ALPHA\",32772:\"ONE_MINUS_CONSTANT_ALPHA\",32773:\"BLEND_COLOR\",32774:\"FUNC_ADD\",32777:\"BLEND_EQUATION_RGB\",32778:\"FUNC_SUBTRACT\",32779:\"FUNC_REVERSE_SUBTRACT\",32819:\"UNSIGNED_SHORT_4_4_4_4\",32820:\"UNSIGNED_SHORT_5_5_5_1\",32823:\"POLYGON_OFFSET_FILL\",32824:\"POLYGON_OFFSET_FACTOR\",32854:\"RGBA4\",32855:\"RGB5_A1\",32873:\"TEXTURE_BINDING_2D\",32926:\"SAMPLE_ALPHA_TO_COVERAGE\",32928:\"SAMPLE_COVERAGE\",32936:\"SAMPLE_BUFFERS\",32937:\"SAMPLES\",32938:\"SAMPLE_COVERAGE_VALUE\",32939:\"SAMPLE_COVERAGE_INVERT\",32968:\"BLEND_DST_RGB\",32969:\"BLEND_SRC_RGB\",32970:\"BLEND_DST_ALPHA\",32971:\"BLEND_SRC_ALPHA\",33071:\"CLAMP_TO_EDGE\",33170:\"GENERATE_MIPMAP_HINT\",33189:\"DEPTH_COMPONENT16\",33306:\"DEPTH_STENCIL_ATTACHMENT\",33635:\"UNSIGNED_SHORT_5_6_5\",33648:\"MIRRORED_REPEAT\",33901:\"ALIASED_POINT_SIZE_RANGE\",33902:\"ALIASED_LINE_WIDTH_RANGE\",33984:\"TEXTURE0\",33985:\"TEXTURE1\",33986:\"TEXTURE2\",33987:\"TEXTURE3\",33988:\"TEXTURE4\",33989:\"TEXTURE5\",33990:\"TEXTURE6\",33991:\"TEXTURE7\",33992:\"TEXTURE8\",33993:\"TEXTURE9\",33994:\"TEXTURE10\",33995:\"TEXTURE11\",33996:\"TEXTURE12\",33997:\"TEXTURE13\",33998:\"TEXTURE14\",33999:\"TEXTURE15\",34e3:\"TEXTURE16\",34001:\"TEXTURE17\",34002:\"TEXTURE18\",34003:\"TEXTURE19\",34004:\"TEXTURE20\",34005:\"TEXTURE21\",34006:\"TEXTURE22\",34007:\"TEXTURE23\",34008:\"TEXTURE24\",34009:\"TEXTURE25\",34010:\"TEXTURE26\",34011:\"TEXTURE27\",34012:\"TEXTURE28\",34013:\"TEXTURE29\",34014:\"TEXTURE30\",34015:\"TEXTURE31\",34016:\"ACTIVE_TEXTURE\",34024:\"MAX_RENDERBUFFER_SIZE\",34041:\"DEPTH_STENCIL\",34055:\"INCR_WRAP\",34056:\"DECR_WRAP\",34067:\"TEXTURE_CUBE_MAP\",34068:\"TEXTURE_BINDING_CUBE_MAP\",34069:\"TEXTURE_CUBE_MAP_POSITIVE_X\",34070:\"TEXTURE_CUBE_MAP_NEGATIVE_X\",34071:\"TEXTURE_CUBE_MAP_POSITIVE_Y\",34072:\"TEXTURE_CUBE_MAP_NEGATIVE_Y\",34073:\"TEXTURE_CUBE_MAP_POSITIVE_Z\",34074:\"TEXTURE_CUBE_MAP_NEGATIVE_Z\",34076:\"MAX_CUBE_MAP_TEXTURE_SIZE\",34338:\"VERTEX_ATTRIB_ARRAY_ENABLED\",34339:\"VERTEX_ATTRIB_ARRAY_SIZE\",34340:\"VERTEX_ATTRIB_ARRAY_STRIDE\",34341:\"VERTEX_ATTRIB_ARRAY_TYPE\",34342:\"CURRENT_VERTEX_ATTRIB\",34373:\"VERTEX_ATTRIB_ARRAY_POINTER\",34466:\"NUM_COMPRESSED_TEXTURE_FORMATS\",34467:\"COMPRESSED_TEXTURE_FORMATS\",34660:\"BUFFER_SIZE\",34661:\"BUFFER_USAGE\",34816:\"STENCIL_BACK_FUNC\",34817:\"STENCIL_BACK_FAIL\",34818:\"STENCIL_BACK_PASS_DEPTH_FAIL\",34819:\"STENCIL_BACK_PASS_DEPTH_PASS\",34877:\"BLEND_EQUATION_ALPHA\",34921:\"MAX_VERTEX_ATTRIBS\",34922:\"VERTEX_ATTRIB_ARRAY_NORMALIZED\",34930:\"MAX_TEXTURE_IMAGE_UNITS\",34962:\"ARRAY_BUFFER\",34963:\"ELEMENT_ARRAY_BUFFER\",34964:\"ARRAY_BUFFER_BINDING\",34965:\"ELEMENT_ARRAY_BUFFER_BINDING\",34975:\"VERTEX_ATTRIB_ARRAY_BUFFER_BINDING\",35040:\"STREAM_DRAW\",35044:\"STATIC_DRAW\",35048:\"DYNAMIC_DRAW\",35632:\"FRAGMENT_SHADER\",35633:\"VERTEX_SHADER\",35660:\"MAX_VERTEX_TEXTURE_IMAGE_UNITS\",35661:\"MAX_COMBINED_TEXTURE_IMAGE_UNITS\",35663:\"SHADER_TYPE\",35664:\"FLOAT_VEC2\",35665:\"FLOAT_VEC3\",35666:\"FLOAT_VEC4\",35667:\"INT_VEC2\",35668:\"INT_VEC3\",35669:\"INT_VEC4\",35670:\"BOOL\",35671:\"BOOL_VEC2\",35672:\"BOOL_VEC3\",35673:\"BOOL_VEC4\",35674:\"FLOAT_MAT2\",35675:\"FLOAT_MAT3\",35676:\"FLOAT_MAT4\",35678:\"SAMPLER_2D\",35680:\"SAMPLER_CUBE\",35712:\"DELETE_STATUS\",35713:\"COMPILE_STATUS\",35714:\"LINK_STATUS\",35715:\"VALIDATE_STATUS\",35716:\"INFO_LOG_LENGTH\",35717:\"ATTACHED_SHADERS\",35718:\"ACTIVE_UNIFORMS\",35719:\"ACTIVE_UNIFORM_MAX_LENGTH\",35720:\"SHADER_SOURCE_LENGTH\",35721:\"ACTIVE_ATTRIBUTES\",35722:\"ACTIVE_ATTRIBUTE_MAX_LENGTH\",35724:\"SHADING_LANGUAGE_VERSION\",35725:\"CURRENT_PROGRAM\",36003:\"STENCIL_BACK_REF\",36004:\"STENCIL_BACK_VALUE_MASK\",36005:\"STENCIL_BACK_WRITEMASK\",36006:\"FRAMEBUFFER_BINDING\",36007:\"RENDERBUFFER_BINDING\",36048:\"FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE\",36049:\"FRAMEBUFFER_ATTACHMENT_OBJECT_NAME\",36050:\"FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL\",36051:\"FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE\",36053:\"FRAMEBUFFER_COMPLETE\",36054:\"FRAMEBUFFER_INCOMPLETE_ATTACHMENT\",36055:\"FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT\",36057:\"FRAMEBUFFER_INCOMPLETE_DIMENSIONS\",36061:\"FRAMEBUFFER_UNSUPPORTED\",36064:\"COLOR_ATTACHMENT0\",36096:\"DEPTH_ATTACHMENT\",36128:\"STENCIL_ATTACHMENT\",36160:\"FRAMEBUFFER\",36161:\"RENDERBUFFER\",36162:\"RENDERBUFFER_WIDTH\",36163:\"RENDERBUFFER_HEIGHT\",36164:\"RENDERBUFFER_INTERNAL_FORMAT\",36168:\"STENCIL_INDEX8\",36176:\"RENDERBUFFER_RED_SIZE\",36177:\"RENDERBUFFER_GREEN_SIZE\",36178:\"RENDERBUFFER_BLUE_SIZE\",36179:\"RENDERBUFFER_ALPHA_SIZE\",36180:\"RENDERBUFFER_DEPTH_SIZE\",36181:\"RENDERBUFFER_STENCIL_SIZE\",36194:\"RGB565\",36336:\"LOW_FLOAT\",36337:\"MEDIUM_FLOAT\",36338:\"HIGH_FLOAT\",36339:\"LOW_INT\",36340:\"MEDIUM_INT\",36341:\"HIGH_INT\",36346:\"SHADER_COMPILER\",36347:\"MAX_VERTEX_UNIFORM_VECTORS\",36348:\"MAX_VARYING_VECTORS\",36349:\"MAX_FRAGMENT_UNIFORM_VECTORS\",37440:\"UNPACK_FLIP_Y_WEBGL\",37441:\"UNPACK_PREMULTIPLY_ALPHA_WEBGL\",37442:\"CONTEXT_LOST_WEBGL\",37443:\"UNPACK_COLORSPACE_CONVERSION_WEBGL\",37444:\"BROWSER_DEFAULT_WEBGL\"}},{}],265:[function(t,e,r){var n=t(\"./1.0/numbers\");e.exports=function(t){return n[t]}},{\"./1.0/numbers\":264}],266:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e),o=i(e,[{buffer:r,type:e.FLOAT,size:3,offset:0,stride:40},{buffer:r,type:e.FLOAT,size:4,offset:12,stride:40},{buffer:r,type:e.FLOAT,size:3,offset:28,stride:40}]),l=a(e);l.attributes.position.location=0,l.attributes.color.location=1,l.attributes.offset.location=2;var c=new s(e,r,o,l);return c.update(t),c};var n=t(\"gl-buffer\"),i=t(\"gl-vao\"),a=t(\"./shaders/index\"),o=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function s(t,e,r,n){this.gl=t,this.shader=n,this.buffer=e,this.vao=r,this.pixelRatio=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lineWidth=[1,1,1],this.capSize=[10,10,10],this.lineCount=[0,0,0],this.lineOffset=[0,0,0],this.opacity=1,this.hasAlpha=!1}var l=s.prototype;function c(t,e){for(var r=0;r<3;++r)t[0][r]=Math.min(t[0][r],e[r]),t[1][r]=Math.max(t[1][r],e[r])}l.isOpaque=function(){return!this.hasAlpha},l.isTransparent=function(){return this.hasAlpha},l.drawTransparent=l.draw=function(t){var e=this.gl,r=this.shader.uniforms;this.shader.bind();var n=r.view=t.view||o,i=r.projection=t.projection||o;r.model=t.model||o,r.clipBounds=this.clipBounds,r.opacity=this.opacity;var a=n[12],s=n[13],l=n[14],c=n[15],u=(t._ortho||!1?2:1)*this.pixelRatio*(i[3]*a+i[7]*s+i[11]*l+i[15]*c)/e.drawingBufferHeight;this.vao.bind();for(var f=0;f<3;++f)e.lineWidth(this.lineWidth[f]*this.pixelRatio),r.capSize=this.capSize[f]*u,this.lineCount[f]&&e.drawArrays(e.LINES,this.lineOffset[f],this.lineCount[f]);this.vao.unbind()};var u=function(){for(var t=new Array(3),e=0;e<3;++e){for(var r=[],n=1;n<=2;++n)for(var i=-1;i<=1;i+=2){var a=[0,0,0];a[(n+e)%3]=i,r.push(a)}t[e]=r}return t}();function f(t,e,r,n){for(var i=u[n],a=0;a<i.length;++a){var o=i[a];t.push(e[0],e[1],e[2],r[0],r[1],r[2],r[3],o[0],o[1],o[2])}return i.length}l.update=function(t){\"lineWidth\"in(t=t||{})&&(this.lineWidth=t.lineWidth,Array.isArray(this.lineWidth)||(this.lineWidth=[this.lineWidth,this.lineWidth,this.lineWidth])),\"capSize\"in t&&(this.capSize=t.capSize,Array.isArray(this.capSize)||(this.capSize=[this.capSize,this.capSize,this.capSize])),this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=+t.opacity,this.opacity<1&&(this.hasAlpha=!0));var e=t.color||[[0,0,0],[0,0,0],[0,0,0]],r=t.position,n=t.error;if(Array.isArray(e[0])||(e=[e,e,e]),r&&n){var i=[],a=r.length,o=0;this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.lineCount=[0,0,0];for(var s=0;s<3;++s){this.lineOffset[s]=o;t:for(var l=0;l<a;++l){for(var u=r[l],h=0;h<3;++h)if(isNaN(u[h])||!isFinite(u[h]))continue t;var p=n[l],d=e[s];if(Array.isArray(d[0])&&(d=e[l]),3===d.length?d=[d[0],d[1],d[2],1]:4===d.length&&(d=[d[0],d[1],d[2],d[3]],!this.hasAlpha&&d[3]<1&&(this.hasAlpha=!0)),!isNaN(p[0][s])&&!isNaN(p[1][s])){var g;if(p[0][s]<0)(g=u.slice())[s]+=p[0][s],i.push(u[0],u[1],u[2],d[0],d[1],d[2],d[3],0,0,0,g[0],g[1],g[2],d[0],d[1],d[2],d[3],0,0,0),c(this.bounds,g),o+=2+f(i,g,d,s);if(p[1][s]>0)(g=u.slice())[s]+=p[1][s],i.push(u[0],u[1],u[2],d[0],d[1],d[2],d[3],0,0,0,g[0],g[1],g[2],d[0],d[1],d[2],d[3],0,0,0),c(this.bounds,g),o+=2+f(i,g,d,s)}}this.lineCount[s]=o-this.lineOffset[s]}this.buffer.update(i)}},l.dispose=function(){this.shader.dispose(),this.buffer.dispose(),this.vao.dispose()}},{\"./shaders/index\":268,\"gl-buffer\":259,\"gl-vao\":358}],267:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],268:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),i=t(\"gl-shader\"),a=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, offset;\\nattribute vec4 color;\\nuniform mat4 model, view, projection;\\nuniform float capSize;\\nvarying vec4 fragColor;\\nvarying vec3 fragPosition;\\n\\nvoid main() {\\n  vec4 worldPosition  = model * vec4(position, 1.0);\\n  worldPosition       = (worldPosition / worldPosition.w) + vec4(capSize * offset, 0.0);\\n  gl_Position         = projection * view * worldPosition;\\n  fragColor           = color;\\n  fragPosition        = position;\\n}\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float opacity;\\nvarying vec3 fragPosition;\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  if (\\n    outOfRange(clipBounds[0], clipBounds[1], fragPosition) ||\\n    fragColor.a * opacity == 0.\\n  ) discard;\\n\\n  gl_FragColor = opacity * fragColor;\\n}\"]);e.exports=function(t){return i(t,a,o,null,[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"offset\",type:\"vec3\"}])}},{\"gl-shader\":335,glslify:267}],269:[function(t,e,r){\"use strict\";var n=t(\"gl-texture2d\");e.exports=function(t,e,r,n){i||(i=t.FRAMEBUFFER_UNSUPPORTED,a=t.FRAMEBUFFER_INCOMPLETE_ATTACHMENT,o=t.FRAMEBUFFER_INCOMPLETE_DIMENSIONS,s=t.FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT);var c=t.getExtension(\"WEBGL_draw_buffers\");!l&&c&&function(t,e){var r=t.getParameter(e.MAX_COLOR_ATTACHMENTS_WEBGL);l=new Array(r+1);for(var n=0;n<=r;++n){for(var i=new Array(r),a=0;a<n;++a)i[a]=t.COLOR_ATTACHMENT0+a;for(a=n;a<r;++a)i[a]=t.NONE;l[n]=i}}(t,c);Array.isArray(e)&&(n=r,r=0|e[1],e=0|e[0]);if(\"number\"!=typeof e)throw new Error(\"gl-fbo: Missing shape parameter\");var u=t.getParameter(t.MAX_RENDERBUFFER_SIZE);if(e<0||e>u||r<0||r>u)throw new Error(\"gl-fbo: Parameters are too large for FBO\");var f=1;if(\"color\"in(n=n||{})){if((f=Math.max(0|n.color,0))<0)throw new Error(\"gl-fbo: Must specify a nonnegative number of colors\");if(f>1){if(!c)throw new Error(\"gl-fbo: Multiple draw buffer extension not supported\");if(f>t.getParameter(c.MAX_COLOR_ATTACHMENTS_WEBGL))throw new Error(\"gl-fbo: Context does not support \"+f+\" draw buffers\")}}var h=t.UNSIGNED_BYTE,p=t.getExtension(\"OES_texture_float\");if(n.float&&f>0){if(!p)throw new Error(\"gl-fbo: Context does not support floating point textures\");h=t.FLOAT}else n.preferFloat&&f>0&&p&&(h=t.FLOAT);var g=!0;\"depth\"in n&&(g=!!n.depth);var m=!1;\"stencil\"in n&&(m=!!n.stencil);return new d(t,e,r,h,f,g,m,c)};var i,a,o,s,l=null;function c(t){return[t.getParameter(t.FRAMEBUFFER_BINDING),t.getParameter(t.RENDERBUFFER_BINDING),t.getParameter(t.TEXTURE_BINDING_2D)]}function u(t,e){t.bindFramebuffer(t.FRAMEBUFFER,e[0]),t.bindRenderbuffer(t.RENDERBUFFER,e[1]),t.bindTexture(t.TEXTURE_2D,e[2])}function f(t){switch(t){case i:throw new Error(\"gl-fbo: Framebuffer unsupported\");case a:throw new Error(\"gl-fbo: Framebuffer incomplete attachment\");case o:throw new Error(\"gl-fbo: Framebuffer incomplete dimensions\");case s:throw new Error(\"gl-fbo: Framebuffer incomplete missing attachment\");default:throw new Error(\"gl-fbo: Framebuffer failed for unspecified reason\")}}function h(t,e,r,i,a,o){if(!i)return null;var s=n(t,e,r,a,i);return s.magFilter=t.NEAREST,s.minFilter=t.NEAREST,s.mipSamples=1,s.bind(),t.framebufferTexture2D(t.FRAMEBUFFER,o,t.TEXTURE_2D,s.handle,0),s}function p(t,e,r,n,i){var a=t.createRenderbuffer();return t.bindRenderbuffer(t.RENDERBUFFER,a),t.renderbufferStorage(t.RENDERBUFFER,n,e,r),t.framebufferRenderbuffer(t.FRAMEBUFFER,i,t.RENDERBUFFER,a),a}function d(t,e,r,n,i,a,o,s){this.gl=t,this._shape=[0|e,0|r],this._destroyed=!1,this._ext=s,this.color=new Array(i);for(var d=0;d<i;++d)this.color[d]=null;this._color_rb=null,this.depth=null,this._depth_rb=null,this._colorType=n,this._useDepth=a,this._useStencil=o;var g=this,m=[0|e,0|r];Object.defineProperties(m,{0:{get:function(){return g._shape[0]},set:function(t){return g.width=t}},1:{get:function(){return g._shape[1]},set:function(t){return g.height=t}}}),this._shapeVector=m,function(t){var e=c(t.gl),r=t.gl,n=t.handle=r.createFramebuffer(),i=t._shape[0],a=t._shape[1],o=t.color.length,s=t._ext,d=t._useStencil,g=t._useDepth,m=t._colorType;r.bindFramebuffer(r.FRAMEBUFFER,n);for(var v=0;v<o;++v)t.color[v]=h(r,i,a,m,r.RGBA,r.COLOR_ATTACHMENT0+v);0===o?(t._color_rb=p(r,i,a,r.RGBA4,r.COLOR_ATTACHMENT0),s&&s.drawBuffersWEBGL(l[0])):o>1&&s.drawBuffersWEBGL(l[o]);var y=r.getExtension(\"WEBGL_depth_texture\");y?d?t.depth=h(r,i,a,y.UNSIGNED_INT_24_8_WEBGL,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):g&&(t.depth=h(r,i,a,r.UNSIGNED_SHORT,r.DEPTH_COMPONENT,r.DEPTH_ATTACHMENT)):g&&d?t._depth_rb=p(r,i,a,r.DEPTH_STENCIL,r.DEPTH_STENCIL_ATTACHMENT):g?t._depth_rb=p(r,i,a,r.DEPTH_COMPONENT16,r.DEPTH_ATTACHMENT):d&&(t._depth_rb=p(r,i,a,r.STENCIL_INDEX,r.STENCIL_ATTACHMENT));var x=r.checkFramebufferStatus(r.FRAMEBUFFER);if(x!==r.FRAMEBUFFER_COMPLETE){t._destroyed=!0,r.bindFramebuffer(r.FRAMEBUFFER,null),r.deleteFramebuffer(t.handle),t.handle=null,t.depth&&(t.depth.dispose(),t.depth=null),t._depth_rb&&(r.deleteRenderbuffer(t._depth_rb),t._depth_rb=null);for(v=0;v<t.color.length;++v)t.color[v].dispose(),t.color[v]=null;t._color_rb&&(r.deleteRenderbuffer(t._color_rb),t._color_rb=null),u(r,e),f(x)}u(r,e)}(this)}var g=d.prototype;function m(t,e,r){if(t._destroyed)throw new Error(\"gl-fbo: Can't resize destroyed FBO\");if(t._shape[0]!==e||t._shape[1]!==r){var n=t.gl,i=n.getParameter(n.MAX_RENDERBUFFER_SIZE);if(e<0||e>i||r<0||r>i)throw new Error(\"gl-fbo: Can't resize FBO, invalid dimensions\");t._shape[0]=e,t._shape[1]=r;for(var a=c(n),o=0;o<t.color.length;++o)t.color[o].shape=t._shape;t._color_rb&&(n.bindRenderbuffer(n.RENDERBUFFER,t._color_rb),n.renderbufferStorage(n.RENDERBUFFER,n.RGBA4,t._shape[0],t._shape[1])),t.depth&&(t.depth.shape=t._shape),t._depth_rb&&(n.bindRenderbuffer(n.RENDERBUFFER,t._depth_rb),t._useDepth&&t._useStencil?n.renderbufferStorage(n.RENDERBUFFER,n.DEPTH_STENCIL,t._shape[0],t._shape[1]):t._useDepth?n.renderbufferStorage(n.RENDERBUFFER,n.DEPTH_COMPONENT16,t._shape[0],t._shape[1]):t._useStencil&&n.renderbufferStorage(n.RENDERBUFFER,n.STENCIL_INDEX,t._shape[0],t._shape[1])),n.bindFramebuffer(n.FRAMEBUFFER,t.handle);var s=n.checkFramebufferStatus(n.FRAMEBUFFER);s!==n.FRAMEBUFFER_COMPLETE&&(t.dispose(),u(n,a),f(s)),u(n,a)}}Object.defineProperties(g,{shape:{get:function(){return this._destroyed?[0,0]:this._shapeVector},set:function(t){if(Array.isArray(t)||(t=[0|t,0|t]),2!==t.length)throw new Error(\"gl-fbo: Shape vector must be length 2\");var e=0|t[0],r=0|t[1];return m(this,e,r),[e,r]},enumerable:!1},width:{get:function(){return this._destroyed?0:this._shape[0]},set:function(t){return m(this,t|=0,this._shape[1]),t},enumerable:!1},height:{get:function(){return this._destroyed?0:this._shape[1]},set:function(t){return t|=0,m(this,this._shape[0],t),t},enumerable:!1}}),g.bind=function(){if(!this._destroyed){var t=this.gl;t.bindFramebuffer(t.FRAMEBUFFER,this.handle),t.viewport(0,0,this._shape[0],this._shape[1])}},g.dispose=function(){if(!this._destroyed){this._destroyed=!0;var t=this.gl;t.deleteFramebuffer(this.handle),this.handle=null,this.depth&&(this.depth.dispose(),this.depth=null),this._depth_rb&&(t.deleteRenderbuffer(this._depth_rb),this._depth_rb=null);for(var e=0;e<this.color.length;++e)this.color[e].dispose(),this.color[e]=null;this._color_rb&&(t.deleteRenderbuffer(this._color_rb),this._color_rb=null)}}},{\"gl-texture2d\":353}],270:[function(t,e,r){var n=t(\"sprintf-js\").sprintf,i=t(\"gl-constants/lookup\"),a=t(\"glsl-shader-name\"),o=t(\"add-line-numbers\");e.exports=function(t,e,r){\"use strict\";var s=a(e)||\"of unknown name (see npm glsl-shader-name)\",l=\"unknown type\";void 0!==r&&(l=r===i.FRAGMENT_SHADER?\"fragment\":\"vertex\");for(var c=n(\"Error compiling %s shader %s:\\n\",l,s),u=n(\"%s%s\",c,t),f=t.split(\"\\n\"),h={},p=0;p<f.length;p++){var d=f[p];if(\"\"!==d&&\"\\0\"!==d){var g=parseInt(d.split(\":\")[2]);if(isNaN(g))throw new Error(n(\"Could not parse error: %s\",d));h[g]=d}}var m=o(e).split(\"\\n\");for(p=0;p<m.length;p++)if(h[p+3]||h[p+2]||h[p+1]){var v=m[p];if(c+=v+\"\\n\",h[p+1]){var y=h[p+1];y=y.substr(y.split(\":\",3).join(\":\").length+1).trim(),c+=n(\"^^^ %s\\n\\n\",y)}}return{long:c.trim(),short:u.trim()}}},{\"add-line-numbers\":66,\"gl-constants/lookup\":265,\"glsl-shader-name\":431,\"sprintf-js\":567}],271:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=t.gl,n=o(r,l.vertex,l.fragment),i=o(r,l.pickVertex,l.pickFragment),a=s(r),u=s(r),f=s(r),h=s(r),p=new c(t,n,i,a,u,f,h);return p.update(e),t.addObject(p),p};var n=t(\"binary-search-bounds\"),i=t(\"iota-array\"),a=t(\"typedarray-pool\"),o=t(\"gl-shader\"),s=t(\"gl-buffer\"),l=t(\"./lib/shaders\");function c(t,e,r,n,i,a,o){this.plot=t,this.shader=e,this.pickShader=r,this.positionBuffer=n,this.weightBuffer=i,this.colorBuffer=a,this.idBuffer=o,this.xData=[],this.yData=[],this.shape=[0,0],this.bounds=[1/0,1/0,-1/0,-1/0],this.pickOffset=0}var u,f=c.prototype,h=[0,0,1,0,0,1,1,0,1,1,0,1];f.draw=(u=[1,0,0,0,1,0,0,0,1],function(){var t=this.plot,e=this.shader,r=this.bounds,n=this.numVertices;if(!(n<=0)){var i=t.gl,a=t.dataBox,o=r[2]-r[0],s=r[3]-r[1],l=a[2]-a[0],c=a[3]-a[1];u[0]=2*o/l,u[4]=2*s/c,u[6]=2*(r[0]-a[0])/l-1,u[7]=2*(r[1]-a[1])/c-1,e.bind();var f=e.uniforms;f.viewTransform=u,f.shape=this.shape;var h=e.attributes;this.positionBuffer.bind(),h.position.pointer(),this.weightBuffer.bind(),h.weight.pointer(i.UNSIGNED_BYTE,!1),this.colorBuffer.bind(),h.color.pointer(i.UNSIGNED_BYTE,!0),i.drawArrays(i.TRIANGLES,0,n)}}),f.drawPick=function(){var t=[1,0,0,0,1,0,0,0,1],e=[0,0,0,0];return function(r){var n=this.plot,i=this.pickShader,a=this.bounds,o=this.numVertices;if(!(o<=0)){var s=n.gl,l=n.dataBox,c=a[2]-a[0],u=a[3]-a[1],f=l[2]-l[0],h=l[3]-l[1];t[0]=2*c/f,t[4]=2*u/h,t[6]=2*(a[0]-l[0])/f-1,t[7]=2*(a[1]-l[1])/h-1;for(var p=0;p<4;++p)e[p]=r>>8*p&255;this.pickOffset=r,i.bind();var d=i.uniforms;d.viewTransform=t,d.pickOffset=e,d.shape=this.shape;var g=i.attributes;return this.positionBuffer.bind(),g.position.pointer(),this.weightBuffer.bind(),g.weight.pointer(s.UNSIGNED_BYTE,!1),this.idBuffer.bind(),g.pickId.pointer(s.UNSIGNED_BYTE,!1),s.drawArrays(s.TRIANGLES,0,o),r+this.shape[0]*this.shape[1]}}}(),f.pick=function(t,e,r){var n=this.pickOffset,i=this.shape[0]*this.shape[1];if(r<n||r>=n+i)return null;var a=r-n,o=this.xData,s=this.yData;return{object:this,pointId:a,dataCoord:[o[a%this.shape[0]],s[a/this.shape[0]|0]]}},f.update=function(t){var e=(t=t||{}).shape||[0,0],r=t.x||i(e[0]),o=t.y||i(e[1]),s=t.z||new Float32Array(e[0]*e[1]),l=!1!==t.zsmooth;this.xData=r,this.yData=o;var c,u,f,p,d=t.colorLevels||[0],g=t.colorValues||[0,0,0,1],m=d.length,v=this.bounds;l?(c=v[0]=r[0],u=v[1]=o[0],f=v[2]=r[r.length-1],p=v[3]=o[o.length-1]):(c=v[0]=r[0]+(r[1]-r[0])/2,u=v[1]=o[0]+(o[1]-o[0])/2,f=v[2]=r[r.length-1]+(r[r.length-1]-r[r.length-2])/2,p=v[3]=o[o.length-1]+(o[o.length-1]-o[o.length-2])/2);var y=1/(f-c),x=1/(p-u),b=e[0],_=e[1];this.shape=[b,_];var w=(l?(b-1)*(_-1):b*_)*(h.length>>>1);this.numVertices=w;for(var T=a.mallocUint8(4*w),k=a.mallocFloat32(2*w),M=a.mallocUint8(2*w),A=a.mallocUint32(w),S=0,E=l?b-1:b,C=l?_-1:_,L=0;L<C;++L){var I,P;l?(I=x*(o[L]-u),P=x*(o[L+1]-u)):(I=L<_-1?x*(o[L]-(o[L+1]-o[L])/2-u):x*(o[L]-(o[L]-o[L-1])/2-u),P=L<_-1?x*(o[L]+(o[L+1]-o[L])/2-u):x*(o[L]+(o[L]-o[L-1])/2-u));for(var z=0;z<E;++z){var O,D;l?(O=y*(r[z]-c),D=y*(r[z+1]-c)):(O=z<b-1?y*(r[z]-(r[z+1]-r[z])/2-c):y*(r[z]-(r[z]-r[z-1])/2-c),D=z<b-1?y*(r[z]+(r[z+1]-r[z])/2-c):y*(r[z]+(r[z]-r[z-1])/2-c));for(var R=0;R<h.length;R+=2){var F,B,N,j,U=h[R],V=h[R+1],q=s[l?(L+V)*b+(z+U):L*b+z],H=n.le(d,q);if(H<0)F=g[0],B=g[1],N=g[2],j=g[3];else if(H===m-1)F=g[4*m-4],B=g[4*m-3],N=g[4*m-2],j=g[4*m-1];else{var G=(q-d[H])/(d[H+1]-d[H]),Y=1-G,W=4*H,X=4*(H+1);F=Y*g[W]+G*g[X],B=Y*g[W+1]+G*g[X+1],N=Y*g[W+2]+G*g[X+2],j=Y*g[W+3]+G*g[X+3]}T[4*S]=255*F,T[4*S+1]=255*B,T[4*S+2]=255*N,T[4*S+3]=255*j,k[2*S]=.5*O+.5*D,k[2*S+1]=.5*I+.5*P,M[2*S]=U,M[2*S+1]=V,A[S]=L*b+z,S+=1}}}this.positionBuffer.update(k),this.weightBuffer.update(M),this.colorBuffer.update(T),this.idBuffer.update(A),a.free(k),a.free(T),a.free(M),a.free(A)},f.dispose=function(){this.shader.dispose(),this.pickShader.dispose(),this.positionBuffer.dispose(),this.weightBuffer.dispose(),this.colorBuffer.dispose(),this.idBuffer.dispose(),this.plot.removeObject(this)}},{\"./lib/shaders\":272,\"binary-search-bounds\":96,\"gl-buffer\":259,\"gl-shader\":335,\"iota-array\":463,\"typedarray-pool\":595}],272:[function(t,e,r){\"use strict\";var n=t(\"glslify\");e.exports={fragment:n([\"precision lowp float;\\n#define GLSLIFY 1\\nvarying vec4 fragColor;\\nvoid main() {\\n  gl_FragColor = vec4(fragColor.rgb * fragColor.a, fragColor.a);\\n}\\n\"]),vertex:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\nattribute vec4 color;\\nattribute vec2 weight;\\n\\nuniform vec2 shape;\\nuniform mat3 viewTransform;\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  vec3 vPosition = viewTransform * vec3( position + (weight-.5)/(shape-1.) , 1.0);\\n  fragColor = color;\\n  gl_Position = vec4(vPosition.xy, 0, vPosition.z);\\n}\\n\"]),pickFragment:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragId;\\nvarying vec2 vWeight;\\n\\nuniform vec2 shape;\\nuniform vec4 pickOffset;\\n\\nvoid main() {\\n  vec2 d = step(.5, vWeight);\\n  vec4 id = fragId + pickOffset;\\n  id.x += d.x + d.y*shape.x;\\n\\n  id.y += floor(id.x / 256.0);\\n  id.x -= floor(id.x / 256.0) * 256.0;\\n\\n  id.z += floor(id.y / 256.0);\\n  id.y -= floor(id.y / 256.0) * 256.0;\\n\\n  id.w += floor(id.z / 256.0);\\n  id.z -= floor(id.z / 256.0) * 256.0;\\n\\n  gl_FragColor = id/255.;\\n}\\n\"]),pickVertex:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\nattribute vec4 pickId;\\nattribute vec2 weight;\\n\\nuniform vec2 shape;\\nuniform mat3 viewTransform;\\n\\nvarying vec4 fragId;\\nvarying vec2 vWeight;\\n\\nvoid main() {\\n  vWeight = weight;\\n\\n  fragId = pickId;\\n\\n  vec3 vPosition = viewTransform * vec3( position + (weight-.5)/(shape-1.) , 1.0);\\n  gl_Position = vec4(vPosition.xy, 0, vPosition.z);\\n}\\n\"])}},{glslify:273}],273:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],274:[function(t,e,r){var n=t(\"glslify\"),i=t(\"gl-shader\"),a=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, nextPosition;\\nattribute float arcLength, lineWidth;\\nattribute vec4 color;\\n\\nuniform vec2 screenShape;\\nuniform float pixelRatio;\\nuniform mat4 model, view, projection;\\n\\nvarying vec4 fragColor;\\nvarying vec3 worldPosition;\\nvarying float pixelArcLength;\\n\\nvec4 project(vec3 p) {\\n  return projection * view * model * vec4(p, 1.0);\\n}\\n\\nvoid main() {\\n  vec4 startPoint = project(position);\\n  vec4 endPoint   = project(nextPosition);\\n\\n  vec2 A = startPoint.xy / startPoint.w;\\n  vec2 B =   endPoint.xy /   endPoint.w;\\n\\n  float clipAngle = atan(\\n    (B.y - A.y) * screenShape.y,\\n    (B.x - A.x) * screenShape.x\\n  );\\n\\n  vec2 offset = 0.5 * pixelRatio * lineWidth * vec2(\\n    sin(clipAngle),\\n    -cos(clipAngle)\\n  ) / screenShape;\\n\\n  gl_Position = vec4(startPoint.xy + startPoint.w * offset, startPoint.zw);\\n\\n  worldPosition = position;\\n  pixelArcLength = arcLength;\\n  fragColor = color;\\n}\\n\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3      clipBounds[2];\\nuniform sampler2D dashTexture;\\nuniform float     dashScale;\\nuniform float     opacity;\\n\\nvarying vec3    worldPosition;\\nvarying float   pixelArcLength;\\nvarying vec4    fragColor;\\n\\nvoid main() {\\n  if (\\n    outOfRange(clipBounds[0], clipBounds[1], worldPosition) ||\\n    fragColor.a * opacity == 0.\\n  ) discard;\\n\\n  float dashWeight = texture2D(dashTexture, vec2(dashScale * pixelArcLength, 0)).r;\\n  if(dashWeight < 0.5) {\\n    discard;\\n  }\\n  gl_FragColor = fragColor * opacity;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\n#define FLOAT_MAX  1.70141184e38\\n#define FLOAT_MIN  1.17549435e-38\\n\\n// https://github.com/mikolalysenko/glsl-read-float/blob/master/index.glsl\\nvec4 packFloat(float v) {\\n  float av = abs(v);\\n\\n  //Handle special cases\\n  if(av < FLOAT_MIN) {\\n    return vec4(0.0, 0.0, 0.0, 0.0);\\n  } else if(v > FLOAT_MAX) {\\n    return vec4(127.0, 128.0, 0.0, 0.0) / 255.0;\\n  } else if(v < -FLOAT_MAX) {\\n    return vec4(255.0, 128.0, 0.0, 0.0) / 255.0;\\n  }\\n\\n  vec4 c = vec4(0,0,0,0);\\n\\n  //Compute exponent and mantissa\\n  float e = floor(log2(av));\\n  float m = av * pow(2.0, -e) - 1.0;\\n\\n  //Unpack mantissa\\n  c[1] = floor(128.0 * m);\\n  m -= c[1] / 128.0;\\n  c[2] = floor(32768.0 * m);\\n  m -= c[2] / 32768.0;\\n  c[3] = floor(8388608.0 * m);\\n\\n  //Unpack exponent\\n  float ebias = e + 127.0;\\n  c[0] = floor(ebias / 2.0);\\n  ebias -= c[0] * 2.0;\\n  c[1] += floor(ebias) * 128.0;\\n\\n  //Unpack sign bit\\n  c[0] += 128.0 * step(0.0, -v);\\n\\n  //Scale back to range\\n  return c / 255.0;\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform float pickId;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec3 worldPosition;\\nvarying float pixelArcLength;\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], worldPosition)) discard;\\n\\n  gl_FragColor = vec4(pickId/255.0, packFloat(pixelArcLength).xyz);\\n}\"]),l=[{name:\"position\",type:\"vec3\"},{name:\"nextPosition\",type:\"vec3\"},{name:\"arcLength\",type:\"float\"},{name:\"lineWidth\",type:\"float\"},{name:\"color\",type:\"vec4\"}];r.createShader=function(t){return i(t,a,o,null,l)},r.createPickShader=function(t){return i(t,a,s,null,l)}},{\"gl-shader\":335,glslify:276}],275:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl||t.scene&&t.scene.gl,r=f(e);r.attributes.position.location=0,r.attributes.nextPosition.location=1,r.attributes.arcLength.location=2,r.attributes.lineWidth.location=3,r.attributes.color.location=4;var o=h(e);o.attributes.position.location=0,o.attributes.nextPosition.location=1,o.attributes.arcLength.location=2,o.attributes.lineWidth.location=3,o.attributes.color.location=4;for(var s=n(e),l=i(e,[{buffer:s,size:3,offset:0,stride:48},{buffer:s,size:3,offset:12,stride:48},{buffer:s,size:1,offset:24,stride:48},{buffer:s,size:1,offset:28,stride:48},{buffer:s,size:4,offset:32,stride:48}]),u=c(new Array(1024),[256,1,4]),p=0;p<1024;++p)u.data[p]=255;var d=a(e,u);d.wrap=e.REPEAT;var g=new v(e,r,o,s,l,d);return g.update(t),g};var n=t(\"gl-buffer\"),i=t(\"gl-vao\"),a=t(\"gl-texture2d\"),o=new Uint8Array(4),s=new Float32Array(o.buffer);var l=t(\"binary-search-bounds\"),c=t(\"ndarray\"),u=t(\"./lib/shaders\"),f=u.createShader,h=u.createPickShader,p=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function d(t,e){for(var r=0,n=0;n<3;++n){var i=t[n]-e[n];r+=i*i}return Math.sqrt(r)}function g(t){for(var e=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],r=0;r<3;++r)e[0][r]=Math.max(t[0][r],e[0][r]),e[1][r]=Math.min(t[1][r],e[1][r]);return e}function m(t,e,r,n){this.arcLength=t,this.position=e,this.index=r,this.dataCoordinate=n}function v(t,e,r,n,i,a){this.gl=t,this.shader=e,this.pickShader=r,this.buffer=n,this.vao=i,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.points=[],this.arcLength=[],this.vertexCount=0,this.bounds=[[0,0,0],[0,0,0]],this.pickId=0,this.lineWidth=1,this.texture=a,this.dashScale=1,this.opacity=1,this.hasAlpha=!1,this.dirty=!0,this.pixelRatio=1}var y=v.prototype;y.isTransparent=function(){return this.hasAlpha},y.isOpaque=function(){return!this.hasAlpha},y.pickSlots=1,y.setPickBase=function(t){this.pickId=t},y.drawTransparent=y.draw=function(t){if(this.vertexCount){var e=this.gl,r=this.shader,n=this.vao;r.bind(),r.uniforms={model:t.model||p,view:t.view||p,projection:t.projection||p,clipBounds:g(this.clipBounds),dashTexture:this.texture.bind(),dashScale:this.dashScale/this.arcLength[this.arcLength.length-1],opacity:this.opacity,screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount),n.unbind()}},y.drawPick=function(t){if(this.vertexCount){var e=this.gl,r=this.pickShader,n=this.vao;r.bind(),r.uniforms={model:t.model||p,view:t.view||p,projection:t.projection||p,pickId:this.pickId,clipBounds:g(this.clipBounds),screenShape:[e.drawingBufferWidth,e.drawingBufferHeight],pixelRatio:this.pixelRatio},n.bind(),n.draw(e.TRIANGLE_STRIP,this.vertexCount),n.unbind()}},y.update=function(t){var e,r;this.dirty=!0;var n=!!t.connectGaps;\"dashScale\"in t&&(this.dashScale=t.dashScale),this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=+t.opacity,this.opacity<1&&(this.hasAlpha=!0));var i=[],a=[],o=[],s=0,u=0,f=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],h=t.position||t.positions;if(h){var p=t.color||t.colors||[0,0,0,1],g=t.lineWidth||1,m=!1;t:for(e=1;e<h.length;++e){var v,y,x,b=h[e-1],_=h[e];for(a.push(s),o.push(b.slice()),r=0;r<3;++r){if(isNaN(b[r])||isNaN(_[r])||!isFinite(b[r])||!isFinite(_[r])){if(!n&&i.length>0){for(var w=0;w<24;++w)i.push(i[i.length-12]);u+=2,m=!0}continue t}f[0][r]=Math.min(f[0][r],b[r],_[r]),f[1][r]=Math.max(f[1][r],b[r],_[r])}Array.isArray(p[0])?(v=p.length>e-1?p[e-1]:p.length>0?p[p.length-1]:[0,0,0,1],y=p.length>e?p[e]:p.length>0?p[p.length-1]:[0,0,0,1]):v=y=p,3===v.length&&(v=[v[0],v[1],v[2],1]),3===y.length&&(y=[y[0],y[1],y[2],1]),!this.hasAlpha&&v[3]<1&&(this.hasAlpha=!0),x=Array.isArray(g)?g.length>e-1?g[e-1]:g.length>0?g[g.length-1]:[0,0,0,1]:g;var T=s;if(s+=d(b,_),m){for(r=0;r<2;++r)i.push(b[0],b[1],b[2],_[0],_[1],_[2],T,x,v[0],v[1],v[2],v[3]);u+=2,m=!1}i.push(b[0],b[1],b[2],_[0],_[1],_[2],T,x,v[0],v[1],v[2],v[3],b[0],b[1],b[2],_[0],_[1],_[2],T,-x,v[0],v[1],v[2],v[3],_[0],_[1],_[2],b[0],b[1],b[2],s,-x,y[0],y[1],y[2],y[3],_[0],_[1],_[2],b[0],b[1],b[2],s,x,y[0],y[1],y[2],y[3]),u+=4}}if(this.buffer.update(i),a.push(s),o.push(h[h.length-1].slice()),this.bounds=f,this.vertexCount=u,this.points=o,this.arcLength=a,\"dashes\"in t){var k=t.dashes.slice();for(k.unshift(0),e=1;e<k.length;++e)k[e]=k[e-1]+k[e];var M=c(new Array(1024),[256,1,4]);for(e=0;e<256;++e){for(r=0;r<4;++r)M.set(e,0,r,0);1&l.le(k,k[k.length-1]*e/255)?M.set(e,0,0,0):M.set(e,0,0,255)}this.texture.setPixels(M)}},y.dispose=function(){this.shader.dispose(),this.vao.dispose(),this.buffer.dispose()},y.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=function(t,e,r,n){return o[0]=n,o[1]=r,o[2]=e,o[3]=t,s[0]}(t.value[0],t.value[1],t.value[2],0),r=l.le(this.arcLength,e);if(r<0)return null;if(r===this.arcLength.length-1)return new m(this.arcLength[this.arcLength.length-1],this.points[this.points.length-1].slice(),r);for(var n=this.points[r],i=this.points[Math.min(r+1,this.points.length-1)],a=(e-this.arcLength[r])/(this.arcLength[r+1]-this.arcLength[r]),c=1-a,u=[0,0,0],f=0;f<3;++f)u[f]=c*n[f]+a*i[f];var h=Math.min(a<.5?r:r+1,this.points.length-1);return new m(e,u,h,this.points[h])}},{\"./lib/shaders\":274,\"binary-search-bounds\":96,\"gl-buffer\":259,\"gl-texture2d\":353,\"gl-vao\":358,ndarray:495}],276:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],277:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],i=e[2],a=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],f=e[9],h=e[10],p=e[11],d=e[12],g=e[13],m=e[14],v=e[15];return t[0]=s*(h*v-p*m)-f*(l*v-c*m)+g*(l*p-c*h),t[1]=-(n*(h*v-p*m)-f*(i*v-a*m)+g*(i*p-a*h)),t[2]=n*(l*v-c*m)-s*(i*v-a*m)+g*(i*c-a*l),t[3]=-(n*(l*p-c*h)-s*(i*p-a*h)+f*(i*c-a*l)),t[4]=-(o*(h*v-p*m)-u*(l*v-c*m)+d*(l*p-c*h)),t[5]=r*(h*v-p*m)-u*(i*v-a*m)+d*(i*p-a*h),t[6]=-(r*(l*v-c*m)-o*(i*v-a*m)+d*(i*c-a*l)),t[7]=r*(l*p-c*h)-o*(i*p-a*h)+u*(i*c-a*l),t[8]=o*(f*v-p*g)-u*(s*v-c*g)+d*(s*p-c*f),t[9]=-(r*(f*v-p*g)-u*(n*v-a*g)+d*(n*p-a*f)),t[10]=r*(s*v-c*g)-o*(n*v-a*g)+d*(n*c-a*s),t[11]=-(r*(s*p-c*f)-o*(n*p-a*f)+u*(n*c-a*s)),t[12]=-(o*(f*m-h*g)-u*(s*m-l*g)+d*(s*h-l*f)),t[13]=r*(f*m-h*g)-u*(n*m-i*g)+d*(n*h-i*f),t[14]=-(r*(s*m-l*g)-o*(n*m-i*g)+d*(n*l-i*s)),t[15]=r*(s*h-l*f)-o*(n*h-i*f)+u*(n*l-i*s),t}},{}],278:[function(t,e,r){e.exports=function(t){var e=new Float32Array(16);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e}},{}],279:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t[6]=e[6],t[7]=e[7],t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t}},{}],280:[function(t,e,r){e.exports=function(){var t=new Float32Array(16);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],281:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],i=t[3],a=t[4],o=t[5],s=t[6],l=t[7],c=t[8],u=t[9],f=t[10],h=t[11],p=t[12],d=t[13],g=t[14],m=t[15];return(e*o-r*a)*(f*m-h*g)-(e*s-n*a)*(u*m-h*d)+(e*l-i*a)*(u*g-f*d)+(r*s-n*o)*(c*m-h*p)-(r*l-i*o)*(c*g-f*p)+(n*l-i*s)*(c*d-u*p)}},{}],282:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],i=e[2],a=e[3],o=r+r,s=n+n,l=i+i,c=r*o,u=n*o,f=n*s,h=i*o,p=i*s,d=i*l,g=a*o,m=a*s,v=a*l;return t[0]=1-f-d,t[1]=u+v,t[2]=h-m,t[3]=0,t[4]=u-v,t[5]=1-c-d,t[6]=p+g,t[7]=0,t[8]=h+m,t[9]=p-g,t[10]=1-c-f,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],283:[function(t,e,r){e.exports=function(t,e,r){var n,i,a,o=r[0],s=r[1],l=r[2],c=Math.sqrt(o*o+s*s+l*l);if(Math.abs(c)<1e-6)return null;return o*=c=1/c,s*=c,l*=c,n=Math.sin(e),i=Math.cos(e),a=1-i,t[0]=o*o*a+i,t[1]=s*o*a+l*n,t[2]=l*o*a-s*n,t[3]=0,t[4]=o*s*a-l*n,t[5]=s*s*a+i,t[6]=l*s*a+o*n,t[7]=0,t[8]=o*l*a+s*n,t[9]=s*l*a-o*n,t[10]=l*l*a+i,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],284:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=e[3],s=n+n,l=i+i,c=a+a,u=n*s,f=n*l,h=n*c,p=i*l,d=i*c,g=a*c,m=o*s,v=o*l,y=o*c;return t[0]=1-(p+g),t[1]=f+y,t[2]=h-v,t[3]=0,t[4]=f-y,t[5]=1-(u+g),t[6]=d+m,t[7]=0,t[8]=h+v,t[9]=d-m,t[10]=1-(u+p),t[11]=0,t[12]=r[0],t[13]=r[1],t[14]=r[2],t[15]=1,t}},{}],285:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=e[1],t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=e[2],t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],286:[function(t,e,r){e.exports=function(t,e){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=e[0],t[13]=e[1],t[14]=e[2],t[15]=1,t}},{}],287:[function(t,e,r){e.exports=function(t,e){var r=Math.sin(e),n=Math.cos(e);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=n,t[6]=r,t[7]=0,t[8]=0,t[9]=-r,t[10]=n,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],288:[function(t,e,r){e.exports=function(t,e){var r=Math.sin(e),n=Math.cos(e);return t[0]=n,t[1]=0,t[2]=-r,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=r,t[9]=0,t[10]=n,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],289:[function(t,e,r){e.exports=function(t,e){var r=Math.sin(e),n=Math.cos(e);return t[0]=n,t[1]=r,t[2]=0,t[3]=0,t[4]=-r,t[5]=n,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],290:[function(t,e,r){e.exports=function(t,e,r,n,i,a,o){var s=1/(r-e),l=1/(i-n),c=1/(a-o);return t[0]=2*a*s,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=2*a*l,t[6]=0,t[7]=0,t[8]=(r+e)*s,t[9]=(i+n)*l,t[10]=(o+a)*c,t[11]=-1,t[12]=0,t[13]=0,t[14]=o*a*2*c,t[15]=0,t}},{}],291:[function(t,e,r){e.exports=function(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}},{}],292:[function(t,e,r){e.exports={create:t(\"./create\"),clone:t(\"./clone\"),copy:t(\"./copy\"),identity:t(\"./identity\"),transpose:t(\"./transpose\"),invert:t(\"./invert\"),adjoint:t(\"./adjoint\"),determinant:t(\"./determinant\"),multiply:t(\"./multiply\"),translate:t(\"./translate\"),scale:t(\"./scale\"),rotate:t(\"./rotate\"),rotateX:t(\"./rotateX\"),rotateY:t(\"./rotateY\"),rotateZ:t(\"./rotateZ\"),fromRotation:t(\"./fromRotation\"),fromRotationTranslation:t(\"./fromRotationTranslation\"),fromScaling:t(\"./fromScaling\"),fromTranslation:t(\"./fromTranslation\"),fromXRotation:t(\"./fromXRotation\"),fromYRotation:t(\"./fromYRotation\"),fromZRotation:t(\"./fromZRotation\"),fromQuat:t(\"./fromQuat\"),frustum:t(\"./frustum\"),perspective:t(\"./perspective\"),perspectiveFromFieldOfView:t(\"./perspectiveFromFieldOfView\"),ortho:t(\"./ortho\"),lookAt:t(\"./lookAt\"),str:t(\"./str\")}},{\"./adjoint\":277,\"./clone\":278,\"./copy\":279,\"./create\":280,\"./determinant\":281,\"./fromQuat\":282,\"./fromRotation\":283,\"./fromRotationTranslation\":284,\"./fromScaling\":285,\"./fromTranslation\":286,\"./fromXRotation\":287,\"./fromYRotation\":288,\"./fromZRotation\":289,\"./frustum\":290,\"./identity\":291,\"./invert\":293,\"./lookAt\":294,\"./multiply\":295,\"./ortho\":296,\"./perspective\":297,\"./perspectiveFromFieldOfView\":298,\"./rotate\":299,\"./rotateX\":300,\"./rotateY\":301,\"./rotateZ\":302,\"./scale\":303,\"./str\":304,\"./translate\":305,\"./transpose\":306}],293:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],i=e[2],a=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],f=e[9],h=e[10],p=e[11],d=e[12],g=e[13],m=e[14],v=e[15],y=r*s-n*o,x=r*l-i*o,b=r*c-a*o,_=n*l-i*s,w=n*c-a*s,T=i*c-a*l,k=u*g-f*d,M=u*m-h*d,A=u*v-p*d,S=f*m-h*g,E=f*v-p*g,C=h*v-p*m,L=y*C-x*E+b*S+_*A-w*M+T*k;if(!L)return null;return L=1/L,t[0]=(s*C-l*E+c*S)*L,t[1]=(i*E-n*C-a*S)*L,t[2]=(g*T-m*w+v*_)*L,t[3]=(h*w-f*T-p*_)*L,t[4]=(l*A-o*C-c*M)*L,t[5]=(r*C-i*A+a*M)*L,t[6]=(m*b-d*T-v*x)*L,t[7]=(u*T-h*b+p*x)*L,t[8]=(o*E-s*A+c*k)*L,t[9]=(n*A-r*E-a*k)*L,t[10]=(d*w-g*b+v*y)*L,t[11]=(f*b-u*w-p*y)*L,t[12]=(s*M-o*S-l*k)*L,t[13]=(r*S-n*M+i*k)*L,t[14]=(g*x-d*_-m*y)*L,t[15]=(u*_-f*x+h*y)*L,t}},{}],294:[function(t,e,r){var n=t(\"./identity\");e.exports=function(t,e,r,i){var a,o,s,l,c,u,f,h,p,d,g=e[0],m=e[1],v=e[2],y=i[0],x=i[1],b=i[2],_=r[0],w=r[1],T=r[2];if(Math.abs(g-_)<1e-6&&Math.abs(m-w)<1e-6&&Math.abs(v-T)<1e-6)return n(t);f=g-_,h=m-w,p=v-T,d=1/Math.sqrt(f*f+h*h+p*p),a=x*(p*=d)-b*(h*=d),o=b*(f*=d)-y*p,s=y*h-x*f,(d=Math.sqrt(a*a+o*o+s*s))?(a*=d=1/d,o*=d,s*=d):(a=0,o=0,s=0);l=h*s-p*o,c=p*a-f*s,u=f*o-h*a,(d=Math.sqrt(l*l+c*c+u*u))?(l*=d=1/d,c*=d,u*=d):(l=0,c=0,u=0);return t[0]=a,t[1]=l,t[2]=f,t[3]=0,t[4]=o,t[5]=c,t[6]=h,t[7]=0,t[8]=s,t[9]=u,t[10]=p,t[11]=0,t[12]=-(a*g+o*m+s*v),t[13]=-(l*g+c*m+u*v),t[14]=-(f*g+h*m+p*v),t[15]=1,t}},{\"./identity\":291}],295:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],f=e[8],h=e[9],p=e[10],d=e[11],g=e[12],m=e[13],v=e[14],y=e[15],x=r[0],b=r[1],_=r[2],w=r[3];return t[0]=x*n+b*s+_*f+w*g,t[1]=x*i+b*l+_*h+w*m,t[2]=x*a+b*c+_*p+w*v,t[3]=x*o+b*u+_*d+w*y,x=r[4],b=r[5],_=r[6],w=r[7],t[4]=x*n+b*s+_*f+w*g,t[5]=x*i+b*l+_*h+w*m,t[6]=x*a+b*c+_*p+w*v,t[7]=x*o+b*u+_*d+w*y,x=r[8],b=r[9],_=r[10],w=r[11],t[8]=x*n+b*s+_*f+w*g,t[9]=x*i+b*l+_*h+w*m,t[10]=x*a+b*c+_*p+w*v,t[11]=x*o+b*u+_*d+w*y,x=r[12],b=r[13],_=r[14],w=r[15],t[12]=x*n+b*s+_*f+w*g,t[13]=x*i+b*l+_*h+w*m,t[14]=x*a+b*c+_*p+w*v,t[15]=x*o+b*u+_*d+w*y,t}},{}],296:[function(t,e,r){e.exports=function(t,e,r,n,i,a,o){var s=1/(e-r),l=1/(n-i),c=1/(a-o);return t[0]=-2*s,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*l,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*c,t[11]=0,t[12]=(e+r)*s,t[13]=(i+n)*l,t[14]=(o+a)*c,t[15]=1,t}},{}],297:[function(t,e,r){e.exports=function(t,e,r,n,i){var a=1/Math.tan(e/2),o=1/(n-i);return t[0]=a/r,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=a,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=(i+n)*o,t[11]=-1,t[12]=0,t[13]=0,t[14]=2*i*n*o,t[15]=0,t}},{}],298:[function(t,e,r){e.exports=function(t,e,r,n){var i=Math.tan(e.upDegrees*Math.PI/180),a=Math.tan(e.downDegrees*Math.PI/180),o=Math.tan(e.leftDegrees*Math.PI/180),s=Math.tan(e.rightDegrees*Math.PI/180),l=2/(o+s),c=2/(i+a);return t[0]=l,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=c,t[6]=0,t[7]=0,t[8]=-(o-s)*l*.5,t[9]=(i-a)*c*.5,t[10]=n/(r-n),t[11]=-1,t[12]=0,t[13]=0,t[14]=n*r/(r-n),t[15]=0,t}},{}],299:[function(t,e,r){e.exports=function(t,e,r,n){var i,a,o,s,l,c,u,f,h,p,d,g,m,v,y,x,b,_,w,T,k,M,A,S,E=n[0],C=n[1],L=n[2],I=Math.sqrt(E*E+C*C+L*L);if(Math.abs(I)<1e-6)return null;E*=I=1/I,C*=I,L*=I,i=Math.sin(r),a=Math.cos(r),o=1-a,s=e[0],l=e[1],c=e[2],u=e[3],f=e[4],h=e[5],p=e[6],d=e[7],g=e[8],m=e[9],v=e[10],y=e[11],x=E*E*o+a,b=C*E*o+L*i,_=L*E*o-C*i,w=E*C*o-L*i,T=C*C*o+a,k=L*C*o+E*i,M=E*L*o+C*i,A=C*L*o-E*i,S=L*L*o+a,t[0]=s*x+f*b+g*_,t[1]=l*x+h*b+m*_,t[2]=c*x+p*b+v*_,t[3]=u*x+d*b+y*_,t[4]=s*w+f*T+g*k,t[5]=l*w+h*T+m*k,t[6]=c*w+p*T+v*k,t[7]=u*w+d*T+y*k,t[8]=s*M+f*A+g*S,t[9]=l*M+h*A+m*S,t[10]=c*M+p*A+v*S,t[11]=u*M+d*A+y*S,e!==t&&(t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t}},{}],300:[function(t,e,r){e.exports=function(t,e,r){var n=Math.sin(r),i=Math.cos(r),a=e[4],o=e[5],s=e[6],l=e[7],c=e[8],u=e[9],f=e[10],h=e[11];e!==t&&(t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t[4]=a*i+c*n,t[5]=o*i+u*n,t[6]=s*i+f*n,t[7]=l*i+h*n,t[8]=c*i-a*n,t[9]=u*i-o*n,t[10]=f*i-s*n,t[11]=h*i-l*n,t}},{}],301:[function(t,e,r){e.exports=function(t,e,r){var n=Math.sin(r),i=Math.cos(r),a=e[0],o=e[1],s=e[2],l=e[3],c=e[8],u=e[9],f=e[10],h=e[11];e!==t&&(t[4]=e[4],t[5]=e[5],t[6]=e[6],t[7]=e[7],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t[0]=a*i-c*n,t[1]=o*i-u*n,t[2]=s*i-f*n,t[3]=l*i-h*n,t[8]=a*n+c*i,t[9]=o*n+u*i,t[10]=s*n+f*i,t[11]=l*n+h*i,t}},{}],302:[function(t,e,r){e.exports=function(t,e,r){var n=Math.sin(r),i=Math.cos(r),a=e[0],o=e[1],s=e[2],l=e[3],c=e[4],u=e[5],f=e[6],h=e[7];e!==t&&(t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]);return t[0]=a*i+c*n,t[1]=o*i+u*n,t[2]=s*i+f*n,t[3]=l*i+h*n,t[4]=c*i-a*n,t[5]=u*i-o*n,t[6]=f*i-s*n,t[7]=h*i-l*n,t}},{}],303:[function(t,e,r){e.exports=function(t,e,r){var n=r[0],i=r[1],a=r[2];return t[0]=e[0]*n,t[1]=e[1]*n,t[2]=e[2]*n,t[3]=e[3]*n,t[4]=e[4]*i,t[5]=e[5]*i,t[6]=e[6]*i,t[7]=e[7]*i,t[8]=e[8]*a,t[9]=e[9]*a,t[10]=e[10]*a,t[11]=e[11]*a,t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t}},{}],304:[function(t,e,r){e.exports=function(t){return\"mat4(\"+t[0]+\", \"+t[1]+\", \"+t[2]+\", \"+t[3]+\", \"+t[4]+\", \"+t[5]+\", \"+t[6]+\", \"+t[7]+\", \"+t[8]+\", \"+t[9]+\", \"+t[10]+\", \"+t[11]+\", \"+t[12]+\", \"+t[13]+\", \"+t[14]+\", \"+t[15]+\")\"}},{}],305:[function(t,e,r){e.exports=function(t,e,r){var n,i,a,o,s,l,c,u,f,h,p,d,g=r[0],m=r[1],v=r[2];e===t?(t[12]=e[0]*g+e[4]*m+e[8]*v+e[12],t[13]=e[1]*g+e[5]*m+e[9]*v+e[13],t[14]=e[2]*g+e[6]*m+e[10]*v+e[14],t[15]=e[3]*g+e[7]*m+e[11]*v+e[15]):(n=e[0],i=e[1],a=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],f=e[8],h=e[9],p=e[10],d=e[11],t[0]=n,t[1]=i,t[2]=a,t[3]=o,t[4]=s,t[5]=l,t[6]=c,t[7]=u,t[8]=f,t[9]=h,t[10]=p,t[11]=d,t[12]=n*g+s*m+f*v+e[12],t[13]=i*g+l*m+h*v+e[13],t[14]=a*g+c*m+p*v+e[14],t[15]=o*g+u*m+d*v+e[15]);return t}},{}],306:[function(t,e,r){e.exports=function(t,e){if(t===e){var r=e[1],n=e[2],i=e[3],a=e[6],o=e[7],s=e[11];t[1]=e[4],t[2]=e[8],t[3]=e[12],t[4]=r,t[6]=e[9],t[7]=e[13],t[8]=n,t[9]=a,t[11]=e[14],t[12]=i,t[13]=o,t[14]=s}else t[0]=e[0],t[1]=e[4],t[2]=e[8],t[3]=e[12],t[4]=e[1],t[5]=e[5],t[6]=e[9],t[7]=e[13],t[8]=e[2],t[9]=e[6],t[10]=e[10],t[11]=e[14],t[12]=e[3],t[13]=e[7],t[14]=e[11],t[15]=e[15];return t}},{}],307:[function(t,e,r){\"use strict\";var n=t(\"barycentric\"),i=t(\"polytope-closest-point/lib/closest_point_2d.js\");function a(t,e){for(var r=[0,0,0,0],n=0;n<4;++n)for(var i=0;i<4;++i)r[i]+=t[4*n+i]*e[n];return r}function o(t,e,r,n,i){for(var o=a(n,a(r,a(e,[t[0],t[1],t[2],1]))),s=0;s<3;++s)o[s]/=o[3];return[.5*i[0]*(1+o[0]),.5*i[1]*(1-o[1])]}function s(t,e){for(var r=[0,0,0],n=0;n<t.length;++n)for(var i=t[n],a=e[n],o=0;o<3;++o)r[o]+=a*i[o];return r}e.exports=function(t,e,r,a,l,c){if(1===t.length)return[0,t[0].slice()];for(var u=new Array(t.length),f=0;f<t.length;++f)u[f]=o(t[f],r,a,l,c);var h=0,p=1/0;for(f=0;f<u.length;++f){for(var d=0,g=0;g<2;++g)d+=Math.pow(u[f][g]-e[g],2);d<p&&(p=d,h=f)}var m=function(t,e){if(2===t.length){for(var r=0,a=0,o=0;o<2;++o)r+=Math.pow(e[o]-t[0][o],2),a+=Math.pow(e[o]-t[1][o],2);return r=Math.sqrt(r),a=Math.sqrt(a),r+a<1e-6?[1,0]:[a/(r+a),r/(a+r)]}if(3===t.length){var s=[0,0];return i(t[0],t[1],t[2],e,s),n(t,s)}return[]}(u,e),v=0;for(f=0;f<3;++f){if(m[f]<-.001||m[f]>1.0001)return null;v+=m[f]}if(Math.abs(v-1)>.001)return null;return[h,s(t,m),m]}},{barycentric:78,\"polytope-closest-point/lib/closest_point_2d.js\":525}],308:[function(t,e,r){var n=t(\"glslify\"),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, normal;\\nattribute vec4 color;\\nattribute vec2 uv;\\n\\nuniform mat4 model\\n           , view\\n           , projection\\n           , inverseModel;\\nuniform vec3 eyePosition\\n           , lightPosition;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvec4 project(vec3 p) {\\n  return projection * view * model * vec4(p, 1.0);\\n}\\n\\nvoid main() {\\n  gl_Position      = project(position);\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * vec4(position , 1.0);\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n  f_eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  f_normal  = normalize((vec4(normal, 0.0) * inverseModel).xyz);\\n\\n  f_color          = color;\\n  f_data           = position;\\n  f_uv             = uv;\\n}\\n\"]),a=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness,\\n  float fresnel) {\\n\\n  float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n  float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n  //Half angle vector\\n  vec3 H = normalize(lightDirection + viewDirection);\\n\\n  //Geometric term\\n  float NdotH = max(dot(surfaceNormal, H), 0.0);\\n  float VdotH = max(dot(viewDirection, H), 0.000001);\\n  float LdotH = max(dot(lightDirection, H), 0.000001);\\n  float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n  float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n  float G = min(1.0, min(G1, G2));\\n  \\n  //Distribution term\\n  float D = beckmannDistribution(NdotH, roughness);\\n\\n  //Fresnel term\\n  float F = pow(1.0 - VdotN, fresnel);\\n\\n  //Multiply terms and done\\n  return  G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\n//#pragma glslify: beckmann = require(glsl-specular-beckmann) // used in gl-surface3d\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness\\n            , fresnel\\n            , kambient\\n            , kdiffuse\\n            , kspecular;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal\\n           , f_lightDirection\\n           , f_eyeDirection\\n           , f_data;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (f_color.a == 0.0 ||\\n    outOfRange(clipBounds[0], clipBounds[1], f_data)\\n  ) discard;\\n\\n  vec3 N = normalize(f_normal);\\n  vec3 L = normalize(f_lightDirection);\\n  vec3 V = normalize(f_eyeDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n  //float specular = max(0.0, beckmann(L, V, N, roughness)); // used in gl-surface3d\\n\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  vec4 surfaceColor = vec4(f_color.rgb, 1.0) * texture2D(texture, f_uv);\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = litColor * f_color.a;\\n}\\n\"]),o=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 uv;\\n\\nuniform mat4 model, view, projection;\\n\\nvarying vec4 f_color;\\nvarying vec3 f_data;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\n  f_color = color;\\n  f_data  = position;\\n  f_uv    = uv;\\n}\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform sampler2D texture;\\nuniform float opacity;\\n\\nvarying vec4 f_color;\\nvarying vec3 f_data;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_data)) discard;\\n\\n  gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\\n}\"]),l=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 uv;\\nattribute float pointSize;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0.0, 0.0 ,0.0 ,0.0);\\n  } else {\\n    gl_Position = projection * view * model * vec4(position, 1.0);\\n  }\\n  gl_PointSize = pointSize;\\n  f_color = color;\\n  f_uv = uv;\\n}\"]),c=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D texture;\\nuniform float opacity;\\n\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  vec2 pointR = gl_PointCoord.xy - vec2(0.5, 0.5);\\n  if(dot(pointR, pointR) > 0.25) {\\n    discard;\\n  }\\n  gl_FragColor = f_color * texture2D(texture, f_uv) * opacity;\\n}\"]),u=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\n  f_id        = id;\\n  f_position  = position;\\n}\"]),f=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3  clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n  gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]),h=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3  position;\\nattribute float pointSize;\\nattribute vec4  id;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0.0, 0.0, 0.0, 0.0);\\n  } else {\\n    gl_Position  = projection * view * model * vec4(position, 1.0);\\n    gl_PointSize = pointSize;\\n  }\\n  f_id         = id;\\n  f_position   = position;\\n}\"]),p=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position;\\n\\nuniform mat4 model, view, projection;\\n\\nvoid main() {\\n  gl_Position = projection * view * model * vec4(position, 1.0);\\n}\"]),d=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform vec3 contourColor;\\n\\nvoid main() {\\n  gl_FragColor = vec4(contourColor, 1.0);\\n}\\n\"]);r.meshShader={vertex:i,fragment:a,attributes:[{name:\"position\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"}]},r.wireShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"}]},r.pointShader={vertex:l,fragment:c,attributes:[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"pointSize\",type:\"float\"}]},r.pickShader={vertex:u,fragment:f,attributes:[{name:\"position\",type:\"vec3\"},{name:\"id\",type:\"vec4\"}]},r.pointPickShader={vertex:h,fragment:f,attributes:[{name:\"position\",type:\"vec3\"},{name:\"pointSize\",type:\"float\"},{name:\"id\",type:\"vec4\"}]},r.contourShader={vertex:p,fragment:d,attributes:[{name:\"position\",type:\"vec3\"}]}},{glslify:310}],309:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),i=t(\"gl-buffer\"),a=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"normals\"),l=t(\"gl-mat4/multiply\"),c=t(\"gl-mat4/invert\"),u=t(\"ndarray\"),f=t(\"colormap\"),h=t(\"simplicial-complex-contour\"),p=t(\"typedarray-pool\"),d=t(\"./lib/shaders\"),g=t(\"./lib/closest-point\"),m=d.meshShader,v=d.wireShader,y=d.pointShader,x=d.pickShader,b=d.pointPickShader,_=d.contourShader,w=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function T(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,g,m,v,y,x,b,_,T,k,M,A,S){this.gl=t,this.pixelRatio=1,this.cells=[],this.positions=[],this.intensity=[],this.texture=e,this.dirty=!0,this.triShader=r,this.lineShader=n,this.pointShader=i,this.pickShader=a,this.pointPickShader=o,this.contourShader=s,this.trianglePositions=l,this.triangleColors=u,this.triangleNormals=h,this.triangleUVs=f,this.triangleIds=c,this.triangleVAO=p,this.triangleCount=0,this.lineWidth=1,this.edgePositions=d,this.edgeColors=m,this.edgeUVs=v,this.edgeIds=g,this.edgeVAO=y,this.edgeCount=0,this.pointPositions=x,this.pointColors=_,this.pointUVs=T,this.pointSizes=k,this.pointIds=b,this.pointVAO=M,this.pointCount=0,this.contourLineWidth=1,this.contourPositions=A,this.contourVAO=S,this.contourCount=0,this.contourColor=[0,0,0],this.contourEnable=!0,this.pickVertex=!0,this.pickId=1,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.lightPosition=[1e5,1e5,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.opacity=1,this.hasAlpha=!1,this.opacityscale=!1,this._model=w,this._view=w,this._projection=w,this._resolution=[1,1]}var k=T.prototype;function M(t,e){if(!e)return 1;if(!e.length)return 1;for(var r=0;r<e.length;++r){if(e.length<2)return 1;if(e[r][0]===t)return e[r][1];if(e[r][0]>t&&r>0){var n=(e[r][0]-t)/(e[r][0]-e[r-1][0]);return e[r][1]*(1-n)+n*e[r-1][1]}}return 1}function A(t){var e=n(t,m.vertex,m.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.normal.location=4,e}function S(t){var e=n(t,v.vertex,v.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e}function E(t){var e=n(t,y.vertex,y.fragment);return e.attributes.position.location=0,e.attributes.color.location=2,e.attributes.uv.location=3,e.attributes.pointSize.location=4,e}function C(t){var e=n(t,x.vertex,x.fragment);return e.attributes.position.location=0,e.attributes.id.location=1,e}function L(t){var e=n(t,b.vertex,b.fragment);return e.attributes.position.location=0,e.attributes.id.location=1,e.attributes.pointSize.location=4,e}function I(t){var e=n(t,_.vertex,_.fragment);return e.attributes.position.location=0,e}k.isOpaque=function(){return!this.hasAlpha},k.isTransparent=function(){return this.hasAlpha},k.pickSlots=1,k.setPickBase=function(t){this.pickId=t},k.highlight=function(t){if(t&&this.contourEnable){for(var e=h(this.cells,this.intensity,t.intensity),r=e.cells,n=e.vertexIds,i=e.vertexWeights,a=r.length,o=p.mallocFloat32(6*a),s=0,l=0;l<a;++l)for(var c=r[l],u=0;u<2;++u){var f=c[0];2===c.length&&(f=c[u]);for(var d=n[f][0],g=n[f][1],m=i[f],v=1-m,y=this.positions[d],x=this.positions[g],b=0;b<3;++b)o[s++]=m*y[b]+v*x[b]}this.contourCount=s/3|0,this.contourPositions.update(o.subarray(0,s)),p.free(o)}else this.contourCount=0},k.update=function(t){t=t||{};var e=this.gl;this.dirty=!0,\"contourEnable\"in t&&(this.contourEnable=t.contourEnable),\"contourColor\"in t&&(this.contourColor=t.contourColor),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"lightPosition\"in t&&(this.lightPosition=t.lightPosition),this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=t.opacity,this.opacity<1&&(this.hasAlpha=!0)),\"opacityscale\"in t&&(this.opacityscale=t.opacityscale,this.hasAlpha=!0),\"ambient\"in t&&(this.ambientLight=t.ambient),\"diffuse\"in t&&(this.diffuseLight=t.diffuse),\"specular\"in t&&(this.specularLight=t.specular),\"roughness\"in t&&(this.roughness=t.roughness),\"fresnel\"in t&&(this.fresnel=t.fresnel),t.texture?(this.texture.dispose(),this.texture=o(e,t.texture)):t.colormap&&(this.texture.shape=[256,256],this.texture.minFilter=e.LINEAR_MIPMAP_LINEAR,this.texture.magFilter=e.LINEAR,this.texture.setPixels(function(t,e){for(var r=f({colormap:t,nshades:256,format:\"rgba\"}),n=new Uint8Array(1024),i=0;i<256;++i){for(var a=r[i],o=0;o<3;++o)n[4*i+o]=a[o];n[4*i+3]=e?255*M(i/255,e):255*a[3]}return u(n,[256,256,4],[4,0,1])}(t.colormap,this.opacityscale)),this.texture.generateMipmap());var r=t.cells,n=t.positions;if(n&&r){var i=[],a=[],l=[],c=[],h=[],p=[],d=[],g=[],m=[],v=[],y=[],x=[],b=[],_=[];this.cells=r,this.positions=n;var w=t.vertexNormals,T=t.cellNormals,k=void 0===t.vertexNormalsEpsilon?1e-6:t.vertexNormalsEpsilon,A=void 0===t.faceNormalsEpsilon?1e-6:t.faceNormalsEpsilon;t.useFacetNormals&&!T&&(T=s.faceNormals(r,n,A)),T||w||(w=s.vertexNormals(r,n,k));var S=t.vertexColors,E=t.cellColors,C=t.meshColor||[1,1,1,1],L=t.vertexUVs,I=t.vertexIntensity,P=t.cellUVs,z=t.cellIntensity,O=1/0,D=-1/0;if(!L&&!P)if(I)if(t.vertexIntensityBounds)O=+t.vertexIntensityBounds[0],D=+t.vertexIntensityBounds[1];else for(var R=0;R<I.length;++R){var F=I[R];O=Math.min(O,F),D=Math.max(D,F)}else if(z)if(t.cellIntensityBounds)O=+t.cellIntensityBounds[0],D=+t.cellIntensityBounds[1];else for(R=0;R<z.length;++R){F=z[R];O=Math.min(O,F),D=Math.max(D,F)}else for(R=0;R<n.length;++R){F=n[R][2];O=Math.min(O,F),D=Math.max(D,F)}this.intensity=I||(z||function(t){for(var e=t.length,r=new Array(e),n=0;n<e;++n)r[n]=t[n][2];return r}(n)),this.pickVertex=!(z||E);var B=t.pointSizes,N=t.pointSize||1;this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]];for(R=0;R<n.length;++R)for(var j=n[R],U=0;U<3;++U)!isNaN(j[U])&&isFinite(j[U])&&(this.bounds[0][U]=Math.min(this.bounds[0][U],j[U]),this.bounds[1][U]=Math.max(this.bounds[1][U],j[U]));var V=0,q=0,H=0;t:for(R=0;R<r.length;++R){var G=r[R];switch(G.length){case 1:for(j=n[W=G[0]],U=0;U<3;++U)if(isNaN(j[U])||!isFinite(j[U]))continue t;v.push(j[0],j[1],j[2]),X=S?S[W]:E?E[R]:C,this.opacityscale&&I?a.push(X[0],X[1],X[2],this.opacity*M((I[W]-O)/(D-O),this.opacityscale)):3===X.length?y.push(X[0],X[1],X[2],this.opacity):(y.push(X[0],X[1],X[2],X[3]*this.opacity),X[3]<1&&(this.hasAlpha=!0)),Z=L?L[W]:I?[(I[W]-O)/(D-O),0]:P?P[R]:z?[(z[R]-O)/(D-O),0]:[(j[2]-O)/(D-O),0],x.push(Z[0],Z[1]),B?b.push(B[W]):b.push(N),_.push(R),H+=1;break;case 2:for(U=0;U<2;++U){j=n[W=G[U]];for(var Y=0;Y<3;++Y)if(isNaN(j[Y])||!isFinite(j[Y]))continue t}for(U=0;U<2;++U){j=n[W=G[U]];p.push(j[0],j[1],j[2]),X=S?S[W]:E?E[R]:C,this.opacityscale&&I?a.push(X[0],X[1],X[2],this.opacity*M((I[W]-O)/(D-O),this.opacityscale)):3===X.length?d.push(X[0],X[1],X[2],this.opacity):(d.push(X[0],X[1],X[2],X[3]*this.opacity),X[3]<1&&(this.hasAlpha=!0)),Z=L?L[W]:I?[(I[W]-O)/(D-O),0]:P?P[R]:z?[(z[R]-O)/(D-O),0]:[(j[2]-O)/(D-O),0],g.push(Z[0],Z[1]),m.push(R)}q+=1;break;case 3:for(U=0;U<3;++U)for(j=n[W=G[U]],Y=0;Y<3;++Y)if(isNaN(j[Y])||!isFinite(j[Y]))continue t;for(U=0;U<3;++U){var W,X,Z,J;j=n[W=G[2-U]];i.push(j[0],j[1],j[2]),(X=S?S[W]:E?E[R]:C)?this.opacityscale&&I?a.push(X[0],X[1],X[2],this.opacity*M((I[W]-O)/(D-O),this.opacityscale)):3===X.length?a.push(X[0],X[1],X[2],this.opacity):(a.push(X[0],X[1],X[2],X[3]*this.opacity),X[3]<1&&(this.hasAlpha=!0)):a.push(.5,.5,.5,1),Z=L?L[W]:I?[(I[W]-O)/(D-O),0]:P?P[R]:z?[(z[R]-O)/(D-O),0]:[(j[2]-O)/(D-O),0],c.push(Z[0],Z[1]),J=w?w[W]:T[R],l.push(J[0],J[1],J[2]),h.push(R)}V+=1}}this.pointCount=H,this.edgeCount=q,this.triangleCount=V,this.pointPositions.update(v),this.pointColors.update(y),this.pointUVs.update(x),this.pointSizes.update(b),this.pointIds.update(new Uint32Array(_)),this.edgePositions.update(p),this.edgeColors.update(d),this.edgeUVs.update(g),this.edgeIds.update(new Uint32Array(m)),this.trianglePositions.update(i),this.triangleColors.update(a),this.triangleUVs.update(c),this.triangleNormals.update(l),this.triangleIds.update(new Uint32Array(h))}},k.drawTransparent=k.draw=function(t){t=t||{};for(var e=this.gl,r=t.model||w,n=t.view||w,i=t.projection||w,a=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)a[0][o]=Math.max(a[0][o],this.clipBounds[0][o]),a[1][o]=Math.min(a[1][o],this.clipBounds[1][o]);var s={model:r,view:n,projection:i,inverseModel:w.slice(),clipBounds:a,kambient:this.ambientLight,kdiffuse:this.diffuseLight,kspecular:this.specularLight,roughness:this.roughness,fresnel:this.fresnel,eyePosition:[0,0,0],lightPosition:[0,0,0],contourColor:this.contourColor,texture:0};s.inverseModel=c(s.inverseModel,s.model),e.disable(e.CULL_FACE),this.texture.bind(0);var u=new Array(16);l(u,s.view,s.model),l(u,s.projection,u),c(u,u);for(o=0;o<3;++o)s.eyePosition[o]=u[12+o]/u[15];var f,h=u[15];for(o=0;o<3;++o)h+=this.lightPosition[o]*u[4*o+3];for(o=0;o<3;++o){for(var p=u[12+o],d=0;d<3;++d)p+=u[4*d+o]*this.lightPosition[d];s.lightPosition[o]=p/h}this.triangleCount>0&&((f=this.triShader).bind(),f.uniforms=s,this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind());this.edgeCount>0&&this.lineWidth>0&&((f=this.lineShader).bind(),f.uniforms=s,this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind());this.pointCount>0&&((f=this.pointShader).bind(),f.uniforms=s,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind());this.contourEnable&&this.contourCount>0&&this.contourLineWidth>0&&((f=this.contourShader).bind(),f.uniforms=s,this.contourVAO.bind(),e.drawArrays(e.LINES,0,this.contourCount),this.contourVAO.unbind())},k.drawPick=function(t){t=t||{};for(var e=this.gl,r=t.model||w,n=t.view||w,i=t.projection||w,a=[[-1e6,-1e6,-1e6],[1e6,1e6,1e6]],o=0;o<3;++o)a[0][o]=Math.max(a[0][o],this.clipBounds[0][o]),a[1][o]=Math.min(a[1][o],this.clipBounds[1][o]);this._model=[].slice.call(r),this._view=[].slice.call(n),this._projection=[].slice.call(i),this._resolution=[e.drawingBufferWidth,e.drawingBufferHeight];var s,l={model:r,view:n,projection:i,clipBounds:a,pickId:this.pickId/255};((s=this.pickShader).bind(),s.uniforms=l,this.triangleCount>0&&(this.triangleVAO.bind(),e.drawArrays(e.TRIANGLES,0,3*this.triangleCount),this.triangleVAO.unbind()),this.edgeCount>0&&(this.edgeVAO.bind(),e.lineWidth(this.lineWidth*this.pixelRatio),e.drawArrays(e.LINES,0,2*this.edgeCount),this.edgeVAO.unbind()),this.pointCount>0)&&((s=this.pointPickShader).bind(),s.uniforms=l,this.pointVAO.bind(),e.drawArrays(e.POINTS,0,this.pointCount),this.pointVAO.unbind())},k.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;for(var e=t.value[0]+256*t.value[1]+65536*t.value[2],r=this.cells[e],n=this.positions,i=new Array(r.length),a=0;a<r.length;++a)i[a]=n[r[a]];var o=t.coord[0],s=t.coord[1];if(!this.pickVertex){var l=this.positions[r[0]],c=this.positions[r[1]],u=this.positions[r[2]],f=[(l[0]+c[0]+u[0])/3,(l[1]+c[1]+u[1])/3,(l[2]+c[2]+u[2])/3];return{_cellCenter:!0,position:[o,s],index:e,cell:r,cellId:e,intensity:this.intensity[e],dataCoordinate:f}}var h=g(i,[o*this.pixelRatio,this._resolution[1]-s*this.pixelRatio],this._model,this._view,this._projection,this._resolution);if(!h)return null;var p=h[2],d=0;for(a=0;a<r.length;++a)d+=p[a]*this.intensity[r[a]];return{position:h[1],index:r[h[0]],cell:r,cellId:e,intensity:d,dataCoordinate:this.positions[r[h[0]]]}},k.dispose=function(){this.texture.dispose(),this.triShader.dispose(),this.lineShader.dispose(),this.pointShader.dispose(),this.pickShader.dispose(),this.pointPickShader.dispose(),this.triangleVAO.dispose(),this.trianglePositions.dispose(),this.triangleColors.dispose(),this.triangleUVs.dispose(),this.triangleNormals.dispose(),this.triangleIds.dispose(),this.edgeVAO.dispose(),this.edgePositions.dispose(),this.edgeColors.dispose(),this.edgeUVs.dispose(),this.edgeIds.dispose(),this.pointVAO.dispose(),this.pointPositions.dispose(),this.pointColors.dispose(),this.pointUVs.dispose(),this.pointSizes.dispose(),this.pointIds.dispose(),this.contourVAO.dispose(),this.contourPositions.dispose(),this.contourShader.dispose()},e.exports=function(t,e){1===arguments.length&&(t=(e=t).gl);var r=t.getExtension(\"OES_standard_derivatives\")||t.getExtension(\"MOZ_OES_standard_derivatives\")||t.getExtension(\"WEBKIT_OES_standard_derivatives\");if(!r)throw new Error(\"derivatives not supported\");var n=A(t),s=S(t),l=E(t),c=C(t),f=L(t),h=I(t),p=o(t,u(new Uint8Array([255,255,255,255]),[1,1,4]));p.generateMipmap(),p.minFilter=t.LINEAR_MIPMAP_LINEAR,p.magFilter=t.LINEAR;var d=i(t),g=i(t),m=i(t),v=i(t),y=i(t),x=a(t,[{buffer:d,type:t.FLOAT,size:3},{buffer:y,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:g,type:t.FLOAT,size:4},{buffer:m,type:t.FLOAT,size:2},{buffer:v,type:t.FLOAT,size:3}]),b=i(t),_=i(t),w=i(t),k=i(t),M=a(t,[{buffer:b,type:t.FLOAT,size:3},{buffer:k,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:_,type:t.FLOAT,size:4},{buffer:w,type:t.FLOAT,size:2}]),P=i(t),z=i(t),O=i(t),D=i(t),R=i(t),F=a(t,[{buffer:P,type:t.FLOAT,size:3},{buffer:R,type:t.UNSIGNED_BYTE,size:4,normalized:!0},{buffer:z,type:t.FLOAT,size:4},{buffer:O,type:t.FLOAT,size:2},{buffer:D,type:t.FLOAT,size:1}]),B=i(t),N=a(t,[{buffer:B,type:t.FLOAT,size:3}]),j=new T(t,p,n,s,l,c,f,h,d,y,g,m,v,x,b,k,_,w,M,P,R,z,O,D,F,B,N);return j.update(e),j}},{\"./lib/closest-point\":307,\"./lib/shaders\":308,colormap:131,\"gl-buffer\":259,\"gl-mat4/invert\":293,\"gl-mat4/multiply\":295,\"gl-shader\":335,\"gl-texture2d\":353,\"gl-vao\":358,ndarray:495,normals:498,\"simplicial-complex-contour\":556,\"typedarray-pool\":595}],310:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],311:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e,[0,0,0,1,1,0,1,1]),s=i(e,a.boxVert,a.lineFrag);return new o(t,r,s)};var n=t(\"gl-buffer\"),i=t(\"gl-shader\"),a=t(\"./shaders\");function o(t,e,r){this.plot=t,this.vbo=e,this.shader=r}var s,l,c=o.prototype;c.bind=function(){var t=this.shader;this.vbo.bind(),this.shader.bind(),t.attributes.coord.pointer(),t.uniforms.screenBox=this.plot.screenBox},c.drawBox=(s=[0,0],l=[0,0],function(t,e,r,n,i){var a=this.plot,o=this.shader,c=a.gl;s[0]=t,s[1]=e,l[0]=r,l[1]=n,o.uniforms.lo=s,o.uniforms.hi=l,o.uniforms.color=i,c.drawArrays(c.TRIANGLE_STRIP,0,4)}),c.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\"./shaders\":314,\"gl-buffer\":259,\"gl-shader\":335}],312:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e),a=i(e,o.gridVert,o.gridFrag),l=i(e,o.tickVert,o.gridFrag);return new s(t,r,a,l)};var n=t(\"gl-buffer\"),i=t(\"gl-shader\"),a=t(\"binary-search-bounds\"),o=t(\"./shaders\");function s(t,e,r,n){this.plot=t,this.vbo=e,this.shader=r,this.tickShader=n,this.ticks=[[],[]]}function l(t,e){return t-e}var c,u,f,h,p,d=s.prototype;d.draw=(c=[0,0],u=[0,0],f=[0,0],function(){for(var t=this.plot,e=this.vbo,r=this.shader,n=this.ticks,i=t.gl,a=t._tickBounds,o=t.dataBox,s=t.viewBox,l=t.gridLineWidth,h=t.gridLineColor,p=t.gridLineEnable,d=t.pixelRatio,g=0;g<2;++g){var m=a[g],v=a[g+2]-m,y=.5*(o[g+2]+o[g]),x=o[g+2]-o[g];u[g]=2*v/x,c[g]=2*(m-y)/x}r.bind(),e.bind(),r.attributes.dataCoord.pointer(),r.uniforms.dataShift=c,r.uniforms.dataScale=u;var b=0;for(g=0;g<2;++g){f[0]=f[1]=0,f[g]=1,r.uniforms.dataAxis=f,r.uniforms.lineWidth=l[g]/(s[g+2]-s[g])*d,r.uniforms.color=h[g];var _=6*n[g].length;p[g]&&_&&i.drawArrays(i.TRIANGLES,b,_),b+=_}}),d.drawTickMarks=function(){var t=[0,0],e=[0,0],r=[1,0],n=[0,1],i=[0,0],o=[0,0];return function(){for(var s=this.plot,c=this.vbo,u=this.tickShader,f=this.ticks,h=s.gl,p=s._tickBounds,d=s.dataBox,g=s.viewBox,m=s.pixelRatio,v=s.screenBox,y=v[2]-v[0],x=v[3]-v[1],b=g[2]-g[0],_=g[3]-g[1],w=0;w<2;++w){var T=p[w],k=p[w+2]-T,M=.5*(d[w+2]+d[w]),A=d[w+2]-d[w];e[w]=2*k/A,t[w]=2*(T-M)/A}e[0]*=b/y,t[0]*=b/y,e[1]*=_/x,t[1]*=_/x,u.bind(),c.bind(),u.attributes.dataCoord.pointer();var S=u.uniforms;S.dataShift=t,S.dataScale=e;var E=s.tickMarkLength,C=s.tickMarkWidth,L=s.tickMarkColor,I=6*f[0].length,P=Math.min(a.ge(f[0],(d[0]-p[0])/(p[2]-p[0]),l),f[0].length),z=Math.min(a.gt(f[0],(d[2]-p[0])/(p[2]-p[0]),l),f[0].length),O=0+6*P,D=6*Math.max(0,z-P),R=Math.min(a.ge(f[1],(d[1]-p[1])/(p[3]-p[1]),l),f[1].length),F=Math.min(a.gt(f[1],(d[3]-p[1])/(p[3]-p[1]),l),f[1].length),B=I+6*R,N=6*Math.max(0,F-R);i[0]=2*(g[0]-E[1])/y-1,i[1]=(g[3]+g[1])/x-1,o[0]=E[1]*m/y,o[1]=C[1]*m/x,N&&(S.color=L[1],S.tickScale=o,S.dataAxis=n,S.screenOffset=i,h.drawArrays(h.TRIANGLES,B,N)),i[0]=(g[2]+g[0])/y-1,i[1]=2*(g[1]-E[0])/x-1,o[0]=C[0]*m/y,o[1]=E[0]*m/x,D&&(S.color=L[0],S.tickScale=o,S.dataAxis=r,S.screenOffset=i,h.drawArrays(h.TRIANGLES,O,D)),i[0]=2*(g[2]+E[3])/y-1,i[1]=(g[3]+g[1])/x-1,o[0]=E[3]*m/y,o[1]=C[3]*m/x,N&&(S.color=L[3],S.tickScale=o,S.dataAxis=n,S.screenOffset=i,h.drawArrays(h.TRIANGLES,B,N)),i[0]=(g[2]+g[0])/y-1,i[1]=2*(g[3]+E[2])/x-1,o[0]=C[2]*m/y,o[1]=E[2]*m/x,D&&(S.color=L[2],S.tickScale=o,S.dataAxis=r,S.screenOffset=i,h.drawArrays(h.TRIANGLES,O,D))}}(),d.update=(h=[1,1,-1,-1,1,-1],p=[1,-1,1,1,-1,-1],function(t){for(var e=t.ticks,r=t.bounds,n=new Float32Array(18*(e[0].length+e[1].length)),i=(this.plot.zeroLineEnable,0),a=[[],[]],o=0;o<2;++o)for(var s=a[o],l=e[o],c=r[o],u=r[o+2],f=0;f<l.length;++f){var d=(l[f].x-c)/(u-c);s.push(d);for(var g=0;g<6;++g)n[i++]=d,n[i++]=h[g],n[i++]=p[g]}this.ticks=a,this.vbo.update(n)}),d.dispose=function(){this.vbo.dispose(),this.shader.dispose(),this.tickShader.dispose()}},{\"./shaders\":314,\"binary-search-bounds\":96,\"gl-buffer\":259,\"gl-shader\":335}],313:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e,[-1,-1,-1,1,1,-1,1,1]),s=i(e,a.lineVert,a.lineFrag);return new o(t,r,s)};var n=t(\"gl-buffer\"),i=t(\"gl-shader\"),a=t(\"./shaders\");function o(t,e,r){this.plot=t,this.vbo=e,this.shader=r}var s,l,c=o.prototype;c.bind=function(){var t=this.shader;this.vbo.bind(),this.shader.bind(),t.attributes.coord.pointer(),t.uniforms.screenBox=this.plot.screenBox},c.drawLine=(s=[0,0],l=[0,0],function(t,e,r,n,i,a){var o=this.plot,c=this.shader,u=o.gl;s[0]=t,s[1]=e,l[0]=r,l[1]=n,c.uniforms.start=s,c.uniforms.end=l,c.uniforms.width=i*o.pixelRatio,c.uniforms.color=a,u.drawArrays(u.TRIANGLE_STRIP,0,4)}),c.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\"./shaders\":314,\"gl-buffer\":259,\"gl-shader\":335}],314:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),i=n([\"precision lowp float;\\n#define GLSLIFY 1\\nuniform vec4 color;\\nvoid main() {\\n  gl_FragColor = vec4(color.xyz * color.w, color.w);\\n}\\n\"]);e.exports={lineVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 coord;\\n\\nuniform vec4 screenBox;\\nuniform vec2 start, end;\\nuniform float width;\\n\\nvec2 perp(vec2 v) {\\n  return vec2(v.y, -v.x);\\n}\\n\\nvec2 screen(vec2 v) {\\n  return 2.0 * (v - screenBox.xy) / (screenBox.zw - screenBox.xy) - 1.0;\\n}\\n\\nvoid main() {\\n  vec2 delta = normalize(perp(start - end));\\n  vec2 offset = mix(start, end, 0.5 * (coord.y+1.0));\\n  gl_Position = vec4(screen(offset + 0.5 * width * delta * coord.x), 0, 1);\\n}\\n\"]),lineFrag:i,textVert:n([\"#define GLSLIFY 1\\nattribute vec3 textCoordinate;\\n\\nuniform vec2 dataScale, dataShift, dataAxis, screenOffset, textScale;\\nuniform float angle;\\n\\nvoid main() {\\n  float dataOffset  = textCoordinate.z;\\n  vec2 glyphOffset  = textCoordinate.xy;\\n  mat2 glyphMatrix = mat2(cos(angle), sin(angle), -sin(angle), cos(angle));\\n  vec2 screenCoordinate = dataAxis * (dataScale * dataOffset + dataShift) +\\n    glyphMatrix * glyphOffset * textScale + screenOffset;\\n  gl_Position = vec4(screenCoordinate, 0, 1);\\n}\\n\"]),textFrag:i,gridVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec3 dataCoord;\\n\\nuniform vec2 dataAxis, dataShift, dataScale;\\nuniform float lineWidth;\\n\\nvoid main() {\\n  vec2 pos = dataAxis * (dataScale * dataCoord.x + dataShift);\\n  pos += 10.0 * dataCoord.y * vec2(dataAxis.y, -dataAxis.x) + dataCoord.z * lineWidth;\\n  gl_Position = vec4(pos, 0, 1);\\n}\\n\"]),gridFrag:i,boxVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 coord;\\n\\nuniform vec4 screenBox;\\nuniform vec2 lo, hi;\\n\\nvec2 screen(vec2 v) {\\n  return 2.0 * (v - screenBox.xy) / (screenBox.zw - screenBox.xy) - 1.0;\\n}\\n\\nvoid main() {\\n  gl_Position = vec4(screen(mix(lo, hi, coord)), 0, 1);\\n}\\n\"]),tickVert:n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec3 dataCoord;\\n\\nuniform vec2 dataAxis, dataShift, dataScale, screenOffset, tickScale;\\n\\nvoid main() {\\n  vec2 pos = dataAxis * (dataScale * dataCoord.x + dataShift);\\n  gl_Position = vec4(pos + tickScale*dataCoord.yz + screenOffset, 0, 1);\\n}\\n\"])}},{glslify:316}],315:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e),a=i(e,s.textVert,s.textFrag);return new l(t,r,a)};var n=t(\"gl-buffer\"),i=t(\"gl-shader\"),a=t(\"text-cache\"),o=t(\"binary-search-bounds\"),s=t(\"./shaders\");function l(t,e,r){this.plot=t,this.vbo=e,this.shader=r,this.tickOffset=[[],[]],this.tickX=[[],[]],this.labelOffset=[0,0],this.labelCount=[0,0]}var c,u,f,h,p,d,g=l.prototype;g.drawTicks=(c=[0,0],u=[0,0],f=[0,0],function(t){var e=this.plot,r=this.shader,n=this.tickX[t],i=this.tickOffset[t],a=e.gl,s=e.viewBox,l=e.dataBox,h=e.screenBox,p=e.pixelRatio,d=e.tickEnable,g=e.tickPad,m=e.tickColor,v=e.tickAngle,y=e.labelEnable,x=e.labelPad,b=e.labelColor,_=e.labelAngle,w=this.labelOffset[t],T=this.labelCount[t],k=o.lt(n,l[t]),M=o.le(n,l[t+2]);c[0]=c[1]=0,c[t]=1,u[t]=(s[2+t]+s[t])/(h[2+t]-h[t])-1;var A=2/h[2+(1^t)]-h[1^t];u[1^t]=A*s[1^t]-1,d[t]&&(u[1^t]-=A*p*g[t],k<M&&i[M]>i[k]&&(r.uniforms.dataAxis=c,r.uniforms.screenOffset=u,r.uniforms.color=m[t],r.uniforms.angle=v[t],a.drawArrays(a.TRIANGLES,i[k],i[M]-i[k]))),y[t]&&T&&(u[1^t]-=A*p*x[t],r.uniforms.dataAxis=f,r.uniforms.screenOffset=u,r.uniforms.color=b[t],r.uniforms.angle=_[t],a.drawArrays(a.TRIANGLES,w,T)),u[1^t]=A*s[2+(1^t)]-1,d[t+2]&&(u[1^t]+=A*p*g[t+2],k<M&&i[M]>i[k]&&(r.uniforms.dataAxis=c,r.uniforms.screenOffset=u,r.uniforms.color=m[t+2],r.uniforms.angle=v[t+2],a.drawArrays(a.TRIANGLES,i[k],i[M]-i[k]))),y[t+2]&&T&&(u[1^t]+=A*p*x[t+2],r.uniforms.dataAxis=f,r.uniforms.screenOffset=u,r.uniforms.color=b[t+2],r.uniforms.angle=_[t+2],a.drawArrays(a.TRIANGLES,w,T))}),g.drawTitle=function(){var t=[0,0],e=[0,0];return function(){var r=this.plot,n=this.shader,i=r.gl,a=r.screenBox,o=r.titleCenter,s=r.titleAngle,l=r.titleColor,c=r.pixelRatio;if(this.titleCount){for(var u=0;u<2;++u)e[u]=2*(o[u]*c-a[u])/(a[2+u]-a[u])-1;n.bind(),n.uniforms.dataAxis=t,n.uniforms.screenOffset=e,n.uniforms.angle=s,n.uniforms.color=l,i.drawArrays(i.TRIANGLES,this.titleOffset,this.titleCount)}}}(),g.bind=(h=[0,0],p=[0,0],d=[0,0],function(){var t=this.plot,e=this.shader,r=t._tickBounds,n=t.dataBox,i=t.screenBox,a=t.viewBox;e.bind();for(var o=0;o<2;++o){var s=r[o],l=r[o+2]-s,c=.5*(n[o+2]+n[o]),u=n[o+2]-n[o],f=a[o],g=a[o+2]-f,m=i[o],v=i[o+2]-m;p[o]=2*l/u*g/v,h[o]=2*(s-c)/u*g/v}d[1]=2*t.pixelRatio/(i[3]-i[1]),d[0]=d[1]*(i[3]-i[1])/(i[2]-i[0]),e.uniforms.dataScale=p,e.uniforms.dataShift=h,e.uniforms.textScale=d,this.vbo.bind(),e.attributes.textCoordinate.pointer()}),g.update=function(t){var e,r,n,i,o,s=[],l=t.ticks,c=t.bounds;for(o=0;o<2;++o){var u=[Math.floor(s.length/3)],f=[-1/0],h=l[o];for(e=0;e<h.length;++e){var p=h[e],d=p.x,g=p.text,m=p.font||\"sans-serif\";i=p.fontSize||12;for(var v=1/(c[o+2]-c[o]),y=c[o],x=g.split(\"\\n\"),b=0;b<x.length;b++)for(n=a(m,x[b]).data,r=0;r<n.length;r+=2)s.push(n[r]*i,-n[r+1]*i-b*i*1.2,(d-y)*v);u.push(Math.floor(s.length/3)),f.push(d)}this.tickOffset[o]=u,this.tickX[o]=f}for(o=0;o<2;++o){for(this.labelOffset[o]=Math.floor(s.length/3),n=a(t.labelFont[o],t.labels[o],{textAlign:\"center\"}).data,i=t.labelSize[o],e=0;e<n.length;e+=2)s.push(n[e]*i,-n[e+1]*i,0);this.labelCount[o]=Math.floor(s.length/3)-this.labelOffset[o]}for(this.titleOffset=Math.floor(s.length/3),n=a(t.titleFont,t.title).data,i=t.titleSize,e=0;e<n.length;e+=2)s.push(n[e]*i,-n[e+1]*i,0);this.titleCount=Math.floor(s.length/3)-this.titleOffset,this.vbo.update(s)},g.dispose=function(){this.vbo.dispose(),this.shader.dispose()}},{\"./shaders\":314,\"binary-search-bounds\":96,\"gl-buffer\":259,\"gl-shader\":335,\"text-cache\":575}],316:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],317:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=n(e,[e.drawingBufferWidth,e.drawingBufferHeight]),c=new l(e,r);return c.grid=i(c),c.text=a(c),c.line=o(c),c.box=s(c),c.update(t),c};var n=t(\"gl-select-static\"),i=t(\"./lib/grid\"),a=t(\"./lib/text\"),o=t(\"./lib/line\"),s=t(\"./lib/box\");function l(t,e){this.gl=t,this.pickBuffer=e,this.screenBox=[0,0,t.drawingBufferWidth,t.drawingBufferHeight],this.viewBox=[0,0,0,0],this.dataBox=[-10,-10,10,10],this.gridLineEnable=[!0,!0],this.gridLineWidth=[1,1],this.gridLineColor=[[0,0,0,1],[0,0,0,1]],this.pixelRatio=1,this.tickMarkLength=[0,0,0,0],this.tickMarkWidth=[0,0,0,0],this.tickMarkColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[15,15,15,15],this.tickAngle=[0,0,0,0],this.tickEnable=[!0,!0,!0,!0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[15,15,15,15],this.labelAngle=[0,Math.PI/2,0,3*Math.PI/2],this.labelEnable=[!0,!0,!0,!0],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.titleCenter=[0,0],this.titleEnable=!0,this.titleAngle=0,this.titleColor=[0,0,0,1],this.borderColor=[0,0,0,0],this.backgroundColor=[0,0,0,0],this.zeroLineEnable=[!0,!0],this.zeroLineWidth=[4,4],this.zeroLineColor=[[0,0,0,1],[0,0,0,1]],this.borderLineEnable=[!0,!0,!0,!0],this.borderLineWidth=[2,2,2,2],this.borderLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.grid=null,this.text=null,this.line=null,this.box=null,this.objects=[],this.overlays=[],this._tickBounds=[1/0,1/0,-1/0,-1/0],this.static=!1,this.dirty=!1,this.pickDirty=!1,this.pickDelay=120,this.pickRadius=10,this._pickTimeout=null,this._drawPick=this.drawPick.bind(this),this._depthCounter=0}var c=l.prototype;function u(t){for(var e=t.slice(),r=0;r<e.length;++r)e[r]=e[r].slice();return e}function f(t,e){return t.x-e.x}c.setDirty=function(){this.dirty=this.pickDirty=!0},c.setOverlayDirty=function(){this.dirty=!0},c.nextDepthValue=function(){return this._depthCounter++/65536},c.draw=function(){var t=this.gl,e=this.screenBox,r=this.viewBox,n=this.dataBox,i=this.pixelRatio,a=this.grid,o=this.line,s=this.text,l=this.objects;if(this._depthCounter=0,this.pickDirty&&(this._pickTimeout&&clearTimeout(this._pickTimeout),this.pickDirty=!1,this._pickTimeout=setTimeout(this._drawPick,this.pickDelay)),this.dirty){if(this.dirty=!1,t.bindFramebuffer(t.FRAMEBUFFER,null),t.enable(t.SCISSOR_TEST),t.disable(t.DEPTH_TEST),t.depthFunc(t.LESS),t.depthMask(!1),t.enable(t.BLEND),t.blendEquation(t.FUNC_ADD,t.FUNC_ADD),t.blendFunc(t.ONE,t.ONE_MINUS_SRC_ALPHA),this.borderColor){t.scissor(e[0],e[1],e[2]-e[0],e[3]-e[1]);var c=this.borderColor;t.clearColor(c[0]*c[3],c[1]*c[3],c[2]*c[3],c[3]),t.clear(t.COLOR_BUFFER_BIT|t.DEPTH_BUFFER_BIT)}t.scissor(r[0],r[1],r[2]-r[0],r[3]-r[1]),t.viewport(r[0],r[1],r[2]-r[0],r[3]-r[1]);var u=this.backgroundColor;t.clearColor(u[0]*u[3],u[1]*u[3],u[2]*u[3],u[3]),t.clear(t.COLOR_BUFFER_BIT),a.draw();var f=this.zeroLineEnable,h=this.zeroLineColor,p=this.zeroLineWidth;if(f[0]||f[1]){o.bind();for(var d=0;d<2;++d)if(f[d]&&n[d]<=0&&n[d+2]>=0){var g=e[d]-n[d]*(e[d+2]-e[d])/(n[d+2]-n[d]);0===d?o.drawLine(g,e[1],g,e[3],p[d],h[d]):o.drawLine(e[0],g,e[2],g,p[d],h[d])}}for(d=0;d<l.length;++d)l[d].draw();t.viewport(e[0],e[1],e[2]-e[0],e[3]-e[1]),t.scissor(e[0],e[1],e[2]-e[0],e[3]-e[1]),this.grid.drawTickMarks(),o.bind();var m=this.borderLineEnable,v=this.borderLineWidth,y=this.borderLineColor;for(m[1]&&o.drawLine(r[0],r[1]-.5*v[1]*i,r[0],r[3]+.5*v[3]*i,v[1],y[1]),m[0]&&o.drawLine(r[0]-.5*v[0]*i,r[1],r[2]+.5*v[2]*i,r[1],v[0],y[0]),m[3]&&o.drawLine(r[2],r[1]-.5*v[1]*i,r[2],r[3]+.5*v[3]*i,v[3],y[3]),m[2]&&o.drawLine(r[0]-.5*v[0]*i,r[3],r[2]+.5*v[2]*i,r[3],v[2],y[2]),s.bind(),d=0;d<2;++d)s.drawTicks(d);this.titleEnable&&s.drawTitle();var x=this.overlays;for(d=0;d<x.length;++d)x[d].draw();t.disable(t.SCISSOR_TEST),t.disable(t.BLEND),t.depthMask(!0)}},c.drawPick=function(){if(!this.static){var t=this.pickBuffer;this.gl,this._pickTimeout=null,t.begin();for(var e=1,r=this.objects,n=0;n<r.length;++n)e=r[n].drawPick(e);t.end()}},c.pick=function(t,e){if(!this.static){var r=this.pixelRatio,n=this.pickPixelRatio,i=this.viewBox,a=0|Math.round((t-i[0]/r)*n),o=0|Math.round((e-i[1]/r)*n),s=this.pickBuffer.query(a,o,this.pickRadius);if(!s)return null;for(var l=s.id+(s.value[0]<<8)+(s.value[1]<<16)+(s.value[2]<<24),c=this.objects,u=0;u<c.length;++u){var f=c[u].pick(a,o,l);if(f)return f}return null}},c.setScreenBox=function(t){var e=this.screenBox,r=this.pixelRatio;e[0]=0|Math.round(t[0]*r),e[1]=0|Math.round(t[1]*r),e[2]=0|Math.round(t[2]*r),e[3]=0|Math.round(t[3]*r),this.setDirty()},c.setDataBox=function(t){var e=this.dataBox;(e[0]!==t[0]||e[1]!==t[1]||e[2]!==t[2]||e[3]!==t[3])&&(e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],this.setDirty())},c.setViewBox=function(t){var e=this.pixelRatio,r=this.viewBox;r[0]=0|Math.round(t[0]*e),r[1]=0|Math.round(t[1]*e),r[2]=0|Math.round(t[2]*e),r[3]=0|Math.round(t[3]*e);var n=this.pickPixelRatio;this.pickBuffer.shape=[0|Math.round((t[2]-t[0])*n),0|Math.round((t[3]-t[1])*n)],this.setDirty()},c.update=function(t){t=t||{};var e=this.gl;this.pixelRatio=t.pixelRatio||1;var r=this.pixelRatio;this.pickPixelRatio=Math.max(r,1),this.setScreenBox(t.screenBox||[0,0,e.drawingBufferWidth/r,e.drawingBufferHeight/r]);this.screenBox;this.setViewBox(t.viewBox||[.125*(this.screenBox[2]-this.screenBox[0])/r,.125*(this.screenBox[3]-this.screenBox[1])/r,.875*(this.screenBox[2]-this.screenBox[0])/r,.875*(this.screenBox[3]-this.screenBox[1])/r]);var n=this.viewBox,i=(n[2]-n[0])/(n[3]-n[1]);this.setDataBox(t.dataBox||[-10,-10/i,10,10/i]),this.borderColor=!1!==t.borderColor&&(t.borderColor||[0,0,0,0]).slice(),this.backgroundColor=(t.backgroundColor||[0,0,0,0]).slice(),this.gridLineEnable=(t.gridLineEnable||[!0,!0]).slice(),this.gridLineWidth=(t.gridLineWidth||[1,1]).slice(),this.gridLineColor=u(t.gridLineColor||[[.5,.5,.5,1],[.5,.5,.5,1]]),this.zeroLineEnable=(t.zeroLineEnable||[!0,!0]).slice(),this.zeroLineWidth=(t.zeroLineWidth||[4,4]).slice(),this.zeroLineColor=u(t.zeroLineColor||[[0,0,0,1],[0,0,0,1]]),this.tickMarkLength=(t.tickMarkLength||[0,0,0,0]).slice(),this.tickMarkWidth=(t.tickMarkWidth||[0,0,0,0]).slice(),this.tickMarkColor=u(t.tickMarkColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.titleCenter=(t.titleCenter||[.5*(n[0]+n[2])/r,(n[3]+120)/r]).slice(),this.titleEnable=!(\"titleEnable\"in t)||!!t.titleEnable,this.titleAngle=t.titleAngle||0,this.titleColor=(t.titleColor||[0,0,0,1]).slice(),this.labelPad=(t.labelPad||[15,15,15,15]).slice(),this.labelAngle=(t.labelAngle||[0,Math.PI/2,0,3*Math.PI/2]).slice(),this.labelEnable=(t.labelEnable||[!0,!0,!0,!0]).slice(),this.labelColor=u(t.labelColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.tickPad=(t.tickPad||[15,15,15,15]).slice(),this.tickAngle=(t.tickAngle||[0,0,0,0]).slice(),this.tickEnable=(t.tickEnable||[!0,!0,!0,!0]).slice(),this.tickColor=u(t.tickColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]),this.borderLineEnable=(t.borderLineEnable||[!0,!0,!0,!0]).slice(),this.borderLineWidth=(t.borderLineWidth||[2,2,2,2]).slice(),this.borderLineColor=u(t.borderLineColor||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]);var a=t.ticks||[[],[]],o=this._tickBounds;o[0]=o[1]=1/0,o[2]=o[3]=-1/0;for(var s=0;s<2;++s){var l=a[s].slice(0);0!==l.length&&(l.sort(f),o[s]=Math.min(o[s],l[0].x),o[s+2]=Math.max(o[s+2],l[l.length-1].x))}this.grid.update({bounds:o,ticks:a}),this.text.update({bounds:o,ticks:a,labels:t.labels||[\"x\",\"y\"],labelSize:t.labelSize||[12,12],labelFont:t.labelFont||[\"sans-serif\",\"sans-serif\"],title:t.title||\"\",titleSize:t.titleSize||18,titleFont:t.titleFont||\"sans-serif\"}),this.static=!!t.static,this.setDirty()},c.dispose=function(){this.box.dispose(),this.grid.dispose(),this.text.dispose(),this.line.dispose();for(var t=this.objects.length-1;t>=0;--t)this.objects[t].dispose();this.objects.length=0;for(t=this.overlays.length-1;t>=0;--t)this.overlays[t].dispose();this.overlays.length=0,this.gl=null},c.addObject=function(t){this.objects.indexOf(t)<0&&(this.objects.push(t),this.setDirty())},c.removeObject=function(t){for(var e=this.objects,r=0;r<e.length;++r)if(e[r]===t){e.splice(r,1),this.setDirty();break}},c.addOverlay=function(t){this.overlays.indexOf(t)<0&&(this.overlays.push(t),this.setOverlayDirty())},c.removeOverlay=function(t){for(var e=this.overlays,r=0;r<e.length;++r)if(e[r]===t){e.splice(r,1),this.setOverlayDirty();break}}},{\"./lib/box\":311,\"./lib/grid\":312,\"./lib/line\":313,\"./lib/text\":315,\"gl-select-static\":334}],318:[function(t,e,r){\"use strict\";e.exports=function(t,e){t=t||document.body,e=e||{};var r=[.01,1/0];\"distanceLimits\"in e&&(r[0]=e.distanceLimits[0],r[1]=e.distanceLimits[1]);\"zoomMin\"in e&&(r[0]=e.zoomMin);\"zoomMax\"in e&&(r[1]=e.zoomMax);var c=i({center:e.center||[0,0,0],up:e.up||[0,1,0],eye:e.eye||[0,0,10],mode:e.mode||\"orbit\",distanceLimits:r}),u=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],f=0,h=t.clientWidth,p=t.clientHeight,d={keyBindingMode:\"rotate\",enableWheel:!0,view:c,element:t,delay:e.delay||16,rotateSpeed:e.rotateSpeed||1,zoomSpeed:e.zoomSpeed||1,translateSpeed:e.translateSpeed||1,flipX:!!e.flipX,flipY:!!e.flipY,modes:c.modes,_ortho:e._ortho||e.projection&&\"orthographic\"===e.projection.type||!1,tick:function(){var e=n(),r=this.delay,i=e-2*r;c.idle(e-r),c.recalcMatrix(i),c.flush(e-(100+2*r));for(var a=!0,o=c.computedMatrix,s=0;s<16;++s)a=a&&u[s]===o[s],u[s]=o[s];var l=t.clientWidth===h&&t.clientHeight===p;return h=t.clientWidth,p=t.clientHeight,a?!l:(f=Math.exp(c.computedRadius[0]),!0)},lookAt:function(t,e,r){c.lookAt(c.lastT(),t,e,r)},rotate:function(t,e,r){c.rotate(c.lastT(),t,e,r)},pan:function(t,e,r){c.pan(c.lastT(),t,e,r)},translate:function(t,e,r){c.translate(c.lastT(),t,e,r)}};return Object.defineProperties(d,{matrix:{get:function(){return c.computedMatrix},set:function(t){return c.setMatrix(c.lastT(),t),c.computedMatrix},enumerable:!0},mode:{get:function(){return c.getMode()},set:function(t){var e=c.computedUp.slice(),r=c.computedEye.slice(),i=c.computedCenter.slice();if(c.setMode(t),\"turntable\"===t){var a=n();c._active.lookAt(a,r,i,e),c._active.lookAt(a+500,r,i,[0,0,1]),c._active.flush(a)}return c.getMode()},enumerable:!0},center:{get:function(){return c.computedCenter},set:function(t){return c.lookAt(c.lastT(),null,t),c.computedCenter},enumerable:!0},eye:{get:function(){return c.computedEye},set:function(t){return c.lookAt(c.lastT(),t),c.computedEye},enumerable:!0},up:{get:function(){return c.computedUp},set:function(t){return c.lookAt(c.lastT(),null,null,t),c.computedUp},enumerable:!0},distance:{get:function(){return f},set:function(t){return c.setDistance(c.lastT(),t),t},enumerable:!0},distanceLimits:{get:function(){return c.getDistanceLimits(r)},set:function(t){return c.setDistanceLimits(t),t},enumerable:!0}}),t.addEventListener(\"contextmenu\",(function(t){return t.preventDefault(),!1})),d._lastX=-1,d._lastY=-1,d._lastMods={shift:!1,control:!1,alt:!1,meta:!1},d.enableMouseListeners=function(){function e(e,r,i,a){var o=d.keyBindingMode;if(!1!==o){var s=\"rotate\"===o,l=\"pan\"===o,u=\"zoom\"===o,h=!!a.control,p=!!a.alt,g=!!a.shift,m=!!(1&e),v=!!(2&e),y=!!(4&e),x=1/t.clientHeight,b=x*(r-d._lastX),_=x*(i-d._lastY),w=d.flipX?1:-1,T=d.flipY?1:-1,k=Math.PI*d.rotateSpeed,M=n();if(-1!==d._lastX&&-1!==d._lastY&&((s&&m&&!h&&!p&&!g||m&&!h&&!p&&g)&&c.rotate(M,w*k*b,-T*k*_,0),(l&&m&&!h&&!p&&!g||v||m&&h&&!p&&!g)&&c.pan(M,-d.translateSpeed*b*f,d.translateSpeed*_*f,0),u&&m&&!h&&!p&&!g||y||m&&!h&&p&&!g)){var A=-d.zoomSpeed*_/window.innerHeight*(M-c.lastT())*100;c.pan(M,0,0,f*(Math.exp(A)-1))}return d._lastX=r,d._lastY=i,d._lastMods=a,!0}}d.mouseListener=a(t,e),t.addEventListener(\"touchstart\",(function(r){var n=s(r.changedTouches[0],t);e(0,n[0],n[1],d._lastMods),e(1,n[0],n[1],d._lastMods)}),!!l&&{passive:!0}),t.addEventListener(\"touchmove\",(function(r){var n=s(r.changedTouches[0],t);e(1,n[0],n[1],d._lastMods),r.preventDefault()}),!!l&&{passive:!1}),t.addEventListener(\"touchend\",(function(t){e(0,d._lastX,d._lastY,d._lastMods)}),!!l&&{passive:!0}),d.wheelListener=o(t,(function(t,e){if(!1!==d.keyBindingMode&&d.enableWheel){var r=d.flipX?1:-1,i=d.flipY?1:-1,a=n();if(Math.abs(t)>Math.abs(e))c.rotate(a,0,0,-t*r*Math.PI*d.rotateSpeed/window.innerWidth);else if(!d._ortho){var o=-d.zoomSpeed*i*e/window.innerHeight*(a-c.lastT())/20;c.pan(a,0,0,f*(Math.exp(o)-1))}}}),!0)},d.enableMouseListeners(),d};var n=t(\"right-now\"),i=t(\"3d-view\"),a=t(\"mouse-change\"),o=t(\"mouse-wheel\"),s=t(\"mouse-event-offset\"),l=t(\"has-passive-events\")},{\"3d-view\":54,\"has-passive-events\":441,\"mouse-change\":483,\"mouse-event-offset\":484,\"mouse-wheel\":486,\"right-now\":542}],319:[function(t,e,r){var n=t(\"glslify\"),i=t(\"gl-shader\"),a=n([\"precision mediump float;\\n#define GLSLIFY 1\\nattribute vec2 position;\\nvarying vec2 uv;\\nvoid main() {\\n  uv = position;\\n  gl_Position = vec4(position, 0, 1);\\n}\"]),o=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D accumBuffer;\\nvarying vec2 uv;\\n\\nvoid main() {\\n  vec4 accum = texture2D(accumBuffer, 0.5 * (uv + 1.0));\\n  gl_FragColor = min(vec4(1,1,1,1), accum);\\n}\"]);e.exports=function(t){return i(t,a,o,null,[{name:\"position\",type:\"vec2\"}])}},{\"gl-shader\":335,glslify:320}],320:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],321:[function(t,e,r){\"use strict\";var n=t(\"./camera.js\"),i=t(\"gl-axes3d\"),a=t(\"gl-axes3d/properties\"),o=t(\"gl-spikes3d\"),s=t(\"gl-select-static\"),l=t(\"gl-fbo\"),c=t(\"a-big-triangle\"),u=t(\"mouse-change\"),f=t(\"gl-mat4/perspective\"),h=t(\"gl-mat4/ortho\"),p=t(\"./lib/shader\"),d=t(\"is-mobile\")({tablet:!0,featureDetect:!0});function g(){this.mouse=[-1,-1],this.screen=null,this.distance=1/0,this.index=null,this.dataCoordinate=null,this.dataPosition=null,this.object=null,this.data=null}function m(t){var e=Math.round(Math.log(Math.abs(t))/Math.log(10));if(e<0){var r=Math.round(Math.pow(10,-e));return Math.ceil(t*r)/r}if(e>0){r=Math.round(Math.pow(10,e));return Math.ceil(t/r)*r}return Math.ceil(t)}function v(t){return\"boolean\"!=typeof t||t}e.exports={createScene:function(t){(t=t||{}).camera=t.camera||{};var e=t.canvas;if(!e){if(e=document.createElement(\"canvas\"),t.container)t.container.appendChild(e);else document.body.appendChild(e)}var r=t.gl;r||(t.glOptions&&(d=!!t.glOptions.preserveDrawingBuffer),r=function(t,e){var r=null;try{(r=t.getContext(\"webgl\",e))||(r=t.getContext(\"experimental-webgl\",e))}catch(t){return null}return r}(e,t.glOptions||{premultipliedAlpha:!0,antialias:!0,preserveDrawingBuffer:d}));if(!r)throw new Error(\"webgl not supported\");var y=t.bounds||[[-10,-10,-10],[10,10,10]],x=new g,b=l(r,r.drawingBufferWidth,r.drawingBufferHeight,{preferFloat:!d}),_=p(r),w=t.cameraObject&&!0===t.cameraObject._ortho||t.camera.projection&&\"orthographic\"===t.camera.projection.type||!1,T={eye:t.camera.eye||[2,0,0],center:t.camera.center||[0,0,0],up:t.camera.up||[0,1,0],zoomMin:t.camera.zoomMax||.1,zoomMax:t.camera.zoomMin||100,mode:t.camera.mode||\"turntable\",_ortho:w},k=t.axes||{},M=i(r,k);M.enable=!k.disable;var A=t.spikes||{},S=o(r,A),E=[],C=[],L=[],I=[],P=!0,z=!0,O=new Array(16),D=new Array(16),R={view:null,projection:O,model:D,_ortho:!1},F=(z=!0,[r.drawingBufferWidth,r.drawingBufferHeight]),B=t.cameraObject||n(e,T),N={gl:r,contextLost:!1,pixelRatio:t.pixelRatio||1,canvas:e,selection:x,camera:B,axes:M,axesPixels:null,spikes:S,bounds:y,objects:E,shape:F,aspect:t.aspectRatio||[1,1,1],pickRadius:t.pickRadius||10,zNear:t.zNear||.01,zFar:t.zFar||1e3,fovy:t.fovy||Math.PI/4,clearColor:t.clearColor||[0,0,0,0],autoResize:v(t.autoResize),autoBounds:v(t.autoBounds),autoScale:!!t.autoScale,autoCenter:v(t.autoCenter),clipToBounds:v(t.clipToBounds),snapToData:!!t.snapToData,onselect:t.onselect||null,onrender:t.onrender||null,onclick:t.onclick||null,cameraParams:R,oncontextloss:null,mouseListener:null,_stopped:!1,getAspectratio:function(){return{x:this.aspect[0],y:this.aspect[1],z:this.aspect[2]}},setAspectratio:function(t){this.aspect[0]=t.x,this.aspect[1]=t.y,this.aspect[2]=t.z,z=!0},setBounds:function(t,e){this.bounds[0][t]=e.min,this.bounds[1][t]=e.max},setClearColor:function(t){this.clearColor=t},clearRGBA:function(){this.gl.clearColor(this.clearColor[0],this.clearColor[1],this.clearColor[2],this.clearColor[3]),this.gl.clear(this.gl.COLOR_BUFFER_BIT|this.gl.DEPTH_BUFFER_BIT)}},j=[r.drawingBufferWidth/N.pixelRatio|0,r.drawingBufferHeight/N.pixelRatio|0];function U(){if(!N._stopped&&N.autoResize){var t=e.parentNode,r=1,n=1;t&&t!==document.body?(r=t.clientWidth,n=t.clientHeight):(r=window.innerWidth,n=window.innerHeight);var i=0|Math.ceil(r*N.pixelRatio),a=0|Math.ceil(n*N.pixelRatio);if(i!==e.width||a!==e.height){e.width=i,e.height=a;var o=e.style;o.position=o.position||\"absolute\",o.left=\"0px\",o.top=\"0px\",o.width=r+\"px\",o.height=n+\"px\",P=!0}}}N.autoResize&&U();function V(){for(var t=E.length,e=I.length,n=0;n<e;++n)L[n]=0;t:for(n=0;n<t;++n){var i=E[n],a=i.pickSlots;if(a){for(var o=0;o<e;++o)if(L[o]+a<255){C[n]=o,i.setPickBase(L[o]+1),L[o]+=a;continue t}var l=s(r,F);C[n]=e,I.push(l),L.push(a),i.setPickBase(1),e+=1}else C[n]=-1}for(;e>0&&0===L[e-1];)L.pop(),I.pop().dispose()}function q(){if(N.contextLost)return!0;r.isContextLost()&&(N.contextLost=!0,N.mouseListener.enabled=!1,N.selection.object=null,N.oncontextloss&&N.oncontextloss())}window.addEventListener(\"resize\",U),N.update=function(t){N._stopped||(t=t||{},P=!0,z=!0)},N.add=function(t){N._stopped||(t.axes=M,E.push(t),C.push(-1),P=!0,z=!0,V())},N.remove=function(t){if(!N._stopped){var e=E.indexOf(t);e<0||(E.splice(e,1),C.pop(),P=!0,z=!0,V())}},N.dispose=function(){if(!N._stopped&&(N._stopped=!0,window.removeEventListener(\"resize\",U),e.removeEventListener(\"webglcontextlost\",q),N.mouseListener.enabled=!1,!N.contextLost)){M.dispose(),S.dispose();for(var t=0;t<E.length;++t)E[t].dispose();b.dispose();for(t=0;t<I.length;++t)I[t].dispose();_.dispose(),r=null,M=null,S=null,E=[]}},N._mouseRotating=!1,N._prevButtons=0,N.enableMouseListeners=function(){N.mouseListener=u(e,(function(t,e,r){if(!N._stopped){var n=I.length,i=E.length,a=x.object;x.distance=1/0,x.mouse[0]=e,x.mouse[1]=r,x.object=null,x.screen=null,x.dataCoordinate=x.dataPosition=null;var o=!1;if(t&&N._prevButtons)N._mouseRotating=!0;else{N._mouseRotating&&(z=!0),N._mouseRotating=!1;for(var s=0;s<n;++s){var l=I[s].query(e,j[1]-r-1,N.pickRadius);if(l){if(l.distance>x.distance)continue;for(var c=0;c<i;++c){var u=E[c];if(C[c]===s){var f=u.pick(l);f&&(x.buttons=t,x.screen=l.coord,x.distance=l.distance,x.object=u,x.index=f.distance,x.dataPosition=f.position,x.dataCoordinate=f.dataCoordinate,x.data=f,o=!0)}}}}}a&&a!==x.object&&(a.highlight&&a.highlight(null),P=!0),x.object&&(x.object.highlight&&x.object.highlight(x.data),P=!0),(o=o||x.object!==a)&&N.onselect&&N.onselect(x),1&t&&!(1&N._prevButtons)&&N.onclick&&N.onclick(x),N._prevButtons=t}}))},e.addEventListener(\"webglcontextlost\",q);var H=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],G=[H[0].slice(),H[1].slice()];function Y(){if(!q()){U();var t=N.camera.tick();R.view=N.camera.matrix,P=P||t,z=z||t,M.pixelRatio=N.pixelRatio,S.pixelRatio=N.pixelRatio;var e=E.length,n=H[0],i=H[1];n[0]=n[1]=n[2]=1/0,i[0]=i[1]=i[2]=-1/0;for(var o=0;o<e;++o){(L=E[o]).pixelRatio=N.pixelRatio,L.axes=N.axes,P=P||!!L.dirty,z=z||!!L.dirty;var s=L.bounds;if(s)for(var l=s[0],u=s[1],p=0;p<3;++p)n[p]=Math.min(n[p],l[p]),i[p]=Math.max(i[p],u[p])}var d=N.bounds;if(N.autoBounds)for(p=0;p<3;++p){if(i[p]<n[p])n[p]=-1,i[p]=1;else{n[p]===i[p]&&(n[p]-=1,i[p]+=1);var g=.05*(i[p]-n[p]);n[p]=n[p]-g,i[p]=i[p]+g}d[0][p]=n[p],d[1][p]=i[p]}var v=!1;for(p=0;p<3;++p)v=v||G[0][p]!==d[0][p]||G[1][p]!==d[1][p],G[0][p]=d[0][p],G[1][p]=d[1][p];if(z=z||v,P=P||v){if(v){var y=[0,0,0];for(o=0;o<3;++o)y[o]=m((d[1][o]-d[0][o])/10);M.autoTicks?M.update({bounds:d,tickSpacing:y}):M.update({bounds:d})}var T=r.drawingBufferWidth,k=r.drawingBufferHeight;F[0]=T,F[1]=k,j[0]=0|Math.max(T/N.pixelRatio,1),j[1]=0|Math.max(k/N.pixelRatio,1),function(t,e){var r=t.bounds,n=t.cameraParams,i=n.projection,a=n.model,o=t.gl.drawingBufferWidth,s=t.gl.drawingBufferHeight,l=t.zNear,c=t.zFar,u=t.fovy,p=o/s;e?(h(i,-p,p,-1,1,l,c),n._ortho=!0):(f(i,u,p,l,c),n._ortho=!1);for(var d=0;d<16;++d)a[d]=0;a[15]=1;var g=0;for(d=0;d<3;++d)g=Math.max(g,r[1][d]-r[0][d]);for(d=0;d<3;++d)t.autoScale?a[5*d]=t.aspect[d]/(r[1][d]-r[0][d]):a[5*d]=1/g,t.autoCenter&&(a[12+d]=.5*-a[5*d]*(r[0][d]+r[1][d]))}(N,w);for(o=0;o<e;++o){(L=E[o]).axesBounds=d,N.clipToBounds&&(L.clipBounds=d)}x.object&&(N.snapToData?S.position=x.dataCoordinate:S.position=x.dataPosition,S.bounds=d),z&&(z=!1,function(){if(!q()){r.colorMask(!0,!0,!0,!0),r.depthMask(!0),r.disable(r.BLEND),r.enable(r.DEPTH_TEST),r.depthFunc(r.LEQUAL);for(var t=E.length,e=I.length,n=0;n<e;++n){var i=I[n];i.shape=j,i.begin();for(var a=0;a<t;++a)if(C[a]===n){var o=E[a];o.drawPick&&(o.pixelRatio=1,o.drawPick(R))}i.end()}}}()),N.axesPixels=a(N.axes,R,T,k),N.onrender&&N.onrender(),r.bindFramebuffer(r.FRAMEBUFFER,null),r.viewport(0,0,T,k),N.clearRGBA(),r.depthMask(!0),r.colorMask(!0,!0,!0,!0),r.enable(r.DEPTH_TEST),r.depthFunc(r.LEQUAL),r.disable(r.BLEND),r.disable(r.CULL_FACE);var A=!1;M.enable&&(A=A||M.isTransparent(),M.draw(R)),S.axes=M,x.object&&S.draw(R),r.disable(r.CULL_FACE);for(o=0;o<e;++o){(L=E[o]).axes=M,L.pixelRatio=N.pixelRatio,L.isOpaque&&L.isOpaque()&&L.draw(R),L.isTransparent&&L.isTransparent()&&(A=!0)}if(A){b.shape=F,b.bind(),r.clear(r.DEPTH_BUFFER_BIT),r.colorMask(!1,!1,!1,!1),r.depthMask(!0),r.depthFunc(r.LESS),M.enable&&M.isTransparent()&&M.drawTransparent(R);for(o=0;o<e;++o){(L=E[o]).isOpaque&&L.isOpaque()&&L.draw(R)}r.enable(r.BLEND),r.blendEquation(r.FUNC_ADD),r.blendFunc(r.ONE,r.ONE_MINUS_SRC_ALPHA),r.colorMask(!0,!0,!0,!0),r.depthMask(!1),r.clearColor(0,0,0,0),r.clear(r.COLOR_BUFFER_BIT),M.isTransparent()&&M.drawTransparent(R);for(o=0;o<e;++o){var L;(L=E[o]).isTransparent&&L.isTransparent()&&L.drawTransparent(R)}r.bindFramebuffer(r.FRAMEBUFFER,null),r.blendFunc(r.ONE,r.ONE_MINUS_SRC_ALPHA),r.disable(r.DEPTH_TEST),_.bind(),b.color[0].bind(0),_.uniforms.accumBuffer=0,c(r),r.disable(r.BLEND)}P=!1;for(o=0;o<e;++o)E[o].dirty=!1}}}return N.enableMouseListeners(),function t(){if(N._stopped||N.contextLost)return;Y(),requestAnimationFrame(t)}(),N.redraw=function(){N._stopped||(P=!0,Y())},N},createCamera:n}},{\"./camera.js\":318,\"./lib/shader\":319,\"a-big-triangle\":64,\"gl-axes3d\":250,\"gl-axes3d/properties\":258,\"gl-fbo\":269,\"gl-mat4/ortho\":296,\"gl-mat4/perspective\":297,\"gl-select-static\":334,\"gl-spikes3d\":345,\"is-mobile\":467,\"mouse-change\":483}],322:[function(t,e,r){var n=t(\"glslify\");r.pointVertex=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\n\\nuniform mat3 matrix;\\nuniform float pointSize;\\nuniform float pointCloud;\\n\\nhighp float rand(vec2 co) {\\n  highp float a = 12.9898;\\n  highp float b = 78.233;\\n  highp float c = 43758.5453;\\n  highp float d = dot(co.xy, vec2(a, b));\\n  highp float e = mod(d, 3.14);\\n  return fract(sin(e) * c);\\n}\\n\\nvoid main() {\\n  vec3 hgPosition = matrix * vec3(position, 1);\\n  gl_Position  = vec4(hgPosition.xy, 0, hgPosition.z);\\n    // if we don't jitter the point size a bit, overall point cloud\\n    // saturation 'jumps' on zooming, which is disturbing and confusing\\n  gl_PointSize = pointSize * ((19.5 + rand(position)) / 20.0);\\n  if(pointCloud != 0.0) { // pointCloud is truthy\\n    // get the same square surface as circle would be\\n    gl_PointSize *= 0.886;\\n  }\\n}\"]),r.pointFragment=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color, borderColor;\\nuniform float centerFraction;\\nuniform float pointCloud;\\n\\nvoid main() {\\n  float radius;\\n  vec4 baseColor;\\n  if(pointCloud != 0.0) { // pointCloud is truthy\\n    if(centerFraction == 1.0) {\\n      gl_FragColor = color;\\n    } else {\\n      gl_FragColor = mix(borderColor, color, centerFraction);\\n    }\\n  } else {\\n    radius = length(2.0 * gl_PointCoord.xy - 1.0);\\n    if(radius > 1.0) {\\n      discard;\\n    }\\n    baseColor = mix(borderColor, color, step(radius, centerFraction));\\n    gl_FragColor = vec4(baseColor.rgb * baseColor.a, baseColor.a);\\n  }\\n}\\n\"]),r.pickVertex=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position;\\nattribute vec4 pickId;\\n\\nuniform mat3 matrix;\\nuniform float pointSize;\\nuniform vec4 pickOffset;\\n\\nvarying vec4 fragId;\\n\\nvoid main() {\\n  vec3 hgPosition = matrix * vec3(position, 1);\\n  gl_Position  = vec4(hgPosition.xy, 0, hgPosition.z);\\n  gl_PointSize = pointSize;\\n\\n  vec4 id = pickId + pickOffset;\\n  id.y += floor(id.x / 256.0);\\n  id.x -= floor(id.x / 256.0) * 256.0;\\n\\n  id.z += floor(id.y / 256.0);\\n  id.y -= floor(id.y / 256.0) * 256.0;\\n\\n  id.w += floor(id.z / 256.0);\\n  id.z -= floor(id.z / 256.0) * 256.0;\\n\\n  fragId = id;\\n}\\n\"]),r.pickFragment=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragId;\\n\\nvoid main() {\\n  float radius = length(2.0 * gl_PointCoord.xy - 1.0);\\n  if(radius > 1.0) {\\n    discard;\\n  }\\n  gl_FragColor = fragId / 255.0;\\n}\\n\"])},{glslify:323}],323:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],324:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),i=t(\"gl-buffer\"),a=t(\"typedarray-pool\"),o=t(\"./lib/shader\");function s(t,e,r,n,i){this.plot=t,this.offsetBuffer=e,this.pickBuffer=r,this.shader=n,this.pickShader=i,this.sizeMin=.5,this.sizeMinCap=2,this.sizeMax=20,this.areaRatio=1,this.pointCount=0,this.color=[1,0,0,1],this.borderColor=[0,0,0,1],this.blend=!1,this.pickOffset=0,this.points=null}e.exports=function(t,e){var r=t.gl,a=i(r),l=i(r),c=n(r,o.pointVertex,o.pointFragment),u=n(r,o.pickVertex,o.pickFragment),f=new s(t,a,l,c,u);return f.update(e),t.addObject(f),f};var l,c,u=s.prototype;u.dispose=function(){this.shader.dispose(),this.pickShader.dispose(),this.offsetBuffer.dispose(),this.pickBuffer.dispose(),this.plot.removeObject(this)},u.update=function(t){var e;function r(e,r){return e in t?t[e]:r}t=t||{},this.sizeMin=r(\"sizeMin\",.5),this.sizeMax=r(\"sizeMax\",20),this.color=r(\"color\",[1,0,0,1]).slice(),this.areaRatio=r(\"areaRatio\",1),this.borderColor=r(\"borderColor\",[0,0,0,1]).slice(),this.blend=r(\"blend\",!1);var n=t.positions.length>>>1,i=t.positions instanceof Float32Array,o=t.idToIndex instanceof Int32Array&&t.idToIndex.length>=n,s=t.positions,l=i?s:a.mallocFloat32(s.length),c=o?t.idToIndex:a.mallocInt32(n);if(i||l.set(s),!o)for(l.set(s),e=0;e<n;e++)c[e]=e;this.points=s,this.offsetBuffer.update(l),this.pickBuffer.update(c),i||a.free(l),o||a.free(c),this.pointCount=n,this.pickOffset=0},u.unifiedDraw=(l=[1,0,0,0,1,0,0,0,1],c=[0,0,0,0],function(t){var e=void 0!==t,r=e?this.pickShader:this.shader,n=this.plot.gl,i=this.plot.dataBox;if(0===this.pointCount)return t;var a=i[2]-i[0],o=i[3]-i[1],s=function(t,e){var r,n=0,i=t.length>>>1;for(r=0;r<i;r++){var a=t[2*r],o=t[2*r+1];a>=e[0]&&a<=e[2]&&o>=e[1]&&o<=e[3]&&n++}return n}(this.points,i),u=this.plot.pickPixelRatio*Math.max(Math.min(this.sizeMinCap,this.sizeMin),Math.min(this.sizeMax,this.sizeMax/Math.pow(s,.33333)));l[0]=2/a,l[4]=2/o,l[6]=-2*i[0]/a-1,l[7]=-2*i[1]/o-1,this.offsetBuffer.bind(),r.bind(),r.attributes.position.pointer(),r.uniforms.matrix=l,r.uniforms.color=this.color,r.uniforms.borderColor=this.borderColor,r.uniforms.pointCloud=u<5,r.uniforms.pointSize=u,r.uniforms.centerFraction=Math.min(1,Math.max(0,Math.sqrt(1-this.areaRatio))),e&&(c[0]=255&t,c[1]=t>>8&255,c[2]=t>>16&255,c[3]=t>>24&255,this.pickBuffer.bind(),r.attributes.pickId.pointer(n.UNSIGNED_BYTE),r.uniforms.pickOffset=c,this.pickOffset=t);var f=n.getParameter(n.BLEND),h=n.getParameter(n.DITHER);return f&&!this.blend&&n.disable(n.BLEND),h&&n.disable(n.DITHER),n.drawArrays(n.POINTS,0,this.pointCount),f&&!this.blend&&n.enable(n.BLEND),h&&n.enable(n.DITHER),t+this.pointCount}),u.draw=u.unifiedDraw,u.drawPick=u.unifiedDraw,u.pick=function(t,e,r){var n=this.pickOffset,i=this.pointCount;if(r<n||r>=n+i)return null;var a=r-n,o=this.points;return{object:this,pointId:a,dataCoord:[o[2*a],o[2*a+1]]}}},{\"./lib/shader\":322,\"gl-buffer\":259,\"gl-shader\":335,\"typedarray-pool\":595}],325:[function(t,e,r){e.exports=function(t,e,r,n){var i,a,o,s,l,c=e[0],u=e[1],f=e[2],h=e[3],p=r[0],d=r[1],g=r[2],m=r[3];(a=c*p+u*d+f*g+h*m)<0&&(a=-a,p=-p,d=-d,g=-g,m=-m);1-a>1e-6?(i=Math.acos(a),o=Math.sin(i),s=Math.sin((1-n)*i)/o,l=Math.sin(n*i)/o):(s=1-n,l=n);return t[0]=s*c+l*p,t[1]=s*u+l*d,t[2]=s*f+l*g,t[3]=s*h+l*m,t}},{}],326:[function(t,e,r){\"use strict\";e.exports=function(t){return t||0===t?t.toString():\"\"}},{}],327:[function(t,e,r){\"use strict\";var n=t(\"vectorize-text\");e.exports=function(t,e,r){var a=i[e];a||(a=i[e]={});if(t in a)return a[t];var o={textAlign:\"center\",textBaseline:\"middle\",lineHeight:1,font:e,lineSpacing:1.25,styletags:{breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0},triangles:!0},s=n(t,o);o.triangles=!1;var l,c,u=n(t,o);if(r&&1!==r){for(l=0;l<s.positions.length;++l)for(c=0;c<s.positions[l].length;++c)s.positions[l][c]/=r;for(l=0;l<u.positions.length;++l)for(c=0;c<u.positions[l].length;++c)u.positions[l][c]/=r}var f=[[1/0,1/0],[-1/0,-1/0]],h=u.positions.length;for(l=0;l<h;++l){var p=u.positions[l];for(c=0;c<2;++c)f[0][c]=Math.min(f[0][c],p[c]),f[1][c]=Math.max(f[1][c],p[c])}return a[t]=[s,u,f]};var i={}},{\"vectorize-text\":600}],328:[function(t,e,r){var n=t(\"gl-shader\"),i=t(\"glslify\"),a=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform vec4 highlightId;\\nuniform float highlightScale;\\nuniform mat4 model, view, projection;\\nuniform vec3 clipBounds[2];\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0,0,0,0);\\n  } else {\\n    float scale = 1.0;\\n    if(distance(highlightId, id) < 0.0001) {\\n      scale = highlightScale;\\n    }\\n\\n    vec4 worldPosition = model * vec4(position, 1);\\n    vec4 viewPosition = view * worldPosition;\\n    viewPosition = viewPosition / viewPosition.w;\\n    vec4 clipPosition = projection * (viewPosition + scale * vec4(glyph.x, -glyph.y, 0, 0));\\n\\n    gl_Position = clipPosition;\\n    interpColor = color;\\n    pickId = id;\\n    dataCoordinate = position;\\n  }\\n}\"]),o=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\nuniform vec2 screenSize;\\nuniform vec3 clipBounds[2];\\nuniform float highlightScale, pixelRatio;\\nuniform vec4 highlightId;\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0,0,0,0);\\n  } else {\\n    float scale = pixelRatio;\\n    if(distance(highlightId.bgr, id.bgr) < 0.001) {\\n      scale *= highlightScale;\\n    }\\n\\n    vec4 worldPosition = model * vec4(position, 1.0);\\n    vec4 viewPosition = view * worldPosition;\\n    vec4 clipPosition = projection * viewPosition;\\n    clipPosition /= clipPosition.w;\\n\\n    gl_Position = clipPosition + vec4(screenSize * scale * vec2(glyph.x, -glyph.y), 0.0, 0.0);\\n    interpColor = color;\\n    pickId = id;\\n    dataCoordinate = position;\\n  }\\n}\"]),s=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nattribute vec3 position;\\nattribute vec4 color;\\nattribute vec2 glyph;\\nattribute vec4 id;\\n\\nuniform float highlightScale;\\nuniform vec4 highlightId;\\nuniform vec3 axes[2];\\nuniform mat4 model, view, projection;\\nuniform vec2 screenSize;\\nuniform vec3 clipBounds[2];\\nuniform float scale, pixelRatio;\\n\\nvarying vec4 interpColor;\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], position)) {\\n\\n    gl_Position = vec4(0,0,0,0);\\n  } else {\\n    float lscale = pixelRatio * scale;\\n    if(distance(highlightId, id) < 0.0001) {\\n      lscale *= highlightScale;\\n    }\\n\\n    vec4 clipCenter   = projection * view * model * vec4(position, 1);\\n    vec3 dataPosition = position + 0.5*lscale*(axes[0] * glyph.x + axes[1] * glyph.y) * clipCenter.w * screenSize.y;\\n    vec4 clipPosition = projection * view * model * vec4(dataPosition, 1);\\n\\n    gl_Position = clipPosition;\\n    interpColor = color;\\n    pickId = id;\\n    dataCoordinate = dataPosition;\\n  }\\n}\\n\"]),l=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 fragClipBounds[2];\\nuniform float opacity;\\n\\nvarying vec4 interpColor;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (\\n    outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate) ||\\n    interpColor.a * opacity == 0.\\n  ) discard;\\n  gl_FragColor = interpColor * opacity;\\n}\\n\"]),c=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 fragClipBounds[2];\\nuniform float pickGroup;\\n\\nvarying vec4 pickId;\\nvarying vec3 dataCoordinate;\\n\\nvoid main() {\\n  if (outOfRange(fragClipBounds[0], fragClipBounds[1], dataCoordinate)) discard;\\n\\n  gl_FragColor = vec4(pickGroup, pickId.bgr);\\n}\"]),u=[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec4\"},{name:\"glyph\",type:\"vec2\"},{name:\"id\",type:\"vec4\"}],f={vertex:a,fragment:l,attributes:u},h={vertex:o,fragment:l,attributes:u},p={vertex:s,fragment:l,attributes:u},d={vertex:a,fragment:c,attributes:u},g={vertex:o,fragment:c,attributes:u},m={vertex:s,fragment:c,attributes:u};function v(t,e){var r=n(t,e),i=r.attributes;return i.position.location=0,i.color.location=1,i.glyph.location=2,i.id.location=3,r}r.createPerspective=function(t){return v(t,f)},r.createOrtho=function(t){return v(t,h)},r.createProject=function(t){return v(t,p)},r.createPickPerspective=function(t){return v(t,d)},r.createPickOrtho=function(t){return v(t,g)},r.createPickProject=function(t){return v(t,m)}},{\"gl-shader\":335,glslify:329}],329:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],330:[function(t,e,r){\"use strict\";var n=t(\"is-string-blank\"),i=t(\"gl-buffer\"),a=t(\"gl-vao\"),o=t(\"typedarray-pool\"),s=t(\"gl-mat4/multiply\"),l=t(\"./lib/shaders\"),c=t(\"./lib/glyphs\"),u=t(\"./lib/get-simple-string\"),f=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function h(t,e){var r=t[0],n=t[1],i=t[2],a=t[3];return t[0]=e[0]*r+e[4]*n+e[8]*i+e[12]*a,t[1]=e[1]*r+e[5]*n+e[9]*i+e[13]*a,t[2]=e[2]*r+e[6]*n+e[10]*i+e[14]*a,t[3]=e[3]*r+e[7]*n+e[11]*i+e[15]*a,t}function p(t,e,r,n){return h(n,n),h(n,n),h(n,n)}function d(t,e){this.index=t,this.dataCoordinate=this.position=e}function g(t){return!0===t||t>1?1:t}function m(t,e,r,n,i,a,o,s,l,c,u,f){this.gl=t,this.pixelRatio=1,this.shader=e,this.orthoShader=r,this.projectShader=n,this.pointBuffer=i,this.colorBuffer=a,this.glyphBuffer=o,this.idBuffer=s,this.vao=l,this.vertexCount=0,this.lineVertexCount=0,this.opacity=1,this.hasAlpha=!1,this.lineWidth=0,this.projectScale=[2/3,2/3,2/3],this.projectOpacity=[1,1,1],this.projectHasAlpha=!1,this.pickId=0,this.pickPerspectiveShader=c,this.pickOrthoShader=u,this.pickProjectShader=f,this.points=[],this._selectResult=new d(0,[0,0,0]),this.useOrtho=!0,this.bounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.axesProject=[!0,!0,!0],this.axesBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.highlightId=[1,1,1,1],this.highlightScale=2,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.dirty=!0}e.exports=function(t){var e=t.gl,r=l.createPerspective(e),n=l.createOrtho(e),o=l.createProject(e),s=l.createPickPerspective(e),c=l.createPickOrtho(e),u=l.createPickProject(e),f=i(e),h=i(e),p=i(e),d=i(e),g=a(e,[{buffer:f,size:3,type:e.FLOAT},{buffer:h,size:4,type:e.FLOAT},{buffer:p,size:2,type:e.FLOAT},{buffer:d,size:4,type:e.UNSIGNED_BYTE,normalized:!0}]),v=new m(e,r,n,o,f,h,p,d,g,s,c,u);return v.update(t),v};var v=m.prototype;v.pickSlots=1,v.setPickBase=function(t){this.pickId=t},v.isTransparent=function(){if(this.hasAlpha)return!0;for(var t=0;t<3;++t)if(this.axesProject[t]&&this.projectHasAlpha)return!0;return!1},v.isOpaque=function(){if(!this.hasAlpha)return!0;for(var t=0;t<3;++t)if(this.axesProject[t]&&!this.projectHasAlpha)return!0;return!1};var y=[0,0],x=[0,0,0],b=[0,0,0],_=[0,0,0,1],w=[0,0,0,1],T=f.slice(),k=[0,0,0],M=[[0,0,0],[0,0,0]];function A(t){return t[0]=t[1]=t[2]=0,t}function S(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=1,t}function E(t,e,r,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[r]=n,t}function C(t,e,r,n){var i,a=e.axesProject,o=e.gl,l=t.uniforms,c=r.model||f,u=r.view||f,h=r.projection||f,d=e.axesBounds,g=function(t){for(var e=M,r=0;r<2;++r)for(var n=0;n<3;++n)e[r][n]=Math.max(Math.min(t[r][n],1e8),-1e8);return e}(e.clipBounds);i=e.axes&&e.axes.lastCubeProps?e.axes.lastCubeProps.axis:[1,1,1],y[0]=2/o.drawingBufferWidth,y[1]=2/o.drawingBufferHeight,t.bind(),l.view=u,l.projection=h,l.screenSize=y,l.highlightId=e.highlightId,l.highlightScale=e.highlightScale,l.clipBounds=g,l.pickGroup=e.pickId/255,l.pixelRatio=n;for(var m=0;m<3;++m)if(a[m]){l.scale=e.projectScale[m],l.opacity=e.projectOpacity[m];for(var v=T,C=0;C<16;++C)v[C]=0;for(C=0;C<4;++C)v[5*C]=1;v[5*m]=0,i[m]<0?v[12+m]=d[0][m]:v[12+m]=d[1][m],s(v,c,v),l.model=v;var L=(m+1)%3,I=(m+2)%3,P=A(x),z=A(b);P[L]=1,z[I]=1;var O=p(0,0,0,S(_,P)),D=p(0,0,0,S(w,z));if(Math.abs(O[1])>Math.abs(D[1])){var R=O;O=D,D=R,R=P,P=z,z=R;var F=L;L=I,I=F}O[0]<0&&(P[L]=-1),D[1]>0&&(z[I]=-1);var B=0,N=0;for(C=0;C<4;++C)B+=Math.pow(c[4*L+C],2),N+=Math.pow(c[4*I+C],2);P[L]/=Math.sqrt(B),z[I]/=Math.sqrt(N),l.axes[0]=P,l.axes[1]=z,l.fragClipBounds[0]=E(k,g[0],m,-1e8),l.fragClipBounds[1]=E(k,g[1],m,1e8),e.vao.bind(),e.vao.draw(o.TRIANGLES,e.vertexCount),e.lineWidth>0&&(o.lineWidth(e.lineWidth*n),e.vao.draw(o.LINES,e.lineVertexCount,e.vertexCount)),e.vao.unbind()}}var L=[[-1e8,-1e8,-1e8],[1e8,1e8,1e8]];function I(t,e,r,n,i,a,o){var s=r.gl;if((a===r.projectHasAlpha||o)&&C(e,r,n,i),a===r.hasAlpha||o){t.bind();var l=t.uniforms;l.model=n.model||f,l.view=n.view||f,l.projection=n.projection||f,y[0]=2/s.drawingBufferWidth,y[1]=2/s.drawingBufferHeight,l.screenSize=y,l.highlightId=r.highlightId,l.highlightScale=r.highlightScale,l.fragClipBounds=L,l.clipBounds=r.axes.bounds,l.opacity=r.opacity,l.pickGroup=r.pickId/255,l.pixelRatio=i,r.vao.bind(),r.vao.draw(s.TRIANGLES,r.vertexCount),r.lineWidth>0&&(s.lineWidth(r.lineWidth*i),r.vao.draw(s.LINES,r.lineVertexCount,r.vertexCount)),r.vao.unbind()}}function P(t,e,r,i){var a;a=Array.isArray(t)?e<t.length?t[e]:void 0:t,a=u(a);var o=!0;n(a)&&(a=\"\\u25bc\",o=!1);var s=c(a,r,i);return{mesh:s[0],lines:s[1],bounds:s[2],visible:o}}v.draw=function(t){I(this.useOrtho?this.orthoShader:this.shader,this.projectShader,this,t,this.pixelRatio,!1,!1)},v.drawTransparent=function(t){I(this.useOrtho?this.orthoShader:this.shader,this.projectShader,this,t,this.pixelRatio,!0,!1)},v.drawPick=function(t){I(this.useOrtho?this.pickOrthoShader:this.pickPerspectiveShader,this.pickProjectShader,this,t,1,!0,!0)},v.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=t.value[2]+(t.value[1]<<8)+(t.value[0]<<16);if(e>=this.pointCount||e<0)return null;var r=this.points[e],n=this._selectResult;n.index=e;for(var i=0;i<3;++i)n.position[i]=n.dataCoordinate[i]=r[i];return n},v.highlight=function(t){if(t){var e=t.index,r=255&e,n=e>>8&255,i=e>>16&255;this.highlightId=[r/255,n/255,i/255,0]}else this.highlightId=[1,1,1,1]},v.update=function(t){if(\"perspective\"in(t=t||{})&&(this.useOrtho=!t.perspective),\"orthographic\"in t&&(this.useOrtho=!!t.orthographic),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"project\"in t)if(Array.isArray(t.project))this.axesProject=t.project;else{var e=!!t.project;this.axesProject=[e,e,e]}if(\"projectScale\"in t)if(Array.isArray(t.projectScale))this.projectScale=t.projectScale.slice();else{var r=+t.projectScale;this.projectScale=[r,r,r]}if(this.projectHasAlpha=!1,\"projectOpacity\"in t){if(Array.isArray(t.projectOpacity))this.projectOpacity=t.projectOpacity.slice();else{r=+t.projectOpacity;this.projectOpacity=[r,r,r]}for(var n=0;n<3;++n)this.projectOpacity[n]=g(this.projectOpacity[n]),this.projectOpacity[n]<1&&(this.projectHasAlpha=!0)}this.hasAlpha=!1,\"opacity\"in t&&(this.opacity=g(t.opacity),this.opacity<1&&(this.hasAlpha=!0)),this.dirty=!0;var i,a,s=t.position,l=t.font||\"normal\",c=t.alignment||[0,0];if(2===c.length)i=c[0],a=c[1];else{i=[],a=[];for(n=0;n<c.length;++n)i[n]=c[n][0],a[n]=c[n][1]}var u=[1/0,1/0,1/0],f=[-1/0,-1/0,-1/0],h=t.glyph,p=t.color,d=t.size,m=t.angle,v=t.lineColor,y=-1,x=0,b=0,_=0;if(s.length){_=s.length;t:for(n=0;n<_;++n){for(var w=s[n],T=0;T<3;++T)if(isNaN(w[T])||!isFinite(w[T]))continue t;var k=(N=P(h,n,l,this.pixelRatio)).mesh,M=N.lines,A=N.bounds;x+=3*k.cells.length,b+=2*M.edges.length}}var S=x+b,E=o.mallocFloat(3*S),C=o.mallocFloat(4*S),L=o.mallocFloat(2*S),I=o.mallocUint32(S);if(S>0){var z=0,O=x,D=[0,0,0,1],R=[0,0,0,1],F=Array.isArray(p)&&Array.isArray(p[0]),B=Array.isArray(v)&&Array.isArray(v[0]);t:for(n=0;n<_;++n){y+=1;for(w=s[n],T=0;T<3;++T){if(isNaN(w[T])||!isFinite(w[T]))continue t;f[T]=Math.max(f[T],w[T]),u[T]=Math.min(u[T],w[T])}k=(N=P(h,n,l,this.pixelRatio)).mesh,M=N.lines,A=N.bounds;var N,j=N.visible;if(j)if(Array.isArray(p)){if(3===(U=F?n<p.length?p[n]:[0,0,0,0]:p).length){for(T=0;T<3;++T)D[T]=U[T];D[3]=1}else if(4===U.length){for(T=0;T<4;++T)D[T]=U[T];!this.hasAlpha&&U[3]<1&&(this.hasAlpha=!0)}}else D[0]=D[1]=D[2]=0,D[3]=1;else D=[1,1,1,0];if(j)if(Array.isArray(v)){var U;if(3===(U=B?n<v.length?v[n]:[0,0,0,0]:v).length){for(T=0;T<3;++T)R[T]=U[T];R[T]=1}else if(4===U.length){for(T=0;T<4;++T)R[T]=U[T];!this.hasAlpha&&U[3]<1&&(this.hasAlpha=!0)}}else R[0]=R[1]=R[2]=0,R[3]=1;else R=[1,1,1,0];var V=.5;j?Array.isArray(d)?V=n<d.length?+d[n]:12:d?V=+d:this.useOrtho&&(V=12):V=0;var q=0;Array.isArray(m)?q=n<m.length?+m[n]:0:m&&(q=+m);var H=Math.cos(q),G=Math.sin(q);for(w=s[n],T=0;T<3;++T)f[T]=Math.max(f[T],w[T]),u[T]=Math.min(u[T],w[T]);var Y=i,W=a;Y=0;Array.isArray(i)?Y=n<i.length?i[n]:0:i&&(Y=i);W=0;Array.isArray(a)?W=n<a.length?a[n]:0:a&&(W=a);var X=[Y*=Y>0?1-A[0][0]:Y<0?1+A[1][0]:1,W*=W>0?1-A[0][1]:W<0?1+A[1][1]:1],Z=k.cells||[],J=k.positions||[];for(T=0;T<Z.length;++T)for(var K=Z[T],Q=0;Q<3;++Q){for(var $=0;$<3;++$)E[3*z+$]=w[$];for($=0;$<4;++$)C[4*z+$]=D[$];I[z]=y;var tt=J[K[Q]];L[2*z]=V*(H*tt[0]-G*tt[1]+X[0]),L[2*z+1]=V*(G*tt[0]+H*tt[1]+X[1]),z+=1}for(Z=M.edges,J=M.positions,T=0;T<Z.length;++T)for(K=Z[T],Q=0;Q<2;++Q){for($=0;$<3;++$)E[3*O+$]=w[$];for($=0;$<4;++$)C[4*O+$]=R[$];I[O]=y;tt=J[K[Q]];L[2*O]=V*(H*tt[0]-G*tt[1]+X[0]),L[2*O+1]=V*(G*tt[0]+H*tt[1]+X[1]),O+=1}}}this.bounds=[u,f],this.points=s,this.pointCount=s.length,this.vertexCount=x,this.lineVertexCount=b,this.pointBuffer.update(E),this.colorBuffer.update(C),this.glyphBuffer.update(L),this.idBuffer.update(I),o.free(E),o.free(C),o.free(L),o.free(I)},v.dispose=function(){this.shader.dispose(),this.orthoShader.dispose(),this.pickPerspectiveShader.dispose(),this.pickOrthoShader.dispose(),this.vao.dispose(),this.pointBuffer.dispose(),this.colorBuffer.dispose(),this.glyphBuffer.dispose(),this.idBuffer.dispose()}},{\"./lib/get-simple-string\":326,\"./lib/glyphs\":327,\"./lib/shaders\":328,\"gl-buffer\":259,\"gl-mat4/multiply\":295,\"gl-vao\":358,\"is-string-blank\":470,\"typedarray-pool\":595}],331:[function(t,e,r){\"use strict\";var n=t(\"glslify\");r.boxVertex=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec2 vertex;\\n\\nuniform vec2 cornerA, cornerB;\\n\\nvoid main() {\\n  gl_Position = vec4(mix(cornerA, cornerB, vertex), 0, 1);\\n}\\n\"]),r.boxFragment=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nuniform vec4 color;\\n\\nvoid main() {\\n  gl_FragColor = color;\\n}\\n\"])},{glslify:332}],332:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],333:[function(t,e,r){\"use strict\";var n=t(\"gl-shader\"),i=t(\"gl-buffer\"),a=t(\"./lib/shaders\");function o(t,e,r){this.plot=t,this.boxBuffer=e,this.boxShader=r,this.enabled=!0,this.selectBox=[1/0,1/0,-1/0,-1/0],this.borderColor=[0,0,0,1],this.innerFill=!1,this.innerColor=[0,0,0,.25],this.outerFill=!0,this.outerColor=[0,0,0,.5],this.borderWidth=10}e.exports=function(t,e){var r=t.gl,s=i(r,[0,0,0,1,1,0,1,1]),l=n(r,a.boxVertex,a.boxFragment),c=new o(t,s,l);return c.update(e),t.addOverlay(c),c};var s=o.prototype;s.draw=function(){if(this.enabled){var t=this.plot,e=this.selectBox,r=this.borderWidth,n=(this.innerFill,this.innerColor),i=(this.outerFill,this.outerColor),a=this.borderColor,o=t.box,s=t.screenBox,l=t.dataBox,c=t.viewBox,u=t.pixelRatio,f=(e[0]-l[0])*(c[2]-c[0])/(l[2]-l[0])+c[0],h=(e[1]-l[1])*(c[3]-c[1])/(l[3]-l[1])+c[1],p=(e[2]-l[0])*(c[2]-c[0])/(l[2]-l[0])+c[0],d=(e[3]-l[1])*(c[3]-c[1])/(l[3]-l[1])+c[1];if(f=Math.max(f,c[0]),h=Math.max(h,c[1]),p=Math.min(p,c[2]),d=Math.min(d,c[3]),!(p<f||d<h)){o.bind();var g=s[2]-s[0],m=s[3]-s[1];if(this.outerFill&&(o.drawBox(0,0,g,h,i),o.drawBox(0,h,f,d,i),o.drawBox(0,d,g,m,i),o.drawBox(p,h,g,d,i)),this.innerFill&&o.drawBox(f,h,p,d,n),r>0){var v=r*u;o.drawBox(f-v,h-v,p+v,h+v,a),o.drawBox(f-v,d-v,p+v,d+v,a),o.drawBox(f-v,h-v,f+v,d+v,a),o.drawBox(p-v,h-v,p+v,d+v,a)}}}},s.update=function(t){t=t||{},this.innerFill=!!t.innerFill,this.outerFill=!!t.outerFill,this.innerColor=(t.innerColor||[0,0,0,.5]).slice(),this.outerColor=(t.outerColor||[0,0,0,.5]).slice(),this.borderColor=(t.borderColor||[0,0,0,1]).slice(),this.borderWidth=t.borderWidth||0,this.selectBox=(t.selectBox||this.selectBox).slice()},s.dispose=function(){this.boxBuffer.dispose(),this.boxShader.dispose(),this.plot.removeOverlay(this)}},{\"./lib/shaders\":331,\"gl-buffer\":259,\"gl-shader\":335}],334:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=e[0],a=e[1],o=n(t,r,a,{}),s=i.mallocUint8(r*a*4);return new l(t,o,s)};var n=t(\"gl-fbo\"),i=t(\"typedarray-pool\"),a=t(\"ndarray\"),o=t(\"bit-twiddle\").nextPow2;function s(t,e,r,n,i){this.coord=[t,e],this.id=r,this.value=n,this.distance=i}function l(t,e,r){this.gl=t,this.fbo=e,this.buffer=r,this._readTimeout=null;var n=this;this._readCallback=function(){n.gl&&(e.bind(),t.readPixels(0,0,e.shape[0],e.shape[1],t.RGBA,t.UNSIGNED_BYTE,n.buffer),n._readTimeout=null)}}var c=l.prototype;Object.defineProperty(c,\"shape\",{get:function(){return this.gl?this.fbo.shape.slice():[0,0]},set:function(t){if(this.gl){this.fbo.shape=t;var e=this.fbo.shape[0],r=this.fbo.shape[1];if(r*e*4>this.buffer.length){i.free(this.buffer);for(var n=this.buffer=i.mallocUint8(o(r*e*4)),a=0;a<r*e*4;++a)n[a]=255}return t}}}),c.begin=function(){var t=this.gl;this.shape;t&&(this.fbo.bind(),t.clearColor(1,1,1,1),t.clear(t.COLOR_BUFFER_BIT|t.DEPTH_BUFFER_BIT))},c.end=function(){var t=this.gl;t&&(t.bindFramebuffer(t.FRAMEBUFFER,null),this._readTimeout||clearTimeout(this._readTimeout),this._readTimeout=setTimeout(this._readCallback,1))},c.query=function(t,e,r){if(!this.gl)return null;var n=this.fbo.shape.slice();t|=0,e|=0,\"number\"!=typeof r&&(r=1);var i=0|Math.min(Math.max(t-r,0),n[0]),o=0|Math.min(Math.max(t+r,0),n[0]),l=0|Math.min(Math.max(e-r,0),n[1]),c=0|Math.min(Math.max(e+r,0),n[1]);if(o<=i||c<=l)return null;var u=[o-i,c-l],f=a(this.buffer,[u[0],u[1],4],[4,4*n[0],1],4*(i+n[0]*l)),h=function(t,e,r){for(var n=1e8,i=-1,a=-1,o=t.shape[0],s=t.shape[1],l=0;l<o;l++)for(var c=0;c<s;c++){var u=t.get(l,c,0),f=t.get(l,c,1),h=t.get(l,c,2),p=t.get(l,c,3);if(u<255||f<255||h<255||p<255){var d=e-l,g=r-c,m=d*d+g*g;m<n&&(n=m,i=l,a=c)}}return[i,a,n]}(f.hi(u[0],u[1],1),r,r),p=h[0],d=h[1];return p<0||Math.pow(this.radius,2)<h[2]?null:new s(p+i|0,d+l|0,f.get(p,d,0),[f.get(p,d,1),f.get(p,d,2),f.get(p,d,3)],Math.sqrt(h[2]))},c.dispose=function(){this.gl&&(this.fbo.dispose(),i.free(this.buffer),this.gl=null,this._readTimeout&&clearTimeout(this._readTimeout))}},{\"bit-twiddle\":97,\"gl-fbo\":269,ndarray:495,\"typedarray-pool\":595}],335:[function(t,e,r){\"use strict\";var n=t(\"./lib/create-uniforms\"),i=t(\"./lib/create-attributes\"),a=t(\"./lib/reflect\"),o=t(\"./lib/shader-cache\"),s=t(\"./lib/runtime-reflect\"),l=t(\"./lib/GLError\");function c(t){this.gl=t,this.gl.lastAttribCount=0,this._vref=this._fref=this._relink=this.vertShader=this.fragShader=this.program=this.attributes=this.uniforms=this.types=null}var u=c.prototype;function f(t,e){return t.name<e.name?-1:1}u.bind=function(){var t;this.program||this._relink();var e=this.gl.getProgramParameter(this.program,this.gl.ACTIVE_ATTRIBUTES),r=this.gl.lastAttribCount;if(e>r)for(t=r;t<e;t++)this.gl.enableVertexAttribArray(t);else if(r>e)for(t=e;t<r;t++)this.gl.disableVertexAttribArray(t);this.gl.lastAttribCount=e,this.gl.useProgram(this.program)},u.dispose=function(){for(var t=this.gl.lastAttribCount,e=0;e<t;e++)this.gl.disableVertexAttribArray(e);this.gl.lastAttribCount=0,this._fref&&this._fref.dispose(),this._vref&&this._vref.dispose(),this.attributes=this.types=this.vertShader=this.fragShader=this.program=this._relink=this._fref=this._vref=null},u.update=function(t,e,r,c){if(!e||1===arguments.length){var u=t;t=u.vertex,e=u.fragment,r=u.uniforms,c=u.attributes}var h=this,p=h.gl,d=h._vref;h._vref=o.shader(p,p.VERTEX_SHADER,t),d&&d.dispose(),h.vertShader=h._vref.shader;var g=this._fref;if(h._fref=o.shader(p,p.FRAGMENT_SHADER,e),g&&g.dispose(),h.fragShader=h._fref.shader,!r||!c){var m=p.createProgram();if(p.attachShader(m,h.fragShader),p.attachShader(m,h.vertShader),p.linkProgram(m),!p.getProgramParameter(m,p.LINK_STATUS)){var v=p.getProgramInfoLog(m);throw new l(v,\"Error linking program:\"+v)}r=r||s.uniforms(p,m),c=c||s.attributes(p,m),p.deleteProgram(m)}(c=c.slice()).sort(f);var y,x=[],b=[],_=[];for(y=0;y<c.length;++y){var w=c[y];if(w.type.indexOf(\"mat\")>=0){for(var T=0|w.type.charAt(w.type.length-1),k=new Array(T),M=0;M<T;++M)k[M]=_.length,b.push(w.name+\"[\"+M+\"]\"),\"number\"==typeof w.location?_.push(w.location+M):Array.isArray(w.location)&&w.location.length===T&&\"number\"==typeof w.location[M]?_.push(0|w.location[M]):_.push(-1);x.push({name:w.name,type:w.type,locations:k})}else x.push({name:w.name,type:w.type,locations:[_.length]}),b.push(w.name),\"number\"==typeof w.location?_.push(0|w.location):_.push(-1)}var A=0;for(y=0;y<_.length;++y)if(_[y]<0){for(;_.indexOf(A)>=0;)A+=1;_[y]=A}var S=new Array(r.length);function E(){h.program=o.program(p,h._vref,h._fref,b,_);for(var t=0;t<r.length;++t)S[t]=p.getUniformLocation(h.program,r[t].name)}E(),h._relink=E,h.types={uniforms:a(r),attributes:a(c)},h.attributes=i(p,h,x,_),Object.defineProperty(h,\"uniforms\",n(p,h,r,S))},e.exports=function(t,e,r,n,i){var a=new c(t);return a.update(e,r,n,i),a}},{\"./lib/GLError\":336,\"./lib/create-attributes\":337,\"./lib/create-uniforms\":338,\"./lib/reflect\":339,\"./lib/runtime-reflect\":340,\"./lib/shader-cache\":341}],336:[function(t,e,r){function n(t,e,r){this.shortMessage=e||\"\",this.longMessage=r||\"\",this.rawError=t||\"\",this.message=\"gl-shader: \"+(e||t||\"\")+(r?\"\\n\"+r:\"\"),this.stack=(new Error).stack}n.prototype=new Error,n.prototype.name=\"GLError\",n.prototype.constructor=n,e.exports=n},{}],337:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,i){for(var a={},l=0,c=r.length;l<c;++l){var u=r[l],f=u.name,h=u.type,p=u.locations;switch(h){case\"bool\":case\"int\":case\"float\":o(t,e,p[0],i,1,a,f);break;default:if(h.indexOf(\"vec\")>=0){if((d=h.charCodeAt(h.length-1)-48)<2||d>4)throw new n(\"\",\"Invalid data type for attribute \"+f+\": \"+h);o(t,e,p[0],i,d,a,f)}else{if(!(h.indexOf(\"mat\")>=0))throw new n(\"\",\"Unknown data type for attribute \"+f+\": \"+h);var d;if((d=h.charCodeAt(h.length-1)-48)<2||d>4)throw new n(\"\",\"Invalid data type for attribute \"+f+\": \"+h);s(t,e,p,i,d,a,f)}}}return a};var n=t(\"./GLError\");function i(t,e,r,n,i,a){this._gl=t,this._wrapper=e,this._index=r,this._locations=n,this._dimension=i,this._constFunc=a}var a=i.prototype;function o(t,e,r,n,a,o,s){for(var l=[\"gl\",\"v\"],c=[],u=0;u<a;++u)l.push(\"x\"+u),c.push(\"x\"+u);l.push(\"if(x0.length===void 0){return gl.vertexAttrib\"+a+\"f(v,\"+c.join()+\")}else{return gl.vertexAttrib\"+a+\"fv(v,x0)}\");var f=Function.apply(null,l),h=new i(t,e,r,n,a,f);Object.defineProperty(o,s,{set:function(e){return t.disableVertexAttribArray(n[r]),f(t,n[r],e),e},get:function(){return h},enumerable:!0})}function s(t,e,r,n,i,a,s){for(var l=new Array(i),c=new Array(i),u=0;u<i;++u)o(t,e,r[u],n,i,l,u),c[u]=l[u];Object.defineProperty(l,\"location\",{set:function(t){if(Array.isArray(t))for(var e=0;e<i;++e)c[e].location=t[e];else for(e=0;e<i;++e)c[e].location=t+e;return t},get:function(){for(var t=new Array(i),e=0;e<i;++e)t[e]=n[r[e]];return t},enumerable:!0}),l.pointer=function(e,a,o,s){e=e||t.FLOAT,a=!!a,o=o||i*i,s=s||0;for(var l=0;l<i;++l){var c=n[r[l]];t.vertexAttribPointer(c,i,e,a,o,s+l*i),t.enableVertexAttribArray(c)}};var f=new Array(i),h=t[\"vertexAttrib\"+i+\"fv\"];Object.defineProperty(a,s,{set:function(e){for(var a=0;a<i;++a){var o=n[r[a]];if(t.disableVertexAttribArray(o),Array.isArray(e[0]))h.call(t,o,e[a]);else{for(var s=0;s<i;++s)f[s]=e[i*a+s];h.call(t,o,f)}}return e},get:function(){return l},enumerable:!0})}a.pointer=function(t,e,r,n){var i=this._gl,a=this._locations[this._index];i.vertexAttribPointer(a,this._dimension,t||i.FLOAT,!!e,r||0,n||0),i.enableVertexAttribArray(a)},a.set=function(t,e,r,n){return this._constFunc(this._locations[this._index],t,e,r,n)},Object.defineProperty(a,\"location\",{get:function(){return this._locations[this._index]},set:function(t){return t!==this._locations[this._index]&&(this._locations[this._index]=0|t,this._wrapper.program=null),0|t}})},{\"./GLError\":336}],338:[function(t,e,r){\"use strict\";var n=t(\"./reflect\"),i=t(\"./GLError\");function a(t){return new Function(\"y\",\"return function(){return y}\")(t)}function o(t,e){for(var r=new Array(t),n=0;n<t;++n)r[n]=e;return r}e.exports=function(t,e,r,s){function l(t,e,r){switch(r){case\"bool\":case\"int\":case\"sampler2D\":case\"samplerCube\":return\"gl.uniform1i(locations[\"+e+\"],obj\"+t+\")\";case\"float\":return\"gl.uniform1f(locations[\"+e+\"],obj\"+t+\")\";default:var n=r.indexOf(\"vec\");if(!(0<=n&&n<=1&&r.length===4+n)){if(0===r.indexOf(\"mat\")&&4===r.length){var a;if((a=r.charCodeAt(r.length-1)-48)<2||a>4)throw new i(\"\",\"Invalid uniform dimension type for matrix \"+name+\": \"+r);return\"gl.uniformMatrix\"+a+\"fv(locations[\"+e+\"],false,obj\"+t+\")\"}throw new i(\"\",\"Unknown uniform data type for \"+name+\": \"+r)}if((a=r.charCodeAt(r.length-1)-48)<2||a>4)throw new i(\"\",\"Invalid data type\");switch(r.charAt(0)){case\"b\":case\"i\":return\"gl.uniform\"+a+\"iv(locations[\"+e+\"],obj\"+t+\")\";case\"v\":return\"gl.uniform\"+a+\"fv(locations[\"+e+\"],obj\"+t+\")\";default:throw new i(\"\",\"Unrecognized data type for vector \"+name+\": \"+r)}}}function c(e){for(var n=[\"return function updateProperty(obj){\"],i=function t(e,r){if(\"object\"!=typeof r)return[[e,r]];var n=[];for(var i in r){var a=r[i],o=e;parseInt(i)+\"\"===i?o+=\"[\"+i+\"]\":o+=\".\"+i,\"object\"==typeof a?n.push.apply(n,t(o,a)):n.push([o,a])}return n}(\"\",e),a=0;a<i.length;++a){var o=i[a],c=o[0],u=o[1];s[u]&&n.push(l(c,u,r[u].type))}return n.push(\"return obj}\"),new Function(\"gl\",\"locations\",n.join(\"\\n\"))(t,s)}function u(n,l,u){if(\"object\"==typeof u){var h=f(u);Object.defineProperty(n,l,{get:a(h),set:c(u),enumerable:!0,configurable:!1})}else s[u]?Object.defineProperty(n,l,{get:(p=u,new Function(\"gl\",\"wrapper\",\"locations\",\"return function(){return gl.getUniform(wrapper.program,locations[\"+p+\"])}\")(t,e,s)),set:c(u),enumerable:!0,configurable:!1}):n[l]=function(t){switch(t){case\"bool\":return!1;case\"int\":case\"sampler2D\":case\"samplerCube\":case\"float\":return 0;default:var e=t.indexOf(\"vec\");if(0<=e&&e<=1&&t.length===4+e){if((r=t.charCodeAt(t.length-1)-48)<2||r>4)throw new i(\"\",\"Invalid data type\");return\"b\"===t.charAt(0)?o(r,!1):o(r,0)}if(0===t.indexOf(\"mat\")&&4===t.length){var r;if((r=t.charCodeAt(t.length-1)-48)<2||r>4)throw new i(\"\",\"Invalid uniform dimension type for matrix \"+name+\": \"+t);return o(r*r,0)}throw new i(\"\",\"Unknown uniform data type for \"+name+\": \"+t)}}(r[u].type);var p}function f(t){var e;if(Array.isArray(t)){e=new Array(t.length);for(var r=0;r<t.length;++r)u(e,r,t[r])}else for(var n in e={},t)u(e,n,t[n]);return e}var h=n(r,!0);return{get:a(f(h)),set:c(h),enumerable:!0,configurable:!0}}},{\"./GLError\":336,\"./reflect\":339}],339:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r={},n=0;n<t.length;++n)for(var i=t[n].name.split(\".\"),a=r,o=0;o<i.length;++o){var s=i[o].split(\"[\");if(s.length>1){s[0]in a||(a[s[0]]=[]),a=a[s[0]];for(var l=1;l<s.length;++l){var c=parseInt(s[l]);l<s.length-1||o<i.length-1?(c in a||(l<s.length-1?a[c]=[]:a[c]={}),a=a[c]):a[c]=e?n:t[n].type}}else o<i.length-1?(s[0]in a||(a[s[0]]={}),a=a[s[0]]):a[s[0]]=e?n:t[n].type}return r}},{}],340:[function(t,e,r){\"use strict\";r.uniforms=function(t,e){for(var r=t.getProgramParameter(e,t.ACTIVE_UNIFORMS),n=[],i=0;i<r;++i){var o=t.getActiveUniform(e,i);if(o){var s=a(t,o.type);if(o.size>1)for(var l=0;l<o.size;++l)n.push({name:o.name.replace(\"[0]\",\"[\"+l+\"]\"),type:s});else n.push({name:o.name,type:s})}}return n},r.attributes=function(t,e){for(var r=t.getProgramParameter(e,t.ACTIVE_ATTRIBUTES),n=[],i=0;i<r;++i){var o=t.getActiveAttrib(e,i);o&&n.push({name:o.name,type:a(t,o.type)})}return n};var n={FLOAT:\"float\",FLOAT_VEC2:\"vec2\",FLOAT_VEC3:\"vec3\",FLOAT_VEC4:\"vec4\",INT:\"int\",INT_VEC2:\"ivec2\",INT_VEC3:\"ivec3\",INT_VEC4:\"ivec4\",BOOL:\"bool\",BOOL_VEC2:\"bvec2\",BOOL_VEC3:\"bvec3\",BOOL_VEC4:\"bvec4\",FLOAT_MAT2:\"mat2\",FLOAT_MAT3:\"mat3\",FLOAT_MAT4:\"mat4\",SAMPLER_2D:\"sampler2D\",SAMPLER_CUBE:\"samplerCube\"},i=null;function a(t,e){if(!i){var r=Object.keys(n);i={};for(var a=0;a<r.length;++a){var o=r[a];i[t[o]]=n[o]}}return i[e]}},{}],341:[function(t,e,r){\"use strict\";r.shader=function(t,e,r){return u(t).getShaderReference(e,r)},r.program=function(t,e,r,n,i){return u(t).getProgram(e,r,n,i)};var n=t(\"./GLError\"),i=t(\"gl-format-compiler-error\"),a=new(\"undefined\"==typeof WeakMap?t(\"weakmap-shim\"):WeakMap),o=0;function s(t,e,r,n,i,a,o){this.id=t,this.src=e,this.type=r,this.shader=n,this.count=a,this.programs=[],this.cache=o}function l(t){this.gl=t,this.shaders=[{},{}],this.programs={}}s.prototype.dispose=function(){if(0==--this.count){for(var t=this.cache,e=t.gl,r=this.programs,n=0,i=r.length;n<i;++n){var a=t.programs[r[n]];a&&(delete t.programs[n],e.deleteProgram(a))}e.deleteShader(this.shader),delete t.shaders[this.type===e.FRAGMENT_SHADER|0][this.src]}};var c=l.prototype;function u(t){var e=a.get(t);return e||(e=new l(t),a.set(t,e)),e}c.getShaderReference=function(t,e){var r=this.gl,a=this.shaders[t===r.FRAGMENT_SHADER|0],l=a[e];if(l&&r.isShader(l.shader))l.count+=1;else{var c=function(t,e,r){var a=t.createShader(e);if(t.shaderSource(a,r),t.compileShader(a),!t.getShaderParameter(a,t.COMPILE_STATUS)){var o=t.getShaderInfoLog(a);try{var s=i(o,r,e)}catch(t){throw console.warn(\"Failed to format compiler error: \"+t),new n(o,\"Error compiling shader:\\n\"+o)}throw new n(o,s.short,s.long)}return a}(r,t,e);l=a[e]=new s(o++,e,t,c,[],1,this)}return l},c.getProgram=function(t,e,r,i){var a=[t.id,e.id,r.join(\":\"),i.join(\":\")].join(\"@\"),o=this.programs[a];return o&&this.gl.isProgram(o)||(this.programs[a]=o=function(t,e,r,i,a){var o=t.createProgram();t.attachShader(o,e),t.attachShader(o,r);for(var s=0;s<i.length;++s)t.bindAttribLocation(o,a[s],i[s]);if(t.linkProgram(o),!t.getProgramParameter(o,t.LINK_STATUS)){var l=t.getProgramInfoLog(o);throw new n(l,\"Error linking program: \"+l)}return o}(this.gl,t.shader,e.shader,r,i),t.programs.push(a),e.programs.push(a)),o}},{\"./GLError\":336,\"gl-format-compiler-error\":270,\"weakmap-shim\":605}],342:[function(t,e,r){\"use strict\";function n(t){this.plot=t,this.enable=[!0,!0,!1,!1],this.width=[1,1,1,1],this.color=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.center=[1/0,1/0]}e.exports=function(t,e){var r=new n(t);return r.update(e),t.addOverlay(r),r};var i=n.prototype;i.update=function(t){t=t||{},this.enable=(t.enable||[!0,!0,!1,!1]).slice(),this.width=(t.width||[1,1,1,1]).slice(),this.color=(t.color||[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]]).map((function(t){return t.slice()})),this.center=(t.center||[1/0,1/0]).slice(),this.plot.setOverlayDirty()},i.draw=function(){var t=this.enable,e=this.width,r=this.color,n=this.center,i=this.plot,a=i.line,o=i.dataBox,s=i.viewBox;if(a.bind(),o[0]<=n[0]&&n[0]<=o[2]&&o[1]<=n[1]&&n[1]<=o[3]){var l=s[0]+(n[0]-o[0])/(o[2]-o[0])*(s[2]-s[0]),c=s[1]+(n[1]-o[1])/(o[3]-o[1])*(s[3]-s[1]);t[0]&&a.drawLine(l,c,s[0],c,e[0],r[0]),t[1]&&a.drawLine(l,c,l,s[1],e[1],r[1]),t[2]&&a.drawLine(l,c,s[2],c,e[2],r[2]),t[3]&&a.drawLine(l,c,l,s[3],e[3],r[3])}},i.dispose=function(){this.plot.removeOverlay(this)}},{}],343:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],344:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),i=t(\"gl-shader\"),a=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nattribute vec3 position, color;\\nattribute float weight;\\n\\nuniform mat4 model, view, projection;\\nuniform vec3 coordinates[3];\\nuniform vec4 colors[3];\\nuniform vec2 screenShape;\\nuniform float lineWidth;\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  vec3 vertexPosition = mix(coordinates[0],\\n    mix(coordinates[2], coordinates[1], 0.5 * (position + 1.0)), abs(position));\\n\\n  vec4 clipPos = projection * view * model * vec4(vertexPosition, 1.0);\\n  vec2 clipOffset = (projection * view * model * vec4(color, 0.0)).xy;\\n  vec2 delta = weight * clipOffset * screenShape;\\n  vec2 lineOffset = normalize(vec2(delta.y, -delta.x)) / screenShape;\\n\\n  gl_Position   = vec4(clipPos.xy + clipPos.w * 0.5 * lineWidth * lineOffset, clipPos.z, clipPos.w);\\n  fragColor     = color.x * colors[0] + color.y * colors[1] + color.z * colors[2];\\n}\\n\"]),o=n([\"precision mediump float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n  gl_FragColor = fragColor;\\n}\"]);e.exports=function(t){return i(t,a,o,null,[{name:\"position\",type:\"vec3\"},{name:\"color\",type:\"vec3\"},{name:\"weight\",type:\"float\"}])}},{\"gl-shader\":335,glslify:343}],345:[function(t,e,r){\"use strict\";var n=t(\"gl-buffer\"),i=t(\"gl-vao\"),a=t(\"./shaders/index\");e.exports=function(t,e){var r=[];function o(t,e,n,i,a,o){var s=[t,e,n,0,0,0,1];s[i+3]=1,s[i]=a,r.push.apply(r,s),s[6]=-1,r.push.apply(r,s),s[i]=o,r.push.apply(r,s),r.push.apply(r,s),s[6]=1,r.push.apply(r,s),s[i]=a,r.push.apply(r,s)}o(0,0,0,0,0,1),o(0,0,0,1,0,1),o(0,0,0,2,0,1),o(1,0,0,1,-1,1),o(1,0,0,2,-1,1),o(0,1,0,0,-1,1),o(0,1,0,2,-1,1),o(0,0,1,0,-1,1),o(0,0,1,1,-1,1);var l=n(t,r),c=i(t,[{type:t.FLOAT,buffer:l,size:3,offset:0,stride:28},{type:t.FLOAT,buffer:l,size:3,offset:12,stride:28},{type:t.FLOAT,buffer:l,size:1,offset:24,stride:28}]),u=a(t);u.attributes.position.location=0,u.attributes.color.location=1,u.attributes.weight.location=2;var f=new s(t,l,c,u);return f.update(e),f};var o=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];function s(t,e,r,n){this.gl=t,this.buffer=e,this.vao=r,this.shader=n,this.pixelRatio=1,this.bounds=[[-1e3,-1e3,-1e3],[1e3,1e3,1e3]],this.position=[0,0,0],this.lineWidth=[2,2,2],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.enabled=[!0,!0,!0],this.drawSides=[!0,!0,!0],this.axes=null}var l=s.prototype,c=[0,0,0],u=[0,0,0],f=[0,0];l.isTransparent=function(){return!1},l.drawTransparent=function(t){},l.draw=function(t){var e=this.gl,r=this.vao,n=this.shader;r.bind(),n.bind();var i,a=t.model||o,s=t.view||o,l=t.projection||o;this.axes&&(i=this.axes.lastCubeProps.axis);for(var h=c,p=u,d=0;d<3;++d)i&&i[d]<0?(h[d]=this.bounds[0][d],p[d]=this.bounds[1][d]):(h[d]=this.bounds[1][d],p[d]=this.bounds[0][d]);f[0]=e.drawingBufferWidth,f[1]=e.drawingBufferHeight,n.uniforms.model=a,n.uniforms.view=s,n.uniforms.projection=l,n.uniforms.coordinates=[this.position,h,p],n.uniforms.colors=this.colors,n.uniforms.screenShape=f;for(d=0;d<3;++d)n.uniforms.lineWidth=this.lineWidth[d]*this.pixelRatio,this.enabled[d]&&(r.draw(e.TRIANGLES,6,6*d),this.drawSides[d]&&r.draw(e.TRIANGLES,12,18+12*d));r.unbind()},l.update=function(t){t&&(\"bounds\"in t&&(this.bounds=t.bounds),\"position\"in t&&(this.position=t.position),\"lineWidth\"in t&&(this.lineWidth=t.lineWidth),\"colors\"in t&&(this.colors=t.colors),\"enabled\"in t&&(this.enabled=t.enabled),\"drawSides\"in t&&(this.drawSides=t.drawSides))},l.dispose=function(){this.vao.dispose(),this.buffer.dispose(),this.shader.dispose()}},{\"./shaders/index\":344,\"gl-buffer\":259,\"gl-vao\":358}],346:[function(t,e,r){var n=t(\"glslify\"),i=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the tube vertex and normal at the given index.\\n//\\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\\n//\\n// Each tube segment is made up of a ring of vertices.\\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\\n// The indexes of tube segments run from 0 to 8.\\n//\\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\\n  float segmentCount = 8.0;\\n\\n  float angle = 2.0 * 3.14159 * (index / segmentCount);\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d);\\n  vec3 y = v * sin(angle) * length(d);\\n  vec3 v3 = x + y;\\n\\n  normal = normalize(v3);\\n\\n  return v3;\\n}\\n\\nattribute vec4 vector;\\nattribute vec4 color, position;\\nattribute vec2 uv;\\n\\nuniform float vectorScale, tubeScale;\\nuniform mat4 model, view, projection, inverseModel;\\nuniform vec3 eyePosition, lightPosition;\\n\\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  // Scale the vector magnitude to stay constant with\\n  // model & view changes.\\n  vec3 normal;\\n  vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\\n  vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * tubePosition;\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  f_lightDirection = lightPosition - cameraCoordinate.xyz;\\n  f_eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  f_normal = normalize((vec4(normal, 0.0) * inverseModel).xyz);\\n\\n  // vec4 m_position  = model * vec4(tubePosition, 1.0);\\n  vec4 t_position  = view * tubePosition;\\n  gl_Position      = projection * t_position;\\n\\n  f_color          = color;\\n  f_data           = tubePosition.xyz;\\n  f_position       = position.xyz;\\n  f_uv             = uv;\\n}\\n\"]),a=n([\"#extension GL_OES_standard_derivatives : enable\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat cookTorranceSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness,\\n  float fresnel) {\\n\\n  float VdotN = max(dot(viewDirection, surfaceNormal), 0.0);\\n  float LdotN = max(dot(lightDirection, surfaceNormal), 0.0);\\n\\n  //Half angle vector\\n  vec3 H = normalize(lightDirection + viewDirection);\\n\\n  //Geometric term\\n  float NdotH = max(dot(surfaceNormal, H), 0.0);\\n  float VdotH = max(dot(viewDirection, H), 0.000001);\\n  float LdotH = max(dot(lightDirection, H), 0.000001);\\n  float G1 = (2.0 * NdotH * VdotN) / VdotH;\\n  float G2 = (2.0 * NdotH * LdotN) / LdotH;\\n  float G = min(1.0, min(G1, G2));\\n  \\n  //Distribution term\\n  float D = beckmannDistribution(NdotH, roughness);\\n\\n  //Fresnel term\\n  float F = pow(1.0 - VdotN, fresnel);\\n\\n  //Multiply terms and done\\n  return  G * F * D / max(3.14159265 * VdotN, 0.000001);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 clipBounds[2];\\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\\nuniform sampler2D texture;\\n\\nvarying vec3 f_normal, f_lightDirection, f_eyeDirection, f_data, f_position;\\nvarying vec4 f_color;\\nvarying vec2 f_uv;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n  vec3 N = normalize(f_normal);\\n  vec3 L = normalize(f_lightDirection);\\n  vec3 V = normalize(f_eyeDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = min(1.0, max(0.0, cookTorranceSpecular(L, V, N, roughness, fresnel)));\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  vec4 surfaceColor = f_color * texture2D(texture, f_uv);\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = litColor * opacity;\\n}\\n\"]),o=n([\"precision highp float;\\n\\nprecision highp float;\\n#define GLSLIFY 1\\n\\nvec3 getOrthogonalVector(vec3 v) {\\n  // Return up-vector for only-z vector.\\n  // Return ax + by + cz = 0, a point that lies on the plane that has v as a normal and that isn't (0,0,0).\\n  // From the above if-statement we have ||a|| > 0  U  ||b|| > 0.\\n  // Assign z = 0, x = -b, y = a:\\n  // a*-b + b*a + c*0 = -ba + ba + 0 = 0\\n  if (v.x*v.x > v.z*v.z || v.y*v.y > v.z*v.z) {\\n    return normalize(vec3(-v.y, v.x, 0.0));\\n  } else {\\n    return normalize(vec3(0.0, v.z, -v.y));\\n  }\\n}\\n\\n// Calculate the tube vertex and normal at the given index.\\n//\\n// The returned vertex is for a tube ring with its center at origin, radius of length(d), pointing in the direction of d.\\n//\\n// Each tube segment is made up of a ring of vertices.\\n// These vertices are used to make up the triangles of the tube by connecting them together in the vertex array.\\n// The indexes of tube segments run from 0 to 8.\\n//\\nvec3 getTubePosition(vec3 d, float index, out vec3 normal) {\\n  float segmentCount = 8.0;\\n\\n  float angle = 2.0 * 3.14159 * (index / segmentCount);\\n\\n  vec3 u = getOrthogonalVector(d);\\n  vec3 v = normalize(cross(u, d));\\n\\n  vec3 x = u * cos(angle) * length(d);\\n  vec3 y = v * sin(angle) * length(d);\\n  vec3 v3 = x + y;\\n\\n  normal = normalize(v3);\\n\\n  return v3;\\n}\\n\\nattribute vec4 vector;\\nattribute vec4 position;\\nattribute vec4 id;\\n\\nuniform mat4 model, view, projection;\\nuniform float tubeScale;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  vec3 normal;\\n  vec3 XYZ = getTubePosition(mat3(model) * (tubeScale * vector.w * normalize(vector.xyz)), position.w, normal);\\n  vec4 tubePosition = model * vec4(position.xyz, 1.0) + vec4(XYZ, 0.0);\\n\\n  gl_Position = projection * view * tubePosition;\\n  f_id        = id;\\n  f_position  = position.xyz;\\n}\\n\"]),s=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3  clipBounds[2];\\nuniform float pickId;\\n\\nvarying vec3 f_position;\\nvarying vec4 f_id;\\n\\nvoid main() {\\n  if (outOfRange(clipBounds[0], clipBounds[1], f_position)) discard;\\n\\n  gl_FragColor = vec4(pickId, f_id.xyz);\\n}\"]);r.meshShader={vertex:i,fragment:a,attributes:[{name:\"position\",type:\"vec4\"},{name:\"color\",type:\"vec4\"},{name:\"uv\",type:\"vec2\"},{name:\"vector\",type:\"vec4\"}]},r.pickShader={vertex:o,fragment:s,attributes:[{name:\"position\",type:\"vec4\"},{name:\"id\",type:\"vec4\"},{name:\"vector\",type:\"vec4\"}]}},{glslify:347}],347:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],348:[function(t,e,r){\"use strict\";var n=t(\"gl-vec3\"),i=t(\"gl-vec4\"),a=[\"xyz\",\"xzy\",\"yxz\",\"yzx\",\"zxy\",\"zyx\"],o=function(t,e,r,a){for(var o=0,s=0;s<t.length;s++)for(var l=t[s].velocities,c=0;c<l.length;c++)o=Math.max(o,n.length(l[c]));var u=t.map((function(t){return function(t,e,r,a){for(var o=t.points,s=t.velocities,l=t.divergences,c=[],u=[],f=[],h=[],p=[],d=[],g=0,m=0,v=i.create(),y=i.create(),x=0;x<o.length;x++){var b=o[x],_=s[x],w=l[x];0===e&&(w=.05*r),m=n.length(_)/a,v=i.create(),n.copy(v,_),v[3]=w;for(var T=0;T<8;T++)p[T]=[b[0],b[1],b[2],T];if(h.length>0)for(T=0;T<8;T++){var k=(T+1)%8;c.push(h[T],p[T],p[k],p[k],h[k],h[T]),f.push(y,v,v,v,y,y),d.push(g,m,m,m,g,g);var M=c.length;u.push([M-6,M-5,M-4],[M-3,M-2,M-1])}var A=h;h=p,p=A;var S=y;y=v,v=S;var E=g;g=m,m=E}return{positions:c,cells:u,vectors:f,vertexIntensity:d}}(t,r,a,o)})),f=[],h=[],p=[],d=[];for(s=0;s<u.length;s++){var g=u[s],m=f.length;f=f.concat(g.positions),p=p.concat(g.vectors),d=d.concat(g.vertexIntensity);for(c=0;c<g.cells.length;c++){var v=g.cells[c],y=[];h.push(y);for(var x=0;x<v.length;x++)y.push(v[x]+m)}}return{positions:f,cells:h,vectors:p,vertexIntensity:d,colormap:e}},s=function(t,e){var r,n=t.length;for(r=0;r<n;r++){var i=t[r];if(i===e)return r;if(i>e)return r-1}return r},l=function(t,e,r){return t<e?e:t>r?r:t},c=function(t){var e=1/0;t.sort((function(t,e){return t-e}));for(var r=t.length,n=1;n<r;n++){var i=Math.abs(t[n]-t[n-1]);i<e&&(e=i)}return e};e.exports=function(t,e){var r=t.startingPositions,i=t.maxLength||1e3,u=t.tubeSize||1,f=t.absoluteTubeSize,h=t.gridFill||\"+x+y+z\",p={};-1!==h.indexOf(\"-x\")&&(p.reversedX=!0),-1!==h.indexOf(\"-y\")&&(p.reversedY=!0),-1!==h.indexOf(\"-z\")&&(p.reversedZ=!0),p.filled=a.indexOf(h.replace(/-/g,\"\").replace(/\\+/g,\"\"));var d=t.getVelocity||function(e){return function(t,e,r){var i=e.vectors,a=e.meshgrid,o=t[0],c=t[1],u=t[2],f=a[0].length,h=a[1].length,p=a[2].length,d=s(a[0],o),g=s(a[1],c),m=s(a[2],u),v=d+1,y=g+1,x=m+1;if(d=l(d,0,f-1),v=l(v,0,f-1),g=l(g,0,h-1),y=l(y,0,h-1),m=l(m,0,p-1),x=l(x,0,p-1),d<0||g<0||m<0||v>f-1||y>h-1||x>p-1)return n.create();var b,_,w,T,k,M,A=a[0][d],S=a[0][v],E=a[1][g],C=a[1][y],L=a[2][m],I=(o-A)/(S-A),P=(c-E)/(C-E),z=(u-L)/(a[2][x]-L);switch(isFinite(I)||(I=.5),isFinite(P)||(P=.5),isFinite(z)||(z=.5),r.reversedX&&(d=f-1-d,v=f-1-v),r.reversedY&&(g=h-1-g,y=h-1-y),r.reversedZ&&(m=p-1-m,x=p-1-x),r.filled){case 5:k=m,M=x,w=g*p,T=y*p,b=d*p*h,_=v*p*h;break;case 4:k=m,M=x,b=d*p,_=v*p,w=g*p*f,T=y*p*f;break;case 3:w=g,T=y,k=m*h,M=x*h,b=d*h*p,_=v*h*p;break;case 2:w=g,T=y,b=d*h,_=v*h,k=m*h*f,M=x*h*f;break;case 1:b=d,_=v,k=m*f,M=x*f,w=g*f*p,T=y*f*p;break;default:b=d,_=v,w=g*f,T=y*f,k=m*f*h,M=x*f*h}var O=i[b+w+k],D=i[b+w+M],R=i[b+T+k],F=i[b+T+M],B=i[_+w+k],N=i[_+w+M],j=i[_+T+k],U=i[_+T+M],V=n.create(),q=n.create(),H=n.create(),G=n.create();n.lerp(V,O,B,I),n.lerp(q,D,N,I),n.lerp(H,R,j,I),n.lerp(G,F,U,I);var Y=n.create(),W=n.create();n.lerp(Y,V,H,P),n.lerp(W,q,G,P);var X=n.create();return n.lerp(X,Y,W,z),X}(e,t,p)},g=t.getDivergence||function(t,e){var r=n.create(),i=1e-4;n.add(r,t,[i,0,0]);var a=d(r);n.subtract(a,a,e),n.scale(a,a,1/i),n.add(r,t,[0,i,0]);var o=d(r);n.subtract(o,o,e),n.scale(o,o,1/i),n.add(r,t,[0,0,i]);var s=d(r);return n.subtract(s,s,e),n.scale(s,s,1/i),n.add(r,a,o),n.add(r,r,s),r},m=[],v=e[0][0],y=e[0][1],x=e[0][2],b=e[1][0],_=e[1][1],w=e[1][2],T=function(t){var e=t[0],r=t[1],n=t[2];return!(e<v||e>b||r<y||r>_||n<x||n>w)},k=10*n.distance(e[0],e[1])/i,M=k*k,A=1,S=0,E=r.length;E>1&&(A=function(t){for(var e=[],r=[],n=[],i={},a={},o={},s=t.length,l=0;l<s;l++){var u=t[l],f=u[0],h=u[1],p=u[2];i[f]||(e.push(f),i[f]=!0),a[h]||(r.push(h),a[h]=!0),o[p]||(n.push(p),o[p]=!0)}var d=c(e),g=c(r),m=c(n),v=Math.min(d,g,m);return isFinite(v)?v:1}(r));for(var C=0;C<E;C++){var L=n.create();n.copy(L,r[C]);var I=[L],P=[],z=d(L),O=L;P.push(z);var D=[],R=g(L,z),F=n.length(R);isFinite(F)&&F>S&&(S=F),D.push(F),m.push({points:I,velocities:P,divergences:D});for(var B=0;B<100*i&&I.length<i&&T(L);){B++;var N=n.clone(z),j=n.squaredLength(N);if(0===j)break;if(j>M&&n.scale(N,N,k/Math.sqrt(j)),n.add(N,N,L),z=d(N),n.squaredDistance(O,N)-M>-1e-4*M){I.push(N),O=N,P.push(z);R=g(N,z),F=n.length(R);isFinite(F)&&F>S&&(S=F),D.push(F)}L=N}}var U=o(m,t.colormap,S,A);return f?U.tubeScale=f:(0===S&&(S=1),U.tubeScale=.5*u*A/S),U};var u=t(\"./lib/shaders\"),f=t(\"gl-cone3d\").createMesh;e.exports.createTubeMesh=function(t,e){return f(t,e,{shaders:u,traceType:\"streamtube\"})}},{\"./lib/shaders\":346,\"gl-cone3d\":260,\"gl-vec3\":377,\"gl-vec4\":413}],349:[function(t,e,r){var n=t(\"gl-shader\"),i=t(\"glslify\"),a=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec4 uv;\\nattribute vec3 f;\\nattribute vec3 normal;\\n\\nuniform vec3 objectOffset;\\nuniform mat4 model, view, projection, inverseModel;\\nuniform vec3 lightPosition, eyePosition;\\nuniform sampler2D colormap;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n  vec3 localCoordinate = vec3(uv.zw, f.x);\\n  worldCoordinate = objectOffset + localCoordinate;\\n  vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\\n  vec4 clipPosition = projection * view * worldPosition;\\n  gl_Position = clipPosition;\\n  kill = f.y;\\n  value = f.z;\\n  planeCoordinate = uv.xy;\\n\\n  vColor = texture2D(colormap, vec2(value, value));\\n\\n  //Lighting geometry parameters\\n  vec4 cameraCoordinate = view * worldPosition;\\n  cameraCoordinate.xyz /= cameraCoordinate.w;\\n  lightDirection = lightPosition - cameraCoordinate.xyz;\\n  eyeDirection   = eyePosition - cameraCoordinate.xyz;\\n  surfaceNormal  = normalize((vec4(normal,0) * inverseModel).xyz);\\n}\\n\"]),o=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nfloat beckmannDistribution(float x, float roughness) {\\n  float NdotH = max(x, 0.0001);\\n  float cos2Alpha = NdotH * NdotH;\\n  float tan2Alpha = (cos2Alpha - 1.0) / cos2Alpha;\\n  float roughness2 = roughness * roughness;\\n  float denom = 3.141592653589793 * roughness2 * cos2Alpha * cos2Alpha;\\n  return exp(tan2Alpha / roughness2) / denom;\\n}\\n\\nfloat beckmannSpecular(\\n  vec3 lightDirection,\\n  vec3 viewDirection,\\n  vec3 surfaceNormal,\\n  float roughness) {\\n  return beckmannDistribution(dot(surfaceNormal, normalize(lightDirection + viewDirection)), roughness);\\n}\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec3 lowerBound, upperBound;\\nuniform float contourTint;\\nuniform vec4 contourColor;\\nuniform sampler2D colormap;\\nuniform vec3 clipBounds[2];\\nuniform float roughness, fresnel, kambient, kdiffuse, kspecular, opacity;\\nuniform float vertexColor;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n  if (\\n    kill > 0.0 ||\\n    vColor.a == 0.0 ||\\n    outOfRange(clipBounds[0], clipBounds[1], worldCoordinate)\\n  ) discard;\\n\\n  vec3 N = normalize(surfaceNormal);\\n  vec3 V = normalize(eyeDirection);\\n  vec3 L = normalize(lightDirection);\\n\\n  if(gl_FrontFacing) {\\n    N = -N;\\n  }\\n\\n  float specular = max(beckmannSpecular(L, V, N, roughness), 0.);\\n  float diffuse  = min(kambient + kdiffuse * max(dot(N, L), 0.0), 1.0);\\n\\n  //decide how to interpolate color \\u2014 in vertex or in fragment\\n  vec4 surfaceColor =\\n    step(vertexColor, .5) * texture2D(colormap, vec2(value, value)) +\\n    step(.5, vertexColor) * vColor;\\n\\n  vec4 litColor = surfaceColor.a * vec4(diffuse * surfaceColor.rgb + kspecular * vec3(1,1,1) * specular,  1.0);\\n\\n  gl_FragColor = mix(litColor, contourColor, contourTint) * opacity;\\n}\\n\"]),s=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec4 uv;\\nattribute float f;\\n\\nuniform vec3 objectOffset;\\nuniform mat3 permutation;\\nuniform mat4 model, view, projection;\\nuniform float height, zOffset;\\nuniform sampler2D colormap;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 lightDirection, eyeDirection, surfaceNormal;\\nvarying vec4 vColor;\\n\\nvoid main() {\\n  vec3 dataCoordinate = permutation * vec3(uv.xy, height);\\n  worldCoordinate = objectOffset + dataCoordinate;\\n  vec4 worldPosition = model * vec4(worldCoordinate, 1.0);\\n\\n  vec4 clipPosition = projection * view * worldPosition;\\n  clipPosition.z += zOffset;\\n\\n  gl_Position = clipPosition;\\n  value = f + objectOffset.z;\\n  kill = -1.0;\\n  planeCoordinate = uv.zw;\\n\\n  vColor = texture2D(colormap, vec2(value, value));\\n\\n  //Don't do lighting for contours\\n  surfaceNormal   = vec3(1,0,0);\\n  eyeDirection    = vec3(0,1,0);\\n  lightDirection  = vec3(0,0,1);\\n}\\n\"]),l=i([\"precision highp float;\\n#define GLSLIFY 1\\n\\nbool outOfRange(float a, float b, float p) {\\n  return ((p > max(a, b)) || \\n          (p < min(a, b)));\\n}\\n\\nbool outOfRange(vec2 a, vec2 b, vec2 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y));\\n}\\n\\nbool outOfRange(vec3 a, vec3 b, vec3 p) {\\n  return (outOfRange(a.x, b.x, p.x) ||\\n          outOfRange(a.y, b.y, p.y) ||\\n          outOfRange(a.z, b.z, p.z));\\n}\\n\\nbool outOfRange(vec4 a, vec4 b, vec4 p) {\\n  return outOfRange(a.xyz, b.xyz, p.xyz);\\n}\\n\\nuniform vec2 shape;\\nuniform vec3 clipBounds[2];\\nuniform float pickId;\\n\\nvarying float value, kill;\\nvarying vec3 worldCoordinate;\\nvarying vec2 planeCoordinate;\\nvarying vec3 surfaceNormal;\\n\\nvec2 splitFloat(float v) {\\n  float vh = 255.0 * v;\\n  float upper = floor(vh);\\n  float lower = fract(vh);\\n  return vec2(upper / 255.0, floor(lower * 16.0) / 16.0);\\n}\\n\\nvoid main() {\\n  if ((kill > 0.0) ||\\n      (outOfRange(clipBounds[0], clipBounds[1], worldCoordinate))) discard;\\n\\n  vec2 ux = splitFloat(planeCoordinate.x / shape.x);\\n  vec2 uy = splitFloat(planeCoordinate.y / shape.y);\\n  gl_FragColor = vec4(pickId, ux.x, uy.x, ux.y + (uy.y/16.0));\\n}\\n\"]);r.createShader=function(t){var e=n(t,a,o,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createPickShader=function(t){var e=n(t,a,l,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"vec3\"},{name:\"normal\",type:\"vec3\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e.attributes.normal.location=2,e},r.createContourShader=function(t){var e=n(t,s,o,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"float\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e},r.createPickContourShader=function(t){var e=n(t,s,l,null,[{name:\"uv\",type:\"vec4\"},{name:\"f\",type:\"float\"}]);return e.attributes.uv.location=0,e.attributes.f.location=1,e}},{\"gl-shader\":335,glslify:350}],350:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],351:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.gl,r=y(e),n=b(e),s=x(e),l=_(e),c=i(e),u=a(e,[{buffer:c,size:4,stride:40,offset:0},{buffer:c,size:3,stride:40,offset:16},{buffer:c,size:3,stride:40,offset:28}]),f=i(e),h=a(e,[{buffer:f,size:4,stride:20,offset:0},{buffer:f,size:1,stride:20,offset:16}]),p=i(e),d=a(e,[{buffer:p,size:2,type:e.FLOAT}]),g=o(e,1,256,e.RGBA,e.UNSIGNED_BYTE);g.minFilter=e.LINEAR,g.magFilter=e.LINEAR;var m=new A(e,[0,0],[[0,0,0],[0,0,0]],r,n,c,u,g,s,l,f,h,p,d,[0,0,0]),v={levels:[[],[],[]]};for(var w in t)v[w]=t[w];return v.colormap=v.colormap||\"jet\",m.update(v),m};var n=t(\"bit-twiddle\"),i=t(\"gl-buffer\"),a=t(\"gl-vao\"),o=t(\"gl-texture2d\"),s=t(\"typedarray-pool\"),l=t(\"colormap\"),c=t(\"ndarray-ops\"),u=t(\"ndarray-pack\"),f=t(\"ndarray\"),h=t(\"surface-nets\"),p=t(\"gl-mat4/multiply\"),d=t(\"gl-mat4/invert\"),g=t(\"binary-search-bounds\"),m=t(\"ndarray-gradient\"),v=t(\"./lib/shaders\"),y=v.createShader,x=v.createContourShader,b=v.createPickShader,_=v.createPickContourShader,w=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],T=[[0,0],[0,1],[1,0],[1,1],[1,0],[0,1]],k=[[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0]];function M(t,e,r,n,i){this.position=t,this.index=e,this.uv=r,this.level=n,this.dataCoordinate=i}!function(){for(var t=0;t<3;++t){var e=k[t],r=(t+2)%3;e[(t+1)%3+0]=1,e[r+3]=1,e[t+6]=1}}();function A(t,e,r,n,i,a,o,l,c,u,h,p,d,g,m){this.gl=t,this.shape=e,this.bounds=r,this.objectOffset=m,this.intensityBounds=[],this._shader=n,this._pickShader=i,this._coordinateBuffer=a,this._vao=o,this._colorMap=l,this._contourShader=c,this._contourPickShader=u,this._contourBuffer=h,this._contourVAO=p,this._contourOffsets=[[],[],[]],this._contourCounts=[[],[],[]],this._vertexCount=0,this._pickResult=new M([0,0,0],[0,0],[0,0],[0,0,0],[0,0,0]),this._dynamicBuffer=d,this._dynamicVAO=g,this._dynamicOffsets=[0,0,0],this._dynamicCounts=[0,0,0],this.contourWidth=[1,1,1],this.contourLevels=[[1],[1],[1]],this.contourTint=[0,0,0],this.contourColor=[[.5,.5,.5,1],[.5,.5,.5,1],[.5,.5,.5,1]],this.showContour=!0,this.showSurface=!0,this.enableHighlight=[!0,!0,!0],this.highlightColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.highlightTint=[1,1,1],this.highlightLevel=[-1,-1,-1],this.enableDynamic=[!0,!0,!0],this.dynamicLevel=[NaN,NaN,NaN],this.dynamicColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.dynamicTint=[1,1,1],this.dynamicWidth=[1,1,1],this.axesBounds=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]],this.surfaceProject=[!1,!1,!1],this.contourProject=[[!1,!1,!1],[!1,!1,!1],[!1,!1,!1]],this.colorBounds=[!1,!1],this._field=[f(s.mallocFloat(1024),[0,0]),f(s.mallocFloat(1024),[0,0]),f(s.mallocFloat(1024),[0,0])],this.pickId=1,this.clipBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.snapToData=!1,this.pixelRatio=1,this.opacity=1,this.lightPosition=[10,1e4,0],this.ambientLight=.8,this.diffuseLight=.8,this.specularLight=2,this.roughness=.5,this.fresnel=1.5,this.vertexColor=0,this.dirty=!0}var S=A.prototype;S.genColormap=function(t,e){var r=!1,n=u([l({colormap:t,nshades:256,format:\"rgba\"}).map((function(t,n){var i=e?function(t,e){if(!e)return 1;if(!e.length)return 1;for(var r=0;r<e.length;++r){if(e.length<2)return 1;if(e[r][0]===t)return e[r][1];if(e[r][0]>t&&r>0){var n=(e[r][0]-t)/(e[r][0]-e[r-1][0]);return e[r][1]*(1-n)+n*e[r-1][1]}}return 1}(n/255,e):t[3];return i<1&&(r=!0),[t[0],t[1],t[2],255*i]}))]);return c.divseq(n,255),this.hasAlphaScale=r,n},S.isTransparent=function(){return this.opacity<1||this.hasAlphaScale},S.isOpaque=function(){return!this.isTransparent()},S.pickSlots=1,S.setPickBase=function(t){this.pickId=t};var E=[0,0,0],C={showSurface:!1,showContour:!1,projections:[w.slice(),w.slice(),w.slice()],clipBounds:[[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]],[[0,0,0],[0,0,0]]]};function L(t,e){var r,n,i,a=e.axes&&e.axes.lastCubeProps.axis||E,o=e.showSurface,s=e.showContour;for(r=0;r<3;++r)for(o=o||e.surfaceProject[r],n=0;n<3;++n)s=s||e.contourProject[r][n];for(r=0;r<3;++r){var l=C.projections[r];for(n=0;n<16;++n)l[n]=0;for(n=0;n<4;++n)l[5*n]=1;l[5*r]=0,l[12+r]=e.axesBounds[+(a[r]>0)][r],p(l,t.model,l);var c=C.clipBounds[r];for(i=0;i<2;++i)for(n=0;n<3;++n)c[i][n]=t.clipBounds[i][n];c[0][r]=-1e8,c[1][r]=1e8}return C.showSurface=o,C.showContour=s,C}var I={model:w,view:w,projection:w,inverseModel:w.slice(),lowerBound:[0,0,0],upperBound:[0,0,0],colorMap:0,clipBounds:[[0,0,0],[0,0,0]],height:0,contourTint:0,contourColor:[0,0,0,1],permutation:[1,0,0,0,1,0,0,0,1],zOffset:-1e-4,objectOffset:[0,0,0],kambient:1,kdiffuse:1,kspecular:1,lightPosition:[1e3,1e3,1e3],eyePosition:[0,0,0],roughness:1,fresnel:1,opacity:1,vertexColor:0},P=w.slice(),z=[1,0,0,0,1,0,0,0,1];function O(t,e){t=t||{};var r=this.gl;r.disable(r.CULL_FACE),this._colorMap.bind(0);var n=I;n.model=t.model||w,n.view=t.view||w,n.projection=t.projection||w,n.lowerBound=[this.bounds[0][0],this.bounds[0][1],this.colorBounds[0]||this.bounds[0][2]],n.upperBound=[this.bounds[1][0],this.bounds[1][1],this.colorBounds[1]||this.bounds[1][2]],n.objectOffset=this.objectOffset,n.contourColor=this.contourColor[0],n.inverseModel=d(n.inverseModel,n.model);for(var i=0;i<2;++i)for(var a=n.clipBounds[i],o=0;o<3;++o)a[o]=Math.min(Math.max(this.clipBounds[i][o],-1e8),1e8);n.kambient=this.ambientLight,n.kdiffuse=this.diffuseLight,n.kspecular=this.specularLight,n.roughness=this.roughness,n.fresnel=this.fresnel,n.opacity=this.opacity,n.height=0,n.permutation=z,n.vertexColor=this.vertexColor;var s=P;for(p(s,n.view,n.model),p(s,n.projection,s),d(s,s),i=0;i<3;++i)n.eyePosition[i]=s[12+i]/s[15];var l=s[15];for(i=0;i<3;++i)l+=this.lightPosition[i]*s[4*i+3];for(i=0;i<3;++i){var c=s[12+i];for(o=0;o<3;++o)c+=s[4*o+i]*this.lightPosition[o];n.lightPosition[i]=c/l}var u=L(n,this);if(u.showSurface){for(this._shader.bind(),this._shader.uniforms=n,this._vao.bind(),this.showSurface&&this._vertexCount&&this._vao.draw(r.TRIANGLES,this._vertexCount),i=0;i<3;++i)this.surfaceProject[i]&&this.vertexCount&&(this._shader.uniforms.model=u.projections[i],this._shader.uniforms.clipBounds=u.clipBounds[i],this._vao.draw(r.TRIANGLES,this._vertexCount));this._vao.unbind()}if(u.showContour){var f=this._contourShader;n.kambient=1,n.kdiffuse=0,n.kspecular=0,n.opacity=1,f.bind(),f.uniforms=n;var h=this._contourVAO;for(h.bind(),i=0;i<3;++i)for(f.uniforms.permutation=k[i],r.lineWidth(this.contourWidth[i]*this.pixelRatio),o=0;o<this.contourLevels[i].length;++o)o===this.highlightLevel[i]?(f.uniforms.contourColor=this.highlightColor[i],f.uniforms.contourTint=this.highlightTint[i]):0!==o&&o-1!==this.highlightLevel[i]||(f.uniforms.contourColor=this.contourColor[i],f.uniforms.contourTint=this.contourTint[i]),this._contourCounts[i][o]&&(f.uniforms.height=this.contourLevels[i][o],h.draw(r.LINES,this._contourCounts[i][o],this._contourOffsets[i][o]));for(i=0;i<3;++i)for(f.uniforms.model=u.projections[i],f.uniforms.clipBounds=u.clipBounds[i],o=0;o<3;++o)if(this.contourProject[i][o]){f.uniforms.permutation=k[o],r.lineWidth(this.contourWidth[o]*this.pixelRatio);for(var g=0;g<this.contourLevels[o].length;++g)g===this.highlightLevel[o]?(f.uniforms.contourColor=this.highlightColor[o],f.uniforms.contourTint=this.highlightTint[o]):0!==g&&g-1!==this.highlightLevel[o]||(f.uniforms.contourColor=this.contourColor[o],f.uniforms.contourTint=this.contourTint[o]),this._contourCounts[o][g]&&(f.uniforms.height=this.contourLevels[o][g],h.draw(r.LINES,this._contourCounts[o][g],this._contourOffsets[o][g]))}for(h.unbind(),(h=this._dynamicVAO).bind(),i=0;i<3;++i)if(0!==this._dynamicCounts[i])for(f.uniforms.model=n.model,f.uniforms.clipBounds=n.clipBounds,f.uniforms.permutation=k[i],r.lineWidth(this.dynamicWidth[i]*this.pixelRatio),f.uniforms.contourColor=this.dynamicColor[i],f.uniforms.contourTint=this.dynamicTint[i],f.uniforms.height=this.dynamicLevel[i],h.draw(r.LINES,this._dynamicCounts[i],this._dynamicOffsets[i]),o=0;o<3;++o)this.contourProject[o][i]&&(f.uniforms.model=u.projections[o],f.uniforms.clipBounds=u.clipBounds[o],h.draw(r.LINES,this._dynamicCounts[i],this._dynamicOffsets[i]));h.unbind()}}S.draw=function(t){return O.call(this,t,!1)},S.drawTransparent=function(t){return O.call(this,t,!0)};var D={model:w,view:w,projection:w,inverseModel:w,clipBounds:[[0,0,0],[0,0,0]],height:0,shape:[0,0],pickId:0,lowerBound:[0,0,0],upperBound:[0,0,0],zOffset:0,objectOffset:[0,0,0],permutation:[1,0,0,0,1,0,0,0,1],lightPosition:[0,0,0],eyePosition:[0,0,0]};function R(t,e){return Array.isArray(t)?[e(t[0]),e(t[1]),e(t[2])]:[e(t),e(t),e(t)]}function F(t){return Array.isArray(t)?3===t.length?[t[0],t[1],t[2],1]:[t[0],t[1],t[2],t[3]]:[0,0,0,1]}function B(t){if(Array.isArray(t)){if(Array.isArray(t))return[F(t[0]),F(t[1]),F(t[2])];var e=F(t);return[e.slice(),e.slice(),e.slice()]}}S.drawPick=function(t){t=t||{};var e=this.gl;e.disable(e.CULL_FACE);var r=D;r.model=t.model||w,r.view=t.view||w,r.projection=t.projection||w,r.shape=this._field[2].shape,r.pickId=this.pickId/255,r.lowerBound=this.bounds[0],r.upperBound=this.bounds[1],r.objectOffset=this.objectOffset,r.permutation=z;for(var n=0;n<2;++n)for(var i=r.clipBounds[n],a=0;a<3;++a)i[a]=Math.min(Math.max(this.clipBounds[n][a],-1e8),1e8);var o=L(r,this);if(o.showSurface){for(this._pickShader.bind(),this._pickShader.uniforms=r,this._vao.bind(),this._vao.draw(e.TRIANGLES,this._vertexCount),n=0;n<3;++n)this.surfaceProject[n]&&(this._pickShader.uniforms.model=o.projections[n],this._pickShader.uniforms.clipBounds=o.clipBounds[n],this._vao.draw(e.TRIANGLES,this._vertexCount));this._vao.unbind()}if(o.showContour){var s=this._contourPickShader;s.bind(),s.uniforms=r;var l=this._contourVAO;for(l.bind(),a=0;a<3;++a)for(e.lineWidth(this.contourWidth[a]*this.pixelRatio),s.uniforms.permutation=k[a],n=0;n<this.contourLevels[a].length;++n)this._contourCounts[a][n]&&(s.uniforms.height=this.contourLevels[a][n],l.draw(e.LINES,this._contourCounts[a][n],this._contourOffsets[a][n]));for(n=0;n<3;++n)for(s.uniforms.model=o.projections[n],s.uniforms.clipBounds=o.clipBounds[n],a=0;a<3;++a)if(this.contourProject[n][a]){s.uniforms.permutation=k[a],e.lineWidth(this.contourWidth[a]*this.pixelRatio);for(var c=0;c<this.contourLevels[a].length;++c)this._contourCounts[a][c]&&(s.uniforms.height=this.contourLevels[a][c],l.draw(e.LINES,this._contourCounts[a][c],this._contourOffsets[a][c]))}l.unbind()}},S.pick=function(t){if(!t)return null;if(t.id!==this.pickId)return null;var e=this._field[2].shape,r=this._pickResult,n=e[0]*(t.value[0]+(t.value[2]>>4)/16)/255,i=Math.floor(n),a=n-i,o=e[1]*(t.value[1]+(15&t.value[2])/16)/255,s=Math.floor(o),l=o-s;i+=1,s+=1;var c=r.position;c[0]=c[1]=c[2]=0;for(var u=0;u<2;++u)for(var f=u?a:1-a,h=0;h<2;++h)for(var p=i+u,d=s+h,m=f*(h?l:1-l),v=0;v<3;++v)c[v]+=this._field[v].get(p,d)*m;for(var y=this._pickResult.level,x=0;x<3;++x)if(y[x]=g.le(this.contourLevels[x],c[x]),y[x]<0)this.contourLevels[x].length>0&&(y[x]=0);else if(y[x]<this.contourLevels[x].length-1){var b=this.contourLevels[x][y[x]],_=this.contourLevels[x][y[x]+1];Math.abs(b-c[x])>Math.abs(_-c[x])&&(y[x]+=1)}for(r.index[0]=a<.5?i:i+1,r.index[1]=l<.5?s:s+1,r.uv[0]=n/e[0],r.uv[1]=o/e[1],v=0;v<3;++v)r.dataCoordinate[v]=this._field[v].get(r.index[0],r.index[1]);return r},S.padField=function(t,e){var r=e.shape.slice(),n=t.shape.slice();c.assign(t.lo(1,1).hi(r[0],r[1]),e),c.assign(t.lo(1).hi(r[0],1),e.hi(r[0],1)),c.assign(t.lo(1,n[1]-1).hi(r[0],1),e.lo(0,r[1]-1).hi(r[0],1)),c.assign(t.lo(0,1).hi(1,r[1]),e.hi(1)),c.assign(t.lo(n[0]-1,1).hi(1,r[1]),e.lo(r[0]-1)),t.set(0,0,e.get(0,0)),t.set(0,n[1]-1,e.get(0,r[1]-1)),t.set(n[0]-1,0,e.get(r[0]-1,0)),t.set(n[0]-1,n[1]-1,e.get(r[0]-1,r[1]-1))},S.update=function(t){t=t||{},this.objectOffset=t.objectOffset||this.objectOffset,this.dirty=!0,\"contourWidth\"in t&&(this.contourWidth=R(t.contourWidth,Number)),\"showContour\"in t&&(this.showContour=R(t.showContour,Boolean)),\"showSurface\"in t&&(this.showSurface=!!t.showSurface),\"contourTint\"in t&&(this.contourTint=R(t.contourTint,Boolean)),\"contourColor\"in t&&(this.contourColor=B(t.contourColor)),\"contourProject\"in t&&(this.contourProject=R(t.contourProject,(function(t){return R(t,Boolean)}))),\"surfaceProject\"in t&&(this.surfaceProject=t.surfaceProject),\"dynamicColor\"in t&&(this.dynamicColor=B(t.dynamicColor)),\"dynamicTint\"in t&&(this.dynamicTint=R(t.dynamicTint,Number)),\"dynamicWidth\"in t&&(this.dynamicWidth=R(t.dynamicWidth,Number)),\"opacity\"in t&&(this.opacity=t.opacity),\"opacityscale\"in t&&(this.opacityscale=t.opacityscale),\"colorBounds\"in t&&(this.colorBounds=t.colorBounds),\"vertexColor\"in t&&(this.vertexColor=t.vertexColor?1:0),\"colormap\"in t&&this._colorMap.setPixels(this.genColormap(t.colormap,this.opacityscale));var e=t.field||t.coords&&t.coords[2]||null,r=!1;if(e||(e=this._field[2].shape[0]||this._field[2].shape[2]?this._field[2].lo(1,1).hi(this._field[2].shape[0]-2,this._field[2].shape[1]-2):this._field[2].hi(0,0)),\"field\"in t||\"coords\"in t){var i=(e.shape[0]+2)*(e.shape[1]+2);i>this._field[2].data.length&&(s.freeFloat(this._field[2].data),this._field[2].data=s.mallocFloat(n.nextPow2(i))),this._field[2]=f(this._field[2].data,[e.shape[0]+2,e.shape[1]+2]),this.padField(this._field[2],e),this.shape=e.shape.slice();for(var a=this.shape,o=0;o<2;++o)this._field[2].size>this._field[o].data.length&&(s.freeFloat(this._field[o].data),this._field[o].data=s.mallocFloat(this._field[2].size)),this._field[o]=f(this._field[o].data,[a[0]+2,a[1]+2]);if(t.coords){var l=t.coords;if(!Array.isArray(l)||3!==l.length)throw new Error(\"gl-surface: invalid coordinates for x/y\");for(o=0;o<2;++o){var c=l[o];for(v=0;v<2;++v)if(c.shape[v]!==a[v])throw new Error(\"gl-surface: coords have incorrect shape\");this.padField(this._field[o],c)}}else if(t.ticks){var u=t.ticks;if(!Array.isArray(u)||2!==u.length)throw new Error(\"gl-surface: invalid ticks\");for(o=0;o<2;++o){var p=u[o];if((Array.isArray(p)||p.length)&&(p=f(p)),p.shape[0]!==a[o])throw new Error(\"gl-surface: invalid tick length\");var d=f(p.data,a);d.stride[o]=p.stride[0],d.stride[1^o]=0,this.padField(this._field[o],d)}}else{for(o=0;o<2;++o){var g=[0,0];g[o]=1,this._field[o]=f(this._field[o].data,[a[0]+2,a[1]+2],g,0)}this._field[0].set(0,0,0);for(var v=0;v<a[0];++v)this._field[0].set(v+1,0,v);for(this._field[0].set(a[0]+1,0,a[0]-1),this._field[1].set(0,0,0),v=0;v<a[1];++v)this._field[1].set(0,v+1,v);this._field[1].set(0,a[1]+1,a[1]-1)}var y=this._field,x=f(s.mallocFloat(3*y[2].size*2),[3,a[0]+2,a[1]+2,2]);for(o=0;o<3;++o)m(x.pick(o),y[o],\"mirror\");var b=f(s.mallocFloat(3*y[2].size),[a[0]+2,a[1]+2,3]);for(o=0;o<a[0]+2;++o)for(v=0;v<a[1]+2;++v){var _=x.get(0,o,v,0),w=x.get(0,o,v,1),k=x.get(1,o,v,0),M=x.get(1,o,v,1),A=x.get(2,o,v,0),S=x.get(2,o,v,1),E=k*S-M*A,C=A*w-S*_,L=_*M-w*k,I=Math.sqrt(E*E+C*C+L*L);I<1e-8?(I=Math.max(Math.abs(E),Math.abs(C),Math.abs(L)))<1e-8?(L=1,C=E=0,I=1):I=1/I:I=1/Math.sqrt(I),b.set(o,v,0,E*I),b.set(o,v,1,C*I),b.set(o,v,2,L*I)}s.free(x.data);var P=[1/0,1/0,1/0],z=[-1/0,-1/0,-1/0],O=1/0,D=-1/0,F=(a[0]-1)*(a[1]-1)*6,N=s.mallocFloat(n.nextPow2(10*F)),j=0,U=0;for(o=0;o<a[0]-1;++o)t:for(v=0;v<a[1]-1;++v){for(var V=0;V<2;++V)for(var q=0;q<2;++q)for(var H=0;H<3;++H){var G=this._field[H].get(1+o+V,1+v+q);if(isNaN(G)||!isFinite(G))continue t}for(H=0;H<6;++H){var Y=o+T[H][0],W=v+T[H][1],X=this._field[0].get(Y+1,W+1),Z=this._field[1].get(Y+1,W+1);G=this._field[2].get(Y+1,W+1),E=b.get(Y+1,W+1,0),C=b.get(Y+1,W+1,1),L=b.get(Y+1,W+1,2),t.intensity&&(J=t.intensity.get(Y,W));var J=t.intensity?t.intensity.get(Y,W):G+this.objectOffset[2];N[j++]=Y,N[j++]=W,N[j++]=X,N[j++]=Z,N[j++]=G,N[j++]=0,N[j++]=J,N[j++]=E,N[j++]=C,N[j++]=L,P[0]=Math.min(P[0],X+this.objectOffset[0]),P[1]=Math.min(P[1],Z+this.objectOffset[1]),P[2]=Math.min(P[2],G+this.objectOffset[2]),O=Math.min(O,J),z[0]=Math.max(z[0],X+this.objectOffset[0]),z[1]=Math.max(z[1],Z+this.objectOffset[1]),z[2]=Math.max(z[2],G+this.objectOffset[2]),D=Math.max(D,J),U+=1}}for(t.intensityBounds&&(O=+t.intensityBounds[0],D=+t.intensityBounds[1]),o=6;o<j;o+=10)N[o]=(N[o]-O)/(D-O);this._vertexCount=U,this._coordinateBuffer.update(N.subarray(0,j)),s.freeFloat(N),s.free(b.data),this.bounds=[P,z],this.intensity=t.intensity||this._field[2],this.intensityBounds[0]===O&&this.intensityBounds[1]===D||(r=!0),this.intensityBounds=[O,D]}if(\"levels\"in t){var K=t.levels;for(K=Array.isArray(K[0])?K.slice():[[],[],K],o=0;o<3;++o)K[o]=K[o].slice(),K[o].sort((function(t,e){return t-e}));for(o=0;o<3;++o)for(v=0;v<K[o].length;++v)K[o][v]-=this.objectOffset[o];t:for(o=0;o<3;++o){if(K[o].length!==this.contourLevels[o].length){r=!0;break}for(v=0;v<K[o].length;++v)if(K[o][v]!==this.contourLevels[o][v]){r=!0;break t}}this.contourLevels=K}if(r){y=this._field,a=this.shape;for(var Q=[],$=0;$<3;++$){var tt=this.contourLevels[$],et=[],rt=[],nt=[0,0,0];for(o=0;o<tt.length;++o){var it=h(this._field[$],tt[o]);et.push(Q.length/5|0),U=0;t:for(v=0;v<it.cells.length;++v){var at=it.cells[v];for(H=0;H<2;++H){var ot=it.positions[at[H]],st=ot[0],lt=0|Math.floor(st),ct=st-lt,ut=ot[1],ft=0|Math.floor(ut),ht=ut-ft,pt=!1;e:for(var dt=0;dt<3;++dt){nt[dt]=0;var gt=($+dt+1)%3;for(V=0;V<2;++V){var mt=V?ct:1-ct;for(Y=0|Math.min(Math.max(lt+V,0),a[0]),q=0;q<2;++q){var vt=q?ht:1-ht;if(W=0|Math.min(Math.max(ft+q,0),a[1]),G=dt<2?this._field[gt].get(Y,W):(this.intensity.get(Y,W)-this.intensityBounds[0])/(this.intensityBounds[1]-this.intensityBounds[0]),!isFinite(G)||isNaN(G)){pt=!0;break e}var yt=mt*vt;nt[dt]+=yt*G}}}if(pt){if(H>0){for(var xt=0;xt<5;++xt)Q.pop();U-=1}continue t}Q.push(nt[0],nt[1],ot[0],ot[1],nt[2]),U+=1}}rt.push(U)}this._contourOffsets[$]=et,this._contourCounts[$]=rt}var bt=s.mallocFloat(Q.length);for(o=0;o<Q.length;++o)bt[o]=Q[o];this._contourBuffer.update(bt),s.freeFloat(bt)}},S.dispose=function(){this._shader.dispose(),this._vao.dispose(),this._coordinateBuffer.dispose(),this._colorMap.dispose(),this._contourBuffer.dispose(),this._contourVAO.dispose(),this._contourShader.dispose(),this._contourPickShader.dispose(),this._dynamicBuffer.dispose(),this._dynamicVAO.dispose();for(var t=0;t<3;++t)s.freeFloat(this._field[t].data)},S.highlight=function(t){var e,r;if(!t)return this._dynamicCounts=[0,0,0],this.dyanamicLevel=[NaN,NaN,NaN],void(this.highlightLevel=[-1,-1,-1]);for(e=0;e<3;++e)this.enableHighlight[e]?this.highlightLevel[e]=t.level[e]:this.highlightLevel[e]=-1;for(r=this.snapToData?t.dataCoordinate:t.position,e=0;e<3;++e)r[e]-=this.objectOffset[e];if(this.enableDynamic[0]&&r[0]!==this.dynamicLevel[0]||this.enableDynamic[1]&&r[1]!==this.dynamicLevel[1]||this.enableDynamic[2]&&r[2]!==this.dynamicLevel[2]){for(var n=0,i=this.shape,a=s.mallocFloat(12*i[0]*i[1]),o=0;o<3;++o)if(this.enableDynamic[o]){this.dynamicLevel[o]=r[o];var l=(o+1)%3,c=(o+2)%3,u=this._field[o],f=this._field[l],p=this._field[c],d=h(u,r[o]),g=d.cells,m=d.positions;for(this._dynamicOffsets[o]=n,e=0;e<g.length;++e)for(var v=g[e],y=0;y<2;++y){var x=m[v[y]],b=+x[0],_=0|b,w=0|Math.min(_+1,i[0]),T=b-_,k=1-T,M=+x[1],A=0|M,S=0|Math.min(A+1,i[1]),E=M-A,C=1-E,L=k*C,I=k*E,P=T*C,z=T*E,O=L*f.get(_,A)+I*f.get(_,S)+P*f.get(w,A)+z*f.get(w,S),D=L*p.get(_,A)+I*p.get(_,S)+P*p.get(w,A)+z*p.get(w,S);if(isNaN(O)||isNaN(D)){y&&(n-=1);break}a[2*n+0]=O,a[2*n+1]=D,n+=1}this._dynamicCounts[o]=n-this._dynamicOffsets[o]}else this.dynamicLevel[o]=NaN,this._dynamicCounts[o]=0;this._dynamicBuffer.update(a.subarray(0,2*n)),s.freeFloat(a)}}},{\"./lib/shaders\":349,\"binary-search-bounds\":96,\"bit-twiddle\":97,colormap:131,\"gl-buffer\":259,\"gl-mat4/invert\":293,\"gl-mat4/multiply\":295,\"gl-texture2d\":353,\"gl-vao\":358,ndarray:495,\"ndarray-gradient\":488,\"ndarray-ops\":490,\"ndarray-pack\":491,\"surface-nets\":570,\"typedarray-pool\":595}],352:[function(t,e,r){\"use strict\";var n=t(\"css-font\"),i=t(\"pick-by-alias\"),a=t(\"regl\"),o=t(\"gl-util/context\"),s=t(\"es6-weak-map\"),l=t(\"color-normalize\"),c=t(\"font-atlas\"),u=t(\"typedarray-pool\"),f=t(\"parse-rect\"),h=t(\"is-plain-obj\"),p=t(\"parse-unit\"),d=t(\"to-px\"),g=t(\"detect-kerning\"),m=t(\"object-assign\"),v=t(\"font-measure\"),y=t(\"flatten-vertex-data\"),x=t(\"bit-twiddle\").nextPow2,b=new s,_=!1;if(document.body){var w=document.body.appendChild(document.createElement(\"div\"));w.style.font=\"italic small-caps bold condensed 16px/2 cursive\",getComputedStyle(w).fontStretch&&(_=!0),document.body.removeChild(w)}var T=function(t){!function(t){return\"function\"==typeof t&&t._gl&&t.prop&&t.texture&&t.buffer}(t)?this.gl=o(t):(t={regl:t},this.gl=t.regl._gl),this.shader=b.get(this.gl),this.shader?this.regl=this.shader.regl:this.regl=t.regl||a({gl:this.gl}),this.charBuffer=this.regl.buffer({type:\"uint8\",usage:\"stream\"}),this.sizeBuffer=this.regl.buffer({type:\"float\",usage:\"stream\"}),this.shader||(this.shader=this.createShader(),b.set(this.gl,this.shader)),this.batch=[],this.fontSize=[],this.font=[],this.fontAtlas=[],this.draw=this.shader.draw.bind(this),this.render=function(){this.regl._refresh(),this.draw(this.batch)},this.canvas=this.gl.canvas,this.update(h(t)?t:{})};T.prototype.createShader=function(){var t=this.regl,e=t({blend:{enable:!0,color:[0,0,0,1],func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},stencil:{enable:!1},depth:{enable:!1},count:t.prop(\"count\"),offset:t.prop(\"offset\"),attributes:{charOffset:{offset:4,stride:8,buffer:t.this(\"sizeBuffer\")},width:{offset:0,stride:8,buffer:t.this(\"sizeBuffer\")},char:t.this(\"charBuffer\"),position:t.this(\"position\")},uniforms:{atlasSize:function(t,e){return[e.atlas.width,e.atlas.height]},atlasDim:function(t,e){return[e.atlas.cols,e.atlas.rows]},atlas:function(t,e){return e.atlas.texture},charStep:function(t,e){return e.atlas.step},em:function(t,e){return e.atlas.em},color:t.prop(\"color\"),opacity:t.prop(\"opacity\"),viewport:t.this(\"viewportArray\"),scale:t.this(\"scale\"),align:t.prop(\"align\"),baseline:t.prop(\"baseline\"),translate:t.this(\"translate\"),positionOffset:t.prop(\"positionOffset\")},primitive:\"points\",viewport:t.this(\"viewport\"),vert:\"\\n\\t\\t\\tprecision highp float;\\n\\t\\t\\tattribute float width, charOffset, char;\\n\\t\\t\\tattribute vec2 position;\\n\\t\\t\\tuniform float fontSize, charStep, em, align, baseline;\\n\\t\\t\\tuniform vec4 viewport;\\n\\t\\t\\tuniform vec4 color;\\n\\t\\t\\tuniform vec2 atlasSize, atlasDim, scale, translate, positionOffset;\\n\\t\\t\\tvarying vec2 charCoord, charId;\\n\\t\\t\\tvarying float charWidth;\\n\\t\\t\\tvarying vec4 fontColor;\\n\\t\\t\\tvoid main () {\\n\\t\\t\\t\\t\"+(T.normalViewport?\"\":\"vec2 positionOffset = vec2(positionOffset.x,- positionOffset.y);\")+\"\\n\\n\\t\\t\\t\\tvec2 offset = floor(em * (vec2(align + charOffset, baseline)\\n\\t\\t\\t\\t\\t+ positionOffset))\\n\\t\\t\\t\\t\\t/ (viewport.zw * scale.xy);\\n\\n\\t\\t\\t\\tvec2 position = (position + translate) * scale;\\n\\t\\t\\t\\tposition += offset * scale;\\n\\n\\t\\t\\t\\t\"+(T.normalViewport?\"position.y = 1. - position.y;\":\"\")+\"\\n\\n\\t\\t\\t\\tcharCoord = position * viewport.zw + viewport.xy;\\n\\n\\t\\t\\t\\tgl_Position = vec4(position * 2. - 1., 0, 1);\\n\\n\\t\\t\\t\\tgl_PointSize = charStep;\\n\\n\\t\\t\\t\\tcharId.x = mod(char, atlasDim.x);\\n\\t\\t\\t\\tcharId.y = floor(char / atlasDim.x);\\n\\n\\t\\t\\t\\tcharWidth = width * em;\\n\\n\\t\\t\\t\\tfontColor = color / 255.;\\n\\t\\t\\t}\",frag:\"\\n\\t\\t\\tprecision highp float;\\n\\t\\t\\tuniform sampler2D atlas;\\n\\t\\t\\tuniform float fontSize, charStep, opacity;\\n\\t\\t\\tuniform vec2 atlasSize;\\n\\t\\t\\tuniform vec4 viewport;\\n\\t\\t\\tvarying vec4 fontColor;\\n\\t\\t\\tvarying vec2 charCoord, charId;\\n\\t\\t\\tvarying float charWidth;\\n\\n\\t\\t\\tfloat lightness(vec4 color) {\\n\\t\\t\\t\\treturn color.r * 0.299 + color.g * 0.587 + color.b * 0.114;\\n\\t\\t\\t}\\n\\n\\t\\t\\tvoid main () {\\n\\t\\t\\t\\tvec2 uv = gl_FragCoord.xy - charCoord + charStep * .5;\\n\\t\\t\\t\\tfloat halfCharStep = floor(charStep * .5 + .5);\\n\\n\\t\\t\\t\\t// invert y and shift by 1px (FF expecially needs that)\\n\\t\\t\\t\\tuv.y = charStep - uv.y;\\n\\n\\t\\t\\t\\t// ignore points outside of character bounding box\\n\\t\\t\\t\\tfloat halfCharWidth = ceil(charWidth * .5);\\n\\t\\t\\t\\tif (floor(uv.x) > halfCharStep + halfCharWidth ||\\n\\t\\t\\t\\t\\tfloor(uv.x) < halfCharStep - halfCharWidth) return;\\n\\n\\t\\t\\t\\tuv += charId * charStep;\\n\\t\\t\\t\\tuv = uv / atlasSize;\\n\\n\\t\\t\\t\\tvec4 color = fontColor;\\n\\t\\t\\t\\tvec4 mask = texture2D(atlas, uv);\\n\\n\\t\\t\\t\\tfloat maskY = lightness(mask);\\n\\t\\t\\t\\t// float colorY = lightness(color);\\n\\t\\t\\t\\tcolor.a *= maskY;\\n\\t\\t\\t\\tcolor.a *= opacity;\\n\\n\\t\\t\\t\\t// color.a += .1;\\n\\n\\t\\t\\t\\t// antialiasing, see yiq color space y-channel formula\\n\\t\\t\\t\\t// color.rgb += (1. - color.rgb) * (1. - mask.rgb);\\n\\n\\t\\t\\t\\tgl_FragColor = color;\\n\\t\\t\\t}\"});return{regl:t,draw:e,atlas:{}}},T.prototype.update=function(t){var e=this;if(\"string\"==typeof t)t={text:t};else if(!t)return;null!=(t=i(t,{position:\"position positions coord coords coordinates\",font:\"font fontFace fontface typeface cssFont css-font family fontFamily\",fontSize:\"fontSize fontsize size font-size\",text:\"text texts chars characters value values symbols\",align:\"align alignment textAlign textbaseline\",baseline:\"baseline textBaseline textbaseline\",direction:\"dir direction textDirection\",color:\"color colour fill fill-color fillColor textColor textcolor\",kerning:\"kerning kern\",range:\"range dataBox\",viewport:\"vp viewport viewBox viewbox viewPort\",opacity:\"opacity alpha transparency visible visibility opaque\",offset:\"offset positionOffset padding shift indent indentation\"},!0)).opacity&&(Array.isArray(t.opacity)?this.opacity=t.opacity.map((function(t){return parseFloat(t)})):this.opacity=parseFloat(t.opacity)),null!=t.viewport&&(this.viewport=f(t.viewport),T.normalViewport&&(this.viewport.y=this.canvas.height-this.viewport.y-this.viewport.height),this.viewportArray=[this.viewport.x,this.viewport.y,this.viewport.width,this.viewport.height]),null==this.viewport&&(this.viewport={x:0,y:0,width:this.gl.drawingBufferWidth,height:this.gl.drawingBufferHeight},this.viewportArray=[this.viewport.x,this.viewport.y,this.viewport.width,this.viewport.height]),null!=t.kerning&&(this.kerning=t.kerning),null!=t.offset&&(\"number\"==typeof t.offset&&(t.offset=[t.offset,0]),this.positionOffset=y(t.offset)),t.direction&&(this.direction=t.direction),t.range&&(this.range=t.range,this.scale=[1/(t.range[2]-t.range[0]),1/(t.range[3]-t.range[1])],this.translate=[-t.range[0],-t.range[1]]),t.scale&&(this.scale=t.scale),t.translate&&(this.translate=t.translate),this.scale||(this.scale=[1/this.viewport.width,1/this.viewport.height]),this.translate||(this.translate=[0,0]),this.font.length||t.font||(t.font=T.baseFontSize+\"px sans-serif\");var r,a=!1,o=!1;if(t.font&&(Array.isArray(t.font)?t.font:[t.font]).forEach((function(t,r){if(\"string\"==typeof t)try{t=n.parse(t)}catch(e){t=n.parse(T.baseFontSize+\"px \"+t)}else t=n.parse(n.stringify(t));var i=n.stringify({size:T.baseFontSize,family:t.family,stretch:_?t.stretch:void 0,variant:t.variant,weight:t.weight,style:t.style}),s=p(t.size),l=Math.round(s[0]*d(s[1]));if(l!==e.fontSize[r]&&(o=!0,e.fontSize[r]=l),!(e.font[r]&&i==e.font[r].baseString||(a=!0,e.font[r]=T.fonts[i],e.font[r]))){var c=t.family.join(\", \"),u=[t.style];t.style!=t.variant&&u.push(t.variant),t.variant!=t.weight&&u.push(t.weight),_&&t.weight!=t.stretch&&u.push(t.stretch),e.font[r]={baseString:i,family:c,weight:t.weight,stretch:t.stretch,style:t.style,variant:t.variant,width:{},kerning:{},metrics:v(c,{origin:\"top\",fontSize:T.baseFontSize,fontStyle:u.join(\" \")})},T.fonts[i]=e.font[r]}})),(a||o)&&this.font.forEach((function(r,i){var a=n.stringify({size:e.fontSize[i],family:r.family,stretch:_?r.stretch:void 0,variant:r.variant,weight:r.weight,style:r.style});if(e.fontAtlas[i]=e.shader.atlas[a],!e.fontAtlas[i]){var o=r.metrics;e.shader.atlas[a]=e.fontAtlas[i]={fontString:a,step:2*Math.ceil(e.fontSize[i]*o.bottom*.5),em:e.fontSize[i],cols:0,rows:0,height:0,width:0,chars:[],ids:{},texture:e.regl.texture()}}null==t.text&&(t.text=e.text)})),\"string\"==typeof t.text&&t.position&&t.position.length>2){for(var s=Array(.5*t.position.length),h=0;h<s.length;h++)s[h]=t.text;t.text=s}if(null!=t.text||a){if(this.textOffsets=[0],Array.isArray(t.text)){this.count=t.text[0].length,this.counts=[this.count];for(var b=1;b<t.text.length;b++)this.textOffsets[b]=this.textOffsets[b-1]+t.text[b-1].length,this.count+=t.text[b].length,this.counts.push(t.text[b].length);this.text=t.text.join(\"\")}else this.text=t.text,this.count=this.text.length,this.counts=[this.count];r=[],this.font.forEach((function(t,n){T.atlasContext.font=t.baseString;for(var i=e.fontAtlas[n],a=0;a<e.text.length;a++){var o=e.text.charAt(a);if(null==i.ids[o]&&(i.ids[o]=i.chars.length,i.chars.push(o),r.push(o)),null==t.width[o]&&(t.width[o]=T.atlasContext.measureText(o).width/T.baseFontSize,e.kerning)){var s=[];for(var l in t.width)s.push(l+o,o+l);m(t.kerning,g(t.family,{pairs:s}))}}}))}if(t.position)if(t.position.length>2){for(var w=!t.position[0].length,k=u.mallocFloat(2*this.count),M=0,A=0;M<this.counts.length;M++){var S=this.counts[M];if(w)for(var E=0;E<S;E++)k[A++]=t.position[2*M],k[A++]=t.position[2*M+1];else for(var C=0;C<S;C++)k[A++]=t.position[M][0],k[A++]=t.position[M][1]}this.position.call?this.position({type:\"float\",data:k}):this.position=this.regl.buffer({type:\"float\",data:k}),u.freeFloat(k)}else this.position.destroy&&this.position.destroy(),this.position={constant:t.position};if(t.text||a){var L=u.mallocUint8(this.count),I=u.mallocFloat(2*this.count);this.textWidth=[];for(var P=0,z=0;P<this.counts.length;P++){for(var O=this.counts[P],D=this.font[P]||this.font[0],R=this.fontAtlas[P]||this.fontAtlas[0],F=0;F<O;F++){var B=this.text.charAt(z),N=this.text.charAt(z-1);if(L[z]=R.ids[B],I[2*z]=D.width[B],F){var j=I[2*z-2],U=I[2*z],V=I[2*z-1]+.5*j+.5*U;if(this.kerning){var q=D.kerning[N+B];q&&(V+=.001*q)}I[2*z+1]=V}else I[2*z+1]=.5*I[2*z];z++}this.textWidth.push(I.length?.5*I[2*z-2]+I[2*z-1]:0)}t.align||(t.align=this.align),this.charBuffer({data:L,type:\"uint8\",usage:\"stream\"}),this.sizeBuffer({data:I,type:\"float\",usage:\"stream\"}),u.freeUint8(L),u.freeFloat(I),r.length&&this.font.forEach((function(t,r){var n=e.fontAtlas[r],i=n.step,a=Math.floor(T.maxAtlasSize/i),o=Math.min(a,n.chars.length),s=Math.ceil(n.chars.length/o),l=x(o*i),u=x(s*i);n.width=l,n.height=u,n.rows=s,n.cols=o,n.em&&n.texture({data:c({canvas:T.atlasCanvas,font:n.fontString,chars:n.chars,shape:[l,u],step:[i,i]})})}))}if(t.align&&(this.align=t.align,this.alignOffset=this.textWidth.map((function(t,r){var n=Array.isArray(e.align)?e.align.length>1?e.align[r]:e.align[0]:e.align;if(\"number\"==typeof n)return n;switch(n){case\"right\":case\"end\":return-t;case\"center\":case\"centre\":case\"middle\":return.5*-t}return 0}))),null==this.baseline&&null==t.baseline&&(t.baseline=0),null!=t.baseline&&(this.baseline=t.baseline,Array.isArray(this.baseline)||(this.baseline=[this.baseline]),this.baselineOffset=this.baseline.map((function(t,r){var n=(e.font[r]||e.font[0]).metrics,i=0;return i+=.5*n.bottom,i+=\"number\"==typeof t?t-n.baseline:-n[t],T.normalViewport||(i*=-1),i}))),null!=t.color)if(t.color||(t.color=\"transparent\"),\"string\"!=typeof t.color&&isNaN(t.color)){var H;if(\"number\"==typeof t.color[0]&&t.color.length>this.counts.length){var G=t.color.length;H=u.mallocUint8(G);for(var Y=(t.color.subarray||t.color.slice).bind(t.color),W=0;W<G;W+=4)H.set(l(Y(W,W+4),\"uint8\"),W)}else{var X=t.color.length;H=u.mallocUint8(4*X);for(var Z=0;Z<X;Z++)H.set(l(t.color[Z]||0,\"uint8\"),4*Z)}this.color=H}else this.color=l(t.color,\"uint8\");if(t.position||t.text||t.color||t.baseline||t.align||t.font||t.offset||t.opacity)if(this.color.length>4||this.baselineOffset.length>1||this.align&&this.align.length>1||this.fontAtlas.length>1||this.positionOffset.length>2){var J=Math.max(.5*this.position.length||0,.25*this.color.length||0,this.baselineOffset.length||0,this.alignOffset.length||0,this.font.length||0,this.opacity.length||0,.5*this.positionOffset.length||0);this.batch=Array(J);for(var K=0;K<this.batch.length;K++)this.batch[K]={count:this.counts.length>1?this.counts[K]:this.counts[0],offset:this.textOffsets.length>1?this.textOffsets[K]:this.textOffsets[0],color:this.color?this.color.length<=4?this.color:this.color.subarray(4*K,4*K+4):[0,0,0,255],opacity:Array.isArray(this.opacity)?this.opacity[K]:this.opacity,baseline:null!=this.baselineOffset[K]?this.baselineOffset[K]:this.baselineOffset[0],align:this.align?null!=this.alignOffset[K]?this.alignOffset[K]:this.alignOffset[0]:0,atlas:this.fontAtlas[K]||this.fontAtlas[0],positionOffset:this.positionOffset.length>2?this.positionOffset.subarray(2*K,2*K+2):this.positionOffset}}else this.count?this.batch=[{count:this.count,offset:0,color:this.color||[0,0,0,255],opacity:Array.isArray(this.opacity)?this.opacity[0]:this.opacity,baseline:this.baselineOffset[0],align:this.alignOffset?this.alignOffset[0]:0,atlas:this.fontAtlas[0],positionOffset:this.positionOffset}]:this.batch=[]},T.prototype.destroy=function(){},T.prototype.kerning=!0,T.prototype.position={constant:new Float32Array(2)},T.prototype.translate=null,T.prototype.scale=null,T.prototype.font=null,T.prototype.text=\"\",T.prototype.positionOffset=[0,0],T.prototype.opacity=1,T.prototype.color=new Uint8Array([0,0,0,255]),T.prototype.alignOffset=[0,0],T.normalViewport=!1,T.maxAtlasSize=1024,T.atlasCanvas=document.createElement(\"canvas\"),T.atlasContext=T.atlasCanvas.getContext(\"2d\",{alpha:!1}),T.baseFontSize=64,T.fonts={},e.exports=T},{\"bit-twiddle\":97,\"color-normalize\":125,\"css-font\":144,\"detect-kerning\":172,\"es6-weak-map\":233,\"flatten-vertex-data\":244,\"font-atlas\":245,\"font-measure\":246,\"gl-util/context\":354,\"is-plain-obj\":469,\"object-assign\":499,\"parse-rect\":504,\"parse-unit\":506,\"pick-by-alias\":511,regl:540,\"to-px\":578,\"typedarray-pool\":595}],353:[function(t,e,r){\"use strict\";var n=t(\"ndarray\"),i=t(\"ndarray-ops\"),a=t(\"typedarray-pool\");e.exports=function(t){if(arguments.length<=1)throw new Error(\"gl-texture2d: Missing arguments for texture2d constructor\");o||c(t);if(\"number\"==typeof arguments[1])return v(t,arguments[1],arguments[2],arguments[3]||t.RGBA,arguments[4]||t.UNSIGNED_BYTE);if(Array.isArray(arguments[1]))return v(t,0|arguments[1][0],0|arguments[1][1],arguments[2]||t.RGBA,arguments[3]||t.UNSIGNED_BYTE);if(\"object\"==typeof arguments[1]){var e=arguments[1],r=u(e)?e:e.raw;if(r)return y(t,r,0|e.width,0|e.height,arguments[2]||t.RGBA,arguments[3]||t.UNSIGNED_BYTE);if(e.shape&&e.data&&e.stride)return x(t,e)}throw new Error(\"gl-texture2d: Invalid arguments for texture2d constructor\")};var o=null,s=null,l=null;function c(t){o=[t.LINEAR,t.NEAREST_MIPMAP_LINEAR,t.LINEAR_MIPMAP_NEAREST,t.LINEAR_MIPMAP_NEAREST],s=[t.NEAREST,t.LINEAR,t.NEAREST_MIPMAP_NEAREST,t.NEAREST_MIPMAP_LINEAR,t.LINEAR_MIPMAP_NEAREST,t.LINEAR_MIPMAP_LINEAR],l=[t.REPEAT,t.CLAMP_TO_EDGE,t.MIRRORED_REPEAT]}function u(t){return\"undefined\"!=typeof HTMLCanvasElement&&t instanceof HTMLCanvasElement||\"undefined\"!=typeof HTMLImageElement&&t instanceof HTMLImageElement||\"undefined\"!=typeof HTMLVideoElement&&t instanceof HTMLVideoElement||\"undefined\"!=typeof ImageData&&t instanceof ImageData}var f=function(t,e){i.muls(t,e,255)};function h(t,e,r){var n=t.gl,i=n.getParameter(n.MAX_TEXTURE_SIZE);if(e<0||e>i||r<0||r>i)throw new Error(\"gl-texture2d: Invalid texture size\");return t._shape=[e,r],t.bind(),n.texImage2D(n.TEXTURE_2D,0,t.format,e,r,0,t.format,t.type,null),t._mipLevels=[0],t}function p(t,e,r,n,i,a){this.gl=t,this.handle=e,this.format=i,this.type=a,this._shape=[r,n],this._mipLevels=[0],this._magFilter=t.NEAREST,this._minFilter=t.NEAREST,this._wrapS=t.CLAMP_TO_EDGE,this._wrapT=t.CLAMP_TO_EDGE,this._anisoSamples=1;var o=this,s=[this._wrapS,this._wrapT];Object.defineProperties(s,[{get:function(){return o._wrapS},set:function(t){return o.wrapS=t}},{get:function(){return o._wrapT},set:function(t){return o.wrapT=t}}]),this._wrapVector=s;var l=[this._shape[0],this._shape[1]];Object.defineProperties(l,[{get:function(){return o._shape[0]},set:function(t){return o.width=t}},{get:function(){return o._shape[1]},set:function(t){return o.height=t}}]),this._shapeVector=l}var d=p.prototype;function g(t,e){return 3===t.length?1===e[2]&&e[1]===t[0]*t[2]&&e[0]===t[2]:1===e[0]&&e[1]===t[0]}function m(t){var e=t.createTexture();return t.bindTexture(t.TEXTURE_2D,e),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_MAG_FILTER,t.NEAREST),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_S,t.CLAMP_TO_EDGE),t.texParameteri(t.TEXTURE_2D,t.TEXTURE_WRAP_T,t.CLAMP_TO_EDGE),e}function v(t,e,r,n,i){var a=t.getParameter(t.MAX_TEXTURE_SIZE);if(e<0||e>a||r<0||r>a)throw new Error(\"gl-texture2d: Invalid texture shape\");if(i===t.FLOAT&&!t.getExtension(\"OES_texture_float\"))throw new Error(\"gl-texture2d: Floating point textures not supported on this platform\");var o=m(t);return t.texImage2D(t.TEXTURE_2D,0,n,e,r,0,n,i,null),new p(t,o,e,r,n,i)}function y(t,e,r,n,i,a){var o=m(t);return t.texImage2D(t.TEXTURE_2D,0,i,i,a,e),new p(t,o,r,n,i,a)}function x(t,e){var r=e.dtype,o=e.shape.slice(),s=t.getParameter(t.MAX_TEXTURE_SIZE);if(o[0]<0||o[0]>s||o[1]<0||o[1]>s)throw new Error(\"gl-texture2d: Invalid texture size\");var l=g(o,e.stride.slice()),c=0;\"float32\"===r?c=t.FLOAT:\"float64\"===r?(c=t.FLOAT,l=!1,r=\"float32\"):\"uint8\"===r?c=t.UNSIGNED_BYTE:(c=t.UNSIGNED_BYTE,l=!1,r=\"uint8\");var u,h,d=0;if(2===o.length)d=t.LUMINANCE,o=[o[0],o[1],1],e=n(e.data,o,[e.stride[0],e.stride[1],1],e.offset);else{if(3!==o.length)throw new Error(\"gl-texture2d: Invalid shape for texture\");if(1===o[2])d=t.ALPHA;else if(2===o[2])d=t.LUMINANCE_ALPHA;else if(3===o[2])d=t.RGB;else{if(4!==o[2])throw new Error(\"gl-texture2d: Invalid shape for pixel coords\");d=t.RGBA}}c!==t.FLOAT||t.getExtension(\"OES_texture_float\")||(c=t.UNSIGNED_BYTE,l=!1);var v=e.size;if(l)u=0===e.offset&&e.data.length===v?e.data:e.data.subarray(e.offset,e.offset+v);else{var y=[o[2],o[2]*o[0],1];h=a.malloc(v,r);var x=n(h,o,y,0);\"float32\"!==r&&\"float64\"!==r||c!==t.UNSIGNED_BYTE?i.assign(x,e):f(x,e),u=h.subarray(0,v)}var b=m(t);return t.texImage2D(t.TEXTURE_2D,0,d,o[0],o[1],0,d,c,u),l||a.free(h),new p(t,b,o[0],o[1],d,c)}Object.defineProperties(d,{minFilter:{get:function(){return this._minFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&o.indexOf(t)>=0&&(e.getExtension(\"OES_texture_float_linear\")||(t=e.NEAREST)),s.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown filter mode \"+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,t),this._minFilter=t}},magFilter:{get:function(){return this._magFilter},set:function(t){this.bind();var e=this.gl;if(this.type===e.FLOAT&&o.indexOf(t)>=0&&(e.getExtension(\"OES_texture_float_linear\")||(t=e.NEAREST)),s.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown filter mode \"+t);return e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,t),this._magFilter=t}},mipSamples:{get:function(){return this._anisoSamples},set:function(t){var e=this._anisoSamples;if(this._anisoSamples=0|Math.max(t,1),e!==this._anisoSamples){var r=this.gl.getExtension(\"EXT_texture_filter_anisotropic\");r&&this.gl.texParameterf(this.gl.TEXTURE_2D,r.TEXTURE_MAX_ANISOTROPY_EXT,this._anisoSamples)}return this._anisoSamples}},wrapS:{get:function(){return this._wrapS},set:function(t){if(this.bind(),l.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,t),this._wrapS=t}},wrapT:{get:function(){return this._wrapT},set:function(t){if(this.bind(),l.indexOf(t)<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);return this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,t),this._wrapT=t}},wrap:{get:function(){return this._wrapVector},set:function(t){if(Array.isArray(t)||(t=[t,t]),2!==t.length)throw new Error(\"gl-texture2d: Must specify wrap mode for rows and columns\");for(var e=0;e<2;++e)if(l.indexOf(t[e])<0)throw new Error(\"gl-texture2d: Unknown wrap mode \"+t);this._wrapS=t[0],this._wrapT=t[1];var r=this.gl;return this.bind(),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_S,this._wrapS),r.texParameteri(r.TEXTURE_2D,r.TEXTURE_WRAP_T,this._wrapT),t}},shape:{get:function(){return this._shapeVector},set:function(t){if(Array.isArray(t)){if(2!==t.length)throw new Error(\"gl-texture2d: Invalid texture shape\")}else t=[0|t,0|t];return h(this,0|t[0],0|t[1]),[0|t[0],0|t[1]]}},width:{get:function(){return this._shape[0]},set:function(t){return h(this,t|=0,this._shape[1]),t}},height:{get:function(){return this._shape[1]},set:function(t){return t|=0,h(this,this._shape[0],t),t}}}),d.bind=function(t){var e=this.gl;return void 0!==t&&e.activeTexture(e.TEXTURE0+(0|t)),e.bindTexture(e.TEXTURE_2D,this.handle),void 0!==t?0|t:e.getParameter(e.ACTIVE_TEXTURE)-e.TEXTURE0},d.dispose=function(){this.gl.deleteTexture(this.handle)},d.generateMipmap=function(){this.bind(),this.gl.generateMipmap(this.gl.TEXTURE_2D);for(var t=Math.min(this._shape[0],this._shape[1]),e=0;t>0;++e,t>>>=1)this._mipLevels.indexOf(e)<0&&this._mipLevels.push(e)},d.setPixels=function(t,e,r,o){var s=this.gl;this.bind(),Array.isArray(e)?(o=r,r=0|e[1],e=0|e[0]):(e=e||0,r=r||0),o=o||0;var l=u(t)?t:t.raw;if(l){this._mipLevels.indexOf(o)<0?(s.texImage2D(s.TEXTURE_2D,0,this.format,this.format,this.type,l),this._mipLevels.push(o)):s.texSubImage2D(s.TEXTURE_2D,o,e,r,this.format,this.type,l)}else{if(!(t.shape&&t.stride&&t.data))throw new Error(\"gl-texture2d: Unsupported data type\");if(t.shape.length<2||e+t.shape[1]>this._shape[1]>>>o||r+t.shape[0]>this._shape[0]>>>o||e<0||r<0)throw new Error(\"gl-texture2d: Texture dimensions are out of bounds\");!function(t,e,r,o,s,l,c,u){var h=u.dtype,p=u.shape.slice();if(p.length<2||p.length>3)throw new Error(\"gl-texture2d: Invalid ndarray, must be 2d or 3d\");var d=0,m=0,v=g(p,u.stride.slice());\"float32\"===h?d=t.FLOAT:\"float64\"===h?(d=t.FLOAT,v=!1,h=\"float32\"):\"uint8\"===h?d=t.UNSIGNED_BYTE:(d=t.UNSIGNED_BYTE,v=!1,h=\"uint8\");if(2===p.length)m=t.LUMINANCE,p=[p[0],p[1],1],u=n(u.data,p,[u.stride[0],u.stride[1],1],u.offset);else{if(3!==p.length)throw new Error(\"gl-texture2d: Invalid shape for texture\");if(1===p[2])m=t.ALPHA;else if(2===p[2])m=t.LUMINANCE_ALPHA;else if(3===p[2])m=t.RGB;else{if(4!==p[2])throw new Error(\"gl-texture2d: Invalid shape for pixel coords\");m=t.RGBA}p[2]}m!==t.LUMINANCE&&m!==t.ALPHA||s!==t.LUMINANCE&&s!==t.ALPHA||(m=s);if(m!==s)throw new Error(\"gl-texture2d: Incompatible texture format for setPixels\");var y=u.size,x=c.indexOf(o)<0;x&&c.push(o);if(d===l&&v)0===u.offset&&u.data.length===y?x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,u.data):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,u.data):x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,u.data.subarray(u.offset,u.offset+y)):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,u.data.subarray(u.offset,u.offset+y));else{var b;b=l===t.FLOAT?a.mallocFloat32(y):a.mallocUint8(y);var _=n(b,p,[p[2],p[2]*p[0],1]);d===t.FLOAT&&l===t.UNSIGNED_BYTE?f(_,u):i.assign(_,u),x?t.texImage2D(t.TEXTURE_2D,o,s,p[0],p[1],0,s,l,b.subarray(0,y)):t.texSubImage2D(t.TEXTURE_2D,o,e,r,p[0],p[1],s,l,b.subarray(0,y)),l===t.FLOAT?a.freeFloat32(b):a.freeUint8(b)}}(s,e,r,o,this.format,this.type,this._mipLevels,t)}}},{ndarray:495,\"ndarray-ops\":490,\"typedarray-pool\":595}],354:[function(t,e,r){(function(r){(function(){\"use strict\";var n=t(\"pick-by-alias\");function i(t){if(t.container)if(t.container==document.body)document.body.style.width||(t.canvas.width=t.width||t.pixelRatio*r.innerWidth),document.body.style.height||(t.canvas.height=t.height||t.pixelRatio*r.innerHeight);else{var e=t.container.getBoundingClientRect();t.canvas.width=t.width||e.right-e.left,t.canvas.height=t.height||e.bottom-e.top}}function a(t){return\"function\"==typeof t.getContext&&\"width\"in t&&\"height\"in t}function o(){var t=document.createElement(\"canvas\");return t.style.position=\"absolute\",t.style.top=0,t.style.left=0,t}e.exports=function(t){var e;if(t?\"string\"==typeof t&&(t={container:t}):t={},a(t)?t={container:t}:t=\"string\"==typeof(e=t).nodeName&&\"function\"==typeof e.appendChild&&\"function\"==typeof e.getBoundingClientRect?{container:t}:function(t){return\"function\"==typeof t.drawArrays||\"function\"==typeof t.drawElements}(t)?{gl:t}:n(t,{container:\"container target element el canvas holder parent parentNode wrapper use ref root node\",gl:\"gl context webgl glContext\",attrs:\"attributes attrs contextAttributes\",pixelRatio:\"pixelRatio pxRatio px ratio pxratio pixelratio\",width:\"w width\",height:\"h height\"},!0),t.pixelRatio||(t.pixelRatio=r.pixelRatio||1),t.gl)return t.gl;if(t.canvas&&(t.container=t.canvas.parentNode),t.container){if(\"string\"==typeof t.container){var s=document.querySelector(t.container);if(!s)throw Error(\"Element \"+t.container+\" is not found\");t.container=s}a(t.container)?(t.canvas=t.container,t.container=t.canvas.parentNode):t.canvas||(t.canvas=o(),t.container.appendChild(t.canvas),i(t))}else if(!t.canvas){if(\"undefined\"==typeof document)throw Error(\"Not DOM environment. Use headless-gl.\");t.container=document.body||document.documentElement,t.canvas=o(),t.container.appendChild(t.canvas),i(t)}if(!t.gl)try{t.gl=t.canvas.getContext(\"webgl\",t.attrs)}catch(e){try{t.gl=t.canvas.getContext(\"experimental-webgl\",t.attrs)}catch(e){t.gl=t.canvas.getContext(\"webgl-experimental\",t.attrs)}}return t.gl}}).call(this)}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"pick-by-alias\":511}],355:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){e?e.bind():t.bindBuffer(t.ELEMENT_ARRAY_BUFFER,null);var n=0|t.getParameter(t.MAX_VERTEX_ATTRIBS);if(r){if(r.length>n)throw new Error(\"gl-vao: Too many vertex attributes\");for(var i=0;i<r.length;++i){var a=r[i];if(a.buffer){var o=a.buffer,s=a.size||4,l=a.type||t.FLOAT,c=!!a.normalized,u=a.stride||0,f=a.offset||0;o.bind(),t.enableVertexAttribArray(i),t.vertexAttribPointer(i,s,l,c,u,f)}else{if(\"number\"==typeof a)t.vertexAttrib1f(i,a);else if(1===a.length)t.vertexAttrib1f(i,a[0]);else if(2===a.length)t.vertexAttrib2f(i,a[0],a[1]);else if(3===a.length)t.vertexAttrib3f(i,a[0],a[1],a[2]);else{if(4!==a.length)throw new Error(\"gl-vao: Invalid vertex attribute\");t.vertexAttrib4f(i,a[0],a[1],a[2],a[3])}t.disableVertexAttribArray(i)}}for(;i<n;++i)t.disableVertexAttribArray(i)}else{t.bindBuffer(t.ARRAY_BUFFER,null);for(i=0;i<n;++i)t.disableVertexAttribArray(i)}}},{}],356:[function(t,e,r){\"use strict\";var n=t(\"./do-bind.js\");function i(t){this.gl=t,this._elements=null,this._attributes=null,this._elementsType=t.UNSIGNED_SHORT}i.prototype.bind=function(){n(this.gl,this._elements,this._attributes)},i.prototype.update=function(t,e,r){this._elements=e,this._attributes=t,this._elementsType=r||this.gl.UNSIGNED_SHORT},i.prototype.dispose=function(){},i.prototype.unbind=function(){},i.prototype.draw=function(t,e,r){r=r||0;var n=this.gl;this._elements?n.drawElements(t,e,this._elementsType,r):n.drawArrays(t,r,e)},e.exports=function(t){return new i(t)}},{\"./do-bind.js\":355}],357:[function(t,e,r){\"use strict\";var n=t(\"./do-bind.js\");function i(t,e,r,n,i,a){this.location=t,this.dimension=e,this.a=r,this.b=n,this.c=i,this.d=a}function a(t,e,r){this.gl=t,this._ext=e,this.handle=r,this._attribs=[],this._useElements=!1,this._elementsType=t.UNSIGNED_SHORT}i.prototype.bind=function(t){switch(this.dimension){case 1:t.vertexAttrib1f(this.location,this.a);break;case 2:t.vertexAttrib2f(this.location,this.a,this.b);break;case 3:t.vertexAttrib3f(this.location,this.a,this.b,this.c);break;case 4:t.vertexAttrib4f(this.location,this.a,this.b,this.c,this.d)}},a.prototype.bind=function(){this._ext.bindVertexArrayOES(this.handle);for(var t=0;t<this._attribs.length;++t)this._attribs[t].bind(this.gl)},a.prototype.unbind=function(){this._ext.bindVertexArrayOES(null)},a.prototype.dispose=function(){this._ext.deleteVertexArrayOES(this.handle)},a.prototype.update=function(t,e,r){if(this.bind(),n(this.gl,e,t),this.unbind(),this._attribs.length=0,t)for(var a=0;a<t.length;++a){var o=t[a];\"number\"==typeof o?this._attribs.push(new i(a,1,o)):Array.isArray(o)&&this._attribs.push(new i(a,o.length,o[0],o[1],o[2],o[3]))}this._useElements=!!e,this._elementsType=r||this.gl.UNSIGNED_SHORT},a.prototype.draw=function(t,e,r){r=r||0;var n=this.gl;this._useElements?n.drawElements(t,e,this._elementsType,r):n.drawArrays(t,r,e)},e.exports=function(t,e){return new a(t,e,e.createVertexArrayOES())}},{\"./do-bind.js\":355}],358:[function(t,e,r){\"use strict\";var n=t(\"./lib/vao-native.js\"),i=t(\"./lib/vao-emulated.js\");function a(t){this.bindVertexArrayOES=t.bindVertexArray.bind(t),this.createVertexArrayOES=t.createVertexArray.bind(t),this.deleteVertexArrayOES=t.deleteVertexArray.bind(t)}e.exports=function(t,e,r,o){var s,l=t.createVertexArray?new a(t):t.getExtension(\"OES_vertex_array_object\");return(s=l?n(t,l):i(t)).update(e,r,o),s}},{\"./lib/vao-emulated.js\":356,\"./lib/vao-native.js\":357}],359:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t}},{}],360:[function(t,e,r){e.exports=function(t,e){var r=n(t[0],t[1],t[2]),o=n(e[0],e[1],e[2]);i(r,r),i(o,o);var s=a(r,o);return s>1?0:Math.acos(s)};var n=t(\"./fromValues\"),i=t(\"./normalize\"),a=t(\"./dot\")},{\"./dot\":370,\"./fromValues\":376,\"./normalize\":387}],361:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.ceil(e[0]),t[1]=Math.ceil(e[1]),t[2]=Math.ceil(e[2]),t}},{}],362:[function(t,e,r){e.exports=function(t){var e=new Float32Array(3);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e}},{}],363:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}},{}],364:[function(t,e,r){e.exports=function(){var t=new Float32Array(3);return t[0]=0,t[1]=0,t[2]=0,t}},{}],365:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[0],s=r[1],l=r[2];return t[0]=i*l-a*s,t[1]=a*o-n*l,t[2]=n*s-i*o,t}},{}],366:[function(t,e,r){e.exports=t(\"./distance\")},{\"./distance\":367}],367:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2];return Math.sqrt(r*r+n*n+i*i)}},{}],368:[function(t,e,r){e.exports=t(\"./divide\")},{\"./divide\":369}],369:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]/r[0],t[1]=e[1]/r[1],t[2]=e[2]/r[2],t}},{}],370:[function(t,e,r){e.exports=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}},{}],371:[function(t,e,r){e.exports=1e-6},{}],372:[function(t,e,r){e.exports=function(t,e){var r=t[0],i=t[1],a=t[2],o=e[0],s=e[1],l=e[2];return Math.abs(r-o)<=n*Math.max(1,Math.abs(r),Math.abs(o))&&Math.abs(i-s)<=n*Math.max(1,Math.abs(i),Math.abs(s))&&Math.abs(a-l)<=n*Math.max(1,Math.abs(a),Math.abs(l))};var n=t(\"./epsilon\")},{\"./epsilon\":371}],373:[function(t,e,r){e.exports=function(t,e){return t[0]===e[0]&&t[1]===e[1]&&t[2]===e[2]}},{}],374:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.floor(e[0]),t[1]=Math.floor(e[1]),t[2]=Math.floor(e[2]),t}},{}],375:[function(t,e,r){e.exports=function(t,e,r,i,a,o){var s,l;e||(e=3);r||(r=0);l=i?Math.min(i*e+r,t.length):t.length;for(s=r;s<l;s+=e)n[0]=t[s],n[1]=t[s+1],n[2]=t[s+2],a(n,n,o),t[s]=n[0],t[s+1]=n[1],t[s+2]=n[2];return t};var n=t(\"./create\")()},{\"./create\":364}],376:[function(t,e,r){e.exports=function(t,e,r){var n=new Float32Array(3);return n[0]=t,n[1]=e,n[2]=r,n}},{}],377:[function(t,e,r){e.exports={EPSILON:t(\"./epsilon\"),create:t(\"./create\"),clone:t(\"./clone\"),angle:t(\"./angle\"),fromValues:t(\"./fromValues\"),copy:t(\"./copy\"),set:t(\"./set\"),equals:t(\"./equals\"),exactEquals:t(\"./exactEquals\"),add:t(\"./add\"),subtract:t(\"./subtract\"),sub:t(\"./sub\"),multiply:t(\"./multiply\"),mul:t(\"./mul\"),divide:t(\"./divide\"),div:t(\"./div\"),min:t(\"./min\"),max:t(\"./max\"),floor:t(\"./floor\"),ceil:t(\"./ceil\"),round:t(\"./round\"),scale:t(\"./scale\"),scaleAndAdd:t(\"./scaleAndAdd\"),distance:t(\"./distance\"),dist:t(\"./dist\"),squaredDistance:t(\"./squaredDistance\"),sqrDist:t(\"./sqrDist\"),length:t(\"./length\"),len:t(\"./len\"),squaredLength:t(\"./squaredLength\"),sqrLen:t(\"./sqrLen\"),negate:t(\"./negate\"),inverse:t(\"./inverse\"),normalize:t(\"./normalize\"),dot:t(\"./dot\"),cross:t(\"./cross\"),lerp:t(\"./lerp\"),random:t(\"./random\"),transformMat4:t(\"./transformMat4\"),transformMat3:t(\"./transformMat3\"),transformQuat:t(\"./transformQuat\"),rotateX:t(\"./rotateX\"),rotateY:t(\"./rotateY\"),rotateZ:t(\"./rotateZ\"),forEach:t(\"./forEach\")}},{\"./add\":359,\"./angle\":360,\"./ceil\":361,\"./clone\":362,\"./copy\":363,\"./create\":364,\"./cross\":365,\"./dist\":366,\"./distance\":367,\"./div\":368,\"./divide\":369,\"./dot\":370,\"./epsilon\":371,\"./equals\":372,\"./exactEquals\":373,\"./floor\":374,\"./forEach\":375,\"./fromValues\":376,\"./inverse\":378,\"./len\":379,\"./length\":380,\"./lerp\":381,\"./max\":382,\"./min\":383,\"./mul\":384,\"./multiply\":385,\"./negate\":386,\"./normalize\":387,\"./random\":388,\"./rotateX\":389,\"./rotateY\":390,\"./rotateZ\":391,\"./round\":392,\"./scale\":393,\"./scaleAndAdd\":394,\"./set\":395,\"./sqrDist\":396,\"./sqrLen\":397,\"./squaredDistance\":398,\"./squaredLength\":399,\"./sub\":400,\"./subtract\":401,\"./transformMat3\":402,\"./transformMat4\":403,\"./transformQuat\":404}],378:[function(t,e,r){e.exports=function(t,e){return t[0]=1/e[0],t[1]=1/e[1],t[2]=1/e[2],t}},{}],379:[function(t,e,r){e.exports=t(\"./length\")},{\"./length\":380}],380:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2];return Math.sqrt(e*e+r*r+n*n)}},{}],381:[function(t,e,r){e.exports=function(t,e,r,n){var i=e[0],a=e[1],o=e[2];return t[0]=i+n*(r[0]-i),t[1]=a+n*(r[1]-a),t[2]=o+n*(r[2]-o),t}},{}],382:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.max(e[0],r[0]),t[1]=Math.max(e[1],r[1]),t[2]=Math.max(e[2],r[2]),t}},{}],383:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.min(e[0],r[0]),t[1]=Math.min(e[1],r[1]),t[2]=Math.min(e[2],r[2]),t}},{}],384:[function(t,e,r){e.exports=t(\"./multiply\")},{\"./multiply\":385}],385:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r[0],t[1]=e[1]*r[1],t[2]=e[2]*r[2],t}},{}],386:[function(t,e,r){e.exports=function(t,e){return t[0]=-e[0],t[1]=-e[1],t[2]=-e[2],t}},{}],387:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],i=e[2],a=r*r+n*n+i*i;a>0&&(a=1/Math.sqrt(a),t[0]=e[0]*a,t[1]=e[1]*a,t[2]=e[2]*a);return t}},{}],388:[function(t,e,r){e.exports=function(t,e){e=e||1;var r=2*Math.random()*Math.PI,n=2*Math.random()-1,i=Math.sqrt(1-n*n)*e;return t[0]=Math.cos(r)*i,t[1]=Math.sin(r)*i,t[2]=n*e,t}},{}],389:[function(t,e,r){e.exports=function(t,e,r,n){var i=r[1],a=r[2],o=e[1]-i,s=e[2]-a,l=Math.sin(n),c=Math.cos(n);return t[0]=e[0],t[1]=i+o*c-s*l,t[2]=a+o*l+s*c,t}},{}],390:[function(t,e,r){e.exports=function(t,e,r,n){var i=r[0],a=r[2],o=e[0]-i,s=e[2]-a,l=Math.sin(n),c=Math.cos(n);return t[0]=i+s*l+o*c,t[1]=e[1],t[2]=a+s*c-o*l,t}},{}],391:[function(t,e,r){e.exports=function(t,e,r,n){var i=r[0],a=r[1],o=e[0]-i,s=e[1]-a,l=Math.sin(n),c=Math.cos(n);return t[0]=i+o*c-s*l,t[1]=a+o*l+s*c,t[2]=e[2],t}},{}],392:[function(t,e,r){e.exports=function(t,e){return t[0]=Math.round(e[0]),t[1]=Math.round(e[1]),t[2]=Math.round(e[2]),t}},{}],393:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t}},{}],394:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e[0]+r[0]*n,t[1]=e[1]+r[1]*n,t[2]=e[2]+r[2]*n,t}},{}],395:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e,t[1]=r,t[2]=n,t}},{}],396:[function(t,e,r){e.exports=t(\"./squaredDistance\")},{\"./squaredDistance\":398}],397:[function(t,e,r){e.exports=t(\"./squaredLength\")},{\"./squaredLength\":399}],398:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2];return r*r+n*n+i*i}},{}],399:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2];return e*e+r*r+n*n}},{}],400:[function(t,e,r){e.exports=t(\"./subtract\")},{\"./subtract\":401}],401:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t}},{}],402:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2];return t[0]=n*r[0]+i*r[3]+a*r[6],t[1]=n*r[1]+i*r[4]+a*r[7],t[2]=n*r[2]+i*r[5]+a*r[8],t}},{}],403:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[3]*n+r[7]*i+r[11]*a+r[15];return o=o||1,t[0]=(r[0]*n+r[4]*i+r[8]*a+r[12])/o,t[1]=(r[1]*n+r[5]*i+r[9]*a+r[13])/o,t[2]=(r[2]*n+r[6]*i+r[10]*a+r[14])/o,t}},{}],404:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[0],s=r[1],l=r[2],c=r[3],u=c*n+s*a-l*i,f=c*i+l*n-o*a,h=c*a+o*i-s*n,p=-o*n-s*i-l*a;return t[0]=u*c+p*-o+f*-l-h*-s,t[1]=f*c+p*-s+h*-o-u*-l,t[2]=h*c+p*-l+u*-s-f*-o,t}},{}],405:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t[3]=e[3]+r[3],t}},{}],406:[function(t,e,r){e.exports=function(t){var e=new Float32Array(4);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e}},{}],407:[function(t,e,r){e.exports=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}},{}],408:[function(t,e,r){e.exports=function(){var t=new Float32Array(4);return t[0]=0,t[1]=0,t[2]=0,t[3]=0,t}},{}],409:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2],a=e[3]-t[3];return Math.sqrt(r*r+n*n+i*i+a*a)}},{}],410:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]/r[0],t[1]=e[1]/r[1],t[2]=e[2]/r[2],t[3]=e[3]/r[3],t}},{}],411:[function(t,e,r){e.exports=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]+t[3]*e[3]}},{}],412:[function(t,e,r){e.exports=function(t,e,r,n){var i=new Float32Array(4);return i[0]=t,i[1]=e,i[2]=r,i[3]=n,i}},{}],413:[function(t,e,r){e.exports={create:t(\"./create\"),clone:t(\"./clone\"),fromValues:t(\"./fromValues\"),copy:t(\"./copy\"),set:t(\"./set\"),add:t(\"./add\"),subtract:t(\"./subtract\"),multiply:t(\"./multiply\"),divide:t(\"./divide\"),min:t(\"./min\"),max:t(\"./max\"),scale:t(\"./scale\"),scaleAndAdd:t(\"./scaleAndAdd\"),distance:t(\"./distance\"),squaredDistance:t(\"./squaredDistance\"),length:t(\"./length\"),squaredLength:t(\"./squaredLength\"),negate:t(\"./negate\"),inverse:t(\"./inverse\"),normalize:t(\"./normalize\"),dot:t(\"./dot\"),lerp:t(\"./lerp\"),random:t(\"./random\"),transformMat4:t(\"./transformMat4\"),transformQuat:t(\"./transformQuat\")}},{\"./add\":405,\"./clone\":406,\"./copy\":407,\"./create\":408,\"./distance\":409,\"./divide\":410,\"./dot\":411,\"./fromValues\":412,\"./inverse\":414,\"./length\":415,\"./lerp\":416,\"./max\":417,\"./min\":418,\"./multiply\":419,\"./negate\":420,\"./normalize\":421,\"./random\":422,\"./scale\":423,\"./scaleAndAdd\":424,\"./set\":425,\"./squaredDistance\":426,\"./squaredLength\":427,\"./subtract\":428,\"./transformMat4\":429,\"./transformQuat\":430}],414:[function(t,e,r){e.exports=function(t,e){return t[0]=1/e[0],t[1]=1/e[1],t[2]=1/e[2],t[3]=1/e[3],t}},{}],415:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],i=t[3];return Math.sqrt(e*e+r*r+n*n+i*i)}},{}],416:[function(t,e,r){e.exports=function(t,e,r,n){var i=e[0],a=e[1],o=e[2],s=e[3];return t[0]=i+n*(r[0]-i),t[1]=a+n*(r[1]-a),t[2]=o+n*(r[2]-o),t[3]=s+n*(r[3]-s),t}},{}],417:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.max(e[0],r[0]),t[1]=Math.max(e[1],r[1]),t[2]=Math.max(e[2],r[2]),t[3]=Math.max(e[3],r[3]),t}},{}],418:[function(t,e,r){e.exports=function(t,e,r){return t[0]=Math.min(e[0],r[0]),t[1]=Math.min(e[1],r[1]),t[2]=Math.min(e[2],r[2]),t[3]=Math.min(e[3],r[3]),t}},{}],419:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r[0],t[1]=e[1]*r[1],t[2]=e[2]*r[2],t[3]=e[3]*r[3],t}},{}],420:[function(t,e,r){e.exports=function(t,e){return t[0]=-e[0],t[1]=-e[1],t[2]=-e[2],t[3]=-e[3],t}},{}],421:[function(t,e,r){e.exports=function(t,e){var r=e[0],n=e[1],i=e[2],a=e[3],o=r*r+n*n+i*i+a*a;o>0&&(o=1/Math.sqrt(o),t[0]=r*o,t[1]=n*o,t[2]=i*o,t[3]=a*o);return t}},{}],422:[function(t,e,r){var n=t(\"./normalize\"),i=t(\"./scale\");e.exports=function(t,e){return e=e||1,t[0]=Math.random(),t[1]=Math.random(),t[2]=Math.random(),t[3]=Math.random(),n(t,t),i(t,t,e),t}},{\"./normalize\":421,\"./scale\":423}],423:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t[3]=e[3]*r,t}},{}],424:[function(t,e,r){e.exports=function(t,e,r,n){return t[0]=e[0]+r[0]*n,t[1]=e[1]+r[1]*n,t[2]=e[2]+r[2]*n,t[3]=e[3]+r[3]*n,t}},{}],425:[function(t,e,r){e.exports=function(t,e,r,n,i){return t[0]=e,t[1]=r,t[2]=n,t[3]=i,t}},{}],426:[function(t,e,r){e.exports=function(t,e){var r=e[0]-t[0],n=e[1]-t[1],i=e[2]-t[2],a=e[3]-t[3];return r*r+n*n+i*i+a*a}},{}],427:[function(t,e,r){e.exports=function(t){var e=t[0],r=t[1],n=t[2],i=t[3];return e*e+r*r+n*n+i*i}},{}],428:[function(t,e,r){e.exports=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t[3]=e[3]-r[3],t}},{}],429:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=e[3];return t[0]=r[0]*n+r[4]*i+r[8]*a+r[12]*o,t[1]=r[1]*n+r[5]*i+r[9]*a+r[13]*o,t[2]=r[2]*n+r[6]*i+r[10]*a+r[14]*o,t[3]=r[3]*n+r[7]*i+r[11]*a+r[15]*o,t}},{}],430:[function(t,e,r){e.exports=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[0],s=r[1],l=r[2],c=r[3],u=c*n+s*a-l*i,f=c*i+l*n-o*a,h=c*a+o*i-s*n,p=-o*n-s*i-l*a;return t[0]=u*c+p*-o+f*-l-h*-s,t[1]=f*c+p*-s+h*-o-u*-l,t[2]=h*c+p*-l+u*-s-f*-o,t[3]=e[3],t}},{}],431:[function(t,e,r){var n=t(\"glsl-tokenizer\"),i=t(\"atob-lite\");e.exports=function(t){for(var e=Array.isArray(t)?t:n(t),r=0;r<e.length;r++){var a=e[r];if(\"preprocessor\"===a.type){var o=a.data.match(/\\#define\\s+SHADER_NAME(_B64)?\\s+(.+)$/);if(o&&o[2]){var s=o[1],l=o[2];return(s?i(l):l).trim()}}}}},{\"atob-lite\":77,\"glsl-tokenizer\":438}],432:[function(t,e,r){e.exports=function(t){var e,r,c,u=0,f=0,h=999,p=[],d=[],g=1,m=0,v=0,y=!1,x=!1,b=\"\",_=a,w=n;\"300 es\"===(t=t||{}).version&&(_=s,w=o);var T={},k={};for(u=0;u<_.length;u++)T[_[u]]=!0;for(u=0;u<w.length;u++)k[w[u]]=!0;return function(t){return d=[],null!==t?function(t){u=0,t.toString&&(t=t.toString());var r;b+=t.replace(/\\r\\n/g,\"\\n\"),c=b.length;for(;e=b[u],u<c;){switch(r=u,h){case 0:u=C();break;case 1:case 2:u=E();break;case 3:u=L();break;case 4:u=z();break;case 11:u=P();break;case 5:u=O();break;case 9999:u=D();break;case 9:u=S();break;case 999:u=A()}if(r!==u)switch(b[r]){case\"\\n\":m=0,++g;break;default:++m}}return f+=u,b=b.slice(u),d}(t):function(t){p.length&&M(p.join(\"\"));return h=10,M(\"(eof)\"),d}()};function M(t){t.length&&d.push({type:l[h],data:t,position:v,line:g,column:m})}function A(){return p=p.length?[]:p,\"/\"===r&&\"*\"===e?(v=f+u-1,h=0,r=e,u+1):\"/\"===r&&\"/\"===e?(v=f+u-1,h=1,r=e,u+1):\"#\"===e?(h=2,v=f+u,u):/\\s/.test(e)?(h=9,v=f+u,u):(y=/\\d/.test(e),x=/[^\\w_]/.test(e),v=f+u,h=y?4:x?3:9999,u)}function S(){return/[^\\s]/g.test(e)?(M(p.join(\"\")),h=999,u):(p.push(e),r=e,u+1)}function E(){return\"\\r\"!==e&&\"\\n\"!==e||\"\\\\\"===r?(p.push(e),r=e,u+1):(M(p.join(\"\")),h=999,u)}function C(){return\"/\"===e&&\"*\"===r?(p.push(e),M(p.join(\"\")),h=999,u+1):(p.push(e),r=e,u+1)}function L(){if(\".\"===r&&/\\d/.test(e))return h=5,u;if(\"/\"===r&&\"*\"===e)return h=0,u;if(\"/\"===r&&\"/\"===e)return h=1,u;if(\".\"===e&&p.length){for(;I(p););return h=5,u}if(\";\"===e||\")\"===e||\"(\"===e){if(p.length)for(;I(p););return M(e),h=999,u+1}var t=2===p.length&&\"=\"!==e;if(/[\\w_\\d\\s]/.test(e)||t){for(;I(p););return h=999,u}return p.push(e),r=e,u+1}function I(t){for(var e,r,n=0;;){if(e=i.indexOf(t.slice(0,t.length+n).join(\"\")),r=i[e],-1===e){if(n--+t.length>0)continue;r=t.slice(0,1).join(\"\")}return M(r),v+=r.length,(p=p.slice(r.length)).length}}function P(){return/[^a-fA-F0-9]/.test(e)?(M(p.join(\"\")),h=999,u):(p.push(e),r=e,u+1)}function z(){return\".\"===e||/[eE]/.test(e)?(p.push(e),h=5,r=e,u+1):\"x\"===e&&1===p.length&&\"0\"===p[0]?(h=11,p.push(e),r=e,u+1):/[^\\d]/.test(e)?(M(p.join(\"\")),h=999,u):(p.push(e),r=e,u+1)}function O(){return\"f\"===e&&(p.push(e),r=e,u+=1),/[eE]/.test(e)?(p.push(e),r=e,u+1):(\"-\"!==e&&\"+\"!==e||!/[eE]/.test(r))&&/[^\\d]/.test(e)?(M(p.join(\"\")),h=999,u):(p.push(e),r=e,u+1)}function D(){if(/[^\\d\\w_]/.test(e)){var t=p.join(\"\");return h=k[t]?8:T[t]?7:6,M(p.join(\"\")),h=999,u}return p.push(e),r=e,u+1}};var n=t(\"./lib/literals\"),i=t(\"./lib/operators\"),a=t(\"./lib/builtins\"),o=t(\"./lib/literals-300es\"),s=t(\"./lib/builtins-300es\"),l=[\"block-comment\",\"line-comment\",\"preprocessor\",\"operator\",\"integer\",\"float\",\"ident\",\"builtin\",\"keyword\",\"whitespace\",\"eof\",\"integer\"]},{\"./lib/builtins\":434,\"./lib/builtins-300es\":433,\"./lib/literals\":436,\"./lib/literals-300es\":435,\"./lib/operators\":437}],433:[function(t,e,r){var n=t(\"./builtins\");n=n.slice().filter((function(t){return!/^(gl\\_|texture)/.test(t)})),e.exports=n.concat([\"gl_VertexID\",\"gl_InstanceID\",\"gl_Position\",\"gl_PointSize\",\"gl_FragCoord\",\"gl_FrontFacing\",\"gl_FragDepth\",\"gl_PointCoord\",\"gl_MaxVertexAttribs\",\"gl_MaxVertexUniformVectors\",\"gl_MaxVertexOutputVectors\",\"gl_MaxFragmentInputVectors\",\"gl_MaxVertexTextureImageUnits\",\"gl_MaxCombinedTextureImageUnits\",\"gl_MaxTextureImageUnits\",\"gl_MaxFragmentUniformVectors\",\"gl_MaxDrawBuffers\",\"gl_MinProgramTexelOffset\",\"gl_MaxProgramTexelOffset\",\"gl_DepthRangeParameters\",\"gl_DepthRange\",\"trunc\",\"round\",\"roundEven\",\"isnan\",\"isinf\",\"floatBitsToInt\",\"floatBitsToUint\",\"intBitsToFloat\",\"uintBitsToFloat\",\"packSnorm2x16\",\"unpackSnorm2x16\",\"packUnorm2x16\",\"unpackUnorm2x16\",\"packHalf2x16\",\"unpackHalf2x16\",\"outerProduct\",\"transpose\",\"determinant\",\"inverse\",\"texture\",\"textureSize\",\"textureProj\",\"textureLod\",\"textureOffset\",\"texelFetch\",\"texelFetchOffset\",\"textureProjOffset\",\"textureLodOffset\",\"textureProjLod\",\"textureProjLodOffset\",\"textureGrad\",\"textureGradOffset\",\"textureProjGrad\",\"textureProjGradOffset\"])},{\"./builtins\":434}],434:[function(t,e,r){e.exports=[\"abs\",\"acos\",\"all\",\"any\",\"asin\",\"atan\",\"ceil\",\"clamp\",\"cos\",\"cross\",\"dFdx\",\"dFdy\",\"degrees\",\"distance\",\"dot\",\"equal\",\"exp\",\"exp2\",\"faceforward\",\"floor\",\"fract\",\"gl_BackColor\",\"gl_BackLightModelProduct\",\"gl_BackLightProduct\",\"gl_BackMaterial\",\"gl_BackSecondaryColor\",\"gl_ClipPlane\",\"gl_ClipVertex\",\"gl_Color\",\"gl_DepthRange\",\"gl_DepthRangeParameters\",\"gl_EyePlaneQ\",\"gl_EyePlaneR\",\"gl_EyePlaneS\",\"gl_EyePlaneT\",\"gl_Fog\",\"gl_FogCoord\",\"gl_FogFragCoord\",\"gl_FogParameters\",\"gl_FragColor\",\"gl_FragCoord\",\"gl_FragData\",\"gl_FragDepth\",\"gl_FragDepthEXT\",\"gl_FrontColor\",\"gl_FrontFacing\",\"gl_FrontLightModelProduct\",\"gl_FrontLightProduct\",\"gl_FrontMaterial\",\"gl_FrontSecondaryColor\",\"gl_LightModel\",\"gl_LightModelParameters\",\"gl_LightModelProducts\",\"gl_LightProducts\",\"gl_LightSource\",\"gl_LightSourceParameters\",\"gl_MaterialParameters\",\"gl_MaxClipPlanes\",\"gl_MaxCombinedTextureImageUnits\",\"gl_MaxDrawBuffers\",\"gl_MaxFragmentUniformComponents\",\"gl_MaxLights\",\"gl_MaxTextureCoords\",\"gl_MaxTextureImageUnits\",\"gl_MaxTextureUnits\",\"gl_MaxVaryingFloats\",\"gl_MaxVertexAttribs\",\"gl_MaxVertexTextureImageUnits\",\"gl_MaxVertexUniformComponents\",\"gl_ModelViewMatrix\",\"gl_ModelViewMatrixInverse\",\"gl_ModelViewMatrixInverseTranspose\",\"gl_ModelViewMatrixTranspose\",\"gl_ModelViewProjectionMatrix\",\"gl_ModelViewProjectionMatrixInverse\",\"gl_ModelViewProjectionMatrixInverseTranspose\",\"gl_ModelViewProjectionMatrixTranspose\",\"gl_MultiTexCoord0\",\"gl_MultiTexCoord1\",\"gl_MultiTexCoord2\",\"gl_MultiTexCoord3\",\"gl_MultiTexCoord4\",\"gl_MultiTexCoord5\",\"gl_MultiTexCoord6\",\"gl_MultiTexCoord7\",\"gl_Normal\",\"gl_NormalMatrix\",\"gl_NormalScale\",\"gl_ObjectPlaneQ\",\"gl_ObjectPlaneR\",\"gl_ObjectPlaneS\",\"gl_ObjectPlaneT\",\"gl_Point\",\"gl_PointCoord\",\"gl_PointParameters\",\"gl_PointSize\",\"gl_Position\",\"gl_ProjectionMatrix\",\"gl_ProjectionMatrixInverse\",\"gl_ProjectionMatrixInverseTranspose\",\"gl_ProjectionMatrixTranspose\",\"gl_SecondaryColor\",\"gl_TexCoord\",\"gl_TextureEnvColor\",\"gl_TextureMatrix\",\"gl_TextureMatrixInverse\",\"gl_TextureMatrixInverseTranspose\",\"gl_TextureMatrixTranspose\",\"gl_Vertex\",\"greaterThan\",\"greaterThanEqual\",\"inversesqrt\",\"length\",\"lessThan\",\"lessThanEqual\",\"log\",\"log2\",\"matrixCompMult\",\"max\",\"min\",\"mix\",\"mod\",\"normalize\",\"not\",\"notEqual\",\"pow\",\"radians\",\"reflect\",\"refract\",\"sign\",\"sin\",\"smoothstep\",\"sqrt\",\"step\",\"tan\",\"texture2D\",\"texture2DLod\",\"texture2DProj\",\"texture2DProjLod\",\"textureCube\",\"textureCubeLod\",\"texture2DLodEXT\",\"texture2DProjLodEXT\",\"textureCubeLodEXT\",\"texture2DGradEXT\",\"texture2DProjGradEXT\",\"textureCubeGradEXT\"]},{}],435:[function(t,e,r){var n=t(\"./literals\");e.exports=n.slice().concat([\"layout\",\"centroid\",\"smooth\",\"case\",\"mat2x2\",\"mat2x3\",\"mat2x4\",\"mat3x2\",\"mat3x3\",\"mat3x4\",\"mat4x2\",\"mat4x3\",\"mat4x4\",\"uvec2\",\"uvec3\",\"uvec4\",\"samplerCubeShadow\",\"sampler2DArray\",\"sampler2DArrayShadow\",\"isampler2D\",\"isampler3D\",\"isamplerCube\",\"isampler2DArray\",\"usampler2D\",\"usampler3D\",\"usamplerCube\",\"usampler2DArray\",\"coherent\",\"restrict\",\"readonly\",\"writeonly\",\"resource\",\"atomic_uint\",\"noperspective\",\"patch\",\"sample\",\"subroutine\",\"common\",\"partition\",\"active\",\"filter\",\"image1D\",\"image2D\",\"image3D\",\"imageCube\",\"iimage1D\",\"iimage2D\",\"iimage3D\",\"iimageCube\",\"uimage1D\",\"uimage2D\",\"uimage3D\",\"uimageCube\",\"image1DArray\",\"image2DArray\",\"iimage1DArray\",\"iimage2DArray\",\"uimage1DArray\",\"uimage2DArray\",\"image1DShadow\",\"image2DShadow\",\"image1DArrayShadow\",\"image2DArrayShadow\",\"imageBuffer\",\"iimageBuffer\",\"uimageBuffer\",\"sampler1DArray\",\"sampler1DArrayShadow\",\"isampler1D\",\"isampler1DArray\",\"usampler1D\",\"usampler1DArray\",\"isampler2DRect\",\"usampler2DRect\",\"samplerBuffer\",\"isamplerBuffer\",\"usamplerBuffer\",\"sampler2DMS\",\"isampler2DMS\",\"usampler2DMS\",\"sampler2DMSArray\",\"isampler2DMSArray\",\"usampler2DMSArray\"])},{\"./literals\":436}],436:[function(t,e,r){e.exports=[\"precision\",\"highp\",\"mediump\",\"lowp\",\"attribute\",\"const\",\"uniform\",\"varying\",\"break\",\"continue\",\"do\",\"for\",\"while\",\"if\",\"else\",\"in\",\"out\",\"inout\",\"float\",\"int\",\"uint\",\"void\",\"bool\",\"true\",\"false\",\"discard\",\"return\",\"mat2\",\"mat3\",\"mat4\",\"vec2\",\"vec3\",\"vec4\",\"ivec2\",\"ivec3\",\"ivec4\",\"bvec2\",\"bvec3\",\"bvec4\",\"sampler1D\",\"sampler2D\",\"sampler3D\",\"samplerCube\",\"sampler1DShadow\",\"sampler2DShadow\",\"struct\",\"asm\",\"class\",\"union\",\"enum\",\"typedef\",\"template\",\"this\",\"packed\",\"goto\",\"switch\",\"default\",\"inline\",\"noinline\",\"volatile\",\"public\",\"static\",\"extern\",\"external\",\"interface\",\"long\",\"short\",\"double\",\"half\",\"fixed\",\"unsigned\",\"input\",\"output\",\"hvec2\",\"hvec3\",\"hvec4\",\"dvec2\",\"dvec3\",\"dvec4\",\"fvec2\",\"fvec3\",\"fvec4\",\"sampler2DRect\",\"sampler3DRect\",\"sampler2DRectShadow\",\"sizeof\",\"cast\",\"namespace\",\"using\"]},{}],437:[function(t,e,r){e.exports=[\"<<=\",\">>=\",\"++\",\"--\",\"<<\",\">>\",\"<=\",\">=\",\"==\",\"!=\",\"&&\",\"||\",\"+=\",\"-=\",\"*=\",\"/=\",\"%=\",\"&=\",\"^^\",\"^=\",\"|=\",\"(\",\")\",\"[\",\"]\",\".\",\"!\",\"~\",\"*\",\"/\",\"%\",\"+\",\"-\",\"<\",\">\",\"&\",\"^\",\"|\",\"?\",\":\",\"=\",\",\",\";\",\"{\",\"}\"]},{}],438:[function(t,e,r){var n=t(\"./index\");e.exports=function(t,e){var r=n(e),i=[];return i=(i=i.concat(r(t))).concat(r(null))}},{\"./index\":432}],439:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],440:[function(t,e,r){(function(r){(function(){\"use strict\";var n,i=t(\"is-browser\");n=\"function\"==typeof r.matchMedia?!r.matchMedia(\"(hover: none)\").matches:i,e.exports=n}).call(this)}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"is-browser\":464}],441:[function(t,e,r){\"use strict\";var n=t(\"is-browser\");e.exports=n&&function(){var t=!1;try{var e=Object.defineProperty({},\"passive\",{get:function(){t=!0}});window.addEventListener(\"test\",null,e),window.removeEventListener(\"test\",null,e)}catch(e){t=!1}return t}()},{\"is-browser\":464}],442:[function(t,e,r){r.read=function(t,e,r,n,i){var a,o,s=8*i-n-1,l=(1<<s)-1,c=l>>1,u=-7,f=r?i-1:0,h=r?-1:1,p=t[e+f];for(f+=h,a=p&(1<<-u)-1,p>>=-u,u+=s;u>0;a=256*a+t[e+f],f+=h,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=n;u>0;o=256*o+t[e+f],f+=h,u-=8);if(0===a)a=1-c;else{if(a===l)return o?NaN:1/0*(p?-1:1);o+=Math.pow(2,n),a-=c}return(p?-1:1)*o*Math.pow(2,a-n)},r.write=function(t,e,r,n,i,a){var o,s,l,c=8*a-i-1,u=(1<<c)-1,f=u>>1,h=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:a-1,d=n?1:-1,g=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=u):(o=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-o))<1&&(o--,l*=2),(e+=o+f>=1?h/l:h*Math.pow(2,1-f))*l>=2&&(o++,l/=2),o+f>=u?(s=0,o=u):o+f>=1?(s=(e*l-1)*Math.pow(2,i),o+=f):(s=e*Math.pow(2,f-1)*Math.pow(2,i),o=0));i>=8;t[r+p]=255&s,p+=d,s/=256,i-=8);for(o=o<<i|s,c+=i;c>0;t[r+p]=255&o,p+=d,o/=256,c-=8);t[r+p-d]|=128*g}},{}],443:[function(t,e,r){\"use strict\";var n=t(\"./types\");e.exports=function(t,e){var r;for(r in n)if(n[r].detect(t,e))return r}},{\"./types\":446}],444:[function(t,e,r){(function(r){(function(){\"use strict\";var n=t(\"fs\"),i=t(\"path\"),a=t(\"./types\"),o=t(\"./detector\");function s(t,e){var r=o(t,e);if(r in a){var n=a[r].calculate(t,e);if(!1!==n)return n.type=r,n}throw new TypeError(\"unsupported file type: \"+r+\" (file: \"+e+\")\")}e.exports=function(t,e){if(r.isBuffer(t))return s(t);if(\"string\"!=typeof t)throw new TypeError(\"invalid invocation\");var a=i.resolve(t);if(\"function\"!=typeof e)return s(function(t){var e=n.openSync(t,\"r\"),i=n.fstatSync(e).size,a=Math.min(i,524288),o=r.alloc(a);return n.readSync(e,o,0,a,0),n.closeSync(e),o}(a),a);!function(t,e){n.open(t,\"r\",(function(i,a){if(i)return e(i);n.fstat(a,(function(i,o){if(i)return e(i);var s=o.size;if(s<=0)return e(new Error(\"File size is not greater than 0 \\u2014\\u2014 \"+t));var l=Math.min(s,524288),c=r.alloc(l);n.read(a,c,0,l,0,(function(t){if(t)return e(t);n.close(a,(function(t){e(t,c)}))}))}))}))}(a,(function(t,r){if(t)return e(t);var n;try{n=s(r,a)}catch(e){t=e}e(t,n)}))},e.exports.types=Object.keys(a)}).call(this)}).call(this,t(\"buffer\").Buffer)},{\"./detector\":443,\"./types\":446,buffer:111,fs:109,path:507}],445:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){return r=r||0,t[\"readUInt\"+e+(n?\"BE\":\"LE\")].call(t,r)}},{}],446:[function(t,e,r){\"use strict\";var n={bmp:t(\"./types/bmp\"),cur:t(\"./types/cur\"),dds:t(\"./types/dds\"),gif:t(\"./types/gif\"),icns:t(\"./types/icns\"),ico:t(\"./types/ico\"),jpg:t(\"./types/jpg\"),png:t(\"./types/png\"),psd:t(\"./types/psd\"),svg:t(\"./types/svg\"),tiff:t(\"./types/tiff\"),webp:t(\"./types/webp\")};e.exports=n},{\"./types/bmp\":447,\"./types/cur\":448,\"./types/dds\":449,\"./types/gif\":450,\"./types/icns\":451,\"./types/ico\":452,\"./types/jpg\":453,\"./types/png\":454,\"./types/psd\":455,\"./types/svg\":456,\"./types/tiff\":457,\"./types/webp\":458}],447:[function(t,e,r){\"use strict\";e.exports={detect:function(t){return\"BM\"===t.toString(\"ascii\",0,2)},calculate:function(t){return{width:t.readUInt32LE(18),height:Math.abs(t.readInt32LE(22))}}}},{}],448:[function(t,e,r){\"use strict\";e.exports={detect:function(t){return 0===t.readUInt16LE(0)&&2===t.readUInt16LE(2)},calculate:t(\"./ico\").calculate}},{\"./ico\":452}],449:[function(t,e,r){\"use strict\";e.exports={detect:function(t){return 542327876===t.readUInt32LE(0)},calculate:function(t){return{height:t.readUInt32LE(12),width:t.readUInt32LE(16)}}}},{}],450:[function(t,e,r){\"use strict\";var n=/^GIF8[79]a/;e.exports={detect:function(t){var e=t.toString(\"ascii\",0,6);return n.test(e)},calculate:function(t){return{width:t.readUInt16LE(6),height:t.readUInt16LE(8)}}}},{}],451:[function(t,e,r){\"use strict\";var n={ICON:32,\"ICN#\":32,\"icm#\":16,icm4:16,icm8:16,\"ics#\":16,ics4:16,ics8:16,is32:16,s8mk:16,icp4:16,icl4:32,icl8:32,il32:32,l8mk:32,icp5:32,ic11:32,ich4:48,ich8:48,ih32:48,h8mk:48,icp6:64,ic12:32,it32:128,t8mk:128,ic07:128,ic08:256,ic13:256,ic09:512,ic14:512,ic10:1024};function i(t,e){var r=e+4;return[t.toString(\"ascii\",e,r),t.readUInt32BE(r)]}function a(t){var e=n[t];return{width:e,height:e,type:t}}e.exports={detect:function(t){return\"icns\"===t.toString(\"ascii\",0,4)},calculate:function(t){var e,r,n,o=t.length,s=8,l=t.readUInt32BE(4);if(r=a((e=i(t,s))[0]),(s+=e[1])===l)return r;for(n={width:r.width,height:r.height,images:[r]};s<l&&s<o;)r=a((e=i(t,s))[0]),s+=e[1],n.images.push(r);return n}}},{}],452:[function(t,e,r){\"use strict\";function n(t,e){var r=t.readUInt8(e);return 0===r?256:r}function i(t,e){var r=6+16*e;return{width:n(t,r),height:n(t,r+1)}}e.exports={detect:function(t){return 0===t.readUInt16LE(0)&&1===t.readUInt16LE(2)},calculate:function(t){var e,r=t.readUInt16LE(4),n=i(t,0);if(1===r)return n;for(n.images=[{width:n.width,height:n.height}],e=1;e<r;e+=1)n.images.push(i(t,e));return n}}},{}],453:[function(t,e,r){\"use strict\";var n=t(\"../readUInt\");function i(t){return\"45786966\"===t.toString(\"hex\",2,6)}function a(t,e){return{height:t.readUInt16BE(e),width:t.readUInt16BE(e+2)}}function o(t,e){var r=t.slice(2,e),i=r.toString(\"hex\",6,8),a=\"4d4d\"===i;if(a||\"4949\"===i)return function(t,e){for(var r,i,a=n(t,16,14,e),o=0;o<a;o++){if(i=(r=16+12*o)+12,r>t.length)return;var s=t.slice(r,i);if(274===n(s,16,0,e)){if(3!==n(s,16,2,e))return;if(1!==n(s,32,4,e))return;return n(s,16,8,e)}}}(r,a)}function s(t,e){if(e>t.length)throw new TypeError(\"Corrupt JPG, exceeded buffer limits\");if(255!==t[e])throw new TypeError(\"Invalid JPG, marker table corrupted\")}e.exports={detect:function(t){return\"ffd8\"===t.toString(\"hex\",0,2)},calculate:function(t){var e,r,n;for(t=t.slice(4);t.length;){if(r=t.readUInt16BE(0),i(t)&&(e=o(t,r)),s(t,r),192===(n=t[r+1])||193===n||194===n){var l=a(t,r+5);return e?{width:l.width,height:l.height,orientation:e}:l}t=t.slice(r+2)}throw new TypeError(\"Invalid JPG, no size found\")}}},{\"../readUInt\":445}],454:[function(t,e,r){\"use strict\";e.exports={detect:function(t){if(\"PNG\\r\\n\\x1a\\n\"===t.toString(\"ascii\",1,8)){var e=t.toString(\"ascii\",12,16);if(\"CgBI\"===e&&(e=t.toString(\"ascii\",28,32)),\"IHDR\"!==e)throw new TypeError(\"invalid png\");return!0}},calculate:function(t){return\"CgBI\"===t.toString(\"ascii\",12,16)?{width:t.readUInt32BE(32),height:t.readUInt32BE(36)}:{width:t.readUInt32BE(16),height:t.readUInt32BE(20)}}}},{}],455:[function(t,e,r){\"use strict\";e.exports={detect:function(t){return\"8BPS\"===t.toString(\"ascii\",0,4)},calculate:function(t){return{width:t.readUInt32BE(18),height:t.readUInt32BE(14)}}}},{}],456:[function(t,e,r){\"use strict\";var n=/<svg\\s([^>\"']|\"[^\"]*\"|'[^']*')*>/;var i={root:n,width:/\\swidth=(['\"])([^%]+?)\\1/,height:/\\sheight=(['\"])([^%]+?)\\1/,viewbox:/\\sviewBox=(['\"])(.+?)\\1/},a={cm:96/2.54,mm:96/2.54/10,m:96/2.54*100,pt:96/72,pc:96/72/12,em:16,ex:8};function o(t){var e=/([0-9.]+)([a-z]*)/.exec(t);if(e)return Math.round(parseFloat(e[1])*(a[e[2]]||1))}function s(t){var e=t.split(\" \");return{width:o(e[2]),height:o(e[3])}}e.exports={detect:function(t){return n.test(t)},calculate:function(t){var e=t.toString(\"utf8\").match(i.root);if(e){var r=function(t){var e=t.match(i.width),r=t.match(i.height),n=t.match(i.viewbox);return{width:e&&o(e[2]),height:r&&o(r[2]),viewbox:n&&s(n[2])}}(e[0]);if(r.width&&r.height)return function(t){return{width:t.width,height:t.height}}(r);if(r.viewbox)return function(t){var e=t.viewbox.width/t.viewbox.height;return t.width?{width:t.width,height:Math.floor(t.width/e)}:t.height?{width:Math.floor(t.height*e),height:t.height}:{width:t.viewbox.width,height:t.viewbox.height}}(r)}throw new TypeError(\"invalid svg\")}}},{}],457:[function(t,e,r){(function(r){(function(){\"use strict\";var n=t(\"fs\"),i=t(\"../readUInt\");function a(t,e){var r=i(t,16,8,e);return(i(t,16,10,e)<<16)+r}function o(t){if(t.length>24)return t.slice(12)}e.exports={detect:function(t){var e=t.toString(\"hex\",0,4);return\"49492a00\"===e||\"4d4d002a\"===e},calculate:function(t,e){if(!e)throw new TypeError(\"Tiff doesn't support buffer\");var s=\"BE\"===function(t){var e=t.toString(\"ascii\",0,2);return\"II\"===e?\"LE\":\"MM\"===e?\"BE\":void 0}(t),l=function(t,e){for(var r,n,s,l={};t&&t.length&&(r=i(t,16,0,e),n=i(t,16,2,e),s=i(t,32,4,e),0!==r);)1!==s||3!==n&&4!==n||(l[r]=a(t,e)),t=o(t);return l}(function(t,e,a){var o=i(t,32,4,a),s=1024,l=n.statSync(e).size;o+s>l&&(s=l-o-10);var c=r.alloc(s),u=n.openSync(e,\"r\");return n.readSync(u,c,0,s,o),c.slice(2)}(t,e,s),s),c=l[256],u=l[257];if(!c||!u)throw new TypeError(\"Invalid Tiff, missing tags\");return{width:c,height:u}}}}).call(this)}).call(this,t(\"buffer\").Buffer)},{\"../readUInt\":445,buffer:111,fs:109}],458:[function(t,e,r){\"use strict\";e.exports={detect:function(t){var e=\"RIFF\"===t.toString(\"ascii\",0,4),r=\"WEBP\"===t.toString(\"ascii\",8,12),n=\"VP8\"===t.toString(\"ascii\",12,15);return e&&r&&n},calculate:function(t){var e=t.toString(\"ascii\",12,16);if(t=t.slice(20,30),\"VP8X\"===e){var r=t[0];return!(!(0==(192&r))||!(0==(1&r)))&&function(t){return{width:1+t.readUIntLE(4,3),height:1+t.readUIntLE(7,3)}}(t)}if(\"VP8 \"===e&&47!==t[0])return function(t){return{width:16383&t.readInt16LE(6),height:16383&t.readInt16LE(8)}}(t);var n=t.toString(\"hex\",3,6);return\"VP8L\"===e&&\"9d012a\"!==n&&function(t){return{width:1+((63&t[2])<<8|t[1]),height:1+((15&t[4])<<10|t[3]<<2|(192&t[2])>>6)}}(t)}}},{}],459:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=t.length;if(0===r)throw new Error(\"Must have at least d+1 points\");var i=t[0].length;if(r<=i)throw new Error(\"Must input at least d+1 points\");var o=t.slice(0,i+1),s=n.apply(void 0,o);if(0===s)throw new Error(\"Input not in general position\");for(var l=new Array(i+1),u=0;u<=i;++u)l[u]=u;s<0&&(l[0]=1,l[1]=0);var f=new a(l,new Array(i+1),!1),h=f.adjacent,p=new Array(i+2);for(u=0;u<=i;++u){for(var d=l.slice(),g=0;g<=i;++g)g===u&&(d[g]=-1);var m=d[0];d[0]=d[1],d[1]=m;var v=new a(d,new Array(i+1),!0);h[u]=v,p[u]=v}p[i+1]=f;for(u=0;u<=i;++u){d=h[u].vertices;var y=h[u].adjacent;for(g=0;g<=i;++g){var x=d[g];if(x<0)y[g]=f;else for(var b=0;b<=i;++b)h[b].vertices.indexOf(x)<0&&(y[g]=h[b])}}var _=new c(i,o,p),w=!!e;for(u=i+1;u<r;++u)_.insert(t[u],w);return _.boundary()};var n=t(\"robust-orientation\"),i=t(\"simplicial-complex\").compareCells;function a(t,e,r){this.vertices=t,this.adjacent=e,this.boundary=r,this.lastVisited=-1}function o(t,e,r){this.vertices=t,this.cell=e,this.index=r}function s(t,e){return i(t.vertices,e.vertices)}a.prototype.flip=function(){var t=this.vertices[0];this.vertices[0]=this.vertices[1],this.vertices[1]=t;var e=this.adjacent[0];this.adjacent[0]=this.adjacent[1],this.adjacent[1]=e};var l=[];function c(t,e,r){this.dimension=t,this.vertices=e,this.simplices=r,this.interior=r.filter((function(t){return!t.boundary})),this.tuple=new Array(t+1);for(var i=0;i<=t;++i)this.tuple[i]=this.vertices[i];var a=l[t];a||(a=l[t]=function(t){for(var e=[\"function orient(){var tuple=this.tuple;return test(\"],r=0;r<=t;++r)r>0&&e.push(\",\"),e.push(\"tuple[\",r,\"]\");e.push(\")}return orient\");var i=new Function(\"test\",e.join(\"\")),a=n[t+1];return a||(a=n),i(a)}(t)),this.orient=a}var u=c.prototype;u.handleBoundaryDegeneracy=function(t,e){var r=this.dimension,n=this.vertices.length-1,i=this.tuple,a=this.vertices,o=[t];for(t.lastVisited=-n;o.length>0;){(t=o.pop()).vertices;for(var s=t.adjacent,l=0;l<=r;++l){var c=s[l];if(c.boundary&&!(c.lastVisited<=-n)){for(var u=c.vertices,f=0;f<=r;++f){var h=u[f];i[f]=h<0?e:a[h]}var p=this.orient();if(p>0)return c;c.lastVisited=-n,0===p&&o.push(c)}}}return null},u.walk=function(t,e){var r=this.vertices.length-1,n=this.dimension,i=this.vertices,a=this.tuple,o=e?this.interior.length*Math.random()|0:this.interior.length-1,s=this.interior[o];t:for(;!s.boundary;){for(var l=s.vertices,c=s.adjacent,u=0;u<=n;++u)a[u]=i[l[u]];s.lastVisited=r;for(u=0;u<=n;++u){var f=c[u];if(!(f.lastVisited>=r)){var h=a[u];a[u]=t;var p=this.orient();if(a[u]=h,p<0){s=f;continue t}f.boundary?f.lastVisited=-r:f.lastVisited=r}}return}return s},u.addPeaks=function(t,e){var r=this.vertices.length-1,n=this.dimension,i=this.vertices,l=this.tuple,c=this.interior,u=this.simplices,f=[e];e.lastVisited=r,e.vertices[e.vertices.indexOf(-1)]=r,e.boundary=!1,c.push(e);for(var h=[];f.length>0;){var p=(e=f.pop()).vertices,d=e.adjacent,g=p.indexOf(r);if(!(g<0))for(var m=0;m<=n;++m)if(m!==g){var v=d[m];if(v.boundary&&!(v.lastVisited>=r)){var y=v.vertices;if(v.lastVisited!==-r){for(var x=0,b=0;b<=n;++b)y[b]<0?(x=b,l[b]=t):l[b]=i[y[b]];if(this.orient()>0){y[x]=r,v.boundary=!1,c.push(v),f.push(v),v.lastVisited=r;continue}v.lastVisited=-r}var _=v.adjacent,w=p.slice(),T=d.slice(),k=new a(w,T,!0);u.push(k);var M=_.indexOf(e);if(!(M<0)){_[M]=k,T[g]=v,w[m]=-1,T[m]=e,d[m]=k,k.flip();for(b=0;b<=n;++b){var A=w[b];if(!(A<0||A===r)){for(var S=new Array(n-1),E=0,C=0;C<=n;++C){var L=w[C];L<0||C===b||(S[E++]=L)}h.push(new o(S,k,b))}}}}}}h.sort(s);for(m=0;m+1<h.length;m+=2){var I=h[m],P=h[m+1],z=I.index,O=P.index;z<0||O<0||(I.cell.adjacent[I.index]=P.cell,P.cell.adjacent[P.index]=I.cell)}},u.insert=function(t,e){var r=this.vertices;r.push(t);var n=this.walk(t,e);if(n){for(var i=this.dimension,a=this.tuple,o=0;o<=i;++o){var s=n.vertices[o];a[o]=s<0?t:r[s]}var l=this.orient(a);l<0||(0!==l||(n=this.handleBoundaryDegeneracy(n,t)))&&this.addPeaks(t,n)}},u.boundary=function(){for(var t=this.dimension,e=[],r=this.simplices,n=r.length,i=0;i<n;++i){var a=r[i];if(a.boundary){for(var o=new Array(t),s=a.vertices,l=0,c=0,u=0;u<=t;++u)s[u]>=0?o[l++]=s[u]:c=1&u;if(c===(1&t)){var f=o[0];o[0]=o[1],o[1]=f}e.push(o)}}return e}},{\"robust-orientation\":548,\"simplicial-complex\":558}],460:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\");function i(t,e,r,n,i){this.mid=t,this.left=e,this.right=r,this.leftPoints=n,this.rightPoints=i,this.count=(e?e.count:0)+(r?r.count:0)+n.length}e.exports=function(t){if(!t||0===t.length)return new v(null);return new v(m(t))};var a=i.prototype;function o(t,e){t.mid=e.mid,t.left=e.left,t.right=e.right,t.leftPoints=e.leftPoints,t.rightPoints=e.rightPoints,t.count=e.count}function s(t,e){var r=m(e);t.mid=r.mid,t.left=r.left,t.right=r.right,t.leftPoints=r.leftPoints,t.rightPoints=r.rightPoints,t.count=r.count}function l(t,e){var r=t.intervals([]);r.push(e),s(t,r)}function c(t,e){var r=t.intervals([]),n=r.indexOf(e);return n<0?0:(r.splice(n,1),s(t,r),1)}function u(t,e,r){for(var n=0;n<t.length&&t[n][0]<=e;++n){var i=r(t[n]);if(i)return i}}function f(t,e,r){for(var n=t.length-1;n>=0&&t[n][1]>=e;--n){var i=r(t[n]);if(i)return i}}function h(t,e){for(var r=0;r<t.length;++r){var n=e(t[r]);if(n)return n}}function p(t,e){return t-e}function d(t,e){var r=t[0]-e[0];return r||t[1]-e[1]}function g(t,e){var r=t[1]-e[1];return r||t[0]-e[0]}function m(t){if(0===t.length)return null;for(var e=[],r=0;r<t.length;++r)e.push(t[r][0],t[r][1]);e.sort(p);var n=e[e.length>>1],a=[],o=[],s=[];for(r=0;r<t.length;++r){var l=t[r];l[1]<n?a.push(l):n<l[0]?o.push(l):s.push(l)}var c=s,u=s.slice();return c.sort(d),u.sort(g),new i(n,m(a),m(o),c,u)}function v(t){this.root=t}a.intervals=function(t){return t.push.apply(t,this.leftPoints),this.left&&this.left.intervals(t),this.right&&this.right.intervals(t),t},a.insert=function(t){var e=this.count-this.leftPoints.length;if(this.count+=1,t[1]<this.mid)this.left?4*(this.left.count+1)>3*(e+1)?l(this,t):this.left.insert(t):this.left=m([t]);else if(t[0]>this.mid)this.right?4*(this.right.count+1)>3*(e+1)?l(this,t):this.right.insert(t):this.right=m([t]);else{var r=n.ge(this.leftPoints,t,d),i=n.ge(this.rightPoints,t,g);this.leftPoints.splice(r,0,t),this.rightPoints.splice(i,0,t)}},a.remove=function(t){var e=this.count-this.leftPoints;if(t[1]<this.mid)return this.left?4*(this.right?this.right.count:0)>3*(e-1)?c(this,t):2===(s=this.left.remove(t))?(this.left=null,this.count-=1,1):(1===s&&(this.count-=1),s):0;if(t[0]>this.mid)return this.right?4*(this.left?this.left.count:0)>3*(e-1)?c(this,t):2===(s=this.right.remove(t))?(this.right=null,this.count-=1,1):(1===s&&(this.count-=1),s):0;if(1===this.count)return this.leftPoints[0]===t?2:0;if(1===this.leftPoints.length&&this.leftPoints[0]===t){if(this.left&&this.right){for(var r=this,i=this.left;i.right;)r=i,i=i.right;if(r===this)i.right=this.right;else{var a=this.left,s=this.right;r.count-=i.count,r.right=i.left,i.left=a,i.right=s}o(this,i),this.count=(this.left?this.left.count:0)+(this.right?this.right.count:0)+this.leftPoints.length}else this.left?o(this,this.left):o(this,this.right);return 1}for(a=n.ge(this.leftPoints,t,d);a<this.leftPoints.length&&this.leftPoints[a][0]===t[0];++a)if(this.leftPoints[a]===t){this.count-=1,this.leftPoints.splice(a,1);for(s=n.ge(this.rightPoints,t,g);s<this.rightPoints.length&&this.rightPoints[s][1]===t[1];++s)if(this.rightPoints[s]===t)return this.rightPoints.splice(s,1),1}return 0},a.queryPoint=function(t,e){if(t<this.mid){if(this.left)if(r=this.left.queryPoint(t,e))return r;return u(this.leftPoints,t,e)}if(t>this.mid){var r;if(this.right)if(r=this.right.queryPoint(t,e))return r;return f(this.rightPoints,t,e)}return h(this.leftPoints,e)},a.queryInterval=function(t,e,r){var n;if(t<this.mid&&this.left&&(n=this.left.queryInterval(t,e,r)))return n;if(e>this.mid&&this.right&&(n=this.right.queryInterval(t,e,r)))return n;return e<this.mid?u(this.leftPoints,e,r):t>this.mid?f(this.rightPoints,t,r):h(this.leftPoints,r)};var y=v.prototype;y.insert=function(t){this.root?this.root.insert(t):this.root=new i(t[0],null,null,[t],[t])},y.remove=function(t){if(this.root){var e=this.root.remove(t);return 2===e&&(this.root=null),0!==e}return!1},y.queryPoint=function(t,e){if(this.root)return this.root.queryPoint(t,e)},y.queryInterval=function(t,e,r){if(t<=e&&this.root)return this.root.queryInterval(t,e,r)},Object.defineProperty(y,\"count\",{get:function(){return this.root?this.root.count:0}}),Object.defineProperty(y,\"intervals\",{get:function(){return this.root?this.root.intervals([]):[]}})},{\"binary-search-bounds\":461}],461:[function(t,e,r){arguments[4][243][0].apply(r,arguments)},{dup:243}],462:[function(t,e,r){\"use strict\";e.exports=function(t,e){e=e||new Array(t.length);for(var r=0;r<t.length;++r)e[t[r]]=r;return e}},{}],463:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=new Array(t),r=0;r<t;++r)e[r]=r;return e}},{}],464:[function(t,e,r){e.exports=!0},{}],465:[function(t,e,r){function n(t){return!!t.constructor&&\"function\"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)}\n",
       "/*!\n",
       " * Determine if an object is a Buffer\n",
       " *\n",
       " * @author   Feross Aboukhadijeh <https://feross.org>\n",
       " * @license  MIT\n",
       " */\n",
       "e.exports=function(t){return null!=t&&(n(t)||function(t){return\"function\"==typeof t.readFloatLE&&\"function\"==typeof t.slice&&n(t.slice(0,0))}(t)||!!t._isBuffer)}},{}],466:[function(t,e,r){\"use strict\";e.exports=\"undefined\"!=typeof navigator&&(/MSIE/.test(navigator.userAgent)||/Trident\\//.test(navigator.appVersion))},{}],467:[function(t,e,r){\"use strict\";e.exports=a,e.exports.isMobile=a,e.exports.default=a;var n=/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series[46]0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i,i=/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series[46]0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino|android|ipad|playbook|silk/i;function a(t){t||(t={});var e=t.ua;if(e||\"undefined\"==typeof navigator||(e=navigator.userAgent),e&&e.headers&&\"string\"==typeof e.headers[\"user-agent\"]&&(e=e.headers[\"user-agent\"]),\"string\"!=typeof e)return!1;var r=t.tablet?i.test(e):n.test(e);return!r&&t.tablet&&t.featureDetect&&navigator&&navigator.maxTouchPoints>1&&-1!==e.indexOf(\"Macintosh\")&&-1!==e.indexOf(\"Safari\")&&(r=!0),r}},{}],468:[function(t,e,r){\"use strict\";e.exports=function(t){var e=typeof t;return null!==t&&(\"object\"===e||\"function\"===e)}},{}],469:[function(t,e,r){\"use strict\";var n=Object.prototype.toString;e.exports=function(t){var e;return\"[object Object]\"===n.call(t)&&(null===(e=Object.getPrototypeOf(t))||e===Object.getPrototypeOf({}))}},{}],470:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e,r=t.length,n=0;n<r;n++)if(((e=t.charCodeAt(n))<9||e>13)&&32!==e&&133!==e&&160!==e&&5760!==e&&6158!==e&&(e<8192||e>8205)&&8232!==e&&8233!==e&&8239!==e&&8287!==e&&8288!==e&&12288!==e&&65279!==e)return!1;return!0}},{}],471:[function(t,e,r){\"use strict\";e.exports=function(t){return\"string\"==typeof t&&(t=t.trim(),!!(/^[mzlhvcsqta]\\s*[-+.0-9][^mlhvzcsqta]+/i.test(t)&&/[\\dz]$/i.test(t)&&t.length>4))}},{}],472:[function(t,e,r){e.exports=function(t,e,r){return t*(1-r)+e*r}},{}],473:[function(t,e,r){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?e.exports=n():(t=t||self).mapboxgl=n()}(this,(function(){\"use strict\";var t,e,r;function n(n,i){if(t)if(e){var a=\"var sharedChunk = {}; (\"+t+\")(sharedChunk); (\"+e+\")(sharedChunk);\",o={};t(o),(r=i(o)).workerUrl=window.URL.createObjectURL(new Blob([a],{type:\"text/javascript\"}))}else e=i;else t=i}return n(0,(function(t){function e(t,e){return t(e={exports:{}},e.exports),e.exports}var r=n;function n(t,e,r,n){this.cx=3*t,this.bx=3*(r-t)-this.cx,this.ax=1-this.cx-this.bx,this.cy=3*e,this.by=3*(n-e)-this.cy,this.ay=1-this.cy-this.by,this.p1x=t,this.p1y=n,this.p2x=r,this.p2y=n}n.prototype.sampleCurveX=function(t){return((this.ax*t+this.bx)*t+this.cx)*t},n.prototype.sampleCurveY=function(t){return((this.ay*t+this.by)*t+this.cy)*t},n.prototype.sampleCurveDerivativeX=function(t){return(3*this.ax*t+2*this.bx)*t+this.cx},n.prototype.solveCurveX=function(t,e){var r,n,i,a,o;for(void 0===e&&(e=1e-6),i=t,o=0;o<8;o++){if(a=this.sampleCurveX(i)-t,Math.abs(a)<e)return i;var s=this.sampleCurveDerivativeX(i);if(Math.abs(s)<1e-6)break;i-=a/s}if((i=t)<(r=0))return r;if(i>(n=1))return n;for(;r<n;){if(a=this.sampleCurveX(i),Math.abs(a-t)<e)return i;t>a?r=i:n=i,i=.5*(n-r)+r}return i},n.prototype.solve=function(t,e){return this.sampleCurveY(this.solveCurveX(t,e))};var i=a;function a(t,e){this.x=t,this.y=e}function o(t,e,n,i){var a=new r(t,e,n,i);return function(t){return a.solve(t)}}a.prototype={clone:function(){return new a(this.x,this.y)},add:function(t){return this.clone()._add(t)},sub:function(t){return this.clone()._sub(t)},multByPoint:function(t){return this.clone()._multByPoint(t)},divByPoint:function(t){return this.clone()._divByPoint(t)},mult:function(t){return this.clone()._mult(t)},div:function(t){return this.clone()._div(t)},rotate:function(t){return this.clone()._rotate(t)},rotateAround:function(t,e){return this.clone()._rotateAround(t,e)},matMult:function(t){return this.clone()._matMult(t)},unit:function(){return this.clone()._unit()},perp:function(){return this.clone()._perp()},round:function(){return this.clone()._round()},mag:function(){return Math.sqrt(this.x*this.x+this.y*this.y)},equals:function(t){return this.x===t.x&&this.y===t.y},dist:function(t){return Math.sqrt(this.distSqr(t))},distSqr:function(t){var e=t.x-this.x,r=t.y-this.y;return e*e+r*r},angle:function(){return Math.atan2(this.y,this.x)},angleTo:function(t){return Math.atan2(this.y-t.y,this.x-t.x)},angleWith:function(t){return this.angleWithSep(t.x,t.y)},angleWithSep:function(t,e){return Math.atan2(this.x*e-this.y*t,this.x*t+this.y*e)},_matMult:function(t){var e=t[2]*this.x+t[3]*this.y;return this.x=t[0]*this.x+t[1]*this.y,this.y=e,this},_add:function(t){return this.x+=t.x,this.y+=t.y,this},_sub:function(t){return this.x-=t.x,this.y-=t.y,this},_mult:function(t){return this.x*=t,this.y*=t,this},_div:function(t){return this.x/=t,this.y/=t,this},_multByPoint:function(t){return this.x*=t.x,this.y*=t.y,this},_divByPoint:function(t){return this.x/=t.x,this.y/=t.y,this},_unit:function(){return this._div(this.mag()),this},_perp:function(){var t=this.y;return this.y=this.x,this.x=-t,this},_rotate:function(t){var e=Math.cos(t),r=Math.sin(t),n=r*this.x+e*this.y;return this.x=e*this.x-r*this.y,this.y=n,this},_rotateAround:function(t,e){var r=Math.cos(t),n=Math.sin(t),i=e.y+n*(this.x-e.x)+r*(this.y-e.y);return this.x=e.x+r*(this.x-e.x)-n*(this.y-e.y),this.y=i,this},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}},a.convert=function(t){return t instanceof a?t:Array.isArray(t)?new a(t[0],t[1]):t};var s=o(.25,.1,.25,1);function l(t,e,r){return Math.min(r,Math.max(e,t))}function c(t,e,r){var n=r-e,i=((t-e)%n+n)%n+e;return i===e?r:i}function u(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];for(var n=0,i=e;n<i.length;n+=1){var a=i[n];for(var o in a)t[o]=a[o]}return t}var f=1;function h(){return f++}function p(){return function t(e){return e?(e^16*Math.random()>>e/4).toString(16):([1e7]+-[1e3]+-4e3+-8e3+-1e11).replace(/[018]/g,t)}()}function d(t){return!!t&&/^[0-9a-f]{8}-[0-9a-f]{4}-[4][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(t)}function g(t,e){t.forEach((function(t){e[t]&&(e[t]=e[t].bind(e))}))}function m(t,e){return-1!==t.indexOf(e,t.length-e.length)}function v(t,e,r){var n={};for(var i in t)n[i]=e.call(r||this,t[i],i,t);return n}function y(t,e,r){var n={};for(var i in t)e.call(r||this,t[i],i,t)&&(n[i]=t[i]);return n}function x(t){return Array.isArray(t)?t.map(x):\"object\"==typeof t&&t?v(t,x):t}var b={};function _(t){b[t]||(\"undefined\"!=typeof console&&console.warn(t),b[t]=!0)}function w(t,e,r){return(r.y-t.y)*(e.x-t.x)>(e.y-t.y)*(r.x-t.x)}function T(t){for(var e=0,r=0,n=t.length,i=n-1,a=void 0,o=void 0;r<n;i=r++)e+=((o=t[i]).x-(a=t[r]).x)*(a.y+o.y);return e}function k(){return\"undefined\"!=typeof WorkerGlobalScope&&\"undefined\"!=typeof self&&self instanceof WorkerGlobalScope}function M(t){var e={};if(t.replace(/(?:^|(?:\\s*\\,\\s*))([^\\x00-\\x20\\(\\)<>@\\,;\\:\\\\\"\\/\\[\\]\\?\\=\\{\\}\\x7F]+)(?:\\=(?:([^\\x00-\\x20\\(\\)<>@\\,;\\:\\\\\"\\/\\[\\]\\?\\=\\{\\}\\x7F]+)|(?:\\\"((?:[^\"\\\\]|\\\\.)*)\\\")))?/g,(function(t,r,n,i){var a=n||i;return e[r]=!a||a.toLowerCase(),\"\"})),e[\"max-age\"]){var r=parseInt(e[\"max-age\"],10);isNaN(r)?delete e[\"max-age\"]:e[\"max-age\"]=r}return e}var A=null;function S(t){if(null==A){var e=t.navigator?t.navigator.userAgent:null;A=!!t.safari||!(!e||!(/\\b(iPad|iPhone|iPod)\\b/.test(e)||e.match(\"Safari\")&&!e.match(\"Chrome\")))}return A}function E(t){try{var e=self[t];return e.setItem(\"_mapbox_test_\",1),e.removeItem(\"_mapbox_test_\"),!0}catch(t){return!1}}var C,L,I,P,z=self.performance&&self.performance.now?self.performance.now.bind(self.performance):Date.now.bind(Date),O=self.requestAnimationFrame||self.mozRequestAnimationFrame||self.webkitRequestAnimationFrame||self.msRequestAnimationFrame,D=self.cancelAnimationFrame||self.mozCancelAnimationFrame||self.webkitCancelAnimationFrame||self.msCancelAnimationFrame,R={now:z,frame:function(t){var e=O(t);return{cancel:function(){return D(e)}}},getImageData:function(t,e){void 0===e&&(e=0);var r=self.document.createElement(\"canvas\"),n=r.getContext(\"2d\");if(!n)throw new Error(\"failed to create canvas 2d context\");return r.width=t.width,r.height=t.height,n.drawImage(t,0,0,t.width,t.height),n.getImageData(-e,-e,t.width+2*e,t.height+2*e)},resolveURL:function(t){return C||(C=self.document.createElement(\"a\")),C.href=t,C.href},hardwareConcurrency:self.navigator.hardwareConcurrency||4,get devicePixelRatio(){return self.devicePixelRatio},get prefersReducedMotion(){return!!self.matchMedia&&(null==L&&(L=self.matchMedia(\"(prefers-reduced-motion: reduce)\")),L.matches)}},F={API_URL:\"https://api.mapbox.com\",get EVENTS_URL(){return this.API_URL?0===this.API_URL.indexOf(\"https://api.mapbox.cn\")?\"https://events.mapbox.cn/events/v2\":0===this.API_URL.indexOf(\"https://api.mapbox.com\")?\"https://events.mapbox.com/events/v2\":null:null},FEEDBACK_URL:\"https://apps.mapbox.com/feedback\",REQUIRE_ACCESS_TOKEN:!0,ACCESS_TOKEN:null,MAX_PARALLEL_IMAGE_REQUESTS:16},B={supported:!1,testSupport:function(t){!N&&P&&(j?U(t):I=t)}},N=!1,j=!1;function U(t){var e=t.createTexture();t.bindTexture(t.TEXTURE_2D,e);try{if(t.texImage2D(t.TEXTURE_2D,0,t.RGBA,t.RGBA,t.UNSIGNED_BYTE,P),t.isContextLost())return;B.supported=!0}catch(t){}t.deleteTexture(e),N=!0}self.document&&((P=self.document.createElement(\"img\")).onload=function(){I&&U(I),I=null,j=!0},P.onerror=function(){N=!0,I=null},P.src=\"data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAQAAAAfQ//73v/+BiOh/AAA=\");var V=\"01\",q=function(t,e){this._transformRequestFn=t,this._customAccessToken=e,this._createSkuToken()};function H(t){return 0===t.indexOf(\"mapbox:\")}q.prototype._createSkuToken=function(){var t=function(){for(var t=\"\",e=0;e<10;e++)t+=\"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\"[Math.floor(62*Math.random())];return{token:[\"1\",V,t].join(\"\"),tokenExpiresAt:Date.now()+432e5}}();this._skuToken=t.token,this._skuTokenExpiresAt=t.tokenExpiresAt},q.prototype._isSkuTokenExpired=function(){return Date.now()>this._skuTokenExpiresAt},q.prototype.transformRequest=function(t,e){return this._transformRequestFn&&this._transformRequestFn(t,e)||{url:t}},q.prototype.normalizeStyleURL=function(t,e){if(!H(t))return t;var r=X(t);return r.path=\"/styles/v1\"+r.path,this._makeAPIURL(r,this._customAccessToken||e)},q.prototype.normalizeGlyphsURL=function(t,e){if(!H(t))return t;var r=X(t);return r.path=\"/fonts/v1\"+r.path,this._makeAPIURL(r,this._customAccessToken||e)},q.prototype.normalizeSourceURL=function(t,e){if(!H(t))return t;var r=X(t);return r.path=\"/v4/\"+r.authority+\".json\",r.params.push(\"secure\"),this._makeAPIURL(r,this._customAccessToken||e)},q.prototype.normalizeSpriteURL=function(t,e,r,n){var i=X(t);return H(t)?(i.path=\"/styles/v1\"+i.path+\"/sprite\"+e+r,this._makeAPIURL(i,this._customAccessToken||n)):(i.path+=\"\"+e+r,Z(i))},q.prototype.normalizeTileURL=function(t,e){if(this._isSkuTokenExpired()&&this._createSkuToken(),t&&!H(t))return t;var r=X(t);r.path=r.path.replace(/(\\.(png|jpg)\\d*)(?=$)/,(R.devicePixelRatio>=2||512===e?\"@2x\":\"\")+(B.supported?\".webp\":\"$1\")),r.path=r.path.replace(/^.+\\/v4\\//,\"/\"),r.path=\"/v4\"+r.path;var n=this._customAccessToken||function(t){for(var e=0,r=t;e<r.length;e+=1){var n=r[e].match(/^access_token=(.*)$/);if(n)return n[1]}return null}(r.params)||F.ACCESS_TOKEN;return F.REQUIRE_ACCESS_TOKEN&&n&&this._skuToken&&r.params.push(\"sku=\"+this._skuToken),this._makeAPIURL(r,n)},q.prototype.canonicalizeTileURL=function(t,e){var r=X(t);if(!r.path.match(/(^\\/v4\\/)/)||!r.path.match(/\\.[\\w]+$/))return t;var n=\"mapbox://tiles/\";n+=r.path.replace(\"/v4/\",\"\");var i=r.params;return e&&(i=i.filter((function(t){return!t.match(/^access_token=/)}))),i.length&&(n+=\"?\"+i.join(\"&\")),n},q.prototype.canonicalizeTileset=function(t,e){for(var r=!!e&&H(e),n=[],i=0,a=t.tiles||[];i<a.length;i+=1){var o=a[i];Y(o)?n.push(this.canonicalizeTileURL(o,r)):n.push(o)}return n},q.prototype._makeAPIURL=function(t,e){var r=\"See https://www.mapbox.com/api-documentation/#access-tokens-and-token-scopes\",n=X(F.API_URL);if(t.protocol=n.protocol,t.authority=n.authority,\"/\"!==n.path&&(t.path=\"\"+n.path+t.path),!F.REQUIRE_ACCESS_TOKEN)return Z(t);if(!(e=e||F.ACCESS_TOKEN))throw new Error(\"An API access token is required to use Mapbox GL. \"+r);if(\"s\"===e[0])throw new Error(\"Use a public access token (pk.*) with Mapbox GL, not a secret access token (sk.*). \"+r);return t.params=t.params.filter((function(t){return-1===t.indexOf(\"access_token\")})),t.params.push(\"access_token=\"+e),Z(t)};var G=/^((https?:)?\\/\\/)?([^\\/]+\\.)?mapbox\\.c(n|om)(\\/|\\?|$)/i;function Y(t){return G.test(t)}var W=/^(\\w+):\\/\\/([^/?]*)(\\/[^?]+)?\\??(.+)?/;function X(t){var e=t.match(W);if(!e)throw new Error(\"Unable to parse URL object\");return{protocol:e[1],authority:e[2],path:e[3]||\"/\",params:e[4]?e[4].split(\"&\"):[]}}function Z(t){var e=t.params.length?\"?\"+t.params.join(\"&\"):\"\";return t.protocol+\"://\"+t.authority+t.path+e}function J(t){if(!t)return null;var e=t.split(\".\");if(!e||3!==e.length)return null;try{return JSON.parse(decodeURIComponent(self.atob(e[1]).split(\"\").map((function(t){return\"%\"+(\"00\"+t.charCodeAt(0).toString(16)).slice(-2)})).join(\"\")))}catch(t){return null}}var K=function(t){this.type=t,this.anonId=null,this.eventData={},this.queue=[],this.pendingRequest=null};K.prototype.getStorageKey=function(t){var e,r=J(F.ACCESS_TOKEN);return e=r&&r.u?self.btoa(encodeURIComponent(r.u).replace(/%([0-9A-F]{2})/g,(function(t,e){return String.fromCharCode(Number(\"0x\"+e))}))):F.ACCESS_TOKEN||\"\",t?\"mapbox.eventData.\"+t+\":\"+e:\"mapbox.eventData:\"+e},K.prototype.fetchEventData=function(){var t=E(\"localStorage\"),e=this.getStorageKey(),r=this.getStorageKey(\"uuid\");if(t)try{var n=self.localStorage.getItem(e);n&&(this.eventData=JSON.parse(n));var i=self.localStorage.getItem(r);i&&(this.anonId=i)}catch(t){_(\"Unable to read from LocalStorage\")}},K.prototype.saveEventData=function(){var t=E(\"localStorage\"),e=this.getStorageKey(),r=this.getStorageKey(\"uuid\");if(t)try{self.localStorage.setItem(r,this.anonId),Object.keys(this.eventData).length>=1&&self.localStorage.setItem(e,JSON.stringify(this.eventData))}catch(t){_(\"Unable to write to LocalStorage\")}},K.prototype.processRequests=function(t){},K.prototype.postEvent=function(t,e,r,n){var i=this;if(F.EVENTS_URL){var a=X(F.EVENTS_URL);a.params.push(\"access_token=\"+(n||F.ACCESS_TOKEN||\"\"));var o={event:this.type,created:new Date(t).toISOString(),sdkIdentifier:\"mapbox-gl-js\",sdkVersion:\"1.10.1\",skuId:V,userId:this.anonId},s=e?u(o,e):o,l={url:Z(a),headers:{\"Content-Type\":\"text/plain\"},body:JSON.stringify([s])};this.pendingRequest=xt(l,(function(t){i.pendingRequest=null,r(t),i.saveEventData(),i.processRequests(n)}))}},K.prototype.queueRequest=function(t,e){this.queue.push(t),this.processRequests(e)};var Q,$,tt=function(t){function e(){t.call(this,\"map.load\"),this.success={},this.skuToken=\"\"}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.postMapLoadEvent=function(t,e,r,n){this.skuToken=r,(F.EVENTS_URL&&n||F.ACCESS_TOKEN&&Array.isArray(t)&&t.some((function(t){return H(t)||Y(t)})))&&this.queueRequest({id:e,timestamp:Date.now()},n)},e.prototype.processRequests=function(t){var e=this;if(!this.pendingRequest&&0!==this.queue.length){var r=this.queue.shift(),n=r.id,i=r.timestamp;n&&this.success[n]||(this.anonId||this.fetchEventData(),d(this.anonId)||(this.anonId=p()),this.postEvent(i,{skuToken:this.skuToken},(function(t){t||n&&(e.success[n]=!0)}),t))}},e}(K),et=new(function(t){function e(e){t.call(this,\"appUserTurnstile\"),this._customAccessToken=e}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.postTurnstileEvent=function(t,e){F.EVENTS_URL&&F.ACCESS_TOKEN&&Array.isArray(t)&&t.some((function(t){return H(t)||Y(t)}))&&this.queueRequest(Date.now(),e)},e.prototype.processRequests=function(t){var e=this;if(!this.pendingRequest&&0!==this.queue.length){this.anonId&&this.eventData.lastSuccess&&this.eventData.tokenU||this.fetchEventData();var r=J(F.ACCESS_TOKEN),n=r?r.u:F.ACCESS_TOKEN,i=n!==this.eventData.tokenU;d(this.anonId)||(this.anonId=p(),i=!0);var a=this.queue.shift();if(this.eventData.lastSuccess){var o=new Date(this.eventData.lastSuccess),s=new Date(a),l=(a-this.eventData.lastSuccess)/864e5;i=i||l>=1||l<-1||o.getDate()!==s.getDate()}else i=!0;if(!i)return this.processRequests();this.postEvent(a,{\"enabled.telemetry\":!1},(function(t){t||(e.eventData.lastSuccess=a,e.eventData.tokenU=n)}),t)}},e}(K)),rt=et.postTurnstileEvent.bind(et),nt=new tt,it=nt.postMapLoadEvent.bind(nt),at=500,ot=50;function st(){self.caches&&!Q&&(Q=self.caches.open(\"mapbox-tiles\"))}function lt(t){var e=t.indexOf(\"?\");return e<0?t:t.slice(0,e)}var ct,ut=1/0;function ft(){return null==ct&&(ct=self.OffscreenCanvas&&new self.OffscreenCanvas(1,1).getContext(\"2d\")&&\"function\"==typeof self.createImageBitmap),ct}var ht={Unknown:\"Unknown\",Style:\"Style\",Source:\"Source\",Tile:\"Tile\",Glyphs:\"Glyphs\",SpriteImage:\"SpriteImage\",SpriteJSON:\"SpriteJSON\",Image:\"Image\"};\"function\"==typeof Object.freeze&&Object.freeze(ht);var pt,dt,gt=function(t){function e(e,r,n){401===r&&Y(n)&&(e+=\": you may have provided an invalid Mapbox access token. See https://www.mapbox.com/api-documentation/#access-tokens-and-token-scopes\"),t.call(this,e),this.status=r,this.url=n,this.name=this.constructor.name,this.message=e}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.toString=function(){return this.name+\": \"+this.message+\" (\"+this.status+\"): \"+this.url},e}(Error),mt=k()?function(){return self.worker&&self.worker.referrer}:function(){return(\"blob:\"===self.location.protocol?self.parent:self).location.href},vt=function(t,e){if(!(/^file:/.test(r=t.url)||/^file:/.test(mt())&&!/^\\w+:/.test(r))){if(self.fetch&&self.Request&&self.AbortController&&self.Request.prototype.hasOwnProperty(\"signal\"))return function(t,e){var r,n=new self.AbortController,i=new self.Request(t.url,{method:t.method||\"GET\",body:t.body,credentials:t.credentials,headers:t.headers,referrer:mt(),signal:n.signal}),a=!1,o=!1,s=(r=i.url).indexOf(\"sku=\")>0&&Y(r);\"json\"===t.type&&i.headers.set(\"Accept\",\"application/json\");var l=function(r,n,a){if(!o){if(r&&\"SecurityError\"!==r.message&&_(r),n&&a)return c(n);var l=Date.now();self.fetch(i).then((function(r){if(r.ok){var n=s?r.clone():null;return c(r,n,l)}return e(new gt(r.statusText,r.status,t.url))})).catch((function(t){20!==t.code&&e(new Error(t.message))}))}},c=function(r,n,s){(\"arrayBuffer\"===t.type?r.arrayBuffer():\"json\"===t.type?r.json():r.text()).then((function(t){o||(n&&s&&function(t,e,r){if(st(),Q){var n={status:e.status,statusText:e.statusText,headers:new self.Headers};e.headers.forEach((function(t,e){return n.headers.set(e,t)}));var i=M(e.headers.get(\"Cache-Control\")||\"\");i[\"no-store\"]||(i[\"max-age\"]&&n.headers.set(\"Expires\",new Date(r+1e3*i[\"max-age\"]).toUTCString()),new Date(n.headers.get(\"Expires\")).getTime()-r<42e4||function(t,e){if(void 0===$)try{new Response(new ReadableStream),$=!0}catch(t){$=!1}$?e(t.body):t.blob().then(e)}(e,(function(e){var r=new self.Response(e,n);st(),Q&&Q.then((function(e){return e.put(lt(t.url),r)})).catch((function(t){return _(t.message)}))})))}}(i,n,s),a=!0,e(null,t,r.headers.get(\"Cache-Control\"),r.headers.get(\"Expires\")))})).catch((function(t){o||e(new Error(t.message))}))};return s?function(t,e){if(st(),!Q)return e(null);var r=lt(t.url);Q.then((function(t){t.match(r).then((function(n){var i=function(t){if(!t)return!1;var e=new Date(t.headers.get(\"Expires\")||0),r=M(t.headers.get(\"Cache-Control\")||\"\");return e>Date.now()&&!r[\"no-cache\"]}(n);t.delete(r),i&&t.put(r,n.clone()),e(null,n,i)})).catch(e)})).catch(e)}(i,l):l(null,null),{cancel:function(){o=!0,a||n.abort()}}}(t,e);if(k()&&self.worker&&self.worker.actor)return self.worker.actor.send(\"getResource\",t,e,void 0,!0)}var r;return function(t,e){var r=new self.XMLHttpRequest;for(var n in r.open(t.method||\"GET\",t.url,!0),\"arrayBuffer\"===t.type&&(r.responseType=\"arraybuffer\"),t.headers)r.setRequestHeader(n,t.headers[n]);return\"json\"===t.type&&(r.responseType=\"text\",r.setRequestHeader(\"Accept\",\"application/json\")),r.withCredentials=\"include\"===t.credentials,r.onerror=function(){e(new Error(r.statusText))},r.onload=function(){if((r.status>=200&&r.status<300||0===r.status)&&null!==r.response){var n=r.response;if(\"json\"===t.type)try{n=JSON.parse(r.response)}catch(t){return e(t)}e(null,n,r.getResponseHeader(\"Cache-Control\"),r.getResponseHeader(\"Expires\"))}else e(new gt(r.statusText,r.status,t.url))},r.send(t.body),{cancel:function(){return r.abort()}}}(t,e)},yt=function(t,e){return vt(u(t,{type:\"arrayBuffer\"}),e)},xt=function(t,e){return vt(u(t,{method:\"POST\"}),e)};pt=[],dt=0;var bt=function(t,e){if(B.supported&&(t.headers||(t.headers={}),t.headers.accept=\"image/webp,*/*\"),dt>=F.MAX_PARALLEL_IMAGE_REQUESTS){var r={requestParameters:t,callback:e,cancelled:!1,cancel:function(){this.cancelled=!0}};return pt.push(r),r}dt++;var n=!1,i=function(){if(!n)for(n=!0,dt--;pt.length&&dt<F.MAX_PARALLEL_IMAGE_REQUESTS;){var t=pt.shift();t.cancelled||(t.cancel=bt(t.requestParameters,t.callback).cancel)}},a=yt(t,(function(t,r,n,a){i(),t?e(t):r&&(ft()?function(t,e){var r=new self.Blob([new Uint8Array(t)],{type:\"image/png\"});self.createImageBitmap(r).then((function(t){e(null,t)})).catch((function(t){e(new Error(\"Could not load image because of \"+t.message+\". Please make sure to use a supported image type such as PNG or JPEG. Note that SVGs are not supported.\"))}))}(r,e):function(t,e,r,n){var i=new self.Image,a=self.URL;i.onload=function(){e(null,i),a.revokeObjectURL(i.src)},i.onerror=function(){return e(new Error(\"Could not load image. Please make sure to use a supported image type such as PNG or JPEG. Note that SVGs are not supported.\"))};var o=new self.Blob([new Uint8Array(t)],{type:\"image/png\"});i.cacheControl=r,i.expires=n,i.src=t.byteLength?a.createObjectURL(o):\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQYV2NgAAIAAAUAAarVyFEAAAAASUVORK5CYII=\"}(r,e,n,a))}));return{cancel:function(){a.cancel(),i()}}};function _t(t,e,r){r[t]&&-1!==r[t].indexOf(e)||(r[t]=r[t]||[],r[t].push(e))}function wt(t,e,r){if(r&&r[t]){var n=r[t].indexOf(e);-1!==n&&r[t].splice(n,1)}}var Tt=function(t,e){void 0===e&&(e={}),u(this,e),this.type=t},kt=function(t){function e(e,r){void 0===r&&(r={}),t.call(this,\"error\",u({error:e},r))}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e}(Tt),Mt=function(){};Mt.prototype.on=function(t,e){return this._listeners=this._listeners||{},_t(t,e,this._listeners),this},Mt.prototype.off=function(t,e){return wt(t,e,this._listeners),wt(t,e,this._oneTimeListeners),this},Mt.prototype.once=function(t,e){return this._oneTimeListeners=this._oneTimeListeners||{},_t(t,e,this._oneTimeListeners),this},Mt.prototype.fire=function(t,e){\"string\"==typeof t&&(t=new Tt(t,e||{}));var r=t.type;if(this.listens(r)){t.target=this;for(var n=0,i=this._listeners&&this._listeners[r]?this._listeners[r].slice():[];n<i.length;n+=1)i[n].call(this,t);for(var a=0,o=this._oneTimeListeners&&this._oneTimeListeners[r]?this._oneTimeListeners[r].slice():[];a<o.length;a+=1){var s=o[a];wt(r,s,this._oneTimeListeners),s.call(this,t)}var l=this._eventedParent;l&&(u(t,\"function\"==typeof this._eventedParentData?this._eventedParentData():this._eventedParentData),l.fire(t))}else t instanceof kt&&console.error(t.error);return this},Mt.prototype.listens=function(t){return this._listeners&&this._listeners[t]&&this._listeners[t].length>0||this._oneTimeListeners&&this._oneTimeListeners[t]&&this._oneTimeListeners[t].length>0||this._eventedParent&&this._eventedParent.listens(t)},Mt.prototype.setEventedParent=function(t,e){return this._eventedParent=t,this._eventedParentData=e,this};var At={$version:8,$root:{version:{required:!0,type:\"enum\",values:[8]},name:{type:\"string\"},metadata:{type:\"*\"},center:{type:\"array\",value:\"number\"},zoom:{type:\"number\"},bearing:{type:\"number\",default:0,period:360,units:\"degrees\"},pitch:{type:\"number\",default:0,units:\"degrees\"},light:{type:\"light\"},sources:{required:!0,type:\"sources\"},sprite:{type:\"string\"},glyphs:{type:\"string\"},transition:{type:\"transition\"},layers:{required:!0,type:\"array\",value:\"layer\"}},sources:{\"*\":{type:\"source\"}},source:[\"source_vector\",\"source_raster\",\"source_raster_dem\",\"source_geojson\",\"source_video\",\"source_image\"],source_vector:{type:{required:!0,type:\"enum\",values:{vector:{}}},url:{type:\"string\"},tiles:{type:\"array\",value:\"string\"},bounds:{type:\"array\",value:\"number\",length:4,default:[-180,-85.051129,180,85.051129]},scheme:{type:\"enum\",values:{xyz:{},tms:{}},default:\"xyz\"},minzoom:{type:\"number\",default:0},maxzoom:{type:\"number\",default:22},attribution:{type:\"string\"},promoteId:{type:\"promoteId\"},\"*\":{type:\"*\"}},source_raster:{type:{required:!0,type:\"enum\",values:{raster:{}}},url:{type:\"string\"},tiles:{type:\"array\",value:\"string\"},bounds:{type:\"array\",value:\"number\",length:4,default:[-180,-85.051129,180,85.051129]},minzoom:{type:\"number\",default:0},maxzoom:{type:\"number\",default:22},tileSize:{type:\"number\",default:512,units:\"pixels\"},scheme:{type:\"enum\",values:{xyz:{},tms:{}},default:\"xyz\"},attribution:{type:\"string\"},\"*\":{type:\"*\"}},source_raster_dem:{type:{required:!0,type:\"enum\",values:{\"raster-dem\":{}}},url:{type:\"string\"},tiles:{type:\"array\",value:\"string\"},bounds:{type:\"array\",value:\"number\",length:4,default:[-180,-85.051129,180,85.051129]},minzoom:{type:\"number\",default:0},maxzoom:{type:\"number\",default:22},tileSize:{type:\"number\",default:512,units:\"pixels\"},attribution:{type:\"string\"},encoding:{type:\"enum\",values:{terrarium:{},mapbox:{}},default:\"mapbox\"},\"*\":{type:\"*\"}},source_geojson:{type:{required:!0,type:\"enum\",values:{geojson:{}}},data:{type:\"*\"},maxzoom:{type:\"number\",default:18},attribution:{type:\"string\"},buffer:{type:\"number\",default:128,maximum:512,minimum:0},tolerance:{type:\"number\",default:.375},cluster:{type:\"boolean\",default:!1},clusterRadius:{type:\"number\",default:50,minimum:0},clusterMaxZoom:{type:\"number\"},clusterProperties:{type:\"*\"},lineMetrics:{type:\"boolean\",default:!1},generateId:{type:\"boolean\",default:!1},promoteId:{type:\"promoteId\"}},source_video:{type:{required:!0,type:\"enum\",values:{video:{}}},urls:{required:!0,type:\"array\",value:\"string\"},coordinates:{required:!0,type:\"array\",length:4,value:{type:\"array\",length:2,value:\"number\"}}},source_image:{type:{required:!0,type:\"enum\",values:{image:{}}},url:{required:!0,type:\"string\"},coordinates:{required:!0,type:\"array\",length:4,value:{type:\"array\",length:2,value:\"number\"}}},layer:{id:{type:\"string\",required:!0},type:{type:\"enum\",values:{fill:{},line:{},symbol:{},circle:{},heatmap:{},\"fill-extrusion\":{},raster:{},hillshade:{},background:{}},required:!0},metadata:{type:\"*\"},source:{type:\"string\"},\"source-layer\":{type:\"string\"},minzoom:{type:\"number\",minimum:0,maximum:24},maxzoom:{type:\"number\",minimum:0,maximum:24},filter:{type:\"filter\"},layout:{type:\"layout\"},paint:{type:\"paint\"}},layout:[\"layout_fill\",\"layout_line\",\"layout_circle\",\"layout_heatmap\",\"layout_fill-extrusion\",\"layout_symbol\",\"layout_raster\",\"layout_hillshade\",\"layout_background\"],layout_background:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_fill:{\"fill-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_circle:{\"circle-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_heatmap:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},\"layout_fill-extrusion\":{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_line:{\"line-cap\":{type:\"enum\",values:{butt:{},round:{},square:{}},default:\"butt\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-join\":{type:\"enum\",values:{bevel:{},round:{},miter:{}},default:\"miter\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"line-miter-limit\":{type:\"number\",default:2,requires:[{\"line-join\":\"miter\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-round-limit\":{type:\"number\",default:1.05,requires:[{\"line-join\":\"round\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_symbol:{\"symbol-placement\":{type:\"enum\",values:{point:{},line:{},\"line-center\":{}},default:\"point\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"symbol-spacing\":{type:\"number\",default:250,minimum:1,units:\"pixels\",requires:[{\"symbol-placement\":\"line\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"symbol-avoid-edges\":{type:\"boolean\",default:!1,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"symbol-sort-key\":{type:\"number\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"symbol-z-order\":{type:\"enum\",values:{auto:{},\"viewport-y\":{},source:{}},default:\"auto\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-allow-overlap\":{type:\"boolean\",default:!1,requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-ignore-placement\":{type:\"boolean\",default:!1,requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-optional\":{type:\"boolean\",default:!1,requires:[\"icon-image\",\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-rotation-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-size\":{type:\"number\",default:1,minimum:0,units:\"factor of the original icon size\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-text-fit\":{type:\"enum\",values:{none:{},width:{},height:{},both:{}},default:\"none\",requires:[\"icon-image\",\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-text-fit-padding\":{type:\"array\",value:\"number\",length:4,default:[0,0,0,0],units:\"pixels\",requires:[\"icon-image\",\"text-field\",{\"icon-text-fit\":[\"both\",\"width\",\"height\"]}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-image\":{type:\"resolvedImage\",tokens:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-rotate\":{type:\"number\",default:0,period:360,units:\"degrees\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-padding\":{type:\"number\",default:2,minimum:0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-keep-upright\":{type:\"boolean\",default:!1,requires:[\"icon-image\",{\"icon-rotation-alignment\":\"map\"},{\"symbol-placement\":[\"line\",\"line-center\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-offset\":{type:\"array\",value:\"number\",length:2,default:[0,0],requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-anchor\":{type:\"enum\",values:{center:{},left:{},right:{},top:{},bottom:{},\"top-left\":{},\"top-right\":{},\"bottom-left\":{},\"bottom-right\":{}},default:\"center\",requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"icon-pitch-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-pitch-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-rotation-alignment\":{type:\"enum\",values:{map:{},viewport:{},auto:{}},default:\"auto\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-field\":{type:\"formatted\",default:\"\",tokens:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-font\":{type:\"array\",value:\"string\",default:[\"Open Sans Regular\",\"Arial Unicode MS Regular\"],requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-size\":{type:\"number\",default:16,minimum:0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-max-width\":{type:\"number\",default:10,minimum:0,units:\"ems\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-line-height\":{type:\"number\",default:1.2,units:\"ems\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-letter-spacing\":{type:\"number\",default:0,units:\"ems\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-justify\":{type:\"enum\",values:{auto:{},left:{},center:{},right:{}},default:\"center\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-radial-offset\":{type:\"number\",units:\"ems\",default:0,requires:[\"text-field\"],\"property-type\":\"data-driven\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]}},\"text-variable-anchor\":{type:\"array\",value:\"enum\",values:{center:{},left:{},right:{},top:{},bottom:{},\"top-left\":{},\"top-right\":{},\"bottom-left\":{},\"bottom-right\":{}},requires:[\"text-field\",{\"symbol-placement\":[\"point\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-anchor\":{type:\"enum\",values:{center:{},left:{},right:{},top:{},bottom:{},\"top-left\":{},\"top-right\":{},\"bottom-left\":{},\"bottom-right\":{}},default:\"center\",requires:[\"text-field\",{\"!\":\"text-variable-anchor\"}],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-max-angle\":{type:\"number\",default:45,units:\"degrees\",requires:[\"text-field\",{\"symbol-placement\":[\"line\",\"line-center\"]}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-writing-mode\":{type:\"array\",value:\"enum\",values:{horizontal:{},vertical:{}},requires:[\"text-field\",{\"symbol-placement\":[\"point\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-rotate\":{type:\"number\",default:0,period:360,units:\"degrees\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-padding\":{type:\"number\",default:2,minimum:0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-keep-upright\":{type:\"boolean\",default:!0,requires:[\"text-field\",{\"text-rotation-alignment\":\"map\"},{\"symbol-placement\":[\"line\",\"line-center\"]}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-transform\":{type:\"enum\",values:{none:{},uppercase:{},lowercase:{}},default:\"none\",requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-offset\":{type:\"array\",value:\"number\",units:\"ems\",length:2,default:[0,0],requires:[\"text-field\",{\"!\":\"text-radial-offset\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"data-driven\"},\"text-allow-overlap\":{type:\"boolean\",default:!1,requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-ignore-placement\":{type:\"boolean\",default:!1,requires:[\"text-field\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-optional\":{type:\"boolean\",default:!1,requires:[\"text-field\",\"icon-image\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_raster:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},layout_hillshade:{visibility:{type:\"enum\",values:{visible:{},none:{}},default:\"visible\",\"property-type\":\"constant\"}},filter:{type:\"array\",value:\"*\"},filter_operator:{type:\"enum\",values:{\"==\":{},\"!=\":{},\">\":{},\">=\":{},\"<\":{},\"<=\":{},in:{},\"!in\":{},all:{},any:{},none:{},has:{},\"!has\":{},within:{}}},geometry_type:{type:\"enum\",values:{Point:{},LineString:{},Polygon:{}}},function:{expression:{type:\"expression\"},stops:{type:\"array\",value:\"function_stop\"},base:{type:\"number\",default:1,minimum:0},property:{type:\"string\",default:\"$zoom\"},type:{type:\"enum\",values:{identity:{},exponential:{},interval:{},categorical:{}},default:\"exponential\"},colorSpace:{type:\"enum\",values:{rgb:{},lab:{},hcl:{}},default:\"rgb\"},default:{type:\"*\",required:!1}},function_stop:{type:\"array\",minimum:0,maximum:24,value:[\"number\",\"color\"],length:2},expression:{type:\"array\",value:\"*\",minimum:1},expression_name:{type:\"enum\",values:{let:{group:\"Variable binding\"},var:{group:\"Variable binding\"},literal:{group:\"Types\"},array:{group:\"Types\"},at:{group:\"Lookup\"},in:{group:\"Lookup\"},\"index-of\":{group:\"Lookup\"},slice:{group:\"Lookup\"},case:{group:\"Decision\"},match:{group:\"Decision\"},coalesce:{group:\"Decision\"},step:{group:\"Ramps, scales, curves\"},interpolate:{group:\"Ramps, scales, curves\"},\"interpolate-hcl\":{group:\"Ramps, scales, curves\"},\"interpolate-lab\":{group:\"Ramps, scales, curves\"},ln2:{group:\"Math\"},pi:{group:\"Math\"},e:{group:\"Math\"},typeof:{group:\"Types\"},string:{group:\"Types\"},number:{group:\"Types\"},boolean:{group:\"Types\"},object:{group:\"Types\"},collator:{group:\"Types\"},format:{group:\"Types\"},image:{group:\"Types\"},\"number-format\":{group:\"Types\"},\"to-string\":{group:\"Types\"},\"to-number\":{group:\"Types\"},\"to-boolean\":{group:\"Types\"},\"to-rgba\":{group:\"Color\"},\"to-color\":{group:\"Types\"},rgb:{group:\"Color\"},rgba:{group:\"Color\"},get:{group:\"Lookup\"},has:{group:\"Lookup\"},length:{group:\"Lookup\"},properties:{group:\"Feature data\"},\"feature-state\":{group:\"Feature data\"},\"geometry-type\":{group:\"Feature data\"},id:{group:\"Feature data\"},zoom:{group:\"Zoom\"},\"heatmap-density\":{group:\"Heatmap\"},\"line-progress\":{group:\"Feature data\"},accumulated:{group:\"Feature data\"},\"+\":{group:\"Math\"},\"*\":{group:\"Math\"},\"-\":{group:\"Math\"},\"/\":{group:\"Math\"},\"%\":{group:\"Math\"},\"^\":{group:\"Math\"},sqrt:{group:\"Math\"},log10:{group:\"Math\"},ln:{group:\"Math\"},log2:{group:\"Math\"},sin:{group:\"Math\"},cos:{group:\"Math\"},tan:{group:\"Math\"},asin:{group:\"Math\"},acos:{group:\"Math\"},atan:{group:\"Math\"},min:{group:\"Math\"},max:{group:\"Math\"},round:{group:\"Math\"},abs:{group:\"Math\"},ceil:{group:\"Math\"},floor:{group:\"Math\"},distance:{group:\"Math\"},\"==\":{group:\"Decision\"},\"!=\":{group:\"Decision\"},\">\":{group:\"Decision\"},\"<\":{group:\"Decision\"},\">=\":{group:\"Decision\"},\"<=\":{group:\"Decision\"},all:{group:\"Decision\"},any:{group:\"Decision\"},\"!\":{group:\"Decision\"},within:{group:\"Decision\"},\"is-supported-script\":{group:\"String\"},upcase:{group:\"String\"},downcase:{group:\"String\"},concat:{group:\"String\"},\"resolved-locale\":{group:\"String\"}}},light:{anchor:{type:\"enum\",default:\"viewport\",values:{map:{},viewport:{}},\"property-type\":\"data-constant\",transition:!1,expression:{interpolated:!1,parameters:[\"zoom\"]}},position:{type:\"array\",default:[1.15,210,30],length:3,value:\"number\",\"property-type\":\"data-constant\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]}},color:{type:\"color\",\"property-type\":\"data-constant\",default:\"#ffffff\",expression:{interpolated:!0,parameters:[\"zoom\"]},transition:!0},intensity:{type:\"number\",\"property-type\":\"data-constant\",default:.5,minimum:0,maximum:1,expression:{interpolated:!0,parameters:[\"zoom\"]},transition:!0}},paint:[\"paint_fill\",\"paint_line\",\"paint_circle\",\"paint_heatmap\",\"paint_fill-extrusion\",\"paint_symbol\",\"paint_raster\",\"paint_hillshade\",\"paint_background\"],paint_fill:{\"fill-antialias\":{type:\"boolean\",default:!0,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"fill-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-outline-color\":{type:\"color\",transition:!0,requires:[{\"!\":\"fill-pattern\"},{\"fill-antialias\":!0}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"fill-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-pattern\":{type:\"resolvedImage\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"cross-faded-data-driven\"}},\"paint_fill-extrusion\":{\"fill-extrusion-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-extrusion-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"fill-extrusion-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-extrusion-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-extrusion-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"fill-extrusion-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"fill-extrusion-pattern\":{type:\"resolvedImage\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"cross-faded-data-driven\"},\"fill-extrusion-height\":{type:\"number\",default:0,minimum:0,units:\"meters\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-extrusion-base\":{type:\"number\",default:0,minimum:0,units:\"meters\",transition:!0,requires:[\"fill-extrusion-height\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"fill-extrusion-vertical-gradient\":{type:\"boolean\",default:!0,transition:!1,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_line:{\"line-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"line-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"line-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"line-width\":{type:\"number\",default:1,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-gap-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-offset\":{type:\"number\",default:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-blur\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"line-dasharray\":{type:\"array\",value:\"number\",minimum:0,transition:!0,units:\"line widths\",requires:[{\"!\":\"line-pattern\"}],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"cross-faded\"},\"line-pattern\":{type:\"resolvedImage\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]},\"property-type\":\"cross-faded-data-driven\"},\"line-gradient\":{type:\"color\",transition:!1,requires:[{\"!\":\"line-dasharray\"},{\"!\":\"line-pattern\"},{source:\"geojson\",has:{lineMetrics:!0}}],expression:{interpolated:!0,parameters:[\"line-progress\"]},\"property-type\":\"color-ramp\"}},paint_circle:{\"circle-radius\":{type:\"number\",default:5,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-blur\":{type:\"number\",default:0,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"circle-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-pitch-scale\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-pitch-alignment\":{type:\"enum\",values:{map:{},viewport:{}},default:\"viewport\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"circle-stroke-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-stroke-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"circle-stroke-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"}},paint_heatmap:{\"heatmap-radius\":{type:\"number\",default:30,minimum:1,transition:!0,units:\"pixels\",expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"heatmap-weight\":{type:\"number\",default:1,minimum:0,transition:!1,expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"heatmap-intensity\":{type:\"number\",default:1,minimum:0,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"heatmap-color\":{type:\"color\",default:[\"interpolate\",[\"linear\"],[\"heatmap-density\"],0,\"rgba(0, 0, 255, 0)\",.1,\"royalblue\",.3,\"cyan\",.5,\"lime\",.7,\"yellow\",1,\"red\"],transition:!1,expression:{interpolated:!0,parameters:[\"heatmap-density\"]},\"property-type\":\"color-ramp\"},\"heatmap-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_symbol:{\"icon-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-halo-color\":{type:\"color\",default:\"rgba(0, 0, 0, 0)\",transition:!0,requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-halo-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-halo-blur\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"icon-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",requires:[\"icon-image\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"icon-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"icon-image\",\"icon-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-color\":{type:\"color\",default:\"#000000\",transition:!0,overridable:!0,requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-halo-color\":{type:\"color\",default:\"rgba(0, 0, 0, 0)\",transition:!0,requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-halo-width\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-halo-blur\":{type:\"number\",default:0,minimum:0,transition:!0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\",\"feature\",\"feature-state\"]},\"property-type\":\"data-driven\"},\"text-translate\":{type:\"array\",value:\"number\",length:2,default:[0,0],transition:!0,units:\"pixels\",requires:[\"text-field\"],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"text-translate-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"map\",requires:[\"text-field\",\"text-translate\"],expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_raster:{\"raster-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-hue-rotate\":{type:\"number\",default:0,period:360,transition:!0,units:\"degrees\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-brightness-min\":{type:\"number\",default:0,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-brightness-max\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-saturation\":{type:\"number\",default:0,minimum:-1,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-contrast\":{type:\"number\",default:0,minimum:-1,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-resampling\":{type:\"enum\",values:{linear:{},nearest:{}},default:\"linear\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"raster-fade-duration\":{type:\"number\",default:300,minimum:0,transition:!1,units:\"milliseconds\",expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_hillshade:{\"hillshade-illumination-direction\":{type:\"number\",default:335,minimum:0,maximum:359,transition:!1,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-illumination-anchor\":{type:\"enum\",values:{map:{},viewport:{}},default:\"viewport\",expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-exaggeration\":{type:\"number\",default:.5,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-shadow-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-highlight-color\":{type:\"color\",default:\"#FFFFFF\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"hillshade-accent-color\":{type:\"color\",default:\"#000000\",transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},paint_background:{\"background-color\":{type:\"color\",default:\"#000000\",transition:!0,requires:[{\"!\":\"background-pattern\"}],expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"},\"background-pattern\":{type:\"resolvedImage\",transition:!0,expression:{interpolated:!1,parameters:[\"zoom\"]},\"property-type\":\"cross-faded\"},\"background-opacity\":{type:\"number\",default:1,minimum:0,maximum:1,transition:!0,expression:{interpolated:!0,parameters:[\"zoom\"]},\"property-type\":\"data-constant\"}},transition:{duration:{type:\"number\",default:300,minimum:0,units:\"milliseconds\"},delay:{type:\"number\",default:0,minimum:0,units:\"milliseconds\"}},\"property-type\":{\"data-driven\":{type:\"property-type\"},\"cross-faded\":{type:\"property-type\"},\"cross-faded-data-driven\":{type:\"property-type\"},\"color-ramp\":{type:\"property-type\"},\"data-constant\":{type:\"property-type\"},constant:{type:\"property-type\"}},promoteId:{\"*\":{type:\"string\"}}},St=function(t,e,r,n){this.message=(t?t+\": \":\"\")+r,n&&(this.identifier=n),null!=e&&e.__line__&&(this.line=e.__line__)};function Et(t){var e=t.value;return e?[new St(t.key,e,\"constants have been deprecated as of v8\")]:[]}function Ct(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];for(var n=0,i=e;n<i.length;n+=1){var a=i[n];for(var o in a)t[o]=a[o]}return t}function Lt(t){return t instanceof Number||t instanceof String||t instanceof Boolean?t.valueOf():t}function It(t){if(Array.isArray(t))return t.map(It);if(t instanceof Object&&!(t instanceof Number||t instanceof String||t instanceof Boolean)){var e={};for(var r in t)e[r]=It(t[r]);return e}return Lt(t)}var Pt=function(t){function e(e,r){t.call(this,r),this.message=r,this.key=e}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e}(Error),zt=function(t,e){void 0===e&&(e=[]),this.parent=t,this.bindings={};for(var r=0,n=e;r<n.length;r+=1){var i=n[r];this.bindings[i[0]]=i[1]}};zt.prototype.concat=function(t){return new zt(this,t)},zt.prototype.get=function(t){if(this.bindings[t])return this.bindings[t];if(this.parent)return this.parent.get(t);throw new Error(t+\" not found in scope.\")},zt.prototype.has=function(t){return!!this.bindings[t]||!!this.parent&&this.parent.has(t)};var Ot={kind:\"null\"},Dt={kind:\"number\"},Rt={kind:\"string\"},Ft={kind:\"boolean\"},Bt={kind:\"color\"},Nt={kind:\"object\"},jt={kind:\"value\"},Ut={kind:\"collator\"},Vt={kind:\"formatted\"},qt={kind:\"resolvedImage\"};function Ht(t,e){return{kind:\"array\",itemType:t,N:e}}function Gt(t){if(\"array\"===t.kind){var e=Gt(t.itemType);return\"number\"==typeof t.N?\"array<\"+e+\", \"+t.N+\">\":\"value\"===t.itemType.kind?\"array\":\"array<\"+e+\">\"}return t.kind}var Yt=[Ot,Dt,Rt,Ft,Bt,Vt,Nt,Ht(jt),qt];function Wt(t,e){if(\"error\"===e.kind)return null;if(\"array\"===t.kind){if(\"array\"===e.kind&&(0===e.N&&\"value\"===e.itemType.kind||!Wt(t.itemType,e.itemType))&&(\"number\"!=typeof t.N||t.N===e.N))return null}else{if(t.kind===e.kind)return null;if(\"value\"===t.kind)for(var r=0,n=Yt;r<n.length;r+=1)if(!Wt(n[r],e))return null}return\"Expected \"+Gt(t)+\" but found \"+Gt(e)+\" instead.\"}function Xt(t,e){return e.some((function(e){return e.kind===t.kind}))}function Zt(t,e){return e.some((function(e){return\"null\"===e?null===t:\"array\"===e?Array.isArray(t):\"object\"===e?t&&!Array.isArray(t)&&\"object\"==typeof t:e===typeof t}))}var Jt=e((function(t,e){var r={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],rebeccapurple:[102,51,153,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]};function n(t){return(t=Math.round(t))<0?0:t>255?255:t}function i(t){return n(\"%\"===t[t.length-1]?parseFloat(t)/100*255:parseInt(t))}function a(t){return(e=\"%\"===t[t.length-1]?parseFloat(t)/100:parseFloat(t))<0?0:e>1?1:e;var e}function o(t,e,r){return r<0?r+=1:r>1&&(r-=1),6*r<1?t+(e-t)*r*6:2*r<1?e:3*r<2?t+(e-t)*(2/3-r)*6:t}try{e.parseCSSColor=function(t){var e,s=t.replace(/ /g,\"\").toLowerCase();if(s in r)return r[s].slice();if(\"#\"===s[0])return 4===s.length?(e=parseInt(s.substr(1),16))>=0&&e<=4095?[(3840&e)>>4|(3840&e)>>8,240&e|(240&e)>>4,15&e|(15&e)<<4,1]:null:7===s.length&&(e=parseInt(s.substr(1),16))>=0&&e<=16777215?[(16711680&e)>>16,(65280&e)>>8,255&e,1]:null;var l=s.indexOf(\"(\"),c=s.indexOf(\")\");if(-1!==l&&c+1===s.length){var u=s.substr(0,l),f=s.substr(l+1,c-(l+1)).split(\",\"),h=1;switch(u){case\"rgba\":if(4!==f.length)return null;h=a(f.pop());case\"rgb\":return 3!==f.length?null:[i(f[0]),i(f[1]),i(f[2]),h];case\"hsla\":if(4!==f.length)return null;h=a(f.pop());case\"hsl\":if(3!==f.length)return null;var p=(parseFloat(f[0])%360+360)%360/360,d=a(f[1]),g=a(f[2]),m=g<=.5?g*(d+1):g+d-g*d,v=2*g-m;return[n(255*o(v,m,p+1/3)),n(255*o(v,m,p)),n(255*o(v,m,p-1/3)),h];default:return null}}return null}}catch(t){}})).parseCSSColor,Kt=function(t,e,r,n){void 0===n&&(n=1),this.r=t,this.g=e,this.b=r,this.a=n};Kt.parse=function(t){if(t){if(t instanceof Kt)return t;if(\"string\"==typeof t){var e=Jt(t);if(e)return new Kt(e[0]/255*e[3],e[1]/255*e[3],e[2]/255*e[3],e[3])}}},Kt.prototype.toString=function(){var t=this.toArray(),e=t[1],r=t[2],n=t[3];return\"rgba(\"+Math.round(t[0])+\",\"+Math.round(e)+\",\"+Math.round(r)+\",\"+n+\")\"},Kt.prototype.toArray=function(){var t=this.a;return 0===t?[0,0,0,0]:[255*this.r/t,255*this.g/t,255*this.b/t,t]},Kt.black=new Kt(0,0,0,1),Kt.white=new Kt(1,1,1,1),Kt.transparent=new Kt(0,0,0,0),Kt.red=new Kt(1,0,0,1);var Qt=function(t,e,r){this.sensitivity=t?e?\"variant\":\"case\":e?\"accent\":\"base\",this.locale=r,this.collator=new Intl.Collator(this.locale?this.locale:[],{sensitivity:this.sensitivity,usage:\"search\"})};Qt.prototype.compare=function(t,e){return this.collator.compare(t,e)},Qt.prototype.resolvedLocale=function(){return new Intl.Collator(this.locale?this.locale:[]).resolvedOptions().locale};var $t=function(t,e,r,n,i){this.text=t,this.image=e,this.scale=r,this.fontStack=n,this.textColor=i},te=function(t){this.sections=t};te.fromString=function(t){return new te([new $t(t,null,null,null,null)])},te.prototype.isEmpty=function(){return 0===this.sections.length||!this.sections.some((function(t){return 0!==t.text.length||t.image&&0!==t.image.name.length}))},te.factory=function(t){return t instanceof te?t:te.fromString(t)},te.prototype.toString=function(){return 0===this.sections.length?\"\":this.sections.map((function(t){return t.text})).join(\"\")},te.prototype.serialize=function(){for(var t=[\"format\"],e=0,r=this.sections;e<r.length;e+=1){var n=r[e];if(n.image)t.push([\"image\",n.image.name]);else{t.push(n.text);var i={};n.fontStack&&(i[\"text-font\"]=[\"literal\",n.fontStack.split(\",\")]),n.scale&&(i[\"font-scale\"]=n.scale),n.textColor&&(i[\"text-color\"]=[\"rgba\"].concat(n.textColor.toArray())),t.push(i)}}return t};var ee=function(t){this.name=t.name,this.available=t.available};function re(t,e,r,n){return\"number\"==typeof t&&t>=0&&t<=255&&\"number\"==typeof e&&e>=0&&e<=255&&\"number\"==typeof r&&r>=0&&r<=255?void 0===n||\"number\"==typeof n&&n>=0&&n<=1?null:\"Invalid rgba value [\"+[t,e,r,n].join(\", \")+\"]: 'a' must be between 0 and 1.\":\"Invalid rgba value [\"+(\"number\"==typeof n?[t,e,r,n]:[t,e,r]).join(\", \")+\"]: 'r', 'g', and 'b' must be between 0 and 255.\"}function ne(t){if(null===t)return!0;if(\"string\"==typeof t)return!0;if(\"boolean\"==typeof t)return!0;if(\"number\"==typeof t)return!0;if(t instanceof Kt)return!0;if(t instanceof Qt)return!0;if(t instanceof te)return!0;if(t instanceof ee)return!0;if(Array.isArray(t)){for(var e=0,r=t;e<r.length;e+=1)if(!ne(r[e]))return!1;return!0}if(\"object\"==typeof t){for(var n in t)if(!ne(t[n]))return!1;return!0}return!1}function ie(t){if(null===t)return Ot;if(\"string\"==typeof t)return Rt;if(\"boolean\"==typeof t)return Ft;if(\"number\"==typeof t)return Dt;if(t instanceof Kt)return Bt;if(t instanceof Qt)return Ut;if(t instanceof te)return Vt;if(t instanceof ee)return qt;if(Array.isArray(t)){for(var e,r=t.length,n=0,i=t;n<i.length;n+=1){var a=ie(i[n]);if(e){if(e===a)continue;e=jt;break}e=a}return Ht(e||jt,r)}return Nt}function ae(t){var e=typeof t;return null===t?\"\":\"string\"===e||\"number\"===e||\"boolean\"===e?String(t):t instanceof Kt||t instanceof te||t instanceof ee?t.toString():JSON.stringify(t)}ee.prototype.toString=function(){return this.name},ee.fromString=function(t){return t?new ee({name:t,available:!1}):null},ee.prototype.serialize=function(){return[\"image\",this.name]};var oe=function(t,e){this.type=t,this.value=e};oe.parse=function(t,e){if(2!==t.length)return e.error(\"'literal' expression requires exactly one argument, but found \"+(t.length-1)+\" instead.\");if(!ne(t[1]))return e.error(\"invalid value\");var r=t[1],n=ie(r),i=e.expectedType;return\"array\"!==n.kind||0!==n.N||!i||\"array\"!==i.kind||\"number\"==typeof i.N&&0!==i.N||(n=i),new oe(n,r)},oe.prototype.evaluate=function(){return this.value},oe.prototype.eachChild=function(){},oe.prototype.outputDefined=function(){return!0},oe.prototype.serialize=function(){return\"array\"===this.type.kind||\"object\"===this.type.kind?[\"literal\",this.value]:this.value instanceof Kt?[\"rgba\"].concat(this.value.toArray()):this.value instanceof te?this.value.serialize():this.value};var se=function(t){this.name=\"ExpressionEvaluationError\",this.message=t};se.prototype.toJSON=function(){return this.message};var le={string:Rt,number:Dt,boolean:Ft,object:Nt},ce=function(t,e){this.type=t,this.args=e};ce.parse=function(t,e){if(t.length<2)return e.error(\"Expected at least one argument.\");var r,n=1,i=t[0];if(\"array\"===i){var a,o;if(t.length>2){var s=t[1];if(\"string\"!=typeof s||!(s in le)||\"object\"===s)return e.error('The item type argument of \"array\" must be one of string, number, boolean',1);a=le[s],n++}else a=jt;if(t.length>3){if(null!==t[2]&&(\"number\"!=typeof t[2]||t[2]<0||t[2]!==Math.floor(t[2])))return e.error('The length argument to \"array\" must be a positive integer literal',2);o=t[2],n++}r=Ht(a,o)}else r=le[i];for(var l=[];n<t.length;n++){var c=e.parse(t[n],n,jt);if(!c)return null;l.push(c)}return new ce(r,l)},ce.prototype.evaluate=function(t){for(var e=0;e<this.args.length;e++){var r=this.args[e].evaluate(t);if(!Wt(this.type,ie(r)))return r;if(e===this.args.length-1)throw new se(\"Expected value to be of type \"+Gt(this.type)+\", but found \"+Gt(ie(r))+\" instead.\")}return null},ce.prototype.eachChild=function(t){this.args.forEach(t)},ce.prototype.outputDefined=function(){return this.args.every((function(t){return t.outputDefined()}))},ce.prototype.serialize=function(){var t=this.type,e=[t.kind];if(\"array\"===t.kind){var r=t.itemType;if(\"string\"===r.kind||\"number\"===r.kind||\"boolean\"===r.kind){e.push(r.kind);var n=t.N;(\"number\"==typeof n||this.args.length>1)&&e.push(n)}}return e.concat(this.args.map((function(t){return t.serialize()})))};var ue=function(t){this.type=Vt,this.sections=t};ue.parse=function(t,e){if(t.length<2)return e.error(\"Expected at least one argument.\");var r=t[1];if(!Array.isArray(r)&&\"object\"==typeof r)return e.error(\"First argument must be an image or text section.\");for(var n=[],i=!1,a=1;a<=t.length-1;++a){var o=t[a];if(i&&\"object\"==typeof o&&!Array.isArray(o)){i=!1;var s=null;if(o[\"font-scale\"]&&!(s=e.parse(o[\"font-scale\"],1,Dt)))return null;var l=null;if(o[\"text-font\"]&&!(l=e.parse(o[\"text-font\"],1,Ht(Rt))))return null;var c=null;if(o[\"text-color\"]&&!(c=e.parse(o[\"text-color\"],1,Bt)))return null;var u=n[n.length-1];u.scale=s,u.font=l,u.textColor=c}else{var f=e.parse(t[a],1,jt);if(!f)return null;var h=f.type.kind;if(\"string\"!==h&&\"value\"!==h&&\"null\"!==h&&\"resolvedImage\"!==h)return e.error(\"Formatted text type must be 'string', 'value', 'image' or 'null'.\");i=!0,n.push({content:f,scale:null,font:null,textColor:null})}}return new ue(n)},ue.prototype.evaluate=function(t){return new te(this.sections.map((function(e){var r=e.content.evaluate(t);return ie(r)===qt?new $t(\"\",r,null,null,null):new $t(ae(r),null,e.scale?e.scale.evaluate(t):null,e.font?e.font.evaluate(t).join(\",\"):null,e.textColor?e.textColor.evaluate(t):null)})))},ue.prototype.eachChild=function(t){for(var e=0,r=this.sections;e<r.length;e+=1){var n=r[e];t(n.content),n.scale&&t(n.scale),n.font&&t(n.font),n.textColor&&t(n.textColor)}},ue.prototype.outputDefined=function(){return!1},ue.prototype.serialize=function(){for(var t=[\"format\"],e=0,r=this.sections;e<r.length;e+=1){var n=r[e];t.push(n.content.serialize());var i={};n.scale&&(i[\"font-scale\"]=n.scale.serialize()),n.font&&(i[\"text-font\"]=n.font.serialize()),n.textColor&&(i[\"text-color\"]=n.textColor.serialize()),t.push(i)}return t};var fe=function(t){this.type=qt,this.input=t};fe.parse=function(t,e){if(2!==t.length)return e.error(\"Expected two arguments.\");var r=e.parse(t[1],1,Rt);return r?new fe(r):e.error(\"No image name provided.\")},fe.prototype.evaluate=function(t){var e=this.input.evaluate(t),r=ee.fromString(e);return r&&t.availableImages&&(r.available=t.availableImages.indexOf(e)>-1),r},fe.prototype.eachChild=function(t){t(this.input)},fe.prototype.outputDefined=function(){return!1},fe.prototype.serialize=function(){return[\"image\",this.input.serialize()]};var he={\"to-boolean\":Ft,\"to-color\":Bt,\"to-number\":Dt,\"to-string\":Rt},pe=function(t,e){this.type=t,this.args=e};pe.parse=function(t,e){if(t.length<2)return e.error(\"Expected at least one argument.\");var r=t[0];if((\"to-boolean\"===r||\"to-string\"===r)&&2!==t.length)return e.error(\"Expected one argument.\");for(var n=he[r],i=[],a=1;a<t.length;a++){var o=e.parse(t[a],a,jt);if(!o)return null;i.push(o)}return new pe(n,i)},pe.prototype.evaluate=function(t){if(\"boolean\"===this.type.kind)return Boolean(this.args[0].evaluate(t));if(\"color\"===this.type.kind){for(var e,r,n=0,i=this.args;n<i.length;n+=1){if(r=null,(e=i[n].evaluate(t))instanceof Kt)return e;if(\"string\"==typeof e){var a=t.parseColor(e);if(a)return a}else if(Array.isArray(e)&&!(r=e.length<3||e.length>4?\"Invalid rbga value \"+JSON.stringify(e)+\": expected an array containing either three or four numeric values.\":re(e[0],e[1],e[2],e[3])))return new Kt(e[0]/255,e[1]/255,e[2]/255,e[3])}throw new se(r||\"Could not parse color from value '\"+(\"string\"==typeof e?e:String(JSON.stringify(e)))+\"'\")}if(\"number\"===this.type.kind){for(var o=null,s=0,l=this.args;s<l.length;s+=1){if(null===(o=l[s].evaluate(t)))return 0;var c=Number(o);if(!isNaN(c))return c}throw new se(\"Could not convert \"+JSON.stringify(o)+\" to number.\")}return\"formatted\"===this.type.kind?te.fromString(ae(this.args[0].evaluate(t))):\"resolvedImage\"===this.type.kind?ee.fromString(ae(this.args[0].evaluate(t))):ae(this.args[0].evaluate(t))},pe.prototype.eachChild=function(t){this.args.forEach(t)},pe.prototype.outputDefined=function(){return this.args.every((function(t){return t.outputDefined()}))},pe.prototype.serialize=function(){if(\"formatted\"===this.type.kind)return new ue([{content:this.args[0],scale:null,font:null,textColor:null}]).serialize();if(\"resolvedImage\"===this.type.kind)return new fe(this.args[0]).serialize();var t=[\"to-\"+this.type.kind];return this.eachChild((function(e){t.push(e.serialize())})),t};var de=[\"Unknown\",\"Point\",\"LineString\",\"Polygon\"],ge=function(){this.globals=null,this.feature=null,this.featureState=null,this.formattedSection=null,this._parseColorCache={},this.availableImages=null,this.canonical=null};ge.prototype.id=function(){return this.feature&&\"id\"in this.feature?this.feature.id:null},ge.prototype.geometryType=function(){return this.feature?\"number\"==typeof this.feature.type?de[this.feature.type]:this.feature.type:null},ge.prototype.geometry=function(){return this.feature&&\"geometry\"in this.feature?this.feature.geometry:null},ge.prototype.canonicalID=function(){return this.canonical},ge.prototype.properties=function(){return this.feature&&this.feature.properties||{}},ge.prototype.parseColor=function(t){var e=this._parseColorCache[t];return e||(e=this._parseColorCache[t]=Kt.parse(t)),e};var me=function(t,e,r,n){this.name=t,this.type=e,this._evaluate=r,this.args=n};me.prototype.evaluate=function(t){return this._evaluate(t,this.args)},me.prototype.eachChild=function(t){this.args.forEach(t)},me.prototype.outputDefined=function(){return!1},me.prototype.serialize=function(){return[this.name].concat(this.args.map((function(t){return t.serialize()})))},me.parse=function(t,e){var r,n=t[0],i=me.definitions[n];if(!i)return e.error('Unknown expression \"'+n+'\". If you wanted a literal array, use [\"literal\", [...]].',0);for(var a=Array.isArray(i)?i[0]:i.type,o=Array.isArray(i)?[[i[1],i[2]]]:i.overloads,s=o.filter((function(e){var r=e[0];return!Array.isArray(r)||r.length===t.length-1})),l=null,c=0,u=s;c<u.length;c+=1){var f=u[c],h=f[0],p=f[1];l=new Be(e.registry,e.path,null,e.scope);for(var d=[],g=!1,m=1;m<t.length;m++){var v=t[m],y=Array.isArray(h)?h[m-1]:h.type,x=l.parse(v,1+d.length,y);if(!x){g=!0;break}d.push(x)}if(!g)if(Array.isArray(h)&&h.length!==d.length)l.error(\"Expected \"+h.length+\" arguments, but found \"+d.length+\" instead.\");else{for(var b=0;b<d.length;b++){var _=Array.isArray(h)?h[b]:h.type,w=d[b];l.concat(b+1).checkSubtype(_,w.type)}if(0===l.errors.length)return new me(n,a,p,d)}}if(1===s.length)(r=e.errors).push.apply(r,l.errors);else{for(var T=(s.length?s:o).map((function(t){var e;return e=t[0],Array.isArray(e)?\"(\"+e.map(Gt).join(\", \")+\")\":\"(\"+Gt(e.type)+\"...)\"})).join(\" | \"),k=[],M=1;M<t.length;M++){var A=e.parse(t[M],1+k.length);if(!A)return null;k.push(Gt(A.type))}e.error(\"Expected arguments of type \"+T+\", but found (\"+k.join(\", \")+\") instead.\")}return null},me.register=function(t,e){for(var r in me.definitions=e,e)t[r]=me};var ve=function(t,e,r){this.type=Ut,this.locale=r,this.caseSensitive=t,this.diacriticSensitive=e};function ye(t,e){t[0]=Math.min(t[0],e[0]),t[1]=Math.min(t[1],e[1]),t[2]=Math.max(t[2],e[0]),t[3]=Math.max(t[3],e[1])}function xe(t,e){return!(t[0]<=e[0]||t[2]>=e[2]||t[1]<=e[1]||t[3]>=e[3])}function be(t,e){var r=(180+t[0])/360,n=(180-180/Math.PI*Math.log(Math.tan(Math.PI/4+t[1]*Math.PI/360)))/360,i=Math.pow(2,e.z);return[Math.round(r*i*8192),Math.round(n*i*8192)]}function _e(t,e,r){return e[1]>t[1]!=r[1]>t[1]&&t[0]<(r[0]-e[0])*(t[1]-e[1])/(r[1]-e[1])+e[0]}function we(t,e){for(var r,n,i,a,o,s,l,c=!1,u=0,f=e.length;u<f;u++)for(var h=e[u],p=0,d=h.length;p<d-1;p++){if((a=(r=t)[0]-(n=h[p])[0])*(l=r[1]-(i=h[p+1])[1])-(s=r[0]-i[0])*(o=r[1]-n[1])==0&&a*s<=0&&o*l<=0)return!1;_e(t,h[p],h[p+1])&&(c=!c)}return c}function Te(t,e){for(var r=0;r<e.length;r++)if(we(t,e[r]))return!0;return!1}function ke(t,e,r,n){var i=n[0]-r[0],a=n[1]-r[1],o=(t[0]-r[0])*a-i*(t[1]-r[1]),s=(e[0]-r[0])*a-i*(e[1]-r[1]);return o>0&&s<0||o<0&&s>0}function Me(t,e,r){for(var n=0,i=r;n<i.length;n+=1)for(var a=i[n],o=0;o<a.length-1;++o)if(0!=(f=[(u=a[o+1])[0]-(c=a[o])[0],u[1]-c[1]])[0]*(h=[(l=e)[0]-(s=t)[0],l[1]-s[1]])[1]-f[1]*h[0]&&ke(s,l,c,u)&&ke(c,u,s,l))return!0;var s,l,c,u,f,h;return!1}function Ae(t,e){for(var r=0;r<t.length;++r)if(!we(t[r],e))return!1;for(var n=0;n<t.length-1;++n)if(Me(t[n],t[n+1],e))return!1;return!0}function Se(t,e){for(var r=0;r<e.length;r++)if(Ae(t,e[r]))return!0;return!1}function Ee(t,e,r){for(var n=[],i=0;i<t.length;i++){for(var a=[],o=0;o<t[i].length;o++){var s=be(t[i][o],r);ye(e,s),a.push(s)}n.push(a)}return n}function Ce(t,e,r){for(var n=[],i=0;i<t.length;i++){var a=Ee(t[i],e,r);n.push(a)}return n}function Le(t,e,r,n){if(t[0]<r[0]||t[0]>r[2]){var i=.5*n,a=t[0]-r[0]>i?-n:r[0]-t[0]>i?n:0;0===a&&(a=t[0]-r[2]>i?-n:r[2]-t[0]>i?n:0),t[0]+=a}ye(e,t)}function Ie(t,e,r,n){for(var i=8192*Math.pow(2,n.z),a=[8192*n.x,8192*n.y],o=[],s=0,l=t;s<l.length;s+=1)for(var c=0,u=l[s];c<u.length;c+=1){var f=u[c],h=[f.x+a[0],f.y+a[1]];Le(h,e,r,i),o.push(h)}return o}function Pe(t,e,r,n){for(var i,a=8192*Math.pow(2,n.z),o=[8192*n.x,8192*n.y],s=[],l=0,c=t;l<c.length;l+=1){for(var u=[],f=0,h=c[l];f<h.length;f+=1){var p=h[f],d=[p.x+o[0],p.y+o[1]];ye(e,d),u.push(d)}s.push(u)}if(e[2]-e[0]<=a/2){(i=e)[0]=i[1]=1/0,i[2]=i[3]=-1/0;for(var g=0,m=s;g<m.length;g+=1)for(var v=0,y=m[g];v<y.length;v+=1)Le(y[v],e,r,a)}return s}ve.parse=function(t,e){if(2!==t.length)return e.error(\"Expected one argument.\");var r=t[1];if(\"object\"!=typeof r||Array.isArray(r))return e.error(\"Collator options argument must be an object.\");var n=e.parse(void 0!==r[\"case-sensitive\"]&&r[\"case-sensitive\"],1,Ft);if(!n)return null;var i=e.parse(void 0!==r[\"diacritic-sensitive\"]&&r[\"diacritic-sensitive\"],1,Ft);if(!i)return null;var a=null;return r.locale&&!(a=e.parse(r.locale,1,Rt))?null:new ve(n,i,a)},ve.prototype.evaluate=function(t){return new Qt(this.caseSensitive.evaluate(t),this.diacriticSensitive.evaluate(t),this.locale?this.locale.evaluate(t):null)},ve.prototype.eachChild=function(t){t(this.caseSensitive),t(this.diacriticSensitive),this.locale&&t(this.locale)},ve.prototype.outputDefined=function(){return!1},ve.prototype.serialize=function(){var t={};return t[\"case-sensitive\"]=this.caseSensitive.serialize(),t[\"diacritic-sensitive\"]=this.diacriticSensitive.serialize(),this.locale&&(t.locale=this.locale.serialize()),[\"collator\",t]};var ze=function(t,e){this.type=Ft,this.geojson=t,this.geometries=e};function Oe(t){if(t instanceof me){if(\"get\"===t.name&&1===t.args.length)return!1;if(\"feature-state\"===t.name)return!1;if(\"has\"===t.name&&1===t.args.length)return!1;if(\"properties\"===t.name||\"geometry-type\"===t.name||\"id\"===t.name)return!1;if(/^filter-/.test(t.name))return!1}if(t instanceof ze)return!1;var e=!0;return t.eachChild((function(t){e&&!Oe(t)&&(e=!1)})),e}function De(t){if(t instanceof me&&\"feature-state\"===t.name)return!1;var e=!0;return t.eachChild((function(t){e&&!De(t)&&(e=!1)})),e}function Re(t,e){if(t instanceof me&&e.indexOf(t.name)>=0)return!1;var r=!0;return t.eachChild((function(t){r&&!Re(t,e)&&(r=!1)})),r}ze.parse=function(t,e){if(2!==t.length)return e.error(\"'within' expression requires exactly one argument, but found \"+(t.length-1)+\" instead.\");if(ne(t[1])){var r=t[1];if(\"FeatureCollection\"===r.type)for(var n=0;n<r.features.length;++n){var i=r.features[n].geometry.type;if(\"Polygon\"===i||\"MultiPolygon\"===i)return new ze(r,r.features[n].geometry)}else if(\"Feature\"===r.type){var a=r.geometry.type;if(\"Polygon\"===a||\"MultiPolygon\"===a)return new ze(r,r.geometry)}else if(\"Polygon\"===r.type||\"MultiPolygon\"===r.type)return new ze(r,r)}return e.error(\"'within' expression requires valid geojson object that contains polygon geometry type.\")},ze.prototype.evaluate=function(t){if(null!=t.geometry()&&null!=t.canonicalID()){if(\"Point\"===t.geometryType())return function(t,e){var r=[1/0,1/0,-1/0,-1/0],n=[1/0,1/0,-1/0,-1/0],i=t.canonicalID();if(\"Polygon\"===e.type){var a=Ee(e.coordinates,n,i),o=Ie(t.geometry(),r,n,i);if(!xe(r,n))return!1;for(var s=0,l=o;s<l.length;s+=1)if(!we(l[s],a))return!1}if(\"MultiPolygon\"===e.type){var c=Ce(e.coordinates,n,i),u=Ie(t.geometry(),r,n,i);if(!xe(r,n))return!1;for(var f=0,h=u;f<h.length;f+=1)if(!Te(h[f],c))return!1}return!0}(t,this.geometries);if(\"LineString\"===t.geometryType())return function(t,e){var r=[1/0,1/0,-1/0,-1/0],n=[1/0,1/0,-1/0,-1/0],i=t.canonicalID();if(\"Polygon\"===e.type){var a=Ee(e.coordinates,n,i),o=Pe(t.geometry(),r,n,i);if(!xe(r,n))return!1;for(var s=0,l=o;s<l.length;s+=1)if(!Ae(l[s],a))return!1}if(\"MultiPolygon\"===e.type){var c=Ce(e.coordinates,n,i),u=Pe(t.geometry(),r,n,i);if(!xe(r,n))return!1;for(var f=0,h=u;f<h.length;f+=1)if(!Se(h[f],c))return!1}return!0}(t,this.geometries)}return!1},ze.prototype.eachChild=function(){},ze.prototype.outputDefined=function(){return!0},ze.prototype.serialize=function(){return[\"within\",this.geojson]};var Fe=function(t,e){this.type=e.type,this.name=t,this.boundExpression=e};Fe.parse=function(t,e){if(2!==t.length||\"string\"!=typeof t[1])return e.error(\"'var' expression requires exactly one string literal argument.\");var r=t[1];return e.scope.has(r)?new Fe(r,e.scope.get(r)):e.error('Unknown variable \"'+r+'\". Make sure \"'+r+'\" has been bound in an enclosing \"let\" expression before using it.',1)},Fe.prototype.evaluate=function(t){return this.boundExpression.evaluate(t)},Fe.prototype.eachChild=function(){},Fe.prototype.outputDefined=function(){return!1},Fe.prototype.serialize=function(){return[\"var\",this.name]};var Be=function(t,e,r,n,i){void 0===e&&(e=[]),void 0===n&&(n=new zt),void 0===i&&(i=[]),this.registry=t,this.path=e,this.key=e.map((function(t){return\"[\"+t+\"]\"})).join(\"\"),this.scope=n,this.errors=i,this.expectedType=r};function Ne(t,e){for(var r,n=t.length-1,i=0,a=n,o=0;i<=a;)if((r=t[o=Math.floor((i+a)/2)])<=e){if(o===n||e<t[o+1])return o;i=o+1}else{if(!(r>e))throw new se(\"Input is not a number.\");a=o-1}return 0}Be.prototype.parse=function(t,e,r,n,i){return void 0===i&&(i={}),e?this.concat(e,r,n)._parse(t,i):this._parse(t,i)},Be.prototype._parse=function(t,e){function r(t,e,r){return\"assert\"===r?new ce(e,[t]):\"coerce\"===r?new pe(e,[t]):t}if(null!==t&&\"string\"!=typeof t&&\"boolean\"!=typeof t&&\"number\"!=typeof t||(t=[\"literal\",t]),Array.isArray(t)){if(0===t.length)return this.error('Expected an array with at least one element. If you wanted a literal array, use [\"literal\", []].');var n=t[0];if(\"string\"!=typeof n)return this.error(\"Expression name must be a string, but found \"+typeof n+' instead. If you wanted a literal array, use [\"literal\", [...]].',0),null;var i=this.registry[n];if(i){var a=i.parse(t,this);if(!a)return null;if(this.expectedType){var o=this.expectedType,s=a.type;if(\"string\"!==o.kind&&\"number\"!==o.kind&&\"boolean\"!==o.kind&&\"object\"!==o.kind&&\"array\"!==o.kind||\"value\"!==s.kind)if(\"color\"!==o.kind&&\"formatted\"!==o.kind&&\"resolvedImage\"!==o.kind||\"value\"!==s.kind&&\"string\"!==s.kind){if(this.checkSubtype(o,s))return null}else a=r(a,o,e.typeAnnotation||\"coerce\");else a=r(a,o,e.typeAnnotation||\"assert\")}if(!(a instanceof oe)&&\"resolvedImage\"!==a.type.kind&&function t(e){if(e instanceof Fe)return t(e.boundExpression);if(e instanceof me&&\"error\"===e.name)return!1;if(e instanceof ve)return!1;if(e instanceof ze)return!1;var r=e instanceof pe||e instanceof ce,n=!0;return e.eachChild((function(e){n=r?n&&t(e):n&&e instanceof oe})),!!n&&Oe(e)&&Re(e,[\"zoom\",\"heatmap-density\",\"line-progress\",\"accumulated\",\"is-supported-script\"])}(a)){var l=new ge;try{a=new oe(a.type,a.evaluate(l))}catch(t){return this.error(t.message),null}}return a}return this.error('Unknown expression \"'+n+'\". If you wanted a literal array, use [\"literal\", [...]].',0)}return this.error(void 0===t?\"'undefined' value invalid. Use null instead.\":\"object\"==typeof t?'Bare objects invalid. Use [\"literal\", {...}] instead.':\"Expected an array, but found \"+typeof t+\" instead.\")},Be.prototype.concat=function(t,e,r){var n=\"number\"==typeof t?this.path.concat(t):this.path,i=r?this.scope.concat(r):this.scope;return new Be(this.registry,n,e||null,i,this.errors)},Be.prototype.error=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];var n=\"\"+this.key+e.map((function(t){return\"[\"+t+\"]\"})).join(\"\");this.errors.push(new Pt(n,t))},Be.prototype.checkSubtype=function(t,e){var r=Wt(t,e);return r&&this.error(r),r};var je=function(t,e,r){this.type=t,this.input=e,this.labels=[],this.outputs=[];for(var n=0,i=r;n<i.length;n+=1){var a=i[n],o=a[1];this.labels.push(a[0]),this.outputs.push(o)}};function Ue(t,e,r){return t*(1-r)+e*r}je.parse=function(t,e){if(t.length-1<4)return e.error(\"Expected at least 4 arguments, but found only \"+(t.length-1)+\".\");if((t.length-1)%2!=0)return e.error(\"Expected an even number of arguments.\");var r=e.parse(t[1],1,Dt);if(!r)return null;var n=[],i=null;e.expectedType&&\"value\"!==e.expectedType.kind&&(i=e.expectedType);for(var a=1;a<t.length;a+=2){var o=1===a?-1/0:t[a],s=t[a+1],l=a,c=a+1;if(\"number\"!=typeof o)return e.error('Input/output pairs for \"step\" expressions must be defined using literal numeric values (not computed expressions) for the input values.',l);if(n.length&&n[n.length-1][0]>=o)return e.error('Input/output pairs for \"step\" expressions must be arranged with input values in strictly ascending order.',l);var u=e.parse(s,c,i);if(!u)return null;i=i||u.type,n.push([o,u])}return new je(i,r,n)},je.prototype.evaluate=function(t){var e=this.labels,r=this.outputs;if(1===e.length)return r[0].evaluate(t);var n=this.input.evaluate(t);if(n<=e[0])return r[0].evaluate(t);var i=e.length;return n>=e[i-1]?r[i-1].evaluate(t):r[Ne(e,n)].evaluate(t)},je.prototype.eachChild=function(t){t(this.input);for(var e=0,r=this.outputs;e<r.length;e+=1)t(r[e])},je.prototype.outputDefined=function(){return this.outputs.every((function(t){return t.outputDefined()}))},je.prototype.serialize=function(){for(var t=[\"step\",this.input.serialize()],e=0;e<this.labels.length;e++)e>0&&t.push(this.labels[e]),t.push(this.outputs[e].serialize());return t};var Ve=Object.freeze({__proto__:null,number:Ue,color:function(t,e,r){return new Kt(Ue(t.r,e.r,r),Ue(t.g,e.g,r),Ue(t.b,e.b,r),Ue(t.a,e.a,r))},array:function(t,e,r){return t.map((function(t,n){return Ue(t,e[n],r)}))}}),qe=6/29*3*(6/29),He=Math.PI/180,Ge=180/Math.PI;function Ye(t){return t>.008856451679035631?Math.pow(t,1/3):t/qe+4/29}function We(t){return t>6/29?t*t*t:qe*(t-4/29)}function Xe(t){return 255*(t<=.0031308?12.92*t:1.055*Math.pow(t,1/2.4)-.055)}function Ze(t){return(t/=255)<=.04045?t/12.92:Math.pow((t+.055)/1.055,2.4)}function Je(t){var e=Ze(t.r),r=Ze(t.g),n=Ze(t.b),i=Ye((.4124564*e+.3575761*r+.1804375*n)/.95047),a=Ye((.2126729*e+.7151522*r+.072175*n)/1);return{l:116*a-16,a:500*(i-a),b:200*(a-Ye((.0193339*e+.119192*r+.9503041*n)/1.08883)),alpha:t.a}}function Ke(t){var e=(t.l+16)/116,r=isNaN(t.a)?e:e+t.a/500,n=isNaN(t.b)?e:e-t.b/200;return e=1*We(e),r=.95047*We(r),n=1.08883*We(n),new Kt(Xe(3.2404542*r-1.5371385*e-.4985314*n),Xe(-.969266*r+1.8760108*e+.041556*n),Xe(.0556434*r-.2040259*e+1.0572252*n),t.alpha)}function Qe(t,e,r){var n=e-t;return t+r*(n>180||n<-180?n-360*Math.round(n/360):n)}var $e={forward:Je,reverse:Ke,interpolate:function(t,e,r){return{l:Ue(t.l,e.l,r),a:Ue(t.a,e.a,r),b:Ue(t.b,e.b,r),alpha:Ue(t.alpha,e.alpha,r)}}},tr={forward:function(t){var e=Je(t),r=e.l,n=e.a,i=e.b,a=Math.atan2(i,n)*Ge;return{h:a<0?a+360:a,c:Math.sqrt(n*n+i*i),l:r,alpha:t.a}},reverse:function(t){var e=t.h*He,r=t.c;return Ke({l:t.l,a:Math.cos(e)*r,b:Math.sin(e)*r,alpha:t.alpha})},interpolate:function(t,e,r){return{h:Qe(t.h,e.h,r),c:Ue(t.c,e.c,r),l:Ue(t.l,e.l,r),alpha:Ue(t.alpha,e.alpha,r)}}},er=Object.freeze({__proto__:null,lab:$e,hcl:tr}),rr=function(t,e,r,n,i){this.type=t,this.operator=e,this.interpolation=r,this.input=n,this.labels=[],this.outputs=[];for(var a=0,o=i;a<o.length;a+=1){var s=o[a],l=s[1];this.labels.push(s[0]),this.outputs.push(l)}};function nr(t,e,r,n){var i=n-r,a=t-r;return 0===i?0:1===e?a/i:(Math.pow(e,a)-1)/(Math.pow(e,i)-1)}rr.interpolationFactor=function(t,e,n,i){var a=0;if(\"exponential\"===t.name)a=nr(e,t.base,n,i);else if(\"linear\"===t.name)a=nr(e,1,n,i);else if(\"cubic-bezier\"===t.name){var o=t.controlPoints;a=new r(o[0],o[1],o[2],o[3]).solve(nr(e,1,n,i))}return a},rr.parse=function(t,e){var r=t[0],n=t[1],i=t[2],a=t.slice(3);if(!Array.isArray(n)||0===n.length)return e.error(\"Expected an interpolation type expression.\",1);if(\"linear\"===n[0])n={name:\"linear\"};else if(\"exponential\"===n[0]){var o=n[1];if(\"number\"!=typeof o)return e.error(\"Exponential interpolation requires a numeric base.\",1,1);n={name:\"exponential\",base:o}}else{if(\"cubic-bezier\"!==n[0])return e.error(\"Unknown interpolation type \"+String(n[0]),1,0);var s=n.slice(1);if(4!==s.length||s.some((function(t){return\"number\"!=typeof t||t<0||t>1})))return e.error(\"Cubic bezier interpolation requires four numeric arguments with values between 0 and 1.\",1);n={name:\"cubic-bezier\",controlPoints:s}}if(t.length-1<4)return e.error(\"Expected at least 4 arguments, but found only \"+(t.length-1)+\".\");if((t.length-1)%2!=0)return e.error(\"Expected an even number of arguments.\");if(!(i=e.parse(i,2,Dt)))return null;var l=[],c=null;\"interpolate-hcl\"===r||\"interpolate-lab\"===r?c=Bt:e.expectedType&&\"value\"!==e.expectedType.kind&&(c=e.expectedType);for(var u=0;u<a.length;u+=2){var f=a[u],h=a[u+1],p=u+3,d=u+4;if(\"number\"!=typeof f)return e.error('Input/output pairs for \"interpolate\" expressions must be defined using literal numeric values (not computed expressions) for the input values.',p);if(l.length&&l[l.length-1][0]>=f)return e.error('Input/output pairs for \"interpolate\" expressions must be arranged with input values in strictly ascending order.',p);var g=e.parse(h,d,c);if(!g)return null;c=c||g.type,l.push([f,g])}return\"number\"===c.kind||\"color\"===c.kind||\"array\"===c.kind&&\"number\"===c.itemType.kind&&\"number\"==typeof c.N?new rr(c,r,n,i,l):e.error(\"Type \"+Gt(c)+\" is not interpolatable.\")},rr.prototype.evaluate=function(t){var e=this.labels,r=this.outputs;if(1===e.length)return r[0].evaluate(t);var n=this.input.evaluate(t);if(n<=e[0])return r[0].evaluate(t);var i=e.length;if(n>=e[i-1])return r[i-1].evaluate(t);var a=Ne(e,n),o=rr.interpolationFactor(this.interpolation,n,e[a],e[a+1]),s=r[a].evaluate(t),l=r[a+1].evaluate(t);return\"interpolate\"===this.operator?Ve[this.type.kind.toLowerCase()](s,l,o):\"interpolate-hcl\"===this.operator?tr.reverse(tr.interpolate(tr.forward(s),tr.forward(l),o)):$e.reverse($e.interpolate($e.forward(s),$e.forward(l),o))},rr.prototype.eachChild=function(t){t(this.input);for(var e=0,r=this.outputs;e<r.length;e+=1)t(r[e])},rr.prototype.outputDefined=function(){return this.outputs.every((function(t){return t.outputDefined()}))},rr.prototype.serialize=function(){var t;t=\"linear\"===this.interpolation.name?[\"linear\"]:\"exponential\"===this.interpolation.name?1===this.interpolation.base?[\"linear\"]:[\"exponential\",this.interpolation.base]:[\"cubic-bezier\"].concat(this.interpolation.controlPoints);for(var e=[this.operator,t,this.input.serialize()],r=0;r<this.labels.length;r++)e.push(this.labels[r],this.outputs[r].serialize());return e};var ir=function(t,e){this.type=t,this.args=e};ir.parse=function(t,e){if(t.length<2)return e.error(\"Expectected at least one argument.\");var r=null,n=e.expectedType;n&&\"value\"!==n.kind&&(r=n);for(var i=[],a=0,o=t.slice(1);a<o.length;a+=1){var s=e.parse(o[a],1+i.length,r,void 0,{typeAnnotation:\"omit\"});if(!s)return null;r=r||s.type,i.push(s)}var l=n&&i.some((function(t){return Wt(n,t.type)}));return new ir(l?jt:r,i)},ir.prototype.evaluate=function(t){for(var e,r=null,n=0,i=0,a=this.args;i<a.length&&(n++,(r=a[i].evaluate(t))&&r instanceof ee&&!r.available&&(e||(e=r.name),r=null,n===this.args.length&&(r=e)),null===r);i+=1);return r},ir.prototype.eachChild=function(t){this.args.forEach(t)},ir.prototype.outputDefined=function(){return this.args.every((function(t){return t.outputDefined()}))},ir.prototype.serialize=function(){var t=[\"coalesce\"];return this.eachChild((function(e){t.push(e.serialize())})),t};var ar=function(t,e){this.type=e.type,this.bindings=[].concat(t),this.result=e};ar.prototype.evaluate=function(t){return this.result.evaluate(t)},ar.prototype.eachChild=function(t){for(var e=0,r=this.bindings;e<r.length;e+=1)t(r[e][1]);t(this.result)},ar.parse=function(t,e){if(t.length<4)return e.error(\"Expected at least 3 arguments, but found \"+(t.length-1)+\" instead.\");for(var r=[],n=1;n<t.length-1;n+=2){var i=t[n];if(\"string\"!=typeof i)return e.error(\"Expected string, but found \"+typeof i+\" instead.\",n);if(/[^a-zA-Z0-9_]/.test(i))return e.error(\"Variable names must contain only alphanumeric characters or '_'.\",n);var a=e.parse(t[n+1],n+1);if(!a)return null;r.push([i,a])}var o=e.parse(t[t.length-1],t.length-1,e.expectedType,r);return o?new ar(r,o):null},ar.prototype.outputDefined=function(){return this.result.outputDefined()},ar.prototype.serialize=function(){for(var t=[\"let\"],e=0,r=this.bindings;e<r.length;e+=1){var n=r[e];t.push(n[0],n[1].serialize())}return t.push(this.result.serialize()),t};var or=function(t,e,r){this.type=t,this.index=e,this.input=r};or.parse=function(t,e){if(3!==t.length)return e.error(\"Expected 2 arguments, but found \"+(t.length-1)+\" instead.\");var r=e.parse(t[1],1,Dt),n=e.parse(t[2],2,Ht(e.expectedType||jt));return r&&n?new or(n.type.itemType,r,n):null},or.prototype.evaluate=function(t){var e=this.index.evaluate(t),r=this.input.evaluate(t);if(e<0)throw new se(\"Array index out of bounds: \"+e+\" < 0.\");if(e>=r.length)throw new se(\"Array index out of bounds: \"+e+\" > \"+(r.length-1)+\".\");if(e!==Math.floor(e))throw new se(\"Array index must be an integer, but found \"+e+\" instead.\");return r[e]},or.prototype.eachChild=function(t){t(this.index),t(this.input)},or.prototype.outputDefined=function(){return!1},or.prototype.serialize=function(){return[\"at\",this.index.serialize(),this.input.serialize()]};var sr=function(t,e){this.type=Ft,this.needle=t,this.haystack=e};sr.parse=function(t,e){if(3!==t.length)return e.error(\"Expected 2 arguments, but found \"+(t.length-1)+\" instead.\");var r=e.parse(t[1],1,jt),n=e.parse(t[2],2,jt);return r&&n?Xt(r.type,[Ft,Rt,Dt,Ot,jt])?new sr(r,n):e.error(\"Expected first argument to be of type boolean, string, number or null, but found \"+Gt(r.type)+\" instead\"):null},sr.prototype.evaluate=function(t){var e=this.needle.evaluate(t),r=this.haystack.evaluate(t);if(!r)return!1;if(!Zt(e,[\"boolean\",\"string\",\"number\",\"null\"]))throw new se(\"Expected first argument to be of type boolean, string, number or null, but found \"+Gt(ie(e))+\" instead.\");if(!Zt(r,[\"string\",\"array\"]))throw new se(\"Expected second argument to be of type array or string, but found \"+Gt(ie(r))+\" instead.\");return r.indexOf(e)>=0},sr.prototype.eachChild=function(t){t(this.needle),t(this.haystack)},sr.prototype.outputDefined=function(){return!0},sr.prototype.serialize=function(){return[\"in\",this.needle.serialize(),this.haystack.serialize()]};var lr=function(t,e,r){this.type=Dt,this.needle=t,this.haystack=e,this.fromIndex=r};lr.parse=function(t,e){if(t.length<=2||t.length>=5)return e.error(\"Expected 3 or 4 arguments, but found \"+(t.length-1)+\" instead.\");var r=e.parse(t[1],1,jt),n=e.parse(t[2],2,jt);if(!r||!n)return null;if(!Xt(r.type,[Ft,Rt,Dt,Ot,jt]))return e.error(\"Expected first argument to be of type boolean, string, number or null, but found \"+Gt(r.type)+\" instead\");if(4===t.length){var i=e.parse(t[3],3,Dt);return i?new lr(r,n,i):null}return new lr(r,n)},lr.prototype.evaluate=function(t){var e=this.needle.evaluate(t),r=this.haystack.evaluate(t);if(!Zt(e,[\"boolean\",\"string\",\"number\",\"null\"]))throw new se(\"Expected first argument to be of type boolean, string, number or null, but found \"+Gt(ie(e))+\" instead.\");if(!Zt(r,[\"string\",\"array\"]))throw new se(\"Expected second argument to be of type array or string, but found \"+Gt(ie(r))+\" instead.\");if(this.fromIndex){var n=this.fromIndex.evaluate(t);return r.indexOf(e,n)}return r.indexOf(e)},lr.prototype.eachChild=function(t){t(this.needle),t(this.haystack),this.fromIndex&&t(this.fromIndex)},lr.prototype.outputDefined=function(){return!1},lr.prototype.serialize=function(){if(null!=this.fromIndex&&void 0!==this.fromIndex){var t=this.fromIndex.serialize();return[\"index-of\",this.needle.serialize(),this.haystack.serialize(),t]}return[\"index-of\",this.needle.serialize(),this.haystack.serialize()]};var cr=function(t,e,r,n,i,a){this.inputType=t,this.type=e,this.input=r,this.cases=n,this.outputs=i,this.otherwise=a};cr.parse=function(t,e){if(t.length<5)return e.error(\"Expected at least 4 arguments, but found only \"+(t.length-1)+\".\");if(t.length%2!=1)return e.error(\"Expected an even number of arguments.\");var r,n;e.expectedType&&\"value\"!==e.expectedType.kind&&(n=e.expectedType);for(var i={},a=[],o=2;o<t.length-1;o+=2){var s=t[o],l=t[o+1];Array.isArray(s)||(s=[s]);var c=e.concat(o);if(0===s.length)return c.error(\"Expected at least one branch label.\");for(var u=0,f=s;u<f.length;u+=1){var h=f[u];if(\"number\"!=typeof h&&\"string\"!=typeof h)return c.error(\"Branch labels must be numbers or strings.\");if(\"number\"==typeof h&&Math.abs(h)>Number.MAX_SAFE_INTEGER)return c.error(\"Branch labels must be integers no larger than \"+Number.MAX_SAFE_INTEGER+\".\");if(\"number\"==typeof h&&Math.floor(h)!==h)return c.error(\"Numeric branch labels must be integer values.\");if(r){if(c.checkSubtype(r,ie(h)))return null}else r=ie(h);if(void 0!==i[String(h)])return c.error(\"Branch labels must be unique.\");i[String(h)]=a.length}var p=e.parse(l,o,n);if(!p)return null;n=n||p.type,a.push(p)}var d=e.parse(t[1],1,jt);if(!d)return null;var g=e.parse(t[t.length-1],t.length-1,n);return g?\"value\"!==d.type.kind&&e.concat(1).checkSubtype(r,d.type)?null:new cr(r,n,d,i,a,g):null},cr.prototype.evaluate=function(t){var e=this.input.evaluate(t);return(ie(e)===this.inputType&&this.outputs[this.cases[e]]||this.otherwise).evaluate(t)},cr.prototype.eachChild=function(t){t(this.input),this.outputs.forEach(t),t(this.otherwise)},cr.prototype.outputDefined=function(){return this.outputs.every((function(t){return t.outputDefined()}))&&this.otherwise.outputDefined()},cr.prototype.serialize=function(){for(var t=this,e=[\"match\",this.input.serialize()],r=[],n={},i=0,a=Object.keys(this.cases).sort();i<a.length;i+=1){var o=a[i];void 0===(f=n[this.cases[o]])?(n[this.cases[o]]=r.length,r.push([this.cases[o],[o]])):r[f][1].push(o)}for(var s=function(e){return\"number\"===t.inputType.kind?Number(e):e},l=0,c=r;l<c.length;l+=1){var u=c[l],f=u[0],h=u[1];e.push(1===h.length?s(h[0]):h.map(s)),e.push(this.outputs[outputIndex$1].serialize())}return e.push(this.otherwise.serialize()),e};var ur=function(t,e,r){this.type=t,this.branches=e,this.otherwise=r};ur.parse=function(t,e){if(t.length<4)return e.error(\"Expected at least 3 arguments, but found only \"+(t.length-1)+\".\");if(t.length%2!=0)return e.error(\"Expected an odd number of arguments.\");var r;e.expectedType&&\"value\"!==e.expectedType.kind&&(r=e.expectedType);for(var n=[],i=1;i<t.length-1;i+=2){var a=e.parse(t[i],i,Ft);if(!a)return null;var o=e.parse(t[i+1],i+1,r);if(!o)return null;n.push([a,o]),r=r||o.type}var s=e.parse(t[t.length-1],t.length-1,r);return s?new ur(r,n,s):null},ur.prototype.evaluate=function(t){for(var e=0,r=this.branches;e<r.length;e+=1){var n=r[e],i=n[1];if(n[0].evaluate(t))return i.evaluate(t)}return this.otherwise.evaluate(t)},ur.prototype.eachChild=function(t){for(var e=0,r=this.branches;e<r.length;e+=1){var n=r[e],i=n[1];t(n[0]),t(i)}t(this.otherwise)},ur.prototype.outputDefined=function(){return this.branches.every((function(t){return t[1].outputDefined()}))&&this.otherwise.outputDefined()},ur.prototype.serialize=function(){var t=[\"case\"];return this.eachChild((function(e){t.push(e.serialize())})),t};var fr=function(t,e,r,n){this.type=t,this.input=e,this.beginIndex=r,this.endIndex=n};function hr(t,e){return\"==\"===t||\"!=\"===t?\"boolean\"===e.kind||\"string\"===e.kind||\"number\"===e.kind||\"null\"===e.kind||\"value\"===e.kind:\"string\"===e.kind||\"number\"===e.kind||\"value\"===e.kind}function pr(t,e,r,n){return 0===n.compare(e,r)}function dr(t,e,r){var n=\"==\"!==t&&\"!=\"!==t;return function(){function i(t,e,r){this.type=Ft,this.lhs=t,this.rhs=e,this.collator=r,this.hasUntypedArgument=\"value\"===t.type.kind||\"value\"===e.type.kind}return i.parse=function(t,e){if(3!==t.length&&4!==t.length)return e.error(\"Expected two or three arguments.\");var r=t[0],a=e.parse(t[1],1,jt);if(!a)return null;if(!hr(r,a.type))return e.concat(1).error('\"'+r+\"\\\" comparisons are not supported for type '\"+Gt(a.type)+\"'.\");var o=e.parse(t[2],2,jt);if(!o)return null;if(!hr(r,o.type))return e.concat(2).error('\"'+r+\"\\\" comparisons are not supported for type '\"+Gt(o.type)+\"'.\");if(a.type.kind!==o.type.kind&&\"value\"!==a.type.kind&&\"value\"!==o.type.kind)return e.error(\"Cannot compare types '\"+Gt(a.type)+\"' and '\"+Gt(o.type)+\"'.\");n&&(\"value\"===a.type.kind&&\"value\"!==o.type.kind?a=new ce(o.type,[a]):\"value\"!==a.type.kind&&\"value\"===o.type.kind&&(o=new ce(a.type,[o])));var s=null;if(4===t.length){if(\"string\"!==a.type.kind&&\"string\"!==o.type.kind&&\"value\"!==a.type.kind&&\"value\"!==o.type.kind)return e.error(\"Cannot use collator to compare non-string types.\");if(!(s=e.parse(t[3],3,Ut)))return null}return new i(a,o,s)},i.prototype.evaluate=function(i){var a=this.lhs.evaluate(i),o=this.rhs.evaluate(i);if(n&&this.hasUntypedArgument){var s=ie(a),l=ie(o);if(s.kind!==l.kind||\"string\"!==s.kind&&\"number\"!==s.kind)throw new se('Expected arguments for \"'+t+'\" to be (string, string) or (number, number), but found ('+s.kind+\", \"+l.kind+\") instead.\")}if(this.collator&&!n&&this.hasUntypedArgument){var c=ie(a),u=ie(o);if(\"string\"!==c.kind||\"string\"!==u.kind)return e(i,a,o)}return this.collator?r(i,a,o,this.collator.evaluate(i)):e(i,a,o)},i.prototype.eachChild=function(t){t(this.lhs),t(this.rhs),this.collator&&t(this.collator)},i.prototype.outputDefined=function(){return!0},i.prototype.serialize=function(){var e=[t];return this.eachChild((function(t){e.push(t.serialize())})),e},i}()}fr.parse=function(t,e){if(t.length<=2||t.length>=5)return e.error(\"Expected 3 or 4 arguments, but found \"+(t.length-1)+\" instead.\");var r=e.parse(t[1],1,jt),n=e.parse(t[2],2,Dt);if(!r||!n)return null;if(!Xt(r.type,[Ht(jt),Rt,jt]))return e.error(\"Expected first argument to be of type array or string, but found \"+Gt(r.type)+\" instead\");if(4===t.length){var i=e.parse(t[3],3,Dt);return i?new fr(r.type,r,n,i):null}return new fr(r.type,r,n)},fr.prototype.evaluate=function(t){var e=this.input.evaluate(t),r=this.beginIndex.evaluate(t);if(!Zt(e,[\"string\",\"array\"]))throw new se(\"Expected first argument to be of type array or string, but found \"+Gt(ie(e))+\" instead.\");if(this.endIndex){var n=this.endIndex.evaluate(t);return e.slice(r,n)}return e.slice(r)},fr.prototype.eachChild=function(t){t(this.input),t(this.beginIndex),this.endIndex&&t(this.endIndex)},fr.prototype.outputDefined=function(){return!1},fr.prototype.serialize=function(){if(null!=this.endIndex&&void 0!==this.endIndex){var t=this.endIndex.serialize();return[\"slice\",this.input.serialize(),this.beginIndex.serialize(),t]}return[\"slice\",this.input.serialize(),this.beginIndex.serialize()]};var gr=dr(\"==\",(function(t,e,r){return e===r}),pr),mr=dr(\"!=\",(function(t,e,r){return e!==r}),(function(t,e,r,n){return!pr(0,e,r,n)})),vr=dr(\"<\",(function(t,e,r){return e<r}),(function(t,e,r,n){return n.compare(e,r)<0})),yr=dr(\">\",(function(t,e,r){return e>r}),(function(t,e,r,n){return n.compare(e,r)>0})),xr=dr(\"<=\",(function(t,e,r){return e<=r}),(function(t,e,r,n){return n.compare(e,r)<=0})),br=dr(\">=\",(function(t,e,r){return e>=r}),(function(t,e,r,n){return n.compare(e,r)>=0})),_r=function(t,e,r,n,i){this.type=Rt,this.number=t,this.locale=e,this.currency=r,this.minFractionDigits=n,this.maxFractionDigits=i};_r.parse=function(t,e){if(3!==t.length)return e.error(\"Expected two arguments.\");var r=e.parse(t[1],1,Dt);if(!r)return null;var n=t[2];if(\"object\"!=typeof n||Array.isArray(n))return e.error(\"NumberFormat options argument must be an object.\");var i=null;if(n.locale&&!(i=e.parse(n.locale,1,Rt)))return null;var a=null;if(n.currency&&!(a=e.parse(n.currency,1,Rt)))return null;var o=null;if(n[\"min-fraction-digits\"]&&!(o=e.parse(n[\"min-fraction-digits\"],1,Dt)))return null;var s=null;return n[\"max-fraction-digits\"]&&!(s=e.parse(n[\"max-fraction-digits\"],1,Dt))?null:new _r(r,i,a,o,s)},_r.prototype.evaluate=function(t){return new Intl.NumberFormat(this.locale?this.locale.evaluate(t):[],{style:this.currency?\"currency\":\"decimal\",currency:this.currency?this.currency.evaluate(t):void 0,minimumFractionDigits:this.minFractionDigits?this.minFractionDigits.evaluate(t):void 0,maximumFractionDigits:this.maxFractionDigits?this.maxFractionDigits.evaluate(t):void 0}).format(this.number.evaluate(t))},_r.prototype.eachChild=function(t){t(this.number),this.locale&&t(this.locale),this.currency&&t(this.currency),this.minFractionDigits&&t(this.minFractionDigits),this.maxFractionDigits&&t(this.maxFractionDigits)},_r.prototype.outputDefined=function(){return!1},_r.prototype.serialize=function(){var t={};return this.locale&&(t.locale=this.locale.serialize()),this.currency&&(t.currency=this.currency.serialize()),this.minFractionDigits&&(t[\"min-fraction-digits\"]=this.minFractionDigits.serialize()),this.maxFractionDigits&&(t[\"max-fraction-digits\"]=this.maxFractionDigits.serialize()),[\"number-format\",this.number.serialize(),t]};var wr=function(t){this.type=Dt,this.input=t};wr.parse=function(t,e){if(2!==t.length)return e.error(\"Expected 1 argument, but found \"+(t.length-1)+\" instead.\");var r=e.parse(t[1],1);return r?\"array\"!==r.type.kind&&\"string\"!==r.type.kind&&\"value\"!==r.type.kind?e.error(\"Expected argument of type string or array, but found \"+Gt(r.type)+\" instead.\"):new wr(r):null},wr.prototype.evaluate=function(t){var e=this.input.evaluate(t);if(\"string\"==typeof e)return e.length;if(Array.isArray(e))return e.length;throw new se(\"Expected value to be of type string or array, but found \"+Gt(ie(e))+\" instead.\")},wr.prototype.eachChild=function(t){t(this.input)},wr.prototype.outputDefined=function(){return!1},wr.prototype.serialize=function(){var t=[\"length\"];return this.eachChild((function(e){t.push(e.serialize())})),t};var Tr={\"==\":gr,\"!=\":mr,\">\":yr,\"<\":vr,\">=\":br,\"<=\":xr,array:ce,at:or,boolean:ce,case:ur,coalesce:ir,collator:ve,format:ue,image:fe,in:sr,\"index-of\":lr,interpolate:rr,\"interpolate-hcl\":rr,\"interpolate-lab\":rr,length:wr,let:ar,literal:oe,match:cr,number:ce,\"number-format\":_r,object:ce,slice:fr,step:je,string:ce,\"to-boolean\":pe,\"to-color\":pe,\"to-number\":pe,\"to-string\":pe,var:Fe,within:ze};function kr(t,e){var r=e[0],n=e[1],i=e[2],a=e[3];r=r.evaluate(t),n=n.evaluate(t),i=i.evaluate(t);var o=a?a.evaluate(t):1,s=re(r,n,i,o);if(s)throw new se(s);return new Kt(r/255*o,n/255*o,i/255*o,o)}function Mr(t,e){return t in e}function Ar(t,e){var r=e[t];return void 0===r?null:r}function Sr(t){return{type:t}}function Er(t){return{result:\"success\",value:t}}function Cr(t){return{result:\"error\",value:t}}function Lr(t){return\"data-driven\"===t[\"property-type\"]||\"cross-faded-data-driven\"===t[\"property-type\"]}function Ir(t){return!!t.expression&&t.expression.parameters.indexOf(\"zoom\")>-1}function Pr(t){return!!t.expression&&t.expression.interpolated}function zr(t){return t instanceof Number?\"number\":t instanceof String?\"string\":t instanceof Boolean?\"boolean\":Array.isArray(t)?\"array\":null===t?\"null\":typeof t}function Or(t){return\"object\"==typeof t&&null!==t&&!Array.isArray(t)}function Dr(t){return t}function Rr(t,e,r){return void 0!==t?t:void 0!==e?e:void 0!==r?r:void 0}function Fr(t,e,r,n,i){return Rr(typeof r===i?n[r]:void 0,t.default,e.default)}function Br(t,e,r){if(\"number\"!==zr(r))return Rr(t.default,e.default);var n=t.stops.length;if(1===n)return t.stops[0][1];if(r<=t.stops[0][0])return t.stops[0][1];if(r>=t.stops[n-1][0])return t.stops[n-1][1];var i=Ne(t.stops.map((function(t){return t[0]})),r);return t.stops[i][1]}function Nr(t,e,r){var n=void 0!==t.base?t.base:1;if(\"number\"!==zr(r))return Rr(t.default,e.default);var i=t.stops.length;if(1===i)return t.stops[0][1];if(r<=t.stops[0][0])return t.stops[0][1];if(r>=t.stops[i-1][0])return t.stops[i-1][1];var a=Ne(t.stops.map((function(t){return t[0]})),r),o=function(t,e,r,n){var i=n-r,a=t-r;return 0===i?0:1===e?a/i:(Math.pow(e,a)-1)/(Math.pow(e,i)-1)}(r,n,t.stops[a][0],t.stops[a+1][0]),s=t.stops[a][1],l=t.stops[a+1][1],c=Ve[e.type]||Dr;if(t.colorSpace&&\"rgb\"!==t.colorSpace){var u=er[t.colorSpace];c=function(t,e){return u.reverse(u.interpolate(u.forward(t),u.forward(e),o))}}return\"function\"==typeof s.evaluate?{evaluate:function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];var r=s.evaluate.apply(void 0,t),n=l.evaluate.apply(void 0,t);if(void 0!==r&&void 0!==n)return c(r,n,o)}}:c(s,l,o)}function jr(t,e,r){return\"color\"===e.type?r=Kt.parse(r):\"formatted\"===e.type?r=te.fromString(r.toString()):\"resolvedImage\"===e.type?r=ee.fromString(r.toString()):zr(r)===e.type||\"enum\"===e.type&&e.values[r]||(r=void 0),Rr(r,t.default,e.default)}me.register(Tr,{error:[{kind:\"error\"},[Rt],function(t,e){throw new se(e[0].evaluate(t))}],typeof:[Rt,[jt],function(t,e){return Gt(ie(e[0].evaluate(t)))}],\"to-rgba\":[Ht(Dt,4),[Bt],function(t,e){return e[0].evaluate(t).toArray()}],rgb:[Bt,[Dt,Dt,Dt],kr],rgba:[Bt,[Dt,Dt,Dt,Dt],kr],has:{type:Ft,overloads:[[[Rt],function(t,e){return Mr(e[0].evaluate(t),t.properties())}],[[Rt,Nt],function(t,e){var r=e[1];return Mr(e[0].evaluate(t),r.evaluate(t))}]]},get:{type:jt,overloads:[[[Rt],function(t,e){return Ar(e[0].evaluate(t),t.properties())}],[[Rt,Nt],function(t,e){var r=e[1];return Ar(e[0].evaluate(t),r.evaluate(t))}]]},\"feature-state\":[jt,[Rt],function(t,e){return Ar(e[0].evaluate(t),t.featureState||{})}],properties:[Nt,[],function(t){return t.properties()}],\"geometry-type\":[Rt,[],function(t){return t.geometryType()}],id:[jt,[],function(t){return t.id()}],zoom:[Dt,[],function(t){return t.globals.zoom}],\"heatmap-density\":[Dt,[],function(t){return t.globals.heatmapDensity||0}],\"line-progress\":[Dt,[],function(t){return t.globals.lineProgress||0}],accumulated:[jt,[],function(t){return void 0===t.globals.accumulated?null:t.globals.accumulated}],\"+\":[Dt,Sr(Dt),function(t,e){for(var r=0,n=0,i=e;n<i.length;n+=1)r+=i[n].evaluate(t);return r}],\"*\":[Dt,Sr(Dt),function(t,e){for(var r=1,n=0,i=e;n<i.length;n+=1)r*=i[n].evaluate(t);return r}],\"-\":{type:Dt,overloads:[[[Dt,Dt],function(t,e){var r=e[1];return e[0].evaluate(t)-r.evaluate(t)}],[[Dt],function(t,e){return-e[0].evaluate(t)}]]},\"/\":[Dt,[Dt,Dt],function(t,e){var r=e[1];return e[0].evaluate(t)/r.evaluate(t)}],\"%\":[Dt,[Dt,Dt],function(t,e){var r=e[1];return e[0].evaluate(t)%r.evaluate(t)}],ln2:[Dt,[],function(){return Math.LN2}],pi:[Dt,[],function(){return Math.PI}],e:[Dt,[],function(){return Math.E}],\"^\":[Dt,[Dt,Dt],function(t,e){var r=e[1];return Math.pow(e[0].evaluate(t),r.evaluate(t))}],sqrt:[Dt,[Dt],function(t,e){return Math.sqrt(e[0].evaluate(t))}],log10:[Dt,[Dt],function(t,e){return Math.log(e[0].evaluate(t))/Math.LN10}],ln:[Dt,[Dt],function(t,e){return Math.log(e[0].evaluate(t))}],log2:[Dt,[Dt],function(t,e){return Math.log(e[0].evaluate(t))/Math.LN2}],sin:[Dt,[Dt],function(t,e){return Math.sin(e[0].evaluate(t))}],cos:[Dt,[Dt],function(t,e){return Math.cos(e[0].evaluate(t))}],tan:[Dt,[Dt],function(t,e){return Math.tan(e[0].evaluate(t))}],asin:[Dt,[Dt],function(t,e){return Math.asin(e[0].evaluate(t))}],acos:[Dt,[Dt],function(t,e){return Math.acos(e[0].evaluate(t))}],atan:[Dt,[Dt],function(t,e){return Math.atan(e[0].evaluate(t))}],min:[Dt,Sr(Dt),function(t,e){return Math.min.apply(Math,e.map((function(e){return e.evaluate(t)})))}],max:[Dt,Sr(Dt),function(t,e){return Math.max.apply(Math,e.map((function(e){return e.evaluate(t)})))}],abs:[Dt,[Dt],function(t,e){return Math.abs(e[0].evaluate(t))}],round:[Dt,[Dt],function(t,e){var r=e[0].evaluate(t);return r<0?-Math.round(-r):Math.round(r)}],floor:[Dt,[Dt],function(t,e){return Math.floor(e[0].evaluate(t))}],ceil:[Dt,[Dt],function(t,e){return Math.ceil(e[0].evaluate(t))}],\"filter-==\":[Ft,[Rt,jt],function(t,e){var r=e[0],n=e[1];return t.properties()[r.value]===n.value}],\"filter-id-==\":[Ft,[jt],function(t,e){var r=e[0];return t.id()===r.value}],\"filter-type-==\":[Ft,[Rt],function(t,e){var r=e[0];return t.geometryType()===r.value}],\"filter-<\":[Ft,[Rt,jt],function(t,e){var r=e[0],n=e[1],i=t.properties()[r.value],a=n.value;return typeof i==typeof a&&i<a}],\"filter-id-<\":[Ft,[jt],function(t,e){var r=e[0],n=t.id(),i=r.value;return typeof n==typeof i&&n<i}],\"filter->\":[Ft,[Rt,jt],function(t,e){var r=e[0],n=e[1],i=t.properties()[r.value],a=n.value;return typeof i==typeof a&&i>a}],\"filter-id->\":[Ft,[jt],function(t,e){var r=e[0],n=t.id(),i=r.value;return typeof n==typeof i&&n>i}],\"filter-<=\":[Ft,[Rt,jt],function(t,e){var r=e[0],n=e[1],i=t.properties()[r.value],a=n.value;return typeof i==typeof a&&i<=a}],\"filter-id-<=\":[Ft,[jt],function(t,e){var r=e[0],n=t.id(),i=r.value;return typeof n==typeof i&&n<=i}],\"filter->=\":[Ft,[Rt,jt],function(t,e){var r=e[0],n=e[1],i=t.properties()[r.value],a=n.value;return typeof i==typeof a&&i>=a}],\"filter-id->=\":[Ft,[jt],function(t,e){var r=e[0],n=t.id(),i=r.value;return typeof n==typeof i&&n>=i}],\"filter-has\":[Ft,[jt],function(t,e){return e[0].value in t.properties()}],\"filter-has-id\":[Ft,[],function(t){return null!==t.id()&&void 0!==t.id()}],\"filter-type-in\":[Ft,[Ht(Rt)],function(t,e){return e[0].value.indexOf(t.geometryType())>=0}],\"filter-id-in\":[Ft,[Ht(jt)],function(t,e){return e[0].value.indexOf(t.id())>=0}],\"filter-in-small\":[Ft,[Rt,Ht(jt)],function(t,e){var r=e[0];return e[1].value.indexOf(t.properties()[r.value])>=0}],\"filter-in-large\":[Ft,[Rt,Ht(jt)],function(t,e){var r=e[0],n=e[1];return function(t,e,r,n){for(;r<=n;){var i=r+n>>1;if(e[i]===t)return!0;e[i]>t?n=i-1:r=i+1}return!1}(t.properties()[r.value],n.value,0,n.value.length-1)}],all:{type:Ft,overloads:[[[Ft,Ft],function(t,e){var r=e[1];return e[0].evaluate(t)&&r.evaluate(t)}],[Sr(Ft),function(t,e){for(var r=0,n=e;r<n.length;r+=1)if(!n[r].evaluate(t))return!1;return!0}]]},any:{type:Ft,overloads:[[[Ft,Ft],function(t,e){var r=e[1];return e[0].evaluate(t)||r.evaluate(t)}],[Sr(Ft),function(t,e){for(var r=0,n=e;r<n.length;r+=1)if(n[r].evaluate(t))return!0;return!1}]]},\"!\":[Ft,[Ft],function(t,e){return!e[0].evaluate(t)}],\"is-supported-script\":[Ft,[Rt],function(t,e){var r=t.globals&&t.globals.isSupportedScript;return!r||r(e[0].evaluate(t))}],upcase:[Rt,[Rt],function(t,e){return e[0].evaluate(t).toUpperCase()}],downcase:[Rt,[Rt],function(t,e){return e[0].evaluate(t).toLowerCase()}],concat:[Rt,Sr(jt),function(t,e){return e.map((function(e){return ae(e.evaluate(t))})).join(\"\")}],\"resolved-locale\":[Rt,[Ut],function(t,e){return e[0].evaluate(t).resolvedLocale()}]});var Ur=function(t,e){this.expression=t,this._warningHistory={},this._evaluator=new ge,this._defaultValue=e?function(t){return\"color\"===t.type&&Or(t.default)?new Kt(0,0,0,0):\"color\"===t.type?Kt.parse(t.default)||null:void 0===t.default?null:t.default}(e):null,this._enumValues=e&&\"enum\"===e.type?e.values:null};function Vr(t){return Array.isArray(t)&&t.length>0&&\"string\"==typeof t[0]&&t[0]in Tr}function qr(t,e){var r=new Be(Tr,[],e?function(t){var e={color:Bt,string:Rt,number:Dt,enum:Rt,boolean:Ft,formatted:Vt,resolvedImage:qt};return\"array\"===t.type?Ht(e[t.value]||jt,t.length):e[t.type]}(e):void 0),n=r.parse(t,void 0,void 0,void 0,e&&\"string\"===e.type?{typeAnnotation:\"coerce\"}:void 0);return n?Er(new Ur(n,e)):Cr(r.errors)}Ur.prototype.evaluateWithoutErrorHandling=function(t,e,r,n,i,a){return this._evaluator.globals=t,this._evaluator.feature=e,this._evaluator.featureState=r,this._evaluator.canonical=n,this._evaluator.availableImages=i||null,this._evaluator.formattedSection=a,this.expression.evaluate(this._evaluator)},Ur.prototype.evaluate=function(t,e,r,n,i,a){this._evaluator.globals=t,this._evaluator.feature=e||null,this._evaluator.featureState=r||null,this._evaluator.canonical=n,this._evaluator.availableImages=i||null,this._evaluator.formattedSection=a||null;try{var o=this.expression.evaluate(this._evaluator);if(null==o||\"number\"==typeof o&&o!=o)return this._defaultValue;if(this._enumValues&&!(o in this._enumValues))throw new se(\"Expected value to be one of \"+Object.keys(this._enumValues).map((function(t){return JSON.stringify(t)})).join(\", \")+\", but found \"+JSON.stringify(o)+\" instead.\");return o}catch(t){return this._warningHistory[t.message]||(this._warningHistory[t.message]=!0,\"undefined\"!=typeof console&&console.warn(t.message)),this._defaultValue}};var Hr=function(t,e){this.kind=t,this._styleExpression=e,this.isStateDependent=\"constant\"!==t&&!De(e.expression)};Hr.prototype.evaluateWithoutErrorHandling=function(t,e,r,n,i,a){return this._styleExpression.evaluateWithoutErrorHandling(t,e,r,n,i,a)},Hr.prototype.evaluate=function(t,e,r,n,i,a){return this._styleExpression.evaluate(t,e,r,n,i,a)};var Gr=function(t,e,r,n){this.kind=t,this.zoomStops=r,this._styleExpression=e,this.isStateDependent=\"camera\"!==t&&!De(e.expression),this.interpolationType=n};function Yr(t,e){if(\"error\"===(t=qr(t,e)).result)return t;var r=t.value.expression,n=Oe(r);if(!n&&!Lr(e))return Cr([new Pt(\"\",\"data expressions not supported\")]);var i=Re(r,[\"zoom\"]);if(!i&&!Ir(e))return Cr([new Pt(\"\",\"zoom expressions not supported\")]);var a=function t(e){var r=null;if(e instanceof ar)r=t(e.result);else if(e instanceof ir)for(var n=0,i=e.args;n<i.length&&!(r=t(i[n]));n+=1);else(e instanceof je||e instanceof rr)&&e.input instanceof me&&\"zoom\"===e.input.name&&(r=e);return r instanceof Pt||e.eachChild((function(e){var n=t(e);n instanceof Pt?r=n:!r&&n?r=new Pt(\"\",'\"zoom\" expression may only be used as input to a top-level \"step\" or \"interpolate\" expression.'):r&&n&&r!==n&&(r=new Pt(\"\",'Only one zoom-based \"step\" or \"interpolate\" subexpression may be used in an expression.'))})),r}(r);return a||i?a instanceof Pt?Cr([a]):a instanceof rr&&!Pr(e)?Cr([new Pt(\"\",'\"interpolate\" expressions cannot be used with this property')]):Er(a?new Gr(n?\"camera\":\"composite\",t.value,a.labels,a instanceof rr?a.interpolation:void 0):new Hr(n?\"constant\":\"source\",t.value)):Cr([new Pt(\"\",'\"zoom\" expression may only be used as input to a top-level \"step\" or \"interpolate\" expression.')])}Gr.prototype.evaluateWithoutErrorHandling=function(t,e,r,n,i,a){return this._styleExpression.evaluateWithoutErrorHandling(t,e,r,n,i,a)},Gr.prototype.evaluate=function(t,e,r,n,i,a){return this._styleExpression.evaluate(t,e,r,n,i,a)},Gr.prototype.interpolationFactor=function(t,e,r){return this.interpolationType?rr.interpolationFactor(this.interpolationType,t,e,r):0};var Wr=function(t,e){this._parameters=t,this._specification=e,Ct(this,function t(e,r){var n,i,a,o=\"color\"===r.type,s=e.stops&&\"object\"==typeof e.stops[0][0],l=s||!(s||void 0!==e.property),c=e.type||(Pr(r)?\"exponential\":\"interval\");if(o&&((e=Ct({},e)).stops&&(e.stops=e.stops.map((function(t){return[t[0],Kt.parse(t[1])]}))),e.default=Kt.parse(e.default?e.default:r.default)),e.colorSpace&&\"rgb\"!==e.colorSpace&&!er[e.colorSpace])throw new Error(\"Unknown color space: \"+e.colorSpace);if(\"exponential\"===c)n=Nr;else if(\"interval\"===c)n=Br;else if(\"categorical\"===c){n=Fr,i=Object.create(null);for(var u=0,f=e.stops;u<f.length;u+=1){var h=f[u];i[h[0]]=h[1]}a=typeof e.stops[0][0]}else{if(\"identity\"!==c)throw new Error('Unknown function type \"'+c+'\"');n=jr}if(s){for(var p={},d=[],g=0;g<e.stops.length;g++){var m=e.stops[g],v=m[0].zoom;void 0===p[v]&&(p[v]={zoom:v,type:e.type,property:e.property,default:e.default,stops:[]},d.push(v)),p[v].stops.push([m[0].value,m[1]])}for(var y=[],x=0,b=d;x<b.length;x+=1){var _=b[x];y.push([p[_].zoom,t(p[_],r)])}var w={name:\"linear\"};return{kind:\"composite\",interpolationType:w,interpolationFactor:rr.interpolationFactor.bind(void 0,w),zoomStops:y.map((function(t){return t[0]})),evaluate:function(t,n){var i=t.zoom;return Nr({stops:y,base:e.base},r,i).evaluate(i,n)}}}if(l){var T=\"exponential\"===c?{name:\"exponential\",base:void 0!==e.base?e.base:1}:null;return{kind:\"camera\",interpolationType:T,interpolationFactor:rr.interpolationFactor.bind(void 0,T),zoomStops:e.stops.map((function(t){return t[0]})),evaluate:function(t){return n(e,r,t.zoom,i,a)}}}return{kind:\"source\",evaluate:function(t,o){var s=o&&o.properties?o.properties[e.property]:void 0;return void 0===s?Rr(e.default,r.default):n(e,r,s,i,a)}}}(this._parameters,this._specification))};function Xr(t){var e=t.key,r=t.value,n=t.valueSpec||{},i=t.objectElementValidators||{},a=t.style,o=t.styleSpec,s=[],l=zr(r);if(\"object\"!==l)return[new St(e,r,\"object expected, \"+l+\" found\")];for(var c in r){var u=c.split(\".\")[0],f=n[u]||n[\"*\"],h=void 0;if(i[u])h=i[u];else if(n[u])h=bn;else if(i[\"*\"])h=i[\"*\"];else{if(!n[\"*\"]){s.push(new St(e,r[c],'unknown property \"'+c+'\"'));continue}h=bn}s=s.concat(h({key:(e?e+\".\":e)+c,value:r[c],valueSpec:f,style:a,styleSpec:o,object:r,objectKey:c},r))}for(var p in n)i[p]||n[p].required&&void 0===n[p].default&&void 0===r[p]&&s.push(new St(e,r,'missing required property \"'+p+'\"'));return s}function Zr(t){var e=t.value,r=t.valueSpec,n=t.style,i=t.styleSpec,a=t.key,o=t.arrayElementValidator||bn;if(\"array\"!==zr(e))return[new St(a,e,\"array expected, \"+zr(e)+\" found\")];if(r.length&&e.length!==r.length)return[new St(a,e,\"array length \"+r.length+\" expected, length \"+e.length+\" found\")];if(r[\"min-length\"]&&e.length<r[\"min-length\"])return[new St(a,e,\"array length at least \"+r[\"min-length\"]+\" expected, length \"+e.length+\" found\")];var s={type:r.value,values:r.values};i.$version<7&&(s.function=r.function),\"object\"===zr(r.value)&&(s=r.value);for(var l=[],c=0;c<e.length;c++)l=l.concat(o({array:e,arrayIndex:c,value:e[c],valueSpec:s,style:n,styleSpec:i,key:a+\"[\"+c+\"]\"}));return l}function Jr(t){var e=t.key,r=t.value,n=t.valueSpec,i=zr(r);return\"number\"===i&&r!=r&&(i=\"NaN\"),\"number\"!==i?[new St(e,r,\"number expected, \"+i+\" found\")]:\"minimum\"in n&&r<n.minimum?[new St(e,r,r+\" is less than the minimum value \"+n.minimum)]:\"maximum\"in n&&r>n.maximum?[new St(e,r,r+\" is greater than the maximum value \"+n.maximum)]:[]}function Kr(t){var e,r,n,i=t.valueSpec,a=Lt(t.value.type),o={},s=\"categorical\"!==a&&void 0===t.value.property,l=!s,c=\"array\"===zr(t.value.stops)&&\"array\"===zr(t.value.stops[0])&&\"object\"===zr(t.value.stops[0][0]),u=Xr({key:t.key,value:t.value,valueSpec:t.styleSpec.function,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{stops:function(t){if(\"identity\"===a)return[new St(t.key,t.value,'identity function may not have a \"stops\" property')];var e=[],r=t.value;return e=e.concat(Zr({key:t.key,value:r,valueSpec:t.valueSpec,style:t.style,styleSpec:t.styleSpec,arrayElementValidator:f})),\"array\"===zr(r)&&0===r.length&&e.push(new St(t.key,r,\"array must have at least one stop\")),e},default:function(t){return bn({key:t.key,value:t.value,valueSpec:i,style:t.style,styleSpec:t.styleSpec})}}});return\"identity\"===a&&s&&u.push(new St(t.key,t.value,'missing required property \"property\"')),\"identity\"===a||t.value.stops||u.push(new St(t.key,t.value,'missing required property \"stops\"')),\"exponential\"===a&&t.valueSpec.expression&&!Pr(t.valueSpec)&&u.push(new St(t.key,t.value,\"exponential functions not supported\")),t.styleSpec.$version>=8&&(l&&!Lr(t.valueSpec)?u.push(new St(t.key,t.value,\"property functions not supported\")):s&&!Ir(t.valueSpec)&&u.push(new St(t.key,t.value,\"zoom functions not supported\"))),\"categorical\"!==a&&!c||void 0!==t.value.property||u.push(new St(t.key,t.value,'\"property\" property is required')),u;function f(t){var e=[],a=t.value,s=t.key;if(\"array\"!==zr(a))return[new St(s,a,\"array expected, \"+zr(a)+\" found\")];if(2!==a.length)return[new St(s,a,\"array length 2 expected, length \"+a.length+\" found\")];if(c){if(\"object\"!==zr(a[0]))return[new St(s,a,\"object expected, \"+zr(a[0])+\" found\")];if(void 0===a[0].zoom)return[new St(s,a,\"object stop key must have zoom\")];if(void 0===a[0].value)return[new St(s,a,\"object stop key must have value\")];if(n&&n>Lt(a[0].zoom))return[new St(s,a[0].zoom,\"stop zoom values must appear in ascending order\")];Lt(a[0].zoom)!==n&&(n=Lt(a[0].zoom),r=void 0,o={}),e=e.concat(Xr({key:s+\"[0]\",value:a[0],valueSpec:{zoom:{}},style:t.style,styleSpec:t.styleSpec,objectElementValidators:{zoom:Jr,value:h}}))}else e=e.concat(h({key:s+\"[0]\",value:a[0],valueSpec:{},style:t.style,styleSpec:t.styleSpec},a));return Vr(It(a[1]))?e.concat([new St(s+\"[1]\",a[1],\"expressions are not allowed in function stops.\")]):e.concat(bn({key:s+\"[1]\",value:a[1],valueSpec:i,style:t.style,styleSpec:t.styleSpec}))}function h(t,n){var s=zr(t.value),l=Lt(t.value),c=null!==t.value?t.value:n;if(e){if(s!==e)return[new St(t.key,c,s+\" stop domain type must match previous stop domain type \"+e)]}else e=s;if(\"number\"!==s&&\"string\"!==s&&\"boolean\"!==s)return[new St(t.key,c,\"stop domain value must be a number, string, or boolean\")];if(\"number\"!==s&&\"categorical\"!==a){var u=\"number expected, \"+s+\" found\";return Lr(i)&&void 0===a&&(u+='\\nIf you intended to use a categorical function, specify `\"type\": \"categorical\"`.'),[new St(t.key,c,u)]}return\"categorical\"!==a||\"number\"!==s||isFinite(l)&&Math.floor(l)===l?\"categorical\"!==a&&\"number\"===s&&void 0!==r&&l<r?[new St(t.key,c,\"stop domain values must appear in ascending order\")]:(r=l,\"categorical\"===a&&l in o?[new St(t.key,c,\"stop domain values must be unique\")]:(o[l]=!0,[])):[new St(t.key,c,\"integer expected, found \"+l)]}}function Qr(t){var e=(\"property\"===t.expressionContext?Yr:qr)(It(t.value),t.valueSpec);if(\"error\"===e.result)return e.value.map((function(e){return new St(\"\"+t.key+e.key,t.value,e.message)}));var r=e.value.expression||e.value._styleExpression.expression;if(\"property\"===t.expressionContext&&\"text-font\"===t.propertyKey&&!r.outputDefined())return[new St(t.key,t.value,'Invalid data expression for \"'+t.propertyKey+'\". Output values must be contained as literals within the expression.')];if(\"property\"===t.expressionContext&&\"layout\"===t.propertyType&&!De(r))return[new St(t.key,t.value,'\"feature-state\" data expressions are not supported with layout properties.')];if(\"filter\"===t.expressionContext&&!De(r))return[new St(t.key,t.value,'\"feature-state\" data expressions are not supported with filters.')];if(t.expressionContext&&0===t.expressionContext.indexOf(\"cluster\")){if(!Re(r,[\"zoom\",\"feature-state\"]))return[new St(t.key,t.value,'\"zoom\" and \"feature-state\" expressions are not supported with cluster properties.')];if(\"cluster-initial\"===t.expressionContext&&!Oe(r))return[new St(t.key,t.value,\"Feature data expressions are not supported with initial expression part of cluster properties.\")]}return[]}function $r(t){var e=t.key,r=t.value,n=t.valueSpec,i=[];return Array.isArray(n.values)?-1===n.values.indexOf(Lt(r))&&i.push(new St(e,r,\"expected one of [\"+n.values.join(\", \")+\"], \"+JSON.stringify(r)+\" found\")):-1===Object.keys(n.values).indexOf(Lt(r))&&i.push(new St(e,r,\"expected one of [\"+Object.keys(n.values).join(\", \")+\"], \"+JSON.stringify(r)+\" found\")),i}function tn(t){if(!0===t||!1===t)return!0;if(!Array.isArray(t)||0===t.length)return!1;switch(t[0]){case\"has\":return t.length>=2&&\"$id\"!==t[1]&&\"$type\"!==t[1];case\"in\":return t.length>=3&&(\"string\"!=typeof t[1]||Array.isArray(t[2]));case\"!in\":case\"!has\":case\"none\":return!1;case\"==\":case\"!=\":case\">\":case\">=\":case\"<\":case\"<=\":return 3!==t.length||Array.isArray(t[1])||Array.isArray(t[2]);case\"any\":case\"all\":for(var e=0,r=t.slice(1);e<r.length;e+=1){var n=r[e];if(!tn(n)&&\"boolean\"!=typeof n)return!1}return!0;default:return!0}}Wr.deserialize=function(t){return new Wr(t._parameters,t._specification)},Wr.serialize=function(t){return{_parameters:t._parameters,_specification:t._specification}};var en={type:\"boolean\",default:!1,transition:!1,\"property-type\":\"data-driven\",expression:{interpolated:!1,parameters:[\"zoom\",\"feature\"]}};function rn(t){if(null==t)return{filter:function(){return!0},needGeometry:!1};tn(t)||(t=an(t));var e=qr(t,en);if(\"error\"===e.result)throw new Error(e.value.map((function(t){return t.key+\": \"+t.message})).join(\", \"));return{filter:function(t,r,n){return e.value.evaluate(t,r,{},n)},needGeometry:function t(e){if(!Array.isArray(e))return!1;if(\"within\"===e[0])return!0;for(var r=1;r<e.length;r++)if(t(e[r]))return!0;return!1}(t)}}function nn(t,e){return t<e?-1:t>e?1:0}function an(t){if(!t)return!0;var e,r=t[0];return t.length<=1?\"any\"!==r:\"==\"===r?on(t[1],t[2],\"==\"):\"!=\"===r?cn(on(t[1],t[2],\"==\")):\"<\"===r||\">\"===r||\"<=\"===r||\">=\"===r?on(t[1],t[2],r):\"any\"===r?(e=t.slice(1),[\"any\"].concat(e.map(an))):\"all\"===r?[\"all\"].concat(t.slice(1).map(an)):\"none\"===r?[\"all\"].concat(t.slice(1).map(an).map(cn)):\"in\"===r?sn(t[1],t.slice(2)):\"!in\"===r?cn(sn(t[1],t.slice(2))):\"has\"===r?ln(t[1]):\"!has\"===r?cn(ln(t[1])):\"within\"!==r||t}function on(t,e,r){switch(t){case\"$type\":return[\"filter-type-\"+r,e];case\"$id\":return[\"filter-id-\"+r,e];default:return[\"filter-\"+r,t,e]}}function sn(t,e){if(0===e.length)return!1;switch(t){case\"$type\":return[\"filter-type-in\",[\"literal\",e]];case\"$id\":return[\"filter-id-in\",[\"literal\",e]];default:return e.length>200&&!e.some((function(t){return typeof t!=typeof e[0]}))?[\"filter-in-large\",t,[\"literal\",e.sort(nn)]]:[\"filter-in-small\",t,[\"literal\",e]]}}function ln(t){switch(t){case\"$type\":return!0;case\"$id\":return[\"filter-has-id\"];default:return[\"filter-has\",t]}}function cn(t){return[\"!\",t]}function un(t){return tn(It(t.value))?Qr(Ct({},t,{expressionContext:\"filter\",valueSpec:{value:\"boolean\"}})):function t(e){var r=e.value,n=e.key;if(\"array\"!==zr(r))return[new St(n,r,\"array expected, \"+zr(r)+\" found\")];var i,a=e.styleSpec,o=[];if(r.length<1)return[new St(n,r,\"filter array must have at least 1 element\")];switch(o=o.concat($r({key:n+\"[0]\",value:r[0],valueSpec:a.filter_operator,style:e.style,styleSpec:e.styleSpec})),Lt(r[0])){case\"<\":case\"<=\":case\">\":case\">=\":r.length>=2&&\"$type\"===Lt(r[1])&&o.push(new St(n,r,'\"$type\" cannot be use with operator \"'+r[0]+'\"'));case\"==\":case\"!=\":3!==r.length&&o.push(new St(n,r,'filter array for operator \"'+r[0]+'\" must have 3 elements'));case\"in\":case\"!in\":r.length>=2&&\"string\"!==(i=zr(r[1]))&&o.push(new St(n+\"[1]\",r[1],\"string expected, \"+i+\" found\"));for(var s=2;s<r.length;s++)i=zr(r[s]),\"$type\"===Lt(r[1])?o=o.concat($r({key:n+\"[\"+s+\"]\",value:r[s],valueSpec:a.geometry_type,style:e.style,styleSpec:e.styleSpec})):\"string\"!==i&&\"number\"!==i&&\"boolean\"!==i&&o.push(new St(n+\"[\"+s+\"]\",r[s],\"string, number, or boolean expected, \"+i+\" found\"));break;case\"any\":case\"all\":case\"none\":for(var l=1;l<r.length;l++)o=o.concat(t({key:n+\"[\"+l+\"]\",value:r[l],style:e.style,styleSpec:e.styleSpec}));break;case\"has\":case\"!has\":i=zr(r[1]),2!==r.length?o.push(new St(n,r,'filter array for \"'+r[0]+'\" operator must have 2 elements')):\"string\"!==i&&o.push(new St(n+\"[1]\",r[1],\"string expected, \"+i+\" found\"));break;case\"within\":i=zr(r[1]),2!==r.length?o.push(new St(n,r,'filter array for \"'+r[0]+'\" operator must have 2 elements')):\"object\"!==i&&o.push(new St(n+\"[1]\",r[1],\"object expected, \"+i+\" found\"))}return o}(t)}function fn(t,e){var r=t.key,n=t.style,i=t.styleSpec,a=t.value,o=t.objectKey,s=i[e+\"_\"+t.layerType];if(!s)return[];var l=o.match(/^(.*)-transition$/);if(\"paint\"===e&&l&&s[l[1]]&&s[l[1]].transition)return bn({key:r,value:a,valueSpec:i.transition,style:n,styleSpec:i});var c,u=t.valueSpec||s[o];if(!u)return[new St(r,a,'unknown property \"'+o+'\"')];if(\"string\"===zr(a)&&Lr(u)&&!u.tokens&&(c=/^{([^}]+)}$/.exec(a)))return[new St(r,a,'\"'+o+'\" does not support interpolation syntax\\nUse an identity property function instead: `{ \"type\": \"identity\", \"property\": '+JSON.stringify(c[1])+\" }`.\")];var f=[];return\"symbol\"===t.layerType&&(\"text-field\"===o&&n&&!n.glyphs&&f.push(new St(r,a,'use of \"text-field\" requires a style \"glyphs\" property')),\"text-font\"===o&&Or(It(a))&&\"identity\"===Lt(a.type)&&f.push(new St(r,a,'\"text-font\" does not support identity functions'))),f.concat(bn({key:t.key,value:a,valueSpec:u,style:n,styleSpec:i,expressionContext:\"property\",propertyType:e,propertyKey:o}))}function hn(t){return fn(t,\"paint\")}function pn(t){return fn(t,\"layout\")}function dn(t){var e=[],r=t.value,n=t.key,i=t.style,a=t.styleSpec;r.type||r.ref||e.push(new St(n,r,'either \"type\" or \"ref\" is required'));var o,s=Lt(r.type),l=Lt(r.ref);if(r.id)for(var c=Lt(r.id),u=0;u<t.arrayIndex;u++){var f=i.layers[u];Lt(f.id)===c&&e.push(new St(n,r.id,'duplicate layer id \"'+r.id+'\", previously used at line '+f.id.__line__))}if(\"ref\"in r)[\"type\",\"source\",\"source-layer\",\"filter\",\"layout\"].forEach((function(t){t in r&&e.push(new St(n,r[t],'\"'+t+'\" is prohibited for ref layers'))})),i.layers.forEach((function(t){Lt(t.id)===l&&(o=t)})),o?o.ref?e.push(new St(n,r.ref,\"ref cannot reference another ref layer\")):s=Lt(o.type):e.push(new St(n,r.ref,'ref layer \"'+l+'\" not found'));else if(\"background\"!==s)if(r.source){var h=i.sources&&i.sources[r.source],p=h&&Lt(h.type);h?\"vector\"===p&&\"raster\"===s?e.push(new St(n,r.source,'layer \"'+r.id+'\" requires a raster source')):\"raster\"===p&&\"raster\"!==s?e.push(new St(n,r.source,'layer \"'+r.id+'\" requires a vector source')):\"vector\"!==p||r[\"source-layer\"]?\"raster-dem\"===p&&\"hillshade\"!==s?e.push(new St(n,r.source,\"raster-dem source can only be used with layer type 'hillshade'.\")):\"line\"!==s||!r.paint||!r.paint[\"line-gradient\"]||\"geojson\"===p&&h.lineMetrics||e.push(new St(n,r,'layer \"'+r.id+'\" specifies a line-gradient, which requires a GeoJSON source with `lineMetrics` enabled.')):e.push(new St(n,r,'layer \"'+r.id+'\" must specify a \"source-layer\"')):e.push(new St(n,r.source,'source \"'+r.source+'\" not found'))}else e.push(new St(n,r,'missing required property \"source\"'));return e=e.concat(Xr({key:n,value:r,valueSpec:a.layer,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{\"*\":function(){return[]},type:function(){return bn({key:n+\".type\",value:r.type,valueSpec:a.layer.type,style:t.style,styleSpec:t.styleSpec,object:r,objectKey:\"type\"})},filter:un,layout:function(t){return Xr({layer:r,key:t.key,value:t.value,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{\"*\":function(t){return pn(Ct({layerType:s},t))}}})},paint:function(t){return Xr({layer:r,key:t.key,value:t.value,style:t.style,styleSpec:t.styleSpec,objectElementValidators:{\"*\":function(t){return hn(Ct({layerType:s},t))}}})}}}))}function gn(t){var e=t.value,r=t.key,n=zr(e);return\"string\"!==n?[new St(r,e,\"string expected, \"+n+\" found\")]:[]}var mn={promoteId:function(t){var e=t.key,r=t.value;if(\"string\"===zr(r))return gn({key:e,value:r});var n=[];for(var i in r)n.push.apply(n,gn({key:e+\".\"+i,value:r[i]}));return n}};function vn(t){var e=t.value,r=t.key,n=t.styleSpec,i=t.style;if(!e.type)return[new St(r,e,'\"type\" is required')];var a,o=Lt(e.type);switch(o){case\"vector\":case\"raster\":case\"raster-dem\":return Xr({key:r,value:e,valueSpec:n[\"source_\"+o.replace(\"-\",\"_\")],style:t.style,styleSpec:n,objectElementValidators:mn});case\"geojson\":if(a=Xr({key:r,value:e,valueSpec:n.source_geojson,style:i,styleSpec:n,objectElementValidators:mn}),e.cluster)for(var s in e.clusterProperties){var l=e.clusterProperties[s],c=l[0],u=\"string\"==typeof c?[c,[\"accumulated\"],[\"get\",s]]:c;a.push.apply(a,Qr({key:r+\".\"+s+\".map\",value:l[1],expressionContext:\"cluster-map\"})),a.push.apply(a,Qr({key:r+\".\"+s+\".reduce\",value:u,expressionContext:\"cluster-reduce\"}))}return a;case\"video\":return Xr({key:r,value:e,valueSpec:n.source_video,style:i,styleSpec:n});case\"image\":return Xr({key:r,value:e,valueSpec:n.source_image,style:i,styleSpec:n});case\"canvas\":return[new St(r,null,\"Please use runtime APIs to add canvas sources, rather than including them in stylesheets.\",\"source.canvas\")];default:return $r({key:r+\".type\",value:e.type,valueSpec:{values:[\"vector\",\"raster\",\"raster-dem\",\"geojson\",\"video\",\"image\"]},style:i,styleSpec:n})}}function yn(t){var e=t.value,r=t.styleSpec,n=r.light,i=t.style,a=[],o=zr(e);if(void 0===e)return a;if(\"object\"!==o)return a.concat([new St(\"light\",e,\"object expected, \"+o+\" found\")]);for(var s in e){var l=s.match(/^(.*)-transition$/);a=a.concat(l&&n[l[1]]&&n[l[1]].transition?bn({key:s,value:e[s],valueSpec:r.transition,style:i,styleSpec:r}):n[s]?bn({key:s,value:e[s],valueSpec:n[s],style:i,styleSpec:r}):[new St(s,e[s],'unknown property \"'+s+'\"')])}return a}var xn={\"*\":function(){return[]},array:Zr,boolean:function(t){var e=t.value,r=t.key,n=zr(e);return\"boolean\"!==n?[new St(r,e,\"boolean expected, \"+n+\" found\")]:[]},number:Jr,color:function(t){var e=t.key,r=t.value,n=zr(r);return\"string\"!==n?[new St(e,r,\"color expected, \"+n+\" found\")]:null===Jt(r)?[new St(e,r,'color expected, \"'+r+'\" found')]:[]},constants:Et,enum:$r,filter:un,function:Kr,layer:dn,object:Xr,source:vn,light:yn,string:gn,formatted:function(t){return 0===gn(t).length?[]:Qr(t)},resolvedImage:function(t){return 0===gn(t).length?[]:Qr(t)}};function bn(t){var e=t.value,r=t.valueSpec,n=t.styleSpec;return r.expression&&Or(Lt(e))?Kr(t):r.expression&&Vr(It(e))?Qr(t):r.type&&xn[r.type]?xn[r.type](t):Xr(Ct({},t,{valueSpec:r.type?n[r.type]:r}))}function _n(t){var e=t.value,r=t.key,n=gn(t);return n.length||(-1===e.indexOf(\"{fontstack}\")&&n.push(new St(r,e,'\"glyphs\" url must include a \"{fontstack}\" token')),-1===e.indexOf(\"{range}\")&&n.push(new St(r,e,'\"glyphs\" url must include a \"{range}\" token'))),n}function wn(t,e){void 0===e&&(e=At);var r=[];return r=r.concat(bn({key:\"\",value:t,valueSpec:e.$root,styleSpec:e,style:t,objectElementValidators:{glyphs:_n,\"*\":function(){return[]}}})),t.constants&&(r=r.concat(Et({key:\"constants\",value:t.constants,style:t,styleSpec:e}))),Tn(r)}function Tn(t){return[].concat(t).sort((function(t,e){return t.line-e.line}))}function kn(t){return function(){for(var e=[],r=arguments.length;r--;)e[r]=arguments[r];return Tn(t.apply(this,e))}}wn.source=kn(vn),wn.light=kn(yn),wn.layer=kn(dn),wn.filter=kn(un),wn.paintProperty=kn(hn),wn.layoutProperty=kn(pn);var Mn=wn,An=Mn.light,Sn=Mn.paintProperty,En=Mn.layoutProperty;function Cn(t,e){var r=!1;if(e&&e.length)for(var n=0,i=e;n<i.length;n+=1)t.fire(new kt(new Error(i[n].message))),r=!0;return r}var Ln=In;function In(t,e,r){var n=this.cells=[];if(t instanceof ArrayBuffer){this.arrayBuffer=t;var i=new Int32Array(this.arrayBuffer);t=i[0],this.d=(e=i[1])+2*(r=i[2]);for(var a=0;a<this.d*this.d;a++){var o=i[3+a],s=i[3+a+1];n.push(o===s?null:i.subarray(o,s))}var l=i[3+n.length+1];this.keys=i.subarray(i[3+n.length],l),this.bboxes=i.subarray(l),this.insert=this._insertReadonly}else{this.d=e+2*r;for(var c=0;c<this.d*this.d;c++)n.push([]);this.keys=[],this.bboxes=[]}this.n=e,this.extent=t,this.padding=r,this.scale=e/t,this.uid=0;var u=r/e*t;this.min=-u,this.max=t+u}In.prototype.insert=function(t,e,r,n,i){this._forEachCell(e,r,n,i,this._insertCell,this.uid++),this.keys.push(t),this.bboxes.push(e),this.bboxes.push(r),this.bboxes.push(n),this.bboxes.push(i)},In.prototype._insertReadonly=function(){throw\"Cannot insert into a GridIndex created from an ArrayBuffer.\"},In.prototype._insertCell=function(t,e,r,n,i,a){this.cells[i].push(a)},In.prototype.query=function(t,e,r,n,i){var a=this.min,o=this.max;if(t<=a&&e<=a&&o<=r&&o<=n&&!i)return Array.prototype.slice.call(this.keys);var s=[];return this._forEachCell(t,e,r,n,this._queryCell,s,{},i),s},In.prototype._queryCell=function(t,e,r,n,i,a,o,s){var l=this.cells[i];if(null!==l)for(var c=this.keys,u=this.bboxes,f=0;f<l.length;f++){var h=l[f];if(void 0===o[h]){var p=4*h;(s?s(u[p+0],u[p+1],u[p+2],u[p+3]):t<=u[p+2]&&e<=u[p+3]&&r>=u[p+0]&&n>=u[p+1])?(o[h]=!0,a.push(c[h])):o[h]=!1}}},In.prototype._forEachCell=function(t,e,r,n,i,a,o,s){for(var l=this._convertToCellCoord(t),c=this._convertToCellCoord(e),u=this._convertToCellCoord(r),f=this._convertToCellCoord(n),h=l;h<=u;h++)for(var p=c;p<=f;p++){var d=this.d*p+h;if((!s||s(this._convertFromCellCoord(h),this._convertFromCellCoord(p),this._convertFromCellCoord(h+1),this._convertFromCellCoord(p+1)))&&i.call(this,t,e,r,n,d,a,o,s))return}},In.prototype._convertFromCellCoord=function(t){return(t-this.padding)/this.scale},In.prototype._convertToCellCoord=function(t){return Math.max(0,Math.min(this.d-1,Math.floor(t*this.scale)+this.padding))},In.prototype.toArrayBuffer=function(){if(this.arrayBuffer)return this.arrayBuffer;for(var t=this.cells,e=3+this.cells.length+1+1,r=0,n=0;n<this.cells.length;n++)r+=this.cells[n].length;var i=new Int32Array(e+r+this.keys.length+this.bboxes.length);i[0]=this.extent,i[1]=this.n,i[2]=this.padding;for(var a=e,o=0;o<t.length;o++){var s=t[o];i[3+o]=a,i.set(s,a),a+=s.length}return i[3+t.length]=a,i.set(this.keys,a),i[3+t.length+1]=a+=this.keys.length,i.set(this.bboxes,a),a+=this.bboxes.length,i.buffer};var Pn=self.ImageData,zn=self.ImageBitmap,On={};function Dn(t,e,r){void 0===r&&(r={}),Object.defineProperty(e,\"_classRegistryKey\",{value:t,writeable:!1}),On[t]={klass:e,omit:r.omit||[],shallow:r.shallow||[]}}for(var Rn in Dn(\"Object\",Object),Ln.serialize=function(t,e){var r=t.toArrayBuffer();return e&&e.push(r),{buffer:r}},Ln.deserialize=function(t){return new Ln(t.buffer)},Dn(\"Grid\",Ln),Dn(\"Color\",Kt),Dn(\"Error\",Error),Dn(\"ResolvedImage\",ee),Dn(\"StylePropertyFunction\",Wr),Dn(\"StyleExpression\",Ur,{omit:[\"_evaluator\"]}),Dn(\"ZoomDependentExpression\",Gr),Dn(\"ZoomConstantExpression\",Hr),Dn(\"CompoundExpression\",me,{omit:[\"_evaluate\"]}),Tr)Tr[Rn]._classRegistryKey||Dn(\"Expression_\"+Rn,Tr[Rn]);function Fn(t){return t&&\"undefined\"!=typeof ArrayBuffer&&(t instanceof ArrayBuffer||t.constructor&&\"ArrayBuffer\"===t.constructor.name)}function Bn(t){return zn&&t instanceof zn}function Nn(t,e){if(null==t||\"boolean\"==typeof t||\"number\"==typeof t||\"string\"==typeof t||t instanceof Boolean||t instanceof Number||t instanceof String||t instanceof Date||t instanceof RegExp)return t;if(Fn(t)||Bn(t))return e&&e.push(t),t;if(ArrayBuffer.isView(t)){var r=t;return e&&e.push(r.buffer),r}if(t instanceof Pn)return e&&e.push(t.data.buffer),t;if(Array.isArray(t)){for(var n=[],i=0,a=t;i<a.length;i+=1)n.push(Nn(a[i],e));return n}if(\"object\"==typeof t){var o=t.constructor,s=o._classRegistryKey;if(!s)throw new Error(\"can't serialize object of unregistered class\");var l=o.serialize?o.serialize(t,e):{};if(!o.serialize){for(var c in t)if(t.hasOwnProperty(c)&&!(On[s].omit.indexOf(c)>=0)){var u=t[c];l[c]=On[s].shallow.indexOf(c)>=0?u:Nn(u,e)}t instanceof Error&&(l.message=t.message)}if(l.$name)throw new Error(\"$name property is reserved for worker serialization logic.\");return\"Object\"!==s&&(l.$name=s),l}throw new Error(\"can't serialize object of type \"+typeof t)}function jn(t){if(null==t||\"boolean\"==typeof t||\"number\"==typeof t||\"string\"==typeof t||t instanceof Boolean||t instanceof Number||t instanceof String||t instanceof Date||t instanceof RegExp||Fn(t)||Bn(t)||ArrayBuffer.isView(t)||t instanceof Pn)return t;if(Array.isArray(t))return t.map(jn);if(\"object\"==typeof t){var e=t.$name||\"Object\",r=On[e].klass;if(!r)throw new Error(\"can't deserialize unregistered class \"+e);if(r.deserialize)return r.deserialize(t);for(var n=Object.create(r.prototype),i=0,a=Object.keys(t);i<a.length;i+=1){var o=a[i];if(\"$name\"!==o){var s=t[o];n[o]=On[e].shallow.indexOf(o)>=0?s:jn(s)}}return n}throw new Error(\"can't deserialize object of type \"+typeof t)}var Un=function(){this.first=!0};Un.prototype.update=function(t,e){var r=Math.floor(t);return this.first?(this.first=!1,this.lastIntegerZoom=r,this.lastIntegerZoomTime=0,this.lastZoom=t,this.lastFloorZoom=r,!0):(this.lastFloorZoom>r?(this.lastIntegerZoom=r+1,this.lastIntegerZoomTime=e):this.lastFloorZoom<r&&(this.lastIntegerZoom=r,this.lastIntegerZoomTime=e),t!==this.lastZoom&&(this.lastZoom=t,this.lastFloorZoom=r,!0))};var Vn={\"Latin-1 Supplement\":function(t){return t>=128&&t<=255},Arabic:function(t){return t>=1536&&t<=1791},\"Arabic Supplement\":function(t){return t>=1872&&t<=1919},\"Arabic Extended-A\":function(t){return t>=2208&&t<=2303},\"Hangul Jamo\":function(t){return t>=4352&&t<=4607},\"Unified Canadian Aboriginal Syllabics\":function(t){return t>=5120&&t<=5759},Khmer:function(t){return t>=6016&&t<=6143},\"Unified Canadian Aboriginal Syllabics Extended\":function(t){return t>=6320&&t<=6399},\"General Punctuation\":function(t){return t>=8192&&t<=8303},\"Letterlike Symbols\":function(t){return t>=8448&&t<=8527},\"Number Forms\":function(t){return t>=8528&&t<=8591},\"Miscellaneous Technical\":function(t){return t>=8960&&t<=9215},\"Control Pictures\":function(t){return t>=9216&&t<=9279},\"Optical Character Recognition\":function(t){return t>=9280&&t<=9311},\"Enclosed Alphanumerics\":function(t){return t>=9312&&t<=9471},\"Geometric Shapes\":function(t){return t>=9632&&t<=9727},\"Miscellaneous Symbols\":function(t){return t>=9728&&t<=9983},\"Miscellaneous Symbols and Arrows\":function(t){return t>=11008&&t<=11263},\"CJK Radicals Supplement\":function(t){return t>=11904&&t<=12031},\"Kangxi Radicals\":function(t){return t>=12032&&t<=12255},\"Ideographic Description Characters\":function(t){return t>=12272&&t<=12287},\"CJK Symbols and Punctuation\":function(t){return t>=12288&&t<=12351},Hiragana:function(t){return t>=12352&&t<=12447},Katakana:function(t){return t>=12448&&t<=12543},Bopomofo:function(t){return t>=12544&&t<=12591},\"Hangul Compatibility Jamo\":function(t){return t>=12592&&t<=12687},Kanbun:function(t){return t>=12688&&t<=12703},\"Bopomofo Extended\":function(t){return t>=12704&&t<=12735},\"CJK Strokes\":function(t){return t>=12736&&t<=12783},\"Katakana Phonetic Extensions\":function(t){return t>=12784&&t<=12799},\"Enclosed CJK Letters and Months\":function(t){return t>=12800&&t<=13055},\"CJK Compatibility\":function(t){return t>=13056&&t<=13311},\"CJK Unified Ideographs Extension A\":function(t){return t>=13312&&t<=19903},\"Yijing Hexagram Symbols\":function(t){return t>=19904&&t<=19967},\"CJK Unified Ideographs\":function(t){return t>=19968&&t<=40959},\"Yi Syllables\":function(t){return t>=40960&&t<=42127},\"Yi Radicals\":function(t){return t>=42128&&t<=42191},\"Hangul Jamo Extended-A\":function(t){return t>=43360&&t<=43391},\"Hangul Syllables\":function(t){return t>=44032&&t<=55215},\"Hangul Jamo Extended-B\":function(t){return t>=55216&&t<=55295},\"Private Use Area\":function(t){return t>=57344&&t<=63743},\"CJK Compatibility Ideographs\":function(t){return t>=63744&&t<=64255},\"Arabic Presentation Forms-A\":function(t){return t>=64336&&t<=65023},\"Vertical Forms\":function(t){return t>=65040&&t<=65055},\"CJK Compatibility Forms\":function(t){return t>=65072&&t<=65103},\"Small Form Variants\":function(t){return t>=65104&&t<=65135},\"Arabic Presentation Forms-B\":function(t){return t>=65136&&t<=65279},\"Halfwidth and Fullwidth Forms\":function(t){return t>=65280&&t<=65519}};function qn(t){for(var e=0,r=t;e<r.length;e+=1)if(Hn(r[e].charCodeAt(0)))return!0;return!1}function Hn(t){return!(746!==t&&747!==t&&(t<4352||!(Vn[\"Bopomofo Extended\"](t)||Vn.Bopomofo(t)||Vn[\"CJK Compatibility Forms\"](t)&&!(t>=65097&&t<=65103)||Vn[\"CJK Compatibility Ideographs\"](t)||Vn[\"CJK Compatibility\"](t)||Vn[\"CJK Radicals Supplement\"](t)||Vn[\"CJK Strokes\"](t)||!(!Vn[\"CJK Symbols and Punctuation\"](t)||t>=12296&&t<=12305||t>=12308&&t<=12319||12336===t)||Vn[\"CJK Unified Ideographs Extension A\"](t)||Vn[\"CJK Unified Ideographs\"](t)||Vn[\"Enclosed CJK Letters and Months\"](t)||Vn[\"Hangul Compatibility Jamo\"](t)||Vn[\"Hangul Jamo Extended-A\"](t)||Vn[\"Hangul Jamo Extended-B\"](t)||Vn[\"Hangul Jamo\"](t)||Vn[\"Hangul Syllables\"](t)||Vn.Hiragana(t)||Vn[\"Ideographic Description Characters\"](t)||Vn.Kanbun(t)||Vn[\"Kangxi Radicals\"](t)||Vn[\"Katakana Phonetic Extensions\"](t)||Vn.Katakana(t)&&12540!==t||!(!Vn[\"Halfwidth and Fullwidth Forms\"](t)||65288===t||65289===t||65293===t||t>=65306&&t<=65310||65339===t||65341===t||65343===t||t>=65371&&t<=65503||65507===t||t>=65512&&t<=65519)||!(!Vn[\"Small Form Variants\"](t)||t>=65112&&t<=65118||t>=65123&&t<=65126)||Vn[\"Unified Canadian Aboriginal Syllabics\"](t)||Vn[\"Unified Canadian Aboriginal Syllabics Extended\"](t)||Vn[\"Vertical Forms\"](t)||Vn[\"Yijing Hexagram Symbols\"](t)||Vn[\"Yi Syllables\"](t)||Vn[\"Yi Radicals\"](t))))}function Gn(t){return!(Hn(t)||function(t){return!!(Vn[\"Latin-1 Supplement\"](t)&&(167===t||169===t||174===t||177===t||188===t||189===t||190===t||215===t||247===t)||Vn[\"General Punctuation\"](t)&&(8214===t||8224===t||8225===t||8240===t||8241===t||8251===t||8252===t||8258===t||8263===t||8264===t||8265===t||8273===t)||Vn[\"Letterlike Symbols\"](t)||Vn[\"Number Forms\"](t)||Vn[\"Miscellaneous Technical\"](t)&&(t>=8960&&t<=8967||t>=8972&&t<=8991||t>=8996&&t<=9e3||9003===t||t>=9085&&t<=9114||t>=9150&&t<=9165||9167===t||t>=9169&&t<=9179||t>=9186&&t<=9215)||Vn[\"Control Pictures\"](t)&&9251!==t||Vn[\"Optical Character Recognition\"](t)||Vn[\"Enclosed Alphanumerics\"](t)||Vn[\"Geometric Shapes\"](t)||Vn[\"Miscellaneous Symbols\"](t)&&!(t>=9754&&t<=9759)||Vn[\"Miscellaneous Symbols and Arrows\"](t)&&(t>=11026&&t<=11055||t>=11088&&t<=11097||t>=11192&&t<=11243)||Vn[\"CJK Symbols and Punctuation\"](t)||Vn.Katakana(t)||Vn[\"Private Use Area\"](t)||Vn[\"CJK Compatibility Forms\"](t)||Vn[\"Small Form Variants\"](t)||Vn[\"Halfwidth and Fullwidth Forms\"](t)||8734===t||8756===t||8757===t||t>=9984&&t<=10087||t>=10102&&t<=10131||65532===t||65533===t)}(t))}function Yn(t){return t>=1424&&t<=2303||Vn[\"Arabic Presentation Forms-A\"](t)||Vn[\"Arabic Presentation Forms-B\"](t)}function Wn(t,e){return!(!e&&Yn(t)||t>=2304&&t<=3583||t>=3840&&t<=4255||Vn.Khmer(t))}function Xn(t){for(var e=0,r=t;e<r.length;e+=1)if(Yn(r[e].charCodeAt(0)))return!0;return!1}var Zn=null,Jn=\"unavailable\",Kn=null,Qn=function(t){t&&\"string\"==typeof t&&t.indexOf(\"NetworkError\")>-1&&(Jn=\"error\"),Zn&&Zn(t)};function $n(){ti.fire(new Tt(\"pluginStateChange\",{pluginStatus:Jn,pluginURL:Kn}))}var ti=new Mt,ei=function(){return Jn},ri=function(){if(\"deferred\"!==Jn||!Kn)throw new Error(\"rtl-text-plugin cannot be downloaded unless a pluginURL is specified\");Jn=\"loading\",$n(),Kn&&yt({url:Kn},(function(t){t?Qn(t):(Jn=\"loaded\",$n())}))},ni={applyArabicShaping:null,processBidirectionalText:null,processStyledBidirectionalText:null,isLoaded:function(){return\"loaded\"===Jn||null!=ni.applyArabicShaping},isLoading:function(){return\"loading\"===Jn},setState:function(t){Jn=t.pluginStatus,Kn=t.pluginURL},isParsed:function(){return null!=ni.applyArabicShaping&&null!=ni.processBidirectionalText&&null!=ni.processStyledBidirectionalText},getPluginURL:function(){return Kn}},ii=function(t,e){this.zoom=t,e?(this.now=e.now,this.fadeDuration=e.fadeDuration,this.zoomHistory=e.zoomHistory,this.transition=e.transition):(this.now=0,this.fadeDuration=0,this.zoomHistory=new Un,this.transition={})};ii.prototype.isSupportedScript=function(t){return function(t,e){for(var r=0,n=t;r<n.length;r+=1)if(!Wn(n[r].charCodeAt(0),e))return!1;return!0}(t,ni.isLoaded())},ii.prototype.crossFadingFactor=function(){return 0===this.fadeDuration?1:Math.min((this.now-this.zoomHistory.lastIntegerZoomTime)/this.fadeDuration,1)},ii.prototype.getCrossfadeParameters=function(){var t=this.zoom,e=t-Math.floor(t),r=this.crossFadingFactor();return t>this.zoomHistory.lastIntegerZoom?{fromScale:2,toScale:1,t:e+(1-e)*r}:{fromScale:.5,toScale:1,t:1-(1-r)*e}};var ai=function(t,e){this.property=t,this.value=e,this.expression=function(t,e){if(Or(t))return new Wr(t,e);if(Vr(t)){var r=Yr(t,e);if(\"error\"===r.result)throw new Error(r.value.map((function(t){return t.key+\": \"+t.message})).join(\", \"));return r.value}var n=t;return\"string\"==typeof t&&\"color\"===e.type&&(n=Kt.parse(t)),{kind:\"constant\",evaluate:function(){return n}}}(void 0===e?t.specification.default:e,t.specification)};ai.prototype.isDataDriven=function(){return\"source\"===this.expression.kind||\"composite\"===this.expression.kind},ai.prototype.possiblyEvaluate=function(t,e,r){return this.property.possiblyEvaluate(this,t,e,r)};var oi=function(t){this.property=t,this.value=new ai(t,void 0)};oi.prototype.transitioned=function(t,e){return new li(this.property,this.value,e,u({},t.transition,this.transition),t.now)},oi.prototype.untransitioned=function(){return new li(this.property,this.value,null,{},0)};var si=function(t){this._properties=t,this._values=Object.create(t.defaultTransitionablePropertyValues)};si.prototype.getValue=function(t){return x(this._values[t].value.value)},si.prototype.setValue=function(t,e){this._values.hasOwnProperty(t)||(this._values[t]=new oi(this._values[t].property)),this._values[t].value=new ai(this._values[t].property,null===e?void 0:x(e))},si.prototype.getTransition=function(t){return x(this._values[t].transition)},si.prototype.setTransition=function(t,e){this._values.hasOwnProperty(t)||(this._values[t]=new oi(this._values[t].property)),this._values[t].transition=x(e)||void 0},si.prototype.serialize=function(){for(var t={},e=0,r=Object.keys(this._values);e<r.length;e+=1){var n=r[e],i=this.getValue(n);void 0!==i&&(t[n]=i);var a=this.getTransition(n);void 0!==a&&(t[n+\"-transition\"]=a)}return t},si.prototype.transitioned=function(t,e){for(var r=new ci(this._properties),n=0,i=Object.keys(this._values);n<i.length;n+=1){var a=i[n];r._values[a]=this._values[a].transitioned(t,e._values[a])}return r},si.prototype.untransitioned=function(){for(var t=new ci(this._properties),e=0,r=Object.keys(this._values);e<r.length;e+=1){var n=r[e];t._values[n]=this._values[n].untransitioned()}return t};var li=function(t,e,r,n,i){this.property=t,this.value=e,this.begin=i+n.delay||0,this.end=this.begin+n.duration||0,t.specification.transition&&(n.delay||n.duration)&&(this.prior=r)};li.prototype.possiblyEvaluate=function(t,e,r){var n=t.now||0,i=this.value.possiblyEvaluate(t,e,r),a=this.prior;if(a){if(n>this.end)return this.prior=null,i;if(this.value.isDataDriven())return this.prior=null,i;if(n<this.begin)return a.possiblyEvaluate(t,e,r);var o=(n-this.begin)/(this.end-this.begin);return this.property.interpolate(a.possiblyEvaluate(t,e,r),i,function(t){if(t<=0)return 0;if(t>=1)return 1;var e=t*t,r=e*t;return 4*(t<.5?r:3*(t-e)+r-.75)}(o))}return i};var ci=function(t){this._properties=t,this._values=Object.create(t.defaultTransitioningPropertyValues)};ci.prototype.possiblyEvaluate=function(t,e,r){for(var n=new hi(this._properties),i=0,a=Object.keys(this._values);i<a.length;i+=1){var o=a[i];n._values[o]=this._values[o].possiblyEvaluate(t,e,r)}return n},ci.prototype.hasTransition=function(){for(var t=0,e=Object.keys(this._values);t<e.length;t+=1)if(this._values[e[t]].prior)return!0;return!1};var ui=function(t){this._properties=t,this._values=Object.create(t.defaultPropertyValues)};ui.prototype.getValue=function(t){return x(this._values[t].value)},ui.prototype.setValue=function(t,e){this._values[t]=new ai(this._values[t].property,null===e?void 0:x(e))},ui.prototype.serialize=function(){for(var t={},e=0,r=Object.keys(this._values);e<r.length;e+=1){var n=r[e],i=this.getValue(n);void 0!==i&&(t[n]=i)}return t},ui.prototype.possiblyEvaluate=function(t,e,r){for(var n=new hi(this._properties),i=0,a=Object.keys(this._values);i<a.length;i+=1){var o=a[i];n._values[o]=this._values[o].possiblyEvaluate(t,e,r)}return n};var fi=function(t,e,r){this.property=t,this.value=e,this.parameters=r};fi.prototype.isConstant=function(){return\"constant\"===this.value.kind},fi.prototype.constantOr=function(t){return\"constant\"===this.value.kind?this.value.value:t},fi.prototype.evaluate=function(t,e,r,n){return this.property.evaluate(this.value,this.parameters,t,e,r,n)};var hi=function(t){this._properties=t,this._values=Object.create(t.defaultPossiblyEvaluatedValues)};hi.prototype.get=function(t){return this._values[t]};var pi=function(t){this.specification=t};pi.prototype.possiblyEvaluate=function(t,e){return t.expression.evaluate(e)},pi.prototype.interpolate=function(t,e,r){var n=Ve[this.specification.type];return n?n(t,e,r):t};var di=function(t,e){this.specification=t,this.overrides=e};di.prototype.possiblyEvaluate=function(t,e,r,n){return new fi(this,\"constant\"===t.expression.kind||\"camera\"===t.expression.kind?{kind:\"constant\",value:t.expression.evaluate(e,null,{},r,n)}:t.expression,e)},di.prototype.interpolate=function(t,e,r){if(\"constant\"!==t.value.kind||\"constant\"!==e.value.kind)return t;if(void 0===t.value.value||void 0===e.value.value)return new fi(this,{kind:\"constant\",value:void 0},t.parameters);var n=Ve[this.specification.type];return n?new fi(this,{kind:\"constant\",value:n(t.value.value,e.value.value,r)},t.parameters):t},di.prototype.evaluate=function(t,e,r,n,i,a){return\"constant\"===t.kind?t.value:t.evaluate(e,r,n,i,a)};var gi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.possiblyEvaluate=function(t,e,r,n){if(void 0===t.value)return new fi(this,{kind:\"constant\",value:void 0},e);if(\"constant\"===t.expression.kind){var i=t.expression.evaluate(e,null,{},r,n),a=\"resolvedImage\"===t.property.specification.type&&\"string\"!=typeof i?i.name:i,o=this._calculate(a,a,a,e);return new fi(this,{kind:\"constant\",value:o},e)}if(\"camera\"===t.expression.kind){var s=this._calculate(t.expression.evaluate({zoom:e.zoom-1}),t.expression.evaluate({zoom:e.zoom}),t.expression.evaluate({zoom:e.zoom+1}),e);return new fi(this,{kind:\"constant\",value:s},e)}return new fi(this,t.expression,e)},e.prototype.evaluate=function(t,e,r,n,i,a){if(\"source\"===t.kind){var o=t.evaluate(e,r,n,i,a);return this._calculate(o,o,o,e)}return\"composite\"===t.kind?this._calculate(t.evaluate({zoom:Math.floor(e.zoom)-1},r,n),t.evaluate({zoom:Math.floor(e.zoom)},r,n),t.evaluate({zoom:Math.floor(e.zoom)+1},r,n),e):t.value},e.prototype._calculate=function(t,e,r,n){return n.zoom>n.zoomHistory.lastIntegerZoom?{from:t,to:e}:{from:r,to:e}},e.prototype.interpolate=function(t){return t},e}(di),mi=function(t){this.specification=t};mi.prototype.possiblyEvaluate=function(t,e,r,n){if(void 0!==t.value){if(\"constant\"===t.expression.kind){var i=t.expression.evaluate(e,null,{},r,n);return this._calculate(i,i,i,e)}return this._calculate(t.expression.evaluate(new ii(Math.floor(e.zoom-1),e)),t.expression.evaluate(new ii(Math.floor(e.zoom),e)),t.expression.evaluate(new ii(Math.floor(e.zoom+1),e)),e)}},mi.prototype._calculate=function(t,e,r,n){return n.zoom>n.zoomHistory.lastIntegerZoom?{from:t,to:e}:{from:r,to:e}},mi.prototype.interpolate=function(t){return t};var vi=function(t){this.specification=t};vi.prototype.possiblyEvaluate=function(t,e,r,n){return!!t.expression.evaluate(e,null,{},r,n)},vi.prototype.interpolate=function(){return!1};var yi=function(t){for(var e in this.properties=t,this.defaultPropertyValues={},this.defaultTransitionablePropertyValues={},this.defaultTransitioningPropertyValues={},this.defaultPossiblyEvaluatedValues={},this.overridableProperties=[],t){var r=t[e];r.specification.overridable&&this.overridableProperties.push(e);var n=this.defaultPropertyValues[e]=new ai(r,void 0),i=this.defaultTransitionablePropertyValues[e]=new oi(r);this.defaultTransitioningPropertyValues[e]=i.untransitioned(),this.defaultPossiblyEvaluatedValues[e]=n.possiblyEvaluate({})}};Dn(\"DataDrivenProperty\",di),Dn(\"DataConstantProperty\",pi),Dn(\"CrossFadedDataDrivenProperty\",gi),Dn(\"CrossFadedProperty\",mi),Dn(\"ColorRampProperty\",vi);var xi=function(t){function e(e,r){if(t.call(this),this.id=e.id,this.type=e.type,this._featureFilter={filter:function(){return!0},needGeometry:!1},\"custom\"!==e.type&&(this.metadata=(e=e).metadata,this.minzoom=e.minzoom,this.maxzoom=e.maxzoom,\"background\"!==e.type&&(this.source=e.source,this.sourceLayer=e[\"source-layer\"],this.filter=e.filter),r.layout&&(this._unevaluatedLayout=new ui(r.layout)),r.paint)){for(var n in this._transitionablePaint=new si(r.paint),e.paint)this.setPaintProperty(n,e.paint[n],{validate:!1});for(var i in e.layout)this.setLayoutProperty(i,e.layout[i],{validate:!1});this._transitioningPaint=this._transitionablePaint.untransitioned(),this.paint=new hi(r.paint)}}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getCrossfadeParameters=function(){return this._crossfadeParameters},e.prototype.getLayoutProperty=function(t){return\"visibility\"===t?this.visibility:this._unevaluatedLayout.getValue(t)},e.prototype.setLayoutProperty=function(t,e,r){void 0===r&&(r={}),null!=e&&this._validate(En,\"layers.\"+this.id+\".layout.\"+t,t,e,r)||(\"visibility\"!==t?this._unevaluatedLayout.setValue(t,e):this.visibility=e)},e.prototype.getPaintProperty=function(t){return m(t,\"-transition\")?this._transitionablePaint.getTransition(t.slice(0,-\"-transition\".length)):this._transitionablePaint.getValue(t)},e.prototype.setPaintProperty=function(t,e,r){if(void 0===r&&(r={}),null!=e&&this._validate(Sn,\"layers.\"+this.id+\".paint.\"+t,t,e,r))return!1;if(m(t,\"-transition\"))return this._transitionablePaint.setTransition(t.slice(0,-\"-transition\".length),e||void 0),!1;var n=this._transitionablePaint._values[t],i=\"cross-faded-data-driven\"===n.property.specification[\"property-type\"],a=n.value.isDataDriven(),o=n.value;this._transitionablePaint.setValue(t,e),this._handleSpecialPaintPropertyUpdate(t);var s=this._transitionablePaint._values[t].value;return s.isDataDriven()||a||i||this._handleOverridablePaintPropertyUpdate(t,o,s)},e.prototype._handleSpecialPaintPropertyUpdate=function(t){},e.prototype._handleOverridablePaintPropertyUpdate=function(t,e,r){return!1},e.prototype.isHidden=function(t){return!!(this.minzoom&&t<this.minzoom)||!!(this.maxzoom&&t>=this.maxzoom)||\"none\"===this.visibility},e.prototype.updateTransitions=function(t){this._transitioningPaint=this._transitionablePaint.transitioned(t,this._transitioningPaint)},e.prototype.hasTransition=function(){return this._transitioningPaint.hasTransition()},e.prototype.recalculate=function(t,e){t.getCrossfadeParameters&&(this._crossfadeParameters=t.getCrossfadeParameters()),this._unevaluatedLayout&&(this.layout=this._unevaluatedLayout.possiblyEvaluate(t,void 0,e)),this.paint=this._transitioningPaint.possiblyEvaluate(t,void 0,e)},e.prototype.serialize=function(){var t={id:this.id,type:this.type,source:this.source,\"source-layer\":this.sourceLayer,metadata:this.metadata,minzoom:this.minzoom,maxzoom:this.maxzoom,filter:this.filter,layout:this._unevaluatedLayout&&this._unevaluatedLayout.serialize(),paint:this._transitionablePaint&&this._transitionablePaint.serialize()};return this.visibility&&(t.layout=t.layout||{},t.layout.visibility=this.visibility),y(t,(function(t,e){return!(void 0===t||\"layout\"===e&&!Object.keys(t).length||\"paint\"===e&&!Object.keys(t).length)}))},e.prototype._validate=function(t,e,r,n,i){return void 0===i&&(i={}),(!i||!1!==i.validate)&&Cn(this,t.call(Mn,{key:e,layerType:this.type,objectKey:r,value:n,styleSpec:At,style:{glyphs:!0,sprite:!0}}))},e.prototype.is3D=function(){return!1},e.prototype.isTileClipped=function(){return!1},e.prototype.hasOffscreenPass=function(){return!1},e.prototype.resize=function(){},e.prototype.isStateDependent=function(){for(var t in this.paint._values){var e=this.paint.get(t);if(e instanceof fi&&Lr(e.property.specification)&&(\"source\"===e.value.kind||\"composite\"===e.value.kind)&&e.value.isStateDependent)return!0}return!1},e}(Mt),bi={Int8:Int8Array,Uint8:Uint8Array,Int16:Int16Array,Uint16:Uint16Array,Int32:Int32Array,Uint32:Uint32Array,Float32:Float32Array},_i=function(t,e){this._structArray=t,this._pos1=e*this.size,this._pos2=this._pos1/2,this._pos4=this._pos1/4,this._pos8=this._pos1/8},wi=function(){this.isTransferred=!1,this.capacity=-1,this.resize(0)};function Ti(t,e){void 0===e&&(e=1);var r=0,n=0;return{members:t.map((function(t){var i=bi[t.type].BYTES_PER_ELEMENT,a=r=ki(r,Math.max(e,i)),o=t.components||1;return n=Math.max(n,i),r+=i*o,{name:t.name,type:t.type,components:o,offset:a}})),size:ki(r,Math.max(n,e)),alignment:e}}function ki(t,e){return Math.ceil(t/e)*e}wi.serialize=function(t,e){return t._trim(),e&&(t.isTransferred=!0,e.push(t.arrayBuffer)),{length:t.length,arrayBuffer:t.arrayBuffer}},wi.deserialize=function(t){var e=Object.create(this.prototype);return e.arrayBuffer=t.arrayBuffer,e.length=t.length,e.capacity=t.arrayBuffer.byteLength/e.bytesPerElement,e._refreshViews(),e},wi.prototype._trim=function(){this.length!==this.capacity&&(this.capacity=this.length,this.arrayBuffer=this.arrayBuffer.slice(0,this.length*this.bytesPerElement),this._refreshViews())},wi.prototype.clear=function(){this.length=0},wi.prototype.resize=function(t){this.reserve(t),this.length=t},wi.prototype.reserve=function(t){if(t>this.capacity){this.capacity=Math.max(t,Math.floor(5*this.capacity),128),this.arrayBuffer=new ArrayBuffer(this.capacity*this.bytesPerElement);var e=this.uint8;this._refreshViews(),e&&this.uint8.set(e)}},wi.prototype._refreshViews=function(){throw new Error(\"_refreshViews() must be implemented by each concrete StructArray layout\")};var Mi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.int16[n+0]=e,this.int16[n+1]=r,t},e}(wi);Mi.prototype.bytesPerElement=4,Dn(\"StructArrayLayout2i4\",Mi);var Ai=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var i=this.length;return this.resize(i+1),this.emplace(i,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,i){var a=4*t;return this.int16[a+0]=e,this.int16[a+1]=r,this.int16[a+2]=n,this.int16[a+3]=i,t},e}(wi);Ai.prototype.bytesPerElement=8,Dn(\"StructArrayLayout4i8\",Ai);var Si=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,i,a)},e.prototype.emplace=function(t,e,r,n,i,a,o){var s=6*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.int16[s+2]=n,this.int16[s+3]=i,this.int16[s+4]=a,this.int16[s+5]=o,t},e}(wi);Si.prototype.bytesPerElement=12,Dn(\"StructArrayLayout2i4i12\",Si);var Ei=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,i,a)},e.prototype.emplace=function(t,e,r,n,i,a,o){var s=4*t,l=8*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.uint8[l+4]=n,this.uint8[l+5]=i,this.uint8[l+6]=a,this.uint8[l+7]=o,t},e}(wi);Ei.prototype.bytesPerElement=8,Dn(\"StructArrayLayout2i4ub8\",Ei);var Ci=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a,o,s,l,c){var u=this.length;return this.resize(u+1),this.emplace(u,t,e,r,n,i,a,o,s,l,c)},e.prototype.emplace=function(t,e,r,n,i,a,o,s,l,c,u){var f=9*t,h=18*t;return this.uint16[f+0]=e,this.uint16[f+1]=r,this.uint16[f+2]=n,this.uint16[f+3]=i,this.uint16[f+4]=a,this.uint16[f+5]=o,this.uint16[f+6]=s,this.uint16[f+7]=l,this.uint8[h+16]=c,this.uint8[h+17]=u,t},e}(wi);Ci.prototype.bytesPerElement=18,Dn(\"StructArrayLayout8ui2ub18\",Ci);var Li=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a,o,s,l,c,u,f){var h=this.length;return this.resize(h+1),this.emplace(h,t,e,r,n,i,a,o,s,l,c,u,f)},e.prototype.emplace=function(t,e,r,n,i,a,o,s,l,c,u,f,h){var p=12*t;return this.int16[p+0]=e,this.int16[p+1]=r,this.int16[p+2]=n,this.int16[p+3]=i,this.uint16[p+4]=a,this.uint16[p+5]=o,this.uint16[p+6]=s,this.uint16[p+7]=l,this.int16[p+8]=c,this.int16[p+9]=u,this.int16[p+10]=f,this.int16[p+11]=h,t},e}(wi);Li.prototype.bytesPerElement=24,Dn(\"StructArrayLayout4i4ui4i24\",Li);var Ii=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var i=3*t;return this.float32[i+0]=e,this.float32[i+1]=r,this.float32[i+2]=n,t},e}(wi);Ii.prototype.bytesPerElement=12,Dn(\"StructArrayLayout3f12\",Ii);var Pi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){return this.uint32[1*t+0]=e,t},e}(wi);Pi.prototype.bytesPerElement=4,Dn(\"StructArrayLayout1ul4\",Pi);var zi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a,o,s,l){var c=this.length;return this.resize(c+1),this.emplace(c,t,e,r,n,i,a,o,s,l)},e.prototype.emplace=function(t,e,r,n,i,a,o,s,l,c){var u=10*t,f=5*t;return this.int16[u+0]=e,this.int16[u+1]=r,this.int16[u+2]=n,this.int16[u+3]=i,this.int16[u+4]=a,this.int16[u+5]=o,this.uint32[f+3]=s,this.uint16[u+8]=l,this.uint16[u+9]=c,t},e}(wi);zi.prototype.bytesPerElement=20,Dn(\"StructArrayLayout6i1ul2ui20\",zi);var Oi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a){var o=this.length;return this.resize(o+1),this.emplace(o,t,e,r,n,i,a)},e.prototype.emplace=function(t,e,r,n,i,a,o){var s=6*t;return this.int16[s+0]=e,this.int16[s+1]=r,this.int16[s+2]=n,this.int16[s+3]=i,this.int16[s+4]=a,this.int16[s+5]=o,t},e}(wi);Oi.prototype.bytesPerElement=12,Dn(\"StructArrayLayout2i2i2i12\",Oi);var Di=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i){var a=this.length;return this.resize(a+1),this.emplace(a,t,e,r,n,i)},e.prototype.emplace=function(t,e,r,n,i,a){var o=4*t,s=8*t;return this.float32[o+0]=e,this.float32[o+1]=r,this.float32[o+2]=n,this.int16[s+6]=i,this.int16[s+7]=a,t},e}(wi);Di.prototype.bytesPerElement=16,Dn(\"StructArrayLayout2f1f2i16\",Di);var Ri=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var i=this.length;return this.resize(i+1),this.emplace(i,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,i){var a=12*t,o=3*t;return this.uint8[a+0]=e,this.uint8[a+1]=r,this.float32[o+1]=n,this.float32[o+2]=i,t},e}(wi);Ri.prototype.bytesPerElement=12,Dn(\"StructArrayLayout2ub2f12\",Ri);var Fi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var i=3*t;return this.uint16[i+0]=e,this.uint16[i+1]=r,this.uint16[i+2]=n,t},e}(wi);Fi.prototype.bytesPerElement=6,Dn(\"StructArrayLayout3ui6\",Fi);var Bi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,g,m){var v=this.length;return this.resize(v+1),this.emplace(v,t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,g,m)},e.prototype.emplace=function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,g,m,v){var y=24*t,x=12*t,b=48*t;return this.int16[y+0]=e,this.int16[y+1]=r,this.uint16[y+2]=n,this.uint16[y+3]=i,this.uint32[x+2]=a,this.uint32[x+3]=o,this.uint32[x+4]=s,this.uint16[y+10]=l,this.uint16[y+11]=c,this.uint16[y+12]=u,this.float32[x+7]=f,this.float32[x+8]=h,this.uint8[b+36]=p,this.uint8[b+37]=d,this.uint8[b+38]=g,this.uint32[x+10]=m,this.int16[y+22]=v,t},e}(wi);Bi.prototype.bytesPerElement=48,Dn(\"StructArrayLayout2i2ui3ul3ui2f3ub1ul1i48\",Bi);var Ni=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,g,m,v,y,x,b,_,w,T,k,M,A,S){var E=this.length;return this.resize(E+1),this.emplace(E,t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,g,m,v,y,x,b,_,w,T,k,M,A,S)},e.prototype.emplace=function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,g,m,v,y,x,b,_,w,T,k,M,A,S,E){var C=34*t,L=17*t;return this.int16[C+0]=e,this.int16[C+1]=r,this.int16[C+2]=n,this.int16[C+3]=i,this.int16[C+4]=a,this.int16[C+5]=o,this.int16[C+6]=s,this.int16[C+7]=l,this.uint16[C+8]=c,this.uint16[C+9]=u,this.uint16[C+10]=f,this.uint16[C+11]=h,this.uint16[C+12]=p,this.uint16[C+13]=d,this.uint16[C+14]=g,this.uint16[C+15]=m,this.uint16[C+16]=v,this.uint16[C+17]=y,this.uint16[C+18]=x,this.uint16[C+19]=b,this.uint16[C+20]=_,this.uint16[C+21]=w,this.uint16[C+22]=T,this.uint32[L+12]=k,this.float32[L+13]=M,this.float32[L+14]=A,this.float32[L+15]=S,this.float32[L+16]=E,t},e}(wi);Ni.prototype.bytesPerElement=68,Dn(\"StructArrayLayout8i15ui1ul4f68\",Ni);var ji=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){return this.float32[1*t+0]=e,t},e}(wi);ji.prototype.bytesPerElement=4,Dn(\"StructArrayLayout1f4\",ji);var Ui=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.int16=new Int16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var i=3*t;return this.int16[i+0]=e,this.int16[i+1]=r,this.int16[i+2]=n,t},e}(wi);Ui.prototype.bytesPerElement=6,Dn(\"StructArrayLayout3i6\",Ui);var Vi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint32=new Uint32Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r){var n=this.length;return this.resize(n+1),this.emplace(n,t,e,r)},e.prototype.emplace=function(t,e,r,n){var i=4*t;return this.uint32[2*t+0]=e,this.uint16[i+2]=r,this.uint16[i+3]=n,t},e}(wi);Vi.prototype.bytesPerElement=8,Dn(\"StructArrayLayout1ul2ui8\",Vi);var qi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.uint16[n+0]=e,this.uint16[n+1]=r,t},e}(wi);qi.prototype.bytesPerElement=4,Dn(\"StructArrayLayout2ui4\",qi);var Hi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.uint16=new Uint16Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t){var e=this.length;return this.resize(e+1),this.emplace(e,t)},e.prototype.emplace=function(t,e){return this.uint16[1*t+0]=e,t},e}(wi);Hi.prototype.bytesPerElement=2,Dn(\"StructArrayLayout1ui2\",Hi);var Gi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e){var r=this.length;return this.resize(r+1),this.emplace(r,t,e)},e.prototype.emplace=function(t,e,r){var n=2*t;return this.float32[n+0]=e,this.float32[n+1]=r,t},e}(wi);Gi.prototype.bytesPerElement=8,Dn(\"StructArrayLayout2f8\",Gi);var Yi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._refreshViews=function(){this.uint8=new Uint8Array(this.arrayBuffer),this.float32=new Float32Array(this.arrayBuffer)},e.prototype.emplaceBack=function(t,e,r,n){var i=this.length;return this.resize(i+1),this.emplace(i,t,e,r,n)},e.prototype.emplace=function(t,e,r,n,i){var a=4*t;return this.float32[a+0]=e,this.float32[a+1]=r,this.float32[a+2]=n,this.float32[a+3]=i,t},e}(wi);Yi.prototype.bytesPerElement=16,Dn(\"StructArrayLayout4f16\",Yi);var Wi=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e;var r={anchorPointX:{configurable:!0},anchorPointY:{configurable:!0},x1:{configurable:!0},y1:{configurable:!0},x2:{configurable:!0},y2:{configurable:!0},featureIndex:{configurable:!0},sourceLayerIndex:{configurable:!0},bucketIndex:{configurable:!0},anchorPoint:{configurable:!0}};return r.anchorPointX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorPointY.get=function(){return this._structArray.int16[this._pos2+1]},r.x1.get=function(){return this._structArray.int16[this._pos2+2]},r.y1.get=function(){return this._structArray.int16[this._pos2+3]},r.x2.get=function(){return this._structArray.int16[this._pos2+4]},r.y2.get=function(){return this._structArray.int16[this._pos2+5]},r.featureIndex.get=function(){return this._structArray.uint32[this._pos4+3]},r.sourceLayerIndex.get=function(){return this._structArray.uint16[this._pos2+8]},r.bucketIndex.get=function(){return this._structArray.uint16[this._pos2+9]},r.anchorPoint.get=function(){return new i(this.anchorPointX,this.anchorPointY)},Object.defineProperties(e.prototype,r),e}(_i);Wi.prototype.size=20;var Xi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.get=function(t){return new Wi(this,t)},e}(zi);Dn(\"CollisionBoxArray\",Xi);var Zi=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e;var r={anchorX:{configurable:!0},anchorY:{configurable:!0},glyphStartIndex:{configurable:!0},numGlyphs:{configurable:!0},vertexStartIndex:{configurable:!0},lineStartIndex:{configurable:!0},lineLength:{configurable:!0},segment:{configurable:!0},lowerSize:{configurable:!0},upperSize:{configurable:!0},lineOffsetX:{configurable:!0},lineOffsetY:{configurable:!0},writingMode:{configurable:!0},placedOrientation:{configurable:!0},hidden:{configurable:!0},crossTileID:{configurable:!0},associatedIconIndex:{configurable:!0}};return r.anchorX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorY.get=function(){return this._structArray.int16[this._pos2+1]},r.glyphStartIndex.get=function(){return this._structArray.uint16[this._pos2+2]},r.numGlyphs.get=function(){return this._structArray.uint16[this._pos2+3]},r.vertexStartIndex.get=function(){return this._structArray.uint32[this._pos4+2]},r.lineStartIndex.get=function(){return this._structArray.uint32[this._pos4+3]},r.lineLength.get=function(){return this._structArray.uint32[this._pos4+4]},r.segment.get=function(){return this._structArray.uint16[this._pos2+10]},r.lowerSize.get=function(){return this._structArray.uint16[this._pos2+11]},r.upperSize.get=function(){return this._structArray.uint16[this._pos2+12]},r.lineOffsetX.get=function(){return this._structArray.float32[this._pos4+7]},r.lineOffsetY.get=function(){return this._structArray.float32[this._pos4+8]},r.writingMode.get=function(){return this._structArray.uint8[this._pos1+36]},r.placedOrientation.get=function(){return this._structArray.uint8[this._pos1+37]},r.placedOrientation.set=function(t){this._structArray.uint8[this._pos1+37]=t},r.hidden.get=function(){return this._structArray.uint8[this._pos1+38]},r.hidden.set=function(t){this._structArray.uint8[this._pos1+38]=t},r.crossTileID.get=function(){return this._structArray.uint32[this._pos4+10]},r.crossTileID.set=function(t){this._structArray.uint32[this._pos4+10]=t},r.associatedIconIndex.get=function(){return this._structArray.int16[this._pos2+22]},Object.defineProperties(e.prototype,r),e}(_i);Zi.prototype.size=48;var Ji=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.get=function(t){return new Zi(this,t)},e}(Bi);Dn(\"PlacedSymbolArray\",Ji);var Ki=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e;var r={anchorX:{configurable:!0},anchorY:{configurable:!0},rightJustifiedTextSymbolIndex:{configurable:!0},centerJustifiedTextSymbolIndex:{configurable:!0},leftJustifiedTextSymbolIndex:{configurable:!0},verticalPlacedTextSymbolIndex:{configurable:!0},placedIconSymbolIndex:{configurable:!0},verticalPlacedIconSymbolIndex:{configurable:!0},key:{configurable:!0},textBoxStartIndex:{configurable:!0},textBoxEndIndex:{configurable:!0},verticalTextBoxStartIndex:{configurable:!0},verticalTextBoxEndIndex:{configurable:!0},iconBoxStartIndex:{configurable:!0},iconBoxEndIndex:{configurable:!0},verticalIconBoxStartIndex:{configurable:!0},verticalIconBoxEndIndex:{configurable:!0},featureIndex:{configurable:!0},numHorizontalGlyphVertices:{configurable:!0},numVerticalGlyphVertices:{configurable:!0},numIconVertices:{configurable:!0},numVerticalIconVertices:{configurable:!0},useRuntimeCollisionCircles:{configurable:!0},crossTileID:{configurable:!0},textBoxScale:{configurable:!0},textOffset0:{configurable:!0},textOffset1:{configurable:!0},collisionCircleDiameter:{configurable:!0}};return r.anchorX.get=function(){return this._structArray.int16[this._pos2+0]},r.anchorY.get=function(){return this._structArray.int16[this._pos2+1]},r.rightJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+2]},r.centerJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+3]},r.leftJustifiedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+4]},r.verticalPlacedTextSymbolIndex.get=function(){return this._structArray.int16[this._pos2+5]},r.placedIconSymbolIndex.get=function(){return this._structArray.int16[this._pos2+6]},r.verticalPlacedIconSymbolIndex.get=function(){return this._structArray.int16[this._pos2+7]},r.key.get=function(){return this._structArray.uint16[this._pos2+8]},r.textBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+9]},r.textBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+10]},r.verticalTextBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+11]},r.verticalTextBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+12]},r.iconBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+13]},r.iconBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+14]},r.verticalIconBoxStartIndex.get=function(){return this._structArray.uint16[this._pos2+15]},r.verticalIconBoxEndIndex.get=function(){return this._structArray.uint16[this._pos2+16]},r.featureIndex.get=function(){return this._structArray.uint16[this._pos2+17]},r.numHorizontalGlyphVertices.get=function(){return this._structArray.uint16[this._pos2+18]},r.numVerticalGlyphVertices.get=function(){return this._structArray.uint16[this._pos2+19]},r.numIconVertices.get=function(){return this._structArray.uint16[this._pos2+20]},r.numVerticalIconVertices.get=function(){return this._structArray.uint16[this._pos2+21]},r.useRuntimeCollisionCircles.get=function(){return this._structArray.uint16[this._pos2+22]},r.crossTileID.get=function(){return this._structArray.uint32[this._pos4+12]},r.crossTileID.set=function(t){this._structArray.uint32[this._pos4+12]=t},r.textBoxScale.get=function(){return this._structArray.float32[this._pos4+13]},r.textOffset0.get=function(){return this._structArray.float32[this._pos4+14]},r.textOffset1.get=function(){return this._structArray.float32[this._pos4+15]},r.collisionCircleDiameter.get=function(){return this._structArray.float32[this._pos4+16]},Object.defineProperties(e.prototype,r),e}(_i);Ki.prototype.size=68;var Qi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.get=function(t){return new Ki(this,t)},e}(Ni);Dn(\"SymbolInstanceArray\",Qi);var $i=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getoffsetX=function(t){return this.float32[1*t+0]},e}(ji);Dn(\"GlyphOffsetArray\",$i);var ta=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getx=function(t){return this.int16[3*t+0]},e.prototype.gety=function(t){return this.int16[3*t+1]},e.prototype.gettileUnitDistanceFromAnchor=function(t){return this.int16[3*t+2]},e}(Ui);Dn(\"SymbolLineVertexArray\",ta);var ea=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e;var r={featureIndex:{configurable:!0},sourceLayerIndex:{configurable:!0},bucketIndex:{configurable:!0}};return r.featureIndex.get=function(){return this._structArray.uint32[this._pos4+0]},r.sourceLayerIndex.get=function(){return this._structArray.uint16[this._pos2+2]},r.bucketIndex.get=function(){return this._structArray.uint16[this._pos2+3]},Object.defineProperties(e.prototype,r),e}(_i);ea.prototype.size=8;var ra=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.get=function(t){return new ea(this,t)},e}(Vi);Dn(\"FeatureIndexArray\",ra);var na=Ti([{name:\"a_pos\",components:2,type:\"Int16\"}],4).members,ia=function(t){void 0===t&&(t=[]),this.segments=t};function aa(t,e){return 256*(t=l(Math.floor(t),0,255))+l(Math.floor(e),0,255)}ia.prototype.prepareSegment=function(t,e,r,n){var i=this.segments[this.segments.length-1];return t>ia.MAX_VERTEX_ARRAY_LENGTH&&_(\"Max vertices per segment is \"+ia.MAX_VERTEX_ARRAY_LENGTH+\": bucket requested \"+t),(!i||i.vertexLength+t>ia.MAX_VERTEX_ARRAY_LENGTH||i.sortKey!==n)&&(i={vertexOffset:e.length,primitiveOffset:r.length,vertexLength:0,primitiveLength:0},void 0!==n&&(i.sortKey=n),this.segments.push(i)),i},ia.prototype.get=function(){return this.segments},ia.prototype.destroy=function(){for(var t=0,e=this.segments;t<e.length;t+=1){var r=e[t];for(var n in r.vaos)r.vaos[n].destroy()}},ia.simpleSegment=function(t,e,r,n){return new ia([{vertexOffset:t,primitiveOffset:e,vertexLength:r,primitiveLength:n,vaos:{},sortKey:0}])},ia.MAX_VERTEX_ARRAY_LENGTH=Math.pow(2,16)-1,Dn(\"SegmentVector\",ia);var oa=Ti([{name:\"a_pattern_from\",components:4,type:\"Uint16\"},{name:\"a_pattern_to\",components:4,type:\"Uint16\"},{name:\"a_pixel_ratio_from\",components:1,type:\"Uint8\"},{name:\"a_pixel_ratio_to\",components:1,type:\"Uint8\"}]),sa=e((function(t){t.exports=function(t,e){var r,n,i,a,o,s,l,c;for(n=t.length-(r=3&t.length),i=e,o=3432918353,s=461845907,c=0;c<n;)l=255&t.charCodeAt(c)|(255&t.charCodeAt(++c))<<8|(255&t.charCodeAt(++c))<<16|(255&t.charCodeAt(++c))<<24,++c,i=27492+(65535&(a=5*(65535&(i=(i^=l=(65535&(l=(l=(65535&l)*o+(((l>>>16)*o&65535)<<16)&4294967295)<<15|l>>>17))*s+(((l>>>16)*s&65535)<<16)&4294967295)<<13|i>>>19))+((5*(i>>>16)&65535)<<16)&4294967295))+((58964+(a>>>16)&65535)<<16);switch(l=0,r){case 3:l^=(255&t.charCodeAt(c+2))<<16;case 2:l^=(255&t.charCodeAt(c+1))<<8;case 1:i^=l=(65535&(l=(l=(65535&(l^=255&t.charCodeAt(c)))*o+(((l>>>16)*o&65535)<<16)&4294967295)<<15|l>>>17))*s+(((l>>>16)*s&65535)<<16)&4294967295}return i^=t.length,i=2246822507*(65535&(i^=i>>>16))+((2246822507*(i>>>16)&65535)<<16)&4294967295,i=3266489909*(65535&(i^=i>>>13))+((3266489909*(i>>>16)&65535)<<16)&4294967295,(i^=i>>>16)>>>0}})),la=e((function(t){t.exports=function(t,e){for(var r,n=t.length,i=e^n,a=0;n>=4;)r=1540483477*(65535&(r=255&t.charCodeAt(a)|(255&t.charCodeAt(++a))<<8|(255&t.charCodeAt(++a))<<16|(255&t.charCodeAt(++a))<<24))+((1540483477*(r>>>16)&65535)<<16),i=1540483477*(65535&i)+((1540483477*(i>>>16)&65535)<<16)^(r=1540483477*(65535&(r^=r>>>24))+((1540483477*(r>>>16)&65535)<<16)),n-=4,++a;switch(n){case 3:i^=(255&t.charCodeAt(a+2))<<16;case 2:i^=(255&t.charCodeAt(a+1))<<8;case 1:i=1540483477*(65535&(i^=255&t.charCodeAt(a)))+((1540483477*(i>>>16)&65535)<<16)}return i=1540483477*(65535&(i^=i>>>13))+((1540483477*(i>>>16)&65535)<<16),(i^=i>>>15)>>>0}})),ca=sa,ua=la;ca.murmur3=sa,ca.murmur2=ua;var fa=function(){this.ids=[],this.positions=[],this.indexed=!1};fa.prototype.add=function(t,e,r,n){this.ids.push(pa(t)),this.positions.push(e,r,n)},fa.prototype.getPositions=function(t){for(var e=pa(t),r=0,n=this.ids.length-1;r<n;){var i=r+n>>1;this.ids[i]>=e?n=i:r=i+1}for(var a=[];this.ids[r]===e;)a.push({index:this.positions[3*r],start:this.positions[3*r+1],end:this.positions[3*r+2]}),r++;return a},fa.serialize=function(t,e){var r=new Float64Array(t.ids),n=new Uint32Array(t.positions);return function t(e,r,n,i){for(;n<i;){for(var a=e[n+i>>1],o=n-1,s=i+1;;){do{o++}while(e[o]<a);do{s--}while(e[s]>a);if(o>=s)break;da(e,o,s),da(r,3*o,3*s),da(r,3*o+1,3*s+1),da(r,3*o+2,3*s+2)}s-n<i-s?(t(e,r,n,s),n=s+1):(t(e,r,s+1,i),i=s)}}(r,n,0,r.length-1),e&&e.push(r.buffer,n.buffer),{ids:r,positions:n}},fa.deserialize=function(t){var e=new fa;return e.ids=t.ids,e.positions=t.positions,e.indexed=!0,e};var ha=Math.pow(2,53)-1;function pa(t){var e=+t;return!isNaN(e)&&e<=ha?e:ca(String(t))}function da(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}Dn(\"FeaturePositionMap\",fa);var ga=function(t,e){this.gl=t.gl,this.location=e},ma=function(t){function e(e,r){t.call(this,e,r),this.current=0}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.set=function(t){this.current!==t&&(this.current=t,this.gl.uniform1i(this.location,t))},e}(ga),va=function(t){function e(e,r){t.call(this,e,r),this.current=0}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.set=function(t){this.current!==t&&(this.current=t,this.gl.uniform1f(this.location,t))},e}(ga),ya=function(t){function e(e,r){t.call(this,e,r),this.current=[0,0]}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.set=function(t){t[0]===this.current[0]&&t[1]===this.current[1]||(this.current=t,this.gl.uniform2f(this.location,t[0],t[1]))},e}(ga),xa=function(t){function e(e,r){t.call(this,e,r),this.current=[0,0,0]}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.set=function(t){t[0]===this.current[0]&&t[1]===this.current[1]&&t[2]===this.current[2]||(this.current=t,this.gl.uniform3f(this.location,t[0],t[1],t[2]))},e}(ga),ba=function(t){function e(e,r){t.call(this,e,r),this.current=[0,0,0,0]}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.set=function(t){t[0]===this.current[0]&&t[1]===this.current[1]&&t[2]===this.current[2]&&t[3]===this.current[3]||(this.current=t,this.gl.uniform4f(this.location,t[0],t[1],t[2],t[3]))},e}(ga),_a=function(t){function e(e,r){t.call(this,e,r),this.current=Kt.transparent}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.set=function(t){t.r===this.current.r&&t.g===this.current.g&&t.b===this.current.b&&t.a===this.current.a||(this.current=t,this.gl.uniform4f(this.location,t.r,t.g,t.b,t.a))},e}(ga),wa=new Float32Array(16),Ta=function(t){function e(e,r){t.call(this,e,r),this.current=wa}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.set=function(t){if(t[12]!==this.current[12]||t[0]!==this.current[0])return this.current=t,void this.gl.uniformMatrix4fv(this.location,!1,t);for(var e=1;e<16;e++)if(t[e]!==this.current[e]){this.current=t,this.gl.uniformMatrix4fv(this.location,!1,t);break}},e}(ga);function ka(t){return[aa(255*t.r,255*t.g),aa(255*t.b,255*t.a)]}var Ma=function(t,e,r){this.value=t,this.uniformNames=e.map((function(t){return\"u_\"+t})),this.type=r};Ma.prototype.setUniform=function(t,e,r){t.set(r.constantOr(this.value))},Ma.prototype.getBinding=function(t,e,r){return\"color\"===this.type?new _a(t,e):new va(t,e)};var Aa=function(t,e){this.uniformNames=e.map((function(t){return\"u_\"+t})),this.patternFrom=null,this.patternTo=null,this.pixelRatioFrom=1,this.pixelRatioTo=1};Aa.prototype.setConstantPatternPositions=function(t,e){this.pixelRatioFrom=e.pixelRatio,this.pixelRatioTo=t.pixelRatio,this.patternFrom=e.tlbr,this.patternTo=t.tlbr},Aa.prototype.setUniform=function(t,e,r,n){var i=\"u_pattern_to\"===n?this.patternTo:\"u_pattern_from\"===n?this.patternFrom:\"u_pixel_ratio_to\"===n?this.pixelRatioTo:\"u_pixel_ratio_from\"===n?this.pixelRatioFrom:null;i&&t.set(i)},Aa.prototype.getBinding=function(t,e,r){return\"u_pattern\"===r.substr(0,9)?new ba(t,e):new va(t,e)};var Sa=function(t,e,r,n){this.expression=t,this.type=r,this.maxValue=0,this.paintVertexAttributes=e.map((function(t){return{name:\"a_\"+t,type:\"Float32\",components:\"color\"===r?2:1,offset:0}})),this.paintVertexArray=new n};Sa.prototype.populatePaintArray=function(t,e,r,n,i){var a=this.paintVertexArray.length,o=this.expression.evaluate(new ii(0),e,{},n,[],i);this.paintVertexArray.resize(t),this._setPaintValue(a,t,o)},Sa.prototype.updatePaintArray=function(t,e,r,n){var i=this.expression.evaluate({zoom:0},r,n);this._setPaintValue(t,e,i)},Sa.prototype._setPaintValue=function(t,e,r){if(\"color\"===this.type)for(var n=ka(r),i=t;i<e;i++)this.paintVertexArray.emplace(i,n[0],n[1]);else{for(var a=t;a<e;a++)this.paintVertexArray.emplace(a,r);this.maxValue=Math.max(this.maxValue,Math.abs(r))}},Sa.prototype.upload=function(t){this.paintVertexArray&&this.paintVertexArray.arrayBuffer&&(this.paintVertexBuffer&&this.paintVertexBuffer.buffer?this.paintVertexBuffer.updateData(this.paintVertexArray):this.paintVertexBuffer=t.createVertexBuffer(this.paintVertexArray,this.paintVertexAttributes,this.expression.isStateDependent))},Sa.prototype.destroy=function(){this.paintVertexBuffer&&this.paintVertexBuffer.destroy()};var Ea=function(t,e,r,n,i,a){this.expression=t,this.uniformNames=e.map((function(t){return\"u_\"+t+\"_t\"})),this.type=r,this.useIntegerZoom=n,this.zoom=i,this.maxValue=0,this.paintVertexAttributes=e.map((function(t){return{name:\"a_\"+t,type:\"Float32\",components:\"color\"===r?4:2,offset:0}})),this.paintVertexArray=new a};Ea.prototype.populatePaintArray=function(t,e,r,n,i){var a=this.expression.evaluate(new ii(this.zoom),e,{},n,[],i),o=this.expression.evaluate(new ii(this.zoom+1),e,{},n,[],i),s=this.paintVertexArray.length;this.paintVertexArray.resize(t),this._setPaintValue(s,t,a,o)},Ea.prototype.updatePaintArray=function(t,e,r,n){var i=this.expression.evaluate({zoom:this.zoom},r,n),a=this.expression.evaluate({zoom:this.zoom+1},r,n);this._setPaintValue(t,e,i,a)},Ea.prototype._setPaintValue=function(t,e,r,n){if(\"color\"===this.type)for(var i=ka(r),a=ka(n),o=t;o<e;o++)this.paintVertexArray.emplace(o,i[0],i[1],a[0],a[1]);else{for(var s=t;s<e;s++)this.paintVertexArray.emplace(s,r,n);this.maxValue=Math.max(this.maxValue,Math.abs(r),Math.abs(n))}},Ea.prototype.upload=function(t){this.paintVertexArray&&this.paintVertexArray.arrayBuffer&&(this.paintVertexBuffer&&this.paintVertexBuffer.buffer?this.paintVertexBuffer.updateData(this.paintVertexArray):this.paintVertexBuffer=t.createVertexBuffer(this.paintVertexArray,this.paintVertexAttributes,this.expression.isStateDependent))},Ea.prototype.destroy=function(){this.paintVertexBuffer&&this.paintVertexBuffer.destroy()},Ea.prototype.setUniform=function(t,e){var r=this.useIntegerZoom?Math.floor(e.zoom):e.zoom,n=l(this.expression.interpolationFactor(r,this.zoom,this.zoom+1),0,1);t.set(n)},Ea.prototype.getBinding=function(t,e,r){return new va(t,e)};var Ca=function(t,e,r,n,i,a){this.expression=t,this.type=e,this.useIntegerZoom=r,this.zoom=n,this.layerId=a,this.zoomInPaintVertexArray=new i,this.zoomOutPaintVertexArray=new i};Ca.prototype.populatePaintArray=function(t,e,r){var n=this.zoomInPaintVertexArray.length;this.zoomInPaintVertexArray.resize(t),this.zoomOutPaintVertexArray.resize(t),this._setPaintValues(n,t,e.patterns&&e.patterns[this.layerId],r)},Ca.prototype.updatePaintArray=function(t,e,r,n,i){this._setPaintValues(t,e,r.patterns&&r.patterns[this.layerId],i)},Ca.prototype._setPaintValues=function(t,e,r,n){if(n&&r){var i=n[r.min],a=n[r.mid],o=n[r.max];if(i&&a&&o)for(var s=t;s<e;s++)this.zoomInPaintVertexArray.emplace(s,a.tl[0],a.tl[1],a.br[0],a.br[1],i.tl[0],i.tl[1],i.br[0],i.br[1],a.pixelRatio,i.pixelRatio),this.zoomOutPaintVertexArray.emplace(s,a.tl[0],a.tl[1],a.br[0],a.br[1],o.tl[0],o.tl[1],o.br[0],o.br[1],a.pixelRatio,o.pixelRatio)}},Ca.prototype.upload=function(t){this.zoomInPaintVertexArray&&this.zoomInPaintVertexArray.arrayBuffer&&this.zoomOutPaintVertexArray&&this.zoomOutPaintVertexArray.arrayBuffer&&(this.zoomInPaintVertexBuffer=t.createVertexBuffer(this.zoomInPaintVertexArray,oa.members,this.expression.isStateDependent),this.zoomOutPaintVertexBuffer=t.createVertexBuffer(this.zoomOutPaintVertexArray,oa.members,this.expression.isStateDependent))},Ca.prototype.destroy=function(){this.zoomOutPaintVertexBuffer&&this.zoomOutPaintVertexBuffer.destroy(),this.zoomInPaintVertexBuffer&&this.zoomInPaintVertexBuffer.destroy()};var La=function(t,e,r,n){this.binders={},this.layoutAttributes=n,this._buffers=[];var i=[];for(var a in t.paint._values)if(r(a)){var o=t.paint.get(a);if(o instanceof fi&&Lr(o.property.specification)){var s=Pa(a,t.type),l=o.value,c=o.property.specification.type,u=o.property.useIntegerZoom,f=o.property.specification[\"property-type\"],h=\"cross-faded\"===f||\"cross-faded-data-driven\"===f;if(\"constant\"===l.kind)this.binders[a]=h?new Aa(l.value,s):new Ma(l.value,s,c),i.push(\"/u_\"+a);else if(\"source\"===l.kind||h){var p=za(a,c,\"source\");this.binders[a]=h?new Ca(l,c,u,e,p,t.id):new Sa(l,s,c,p),i.push(\"/a_\"+a)}else{var d=za(a,c,\"composite\");this.binders[a]=new Ea(l,s,c,u,e,d),i.push(\"/z_\"+a)}}}this.cacheKey=i.sort().join(\"\")};La.prototype.getMaxValue=function(t){var e=this.binders[t];return e instanceof Sa||e instanceof Ea?e.maxValue:0},La.prototype.populatePaintArrays=function(t,e,r,n,i){for(var a in this.binders){var o=this.binders[a];(o instanceof Sa||o instanceof Ea||o instanceof Ca)&&o.populatePaintArray(t,e,r,n,i)}},La.prototype.setConstantPatternPositions=function(t,e){for(var r in this.binders){var n=this.binders[r];n instanceof Aa&&n.setConstantPatternPositions(t,e)}},La.prototype.updatePaintArrays=function(t,e,r,n,i){var a=!1;for(var o in t)for(var s=0,l=e.getPositions(o);s<l.length;s+=1){var c=l[s],u=r.feature(c.index);for(var f in this.binders){var h=this.binders[f];if((h instanceof Sa||h instanceof Ea||h instanceof Ca)&&!0===h.expression.isStateDependent){var p=n.paint.get(f);h.expression=p.value,h.updatePaintArray(c.start,c.end,u,t[o],i),a=!0}}}return a},La.prototype.defines=function(){var t=[];for(var e in this.binders){var r=this.binders[e];(r instanceof Ma||r instanceof Aa)&&t.push.apply(t,r.uniformNames.map((function(t){return\"#define HAS_UNIFORM_\"+t})))}return t},La.prototype.getPaintVertexBuffers=function(){return this._buffers},La.prototype.getUniforms=function(t,e){var r=[];for(var n in this.binders){var i=this.binders[n];if(i instanceof Ma||i instanceof Aa||i instanceof Ea)for(var a=0,o=i.uniformNames;a<o.length;a+=1){var s=o[a];if(e[s]){var l=i.getBinding(t,e[s],s);r.push({name:s,property:n,binding:l})}}}return r},La.prototype.setUniforms=function(t,e,r,n){for(var i=0,a=e;i<a.length;i+=1){var o=a[i],s=o.name,l=o.property;this.binders[l].setUniform(o.binding,n,r.get(l),s)}},La.prototype.updatePaintBuffers=function(t){for(var e in this._buffers=[],this.binders){var r=this.binders[e];if(t&&r instanceof Ca){var n=2===t.fromScale?r.zoomInPaintVertexBuffer:r.zoomOutPaintVertexBuffer;n&&this._buffers.push(n)}else(r instanceof Sa||r instanceof Ea)&&r.paintVertexBuffer&&this._buffers.push(r.paintVertexBuffer)}},La.prototype.upload=function(t){for(var e in this.binders){var r=this.binders[e];(r instanceof Sa||r instanceof Ea||r instanceof Ca)&&r.upload(t)}this.updatePaintBuffers()},La.prototype.destroy=function(){for(var t in this.binders){var e=this.binders[t];(e instanceof Sa||e instanceof Ea||e instanceof Ca)&&e.destroy()}};var Ia=function(t,e,r,n){void 0===n&&(n=function(){return!0}),this.programConfigurations={};for(var i=0,a=e;i<a.length;i+=1){var o=a[i];this.programConfigurations[o.id]=new La(o,r,n,t)}this.needsUpload=!1,this._featureMap=new fa,this._bufferOffset=0};function Pa(t,e){return{\"text-opacity\":[\"opacity\"],\"icon-opacity\":[\"opacity\"],\"text-color\":[\"fill_color\"],\"icon-color\":[\"fill_color\"],\"text-halo-color\":[\"halo_color\"],\"icon-halo-color\":[\"halo_color\"],\"text-halo-blur\":[\"halo_blur\"],\"icon-halo-blur\":[\"halo_blur\"],\"text-halo-width\":[\"halo_width\"],\"icon-halo-width\":[\"halo_width\"],\"line-gap-width\":[\"gapwidth\"],\"line-pattern\":[\"pattern_to\",\"pattern_from\",\"pixel_ratio_to\",\"pixel_ratio_from\"],\"fill-pattern\":[\"pattern_to\",\"pattern_from\",\"pixel_ratio_to\",\"pixel_ratio_from\"],\"fill-extrusion-pattern\":[\"pattern_to\",\"pattern_from\",\"pixel_ratio_to\",\"pixel_ratio_from\"]}[t]||[t.replace(e+\"-\",\"\").replace(/-/g,\"_\")]}function za(t,e,r){var n={color:{source:Gi,composite:Yi},number:{source:ji,composite:Gi}},i=function(t){return{\"line-pattern\":{source:Ci,composite:Ci},\"fill-pattern\":{source:Ci,composite:Ci},\"fill-extrusion-pattern\":{source:Ci,composite:Ci}}[t]}(t);return i&&i[r]||n[e][r]}Ia.prototype.populatePaintArrays=function(t,e,r,n,i,a){for(var o in this.programConfigurations)this.programConfigurations[o].populatePaintArrays(t,e,n,i,a);void 0!==e.id&&this._featureMap.add(e.id,r,this._bufferOffset,t),this._bufferOffset=t,this.needsUpload=!0},Ia.prototype.updatePaintArrays=function(t,e,r,n){for(var i=0,a=r;i<a.length;i+=1){var o=a[i];this.needsUpload=this.programConfigurations[o.id].updatePaintArrays(t,this._featureMap,e,o,n)||this.needsUpload}},Ia.prototype.get=function(t){return this.programConfigurations[t]},Ia.prototype.upload=function(t){if(this.needsUpload){for(var e in this.programConfigurations)this.programConfigurations[e].upload(t);this.needsUpload=!1}},Ia.prototype.destroy=function(){for(var t in this.programConfigurations)this.programConfigurations[t].destroy()},Dn(\"ConstantBinder\",Ma),Dn(\"CrossFadedConstantBinder\",Aa),Dn(\"SourceExpressionBinder\",Sa),Dn(\"CrossFadedCompositeBinder\",Ca),Dn(\"CompositeExpressionBinder\",Ea),Dn(\"ProgramConfiguration\",La,{omit:[\"_buffers\"]}),Dn(\"ProgramConfigurationSet\",Ia);var Oa={min:-1*Math.pow(2,14),max:Math.pow(2,14)-1};function Da(t){for(var e=8192/t.extent,r=t.loadGeometry(),n=0;n<r.length;n++)for(var i=r[n],a=0;a<i.length;a++){var o=i[a];o.x=Math.round(o.x*e),o.y=Math.round(o.y*e),(o.x<Oa.min||o.x>Oa.max||o.y<Oa.min||o.y>Oa.max)&&(_(\"Geometry exceeds allowed extent, reduce your vector tile buffer size\"),o.x=l(o.x,Oa.min,Oa.max),o.y=l(o.y,Oa.min,Oa.max))}return r}function Ra(t,e,r,n,i){t.emplaceBack(2*e+(n+1)/2,2*r+(i+1)/2)}var Fa=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map((function(t){return t.id})),this.index=t.index,this.hasPattern=!1,this.layoutVertexArray=new Mi,this.indexArray=new Fi,this.segments=new ia,this.programConfigurations=new Ia(na,t.layers,t.zoom),this.stateDependentLayerIds=this.layers.filter((function(t){return t.isStateDependent()})).map((function(t){return t.id}))};function Ba(t,e){for(var r=0;r<t.length;r++)if(Wa(e,t[r]))return!0;for(var n=0;n<e.length;n++)if(Wa(t,e[n]))return!0;return!!Va(t,e)}function Na(t,e,r){return!!Wa(t,e)||!!Ha(e,t,r)}function ja(t,e){if(1===t.length)return Ya(e,t[0]);for(var r=0;r<e.length;r++)for(var n=e[r],i=0;i<n.length;i++)if(Wa(t,n[i]))return!0;for(var a=0;a<t.length;a++)if(Ya(e,t[a]))return!0;for(var o=0;o<e.length;o++)if(Va(t,e[o]))return!0;return!1}function Ua(t,e,r){if(t.length>1){if(Va(t,e))return!0;for(var n=0;n<e.length;n++)if(Ha(e[n],t,r))return!0}for(var i=0;i<t.length;i++)if(Ha(t[i],e,r))return!0;return!1}function Va(t,e){if(0===t.length||0===e.length)return!1;for(var r=0;r<t.length-1;r++)for(var n=t[r],i=t[r+1],a=0;a<e.length-1;a++)if(qa(n,i,e[a],e[a+1]))return!0;return!1}function qa(t,e,r,n){return w(t,r,n)!==w(e,r,n)&&w(t,e,r)!==w(t,e,n)}function Ha(t,e,r){var n=r*r;if(1===e.length)return t.distSqr(e[0])<n;for(var i=1;i<e.length;i++)if(Ga(t,e[i-1],e[i])<n)return!0;return!1}function Ga(t,e,r){var n=e.distSqr(r);if(0===n)return t.distSqr(e);var i=((t.x-e.x)*(r.x-e.x)+(t.y-e.y)*(r.y-e.y))/n;return t.distSqr(i<0?e:i>1?r:r.sub(e)._mult(i)._add(e))}function Ya(t,e){for(var r,n,i,a=!1,o=0;o<t.length;o++)for(var s=0,l=(r=t[o]).length-1;s<r.length;l=s++)(n=r[s]).y>e.y!=(i=r[l]).y>e.y&&e.x<(i.x-n.x)*(e.y-n.y)/(i.y-n.y)+n.x&&(a=!a);return a}function Wa(t,e){for(var r=!1,n=0,i=t.length-1;n<t.length;i=n++){var a=t[n],o=t[i];a.y>e.y!=o.y>e.y&&e.x<(o.x-a.x)*(e.y-a.y)/(o.y-a.y)+a.x&&(r=!r)}return r}function Xa(t,e,r){var n=r[0],i=r[2];if(t.x<n.x&&e.x<n.x||t.x>i.x&&e.x>i.x||t.y<n.y&&e.y<n.y||t.y>i.y&&e.y>i.y)return!1;var a=w(t,e,r[0]);return a!==w(t,e,r[1])||a!==w(t,e,r[2])||a!==w(t,e,r[3])}function Za(t,e,r){var n=e.paint.get(t).value;return\"constant\"===n.kind?n.value:r.programConfigurations.get(e.id).getMaxValue(t)}function Ja(t){return Math.sqrt(t[0]*t[0]+t[1]*t[1])}function Ka(t,e,r,n,a){if(!e[0]&&!e[1])return t;var o=i.convert(e)._mult(a);\"viewport\"===r&&o._rotate(-n);for(var s=[],l=0;l<t.length;l++)s.push(t[l].sub(o));return s}Fa.prototype.populate=function(t,e,r){var n=this.layers[0],i=[],a=null;\"circle\"===n.type&&(a=n.layout.get(\"circle-sort-key\"));for(var o=0,s=t;o<s.length;o+=1){var l=s[o],c=l.feature,u=l.id,f=l.index,h=l.sourceLayerIndex,p=this.layers[0]._featureFilter.needGeometry,d={type:c.type,id:u,properties:c.properties,geometry:p?Da(c):[]};if(this.layers[0]._featureFilter.filter(new ii(this.zoom),d,r)){p||(d.geometry=Da(c));var g=a?a.evaluate(d,{},r):void 0;i.push({id:u,properties:c.properties,type:c.type,sourceLayerIndex:h,index:f,geometry:d.geometry,patterns:{},sortKey:g})}}a&&i.sort((function(t,e){return t.sortKey-e.sortKey}));for(var m=0,v=i;m<v.length;m+=1){var y=v[m],x=y.geometry,b=y.index,_=y.sourceLayerIndex,w=t[b].feature;this.addFeature(y,x,b,r),e.featureIndex.insert(w,x,b,_,this.index)}},Fa.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},Fa.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},Fa.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},Fa.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,na),this.indexBuffer=t.createIndexBuffer(this.indexArray)),this.programConfigurations.upload(t),this.uploaded=!0},Fa.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy())},Fa.prototype.addFeature=function(t,e,r,n){for(var i=0,a=e;i<a.length;i+=1)for(var o=0,s=a[i];o<s.length;o+=1){var l=s[o],c=l.x,u=l.y;if(!(c<0||c>=8192||u<0||u>=8192)){var f=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray,t.sortKey),h=f.vertexLength;Ra(this.layoutVertexArray,c,u,-1,-1),Ra(this.layoutVertexArray,c,u,1,-1),Ra(this.layoutVertexArray,c,u,1,1),Ra(this.layoutVertexArray,c,u,-1,1),this.indexArray.emplaceBack(h,h+1,h+2),this.indexArray.emplaceBack(h,h+3,h+2),f.vertexLength+=4,f.primitiveLength+=2}}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,t,r,{},n)},Dn(\"CircleBucket\",Fa,{omit:[\"layers\"]});var Qa=new yi({\"circle-sort-key\":new di(At.layout_circle[\"circle-sort-key\"])}),$a={paint:new yi({\"circle-radius\":new di(At.paint_circle[\"circle-radius\"]),\"circle-color\":new di(At.paint_circle[\"circle-color\"]),\"circle-blur\":new di(At.paint_circle[\"circle-blur\"]),\"circle-opacity\":new di(At.paint_circle[\"circle-opacity\"]),\"circle-translate\":new pi(At.paint_circle[\"circle-translate\"]),\"circle-translate-anchor\":new pi(At.paint_circle[\"circle-translate-anchor\"]),\"circle-pitch-scale\":new pi(At.paint_circle[\"circle-pitch-scale\"]),\"circle-pitch-alignment\":new pi(At.paint_circle[\"circle-pitch-alignment\"]),\"circle-stroke-width\":new di(At.paint_circle[\"circle-stroke-width\"]),\"circle-stroke-color\":new di(At.paint_circle[\"circle-stroke-color\"]),\"circle-stroke-opacity\":new di(At.paint_circle[\"circle-stroke-opacity\"])}),layout:Qa},to=\"undefined\"!=typeof Float32Array?Float32Array:Array;function eo(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function ro(t,e,r){var n=e[0],i=e[1],a=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],f=e[8],h=e[9],p=e[10],d=e[11],g=e[12],m=e[13],v=e[14],y=e[15],x=r[0],b=r[1],_=r[2],w=r[3];return t[0]=x*n+b*s+_*f+w*g,t[1]=x*i+b*l+_*h+w*m,t[2]=x*a+b*c+_*p+w*v,t[3]=x*o+b*u+_*d+w*y,t[4]=(x=r[4])*n+(b=r[5])*s+(_=r[6])*f+(w=r[7])*g,t[5]=x*i+b*l+_*h+w*m,t[6]=x*a+b*c+_*p+w*v,t[7]=x*o+b*u+_*d+w*y,t[8]=(x=r[8])*n+(b=r[9])*s+(_=r[10])*f+(w=r[11])*g,t[9]=x*i+b*l+_*h+w*m,t[10]=x*a+b*c+_*p+w*v,t[11]=x*o+b*u+_*d+w*y,t[12]=(x=r[12])*n+(b=r[13])*s+(_=r[14])*f+(w=r[15])*g,t[13]=x*i+b*l+_*h+w*m,t[14]=x*a+b*c+_*p+w*v,t[15]=x*o+b*u+_*d+w*y,t}Math.hypot||(Math.hypot=function(){for(var t=arguments,e=0,r=arguments.length;r--;)e+=t[r]*t[r];return Math.sqrt(e)});var no,io=ro;function ao(t,e,r){var n=e[0],i=e[1],a=e[2],o=e[3];return t[0]=r[0]*n+r[4]*i+r[8]*a+r[12]*o,t[1]=r[1]*n+r[5]*i+r[9]*a+r[13]*o,t[2]=r[2]*n+r[6]*i+r[10]*a+r[14]*o,t[3]=r[3]*n+r[7]*i+r[11]*a+r[15]*o,t}no=new to(3),to!=Float32Array&&(no[0]=0,no[1]=0,no[2]=0),function(){var t=new to(4);to!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[3]=0)}();var oo=(function(){var t=new to(2);to!=Float32Array&&(t[0]=0,t[1]=0)}(),function(t){function e(e){t.call(this,e,$a)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.createBucket=function(t){return new Fa(t)},e.prototype.queryRadius=function(t){var e=t;return Za(\"circle-radius\",this,e)+Za(\"circle-stroke-width\",this,e)+Ja(this.paint.get(\"circle-translate\"))},e.prototype.queryIntersectsFeature=function(t,e,r,n,i,a,o,s){for(var l=Ka(t,this.paint.get(\"circle-translate\"),this.paint.get(\"circle-translate-anchor\"),a.angle,o),c=this.paint.get(\"circle-radius\").evaluate(e,r)+this.paint.get(\"circle-stroke-width\").evaluate(e,r),u=\"map\"===this.paint.get(\"circle-pitch-alignment\"),f=u?l:function(t,e){return t.map((function(t){return so(t,e)}))}(l,s),h=u?c*o:c,p=0,d=n;p<d.length;p+=1)for(var g=0,m=d[p];g<m.length;g+=1){var v=m[g],y=u?v:so(v,s),x=h,b=ao([],[v.x,v.y,0,1],s);if(\"viewport\"===this.paint.get(\"circle-pitch-scale\")&&\"map\"===this.paint.get(\"circle-pitch-alignment\")?x*=b[3]/a.cameraToCenterDistance:\"map\"===this.paint.get(\"circle-pitch-scale\")&&\"viewport\"===this.paint.get(\"circle-pitch-alignment\")&&(x*=a.cameraToCenterDistance/b[3]),Na(f,y,x))return!0}return!1},e}(xi));function so(t,e){var r=ao([],[t.x,t.y,0,1],e);return new i(r[0]/r[3],r[1]/r[3])}var lo=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e}(Fa);function co(t,e,r,n){var i=e.width,a=e.height;if(n){if(n instanceof Uint8ClampedArray)n=new Uint8Array(n.buffer);else if(n.length!==i*a*r)throw new RangeError(\"mismatched image size\")}else n=new Uint8Array(i*a*r);return t.width=i,t.height=a,t.data=n,t}function uo(t,e,r){var n=e.width,i=e.height;if(n!==t.width||i!==t.height){var a=co({},{width:n,height:i},r);fo(t,a,{x:0,y:0},{x:0,y:0},{width:Math.min(t.width,n),height:Math.min(t.height,i)},r),t.width=n,t.height=i,t.data=a.data}}function fo(t,e,r,n,i,a){if(0===i.width||0===i.height)return e;if(i.width>t.width||i.height>t.height||r.x>t.width-i.width||r.y>t.height-i.height)throw new RangeError(\"out of range source coordinates for image copy\");if(i.width>e.width||i.height>e.height||n.x>e.width-i.width||n.y>e.height-i.height)throw new RangeError(\"out of range destination coordinates for image copy\");for(var o=t.data,s=e.data,l=0;l<i.height;l++)for(var c=((r.y+l)*t.width+r.x)*a,u=((n.y+l)*e.width+n.x)*a,f=0;f<i.width*a;f++)s[u+f]=o[c+f];return e}Dn(\"HeatmapBucket\",lo,{omit:[\"layers\"]});var ho=function(t,e){co(this,t,1,e)};ho.prototype.resize=function(t){uo(this,t,1)},ho.prototype.clone=function(){return new ho({width:this.width,height:this.height},new Uint8Array(this.data))},ho.copy=function(t,e,r,n,i){fo(t,e,r,n,i,1)};var po=function(t,e){co(this,t,4,e)};po.prototype.resize=function(t){uo(this,t,4)},po.prototype.replace=function(t,e){e?this.data.set(t):this.data=t instanceof Uint8ClampedArray?new Uint8Array(t.buffer):t},po.prototype.clone=function(){return new po({width:this.width,height:this.height},new Uint8Array(this.data))},po.copy=function(t,e,r,n,i){fo(t,e,r,n,i,4)},Dn(\"AlphaImage\",ho),Dn(\"RGBAImage\",po);var go={paint:new yi({\"heatmap-radius\":new di(At.paint_heatmap[\"heatmap-radius\"]),\"heatmap-weight\":new di(At.paint_heatmap[\"heatmap-weight\"]),\"heatmap-intensity\":new pi(At.paint_heatmap[\"heatmap-intensity\"]),\"heatmap-color\":new vi(At.paint_heatmap[\"heatmap-color\"]),\"heatmap-opacity\":new pi(At.paint_heatmap[\"heatmap-opacity\"])})};function mo(t,e){for(var r=new Uint8Array(1024),n={},i=0,a=0;i<256;i++,a+=4){n[e]=i/255;var o=t.evaluate(n);r[a+0]=Math.floor(255*o.r/o.a),r[a+1]=Math.floor(255*o.g/o.a),r[a+2]=Math.floor(255*o.b/o.a),r[a+3]=Math.floor(255*o.a)}return new po({width:256,height:1},r)}var vo=function(t){function e(e){t.call(this,e,go),this._updateColorRamp()}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.createBucket=function(t){return new lo(t)},e.prototype._handleSpecialPaintPropertyUpdate=function(t){\"heatmap-color\"===t&&this._updateColorRamp()},e.prototype._updateColorRamp=function(){this.colorRamp=mo(this._transitionablePaint._values[\"heatmap-color\"].value.expression,\"heatmapDensity\"),this.colorRampTexture=null},e.prototype.resize=function(){this.heatmapFbo&&(this.heatmapFbo.destroy(),this.heatmapFbo=null)},e.prototype.queryRadius=function(){return 0},e.prototype.queryIntersectsFeature=function(){return!1},e.prototype.hasOffscreenPass=function(){return 0!==this.paint.get(\"heatmap-opacity\")&&\"none\"!==this.visibility},e}(xi),yo={paint:new yi({\"hillshade-illumination-direction\":new pi(At.paint_hillshade[\"hillshade-illumination-direction\"]),\"hillshade-illumination-anchor\":new pi(At.paint_hillshade[\"hillshade-illumination-anchor\"]),\"hillshade-exaggeration\":new pi(At.paint_hillshade[\"hillshade-exaggeration\"]),\"hillshade-shadow-color\":new pi(At.paint_hillshade[\"hillshade-shadow-color\"]),\"hillshade-highlight-color\":new pi(At.paint_hillshade[\"hillshade-highlight-color\"]),\"hillshade-accent-color\":new pi(At.paint_hillshade[\"hillshade-accent-color\"])})},xo=function(t){function e(e){t.call(this,e,yo)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.hasOffscreenPass=function(){return 0!==this.paint.get(\"hillshade-exaggeration\")&&\"none\"!==this.visibility},e}(xi),bo=Ti([{name:\"a_pos\",components:2,type:\"Int16\"}],4).members,_o=To,wo=To;function To(t,e,r){r=r||2;var n,i,a,o,s,l,c,u=e&&e.length,f=u?e[0]*r:t.length,h=ko(t,0,f,r,!0),p=[];if(!h||h.next===h.prev)return p;if(u&&(h=function(t,e,r,n){var i,a,o,s=[];for(i=0,a=e.length;i<a;i++)(o=ko(t,e[i]*n,i<a-1?e[i+1]*n:t.length,n,!1))===o.next&&(o.steiner=!0),s.push(Do(o));for(s.sort(Io),i=0;i<s.length;i++)Po(s[i],r),r=Mo(r,r.next);return r}(t,e,h,r)),t.length>80*r){n=a=t[0],i=o=t[1];for(var d=r;d<f;d+=r)(s=t[d])<n&&(n=s),(l=t[d+1])<i&&(i=l),s>a&&(a=s),l>o&&(o=l);c=0!==(c=Math.max(a-n,o-i))?1/c:0}return Ao(h,p,r,n,i,c),p}function ko(t,e,r,n,i){var a,o;if(i===Xo(t,e,r,n)>0)for(a=e;a<r;a+=n)o=Go(a,t[a],t[a+1],o);else for(a=r-n;a>=e;a-=n)o=Go(a,t[a],t[a+1],o);return o&&No(o,o.next)&&(Yo(o),o=o.next),o}function Mo(t,e){if(!t)return t;e||(e=t);var r,n=t;do{if(r=!1,n.steiner||!No(n,n.next)&&0!==Bo(n.prev,n,n.next))n=n.next;else{if(Yo(n),(n=e=n.prev)===n.next)break;r=!0}}while(r||n!==e);return e}function Ao(t,e,r,n,i,a,o){if(t){!o&&a&&function(t,e,r,n){var i=t;do{null===i.z&&(i.z=Oo(i.x,i.y,e,r,n)),i.prevZ=i.prev,i.nextZ=i.next,i=i.next}while(i!==t);i.prevZ.nextZ=null,i.prevZ=null,function(t){var e,r,n,i,a,o,s,l,c=1;do{for(r=t,t=null,a=null,o=0;r;){for(o++,n=r,s=0,e=0;e<c&&(s++,n=n.nextZ);e++);for(l=c;s>0||l>0&&n;)0!==s&&(0===l||!n||r.z<=n.z)?(i=r,r=r.nextZ,s--):(i=n,n=n.nextZ,l--),a?a.nextZ=i:t=i,i.prevZ=a,a=i;r=n}a.nextZ=null,c*=2}while(o>1)}(i)}(t,n,i,a);for(var s,l,c=t;t.prev!==t.next;)if(s=t.prev,l=t.next,a?Eo(t,n,i,a):So(t))e.push(s.i/r),e.push(t.i/r),e.push(l.i/r),Yo(t),t=l.next,c=l.next;else if((t=l)===c){o?1===o?Ao(t=Co(Mo(t),e,r),e,r,n,i,a,2):2===o&&Lo(t,e,r,n,i,a):Ao(Mo(t),e,r,n,i,a,1);break}}}function So(t){var e=t.prev,r=t,n=t.next;if(Bo(e,r,n)>=0)return!1;for(var i=t.next.next;i!==t.prev;){if(Ro(e.x,e.y,r.x,r.y,n.x,n.y,i.x,i.y)&&Bo(i.prev,i,i.next)>=0)return!1;i=i.next}return!0}function Eo(t,e,r,n){var i=t.prev,a=t,o=t.next;if(Bo(i,a,o)>=0)return!1;for(var s=i.x>a.x?i.x>o.x?i.x:o.x:a.x>o.x?a.x:o.x,l=i.y>a.y?i.y>o.y?i.y:o.y:a.y>o.y?a.y:o.y,c=Oo(i.x<a.x?i.x<o.x?i.x:o.x:a.x<o.x?a.x:o.x,i.y<a.y?i.y<o.y?i.y:o.y:a.y<o.y?a.y:o.y,e,r,n),u=Oo(s,l,e,r,n),f=t.prevZ,h=t.nextZ;f&&f.z>=c&&h&&h.z<=u;){if(f!==t.prev&&f!==t.next&&Ro(i.x,i.y,a.x,a.y,o.x,o.y,f.x,f.y)&&Bo(f.prev,f,f.next)>=0)return!1;if(f=f.prevZ,h!==t.prev&&h!==t.next&&Ro(i.x,i.y,a.x,a.y,o.x,o.y,h.x,h.y)&&Bo(h.prev,h,h.next)>=0)return!1;h=h.nextZ}for(;f&&f.z>=c;){if(f!==t.prev&&f!==t.next&&Ro(i.x,i.y,a.x,a.y,o.x,o.y,f.x,f.y)&&Bo(f.prev,f,f.next)>=0)return!1;f=f.prevZ}for(;h&&h.z<=u;){if(h!==t.prev&&h!==t.next&&Ro(i.x,i.y,a.x,a.y,o.x,o.y,h.x,h.y)&&Bo(h.prev,h,h.next)>=0)return!1;h=h.nextZ}return!0}function Co(t,e,r){var n=t;do{var i=n.prev,a=n.next.next;!No(i,a)&&jo(i,n,n.next,a)&&qo(i,a)&&qo(a,i)&&(e.push(i.i/r),e.push(n.i/r),e.push(a.i/r),Yo(n),Yo(n.next),n=t=a),n=n.next}while(n!==t);return Mo(n)}function Lo(t,e,r,n,i,a){var o=t;do{for(var s=o.next.next;s!==o.prev;){if(o.i!==s.i&&Fo(o,s)){var l=Ho(o,s);return o=Mo(o,o.next),l=Mo(l,l.next),Ao(o,e,r,n,i,a),void Ao(l,e,r,n,i,a)}s=s.next}o=o.next}while(o!==t)}function Io(t,e){return t.x-e.x}function Po(t,e){if(e=function(t,e){var r,n=e,i=t.x,a=t.y,o=-1/0;do{if(a<=n.y&&a>=n.next.y&&n.next.y!==n.y){var s=n.x+(a-n.y)*(n.next.x-n.x)/(n.next.y-n.y);if(s<=i&&s>o){if(o=s,s===i){if(a===n.y)return n;if(a===n.next.y)return n.next}r=n.x<n.next.x?n:n.next}}n=n.next}while(n!==e);if(!r)return null;if(i===o)return r;var l,c=r,u=r.x,f=r.y,h=1/0;n=r;do{i>=n.x&&n.x>=u&&i!==n.x&&Ro(a<f?i:o,a,u,f,a<f?o:i,a,n.x,n.y)&&(l=Math.abs(a-n.y)/(i-n.x),qo(n,t)&&(l<h||l===h&&(n.x>r.x||n.x===r.x&&zo(r,n)))&&(r=n,h=l)),n=n.next}while(n!==c);return r}(t,e)){var r=Ho(e,t);Mo(e,e.next),Mo(r,r.next)}}function zo(t,e){return Bo(t.prev,t,e.prev)<0&&Bo(e.next,t,t.next)<0}function Oo(t,e,r,n,i){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=32767*(t-r)*i)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=32767*(e-n)*i)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function Do(t){var e=t,r=t;do{(e.x<r.x||e.x===r.x&&e.y<r.y)&&(r=e),e=e.next}while(e!==t);return r}function Ro(t,e,r,n,i,a,o,s){return(i-o)*(e-s)-(t-o)*(a-s)>=0&&(t-o)*(n-s)-(r-o)*(e-s)>=0&&(r-o)*(a-s)-(i-o)*(n-s)>=0}function Fo(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!function(t,e){var r=t;do{if(r.i!==t.i&&r.next.i!==t.i&&r.i!==e.i&&r.next.i!==e.i&&jo(r,r.next,t,e))return!0;r=r.next}while(r!==t);return!1}(t,e)&&(qo(t,e)&&qo(e,t)&&function(t,e){var r=t,n=!1,i=(t.x+e.x)/2,a=(t.y+e.y)/2;do{r.y>a!=r.next.y>a&&r.next.y!==r.y&&i<(r.next.x-r.x)*(a-r.y)/(r.next.y-r.y)+r.x&&(n=!n),r=r.next}while(r!==t);return n}(t,e)&&(Bo(t.prev,t,e.prev)||Bo(t,e.prev,e))||No(t,e)&&Bo(t.prev,t,t.next)>0&&Bo(e.prev,e,e.next)>0)}function Bo(t,e,r){return(e.y-t.y)*(r.x-e.x)-(e.x-t.x)*(r.y-e.y)}function No(t,e){return t.x===e.x&&t.y===e.y}function jo(t,e,r,n){var i=Vo(Bo(t,e,r)),a=Vo(Bo(t,e,n)),o=Vo(Bo(r,n,t)),s=Vo(Bo(r,n,e));return i!==a&&o!==s||!(0!==i||!Uo(t,r,e))||!(0!==a||!Uo(t,n,e))||!(0!==o||!Uo(r,t,n))||!(0!==s||!Uo(r,e,n))}function Uo(t,e,r){return e.x<=Math.max(t.x,r.x)&&e.x>=Math.min(t.x,r.x)&&e.y<=Math.max(t.y,r.y)&&e.y>=Math.min(t.y,r.y)}function Vo(t){return t>0?1:t<0?-1:0}function qo(t,e){return Bo(t.prev,t,t.next)<0?Bo(t,e,t.next)>=0&&Bo(t,t.prev,e)>=0:Bo(t,e,t.prev)<0||Bo(t,t.next,e)<0}function Ho(t,e){var r=new Wo(t.i,t.x,t.y),n=new Wo(e.i,e.x,e.y),i=t.next,a=e.prev;return t.next=e,e.prev=t,r.next=i,i.prev=r,n.next=r,r.prev=n,a.next=n,n.prev=a,n}function Go(t,e,r,n){var i=new Wo(t,e,r);return n?(i.next=n.next,i.prev=n,n.next.prev=i,n.next=i):(i.prev=i,i.next=i),i}function Yo(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function Wo(t,e,r){this.i=t,this.x=e,this.y=r,this.prev=null,this.next=null,this.z=null,this.prevZ=null,this.nextZ=null,this.steiner=!1}function Xo(t,e,r,n){for(var i=0,a=e,o=r-n;a<r;a+=n)i+=(t[o]-t[a])*(t[a+1]+t[o+1]),o=a;return i}function Zo(t,e,r,n,i){!function t(e,r,n,i,a){for(;i>n;){if(i-n>600){var o=i-n+1,s=r-n+1,l=Math.log(o),c=.5*Math.exp(2*l/3),u=.5*Math.sqrt(l*c*(o-c)/o)*(s-o/2<0?-1:1);t(e,r,Math.max(n,Math.floor(r-s*c/o+u)),Math.min(i,Math.floor(r+(o-s)*c/o+u)),a)}var f=e[r],h=n,p=i;for(Jo(e,n,r),a(e[i],f)>0&&Jo(e,n,i);h<p;){for(Jo(e,h,p),h++,p--;a(e[h],f)<0;)h++;for(;a(e[p],f)>0;)p--}0===a(e[n],f)?Jo(e,n,p):Jo(e,++p,i),p<=r&&(n=p+1),r<=p&&(i=p-1)}}(t,e,r||0,n||t.length-1,i||Ko)}function Jo(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function Ko(t,e){return t<e?-1:t>e?1:0}function Qo(t,e){var r=t.length;if(r<=1)return[t];for(var n,i,a=[],o=0;o<r;o++){var s=T(t[o]);0!==s&&(t[o].area=Math.abs(s),void 0===i&&(i=s<0),i===s<0?(n&&a.push(n),n=[t[o]]):n.push(t[o]))}if(n&&a.push(n),e>1)for(var l=0;l<a.length;l++)a[l].length<=e||(Zo(a[l],e,1,a[l].length-1,$o),a[l]=a[l].slice(0,e));return a}function $o(t,e){return e.area-t.area}function ts(t,e,r){for(var n=r.patternDependencies,i=!1,a=0,o=e;a<o.length;a+=1){var s=o[a].paint.get(t+\"-pattern\");s.isConstant()||(i=!0);var l=s.constantOr(null);l&&(i=!0,n[l.to]=!0,n[l.from]=!0)}return i}function es(t,e,r,n,i){for(var a=i.patternDependencies,o=0,s=e;o<s.length;o+=1){var l=s[o],c=l.paint.get(t+\"-pattern\").value;if(\"constant\"!==c.kind){var u=c.evaluate({zoom:n-1},r,{},i.availableImages),f=c.evaluate({zoom:n},r,{},i.availableImages),h=c.evaluate({zoom:n+1},r,{},i.availableImages);f=f&&f.name?f.name:f,h=h&&h.name?h.name:h,a[u=u&&u.name?u.name:u]=!0,a[f]=!0,a[h]=!0,r.patterns[l.id]={min:u,mid:f,max:h}}}return r}To.deviation=function(t,e,r,n){var i=e&&e.length,a=Math.abs(Xo(t,0,i?e[0]*r:t.length,r));if(i)for(var o=0,s=e.length;o<s;o++)a-=Math.abs(Xo(t,e[o]*r,o<s-1?e[o+1]*r:t.length,r));var l=0;for(o=0;o<n.length;o+=3){var c=n[o]*r,u=n[o+1]*r,f=n[o+2]*r;l+=Math.abs((t[c]-t[f])*(t[u+1]-t[c+1])-(t[c]-t[u])*(t[f+1]-t[c+1]))}return 0===a&&0===l?0:Math.abs((l-a)/a)},To.flatten=function(t){for(var e=t[0][0].length,r={vertices:[],holes:[],dimensions:e},n=0,i=0;i<t.length;i++){for(var a=0;a<t[i].length;a++)for(var o=0;o<e;o++)r.vertices.push(t[i][a][o]);i>0&&r.holes.push(n+=t[i-1].length)}return r},_o.default=wo;var rs=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map((function(t){return t.id})),this.index=t.index,this.hasPattern=!1,this.patternFeatures=[],this.layoutVertexArray=new Mi,this.indexArray=new Fi,this.indexArray2=new qi,this.programConfigurations=new Ia(bo,t.layers,t.zoom),this.segments=new ia,this.segments2=new ia,this.stateDependentLayerIds=this.layers.filter((function(t){return t.isStateDependent()})).map((function(t){return t.id}))};rs.prototype.populate=function(t,e,r){this.hasPattern=ts(\"fill\",this.layers,e);for(var n=this.layers[0].layout.get(\"fill-sort-key\"),i=[],a=0,o=t;a<o.length;a+=1){var s=o[a],l=s.feature,c=s.id,u=s.index,f=s.sourceLayerIndex,h=this.layers[0]._featureFilter.needGeometry,p={type:l.type,id:c,properties:l.properties,geometry:h?Da(l):[]};if(this.layers[0]._featureFilter.filter(new ii(this.zoom),p,r)){h||(p.geometry=Da(l));var d=n?n.evaluate(p,{},r,e.availableImages):void 0;i.push({id:c,properties:l.properties,type:l.type,sourceLayerIndex:f,index:u,geometry:p.geometry,patterns:{},sortKey:d})}}n&&i.sort((function(t,e){return t.sortKey-e.sortKey}));for(var g=0,m=i;g<m.length;g+=1){var v=m[g],y=v.geometry,x=v.index,b=v.sourceLayerIndex;if(this.hasPattern){var _=es(\"fill\",this.layers,v,this.zoom,e);this.patternFeatures.push(_)}else this.addFeature(v,y,x,r,{});e.featureIndex.insert(t[x].feature,y,x,b,this.index)}},rs.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},rs.prototype.addFeatures=function(t,e,r){for(var n=0,i=this.patternFeatures;n<i.length;n+=1){var a=i[n];this.addFeature(a,a.geometry,a.index,e,r)}},rs.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},rs.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},rs.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,bo),this.indexBuffer=t.createIndexBuffer(this.indexArray),this.indexBuffer2=t.createIndexBuffer(this.indexArray2)),this.programConfigurations.upload(t),this.uploaded=!0},rs.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.indexBuffer2.destroy(),this.programConfigurations.destroy(),this.segments.destroy(),this.segments2.destroy())},rs.prototype.addFeature=function(t,e,r,n,i){for(var a=0,o=Qo(e,500);a<o.length;a+=1){for(var s=o[a],l=0,c=0,u=s;c<u.length;c+=1)l+=u[c].length;for(var f=this.segments.prepareSegment(l,this.layoutVertexArray,this.indexArray),h=f.vertexLength,p=[],d=[],g=0,m=s;g<m.length;g+=1){var v=m[g];if(0!==v.length){v!==s[0]&&d.push(p.length/2);var y=this.segments2.prepareSegment(v.length,this.layoutVertexArray,this.indexArray2),x=y.vertexLength;this.layoutVertexArray.emplaceBack(v[0].x,v[0].y),this.indexArray2.emplaceBack(x+v.length-1,x),p.push(v[0].x),p.push(v[0].y);for(var b=1;b<v.length;b++)this.layoutVertexArray.emplaceBack(v[b].x,v[b].y),this.indexArray2.emplaceBack(x+b-1,x+b),p.push(v[b].x),p.push(v[b].y);y.vertexLength+=v.length,y.primitiveLength+=v.length}}for(var _=_o(p,d),w=0;w<_.length;w+=3)this.indexArray.emplaceBack(h+_[w],h+_[w+1],h+_[w+2]);f.vertexLength+=l,f.primitiveLength+=_.length/3}this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,t,r,i,n)},Dn(\"FillBucket\",rs,{omit:[\"layers\",\"patternFeatures\"]});var ns=new yi({\"fill-sort-key\":new di(At.layout_fill[\"fill-sort-key\"])}),is={paint:new yi({\"fill-antialias\":new pi(At.paint_fill[\"fill-antialias\"]),\"fill-opacity\":new di(At.paint_fill[\"fill-opacity\"]),\"fill-color\":new di(At.paint_fill[\"fill-color\"]),\"fill-outline-color\":new di(At.paint_fill[\"fill-outline-color\"]),\"fill-translate\":new pi(At.paint_fill[\"fill-translate\"]),\"fill-translate-anchor\":new pi(At.paint_fill[\"fill-translate-anchor\"]),\"fill-pattern\":new gi(At.paint_fill[\"fill-pattern\"])}),layout:ns},as=function(t){function e(e){t.call(this,e,is)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.recalculate=function(e,r){t.prototype.recalculate.call(this,e,r);var n=this.paint._values[\"fill-outline-color\"];\"constant\"===n.value.kind&&void 0===n.value.value&&(this.paint._values[\"fill-outline-color\"]=this.paint._values[\"fill-color\"])},e.prototype.createBucket=function(t){return new rs(t)},e.prototype.queryRadius=function(){return Ja(this.paint.get(\"fill-translate\"))},e.prototype.queryIntersectsFeature=function(t,e,r,n,i,a,o){return ja(Ka(t,this.paint.get(\"fill-translate\"),this.paint.get(\"fill-translate-anchor\"),a.angle,o),n)},e.prototype.isTileClipped=function(){return!0},e}(xi),os=Ti([{name:\"a_pos\",components:2,type:\"Int16\"},{name:\"a_normal_ed\",components:4,type:\"Int16\"}],4).members,ss=ls;function ls(t,e,r,n,i){this.properties={},this.extent=r,this.type=0,this._pbf=t,this._geometry=-1,this._keys=n,this._values=i,t.readFields(cs,this,e)}function cs(t,e,r){1==t?e.id=r.readVarint():2==t?function(t,e){for(var r=t.readVarint()+t.pos;t.pos<r;){var n=e._keys[t.readVarint()],i=e._values[t.readVarint()];e.properties[n]=i}}(r,e):3==t?e.type=r.readVarint():4==t&&(e._geometry=r.pos)}function us(t){for(var e,r,n=0,i=0,a=t.length,o=a-1;i<a;o=i++)n+=((r=t[o]).x-(e=t[i]).x)*(e.y+r.y);return n}ls.types=[\"Unknown\",\"Point\",\"LineString\",\"Polygon\"],ls.prototype.loadGeometry=function(){var t=this._pbf;t.pos=this._geometry;for(var e,r=t.readVarint()+t.pos,n=1,a=0,o=0,s=0,l=[];t.pos<r;){if(a<=0){var c=t.readVarint();n=7&c,a=c>>3}if(a--,1===n||2===n)o+=t.readSVarint(),s+=t.readSVarint(),1===n&&(e&&l.push(e),e=[]),e.push(new i(o,s));else{if(7!==n)throw new Error(\"unknown command \"+n);e&&e.push(e[0].clone())}}return e&&l.push(e),l},ls.prototype.bbox=function(){var t=this._pbf;t.pos=this._geometry;for(var e=t.readVarint()+t.pos,r=1,n=0,i=0,a=0,o=1/0,s=-1/0,l=1/0,c=-1/0;t.pos<e;){if(n<=0){var u=t.readVarint();r=7&u,n=u>>3}if(n--,1===r||2===r)(i+=t.readSVarint())<o&&(o=i),i>s&&(s=i),(a+=t.readSVarint())<l&&(l=a),a>c&&(c=a);else if(7!==r)throw new Error(\"unknown command \"+r)}return[o,l,s,c]},ls.prototype.toGeoJSON=function(t,e,r){var n,i,a=this.extent*Math.pow(2,r),o=this.extent*t,s=this.extent*e,l=this.loadGeometry(),c=ls.types[this.type];function u(t){for(var e=0;e<t.length;e++){var r=t[e];t[e]=[360*(r.x+o)/a-180,360/Math.PI*Math.atan(Math.exp((180-360*(r.y+s)/a)*Math.PI/180))-90]}}switch(this.type){case 1:var f=[];for(n=0;n<l.length;n++)f[n]=l[n][0];u(l=f);break;case 2:for(n=0;n<l.length;n++)u(l[n]);break;case 3:for(l=function(t){var e=t.length;if(e<=1)return[t];for(var r,n,i=[],a=0;a<e;a++){var o=us(t[a]);0!==o&&(void 0===n&&(n=o<0),n===o<0?(r&&i.push(r),r=[t[a]]):r.push(t[a]))}return r&&i.push(r),i}(l),n=0;n<l.length;n++)for(i=0;i<l[n].length;i++)u(l[n][i])}1===l.length?l=l[0]:c=\"Multi\"+c;var h={type:\"Feature\",geometry:{type:c,coordinates:l},properties:this.properties};return\"id\"in this&&(h.id=this.id),h};var fs=hs;function hs(t,e){this.version=1,this.name=null,this.extent=4096,this.length=0,this._pbf=t,this._keys=[],this._values=[],this._features=[],t.readFields(ps,this,e),this.length=this._features.length}function ps(t,e,r){15===t?e.version=r.readVarint():1===t?e.name=r.readString():5===t?e.extent=r.readVarint():2===t?e._features.push(r.pos):3===t?e._keys.push(r.readString()):4===t&&e._values.push(function(t){for(var e=null,r=t.readVarint()+t.pos;t.pos<r;){var n=t.readVarint()>>3;e=1===n?t.readString():2===n?t.readFloat():3===n?t.readDouble():4===n?t.readVarint64():5===n?t.readVarint():6===n?t.readSVarint():7===n?t.readBoolean():null}return e}(r))}function ds(t,e,r){if(3===t){var n=new fs(r,r.readVarint()+r.pos);n.length&&(e[n.name]=n)}}hs.prototype.feature=function(t){if(t<0||t>=this._features.length)throw new Error(\"feature index out of bounds\");this._pbf.pos=this._features[t];var e=this._pbf.readVarint()+this._pbf.pos;return new ss(this._pbf,e,this.extent,this._keys,this._values)};var gs={VectorTile:function(t,e){this.layers=t.readFields(ds,{},e)},VectorTileFeature:ss,VectorTileLayer:fs},ms=gs.VectorTileFeature.types,vs=Math.pow(2,13);function ys(t,e,r,n,i,a,o,s){t.emplaceBack(e,r,2*Math.floor(n*vs)+o,i*vs*2,a*vs*2,Math.round(s))}var xs=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map((function(t){return t.id})),this.index=t.index,this.hasPattern=!1,this.layoutVertexArray=new Si,this.indexArray=new Fi,this.programConfigurations=new Ia(os,t.layers,t.zoom),this.segments=new ia,this.stateDependentLayerIds=this.layers.filter((function(t){return t.isStateDependent()})).map((function(t){return t.id}))};function bs(t,e){return t.x===e.x&&(t.x<0||t.x>8192)||t.y===e.y&&(t.y<0||t.y>8192)}xs.prototype.populate=function(t,e,r){this.features=[],this.hasPattern=ts(\"fill-extrusion\",this.layers,e);for(var n=0,i=t;n<i.length;n+=1){var a=i[n],o=a.feature,s=a.id,l=a.index,c=a.sourceLayerIndex,u=this.layers[0]._featureFilter.needGeometry,f={type:o.type,id:s,properties:o.properties,geometry:u?Da(o):[]};if(this.layers[0]._featureFilter.filter(new ii(this.zoom),f,r)){var h={id:s,sourceLayerIndex:c,index:l,geometry:u?f.geometry:Da(o),properties:o.properties,type:o.type,patterns:{}};void 0!==o.id&&(h.id=o.id),this.hasPattern?this.features.push(es(\"fill-extrusion\",this.layers,h,this.zoom,e)):this.addFeature(h,h.geometry,l,r,{}),e.featureIndex.insert(o,h.geometry,l,c,this.index,!0)}}},xs.prototype.addFeatures=function(t,e,r){for(var n=0,i=this.features;n<i.length;n+=1){var a=i[n];this.addFeature(a,a.geometry,a.index,e,r)}},xs.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},xs.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},xs.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},xs.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,os),this.indexBuffer=t.createIndexBuffer(this.indexArray)),this.programConfigurations.upload(t),this.uploaded=!0},xs.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy())},xs.prototype.addFeature=function(t,e,r,n,i){for(var a=0,o=Qo(e,500);a<o.length;a+=1){for(var s=o[a],l=0,c=0,u=s;c<u.length;c+=1)l+=u[c].length;for(var f=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray),h=0,p=s;h<p.length;h+=1){var d=p[h];if(0!==d.length&&!((P=d).every((function(t){return t.x<0}))||P.every((function(t){return t.x>8192}))||P.every((function(t){return t.y<0}))||P.every((function(t){return t.y>8192}))))for(var g=0,m=0;m<d.length;m++){var v=d[m];if(m>=1){var y=d[m-1];if(!bs(v,y)){f.vertexLength+4>ia.MAX_VERTEX_ARRAY_LENGTH&&(f=this.segments.prepareSegment(4,this.layoutVertexArray,this.indexArray));var x=v.sub(y)._perp()._unit(),b=y.dist(v);g+b>32768&&(g=0),ys(this.layoutVertexArray,v.x,v.y,x.x,x.y,0,0,g),ys(this.layoutVertexArray,v.x,v.y,x.x,x.y,0,1,g),ys(this.layoutVertexArray,y.x,y.y,x.x,x.y,0,0,g+=b),ys(this.layoutVertexArray,y.x,y.y,x.x,x.y,0,1,g);var _=f.vertexLength;this.indexArray.emplaceBack(_,_+2,_+1),this.indexArray.emplaceBack(_+1,_+2,_+3),f.vertexLength+=4,f.primitiveLength+=2}}}}if(f.vertexLength+l>ia.MAX_VERTEX_ARRAY_LENGTH&&(f=this.segments.prepareSegment(l,this.layoutVertexArray,this.indexArray)),\"Polygon\"===ms[t.type]){for(var w=[],T=[],k=f.vertexLength,M=0,A=s;M<A.length;M+=1){var S=A[M];if(0!==S.length){S!==s[0]&&T.push(w.length/2);for(var E=0;E<S.length;E++){var C=S[E];ys(this.layoutVertexArray,C.x,C.y,0,0,1,1,0),w.push(C.x),w.push(C.y)}}}for(var L=_o(w,T),I=0;I<L.length;I+=3)this.indexArray.emplaceBack(k+L[I],k+L[I+2],k+L[I+1]);f.primitiveLength+=L.length/3,f.vertexLength+=l}}var P;this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,t,r,i,n)},Dn(\"FillExtrusionBucket\",xs,{omit:[\"layers\",\"features\"]});var _s={paint:new yi({\"fill-extrusion-opacity\":new pi(At[\"paint_fill-extrusion\"][\"fill-extrusion-opacity\"]),\"fill-extrusion-color\":new di(At[\"paint_fill-extrusion\"][\"fill-extrusion-color\"]),\"fill-extrusion-translate\":new pi(At[\"paint_fill-extrusion\"][\"fill-extrusion-translate\"]),\"fill-extrusion-translate-anchor\":new pi(At[\"paint_fill-extrusion\"][\"fill-extrusion-translate-anchor\"]),\"fill-extrusion-pattern\":new gi(At[\"paint_fill-extrusion\"][\"fill-extrusion-pattern\"]),\"fill-extrusion-height\":new di(At[\"paint_fill-extrusion\"][\"fill-extrusion-height\"]),\"fill-extrusion-base\":new di(At[\"paint_fill-extrusion\"][\"fill-extrusion-base\"]),\"fill-extrusion-vertical-gradient\":new pi(At[\"paint_fill-extrusion\"][\"fill-extrusion-vertical-gradient\"])})},ws=function(t){function e(e){t.call(this,e,_s)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.createBucket=function(t){return new xs(t)},e.prototype.queryRadius=function(){return Ja(this.paint.get(\"fill-extrusion-translate\"))},e.prototype.is3D=function(){return!0},e.prototype.queryIntersectsFeature=function(t,e,r,n,a,o,s,l){var c=Ka(t,this.paint.get(\"fill-extrusion-translate\"),this.paint.get(\"fill-extrusion-translate-anchor\"),o.angle,s),u=this.paint.get(\"fill-extrusion-height\").evaluate(e,r),f=this.paint.get(\"fill-extrusion-base\").evaluate(e,r),h=function(t,e,r,n){for(var a=[],o=0,s=t;o<s.length;o+=1){var l=s[o],c=[l.x,l.y,0,1];ao(c,c,e),a.push(new i(c[0]/c[3],c[1]/c[3]))}return a}(c,l),p=function(t,e,r,n){for(var a=[],o=[],s=n[8]*e,l=n[9]*e,c=n[10]*e,u=n[11]*e,f=n[8]*r,h=n[9]*r,p=n[10]*r,d=n[11]*r,g=0,m=t;g<m.length;g+=1){for(var v=[],y=[],x=0,b=m[g];x<b.length;x+=1){var _=b[x],w=_.x,T=_.y,k=n[0]*w+n[4]*T+n[12],M=n[1]*w+n[5]*T+n[13],A=n[2]*w+n[6]*T+n[14],S=n[3]*w+n[7]*T+n[15],E=A+c,C=S+u,L=k+f,I=M+h,P=A+p,z=S+d,O=new i((k+s)/C,(M+l)/C);O.z=E/C,v.push(O);var D=new i(L/z,I/z);D.z=P/z,y.push(D)}a.push(v),o.push(y)}return[a,o]}(n,f,u,l);return function(t,e,r){var n=1/0;ja(r,e)&&(n=ks(r,e[0]));for(var i=0;i<e.length;i++)for(var a=e[i],o=t[i],s=0;s<a.length-1;s++){var l=a[s],c=[l,a[s+1],o[s+1],o[s],l];Ba(r,c)&&(n=Math.min(n,ks(r,c)))}return n!==1/0&&n}(p[0],p[1],h)},e}(xi);function Ts(t,e){return t.x*e.x+t.y*e.y}function ks(t,e){if(1===t.length){for(var r,n=0,i=e[n++];!r||i.equals(r);)if(!(r=e[n++]))return 1/0;for(;n<e.length;n++){var a=e[n],o=t[0],s=r.sub(i),l=a.sub(i),c=o.sub(i),u=Ts(s,s),f=Ts(s,l),h=Ts(l,l),p=Ts(c,s),d=Ts(c,l),g=u*h-f*f,m=(h*p-f*d)/g,v=(u*d-f*p)/g,y=i.z*(1-m-v)+r.z*m+a.z*v;if(isFinite(y))return y}return 1/0}for(var x=1/0,b=0,_=e;b<_.length;b+=1)x=Math.min(x,_[b].z);return x}var Ms=Ti([{name:\"a_pos_normal\",components:2,type:\"Int16\"},{name:\"a_data\",components:4,type:\"Uint8\"}],4).members,As=gs.VectorTileFeature.types,Ss=Math.cos(Math.PI/180*37.5),Es=Math.pow(2,14)/.5,Cs=function(t){this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map((function(t){return t.id})),this.index=t.index,this.hasPattern=!1,this.patternFeatures=[],this.layoutVertexArray=new Ei,this.indexArray=new Fi,this.programConfigurations=new Ia(Ms,t.layers,t.zoom),this.segments=new ia,this.stateDependentLayerIds=this.layers.filter((function(t){return t.isStateDependent()})).map((function(t){return t.id}))};Cs.prototype.populate=function(t,e,r){this.hasPattern=ts(\"line\",this.layers,e);for(var n=this.layers[0].layout.get(\"line-sort-key\"),i=[],a=0,o=t;a<o.length;a+=1){var s=o[a],l=s.feature,c=s.id,u=s.index,f=s.sourceLayerIndex,h=this.layers[0]._featureFilter.needGeometry,p={type:l.type,id:c,properties:l.properties,geometry:h?Da(l):[]};if(this.layers[0]._featureFilter.filter(new ii(this.zoom),p,r)){h||(p.geometry=Da(l));var d=n?n.evaluate(p,{},r):void 0;i.push({id:c,properties:l.properties,type:l.type,sourceLayerIndex:f,index:u,geometry:p.geometry,patterns:{},sortKey:d})}}n&&i.sort((function(t,e){return t.sortKey-e.sortKey}));for(var g=0,m=i;g<m.length;g+=1){var v=m[g],y=v.geometry,x=v.index,b=v.sourceLayerIndex;if(this.hasPattern){var _=es(\"line\",this.layers,v,this.zoom,e);this.patternFeatures.push(_)}else this.addFeature(v,y,x,r,{});e.featureIndex.insert(t[x].feature,y,x,b,this.index)}},Cs.prototype.update=function(t,e,r){this.stateDependentLayers.length&&this.programConfigurations.updatePaintArrays(t,e,this.stateDependentLayers,r)},Cs.prototype.addFeatures=function(t,e,r){for(var n=0,i=this.patternFeatures;n<i.length;n+=1){var a=i[n];this.addFeature(a,a.geometry,a.index,e,r)}},Cs.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length},Cs.prototype.uploadPending=function(){return!this.uploaded||this.programConfigurations.needsUpload},Cs.prototype.upload=function(t){this.uploaded||(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,Ms),this.indexBuffer=t.createIndexBuffer(this.indexArray)),this.programConfigurations.upload(t),this.uploaded=!0},Cs.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy())},Cs.prototype.addFeature=function(t,e,r,n,i){for(var a=this.layers[0].layout,o=a.get(\"line-join\").evaluate(t,{}),s=a.get(\"line-cap\"),l=a.get(\"line-miter-limit\"),c=a.get(\"line-round-limit\"),u=0,f=e;u<f.length;u+=1)this.addLine(f[u],t,o,s,l,c);this.programConfigurations.populatePaintArrays(this.layoutVertexArray.length,t,r,i,n)},Cs.prototype.addLine=function(t,e,r,n,i,a){if(this.distance=0,this.scaledDistance=0,this.totalDistance=0,e.properties&&e.properties.hasOwnProperty(\"mapbox_clip_start\")&&e.properties.hasOwnProperty(\"mapbox_clip_end\")){this.clipStart=+e.properties.mapbox_clip_start,this.clipEnd=+e.properties.mapbox_clip_end;for(var o=0;o<t.length-1;o++)this.totalDistance+=t[o].dist(t[o+1]);this.updateScaledDistance()}for(var s=\"Polygon\"===As[e.type],l=t.length;l>=2&&t[l-1].equals(t[l-2]);)l--;for(var c=0;c<l-1&&t[c].equals(t[c+1]);)c++;if(!(l<(s?3:2))){\"bevel\"===r&&(i=1.05);var u,f=this.overscaling<=16?122880/(512*this.overscaling):0,h=this.segments.prepareSegment(10*l,this.layoutVertexArray,this.indexArray),p=void 0,d=void 0,g=void 0,m=void 0;this.e1=this.e2=-1,s&&(m=t[c].sub(u=t[l-2])._unit()._perp());for(var v=c;v<l;v++)if(!(d=v===l-1?s?t[c+1]:void 0:t[v+1])||!t[v].equals(d)){m&&(g=m),u&&(p=u),u=t[v],m=d?d.sub(u)._unit()._perp():g;var y=(g=g||m).add(m);0===y.x&&0===y.y||y._unit();var x=g.x*m.x+g.y*m.y,b=y.x*m.x+y.y*m.y,_=0!==b?1/b:1/0,w=2*Math.sqrt(2-2*b),T=b<Ss&&p&&d,k=g.x*m.y-g.y*m.x>0;if(T&&v>c){var M=u.dist(p);if(M>2*f){var A=u.sub(u.sub(p)._mult(f/M)._round());this.updateDistance(p,A),this.addCurrentVertex(A,g,0,0,h),p=A}}var S=p&&d,E=S?r:s?\"butt\":n;if(S&&\"round\"===E&&(_<a?E=\"miter\":_<=2&&(E=\"fakeround\")),\"miter\"===E&&_>i&&(E=\"bevel\"),\"bevel\"===E&&(_>2&&(E=\"flipbevel\"),_<i&&(E=\"miter\")),p&&this.updateDistance(p,u),\"miter\"===E)y._mult(_),this.addCurrentVertex(u,y,0,0,h);else if(\"flipbevel\"===E){if(_>100)y=m.mult(-1);else{var C=_*g.add(m).mag()/g.sub(m).mag();y._perp()._mult(C*(k?-1:1))}this.addCurrentVertex(u,y,0,0,h),this.addCurrentVertex(u,y.mult(-1),0,0,h)}else if(\"bevel\"===E||\"fakeround\"===E){var L=-Math.sqrt(_*_-1),I=k?L:0,P=k?0:L;if(p&&this.addCurrentVertex(u,g,I,P,h),\"fakeround\"===E)for(var z=Math.round(180*w/Math.PI/20),O=1;O<z;O++){var D=O/z;if(.5!==D){var R=D-.5;D+=D*R*(D-1)*((1.0904+x*(x*(3.55645-1.43519*x)-3.2452))*R*R+(.848013+x*(.215638*x-1.06021)))}var F=m.sub(g)._mult(D)._add(g)._unit()._mult(k?-1:1);this.addHalfVertex(u,F.x,F.y,!1,k,0,h)}d&&this.addCurrentVertex(u,m,-I,-P,h)}else if(\"butt\"===E)this.addCurrentVertex(u,y,0,0,h);else if(\"square\"===E){var B=p?1:-1;this.addCurrentVertex(u,y,B,B,h)}else\"round\"===E&&(p&&(this.addCurrentVertex(u,g,0,0,h),this.addCurrentVertex(u,g,1,1,h,!0)),d&&(this.addCurrentVertex(u,m,-1,-1,h,!0),this.addCurrentVertex(u,m,0,0,h)));if(T&&v<l-1){var N=u.dist(d);if(N>2*f){var j=u.add(d.sub(u)._mult(f/N)._round());this.updateDistance(u,j),this.addCurrentVertex(j,m,0,0,h),u=j}}}}},Cs.prototype.addCurrentVertex=function(t,e,r,n,i,a){void 0===a&&(a=!1);var o=e.y*n-e.x,s=-e.y-e.x*n;this.addHalfVertex(t,e.x+e.y*r,e.y-e.x*r,a,!1,r,i),this.addHalfVertex(t,o,s,a,!0,-n,i),this.distance>Es/2&&0===this.totalDistance&&(this.distance=0,this.addCurrentVertex(t,e,r,n,i,a))},Cs.prototype.addHalfVertex=function(t,e,r,n,i,a,o){var s=.5*this.scaledDistance;this.layoutVertexArray.emplaceBack((t.x<<1)+(n?1:0),(t.y<<1)+(i?1:0),Math.round(63*e)+128,Math.round(63*r)+128,1+(0===a?0:a<0?-1:1)|(63&s)<<2,s>>6);var l=o.vertexLength++;this.e1>=0&&this.e2>=0&&(this.indexArray.emplaceBack(this.e1,this.e2,l),o.primitiveLength++),i?this.e2=l:this.e1=l},Cs.prototype.updateScaledDistance=function(){this.scaledDistance=this.totalDistance>0?(this.clipStart+(this.clipEnd-this.clipStart)*this.distance/this.totalDistance)*(Es-1):this.distance},Cs.prototype.updateDistance=function(t,e){this.distance+=t.dist(e),this.updateScaledDistance()},Dn(\"LineBucket\",Cs,{omit:[\"layers\",\"patternFeatures\"]});var Ls=new yi({\"line-cap\":new pi(At.layout_line[\"line-cap\"]),\"line-join\":new di(At.layout_line[\"line-join\"]),\"line-miter-limit\":new pi(At.layout_line[\"line-miter-limit\"]),\"line-round-limit\":new pi(At.layout_line[\"line-round-limit\"]),\"line-sort-key\":new di(At.layout_line[\"line-sort-key\"])}),Is={paint:new yi({\"line-opacity\":new di(At.paint_line[\"line-opacity\"]),\"line-color\":new di(At.paint_line[\"line-color\"]),\"line-translate\":new pi(At.paint_line[\"line-translate\"]),\"line-translate-anchor\":new pi(At.paint_line[\"line-translate-anchor\"]),\"line-width\":new di(At.paint_line[\"line-width\"]),\"line-gap-width\":new di(At.paint_line[\"line-gap-width\"]),\"line-offset\":new di(At.paint_line[\"line-offset\"]),\"line-blur\":new di(At.paint_line[\"line-blur\"]),\"line-dasharray\":new mi(At.paint_line[\"line-dasharray\"]),\"line-pattern\":new gi(At.paint_line[\"line-pattern\"]),\"line-gradient\":new vi(At.paint_line[\"line-gradient\"])}),layout:Ls},Ps=new(function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.possiblyEvaluate=function(e,r){return r=new ii(Math.floor(r.zoom),{now:r.now,fadeDuration:r.fadeDuration,zoomHistory:r.zoomHistory,transition:r.transition}),t.prototype.possiblyEvaluate.call(this,e,r)},e.prototype.evaluate=function(e,r,n,i){return r=u({},r,{zoom:Math.floor(r.zoom)}),t.prototype.evaluate.call(this,e,r,n,i)},e}(di))(Is.paint.properties[\"line-width\"].specification);Ps.useIntegerZoom=!0;var zs=function(t){function e(e){t.call(this,e,Is)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._handleSpecialPaintPropertyUpdate=function(t){\"line-gradient\"===t&&this._updateGradient()},e.prototype._updateGradient=function(){this.gradient=mo(this._transitionablePaint._values[\"line-gradient\"].value.expression,\"lineProgress\"),this.gradientTexture=null},e.prototype.recalculate=function(e,r){t.prototype.recalculate.call(this,e,r),this.paint._values[\"line-floorwidth\"]=Ps.possiblyEvaluate(this._transitioningPaint._values[\"line-width\"].value,e)},e.prototype.createBucket=function(t){return new Cs(t)},e.prototype.queryRadius=function(t){var e=t,r=Os(Za(\"line-width\",this,e),Za(\"line-gap-width\",this,e)),n=Za(\"line-offset\",this,e);return r/2+Math.abs(n)+Ja(this.paint.get(\"line-translate\"))},e.prototype.queryIntersectsFeature=function(t,e,r,n,a,o,s){var l=Ka(t,this.paint.get(\"line-translate\"),this.paint.get(\"line-translate-anchor\"),o.angle,s),c=s/2*Os(this.paint.get(\"line-width\").evaluate(e,r),this.paint.get(\"line-gap-width\").evaluate(e,r)),u=this.paint.get(\"line-offset\").evaluate(e,r);return u&&(n=function(t,e){for(var r=[],n=new i(0,0),a=0;a<t.length;a++){for(var o=t[a],s=[],l=0;l<o.length;l++){var c=o[l],u=o[l+1],f=0===l?n:c.sub(o[l-1])._unit()._perp(),h=l===o.length-1?n:u.sub(c)._unit()._perp(),p=f._add(h)._unit();p._mult(1/(p.x*h.x+p.y*h.y)),s.push(p._mult(e)._add(c))}r.push(s)}return r}(n,u*s)),function(t,e,r){for(var n=0;n<e.length;n++){var i=e[n];if(t.length>=3)for(var a=0;a<i.length;a++)if(Wa(t,i[a]))return!0;if(Ua(t,i,r))return!0}return!1}(l,n,c)},e.prototype.isTileClipped=function(){return!0},e}(xi);function Os(t,e){return e>0?e+2*t:t}var Ds=Ti([{name:\"a_pos_offset\",components:4,type:\"Int16\"},{name:\"a_data\",components:4,type:\"Uint16\"},{name:\"a_pixeloffset\",components:4,type:\"Int16\"}],4),Rs=Ti([{name:\"a_projected_pos\",components:3,type:\"Float32\"}],4),Fs=(Ti([{name:\"a_fade_opacity\",components:1,type:\"Uint32\"}],4),Ti([{name:\"a_placed\",components:2,type:\"Uint8\"},{name:\"a_shift\",components:2,type:\"Float32\"}])),Bs=(Ti([{type:\"Int16\",name:\"anchorPointX\"},{type:\"Int16\",name:\"anchorPointY\"},{type:\"Int16\",name:\"x1\"},{type:\"Int16\",name:\"y1\"},{type:\"Int16\",name:\"x2\"},{type:\"Int16\",name:\"y2\"},{type:\"Uint32\",name:\"featureIndex\"},{type:\"Uint16\",name:\"sourceLayerIndex\"},{type:\"Uint16\",name:\"bucketIndex\"}]),Ti([{name:\"a_pos\",components:2,type:\"Int16\"},{name:\"a_anchor_pos\",components:2,type:\"Int16\"},{name:\"a_extrude\",components:2,type:\"Int16\"}],4)),Ns=Ti([{name:\"a_pos\",components:2,type:\"Float32\"},{name:\"a_radius\",components:1,type:\"Float32\"},{name:\"a_flags\",components:2,type:\"Int16\"}],4);function js(t,e,r){return t.sections.forEach((function(t){t.text=function(t,e,r){var n=e.layout.get(\"text-transform\").evaluate(r,{});return\"uppercase\"===n?t=t.toLocaleUpperCase():\"lowercase\"===n&&(t=t.toLocaleLowerCase()),ni.applyArabicShaping&&(t=ni.applyArabicShaping(t)),t}(t.text,e,r)})),t}Ti([{name:\"triangle\",components:3,type:\"Uint16\"}]),Ti([{type:\"Int16\",name:\"anchorX\"},{type:\"Int16\",name:\"anchorY\"},{type:\"Uint16\",name:\"glyphStartIndex\"},{type:\"Uint16\",name:\"numGlyphs\"},{type:\"Uint32\",name:\"vertexStartIndex\"},{type:\"Uint32\",name:\"lineStartIndex\"},{type:\"Uint32\",name:\"lineLength\"},{type:\"Uint16\",name:\"segment\"},{type:\"Uint16\",name:\"lowerSize\"},{type:\"Uint16\",name:\"upperSize\"},{type:\"Float32\",name:\"lineOffsetX\"},{type:\"Float32\",name:\"lineOffsetY\"},{type:\"Uint8\",name:\"writingMode\"},{type:\"Uint8\",name:\"placedOrientation\"},{type:\"Uint8\",name:\"hidden\"},{type:\"Uint32\",name:\"crossTileID\"},{type:\"Int16\",name:\"associatedIconIndex\"}]),Ti([{type:\"Int16\",name:\"anchorX\"},{type:\"Int16\",name:\"anchorY\"},{type:\"Int16\",name:\"rightJustifiedTextSymbolIndex\"},{type:\"Int16\",name:\"centerJustifiedTextSymbolIndex\"},{type:\"Int16\",name:\"leftJustifiedTextSymbolIndex\"},{type:\"Int16\",name:\"verticalPlacedTextSymbolIndex\"},{type:\"Int16\",name:\"placedIconSymbolIndex\"},{type:\"Int16\",name:\"verticalPlacedIconSymbolIndex\"},{type:\"Uint16\",name:\"key\"},{type:\"Uint16\",name:\"textBoxStartIndex\"},{type:\"Uint16\",name:\"textBoxEndIndex\"},{type:\"Uint16\",name:\"verticalTextBoxStartIndex\"},{type:\"Uint16\",name:\"verticalTextBoxEndIndex\"},{type:\"Uint16\",name:\"iconBoxStartIndex\"},{type:\"Uint16\",name:\"iconBoxEndIndex\"},{type:\"Uint16\",name:\"verticalIconBoxStartIndex\"},{type:\"Uint16\",name:\"verticalIconBoxEndIndex\"},{type:\"Uint16\",name:\"featureIndex\"},{type:\"Uint16\",name:\"numHorizontalGlyphVertices\"},{type:\"Uint16\",name:\"numVerticalGlyphVertices\"},{type:\"Uint16\",name:\"numIconVertices\"},{type:\"Uint16\",name:\"numVerticalIconVertices\"},{type:\"Uint16\",name:\"useRuntimeCollisionCircles\"},{type:\"Uint32\",name:\"crossTileID\"},{type:\"Float32\",name:\"textBoxScale\"},{type:\"Float32\",components:2,name:\"textOffset\"},{type:\"Float32\",name:\"collisionCircleDiameter\"}]),Ti([{type:\"Float32\",name:\"offsetX\"}]),Ti([{type:\"Int16\",name:\"x\"},{type:\"Int16\",name:\"y\"},{type:\"Int16\",name:\"tileUnitDistanceFromAnchor\"}]);var Us={\"!\":\"\\ufe15\",\"#\":\"\\uff03\",$:\"\\uff04\",\"%\":\"\\uff05\",\"&\":\"\\uff06\",\"(\":\"\\ufe35\",\")\":\"\\ufe36\",\"*\":\"\\uff0a\",\"+\":\"\\uff0b\",\",\":\"\\ufe10\",\"-\":\"\\ufe32\",\".\":\"\\u30fb\",\"/\":\"\\uff0f\",\":\":\"\\ufe13\",\";\":\"\\ufe14\",\"<\":\"\\ufe3f\",\"=\":\"\\uff1d\",\">\":\"\\ufe40\",\"?\":\"\\ufe16\",\"@\":\"\\uff20\",\"[\":\"\\ufe47\",\"\\\\\":\"\\uff3c\",\"]\":\"\\ufe48\",\"^\":\"\\uff3e\",_:\"\\ufe33\",\"`\":\"\\uff40\",\"{\":\"\\ufe37\",\"|\":\"\\u2015\",\"}\":\"\\ufe38\",\"~\":\"\\uff5e\",\"\\xa2\":\"\\uffe0\",\"\\xa3\":\"\\uffe1\",\"\\xa5\":\"\\uffe5\",\"\\xa6\":\"\\uffe4\",\"\\xac\":\"\\uffe2\",\"\\xaf\":\"\\uffe3\",\"\\u2013\":\"\\ufe32\",\"\\u2014\":\"\\ufe31\",\"\\u2018\":\"\\ufe43\",\"\\u2019\":\"\\ufe44\",\"\\u201c\":\"\\ufe41\",\"\\u201d\":\"\\ufe42\",\"\\u2026\":\"\\ufe19\",\"\\u2027\":\"\\u30fb\",\"\\u20a9\":\"\\uffe6\",\"\\u3001\":\"\\ufe11\",\"\\u3002\":\"\\ufe12\",\"\\u3008\":\"\\ufe3f\",\"\\u3009\":\"\\ufe40\",\"\\u300a\":\"\\ufe3d\",\"\\u300b\":\"\\ufe3e\",\"\\u300c\":\"\\ufe41\",\"\\u300d\":\"\\ufe42\",\"\\u300e\":\"\\ufe43\",\"\\u300f\":\"\\ufe44\",\"\\u3010\":\"\\ufe3b\",\"\\u3011\":\"\\ufe3c\",\"\\u3014\":\"\\ufe39\",\"\\u3015\":\"\\ufe3a\",\"\\u3016\":\"\\ufe17\",\"\\u3017\":\"\\ufe18\",\"\\uff01\":\"\\ufe15\",\"\\uff08\":\"\\ufe35\",\"\\uff09\":\"\\ufe36\",\"\\uff0c\":\"\\ufe10\",\"\\uff0d\":\"\\ufe32\",\"\\uff0e\":\"\\u30fb\",\"\\uff1a\":\"\\ufe13\",\"\\uff1b\":\"\\ufe14\",\"\\uff1c\":\"\\ufe3f\",\"\\uff1e\":\"\\ufe40\",\"\\uff1f\":\"\\ufe16\",\"\\uff3b\":\"\\ufe47\",\"\\uff3d\":\"\\ufe48\",\"\\uff3f\":\"\\ufe33\",\"\\uff5b\":\"\\ufe37\",\"\\uff5c\":\"\\u2015\",\"\\uff5d\":\"\\ufe38\",\"\\uff5f\":\"\\ufe35\",\"\\uff60\":\"\\ufe36\",\"\\uff61\":\"\\ufe12\",\"\\uff62\":\"\\ufe41\",\"\\uff63\":\"\\ufe42\"},Vs=function(t,e,r,n,i){var a,o,s=8*i-n-1,l=(1<<s)-1,c=l>>1,u=-7,f=r?i-1:0,h=r?-1:1,p=t[e+f];for(f+=h,a=p&(1<<-u)-1,p>>=-u,u+=s;u>0;a=256*a+t[e+f],f+=h,u-=8);for(o=a&(1<<-u)-1,a>>=-u,u+=n;u>0;o=256*o+t[e+f],f+=h,u-=8);if(0===a)a=1-c;else{if(a===l)return o?NaN:1/0*(p?-1:1);o+=Math.pow(2,n),a-=c}return(p?-1:1)*o*Math.pow(2,a-n)},qs=function(t,e,r,n,i,a){var o,s,l,c=8*a-i-1,u=(1<<c)-1,f=u>>1,h=23===i?Math.pow(2,-24)-Math.pow(2,-77):0,p=n?0:a-1,d=n?1:-1,g=e<0||0===e&&1/e<0?1:0;for(e=Math.abs(e),isNaN(e)||e===1/0?(s=isNaN(e)?1:0,o=u):(o=Math.floor(Math.log(e)/Math.LN2),e*(l=Math.pow(2,-o))<1&&(o--,l*=2),(e+=o+f>=1?h/l:h*Math.pow(2,1-f))*l>=2&&(o++,l/=2),o+f>=u?(s=0,o=u):o+f>=1?(s=(e*l-1)*Math.pow(2,i),o+=f):(s=e*Math.pow(2,f-1)*Math.pow(2,i),o=0));i>=8;t[r+p]=255&s,p+=d,s/=256,i-=8);for(o=o<<i|s,c+=i;c>0;t[r+p]=255&o,p+=d,o/=256,c-=8);t[r+p-d]|=128*g},Hs=Gs;function Gs(t){this.buf=ArrayBuffer.isView&&ArrayBuffer.isView(t)?t:new Uint8Array(t||0),this.pos=0,this.type=0,this.length=this.buf.length}Gs.Varint=0,Gs.Fixed64=1,Gs.Bytes=2,Gs.Fixed32=5;var Ys=\"undefined\"==typeof TextDecoder?null:new TextDecoder(\"utf8\");function Ws(t){return t.type===Gs.Bytes?t.readVarint()+t.pos:t.pos+1}function Xs(t,e,r){return r?4294967296*e+(t>>>0):4294967296*(e>>>0)+(t>>>0)}function Zs(t,e,r){var n=e<=16383?1:e<=2097151?2:e<=268435455?3:Math.floor(Math.log(e)/(7*Math.LN2));r.realloc(n);for(var i=r.pos-1;i>=t;i--)r.buf[i+n]=r.buf[i]}function Js(t,e){for(var r=0;r<t.length;r++)e.writeVarint(t[r])}function Ks(t,e){for(var r=0;r<t.length;r++)e.writeSVarint(t[r])}function Qs(t,e){for(var r=0;r<t.length;r++)e.writeFloat(t[r])}function $s(t,e){for(var r=0;r<t.length;r++)e.writeDouble(t[r])}function tl(t,e){for(var r=0;r<t.length;r++)e.writeBoolean(t[r])}function el(t,e){for(var r=0;r<t.length;r++)e.writeFixed32(t[r])}function rl(t,e){for(var r=0;r<t.length;r++)e.writeSFixed32(t[r])}function nl(t,e){for(var r=0;r<t.length;r++)e.writeFixed64(t[r])}function il(t,e){for(var r=0;r<t.length;r++)e.writeSFixed64(t[r])}function al(t,e){return(t[e]|t[e+1]<<8|t[e+2]<<16)+16777216*t[e+3]}function ol(t,e,r){t[r]=e,t[r+1]=e>>>8,t[r+2]=e>>>16,t[r+3]=e>>>24}function sl(t,e){return(t[e]|t[e+1]<<8|t[e+2]<<16)+(t[e+3]<<24)}function ll(t,e,r){1===t&&r.readMessage(cl,e)}function cl(t,e,r){if(3===t){var n=r.readMessage(ul,{}),i=n.width,a=n.height,o=n.left,s=n.top,l=n.advance;e.push({id:n.id,bitmap:new ho({width:i+6,height:a+6},n.bitmap),metrics:{width:i,height:a,left:o,top:s,advance:l}})}}function ul(t,e,r){1===t?e.id=r.readVarint():2===t?e.bitmap=r.readBytes():3===t?e.width=r.readVarint():4===t?e.height=r.readVarint():5===t?e.left=r.readSVarint():6===t?e.top=r.readSVarint():7===t&&(e.advance=r.readVarint())}function fl(t){for(var e=0,r=0,n=0,i=t;n<i.length;n+=1){var a=i[n];e+=a.w*a.h,r=Math.max(r,a.w)}t.sort((function(t,e){return e.h-t.h}));for(var o=[{x:0,y:0,w:Math.max(Math.ceil(Math.sqrt(e/.95)),r),h:1/0}],s=0,l=0,c=0,u=t;c<u.length;c+=1)for(var f=u[c],h=o.length-1;h>=0;h--){var p=o[h];if(!(f.w>p.w||f.h>p.h)){if(f.x=p.x,f.y=p.y,l=Math.max(l,f.y+f.h),s=Math.max(s,f.x+f.w),f.w===p.w&&f.h===p.h){var d=o.pop();h<o.length&&(o[h]=d)}else f.h===p.h?(p.x+=f.w,p.w-=f.w):f.w===p.w?(p.y+=f.h,p.h-=f.h):(o.push({x:p.x+f.w,y:p.y,w:p.w-f.w,h:f.h}),p.y+=f.h,p.h-=f.h);break}}return{w:s,h:l,fill:e/(s*l)||0}}Gs.prototype={destroy:function(){this.buf=null},readFields:function(t,e,r){for(r=r||this.length;this.pos<r;){var n=this.readVarint(),i=n>>3,a=this.pos;this.type=7&n,t(i,e,this),this.pos===a&&this.skip(n)}return e},readMessage:function(t,e){return this.readFields(t,e,this.readVarint()+this.pos)},readFixed32:function(){var t=al(this.buf,this.pos);return this.pos+=4,t},readSFixed32:function(){var t=sl(this.buf,this.pos);return this.pos+=4,t},readFixed64:function(){var t=al(this.buf,this.pos)+4294967296*al(this.buf,this.pos+4);return this.pos+=8,t},readSFixed64:function(){var t=al(this.buf,this.pos)+4294967296*sl(this.buf,this.pos+4);return this.pos+=8,t},readFloat:function(){var t=Vs(this.buf,this.pos,!0,23,4);return this.pos+=4,t},readDouble:function(){var t=Vs(this.buf,this.pos,!0,52,8);return this.pos+=8,t},readVarint:function(t){var e,r,n=this.buf;return e=127&(r=n[this.pos++]),r<128?e:(e|=(127&(r=n[this.pos++]))<<7,r<128?e:(e|=(127&(r=n[this.pos++]))<<14,r<128?e:(e|=(127&(r=n[this.pos++]))<<21,r<128?e:function(t,e,r){var n,i,a=r.buf;if(n=(112&(i=a[r.pos++]))>>4,i<128)return Xs(t,n,e);if(n|=(127&(i=a[r.pos++]))<<3,i<128)return Xs(t,n,e);if(n|=(127&(i=a[r.pos++]))<<10,i<128)return Xs(t,n,e);if(n|=(127&(i=a[r.pos++]))<<17,i<128)return Xs(t,n,e);if(n|=(127&(i=a[r.pos++]))<<24,i<128)return Xs(t,n,e);if(n|=(1&(i=a[r.pos++]))<<31,i<128)return Xs(t,n,e);throw new Error(\"Expected varint not more than 10 bytes\")}(e|=(15&(r=n[this.pos]))<<28,t,this))))},readVarint64:function(){return this.readVarint(!0)},readSVarint:function(){var t=this.readVarint();return t%2==1?(t+1)/-2:t/2},readBoolean:function(){return Boolean(this.readVarint())},readString:function(){var t=this.readVarint()+this.pos,e=this.pos;return this.pos=t,t-e>=12&&Ys?function(t,e,r){return Ys.decode(t.subarray(e,r))}(this.buf,e,t):function(t,e,r){for(var n=\"\",i=e;i<r;){var a,o,s,l=t[i],c=null,u=l>239?4:l>223?3:l>191?2:1;if(i+u>r)break;1===u?l<128&&(c=l):2===u?128==(192&(a=t[i+1]))&&(c=(31&l)<<6|63&a)<=127&&(c=null):3===u?(o=t[i+2],128==(192&(a=t[i+1]))&&128==(192&o)&&((c=(15&l)<<12|(63&a)<<6|63&o)<=2047||c>=55296&&c<=57343)&&(c=null)):4===u&&(o=t[i+2],s=t[i+3],128==(192&(a=t[i+1]))&&128==(192&o)&&128==(192&s)&&((c=(15&l)<<18|(63&a)<<12|(63&o)<<6|63&s)<=65535||c>=1114112)&&(c=null)),null===c?(c=65533,u=1):c>65535&&(c-=65536,n+=String.fromCharCode(c>>>10&1023|55296),c=56320|1023&c),n+=String.fromCharCode(c),i+=u}return n}(this.buf,e,t)},readBytes:function(){var t=this.readVarint()+this.pos,e=this.buf.subarray(this.pos,t);return this.pos=t,e},readPackedVarint:function(t,e){if(this.type!==Gs.Bytes)return t.push(this.readVarint(e));var r=Ws(this);for(t=t||[];this.pos<r;)t.push(this.readVarint(e));return t},readPackedSVarint:function(t){if(this.type!==Gs.Bytes)return t.push(this.readSVarint());var e=Ws(this);for(t=t||[];this.pos<e;)t.push(this.readSVarint());return t},readPackedBoolean:function(t){if(this.type!==Gs.Bytes)return t.push(this.readBoolean());var e=Ws(this);for(t=t||[];this.pos<e;)t.push(this.readBoolean());return t},readPackedFloat:function(t){if(this.type!==Gs.Bytes)return t.push(this.readFloat());var e=Ws(this);for(t=t||[];this.pos<e;)t.push(this.readFloat());return t},readPackedDouble:function(t){if(this.type!==Gs.Bytes)return t.push(this.readDouble());var e=Ws(this);for(t=t||[];this.pos<e;)t.push(this.readDouble());return t},readPackedFixed32:function(t){if(this.type!==Gs.Bytes)return t.push(this.readFixed32());var e=Ws(this);for(t=t||[];this.pos<e;)t.push(this.readFixed32());return t},readPackedSFixed32:function(t){if(this.type!==Gs.Bytes)return t.push(this.readSFixed32());var e=Ws(this);for(t=t||[];this.pos<e;)t.push(this.readSFixed32());return t},readPackedFixed64:function(t){if(this.type!==Gs.Bytes)return t.push(this.readFixed64());var e=Ws(this);for(t=t||[];this.pos<e;)t.push(this.readFixed64());return t},readPackedSFixed64:function(t){if(this.type!==Gs.Bytes)return t.push(this.readSFixed64());var e=Ws(this);for(t=t||[];this.pos<e;)t.push(this.readSFixed64());return t},skip:function(t){var e=7&t;if(e===Gs.Varint)for(;this.buf[this.pos++]>127;);else if(e===Gs.Bytes)this.pos=this.readVarint()+this.pos;else if(e===Gs.Fixed32)this.pos+=4;else{if(e!==Gs.Fixed64)throw new Error(\"Unimplemented type: \"+e);this.pos+=8}},writeTag:function(t,e){this.writeVarint(t<<3|e)},realloc:function(t){for(var e=this.length||16;e<this.pos+t;)e*=2;if(e!==this.length){var r=new Uint8Array(e);r.set(this.buf),this.buf=r,this.length=e}},finish:function(){return this.length=this.pos,this.pos=0,this.buf.subarray(0,this.length)},writeFixed32:function(t){this.realloc(4),ol(this.buf,t,this.pos),this.pos+=4},writeSFixed32:function(t){this.realloc(4),ol(this.buf,t,this.pos),this.pos+=4},writeFixed64:function(t){this.realloc(8),ol(this.buf,-1&t,this.pos),ol(this.buf,Math.floor(t*(1/4294967296)),this.pos+4),this.pos+=8},writeSFixed64:function(t){this.realloc(8),ol(this.buf,-1&t,this.pos),ol(this.buf,Math.floor(t*(1/4294967296)),this.pos+4),this.pos+=8},writeVarint:function(t){(t=+t||0)>268435455||t<0?function(t,e){var r,n;if(t>=0?(r=t%4294967296|0,n=t/4294967296|0):(n=~(-t/4294967296),4294967295^(r=~(-t%4294967296))?r=r+1|0:(r=0,n=n+1|0)),t>=0x10000000000000000||t<-0x10000000000000000)throw new Error(\"Given varint doesn't fit into 10 bytes\");e.realloc(10),function(t,e,r){r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,t>>>=7,r.buf[r.pos++]=127&t|128,r.buf[r.pos]=127&(t>>>=7)}(r,0,e),function(t,e){var r=(7&t)<<4;e.buf[e.pos++]|=r|((t>>>=3)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t|((t>>>=7)?128:0),t&&(e.buf[e.pos++]=127&t)))))}(n,e)}(t,this):(this.realloc(4),this.buf[this.pos++]=127&t|(t>127?128:0),t<=127||(this.buf[this.pos++]=127&(t>>>=7)|(t>127?128:0),t<=127||(this.buf[this.pos++]=127&(t>>>=7)|(t>127?128:0),t<=127||(this.buf[this.pos++]=t>>>7&127))))},writeSVarint:function(t){this.writeVarint(t<0?2*-t-1:2*t)},writeBoolean:function(t){this.writeVarint(Boolean(t))},writeString:function(t){t=String(t),this.realloc(4*t.length),this.pos++;var e=this.pos;this.pos=function(t,e,r){for(var n,i,a=0;a<e.length;a++){if((n=e.charCodeAt(a))>55295&&n<57344){if(!i){n>56319||a+1===e.length?(t[r++]=239,t[r++]=191,t[r++]=189):i=n;continue}if(n<56320){t[r++]=239,t[r++]=191,t[r++]=189,i=n;continue}n=i-55296<<10|n-56320|65536,i=null}else i&&(t[r++]=239,t[r++]=191,t[r++]=189,i=null);n<128?t[r++]=n:(n<2048?t[r++]=n>>6|192:(n<65536?t[r++]=n>>12|224:(t[r++]=n>>18|240,t[r++]=n>>12&63|128),t[r++]=n>>6&63|128),t[r++]=63&n|128)}return r}(this.buf,t,this.pos);var r=this.pos-e;r>=128&&Zs(e,r,this),this.pos=e-1,this.writeVarint(r),this.pos+=r},writeFloat:function(t){this.realloc(4),qs(this.buf,t,this.pos,!0,23,4),this.pos+=4},writeDouble:function(t){this.realloc(8),qs(this.buf,t,this.pos,!0,52,8),this.pos+=8},writeBytes:function(t){var e=t.length;this.writeVarint(e),this.realloc(e);for(var r=0;r<e;r++)this.buf[this.pos++]=t[r]},writeRawMessage:function(t,e){this.pos++;var r=this.pos;t(e,this);var n=this.pos-r;n>=128&&Zs(r,n,this),this.pos=r-1,this.writeVarint(n),this.pos+=n},writeMessage:function(t,e,r){this.writeTag(t,Gs.Bytes),this.writeRawMessage(e,r)},writePackedVarint:function(t,e){e.length&&this.writeMessage(t,Js,e)},writePackedSVarint:function(t,e){e.length&&this.writeMessage(t,Ks,e)},writePackedBoolean:function(t,e){e.length&&this.writeMessage(t,tl,e)},writePackedFloat:function(t,e){e.length&&this.writeMessage(t,Qs,e)},writePackedDouble:function(t,e){e.length&&this.writeMessage(t,$s,e)},writePackedFixed32:function(t,e){e.length&&this.writeMessage(t,el,e)},writePackedSFixed32:function(t,e){e.length&&this.writeMessage(t,rl,e)},writePackedFixed64:function(t,e){e.length&&this.writeMessage(t,nl,e)},writePackedSFixed64:function(t,e){e.length&&this.writeMessage(t,il,e)},writeBytesField:function(t,e){this.writeTag(t,Gs.Bytes),this.writeBytes(e)},writeFixed32Field:function(t,e){this.writeTag(t,Gs.Fixed32),this.writeFixed32(e)},writeSFixed32Field:function(t,e){this.writeTag(t,Gs.Fixed32),this.writeSFixed32(e)},writeFixed64Field:function(t,e){this.writeTag(t,Gs.Fixed64),this.writeFixed64(e)},writeSFixed64Field:function(t,e){this.writeTag(t,Gs.Fixed64),this.writeSFixed64(e)},writeVarintField:function(t,e){this.writeTag(t,Gs.Varint),this.writeVarint(e)},writeSVarintField:function(t,e){this.writeTag(t,Gs.Varint),this.writeSVarint(e)},writeStringField:function(t,e){this.writeTag(t,Gs.Bytes),this.writeString(e)},writeFloatField:function(t,e){this.writeTag(t,Gs.Fixed32),this.writeFloat(e)},writeDoubleField:function(t,e){this.writeTag(t,Gs.Fixed64),this.writeDouble(e)},writeBooleanField:function(t,e){this.writeVarintField(t,Boolean(e))}};var hl=function(t,e){var r=e.pixelRatio,n=e.version,i=e.stretchX,a=e.stretchY,o=e.content;this.paddedRect=t,this.pixelRatio=r,this.stretchX=i,this.stretchY=a,this.content=o,this.version=n},pl={tl:{configurable:!0},br:{configurable:!0},tlbr:{configurable:!0},displaySize:{configurable:!0}};pl.tl.get=function(){return[this.paddedRect.x+1,this.paddedRect.y+1]},pl.br.get=function(){return[this.paddedRect.x+this.paddedRect.w-1,this.paddedRect.y+this.paddedRect.h-1]},pl.tlbr.get=function(){return this.tl.concat(this.br)},pl.displaySize.get=function(){return[(this.paddedRect.w-2)/this.pixelRatio,(this.paddedRect.h-2)/this.pixelRatio]},Object.defineProperties(hl.prototype,pl);var dl=function(t,e){var r={},n={};this.haveRenderCallbacks=[];var i=[];this.addImages(t,r,i),this.addImages(e,n,i);var a=fl(i),o=new po({width:a.w||1,height:a.h||1});for(var s in t){var l=t[s],c=r[s].paddedRect;po.copy(l.data,o,{x:0,y:0},{x:c.x+1,y:c.y+1},l.data)}for(var u in e){var f=e[u],h=n[u].paddedRect,p=h.x+1,d=h.y+1,g=f.data.width,m=f.data.height;po.copy(f.data,o,{x:0,y:0},{x:p,y:d},f.data),po.copy(f.data,o,{x:0,y:m-1},{x:p,y:d-1},{width:g,height:1}),po.copy(f.data,o,{x:0,y:0},{x:p,y:d+m},{width:g,height:1}),po.copy(f.data,o,{x:g-1,y:0},{x:p-1,y:d},{width:1,height:m}),po.copy(f.data,o,{x:0,y:0},{x:p+g,y:d},{width:1,height:m})}this.image=o,this.iconPositions=r,this.patternPositions=n};dl.prototype.addImages=function(t,e,r){for(var n in t){var i=t[n],a={x:0,y:0,w:i.data.width+2,h:i.data.height+2};r.push(a),e[n]=new hl(a,i),i.hasRenderCallback&&this.haveRenderCallbacks.push(n)}},dl.prototype.patchUpdatedImages=function(t,e){for(var r in t.dispatchRenderCallbacks(this.haveRenderCallbacks),t.updatedImages)this.patchUpdatedImage(this.iconPositions[r],t.getImage(r),e),this.patchUpdatedImage(this.patternPositions[r],t.getImage(r),e)},dl.prototype.patchUpdatedImage=function(t,e,r){if(t&&e&&t.version!==e.version){t.version=e.version;var n=t.tl;r.update(e.data,void 0,{x:n[0],y:n[1]})}},Dn(\"ImagePosition\",hl),Dn(\"ImageAtlas\",dl);var gl={horizontal:1,vertical:2,horizontalOnly:3},ml=function(){this.scale=1,this.fontStack=\"\",this.imageName=null};ml.forText=function(t,e){var r=new ml;return r.scale=t||1,r.fontStack=e,r},ml.forImage=function(t){var e=new ml;return e.imageName=t,e};var vl=function(){this.text=\"\",this.sectionIndex=[],this.sections=[],this.imageSectionID=null};function yl(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,g){var m,v=vl.fromFeature(t,i);f===gl.vertical&&v.verticalizePunctuation();var y=ni.processBidirectionalText,x=ni.processStyledBidirectionalText;if(y&&1===v.sections.length){m=[];for(var b=0,_=y(v.toString(),Ml(v,c,a,e,n,p,d));b<_.length;b+=1){var w=_[b],T=new vl;T.text=w,T.sections=v.sections;for(var k=0;k<w.length;k++)T.sectionIndex.push(0);m.push(T)}}else if(x){m=[];for(var M=0,A=x(v.text,v.sectionIndex,Ml(v,c,a,e,n,p,d));M<A.length;M+=1){var S=A[M],E=new vl;E.text=S[0],E.sectionIndex=S[1],E.sections=v.sections,m.push(E)}}else m=function(t,e){for(var r=[],n=t.text,i=0,a=0,o=e;a<o.length;a+=1){var s=o[a];r.push(t.substring(i,s)),i=s}return i<n.length&&r.push(t.substring(i,n.length)),r}(v,Ml(v,c,a,e,n,p,d));var C=[],L={positionedLines:C,text:v.toString(),top:u[1],bottom:u[1],left:u[0],right:u[0],writingMode:f,iconsInText:!1,verticalizable:!1};return function(t,e,r,n,i,a,o,s,l,c,u,f){for(var h=0,p=-17,d=0,g=0,m=\"right\"===s?1:\"left\"===s?0:.5,v=0,y=0,x=i;y<x.length;y+=1){var b=x[y];b.trim();var _=b.getMaxScale(),w=24*(_-1),T={positionedGlyphs:[],lineOffset:0};t.positionedLines[v]=T;var k=T.positionedGlyphs,M=0;if(b.length()){for(var A=0;A<b.length();A++){var S=b.getSection(A),E=b.getSectionIndex(A),C=b.getCharCode(A),L=0,I=null,P=null,z=null,O=24,D=!(l===gl.horizontal||!u&&!Hn(C)||u&&(xl[C]||(H=C,Vn.Arabic(H)||Vn[\"Arabic Supplement\"](H)||Vn[\"Arabic Extended-A\"](H)||Vn[\"Arabic Presentation Forms-A\"](H)||Vn[\"Arabic Presentation Forms-B\"](H))));if(S.imageName){var R=n[S.imageName];if(!R)continue;z=S.imageName,t.iconsInText=t.iconsInText||!0,P=R.paddedRect;var F=R.displaySize;S.scale=24*S.scale/f,L=w+(24-F[1]*S.scale),O=(I={width:F[0],height:F[1],left:1,top:-3,advance:D?F[1]:F[0]}).advance;var B=D?F[0]*S.scale-24*_:F[1]*S.scale-24*_;B>0&&B>M&&(M=B)}else{var N=r[S.fontStack],j=N&&N[C];if(j&&j.rect)P=j.rect,I=j.metrics;else{var U=e[S.fontStack],V=U&&U[C];if(!V)continue;I=V.metrics}L=24*(_-S.scale)}D?(t.verticalizable=!0,k.push({glyph:C,imageName:z,x:h,y:p+L,vertical:D,scale:S.scale,fontStack:S.fontStack,sectionIndex:E,metrics:I,rect:P}),h+=O*S.scale+c):(k.push({glyph:C,imageName:z,x:h,y:p+L,vertical:D,scale:S.scale,fontStack:S.fontStack,sectionIndex:E,metrics:I,rect:P}),h+=I.advance*S.scale+c)}0!==k.length&&(d=Math.max(h-c,d),Sl(k,0,k.length-1,m,M)),h=0;var q=a*_+M;T.lineOffset=Math.max(M,w),p+=q,g=Math.max(q,g),++v}else p+=a,++v}var H,G=p- -17,Y=Al(o),W=Y.horizontalAlign,X=Y.verticalAlign;(function(t,e,r,n,i,a,o,s,l){var c,u=(e-r)*i;c=a!==o?-s*n- -17:(-n*l+.5)*o;for(var f=0,h=t;f<h.length;f+=1)for(var p=0,d=h[f].positionedGlyphs;p<d.length;p+=1){var g=d[p];g.x+=u,g.y+=c}})(t.positionedLines,m,W,X,d,g,a,G,i.length),t.top+=-X*G,t.bottom=t.top+G,t.left+=-W*d,t.right=t.left+d}(L,e,r,n,m,o,s,l,f,c,h,g),!function(t){for(var e=0,r=t;e<r.length;e+=1)if(0!==r[e].positionedGlyphs.length)return!1;return!0}(C)&&L}vl.fromFeature=function(t,e){for(var r=new vl,n=0;n<t.sections.length;n++){var i=t.sections[n];i.image?r.addImageSection(i):r.addTextSection(i,e)}return r},vl.prototype.length=function(){return this.text.length},vl.prototype.getSection=function(t){return this.sections[this.sectionIndex[t]]},vl.prototype.getSectionIndex=function(t){return this.sectionIndex[t]},vl.prototype.getCharCode=function(t){return this.text.charCodeAt(t)},vl.prototype.verticalizePunctuation=function(){this.text=function(t){for(var e=\"\",r=0;r<t.length;r++){var n=t.charCodeAt(r+1)||null,i=t.charCodeAt(r-1)||null;e+=n&&Gn(n)&&!Us[t[r+1]]||i&&Gn(i)&&!Us[t[r-1]]||!Us[t[r]]?t[r]:Us[t[r]]}return e}(this.text)},vl.prototype.trim=function(){for(var t=0,e=0;e<this.text.length&&xl[this.text.charCodeAt(e)];e++)t++;for(var r=this.text.length,n=this.text.length-1;n>=0&&n>=t&&xl[this.text.charCodeAt(n)];n--)r--;this.text=this.text.substring(t,r),this.sectionIndex=this.sectionIndex.slice(t,r)},vl.prototype.substring=function(t,e){var r=new vl;return r.text=this.text.substring(t,e),r.sectionIndex=this.sectionIndex.slice(t,e),r.sections=this.sections,r},vl.prototype.toString=function(){return this.text},vl.prototype.getMaxScale=function(){var t=this;return this.sectionIndex.reduce((function(e,r){return Math.max(e,t.sections[r].scale)}),0)},vl.prototype.addTextSection=function(t,e){this.text+=t.text,this.sections.push(ml.forText(t.scale,t.fontStack||e));for(var r=this.sections.length-1,n=0;n<t.text.length;++n)this.sectionIndex.push(r)},vl.prototype.addImageSection=function(t){var e=t.image?t.image.name:\"\";if(0!==e.length){var r=this.getNextImageSectionCharCode();r?(this.text+=String.fromCharCode(r),this.sections.push(ml.forImage(e)),this.sectionIndex.push(this.sections.length-1)):_(\"Reached maximum number of images 6401\")}else _(\"Can't add FormattedSection with an empty image.\")},vl.prototype.getNextImageSectionCharCode=function(){return this.imageSectionID?this.imageSectionID>=63743?null:++this.imageSectionID:(this.imageSectionID=57344,this.imageSectionID)};var xl={9:!0,10:!0,11:!0,12:!0,13:!0,32:!0},bl={};function _l(t,e,r,n,i,a){if(e.imageName){var o=n[e.imageName];return o?o.displaySize[0]*e.scale*24/a+i:0}var s=r[e.fontStack],l=s&&s[t];return l?l.metrics.advance*e.scale+i:0}function wl(t,e,r,n){var i=Math.pow(t-e,2);return n?t<e?i/2:2*i:i+Math.abs(r)*r}function Tl(t,e,r){var n=0;return 10===t&&(n-=1e4),r&&(n+=150),40!==t&&65288!==t||(n+=50),41!==e&&65289!==e||(n+=50),n}function kl(t,e,r,n,i,a){for(var o=null,s=wl(e,r,i,a),l=0,c=n;l<c.length;l+=1){var u=c[l],f=wl(e-u.x,r,i,a)+u.badness;f<=s&&(o=u,s=f)}return{index:t,x:e,priorBreak:o,badness:s}}function Ml(t,e,r,n,i,a,o){if(\"point\"!==a)return[];if(!t)return[];for(var s,l=[],c=function(t,e,r,n,i,a){for(var o=0,s=0;s<t.length();s++){var l=t.getSection(s);o+=_l(t.getCharCode(s),l,n,i,e,a)}return o/Math.max(1,Math.ceil(o/r))}(t,e,r,n,i,o),u=t.text.indexOf(\"\\u200b\")>=0,f=0,h=0;h<t.length();h++){var p=t.getSection(h),d=t.getCharCode(h);if(xl[d]||(f+=_l(d,p,n,i,e,o)),h<t.length()-1){var g=!((s=d)<11904||!(Vn[\"Bopomofo Extended\"](s)||Vn.Bopomofo(s)||Vn[\"CJK Compatibility Forms\"](s)||Vn[\"CJK Compatibility Ideographs\"](s)||Vn[\"CJK Compatibility\"](s)||Vn[\"CJK Radicals Supplement\"](s)||Vn[\"CJK Strokes\"](s)||Vn[\"CJK Symbols and Punctuation\"](s)||Vn[\"CJK Unified Ideographs Extension A\"](s)||Vn[\"CJK Unified Ideographs\"](s)||Vn[\"Enclosed CJK Letters and Months\"](s)||Vn[\"Halfwidth and Fullwidth Forms\"](s)||Vn.Hiragana(s)||Vn[\"Ideographic Description Characters\"](s)||Vn[\"Kangxi Radicals\"](s)||Vn[\"Katakana Phonetic Extensions\"](s)||Vn.Katakana(s)||Vn[\"Vertical Forms\"](s)||Vn[\"Yi Radicals\"](s)||Vn[\"Yi Syllables\"](s)));(bl[d]||g||p.imageName)&&l.push(kl(h+1,f,c,l,Tl(d,t.getCharCode(h+1),g&&u),!1))}}return function t(e){return e?t(e.priorBreak).concat(e.index):[]}(kl(t.length(),f,c,l,0,!0))}function Al(t){var e=.5,r=.5;switch(t){case\"right\":case\"top-right\":case\"bottom-right\":e=1;break;case\"left\":case\"top-left\":case\"bottom-left\":e=0}switch(t){case\"bottom\":case\"bottom-right\":case\"bottom-left\":r=1;break;case\"top\":case\"top-right\":case\"top-left\":r=0}return{horizontalAlign:e,verticalAlign:r}}function Sl(t,e,r,n,i){if(n||i)for(var a=t[r],o=(t[r].x+a.metrics.advance*a.scale)*n,s=e;s<=r;s++)t[s].x-=o,t[s].y+=i}function El(t,e,r,n,i,a){var o,s=t.image;if(s.content){var l=s.content,c=s.pixelRatio||1;o=[l[0]/c,l[1]/c,s.displaySize[0]-l[2]/c,s.displaySize[1]-l[3]/c]}var u,f,h,p,d=e.left*a,g=e.right*a;\"width\"===r||\"both\"===r?(p=i[0]+d-n[3],f=i[0]+g+n[1]):f=(p=i[0]+(d+g-s.displaySize[0])/2)+s.displaySize[0];var m=e.top*a,v=e.bottom*a;return\"height\"===r||\"both\"===r?(u=i[1]+m-n[0],h=i[1]+v+n[2]):h=(u=i[1]+(m+v-s.displaySize[1])/2)+s.displaySize[1],{image:s,top:u,right:f,bottom:h,left:p,collisionPadding:o}}bl[10]=!0,bl[32]=!0,bl[38]=!0,bl[40]=!0,bl[41]=!0,bl[43]=!0,bl[45]=!0,bl[47]=!0,bl[173]=!0,bl[183]=!0,bl[8203]=!0,bl[8208]=!0,bl[8211]=!0,bl[8231]=!0;var Cl=function(t){function e(e,r,n,i){t.call(this,e,r),this.angle=n,void 0!==i&&(this.segment=i)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.clone=function(){return new e(this.x,this.y,this.angle,this.segment)},e}(i);function Ll(t,e){var r=e.expression;if(\"constant\"===r.kind)return{kind:\"constant\",layoutSize:r.evaluate(new ii(t+1))};if(\"source\"===r.kind)return{kind:\"source\"};for(var n=r.zoomStops,i=r.interpolationType,a=0;a<n.length&&n[a]<=t;)a++;for(var o=a=Math.max(0,a-1);o<n.length&&n[o]<t+1;)o++;o=Math.min(n.length-1,o);var s=n[a],l=n[o];return\"composite\"===r.kind?{kind:\"composite\",minZoom:s,maxZoom:l,interpolationType:i}:{kind:\"camera\",minZoom:s,maxZoom:l,minSize:r.evaluate(new ii(s)),maxSize:r.evaluate(new ii(l)),interpolationType:i}}function Il(t,e,r){var n=e.uSize,i=r.lowerSize;return\"source\"===t.kind?i/128:\"composite\"===t.kind?Ue(i/128,r.upperSize/128,e.uSizeT):n}function Pl(t,e){var r=0,n=0;if(\"constant\"===t.kind)n=t.layoutSize;else if(\"source\"!==t.kind){var i=t.interpolationType,a=i?l(rr.interpolationFactor(i,e,t.minZoom,t.maxZoom),0,1):0;\"camera\"===t.kind?n=Ue(t.minSize,t.maxSize,a):r=a}return{uSizeT:r,uSize:n}}Dn(\"Anchor\",Cl);var zl=Object.freeze({__proto__:null,getSizeData:Ll,evaluateSizeForFeature:Il,evaluateSizeForZoom:Pl,SIZE_PACK_FACTOR:128});function Ol(t,e,r,n,i){if(void 0===e.segment)return!0;for(var a=e,o=e.segment+1,s=0;s>-r/2;){if(--o<0)return!1;s-=t[o].dist(a),a=t[o]}s+=t[o].dist(t[o+1]),o++;for(var l=[],c=0;s<r/2;){var u=t[o],f=t[o+1];if(!f)return!1;var h=t[o-1].angleTo(u)-u.angleTo(f);for(h=Math.abs((h+3*Math.PI)%(2*Math.PI)-Math.PI),l.push({distance:s,angleDelta:h}),c+=h;s-l[0].distance>n;)c-=l.shift().angleDelta;if(c>i)return!1;o++,s+=u.dist(f)}return!0}function Dl(t){for(var e=0,r=0;r<t.length-1;r++)e+=t[r].dist(t[r+1]);return e}function Rl(t,e,r){return t?.6*e*r:0}function Fl(t,e){return Math.max(t?t.right-t.left:0,e?e.right-e.left:0)}function Bl(t,e,r,n,i,a){for(var o=Rl(r,i,a),s=Fl(r,n)*a,l=0,c=Dl(t)/2,u=0;u<t.length-1;u++){var f=t[u],h=t[u+1],p=f.dist(h);if(l+p>c){var d=(c-l)/p,g=Ue(f.x,h.x,d),m=Ue(f.y,h.y,d),v=new Cl(g,m,h.angleTo(f),u);return v._round(),!o||Ol(t,v,s,o,e)?v:void 0}l+=p}}function Nl(t,e,r,n,i,a,o,s,l){var c=Rl(n,a,o),u=Fl(n,i),f=u*o,h=0===t[0].x||t[0].x===l||0===t[0].y||t[0].y===l;return e-f<e/4&&(e=f+e/4),function t(e,r,n,i,a,o,s,l,c){for(var u=o/2,f=Dl(e),h=0,p=r-n,d=[],g=0;g<e.length-1;g++){for(var m=e[g],v=e[g+1],y=m.dist(v),x=v.angleTo(m);p+n<h+y;){var b=((p+=n)-h)/y,_=Ue(m.x,v.x,b),w=Ue(m.y,v.y,b);if(_>=0&&_<c&&w>=0&&w<c&&p-u>=0&&p+u<=f){var T=new Cl(_,w,x,g);T._round(),i&&!Ol(e,T,o,i,a)||d.push(T)}}h+=y}return l||d.length||s||(d=t(e,h/2,n,i,a,o,s,!0,c)),d}(t,h?e/2*s%e:(u/2+2*a)*o*s%e,e,c,r,f,h,!1,l)}function jl(t,e,r,n,a){for(var o=[],s=0;s<t.length;s++)for(var l=t[s],c=void 0,u=0;u<l.length-1;u++){var f=l[u],h=l[u+1];f.x<e&&h.x<e||(f.x<e?f=new i(e,f.y+(e-f.x)/(h.x-f.x)*(h.y-f.y))._round():h.x<e&&(h=new i(e,f.y+(e-f.x)/(h.x-f.x)*(h.y-f.y))._round()),f.y<r&&h.y<r||(f.y<r?f=new i(f.x+(r-f.y)/(h.y-f.y)*(h.x-f.x),r)._round():h.y<r&&(h=new i(f.x+(r-f.y)/(h.y-f.y)*(h.x-f.x),r)._round()),f.x>=n&&h.x>=n||(f.x>=n?f=new i(n,f.y+(n-f.x)/(h.x-f.x)*(h.y-f.y))._round():h.x>=n&&(h=new i(n,f.y+(n-f.x)/(h.x-f.x)*(h.y-f.y))._round()),f.y>=a&&h.y>=a||(f.y>=a?f=new i(f.x+(a-f.y)/(h.y-f.y)*(h.x-f.x),a)._round():h.y>=a&&(h=new i(f.x+(a-f.y)/(h.y-f.y)*(h.x-f.x),a)._round()),c&&f.equals(c[c.length-1])||o.push(c=[f]),c.push(h)))))}return o}function Ul(t,e,r,n){var a=[],o=t.image,s=o.pixelRatio,l=o.paddedRect.w-2,c=o.paddedRect.h-2,u=t.right-t.left,f=t.bottom-t.top,h=o.stretchX||[[0,l]],p=o.stretchY||[[0,c]],d=function(t,e){return t+e[1]-e[0]},g=h.reduce(d,0),m=p.reduce(d,0),v=l-g,y=c-m,x=0,b=g,_=0,w=m,T=0,k=v,M=0,A=y;if(o.content&&n){var S=o.content;x=Vl(h,0,S[0]),_=Vl(p,0,S[1]),b=Vl(h,S[0],S[2]),w=Vl(p,S[1],S[3]),T=S[0]-x,M=S[1]-_,k=S[2]-S[0]-b,A=S[3]-S[1]-w}var E=function(n,a,l,c){var h=Hl(n.stretch-x,b,u,t.left),p=Gl(n.fixed-T,k,n.stretch,g),d=Hl(a.stretch-_,w,f,t.top),v=Gl(a.fixed-M,A,a.stretch,m),y=Hl(l.stretch-x,b,u,t.left),S=Gl(l.fixed-T,k,l.stretch,g),E=Hl(c.stretch-_,w,f,t.top),C=Gl(c.fixed-M,A,c.stretch,m),L=new i(h,d),I=new i(y,d),P=new i(y,E),z=new i(h,E),O=new i(p/s,v/s),D=new i(S/s,C/s),R=e*Math.PI/180;if(R){var F=Math.sin(R),B=Math.cos(R),N=[B,-F,F,B];L._matMult(N),I._matMult(N),z._matMult(N),P._matMult(N)}var j=n.stretch+n.fixed,U=a.stretch+a.fixed;return{tl:L,tr:I,bl:z,br:P,tex:{x:o.paddedRect.x+1+j,y:o.paddedRect.y+1+U,w:l.stretch+l.fixed-j,h:c.stretch+c.fixed-U},writingMode:void 0,glyphOffset:[0,0],sectionIndex:0,pixelOffsetTL:O,pixelOffsetBR:D,minFontScaleX:k/s/u,minFontScaleY:A/s/f,isSDF:r}};if(n&&(o.stretchX||o.stretchY))for(var C=ql(h,v,g),L=ql(p,y,m),I=0;I<C.length-1;I++)for(var P=C[I],z=C[I+1],O=0;O<L.length-1;O++)a.push(E(P,L[O],z,L[O+1]));else a.push(E({fixed:0,stretch:-1},{fixed:0,stretch:-1},{fixed:0,stretch:l+1},{fixed:0,stretch:c+1}));return a}function Vl(t,e,r){for(var n=0,i=0,a=t;i<a.length;i+=1){var o=a[i];n+=Math.max(e,Math.min(r,o[1]))-Math.max(e,Math.min(r,o[0]))}return n}function ql(t,e,r){for(var n=[{fixed:-1,stretch:0}],i=0,a=t;i<a.length;i+=1){var o=a[i],s=o[0],l=o[1],c=n[n.length-1];n.push({fixed:s-c.stretch,stretch:c.stretch}),n.push({fixed:s-c.stretch,stretch:c.stretch+(l-s)})}return n.push({fixed:e+1,stretch:r}),n}function Hl(t,e,r,n){return t/e*r+n}function Gl(t,e,r,n){return t-e*r/n}var Yl=function(t,e,r,n,a,o,s,l,c,u){if(this.boxStartIndex=t.length,c){var f=o.top,h=o.bottom,p=o.collisionPadding;p&&(f-=p[1],h+=p[3]);var d=h-f;d>0&&(d=Math.max(10,d),this.circleDiameter=d)}else{var g=o.top*s-l,m=o.bottom*s+l,v=o.left*s-l,y=o.right*s+l,x=o.collisionPadding;if(x&&(v-=x[0]*s,g-=x[1]*s,y+=x[2]*s,m+=x[3]*s),u){var b=new i(v,g),_=new i(y,g),w=new i(v,m),T=new i(y,m),k=u*Math.PI/180;b._rotate(k),_._rotate(k),w._rotate(k),T._rotate(k),v=Math.min(b.x,_.x,w.x,T.x),y=Math.max(b.x,_.x,w.x,T.x),g=Math.min(b.y,_.y,w.y,T.y),m=Math.max(b.y,_.y,w.y,T.y)}t.emplaceBack(e.x,e.y,v,g,y,m,r,n,a)}this.boxEndIndex=t.length},Wl=function(t,e){if(void 0===t&&(t=[]),void 0===e&&(e=Xl),this.data=t,this.length=this.data.length,this.compare=e,this.length>0)for(var r=(this.length>>1)-1;r>=0;r--)this._down(r)};function Xl(t,e){return t<e?-1:t>e?1:0}function Zl(t,e,r){void 0===e&&(e=1),void 0===r&&(r=!1);for(var n=1/0,a=1/0,o=-1/0,s=-1/0,l=t[0],c=0;c<l.length;c++){var u=l[c];(!c||u.x<n)&&(n=u.x),(!c||u.y<a)&&(a=u.y),(!c||u.x>o)&&(o=u.x),(!c||u.y>s)&&(s=u.y)}var f=Math.min(o-n,s-a),h=f/2,p=new Wl([],Jl);if(0===f)return new i(n,a);for(var d=n;d<o;d+=f)for(var g=a;g<s;g+=f)p.push(new Kl(d+h,g+h,h,t));for(var m=function(t){for(var e=0,r=0,n=0,i=t[0],a=0,o=i.length,s=o-1;a<o;s=a++){var l=i[a],c=i[s],u=l.x*c.y-c.x*l.y;r+=(l.x+c.x)*u,n+=(l.y+c.y)*u,e+=3*u}return new Kl(r/e,n/e,0,t)}(t),v=p.length;p.length;){var y=p.pop();(y.d>m.d||!m.d)&&(m=y,r&&console.log(\"found best %d after %d probes\",Math.round(1e4*y.d)/1e4,v)),y.max-m.d<=e||(p.push(new Kl(y.p.x-(h=y.h/2),y.p.y-h,h,t)),p.push(new Kl(y.p.x+h,y.p.y-h,h,t)),p.push(new Kl(y.p.x-h,y.p.y+h,h,t)),p.push(new Kl(y.p.x+h,y.p.y+h,h,t)),v+=4)}return r&&(console.log(\"num probes: \"+v),console.log(\"best distance: \"+m.d)),m.p}function Jl(t,e){return e.max-t.max}function Kl(t,e,r,n){this.p=new i(t,e),this.h=r,this.d=function(t,e){for(var r=!1,n=1/0,i=0;i<e.length;i++)for(var a=e[i],o=0,s=a.length,l=s-1;o<s;l=o++){var c=a[o],u=a[l];c.y>t.y!=u.y>t.y&&t.x<(u.x-c.x)*(t.y-c.y)/(u.y-c.y)+c.x&&(r=!r),n=Math.min(n,Ga(t,c,u))}return(r?1:-1)*Math.sqrt(n)}(this.p,n),this.max=this.d+this.h*Math.SQRT2}Wl.prototype.push=function(t){this.data.push(t),this.length++,this._up(this.length-1)},Wl.prototype.pop=function(){if(0!==this.length){var t=this.data[0],e=this.data.pop();return this.length--,this.length>0&&(this.data[0]=e,this._down(0)),t}},Wl.prototype.peek=function(){return this.data[0]},Wl.prototype._up=function(t){for(var e=this.data,r=this.compare,n=e[t];t>0;){var i=t-1>>1,a=e[i];if(r(n,a)>=0)break;e[t]=a,t=i}e[t]=n},Wl.prototype._down=function(t){for(var e=this.data,r=this.compare,n=this.length>>1,i=e[t];t<n;){var a=1+(t<<1),o=e[a],s=a+1;if(s<this.length&&r(e[s],o)<0&&(a=s,o=e[s]),r(o,i)>=0)break;e[t]=o,t=a}e[t]=i};var Ql=Number.POSITIVE_INFINITY;function $l(t,e){return e[1]!==Ql?function(t,e,r){var n=0,i=0;switch(e=Math.abs(e),r=Math.abs(r),t){case\"top-right\":case\"top-left\":case\"top\":i=r-7;break;case\"bottom-right\":case\"bottom-left\":case\"bottom\":i=7-r}switch(t){case\"top-right\":case\"bottom-right\":case\"right\":n=-e;break;case\"top-left\":case\"bottom-left\":case\"left\":n=e}return[n,i]}(t,e[0],e[1]):function(t,e){var r=0,n=0;e<0&&(e=0);var i=e/Math.sqrt(2);switch(t){case\"top-right\":case\"top-left\":n=i-7;break;case\"bottom-right\":case\"bottom-left\":n=7-i;break;case\"bottom\":n=7-e;break;case\"top\":n=e-7}switch(t){case\"top-right\":case\"bottom-right\":r=-i;break;case\"top-left\":case\"bottom-left\":r=i;break;case\"left\":r=e;break;case\"right\":r=-e}return[r,n]}(t,e[0])}function tc(t){switch(t){case\"right\":case\"top-right\":case\"bottom-right\":return\"right\";case\"left\":case\"top-left\":case\"bottom-left\":return\"left\"}return\"center\"}function ec(t,e,r,n,a,o,s,l,c,u,f,h,p,d,g){var m=function(t,e,r,n,a,o,s,l){for(var c=n.layout.get(\"text-rotate\").evaluate(o,{})*Math.PI/180,u=[],f=0,h=e.positionedLines;f<h.length;f+=1)for(var p=h[f],d=0,g=p.positionedGlyphs;d<g.length;d+=1){var m=g[d];if(m.rect){var v=m.rect||{},y=4,x=!0,b=1,_=0,w=(a||l)&&m.vertical,T=m.metrics.advance*m.scale/2;if(l&&e.verticalizable&&(_=p.lineOffset/2-(m.imageName?-(24-m.metrics.width*m.scale)/2:24*(m.scale-1))),m.imageName){var k=s[m.imageName];x=k.sdf,y=1/(b=k.pixelRatio)}var M=a?[m.x+T,m.y]:[0,0],A=a?[0,0]:[m.x+T+r[0],m.y+r[1]-_],S=[0,0];w&&(S=A,A=[0,0]);var E=(m.metrics.left-y)*m.scale-T+A[0],C=(-m.metrics.top-y)*m.scale+A[1],L=E+v.w*m.scale/b,I=C+v.h*m.scale/b,P=new i(E,C),z=new i(L,C),O=new i(E,I),D=new i(L,I);if(w){var R=new i(-T,T- -17),F=-Math.PI/2,B=12-T,N=new i(22-B,-(m.imageName?B:0)),j=new(Function.prototype.bind.apply(i,[null].concat(S)));P._rotateAround(F,R)._add(N)._add(j),z._rotateAround(F,R)._add(N)._add(j),O._rotateAround(F,R)._add(N)._add(j),D._rotateAround(F,R)._add(N)._add(j)}if(c){var U=Math.sin(c),V=Math.cos(c),q=[V,-U,U,V];P._matMult(q),z._matMult(q),O._matMult(q),D._matMult(q)}var H=new i(0,0),G=new i(0,0);u.push({tl:P,tr:z,bl:O,br:D,tex:v,writingMode:e.writingMode,glyphOffset:M,sectionIndex:m.sectionIndex,isSDF:x,pixelOffsetTL:H,pixelOffsetBR:G,minFontScaleX:0,minFontScaleY:0})}}return u}(0,r,l,a,o,s,n,t.allowVerticalPlacement),v=t.textSizeData,y=null;\"source\"===v.kind?(y=[128*a.layout.get(\"text-size\").evaluate(s,{})])[0]>32640&&_(t.layerIds[0]+': Value for \"text-size\" is >= 255. Reduce your \"text-size\".'):\"composite\"===v.kind&&((y=[128*d.compositeTextSizes[0].evaluate(s,{},g),128*d.compositeTextSizes[1].evaluate(s,{},g)])[0]>32640||y[1]>32640)&&_(t.layerIds[0]+': Value for \"text-size\" is >= 255. Reduce your \"text-size\".'),t.addSymbols(t.text,m,y,l,o,s,u,e,c.lineStartIndex,c.lineLength,p,g);for(var x=0,b=f;x<b.length;x+=1)h[b[x]]=t.text.placedSymbolArray.length-1;return 4*m.length}function rc(t){for(var e in t)return t[e];return null}function nc(t,e,r,n){var i=t.compareText;if(e in i){for(var a=i[e],o=a.length-1;o>=0;o--)if(n.dist(a[o])<r)return!0}else i[e]=[];return i[e].push(n),!1}var ic=gs.VectorTileFeature.types,ac=[{name:\"a_fade_opacity\",components:1,type:\"Uint8\",offset:0}];function oc(t,e,r,n,i,a,o,s,l,c,u,f,h){var p=s?Math.min(32640,Math.round(s[0])):0,d=s?Math.min(32640,Math.round(s[1])):0;t.emplaceBack(e,r,Math.round(32*n),Math.round(32*i),a,o,(p<<1)+(l?1:0),d,16*c,16*u,256*f,256*h)}function sc(t,e,r){t.emplaceBack(e.x,e.y,r),t.emplaceBack(e.x,e.y,r),t.emplaceBack(e.x,e.y,r),t.emplaceBack(e.x,e.y,r)}function lc(t){for(var e=0,r=t.sections;e<r.length;e+=1)if(Xn(r[e].text))return!0;return!1}var cc=function(t){this.layoutVertexArray=new Li,this.indexArray=new Fi,this.programConfigurations=t,this.segments=new ia,this.dynamicLayoutVertexArray=new Ii,this.opacityVertexArray=new Pi,this.placedSymbolArray=new Ji};cc.prototype.isEmpty=function(){return 0===this.layoutVertexArray.length&&0===this.indexArray.length&&0===this.dynamicLayoutVertexArray.length&&0===this.opacityVertexArray.length},cc.prototype.upload=function(t,e,r,n){this.isEmpty()||(r&&(this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,Ds.members),this.indexBuffer=t.createIndexBuffer(this.indexArray,e),this.dynamicLayoutVertexBuffer=t.createVertexBuffer(this.dynamicLayoutVertexArray,Rs.members,!0),this.opacityVertexBuffer=t.createVertexBuffer(this.opacityVertexArray,ac,!0),this.opacityVertexBuffer.itemSize=1),(r||n)&&this.programConfigurations.upload(t))},cc.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.programConfigurations.destroy(),this.segments.destroy(),this.dynamicLayoutVertexBuffer.destroy(),this.opacityVertexBuffer.destroy())},Dn(\"SymbolBuffers\",cc);var uc=function(t,e,r){this.layoutVertexArray=new t,this.layoutAttributes=e,this.indexArray=new r,this.segments=new ia,this.collisionVertexArray=new Ri};uc.prototype.upload=function(t){this.layoutVertexBuffer=t.createVertexBuffer(this.layoutVertexArray,this.layoutAttributes),this.indexBuffer=t.createIndexBuffer(this.indexArray),this.collisionVertexBuffer=t.createVertexBuffer(this.collisionVertexArray,Fs.members,!0)},uc.prototype.destroy=function(){this.layoutVertexBuffer&&(this.layoutVertexBuffer.destroy(),this.indexBuffer.destroy(),this.segments.destroy(),this.collisionVertexBuffer.destroy())},Dn(\"CollisionBuffers\",uc);var fc=function(t){this.collisionBoxArray=t.collisionBoxArray,this.zoom=t.zoom,this.overscaling=t.overscaling,this.layers=t.layers,this.layerIds=this.layers.map((function(t){return t.id})),this.index=t.index,this.pixelRatio=t.pixelRatio,this.sourceLayerIndex=t.sourceLayerIndex,this.hasPattern=!1,this.hasRTLText=!1,this.sortKeyRanges=[],this.collisionCircleArray=[],this.placementInvProjMatrix=eo([]),this.placementViewportMatrix=eo([]);var e=this.layers[0]._unevaluatedLayout._values;this.textSizeData=Ll(this.zoom,e[\"text-size\"]),this.iconSizeData=Ll(this.zoom,e[\"icon-size\"]);var r=this.layers[0].layout,n=r.get(\"symbol-sort-key\"),i=r.get(\"symbol-z-order\");this.sortFeaturesByKey=\"viewport-y\"!==i&&void 0!==n.constantOr(1),this.sortFeaturesByY=(\"viewport-y\"===i||\"auto\"===i&&!this.sortFeaturesByKey)&&(r.get(\"text-allow-overlap\")||r.get(\"icon-allow-overlap\")||r.get(\"text-ignore-placement\")||r.get(\"icon-ignore-placement\")),\"point\"===r.get(\"symbol-placement\")&&(this.writingModes=r.get(\"text-writing-mode\").map((function(t){return gl[t]}))),this.stateDependentLayerIds=this.layers.filter((function(t){return t.isStateDependent()})).map((function(t){return t.id})),this.sourceID=t.sourceID};fc.prototype.createArrays=function(){this.text=new cc(new Ia(Ds.members,this.layers,this.zoom,(function(t){return/^text/.test(t)}))),this.icon=new cc(new Ia(Ds.members,this.layers,this.zoom,(function(t){return/^icon/.test(t)}))),this.glyphOffsetArray=new $i,this.lineVertexArray=new ta,this.symbolInstances=new Qi},fc.prototype.calculateGlyphDependencies=function(t,e,r,n,i){for(var a=0;a<t.length;a++)if(e[t.charCodeAt(a)]=!0,(r||n)&&i){var o=Us[t.charAt(a)];o&&(e[o.charCodeAt(0)]=!0)}},fc.prototype.populate=function(t,e,r){var n=this.layers[0],i=n.layout,a=i.get(\"text-font\"),o=i.get(\"text-field\"),s=i.get(\"icon-image\"),l=(\"constant\"!==o.value.kind||o.value.value instanceof te&&!o.value.value.isEmpty()||o.value.value.toString().length>0)&&(\"constant\"!==a.value.kind||a.value.value.length>0),c=\"constant\"!==s.value.kind||!!s.value.value||Object.keys(s.parameters).length>0,u=i.get(\"symbol-sort-key\");if(this.features=[],l||c){for(var f=e.iconDependencies,h=e.glyphDependencies,p=e.availableImages,d=new ii(this.zoom),g=0,m=t;g<m.length;g+=1){var v=m[g],y=v.feature,x=v.id,b=v.index,_=v.sourceLayerIndex,w=n._featureFilter.needGeometry,T={type:y.type,id:x,properties:y.properties,geometry:w?Da(y):[]};if(n._featureFilter.filter(d,T,r)){w||(T.geometry=Da(y));var k=void 0;if(l){var M=n.getValueAndResolveTokens(\"text-field\",T,r,p),A=te.factory(M);lc(A)&&(this.hasRTLText=!0),(!this.hasRTLText||\"unavailable\"===ei()||this.hasRTLText&&ni.isParsed())&&(k=js(A,n,T))}var S=void 0;if(c){var E=n.getValueAndResolveTokens(\"icon-image\",T,r,p);S=E instanceof ee?E:ee.fromString(E)}if(k||S){var C=this.sortFeaturesByKey?u.evaluate(T,{},r):void 0,L={id:x,text:k,icon:S,index:b,sourceLayerIndex:_,geometry:Da(y),properties:y.properties,type:ic[y.type],sortKey:C};if(this.features.push(L),S&&(f[S.name]=!0),k){var I=a.evaluate(T,{},r).join(\",\"),P=\"map\"===i.get(\"text-rotation-alignment\")&&\"point\"!==i.get(\"symbol-placement\");this.allowVerticalPlacement=this.writingModes&&this.writingModes.indexOf(gl.vertical)>=0;for(var z=0,O=k.sections;z<O.length;z+=1){var D=O[z];if(D.image)f[D.image.name]=!0;else{var R=qn(k.toString()),F=D.fontStack||I,B=h[F]=h[F]||{};this.calculateGlyphDependencies(D.text,B,P,this.allowVerticalPlacement,R)}}}}}}\"line\"===i.get(\"symbol-placement\")&&(this.features=function(t){var e={},r={},n=[],i=0;function a(e){n.push(t[e]),i++}function o(t,e,i){var a=r[t];return delete r[t],r[e]=a,n[a].geometry[0].pop(),n[a].geometry[0]=n[a].geometry[0].concat(i[0]),a}function s(t,r,i){var a=e[r];return delete e[r],e[t]=a,n[a].geometry[0].shift(),n[a].geometry[0]=i[0].concat(n[a].geometry[0]),a}function l(t,e,r){var n=r?e[0][e[0].length-1]:e[0][0];return t+\":\"+n.x+\":\"+n.y}for(var c=0;c<t.length;c++){var u=t[c],f=u.geometry,h=u.text?u.text.toString():null;if(h){var p=l(h,f),d=l(h,f,!0);if(p in r&&d in e&&r[p]!==e[d]){var g=s(p,d,f),m=o(p,d,n[g].geometry);delete e[p],delete r[d],r[l(h,n[m].geometry,!0)]=m,n[g].geometry=null}else p in r?o(p,d,f):d in e?s(p,d,f):(a(c),e[p]=i-1,r[d]=i-1)}else a(c)}return n.filter((function(t){return t.geometry}))}(this.features)),this.sortFeaturesByKey&&this.features.sort((function(t,e){return t.sortKey-e.sortKey}))}},fc.prototype.update=function(t,e,r){this.stateDependentLayers.length&&(this.text.programConfigurations.updatePaintArrays(t,e,this.layers,r),this.icon.programConfigurations.updatePaintArrays(t,e,this.layers,r))},fc.prototype.isEmpty=function(){return 0===this.symbolInstances.length&&!this.hasRTLText},fc.prototype.uploadPending=function(){return!this.uploaded||this.text.programConfigurations.needsUpload||this.icon.programConfigurations.needsUpload},fc.prototype.upload=function(t){!this.uploaded&&this.hasDebugData()&&(this.textCollisionBox.upload(t),this.iconCollisionBox.upload(t)),this.text.upload(t,this.sortFeaturesByY,!this.uploaded,this.text.programConfigurations.needsUpload),this.icon.upload(t,this.sortFeaturesByY,!this.uploaded,this.icon.programConfigurations.needsUpload),this.uploaded=!0},fc.prototype.destroyDebugData=function(){this.textCollisionBox.destroy(),this.iconCollisionBox.destroy()},fc.prototype.destroy=function(){this.text.destroy(),this.icon.destroy(),this.hasDebugData()&&this.destroyDebugData()},fc.prototype.addToLineVertexArray=function(t,e){var r=this.lineVertexArray.length;if(void 0!==t.segment){for(var n=t.dist(e[t.segment+1]),i=t.dist(e[t.segment]),a={},o=t.segment+1;o<e.length;o++)a[o]={x:e[o].x,y:e[o].y,tileUnitDistanceFromAnchor:n},o<e.length-1&&(n+=e[o+1].dist(e[o]));for(var s=t.segment||0;s>=0;s--)a[s]={x:e[s].x,y:e[s].y,tileUnitDistanceFromAnchor:i},s>0&&(i+=e[s-1].dist(e[s]));for(var l=0;l<e.length;l++){var c=a[l];this.lineVertexArray.emplaceBack(c.x,c.y,c.tileUnitDistanceFromAnchor)}}return{lineStartIndex:r,lineLength:this.lineVertexArray.length-r}},fc.prototype.addSymbols=function(t,e,r,n,i,a,o,s,l,c,u,f){for(var h=t.indexArray,p=t.layoutVertexArray,d=t.segments.prepareSegment(4*e.length,p,h,a.sortKey),g=this.glyphOffsetArray.length,m=d.vertexLength,v=this.allowVerticalPlacement&&o===gl.vertical?Math.PI/2:0,y=a.text&&a.text.sections,x=0;x<e.length;x++){var b=e[x],_=b.tl,w=b.tr,T=b.bl,k=b.br,M=b.tex,A=b.pixelOffsetTL,S=b.pixelOffsetBR,E=b.minFontScaleX,C=b.minFontScaleY,L=b.glyphOffset,I=b.isSDF,P=b.sectionIndex,z=d.vertexLength,O=L[1];oc(p,s.x,s.y,_.x,O+_.y,M.x,M.y,r,I,A.x,A.y,E,C),oc(p,s.x,s.y,w.x,O+w.y,M.x+M.w,M.y,r,I,S.x,A.y,E,C),oc(p,s.x,s.y,T.x,O+T.y,M.x,M.y+M.h,r,I,A.x,S.y,E,C),oc(p,s.x,s.y,k.x,O+k.y,M.x+M.w,M.y+M.h,r,I,S.x,S.y,E,C),sc(t.dynamicLayoutVertexArray,s,v),h.emplaceBack(z,z+1,z+2),h.emplaceBack(z+1,z+2,z+3),d.vertexLength+=4,d.primitiveLength+=2,this.glyphOffsetArray.emplaceBack(L[0]),x!==e.length-1&&P===e[x+1].sectionIndex||t.programConfigurations.populatePaintArrays(p.length,a,a.index,{},f,y&&y[P])}t.placedSymbolArray.emplaceBack(s.x,s.y,g,this.glyphOffsetArray.length-g,m,l,c,s.segment,r?r[0]:0,r?r[1]:0,n[0],n[1],o,0,!1,0,u)},fc.prototype._addCollisionDebugVertex=function(t,e,r,n,i,a){return e.emplaceBack(0,0),t.emplaceBack(r.x,r.y,n,i,Math.round(a.x),Math.round(a.y))},fc.prototype.addCollisionDebugVertices=function(t,e,r,n,a,o,s){var l=a.segments.prepareSegment(4,a.layoutVertexArray,a.indexArray),c=l.vertexLength,u=a.layoutVertexArray,f=a.collisionVertexArray,h=s.anchorX,p=s.anchorY;this._addCollisionDebugVertex(u,f,o,h,p,new i(t,e)),this._addCollisionDebugVertex(u,f,o,h,p,new i(r,e)),this._addCollisionDebugVertex(u,f,o,h,p,new i(r,n)),this._addCollisionDebugVertex(u,f,o,h,p,new i(t,n)),l.vertexLength+=4;var d=a.indexArray;d.emplaceBack(c,c+1),d.emplaceBack(c+1,c+2),d.emplaceBack(c+2,c+3),d.emplaceBack(c+3,c),l.primitiveLength+=4},fc.prototype.addDebugCollisionBoxes=function(t,e,r,n){for(var i=t;i<e;i++){var a=this.collisionBoxArray.get(i);this.addCollisionDebugVertices(a.x1,a.y1,a.x2,a.y2,n?this.textCollisionBox:this.iconCollisionBox,a.anchorPoint,r)}},fc.prototype.generateCollisionDebugBuffers=function(){this.hasDebugData()&&this.destroyDebugData(),this.textCollisionBox=new uc(Oi,Bs.members,qi),this.iconCollisionBox=new uc(Oi,Bs.members,qi);for(var t=0;t<this.symbolInstances.length;t++){var e=this.symbolInstances.get(t);this.addDebugCollisionBoxes(e.textBoxStartIndex,e.textBoxEndIndex,e,!0),this.addDebugCollisionBoxes(e.verticalTextBoxStartIndex,e.verticalTextBoxEndIndex,e,!0),this.addDebugCollisionBoxes(e.iconBoxStartIndex,e.iconBoxEndIndex,e,!1),this.addDebugCollisionBoxes(e.verticalIconBoxStartIndex,e.verticalIconBoxEndIndex,e,!1)}},fc.prototype._deserializeCollisionBoxesForSymbol=function(t,e,r,n,i,a,o,s,l){for(var c={},u=e;u<r;u++){var f=t.get(u);c.textBox={x1:f.x1,y1:f.y1,x2:f.x2,y2:f.y2,anchorPointX:f.anchorPointX,anchorPointY:f.anchorPointY},c.textFeatureIndex=f.featureIndex;break}for(var h=n;h<i;h++){var p=t.get(h);c.verticalTextBox={x1:p.x1,y1:p.y1,x2:p.x2,y2:p.y2,anchorPointX:p.anchorPointX,anchorPointY:p.anchorPointY},c.verticalTextFeatureIndex=p.featureIndex;break}for(var d=a;d<o;d++){var g=t.get(d);c.iconBox={x1:g.x1,y1:g.y1,x2:g.x2,y2:g.y2,anchorPointX:g.anchorPointX,anchorPointY:g.anchorPointY},c.iconFeatureIndex=g.featureIndex;break}for(var m=s;m<l;m++){var v=t.get(m);c.verticalIconBox={x1:v.x1,y1:v.y1,x2:v.x2,y2:v.y2,anchorPointX:v.anchorPointX,anchorPointY:v.anchorPointY},c.verticalIconFeatureIndex=v.featureIndex;break}return c},fc.prototype.deserializeCollisionBoxes=function(t){this.collisionArrays=[];for(var e=0;e<this.symbolInstances.length;e++){var r=this.symbolInstances.get(e);this.collisionArrays.push(this._deserializeCollisionBoxesForSymbol(t,r.textBoxStartIndex,r.textBoxEndIndex,r.verticalTextBoxStartIndex,r.verticalTextBoxEndIndex,r.iconBoxStartIndex,r.iconBoxEndIndex,r.verticalIconBoxStartIndex,r.verticalIconBoxEndIndex))}},fc.prototype.hasTextData=function(){return this.text.segments.get().length>0},fc.prototype.hasIconData=function(){return this.icon.segments.get().length>0},fc.prototype.hasDebugData=function(){return this.textCollisionBox&&this.iconCollisionBox},fc.prototype.hasTextCollisionBoxData=function(){return this.hasDebugData()&&this.textCollisionBox.segments.get().length>0},fc.prototype.hasIconCollisionBoxData=function(){return this.hasDebugData()&&this.iconCollisionBox.segments.get().length>0},fc.prototype.addIndicesForPlacedSymbol=function(t,e){for(var r=t.placedSymbolArray.get(e),n=r.vertexStartIndex+4*r.numGlyphs,i=r.vertexStartIndex;i<n;i+=4)t.indexArray.emplaceBack(i,i+1,i+2),t.indexArray.emplaceBack(i+1,i+2,i+3)},fc.prototype.getSortedSymbolIndexes=function(t){if(this.sortedAngle===t&&void 0!==this.symbolInstanceIndexes)return this.symbolInstanceIndexes;for(var e=Math.sin(t),r=Math.cos(t),n=[],i=[],a=[],o=0;o<this.symbolInstances.length;++o){a.push(o);var s=this.symbolInstances.get(o);n.push(0|Math.round(e*s.anchorX+r*s.anchorY)),i.push(s.featureIndex)}return a.sort((function(t,e){return n[t]-n[e]||i[e]-i[t]})),a},fc.prototype.addToSortKeyRanges=function(t,e){var r=this.sortKeyRanges[this.sortKeyRanges.length-1];r&&r.sortKey===e?r.symbolInstanceEnd=t+1:this.sortKeyRanges.push({sortKey:e,symbolInstanceStart:t,symbolInstanceEnd:t+1})},fc.prototype.sortFeatures=function(t){var e=this;if(this.sortFeaturesByY&&this.sortedAngle!==t&&!(this.text.segments.get().length>1||this.icon.segments.get().length>1)){this.symbolInstanceIndexes=this.getSortedSymbolIndexes(t),this.sortedAngle=t,this.text.indexArray.clear(),this.icon.indexArray.clear(),this.featureSortOrder=[];for(var r=0,n=this.symbolInstanceIndexes;r<n.length;r+=1){var i=this.symbolInstances.get(n[r]);this.featureSortOrder.push(i.featureIndex),[i.rightJustifiedTextSymbolIndex,i.centerJustifiedTextSymbolIndex,i.leftJustifiedTextSymbolIndex].forEach((function(t,r,n){t>=0&&n.indexOf(t)===r&&e.addIndicesForPlacedSymbol(e.text,t)})),i.verticalPlacedTextSymbolIndex>=0&&this.addIndicesForPlacedSymbol(this.text,i.verticalPlacedTextSymbolIndex),i.placedIconSymbolIndex>=0&&this.addIndicesForPlacedSymbol(this.icon,i.placedIconSymbolIndex),i.verticalPlacedIconSymbolIndex>=0&&this.addIndicesForPlacedSymbol(this.icon,i.verticalPlacedIconSymbolIndex)}this.text.indexBuffer&&this.text.indexBuffer.updateData(this.text.indexArray),this.icon.indexBuffer&&this.icon.indexBuffer.updateData(this.icon.indexArray)}},Dn(\"SymbolBucket\",fc,{omit:[\"layers\",\"collisionBoxArray\",\"features\",\"compareText\"]}),fc.MAX_GLYPHS=65535,fc.addDynamicAttributes=sc;var hc=new yi({\"symbol-placement\":new pi(At.layout_symbol[\"symbol-placement\"]),\"symbol-spacing\":new pi(At.layout_symbol[\"symbol-spacing\"]),\"symbol-avoid-edges\":new pi(At.layout_symbol[\"symbol-avoid-edges\"]),\"symbol-sort-key\":new di(At.layout_symbol[\"symbol-sort-key\"]),\"symbol-z-order\":new pi(At.layout_symbol[\"symbol-z-order\"]),\"icon-allow-overlap\":new pi(At.layout_symbol[\"icon-allow-overlap\"]),\"icon-ignore-placement\":new pi(At.layout_symbol[\"icon-ignore-placement\"]),\"icon-optional\":new pi(At.layout_symbol[\"icon-optional\"]),\"icon-rotation-alignment\":new pi(At.layout_symbol[\"icon-rotation-alignment\"]),\"icon-size\":new di(At.layout_symbol[\"icon-size\"]),\"icon-text-fit\":new pi(At.layout_symbol[\"icon-text-fit\"]),\"icon-text-fit-padding\":new pi(At.layout_symbol[\"icon-text-fit-padding\"]),\"icon-image\":new di(At.layout_symbol[\"icon-image\"]),\"icon-rotate\":new di(At.layout_symbol[\"icon-rotate\"]),\"icon-padding\":new pi(At.layout_symbol[\"icon-padding\"]),\"icon-keep-upright\":new pi(At.layout_symbol[\"icon-keep-upright\"]),\"icon-offset\":new di(At.layout_symbol[\"icon-offset\"]),\"icon-anchor\":new di(At.layout_symbol[\"icon-anchor\"]),\"icon-pitch-alignment\":new pi(At.layout_symbol[\"icon-pitch-alignment\"]),\"text-pitch-alignment\":new pi(At.layout_symbol[\"text-pitch-alignment\"]),\"text-rotation-alignment\":new pi(At.layout_symbol[\"text-rotation-alignment\"]),\"text-field\":new di(At.layout_symbol[\"text-field\"]),\"text-font\":new di(At.layout_symbol[\"text-font\"]),\"text-size\":new di(At.layout_symbol[\"text-size\"]),\"text-max-width\":new di(At.layout_symbol[\"text-max-width\"]),\"text-line-height\":new pi(At.layout_symbol[\"text-line-height\"]),\"text-letter-spacing\":new di(At.layout_symbol[\"text-letter-spacing\"]),\"text-justify\":new di(At.layout_symbol[\"text-justify\"]),\"text-radial-offset\":new di(At.layout_symbol[\"text-radial-offset\"]),\"text-variable-anchor\":new pi(At.layout_symbol[\"text-variable-anchor\"]),\"text-anchor\":new di(At.layout_symbol[\"text-anchor\"]),\"text-max-angle\":new pi(At.layout_symbol[\"text-max-angle\"]),\"text-writing-mode\":new pi(At.layout_symbol[\"text-writing-mode\"]),\"text-rotate\":new di(At.layout_symbol[\"text-rotate\"]),\"text-padding\":new pi(At.layout_symbol[\"text-padding\"]),\"text-keep-upright\":new pi(At.layout_symbol[\"text-keep-upright\"]),\"text-transform\":new di(At.layout_symbol[\"text-transform\"]),\"text-offset\":new di(At.layout_symbol[\"text-offset\"]),\"text-allow-overlap\":new pi(At.layout_symbol[\"text-allow-overlap\"]),\"text-ignore-placement\":new pi(At.layout_symbol[\"text-ignore-placement\"]),\"text-optional\":new pi(At.layout_symbol[\"text-optional\"])}),pc={paint:new yi({\"icon-opacity\":new di(At.paint_symbol[\"icon-opacity\"]),\"icon-color\":new di(At.paint_symbol[\"icon-color\"]),\"icon-halo-color\":new di(At.paint_symbol[\"icon-halo-color\"]),\"icon-halo-width\":new di(At.paint_symbol[\"icon-halo-width\"]),\"icon-halo-blur\":new di(At.paint_symbol[\"icon-halo-blur\"]),\"icon-translate\":new pi(At.paint_symbol[\"icon-translate\"]),\"icon-translate-anchor\":new pi(At.paint_symbol[\"icon-translate-anchor\"]),\"text-opacity\":new di(At.paint_symbol[\"text-opacity\"]),\"text-color\":new di(At.paint_symbol[\"text-color\"],{runtimeType:Bt,getOverride:function(t){return t.textColor},hasOverride:function(t){return!!t.textColor}}),\"text-halo-color\":new di(At.paint_symbol[\"text-halo-color\"]),\"text-halo-width\":new di(At.paint_symbol[\"text-halo-width\"]),\"text-halo-blur\":new di(At.paint_symbol[\"text-halo-blur\"]),\"text-translate\":new pi(At.paint_symbol[\"text-translate\"]),\"text-translate-anchor\":new pi(At.paint_symbol[\"text-translate-anchor\"])}),layout:hc},dc=function(t){this.type=t.property.overrides?t.property.overrides.runtimeType:Ot,this.defaultValue=t};dc.prototype.evaluate=function(t){if(t.formattedSection){var e=this.defaultValue.property.overrides;if(e&&e.hasOverride(t.formattedSection))return e.getOverride(t.formattedSection)}return t.feature&&t.featureState?this.defaultValue.evaluate(t.feature,t.featureState):this.defaultValue.property.specification.default},dc.prototype.eachChild=function(t){this.defaultValue.isConstant()||t(this.defaultValue.value._styleExpression.expression)},dc.prototype.outputDefined=function(){return!1},dc.prototype.serialize=function(){return null},Dn(\"FormatSectionOverride\",dc,{omit:[\"defaultValue\"]});var gc=function(t){function e(e){t.call(this,e,pc)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.recalculate=function(e,r){if(t.prototype.recalculate.call(this,e,r),\"auto\"===this.layout.get(\"icon-rotation-alignment\")&&(this.layout._values[\"icon-rotation-alignment\"]=\"point\"!==this.layout.get(\"symbol-placement\")?\"map\":\"viewport\"),\"auto\"===this.layout.get(\"text-rotation-alignment\")&&(this.layout._values[\"text-rotation-alignment\"]=\"point\"!==this.layout.get(\"symbol-placement\")?\"map\":\"viewport\"),\"auto\"===this.layout.get(\"text-pitch-alignment\")&&(this.layout._values[\"text-pitch-alignment\"]=this.layout.get(\"text-rotation-alignment\")),\"auto\"===this.layout.get(\"icon-pitch-alignment\")&&(this.layout._values[\"icon-pitch-alignment\"]=this.layout.get(\"icon-rotation-alignment\")),\"point\"===this.layout.get(\"symbol-placement\")){var n=this.layout.get(\"text-writing-mode\");if(n){for(var i=[],a=0,o=n;a<o.length;a+=1){var s=o[a];i.indexOf(s)<0&&i.push(s)}this.layout._values[\"text-writing-mode\"]=i}else this.layout._values[\"text-writing-mode\"]=[\"horizontal\"]}this._setPaintOverrides()},e.prototype.getValueAndResolveTokens=function(t,e,r,n){var i=this.layout.get(t).evaluate(e,{},r,n),a=this._unevaluatedLayout._values[t];return a.isDataDriven()||Vr(a.value)||!i?i:function(t,e){return e.replace(/{([^{}]+)}/g,(function(e,r){return r in t?String(t[r]):\"\"}))}(e.properties,i)},e.prototype.createBucket=function(t){return new fc(t)},e.prototype.queryRadius=function(){return 0},e.prototype.queryIntersectsFeature=function(){return!1},e.prototype._setPaintOverrides=function(){for(var t=0,r=pc.paint.overridableProperties;t<r.length;t+=1){var n=r[t];if(e.hasPaintOverride(this.layout,n)){var i,a=this.paint.get(n),o=new dc(a),s=new Ur(o,a.property.specification);i=\"constant\"===a.value.kind||\"source\"===a.value.kind?new Hr(\"source\",s):new Gr(\"composite\",s,a.value.zoomStops,a.value._interpolationType),this.paint._values[n]=new fi(a.property,i,a.parameters)}}},e.prototype._handleOverridablePaintPropertyUpdate=function(t,r,n){return!(!this.layout||r.isDataDriven()||n.isDataDriven())&&e.hasPaintOverride(this.layout,t)},e.hasPaintOverride=function(t,e){var r=t.get(\"text-field\"),n=pc.paint.properties[e],i=!1,a=function(t){for(var e=0,r=t;e<r.length;e+=1)if(n.overrides&&n.overrides.hasOverride(r[e]))return void(i=!0)};if(\"constant\"===r.value.kind&&r.value.value instanceof te)a(r.value.value.sections);else if(\"source\"===r.value.kind){var o=function(t){i||(t instanceof oe&&ie(t.value)===Vt?a(t.value.sections):t instanceof ue?a(t.sections):t.eachChild(o))},s=r.value;s._styleExpression&&o(s._styleExpression.expression)}return i},e}(xi),mc={paint:new yi({\"background-color\":new pi(At.paint_background[\"background-color\"]),\"background-pattern\":new mi(At.paint_background[\"background-pattern\"]),\"background-opacity\":new pi(At.paint_background[\"background-opacity\"])})},vc=function(t){function e(e){t.call(this,e,mc)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e}(xi),yc={paint:new yi({\"raster-opacity\":new pi(At.paint_raster[\"raster-opacity\"]),\"raster-hue-rotate\":new pi(At.paint_raster[\"raster-hue-rotate\"]),\"raster-brightness-min\":new pi(At.paint_raster[\"raster-brightness-min\"]),\"raster-brightness-max\":new pi(At.paint_raster[\"raster-brightness-max\"]),\"raster-saturation\":new pi(At.paint_raster[\"raster-saturation\"]),\"raster-contrast\":new pi(At.paint_raster[\"raster-contrast\"]),\"raster-resampling\":new pi(At.paint_raster[\"raster-resampling\"]),\"raster-fade-duration\":new pi(At.paint_raster[\"raster-fade-duration\"])})},xc=function(t){function e(e){t.call(this,e,yc)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e}(xi),bc=function(t){function e(e){t.call(this,e,{}),this.implementation=e}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.is3D=function(){return\"3d\"===this.implementation.renderingMode},e.prototype.hasOffscreenPass=function(){return void 0!==this.implementation.prerender},e.prototype.recalculate=function(){},e.prototype.updateTransitions=function(){},e.prototype.hasTransition=function(){},e.prototype.serialize=function(){},e.prototype.onAdd=function(t){this.implementation.onAdd&&this.implementation.onAdd(t,t.painter.context.gl)},e.prototype.onRemove=function(t){this.implementation.onRemove&&this.implementation.onRemove(t,t.painter.context.gl)},e}(xi),_c={circle:oo,heatmap:vo,hillshade:xo,fill:as,\"fill-extrusion\":ws,line:zs,symbol:gc,background:vc,raster:xc},wc=self.HTMLImageElement,Tc=self.HTMLCanvasElement,kc=self.HTMLVideoElement,Mc=self.ImageData,Ac=self.ImageBitmap,Sc=function(t,e,r,n){this.context=t,this.format=r,this.texture=t.gl.createTexture(),this.update(e,n)};Sc.prototype.update=function(t,e,r){var n=t.width,i=t.height,a=!(this.size&&this.size[0]===n&&this.size[1]===i||r),o=this.context,s=o.gl;if(this.useMipmap=Boolean(e&&e.useMipmap),s.bindTexture(s.TEXTURE_2D,this.texture),o.pixelStoreUnpackFlipY.set(!1),o.pixelStoreUnpack.set(1),o.pixelStoreUnpackPremultiplyAlpha.set(this.format===s.RGBA&&(!e||!1!==e.premultiply)),a)this.size=[n,i],t instanceof wc||t instanceof Tc||t instanceof kc||t instanceof Mc||Ac&&t instanceof Ac?s.texImage2D(s.TEXTURE_2D,0,this.format,this.format,s.UNSIGNED_BYTE,t):s.texImage2D(s.TEXTURE_2D,0,this.format,n,i,0,this.format,s.UNSIGNED_BYTE,t.data);else{var l=r||{x:0,y:0},c=l.x,u=l.y;t instanceof wc||t instanceof Tc||t instanceof kc||t instanceof Mc||Ac&&t instanceof Ac?s.texSubImage2D(s.TEXTURE_2D,0,c,u,s.RGBA,s.UNSIGNED_BYTE,t):s.texSubImage2D(s.TEXTURE_2D,0,c,u,n,i,s.RGBA,s.UNSIGNED_BYTE,t.data)}this.useMipmap&&this.isSizePowerOfTwo()&&s.generateMipmap(s.TEXTURE_2D)},Sc.prototype.bind=function(t,e,r){var n=this.context.gl;n.bindTexture(n.TEXTURE_2D,this.texture),r!==n.LINEAR_MIPMAP_NEAREST||this.isSizePowerOfTwo()||(r=n.LINEAR),t!==this.filter&&(n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MAG_FILTER,t),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MIN_FILTER,r||t),this.filter=t),e!==this.wrap&&(n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_S,e),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_T,e),this.wrap=e)},Sc.prototype.isSizePowerOfTwo=function(){return this.size[0]===this.size[1]&&Math.log(this.size[0])/Math.LN2%1==0},Sc.prototype.destroy=function(){this.context.gl.deleteTexture(this.texture),this.texture=null};var Ec=function(t){var e=this;this._callback=t,this._triggered=!1,\"undefined\"!=typeof MessageChannel&&(this._channel=new MessageChannel,this._channel.port2.onmessage=function(){e._triggered=!1,e._callback()})};Ec.prototype.trigger=function(){var t=this;this._triggered||(this._triggered=!0,this._channel?this._channel.port1.postMessage(!0):setTimeout((function(){t._triggered=!1,t._callback()}),0))},Ec.prototype.remove=function(){delete this._channel,this._callback=function(){}};var Cc=function(t,e,r){this.target=t,this.parent=e,this.mapId=r,this.callbacks={},this.tasks={},this.taskQueue=[],this.cancelCallbacks={},g([\"receive\",\"process\"],this),this.invoker=new Ec(this.process),this.target.addEventListener(\"message\",this.receive,!1),this.globalScope=k()?t:self};function Lc(t,e,r){var n=2*Math.PI*6378137/256/Math.pow(2,r);return[t*n-2*Math.PI*6378137/2,e*n-2*Math.PI*6378137/2]}Cc.prototype.send=function(t,e,r,n,i){var a=this;void 0===i&&(i=!1);var o=Math.round(1e18*Math.random()).toString(36).substring(0,10);r&&(this.callbacks[o]=r);var s=S(this.globalScope)?void 0:[];return this.target.postMessage({id:o,type:t,hasCallback:!!r,targetMapId:n,mustQueue:i,sourceMapId:this.mapId,data:Nn(e,s)},s),{cancel:function(){r&&delete a.callbacks[o],a.target.postMessage({id:o,type:\"<cancel>\",targetMapId:n,sourceMapId:a.mapId})}}},Cc.prototype.receive=function(t){var e=t.data,r=e.id;if(r&&(!e.targetMapId||this.mapId===e.targetMapId))if(\"<cancel>\"===e.type){delete this.tasks[r];var n=this.cancelCallbacks[r];delete this.cancelCallbacks[r],n&&n()}else k()||e.mustQueue?(this.tasks[r]=e,this.taskQueue.push(r),this.invoker.trigger()):this.processTask(r,e)},Cc.prototype.process=function(){if(this.taskQueue.length){var t=this.taskQueue.shift(),e=this.tasks[t];delete this.tasks[t],this.taskQueue.length&&this.invoker.trigger(),e&&this.processTask(t,e)}},Cc.prototype.processTask=function(t,e){var r=this;if(\"<response>\"===e.type){var n=this.callbacks[t];delete this.callbacks[t],n&&(e.error?n(jn(e.error)):n(null,jn(e.data)))}else{var i=!1,a=S(this.globalScope)?void 0:[],o=e.hasCallback?function(e,n){i=!0,delete r.cancelCallbacks[t],r.target.postMessage({id:t,type:\"<response>\",sourceMapId:r.mapId,error:e?Nn(e):null,data:Nn(n,a)},a)}:function(t){i=!0},s=null,l=jn(e.data);if(this.parent[e.type])s=this.parent[e.type](e.sourceMapId,l,o);else if(this.parent.getWorkerSource){var c=e.type.split(\".\");s=this.parent.getWorkerSource(e.sourceMapId,c[0],l.source)[c[1]](l,o)}else o(new Error(\"Could not find function \"+e.type));!i&&s&&s.cancel&&(this.cancelCallbacks[t]=s.cancel)}},Cc.prototype.remove=function(){this.invoker.remove(),this.target.removeEventListener(\"message\",this.receive,!1)};var Ic=function(t,e){t&&(e?this.setSouthWest(t).setNorthEast(e):4===t.length?this.setSouthWest([t[0],t[1]]).setNorthEast([t[2],t[3]]):this.setSouthWest(t[0]).setNorthEast(t[1]))};Ic.prototype.setNorthEast=function(t){return this._ne=t instanceof Pc?new Pc(t.lng,t.lat):Pc.convert(t),this},Ic.prototype.setSouthWest=function(t){return this._sw=t instanceof Pc?new Pc(t.lng,t.lat):Pc.convert(t),this},Ic.prototype.extend=function(t){var e,r,n=this._sw,i=this._ne;if(t instanceof Pc)e=t,r=t;else{if(!(t instanceof Ic))return Array.isArray(t)?4===t.length||t.every(Array.isArray)?this.extend(Ic.convert(t)):this.extend(Pc.convert(t)):this;if(r=t._ne,!(e=t._sw)||!r)return this}return n||i?(n.lng=Math.min(e.lng,n.lng),n.lat=Math.min(e.lat,n.lat),i.lng=Math.max(r.lng,i.lng),i.lat=Math.max(r.lat,i.lat)):(this._sw=new Pc(e.lng,e.lat),this._ne=new Pc(r.lng,r.lat)),this},Ic.prototype.getCenter=function(){return new Pc((this._sw.lng+this._ne.lng)/2,(this._sw.lat+this._ne.lat)/2)},Ic.prototype.getSouthWest=function(){return this._sw},Ic.prototype.getNorthEast=function(){return this._ne},Ic.prototype.getNorthWest=function(){return new Pc(this.getWest(),this.getNorth())},Ic.prototype.getSouthEast=function(){return new Pc(this.getEast(),this.getSouth())},Ic.prototype.getWest=function(){return this._sw.lng},Ic.prototype.getSouth=function(){return this._sw.lat},Ic.prototype.getEast=function(){return this._ne.lng},Ic.prototype.getNorth=function(){return this._ne.lat},Ic.prototype.toArray=function(){return[this._sw.toArray(),this._ne.toArray()]},Ic.prototype.toString=function(){return\"LngLatBounds(\"+this._sw.toString()+\", \"+this._ne.toString()+\")\"},Ic.prototype.isEmpty=function(){return!(this._sw&&this._ne)},Ic.prototype.contains=function(t){var e=Pc.convert(t),r=e.lng,n=e.lat,i=this._sw.lng<=r&&r<=this._ne.lng;return this._sw.lng>this._ne.lng&&(i=this._sw.lng>=r&&r>=this._ne.lng),this._sw.lat<=n&&n<=this._ne.lat&&i},Ic.convert=function(t){return!t||t instanceof Ic?t:new Ic(t)};var Pc=function(t,e){if(isNaN(t)||isNaN(e))throw new Error(\"Invalid LngLat object: (\"+t+\", \"+e+\")\");if(this.lng=+t,this.lat=+e,this.lat>90||this.lat<-90)throw new Error(\"Invalid LngLat latitude value: must be between -90 and 90\")};Pc.prototype.wrap=function(){return new Pc(c(this.lng,-180,180),this.lat)},Pc.prototype.toArray=function(){return[this.lng,this.lat]},Pc.prototype.toString=function(){return\"LngLat(\"+this.lng+\", \"+this.lat+\")\"},Pc.prototype.distanceTo=function(t){var e=Math.PI/180,r=this.lat*e,n=t.lat*e,i=Math.sin(r)*Math.sin(n)+Math.cos(r)*Math.cos(n)*Math.cos((t.lng-this.lng)*e);return 6371008.8*Math.acos(Math.min(i,1))},Pc.prototype.toBounds=function(t){void 0===t&&(t=0);var e=360*t/40075017,r=e/Math.cos(Math.PI/180*this.lat);return new Ic(new Pc(this.lng-r,this.lat-e),new Pc(this.lng+r,this.lat+e))},Pc.convert=function(t){if(t instanceof Pc)return t;if(Array.isArray(t)&&(2===t.length||3===t.length))return new Pc(Number(t[0]),Number(t[1]));if(!Array.isArray(t)&&\"object\"==typeof t&&null!==t)return new Pc(Number(\"lng\"in t?t.lng:t.lon),Number(t.lat));throw new Error(\"`LngLatLike` argument must be specified as a LngLat instance, an object {lng: <lng>, lat: <lat>}, an object {lon: <lng>, lat: <lat>}, or an array of [<lng>, <lat>]\")};var zc=2*Math.PI*6371008.8;function Oc(t){return zc*Math.cos(t*Math.PI/180)}function Dc(t){return(180+t)/360}function Rc(t){return(180-180/Math.PI*Math.log(Math.tan(Math.PI/4+t*Math.PI/360)))/360}function Fc(t,e){return t/Oc(e)}function Bc(t){return 360/Math.PI*Math.atan(Math.exp((180-360*t)*Math.PI/180))-90}var Nc=function(t,e,r){void 0===r&&(r=0),this.x=+t,this.y=+e,this.z=+r};Nc.fromLngLat=function(t,e){void 0===e&&(e=0);var r=Pc.convert(t);return new Nc(Dc(r.lng),Rc(r.lat),Fc(e,r.lat))},Nc.prototype.toLngLat=function(){return new Pc(360*this.x-180,Bc(this.y))},Nc.prototype.toAltitude=function(){return this.z*Oc(Bc(this.y))},Nc.prototype.meterInMercatorCoordinateUnits=function(){return 1/zc*(t=Bc(this.y),1/Math.cos(t*Math.PI/180));var t};var jc=function(t,e,r){this.z=t,this.x=e,this.y=r,this.key=qc(0,t,t,e,r)};jc.prototype.equals=function(t){return this.z===t.z&&this.x===t.x&&this.y===t.y},jc.prototype.url=function(t,e){var r,n,i,a,o,s=(n=this.y,i=this.z,a=Lc(256*(r=this.x),256*(n=Math.pow(2,i)-n-1),i),o=Lc(256*(r+1),256*(n+1),i),a[0]+\",\"+a[1]+\",\"+o[0]+\",\"+o[1]),l=function(t,e,r){for(var n,i=\"\",a=t;a>0;a--)i+=(e&(n=1<<a-1)?1:0)+(r&n?2:0);return i}(this.z,this.x,this.y);return t[(this.x+this.y)%t.length].replace(\"{prefix}\",(this.x%16).toString(16)+(this.y%16).toString(16)).replace(\"{z}\",String(this.z)).replace(\"{x}\",String(this.x)).replace(\"{y}\",String(\"tms\"===e?Math.pow(2,this.z)-this.y-1:this.y)).replace(\"{quadkey}\",l).replace(\"{bbox-epsg-3857}\",s)},jc.prototype.getTilePoint=function(t){var e=Math.pow(2,this.z);return new i(8192*(t.x*e-this.x),8192*(t.y*e-this.y))},jc.prototype.toString=function(){return this.z+\"/\"+this.x+\"/\"+this.y};var Uc=function(t,e){this.wrap=t,this.canonical=e,this.key=qc(t,e.z,e.z,e.x,e.y)},Vc=function(t,e,r,n,i){this.overscaledZ=t,this.wrap=e,this.canonical=new jc(r,+n,+i),this.key=qc(e,t,r,n,i)};function qc(t,e,r,n,i){(t*=2)<0&&(t=-1*t-1);var a=1<<r;return(a*a*t+a*i+n).toString(36)+r.toString(36)+e.toString(36)}Vc.prototype.equals=function(t){return this.overscaledZ===t.overscaledZ&&this.wrap===t.wrap&&this.canonical.equals(t.canonical)},Vc.prototype.scaledTo=function(t){var e=this.canonical.z-t;return t>this.canonical.z?new Vc(t,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y):new Vc(t,this.wrap,t,this.canonical.x>>e,this.canonical.y>>e)},Vc.prototype.calculateScaledKey=function(t,e){var r=this.canonical.z-t;return t>this.canonical.z?qc(this.wrap*+e,t,this.canonical.z,this.canonical.x,this.canonical.y):qc(this.wrap*+e,t,t,this.canonical.x>>r,this.canonical.y>>r)},Vc.prototype.isChildOf=function(t){if(t.wrap!==this.wrap)return!1;var e=this.canonical.z-t.canonical.z;return 0===t.overscaledZ||t.overscaledZ<this.overscaledZ&&t.canonical.x===this.canonical.x>>e&&t.canonical.y===this.canonical.y>>e},Vc.prototype.children=function(t){if(this.overscaledZ>=t)return[new Vc(this.overscaledZ+1,this.wrap,this.canonical.z,this.canonical.x,this.canonical.y)];var e=this.canonical.z+1,r=2*this.canonical.x,n=2*this.canonical.y;return[new Vc(e,this.wrap,e,r,n),new Vc(e,this.wrap,e,r+1,n),new Vc(e,this.wrap,e,r,n+1),new Vc(e,this.wrap,e,r+1,n+1)]},Vc.prototype.isLessThan=function(t){return this.wrap<t.wrap||!(this.wrap>t.wrap)&&(this.overscaledZ<t.overscaledZ||!(this.overscaledZ>t.overscaledZ)&&(this.canonical.x<t.canonical.x||!(this.canonical.x>t.canonical.x)&&this.canonical.y<t.canonical.y))},Vc.prototype.wrapped=function(){return new Vc(this.overscaledZ,0,this.canonical.z,this.canonical.x,this.canonical.y)},Vc.prototype.unwrapTo=function(t){return new Vc(this.overscaledZ,t,this.canonical.z,this.canonical.x,this.canonical.y)},Vc.prototype.overscaleFactor=function(){return Math.pow(2,this.overscaledZ-this.canonical.z)},Vc.prototype.toUnwrapped=function(){return new Uc(this.wrap,this.canonical)},Vc.prototype.toString=function(){return this.overscaledZ+\"/\"+this.canonical.x+\"/\"+this.canonical.y},Vc.prototype.getTilePoint=function(t){return this.canonical.getTilePoint(new Nc(t.x-this.wrap,t.y))},Dn(\"CanonicalTileID\",jc),Dn(\"OverscaledTileID\",Vc,{omit:[\"posMatrix\"]});var Hc=function(t,e,r){if(this.uid=t,e.height!==e.width)throw new RangeError(\"DEM tiles must be square\");if(r&&\"mapbox\"!==r&&\"terrarium\"!==r)return _('\"'+r+'\" is not a valid encoding type. Valid types include \"mapbox\" and \"terrarium\".');this.stride=e.height;var n=this.dim=e.height-2;this.data=new Uint32Array(e.data.buffer),this.encoding=r||\"mapbox\";for(var i=0;i<n;i++)this.data[this._idx(-1,i)]=this.data[this._idx(0,i)],this.data[this._idx(n,i)]=this.data[this._idx(n-1,i)],this.data[this._idx(i,-1)]=this.data[this._idx(i,0)],this.data[this._idx(i,n)]=this.data[this._idx(i,n-1)];this.data[this._idx(-1,-1)]=this.data[this._idx(0,0)],this.data[this._idx(n,-1)]=this.data[this._idx(n-1,0)],this.data[this._idx(-1,n)]=this.data[this._idx(0,n-1)],this.data[this._idx(n,n)]=this.data[this._idx(n-1,n-1)]};Hc.prototype.get=function(t,e){var r=new Uint8Array(this.data.buffer),n=4*this._idx(t,e);return(\"terrarium\"===this.encoding?this._unpackTerrarium:this._unpackMapbox)(r[n],r[n+1],r[n+2])},Hc.prototype.getUnpackVector=function(){return\"terrarium\"===this.encoding?[256,1,1/256,32768]:[6553.6,25.6,.1,1e4]},Hc.prototype._idx=function(t,e){if(t<-1||t>=this.dim+1||e<-1||e>=this.dim+1)throw new RangeError(\"out of range source coordinates for DEM data\");return(e+1)*this.stride+(t+1)},Hc.prototype._unpackMapbox=function(t,e,r){return(256*t*256+256*e+r)/10-1e4},Hc.prototype._unpackTerrarium=function(t,e,r){return 256*t+e+r/256-32768},Hc.prototype.getPixels=function(){return new po({width:this.stride,height:this.stride},new Uint8Array(this.data.buffer))},Hc.prototype.backfillBorder=function(t,e,r){if(this.dim!==t.dim)throw new Error(\"dem dimension mismatch\");var n=e*this.dim,i=e*this.dim+this.dim,a=r*this.dim,o=r*this.dim+this.dim;switch(e){case-1:n=i-1;break;case 1:i=n+1}switch(r){case-1:a=o-1;break;case 1:o=a+1}for(var s=-e*this.dim,l=-r*this.dim,c=a;c<o;c++)for(var u=n;u<i;u++)this.data[this._idx(u,c)]=t.data[this._idx(u+s,c+l)]},Dn(\"DEMData\",Hc);var Gc=function(t){this._stringToNumber={},this._numberToString=[];for(var e=0;e<t.length;e++){var r=t[e];this._stringToNumber[r]=e,this._numberToString[e]=r}};Gc.prototype.encode=function(t){return this._stringToNumber[t]},Gc.prototype.decode=function(t){return this._numberToString[t]};var Yc=function(t,e,r,n,i){this.type=\"Feature\",this._vectorTileFeature=t,t._z=e,t._x=r,t._y=n,this.properties=t.properties,this.id=i},Wc={geometry:{configurable:!0}};Wc.geometry.get=function(){return void 0===this._geometry&&(this._geometry=this._vectorTileFeature.toGeoJSON(this._vectorTileFeature._x,this._vectorTileFeature._y,this._vectorTileFeature._z).geometry),this._geometry},Wc.geometry.set=function(t){this._geometry=t},Yc.prototype.toJSON=function(){var t={geometry:this.geometry};for(var e in this)\"_geometry\"!==e&&\"_vectorTileFeature\"!==e&&(t[e]=this[e]);return t},Object.defineProperties(Yc.prototype,Wc);var Xc=function(){this.state={},this.stateChanges={},this.deletedStates={}};Xc.prototype.updateState=function(t,e,r){var n=String(e);if(this.stateChanges[t]=this.stateChanges[t]||{},this.stateChanges[t][n]=this.stateChanges[t][n]||{},u(this.stateChanges[t][n],r),null===this.deletedStates[t])for(var i in this.deletedStates[t]={},this.state[t])i!==n&&(this.deletedStates[t][i]=null);else if(this.deletedStates[t]&&null===this.deletedStates[t][n])for(var a in this.deletedStates[t][n]={},this.state[t][n])r[a]||(this.deletedStates[t][n][a]=null);else for(var o in r)this.deletedStates[t]&&this.deletedStates[t][n]&&null===this.deletedStates[t][n][o]&&delete this.deletedStates[t][n][o]},Xc.prototype.removeFeatureState=function(t,e,r){if(null!==this.deletedStates[t]){var n=String(e);if(this.deletedStates[t]=this.deletedStates[t]||{},r&&void 0!==e)null!==this.deletedStates[t][n]&&(this.deletedStates[t][n]=this.deletedStates[t][n]||{},this.deletedStates[t][n][r]=null);else if(void 0!==e)if(this.stateChanges[t]&&this.stateChanges[t][n])for(r in this.deletedStates[t][n]={},this.stateChanges[t][n])this.deletedStates[t][n][r]=null;else this.deletedStates[t][n]=null;else this.deletedStates[t]=null}},Xc.prototype.getState=function(t,e){var r=String(e),n=u({},(this.state[t]||{})[r],(this.stateChanges[t]||{})[r]);if(null===this.deletedStates[t])return{};if(this.deletedStates[t]){var i=this.deletedStates[t][e];if(null===i)return{};for(var a in i)delete n[a]}return n},Xc.prototype.initializeTileState=function(t,e){t.setFeatureState(this.state,e)},Xc.prototype.coalesceChanges=function(t,e){var r={};for(var n in this.stateChanges){this.state[n]=this.state[n]||{};var i={};for(var a in this.stateChanges[n])this.state[n][a]||(this.state[n][a]={}),u(this.state[n][a],this.stateChanges[n][a]),i[a]=this.state[n][a];r[n]=i}for(var o in this.deletedStates){this.state[o]=this.state[o]||{};var s={};if(null===this.deletedStates[o])for(var l in this.state[o])s[l]={},this.state[o][l]={};else for(var c in this.deletedStates[o]){if(null===this.deletedStates[o][c])this.state[o][c]={};else for(var f=0,h=Object.keys(this.deletedStates[o][c]);f<h.length;f+=1)delete this.state[o][c][h[f]];s[c]=this.state[o][c]}r[o]=r[o]||{},u(r[o],s)}if(this.stateChanges={},this.deletedStates={},0!==Object.keys(r).length)for(var p in t)t[p].setFeatureState(r,e)};var Zc=function(t,e){this.tileID=t,this.x=t.canonical.x,this.y=t.canonical.y,this.z=t.canonical.z,this.grid=new Ln(8192,16,0),this.grid3D=new Ln(8192,16,0),this.featureIndexArray=new ra,this.promoteId=e};function Jc(t,e,r,n,i){return v(t,(function(t,a){var o=e instanceof hi?e.get(a):null;return o&&o.evaluate?o.evaluate(r,n,i):o}))}function Kc(t){for(var e=1/0,r=1/0,n=-1/0,i=-1/0,a=0,o=t;a<o.length;a+=1){var s=o[a];e=Math.min(e,s.x),r=Math.min(r,s.y),n=Math.max(n,s.x),i=Math.max(i,s.y)}return{minX:e,minY:r,maxX:n,maxY:i}}function Qc(t,e){return e-t}Zc.prototype.insert=function(t,e,r,n,i,a){var o=this.featureIndexArray.length;this.featureIndexArray.emplaceBack(r,n,i);for(var s=a?this.grid3D:this.grid,l=0;l<e.length;l++){for(var c=e[l],u=[1/0,1/0,-1/0,-1/0],f=0;f<c.length;f++){var h=c[f];u[0]=Math.min(u[0],h.x),u[1]=Math.min(u[1],h.y),u[2]=Math.max(u[2],h.x),u[3]=Math.max(u[3],h.y)}u[0]<8192&&u[1]<8192&&u[2]>=0&&u[3]>=0&&s.insert(o,u[0],u[1],u[2],u[3])}},Zc.prototype.loadVTLayers=function(){return this.vtLayers||(this.vtLayers=new gs.VectorTile(new Hs(this.rawTileData)).layers,this.sourceLayerCoder=new Gc(this.vtLayers?Object.keys(this.vtLayers).sort():[\"_geojsonTileLayer\"])),this.vtLayers},Zc.prototype.query=function(t,e,r,n){var a=this;this.loadVTLayers();for(var o=t.params||{},s=8192/t.tileSize/t.scale,l=rn(o.filter),c=t.queryGeometry,u=t.queryPadding*s,f=Kc(c),h=this.grid.query(f.minX-u,f.minY-u,f.maxX+u,f.maxY+u),p=Kc(t.cameraQueryGeometry),d=0,g=this.grid3D.query(p.minX-u,p.minY-u,p.maxX+u,p.maxY+u,(function(e,r,n,a){return function(t,e,r,n,a){for(var o=0,s=t;o<s.length;o+=1){var l=s[o];if(e<=l.x&&r<=l.y&&n>=l.x&&a>=l.y)return!0}var c=[new i(e,r),new i(e,a),new i(n,a),new i(n,r)];if(t.length>2)for(var u=0,f=c;u<f.length;u+=1)if(Wa(t,f[u]))return!0;for(var h=0;h<t.length-1;h++)if(Xa(t[h],t[h+1],c))return!0;return!1}(t.cameraQueryGeometry,e-u,r-u,n+u,a+u)}));d<g.length;d+=1)h.push(g[d]);h.sort(Qc);for(var m,v={},y=function(i){var u=h[i];if(u!==m){m=u;var f=a.featureIndexArray.get(u),p=null;a.loadMatchingFeature(v,f.bucketIndex,f.sourceLayerIndex,f.featureIndex,l,o.layers,o.availableImages,e,r,n,(function(e,r,n){return p||(p=Da(e)),r.queryIntersectsFeature(c,e,n,p,a.z,t.transform,s,t.pixelPosMatrix)}))}},x=0;x<h.length;x++)y(x);return v},Zc.prototype.loadMatchingFeature=function(t,e,r,n,i,a,o,s,l,c,u){var f=this.bucketLayerIDs[e];if(!a||function(t,e){for(var r=0;r<t.length;r++)if(e.indexOf(t[r])>=0)return!0;return!1}(a,f)){var h=this.sourceLayerCoder.decode(r),p=this.vtLayers[h].feature(n);if(i.filter(new ii(this.tileID.overscaledZ),p))for(var d=this.getId(p,h),g=0;g<f.length;g++){var m=f[g];if(!(a&&a.indexOf(m)<0)){var v=s[m];if(v){var y={};void 0!==d&&c&&(y=c.getState(v.sourceLayer||\"_geojsonTileLayer\",d));var x=l[m];x.paint=Jc(x.paint,v.paint,p,y,o),x.layout=Jc(x.layout,v.layout,p,y,o);var b=!u||u(p,v,y);if(b){var _=new Yc(p,this.z,this.x,this.y,d);_.layer=x;var w=t[m];void 0===w&&(w=t[m]=[]),w.push({featureIndex:n,feature:_,intersectionZ:b})}}}}}},Zc.prototype.lookupSymbolFeatures=function(t,e,r,n,i,a,o,s){var l={};this.loadVTLayers();for(var c=rn(i),u=0,f=t;u<f.length;u+=1)this.loadMatchingFeature(l,r,n,f[u],c,a,o,s,e);return l},Zc.prototype.hasLayer=function(t){for(var e=0,r=this.bucketLayerIDs;e<r.length;e+=1)for(var n=0,i=r[e];n<i.length;n+=1)if(t===i[n])return!0;return!1},Zc.prototype.getId=function(t,e){var r=t.id;return this.promoteId&&\"boolean\"==typeof(r=t.properties[\"string\"==typeof this.promoteId?this.promoteId:this.promoteId[e]])&&(r=Number(r)),r},Dn(\"FeatureIndex\",Zc,{omit:[\"rawTileData\",\"sourceLayerCoder\"]});var $c=function(t,e){this.tileID=t,this.uid=h(),this.uses=0,this.tileSize=e,this.buckets={},this.expirationTime=null,this.queryPadding=0,this.hasSymbolBuckets=!1,this.hasRTLText=!1,this.dependencies={},this.expiredRequestCount=0,this.state=\"loading\"};$c.prototype.registerFadeDuration=function(t){var e=t+this.timeAdded;e<R.now()||this.fadeEndTime&&e<this.fadeEndTime||(this.fadeEndTime=e)},$c.prototype.wasRequested=function(){return\"errored\"===this.state||\"loaded\"===this.state||\"reloading\"===this.state},$c.prototype.loadVectorData=function(t,e,r){if(this.hasData()&&this.unloadVectorData(),this.state=\"loaded\",t){for(var n in t.featureIndex&&(this.latestFeatureIndex=t.featureIndex,t.rawTileData?(this.latestRawTileData=t.rawTileData,this.latestFeatureIndex.rawTileData=t.rawTileData):this.latestRawTileData&&(this.latestFeatureIndex.rawTileData=this.latestRawTileData)),this.collisionBoxArray=t.collisionBoxArray,this.buckets=function(t,e){var r={};if(!e)return r;for(var n=function(){var t=a[i],n=t.layerIds.map((function(t){return e.getLayer(t)})).filter(Boolean);if(0!==n.length){t.layers=n,t.stateDependentLayerIds&&(t.stateDependentLayers=t.stateDependentLayerIds.map((function(t){return n.filter((function(e){return e.id===t}))[0]})));for(var o=0,s=n;o<s.length;o+=1)r[s[o].id]=t}},i=0,a=t;i<a.length;i+=1)n();return r}(t.buckets,e.style),this.hasSymbolBuckets=!1,this.buckets){var i=this.buckets[n];if(i instanceof fc){if(this.hasSymbolBuckets=!0,!r)break;i.justReloaded=!0}}if(this.hasRTLText=!1,this.hasSymbolBuckets)for(var a in this.buckets){var o=this.buckets[a];if(o instanceof fc&&o.hasRTLText){this.hasRTLText=!0,ni.isLoading()||ni.isLoaded()||\"deferred\"!==ei()||ri();break}}for(var s in this.queryPadding=0,this.buckets){var l=this.buckets[s];this.queryPadding=Math.max(this.queryPadding,e.style.getLayer(s).queryRadius(l))}t.imageAtlas&&(this.imageAtlas=t.imageAtlas),t.glyphAtlasImage&&(this.glyphAtlasImage=t.glyphAtlasImage)}else this.collisionBoxArray=new Xi},$c.prototype.unloadVectorData=function(){for(var t in this.buckets)this.buckets[t].destroy();this.buckets={},this.imageAtlasTexture&&this.imageAtlasTexture.destroy(),this.imageAtlas&&(this.imageAtlas=null),this.glyphAtlasTexture&&this.glyphAtlasTexture.destroy(),this.latestFeatureIndex=null,this.state=\"unloaded\"},$c.prototype.getBucket=function(t){return this.buckets[t.id]},$c.prototype.upload=function(t){for(var e in this.buckets){var r=this.buckets[e];r.uploadPending()&&r.upload(t)}var n=t.gl;this.imageAtlas&&!this.imageAtlas.uploaded&&(this.imageAtlasTexture=new Sc(t,this.imageAtlas.image,n.RGBA),this.imageAtlas.uploaded=!0),this.glyphAtlasImage&&(this.glyphAtlasTexture=new Sc(t,this.glyphAtlasImage,n.ALPHA),this.glyphAtlasImage=null)},$c.prototype.prepare=function(t){this.imageAtlas&&this.imageAtlas.patchUpdatedImages(t,this.imageAtlasTexture)},$c.prototype.queryRenderedFeatures=function(t,e,r,n,i,a,o,s,l,c){return this.latestFeatureIndex&&this.latestFeatureIndex.rawTileData?this.latestFeatureIndex.query({queryGeometry:n,cameraQueryGeometry:i,scale:a,tileSize:this.tileSize,pixelPosMatrix:c,transform:s,params:o,queryPadding:this.queryPadding*l},t,e,r):{}},$c.prototype.querySourceFeatures=function(t,e){var r=this.latestFeatureIndex;if(r&&r.rawTileData){var n=r.loadVTLayers(),i=e?e.sourceLayer:\"\",a=n._geojsonTileLayer||n[i];if(a)for(var o=rn(e&&e.filter),s=this.tileID.canonical,l=s.z,c=s.x,u=s.y,f={z:l,x:c,y:u},h=0;h<a.length;h++){var p=a.feature(h);if(o.filter(new ii(this.tileID.overscaledZ),p)){var d=r.getId(p,i),g=new Yc(p,l,c,u,d);g.tile=f,t.push(g)}}}},$c.prototype.hasData=function(){return\"loaded\"===this.state||\"reloading\"===this.state||\"expired\"===this.state},$c.prototype.patternsLoaded=function(){return this.imageAtlas&&!!Object.keys(this.imageAtlas.patternPositions).length},$c.prototype.setExpiryData=function(t){var e=this.expirationTime;if(t.cacheControl){var r=M(t.cacheControl);r[\"max-age\"]&&(this.expirationTime=Date.now()+1e3*r[\"max-age\"])}else t.expires&&(this.expirationTime=new Date(t.expires).getTime());if(this.expirationTime){var n=Date.now(),i=!1;if(this.expirationTime>n)i=!1;else if(e)if(this.expirationTime<e)i=!0;else{var a=this.expirationTime-e;a?this.expirationTime=n+Math.max(a,3e4):i=!0}else i=!0;i?(this.expiredRequestCount++,this.state=\"expired\"):this.expiredRequestCount=0}},$c.prototype.getExpiryTimeout=function(){if(this.expirationTime)return this.expiredRequestCount?1e3*(1<<Math.min(this.expiredRequestCount-1,31)):Math.min(this.expirationTime-(new Date).getTime(),Math.pow(2,31)-1)},$c.prototype.setFeatureState=function(t,e){if(this.latestFeatureIndex&&this.latestFeatureIndex.rawTileData&&0!==Object.keys(t).length){var r=this.latestFeatureIndex.loadVTLayers();for(var n in this.buckets)if(e.style.hasLayer(n)){var i=this.buckets[n],a=i.layers[0].sourceLayer||\"_geojsonTileLayer\",o=r[a],s=t[a];if(o&&s&&0!==Object.keys(s).length){i.update(s,o,this.imageAtlas&&this.imageAtlas.patternPositions||{});var l=e&&e.style&&e.style.getLayer(n);l&&(this.queryPadding=Math.max(this.queryPadding,l.queryRadius(i)))}}}},$c.prototype.holdingForFade=function(){return void 0!==this.symbolFadeHoldUntil},$c.prototype.symbolFadeFinished=function(){return!this.symbolFadeHoldUntil||this.symbolFadeHoldUntil<R.now()},$c.prototype.clearFadeHold=function(){this.symbolFadeHoldUntil=void 0},$c.prototype.setHoldDuration=function(t){this.symbolFadeHoldUntil=R.now()+t},$c.prototype.setDependencies=function(t,e){for(var r={},n=0,i=e;n<i.length;n+=1)r[i[n]]=!0;this.dependencies[t]=r},$c.prototype.hasDependency=function(t,e){for(var r=0,n=t;r<n.length;r+=1){var i=this.dependencies[n[r]];if(i)for(var a=0,o=e;a<o.length;a+=1)if(i[o[a]])return!0}return!1};var tu=self.performance,eu=function(t){this._marks={start:[t.url,\"start\"].join(\"#\"),end:[t.url,\"end\"].join(\"#\"),measure:t.url.toString()},tu.mark(this._marks.start)};eu.prototype.finish=function(){tu.mark(this._marks.end);var t=tu.getEntriesByName(this._marks.measure);return 0===t.length&&(tu.measure(this._marks.measure,this._marks.start,this._marks.end),t=tu.getEntriesByName(this._marks.measure),tu.clearMarks(this._marks.start),tu.clearMarks(this._marks.end),tu.clearMeasures(this._marks.measure)),t},t.Actor=Cc,t.AlphaImage=ho,t.CanonicalTileID=jc,t.CollisionBoxArray=Xi,t.Color=Kt,t.DEMData=Hc,t.DataConstantProperty=pi,t.DictionaryCoder=Gc,t.EXTENT=8192,t.ErrorEvent=kt,t.EvaluationParameters=ii,t.Event=Tt,t.Evented=Mt,t.FeatureIndex=Zc,t.FillBucket=rs,t.FillExtrusionBucket=xs,t.ImageAtlas=dl,t.ImagePosition=hl,t.LineBucket=Cs,t.LngLat=Pc,t.LngLatBounds=Ic,t.MercatorCoordinate=Nc,t.ONE_EM=24,t.OverscaledTileID=Vc,t.Point=i,t.Point$1=i,t.Properties=yi,t.Protobuf=Hs,t.RGBAImage=po,t.RequestManager=q,t.RequestPerformance=eu,t.ResourceType=ht,t.SegmentVector=ia,t.SourceFeatureState=Xc,t.StructArrayLayout1ui2=Hi,t.StructArrayLayout2f1f2i16=Di,t.StructArrayLayout2i4=Mi,t.StructArrayLayout3ui6=Fi,t.StructArrayLayout4i8=Ai,t.SymbolBucket=fc,t.Texture=Sc,t.Tile=$c,t.Transitionable=si,t.Uniform1f=va,t.Uniform1i=ma,t.Uniform2f=ya,t.Uniform3f=xa,t.Uniform4f=ba,t.UniformColor=_a,t.UniformMatrix4f=Ta,t.UnwrappedTileID=Uc,t.ValidationError=St,t.WritingMode=gl,t.ZoomHistory=Un,t.add=function(t,e,r){return t[0]=e[0]+r[0],t[1]=e[1]+r[1],t[2]=e[2]+r[2],t},t.addDynamicAttributes=sc,t.asyncAll=function(t,e,r){if(!t.length)return r(null,[]);var n=t.length,i=new Array(t.length),a=null;t.forEach((function(t,o){e(t,(function(t,e){t&&(a=t),i[o]=e,0==--n&&r(a,i)}))}))},t.bezier=o,t.bindAll=g,t.browser=R,t.cacheEntryPossiblyAdded=function(t){++ut>ot&&(t.getActor().send(\"enforceCacheSizeLimit\",at),ut=0)},t.clamp=l,t.clearTileCache=function(t){var e=self.caches.delete(\"mapbox-tiles\");t&&e.catch(t).then((function(){return t()}))},t.clipLine=jl,t.clone=function(t){var e=new to(16);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e},t.clone$1=x,t.clone$2=function(t){var e=new to(3);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e},t.collisionCircleLayout=Ns,t.config=F,t.create=function(){var t=new to(16);return to!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0),t[0]=1,t[5]=1,t[10]=1,t[15]=1,t},t.create$1=function(){var t=new to(9);return to!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[5]=0,t[6]=0,t[7]=0),t[0]=1,t[4]=1,t[8]=1,t},t.create$2=function(){var t=new to(4);return to!=Float32Array&&(t[1]=0,t[2]=0),t[0]=1,t[3]=1,t},t.createCommonjsModule=e,t.createExpression=qr,t.createLayout=Ti,t.createStyleLayer=function(t){return\"custom\"===t.type?new bc(t):new _c[t.type](t)},t.cross=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=r[0],s=r[1],l=r[2];return t[0]=i*l-a*s,t[1]=a*o-n*l,t[2]=n*s-i*o,t},t.deepEqual=function t(e,r){if(Array.isArray(e)){if(!Array.isArray(r)||e.length!==r.length)return!1;for(var n=0;n<e.length;n++)if(!t(e[n],r[n]))return!1;return!0}if(\"object\"==typeof e&&null!==e&&null!==r){if(\"object\"!=typeof r)return!1;if(Object.keys(e).length!==Object.keys(r).length)return!1;for(var i in e)if(!t(e[i],r[i]))return!1;return!0}return e===r},t.dot=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]},t.dot$1=function(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]+t[3]*e[3]},t.ease=s,t.emitValidationErrors=Cn,t.endsWith=m,t.enforceCacheSizeLimit=function(t){st(),Q&&Q.then((function(e){e.keys().then((function(r){for(var n=0;n<r.length-t;n++)e.delete(r[n])}))}))},t.evaluateSizeForFeature=Il,t.evaluateSizeForZoom=Pl,t.evaluateVariableOffset=$l,t.evented=ti,t.extend=u,t.featureFilter=rn,t.filterObject=y,t.fromRotation=function(t,e){var r=Math.sin(e),n=Math.cos(e);return t[0]=n,t[1]=r,t[2]=0,t[3]=-r,t[4]=n,t[5]=0,t[6]=0,t[7]=0,t[8]=1,t},t.getAnchorAlignment=Al,t.getAnchorJustification=tc,t.getArrayBuffer=yt,t.getImage=bt,t.getJSON=function(t,e){return vt(u(t,{type:\"json\"}),e)},t.getRTLTextPluginStatus=ei,t.getReferrer=mt,t.getVideo=function(t,e){var r,n,i=self.document.createElement(\"video\");i.muted=!0,i.onloadstart=function(){e(null,i)};for(var a=0;a<t.length;a++){var o=self.document.createElement(\"source\");r=t[a],n=void 0,(n=self.document.createElement(\"a\")).href=r,(n.protocol!==self.document.location.protocol||n.host!==self.document.location.host)&&(i.crossOrigin=\"Anonymous\"),o.src=t[a],i.appendChild(o)}return{cancel:function(){}}},t.identity=eo,t.invert=function(t,e){var r=e[0],n=e[1],i=e[2],a=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],f=e[9],h=e[10],p=e[11],d=e[12],g=e[13],m=e[14],v=e[15],y=r*s-n*o,x=r*l-i*o,b=r*c-a*o,_=n*l-i*s,w=n*c-a*s,T=i*c-a*l,k=u*g-f*d,M=u*m-h*d,A=u*v-p*d,S=f*m-h*g,E=f*v-p*g,C=h*v-p*m,L=y*C-x*E+b*S+_*A-w*M+T*k;return L?(t[0]=(s*C-l*E+c*S)*(L=1/L),t[1]=(i*E-n*C-a*S)*L,t[2]=(g*T-m*w+v*_)*L,t[3]=(h*w-f*T-p*_)*L,t[4]=(l*A-o*C-c*M)*L,t[5]=(r*C-i*A+a*M)*L,t[6]=(m*b-d*T-v*x)*L,t[7]=(u*T-h*b+p*x)*L,t[8]=(o*E-s*A+c*k)*L,t[9]=(n*A-r*E-a*k)*L,t[10]=(d*w-g*b+v*y)*L,t[11]=(f*b-u*w-p*y)*L,t[12]=(s*M-o*S-l*k)*L,t[13]=(r*S-n*M+i*k)*L,t[14]=(g*x-d*_-m*y)*L,t[15]=(u*_-f*x+h*y)*L,t):null},t.isChar=Vn,t.isMapboxURL=H,t.keysDifference=function(t,e){var r=[];for(var n in t)n in e||r.push(n);return r},t.makeRequest=vt,t.mapObject=v,t.mercatorXfromLng=Dc,t.mercatorYfromLat=Rc,t.mercatorZfromAltitude=Fc,t.mul=io,t.multiply=ro,t.mvt=gs,t.normalize=function(t,e){var r=e[0],n=e[1],i=e[2],a=r*r+n*n+i*i;return a>0&&(a=1/Math.sqrt(a)),t[0]=e[0]*a,t[1]=e[1]*a,t[2]=e[2]*a,t},t.number=Ue,t.offscreenCanvasSupported=ft,t.ortho=function(t,e,r,n,i,a,o){var s=1/(e-r),l=1/(n-i),c=1/(a-o);return t[0]=-2*s,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*l,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*c,t[11]=0,t[12]=(e+r)*s,t[13]=(i+n)*l,t[14]=(o+a)*c,t[15]=1,t},t.parseGlyphPBF=function(t){return new Hs(t).readFields(ll,[])},t.pbf=Hs,t.performSymbolLayout=function(t,e,r,n,i,a,o){t.createArrays(),t.tilePixelRatio=8192/(512*t.overscaling),t.compareText={},t.iconsNeedLinear=!1;var s=t.layers[0].layout,l=t.layers[0]._unevaluatedLayout._values,c={};if(\"composite\"===t.textSizeData.kind){var u=t.textSizeData,f=u.maxZoom;c.compositeTextSizes=[l[\"text-size\"].possiblyEvaluate(new ii(u.minZoom),o),l[\"text-size\"].possiblyEvaluate(new ii(f),o)]}if(\"composite\"===t.iconSizeData.kind){var h=t.iconSizeData,p=h.maxZoom;c.compositeIconSizes=[l[\"icon-size\"].possiblyEvaluate(new ii(h.minZoom),o),l[\"icon-size\"].possiblyEvaluate(new ii(p),o)]}c.layoutTextSize=l[\"text-size\"].possiblyEvaluate(new ii(t.zoom+1),o),c.layoutIconSize=l[\"icon-size\"].possiblyEvaluate(new ii(t.zoom+1),o),c.textMaxSize=l[\"text-size\"].possiblyEvaluate(new ii(18));for(var d=24*s.get(\"text-line-height\"),g=\"map\"===s.get(\"text-rotation-alignment\")&&\"point\"!==s.get(\"symbol-placement\"),m=s.get(\"text-keep-upright\"),v=s.get(\"text-size\"),y=function(){var a=b[x],l=s.get(\"text-font\").evaluate(a,{},o).join(\",\"),u=v.evaluate(a,{},o),f=c.layoutTextSize.evaluate(a,{},o),h=c.layoutIconSize.evaluate(a,{},o),p={horizontal:{},vertical:void 0},y=a.text,w=[0,0];if(y){var T=y.toString(),k=24*s.get(\"text-letter-spacing\").evaluate(a,{},o),M=function(t){for(var e=0,r=t;e<r.length;e+=1)if(n=r[e].charCodeAt(0),Vn.Arabic(n)||Vn[\"Arabic Supplement\"](n)||Vn[\"Arabic Extended-A\"](n)||Vn[\"Arabic Presentation Forms-A\"](n)||Vn[\"Arabic Presentation Forms-B\"](n))return!1;var n;return!0}(T)?k:0,A=s.get(\"text-anchor\").evaluate(a,{},o),S=s.get(\"text-variable-anchor\");if(!S){var E=s.get(\"text-radial-offset\").evaluate(a,{},o);w=E?$l(A,[24*E,Ql]):s.get(\"text-offset\").evaluate(a,{},o).map((function(t){return 24*t}))}var C=g?\"center\":s.get(\"text-justify\").evaluate(a,{},o),L=s.get(\"symbol-placement\"),I=\"point\"===L?24*s.get(\"text-max-width\").evaluate(a,{},o):0,P=function(){t.allowVerticalPlacement&&qn(T)&&(p.vertical=yl(y,e,r,i,l,I,d,A,\"left\",M,w,gl.vertical,!0,L,f,u))};if(!g&&S){for(var z=\"auto\"===C?S.map((function(t){return tc(t)})):[C],O=!1,D=0;D<z.length;D++){var R=z[D];if(!p.horizontal[R])if(O)p.horizontal[R]=p.horizontal[0];else{var F=yl(y,e,r,i,l,I,d,\"center\",R,M,w,gl.horizontal,!1,L,f,u);F&&(p.horizontal[R]=F,O=1===F.positionedLines.length)}}P()}else{\"auto\"===C&&(C=tc(A));var B=yl(y,e,r,i,l,I,d,A,C,M,w,gl.horizontal,!1,L,f,u);B&&(p.horizontal[C]=B),P(),qn(T)&&g&&m&&(p.vertical=yl(y,e,r,i,l,I,d,A,C,M,w,gl.vertical,!1,L,f,u))}}var N=void 0,j=!1;if(a.icon&&a.icon.name){var U=n[a.icon.name];U&&(N=function(t,e,r){var n=Al(r),i=e[0]-t.displaySize[0]*n.horizontalAlign,a=e[1]-t.displaySize[1]*n.verticalAlign;return{image:t,top:a,bottom:a+t.displaySize[1],left:i,right:i+t.displaySize[0]}}(i[a.icon.name],s.get(\"icon-offset\").evaluate(a,{},o),s.get(\"icon-anchor\").evaluate(a,{},o)),j=U.sdf,void 0===t.sdfIcons?t.sdfIcons=U.sdf:t.sdfIcons!==U.sdf&&_(\"Style sheet warning: Cannot mix SDF and non-SDF icons in one buffer\"),(U.pixelRatio!==t.pixelRatio||0!==s.get(\"icon-rotate\").constantOr(1))&&(t.iconsNeedLinear=!0))}var V=rc(p.horizontal)||p.vertical;t.iconsInText=!!V&&V.iconsInText,(V||N)&&function(t,e,r,n,i,a,o,s,l,c,u){var f=a.textMaxSize.evaluate(e,{});void 0===f&&(f=o);var h,p=t.layers[0].layout,d=p.get(\"icon-offset\").evaluate(e,{},u),g=rc(r.horizontal),m=o/24,v=t.tilePixelRatio*m,y=t.tilePixelRatio*f/24,x=t.tilePixelRatio*s,b=t.tilePixelRatio*p.get(\"symbol-spacing\"),w=p.get(\"text-padding\")*t.tilePixelRatio,T=p.get(\"icon-padding\")*t.tilePixelRatio,k=p.get(\"text-max-angle\")/180*Math.PI,M=\"map\"===p.get(\"text-rotation-alignment\")&&\"point\"!==p.get(\"symbol-placement\"),A=\"map\"===p.get(\"icon-rotation-alignment\")&&\"point\"!==p.get(\"symbol-placement\"),S=p.get(\"symbol-placement\"),E=b/2,C=p.get(\"icon-text-fit\");n&&\"none\"!==C&&(t.allowVerticalPlacement&&r.vertical&&(h=El(n,r.vertical,C,p.get(\"icon-text-fit-padding\"),d,m)),g&&(n=El(n,g,C,p.get(\"icon-text-fit-padding\"),d,m)));var L=function(s,f){f.x<0||f.x>=8192||f.y<0||f.y>=8192||function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,g,m,v,y,x,b,w,T,k,M){var A,S,E,C,L,I=t.addToLineVertexArray(e,r),P=0,z=0,O=0,D=0,R=-1,F=-1,B={},N=ca(\"\"),j=0,U=0;if(void 0===s._unevaluatedLayout.getValue(\"text-radial-offset\")?(j=(A=s.layout.get(\"text-offset\").evaluate(b,{},k).map((function(t){return 24*t})))[0],U=A[1]):(j=24*s.layout.get(\"text-radial-offset\").evaluate(b,{},k),U=Ql),t.allowVerticalPlacement&&n.vertical){var V=s.layout.get(\"text-rotate\").evaluate(b,{},k)+90;C=new Yl(l,e,c,u,f,n.vertical,h,p,d,V),o&&(L=new Yl(l,e,c,u,f,o,m,v,d,V))}if(i){var q=s.layout.get(\"icon-rotate\").evaluate(b,{}),H=\"none\"!==s.layout.get(\"icon-text-fit\"),G=Ul(i,q,T,H),Y=o?Ul(o,q,T,H):void 0;E=new Yl(l,e,c,u,f,i,m,v,!1,q),P=4*G.length;var W=t.iconSizeData,X=null;\"source\"===W.kind?(X=[128*s.layout.get(\"icon-size\").evaluate(b,{})])[0]>32640&&_(t.layerIds[0]+': Value for \"icon-size\" is >= 255. Reduce your \"icon-size\".'):\"composite\"===W.kind&&((X=[128*w.compositeIconSizes[0].evaluate(b,{},k),128*w.compositeIconSizes[1].evaluate(b,{},k)])[0]>32640||X[1]>32640)&&_(t.layerIds[0]+': Value for \"icon-size\" is >= 255. Reduce your \"icon-size\".'),t.addSymbols(t.icon,G,X,x,y,b,!1,e,I.lineStartIndex,I.lineLength,-1,k),R=t.icon.placedSymbolArray.length-1,Y&&(z=4*Y.length,t.addSymbols(t.icon,Y,X,x,y,b,gl.vertical,e,I.lineStartIndex,I.lineLength,-1,k),F=t.icon.placedSymbolArray.length-1)}for(var Z in n.horizontal){var J=n.horizontal[Z];if(!S){N=ca(J.text);var K=s.layout.get(\"text-rotate\").evaluate(b,{},k);S=new Yl(l,e,c,u,f,J,h,p,d,K)}var Q=1===J.positionedLines.length;if(O+=ec(t,e,J,a,s,d,b,g,I,n.vertical?gl.horizontal:gl.horizontalOnly,Q?Object.keys(n.horizontal):[Z],B,R,w,k),Q)break}n.vertical&&(D+=ec(t,e,n.vertical,a,s,d,b,g,I,gl.vertical,[\"vertical\"],B,F,w,k));var $=S?S.boxStartIndex:t.collisionBoxArray.length,tt=S?S.boxEndIndex:t.collisionBoxArray.length,et=C?C.boxStartIndex:t.collisionBoxArray.length,rt=C?C.boxEndIndex:t.collisionBoxArray.length,nt=E?E.boxStartIndex:t.collisionBoxArray.length,it=E?E.boxEndIndex:t.collisionBoxArray.length,at=L?L.boxStartIndex:t.collisionBoxArray.length,ot=L?L.boxEndIndex:t.collisionBoxArray.length,st=-1,lt=function(t,e){return t&&t.circleDiameter?Math.max(t.circleDiameter,e):e};st=lt(S,st),st=lt(C,st),st=lt(E,st);var ct=(st=lt(L,st))>-1?1:0;ct&&(st*=M/24),t.glyphOffsetArray.length>=fc.MAX_GLYPHS&&_(\"Too many glyphs being rendered in a tile. See https://github.com/mapbox/mapbox-gl-js/issues/2907\"),void 0!==b.sortKey&&t.addToSortKeyRanges(t.symbolInstances.length,b.sortKey),t.symbolInstances.emplaceBack(e.x,e.y,B.right>=0?B.right:-1,B.center>=0?B.center:-1,B.left>=0?B.left:-1,B.vertical||-1,R,F,N,$,tt,et,rt,nt,it,at,ot,c,O,D,P,z,ct,0,h,j,U,st)}(t,f,s,r,n,i,h,t.layers[0],t.collisionBoxArray,e.index,e.sourceLayerIndex,t.index,v,w,M,l,x,T,A,d,e,a,c,u,o)};if(\"line\"===S)for(var I=0,P=jl(e.geometry,0,0,8192,8192);I<P.length;I+=1)for(var z=P[I],O=0,D=Nl(z,b,k,r.vertical||g,n,24,y,t.overscaling,8192);O<D.length;O+=1){var R=D[O];g&&nc(t,g.text,E,R)||L(z,R)}else if(\"line-center\"===S)for(var F=0,B=e.geometry;F<B.length;F+=1){var N=B[F];if(N.length>1){var j=Bl(N,k,r.vertical||g,n,24,y);j&&L(N,j)}}else if(\"Polygon\"===e.type)for(var U=0,V=Qo(e.geometry,0);U<V.length;U+=1){var q=V[U],H=Zl(q,16);L(q[0],new Cl(H.x,H.y,0))}else if(\"LineString\"===e.type)for(var G=0,Y=e.geometry;G<Y.length;G+=1){var W=Y[G];L(W,new Cl(W[0].x,W[0].y,0))}else if(\"Point\"===e.type)for(var X=0,Z=e.geometry;X<Z.length;X+=1)for(var J=0,K=Z[X];J<K.length;J+=1){var Q=K[J];L([Q],new Cl(Q.x,Q.y,0))}}(t,a,p,N,n,c,f,h,w,j,o)},x=0,b=t.features;x<b.length;x+=1)y();a&&t.generateCollisionDebugBuffers()},t.perspective=function(t,e,r,n,i){var a,o=1/Math.tan(e/2);return t[0]=o/r,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=o,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=-1,t[12]=0,t[13]=0,t[15]=0,null!=i&&i!==1/0?(t[10]=(i+n)*(a=1/(n-i)),t[14]=2*i*n*a):(t[10]=-1,t[14]=-2*n),t},t.pick=function(t,e){for(var r={},n=0;n<e.length;n++){var i=e[n];i in t&&(r[i]=t[i])}return r},t.plugin=ni,t.polygonIntersectsPolygon=Ba,t.postMapLoadEvent=it,t.postTurnstileEvent=rt,t.potpack=fl,t.refProperties=[\"type\",\"source\",\"source-layer\",\"minzoom\",\"maxzoom\",\"filter\",\"layout\"],t.register=Dn,t.registerForPluginStateChange=function(t){return t({pluginStatus:Jn,pluginURL:Kn}),ti.on(\"pluginStateChange\",t),t},t.rotate=function(t,e,r){var n=e[0],i=e[1],a=e[2],o=e[3],s=Math.sin(r),l=Math.cos(r);return t[0]=n*l+a*s,t[1]=i*l+o*s,t[2]=n*-s+a*l,t[3]=i*-s+o*l,t},t.rotateX=function(t,e,r){var n=Math.sin(r),i=Math.cos(r),a=e[4],o=e[5],s=e[6],l=e[7],c=e[8],u=e[9],f=e[10],h=e[11];return e!==t&&(t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[4]=a*i+c*n,t[5]=o*i+u*n,t[6]=s*i+f*n,t[7]=l*i+h*n,t[8]=c*i-a*n,t[9]=u*i-o*n,t[10]=f*i-s*n,t[11]=h*i-l*n,t},t.rotateZ=function(t,e,r){var n=Math.sin(r),i=Math.cos(r),a=e[0],o=e[1],s=e[2],l=e[3],c=e[4],u=e[5],f=e[6],h=e[7];return e!==t&&(t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[0]=a*i+c*n,t[1]=o*i+u*n,t[2]=s*i+f*n,t[3]=l*i+h*n,t[4]=c*i-a*n,t[5]=u*i-o*n,t[6]=f*i-s*n,t[7]=h*i-l*n,t},t.scale=function(t,e,r){var n=r[0],i=r[1],a=r[2];return t[0]=e[0]*n,t[1]=e[1]*n,t[2]=e[2]*n,t[3]=e[3]*n,t[4]=e[4]*i,t[5]=e[5]*i,t[6]=e[6]*i,t[7]=e[7]*i,t[8]=e[8]*a,t[9]=e[9]*a,t[10]=e[10]*a,t[11]=e[11]*a,t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t},t.scale$1=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t[3]=e[3]*r,t},t.scale$2=function(t,e,r){return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t},t.setCacheLimits=function(t,e){at=t,ot=e},t.setRTLTextPlugin=function(t,e,r){if(void 0===r&&(r=!1),\"deferred\"===Jn||\"loading\"===Jn||\"loaded\"===Jn)throw new Error(\"setRTLTextPlugin cannot be called multiple times.\");Kn=R.resolveURL(t),Jn=\"deferred\",Zn=e,$n(),r||ri()},t.sphericalToCartesian=function(t){var e=t[0],r=t[1],n=t[2];return r+=90,r*=Math.PI/180,n*=Math.PI/180,{x:e*Math.cos(r)*Math.sin(n),y:e*Math.sin(r)*Math.sin(n),z:e*Math.cos(n)}},t.sqrLen=function(t){var e=t[0],r=t[1];return e*e+r*r},t.styleSpec=At,t.sub=function(t,e,r){return t[0]=e[0]-r[0],t[1]=e[1]-r[1],t[2]=e[2]-r[2],t},t.symbolSize=zl,t.transformMat3=function(t,e,r){var n=e[0],i=e[1],a=e[2];return t[0]=n*r[0]+i*r[3]+a*r[6],t[1]=n*r[1]+i*r[4]+a*r[7],t[2]=n*r[2]+i*r[5]+a*r[8],t},t.transformMat4=ao,t.translate=function(t,e,r){var n,i,a,o,s,l,c,u,f,h,p,d,g=r[0],m=r[1],v=r[2];return e===t?(t[12]=e[0]*g+e[4]*m+e[8]*v+e[12],t[13]=e[1]*g+e[5]*m+e[9]*v+e[13],t[14]=e[2]*g+e[6]*m+e[10]*v+e[14],t[15]=e[3]*g+e[7]*m+e[11]*v+e[15]):(i=e[1],a=e[2],o=e[3],s=e[4],l=e[5],c=e[6],u=e[7],f=e[8],h=e[9],p=e[10],d=e[11],t[0]=n=e[0],t[1]=i,t[2]=a,t[3]=o,t[4]=s,t[5]=l,t[6]=c,t[7]=u,t[8]=f,t[9]=h,t[10]=p,t[11]=d,t[12]=n*g+s*m+f*v+e[12],t[13]=i*g+l*m+h*v+e[13],t[14]=a*g+c*m+p*v+e[14],t[15]=o*g+u*m+d*v+e[15]),t},t.triggerPluginCompletionEvent=Qn,t.uniqueId=h,t.validateCustomStyleLayer=function(t){var e=[],r=t.id;return void 0===r&&e.push({message:\"layers.\"+r+': missing required property \"id\"'}),void 0===t.render&&e.push({message:\"layers.\"+r+': missing required method \"render\"'}),t.renderingMode&&\"2d\"!==t.renderingMode&&\"3d\"!==t.renderingMode&&e.push({message:\"layers.\"+r+': property \"renderingMode\" must be either \"2d\" or \"3d\"'}),e},t.validateLight=An,t.validateStyle=Mn,t.values=function(t){var e=[];for(var r in t)e.push(t[r]);return e},t.vectorTile=gs,t.version=\"1.10.1\",t.warnOnce=_,t.webpSupported=B,t.window=self,t.wrap=c})),n(0,(function(t){function e(t){var r=typeof t;if(\"number\"===r||\"boolean\"===r||\"string\"===r||null==t)return JSON.stringify(t);if(Array.isArray(t)){for(var n=\"[\",i=0,a=t;i<a.length;i+=1)n+=e(a[i])+\",\";return n+\"]\"}for(var o=Object.keys(t).sort(),s=\"{\",l=0;l<o.length;l++)s+=JSON.stringify(o[l])+\":\"+e(t[o[l]])+\",\";return s+\"}\"}function r(r){for(var n=\"\",i=0,a=t.refProperties;i<a.length;i+=1)n+=\"/\"+e(r[a[i]]);return n}var n=function(t){this.keyCache={},t&&this.replace(t)};n.prototype.replace=function(t){this._layerConfigs={},this._layers={},this.update(t,[])},n.prototype.update=function(e,n){for(var i=this,a=0,o=e;a<o.length;a+=1){var s=o[a];this._layerConfigs[s.id]=s;var l=this._layers[s.id]=t.createStyleLayer(s);l._featureFilter=t.featureFilter(l.filter),this.keyCache[s.id]&&delete this.keyCache[s.id]}for(var c=0,u=n;c<u.length;c+=1){var f=u[c];delete this.keyCache[f],delete this._layerConfigs[f],delete this._layers[f]}this.familiesBySource={};for(var h=0,p=function(t,e){for(var n={},i=0;i<t.length;i++){var a=e&&e[t[i].id]||r(t[i]);e&&(e[t[i].id]=a);var o=n[a];o||(o=n[a]=[]),o.push(t[i])}var s=[];for(var l in n)s.push(n[l]);return s}(t.values(this._layerConfigs),this.keyCache);h<p.length;h+=1){var d=p[h].map((function(t){return i._layers[t.id]})),g=d[0];if(\"none\"!==g.visibility){var m=g.source||\"\",v=this.familiesBySource[m];v||(v=this.familiesBySource[m]={});var y=g.sourceLayer||\"_geojsonTileLayer\",x=v[y];x||(x=v[y]=[]),x.push(d)}}};var i=function(e){var r={},n=[];for(var i in e){var a=e[i],o=r[i]={};for(var s in a){var l=a[+s];if(l&&0!==l.bitmap.width&&0!==l.bitmap.height){var c={x:0,y:0,w:l.bitmap.width+2,h:l.bitmap.height+2};n.push(c),o[s]={rect:c,metrics:l.metrics}}}}var u=t.potpack(n),f=new t.AlphaImage({width:u.w||1,height:u.h||1});for(var h in e){var p=e[h];for(var d in p){var g=p[+d];if(g&&0!==g.bitmap.width&&0!==g.bitmap.height){var m=r[h][d].rect;t.AlphaImage.copy(g.bitmap,f,{x:0,y:0},{x:m.x+1,y:m.y+1},g.bitmap)}}}this.image=f,this.positions=r};t.register(\"GlyphAtlas\",i);var a=function(e){this.tileID=new t.OverscaledTileID(e.tileID.overscaledZ,e.tileID.wrap,e.tileID.canonical.z,e.tileID.canonical.x,e.tileID.canonical.y),this.uid=e.uid,this.zoom=e.zoom,this.pixelRatio=e.pixelRatio,this.tileSize=e.tileSize,this.source=e.source,this.overscaling=this.tileID.overscaleFactor(),this.showCollisionBoxes=e.showCollisionBoxes,this.collectResourceTiming=!!e.collectResourceTiming,this.returnDependencies=!!e.returnDependencies,this.promoteId=e.promoteId};function o(e,r,n){for(var i=new t.EvaluationParameters(r),a=0,o=e;a<o.length;a+=1)o[a].recalculate(i,n)}function s(e,r){var n=t.getArrayBuffer(e.request,(function(e,n,i,a){e?r(e):n&&r(null,{vectorTile:new t.vectorTile.VectorTile(new t.pbf(n)),rawData:n,cacheControl:i,expires:a})}));return function(){n.cancel(),r()}}a.prototype.parse=function(e,r,n,a,s){var l=this;this.status=\"parsing\",this.data=e,this.collisionBoxArray=new t.CollisionBoxArray;var c=new t.DictionaryCoder(Object.keys(e.layers).sort()),u=new t.FeatureIndex(this.tileID,this.promoteId);u.bucketLayerIDs=[];var f,h,p,d,g={},m={featureIndex:u,iconDependencies:{},patternDependencies:{},glyphDependencies:{},availableImages:n},v=r.familiesBySource[this.source];for(var y in v){var x=e.layers[y];if(x){1===x.version&&t.warnOnce('Vector tile source \"'+this.source+'\" layer \"'+y+'\" does not use vector tile spec v2 and therefore may have some rendering errors.');for(var b=c.encode(y),_=[],w=0;w<x.length;w++){var T=x.feature(w),k=u.getId(T,y);_.push({feature:T,id:k,index:w,sourceLayerIndex:b})}for(var M=0,A=v[y];M<A.length;M+=1){var S=A[M],E=S[0];E.minzoom&&this.zoom<Math.floor(E.minzoom)||E.maxzoom&&this.zoom>=E.maxzoom||\"none\"!==E.visibility&&(o(S,this.zoom,n),(g[E.id]=E.createBucket({index:u.bucketLayerIDs.length,layers:S,zoom:this.zoom,pixelRatio:this.pixelRatio,overscaling:this.overscaling,collisionBoxArray:this.collisionBoxArray,sourceLayerIndex:b,sourceID:this.source})).populate(_,m,this.tileID.canonical),u.bucketLayerIDs.push(S.map((function(t){return t.id}))))}}}var C=t.mapObject(m.glyphDependencies,(function(t){return Object.keys(t).map(Number)}));Object.keys(C).length?a.send(\"getGlyphs\",{uid:this.uid,stacks:C},(function(t,e){f||(f=t,h=e,P.call(l))})):h={};var L=Object.keys(m.iconDependencies);L.length?a.send(\"getImages\",{icons:L,source:this.source,tileID:this.tileID,type:\"icons\"},(function(t,e){f||(f=t,p=e,P.call(l))})):p={};var I=Object.keys(m.patternDependencies);function P(){if(f)return s(f);if(h&&p&&d){var e=new i(h),r=new t.ImageAtlas(p,d);for(var a in g){var l=g[a];l instanceof t.SymbolBucket?(o(l.layers,this.zoom,n),t.performSymbolLayout(l,h,e.positions,p,r.iconPositions,this.showCollisionBoxes,this.tileID.canonical)):l.hasPattern&&(l instanceof t.LineBucket||l instanceof t.FillBucket||l instanceof t.FillExtrusionBucket)&&(o(l.layers,this.zoom,n),l.addFeatures(m,this.tileID.canonical,r.patternPositions))}this.status=\"done\",s(null,{buckets:t.values(g).filter((function(t){return!t.isEmpty()})),featureIndex:u,collisionBoxArray:this.collisionBoxArray,glyphAtlasImage:e.image,imageAtlas:r,glyphMap:this.returnDependencies?h:null,iconMap:this.returnDependencies?p:null,glyphPositions:this.returnDependencies?e.positions:null})}}I.length?a.send(\"getImages\",{icons:I,source:this.source,tileID:this.tileID,type:\"patterns\"},(function(t,e){f||(f=t,d=e,P.call(l))})):d={},P.call(this)};var l=function(t,e,r,n){this.actor=t,this.layerIndex=e,this.availableImages=r,this.loadVectorData=n||s,this.loading={},this.loaded={}};l.prototype.loadTile=function(e,r){var n=this,i=e.uid;this.loading||(this.loading={});var o=!!(e&&e.request&&e.request.collectResourceTiming)&&new t.RequestPerformance(e.request),s=this.loading[i]=new a(e);s.abort=this.loadVectorData(e,(function(e,a){if(delete n.loading[i],e||!a)return s.status=\"done\",n.loaded[i]=s,r(e);var l=a.rawData,c={};a.expires&&(c.expires=a.expires),a.cacheControl&&(c.cacheControl=a.cacheControl);var u={};if(o){var f=o.finish();f&&(u.resourceTiming=JSON.parse(JSON.stringify(f)))}s.vectorTile=a.vectorTile,s.parse(a.vectorTile,n.layerIndex,n.availableImages,n.actor,(function(e,n){if(e||!n)return r(e);r(null,t.extend({rawTileData:l.slice(0)},n,c,u))})),n.loaded=n.loaded||{},n.loaded[i]=s}))},l.prototype.reloadTile=function(t,e){var r=this,n=this.loaded,i=t.uid,a=this;if(n&&n[i]){var o=n[i];o.showCollisionBoxes=t.showCollisionBoxes;var s=function(t,n){var i=o.reloadCallback;i&&(delete o.reloadCallback,o.parse(o.vectorTile,a.layerIndex,r.availableImages,a.actor,i)),e(t,n)};\"parsing\"===o.status?o.reloadCallback=s:\"done\"===o.status&&(o.vectorTile?o.parse(o.vectorTile,this.layerIndex,this.availableImages,this.actor,s):s())}},l.prototype.abortTile=function(t,e){var r=this.loading,n=t.uid;r&&r[n]&&r[n].abort&&(r[n].abort(),delete r[n]),e()},l.prototype.removeTile=function(t,e){var r=this.loaded,n=t.uid;r&&r[n]&&delete r[n],e()};var c=t.window.ImageBitmap,u=function(){this.loaded={}};function f(t,e){if(0!==t.length){h(t[0],e);for(var r=1;r<t.length;r++)h(t[r],!e)}}function h(t,e){for(var r=0,n=0,i=t.length,a=i-1;n<i;a=n++)r+=(t[n][0]-t[a][0])*(t[a][1]+t[n][1]);r>=0!=!!e&&t.reverse()}u.prototype.loadTile=function(e,r){var n=e.uid,i=e.encoding,a=e.rawImageData,o=c&&a instanceof c?this.getImageData(a):a,s=new t.DEMData(n,o,i);this.loaded=this.loaded||{},this.loaded[n]=s,r(null,s)},u.prototype.getImageData=function(e){this.offscreenCanvas&&this.offscreenCanvasContext||(this.offscreenCanvas=new OffscreenCanvas(e.width,e.height),this.offscreenCanvasContext=this.offscreenCanvas.getContext(\"2d\")),this.offscreenCanvas.width=e.width,this.offscreenCanvas.height=e.height,this.offscreenCanvasContext.drawImage(e,0,0,e.width,e.height);var r=this.offscreenCanvasContext.getImageData(-1,-1,e.width+2,e.height+2);return this.offscreenCanvasContext.clearRect(0,0,this.offscreenCanvas.width,this.offscreenCanvas.height),new t.RGBAImage({width:r.width,height:r.height},r.data)},u.prototype.removeTile=function(t){var e=this.loaded,r=t.uid;e&&e[r]&&delete e[r]};var p=t.vectorTile.VectorTileFeature.prototype.toGeoJSON,d=function(e){this._feature=e,this.extent=t.EXTENT,this.type=e.type,this.properties=e.tags,\"id\"in e&&!isNaN(e.id)&&(this.id=parseInt(e.id,10))};d.prototype.loadGeometry=function(){if(1===this._feature.type){for(var e=[],r=0,n=this._feature.geometry;r<n.length;r+=1){var i=n[r];e.push([new t.Point$1(i[0],i[1])])}return e}for(var a=[],o=0,s=this._feature.geometry;o<s.length;o+=1){for(var l=[],c=0,u=s[o];c<u.length;c+=1){var f=u[c];l.push(new t.Point$1(f[0],f[1]))}a.push(l)}return a},d.prototype.toGeoJSON=function(t,e,r){return p.call(this,t,e,r)};var g=function(e){this.layers={_geojsonTileLayer:this},this.name=\"_geojsonTileLayer\",this.extent=t.EXTENT,this.length=e.length,this._features=e};g.prototype.feature=function(t){return new d(this._features[t])};var m=t.vectorTile.VectorTileFeature,v=y;function y(t,e){this.options=e||{},this.features=t,this.length=t.length}function x(t,e){this.id=\"number\"==typeof t.id?t.id:void 0,this.type=t.type,this.rawGeometry=1===t.type?[t.geometry]:t.geometry,this.properties=t.tags,this.extent=e||4096}y.prototype.feature=function(t){return new x(this.features[t],this.options.extent)},x.prototype.loadGeometry=function(){var e=this.rawGeometry;this.geometry=[];for(var r=0;r<e.length;r++){for(var n=e[r],i=[],a=0;a<n.length;a++)i.push(new t.Point$1(n[a][0],n[a][1]));this.geometry.push(i)}return this.geometry},x.prototype.bbox=function(){this.geometry||this.loadGeometry();for(var t=this.geometry,e=1/0,r=-1/0,n=1/0,i=-1/0,a=0;a<t.length;a++)for(var o=t[a],s=0;s<o.length;s++){var l=o[s];e=Math.min(e,l.x),r=Math.max(r,l.x),n=Math.min(n,l.y),i=Math.max(i,l.y)}return[e,n,r,i]},x.prototype.toGeoJSON=m.prototype.toGeoJSON;var b=w,_=v;function w(e){var r=new t.pbf;return function(t,e){for(var r in t.layers)e.writeMessage(3,T,t.layers[r])}(e,r),r.finish()}function T(t,e){var r;e.writeVarintField(15,t.version||1),e.writeStringField(1,t.name||\"\"),e.writeVarintField(5,t.extent||4096);var n={keys:[],values:[],keycache:{},valuecache:{}};for(r=0;r<t.length;r++)n.feature=t.feature(r),e.writeMessage(2,k,n);var i=n.keys;for(r=0;r<i.length;r++)e.writeStringField(3,i[r]);var a=n.values;for(r=0;r<a.length;r++)e.writeMessage(4,C,a[r])}function k(t,e){var r=t.feature;void 0!==r.id&&e.writeVarintField(1,r.id),e.writeMessage(2,M,t),e.writeVarintField(3,r.type),e.writeMessage(4,E,r)}function M(t,e){var r=t.feature,n=t.keys,i=t.values,a=t.keycache,o=t.valuecache;for(var s in r.properties){var l=a[s];void 0===l&&(n.push(s),a[s]=l=n.length-1),e.writeVarint(l);var c=r.properties[s],u=typeof c;\"string\"!==u&&\"boolean\"!==u&&\"number\"!==u&&(c=JSON.stringify(c));var f=u+\":\"+c,h=o[f];void 0===h&&(i.push(c),o[f]=h=i.length-1),e.writeVarint(h)}}function A(t,e){return(e<<3)+(7&t)}function S(t){return t<<1^t>>31}function E(t,e){for(var r=t.loadGeometry(),n=t.type,i=0,a=0,o=r.length,s=0;s<o;s++){var l=r[s],c=1;1===n&&(c=l.length),e.writeVarint(A(1,c));for(var u=3===n?l.length-1:l.length,f=0;f<u;f++){1===f&&1!==n&&e.writeVarint(A(2,u-1));var h=l[f].x-i,p=l[f].y-a;e.writeVarint(S(h)),e.writeVarint(S(p)),i+=h,a+=p}3===n&&e.writeVarint(A(7,1))}}function C(t,e){var r=typeof t;\"string\"===r?e.writeStringField(1,t):\"boolean\"===r?e.writeBooleanField(7,t):\"number\"===r&&(t%1!=0?e.writeDoubleField(3,t):t<0?e.writeSVarintField(6,t):e.writeVarintField(5,t))}function L(t,e,r,n){I(t,r,n),I(e,2*r,2*n),I(e,2*r+1,2*n+1)}function I(t,e,r){var n=t[e];t[e]=t[r],t[r]=n}function P(t,e,r,n){var i=t-r,a=e-n;return i*i+a*a}b.fromVectorTileJs=w,b.fromGeojsonVt=function(t,e){e=e||{};var r={};for(var n in t)r[n]=new v(t[n].features,e),r[n].name=n,r[n].version=e.version,r[n].extent=e.extent;return w({layers:r})},b.GeoJSONWrapper=_;var z=function(t){return t[0]},O=function(t){return t[1]},D=function(t,e,r,n,i){void 0===e&&(e=z),void 0===r&&(r=O),void 0===n&&(n=64),void 0===i&&(i=Float64Array),this.nodeSize=n,this.points=t;for(var a=t.length<65536?Uint16Array:Uint32Array,o=this.ids=new a(t.length),s=this.coords=new i(2*t.length),l=0;l<t.length;l++)o[l]=l,s[2*l]=e(t[l]),s[2*l+1]=r(t[l]);!function t(e,r,n,i,a,o){if(!(a-i<=n)){var s=i+a>>1;!function t(e,r,n,i,a,o){for(;a>i;){if(a-i>600){var s=a-i+1,l=n-i+1,c=Math.log(s),u=.5*Math.exp(2*c/3),f=.5*Math.sqrt(c*u*(s-u)/s)*(l-s/2<0?-1:1);t(e,r,n,Math.max(i,Math.floor(n-l*u/s+f)),Math.min(a,Math.floor(n+(s-l)*u/s+f)),o)}var h=r[2*n+o],p=i,d=a;for(L(e,r,i,n),r[2*a+o]>h&&L(e,r,i,a);p<d;){for(L(e,r,p,d),p++,d--;r[2*p+o]<h;)p++;for(;r[2*d+o]>h;)d--}r[2*i+o]===h?L(e,r,i,d):L(e,r,++d,a),d<=n&&(i=d+1),n<=d&&(a=d-1)}}(e,r,s,i,a,o%2),t(e,r,n,i,s-1,o+1),t(e,r,n,s+1,a,o+1)}}(o,s,n,0,o.length-1,0)};D.prototype.range=function(t,e,r,n){return function(t,e,r,n,i,a,o){for(var s,l,c=[0,t.length-1,0],u=[];c.length;){var f=c.pop(),h=c.pop(),p=c.pop();if(h-p<=o)for(var d=p;d<=h;d++)l=e[2*d+1],(s=e[2*d])>=r&&s<=i&&l>=n&&l<=a&&u.push(t[d]);else{var g=Math.floor((p+h)/2);l=e[2*g+1],(s=e[2*g])>=r&&s<=i&&l>=n&&l<=a&&u.push(t[g]);var m=(f+1)%2;(0===f?r<=s:n<=l)&&(c.push(p),c.push(g-1),c.push(m)),(0===f?i>=s:a>=l)&&(c.push(g+1),c.push(h),c.push(m))}}return u}(this.ids,this.coords,t,e,r,n,this.nodeSize)},D.prototype.within=function(t,e,r){return function(t,e,r,n,i,a){for(var o=[0,t.length-1,0],s=[],l=i*i;o.length;){var c=o.pop(),u=o.pop(),f=o.pop();if(u-f<=a)for(var h=f;h<=u;h++)P(e[2*h],e[2*h+1],r,n)<=l&&s.push(t[h]);else{var p=Math.floor((f+u)/2),d=e[2*p],g=e[2*p+1];P(d,g,r,n)<=l&&s.push(t[p]);var m=(c+1)%2;(0===c?r-i<=d:n-i<=g)&&(o.push(f),o.push(p-1),o.push(m)),(0===c?r+i>=d:n+i>=g)&&(o.push(p+1),o.push(u),o.push(m))}}return s}(this.ids,this.coords,t,e,r,this.nodeSize)};var R={minZoom:0,maxZoom:16,radius:40,extent:512,nodeSize:64,log:!1,generateId:!1,reduce:null,map:function(t){return t}},F=function(t){this.options=H(Object.create(R),t),this.trees=new Array(this.options.maxZoom+1)};function B(t,e,r,n,i){return{x:t,y:e,zoom:1/0,id:r,parentId:-1,numPoints:n,properties:i}}function N(t,e){var r=t.geometry.coordinates,n=r[1];return{x:V(r[0]),y:q(n),zoom:1/0,index:e,parentId:-1}}function j(t){return{type:\"Feature\",id:t.id,properties:U(t),geometry:{type:\"Point\",coordinates:[(n=t.x,360*(n-.5)),(e=t.y,r=(180-360*e)*Math.PI/180,360*Math.atan(Math.exp(r))/Math.PI-90)]}};var e,r,n}function U(t){var e=t.numPoints,r=e>=1e4?Math.round(e/1e3)+\"k\":e>=1e3?Math.round(e/100)/10+\"k\":e;return H(H({},t.properties),{cluster:!0,cluster_id:t.id,point_count:e,point_count_abbreviated:r})}function V(t){return t/360+.5}function q(t){var e=Math.sin(t*Math.PI/180),r=.5-.25*Math.log((1+e)/(1-e))/Math.PI;return r<0?0:r>1?1:r}function H(t,e){for(var r in e)t[r]=e[r];return t}function G(t){return t.x}function Y(t){return t.y}function W(t,e,r,n,i,a){var o=i-r,s=a-n;if(0!==o||0!==s){var l=((t-r)*o+(e-n)*s)/(o*o+s*s);l>1?(r=i,n=a):l>0&&(r+=o*l,n+=s*l)}return(o=t-r)*o+(s=e-n)*s}function X(t,e,r,n){var i={id:void 0===t?null:t,type:e,geometry:r,tags:n,minX:1/0,minY:1/0,maxX:-1/0,maxY:-1/0};return function(t){var e=t.geometry,r=t.type;if(\"Point\"===r||\"MultiPoint\"===r||\"LineString\"===r)Z(t,e);else if(\"Polygon\"===r||\"MultiLineString\"===r)for(var n=0;n<e.length;n++)Z(t,e[n]);else if(\"MultiPolygon\"===r)for(n=0;n<e.length;n++)for(var i=0;i<e[n].length;i++)Z(t,e[n][i])}(i),i}function Z(t,e){for(var r=0;r<e.length;r+=3)t.minX=Math.min(t.minX,e[r]),t.minY=Math.min(t.minY,e[r+1]),t.maxX=Math.max(t.maxX,e[r]),t.maxY=Math.max(t.maxY,e[r+1])}function J(t,e,r,n){if(e.geometry){var i=e.geometry.coordinates,a=e.geometry.type,o=Math.pow(r.tolerance/((1<<r.maxZoom)*r.extent),2),s=[],l=e.id;if(r.promoteId?l=e.properties[r.promoteId]:r.generateId&&(l=n||0),\"Point\"===a)K(i,s);else if(\"MultiPoint\"===a)for(var c=0;c<i.length;c++)K(i[c],s);else if(\"LineString\"===a)Q(i,s,o,!1);else if(\"MultiLineString\"===a){if(r.lineMetrics){for(c=0;c<i.length;c++)Q(i[c],s=[],o,!1),t.push(X(l,\"LineString\",s,e.properties));return}$(i,s,o,!1)}else if(\"Polygon\"===a)$(i,s,o,!0);else{if(\"MultiPolygon\"!==a){if(\"GeometryCollection\"===a){for(c=0;c<e.geometry.geometries.length;c++)J(t,{id:l,geometry:e.geometry.geometries[c],properties:e.properties},r,n);return}throw new Error(\"Input data is not a valid GeoJSON object.\")}for(c=0;c<i.length;c++){var u=[];$(i[c],u,o,!0),s.push(u)}}t.push(X(l,a,s,e.properties))}}function K(t,e){e.push(tt(t[0])),e.push(et(t[1])),e.push(0)}function Q(t,e,r,n){for(var i,a,o=0,s=0;s<t.length;s++){var l=tt(t[s][0]),c=et(t[s][1]);e.push(l),e.push(c),e.push(0),s>0&&(o+=n?(i*c-l*a)/2:Math.sqrt(Math.pow(l-i,2)+Math.pow(c-a,2))),i=l,a=c}var u=e.length-3;e[2]=1,function t(e,r,n,i){for(var a,o=i,s=n-r>>1,l=n-r,c=e[r],u=e[r+1],f=e[n],h=e[n+1],p=r+3;p<n;p+=3){var d=W(e[p],e[p+1],c,u,f,h);if(d>o)a=p,o=d;else if(d===o){var g=Math.abs(p-s);g<l&&(a=p,l=g)}}o>i&&(a-r>3&&t(e,r,a,i),e[a+2]=o,n-a>3&&t(e,a,n,i))}(e,0,u,r),e[u+2]=1,e.size=Math.abs(o),e.start=0,e.end=e.size}function $(t,e,r,n){for(var i=0;i<t.length;i++){var a=[];Q(t[i],a,r,n),e.push(a)}}function tt(t){return t/360+.5}function et(t){var e=Math.sin(t*Math.PI/180),r=.5-.25*Math.log((1+e)/(1-e))/Math.PI;return r<0?0:r>1?1:r}function rt(t,e,r,n,i,a,o,s){if(n/=e,a>=(r/=e)&&o<n)return t;if(o<r||a>=n)return null;for(var l=[],c=0;c<t.length;c++){var u=t[c],f=u.geometry,h=u.type,p=0===i?u.minX:u.minY,d=0===i?u.maxX:u.maxY;if(p>=r&&d<n)l.push(u);else if(!(d<r||p>=n)){var g=[];if(\"Point\"===h||\"MultiPoint\"===h)nt(f,g,r,n,i);else if(\"LineString\"===h)it(f,g,r,n,i,!1,s.lineMetrics);else if(\"MultiLineString\"===h)ot(f,g,r,n,i,!1);else if(\"Polygon\"===h)ot(f,g,r,n,i,!0);else if(\"MultiPolygon\"===h)for(var m=0;m<f.length;m++){var v=[];ot(f[m],v,r,n,i,!0),v.length&&g.push(v)}if(g.length){if(s.lineMetrics&&\"LineString\"===h){for(m=0;m<g.length;m++)l.push(X(u.id,h,g[m],u.tags));continue}\"LineString\"!==h&&\"MultiLineString\"!==h||(1===g.length?(h=\"LineString\",g=g[0]):h=\"MultiLineString\"),\"Point\"!==h&&\"MultiPoint\"!==h||(h=3===g.length?\"Point\":\"MultiPoint\"),l.push(X(u.id,h,g,u.tags))}}}return l.length?l:null}function nt(t,e,r,n,i){for(var a=0;a<t.length;a+=3){var o=t[a+i];o>=r&&o<=n&&(e.push(t[a]),e.push(t[a+1]),e.push(t[a+2]))}}function it(t,e,r,n,i,a,o){for(var s,l,c=at(t),u=0===i?lt:ct,f=t.start,h=0;h<t.length-3;h+=3){var p=t[h],d=t[h+1],g=t[h+2],m=t[h+3],v=t[h+4],y=0===i?p:d,x=0===i?m:v,b=!1;o&&(s=Math.sqrt(Math.pow(p-m,2)+Math.pow(d-v,2))),y<r?x>r&&(l=u(c,p,d,m,v,r),o&&(c.start=f+s*l)):y>n?x<n&&(l=u(c,p,d,m,v,n),o&&(c.start=f+s*l)):st(c,p,d,g),x<r&&y>=r&&(l=u(c,p,d,m,v,r),b=!0),x>n&&y<=n&&(l=u(c,p,d,m,v,n),b=!0),!a&&b&&(o&&(c.end=f+s*l),e.push(c),c=at(t)),o&&(f+=s)}var _=t.length-3;p=t[_],d=t[_+1],g=t[_+2],(y=0===i?p:d)>=r&&y<=n&&st(c,p,d,g),_=c.length-3,a&&_>=3&&(c[_]!==c[0]||c[_+1]!==c[1])&&st(c,c[0],c[1],c[2]),c.length&&e.push(c)}function at(t){var e=[];return e.size=t.size,e.start=t.start,e.end=t.end,e}function ot(t,e,r,n,i,a){for(var o=0;o<t.length;o++)it(t[o],e,r,n,i,a,!1)}function st(t,e,r,n){t.push(e),t.push(r),t.push(n)}function lt(t,e,r,n,i,a){var o=(a-e)/(n-e);return t.push(a),t.push(r+(i-r)*o),t.push(1),o}function ct(t,e,r,n,i,a){var o=(a-r)/(i-r);return t.push(e+(n-e)*o),t.push(a),t.push(1),o}function ut(t,e){for(var r=[],n=0;n<t.length;n++){var i,a=t[n],o=a.type;if(\"Point\"===o||\"MultiPoint\"===o||\"LineString\"===o)i=ft(a.geometry,e);else if(\"MultiLineString\"===o||\"Polygon\"===o){i=[];for(var s=0;s<a.geometry.length;s++)i.push(ft(a.geometry[s],e))}else if(\"MultiPolygon\"===o)for(i=[],s=0;s<a.geometry.length;s++){for(var l=[],c=0;c<a.geometry[s].length;c++)l.push(ft(a.geometry[s][c],e));i.push(l)}r.push(X(a.id,o,i,a.tags))}return r}function ft(t,e){var r=[];r.size=t.size,void 0!==t.start&&(r.start=t.start,r.end=t.end);for(var n=0;n<t.length;n+=3)r.push(t[n]+e,t[n+1],t[n+2]);return r}function ht(t,e){if(t.transformed)return t;var r,n,i,a=1<<t.z,o=t.x,s=t.y;for(r=0;r<t.features.length;r++){var l=t.features[r],c=l.geometry,u=l.type;if(l.geometry=[],1===u)for(n=0;n<c.length;n+=2)l.geometry.push(pt(c[n],c[n+1],e,a,o,s));else for(n=0;n<c.length;n++){var f=[];for(i=0;i<c[n].length;i+=2)f.push(pt(c[n][i],c[n][i+1],e,a,o,s));l.geometry.push(f)}}return t.transformed=!0,t}function pt(t,e,r,n,i,a){return[Math.round(r*(t*n-i)),Math.round(r*(e*n-a))]}function dt(t,e,r,n,i){for(var a=e===i.maxZoom?0:i.tolerance/((1<<e)*i.extent),o={features:[],numPoints:0,numSimplified:0,numFeatures:0,source:null,x:r,y:n,z:e,transformed:!1,minX:2,minY:1,maxX:-1,maxY:0},s=0;s<t.length;s++){o.numFeatures++,gt(o,t[s],a,i);var l=t[s].minX,c=t[s].minY,u=t[s].maxX,f=t[s].maxY;l<o.minX&&(o.minX=l),c<o.minY&&(o.minY=c),u>o.maxX&&(o.maxX=u),f>o.maxY&&(o.maxY=f)}return o}function gt(t,e,r,n){var i=e.geometry,a=e.type,o=[];if(\"Point\"===a||\"MultiPoint\"===a)for(var s=0;s<i.length;s+=3)o.push(i[s]),o.push(i[s+1]),t.numPoints++,t.numSimplified++;else if(\"LineString\"===a)mt(o,i,t,r,!1,!1);else if(\"MultiLineString\"===a||\"Polygon\"===a)for(s=0;s<i.length;s++)mt(o,i[s],t,r,\"Polygon\"===a,0===s);else if(\"MultiPolygon\"===a)for(var l=0;l<i.length;l++){var c=i[l];for(s=0;s<c.length;s++)mt(o,c[s],t,r,!0,0===s)}if(o.length){var u=e.tags||null;if(\"LineString\"===a&&n.lineMetrics){for(var f in u={},e.tags)u[f]=e.tags[f];u.mapbox_clip_start=i.start/i.size,u.mapbox_clip_end=i.end/i.size}var h={geometry:o,type:\"Polygon\"===a||\"MultiPolygon\"===a?3:\"LineString\"===a||\"MultiLineString\"===a?2:1,tags:u};null!==e.id&&(h.id=e.id),t.features.push(h)}}function mt(t,e,r,n,i,a){var o=n*n;if(n>0&&e.size<(i?o:n))r.numPoints+=e.length/3;else{for(var s=[],l=0;l<e.length;l+=3)(0===n||e[l+2]>o)&&(r.numSimplified++,s.push(e[l]),s.push(e[l+1])),r.numPoints++;i&&function(t,e){for(var r=0,n=0,i=t.length,a=i-2;n<i;a=n,n+=2)r+=(t[n]-t[a])*(t[n+1]+t[a+1]);if(r>0===e)for(n=0,i=t.length;n<i/2;n+=2){var o=t[n],s=t[n+1];t[n]=t[i-2-n],t[n+1]=t[i-1-n],t[i-2-n]=o,t[i-1-n]=s}}(s,a),t.push(s)}}function vt(t,e){var r=(e=this.options=function(t,e){for(var r in e)t[r]=e[r];return t}(Object.create(this.options),e)).debug;if(r&&console.time(\"preprocess data\"),e.maxZoom<0||e.maxZoom>24)throw new Error(\"maxZoom should be in the 0-24 range\");if(e.promoteId&&e.generateId)throw new Error(\"promoteId and generateId cannot be used together.\");var n=function(t,e){var r=[];if(\"FeatureCollection\"===t.type)for(var n=0;n<t.features.length;n++)J(r,t.features[n],e,n);else J(r,\"Feature\"===t.type?t:{geometry:t},e);return r}(t,e);this.tiles={},this.tileCoords=[],r&&(console.timeEnd(\"preprocess data\"),console.log(\"index: maxZoom: %d, maxPoints: %d\",e.indexMaxZoom,e.indexMaxPoints),console.time(\"generate tiles\"),this.stats={},this.total=0),(n=function(t,e){var r=e.buffer/e.extent,n=t,i=rt(t,1,-1-r,r,0,-1,2,e),a=rt(t,1,1-r,2+r,0,-1,2,e);return(i||a)&&(n=rt(t,1,-r,1+r,0,-1,2,e)||[],i&&(n=ut(i,1).concat(n)),a&&(n=n.concat(ut(a,-1)))),n}(n,e)).length&&this.splitTile(n,0,0,0),r&&(n.length&&console.log(\"features: %d, points: %d\",this.tiles[0].numFeatures,this.tiles[0].numPoints),console.timeEnd(\"generate tiles\"),console.log(\"tiles generated:\",this.total,JSON.stringify(this.stats)))}function yt(t,e,r){return 32*((1<<t)*r+e)+t}function xt(t,e){var r=t.tileID.canonical;if(!this._geoJSONIndex)return e(null,null);var n=this._geoJSONIndex.getTile(r.z,r.x,r.y);if(!n)return e(null,null);var i=new g(n.features),a=b(i);0===a.byteOffset&&a.byteLength===a.buffer.byteLength||(a=new Uint8Array(a)),e(null,{vectorTile:i,rawData:a.buffer})}F.prototype.load=function(t){var e=this.options,r=e.log,n=e.minZoom,i=e.maxZoom,a=e.nodeSize;r&&console.time(\"total time\");var o=\"prepare \"+t.length+\" points\";r&&console.time(o),this.points=t;for(var s=[],l=0;l<t.length;l++)t[l].geometry&&s.push(N(t[l],l));this.trees[i+1]=new D(s,G,Y,a,Float32Array),r&&console.timeEnd(o);for(var c=i;c>=n;c--){var u=+Date.now();s=this._cluster(s,c),this.trees[c]=new D(s,G,Y,a,Float32Array),r&&console.log(\"z%d: %d clusters in %dms\",c,s.length,+Date.now()-u)}return r&&console.timeEnd(\"total time\"),this},F.prototype.getClusters=function(t,e){var r=((t[0]+180)%360+360)%360-180,n=Math.max(-90,Math.min(90,t[1])),i=180===t[2]?180:((t[2]+180)%360+360)%360-180,a=Math.max(-90,Math.min(90,t[3]));if(t[2]-t[0]>=360)r=-180,i=180;else if(r>i){var o=this.getClusters([r,n,180,a],e),s=this.getClusters([-180,n,i,a],e);return o.concat(s)}for(var l=this.trees[this._limitZoom(e)],c=[],u=0,f=l.range(V(r),q(a),V(i),q(n));u<f.length;u+=1){var h=l.points[f[u]];c.push(h.numPoints?j(h):this.points[h.index])}return c},F.prototype.getChildren=function(t){var e=this._getOriginId(t),r=this._getOriginZoom(t),n=\"No cluster with the specified id.\",i=this.trees[r];if(!i)throw new Error(n);var a=i.points[e];if(!a)throw new Error(n);for(var o=this.options.radius/(this.options.extent*Math.pow(2,r-1)),s=[],l=0,c=i.within(a.x,a.y,o);l<c.length;l+=1){var u=i.points[c[l]];u.parentId===t&&s.push(u.numPoints?j(u):this.points[u.index])}if(0===s.length)throw new Error(n);return s},F.prototype.getLeaves=function(t,e,r){var n=[];return this._appendLeaves(n,t,e=e||10,r=r||0,0),n},F.prototype.getTile=function(t,e,r){var n=this.trees[this._limitZoom(t)],i=Math.pow(2,t),a=this.options,o=a.radius/a.extent,s=(r-o)/i,l=(r+1+o)/i,c={features:[]};return this._addTileFeatures(n.range((e-o)/i,s,(e+1+o)/i,l),n.points,e,r,i,c),0===e&&this._addTileFeatures(n.range(1-o/i,s,1,l),n.points,i,r,i,c),e===i-1&&this._addTileFeatures(n.range(0,s,o/i,l),n.points,-1,r,i,c),c.features.length?c:null},F.prototype.getClusterExpansionZoom=function(t){for(var e=this._getOriginZoom(t)-1;e<=this.options.maxZoom;){var r=this.getChildren(t);if(e++,1!==r.length)break;t=r[0].properties.cluster_id}return e},F.prototype._appendLeaves=function(t,e,r,n,i){for(var a=0,o=this.getChildren(e);a<o.length;a+=1){var s=o[a],l=s.properties;if(l&&l.cluster?i+l.point_count<=n?i+=l.point_count:i=this._appendLeaves(t,l.cluster_id,r,n,i):i<n?i++:t.push(s),t.length===r)break}return i},F.prototype._addTileFeatures=function(t,e,r,n,i,a){for(var o=0,s=t;o<s.length;o+=1){var l=e[s[o]],c=l.numPoints,u={type:1,geometry:[[Math.round(this.options.extent*(l.x*i-r)),Math.round(this.options.extent*(l.y*i-n))]],tags:c?U(l):this.points[l.index].properties},f=void 0;c?f=l.id:this.options.generateId?f=l.index:this.points[l.index].id&&(f=this.points[l.index].id),void 0!==f&&(u.id=f),a.features.push(u)}},F.prototype._limitZoom=function(t){return Math.max(this.options.minZoom,Math.min(t,this.options.maxZoom+1))},F.prototype._cluster=function(t,e){for(var r=[],n=this.options,i=n.reduce,a=n.radius/(n.extent*Math.pow(2,e)),o=0;o<t.length;o++){var s=t[o];if(!(s.zoom<=e)){s.zoom=e;for(var l=this.trees[e+1],c=l.within(s.x,s.y,a),u=s.numPoints||1,f=s.x*u,h=s.y*u,p=i&&u>1?this._map(s,!0):null,d=(o<<5)+(e+1)+this.points.length,g=0,m=c;g<m.length;g+=1){var v=l.points[m[g]];if(!(v.zoom<=e)){v.zoom=e;var y=v.numPoints||1;f+=v.x*y,h+=v.y*y,u+=y,v.parentId=d,i&&(p||(p=this._map(s,!0)),i(p,this._map(v)))}}1===u?r.push(s):(s.parentId=d,r.push(B(f/u,h/u,d,u,p)))}}return r},F.prototype._getOriginId=function(t){return t-this.points.length>>5},F.prototype._getOriginZoom=function(t){return(t-this.points.length)%32},F.prototype._map=function(t,e){if(t.numPoints)return e?H({},t.properties):t.properties;var r=this.points[t.index].properties,n=this.options.map(r);return e&&n===r?H({},n):n},vt.prototype.options={maxZoom:14,indexMaxZoom:5,indexMaxPoints:1e5,tolerance:3,extent:4096,buffer:64,lineMetrics:!1,promoteId:null,generateId:!1,debug:0},vt.prototype.splitTile=function(t,e,r,n,i,a,o){for(var s=[t,e,r,n],l=this.options,c=l.debug;s.length;){n=s.pop(),r=s.pop(),e=s.pop(),t=s.pop();var u=1<<e,f=yt(e,r,n),h=this.tiles[f];if(!h&&(c>1&&console.time(\"creation\"),h=this.tiles[f]=dt(t,e,r,n,l),this.tileCoords.push({z:e,x:r,y:n}),c)){c>1&&(console.log(\"tile z%d-%d-%d (features: %d, points: %d, simplified: %d)\",e,r,n,h.numFeatures,h.numPoints,h.numSimplified),console.timeEnd(\"creation\"));var p=\"z\"+e;this.stats[p]=(this.stats[p]||0)+1,this.total++}if(h.source=t,i){if(e===l.maxZoom||e===i)continue;var d=1<<i-e;if(r!==Math.floor(a/d)||n!==Math.floor(o/d))continue}else if(e===l.indexMaxZoom||h.numPoints<=l.indexMaxPoints)continue;if(h.source=null,0!==t.length){c>1&&console.time(\"clipping\");var g,m,v,y,x,b,_=.5*l.buffer/l.extent,w=.5-_,T=.5+_,k=1+_;g=m=v=y=null,x=rt(t,u,r-_,r+T,0,h.minX,h.maxX,l),b=rt(t,u,r+w,r+k,0,h.minX,h.maxX,l),t=null,x&&(g=rt(x,u,n-_,n+T,1,h.minY,h.maxY,l),m=rt(x,u,n+w,n+k,1,h.minY,h.maxY,l),x=null),b&&(v=rt(b,u,n-_,n+T,1,h.minY,h.maxY,l),y=rt(b,u,n+w,n+k,1,h.minY,h.maxY,l),b=null),c>1&&console.timeEnd(\"clipping\"),s.push(g||[],e+1,2*r,2*n),s.push(m||[],e+1,2*r,2*n+1),s.push(v||[],e+1,2*r+1,2*n),s.push(y||[],e+1,2*r+1,2*n+1)}}},vt.prototype.getTile=function(t,e,r){var n=this.options,i=n.extent,a=n.debug;if(t<0||t>24)return null;var o=1<<t,s=yt(t,e=(e%o+o)%o,r);if(this.tiles[s])return ht(this.tiles[s],i);a>1&&console.log(\"drilling down to z%d-%d-%d\",t,e,r);for(var l,c=t,u=e,f=r;!l&&c>0;)c--,u=Math.floor(u/2),f=Math.floor(f/2),l=this.tiles[yt(c,u,f)];return l&&l.source?(a>1&&console.log(\"found parent tile z%d-%d-%d\",c,u,f),a>1&&console.time(\"drilling down\"),this.splitTile(l.source,c,u,f,t,e,r),a>1&&console.timeEnd(\"drilling down\"),this.tiles[s]?ht(this.tiles[s],i):null):null};var bt=function(e){function r(t,r,n,i){e.call(this,t,r,n,xt),i&&(this.loadGeoJSON=i)}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.loadData=function(t,e){this._pendingCallback&&this._pendingCallback(null,{abandoned:!0}),this._pendingCallback=e,this._pendingLoadDataParams=t,this._state&&\"Idle\"!==this._state?this._state=\"NeedsLoadData\":(this._state=\"Coalescing\",this._loadData())},r.prototype._loadData=function(){var e=this;if(this._pendingCallback&&this._pendingLoadDataParams){var r=this._pendingCallback,n=this._pendingLoadDataParams;delete this._pendingCallback,delete this._pendingLoadDataParams;var i=!!(n&&n.request&&n.request.collectResourceTiming)&&new t.RequestPerformance(n.request);this.loadGeoJSON(n,(function(a,o){if(a||!o)return r(a);if(\"object\"!=typeof o)return r(new Error(\"Input data given to '\"+n.source+\"' is not a valid GeoJSON object.\"));!function t(e,r){var n,i=e&&e.type;if(\"FeatureCollection\"===i)for(n=0;n<e.features.length;n++)t(e.features[n],r);else if(\"GeometryCollection\"===i)for(n=0;n<e.geometries.length;n++)t(e.geometries[n],r);else if(\"Feature\"===i)t(e.geometry,r);else if(\"Polygon\"===i)f(e.coordinates,r);else if(\"MultiPolygon\"===i)for(n=0;n<e.coordinates.length;n++)f(e.coordinates[n],r);return e}(o,!0);try{e._geoJSONIndex=n.cluster?new F(function(e){var r=e.superclusterOptions,n=e.clusterProperties;if(!n||!r)return r;for(var i={},a={},o={accumulated:null,zoom:0},s={properties:null},l=Object.keys(n),c=0,u=l;c<u.length;c+=1){var f=u[c],h=n[f],p=h[0],d=t.createExpression(h[1]),g=t.createExpression(\"string\"==typeof p?[p,[\"accumulated\"],[\"get\",f]]:p);i[f]=d.value,a[f]=g.value}return r.map=function(t){s.properties=t;for(var e={},r=0,n=l;r<n.length;r+=1){var a=n[r];e[a]=i[a].evaluate(o,s)}return e},r.reduce=function(t,e){s.properties=e;for(var r=0,n=l;r<n.length;r+=1){var i=n[r];o.accumulated=t[i],t[i]=a[i].evaluate(o,s)}},r}(n)).load(o.features):function(t,e){return new vt(t,e)}(o,n.geojsonVtOptions)}catch(a){return r(a)}e.loaded={};var s={};if(i){var l=i.finish();l&&(s.resourceTiming={},s.resourceTiming[n.source]=JSON.parse(JSON.stringify(l)))}r(null,s)}))}},r.prototype.coalesce=function(){\"Coalescing\"===this._state?this._state=\"Idle\":\"NeedsLoadData\"===this._state&&(this._state=\"Coalescing\",this._loadData())},r.prototype.reloadTile=function(t,r){var n=this.loaded;return n&&n[t.uid]?e.prototype.reloadTile.call(this,t,r):this.loadTile(t,r)},r.prototype.loadGeoJSON=function(e,r){if(e.request)t.getJSON(e.request,r);else{if(\"string\"!=typeof e.data)return r(new Error(\"Input data given to '\"+e.source+\"' is not a valid GeoJSON object.\"));try{return r(null,JSON.parse(e.data))}catch(t){return r(new Error(\"Input data given to '\"+e.source+\"' is not a valid GeoJSON object.\"))}}},r.prototype.removeSource=function(t,e){this._pendingCallback&&this._pendingCallback(null,{abandoned:!0}),e()},r.prototype.getClusterExpansionZoom=function(t,e){try{e(null,this._geoJSONIndex.getClusterExpansionZoom(t.clusterId))}catch(t){e(t)}},r.prototype.getClusterChildren=function(t,e){try{e(null,this._geoJSONIndex.getChildren(t.clusterId))}catch(t){e(t)}},r.prototype.getClusterLeaves=function(t,e){try{e(null,this._geoJSONIndex.getLeaves(t.clusterId,t.limit,t.offset))}catch(t){e(t)}},r}(l),_t=function(e){var r=this;this.self=e,this.actor=new t.Actor(e,this),this.layerIndexes={},this.availableImages={},this.workerSourceTypes={vector:l,geojson:bt},this.workerSources={},this.demWorkerSources={},this.self.registerWorkerSource=function(t,e){if(r.workerSourceTypes[t])throw new Error('Worker source with name \"'+t+'\" already registered.');r.workerSourceTypes[t]=e},this.self.registerRTLTextPlugin=function(e){if(t.plugin.isParsed())throw new Error(\"RTL text plugin already registered.\");t.plugin.applyArabicShaping=e.applyArabicShaping,t.plugin.processBidirectionalText=e.processBidirectionalText,t.plugin.processStyledBidirectionalText=e.processStyledBidirectionalText}};return _t.prototype.setReferrer=function(t,e){this.referrer=e},_t.prototype.setImages=function(t,e,r){for(var n in this.availableImages[t]=e,this.workerSources[t]){var i=this.workerSources[t][n];for(var a in i)i[a].availableImages=e}r()},_t.prototype.setLayers=function(t,e,r){this.getLayerIndex(t).replace(e),r()},_t.prototype.updateLayers=function(t,e,r){this.getLayerIndex(t).update(e.layers,e.removedIds),r()},_t.prototype.loadTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).loadTile(e,r)},_t.prototype.loadDEMTile=function(t,e,r){this.getDEMWorkerSource(t,e.source).loadTile(e,r)},_t.prototype.reloadTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).reloadTile(e,r)},_t.prototype.abortTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).abortTile(e,r)},_t.prototype.removeTile=function(t,e,r){this.getWorkerSource(t,e.type,e.source).removeTile(e,r)},_t.prototype.removeDEMTile=function(t,e){this.getDEMWorkerSource(t,e.source).removeTile(e)},_t.prototype.removeSource=function(t,e,r){if(this.workerSources[t]&&this.workerSources[t][e.type]&&this.workerSources[t][e.type][e.source]){var n=this.workerSources[t][e.type][e.source];delete this.workerSources[t][e.type][e.source],void 0!==n.removeSource?n.removeSource(e,r):r()}},_t.prototype.loadWorkerSource=function(t,e,r){try{this.self.importScripts(e.url),r()}catch(t){r(t.toString())}},_t.prototype.syncRTLPluginState=function(e,r,n){try{t.plugin.setState(r);var i=t.plugin.getPluginURL();if(t.plugin.isLoaded()&&!t.plugin.isParsed()&&null!=i){this.self.importScripts(i);var a=t.plugin.isParsed();n(a?void 0:new Error(\"RTL Text Plugin failed to import scripts from \"+i),a)}}catch(t){n(t.toString())}},_t.prototype.getAvailableImages=function(t){var e=this.availableImages[t];return e||(e=[]),e},_t.prototype.getLayerIndex=function(t){var e=this.layerIndexes[t];return e||(e=this.layerIndexes[t]=new n),e},_t.prototype.getWorkerSource=function(t,e,r){var n=this;return this.workerSources[t]||(this.workerSources[t]={}),this.workerSources[t][e]||(this.workerSources[t][e]={}),this.workerSources[t][e][r]||(this.workerSources[t][e][r]=new this.workerSourceTypes[e]({send:function(e,r,i){n.actor.send(e,r,i,t)}},this.getLayerIndex(t),this.getAvailableImages(t))),this.workerSources[t][e][r]},_t.prototype.getDEMWorkerSource=function(t,e){return this.demWorkerSources[t]||(this.demWorkerSources[t]={}),this.demWorkerSources[t][e]||(this.demWorkerSources[t][e]=new u),this.demWorkerSources[t][e]},_t.prototype.enforceCacheSizeLimit=function(e,r){t.enforceCacheSizeLimit(r)},\"undefined\"!=typeof WorkerGlobalScope&&void 0!==t.window&&t.window instanceof WorkerGlobalScope&&(t.window.worker=new _t(t.window)),_t})),n(0,(function(t){var e=t.createCommonjsModule((function(t){function e(t){return!r(t)}function r(t){return\"undefined\"==typeof window||\"undefined\"==typeof document?\"not a browser\":Array.prototype&&Array.prototype.every&&Array.prototype.filter&&Array.prototype.forEach&&Array.prototype.indexOf&&Array.prototype.lastIndexOf&&Array.prototype.map&&Array.prototype.some&&Array.prototype.reduce&&Array.prototype.reduceRight&&Array.isArray?Function.prototype&&Function.prototype.bind?Object.keys&&Object.create&&Object.getPrototypeOf&&Object.getOwnPropertyNames&&Object.isSealed&&Object.isFrozen&&Object.isExtensible&&Object.getOwnPropertyDescriptor&&Object.defineProperty&&Object.defineProperties&&Object.seal&&Object.freeze&&Object.preventExtensions?\"JSON\"in window&&\"parse\"in JSON&&\"stringify\"in JSON?function(){if(!(\"Worker\"in window&&\"Blob\"in window&&\"URL\"in window))return!1;var t,e,r=new Blob([\"\"],{type:\"text/javascript\"}),n=URL.createObjectURL(r);try{e=new Worker(n),t=!0}catch(e){t=!1}return e&&e.terminate(),URL.revokeObjectURL(n),t}()?\"Uint8ClampedArray\"in window?ArrayBuffer.isView?function(){var t=document.createElement(\"canvas\");t.width=t.height=1;var e=t.getContext(\"2d\");if(!e)return!1;var r=e.getImageData(0,0,1,1);return r&&r.width===t.width}()?(void 0===n[r=t&&t.failIfMajorPerformanceCaveat]&&(n[r]=function(t){var r=function(t){var r=document.createElement(\"canvas\"),n=Object.create(e.webGLContextAttributes);return n.failIfMajorPerformanceCaveat=t,r.probablySupportsContext?r.probablySupportsContext(\"webgl\",n)||r.probablySupportsContext(\"experimental-webgl\",n):r.supportsContext?r.supportsContext(\"webgl\",n)||r.supportsContext(\"experimental-webgl\",n):r.getContext(\"webgl\",n)||r.getContext(\"experimental-webgl\",n)}(t);if(!r)return!1;var n=r.createShader(r.VERTEX_SHADER);return!(!n||r.isContextLost())&&(r.shaderSource(n,\"void main() {}\"),r.compileShader(n),!0===r.getShaderParameter(n,r.COMPILE_STATUS))}(r)),n[r]?void 0:\"insufficient WebGL support\"):\"insufficient Canvas/getImageData support\":\"insufficient ArrayBuffer support\":\"insufficient Uint8ClampedArray support\":\"insufficient worker support\":\"insufficient JSON support\":\"insufficient Object support\":\"insufficient Function support\":\"insufficent Array support\";var r}t.exports?t.exports=e:window&&(window.mapboxgl=window.mapboxgl||{},window.mapboxgl.supported=e,window.mapboxgl.notSupportedReason=r);var n={};e.webGLContextAttributes={antialias:!1,alpha:!0,stencil:!0,depth:!0}})),r={create:function(e,r,n){var i=t.window.document.createElement(e);return void 0!==r&&(i.className=r),n&&n.appendChild(i),i},createNS:function(e,r){return t.window.document.createElementNS(e,r)}},n=t.window.document.documentElement.style;function i(t){if(!n)return t[0];for(var e=0;e<t.length;e++)if(t[e]in n)return t[e];return t[0]}var a,o=i([\"userSelect\",\"MozUserSelect\",\"WebkitUserSelect\",\"msUserSelect\"]);r.disableDrag=function(){n&&o&&(a=n[o],n[o]=\"none\")},r.enableDrag=function(){n&&o&&(n[o]=a)};var s=i([\"transform\",\"WebkitTransform\"]);r.setTransform=function(t,e){t.style[s]=e};var l=!1;try{var c=Object.defineProperty({},\"passive\",{get:function(){l=!0}});t.window.addEventListener(\"test\",c,c),t.window.removeEventListener(\"test\",c,c)}catch(t){l=!1}r.addEventListener=function(t,e,r,n){void 0===n&&(n={}),t.addEventListener(e,r,\"passive\"in n&&l?n:n.capture)},r.removeEventListener=function(t,e,r,n){void 0===n&&(n={}),t.removeEventListener(e,r,\"passive\"in n&&l?n:n.capture)};var u=function(e){e.preventDefault(),e.stopPropagation(),t.window.removeEventListener(\"click\",u,!0)};function f(t){var e=t.userImage;return!!(e&&e.render&&e.render())&&(t.data.replace(new Uint8Array(e.data.buffer)),!0)}r.suppressClick=function(){t.window.addEventListener(\"click\",u,!0),t.window.setTimeout((function(){t.window.removeEventListener(\"click\",u,!0)}),0)},r.mousePos=function(e,r){var n=e.getBoundingClientRect();return new t.Point(r.clientX-n.left-e.clientLeft,r.clientY-n.top-e.clientTop)},r.touchPos=function(e,r){for(var n=e.getBoundingClientRect(),i=[],a=0;a<r.length;a++)i.push(new t.Point(r[a].clientX-n.left-e.clientLeft,r[a].clientY-n.top-e.clientTop));return i},r.mouseButton=function(e){return void 0!==t.window.InstallTrigger&&2===e.button&&e.ctrlKey&&t.window.navigator.platform.toUpperCase().indexOf(\"MAC\")>=0?0:e.button},r.remove=function(t){t.parentNode&&t.parentNode.removeChild(t)};var h=function(e){function r(){e.call(this),this.images={},this.updatedImages={},this.callbackDispatchedThisFrame={},this.loaded=!1,this.requestors=[],this.patterns={},this.atlasImage=new t.RGBAImage({width:1,height:1}),this.dirty=!0}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.isLoaded=function(){return this.loaded},r.prototype.setLoaded=function(t){if(this.loaded!==t&&(this.loaded=t,t)){for(var e=0,r=this.requestors;e<r.length;e+=1){var n=r[e];this._notify(n.ids,n.callback)}this.requestors=[]}},r.prototype.getImage=function(t){return this.images[t]},r.prototype.addImage=function(t,e){this._validate(t,e)&&(this.images[t]=e)},r.prototype._validate=function(e,r){var n=!0;return this._validateStretch(r.stretchX,r.data&&r.data.width)||(this.fire(new t.ErrorEvent(new Error('Image \"'+e+'\" has invalid \"stretchX\" value'))),n=!1),this._validateStretch(r.stretchY,r.data&&r.data.height)||(this.fire(new t.ErrorEvent(new Error('Image \"'+e+'\" has invalid \"stretchY\" value'))),n=!1),this._validateContent(r.content,r)||(this.fire(new t.ErrorEvent(new Error('Image \"'+e+'\" has invalid \"content\" value'))),n=!1),n},r.prototype._validateStretch=function(t,e){if(!t)return!0;for(var r=0,n=0,i=t;n<i.length;n+=1){var a=i[n];if(a[0]<r||a[1]<a[0]||e<a[1])return!1;r=a[1]}return!0},r.prototype._validateContent=function(t,e){return!(t&&(4!==t.length||t[0]<0||e.data.width<t[0]||t[1]<0||e.data.height<t[1]||t[2]<0||e.data.width<t[2]||t[3]<0||e.data.height<t[3]||t[2]<t[0]||t[3]<t[1]))},r.prototype.updateImage=function(t,e){e.version=this.images[t].version+1,this.images[t]=e,this.updatedImages[t]=!0},r.prototype.removeImage=function(t){var e=this.images[t];delete this.images[t],delete this.patterns[t],e.userImage&&e.userImage.onRemove&&e.userImage.onRemove()},r.prototype.listImages=function(){return Object.keys(this.images)},r.prototype.getImages=function(t,e){var r=!0;if(!this.isLoaded())for(var n=0,i=t;n<i.length;n+=1)this.images[i[n]]||(r=!1);this.isLoaded()||r?this._notify(t,e):this.requestors.push({ids:t,callback:e})},r.prototype._notify=function(e,r){for(var n={},i=0,a=e;i<a.length;i+=1){var o=a[i];this.images[o]||this.fire(new t.Event(\"styleimagemissing\",{id:o}));var s=this.images[o];s?n[o]={data:s.data.clone(),pixelRatio:s.pixelRatio,sdf:s.sdf,version:s.version,stretchX:s.stretchX,stretchY:s.stretchY,content:s.content,hasRenderCallback:Boolean(s.userImage&&s.userImage.render)}:t.warnOnce('Image \"'+o+'\" could not be loaded. Please make sure you have added the image with map.addImage() or a \"sprite\" property in your style. You can provide missing images by listening for the \"styleimagemissing\" map event.')}r(null,n)},r.prototype.getPixelSize=function(){var t=this.atlasImage;return{width:t.width,height:t.height}},r.prototype.getPattern=function(e){var r=this.patterns[e],n=this.getImage(e);if(!n)return null;if(r&&r.position.version===n.version)return r.position;if(r)r.position.version=n.version;else{var i={w:n.data.width+2,h:n.data.height+2,x:0,y:0},a=new t.ImagePosition(i,n);this.patterns[e]={bin:i,position:a}}return this._updatePatternAtlas(),this.patterns[e].position},r.prototype.bind=function(e){var r=e.gl;this.atlasTexture?this.dirty&&(this.atlasTexture.update(this.atlasImage),this.dirty=!1):this.atlasTexture=new t.Texture(e,this.atlasImage,r.RGBA),this.atlasTexture.bind(r.LINEAR,r.CLAMP_TO_EDGE)},r.prototype._updatePatternAtlas=function(){var e=[];for(var r in this.patterns)e.push(this.patterns[r].bin);var n=t.potpack(e),i=n.w,a=n.h,o=this.atlasImage;for(var s in o.resize({width:i||1,height:a||1}),this.patterns){var l=this.patterns[s].bin,c=l.x+1,u=l.y+1,f=this.images[s].data,h=f.width,p=f.height;t.RGBAImage.copy(f,o,{x:0,y:0},{x:c,y:u},{width:h,height:p}),t.RGBAImage.copy(f,o,{x:0,y:p-1},{x:c,y:u-1},{width:h,height:1}),t.RGBAImage.copy(f,o,{x:0,y:0},{x:c,y:u+p},{width:h,height:1}),t.RGBAImage.copy(f,o,{x:h-1,y:0},{x:c-1,y:u},{width:1,height:p}),t.RGBAImage.copy(f,o,{x:0,y:0},{x:c+h,y:u},{width:1,height:p})}this.dirty=!0},r.prototype.beginFrame=function(){this.callbackDispatchedThisFrame={}},r.prototype.dispatchRenderCallbacks=function(t){for(var e=0,r=t;e<r.length;e+=1){var n=r[e];if(!this.callbackDispatchedThisFrame[n]){this.callbackDispatchedThisFrame[n]=!0;var i=this.images[n];f(i)&&this.updateImage(n,i)}}},r}(t.Evented),p=m,d=m,g=1e20;function m(t,e,r,n,i,a){this.fontSize=t||24,this.buffer=void 0===e?3:e,this.cutoff=n||.25,this.fontFamily=i||\"sans-serif\",this.fontWeight=a||\"normal\",this.radius=r||8;var o=this.size=this.fontSize+2*this.buffer;this.canvas=document.createElement(\"canvas\"),this.canvas.width=this.canvas.height=o,this.ctx=this.canvas.getContext(\"2d\"),this.ctx.font=this.fontWeight+\" \"+this.fontSize+\"px \"+this.fontFamily,this.ctx.textBaseline=\"middle\",this.ctx.fillStyle=\"black\",this.gridOuter=new Float64Array(o*o),this.gridInner=new Float64Array(o*o),this.f=new Float64Array(o),this.d=new Float64Array(o),this.z=new Float64Array(o+1),this.v=new Int16Array(o),this.middle=Math.round(o/2*(navigator.userAgent.indexOf(\"Gecko/\")>=0?1.2:1))}function v(t,e,r,n,i,a,o){for(var s=0;s<e;s++){for(var l=0;l<r;l++)n[l]=t[l*e+s];for(y(n,i,a,o,r),l=0;l<r;l++)t[l*e+s]=i[l]}for(l=0;l<r;l++){for(s=0;s<e;s++)n[s]=t[l*e+s];for(y(n,i,a,o,e),s=0;s<e;s++)t[l*e+s]=Math.sqrt(i[s])}}function y(t,e,r,n,i){r[0]=0,n[0]=-g,n[1]=+g;for(var a=1,o=0;a<i;a++){for(var s=(t[a]+a*a-(t[r[o]]+r[o]*r[o]))/(2*a-2*r[o]);s<=n[o];)o--,s=(t[a]+a*a-(t[r[o]]+r[o]*r[o]))/(2*a-2*r[o]);r[++o]=a,n[o]=s,n[o+1]=+g}for(a=0,o=0;a<i;a++){for(;n[o+1]<a;)o++;e[a]=(a-r[o])*(a-r[o])+t[r[o]]}}m.prototype.draw=function(t){this.ctx.clearRect(0,0,this.size,this.size),this.ctx.fillText(t,this.buffer,this.middle);for(var e=this.ctx.getImageData(0,0,this.size,this.size),r=new Uint8ClampedArray(this.size*this.size),n=0;n<this.size*this.size;n++){var i=e.data[4*n+3]/255;this.gridOuter[n]=1===i?0:0===i?g:Math.pow(Math.max(0,.5-i),2),this.gridInner[n]=1===i?g:0===i?0:Math.pow(Math.max(0,i-.5),2)}for(v(this.gridOuter,this.size,this.size,this.f,this.d,this.v,this.z),v(this.gridInner,this.size,this.size,this.f,this.d,this.v,this.z),n=0;n<this.size*this.size;n++)r[n]=Math.max(0,Math.min(255,Math.round(255-255*((this.gridOuter[n]-this.gridInner[n])/this.radius+this.cutoff))));return r},p.default=d;var x=function(t,e){this.requestManager=t,this.localIdeographFontFamily=e,this.entries={}};x.prototype.setURL=function(t){this.url=t},x.prototype.getGlyphs=function(e,r){var n=this,i=[];for(var a in e)for(var o=0,s=e[a];o<s.length;o+=1)i.push({stack:a,id:s[o]});t.asyncAll(i,(function(t,e){var r=t.stack,i=t.id,a=n.entries[r];a||(a=n.entries[r]={glyphs:{},requests:{},ranges:{}});var o=a.glyphs[i];if(void 0===o){if(o=n._tinySDF(a,r,i))return a.glyphs[i]=o,void e(null,{stack:r,id:i,glyph:o});var s=Math.floor(i/256);if(256*s>65535)e(new Error(\"glyphs > 65535 not supported\"));else if(a.ranges[s])e(null,{stack:r,id:i,glyph:o});else{var l=a.requests[s];l||(l=a.requests[s]=[],x.loadGlyphRange(r,s,n.url,n.requestManager,(function(t,e){if(e){for(var r in e)n._doesCharSupportLocalGlyph(+r)||(a.glyphs[+r]=e[+r]);a.ranges[s]=!0}for(var i=0,o=l;i<o.length;i+=1)(0,o[i])(t,e);delete a.requests[s]}))),l.push((function(t,n){t?e(t):n&&e(null,{stack:r,id:i,glyph:n[i]||null})}))}}else e(null,{stack:r,id:i,glyph:o})}),(function(t,e){if(t)r(t);else if(e){for(var n={},i=0,a=e;i<a.length;i+=1){var o=a[i],s=o.stack,l=o.id,c=o.glyph;(n[s]||(n[s]={}))[l]=c&&{id:c.id,bitmap:c.bitmap.clone(),metrics:c.metrics}}r(null,n)}}))},x.prototype._doesCharSupportLocalGlyph=function(e){return!!this.localIdeographFontFamily&&(t.isChar[\"CJK Unified Ideographs\"](e)||t.isChar[\"Hangul Syllables\"](e)||t.isChar.Hiragana(e)||t.isChar.Katakana(e))},x.prototype._tinySDF=function(e,r,n){var i=this.localIdeographFontFamily;if(i&&this._doesCharSupportLocalGlyph(n)){var a=e.tinySDF;if(!a){var o=\"400\";/bold/i.test(r)?o=\"900\":/medium/i.test(r)?o=\"500\":/light/i.test(r)&&(o=\"200\"),a=e.tinySDF=new x.TinySDF(24,3,8,.25,i,o)}return{id:n,bitmap:new t.AlphaImage({width:30,height:30},a.draw(String.fromCharCode(n))),metrics:{width:24,height:24,left:0,top:-8,advance:24}}}},x.loadGlyphRange=function(e,r,n,i,a){var o=256*r,s=o+255,l=i.transformRequest(i.normalizeGlyphsURL(n).replace(\"{fontstack}\",e).replace(\"{range}\",o+\"-\"+s),t.ResourceType.Glyphs);t.getArrayBuffer(l,(function(e,r){if(e)a(e);else if(r){for(var n={},i=0,o=t.parseGlyphPBF(r);i<o.length;i+=1){var s=o[i];n[s.id]=s}a(null,n)}}))},x.TinySDF=p;var b=function(){this.specification=t.styleSpec.light.position};b.prototype.possiblyEvaluate=function(e,r){return t.sphericalToCartesian(e.expression.evaluate(r))},b.prototype.interpolate=function(e,r,n){return{x:t.number(e.x,r.x,n),y:t.number(e.y,r.y,n),z:t.number(e.z,r.z,n)}};var _=new t.Properties({anchor:new t.DataConstantProperty(t.styleSpec.light.anchor),position:new b,color:new t.DataConstantProperty(t.styleSpec.light.color),intensity:new t.DataConstantProperty(t.styleSpec.light.intensity)}),w=function(e){function r(r){e.call(this),this._transitionable=new t.Transitionable(_),this.setLight(r),this._transitioning=this._transitionable.untransitioned()}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.getLight=function(){return this._transitionable.serialize()},r.prototype.setLight=function(e,r){if(void 0===r&&(r={}),!this._validate(t.validateLight,e,r))for(var n in e){var i=e[n];t.endsWith(n,\"-transition\")?this._transitionable.setTransition(n.slice(0,-\"-transition\".length),i):this._transitionable.setValue(n,i)}},r.prototype.updateTransitions=function(t){this._transitioning=this._transitionable.transitioned(t,this._transitioning)},r.prototype.hasTransition=function(){return this._transitioning.hasTransition()},r.prototype.recalculate=function(t){this.properties=this._transitioning.possiblyEvaluate(t)},r.prototype._validate=function(e,r,n){return(!n||!1!==n.validate)&&t.emitValidationErrors(this,e.call(t.validateStyle,t.extend({value:r,style:{glyphs:!0,sprite:!0},styleSpec:t.styleSpec})))},r}(t.Evented),T=function(t,e){this.width=t,this.height=e,this.nextRow=0,this.data=new Uint8Array(this.width*this.height),this.dashEntry={}};T.prototype.getDash=function(t,e){var r=t.join(\",\")+String(e);return this.dashEntry[r]||(this.dashEntry[r]=this.addDash(t,e)),this.dashEntry[r]},T.prototype.getDashRanges=function(t,e,r){var n=[],i=t.length%2==1?-t[t.length-1]*r:0,a=t[0]*r,o=!0;n.push({left:i,right:a,isDash:o,zeroLength:0===t[0]});for(var s=t[0],l=1;l<t.length;l++){var c=t[l];n.push({left:i=s*r,right:a=(s+=c)*r,isDash:o=!o,zeroLength:0===c})}return n},T.prototype.addRoundDash=function(t,e,r){for(var n=e/2,i=-r;i<=r;i++)for(var a=this.width*(this.nextRow+r+i),o=0,s=t[o],l=0;l<this.width;l++){l/s.right>1&&(s=t[++o]);var c=Math.abs(l-s.left),u=Math.abs(l-s.right),f=Math.min(c,u),h=void 0,p=i/r*(n+1);if(s.isDash){var d=n-Math.abs(p);h=Math.sqrt(f*f+d*d)}else h=n-Math.sqrt(f*f+p*p);this.data[a+l]=Math.max(0,Math.min(255,h+128))}},T.prototype.addRegularDash=function(t){for(var e=t.length-1;e>=0;--e){var r=t[e],n=t[e+1];r.zeroLength?t.splice(e,1):n&&n.isDash===r.isDash&&(n.left=r.left,t.splice(e,1))}var i=t[0],a=t[t.length-1];i.isDash===a.isDash&&(i.left=a.left-this.width,a.right=i.right+this.width);for(var o=this.width*this.nextRow,s=0,l=t[s],c=0;c<this.width;c++){c/l.right>1&&(l=t[++s]);var u=Math.abs(c-l.left),f=Math.abs(c-l.right),h=Math.min(u,f);this.data[o+c]=Math.max(0,Math.min(255,(l.isDash?h:-h)+128))}},T.prototype.addDash=function(e,r){var n=r?7:0,i=2*n+1;if(this.nextRow+i>this.height)return t.warnOnce(\"LineAtlas out of space\"),null;for(var a=0,o=0;o<e.length;o++)a+=e[o];if(0!==a){var s=this.width/a,l=this.getDashRanges(e,this.width,s);r?this.addRoundDash(l,s,n):this.addRegularDash(l)}var c={y:(this.nextRow+n+.5)/this.height,height:2*n/this.height,width:a};return this.nextRow+=i,this.dirty=!0,c},T.prototype.bind=function(t){var e=t.gl;this.texture?(e.bindTexture(e.TEXTURE_2D,this.texture),this.dirty&&(this.dirty=!1,e.texSubImage2D(e.TEXTURE_2D,0,0,0,this.width,this.height,e.ALPHA,e.UNSIGNED_BYTE,this.data))):(this.texture=e.createTexture(),e.bindTexture(e.TEXTURE_2D,this.texture),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_S,e.REPEAT),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_WRAP_T,e.REPEAT),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MIN_FILTER,e.LINEAR),e.texParameteri(e.TEXTURE_2D,e.TEXTURE_MAG_FILTER,e.LINEAR),e.texImage2D(e.TEXTURE_2D,0,e.ALPHA,this.width,this.height,0,e.ALPHA,e.UNSIGNED_BYTE,this.data))};var k=function e(r,n){this.workerPool=r,this.actors=[],this.currentActor=0,this.id=t.uniqueId();for(var i=this.workerPool.acquire(this.id),a=0;a<i.length;a++){var o=new e.Actor(i[a],n,this.id);o.name=\"Worker \"+a,this.actors.push(o)}};function M(e,r,n){var i=function(i,a){if(i)return n(i);if(a){var o=t.pick(t.extend(a,e),[\"tiles\",\"minzoom\",\"maxzoom\",\"attribution\",\"mapbox_logo\",\"bounds\",\"scheme\",\"tileSize\",\"encoding\"]);a.vector_layers&&(o.vectorLayers=a.vector_layers,o.vectorLayerIds=o.vectorLayers.map((function(t){return t.id}))),o.tiles=r.canonicalizeTileset(o,e.url),n(null,o)}};return e.url?t.getJSON(r.transformRequest(r.normalizeSourceURL(e.url),t.ResourceType.Source),i):t.browser.frame((function(){return i(null,e)}))}k.prototype.broadcast=function(e,r,n){t.asyncAll(this.actors,(function(t,n){t.send(e,r,n)}),n=n||function(){})},k.prototype.getActor=function(){return this.currentActor=(this.currentActor+1)%this.actors.length,this.actors[this.currentActor]},k.prototype.remove=function(){this.actors.forEach((function(t){t.remove()})),this.actors=[],this.workerPool.release(this.id)},k.Actor=t.Actor;var A=function(e,r,n){this.bounds=t.LngLatBounds.convert(this.validateBounds(e)),this.minzoom=r||0,this.maxzoom=n||24};A.prototype.validateBounds=function(t){return Array.isArray(t)&&4===t.length?[Math.max(-180,t[0]),Math.max(-90,t[1]),Math.min(180,t[2]),Math.min(90,t[3])]:[-180,-90,180,90]},A.prototype.contains=function(e){var r=Math.pow(2,e.z),n=Math.floor(t.mercatorXfromLng(this.bounds.getWest())*r),i=Math.floor(t.mercatorYfromLat(this.bounds.getNorth())*r),a=Math.ceil(t.mercatorXfromLng(this.bounds.getEast())*r),o=Math.ceil(t.mercatorYfromLat(this.bounds.getSouth())*r);return e.x>=n&&e.x<a&&e.y>=i&&e.y<o};var S=function(e){function r(r,n,i,a){if(e.call(this),this.id=r,this.dispatcher=i,this.type=\"vector\",this.minzoom=0,this.maxzoom=22,this.scheme=\"xyz\",this.tileSize=512,this.reparseOverscaled=!0,this.isTileClipped=!0,this._loaded=!1,t.extend(this,t.pick(n,[\"url\",\"scheme\",\"tileSize\",\"promoteId\"])),this._options=t.extend({type:\"vector\"},n),this._collectResourceTiming=n.collectResourceTiming,512!==this.tileSize)throw new Error(\"vector tile sources must have a tileSize of 512\");this.setEventedParent(a)}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.load=function(){var e=this;this._loaded=!1,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._tileJSONRequest=M(this._options,this.map._requestManager,(function(r,n){e._tileJSONRequest=null,e._loaded=!0,r?e.fire(new t.ErrorEvent(r)):n&&(t.extend(e,n),n.bounds&&(e.tileBounds=new A(n.bounds,e.minzoom,e.maxzoom)),t.postTurnstileEvent(n.tiles,e.map._requestManager._customAccessToken),t.postMapLoadEvent(n.tiles,e.map._getMapId(),e.map._requestManager._skuToken,e.map._requestManager._customAccessToken),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"metadata\"})),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"content\"})))}))},r.prototype.loaded=function(){return this._loaded},r.prototype.hasTile=function(t){return!this.tileBounds||this.tileBounds.contains(t.canonical)},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.onRemove=function(){this._tileJSONRequest&&(this._tileJSONRequest.cancel(),this._tileJSONRequest=null)},r.prototype.serialize=function(){return t.extend({},this._options)},r.prototype.loadTile=function(e,r){var n=this.map._requestManager.normalizeTileURL(e.tileID.canonical.url(this.tiles,this.scheme)),i={request:this.map._requestManager.transformRequest(n,t.ResourceType.Tile),uid:e.uid,tileID:e.tileID,zoom:e.tileID.overscaledZ,tileSize:this.tileSize*e.tileID.overscaleFactor(),type:this.type,source:this.id,pixelRatio:t.browser.devicePixelRatio,showCollisionBoxes:this.map.showCollisionBoxes,promoteId:this.promoteId};function a(n,i){return delete e.request,e.aborted?r(null):n&&404!==n.status?r(n):(i&&i.resourceTiming&&(e.resourceTiming=i.resourceTiming),this.map._refreshExpiredTiles&&i&&e.setExpiryData(i),e.loadVectorData(i,this.map.painter),t.cacheEntryPossiblyAdded(this.dispatcher),r(null),void(e.reloadCallback&&(this.loadTile(e,e.reloadCallback),e.reloadCallback=null)))}i.request.collectResourceTiming=this._collectResourceTiming,e.actor&&\"expired\"!==e.state?\"loading\"===e.state?e.reloadCallback=r:e.request=e.actor.send(\"reloadTile\",i,a.bind(this)):(e.actor=this.dispatcher.getActor(),e.request=e.actor.send(\"loadTile\",i,a.bind(this)))},r.prototype.abortTile=function(t){t.request&&(t.request.cancel(),delete t.request),t.actor&&t.actor.send(\"abortTile\",{uid:t.uid,type:this.type,source:this.id},void 0)},r.prototype.unloadTile=function(t){t.unloadVectorData(),t.actor&&t.actor.send(\"removeTile\",{uid:t.uid,type:this.type,source:this.id},void 0)},r.prototype.hasTransition=function(){return!1},r}(t.Evented),E=function(e){function r(r,n,i,a){e.call(this),this.id=r,this.dispatcher=i,this.setEventedParent(a),this.type=\"raster\",this.minzoom=0,this.maxzoom=22,this.roundZoom=!0,this.scheme=\"xyz\",this.tileSize=512,this._loaded=!1,this._options=t.extend({type:\"raster\"},n),t.extend(this,t.pick(n,[\"url\",\"scheme\",\"tileSize\"]))}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.load=function(){var e=this;this._loaded=!1,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._tileJSONRequest=M(this._options,this.map._requestManager,(function(r,n){e._tileJSONRequest=null,e._loaded=!0,r?e.fire(new t.ErrorEvent(r)):n&&(t.extend(e,n),n.bounds&&(e.tileBounds=new A(n.bounds,e.minzoom,e.maxzoom)),t.postTurnstileEvent(n.tiles),t.postMapLoadEvent(n.tiles,e.map._getMapId(),e.map._requestManager._skuToken),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"metadata\"})),e.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"content\"})))}))},r.prototype.loaded=function(){return this._loaded},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.onRemove=function(){this._tileJSONRequest&&(this._tileJSONRequest.cancel(),this._tileJSONRequest=null)},r.prototype.serialize=function(){return t.extend({},this._options)},r.prototype.hasTile=function(t){return!this.tileBounds||this.tileBounds.contains(t.canonical)},r.prototype.loadTile=function(e,r){var n=this,i=this.map._requestManager.normalizeTileURL(e.tileID.canonical.url(this.tiles,this.scheme),this.tileSize);e.request=t.getImage(this.map._requestManager.transformRequest(i,t.ResourceType.Tile),(function(i,a){if(delete e.request,e.aborted)e.state=\"unloaded\",r(null);else if(i)e.state=\"errored\",r(i);else if(a){n.map._refreshExpiredTiles&&e.setExpiryData(a),delete a.cacheControl,delete a.expires;var o=n.map.painter.context,s=o.gl;e.texture=n.map.painter.getTileTexture(a.width),e.texture?e.texture.update(a,{useMipmap:!0}):(e.texture=new t.Texture(o,a,s.RGBA,{useMipmap:!0}),e.texture.bind(s.LINEAR,s.CLAMP_TO_EDGE,s.LINEAR_MIPMAP_NEAREST),o.extTextureFilterAnisotropic&&s.texParameterf(s.TEXTURE_2D,o.extTextureFilterAnisotropic.TEXTURE_MAX_ANISOTROPY_EXT,o.extTextureFilterAnisotropicMax)),e.state=\"loaded\",t.cacheEntryPossiblyAdded(n.dispatcher),r(null)}}))},r.prototype.abortTile=function(t,e){t.request&&(t.request.cancel(),delete t.request),e()},r.prototype.unloadTile=function(t,e){t.texture&&this.map.painter.saveTileTexture(t.texture),e()},r.prototype.hasTransition=function(){return!1},r}(t.Evented),C=function(e){function r(r,n,i,a){e.call(this,r,n,i,a),this.type=\"raster-dem\",this.maxzoom=22,this._options=t.extend({type:\"raster-dem\"},n),this.encoding=n.encoding||\"mapbox\"}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.serialize=function(){return{type:\"raster-dem\",url:this.url,tileSize:this.tileSize,tiles:this.tiles,bounds:this.bounds,encoding:this.encoding}},r.prototype.loadTile=function(e,r){var n=this.map._requestManager.normalizeTileURL(e.tileID.canonical.url(this.tiles,this.scheme),this.tileSize);function i(t,n){t&&(e.state=\"errored\",r(t)),n&&(e.dem=n,e.needsHillshadePrepare=!0,e.state=\"loaded\",r(null))}e.request=t.getImage(this.map._requestManager.transformRequest(n,t.ResourceType.Tile),function(n,a){if(delete e.request,e.aborted)e.state=\"unloaded\",r(null);else if(n)e.state=\"errored\",r(n);else if(a){this.map._refreshExpiredTiles&&e.setExpiryData(a),delete a.cacheControl,delete a.expires;var o=t.window.ImageBitmap&&a instanceof t.window.ImageBitmap&&t.offscreenCanvasSupported()?a:t.browser.getImageData(a,1),s={uid:e.uid,coord:e.tileID,source:this.id,rawImageData:o,encoding:this.encoding};e.actor&&\"expired\"!==e.state||(e.actor=this.dispatcher.getActor(),e.actor.send(\"loadDEMTile\",s,i.bind(this)))}}.bind(this)),e.neighboringTiles=this._getNeighboringTiles(e.tileID)},r.prototype._getNeighboringTiles=function(e){var r=e.canonical,n=Math.pow(2,r.z),i=(r.x-1+n)%n,a=0===r.x?e.wrap-1:e.wrap,o=(r.x+1+n)%n,s=r.x+1===n?e.wrap+1:e.wrap,l={};return l[new t.OverscaledTileID(e.overscaledZ,a,r.z,i,r.y).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,s,r.z,o,r.y).key]={backfilled:!1},r.y>0&&(l[new t.OverscaledTileID(e.overscaledZ,a,r.z,i,r.y-1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,e.wrap,r.z,r.x,r.y-1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,s,r.z,o,r.y-1).key]={backfilled:!1}),r.y+1<n&&(l[new t.OverscaledTileID(e.overscaledZ,a,r.z,i,r.y+1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,e.wrap,r.z,r.x,r.y+1).key]={backfilled:!1},l[new t.OverscaledTileID(e.overscaledZ,s,r.z,o,r.y+1).key]={backfilled:!1}),l},r.prototype.unloadTile=function(t){t.demTexture&&this.map.painter.saveTileTexture(t.demTexture),t.fbo&&(t.fbo.destroy(),delete t.fbo),t.dem&&delete t.dem,delete t.neighboringTiles,t.state=\"unloaded\",t.actor&&t.actor.send(\"removeDEMTile\",{uid:t.uid,source:this.id})},r}(E),L=function(e){function r(r,n,i,a){e.call(this),this.id=r,this.type=\"geojson\",this.minzoom=0,this.maxzoom=18,this.tileSize=512,this.isTileClipped=!0,this.reparseOverscaled=!0,this._removed=!1,this._loaded=!1,this.actor=i.getActor(),this.setEventedParent(a),this._data=n.data,this._options=t.extend({},n),this._collectResourceTiming=n.collectResourceTiming,this._resourceTiming=[],void 0!==n.maxzoom&&(this.maxzoom=n.maxzoom),n.type&&(this.type=n.type),n.attribution&&(this.attribution=n.attribution),this.promoteId=n.promoteId;var o=t.EXTENT/this.tileSize;this.workerOptions=t.extend({source:this.id,cluster:n.cluster||!1,geojsonVtOptions:{buffer:(void 0!==n.buffer?n.buffer:128)*o,tolerance:(void 0!==n.tolerance?n.tolerance:.375)*o,extent:t.EXTENT,maxZoom:this.maxzoom,lineMetrics:n.lineMetrics||!1,generateId:n.generateId||!1},superclusterOptions:{maxZoom:void 0!==n.clusterMaxZoom?Math.min(n.clusterMaxZoom,this.maxzoom-1):this.maxzoom-1,extent:t.EXTENT,radius:(n.clusterRadius||50)*o,log:!1,generateId:n.generateId||!1},clusterProperties:n.clusterProperties},n.workerOptions)}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.load=function(){var e=this;this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._updateWorkerData((function(r){if(r)e.fire(new t.ErrorEvent(r));else{var n={dataType:\"source\",sourceDataType:\"metadata\"};e._collectResourceTiming&&e._resourceTiming&&e._resourceTiming.length>0&&(n.resourceTiming=e._resourceTiming,e._resourceTiming=[]),e.fire(new t.Event(\"data\",n))}}))},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.setData=function(e){var r=this;return this._data=e,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this._updateWorkerData((function(e){if(e)r.fire(new t.ErrorEvent(e));else{var n={dataType:\"source\",sourceDataType:\"content\"};r._collectResourceTiming&&r._resourceTiming&&r._resourceTiming.length>0&&(n.resourceTiming=r._resourceTiming,r._resourceTiming=[]),r.fire(new t.Event(\"data\",n))}})),this},r.prototype.getClusterExpansionZoom=function(t,e){return this.actor.send(\"geojson.getClusterExpansionZoom\",{clusterId:t,source:this.id},e),this},r.prototype.getClusterChildren=function(t,e){return this.actor.send(\"geojson.getClusterChildren\",{clusterId:t,source:this.id},e),this},r.prototype.getClusterLeaves=function(t,e,r,n){return this.actor.send(\"geojson.getClusterLeaves\",{source:this.id,clusterId:t,limit:e,offset:r},n),this},r.prototype._updateWorkerData=function(e){var r=this;this._loaded=!1;var n=t.extend({},this.workerOptions),i=this._data;\"string\"==typeof i?(n.request=this.map._requestManager.transformRequest(t.browser.resolveURL(i),t.ResourceType.Source),n.request.collectResourceTiming=this._collectResourceTiming):n.data=JSON.stringify(i),this.actor.send(this.type+\".loadData\",n,(function(t,i){r._removed||i&&i.abandoned||(r._loaded=!0,i&&i.resourceTiming&&i.resourceTiming[r.id]&&(r._resourceTiming=i.resourceTiming[r.id].slice(0)),r.actor.send(r.type+\".coalesce\",{source:n.source},null),e(t))}))},r.prototype.loaded=function(){return this._loaded},r.prototype.loadTile=function(e,r){var n=this,i=e.actor?\"reloadTile\":\"loadTile\";e.actor=this.actor,e.request=this.actor.send(i,{type:this.type,uid:e.uid,tileID:e.tileID,zoom:e.tileID.overscaledZ,maxZoom:this.maxzoom,tileSize:this.tileSize,source:this.id,pixelRatio:t.browser.devicePixelRatio,showCollisionBoxes:this.map.showCollisionBoxes,promoteId:this.promoteId},(function(t,a){return delete e.request,e.unloadVectorData(),e.aborted?r(null):t?r(t):(e.loadVectorData(a,n.map.painter,\"reloadTile\"===i),r(null))}))},r.prototype.abortTile=function(t){t.request&&(t.request.cancel(),delete t.request),t.aborted=!0},r.prototype.unloadTile=function(t){t.unloadVectorData(),this.actor.send(\"removeTile\",{uid:t.uid,type:this.type,source:this.id})},r.prototype.onRemove=function(){this._removed=!0,this.actor.send(\"removeSource\",{type:this.type,source:this.id})},r.prototype.serialize=function(){return t.extend({},this._options,{type:this.type,data:this._data})},r.prototype.hasTransition=function(){return!1},r}(t.Evented),I=t.createLayout([{name:\"a_pos\",type:\"Int16\",components:2},{name:\"a_texture_pos\",type:\"Int16\",components:2}]),P=function(e){function r(t,r,n,i){e.call(this),this.id=t,this.dispatcher=n,this.coordinates=r.coordinates,this.type=\"image\",this.minzoom=0,this.maxzoom=22,this.tileSize=512,this.tiles={},this._loaded=!1,this.setEventedParent(i),this.options=r}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.load=function(e,r){var n=this;this._loaded=!1,this.fire(new t.Event(\"dataloading\",{dataType:\"source\"})),this.url=this.options.url,t.getImage(this.map._requestManager.transformRequest(this.url,t.ResourceType.Image),(function(i,a){n._loaded=!0,i?n.fire(new t.ErrorEvent(i)):a&&(n.image=a,e&&(n.coordinates=e),r&&r(),n._finishLoading())}))},r.prototype.loaded=function(){return this._loaded},r.prototype.updateImage=function(t){var e=this;return this.image&&t.url?(this.options.url=t.url,this.load(t.coordinates,(function(){e.texture=null})),this):this},r.prototype._finishLoading=function(){this.map&&(this.setCoordinates(this.coordinates),this.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"metadata\"})))},r.prototype.onAdd=function(t){this.map=t,this.load()},r.prototype.setCoordinates=function(e){var r=this;this.coordinates=e;var n=e.map(t.MercatorCoordinate.fromLngLat);this.tileID=function(e){for(var r=1/0,n=1/0,i=-1/0,a=-1/0,o=0,s=e;o<s.length;o+=1){var l=s[o];r=Math.min(r,l.x),n=Math.min(n,l.y),i=Math.max(i,l.x),a=Math.max(a,l.y)}var c=Math.max(i-r,a-n),u=Math.max(0,Math.floor(-Math.log(c)/Math.LN2)),f=Math.pow(2,u);return new t.CanonicalTileID(u,Math.floor((r+i)/2*f),Math.floor((n+a)/2*f))}(n),this.minzoom=this.maxzoom=this.tileID.z;var i=n.map((function(t){return r.tileID.getTilePoint(t)._round()}));return this._boundsArray=new t.StructArrayLayout4i8,this._boundsArray.emplaceBack(i[0].x,i[0].y,0,0),this._boundsArray.emplaceBack(i[1].x,i[1].y,t.EXTENT,0),this._boundsArray.emplaceBack(i[3].x,i[3].y,0,t.EXTENT),this._boundsArray.emplaceBack(i[2].x,i[2].y,t.EXTENT,t.EXTENT),this.boundsBuffer&&(this.boundsBuffer.destroy(),delete this.boundsBuffer),this.fire(new t.Event(\"data\",{dataType:\"source\",sourceDataType:\"content\"})),this},r.prototype.prepare=function(){if(0!==Object.keys(this.tiles).length&&this.image){var e=this.map.painter.context,r=e.gl;for(var n in this.boundsBuffer||(this.boundsBuffer=e.createVertexBuffer(this._boundsArray,I.members)),this.boundsSegments||(this.boundsSegments=t.SegmentVector.simpleSegment(0,0,4,2)),this.texture||(this.texture=new t.Texture(e,this.image,r.RGBA),this.texture.bind(r.LINEAR,r.CLAMP_TO_EDGE)),this.tiles){var i=this.tiles[n];\"loaded\"!==i.state&&(i.state=\"loaded\",i.texture=this.texture)}}},r.prototype.loadTile=function(t,e){this.tileID&&this.tileID.equals(t.tileID.canonical)?(this.tiles[String(t.tileID.wrap)]=t,t.buckets={},e(null)):(t.state=\"errored\",e(null))},r.prototype.serialize=function(){return{type:\"image\",url:this.options.url,coordinates:this.coordinates}},r.prototype.hasTransition=function(){return!1},r}(t.Evented),z=function(e){function r(t,r,n,i){e.call(this,t,r,n,i),this.roundZoom=!0,this.type=\"video\",this.options=r}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.load=function(){var e=this;this._loaded=!1;var r=this.options;this.urls=[];for(var n=0,i=r.urls;n<i.length;n+=1)this.urls.push(this.map._requestManager.transformRequest(i[n],t.ResourceType.Source).url);t.getVideo(this.urls,(function(r,n){e._loaded=!0,r?e.fire(new t.ErrorEvent(r)):n&&(e.video=n,e.video.loop=!0,e.video.addEventListener(\"playing\",(function(){e.map.triggerRepaint()})),e.map&&e.video.play(),e._finishLoading())}))},r.prototype.pause=function(){this.video&&this.video.pause()},r.prototype.play=function(){this.video&&this.video.play()},r.prototype.seek=function(e){if(this.video){var r=this.video.seekable;e<r.start(0)||e>r.end(0)?this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+this.id,null,\"Playback for this video can be set only between the \"+r.start(0)+\" and \"+r.end(0)+\"-second mark.\"))):this.video.currentTime=e}},r.prototype.getVideo=function(){return this.video},r.prototype.onAdd=function(t){this.map||(this.map=t,this.load(),this.video&&(this.video.play(),this.setCoordinates(this.coordinates)))},r.prototype.prepare=function(){if(!(0===Object.keys(this.tiles).length||this.video.readyState<2)){var e=this.map.painter.context,r=e.gl;for(var n in this.boundsBuffer||(this.boundsBuffer=e.createVertexBuffer(this._boundsArray,I.members)),this.boundsSegments||(this.boundsSegments=t.SegmentVector.simpleSegment(0,0,4,2)),this.texture?this.video.paused||(this.texture.bind(r.LINEAR,r.CLAMP_TO_EDGE),r.texSubImage2D(r.TEXTURE_2D,0,0,0,r.RGBA,r.UNSIGNED_BYTE,this.video)):(this.texture=new t.Texture(e,this.video,r.RGBA),this.texture.bind(r.LINEAR,r.CLAMP_TO_EDGE)),this.tiles){var i=this.tiles[n];\"loaded\"!==i.state&&(i.state=\"loaded\",i.texture=this.texture)}}},r.prototype.serialize=function(){return{type:\"video\",urls:this.urls,coordinates:this.coordinates}},r.prototype.hasTransition=function(){return this.video&&!this.video.paused},r}(P),O=function(e){function r(r,n,i,a){e.call(this,r,n,i,a),n.coordinates?Array.isArray(n.coordinates)&&4===n.coordinates.length&&!n.coordinates.some((function(t){return!Array.isArray(t)||2!==t.length||t.some((function(t){return\"number\"!=typeof t}))}))||this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'\"coordinates\" property must be an array of 4 longitude/latitude array pairs'))):this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'missing required property \"coordinates\"'))),n.animate&&\"boolean\"!=typeof n.animate&&this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'optional \"animate\" property must be a boolean value'))),n.canvas?\"string\"==typeof n.canvas||n.canvas instanceof t.window.HTMLCanvasElement||this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'\"canvas\" must be either a string representing the ID of the canvas element from which to read, or an HTMLCanvasElement instance'))):this.fire(new t.ErrorEvent(new t.ValidationError(\"sources.\"+r,null,'missing required property \"canvas\"'))),this.options=n,this.animate=void 0===n.animate||n.animate}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.load=function(){this._loaded=!0,this.canvas||(this.canvas=this.options.canvas instanceof t.window.HTMLCanvasElement?this.options.canvas:t.window.document.getElementById(this.options.canvas)),this.width=this.canvas.width,this.height=this.canvas.height,this._hasInvalidDimensions()?this.fire(new t.ErrorEvent(new Error(\"Canvas dimensions cannot be less than or equal to zero.\"))):(this.play=function(){this._playing=!0,this.map.triggerRepaint()},this.pause=function(){this._playing&&(this.prepare(),this._playing=!1)},this._finishLoading())},r.prototype.getCanvas=function(){return this.canvas},r.prototype.onAdd=function(t){this.map=t,this.load(),this.canvas&&this.animate&&this.play()},r.prototype.onRemove=function(){this.pause()},r.prototype.prepare=function(){var e=!1;if(this.canvas.width!==this.width&&(this.width=this.canvas.width,e=!0),this.canvas.height!==this.height&&(this.height=this.canvas.height,e=!0),!this._hasInvalidDimensions()&&0!==Object.keys(this.tiles).length){var r=this.map.painter.context,n=r.gl;for(var i in this.boundsBuffer||(this.boundsBuffer=r.createVertexBuffer(this._boundsArray,I.members)),this.boundsSegments||(this.boundsSegments=t.SegmentVector.simpleSegment(0,0,4,2)),this.texture?(e||this._playing)&&this.texture.update(this.canvas,{premultiply:!0}):this.texture=new t.Texture(r,this.canvas,n.RGBA,{premultiply:!0}),this.tiles){var a=this.tiles[i];\"loaded\"!==a.state&&(a.state=\"loaded\",a.texture=this.texture)}}},r.prototype.serialize=function(){return{type:\"canvas\",coordinates:this.coordinates}},r.prototype.hasTransition=function(){return this._playing},r.prototype._hasInvalidDimensions=function(){for(var t=0,e=[this.canvas.width,this.canvas.height];t<e.length;t+=1){var r=e[t];if(isNaN(r)||r<=0)return!0}return!1},r}(P),D={vector:S,raster:E,\"raster-dem\":C,geojson:L,video:z,image:P,canvas:O};function R(e,r){var n=t.identity([]);return t.translate(n,n,[1,1,0]),t.scale(n,n,[.5*e.width,.5*e.height,1]),t.multiply(n,n,e.calculatePosMatrix(r.toUnwrapped()))}function F(t,e,r,n,i,a){var o=function(t,e,r){if(t)for(var n=0,i=t;n<i.length;n+=1){var a=e[i[n]];if(a&&a.source===r&&\"fill-extrusion\"===a.type)return!0}else for(var o in e){var s=e[o];if(s.source===r&&\"fill-extrusion\"===s.type)return!0}return!1}(i&&i.layers,e,t.id),s=a.maxPitchScaleFactor(),l=t.tilesIn(n,s,o);l.sort(B);for(var c=[],u=0,f=l;u<f.length;u+=1){var h=f[u];c.push({wrappedTileID:h.tileID.wrapped().key,queryResults:h.tile.queryRenderedFeatures(e,r,t._state,h.queryGeometry,h.cameraQueryGeometry,h.scale,i,a,s,R(t.transform,h.tileID))})}var p=function(t){for(var e={},r={},n=0,i=t;n<i.length;n+=1){var a=i[n],o=a.queryResults,s=a.wrappedTileID,l=r[s]=r[s]||{};for(var c in o)for(var u=o[c],f=l[c]=l[c]||{},h=e[c]=e[c]||[],p=0,d=u;p<d.length;p+=1){var g=d[p];f[g.featureIndex]||(f[g.featureIndex]=!0,h.push(g))}}return e}(c);for(var d in p)p[d].forEach((function(e){var r=e.feature,n=t.getFeatureState(r.layer[\"source-layer\"],r.id);r.source=r.layer.source,r.layer[\"source-layer\"]&&(r.sourceLayer=r.layer[\"source-layer\"]),r.state=n}));return p}function B(t,e){var r=t.tileID,n=e.tileID;return r.overscaledZ-n.overscaledZ||r.canonical.y-n.canonical.y||r.wrap-n.wrap||r.canonical.x-n.canonical.x}var N=function(t,e){this.max=t,this.onRemove=e,this.reset()};N.prototype.reset=function(){for(var t in this.data)for(var e=0,r=this.data[t];e<r.length;e+=1){var n=r[e];n.timeout&&clearTimeout(n.timeout),this.onRemove(n.value)}return this.data={},this.order=[],this},N.prototype.add=function(t,e,r){var n=this,i=t.wrapped().key;void 0===this.data[i]&&(this.data[i]=[]);var a={value:e,timeout:void 0};if(void 0!==r&&(a.timeout=setTimeout((function(){n.remove(t,a)}),r)),this.data[i].push(a),this.order.push(i),this.order.length>this.max){var o=this._getAndRemoveByKey(this.order[0]);o&&this.onRemove(o)}return this},N.prototype.has=function(t){return t.wrapped().key in this.data},N.prototype.getAndRemove=function(t){return this.has(t)?this._getAndRemoveByKey(t.wrapped().key):null},N.prototype._getAndRemoveByKey=function(t){var e=this.data[t].shift();return e.timeout&&clearTimeout(e.timeout),0===this.data[t].length&&delete this.data[t],this.order.splice(this.order.indexOf(t),1),e.value},N.prototype.getByKey=function(t){var e=this.data[t];return e?e[0].value:null},N.prototype.get=function(t){return this.has(t)?this.data[t.wrapped().key][0].value:null},N.prototype.remove=function(t,e){if(!this.has(t))return this;var r=t.wrapped().key,n=void 0===e?0:this.data[r].indexOf(e),i=this.data[r][n];return this.data[r].splice(n,1),i.timeout&&clearTimeout(i.timeout),0===this.data[r].length&&delete this.data[r],this.onRemove(i.value),this.order.splice(this.order.indexOf(r),1),this},N.prototype.setMaxSize=function(t){for(this.max=t;this.order.length>this.max;){var e=this._getAndRemoveByKey(this.order[0]);e&&this.onRemove(e)}return this},N.prototype.filter=function(t){var e=[];for(var r in this.data)for(var n=0,i=this.data[r];n<i.length;n+=1){var a=i[n];t(a.value)||e.push(a)}for(var o=0,s=e;o<s.length;o+=1){var l=s[o];this.remove(l.value.tileID,l)}};var j=function(t,e,r){this.context=t;var n=t.gl;this.buffer=n.createBuffer(),this.dynamicDraw=Boolean(r),this.context.unbindVAO(),t.bindElementBuffer.set(this.buffer),n.bufferData(n.ELEMENT_ARRAY_BUFFER,e.arrayBuffer,this.dynamicDraw?n.DYNAMIC_DRAW:n.STATIC_DRAW),this.dynamicDraw||delete e.arrayBuffer};j.prototype.bind=function(){this.context.bindElementBuffer.set(this.buffer)},j.prototype.updateData=function(t){var e=this.context.gl;this.context.unbindVAO(),this.bind(),e.bufferSubData(e.ELEMENT_ARRAY_BUFFER,0,t.arrayBuffer)},j.prototype.destroy=function(){this.buffer&&(this.context.gl.deleteBuffer(this.buffer),delete this.buffer)};var U={Int8:\"BYTE\",Uint8:\"UNSIGNED_BYTE\",Int16:\"SHORT\",Uint16:\"UNSIGNED_SHORT\",Int32:\"INT\",Uint32:\"UNSIGNED_INT\",Float32:\"FLOAT\"},V=function(t,e,r,n){this.length=e.length,this.attributes=r,this.itemSize=e.bytesPerElement,this.dynamicDraw=n,this.context=t;var i=t.gl;this.buffer=i.createBuffer(),t.bindVertexBuffer.set(this.buffer),i.bufferData(i.ARRAY_BUFFER,e.arrayBuffer,this.dynamicDraw?i.DYNAMIC_DRAW:i.STATIC_DRAW),this.dynamicDraw||delete e.arrayBuffer};V.prototype.bind=function(){this.context.bindVertexBuffer.set(this.buffer)},V.prototype.updateData=function(t){var e=this.context.gl;this.bind(),e.bufferSubData(e.ARRAY_BUFFER,0,t.arrayBuffer)},V.prototype.enableAttributes=function(t,e){for(var r=0;r<this.attributes.length;r++){var n=e.attributes[this.attributes[r].name];void 0!==n&&t.enableVertexAttribArray(n)}},V.prototype.setVertexAttribPointers=function(t,e,r){for(var n=0;n<this.attributes.length;n++){var i=this.attributes[n],a=e.attributes[i.name];void 0!==a&&t.vertexAttribPointer(a,i.components,t[U[i.type]],!1,this.itemSize,i.offset+this.itemSize*(r||0))}},V.prototype.destroy=function(){this.buffer&&(this.context.gl.deleteBuffer(this.buffer),delete this.buffer)};var q=function(t){this.gl=t.gl,this.default=this.getDefault(),this.current=this.default,this.dirty=!1};q.prototype.get=function(){return this.current},q.prototype.set=function(t){},q.prototype.getDefault=function(){return this.default},q.prototype.setDefault=function(){this.set(this.default)};var H=function(e){function r(){e.apply(this,arguments)}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.getDefault=function(){return t.Color.transparent},r.prototype.set=function(t){var e=this.current;(t.r!==e.r||t.g!==e.g||t.b!==e.b||t.a!==e.a||this.dirty)&&(this.gl.clearColor(t.r,t.g,t.b,t.a),this.current=t,this.dirty=!1)},r}(q),G=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return 1},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.clearDepth(t),this.current=t,this.dirty=!1)},e}(q),Y=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return 0},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.clearStencil(t),this.current=t,this.dirty=!1)},e}(q),W=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return[!0,!0,!0,!0]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||t[2]!==e[2]||t[3]!==e[3]||this.dirty)&&(this.gl.colorMask(t[0],t[1],t[2],t[3]),this.current=t,this.dirty=!1)},e}(q),X=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return!0},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.depthMask(t),this.current=t,this.dirty=!1)},e}(q),Z=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return 255},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.stencilMask(t),this.current=t,this.dirty=!1)},e}(q),J=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return{func:this.gl.ALWAYS,ref:0,mask:255}},e.prototype.set=function(t){var e=this.current;(t.func!==e.func||t.ref!==e.ref||t.mask!==e.mask||this.dirty)&&(this.gl.stencilFunc(t.func,t.ref,t.mask),this.current=t,this.dirty=!1)},e}(q),K=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){var t=this.gl;return[t.KEEP,t.KEEP,t.KEEP]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||t[2]!==e[2]||this.dirty)&&(this.gl.stencilOp(t[0],t[1],t[2]),this.current=t,this.dirty=!1)},e}(q),Q=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.STENCIL_TEST):e.disable(e.STENCIL_TEST),this.current=t,this.dirty=!1}},e}(q),$=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return[0,1]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||this.dirty)&&(this.gl.depthRange(t[0],t[1]),this.current=t,this.dirty=!1)},e}(q),tt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.DEPTH_TEST):e.disable(e.DEPTH_TEST),this.current=t,this.dirty=!1}},e}(q),et=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return this.gl.LESS},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.depthFunc(t),this.current=t,this.dirty=!1)},e}(q),rt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.BLEND):e.disable(e.BLEND),this.current=t,this.dirty=!1}},e}(q),nt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){var t=this.gl;return[t.ONE,t.ZERO]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||this.dirty)&&(this.gl.blendFunc(t[0],t[1]),this.current=t,this.dirty=!1)},e}(q),it=function(e){function r(){e.apply(this,arguments)}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.getDefault=function(){return t.Color.transparent},r.prototype.set=function(t){var e=this.current;(t.r!==e.r||t.g!==e.g||t.b!==e.b||t.a!==e.a||this.dirty)&&(this.gl.blendColor(t.r,t.g,t.b,t.a),this.current=t,this.dirty=!1)},r}(q),at=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return this.gl.FUNC_ADD},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.blendEquation(t),this.current=t,this.dirty=!1)},e}(q),ot=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;t?e.enable(e.CULL_FACE):e.disable(e.CULL_FACE),this.current=t,this.dirty=!1}},e}(q),st=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return this.gl.BACK},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.cullFace(t),this.current=t,this.dirty=!1)},e}(q),lt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return this.gl.CCW},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.frontFace(t),this.current=t,this.dirty=!1)},e}(q),ct=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.useProgram(t),this.current=t,this.dirty=!1)},e}(q),ut=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return this.gl.TEXTURE0},e.prototype.set=function(t){(t!==this.current||this.dirty)&&(this.gl.activeTexture(t),this.current=t,this.dirty=!1)},e}(q),ft=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){var t=this.gl;return[0,0,t.drawingBufferWidth,t.drawingBufferHeight]},e.prototype.set=function(t){var e=this.current;(t[0]!==e[0]||t[1]!==e[1]||t[2]!==e[2]||t[3]!==e[3]||this.dirty)&&(this.gl.viewport(t[0],t[1],t[2],t[3]),this.current=t,this.dirty=!1)},e}(q),ht=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindFramebuffer(e.FRAMEBUFFER,t),this.current=t,this.dirty=!1}},e}(q),pt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindRenderbuffer(e.RENDERBUFFER,t),this.current=t,this.dirty=!1}},e}(q),dt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindTexture(e.TEXTURE_2D,t),this.current=t,this.dirty=!1}},e}(q),gt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.bindBuffer(e.ARRAY_BUFFER,t),this.current=t,this.dirty=!1}},e}(q),mt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){var e=this.gl;e.bindBuffer(e.ELEMENT_ARRAY_BUFFER,t),this.current=t,this.dirty=!1},e}(q),vt=function(t){function e(e){t.call(this,e),this.vao=e.extVertexArrayObject}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return null},e.prototype.set=function(t){this.vao&&(t!==this.current||this.dirty)&&(this.vao.bindVertexArrayOES(t),this.current=t,this.dirty=!1)},e}(q),yt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return 4},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.pixelStorei(e.UNPACK_ALIGNMENT,t),this.current=t,this.dirty=!1}},e}(q),xt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.pixelStorei(e.UNPACK_PREMULTIPLY_ALPHA_WEBGL,t),this.current=t,this.dirty=!1}},e}(q),bt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return!1},e.prototype.set=function(t){if(t!==this.current||this.dirty){var e=this.gl;e.pixelStorei(e.UNPACK_FLIP_Y_WEBGL,t),this.current=t,this.dirty=!1}},e}(q),_t=function(t){function e(e,r){t.call(this,e),this.context=e,this.parent=r}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.getDefault=function(){return null},e}(q),wt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.setDirty=function(){this.dirty=!0},e.prototype.set=function(t){if(t!==this.current||this.dirty){this.context.bindFramebuffer.set(this.parent);var e=this.gl;e.framebufferTexture2D(e.FRAMEBUFFER,e.COLOR_ATTACHMENT0,e.TEXTURE_2D,t,0),this.current=t,this.dirty=!1}},e}(_t),Tt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.set=function(t){if(t!==this.current||this.dirty){this.context.bindFramebuffer.set(this.parent);var e=this.gl;e.framebufferRenderbuffer(e.FRAMEBUFFER,e.DEPTH_ATTACHMENT,e.RENDERBUFFER,t),this.current=t,this.dirty=!1}},e}(_t),kt=function(t,e,r,n){this.context=t,this.width=e,this.height=r;var i=this.framebuffer=t.gl.createFramebuffer();this.colorAttachment=new wt(t,i),n&&(this.depthAttachment=new Tt(t,i))};kt.prototype.destroy=function(){var t=this.context.gl,e=this.colorAttachment.get();if(e&&t.deleteTexture(e),this.depthAttachment){var r=this.depthAttachment.get();r&&t.deleteRenderbuffer(r)}t.deleteFramebuffer(this.framebuffer)};var Mt=function(t,e,r){this.func=t,this.mask=e,this.range=r};Mt.ReadOnly=!1,Mt.ReadWrite=!0,Mt.disabled=new Mt(519,Mt.ReadOnly,[0,1]);var At=function(t,e,r,n,i,a){this.test=t,this.ref=e,this.mask=r,this.fail=n,this.depthFail=i,this.pass=a};At.disabled=new At({func:519,mask:0},0,0,7680,7680,7680);var St=function(t,e,r){this.blendFunction=t,this.blendColor=e,this.mask=r};St.disabled=new St(St.Replace=[1,0],t.Color.transparent,[!1,!1,!1,!1]),St.unblended=new St(St.Replace,t.Color.transparent,[!0,!0,!0,!0]),St.alphaBlended=new St([1,771],t.Color.transparent,[!0,!0,!0,!0]);var Et=function(t,e,r){this.enable=t,this.mode=e,this.frontFace=r};Et.disabled=new Et(!1,1029,2305),Et.backCCW=new Et(!0,1029,2305);var Ct=function(t){this.gl=t,this.extVertexArrayObject=this.gl.getExtension(\"OES_vertex_array_object\"),this.clearColor=new H(this),this.clearDepth=new G(this),this.clearStencil=new Y(this),this.colorMask=new W(this),this.depthMask=new X(this),this.stencilMask=new Z(this),this.stencilFunc=new J(this),this.stencilOp=new K(this),this.stencilTest=new Q(this),this.depthRange=new $(this),this.depthTest=new tt(this),this.depthFunc=new et(this),this.blend=new rt(this),this.blendFunc=new nt(this),this.blendColor=new it(this),this.blendEquation=new at(this),this.cullFace=new ot(this),this.cullFaceSide=new st(this),this.frontFace=new lt(this),this.program=new ct(this),this.activeTexture=new ut(this),this.viewport=new ft(this),this.bindFramebuffer=new ht(this),this.bindRenderbuffer=new pt(this),this.bindTexture=new dt(this),this.bindVertexBuffer=new gt(this),this.bindElementBuffer=new mt(this),this.bindVertexArrayOES=this.extVertexArrayObject&&new vt(this),this.pixelStoreUnpack=new yt(this),this.pixelStoreUnpackPremultiplyAlpha=new xt(this),this.pixelStoreUnpackFlipY=new bt(this),this.extTextureFilterAnisotropic=t.getExtension(\"EXT_texture_filter_anisotropic\")||t.getExtension(\"MOZ_EXT_texture_filter_anisotropic\")||t.getExtension(\"WEBKIT_EXT_texture_filter_anisotropic\"),this.extTextureFilterAnisotropic&&(this.extTextureFilterAnisotropicMax=t.getParameter(this.extTextureFilterAnisotropic.MAX_TEXTURE_MAX_ANISOTROPY_EXT)),this.extTextureHalfFloat=t.getExtension(\"OES_texture_half_float\"),this.extTextureHalfFloat&&(t.getExtension(\"OES_texture_half_float_linear\"),this.extRenderToTextureHalfFloat=t.getExtension(\"EXT_color_buffer_half_float\")),this.extTimerQuery=t.getExtension(\"EXT_disjoint_timer_query\")};Ct.prototype.setDefault=function(){this.unbindVAO(),this.clearColor.setDefault(),this.clearDepth.setDefault(),this.clearStencil.setDefault(),this.colorMask.setDefault(),this.depthMask.setDefault(),this.stencilMask.setDefault(),this.stencilFunc.setDefault(),this.stencilOp.setDefault(),this.stencilTest.setDefault(),this.depthRange.setDefault(),this.depthTest.setDefault(),this.depthFunc.setDefault(),this.blend.setDefault(),this.blendFunc.setDefault(),this.blendColor.setDefault(),this.blendEquation.setDefault(),this.cullFace.setDefault(),this.cullFaceSide.setDefault(),this.frontFace.setDefault(),this.program.setDefault(),this.activeTexture.setDefault(),this.bindFramebuffer.setDefault(),this.pixelStoreUnpack.setDefault(),this.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.pixelStoreUnpackFlipY.setDefault()},Ct.prototype.setDirty=function(){this.clearColor.dirty=!0,this.clearDepth.dirty=!0,this.clearStencil.dirty=!0,this.colorMask.dirty=!0,this.depthMask.dirty=!0,this.stencilMask.dirty=!0,this.stencilFunc.dirty=!0,this.stencilOp.dirty=!0,this.stencilTest.dirty=!0,this.depthRange.dirty=!0,this.depthTest.dirty=!0,this.depthFunc.dirty=!0,this.blend.dirty=!0,this.blendFunc.dirty=!0,this.blendColor.dirty=!0,this.blendEquation.dirty=!0,this.cullFace.dirty=!0,this.cullFaceSide.dirty=!0,this.frontFace.dirty=!0,this.program.dirty=!0,this.activeTexture.dirty=!0,this.viewport.dirty=!0,this.bindFramebuffer.dirty=!0,this.bindRenderbuffer.dirty=!0,this.bindTexture.dirty=!0,this.bindVertexBuffer.dirty=!0,this.bindElementBuffer.dirty=!0,this.extVertexArrayObject&&(this.bindVertexArrayOES.dirty=!0),this.pixelStoreUnpack.dirty=!0,this.pixelStoreUnpackPremultiplyAlpha.dirty=!0,this.pixelStoreUnpackFlipY.dirty=!0},Ct.prototype.createIndexBuffer=function(t,e){return new j(this,t,e)},Ct.prototype.createVertexBuffer=function(t,e,r){return new V(this,t,e,r)},Ct.prototype.createRenderbuffer=function(t,e,r){var n=this.gl,i=n.createRenderbuffer();return this.bindRenderbuffer.set(i),n.renderbufferStorage(n.RENDERBUFFER,t,e,r),this.bindRenderbuffer.set(null),i},Ct.prototype.createFramebuffer=function(t,e,r){return new kt(this,t,e,r)},Ct.prototype.clear=function(t){var e=t.color,r=t.depth,n=this.gl,i=0;e&&(i|=n.COLOR_BUFFER_BIT,this.clearColor.set(e),this.colorMask.set([!0,!0,!0,!0])),void 0!==r&&(i|=n.DEPTH_BUFFER_BIT,this.depthRange.set([0,1]),this.clearDepth.set(r),this.depthMask.set(!0)),n.clear(i)},Ct.prototype.setCullFace=function(t){!1===t.enable?this.cullFace.set(!1):(this.cullFace.set(!0),this.cullFaceSide.set(t.mode),this.frontFace.set(t.frontFace))},Ct.prototype.setDepthMode=function(t){t.func!==this.gl.ALWAYS||t.mask?(this.depthTest.set(!0),this.depthFunc.set(t.func),this.depthMask.set(t.mask),this.depthRange.set(t.range)):this.depthTest.set(!1)},Ct.prototype.setStencilMode=function(t){t.test.func!==this.gl.ALWAYS||t.mask?(this.stencilTest.set(!0),this.stencilMask.set(t.mask),this.stencilOp.set([t.fail,t.depthFail,t.pass]),this.stencilFunc.set({func:t.test.func,ref:t.ref,mask:t.test.mask})):this.stencilTest.set(!1)},Ct.prototype.setColorMode=function(e){t.deepEqual(e.blendFunction,St.Replace)?this.blend.set(!1):(this.blend.set(!0),this.blendFunc.set(e.blendFunction),this.blendColor.set(e.blendColor)),this.colorMask.set(e.mask)},Ct.prototype.unbindVAO=function(){this.extVertexArrayObject&&this.bindVertexArrayOES.set(null)};var Lt=function(e){function r(r,n,i){var a=this;e.call(this),this.id=r,this.dispatcher=i,this.on(\"data\",(function(t){\"source\"===t.dataType&&\"metadata\"===t.sourceDataType&&(a._sourceLoaded=!0),a._sourceLoaded&&!a._paused&&\"source\"===t.dataType&&\"content\"===t.sourceDataType&&(a.reload(),a.transform&&a.update(a.transform))})),this.on(\"error\",(function(){a._sourceErrored=!0})),this._source=function(e,r,n,i){var a=new D[r.type](e,r,n,i);if(a.id!==e)throw new Error(\"Expected Source id to be \"+e+\" instead of \"+a.id);return t.bindAll([\"load\",\"abort\",\"unload\",\"serialize\",\"prepare\"],a),a}(r,n,i,this),this._tiles={},this._cache=new N(0,this._unloadTile.bind(this)),this._timers={},this._cacheTimers={},this._maxTileCacheSize=null,this._loadedParentTiles={},this._coveredTiles={},this._state=new t.SourceFeatureState}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.onAdd=function(t){this.map=t,this._maxTileCacheSize=t?t._maxTileCacheSize:null,this._source&&this._source.onAdd&&this._source.onAdd(t)},r.prototype.onRemove=function(t){this._source&&this._source.onRemove&&this._source.onRemove(t)},r.prototype.loaded=function(){if(this._sourceErrored)return!0;if(!this._sourceLoaded)return!1;if(!this._source.loaded())return!1;for(var t in this._tiles){var e=this._tiles[t];if(\"loaded\"!==e.state&&\"errored\"!==e.state)return!1}return!0},r.prototype.getSource=function(){return this._source},r.prototype.pause=function(){this._paused=!0},r.prototype.resume=function(){if(this._paused){var t=this._shouldReloadOnResume;this._paused=!1,this._shouldReloadOnResume=!1,t&&this.reload(),this.transform&&this.update(this.transform)}},r.prototype._loadTile=function(t,e){return this._source.loadTile(t,e)},r.prototype._unloadTile=function(t){if(this._source.unloadTile)return this._source.unloadTile(t,(function(){}))},r.prototype._abortTile=function(t){if(this._source.abortTile)return this._source.abortTile(t,(function(){}))},r.prototype.serialize=function(){return this._source.serialize()},r.prototype.prepare=function(t){for(var e in this._source.prepare&&this._source.prepare(),this._state.coalesceChanges(this._tiles,this.map?this.map.painter:null),this._tiles){var r=this._tiles[e];r.upload(t),r.prepare(this.map.style.imageManager)}},r.prototype.getIds=function(){return t.values(this._tiles).map((function(t){return t.tileID})).sort(It).map((function(t){return t.key}))},r.prototype.getRenderableIds=function(e){var r=this,n=[];for(var i in this._tiles)this._isIdRenderable(i,e)&&n.push(this._tiles[i]);return e?n.sort((function(e,n){var i=e.tileID,a=n.tileID,o=new t.Point(i.canonical.x,i.canonical.y)._rotate(r.transform.angle),s=new t.Point(a.canonical.x,a.canonical.y)._rotate(r.transform.angle);return i.overscaledZ-a.overscaledZ||s.y-o.y||s.x-o.x})).map((function(t){return t.tileID.key})):n.map((function(t){return t.tileID})).sort(It).map((function(t){return t.key}))},r.prototype.hasRenderableParent=function(t){var e=this.findLoadedParent(t,0);return!!e&&this._isIdRenderable(e.tileID.key)},r.prototype._isIdRenderable=function(t,e){return this._tiles[t]&&this._tiles[t].hasData()&&!this._coveredTiles[t]&&(e||!this._tiles[t].holdingForFade())},r.prototype.reload=function(){if(this._paused)this._shouldReloadOnResume=!0;else for(var t in this._cache.reset(),this._tiles)\"errored\"!==this._tiles[t].state&&this._reloadTile(t,\"reloading\")},r.prototype._reloadTile=function(t,e){var r=this._tiles[t];r&&(\"loading\"!==r.state&&(r.state=e),this._loadTile(r,this._tileLoaded.bind(this,r,t,e)))},r.prototype._tileLoaded=function(e,r,n,i){if(i)return e.state=\"errored\",void(404!==i.status?this._source.fire(new t.ErrorEvent(i,{tile:e})):this.update(this.transform));e.timeAdded=t.browser.now(),\"expired\"===n&&(e.refreshedUponExpiration=!0),this._setTileReloadTimer(r,e),\"raster-dem\"===this.getSource().type&&e.dem&&this._backfillDEM(e),this._state.initializeTileState(e,this.map?this.map.painter:null),this._source.fire(new t.Event(\"data\",{dataType:\"source\",tile:e,coord:e.tileID}))},r.prototype._backfillDEM=function(t){for(var e=this.getRenderableIds(),r=0;r<e.length;r++){var n=e[r];if(t.neighboringTiles&&t.neighboringTiles[n]){var i=this.getTileByID(n);a(t,i),a(i,t)}}function a(t,e){t.needsHillshadePrepare=!0;var r=e.tileID.canonical.x-t.tileID.canonical.x,n=e.tileID.canonical.y-t.tileID.canonical.y,i=Math.pow(2,t.tileID.canonical.z),a=e.tileID.key;0===r&&0===n||Math.abs(n)>1||(Math.abs(r)>1&&(1===Math.abs(r+i)?r+=i:1===Math.abs(r-i)&&(r-=i)),e.dem&&t.dem&&(t.dem.backfillBorder(e.dem,r,n),t.neighboringTiles&&t.neighboringTiles[a]&&(t.neighboringTiles[a].backfilled=!0)))}},r.prototype.getTile=function(t){return this.getTileByID(t.key)},r.prototype.getTileByID=function(t){return this._tiles[t]},r.prototype._retainLoadedChildren=function(t,e,r,n){for(var i in this._tiles){var a=this._tiles[i];if(!(n[i]||!a.hasData()||a.tileID.overscaledZ<=e||a.tileID.overscaledZ>r)){for(var o=a.tileID;a&&a.tileID.overscaledZ>e+1;){var s=a.tileID.scaledTo(a.tileID.overscaledZ-1);(a=this._tiles[s.key])&&a.hasData()&&(o=s)}for(var l=o;l.overscaledZ>e;)if(t[(l=l.scaledTo(l.overscaledZ-1)).key]){n[o.key]=o;break}}}},r.prototype.findLoadedParent=function(t,e){if(t.key in this._loadedParentTiles){var r=this._loadedParentTiles[t.key];return r&&r.tileID.overscaledZ>=e?r:null}for(var n=t.overscaledZ-1;n>=e;n--){var i=t.scaledTo(n),a=this._getLoadedTile(i);if(a)return a}},r.prototype._getLoadedTile=function(t){var e=this._tiles[t.key];return e&&e.hasData()?e:this._cache.getByKey(t.wrapped().key)},r.prototype.updateCacheSize=function(t){var e=Math.ceil(t.width/this._source.tileSize)+1,r=Math.ceil(t.height/this._source.tileSize)+1,n=Math.floor(e*r*5),i=\"number\"==typeof this._maxTileCacheSize?Math.min(this._maxTileCacheSize,n):n;this._cache.setMaxSize(i)},r.prototype.handleWrapJump=function(t){var e=Math.round((t-(void 0===this._prevLng?t:this._prevLng))/360);if(this._prevLng=t,e){var r={};for(var n in this._tiles){var i=this._tiles[n];i.tileID=i.tileID.unwrapTo(i.tileID.wrap+e),r[i.tileID.key]=i}for(var a in this._tiles=r,this._timers)clearTimeout(this._timers[a]),delete this._timers[a];for(var o in this._tiles)this._setTileReloadTimer(o,this._tiles[o])}},r.prototype.update=function(e){var n=this;if(this.transform=e,this._sourceLoaded&&!this._paused){var i;this.updateCacheSize(e),this.handleWrapJump(this.transform.center.lng),this._coveredTiles={},this.used?this._source.tileID?i=e.getVisibleUnwrappedCoordinates(this._source.tileID).map((function(e){return new t.OverscaledTileID(e.canonical.z,e.wrap,e.canonical.z,e.canonical.x,e.canonical.y)})):(i=e.coveringTiles({tileSize:this._source.tileSize,minzoom:this._source.minzoom,maxzoom:this._source.maxzoom,roundZoom:this._source.roundZoom,reparseOverscaled:this._source.reparseOverscaled}),this._source.hasTile&&(i=i.filter((function(t){return n._source.hasTile(t)})))):i=[];var a=e.coveringZoomLevel(this._source),o=Math.max(a-r.maxOverzooming,this._source.minzoom),s=Math.max(a+r.maxUnderzooming,this._source.minzoom),l=this._updateRetainedTiles(i,a);if(Pt(this._source.type)){for(var c={},u={},f=0,h=Object.keys(l);f<h.length;f+=1){var p=h[f],d=l[p],g=this._tiles[p];if(g&&!(g.fadeEndTime&&g.fadeEndTime<=t.browser.now())){var m=this.findLoadedParent(d,o);m&&(this._addTile(m.tileID),c[m.tileID.key]=m.tileID),u[p]=d}}for(var v in this._retainLoadedChildren(u,a,s,l),c)l[v]||(this._coveredTiles[v]=!0,l[v]=c[v])}for(var y in l)this._tiles[y].clearFadeHold();for(var x=0,b=t.keysDifference(this._tiles,l);x<b.length;x+=1){var _=b[x],w=this._tiles[_];w.hasSymbolBuckets&&!w.holdingForFade()?w.setHoldDuration(this.map._fadeDuration):w.hasSymbolBuckets&&!w.symbolFadeFinished()||this._removeTile(_)}this._updateLoadedParentTileCache()}},r.prototype.releaseSymbolFadeTiles=function(){for(var t in this._tiles)this._tiles[t].holdingForFade()&&this._removeTile(t)},r.prototype._updateRetainedTiles=function(t,e){for(var n={},i={},a=Math.max(e-r.maxOverzooming,this._source.minzoom),o=Math.max(e+r.maxUnderzooming,this._source.minzoom),s={},l=0,c=t;l<c.length;l+=1){var u=c[l],f=this._addTile(u);n[u.key]=u,f.hasData()||e<this._source.maxzoom&&(s[u.key]=u)}this._retainLoadedChildren(s,e,o,n);for(var h=0,p=t;h<p.length;h+=1){var d=p[h],g=this._tiles[d.key];if(!g.hasData()){if(e+1>this._source.maxzoom){var m=d.children(this._source.maxzoom)[0],v=this.getTile(m);if(v&&v.hasData()){n[m.key]=m;continue}}else{var y=d.children(this._source.maxzoom);if(n[y[0].key]&&n[y[1].key]&&n[y[2].key]&&n[y[3].key])continue}for(var x=g.wasRequested(),b=d.overscaledZ-1;b>=a;--b){var _=d.scaledTo(b);if(i[_.key])break;if(i[_.key]=!0,!(g=this.getTile(_))&&x&&(g=this._addTile(_)),g&&(n[_.key]=_,x=g.wasRequested(),g.hasData()))break}}}return n},r.prototype._updateLoadedParentTileCache=function(){for(var t in this._loadedParentTiles={},this._tiles){for(var e=[],r=void 0,n=this._tiles[t].tileID;n.overscaledZ>0;){if(n.key in this._loadedParentTiles){r=this._loadedParentTiles[n.key];break}e.push(n.key);var i=n.scaledTo(n.overscaledZ-1);if(r=this._getLoadedTile(i))break;n=i}for(var a=0,o=e;a<o.length;a+=1)this._loadedParentTiles[o[a]]=r}},r.prototype._addTile=function(e){var r=this._tiles[e.key];if(r)return r;(r=this._cache.getAndRemove(e))&&(this._setTileReloadTimer(e.key,r),r.tileID=e,this._state.initializeTileState(r,this.map?this.map.painter:null),this._cacheTimers[e.key]&&(clearTimeout(this._cacheTimers[e.key]),delete this._cacheTimers[e.key],this._setTileReloadTimer(e.key,r)));var n=Boolean(r);return n||(r=new t.Tile(e,this._source.tileSize*e.overscaleFactor()),this._loadTile(r,this._tileLoaded.bind(this,r,e.key,r.state))),r?(r.uses++,this._tiles[e.key]=r,n||this._source.fire(new t.Event(\"dataloading\",{tile:r,coord:r.tileID,dataType:\"source\"})),r):null},r.prototype._setTileReloadTimer=function(t,e){var r=this;t in this._timers&&(clearTimeout(this._timers[t]),delete this._timers[t]);var n=e.getExpiryTimeout();n&&(this._timers[t]=setTimeout((function(){r._reloadTile(t,\"expired\"),delete r._timers[t]}),n))},r.prototype._removeTile=function(t){var e=this._tiles[t];e&&(e.uses--,delete this._tiles[t],this._timers[t]&&(clearTimeout(this._timers[t]),delete this._timers[t]),e.uses>0||(e.hasData()&&\"reloading\"!==e.state?this._cache.add(e.tileID,e,e.getExpiryTimeout()):(e.aborted=!0,this._abortTile(e),this._unloadTile(e))))},r.prototype.clearTiles=function(){for(var t in this._shouldReloadOnResume=!1,this._paused=!1,this._tiles)this._removeTile(t);this._cache.reset()},r.prototype.tilesIn=function(e,r,n){var i=this,a=[],o=this.transform;if(!o)return a;for(var s=n?o.getCameraQueryGeometry(e):e,l=e.map((function(t){return o.pointCoordinate(t)})),c=s.map((function(t){return o.pointCoordinate(t)})),u=this.getIds(),f=1/0,h=1/0,p=-1/0,d=-1/0,g=0,m=c;g<m.length;g+=1){var v=m[g];f=Math.min(f,v.x),h=Math.min(h,v.y),p=Math.max(p,v.x),d=Math.max(d,v.y)}for(var y=function(e){var n=i._tiles[u[e]];if(!n.holdingForFade()){var s=n.tileID,g=Math.pow(2,o.zoom-n.tileID.overscaledZ),m=r*n.queryPadding*t.EXTENT/n.tileSize/g,v=[s.getTilePoint(new t.MercatorCoordinate(f,h)),s.getTilePoint(new t.MercatorCoordinate(p,d))];if(v[0].x-m<t.EXTENT&&v[0].y-m<t.EXTENT&&v[1].x+m>=0&&v[1].y+m>=0){var y=l.map((function(t){return s.getTilePoint(t)})),x=c.map((function(t){return s.getTilePoint(t)}));a.push({tile:n,tileID:s,queryGeometry:y,cameraQueryGeometry:x,scale:g})}}},x=0;x<u.length;x++)y(x);return a},r.prototype.getVisibleCoordinates=function(t){for(var e=this,r=this.getRenderableIds(t).map((function(t){return e._tiles[t].tileID})),n=0,i=r;n<i.length;n+=1){var a=i[n];a.posMatrix=this.transform.calculatePosMatrix(a.toUnwrapped())}return r},r.prototype.hasTransition=function(){if(this._source.hasTransition())return!0;if(Pt(this._source.type))for(var e in this._tiles){var r=this._tiles[e];if(void 0!==r.fadeEndTime&&r.fadeEndTime>=t.browser.now())return!0}return!1},r.prototype.setFeatureState=function(t,e,r){this._state.updateState(t=t||\"_geojsonTileLayer\",e,r)},r.prototype.removeFeatureState=function(t,e,r){this._state.removeFeatureState(t=t||\"_geojsonTileLayer\",e,r)},r.prototype.getFeatureState=function(t,e){return this._state.getState(t=t||\"_geojsonTileLayer\",e)},r.prototype.setDependencies=function(t,e,r){var n=this._tiles[t];n&&n.setDependencies(e,r)},r.prototype.reloadTilesForDependencies=function(t,e){for(var r in this._tiles)this._tiles[r].hasDependency(t,e)&&this._reloadTile(r,\"reloading\");this._cache.filter((function(r){return!r.hasDependency(t,e)}))},r}(t.Evented);function It(t,e){var r=Math.abs(2*t.wrap)-+(t.wrap<0),n=Math.abs(2*e.wrap)-+(e.wrap<0);return t.overscaledZ-e.overscaledZ||n-r||e.canonical.y-t.canonical.y||e.canonical.x-t.canonical.x}function Pt(t){return\"raster\"===t||\"image\"===t||\"video\"===t}function zt(){return new t.window.Worker(Yi.workerUrl)}Lt.maxOverzooming=10,Lt.maxUnderzooming=3;var Ot=\"mapboxgl_preloaded_worker_pool\",Dt=function(){this.active={}};Dt.prototype.acquire=function(t){if(!this.workers)for(this.workers=[];this.workers.length<Dt.workerCount;)this.workers.push(new zt);return this.active[t]=!0,this.workers.slice()},Dt.prototype.release=function(t){delete this.active[t],0===this.numActive()&&(this.workers.forEach((function(t){t.terminate()})),this.workers=null)},Dt.prototype.isPreloaded=function(){return!!this.active[Ot]},Dt.prototype.numActive=function(){return Object.keys(this.active).length};var Rt,Ft=Math.floor(t.browser.hardwareConcurrency/2);function Bt(){return Rt||(Rt=new Dt),Rt}function Nt(e,r){var n={};for(var i in e)\"ref\"!==i&&(n[i]=e[i]);return t.refProperties.forEach((function(t){t in r&&(n[t]=r[t])})),n}function jt(t){t=t.slice();for(var e=Object.create(null),r=0;r<t.length;r++)e[t[r].id]=t[r];for(var n=0;n<t.length;n++)\"ref\"in t[n]&&(t[n]=Nt(t[n],e[t[n].ref]));return t}Dt.workerCount=Math.max(Math.min(Ft,6),1);var Ut={setStyle:\"setStyle\",addLayer:\"addLayer\",removeLayer:\"removeLayer\",setPaintProperty:\"setPaintProperty\",setLayoutProperty:\"setLayoutProperty\",setFilter:\"setFilter\",addSource:\"addSource\",removeSource:\"removeSource\",setGeoJSONSourceData:\"setGeoJSONSourceData\",setLayerZoomRange:\"setLayerZoomRange\",setLayerProperty:\"setLayerProperty\",setCenter:\"setCenter\",setZoom:\"setZoom\",setBearing:\"setBearing\",setPitch:\"setPitch\",setSprite:\"setSprite\",setGlyphs:\"setGlyphs\",setTransition:\"setTransition\",setLight:\"setLight\"};function Vt(t,e,r){r.push({command:Ut.addSource,args:[t,e[t]]})}function qt(t,e,r){e.push({command:Ut.removeSource,args:[t]}),r[t]=!0}function Ht(t,e,r,n){qt(t,r,n),Vt(t,e,r)}function Gt(e,r,n){var i;for(i in e[n])if(e[n].hasOwnProperty(i)&&\"data\"!==i&&!t.deepEqual(e[n][i],r[n][i]))return!1;for(i in r[n])if(r[n].hasOwnProperty(i)&&\"data\"!==i&&!t.deepEqual(e[n][i],r[n][i]))return!1;return!0}function Yt(e,r,n,i,a,o){var s;for(s in r=r||{},e=e||{})e.hasOwnProperty(s)&&(t.deepEqual(e[s],r[s])||n.push({command:o,args:[i,s,r[s],a]}));for(s in r)r.hasOwnProperty(s)&&!e.hasOwnProperty(s)&&(t.deepEqual(e[s],r[s])||n.push({command:o,args:[i,s,r[s],a]}))}function Wt(t){return t.id}function Xt(t,e){return t[e.id]=e,t}var Zt=function(t,e){this.reset(t,e)};Zt.prototype.reset=function(t,e){this.points=t||[],this._distances=[0];for(var r=1;r<this.points.length;r++)this._distances[r]=this._distances[r-1]+this.points[r].dist(this.points[r-1]);this.length=this._distances[this._distances.length-1],this.padding=Math.min(e||0,.5*this.length),this.paddedLength=this.length-2*this.padding},Zt.prototype.lerp=function(e){if(1===this.points.length)return this.points[0];e=t.clamp(e,0,1);for(var r=1,n=this._distances[r],i=e*this.paddedLength+this.padding;n<i&&r<this._distances.length;)n=this._distances[++r];var a=r-1,o=this._distances[a],s=n-o,l=s>0?(i-o)/s:0;return this.points[a].mult(1-l).add(this.points[r].mult(l))};var Jt=function(t,e,r){var n=this.boxCells=[],i=this.circleCells=[];this.xCellCount=Math.ceil(t/r),this.yCellCount=Math.ceil(e/r);for(var a=0;a<this.xCellCount*this.yCellCount;a++)n.push([]),i.push([]);this.circleKeys=[],this.boxKeys=[],this.bboxes=[],this.circles=[],this.width=t,this.height=e,this.xScale=this.xCellCount/t,this.yScale=this.yCellCount/e,this.boxUid=0,this.circleUid=0};function Kt(e,r,n,i,a){var o=t.create();return r?(t.scale(o,o,[1/a,1/a,1]),n||t.rotateZ(o,o,i.angle)):t.multiply(o,i.labelPlaneMatrix,e),o}function Qt(e,r,n,i,a){if(r){var o=t.clone(e);return t.scale(o,o,[a,a,1]),n||t.rotateZ(o,o,-i.angle),o}return i.glCoordMatrix}function $t(e,r){var n=[e.x,e.y,0,1];ue(n,n,r);var i=n[3];return{point:new t.Point(n[0]/i,n[1]/i),signedDistanceFromCamera:i}}function te(t,e){return.5+t/e*.5}function ee(t,e){var r=t[0]/t[3],n=t[1]/t[3];return r>=-e[0]&&r<=e[0]&&n>=-e[1]&&n<=e[1]}function re(e,r,n,i,a,o,s,l){var c=i?e.textSizeData:e.iconSizeData,u=t.evaluateSizeForZoom(c,n.transform.zoom),f=[256/n.width*2+1,256/n.height*2+1],h=i?e.text.dynamicLayoutVertexArray:e.icon.dynamicLayoutVertexArray;h.clear();for(var p=e.lineVertexArray,d=i?e.text.placedSymbolArray:e.icon.placedSymbolArray,g=n.transform.width/n.transform.height,m=!1,v=0;v<d.length;v++){var y=d.get(v);if(y.hidden||y.writingMode===t.WritingMode.vertical&&!m)ce(y.numGlyphs,h);else{m=!1;var x=[y.anchorX,y.anchorY,0,1];if(t.transformMat4(x,x,r),ee(x,f)){var b=te(n.transform.cameraToCenterDistance,x[3]),_=t.evaluateSizeForFeature(c,u,y),w=s?_/b:_*b,T=new t.Point(y.anchorX,y.anchorY),k=$t(T,a).point,M={},A=ae(y,w,!1,l,r,a,o,e.glyphOffsetArray,p,h,k,T,M,g);m=A.useVertical,(A.notEnoughRoom||m||A.needsFlipping&&ae(y,w,!0,l,r,a,o,e.glyphOffsetArray,p,h,k,T,M,g).notEnoughRoom)&&ce(y.numGlyphs,h)}else ce(y.numGlyphs,h)}}i?e.text.dynamicLayoutVertexBuffer.updateData(h):e.icon.dynamicLayoutVertexBuffer.updateData(h)}function ne(t,e,r,n,i,a,o,s,l,c,u){var f=s.glyphStartIndex+s.numGlyphs,h=s.lineStartIndex,p=s.lineStartIndex+s.lineLength,d=e.getoffsetX(s.glyphStartIndex),g=e.getoffsetX(f-1),m=se(t*d,r,n,i,a,o,s.segment,h,p,l,c,u);if(!m)return null;var v=se(t*g,r,n,i,a,o,s.segment,h,p,l,c,u);return v?{first:m,last:v}:null}function ie(e,r,n,i){return e===t.WritingMode.horizontal&&Math.abs(n.y-r.y)>Math.abs(n.x-r.x)*i?{useVertical:!0}:(e===t.WritingMode.vertical?r.y<n.y:r.x>n.x)?{needsFlipping:!0}:null}function ae(e,r,n,i,a,o,s,l,c,u,f,h,p,d){var g,m=r/24,v=e.lineOffsetX*m,y=e.lineOffsetY*m;if(e.numGlyphs>1){var x=e.glyphStartIndex+e.numGlyphs,b=e.lineStartIndex,_=e.lineStartIndex+e.lineLength,w=ne(m,l,v,y,n,f,h,e,c,o,p);if(!w)return{notEnoughRoom:!0};var T=$t(w.first.point,s).point,k=$t(w.last.point,s).point;if(i&&!n){var M=ie(e.writingMode,T,k,d);if(M)return M}g=[w.first];for(var A=e.glyphStartIndex+1;A<x-1;A++)g.push(se(m*l.getoffsetX(A),v,y,n,f,h,e.segment,b,_,c,o,p));g.push(w.last)}else{if(i&&!n){var S=$t(h,a).point,E=e.lineStartIndex+e.segment+1,C=new t.Point(c.getx(E),c.gety(E)),L=$t(C,a),I=L.signedDistanceFromCamera>0?L.point:oe(h,C,S,1,a),P=ie(e.writingMode,S,I,d);if(P)return P}var z=se(m*l.getoffsetX(e.glyphStartIndex),v,y,n,f,h,e.segment,e.lineStartIndex,e.lineStartIndex+e.lineLength,c,o,p);if(!z)return{notEnoughRoom:!0};g=[z]}for(var O=0,D=g;O<D.length;O+=1){var R=D[O];t.addDynamicAttributes(u,R.point,R.angle)}return{}}function oe(t,e,r,n,i){var a=$t(t.add(t.sub(e)._unit()),i).point,o=r.sub(a);return r.add(o._mult(n/o.mag()))}function se(e,r,n,i,a,o,s,l,c,u,f,h){var p=i?e-r:e+r,d=p>0?1:-1,g=0;i&&(d*=-1,g=Math.PI),d<0&&(g+=Math.PI);for(var m=d>0?l+s:l+s+1,v=a,y=a,x=0,b=0,_=Math.abs(p),w=[];x+b<=_;){if((m+=d)<l||m>=c)return null;if(y=v,w.push(v),void 0===(v=h[m])){var T=new t.Point(u.getx(m),u.gety(m)),k=$t(T,f);if(k.signedDistanceFromCamera>0)v=h[m]=k.point;else{var M=m-d;v=oe(0===x?o:new t.Point(u.getx(M),u.gety(M)),T,y,_-x+1,f)}}x+=b,b=y.dist(v)}var A=(_-x)/b,S=v.sub(y),E=S.mult(A)._add(y);E._add(S._unit()._perp()._mult(n*d));var C=g+Math.atan2(v.y-y.y,v.x-y.x);return w.push(E),{point:E,angle:C,path:w}}Jt.prototype.keysLength=function(){return this.boxKeys.length+this.circleKeys.length},Jt.prototype.insert=function(t,e,r,n,i){this._forEachCell(e,r,n,i,this._insertBoxCell,this.boxUid++),this.boxKeys.push(t),this.bboxes.push(e),this.bboxes.push(r),this.bboxes.push(n),this.bboxes.push(i)},Jt.prototype.insertCircle=function(t,e,r,n){this._forEachCell(e-n,r-n,e+n,r+n,this._insertCircleCell,this.circleUid++),this.circleKeys.push(t),this.circles.push(e),this.circles.push(r),this.circles.push(n)},Jt.prototype._insertBoxCell=function(t,e,r,n,i,a){this.boxCells[i].push(a)},Jt.prototype._insertCircleCell=function(t,e,r,n,i,a){this.circleCells[i].push(a)},Jt.prototype._query=function(t,e,r,n,i,a){if(r<0||t>this.width||n<0||e>this.height)return!i&&[];var o=[];if(t<=0&&e<=0&&this.width<=r&&this.height<=n){if(i)return!0;for(var s=0;s<this.boxKeys.length;s++)o.push({key:this.boxKeys[s],x1:this.bboxes[4*s],y1:this.bboxes[4*s+1],x2:this.bboxes[4*s+2],y2:this.bboxes[4*s+3]});for(var l=0;l<this.circleKeys.length;l++){var c=this.circles[3*l],u=this.circles[3*l+1],f=this.circles[3*l+2];o.push({key:this.circleKeys[l],x1:c-f,y1:u-f,x2:c+f,y2:u+f})}return a?o.filter(a):o}return this._forEachCell(t,e,r,n,this._queryCell,o,{hitTest:i,seenUids:{box:{},circle:{}}},a),i?o.length>0:o},Jt.prototype._queryCircle=function(t,e,r,n,i){var a=t-r,o=t+r,s=e-r,l=e+r;if(o<0||a>this.width||l<0||s>this.height)return!n&&[];var c=[];return this._forEachCell(a,s,o,l,this._queryCellCircle,c,{hitTest:n,circle:{x:t,y:e,radius:r},seenUids:{box:{},circle:{}}},i),n?c.length>0:c},Jt.prototype.query=function(t,e,r,n,i){return this._query(t,e,r,n,!1,i)},Jt.prototype.hitTest=function(t,e,r,n,i){return this._query(t,e,r,n,!0,i)},Jt.prototype.hitTestCircle=function(t,e,r,n){return this._queryCircle(t,e,r,!0,n)},Jt.prototype._queryCell=function(t,e,r,n,i,a,o,s){var l=o.seenUids,c=this.boxCells[i];if(null!==c)for(var u=this.bboxes,f=0,h=c;f<h.length;f+=1){var p=h[f];if(!l.box[p]){l.box[p]=!0;var d=4*p;if(t<=u[d+2]&&e<=u[d+3]&&r>=u[d+0]&&n>=u[d+1]&&(!s||s(this.boxKeys[p]))){if(o.hitTest)return a.push(!0),!0;a.push({key:this.boxKeys[p],x1:u[d],y1:u[d+1],x2:u[d+2],y2:u[d+3]})}}}var g=this.circleCells[i];if(null!==g)for(var m=this.circles,v=0,y=g;v<y.length;v+=1){var x=y[v];if(!l.circle[x]){l.circle[x]=!0;var b=3*x;if(this._circleAndRectCollide(m[b],m[b+1],m[b+2],t,e,r,n)&&(!s||s(this.circleKeys[x]))){if(o.hitTest)return a.push(!0),!0;var _=m[b],w=m[b+1],T=m[b+2];a.push({key:this.circleKeys[x],x1:_-T,y1:w-T,x2:_+T,y2:w+T})}}}},Jt.prototype._queryCellCircle=function(t,e,r,n,i,a,o,s){var l=o.circle,c=o.seenUids,u=this.boxCells[i];if(null!==u)for(var f=this.bboxes,h=0,p=u;h<p.length;h+=1){var d=p[h];if(!c.box[d]){c.box[d]=!0;var g=4*d;if(this._circleAndRectCollide(l.x,l.y,l.radius,f[g+0],f[g+1],f[g+2],f[g+3])&&(!s||s(this.boxKeys[d])))return a.push(!0),!0}}var m=this.circleCells[i];if(null!==m)for(var v=this.circles,y=0,x=m;y<x.length;y+=1){var b=x[y];if(!c.circle[b]){c.circle[b]=!0;var _=3*b;if(this._circlesCollide(v[_],v[_+1],v[_+2],l.x,l.y,l.radius)&&(!s||s(this.circleKeys[b])))return a.push(!0),!0}}},Jt.prototype._forEachCell=function(t,e,r,n,i,a,o,s){for(var l=this._convertToXCellCoord(t),c=this._convertToYCellCoord(e),u=this._convertToXCellCoord(r),f=this._convertToYCellCoord(n),h=l;h<=u;h++)for(var p=c;p<=f;p++)if(i.call(this,t,e,r,n,this.xCellCount*p+h,a,o,s))return},Jt.prototype._convertToXCellCoord=function(t){return Math.max(0,Math.min(this.xCellCount-1,Math.floor(t*this.xScale)))},Jt.prototype._convertToYCellCoord=function(t){return Math.max(0,Math.min(this.yCellCount-1,Math.floor(t*this.yScale)))},Jt.prototype._circlesCollide=function(t,e,r,n,i,a){var o=n-t,s=i-e,l=r+a;return l*l>o*o+s*s},Jt.prototype._circleAndRectCollide=function(t,e,r,n,i,a,o){var s=(a-n)/2,l=Math.abs(t-(n+s));if(l>s+r)return!1;var c=(o-i)/2,u=Math.abs(e-(i+c));if(u>c+r)return!1;if(l<=s||u<=c)return!0;var f=l-s,h=u-c;return f*f+h*h<=r*r};var le=new Float32Array([-1/0,-1/0,0,-1/0,-1/0,0,-1/0,-1/0,0,-1/0,-1/0,0]);function ce(t,e){for(var r=0;r<t;r++){var n=e.length;e.resize(n+4),e.float32.set(le,3*n)}}function ue(t,e,r){var n=e[0],i=e[1];return t[0]=r[0]*n+r[4]*i+r[12],t[1]=r[1]*n+r[5]*i+r[13],t[3]=r[3]*n+r[7]*i+r[15],t}var fe=function(t,e,r){void 0===e&&(e=new Jt(t.width+200,t.height+200,25)),void 0===r&&(r=new Jt(t.width+200,t.height+200,25)),this.transform=t,this.grid=e,this.ignoredGrid=r,this.pitchfactor=Math.cos(t._pitch)*t.cameraToCenterDistance,this.screenRightBoundary=t.width+100,this.screenBottomBoundary=t.height+100,this.gridRightBoundary=t.width+200,this.gridBottomBoundary=t.height+200};function he(e,r,n){return r*(t.EXTENT/(e.tileSize*Math.pow(2,n-e.tileID.overscaledZ)))}fe.prototype.placeCollisionBox=function(t,e,r,n,i){var a=this.projectAndGetPerspectiveRatio(n,t.anchorPointX,t.anchorPointY),o=r*a.perspectiveRatio,s=t.x1*o+a.point.x,l=t.y1*o+a.point.y,c=t.x2*o+a.point.x,u=t.y2*o+a.point.y;return!this.isInsideGrid(s,l,c,u)||!e&&this.grid.hitTest(s,l,c,u,i)?{box:[],offscreen:!1}:{box:[s,l,c,u],offscreen:this.isOffscreen(s,l,c,u)}},fe.prototype.placeCollisionCircles=function(e,r,n,i,a,o,s,l,c,u,f,h,p){var d=[],g=new t.Point(r.anchorX,r.anchorY),m=$t(g,o),v=te(this.transform.cameraToCenterDistance,m.signedDistanceFromCamera),y=(u?a/v:a*v)/t.ONE_EM,x=$t(g,s).point,b=ne(y,i,r.lineOffsetX*y,r.lineOffsetY*y,!1,x,g,r,n,s,{}),_=!1,w=!1,T=!0;if(b){for(var k=.5*h*v+p,M=new t.Point(-100,-100),A=new t.Point(this.screenRightBoundary,this.screenBottomBoundary),S=new Zt,E=b.first,C=b.last,L=[],I=E.path.length-1;I>=1;I--)L.push(E.path[I]);for(var P=1;P<C.path.length;P++)L.push(C.path[P]);var z=2.5*k;if(l){var O=L.map((function(t){return $t(t,l)}));L=O.some((function(t){return t.signedDistanceFromCamera<=0}))?[]:O.map((function(t){return t.point}))}var D=[];if(L.length>0){for(var R=L[0].clone(),F=L[0].clone(),B=1;B<L.length;B++)R.x=Math.min(R.x,L[B].x),R.y=Math.min(R.y,L[B].y),F.x=Math.max(F.x,L[B].x),F.y=Math.max(F.y,L[B].y);D=R.x>=M.x&&F.x<=A.x&&R.y>=M.y&&F.y<=A.y?[L]:F.x<M.x||R.x>A.x||F.y<M.y||R.y>A.y?[]:t.clipLine([L],M.x,M.y,A.x,A.y)}for(var N=0,j=D;N<j.length;N+=1){var U;S.reset(j[N],.25*k),U=S.length<=.5*k?1:Math.ceil(S.paddedLength/z)+1;for(var V=0;V<U;V++){var q=V/Math.max(U-1,1),H=S.lerp(q),G=H.x+100,Y=H.y+100;d.push(G,Y,k,0);var W=G-k,X=Y-k,Z=G+k,J=Y+k;if(T=T&&this.isOffscreen(W,X,Z,J),w=w||this.isInsideGrid(W,X,Z,J),!e&&this.grid.hitTestCircle(G,Y,k,f)&&(_=!0,!c))return{circles:[],offscreen:!1,collisionDetected:_}}}}return{circles:!c&&_||!w?[]:d,offscreen:T,collisionDetected:_}},fe.prototype.queryRenderedSymbols=function(e){if(0===e.length||0===this.grid.keysLength()&&0===this.ignoredGrid.keysLength())return{};for(var r=[],n=1/0,i=1/0,a=-1/0,o=-1/0,s=0,l=e;s<l.length;s+=1){var c=l[s],u=new t.Point(c.x+100,c.y+100);n=Math.min(n,u.x),i=Math.min(i,u.y),a=Math.max(a,u.x),o=Math.max(o,u.y),r.push(u)}for(var f={},h={},p=0,d=this.grid.query(n,i,a,o).concat(this.ignoredGrid.query(n,i,a,o));p<d.length;p+=1){var g=d[p],m=g.key;if(void 0===f[m.bucketInstanceId]&&(f[m.bucketInstanceId]={}),!f[m.bucketInstanceId][m.featureIndex]){var v=[new t.Point(g.x1,g.y1),new t.Point(g.x2,g.y1),new t.Point(g.x2,g.y2),new t.Point(g.x1,g.y2)];t.polygonIntersectsPolygon(r,v)&&(f[m.bucketInstanceId][m.featureIndex]=!0,void 0===h[m.bucketInstanceId]&&(h[m.bucketInstanceId]=[]),h[m.bucketInstanceId].push(m.featureIndex))}}return h},fe.prototype.insertCollisionBox=function(t,e,r,n,i){(e?this.ignoredGrid:this.grid).insert({bucketInstanceId:r,featureIndex:n,collisionGroupID:i},t[0],t[1],t[2],t[3])},fe.prototype.insertCollisionCircles=function(t,e,r,n,i){for(var a=e?this.ignoredGrid:this.grid,o={bucketInstanceId:r,featureIndex:n,collisionGroupID:i},s=0;s<t.length;s+=4)a.insertCircle(o,t[s],t[s+1],t[s+2])},fe.prototype.projectAndGetPerspectiveRatio=function(e,r,n){var i=[r,n,0,1];return ue(i,i,e),{point:new t.Point((i[0]/i[3]+1)/2*this.transform.width+100,(-i[1]/i[3]+1)/2*this.transform.height+100),perspectiveRatio:.5+this.transform.cameraToCenterDistance/i[3]*.5}},fe.prototype.isOffscreen=function(t,e,r,n){return r<100||t>=this.screenRightBoundary||n<100||e>this.screenBottomBoundary},fe.prototype.isInsideGrid=function(t,e,r,n){return r>=0&&t<this.gridRightBoundary&&n>=0&&e<this.gridBottomBoundary},fe.prototype.getViewportMatrix=function(){var e=t.identity([]);return t.translate(e,e,[-100,-100,0]),e};var pe=function(t,e,r,n){this.opacity=t?Math.max(0,Math.min(1,t.opacity+(t.placed?e:-e))):n&&r?1:0,this.placed=r};pe.prototype.isHidden=function(){return 0===this.opacity&&!this.placed};var de=function(t,e,r,n,i){this.text=new pe(t?t.text:null,e,r,i),this.icon=new pe(t?t.icon:null,e,n,i)};de.prototype.isHidden=function(){return this.text.isHidden()&&this.icon.isHidden()};var ge=function(t,e,r){this.text=t,this.icon=e,this.skipFade=r},me=function(){this.invProjMatrix=t.create(),this.viewportMatrix=t.create(),this.circles=[]},ve=function(t,e,r,n,i){this.bucketInstanceId=t,this.featureIndex=e,this.sourceLayerIndex=r,this.bucketIndex=n,this.tileID=i},ye=function(t){this.crossSourceCollisions=t,this.maxGroupID=0,this.collisionGroups={}};function xe(e,r,n,i,a){var o=t.getAnchorAlignment(e),s=-(o.horizontalAlign-.5)*r,l=-(o.verticalAlign-.5)*n,c=t.evaluateVariableOffset(e,i);return new t.Point(s+c[0]*a,l+c[1]*a)}function be(e,r,n,i,a,o){var s=e.x1,l=e.x2,c=e.y1,u=e.y2,f=e.anchorPointX,h=e.anchorPointY,p=new t.Point(r,n);return i&&p._rotate(a?o:-o),{x1:s+p.x,y1:c+p.y,x2:l+p.x,y2:u+p.y,anchorPointX:f,anchorPointY:h}}ye.prototype.get=function(t){if(this.crossSourceCollisions)return{ID:0,predicate:null};if(!this.collisionGroups[t]){var e=++this.maxGroupID;this.collisionGroups[t]={ID:e,predicate:function(t){return t.collisionGroupID===e}}}return this.collisionGroups[t]};var _e=function(t,e,r,n){this.transform=t.clone(),this.collisionIndex=new fe(this.transform),this.placements={},this.opacities={},this.variableOffsets={},this.stale=!1,this.commitTime=0,this.fadeDuration=e,this.retainedQueryData={},this.collisionGroups=new ye(r),this.collisionCircleArrays={},this.prevPlacement=n,n&&(n.prevPlacement=void 0),this.placedOrientations={}};function we(t,e,r,n,i){t.emplaceBack(e?1:0,r?1:0,n||0,i||0),t.emplaceBack(e?1:0,r?1:0,n||0,i||0),t.emplaceBack(e?1:0,r?1:0,n||0,i||0),t.emplaceBack(e?1:0,r?1:0,n||0,i||0)}_e.prototype.getBucketParts=function(e,r,n,i){var a=n.getBucket(r),o=n.latestFeatureIndex;if(a&&o&&r.id===a.layerIds[0]){var s=n.collisionBoxArray,l=a.layers[0].layout,c=Math.pow(2,this.transform.zoom-n.tileID.overscaledZ),u=n.tileSize/t.EXTENT,f=this.transform.calculatePosMatrix(n.tileID.toUnwrapped()),h=\"map\"===l.get(\"text-pitch-alignment\"),p=\"map\"===l.get(\"text-rotation-alignment\"),d=he(n,1,this.transform.zoom),g=Kt(f,h,p,this.transform,d),m=null;if(h){var v=Qt(f,h,p,this.transform,d);m=t.multiply([],this.transform.labelPlaneMatrix,v)}this.retainedQueryData[a.bucketInstanceId]=new ve(a.bucketInstanceId,o,a.sourceLayerIndex,a.index,n.tileID);var y={bucket:a,layout:l,posMatrix:f,textLabelPlaneMatrix:g,labelToScreenMatrix:m,scale:c,textPixelRatio:u,holdingForFade:n.holdingForFade(),collisionBoxArray:s,partiallyEvaluatedTextSize:t.evaluateSizeForZoom(a.textSizeData,this.transform.zoom),collisionGroup:this.collisionGroups.get(a.sourceID)};if(i)for(var x=0,b=a.sortKeyRanges;x<b.length;x+=1){var _=b[x];e.push({sortKey:_.sortKey,symbolInstanceStart:_.symbolInstanceStart,symbolInstanceEnd:_.symbolInstanceEnd,parameters:y})}else e.push({symbolInstanceStart:0,symbolInstanceEnd:a.symbolInstances.length,parameters:y})}},_e.prototype.attemptAnchorPlacement=function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d){var g,m=[f.textOffset0,f.textOffset1],v=xe(t,r,n,m,i),y=this.collisionIndex.placeCollisionBox(be(e,v.x,v.y,a,o,this.transform.angle),u,s,l,c.predicate);if(!d||0!==this.collisionIndex.placeCollisionBox(be(d,v.x,v.y,a,o,this.transform.angle),u,s,l,c.predicate).box.length)return y.box.length>0?(this.prevPlacement&&this.prevPlacement.variableOffsets[f.crossTileID]&&this.prevPlacement.placements[f.crossTileID]&&this.prevPlacement.placements[f.crossTileID].text&&(g=this.prevPlacement.variableOffsets[f.crossTileID].anchor),this.variableOffsets[f.crossTileID]={textOffset:m,width:r,height:n,anchor:t,textBoxScale:i,prevAnchor:g},this.markUsedJustification(h,t,f,p),h.allowVerticalPlacement&&(this.markUsedOrientation(h,p,f),this.placedOrientations[f.crossTileID]=p),{shift:v,placedGlyphBoxes:y}):void 0},_e.prototype.placeLayerBucketPart=function(e,r,n){var i=this,a=e.parameters,o=a.bucket,s=a.layout,l=a.posMatrix,c=a.textLabelPlaneMatrix,u=a.labelToScreenMatrix,f=a.textPixelRatio,h=a.holdingForFade,p=a.collisionBoxArray,d=a.partiallyEvaluatedTextSize,g=a.collisionGroup,m=s.get(\"text-optional\"),v=s.get(\"icon-optional\"),y=s.get(\"text-allow-overlap\"),x=s.get(\"icon-allow-overlap\"),b=\"map\"===s.get(\"text-rotation-alignment\"),_=\"map\"===s.get(\"text-pitch-alignment\"),w=\"none\"!==s.get(\"icon-text-fit\"),T=\"viewport-y\"===s.get(\"symbol-z-order\"),k=y&&(x||!o.hasIconData()||v),M=x&&(y||!o.hasTextData()||m);!o.collisionArrays&&p&&o.deserializeCollisionBoxes(p);var A=function(e,a){if(!r[e.crossTileID])if(h)i.placements[e.crossTileID]=new ge(!1,!1,!1);else{var p,T=!1,A=!1,S=!0,E=null,C={box:null,offscreen:null},L={box:null,offscreen:null},I=null,P=null,z=0,O=0,D=0;a.textFeatureIndex?z=a.textFeatureIndex:e.useRuntimeCollisionCircles&&(z=e.featureIndex),a.verticalTextFeatureIndex&&(O=a.verticalTextFeatureIndex);var R=a.textBox;if(R){var F=function(r){var n=t.WritingMode.horizontal;if(o.allowVerticalPlacement&&!r&&i.prevPlacement){var a=i.prevPlacement.placedOrientations[e.crossTileID];a&&(i.placedOrientations[e.crossTileID]=a,i.markUsedOrientation(o,n=a,e))}return n},B=function(r,n){if(o.allowVerticalPlacement&&e.numVerticalGlyphVertices>0&&a.verticalTextBox)for(var i=0,s=o.writingModes;i<s.length&&(s[i]===t.WritingMode.vertical?(C=n(),L=C):C=r(),!(C&&C.box&&C.box.length));i+=1);else C=r()};if(s.get(\"text-variable-anchor\")){var N=s.get(\"text-variable-anchor\");if(i.prevPlacement&&i.prevPlacement.variableOffsets[e.crossTileID]){var j=i.prevPlacement.variableOffsets[e.crossTileID];N.indexOf(j.anchor)>0&&(N=N.filter((function(t){return t!==j.anchor}))).unshift(j.anchor)}var U=function(t,r,n){for(var a=t.x2-t.x1,s=t.y2-t.y1,c=e.textBoxScale,u=w&&!x?r:null,h={box:[],offscreen:!1},p=y?2*N.length:N.length,d=0;d<p;++d){var m=i.attemptAnchorPlacement(N[d%N.length],t,a,s,c,b,_,f,l,g,d>=N.length,e,o,n,u);if(m&&(h=m.placedGlyphBoxes)&&h.box&&h.box.length){T=!0,E=m.shift;break}}return h};B((function(){return U(R,a.iconBox,t.WritingMode.horizontal)}),(function(){var r=a.verticalTextBox;return o.allowVerticalPlacement&&!(C&&C.box&&C.box.length)&&e.numVerticalGlyphVertices>0&&r?U(r,a.verticalIconBox,t.WritingMode.vertical):{box:null,offscreen:null}})),C&&(T=C.box,S=C.offscreen);var V=F(C&&C.box);if(!T&&i.prevPlacement){var q=i.prevPlacement.variableOffsets[e.crossTileID];q&&(i.variableOffsets[e.crossTileID]=q,i.markUsedJustification(o,q.anchor,e,V))}}else{var H=function(t,r){var n=i.collisionIndex.placeCollisionBox(t,y,f,l,g.predicate);return n&&n.box&&n.box.length&&(i.markUsedOrientation(o,r,e),i.placedOrientations[e.crossTileID]=r),n};B((function(){return H(R,t.WritingMode.horizontal)}),(function(){var r=a.verticalTextBox;return o.allowVerticalPlacement&&e.numVerticalGlyphVertices>0&&r?H(r,t.WritingMode.vertical):{box:null,offscreen:null}})),F(C&&C.box&&C.box.length)}}if(T=(p=C)&&p.box&&p.box.length>0,S=p&&p.offscreen,e.useRuntimeCollisionCircles){var G=o.text.placedSymbolArray.get(e.centerJustifiedTextSymbolIndex),Y=t.evaluateSizeForFeature(o.textSizeData,d,G),W=s.get(\"text-padding\");I=i.collisionIndex.placeCollisionCircles(y,G,o.lineVertexArray,o.glyphOffsetArray,Y,l,c,u,n,_,g.predicate,e.collisionCircleDiameter,W),T=y||I.circles.length>0&&!I.collisionDetected,S=S&&I.offscreen}if(a.iconFeatureIndex&&(D=a.iconFeatureIndex),a.iconBox){var X=function(t){var e=w&&E?be(t,E.x,E.y,b,_,i.transform.angle):t;return i.collisionIndex.placeCollisionBox(e,x,f,l,g.predicate)};A=L&&L.box&&L.box.length&&a.verticalIconBox?(P=X(a.verticalIconBox)).box.length>0:(P=X(a.iconBox)).box.length>0,S=S&&P.offscreen}var Z=m||0===e.numHorizontalGlyphVertices&&0===e.numVerticalGlyphVertices,J=v||0===e.numIconVertices;if(Z||J?J?Z||(A=A&&T):T=A&&T:A=T=A&&T,T&&p&&p.box&&i.collisionIndex.insertCollisionBox(p.box,s.get(\"text-ignore-placement\"),o.bucketInstanceId,L&&L.box&&O?O:z,g.ID),A&&P&&i.collisionIndex.insertCollisionBox(P.box,s.get(\"icon-ignore-placement\"),o.bucketInstanceId,D,g.ID),I&&(T&&i.collisionIndex.insertCollisionCircles(I.circles,s.get(\"text-ignore-placement\"),o.bucketInstanceId,z,g.ID),n)){var K=o.bucketInstanceId,Q=i.collisionCircleArrays[K];void 0===Q&&(Q=i.collisionCircleArrays[K]=new me);for(var $=0;$<I.circles.length;$+=4)Q.circles.push(I.circles[$+0]),Q.circles.push(I.circles[$+1]),Q.circles.push(I.circles[$+2]),Q.circles.push(I.collisionDetected?1:0)}i.placements[e.crossTileID]=new ge(T||k,A||M,S||o.justReloaded),r[e.crossTileID]=!0}};if(T)for(var S=o.getSortedSymbolIndexes(this.transform.angle),E=S.length-1;E>=0;--E){var C=S[E];A(o.symbolInstances.get(C),o.collisionArrays[C])}else for(var L=e.symbolInstanceStart;L<e.symbolInstanceEnd;L++)A(o.symbolInstances.get(L),o.collisionArrays[L]);if(n&&o.bucketInstanceId in this.collisionCircleArrays){var I=this.collisionCircleArrays[o.bucketInstanceId];t.invert(I.invProjMatrix,l),I.viewportMatrix=this.collisionIndex.getViewportMatrix()}o.justReloaded=!1},_e.prototype.markUsedJustification=function(e,r,n,i){var a;a=i===t.WritingMode.vertical?n.verticalPlacedTextSymbolIndex:{left:n.leftJustifiedTextSymbolIndex,center:n.centerJustifiedTextSymbolIndex,right:n.rightJustifiedTextSymbolIndex}[t.getAnchorJustification(r)];for(var o=0,s=[n.leftJustifiedTextSymbolIndex,n.centerJustifiedTextSymbolIndex,n.rightJustifiedTextSymbolIndex,n.verticalPlacedTextSymbolIndex];o<s.length;o+=1){var l=s[o];l>=0&&(e.text.placedSymbolArray.get(l).crossTileID=a>=0&&l!==a?0:n.crossTileID)}},_e.prototype.markUsedOrientation=function(e,r,n){for(var i=r===t.WritingMode.horizontal||r===t.WritingMode.horizontalOnly?r:0,a=r===t.WritingMode.vertical?r:0,o=0,s=[n.leftJustifiedTextSymbolIndex,n.centerJustifiedTextSymbolIndex,n.rightJustifiedTextSymbolIndex];o<s.length;o+=1)e.text.placedSymbolArray.get(s[o]).placedOrientation=i;n.verticalPlacedTextSymbolIndex&&(e.text.placedSymbolArray.get(n.verticalPlacedTextSymbolIndex).placedOrientation=a)},_e.prototype.commit=function(t){this.commitTime=t,this.zoomAtLastRecencyCheck=this.transform.zoom;var e=this.prevPlacement,r=!1;this.prevZoomAdjustment=e?e.zoomAdjustment(this.transform.zoom):0;var n=e?e.symbolFadeChange(t):1,i=e?e.opacities:{},a=e?e.variableOffsets:{},o=e?e.placedOrientations:{};for(var s in this.placements){var l=this.placements[s],c=i[s];c?(this.opacities[s]=new de(c,n,l.text,l.icon),r=r||l.text!==c.text.placed||l.icon!==c.icon.placed):(this.opacities[s]=new de(null,n,l.text,l.icon,l.skipFade),r=r||l.text||l.icon)}for(var u in i){var f=i[u];if(!this.opacities[u]){var h=new de(f,n,!1,!1);h.isHidden()||(this.opacities[u]=h,r=r||f.text.placed||f.icon.placed)}}for(var p in a)this.variableOffsets[p]||!this.opacities[p]||this.opacities[p].isHidden()||(this.variableOffsets[p]=a[p]);for(var d in o)this.placedOrientations[d]||!this.opacities[d]||this.opacities[d].isHidden()||(this.placedOrientations[d]=o[d]);r?this.lastPlacementChangeTime=t:\"number\"!=typeof this.lastPlacementChangeTime&&(this.lastPlacementChangeTime=e?e.lastPlacementChangeTime:t)},_e.prototype.updateLayerOpacities=function(t,e){for(var r={},n=0,i=e;n<i.length;n+=1){var a=i[n],o=a.getBucket(t);o&&a.latestFeatureIndex&&t.id===o.layerIds[0]&&this.updateBucketOpacities(o,r,a.collisionBoxArray)}},_e.prototype.updateBucketOpacities=function(e,r,n){var i=this;e.hasTextData()&&e.text.opacityVertexArray.clear(),e.hasIconData()&&e.icon.opacityVertexArray.clear(),e.hasIconCollisionBoxData()&&e.iconCollisionBox.collisionVertexArray.clear(),e.hasTextCollisionBoxData()&&e.textCollisionBox.collisionVertexArray.clear();var a=e.layers[0].layout,o=new de(null,0,!1,!1,!0),s=a.get(\"text-allow-overlap\"),l=a.get(\"icon-allow-overlap\"),c=a.get(\"text-variable-anchor\"),u=\"map\"===a.get(\"text-rotation-alignment\"),f=\"map\"===a.get(\"text-pitch-alignment\"),h=\"none\"!==a.get(\"icon-text-fit\"),p=new de(null,0,s&&(l||!e.hasIconData()||a.get(\"icon-optional\")),l&&(s||!e.hasTextData()||a.get(\"text-optional\")),!0);!e.collisionArrays&&n&&(e.hasIconCollisionBoxData()||e.hasTextCollisionBoxData())&&e.deserializeCollisionBoxes(n);for(var d=function(t,e,r){for(var n=0;n<e/4;n++)t.opacityVertexArray.emplaceBack(r)},g=function(n){var a=e.symbolInstances.get(n),s=a.numHorizontalGlyphVertices,l=a.numVerticalGlyphVertices,g=a.crossTileID,m=i.opacities[g];r[g]?m=o:m||(i.opacities[g]=m=p),r[g]=!0;var v=a.numIconVertices>0,y=i.placedOrientations[a.crossTileID],x=y===t.WritingMode.vertical,b=y===t.WritingMode.horizontal||y===t.WritingMode.horizontalOnly;if(s>0||l>0){var _=Le(m.text);d(e.text,s,x?Ie:_),d(e.text,l,b?Ie:_);var w=m.text.isHidden();[a.rightJustifiedTextSymbolIndex,a.centerJustifiedTextSymbolIndex,a.leftJustifiedTextSymbolIndex].forEach((function(t){t>=0&&(e.text.placedSymbolArray.get(t).hidden=w||x?1:0)})),a.verticalPlacedTextSymbolIndex>=0&&(e.text.placedSymbolArray.get(a.verticalPlacedTextSymbolIndex).hidden=w||b?1:0);var T=i.variableOffsets[a.crossTileID];T&&i.markUsedJustification(e,T.anchor,a,y);var k=i.placedOrientations[a.crossTileID];k&&(i.markUsedJustification(e,\"left\",a,k),i.markUsedOrientation(e,k,a))}if(v){var M=Le(m.icon),A=!(h&&a.verticalPlacedIconSymbolIndex&&x);a.placedIconSymbolIndex>=0&&(d(e.icon,a.numIconVertices,A?M:Ie),e.icon.placedSymbolArray.get(a.placedIconSymbolIndex).hidden=m.icon.isHidden()),a.verticalPlacedIconSymbolIndex>=0&&(d(e.icon,a.numVerticalIconVertices,A?Ie:M),e.icon.placedSymbolArray.get(a.verticalPlacedIconSymbolIndex).hidden=m.icon.isHidden())}if(e.hasIconCollisionBoxData()||e.hasTextCollisionBoxData()){var S=e.collisionArrays[n];if(S){var E=new t.Point(0,0);if(S.textBox||S.verticalTextBox){var C=!0;if(c){var L=i.variableOffsets[g];L?(E=xe(L.anchor,L.width,L.height,L.textOffset,L.textBoxScale),u&&E._rotate(f?i.transform.angle:-i.transform.angle)):C=!1}S.textBox&&we(e.textCollisionBox.collisionVertexArray,m.text.placed,!C||x,E.x,E.y),S.verticalTextBox&&we(e.textCollisionBox.collisionVertexArray,m.text.placed,!C||b,E.x,E.y)}var I=Boolean(!b&&S.verticalIconBox);S.iconBox&&we(e.iconCollisionBox.collisionVertexArray,m.icon.placed,I,h?E.x:0,h?E.y:0),S.verticalIconBox&&we(e.iconCollisionBox.collisionVertexArray,m.icon.placed,!I,h?E.x:0,h?E.y:0)}}},m=0;m<e.symbolInstances.length;m++)g(m);if(e.sortFeatures(this.transform.angle),this.retainedQueryData[e.bucketInstanceId]&&(this.retainedQueryData[e.bucketInstanceId].featureSortOrder=e.featureSortOrder),e.hasTextData()&&e.text.opacityVertexBuffer&&e.text.opacityVertexBuffer.updateData(e.text.opacityVertexArray),e.hasIconData()&&e.icon.opacityVertexBuffer&&e.icon.opacityVertexBuffer.updateData(e.icon.opacityVertexArray),e.hasIconCollisionBoxData()&&e.iconCollisionBox.collisionVertexBuffer&&e.iconCollisionBox.collisionVertexBuffer.updateData(e.iconCollisionBox.collisionVertexArray),e.hasTextCollisionBoxData()&&e.textCollisionBox.collisionVertexBuffer&&e.textCollisionBox.collisionVertexBuffer.updateData(e.textCollisionBox.collisionVertexArray),e.bucketInstanceId in this.collisionCircleArrays){var v=this.collisionCircleArrays[e.bucketInstanceId];e.placementInvProjMatrix=v.invProjMatrix,e.placementViewportMatrix=v.viewportMatrix,e.collisionCircleArray=v.circles,delete this.collisionCircleArrays[e.bucketInstanceId]}},_e.prototype.symbolFadeChange=function(t){return 0===this.fadeDuration?1:(t-this.commitTime)/this.fadeDuration+this.prevZoomAdjustment},_e.prototype.zoomAdjustment=function(t){return Math.max(0,(this.transform.zoom-t)/1.5)},_e.prototype.hasTransitions=function(t){return this.stale||t-this.lastPlacementChangeTime<this.fadeDuration},_e.prototype.stillRecent=function(t,e){var r=this.zoomAtLastRecencyCheck===e?1-this.zoomAdjustment(e):1;return this.zoomAtLastRecencyCheck=e,this.commitTime+this.fadeDuration*r>t},_e.prototype.setStale=function(){this.stale=!0};var Te=Math.pow(2,25),ke=Math.pow(2,24),Me=Math.pow(2,17),Ae=Math.pow(2,16),Se=Math.pow(2,9),Ee=Math.pow(2,8),Ce=Math.pow(2,1);function Le(t){if(0===t.opacity&&!t.placed)return 0;if(1===t.opacity&&t.placed)return 4294967295;var e=t.placed?1:0,r=Math.floor(127*t.opacity);return r*Te+e*ke+r*Me+e*Ae+r*Se+e*Ee+r*Ce+e}var Ie=0,Pe=function(t){this._sortAcrossTiles=\"viewport-y\"!==t.layout.get(\"symbol-z-order\")&&void 0!==t.layout.get(\"symbol-sort-key\").constantOr(1),this._currentTileIndex=0,this._currentPartIndex=0,this._seenCrossTileIDs={},this._bucketParts=[]};Pe.prototype.continuePlacement=function(t,e,r,n,i){for(var a=this._bucketParts;this._currentTileIndex<t.length;)if(e.getBucketParts(a,n,t[this._currentTileIndex],this._sortAcrossTiles),this._currentTileIndex++,i())return!0;for(this._sortAcrossTiles&&(this._sortAcrossTiles=!1,a.sort((function(t,e){return t.sortKey-e.sortKey})));this._currentPartIndex<a.length;)if(e.placeLayerBucketPart(a[this._currentPartIndex],this._seenCrossTileIDs,r),this._currentPartIndex++,i())return!0;return!1};var ze=function(t,e,r,n,i,a,o){this.placement=new _e(t,i,a,o),this._currentPlacementIndex=e.length-1,this._forceFullPlacement=r,this._showCollisionBoxes=n,this._done=!1};ze.prototype.isDone=function(){return this._done},ze.prototype.continuePlacement=function(e,r,n){for(var i=this,a=t.browser.now(),o=function(){var e=t.browser.now()-a;return!i._forceFullPlacement&&e>2};this._currentPlacementIndex>=0;){var s=r[e[this._currentPlacementIndex]],l=this.placement.collisionIndex.transform.zoom;if(\"symbol\"===s.type&&(!s.minzoom||s.minzoom<=l)&&(!s.maxzoom||s.maxzoom>l)){if(this._inProgressLayer||(this._inProgressLayer=new Pe(s)),this._inProgressLayer.continuePlacement(n[s.source],this.placement,this._showCollisionBoxes,s,o))return;delete this._inProgressLayer}this._currentPlacementIndex--}this._done=!0},ze.prototype.commit=function(t){return this.placement.commit(t),this.placement};var Oe=512/t.EXTENT/2,De=function(t,e,r){this.tileID=t,this.indexedSymbolInstances={},this.bucketInstanceId=r;for(var n=0;n<e.length;n++){var i=e.get(n),a=i.key;this.indexedSymbolInstances[a]||(this.indexedSymbolInstances[a]=[]),this.indexedSymbolInstances[a].push({crossTileID:i.crossTileID,coord:this.getScaledCoordinates(i,t)})}};De.prototype.getScaledCoordinates=function(e,r){var n=Oe/Math.pow(2,r.canonical.z-this.tileID.canonical.z);return{x:Math.floor((r.canonical.x*t.EXTENT+e.anchorX)*n),y:Math.floor((r.canonical.y*t.EXTENT+e.anchorY)*n)}},De.prototype.findMatches=function(t,e,r){for(var n=this.tileID.canonical.z<e.canonical.z?1:Math.pow(2,this.tileID.canonical.z-e.canonical.z),i=0;i<t.length;i++){var a=t.get(i);if(!a.crossTileID){var o=this.indexedSymbolInstances[a.key];if(o)for(var s=this.getScaledCoordinates(a,e),l=0,c=o;l<c.length;l+=1){var u=c[l];if(Math.abs(u.coord.x-s.x)<=n&&Math.abs(u.coord.y-s.y)<=n&&!r[u.crossTileID]){r[u.crossTileID]=!0,a.crossTileID=u.crossTileID;break}}}}};var Re=function(){this.maxCrossTileID=0};Re.prototype.generate=function(){return++this.maxCrossTileID};var Fe=function(){this.indexes={},this.usedCrossTileIDs={},this.lng=0};Fe.prototype.handleWrapJump=function(t){var e=Math.round((t-this.lng)/360);if(0!==e)for(var r in this.indexes){var n=this.indexes[r],i={};for(var a in n){var o=n[a];o.tileID=o.tileID.unwrapTo(o.tileID.wrap+e),i[o.tileID.key]=o}this.indexes[r]=i}this.lng=t},Fe.prototype.addBucket=function(t,e,r){if(this.indexes[t.overscaledZ]&&this.indexes[t.overscaledZ][t.key]){if(this.indexes[t.overscaledZ][t.key].bucketInstanceId===e.bucketInstanceId)return!1;this.removeBucketCrossTileIDs(t.overscaledZ,this.indexes[t.overscaledZ][t.key])}for(var n=0;n<e.symbolInstances.length;n++)e.symbolInstances.get(n).crossTileID=0;this.usedCrossTileIDs[t.overscaledZ]||(this.usedCrossTileIDs[t.overscaledZ]={});var i=this.usedCrossTileIDs[t.overscaledZ];for(var a in this.indexes){var o=this.indexes[a];if(Number(a)>t.overscaledZ)for(var s in o){var l=o[s];l.tileID.isChildOf(t)&&l.findMatches(e.symbolInstances,t,i)}else{var c=o[t.scaledTo(Number(a)).key];c&&c.findMatches(e.symbolInstances,t,i)}}for(var u=0;u<e.symbolInstances.length;u++){var f=e.symbolInstances.get(u);f.crossTileID||(f.crossTileID=r.generate(),i[f.crossTileID]=!0)}return void 0===this.indexes[t.overscaledZ]&&(this.indexes[t.overscaledZ]={}),this.indexes[t.overscaledZ][t.key]=new De(t,e.symbolInstances,e.bucketInstanceId),!0},Fe.prototype.removeBucketCrossTileIDs=function(t,e){for(var r in e.indexedSymbolInstances)for(var n=0,i=e.indexedSymbolInstances[r];n<i.length;n+=1)delete this.usedCrossTileIDs[t][i[n].crossTileID]},Fe.prototype.removeStaleBuckets=function(t){var e=!1;for(var r in this.indexes){var n=this.indexes[r];for(var i in n)t[n[i].bucketInstanceId]||(this.removeBucketCrossTileIDs(r,n[i]),delete n[i],e=!0)}return e};var Be=function(){this.layerIndexes={},this.crossTileIDs=new Re,this.maxBucketInstanceId=0,this.bucketsInCurrentPlacement={}};Be.prototype.addLayer=function(t,e,r){var n=this.layerIndexes[t.id];void 0===n&&(n=this.layerIndexes[t.id]=new Fe);var i=!1,a={};n.handleWrapJump(r);for(var o=0,s=e;o<s.length;o+=1){var l=s[o],c=l.getBucket(t);c&&t.id===c.layerIds[0]&&(c.bucketInstanceId||(c.bucketInstanceId=++this.maxBucketInstanceId),n.addBucket(l.tileID,c,this.crossTileIDs)&&(i=!0),a[c.bucketInstanceId]=!0)}return n.removeStaleBuckets(a)&&(i=!0),i},Be.prototype.pruneUnusedLayers=function(t){var e={};for(var r in t.forEach((function(t){e[t]=!0})),this.layerIndexes)e[r]||delete this.layerIndexes[r]};var Ne=function(e,r){return t.emitValidationErrors(e,r&&r.filter((function(t){return\"source.canvas\"!==t.identifier})))},je=t.pick(Ut,[\"addLayer\",\"removeLayer\",\"setPaintProperty\",\"setLayoutProperty\",\"setFilter\",\"addSource\",\"removeSource\",\"setLayerZoomRange\",\"setLight\",\"setTransition\",\"setGeoJSONSourceData\"]),Ue=t.pick(Ut,[\"setCenter\",\"setZoom\",\"setBearing\",\"setPitch\"]),Ve=function(){var e={},r=t.styleSpec.$version;for(var n in t.styleSpec.$root){var i,a=t.styleSpec.$root[n];a.required&&null!=(i=\"version\"===n?r:\"array\"===a.type?[]:{})&&(e[n]=i)}return e}(),qe=function(e){function r(n,i){var a=this;void 0===i&&(i={}),e.call(this),this.map=n,this.dispatcher=new k(Bt(),this),this.imageManager=new h,this.imageManager.setEventedParent(this),this.glyphManager=new x(n._requestManager,i.localIdeographFontFamily),this.lineAtlas=new T(256,512),this.crossTileSymbolIndex=new Be,this._layers={},this._serializedLayers={},this._order=[],this.sourceCaches={},this.zoomHistory=new t.ZoomHistory,this._loaded=!1,this._availableImages=[],this._resetUpdates(),this.dispatcher.broadcast(\"setReferrer\",t.getReferrer());var o=this;this._rtlTextPluginCallback=r.registerForPluginStateChange((function(e){o.dispatcher.broadcast(\"syncRTLPluginState\",{pluginStatus:e.pluginStatus,pluginURL:e.pluginURL},(function(e,r){if(t.triggerPluginCompletionEvent(e),r&&r.every((function(t){return t})))for(var n in o.sourceCaches)o.sourceCaches[n].reload()}))})),this.on(\"data\",(function(t){if(\"source\"===t.dataType&&\"metadata\"===t.sourceDataType){var e=a.sourceCaches[t.sourceId];if(e){var r=e.getSource();if(r&&r.vectorLayerIds)for(var n in a._layers){var i=a._layers[n];i.source===r.id&&a._validateLayer(i)}}}}))}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.loadURL=function(e,r){var n=this;void 0===r&&(r={}),this.fire(new t.Event(\"dataloading\",{dataType:\"style\"}));var i=\"boolean\"==typeof r.validate?r.validate:!t.isMapboxURL(e);e=this.map._requestManager.normalizeStyleURL(e,r.accessToken);var a=this.map._requestManager.transformRequest(e,t.ResourceType.Style);this._request=t.getJSON(a,(function(e,r){n._request=null,e?n.fire(new t.ErrorEvent(e)):r&&n._load(r,i)}))},r.prototype.loadJSON=function(e,r){var n=this;void 0===r&&(r={}),this.fire(new t.Event(\"dataloading\",{dataType:\"style\"})),this._request=t.browser.frame((function(){n._request=null,n._load(e,!1!==r.validate)}))},r.prototype.loadEmpty=function(){this.fire(new t.Event(\"dataloading\",{dataType:\"style\"})),this._load(Ve,!1)},r.prototype._load=function(e,r){if(!r||!Ne(this,t.validateStyle(e))){for(var n in this._loaded=!0,this.stylesheet=e,e.sources)this.addSource(n,e.sources[n],{validate:!1});e.sprite?this._loadSprite(e.sprite):this.imageManager.setLoaded(!0),this.glyphManager.setURL(e.glyphs);var i=jt(this.stylesheet.layers);this._order=i.map((function(t){return t.id})),this._layers={},this._serializedLayers={};for(var a=0,o=i;a<o.length;a+=1){var s=o[a];(s=t.createStyleLayer(s)).setEventedParent(this,{layer:{id:s.id}}),this._layers[s.id]=s,this._serializedLayers[s.id]=s.serialize()}this.dispatcher.broadcast(\"setLayers\",this._serializeLayers(this._order)),this.light=new w(this.stylesheet.light),this.fire(new t.Event(\"data\",{dataType:\"style\"})),this.fire(new t.Event(\"style.load\"))}},r.prototype._loadSprite=function(e){var r=this;this._spriteRequest=function(e,r,n){var i,a,o,s=t.browser.devicePixelRatio>1?\"@2x\":\"\",l=t.getJSON(r.transformRequest(r.normalizeSpriteURL(e,s,\".json\"),t.ResourceType.SpriteJSON),(function(t,e){l=null,o||(o=t,i=e,u())})),c=t.getImage(r.transformRequest(r.normalizeSpriteURL(e,s,\".png\"),t.ResourceType.SpriteImage),(function(t,e){c=null,o||(o=t,a=e,u())}));function u(){if(o)n(o);else if(i&&a){var e=t.browser.getImageData(a),r={};for(var s in i){var l=i[s],c=l.width,u=l.height,f=l.x,h=l.y,p=l.sdf,d=l.pixelRatio,g=l.stretchX,m=l.stretchY,v=l.content,y=new t.RGBAImage({width:c,height:u});t.RGBAImage.copy(e,y,{x:f,y:h},{x:0,y:0},{width:c,height:u}),r[s]={data:y,pixelRatio:d,sdf:p,stretchX:g,stretchY:m,content:v}}n(null,r)}}return{cancel:function(){l&&(l.cancel(),l=null),c&&(c.cancel(),c=null)}}}(e,this.map._requestManager,(function(e,n){if(r._spriteRequest=null,e)r.fire(new t.ErrorEvent(e));else if(n)for(var i in n)r.imageManager.addImage(i,n[i]);r.imageManager.setLoaded(!0),r._availableImages=r.imageManager.listImages(),r.dispatcher.broadcast(\"setImages\",r._availableImages),r.fire(new t.Event(\"data\",{dataType:\"style\"}))}))},r.prototype._validateLayer=function(e){var r=this.sourceCaches[e.source];if(r){var n=e.sourceLayer;if(n){var i=r.getSource();(\"geojson\"===i.type||i.vectorLayerIds&&-1===i.vectorLayerIds.indexOf(n))&&this.fire(new t.ErrorEvent(new Error('Source layer \"'+n+'\" does not exist on source \"'+i.id+'\" as specified by style layer \"'+e.id+'\"')))}}},r.prototype.loaded=function(){if(!this._loaded)return!1;if(Object.keys(this._updatedSources).length)return!1;for(var t in this.sourceCaches)if(!this.sourceCaches[t].loaded())return!1;return!!this.imageManager.isLoaded()},r.prototype._serializeLayers=function(t){for(var e=[],r=0,n=t;r<n.length;r+=1){var i=this._layers[n[r]];\"custom\"!==i.type&&e.push(i.serialize())}return e},r.prototype.hasTransitions=function(){if(this.light&&this.light.hasTransition())return!0;for(var t in this.sourceCaches)if(this.sourceCaches[t].hasTransition())return!0;for(var e in this._layers)if(this._layers[e].hasTransition())return!0;return!1},r.prototype._checkLoaded=function(){if(!this._loaded)throw new Error(\"Style is not done loading\")},r.prototype.update=function(e){if(this._loaded){var r=this._changed;if(this._changed){var n=Object.keys(this._updatedLayers),i=Object.keys(this._removedLayers);for(var a in(n.length||i.length)&&this._updateWorkerLayers(n,i),this._updatedSources){var o=this._updatedSources[a];\"reload\"===o?this._reloadSource(a):\"clear\"===o&&this._clearSource(a)}for(var s in this._updateTilesForChangedImages(),this._updatedPaintProps)this._layers[s].updateTransitions(e);this.light.updateTransitions(e),this._resetUpdates()}for(var l in this.sourceCaches)this.sourceCaches[l].used=!1;for(var c=0,u=this._order;c<u.length;c+=1){var f=this._layers[u[c]];f.recalculate(e,this._availableImages),!f.isHidden(e.zoom)&&f.source&&(this.sourceCaches[f.source].used=!0)}this.light.recalculate(e),this.z=e.zoom,r&&this.fire(new t.Event(\"data\",{dataType:\"style\"}))}},r.prototype._updateTilesForChangedImages=function(){var t=Object.keys(this._changedImages);if(t.length){for(var e in this.sourceCaches)this.sourceCaches[e].reloadTilesForDependencies([\"icons\",\"patterns\"],t);this._changedImages={}}},r.prototype._updateWorkerLayers=function(t,e){this.dispatcher.broadcast(\"updateLayers\",{layers:this._serializeLayers(t),removedIds:e})},r.prototype._resetUpdates=function(){this._changed=!1,this._updatedLayers={},this._removedLayers={},this._updatedSources={},this._updatedPaintProps={},this._changedImages={}},r.prototype.setState=function(e){var r=this;if(this._checkLoaded(),Ne(this,t.validateStyle(e)))return!1;(e=t.clone$1(e)).layers=jt(e.layers);var n=function(e,r){if(!e)return[{command:Ut.setStyle,args:[r]}];var n=[];try{if(!t.deepEqual(e.version,r.version))return[{command:Ut.setStyle,args:[r]}];t.deepEqual(e.center,r.center)||n.push({command:Ut.setCenter,args:[r.center]}),t.deepEqual(e.zoom,r.zoom)||n.push({command:Ut.setZoom,args:[r.zoom]}),t.deepEqual(e.bearing,r.bearing)||n.push({command:Ut.setBearing,args:[r.bearing]}),t.deepEqual(e.pitch,r.pitch)||n.push({command:Ut.setPitch,args:[r.pitch]}),t.deepEqual(e.sprite,r.sprite)||n.push({command:Ut.setSprite,args:[r.sprite]}),t.deepEqual(e.glyphs,r.glyphs)||n.push({command:Ut.setGlyphs,args:[r.glyphs]}),t.deepEqual(e.transition,r.transition)||n.push({command:Ut.setTransition,args:[r.transition]}),t.deepEqual(e.light,r.light)||n.push({command:Ut.setLight,args:[r.light]});var i={},a=[];!function(e,r,n,i){var a;for(a in r=r||{},e=e||{})e.hasOwnProperty(a)&&(r.hasOwnProperty(a)||qt(a,n,i));for(a in r)r.hasOwnProperty(a)&&(e.hasOwnProperty(a)?t.deepEqual(e[a],r[a])||(\"geojson\"===e[a].type&&\"geojson\"===r[a].type&&Gt(e,r,a)?n.push({command:Ut.setGeoJSONSourceData,args:[a,r[a].data]}):Ht(a,r,n,i)):Vt(a,r,n))}(e.sources,r.sources,a,i);var o=[];e.layers&&e.layers.forEach((function(t){i[t.source]?n.push({command:Ut.removeLayer,args:[t.id]}):o.push(t)})),n=n.concat(a),function(e,r,n){r=r||[];var i,a,o,s,l,c,u,f=(e=e||[]).map(Wt),h=r.map(Wt),p=e.reduce(Xt,{}),d=r.reduce(Xt,{}),g=f.slice(),m=Object.create(null);for(i=0,a=0;i<f.length;i++)d.hasOwnProperty(o=f[i])?a++:(n.push({command:Ut.removeLayer,args:[o]}),g.splice(g.indexOf(o,a),1));for(i=0,a=0;i<h.length;i++)g[g.length-1-i]!==(o=h[h.length-1-i])&&(p.hasOwnProperty(o)?(n.push({command:Ut.removeLayer,args:[o]}),g.splice(g.lastIndexOf(o,g.length-a),1)):a++,n.push({command:Ut.addLayer,args:[d[o],c=g[g.length-i]]}),g.splice(g.length-i,0,o),m[o]=!0);for(i=0;i<h.length;i++)if(s=p[o=h[i]],l=d[o],!m[o]&&!t.deepEqual(s,l))if(t.deepEqual(s.source,l.source)&&t.deepEqual(s[\"source-layer\"],l[\"source-layer\"])&&t.deepEqual(s.type,l.type)){for(u in Yt(s.layout,l.layout,n,o,null,Ut.setLayoutProperty),Yt(s.paint,l.paint,n,o,null,Ut.setPaintProperty),t.deepEqual(s.filter,l.filter)||n.push({command:Ut.setFilter,args:[o,l.filter]}),t.deepEqual(s.minzoom,l.minzoom)&&t.deepEqual(s.maxzoom,l.maxzoom)||n.push({command:Ut.setLayerZoomRange,args:[o,l.minzoom,l.maxzoom]}),s)s.hasOwnProperty(u)&&\"layout\"!==u&&\"paint\"!==u&&\"filter\"!==u&&\"metadata\"!==u&&\"minzoom\"!==u&&\"maxzoom\"!==u&&(0===u.indexOf(\"paint.\")?Yt(s[u],l[u],n,o,u.slice(6),Ut.setPaintProperty):t.deepEqual(s[u],l[u])||n.push({command:Ut.setLayerProperty,args:[o,u,l[u]]}));for(u in l)l.hasOwnProperty(u)&&!s.hasOwnProperty(u)&&\"layout\"!==u&&\"paint\"!==u&&\"filter\"!==u&&\"metadata\"!==u&&\"minzoom\"!==u&&\"maxzoom\"!==u&&(0===u.indexOf(\"paint.\")?Yt(s[u],l[u],n,o,u.slice(6),Ut.setPaintProperty):t.deepEqual(s[u],l[u])||n.push({command:Ut.setLayerProperty,args:[o,u,l[u]]}))}else n.push({command:Ut.removeLayer,args:[o]}),c=g[g.lastIndexOf(o)+1],n.push({command:Ut.addLayer,args:[l,c]})}(o,r.layers,n)}catch(t){console.warn(\"Unable to compute style diff:\",t),n=[{command:Ut.setStyle,args:[r]}]}return n}(this.serialize(),e).filter((function(t){return!(t.command in Ue)}));if(0===n.length)return!1;var i=n.filter((function(t){return!(t.command in je)}));if(i.length>0)throw new Error(\"Unimplemented: \"+i.map((function(t){return t.command})).join(\", \")+\".\");return n.forEach((function(t){\"setTransition\"!==t.command&&r[t.command].apply(r,t.args)})),this.stylesheet=e,!0},r.prototype.addImage=function(e,r){if(this.getImage(e))return this.fire(new t.ErrorEvent(new Error(\"An image with this name already exists.\")));this.imageManager.addImage(e,r),this._availableImages=this.imageManager.listImages(),this._changedImages[e]=!0,this._changed=!0,this.fire(new t.Event(\"data\",{dataType:\"style\"}))},r.prototype.updateImage=function(t,e){this.imageManager.updateImage(t,e)},r.prototype.getImage=function(t){return this.imageManager.getImage(t)},r.prototype.removeImage=function(e){if(!this.getImage(e))return this.fire(new t.ErrorEvent(new Error(\"No image with this name exists.\")));this.imageManager.removeImage(e),this._availableImages=this.imageManager.listImages(),this._changedImages[e]=!0,this._changed=!0,this.fire(new t.Event(\"data\",{dataType:\"style\"}))},r.prototype.listImages=function(){return this._checkLoaded(),this.imageManager.listImages()},r.prototype.addSource=function(e,r,n){var i=this;if(void 0===n&&(n={}),this._checkLoaded(),void 0!==this.sourceCaches[e])throw new Error(\"There is already a source with this ID\");if(!r.type)throw new Error(\"The type property must be defined, but the only the following properties were given: \"+Object.keys(r).join(\", \")+\".\");if(!([\"vector\",\"raster\",\"geojson\",\"video\",\"image\"].indexOf(r.type)>=0&&this._validate(t.validateStyle.source,\"sources.\"+e,r,null,n))){this.map&&this.map._collectResourceTiming&&(r.collectResourceTiming=!0);var a=this.sourceCaches[e]=new Lt(e,r,this.dispatcher);a.style=this,a.setEventedParent(this,(function(){return{isSourceLoaded:i.loaded(),source:a.serialize(),sourceId:e}})),a.onAdd(this.map),this._changed=!0}},r.prototype.removeSource=function(e){if(this._checkLoaded(),void 0===this.sourceCaches[e])throw new Error(\"There is no source with this ID\");for(var r in this._layers)if(this._layers[r].source===e)return this.fire(new t.ErrorEvent(new Error('Source \"'+e+'\" cannot be removed while layer \"'+r+'\" is using it.')));var n=this.sourceCaches[e];delete this.sourceCaches[e],delete this._updatedSources[e],n.fire(new t.Event(\"data\",{sourceDataType:\"metadata\",dataType:\"source\",sourceId:e})),n.setEventedParent(null),n.clearTiles(),n.onRemove&&n.onRemove(this.map),this._changed=!0},r.prototype.setGeoJSONSourceData=function(t,e){this._checkLoaded(),this.sourceCaches[t].getSource().setData(e),this._changed=!0},r.prototype.getSource=function(t){return this.sourceCaches[t]&&this.sourceCaches[t].getSource()},r.prototype.addLayer=function(e,r,n){void 0===n&&(n={}),this._checkLoaded();var i=e.id;if(this.getLayer(i))this.fire(new t.ErrorEvent(new Error('Layer with id \"'+i+'\" already exists on this map')));else{var a;if(\"custom\"===e.type){if(Ne(this,t.validateCustomStyleLayer(e)))return;a=t.createStyleLayer(e)}else{if(\"object\"==typeof e.source&&(this.addSource(i,e.source),e=t.clone$1(e),e=t.extend(e,{source:i})),this._validate(t.validateStyle.layer,\"layers.\"+i,e,{arrayIndex:-1},n))return;a=t.createStyleLayer(e),this._validateLayer(a),a.setEventedParent(this,{layer:{id:i}}),this._serializedLayers[a.id]=a.serialize()}var o=r?this._order.indexOf(r):this._order.length;if(r&&-1===o)this.fire(new t.ErrorEvent(new Error('Layer with id \"'+r+'\" does not exist on this map.')));else{if(this._order.splice(o,0,i),this._layerOrderChanged=!0,this._layers[i]=a,this._removedLayers[i]&&a.source&&\"custom\"!==a.type){var s=this._removedLayers[i];delete this._removedLayers[i],s.type!==a.type?this._updatedSources[a.source]=\"clear\":(this._updatedSources[a.source]=\"reload\",this.sourceCaches[a.source].pause())}this._updateLayer(a),a.onAdd&&a.onAdd(this.map)}}},r.prototype.moveLayer=function(e,r){if(this._checkLoaded(),this._changed=!0,this._layers[e]){if(e!==r){var n=this._order.indexOf(e);this._order.splice(n,1);var i=r?this._order.indexOf(r):this._order.length;r&&-1===i?this.fire(new t.ErrorEvent(new Error('Layer with id \"'+r+'\" does not exist on this map.'))):(this._order.splice(i,0,e),this._layerOrderChanged=!0)}}else this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be moved.\")))},r.prototype.removeLayer=function(e){this._checkLoaded();var r=this._layers[e];if(r){r.setEventedParent(null);var n=this._order.indexOf(e);this._order.splice(n,1),this._layerOrderChanged=!0,this._changed=!0,this._removedLayers[e]=r,delete this._layers[e],delete this._serializedLayers[e],delete this._updatedLayers[e],delete this._updatedPaintProps[e],r.onRemove&&r.onRemove(this.map)}else this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be removed.\")))},r.prototype.getLayer=function(t){return this._layers[t]},r.prototype.hasLayer=function(t){return t in this._layers},r.prototype.setLayerZoomRange=function(e,r,n){this._checkLoaded();var i=this.getLayer(e);i?i.minzoom===r&&i.maxzoom===n||(null!=r&&(i.minzoom=r),null!=n&&(i.maxzoom=n),this._updateLayer(i)):this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot have zoom extent.\")))},r.prototype.setFilter=function(e,r,n){void 0===n&&(n={}),this._checkLoaded();var i=this.getLayer(e);if(i){if(!t.deepEqual(i.filter,r))return null==r?(i.filter=void 0,void this._updateLayer(i)):void(this._validate(t.validateStyle.filter,\"layers.\"+i.id+\".filter\",r,null,n)||(i.filter=t.clone$1(r),this._updateLayer(i)))}else this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be filtered.\")))},r.prototype.getFilter=function(e){return t.clone$1(this.getLayer(e).filter)},r.prototype.setLayoutProperty=function(e,r,n,i){void 0===i&&(i={}),this._checkLoaded();var a=this.getLayer(e);a?t.deepEqual(a.getLayoutProperty(r),n)||(a.setLayoutProperty(r,n,i),this._updateLayer(a)):this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be styled.\")))},r.prototype.getLayoutProperty=function(e,r){var n=this.getLayer(e);if(n)return n.getLayoutProperty(r);this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style.\")))},r.prototype.setPaintProperty=function(e,r,n,i){void 0===i&&(i={}),this._checkLoaded();var a=this.getLayer(e);a?t.deepEqual(a.getPaintProperty(r),n)||(a.setPaintProperty(r,n,i)&&this._updateLayer(a),this._changed=!0,this._updatedPaintProps[e]=!0):this.fire(new t.ErrorEvent(new Error(\"The layer '\"+e+\"' does not exist in the map's style and cannot be styled.\")))},r.prototype.getPaintProperty=function(t,e){return this.getLayer(t).getPaintProperty(e)},r.prototype.setFeatureState=function(e,r){this._checkLoaded();var n=e.source,i=e.sourceLayer,a=this.sourceCaches[n];if(void 0!==a){var o=a.getSource().type;\"geojson\"===o&&i?this.fire(new t.ErrorEvent(new Error(\"GeoJSON sources cannot have a sourceLayer parameter.\"))):\"vector\"!==o||i?(void 0===e.id&&this.fire(new t.ErrorEvent(new Error(\"The feature id parameter must be provided.\"))),a.setFeatureState(i,e.id,r)):this.fire(new t.ErrorEvent(new Error(\"The sourceLayer parameter must be provided for vector source types.\")))}else this.fire(new t.ErrorEvent(new Error(\"The source '\"+n+\"' does not exist in the map's style.\")))},r.prototype.removeFeatureState=function(e,r){this._checkLoaded();var n=e.source,i=this.sourceCaches[n];if(void 0!==i){var a=i.getSource().type,o=\"vector\"===a?e.sourceLayer:void 0;\"vector\"!==a||o?r&&\"string\"!=typeof e.id&&\"number\"!=typeof e.id?this.fire(new t.ErrorEvent(new Error(\"A feature id is requred to remove its specific state property.\"))):i.removeFeatureState(o,e.id,r):this.fire(new t.ErrorEvent(new Error(\"The sourceLayer parameter must be provided for vector source types.\")))}else this.fire(new t.ErrorEvent(new Error(\"The source '\"+n+\"' does not exist in the map's style.\")))},r.prototype.getFeatureState=function(e){this._checkLoaded();var r=e.source,n=e.sourceLayer,i=this.sourceCaches[r];if(void 0!==i){if(\"vector\"!==i.getSource().type||n)return void 0===e.id&&this.fire(new t.ErrorEvent(new Error(\"The feature id parameter must be provided.\"))),i.getFeatureState(n,e.id);this.fire(new t.ErrorEvent(new Error(\"The sourceLayer parameter must be provided for vector source types.\")))}else this.fire(new t.ErrorEvent(new Error(\"The source '\"+r+\"' does not exist in the map's style.\")))},r.prototype.getTransition=function(){return t.extend({duration:300,delay:0},this.stylesheet&&this.stylesheet.transition)},r.prototype.serialize=function(){return t.filterObject({version:this.stylesheet.version,name:this.stylesheet.name,metadata:this.stylesheet.metadata,light:this.stylesheet.light,center:this.stylesheet.center,zoom:this.stylesheet.zoom,bearing:this.stylesheet.bearing,pitch:this.stylesheet.pitch,sprite:this.stylesheet.sprite,glyphs:this.stylesheet.glyphs,transition:this.stylesheet.transition,sources:t.mapObject(this.sourceCaches,(function(t){return t.serialize()})),layers:this._serializeLayers(this._order)},(function(t){return void 0!==t}))},r.prototype._updateLayer=function(t){this._updatedLayers[t.id]=!0,t.source&&!this._updatedSources[t.source]&&\"raster\"!==this.sourceCaches[t.source].getSource().type&&(this._updatedSources[t.source]=\"reload\",this.sourceCaches[t.source].pause()),this._changed=!0},r.prototype._flattenAndSortRenderedFeatures=function(t){for(var e=this,r=function(t){return\"fill-extrusion\"===e._layers[t].type},n={},i=[],a=this._order.length-1;a>=0;a--){var o=this._order[a];if(r(o)){n[o]=a;for(var s=0,l=t;s<l.length;s+=1){var c=l[s][o];if(c)for(var u=0,f=c;u<f.length;u+=1)i.push(f[u])}}}i.sort((function(t,e){return e.intersectionZ-t.intersectionZ}));for(var h=[],p=this._order.length-1;p>=0;p--){var d=this._order[p];if(r(d))for(var g=i.length-1;g>=0;g--){var m=i[g].feature;if(n[m.layer.id]<p)break;h.push(m),i.pop()}else for(var v=0,y=t;v<y.length;v+=1){var x=y[v][d];if(x)for(var b=0,_=x;b<_.length;b+=1)h.push(_[b].feature)}}return h},r.prototype.queryRenderedFeatures=function(e,r,n){r&&r.filter&&this._validate(t.validateStyle.filter,\"queryRenderedFeatures.filter\",r.filter,null,r);var i={};if(r&&r.layers){if(!Array.isArray(r.layers))return this.fire(new t.ErrorEvent(new Error(\"parameters.layers must be an Array.\"))),[];for(var a=0,o=r.layers;a<o.length;a+=1){var s=o[a],l=this._layers[s];if(!l)return this.fire(new t.ErrorEvent(new Error(\"The layer '\"+s+\"' does not exist in the map's style and cannot be queried for features.\"))),[];i[l.source]=!0}}var c=[];for(var u in r.availableImages=this._availableImages,this.sourceCaches)r.layers&&!i[u]||c.push(F(this.sourceCaches[u],this._layers,this._serializedLayers,e,r,n));return this.placement&&c.push(function(t,e,r,n,i,a,o){for(var s={},l=a.queryRenderedSymbols(n),c=[],u=0,f=Object.keys(l).map(Number);u<f.length;u+=1)c.push(o[f[u]]);c.sort(B);for(var h=function(){var r=d[p],n=r.featureIndex.lookupSymbolFeatures(l[r.bucketInstanceId],e,r.bucketIndex,r.sourceLayerIndex,i.filter,i.layers,i.availableImages,t);for(var a in n){var o=s[a]=s[a]||[],c=n[a];c.sort((function(t,e){var n=r.featureSortOrder;if(n){var i=n.indexOf(t.featureIndex);return n.indexOf(e.featureIndex)-i}return e.featureIndex-t.featureIndex}));for(var u=0,f=c;u<f.length;u+=1)o.push(f[u])}},p=0,d=c;p<d.length;p+=1)h();var g=function(e){s[e].forEach((function(n){var i=n.feature,a=r[t[e].source].getFeatureState(i.layer[\"source-layer\"],i.id);i.source=i.layer.source,i.layer[\"source-layer\"]&&(i.sourceLayer=i.layer[\"source-layer\"]),i.state=a}))};for(var m in s)g(m);return s}(this._layers,this._serializedLayers,this.sourceCaches,e,r,this.placement.collisionIndex,this.placement.retainedQueryData)),this._flattenAndSortRenderedFeatures(c)},r.prototype.querySourceFeatures=function(e,r){r&&r.filter&&this._validate(t.validateStyle.filter,\"querySourceFeatures.filter\",r.filter,null,r);var n=this.sourceCaches[e];return n?function(t,e){for(var r=t.getRenderableIds().map((function(e){return t.getTileByID(e)})),n=[],i={},a=0;a<r.length;a++){var o=r[a],s=o.tileID.canonical.key;i[s]||(i[s]=!0,o.querySourceFeatures(n,e))}return n}(n,r):[]},r.prototype.addSourceType=function(t,e,n){return r.getSourceType(t)?n(new Error('A source type called \"'+t+'\" already exists.')):(r.setSourceType(t,e),e.workerSourceURL?void this.dispatcher.broadcast(\"loadWorkerSource\",{name:t,url:e.workerSourceURL},n):n(null,null))},r.prototype.getLight=function(){return this.light.getLight()},r.prototype.setLight=function(e,r){void 0===r&&(r={}),this._checkLoaded();var n=this.light.getLight(),i=!1;for(var a in e)if(!t.deepEqual(e[a],n[a])){i=!0;break}if(i){var o={now:t.browser.now(),transition:t.extend({duration:300,delay:0},this.stylesheet.transition)};this.light.setLight(e,r),this.light.updateTransitions(o)}},r.prototype._validate=function(e,r,n,i,a){return void 0===a&&(a={}),(!a||!1!==a.validate)&&Ne(this,e.call(t.validateStyle,t.extend({key:r,style:this.serialize(),value:n,styleSpec:t.styleSpec},i)))},r.prototype._remove=function(){for(var e in this._request&&(this._request.cancel(),this._request=null),this._spriteRequest&&(this._spriteRequest.cancel(),this._spriteRequest=null),t.evented.off(\"pluginStateChange\",this._rtlTextPluginCallback),this._layers)this._layers[e].setEventedParent(null);for(var r in this.sourceCaches)this.sourceCaches[r].clearTiles(),this.sourceCaches[r].setEventedParent(null);this.imageManager.setEventedParent(null),this.setEventedParent(null),this.dispatcher.remove()},r.prototype._clearSource=function(t){this.sourceCaches[t].clearTiles()},r.prototype._reloadSource=function(t){this.sourceCaches[t].resume(),this.sourceCaches[t].reload()},r.prototype._updateSources=function(t){for(var e in this.sourceCaches)this.sourceCaches[e].update(t)},r.prototype._generateCollisionBoxes=function(){for(var t in this.sourceCaches)this._reloadSource(t)},r.prototype._updatePlacement=function(e,r,n,i,a){void 0===a&&(a=!1);for(var o=!1,s=!1,l={},c=0,u=this._order;c<u.length;c+=1){var f=this._layers[u[c]];if(\"symbol\"===f.type){if(!l[f.source]){var h=this.sourceCaches[f.source];l[f.source]=h.getRenderableIds(!0).map((function(t){return h.getTileByID(t)})).sort((function(t,e){return e.tileID.overscaledZ-t.tileID.overscaledZ||(t.tileID.isLessThan(e.tileID)?-1:1)}))}var p=this.crossTileSymbolIndex.addLayer(f,l[f.source],e.center.lng);o=o||p}}if(this.crossTileSymbolIndex.pruneUnusedLayers(this._order),((a=a||this._layerOrderChanged||0===n)||!this.pauseablePlacement||this.pauseablePlacement.isDone()&&!this.placement.stillRecent(t.browser.now(),e.zoom))&&(this.pauseablePlacement=new ze(e,this._order,a,r,n,i,this.placement),this._layerOrderChanged=!1),this.pauseablePlacement.isDone()?this.placement.setStale():(this.pauseablePlacement.continuePlacement(this._order,this._layers,l),this.pauseablePlacement.isDone()&&(this.placement=this.pauseablePlacement.commit(t.browser.now()),s=!0),o&&this.pauseablePlacement.placement.setStale()),s||o)for(var d=0,g=this._order;d<g.length;d+=1){var m=this._layers[g[d]];\"symbol\"===m.type&&this.placement.updateLayerOpacities(m,l[m.source])}return!this.pauseablePlacement.isDone()||this.placement.hasTransitions(t.browser.now())},r.prototype._releaseSymbolFadeTiles=function(){for(var t in this.sourceCaches)this.sourceCaches[t].releaseSymbolFadeTiles()},r.prototype.getImages=function(t,e,r){this.imageManager.getImages(e.icons,r),this._updateTilesForChangedImages();var n=this.sourceCaches[e.source];n&&n.setDependencies(e.tileID.key,e.type,e.icons)},r.prototype.getGlyphs=function(t,e,r){this.glyphManager.getGlyphs(e.stacks,r)},r.prototype.getResource=function(e,r,n){return t.makeRequest(r,n)},r}(t.Evented);qe.getSourceType=function(t){return D[t]},qe.setSourceType=function(t,e){D[t]=e},qe.registerForPluginStateChange=t.registerForPluginStateChange;var He=t.createLayout([{name:\"a_pos\",type:\"Int16\",components:2}]),Ge=vr(\"#ifdef GL_ES\\nprecision mediump float;\\n#else\\n#if !defined(lowp)\\n#define lowp\\n#endif\\n#if !defined(mediump)\\n#define mediump\\n#endif\\n#if !defined(highp)\\n#define highp\\n#endif\\n#endif\",\"#ifdef GL_ES\\nprecision highp float;\\n#else\\n#if !defined(lowp)\\n#define lowp\\n#endif\\n#if !defined(mediump)\\n#define mediump\\n#endif\\n#if !defined(highp)\\n#define highp\\n#endif\\n#endif\\nvec2 unpack_float(const float packedValue) {int packedIntValue=int(packedValue);int v0=packedIntValue/256;return vec2(v0,packedIntValue-v0*256);}vec2 unpack_opacity(const float packedOpacity) {int intOpacity=int(packedOpacity)/2;return vec2(float(intOpacity)/127.0,mod(packedOpacity,2.0));}vec4 decode_color(const vec2 encodedColor) {return vec4(unpack_float(encodedColor[0])/255.0,unpack_float(encodedColor[1])/255.0\\n);}float unpack_mix_vec2(const vec2 packedValue,const float t) {return mix(packedValue[0],packedValue[1],t);}vec4 unpack_mix_color(const vec4 packedColors,const float t) {vec4 minColor=decode_color(vec2(packedColors[0],packedColors[1]));vec4 maxColor=decode_color(vec2(packedColors[2],packedColors[3]));return mix(minColor,maxColor,t);}vec2 get_pattern_pos(const vec2 pixel_coord_upper,const vec2 pixel_coord_lower,const vec2 pattern_size,const float tile_units_to_pixels,const vec2 pos) {vec2 offset=mod(mod(mod(pixel_coord_upper,pattern_size)*256.0,pattern_size)*256.0+pixel_coord_lower,pattern_size);return (tile_units_to_pixels*pos+offset)/pattern_size;}\"),Ye=vr(\"uniform vec4 u_color;uniform float u_opacity;void main() {gl_FragColor=u_color*u_opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);}\"),We=vr(\"uniform vec2 u_pattern_tl_a;uniform vec2 u_pattern_br_a;uniform vec2 u_pattern_tl_b;uniform vec2 u_pattern_br_b;uniform vec2 u_texsize;uniform float u_mix;uniform float u_opacity;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;void main() {vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(u_pattern_tl_a/u_texsize,u_pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(u_pattern_tl_b/u_texsize,u_pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);gl_FragColor=mix(color1,color2,u_mix)*u_opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_pattern_size_a;uniform vec2 u_pattern_size_b;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_scale_a;uniform float u_scale_b;uniform float u_tile_units_to_pixels;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,u_scale_a*u_pattern_size_a,u_tile_units_to_pixels,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,u_scale_b*u_pattern_size_b,u_tile_units_to_pixels,a_pos);}\"),Xe=vr(\"varying vec3 v_data;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define mediump float radius\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define highp vec4 stroke_color\\n#pragma mapbox: define mediump float stroke_width\\n#pragma mapbox: define lowp float stroke_opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize mediump float radius\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize highp vec4 stroke_color\\n#pragma mapbox: initialize mediump float stroke_width\\n#pragma mapbox: initialize lowp float stroke_opacity\\nvec2 extrude=v_data.xy;float extrude_length=length(extrude);lowp float antialiasblur=v_data.z;float antialiased_blur=-max(blur,antialiasblur);float opacity_t=smoothstep(0.0,antialiased_blur,extrude_length-1.0);float color_t=stroke_width < 0.01 ? 0.0 : smoothstep(antialiased_blur,0.0,extrude_length-radius/(radius+stroke_width));gl_FragColor=opacity_t*mix(color*opacity,stroke_color*stroke_opacity,color_t);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform bool u_scale_with_map;uniform bool u_pitch_with_map;uniform vec2 u_extrude_scale;uniform lowp float u_device_pixel_ratio;uniform highp float u_camera_to_center_distance;attribute vec2 a_pos;varying vec3 v_data;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define mediump float radius\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define highp vec4 stroke_color\\n#pragma mapbox: define mediump float stroke_width\\n#pragma mapbox: define lowp float stroke_opacity\\nvoid main(void) {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize mediump float radius\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize highp vec4 stroke_color\\n#pragma mapbox: initialize mediump float stroke_width\\n#pragma mapbox: initialize lowp float stroke_opacity\\nvec2 extrude=vec2(mod(a_pos,2.0)*2.0-1.0);vec2 circle_center=floor(a_pos*0.5);if (u_pitch_with_map) {vec2 corner_position=circle_center;if (u_scale_with_map) {corner_position+=extrude*(radius+stroke_width)*u_extrude_scale;} else {vec4 projected_center=u_matrix*vec4(circle_center,0,1);corner_position+=extrude*(radius+stroke_width)*u_extrude_scale*(projected_center.w/u_camera_to_center_distance);}gl_Position=u_matrix*vec4(corner_position,0,1);} else {gl_Position=u_matrix*vec4(circle_center,0,1);if (u_scale_with_map) {gl_Position.xy+=extrude*(radius+stroke_width)*u_extrude_scale*u_camera_to_center_distance;} else {gl_Position.xy+=extrude*(radius+stroke_width)*u_extrude_scale*gl_Position.w;}}lowp float antialiasblur=1.0/u_device_pixel_ratio/(radius+stroke_width);v_data=vec3(extrude.x,extrude.y,antialiasblur);}\"),Ze=vr(\"void main() {gl_FragColor=vec4(1.0);}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);}\"),Je=vr(\"uniform highp float u_intensity;varying vec2 v_extrude;\\n#pragma mapbox: define highp float weight\\n#define GAUSS_COEF 0.3989422804014327\\nvoid main() {\\n#pragma mapbox: initialize highp float weight\\nfloat d=-0.5*3.0*3.0*dot(v_extrude,v_extrude);float val=weight*u_intensity*GAUSS_COEF*exp(d);gl_FragColor=vec4(val,1.0,1.0,1.0);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform float u_extrude_scale;uniform float u_opacity;uniform float u_intensity;attribute vec2 a_pos;varying vec2 v_extrude;\\n#pragma mapbox: define highp float weight\\n#pragma mapbox: define mediump float radius\\nconst highp float ZERO=1.0/255.0/16.0;\\n#define GAUSS_COEF 0.3989422804014327\\nvoid main(void) {\\n#pragma mapbox: initialize highp float weight\\n#pragma mapbox: initialize mediump float radius\\nvec2 unscaled_extrude=vec2(mod(a_pos,2.0)*2.0-1.0);float S=sqrt(-2.0*log(ZERO/weight/u_intensity/GAUSS_COEF))/3.0;v_extrude=S*unscaled_extrude;vec2 extrude=v_extrude*radius*u_extrude_scale;vec4 pos=vec4(floor(a_pos*0.5)+extrude,0,1);gl_Position=u_matrix*pos;}\"),Ke=vr(\"uniform sampler2D u_image;uniform sampler2D u_color_ramp;uniform float u_opacity;varying vec2 v_pos;void main() {float t=texture2D(u_image,v_pos).r;vec4 color=texture2D(u_color_ramp,vec2(t,0.5));gl_FragColor=color*u_opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(0.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_world;attribute vec2 a_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos*u_world,0,1);v_pos.x=a_pos.x;v_pos.y=1.0-a_pos.y;}\"),Qe=vr(\"varying float v_placed;varying float v_notUsed;void main() {float alpha=0.5;gl_FragColor=vec4(1.0,0.0,0.0,1.0)*alpha;if (v_placed > 0.5) {gl_FragColor=vec4(0.0,0.0,1.0,0.5)*alpha;}if (v_notUsed > 0.5) {gl_FragColor*=.1;}}\",\"attribute vec2 a_pos;attribute vec2 a_anchor_pos;attribute vec2 a_extrude;attribute vec2 a_placed;attribute vec2 a_shift;uniform mat4 u_matrix;uniform vec2 u_extrude_scale;uniform float u_camera_to_center_distance;varying float v_placed;varying float v_notUsed;void main() {vec4 projectedPoint=u_matrix*vec4(a_anchor_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float collision_perspective_ratio=clamp(0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,4.0);gl_Position=u_matrix*vec4(a_pos,0.0,1.0);gl_Position.xy+=(a_extrude+a_shift)*u_extrude_scale*gl_Position.w*collision_perspective_ratio;v_placed=a_placed.x;v_notUsed=a_placed.y;}\"),$e=vr(\"varying float v_radius;varying vec2 v_extrude;varying float v_perspective_ratio;varying float v_collision;void main() {float alpha=0.5*min(v_perspective_ratio,1.0);float stroke_radius=0.9*max(v_perspective_ratio,1.0);float distance_to_center=length(v_extrude);float distance_to_edge=abs(distance_to_center-v_radius);float opacity_t=smoothstep(-stroke_radius,0.0,-distance_to_edge);vec4 color=mix(vec4(0.0,0.0,1.0,0.5),vec4(1.0,0.0,0.0,1.0),v_collision);gl_FragColor=color*alpha*opacity_t;}\",\"attribute vec2 a_pos;attribute float a_radius;attribute vec2 a_flags;uniform mat4 u_matrix;uniform mat4 u_inv_matrix;uniform vec2 u_viewport_size;uniform float u_camera_to_center_distance;varying float v_radius;varying vec2 v_extrude;varying float v_perspective_ratio;varying float v_collision;vec3 toTilePosition(vec2 screenPos) {vec4 rayStart=u_inv_matrix*vec4(screenPos,-1.0,1.0);vec4 rayEnd  =u_inv_matrix*vec4(screenPos, 1.0,1.0);rayStart.xyz/=rayStart.w;rayEnd.xyz  /=rayEnd.w;highp float t=(0.0-rayStart.z)/(rayEnd.z-rayStart.z);return mix(rayStart.xyz,rayEnd.xyz,t);}void main() {vec2 quadCenterPos=a_pos;float radius=a_radius;float collision=a_flags.x;float vertexIdx=a_flags.y;vec2 quadVertexOffset=vec2(mix(-1.0,1.0,float(vertexIdx >=2.0)),mix(-1.0,1.0,float(vertexIdx >=1.0 && vertexIdx <=2.0)));vec2 quadVertexExtent=quadVertexOffset*radius;vec3 tilePos=toTilePosition(quadCenterPos);vec4 clipPos=u_matrix*vec4(tilePos,1.0);highp float camera_to_anchor_distance=clipPos.w;highp float collision_perspective_ratio=clamp(0.5+0.5*(u_camera_to_center_distance/camera_to_anchor_distance),0.0,4.0);float padding_factor=1.2;v_radius=radius;v_extrude=quadVertexExtent*padding_factor;v_perspective_ratio=collision_perspective_ratio;v_collision=collision;gl_Position=vec4(clipPos.xyz/clipPos.w,1.0)+vec4(quadVertexExtent*padding_factor/u_viewport_size*2.0,0.0,0.0);}\"),tr=vr(\"uniform highp vec4 u_color;uniform sampler2D u_overlay;varying vec2 v_uv;void main() {vec4 overlay_color=texture2D(u_overlay,v_uv);gl_FragColor=mix(u_color,overlay_color,overlay_color.a);}\",\"attribute vec2 a_pos;varying vec2 v_uv;uniform mat4 u_matrix;uniform float u_overlay_scale;void main() {v_uv=a_pos/8192.0;gl_Position=u_matrix*vec4(a_pos*u_overlay_scale,0,1);}\"),er=vr(\"#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float opacity\\ngl_FragColor=color*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float opacity\\ngl_Position=u_matrix*vec4(a_pos,0,1);}\"),rr=vr(\"varying vec2 v_pos;\\n#pragma mapbox: define highp vec4 outline_color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 outline_color\\n#pragma mapbox: initialize lowp float opacity\\nfloat dist=length(v_pos-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);gl_FragColor=outline_color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"attribute vec2 a_pos;uniform mat4 u_matrix;uniform vec2 u_world;varying vec2 v_pos;\\n#pragma mapbox: define highp vec4 outline_color\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 outline_color\\n#pragma mapbox: initialize lowp float opacity\\ngl_Position=u_matrix*vec4(a_pos,0,1);v_pos=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;}\"),nr=vr(\"uniform vec2 u_texsize;uniform sampler2D u_image;uniform float u_fade;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec2 v_pos;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);float dist=length(v_pos-gl_FragCoord.xy);float alpha=1.0-smoothstep(0.0,1.0,dist);gl_FragColor=mix(color1,color2,u_fade)*alpha*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_world;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform vec3 u_scale;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec2 v_pos;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\n#pragma mapbox: define lowp float pixel_ratio_from\\n#pragma mapbox: define lowp float pixel_ratio_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\n#pragma mapbox: initialize lowp float pixel_ratio_from\\n#pragma mapbox: initialize lowp float pixel_ratio_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;gl_Position=u_matrix*vec4(a_pos,0,1);vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileRatio,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileRatio,a_pos);v_pos=(gl_Position.xy/gl_Position.w+1.0)/2.0*u_world;}\"),ir=vr(\"uniform vec2 u_texsize;uniform float u_fade;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);gl_FragColor=mix(color1,color2,u_fade)*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform vec3 u_scale;attribute vec2 a_pos;varying vec2 v_pos_a;varying vec2 v_pos_b;\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\n#pragma mapbox: define lowp float pixel_ratio_from\\n#pragma mapbox: define lowp float pixel_ratio_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\n#pragma mapbox: initialize lowp float pixel_ratio_from\\n#pragma mapbox: initialize lowp float pixel_ratio_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileZoomRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;gl_Position=u_matrix*vec4(a_pos,0,1);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileZoomRatio,a_pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileZoomRatio,a_pos);}\"),ar=vr(\"varying vec4 v_color;void main() {gl_FragColor=v_color;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;uniform float u_vertical_gradient;uniform lowp float u_opacity;attribute vec2 a_pos;attribute vec4 a_normal_ed;varying vec4 v_color;\\n#pragma mapbox: define highp float base\\n#pragma mapbox: define highp float height\\n#pragma mapbox: define highp vec4 color\\nvoid main() {\\n#pragma mapbox: initialize highp float base\\n#pragma mapbox: initialize highp float height\\n#pragma mapbox: initialize highp vec4 color\\nvec3 normal=a_normal_ed.xyz;base=max(0.0,base);height=max(0.0,height);float t=mod(normal.x,2.0);gl_Position=u_matrix*vec4(a_pos,t > 0.0 ? height : base,1);float colorvalue=color.r*0.2126+color.g*0.7152+color.b*0.0722;v_color=vec4(0.0,0.0,0.0,1.0);vec4 ambientlight=vec4(0.03,0.03,0.03,1.0);color+=ambientlight;float directional=clamp(dot(normal/16384.0,u_lightpos),0.0,1.0);directional=mix((1.0-u_lightintensity),max((1.0-colorvalue+u_lightintensity),1.0),directional);if (normal.y !=0.0) {directional*=((1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),mix(0.7,0.98,1.0-u_lightintensity),1.0)));}v_color.r+=clamp(color.r*directional*u_lightcolor.r,mix(0.0,0.3,1.0-u_lightcolor.r),1.0);v_color.g+=clamp(color.g*directional*u_lightcolor.g,mix(0.0,0.3,1.0-u_lightcolor.g),1.0);v_color.b+=clamp(color.b*directional*u_lightcolor.b,mix(0.0,0.3,1.0-u_lightcolor.b),1.0);v_color*=u_opacity;}\"),or=vr(\"uniform vec2 u_texsize;uniform float u_fade;uniform sampler2D u_image;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec4 v_lighting;\\n#pragma mapbox: define lowp float base\\n#pragma mapbox: define lowp float height\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\n#pragma mapbox: define lowp float pixel_ratio_from\\n#pragma mapbox: define lowp float pixel_ratio_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float base\\n#pragma mapbox: initialize lowp float height\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\n#pragma mapbox: initialize lowp float pixel_ratio_from\\n#pragma mapbox: initialize lowp float pixel_ratio_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;vec2 imagecoord=mod(v_pos_a,1.0);vec2 pos=mix(pattern_tl_a/u_texsize,pattern_br_a/u_texsize,imagecoord);vec4 color1=texture2D(u_image,pos);vec2 imagecoord_b=mod(v_pos_b,1.0);vec2 pos2=mix(pattern_tl_b/u_texsize,pattern_br_b/u_texsize,imagecoord_b);vec4 color2=texture2D(u_image,pos2);vec4 mixedColor=mix(color1,color2,u_fade);gl_FragColor=mixedColor*v_lighting;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_pixel_coord_upper;uniform vec2 u_pixel_coord_lower;uniform float u_height_factor;uniform vec3 u_scale;uniform float u_vertical_gradient;uniform lowp float u_opacity;uniform vec3 u_lightcolor;uniform lowp vec3 u_lightpos;uniform lowp float u_lightintensity;attribute vec2 a_pos;attribute vec4 a_normal_ed;varying vec2 v_pos_a;varying vec2 v_pos_b;varying vec4 v_lighting;\\n#pragma mapbox: define lowp float base\\n#pragma mapbox: define lowp float height\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\n#pragma mapbox: define lowp float pixel_ratio_from\\n#pragma mapbox: define lowp float pixel_ratio_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float base\\n#pragma mapbox: initialize lowp float height\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\n#pragma mapbox: initialize lowp float pixel_ratio_from\\n#pragma mapbox: initialize lowp float pixel_ratio_to\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;vec3 normal=a_normal_ed.xyz;float edgedistance=a_normal_ed.w;vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;base=max(0.0,base);height=max(0.0,height);float t=mod(normal.x,2.0);float z=t > 0.0 ? height : base;gl_Position=u_matrix*vec4(a_pos,z,1);vec2 pos=normal.x==1.0 && normal.y==0.0 && normal.z==16384.0\\n? a_pos\\n: vec2(edgedistance,z*u_height_factor);v_pos_a=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,fromScale*display_size_a,tileRatio,pos);v_pos_b=get_pattern_pos(u_pixel_coord_upper,u_pixel_coord_lower,toScale*display_size_b,tileRatio,pos);v_lighting=vec4(0.0,0.0,0.0,1.0);float directional=clamp(dot(normal/16383.0,u_lightpos),0.0,1.0);directional=mix((1.0-u_lightintensity),max((0.5+u_lightintensity),1.0),directional);if (normal.y !=0.0) {directional*=((1.0-u_vertical_gradient)+(u_vertical_gradient*clamp((t+base)*pow(height/150.0,0.5),mix(0.7,0.98,1.0-u_lightintensity),1.0)));}v_lighting.rgb+=clamp(directional*u_lightcolor,mix(vec3(0.0),vec3(0.3),1.0-u_lightcolor),vec3(1.0));v_lighting*=u_opacity;}\"),sr=vr(\"#ifdef GL_ES\\nprecision highp float;\\n#endif\\nuniform sampler2D u_image;varying vec2 v_pos;uniform vec2 u_dimension;uniform float u_zoom;uniform float u_maxzoom;uniform vec4 u_unpack;float getElevation(vec2 coord,float bias) {vec4 data=texture2D(u_image,coord)*255.0;data.a=-1.0;return dot(data,u_unpack)/4.0;}void main() {vec2 epsilon=1.0/u_dimension;float a=getElevation(v_pos+vec2(-epsilon.x,-epsilon.y),0.0);float b=getElevation(v_pos+vec2(0,-epsilon.y),0.0);float c=getElevation(v_pos+vec2(epsilon.x,-epsilon.y),0.0);float d=getElevation(v_pos+vec2(-epsilon.x,0),0.0);float e=getElevation(v_pos,0.0);float f=getElevation(v_pos+vec2(epsilon.x,0),0.0);float g=getElevation(v_pos+vec2(-epsilon.x,epsilon.y),0.0);float h=getElevation(v_pos+vec2(0,epsilon.y),0.0);float i=getElevation(v_pos+vec2(epsilon.x,epsilon.y),0.0);float exaggeration=u_zoom < 2.0 ? 0.4 : u_zoom < 4.5 ? 0.35 : 0.3;vec2 deriv=vec2((c+f+f+i)-(a+d+d+g),(g+h+h+i)-(a+b+b+c))/ pow(2.0,(u_zoom-u_maxzoom)*exaggeration+19.2562-u_zoom);gl_FragColor=clamp(vec4(deriv.x/2.0+0.5,deriv.y/2.0+0.5,1.0,1.0),0.0,1.0);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_dimension;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);highp vec2 epsilon=1.0/u_dimension;float scale=(u_dimension.x-2.0)/u_dimension.x;v_pos=(a_texture_pos/8192.0)*scale+epsilon;}\"),lr=vr(\"uniform sampler2D u_image;varying vec2 v_pos;uniform vec2 u_latrange;uniform vec2 u_light;uniform vec4 u_shadow;uniform vec4 u_highlight;uniform vec4 u_accent;\\n#define PI 3.141592653589793\\nvoid main() {vec4 pixel=texture2D(u_image,v_pos);vec2 deriv=((pixel.rg*2.0)-1.0);float scaleFactor=cos(radians((u_latrange[0]-u_latrange[1])*(1.0-v_pos.y)+u_latrange[1]));float slope=atan(1.25*length(deriv)/scaleFactor);float aspect=deriv.x !=0.0 ? atan(deriv.y,-deriv.x) : PI/2.0*(deriv.y > 0.0 ? 1.0 :-1.0);float intensity=u_light.x;float azimuth=u_light.y+PI;float base=1.875-intensity*1.75;float maxValue=0.5*PI;float scaledSlope=intensity !=0.5 ? ((pow(base,slope)-1.0)/(pow(base,maxValue)-1.0))*maxValue : slope;float accent=cos(scaledSlope);vec4 accent_color=(1.0-accent)*u_accent*clamp(intensity*2.0,0.0,1.0);float shade=abs(mod((aspect+azimuth)/PI+0.5,2.0)-1.0);vec4 shade_color=mix(u_shadow,u_highlight,shade)*sin(scaledSlope)*clamp(intensity*2.0,0.0,1.0);gl_FragColor=accent_color*(1.0-shade_color.a)+shade_color;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos=a_texture_pos/8192.0;}\"),cr=vr(\"uniform lowp float u_device_pixel_ratio;varying vec2 v_width2;varying vec2 v_normal;varying float v_gamma_scale;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);gl_FragColor=color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define scale 0.015873016\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform vec2 u_units_to_pixels;uniform lowp float u_device_pixel_ratio;varying vec2 v_normal;varying vec2 v_width2;varying float v_gamma_scale;varying highp float v_linesofar;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float width\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float width\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;v_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*2.0;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_width2=vec2(outset,inset);}\"),ur=vr(\"uniform lowp float u_device_pixel_ratio;uniform sampler2D u_image;varying vec2 v_width2;varying vec2 v_normal;varying float v_gamma_scale;varying highp float v_lineprogress;\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);vec4 color=texture2D(u_image,vec2(v_lineprogress,0.5));gl_FragColor=color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define MAX_LINE_DISTANCE 32767.0\\n#define scale 0.015873016\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;uniform vec2 u_units_to_pixels;varying vec2 v_normal;varying vec2 v_width2;varying float v_gamma_scale;varying highp float v_lineprogress;\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float width\\nvoid main() {\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float width\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;v_lineprogress=(floor(a_data.z/4.0)+a_data.w*64.0)*2.0/MAX_LINE_DISTANCE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_width2=vec2(outset,inset);}\"),fr=vr(\"uniform lowp float u_device_pixel_ratio;uniform vec2 u_texsize;uniform float u_fade;uniform mediump vec3 u_scale;uniform sampler2D u_image;varying vec2 v_normal;varying vec2 v_width2;varying float v_linesofar;varying float v_gamma_scale;varying float v_width;\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\n#pragma mapbox: define lowp float pixel_ratio_from\\n#pragma mapbox: define lowp float pixel_ratio_to\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\n#pragma mapbox: initialize lowp float pixel_ratio_from\\n#pragma mapbox: initialize lowp float pixel_ratio_to\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\nvec2 pattern_tl_a=pattern_from.xy;vec2 pattern_br_a=pattern_from.zw;vec2 pattern_tl_b=pattern_to.xy;vec2 pattern_br_b=pattern_to.zw;float tileZoomRatio=u_scale.x;float fromScale=u_scale.y;float toScale=u_scale.z;vec2 display_size_a=(pattern_br_a-pattern_tl_a)/pixel_ratio_from;vec2 display_size_b=(pattern_br_b-pattern_tl_b)/pixel_ratio_to;vec2 pattern_size_a=vec2(display_size_a.x*fromScale/tileZoomRatio,display_size_a.y);vec2 pattern_size_b=vec2(display_size_b.x*toScale/tileZoomRatio,display_size_b.y);float aspect_a=display_size_a.y/v_width;float aspect_b=display_size_b.y/v_width;float dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);float x_a=mod(v_linesofar/pattern_size_a.x*aspect_a,1.0);float x_b=mod(v_linesofar/pattern_size_b.x*aspect_b,1.0);float y=0.5*v_normal.y+0.5;vec2 texel_size=1.0/u_texsize;vec2 pos_a=mix(pattern_tl_a*texel_size-texel_size,pattern_br_a*texel_size+texel_size,vec2(x_a,y));vec2 pos_b=mix(pattern_tl_b*texel_size-texel_size,pattern_br_b*texel_size+texel_size,vec2(x_b,y));vec4 color=mix(texture2D(u_image,pos_a),texture2D(u_image,pos_b),u_fade);gl_FragColor=color*alpha*opacity;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define scale 0.015873016\\n#define LINE_DISTANCE_SCALE 2.0\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform vec2 u_units_to_pixels;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;varying vec2 v_normal;varying vec2 v_width2;varying float v_linesofar;varying float v_gamma_scale;varying float v_width;\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define mediump float width\\n#pragma mapbox: define lowp float floorwidth\\n#pragma mapbox: define lowp vec4 pattern_from\\n#pragma mapbox: define lowp vec4 pattern_to\\n#pragma mapbox: define lowp float pixel_ratio_from\\n#pragma mapbox: define lowp float pixel_ratio_to\\nvoid main() {\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize mediump float width\\n#pragma mapbox: initialize lowp float floorwidth\\n#pragma mapbox: initialize mediump vec4 pattern_from\\n#pragma mapbox: initialize mediump vec4 pattern_to\\n#pragma mapbox: initialize lowp float pixel_ratio_from\\n#pragma mapbox: initialize lowp float pixel_ratio_to\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;float a_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*LINE_DISTANCE_SCALE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_linesofar=a_linesofar;v_width2=vec2(outset,inset);v_width=floorwidth;}\"),hr=vr(\"uniform lowp float u_device_pixel_ratio;uniform sampler2D u_image;uniform float u_sdfgamma;uniform float u_mix;varying vec2 v_normal;varying vec2 v_width2;varying vec2 v_tex_a;varying vec2 v_tex_b;varying float v_gamma_scale;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float width\\n#pragma mapbox: define lowp float floorwidth\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float width\\n#pragma mapbox: initialize lowp float floorwidth\\nfloat dist=length(v_normal)*v_width2.s;float blur2=(blur+1.0/u_device_pixel_ratio)*v_gamma_scale;float alpha=clamp(min(dist-(v_width2.t-blur2),v_width2.s-dist)/blur2,0.0,1.0);float sdfdist_a=texture2D(u_image,v_tex_a).a;float sdfdist_b=texture2D(u_image,v_tex_b).a;float sdfdist=mix(sdfdist_a,sdfdist_b,u_mix);alpha*=smoothstep(0.5-u_sdfgamma/floorwidth,0.5+u_sdfgamma/floorwidth,sdfdist);gl_FragColor=color*(alpha*opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"\\n#define scale 0.015873016\\n#define LINE_DISTANCE_SCALE 2.0\\nattribute vec2 a_pos_normal;attribute vec4 a_data;uniform mat4 u_matrix;uniform mediump float u_ratio;uniform lowp float u_device_pixel_ratio;uniform vec2 u_patternscale_a;uniform float u_tex_y_a;uniform vec2 u_patternscale_b;uniform float u_tex_y_b;uniform vec2 u_units_to_pixels;varying vec2 v_normal;varying vec2 v_width2;varying vec2 v_tex_a;varying vec2 v_tex_b;varying float v_gamma_scale;\\n#pragma mapbox: define highp vec4 color\\n#pragma mapbox: define lowp float blur\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define mediump float gapwidth\\n#pragma mapbox: define lowp float offset\\n#pragma mapbox: define mediump float width\\n#pragma mapbox: define lowp float floorwidth\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 color\\n#pragma mapbox: initialize lowp float blur\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize mediump float gapwidth\\n#pragma mapbox: initialize lowp float offset\\n#pragma mapbox: initialize mediump float width\\n#pragma mapbox: initialize lowp float floorwidth\\nfloat ANTIALIASING=1.0/u_device_pixel_ratio/2.0;vec2 a_extrude=a_data.xy-128.0;float a_direction=mod(a_data.z,4.0)-1.0;float a_linesofar=(floor(a_data.z/4.0)+a_data.w*64.0)*LINE_DISTANCE_SCALE;vec2 pos=floor(a_pos_normal*0.5);mediump vec2 normal=a_pos_normal-2.0*pos;normal.y=normal.y*2.0-1.0;v_normal=normal;gapwidth=gapwidth/2.0;float halfwidth=width/2.0;offset=-1.0*offset;float inset=gapwidth+(gapwidth > 0.0 ? ANTIALIASING : 0.0);float outset=gapwidth+halfwidth*(gapwidth > 0.0 ? 2.0 : 1.0)+(halfwidth==0.0 ? 0.0 : ANTIALIASING);mediump vec2 dist=outset*a_extrude*scale;mediump float u=0.5*a_direction;mediump float t=1.0-abs(u);mediump vec2 offset2=offset*a_extrude*scale*normal.y*mat2(t,-u,u,t);vec4 projected_extrude=u_matrix*vec4(dist/u_ratio,0.0,0.0);gl_Position=u_matrix*vec4(pos+offset2/u_ratio,0.0,1.0)+projected_extrude;float extrude_length_without_perspective=length(dist);float extrude_length_with_perspective=length(projected_extrude.xy/gl_Position.w*u_units_to_pixels);v_gamma_scale=extrude_length_without_perspective/extrude_length_with_perspective;v_tex_a=vec2(a_linesofar*u_patternscale_a.x/floorwidth,normal.y*u_patternscale_a.y+u_tex_y_a);v_tex_b=vec2(a_linesofar*u_patternscale_b.x/floorwidth,normal.y*u_patternscale_b.y+u_tex_y_b);v_width2=vec2(outset,inset);}\"),pr=vr(\"uniform float u_fade_t;uniform float u_opacity;uniform sampler2D u_image0;uniform sampler2D u_image1;varying vec2 v_pos0;varying vec2 v_pos1;uniform float u_brightness_low;uniform float u_brightness_high;uniform float u_saturation_factor;uniform float u_contrast_factor;uniform vec3 u_spin_weights;void main() {vec4 color0=texture2D(u_image0,v_pos0);vec4 color1=texture2D(u_image1,v_pos1);if (color0.a > 0.0) {color0.rgb=color0.rgb/color0.a;}if (color1.a > 0.0) {color1.rgb=color1.rgb/color1.a;}vec4 color=mix(color0,color1,u_fade_t);color.a*=u_opacity;vec3 rgb=color.rgb;rgb=vec3(dot(rgb,u_spin_weights.xyz),dot(rgb,u_spin_weights.zxy),dot(rgb,u_spin_weights.yzx));float average=(color.r+color.g+color.b)/3.0;rgb+=(average-rgb)*u_saturation_factor;rgb=(rgb-0.5)*u_contrast_factor+0.5;vec3 u_high_vec=vec3(u_brightness_low,u_brightness_low,u_brightness_low);vec3 u_low_vec=vec3(u_brightness_high,u_brightness_high,u_brightness_high);gl_FragColor=vec4(mix(u_high_vec,u_low_vec,rgb)*color.a,color.a);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"uniform mat4 u_matrix;uniform vec2 u_tl_parent;uniform float u_scale_parent;uniform float u_buffer_scale;attribute vec2 a_pos;attribute vec2 a_texture_pos;varying vec2 v_pos0;varying vec2 v_pos1;void main() {gl_Position=u_matrix*vec4(a_pos,0,1);v_pos0=(((a_texture_pos/8192.0)-0.5)/u_buffer_scale )+0.5;v_pos1=(v_pos0*u_scale_parent)+u_tl_parent;}\"),dr=vr(\"uniform sampler2D u_texture;varying vec2 v_tex;varying float v_fade_opacity;\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\nlowp float alpha=opacity*v_fade_opacity;gl_FragColor=texture2D(u_texture,v_tex)*alpha;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec4 a_pixeloffset;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform highp float u_camera_to_center_distance;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform float u_fade_change;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform vec2 u_texsize;varying vec2 v_tex;varying float v_fade_opacity;\\n#pragma mapbox: define lowp float opacity\\nvoid main() {\\n#pragma mapbox: initialize lowp float opacity\\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;float a_size_min=floor(a_size[0]*0.5);vec2 a_pxoffset=a_pixeloffset.xy;vec2 a_minFontScale=a_pixeloffset.zw/256.0;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\\ncamera_to_anchor_distance/u_camera_to_center_distance :\\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*max(a_minFontScale,fontScale)+a_pxoffset/16.0),0.0,1.0);v_tex=a_tex/u_texsize;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;v_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));}\"),gr=vr(\"#define SDF_PX 8.0\\nuniform bool u_is_halo;uniform sampler2D u_texture;uniform highp float u_gamma_scale;uniform lowp float u_device_pixel_ratio;uniform bool u_is_text;varying vec2 v_data0;varying vec3 v_data1;\\n#pragma mapbox: define highp vec4 fill_color\\n#pragma mapbox: define highp vec4 halo_color\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp float halo_width\\n#pragma mapbox: define lowp float halo_blur\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 fill_color\\n#pragma mapbox: initialize highp vec4 halo_color\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize lowp float halo_width\\n#pragma mapbox: initialize lowp float halo_blur\\nfloat EDGE_GAMMA=0.105/u_device_pixel_ratio;vec2 tex=v_data0.xy;float gamma_scale=v_data1.x;float size=v_data1.y;float fade_opacity=v_data1[2];float fontScale=u_is_text ? size/24.0 : size;lowp vec4 color=fill_color;highp float gamma=EDGE_GAMMA/(fontScale*u_gamma_scale);lowp float buff=(256.0-64.0)/256.0;if (u_is_halo) {color=halo_color;gamma=(halo_blur*1.19/SDF_PX+EDGE_GAMMA)/(fontScale*u_gamma_scale);buff=(6.0-halo_width/fontScale)/SDF_PX;}lowp float dist=texture2D(u_texture,tex).a;highp float gamma_scaled=gamma*gamma_scale;highp float alpha=smoothstep(buff-gamma_scaled,buff+gamma_scaled,dist);gl_FragColor=color*(alpha*opacity*fade_opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec4 a_pixeloffset;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform highp float u_camera_to_center_distance;uniform float u_fade_change;uniform vec2 u_texsize;varying vec2 v_data0;varying vec3 v_data1;\\n#pragma mapbox: define highp vec4 fill_color\\n#pragma mapbox: define highp vec4 halo_color\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp float halo_width\\n#pragma mapbox: define lowp float halo_blur\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 fill_color\\n#pragma mapbox: initialize highp vec4 halo_color\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize lowp float halo_width\\n#pragma mapbox: initialize lowp float halo_blur\\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;float a_size_min=floor(a_size[0]*0.5);vec2 a_pxoffset=a_pixeloffset.xy;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\\ncamera_to_anchor_distance/u_camera_to_center_distance :\\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=u_is_text ? size/24.0 : size;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*fontScale+a_pxoffset),0.0,1.0);float gamma_scale=gl_Position.w;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;float interpolated_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));v_data0=a_tex/u_texsize;v_data1=vec3(gamma_scale,size,interpolated_fade_opacity);}\"),mr=vr(\"#define SDF_PX 8.0\\n#define SDF 1.0\\n#define ICON 0.0\\nuniform bool u_is_halo;uniform sampler2D u_texture;uniform sampler2D u_texture_icon;uniform highp float u_gamma_scale;uniform lowp float u_device_pixel_ratio;varying vec4 v_data0;varying vec4 v_data1;\\n#pragma mapbox: define highp vec4 fill_color\\n#pragma mapbox: define highp vec4 halo_color\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp float halo_width\\n#pragma mapbox: define lowp float halo_blur\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 fill_color\\n#pragma mapbox: initialize highp vec4 halo_color\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize lowp float halo_width\\n#pragma mapbox: initialize lowp float halo_blur\\nfloat fade_opacity=v_data1[2];if (v_data1.w==ICON) {vec2 tex_icon=v_data0.zw;lowp float alpha=opacity*fade_opacity;gl_FragColor=texture2D(u_texture_icon,tex_icon)*alpha;\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\nreturn;}vec2 tex=v_data0.xy;float EDGE_GAMMA=0.105/u_device_pixel_ratio;float gamma_scale=v_data1.x;float size=v_data1.y;float fontScale=size/24.0;lowp vec4 color=fill_color;highp float gamma=EDGE_GAMMA/(fontScale*u_gamma_scale);lowp float buff=(256.0-64.0)/256.0;if (u_is_halo) {color=halo_color;gamma=(halo_blur*1.19/SDF_PX+EDGE_GAMMA)/(fontScale*u_gamma_scale);buff=(6.0-halo_width/fontScale)/SDF_PX;}lowp float dist=texture2D(u_texture,tex).a;highp float gamma_scaled=gamma*gamma_scale;highp float alpha=smoothstep(buff-gamma_scaled,buff+gamma_scaled,dist);gl_FragColor=color*(alpha*opacity*fade_opacity);\\n#ifdef OVERDRAW_INSPECTOR\\ngl_FragColor=vec4(1.0);\\n#endif\\n}\",\"const float PI=3.141592653589793;attribute vec4 a_pos_offset;attribute vec4 a_data;attribute vec3 a_projected_pos;attribute float a_fade_opacity;uniform bool u_is_size_zoom_constant;uniform bool u_is_size_feature_constant;uniform highp float u_size_t;uniform highp float u_size;uniform mat4 u_matrix;uniform mat4 u_label_plane_matrix;uniform mat4 u_coord_matrix;uniform bool u_is_text;uniform bool u_pitch_with_map;uniform highp float u_pitch;uniform bool u_rotate_symbol;uniform highp float u_aspect_ratio;uniform highp float u_camera_to_center_distance;uniform float u_fade_change;uniform vec2 u_texsize;uniform vec2 u_texsize_icon;varying vec4 v_data0;varying vec4 v_data1;\\n#pragma mapbox: define highp vec4 fill_color\\n#pragma mapbox: define highp vec4 halo_color\\n#pragma mapbox: define lowp float opacity\\n#pragma mapbox: define lowp float halo_width\\n#pragma mapbox: define lowp float halo_blur\\nvoid main() {\\n#pragma mapbox: initialize highp vec4 fill_color\\n#pragma mapbox: initialize highp vec4 halo_color\\n#pragma mapbox: initialize lowp float opacity\\n#pragma mapbox: initialize lowp float halo_width\\n#pragma mapbox: initialize lowp float halo_blur\\nvec2 a_pos=a_pos_offset.xy;vec2 a_offset=a_pos_offset.zw;vec2 a_tex=a_data.xy;vec2 a_size=a_data.zw;float a_size_min=floor(a_size[0]*0.5);float is_sdf=a_size[0]-2.0*a_size_min;highp float segment_angle=-a_projected_pos[2];float size;if (!u_is_size_zoom_constant && !u_is_size_feature_constant) {size=mix(a_size_min,a_size[1],u_size_t)/128.0;} else if (u_is_size_zoom_constant && !u_is_size_feature_constant) {size=a_size_min/128.0;} else {size=u_size;}vec4 projectedPoint=u_matrix*vec4(a_pos,0,1);highp float camera_to_anchor_distance=projectedPoint.w;highp float distance_ratio=u_pitch_with_map ?\\ncamera_to_anchor_distance/u_camera_to_center_distance :\\nu_camera_to_center_distance/camera_to_anchor_distance;highp float perspective_ratio=clamp(0.5+0.5*distance_ratio,0.0,4.0);size*=perspective_ratio;float fontScale=size/24.0;highp float symbol_rotation=0.0;if (u_rotate_symbol) {vec4 offsetProjectedPoint=u_matrix*vec4(a_pos+vec2(1,0),0,1);vec2 a=projectedPoint.xy/projectedPoint.w;vec2 b=offsetProjectedPoint.xy/offsetProjectedPoint.w;symbol_rotation=atan((b.y-a.y)/u_aspect_ratio,b.x-a.x);}highp float angle_sin=sin(segment_angle+symbol_rotation);highp float angle_cos=cos(segment_angle+symbol_rotation);mat2 rotation_matrix=mat2(angle_cos,-1.0*angle_sin,angle_sin,angle_cos);vec4 projected_pos=u_label_plane_matrix*vec4(a_projected_pos.xy,0.0,1.0);gl_Position=u_coord_matrix*vec4(projected_pos.xy/projected_pos.w+rotation_matrix*(a_offset/32.0*fontScale),0.0,1.0);float gamma_scale=gl_Position.w;vec2 fade_opacity=unpack_opacity(a_fade_opacity);float fade_change=fade_opacity[1] > 0.5 ? u_fade_change :-u_fade_change;float interpolated_fade_opacity=max(0.0,min(1.0,fade_opacity[0]+fade_change));v_data0.xy=a_tex/u_texsize;v_data0.zw=a_tex/u_texsize_icon;v_data1=vec4(gamma_scale,size,interpolated_fade_opacity,is_sdf);}\");function vr(t,e){var r=/#pragma mapbox: ([\\w]+) ([\\w]+) ([\\w]+) ([\\w]+)/g,n={};return{fragmentSource:t=t.replace(r,(function(t,e,r,i,a){return n[a]=!0,\"define\"===e?\"\\n#ifndef HAS_UNIFORM_u_\"+a+\"\\nvarying \"+r+\" \"+i+\" \"+a+\";\\n#else\\nuniform \"+r+\" \"+i+\" u_\"+a+\";\\n#endif\\n\":\"\\n#ifdef HAS_UNIFORM_u_\"+a+\"\\n    \"+r+\" \"+i+\" \"+a+\" = u_\"+a+\";\\n#endif\\n\"})),vertexSource:e=e.replace(r,(function(t,e,r,i,a){var o=\"float\"===i?\"vec2\":\"vec4\",s=a.match(/color/)?\"color\":o;return n[a]?\"define\"===e?\"\\n#ifndef HAS_UNIFORM_u_\"+a+\"\\nuniform lowp float u_\"+a+\"_t;\\nattribute \"+r+\" \"+o+\" a_\"+a+\";\\nvarying \"+r+\" \"+i+\" \"+a+\";\\n#else\\nuniform \"+r+\" \"+i+\" u_\"+a+\";\\n#endif\\n\":\"vec4\"===s?\"\\n#ifndef HAS_UNIFORM_u_\"+a+\"\\n    \"+a+\" = a_\"+a+\";\\n#else\\n    \"+r+\" \"+i+\" \"+a+\" = u_\"+a+\";\\n#endif\\n\":\"\\n#ifndef HAS_UNIFORM_u_\"+a+\"\\n    \"+a+\" = unpack_mix_\"+s+\"(a_\"+a+\", u_\"+a+\"_t);\\n#else\\n    \"+r+\" \"+i+\" \"+a+\" = u_\"+a+\";\\n#endif\\n\":\"define\"===e?\"\\n#ifndef HAS_UNIFORM_u_\"+a+\"\\nuniform lowp float u_\"+a+\"_t;\\nattribute \"+r+\" \"+o+\" a_\"+a+\";\\n#else\\nuniform \"+r+\" \"+i+\" u_\"+a+\";\\n#endif\\n\":\"vec4\"===s?\"\\n#ifndef HAS_UNIFORM_u_\"+a+\"\\n    \"+r+\" \"+i+\" \"+a+\" = a_\"+a+\";\\n#else\\n    \"+r+\" \"+i+\" \"+a+\" = u_\"+a+\";\\n#endif\\n\":\"\\n#ifndef HAS_UNIFORM_u_\"+a+\"\\n    \"+r+\" \"+i+\" \"+a+\" = unpack_mix_\"+s+\"(a_\"+a+\", u_\"+a+\"_t);\\n#else\\n    \"+r+\" \"+i+\" \"+a+\" = u_\"+a+\";\\n#endif\\n\"}))}}var yr=Object.freeze({__proto__:null,prelude:Ge,background:Ye,backgroundPattern:We,circle:Xe,clippingMask:Ze,heatmap:Je,heatmapTexture:Ke,collisionBox:Qe,collisionCircle:$e,debug:tr,fill:er,fillOutline:rr,fillOutlinePattern:nr,fillPattern:ir,fillExtrusion:ar,fillExtrusionPattern:or,hillshadePrepare:sr,hillshade:lr,line:cr,lineGradient:ur,linePattern:fr,lineSDF:hr,raster:pr,symbolIcon:dr,symbolSDF:gr,symbolTextAndIcon:mr}),xr=function(){this.boundProgram=null,this.boundLayoutVertexBuffer=null,this.boundPaintVertexBuffers=[],this.boundIndexBuffer=null,this.boundVertexOffset=null,this.boundDynamicVertexBuffer=null,this.vao=null};xr.prototype.bind=function(t,e,r,n,i,a,o,s){this.context=t;for(var l=this.boundPaintVertexBuffers.length!==n.length,c=0;!l&&c<n.length;c++)this.boundPaintVertexBuffers[c]!==n[c]&&(l=!0);t.extVertexArrayObject&&this.vao&&this.boundProgram===e&&this.boundLayoutVertexBuffer===r&&!l&&this.boundIndexBuffer===i&&this.boundVertexOffset===a&&this.boundDynamicVertexBuffer===o&&this.boundDynamicVertexBuffer2===s?(t.bindVertexArrayOES.set(this.vao),o&&o.bind(),i&&i.dynamicDraw&&i.bind(),s&&s.bind()):this.freshBind(e,r,n,i,a,o,s)},xr.prototype.freshBind=function(t,e,r,n,i,a,o){var s,l=t.numAttributes,c=this.context,u=c.gl;if(c.extVertexArrayObject)this.vao&&this.destroy(),this.vao=c.extVertexArrayObject.createVertexArrayOES(),c.bindVertexArrayOES.set(this.vao),s=0,this.boundProgram=t,this.boundLayoutVertexBuffer=e,this.boundPaintVertexBuffers=r,this.boundIndexBuffer=n,this.boundVertexOffset=i,this.boundDynamicVertexBuffer=a,this.boundDynamicVertexBuffer2=o;else{s=c.currentNumAttributes||0;for(var f=l;f<s;f++)u.disableVertexAttribArray(f)}e.enableAttributes(u,t);for(var h=0,p=r;h<p.length;h+=1)p[h].enableAttributes(u,t);a&&a.enableAttributes(u,t),o&&o.enableAttributes(u,t),e.bind(),e.setVertexAttribPointers(u,t,i);for(var d=0,g=r;d<g.length;d+=1){var m=g[d];m.bind(),m.setVertexAttribPointers(u,t,i)}a&&(a.bind(),a.setVertexAttribPointers(u,t,i)),n&&n.bind(),o&&(o.bind(),o.setVertexAttribPointers(u,t,i)),c.currentNumAttributes=l},xr.prototype.destroy=function(){this.vao&&(this.context.extVertexArrayObject.deleteVertexArrayOES(this.vao),this.vao=null)};var br=function(t,e,r,n,i){var a=t.gl;this.program=a.createProgram();var o=r?r.defines():[];i&&o.push(\"#define OVERDRAW_INSPECTOR;\");var s=o.concat(Ge.fragmentSource,e.fragmentSource).join(\"\\n\"),l=o.concat(Ge.vertexSource,e.vertexSource).join(\"\\n\"),c=a.createShader(a.FRAGMENT_SHADER);if(a.isContextLost())this.failedToCreate=!0;else{a.shaderSource(c,s),a.compileShader(c),a.attachShader(this.program,c);var u=a.createShader(a.VERTEX_SHADER);if(a.isContextLost())this.failedToCreate=!0;else{a.shaderSource(u,l),a.compileShader(u),a.attachShader(this.program,u);for(var f=r?r.layoutAttributes:[],h=0;h<f.length;h++)a.bindAttribLocation(this.program,h,f[h].name);a.linkProgram(this.program),a.deleteShader(u),a.deleteShader(c),this.numAttributes=a.getProgramParameter(this.program,a.ACTIVE_ATTRIBUTES),this.attributes={};for(var p={},d=0;d<this.numAttributes;d++){var g=a.getActiveAttrib(this.program,d);g&&(this.attributes[g.name]=a.getAttribLocation(this.program,g.name))}for(var m=a.getProgramParameter(this.program,a.ACTIVE_UNIFORMS),v=0;v<m;v++){var y=a.getActiveUniform(this.program,v);y&&(p[y.name]=a.getUniformLocation(this.program,y.name))}this.fixedUniforms=n(t,p),this.binderUniforms=r?r.getUniforms(t,p):[]}}};function _r(t,e,r){var n=1/he(r,1,e.transform.tileZoom),i=Math.pow(2,r.tileID.overscaledZ),a=r.tileSize*Math.pow(2,e.transform.tileZoom)/i,o=a*(r.tileID.canonical.x+r.tileID.wrap*i),s=a*r.tileID.canonical.y;return{u_image:0,u_texsize:r.imageAtlasTexture.size,u_scale:[n,t.fromScale,t.toScale],u_fade:t.t,u_pixel_coord_upper:[o>>16,s>>16],u_pixel_coord_lower:[65535&o,65535&s]}}br.prototype.draw=function(t,e,r,n,i,a,o,s,l,c,u,f,h,p,d,g){var m,v=t.gl;if(!this.failedToCreate){for(var y in t.program.set(this.program),t.setDepthMode(r),t.setStencilMode(n),t.setColorMode(i),t.setCullFace(a),this.fixedUniforms)this.fixedUniforms[y].set(o[y]);p&&p.setUniforms(t,this.binderUniforms,f,{zoom:h});for(var x=(m={},m[v.LINES]=2,m[v.TRIANGLES]=3,m[v.LINE_STRIP]=1,m)[e],b=0,_=u.get();b<_.length;b+=1){var w=_[b],T=w.vaos||(w.vaos={});(T[s]||(T[s]=new xr)).bind(t,this,l,p?p.getPaintVertexBuffers():[],c,w.vertexOffset,d,g),v.drawElements(e,w.primitiveLength*x,v.UNSIGNED_SHORT,w.primitiveOffset*x*2)}}};var wr=function(e,r,n,i){var a=r.style.light,o=a.properties.get(\"position\"),s=[o.x,o.y,o.z],l=t.create$1();\"viewport\"===a.properties.get(\"anchor\")&&t.fromRotation(l,-r.transform.angle),t.transformMat3(s,s,l);var c=a.properties.get(\"color\");return{u_matrix:e,u_lightpos:s,u_lightintensity:a.properties.get(\"intensity\"),u_lightcolor:[c.r,c.g,c.b],u_vertical_gradient:+n,u_opacity:i}},Tr=function(e,r,n,i,a,o,s){return t.extend(wr(e,r,n,i),_r(o,r,s),{u_height_factor:-Math.pow(2,a.overscaledZ)/s.tileSize/8})},kr=function(t){return{u_matrix:t}},Mr=function(e,r,n,i){return t.extend(kr(e),_r(n,r,i))},Ar=function(t,e){return{u_matrix:t,u_world:e}},Sr=function(e,r,n,i,a){return t.extend(Mr(e,r,n,i),{u_world:a})},Er=function(e,r,n,i){var a,o,s=e.transform;if(\"map\"===i.paint.get(\"circle-pitch-alignment\")){var l=he(n,1,s.zoom);a=!0,o=[l,l]}else a=!1,o=s.pixelsToGLUnits;return{u_camera_to_center_distance:s.cameraToCenterDistance,u_scale_with_map:+(\"map\"===i.paint.get(\"circle-pitch-scale\")),u_matrix:e.translatePosMatrix(r.posMatrix,n,i.paint.get(\"circle-translate\"),i.paint.get(\"circle-translate-anchor\")),u_pitch_with_map:+a,u_device_pixel_ratio:t.browser.devicePixelRatio,u_extrude_scale:o}},Cr=function(t,e,r){var n=he(r,1,e.zoom),i=Math.pow(2,e.zoom-r.tileID.overscaledZ),a=r.tileID.overscaleFactor();return{u_matrix:t,u_camera_to_center_distance:e.cameraToCenterDistance,u_pixels_to_tile_units:n,u_extrude_scale:[e.pixelsToGLUnits[0]/(n*i),e.pixelsToGLUnits[1]/(n*i)],u_overscale_factor:a}},Lr=function(t,e,r){return{u_matrix:t,u_inv_matrix:e,u_camera_to_center_distance:r.cameraToCenterDistance,u_viewport_size:[r.width,r.height]}},Ir=function(t,e,r){return void 0===r&&(r=1),{u_matrix:t,u_color:e,u_overlay:0,u_overlay_scale:r}},Pr=function(t){return{u_matrix:t}},zr=function(t,e,r,n){return{u_matrix:t,u_extrude_scale:he(e,1,r),u_intensity:n}},Or=function(e,r,n){var i=e.transform;return{u_matrix:Nr(e,r,n),u_ratio:1/he(r,1,i.zoom),u_device_pixel_ratio:t.browser.devicePixelRatio,u_units_to_pixels:[1/i.pixelsToGLUnits[0],1/i.pixelsToGLUnits[1]]}},Dr=function(e,r,n){return t.extend(Or(e,r,n),{u_image:0})},Rr=function(e,r,n,i){var a=e.transform,o=Br(r,a);return{u_matrix:Nr(e,r,n),u_texsize:r.imageAtlasTexture.size,u_ratio:1/he(r,1,a.zoom),u_device_pixel_ratio:t.browser.devicePixelRatio,u_image:0,u_scale:[o,i.fromScale,i.toScale],u_fade:i.t,u_units_to_pixels:[1/a.pixelsToGLUnits[0],1/a.pixelsToGLUnits[1]]}},Fr=function(e,r,n,i,a){var o=e.lineAtlas,s=Br(r,e.transform),l=\"round\"===n.layout.get(\"line-cap\"),c=o.getDash(i.from,l),u=o.getDash(i.to,l),f=c.width*a.fromScale,h=u.width*a.toScale;return t.extend(Or(e,r,n),{u_patternscale_a:[s/f,-c.height/2],u_patternscale_b:[s/h,-u.height/2],u_sdfgamma:o.width/(256*Math.min(f,h)*t.browser.devicePixelRatio)/2,u_image:0,u_tex_y_a:c.y,u_tex_y_b:u.y,u_mix:a.t})};function Br(t,e){return 1/he(t,1,e.tileZoom)}function Nr(t,e,r){return t.translatePosMatrix(e.tileID.posMatrix,e,r.paint.get(\"line-translate\"),r.paint.get(\"line-translate-anchor\"))}var jr=function(t,e,r,n,i){return{u_matrix:t,u_tl_parent:e,u_scale_parent:r,u_buffer_scale:1,u_fade_t:n.mix,u_opacity:n.opacity*i.paint.get(\"raster-opacity\"),u_image0:0,u_image1:1,u_brightness_low:i.paint.get(\"raster-brightness-min\"),u_brightness_high:i.paint.get(\"raster-brightness-max\"),u_saturation_factor:(o=i.paint.get(\"raster-saturation\"),o>0?1-1/(1.001-o):-o),u_contrast_factor:(a=i.paint.get(\"raster-contrast\"),a>0?1/(1-a):1+a),u_spin_weights:Ur(i.paint.get(\"raster-hue-rotate\"))};var a,o};function Ur(t){t*=Math.PI/180;var e=Math.sin(t),r=Math.cos(t);return[(2*r+1)/3,(-Math.sqrt(3)*e-r+1)/3,(Math.sqrt(3)*e-r+1)/3]}var Vr,qr=function(t,e,r,n,i,a,o,s,l,c){var u=i.transform;return{u_is_size_zoom_constant:+(\"constant\"===t||\"source\"===t),u_is_size_feature_constant:+(\"constant\"===t||\"camera\"===t),u_size_t:e?e.uSizeT:0,u_size:e?e.uSize:0,u_camera_to_center_distance:u.cameraToCenterDistance,u_pitch:u.pitch/360*2*Math.PI,u_rotate_symbol:+r,u_aspect_ratio:u.width/u.height,u_fade_change:i.options.fadeDuration?i.symbolFadeChange:1,u_matrix:a,u_label_plane_matrix:o,u_coord_matrix:s,u_is_text:+l,u_pitch_with_map:+n,u_texsize:c,u_texture:0}},Hr=function(e,r,n,i,a,o,s,l,c,u,f){var h=a.transform;return t.extend(qr(e,r,n,i,a,o,s,l,c,u),{u_gamma_scale:i?Math.cos(h._pitch)*h.cameraToCenterDistance:1,u_device_pixel_ratio:t.browser.devicePixelRatio,u_is_halo:+f})},Gr=function(e,r,n,i,a,o,s,l,c,u){return t.extend(Hr(e,r,n,i,a,o,s,l,!0,c,!0),{u_texsize_icon:u,u_texture_icon:1})},Yr=function(t,e,r){return{u_matrix:t,u_opacity:e,u_color:r}},Wr=function(e,r,n,i,a,o){return t.extend(function(t,e,r,n){var i=r.imageManager.getPattern(t.from.toString()),a=r.imageManager.getPattern(t.to.toString()),o=r.imageManager.getPixelSize(),s=o.width,l=o.height,c=Math.pow(2,n.tileID.overscaledZ),u=n.tileSize*Math.pow(2,r.transform.tileZoom)/c,f=u*(n.tileID.canonical.x+n.tileID.wrap*c),h=u*n.tileID.canonical.y;return{u_image:0,u_pattern_tl_a:i.tl,u_pattern_br_a:i.br,u_pattern_tl_b:a.tl,u_pattern_br_b:a.br,u_texsize:[s,l],u_mix:e.t,u_pattern_size_a:i.displaySize,u_pattern_size_b:a.displaySize,u_scale_a:e.fromScale,u_scale_b:e.toScale,u_tile_units_to_pixels:1/he(n,1,r.transform.tileZoom),u_pixel_coord_upper:[f>>16,h>>16],u_pixel_coord_lower:[65535&f,65535&h]}}(i,o,n,a),{u_matrix:e,u_opacity:r})},Xr={fillExtrusion:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_lightpos:new t.Uniform3f(e,r.u_lightpos),u_lightintensity:new t.Uniform1f(e,r.u_lightintensity),u_lightcolor:new t.Uniform3f(e,r.u_lightcolor),u_vertical_gradient:new t.Uniform1f(e,r.u_vertical_gradient),u_opacity:new t.Uniform1f(e,r.u_opacity)}},fillExtrusionPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_lightpos:new t.Uniform3f(e,r.u_lightpos),u_lightintensity:new t.Uniform1f(e,r.u_lightintensity),u_lightcolor:new t.Uniform3f(e,r.u_lightcolor),u_vertical_gradient:new t.Uniform1f(e,r.u_vertical_gradient),u_height_factor:new t.Uniform1f(e,r.u_height_factor),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform3f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade),u_opacity:new t.Uniform1f(e,r.u_opacity)}},fill:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},fillPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform3f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},fillOutline:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world)}},fillOutlinePattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world),u_image:new t.Uniform1i(e,r.u_image),u_texsize:new t.Uniform2f(e,r.u_texsize),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_scale:new t.Uniform3f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},circle:function(e,r){return{u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_scale_with_map:new t.Uniform1i(e,r.u_scale_with_map),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_extrude_scale:new t.Uniform2f(e,r.u_extrude_scale),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},collisionBox:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pixels_to_tile_units:new t.Uniform1f(e,r.u_pixels_to_tile_units),u_extrude_scale:new t.Uniform2f(e,r.u_extrude_scale),u_overscale_factor:new t.Uniform1f(e,r.u_overscale_factor)}},collisionCircle:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_inv_matrix:new t.UniformMatrix4f(e,r.u_inv_matrix),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_viewport_size:new t.Uniform2f(e,r.u_viewport_size)}},debug:function(e,r){return{u_color:new t.UniformColor(e,r.u_color),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_overlay:new t.Uniform1i(e,r.u_overlay),u_overlay_scale:new t.Uniform1f(e,r.u_overlay_scale)}},clippingMask:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},heatmap:function(e,r){return{u_extrude_scale:new t.Uniform1f(e,r.u_extrude_scale),u_intensity:new t.Uniform1f(e,r.u_intensity),u_matrix:new t.UniformMatrix4f(e,r.u_matrix)}},heatmapTexture:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_world:new t.Uniform2f(e,r.u_world),u_image:new t.Uniform1i(e,r.u_image),u_color_ramp:new t.Uniform1i(e,r.u_color_ramp),u_opacity:new t.Uniform1f(e,r.u_opacity)}},hillshade:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_latrange:new t.Uniform2f(e,r.u_latrange),u_light:new t.Uniform2f(e,r.u_light),u_shadow:new t.UniformColor(e,r.u_shadow),u_highlight:new t.UniformColor(e,r.u_highlight),u_accent:new t.UniformColor(e,r.u_accent)}},hillshadePrepare:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_image:new t.Uniform1i(e,r.u_image),u_dimension:new t.Uniform2f(e,r.u_dimension),u_zoom:new t.Uniform1f(e,r.u_zoom),u_maxzoom:new t.Uniform1f(e,r.u_maxzoom),u_unpack:new t.Uniform4f(e,r.u_unpack)}},line:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels)}},lineGradient:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_image:new t.Uniform1i(e,r.u_image)}},linePattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_texsize:new t.Uniform2f(e,r.u_texsize),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_image:new t.Uniform1i(e,r.u_image),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_scale:new t.Uniform3f(e,r.u_scale),u_fade:new t.Uniform1f(e,r.u_fade)}},lineSDF:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_ratio:new t.Uniform1f(e,r.u_ratio),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_units_to_pixels:new t.Uniform2f(e,r.u_units_to_pixels),u_patternscale_a:new t.Uniform2f(e,r.u_patternscale_a),u_patternscale_b:new t.Uniform2f(e,r.u_patternscale_b),u_sdfgamma:new t.Uniform1f(e,r.u_sdfgamma),u_image:new t.Uniform1i(e,r.u_image),u_tex_y_a:new t.Uniform1f(e,r.u_tex_y_a),u_tex_y_b:new t.Uniform1f(e,r.u_tex_y_b),u_mix:new t.Uniform1f(e,r.u_mix)}},raster:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_tl_parent:new t.Uniform2f(e,r.u_tl_parent),u_scale_parent:new t.Uniform1f(e,r.u_scale_parent),u_buffer_scale:new t.Uniform1f(e,r.u_buffer_scale),u_fade_t:new t.Uniform1f(e,r.u_fade_t),u_opacity:new t.Uniform1f(e,r.u_opacity),u_image0:new t.Uniform1i(e,r.u_image0),u_image1:new t.Uniform1i(e,r.u_image1),u_brightness_low:new t.Uniform1f(e,r.u_brightness_low),u_brightness_high:new t.Uniform1f(e,r.u_brightness_high),u_saturation_factor:new t.Uniform1f(e,r.u_saturation_factor),u_contrast_factor:new t.Uniform1f(e,r.u_contrast_factor),u_spin_weights:new t.Uniform3f(e,r.u_spin_weights)}},symbolIcon:function(e,r){return{u_is_size_zoom_constant:new t.Uniform1i(e,r.u_is_size_zoom_constant),u_is_size_feature_constant:new t.Uniform1i(e,r.u_is_size_feature_constant),u_size_t:new t.Uniform1f(e,r.u_size_t),u_size:new t.Uniform1f(e,r.u_size),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pitch:new t.Uniform1f(e,r.u_pitch),u_rotate_symbol:new t.Uniform1i(e,r.u_rotate_symbol),u_aspect_ratio:new t.Uniform1f(e,r.u_aspect_ratio),u_fade_change:new t.Uniform1f(e,r.u_fade_change),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_label_plane_matrix:new t.UniformMatrix4f(e,r.u_label_plane_matrix),u_coord_matrix:new t.UniformMatrix4f(e,r.u_coord_matrix),u_is_text:new t.Uniform1i(e,r.u_is_text),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_texsize:new t.Uniform2f(e,r.u_texsize),u_texture:new t.Uniform1i(e,r.u_texture)}},symbolSDF:function(e,r){return{u_is_size_zoom_constant:new t.Uniform1i(e,r.u_is_size_zoom_constant),u_is_size_feature_constant:new t.Uniform1i(e,r.u_is_size_feature_constant),u_size_t:new t.Uniform1f(e,r.u_size_t),u_size:new t.Uniform1f(e,r.u_size),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pitch:new t.Uniform1f(e,r.u_pitch),u_rotate_symbol:new t.Uniform1i(e,r.u_rotate_symbol),u_aspect_ratio:new t.Uniform1f(e,r.u_aspect_ratio),u_fade_change:new t.Uniform1f(e,r.u_fade_change),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_label_plane_matrix:new t.UniformMatrix4f(e,r.u_label_plane_matrix),u_coord_matrix:new t.UniformMatrix4f(e,r.u_coord_matrix),u_is_text:new t.Uniform1i(e,r.u_is_text),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_texsize:new t.Uniform2f(e,r.u_texsize),u_texture:new t.Uniform1i(e,r.u_texture),u_gamma_scale:new t.Uniform1f(e,r.u_gamma_scale),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_is_halo:new t.Uniform1i(e,r.u_is_halo)}},symbolTextAndIcon:function(e,r){return{u_is_size_zoom_constant:new t.Uniform1i(e,r.u_is_size_zoom_constant),u_is_size_feature_constant:new t.Uniform1i(e,r.u_is_size_feature_constant),u_size_t:new t.Uniform1f(e,r.u_size_t),u_size:new t.Uniform1f(e,r.u_size),u_camera_to_center_distance:new t.Uniform1f(e,r.u_camera_to_center_distance),u_pitch:new t.Uniform1f(e,r.u_pitch),u_rotate_symbol:new t.Uniform1i(e,r.u_rotate_symbol),u_aspect_ratio:new t.Uniform1f(e,r.u_aspect_ratio),u_fade_change:new t.Uniform1f(e,r.u_fade_change),u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_label_plane_matrix:new t.UniformMatrix4f(e,r.u_label_plane_matrix),u_coord_matrix:new t.UniformMatrix4f(e,r.u_coord_matrix),u_is_text:new t.Uniform1i(e,r.u_is_text),u_pitch_with_map:new t.Uniform1i(e,r.u_pitch_with_map),u_texsize:new t.Uniform2f(e,r.u_texsize),u_texsize_icon:new t.Uniform2f(e,r.u_texsize_icon),u_texture:new t.Uniform1i(e,r.u_texture),u_texture_icon:new t.Uniform1i(e,r.u_texture_icon),u_gamma_scale:new t.Uniform1f(e,r.u_gamma_scale),u_device_pixel_ratio:new t.Uniform1f(e,r.u_device_pixel_ratio),u_is_halo:new t.Uniform1i(e,r.u_is_halo)}},background:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_opacity:new t.Uniform1f(e,r.u_opacity),u_color:new t.UniformColor(e,r.u_color)}},backgroundPattern:function(e,r){return{u_matrix:new t.UniformMatrix4f(e,r.u_matrix),u_opacity:new t.Uniform1f(e,r.u_opacity),u_image:new t.Uniform1i(e,r.u_image),u_pattern_tl_a:new t.Uniform2f(e,r.u_pattern_tl_a),u_pattern_br_a:new t.Uniform2f(e,r.u_pattern_br_a),u_pattern_tl_b:new t.Uniform2f(e,r.u_pattern_tl_b),u_pattern_br_b:new t.Uniform2f(e,r.u_pattern_br_b),u_texsize:new t.Uniform2f(e,r.u_texsize),u_mix:new t.Uniform1f(e,r.u_mix),u_pattern_size_a:new t.Uniform2f(e,r.u_pattern_size_a),u_pattern_size_b:new t.Uniform2f(e,r.u_pattern_size_b),u_scale_a:new t.Uniform1f(e,r.u_scale_a),u_scale_b:new t.Uniform1f(e,r.u_scale_b),u_pixel_coord_upper:new t.Uniform2f(e,r.u_pixel_coord_upper),u_pixel_coord_lower:new t.Uniform2f(e,r.u_pixel_coord_lower),u_tile_units_to_pixels:new t.Uniform1f(e,r.u_tile_units_to_pixels)}}};function Zr(e,r,n,i,a,o,s){for(var l=e.context,c=l.gl,u=e.useProgram(\"collisionBox\"),f=[],h=0,p=0,d=0;d<i.length;d++){var g=i[d],m=r.getTile(g),v=m.getBucket(n);if(v){var y=g.posMatrix;0===a[0]&&0===a[1]||(y=e.translatePosMatrix(g.posMatrix,m,a,o));var x=s?v.textCollisionBox:v.iconCollisionBox,b=v.collisionCircleArray;if(b.length>0){var _=t.create(),w=y;t.mul(_,v.placementInvProjMatrix,e.transform.glCoordMatrix),t.mul(_,_,v.placementViewportMatrix),f.push({circleArray:b,circleOffset:p,transform:w,invTransform:_}),p=h+=b.length/4}x&&u.draw(l,c.LINES,Mt.disabled,At.disabled,e.colorModeForRenderPass(),Et.disabled,Cr(y,e.transform,m),n.id,x.layoutVertexBuffer,x.indexBuffer,x.segments,null,e.transform.zoom,null,null,x.collisionVertexBuffer)}}if(s&&f.length){var T=e.useProgram(\"collisionCircle\"),k=new t.StructArrayLayout2f1f2i16;k.resize(4*h),k._trim();for(var M=0,A=0,S=f;A<S.length;A+=1)for(var E=S[A],C=0;C<E.circleArray.length/4;C++){var L=4*C,I=E.circleArray[L+0],P=E.circleArray[L+1],z=E.circleArray[L+2],O=E.circleArray[L+3];k.emplace(M++,I,P,z,O,0),k.emplace(M++,I,P,z,O,1),k.emplace(M++,I,P,z,O,2),k.emplace(M++,I,P,z,O,3)}(!Vr||Vr.length<2*h)&&(Vr=function(e){var r=2*e,n=new t.StructArrayLayout3ui6;n.resize(r),n._trim();for(var i=0;i<r;i++){var a=6*i;n.uint16[a+0]=4*i+0,n.uint16[a+1]=4*i+1,n.uint16[a+2]=4*i+2,n.uint16[a+3]=4*i+2,n.uint16[a+4]=4*i+3,n.uint16[a+5]=4*i+0}return n}(h));for(var D=l.createIndexBuffer(Vr,!0),R=l.createVertexBuffer(k,t.collisionCircleLayout.members,!0),F=0,B=f;F<B.length;F+=1){var N=B[F],j=Lr(N.transform,N.invTransform,e.transform);T.draw(l,c.TRIANGLES,Mt.disabled,At.disabled,e.colorModeForRenderPass(),Et.disabled,j,n.id,R,D,t.SegmentVector.simpleSegment(0,2*N.circleOffset,N.circleArray.length,N.circleArray.length/2),null,e.transform.zoom,null,null,null)}R.destroy(),D.destroy()}}var Jr=t.identity(new Float32Array(16));function Kr(e,r,n,i,a,o){var s=t.getAnchorAlignment(e),l=-(s.horizontalAlign-.5)*r,c=-(s.verticalAlign-.5)*n,u=t.evaluateVariableOffset(e,i);return new t.Point((l/a+u[0])*o,(c/a+u[1])*o)}function Qr(e,r,n,i,a,o,s,l,c,u,f){var h=e.text.placedSymbolArray,p=e.text.dynamicLayoutVertexArray,d=e.icon.dynamicLayoutVertexArray,g={};p.clear();for(var m=0;m<h.length;m++){var v=h.get(m),y=v.hidden||!v.crossTileID||e.allowVerticalPlacement&&!v.placedOrientation?null:i[v.crossTileID];if(y){var x=new t.Point(v.anchorX,v.anchorY),b=$t(x,n?l:s),_=te(o.cameraToCenterDistance,b.signedDistanceFromCamera),w=a.evaluateSizeForFeature(e.textSizeData,u,v)*_/t.ONE_EM;n&&(w*=e.tilePixelRatio/c);for(var T=Kr(y.anchor,y.width,y.height,y.textOffset,y.textBoxScale,w),k=n?$t(x.add(T),s).point:b.point.add(r?T.rotate(-o.angle):T),M=e.allowVerticalPlacement&&v.placedOrientation===t.WritingMode.vertical?Math.PI/2:0,A=0;A<v.numGlyphs;A++)t.addDynamicAttributes(p,k,M);f&&v.associatedIconIndex>=0&&(g[v.associatedIconIndex]={shiftedAnchor:k,angle:M})}else ce(v.numGlyphs,p)}if(f){d.clear();for(var S=e.icon.placedSymbolArray,E=0;E<S.length;E++){var C=S.get(E);if(C.hidden)ce(C.numGlyphs,d);else{var L=g[E];if(L)for(var I=0;I<C.numGlyphs;I++)t.addDynamicAttributes(d,L.shiftedAnchor,L.angle);else ce(C.numGlyphs,d)}}e.icon.dynamicLayoutVertexBuffer.updateData(d)}e.text.dynamicLayoutVertexBuffer.updateData(p)}function $r(t,e,r){return r.iconsInText&&e?\"symbolTextAndIcon\":t?\"symbolSDF\":\"symbolIcon\"}function tn(e,r,n,i,a,o,s,l,c,u,f,h){for(var p=e.context,d=p.gl,g=e.transform,m=\"map\"===l,v=\"map\"===c,y=m&&\"point\"!==n.layout.get(\"symbol-placement\"),x=m&&!v&&!y,b=void 0!==n.layout.get(\"symbol-sort-key\").constantOr(1),_=e.depthModeForSublayer(0,Mt.ReadOnly),w=n.layout.get(\"text-variable-anchor\"),T=[],k=0,M=i;k<M.length;k+=1){var A=M[k],S=r.getTile(A),E=S.getBucket(n);if(E){var C=a?E.text:E.icon;if(C&&C.segments.get().length){var L=C.programConfigurations.get(n.id),I=a||E.sdfIcons,P=a?E.textSizeData:E.iconSizeData,z=v||0!==g.pitch,O=e.useProgram($r(I,a,E),L),D=t.evaluateSizeForZoom(P,g.zoom),R=void 0,F=[0,0],B=void 0,N=void 0,j=null,U=void 0;if(a)B=S.glyphAtlasTexture,N=d.LINEAR,R=S.glyphAtlasTexture.size,E.iconsInText&&(F=S.imageAtlasTexture.size,j=S.imageAtlasTexture,U=z||e.options.rotating||e.options.zooming||\"composite\"===P.kind||\"camera\"===P.kind?d.LINEAR:d.NEAREST);else{var V=1!==n.layout.get(\"icon-size\").constantOr(0)||E.iconsNeedLinear;B=S.imageAtlasTexture,N=I||e.options.rotating||e.options.zooming||V||z?d.LINEAR:d.NEAREST,R=S.imageAtlasTexture.size}var q=he(S,1,e.transform.zoom),H=Kt(A.posMatrix,v,m,e.transform,q),G=Qt(A.posMatrix,v,m,e.transform,q),Y=w&&E.hasTextData(),W=\"none\"!==n.layout.get(\"icon-text-fit\")&&Y&&E.hasIconData();y&&re(E,A.posMatrix,e,a,H,G,v,u);var X=e.translatePosMatrix(A.posMatrix,S,o,s),Z=y||a&&w||W?Jr:H,J=e.translatePosMatrix(G,S,o,s,!0),K=I&&0!==n.paint.get(a?\"text-halo-width\":\"icon-halo-width\").constantOr(1),Q={program:O,buffers:C,uniformValues:I?E.iconsInText?Gr(P.kind,D,x,v,e,X,Z,J,R,F):Hr(P.kind,D,x,v,e,X,Z,J,a,R,!0):qr(P.kind,D,x,v,e,X,Z,J,a,R),atlasTexture:B,atlasTextureIcon:j,atlasInterpolation:N,atlasInterpolationIcon:U,isSDF:I,hasHalo:K};if(b)for(var $=0,tt=C.segments.get();$<tt.length;$+=1){var et=tt[$];T.push({segments:new t.SegmentVector([et]),sortKey:et.sortKey,state:Q})}else T.push({segments:C.segments,sortKey:0,state:Q})}}}b&&T.sort((function(t,e){return t.sortKey-e.sortKey}));for(var rt=0,nt=T;rt<nt.length;rt+=1){var it=nt[rt],at=it.state;if(p.activeTexture.set(d.TEXTURE0),at.atlasTexture.bind(at.atlasInterpolation,d.CLAMP_TO_EDGE),at.atlasTextureIcon&&(p.activeTexture.set(d.TEXTURE1),at.atlasTextureIcon&&at.atlasTextureIcon.bind(at.atlasInterpolationIcon,d.CLAMP_TO_EDGE)),at.isSDF){var ot=at.uniformValues;at.hasHalo&&(ot.u_is_halo=1,en(at.buffers,it.segments,n,e,at.program,_,f,h,ot)),ot.u_is_halo=0}en(at.buffers,it.segments,n,e,at.program,_,f,h,at.uniformValues)}}function en(t,e,r,n,i,a,o,s,l){var c=n.context;i.draw(c,c.gl.TRIANGLES,a,o,s,Et.disabled,l,r.id,t.layoutVertexBuffer,t.indexBuffer,e,r.paint,n.transform.zoom,t.programConfigurations.get(r.id),t.dynamicLayoutVertexBuffer,t.opacityVertexBuffer)}function rn(t,e,r,n,i,a,o){var s,l,c,u,f,h=t.context.gl,p=r.paint.get(\"fill-pattern\"),d=p&&p.constantOr(1),g=r.getCrossfadeParameters();o?(l=d&&!r.getPaintProperty(\"fill-outline-color\")?\"fillOutlinePattern\":\"fillOutline\",s=h.LINES):(l=d?\"fillPattern\":\"fill\",s=h.TRIANGLES);for(var m=0,v=n;m<v.length;m+=1){var y=v[m],x=e.getTile(y);if(!d||x.patternsLoaded()){var b=x.getBucket(r);if(b){var _=b.programConfigurations.get(r.id),w=t.useProgram(l,_);d&&(t.context.activeTexture.set(h.TEXTURE0),x.imageAtlasTexture.bind(h.LINEAR,h.CLAMP_TO_EDGE),_.updatePaintBuffers(g));var T=p.constantOr(null);if(T&&x.imageAtlas){var k=x.imageAtlas,M=k.patternPositions[T.to.toString()],A=k.patternPositions[T.from.toString()];M&&A&&_.setConstantPatternPositions(M,A)}var S=t.translatePosMatrix(y.posMatrix,x,r.paint.get(\"fill-translate\"),r.paint.get(\"fill-translate-anchor\"));if(o){u=b.indexBuffer2,f=b.segments2;var E=[h.drawingBufferWidth,h.drawingBufferHeight];c=\"fillOutlinePattern\"===l&&d?Sr(S,t,g,x,E):Ar(S,E)}else u=b.indexBuffer,f=b.segments,c=d?Mr(S,t,g,x):kr(S);w.draw(t.context,s,i,t.stencilModeForClipping(y),a,Et.disabled,c,r.id,b.layoutVertexBuffer,u,f,r.paint,t.transform.zoom,_)}}}}function nn(t,e,r,n,i,a,o){for(var s=t.context,l=s.gl,c=r.paint.get(\"fill-extrusion-pattern\"),u=c.constantOr(1),f=r.getCrossfadeParameters(),h=r.paint.get(\"fill-extrusion-opacity\"),p=0,d=n;p<d.length;p+=1){var g=d[p],m=e.getTile(g),v=m.getBucket(r);if(v){var y=v.programConfigurations.get(r.id),x=t.useProgram(u?\"fillExtrusionPattern\":\"fillExtrusion\",y);u&&(t.context.activeTexture.set(l.TEXTURE0),m.imageAtlasTexture.bind(l.LINEAR,l.CLAMP_TO_EDGE),y.updatePaintBuffers(f));var b=c.constantOr(null);if(b&&m.imageAtlas){var _=m.imageAtlas,w=_.patternPositions[b.to.toString()],T=_.patternPositions[b.from.toString()];w&&T&&y.setConstantPatternPositions(w,T)}var k=t.translatePosMatrix(g.posMatrix,m,r.paint.get(\"fill-extrusion-translate\"),r.paint.get(\"fill-extrusion-translate-anchor\")),M=r.paint.get(\"fill-extrusion-vertical-gradient\"),A=u?Tr(k,t,M,h,g,f,m):wr(k,t,M,h);x.draw(s,s.gl.TRIANGLES,i,a,o,Et.backCCW,A,r.id,v.layoutVertexBuffer,v.indexBuffer,v.segments,r.paint,t.transform.zoom,y)}}}function an(e,r,n,i,a,o){var s=e.context,l=s.gl,c=r.fbo;if(c){var u=e.useProgram(\"hillshade\");s.activeTexture.set(l.TEXTURE0),l.bindTexture(l.TEXTURE_2D,c.colorAttachment.get());var f=function(e,r,n){var i=n.paint.get(\"hillshade-shadow-color\"),a=n.paint.get(\"hillshade-highlight-color\"),o=n.paint.get(\"hillshade-accent-color\"),s=n.paint.get(\"hillshade-illumination-direction\")*(Math.PI/180);\"viewport\"===n.paint.get(\"hillshade-illumination-anchor\")&&(s-=e.transform.angle);var l,c,u,f=!e.options.moving;return{u_matrix:e.transform.calculatePosMatrix(r.tileID.toUnwrapped(),f),u_image:0,u_latrange:(l=r.tileID,c=Math.pow(2,l.canonical.z),u=l.canonical.y,[new t.MercatorCoordinate(0,u/c).toLngLat().lat,new t.MercatorCoordinate(0,(u+1)/c).toLngLat().lat]),u_light:[n.paint.get(\"hillshade-exaggeration\"),s],u_shadow:i,u_highlight:a,u_accent:o}}(e,r,n);u.draw(s,l.TRIANGLES,i,a,o,Et.disabled,f,n.id,e.rasterBoundsBuffer,e.quadTriangleIndexBuffer,e.rasterBoundsSegments)}}function on(e,r,n,i,a,o,s){var l=e.context,c=l.gl,u=r.dem;if(u&&u.data){var f=u.dim,h=u.stride,p=u.getPixels();if(l.activeTexture.set(c.TEXTURE1),l.pixelStoreUnpackPremultiplyAlpha.set(!1),r.demTexture=r.demTexture||e.getTileTexture(h),r.demTexture){var d=r.demTexture;d.update(p,{premultiply:!1}),d.bind(c.NEAREST,c.CLAMP_TO_EDGE)}else r.demTexture=new t.Texture(l,p,c.RGBA,{premultiply:!1}),r.demTexture.bind(c.NEAREST,c.CLAMP_TO_EDGE);l.activeTexture.set(c.TEXTURE0);var g=r.fbo;if(!g){var m=new t.Texture(l,{width:f,height:f,data:null},c.RGBA);m.bind(c.LINEAR,c.CLAMP_TO_EDGE),(g=r.fbo=l.createFramebuffer(f,f,!0)).colorAttachment.set(m.texture)}l.bindFramebuffer.set(g.framebuffer),l.viewport.set([0,0,f,f]),e.useProgram(\"hillshadePrepare\").draw(l,c.TRIANGLES,a,o,s,Et.disabled,function(e,r,n){var i=r.stride,a=t.create();return t.ortho(a,0,t.EXTENT,-t.EXTENT,0,0,1),t.translate(a,a,[0,-t.EXTENT,0]),{u_matrix:a,u_image:1,u_dimension:[i,i],u_zoom:e.overscaledZ,u_maxzoom:n,u_unpack:r.getUnpackVector()}}(r.tileID,u,i),n.id,e.rasterBoundsBuffer,e.quadTriangleIndexBuffer,e.rasterBoundsSegments),r.needsHillshadePrepare=!1}}function sn(e,r,n,i,a){var o=i.paint.get(\"raster-fade-duration\");if(o>0){var s=t.browser.now(),l=(s-e.timeAdded)/o,c=r?(s-r.timeAdded)/o:-1,u=n.getSource(),f=a.coveringZoomLevel({tileSize:u.tileSize,roundZoom:u.roundZoom}),h=!r||Math.abs(r.tileID.overscaledZ-f)>Math.abs(e.tileID.overscaledZ-f),p=h&&e.refreshedUponExpiration?1:t.clamp(h?l:1-c,0,1);return e.refreshedUponExpiration&&l>=1&&(e.refreshedUponExpiration=!1),r?{opacity:1,mix:1-p}:{opacity:p,mix:0}}return{opacity:1,mix:0}}var ln=new t.Color(1,0,0,1),cn=new t.Color(0,1,0,1),un=new t.Color(0,0,1,1),fn=new t.Color(1,0,1,1),hn=new t.Color(0,1,1,1);function pn(t,e,r,n){gn(t,0,e+r/2,t.transform.width,r,n)}function dn(t,e,r,n){gn(t,e-r/2,0,r,t.transform.height,n)}function gn(e,r,n,i,a,o){var s=e.context,l=s.gl;l.enable(l.SCISSOR_TEST),l.scissor(r*t.browser.devicePixelRatio,n*t.browser.devicePixelRatio,i*t.browser.devicePixelRatio,a*t.browser.devicePixelRatio),s.clear({color:o}),l.disable(l.SCISSOR_TEST)}function mn(e,r,n){var i=e.context,a=i.gl,o=n.posMatrix,s=e.useProgram(\"debug\"),l=Mt.disabled,c=At.disabled,u=e.colorModeForRenderPass();i.activeTexture.set(a.TEXTURE0),e.emptyTexture.bind(a.LINEAR,a.CLAMP_TO_EDGE),s.draw(i,a.LINE_STRIP,l,c,u,Et.disabled,Ir(o,t.Color.red),\"$debug\",e.debugBuffer,e.tileBorderIndexBuffer,e.debugSegments);var f=r.getTileByID(n.key).latestRawTileData,h=Math.floor((f&&f.byteLength||0)/1024),p=r.getTile(n).tileSize,d=512/Math.min(p,512)*(n.overscaledZ/e.transform.zoom)*.5,g=n.canonical.toString();n.overscaledZ!==n.canonical.z&&(g+=\" => \"+n.overscaledZ),function(t,e){t.initDebugOverlayCanvas();var r=t.debugOverlayCanvas,n=t.context.gl,i=t.debugOverlayCanvas.getContext(\"2d\");i.clearRect(0,0,r.width,r.height),i.shadowColor=\"white\",i.shadowBlur=2,i.lineWidth=1.5,i.strokeStyle=\"white\",i.textBaseline=\"top\",i.font=\"bold 36px Open Sans, sans-serif\",i.fillText(e,5,5),i.strokeText(e,5,5),t.debugOverlayTexture.update(r),t.debugOverlayTexture.bind(n.LINEAR,n.CLAMP_TO_EDGE)}(e,g+\" \"+h+\"kb\"),s.draw(i,a.TRIANGLES,l,c,St.alphaBlended,Et.disabled,Ir(o,t.Color.transparent,d),\"$debug\",e.debugBuffer,e.quadTriangleIndexBuffer,e.debugSegments)}var vn={symbol:function(e,r,n,i,a){if(\"translucent\"===e.renderPass){var o=At.disabled,s=e.colorModeForRenderPass();n.layout.get(\"text-variable-anchor\")&&function(e,r,n,i,a,o,s){for(var l=r.transform,c=\"map\"===a,u=\"map\"===o,f=0,h=e;f<h.length;f+=1){var p=h[f],d=i.getTile(p),g=d.getBucket(n);if(g&&g.text&&g.text.segments.get().length){var m=t.evaluateSizeForZoom(g.textSizeData,l.zoom),v=he(d,1,r.transform.zoom),y=Kt(p.posMatrix,u,c,r.transform,v),x=\"none\"!==n.layout.get(\"icon-text-fit\")&&g.hasIconData();if(m){var b=Math.pow(2,l.zoom-d.tileID.overscaledZ);Qr(g,c,u,s,t.symbolSize,l,y,p.posMatrix,b,m,x)}}}}(i,e,n,r,n.layout.get(\"text-rotation-alignment\"),n.layout.get(\"text-pitch-alignment\"),a),0!==n.paint.get(\"icon-opacity\").constantOr(1)&&tn(e,r,n,i,!1,n.paint.get(\"icon-translate\"),n.paint.get(\"icon-translate-anchor\"),n.layout.get(\"icon-rotation-alignment\"),n.layout.get(\"icon-pitch-alignment\"),n.layout.get(\"icon-keep-upright\"),o,s),0!==n.paint.get(\"text-opacity\").constantOr(1)&&tn(e,r,n,i,!0,n.paint.get(\"text-translate\"),n.paint.get(\"text-translate-anchor\"),n.layout.get(\"text-rotation-alignment\"),n.layout.get(\"text-pitch-alignment\"),n.layout.get(\"text-keep-upright\"),o,s),r.map.showCollisionBoxes&&(Zr(e,r,n,i,n.paint.get(\"text-translate\"),n.paint.get(\"text-translate-anchor\"),!0),Zr(e,r,n,i,n.paint.get(\"icon-translate\"),n.paint.get(\"icon-translate-anchor\"),!1))}},circle:function(e,r,n,i){if(\"translucent\"===e.renderPass){var a=n.paint.get(\"circle-opacity\"),o=n.paint.get(\"circle-stroke-width\"),s=n.paint.get(\"circle-stroke-opacity\"),l=void 0!==n.layout.get(\"circle-sort-key\").constantOr(1);if(0!==a.constantOr(1)||0!==o.constantOr(1)&&0!==s.constantOr(1)){for(var c=e.context,u=c.gl,f=e.depthModeForSublayer(0,Mt.ReadOnly),h=At.disabled,p=e.colorModeForRenderPass(),d=[],g=0;g<i.length;g++){var m=i[g],v=r.getTile(m),y=v.getBucket(n);if(y){var x=y.programConfigurations.get(n.id),b={programConfiguration:x,program:e.useProgram(\"circle\",x),layoutVertexBuffer:y.layoutVertexBuffer,indexBuffer:y.indexBuffer,uniformValues:Er(e,m,v,n)};if(l)for(var _=0,w=y.segments.get();_<w.length;_+=1){var T=w[_];d.push({segments:new t.SegmentVector([T]),sortKey:T.sortKey,state:b})}else d.push({segments:y.segments,sortKey:0,state:b})}}l&&d.sort((function(t,e){return t.sortKey-e.sortKey}));for(var k=0,M=d;k<M.length;k+=1){var A=M[k],S=A.state;S.program.draw(c,u.TRIANGLES,f,h,p,Et.disabled,S.uniformValues,n.id,S.layoutVertexBuffer,S.indexBuffer,A.segments,n.paint,e.transform.zoom,S.programConfiguration)}}}},heatmap:function(e,r,n,i){if(0!==n.paint.get(\"heatmap-opacity\"))if(\"offscreen\"===e.renderPass){var a=e.context,o=a.gl,s=At.disabled,l=new St([o.ONE,o.ONE],t.Color.transparent,[!0,!0,!0,!0]);!function(t,e,r){var n=t.gl;t.activeTexture.set(n.TEXTURE1),t.viewport.set([0,0,e.width/4,e.height/4]);var i=r.heatmapFbo;if(i)n.bindTexture(n.TEXTURE_2D,i.colorAttachment.get()),t.bindFramebuffer.set(i.framebuffer);else{var a=n.createTexture();n.bindTexture(n.TEXTURE_2D,a),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_S,n.CLAMP_TO_EDGE),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_WRAP_T,n.CLAMP_TO_EDGE),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MIN_FILTER,n.LINEAR),n.texParameteri(n.TEXTURE_2D,n.TEXTURE_MAG_FILTER,n.LINEAR),i=r.heatmapFbo=t.createFramebuffer(e.width/4,e.height/4,!1),function(t,e,r,n){var i=t.gl;i.texImage2D(i.TEXTURE_2D,0,i.RGBA,e.width/4,e.height/4,0,i.RGBA,t.extRenderToTextureHalfFloat?t.extTextureHalfFloat.HALF_FLOAT_OES:i.UNSIGNED_BYTE,null),n.colorAttachment.set(r)}(t,e,a,i)}}(a,e,n),a.clear({color:t.Color.transparent});for(var c=0;c<i.length;c++){var u=i[c];if(!r.hasRenderableParent(u)){var f=r.getTile(u),h=f.getBucket(n);if(h){var p=h.programConfigurations.get(n.id);e.useProgram(\"heatmap\",p).draw(a,o.TRIANGLES,Mt.disabled,s,l,Et.disabled,zr(u.posMatrix,f,e.transform.zoom,n.paint.get(\"heatmap-intensity\")),n.id,h.layoutVertexBuffer,h.indexBuffer,h.segments,n.paint,e.transform.zoom,p)}}}a.viewport.set([0,0,e.width,e.height])}else\"translucent\"===e.renderPass&&(e.context.setColorMode(e.colorModeForRenderPass()),function(e,r){var n=e.context,i=n.gl,a=r.heatmapFbo;if(a){n.activeTexture.set(i.TEXTURE0),i.bindTexture(i.TEXTURE_2D,a.colorAttachment.get()),n.activeTexture.set(i.TEXTURE1);var o=r.colorRampTexture;o||(o=r.colorRampTexture=new t.Texture(n,r.colorRamp,i.RGBA)),o.bind(i.LINEAR,i.CLAMP_TO_EDGE),e.useProgram(\"heatmapTexture\").draw(n,i.TRIANGLES,Mt.disabled,At.disabled,e.colorModeForRenderPass(),Et.disabled,function(e,r,n,i){var a=t.create();t.ortho(a,0,e.width,e.height,0,0,1);var o=e.context.gl;return{u_matrix:a,u_world:[o.drawingBufferWidth,o.drawingBufferHeight],u_image:0,u_color_ramp:1,u_opacity:r.paint.get(\"heatmap-opacity\")}}(e,r),r.id,e.viewportBuffer,e.quadTriangleIndexBuffer,e.viewportSegments,r.paint,e.transform.zoom)}}(e,n))},line:function(e,r,n,i){if(\"translucent\"===e.renderPass){var a=n.paint.get(\"line-opacity\"),o=n.paint.get(\"line-width\");if(0!==a.constantOr(1)&&0!==o.constantOr(1)){var s=e.depthModeForSublayer(0,Mt.ReadOnly),l=e.colorModeForRenderPass(),c=n.paint.get(\"line-dasharray\"),u=n.paint.get(\"line-pattern\"),f=u.constantOr(1),h=n.paint.get(\"line-gradient\"),p=n.getCrossfadeParameters(),d=f?\"linePattern\":c?\"lineSDF\":h?\"lineGradient\":\"line\",g=e.context,m=g.gl,v=!0;if(h){g.activeTexture.set(m.TEXTURE0);var y=n.gradientTexture;if(!n.gradient)return;y||(y=n.gradientTexture=new t.Texture(g,n.gradient,m.RGBA)),y.bind(m.LINEAR,m.CLAMP_TO_EDGE)}for(var x=0,b=i;x<b.length;x+=1){var _=b[x],w=r.getTile(_);if(!f||w.patternsLoaded()){var T=w.getBucket(n);if(T){var k=T.programConfigurations.get(n.id),M=e.context.program.get(),A=e.useProgram(d,k),S=v||A.program!==M,E=u.constantOr(null);if(E&&w.imageAtlas){var C=w.imageAtlas,L=C.patternPositions[E.to.toString()],I=C.patternPositions[E.from.toString()];L&&I&&k.setConstantPatternPositions(L,I)}var P=f?Rr(e,w,n,p):c?Fr(e,w,n,c,p):h?Dr(e,w,n):Or(e,w,n);f?(g.activeTexture.set(m.TEXTURE0),w.imageAtlasTexture.bind(m.LINEAR,m.CLAMP_TO_EDGE),k.updatePaintBuffers(p)):c&&(S||e.lineAtlas.dirty)&&(g.activeTexture.set(m.TEXTURE0),e.lineAtlas.bind(g)),A.draw(g,m.TRIANGLES,s,e.stencilModeForClipping(_),l,Et.disabled,P,n.id,T.layoutVertexBuffer,T.indexBuffer,T.segments,n.paint,e.transform.zoom,k),v=!1}}}}}},fill:function(e,r,n,i){var a=n.paint.get(\"fill-color\"),o=n.paint.get(\"fill-opacity\");if(0!==o.constantOr(1)){var s=e.colorModeForRenderPass(),l=n.paint.get(\"fill-pattern\"),c=e.opaquePassEnabledForLayer()&&!l.constantOr(1)&&1===a.constantOr(t.Color.transparent).a&&1===o.constantOr(0)?\"opaque\":\"translucent\";if(e.renderPass===c){var u=e.depthModeForSublayer(1,\"opaque\"===e.renderPass?Mt.ReadWrite:Mt.ReadOnly);rn(e,r,n,i,u,s,!1)}if(\"translucent\"===e.renderPass&&n.paint.get(\"fill-antialias\")){var f=e.depthModeForSublayer(n.getPaintProperty(\"fill-outline-color\")?2:0,Mt.ReadOnly);rn(e,r,n,i,f,s,!0)}}},\"fill-extrusion\":function(t,e,r,n){var i=r.paint.get(\"fill-extrusion-opacity\");if(0!==i&&\"translucent\"===t.renderPass){var a=new Mt(t.context.gl.LEQUAL,Mt.ReadWrite,t.depthRangeFor3D);if(1!==i||r.paint.get(\"fill-extrusion-pattern\").constantOr(1))nn(t,e,r,n,a,At.disabled,St.disabled),nn(t,e,r,n,a,t.stencilModeFor3D(),t.colorModeForRenderPass());else{var o=t.colorModeForRenderPass();nn(t,e,r,n,a,At.disabled,o)}}},hillshade:function(t,e,r,n){if(\"offscreen\"===t.renderPass||\"translucent\"===t.renderPass){for(var i=t.context,a=e.getSource().maxzoom,o=t.depthModeForSublayer(0,Mt.ReadOnly),s=t.colorModeForRenderPass(),l=\"translucent\"===t.renderPass?t.stencilConfigForOverlap(n):[{},n],c=l[0],u=0,f=l[1];u<f.length;u+=1){var h=f[u],p=e.getTile(h);p.needsHillshadePrepare&&\"offscreen\"===t.renderPass?on(t,p,r,a,o,At.disabled,s):\"translucent\"===t.renderPass&&an(t,p,r,o,c[h.overscaledZ],s)}i.viewport.set([0,0,t.width,t.height])}},raster:function(t,e,r,n){if(\"translucent\"===t.renderPass&&0!==r.paint.get(\"raster-opacity\")&&n.length)for(var i=t.context,a=i.gl,o=e.getSource(),s=t.useProgram(\"raster\"),l=t.colorModeForRenderPass(),c=o instanceof P?[{},n]:t.stencilConfigForOverlap(n),u=c[0],f=c[1],h=f[f.length-1].overscaledZ,p=!t.options.moving,d=0,g=f;d<g.length;d+=1){var m=g[d],v=t.depthModeForSublayer(m.overscaledZ-h,1===r.paint.get(\"raster-opacity\")?Mt.ReadWrite:Mt.ReadOnly,a.LESS),y=e.getTile(m),x=t.transform.calculatePosMatrix(m.toUnwrapped(),p);y.registerFadeDuration(r.paint.get(\"raster-fade-duration\"));var b=e.findLoadedParent(m,0),_=sn(y,b,e,r,t.transform),w=void 0,T=void 0,k=\"nearest\"===r.paint.get(\"raster-resampling\")?a.NEAREST:a.LINEAR;i.activeTexture.set(a.TEXTURE0),y.texture.bind(k,a.CLAMP_TO_EDGE,a.LINEAR_MIPMAP_NEAREST),i.activeTexture.set(a.TEXTURE1),b?(b.texture.bind(k,a.CLAMP_TO_EDGE,a.LINEAR_MIPMAP_NEAREST),w=Math.pow(2,b.tileID.overscaledZ-y.tileID.overscaledZ),T=[y.tileID.canonical.x*w%1,y.tileID.canonical.y*w%1]):y.texture.bind(k,a.CLAMP_TO_EDGE,a.LINEAR_MIPMAP_NEAREST);var M=jr(x,T||[0,0],w||1,_,r);o instanceof P?s.draw(i,a.TRIANGLES,v,At.disabled,l,Et.disabled,M,r.id,o.boundsBuffer,t.quadTriangleIndexBuffer,o.boundsSegments):s.draw(i,a.TRIANGLES,v,u[m.overscaledZ],l,Et.disabled,M,r.id,t.rasterBoundsBuffer,t.quadTriangleIndexBuffer,t.rasterBoundsSegments)}},background:function(t,e,r){var n=r.paint.get(\"background-color\"),i=r.paint.get(\"background-opacity\");if(0!==i){var a=t.context,o=a.gl,s=t.transform,l=s.tileSize,c=r.paint.get(\"background-pattern\");if(!t.isPatternMissing(c)){var u=!c&&1===n.a&&1===i&&t.opaquePassEnabledForLayer()?\"opaque\":\"translucent\";if(t.renderPass===u){var f=At.disabled,h=t.depthModeForSublayer(0,\"opaque\"===u?Mt.ReadWrite:Mt.ReadOnly),p=t.colorModeForRenderPass(),d=t.useProgram(c?\"backgroundPattern\":\"background\"),g=s.coveringTiles({tileSize:l});c&&(a.activeTexture.set(o.TEXTURE0),t.imageManager.bind(t.context));for(var m=r.getCrossfadeParameters(),v=0,y=g;v<y.length;v+=1){var x=y[v],b=t.transform.calculatePosMatrix(x.toUnwrapped()),_=c?Wr(b,i,t,c,{tileID:x,tileSize:l},m):Yr(b,i,n);d.draw(a,o.TRIANGLES,h,f,p,Et.disabled,_,r.id,t.tileExtentBuffer,t.quadTriangleIndexBuffer,t.tileExtentSegments)}}}}},debug:function(t,e,r){for(var n=0;n<r.length;n++)mn(t,e,r[n])},custom:function(t,e,r){var n=t.context,i=r.implementation;if(\"offscreen\"===t.renderPass){var a=i.prerender;a&&(t.setCustomLayerDefaults(),n.setColorMode(t.colorModeForRenderPass()),a.call(i,n.gl,t.transform.customLayerMatrix()),n.setDirty(),t.setBaseState())}else if(\"translucent\"===t.renderPass){t.setCustomLayerDefaults(),n.setColorMode(t.colorModeForRenderPass()),n.setStencilMode(At.disabled);var o=\"3d\"===i.renderingMode?new Mt(t.context.gl.LEQUAL,Mt.ReadWrite,t.depthRangeFor3D):t.depthModeForSublayer(0,Mt.ReadOnly);n.setDepthMode(o),i.render(n.gl,t.transform.customLayerMatrix()),n.setDirty(),t.setBaseState(),n.bindFramebuffer.set(null)}}},yn=function(t,e){this.context=new Ct(t),this.transform=e,this._tileTextures={},this.setup(),this.numSublayers=Lt.maxUnderzooming+Lt.maxOverzooming+1,this.depthEpsilon=1/Math.pow(2,16),this.crossTileSymbolIndex=new Be,this.gpuTimers={}};yn.prototype.resize=function(e,r){if(this.width=e*t.browser.devicePixelRatio,this.height=r*t.browser.devicePixelRatio,this.context.viewport.set([0,0,this.width,this.height]),this.style)for(var n=0,i=this.style._order;n<i.length;n+=1)this.style._layers[i[n]].resize()},yn.prototype.setup=function(){var e=this.context,r=new t.StructArrayLayout2i4;r.emplaceBack(0,0),r.emplaceBack(t.EXTENT,0),r.emplaceBack(0,t.EXTENT),r.emplaceBack(t.EXTENT,t.EXTENT),this.tileExtentBuffer=e.createVertexBuffer(r,He.members),this.tileExtentSegments=t.SegmentVector.simpleSegment(0,0,4,2);var n=new t.StructArrayLayout2i4;n.emplaceBack(0,0),n.emplaceBack(t.EXTENT,0),n.emplaceBack(0,t.EXTENT),n.emplaceBack(t.EXTENT,t.EXTENT),this.debugBuffer=e.createVertexBuffer(n,He.members),this.debugSegments=t.SegmentVector.simpleSegment(0,0,4,5);var i=new t.StructArrayLayout4i8;i.emplaceBack(0,0,0,0),i.emplaceBack(t.EXTENT,0,t.EXTENT,0),i.emplaceBack(0,t.EXTENT,0,t.EXTENT),i.emplaceBack(t.EXTENT,t.EXTENT,t.EXTENT,t.EXTENT),this.rasterBoundsBuffer=e.createVertexBuffer(i,I.members),this.rasterBoundsSegments=t.SegmentVector.simpleSegment(0,0,4,2);var a=new t.StructArrayLayout2i4;a.emplaceBack(0,0),a.emplaceBack(1,0),a.emplaceBack(0,1),a.emplaceBack(1,1),this.viewportBuffer=e.createVertexBuffer(a,He.members),this.viewportSegments=t.SegmentVector.simpleSegment(0,0,4,2);var o=new t.StructArrayLayout1ui2;o.emplaceBack(0),o.emplaceBack(1),o.emplaceBack(3),o.emplaceBack(2),o.emplaceBack(0),this.tileBorderIndexBuffer=e.createIndexBuffer(o);var s=new t.StructArrayLayout3ui6;s.emplaceBack(0,1,2),s.emplaceBack(2,1,3),this.quadTriangleIndexBuffer=e.createIndexBuffer(s),this.emptyTexture=new t.Texture(e,{width:1,height:1,data:new Uint8Array([0,0,0,0])},e.gl.RGBA);var l=this.context.gl;this.stencilClearMode=new At({func:l.ALWAYS,mask:0},0,255,l.ZERO,l.ZERO,l.ZERO)},yn.prototype.clearStencil=function(){var e=this.context,r=e.gl;this.nextStencilID=1,this.currentStencilSource=void 0;var n=t.create();t.ortho(n,0,this.width,this.height,0,0,1),t.scale(n,n,[r.drawingBufferWidth,r.drawingBufferHeight,0]),this.useProgram(\"clippingMask\").draw(e,r.TRIANGLES,Mt.disabled,this.stencilClearMode,St.disabled,Et.disabled,Pr(n),\"$clipping\",this.viewportBuffer,this.quadTriangleIndexBuffer,this.viewportSegments)},yn.prototype._renderTileClippingMasks=function(t,e){if(this.currentStencilSource!==t.source&&t.isTileClipped()&&e&&e.length){this.currentStencilSource=t.source;var r=this.context,n=r.gl;this.nextStencilID+e.length>256&&this.clearStencil(),r.setColorMode(St.disabled),r.setDepthMode(Mt.disabled);var i=this.useProgram(\"clippingMask\");this._tileClippingMaskIDs={};for(var a=0,o=e;a<o.length;a+=1){var s=o[a],l=this._tileClippingMaskIDs[s.key]=this.nextStencilID++;i.draw(r,n.TRIANGLES,Mt.disabled,new At({func:n.ALWAYS,mask:0},l,255,n.KEEP,n.KEEP,n.REPLACE),St.disabled,Et.disabled,Pr(s.posMatrix),\"$clipping\",this.tileExtentBuffer,this.quadTriangleIndexBuffer,this.tileExtentSegments)}}},yn.prototype.stencilModeFor3D=function(){this.currentStencilSource=void 0,this.nextStencilID+1>256&&this.clearStencil();var t=this.nextStencilID++,e=this.context.gl;return new At({func:e.NOTEQUAL,mask:255},t,255,e.KEEP,e.KEEP,e.REPLACE)},yn.prototype.stencilModeForClipping=function(t){var e=this.context.gl;return new At({func:e.EQUAL,mask:255},this._tileClippingMaskIDs[t.key],0,e.KEEP,e.KEEP,e.REPLACE)},yn.prototype.stencilConfigForOverlap=function(t){var e,r=this.context.gl,n=t.sort((function(t,e){return e.overscaledZ-t.overscaledZ})),i=n[n.length-1].overscaledZ,a=n[0].overscaledZ-i+1;if(a>1){this.currentStencilSource=void 0,this.nextStencilID+a>256&&this.clearStencil();for(var o={},s=0;s<a;s++)o[s+i]=new At({func:r.GEQUAL,mask:255},s+this.nextStencilID,255,r.KEEP,r.KEEP,r.REPLACE);return this.nextStencilID+=a,[o,n]}return[(e={},e[i]=At.disabled,e),n]},yn.prototype.colorModeForRenderPass=function(){var e=this.context.gl;return this._showOverdrawInspector?new St([e.CONSTANT_COLOR,e.ONE],new t.Color(1/8,1/8,1/8,0),[!0,!0,!0,!0]):\"opaque\"===this.renderPass?St.unblended:St.alphaBlended},yn.prototype.depthModeForSublayer=function(t,e,r){if(!this.opaquePassEnabledForLayer())return Mt.disabled;var n=1-((1+this.currentLayer)*this.numSublayers+t)*this.depthEpsilon;return new Mt(r||this.context.gl.LEQUAL,e,[n,n])},yn.prototype.opaquePassEnabledForLayer=function(){return this.currentLayer<this.opaquePassCutoff},yn.prototype.render=function(e,r){var n=this;this.style=e,this.options=r,this.lineAtlas=e.lineAtlas,this.imageManager=e.imageManager,this.glyphManager=e.glyphManager,this.symbolFadeChange=e.placement.symbolFadeChange(t.browser.now()),this.imageManager.beginFrame();var i=this.style._order,a=this.style.sourceCaches;for(var o in a){var s=a[o];s.used&&s.prepare(this.context)}var l,c,u={},f={},h={};for(var p in a){var d=a[p];u[p]=d.getVisibleCoordinates(),f[p]=u[p].slice().reverse(),h[p]=d.getVisibleCoordinates(!0).reverse()}this.opaquePassCutoff=1/0;for(var g=0;g<i.length;g++)if(this.style._layers[i[g]].is3D()){this.opaquePassCutoff=g;break}this.renderPass=\"offscreen\";for(var m=0,v=i;m<v.length;m+=1){var y=this.style._layers[v[m]];if(y.hasOffscreenPass()&&!y.isHidden(this.transform.zoom)){var x=f[y.source];(\"custom\"===y.type||x.length)&&this.renderLayer(this,a[y.source],y,x)}}for(this.context.bindFramebuffer.set(null),this.context.clear({color:r.showOverdrawInspector?t.Color.black:t.Color.transparent,depth:1}),this.clearStencil(),this._showOverdrawInspector=r.showOverdrawInspector,this.depthRangeFor3D=[0,1-(e._order.length+2)*this.numSublayers*this.depthEpsilon],this.renderPass=\"opaque\",this.currentLayer=i.length-1;this.currentLayer>=0;this.currentLayer--){var b=this.style._layers[i[this.currentLayer]],_=a[b.source],w=u[b.source];this._renderTileClippingMasks(b,w),this.renderLayer(this,_,b,w)}for(this.renderPass=\"translucent\",this.currentLayer=0;this.currentLayer<i.length;this.currentLayer++){var T=this.style._layers[i[this.currentLayer]],k=a[T.source],M=(\"symbol\"===T.type?h:f)[T.source];this._renderTileClippingMasks(T,u[T.source]),this.renderLayer(this,k,T,M)}this.options.showTileBoundaries&&(t.values(this.style._layers).forEach((function(t){t.source&&!t.isHidden(n.transform.zoom)&&(t.source!==(c&&c.id)&&(c=n.style.sourceCaches[t.source]),(!l||l.getSource().maxzoom<c.getSource().maxzoom)&&(l=c))})),l&&vn.debug(this,l,l.getVisibleCoordinates())),this.options.showPadding&&function(t){var e=t.transform.padding;pn(t,t.transform.height-(e.top||0),3,ln),pn(t,e.bottom||0,3,cn),dn(t,e.left||0,3,un),dn(t,t.transform.width-(e.right||0),3,fn);var r=t.transform.centerPoint;!function(t,e,r,n){gn(t,e-1,r-10,2,20,n),gn(t,e-10,r-1,20,2,n)}(t,r.x,t.transform.height-r.y,hn)}(this),this.context.setDefault()},yn.prototype.renderLayer=function(t,e,r,n){r.isHidden(this.transform.zoom)||(\"background\"===r.type||\"custom\"===r.type||n.length)&&(this.id=r.id,this.gpuTimingStart(r),vn[r.type](t,e,r,n,this.style.placement.variableOffsets),this.gpuTimingEnd())},yn.prototype.gpuTimingStart=function(t){if(this.options.gpuTiming){var e=this.context.extTimerQuery,r=this.gpuTimers[t.id];r||(r=this.gpuTimers[t.id]={calls:0,cpuTime:0,query:e.createQueryEXT()}),r.calls++,e.beginQueryEXT(e.TIME_ELAPSED_EXT,r.query)}},yn.prototype.gpuTimingEnd=function(){if(this.options.gpuTiming){var t=this.context.extTimerQuery;t.endQueryEXT(t.TIME_ELAPSED_EXT)}},yn.prototype.collectGpuTimers=function(){var t=this.gpuTimers;return this.gpuTimers={},t},yn.prototype.queryGpuTimers=function(t){var e={};for(var r in t){var n=t[r],i=this.context.extTimerQuery,a=i.getQueryObjectEXT(n.query,i.QUERY_RESULT_EXT)/1e6;i.deleteQueryEXT(n.query),e[r]=a}return e},yn.prototype.translatePosMatrix=function(e,r,n,i,a){if(!n[0]&&!n[1])return e;var o=a?\"map\"===i?this.transform.angle:0:\"viewport\"===i?-this.transform.angle:0;if(o){var s=Math.sin(o),l=Math.cos(o);n=[n[0]*l-n[1]*s,n[0]*s+n[1]*l]}var c=[a?n[0]:he(r,n[0],this.transform.zoom),a?n[1]:he(r,n[1],this.transform.zoom),0],u=new Float32Array(16);return t.translate(u,e,c),u},yn.prototype.saveTileTexture=function(t){var e=this._tileTextures[t.size[0]];e?e.push(t):this._tileTextures[t.size[0]]=[t]},yn.prototype.getTileTexture=function(t){var e=this._tileTextures[t];return e&&e.length>0?e.pop():null},yn.prototype.isPatternMissing=function(t){if(!t)return!1;if(!t.from||!t.to)return!0;var e=this.imageManager.getPattern(t.from.toString()),r=this.imageManager.getPattern(t.to.toString());return!e||!r},yn.prototype.useProgram=function(t,e){this.cache=this.cache||{};var r=\"\"+t+(e?e.cacheKey:\"\")+(this._showOverdrawInspector?\"/overdraw\":\"\");return this.cache[r]||(this.cache[r]=new br(this.context,yr[t],e,Xr[t],this._showOverdrawInspector)),this.cache[r]},yn.prototype.setCustomLayerDefaults=function(){this.context.unbindVAO(),this.context.cullFace.setDefault(),this.context.activeTexture.setDefault(),this.context.pixelStoreUnpack.setDefault(),this.context.pixelStoreUnpackPremultiplyAlpha.setDefault(),this.context.pixelStoreUnpackFlipY.setDefault()},yn.prototype.setBaseState=function(){var t=this.context.gl;this.context.cullFace.set(!1),this.context.viewport.set([0,0,this.width,this.height]),this.context.blendEquation.set(t.FUNC_ADD)},yn.prototype.initDebugOverlayCanvas=function(){null==this.debugOverlayCanvas&&(this.debugOverlayCanvas=t.window.document.createElement(\"canvas\"),this.debugOverlayCanvas.width=512,this.debugOverlayCanvas.height=512,this.debugOverlayTexture=new t.Texture(this.context,this.debugOverlayCanvas,this.context.gl.RGBA))},yn.prototype.destroy=function(){this.emptyTexture.destroy(),this.debugOverlayTexture&&this.debugOverlayTexture.destroy()};var xn=function(t,e){this.points=t,this.planes=e};xn.fromInvProjectionMatrix=function(e,r,n){var i=Math.pow(2,n),a=[[-1,1,-1,1],[1,1,-1,1],[1,-1,-1,1],[-1,-1,-1,1],[-1,1,1,1],[1,1,1,1],[1,-1,1,1],[-1,-1,1,1]].map((function(r){return t.transformMat4([],r,e)})).map((function(e){return t.scale$1([],e,1/e[3]/r*i)})),o=[[0,1,2],[6,5,4],[0,3,7],[2,1,5],[3,2,6],[0,4,5]].map((function(e){var r=t.sub([],a[e[0]],a[e[1]]),n=t.sub([],a[e[2]],a[e[1]]),i=t.normalize([],t.cross([],r,n)),o=-t.dot(i,a[e[1]]);return i.concat(o)}));return new xn(a,o)};var bn=function(e,r){this.min=e,this.max=r,this.center=t.scale$2([],t.add([],this.min,this.max),.5)};bn.prototype.quadrant=function(e){for(var r=[e%2==0,e<2],n=t.clone$2(this.min),i=t.clone$2(this.max),a=0;a<r.length;a++)n[a]=r[a]?this.min[a]:this.center[a],i[a]=r[a]?this.center[a]:this.max[a];return i[2]=this.max[2],new bn(n,i)},bn.prototype.distanceX=function(t){return Math.max(Math.min(this.max[0],t[0]),this.min[0])-t[0]},bn.prototype.distanceY=function(t){return Math.max(Math.min(this.max[1],t[1]),this.min[1])-t[1]},bn.prototype.intersects=function(e){for(var r=[[this.min[0],this.min[1],0,1],[this.max[0],this.min[1],0,1],[this.max[0],this.max[1],0,1],[this.min[0],this.max[1],0,1]],n=!0,i=0;i<e.planes.length;i++){for(var a=e.planes[i],o=0,s=0;s<r.length;s++)o+=t.dot$1(a,r[s])>=0;if(0===o)return 0;o!==r.length&&(n=!1)}if(n)return 2;for(var l=0;l<3;l++){for(var c=Number.MAX_VALUE,u=-Number.MAX_VALUE,f=0;f<e.points.length;f++){var h=e.points[f][l]-this.min[l];c=Math.min(c,h),u=Math.max(u,h)}if(u<0||c>this.max[l]-this.min[l])return 0}return 1};var _n=function(t,e,r,n){if(void 0===t&&(t=0),void 0===e&&(e=0),void 0===r&&(r=0),void 0===n&&(n=0),isNaN(t)||t<0||isNaN(e)||e<0||isNaN(r)||r<0||isNaN(n)||n<0)throw new Error(\"Invalid value for edge-insets, top, bottom, left and right must all be numbers\");this.top=t,this.bottom=e,this.left=r,this.right=n};_n.prototype.interpolate=function(e,r,n){return null!=r.top&&null!=e.top&&(this.top=t.number(e.top,r.top,n)),null!=r.bottom&&null!=e.bottom&&(this.bottom=t.number(e.bottom,r.bottom,n)),null!=r.left&&null!=e.left&&(this.left=t.number(e.left,r.left,n)),null!=r.right&&null!=e.right&&(this.right=t.number(e.right,r.right,n)),this},_n.prototype.getCenter=function(e,r){var n=t.clamp((this.left+e-this.right)/2,0,e),i=t.clamp((this.top+r-this.bottom)/2,0,r);return new t.Point(n,i)},_n.prototype.equals=function(t){return this.top===t.top&&this.bottom===t.bottom&&this.left===t.left&&this.right===t.right},_n.prototype.clone=function(){return new _n(this.top,this.bottom,this.left,this.right)},_n.prototype.toJSON=function(){return{top:this.top,bottom:this.bottom,left:this.left,right:this.right}};var wn=function(e,r,n,i,a){this.tileSize=512,this.maxValidLatitude=85.051129,this._renderWorldCopies=void 0===a||a,this._minZoom=e||0,this._maxZoom=r||22,this._minPitch=null==n?0:n,this._maxPitch=null==i?60:i,this.setMaxBounds(),this.width=0,this.height=0,this._center=new t.LngLat(0,0),this.zoom=0,this.angle=0,this._fov=.6435011087932844,this._pitch=0,this._unmodified=!0,this._edgeInsets=new _n,this._posMatrixCache={},this._alignedPosMatrixCache={}},Tn={minZoom:{configurable:!0},maxZoom:{configurable:!0},minPitch:{configurable:!0},maxPitch:{configurable:!0},renderWorldCopies:{configurable:!0},worldSize:{configurable:!0},centerOffset:{configurable:!0},size:{configurable:!0},bearing:{configurable:!0},pitch:{configurable:!0},fov:{configurable:!0},zoom:{configurable:!0},center:{configurable:!0},padding:{configurable:!0},centerPoint:{configurable:!0},unmodified:{configurable:!0},point:{configurable:!0}};wn.prototype.clone=function(){var t=new wn(this._minZoom,this._maxZoom,this._minPitch,this.maxPitch,this._renderWorldCopies);return t.tileSize=this.tileSize,t.latRange=this.latRange,t.width=this.width,t.height=this.height,t._center=this._center,t.zoom=this.zoom,t.angle=this.angle,t._fov=this._fov,t._pitch=this._pitch,t._unmodified=this._unmodified,t._edgeInsets=this._edgeInsets.clone(),t._calcMatrices(),t},Tn.minZoom.get=function(){return this._minZoom},Tn.minZoom.set=function(t){this._minZoom!==t&&(this._minZoom=t,this.zoom=Math.max(this.zoom,t))},Tn.maxZoom.get=function(){return this._maxZoom},Tn.maxZoom.set=function(t){this._maxZoom!==t&&(this._maxZoom=t,this.zoom=Math.min(this.zoom,t))},Tn.minPitch.get=function(){return this._minPitch},Tn.minPitch.set=function(t){this._minPitch!==t&&(this._minPitch=t,this.pitch=Math.max(this.pitch,t))},Tn.maxPitch.get=function(){return this._maxPitch},Tn.maxPitch.set=function(t){this._maxPitch!==t&&(this._maxPitch=t,this.pitch=Math.min(this.pitch,t))},Tn.renderWorldCopies.get=function(){return this._renderWorldCopies},Tn.renderWorldCopies.set=function(t){void 0===t?t=!0:null===t&&(t=!1),this._renderWorldCopies=t},Tn.worldSize.get=function(){return this.tileSize*this.scale},Tn.centerOffset.get=function(){return this.centerPoint._sub(this.size._div(2))},Tn.size.get=function(){return new t.Point(this.width,this.height)},Tn.bearing.get=function(){return-this.angle/Math.PI*180},Tn.bearing.set=function(e){var r=-t.wrap(e,-180,180)*Math.PI/180;this.angle!==r&&(this._unmodified=!1,this.angle=r,this._calcMatrices(),this.rotationMatrix=t.create$2(),t.rotate(this.rotationMatrix,this.rotationMatrix,this.angle))},Tn.pitch.get=function(){return this._pitch/Math.PI*180},Tn.pitch.set=function(e){var r=t.clamp(e,this.minPitch,this.maxPitch)/180*Math.PI;this._pitch!==r&&(this._unmodified=!1,this._pitch=r,this._calcMatrices())},Tn.fov.get=function(){return this._fov/Math.PI*180},Tn.fov.set=function(t){t=Math.max(.01,Math.min(60,t)),this._fov!==t&&(this._unmodified=!1,this._fov=t/180*Math.PI,this._calcMatrices())},Tn.zoom.get=function(){return this._zoom},Tn.zoom.set=function(t){var e=Math.min(Math.max(t,this.minZoom),this.maxZoom);this._zoom!==e&&(this._unmodified=!1,this._zoom=e,this.scale=this.zoomScale(e),this.tileZoom=Math.floor(e),this.zoomFraction=e-this.tileZoom,this._constrain(),this._calcMatrices())},Tn.center.get=function(){return this._center},Tn.center.set=function(t){t.lat===this._center.lat&&t.lng===this._center.lng||(this._unmodified=!1,this._center=t,this._constrain(),this._calcMatrices())},Tn.padding.get=function(){return this._edgeInsets.toJSON()},Tn.padding.set=function(t){this._edgeInsets.equals(t)||(this._unmodified=!1,this._edgeInsets.interpolate(this._edgeInsets,t,1),this._calcMatrices())},Tn.centerPoint.get=function(){return this._edgeInsets.getCenter(this.width,this.height)},wn.prototype.isPaddingEqual=function(t){return this._edgeInsets.equals(t)},wn.prototype.interpolatePadding=function(t,e,r){this._unmodified=!1,this._edgeInsets.interpolate(t,e,r),this._constrain(),this._calcMatrices()},wn.prototype.coveringZoomLevel=function(t){var e=(t.roundZoom?Math.round:Math.floor)(this.zoom+this.scaleZoom(this.tileSize/t.tileSize));return Math.max(0,e)},wn.prototype.getVisibleUnwrappedCoordinates=function(e){var r=[new t.UnwrappedTileID(0,e)];if(this._renderWorldCopies)for(var n=this.pointCoordinate(new t.Point(0,0)),i=this.pointCoordinate(new t.Point(this.width,0)),a=this.pointCoordinate(new t.Point(this.width,this.height)),o=this.pointCoordinate(new t.Point(0,this.height)),s=Math.floor(Math.min(n.x,i.x,a.x,o.x)),l=Math.floor(Math.max(n.x,i.x,a.x,o.x)),c=s-1;c<=l+1;c++)0!==c&&r.push(new t.UnwrappedTileID(c,e));return r},wn.prototype.coveringTiles=function(e){var r=this.coveringZoomLevel(e),n=r;if(void 0!==e.minzoom&&r<e.minzoom)return[];void 0!==e.maxzoom&&r>e.maxzoom&&(r=e.maxzoom);var i=t.MercatorCoordinate.fromLngLat(this.center),a=Math.pow(2,r),o=[a*i.x,a*i.y,0],s=xn.fromInvProjectionMatrix(this.invProjMatrix,this.worldSize,r),l=e.minzoom||0;this.pitch<=60&&this._edgeInsets.top<.1&&(l=r);var c=function(t){return{aabb:new bn([t*a,0,0],[(t+1)*a,a,0]),zoom:0,x:0,y:0,wrap:t,fullyVisible:!1}},u=[],f=[],h=r,p=e.reparseOverscaled?n:r;if(this._renderWorldCopies)for(var d=1;d<=3;d++)u.push(c(-d)),u.push(c(d));for(u.push(c(0));u.length>0;){var g=u.pop(),m=g.x,v=g.y,y=g.fullyVisible;if(!y){var x=g.aabb.intersects(s);if(0===x)continue;y=2===x}var b=g.aabb.distanceX(o),_=g.aabb.distanceY(o),w=Math.max(Math.abs(b),Math.abs(_));if(g.zoom===h||w>3+(1<<h-g.zoom)-2&&g.zoom>=l)f.push({tileID:new t.OverscaledTileID(g.zoom===h?p:g.zoom,g.wrap,g.zoom,m,v),distanceSq:t.sqrLen([o[0]-.5-m,o[1]-.5-v])});else for(var T=0;T<4;T++){var k=(m<<1)+T%2,M=(v<<1)+(T>>1);u.push({aabb:g.aabb.quadrant(T),zoom:g.zoom+1,x:k,y:M,wrap:g.wrap,fullyVisible:y})}}return f.sort((function(t,e){return t.distanceSq-e.distanceSq})).map((function(t){return t.tileID}))},wn.prototype.resize=function(t,e){this.width=t,this.height=e,this.pixelsToGLUnits=[2/t,-2/e],this._constrain(),this._calcMatrices()},Tn.unmodified.get=function(){return this._unmodified},wn.prototype.zoomScale=function(t){return Math.pow(2,t)},wn.prototype.scaleZoom=function(t){return Math.log(t)/Math.LN2},wn.prototype.project=function(e){var r=t.clamp(e.lat,-this.maxValidLatitude,this.maxValidLatitude);return new t.Point(t.mercatorXfromLng(e.lng)*this.worldSize,t.mercatorYfromLat(r)*this.worldSize)},wn.prototype.unproject=function(e){return new t.MercatorCoordinate(e.x/this.worldSize,e.y/this.worldSize).toLngLat()},Tn.point.get=function(){return this.project(this.center)},wn.prototype.setLocationAtPoint=function(e,r){var n=this.pointCoordinate(r),i=this.pointCoordinate(this.centerPoint),a=this.locationCoordinate(e),o=new t.MercatorCoordinate(a.x-(n.x-i.x),a.y-(n.y-i.y));this.center=this.coordinateLocation(o),this._renderWorldCopies&&(this.center=this.center.wrap())},wn.prototype.locationPoint=function(t){return this.coordinatePoint(this.locationCoordinate(t))},wn.prototype.pointLocation=function(t){return this.coordinateLocation(this.pointCoordinate(t))},wn.prototype.locationCoordinate=function(e){return t.MercatorCoordinate.fromLngLat(e)},wn.prototype.coordinateLocation=function(t){return t.toLngLat()},wn.prototype.pointCoordinate=function(e){var r=[e.x,e.y,0,1],n=[e.x,e.y,1,1];t.transformMat4(r,r,this.pixelMatrixInverse),t.transformMat4(n,n,this.pixelMatrixInverse);var i=r[3],a=n[3],o=r[1]/i,s=n[1]/a,l=r[2]/i,c=n[2]/a,u=l===c?0:(0-l)/(c-l);return new t.MercatorCoordinate(t.number(r[0]/i,n[0]/a,u)/this.worldSize,t.number(o,s,u)/this.worldSize)},wn.prototype.coordinatePoint=function(e){var r=[e.x*this.worldSize,e.y*this.worldSize,0,1];return t.transformMat4(r,r,this.pixelMatrix),new t.Point(r[0]/r[3],r[1]/r[3])},wn.prototype.getBounds=function(){return(new t.LngLatBounds).extend(this.pointLocation(new t.Point(0,0))).extend(this.pointLocation(new t.Point(this.width,0))).extend(this.pointLocation(new t.Point(this.width,this.height))).extend(this.pointLocation(new t.Point(0,this.height)))},wn.prototype.getMaxBounds=function(){return this.latRange&&2===this.latRange.length&&this.lngRange&&2===this.lngRange.length?new t.LngLatBounds([this.lngRange[0],this.latRange[0]],[this.lngRange[1],this.latRange[1]]):null},wn.prototype.setMaxBounds=function(t){t?(this.lngRange=[t.getWest(),t.getEast()],this.latRange=[t.getSouth(),t.getNorth()],this._constrain()):(this.lngRange=null,this.latRange=[-this.maxValidLatitude,this.maxValidLatitude])},wn.prototype.calculatePosMatrix=function(e,r){void 0===r&&(r=!1);var n=e.key,i=r?this._alignedPosMatrixCache:this._posMatrixCache;if(i[n])return i[n];var a=e.canonical,o=this.worldSize/this.zoomScale(a.z),s=a.x+Math.pow(2,a.z)*e.wrap,l=t.identity(new Float64Array(16));return t.translate(l,l,[s*o,a.y*o,0]),t.scale(l,l,[o/t.EXTENT,o/t.EXTENT,1]),t.multiply(l,r?this.alignedProjMatrix:this.projMatrix,l),i[n]=new Float32Array(l),i[n]},wn.prototype.customLayerMatrix=function(){return this.mercatorMatrix.slice()},wn.prototype._constrain=function(){if(this.center&&this.width&&this.height&&!this._constraining){this._constraining=!0;var e,r,n,i,a=-90,o=90,s=-180,l=180,c=this.size,u=this._unmodified;if(this.latRange){var f=this.latRange;a=t.mercatorYfromLat(f[1])*this.worldSize,e=(o=t.mercatorYfromLat(f[0])*this.worldSize)-a<c.y?c.y/(o-a):0}if(this.lngRange){var h=this.lngRange;s=t.mercatorXfromLng(h[0])*this.worldSize,r=(l=t.mercatorXfromLng(h[1])*this.worldSize)-s<c.x?c.x/(l-s):0}var p=this.point,d=Math.max(r||0,e||0);if(d)return this.center=this.unproject(new t.Point(r?(l+s)/2:p.x,e?(o+a)/2:p.y)),this.zoom+=this.scaleZoom(d),this._unmodified=u,void(this._constraining=!1);if(this.latRange){var g=p.y,m=c.y/2;g-m<a&&(i=a+m),g+m>o&&(i=o-m)}if(this.lngRange){var v=p.x,y=c.x/2;v-y<s&&(n=s+y),v+y>l&&(n=l-y)}void 0===n&&void 0===i||(this.center=this.unproject(new t.Point(void 0!==n?n:p.x,void 0!==i?i:p.y))),this._unmodified=u,this._constraining=!1}},wn.prototype._calcMatrices=function(){if(this.height){var e=this.centerOffset;this.cameraToCenterDistance=.5/Math.tan(this._fov/2)*this.height;var r=Math.PI/2+this._pitch,n=this._fov*(.5+e.y/this.height),i=Math.sin(n)*this.cameraToCenterDistance/Math.sin(t.clamp(Math.PI-r-n,.01,Math.PI-.01)),a=this.point,o=a.x,s=a.y,l=1.01*(Math.cos(Math.PI/2-this._pitch)*i+this.cameraToCenterDistance),c=this.height/50,u=new Float64Array(16);t.perspective(u,this._fov,this.width/this.height,c,l),u[8]=2*-e.x/this.width,u[9]=2*e.y/this.height,t.scale(u,u,[1,-1,1]),t.translate(u,u,[0,0,-this.cameraToCenterDistance]),t.rotateX(u,u,this._pitch),t.rotateZ(u,u,this.angle),t.translate(u,u,[-o,-s,0]),this.mercatorMatrix=t.scale([],u,[this.worldSize,this.worldSize,this.worldSize]),t.scale(u,u,[1,1,t.mercatorZfromAltitude(1,this.center.lat)*this.worldSize,1]),this.projMatrix=u,this.invProjMatrix=t.invert([],this.projMatrix);var f=this.width%2/2,h=this.height%2/2,p=Math.cos(this.angle),d=Math.sin(this.angle),g=o-Math.round(o)+p*f+d*h,m=s-Math.round(s)+p*h+d*f,v=new Float64Array(u);if(t.translate(v,v,[g>.5?g-1:g,m>.5?m-1:m,0]),this.alignedProjMatrix=v,u=t.create(),t.scale(u,u,[this.width/2,-this.height/2,1]),t.translate(u,u,[1,-1,0]),this.labelPlaneMatrix=u,u=t.create(),t.scale(u,u,[1,-1,1]),t.translate(u,u,[-1,-1,0]),t.scale(u,u,[2/this.width,2/this.height,1]),this.glCoordMatrix=u,this.pixelMatrix=t.multiply(new Float64Array(16),this.labelPlaneMatrix,this.projMatrix),!(u=t.invert(new Float64Array(16),this.pixelMatrix)))throw new Error(\"failed to invert matrix\");this.pixelMatrixInverse=u,this._posMatrixCache={},this._alignedPosMatrixCache={}}},wn.prototype.maxPitchScaleFactor=function(){if(!this.pixelMatrixInverse)return 1;var e=this.pointCoordinate(new t.Point(0,0)),r=[e.x*this.worldSize,e.y*this.worldSize,0,1];return t.transformMat4(r,r,this.pixelMatrix)[3]/this.cameraToCenterDistance},wn.prototype.getCameraPoint=function(){var e=Math.tan(this._pitch)*(this.cameraToCenterDistance||1);return this.centerPoint.add(new t.Point(0,e))},wn.prototype.getCameraQueryGeometry=function(e){var r=this.getCameraPoint();if(1===e.length)return[e[0],r];for(var n=r.x,i=r.y,a=r.x,o=r.y,s=0,l=e;s<l.length;s+=1){var c=l[s];n=Math.min(n,c.x),i=Math.min(i,c.y),a=Math.max(a,c.x),o=Math.max(o,c.y)}return[new t.Point(n,i),new t.Point(a,i),new t.Point(a,o),new t.Point(n,o),new t.Point(n,i)]},Object.defineProperties(wn.prototype,Tn);var kn=function(e){var r,n,i,a;this._hashName=e&&encodeURIComponent(e),t.bindAll([\"_getCurrentHash\",\"_onHashChange\",\"_updateHash\"],this),this._updateHash=(r=this._updateHashUnthrottled.bind(this),n=!1,i=null,a=function(){i=null,n&&(r(),i=setTimeout(a,300),n=!1)},function(){return n=!0,i||a(),i})};kn.prototype.addTo=function(e){return this._map=e,t.window.addEventListener(\"hashchange\",this._onHashChange,!1),this._map.on(\"moveend\",this._updateHash),this},kn.prototype.remove=function(){return t.window.removeEventListener(\"hashchange\",this._onHashChange,!1),this._map.off(\"moveend\",this._updateHash),clearTimeout(this._updateHash()),delete this._map,this},kn.prototype.getHashString=function(e){var r=this._map.getCenter(),n=Math.round(100*this._map.getZoom())/100,i=Math.ceil((n*Math.LN2+Math.log(512/360/.5))/Math.LN10),a=Math.pow(10,i),o=Math.round(r.lng*a)/a,s=Math.round(r.lat*a)/a,l=this._map.getBearing(),c=this._map.getPitch(),u=\"\";if(u+=e?\"/\"+o+\"/\"+s+\"/\"+n:n+\"/\"+s+\"/\"+o,(l||c)&&(u+=\"/\"+Math.round(10*l)/10),c&&(u+=\"/\"+Math.round(c)),this._hashName){var f=this._hashName,h=!1,p=t.window.location.hash.slice(1).split(\"&\").map((function(t){var e=t.split(\"=\")[0];return e===f?(h=!0,e+\"=\"+u):t})).filter((function(t){return t}));return h||p.push(f+\"=\"+u),\"#\"+p.join(\"&\")}return\"#\"+u},kn.prototype._getCurrentHash=function(){var e,r=this,n=t.window.location.hash.replace(\"#\",\"\");return this._hashName?(n.split(\"&\").map((function(t){return t.split(\"=\")})).forEach((function(t){t[0]===r._hashName&&(e=t)})),(e&&e[1]||\"\").split(\"/\")):n.split(\"/\")},kn.prototype._onHashChange=function(){var t=this._getCurrentHash();if(t.length>=3&&!t.some((function(t){return isNaN(t)}))){var e=this._map.dragRotate.isEnabled()&&this._map.touchZoomRotate.isEnabled()?+(t[3]||0):this._map.getBearing();return this._map.jumpTo({center:[+t[2],+t[1]],zoom:+t[0],bearing:e,pitch:+(t[4]||0)}),!0}return!1},kn.prototype._updateHashUnthrottled=function(){var e=this.getHashString();try{t.window.history.replaceState(t.window.history.state,\"\",e)}catch(t){}};var Mn={linearity:.3,easing:t.bezier(0,0,.3,1)},An=t.extend({deceleration:2500,maxSpeed:1400},Mn),Sn=t.extend({deceleration:20,maxSpeed:1400},Mn),En=t.extend({deceleration:1e3,maxSpeed:360},Mn),Cn=t.extend({deceleration:1e3,maxSpeed:90},Mn),Ln=function(t){this._map=t,this.clear()};function In(t,e){(!t.duration||t.duration<e.duration)&&(t.duration=e.duration,t.easing=e.easing)}function Pn(e,r,n){var i=n.maxSpeed,a=n.linearity,o=n.deceleration,s=t.clamp(e*a/(r/1e3),-i,i),l=Math.abs(s)/(o*a);return{easing:n.easing,duration:1e3*l,amount:s*(l/2)}}Ln.prototype.clear=function(){this._inertiaBuffer=[]},Ln.prototype.record=function(e){this._drainInertiaBuffer(),this._inertiaBuffer.push({time:t.browser.now(),settings:e})},Ln.prototype._drainInertiaBuffer=function(){for(var e=this._inertiaBuffer,r=t.browser.now();e.length>0&&r-e[0].time>160;)e.shift()},Ln.prototype._onMoveEnd=function(e){if(this._drainInertiaBuffer(),!(this._inertiaBuffer.length<2)){for(var r={zoom:0,bearing:0,pitch:0,pan:new t.Point(0,0),pinchAround:void 0,around:void 0},n=0,i=this._inertiaBuffer;n<i.length;n+=1){var a=i[n].settings;r.zoom+=a.zoomDelta||0,r.bearing+=a.bearingDelta||0,r.pitch+=a.pitchDelta||0,a.panDelta&&r.pan._add(a.panDelta),a.around&&(r.around=a.around),a.pinchAround&&(r.pinchAround=a.pinchAround)}var o=this._inertiaBuffer[this._inertiaBuffer.length-1].time-this._inertiaBuffer[0].time,s={};if(r.pan.mag()){var l=Pn(r.pan.mag(),o,t.extend({},An,e||{}));s.offset=r.pan.mult(l.amount/r.pan.mag()),s.center=this._map.transform.center,In(s,l)}if(r.zoom){var c=Pn(r.zoom,o,Sn);s.zoom=this._map.transform.zoom+c.amount,In(s,c)}if(r.bearing){var u=Pn(r.bearing,o,En);s.bearing=this._map.transform.bearing+t.clamp(u.amount,-179,179),In(s,u)}if(r.pitch){var f=Pn(r.pitch,o,Cn);s.pitch=this._map.transform.pitch+f.amount,In(s,f)}if(s.zoom||s.bearing){var h=void 0===r.pinchAround?r.around:r.pinchAround;s.around=h?this._map.unproject(h):this._map.getCenter()}return this.clear(),t.extend(s,{noMoveStart:!0})}};var zn=function(e){function n(n,i,a,o){void 0===o&&(o={});var s=r.mousePos(i.getCanvasContainer(),a),l=i.unproject(s);e.call(this,n,t.extend({point:s,lngLat:l,originalEvent:a},o)),this._defaultPrevented=!1,this.target=i}e&&(n.__proto__=e),(n.prototype=Object.create(e&&e.prototype)).constructor=n;var i={defaultPrevented:{configurable:!0}};return n.prototype.preventDefault=function(){this._defaultPrevented=!0},i.defaultPrevented.get=function(){return this._defaultPrevented},Object.defineProperties(n.prototype,i),n}(t.Event),On=function(e){function n(n,i,a){var o=\"touchend\"===n?a.changedTouches:a.touches,s=r.touchPos(i.getCanvasContainer(),o),l=s.map((function(t){return i.unproject(t)})),c=s.reduce((function(t,e,r,n){return t.add(e.div(n.length))}),new t.Point(0,0)),u=i.unproject(c);e.call(this,n,{points:s,point:c,lngLats:l,lngLat:u,originalEvent:a}),this._defaultPrevented=!1}e&&(n.__proto__=e),(n.prototype=Object.create(e&&e.prototype)).constructor=n;var i={defaultPrevented:{configurable:!0}};return n.prototype.preventDefault=function(){this._defaultPrevented=!0},i.defaultPrevented.get=function(){return this._defaultPrevented},Object.defineProperties(n.prototype,i),n}(t.Event),Dn=function(t){function e(e,r,n){t.call(this,e,{originalEvent:n}),this._defaultPrevented=!1}t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e;var r={defaultPrevented:{configurable:!0}};return e.prototype.preventDefault=function(){this._defaultPrevented=!0},r.defaultPrevented.get=function(){return this._defaultPrevented},Object.defineProperties(e.prototype,r),e}(t.Event),Rn=function(t,e){this._map=t,this._clickTolerance=e.clickTolerance};Rn.prototype.reset=function(){delete this._mousedownPos},Rn.prototype.wheel=function(t){return this._firePreventable(new Dn(t.type,this._map,t))},Rn.prototype.mousedown=function(t,e){return this._mousedownPos=e,this._firePreventable(new zn(t.type,this._map,t))},Rn.prototype.mouseup=function(t){this._map.fire(new zn(t.type,this._map,t))},Rn.prototype.click=function(t,e){this._mousedownPos&&this._mousedownPos.dist(e)>=this._clickTolerance||this._map.fire(new zn(t.type,this._map,t))},Rn.prototype.dblclick=function(t){return this._firePreventable(new zn(t.type,this._map,t))},Rn.prototype.mouseover=function(t){this._map.fire(new zn(t.type,this._map,t))},Rn.prototype.mouseout=function(t){this._map.fire(new zn(t.type,this._map,t))},Rn.prototype.touchstart=function(t){return this._firePreventable(new On(t.type,this._map,t))},Rn.prototype.touchmove=function(t){this._map.fire(new On(t.type,this._map,t))},Rn.prototype.touchend=function(t){this._map.fire(new On(t.type,this._map,t))},Rn.prototype.touchcancel=function(t){this._map.fire(new On(t.type,this._map,t))},Rn.prototype._firePreventable=function(t){if(this._map.fire(t),t.defaultPrevented)return{}},Rn.prototype.isEnabled=function(){return!0},Rn.prototype.isActive=function(){return!1},Rn.prototype.enable=function(){},Rn.prototype.disable=function(){};var Fn=function(t){this._map=t};Fn.prototype.reset=function(){this._delayContextMenu=!1,delete this._contextMenuEvent},Fn.prototype.mousemove=function(t){this._map.fire(new zn(t.type,this._map,t))},Fn.prototype.mousedown=function(){this._delayContextMenu=!0},Fn.prototype.mouseup=function(){this._delayContextMenu=!1,this._contextMenuEvent&&(this._map.fire(new zn(\"contextmenu\",this._map,this._contextMenuEvent)),delete this._contextMenuEvent)},Fn.prototype.contextmenu=function(t){this._delayContextMenu?this._contextMenuEvent=t:this._map.fire(new zn(t.type,this._map,t)),this._map.listens(\"contextmenu\")&&t.preventDefault()},Fn.prototype.isEnabled=function(){return!0},Fn.prototype.isActive=function(){return!1},Fn.prototype.enable=function(){},Fn.prototype.disable=function(){};var Bn=function(t,e){this._map=t,this._el=t.getCanvasContainer(),this._container=t.getContainer(),this._clickTolerance=e.clickTolerance||1};function Nn(t,e){for(var r={},n=0;n<t.length;n++)r[t[n].identifier]=e[n];return r}Bn.prototype.isEnabled=function(){return!!this._enabled},Bn.prototype.isActive=function(){return!!this._active},Bn.prototype.enable=function(){this.isEnabled()||(this._enabled=!0)},Bn.prototype.disable=function(){this.isEnabled()&&(this._enabled=!1)},Bn.prototype.mousedown=function(t,e){this.isEnabled()&&t.shiftKey&&0===t.button&&(r.disableDrag(),this._startPos=this._lastPos=e,this._active=!0)},Bn.prototype.mousemoveWindow=function(t,e){if(this._active){var n=e;if(!(this._lastPos.equals(n)||!this._box&&n.dist(this._startPos)<this._clickTolerance)){var i=this._startPos;this._lastPos=n,this._box||(this._box=r.create(\"div\",\"mapboxgl-boxzoom\",this._container),this._container.classList.add(\"mapboxgl-crosshair\"),this._fireEvent(\"boxzoomstart\",t));var a=Math.min(i.x,n.x),o=Math.max(i.x,n.x),s=Math.min(i.y,n.y),l=Math.max(i.y,n.y);r.setTransform(this._box,\"translate(\"+a+\"px,\"+s+\"px)\"),this._box.style.width=o-a+\"px\",this._box.style.height=l-s+\"px\"}}},Bn.prototype.mouseupWindow=function(e,n){var i=this;if(this._active&&0===e.button){var a=this._startPos,o=n;if(this.reset(),r.suppressClick(),a.x!==o.x||a.y!==o.y)return this._map.fire(new t.Event(\"boxzoomend\",{originalEvent:e})),{cameraAnimation:function(t){return t.fitScreenCoordinates(a,o,i._map.getBearing(),{linear:!0})}};this._fireEvent(\"boxzoomcancel\",e)}},Bn.prototype.keydown=function(t){this._active&&27===t.keyCode&&(this.reset(),this._fireEvent(\"boxzoomcancel\",t))},Bn.prototype.reset=function(){this._active=!1,this._container.classList.remove(\"mapboxgl-crosshair\"),this._box&&(r.remove(this._box),this._box=null),r.enableDrag(),delete this._startPos,delete this._lastPos},Bn.prototype._fireEvent=function(e,r){return this._map.fire(new t.Event(e,{originalEvent:r}))};var jn=function(t){this.reset(),this.numTouches=t.numTouches};jn.prototype.reset=function(){delete this.centroid,delete this.startTime,delete this.touches,this.aborted=!1},jn.prototype.touchstart=function(e,r,n){(this.centroid||n.length>this.numTouches)&&(this.aborted=!0),this.aborted||(void 0===this.startTime&&(this.startTime=e.timeStamp),n.length===this.numTouches&&(this.centroid=function(e){for(var r=new t.Point(0,0),n=0,i=e;n<i.length;n+=1)r._add(i[n]);return r.div(e.length)}(r),this.touches=Nn(n,r)))},jn.prototype.touchmove=function(t,e,r){if(!this.aborted&&this.centroid){var n=Nn(r,e);for(var i in this.touches){var a=n[i];(!a||a.dist(this.touches[i])>30)&&(this.aborted=!0)}}},jn.prototype.touchend=function(t,e,r){if((!this.centroid||t.timeStamp-this.startTime>500)&&(this.aborted=!0),0===r.length){var n=!this.aborted&&this.centroid;if(this.reset(),n)return n}};var Un=function(t){this.singleTap=new jn(t),this.numTaps=t.numTaps,this.reset()};Un.prototype.reset=function(){this.lastTime=1/0,delete this.lastTap,this.count=0,this.singleTap.reset()},Un.prototype.touchstart=function(t,e,r){this.singleTap.touchstart(t,e,r)},Un.prototype.touchmove=function(t,e,r){this.singleTap.touchmove(t,e,r)},Un.prototype.touchend=function(t,e,r){var n=this.singleTap.touchend(t,e,r);if(n){var i=t.timeStamp-this.lastTime<500,a=!this.lastTap||this.lastTap.dist(n)<30;if(i&&a||this.reset(),this.count++,this.lastTime=t.timeStamp,this.lastTap=n,this.count===this.numTaps)return this.reset(),n}};var Vn=function(){this._zoomIn=new Un({numTouches:1,numTaps:2}),this._zoomOut=new Un({numTouches:2,numTaps:1}),this.reset()};Vn.prototype.reset=function(){this._active=!1,this._zoomIn.reset(),this._zoomOut.reset()},Vn.prototype.touchstart=function(t,e,r){this._zoomIn.touchstart(t,e,r),this._zoomOut.touchstart(t,e,r)},Vn.prototype.touchmove=function(t,e,r){this._zoomIn.touchmove(t,e,r),this._zoomOut.touchmove(t,e,r)},Vn.prototype.touchend=function(t,e,r){var n=this,i=this._zoomIn.touchend(t,e,r),a=this._zoomOut.touchend(t,e,r);return i?(this._active=!0,t.preventDefault(),setTimeout((function(){return n.reset()}),0),{cameraAnimation:function(e){return e.easeTo({duration:300,zoom:e.getZoom()+1,around:e.unproject(i)},{originalEvent:t})}}):a?(this._active=!0,t.preventDefault(),setTimeout((function(){return n.reset()}),0),{cameraAnimation:function(e){return e.easeTo({duration:300,zoom:e.getZoom()-1,around:e.unproject(a)},{originalEvent:t})}}):void 0},Vn.prototype.touchcancel=function(){this.reset()},Vn.prototype.enable=function(){this._enabled=!0},Vn.prototype.disable=function(){this._enabled=!1,this.reset()},Vn.prototype.isEnabled=function(){return this._enabled},Vn.prototype.isActive=function(){return this._active};var qn=function(t){this.reset(),this._clickTolerance=t.clickTolerance||1};qn.prototype.reset=function(){this._active=!1,this._moved=!1,delete this._lastPoint,delete this._eventButton},qn.prototype._correctButton=function(t,e){return!1},qn.prototype._move=function(t,e){return{}},qn.prototype.mousedown=function(t,e){if(!this._lastPoint){var n=r.mouseButton(t);this._correctButton(t,n)&&(this._lastPoint=e,this._eventButton=n)}},qn.prototype.mousemoveWindow=function(t,e){var r=this._lastPoint;if(r&&(t.preventDefault(),this._moved||!(e.dist(r)<this._clickTolerance)))return this._moved=!0,this._lastPoint=e,this._move(r,e)},qn.prototype.mouseupWindow=function(t){r.mouseButton(t)===this._eventButton&&(this._moved&&r.suppressClick(),this.reset())},qn.prototype.enable=function(){this._enabled=!0},qn.prototype.disable=function(){this._enabled=!1,this.reset()},qn.prototype.isEnabled=function(){return this._enabled},qn.prototype.isActive=function(){return this._active};var Hn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.mousedown=function(e,r){t.prototype.mousedown.call(this,e,r),this._lastPoint&&(this._active=!0)},e.prototype._correctButton=function(t,e){return 0===e&&!t.ctrlKey},e.prototype._move=function(t,e){return{around:e,panDelta:e.sub(t)}},e}(qn),Gn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._correctButton=function(t,e){return 0===e&&t.ctrlKey||2===e},e.prototype._move=function(t,e){var r=.8*(e.x-t.x);if(r)return this._active=!0,{bearingDelta:r}},e.prototype.contextmenu=function(t){t.preventDefault()},e}(qn),Yn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype._correctButton=function(t,e){return 0===e&&t.ctrlKey||2===e},e.prototype._move=function(t,e){var r=-.5*(e.y-t.y);if(r)return this._active=!0,{pitchDelta:r}},e.prototype.contextmenu=function(t){t.preventDefault()},e}(qn),Wn=function(t){this._minTouches=1,this._clickTolerance=t.clickTolerance||1,this.reset()};Wn.prototype.reset=function(){this._active=!1,this._touches={},this._sum=new t.Point(0,0)},Wn.prototype.touchstart=function(t,e,r){return this._calculateTransform(t,e,r)},Wn.prototype.touchmove=function(t,e,r){if(this._active)return t.preventDefault(),this._calculateTransform(t,e,r)},Wn.prototype.touchend=function(t,e,r){this._calculateTransform(t,e,r),this._active&&r.length<this._minTouches&&this.reset()},Wn.prototype.touchcancel=function(){this.reset()},Wn.prototype._calculateTransform=function(e,r,n){n.length>0&&(this._active=!0);var i=Nn(n,r),a=new t.Point(0,0),o=new t.Point(0,0),s=0;for(var l in i){var c=i[l],u=this._touches[l];u&&(a._add(c),o._add(c.sub(u)),s++,i[l]=c)}if(this._touches=i,!(s<this._minTouches)&&o.mag()){var f=o.div(s);if(this._sum._add(f),!(this._sum.mag()<this._clickTolerance))return{around:a.div(s),panDelta:f}}},Wn.prototype.enable=function(){this._enabled=!0},Wn.prototype.disable=function(){this._enabled=!1,this.reset()},Wn.prototype.isEnabled=function(){return this._enabled},Wn.prototype.isActive=function(){return this._active};var Xn=function(){this.reset()};function Zn(t,e,r){for(var n=0;n<t.length;n++)if(t[n].identifier===r)return e[n]}function Jn(t,e){return Math.log(t/e)/Math.LN2}Xn.prototype.reset=function(){this._active=!1,delete this._firstTwoTouches},Xn.prototype._start=function(t){},Xn.prototype._move=function(t,e,r){return{}},Xn.prototype.touchstart=function(t,e,r){this._firstTwoTouches||r.length<2||(this._firstTwoTouches=[r[0].identifier,r[1].identifier],this._start([e[0],e[1]]))},Xn.prototype.touchmove=function(t,e,r){if(this._firstTwoTouches){t.preventDefault();var n=this._firstTwoTouches,i=n[1],a=Zn(r,e,n[0]),o=Zn(r,e,i);if(a&&o){var s=this._aroundCenter?null:a.add(o).div(2);return this._move([a,o],s,t)}}},Xn.prototype.touchend=function(t,e,n){if(this._firstTwoTouches){var i=this._firstTwoTouches,a=i[1],o=Zn(n,e,i[0]),s=Zn(n,e,a);o&&s||(this._active&&r.suppressClick(),this.reset())}},Xn.prototype.touchcancel=function(){this.reset()},Xn.prototype.enable=function(t){this._enabled=!0,this._aroundCenter=!!t&&\"center\"===t.around},Xn.prototype.disable=function(){this._enabled=!1,this.reset()},Xn.prototype.isEnabled=function(){return this._enabled},Xn.prototype.isActive=function(){return this._active};var Kn=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.reset=function(){t.prototype.reset.call(this),delete this._distance,delete this._startDistance},e.prototype._start=function(t){this._startDistance=this._distance=t[0].dist(t[1])},e.prototype._move=function(t,e){var r=this._distance;if(this._distance=t[0].dist(t[1]),this._active||!(Math.abs(Jn(this._distance,this._startDistance))<.1))return this._active=!0,{zoomDelta:Jn(this._distance,r),pinchAround:e}},e}(Xn);function Qn(t,e){return 180*t.angleWith(e)/Math.PI}var $n=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.reset=function(){t.prototype.reset.call(this),delete this._minDiameter,delete this._startVector,delete this._vector},e.prototype._start=function(t){this._startVector=this._vector=t[0].sub(t[1]),this._minDiameter=t[0].dist(t[1])},e.prototype._move=function(t,e){var r=this._vector;if(this._vector=t[0].sub(t[1]),this._active||!this._isBelowThreshold(this._vector))return this._active=!0,{bearingDelta:Qn(this._vector,r),pinchAround:e}},e.prototype._isBelowThreshold=function(t){this._minDiameter=Math.min(this._minDiameter,t.mag());var e=25/(Math.PI*this._minDiameter)*360,r=Qn(t,this._startVector);return Math.abs(r)<e},e}(Xn);function ti(t){return Math.abs(t.y)>Math.abs(t.x)}var ei=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e.prototype.reset=function(){t.prototype.reset.call(this),this._valid=void 0,delete this._firstMove,delete this._lastPoints},e.prototype._start=function(t){this._lastPoints=t,ti(t[0].sub(t[1]))&&(this._valid=!1)},e.prototype._move=function(t,e,r){var n=t[0].sub(this._lastPoints[0]),i=t[1].sub(this._lastPoints[1]);if(this._valid=this.gestureBeginsVertically(n,i,r.timeStamp),this._valid)return this._lastPoints=t,this._active=!0,{pitchDelta:(n.y+i.y)/2*-.5}},e.prototype.gestureBeginsVertically=function(t,e,r){if(void 0!==this._valid)return this._valid;var n=t.mag()>=2,i=e.mag()>=2;if(n||i){if(!n||!i)return void 0===this._firstMove&&(this._firstMove=r),r-this._firstMove<100&&void 0;var a=t.y>0==e.y>0;return ti(t)&&ti(e)&&a}},e}(Xn),ri={panStep:100,bearingStep:15,pitchStep:10},ni=function(){var t=ri;this._panStep=t.panStep,this._bearingStep=t.bearingStep,this._pitchStep=t.pitchStep};function ii(t){return t*(2-t)}ni.prototype.reset=function(){this._active=!1},ni.prototype.keydown=function(t){var e=this;if(!(t.altKey||t.ctrlKey||t.metaKey)){var r=0,n=0,i=0,a=0,o=0;switch(t.keyCode){case 61:case 107:case 171:case 187:r=1;break;case 189:case 109:case 173:r=-1;break;case 37:t.shiftKey?n=-1:(t.preventDefault(),a=-1);break;case 39:t.shiftKey?n=1:(t.preventDefault(),a=1);break;case 38:t.shiftKey?i=1:(t.preventDefault(),o=-1);break;case 40:t.shiftKey?i=-1:(t.preventDefault(),o=1);break;default:return}return{cameraAnimation:function(s){var l=s.getZoom();s.easeTo({duration:300,easeId:\"keyboardHandler\",easing:ii,zoom:r?Math.round(l)+r*(t.shiftKey?2:1):l,bearing:s.getBearing()+n*e._bearingStep,pitch:s.getPitch()+i*e._pitchStep,offset:[-a*e._panStep,-o*e._panStep],center:s.getCenter()},{originalEvent:t})}}}},ni.prototype.enable=function(){this._enabled=!0},ni.prototype.disable=function(){this._enabled=!1,this.reset()},ni.prototype.isEnabled=function(){return this._enabled},ni.prototype.isActive=function(){return this._active};var ai=function(e,r){this._map=e,this._el=e.getCanvasContainer(),this._handler=r,this._delta=0,this._defaultZoomRate=.01,this._wheelZoomRate=1/450,t.bindAll([\"_onWheel\",\"_onTimeout\",\"_onScrollFrame\",\"_onScrollFinished\"],this)};ai.prototype.setZoomRate=function(t){this._defaultZoomRate=t},ai.prototype.setWheelZoomRate=function(t){this._wheelZoomRate=t},ai.prototype.isEnabled=function(){return!!this._enabled},ai.prototype.isActive=function(){return!!this._active||void 0!==this._finishTimeout},ai.prototype.isZooming=function(){return!!this._zooming},ai.prototype.enable=function(t){this.isEnabled()||(this._enabled=!0,this._aroundCenter=t&&\"center\"===t.around)},ai.prototype.disable=function(){this.isEnabled()&&(this._enabled=!1)},ai.prototype.wheel=function(e){if(this.isEnabled()){var r=e.deltaMode===t.window.WheelEvent.DOM_DELTA_LINE?40*e.deltaY:e.deltaY,n=t.browser.now(),i=n-(this._lastWheelEventTime||0);this._lastWheelEventTime=n,0!==r&&r%4.000244140625==0?this._type=\"wheel\":0!==r&&Math.abs(r)<4?this._type=\"trackpad\":i>400?(this._type=null,this._lastValue=r,this._timeout=setTimeout(this._onTimeout,40,e)):this._type||(this._type=Math.abs(i*r)<200?\"trackpad\":\"wheel\",this._timeout&&(clearTimeout(this._timeout),this._timeout=null,r+=this._lastValue)),e.shiftKey&&r&&(r/=4),this._type&&(this._lastWheelEvent=e,this._delta-=r,this._active||this._start(e)),e.preventDefault()}},ai.prototype._onTimeout=function(t){this._type=\"wheel\",this._delta-=this._lastValue,this._active||this._start(t)},ai.prototype._start=function(e){if(this._delta){this._frameId&&(this._frameId=null),this._active=!0,this.isZooming()||(this._zooming=!0),this._finishTimeout&&(clearTimeout(this._finishTimeout),delete this._finishTimeout);var n=r.mousePos(this._el,e);this._around=t.LngLat.convert(this._aroundCenter?this._map.getCenter():this._map.unproject(n)),this._aroundPoint=this._map.transform.locationPoint(this._around),this._frameId||(this._frameId=!0,this._handler._triggerRenderFrame())}},ai.prototype.renderFrame=function(){return this._onScrollFrame()},ai.prototype._onScrollFrame=function(){var e=this;if(this._frameId&&(this._frameId=null,this.isActive())){var r=this._map.transform;if(0!==this._delta){var n=\"wheel\"===this._type&&Math.abs(this._delta)>4.000244140625?this._wheelZoomRate:this._defaultZoomRate,i=2/(1+Math.exp(-Math.abs(this._delta*n)));this._delta<0&&0!==i&&(i=1/i);var a=\"number\"==typeof this._targetZoom?r.zoomScale(this._targetZoom):r.scale;this._targetZoom=Math.min(r.maxZoom,Math.max(r.minZoom,r.scaleZoom(a*i))),\"wheel\"===this._type&&(this._startZoom=r.zoom,this._easing=this._smoothOutEasing(200)),this._delta=0}var o,s=\"number\"==typeof this._targetZoom?this._targetZoom:r.zoom,l=this._startZoom,c=this._easing,u=!1;if(\"wheel\"===this._type&&l&&c){var f=Math.min((t.browser.now()-this._lastWheelEventTime)/200,1),h=c(f);o=t.number(l,s,h),f<1?this._frameId||(this._frameId=!0):u=!0}else o=s,u=!0;return this._active=!0,u&&(this._active=!1,this._finishTimeout=setTimeout((function(){e._zooming=!1,e._handler._triggerRenderFrame(),delete e._targetZoom,delete e._finishTimeout}),200)),{noInertia:!0,needsRenderFrame:!u,zoomDelta:o-r.zoom,around:this._aroundPoint,originalEvent:this._lastWheelEvent}}},ai.prototype._smoothOutEasing=function(e){var r=t.ease;if(this._prevEase){var n=this._prevEase,i=(t.browser.now()-n.start)/n.duration,a=n.easing(i+.01)-n.easing(i),o=.27/Math.sqrt(a*a+1e-4)*.01,s=Math.sqrt(.0729-o*o);r=t.bezier(o,s,.25,1)}return this._prevEase={start:t.browser.now(),duration:e,easing:r},r},ai.prototype.reset=function(){this._active=!1};var oi=function(t,e){this._clickZoom=t,this._tapZoom=e};oi.prototype.enable=function(){this._clickZoom.enable(),this._tapZoom.enable()},oi.prototype.disable=function(){this._clickZoom.disable(),this._tapZoom.disable()},oi.prototype.isEnabled=function(){return this._clickZoom.isEnabled()&&this._tapZoom.isEnabled()},oi.prototype.isActive=function(){return this._clickZoom.isActive()||this._tapZoom.isActive()};var si=function(){this.reset()};si.prototype.reset=function(){this._active=!1},si.prototype.dblclick=function(t,e){return t.preventDefault(),{cameraAnimation:function(r){r.easeTo({duration:300,zoom:r.getZoom()+(t.shiftKey?-1:1),around:r.unproject(e)},{originalEvent:t})}}},si.prototype.enable=function(){this._enabled=!0},si.prototype.disable=function(){this._enabled=!1,this.reset()},si.prototype.isEnabled=function(){return this._enabled},si.prototype.isActive=function(){return this._active};var li=function(){this._tap=new Un({numTouches:1,numTaps:1}),this.reset()};li.prototype.reset=function(){this._active=!1,delete this._swipePoint,delete this._swipeTouch,delete this._tapTime,this._tap.reset()},li.prototype.touchstart=function(t,e,r){this._swipePoint||(this._tapTime&&t.timeStamp-this._tapTime>500&&this.reset(),this._tapTime?r.length>0&&(this._swipePoint=e[0],this._swipeTouch=r[0].identifier):this._tap.touchstart(t,e,r))},li.prototype.touchmove=function(t,e,r){if(this._tapTime){if(this._swipePoint){if(r[0].identifier!==this._swipeTouch)return;var n=e[0],i=n.y-this._swipePoint.y;return this._swipePoint=n,t.preventDefault(),this._active=!0,{zoomDelta:i/128}}}else this._tap.touchmove(t,e,r)},li.prototype.touchend=function(t,e,r){this._tapTime?this._swipePoint&&0===r.length&&this.reset():this._tap.touchend(t,e,r)&&(this._tapTime=t.timeStamp)},li.prototype.touchcancel=function(){this.reset()},li.prototype.enable=function(){this._enabled=!0},li.prototype.disable=function(){this._enabled=!1,this.reset()},li.prototype.isEnabled=function(){return this._enabled},li.prototype.isActive=function(){return this._active};var ci=function(t,e,r){this._el=t,this._mousePan=e,this._touchPan=r};ci.prototype.enable=function(t){this._inertiaOptions=t||{},this._mousePan.enable(),this._touchPan.enable(),this._el.classList.add(\"mapboxgl-touch-drag-pan\")},ci.prototype.disable=function(){this._mousePan.disable(),this._touchPan.disable(),this._el.classList.remove(\"mapboxgl-touch-drag-pan\")},ci.prototype.isEnabled=function(){return this._mousePan.isEnabled()&&this._touchPan.isEnabled()},ci.prototype.isActive=function(){return this._mousePan.isActive()||this._touchPan.isActive()};var ui=function(t,e,r){this._pitchWithRotate=t.pitchWithRotate,this._mouseRotate=e,this._mousePitch=r};ui.prototype.enable=function(){this._mouseRotate.enable(),this._pitchWithRotate&&this._mousePitch.enable()},ui.prototype.disable=function(){this._mouseRotate.disable(),this._mousePitch.disable()},ui.prototype.isEnabled=function(){return this._mouseRotate.isEnabled()&&(!this._pitchWithRotate||this._mousePitch.isEnabled())},ui.prototype.isActive=function(){return this._mouseRotate.isActive()||this._mousePitch.isActive()};var fi=function(t,e,r,n){this._el=t,this._touchZoom=e,this._touchRotate=r,this._tapDragZoom=n,this._rotationDisabled=!1,this._enabled=!0};fi.prototype.enable=function(t){this._touchZoom.enable(t),this._rotationDisabled||this._touchRotate.enable(t),this._tapDragZoom.enable(),this._el.classList.add(\"mapboxgl-touch-zoom-rotate\")},fi.prototype.disable=function(){this._touchZoom.disable(),this._touchRotate.disable(),this._tapDragZoom.disable(),this._el.classList.remove(\"mapboxgl-touch-zoom-rotate\")},fi.prototype.isEnabled=function(){return this._touchZoom.isEnabled()&&(this._rotationDisabled||this._touchRotate.isEnabled())&&this._tapDragZoom.isEnabled()},fi.prototype.isActive=function(){return this._touchZoom.isActive()||this._touchRotate.isActive()||this._tapDragZoom.isActive()},fi.prototype.disableRotation=function(){this._rotationDisabled=!0,this._touchRotate.disable()},fi.prototype.enableRotation=function(){this._rotationDisabled=!1,this._touchZoom.isEnabled()&&this._touchRotate.enable()};var hi=function(t){return t.zoom||t.drag||t.pitch||t.rotate},pi=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),(e.prototype=Object.create(t&&t.prototype)).constructor=e,e}(t.Event);function di(t){return t.panDelta&&t.panDelta.mag()||t.zoomDelta||t.bearingDelta||t.pitchDelta}var gi=function(e,n){this._map=e,this._el=this._map.getCanvasContainer(),this._handlers=[],this._handlersById={},this._changes=[],this._inertia=new Ln(e),this._bearingSnap=n.bearingSnap,this._previousActiveHandlers={},this._eventsInProgress={},this._addDefaultHandlers(n),t.bindAll([\"handleEvent\",\"handleWindowEvent\"],this);var i=this._el;this._listeners=[[i,\"touchstart\",{passive:!1}],[i,\"touchmove\",{passive:!1}],[i,\"touchend\",void 0],[i,\"touchcancel\",void 0],[i,\"mousedown\",void 0],[i,\"mousemove\",void 0],[i,\"mouseup\",void 0],[t.window.document,\"mousemove\",{capture:!0}],[t.window.document,\"mouseup\",void 0],[i,\"mouseover\",void 0],[i,\"mouseout\",void 0],[i,\"dblclick\",void 0],[i,\"click\",void 0],[i,\"keydown\",{capture:!1}],[i,\"keyup\",void 0],[i,\"wheel\",{passive:!1}],[i,\"contextmenu\",void 0],[t.window,\"blur\",void 0]];for(var a=0,o=this._listeners;a<o.length;a+=1){var s=o[a],l=s[0];r.addEventListener(l,s[1],l===t.window.document?this.handleWindowEvent:this.handleEvent,s[2])}};gi.prototype.destroy=function(){for(var e=0,n=this._listeners;e<n.length;e+=1){var i=n[e],a=i[0];r.removeEventListener(a,i[1],a===t.window.document?this.handleWindowEvent:this.handleEvent,i[2])}},gi.prototype._addDefaultHandlers=function(t){var e=this._map,r=e.getCanvasContainer();this._add(\"mapEvent\",new Rn(e,t));var n=e.boxZoom=new Bn(e,t);this._add(\"boxZoom\",n);var i=new Vn,a=new si;e.doubleClickZoom=new oi(a,i),this._add(\"tapZoom\",i),this._add(\"clickZoom\",a);var o=new li;this._add(\"tapDragZoom\",o);var s=e.touchPitch=new ei;this._add(\"touchPitch\",s);var l=new Gn(t),c=new Yn(t);e.dragRotate=new ui(t,l,c),this._add(\"mouseRotate\",l,[\"mousePitch\"]),this._add(\"mousePitch\",c,[\"mouseRotate\"]);var u=new Hn(t),f=new Wn(t);e.dragPan=new ci(r,u,f),this._add(\"mousePan\",u),this._add(\"touchPan\",f,[\"touchZoom\",\"touchRotate\"]);var h=new $n,p=new Kn;e.touchZoomRotate=new fi(r,p,h,o),this._add(\"touchRotate\",h,[\"touchPan\",\"touchZoom\"]),this._add(\"touchZoom\",p,[\"touchPan\",\"touchRotate\"]);var d=e.scrollZoom=new ai(e,this);this._add(\"scrollZoom\",d,[\"mousePan\"]);var g=e.keyboard=new ni;this._add(\"keyboard\",g),this._add(\"blockableMapEvent\",new Fn(e));for(var m=0,v=[\"boxZoom\",\"doubleClickZoom\",\"tapDragZoom\",\"touchPitch\",\"dragRotate\",\"dragPan\",\"touchZoomRotate\",\"scrollZoom\",\"keyboard\"];m<v.length;m+=1){var y=v[m];t.interactive&&t[y]&&e[y].enable(t[y])}},gi.prototype._add=function(t,e,r){this._handlers.push({handlerName:t,handler:e,allowed:r}),this._handlersById[t]=e},gi.prototype.stop=function(){if(!this._updatingCamera){for(var t=0,e=this._handlers;t<e.length;t+=1)e[t].handler.reset();this._inertia.clear(),this._fireEvents({},{}),this._changes=[]}},gi.prototype.isActive=function(){for(var t=0,e=this._handlers;t<e.length;t+=1)if(e[t].handler.isActive())return!0;return!1},gi.prototype.isZooming=function(){return!!this._eventsInProgress.zoom||this._map.scrollZoom.isZooming()},gi.prototype.isRotating=function(){return!!this._eventsInProgress.rotate},gi.prototype.isMoving=function(){return Boolean(hi(this._eventsInProgress))||this.isZooming()},gi.prototype._blockedByActive=function(t,e,r){for(var n in t)if(n!==r&&(!e||e.indexOf(n)<0))return!0;return!1},gi.prototype.handleWindowEvent=function(t){this.handleEvent(t,t.type+\"Window\")},gi.prototype._getMapTouches=function(t){for(var e=[],r=0,n=t;r<n.length;r+=1){var i=n[r];this._el.contains(i.target)&&e.push(i)}return e},gi.prototype.handleEvent=function(t,e){if(\"blur\"!==t.type){this._updatingCamera=!0;for(var n=\"renderFrame\"===t.type?void 0:t,i={needsRenderFrame:!1},a={},o={},s=t.touches?this._getMapTouches(t.touches):void 0,l=s?r.touchPos(this._el,s):r.mousePos(this._el,t),c=0,u=this._handlers;c<u.length;c+=1){var f=u[c],h=f.handlerName,p=f.handler,d=f.allowed;if(p.isEnabled()){var g=void 0;this._blockedByActive(o,d,h)?p.reset():p[e||t.type]&&(g=p[e||t.type](t,l,s),this.mergeHandlerResult(i,a,g,h,n),g&&g.needsRenderFrame&&this._triggerRenderFrame()),(g||p.isActive())&&(o[h]=p)}}var m={};for(var v in this._previousActiveHandlers)o[v]||(m[v]=n);this._previousActiveHandlers=o,(Object.keys(m).length||di(i))&&(this._changes.push([i,a,m]),this._triggerRenderFrame()),(Object.keys(o).length||di(i))&&this._map._stop(!0),this._updatingCamera=!1;var y=i.cameraAnimation;y&&(this._inertia.clear(),this._fireEvents({},{}),this._changes=[],y(this._map))}else this.stop()},gi.prototype.mergeHandlerResult=function(e,r,n,i,a){if(n){t.extend(e,n);var o={handlerName:i,originalEvent:n.originalEvent||a};void 0!==n.zoomDelta&&(r.zoom=o),void 0!==n.panDelta&&(r.drag=o),void 0!==n.pitchDelta&&(r.pitch=o),void 0!==n.bearingDelta&&(r.rotate=o)}},gi.prototype._applyChanges=function(){for(var e={},r={},n={},i=0,a=this._changes;i<a.length;i+=1){var o=a[i],s=o[0],l=o[1],c=o[2];s.panDelta&&(e.panDelta=(e.panDelta||new t.Point(0,0))._add(s.panDelta)),s.zoomDelta&&(e.zoomDelta=(e.zoomDelta||0)+s.zoomDelta),s.bearingDelta&&(e.bearingDelta=(e.bearingDelta||0)+s.bearingDelta),s.pitchDelta&&(e.pitchDelta=(e.pitchDelta||0)+s.pitchDelta),void 0!==s.around&&(e.around=s.around),void 0!==s.pinchAround&&(e.pinchAround=s.pinchAround),s.noInertia&&(e.noInertia=s.noInertia),t.extend(r,l),t.extend(n,c)}this._updateMapTransform(e,r,n),this._changes=[]},gi.prototype._updateMapTransform=function(t,e,r){var n=this._map,i=n.transform;if(!di(t))return this._fireEvents(e,r);var a=t.panDelta,o=t.zoomDelta,s=t.bearingDelta,l=t.pitchDelta,c=t.around,u=t.pinchAround;void 0!==u&&(c=u),n._stop(!0),c=c||n.transform.centerPoint;var f=i.pointLocation(a?c.sub(a):c);s&&(i.bearing+=s),l&&(i.pitch+=l),o&&(i.zoom+=o),i.setLocationAtPoint(f,c),this._map._update(),t.noInertia||this._inertia.record(t),this._fireEvents(e,r)},gi.prototype._fireEvents=function(e,r){var n=this,i=hi(this._eventsInProgress),a=hi(e),o={};for(var s in e)this._eventsInProgress[s]||(o[s+\"start\"]=e[s].originalEvent),this._eventsInProgress[s]=e[s];for(var l in!i&&a&&this._fireEvent(\"movestart\",a.originalEvent),o)this._fireEvent(l,o[l]);for(var c in e.rotate&&(this._bearingChanged=!0),a&&this._fireEvent(\"move\",a.originalEvent),e)this._fireEvent(c,e[c].originalEvent);var u,f={};for(var h in this._eventsInProgress){var p=this._eventsInProgress[h],d=p.handlerName,g=p.originalEvent;this._handlersById[d].isActive()||(delete this._eventsInProgress[h],f[h+\"end\"]=u=r[d]||g)}for(var m in f)this._fireEvent(m,f[m]);var v=hi(this._eventsInProgress);if((i||a)&&!v){this._updatingCamera=!0;var y=this._inertia._onMoveEnd(this._map.dragPan._inertiaOptions),x=function(t){return 0!==t&&-n._bearingSnap<t&&t<n._bearingSnap};y?(x(y.bearing||this._map.getBearing())&&(y.bearing=0),this._map.easeTo(y,{originalEvent:u})):(this._map.fire(new t.Event(\"moveend\",{originalEvent:u})),x(this._map.getBearing())&&this._map.resetNorth()),this._bearingChanged=!1,this._updatingCamera=!1}},gi.prototype._fireEvent=function(e,r){this._map.fire(new t.Event(e,r?{originalEvent:r}:{}))},gi.prototype._triggerRenderFrame=function(){var t=this;void 0===this._frameId&&(this._frameId=this._map._requestRenderFrame((function(e){delete t._frameId,t.handleEvent(new pi(\"renderFrame\",{timeStamp:e})),t._applyChanges()})))};var mi=function(e){function r(r,n){e.call(this),this._moving=!1,this._zooming=!1,this.transform=r,this._bearingSnap=n.bearingSnap,t.bindAll([\"_renderFrameCallback\"],this)}return e&&(r.__proto__=e),(r.prototype=Object.create(e&&e.prototype)).constructor=r,r.prototype.getCenter=function(){return new t.LngLat(this.transform.center.lng,this.transform.center.lat)},r.prototype.setCenter=function(t,e){return this.jumpTo({center:t},e)},r.prototype.panBy=function(e,r,n){return e=t.Point.convert(e).mult(-1),this.panTo(this.transform.center,t.extend({offset:e},r),n)},r.prototype.panTo=function(e,r,n){return this.easeTo(t.extend({center:e},r),n)},r.prototype.getZoom=function(){return this.transform.zoom},r.prototype.setZoom=function(t,e){return this.jumpTo({zoom:t},e),this},r.prototype.zoomTo=function(e,r,n){return this.easeTo(t.extend({zoom:e},r),n)},r.prototype.zoomIn=function(t,e){return this.zoomTo(this.getZoom()+1,t,e),this},r.prototype.zoomOut=function(t,e){return this.zoomTo(this.getZoom()-1,t,e),this},r.prototype.getBearing=function(){return this.transform.bearing},r.prototype.setBearing=function(t,e){return this.jumpTo({bearing:t},e),this},r.prototype.getPadding=function(){return this.transform.padding},r.prototype.setPadding=function(t,e){return this.jumpTo({padding:t},e),this},r.prototype.rotateTo=function(e,r,n){return this.easeTo(t.extend({bearing:e},r),n)},r.prototype.resetNorth=function(e,r){return this.rotateTo(0,t.extend({duration:1e3},e),r),this},r.prototype.resetNorthPitch=function(e,r){return this.easeTo(t.extend({bearing:0,pitch:0,duration:1e3},e),r),this},r.prototype.snapToNorth=function(t,e){return Math.abs(this.getBearing())<this._bearingSnap?this.resetNorth(t,e):this},r.prototype.getPitch=function(){return this.transform.pitch},r.prototype.setPitch=function(t,e){return this.jumpTo({pitch:t},e),this},r.prototype.cameraForBounds=function(e,r){return e=t.LngLatBounds.convert(e),this._cameraForBoxAndBearing(e.getNorthWest(),e.getSouthEast(),0,r)},r.prototype._cameraForBoxAndBearing=function(e,r,n,i){var a={top:0,bottom:0,right:0,left:0};if(\"number\"==typeof(i=t.extend({padding:a,offset:[0,0],maxZoom:this.transform.maxZoom},i)).padding){var o=i.padding;i.padding={top:o,bottom:o,right:o,left:o}}i.padding=t.extend(a,i.padding);var s=this.transform,l=s.padding,c=s.project(t.LngLat.convert(e)),u=s.project(t.LngLat.convert(r)),f=c.rotate(-n*Math.PI/180),h=u.rotate(-n*Math.PI/180),p=new t.Point(Math.max(f.x,h.x),Math.max(f.y,h.y)),d=new t.Point(Math.min(f.x,h.x),Math.min(f.y,h.y)),g=p.sub(d),m=(s.width-(l.left+l.right+i.padding.left+i.padding.right))/g.x,v=(s.height-(l.top+l.bottom+i.padding.top+i.padding.bottom))/g.y;if(!(v<0||m<0)){var y=Math.min(s.scaleZoom(s.scale*Math.min(m,v)),i.maxZoom),x=t.Point.convert(i.offset),b=new t.Point(x.x+(i.padding.left-i.padding.right)/2,x.y+(i.padding.top-i.padding.bottom)/2).mult(s.scale/s.zoomScale(y));return{center:s.unproject(c.add(u).div(2).sub(b)),zoom:y,bearing:n}}t.warnOnce(\"Map cannot fit within canvas with the given bounds, padding, and/or offset.\")},r.prototype.fitBounds=function(t,e,r){return this._fitInternal(this.cameraForBounds(t,e),e,r)},r.prototype.fitScreenCoordinates=function(e,r,n,i,a){return this._fitInternal(this._cameraForBoxAndBearing(this.transform.pointLocation(t.Point.convert(e)),this.transform.pointLocation(t.Point.convert(r)),n,i),i,a)},r.prototype._fitInternal=function(e,r,n){return e?(delete(r=t.extend(e,r)).padding,r.linear?this.easeTo(r,n):this.flyTo(r,n)):this},r.prototype.jumpTo=function(e,r){this.stop();var n=this.transform,i=!1,a=!1,o=!1;return\"zoom\"in e&&n.zoom!==+e.zoom&&(i=!0,n.zoom=+e.zoom),void 0!==e.center&&(n.center=t.LngLat.convert(e.center)),\"bearing\"in e&&n.bearing!==+e.bearing&&(a=!0,n.bearing=+e.bearing),\"pitch\"in e&&n.pitch!==+e.pitch&&(o=!0,n.pitch=+e.pitch),null==e.padding||n.isPaddingEqual(e.padding)||(n.padding=e.padding),this.fire(new t.Event(\"movestart\",r)).fire(new t.Event(\"move\",r)),i&&this.fire(new t.Event(\"zoomstart\",r)).fire(new t.Event(\"zoom\",r)).fire(new t.Event(\"zoomend\",r)),a&&this.fire(new t.Event(\"rotatestart\",r)).fire(new t.Event(\"rotate\",r)).fire(new t.Event(\"rotateend\",r)),o&&this.fire(new t.Event(\"pitchstart\",r)).fire(new t.Event(\"pitch\",r)).fire(new t.Event(\"pitchend\",r)),this.fire(new t.Event(\"moveend\",r))},r.prototype.easeTo=function(e,r){var n=this;this._stop(!1,e.easeId),(!1===(e=t.extend({offset:[0,0],duration:500,easing:t.ease},e)).animate||!e.essential&&t.browser.prefersReducedMotion)&&(e.duration=0);var i=this.transform,a=this.getZoom(),o=this.getBearing(),s=this.getPitch(),l=this.getPadding(),c=\"zoom\"in e?+e.zoom:a,u=\"bearing\"in e?this._normalizeBearing(e.bearing,o):o,f=\"pitch\"in e?+e.pitch:s,h=\"padding\"in e?e.padding:i.padding,p=t.Point.convert(e.offset),d=i.centerPoint.add(p),g=i.pointLocation(d),m=t.LngLat.convert(e.center||g);this._normalizeCenter(m);var v,y,x=i.project(g),b=i.project(m).sub(x),_=i.zoomScale(c-a);e.around&&(v=t.LngLat.convert(e.around),y=i.locationPoint(v));var w={moving:this._moving,zooming:this._zooming,rotating:this._rotating,pitching:this._pitching};return this._zooming=this._zooming||c!==a,this._rotating=this._rotating||o!==u,this._pitching=this._pitching||f!==s,this._padding=!i.isPaddingEqual(h),this._easeId=e.easeId,this._prepareEase(r,e.noMoveStart,w),clearTimeout(this._easeEndTimeoutID),this._ease((function(e){if(n._zooming&&(i.zoom=t.number(a,c,e)),n._rotating&&(i.bearing=t.number(o,u,e)),n._pitching&&(i.pitch=t.number(s,f,e)),n._padding&&(i.interpolatePadding(l,h,e),d=i.centerPoint.add(p)),v)i.setLocationAtPoint(v,y);else{var g=i.zoomScale(i.zoom-a),m=c>a?Math.min(2,_):Math.max(.5,_),w=Math.pow(m,1-e),T=i.unproject(x.add(b.mult(e*w)).mult(g));i.setLocationAtPoint(i.renderWorldCopies?T.wrap():T,d)}n._fireMoveEvents(r)}),(function(t){n._afterEase(r,t)}),e),this},r.prototype._prepareEase=function(e,r,n){void 0===n&&(n={}),this._moving=!0,r||n.moving||this.fire(new t.Event(\"movestart\",e)),this._zooming&&!n.zooming&&this.fire(new t.Event(\"zoomstart\",e)),this._rotating&&!n.rotating&&this.fire(new t.Event(\"rotatestart\",e)),this._pitching&&!n.pitching&&this.fire(new t.Event(\"pitchstart\",e))},r.prototype._fireMoveEvents=function(e){this.fire(new t.Event(\"move\",e)),this._zooming&&this.fire(new t.Event(\"zoom\",e)),this._rotating&&this.fire(new t.Event(\"rotate\",e)),this._pitching&&this.fire(new t.Event(\"pitch\",e))},r.prototype._afterEase=function(e,r){if(!this._easeId||!r||this._easeId!==r){delete this._easeId;var n=this._zooming,i=this._rotating,a=this._pitching;this._moving=!1,this._zooming=!1,this._rotating=!1,this._pitching=!1,this._padding=!1,n&&this.fire(new t.Event(\"zoomend\",e)),i&&this.fire(new t.Event(\"rotateend\",e)),a&&this.fire(new t.Event(\"pitchend\",e)),this.fire(new t.Event(\"moveend\",e))}},r.prototype.flyTo=function(e,r){var n=this;if(!e.essential&&t.browser.prefersReducedMotion){var i=t.pick(e,[\"center\",\"zoom\",\"bearing\",\"pitch\",\"around\"]);return this.jumpTo(i,r)}this.stop(),e=t.extend({offset:[0,0],speed:1.2,curve:1.42,easing:t.ease},e);var a=this.transform,o=this.getZoom(),s=this.getBearing(),l=this.getPitch(),c=this.getPadding(),u=\"zoom\"in e?t.clamp(+e.zoom,a.minZoom,a.maxZoom):o,f=\"bearing\"in e?this._normalizeBearing(e.bearing,s):s,h=\"pitch\"in e?+e.pitch:l,p=\"padding\"in e?e.padding:a.padding,d=a.zoomScale(u-o),g=t.Point.convert(e.offset),m=a.centerPoint.add(g),v=a.pointLocation(m),y=t.LngLat.convert(e.center||v);this._normalizeCenter(y);var x=a.project(v),b=a.project(y).sub(x),_=e.curve,w=Math.max(a.width,a.height),T=w/d,k=b.mag();if(\"minZoom\"in e){var M=t.clamp(Math.min(e.minZoom,o,u),a.minZoom,a.maxZoom),A=w/a.zoomScale(M-o);_=Math.sqrt(A/k*2)}var S=_*_;function E(t){var e=(T*T-w*w+(t?-1:1)*S*S*k*k)/(2*(t?T:w)*S*k);return Math.log(Math.sqrt(e*e+1)-e)}function C(t){return(Math.exp(t)-Math.exp(-t))/2}function L(t){return(Math.exp(t)+Math.exp(-t))/2}var I=E(0),P=function(t){return L(I)/L(I+_*t)},z=function(t){return w*((L(I)*(C(e=I+_*t)/L(e))-C(I))/S)/k;var e},O=(E(1)-I)/_;if(Math.abs(k)<1e-6||!isFinite(O)){if(Math.abs(w-T)<1e-6)return this.easeTo(e,r);var D=T<w?-1:1;O=Math.abs(Math.log(T/w))/_,z=function(){return 0},P=function(t){return Math.exp(D*_*t)}}return e.duration=\"duration\"in e?+e.duration:1e3*O/(\"screenSpeed\"in e?+e.screenSpeed/_:+e.speed),e.maxDuration&&e.duration>e.maxDuration&&(e.duration=0),this._zooming=!0,this._rotating=s!==f,this._pitching=h!==l,this._padding=!a.isPaddingEqual(p),this._prepareEase(r,!1),this._ease((function(e){var i=e*O,d=1/P(i);a.zoom=1===e?u:o+a.scaleZoom(d),n._rotating&&(a.bearing=t.number(s,f,e)),n._pitching&&(a.pitch=t.number(l,h,e)),n._padding&&(a.interpolatePadding(c,p,e),m=a.centerPoint.add(g));var v=1===e?y:a.unproject(x.add(b.mult(z(i))).mult(d));a.setLocationAtPoint(a.renderWorldCopies?v.wrap():v,m),n._fireMoveEvents(r)}),(function(){return n._afterEase(r)}),e),this},r.prototype.isEasing=function(){return!!this._easeFrameId},r.prototype.stop=function(){return this._stop()},r.prototype._stop=function(t,e){if(this._easeFrameId&&(this._cancelRenderFrame(this._easeFrameId),delete this._easeFrameId,delete this._onEaseFrame),this._onEaseEnd){var r=this._onEaseEnd;delete this._onEaseEnd,r.call(this,e)}if(!t){var n=this.handlers;n&&n.stop()}return this},r.prototype._ease=function(e,r,n){!1===n.animate||0===n.duration?(e(1),r()):(this._easeStart=t.browser.now(),this._easeOptions=n,this._onEaseFrame=e,this._onEaseEnd=r,this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback))},r.prototype._renderFrameCallback=function(){var e=Math.min((t.browser.now()-this._easeStart)/this._easeOptions.duration,1);this._onEaseFrame(this._easeOptions.easing(e)),e<1?this._easeFrameId=this._requestRenderFrame(this._renderFrameCallback):this.stop()},r.prototype._normalizeBearing=function(e,r){e=t.wrap(e,-180,180);var n=Math.abs(e-r);return Math.abs(e-360-r)<n&&(e-=360),Math.abs(e+360-r)<n&&(e+=360),e},r.prototype._normalizeCenter=function(t){var e=this.transform;if(e.renderWorldCopies&&!e.lngRange){var r=t.lng-e.center.lng;t.lng+=r>180?-360:r<-180?360:0}},r}(t.Evented),vi=function(e){void 0===e&&(e={}),this.options=e,t.bindAll([\"_updateEditLink\",\"_updateData\",\"_updateCompact\"],this)};vi.prototype.getDefaultPosition=function(){return\"bottom-right\"},vi.prototype.onAdd=function(t){var e=this.options&&this.options.compact;return this._map=t,this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-attrib\"),this._innerContainer=r.create(\"div\",\"mapboxgl-ctrl-attrib-inner\",this._container),e&&this._container.classList.add(\"mapboxgl-compact\"),this._updateAttributions(),this._updateEditLink(),this._map.on(\"styledata\",this._updateData),this._map.on(\"sourcedata\",this._updateData),this._map.on(\"moveend\",this._updateEditLink),void 0===e&&(this._map.on(\"resize\",this._updateCompact),this._updateCompact()),this._container},vi.prototype.onRemove=function(){r.remove(this._container),this._map.off(\"styledata\",this._updateData),this._map.off(\"sourcedata\",this._updateData),this._map.off(\"moveend\",this._updateEditLink),this._map.off(\"resize\",this._updateCompact),this._map=void 0,this._attribHTML=void 0},vi.prototype._updateEditLink=function(){var e=this._editLink;e||(e=this._editLink=this._container.querySelector(\".mapbox-improve-map\"));var r=[{key:\"owner\",value:this.styleOwner},{key:\"id\",value:this.styleId},{key:\"access_token\",value:this._map._requestManager._customAccessToken||t.config.ACCESS_TOKEN}];if(e){var n=r.reduce((function(t,e,n){return e.value&&(t+=e.key+\"=\"+e.value+(n<r.length-1?\"&\":\"\")),t}),\"?\");e.href=t.config.FEEDBACK_URL+\"/\"+n+(this._map._hash?this._map._hash.getHashString(!0):\"\"),e.rel=\"noopener nofollow\"}},vi.prototype._updateData=function(t){!t||\"metadata\"!==t.sourceDataType&&\"style\"!==t.dataType||(this._updateAttributions(),this._updateEditLink())},vi.prototype._updateAttributions=function(){if(this._map.style){var t=[];if(this.options.customAttribution&&(Array.isArray(this.options.customAttribution)?t=t.concat(this.options.customAttribution.map((function(t){return\"string\"!=typeof t?\"\":t}))):\"string\"==typeof this.options.customAttribution&&t.push(this.options.customAttribution)),this._map.style.stylesheet){var e=this._map.style.stylesheet;this.styleOwner=e.owner,this.styleId=e.id}var r=this._map.style.sourceCaches;for(var n in r){var i=r[n];if(i.used){var a=i.getSource();a.attribution&&t.indexOf(a.attribution)<0&&t.push(a.attribution)}}t.sort((function(t,e){return t.length-e.length}));var o=(t=t.filter((function(e,r){for(var n=r+1;n<t.length;n++)if(t[n].indexOf(e)>=0)return!1;return!0}))).join(\" | \");o!==this._attribHTML&&(this._attribHTML=o,t.length?(this._innerContainer.innerHTML=o,this._container.classList.remove(\"mapboxgl-attrib-empty\")):this._container.classList.add(\"mapboxgl-attrib-empty\"),this._editLink=null)}},vi.prototype._updateCompact=function(){this._map.getCanvasContainer().offsetWidth<=640?this._container.classList.add(\"mapboxgl-compact\"):this._container.classList.remove(\"mapboxgl-compact\")};var yi=function(){t.bindAll([\"_updateLogo\"],this),t.bindAll([\"_updateCompact\"],this)};yi.prototype.onAdd=function(t){this._map=t,this._container=r.create(\"div\",\"mapboxgl-ctrl\");var e=r.create(\"a\",\"mapboxgl-ctrl-logo\");return e.target=\"_blank\",e.rel=\"noopener nofollow\",e.href=\"https://www.mapbox.com/\",e.setAttribute(\"aria-label\",this._map._getUIString(\"LogoControl.Title\")),e.setAttribute(\"rel\",\"noopener nofollow\"),this._container.appendChild(e),this._container.style.display=\"none\",this._map.on(\"sourcedata\",this._updateLogo),this._updateLogo(),this._map.on(\"resize\",this._updateCompact),this._updateCompact(),this._container},yi.prototype.onRemove=function(){r.remove(this._container),this._map.off(\"sourcedata\",this._updateLogo),this._map.off(\"resize\",this._updateCompact)},yi.prototype.getDefaultPosition=function(){return\"bottom-left\"},yi.prototype._updateLogo=function(t){t&&\"metadata\"!==t.sourceDataType||(this._container.style.display=this._logoRequired()?\"block\":\"none\")},yi.prototype._logoRequired=function(){if(this._map.style){var t=this._map.style.sourceCaches;for(var e in t)if(t[e].getSource().mapbox_logo)return!0;return!1}},yi.prototype._updateCompact=function(){var t=this._container.children;if(t.length){var e=t[0];this._map.getCanvasContainer().offsetWidth<250?e.classList.add(\"mapboxgl-compact\"):e.classList.remove(\"mapboxgl-compact\")}};var xi=function(){this._queue=[],this._id=0,this._cleared=!1,this._currentlyRunning=!1};xi.prototype.add=function(t){var e=++this._id;return this._queue.push({callback:t,id:e,cancelled:!1}),e},xi.prototype.remove=function(t){for(var e=this._currentlyRunning,r=0,n=e?this._queue.concat(e):this._queue;r<n.length;r+=1){var i=n[r];if(i.id===t)return void(i.cancelled=!0)}},xi.prototype.run=function(t){void 0===t&&(t=0);var e=this._currentlyRunning=this._queue;this._queue=[];for(var r=0,n=e;r<n.length;r+=1){var i=n[r];if(!i.cancelled&&(i.callback(t),this._cleared))break}this._cleared=!1,this._currentlyRunning=!1},xi.prototype.clear=function(){this._currentlyRunning&&(this._cleared=!0),this._queue=[]};var bi={\"FullscreenControl.Enter\":\"Enter fullscreen\",\"FullscreenControl.Exit\":\"Exit fullscreen\",\"GeolocateControl.FindMyLocation\":\"Find my location\",\"GeolocateControl.LocationNotAvailable\":\"Location not available\",\"LogoControl.Title\":\"Mapbox logo\",\"NavigationControl.ResetBearing\":\"Reset bearing to north\",\"NavigationControl.ZoomIn\":\"Zoom in\",\"NavigationControl.ZoomOut\":\"Zoom out\",\"ScaleControl.Feet\":\"ft\",\"ScaleControl.Meters\":\"m\",\"ScaleControl.Kilometers\":\"km\",\"ScaleControl.Miles\":\"mi\",\"ScaleControl.NauticalMiles\":\"nm\"},_i=t.window.HTMLImageElement,wi=t.window.HTMLElement,Ti=t.window.ImageBitmap,ki={center:[0,0],zoom:0,bearing:0,pitch:0,minZoom:-2,maxZoom:22,minPitch:0,maxPitch:60,interactive:!0,scrollZoom:!0,boxZoom:!0,dragRotate:!0,dragPan:!0,keyboard:!0,doubleClickZoom:!0,touchZoomRotate:!0,touchPitch:!0,bearingSnap:7,clickTolerance:3,pitchWithRotate:!0,hash:!1,attributionControl:!0,failIfMajorPerformanceCaveat:!1,preserveDrawingBuffer:!1,trackResize:!0,renderWorldCopies:!0,refreshExpiredTiles:!0,maxTileCacheSize:null,localIdeographFontFamily:\"sans-serif\",transformRequest:null,accessToken:null,fadeDuration:300,crossSourceCollisions:!0},Mi=function(n){function i(e){var r=this;if(null!=(e=t.extend({},ki,e)).minZoom&&null!=e.maxZoom&&e.minZoom>e.maxZoom)throw new Error(\"maxZoom must be greater than or equal to minZoom\");if(null!=e.minPitch&&null!=e.maxPitch&&e.minPitch>e.maxPitch)throw new Error(\"maxPitch must be greater than or equal to minPitch\");if(null!=e.minPitch&&e.minPitch<0)throw new Error(\"minPitch must be greater than or equal to 0\");if(null!=e.maxPitch&&e.maxPitch>60)throw new Error(\"maxPitch must be less than or equal to 60\");var i=new wn(e.minZoom,e.maxZoom,e.minPitch,e.maxPitch,e.renderWorldCopies);if(n.call(this,i,e),this._interactive=e.interactive,this._maxTileCacheSize=e.maxTileCacheSize,this._failIfMajorPerformanceCaveat=e.failIfMajorPerformanceCaveat,this._preserveDrawingBuffer=e.preserveDrawingBuffer,this._antialias=e.antialias,this._trackResize=e.trackResize,this._bearingSnap=e.bearingSnap,this._refreshExpiredTiles=e.refreshExpiredTiles,this._fadeDuration=e.fadeDuration,this._crossSourceCollisions=e.crossSourceCollisions,this._crossFadingFactor=1,this._collectResourceTiming=e.collectResourceTiming,this._renderTaskQueue=new xi,this._controls=[],this._mapId=t.uniqueId(),this._locale=t.extend({},bi,e.locale),this._requestManager=new t.RequestManager(e.transformRequest,e.accessToken),\"string\"==typeof e.container){if(this._container=t.window.document.getElementById(e.container),!this._container)throw new Error(\"Container '\"+e.container+\"' not found.\")}else{if(!(e.container instanceof wi))throw new Error(\"Invalid type: 'container' must be a String or HTMLElement.\");this._container=e.container}if(e.maxBounds&&this.setMaxBounds(e.maxBounds),t.bindAll([\"_onWindowOnline\",\"_onWindowResize\",\"_contextLost\",\"_contextRestored\"],this),this._setupContainer(),this._setupPainter(),void 0===this.painter)throw new Error(\"Failed to initialize WebGL.\");this.on(\"move\",(function(){return r._update(!1)})),this.on(\"moveend\",(function(){return r._update(!1)})),this.on(\"zoom\",(function(){return r._update(!0)})),void 0!==t.window&&(t.window.addEventListener(\"online\",this._onWindowOnline,!1),t.window.addEventListener(\"resize\",this._onWindowResize,!1)),this.handlers=new gi(this,e),this._hash=e.hash&&new kn(\"string\"==typeof e.hash&&e.hash||void 0).addTo(this),this._hash&&this._hash._onHashChange()||(this.jumpTo({center:e.center,zoom:e.zoom,bearing:e.bearing,pitch:e.pitch}),e.bounds&&(this.resize(),this.fitBounds(e.bounds,t.extend({},e.fitBoundsOptions,{duration:0})))),this.resize(),this._localIdeographFontFamily=e.localIdeographFontFamily,e.style&&this.setStyle(e.style,{localIdeographFontFamily:e.localIdeographFontFamily}),e.attributionControl&&this.addControl(new vi({customAttribution:e.customAttribution})),this.addControl(new yi,e.logoPosition),this.on(\"style.load\",(function(){r.transform.unmodified&&r.jumpTo(r.style.stylesheet)})),this.on(\"data\",(function(e){r._update(\"style\"===e.dataType),r.fire(new t.Event(e.dataType+\"data\",e))})),this.on(\"dataloading\",(function(e){r.fire(new t.Event(e.dataType+\"dataloading\",e))}))}n&&(i.__proto__=n),(i.prototype=Object.create(n&&n.prototype)).constructor=i;var a={showTileBoundaries:{configurable:!0},showPadding:{configurable:!0},showCollisionBoxes:{configurable:!0},showOverdrawInspector:{configurable:!0},repaint:{configurable:!0},vertices:{configurable:!0},version:{configurable:!0}};return i.prototype._getMapId=function(){return this._mapId},i.prototype.addControl=function(e,r){if(void 0===r&&e.getDefaultPosition&&(r=e.getDefaultPosition()),void 0===r&&(r=\"top-right\"),!e||!e.onAdd)return this.fire(new t.ErrorEvent(new Error(\"Invalid argument to map.addControl(). Argument must be a control with onAdd and onRemove methods.\")));var n=e.onAdd(this);this._controls.push(e);var i=this._controlPositions[r];return-1!==r.indexOf(\"bottom\")?i.insertBefore(n,i.firstChild):i.appendChild(n),this},i.prototype.removeControl=function(e){if(!e||!e.onRemove)return this.fire(new t.ErrorEvent(new Error(\"Invalid argument to map.removeControl(). Argument must be a control with onAdd and onRemove methods.\")));var r=this._controls.indexOf(e);return r>-1&&this._controls.splice(r,1),e.onRemove(this),this},i.prototype.resize=function(e){var r=this._containerDimensions(),n=r[0],i=r[1];this._resizeCanvas(n,i),this.transform.resize(n,i),this.painter.resize(n,i);var a=!this._moving;return a&&(this.stop(),this.fire(new t.Event(\"movestart\",e)).fire(new t.Event(\"move\",e))),this.fire(new t.Event(\"resize\",e)),a&&this.fire(new t.Event(\"moveend\",e)),this},i.prototype.getBounds=function(){return this.transform.getBounds()},i.prototype.getMaxBounds=function(){return this.transform.getMaxBounds()},i.prototype.setMaxBounds=function(e){return this.transform.setMaxBounds(t.LngLatBounds.convert(e)),this._update()},i.prototype.setMinZoom=function(t){if((t=null==t?-2:t)>=-2&&t<=this.transform.maxZoom)return this.transform.minZoom=t,this._update(),this.getZoom()<t&&this.setZoom(t),this;throw new Error(\"minZoom must be between -2 and the current maxZoom, inclusive\")},i.prototype.getMinZoom=function(){return this.transform.minZoom},i.prototype.setMaxZoom=function(t){if((t=null==t?22:t)>=this.transform.minZoom)return this.transform.maxZoom=t,this._update(),this.getZoom()>t&&this.setZoom(t),this;throw new Error(\"maxZoom must be greater than the current minZoom\")},i.prototype.getMaxZoom=function(){return this.transform.maxZoom},i.prototype.setMinPitch=function(t){if((t=null==t?0:t)<0)throw new Error(\"minPitch must be greater than or equal to 0\");if(t>=0&&t<=this.transform.maxPitch)return this.transform.minPitch=t,this._update(),this.getPitch()<t&&this.setPitch(t),this;throw new Error(\"minPitch must be between 0 and the current maxPitch, inclusive\")},i.prototype.getMinPitch=function(){return this.transform.minPitch},i.prototype.setMaxPitch=function(t){if((t=null==t?60:t)>60)throw new Error(\"maxPitch must be less than or equal to 60\");if(t>=this.transform.minPitch)return this.transform.maxPitch=t,this._update(),this.getPitch()>t&&this.setPitch(t),this;throw new Error(\"maxPitch must be greater than the current minPitch\")},i.prototype.getMaxPitch=function(){return this.transform.maxPitch},i.prototype.getRenderWorldCopies=function(){return this.transform.renderWorldCopies},i.prototype.setRenderWorldCopies=function(t){return this.transform.renderWorldCopies=t,this._update()},i.prototype.project=function(e){return this.transform.locationPoint(t.LngLat.convert(e))},i.prototype.unproject=function(e){return this.transform.pointLocation(t.Point.convert(e))},i.prototype.isMoving=function(){return this._moving||this.handlers.isMoving()},i.prototype.isZooming=function(){return this._zooming||this.handlers.isZooming()},i.prototype.isRotating=function(){return this._rotating||this.handlers.isRotating()},i.prototype._createDelegatedListener=function(t,e,r){var n,i=this;if(\"mouseenter\"===t||\"mouseover\"===t){var a=!1;return{layer:e,listener:r,delegates:{mousemove:function(n){var o=i.getLayer(e)?i.queryRenderedFeatures(n.point,{layers:[e]}):[];o.length?a||(a=!0,r.call(i,new zn(t,i,n.originalEvent,{features:o}))):a=!1},mouseout:function(){a=!1}}}}if(\"mouseleave\"===t||\"mouseout\"===t){var o=!1;return{layer:e,listener:r,delegates:{mousemove:function(n){(i.getLayer(e)?i.queryRenderedFeatures(n.point,{layers:[e]}):[]).length?o=!0:o&&(o=!1,r.call(i,new zn(t,i,n.originalEvent)))},mouseout:function(e){o&&(o=!1,r.call(i,new zn(t,i,e.originalEvent)))}}}}return{layer:e,listener:r,delegates:(n={},n[t]=function(t){var n=i.getLayer(e)?i.queryRenderedFeatures(t.point,{layers:[e]}):[];n.length&&(t.features=n,r.call(i,t),delete t.features)},n)}},i.prototype.on=function(t,e,r){if(void 0===r)return n.prototype.on.call(this,t,e);var i=this._createDelegatedListener(t,e,r);for(var a in this._delegatedListeners=this._delegatedListeners||{},this._delegatedListeners[t]=this._delegatedListeners[t]||[],this._delegatedListeners[t].push(i),i.delegates)this.on(a,i.delegates[a]);return this},i.prototype.once=function(t,e,r){if(void 0===r)return n.prototype.once.call(this,t,e);var i=this._createDelegatedListener(t,e,r);for(var a in i.delegates)this.once(a,i.delegates[a]);return this},i.prototype.off=function(t,e,r){var i=this;return void 0===r?n.prototype.off.call(this,t,e):(this._delegatedListeners&&this._delegatedListeners[t]&&function(n){for(var a=n[t],o=0;o<a.length;o++){var s=a[o];if(s.layer===e&&s.listener===r){for(var l in s.delegates)i.off(l,s.delegates[l]);return a.splice(o,1),i}}}(this._delegatedListeners),this)},i.prototype.queryRenderedFeatures=function(e,r){if(!this.style)return[];var n;if(void 0!==r||void 0===e||e instanceof t.Point||Array.isArray(e)||(r=e,e=void 0),r=r||{},(e=e||[[0,0],[this.transform.width,this.transform.height]])instanceof t.Point||\"number\"==typeof e[0])n=[t.Point.convert(e)];else{var i=t.Point.convert(e[0]),a=t.Point.convert(e[1]);n=[i,new t.Point(a.x,i.y),a,new t.Point(i.x,a.y),i]}return this.style.queryRenderedFeatures(n,r,this.transform)},i.prototype.querySourceFeatures=function(t,e){return this.style.querySourceFeatures(t,e)},i.prototype.setStyle=function(e,r){return!1!==(r=t.extend({},{localIdeographFontFamily:this._localIdeographFontFamily},r)).diff&&r.localIdeographFontFamily===this._localIdeographFontFamily&&this.style&&e?(this._diffStyle(e,r),this):(this._localIdeographFontFamily=r.localIdeographFontFamily,this._updateStyle(e,r))},i.prototype._getUIString=function(t){var e=this._locale[t];if(null==e)throw new Error(\"Missing UI string '\"+t+\"'\");return e},i.prototype._updateStyle=function(t,e){return this.style&&(this.style.setEventedParent(null),this.style._remove()),t?(this.style=new qe(this,e||{}),this.style.setEventedParent(this,{style:this.style}),\"string\"==typeof t?this.style.loadURL(t):this.style.loadJSON(t),this):(delete this.style,this)},i.prototype._lazyInitEmptyStyle=function(){this.style||(this.style=new qe(this,{}),this.style.setEventedParent(this,{style:this.style}),this.style.loadEmpty())},i.prototype._diffStyle=function(e,r){var n=this;if(\"string\"==typeof e){var i=this._requestManager.normalizeStyleURL(e),a=this._requestManager.transformRequest(i,t.ResourceType.Style);t.getJSON(a,(function(e,i){e?n.fire(new t.ErrorEvent(e)):i&&n._updateDiff(i,r)}))}else\"object\"==typeof e&&this._updateDiff(e,r)},i.prototype._updateDiff=function(e,r){try{this.style.setState(e)&&this._update(!0)}catch(n){t.warnOnce(\"Unable to perform style diff: \"+(n.message||n.error||n)+\".  Rebuilding the style from scratch.\"),this._updateStyle(e,r)}},i.prototype.getStyle=function(){if(this.style)return this.style.serialize()},i.prototype.isStyleLoaded=function(){return this.style?this.style.loaded():t.warnOnce(\"There is no style added to the map.\")},i.prototype.addSource=function(t,e){return this._lazyInitEmptyStyle(),this.style.addSource(t,e),this._update(!0)},i.prototype.isSourceLoaded=function(e){var r=this.style&&this.style.sourceCaches[e];if(void 0!==r)return r.loaded();this.fire(new t.ErrorEvent(new Error(\"There is no source with ID '\"+e+\"'\")))},i.prototype.areTilesLoaded=function(){var t=this.style&&this.style.sourceCaches;for(var e in t){var r=t[e]._tiles;for(var n in r){var i=r[n];if(\"loaded\"!==i.state&&\"errored\"!==i.state)return!1}}return!0},i.prototype.addSourceType=function(t,e,r){return this._lazyInitEmptyStyle(),this.style.addSourceType(t,e,r)},i.prototype.removeSource=function(t){return this.style.removeSource(t),this._update(!0)},i.prototype.getSource=function(t){return this.style.getSource(t)},i.prototype.addImage=function(e,r,n){void 0===n&&(n={});var i=n.pixelRatio;void 0===i&&(i=1);var a=n.sdf;void 0===a&&(a=!1);var o=n.stretchX,s=n.stretchY,l=n.content;if(this._lazyInitEmptyStyle(),r instanceof _i||Ti&&r instanceof Ti){var c=t.browser.getImageData(r);this.style.addImage(e,{data:new t.RGBAImage({width:c.width,height:c.height},c.data),pixelRatio:i,stretchX:o,stretchY:s,content:l,sdf:a,version:0})}else{if(void 0===r.width||void 0===r.height)return this.fire(new t.ErrorEvent(new Error(\"Invalid arguments to map.addImage(). The second argument must be an `HTMLImageElement`, `ImageData`, `ImageBitmap`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`\")));var u=r;this.style.addImage(e,{data:new t.RGBAImage({width:r.width,height:r.height},new Uint8Array(r.data)),pixelRatio:i,stretchX:o,stretchY:s,content:l,sdf:a,version:0,userImage:u}),u.onAdd&&u.onAdd(this,e)}},i.prototype.updateImage=function(e,r){var n=this.style.getImage(e);if(!n)return this.fire(new t.ErrorEvent(new Error(\"The map has no image with that id. If you are adding a new image use `map.addImage(...)` instead.\")));var i=r instanceof _i||Ti&&r instanceof Ti?t.browser.getImageData(r):r,a=i.width,o=i.height,s=i.data;return void 0===a||void 0===o?this.fire(new t.ErrorEvent(new Error(\"Invalid arguments to map.updateImage(). The second argument must be an `HTMLImageElement`, `ImageData`, `ImageBitmap`, or object with `width`, `height`, and `data` properties with the same format as `ImageData`\"))):a!==n.data.width||o!==n.data.height?this.fire(new t.ErrorEvent(new Error(\"The width and height of the updated image must be that same as the previous version of the image\"))):(n.data.replace(s,!(r instanceof _i||Ti&&r instanceof Ti)),void this.style.updateImage(e,n))},i.prototype.hasImage=function(e){return e?!!this.style.getImage(e):(this.fire(new t.ErrorEvent(new Error(\"Missing required image id\"))),!1)},i.prototype.removeImage=function(t){this.style.removeImage(t)},i.prototype.loadImage=function(e,r){t.getImage(this._requestManager.transformRequest(e,t.ResourceType.Image),r)},i.prototype.listImages=function(){return this.style.listImages()},i.prototype.addLayer=function(t,e){return this._lazyInitEmptyStyle(),this.style.addLayer(t,e),this._update(!0)},i.prototype.moveLayer=function(t,e){return this.style.moveLayer(t,e),this._update(!0)},i.prototype.removeLayer=function(t){return this.style.removeLayer(t),this._update(!0)},i.prototype.getLayer=function(t){return this.style.getLayer(t)},i.prototype.setLayerZoomRange=function(t,e,r){return this.style.setLayerZoomRange(t,e,r),this._update(!0)},i.prototype.setFilter=function(t,e,r){return void 0===r&&(r={}),this.style.setFilter(t,e,r),this._update(!0)},i.prototype.getFilter=function(t){return this.style.getFilter(t)},i.prototype.setPaintProperty=function(t,e,r,n){return void 0===n&&(n={}),this.style.setPaintProperty(t,e,r,n),this._update(!0)},i.prototype.getPaintProperty=function(t,e){return this.style.getPaintProperty(t,e)},i.prototype.setLayoutProperty=function(t,e,r,n){return void 0===n&&(n={}),this.style.setLayoutProperty(t,e,r,n),this._update(!0)},i.prototype.getLayoutProperty=function(t,e){return this.style.getLayoutProperty(t,e)},i.prototype.setLight=function(t,e){return void 0===e&&(e={}),this._lazyInitEmptyStyle(),this.style.setLight(t,e),this._update(!0)},i.prototype.getLight=function(){return this.style.getLight()},i.prototype.setFeatureState=function(t,e){return this.style.setFeatureState(t,e),this._update()},i.prototype.removeFeatureState=function(t,e){return this.style.removeFeatureState(t,e),this._update()},i.prototype.getFeatureState=function(t){return this.style.getFeatureState(t)},i.prototype.getContainer=function(){return this._container},i.prototype.getCanvasContainer=function(){return this._canvasContainer},i.prototype.getCanvas=function(){return this._canvas},i.prototype._containerDimensions=function(){var t=0,e=0;return this._container&&(t=this._container.clientWidth||400,e=this._container.clientHeight||300),[t,e]},i.prototype._detectMissingCSS=function(){\"rgb(250, 128, 114)\"!==t.window.getComputedStyle(this._missingCSSCanary).getPropertyValue(\"background-color\")&&t.warnOnce(\"This page appears to be missing CSS declarations for Mapbox GL JS, which may cause the map to display incorrectly. Please ensure your page includes mapbox-gl.css, as described in https://www.mapbox.com/mapbox-gl-js/api/.\")},i.prototype._setupContainer=function(){var t=this._container;t.classList.add(\"mapboxgl-map\"),(this._missingCSSCanary=r.create(\"div\",\"mapboxgl-canary\",t)).style.visibility=\"hidden\",this._detectMissingCSS();var e=this._canvasContainer=r.create(\"div\",\"mapboxgl-canvas-container\",t);this._interactive&&e.classList.add(\"mapboxgl-interactive\"),this._canvas=r.create(\"canvas\",\"mapboxgl-canvas\",e),this._canvas.addEventListener(\"webglcontextlost\",this._contextLost,!1),this._canvas.addEventListener(\"webglcontextrestored\",this._contextRestored,!1),this._canvas.setAttribute(\"tabindex\",\"0\"),this._canvas.setAttribute(\"aria-label\",\"Map\");var n=this._containerDimensions();this._resizeCanvas(n[0],n[1]);var i=this._controlContainer=r.create(\"div\",\"mapboxgl-control-container\",t),a=this._controlPositions={};[\"top-left\",\"top-right\",\"bottom-left\",\"bottom-right\"].forEach((function(t){a[t]=r.create(\"div\",\"mapboxgl-ctrl-\"+t,i)}))},i.prototype._resizeCanvas=function(e,r){var n=t.browser.devicePixelRatio||1;this._canvas.width=n*e,this._canvas.height=n*r,this._canvas.style.width=e+\"px\",this._canvas.style.height=r+\"px\"},i.prototype._setupPainter=function(){var r=t.extend({},e.webGLContextAttributes,{failIfMajorPerformanceCaveat:this._failIfMajorPerformanceCaveat,preserveDrawingBuffer:this._preserveDrawingBuffer,antialias:this._antialias||!1}),n=this._canvas.getContext(\"webgl\",r)||this._canvas.getContext(\"experimental-webgl\",r);n?(this.painter=new yn(n,this.transform),t.webpSupported.testSupport(n)):this.fire(new t.ErrorEvent(new Error(\"Failed to initialize WebGL\")))},i.prototype._contextLost=function(e){e.preventDefault(),this._frame&&(this._frame.cancel(),this._frame=null),this.fire(new t.Event(\"webglcontextlost\",{originalEvent:e}))},i.prototype._contextRestored=function(e){this._setupPainter(),this.resize(),this._update(),this.fire(new t.Event(\"webglcontextrestored\",{originalEvent:e}))},i.prototype.loaded=function(){return!this._styleDirty&&!this._sourcesDirty&&!!this.style&&this.style.loaded()},i.prototype._update=function(t){return this.style?(this._styleDirty=this._styleDirty||t,this._sourcesDirty=!0,this.triggerRepaint(),this):this},i.prototype._requestRenderFrame=function(t){return this._update(),this._renderTaskQueue.add(t)},i.prototype._cancelRenderFrame=function(t){this._renderTaskQueue.remove(t)},i.prototype._render=function(e){var r,n=this,i=0,a=this.painter.context.extTimerQuery;if(this.listens(\"gpu-timing-frame\")&&(r=a.createQueryEXT(),a.beginQueryEXT(a.TIME_ELAPSED_EXT,r),i=t.browser.now()),this.painter.context.setDirty(),this.painter.setBaseState(),this._renderTaskQueue.run(e),!this._removed){var o=!1;if(this.style&&this._styleDirty){this._styleDirty=!1;var s=this.transform.zoom,l=t.browser.now();this.style.zoomHistory.update(s,l);var c=new t.EvaluationParameters(s,{now:l,fadeDuration:this._fadeDuration,zoomHistory:this.style.zoomHistory,transition:this.style.getTransition()}),u=c.crossFadingFactor();1===u&&u===this._crossFadingFactor||(o=!0,this._crossFadingFactor=u),this.style.update(c)}if(this.style&&this._sourcesDirty&&(this._sourcesDirty=!1,this.style._updateSources(this.transform)),this._placementDirty=this.style&&this.style._updatePlacement(this.painter.transform,this.showCollisionBoxes,this._fadeDuration,this._crossSourceCollisions),this.painter.render(this.style,{showTileBoundaries:this.showTileBoundaries,showOverdrawInspector:this._showOverdrawInspector,rotating:this.isRotating(),zooming:this.isZooming(),moving:this.isMoving(),fadeDuration:this._fadeDuration,showPadding:this.showPadding,gpuTiming:!!this.listens(\"gpu-timing-layer\")}),this.fire(new t.Event(\"render\")),this.loaded()&&!this._loaded&&(this._loaded=!0,this.fire(new t.Event(\"load\"))),this.style&&(this.style.hasTransitions()||o)&&(this._styleDirty=!0),this.style&&!this._placementDirty&&this.style._releaseSymbolFadeTiles(),this.listens(\"gpu-timing-frame\")){var f=t.browser.now()-i;a.endQueryEXT(a.TIME_ELAPSED_EXT,r),setTimeout((function(){var e=a.getQueryObjectEXT(r,a.QUERY_RESULT_EXT)/1e6;a.deleteQueryEXT(r),n.fire(new t.Event(\"gpu-timing-frame\",{cpuTime:f,gpuTime:e}))}),50)}if(this.listens(\"gpu-timing-layer\")){var h=this.painter.collectGpuTimers();setTimeout((function(){var e=n.painter.queryGpuTimers(h);n.fire(new t.Event(\"gpu-timing-layer\",{layerTimes:e}))}),50)}return this._sourcesDirty||this._styleDirty||this._placementDirty||this._repaint?this.triggerRepaint():!this.isMoving()&&this.loaded()&&(this._fullyLoaded||(this._fullyLoaded=!0),this.fire(new t.Event(\"idle\"))),this}},i.prototype.remove=function(){this._hash&&this._hash.remove();for(var e=0,r=this._controls;e<r.length;e+=1)r[e].onRemove(this);this._controls=[],this._frame&&(this._frame.cancel(),this._frame=null),this._renderTaskQueue.clear(),this.painter.destroy(),this.handlers.destroy(),delete this.handlers,this.setStyle(null),void 0!==t.window&&(t.window.removeEventListener(\"resize\",this._onWindowResize,!1),t.window.removeEventListener(\"online\",this._onWindowOnline,!1));var n=this.painter.context.gl.getExtension(\"WEBGL_lose_context\");n&&n.loseContext(),Ai(this._canvasContainer),Ai(this._controlContainer),Ai(this._missingCSSCanary),this._container.classList.remove(\"mapboxgl-map\"),this._removed=!0,this.fire(new t.Event(\"remove\"))},i.prototype.triggerRepaint=function(){var e=this;this.style&&!this._frame&&(this._frame=t.browser.frame((function(t){e._frame=null,e._render(t)})))},i.prototype._onWindowOnline=function(){this._update()},i.prototype._onWindowResize=function(t){this._trackResize&&this.resize({originalEvent:t})._update()},a.showTileBoundaries.get=function(){return!!this._showTileBoundaries},a.showTileBoundaries.set=function(t){this._showTileBoundaries!==t&&(this._showTileBoundaries=t,this._update())},a.showPadding.get=function(){return!!this._showPadding},a.showPadding.set=function(t){this._showPadding!==t&&(this._showPadding=t,this._update())},a.showCollisionBoxes.get=function(){return!!this._showCollisionBoxes},a.showCollisionBoxes.set=function(t){this._showCollisionBoxes!==t&&(this._showCollisionBoxes=t,t?this.style._generateCollisionBoxes():this._update())},a.showOverdrawInspector.get=function(){return!!this._showOverdrawInspector},a.showOverdrawInspector.set=function(t){this._showOverdrawInspector!==t&&(this._showOverdrawInspector=t,this._update())},a.repaint.get=function(){return!!this._repaint},a.repaint.set=function(t){this._repaint!==t&&(this._repaint=t,this.triggerRepaint())},a.vertices.get=function(){return!!this._vertices},a.vertices.set=function(t){this._vertices=t,this._update()},i.prototype._setCacheLimits=function(e,r){t.setCacheLimits(e,r)},a.version.get=function(){return t.version},Object.defineProperties(i.prototype,a),i}(mi);function Ai(t){t.parentNode&&t.parentNode.removeChild(t)}var Si={showCompass:!0,showZoom:!0,visualizePitch:!1},Ei=function(e){var n=this;this.options=t.extend({},Si,e),this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-group\"),this._container.addEventListener(\"contextmenu\",(function(t){return t.preventDefault()})),this.options.showZoom&&(t.bindAll([\"_setButtonTitle\",\"_updateZoomButtons\"],this),this._zoomInButton=this._createButton(\"mapboxgl-ctrl-zoom-in\",(function(t){return n._map.zoomIn({},{originalEvent:t})})),r.create(\"span\",\"mapboxgl-ctrl-icon\",this._zoomInButton).setAttribute(\"aria-hidden\",!0),this._zoomOutButton=this._createButton(\"mapboxgl-ctrl-zoom-out\",(function(t){return n._map.zoomOut({},{originalEvent:t})})),r.create(\"span\",\"mapboxgl-ctrl-icon\",this._zoomOutButton).setAttribute(\"aria-hidden\",!0)),this.options.showCompass&&(t.bindAll([\"_rotateCompassArrow\"],this),this._compass=this._createButton(\"mapboxgl-ctrl-compass\",(function(t){n.options.visualizePitch?n._map.resetNorthPitch({},{originalEvent:t}):n._map.resetNorth({},{originalEvent:t})})),this._compassIcon=r.create(\"span\",\"mapboxgl-ctrl-icon\",this._compass),this._compassIcon.setAttribute(\"aria-hidden\",!0))};Ei.prototype._updateZoomButtons=function(){var t=this._map.getZoom();this._zoomInButton.disabled=t===this._map.getMaxZoom(),this._zoomOutButton.disabled=t===this._map.getMinZoom()},Ei.prototype._rotateCompassArrow=function(){var t=this.options.visualizePitch?\"scale(\"+1/Math.pow(Math.cos(this._map.transform.pitch*(Math.PI/180)),.5)+\") rotateX(\"+this._map.transform.pitch+\"deg) rotateZ(\"+this._map.transform.angle*(180/Math.PI)+\"deg)\":\"rotate(\"+this._map.transform.angle*(180/Math.PI)+\"deg)\";this._compassIcon.style.transform=t},Ei.prototype.onAdd=function(t){return this._map=t,this.options.showZoom&&(this._setButtonTitle(this._zoomInButton,\"ZoomIn\"),this._setButtonTitle(this._zoomOutButton,\"ZoomOut\"),this._map.on(\"zoom\",this._updateZoomButtons),this._updateZoomButtons()),this.options.showCompass&&(this._setButtonTitle(this._compass,\"ResetBearing\"),this.options.visualizePitch&&this._map.on(\"pitch\",this._rotateCompassArrow),this._map.on(\"rotate\",this._rotateCompassArrow),this._rotateCompassArrow(),this._handler=new Ci(this._map,this._compass,this.options.visualizePitch)),this._container},Ei.prototype.onRemove=function(){r.remove(this._container),this.options.showZoom&&this._map.off(\"zoom\",this._updateZoomButtons),this.options.showCompass&&(this.options.visualizePitch&&this._map.off(\"pitch\",this._rotateCompassArrow),this._map.off(\"rotate\",this._rotateCompassArrow),this._handler.off(),delete this._handler),delete this._map},Ei.prototype._createButton=function(t,e){var n=r.create(\"button\",t,this._container);return n.type=\"button\",n.addEventListener(\"click\",e),n},Ei.prototype._setButtonTitle=function(t,e){var r=this._map._getUIString(\"NavigationControl.\"+e);t.title=r,t.setAttribute(\"aria-label\",r)};var Ci=function(e,n,i){void 0===i&&(i=!1),this._clickTolerance=10,this.element=n,this.mouseRotate=new Gn({clickTolerance:e.dragRotate._mouseRotate._clickTolerance}),this.map=e,i&&(this.mousePitch=new Yn({clickTolerance:e.dragRotate._mousePitch._clickTolerance})),t.bindAll([\"mousedown\",\"mousemove\",\"mouseup\",\"touchstart\",\"touchmove\",\"touchend\",\"reset\"],this),r.addEventListener(n,\"mousedown\",this.mousedown),r.addEventListener(n,\"touchstart\",this.touchstart,{passive:!1}),r.addEventListener(n,\"touchmove\",this.touchmove),r.addEventListener(n,\"touchend\",this.touchend),r.addEventListener(n,\"touchcancel\",this.reset)};function Li(e,r,n){if(e=new t.LngLat(e.lng,e.lat),r){var i=new t.LngLat(e.lng-360,e.lat),a=new t.LngLat(e.lng+360,e.lat),o=n.locationPoint(e).distSqr(r);n.locationPoint(i).distSqr(r)<o?e=i:n.locationPoint(a).distSqr(r)<o&&(e=a)}for(;Math.abs(e.lng-n.center.lng)>180;){var s=n.locationPoint(e);if(s.x>=0&&s.y>=0&&s.x<=n.width&&s.y<=n.height)break;e.lng>n.center.lng?e.lng-=360:e.lng+=360}return e}Ci.prototype.down=function(t,e){this.mouseRotate.mousedown(t,e),this.mousePitch&&this.mousePitch.mousedown(t,e),r.disableDrag()},Ci.prototype.move=function(t,e){var r=this.map,n=this.mouseRotate.mousemoveWindow(t,e);if(n&&n.bearingDelta&&r.setBearing(r.getBearing()+n.bearingDelta),this.mousePitch){var i=this.mousePitch.mousemoveWindow(t,e);i&&i.pitchDelta&&r.setPitch(r.getPitch()+i.pitchDelta)}},Ci.prototype.off=function(){var t=this.element;r.removeEventListener(t,\"mousedown\",this.mousedown),r.removeEventListener(t,\"touchstart\",this.touchstart,{passive:!1}),r.removeEventListener(t,\"touchmove\",this.touchmove),r.removeEventListener(t,\"touchend\",this.touchend),r.removeEventListener(t,\"touchcancel\",this.reset),this.offTemp()},Ci.prototype.offTemp=function(){r.enableDrag(),r.removeEventListener(t.window,\"mousemove\",this.mousemove),r.removeEventListener(t.window,\"mouseup\",this.mouseup)},Ci.prototype.mousedown=function(e){this.down(t.extend({},e,{ctrlKey:!0,preventDefault:function(){return e.preventDefault()}}),r.mousePos(this.element,e)),r.addEventListener(t.window,\"mousemove\",this.mousemove),r.addEventListener(t.window,\"mouseup\",this.mouseup)},Ci.prototype.mousemove=function(t){this.move(t,r.mousePos(this.element,t))},Ci.prototype.mouseup=function(t){this.mouseRotate.mouseupWindow(t),this.mousePitch&&this.mousePitch.mouseupWindow(t),this.offTemp()},Ci.prototype.touchstart=function(t){1!==t.targetTouches.length?this.reset():(this._startPos=this._lastPos=r.touchPos(this.element,t.targetTouches)[0],this.down({type:\"mousedown\",button:0,ctrlKey:!0,preventDefault:function(){return t.preventDefault()}},this._startPos))},Ci.prototype.touchmove=function(t){1!==t.targetTouches.length?this.reset():(this._lastPos=r.touchPos(this.element,t.targetTouches)[0],this.move({preventDefault:function(){return t.preventDefault()}},this._lastPos))},Ci.prototype.touchend=function(t){0===t.targetTouches.length&&this._startPos&&this._lastPos&&this._startPos.dist(this._lastPos)<this._clickTolerance&&this.element.click(),this.reset()},Ci.prototype.reset=function(){this.mouseRotate.reset(),this.mousePitch&&this.mousePitch.reset(),delete this._startPos,delete this._lastPos,this.offTemp()};var Ii={center:\"translate(-50%,-50%)\",top:\"translate(-50%,0)\",\"top-left\":\"translate(0,0)\",\"top-right\":\"translate(-100%,0)\",bottom:\"translate(-50%,-100%)\",\"bottom-left\":\"translate(0,-100%)\",\"bottom-right\":\"translate(-100%,-100%)\",left:\"translate(0,-50%)\",right:\"translate(-100%,-50%)\"};function Pi(t,e,r){var n=t.classList;for(var i in Ii)n.remove(\"mapboxgl-\"+r+\"-anchor-\"+i);n.add(\"mapboxgl-\"+r+\"-anchor-\"+e)}var zi,Oi=function(e){function n(n,i){var a=this;if(e.call(this),(n instanceof t.window.HTMLElement||i)&&(n=t.extend({element:n},i)),t.bindAll([\"_update\",\"_onMove\",\"_onUp\",\"_addDragHandler\",\"_onMapClick\",\"_onKeyPress\"],this),this._anchor=n&&n.anchor||\"center\",this._color=n&&n.color||\"#3FB1CE\",this._draggable=n&&n.draggable||!1,this._state=\"inactive\",this._rotation=n&&n.rotation||0,this._rotationAlignment=n&&n.rotationAlignment||\"auto\",this._pitchAlignment=n&&n.pitchAlignment&&\"auto\"!==n.pitchAlignment?n.pitchAlignment:this._rotationAlignment,n&&n.element)this._element=n.element,this._offset=t.Point.convert(n&&n.offset||[0,0]);else{this._defaultMarker=!0,this._element=r.create(\"div\"),this._element.setAttribute(\"aria-label\",\"Map marker\");var o=r.createNS(\"http://www.w3.org/2000/svg\",\"svg\");o.setAttributeNS(null,\"display\",\"block\"),o.setAttributeNS(null,\"height\",\"41px\"),o.setAttributeNS(null,\"width\",\"27px\"),o.setAttributeNS(null,\"viewBox\",\"0 0 27 41\");var s=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");s.setAttributeNS(null,\"stroke\",\"none\"),s.setAttributeNS(null,\"stroke-width\",\"1\"),s.setAttributeNS(null,\"fill\",\"none\"),s.setAttributeNS(null,\"fill-rule\",\"evenodd\");var l=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");l.setAttributeNS(null,\"fill-rule\",\"nonzero\");var c=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");c.setAttributeNS(null,\"transform\",\"translate(3.0, 29.0)\"),c.setAttributeNS(null,\"fill\",\"#000000\");for(var u=0,f=[{rx:\"10.5\",ry:\"5.25002273\"},{rx:\"10.5\",ry:\"5.25002273\"},{rx:\"9.5\",ry:\"4.77275007\"},{rx:\"8.5\",ry:\"4.29549936\"},{rx:\"7.5\",ry:\"3.81822308\"},{rx:\"6.5\",ry:\"3.34094679\"},{rx:\"5.5\",ry:\"2.86367051\"},{rx:\"4.5\",ry:\"2.38636864\"}];u<f.length;u+=1){var h=f[u],p=r.createNS(\"http://www.w3.org/2000/svg\",\"ellipse\");p.setAttributeNS(null,\"opacity\",\"0.04\"),p.setAttributeNS(null,\"cx\",\"10.5\"),p.setAttributeNS(null,\"cy\",\"5.80029008\"),p.setAttributeNS(null,\"rx\",h.rx),p.setAttributeNS(null,\"ry\",h.ry),c.appendChild(p)}var d=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");d.setAttributeNS(null,\"fill\",this._color);var g=r.createNS(\"http://www.w3.org/2000/svg\",\"path\");g.setAttributeNS(null,\"d\",\"M27,13.5 C27,19.074644 20.250001,27.000002 14.75,34.500002 C14.016665,35.500004 12.983335,35.500004 12.25,34.500002 C6.7499993,27.000002 0,19.222562 0,13.5 C0,6.0441559 6.0441559,0 13.5,0 C20.955844,0 27,6.0441559 27,13.5 Z\"),d.appendChild(g);var m=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");m.setAttributeNS(null,\"opacity\",\"0.25\"),m.setAttributeNS(null,\"fill\",\"#000000\");var v=r.createNS(\"http://www.w3.org/2000/svg\",\"path\");v.setAttributeNS(null,\"d\",\"M13.5,0 C6.0441559,0 0,6.0441559 0,13.5 C0,19.222562 6.7499993,27 12.25,34.5 C13,35.522727 14.016664,35.500004 14.75,34.5 C20.250001,27 27,19.074644 27,13.5 C27,6.0441559 20.955844,0 13.5,0 Z M13.5,1 C20.415404,1 26,6.584596 26,13.5 C26,15.898657 24.495584,19.181431 22.220703,22.738281 C19.945823,26.295132 16.705119,30.142167 13.943359,33.908203 C13.743445,34.180814 13.612715,34.322738 13.5,34.441406 C13.387285,34.322738 13.256555,34.180814 13.056641,33.908203 C10.284481,30.127985 7.4148684,26.314159 5.015625,22.773438 C2.6163816,19.232715 1,15.953538 1,13.5 C1,6.584596 6.584596,1 13.5,1 Z\"),m.appendChild(v);var y=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");y.setAttributeNS(null,\"transform\",\"translate(6.0, 7.0)\"),y.setAttributeNS(null,\"fill\",\"#FFFFFF\");var x=r.createNS(\"http://www.w3.org/2000/svg\",\"g\");x.setAttributeNS(null,\"transform\",\"translate(8.0, 8.0)\");var b=r.createNS(\"http://www.w3.org/2000/svg\",\"circle\");b.setAttributeNS(null,\"fill\",\"#000000\"),b.setAttributeNS(null,\"opacity\",\"0.25\"),b.setAttributeNS(null,\"cx\",\"5.5\"),b.setAttributeNS(null,\"cy\",\"5.5\"),b.setAttributeNS(null,\"r\",\"5.4999962\");var _=r.createNS(\"http://www.w3.org/2000/svg\",\"circle\");_.setAttributeNS(null,\"fill\",\"#FFFFFF\"),_.setAttributeNS(null,\"cx\",\"5.5\"),_.setAttributeNS(null,\"cy\",\"5.5\"),_.setAttributeNS(null,\"r\",\"5.4999962\"),x.appendChild(b),x.appendChild(_),l.appendChild(c),l.appendChild(d),l.appendChild(m),l.appendChild(y),l.appendChild(x),o.appendChild(l),this._element.appendChild(o),this._offset=t.Point.convert(n&&n.offset||[0,-14])}this._element.classList.add(\"mapboxgl-marker\"),this._element.addEventListener(\"dragstart\",(function(t){t.preventDefault()})),this._element.addEventListener(\"mousedown\",(function(t){t.preventDefault()})),this._element.addEventListener(\"focus\",(function(){var t=a._map.getContainer();t.scrollTop=0,t.scrollLeft=0})),Pi(this._element,this._anchor,\"marker\"),this._popup=null}return e&&(n.__proto__=e),(n.prototype=Object.create(e&&e.prototype)).constructor=n,n.prototype.addTo=function(t){return this.remove(),this._map=t,t.getCanvasContainer().appendChild(this._element),t.on(\"move\",this._update),t.on(\"moveend\",this._update),this.setDraggable(this._draggable),this._update(),this._map.on(\"click\",this._onMapClick),this},n.prototype.remove=function(){return this._map&&(this._map.off(\"click\",this._onMapClick),this._map.off(\"move\",this._update),this._map.off(\"moveend\",this._update),this._map.off(\"mousedown\",this._addDragHandler),this._map.off(\"touchstart\",this._addDragHandler),this._map.off(\"mouseup\",this._onUp),this._map.off(\"touchend\",this._onUp),this._map.off(\"mousemove\",this._onMove),this._map.off(\"touchmove\",this._onMove),delete this._map),r.remove(this._element),this._popup&&this._popup.remove(),this},n.prototype.getLngLat=function(){return this._lngLat},n.prototype.setLngLat=function(e){return this._lngLat=t.LngLat.convert(e),this._pos=null,this._popup&&this._popup.setLngLat(this._lngLat),this._update(),this},n.prototype.getElement=function(){return this._element},n.prototype.setPopup=function(t){if(this._popup&&(this._popup.remove(),this._popup=null,this._element.removeEventListener(\"keypress\",this._onKeyPress),this._originalTabIndex||this._element.removeAttribute(\"tabindex\")),t){if(!(\"offset\"in t.options)){var e=Math.sqrt(Math.pow(13.5,2)/2);t.options.offset=this._defaultMarker?{top:[0,0],\"top-left\":[0,0],\"top-right\":[0,0],bottom:[0,-38.1],\"bottom-left\":[e,-1*(24.6+e)],\"bottom-right\":[-e,-1*(24.6+e)],left:[13.5,-24.6],right:[-13.5,-24.6]}:this._offset}this._popup=t,this._lngLat&&this._popup.setLngLat(this._lngLat),this._originalTabIndex=this._element.getAttribute(\"tabindex\"),this._originalTabIndex||this._element.setAttribute(\"tabindex\",\"0\"),this._element.addEventListener(\"keypress\",this._onKeyPress)}return this},n.prototype._onKeyPress=function(t){var e=t.code,r=t.charCode||t.keyCode;\"Space\"!==e&&\"Enter\"!==e&&32!==r&&13!==r||this.togglePopup()},n.prototype._onMapClick=function(t){var e=t.originalEvent.target,r=this._element;this._popup&&(e===r||r.contains(e))&&this.togglePopup()},n.prototype.getPopup=function(){return this._popup},n.prototype.togglePopup=function(){var t=this._popup;return t?(t.isOpen()?t.remove():t.addTo(this._map),this):this},n.prototype._update=function(t){if(this._map){this._map.transform.renderWorldCopies&&(this._lngLat=Li(this._lngLat,this._pos,this._map.transform)),this._pos=this._map.project(this._lngLat)._add(this._offset);var e=\"\";\"viewport\"===this._rotationAlignment||\"auto\"===this._rotationAlignment?e=\"rotateZ(\"+this._rotation+\"deg)\":\"map\"===this._rotationAlignment&&(e=\"rotateZ(\"+(this._rotation-this._map.getBearing())+\"deg)\");var n=\"\";\"viewport\"===this._pitchAlignment||\"auto\"===this._pitchAlignment?n=\"rotateX(0deg)\":\"map\"===this._pitchAlignment&&(n=\"rotateX(\"+this._map.getPitch()+\"deg)\"),t&&\"moveend\"!==t.type||(this._pos=this._pos.round()),r.setTransform(this._element,Ii[this._anchor]+\" translate(\"+this._pos.x+\"px, \"+this._pos.y+\"px) \"+n+\" \"+e)}},n.prototype.getOffset=function(){return this._offset},n.prototype.setOffset=function(e){return this._offset=t.Point.convert(e),this._update(),this},n.prototype._onMove=function(e){this._pos=e.point.sub(this._positionDelta),this._lngLat=this._map.unproject(this._pos),this.setLngLat(this._lngLat),this._element.style.pointerEvents=\"none\",\"pending\"===this._state&&(this._state=\"active\",this.fire(new t.Event(\"dragstart\"))),this.fire(new t.Event(\"drag\"))},n.prototype._onUp=function(){this._element.style.pointerEvents=\"auto\",this._positionDelta=null,this._map.off(\"mousemove\",this._onMove),this._map.off(\"touchmove\",this._onMove),\"active\"===this._state&&this.fire(new t.Event(\"dragend\")),this._state=\"inactive\"},n.prototype._addDragHandler=function(t){this._element.contains(t.originalEvent.target)&&(t.preventDefault(),this._positionDelta=t.point.sub(this._pos).add(this._offset),this._state=\"pending\",this._map.on(\"mousemove\",this._onMove),this._map.on(\"touchmove\",this._onMove),this._map.once(\"mouseup\",this._onUp),this._map.once(\"touchend\",this._onUp))},n.prototype.setDraggable=function(t){return this._draggable=!!t,this._map&&(t?(this._map.on(\"mousedown\",this._addDragHandler),this._map.on(\"touchstart\",this._addDragHandler)):(this._map.off(\"mousedown\",this._addDragHandler),this._map.off(\"touchstart\",this._addDragHandler))),this},n.prototype.isDraggable=function(){return this._draggable},n.prototype.setRotation=function(t){return this._rotation=t||0,this._update(),this},n.prototype.getRotation=function(){return this._rotation},n.prototype.setRotationAlignment=function(t){return this._rotationAlignment=t||\"auto\",this._update(),this},n.prototype.getRotationAlignment=function(){return this._rotationAlignment},n.prototype.setPitchAlignment=function(t){return this._pitchAlignment=t&&\"auto\"!==t?t:this._rotationAlignment,this._update(),this},n.prototype.getPitchAlignment=function(){return this._pitchAlignment},n}(t.Evented),Di={positionOptions:{enableHighAccuracy:!1,maximumAge:0,timeout:6e3},fitBoundsOptions:{maxZoom:15},trackUserLocation:!1,showAccuracyCircle:!0,showUserLocation:!0},Ri=0,Fi=!1,Bi=function(e){function n(r){e.call(this),this.options=t.extend({},Di,r),t.bindAll([\"_onSuccess\",\"_onError\",\"_onZoom\",\"_finish\",\"_setupUI\",\"_updateCamera\",\"_updateMarker\"],this)}return e&&(n.__proto__=e),(n.prototype=Object.create(e&&e.prototype)).constructor=n,n.prototype.onAdd=function(e){var n;return this._map=e,this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-group\"),n=this._setupUI,void 0!==zi?n(zi):void 0!==t.window.navigator.permissions?t.window.navigator.permissions.query({name:\"geolocation\"}).then((function(t){n(zi=\"denied\"!==t.state)})):n(zi=!!t.window.navigator.geolocation),this._container},n.prototype.onRemove=function(){void 0!==this._geolocationWatchID&&(t.window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0),this.options.showUserLocation&&this._userLocationDotMarker&&this._userLocationDotMarker.remove(),this.options.showAccuracyCircle&&this._accuracyCircleMarker&&this._accuracyCircleMarker.remove(),r.remove(this._container),this._map.off(\"zoom\",this._onZoom),this._map=void 0,Ri=0,Fi=!1},n.prototype._isOutOfMapMaxBounds=function(t){var e=this._map.getMaxBounds(),r=t.coords;return e&&(r.longitude<e.getWest()||r.longitude>e.getEast()||r.latitude<e.getSouth()||r.latitude>e.getNorth())},n.prototype._setErrorState=function(){switch(this._watchState){case\"WAITING_ACTIVE\":this._watchState=\"ACTIVE_ERROR\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active-error\");break;case\"ACTIVE_LOCK\":this._watchState=\"ACTIVE_ERROR\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\");break;case\"BACKGROUND\":this._watchState=\"BACKGROUND_ERROR\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\")}},n.prototype._onSuccess=function(e){if(this._map){if(this._isOutOfMapMaxBounds(e))return this._setErrorState(),this.fire(new t.Event(\"outofmaxbounds\",e)),this._updateMarker(),void this._finish();if(this.options.trackUserLocation)switch(this._lastKnownPosition=e,this._watchState){case\"WAITING_ACTIVE\":case\"ACTIVE_LOCK\":case\"ACTIVE_ERROR\":this._watchState=\"ACTIVE_LOCK\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active\");break;case\"BACKGROUND\":case\"BACKGROUND_ERROR\":this._watchState=\"BACKGROUND\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background-error\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background\")}this.options.showUserLocation&&\"OFF\"!==this._watchState&&this._updateMarker(e),this.options.trackUserLocation&&\"ACTIVE_LOCK\"!==this._watchState||this._updateCamera(e),this.options.showUserLocation&&this._dotElement.classList.remove(\"mapboxgl-user-location-dot-stale\"),this.fire(new t.Event(\"geolocate\",e)),this._finish()}},n.prototype._updateCamera=function(e){var r=new t.LngLat(e.coords.longitude,e.coords.latitude),n=e.coords.accuracy,i=this._map.getBearing(),a=t.extend({bearing:i},this.options.fitBoundsOptions);this._map.fitBounds(r.toBounds(n),a,{geolocateSource:!0})},n.prototype._updateMarker=function(e){if(e){var r=new t.LngLat(e.coords.longitude,e.coords.latitude);this._accuracyCircleMarker.setLngLat(r).addTo(this._map),this._userLocationDotMarker.setLngLat(r).addTo(this._map),this._accuracy=e.coords.accuracy,this.options.showUserLocation&&this.options.showAccuracyCircle&&this._updateCircleRadius()}else this._userLocationDotMarker.remove(),this._accuracyCircleMarker.remove()},n.prototype._updateCircleRadius=function(){var t=this._map._container.clientHeight/2,e=this._map.unproject([0,t]),r=this._map.unproject([1,t]),n=e.distanceTo(r),i=Math.ceil(2*this._accuracy/n);this._circleElement.style.width=i+\"px\",this._circleElement.style.height=i+\"px\"},n.prototype._onZoom=function(){this.options.showUserLocation&&this.options.showAccuracyCircle&&this._updateCircleRadius()},n.prototype._onError=function(e){if(this._map){if(this.options.trackUserLocation)if(1===e.code){this._watchState=\"OFF\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background-error\"),this._geolocateButton.disabled=!0;var r=this._map._getUIString(\"GeolocateControl.LocationNotAvailable\");this._geolocateButton.title=r,this._geolocateButton.setAttribute(\"aria-label\",r),void 0!==this._geolocationWatchID&&this._clearWatch()}else{if(3===e.code&&Fi)return;this._setErrorState()}\"OFF\"!==this._watchState&&this.options.showUserLocation&&this._dotElement.classList.add(\"mapboxgl-user-location-dot-stale\"),this.fire(new t.Event(\"error\",e)),this._finish()}},n.prototype._finish=function(){this._timeoutId&&clearTimeout(this._timeoutId),this._timeoutId=void 0},n.prototype._setupUI=function(e){var n=this;if(this._container.addEventListener(\"contextmenu\",(function(t){return t.preventDefault()})),this._geolocateButton=r.create(\"button\",\"mapboxgl-ctrl-geolocate\",this._container),r.create(\"span\",\"mapboxgl-ctrl-icon\",this._geolocateButton).setAttribute(\"aria-hidden\",!0),this._geolocateButton.type=\"button\",!1===e){t.warnOnce(\"Geolocation support is not available so the GeolocateControl will be disabled.\");var i=this._map._getUIString(\"GeolocateControl.LocationNotAvailable\");this._geolocateButton.disabled=!0,this._geolocateButton.title=i,this._geolocateButton.setAttribute(\"aria-label\",i)}else{var a=this._map._getUIString(\"GeolocateControl.FindMyLocation\");this._geolocateButton.title=a,this._geolocateButton.setAttribute(\"aria-label\",a)}this.options.trackUserLocation&&(this._geolocateButton.setAttribute(\"aria-pressed\",\"false\"),this._watchState=\"OFF\"),this.options.showUserLocation&&(this._dotElement=r.create(\"div\",\"mapboxgl-user-location-dot\"),this._userLocationDotMarker=new Oi(this._dotElement),this._circleElement=r.create(\"div\",\"mapboxgl-user-location-accuracy-circle\"),this._accuracyCircleMarker=new Oi({element:this._circleElement,pitchAlignment:\"map\"}),this.options.trackUserLocation&&(this._watchState=\"OFF\"),this._map.on(\"zoom\",this._onZoom)),this._geolocateButton.addEventListener(\"click\",this.trigger.bind(this)),this._setup=!0,this.options.trackUserLocation&&this._map.on(\"movestart\",(function(e){e.geolocateSource||\"ACTIVE_LOCK\"!==n._watchState||e.originalEvent&&\"resize\"===e.originalEvent.type||(n._watchState=\"BACKGROUND\",n._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background\"),n._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),n.fire(new t.Event(\"trackuserlocationend\")))}))},n.prototype.trigger=function(){if(!this._setup)return t.warnOnce(\"Geolocate control triggered before added to a map\"),!1;if(this.options.trackUserLocation){switch(this._watchState){case\"OFF\":this._watchState=\"WAITING_ACTIVE\",this.fire(new t.Event(\"trackuserlocationstart\"));break;case\"WAITING_ACTIVE\":case\"ACTIVE_LOCK\":case\"ACTIVE_ERROR\":case\"BACKGROUND_ERROR\":Ri--,Fi=!1,this._watchState=\"OFF\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-active-error\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background-error\"),this.fire(new t.Event(\"trackuserlocationend\"));break;case\"BACKGROUND\":this._watchState=\"ACTIVE_LOCK\",this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-background\"),this._lastKnownPosition&&this._updateCamera(this._lastKnownPosition),this.fire(new t.Event(\"trackuserlocationstart\"))}switch(this._watchState){case\"WAITING_ACTIVE\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active\");break;case\"ACTIVE_LOCK\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active\");break;case\"ACTIVE_ERROR\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-active-error\");break;case\"BACKGROUND\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background\");break;case\"BACKGROUND_ERROR\":this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-background-error\")}if(\"OFF\"===this._watchState&&void 0!==this._geolocationWatchID)this._clearWatch();else if(void 0===this._geolocationWatchID){var e;this._geolocateButton.classList.add(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.setAttribute(\"aria-pressed\",\"true\"),++Ri>1?(e={maximumAge:6e5,timeout:0},Fi=!0):(e=this.options.positionOptions,Fi=!1),this._geolocationWatchID=t.window.navigator.geolocation.watchPosition(this._onSuccess,this._onError,e)}}else t.window.navigator.geolocation.getCurrentPosition(this._onSuccess,this._onError,this.options.positionOptions),this._timeoutId=setTimeout(this._finish,1e4);return!0},n.prototype._clearWatch=function(){t.window.navigator.geolocation.clearWatch(this._geolocationWatchID),this._geolocationWatchID=void 0,this._geolocateButton.classList.remove(\"mapboxgl-ctrl-geolocate-waiting\"),this._geolocateButton.setAttribute(\"aria-pressed\",\"false\"),this.options.showUserLocation&&this._updateMarker(null)},n}(t.Evented),Ni={maxWidth:100,unit:\"metric\"},ji=function(e){this.options=t.extend({},Ni,e),t.bindAll([\"_onMove\",\"setUnit\"],this)};function Ui(t,e,r){var n=r&&r.maxWidth||100,i=t._container.clientHeight/2,a=t.unproject([0,i]),o=t.unproject([n,i]),s=a.distanceTo(o);if(r&&\"imperial\"===r.unit){var l=3.2808*s;l>5280?Vi(e,n,l/5280,t._getUIString(\"ScaleControl.Miles\")):Vi(e,n,l,t._getUIString(\"ScaleControl.Feet\"))}else r&&\"nautical\"===r.unit?Vi(e,n,s/1852,t._getUIString(\"ScaleControl.NauticalMiles\")):s>=1e3?Vi(e,n,s/1e3,t._getUIString(\"ScaleControl.Kilometers\")):Vi(e,n,s,t._getUIString(\"ScaleControl.Meters\"))}function Vi(t,e,r,n){var i,a,o,s=(i=r,(a=Math.pow(10,(\"\"+Math.floor(i)).length-1))*(o=(o=i/a)>=10?10:o>=5?5:o>=3?3:o>=2?2:o>=1?1:function(t){var e=Math.pow(10,Math.ceil(-Math.log(t)/Math.LN10));return Math.round(t*e)/e}(o)));t.style.width=e*(s/r)+\"px\",t.innerHTML=s+\"&nbsp;\"+n}ji.prototype.getDefaultPosition=function(){return\"bottom-left\"},ji.prototype._onMove=function(){Ui(this._map,this._container,this.options)},ji.prototype.onAdd=function(t){return this._map=t,this._container=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-scale\",t.getContainer()),this._map.on(\"move\",this._onMove),this._onMove(),this._container},ji.prototype.onRemove=function(){r.remove(this._container),this._map.off(\"move\",this._onMove),this._map=void 0},ji.prototype.setUnit=function(t){this.options.unit=t,Ui(this._map,this._container,this.options)};var qi=function(e){this._fullscreen=!1,e&&e.container&&(e.container instanceof t.window.HTMLElement?this._container=e.container:t.warnOnce(\"Full screen control 'container' must be a DOM element.\")),t.bindAll([\"_onClickFullscreen\",\"_changeIcon\"],this),\"onfullscreenchange\"in t.window.document?this._fullscreenchange=\"fullscreenchange\":\"onmozfullscreenchange\"in t.window.document?this._fullscreenchange=\"mozfullscreenchange\":\"onwebkitfullscreenchange\"in t.window.document?this._fullscreenchange=\"webkitfullscreenchange\":\"onmsfullscreenchange\"in t.window.document&&(this._fullscreenchange=\"MSFullscreenChange\")};qi.prototype.onAdd=function(e){return this._map=e,this._container||(this._container=this._map.getContainer()),this._controlContainer=r.create(\"div\",\"mapboxgl-ctrl mapboxgl-ctrl-group\"),this._checkFullscreenSupport()?this._setupUI():(this._controlContainer.style.display=\"none\",t.warnOnce(\"This device does not support fullscreen mode.\")),this._controlContainer},qi.prototype.onRemove=function(){r.remove(this._controlContainer),this._map=null,t.window.document.removeEventListener(this._fullscreenchange,this._changeIcon)},qi.prototype._checkFullscreenSupport=function(){return!!(t.window.document.fullscreenEnabled||t.window.document.mozFullScreenEnabled||t.window.document.msFullscreenEnabled||t.window.document.webkitFullscreenEnabled)},qi.prototype._setupUI=function(){var e=this._fullscreenButton=r.create(\"button\",\"mapboxgl-ctrl-fullscreen\",this._controlContainer);r.create(\"span\",\"mapboxgl-ctrl-icon\",e).setAttribute(\"aria-hidden\",!0),e.type=\"button\",this._updateTitle(),this._fullscreenButton.addEventListener(\"click\",this._onClickFullscreen),t.window.document.addEventListener(this._fullscreenchange,this._changeIcon)},qi.prototype._updateTitle=function(){var t=this._getTitle();this._fullscreenButton.setAttribute(\"aria-label\",t),this._fullscreenButton.title=t},qi.prototype._getTitle=function(){return this._map._getUIString(this._isFullscreen()?\"FullscreenControl.Exit\":\"FullscreenControl.Enter\")},qi.prototype._isFullscreen=function(){return this._fullscreen},qi.prototype._changeIcon=function(){(t.window.document.fullscreenElement||t.window.document.mozFullScreenElement||t.window.document.webkitFullscreenElement||t.window.document.msFullscreenElement)===this._container!==this._fullscreen&&(this._fullscreen=!this._fullscreen,this._fullscreenButton.classList.toggle(\"mapboxgl-ctrl-shrink\"),this._fullscreenButton.classList.toggle(\"mapboxgl-ctrl-fullscreen\"),this._updateTitle())},qi.prototype._onClickFullscreen=function(){this._isFullscreen()?t.window.document.exitFullscreen?t.window.document.exitFullscreen():t.window.document.mozCancelFullScreen?t.window.document.mozCancelFullScreen():t.window.document.msExitFullscreen?t.window.document.msExitFullscreen():t.window.document.webkitCancelFullScreen&&t.window.document.webkitCancelFullScreen():this._container.requestFullscreen?this._container.requestFullscreen():this._container.mozRequestFullScreen?this._container.mozRequestFullScreen():this._container.msRequestFullscreen?this._container.msRequestFullscreen():this._container.webkitRequestFullscreen&&this._container.webkitRequestFullscreen()};var Hi={closeButton:!0,closeOnClick:!0,className:\"\",maxWidth:\"240px\"},Gi=function(e){function n(r){e.call(this),this.options=t.extend(Object.create(Hi),r),t.bindAll([\"_update\",\"_onClose\",\"remove\",\"_onMouseMove\",\"_onMouseUp\",\"_onDrag\"],this)}return e&&(n.__proto__=e),(n.prototype=Object.create(e&&e.prototype)).constructor=n,n.prototype.addTo=function(e){return this._map&&this.remove(),this._map=e,this.options.closeOnClick&&this._map.on(\"click\",this._onClose),this.options.closeOnMove&&this._map.on(\"move\",this._onClose),this._map.on(\"remove\",this.remove),this._update(),this._trackPointer?(this._map.on(\"mousemove\",this._onMouseMove),this._map.on(\"mouseup\",this._onMouseUp),this._container&&this._container.classList.add(\"mapboxgl-popup-track-pointer\"),this._map._canvasContainer.classList.add(\"mapboxgl-track-pointer\")):this._map.on(\"move\",this._update),this.fire(new t.Event(\"open\")),this},n.prototype.isOpen=function(){return!!this._map},n.prototype.remove=function(){return this._content&&r.remove(this._content),this._container&&(r.remove(this._container),delete this._container),this._map&&(this._map.off(\"move\",this._update),this._map.off(\"move\",this._onClose),this._map.off(\"click\",this._onClose),this._map.off(\"remove\",this.remove),this._map.off(\"mousemove\",this._onMouseMove),this._map.off(\"mouseup\",this._onMouseUp),this._map.off(\"drag\",this._onDrag),delete this._map),this.fire(new t.Event(\"close\")),this},n.prototype.getLngLat=function(){return this._lngLat},n.prototype.setLngLat=function(e){return this._lngLat=t.LngLat.convert(e),this._pos=null,this._trackPointer=!1,this._update(),this._map&&(this._map.on(\"move\",this._update),this._map.off(\"mousemove\",this._onMouseMove),this._container&&this._container.classList.remove(\"mapboxgl-popup-track-pointer\"),this._map._canvasContainer.classList.remove(\"mapboxgl-track-pointer\")),this},n.prototype.trackPointer=function(){return this._trackPointer=!0,this._pos=null,this._update(),this._map&&(this._map.off(\"move\",this._update),this._map.on(\"mousemove\",this._onMouseMove),this._map.on(\"drag\",this._onDrag),this._container&&this._container.classList.add(\"mapboxgl-popup-track-pointer\"),this._map._canvasContainer.classList.add(\"mapboxgl-track-pointer\")),this},n.prototype.getElement=function(){return this._container},n.prototype.setText=function(e){return this.setDOMContent(t.window.document.createTextNode(e))},n.prototype.setHTML=function(e){var r,n=t.window.document.createDocumentFragment(),i=t.window.document.createElement(\"body\");for(i.innerHTML=e;r=i.firstChild;)n.appendChild(r);return this.setDOMContent(n)},n.prototype.getMaxWidth=function(){return this._container&&this._container.style.maxWidth},n.prototype.setMaxWidth=function(t){return this.options.maxWidth=t,this._update(),this},n.prototype.setDOMContent=function(t){return this._createContent(),this._content.appendChild(t),this._update(),this},n.prototype.addClassName=function(t){this._container&&this._container.classList.add(t)},n.prototype.removeClassName=function(t){this._container&&this._container.classList.remove(t)},n.prototype.toggleClassName=function(t){if(this._container)return this._container.classList.toggle(t)},n.prototype._createContent=function(){this._content&&r.remove(this._content),this._content=r.create(\"div\",\"mapboxgl-popup-content\",this._container),this.options.closeButton&&(this._closeButton=r.create(\"button\",\"mapboxgl-popup-close-button\",this._content),this._closeButton.type=\"button\",this._closeButton.setAttribute(\"aria-label\",\"Close popup\"),this._closeButton.innerHTML=\"&#215;\",this._closeButton.addEventListener(\"click\",this._onClose))},n.prototype._onMouseUp=function(t){this._update(t.point)},n.prototype._onMouseMove=function(t){this._update(t.point)},n.prototype._onDrag=function(t){this._update(t.point)},n.prototype._update=function(e){var n=this;if(this._map&&(this._lngLat||this._trackPointer)&&this._content&&(this._container||(this._container=r.create(\"div\",\"mapboxgl-popup\",this._map.getContainer()),this._tip=r.create(\"div\",\"mapboxgl-popup-tip\",this._container),this._container.appendChild(this._content),this.options.className&&this.options.className.split(\" \").forEach((function(t){return n._container.classList.add(t)})),this._trackPointer&&this._container.classList.add(\"mapboxgl-popup-track-pointer\")),this.options.maxWidth&&this._container.style.maxWidth!==this.options.maxWidth&&(this._container.style.maxWidth=this.options.maxWidth),this._map.transform.renderWorldCopies&&!this._trackPointer&&(this._lngLat=Li(this._lngLat,this._pos,this._map.transform)),!this._trackPointer||e)){var i=this._pos=this._trackPointer&&e?e:this._map.project(this._lngLat),a=this.options.anchor,o=function e(r){if(r){if(\"number\"==typeof r){var n=Math.round(Math.sqrt(.5*Math.pow(r,2)));return{center:new t.Point(0,0),top:new t.Point(0,r),\"top-left\":new t.Point(n,n),\"top-right\":new t.Point(-n,n),bottom:new t.Point(0,-r),\"bottom-left\":new t.Point(n,-n),\"bottom-right\":new t.Point(-n,-n),left:new t.Point(r,0),right:new t.Point(-r,0)}}if(r instanceof t.Point||Array.isArray(r)){var i=t.Point.convert(r);return{center:i,top:i,\"top-left\":i,\"top-right\":i,bottom:i,\"bottom-left\":i,\"bottom-right\":i,left:i,right:i}}return{center:t.Point.convert(r.center||[0,0]),top:t.Point.convert(r.top||[0,0]),\"top-left\":t.Point.convert(r[\"top-left\"]||[0,0]),\"top-right\":t.Point.convert(r[\"top-right\"]||[0,0]),bottom:t.Point.convert(r.bottom||[0,0]),\"bottom-left\":t.Point.convert(r[\"bottom-left\"]||[0,0]),\"bottom-right\":t.Point.convert(r[\"bottom-right\"]||[0,0]),left:t.Point.convert(r.left||[0,0]),right:t.Point.convert(r.right||[0,0])}}return e(new t.Point(0,0))}(this.options.offset);if(!a){var s,l=this._container.offsetWidth,c=this._container.offsetHeight;s=i.y+o.bottom.y<c?[\"top\"]:i.y>this._map.transform.height-c?[\"bottom\"]:[],i.x<l/2?s.push(\"left\"):i.x>this._map.transform.width-l/2&&s.push(\"right\"),a=0===s.length?\"bottom\":s.join(\"-\")}var u=i.add(o[a]).round();r.setTransform(this._container,Ii[a]+\" translate(\"+u.x+\"px,\"+u.y+\"px)\"),Pi(this._container,a,\"popup\")}},n.prototype._onClose=function(){this.remove()},n}(t.Evented),Yi={version:t.version,supported:e,setRTLTextPlugin:t.setRTLTextPlugin,getRTLTextPluginStatus:t.getRTLTextPluginStatus,Map:Mi,NavigationControl:Ei,GeolocateControl:Bi,AttributionControl:vi,ScaleControl:ji,FullscreenControl:qi,Popup:Gi,Marker:Oi,Style:qe,LngLat:t.LngLat,LngLatBounds:t.LngLatBounds,Point:t.Point,MercatorCoordinate:t.MercatorCoordinate,Evented:t.Evented,config:t.config,prewarm:function(){Bt().acquire(Ot)},clearPrewarmedResources:function(){var t=Rt;t&&(t.isPreloaded()&&1===t.numActive()?(t.release(Ot),Rt=null):console.warn(\"Could not clear WebWorkers since there are active Map instances that still reference it. The pre-warmed WebWorker pool can only be cleared when all map instances have been removed with map.remove()\"))},get accessToken(){return t.config.ACCESS_TOKEN},set accessToken(e){t.config.ACCESS_TOKEN=e},get baseApiUrl(){return t.config.API_URL},set baseApiUrl(e){t.config.API_URL=e},get workerCount(){return Dt.workerCount},set workerCount(t){Dt.workerCount=t},get maxParallelImageRequests(){return t.config.MAX_PARALLEL_IMAGE_REQUESTS},set maxParallelImageRequests(e){t.config.MAX_PARALLEL_IMAGE_REQUESTS=e},clearStorage:function(e){t.clearTileCache(e)},workerUrl:\"\"};return Yi})),r}))},{}],474:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=1<<t+1,r=new Array(e),n=0;n<e;++n)r[n]=a(t,n);return r};var n=t(\"convex-hull\");function i(t,e,r){for(var n=new Array(t),i=0;i<t;++i)n[i]=0,i===e&&(n[i]+=.5),i===r&&(n[i]+=.5);return n}function a(t,e){if(0===e||e===(1<<t+1)-1)return[];for(var r=[],a=[],o=0;o<=t;++o)if(e&1<<o){r.push(i(t,o-1,o-1)),a.push(null);for(var s=0;s<=t;++s)~e&1<<s&&(r.push(i(t,o-1,s-1)),a.push([o,s]))}var l=n(r),c=[];t:for(o=0;o<l.length;++o){var u=l[o],f=[];for(s=0;s<u.length;++s){if(!a[u[s]])continue t;f.push(a[u[s]].slice())}c.push(f)}return c}},{\"convex-hull\":135}],475:[function(t,e,r){var n=t(\"./normalize\"),i=t(\"gl-mat4/create\"),a=t(\"gl-mat4/clone\"),o=t(\"gl-mat4/determinant\"),s=t(\"gl-mat4/invert\"),l=t(\"gl-mat4/transpose\"),c={length:t(\"gl-vec3/length\"),normalize:t(\"gl-vec3/normalize\"),dot:t(\"gl-vec3/dot\"),cross:t(\"gl-vec3/cross\")},u=i(),f=i(),h=[0,0,0,0],p=[[0,0,0],[0,0,0],[0,0,0]],d=[0,0,0];function g(t,e,r,n,i){t[0]=e[0]*n+r[0]*i,t[1]=e[1]*n+r[1]*i,t[2]=e[2]*n+r[2]*i}e.exports=function(t,e,r,i,m,v){if(e||(e=[0,0,0]),r||(r=[0,0,0]),i||(i=[0,0,0]),m||(m=[0,0,0,1]),v||(v=[0,0,0,1]),!n(u,t))return!1;if(a(f,u),f[3]=0,f[7]=0,f[11]=0,f[15]=1,Math.abs(o(f)<1e-8))return!1;var y,x,b,_,w,T,k,M=u[3],A=u[7],S=u[11],E=u[12],C=u[13],L=u[14],I=u[15];if(0!==M||0!==A||0!==S){if(h[0]=M,h[1]=A,h[2]=S,h[3]=I,!s(f,f))return!1;l(f,f),y=m,b=f,_=(x=h)[0],w=x[1],T=x[2],k=x[3],y[0]=b[0]*_+b[4]*w+b[8]*T+b[12]*k,y[1]=b[1]*_+b[5]*w+b[9]*T+b[13]*k,y[2]=b[2]*_+b[6]*w+b[10]*T+b[14]*k,y[3]=b[3]*_+b[7]*w+b[11]*T+b[15]*k}else m[0]=m[1]=m[2]=0,m[3]=1;if(e[0]=E,e[1]=C,e[2]=L,function(t,e){t[0][0]=e[0],t[0][1]=e[1],t[0][2]=e[2],t[1][0]=e[4],t[1][1]=e[5],t[1][2]=e[6],t[2][0]=e[8],t[2][1]=e[9],t[2][2]=e[10]}(p,u),r[0]=c.length(p[0]),c.normalize(p[0],p[0]),i[0]=c.dot(p[0],p[1]),g(p[1],p[1],p[0],1,-i[0]),r[1]=c.length(p[1]),c.normalize(p[1],p[1]),i[0]/=r[1],i[1]=c.dot(p[0],p[2]),g(p[2],p[2],p[0],1,-i[1]),i[2]=c.dot(p[1],p[2]),g(p[2],p[2],p[1],1,-i[2]),r[2]=c.length(p[2]),c.normalize(p[2],p[2]),i[1]/=r[2],i[2]/=r[2],c.cross(d,p[1],p[2]),c.dot(p[0],d)<0)for(var P=0;P<3;P++)r[P]*=-1,p[P][0]*=-1,p[P][1]*=-1,p[P][2]*=-1;return v[0]=.5*Math.sqrt(Math.max(1+p[0][0]-p[1][1]-p[2][2],0)),v[1]=.5*Math.sqrt(Math.max(1-p[0][0]+p[1][1]-p[2][2],0)),v[2]=.5*Math.sqrt(Math.max(1-p[0][0]-p[1][1]+p[2][2],0)),v[3]=.5*Math.sqrt(Math.max(1+p[0][0]+p[1][1]+p[2][2],0)),p[2][1]>p[1][2]&&(v[0]=-v[0]),p[0][2]>p[2][0]&&(v[1]=-v[1]),p[1][0]>p[0][1]&&(v[2]=-v[2]),!0}},{\"./normalize\":476,\"gl-mat4/clone\":278,\"gl-mat4/create\":280,\"gl-mat4/determinant\":281,\"gl-mat4/invert\":293,\"gl-mat4/transpose\":306,\"gl-vec3/cross\":365,\"gl-vec3/dot\":370,\"gl-vec3/length\":380,\"gl-vec3/normalize\":387}],476:[function(t,e,r){e.exports=function(t,e){var r=e[15];if(0===r)return!1;for(var n=1/r,i=0;i<16;i++)t[i]=e[i]*n;return!0}},{}],477:[function(t,e,r){var n=t(\"gl-vec3/lerp\"),i=t(\"mat4-recompose\"),a=t(\"mat4-decompose\"),o=t(\"gl-mat4/determinant\"),s=t(\"quat-slerp\"),l=f(),c=f(),u=f();function f(){return{translate:h(),scale:h(1),skew:h(),perspective:[0,0,0,1],quaternion:[0,0,0,1]}}function h(t){return[t||0,t||0,t||0]}e.exports=function(t,e,r,f){if(0===o(e)||0===o(r))return!1;var h=a(e,l.translate,l.scale,l.skew,l.perspective,l.quaternion),p=a(r,c.translate,c.scale,c.skew,c.perspective,c.quaternion);return!(!h||!p)&&(n(u.translate,l.translate,c.translate,f),n(u.skew,l.skew,c.skew,f),n(u.scale,l.scale,c.scale,f),n(u.perspective,l.perspective,c.perspective,f),s(u.quaternion,l.quaternion,c.quaternion,f),i(t,u.translate,u.scale,u.skew,u.perspective,u.quaternion),!0)}},{\"gl-mat4/determinant\":281,\"gl-vec3/lerp\":381,\"mat4-decompose\":475,\"mat4-recompose\":478,\"quat-slerp\":527}],478:[function(t,e,r){var n={identity:t(\"gl-mat4/identity\"),translate:t(\"gl-mat4/translate\"),multiply:t(\"gl-mat4/multiply\"),create:t(\"gl-mat4/create\"),scale:t(\"gl-mat4/scale\"),fromRotationTranslation:t(\"gl-mat4/fromRotationTranslation\")},i=(n.create(),n.create());e.exports=function(t,e,r,a,o,s){return n.identity(t),n.fromRotationTranslation(t,s,e),t[3]=o[0],t[7]=o[1],t[11]=o[2],t[15]=o[3],n.identity(i),0!==a[2]&&(i[9]=a[2],n.multiply(t,t,i)),0!==a[1]&&(i[9]=0,i[8]=a[1],n.multiply(t,t,i)),0!==a[0]&&(i[8]=0,i[4]=a[0],n.multiply(t,t,i)),n.scale(t,t,r),t}},{\"gl-mat4/create\":280,\"gl-mat4/fromRotationTranslation\":284,\"gl-mat4/identity\":291,\"gl-mat4/multiply\":295,\"gl-mat4/scale\":303,\"gl-mat4/translate\":305}],479:[function(t,e,r){\"use strict\";e.exports=Math.log2||function(t){return Math.log(t)*Math.LOG2E}},{}],480:[function(t,e,r){\"use strict\";var n=t(\"binary-search-bounds\"),i=t(\"mat4-interpolate\"),a=t(\"gl-mat4/invert\"),o=t(\"gl-mat4/rotateX\"),s=t(\"gl-mat4/rotateY\"),l=t(\"gl-mat4/rotateZ\"),c=t(\"gl-mat4/lookAt\"),u=t(\"gl-mat4/translate\"),f=(t(\"gl-mat4/scale\"),t(\"gl-vec3/normalize\")),h=[0,0,0];function p(t){this._components=t.slice(),this._time=[0],this.prevMatrix=t.slice(),this.nextMatrix=t.slice(),this.computedMatrix=t.slice(),this.computedInverse=t.slice(),this.computedEye=[0,0,0],this.computedUp=[0,0,0],this.computedCenter=[0,0,0],this.computedRadius=[0],this._limits=[-1/0,1/0]}e.exports=function(t){return new p((t=t||{}).matrix||[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1])};var d=p.prototype;d.recalcMatrix=function(t){var e=this._time,r=n.le(e,t),o=this.computedMatrix;if(!(r<0)){var s=this._components;if(r===e.length-1)for(var l=16*r,c=0;c<16;++c)o[c]=s[l++];else{var u=e[r+1]-e[r],h=(l=16*r,this.prevMatrix),p=!0;for(c=0;c<16;++c)h[c]=s[l++];var d=this.nextMatrix;for(c=0;c<16;++c)d[c]=s[l++],p=p&&h[c]===d[c];if(u<1e-6||p)for(c=0;c<16;++c)o[c]=h[c];else i(o,h,d,(t-e[r])/u)}var g=this.computedUp;g[0]=o[1],g[1]=o[5],g[2]=o[9],f(g,g);var m=this.computedInverse;a(m,o);var v=this.computedEye,y=m[15];v[0]=m[12]/y,v[1]=m[13]/y,v[2]=m[14]/y;var x=this.computedCenter,b=Math.exp(this.computedRadius[0]);for(c=0;c<3;++c)x[c]=v[c]-o[2+4*c]*b}},d.idle=function(t){if(!(t<this.lastT())){for(var e=this._components,r=e.length-16,n=0;n<16;++n)e.push(e[r++]);this._time.push(t)}},d.flush=function(t){var e=n.gt(this._time,t)-2;e<0||(this._time.splice(0,e),this._components.splice(0,16*e))},d.lastT=function(){return this._time[this._time.length-1]},d.lookAt=function(t,e,r,n){this.recalcMatrix(t),e=e||this.computedEye,r=r||h,n=n||this.computedUp,this.setMatrix(t,c(this.computedMatrix,e,r,n));for(var i=0,a=0;a<3;++a)i+=Math.pow(r[a]-e[a],2);i=Math.log(Math.sqrt(i)),this.computedRadius[0]=i},d.rotate=function(t,e,r,n){this.recalcMatrix(t);var i=this.computedInverse;e&&s(i,i,e),r&&o(i,i,r),n&&l(i,i,n),this.setMatrix(t,a(this.computedMatrix,i))};var g=[0,0,0];d.pan=function(t,e,r,n){g[0]=-(e||0),g[1]=-(r||0),g[2]=-(n||0),this.recalcMatrix(t);var i=this.computedInverse;u(i,i,g),this.setMatrix(t,a(i,i))},d.translate=function(t,e,r,n){g[0]=e||0,g[1]=r||0,g[2]=n||0,this.recalcMatrix(t);var i=this.computedMatrix;u(i,i,g),this.setMatrix(t,i)},d.setMatrix=function(t,e){if(!(t<this.lastT())){this._time.push(t);for(var r=0;r<16;++r)this._components.push(e[r])}},d.setDistance=function(t,e){this.computedRadius[0]=e},d.setDistanceLimits=function(t,e){var r=this._limits;r[0]=t,r[1]=e},d.getDistanceLimits=function(t){var e=this._limits;return t?(t[0]=e[0],t[1]=e[1],t):e}},{\"binary-search-bounds\":481,\"gl-mat4/invert\":293,\"gl-mat4/lookAt\":294,\"gl-mat4/rotateX\":300,\"gl-mat4/rotateY\":301,\"gl-mat4/rotateZ\":302,\"gl-mat4/scale\":303,\"gl-mat4/translate\":305,\"gl-vec3/normalize\":387,\"mat4-interpolate\":477}],481:[function(t,e,r){arguments[4][243][0].apply(r,arguments)},{dup:243}],482:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.length;if(e<3){for(var r=new Array(e),i=0;i<e;++i)r[i]=i;return 2===e&&t[0][0]===t[1][0]&&t[0][1]===t[1][1]?[0]:r}var a=new Array(e);for(i=0;i<e;++i)a[i]=i;a.sort((function(e,r){var n=t[e][0]-t[r][0];return n||t[e][1]-t[r][1]}));var o=[a[0],a[1]],s=[a[0],a[1]];for(i=2;i<e;++i){for(var l=a[i],c=t[l],u=o.length;u>1&&n(t[o[u-2]],t[o[u-1]],c)<=0;)u-=1,o.pop();for(o.push(l),u=s.length;u>1&&n(t[s[u-2]],t[s[u-1]],c)>=0;)u-=1,s.pop();s.push(l)}r=new Array(s.length+o.length-2);for(var f=0,h=(i=0,o.length);i<h;++i)r[f++]=o[i];for(var p=s.length-2;p>0;--p)r[f++]=s[p];return r};var n=t(\"robust-orientation\")[3]},{\"robust-orientation\":548}],483:[function(t,e,r){\"use strict\";e.exports=function(t,e){e||(e=t,t=window);var r=0,i=0,a=0,o={shift:!1,alt:!1,control:!1,meta:!1},s=!1;function l(t){var e=!1;return\"altKey\"in t&&(e=e||t.altKey!==o.alt,o.alt=!!t.altKey),\"shiftKey\"in t&&(e=e||t.shiftKey!==o.shift,o.shift=!!t.shiftKey),\"ctrlKey\"in t&&(e=e||t.ctrlKey!==o.control,o.control=!!t.ctrlKey),\"metaKey\"in t&&(e=e||t.metaKey!==o.meta,o.meta=!!t.metaKey),e}function c(t,s){var c=n.x(s),u=n.y(s);\"buttons\"in s&&(t=0|s.buttons),(t!==r||c!==i||u!==a||l(s))&&(r=0|t,i=c||0,a=u||0,e&&e(r,i,a,o))}function u(t){c(0,t)}function f(){(r||i||a||o.shift||o.alt||o.meta||o.control)&&(i=a=0,r=0,o.shift=o.alt=o.control=o.meta=!1,e&&e(0,0,0,o))}function h(t){l(t)&&e&&e(r,i,a,o)}function p(t){0===n.buttons(t)?c(0,t):c(r,t)}function d(t){c(r|n.buttons(t),t)}function g(t){c(r&~n.buttons(t),t)}function m(){s||(s=!0,t.addEventListener(\"mousemove\",p),t.addEventListener(\"mousedown\",d),t.addEventListener(\"mouseup\",g),t.addEventListener(\"mouseleave\",u),t.addEventListener(\"mouseenter\",u),t.addEventListener(\"mouseout\",u),t.addEventListener(\"mouseover\",u),t.addEventListener(\"blur\",f),t.addEventListener(\"keyup\",h),t.addEventListener(\"keydown\",h),t.addEventListener(\"keypress\",h),t!==window&&(window.addEventListener(\"blur\",f),window.addEventListener(\"keyup\",h),window.addEventListener(\"keydown\",h),window.addEventListener(\"keypress\",h)))}m();var v={element:t};return Object.defineProperties(v,{enabled:{get:function(){return s},set:function(e){e?m():function(){if(!s)return;s=!1,t.removeEventListener(\"mousemove\",p),t.removeEventListener(\"mousedown\",d),t.removeEventListener(\"mouseup\",g),t.removeEventListener(\"mouseleave\",u),t.removeEventListener(\"mouseenter\",u),t.removeEventListener(\"mouseout\",u),t.removeEventListener(\"mouseover\",u),t.removeEventListener(\"blur\",f),t.removeEventListener(\"keyup\",h),t.removeEventListener(\"keydown\",h),t.removeEventListener(\"keypress\",h),t!==window&&(window.removeEventListener(\"blur\",f),window.removeEventListener(\"keyup\",h),window.removeEventListener(\"keydown\",h),window.removeEventListener(\"keypress\",h))}()},enumerable:!0},buttons:{get:function(){return r},enumerable:!0},x:{get:function(){return i},enumerable:!0},y:{get:function(){return a},enumerable:!0},mods:{get:function(){return o},enumerable:!0}}),v};var n=t(\"mouse-event\")},{\"mouse-event\":485}],484:[function(t,e,r){var n={left:0,top:0};e.exports=function(t,e,r){e=e||t.currentTarget||t.srcElement,Array.isArray(r)||(r=[0,0]);var i=t.clientX||0,a=t.clientY||0,o=(s=e,s===window||s===document||s===document.body?n:s.getBoundingClientRect());var s;return r[0]=i-o.left,r[1]=a-o.top,r}},{}],485:[function(t,e,r){\"use strict\";function n(t){return t.target||t.srcElement||window}r.buttons=function(t){if(\"object\"==typeof t){if(\"buttons\"in t)return t.buttons;if(\"which\"in t){if(2===(e=t.which))return 4;if(3===e)return 2;if(e>0)return 1<<e-1}else if(\"button\"in t){var e;if(1===(e=t.button))return 4;if(2===e)return 2;if(e>=0)return 1<<e}}return 0},r.element=n,r.x=function(t){if(\"object\"==typeof t){if(\"offsetX\"in t)return t.offsetX;var e=n(t).getBoundingClientRect();return t.clientX-e.left}return 0},r.y=function(t){if(\"object\"==typeof t){if(\"offsetY\"in t)return t.offsetY;var e=n(t).getBoundingClientRect();return t.clientY-e.top}return 0}},{}],486:[function(t,e,r){\"use strict\";var n=t(\"to-px\");e.exports=function(t,e,r){\"function\"==typeof t&&(r=!!e,e=t,t=window);var i=n(\"ex\",t),a=function(t){r&&t.preventDefault();var n=t.deltaX||0,a=t.deltaY||0,o=t.deltaZ||0,s=1;switch(t.deltaMode){case 1:s=i;break;case 2:s=window.innerHeight}if(a*=s,o*=s,(n*=s)||a||o)return e(n,a,o,t)};return t.addEventListener(\"wheel\",a),a}},{\"to-px\":578}],487:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\");function i(t){return\"a\"+t}function a(t){return\"d\"+t}function o(t,e){return\"c\"+t+\"_\"+e}function s(t){return\"s\"+t}function l(t,e){return\"t\"+t+\"_\"+e}function c(t){return\"o\"+t}function u(t){return\"x\"+t}function f(t){return\"p\"+t}function h(t,e){return\"d\"+t+\"_\"+e}function p(t){return\"i\"+t}function d(t,e){return\"u\"+t+\"_\"+e}function g(t){return\"b\"+t}function m(t){return\"y\"+t}function v(t){return\"e\"+t}function y(t){return\"v\"+t}e.exports=function(t){function e(t){throw new Error(\"ndarray-extract-contour: \"+t)}\"object\"!=typeof t&&e(\"Must specify arguments\");var r=t.order;Array.isArray(r)||e(\"Must specify order\");var b=t.arrayArguments||1;b<1&&e(\"Must have at least one array argument\");var _=t.scalarArguments||0;_<0&&e(\"Scalar arg count must be > 0\");\"function\"!=typeof t.vertex&&e(\"Must specify vertex creation function\");\"function\"!=typeof t.cell&&e(\"Must specify cell creation function\");\"function\"!=typeof t.phase&&e(\"Must specify phase function\");for(var w=t.getters||[],T=new Array(b),k=0;k<b;++k)w.indexOf(k)>=0?T[k]=!0:T[k]=!1;return function(t,e,r,b,_,w){var T=w.length,k=_.length;if(k<2)throw new Error(\"ndarray-extract-contour: Dimension must be at least 2\");for(var M=\"extractContour\"+_.join(\"_\"),A=[],S=[],E=[],C=0;C<T;++C)E.push(i(C));for(C=0;C<b;++C)E.push(u(C));for(C=0;C<k;++C)S.push(s(C)+\"=\"+i(0)+\".shape[\"+C+\"]|0\");for(C=0;C<T;++C){S.push(a(C)+\"=\"+i(C)+\".data\",c(C)+\"=\"+i(C)+\".offset|0\");for(var L=0;L<k;++L)S.push(l(C,L)+\"=\"+i(C)+\".stride[\"+L+\"]|0\")}for(C=0;C<T;++C){S.push(f(C)+\"=\"+c(C)),S.push(o(C,0));for(L=1;L<1<<k;++L){for(var I=[],P=0;P<k;++P)L&1<<P&&I.push(\"-\"+l(C,P));S.push(h(C,L)+\"=(\"+I.join(\"\")+\")|0\"),S.push(o(C,L)+\"=0\")}}for(C=0;C<T;++C)for(L=0;L<k;++L){var z=[l(C,_[L])];L>0&&z.push(l(C,_[L-1])+\"*\"+s(_[L-1])),S.push(d(C,_[L])+\"=(\"+z.join(\"-\")+\")|0\")}for(C=0;C<k;++C)S.push(p(C)+\"=0\");S.push(\"N=0\");var O=[\"2\"];for(C=k-2;C>=0;--C)O.push(s(_[C]));S.push(\"Q=(\"+O.join(\"*\")+\")|0\",\"P=mallocUint32(Q)\",\"V=mallocUint32(Q)\",\"X=0\"),S.push(g(0)+\"=0\");for(L=1;L<1<<k;++L){var D=[],R=[];for(P=0;P<k;++P)L&1<<P&&(0===R.length?D.push(\"1\"):D.unshift(R.join(\"*\"))),R.push(s(_[P]));var F=\"\";D[0].indexOf(s(_[k-2]))<0&&(F=\"-\");var B=x(k,L,_);S.push(v(B)+\"=(-\"+D.join(\"-\")+\")|0\",m(B)+\"=(\"+F+D.join(\"-\")+\")|0\",g(B)+\"=0\")}function N(t,e){A.push(\"for(\",p(_[t]),\"=\",e,\";\",p(_[t]),\"<\",s(_[t]),\";\",\"++\",p(_[t]),\"){\")}function j(t){for(var e=0;e<T;++e)A.push(f(e),\"+=\",d(e,_[t]),\";\");A.push(\"}\")}function U(){for(var t=1;t<1<<k;++t)A.push(\"T\",\"=\",v(t),\";\",v(t),\"=\",m(t),\";\",m(t),\"=\",\"T\",\";\")}S.push(y(0)+\"=0\",\"T=0\"),function t(e,r){if(e<0)!function(t){for(var e=0;e<T;++e)w[e]?A.push(o(e,0),\"=\",a(e),\".get(\",f(e),\");\"):A.push(o(e,0),\"=\",a(e),\"[\",f(e),\"];\");var r=[];for(e=0;e<T;++e)r.push(o(e,0));for(e=0;e<b;++e)r.push(u(e));A.push(g(0),\"=\",\"P\",\"[\",\"X\",\"]=phase(\",r.join(),\");\");for(var n=1;n<1<<k;++n)A.push(g(n),\"=\",\"P\",\"[\",\"X\",\"+\",v(n),\"];\");var i=[];for(n=1;n<1<<k;++n)i.push(\"(\"+g(0)+\"!==\"+g(n)+\")\");A.push(\"if(\",i.join(\"||\"),\"){\");var s=[];for(e=0;e<k;++e)s.push(p(e));for(e=0;e<T;++e){s.push(o(e,0));for(n=1;n<1<<k;++n)w[e]?A.push(o(e,n),\"=\",a(e),\".get(\",f(e),\"+\",h(e,n),\");\"):A.push(o(e,n),\"=\",a(e),\"[\",f(e),\"+\",h(e,n),\"];\"),s.push(o(e,n))}for(e=0;e<1<<k;++e)s.push(g(e));for(e=0;e<b;++e)s.push(u(e));A.push(\"vertex(\",s.join(),\");\",y(0),\"=\",\"V\",\"[\",\"X\",\"]=\",\"N\",\"++;\");var l=(1<<k)-1,c=g(l);for(n=0;n<k;++n)if(0==(t&~(1<<n))){for(var d=l^1<<n,m=g(d),x=[],_=d;_>0;_=_-1&d)x.push(\"V[X+\"+v(_)+\"]\");x.push(y(0));for(_=0;_<T;++_)1&n?x.push(o(_,l),o(_,d)):x.push(o(_,d),o(_,l));1&n?x.push(c,m):x.push(m,c);for(_=0;_<b;++_)x.push(u(_));A.push(\"if(\",c,\"!==\",m,\"){\",\"face(\",x.join(),\")}\")}A.push(\"}\",\"X\",\"+=1;\")}(r);else{!function(t){for(var e=t-1;e>=0;--e)N(e,0);var r=[];for(e=0;e<T;++e)w[e]?r.push(a(e)+\".get(\"+f(e)+\")\"):r.push(a(e)+\"[\"+f(e)+\"]\");for(e=0;e<b;++e)r.push(u(e));for(A.push(\"P\",\"[\",\"X\",\"++]=phase(\",r.join(),\");\"),e=0;e<t;++e)j(e);for(var n=0;n<T;++n)A.push(f(n),\"+=\",d(n,_[t]),\";\")}(e),A.push(\"if(\",s(_[e]),\">0){\",p(_[e]),\"=1;\"),t(e-1,r|1<<_[e]);for(var n=0;n<T;++n)A.push(f(n),\"+=\",d(n,_[e]),\";\");e===k-1&&(A.push(\"X\",\"=0;\"),U()),N(e,2),t(e-1,r),e===k-1&&(A.push(\"if(\",p(_[k-1]),\"&1){\",\"X\",\"=0;}\"),U()),j(e),A.push(\"}\")}}(k-1,0),A.push(\"freeUint32(\",\"V\",\");freeUint32(\",\"P\",\");\");var V=[\"'use strict';\",\"function \",M,\"(\",E.join(),\"){\",\"var \",S.join(),\";\",A.join(\"\"),\"}\",\"return \",M].join(\"\");return new Function(\"vertex\",\"face\",\"phase\",\"mallocUint32\",\"freeUint32\",V)(t,e,r,n.mallocUint32,n.freeUint32)}(t.vertex,t.cell,t.phase,_,r,T)};function x(t,e,r){for(var n=0,i=0;i<t;++i)e&1<<i&&(n|=1<<r[i]);return n}},{\"typedarray-pool\":595}],488:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){if(Array.isArray(r)){if(r.length!==e.dimension)throw new Error(\"ndarray-gradient: invalid boundary conditions\")}else r=n(e.dimension,\"string\"==typeof r?r:\"clamp\");if(t.dimension!==e.dimension+1)throw new Error(\"ndarray-gradient: output dimension must be +1 input dimension\");if(t.shape[e.dimension]!==e.dimension)throw new Error(\"ndarray-gradient: output shape must match input shape\");for(var i=0;i<e.dimension;++i)if(t.shape[i]!==e.shape[i])throw new Error(\"ndarray-gradient: shape mismatch\");if(0===e.size)return t;if(e.dimension<=0)return t.set(0),t;return function(t){var e=t.join();if(v=o[e])return v;var r=t.length,n=[\"function gradient(dst,src){var s=src.shape.slice();\"];function i(e){for(var i=r-e.length,a=[],o=[],s=[],l=0;l<r;++l)e.indexOf(l+1)>=0?s.push(\"0\"):e.indexOf(-(l+1))>=0?s.push(\"s[\"+l+\"]-1\"):(s.push(\"-1\"),a.push(\"1\"),o.push(\"s[\"+l+\"]-2\"));var c=\".lo(\"+a.join()+\").hi(\"+o.join()+\")\";if(0===a.length&&(c=\"\"),i>0){n.push(\"if(1\");for(l=0;l<r;++l)e.indexOf(l+1)>=0||e.indexOf(-(l+1))>=0||n.push(\"&&s[\",l,\"]>2\");n.push(\"){grad\",i,\"(src.pick(\",s.join(),\")\",c);for(l=0;l<r;++l)e.indexOf(l+1)>=0||e.indexOf(-(l+1))>=0||n.push(\",dst.pick(\",s.join(),\",\",l,\")\",c);n.push(\");\")}for(l=0;l<e.length;++l){var u=Math.abs(e[l])-1,f=\"dst.pick(\"+s.join()+\",\"+u+\")\"+c;switch(t[u]){case\"clamp\":var h=s.slice(),p=s.slice();e[l]<0?h[u]=\"s[\"+u+\"]-2\":p[u]=\"1\",0===i?n.push(\"if(s[\",u,\"]>1){dst.set(\",s.join(),\",\",u,\",0.5*(src.get(\",h.join(),\")-src.get(\",p.join(),\")))}else{dst.set(\",s.join(),\",\",u,\",0)};\"):n.push(\"if(s[\",u,\"]>1){diff(\",f,\",src.pick(\",h.join(),\")\",c,\",src.pick(\",p.join(),\")\",c,\");}else{zero(\",f,\");};\");break;case\"mirror\":0===i?n.push(\"dst.set(\",s.join(),\",\",u,\",0);\"):n.push(\"zero(\",f,\");\");break;case\"wrap\":var d=s.slice(),g=s.slice();e[l]<0?(d[u]=\"s[\"+u+\"]-2\",g[u]=\"0\"):(d[u]=\"s[\"+u+\"]-1\",g[u]=\"1\"),0===i?n.push(\"if(s[\",u,\"]>2){dst.set(\",s.join(),\",\",u,\",0.5*(src.get(\",d.join(),\")-src.get(\",g.join(),\")))}else{dst.set(\",s.join(),\",\",u,\",0)};\"):n.push(\"if(s[\",u,\"]>2){diff(\",f,\",src.pick(\",d.join(),\")\",c,\",src.pick(\",g.join(),\")\",c,\");}else{zero(\",f,\");};\");break;default:throw new Error(\"ndarray-gradient: Invalid boundary condition\")}}i>0&&n.push(\"};\")}for(var s=0;s<1<<r;++s){for(var f=[],h=0;h<r;++h)s&1<<h&&f.push(h+1);for(var p=0;p<1<<f.length;++p){var d=f.slice();for(h=0;h<f.length;++h)p&1<<h&&(d[h]=-d[h]);i(d)}}n.push(\"return dst;};return gradient\");var g=[\"diff\",\"zero\"],m=[l,c];for(s=1;s<=r;++s)g.push(\"grad\"+s),m.push(u(s));g.push(n.join(\"\"));var v=Function.apply(void 0,g).apply(void 0,m);return a[e]=v,v}(r)(t,e)};var n=t(\"dup\"),i=t(\"cwise-compiler\"),a={},o={},s={body:\"\",args:[],thisVars:[],localVars:[]},l=i({args:[\"array\",\"array\",\"array\"],pre:s,post:s,body:{args:[{name:\"out\",lvalue:!0,rvalue:!1,count:1},{name:\"left\",lvalue:!1,rvalue:!0,count:1},{name:\"right\",lvalue:!1,rvalue:!0,count:1}],body:\"out=0.5*(left-right)\",thisVars:[],localVars:[]},funcName:\"cdiff\"}),c=i({args:[\"array\"],pre:s,post:s,body:{args:[{name:\"out\",lvalue:!0,rvalue:!1,count:1}],body:\"out=0\",thisVars:[],localVars:[]},funcName:\"zero\"});function u(t){if(t in a)return a[t];for(var e=[],r=0;r<t;++r)e.push(\"out\",r,\"s=0.5*(inp\",r,\"l-inp\",r,\"r);\");var o=[\"array\"],l=[\"junk\"];for(r=0;r<t;++r){o.push(\"array\"),l.push(\"out\"+r+\"s\");var c=n(t);c[r]=-1,o.push({array:0,offset:c.slice()}),c[r]=1,o.push({array:0,offset:c.slice()}),l.push(\"inp\"+r+\"l\",\"inp\"+r+\"r\")}return a[t]=i({args:o,pre:s,post:s,body:{body:e.join(\"\"),args:l.map((function(t){return{name:t,lvalue:0===t.indexOf(\"out\"),rvalue:0===t.indexOf(\"inp\"),count:\"junk\"!==t|0}})),thisVars:[],localVars:[]},funcName:\"fdTemplate\"+t})}},{\"cwise-compiler\":151,dup:176}],489:[function(t,e,r){\"use strict\";function n(t,e){var r=Math.floor(e),n=e-r,i=0<=r&&r<t.shape[0],a=0<=r+1&&r+1<t.shape[0];return(1-n)*(i?+t.get(r):0)+n*(a?+t.get(r+1):0)}function i(t,e,r){var n=Math.floor(e),i=e-n,a=0<=n&&n<t.shape[0],o=0<=n+1&&n+1<t.shape[0],s=Math.floor(r),l=r-s,c=0<=s&&s<t.shape[1],u=0<=s+1&&s+1<t.shape[1],f=a&&c?t.get(n,s):0,h=a&&u?t.get(n,s+1):0;return(1-l)*((1-i)*f+i*(o&&c?t.get(n+1,s):0))+l*((1-i)*h+i*(o&&u?t.get(n+1,s+1):0))}function a(t,e,r,n){var i=Math.floor(e),a=e-i,o=0<=i&&i<t.shape[0],s=0<=i+1&&i+1<t.shape[0],l=Math.floor(r),c=r-l,u=0<=l&&l<t.shape[1],f=0<=l+1&&l+1<t.shape[1],h=Math.floor(n),p=n-h,d=0<=h&&h<t.shape[2],g=0<=h+1&&h+1<t.shape[2],m=o&&u&&d?t.get(i,l,h):0,v=o&&f&&d?t.get(i,l+1,h):0,y=s&&u&&d?t.get(i+1,l,h):0,x=s&&f&&d?t.get(i+1,l+1,h):0,b=o&&u&&g?t.get(i,l,h+1):0,_=o&&f&&g?t.get(i,l+1,h+1):0;return(1-p)*((1-c)*((1-a)*m+a*y)+c*((1-a)*v+a*x))+p*((1-c)*((1-a)*b+a*(s&&u&&g?t.get(i+1,l,h+1):0))+c*((1-a)*_+a*(s&&f&&g?t.get(i+1,l+1,h+1):0)))}function o(t){var e,r,n=0|t.shape.length,i=new Array(n),a=new Array(n),o=new Array(n),s=new Array(n);for(e=0;e<n;++e)r=+arguments[e+1],i[e]=Math.floor(r),a[e]=r-i[e],o[e]=0<=i[e]&&i[e]<t.shape[e],s[e]=0<=i[e]+1&&i[e]+1<t.shape[e];var l,c,u,f=0;t:for(e=0;e<1<<n;++e){for(c=1,u=t.offset,l=0;l<n;++l)if(e&1<<l){if(!s[l])continue t;c*=a[l],u+=t.stride[l]*(i[l]+1)}else{if(!o[l])continue t;c*=1-a[l],u+=t.stride[l]*i[l]}f+=c*t.data[u]}return f}e.exports=function(t,e,r,s){switch(t.shape.length){case 0:return 0;case 1:return n(t,e);case 2:return i(t,e,r);case 3:return a(t,e,r,s);default:return o.apply(void 0,arguments)}},e.exports.d1=n,e.exports.d2=i,e.exports.d3=a},{}],490:[function(t,e,r){\"use strict\";var n=t(\"cwise-compiler\"),i={body:\"\",args:[],thisVars:[],localVars:[]};function a(t){if(!t)return i;for(var e=0;e<t.args.length;++e){var r=t.args[e];t.args[e]=0===e?{name:r,lvalue:!0,rvalue:!!t.rvalue,count:t.count||1}:{name:r,lvalue:!1,rvalue:!0,count:1}}return t.thisVars||(t.thisVars=[]),t.localVars||(t.localVars=[]),t}function o(t){for(var e=[],r=0;r<t.args.length;++r)e.push(\"a\"+r);return new Function(\"P\",[\"return function \",t.funcName,\"_ndarrayops(\",e.join(\",\"),\") {P(\",e.join(\",\"),\");return a0}\"].join(\"\"))(function(t){return n({args:t.args,pre:a(t.pre),body:a(t.body),post:a(t.proc),funcName:t.funcName})}(t))}var s={add:\"+\",sub:\"-\",mul:\"*\",div:\"/\",mod:\"%\",band:\"&\",bor:\"|\",bxor:\"^\",lshift:\"<<\",rshift:\">>\",rrshift:\">>>\"};!function(){for(var t in s){var e=s[t];r[t]=o({args:[\"array\",\"array\",\"array\"],body:{args:[\"a\",\"b\",\"c\"],body:\"a=b\"+e+\"c\"},funcName:t}),r[t+\"eq\"]=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a\"+e+\"=b\"},rvalue:!0,funcName:t+\"eq\"}),r[t+\"s\"]=o({args:[\"array\",\"array\",\"scalar\"],body:{args:[\"a\",\"b\",\"s\"],body:\"a=b\"+e+\"s\"},funcName:t+\"s\"}),r[t+\"seq\"]=o({args:[\"array\",\"scalar\"],body:{args:[\"a\",\"s\"],body:\"a\"+e+\"=s\"},rvalue:!0,funcName:t+\"seq\"})}}();var l={not:\"!\",bnot:\"~\",neg:\"-\",recip:\"1.0/\"};!function(){for(var t in l){var e=l[t];r[t]=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a=\"+e+\"b\"},funcName:t}),r[t+\"eq\"]=o({args:[\"array\"],body:{args:[\"a\"],body:\"a=\"+e+\"a\"},rvalue:!0,count:2,funcName:t+\"eq\"})}}();var c={and:\"&&\",or:\"||\",eq:\"===\",neq:\"!==\",lt:\"<\",gt:\">\",leq:\"<=\",geq:\">=\"};!function(){for(var t in c){var e=c[t];r[t]=o({args:[\"array\",\"array\",\"array\"],body:{args:[\"a\",\"b\",\"c\"],body:\"a=b\"+e+\"c\"},funcName:t}),r[t+\"s\"]=o({args:[\"array\",\"array\",\"scalar\"],body:{args:[\"a\",\"b\",\"s\"],body:\"a=b\"+e+\"s\"},funcName:t+\"s\"}),r[t+\"eq\"]=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a=a\"+e+\"b\"},rvalue:!0,count:2,funcName:t+\"eq\"}),r[t+\"seq\"]=o({args:[\"array\",\"scalar\"],body:{args:[\"a\",\"s\"],body:\"a=a\"+e+\"s\"},rvalue:!0,count:2,funcName:t+\"seq\"})}}();var u=[\"abs\",\"acos\",\"asin\",\"atan\",\"ceil\",\"cos\",\"exp\",\"floor\",\"log\",\"round\",\"sin\",\"sqrt\",\"tan\"];!function(){for(var t=0;t<u.length;++t){var e=u[t];r[e]=o({args:[\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(b)\",thisVars:[\"this_f\"]},funcName:e}),r[e+\"eq\"]=o({args:[\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\"],body:\"a=this_f(a)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"eq\"})}}();var f=[\"max\",\"min\",\"atan2\",\"pow\"];!function(){for(var t=0;t<f.length;++t){var e=f[t];r[e]=o({args:[\"array\",\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(b,c)\",thisVars:[\"this_f\"]},funcName:e}),r[e+\"s\"]=o({args:[\"array\",\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(b,c)\",thisVars:[\"this_f\"]},funcName:e+\"s\"}),r[e+\"eq\"]=o({args:[\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(a,b)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"eq\"}),r[e+\"seq\"]=o({args:[\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(a,b)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"seq\"})}}();var h=[\"atan2\",\"pow\"];!function(){for(var t=0;t<h.length;++t){var e=h[t];r[e+\"op\"]=o({args:[\"array\",\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(c,b)\",thisVars:[\"this_f\"]},funcName:e+\"op\"}),r[e+\"ops\"]=o({args:[\"array\",\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\",\"c\"],body:\"a=this_f(c,b)\",thisVars:[\"this_f\"]},funcName:e+\"ops\"}),r[e+\"opeq\"]=o({args:[\"array\",\"array\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(b,a)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"opeq\"}),r[e+\"opseq\"]=o({args:[\"array\",\"scalar\"],pre:{args:[],body:\"this_f=Math.\"+e,thisVars:[\"this_f\"]},body:{args:[\"a\",\"b\"],body:\"a=this_f(b,a)\",thisVars:[\"this_f\"]},rvalue:!0,count:2,funcName:e+\"opseq\"})}}(),r.any=n({args:[\"array\"],pre:i,body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:1}],body:\"if(a){return true}\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\"return false\"},funcName:\"any\"}),r.all=n({args:[\"array\"],pre:i,body:{args:[{name:\"x\",lvalue:!1,rvalue:!0,count:1}],body:\"if(!x){return false}\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\"return true\"},funcName:\"all\"}),r.sum=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:1}],body:\"this_s+=a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"sum\"}),r.prod=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=1\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:1}],body:\"this_s*=a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"prod\"}),r.norm2squared=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:2}],body:\"this_s+=a*a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"norm2squared\"}),r.norm2=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:2}],body:\"this_s+=a*a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return Math.sqrt(this_s)\"},funcName:\"norm2\"}),r.norminf=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:4}],body:\"if(-a>this_s){this_s=-a}else if(a>this_s){this_s=a}\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"norminf\"}),r.norm1=n({args:[\"array\"],pre:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"this_s=0\"},body:{args:[{name:\"a\",lvalue:!1,rvalue:!0,count:3}],body:\"this_s+=a<0?-a:a\",localVars:[],thisVars:[\"this_s\"]},post:{args:[],localVars:[],thisVars:[\"this_s\"],body:\"return this_s\"},funcName:\"norm1\"}),r.sup=n({args:[\"array\"],pre:{body:\"this_h=-Infinity\",args:[],thisVars:[\"this_h\"],localVars:[]},body:{body:\"if(_inline_1_arg0_>this_h)this_h=_inline_1_arg0_\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_h\"],localVars:[]},post:{body:\"return this_h\",args:[],thisVars:[\"this_h\"],localVars:[]}}),r.inf=n({args:[\"array\"],pre:{body:\"this_h=Infinity\",args:[],thisVars:[\"this_h\"],localVars:[]},body:{body:\"if(_inline_1_arg0_<this_h)this_h=_inline_1_arg0_\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_h\"],localVars:[]},post:{body:\"return this_h\",args:[],thisVars:[\"this_h\"],localVars:[]}}),r.argmin=n({args:[\"index\",\"array\",\"shape\"],pre:{body:\"{this_v=Infinity;this_i=_inline_0_arg2_.slice(0)}\",args:[{name:\"_inline_0_arg0_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg1_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg2_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_i\",\"this_v\"],localVars:[]},body:{body:\"{if(_inline_1_arg1_<this_v){this_v=_inline_1_arg1_;for(var _inline_1_k=0;_inline_1_k<_inline_1_arg0_.length;++_inline_1_k){this_i[_inline_1_k]=_inline_1_arg0_[_inline_1_k]}}}\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_i\",\"this_v\"],localVars:[\"_inline_1_k\"]},post:{body:\"{return this_i}\",args:[],thisVars:[\"this_i\"],localVars:[]}}),r.argmax=n({args:[\"index\",\"array\",\"shape\"],pre:{body:\"{this_v=-Infinity;this_i=_inline_0_arg2_.slice(0)}\",args:[{name:\"_inline_0_arg0_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg1_\",lvalue:!1,rvalue:!1,count:0},{name:\"_inline_0_arg2_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[\"this_i\",\"this_v\"],localVars:[]},body:{body:\"{if(_inline_1_arg1_>this_v){this_v=_inline_1_arg1_;for(var _inline_1_k=0;_inline_1_k<_inline_1_arg0_.length;++_inline_1_k){this_i[_inline_1_k]=_inline_1_arg0_[_inline_1_k]}}}\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:2},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:2}],thisVars:[\"this_i\",\"this_v\"],localVars:[\"_inline_1_k\"]},post:{body:\"{return this_i}\",args:[],thisVars:[\"this_i\"],localVars:[]}}),r.random=o({args:[\"array\"],pre:{args:[],body:\"this_f=Math.random\",thisVars:[\"this_f\"]},body:{args:[\"a\"],body:\"a=this_f()\",thisVars:[\"this_f\"]},funcName:\"random\"}),r.assign=o({args:[\"array\",\"array\"],body:{args:[\"a\",\"b\"],body:\"a=b\"},funcName:\"assign\"}),r.assigns=o({args:[\"array\",\"scalar\"],body:{args:[\"a\",\"b\"],body:\"a=b\"},funcName:\"assigns\"}),r.equals=n({args:[\"array\",\"array\"],pre:i,body:{args:[{name:\"x\",lvalue:!1,rvalue:!0,count:1},{name:\"y\",lvalue:!1,rvalue:!0,count:1}],body:\"if(x!==y){return false}\",localVars:[],thisVars:[]},post:{args:[],localVars:[],thisVars:[],body:\"return true\"},funcName:\"equals\"})},{\"cwise-compiler\":151}],491:[function(t,e,r){\"use strict\";var n=t(\"ndarray\"),i=t(\"./doConvert.js\");e.exports=function(t,e){for(var r=[],a=t,o=1;Array.isArray(a);)r.push(a.length),o*=a.length,a=a[0];return 0===r.length?n():(e||(e=n(new Float64Array(o),r)),i(e,t),e)}},{\"./doConvert.js\":492,ndarray:495}],492:[function(t,e,r){e.exports=t(\"cwise-compiler\")({args:[\"array\",\"scalar\",\"index\"],pre:{body:\"{}\",args:[],thisVars:[],localVars:[]},body:{body:\"{\\nvar _inline_1_v=_inline_1_arg1_,_inline_1_i\\nfor(_inline_1_i=0;_inline_1_i<_inline_1_arg2_.length-1;++_inline_1_i) {\\n_inline_1_v=_inline_1_v[_inline_1_arg2_[_inline_1_i]]\\n}\\n_inline_1_arg0_=_inline_1_v[_inline_1_arg2_[_inline_1_arg2_.length-1]]\\n}\",args:[{name:\"_inline_1_arg0_\",lvalue:!0,rvalue:!1,count:1},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg2_\",lvalue:!1,rvalue:!0,count:4}],thisVars:[],localVars:[\"_inline_1_i\",\"_inline_1_v\"]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},funcName:\"convert\",blockSize:64})},{\"cwise-compiler\":151}],493:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\"),i=32;function a(t){switch(t){case\"uint8\":return[n.mallocUint8,n.freeUint8];case\"uint16\":return[n.mallocUint16,n.freeUint16];case\"uint32\":return[n.mallocUint32,n.freeUint32];case\"int8\":return[n.mallocInt8,n.freeInt8];case\"int16\":return[n.mallocInt16,n.freeInt16];case\"int32\":return[n.mallocInt32,n.freeInt32];case\"float32\":return[n.mallocFloat,n.freeFloat];case\"float64\":return[n.mallocDouble,n.freeDouble];default:return null}}function o(t){for(var e=[],r=0;r<t;++r)e.push(\"s\"+r);for(r=0;r<t;++r)e.push(\"n\"+r);for(r=1;r<t;++r)e.push(\"d\"+r);for(r=1;r<t;++r)e.push(\"e\"+r);for(r=1;r<t;++r)e.push(\"f\"+r);return e}e.exports=function(t,e){var r=[\"'use strict'\"],n=[\"ndarraySortWrapper\",t.join(\"d\"),e].join(\"\");r.push([\"function \",n,\"(\",[\"array\"].join(\",\"),\"){\"].join(\"\"));for(var s=[\"data=array.data,offset=array.offset|0,shape=array.shape,stride=array.stride\"],l=0;l<t.length;++l)s.push([\"s\",l,\"=stride[\",l,\"]|0,n\",l,\"=shape[\",l,\"]|0\"].join(\"\"));var c=new Array(t.length),u=[];for(l=0;l<t.length;++l){0!==(p=t[l])&&(0===u.length?c[p]=\"1\":c[p]=u.join(\"*\"),u.push(\"n\"+p))}var f=-1,h=-1;for(l=0;l<t.length;++l){var p,d=t[l];0!==d&&(f>0?s.push([\"d\",d,\"=s\",d,\"-d\",f,\"*n\",f].join(\"\")):s.push([\"d\",d,\"=s\",d].join(\"\")),f=d),0!==(p=t.length-1-l)&&(h>0?s.push([\"e\",p,\"=s\",p,\"-e\",h,\"*n\",h,\",f\",p,\"=\",c[p],\"-f\",h,\"*n\",h].join(\"\")):s.push([\"e\",p,\"=s\",p,\",f\",p,\"=\",c[p]].join(\"\")),h=p)}r.push(\"var \"+s.join(\",\"));var g=[\"0\",\"n0-1\",\"data\",\"offset\"].concat(o(t.length));r.push([\"if(n0<=\",i,\"){\",\"insertionSort(\",g.join(\",\"),\")}else{\",\"quickSort(\",g.join(\",\"),\")}\"].join(\"\")),r.push(\"}return \"+n);var m=new Function(\"insertionSort\",\"quickSort\",r.join(\"\\n\")),v=function(t,e){var r=[\"'use strict'\"],n=[\"ndarrayInsertionSort\",t.join(\"d\"),e].join(\"\"),i=[\"left\",\"right\",\"data\",\"offset\"].concat(o(t.length)),s=a(e),l=[\"i,j,cptr,ptr=left*s0+offset\"];if(t.length>1){for(var c=[],u=1;u<t.length;++u)l.push(\"i\"+u),c.push(\"n\"+u);s?l.push(\"scratch=malloc(\"+c.join(\"*\")+\")\"):l.push(\"scratch=new Array(\"+c.join(\"*\")+\")\"),l.push(\"dptr\",\"sptr\",\"a\",\"b\")}else l.push(\"scratch\");function f(t){return\"generic\"===e?[\"data.get(\",t,\")\"].join(\"\"):[\"data[\",t,\"]\"].join(\"\")}function h(t,r){return\"generic\"===e?[\"data.set(\",t,\",\",r,\")\"].join(\"\"):[\"data[\",t,\"]=\",r].join(\"\")}if(r.push([\"function \",n,\"(\",i.join(\",\"),\"){var \",l.join(\",\")].join(\"\"),\"for(i=left+1;i<=right;++i){\",\"j=i;ptr+=s0\",\"cptr=ptr\"),t.length>1){r.push(\"dptr=0;sptr=ptr\");for(u=t.length-1;u>=0;--u){0!==(p=t[u])&&r.push([\"for(i\",p,\"=0;i\",p,\"<n\",p,\";++i\",p,\"){\"].join(\"\"))}r.push(\"scratch[dptr++]=\",f(\"sptr\"));for(u=0;u<t.length;++u){0!==(p=t[u])&&r.push(\"sptr+=d\"+p,\"}\")}r.push(\"__g:while(j--\\x3eleft){\",\"dptr=0\",\"sptr=cptr-s0\");for(u=1;u<t.length;++u)1===u&&r.push(\"__l:\"),r.push([\"for(i\",u,\"=0;i\",u,\"<n\",u,\";++i\",u,\"){\"].join(\"\"));r.push([\"a=\",f(\"sptr\"),\"\\nb=scratch[dptr]\\nif(a<b){break __g}\\nif(a>b){break __l}\"].join(\"\"));for(u=t.length-1;u>=1;--u)r.push(\"sptr+=e\"+u,\"dptr+=f\"+u,\"}\");r.push(\"dptr=cptr;sptr=cptr-s0\");for(u=t.length-1;u>=0;--u){0!==(p=t[u])&&r.push([\"for(i\",p,\"=0;i\",p,\"<n\",p,\";++i\",p,\"){\"].join(\"\"))}r.push(h(\"dptr\",f(\"sptr\")));for(u=0;u<t.length;++u){0!==(p=t[u])&&r.push([\"dptr+=d\",p,\";sptr+=d\",p].join(\"\"),\"}\")}r.push(\"cptr-=s0\\n}\"),r.push(\"dptr=cptr;sptr=0\");for(u=t.length-1;u>=0;--u){0!==(p=t[u])&&r.push([\"for(i\",p,\"=0;i\",p,\"<n\",p,\";++i\",p,\"){\"].join(\"\"))}r.push(h(\"dptr\",\"scratch[sptr++]\"));for(u=0;u<t.length;++u){var p;0!==(p=t[u])&&r.push(\"dptr+=d\"+p,\"}\")}}else r.push(\"scratch=\"+f(\"ptr\"),\"while((j--\\x3eleft)&&(\"+f(\"cptr-s0\")+\">scratch)){\",h(\"cptr\",f(\"cptr-s0\")),\"cptr-=s0\",\"}\",h(\"cptr\",\"scratch\"));return r.push(\"}\"),t.length>1&&s&&r.push(\"free(scratch)\"),r.push(\"} return \"+n),s?new Function(\"malloc\",\"free\",r.join(\"\\n\"))(s[0],s[1]):new Function(r.join(\"\\n\"))()}(t,e),y=function(t,e,r){var n=[\"'use strict'\"],s=[\"ndarrayQuickSort\",t.join(\"d\"),e].join(\"\"),l=[\"left\",\"right\",\"data\",\"offset\"].concat(o(t.length)),c=a(e),u=0;n.push([\"function \",s,\"(\",l.join(\",\"),\"){\"].join(\"\"));var f=[\"sixth=((right-left+1)/6)|0\",\"index1=left+sixth\",\"index5=right-sixth\",\"index3=(left+right)>>1\",\"index2=index3-sixth\",\"index4=index3+sixth\",\"el1=index1\",\"el2=index2\",\"el3=index3\",\"el4=index4\",\"el5=index5\",\"less=left+1\",\"great=right-1\",\"pivots_are_equal=true\",\"tmp\",\"tmp0\",\"x\",\"y\",\"z\",\"k\",\"ptr0\",\"ptr1\",\"ptr2\",\"comp_pivot1=0\",\"comp_pivot2=0\",\"comp=0\"];if(t.length>1){for(var h=[],p=1;p<t.length;++p)h.push(\"n\"+p),f.push(\"i\"+p);for(p=0;p<8;++p)f.push(\"b_ptr\"+p);f.push(\"ptr3\",\"ptr4\",\"ptr5\",\"ptr6\",\"ptr7\",\"pivot_ptr\",\"ptr_shift\",\"elementSize=\"+h.join(\"*\")),c?f.push(\"pivot1=malloc(elementSize)\",\"pivot2=malloc(elementSize)\"):f.push(\"pivot1=new Array(elementSize),pivot2=new Array(elementSize)\")}else f.push(\"pivot1\",\"pivot2\");function d(t){return[\"(offset+\",t,\"*s0)\"].join(\"\")}function g(t){return\"generic\"===e?[\"data.get(\",t,\")\"].join(\"\"):[\"data[\",t,\"]\"].join(\"\")}function m(t,r){return\"generic\"===e?[\"data.set(\",t,\",\",r,\")\"].join(\"\"):[\"data[\",t,\"]=\",r].join(\"\")}function v(e,r,i){if(1===e.length)n.push(\"ptr0=\"+d(e[0]));else for(var a=0;a<e.length;++a)n.push([\"b_ptr\",a,\"=s0*\",e[a]].join(\"\"));r&&n.push(\"pivot_ptr=0\"),n.push(\"ptr_shift=offset\");for(a=t.length-1;a>=0;--a){0!==(o=t[a])&&n.push([\"for(i\",o,\"=0;i\",o,\"<n\",o,\";++i\",o,\"){\"].join(\"\"))}if(e.length>1)for(a=0;a<e.length;++a)n.push([\"ptr\",a,\"=b_ptr\",a,\"+ptr_shift\"].join(\"\"));n.push(i),r&&n.push(\"++pivot_ptr\");for(a=0;a<t.length;++a){var o;0!==(o=t[a])&&(e.length>1?n.push(\"ptr_shift+=d\"+o):n.push(\"ptr0+=d\"+o),n.push(\"}\"))}}function y(e,r,i,a){if(1===r.length)n.push(\"ptr0=\"+d(r[0]));else{for(var o=0;o<r.length;++o)n.push([\"b_ptr\",o,\"=s0*\",r[o]].join(\"\"));n.push(\"ptr_shift=offset\")}i&&n.push(\"pivot_ptr=0\"),e&&n.push(e+\":\");for(o=1;o<t.length;++o)n.push([\"for(i\",o,\"=0;i\",o,\"<n\",o,\";++i\",o,\"){\"].join(\"\"));if(r.length>1)for(o=0;o<r.length;++o)n.push([\"ptr\",o,\"=b_ptr\",o,\"+ptr_shift\"].join(\"\"));n.push(a);for(o=t.length-1;o>=1;--o)i&&n.push(\"pivot_ptr+=f\"+o),r.length>1?n.push(\"ptr_shift+=e\"+o):n.push(\"ptr0+=e\"+o),n.push(\"}\")}function x(){t.length>1&&c&&n.push(\"free(pivot1)\",\"free(pivot2)\")}function b(e,r){var i=\"el\"+e,a=\"el\"+r;if(t.length>1){var o=\"__l\"+ ++u;y(o,[i,a],!1,[\"comp=\",g(\"ptr0\"),\"-\",g(\"ptr1\"),\"\\n\",\"if(comp>0){tmp0=\",i,\";\",i,\"=\",a,\";\",a,\"=tmp0;break \",o,\"}\\n\",\"if(comp<0){break \",o,\"}\"].join(\"\"))}else n.push([\"if(\",g(d(i)),\">\",g(d(a)),\"){tmp0=\",i,\";\",i,\"=\",a,\";\",a,\"=tmp0}\"].join(\"\"))}function _(e,r){t.length>1?v([e,r],!1,m(\"ptr0\",g(\"ptr1\"))):n.push(m(d(e),g(d(r))))}function w(e,r,i){if(t.length>1){var a=\"__l\"+ ++u;y(a,[r],!0,[e,\"=\",g(\"ptr0\"),\"-pivot\",i,\"[pivot_ptr]\\n\",\"if(\",e,\"!==0){break \",a,\"}\"].join(\"\"))}else n.push([e,\"=\",g(d(r)),\"-pivot\",i].join(\"\"))}function T(e,r){t.length>1?v([e,r],!1,[\"tmp=\",g(\"ptr0\"),\"\\n\",m(\"ptr0\",g(\"ptr1\")),\"\\n\",m(\"ptr1\",\"tmp\")].join(\"\")):n.push([\"ptr0=\",d(e),\"\\n\",\"ptr1=\",d(r),\"\\n\",\"tmp=\",g(\"ptr0\"),\"\\n\",m(\"ptr0\",g(\"ptr1\")),\"\\n\",m(\"ptr1\",\"tmp\")].join(\"\"))}function k(e,r,i){t.length>1?(v([e,r,i],!1,[\"tmp=\",g(\"ptr0\"),\"\\n\",m(\"ptr0\",g(\"ptr1\")),\"\\n\",m(\"ptr1\",g(\"ptr2\")),\"\\n\",m(\"ptr2\",\"tmp\")].join(\"\")),n.push(\"++\"+r,\"--\"+i)):n.push([\"ptr0=\",d(e),\"\\n\",\"ptr1=\",d(r),\"\\n\",\"ptr2=\",d(i),\"\\n\",\"++\",r,\"\\n\",\"--\",i,\"\\n\",\"tmp=\",g(\"ptr0\"),\"\\n\",m(\"ptr0\",g(\"ptr1\")),\"\\n\",m(\"ptr1\",g(\"ptr2\")),\"\\n\",m(\"ptr2\",\"tmp\")].join(\"\"))}function M(t,e){T(t,e),n.push(\"--\"+e)}function A(e,r,i){t.length>1?v([e,r],!0,[m(\"ptr0\",g(\"ptr1\")),\"\\n\",m(\"ptr1\",[\"pivot\",i,\"[pivot_ptr]\"].join(\"\"))].join(\"\")):n.push(m(d(e),g(d(r))),m(d(r),\"pivot\"+i))}function S(e,r){n.push([\"if((\",r,\"-\",e,\")<=\",i,\"){\\n\",\"insertionSort(\",e,\",\",r,\",data,offset,\",o(t.length).join(\",\"),\")\\n\",\"}else{\\n\",s,\"(\",e,\",\",r,\",data,offset,\",o(t.length).join(\",\"),\")\\n\",\"}\"].join(\"\"))}function E(e,r,i){t.length>1?(n.push([\"__l\",++u,\":while(true){\"].join(\"\")),v([e],!0,[\"if(\",g(\"ptr0\"),\"!==pivot\",r,\"[pivot_ptr]){break __l\",u,\"}\"].join(\"\")),n.push(i,\"}\")):n.push([\"while(\",g(d(e)),\"===pivot\",r,\"){\",i,\"}\"].join(\"\"))}return n.push(\"var \"+f.join(\",\")),b(1,2),b(4,5),b(1,3),b(2,3),b(1,4),b(3,4),b(2,5),b(2,3),b(4,5),t.length>1?v([\"el1\",\"el2\",\"el3\",\"el4\",\"el5\",\"index1\",\"index3\",\"index5\"],!0,[\"pivot1[pivot_ptr]=\",g(\"ptr1\"),\"\\n\",\"pivot2[pivot_ptr]=\",g(\"ptr3\"),\"\\n\",\"pivots_are_equal=pivots_are_equal&&(pivot1[pivot_ptr]===pivot2[pivot_ptr])\\n\",\"x=\",g(\"ptr0\"),\"\\n\",\"y=\",g(\"ptr2\"),\"\\n\",\"z=\",g(\"ptr4\"),\"\\n\",m(\"ptr5\",\"x\"),\"\\n\",m(\"ptr6\",\"y\"),\"\\n\",m(\"ptr7\",\"z\")].join(\"\")):n.push([\"pivot1=\",g(d(\"el2\")),\"\\n\",\"pivot2=\",g(d(\"el4\")),\"\\n\",\"pivots_are_equal=pivot1===pivot2\\n\",\"x=\",g(d(\"el1\")),\"\\n\",\"y=\",g(d(\"el3\")),\"\\n\",\"z=\",g(d(\"el5\")),\"\\n\",m(d(\"index1\"),\"x\"),\"\\n\",m(d(\"index3\"),\"y\"),\"\\n\",m(d(\"index5\"),\"z\")].join(\"\")),_(\"index2\",\"left\"),_(\"index4\",\"right\"),n.push(\"if(pivots_are_equal){\"),n.push(\"for(k=less;k<=great;++k){\"),w(\"comp\",\"k\",1),n.push(\"if(comp===0){continue}\"),n.push(\"if(comp<0){\"),n.push(\"if(k!==less){\"),T(\"k\",\"less\"),n.push(\"}\"),n.push(\"++less\"),n.push(\"}else{\"),n.push(\"while(true){\"),w(\"comp\",\"great\",1),n.push(\"if(comp>0){\"),n.push(\"great--\"),n.push(\"}else if(comp<0){\"),k(\"k\",\"less\",\"great\"),n.push(\"break\"),n.push(\"}else{\"),M(\"k\",\"great\"),n.push(\"break\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}else{\"),n.push(\"for(k=less;k<=great;++k){\"),w(\"comp_pivot1\",\"k\",1),n.push(\"if(comp_pivot1<0){\"),n.push(\"if(k!==less){\"),T(\"k\",\"less\"),n.push(\"}\"),n.push(\"++less\"),n.push(\"}else{\"),w(\"comp_pivot2\",\"k\",2),n.push(\"if(comp_pivot2>0){\"),n.push(\"while(true){\"),w(\"comp\",\"great\",2),n.push(\"if(comp>0){\"),n.push(\"if(--great<k){break}\"),n.push(\"continue\"),n.push(\"}else{\"),w(\"comp\",\"great\",1),n.push(\"if(comp<0){\"),k(\"k\",\"less\",\"great\"),n.push(\"}else{\"),M(\"k\",\"great\"),n.push(\"}\"),n.push(\"break\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),A(\"left\",\"(less-1)\",1),A(\"right\",\"(great+1)\",2),S(\"left\",\"(less-2)\"),S(\"(great+2)\",\"right\"),n.push(\"if(pivots_are_equal){\"),x(),n.push(\"return\"),n.push(\"}\"),n.push(\"if(less<index1&&great>index5){\"),E(\"less\",1,\"++less\"),E(\"great\",2,\"--great\"),n.push(\"for(k=less;k<=great;++k){\"),w(\"comp_pivot1\",\"k\",1),n.push(\"if(comp_pivot1===0){\"),n.push(\"if(k!==less){\"),T(\"k\",\"less\"),n.push(\"}\"),n.push(\"++less\"),n.push(\"}else{\"),w(\"comp_pivot2\",\"k\",2),n.push(\"if(comp_pivot2===0){\"),n.push(\"while(true){\"),w(\"comp\",\"great\",2),n.push(\"if(comp===0){\"),n.push(\"if(--great<k){break}\"),n.push(\"continue\"),n.push(\"}else{\"),w(\"comp\",\"great\",1),n.push(\"if(comp<0){\"),k(\"k\",\"less\",\"great\"),n.push(\"}else{\"),M(\"k\",\"great\"),n.push(\"}\"),n.push(\"break\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),n.push(\"}\"),x(),S(\"less\",\"great\"),n.push(\"}return \"+s),t.length>1&&c?new Function(\"insertionSort\",\"malloc\",\"free\",n.join(\"\\n\"))(r,c[0],c[1]):new Function(\"insertionSort\",n.join(\"\\n\"))(r)}(t,e,v);return m(v,y)}},{\"typedarray-pool\":595}],494:[function(t,e,r){\"use strict\";var n=t(\"./lib/compile_sort.js\"),i={};e.exports=function(t){var e=t.order,r=t.dtype,a=[e,r].join(\":\"),o=i[a];return o||(i[a]=o=n(e,r)),o(t),t}},{\"./lib/compile_sort.js\":493}],495:[function(t,e,r){var n=t(\"iota-array\"),i=t(\"is-buffer\"),a=\"undefined\"!=typeof Float64Array;function o(t,e){return t[0]-e[0]}function s(){var t,e=this.stride,r=new Array(e.length);for(t=0;t<r.length;++t)r[t]=[Math.abs(e[t]),t];r.sort(o);var n=new Array(r.length);for(t=0;t<n.length;++t)n[t]=r[t][1];return n}function l(t,e){var r=[\"View\",e,\"d\",t].join(\"\");e<0&&(r=\"View_Nil\"+t);var i=\"generic\"===t;if(-1===e){var a=\"function \"+r+\"(a){this.data=a;};var proto=\"+r+\".prototype;proto.dtype='\"+t+\"';proto.index=function(){return -1};proto.size=0;proto.dimension=-1;proto.shape=proto.stride=proto.order=[];proto.lo=proto.hi=proto.transpose=proto.step=function(){return new \"+r+\"(this.data);};proto.get=proto.set=function(){};proto.pick=function(){return null};return function construct_\"+r+\"(a){return new \"+r+\"(a);}\";return new Function(a)()}if(0===e){a=\"function \"+r+\"(a,d) {this.data = a;this.offset = d};var proto=\"+r+\".prototype;proto.dtype='\"+t+\"';proto.index=function(){return this.offset};proto.dimension=0;proto.size=1;proto.shape=proto.stride=proto.order=[];proto.lo=proto.hi=proto.transpose=proto.step=function \"+r+\"_copy() {return new \"+r+\"(this.data,this.offset)};proto.pick=function \"+r+\"_pick(){return TrivialArray(this.data);};proto.valueOf=proto.get=function \"+r+\"_get(){return \"+(i?\"this.data.get(this.offset)\":\"this.data[this.offset]\")+\"};proto.set=function \"+r+\"_set(v){return \"+(i?\"this.data.set(this.offset,v)\":\"this.data[this.offset]=v\")+\"};return function construct_\"+r+\"(a,b,c,d){return new \"+r+\"(a,d)}\";return new Function(\"TrivialArray\",a)(c[t][0])}a=[\"'use strict'\"];var o=n(e),l=o.map((function(t){return\"i\"+t})),u=\"this.offset+\"+o.map((function(t){return\"this.stride[\"+t+\"]*i\"+t})).join(\"+\"),f=o.map((function(t){return\"b\"+t})).join(\",\"),h=o.map((function(t){return\"c\"+t})).join(\",\");a.push(\"function \"+r+\"(a,\"+f+\",\"+h+\",d){this.data=a\",\"this.shape=[\"+f+\"]\",\"this.stride=[\"+h+\"]\",\"this.offset=d|0}\",\"var proto=\"+r+\".prototype\",\"proto.dtype='\"+t+\"'\",\"proto.dimension=\"+e),a.push(\"Object.defineProperty(proto,'size',{get:function \"+r+\"_size(){return \"+o.map((function(t){return\"this.shape[\"+t+\"]\"})).join(\"*\"),\"}})\"),1===e?a.push(\"proto.order=[0]\"):(a.push(\"Object.defineProperty(proto,'order',{get:\"),e<4?(a.push(\"function \"+r+\"_order(){\"),2===e?a.push(\"return (Math.abs(this.stride[0])>Math.abs(this.stride[1]))?[1,0]:[0,1]}})\"):3===e&&a.push(\"var s0=Math.abs(this.stride[0]),s1=Math.abs(this.stride[1]),s2=Math.abs(this.stride[2]);if(s0>s1){if(s1>s2){return [2,1,0];}else if(s0>s2){return [1,2,0];}else{return [1,0,2];}}else if(s0>s2){return [2,0,1];}else if(s2>s1){return [0,1,2];}else{return [0,2,1];}}})\")):a.push(\"ORDER})\")),a.push(\"proto.set=function \"+r+\"_set(\"+l.join(\",\")+\",v){\"),i?a.push(\"return this.data.set(\"+u+\",v)}\"):a.push(\"return this.data[\"+u+\"]=v}\"),a.push(\"proto.get=function \"+r+\"_get(\"+l.join(\",\")+\"){\"),i?a.push(\"return this.data.get(\"+u+\")}\"):a.push(\"return this.data[\"+u+\"]}\"),a.push(\"proto.index=function \"+r+\"_index(\",l.join(),\"){return \"+u+\"}\"),a.push(\"proto.hi=function \"+r+\"_hi(\"+l.join(\",\")+\"){return new \"+r+\"(this.data,\"+o.map((function(t){return[\"(typeof i\",t,\"!=='number'||i\",t,\"<0)?this.shape[\",t,\"]:i\",t,\"|0\"].join(\"\")})).join(\",\")+\",\"+o.map((function(t){return\"this.stride[\"+t+\"]\"})).join(\",\")+\",this.offset)}\");var p=o.map((function(t){return\"a\"+t+\"=this.shape[\"+t+\"]\"})),d=o.map((function(t){return\"c\"+t+\"=this.stride[\"+t+\"]\"}));a.push(\"proto.lo=function \"+r+\"_lo(\"+l.join(\",\")+\"){var b=this.offset,d=0,\"+p.join(\",\")+\",\"+d.join(\",\"));for(var g=0;g<e;++g)a.push(\"if(typeof i\"+g+\"==='number'&&i\"+g+\">=0){d=i\"+g+\"|0;b+=c\"+g+\"*d;a\"+g+\"-=d}\");a.push(\"return new \"+r+\"(this.data,\"+o.map((function(t){return\"a\"+t})).join(\",\")+\",\"+o.map((function(t){return\"c\"+t})).join(\",\")+\",b)}\"),a.push(\"proto.step=function \"+r+\"_step(\"+l.join(\",\")+\"){var \"+o.map((function(t){return\"a\"+t+\"=this.shape[\"+t+\"]\"})).join(\",\")+\",\"+o.map((function(t){return\"b\"+t+\"=this.stride[\"+t+\"]\"})).join(\",\")+\",c=this.offset,d=0,ceil=Math.ceil\");for(g=0;g<e;++g)a.push(\"if(typeof i\"+g+\"==='number'){d=i\"+g+\"|0;if(d<0){c+=b\"+g+\"*(a\"+g+\"-1);a\"+g+\"=ceil(-a\"+g+\"/d)}else{a\"+g+\"=ceil(a\"+g+\"/d)}b\"+g+\"*=d}\");a.push(\"return new \"+r+\"(this.data,\"+o.map((function(t){return\"a\"+t})).join(\",\")+\",\"+o.map((function(t){return\"b\"+t})).join(\",\")+\",c)}\");var m=new Array(e),v=new Array(e);for(g=0;g<e;++g)m[g]=\"a[i\"+g+\"]\",v[g]=\"b[i\"+g+\"]\";a.push(\"proto.transpose=function \"+r+\"_transpose(\"+l+\"){\"+l.map((function(t,e){return t+\"=(\"+t+\"===undefined?\"+e+\":\"+t+\"|0)\"})).join(\";\"),\"var a=this.shape,b=this.stride;return new \"+r+\"(this.data,\"+m.join(\",\")+\",\"+v.join(\",\")+\",this.offset)}\"),a.push(\"proto.pick=function \"+r+\"_pick(\"+l+\"){var a=[],b=[],c=this.offset\");for(g=0;g<e;++g)a.push(\"if(typeof i\"+g+\"==='number'&&i\"+g+\">=0){c=(c+this.stride[\"+g+\"]*i\"+g+\")|0}else{a.push(this.shape[\"+g+\"]);b.push(this.stride[\"+g+\"])}\");return a.push(\"var ctor=CTOR_LIST[a.length+1];return ctor(this.data,a,b,c)}\"),a.push(\"return function construct_\"+r+\"(data,shape,stride,offset){return new \"+r+\"(data,\"+o.map((function(t){return\"shape[\"+t+\"]\"})).join(\",\")+\",\"+o.map((function(t){return\"stride[\"+t+\"]\"})).join(\",\")+\",offset)}\"),new Function(\"CTOR_LIST\",\"ORDER\",a.join(\"\\n\"))(c[t],s)}var c={float32:[],float64:[],int8:[],int16:[],int32:[],uint8:[],uint16:[],uint32:[],array:[],uint8_clamped:[],bigint64:[],biguint64:[],buffer:[],generic:[]};e.exports=function(t,e,r,n){if(void 0===t)return(0,c.array[0])([]);\"number\"==typeof t&&(t=[t]),void 0===e&&(e=[t.length]);var o=e.length;if(void 0===r){r=new Array(o);for(var s=o-1,u=1;s>=0;--s)r[s]=u,u*=e[s]}if(void 0===n){n=0;for(s=0;s<o;++s)r[s]<0&&(n-=(e[s]-1)*r[s])}for(var f=function(t){if(i(t))return\"buffer\";if(a)switch(Object.prototype.toString.call(t)){case\"[object Float64Array]\":return\"float64\";case\"[object Float32Array]\":return\"float32\";case\"[object Int8Array]\":return\"int8\";case\"[object Int16Array]\":return\"int16\";case\"[object Int32Array]\":return\"int32\";case\"[object Uint8Array]\":return\"uint8\";case\"[object Uint16Array]\":return\"uint16\";case\"[object Uint32Array]\":return\"uint32\";case\"[object Uint8ClampedArray]\":return\"uint8_clamped\";case\"[object BigInt64Array]\":return\"bigint64\";case\"[object BigUint64Array]\":return\"biguint64\"}return Array.isArray(t)?\"array\":\"generic\"}(t),h=c[f];h.length<=o+1;)h.push(l(f,h.length-1));return(0,h[o+1])(t,e,r,n)}},{\"iota-array\":463,\"is-buffer\":465}],496:[function(t,e,r){\"use strict\";var n=t(\"double-bits\"),i=Math.pow(2,-1074);e.exports=function(t,e){if(isNaN(t)||isNaN(e))return NaN;if(t===e)return t;if(0===t)return e<0?-i:i;var r=n.hi(t),a=n.lo(t);e>t==t>0?a===-1>>>0?(r+=1,a=0):a+=1:0===a?(a=-1>>>0,r-=1):a-=1;return n.pack(a,r)}},{\"double-bits\":173}],497:[function(t,e,r){var n=Math.PI,i=c(120);function a(t,e,r,n){return[\"C\",t,e,r,n,r,n]}function o(t,e,r,n,i,a){return[\"C\",t/3+2/3*r,e/3+2/3*n,i/3+2/3*r,a/3+2/3*n,i,a]}function s(t,e,r,a,o,c,u,f,h,p){if(p)T=p[0],k=p[1],_=p[2],w=p[3];else{var d=l(t,e,-o);t=d.x,e=d.y;var g=(t-(f=(d=l(f,h,-o)).x))/2,m=(e-(h=d.y))/2,v=g*g/(r*r)+m*m/(a*a);v>1&&(r*=v=Math.sqrt(v),a*=v);var y=r*r,x=a*a,b=(c==u?-1:1)*Math.sqrt(Math.abs((y*x-y*m*m-x*g*g)/(y*m*m+x*g*g)));b==1/0&&(b=1);var _=b*r*m/a+(t+f)/2,w=b*-a*g/r+(e+h)/2,T=Math.asin(((e-w)/a).toFixed(9)),k=Math.asin(((h-w)/a).toFixed(9));(T=t<_?n-T:T)<0&&(T=2*n+T),(k=f<_?n-k:k)<0&&(k=2*n+k),u&&T>k&&(T-=2*n),!u&&k>T&&(k-=2*n)}if(Math.abs(k-T)>i){var M=k,A=f,S=h;k=T+i*(u&&k>T?1:-1);var E=s(f=_+r*Math.cos(k),h=w+a*Math.sin(k),r,a,o,0,u,A,S,[k,M,_,w])}var C=Math.tan((k-T)/4),L=4/3*r*C,I=4/3*a*C,P=[2*t-(t+L*Math.sin(T)),2*e-(e-I*Math.cos(T)),f+L*Math.sin(k),h-I*Math.cos(k),f,h];if(p)return P;E&&(P=P.concat(E));for(var z=0;z<P.length;){var O=l(P[z],P[z+1],o);P[z++]=O.x,P[z++]=O.y}return P}function l(t,e,r){return{x:t*Math.cos(r)-e*Math.sin(r),y:t*Math.sin(r)+e*Math.cos(r)}}function c(t){return t*(n/180)}e.exports=function(t){for(var e,r=[],n=0,i=0,l=0,u=0,f=null,h=null,p=0,d=0,g=0,m=t.length;g<m;g++){var v=t[g],y=v[0];switch(y){case\"M\":l=v[1],u=v[2];break;case\"A\":(v=s(p,d,v[1],v[2],c(v[3]),v[4],v[5],v[6],v[7])).unshift(\"C\"),v.length>7&&(r.push(v.splice(0,7)),v.unshift(\"C\"));break;case\"S\":var x=p,b=d;\"C\"!=e&&\"S\"!=e||(x+=x-n,b+=b-i),v=[\"C\",x,b,v[1],v[2],v[3],v[4]];break;case\"T\":\"Q\"==e||\"T\"==e?(f=2*p-f,h=2*d-h):(f=p,h=d),v=o(p,d,f,h,v[1],v[2]);break;case\"Q\":f=v[1],h=v[2],v=o(p,d,v[1],v[2],v[3],v[4]);break;case\"L\":v=a(p,d,v[1],v[2]);break;case\"H\":v=a(p,d,v[1],d);break;case\"V\":v=a(p,d,p,v[1]);break;case\"Z\":v=a(p,d,l,u)}e=y,p=v[v.length-2],d=v[v.length-1],v.length>4?(n=v[v.length-4],i=v[v.length-3]):(n=p,i=d),r.push(v)}return r}},{}],498:[function(t,e,r){r.vertexNormals=function(t,e,r){for(var n=e.length,i=new Array(n),a=void 0===r?1e-6:r,o=0;o<n;++o)i[o]=[0,0,0];for(o=0;o<t.length;++o)for(var s=t[o],l=0,c=s[s.length-1],u=s[0],f=0;f<s.length;++f){l=c,c=u,u=s[(f+1)%s.length];for(var h=e[l],p=e[c],d=e[u],g=new Array(3),m=0,v=new Array(3),y=0,x=0;x<3;++x)g[x]=h[x]-p[x],m+=g[x]*g[x],v[x]=d[x]-p[x],y+=v[x]*v[x];if(m*y>a){var b=i[c],_=1/Math.sqrt(m*y);for(x=0;x<3;++x){var w=(x+1)%3,T=(x+2)%3;b[x]+=_*(v[w]*g[T]-v[T]*g[w])}}}for(o=0;o<n;++o){b=i[o];var k=0;for(x=0;x<3;++x)k+=b[x]*b[x];if(k>a)for(_=1/Math.sqrt(k),x=0;x<3;++x)b[x]*=_;else for(x=0;x<3;++x)b[x]=0}return i},r.faceNormals=function(t,e,r){for(var n=t.length,i=new Array(n),a=void 0===r?1e-6:r,o=0;o<n;++o){for(var s=t[o],l=new Array(3),c=0;c<3;++c)l[c]=e[s[c]];var u=new Array(3),f=new Array(3);for(c=0;c<3;++c)u[c]=l[1][c]-l[0][c],f[c]=l[2][c]-l[0][c];var h=new Array(3),p=0;for(c=0;c<3;++c){var d=(c+1)%3,g=(c+2)%3;h[c]=u[d]*f[g]-u[g]*f[d],p+=h[c]*h[c]}p=p>a?1/Math.sqrt(p):0;for(c=0;c<3;++c)h[c]*=p;i[o]=h}return i}},{}],499:[function(t,e,r){\n",
       "/*\n",
       "object-assign\n",
       "(c) Sindre Sorhus\n",
       "@license MIT\n",
       "*/\n",
       "\"use strict\";var n=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,a=Object.prototype.propertyIsEnumerable;function o(t){if(null==t)throw new TypeError(\"Object.assign cannot be called with null or undefined\");return Object(t)}e.exports=function(){try{if(!Object.assign)return!1;var t=new String(\"abc\");if(t[5]=\"de\",\"5\"===Object.getOwnPropertyNames(t)[0])return!1;for(var e={},r=0;r<10;r++)e[\"_\"+String.fromCharCode(r)]=r;if(\"0123456789\"!==Object.getOwnPropertyNames(e).map((function(t){return e[t]})).join(\"\"))return!1;var n={};return\"abcdefghijklmnopqrst\".split(\"\").forEach((function(t){n[t]=t})),\"abcdefghijklmnopqrst\"===Object.keys(Object.assign({},n)).join(\"\")}catch(t){return!1}}()?Object.assign:function(t,e){for(var r,s,l=o(t),c=1;c<arguments.length;c++){for(var u in r=Object(arguments[c]))i.call(r,u)&&(l[u]=r[u]);if(n){s=n(r);for(var f=0;f<s.length;f++)a.call(r,s[f])&&(l[s[f]]=r[s[f]])}}return l}},{}],500:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i,a,o,s,l,c){var u=e+a+c;if(f>0){var f=Math.sqrt(u+1);t[0]=.5*(o-l)/f,t[1]=.5*(s-n)/f,t[2]=.5*(r-a)/f,t[3]=.5*f}else{var h=Math.max(e,a,c);f=Math.sqrt(2*h-u+1);e>=h?(t[0]=.5*f,t[1]=.5*(i+r)/f,t[2]=.5*(s+n)/f,t[3]=.5*(o-l)/f):a>=h?(t[0]=.5*(r+i)/f,t[1]=.5*f,t[2]=.5*(l+o)/f,t[3]=.5*(s-n)/f):(t[0]=.5*(n+s)/f,t[1]=.5*(o+l)/f,t[2]=.5*f,t[3]=.5*(r-i)/f)}return t}},{}],501:[function(t,e,r){\"use strict\";e.exports=function(t){var e=(t=t||{}).center||[0,0,0],r=t.rotation||[0,0,0,1],n=t.radius||1;e=[].slice.call(e,0,3),u(r=[].slice.call(r,0,4),r);var i=new f(r,e,Math.log(n));i.setDistanceLimits(t.zoomMin,t.zoomMax),(\"eye\"in t||\"up\"in t)&&i.lookAt(0,t.eye,t.center,t.up);return i};var n=t(\"filtered-vector\"),i=t(\"gl-mat4/lookAt\"),a=t(\"gl-mat4/fromQuat\"),o=t(\"gl-mat4/invert\"),s=t(\"./lib/quatFromFrame\");function l(t,e,r){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2))}function c(t,e,r,n){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2)+Math.pow(n,2))}function u(t,e){var r=e[0],n=e[1],i=e[2],a=e[3],o=c(r,n,i,a);o>1e-6?(t[0]=r/o,t[1]=n/o,t[2]=i/o,t[3]=a/o):(t[0]=t[1]=t[2]=0,t[3]=1)}function f(t,e,r){this.radius=n([r]),this.center=n(e),this.rotation=n(t),this.computedRadius=this.radius.curve(0),this.computedCenter=this.center.curve(0),this.computedRotation=this.rotation.curve(0),this.computedUp=[.1,0,0],this.computedEye=[.1,0,0],this.computedMatrix=[.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],this.recalcMatrix(0)}var h=f.prototype;h.lastT=function(){return Math.max(this.radius.lastT(),this.center.lastT(),this.rotation.lastT())},h.recalcMatrix=function(t){this.radius.curve(t),this.center.curve(t),this.rotation.curve(t);var e=this.computedRotation;u(e,e);var r=this.computedMatrix;a(r,e);var n=this.computedCenter,i=this.computedEye,o=this.computedUp,s=Math.exp(this.computedRadius[0]);i[0]=n[0]+s*r[2],i[1]=n[1]+s*r[6],i[2]=n[2]+s*r[10],o[0]=r[1],o[1]=r[5],o[2]=r[9];for(var l=0;l<3;++l){for(var c=0,f=0;f<3;++f)c+=r[l+4*f]*i[f];r[12+l]=-c}},h.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;n<16;++n)e[n]=r[n];return e}return r},h.idle=function(t){this.center.idle(t),this.radius.idle(t),this.rotation.idle(t)},h.flush=function(t){this.center.flush(t),this.radius.flush(t),this.rotation.flush(t)},h.pan=function(t,e,r,n){e=e||0,r=r||0,n=n||0,this.recalcMatrix(t);var i=this.computedMatrix,a=i[1],o=i[5],s=i[9],c=l(a,o,s);a/=c,o/=c,s/=c;var u=i[0],f=i[4],h=i[8],p=u*a+f*o+h*s,d=l(u-=a*p,f-=o*p,h-=s*p);u/=d,f/=d,h/=d;var g=i[2],m=i[6],v=i[10],y=g*a+m*o+v*s,x=g*u+m*f+v*h,b=l(g-=y*a+x*u,m-=y*o+x*f,v-=y*s+x*h);g/=b,m/=b,v/=b;var _=u*e+a*r,w=f*e+o*r,T=h*e+s*r;this.center.move(t,_,w,T);var k=Math.exp(this.computedRadius[0]);k=Math.max(1e-4,k+n),this.radius.set(t,Math.log(k))},h.rotate=function(t,e,r,n){this.recalcMatrix(t),e=e||0,r=r||0;var i=this.computedMatrix,a=i[0],o=i[4],s=i[8],u=i[1],f=i[5],h=i[9],p=i[2],d=i[6],g=i[10],m=e*a+r*u,v=e*o+r*f,y=e*s+r*h,x=-(d*y-g*v),b=-(g*m-p*y),_=-(p*v-d*m),w=Math.sqrt(Math.max(0,1-Math.pow(x,2)-Math.pow(b,2)-Math.pow(_,2))),T=c(x,b,_,w);T>1e-6?(x/=T,b/=T,_/=T,w/=T):(x=b=_=0,w=1);var k=this.computedRotation,M=k[0],A=k[1],S=k[2],E=k[3],C=M*w+E*x+A*_-S*b,L=A*w+E*b+S*x-M*_,I=S*w+E*_+M*b-A*x,P=E*w-M*x-A*b-S*_;if(n){x=p,b=d,_=g;var z=Math.sin(n)/l(x,b,_);x*=z,b*=z,_*=z,P=P*(w=Math.cos(e))-(C=C*w+P*x+L*_-I*b)*x-(L=L*w+P*b+I*x-C*_)*b-(I=I*w+P*_+C*b-L*x)*_}var O=c(C,L,I,P);O>1e-6?(C/=O,L/=O,I/=O,P/=O):(C=L=I=0,P=1),this.rotation.set(t,C,L,I,P)},h.lookAt=function(t,e,r,n){this.recalcMatrix(t),r=r||this.computedCenter,e=e||this.computedEye,n=n||this.computedUp;var a=this.computedMatrix;i(a,e,r,n);var o=this.computedRotation;s(o,a[0],a[1],a[2],a[4],a[5],a[6],a[8],a[9],a[10]),u(o,o),this.rotation.set(t,o[0],o[1],o[2],o[3]);for(var l=0,c=0;c<3;++c)l+=Math.pow(r[c]-e[c],2);this.radius.set(t,.5*Math.log(Math.max(l,1e-6))),this.center.set(t,r[0],r[1],r[2])},h.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},h.setMatrix=function(t,e){var r=this.computedRotation;s(r,e[0],e[1],e[2],e[4],e[5],e[6],e[8],e[9],e[10]),u(r,r),this.rotation.set(t,r[0],r[1],r[2],r[3]);var n=this.computedMatrix;o(n,e);var i=n[15];if(Math.abs(i)>1e-6){var a=n[12]/i,l=n[13]/i,c=n[14]/i;this.recalcMatrix(t);var f=Math.exp(this.computedRadius[0]);this.center.set(t,a-n[2]*f,l-n[6]*f,c-n[10]*f),this.radius.idle(t)}else this.center.idle(t),this.radius.idle(t)},h.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},h.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-1/0,e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},h.getDistanceLimits=function(t){var e=this.radius.bounds;return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},h.toJSON=function(){return this.recalcMatrix(this.lastT()),{center:this.computedCenter.slice(),rotation:this.computedRotation.slice(),distance:Math.log(this.computedRadius[0]),zoomMin:this.radius.bounds[0][0],zoomMax:this.radius.bounds[1][0]}},h.fromJSON=function(t){var e=this.lastT(),r=t.center;r&&this.center.set(e,r[0],r[1],r[2]);var n=t.rotation;n&&this.rotation.set(e,n[0],n[1],n[2],n[3]);var i=t.distance;i&&i>0&&this.radius.set(e,Math.log(i)),this.setDistanceLimits(t.zoomMin,t.zoomMax)}},{\"./lib/quatFromFrame\":500,\"filtered-vector\":242,\"gl-mat4/fromQuat\":282,\"gl-mat4/invert\":293,\"gl-mat4/lookAt\":294}],502:[function(t,e,r){\n",
       "/*!\n",
       " * pad-left <https://github.com/jonschlinkert/pad-left>\n",
       " *\n",
       " * Copyright (c) 2014-2015, Jon Schlinkert.\n",
       " * Licensed under the MIT license.\n",
       " */\n",
       "\"use strict\";var n=t(\"repeat-string\");e.exports=function(t,e,r){return n(r=\"undefined\"!=typeof r?r+\"\":\" \",e)+t}},{\"repeat-string\":541}],503:[function(t,e,r){\"use strict\";function n(t,e){if(\"string\"!=typeof t)return[t];var r=[t];\"string\"==typeof e||Array.isArray(e)?e={brackets:e}:e||(e={});var n=e.brackets?Array.isArray(e.brackets)?e.brackets:[e.brackets]:[\"{}\",\"[]\",\"()\"],i=e.escape||\"___\",a=!!e.flat;n.forEach((function(t){var e=new RegExp([\"\\\\\",t[0],\"[^\\\\\",t[0],\"\\\\\",t[1],\"]*\\\\\",t[1]].join(\"\")),n=[];function a(e,a,o){var s=r.push(e.slice(t[0].length,-t[1].length))-1;return n.push(s),i+s+i}r.forEach((function(t,n){for(var i,o=0;t!=i;)if(i=t,t=t.replace(e,a),o++>1e4)throw Error(\"References have circular dependency. Please, check them.\");r[n]=t})),n=n.reverse(),r=r.map((function(e){return n.forEach((function(r){e=e.replace(new RegExp(\"(\\\\\"+i+r+\"\\\\\"+i+\")\",\"g\"),t[0]+\"$1\"+t[1])})),e}))}));var o=new RegExp(\"\\\\\"+i+\"([0-9]+)\\\\\"+i);return a?r:function t(e,r,n){for(var i,a=[],s=0;i=o.exec(e);){if(s++>1e4)throw Error(\"Circular references in parenthesis\");a.push(e.slice(0,i.index)),a.push(t(r[i[1]],r)),e=e.slice(i.index+i[0].length)}return a.push(e),a}(r[0],r)}function i(t,e){if(e&&e.flat){var r,n=e&&e.escape||\"___\",i=t[0];if(!i)return\"\";for(var a=new RegExp(\"\\\\\"+n+\"([0-9]+)\\\\\"+n),o=0;i!=r;){if(o++>1e4)throw Error(\"Circular references in \"+t);r=i,i=i.replace(a,s)}return i}return t.reduce((function t(e,r){return Array.isArray(r)&&(r=r.reduce(t,\"\")),e+r}),\"\");function s(e,r){if(null==t[r])throw Error(\"Reference \"+r+\"is undefined\");return t[r]}}function a(t,e){return Array.isArray(t)?i(t,e):n(t,e)}a.parse=n,a.stringify=i,e.exports=a},{}],504:[function(t,e,r){\"use strict\";var n=t(\"pick-by-alias\");e.exports=function(t){var e;arguments.length>1&&(t=arguments);\"string\"==typeof t?t=t.split(/\\s/).map(parseFloat):\"number\"==typeof t&&(t=[t]);t.length&&\"number\"==typeof t[0]?e=1===t.length?{width:t[0],height:t[0],x:0,y:0}:2===t.length?{width:t[0],height:t[1],x:0,y:0}:{x:t[0],y:t[1],width:t[2]-t[0]||0,height:t[3]-t[1]||0}:t&&(t=n(t,{left:\"x l left Left\",top:\"y t top Top\",width:\"w width W Width\",height:\"h height W Width\",bottom:\"b bottom Bottom\",right:\"r right Right\"}),e={x:t.left||0,y:t.top||0},null==t.width?t.right?e.width=t.right-e.x:e.width=0:e.width=t.width,null==t.height?t.bottom?e.height=t.bottom-e.y:e.height=0:e.height=t.height);return e}},{\"pick-by-alias\":511}],505:[function(t,e,r){e.exports=function(t){var e=[];return t.replace(i,(function(t,r,i){var o=r.toLowerCase();for(i=function(t){var e=t.match(a);return e?e.map(Number):[]}(i),\"m\"==o&&i.length>2&&(e.push([r].concat(i.splice(0,2))),o=\"l\",r=\"m\"==r?\"l\":\"L\");;){if(i.length==n[o])return i.unshift(r),e.push(i);if(i.length<n[o])throw new Error(\"malformed path data\");e.push([r].concat(i.splice(0,n[o])))}})),e};var n={a:7,c:6,h:1,l:2,m:2,q:4,s:4,t:2,v:1,z:0},i=/([astvzqmhlc])([^astvzqmhlc]*)/gi;var a=/-?[0-9]*\\.?[0-9]+(?:e[-+]?\\d+)?/gi},{}],506:[function(t,e,r){e.exports=function(t,e){e||(e=[0,\"\"]),t=String(t);var r=parseFloat(t,10);return e[0]=r,e[1]=t.match(/[\\d.\\-\\+]*\\s*(.*)/)[1]||\"\",e}},{}],507:[function(t,e,r){(function(t){(function(){\"use strict\";function r(t){if(\"string\"!=typeof t)throw new TypeError(\"Path must be a string. Received \"+JSON.stringify(t))}function n(t,e){for(var r,n=\"\",i=0,a=-1,o=0,s=0;s<=t.length;++s){if(s<t.length)r=t.charCodeAt(s);else{if(47===r)break;r=47}if(47===r){if(a===s-1||1===o);else if(a!==s-1&&2===o){if(n.length<2||2!==i||46!==n.charCodeAt(n.length-1)||46!==n.charCodeAt(n.length-2))if(n.length>2){var l=n.lastIndexOf(\"/\");if(l!==n.length-1){-1===l?(n=\"\",i=0):i=(n=n.slice(0,l)).length-1-n.lastIndexOf(\"/\"),a=s,o=0;continue}}else if(2===n.length||1===n.length){n=\"\",i=0,a=s,o=0;continue}e&&(n.length>0?n+=\"/..\":n=\"..\",i=2)}else n.length>0?n+=\"/\"+t.slice(a+1,s):n=t.slice(a+1,s),i=s-a-1;a=s,o=0}else 46===r&&-1!==o?++o:o=-1}return n}var i={resolve:function(){for(var e,i=\"\",a=!1,o=arguments.length-1;o>=-1&&!a;o--){var s;o>=0?s=arguments[o]:(void 0===e&&(e=t.cwd()),s=e),r(s),0!==s.length&&(i=s+\"/\"+i,a=47===s.charCodeAt(0))}return i=n(i,!a),a?i.length>0?\"/\"+i:\"/\":i.length>0?i:\".\"},normalize:function(t){if(r(t),0===t.length)return\".\";var e=47===t.charCodeAt(0),i=47===t.charCodeAt(t.length-1);return 0!==(t=n(t,!e)).length||e||(t=\".\"),t.length>0&&i&&(t+=\"/\"),e?\"/\"+t:t},isAbsolute:function(t){return r(t),t.length>0&&47===t.charCodeAt(0)},join:function(){if(0===arguments.length)return\".\";for(var t,e=0;e<arguments.length;++e){var n=arguments[e];r(n),n.length>0&&(void 0===t?t=n:t+=\"/\"+n)}return void 0===t?\".\":i.normalize(t)},relative:function(t,e){if(r(t),r(e),t===e)return\"\";if((t=i.resolve(t))===(e=i.resolve(e)))return\"\";for(var n=1;n<t.length&&47===t.charCodeAt(n);++n);for(var a=t.length,o=a-n,s=1;s<e.length&&47===e.charCodeAt(s);++s);for(var l=e.length-s,c=o<l?o:l,u=-1,f=0;f<=c;++f){if(f===c){if(l>c){if(47===e.charCodeAt(s+f))return e.slice(s+f+1);if(0===f)return e.slice(s+f)}else o>c&&(47===t.charCodeAt(n+f)?u=f:0===f&&(u=0));break}var h=t.charCodeAt(n+f);if(h!==e.charCodeAt(s+f))break;47===h&&(u=f)}var p=\"\";for(f=n+u+1;f<=a;++f)f!==a&&47!==t.charCodeAt(f)||(0===p.length?p+=\"..\":p+=\"/..\");return p.length>0?p+e.slice(s+u):(s+=u,47===e.charCodeAt(s)&&++s,e.slice(s))},_makeLong:function(t){return t},dirname:function(t){if(r(t),0===t.length)return\".\";for(var e=t.charCodeAt(0),n=47===e,i=-1,a=!0,o=t.length-1;o>=1;--o)if(47===(e=t.charCodeAt(o))){if(!a){i=o;break}}else a=!1;return-1===i?n?\"/\":\".\":n&&1===i?\"//\":t.slice(0,i)},basename:function(t,e){if(void 0!==e&&\"string\"!=typeof e)throw new TypeError('\"ext\" argument must be a string');r(t);var n,i=0,a=-1,o=!0;if(void 0!==e&&e.length>0&&e.length<=t.length){if(e.length===t.length&&e===t)return\"\";var s=e.length-1,l=-1;for(n=t.length-1;n>=0;--n){var c=t.charCodeAt(n);if(47===c){if(!o){i=n+1;break}}else-1===l&&(o=!1,l=n+1),s>=0&&(c===e.charCodeAt(s)?-1==--s&&(a=n):(s=-1,a=l))}return i===a?a=l:-1===a&&(a=t.length),t.slice(i,a)}for(n=t.length-1;n>=0;--n)if(47===t.charCodeAt(n)){if(!o){i=n+1;break}}else-1===a&&(o=!1,a=n+1);return-1===a?\"\":t.slice(i,a)},extname:function(t){r(t);for(var e=-1,n=0,i=-1,a=!0,o=0,s=t.length-1;s>=0;--s){var l=t.charCodeAt(s);if(47!==l)-1===i&&(a=!1,i=s+1),46===l?-1===e?e=s:1!==o&&(o=1):-1!==e&&(o=-1);else if(!a){n=s+1;break}}return-1===e||-1===i||0===o||1===o&&e===i-1&&e===n+1?\"\":t.slice(e,i)},format:function(t){if(null===t||\"object\"!=typeof t)throw new TypeError('The \"pathObject\" argument must be of type Object. Received type '+typeof t);return function(t,e){var r=e.dir||e.root,n=e.base||(e.name||\"\")+(e.ext||\"\");return r?r===e.root?r+n:r+t+n:n}(\"/\",t)},parse:function(t){r(t);var e={root:\"\",dir:\"\",base:\"\",ext:\"\",name:\"\"};if(0===t.length)return e;var n,i=t.charCodeAt(0),a=47===i;a?(e.root=\"/\",n=1):n=0;for(var o=-1,s=0,l=-1,c=!0,u=t.length-1,f=0;u>=n;--u)if(47!==(i=t.charCodeAt(u)))-1===l&&(c=!1,l=u+1),46===i?-1===o?o=u:1!==f&&(f=1):-1!==o&&(f=-1);else if(!c){s=u+1;break}return-1===o||-1===l||0===f||1===f&&o===l-1&&o===s+1?-1!==l&&(e.base=e.name=0===s&&a?t.slice(1,l):t.slice(s,l)):(0===s&&a?(e.name=t.slice(1,o),e.base=t.slice(1,l)):(e.name=t.slice(s,o),e.base=t.slice(s,l)),e.ext=t.slice(o,l)),s>0?e.dir=t.slice(0,s-1):a&&(e.dir=\"/\"),e},sep:\"/\",delimiter:\":\",win32:null,posix:null};i.posix=i,e.exports=i}).call(this)}).call(this,t(\"_process\"))},{_process:526}],508:[function(t,e,r){(function(t){(function(){(function(){var r,n,i,a,o,s;\"undefined\"!=typeof performance&&null!==performance&&performance.now?e.exports=function(){return performance.now()}:\"undefined\"!=typeof t&&null!==t&&t.hrtime?(e.exports=function(){return(r()-o)/1e6},n=t.hrtime,a=(r=function(){var t;return 1e9*(t=n())[0]+t[1]})(),s=1e9*t.uptime(),o=a-s):Date.now?(e.exports=function(){return Date.now()-i},i=Date.now()):(e.exports=function(){return(new Date).getTime()-i},i=(new Date).getTime())}).call(this)}).call(this)}).call(this,t(\"_process\"))},{_process:526}],509:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.length;if(e<32){for(var r=1,i=0;i<e;++i)for(var a=0;a<i;++a)if(t[i]<t[a])r=-r;else if(t[i]===t[a])return 0;return r}var o=n.mallocUint8(e);for(i=0;i<e;++i)o[i]=0;for(r=1,i=0;i<e;++i)if(!o[i]){var s=1;o[i]=1;for(a=t[i];a!==i;a=t[a]){if(o[a])return n.freeUint8(o),0;s+=1,o[a]=1}1&s||(r=-r)}return n.freeUint8(o),r};var n=t(\"typedarray-pool\")},{\"typedarray-pool\":595}],510:[function(t,e,r){\"use strict\";var n=t(\"typedarray-pool\"),i=t(\"invert-permutation\");r.rank=function(t){var e=t.length;switch(e){case 0:case 1:return 0;case 2:return t[1]}var r,a,o,s=n.mallocUint32(e),l=n.mallocUint32(e),c=0;for(i(t,l),o=0;o<e;++o)s[o]=t[o];for(o=e-1;o>0;--o)a=l[o],r=s[o],s[o]=s[a],s[a]=r,l[o]=l[r],l[r]=a,c=(c+r)*o;return n.freeUint32(l),n.freeUint32(s),c},r.unrank=function(t,e,r){switch(t){case 0:return r||[];case 1:return r?(r[0]=0,r):[0];case 2:return r?(e?(r[0]=0,r[1]=1):(r[0]=1,r[1]=0),r):e?[0,1]:[1,0]}var n,i,a,o=1;for((r=r||new Array(t))[0]=0,a=1;a<t;++a)r[a]=a,o=o*a|0;for(a=t-1;a>0;--a)e=e-(n=e/o|0)*o|0,o=o/a|0,i=0|r[a],r[a]=0|r[n],r[n]=0|i;return r}},{\"invert-permutation\":462,\"typedarray-pool\":595}],511:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n,a,o={};if(\"string\"==typeof e&&(e=i(e)),Array.isArray(e)){var s={};for(a=0;a<e.length;a++)s[e[a]]=!0;e=s}for(n in e)e[n]=i(e[n]);var l={};for(n in e){var c=e[n];if(Array.isArray(c))for(a=0;a<c.length;a++){var u=c[a];if(r&&(l[u]=!0),u in t){if(o[n]=t[u],r)for(var f=a;f<c.length;f++)l[c[f]]=!0;break}}else n in t&&(e[n]&&(o[n]=t[n]),r&&(l[n]=!0))}if(r)for(n in t)l[n]||(o[n]=t[n]);return o};var n={};function i(t){return n[t]?n[t]:(\"string\"==typeof t&&(t=n[t]=t.split(/\\s*,\\s*|\\s+/)),t)}},{}],512:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=0|e.length,i=t.length,a=[new Array(r),new Array(r)],o=0;o<r;++o)a[0][o]=[],a[1][o]=[];for(o=0;o<i;++o){var s=t[o];a[0][s[0]].push(s),a[1][s[1]].push(s)}var l=[];for(o=0;o<r;++o)a[0][o].length+a[1][o].length===0&&l.push([o]);function c(t,e){var r=a[e][t[e]];r.splice(r.indexOf(t),1)}function u(t,r,i){for(var o,s,l,u=0;u<2;++u)if(a[u][r].length>0){o=a[u][r][0],l=u;break}s=o[1^l];for(var f=0;f<2;++f)for(var h=a[f][r],p=0;p<h.length;++p){var d=h[p],g=d[1^f];n(e[t],e[r],e[s],e[g])>0&&(o=d,s=g,l=f)}return i||o&&c(o,l),s}function f(t,r){var i=a[r][t][0],o=[t];c(i,r);for(var s=i[1^r];;){for(;s!==t;)o.push(s),s=u(o[o.length-2],s,!1);if(a[0][t].length+a[1][t].length===0)break;var l=o[o.length-1],f=t,h=o[1],p=u(l,f,!0);if(n(e[l],e[f],e[h],e[p])<0)break;o.push(t),s=u(l,f)}return o}function h(t,e){return e[1]===e[e.length-1]}for(o=0;o<r;++o)for(var p=0;p<2;++p){for(var d=[];a[p][o].length>0;){a[0][o].length;var g=f(o,p);h(0,g)?d.push.apply(d,g):(d.length>0&&l.push(d),d=g)}d.length>0&&l.push(d)}return l};var n=t(\"compare-angle\")},{\"compare-angle\":132}],513:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=n(t,e.length),i=new Array(e.length),a=new Array(e.length),o=[],s=0;s<e.length;++s){var l=r[s].length;a[s]=l,i[s]=!0,l<=1&&o.push(s)}for(;o.length>0;){var c=o.pop();i[c]=!1;var u=r[c];for(s=0;s<u.length;++s){var f=u[s];0==--a[f]&&o.push(f)}}var h=new Array(e.length),p=[];for(s=0;s<e.length;++s)if(i[s]){c=p.length;h[s]=c,p.push(e[s])}else h[s]=-1;var d=[];for(s=0;s<t.length;++s){var g=t[s];i[g[0]]&&i[g[1]]&&d.push([h[g[0]],h[g[1]]])}return[d,p]};var n=t(\"edges-to-adjacency-list\")},{\"edges-to-adjacency-list\":178}],514:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=c(t,e);t=r[0];for(var f=(e=r[1]).length,h=(t.length,n(t,e.length)),p=0;p<f;++p)if(h[p].length%2==1)throw new Error(\"planar-graph-to-polyline: graph must be manifold\");var d=i(t,e);var g=(d=d.filter((function(t){for(var r=t.length,n=[0],i=0;i<r;++i){var a=e[t[i]],l=e[t[(i+1)%r]],c=o(-a[0],a[1]),u=o(-a[0],l[1]),f=o(l[0],a[1]),h=o(l[0],l[1]);n=s(n,s(s(c,u),s(f,h)))}return n[n.length-1]>0}))).length,m=new Array(g),v=new Array(g);for(p=0;p<g;++p){m[p]=p;var y=new Array(g),x=d[p].map((function(t){return e[t]})),b=a([x]),_=0;t:for(var w=0;w<g;++w)if(y[w]=0,p!==w){for(var T=(q=d[w]).length,k=0;k<T;++k){var M=b(e[q[k]]);if(0!==M){M<0&&(y[w]=1,_+=1);continue t}}y[w]=1,_+=1}v[p]=[_,p,y]}v.sort((function(t,e){return e[0]-t[0]}));for(p=0;p<g;++p){var A=(y=v[p])[1],S=y[2];for(w=0;w<g;++w)S[w]&&(m[w]=A)}var E=function(t){for(var e=new Array(t),r=0;r<t;++r)e[r]=[];return e}(g);for(p=0;p<g;++p)E[p].push(m[p]),E[m[p]].push(p);var C={},L=u(f,!1);for(p=0;p<g;++p)for(T=(q=d[p]).length,w=0;w<T;++w){var I=q[w],P=q[(w+1)%T],z=Math.min(I,P)+\":\"+Math.max(I,P);if(z in C){var O=C[z];E[O].push(p),E[p].push(O),L[I]=L[P]=!0}else C[z]=p}function D(t){for(var e=t.length,r=0;r<e;++r)if(!L[t[r]])return!1;return!0}var R=[],F=u(g,-1);for(p=0;p<g;++p)m[p]!==p||D(d[p])?F[p]=-1:(R.push(p),F[p]=0);r=[];for(;R.length>0;){var B=R.pop(),N=E[B];l(N,(function(t,e){return t-e}));var j,U=N.length,V=F[B];if(0===V){var q=d[B];j=[q]}for(p=0;p<U;++p){var H=N[p];if(!(F[H]>=0))if(F[H]=1^V,R.push(H),0===V)D(q=d[H])||(q.reverse(),j.push(q))}0===V&&r.push(j)}return r};var n=t(\"edges-to-adjacency-list\"),i=t(\"planar-dual\"),a=t(\"point-in-big-polygon\"),o=t(\"two-product\"),s=t(\"robust-sum\"),l=t(\"uniq\"),c=t(\"./lib/trim-leaves\");function u(t,e){for(var r=new Array(t),n=0;n<t;++n)r[n]=e;return r}},{\"./lib/trim-leaves\":513,\"edges-to-adjacency-list\":178,\"planar-dual\":512,\"point-in-big-polygon\":516,\"robust-sum\":553,\"two-product\":582,uniq:597}],515:[function(t,e,r){arguments[4][243][0].apply(r,arguments)},{dup:243}],516:[function(t,e,r){e.exports=function(t){for(var e=t.length,r=[],a=[],s=0;s<e;++s)for(var u=t[s],f=u.length,h=f-1,p=0;p<f;h=p++){var d=u[h],g=u[p];d[0]===g[0]?a.push([d,g]):r.push([d,g])}if(0===r.length)return 0===a.length?c:(m=l(a),function(t){return m(t[0],t[1])?0:1});var m;var v=i(r),y=function(t,e){return function(r){var i=o.le(e,r[0]);if(i<0)return 1;var a=t[i];if(!a){if(!(i>0&&e[i]===r[0]))return 1;a=t[i-1]}for(var s=1;a;){var l=a.key,c=n(r,l[0],l[1]);if(l[0][0]<l[1][0])if(c<0)a=a.left;else{if(!(c>0))return 0;s=-1,a=a.right}else if(c>0)a=a.left;else{if(!(c<0))return 0;s=1,a=a.right}}return s}}(v.slabs,v.coordinates);return 0===a.length?y:function(t,e){return function(r){return t(r[0],r[1])?0:e(r)}}(l(a),y)};var n=t(\"robust-orientation\")[3],i=t(\"slab-decomposition\"),a=t(\"interval-tree-1d\"),o=t(\"binary-search-bounds\");function s(){return!0}function l(t){for(var e={},r=0;r<t.length;++r){var n=t[r],i=n[0][0],o=n[0][1],l=n[1][1],c=[Math.min(o,l),Math.max(o,l)];i in e?e[i].push(c):e[i]=[c]}var u={},f=Object.keys(e);for(r=0;r<f.length;++r){var h=e[f[r]];u[f[r]]=a(h)}return function(t){return function(e,r){var n=t[e];return!!n&&!!n.queryPoint(r,s)}}(u)}function c(t){return 1}},{\"binary-search-bounds\":515,\"interval-tree-1d\":460,\"robust-orientation\":548,\"slab-decomposition\":565}],517:[function(t,e,r){\n",
       "/*\n",
       " * @copyright 2016 Sean Connelly (@voidqk), http://syntheti.cc\n",
       " * @license MIT\n",
       " * @preserve Project Home: https://github.com/voidqk/polybooljs\n",
       " */\n",
       "var n,i=t(\"./lib/build-log\"),a=t(\"./lib/epsilon\"),o=t(\"./lib/intersecter\"),s=t(\"./lib/segment-chainer\"),l=t(\"./lib/segment-selector\"),c=t(\"./lib/geojson\"),u=!1,f=a();function h(t,e,r){var i=n.segments(t),a=n.segments(e),o=r(n.combine(i,a));return n.polygon(o)}n={buildLog:function(t){return!0===t?u=i():!1===t&&(u=!1),!1!==u&&u.list},epsilon:function(t){return f.epsilon(t)},segments:function(t){var e=o(!0,f,u);return t.regions.forEach(e.addRegion),{segments:e.calculate(t.inverted),inverted:t.inverted}},combine:function(t,e){return{combined:o(!1,f,u).calculate(t.segments,t.inverted,e.segments,e.inverted),inverted1:t.inverted,inverted2:e.inverted}},selectUnion:function(t){return{segments:l.union(t.combined,u),inverted:t.inverted1||t.inverted2}},selectIntersect:function(t){return{segments:l.intersect(t.combined,u),inverted:t.inverted1&&t.inverted2}},selectDifference:function(t){return{segments:l.difference(t.combined,u),inverted:t.inverted1&&!t.inverted2}},selectDifferenceRev:function(t){return{segments:l.differenceRev(t.combined,u),inverted:!t.inverted1&&t.inverted2}},selectXor:function(t){return{segments:l.xor(t.combined,u),inverted:t.inverted1!==t.inverted2}},polygon:function(t){return{regions:s(t.segments,f,u),inverted:t.inverted}},polygonFromGeoJSON:function(t){return c.toPolygon(n,t)},polygonToGeoJSON:function(t){return c.fromPolygon(n,f,t)},union:function(t,e){return h(t,e,n.selectUnion)},intersect:function(t,e){return h(t,e,n.selectIntersect)},difference:function(t,e){return h(t,e,n.selectDifference)},differenceRev:function(t,e){return h(t,e,n.selectDifferenceRev)},xor:function(t,e){return h(t,e,n.selectXor)}},\"object\"==typeof window&&(window.PolyBool=n),e.exports=n},{\"./lib/build-log\":518,\"./lib/epsilon\":519,\"./lib/geojson\":520,\"./lib/intersecter\":521,\"./lib/segment-chainer\":523,\"./lib/segment-selector\":524}],518:[function(t,e,r){e.exports=function(){var t,e=0,r=!1;function n(e,r){return t.list.push({type:e,data:r?JSON.parse(JSON.stringify(r)):void 0}),t}return t={list:[],segmentId:function(){return e++},checkIntersection:function(t,e){return n(\"check\",{seg1:t,seg2:e})},segmentChop:function(t,e){return n(\"div_seg\",{seg:t,pt:e}),n(\"chop\",{seg:t,pt:e})},statusRemove:function(t){return n(\"pop_seg\",{seg:t})},segmentUpdate:function(t){return n(\"seg_update\",{seg:t})},segmentNew:function(t,e){return n(\"new_seg\",{seg:t,primary:e})},segmentRemove:function(t){return n(\"rem_seg\",{seg:t})},tempStatus:function(t,e,r){return n(\"temp_status\",{seg:t,above:e,below:r})},rewind:function(t){return n(\"rewind\",{seg:t})},status:function(t,e,r){return n(\"status\",{seg:t,above:e,below:r})},vert:function(e){return e===r?t:(r=e,n(\"vert\",{x:e}))},log:function(t){return\"string\"!=typeof t&&(t=JSON.stringify(t,!1,\"  \")),n(\"log\",{txt:t})},reset:function(){return n(\"reset\")},selected:function(t){return n(\"selected\",{segs:t})},chainStart:function(t){return n(\"chain_start\",{seg:t})},chainRemoveHead:function(t,e){return n(\"chain_rem_head\",{index:t,pt:e})},chainRemoveTail:function(t,e){return n(\"chain_rem_tail\",{index:t,pt:e})},chainNew:function(t,e){return n(\"chain_new\",{pt1:t,pt2:e})},chainMatch:function(t){return n(\"chain_match\",{index:t})},chainClose:function(t){return n(\"chain_close\",{index:t})},chainAddHead:function(t,e){return n(\"chain_add_head\",{index:t,pt:e})},chainAddTail:function(t,e){return n(\"chain_add_tail\",{index:t,pt:e})},chainConnect:function(t,e){return n(\"chain_con\",{index1:t,index2:e})},chainReverse:function(t){return n(\"chain_rev\",{index:t})},chainJoin:function(t,e){return n(\"chain_join\",{index1:t,index2:e})},done:function(){return n(\"done\")}}}},{}],519:[function(t,e,r){e.exports=function(t){\"number\"!=typeof t&&(t=1e-10);var e={epsilon:function(e){return\"number\"==typeof e&&(t=e),t},pointAboveOrOnLine:function(e,r,n){var i=r[0],a=r[1],o=n[0],s=n[1],l=e[0];return(o-i)*(e[1]-a)-(s-a)*(l-i)>=-t},pointBetween:function(e,r,n){var i=e[1]-r[1],a=n[0]-r[0],o=e[0]-r[0],s=n[1]-r[1],l=o*a+i*s;return!(l<t)&&!(l-(a*a+s*s)>-t)},pointsSameX:function(e,r){return Math.abs(e[0]-r[0])<t},pointsSameY:function(e,r){return Math.abs(e[1]-r[1])<t},pointsSame:function(t,r){return e.pointsSameX(t,r)&&e.pointsSameY(t,r)},pointsCompare:function(t,r){return e.pointsSameX(t,r)?e.pointsSameY(t,r)?0:t[1]<r[1]?-1:1:t[0]<r[0]?-1:1},pointsCollinear:function(e,r,n){var i=e[0]-r[0],a=e[1]-r[1],o=r[0]-n[0],s=r[1]-n[1];return Math.abs(i*s-o*a)<t},linesIntersect:function(e,r,n,i){var a=r[0]-e[0],o=r[1]-e[1],s=i[0]-n[0],l=i[1]-n[1],c=a*l-o*s;if(Math.abs(c)<t)return!1;var u=e[0]-n[0],f=e[1]-n[1],h=(s*f-l*u)/c,p=(a*f-o*u)/c,d={alongA:0,alongB:0,pt:[e[0]+h*a,e[1]+h*o]};return d.alongA=h<=-t?-2:h<t?-1:h-1<=-t?0:h-1<t?1:2,d.alongB=p<=-t?-2:p<t?-1:p-1<=-t?0:p-1<t?1:2,d},pointInsideRegion:function(e,r){for(var n=e[0],i=e[1],a=r[r.length-1][0],o=r[r.length-1][1],s=!1,l=0;l<r.length;l++){var c=r[l][0],u=r[l][1];u-i>t!=o-i>t&&(a-c)*(i-u)/(o-u)+c-n>t&&(s=!s),a=c,o=u}return s}};return e}},{}],520:[function(t,e,r){var n={toPolygon:function(t,e){function r(e){if(e.length<=0)return t.segments({inverted:!1,regions:[]});function r(e){var r=e.slice(0,e.length-1);return t.segments({inverted:!1,regions:[r]})}for(var n=r(e[0]),i=1;i<e.length;i++)n=t.selectDifference(t.combine(n,r(e[i])));return n}if(\"Polygon\"===e.type)return t.polygon(r(e.coordinates));if(\"MultiPolygon\"===e.type){for(var n=t.segments({inverted:!1,regions:[]}),i=0;i<e.coordinates.length;i++)n=t.selectUnion(t.combine(n,r(e.coordinates[i])));return t.polygon(n)}throw new Error(\"PolyBool: Cannot convert GeoJSON object to PolyBool polygon\")},fromPolygon:function(t,e,r){function n(t,r){return e.pointInsideRegion([.5*(t[0][0]+t[1][0]),.5*(t[0][1]+t[1][1])],r)}function i(t){return{region:t,children:[]}}r=t.polygon(t.segments(r));var a=i(null);function o(t,e){for(var r=0;r<t.children.length;r++){if(n(e,(s=t.children[r]).region))return void o(s,e)}var a=i(e);for(r=0;r<t.children.length;r++){var s;n((s=t.children[r]).region,e)&&(a.children.push(s),t.children.splice(r,1),r--)}t.children.push(a)}for(var s=0;s<r.regions.length;s++){var l=r.regions[s];l.length<3||o(a,l)}function c(t,e){for(var r=0,n=t[t.length-1][0],i=t[t.length-1][1],a=[],o=0;o<t.length;o++){var s=t[o][0],l=t[o][1];a.push([s,l]),r+=l*n-s*i,n=s,i=l}return r<0!==e&&a.reverse(),a.push([a[0][0],a[0][1]]),a}var u=[];function f(t){var e=[c(t.region,!1)];u.push(e);for(var r=0;r<t.children.length;r++)e.push(h(t.children[r]))}function h(t){for(var e=0;e<t.children.length;e++)f(t.children[e]);return c(t.region,!0)}for(s=0;s<a.children.length;s++)f(a.children[s]);return u.length<=0?{type:\"Polygon\",coordinates:[]}:1==u.length?{type:\"Polygon\",coordinates:u[0]}:{type:\"MultiPolygon\",coordinates:u}}};e.exports=n},{}],521:[function(t,e,r){var n=t(\"./linked-list\");e.exports=function(t,e,r){function i(t,e,n){return{id:r?r.segmentId():-1,start:t,end:e,myFill:{above:n.myFill.above,below:n.myFill.below},otherFill:null}}var a=n.create();function o(t,r){a.insertBefore(t,(function(n){return function(t,r,n,i,a,o){var s=e.pointsCompare(r,a);return 0!==s?s:e.pointsSame(n,o)?0:t!==i?t?1:-1:e.pointAboveOrOnLine(n,i?a:o,i?o:a)?1:-1}(t.isStart,t.pt,r,n.isStart,n.pt,n.other.pt)<0}))}function s(t,e){var r=function(t,e){var r=n.node({isStart:!0,pt:t.start,seg:t,primary:e,other:null,status:null});return o(r,t.end),r}(t,e);return function(t,e,r){var i=n.node({isStart:!1,pt:e.end,seg:e,primary:r,other:t,status:null});t.other=i,o(i,t.pt)}(r,t,e),r}function l(t,e){var n=i(e,t.seg.end,t.seg);return function(t,e){r&&r.segmentChop(t.seg,e),t.other.remove(),t.seg.end=e,t.other.pt=e,o(t.other,t.pt)}(t,e),s(n,t.primary)}function c(i,o){var s=n.create();function c(t){return s.findTransition((function(r){var n,i,a,o,s,l;return(n=t,i=r.ev,a=n.seg.start,o=n.seg.end,s=i.seg.start,l=i.seg.end,e.pointsCollinear(a,s,l)?e.pointsCollinear(o,s,l)||e.pointAboveOrOnLine(o,s,l)?1:-1:e.pointAboveOrOnLine(a,s,l)?1:-1)>0}))}function u(t,n){var i=t.seg,a=n.seg,o=i.start,s=i.end,c=a.start,u=a.end;r&&r.checkIntersection(i,a);var f=e.linesIntersect(o,s,c,u);if(!1===f){if(!e.pointsCollinear(o,s,c))return!1;if(e.pointsSame(o,u)||e.pointsSame(s,c))return!1;var h=e.pointsSame(o,c),p=e.pointsSame(s,u);if(h&&p)return n;var d=!h&&e.pointBetween(o,c,u),g=!p&&e.pointBetween(s,c,u);if(h)return g?l(n,s):l(t,u),n;d&&(p||(g?l(n,s):l(t,u)),l(n,o))}else 0===f.alongA&&(-1===f.alongB?l(t,c):0===f.alongB?l(t,f.pt):1===f.alongB&&l(t,u)),0===f.alongB&&(-1===f.alongA?l(n,o):0===f.alongA?l(n,f.pt):1===f.alongA&&l(n,s));return!1}for(var f=[];!a.isEmpty();){var h=a.getHead();if(r&&r.vert(h.pt[0]),h.isStart){r&&r.segmentNew(h.seg,h.primary);var p=c(h),d=p.before?p.before.ev:null,g=p.after?p.after.ev:null;function m(){if(d){var t=u(h,d);if(t)return t}return!!g&&u(h,g)}r&&r.tempStatus(h.seg,!!d&&d.seg,!!g&&g.seg);var v,y=m();if(y){var x;if(t)(x=null===h.seg.myFill.below||h.seg.myFill.above!==h.seg.myFill.below)&&(y.seg.myFill.above=!y.seg.myFill.above);else y.seg.otherFill=h.seg.myFill;r&&r.segmentUpdate(y.seg),h.other.remove(),h.remove()}if(a.getHead()!==h){r&&r.rewind(h.seg);continue}if(t)x=null===h.seg.myFill.below||h.seg.myFill.above!==h.seg.myFill.below,h.seg.myFill.below=g?g.seg.myFill.above:i,h.seg.myFill.above=x?!h.seg.myFill.below:h.seg.myFill.below;else if(null===h.seg.otherFill)v=g?h.primary===g.primary?g.seg.otherFill.above:g.seg.myFill.above:h.primary?o:i,h.seg.otherFill={above:v,below:v};r&&r.status(h.seg,!!d&&d.seg,!!g&&g.seg),h.other.status=p.insert(n.node({ev:h}))}else{var b=h.status;if(null===b)throw new Error(\"PolyBool: Zero-length segment detected; your epsilon is probably too small or too large\");if(s.exists(b.prev)&&s.exists(b.next)&&u(b.prev.ev,b.next.ev),r&&r.statusRemove(b.ev.seg),b.remove(),!h.primary){var _=h.seg.myFill;h.seg.myFill=h.seg.otherFill,h.seg.otherFill=_}f.push(h.seg)}a.getHead().remove()}return r&&r.done(),f}return t?{addRegion:function(t){for(var n,i,a,o=t[t.length-1],l=0;l<t.length;l++){n=o,o=t[l];var c=e.pointsCompare(n,o);0!==c&&s((i=c<0?n:o,a=c<0?o:n,{id:r?r.segmentId():-1,start:i,end:a,myFill:{above:null,below:null},otherFill:null}),!0)}},calculate:function(t){return c(t,!1)}}:{calculate:function(t,e,r,n){return t.forEach((function(t){s(i(t.start,t.end,t),!0)})),r.forEach((function(t){s(i(t.start,t.end,t),!1)})),c(e,n)}}}},{\"./linked-list\":522}],522:[function(t,e,r){e.exports={create:function(){var t={root:{root:!0,next:null},exists:function(e){return null!==e&&e!==t.root},isEmpty:function(){return null===t.root.next},getHead:function(){return t.root.next},insertBefore:function(e,r){for(var n=t.root,i=t.root.next;null!==i;){if(r(i))return e.prev=i.prev,e.next=i,i.prev.next=e,void(i.prev=e);n=i,i=i.next}n.next=e,e.prev=n,e.next=null},findTransition:function(e){for(var r=t.root,n=t.root.next;null!==n&&!e(n);)r=n,n=n.next;return{before:r===t.root?null:r,after:n,insert:function(t){return t.prev=r,t.next=n,r.next=t,null!==n&&(n.prev=t),t}}}};return t},node:function(t){return t.prev=null,t.next=null,t.remove=function(){t.prev.next=t.next,t.next&&(t.next.prev=t.prev),t.prev=null,t.next=null},t}}},{}],523:[function(t,e,r){e.exports=function(t,e,r){var n=[],i=[];return t.forEach((function(t){var a=t.start,o=t.end;if(e.pointsSame(a,o))console.warn(\"PolyBool: Warning: Zero-length segment detected; your epsilon is probably too small or too large\");else{r&&r.chainStart(t);for(var s={index:0,matches_head:!1,matches_pt1:!1},l={index:0,matches_head:!1,matches_pt1:!1},c=s,u=0;u<n.length;u++){var f=(m=n[u])[0],h=(m[1],m[m.length-1]);m[m.length-2];if(e.pointsSame(f,a)){if(k(u,!0,!0))break}else if(e.pointsSame(f,o)){if(k(u,!0,!1))break}else if(e.pointsSame(h,a)){if(k(u,!1,!0))break}else if(e.pointsSame(h,o)&&k(u,!1,!1))break}if(c===s)return n.push([a,o]),void(r&&r.chainNew(a,o));if(c===l){r&&r.chainMatch(s.index);var p=s.index,d=s.matches_pt1?o:a,g=s.matches_head,m=n[p],v=g?m[0]:m[m.length-1],y=g?m[1]:m[m.length-2],x=g?m[m.length-1]:m[0],b=g?m[m.length-2]:m[1];return e.pointsCollinear(y,v,d)&&(g?(r&&r.chainRemoveHead(s.index,d),m.shift()):(r&&r.chainRemoveTail(s.index,d),m.pop()),v=y),e.pointsSame(x,d)?(n.splice(p,1),e.pointsCollinear(b,x,v)&&(g?(r&&r.chainRemoveTail(s.index,v),m.pop()):(r&&r.chainRemoveHead(s.index,v),m.shift())),r&&r.chainClose(s.index),void i.push(m)):void(g?(r&&r.chainAddHead(s.index,d),m.unshift(d)):(r&&r.chainAddTail(s.index,d),m.push(d)))}var _=s.index,w=l.index;r&&r.chainConnect(_,w);var T=n[_].length<n[w].length;s.matches_head?l.matches_head?T?(M(_),A(_,w)):(M(w),A(w,_)):A(w,_):l.matches_head?A(_,w):T?(M(_),A(w,_)):(M(w),A(_,w))}function k(t,e,r){return c.index=t,c.matches_head=e,c.matches_pt1=r,c===s?(c=l,!1):(c=null,!0)}function M(t){r&&r.chainReverse(t),n[t].reverse()}function A(t,i){var a=n[t],o=n[i],s=a[a.length-1],l=a[a.length-2],c=o[0],u=o[1];e.pointsCollinear(l,s,c)&&(r&&r.chainRemoveTail(t,s),a.pop(),s=l),e.pointsCollinear(s,c,u)&&(r&&r.chainRemoveHead(i,c),o.shift()),r&&r.chainJoin(t,i),n[t]=a.concat(o),n.splice(i,1)}})),i}},{}],524:[function(t,e,r){function n(t,e,r){var n=[];return t.forEach((function(t){var i=(t.myFill.above?8:0)+(t.myFill.below?4:0)+(t.otherFill&&t.otherFill.above?2:0)+(t.otherFill&&t.otherFill.below?1:0);0!==e[i]&&n.push({id:r?r.segmentId():-1,start:t.start,end:t.end,myFill:{above:1===e[i],below:2===e[i]},otherFill:null})})),r&&r.selected(n),n}var i={union:function(t,e){return n(t,[0,2,1,0,2,2,0,0,1,0,1,0,0,0,0,0],e)},intersect:function(t,e){return n(t,[0,0,0,0,0,2,0,2,0,0,1,1,0,2,1,0],e)},difference:function(t,e){return n(t,[0,0,0,0,2,0,2,0,1,1,0,0,0,1,2,0],e)},differenceRev:function(t,e){return n(t,[0,2,1,0,0,0,1,1,0,2,0,2,0,0,0,0],e)},xor:function(t,e){return n(t,[0,2,1,0,2,0,0,1,1,0,0,2,0,1,2,0],e)}};e.exports=i},{}],525:[function(t,e,r){\"use strict\";var n=new Float64Array(4),i=new Float64Array(4),a=new Float64Array(4);e.exports=function(t,e,r,o,s){n.length<o.length&&(n=new Float64Array(o.length),i=new Float64Array(o.length),a=new Float64Array(o.length));for(var l=0;l<o.length;++l)n[l]=t[l]-o[l],i[l]=e[l]-t[l],a[l]=r[l]-t[l];var c=0,u=0,f=0,h=0,p=0,d=0;for(l=0;l<o.length;++l){var g=i[l],m=a[l],v=n[l];c+=g*g,u+=g*m,f+=m*m,h+=v*g,p+=v*m,d+=v*v}var y,x,b,_,w,T=Math.abs(c*f-u*u),k=u*p-f*h,M=u*h-c*p;if(k+M<=T)if(k<0)M<0&&h<0?(M=0,-h>=c?(k=1,y=c+2*h+d):y=h*(k=-h/c)+d):(k=0,p>=0?(M=0,y=d):-p>=f?(M=1,y=f+2*p+d):y=p*(M=-p/f)+d);else if(M<0)M=0,h>=0?(k=0,y=d):-h>=c?(k=1,y=c+2*h+d):y=h*(k=-h/c)+d;else{var A=1/T;y=(k*=A)*(c*k+u*(M*=A)+2*h)+M*(u*k+f*M+2*p)+d}else k<0?(b=f+p)>(x=u+h)?(_=b-x)>=(w=c-2*u+f)?(k=1,M=0,y=c+2*h+d):y=(k=_/w)*(c*k+u*(M=1-k)+2*h)+M*(u*k+f*M+2*p)+d:(k=0,b<=0?(M=1,y=f+2*p+d):p>=0?(M=0,y=d):y=p*(M=-p/f)+d):M<0?(b=c+h)>(x=u+p)?(_=b-x)>=(w=c-2*u+f)?(M=1,k=0,y=f+2*p+d):y=(k=1-(M=_/w))*(c*k+u*M+2*h)+M*(u*k+f*M+2*p)+d:(M=0,b<=0?(k=1,y=c+2*h+d):h>=0?(k=0,y=d):y=h*(k=-h/c)+d):(_=f+p-u-h)<=0?(k=0,M=1,y=f+2*p+d):_>=(w=c-2*u+f)?(k=1,M=0,y=c+2*h+d):y=(k=_/w)*(c*k+u*(M=1-k)+2*h)+M*(u*k+f*M+2*p)+d;var S=1-k-M;for(l=0;l<o.length;++l)s[l]=S*t[l]+k*e[l]+M*r[l];return y<0?0:y}},{}],526:[function(t,e,r){var n,i,a=e.exports={};function o(){throw new Error(\"setTimeout has not been defined\")}function s(){throw new Error(\"clearTimeout has not been defined\")}function l(t){if(n===setTimeout)return setTimeout(t,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n=\"function\"==typeof setTimeout?setTimeout:o}catch(t){n=o}try{i=\"function\"==typeof clearTimeout?clearTimeout:s}catch(t){i=s}}();var c,u=[],f=!1,h=-1;function p(){f&&c&&(f=!1,c.length?u=c.concat(u):h=-1,u.length&&d())}function d(){if(!f){var t=l(p);f=!0;for(var e=u.length;e;){for(c=u,u=[];++h<e;)c&&c[h].run();h=-1,e=u.length}c=null,f=!1,function(t){if(i===clearTimeout)return clearTimeout(t);if((i===s||!i)&&clearTimeout)return i=clearTimeout,clearTimeout(t);try{i(t)}catch(e){try{return i.call(null,t)}catch(e){return i.call(this,t)}}}(t)}}function g(t,e){this.fun=t,this.array=e}function m(){}a.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var r=1;r<arguments.length;r++)e[r-1]=arguments[r];u.push(new g(t,e)),1!==u.length||f||l(d)},g.prototype.run=function(){this.fun.apply(null,this.array)},a.title=\"browser\",a.browser=!0,a.env={},a.argv=[],a.version=\"\",a.versions={},a.on=m,a.addListener=m,a.once=m,a.off=m,a.removeListener=m,a.removeAllListeners=m,a.emit=m,a.prependListener=m,a.prependOnceListener=m,a.listeners=function(t){return[]},a.binding=function(t){throw new Error(\"process.binding is not supported\")},a.cwd=function(){return\"/\"},a.chdir=function(t){throw new Error(\"process.chdir is not supported\")},a.umask=function(){return 0}},{}],527:[function(t,e,r){e.exports=t(\"gl-quat/slerp\")},{\"gl-quat/slerp\":325}],528:[function(t,e,r){(function(r){(function(){for(var n=t(\"performance-now\"),i=\"undefined\"==typeof window?r:window,a=[\"moz\",\"webkit\"],o=\"AnimationFrame\",s=i[\"request\"+o],l=i[\"cancel\"+o]||i[\"cancelRequest\"+o],c=0;!s&&c<a.length;c++)s=i[a[c]+\"Request\"+o],l=i[a[c]+\"Cancel\"+o]||i[a[c]+\"CancelRequest\"+o];if(!s||!l){var u=0,f=0,h=[];s=function(t){if(0===h.length){var e=n(),r=Math.max(0,1e3/60-(e-u));u=r+e,setTimeout((function(){var t=h.slice(0);h.length=0;for(var e=0;e<t.length;e++)if(!t[e].cancelled)try{t[e].callback(u)}catch(t){setTimeout((function(){throw t}),0)}}),Math.round(r))}return h.push({handle:++f,callback:t,cancelled:!1}),f},l=function(t){for(var e=0;e<h.length;e++)h[e].handle===t&&(h[e].cancelled=!0)}}e.exports=function(t){return s.call(i,t)},e.exports.cancel=function(){l.apply(i,arguments)},e.exports.polyfill=function(t){t||(t=i),t.requestAnimationFrame=s,t.cancelAnimationFrame=l}}).call(this)}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"performance-now\":508}],529:[function(t,e,r){\"use strict\";var n=t(\"big-rat/add\");e.exports=function(t,e){for(var r=t.length,i=new Array(r),a=0;a<r;++a)i[a]=n(t[a],e[a]);return i}},{\"big-rat/add\":80}],530:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=new Array(t.length),r=0;r<t.length;++r)e[r]=n(t[r]);return e};var n=t(\"big-rat\")},{\"big-rat\":83}],531:[function(t,e,r){\"use strict\";var n=t(\"big-rat\"),i=t(\"big-rat/mul\");e.exports=function(t,e){for(var r=n(e),a=t.length,o=new Array(a),s=0;s<a;++s)o[s]=i(t[s],r);return o}},{\"big-rat\":83,\"big-rat/mul\":92}],532:[function(t,e,r){\"use strict\";var n=t(\"big-rat/sub\");e.exports=function(t,e){for(var r=t.length,i=new Array(r),a=0;a<r;++a)i[a]=n(t[a],e[a]);return i}},{\"big-rat/sub\":94}],533:[function(t,e,r){\"use strict\";var n=t(\"compare-cell\"),i=t(\"compare-oriented-cell\"),a=t(\"cell-orientation\");e.exports=function(t){t.sort(i);for(var e=t.length,r=0,o=0;o<e;++o){var s=t[o],l=a(s);if(0!==l){if(r>0){var c=t[r-1];if(0===n(s,c)&&a(c)!==l){r-=1;continue}}t[r++]=s}}return t.length=r,t}},{\"cell-orientation\":117,\"compare-cell\":133,\"compare-oriented-cell\":134}],534:[function(t,e,r){\"use strict\";var n=t(\"array-bounds\"),i=t(\"color-normalize\"),a=t(\"update-diff\"),o=t(\"pick-by-alias\"),s=t(\"object-assign\"),l=t(\"flatten-vertex-data\"),c=t(\"to-float32\"),u=c.float32,f=c.fract32;e.exports=function(t,e){\"function\"==typeof t?(e||(e={}),e.regl=t):e=t;e.length&&(e.positions=e);if(!(t=e.regl).hasExtension(\"ANGLE_instanced_arrays\"))throw Error(\"regl-error2d: `ANGLE_instanced_arrays` extension should be enabled\");var r,c,p,d,g,m,v=t._gl,y={color:\"black\",capSize:5,lineWidth:1,opacity:1,viewport:null,range:null,offset:0,count:0,bounds:null,positions:[],errors:[]},x=[];return d=t.buffer({usage:\"dynamic\",type:\"uint8\",data:new Uint8Array(0)}),c=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)}),p=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)}),g=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)}),m=t.buffer({usage:\"static\",type:\"float\",data:h}),T(e),r=t({vert:\"\\n\\t\\tprecision highp float;\\n\\n\\t\\tattribute vec2 position, positionFract;\\n\\t\\tattribute vec4 error;\\n\\t\\tattribute vec4 color;\\n\\n\\t\\tattribute vec2 direction, lineOffset, capOffset;\\n\\n\\t\\tuniform vec4 viewport;\\n\\t\\tuniform float lineWidth, capSize;\\n\\t\\tuniform vec2 scale, scaleFract, translate, translateFract;\\n\\n\\t\\tvarying vec4 fragColor;\\n\\n\\t\\tvoid main() {\\n\\t\\t\\tfragColor = color / 255.;\\n\\n\\t\\t\\tvec2 pixelOffset = lineWidth * lineOffset + (capSize + lineWidth) * capOffset;\\n\\n\\t\\t\\tvec2 dxy = -step(.5, direction.xy) * error.xz + step(direction.xy, vec2(-.5)) * error.yw;\\n\\n\\t\\t\\tvec2 position = position + dxy;\\n\\n\\t\\t\\tvec2 pos = (position + translate) * scale\\n\\t\\t\\t\\t+ (positionFract + translateFract) * scale\\n\\t\\t\\t\\t+ (position + translate) * scaleFract\\n\\t\\t\\t\\t+ (positionFract + translateFract) * scaleFract;\\n\\n\\t\\t\\tpos += pixelOffset / viewport.zw;\\n\\n\\t\\t\\tgl_Position = vec4(pos * 2. - 1., 0, 1);\\n\\t\\t}\\n\\t\\t\",frag:\"\\n\\t\\tprecision highp float;\\n\\n\\t\\tvarying vec4 fragColor;\\n\\n\\t\\tuniform float opacity;\\n\\n\\t\\tvoid main() {\\n\\t\\t\\tgl_FragColor = fragColor;\\n\\t\\t\\tgl_FragColor.a *= opacity;\\n\\t\\t}\\n\\t\\t\",uniforms:{range:t.prop(\"range\"),lineWidth:t.prop(\"lineWidth\"),capSize:t.prop(\"capSize\"),opacity:t.prop(\"opacity\"),scale:t.prop(\"scale\"),translate:t.prop(\"translate\"),scaleFract:t.prop(\"scaleFract\"),translateFract:t.prop(\"translateFract\"),viewport:function(t,e){return[e.viewport.x,e.viewport.y,t.viewportWidth,t.viewportHeight]}},attributes:{color:{buffer:d,offset:function(t,e){return 4*e.offset},divisor:1},position:{buffer:c,offset:function(t,e){return 8*e.offset},divisor:1},positionFract:{buffer:p,offset:function(t,e){return 8*e.offset},divisor:1},error:{buffer:g,offset:function(t,e){return 16*e.offset},divisor:1},direction:{buffer:m,stride:24,offset:0},lineOffset:{buffer:m,stride:24,offset:8},capOffset:{buffer:m,stride:24,offset:16}},primitive:\"triangles\",blend:{enable:!0,color:[0,0,0,0],equation:{rgb:\"add\",alpha:\"add\"},func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},depth:{enable:!1},scissor:{enable:!0,box:t.prop(\"viewport\")},viewport:t.prop(\"viewport\"),stencil:!1,instances:t.prop(\"count\"),count:h.length}),s(b,{update:T,draw:_,destroy:k,regl:t,gl:v,canvas:v.canvas,groups:x}),b;function b(t){t?T(t):null===t&&k(),_()}function _(e){if(\"number\"==typeof e)return w(e);e&&!Array.isArray(e)&&(e=[e]),t._refresh(),x.forEach((function(t,r){t&&(e&&(e[r]?t.draw=!0:t.draw=!1),t.draw?w(r):t.draw=!0)}))}function w(t){\"number\"==typeof t&&(t=x[t]),null!=t&&t&&t.count&&t.color&&t.opacity&&t.positions&&t.positions.length>1&&(t.scaleRatio=[t.scale[0]*t.viewport.width,t.scale[1]*t.viewport.height],r(t),t.after&&t.after(t))}function T(t){if(t){null!=t.length?\"number\"==typeof t[0]&&(t=[{positions:t}]):Array.isArray(t)||(t=[t]);var e=0,r=0;if(b.groups=x=t.map((function(t,c){var u=x[c];return t?(\"function\"==typeof t?t={after:t}:\"number\"==typeof t[0]&&(t={positions:t}),t=o(t,{color:\"color colors fill\",capSize:\"capSize cap capsize cap-size\",lineWidth:\"lineWidth line-width width line thickness\",opacity:\"opacity alpha\",range:\"range dataBox\",viewport:\"viewport viewBox\",errors:\"errors error\",positions:\"positions position data points\"}),u||(x[c]=u={id:c,scale:null,translate:null,scaleFract:null,translateFract:null,draw:!0},t=s({},y,t)),a(u,t,[{lineWidth:function(t){return.5*+t},capSize:function(t){return.5*+t},opacity:parseFloat,errors:function(t){return t=l(t),r+=t.length,t},positions:function(t,r){return t=l(t,\"float64\"),r.count=Math.floor(t.length/2),r.bounds=n(t,2),r.offset=e,e+=r.count,t}},{color:function(t,e){var r=e.count;if(t||(t=\"transparent\"),!Array.isArray(t)||\"number\"==typeof t[0]){var n=t;t=Array(r);for(var a=0;a<r;a++)t[a]=n}if(t.length<r)throw Error(\"Not enough colors\");for(var o=new Uint8Array(4*r),s=0;s<r;s++){var l=i(t[s],\"uint8\");o.set(l,4*s)}return o},range:function(t,e,r){var n=e.bounds;return t||(t=n),e.scale=[1/(t[2]-t[0]),1/(t[3]-t[1])],e.translate=[-t[0],-t[1]],e.scaleFract=f(e.scale),e.translateFract=f(e.translate),t},viewport:function(t){var e;return Array.isArray(t)?e={x:t[0],y:t[1],width:t[2]-t[0],height:t[3]-t[1]}:t?(e={x:t.x||t.left||0,y:t.y||t.top||0},t.right?e.width=t.right-e.x:e.width=t.w||t.width||0,t.bottom?e.height=t.bottom-e.y:e.height=t.h||t.height||0):e={x:0,y:0,width:v.drawingBufferWidth,height:v.drawingBufferHeight},e}}]),u):u})),e||r){var h=x.reduce((function(t,e,r){return t+(e?e.count:0)}),0),m=new Float64Array(2*h),_=new Uint8Array(4*h),w=new Float32Array(4*h);x.forEach((function(t,e){if(t){var r=t.positions,n=t.count,i=t.offset,a=t.color,o=t.errors;n&&(_.set(a,4*i),w.set(o,4*i),m.set(r,2*i))}})),c(u(m)),p(f(m)),d(_),g(w)}}}function k(){c.destroy(),p.destroy(),d.destroy(),g.destroy(),m.destroy()}};var h=[[1,0,0,1,0,0],[1,0,0,-1,0,0],[-1,0,0,-1,0,0],[-1,0,0,-1,0,0],[-1,0,0,1,0,0],[1,0,0,1,0,0],[1,0,-1,0,0,1],[1,0,-1,0,0,-1],[1,0,1,0,0,-1],[1,0,1,0,0,-1],[1,0,1,0,0,1],[1,0,-1,0,0,1],[-1,0,-1,0,0,1],[-1,0,-1,0,0,-1],[-1,0,1,0,0,-1],[-1,0,1,0,0,-1],[-1,0,1,0,0,1],[-1,0,-1,0,0,1],[0,1,1,0,0,0],[0,1,-1,0,0,0],[0,-1,-1,0,0,0],[0,-1,-1,0,0,0],[0,1,1,0,0,0],[0,-1,1,0,0,0],[0,1,0,-1,1,0],[0,1,0,-1,-1,0],[0,1,0,1,-1,0],[0,1,0,1,1,0],[0,1,0,-1,1,0],[0,1,0,1,-1,0],[0,-1,0,-1,1,0],[0,-1,0,-1,-1,0],[0,-1,0,1,-1,0],[0,-1,0,1,1,0],[0,-1,0,-1,1,0],[0,-1,0,1,-1,0]]},{\"array-bounds\":70,\"color-normalize\":125,\"flatten-vertex-data\":244,\"object-assign\":499,\"pick-by-alias\":511,\"to-float32\":577,\"update-diff\":599}],535:[function(t,e,r){\"use strict\";var n=t(\"color-normalize\"),i=t(\"array-bounds\"),a=t(\"object-assign\"),o=t(\"glslify\"),s=t(\"pick-by-alias\"),l=t(\"flatten-vertex-data\"),c=t(\"earcut\"),u=t(\"array-normalize\"),f=t(\"to-float32\"),h=f.float32,p=f.fract32,d=t(\"es6-weak-map\"),g=t(\"parse-rect\");function m(t,e){if(!(this instanceof m))return new m(t,e);if(\"function\"==typeof t?(e||(e={}),e.regl=t):e=t,e.length&&(e.positions=e),!(t=e.regl).hasExtension(\"ANGLE_instanced_arrays\"))throw Error(\"regl-error2d: `ANGLE_instanced_arrays` extension should be enabled\");this.gl=t._gl,this.regl=t,this.passes=[],this.shaders=m.shaders.has(t)?m.shaders.get(t):m.shaders.set(t,m.createShaders(t)).get(t),this.update(e)}e.exports=m,m.dashMult=2,m.maxPatternLength=256,m.precisionThreshold=3e6,m.maxPoints=1e4,m.maxLines=2048,m.shaders=new d,m.createShaders=function(t){var e,r=t.buffer({usage:\"static\",type:\"float\",data:[0,1,0,0,1,1,1,0]}),n={primitive:\"triangle strip\",instances:t.prop(\"count\"),count:4,offset:0,uniforms:{miterMode:function(t,e){return\"round\"===e.join?2:1},miterLimit:t.prop(\"miterLimit\"),scale:t.prop(\"scale\"),scaleFract:t.prop(\"scaleFract\"),translateFract:t.prop(\"translateFract\"),translate:t.prop(\"translate\"),thickness:t.prop(\"thickness\"),dashPattern:t.prop(\"dashTexture\"),opacity:t.prop(\"opacity\"),pixelRatio:t.context(\"pixelRatio\"),id:t.prop(\"id\"),dashSize:t.prop(\"dashLength\"),viewport:function(t,e){return[e.viewport.x,e.viewport.y,t.viewportWidth,t.viewportHeight]},depth:t.prop(\"depth\")},blend:{enable:!0,color:[0,0,0,0],equation:{rgb:\"add\",alpha:\"add\"},func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},depth:{enable:function(t,e){return!e.overlay}},stencil:{enable:!1},scissor:{enable:!0,box:t.prop(\"viewport\")},viewport:t.prop(\"viewport\")},i=t(a({vert:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec2 aCoord, bCoord, aCoordFract, bCoordFract;\\nattribute vec4 color;\\nattribute float lineEnd, lineTop;\\n\\nuniform vec2 scale, scaleFract, translate, translateFract;\\nuniform float thickness, pixelRatio, id, depth;\\nuniform vec4 viewport;\\n\\nvarying vec4 fragColor;\\nvarying vec2 tangent;\\n\\nvec2 project(vec2 position, vec2 positionFract, vec2 scale, vec2 scaleFract, vec2 translate, vec2 translateFract) {\\n\\t// the order is important\\n\\treturn position * scale + translate\\n       + positionFract * scale + translateFract\\n       + position * scaleFract\\n       + positionFract * scaleFract;\\n}\\n\\nvoid main() {\\n\\tfloat lineStart = 1. - lineEnd;\\n\\tfloat lineOffset = lineTop * 2. - 1.;\\n\\n\\tvec2 diff = (bCoord + bCoordFract - aCoord - aCoordFract);\\n\\ttangent = normalize(diff * scale * viewport.zw);\\n\\tvec2 normal = vec2(-tangent.y, tangent.x);\\n\\n\\tvec2 position = project(aCoord, aCoordFract, scale, scaleFract, translate, translateFract) * lineStart\\n\\t\\t+ project(bCoord, bCoordFract, scale, scaleFract, translate, translateFract) * lineEnd\\n\\n\\t\\t+ thickness * normal * .5 * lineOffset / viewport.zw;\\n\\n\\tgl_Position = vec4(position * 2.0 - 1.0, depth, 1);\\n\\n\\tfragColor = color / 255.;\\n}\\n\"]),frag:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D dashPattern;\\n\\nuniform float dashSize, pixelRatio, thickness, opacity, id;\\n\\nvarying vec4 fragColor;\\nvarying vec2 tangent;\\n\\nvoid main() {\\n\\tfloat alpha = 1.;\\n\\n\\tfloat t = fract(dot(tangent, gl_FragCoord.xy) / dashSize) * .5 + .25;\\n\\tfloat dash = texture2D(dashPattern, vec2(t, .5)).r;\\n\\n\\tgl_FragColor = fragColor;\\n\\tgl_FragColor.a *= alpha * opacity * dash;\\n}\\n\"]),attributes:{lineEnd:{buffer:r,divisor:0,stride:8,offset:0},lineTop:{buffer:r,divisor:0,stride:8,offset:4},aCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:8,divisor:1},bCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:16,divisor:1},aCoordFract:{buffer:t.prop(\"positionFractBuffer\"),stride:8,offset:8,divisor:1},bCoordFract:{buffer:t.prop(\"positionFractBuffer\"),stride:8,offset:16,divisor:1},color:{buffer:t.prop(\"colorBuffer\"),stride:4,offset:0,divisor:1}}},n));try{e=t(a({cull:{enable:!0,face:\"back\"},vert:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec2 aCoord, bCoord, nextCoord, prevCoord;\\nattribute vec4 aColor, bColor;\\nattribute float lineEnd, lineTop;\\n\\nuniform vec2 scale, translate;\\nuniform float thickness, pixelRatio, id, depth;\\nuniform vec4 viewport;\\nuniform float miterLimit, miterMode;\\n\\nvarying vec4 fragColor;\\nvarying vec4 startCutoff, endCutoff;\\nvarying vec2 tangent;\\nvarying vec2 startCoord, endCoord;\\nvarying float enableStartMiter, enableEndMiter;\\n\\nconst float REVERSE_THRESHOLD = -.875;\\nconst float MIN_DIFF = 1e-6;\\n\\n// TODO: possible optimizations: avoid overcalculating all for vertices and calc just one instead\\n// TODO: precalculate dot products, normalize things beforehead etc.\\n// TODO: refactor to rectangular algorithm\\n\\nfloat distToLine(vec2 p, vec2 a, vec2 b) {\\n\\tvec2 diff = b - a;\\n\\tvec2 perp = normalize(vec2(-diff.y, diff.x));\\n\\treturn dot(p - a, perp);\\n}\\n\\nbool isNaN( float val ){\\n  return ( val < 0.0 || 0.0 < val || val == 0.0 ) ? false : true;\\n}\\n\\nvoid main() {\\n\\tvec2 aCoord = aCoord, bCoord = bCoord, prevCoord = prevCoord, nextCoord = nextCoord;\\n\\n  vec2 adjustedScale;\\n  adjustedScale.x = (abs(scale.x) < MIN_DIFF) ? MIN_DIFF : scale.x;\\n  adjustedScale.y = (abs(scale.y) < MIN_DIFF) ? MIN_DIFF : scale.y;\\n\\n  vec2 scaleRatio = adjustedScale * viewport.zw;\\n\\tvec2 normalWidth = thickness / scaleRatio;\\n\\n\\tfloat lineStart = 1. - lineEnd;\\n\\tfloat lineBot = 1. - lineTop;\\n\\n\\tfragColor = (lineStart * aColor + lineEnd * bColor) / 255.;\\n\\n\\tif (isNaN(aCoord.x) || isNaN(aCoord.y) || isNaN(bCoord.x) || isNaN(bCoord.y)) return;\\n\\n\\tif (aCoord == prevCoord) prevCoord = aCoord + normalize(bCoord - aCoord);\\n\\tif (bCoord == nextCoord) nextCoord = bCoord - normalize(bCoord - aCoord);\\n\\n\\tvec2 prevDiff = aCoord - prevCoord;\\n\\tvec2 currDiff = bCoord - aCoord;\\n\\tvec2 nextDiff = nextCoord - bCoord;\\n\\n\\tvec2 prevTangent = normalize(prevDiff * scaleRatio);\\n\\tvec2 currTangent = normalize(currDiff * scaleRatio);\\n\\tvec2 nextTangent = normalize(nextDiff * scaleRatio);\\n\\n\\tvec2 prevNormal = vec2(-prevTangent.y, prevTangent.x);\\n\\tvec2 currNormal = vec2(-currTangent.y, currTangent.x);\\n\\tvec2 nextNormal = vec2(-nextTangent.y, nextTangent.x);\\n\\n\\tvec2 startJoinDirection = normalize(prevTangent - currTangent);\\n\\tvec2 endJoinDirection = normalize(currTangent - nextTangent);\\n\\n\\t// collapsed/unidirectional segment cases\\n\\t// FIXME: there should be more elegant solution\\n\\tvec2 prevTanDiff = abs(prevTangent - currTangent);\\n\\tvec2 nextTanDiff = abs(nextTangent - currTangent);\\n\\tif (max(prevTanDiff.x, prevTanDiff.y) < MIN_DIFF) {\\n\\t\\tstartJoinDirection = currNormal;\\n\\t}\\n\\tif (max(nextTanDiff.x, nextTanDiff.y) < MIN_DIFF) {\\n\\t\\tendJoinDirection = currNormal;\\n\\t}\\n\\tif (aCoord == bCoord) {\\n\\t\\tendJoinDirection = startJoinDirection;\\n\\t\\tcurrNormal = prevNormal;\\n\\t\\tcurrTangent = prevTangent;\\n\\t}\\n\\n\\ttangent = currTangent;\\n\\n\\t//calculate join shifts relative to normals\\n\\tfloat startJoinShift = dot(currNormal, startJoinDirection);\\n\\tfloat endJoinShift = dot(currNormal, endJoinDirection);\\n\\n\\tfloat startMiterRatio = abs(1. / startJoinShift);\\n\\tfloat endMiterRatio = abs(1. / endJoinShift);\\n\\n\\tvec2 startJoin = startJoinDirection * startMiterRatio;\\n\\tvec2 endJoin = endJoinDirection * endMiterRatio;\\n\\n\\tvec2 startTopJoin, startBotJoin, endTopJoin, endBotJoin;\\n\\tstartTopJoin = sign(startJoinShift) * startJoin * .5;\\n\\tstartBotJoin = -startTopJoin;\\n\\n\\tendTopJoin = sign(endJoinShift) * endJoin * .5;\\n\\tendBotJoin = -endTopJoin;\\n\\n\\tvec2 aTopCoord = aCoord + normalWidth * startTopJoin;\\n\\tvec2 bTopCoord = bCoord + normalWidth * endTopJoin;\\n\\tvec2 aBotCoord = aCoord + normalWidth * startBotJoin;\\n\\tvec2 bBotCoord = bCoord + normalWidth * endBotJoin;\\n\\n\\t//miter anti-clipping\\n\\tfloat baClipping = distToLine(bCoord, aCoord, aBotCoord) / dot(normalize(normalWidth * endBotJoin), normalize(normalWidth.yx * vec2(-startBotJoin.y, startBotJoin.x)));\\n\\tfloat abClipping = distToLine(aCoord, bCoord, bTopCoord) / dot(normalize(normalWidth * startBotJoin), normalize(normalWidth.yx * vec2(-endBotJoin.y, endBotJoin.x)));\\n\\n\\t//prevent close to reverse direction switch\\n\\tbool prevReverse = dot(currTangent, prevTangent) <= REVERSE_THRESHOLD && abs(dot(currTangent, prevNormal)) * min(length(prevDiff), length(currDiff)) <  length(normalWidth * currNormal);\\n\\tbool nextReverse = dot(currTangent, nextTangent) <= REVERSE_THRESHOLD && abs(dot(currTangent, nextNormal)) * min(length(nextDiff), length(currDiff)) <  length(normalWidth * currNormal);\\n\\n\\tif (prevReverse) {\\n\\t\\t//make join rectangular\\n\\t\\tvec2 miterShift = normalWidth * startJoinDirection * miterLimit * .5;\\n\\t\\tfloat normalAdjust = 1. - min(miterLimit / startMiterRatio, 1.);\\n\\t\\taBotCoord = aCoord + miterShift - normalAdjust * normalWidth * currNormal * .5;\\n\\t\\taTopCoord = aCoord + miterShift + normalAdjust * normalWidth * currNormal * .5;\\n\\t}\\n\\telse if (!nextReverse && baClipping > 0. && baClipping < length(normalWidth * endBotJoin)) {\\n\\t\\t//handle miter clipping\\n\\t\\tbTopCoord -= normalWidth * endTopJoin;\\n\\t\\tbTopCoord += normalize(endTopJoin * normalWidth) * baClipping;\\n\\t}\\n\\n\\tif (nextReverse) {\\n\\t\\t//make join rectangular\\n\\t\\tvec2 miterShift = normalWidth * endJoinDirection * miterLimit * .5;\\n\\t\\tfloat normalAdjust = 1. - min(miterLimit / endMiterRatio, 1.);\\n\\t\\tbBotCoord = bCoord + miterShift - normalAdjust * normalWidth * currNormal * .5;\\n\\t\\tbTopCoord = bCoord + miterShift + normalAdjust * normalWidth * currNormal * .5;\\n\\t}\\n\\telse if (!prevReverse && abClipping > 0. && abClipping < length(normalWidth * startBotJoin)) {\\n\\t\\t//handle miter clipping\\n\\t\\taBotCoord -= normalWidth * startBotJoin;\\n\\t\\taBotCoord += normalize(startBotJoin * normalWidth) * abClipping;\\n\\t}\\n\\n\\tvec2 aTopPosition = (aTopCoord) * adjustedScale + translate;\\n\\tvec2 aBotPosition = (aBotCoord) * adjustedScale + translate;\\n\\n\\tvec2 bTopPosition = (bTopCoord) * adjustedScale + translate;\\n\\tvec2 bBotPosition = (bBotCoord) * adjustedScale + translate;\\n\\n\\t//position is normalized 0..1 coord on the screen\\n\\tvec2 position = (aTopPosition * lineTop + aBotPosition * lineBot) * lineStart + (bTopPosition * lineTop + bBotPosition * lineBot) * lineEnd;\\n\\n\\tstartCoord = aCoord * scaleRatio + translate * viewport.zw + viewport.xy;\\n\\tendCoord = bCoord * scaleRatio + translate * viewport.zw + viewport.xy;\\n\\n\\tgl_Position = vec4(position  * 2.0 - 1.0, depth, 1);\\n\\n\\tenableStartMiter = step(dot(currTangent, prevTangent), .5);\\n\\tenableEndMiter = step(dot(currTangent, nextTangent), .5);\\n\\n\\t//bevel miter cutoffs\\n\\tif (miterMode == 1.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tvec2 startMiterWidth = vec2(startJoinDirection) * thickness * miterLimit * .5;\\n\\t\\t\\tstartCutoff = vec4(aCoord, aCoord);\\n\\t\\t\\tstartCutoff.zw += vec2(-startJoinDirection.y, startJoinDirection.x) / scaleRatio;\\n\\t\\t\\tstartCutoff = startCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tstartCutoff += viewport.xyxy;\\n\\t\\t\\tstartCutoff += startMiterWidth.xyxy;\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tvec2 endMiterWidth = vec2(endJoinDirection) * thickness * miterLimit * .5;\\n\\t\\t\\tendCutoff = vec4(bCoord, bCoord);\\n\\t\\t\\tendCutoff.zw += vec2(-endJoinDirection.y, endJoinDirection.x)  / scaleRatio;\\n\\t\\t\\tendCutoff = endCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tendCutoff += viewport.xyxy;\\n\\t\\t\\tendCutoff += endMiterWidth.xyxy;\\n\\t\\t}\\n\\t}\\n\\n\\t//round miter cutoffs\\n\\telse if (miterMode == 2.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tvec2 startMiterWidth = vec2(startJoinDirection) * thickness * abs(dot(startJoinDirection, currNormal)) * .5;\\n\\t\\t\\tstartCutoff = vec4(aCoord, aCoord);\\n\\t\\t\\tstartCutoff.zw += vec2(-startJoinDirection.y, startJoinDirection.x) / scaleRatio;\\n\\t\\t\\tstartCutoff = startCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tstartCutoff += viewport.xyxy;\\n\\t\\t\\tstartCutoff += startMiterWidth.xyxy;\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tvec2 endMiterWidth = vec2(endJoinDirection) * thickness * abs(dot(endJoinDirection, currNormal)) * .5;\\n\\t\\t\\tendCutoff = vec4(bCoord, bCoord);\\n\\t\\t\\tendCutoff.zw += vec2(-endJoinDirection.y, endJoinDirection.x)  / scaleRatio;\\n\\t\\t\\tendCutoff = endCutoff * scaleRatio.xyxy + translate.xyxy * viewport.zwzw;\\n\\t\\t\\tendCutoff += viewport.xyxy;\\n\\t\\t\\tendCutoff += endMiterWidth.xyxy;\\n\\t\\t}\\n\\t}\\n}\\n\"]),frag:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nuniform sampler2D dashPattern;\\nuniform float dashSize, pixelRatio, thickness, opacity, id, miterMode;\\n\\nvarying vec4 fragColor;\\nvarying vec2 tangent;\\nvarying vec4 startCutoff, endCutoff;\\nvarying vec2 startCoord, endCoord;\\nvarying float enableStartMiter, enableEndMiter;\\n\\nfloat distToLine(vec2 p, vec2 a, vec2 b) {\\n\\tvec2 diff = b - a;\\n\\tvec2 perp = normalize(vec2(-diff.y, diff.x));\\n\\treturn dot(p - a, perp);\\n}\\n\\nvoid main() {\\n\\tfloat alpha = 1., distToStart, distToEnd;\\n\\tfloat cutoff = thickness * .5;\\n\\n\\t//bevel miter\\n\\tif (miterMode == 1.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tdistToStart = distToLine(gl_FragCoord.xy, startCutoff.xy, startCutoff.zw);\\n\\t\\t\\tif (distToStart < -1.) {\\n\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\t\\t\\talpha *= min(max(distToStart + 1., 0.), 1.);\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tdistToEnd = distToLine(gl_FragCoord.xy, endCutoff.xy, endCutoff.zw);\\n\\t\\t\\tif (distToEnd < -1.) {\\n\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\treturn;\\n\\t\\t\\t}\\n\\t\\t\\talpha *= min(max(distToEnd + 1., 0.), 1.);\\n\\t\\t}\\n\\t}\\n\\n\\t// round miter\\n\\telse if (miterMode == 2.) {\\n\\t\\tif (enableStartMiter == 1.) {\\n\\t\\t\\tdistToStart = distToLine(gl_FragCoord.xy, startCutoff.xy, startCutoff.zw);\\n\\t\\t\\tif (distToStart < 0.) {\\n\\t\\t\\t\\tfloat radius = length(gl_FragCoord.xy - startCoord);\\n\\n\\t\\t\\t\\tif(radius > cutoff + .5) {\\n\\t\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\talpha -= smoothstep(cutoff - .5, cutoff + .5, radius);\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\tif (enableEndMiter == 1.) {\\n\\t\\t\\tdistToEnd = distToLine(gl_FragCoord.xy, endCutoff.xy, endCutoff.zw);\\n\\t\\t\\tif (distToEnd < 0.) {\\n\\t\\t\\t\\tfloat radius = length(gl_FragCoord.xy - endCoord);\\n\\n\\t\\t\\t\\tif(radius > cutoff + .5) {\\n\\t\\t\\t\\t\\tdiscard;\\n\\t\\t\\t\\t\\treturn;\\n\\t\\t\\t\\t}\\n\\n\\t\\t\\t\\talpha -= smoothstep(cutoff - .5, cutoff + .5, radius);\\n\\t\\t\\t}\\n\\t\\t}\\n\\t}\\n\\n\\tfloat t = fract(dot(tangent, gl_FragCoord.xy) / dashSize) * .5 + .25;\\n\\tfloat dash = texture2D(dashPattern, vec2(t, .5)).r;\\n\\n\\tgl_FragColor = fragColor;\\n\\tgl_FragColor.a *= alpha * opacity * dash;\\n}\\n\"]),attributes:{lineEnd:{buffer:r,divisor:0,stride:8,offset:0},lineTop:{buffer:r,divisor:0,stride:8,offset:4},aColor:{buffer:t.prop(\"colorBuffer\"),stride:4,offset:0,divisor:1},bColor:{buffer:t.prop(\"colorBuffer\"),stride:4,offset:4,divisor:1},prevCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:0,divisor:1},aCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:8,divisor:1},bCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:16,divisor:1},nextCoord:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:24,divisor:1}}},n))}catch(t){e=i}return{fill:t({primitive:\"triangle\",elements:function(t,e){return e.triangles},offset:0,vert:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute vec2 position, positionFract;\\n\\nuniform vec4 color;\\nuniform vec2 scale, scaleFract, translate, translateFract;\\nuniform float pixelRatio, id;\\nuniform vec4 viewport;\\nuniform float opacity;\\n\\nvarying vec4 fragColor;\\n\\nconst float MAX_LINES = 256.;\\n\\nvoid main() {\\n\\tfloat depth = (MAX_LINES - 4. - id) / (MAX_LINES);\\n\\n\\tvec2 position = position * scale + translate\\n       + positionFract * scale + translateFract\\n       + position * scaleFract\\n       + positionFract * scaleFract;\\n\\n\\tgl_Position = vec4(position * 2.0 - 1.0, depth, 1);\\n\\n\\tfragColor = color / 255.;\\n\\tfragColor.a *= opacity;\\n}\\n\"]),frag:o([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n\\tgl_FragColor = fragColor;\\n}\\n\"]),uniforms:{scale:t.prop(\"scale\"),color:t.prop(\"fill\"),scaleFract:t.prop(\"scaleFract\"),translateFract:t.prop(\"translateFract\"),translate:t.prop(\"translate\"),opacity:t.prop(\"opacity\"),pixelRatio:t.context(\"pixelRatio\"),id:t.prop(\"id\"),viewport:function(t,e){return[e.viewport.x,e.viewport.y,t.viewportWidth,t.viewportHeight]}},attributes:{position:{buffer:t.prop(\"positionBuffer\"),stride:8,offset:8},positionFract:{buffer:t.prop(\"positionFractBuffer\"),stride:8,offset:8}},blend:n.blend,depth:{enable:!1},scissor:n.scissor,stencil:n.stencil,viewport:n.viewport}),rect:i,miter:e}},m.defaults={dashes:null,join:\"miter\",miterLimit:1,thickness:10,cap:\"square\",color:\"black\",opacity:1,overlay:!1,viewport:null,range:null,close:!1,fill:null},m.prototype.render=function(){for(var t,e=[],r=arguments.length;r--;)e[r]=arguments[r];e.length&&(t=this).update.apply(t,e),this.draw()},m.prototype.draw=function(){for(var t=this,e=[],r=arguments.length;r--;)e[r]=arguments[r];return(e.length?e:this.passes).forEach((function(e,r){var n;if(e&&Array.isArray(e))return(n=t).draw.apply(n,e);\"number\"==typeof e&&(e=t.passes[e]),e&&e.count>1&&e.opacity&&(t.regl._refresh(),e.fill&&e.triangles&&e.triangles.length>2&&t.shaders.fill(e),e.thickness&&(e.scale[0]*e.viewport.width>m.precisionThreshold||e.scale[1]*e.viewport.height>m.precisionThreshold||\"rect\"===e.join||!e.join&&(e.thickness<=2||e.count>=m.maxPoints)?t.shaders.rect(e):t.shaders.miter(e)))})),this},m.prototype.update=function(t){var e=this;if(t){null!=t.length?\"number\"==typeof t[0]&&(t=[{positions:t}]):Array.isArray(t)||(t=[t]);var r=this.regl,o=this.gl;if(t.forEach((function(t,f){var d=e.passes[f];if(void 0!==t)if(null!==t){if(\"number\"==typeof t[0]&&(t={positions:t}),t=s(t,{positions:\"positions points data coords\",thickness:\"thickness lineWidth lineWidths line-width linewidth width stroke-width strokewidth strokeWidth\",join:\"lineJoin linejoin join type mode\",miterLimit:\"miterlimit miterLimit\",dashes:\"dash dashes dasharray dash-array dashArray\",color:\"color colour stroke colors colours stroke-color strokeColor\",fill:\"fill fill-color fillColor\",opacity:\"alpha opacity\",overlay:\"overlay crease overlap intersect\",close:\"closed close closed-path closePath\",range:\"range dataBox\",viewport:\"viewport viewBox\",hole:\"holes hole hollow\"}),d||(e.passes[f]=d={id:f,scale:null,scaleFract:null,translate:null,translateFract:null,count:0,hole:[],depth:0,dashLength:1,dashTexture:r.texture({channels:1,data:new Uint8Array([255]),width:1,height:1,mag:\"linear\",min:\"linear\"}),colorBuffer:r.buffer({usage:\"dynamic\",type:\"uint8\",data:new Uint8Array}),positionBuffer:r.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array}),positionFractBuffer:r.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array})},t=a({},m.defaults,t)),null!=t.thickness&&(d.thickness=parseFloat(t.thickness)),null!=t.opacity&&(d.opacity=parseFloat(t.opacity)),null!=t.miterLimit&&(d.miterLimit=parseFloat(t.miterLimit)),null!=t.overlay&&(d.overlay=!!t.overlay,f<m.maxLines&&(d.depth=2*(m.maxLines-1-f%m.maxLines)/m.maxLines-1)),null!=t.join&&(d.join=t.join),null!=t.hole&&(d.hole=t.hole),null!=t.fill&&(d.fill=t.fill?n(t.fill,\"uint8\"):null),null!=t.viewport&&(d.viewport=g(t.viewport)),d.viewport||(d.viewport=g([o.drawingBufferWidth,o.drawingBufferHeight])),null!=t.close&&(d.close=t.close),null===t.positions&&(t.positions=[]),t.positions){var v,y;if(t.positions.x&&t.positions.y){var x=t.positions.x,b=t.positions.y;y=d.count=Math.max(x.length,b.length),v=new Float64Array(2*y);for(var _=0;_<y;_++)v[2*_]=x[_],v[2*_+1]=b[_]}else v=l(t.positions,\"float64\"),y=d.count=Math.floor(v.length/2);var w=d.bounds=i(v,2);if(d.fill){for(var T=[],k={},M=0,A=0,S=0,E=d.count;A<E;A++){var C=v[2*A],L=v[2*A+1];isNaN(C)||isNaN(L)||null==C||null==L?(C=v[2*M],L=v[2*M+1],k[A]=M):M=A,T[S++]=C,T[S++]=L}for(var I=c(T,d.hole||[]),P=0,z=I.length;P<z;P++)null!=k[I[P]]&&(I[P]=k[I[P]]);d.triangles=I}var O=new Float64Array(v);u(O,2,w);var D=new Float64Array(2*y+6);d.close?v[0]===v[2*y-2]&&v[1]===v[2*y-1]?(D[0]=O[2*y-4],D[1]=O[2*y-3]):(D[0]=O[2*y-2],D[1]=O[2*y-1]):(D[0]=O[0],D[1]=O[1]),D.set(O,2),d.close?v[0]===v[2*y-2]&&v[1]===v[2*y-1]?(D[2*y+2]=O[2],D[2*y+3]=O[3],d.count-=1):(D[2*y+2]=O[0],D[2*y+3]=O[1],D[2*y+4]=O[2],D[2*y+5]=O[3]):(D[2*y+2]=O[2*y-2],D[2*y+3]=O[2*y-1],D[2*y+4]=O[2*y-2],D[2*y+5]=O[2*y-1]),d.positionBuffer(h(D)),d.positionFractBuffer(p(D))}if(t.range?d.range=t.range:d.range||(d.range=d.bounds),(t.range||t.positions)&&d.count){var R=d.bounds,F=R[2]-R[0],B=R[3]-R[1],N=d.range[2]-d.range[0],j=d.range[3]-d.range[1];d.scale=[F/N,B/j],d.translate=[-d.range[0]/N+R[0]/N||0,-d.range[1]/j+R[1]/j||0],d.scaleFract=p(d.scale),d.translateFract=p(d.translate)}if(t.dashes){var U,V=0;if(!t.dashes||t.dashes.length<2)V=1,U=new Uint8Array([255,255,255,255,255,255,255,255]);else{V=0;for(var q=0;q<t.dashes.length;++q)V+=t.dashes[q];U=new Uint8Array(V*m.dashMult);for(var H=0,G=255,Y=0;Y<2;Y++)for(var W=0;W<t.dashes.length;++W){for(var X=0,Z=t.dashes[W]*m.dashMult*.5;X<Z;++X)U[H++]=G;G^=255}}d.dashLength=V,d.dashTexture({channels:1,data:U,width:U.length,height:1,mag:\"linear\",min:\"linear\"},0,0)}if(t.color){var J=d.count,K=t.color;K||(K=\"transparent\");var Q=new Uint8Array(4*J+4);if(Array.isArray(K)&&\"number\"!=typeof K[0]){for(var $=0;$<J;$++){var tt=n(K[$],\"uint8\");Q.set(tt,4*$)}Q.set(n(K[0],\"uint8\"),4*J)}else for(var et=n(K,\"uint8\"),rt=0;rt<J+1;rt++)Q.set(et,4*rt);d.colorBuffer({usage:\"dynamic\",type:\"uint8\",data:Q})}}else e.passes[f]=null})),t.length<this.passes.length){for(var f=t.length;f<this.passes.length;f++){var d=this.passes[f];d&&(d.colorBuffer.destroy(),d.positionBuffer.destroy(),d.dashTexture.destroy())}this.passes.length=t.length}for(var v=[],y=0;y<this.passes.length;y++)null!==this.passes[y]&&v.push(this.passes[y]);return this.passes=v,this}},m.prototype.destroy=function(){return this.passes.forEach((function(t){t.colorBuffer.destroy(),t.positionBuffer.destroy(),t.dashTexture.destroy()})),this.passes.length=0,this}},{\"array-bounds\":70,\"array-normalize\":71,\"color-normalize\":125,earcut:177,\"es6-weak-map\":233,\"flatten-vertex-data\":244,glslify:536,\"object-assign\":499,\"parse-rect\":504,\"pick-by-alias\":511,\"to-float32\":577}],536:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],537:[function(t,e,r){\"use strict\";function n(t,e){return function(t){if(Array.isArray(t))return t}(t)||function(t,e){if(\"undefined\"==typeof Symbol||!(Symbol.iterator in Object(t)))return;var r=[],n=!0,i=!1,a=void 0;try{for(var o,s=t[Symbol.iterator]();!(n=(o=s.next()).done)&&(r.push(o.value),!e||r.length!==e);n=!0);}catch(t){i=!0,a=t}finally{try{n||null==s.return||s.return()}finally{if(i)throw a}}return r}(t,e)||a(t,e)||function(){throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function i(t){return function(t){if(Array.isArray(t))return o(t)}(t)||function(t){if(\"undefined\"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||a(t)||function(){throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\")}()}function a(t,e){if(t){if(\"string\"==typeof t)return o(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return\"Object\"===r&&t.constructor&&(r=t.constructor.name),\"Map\"===r||\"Set\"===r?Array.from(t):\"Arguments\"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(t,e):void 0}}function o(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var s=t(\"color-normalize\"),l=t(\"array-bounds\"),c=t(\"color-id\"),u=t(\"@plotly/point-cluster\"),f=t(\"object-assign\"),h=t(\"glslify\"),p=t(\"pick-by-alias\"),d=t(\"update-diff\"),g=t(\"flatten-vertex-data\"),m=t(\"is-iexplorer\"),v=t(\"to-float32\"),y=t(\"parse-rect\"),x=b;function b(t,e){var r=this;if(!(this instanceof b))return new b(t,e);\"function\"==typeof t?(e||(e={}),e.regl=t):(e=t,t=null),e&&e.length&&(e.positions=e);var n,i=(t=e.regl)._gl,a=[];this.tooManyColors=m,n=t.texture({data:new Uint8Array(1020),width:255,height:1,type:\"uint8\",format:\"rgba\",wrapS:\"clamp\",wrapT:\"clamp\",mag:\"nearest\",min:\"nearest\"}),f(this,{regl:t,gl:i,groups:[],markerCache:[null],markerTextures:[null],palette:a,paletteIds:{},paletteTexture:n,maxColors:255,maxSize:100,canvas:i.canvas}),this.update(e);var o={uniforms:{constPointSize:!!e.constPointSize,pixelRatio:t.context(\"pixelRatio\"),palette:n,paletteSize:function(t,e){return[r.tooManyColors?0:255,n.height]},scale:t.prop(\"scale\"),scaleFract:t.prop(\"scaleFract\"),translate:t.prop(\"translate\"),translateFract:t.prop(\"translateFract\"),opacity:t.prop(\"opacity\"),marker:t.prop(\"markerTexture\")},attributes:{x:function(t,e){return e.xAttr||{buffer:e.positionBuffer,stride:8,offset:0}},y:function(t,e){return e.yAttr||{buffer:e.positionBuffer,stride:8,offset:4}},xFract:function(t,e){return e.xAttr?{constant:[0,0]}:{buffer:e.positionFractBuffer,stride:8,offset:0}},yFract:function(t,e){return e.yAttr?{constant:[0,0]}:{buffer:e.positionFractBuffer,stride:8,offset:4}},size:function(t,e){return e.size.length?{buffer:e.sizeBuffer,stride:2,offset:0}:{constant:[Math.round(255*e.size/r.maxSize)]}},borderSize:function(t,e){return e.borderSize.length?{buffer:e.sizeBuffer,stride:2,offset:1}:{constant:[Math.round(255*e.borderSize/r.maxSize)]}},colorId:function(t,e){return e.color.length?{buffer:e.colorBuffer,stride:r.tooManyColors?8:4,offset:0}:{constant:r.tooManyColors?a.slice(4*e.color,4*e.color+4):[e.color]}},borderColorId:function(t,e){return e.borderColor.length?{buffer:e.colorBuffer,stride:r.tooManyColors?8:4,offset:r.tooManyColors?4:2}:{constant:r.tooManyColors?a.slice(4*e.borderColor,4*e.borderColor+4):[e.borderColor]}},isActive:function(t,e){return!0===e.activation?{constant:[1]}:e.activation?e.activation:{constant:[0]}}},blend:{enable:!0,color:[0,0,0,1],func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:\"one minus dst alpha\",dstAlpha:\"one\"}},scissor:{enable:!0,box:t.prop(\"viewport\")},viewport:t.prop(\"viewport\"),stencil:{enable:!1},depth:{enable:!1},elements:t.prop(\"elements\"),count:t.prop(\"count\"),offset:t.prop(\"offset\"),primitive:\"points\"},s=f({},o);s.frag=h([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor, fragBorderColor;\\nvarying float fragWidth, fragBorderColorLevel, fragColorLevel;\\n\\nuniform sampler2D marker;\\nuniform float opacity;\\n\\nfloat smoothStep(float x, float y) {\\n  return 1.0 / (1.0 + exp(50.0*(x - y)));\\n}\\n\\nvoid main() {\\n  float dist = texture2D(marker, gl_PointCoord).r, delta = fragWidth;\\n\\n  // max-distance alpha\\n  if (dist < 0.003) discard;\\n\\n  // null-border case\\n  if (fragBorderColorLevel == fragColorLevel || fragBorderColor.a == 0.) {\\n    float colorAmt = smoothstep(.5 - delta, .5 + delta, dist);\\n    gl_FragColor = vec4(fragColor.rgb, colorAmt * fragColor.a * opacity);\\n  }\\n  else {\\n    float borderColorAmt = smoothstep(fragBorderColorLevel - delta, fragBorderColorLevel + delta, dist);\\n    float colorAmt = smoothstep(fragColorLevel - delta, fragColorLevel + delta, dist);\\n\\n    vec4 color = fragBorderColor;\\n    color.a *= borderColorAmt;\\n    color = mix(color, fragColor, colorAmt);\\n    color.a *= opacity;\\n\\n    gl_FragColor = color;\\n  }\\n\\n}\\n\"]),s.vert=h([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute float x, y, xFract, yFract;\\nattribute float size, borderSize;\\nattribute vec4 colorId, borderColorId;\\nattribute float isActive;\\n\\nuniform vec2 scale, scaleFract, translate, translateFract, paletteSize;\\nuniform float pixelRatio;\\nuniform bool constPointSize;\\nuniform sampler2D palette;\\n\\nconst float maxSize = 100.;\\nconst float borderLevel = .5;\\n\\nvarying vec4 fragColor, fragBorderColor;\\nvarying float fragPointSize, fragBorderRadius, fragWidth, fragBorderColorLevel, fragColorLevel;\\n\\nfloat pointSizeScale = (constPointSize) ? 2. : pixelRatio;\\n\\nbool isDirect = (paletteSize.x < 1.);\\n\\nvec4 getColor(vec4 id) {\\n  return isDirect ? id / 255. : texture2D(palette,\\n    vec2(\\n      (id.x + .5) / paletteSize.x,\\n      (id.y + .5) / paletteSize.y\\n    )\\n  );\\n}\\n\\nvoid main() {\\n  // ignore inactive points\\n  if (isActive == 0.) return;\\n\\n  vec2 position = vec2(x, y);\\n  vec2 positionFract = vec2(xFract, yFract);\\n\\n  vec4 color = getColor(colorId);\\n  vec4 borderColor = getColor(borderColorId);\\n\\n  float size = size * maxSize / 255.;\\n  float borderSize = borderSize * maxSize / 255.;\\n\\n  gl_PointSize = 2. * size * pointSizeScale;\\n  fragPointSize = size * pixelRatio;\\n\\n  vec2 pos = (position + translate) * scale\\n      + (positionFract + translateFract) * scale\\n      + (position + translate) * scaleFract\\n      + (positionFract + translateFract) * scaleFract;\\n\\n  gl_Position = vec4(pos * 2. - 1., 0., 1.);\\n\\n  fragColor = color;\\n  fragBorderColor = borderColor;\\n  fragWidth = 1. / gl_PointSize;\\n\\n  fragBorderColorLevel = clamp(borderLevel - borderLevel * borderSize / size, 0., 1.);\\n  fragColorLevel = clamp(borderLevel + (1. - borderLevel) * borderSize / size, 0., 1.);\\n}\"]),this.drawMarker=t(s);var l=f({},o);l.frag=h([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor, fragBorderColor;\\n\\nuniform float opacity;\\nvarying float fragBorderRadius, fragWidth;\\n\\nfloat smoothStep(float edge0, float edge1, float x) {\\n\\tfloat t;\\n\\tt = clamp((x - edge0) / (edge1 - edge0), 0.0, 1.0);\\n\\treturn t * t * (3.0 - 2.0 * t);\\n}\\n\\nvoid main() {\\n\\tfloat radius, alpha = 1.0, delta = fragWidth;\\n\\n\\tradius = length(2.0 * gl_PointCoord.xy - 1.0);\\n\\n\\tif (radius > 1.0 + delta) {\\n\\t\\tdiscard;\\n\\t}\\n\\n\\talpha -= smoothstep(1.0 - delta, 1.0 + delta, radius);\\n\\n\\tfloat borderRadius = fragBorderRadius;\\n\\tfloat ratio = smoothstep(borderRadius - delta, borderRadius + delta, radius);\\n\\tvec4 color = mix(fragColor, fragBorderColor, ratio);\\n\\tcolor.a *= alpha * opacity;\\n\\tgl_FragColor = color;\\n}\\n\"]),l.vert=h([\"precision highp float;\\n#define GLSLIFY 1\\n\\nattribute float x, y, xFract, yFract;\\nattribute float size, borderSize;\\nattribute vec4 colorId, borderColorId;\\nattribute float isActive;\\n\\nuniform vec2 scale, scaleFract, translate, translateFract;\\nuniform float pixelRatio;\\nuniform bool constPointSize;\\nuniform sampler2D palette;\\nuniform vec2 paletteSize;\\n\\nconst float maxSize = 100.;\\n\\nvarying vec4 fragColor, fragBorderColor;\\nvarying float fragBorderRadius, fragWidth;\\n\\nfloat pointSizeScale = (constPointSize) ? 2. : pixelRatio;\\n\\nbool isDirect = (paletteSize.x < 1.);\\n\\nvec4 getColor(vec4 id) {\\n  return isDirect ? id / 255. : texture2D(palette,\\n    vec2(\\n      (id.x + .5) / paletteSize.x,\\n      (id.y + .5) / paletteSize.y\\n    )\\n  );\\n}\\n\\nvoid main() {\\n  // ignore inactive points\\n  if (isActive == 0.) return;\\n\\n  vec2 position = vec2(x, y);\\n  vec2 positionFract = vec2(xFract, yFract);\\n\\n  vec4 color = getColor(colorId);\\n  vec4 borderColor = getColor(borderColorId);\\n\\n  float size = size * maxSize / 255.;\\n  float borderSize = borderSize * maxSize / 255.;\\n\\n  gl_PointSize = (size + borderSize) * pointSizeScale;\\n\\n  vec2 pos = (position + translate) * scale\\n      + (positionFract + translateFract) * scale\\n      + (position + translate) * scaleFract\\n      + (positionFract + translateFract) * scaleFract;\\n\\n  gl_Position = vec4(pos * 2. - 1., 0., 1.);\\n\\n  fragBorderRadius = 1. - 2. * borderSize / (size + borderSize);\\n  fragColor = color;\\n  fragBorderColor = borderColor.a == 0. || borderSize == 0. ? vec4(color.rgb, 0.) : borderColor;\\n  fragWidth = 1. / gl_PointSize;\\n}\\n\"]),m&&(l.frag=l.frag.replace(\"smoothstep\",\"smoothStep\"),s.frag=s.frag.replace(\"smoothstep\",\"smoothStep\")),this.drawCircle=t(l)}b.defaults={color:\"black\",borderColor:\"transparent\",borderSize:0,size:12,opacity:1,marker:void 0,viewport:null,range:null,pixelSize:null,count:0,offset:0,bounds:null,positions:[],snap:1e4},b.prototype.render=function(){return arguments.length&&this.update.apply(this,arguments),this.draw(),this},b.prototype.draw=function(){for(var t=this,e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];var i=this.groups;if(1===r.length&&Array.isArray(r[0])&&(null===r[0][0]||Array.isArray(r[0][0]))&&(r=r[0]),this.regl._refresh(),r.length)for(var a=0;a<r.length;a++)this.drawItem(a,r[a]);else i.forEach((function(e,r){t.drawItem(r)}));return this},b.prototype.drawItem=function(t,e){var r=this.groups,n=r[t];if(\"number\"==typeof e&&(t=e,n=r[e],e=null),n&&n.count&&n.opacity){n.activation[0]&&this.drawCircle(this.getMarkerDrawOptions(0,n,e));for(var a=[],o=1;o<n.activation.length;o++)n.activation[o]&&(!0===n.activation[o]||n.activation[o].data.length)&&a.push.apply(a,i(this.getMarkerDrawOptions(o,n,e)));a.length&&this.drawMarker(a)}},b.prototype.getMarkerDrawOptions=function(t,e,r){var i=e.range,a=e.tree,o=e.viewport,s=e.activation,l=e.selectionBuffer,c=e.count;this.regl;if(!a)return r?[f({},e,{markerTexture:this.markerTextures[t],activation:s[t],count:r.length,elements:r,offset:0})]:[f({},e,{markerTexture:this.markerTextures[t],activation:s[t],offset:0})];var u=[],h=a.range(i,{lod:!0,px:[(i[2]-i[0])/o.width,(i[3]-i[1])/o.height]});if(r){for(var p=s[t].data,d=new Uint8Array(c),g=0;g<r.length;g++){var m=r[g];d[m]=p?p[m]:1}l.subdata(d)}for(var v=h.length;v--;){var y=n(h[v],2),x=y[0],b=y[1];u.push(f({},e,{markerTexture:this.markerTextures[t],activation:r?l:s[t],offset:x,count:b-x}))}return u},b.prototype.update=function(){for(var t=this,e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];if(r.length){1===r.length&&Array.isArray(r[0])&&(r=r[0]);var i=this.groups,a=this.gl,o=this.regl,s=this.maxSize,c=this.maxColors,h=this.palette;this.groups=i=r.map((function(e,r){var n=i[r];if(void 0===e)return n;null===e?e={positions:null}:\"function\"==typeof e?e={ondraw:e}:\"number\"==typeof e[0]&&(e={positions:e}),null===(e=p(e,{positions:\"positions data points\",snap:\"snap cluster lod tree\",size:\"sizes size radius\",borderSize:\"borderSizes borderSize border-size bordersize borderWidth borderWidths border-width borderwidth stroke-width strokeWidth strokewidth outline\",color:\"colors color fill fill-color fillColor\",borderColor:\"borderColors borderColor stroke stroke-color strokeColor\",marker:\"markers marker shape\",range:\"range dataBox databox\",viewport:\"viewport viewPort viewBox viewbox\",opacity:\"opacity alpha transparency\",bounds:\"bound bounds boundaries limits\",tooManyColors:\"tooManyColors palette paletteMode optimizePalette enablePalette\"})).positions&&(e.positions=[]),null!=e.tooManyColors&&(t.tooManyColors=e.tooManyColors),n||(i[r]=n={id:r,scale:null,translate:null,scaleFract:null,translateFract:null,activation:[],selectionBuffer:o.buffer({data:new Uint8Array(0),usage:\"stream\",type:\"uint8\"}),sizeBuffer:o.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"uint8\"}),colorBuffer:o.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"uint8\"}),positionBuffer:o.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"float\"}),positionFractBuffer:o.buffer({data:new Uint8Array(0),usage:\"dynamic\",type:\"float\"})},e=f({},b.defaults,e)),e.positions&&!(\"marker\"in e)&&(e.marker=n.marker,delete n.marker),e.marker&&!(\"positions\"in e)&&(e.positions=n.positions,delete n.positions);var m=0,x=0;if(d(n,e,[{snap:!0,size:function(t,e){return null==t&&(t=b.defaults.size),m+=t&&t.length?1:0,t},borderSize:function(t,e){return null==t&&(t=b.defaults.borderSize),m+=t&&t.length?1:0,t},opacity:parseFloat,color:function(e,r){return null==e&&(e=b.defaults.color),e=t.updateColor(e),x++,e},borderColor:function(e,r){return null==e&&(e=b.defaults.borderColor),e=t.updateColor(e),x++,e},bounds:function(t,e,r){return\"range\"in r||(r.range=null),t},positions:function(t,e,r){var n=e.snap,i=e.positionBuffer,a=e.positionFractBuffer,s=e.selectionBuffer;if(t.x||t.y)return t.x.length?e.xAttr={buffer:o.buffer(t.x),offset:0,stride:4,count:t.x.length}:e.xAttr={buffer:t.x.buffer,offset:4*t.x.offset||0,stride:4*(t.x.stride||1),count:t.x.count},t.y.length?e.yAttr={buffer:o.buffer(t.y),offset:0,stride:4,count:t.y.length}:e.yAttr={buffer:t.y.buffer,offset:4*t.y.offset||0,stride:4*(t.y.stride||1),count:t.y.count},e.count=Math.max(e.xAttr.count,e.yAttr.count),t;t=g(t,\"float64\");var c=e.count=Math.floor(t.length/2),f=e.bounds=c?l(t,2):null;if(r.range||e.range||(delete e.range,r.range=f),r.marker||e.marker||(delete e.marker,r.marker=null),n&&(!0===n||c>n)?e.tree=u(t,{bounds:f}):n&&n.length&&(e.tree=n),e.tree){var h={primitive:\"points\",usage:\"static\",data:e.tree,type:\"uint32\"};e.elements?e.elements(h):e.elements=o.elements(h)}return i({data:v.float(t),usage:\"dynamic\"}),a({data:v.fract(t),usage:\"dynamic\"}),s({data:new Uint8Array(c),type:\"uint8\",usage:\"stream\"}),t}},{marker:function(e,r,n){var i=r.activation;if(i.forEach((function(t){return t&&t.destroy&&t.destroy()})),i.length=0,e&&\"number\"!=typeof e[0]){for(var a=[],s=0,l=Math.min(e.length,r.count);s<l;s++){var c=t.addMarker(e[s]);a[c]||(a[c]=new Uint8Array(r.count)),a[c][s]=1}for(var u=0;u<a.length;u++)if(a[u]){var f={data:a[u],type:\"uint8\",usage:\"static\"};i[u]?i[u](f):i[u]=o.buffer(f),i[u].data=a[u]}}else{i[t.addMarker(e)]=!0}return e},range:function(t,e,r){var n=e.bounds;if(n)return t||(t=n),e.scale=[1/(t[2]-t[0]),1/(t[3]-t[1])],e.translate=[-t[0],-t[1]],e.scaleFract=v.fract(e.scale),e.translateFract=v.fract(e.translate),t},viewport:function(t){return y(t||[a.drawingBufferWidth,a.drawingBufferHeight])}}]),m){var _=n,w=_.count,T=_.size,k=_.borderSize,M=_.sizeBuffer,A=new Uint8Array(2*w);if(T.length||k.length)for(var S=0;S<w;S++)A[2*S]=Math.round(255*(null==T[S]?T:T[S])/s),A[2*S+1]=Math.round(255*(null==k[S]?k:k[S])/s);M({data:A,usage:\"dynamic\"})}if(x){var E,C=n,L=C.count,I=C.color,P=C.borderColor,z=C.colorBuffer;if(t.tooManyColors){if(I.length||P.length){E=new Uint8Array(8*L);for(var O=0;O<L;O++){var D=I[O];E[8*O]=h[4*D],E[8*O+1]=h[4*D+1],E[8*O+2]=h[4*D+2],E[8*O+3]=h[4*D+3];var R=P[O];E[8*O+4]=h[4*R],E[8*O+5]=h[4*R+1],E[8*O+6]=h[4*R+2],E[8*O+7]=h[4*R+3]}}}else if(I.length||P.length){E=new Uint8Array(4*L+2);for(var F=0;F<L;F++)null!=I[F]&&(E[4*F]=I[F]%c,E[4*F+1]=Math.floor(I[F]/c)),null!=P[F]&&(E[4*F+2]=P[F]%c,E[4*F+3]=Math.floor(P[F]/c))}z({data:E||new Uint8Array(0),type:\"uint8\",usage:\"dynamic\"})}return n}))}},b.prototype.addMarker=function(t){var e,r=this.markerTextures,n=this.regl,i=this.markerCache,a=null==t?0:i.indexOf(t);if(a>=0)return a;if(t instanceof Uint8Array||t instanceof Uint8ClampedArray)e=t;else{e=new Uint8Array(t.length);for(var o=0,s=t.length;o<s;o++)e[o]=255*t[o]}var l=Math.floor(Math.sqrt(e.length));return a=r.length,i.push(t),r.push(n.texture({channels:1,data:e,radius:l,mag:\"linear\",min:\"linear\"})),a},b.prototype.updateColor=function(t){var e=this.paletteIds,r=this.palette,n=this.maxColors;Array.isArray(t)||(t=[t]);var i=[];if(\"number\"==typeof t[0]){var a=[];if(Array.isArray(t))for(var o=0;o<t.length;o+=4)a.push(t.slice(o,o+4));else for(var l=0;l<t.length;l+=4)a.push(t.subarray(l,l+4));t=a}for(var u=0;u<t.length;u++){var f=t[u];f=s(f,\"uint8\");var h=c(f,!1);if(null==e[h]){var p=r.length;e[h]=Math.floor(p/4),r[p]=f[0],r[p+1]=f[1],r[p+2]=f[2],r[p+3]=f[3]}i[u]=e[h]}return!this.tooManyColors&&r.length>4*n&&(this.tooManyColors=!0),this.updatePalette(r),1===i.length?i[0]:i},b.prototype.updatePalette=function(t){if(!this.tooManyColors){var e=this.maxColors,r=this.paletteTexture,n=Math.ceil(.25*t.length/e);if(n>1)for(var i=.25*(t=t.slice()).length%e;i<n*e;i++)t.push(0,0,0,0);r.height<n&&r.resize(e,n),r.subimage({width:Math.min(.25*t.length,e),height:n,data:t},0,0)}},b.prototype.destroy=function(){return this.groups.forEach((function(t){t.sizeBuffer.destroy(),t.positionBuffer.destroy(),t.positionFractBuffer.destroy(),t.colorBuffer.destroy(),t.activation.forEach((function(t){return t&&t.destroy&&t.destroy()})),t.selectionBuffer.destroy(),t.elements&&t.elements.destroy()})),this.groups.length=0,this.paletteTexture.destroy(),this.markerTextures.forEach((function(t){return t&&t.destroy&&t.destroy()})),this};var _=t(\"object-assign\");e.exports=function(t,e){var r=new x(t,e),n=r.render.bind(r);return _(n,{render:n,update:r.update.bind(r),draw:r.draw.bind(r),destroy:r.destroy.bind(r),regl:r.regl,gl:r.gl,canvas:r.gl.canvas,groups:r.groups,markers:r.markerCache,palette:r.palette}),n}},{\"@plotly/point-cluster\":57,\"array-bounds\":70,\"color-id\":123,\"color-normalize\":125,\"flatten-vertex-data\":244,glslify:538,\"is-iexplorer\":466,\"object-assign\":499,\"parse-rect\":504,\"pick-by-alias\":511,\"to-float32\":577,\"update-diff\":599}],538:[function(t,e,r){arguments[4][257][0].apply(r,arguments)},{dup:257}],539:[function(t,e,r){\"use strict\";var n=t(\"regl-scatter2d\"),i=t(\"pick-by-alias\"),a=t(\"array-bounds\"),o=t(\"raf\"),s=t(\"array-range\"),l=t(\"parse-rect\"),c=t(\"flatten-vertex-data\");function u(t,e){if(!(this instanceof u))return new u(t,e);this.traces=[],this.passes={},this.regl=t,this.scatter=n(t),this.canvas=this.scatter.canvas}function f(t,e,r){return(null!=t.id?t.id:t)<<16|(255&e)<<8|255&r}function h(t,e,r){var n,i,a,o,s=t[e],l=t[r];return s.length>2?(s[0],s[2],n=s[1],i=s[3]):s.length?(n=s[0],i=s[1]):(s.x,n=s.y,s.x+s.width,i=s.y+s.height),l.length>2?(a=l[0],o=l[2],l[1],l[3]):l.length?(a=l[0],o=l[1]):(a=l.x,l.y,o=l.x+l.width,l.y+l.height),[a,n,o,i]}function p(t){if(\"number\"==typeof t)return[t,t,t,t];if(2===t.length)return[t[0],t[1],t[0],t[1]];var e=l(t);return[e.x,e.y,e.x+e.width,e.y+e.height]}e.exports=u,u.prototype.render=function(){for(var t,e=this,r=[],n=arguments.length;n--;)r[n]=arguments[n];return r.length&&(t=this).update.apply(t,r),this.regl.attributes.preserveDrawingBuffer?this.draw():(this.dirty?null==this.planned&&(this.planned=o((function(){e.draw(),e.dirty=!0,e.planned=null}))):(this.draw(),this.dirty=!0,o((function(){e.dirty=!1}))),this)},u.prototype.update=function(){for(var t,e=[],r=arguments.length;r--;)e[r]=arguments[r];if(e.length){for(var n=0;n<e.length;n++)this.updateItem(n,e[n]);this.traces=this.traces.filter(Boolean);for(var i=[],a=0,o=0;o<this.traces.length;o++){for(var s=this.traces[o],l=this.traces[o].passes,c=0;c<l.length;c++)i.push(this.passes[l[c]]);s.passOffset=a,a+=s.passes.length}return(t=this.scatter).update.apply(t,i),this}},u.prototype.updateItem=function(t,e){var r=this.regl;if(null===e)return this.traces[t]=null,this;if(!e)return this;var n,o=i(e,{data:\"data items columns rows values dimensions samples x\",snap:\"snap cluster\",size:\"sizes size radius\",color:\"colors color fill fill-color fillColor\",opacity:\"opacity alpha transparency opaque\",borderSize:\"borderSizes borderSize border-size bordersize borderWidth borderWidths border-width borderwidth stroke-width strokeWidth strokewidth outline\",borderColor:\"borderColors borderColor bordercolor stroke stroke-color strokeColor\",marker:\"markers marker shape\",range:\"range ranges databox dataBox\",viewport:\"viewport viewBox viewbox\",domain:\"domain domains area areas\",padding:\"pad padding paddings pads margin margins\",transpose:\"transpose transposed\",diagonal:\"diagonal diag showDiagonal\",upper:\"upper up top upperhalf upperHalf showupperhalf showUpper showUpperHalf\",lower:\"lower low bottom lowerhalf lowerHalf showlowerhalf showLowerHalf showLower\"}),s=this.traces[t]||(this.traces[t]={id:t,buffer:r.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array}),color:\"black\",marker:null,size:12,borderColor:\"transparent\",borderSize:1,viewport:l([r._gl.drawingBufferWidth,r._gl.drawingBufferHeight]),padding:[0,0,0,0],opacity:1,diagonal:!0,upper:!0,lower:!0});if(null!=o.color&&(s.color=o.color),null!=o.size&&(s.size=o.size),null!=o.marker&&(s.marker=o.marker),null!=o.borderColor&&(s.borderColor=o.borderColor),null!=o.borderSize&&(s.borderSize=o.borderSize),null!=o.opacity&&(s.opacity=o.opacity),o.viewport&&(s.viewport=l(o.viewport)),null!=o.diagonal&&(s.diagonal=o.diagonal),null!=o.upper&&(s.upper=o.upper),null!=o.lower&&(s.lower=o.lower),o.data){s.buffer(c(o.data)),s.columns=o.data.length,s.count=o.data[0].length,s.bounds=[];for(var u=0;u<s.columns;u++)s.bounds[u]=a(o.data[u],1)}o.range&&(s.range=o.range,n=s.range&&\"number\"!=typeof s.range[0]),o.domain&&(s.domain=o.domain);var d=!1;null!=o.padding&&(Array.isArray(o.padding)&&o.padding.length===s.columns&&\"number\"==typeof o.padding[o.padding.length-1]?(s.padding=o.padding.map(p),d=!0):s.padding=p(o.padding));var g=s.columns,m=s.count,v=s.viewport.width,y=s.viewport.height,x=s.viewport.x,b=s.viewport.y,_=v/g,w=y/g;s.passes=[];for(var T=0;T<g;T++)for(var k=0;k<g;k++)if((s.diagonal||k!==T)&&(s.upper||!(T>k))&&(s.lower||!(T<k))){var M=f(s.id,T,k),A=this.passes[M]||(this.passes[M]={});if(o.data&&(o.transpose?A.positions={x:{buffer:s.buffer,offset:k,count:m,stride:g},y:{buffer:s.buffer,offset:T,count:m,stride:g}}:A.positions={x:{buffer:s.buffer,offset:k*m,count:m},y:{buffer:s.buffer,offset:T*m,count:m}},A.bounds=h(s.bounds,T,k)),o.domain||o.viewport||o.data){var S=d?h(s.padding,T,k):s.padding;if(s.domain){var E=h(s.domain,T,k),C=E[0],L=E[1],I=E[2],P=E[3];A.viewport=[x+C*v+S[0],b+L*y+S[1],x+I*v-S[2],b+P*y-S[3]]}else A.viewport=[x+k*_+_*S[0],b+T*w+w*S[1],x+(k+1)*_-_*S[2],b+(T+1)*w-w*S[3]]}o.color&&(A.color=s.color),o.size&&(A.size=s.size),o.marker&&(A.marker=s.marker),o.borderSize&&(A.borderSize=s.borderSize),o.borderColor&&(A.borderColor=s.borderColor),o.opacity&&(A.opacity=s.opacity),o.range&&(A.range=n?h(s.range,T,k):s.range||A.bounds),s.passes.push(M)}return this},u.prototype.draw=function(){for(var t,e=[],r=arguments.length;r--;)e[r]=arguments[r];if(e.length){for(var n=[],i=0;i<e.length;i++)if(\"number\"==typeof e[i]){var a=this.traces[e[i]],o=a.passes,l=a.passOffset;n.push.apply(n,s(l,l+o.length))}else if(e[i].length){var c=e[i],u=this.traces[i],f=u.passes,h=u.passOffset;f=f.map((function(t,e){n[h+e]=c}))}(t=this.scatter).draw.apply(t,n)}else this.scatter.draw();return this},u.prototype.destroy=function(){return this.traces.forEach((function(t){t.buffer&&t.buffer.destroy&&t.buffer.destroy()})),this.traces=null,this.passes=null,this.scatter.destroy(),this}},{\"array-bounds\":70,\"array-range\":72,\"flatten-vertex-data\":244,\"parse-rect\":504,\"pick-by-alias\":511,raf:528,\"regl-scatter2d\":537}],540:[function(t,e,r){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?e.exports=n():t.createREGL=n()}(this,(function(){function t(t,e){this.id=V++,this.type=t,this.data=e}function e(t){return\"[\"+function t(e){if(0===e.length)return[];var r=e.charAt(0),n=e.charAt(e.length-1);if(1<e.length&&r===n&&('\"'===r||\"'\"===r))return['\"'+e.substr(1,e.length-2).replace(/\\\\/g,\"\\\\\\\\\").replace(/\"/g,'\\\\\"')+'\"'];if(r=/\\[(false|true|null|\\d+|'[^']*'|\"[^\"]*\")\\]/.exec(e))return t(e.substr(0,r.index)).concat(t(r[1])).concat(t(e.substr(r.index+r[0].length)));if(1===(r=e.split(\".\")).length)return['\"'+e.replace(/\\\\/g,\"\\\\\\\\\").replace(/\"/g,'\\\\\"')+'\"'];for(e=[],n=0;n<r.length;++n)e=e.concat(t(r[n]));return e}(t).join(\"][\")+\"]\"}function r(t){return\"string\"==typeof t?t.split():t}function n(t){return\"string\"==typeof t?document.querySelector(t):t}function i(t){var e,i,a,o,s=t||{};t={};var l=[],c=[],u=\"undefined\"==typeof window?1:window.devicePixelRatio,f=!1,h=function(t){},p=function(){};if(\"string\"==typeof s?e=document.querySelector(s):\"object\"==typeof s&&(\"string\"==typeof s.nodeName&&\"function\"==typeof s.appendChild&&\"function\"==typeof s.getBoundingClientRect?e=s:\"function\"==typeof s.drawArrays||\"function\"==typeof s.drawElements?a=(o=s).canvas:(\"gl\"in s?o=s.gl:\"canvas\"in s?a=n(s.canvas):\"container\"in s&&(i=n(s.container)),\"attributes\"in s&&(t=s.attributes),\"extensions\"in s&&(l=r(s.extensions)),\"optionalExtensions\"in s&&(c=r(s.optionalExtensions)),\"onDone\"in s&&(h=s.onDone),\"profile\"in s&&(f=!!s.profile),\"pixelRatio\"in s&&(u=+s.pixelRatio))),e&&(\"canvas\"===e.nodeName.toLowerCase()?a=e:i=e),!o){if(!a){if(!(e=function(t,e,r){function n(){var e=window.innerWidth,n=window.innerHeight;t!==document.body&&(e=(n=t.getBoundingClientRect()).right-n.left,n=n.bottom-n.top),a.width=r*e,a.height=r*n,U(a.style,{width:e+\"px\",height:n+\"px\"})}var i,a=document.createElement(\"canvas\");return U(a.style,{border:0,margin:0,padding:0,top:0,left:0}),t.appendChild(a),t===document.body&&(a.style.position=\"absolute\",U(t.style,{margin:0,padding:0})),t!==document.body&&\"function\"==typeof ResizeObserver?(i=new ResizeObserver((function(){setTimeout(n)}))).observe(t):window.addEventListener(\"resize\",n,!1),n(),{canvas:a,onDestroy:function(){i?i.disconnect():window.removeEventListener(\"resize\",n),t.removeChild(a)}}}(i||document.body,0,u)))return null;a=e.canvas,p=e.onDestroy}void 0===t.premultipliedAlpha&&(t.premultipliedAlpha=!0),o=function(t,e){function r(r){try{return t.getContext(r,e)}catch(t){return null}}return r(\"webgl\")||r(\"experimental-webgl\")||r(\"webgl-experimental\")}(a,t)}return o?{gl:o,canvas:a,container:i,extensions:l,optionalExtensions:c,pixelRatio:u,profile:f,onDone:h,onDestroy:p}:(p(),h(\"webgl not supported, try upgrading your browser or graphics drivers http://get.webgl.org\"),null)}function a(t,e){for(var r=Array(t),n=0;n<t;++n)r[n]=e(n);return r}function o(t){var e,r;return e=(65535<t)<<4,e|=r=(255<(t>>>=e))<<3,(e|=r=(15<(t>>>=r))<<2)|(r=(3<(t>>>=r))<<1)|t>>>r>>1}function s(){function t(t){t:{for(var e=16;268435456>=e;e*=16)if(t<=e){t=e;break t}t=0}return 0<(e=r[o(t)>>2]).length?e.pop():new ArrayBuffer(t)}function e(t){r[o(t.byteLength)>>2].push(t)}var r=a(8,(function(){return[]}));return{alloc:t,free:e,allocType:function(e,r){var n=null;switch(e){case 5120:n=new Int8Array(t(r),0,r);break;case 5121:n=new Uint8Array(t(r),0,r);break;case 5122:n=new Int16Array(t(2*r),0,r);break;case 5123:n=new Uint16Array(t(2*r),0,r);break;case 5124:n=new Int32Array(t(4*r),0,r);break;case 5125:n=new Uint32Array(t(4*r),0,r);break;case 5126:n=new Float32Array(t(4*r),0,r);break;default:return null}return n.length!==r?n.subarray(0,r):n},freeType:function(t){e(t.buffer)}}}function l(t){return!!t&&\"object\"==typeof t&&Array.isArray(t.shape)&&Array.isArray(t.stride)&&\"number\"==typeof t.offset&&t.shape.length===t.stride.length&&(Array.isArray(t.data)||X(t.data))}function c(t,e,r,n,i,a){for(var o=0;o<e;++o)for(var s=t[o],l=0;l<r;++l)for(var c=s[l],u=0;u<n;++u)i[a++]=c[u]}function u(t){return 0|K[Object.prototype.toString.call(t)]}function f(t,e){for(var r=0;r<e.length;++r)t[r]=e[r]}function h(t,e,r,n,i,a,o){for(var s=0,l=0;l<r;++l)for(var c=0;c<n;++c)t[s++]=e[i*l+a*c+o]}function p(t,e,r,n){function i(e){this.id=c++,this.buffer=t.createBuffer(),this.type=e,this.usage=35044,this.byteLength=0,this.dimension=1,this.dtype=5121,this.persistentData=null,r.profile&&(this.stats={size:0})}function a(e,r,n){e.byteLength=r.byteLength,t.bufferData(e.type,r,n)}function o(t,e,r,n,i,o){if(t.usage=r,Array.isArray(e)){if(t.dtype=n||5126,0<e.length)if(Array.isArray(e[0])){i=et(e);for(var s=n=1;s<i.length;++s)n*=i[s];t.dimension=n,a(t,e=tt(e,i,t.dtype),r),o?t.persistentData=e:Y.freeType(e)}else\"number\"==typeof e[0]?(t.dimension=i,f(i=Y.allocType(t.dtype,e.length),e),a(t,i,r),o?t.persistentData=i:Y.freeType(i)):X(e[0])&&(t.dimension=e[0].length,t.dtype=n||u(e[0])||5126,a(t,e=tt(e,[e.length,e[0].length],t.dtype),r),o?t.persistentData=e:Y.freeType(e))}else if(X(e))t.dtype=n||u(e),t.dimension=i,a(t,e,r),o&&(t.persistentData=new Uint8Array(new Uint8Array(e.buffer)));else if(l(e)){i=e.shape;var c=e.stride,p=(s=e.offset,0),d=0,g=0,m=0;1===i.length?(p=i[0],d=1,g=c[0],m=0):2===i.length&&(p=i[0],d=i[1],g=c[0],m=c[1]),t.dtype=n||u(e.data)||5126,t.dimension=d,h(i=Y.allocType(t.dtype,p*d),e.data,p,d,g,m,s),a(t,i,r),o?t.persistentData=i:Y.freeType(i)}else e instanceof ArrayBuffer&&(t.dtype=5121,t.dimension=i,a(t,e,r),o&&(t.persistentData=new Uint8Array(new Uint8Array(e))))}function s(r){e.bufferCount--,n(r),t.deleteBuffer(r.buffer),r.buffer=null,delete p[r.id]}var c=0,p={};i.prototype.bind=function(){t.bindBuffer(this.type,this.buffer)},i.prototype.destroy=function(){s(this)};var d=[];return r.profile&&(e.getTotalBufferSize=function(){var t=0;return Object.keys(p).forEach((function(e){t+=p[e].stats.size})),t}),{create:function(n,a,c,d){function g(e){var n=35044,i=null,a=0,s=0,c=1;return Array.isArray(e)||X(e)||l(e)||e instanceof ArrayBuffer?i=e:\"number\"==typeof e?a=0|e:e&&(\"data\"in e&&(i=e.data),\"usage\"in e&&(n=$[e.usage]),\"type\"in e&&(s=Q[e.type]),\"dimension\"in e&&(c=0|e.dimension),\"length\"in e&&(a=0|e.length)),m.bind(),i?o(m,i,n,s,c,d):(a&&t.bufferData(m.type,a,n),m.dtype=s||5121,m.usage=n,m.dimension=c,m.byteLength=a),r.profile&&(m.stats.size=m.byteLength*rt[m.dtype]),g}e.bufferCount++;var m=new i(a);return p[m.id]=m,c||g(n),g._reglType=\"buffer\",g._buffer=m,g.subdata=function(e,r){var n,i=0|(r||0);if(m.bind(),X(e)||e instanceof ArrayBuffer)t.bufferSubData(m.type,i,e);else if(Array.isArray(e)){if(0<e.length)if(\"number\"==typeof e[0]){var a=Y.allocType(m.dtype,e.length);f(a,e),t.bufferSubData(m.type,i,a),Y.freeType(a)}else(Array.isArray(e[0])||X(e[0]))&&(n=et(e),a=tt(e,n,m.dtype),t.bufferSubData(m.type,i,a),Y.freeType(a))}else if(l(e)){n=e.shape;var o=e.stride,s=a=0,c=0,p=0;1===n.length?(a=n[0],s=1,c=o[0],p=0):2===n.length&&(a=n[0],s=n[1],c=o[0],p=o[1]),n=Array.isArray(e.data)?m.dtype:u(e.data),h(n=Y.allocType(n,a*s),e.data,a,s,c,p,e.offset),t.bufferSubData(m.type,i,n),Y.freeType(n)}return g},r.profile&&(g.stats=m.stats),g.destroy=function(){s(m)},g},createStream:function(t,e){var r=d.pop();return r||(r=new i(t)),r.bind(),o(r,e,35040,0,1,!1),r},destroyStream:function(t){d.push(t)},clear:function(){Z(p).forEach(s),d.forEach(s)},getBuffer:function(t){return t&&t._buffer instanceof i?t._buffer:null},restore:function(){Z(p).forEach((function(e){e.buffer=t.createBuffer(),t.bindBuffer(e.type,e.buffer),t.bufferData(e.type,e.persistentData||e.byteLength,e.usage)}))},_initBuffer:o}}function d(t,e,r,n){function i(t){this.id=c++,s[this.id]=this,this.buffer=t,this.primType=4,this.type=this.vertCount=0}function a(n,i,a,o,s,c,u){var f;if(n.buffer.bind(),i?((f=u)||X(i)&&(!l(i)||X(i.data))||(f=e.oes_element_index_uint?5125:5123),r._initBuffer(n.buffer,i,a,f,3)):(t.bufferData(34963,c,a),n.buffer.dtype=f||5121,n.buffer.usage=a,n.buffer.dimension=3,n.buffer.byteLength=c),f=u,!u){switch(n.buffer.dtype){case 5121:case 5120:f=5121;break;case 5123:case 5122:f=5123;break;case 5125:case 5124:f=5125}n.buffer.dtype=f}n.type=f,0>(i=s)&&(i=n.buffer.byteLength,5123===f?i>>=1:5125===f&&(i>>=2)),n.vertCount=i,i=o,0>o&&(i=4,1===(o=n.buffer.dimension)&&(i=0),2===o&&(i=1),3===o&&(i=4)),n.primType=i}function o(t){n.elementsCount--,delete s[t.id],t.buffer.destroy(),t.buffer=null}var s={},c=0,u={uint8:5121,uint16:5123};e.oes_element_index_uint&&(u.uint32=5125),i.prototype.bind=function(){this.buffer.bind()};var f=[];return{create:function(t,e){function s(t){if(t)if(\"number\"==typeof t)c(t),f.primType=4,f.vertCount=0|t,f.type=5121;else{var e=null,r=35044,n=-1,i=-1,o=0,h=0;Array.isArray(t)||X(t)||l(t)?e=t:(\"data\"in t&&(e=t.data),\"usage\"in t&&(r=$[t.usage]),\"primitive\"in t&&(n=nt[t.primitive]),\"count\"in t&&(i=0|t.count),\"type\"in t&&(h=u[t.type]),\"length\"in t?o=0|t.length:(o=i,5123===h||5122===h?o*=2:5125!==h&&5124!==h||(o*=4))),a(f,e,r,n,i,o,h)}else c(),f.primType=4,f.vertCount=0,f.type=5121;return s}var c=r.create(null,34963,!0),f=new i(c._buffer);return n.elementsCount++,s(t),s._reglType=\"elements\",s._elements=f,s.subdata=function(t,e){return c.subdata(t,e),s},s.destroy=function(){o(f)},s},createStream:function(t){var e=f.pop();return e||(e=new i(r.create(null,34963,!0,!1)._buffer)),a(e,t,35040,-1,-1,0,0),e},destroyStream:function(t){f.push(t)},getElements:function(t){return\"function\"==typeof t&&t._elements instanceof i?t._elements:null},clear:function(){Z(s).forEach(o)}}}function g(t){for(var e=Y.allocType(5123,t.length),r=0;r<t.length;++r)if(isNaN(t[r]))e[r]=65535;else if(1/0===t[r])e[r]=31744;else if(-1/0===t[r])e[r]=64512;else{it[0]=t[r];var n=(a=at[0])>>>31<<15,i=(a<<1>>>24)-127,a=a>>13&1023;e[r]=-24>i?n:-14>i?n+(a+1024>>-14-i):15<i?n+31744:n+(i+15<<10)+a}return e}function m(t){return Array.isArray(t)||X(t)}function v(t){return\"[object \"+t+\"]\"}function y(t){return Array.isArray(t)&&(0===t.length||\"number\"==typeof t[0])}function x(t){return!(!Array.isArray(t)||0===t.length||!m(t[0]))}function b(t){return Object.prototype.toString.call(t)}function _(t){if(!t)return!1;var e=b(t);return 0<=gt.indexOf(e)||(y(t)||x(t)||l(t))}function w(t,e){36193===t.type?(t.data=g(e),Y.freeType(e)):t.data=e}function T(t,e,r,n,i,a){if(t=\"undefined\"!=typeof vt[t]?vt[t]:lt[t]*mt[e],a&&(t*=6),i){for(n=0;1<=r;)n+=t*r*r,r/=2;return n}return t*r*n}function k(t,e,r,n,i,a,o){function s(){this.format=this.internalformat=6408,this.type=5121,this.flipY=this.premultiplyAlpha=this.compressed=!1,this.unpackAlignment=1,this.colorSpace=37444,this.channels=this.height=this.width=0}function c(t,e){t.internalformat=e.internalformat,t.format=e.format,t.type=e.type,t.compressed=e.compressed,t.premultiplyAlpha=e.premultiplyAlpha,t.flipY=e.flipY,t.unpackAlignment=e.unpackAlignment,t.colorSpace=e.colorSpace,t.width=e.width,t.height=e.height,t.channels=e.channels}function u(t,e){if(\"object\"==typeof e&&e){\"premultiplyAlpha\"in e&&(t.premultiplyAlpha=e.premultiplyAlpha),\"flipY\"in e&&(t.flipY=e.flipY),\"alignment\"in e&&(t.unpackAlignment=e.alignment),\"colorSpace\"in e&&(t.colorSpace=q[e.colorSpace]),\"type\"in e&&(t.type=H[e.type]);var r=t.width,n=t.height,i=t.channels,a=!1;\"shape\"in e?(r=e.shape[0],n=e.shape[1],3===e.shape.length&&(i=e.shape[2],a=!0)):(\"radius\"in e&&(r=n=e.radius),\"width\"in e&&(r=e.width),\"height\"in e&&(n=e.height),\"channels\"in e&&(i=e.channels,a=!0)),t.width=0|r,t.height=0|n,t.channels=0|i,r=!1,\"format\"in e&&(r=e.format,n=t.internalformat=G[r],t.format=at[n],r in H&&!(\"type\"in e)&&(t.type=H[r]),r in W&&(t.compressed=!0),r=!0),!a&&r?t.channels=lt[t.format]:a&&!r&&t.channels!==st[t.format]&&(t.format=t.internalformat=st[t.channels])}}function f(e){t.pixelStorei(37440,e.flipY),t.pixelStorei(37441,e.premultiplyAlpha),t.pixelStorei(37443,e.colorSpace),t.pixelStorei(3317,e.unpackAlignment)}function h(){s.call(this),this.yOffset=this.xOffset=0,this.data=null,this.needsFree=!1,this.element=null,this.needsCopy=!1}function p(t,e){var r=null;if(_(e)?r=e:e&&(u(t,e),\"x\"in e&&(t.xOffset=0|e.x),\"y\"in e&&(t.yOffset=0|e.y),_(e.data)&&(r=e.data)),e.copy){var n=i.viewportWidth,a=i.viewportHeight;t.width=t.width||n-t.xOffset,t.height=t.height||a-t.yOffset,t.needsCopy=!0}else if(r){if(X(r))t.channels=t.channels||4,t.data=r,\"type\"in e||5121!==t.type||(t.type=0|K[Object.prototype.toString.call(r)]);else if(y(r)){switch(t.channels=t.channels||4,a=(n=r).length,t.type){case 5121:case 5123:case 5125:case 5126:(a=Y.allocType(t.type,a)).set(n),t.data=a;break;case 36193:t.data=g(n)}t.alignment=1,t.needsFree=!0}else if(l(r)){n=r.data,Array.isArray(n)||5121!==t.type||(t.type=0|K[Object.prototype.toString.call(n)]);a=r.shape;var o,s,c,f,h=r.stride;3===a.length?(c=a[2],f=h[2]):f=c=1,o=a[0],s=a[1],a=h[0],h=h[1],t.alignment=1,t.width=o,t.height=s,t.channels=c,t.format=t.internalformat=st[c],t.needsFree=!0,o=f,r=r.offset,c=t.width,f=t.height,s=t.channels;for(var p=Y.allocType(36193===t.type?5126:t.type,c*f*s),d=0,v=0;v<f;++v)for(var T=0;T<c;++T)for(var k=0;k<s;++k)p[d++]=n[a*T+h*v+o*k+r];w(t,p)}else if(b(r)===ct||b(r)===ut||b(r)===ft)b(r)===ct||b(r)===ut?t.element=r:t.element=r.canvas,t.width=t.element.width,t.height=t.element.height,t.channels=4;else if(b(r)===ht)t.element=r,t.width=r.width,t.height=r.height,t.channels=4;else if(b(r)===pt)t.element=r,t.width=r.naturalWidth,t.height=r.naturalHeight,t.channels=4;else if(b(r)===dt)t.element=r,t.width=r.videoWidth,t.height=r.videoHeight,t.channels=4;else if(x(r)){for(n=t.width||r[0].length,a=t.height||r.length,h=t.channels,h=m(r[0][0])?h||r[0][0].length:h||1,o=J.shape(r),c=1,f=0;f<o.length;++f)c*=o[f];c=Y.allocType(36193===t.type?5126:t.type,c),J.flatten(r,o,\"\",c),w(t,c),t.alignment=1,t.width=n,t.height=a,t.channels=h,t.format=t.internalformat=st[h],t.needsFree=!0}}else t.width=t.width||1,t.height=t.height||1,t.channels=t.channels||4}function d(e,r,i,a,o){var s=e.element,l=e.data,c=e.internalformat,u=e.format,h=e.type,p=e.width,d=e.height;f(e),s?t.texSubImage2D(r,o,i,a,u,h,s):e.compressed?t.compressedTexSubImage2D(r,o,i,a,c,p,d,l):e.needsCopy?(n(),t.copyTexSubImage2D(r,o,i,a,e.xOffset,e.yOffset,p,d)):t.texSubImage2D(r,o,i,a,p,d,u,h,l)}function v(){return gt.pop()||new h}function k(t){t.needsFree&&Y.freeType(t.data),h.call(t),gt.push(t)}function M(){s.call(this),this.genMipmaps=!1,this.mipmapHint=4352,this.mipmask=0,this.images=Array(16)}function A(t,e,r){var n=t.images[0]=v();t.mipmask=1,n.width=t.width=e,n.height=t.height=r,n.channels=t.channels=4}function S(t,e){var r=null;if(_(e))c(r=t.images[0]=v(),t),p(r,e),t.mipmask=1;else if(u(t,e),Array.isArray(e.mipmap))for(var n=e.mipmap,i=0;i<n.length;++i)c(r=t.images[i]=v(),t),r.width>>=i,r.height>>=i,p(r,n[i]),t.mipmask|=1<<i;else c(r=t.images[0]=v(),t),p(r,e),t.mipmask=1;c(t,t.images[0])}function E(e,r){for(var i=e.images,a=0;a<i.length&&i[a];++a){var o=i[a],s=r,l=a,c=o.element,u=o.data,h=o.internalformat,p=o.format,d=o.type,g=o.width,m=o.height;f(o),c?t.texImage2D(s,l,p,p,d,c):o.compressed?t.compressedTexImage2D(s,l,h,g,m,0,u):o.needsCopy?(n(),t.copyTexImage2D(s,l,p,o.xOffset,o.yOffset,g,m,0)):t.texImage2D(s,l,p,g,m,0,p,d,u||null)}}function C(){var t=mt.pop()||new M;s.call(t);for(var e=t.mipmask=0;16>e;++e)t.images[e]=null;return t}function L(t){for(var e=t.images,r=0;r<e.length;++r)e[r]&&k(e[r]),e[r]=null;mt.push(t)}function I(){this.magFilter=this.minFilter=9728,this.wrapT=this.wrapS=33071,this.anisotropic=1,this.genMipmaps=!1,this.mipmapHint=4352}function P(t,e){\"min\"in e&&(t.minFilter=V[e.min],0<=ot.indexOf(t.minFilter)&&!(\"faces\"in e)&&(t.genMipmaps=!0)),\"mag\"in e&&(t.magFilter=j[e.mag]);var r=t.wrapS,n=t.wrapT;if(\"wrap\"in e){var i=e.wrap;\"string\"==typeof i?r=n=N[i]:Array.isArray(i)&&(r=N[i[0]],n=N[i[1]])}else\"wrapS\"in e&&(r=N[e.wrapS]),\"wrapT\"in e&&(n=N[e.wrapT]);if(t.wrapS=r,t.wrapT=n,\"anisotropic\"in e&&(t.anisotropic=e.anisotropic),\"mipmap\"in e){switch(r=!1,typeof e.mipmap){case\"string\":t.mipmapHint=B[e.mipmap],r=t.genMipmaps=!0;break;case\"boolean\":r=t.genMipmaps=e.mipmap;break;case\"object\":t.genMipmaps=!1,r=!0}!r||\"min\"in e||(t.minFilter=9984)}}function z(r,n){t.texParameteri(n,10241,r.minFilter),t.texParameteri(n,10240,r.magFilter),t.texParameteri(n,10242,r.wrapS),t.texParameteri(n,10243,r.wrapT),e.ext_texture_filter_anisotropic&&t.texParameteri(n,34046,r.anisotropic),r.genMipmaps&&(t.hint(33170,r.mipmapHint),t.generateMipmap(n))}function O(e){s.call(this),this.mipmask=0,this.internalformat=6408,this.id=vt++,this.refCount=1,this.target=e,this.texture=t.createTexture(),this.unit=-1,this.bindCount=0,this.texInfo=new I,o.profile&&(this.stats={size:0})}function D(e){t.activeTexture(33984),t.bindTexture(e.target,e.texture)}function R(){var e=bt[0];e?t.bindTexture(e.target,e.texture):t.bindTexture(3553,null)}function F(e){var r=e.texture,n=e.unit,i=e.target;0<=n&&(t.activeTexture(33984+n),t.bindTexture(i,null),bt[n]=null),t.deleteTexture(r),e.texture=null,e.params=null,e.pixels=null,e.refCount=0,delete yt[e.id],a.textureCount--}var B={\"don't care\":4352,\"dont care\":4352,nice:4354,fast:4353},N={repeat:10497,clamp:33071,mirror:33648},j={nearest:9728,linear:9729},V=U({mipmap:9987,\"nearest mipmap nearest\":9984,\"linear mipmap nearest\":9985,\"nearest mipmap linear\":9986,\"linear mipmap linear\":9987},j),q={none:0,browser:37444},H={uint8:5121,rgba4:32819,rgb565:33635,\"rgb5 a1\":32820},G={alpha:6406,luminance:6409,\"luminance alpha\":6410,rgb:6407,rgba:6408,rgba4:32854,\"rgb5 a1\":32855,rgb565:36194},W={};e.ext_srgb&&(G.srgb=35904,G.srgba=35906),e.oes_texture_float&&(H.float32=H.float=5126),e.oes_texture_half_float&&(H.float16=H[\"half float\"]=36193),e.webgl_depth_texture&&(U(G,{depth:6402,\"depth stencil\":34041}),U(H,{uint16:5123,uint32:5125,\"depth stencil\":34042})),e.webgl_compressed_texture_s3tc&&U(W,{\"rgb s3tc dxt1\":33776,\"rgba s3tc dxt1\":33777,\"rgba s3tc dxt3\":33778,\"rgba s3tc dxt5\":33779}),e.webgl_compressed_texture_atc&&U(W,{\"rgb atc\":35986,\"rgba atc explicit alpha\":35987,\"rgba atc interpolated alpha\":34798}),e.webgl_compressed_texture_pvrtc&&U(W,{\"rgb pvrtc 4bppv1\":35840,\"rgb pvrtc 2bppv1\":35841,\"rgba pvrtc 4bppv1\":35842,\"rgba pvrtc 2bppv1\":35843}),e.webgl_compressed_texture_etc1&&(W[\"rgb etc1\"]=36196);var Q=Array.prototype.slice.call(t.getParameter(34467));Object.keys(W).forEach((function(t){var e=W[t];0<=Q.indexOf(e)&&(G[t]=e)}));var $=Object.keys(G);r.textureFormats=$;var tt=[];Object.keys(G).forEach((function(t){tt[G[t]]=t}));var et=[];Object.keys(H).forEach((function(t){et[H[t]]=t}));var rt=[];Object.keys(j).forEach((function(t){rt[j[t]]=t}));var nt=[];Object.keys(V).forEach((function(t){nt[V[t]]=t}));var it=[];Object.keys(N).forEach((function(t){it[N[t]]=t}));var at=$.reduce((function(t,r){var n=G[r];return 6409===n||6406===n||6409===n||6410===n||6402===n||34041===n||e.ext_srgb&&(35904===n||35906===n)?t[n]=n:32855===n||0<=r.indexOf(\"rgba\")?t[n]=6408:t[n]=6407,t}),{}),gt=[],mt=[],vt=0,yt={},xt=r.maxTextureUnits,bt=Array(xt).map((function(){return null}));return U(O.prototype,{bind:function(){this.bindCount+=1;var e=this.unit;if(0>e){for(var r=0;r<xt;++r){var n=bt[r];if(n){if(0<n.bindCount)continue;n.unit=-1}bt[r]=this,e=r;break}o.profile&&a.maxTextureUnits<e+1&&(a.maxTextureUnits=e+1),this.unit=e,t.activeTexture(33984+e),t.bindTexture(this.target,this.texture)}return e},unbind:function(){--this.bindCount},decRef:function(){0>=--this.refCount&&F(this)}}),o.profile&&(a.getTotalTextureSize=function(){var t=0;return Object.keys(yt).forEach((function(e){t+=yt[e].stats.size})),t}),{create2D:function(e,r){function n(t,e){var r=i.texInfo;I.call(r);var a=C();return\"number\"==typeof t?A(a,0|t,\"number\"==typeof e?0|e:0|t):t?(P(r,t),S(a,t)):A(a,1,1),r.genMipmaps&&(a.mipmask=(a.width<<1)-1),i.mipmask=a.mipmask,c(i,a),i.internalformat=a.internalformat,n.width=a.width,n.height=a.height,D(i),E(a,3553),z(r,3553),R(),L(a),o.profile&&(i.stats.size=T(i.internalformat,i.type,a.width,a.height,r.genMipmaps,!1)),n.format=tt[i.internalformat],n.type=et[i.type],n.mag=rt[r.magFilter],n.min=nt[r.minFilter],n.wrapS=it[r.wrapS],n.wrapT=it[r.wrapT],n}var i=new O(3553);return yt[i.id]=i,a.textureCount++,n(e,r),n.subimage=function(t,e,r,a){e|=0,r|=0,a|=0;var o=v();return c(o,i),o.width=0,o.height=0,p(o,t),o.width=o.width||(i.width>>a)-e,o.height=o.height||(i.height>>a)-r,D(i),d(o,3553,e,r,a),R(),k(o),n},n.resize=function(e,r){var a=0|e,s=0|r||a;if(a===i.width&&s===i.height)return n;n.width=i.width=a,n.height=i.height=s,D(i);for(var l=0;i.mipmask>>l;++l){var c=a>>l,u=s>>l;if(!c||!u)break;t.texImage2D(3553,l,i.format,c,u,0,i.format,i.type,null)}return R(),o.profile&&(i.stats.size=T(i.internalformat,i.type,a,s,!1,!1)),n},n._reglType=\"texture2d\",n._texture=i,o.profile&&(n.stats=i.stats),n.destroy=function(){i.decRef()},n},createCube:function(e,r,n,i,s,l){function f(t,e,r,n,i,a){var s,l=h.texInfo;for(I.call(l),s=0;6>s;++s)g[s]=C();if(\"number\"!=typeof t&&t){if(\"object\"==typeof t)if(e)S(g[0],t),S(g[1],e),S(g[2],r),S(g[3],n),S(g[4],i),S(g[5],a);else if(P(l,t),u(h,t),\"faces\"in t)for(t=t.faces,s=0;6>s;++s)c(g[s],h),S(g[s],t[s]);else for(s=0;6>s;++s)S(g[s],t)}else for(t=0|t||1,s=0;6>s;++s)A(g[s],t,t);for(c(h,g[0]),h.mipmask=l.genMipmaps?(g[0].width<<1)-1:g[0].mipmask,h.internalformat=g[0].internalformat,f.width=g[0].width,f.height=g[0].height,D(h),s=0;6>s;++s)E(g[s],34069+s);for(z(l,34067),R(),o.profile&&(h.stats.size=T(h.internalformat,h.type,f.width,f.height,l.genMipmaps,!0)),f.format=tt[h.internalformat],f.type=et[h.type],f.mag=rt[l.magFilter],f.min=nt[l.minFilter],f.wrapS=it[l.wrapS],f.wrapT=it[l.wrapT],s=0;6>s;++s)L(g[s]);return f}var h=new O(34067);yt[h.id]=h,a.cubeCount++;var g=Array(6);return f(e,r,n,i,s,l),f.subimage=function(t,e,r,n,i){r|=0,n|=0,i|=0;var a=v();return c(a,h),a.width=0,a.height=0,p(a,e),a.width=a.width||(h.width>>i)-r,a.height=a.height||(h.height>>i)-n,D(h),d(a,34069+t,r,n,i),R(),k(a),f},f.resize=function(e){if((e|=0)!==h.width){f.width=h.width=e,f.height=h.height=e,D(h);for(var r=0;6>r;++r)for(var n=0;h.mipmask>>n;++n)t.texImage2D(34069+r,n,h.format,e>>n,e>>n,0,h.format,h.type,null);return R(),o.profile&&(h.stats.size=T(h.internalformat,h.type,f.width,f.height,!1,!0)),f}},f._reglType=\"textureCube\",f._texture=h,o.profile&&(f.stats=h.stats),f.destroy=function(){h.decRef()},f},clear:function(){for(var e=0;e<xt;++e)t.activeTexture(33984+e),t.bindTexture(3553,null),bt[e]=null;Z(yt).forEach(F),a.cubeCount=0,a.textureCount=0},getTexture:function(t){return null},restore:function(){for(var e=0;e<xt;++e){var r=bt[e];r&&(r.bindCount=0,r.unit=-1,bt[e]=null)}Z(yt).forEach((function(e){e.texture=t.createTexture(),t.bindTexture(e.target,e.texture);for(var r=0;32>r;++r)if(0!=(e.mipmask&1<<r))if(3553===e.target)t.texImage2D(3553,r,e.internalformat,e.width>>r,e.height>>r,0,e.internalformat,e.type,null);else for(var n=0;6>n;++n)t.texImage2D(34069+n,r,e.internalformat,e.width>>r,e.height>>r,0,e.internalformat,e.type,null);z(e.texInfo,e.target)}))}}}function M(t,e,r,n,i,a){function o(t,e,r){this.target=t,this.texture=e,this.renderbuffer=r;var n=t=0;e?(t=e.width,n=e.height):r&&(t=r.width,n=r.height),this.width=t,this.height=n}function s(t){t&&(t.texture&&t.texture._texture.decRef(),t.renderbuffer&&t.renderbuffer._renderbuffer.decRef())}function l(t,e,r){t&&(t.texture?t.texture._texture.refCount+=1:t.renderbuffer._renderbuffer.refCount+=1)}function c(e,r){r&&(r.texture?t.framebufferTexture2D(36160,e,r.target,r.texture._texture.texture,0):t.framebufferRenderbuffer(36160,e,36161,r.renderbuffer._renderbuffer.renderbuffer))}function u(t){var e=3553,r=null,n=null,i=t;return\"object\"==typeof t&&(i=t.data,\"target\"in t&&(e=0|t.target)),\"texture2d\"===(t=i._reglType)||\"textureCube\"===t?r=i:\"renderbuffer\"===t&&(n=i,e=36161),new o(e,r,n)}function f(t,e,r,a,s){return r?((t=n.create2D({width:t,height:e,format:a,type:s}))._texture.refCount=0,new o(3553,t,null)):((t=i.create({width:t,height:e,format:a}))._renderbuffer.refCount=0,new o(36161,null,t))}function h(t){return t&&(t.texture||t.renderbuffer)}function p(t,e,r){t&&(t.texture?t.texture.resize(e,r):t.renderbuffer&&t.renderbuffer.resize(e,r),t.width=e,t.height=r)}function d(){this.id=T++,k[this.id]=this,this.framebuffer=t.createFramebuffer(),this.height=this.width=0,this.colorAttachments=[],this.depthStencilAttachment=this.stencilAttachment=this.depthAttachment=null}function g(t){t.colorAttachments.forEach(s),s(t.depthAttachment),s(t.stencilAttachment),s(t.depthStencilAttachment)}function m(e){t.deleteFramebuffer(e.framebuffer),e.framebuffer=null,a.framebufferCount--,delete k[e.id]}function v(e){var n;t.bindFramebuffer(36160,e.framebuffer);var i=e.colorAttachments;for(n=0;n<i.length;++n)c(36064+n,i[n]);for(n=i.length;n<r.maxColorAttachments;++n)t.framebufferTexture2D(36160,36064+n,3553,null,0);t.framebufferTexture2D(36160,33306,3553,null,0),t.framebufferTexture2D(36160,36096,3553,null,0),t.framebufferTexture2D(36160,36128,3553,null,0),c(36096,e.depthAttachment),c(36128,e.stencilAttachment),c(33306,e.depthStencilAttachment),t.checkFramebufferStatus(36160),t.isContextLost(),t.bindFramebuffer(36160,x.next?x.next.framebuffer:null),x.cur=x.next,t.getError()}function y(t,e){function r(t,e){var i,a=0,o=0,s=!0,c=!0;i=null;var p=!0,d=\"rgba\",m=\"uint8\",y=1,x=null,w=null,T=null,k=!1;\"number\"==typeof t?(a=0|t,o=0|e||a):t?(\"shape\"in t?(a=(o=t.shape)[0],o=o[1]):(\"radius\"in t&&(a=o=t.radius),\"width\"in t&&(a=t.width),\"height\"in t&&(o=t.height)),(\"color\"in t||\"colors\"in t)&&(i=t.color||t.colors,Array.isArray(i)),i||(\"colorCount\"in t&&(y=0|t.colorCount),\"colorTexture\"in t&&(p=!!t.colorTexture,d=\"rgba4\"),\"colorType\"in t&&(m=t.colorType,!p)&&(\"half float\"===m||\"float16\"===m?d=\"rgba16f\":\"float\"!==m&&\"float32\"!==m||(d=\"rgba32f\")),\"colorFormat\"in t&&(d=t.colorFormat,0<=b.indexOf(d)?p=!0:0<=_.indexOf(d)&&(p=!1))),(\"depthTexture\"in t||\"depthStencilTexture\"in t)&&(k=!(!t.depthTexture&&!t.depthStencilTexture)),\"depth\"in t&&(\"boolean\"==typeof t.depth?s=t.depth:(x=t.depth,c=!1)),\"stencil\"in t&&(\"boolean\"==typeof t.stencil?c=t.stencil:(w=t.stencil,s=!1)),\"depthStencil\"in t&&(\"boolean\"==typeof t.depthStencil?s=c=t.depthStencil:(T=t.depthStencil,c=s=!1))):a=o=1;var M=null,A=null,S=null,E=null;if(Array.isArray(i))M=i.map(u);else if(i)M=[u(i)];else for(M=Array(y),i=0;i<y;++i)M[i]=f(a,o,p,d,m);for(a=a||M[0].width,o=o||M[0].height,x?A=u(x):s&&!c&&(A=f(a,o,k,\"depth\",\"uint32\")),w?S=u(w):c&&!s&&(S=f(a,o,!1,\"stencil\",\"uint8\")),T?E=u(T):!x&&!w&&c&&s&&(E=f(a,o,k,\"depth stencil\",\"depth stencil\")),s=null,i=0;i<M.length;++i)l(M[i]),M[i]&&M[i].texture&&(c=bt[M[i].texture._texture.format]*_t[M[i].texture._texture.type],null===s&&(s=c));return l(A),l(S),l(E),g(n),n.width=a,n.height=o,n.colorAttachments=M,n.depthAttachment=A,n.stencilAttachment=S,n.depthStencilAttachment=E,r.color=M.map(h),r.depth=h(A),r.stencil=h(S),r.depthStencil=h(E),r.width=n.width,r.height=n.height,v(n),r}var n=new d;return a.framebufferCount++,r(t,e),U(r,{resize:function(t,e){var i=Math.max(0|t,1),a=Math.max(0|e||i,1);if(i===n.width&&a===n.height)return r;for(var o=n.colorAttachments,s=0;s<o.length;++s)p(o[s],i,a);return p(n.depthAttachment,i,a),p(n.stencilAttachment,i,a),p(n.depthStencilAttachment,i,a),n.width=r.width=i,n.height=r.height=a,v(n),r},_reglType:\"framebuffer\",_framebuffer:n,destroy:function(){m(n),g(n)},use:function(t){x.setFBO({framebuffer:r},t)}})}var x={cur:null,next:null,dirty:!1,setFBO:null},b=[\"rgba\"],_=[\"rgba4\",\"rgb565\",\"rgb5 a1\"];e.ext_srgb&&_.push(\"srgba\"),e.ext_color_buffer_half_float&&_.push(\"rgba16f\",\"rgb16f\"),e.webgl_color_buffer_float&&_.push(\"rgba32f\");var w=[\"uint8\"];e.oes_texture_half_float&&w.push(\"half float\",\"float16\"),e.oes_texture_float&&w.push(\"float\",\"float32\");var T=0,k={};return U(x,{getFramebuffer:function(t){return\"function\"==typeof t&&\"framebuffer\"===t._reglType&&(t=t._framebuffer)instanceof d?t:null},create:y,createCube:function(t){function e(t){var i,a={color:null},o=0,s=null;i=\"rgba\";var l=\"uint8\",c=1;if(\"number\"==typeof t?o=0|t:t?(\"shape\"in t?o=t.shape[0]:(\"radius\"in t&&(o=0|t.radius),\"width\"in t?o=0|t.width:\"height\"in t&&(o=0|t.height)),(\"color\"in t||\"colors\"in t)&&(s=t.color||t.colors,Array.isArray(s)),s||(\"colorCount\"in t&&(c=0|t.colorCount),\"colorType\"in t&&(l=t.colorType),\"colorFormat\"in t&&(i=t.colorFormat)),\"depth\"in t&&(a.depth=t.depth),\"stencil\"in t&&(a.stencil=t.stencil),\"depthStencil\"in t&&(a.depthStencil=t.depthStencil)):o=1,s)if(Array.isArray(s))for(t=[],i=0;i<s.length;++i)t[i]=s[i];else t=[s];else for(t=Array(c),s={radius:o,format:i,type:l},i=0;i<c;++i)t[i]=n.createCube(s);for(a.color=Array(t.length),i=0;i<t.length;++i)c=t[i],o=o||c.width,a.color[i]={target:34069,data:t[i]};for(i=0;6>i;++i){for(c=0;c<t.length;++c)a.color[c].target=34069+i;0<i&&(a.depth=r[0].depth,a.stencil=r[0].stencil,a.depthStencil=r[0].depthStencil),r[i]?r[i](a):r[i]=y(a)}return U(e,{width:o,height:o,color:t})}var r=Array(6);return e(t),U(e,{faces:r,resize:function(t){var n=0|t;if(n===e.width)return e;var i=e.color;for(t=0;t<i.length;++t)i[t].resize(n);for(t=0;6>t;++t)r[t].resize(n);return e.width=e.height=n,e},_reglType:\"framebufferCube\",destroy:function(){r.forEach((function(t){t.destroy()}))}})},clear:function(){Z(k).forEach(m)},restore:function(){x.cur=null,x.next=null,x.dirty=!0,Z(k).forEach((function(e){e.framebuffer=t.createFramebuffer(),v(e)}))}})}function A(){this.w=this.z=this.y=this.x=this.state=0,this.buffer=null,this.size=0,this.normalized=!1,this.type=5126,this.divisor=this.stride=this.offset=0}function S(t,e,r,n,i){function a(){this.id=++c,this.attributes=[];var t=e.oes_vertex_array_object;this.vao=t?t.createVertexArrayOES():null,u[this.id]=this,this.buffers=[]}var o=r.maxAttributes,s=Array(o);for(r=0;r<o;++r)s[r]=new A;var c=0,u={},f={Record:A,scope:{},state:s,currentVAO:null,targetVAO:null,restore:e.oes_vertex_array_object?function(){e.oes_vertex_array_object&&Z(u).forEach((function(t){t.refresh()}))}:function(){},createVAO:function(t){function e(t){for(var n=0;n<r.buffers.length;++n)r.buffers[n].destroy();r.buffers.length=0,(n=r.attributes).length=t.length;for(var a=0;a<t.length;++a){var o=t[a],s=n[a]=new A;Array.isArray(o)||X(o)||l(o)?(o=i.create(o,34962,!1,!0),s.buffer=i.getBuffer(o),s.size=0|s.buffer.dimension,s.normalized=!1,s.type=s.buffer.dtype,s.offset=0,s.stride=0,s.divisor=0,s.state=1,r.buffers.push(o)):i.getBuffer(o)?(s.buffer=i.getBuffer(o),s.size=0|s.buffer.dimension,s.normalized=!1,s.type=s.buffer.dtype,s.offset=0,s.stride=0,s.divisor=0,s.state=1):i.getBuffer(o.buffer)?(s.buffer=i.getBuffer(o.buffer),s.size=0|(+o.size||s.buffer.dimension),s.normalized=!!o.normalized||!1,s.type=\"type\"in o?Q[o.type]:s.buffer.dtype,s.offset=0|(o.offset||0),s.stride=0|(o.stride||0),s.divisor=0|(o.divisor||0),s.state=1):\"x\"in o&&(s.x=+o.x||0,s.y=+o.y||0,s.z=+o.z||0,s.w=+o.w||0,s.state=2)}return r.refresh(),e}var r=new a;return n.vaoCount+=1,e.destroy=function(){r.destroy()},e._vao=r,e._reglType=\"vao\",e(t)},getVAO:function(t){return\"function\"==typeof t&&t._vao?t._vao:null},destroyBuffer:function(e){for(var r=0;r<s.length;++r){var n=s[r];n.buffer===e&&(t.disableVertexAttribArray(r),n.buffer=null)}},setVAO:e.oes_vertex_array_object?function(t){if(t!==f.currentVAO){var r=e.oes_vertex_array_object;t?r.bindVertexArrayOES(t.vao):r.bindVertexArrayOES(null),f.currentVAO=t}}:function(r){if(r!==f.currentVAO){if(r)r.bindAttrs();else for(var n=e.angle_instanced_arrays,i=0;i<s.length;++i){var a=s[i];a.buffer?(t.enableVertexAttribArray(i),t.vertexAttribPointer(i,a.size,a.type,a.normalized,a.stride,a.offfset),n&&n.vertexAttribDivisorANGLE(i,a.divisor)):(t.disableVertexAttribArray(i),t.vertexAttrib4f(i,a.x,a.y,a.z,a.w))}f.currentVAO=r}},clear:e.oes_vertex_array_object?function(){Z(u).forEach((function(t){t.destroy()}))}:function(){}};return a.prototype.bindAttrs=function(){for(var r=e.angle_instanced_arrays,n=this.attributes,i=0;i<n.length;++i){var a=n[i];a.buffer?(t.enableVertexAttribArray(i),t.bindBuffer(34962,a.buffer.buffer),t.vertexAttribPointer(i,a.size,a.type,a.normalized,a.stride,a.offset),r&&r.vertexAttribDivisorANGLE(i,a.divisor)):(t.disableVertexAttribArray(i),t.vertexAttrib4f(i,a.x,a.y,a.z,a.w))}for(r=n.length;r<o;++r)t.disableVertexAttribArray(r)},a.prototype.refresh=function(){var t=e.oes_vertex_array_object;t&&(t.bindVertexArrayOES(this.vao),this.bindAttrs(),f.currentVAO=this)},a.prototype.destroy=function(){if(this.vao){var t=e.oes_vertex_array_object;this===f.currentVAO&&(f.currentVAO=null,t.bindVertexArrayOES(null)),t.deleteVertexArrayOES(this.vao),this.vao=null}u[this.id]&&(delete u[this.id],--n.vaoCount)},f}function E(t,e,r,n){function i(t,e,r,n){this.name=t,this.id=e,this.location=r,this.info=n}function a(t,e){for(var r=0;r<t.length;++r)if(t[r].id===e.id)return void(t[r].location=e.location);t.push(e)}function o(r,n,i){if(!(o=(i=35632===r?c:u)[n])){var a=e.str(n),o=t.createShader(r);t.shaderSource(o,a),t.compileShader(o),i[n]=o}return o}function s(t,e){this.id=p++,this.fragId=t,this.vertId=e,this.program=null,this.uniforms=[],this.attributes=[],n.profile&&(this.stats={uniformsCount:0,attributesCount:0})}function l(r,s,l){var c;c=o(35632,r.fragId);var u=o(35633,r.vertId);if(s=r.program=t.createProgram(),t.attachShader(s,c),t.attachShader(s,u),l)for(c=0;c<l.length;++c)u=l[c],t.bindAttribLocation(s,u[0],u[1]);t.linkProgram(s),u=t.getProgramParameter(s,35718),n.profile&&(r.stats.uniformsCount=u);var f=r.uniforms;for(c=0;c<u;++c)if(l=t.getActiveUniform(s,c))if(1<l.size)for(var h=0;h<l.size;++h){var p=l.name.replace(\"[0]\",\"[\"+h+\"]\");a(f,new i(p,e.id(p),t.getUniformLocation(s,p),l))}else a(f,new i(l.name,e.id(l.name),t.getUniformLocation(s,l.name),l));for(u=t.getProgramParameter(s,35721),n.profile&&(r.stats.attributesCount=u),r=r.attributes,c=0;c<u;++c)(l=t.getActiveAttrib(s,c))&&a(r,new i(l.name,e.id(l.name),t.getAttribLocation(s,l.name),l))}var c={},u={},f={},h=[],p=0;return n.profile&&(r.getMaxUniformsCount=function(){var t=0;return h.forEach((function(e){e.stats.uniformsCount>t&&(t=e.stats.uniformsCount)})),t},r.getMaxAttributesCount=function(){var t=0;return h.forEach((function(e){e.stats.attributesCount>t&&(t=e.stats.attributesCount)})),t}),{clear:function(){var e=t.deleteShader.bind(t);Z(c).forEach(e),c={},Z(u).forEach(e),u={},h.forEach((function(e){t.deleteProgram(e.program)})),h.length=0,f={},r.shaderCount=0},program:function(t,e,n,i){var a=f[e];a||(a=f[e]={});var o=a[t];return o&&!i?o:(e=new s(e,t),r.shaderCount++,l(e,n,i),o||(a[t]=e),h.push(e),e)},restore:function(){c={},u={};for(var t=0;t<h.length;++t)l(h[t],null,h[t].attributes.map((function(t){return[t.location,t.name]})))},shader:o,frag:-1,vert:-1}}function C(t,e,r,n,i,a,o){function s(i){var a;a=null===e.next?5121:e.next.colorAttachments[0].texture._texture.type;var o=0,s=0,l=n.framebufferWidth,c=n.framebufferHeight,u=null;return X(i)?u=i:i&&(o=0|i.x,s=0|i.y,l=0|(i.width||n.framebufferWidth-o),c=0|(i.height||n.framebufferHeight-s),u=i.data||null),r(),i=l*c*4,u||(5121===a?u=new Uint8Array(i):5126===a&&(u=u||new Float32Array(i))),t.pixelStorei(3333,4),t.readPixels(o,s,l,c,6408,a,u),u}return function(t){return t&&\"framebuffer\"in t?function(t){var r;return e.setFBO({framebuffer:t.framebuffer},(function(){r=s(t)})),r}(t):s(t)}}function L(t){return Array.prototype.slice.call(t)}function I(t){return L(t).join(\"\")}function P(){function t(){var t=[],e=[];return U((function(){t.push.apply(t,L(arguments))}),{def:function(){var n=\"v\"+r++;return e.push(n),0<arguments.length&&(t.push(n,\"=\"),t.push.apply(t,L(arguments)),t.push(\";\")),n},toString:function(){return I([0<e.length?\"var \"+e.join(\",\")+\";\":\"\",I(t)])}})}function e(){function e(t,e){n(t,e,\"=\",r.def(t,e),\";\")}var r=t(),n=t(),i=r.toString,a=n.toString;return U((function(){r.apply(r,L(arguments))}),{def:r.def,entry:r,exit:n,save:e,set:function(t,n,i){e(t,n),r(t,n,\"=\",i,\";\")},toString:function(){return i()+a()}})}var r=0,n=[],i=[],a=t(),o={};return{global:a,link:function(t){for(var e=0;e<i.length;++e)if(i[e]===t)return n[e];return e=\"g\"+r++,n.push(e),i.push(t),e},block:t,proc:function(t,r){function n(){var t=\"a\"+i.length;return i.push(t),t}var i=[];r=r||0;for(var a=0;a<r;++a)n();var s=(a=e()).toString;return o[t]=U(a,{arg:n,toString:function(){return I([\"function(\",i.join(),\"){\",s(),\"}\"])}})},scope:e,cond:function(){var t=I(arguments),r=e(),n=e(),i=r.toString,a=n.toString;return U(r,{then:function(){return r.apply(r,L(arguments)),this},else:function(){return n.apply(n,L(arguments)),this},toString:function(){var e=a();return e&&(e=\"else{\"+e+\"}\"),I([\"if(\",t,\"){\",i(),\"}\",e])}})},compile:function(){var t=['\"use strict\";',a,\"return {\"];Object.keys(o).forEach((function(e){t.push('\"',e,'\":',o[e].toString(),\",\")})),t.push(\"}\");var e=I(t).replace(/;/g,\";\\n\").replace(/}/g,\"}\\n\").replace(/{/g,\"{\\n\");return Function.apply(null,n.concat(e)).apply(null,i)}}}function z(t){return Array.isArray(t)||X(t)||l(t)}function O(t){return t.sort((function(t,e){return\"viewport\"===t?-1:\"viewport\"===e?1:t<e?-1:1}))}function D(t,e,r,n){this.thisDep=t,this.contextDep=e,this.propDep=r,this.append=n}function R(t){return t&&!(t.thisDep||t.contextDep||t.propDep)}function F(t){return new D(!1,!1,!1,t)}function B(t,e){var r=t.type;return 0===r?new D(!0,1<=(r=t.data.length),2<=r,e):4===r?new D((r=t.data).thisDep,r.contextDep,r.propDep,e):new D(3===r,2===r,1===r,e)}function N(t,e,r,n,i,o,s,l,c,u,f,h,p,d,g){function v(t){return t.replace(\".\",\"_\")}function y(t,e,r){var n=v(t);rt.push(t),et[n]=tt[n]=!!r,it[n]=e}function x(t,e,r){var n=v(t);rt.push(t),Array.isArray(r)?(tt[n]=r.slice(),et[n]=r.slice()):tt[n]=et[n]=r,at[n]=e}function b(){var t=P(),r=t.link,n=t.global;t.id=lt++,t.batchId=\"0\";var i=r(ot),a=t.shared={props:\"a0\"};Object.keys(ot).forEach((function(t){a[t]=n.def(i,\".\",t)}));var o=t.next={},s=t.current={};Object.keys(at).forEach((function(t){Array.isArray(tt[t])&&(o[t]=n.def(a.next,\".\",t),s[t]=n.def(a.current,\".\",t))}));var l=t.constants={};Object.keys(st).forEach((function(t){l[t]=n.def(JSON.stringify(st[t]))})),t.invoke=function(e,n){switch(n.type){case 0:var i=[\"this\",a.context,a.props,t.batchId];return e.def(r(n.data),\".call(\",i.slice(0,Math.max(n.data.length+1,4)),\")\");case 1:return e.def(a.props,n.data);case 2:return e.def(a.context,n.data);case 3:return e.def(\"this\",n.data);case 4:return n.data.append(t,e),n.data.ref}},t.attribCache={};var c={};return t.scopeAttrib=function(t){if((t=e.id(t))in c)return c[t];var n=u.scope[t];return n||(n=u.scope[t]=new Z),c[t]=r(n)},t}function _(t,e){var r=t.static,n=t.dynamic;if(\"framebuffer\"in r){var i=r.framebuffer;return i?(i=l.getFramebuffer(i),F((function(t,e){var r=t.link(i),n=t.shared;return e.set(n.framebuffer,\".next\",r),n=n.context,e.set(n,\".framebufferWidth\",r+\".width\"),e.set(n,\".framebufferHeight\",r+\".height\"),r}))):F((function(t,e){var r=t.shared;return e.set(r.framebuffer,\".next\",\"null\"),r=r.context,e.set(r,\".framebufferWidth\",r+\".drawingBufferWidth\"),e.set(r,\".framebufferHeight\",r+\".drawingBufferHeight\"),\"null\"}))}if(\"framebuffer\"in n){var a=n.framebuffer;return B(a,(function(t,e){var r=t.invoke(e,a),n=t.shared,i=n.framebuffer;r=e.def(i,\".getFramebuffer(\",r,\")\");return e.set(i,\".next\",r),n=n.context,e.set(n,\".framebufferWidth\",r+\"?\"+r+\".width:\"+n+\".drawingBufferWidth\"),e.set(n,\".framebufferHeight\",r+\"?\"+r+\".height:\"+n+\".drawingBufferHeight\"),r}))}return null}function w(t,r,n){function i(t){if(t in a){var r=e.id(a[t]);return(t=F((function(){return r}))).id=r,t}if(t in o){var n=o[t];return B(n,(function(t,e){var r=t.invoke(e,n);return e.def(t.shared.strings,\".id(\",r,\")\")}))}return null}var a=t.static,o=t.dynamic,s=i(\"frag\"),l=i(\"vert\"),c=null;return R(s)&&R(l)?(c=f.program(l.id,s.id,null,n),t=F((function(t,e){return t.link(c)}))):t=new D(s&&s.thisDep||l&&l.thisDep,s&&s.contextDep||l&&l.contextDep,s&&s.propDep||l&&l.propDep,(function(t,e){var r,n,i=t.shared.shader;return r=s?s.append(t,e):e.def(i,\".\",\"frag\"),n=l?l.append(t,e):e.def(i,\".\",\"vert\"),e.def(i+\".program(\"+n+\",\"+r+\")\")})),{frag:s,vert:l,progVar:t,program:c}}function T(t,e){function r(t,e){if(t in n){var r=0|n[t];return F((function(t,n){return e&&(t.OFFSET=r),r}))}if(t in i){var o=i[t];return B(o,(function(t,r){var n=t.invoke(r,o);return e&&(t.OFFSET=n),n}))}return e&&a?F((function(t,e){return t.OFFSET=\"0\",0})):null}var n=t.static,i=t.dynamic,a=function(){if(\"elements\"in n){var t=n.elements;z(t)?t=o.getElements(o.create(t,!0)):t&&(t=o.getElements(t));var e=F((function(e,r){if(t){var n=e.link(t);return e.ELEMENTS=n}return e.ELEMENTS=null}));return e.value=t,e}if(\"elements\"in i){var r=i.elements;return B(r,(function(t,e){var n=(i=t.shared).isBufferArgs,i=i.elements,a=t.invoke(e,r),o=e.def(\"null\");n=e.def(n,\"(\",a,\")\"),a=t.cond(n).then(o,\"=\",i,\".createStream(\",a,\");\").else(o,\"=\",i,\".getElements(\",a,\");\");return e.entry(a),e.exit(t.cond(n).then(i,\".destroyStream(\",o,\");\")),t.ELEMENTS=o}))}return null}(),s=r(\"offset\",!0);return{elements:a,primitive:function(){if(\"primitive\"in n){var t=n.primitive;return F((function(e,r){return nt[t]}))}if(\"primitive\"in i){var e=i.primitive;return B(e,(function(t,r){var n=t.constants.primTypes,i=t.invoke(r,e);return r.def(n,\"[\",i,\"]\")}))}return a?R(a)?a.value?F((function(t,e){return e.def(t.ELEMENTS,\".primType\")})):F((function(){return 4})):new D(a.thisDep,a.contextDep,a.propDep,(function(t,e){var r=t.ELEMENTS;return e.def(r,\"?\",r,\".primType:\",4)})):null}(),count:function(){if(\"count\"in n){var t=0|n.count;return F((function(){return t}))}if(\"count\"in i){var e=i.count;return B(e,(function(t,r){return t.invoke(r,e)}))}return a?R(a)?a?s?new D(s.thisDep,s.contextDep,s.propDep,(function(t,e){return e.def(t.ELEMENTS,\".vertCount-\",t.OFFSET)})):F((function(t,e){return e.def(t.ELEMENTS,\".vertCount\")})):F((function(){return-1})):new D(a.thisDep||s.thisDep,a.contextDep||s.contextDep,a.propDep||s.propDep,(function(t,e){var r=t.ELEMENTS;return t.OFFSET?e.def(r,\"?\",r,\".vertCount-\",t.OFFSET,\":-1\"):e.def(r,\"?\",r,\".vertCount:-1\")})):null}(),instances:r(\"instances\",!1),offset:s}}function k(t,r){var n=t.static,a=t.dynamic,o={};return Object.keys(n).forEach((function(t){var r=n[t],a=e.id(t),s=new Z;if(z(r))s.state=1,s.buffer=i.getBuffer(i.create(r,34962,!1,!0)),s.type=0;else if(c=i.getBuffer(r))s.state=1,s.buffer=c,s.type=0;else if(\"constant\"in r){var l=r.constant;s.buffer=\"null\",s.state=2,\"number\"==typeof l?s.x=l:wt.forEach((function(t,e){e<l.length&&(s[t]=l[e])}))}else{var c=z(r.buffer)?i.getBuffer(i.create(r.buffer,34962,!1,!0)):i.getBuffer(r.buffer),u=0|r.offset,f=0|r.stride,h=0|r.size,p=!!r.normalized,d=0;\"type\"in r&&(d=Q[r.type]),r=0|r.divisor,s.buffer=c,s.state=1,s.size=h,s.normalized=p,s.type=d||c.dtype,s.offset=u,s.stride=f,s.divisor=r}o[t]=F((function(t,e){var r=t.attribCache;if(a in r)return r[a];var n={isStream:!1};return Object.keys(s).forEach((function(t){n[t]=s[t]})),s.buffer&&(n.buffer=t.link(s.buffer),n.type=n.type||n.buffer+\".dtype\"),r[a]=n}))})),Object.keys(a).forEach((function(t){var e=a[t];o[t]=B(e,(function(t,r){function n(t){r(l[t],\"=\",i,\".\",t,\"|0;\")}var i=t.invoke(r,e),a=t.shared,o=t.constants,s=a.isBufferArgs,l=(a=a.buffer,{isStream:r.def(!1)}),c=new Z;c.state=1,Object.keys(c).forEach((function(t){l[t]=r.def(\"\"+c[t])}));var u=l.buffer,f=l.type;return r(\"if(\",s,\"(\",i,\")){\",l.isStream,\"=true;\",u,\"=\",a,\".createStream(\",34962,\",\",i,\");\",f,\"=\",u,\".dtype;\",\"}else{\",u,\"=\",a,\".getBuffer(\",i,\");\",\"if(\",u,\"){\",f,\"=\",u,\".dtype;\",'}else if(\"constant\" in ',i,\"){\",l.state,\"=\",2,\";\",\"if(typeof \"+i+'.constant === \"number\"){',l[wt[0]],\"=\",i,\".constant;\",wt.slice(1).map((function(t){return l[t]})).join(\"=\"),\"=0;\",\"}else{\",wt.map((function(t,e){return l[t]+\"=\"+i+\".constant.length>\"+e+\"?\"+i+\".constant[\"+e+\"]:0;\"})).join(\"\"),\"}}else{\",\"if(\",s,\"(\",i,\".buffer)){\",u,\"=\",a,\".createStream(\",34962,\",\",i,\".buffer);\",\"}else{\",u,\"=\",a,\".getBuffer(\",i,\".buffer);\",\"}\",f,'=\"type\" in ',i,\"?\",o.glTypes,\"[\",i,\".type]:\",u,\".dtype;\",l.normalized,\"=!!\",i,\".normalized;\"),n(\"size\"),n(\"offset\"),n(\"stride\"),n(\"divisor\"),r(\"}}\"),r.exit(\"if(\",l.isStream,\"){\",a,\".destroyStream(\",u,\");\",\"}\"),l}))})),o}function M(t,e,n,i,o){function s(t){var e=c[t];e&&(h[t]=e)}var l=function(t,e){if(\"string\"==typeof(r=t.static).frag&&\"string\"==typeof r.vert){if(0<Object.keys(e.dynamic).length)return null;var r=e.static,n=Object.keys(r);if(0<n.length&&\"number\"==typeof r[n[0]]){for(var i=[],a=0;a<n.length;++a)i.push([0|r[n[a]],n[a]]);return i}}return null}(t,e),c=function(t,e,r){function n(t){if(t in i){var r=i[t];t=!0;var n,o,s=0|r.x,l=0|r.y;return\"width\"in r?n=0|r.width:t=!1,\"height\"in r?o=0|r.height:t=!1,new D(!t&&e&&e.thisDep,!t&&e&&e.contextDep,!t&&e&&e.propDep,(function(t,e){var i=t.shared.context,a=n;\"width\"in r||(a=e.def(i,\".\",\"framebufferWidth\",\"-\",s));var c=o;return\"height\"in r||(c=e.def(i,\".\",\"framebufferHeight\",\"-\",l)),[s,l,a,c]}))}if(t in a){var c=a[t];return t=B(c,(function(t,e){var r=t.invoke(e,c),n=t.shared.context,i=e.def(r,\".x|0\"),a=e.def(r,\".y|0\");return[i,a,e.def('\"width\" in ',r,\"?\",r,\".width|0:\",\"(\",n,\".\",\"framebufferWidth\",\"-\",i,\")\"),r=e.def('\"height\" in ',r,\"?\",r,\".height|0:\",\"(\",n,\".\",\"framebufferHeight\",\"-\",a,\")\")]})),e&&(t.thisDep=t.thisDep||e.thisDep,t.contextDep=t.contextDep||e.contextDep,t.propDep=t.propDep||e.propDep),t}return e?new D(e.thisDep,e.contextDep,e.propDep,(function(t,e){var r=t.shared.context;return[0,0,e.def(r,\".\",\"framebufferWidth\"),e.def(r,\".\",\"framebufferHeight\")]})):null}var i=t.static,a=t.dynamic;if(t=n(\"viewport\")){var o=t;t=new D(t.thisDep,t.contextDep,t.propDep,(function(t,e){var r=o.append(t,e),n=t.shared.context;return e.set(n,\".viewportWidth\",r[2]),e.set(n,\".viewportHeight\",r[3]),r}))}return{viewport:t,scissor_box:n(\"scissor.box\")}}(t,d=_(t)),f=T(t),h=function(t,e){var r=t.static,n=t.dynamic,i={};return rt.forEach((function(t){function e(e,a){if(t in r){var s=e(r[t]);i[o]=F((function(){return s}))}else if(t in n){var l=n[t];i[o]=B(l,(function(t,e){return a(t,e,t.invoke(e,l))}))}}var o=v(t);switch(t){case\"cull.enable\":case\"blend.enable\":case\"dither\":case\"stencil.enable\":case\"depth.enable\":case\"scissor.enable\":case\"polygonOffset.enable\":case\"sample.alpha\":case\"sample.enable\":case\"depth.mask\":return e((function(t){return t}),(function(t,e,r){return r}));case\"depth.func\":return e((function(t){return Mt[t]}),(function(t,e,r){return e.def(t.constants.compareFuncs,\"[\",r,\"]\")}));case\"depth.range\":return e((function(t){return t}),(function(t,e,r){return[e.def(\"+\",r,\"[0]\"),e=e.def(\"+\",r,\"[1]\")]}));case\"blend.func\":return e((function(t){return[kt[\"srcRGB\"in t?t.srcRGB:t.src],kt[\"dstRGB\"in t?t.dstRGB:t.dst],kt[\"srcAlpha\"in t?t.srcAlpha:t.src],kt[\"dstAlpha\"in t?t.dstAlpha:t.dst]]}),(function(t,e,r){function n(t,n){return e.def('\"',t,n,'\" in ',r,\"?\",r,\".\",t,n,\":\",r,\".\",t)}t=t.constants.blendFuncs;var i=n(\"src\",\"RGB\"),a=n(\"dst\",\"RGB\"),o=(i=e.def(t,\"[\",i,\"]\"),e.def(t,\"[\",n(\"src\",\"Alpha\"),\"]\"));return[i,a=e.def(t,\"[\",a,\"]\"),o,t=e.def(t,\"[\",n(\"dst\",\"Alpha\"),\"]\")]}));case\"blend.equation\":return e((function(t){return\"string\"==typeof t?[J[t],J[t]]:\"object\"==typeof t?[J[t.rgb],J[t.alpha]]:void 0}),(function(t,e,r){var n=t.constants.blendEquations,i=e.def(),a=e.def();return(t=t.cond(\"typeof \",r,'===\"string\"')).then(i,\"=\",a,\"=\",n,\"[\",r,\"];\"),t.else(i,\"=\",n,\"[\",r,\".rgb];\",a,\"=\",n,\"[\",r,\".alpha];\"),e(t),[i,a]}));case\"blend.color\":return e((function(t){return a(4,(function(e){return+t[e]}))}),(function(t,e,r){return a(4,(function(t){return e.def(\"+\",r,\"[\",t,\"]\")}))}));case\"stencil.mask\":return e((function(t){return 0|t}),(function(t,e,r){return e.def(r,\"|0\")}));case\"stencil.func\":return e((function(t){return[Mt[t.cmp||\"keep\"],t.ref||0,\"mask\"in t?t.mask:-1]}),(function(t,e,r){return[t=e.def('\"cmp\" in ',r,\"?\",t.constants.compareFuncs,\"[\",r,\".cmp]\",\":\",7680),e.def(r,\".ref|0\"),e=e.def('\"mask\" in ',r,\"?\",r,\".mask|0:-1\")]}));case\"stencil.opFront\":case\"stencil.opBack\":return e((function(e){return[\"stencil.opBack\"===t?1029:1028,At[e.fail||\"keep\"],At[e.zfail||\"keep\"],At[e.zpass||\"keep\"]]}),(function(e,r,n){function i(t){return r.def('\"',t,'\" in ',n,\"?\",a,\"[\",n,\".\",t,\"]:\",7680)}var a=e.constants.stencilOps;return[\"stencil.opBack\"===t?1029:1028,i(\"fail\"),i(\"zfail\"),i(\"zpass\")]}));case\"polygonOffset.offset\":return e((function(t){return[0|t.factor,0|t.units]}),(function(t,e,r){return[e.def(r,\".factor|0\"),e=e.def(r,\".units|0\")]}));case\"cull.face\":return e((function(t){var e=0;return\"front\"===t?e=1028:\"back\"===t&&(e=1029),e}),(function(t,e,r){return e.def(r,'===\"front\"?',1028,\":\",1029)}));case\"lineWidth\":return e((function(t){return t}),(function(t,e,r){return r}));case\"frontFace\":return e((function(t){return St[t]}),(function(t,e,r){return e.def(r+'===\"cw\"?2304:2305')}));case\"colorMask\":return e((function(t){return t.map((function(t){return!!t}))}),(function(t,e,r){return a(4,(function(t){return\"!!\"+r+\"[\"+t+\"]\"}))}));case\"sample.coverage\":return e((function(t){return[\"value\"in t?t.value:1,!!t.invert]}),(function(t,e,r){return[e.def('\"value\" in ',r,\"?+\",r,\".value:1\"),e=e.def(\"!!\",r,\".invert\")]}))}})),i}(t),p=w(t,0,l);s(\"viewport\"),s(v(\"scissor.box\"));var d,g=0<Object.keys(h).length;if((d={framebuffer:d,draw:f,shader:p,state:h,dirty:g,scopeVAO:null,drawVAO:null,useVAO:!1,attributes:{}}).profile=function(t){var e,r=t.static;if(t=t.dynamic,\"profile\"in r){var n=!!r.profile;(e=F((function(t,e){return n}))).enable=n}else if(\"profile\"in t){var i=t.profile;e=B(i,(function(t,e){return t.invoke(e,i)}))}return e}(t),d.uniforms=function(t,e){var r=t.static,n=t.dynamic,i={};return Object.keys(r).forEach((function(t){var e,n=r[t];if(\"number\"==typeof n||\"boolean\"==typeof n)e=F((function(){return n}));else if(\"function\"==typeof n){var o=n._reglType;\"texture2d\"===o||\"textureCube\"===o?e=F((function(t){return t.link(n)})):\"framebuffer\"!==o&&\"framebufferCube\"!==o||(e=F((function(t){return t.link(n.color[0])})))}else m(n)&&(e=F((function(t){return t.global.def(\"[\",a(n.length,(function(t){return n[t]})),\"]\")})));e.value=n,i[t]=e})),Object.keys(n).forEach((function(t){var e=n[t];i[t]=B(e,(function(t,r){return t.invoke(r,e)}))})),i}(n),d.drawVAO=d.scopeVAO=function(t,e){var r=t.static,n=t.dynamic;if(\"vao\"in r){var i=r.vao;return null!==i&&null===u.getVAO(i)&&(i=u.createVAO(i)),F((function(t){return t.link(u.getVAO(i))}))}if(\"vao\"in n){var a=n.vao;return B(a,(function(t,e){var r=t.invoke(e,a);return e.def(t.shared.vao+\".getVAO(\"+r+\")\")}))}return null}(t),!d.drawVAO&&p.program&&!l&&r.angle_instanced_arrays){var y=!0;if(t=p.program.attributes.map((function(t){return t=e.static[t],y=y&&!!t,t})),y&&0<t.length){var x=u.getVAO(u.createVAO(t));d.drawVAO=new D(null,null,null,(function(t,e){return t.link(x)})),d.useVAO=!0}}return l?d.useVAO=!0:d.attributes=k(e),d.context=function(t){var e=t.static,r=t.dynamic,n={};return Object.keys(e).forEach((function(t){var r=e[t];n[t]=F((function(t,e){return\"number\"==typeof r||\"boolean\"==typeof r?\"\"+r:t.link(r)}))})),Object.keys(r).forEach((function(t){var e=r[t];n[t]=B(e,(function(t,r){return t.invoke(r,e)}))})),n}(i),d}function A(t,e,r){var n=t.shared.context,i=t.scope();Object.keys(r).forEach((function(a){e.save(n,\".\"+a),i(n,\".\",a,\"=\",r[a].append(t,e),\";\")})),e(i)}function S(t,e,r,n){var i,a=(s=t.shared).gl,o=s.framebuffer;$&&(i=e.def(s.extensions,\".webgl_draw_buffers\"));var s=(l=t.constants).drawBuffer,l=l.backBuffer;t=r?r.append(t,e):e.def(o,\".next\"),n||e(\"if(\",t,\"!==\",o,\".cur){\"),e(\"if(\",t,\"){\",a,\".bindFramebuffer(\",36160,\",\",t,\".framebuffer);\"),$&&e(i,\".drawBuffersWEBGL(\",s,\"[\",t,\".colorAttachments.length]);\"),e(\"}else{\",a,\".bindFramebuffer(\",36160,\",null);\"),$&&e(i,\".drawBuffersWEBGL(\",l,\");\"),e(\"}\",o,\".cur=\",t,\";\"),n||e(\"}\")}function E(t,e,r){var n=t.shared,i=n.gl,o=t.current,s=t.next,l=n.current,c=n.next,u=t.cond(l,\".dirty\");rt.forEach((function(e){var n,f;if(!((e=v(e))in r.state))if(e in s){n=s[e],f=o[e];var h=a(tt[e].length,(function(t){return u.def(n,\"[\",t,\"]\")}));u(t.cond(h.map((function(t,e){return t+\"!==\"+f+\"[\"+e+\"]\"})).join(\"||\")).then(i,\".\",at[e],\"(\",h,\");\",h.map((function(t,e){return f+\"[\"+e+\"]=\"+t})).join(\";\"),\";\"))}else n=u.def(c,\".\",e),h=t.cond(n,\"!==\",l,\".\",e),u(h),e in it?h(t.cond(n).then(i,\".enable(\",it[e],\");\").else(i,\".disable(\",it[e],\");\"),l,\".\",e,\"=\",n,\";\"):h(i,\".\",at[e],\"(\",n,\");\",l,\".\",e,\"=\",n,\";\")})),0===Object.keys(r.state).length&&u(l,\".dirty=false;\"),e(u)}function C(t,e,r,n){var i=t.shared,a=t.current,o=i.current,s=i.gl;O(Object.keys(r)).forEach((function(i){var l=r[i];if(!n||n(l)){var c=l.append(t,e);if(it[i]){var u=it[i];R(l)?e(s,c?\".enable(\":\".disable(\",u,\");\"):e(t.cond(c).then(s,\".enable(\",u,\");\").else(s,\".disable(\",u,\");\")),e(o,\".\",i,\"=\",c,\";\")}else if(m(c)){var f=a[i];e(s,\".\",at[i],\"(\",c,\");\",c.map((function(t,e){return f+\"[\"+e+\"]=\"+t})).join(\";\"),\";\")}else e(s,\".\",at[i],\"(\",c,\");\",o,\".\",i,\"=\",c,\";\")}}))}function L(t,e){K&&(t.instancing=e.def(t.shared.extensions,\".angle_instanced_arrays\"))}function I(t,e,r,n,i){function a(){return\"undefined\"==typeof performance?\"Date.now()\":\"performance.now()\"}function o(t){t(c=e.def(),\"=\",a(),\";\"),\"string\"==typeof i?t(h,\".count+=\",i,\";\"):t(h,\".count++;\"),d&&(n?t(u=e.def(),\"=\",g,\".getNumPendingQueries();\"):t(g,\".beginQuery(\",h,\");\"))}function s(t){t(h,\".cpuTime+=\",a(),\"-\",c,\";\"),d&&(n?t(g,\".pushScopeStats(\",u,\",\",g,\".getNumPendingQueries(),\",h,\");\"):t(g,\".endQuery();\"))}function l(t){var r=e.def(p,\".profile\");e(p,\".profile=\",t,\";\"),e.exit(p,\".profile=\",r,\";\")}var c,u,f=t.shared,h=t.stats,p=f.current,g=f.timer;if(r=r.profile){if(R(r))return void(r.enable?(o(e),s(e.exit),l(\"true\")):l(\"false\"));l(r=r.append(t,e))}else r=e.def(p,\".profile\");o(f=t.block()),e(\"if(\",r,\"){\",f,\"}\"),s(t=t.block()),e.exit(\"if(\",r,\"){\",t,\"}\")}function N(t,e,r,n,i){function a(r,n,i){function a(){e(\"if(!\",u,\".buffer){\",l,\".enableVertexAttribArray(\",c,\");}\");var r,a=i.type;r=i.size?e.def(i.size,\"||\",n):n,e(\"if(\",u,\".type!==\",a,\"||\",u,\".size!==\",r,\"||\",p.map((function(t){return u+\".\"+t+\"!==\"+i[t]})).join(\"||\"),\"){\",l,\".bindBuffer(\",34962,\",\",f,\".buffer);\",l,\".vertexAttribPointer(\",[c,r,a,i.normalized,i.stride,i.offset],\");\",u,\".type=\",a,\";\",u,\".size=\",r,\";\",p.map((function(t){return u+\".\"+t+\"=\"+i[t]+\";\"})).join(\"\"),\"}\"),K&&(a=i.divisor,e(\"if(\",u,\".divisor!==\",a,\"){\",t.instancing,\".vertexAttribDivisorANGLE(\",[c,a],\");\",u,\".divisor=\",a,\";}\"))}function s(){e(\"if(\",u,\".buffer){\",l,\".disableVertexAttribArray(\",c,\");\",u,\".buffer=null;\",\"}if(\",wt.map((function(t,e){return u+\".\"+t+\"!==\"+h[e]})).join(\"||\"),\"){\",l,\".vertexAttrib4f(\",c,\",\",h,\");\",wt.map((function(t,e){return u+\".\"+t+\"=\"+h[e]+\";\"})).join(\"\"),\"}\")}var l=o.gl,c=e.def(r,\".location\"),u=e.def(o.attributes,\"[\",c,\"]\");r=i.state;var f=i.buffer,h=[i.x,i.y,i.z,i.w],p=[\"buffer\",\"normalized\",\"offset\",\"stride\"];1===r?a():2===r?s():(e(\"if(\",r,\"===\",1,\"){\"),a(),e(\"}else{\"),s(),e(\"}\"))}var o=t.shared;n.forEach((function(n){var o,s=n.name,l=r.attributes[s];if(l){if(!i(l))return;o=l.append(t,e)}else{if(!i(Et))return;var c=t.scopeAttrib(s);o={},Object.keys(new Z).forEach((function(t){o[t]=e.def(c,\".\",t)}))}a(t.link(n),function(t){switch(t){case 35664:case 35667:case 35671:return 2;case 35665:case 35668:case 35672:return 3;case 35666:case 35669:case 35673:return 4;default:return 1}}(n.info.type),o)}))}function j(t,r,n,i,o){for(var s,l=t.shared,c=l.gl,u=0;u<i.length;++u){var f,h=(g=i[u]).name,p=g.info.type,d=n.uniforms[h],g=t.link(g)+\".location\";if(d){if(!o(d))continue;if(R(d)){if(h=d.value,35678===p||35680===p)r(c,\".uniform1i(\",g,\",\",(p=t.link(h._texture||h.color[0]._texture))+\".bind());\"),r.exit(p,\".unbind();\");else if(35674===p||35675===p||35676===p)d=2,35675===p?d=3:35676===p&&(d=4),r(c,\".uniformMatrix\",d,\"fv(\",g,\",false,\",h=t.global.def(\"new Float32Array([\"+Array.prototype.slice.call(h)+\"])\"),\");\");else{switch(p){case 5126:s=\"1f\";break;case 35664:s=\"2f\";break;case 35665:s=\"3f\";break;case 35666:s=\"4f\";break;case 35670:case 5124:s=\"1i\";break;case 35671:case 35667:s=\"2i\";break;case 35672:case 35668:s=\"3i\";break;case 35673:s=\"4i\";break;case 35669:s=\"4i\"}r(c,\".uniform\",s,\"(\",g,\",\",m(h)?Array.prototype.slice.call(h):h,\");\")}continue}f=d.append(t,r)}else{if(!o(Et))continue;f=r.def(l.uniforms,\"[\",e.id(h),\"]\")}switch(35678===p?r(\"if(\",f,\"&&\",f,'._reglType===\"framebuffer\"){',f,\"=\",f,\".color[0];\",\"}\"):35680===p&&r(\"if(\",f,\"&&\",f,'._reglType===\"framebufferCube\"){',f,\"=\",f,\".color[0];\",\"}\"),h=1,p){case 35678:case 35680:p=r.def(f,\"._texture\"),r(c,\".uniform1i(\",g,\",\",p,\".bind());\"),r.exit(p,\".unbind();\");continue;case 5124:case 35670:s=\"1i\";break;case 35667:case 35671:s=\"2i\",h=2;break;case 35668:case 35672:s=\"3i\",h=3;break;case 35669:case 35673:s=\"4i\",h=4;break;case 5126:s=\"1f\";break;case 35664:s=\"2f\",h=2;break;case 35665:s=\"3f\",h=3;break;case 35666:s=\"4f\",h=4;break;case 35674:s=\"Matrix2fv\";break;case 35675:s=\"Matrix3fv\";break;case 35676:s=\"Matrix4fv\"}if(r(c,\".uniform\",s,\"(\",g,\",\"),\"M\"===s.charAt(0)){g=Math.pow(p-35674+2,2);var v=t.global.def(\"new Float32Array(\",g,\")\");r(\"false,(Array.isArray(\",f,\")||\",f,\" instanceof Float32Array)?\",f,\":(\",a(g,(function(t){return v+\"[\"+t+\"]=\"+f+\"[\"+t+\"]\"})),\",\",v,\")\")}else r(1<h?a(h,(function(t){return f+\"[\"+t+\"]\"})):f);r(\");\")}}function U(t,e,r,n){function i(i){var a=h[i];return a?a.contextDep&&n.contextDynamic||a.propDep?a.append(t,r):a.append(t,e):e.def(f,\".\",i)}function a(){function t(){r(l,\".drawElementsInstancedANGLE(\",[d,m,v,g+\"<<((\"+v+\"-5121)>>1)\",s],\");\")}function e(){r(l,\".drawArraysInstancedANGLE(\",[d,g,m,s],\");\")}p?y?t():(r(\"if(\",p,\"){\"),t(),r(\"}else{\"),e(),r(\"}\")):e()}function o(){function t(){r(u+\".drawElements(\"+[d,m,v,g+\"<<((\"+v+\"-5121)>>1)\"]+\");\")}function e(){r(u+\".drawArrays(\"+[d,g,m]+\");\")}p?y?t():(r(\"if(\",p,\"){\"),t(),r(\"}else{\"),e(),r(\"}\")):e()}var s,l,c=t.shared,u=c.gl,f=c.draw,h=n.draw,p=function(){var i=h.elements,a=e;return i?((i.contextDep&&n.contextDynamic||i.propDep)&&(a=r),i=i.append(t,a)):i=a.def(f,\".\",\"elements\"),i&&a(\"if(\"+i+\")\"+u+\".bindBuffer(34963,\"+i+\".buffer.buffer);\"),i}(),d=i(\"primitive\"),g=i(\"offset\"),m=function(){var i=h.count,a=e;return i?((i.contextDep&&n.contextDynamic||i.propDep)&&(a=r),i=i.append(t,a)):i=a.def(f,\".\",\"count\"),i}();if(\"number\"==typeof m){if(0===m)return}else r(\"if(\",m,\"){\"),r.exit(\"}\");K&&(s=i(\"instances\"),l=t.instancing);var v=p+\".type\",y=h.elements&&R(h.elements);K&&(\"number\"!=typeof s||0<=s)?\"string\"==typeof s?(r(\"if(\",s,\">0){\"),a(),r(\"}else if(\",s,\"<0){\"),o(),r(\"}\")):a():o()}function V(t,e,r,n,i){return i=(e=b()).proc(\"body\",i),K&&(e.instancing=i.def(e.shared.extensions,\".angle_instanced_arrays\")),t(e,i,r,n),e.compile().body}function H(t,e,r,n){L(t,e),r.useVAO?r.drawVAO?e(t.shared.vao,\".setVAO(\",r.drawVAO.append(t,e),\");\"):e(t.shared.vao,\".setVAO(\",t.shared.vao,\".targetVAO);\"):(e(t.shared.vao,\".setVAO(null);\"),N(t,e,r,n.attributes,(function(){return!0}))),j(t,e,r,n.uniforms,(function(){return!0})),U(t,e,e,r)}function G(t,e,r,n){function i(){return!0}t.batchId=\"a1\",L(t,e),N(t,e,r,n.attributes,i),j(t,e,r,n.uniforms,i),U(t,e,e,r)}function Y(t,e,r,n){function i(t){return t.contextDep&&o||t.propDep}function a(t){return!i(t)}L(t,e);var o=r.contextDep,s=e.def(),l=e.def();t.shared.props=l,t.batchId=s;var c=t.scope(),u=t.scope();e(c.entry,\"for(\",s,\"=0;\",s,\"<\",\"a1\",\";++\",s,\"){\",l,\"=\",\"a0\",\"[\",s,\"];\",u,\"}\",c.exit),r.needsContext&&A(t,u,r.context),r.needsFramebuffer&&S(t,u,r.framebuffer),C(t,u,r.state,i),r.profile&&i(r.profile)&&I(t,u,r,!1,!0),n?(r.useVAO?r.drawVAO?i(r.drawVAO)?u(t.shared.vao,\".setVAO(\",r.drawVAO.append(t,u),\");\"):c(t.shared.vao,\".setVAO(\",r.drawVAO.append(t,c),\");\"):c(t.shared.vao,\".setVAO(\",t.shared.vao,\".targetVAO);\"):(c(t.shared.vao,\".setVAO(null);\"),N(t,c,r,n.attributes,a),N(t,u,r,n.attributes,i)),j(t,c,r,n.uniforms,a),j(t,u,r,n.uniforms,i),U(t,c,u,r)):(e=t.global.def(\"{}\"),n=r.shader.progVar.append(t,u),l=u.def(n,\".id\"),c=u.def(e,\"[\",l,\"]\"),u(t.shared.gl,\".useProgram(\",n,\".program);\",\"if(!\",c,\"){\",c,\"=\",e,\"[\",l,\"]=\",t.link((function(e){return V(G,t,r,e,2)})),\"(\",n,\");}\",c,\".call(this,a0[\",s,\"],\",s,\");\"))}function W(t,r){function n(e){var n=r.shader[e];n&&i.set(a.shader,\".\"+e,n.append(t,i))}var i=t.proc(\"scope\",3);t.batchId=\"a2\";var a=t.shared,o=a.current;A(t,i,r.context),r.framebuffer&&r.framebuffer.append(t,i),O(Object.keys(r.state)).forEach((function(e){var n=r.state[e].append(t,i);m(n)?n.forEach((function(r,n){i.set(t.next[e],\"[\"+n+\"]\",r)})):i.set(a.next,\".\"+e,n)})),I(t,i,r,!0,!0),[\"elements\",\"offset\",\"count\",\"instances\",\"primitive\"].forEach((function(e){var n=r.draw[e];n&&i.set(a.draw,\".\"+e,\"\"+n.append(t,i))})),Object.keys(r.uniforms).forEach((function(n){i.set(a.uniforms,\"[\"+e.id(n)+\"]\",r.uniforms[n].append(t,i))})),Object.keys(r.attributes).forEach((function(e){var n=r.attributes[e].append(t,i),a=t.scopeAttrib(e);Object.keys(new Z).forEach((function(t){i.set(a,\".\"+t,n[t])}))})),r.scopeVAO&&i.set(a.vao,\".targetVAO\",r.scopeVAO.append(t,i)),n(\"vert\"),n(\"frag\"),0<Object.keys(r.state).length&&(i(o,\".dirty=true;\"),i.exit(o,\".dirty=true;\")),i(\"a1(\",t.shared.context,\",a0,\",t.batchId,\");\")}function X(t,e,r){var n=e.static[r];if(n&&function(t){if(\"object\"==typeof t&&!m(t)){for(var e=Object.keys(t),r=0;r<e.length;++r)if(q.isDynamic(t[e[r]]))return!0;return!1}}(n)){var i=t.global,a=Object.keys(n),o=!1,s=!1,l=!1,c=t.global.def(\"{}\");a.forEach((function(e){var r=n[e];if(q.isDynamic(r))\"function\"==typeof r&&(r=n[e]=q.unbox(r)),e=B(r,null),o=o||e.thisDep,l=l||e.propDep,s=s||e.contextDep;else{switch(i(c,\".\",e,\"=\"),typeof r){case\"number\":i(r);break;case\"string\":i('\"',r,'\"');break;case\"object\":Array.isArray(r)&&i(\"[\",r.join(),\"]\");break;default:i(t.link(r))}i(\";\")}})),e.dynamic[r]=new q.DynamicVariable(4,{thisDep:o,contextDep:s,propDep:l,ref:c,append:function(t,e){a.forEach((function(r){var i=n[r];q.isDynamic(i)&&(i=t.invoke(e,i),e(c,\".\",r,\"=\",i,\";\"))}))}}),delete e.static[r]}}var Z=u.Record,J={add:32774,subtract:32778,\"reverse subtract\":32779};r.ext_blend_minmax&&(J.min=32775,J.max=32776);var K=r.angle_instanced_arrays,$=r.webgl_draw_buffers,tt={dirty:!0,profile:g.profile},et={},rt=[],it={},at={};y(\"dither\",3024),y(\"blend.enable\",3042),x(\"blend.color\",\"blendColor\",[0,0,0,0]),x(\"blend.equation\",\"blendEquationSeparate\",[32774,32774]),x(\"blend.func\",\"blendFuncSeparate\",[1,0,1,0]),y(\"depth.enable\",2929,!0),x(\"depth.func\",\"depthFunc\",513),x(\"depth.range\",\"depthRange\",[0,1]),x(\"depth.mask\",\"depthMask\",!0),x(\"colorMask\",\"colorMask\",[!0,!0,!0,!0]),y(\"cull.enable\",2884),x(\"cull.face\",\"cullFace\",1029),x(\"frontFace\",\"frontFace\",2305),x(\"lineWidth\",\"lineWidth\",1),y(\"polygonOffset.enable\",32823),x(\"polygonOffset.offset\",\"polygonOffset\",[0,0]),y(\"sample.alpha\",32926),y(\"sample.enable\",32928),x(\"sample.coverage\",\"sampleCoverage\",[1,!1]),y(\"stencil.enable\",2960),x(\"stencil.mask\",\"stencilMask\",-1),x(\"stencil.func\",\"stencilFunc\",[519,0,-1]),x(\"stencil.opFront\",\"stencilOpSeparate\",[1028,7680,7680,7680]),x(\"stencil.opBack\",\"stencilOpSeparate\",[1029,7680,7680,7680]),y(\"scissor.enable\",3089),x(\"scissor.box\",\"scissor\",[0,0,t.drawingBufferWidth,t.drawingBufferHeight]),x(\"viewport\",\"viewport\",[0,0,t.drawingBufferWidth,t.drawingBufferHeight]);var ot={gl:t,context:p,strings:e,next:et,current:tt,draw:h,elements:o,buffer:i,shader:f,attributes:u.state,vao:u,uniforms:c,framebuffer:l,extensions:r,timer:d,isBufferArgs:z},st={primTypes:nt,compareFuncs:Mt,blendFuncs:kt,blendEquations:J,stencilOps:At,glTypes:Q,orientationType:St};$&&(st.backBuffer=[1029],st.drawBuffer=a(n.maxDrawbuffers,(function(t){return 0===t?[0]:a(t,(function(t){return 36064+t}))})));var lt=0;return{next:et,current:tt,procs:function(){var t=b(),e=t.proc(\"poll\"),i=t.proc(\"refresh\"),o=t.block();e(o),i(o);var s,l=t.shared,c=l.gl,u=l.next,f=l.current;o(f,\".dirty=false;\"),S(t,e),S(t,i,null,!0),K&&(s=t.link(K)),r.oes_vertex_array_object&&i(t.link(r.oes_vertex_array_object),\".bindVertexArrayOES(null);\");for(var h=0;h<n.maxAttributes;++h){var p=i.def(l.attributes,\"[\",h,\"]\"),d=t.cond(p,\".buffer\");d.then(c,\".enableVertexAttribArray(\",h,\");\",c,\".bindBuffer(\",34962,\",\",p,\".buffer.buffer);\",c,\".vertexAttribPointer(\",h,\",\",p,\".size,\",p,\".type,\",p,\".normalized,\",p,\".stride,\",p,\".offset);\").else(c,\".disableVertexAttribArray(\",h,\");\",c,\".vertexAttrib4f(\",h,\",\",p,\".x,\",p,\".y,\",p,\".z,\",p,\".w);\",p,\".buffer=null;\"),i(d),K&&i(s,\".vertexAttribDivisorANGLE(\",h,\",\",p,\".divisor);\")}return i(t.shared.vao,\".currentVAO=null;\",t.shared.vao,\".setVAO(\",t.shared.vao,\".targetVAO);\"),Object.keys(it).forEach((function(r){var n=it[r],a=o.def(u,\".\",r),s=t.block();s(\"if(\",a,\"){\",c,\".enable(\",n,\")}else{\",c,\".disable(\",n,\")}\",f,\".\",r,\"=\",a,\";\"),i(s),e(\"if(\",a,\"!==\",f,\".\",r,\"){\",s,\"}\")})),Object.keys(at).forEach((function(r){var n,s,l=at[r],h=tt[r],p=t.block();p(c,\".\",l,\"(\"),m(h)?(l=h.length,n=t.global.def(u,\".\",r),s=t.global.def(f,\".\",r),p(a(l,(function(t){return n+\"[\"+t+\"]\"})),\");\",a(l,(function(t){return s+\"[\"+t+\"]=\"+n+\"[\"+t+\"];\"})).join(\"\")),e(\"if(\",a(l,(function(t){return n+\"[\"+t+\"]!==\"+s+\"[\"+t+\"]\"})).join(\"||\"),\"){\",p,\"}\")):(n=o.def(u,\".\",r),s=o.def(f,\".\",r),p(n,\");\",f,\".\",r,\"=\",n,\";\"),e(\"if(\",n,\"!==\",s,\"){\",p,\"}\")),i(p)})),t.compile()}(),compile:function(t,e,r,n,i){var a=b();return a.stats=a.link(i),Object.keys(e.static).forEach((function(t){X(a,e,t)})),Tt.forEach((function(e){X(a,t,e)})),r=M(t,e,r,n),function(t,e){var r=t.proc(\"draw\",1);L(t,r),A(t,r,e.context),S(t,r,e.framebuffer),E(t,r,e),C(t,r,e.state),I(t,r,e,!1,!0);var n=e.shader.progVar.append(t,r);if(r(t.shared.gl,\".useProgram(\",n,\".program);\"),e.shader.program)H(t,r,e,e.shader.program);else{r(t.shared.vao,\".setVAO(null);\");var i=t.global.def(\"{}\"),a=r.def(n,\".id\"),o=r.def(i,\"[\",a,\"]\");r(t.cond(o).then(o,\".call(this,a0);\").else(o,\"=\",i,\"[\",a,\"]=\",t.link((function(r){return V(H,t,e,r,1)})),\"(\",n,\");\",o,\".call(this,a0);\"))}0<Object.keys(e.state).length&&r(t.shared.current,\".dirty=true;\")}(a,r),W(a,r),function(t,e){function r(t){return t.contextDep&&i||t.propDep}var n=t.proc(\"batch\",2);t.batchId=\"0\",L(t,n);var i=!1,a=!0;Object.keys(e.context).forEach((function(t){i=i||e.context[t].propDep})),i||(A(t,n,e.context),a=!1);var o=!1;if((s=e.framebuffer)?(s.propDep?i=o=!0:s.contextDep&&i&&(o=!0),o||S(t,n,s)):S(t,n,null),e.state.viewport&&e.state.viewport.propDep&&(i=!0),E(t,n,e),C(t,n,e.state,(function(t){return!r(t)})),e.profile&&r(e.profile)||I(t,n,e,!1,\"a1\"),e.contextDep=i,e.needsContext=a,e.needsFramebuffer=o,(a=e.shader.progVar).contextDep&&i||a.propDep)Y(t,n,e,null);else if(a=a.append(t,n),n(t.shared.gl,\".useProgram(\",a,\".program);\"),e.shader.program)Y(t,n,e,e.shader.program);else{n(t.shared.vao,\".setVAO(null);\");var s=t.global.def(\"{}\"),l=(o=n.def(a,\".id\"),n.def(s,\"[\",o,\"]\"));n(t.cond(l).then(l,\".call(this,a0,a1);\").else(l,\"=\",s,\"[\",o,\"]=\",t.link((function(r){return V(Y,t,e,r,2)})),\"(\",a,\");\",l,\".call(this,a0,a1);\"))}0<Object.keys(e.state).length&&n(t.shared.current,\".dirty=true;\")}(a,r),a.compile()}}}function j(t,e){for(var r=0;r<t.length;++r)if(t[r]===e)return r;return-1}var U=function(t,e){for(var r=Object.keys(e),n=0;n<r.length;++n)t[r[n]]=e[r[n]];return t},V=0,q={DynamicVariable:t,define:function(r,n){return new t(r,e(n+\"\"))},isDynamic:function(e){return\"function\"==typeof e&&!e._reglType||e instanceof t},unbox:function(e,r){return\"function\"==typeof e?new t(0,e):e},accessor:e},H={next:\"function\"==typeof requestAnimationFrame?function(t){return requestAnimationFrame(t)}:function(t){return setTimeout(t,16)},cancel:\"function\"==typeof cancelAnimationFrame?function(t){return cancelAnimationFrame(t)}:clearTimeout},G=\"undefined\"!=typeof performance&&performance.now?function(){return performance.now()}:function(){return+new Date},Y=s();Y.zero=s();var W=function(t,e){var r=1;e.ext_texture_filter_anisotropic&&(r=t.getParameter(34047));var n=1,i=1;e.webgl_draw_buffers&&(n=t.getParameter(34852),i=t.getParameter(36063));var a=!!e.oes_texture_float;if(a){a=t.createTexture(),t.bindTexture(3553,a),t.texImage2D(3553,0,6408,1,1,0,6408,5126,null);var o=t.createFramebuffer();if(t.bindFramebuffer(36160,o),t.framebufferTexture2D(36160,36064,3553,a,0),t.bindTexture(3553,null),36053!==t.checkFramebufferStatus(36160))a=!1;else{t.viewport(0,0,1,1),t.clearColor(1,0,0,1),t.clear(16384);var s=Y.allocType(5126,4);t.readPixels(0,0,1,1,6408,5126,s),t.getError()?a=!1:(t.deleteFramebuffer(o),t.deleteTexture(a),a=1===s[0]),Y.freeType(s)}}return s=!0,\"undefined\"!=typeof navigator&&(/MSIE/.test(navigator.userAgent)||/Trident\\//.test(navigator.appVersion)||/Edge/.test(navigator.userAgent))||(s=t.createTexture(),o=Y.allocType(5121,36),t.activeTexture(33984),t.bindTexture(34067,s),t.texImage2D(34069,0,6408,3,3,0,6408,5121,o),Y.freeType(o),t.bindTexture(34067,null),t.deleteTexture(s),s=!t.getError()),{colorBits:[t.getParameter(3410),t.getParameter(3411),t.getParameter(3412),t.getParameter(3413)],depthBits:t.getParameter(3414),stencilBits:t.getParameter(3415),subpixelBits:t.getParameter(3408),extensions:Object.keys(e).filter((function(t){return!!e[t]})),maxAnisotropic:r,maxDrawbuffers:n,maxColorAttachments:i,pointSizeDims:t.getParameter(33901),lineWidthDims:t.getParameter(33902),maxViewportDims:t.getParameter(3386),maxCombinedTextureUnits:t.getParameter(35661),maxCubeMapSize:t.getParameter(34076),maxRenderbufferSize:t.getParameter(34024),maxTextureUnits:t.getParameter(34930),maxTextureSize:t.getParameter(3379),maxAttributes:t.getParameter(34921),maxVertexUniforms:t.getParameter(36347),maxVertexTextureUnits:t.getParameter(35660),maxVaryingVectors:t.getParameter(36348),maxFragmentUniforms:t.getParameter(36349),glsl:t.getParameter(35724),renderer:t.getParameter(7937),vendor:t.getParameter(7936),version:t.getParameter(7938),readFloat:a,npotTextureCube:s}},X=function(t){return t instanceof Uint8Array||t instanceof Uint16Array||t instanceof Uint32Array||t instanceof Int8Array||t instanceof Int16Array||t instanceof Int32Array||t instanceof Float32Array||t instanceof Float64Array||t instanceof Uint8ClampedArray},Z=function(t){return Object.keys(t).map((function(e){return t[e]}))},J={shape:function(t){for(var e=[];t.length;t=t[0])e.push(t.length);return e},flatten:function(t,e,r,n){var i=1;if(e.length)for(var a=0;a<e.length;++a)i*=e[a];else i=0;switch(r=n||Y.allocType(r,i),e.length){case 0:break;case 1:for(n=e[0],e=0;e<n;++e)r[e]=t[e];break;case 2:for(n=e[0],e=e[1],a=i=0;a<n;++a)for(var o=t[a],s=0;s<e;++s)r[i++]=o[s];break;case 3:c(t,e[0],e[1],e[2],r,0);break;default:!function t(e,r,n,i,a){for(var o=1,s=n+1;s<r.length;++s)o*=r[s];var l=r[n];if(4==r.length-n){var u=r[n+1],f=r[n+2];for(r=r[n+3],s=0;s<l;++s)c(e[s],u,f,r,i,a),a+=o}else for(s=0;s<l;++s)t(e[s],r,n+1,i,a),a+=o}(t,e,0,r,0)}return r}},K={\"[object Int8Array]\":5120,\"[object Int16Array]\":5122,\"[object Int32Array]\":5124,\"[object Uint8Array]\":5121,\"[object Uint8ClampedArray]\":5121,\"[object Uint16Array]\":5123,\"[object Uint32Array]\":5125,\"[object Float32Array]\":5126,\"[object Float64Array]\":5121,\"[object ArrayBuffer]\":5121},Q={int8:5120,int16:5122,int32:5124,uint8:5121,uint16:5123,uint32:5125,float:5126,float32:5126},$={dynamic:35048,stream:35040,static:35044},tt=J.flatten,et=J.shape,rt=[];rt[5120]=1,rt[5122]=2,rt[5124]=4,rt[5121]=1,rt[5123]=2,rt[5125]=4,rt[5126]=4;var nt={points:0,point:0,lines:1,line:1,triangles:4,triangle:4,\"line loop\":2,\"line strip\":3,\"triangle strip\":5,\"triangle fan\":6},it=new Float32Array(1),at=new Uint32Array(it.buffer),ot=[9984,9986,9985,9987],st=[0,6409,6410,6407,6408],lt={};lt[6409]=lt[6406]=lt[6402]=1,lt[34041]=lt[6410]=2,lt[6407]=lt[35904]=3,lt[6408]=lt[35906]=4;var ct=v(\"HTMLCanvasElement\"),ut=v(\"OffscreenCanvas\"),ft=v(\"CanvasRenderingContext2D\"),ht=v(\"ImageBitmap\"),pt=v(\"HTMLImageElement\"),dt=v(\"HTMLVideoElement\"),gt=Object.keys(K).concat([ct,ut,ft,ht,pt,dt]),mt=[];mt[5121]=1,mt[5126]=4,mt[36193]=2,mt[5123]=2,mt[5125]=4;var vt=[];vt[32854]=2,vt[32855]=2,vt[36194]=2,vt[34041]=4,vt[33776]=.5,vt[33777]=.5,vt[33778]=1,vt[33779]=1,vt[35986]=.5,vt[35987]=1,vt[34798]=1,vt[35840]=.5,vt[35841]=.25,vt[35842]=.5,vt[35843]=.25,vt[36196]=.5;var yt=[];yt[32854]=2,yt[32855]=2,yt[36194]=2,yt[33189]=2,yt[36168]=1,yt[34041]=4,yt[35907]=4,yt[34836]=16,yt[34842]=8,yt[34843]=6;var xt=function(t,e,r,n,i){function a(t){this.id=c++,this.refCount=1,this.renderbuffer=t,this.format=32854,this.height=this.width=0,i.profile&&(this.stats={size:0})}function o(e){var r=e.renderbuffer;t.bindRenderbuffer(36161,null),t.deleteRenderbuffer(r),e.renderbuffer=null,e.refCount=0,delete u[e.id],n.renderbufferCount--}var s={rgba4:32854,rgb565:36194,\"rgb5 a1\":32855,depth:33189,stencil:36168,\"depth stencil\":34041};e.ext_srgb&&(s.srgba=35907),e.ext_color_buffer_half_float&&(s.rgba16f=34842,s.rgb16f=34843),e.webgl_color_buffer_float&&(s.rgba32f=34836);var l=[];Object.keys(s).forEach((function(t){l[s[t]]=t}));var c=0,u={};return a.prototype.decRef=function(){0>=--this.refCount&&o(this)},i.profile&&(n.getTotalRenderbufferSize=function(){var t=0;return Object.keys(u).forEach((function(e){t+=u[e].stats.size})),t}),{create:function(e,r){function o(e,r){var n=0,a=0,u=32854;if(\"object\"==typeof e&&e?(\"shape\"in e?(n=0|(a=e.shape)[0],a=0|a[1]):(\"radius\"in e&&(n=a=0|e.radius),\"width\"in e&&(n=0|e.width),\"height\"in e&&(a=0|e.height)),\"format\"in e&&(u=s[e.format])):\"number\"==typeof e?(n=0|e,a=\"number\"==typeof r?0|r:n):e||(n=a=1),n!==c.width||a!==c.height||u!==c.format)return o.width=c.width=n,o.height=c.height=a,c.format=u,t.bindRenderbuffer(36161,c.renderbuffer),t.renderbufferStorage(36161,u,n,a),i.profile&&(c.stats.size=yt[c.format]*c.width*c.height),o.format=l[c.format],o}var c=new a(t.createRenderbuffer());return u[c.id]=c,n.renderbufferCount++,o(e,r),o.resize=function(e,r){var n=0|e,a=0|r||n;return n===c.width&&a===c.height||(o.width=c.width=n,o.height=c.height=a,t.bindRenderbuffer(36161,c.renderbuffer),t.renderbufferStorage(36161,c.format,n,a),i.profile&&(c.stats.size=yt[c.format]*c.width*c.height)),o},o._reglType=\"renderbuffer\",o._renderbuffer=c,i.profile&&(o.stats=c.stats),o.destroy=function(){c.decRef()},o},clear:function(){Z(u).forEach(o)},restore:function(){Z(u).forEach((function(e){e.renderbuffer=t.createRenderbuffer(),t.bindRenderbuffer(36161,e.renderbuffer),t.renderbufferStorage(36161,e.format,e.width,e.height)})),t.bindRenderbuffer(36161,null)}}},bt=[];bt[6408]=4,bt[6407]=3;var _t=[];_t[5121]=1,_t[5126]=4,_t[36193]=2;var wt=[\"x\",\"y\",\"z\",\"w\"],Tt=\"blend.func blend.equation stencil.func stencil.opFront stencil.opBack sample.coverage viewport scissor.box polygonOffset.offset\".split(\" \"),kt={0:0,1:1,zero:0,one:1,\"src color\":768,\"one minus src color\":769,\"src alpha\":770,\"one minus src alpha\":771,\"dst color\":774,\"one minus dst color\":775,\"dst alpha\":772,\"one minus dst alpha\":773,\"constant color\":32769,\"one minus constant color\":32770,\"constant alpha\":32771,\"one minus constant alpha\":32772,\"src alpha saturate\":776},Mt={never:512,less:513,\"<\":513,equal:514,\"=\":514,\"==\":514,\"===\":514,lequal:515,\"<=\":515,greater:516,\">\":516,notequal:517,\"!=\":517,\"!==\":517,gequal:518,\">=\":518,always:519},At={0:0,zero:0,keep:7680,replace:7681,increment:7682,decrement:7683,\"increment wrap\":34055,\"decrement wrap\":34056,invert:5386},St={cw:2304,ccw:2305},Et=new D(!1,!1,!1,(function(){}));return function(t){function e(){if(0===J.length)w&&w.update(),tt=null;else{tt=H.next(e),f();for(var t=J.length-1;0<=t;--t){var r=J[t];r&&r(I,null,0)}m.flush(),w&&w.update()}}function r(){!tt&&0<J.length&&(tt=H.next(e))}function n(){tt&&(H.cancel(e),tt=null)}function a(t){t.preventDefault(),n(),K.forEach((function(t){t()}))}function o(t){m.getError(),y.restore(),R.restore(),z.restore(),F.restore(),B.restore(),V.restore(),O.restore(),w&&w.restore(),Y.procs.refresh(),r(),Q.forEach((function(t){t()}))}function s(t){function e(t){var e={},r={};return Object.keys(t).forEach((function(n){var i=t[n];q.isDynamic(i)?r[n]=q.unbox(i,n):e[n]=i})),{dynamic:r,static:e}}var r=e(t.context||{}),n=e(t.uniforms||{}),i=e(t.attributes||{}),a=e(function(t){function e(t){if(t in r){var e=r[t];delete r[t],Object.keys(e).forEach((function(n){r[t+\".\"+n]=e[n]}))}}var r=U({},t);return delete r.uniforms,delete r.attributes,delete r.context,delete r.vao,\"stencil\"in r&&r.stencil.op&&(r.stencil.opBack=r.stencil.opFront=r.stencil.op,delete r.stencil.op),e(\"blend\"),e(\"depth\"),e(\"cull\"),e(\"stencil\"),e(\"polygonOffset\"),e(\"scissor\"),e(\"sample\"),\"vao\"in t&&(r.vao=t.vao),r}(t));t={gpuTime:0,cpuTime:0,count:0};var o=(r=Y.compile(a,i,n,r,t)).draw,s=r.batch,l=r.scope,c=[];return U((function(t,e){var r;if(\"function\"==typeof t)return l.call(this,null,t,0);if(\"function\"==typeof e)if(\"number\"==typeof t)for(r=0;r<t;++r)l.call(this,null,e,r);else{if(!Array.isArray(t))return l.call(this,t,e,0);for(r=0;r<t.length;++r)l.call(this,t[r],e,r)}else if(\"number\"==typeof t){if(0<t)return s.call(this,function(t){for(;c.length<t;)c.push(null);return c}(0|t),0|t)}else{if(!Array.isArray(t))return o.call(this,t);if(t.length)return s.call(this,t,t.length)}}),{stats:t})}function l(t,e){var r=0;Y.procs.poll();var n=e.color;n&&(m.clearColor(+n[0]||0,+n[1]||0,+n[2]||0,+n[3]||0),r|=16384),\"depth\"in e&&(m.clearDepth(+e.depth),r|=256),\"stencil\"in e&&(m.clearStencil(0|e.stencil),r|=1024),m.clear(r)}function c(t){return J.push(t),r(),{cancel:function(){var e=j(J,t);J[e]=function t(){var e=j(J,t);J[e]=J[J.length-1],--J.length,0>=J.length&&n()}}}}function u(){var t=X.viewport,e=X.scissor_box;t[0]=t[1]=e[0]=e[1]=0,I.viewportWidth=I.framebufferWidth=I.drawingBufferWidth=t[2]=e[2]=m.drawingBufferWidth,I.viewportHeight=I.framebufferHeight=I.drawingBufferHeight=t[3]=e[3]=m.drawingBufferHeight}function f(){I.tick+=1,I.time=g(),u(),Y.procs.poll()}function h(){u(),Y.procs.refresh(),w&&w.update()}function g(){return(G()-T)/1e3}if(!(t=i(t)))return null;var m=t.gl,v=m.getContextAttributes();m.isContextLost();var y=function(t,e){function r(e){var r;e=e.toLowerCase();try{r=n[e]=t.getExtension(e)}catch(t){}return!!r}for(var n={},i=0;i<e.extensions.length;++i){var a=e.extensions[i];if(!r(a))return e.onDestroy(),e.onDone('\"'+a+'\" extension is not supported by the current WebGL context, try upgrading your system or a different browser'),null}return e.optionalExtensions.forEach(r),{extensions:n,restore:function(){Object.keys(n).forEach((function(t){if(n[t]&&!r(t))throw Error(\"(regl): error restoring extension \"+t)}))}}}(m,t);if(!y)return null;var x=function(){var t={\"\":0},e=[\"\"];return{id:function(r){var n=t[r];return n||(n=t[r]=e.length,e.push(r),n)},str:function(t){return e[t]}}}(),b={vaoCount:0,bufferCount:0,elementsCount:0,framebufferCount:0,shaderCount:0,textureCount:0,cubeCount:0,renderbufferCount:0,maxTextureUnits:0},_=y.extensions,w=function(t,e){function r(){this.endQueryIndex=this.startQueryIndex=-1,this.sum=0,this.stats=null}function n(t,e,n){var i=o.pop()||new r;i.startQueryIndex=t,i.endQueryIndex=e,i.sum=0,i.stats=n,s.push(i)}if(!e.ext_disjoint_timer_query)return null;var i=[],a=[],o=[],s=[],l=[],c=[];return{beginQuery:function(t){var r=i.pop()||e.ext_disjoint_timer_query.createQueryEXT();e.ext_disjoint_timer_query.beginQueryEXT(35007,r),a.push(r),n(a.length-1,a.length,t)},endQuery:function(){e.ext_disjoint_timer_query.endQueryEXT(35007)},pushScopeStats:n,update:function(){var t,r;if(0!==(t=a.length)){c.length=Math.max(c.length,t+1),l.length=Math.max(l.length,t+1),l[0]=0;var n=c[0]=0;for(r=t=0;r<a.length;++r){var u=a[r];e.ext_disjoint_timer_query.getQueryObjectEXT(u,34919)?(n+=e.ext_disjoint_timer_query.getQueryObjectEXT(u,34918),i.push(u)):a[t++]=u,l[r+1]=n,c[r+1]=t}for(a.length=t,r=t=0;r<s.length;++r){var f=(n=s[r]).startQueryIndex;u=n.endQueryIndex;n.sum+=l[u]-l[f],f=c[f],(u=c[u])===f?(n.stats.gpuTime+=n.sum/1e6,o.push(n)):(n.startQueryIndex=f,n.endQueryIndex=u,s[t++]=n)}s.length=t}},getNumPendingQueries:function(){return a.length},clear:function(){i.push.apply(i,a);for(var t=0;t<i.length;t++)e.ext_disjoint_timer_query.deleteQueryEXT(i[t]);a.length=0,i.length=0},restore:function(){a.length=0,i.length=0}}}(0,_),T=G(),A=m.drawingBufferWidth,L=m.drawingBufferHeight,I={tick:0,time:0,viewportWidth:A,viewportHeight:L,framebufferWidth:A,framebufferHeight:L,drawingBufferWidth:A,drawingBufferHeight:L,pixelRatio:t.pixelRatio},P=W(m,_),z=p(m,b,t,(function(t){return O.destroyBuffer(t)})),O=S(m,_,P,b,z),D=d(m,_,z,b),R=E(m,x,b,t),F=k(m,_,P,(function(){Y.procs.poll()}),I,b,t),B=xt(m,_,0,b,t),V=M(m,_,P,F,B,b),Y=N(m,x,_,P,z,D,0,V,{},O,R,{elements:null,primitive:4,count:-1,offset:0,instances:-1},I,w,t),X=(x=C(m,V,Y.procs.poll,I),Y.next),Z=m.canvas,J=[],K=[],Q=[],$=[t.onDestroy],tt=null;Z&&(Z.addEventListener(\"webglcontextlost\",a,!1),Z.addEventListener(\"webglcontextrestored\",o,!1));var et=V.setFBO=s({framebuffer:q.define.call(null,1,\"framebuffer\")});return h(),v=U(s,{clear:function(t){if(\"framebuffer\"in t)if(t.framebuffer&&\"framebufferCube\"===t.framebuffer_reglType)for(var e=0;6>e;++e)et(U({framebuffer:t.framebuffer.faces[e]},t),l);else et(t,l);else l(0,t)},prop:q.define.bind(null,1),context:q.define.bind(null,2),this:q.define.bind(null,3),draw:s({}),buffer:function(t){return z.create(t,34962,!1,!1)},elements:function(t){return D.create(t,!1)},texture:F.create2D,cube:F.createCube,renderbuffer:B.create,framebuffer:V.create,framebufferCube:V.createCube,vao:O.createVAO,attributes:v,frame:c,on:function(t,e){var r;switch(t){case\"frame\":return c(e);case\"lost\":r=K;break;case\"restore\":r=Q;break;case\"destroy\":r=$}return r.push(e),{cancel:function(){for(var t=0;t<r.length;++t)if(r[t]===e){r[t]=r[r.length-1],r.pop();break}}}},limits:P,hasExtension:function(t){return 0<=P.extensions.indexOf(t.toLowerCase())},read:x,destroy:function(){J.length=0,n(),Z&&(Z.removeEventListener(\"webglcontextlost\",a),Z.removeEventListener(\"webglcontextrestored\",o)),R.clear(),V.clear(),B.clear(),F.clear(),D.clear(),z.clear(),O.clear(),w&&w.clear(),$.forEach((function(t){t()}))},_gl:m,_refresh:h,poll:function(){f(),w&&w.update()},now:g,stats:b}),t.onDone(null,v),v}}))},{}],541:[function(t,e,r){\n",
       "/*!\n",
       " * repeat-string <https://github.com/jonschlinkert/repeat-string>\n",
       " *\n",
       " * Copyright (c) 2014-2015, Jon Schlinkert.\n",
       " * Licensed under the MIT License.\n",
       " */\n",
       "\"use strict\";var n,i=\"\";e.exports=function(t,e){if(\"string\"!=typeof t)throw new TypeError(\"expected a string\");if(1===e)return t;if(2===e)return t+t;var r=t.length*e;if(n!==t||\"undefined\"==typeof n)n=t,i=\"\";else if(i.length>=r)return i.substr(0,r);for(;r>i.length&&e>1;)1&e&&(i+=t),e>>=1,t+=t;return i=(i+=t).substr(0,r)}},{}],542:[function(t,e,r){(function(t){(function(){e.exports=t.performance&&t.performance.now?function(){return performance.now()}:Date.now||function(){return+new Date}}).call(this)}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{}],543:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.length,r=t[t.length-1],n=e,i=e-2;i>=0;--i){var a=r,o=t[i];(l=o-((r=a+o)-a))&&(t[--n]=r,r=l)}var s=0;for(i=n;i<e;++i){var l;a=t[i];(l=(o=r)-((r=a+o)-a))&&(t[s++]=l)}return t[s++]=r,t.length=s,t}},{}],544:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),i=t(\"robust-sum\"),a=t(\"robust-scale\"),o=t(\"robust-compress\");function s(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var i=r[n-1]=new Array(t.length-1),a=0,o=0;a<t.length;++a)a!==e&&(i[o++]=t[n][a]);return r}function l(t){for(var e=new Array(t),r=0;r<t;++r){e[r]=new Array(t);for(var n=0;n<t;++n)e[r][n]=[\"m[\",r,\"][\",n,\"]\"].join(\"\")}return e}function c(t){if(2===t.length)return[\"sum(prod(\",t[0][0],\",\",t[1][1],\"),prod(-\",t[0][1],\",\",t[1][0],\"))\"].join(\"\");for(var e=[],r=0;r<t.length;++r)e.push([\"scale(\",c(s(t,r)),\",\",(n=r,1&n?\"-\":\"\"),t[0][r],\")\"].join(\"\"));return function t(e){if(1===e.length)return e[0];if(2===e.length)return[\"sum(\",e[0],\",\",e[1],\")\"].join(\"\");var r=e.length>>1;return[\"sum(\",t(e.slice(0,r)),\",\",t(e.slice(r)),\")\"].join(\"\")}(e);var n}function u(t){return new Function(\"sum\",\"scale\",\"prod\",\"compress\",[\"function robustDeterminant\",t,\"(m){return compress(\",c(l(t)),\")};return robustDeterminant\",t].join(\"\"))(i,a,n,o)}var f=[function(){return[0]},function(t){return[t[0][0]]}];!function(){for(;f.length<6;)f.push(u(f.length));for(var t=[],r=[\"function robustDeterminant(m){switch(m.length){\"],n=0;n<6;++n)t.push(\"det\"+n),r.push(\"case \",n,\":return det\",n,\"(m);\");r.push(\"}var det=CACHE[m.length];if(!det)det=CACHE[m.length]=gen(m.length);return det(m);}return robustDeterminant\"),t.push(\"CACHE\",\"gen\",r.join(\"\"));var i=Function.apply(void 0,t);for(e.exports=i.apply(void 0,f.concat([f,u])),n=0;n<f.length;++n)e.exports[n]=f[n]}()},{\"robust-compress\":543,\"robust-scale\":550,\"robust-sum\":553,\"two-product\":582}],545:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),i=t(\"robust-sum\");e.exports=function(t,e){for(var r=n(t[0],e[0]),a=1;a<t.length;++a)r=i(r,n(t[a],e[a]));return r}},{\"robust-sum\":553,\"two-product\":582}],546:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),i=t(\"robust-sum\"),a=t(\"robust-subtract\"),o=t(\"robust-scale\");function s(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var i=r[n-1]=new Array(t.length-1),a=0,o=0;a<t.length;++a)a!==e&&(i[o++]=t[n][a]);return r}function l(t){if(1===t.length)return t[0];if(2===t.length)return[\"sum(\",t[0],\",\",t[1],\")\"].join(\"\");var e=t.length>>1;return[\"sum(\",l(t.slice(0,e)),\",\",l(t.slice(e)),\")\"].join(\"\")}function c(t,e){if(\"m\"===t.charAt(0)){if(\"w\"===e.charAt(0)){var r=t.split(\"[\");return[\"w\",e.substr(1),\"m\",r[0].substr(1)].join(\"\")}return[\"prod(\",t,\",\",e,\")\"].join(\"\")}return c(e,t)}function u(t){if(2===t.length)return[[\"diff(\",c(t[0][0],t[1][1]),\",\",c(t[1][0],t[0][1]),\")\"].join(\"\")];for(var e=[],r=0;r<t.length;++r)e.push([\"scale(\",l(u(s(t,r))),\",\",(n=r,!0&n?\"-\":\"\"),t[0][r],\")\"].join(\"\"));return e;var n}function f(t,e){for(var r=[],n=0;n<e-2;++n)r.push([\"prod(m\",t,\"[\",n,\"],m\",t,\"[\",n,\"])\"].join(\"\"));return l(r)}function h(t){for(var e=[],r=[],c=function(t){for(var e=new Array(t),r=0;r<t;++r){e[r]=new Array(t);for(var n=0;n<t;++n)e[r][n]=[\"m\",n,\"[\",t-r-2,\"]\"].join(\"\")}return e}(t),h=0;h<t;++h)c[0][h]=\"1\",c[t-1][h]=\"w\"+h;for(h=0;h<t;++h)0==(1&h)?e.push.apply(e,u(s(c,h))):r.push.apply(r,u(s(c,h)));var p=l(e),d=l(r),g=\"exactInSphere\"+t,m=[];for(h=0;h<t;++h)m.push(\"m\"+h);var v=[\"function \",g,\"(\",m.join(),\"){\"];for(h=0;h<t;++h){v.push(\"var w\",h,\"=\",f(h,t),\";\");for(var y=0;y<t;++y)y!==h&&v.push(\"var w\",h,\"m\",y,\"=scale(w\",h,\",m\",y,\"[0]);\")}return v.push(\"var p=\",p,\",n=\",d,\",d=diff(p,n);return d[d.length-1];}return \",g),new Function(\"sum\",\"diff\",\"prod\",\"scale\",v.join(\"\"))(i,a,n,o)}var p=[function(){return 0},function(){return 0},function(){return 0}];function d(t){var e=p[t.length];return e||(e=p[t.length]=h(t.length)),e.apply(void 0,t)}!function(){for(;p.length<=6;)p.push(h(p.length));for(var t=[],r=[\"slow\"],n=0;n<=6;++n)t.push(\"a\"+n),r.push(\"o\"+n);var i=[\"function testInSphere(\",t.join(),\"){switch(arguments.length){case 0:case 1:return 0;\"];for(n=2;n<=6;++n)i.push(\"case \",n,\":return o\",n,\"(\",t.slice(0,n).join(),\");\");i.push(\"}var s=new Array(arguments.length);for(var i=0;i<arguments.length;++i){s[i]=arguments[i]};return slow(s);}return testInSphere\"),r.push(i.join(\"\"));var a=Function.apply(void 0,r);for(e.exports=a.apply(void 0,[d].concat(p)),n=0;n<=6;++n)e.exports[n]=p[n]}()},{\"robust-scale\":550,\"robust-subtract\":552,\"robust-sum\":553,\"two-product\":582}],547:[function(t,e,r){\"use strict\";var n=t(\"robust-determinant\");function i(t){for(var e=\"robustLinearSolve\"+t+\"d\",r=[\"function \",e,\"(A,b){return [\"],i=0;i<t;++i){r.push(\"det([\");for(var a=0;a<t;++a){a>0&&r.push(\",\"),r.push(\"[\");for(var o=0;o<t;++o)o>0&&r.push(\",\"),o===i?r.push(\"+b[\",a,\"]\"):r.push(\"+A[\",a,\"][\",o,\"]\");r.push(\"]\")}r.push(\"]),\")}r.push(\"det(A)]}return \",e);var s=new Function(\"det\",r.join(\"\"));return s(t<6?n[t]:n)}var a=[function(){return[0]},function(t,e){return[[e[0]],[t[0][0]]]}];!function(){for(;a.length<6;)a.push(i(a.length));for(var t=[],r=[\"function dispatchLinearSolve(A,b){switch(A.length){\"],n=0;n<6;++n)t.push(\"s\"+n),r.push(\"case \",n,\":return s\",n,\"(A,b);\");r.push(\"}var s=CACHE[A.length];if(!s)s=CACHE[A.length]=g(A.length);return s(A,b)}return dispatchLinearSolve\"),t.push(\"CACHE\",\"g\",r.join(\"\"));var o=Function.apply(void 0,t);for(e.exports=o.apply(void 0,a.concat([a,i])),n=0;n<6;++n)e.exports[n]=a[n]}()},{\"robust-determinant\":544}],548:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),i=t(\"robust-sum\"),a=t(\"robust-scale\"),o=t(\"robust-subtract\");function s(t,e){for(var r=new Array(t.length-1),n=1;n<t.length;++n)for(var i=r[n-1]=new Array(t.length-1),a=0,o=0;a<t.length;++a)a!==e&&(i[o++]=t[n][a]);return r}function l(t){if(1===t.length)return t[0];if(2===t.length)return[\"sum(\",t[0],\",\",t[1],\")\"].join(\"\");var e=t.length>>1;return[\"sum(\",l(t.slice(0,e)),\",\",l(t.slice(e)),\")\"].join(\"\")}function c(t){if(2===t.length)return[[\"sum(prod(\",t[0][0],\",\",t[1][1],\"),prod(-\",t[0][1],\",\",t[1][0],\"))\"].join(\"\")];for(var e=[],r=0;r<t.length;++r)e.push([\"scale(\",l(c(s(t,r))),\",\",(n=r,1&n?\"-\":\"\"),t[0][r],\")\"].join(\"\"));return e;var n}function u(t){for(var e=[],r=[],u=function(t){for(var e=new Array(t),r=0;r<t;++r){e[r]=new Array(t);for(var n=0;n<t;++n)e[r][n]=[\"m\",n,\"[\",t-r-1,\"]\"].join(\"\")}return e}(t),f=[],h=0;h<t;++h)0==(1&h)?e.push.apply(e,c(s(u,h))):r.push.apply(r,c(s(u,h))),f.push(\"m\"+h);var p=l(e),d=l(r),g=\"orientation\"+t+\"Exact\",m=[\"function \",g,\"(\",f.join(),\"){var p=\",p,\",n=\",d,\",d=sub(p,n);return d[d.length-1];};return \",g].join(\"\");return new Function(\"sum\",\"prod\",\"scale\",\"sub\",m)(i,n,a,o)}var f=u(3),h=u(4),p=[function(){return 0},function(){return 0},function(t,e){return e[0]-t[0]},function(t,e,r){var n,i=(t[1]-r[1])*(e[0]-r[0]),a=(t[0]-r[0])*(e[1]-r[1]),o=i-a;if(i>0){if(a<=0)return o;n=i+a}else{if(!(i<0))return o;if(a>=0)return o;n=-(i+a)}var s=33306690738754716e-32*n;return o>=s||o<=-s?o:f(t,e,r)},function(t,e,r,n){var i=t[0]-n[0],a=e[0]-n[0],o=r[0]-n[0],s=t[1]-n[1],l=e[1]-n[1],c=r[1]-n[1],u=t[2]-n[2],f=e[2]-n[2],p=r[2]-n[2],d=a*c,g=o*l,m=o*s,v=i*c,y=i*l,x=a*s,b=u*(d-g)+f*(m-v)+p*(y-x),_=7771561172376103e-31*((Math.abs(d)+Math.abs(g))*Math.abs(u)+(Math.abs(m)+Math.abs(v))*Math.abs(f)+(Math.abs(y)+Math.abs(x))*Math.abs(p));return b>_||-b>_?b:h(t,e,r,n)}];function d(t){var e=p[t.length];return e||(e=p[t.length]=u(t.length)),e.apply(void 0,t)}!function(){for(;p.length<=5;)p.push(u(p.length));for(var t=[],r=[\"slow\"],n=0;n<=5;++n)t.push(\"a\"+n),r.push(\"o\"+n);var i=[\"function getOrientation(\",t.join(),\"){switch(arguments.length){case 0:case 1:return 0;\"];for(n=2;n<=5;++n)i.push(\"case \",n,\":return o\",n,\"(\",t.slice(0,n).join(),\");\");i.push(\"}var s=new Array(arguments.length);for(var i=0;i<arguments.length;++i){s[i]=arguments[i]};return slow(s);}return getOrientation\"),r.push(i.join(\"\"));var a=Function.apply(void 0,r);for(e.exports=a.apply(void 0,[d].concat(p)),n=0;n<=5;++n)e.exports[n]=p[n]}()},{\"robust-scale\":550,\"robust-subtract\":552,\"robust-sum\":553,\"two-product\":582}],549:[function(t,e,r){\"use strict\";var n=t(\"robust-sum\"),i=t(\"robust-scale\");e.exports=function(t,e){if(1===t.length)return i(e,t[0]);if(1===e.length)return i(t,e[0]);if(0===t.length||0===e.length)return[0];var r=[0];if(t.length<e.length)for(var a=0;a<t.length;++a)r=n(r,i(e,t[a]));else for(a=0;a<e.length;++a)r=n(r,i(t,e[a]));return r}},{\"robust-scale\":550,\"robust-sum\":553}],550:[function(t,e,r){\"use strict\";var n=t(\"two-product\"),i=t(\"two-sum\");e.exports=function(t,e){var r=t.length;if(1===r){var a=n(t[0],e);return a[0]?a:[a[1]]}var o=new Array(2*r),s=[.1,.1],l=[.1,.1],c=0;n(t[0],e,s),s[0]&&(o[c++]=s[0]);for(var u=1;u<r;++u){n(t[u],e,l);var f=s[1];i(f,l[0],s),s[0]&&(o[c++]=s[0]);var h=l[1],p=s[1],d=h+p,g=p-(d-h);s[1]=d,g&&(o[c++]=g)}s[1]&&(o[c++]=s[1]);0===c&&(o[c++]=0);return o.length=c,o}},{\"two-product\":582,\"two-sum\":583}],551:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,i){var a=n(t,r,i),o=n(e,r,i);if(a>0&&o>0||a<0&&o<0)return!1;var s=n(r,t,e),l=n(i,t,e);if(s>0&&l>0||s<0&&l<0)return!1;if(0===a&&0===o&&0===s&&0===l)return function(t,e,r,n){for(var i=0;i<2;++i){var a=t[i],o=e[i],s=Math.min(a,o),l=Math.max(a,o),c=r[i],u=n[i],f=Math.min(c,u);if(Math.max(c,u)<s||l<f)return!1}return!0}(t,e,r,i);return!0};var n=t(\"robust-orientation\")[3]},{\"robust-orientation\":548}],552:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=0|t.length,n=0|e.length;if(1===r&&1===n)return function(t,e){var r=t+e,n=r-t,i=t-(r-n)+(e-n);if(i)return[i,r];return[r]}(t[0],-e[0]);var i,a,o=new Array(r+n),s=0,l=0,c=0,u=Math.abs,f=t[l],h=u(f),p=-e[c],d=u(p);h<d?(a=f,(l+=1)<r&&(f=t[l],h=u(f))):(a=p,(c+=1)<n&&(p=-e[c],d=u(p)));l<r&&h<d||c>=n?(i=f,(l+=1)<r&&(f=t[l],h=u(f))):(i=p,(c+=1)<n&&(p=-e[c],d=u(p)));var g,m,v=i+a,y=v-i,x=a-y,b=x,_=v;for(;l<r&&c<n;)h<d?(i=f,(l+=1)<r&&(f=t[l],h=u(f))):(i=p,(c+=1)<n&&(p=-e[c],d=u(p))),(x=(a=b)-(y=(v=i+a)-i))&&(o[s++]=x),b=_-((g=_+v)-(m=g-_))+(v-m),_=g;for(;l<r;)(x=(a=b)-(y=(v=(i=f)+a)-i))&&(o[s++]=x),b=_-((g=_+v)-(m=g-_))+(v-m),_=g,(l+=1)<r&&(f=t[l]);for(;c<n;)(x=(a=b)-(y=(v=(i=p)+a)-i))&&(o[s++]=x),b=_-((g=_+v)-(m=g-_))+(v-m),_=g,(c+=1)<n&&(p=-e[c]);b&&(o[s++]=b);_&&(o[s++]=_);s||(o[s++]=0);return o.length=s,o}},{}],553:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=0|t.length,n=0|e.length;if(1===r&&1===n)return function(t,e){var r=t+e,n=r-t,i=t-(r-n)+(e-n);if(i)return[i,r];return[r]}(t[0],e[0]);var i,a,o=new Array(r+n),s=0,l=0,c=0,u=Math.abs,f=t[l],h=u(f),p=e[c],d=u(p);h<d?(a=f,(l+=1)<r&&(f=t[l],h=u(f))):(a=p,(c+=1)<n&&(p=e[c],d=u(p)));l<r&&h<d||c>=n?(i=f,(l+=1)<r&&(f=t[l],h=u(f))):(i=p,(c+=1)<n&&(p=e[c],d=u(p)));var g,m,v=i+a,y=v-i,x=a-y,b=x,_=v;for(;l<r&&c<n;)h<d?(i=f,(l+=1)<r&&(f=t[l],h=u(f))):(i=p,(c+=1)<n&&(p=e[c],d=u(p))),(x=(a=b)-(y=(v=i+a)-i))&&(o[s++]=x),b=_-((g=_+v)-(m=g-_))+(v-m),_=g;for(;l<r;)(x=(a=b)-(y=(v=(i=f)+a)-i))&&(o[s++]=x),b=_-((g=_+v)-(m=g-_))+(v-m),_=g,(l+=1)<r&&(f=t[l]);for(;c<n;)(x=(a=b)-(y=(v=(i=p)+a)-i))&&(o[s++]=x),b=_-((g=_+v)-(m=g-_))+(v-m),_=g,(c+=1)<n&&(p=e[c]);b&&(o[s++]=b);_&&(o[s++]=_);s||(o[s++]=0);return o.length=s,o}},{}],554:[function(t,e,r){\"use strict\";e.exports=function(t){return t<0?-1:t>0?1:0}},{}],555:[function(t,e,r){\"use strict\";e.exports=function(t){return i(n(t))};var n=t(\"boundary-cells\"),i=t(\"reduce-simplicial-complex\")},{\"boundary-cells\":100,\"reduce-simplicial-complex\":533}],556:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,s){r=r||0,\"undefined\"==typeof s&&(s=function(t){for(var e=t.length,r=0,n=0;n<e;++n)r=0|Math.max(r,t[n].length);return r-1}(t));if(0===t.length||s<1)return{cells:[],vertexIds:[],vertexWeights:[]};var l=function(t,e){for(var r=t.length,n=i.mallocUint8(r),a=0;a<r;++a)n[a]=t[a]<e|0;return n}(e,+r),c=function(t,e){for(var r=t.length,o=e*(e+1)/2*r|0,s=i.mallocUint32(2*o),l=0,c=0;c<r;++c)for(var u=t[c],f=(e=u.length,0);f<e;++f)for(var h=0;h<f;++h){var p=u[h],d=u[f];s[l++]=0|Math.min(p,d),s[l++]=0|Math.max(p,d)}a(n(s,[l/2|0,2]));var g=2;for(c=2;c<l;c+=2)s[c-2]===s[c]&&s[c-1]===s[c+1]||(s[g++]=s[c],s[g++]=s[c+1]);return n(s,[g/2|0,2])}(t,s),u=function(t,e,r,a){for(var o=t.data,s=t.shape[0],l=i.mallocDouble(s),c=0,u=0;u<s;++u){var f=o[2*u],h=o[2*u+1];if(r[f]!==r[h]){var p=e[f],d=e[h];o[2*c]=f,o[2*c+1]=h,l[c++]=(d-a)/(d-p)}}return t.shape[0]=c,n(l,[c])}(c,e,l,+r),f=function(t,e){var r=i.mallocInt32(2*e),n=t.shape[0],a=t.data;r[0]=0;for(var o=0,s=0;s<n;++s){var l=a[2*s];if(l!==o){for(r[2*o+1]=s;++o<l;)r[2*o]=s,r[2*o+1]=s;r[2*o]=s}}r[2*o+1]=n;for(;++o<e;)r[2*o]=r[2*o+1]=n;return r}(c,0|e.length),h=o(s)(t,c.data,f,l),p=function(t){for(var e=0|t.shape[0],r=t.data,n=new Array(e),i=0;i<e;++i)n[i]=[r[2*i],r[2*i+1]];return n}(c),d=[].slice.call(u.data,0,u.shape[0]);return i.free(l),i.free(c.data),i.free(u.data),i.free(f),{cells:h,vertexIds:p,vertexWeights:d}};var n=t(\"ndarray\"),i=t(\"typedarray-pool\"),a=t(\"ndarray-sort\"),o=t(\"./lib/codegen\")},{\"./lib/codegen\":557,ndarray:495,\"ndarray-sort\":494,\"typedarray-pool\":595}],557:[function(t,e,r){\"use strict\";e.exports=function(t){var e=a[t];e||(e=a[t]=function(t){var e=0,r=new Array(t+1);r[0]=[[]];for(var a=1;a<=t;++a)for(var o=r[a]=i(a),s=0;s<o.length;++s)e=Math.max(e,o[a].length);var l=[\"function B(C,E,i,j){\",\"var a=Math.min(i,j)|0,b=Math.max(i,j)|0,l=C[2*a],h=C[2*a+1];\",\"while(l<h){\",\"var m=(l+h)>>1,v=E[2*m+1];\",\"if(v===b){return m}\",\"if(b<v){h=m}else{l=m+1}\",\"}\",\"return l;\",\"};\",\"function getContour\",t,\"d(F,E,C,S){\",\"var n=F.length,R=[];\",\"for(var i=0;i<n;++i){var c=F[i],l=c.length;\"];function c(t){if(!(t.length<=0)){l.push(\"R.push(\");for(var e=0;e<t.length;++e){var r=t[e];e>0&&l.push(\",\"),l.push(\"[\");for(var n=0;n<r.length;++n){var i=r[n];n>0&&l.push(\",\"),l.push(\"B(C,E,c[\",i[0],\"],c[\",i[1],\"])\")}l.push(\"]\")}l.push(\");\")}}for(a=t+1;a>1;--a){a<t+1&&l.push(\"else \"),l.push(\"if(l===\",a,\"){\");var u=[];for(s=0;s<a;++s)u.push(\"(S[c[\"+s+\"]]<<\"+s+\")\");l.push(\"var M=\",u.join(\"+\"),\";if(M===0||M===\",(1<<a)-1,\"){continue}switch(M){\");for(o=r[a-1],s=0;s<o.length;++s)l.push(\"case \",s,\":\"),c(o[s]),l.push(\"break;\");l.push(\"}}\")}return l.push(\"}return R;};return getContour\",t,\"d\"),new Function(\"pool\",l.join(\"\"))(n)}(t));return e};var n=t(\"typedarray-pool\"),i=t(\"marching-simplex-table\"),a={}},{\"marching-simplex-table\":474,\"typedarray-pool\":595}],558:[function(t,e,r){\"use strict\";var n=t(\"bit-twiddle\"),i=t(\"union-find\");function a(t,e){var r=t.length,n=t.length-e.length,i=Math.min;if(n)return n;switch(r){case 0:return 0;case 1:return t[0]-e[0];case 2:return(s=t[0]+t[1]-e[0]-e[1])||i(t[0],t[1])-i(e[0],e[1]);case 3:var a=t[0]+t[1],o=e[0]+e[1];if(s=a+t[2]-(o+e[2]))return s;var s,l=i(t[0],t[1]),c=i(e[0],e[1]);return(s=i(l,t[2])-i(c,e[2]))||i(l+t[2],a)-i(c+e[2],o);default:var u=t.slice(0);u.sort();var f=e.slice(0);f.sort();for(var h=0;h<r;++h)if(n=u[h]-f[h])return n;return 0}}function o(t,e){return a(t[0],e[0])}function s(t,e){if(e){for(var r=t.length,n=new Array(r),i=0;i<r;++i)n[i]=[t[i],e[i]];n.sort(o);for(i=0;i<r;++i)t[i]=n[i][0],e[i]=n[i][1];return t}return t.sort(a),t}function l(t){if(0===t.length)return[];for(var e=1,r=t.length,n=1;n<r;++n){var i=t[n];if(a(i,t[n-1])){if(n===e){e++;continue}t[e++]=i}}return t.length=e,t}function c(t,e){for(var r=0,n=t.length-1,i=-1;r<=n;){var o=r+n>>1,s=a(t[o],e);s<=0?(0===s&&(i=o),r=o+1):s>0&&(n=o-1)}return i}function u(t,e){for(var r=new Array(t.length),i=0,o=r.length;i<o;++i)r[i]=[];for(var s=[],l=(i=0,e.length);i<l;++i)for(var u=e[i],f=u.length,h=1,p=1<<f;h<p;++h){s.length=n.popCount(h);for(var d=0,g=0;g<f;++g)h&1<<g&&(s[d++]=u[g]);var m=c(t,s);if(!(m<0))for(;r[m++].push(i),!(m>=t.length||0!==a(t[m],s)););}return r}function f(t,e){if(e<0)return[];for(var r=[],i=(1<<e+1)-1,a=0;a<t.length;++a)for(var o=t[a],l=i;l<1<<o.length;l=n.nextCombination(l)){for(var c=new Array(e+1),u=0,f=0;f<o.length;++f)l&1<<f&&(c[u++]=o[f]);r.push(c)}return s(r)}r.dimension=function(t){for(var e=0,r=Math.max,n=0,i=t.length;n<i;++n)e=r(e,t[n].length);return e-1},r.countVertices=function(t){for(var e=-1,r=Math.max,n=0,i=t.length;n<i;++n)for(var a=t[n],o=0,s=a.length;o<s;++o)e=r(e,a[o]);return e+1},r.cloneCells=function(t){for(var e=new Array(t.length),r=0,n=t.length;r<n;++r)e[r]=t[r].slice(0);return e},r.compareCells=a,r.normalize=s,r.unique=l,r.findCell=c,r.incidence=u,r.dual=function(t,e){if(!e)return u(l(f(t,0)),t);for(var r=new Array(e),n=0;n<e;++n)r[n]=[];n=0;for(var i=t.length;n<i;++n)for(var a=t[n],o=0,s=a.length;o<s;++o)r[a[o]].push(n);return r},r.explode=function(t){for(var e=[],r=0,n=t.length;r<n;++r)for(var i=t[r],a=0|i.length,o=1,l=1<<a;o<l;++o){for(var c=[],u=0;u<a;++u)o>>>u&1&&c.push(i[u]);e.push(c)}return s(e)},r.skeleton=f,r.boundary=function(t){for(var e=[],r=0,n=t.length;r<n;++r)for(var i=t[r],a=0,o=i.length;a<o;++a){for(var l=new Array(i.length-1),c=0,u=0;c<o;++c)c!==a&&(l[u++]=i[c]);e.push(l)}return s(e)},r.connectedComponents=function(t,e){return e?function(t,e){for(var r=new i(e),n=0;n<t.length;++n)for(var a=t[n],o=0;o<a.length;++o)for(var s=o+1;s<a.length;++s)r.link(a[o],a[s]);var l=[],c=r.ranks;for(n=0;n<c.length;++n)c[n]=-1;for(n=0;n<t.length;++n){var u=r.find(t[n][0]);c[u]<0?(c[u]=l.length,l.push([t[n].slice(0)])):l[c[u]].push(t[n].slice(0))}return l}(t,e):function(t){for(var e=l(s(f(t,0))),r=new i(e.length),n=0;n<t.length;++n)for(var a=t[n],o=0;o<a.length;++o)for(var u=c(e,[a[o]]),h=o+1;h<a.length;++h)r.link(u,c(e,[a[h]]));var p=[],d=r.ranks;for(n=0;n<d.length;++n)d[n]=-1;for(n=0;n<t.length;++n){var g=r.find(c(e,[t[n][0]]));d[g]<0?(d[g]=p.length,p.push([t[n].slice(0)])):p[d[g]].push(t[n].slice(0))}return p}(t)}},{\"bit-twiddle\":97,\"union-find\":596}],559:[function(t,e,r){arguments[4][97][0].apply(r,arguments)},{dup:97}],560:[function(t,e,r){arguments[4][558][0].apply(r,arguments)},{\"bit-twiddle\":559,dup:558,\"union-find\":561}],561:[function(t,e,r){\"use strict\";function n(t){this.roots=new Array(t),this.ranks=new Array(t);for(var e=0;e<t;++e)this.roots[e]=e,this.ranks[e]=0}e.exports=n,n.prototype.length=function(){return this.roots.length},n.prototype.makeSet=function(){var t=this.roots.length;return this.roots.push(t),this.ranks.push(0),t},n.prototype.find=function(t){for(var e=this.roots;e[t]!==t;){var r=e[t];e[t]=e[r],t=r}return t},n.prototype.link=function(t,e){var r=this.find(t),n=this.find(e);if(r!==n){var i=this.ranks,a=this.roots,o=i[r],s=i[n];o<s?a[r]=n:s<o?a[n]=r:(a[n]=r,++i[r])}}},{}],562:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){for(var a=e.length,o=t.length,s=new Array(a),l=new Array(a),c=new Array(a),u=new Array(a),f=0;f<a;++f)s[f]=l[f]=-1,c[f]=1/0,u[f]=!1;for(f=0;f<o;++f){var h=t[f];if(2!==h.length)throw new Error(\"Input must be a graph\");var p=h[1],d=h[0];-1!==l[d]?l[d]=-2:l[d]=p,-1!==s[p]?s[p]=-2:s[p]=d}function g(t){if(u[t])return 1/0;var r,i,a,o,c,f=s[t],h=l[t];return f<0||h<0?1/0:(r=e[t],i=e[f],a=e[h],o=Math.abs(n(r,i,a)),c=Math.sqrt(Math.pow(i[0]-a[0],2)+Math.pow(i[1]-a[1],2)),o/c)}function m(t,e){var r=k[t],n=k[e];k[t]=n,k[e]=r,M[r]=e,M[n]=t}function v(t){return c[k[t]]}function y(t){return 1&t?t-1>>1:(t>>1)-1}function x(t){for(var e=v(t);;){var r=e,n=2*t+1,i=2*(t+1),a=t;if(n<A){var o=v(n);o<r&&(a=n,r=o)}if(i<A)v(i)<r&&(a=i);if(a===t)return t;m(t,a),t=a}}function b(t){for(var e=v(t);t>0;){var r=y(t);if(r>=0)if(e<v(r)){m(t,r),t=r;continue}return t}}function _(){if(A>0){var t=k[0];return m(0,A-1),A-=1,x(0),t}return-1}function w(t,e){var r=k[t];return c[r]===e?t:(c[r]=-1/0,b(t),_(),c[r]=e,b((A+=1)-1))}function T(t){if(!u[t]){u[t]=!0;var e=s[t],r=l[t];s[r]>=0&&(s[r]=e),l[e]>=0&&(l[e]=r),M[e]>=0&&w(M[e],g(e)),M[r]>=0&&w(M[r],g(r))}}var k=[],M=new Array(a);for(f=0;f<a;++f){(c[f]=g(f))<1/0?(M[f]=k.length,k.push(f)):M[f]=-1}var A=k.length;for(f=A>>1;f>=0;--f)x(f);for(;;){var S=_();if(S<0||c[S]>r)break;T(S)}var E=[];for(f=0;f<a;++f)u[f]||(M[f]=E.length,E.push(e[f].slice()));E.length;function C(t,e){if(t[e]<0)return e;var r=e,n=e;do{var i=t[n];if(!u[n]||i<0||i===n)break;if(i=t[n=i],!u[n]||i<0||i===n)break;n=i,r=t[r]}while(r!==n);for(var a=e;a!==n;a=t[a])t[a]=n;return n}var L=[];return t.forEach((function(t){var e=C(s,t[0]),r=C(l,t[1]);if(e>=0&&r>=0&&e!==r){var n=M[e],i=M[r];n!==i&&L.push([n,i])}})),i.unique(i.normalize(L)),{positions:E,edges:L}};var n=t(\"robust-orientation\"),i=t(\"simplicial-complex\")},{\"robust-orientation\":548,\"simplicial-complex\":560}],563:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,a,o,s;if(e[0][0]<e[1][0])r=e[0],a=e[1];else{if(!(e[0][0]>e[1][0]))return i(e,t);r=e[1],a=e[0]}if(t[0][0]<t[1][0])o=t[0],s=t[1];else{if(!(t[0][0]>t[1][0]))return-i(t,e);o=t[1],s=t[0]}var l=n(r,a,s),c=n(r,a,o);if(l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;if(l=n(s,o,a),c=n(s,o,r),l<0){if(c<=0)return l}else if(l>0){if(c>=0)return l}else if(c)return c;return a[0]-s[0]};var n=t(\"robust-orientation\");function i(t,e){var r,i,a,o;if(e[0][0]<e[1][0])r=e[0],i=e[1];else{if(!(e[0][0]>e[1][0])){var s=Math.min(t[0][1],t[1][1]),l=Math.max(t[0][1],t[1][1]),c=Math.min(e[0][1],e[1][1]),u=Math.max(e[0][1],e[1][1]);return l<c?l-c:s>u?s-u:l-u}r=e[1],i=e[0]}t[0][1]<t[1][1]?(a=t[0],o=t[1]):(a=t[1],o=t[0]);var f=n(i,r,a);return f||((f=n(i,r,o))||o-i)}},{\"robust-orientation\":548}],564:[function(t,e,r){arguments[4][243][0].apply(r,arguments)},{dup:243}],565:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.length,r=2*e,n=new Array(r),a=0;a<e;++a){var l=t[a],c=l[0][0]<l[1][0];n[2*a]=new f(l[0][0],l,c,a),n[2*a+1]=new f(l[1][0],l,!c,a)}n.sort((function(t,e){var r=t.x-e.x;return r||((r=t.create-e.create)||Math.min(t.segment[0][1],t.segment[1][1])-Math.min(e.segment[0][1],e.segment[1][1]))}));var h=i(o),p=[],d=[],g=[];for(a=0;a<r;){for(var m=n[a].x,v=[];a<r;){var y=n[a];if(y.x!==m)break;a+=1,y.segment[0][0]===y.x&&y.segment[1][0]===y.x?y.create&&(y.segment[0][1]<y.segment[1][1]?(v.push(new u(y.segment[0][1],y.index,!0,!0)),v.push(new u(y.segment[1][1],y.index,!1,!1))):(v.push(new u(y.segment[1][1],y.index,!0,!1)),v.push(new u(y.segment[0][1],y.index,!1,!0)))):h=y.create?h.insert(y.segment,y.index):h.remove(y.segment)}p.push(h.root),d.push(m),g.push(v)}return new s(p,d,g)};var n=t(\"binary-search-bounds\"),i=t(\"functional-red-black-tree\"),a=t(\"robust-orientation\"),o=t(\"./lib/order-segments\");function s(t,e,r){this.slabs=t,this.coordinates=e,this.horizontal=r}function l(t,e){return t.y-e}function c(t,e){for(var r=null;t;){var n,i,o=t.key;o[0][0]<o[1][0]?(n=o[0],i=o[1]):(n=o[1],i=o[0]);var s=a(n,i,e);if(s<0)t=t.left;else if(s>0)if(e[0]!==o[1][0])r=t,t=t.right;else{if(l=c(t.right,e))return l;t=t.left}else{if(e[0]!==o[1][0])return t;var l;if(l=c(t.right,e))return l;t=t.left}}return r}function u(t,e,r,n){this.y=t,this.index=e,this.start=r,this.closed=n}function f(t,e,r,n){this.x=t,this.segment=e,this.create=r,this.index=n}s.prototype.castUp=function(t){var e=n.le(this.coordinates,t[0]);if(e<0)return-1;this.slabs[e];var r=c(this.slabs[e],t),i=-1;if(r&&(i=r.value),this.coordinates[e]===t[0]){var s=null;if(r&&(s=r.key),e>0){var u=c(this.slabs[e-1],t);u&&(s?o(u.key,s)>0&&(s=u.key,i=u.value):(i=u.value,s=u.key))}var f=this.horizontal[e];if(f.length>0){var h=n.ge(f,t[1],l);if(h<f.length){var p=f[h];if(t[1]===p.y){if(p.closed)return p.index;for(;h<f.length-1&&f[h+1].y===t[1];)if((p=f[h+=1]).closed)return p.index;if(p.y===t[1]&&!p.start){if((h+=1)>=f.length)return i;p=f[h]}}if(p.start)if(s){var d=a(s[0],s[1],[t[0],p.y]);s[0][0]>s[1][0]&&(d=-d),d>0&&(i=p.index)}else i=p.index;else p.y!==t[1]&&(i=p.index)}}}return i}},{\"./lib/order-segments\":563,\"binary-search-bounds\":564,\"functional-red-black-tree\":247,\"robust-orientation\":548}],566:[function(t,e,r){\"use strict\";var n=t(\"robust-dot-product\"),i=t(\"robust-sum\");function a(t,e){var r=i(n(t,e),[e[e.length-1]]);return r[r.length-1]}function o(t,e,r,n){var i=-e/(n-e);i<0?i=0:i>1&&(i=1);for(var a=1-i,o=t.length,s=new Array(o),l=0;l<o;++l)s[l]=i*t[l]+a*r[l];return s}e.exports=function(t,e){for(var r=[],n=[],i=a(t[t.length-1],e),s=t[t.length-1],l=t[0],c=0;c<t.length;++c,s=l){var u=a(l=t[c],e);if(i<0&&u>0||i>0&&u<0){var f=o(s,u,l,i);r.push(f),n.push(f.slice())}u<0?n.push(l.slice()):u>0?r.push(l.slice()):(r.push(l.slice()),n.push(l.slice())),i=u}return{positive:r,negative:n}},e.exports.positive=function(t,e){for(var r=[],n=a(t[t.length-1],e),i=t[t.length-1],s=t[0],l=0;l<t.length;++l,i=s){var c=a(s=t[l],e);(n<0&&c>0||n>0&&c<0)&&r.push(o(i,c,s,n)),c>=0&&r.push(s.slice()),n=c}return r},e.exports.negative=function(t,e){for(var r=[],n=a(t[t.length-1],e),i=t[t.length-1],s=t[0],l=0;l<t.length;++l,i=s){var c=a(s=t[l],e);(n<0&&c>0||n>0&&c<0)&&r.push(o(i,c,s,n)),c<=0&&r.push(s.slice()),n=c}return r}},{\"robust-dot-product\":545,\"robust-sum\":553}],567:[function(t,e,r){!function(){\"use strict\";var t={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\\x25]+/,modulo:/^\\x25{2}/,placeholder:/^\\x25(?:([1-9]\\d*)\\$|\\(([^)]+)\\))?(\\+)?(0|'[^$])?(-)?(\\d+)?(?:\\.(\\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\\d]*)/i,key_access:/^\\.([a-z_][a-z_\\d]*)/i,index_access:/^\\[(\\d+)\\]/,sign:/^[+-]/};function e(t){return i(o(t),arguments)}function n(t,r){return e.apply(null,[t].concat(r||[]))}function i(r,n){var i,a,o,s,l,c,u,f,h,p=1,d=r.length,g=\"\";for(a=0;a<d;a++)if(\"string\"==typeof r[a])g+=r[a];else if(\"object\"==typeof r[a]){if((s=r[a]).keys)for(i=n[p],o=0;o<s.keys.length;o++){if(null==i)throw new Error(e('[sprintf] Cannot access property \"%s\" of undefined value \"%s\"',s.keys[o],s.keys[o-1]));i=i[s.keys[o]]}else i=s.param_no?n[s.param_no]:n[p++];if(t.not_type.test(s.type)&&t.not_primitive.test(s.type)&&i instanceof Function&&(i=i()),t.numeric_arg.test(s.type)&&\"number\"!=typeof i&&isNaN(i))throw new TypeError(e(\"[sprintf] expecting number but found %T\",i));switch(t.number.test(s.type)&&(f=i>=0),s.type){case\"b\":i=parseInt(i,10).toString(2);break;case\"c\":i=String.fromCharCode(parseInt(i,10));break;case\"d\":case\"i\":i=parseInt(i,10);break;case\"j\":i=JSON.stringify(i,null,s.width?parseInt(s.width):0);break;case\"e\":i=s.precision?parseFloat(i).toExponential(s.precision):parseFloat(i).toExponential();break;case\"f\":i=s.precision?parseFloat(i).toFixed(s.precision):parseFloat(i);break;case\"g\":i=s.precision?String(Number(i.toPrecision(s.precision))):parseFloat(i);break;case\"o\":i=(parseInt(i,10)>>>0).toString(8);break;case\"s\":i=String(i),i=s.precision?i.substring(0,s.precision):i;break;case\"t\":i=String(!!i),i=s.precision?i.substring(0,s.precision):i;break;case\"T\":i=Object.prototype.toString.call(i).slice(8,-1).toLowerCase(),i=s.precision?i.substring(0,s.precision):i;break;case\"u\":i=parseInt(i,10)>>>0;break;case\"v\":i=i.valueOf(),i=s.precision?i.substring(0,s.precision):i;break;case\"x\":i=(parseInt(i,10)>>>0).toString(16);break;case\"X\":i=(parseInt(i,10)>>>0).toString(16).toUpperCase()}t.json.test(s.type)?g+=i:(!t.number.test(s.type)||f&&!s.sign?h=\"\":(h=f?\"+\":\"-\",i=i.toString().replace(t.sign,\"\")),c=s.pad_char?\"0\"===s.pad_char?\"0\":s.pad_char.charAt(1):\" \",u=s.width-(h+i).length,l=s.width&&u>0?c.repeat(u):\"\",g+=s.align?h+i+l:\"0\"===c?h+l+i:l+h+i)}return g}var a=Object.create(null);function o(e){if(a[e])return a[e];for(var r,n=e,i=[],o=0;n;){if(null!==(r=t.text.exec(n)))i.push(r[0]);else if(null!==(r=t.modulo.exec(n)))i.push(\"%\");else{if(null===(r=t.placeholder.exec(n)))throw new SyntaxError(\"[sprintf] unexpected placeholder\");if(r[2]){o|=1;var s=[],l=r[2],c=[];if(null===(c=t.key.exec(l)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");for(s.push(c[1]);\"\"!==(l=l.substring(c[0].length));)if(null!==(c=t.key_access.exec(l)))s.push(c[1]);else{if(null===(c=t.index_access.exec(l)))throw new SyntaxError(\"[sprintf] failed to parse named argument key\");s.push(c[1])}r[2]=s}else o|=2;if(3===o)throw new Error(\"[sprintf] mixing positional and named placeholders is not (yet) supported\");i.push({placeholder:r[0],param_no:r[1],keys:r[2],sign:r[3],pad_char:r[4],align:r[5],width:r[6],precision:r[7],type:r[8]})}n=n.substring(r[0].length)}return a[e]=i}\"undefined\"!=typeof r&&(r.sprintf=e,r.vsprintf=n),\"undefined\"!=typeof window&&(window.sprintf=e,window.vsprintf=n)}()},{}],568:[function(t,e,r){\"use strict\";var n=t(\"parenthesis\");e.exports=function(t,e,r){if(null==t)throw Error(\"First argument should be a string\");if(null==e)throw Error(\"Separator should be a string or a RegExp\");r?(\"string\"==typeof r||Array.isArray(r))&&(r={ignore:r}):r={},null==r.escape&&(r.escape=!0),null==r.ignore?r.ignore=[\"[]\",\"()\",\"{}\",\"<>\",'\"\"',\"''\",\"``\",\"\\u201c\\u201d\",\"\\xab\\xbb\"]:(\"string\"==typeof r.ignore&&(r.ignore=[r.ignore]),r.ignore=r.ignore.map((function(t){return 1===t.length&&(t+=t),t})));var i=n.parse(t,{flat:!0,brackets:r.ignore}),a=i[0].split(e);if(r.escape){for(var o=[],s=0;s<a.length;s++){var l=a[s],c=a[s+1];\"\\\\\"===l[l.length-1]&&\"\\\\\"!==l[l.length-2]?(o.push(l+e+c),s++):o.push(l)}a=o}for(s=0;s<a.length;s++)i[0]=a[s],a[s]=n.stringify(i,{flat:!0});return a}},{parenthesis:503}],569:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.length,r=new Array(e),n=new Array(e),i=new Array(e),a=new Array(e),o=new Array(e),s=new Array(e),l=0;l<e;++l)r[l]=-1,n[l]=0,i[l]=!1,a[l]=0,o[l]=-1,s[l]=[];var c,u=0,f=[],h=[];function p(e){var l=[e],c=[e];for(r[e]=n[e]=u,i[e]=!0,u+=1;c.length>0;){e=c[c.length-1];var p=t[e];if(a[e]<p.length){for(var d=a[e];d<p.length;++d){var g=p[d];if(r[g]<0){r[g]=n[g]=u,i[g]=!0,u+=1,l.push(g),c.push(g);break}i[g]&&(n[e]=0|Math.min(n[e],n[g])),o[g]>=0&&s[e].push(o[g])}a[e]=d}else{if(n[e]===r[e]){var m=[],v=[],y=0;for(d=l.length-1;d>=0;--d){var x=l[d];if(i[x]=!1,m.push(x),v.push(s[x]),y+=s[x].length,o[x]=f.length,x===e){l.length=d;break}}f.push(m);var b=new Array(y);for(d=0;d<v.length;d++)for(var _=0;_<v[d].length;_++)b[--y]=v[d][_];h.push(b)}c.pop()}}}for(l=0;l<e;++l)r[l]<0&&p(l);for(l=0;l<h.length;l++){var d=h[l];if(0!==d.length){d.sort((function(t,e){return t-e})),c=[d[0]];for(var g=1;g<d.length;g++)d[g]!==d[g-1]&&c.push(d[g]);h[l]=c}}return{components:f,adjacencyList:h}}},{}],570:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(t.dimension<=0)return{positions:[],cells:[]};if(1===t.dimension)return function(t,e){for(var r=a(t,e),n=r.length,i=new Array(n),o=new Array(n),s=0;s<n;++s)i[s]=[r[s]],o[s]=[s];return{positions:i,cells:o}}(t,e);var r=t.order.join()+\"-\"+t.dtype,s=o[r];e=+e||0;s||(s=o[r]=function(t,e){var r=t.length,a=[\"'use strict';\"],o=\"surfaceNets\"+t.join(\"_\")+\"d\"+e;a.push(\"var contour=genContour({\",\"order:[\",t.join(),\"],\",\"scalarArguments: 3,\",\"phase:function phaseFunc(p,a,b,c) { return (p > c)|0 },\"),\"generic\"===e&&a.push(\"getters:[0],\");for(var s=[],l=[],c=0;c<r;++c)s.push(\"d\"+c),l.push(\"d\"+c);for(c=0;c<1<<r;++c)s.push(\"v\"+c),l.push(\"v\"+c);for(c=0;c<1<<r;++c)s.push(\"p\"+c),l.push(\"p\"+c);s.push(\"a\",\"b\",\"c\"),l.push(\"a\",\"c\"),a.push(\"vertex:function vertexFunc(\",s.join(),\"){\");var u=[];for(c=0;c<1<<r;++c)u.push(\"(p\"+c+\"<<\"+c+\")\");a.push(\"var m=(\",u.join(\"+\"),\")|0;if(m===0||m===\",(1<<(1<<r))-1,\"){return}\");var f=[],h=[];1<<(1<<r)<=128?(a.push(\"switch(m){\"),h=a):a.push(\"switch(m>>>7){\");for(c=0;c<1<<(1<<r);++c){if(1<<(1<<r)>128&&c%128==0){f.length>0&&h.push(\"}}\");var p=\"vExtra\"+f.length;a.push(\"case \",c>>>7,\":\",p,\"(m&0x7f,\",l.join(),\");break;\"),h=[\"function \",p,\"(m,\",l.join(),\"){switch(m){\"],f.push(h)}h.push(\"case \",127&c,\":\");for(var d=new Array(r),g=new Array(r),m=new Array(r),v=new Array(r),y=0,x=0;x<r;++x)d[x]=[],g[x]=[],m[x]=0,v[x]=0;for(x=0;x<1<<r;++x)for(var b=0;b<r;++b){var _=x^1<<b;if(!(_>x)&&!(c&1<<_)!=!(c&1<<x)){var w=1;c&1<<_?g[b].push(\"v\"+_+\"-v\"+x):(g[b].push(\"v\"+x+\"-v\"+_),w=-w),w<0?(d[b].push(\"-v\"+x+\"-v\"+_),m[b]+=2):(d[b].push(\"v\"+x+\"+v\"+_),m[b]-=2),y+=1;for(var T=0;T<r;++T)T!==b&&(_&1<<T?v[T]+=1:v[T]-=1)}}var k=[];for(b=0;b<r;++b)if(0===d[b].length)k.push(\"d\"+b+\"-0.5\");else{var M=\"\";m[b]<0?M=m[b]+\"*c\":m[b]>0&&(M=\"+\"+m[b]+\"*c\");var A=d[b].length/y*.5,S=.5+v[b]/y*.5;k.push(\"d\"+b+\"-\"+S+\"-\"+A+\"*(\"+d[b].join(\"+\")+M+\")/(\"+g[b].join(\"+\")+\")\")}h.push(\"a.push([\",k.join(),\"]);\",\"break;\")}a.push(\"}},\"),f.length>0&&h.push(\"}}\");var E=[];for(c=0;c<1<<r-1;++c)E.push(\"v\"+c);E.push(\"c0\",\"c1\",\"p0\",\"p1\",\"a\",\"b\",\"c\"),a.push(\"cell:function cellFunc(\",E.join(),\"){\");var C=i(r-1);a.push(\"if(p0){b.push(\",C.map((function(t){return\"[\"+t.map((function(t){return\"v\"+t}))+\"]\"})).join(),\")}else{b.push(\",C.map((function(t){var e=t.slice();return e.reverse(),\"[\"+e.map((function(t){return\"v\"+t}))+\"]\"})).join(),\")}}});function \",o,\"(array,level){var verts=[],cells=[];contour(array,verts,cells,level);return {positions:verts,cells:cells};} return \",o,\";\");for(c=0;c<f.length;++c)a.push(f[c].join(\"\"));return new Function(\"genContour\",a.join(\"\"))(n)}(t.order,t.dtype));return s(t,e)};var n=t(\"ndarray-extract-contour\"),i=t(\"triangulate-hypercube\"),a=t(\"zero-crossings\");var o={}},{\"ndarray-extract-contour\":487,\"triangulate-hypercube\":580,\"zero-crossings\":624}],571:[function(t,e,r){\"use strict\";Object.defineProperty(r,\"__esModule\",{value:!0});var n=function(t,e){if(Array.isArray(t))return t;if(Symbol.iterator in Object(t))return function(t,e){var r=[],n=!0,i=!1,a=void 0;try{for(var o,s=t[Symbol.iterator]();!(n=(o=s.next()).done)&&(r.push(o.value),!e||r.length!==e);n=!0);}catch(t){i=!0,a=t}finally{try{!n&&s.return&&s.return()}finally{if(i)throw a}}return r}(t,e);throw new TypeError(\"Invalid attempt to destructure non-iterable instance\")},i=2*Math.PI,a=function(t,e,r,n,i,a,o){var s=t.x,l=t.y;return{x:n*(s*=e)-i*(l*=r)+a,y:i*s+n*l+o}},o=function(t,e){var r=1.5707963267948966===e?.551915024494:-1.5707963267948966===e?-.551915024494:4/3*Math.tan(e/4),n=Math.cos(t),i=Math.sin(t),a=Math.cos(t+e),o=Math.sin(t+e);return[{x:n-i*r,y:i+n*r},{x:a+o*r,y:o-a*r},{x:a,y:o}]},s=function(t,e,r,n){var i=t*r+e*n;return i>1&&(i=1),i<-1&&(i=-1),(t*n-e*r<0?-1:1)*Math.acos(i)};r.default=function(t){var e=t.px,r=t.py,l=t.cx,c=t.cy,u=t.rx,f=t.ry,h=t.xAxisRotation,p=void 0===h?0:h,d=t.largeArcFlag,g=void 0===d?0:d,m=t.sweepFlag,v=void 0===m?0:m,y=[];if(0===u||0===f)return[];var x=Math.sin(p*i/360),b=Math.cos(p*i/360),_=b*(e-l)/2+x*(r-c)/2,w=-x*(e-l)/2+b*(r-c)/2;if(0===_&&0===w)return[];u=Math.abs(u),f=Math.abs(f);var T=Math.pow(_,2)/Math.pow(u,2)+Math.pow(w,2)/Math.pow(f,2);T>1&&(u*=Math.sqrt(T),f*=Math.sqrt(T));var k=function(t,e,r,n,a,o,l,c,u,f,h,p){var d=Math.pow(a,2),g=Math.pow(o,2),m=Math.pow(h,2),v=Math.pow(p,2),y=d*g-d*v-g*m;y<0&&(y=0),y/=d*v+g*m;var x=(y=Math.sqrt(y)*(l===c?-1:1))*a/o*p,b=y*-o/a*h,_=f*x-u*b+(t+r)/2,w=u*x+f*b+(e+n)/2,T=(h-x)/a,k=(p-b)/o,M=(-h-x)/a,A=(-p-b)/o,S=s(1,0,T,k),E=s(T,k,M,A);return 0===c&&E>0&&(E-=i),1===c&&E<0&&(E+=i),[_,w,S,E]}(e,r,l,c,u,f,g,v,x,b,_,w),M=n(k,4),A=M[0],S=M[1],E=M[2],C=M[3],L=Math.abs(C)/(i/4);Math.abs(1-L)<1e-7&&(L=1);var I=Math.max(Math.ceil(L),1);C/=I;for(var P=0;P<I;P++)y.push(o(E,C)),E+=C;return y.map((function(t){var e=a(t[0],u,f,b,x,A,S),r=e.x,n=e.y,i=a(t[1],u,f,b,x,A,S),o=i.x,s=i.y,l=a(t[2],u,f,b,x,A,S);return{x1:r,y1:n,x2:o,y2:s,x:l.x,y:l.y}}))},e.exports=r.default},{}],572:[function(t,e,r){\"use strict\";var n=t(\"parse-svg-path\"),i=t(\"abs-svg-path\"),a=t(\"normalize-svg-path\"),o=t(\"is-svg-path\"),s=t(\"assert\");e.exports=function(t){Array.isArray(t)&&1===t.length&&\"string\"==typeof t[0]&&(t=t[0]);\"string\"==typeof t&&(s(o(t),\"String is not an SVG path.\"),t=n(t));if(s(Array.isArray(t),\"Argument should be a string or an array of path segments.\"),t=i(t),!(t=a(t)).length)return[0,0,0,0];for(var e=[1/0,1/0,-1/0,-1/0],r=0,l=t.length;r<l;r++)for(var c=t[r].slice(1),u=0;u<c.length;u+=2)c[u+0]<e[0]&&(e[0]=c[u+0]),c[u+1]<e[1]&&(e[1]=c[u+1]),c[u+0]>e[2]&&(e[2]=c[u+0]),c[u+1]>e[3]&&(e[3]=c[u+1]);return e}},{\"abs-svg-path\":65,assert:73,\"is-svg-path\":471,\"normalize-svg-path\":573,\"parse-svg-path\":505}],573:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e,r=[],o=0,s=0,l=0,c=0,u=null,f=null,h=0,p=0,d=0,g=t.length;d<g;d++){var m=t[d],v=m[0];switch(v){case\"M\":l=m[1],c=m[2];break;case\"A\":var y=n({px:h,py:p,cx:m[6],cy:m[7],rx:m[1],ry:m[2],xAxisRotation:m[3],largeArcFlag:m[4],sweepFlag:m[5]});if(!y.length)continue;for(var x,b=0;b<y.length;b++)x=y[b],m=[\"C\",x.x1,x.y1,x.x2,x.y2,x.x,x.y],b<y.length-1&&r.push(m);break;case\"S\":var _=h,w=p;\"C\"!=e&&\"S\"!=e||(_+=_-o,w+=w-s),m=[\"C\",_,w,m[1],m[2],m[3],m[4]];break;case\"T\":\"Q\"==e||\"T\"==e?(u=2*h-u,f=2*p-f):(u=h,f=p),m=a(h,p,u,f,m[1],m[2]);break;case\"Q\":u=m[1],f=m[2],m=a(h,p,m[1],m[2],m[3],m[4]);break;case\"L\":m=i(h,p,m[1],m[2]);break;case\"H\":m=i(h,p,m[1],p);break;case\"V\":m=i(h,p,h,m[1]);break;case\"Z\":m=i(h,p,l,c)}e=v,h=m[m.length-2],p=m[m.length-1],m.length>4?(o=m[m.length-4],s=m[m.length-3]):(o=h,s=p),r.push(m)}return r};var n=t(\"svg-arc-to-cubic-bezier\");function i(t,e,r,n){return[\"C\",t,e,r,n,r,n]}function a(t,e,r,n,i,a){return[\"C\",t/3+2/3*r,e/3+2/3*n,i/3+2/3*r,a/3+2/3*n,i,a]}},{\"svg-arc-to-cubic-bezier\":571}],574:[function(t,e,r){\"use strict\";var n,i=t(\"svg-path-bounds\"),a=t(\"parse-svg-path\"),o=t(\"draw-svg-path\"),s=t(\"is-svg-path\"),l=t(\"bitmap-sdf\"),c=document.createElement(\"canvas\"),u=c.getContext(\"2d\");e.exports=function(t,e){if(!s(t))throw Error(\"Argument should be valid svg path string\");e||(e={});var r,f;e.shape?(r=e.shape[0],f=e.shape[1]):(r=c.width=e.w||e.width||200,f=c.height=e.h||e.height||200);var h=Math.min(r,f),p=e.stroke||0,d=e.viewbox||e.viewBox||i(t),g=[r/(d[2]-d[0]),f/(d[3]-d[1])],m=Math.min(g[0]||0,g[1]||0)/2;u.fillStyle=\"black\",u.fillRect(0,0,r,f),u.fillStyle=\"white\",p&&(\"number\"!=typeof p&&(p=1),u.strokeStyle=p>0?\"white\":\"black\",u.lineWidth=Math.abs(p));if(u.translate(.5*r,.5*f),u.scale(m,m),function(){if(null!=n)return n;var t=document.createElement(\"canvas\").getContext(\"2d\");if(t.canvas.width=t.canvas.height=1,!window.Path2D)return n=!1;var e=new Path2D(\"M0,0h1v1h-1v-1Z\");t.fillStyle=\"black\",t.fill(e);var r=t.getImageData(0,0,1,1);return n=r&&r.data&&255===r.data[3]}()){var v=new Path2D(t);u.fill(v),p&&u.stroke(v)}else{var y=a(t);o(u,y),u.fill(),p&&u.stroke()}return u.setTransform(1,0,0,1,0,0),l(u,{cutoff:null!=e.cutoff?e.cutoff:.5,radius:null!=e.radius?e.radius:.5*h})}},{\"bitmap-sdf\":98,\"draw-svg-path\":174,\"is-svg-path\":471,\"parse-svg-path\":505,\"svg-path-bounds\":572}],575:[function(t,e,r){(function(r){(function(){\"use strict\";e.exports=function t(e,r,i){i=i||{};var o=a[e];o||(o=a[e]={\" \":{data:new Float32Array(0),shape:.2}});var s=o[r];if(!s)if(r.length<=1||!/\\d/.test(r))s=o[r]=function(t){for(var e=t.cells,r=t.positions,n=new Float32Array(6*e.length),i=0,a=0,o=0;o<e.length;++o)for(var s=e[o],l=0;l<3;++l){var c=r[s[l]];n[i++]=c[0],n[i++]=c[1]+1.4,a=Math.max(c[0],a)}return{data:n,shape:a}}(n(r,{triangles:!0,font:e,textAlign:i.textAlign||\"left\",textBaseline:\"alphabetic\",styletags:{breaklines:!0,bolds:!0,italics:!0,subscripts:!0,superscripts:!0}}));else{for(var l=r.split(/(\\d|\\s)/),c=new Array(l.length),u=0,f=0,h=0;h<l.length;++h)c[h]=t(e,l[h]),u+=c[h].data.length,f+=c[h].shape,h>0&&(f+=.02);var p=new Float32Array(u),d=0,g=-.5*f;for(h=0;h<c.length;++h){for(var m=c[h].data,v=0;v<m.length;v+=2)p[d++]=m[v]+g,p[d++]=m[v+1];g+=c[h].shape+.02}s=o[r]={data:p,shape:f}}return s};var n=t(\"vectorize-text\"),i=window||r.global||{},a=i.__TEXT_CACHE||{};i.__TEXT_CACHE={}}).call(this)}).call(this,t(\"_process\"))},{_process:526,\"vectorize-text\":600}],576:[function(t,e,r){!function(t){var r=/^\\s+/,n=/\\s+$/,i=0,a=t.round,o=t.min,s=t.max,l=t.random;function c(e,l){if(l=l||{},(e=e||\"\")instanceof c)return e;if(!(this instanceof c))return new c(e,l);var u=function(e){var i={r:0,g:0,b:0},a=1,l=null,c=null,u=null,f=!1,h=!1;\"string\"==typeof e&&(e=function(t){t=t.replace(r,\"\").replace(n,\"\").toLowerCase();var e,i=!1;if(S[t])t=S[t],i=!0;else if(\"transparent\"==t)return{r:0,g:0,b:0,a:0,format:\"name\"};if(e=j.rgb.exec(t))return{r:e[1],g:e[2],b:e[3]};if(e=j.rgba.exec(t))return{r:e[1],g:e[2],b:e[3],a:e[4]};if(e=j.hsl.exec(t))return{h:e[1],s:e[2],l:e[3]};if(e=j.hsla.exec(t))return{h:e[1],s:e[2],l:e[3],a:e[4]};if(e=j.hsv.exec(t))return{h:e[1],s:e[2],v:e[3]};if(e=j.hsva.exec(t))return{h:e[1],s:e[2],v:e[3],a:e[4]};if(e=j.hex8.exec(t))return{r:P(e[1]),g:P(e[2]),b:P(e[3]),a:R(e[4]),format:i?\"name\":\"hex8\"};if(e=j.hex6.exec(t))return{r:P(e[1]),g:P(e[2]),b:P(e[3]),format:i?\"name\":\"hex\"};if(e=j.hex4.exec(t))return{r:P(e[1]+\"\"+e[1]),g:P(e[2]+\"\"+e[2]),b:P(e[3]+\"\"+e[3]),a:R(e[4]+\"\"+e[4]),format:i?\"name\":\"hex8\"};if(e=j.hex3.exec(t))return{r:P(e[1]+\"\"+e[1]),g:P(e[2]+\"\"+e[2]),b:P(e[3]+\"\"+e[3]),format:i?\"name\":\"hex\"};return!1}(e));\"object\"==typeof e&&(U(e.r)&&U(e.g)&&U(e.b)?(p=e.r,d=e.g,g=e.b,i={r:255*L(p,255),g:255*L(d,255),b:255*L(g,255)},f=!0,h=\"%\"===String(e.r).substr(-1)?\"prgb\":\"rgb\"):U(e.h)&&U(e.s)&&U(e.v)?(l=O(e.s),c=O(e.v),i=function(e,r,n){e=6*L(e,360),r=L(r,100),n=L(n,100);var i=t.floor(e),a=e-i,o=n*(1-r),s=n*(1-a*r),l=n*(1-(1-a)*r),c=i%6;return{r:255*[n,s,o,o,l,n][c],g:255*[l,n,n,s,o,o][c],b:255*[o,o,l,n,n,s][c]}}(e.h,l,c),f=!0,h=\"hsv\"):U(e.h)&&U(e.s)&&U(e.l)&&(l=O(e.s),u=O(e.l),i=function(t,e,r){var n,i,a;function o(t,e,r){return r<0&&(r+=1),r>1&&(r-=1),r<1/6?t+6*(e-t)*r:r<.5?e:r<2/3?t+(e-t)*(2/3-r)*6:t}if(t=L(t,360),e=L(e,100),r=L(r,100),0===e)n=i=a=r;else{var s=r<.5?r*(1+e):r+e-r*e,l=2*r-s;n=o(l,s,t+1/3),i=o(l,s,t),a=o(l,s,t-1/3)}return{r:255*n,g:255*i,b:255*a}}(e.h,l,u),f=!0,h=\"hsl\"),e.hasOwnProperty(\"a\")&&(a=e.a));var p,d,g;return a=C(a),{ok:f,format:e.format||h,r:o(255,s(i.r,0)),g:o(255,s(i.g,0)),b:o(255,s(i.b,0)),a:a}}(e);this._originalInput=e,this._r=u.r,this._g=u.g,this._b=u.b,this._a=u.a,this._roundA=a(100*this._a)/100,this._format=l.format||u.format,this._gradientType=l.gradientType,this._r<1&&(this._r=a(this._r)),this._g<1&&(this._g=a(this._g)),this._b<1&&(this._b=a(this._b)),this._ok=u.ok,this._tc_id=i++}function u(t,e,r){t=L(t,255),e=L(e,255),r=L(r,255);var n,i,a=s(t,e,r),l=o(t,e,r),c=(a+l)/2;if(a==l)n=i=0;else{var u=a-l;switch(i=c>.5?u/(2-a-l):u/(a+l),a){case t:n=(e-r)/u+(e<r?6:0);break;case e:n=(r-t)/u+2;break;case r:n=(t-e)/u+4}n/=6}return{h:n,s:i,l:c}}function f(t,e,r){t=L(t,255),e=L(e,255),r=L(r,255);var n,i,a=s(t,e,r),l=o(t,e,r),c=a,u=a-l;if(i=0===a?0:u/a,a==l)n=0;else{switch(a){case t:n=(e-r)/u+(e<r?6:0);break;case e:n=(r-t)/u+2;break;case r:n=(t-e)/u+4}n/=6}return{h:n,s:i,v:c}}function h(t,e,r,n){var i=[z(a(t).toString(16)),z(a(e).toString(16)),z(a(r).toString(16))];return n&&i[0].charAt(0)==i[0].charAt(1)&&i[1].charAt(0)==i[1].charAt(1)&&i[2].charAt(0)==i[2].charAt(1)?i[0].charAt(0)+i[1].charAt(0)+i[2].charAt(0):i.join(\"\")}function p(t,e,r,n){return[z(D(n)),z(a(t).toString(16)),z(a(e).toString(16)),z(a(r).toString(16))].join(\"\")}function d(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.s-=e/100,r.s=I(r.s),c(r)}function g(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.s+=e/100,r.s=I(r.s),c(r)}function m(t){return c(t).desaturate(100)}function v(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.l+=e/100,r.l=I(r.l),c(r)}function y(t,e){e=0===e?0:e||10;var r=c(t).toRgb();return r.r=s(0,o(255,r.r-a(-e/100*255))),r.g=s(0,o(255,r.g-a(-e/100*255))),r.b=s(0,o(255,r.b-a(-e/100*255))),c(r)}function x(t,e){e=0===e?0:e||10;var r=c(t).toHsl();return r.l-=e/100,r.l=I(r.l),c(r)}function b(t,e){var r=c(t).toHsl(),n=(r.h+e)%360;return r.h=n<0?360+n:n,c(r)}function _(t){var e=c(t).toHsl();return e.h=(e.h+180)%360,c(e)}function w(t){var e=c(t).toHsl(),r=e.h;return[c(t),c({h:(r+120)%360,s:e.s,l:e.l}),c({h:(r+240)%360,s:e.s,l:e.l})]}function T(t){var e=c(t).toHsl(),r=e.h;return[c(t),c({h:(r+90)%360,s:e.s,l:e.l}),c({h:(r+180)%360,s:e.s,l:e.l}),c({h:(r+270)%360,s:e.s,l:e.l})]}function k(t){var e=c(t).toHsl(),r=e.h;return[c(t),c({h:(r+72)%360,s:e.s,l:e.l}),c({h:(r+216)%360,s:e.s,l:e.l})]}function M(t,e,r){e=e||6,r=r||30;var n=c(t).toHsl(),i=360/r,a=[c(t)];for(n.h=(n.h-(i*e>>1)+720)%360;--e;)n.h=(n.h+i)%360,a.push(c(n));return a}function A(t,e){e=e||6;for(var r=c(t).toHsv(),n=r.h,i=r.s,a=r.v,o=[],s=1/e;e--;)o.push(c({h:n,s:i,v:a})),a=(a+s)%1;return o}c.prototype={isDark:function(){return this.getBrightness()<128},isLight:function(){return!this.isDark()},isValid:function(){return this._ok},getOriginalInput:function(){return this._originalInput},getFormat:function(){return this._format},getAlpha:function(){return this._a},getBrightness:function(){var t=this.toRgb();return(299*t.r+587*t.g+114*t.b)/1e3},getLuminance:function(){var e,r,n,i=this.toRgb();return e=i.r/255,r=i.g/255,n=i.b/255,.2126*(e<=.03928?e/12.92:t.pow((e+.055)/1.055,2.4))+.7152*(r<=.03928?r/12.92:t.pow((r+.055)/1.055,2.4))+.0722*(n<=.03928?n/12.92:t.pow((n+.055)/1.055,2.4))},setAlpha:function(t){return this._a=C(t),this._roundA=a(100*this._a)/100,this},toHsv:function(){var t=f(this._r,this._g,this._b);return{h:360*t.h,s:t.s,v:t.v,a:this._a}},toHsvString:function(){var t=f(this._r,this._g,this._b),e=a(360*t.h),r=a(100*t.s),n=a(100*t.v);return 1==this._a?\"hsv(\"+e+\", \"+r+\"%, \"+n+\"%)\":\"hsva(\"+e+\", \"+r+\"%, \"+n+\"%, \"+this._roundA+\")\"},toHsl:function(){var t=u(this._r,this._g,this._b);return{h:360*t.h,s:t.s,l:t.l,a:this._a}},toHslString:function(){var t=u(this._r,this._g,this._b),e=a(360*t.h),r=a(100*t.s),n=a(100*t.l);return 1==this._a?\"hsl(\"+e+\", \"+r+\"%, \"+n+\"%)\":\"hsla(\"+e+\", \"+r+\"%, \"+n+\"%, \"+this._roundA+\")\"},toHex:function(t){return h(this._r,this._g,this._b,t)},toHexString:function(t){return\"#\"+this.toHex(t)},toHex8:function(t){return function(t,e,r,n,i){var o=[z(a(t).toString(16)),z(a(e).toString(16)),z(a(r).toString(16)),z(D(n))];if(i&&o[0].charAt(0)==o[0].charAt(1)&&o[1].charAt(0)==o[1].charAt(1)&&o[2].charAt(0)==o[2].charAt(1)&&o[3].charAt(0)==o[3].charAt(1))return o[0].charAt(0)+o[1].charAt(0)+o[2].charAt(0)+o[3].charAt(0);return o.join(\"\")}(this._r,this._g,this._b,this._a,t)},toHex8String:function(t){return\"#\"+this.toHex8(t)},toRgb:function(){return{r:a(this._r),g:a(this._g),b:a(this._b),a:this._a}},toRgbString:function(){return 1==this._a?\"rgb(\"+a(this._r)+\", \"+a(this._g)+\", \"+a(this._b)+\")\":\"rgba(\"+a(this._r)+\", \"+a(this._g)+\", \"+a(this._b)+\", \"+this._roundA+\")\"},toPercentageRgb:function(){return{r:a(100*L(this._r,255))+\"%\",g:a(100*L(this._g,255))+\"%\",b:a(100*L(this._b,255))+\"%\",a:this._a}},toPercentageRgbString:function(){return 1==this._a?\"rgb(\"+a(100*L(this._r,255))+\"%, \"+a(100*L(this._g,255))+\"%, \"+a(100*L(this._b,255))+\"%)\":\"rgba(\"+a(100*L(this._r,255))+\"%, \"+a(100*L(this._g,255))+\"%, \"+a(100*L(this._b,255))+\"%, \"+this._roundA+\")\"},toName:function(){return 0===this._a?\"transparent\":!(this._a<1)&&(E[h(this._r,this._g,this._b,!0)]||!1)},toFilter:function(t){var e=\"#\"+p(this._r,this._g,this._b,this._a),r=e,n=this._gradientType?\"GradientType = 1, \":\"\";if(t){var i=c(t);r=\"#\"+p(i._r,i._g,i._b,i._a)}return\"progid:DXImageTransform.Microsoft.gradient(\"+n+\"startColorstr=\"+e+\",endColorstr=\"+r+\")\"},toString:function(t){var e=!!t;t=t||this._format;var r=!1,n=this._a<1&&this._a>=0;return e||!n||\"hex\"!==t&&\"hex6\"!==t&&\"hex3\"!==t&&\"hex4\"!==t&&\"hex8\"!==t&&\"name\"!==t?(\"rgb\"===t&&(r=this.toRgbString()),\"prgb\"===t&&(r=this.toPercentageRgbString()),\"hex\"!==t&&\"hex6\"!==t||(r=this.toHexString()),\"hex3\"===t&&(r=this.toHexString(!0)),\"hex4\"===t&&(r=this.toHex8String(!0)),\"hex8\"===t&&(r=this.toHex8String()),\"name\"===t&&(r=this.toName()),\"hsl\"===t&&(r=this.toHslString()),\"hsv\"===t&&(r=this.toHsvString()),r||this.toHexString()):\"name\"===t&&0===this._a?this.toName():this.toRgbString()},clone:function(){return c(this.toString())},_applyModification:function(t,e){var r=t.apply(null,[this].concat([].slice.call(e)));return this._r=r._r,this._g=r._g,this._b=r._b,this.setAlpha(r._a),this},lighten:function(){return this._applyModification(v,arguments)},brighten:function(){return this._applyModification(y,arguments)},darken:function(){return this._applyModification(x,arguments)},desaturate:function(){return this._applyModification(d,arguments)},saturate:function(){return this._applyModification(g,arguments)},greyscale:function(){return this._applyModification(m,arguments)},spin:function(){return this._applyModification(b,arguments)},_applyCombination:function(t,e){return t.apply(null,[this].concat([].slice.call(e)))},analogous:function(){return this._applyCombination(M,arguments)},complement:function(){return this._applyCombination(_,arguments)},monochromatic:function(){return this._applyCombination(A,arguments)},splitcomplement:function(){return this._applyCombination(k,arguments)},triad:function(){return this._applyCombination(w,arguments)},tetrad:function(){return this._applyCombination(T,arguments)}},c.fromRatio=function(t,e){if(\"object\"==typeof t){var r={};for(var n in t)t.hasOwnProperty(n)&&(r[n]=\"a\"===n?t[n]:O(t[n]));t=r}return c(t,e)},c.equals=function(t,e){return!(!t||!e)&&c(t).toRgbString()==c(e).toRgbString()},c.random=function(){return c.fromRatio({r:l(),g:l(),b:l()})},c.mix=function(t,e,r){r=0===r?0:r||50;var n=c(t).toRgb(),i=c(e).toRgb(),a=r/100;return c({r:(i.r-n.r)*a+n.r,g:(i.g-n.g)*a+n.g,b:(i.b-n.b)*a+n.b,a:(i.a-n.a)*a+n.a})},c.readability=function(e,r){var n=c(e),i=c(r);return(t.max(n.getLuminance(),i.getLuminance())+.05)/(t.min(n.getLuminance(),i.getLuminance())+.05)},c.isReadable=function(t,e,r){var n,i,a=c.readability(t,e);switch(i=!1,(n=function(t){var e,r;e=((t=t||{level:\"AA\",size:\"small\"}).level||\"AA\").toUpperCase(),r=(t.size||\"small\").toLowerCase(),\"AA\"!==e&&\"AAA\"!==e&&(e=\"AA\");\"small\"!==r&&\"large\"!==r&&(r=\"small\");return{level:e,size:r}}(r)).level+n.size){case\"AAsmall\":case\"AAAlarge\":i=a>=4.5;break;case\"AAlarge\":i=a>=3;break;case\"AAAsmall\":i=a>=7}return i},c.mostReadable=function(t,e,r){var n,i,a,o,s=null,l=0;i=(r=r||{}).includeFallbackColors,a=r.level,o=r.size;for(var u=0;u<e.length;u++)(n=c.readability(t,e[u]))>l&&(l=n,s=c(e[u]));return c.isReadable(t,s,{level:a,size:o})||!i?s:(r.includeFallbackColors=!1,c.mostReadable(t,[\"#fff\",\"#000\"],r))};var S=c.names={aliceblue:\"f0f8ff\",antiquewhite:\"faebd7\",aqua:\"0ff\",aquamarine:\"7fffd4\",azure:\"f0ffff\",beige:\"f5f5dc\",bisque:\"ffe4c4\",black:\"000\",blanchedalmond:\"ffebcd\",blue:\"00f\",blueviolet:\"8a2be2\",brown:\"a52a2a\",burlywood:\"deb887\",burntsienna:\"ea7e5d\",cadetblue:\"5f9ea0\",chartreuse:\"7fff00\",chocolate:\"d2691e\",coral:\"ff7f50\",cornflowerblue:\"6495ed\",cornsilk:\"fff8dc\",crimson:\"dc143c\",cyan:\"0ff\",darkblue:\"00008b\",darkcyan:\"008b8b\",darkgoldenrod:\"b8860b\",darkgray:\"a9a9a9\",darkgreen:\"006400\",darkgrey:\"a9a9a9\",darkkhaki:\"bdb76b\",darkmagenta:\"8b008b\",darkolivegreen:\"556b2f\",darkorange:\"ff8c00\",darkorchid:\"9932cc\",darkred:\"8b0000\",darksalmon:\"e9967a\",darkseagreen:\"8fbc8f\",darkslateblue:\"483d8b\",darkslategray:\"2f4f4f\",darkslategrey:\"2f4f4f\",darkturquoise:\"00ced1\",darkviolet:\"9400d3\",deeppink:\"ff1493\",deepskyblue:\"00bfff\",dimgray:\"696969\",dimgrey:\"696969\",dodgerblue:\"1e90ff\",firebrick:\"b22222\",floralwhite:\"fffaf0\",forestgreen:\"228b22\",fuchsia:\"f0f\",gainsboro:\"dcdcdc\",ghostwhite:\"f8f8ff\",gold:\"ffd700\",goldenrod:\"daa520\",gray:\"808080\",green:\"008000\",greenyellow:\"adff2f\",grey:\"808080\",honeydew:\"f0fff0\",hotpink:\"ff69b4\",indianred:\"cd5c5c\",indigo:\"4b0082\",ivory:\"fffff0\",khaki:\"f0e68c\",lavender:\"e6e6fa\",lavenderblush:\"fff0f5\",lawngreen:\"7cfc00\",lemonchiffon:\"fffacd\",lightblue:\"add8e6\",lightcoral:\"f08080\",lightcyan:\"e0ffff\",lightgoldenrodyellow:\"fafad2\",lightgray:\"d3d3d3\",lightgreen:\"90ee90\",lightgrey:\"d3d3d3\",lightpink:\"ffb6c1\",lightsalmon:\"ffa07a\",lightseagreen:\"20b2aa\",lightskyblue:\"87cefa\",lightslategray:\"789\",lightslategrey:\"789\",lightsteelblue:\"b0c4de\",lightyellow:\"ffffe0\",lime:\"0f0\",limegreen:\"32cd32\",linen:\"faf0e6\",magenta:\"f0f\",maroon:\"800000\",mediumaquamarine:\"66cdaa\",mediumblue:\"0000cd\",mediumorchid:\"ba55d3\",mediumpurple:\"9370db\",mediumseagreen:\"3cb371\",mediumslateblue:\"7b68ee\",mediumspringgreen:\"00fa9a\",mediumturquoise:\"48d1cc\",mediumvioletred:\"c71585\",midnightblue:\"191970\",mintcream:\"f5fffa\",mistyrose:\"ffe4e1\",moccasin:\"ffe4b5\",navajowhite:\"ffdead\",navy:\"000080\",oldlace:\"fdf5e6\",olive:\"808000\",olivedrab:\"6b8e23\",orange:\"ffa500\",orangered:\"ff4500\",orchid:\"da70d6\",palegoldenrod:\"eee8aa\",palegreen:\"98fb98\",paleturquoise:\"afeeee\",palevioletred:\"db7093\",papayawhip:\"ffefd5\",peachpuff:\"ffdab9\",peru:\"cd853f\",pink:\"ffc0cb\",plum:\"dda0dd\",powderblue:\"b0e0e6\",purple:\"800080\",rebeccapurple:\"663399\",red:\"f00\",rosybrown:\"bc8f8f\",royalblue:\"4169e1\",saddlebrown:\"8b4513\",salmon:\"fa8072\",sandybrown:\"f4a460\",seagreen:\"2e8b57\",seashell:\"fff5ee\",sienna:\"a0522d\",silver:\"c0c0c0\",skyblue:\"87ceeb\",slateblue:\"6a5acd\",slategray:\"708090\",slategrey:\"708090\",snow:\"fffafa\",springgreen:\"00ff7f\",steelblue:\"4682b4\",tan:\"d2b48c\",teal:\"008080\",thistle:\"d8bfd8\",tomato:\"ff6347\",turquoise:\"40e0d0\",violet:\"ee82ee\",wheat:\"f5deb3\",white:\"fff\",whitesmoke:\"f5f5f5\",yellow:\"ff0\",yellowgreen:\"9acd32\"},E=c.hexNames=function(t){var e={};for(var r in t)t.hasOwnProperty(r)&&(e[t[r]]=r);return e}(S);function C(t){return t=parseFloat(t),(isNaN(t)||t<0||t>1)&&(t=1),t}function L(e,r){(function(t){return\"string\"==typeof t&&-1!=t.indexOf(\".\")&&1===parseFloat(t)})(e)&&(e=\"100%\");var n=function(t){return\"string\"==typeof t&&-1!=t.indexOf(\"%\")}(e);return e=o(r,s(0,parseFloat(e))),n&&(e=parseInt(e*r,10)/100),t.abs(e-r)<1e-6?1:e%r/parseFloat(r)}function I(t){return o(1,s(0,t))}function P(t){return parseInt(t,16)}function z(t){return 1==t.length?\"0\"+t:\"\"+t}function O(t){return t<=1&&(t=100*t+\"%\"),t}function D(e){return t.round(255*parseFloat(e)).toString(16)}function R(t){return P(t)/255}var F,B,N,j=(B=\"[\\\\s|\\\\(]+(\"+(F=\"(?:[-\\\\+]?\\\\d*\\\\.\\\\d+%?)|(?:[-\\\\+]?\\\\d+%?)\")+\")[,|\\\\s]+(\"+F+\")[,|\\\\s]+(\"+F+\")\\\\s*\\\\)?\",N=\"[\\\\s|\\\\(]+(\"+F+\")[,|\\\\s]+(\"+F+\")[,|\\\\s]+(\"+F+\")[,|\\\\s]+(\"+F+\")\\\\s*\\\\)?\",{CSS_UNIT:new RegExp(F),rgb:new RegExp(\"rgb\"+B),rgba:new RegExp(\"rgba\"+N),hsl:new RegExp(\"hsl\"+B),hsla:new RegExp(\"hsla\"+N),hsv:new RegExp(\"hsv\"+B),hsva:new RegExp(\"hsva\"+N),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/});function U(t){return!!j.CSS_UNIT.exec(t)}\"undefined\"!=typeof e&&e.exports?e.exports=c:window.tinycolor=c}(Math)},{}],577:[function(t,e,r){\"use strict\";e.exports=i,e.exports.float32=e.exports.float=i,e.exports.fract32=e.exports.fract=function(t){if(t.length){for(var e=i(t),r=0,n=e.length;r<n;r++)e[r]=t[r]-e[r];return e}return i(t-i(t))};var n=new Float32Array(1);function i(t){if(t.length){if(t instanceof Float32Array)return t;var e=new Float32Array(t);return e.set(t),e}return n[0]=t,n[0]}},{}],578:[function(t,e,r){\"use strict\";var n=t(\"parse-unit\");e.exports=a;function i(t,e){var r=n(getComputedStyle(t).getPropertyValue(e));return r[0]*a(r[1],t)}function a(t,e){switch(e=e||document.body,t=(t||\"px\").trim().toLowerCase(),e!==window&&e!==document||(e=document.body),t){case\"%\":return e.clientHeight/100;case\"ch\":case\"ex\":return function(t,e){var r=document.createElement(\"div\");r.style[\"font-size\"]=\"128\"+t,e.appendChild(r);var n=i(r,\"font-size\")/128;return e.removeChild(r),n}(t,e);case\"em\":return i(e,\"font-size\");case\"rem\":return i(document.body,\"font-size\");case\"vw\":return window.innerWidth/100;case\"vh\":return window.innerHeight/100;case\"vmin\":return Math.min(window.innerWidth,window.innerHeight)/100;case\"vmax\":return Math.max(window.innerWidth,window.innerHeight)/100;case\"in\":return 96;case\"cm\":return 96/2.54;case\"mm\":return 96/25.4;case\"pt\":return 96/72;case\"pc\":return 16}return 1}},{\"parse-unit\":506}],579:[function(t,e,r){!function(t,n){\"object\"==typeof r&&\"undefined\"!=typeof e?n(r):n((t=t||self).topojson=t.topojson||{})}(this,(function(t){\"use strict\";function e(t){return t}function r(t){if(null==t)return e;var r,n,i=t.scale[0],a=t.scale[1],o=t.translate[0],s=t.translate[1];return function(t,e){e||(r=n=0);var l=2,c=t.length,u=new Array(c);for(u[0]=(r+=t[0])*i+o,u[1]=(n+=t[1])*a+s;l<c;)u[l]=t[l],++l;return u}}function n(t){var e,n=r(t.transform),i=1/0,a=i,o=-i,s=-i;function l(t){(t=n(t))[0]<i&&(i=t[0]),t[0]>o&&(o=t[0]),t[1]<a&&(a=t[1]),t[1]>s&&(s=t[1])}function c(t){switch(t.type){case\"GeometryCollection\":t.geometries.forEach(c);break;case\"Point\":l(t.coordinates);break;case\"MultiPoint\":t.coordinates.forEach(l)}}for(e in t.arcs.forEach((function(t){for(var e,r=-1,l=t.length;++r<l;)(e=n(t[r],r))[0]<i&&(i=e[0]),e[0]>o&&(o=e[0]),e[1]<a&&(a=e[1]),e[1]>s&&(s=e[1])})),t.objects)c(t.objects[e]);return[i,a,o,s]}function i(t,e){var r=e.id,n=e.bbox,i=null==e.properties?{}:e.properties,o=a(t,e);return null==r&&null==n?{type:\"Feature\",properties:i,geometry:o}:null==n?{type:\"Feature\",id:r,properties:i,geometry:o}:{type:\"Feature\",id:r,bbox:n,properties:i,geometry:o}}function a(t,e){var n=r(t.transform),i=t.arcs;function a(t,e){e.length&&e.pop();for(var r=i[t<0?~t:t],a=0,o=r.length;a<o;++a)e.push(n(r[a],a));t<0&&function(t,e){for(var r,n=t.length,i=n-e;i<--n;)r=t[i],t[i++]=t[n],t[n]=r}(e,o)}function o(t){return n(t)}function s(t){for(var e=[],r=0,n=t.length;r<n;++r)a(t[r],e);return e.length<2&&e.push(e[0]),e}function l(t){for(var e=s(t);e.length<4;)e.push(e[0]);return e}function c(t){return t.map(l)}return function t(e){var r,n=e.type;switch(n){case\"GeometryCollection\":return{type:n,geometries:e.geometries.map(t)};case\"Point\":r=o(e.coordinates);break;case\"MultiPoint\":r=e.coordinates.map(o);break;case\"LineString\":r=s(e.arcs);break;case\"MultiLineString\":r=e.arcs.map(s);break;case\"Polygon\":r=c(e.arcs);break;case\"MultiPolygon\":r=e.arcs.map(c);break;default:return null}return{type:n,coordinates:r}}(e)}function o(t,e){var r={},n={},i={},a=[],o=-1;function s(t,e){for(var n in t){var i=t[n];delete e[i.start],delete i.start,delete i.end,i.forEach((function(t){r[t<0?~t:t]=1})),a.push(i)}}return e.forEach((function(r,n){var i,a=t.arcs[r<0?~r:r];a.length<3&&!a[1][0]&&!a[1][1]&&(i=e[++o],e[o]=r,e[n]=i)})),e.forEach((function(e){var r,a,o=function(e){var r,n=t.arcs[e<0?~e:e],i=n[0];t.transform?(r=[0,0],n.forEach((function(t){r[0]+=t[0],r[1]+=t[1]}))):r=n[n.length-1];return e<0?[r,i]:[i,r]}(e),s=o[0],l=o[1];if(r=i[s])if(delete i[r.end],r.push(e),r.end=l,a=n[l]){delete n[a.start];var c=a===r?r:r.concat(a);n[c.start=r.start]=i[c.end=a.end]=c}else n[r.start]=i[r.end]=r;else if(r=n[l])if(delete n[r.start],r.unshift(e),r.start=s,a=i[s]){delete i[a.end];var u=a===r?r:a.concat(r);n[u.start=a.start]=i[u.end=r.end]=u}else n[r.start]=i[r.end]=r;else n[(r=[e]).start=s]=i[r.end=l]=r})),s(i,n),s(n,i),e.forEach((function(t){r[t<0?~t:t]||a.push([t])})),a}function s(t,e,r){var n,i,a;if(arguments.length>1)n=l(t,e,r);else for(i=0,n=new Array(a=t.arcs.length);i<a;++i)n[i]=i;return{type:\"MultiLineString\",arcs:o(t,n)}}function l(t,e,r){var n,i=[],a=[];function o(t){var e=t<0?~t:t;(a[e]||(a[e]=[])).push({i:t,g:n})}function s(t){t.forEach(o)}function l(t){t.forEach(s)}return function t(e){switch(n=e,e.type){case\"GeometryCollection\":e.geometries.forEach(t);break;case\"LineString\":s(e.arcs);break;case\"MultiLineString\":case\"Polygon\":l(e.arcs);break;case\"MultiPolygon\":!function(t){t.forEach(l)}(e.arcs)}}(e),a.forEach(null==r?function(t){i.push(t[0].i)}:function(t){r(t[0].g,t[t.length-1].g)&&i.push(t[0].i)}),i}function c(t,e){var r={},n=[],i=[];function s(t){t.forEach((function(e){e.forEach((function(e){(r[e=e<0?~e:e]||(r[e]=[])).push(t)}))})),n.push(t)}function l(e){return function(t){for(var e,r=-1,n=t.length,i=t[n-1],a=0;++r<n;)e=i,i=t[r],a+=e[0]*i[1]-e[1]*i[0];return Math.abs(a)}(a(t,{type:\"Polygon\",arcs:[e]}).coordinates[0])}return e.forEach((function t(e){switch(e.type){case\"GeometryCollection\":e.geometries.forEach(t);break;case\"Polygon\":s(e.arcs);break;case\"MultiPolygon\":e.arcs.forEach(s)}})),n.forEach((function(t){if(!t._){var e=[],n=[t];for(t._=1,i.push(e);t=n.pop();)e.push(t),t.forEach((function(t){t.forEach((function(t){r[t<0?~t:t].forEach((function(t){t._||(t._=1,n.push(t))}))}))}))}})),n.forEach((function(t){delete t._})),{type:\"MultiPolygon\",arcs:i.map((function(e){var n,i=[];if(e.forEach((function(t){t.forEach((function(t){t.forEach((function(t){r[t<0?~t:t].length<2&&i.push(t)}))}))})),(n=(i=o(t,i)).length)>1)for(var a,s,c=1,u=l(i[0]);c<n;++c)(a=l(i[c]))>u&&(s=i[0],i[0]=i[c],i[c]=s,u=a);return i})).filter((function(t){return t.length>0}))}}function u(t,e){for(var r=0,n=t.length;r<n;){var i=r+n>>>1;t[i]<e?r=i+1:n=i}return r}function f(t){if(null==t)return e;var r,n,i=t.scale[0],a=t.scale[1],o=t.translate[0],s=t.translate[1];return function(t,e){e||(r=n=0);var l=2,c=t.length,u=new Array(c),f=Math.round((t[0]-o)/i),h=Math.round((t[1]-s)/a);for(u[0]=f-r,r=f,u[1]=h-n,n=h;l<c;)u[l]=t[l],++l;return u}}t.bbox=n,t.feature=function(t,e){return\"string\"==typeof e&&(e=t.objects[e]),\"GeometryCollection\"===e.type?{type:\"FeatureCollection\",features:e.geometries.map((function(e){return i(t,e)}))}:i(t,e)},t.merge=function(t){return a(t,c.apply(this,arguments))},t.mergeArcs=c,t.mesh=function(t){return a(t,s.apply(this,arguments))},t.meshArcs=s,t.neighbors=function(t){var e={},r=t.map((function(){return[]}));function n(t,r){t.forEach((function(t){t<0&&(t=~t);var n=e[t];n?n.push(r):e[t]=[r]}))}function i(t,e){t.forEach((function(t){n(t,e)}))}var a={LineString:n,MultiLineString:i,Polygon:i,MultiPolygon:function(t,e){t.forEach((function(t){i(t,e)}))}};for(var o in t.forEach((function t(e,r){\"GeometryCollection\"===e.type?e.geometries.forEach((function(e){t(e,r)})):e.type in a&&a[e.type](e.arcs,r)})),e)for(var s=e[o],l=s.length,c=0;c<l;++c)for(var f=c+1;f<l;++f){var h,p=s[c],d=s[f];(h=r[p])[o=u(h,d)]!==d&&h.splice(o,0,d),(h=r[d])[o=u(h,p)]!==p&&h.splice(o,0,p)}return r},t.quantize=function(t,e){if(t.transform)throw new Error(\"already quantized\");if(e&&e.scale)l=t.bbox;else{if(!((r=Math.floor(e))>=2))throw new Error(\"n must be \\u22652\");var r,i=(l=t.bbox||n(t))[0],a=l[1],o=l[2],s=l[3];e={scale:[o-i?(o-i)/(r-1):1,s-a?(s-a)/(r-1):1],translate:[i,a]}}var l,c,u=f(e),h=t.objects,p={};function d(t){return u(t)}function g(t){var e;switch(t.type){case\"GeometryCollection\":e={type:\"GeometryCollection\",geometries:t.geometries.map(g)};break;case\"Point\":e={type:\"Point\",coordinates:d(t.coordinates)};break;case\"MultiPoint\":e={type:\"MultiPoint\",coordinates:t.coordinates.map(d)};break;default:return t}return null!=t.id&&(e.id=t.id),null!=t.bbox&&(e.bbox=t.bbox),null!=t.properties&&(e.properties=t.properties),e}for(c in h)p[c]=g(h[c]);return{type:\"Topology\",bbox:l,transform:e,objects:p,arcs:t.arcs.map((function(t){var e,r=0,n=1,i=t.length,a=new Array(i);for(a[0]=u(t[0],0);++r<i;)((e=u(t[r],r))[0]||e[1])&&(a[n++]=e);return 1===n&&(a[n++]=[0,0]),a.length=n,a}))}},t.transform=r,t.untransform=f,Object.defineProperty(t,\"__esModule\",{value:!0})}))},{}],580:[function(t,e,r){\"use strict\";e.exports=function(t){if(t<0)return[];if(0===t)return[[0]];for(var e=0|Math.round(a(t+1)),r=[],o=0;o<e;++o){for(var s=n.unrank(t,o),l=[0],c=0,u=0;u<s.length;++u)c+=1<<s[u],l.push(c);i(s)<1&&(l[0]=c,l[t]=0),r.push(l)}return r};var n=t(\"permutation-rank\"),i=t(\"permutation-parity\"),a=t(\"gamma\")},{gamma:248,\"permutation-parity\":509,\"permutation-rank\":510}],581:[function(t,e,r){\"use strict\";e.exports=function(t){var e=(t=t||{}).center||[0,0,0],r=t.up||[0,1,0],n=t.right||f(r),i=t.radius||1,a=t.theta||0,u=t.phi||0;if(e=[].slice.call(e,0,3),r=[].slice.call(r,0,3),s(r,r),n=[].slice.call(n,0,3),s(n,n),\"eye\"in t){var p=t.eye,d=[p[0]-e[0],p[1]-e[1],p[2]-e[2]];o(n,d,r),c(n[0],n[1],n[2])<1e-6?n=f(r):s(n,n),i=c(d[0],d[1],d[2]);var g=l(r,d)/i,m=l(n,d)/i;u=Math.acos(g),a=Math.acos(m)}return i=Math.log(i),new h(t.zoomMin,t.zoomMax,e,r,n,i,a,u)};var n=t(\"filtered-vector\"),i=t(\"gl-mat4/invert\"),a=t(\"gl-mat4/rotate\"),o=t(\"gl-vec3/cross\"),s=t(\"gl-vec3/normalize\"),l=t(\"gl-vec3/dot\");function c(t,e,r){return Math.sqrt(Math.pow(t,2)+Math.pow(e,2)+Math.pow(r,2))}function u(t){return Math.min(1,Math.max(-1,t))}function f(t){var e=Math.abs(t[0]),r=Math.abs(t[1]),n=Math.abs(t[2]),i=[0,0,0];e>Math.max(r,n)?i[2]=1:r>Math.max(e,n)?i[0]=1:i[1]=1;for(var a=0,o=0,l=0;l<3;++l)a+=t[l]*t[l],o+=i[l]*t[l];for(l=0;l<3;++l)i[l]-=o/a*t[l];return s(i,i),i}function h(t,e,r,i,a,o,s,l){this.center=n(r),this.up=n(i),this.right=n(a),this.radius=n([o]),this.angle=n([s,l]),this.angle.bounds=[[-1/0,-Math.PI/2],[1/0,Math.PI/2]],this.setDistanceLimits(t,e),this.computedCenter=this.center.curve(0),this.computedUp=this.up.curve(0),this.computedRight=this.right.curve(0),this.computedRadius=this.radius.curve(0),this.computedAngle=this.angle.curve(0),this.computedToward=[0,0,0],this.computedEye=[0,0,0],this.computedMatrix=new Array(16);for(var c=0;c<16;++c)this.computedMatrix[c]=.5;this.recalcMatrix(0)}var p=h.prototype;p.setDistanceLimits=function(t,e){t=t>0?Math.log(t):-1/0,e=e>0?Math.log(e):1/0,e=Math.max(e,t),this.radius.bounds[0][0]=t,this.radius.bounds[1][0]=e},p.getDistanceLimits=function(t){var e=this.radius.bounds[0];return t?(t[0]=Math.exp(e[0][0]),t[1]=Math.exp(e[1][0]),t):[Math.exp(e[0][0]),Math.exp(e[1][0])]},p.recalcMatrix=function(t){this.center.curve(t),this.up.curve(t),this.right.curve(t),this.radius.curve(t),this.angle.curve(t);for(var e=this.computedUp,r=this.computedRight,n=0,i=0,a=0;a<3;++a)i+=e[a]*r[a],n+=e[a]*e[a];var l=Math.sqrt(n),u=0;for(a=0;a<3;++a)r[a]-=e[a]*i/n,u+=r[a]*r[a],e[a]/=l;var f=Math.sqrt(u);for(a=0;a<3;++a)r[a]/=f;var h=this.computedToward;o(h,e,r),s(h,h);var p=Math.exp(this.computedRadius[0]),d=this.computedAngle[0],g=this.computedAngle[1],m=Math.cos(d),v=Math.sin(d),y=Math.cos(g),x=Math.sin(g),b=this.computedCenter,_=m*y,w=v*y,T=x,k=-m*x,M=-v*x,A=y,S=this.computedEye,E=this.computedMatrix;for(a=0;a<3;++a){var C=_*r[a]+w*h[a]+T*e[a];E[4*a+1]=k*r[a]+M*h[a]+A*e[a],E[4*a+2]=C,E[4*a+3]=0}var L=E[1],I=E[5],P=E[9],z=E[2],O=E[6],D=E[10],R=I*D-P*O,F=P*z-L*D,B=L*O-I*z,N=c(R,F,B);R/=N,F/=N,B/=N,E[0]=R,E[4]=F,E[8]=B;for(a=0;a<3;++a)S[a]=b[a]+E[2+4*a]*p;for(a=0;a<3;++a){u=0;for(var j=0;j<3;++j)u+=E[a+4*j]*S[j];E[12+a]=-u}E[15]=1},p.getMatrix=function(t,e){this.recalcMatrix(t);var r=this.computedMatrix;if(e){for(var n=0;n<16;++n)e[n]=r[n];return e}return r};var d=[0,0,0];p.rotate=function(t,e,r,n){if(this.angle.move(t,e,r),n){this.recalcMatrix(t);var i=this.computedMatrix;d[0]=i[2],d[1]=i[6],d[2]=i[10];for(var o=this.computedUp,s=this.computedRight,l=this.computedToward,c=0;c<3;++c)i[4*c]=o[c],i[4*c+1]=s[c],i[4*c+2]=l[c];a(i,i,n,d);for(c=0;c<3;++c)o[c]=i[4*c],s[c]=i[4*c+1];this.up.set(t,o[0],o[1],o[2]),this.right.set(t,s[0],s[1],s[2])}},p.pan=function(t,e,r,n){e=e||0,r=r||0,n=n||0,this.recalcMatrix(t);var i=this.computedMatrix,a=(Math.exp(this.computedRadius[0]),i[1]),o=i[5],s=i[9],l=c(a,o,s);a/=l,o/=l,s/=l;var u=i[0],f=i[4],h=i[8],p=u*a+f*o+h*s,d=c(u-=a*p,f-=o*p,h-=s*p),g=(u/=d)*e+a*r,m=(f/=d)*e+o*r,v=(h/=d)*e+s*r;this.center.move(t,g,m,v);var y=Math.exp(this.computedRadius[0]);y=Math.max(1e-4,y+n),this.radius.set(t,Math.log(y))},p.translate=function(t,e,r,n){this.center.move(t,e||0,r||0,n||0)},p.setMatrix=function(t,e,r,n){var a=1;\"number\"==typeof r&&(a=0|r),(a<0||a>3)&&(a=1);var o=(a+2)%3;e||(this.recalcMatrix(t),e=this.computedMatrix);var s=e[a],l=e[a+4],f=e[a+8];if(n){var h=Math.abs(s),p=Math.abs(l),d=Math.abs(f),g=Math.max(h,p,d);h===g?(s=s<0?-1:1,l=f=0):d===g?(f=f<0?-1:1,s=l=0):(l=l<0?-1:1,s=f=0)}else{var m=c(s,l,f);s/=m,l/=m,f/=m}var v,y,x=e[o],b=e[o+4],_=e[o+8],w=x*s+b*l+_*f,T=c(x-=s*w,b-=l*w,_-=f*w),k=l*(_/=T)-f*(b/=T),M=f*(x/=T)-s*_,A=s*b-l*x,S=c(k,M,A);if(k/=S,M/=S,A/=S,this.center.jump(t,H,G,Y),this.radius.idle(t),this.up.jump(t,s,l,f),this.right.jump(t,x,b,_),2===a){var E=e[1],C=e[5],L=e[9],I=E*x+C*b+L*_,P=E*k+C*M+L*A;v=R<0?-Math.PI/2:Math.PI/2,y=Math.atan2(P,I)}else{var z=e[2],O=e[6],D=e[10],R=z*s+O*l+D*f,F=z*x+O*b+D*_,B=z*k+O*M+D*A;v=Math.asin(u(R)),y=Math.atan2(B,F)}this.angle.jump(t,y,v),this.recalcMatrix(t);var N=e[2],j=e[6],U=e[10],V=this.computedMatrix;i(V,e);var q=V[15],H=V[12]/q,G=V[13]/q,Y=V[14]/q,W=Math.exp(this.computedRadius[0]);this.center.jump(t,H-N*W,G-j*W,Y-U*W)},p.lastT=function(){return Math.max(this.center.lastT(),this.up.lastT(),this.right.lastT(),this.radius.lastT(),this.angle.lastT())},p.idle=function(t){this.center.idle(t),this.up.idle(t),this.right.idle(t),this.radius.idle(t),this.angle.idle(t)},p.flush=function(t){this.center.flush(t),this.up.flush(t),this.right.flush(t),this.radius.flush(t),this.angle.flush(t)},p.setDistance=function(t,e){e>0&&this.radius.set(t,Math.log(e))},p.lookAt=function(t,e,r,n){this.recalcMatrix(t),e=e||this.computedEye,r=r||this.computedCenter;var i=(n=n||this.computedUp)[0],a=n[1],o=n[2],s=c(i,a,o);if(!(s<1e-6)){i/=s,a/=s,o/=s;var l=e[0]-r[0],f=e[1]-r[1],h=e[2]-r[2],p=c(l,f,h);if(!(p<1e-6)){l/=p,f/=p,h/=p;var d=this.computedRight,g=d[0],m=d[1],v=d[2],y=i*g+a*m+o*v,x=c(g-=y*i,m-=y*a,v-=y*o);if(!(x<.01&&(x=c(g=a*h-o*f,m=o*l-i*h,v=i*f-a*l))<1e-6)){g/=x,m/=x,v/=x,this.up.set(t,i,a,o),this.right.set(t,g,m,v),this.center.set(t,r[0],r[1],r[2]),this.radius.set(t,Math.log(p));var b=a*v-o*m,_=o*g-i*v,w=i*m-a*g,T=c(b,_,w),k=i*l+a*f+o*h,M=g*l+m*f+v*h,A=(b/=T)*l+(_/=T)*f+(w/=T)*h,S=Math.asin(u(k)),E=Math.atan2(A,M),C=this.angle._state,L=C[C.length-1],I=C[C.length-2];L%=2*Math.PI;var P=Math.abs(L+2*Math.PI-E),z=Math.abs(L-E),O=Math.abs(L-2*Math.PI-E);P<z&&(L+=2*Math.PI),O<z&&(L-=2*Math.PI),this.angle.jump(this.angle.lastT(),L,I),this.angle.set(t,E,S)}}}}},{\"filtered-vector\":242,\"gl-mat4/invert\":293,\"gl-mat4/rotate\":299,\"gl-vec3/cross\":365,\"gl-vec3/dot\":370,\"gl-vec3/normalize\":387}],582:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var i=t*e,a=n*t,o=a-(a-t),s=t-o,l=n*e,c=l-(l-e),u=e-c,f=s*u-(i-o*c-s*c-o*u);if(r)return r[0]=f,r[1]=i,r;return[f,i]};var n=+(Math.pow(2,27)+1)},{}],583:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){var n=t+e,i=n-t,a=e-i,o=t-(n-i);if(r)return r[0]=o+a,r[1]=n,r;return[o+a,n]}},{}],584:[function(t,e,r){\"use strict\";var n=t(\"../prototype/is\");e.exports=function(t){if(\"function\"!=typeof t)return!1;if(!hasOwnProperty.call(t,\"length\"))return!1;try{if(\"number\"!=typeof t.length)return!1;if(\"function\"!=typeof t.call)return!1;if(\"function\"!=typeof t.apply)return!1}catch(t){return!1}return!n(t)}},{\"../prototype/is\":591}],585:[function(t,e,r){\"use strict\";var n=t(\"../value/is\"),i=t(\"../object/is\"),a=t(\"../string/coerce\"),o=t(\"./to-short-string\"),s=function(t,e){return t.replace(\"%v\",o(e))};e.exports=function(t,e,r){if(!i(r))throw new TypeError(s(e,t));if(!n(t)){if(\"default\"in r)return r.default;if(r.isOptional)return null}var o=a(r.errorMessage);throw n(o)||(o=e),new TypeError(s(o,t))}},{\"../object/is\":588,\"../string/coerce\":592,\"../value/is\":594,\"./to-short-string\":587}],586:[function(t,e,r){\"use strict\";e.exports=function(t){try{return t.toString()}catch(e){try{return String(t)}catch(t){return null}}}},{}],587:[function(t,e,r){\"use strict\";var n=t(\"./safe-to-string\"),i=/[\\n\\r\\u2028\\u2029]/g;e.exports=function(t){var e=n(t);return null===e?\"<Non-coercible to string value>\":(e.length>100&&(e=e.slice(0,99)+\"\\u2026\"),e=e.replace(i,(function(t){switch(t){case\"\\n\":return\"\\\\n\";case\"\\r\":return\"\\\\r\";case\"\\u2028\":return\"\\\\u2028\";case\"\\u2029\":return\"\\\\u2029\";default:throw new Error(\"Unexpected character\")}})))}},{\"./safe-to-string\":586}],588:[function(t,e,r){\"use strict\";var n=t(\"../value/is\"),i={object:!0,function:!0,undefined:!0};e.exports=function(t){return!!n(t)&&hasOwnProperty.call(i,typeof t)}},{\"../value/is\":594}],589:[function(t,e,r){\"use strict\";var n=t(\"../lib/resolve-exception\"),i=t(\"./is\");e.exports=function(t){return i(t)?t:n(t,\"%v is not a plain function\",arguments[1])}},{\"../lib/resolve-exception\":585,\"./is\":590}],590:[function(t,e,r){\"use strict\";var n=t(\"../function/is\"),i=/^\\s*class[\\s{/}]/,a=Function.prototype.toString;e.exports=function(t){return!!n(t)&&!i.test(a.call(t))}},{\"../function/is\":584}],591:[function(t,e,r){\"use strict\";var n=t(\"../object/is\");e.exports=function(t){if(!n(t))return!1;try{return!!t.constructor&&t.constructor.prototype===t}catch(t){return!1}}},{\"../object/is\":588}],592:[function(t,e,r){\"use strict\";var n=t(\"../value/is\"),i=t(\"../object/is\"),a=Object.prototype.toString;e.exports=function(t){if(!n(t))return null;if(i(t)){var e=t.toString;if(\"function\"!=typeof e)return null;if(e===a)return null}try{return\"\"+t}catch(t){return null}}},{\"../object/is\":588,\"../value/is\":594}],593:[function(t,e,r){\"use strict\";var n=t(\"../lib/resolve-exception\"),i=t(\"./is\");e.exports=function(t){return i(t)?t:n(t,\"Cannot use %v\",arguments[1])}},{\"../lib/resolve-exception\":585,\"./is\":594}],594:[function(t,e,r){\"use strict\";e.exports=function(t){return null!=t}},{}],595:[function(t,e,r){(function(e){(function(){\"use strict\";var n=t(\"bit-twiddle\"),i=t(\"dup\"),a=t(\"buffer\").Buffer;e.__TYPEDARRAY_POOL||(e.__TYPEDARRAY_POOL={UINT8:i([32,0]),UINT16:i([32,0]),UINT32:i([32,0]),BIGUINT64:i([32,0]),INT8:i([32,0]),INT16:i([32,0]),INT32:i([32,0]),BIGINT64:i([32,0]),FLOAT:i([32,0]),DOUBLE:i([32,0]),DATA:i([32,0]),UINT8C:i([32,0]),BUFFER:i([32,0])});var o=\"undefined\"!=typeof Uint8ClampedArray,s=\"undefined\"!=typeof BigUint64Array,l=\"undefined\"!=typeof BigInt64Array,c=e.__TYPEDARRAY_POOL;c.UINT8C||(c.UINT8C=i([32,0])),c.BIGUINT64||(c.BIGUINT64=i([32,0])),c.BIGINT64||(c.BIGINT64=i([32,0])),c.BUFFER||(c.BUFFER=i([32,0]));var u=c.DATA,f=c.BUFFER;function h(t){if(t){var e=t.length||t.byteLength,r=n.log2(e);u[r].push(t)}}function p(t){t=n.nextPow2(t);var e=n.log2(t),r=u[e];return r.length>0?r.pop():new ArrayBuffer(t)}function d(t){return new Uint8Array(p(t),0,t)}function g(t){return new Uint16Array(p(2*t),0,t)}function m(t){return new Uint32Array(p(4*t),0,t)}function v(t){return new Int8Array(p(t),0,t)}function y(t){return new Int16Array(p(2*t),0,t)}function x(t){return new Int32Array(p(4*t),0,t)}function b(t){return new Float32Array(p(4*t),0,t)}function _(t){return new Float64Array(p(8*t),0,t)}function w(t){return o?new Uint8ClampedArray(p(t),0,t):d(t)}function T(t){return s?new BigUint64Array(p(8*t),0,t):null}function k(t){return l?new BigInt64Array(p(8*t),0,t):null}function M(t){return new DataView(p(t),0,t)}function A(t){t=n.nextPow2(t);var e=n.log2(t),r=f[e];return r.length>0?r.pop():new a(t)}r.free=function(t){if(a.isBuffer(t))f[n.log2(t.length)].push(t);else{if(\"[object ArrayBuffer]\"!==Object.prototype.toString.call(t)&&(t=t.buffer),!t)return;var e=t.length||t.byteLength,r=0|n.log2(e);u[r].push(t)}},r.freeUint8=r.freeUint16=r.freeUint32=r.freeBigUint64=r.freeInt8=r.freeInt16=r.freeInt32=r.freeBigInt64=r.freeFloat32=r.freeFloat=r.freeFloat64=r.freeDouble=r.freeUint8Clamped=r.freeDataView=function(t){h(t.buffer)},r.freeArrayBuffer=h,r.freeBuffer=function(t){f[n.log2(t.length)].push(t)},r.malloc=function(t,e){if(void 0===e||\"arraybuffer\"===e)return p(t);switch(e){case\"uint8\":return d(t);case\"uint16\":return g(t);case\"uint32\":return m(t);case\"int8\":return v(t);case\"int16\":return y(t);case\"int32\":return x(t);case\"float\":case\"float32\":return b(t);case\"double\":case\"float64\":return _(t);case\"uint8_clamped\":return w(t);case\"bigint64\":return k(t);case\"biguint64\":return T(t);case\"buffer\":return A(t);case\"data\":case\"dataview\":return M(t);default:return null}return null},r.mallocArrayBuffer=p,r.mallocUint8=d,r.mallocUint16=g,r.mallocUint32=m,r.mallocInt8=v,r.mallocInt16=y,r.mallocInt32=x,r.mallocFloat32=r.mallocFloat=b,r.mallocFloat64=r.mallocDouble=_,r.mallocUint8Clamped=w,r.mallocBigUint64=T,r.mallocBigInt64=k,r.mallocDataView=M,r.mallocBuffer=A,r.clearCache=function(){for(var t=0;t<32;++t)c.UINT8[t].length=0,c.UINT16[t].length=0,c.UINT32[t].length=0,c.INT8[t].length=0,c.INT16[t].length=0,c.INT32[t].length=0,c.FLOAT[t].length=0,c.DOUBLE[t].length=0,c.BIGUINT64[t].length=0,c.BIGINT64[t].length=0,c.UINT8C[t].length=0,u[t].length=0,f[t].length=0}}).call(this)}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"bit-twiddle\":97,buffer:111,dup:176}],596:[function(t,e,r){\"use strict\";function n(t){this.roots=new Array(t),this.ranks=new Array(t);for(var e=0;e<t;++e)this.roots[e]=e,this.ranks[e]=0}e.exports=n;var i=n.prototype;Object.defineProperty(i,\"length\",{get:function(){return this.roots.length}}),i.makeSet=function(){var t=this.roots.length;return this.roots.push(t),this.ranks.push(0),t},i.find=function(t){for(var e=t,r=this.roots;r[t]!==t;)t=r[t];for(;r[e]!==t;){var n=r[e];r[e]=t,e=n}return t},i.link=function(t,e){var r=this.find(t),n=this.find(e);if(r!==n){var i=this.ranks,a=this.roots,o=i[r],s=i[n];o<s?a[r]=n:s<o?a[n]=r:(a[n]=r,++i[r])}}},{}],597:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){return 0===t.length?t:e?(r||t.sort(e),function(t,e){for(var r=1,n=t.length,i=t[0],a=t[0],o=1;o<n;++o)if(a=i,e(i=t[o],a)){if(o===r){r++;continue}t[r++]=i}return t.length=r,t}(t,e)):(r||t.sort(),function(t){for(var e=1,r=t.length,n=t[0],i=t[0],a=1;a<r;++a,i=n)if(i=n,(n=t[a])!==i){if(a===e){e++;continue}t[e++]=n}return t.length=e,t}(t))}},{}],598:[function(t,e,r){var n=/[\\'\\\"]/;e.exports=function(t){return t?(n.test(t.charAt(0))&&(t=t.substr(1)),n.test(t.charAt(t.length-1))&&(t=t.substr(0,t.length-1)),t):\"\"}},{}],599:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){Array.isArray(r)||(r=[].slice.call(arguments,2));for(var n=0,i=r.length;n<i;n++){var a=r[n];for(var o in a)if((void 0===e[o]||Array.isArray(e[o])||t[o]!==e[o])&&o in e){var s;if(!0===a[o])s=e[o];else{if(!1===a[o])continue;if(\"function\"==typeof a[o]&&void 0===(s=a[o](e[o],t,e)))continue}t[o]=s}}return t}},{}],600:[function(t,e,r){\"use strict\";e.exports=function(t,e){\"object\"==typeof e&&null!==e||(e={});return n(t,e.canvas||i,e.context||a,e)};var n=t(\"./lib/vtext\"),i=null,a=null;\"undefined\"!=typeof document&&((i=document.createElement(\"canvas\")).width=8192,i.height=1024,a=i.getContext(\"2d\"))},{\"./lib/vtext\":601}],601:[function(t,e,r){e.exports=function(t,e,r,n){var a=64,o=1.25,s={breaklines:!1,bolds:!1,italics:!1,subscripts:!1,superscripts:!1};n&&(n.size&&n.size>0&&(a=n.size),n.lineSpacing&&n.lineSpacing>0&&(o=n.lineSpacing),n.styletags&&n.styletags.breaklines&&(s.breaklines=!!n.styletags.breaklines),n.styletags&&n.styletags.bolds&&(s.bolds=!!n.styletags.bolds),n.styletags&&n.styletags.italics&&(s.italics=!!n.styletags.italics),n.styletags&&n.styletags.subscripts&&(s.subscripts=!!n.styletags.subscripts),n.styletags&&n.styletags.superscripts&&(s.superscripts=!!n.styletags.superscripts));return r.font=[n.fontStyle,n.fontVariant,n.fontWeight,a+\"px\",n.font].filter((function(t){return t})).join(\" \"),r.textAlign=\"start\",r.textBaseline=\"alphabetic\",r.direction=\"ltr\",h(function(t,e,r,n,a,o){r=r.replace(/\\n/g,\"\"),r=!0===o.breaklines?r.replace(/\\<br\\>/g,\"\\n\"):r.replace(/\\<br\\>/g,\" \");var s=\"\",l=[];for(p=0;p<r.length;++p)l[p]=s;!0===o.bolds&&(l=c(\"b\",\"b|\",r,l));!0===o.italics&&(l=c(\"i\",\"i|\",r,l));!0===o.superscripts&&(l=c(\"sup\",\"+1\",r,l));!0===o.subscripts&&(l=c(\"sub\",\"-1\",r,l));var u=[],f=\"\";for(p=0;p<r.length;++p)null!==l[p]&&(f+=r[p],u.push(l[p]));var h,p,d,g,m,v=f.split(\"\\n\"),y=v.length,x=Math.round(a*n),b=n,_=2*n,w=0,T=y*x+_;t.height<T&&(t.height=T);e.fillStyle=\"#000\",e.fillRect(0,0,t.width,t.height),e.fillStyle=\"#fff\";var k=0,M=\"\";function A(){if(\"\"!==M){var t=e.measureText(M).width;e.fillText(M,b+d,_+g),d+=t}}function S(){return Math.round(m)+\"px \"}function E(t,r){var n=\"\"+e.font;if(!0===o.subscripts){var i=t.indexOf(\"-\"),a=r.indexOf(\"-\"),s=i>-1?parseInt(t[1+i]):0,l=a>-1?parseInt(r[1+a]):0;s!==l&&(n=n.replace(S(),\"?px \"),m*=Math.pow(.75,l-s),n=n.replace(\"?px \",S())),g+=.25*x*(l-s)}if(!0===o.superscripts){var c=t.indexOf(\"+\"),u=r.indexOf(\"+\"),f=c>-1?parseInt(t[1+c]):0,h=u>-1?parseInt(r[1+u]):0;f!==h&&(n=n.replace(S(),\"?px \"),m*=Math.pow(.75,h-f),n=n.replace(\"?px \",S())),g-=.25*x*(h-f)}if(!0===o.bolds){var p=t.indexOf(\"b|\")>-1,d=r.indexOf(\"b|\")>-1;!p&&d&&(n=v?n.replace(\"italic \",\"italic bold \"):\"bold \"+n),p&&!d&&(n=n.replace(\"bold \",\"\"))}if(!0===o.italics){var v=t.indexOf(\"i|\")>-1,y=r.indexOf(\"i|\")>-1;!v&&y&&(n=\"italic \"+n),v&&!y&&(n=n.replace(\"italic \",\"\"))}e.font=n}for(h=0;h<y;++h){var C=v[h]+\"\\n\";for(d=0,g=h*x,m=n,M=\"\",p=0;p<C.length;++p){var L=p+k<u.length?u[p+k]:u[u.length-1];s===L?M+=C[p]:(A(),M=C[p],void 0!==L&&(E(s,L),s=L))}A(),k+=C.length;var I=0|Math.round(d+2*b);w<I&&(w=I)}var P=w,z=_+x*y;return i(e.getImageData(0,0,P,z).data,[z,P,4]).pick(-1,-1,0).transpose(1,0)}(e,r,t,a,o,s),n,a)},e.exports.processPixels=h;var n=t(\"surface-nets\"),i=t(\"ndarray\"),a=t(\"simplify-planar-graph\"),o=t(\"clean-pslg\"),s=t(\"cdt2d\"),l=t(\"planar-graph-to-polyline\");function c(t,e,r,n){for(var i=\"<\"+t+\">\",a=\"</\"+t+\">\",o=i.length,s=a.length,l=\"+\"===e[0]||\"-\"===e[0],c=0,u=-s;c>-1&&-1!==(c=r.indexOf(i,c))&&-1!==(u=r.indexOf(a,c+o))&&!(u<=c);){for(var f=c;f<u+s;++f)if(f<c+o||f>=u)n[f]=null,r=r.substr(0,f)+\" \"+r.substr(f+1);else if(null!==n[f]){var h=n[f].indexOf(e[0]);-1===h?n[f]+=e:l&&(n[f]=n[f].substr(0,h+1)+(1+parseInt(n[f][h+1]))+n[f].substr(h+2))}var p=c+o,d=r.substr(p,u-p).indexOf(i);c=-1!==d?d:u+s}return n}function u(t,e){var r=n(t,128);return e?a(r.cells,r.positions,.25):{edges:r.cells,positions:r.positions}}function f(t,e,r,n){var i=u(t,n),a=function(t,e,r){for(var n=e.textAlign||\"start\",i=e.textBaseline||\"alphabetic\",a=[1<<30,1<<30],o=[0,0],s=t.length,l=0;l<s;++l)for(var c=t[l],u=0;u<2;++u)a[u]=0|Math.min(a[u],c[u]),o[u]=0|Math.max(o[u],c[u]);var f=0;switch(n){case\"center\":f=-.5*(a[0]+o[0]);break;case\"right\":case\"end\":f=-o[0];break;case\"left\":case\"start\":f=-a[0];break;default:throw new Error(\"vectorize-text: Unrecognized textAlign: '\"+n+\"'\")}var h=0;switch(i){case\"hanging\":case\"top\":h=-a[1];break;case\"middle\":h=-.5*(a[1]+o[1]);break;case\"alphabetic\":case\"ideographic\":h=-3*r;break;case\"bottom\":h=-o[1];break;default:throw new Error(\"vectorize-text: Unrecoginized textBaseline: '\"+i+\"'\")}var p=1/r;return\"lineHeight\"in e?p*=+e.lineHeight:\"width\"in e?p=e.width/(o[0]-a[0]):\"height\"in e&&(p=e.height/(o[1]-a[1])),t.map((function(t){return[p*(t[0]+f),p*(t[1]+h)]}))}(i.positions,e,r),c=i.edges,f=\"ccw\"===e.orientation;if(o(a,c),e.polygons||e.polygon||e.polyline){for(var h=l(c,a),p=new Array(h.length),d=0;d<h.length;++d){for(var g=h[d],m=new Array(g.length),v=0;v<g.length;++v){for(var y=g[v],x=new Array(y.length),b=0;b<y.length;++b)x[b]=a[y[b]].slice();f&&x.reverse(),m[v]=x}p[d]=m}return p}return e.triangles||e.triangulate||e.triangle?{cells:s(a,c,{delaunay:!1,exterior:!1,interior:!0}),positions:a}:{edges:c,positions:a}}function h(t,e,r){try{return f(t,e,r,!0)}catch(t){}try{return f(t,e,r,!1)}catch(t){}return e.polygons||e.polyline||e.polygon?[]:e.triangles||e.triangulate||e.triangle?{cells:[],positions:[]}:{edges:[],positions:[]}}},{cdt2d:112,\"clean-pslg\":121,ndarray:495,\"planar-graph-to-polyline\":514,\"simplify-planar-graph\":562,\"surface-nets\":570}],602:[function(t,e,r){!function(){\"use strict\";if(\"undefined\"==typeof ses||!ses.ok||ses.ok()){\"undefined\"!=typeof ses&&(ses.weakMapPermitHostObjects=g);var t=!1;if(\"function\"==typeof WeakMap){var r=WeakMap;if(\"undefined\"!=typeof navigator&&/Firefox/.test(navigator.userAgent));else{var n=new r,i=Object.freeze({});if(n.set(i,1),1===n.get(i))return void(e.exports=WeakMap);t=!0}}Object.prototype.hasOwnProperty;var a=Object.getOwnPropertyNames,o=Object.defineProperty,s=Object.isExtensible,l=\"weakmap:ident:\"+Math.random()+\"___\";if(\"undefined\"!=typeof crypto&&\"function\"==typeof crypto.getRandomValues&&\"function\"==typeof ArrayBuffer&&\"function\"==typeof Uint8Array){var c=new ArrayBuffer(25),u=new Uint8Array(c);crypto.getRandomValues(u),l=\"weakmap:rand:\"+Array.prototype.map.call(u,(function(t){return(t%36).toString(36)})).join(\"\")+\"___\"}if(o(Object,\"getOwnPropertyNames\",{value:function(t){return a(t).filter(m)}}),\"getPropertyNames\"in Object){var f=Object.getPropertyNames;o(Object,\"getPropertyNames\",{value:function(t){return f(t).filter(m)}})}!function(){var t=Object.freeze;o(Object,\"freeze\",{value:function(e){return v(e),t(e)}});var e=Object.seal;o(Object,\"seal\",{value:function(t){return v(t),e(t)}});var r=Object.preventExtensions;o(Object,\"preventExtensions\",{value:function(t){return v(t),r(t)}})}();var h=!1,p=0,d=function(){this instanceof d||x();var t=[],e=[],r=p++;return Object.create(d.prototype,{get___:{value:y((function(n,i){var a,o=v(n);return o?r in o?o[r]:i:(a=t.indexOf(n))>=0?e[a]:i}))},has___:{value:y((function(e){var n=v(e);return n?r in n:t.indexOf(e)>=0}))},set___:{value:y((function(n,i){var a,o=v(n);return o?o[r]=i:(a=t.indexOf(n))>=0?e[a]=i:(a=t.length,e[a]=i,t[a]=n),this}))},delete___:{value:y((function(n){var i,a,o=v(n);return o?r in o&&delete o[r]:!((i=t.indexOf(n))<0)&&(a=t.length-1,t[i]=void 0,e[i]=e[a],t[i]=t[a],t.length=a,e.length=a,!0)}))}})};d.prototype=Object.create(Object.prototype,{get:{value:function(t,e){return this.get___(t,e)},writable:!0,configurable:!0},has:{value:function(t){return this.has___(t)},writable:!0,configurable:!0},set:{value:function(t,e){return this.set___(t,e)},writable:!0,configurable:!0},delete:{value:function(t){return this.delete___(t)},writable:!0,configurable:!0}}),\"function\"==typeof r?function(){function n(){this instanceof d||x();var e,n=new r,i=void 0,a=!1;return e=t?function(t,e){return n.set(t,e),n.has(t)||(i||(i=new d),i.set(t,e)),this}:function(t,e){if(a)try{n.set(t,e)}catch(r){i||(i=new d),i.set___(t,e)}else n.set(t,e);return this},Object.create(d.prototype,{get___:{value:y((function(t,e){return i?n.has(t)?n.get(t):i.get___(t,e):n.get(t,e)}))},has___:{value:y((function(t){return n.has(t)||!!i&&i.has___(t)}))},set___:{value:y(e)},delete___:{value:y((function(t){var e=!!n.delete(t);return i&&i.delete___(t)||e}))},permitHostObjects___:{value:y((function(t){if(t!==g)throw new Error(\"bogus call to permitHostObjects___\");a=!0}))}})}t&&\"undefined\"!=typeof Proxy&&(Proxy=void 0),n.prototype=d.prototype,e.exports=n,Object.defineProperty(WeakMap.prototype,\"constructor\",{value:WeakMap,enumerable:!1,configurable:!0,writable:!0})}():(\"undefined\"!=typeof Proxy&&(Proxy=void 0),e.exports=d)}function g(t){t.permitHostObjects___&&t.permitHostObjects___(g)}function m(t){return!(\"weakmap:\"==t.substr(0,\"weakmap:\".length)&&\"___\"===t.substr(t.length-3))}function v(t){if(t!==Object(t))throw new TypeError(\"Not an object: \"+t);var e=t[l];if(e&&e.key===t)return e;if(s(t)){e={key:t};try{return o(t,l,{value:e,writable:!1,enumerable:!1,configurable:!1}),e}catch(t){return}}}function y(t){return t.prototype=null,Object.freeze(t)}function x(){h||\"undefined\"==typeof console||(h=!0,console.warn(\"WeakMap should be invoked as new WeakMap(), not WeakMap(). This will be an error in the future.\"))}}()},{}],603:[function(t,e,r){var n=t(\"./hidden-store.js\");e.exports=function(){var t={};return function(e){if((\"object\"!=typeof e||null===e)&&\"function\"!=typeof e)throw new Error(\"Weakmap-shim: Key must be object\");var r=e.valueOf(t);return r&&r.identity===t?r:n(e,t)}}},{\"./hidden-store.js\":604}],604:[function(t,e,r){e.exports=function(t,e){var r={identity:e},n=t.valueOf;return Object.defineProperty(t,\"valueOf\",{value:function(t){return t!==e?n.apply(this,arguments):r},writable:!0}),r}},{}],605:[function(t,e,r){var n=t(\"./create-store.js\");e.exports=function(){var t=n();return{get:function(e,r){var n=t(e);return n.hasOwnProperty(\"value\")?n.value:r},set:function(e,r){return t(e).value=r,this},has:function(e){return\"value\"in t(e)},delete:function(e){return delete t(e).value}}}},{\"./create-store.js\":603}],606:[function(t,e,r){var n=t(\"get-canvas-context\");e.exports=function(t){return n(\"webgl\",t)}},{\"get-canvas-context\":249}],607:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\"),a=n.instance();function o(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}o.prototype=new n.baseCalendar,i(o.prototype,{name:\"Chinese\",jdEpoch:1721425.5,hasYearZero:!1,minMonth:0,firstMonth:0,minDay:1,regionalOptions:{\"\":{name:\"Chinese\",epochs:[\"BEC\",\"EC\"],monthNumbers:function(t,e){if(\"string\"==typeof t){var r=t.match(l);return r?r[0]:\"\"}var n=this._validateYear(t),i=t.month(),a=\"\"+this.toChineseMonth(n,i);return e&&a.length<2&&(a=\"0\"+a),this.isIntercalaryMonth(n,i)&&(a+=\"i\"),a},monthNames:function(t){if(\"string\"==typeof t){var e=t.match(c);return e?e[0]:\"\"}var r=this._validateYear(t),n=t.month(),i=[\"\\u4e00\\u6708\",\"\\u4e8c\\u6708\",\"\\u4e09\\u6708\",\"\\u56db\\u6708\",\"\\u4e94\\u6708\",\"\\u516d\\u6708\",\"\\u4e03\\u6708\",\"\\u516b\\u6708\",\"\\u4e5d\\u6708\",\"\\u5341\\u6708\",\"\\u5341\\u4e00\\u6708\",\"\\u5341\\u4e8c\\u6708\"][this.toChineseMonth(r,n)-1];return this.isIntercalaryMonth(r,n)&&(i=\"\\u95f0\"+i),i},monthNamesShort:function(t){if(\"string\"==typeof t){var e=t.match(u);return e?e[0]:\"\"}var r=this._validateYear(t),n=t.month(),i=[\"\\u4e00\",\"\\u4e8c\",\"\\u4e09\",\"\\u56db\",\"\\u4e94\",\"\\u516d\",\"\\u4e03\",\"\\u516b\",\"\\u4e5d\",\"\\u5341\",\"\\u5341\\u4e00\",\"\\u5341\\u4e8c\"][this.toChineseMonth(r,n)-1];return this.isIntercalaryMonth(r,n)&&(i=\"\\u95f0\"+i),i},parseMonth:function(t,e){t=this._validateYear(t);var r,n=parseInt(e);if(isNaN(n))\"\\u95f0\"===e[0]&&(r=!0,e=e.substring(1)),\"\\u6708\"===e[e.length-1]&&(e=e.substring(0,e.length-1)),n=1+[\"\\u4e00\",\"\\u4e8c\",\"\\u4e09\",\"\\u56db\",\"\\u4e94\",\"\\u516d\",\"\\u4e03\",\"\\u516b\",\"\\u4e5d\",\"\\u5341\",\"\\u5341\\u4e00\",\"\\u5341\\u4e8c\"].indexOf(e);else{var i=e[e.length-1];r=\"i\"===i||\"I\"===i}return this.toMonthIndex(t,n,r)},dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:1,isRTL:!1}},_validateYear:function(t,e){if(t.year&&(t=t.year()),\"number\"!=typeof t||t<1888||t>2111)throw e.replace(/\\{0\\}/,this.local.name);return t},toMonthIndex:function(t,e,r){var i=this.intercalaryMonth(t);if(r&&e!==i||e<1||e>12)throw n.local.invalidMonth.replace(/\\{0\\}/,this.local.name);return i?!r&&e<=i?e-1:e:e-1},toChineseMonth:function(t,e){t.year&&(e=(t=t.year()).month());var r=this.intercalaryMonth(t);if(e<0||e>(r?12:11))throw n.local.invalidMonth.replace(/\\{0\\}/,this.local.name);return r?e<r?e+1:e:e+1},intercalaryMonth:function(t){return t=this._validateYear(t),f[t-f[0]]>>13},isIntercalaryMonth:function(t,e){t.year&&(e=(t=t.year()).month());var r=this.intercalaryMonth(t);return!!r&&r===e},leapYear:function(t){return 0!==this.intercalaryMonth(t)},weekOfYear:function(t,e,r){var i,o=this._validateYear(t,n.local.invalidyear),s=h[o-h[0]],l=s>>9&4095,c=s>>5&15,u=31&s;(i=a.newDate(l,c,u)).add(4-(i.dayOfWeek()||7),\"d\");var f=this.toJD(t,e,r)-i.toJD();return 1+Math.floor(f/7)},monthsInYear:function(t){return this.leapYear(t)?13:12},daysInMonth:function(t,e){t.year&&(e=t.month(),t=t.year()),t=this._validateYear(t);var r=f[t-f[0]];if(e>(r>>13?12:11))throw n.local.invalidMonth.replace(/\\{0\\}/,this.local.name);return r&1<<12-e?30:29},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,s,r,n.local.invalidDate);t=this._validateYear(i.year()),e=i.month(),r=i.day();var o=this.isIntercalaryMonth(t,e),s=this.toChineseMonth(t,e),l=function(t,e,r,n,i){var a,o,s;if(\"object\"==typeof t)o=t,a=e||{};else{var l;if(!(\"number\"==typeof t&&t>=1888&&t<=2111))throw new Error(\"Lunar year outside range 1888-2111\");if(!(\"number\"==typeof e&&e>=1&&e<=12))throw new Error(\"Lunar month outside range 1 - 12\");if(!(\"number\"==typeof r&&r>=1&&r<=30))throw new Error(\"Lunar day outside range 1 - 30\");\"object\"==typeof n?(l=!1,a=n):(l=!!n,a=i||{}),o={year:t,month:e,day:r,isIntercalary:l}}s=o.day-1;var c,u=f[o.year-f[0]],p=u>>13;c=p&&(o.month>p||o.isIntercalary)?o.month:o.month-1;for(var d=0;d<c;d++){s+=u&1<<12-d?30:29}var g=h[o.year-h[0]],m=new Date(g>>9&4095,(g>>5&15)-1,(31&g)+s);return a.year=m.getFullYear(),a.month=1+m.getMonth(),a.day=m.getDate(),a}(t,s,r,o);return a.toJD(l.year,l.month,l.day)},fromJD:function(t){var e=a.fromJD(t),r=function(t,e,r,n){var i,a;if(\"object\"==typeof t)i=t,a=e||{};else{if(!(\"number\"==typeof t&&t>=1888&&t<=2111))throw new Error(\"Solar year outside range 1888-2111\");if(!(\"number\"==typeof e&&e>=1&&e<=12))throw new Error(\"Solar month outside range 1 - 12\");if(!(\"number\"==typeof r&&r>=1&&r<=31))throw new Error(\"Solar day outside range 1 - 31\");i={year:t,month:e,day:r},a=n||{}}var o=h[i.year-h[0]],s=i.year<<9|i.month<<5|i.day;a.year=s>=o?i.year:i.year-1,o=h[a.year-h[0]];var l,c=new Date(o>>9&4095,(o>>5&15)-1,31&o),u=new Date(i.year,i.month-1,i.day);l=Math.round((u-c)/864e5);var p,d=f[a.year-f[0]];for(p=0;p<13;p++){var g=d&1<<12-p?30:29;if(l<g)break;l-=g}var m=d>>13;!m||p<m?(a.isIntercalary=!1,a.month=1+p):p===m?(a.isIntercalary=!0,a.month=p):(a.isIntercalary=!1,a.month=p);return a.day=1+l,a}(e.year(),e.month(),e.day()),n=this.toMonthIndex(r.year,r.month,r.isIntercalary);return this.newDate(r.year,n,r.day)},fromString:function(t){var e=t.match(s),r=this._validateYear(+e[1]),n=+e[2],i=!!e[3],a=this.toMonthIndex(r,n,i),o=+e[4];return this.newDate(r,a,o)},add:function(t,e,r){var n=t.year(),i=t.month(),a=this.isIntercalaryMonth(n,i),s=this.toChineseMonth(n,i),l=Object.getPrototypeOf(o.prototype).add.call(this,t,e,r);if(\"y\"===r){var c=l.year(),u=l.month(),f=this.isIntercalaryMonth(c,s),h=a&&f?this.toMonthIndex(c,s,!0):this.toMonthIndex(c,s,!1);h!==u&&l.month(h)}return l}});var s=/^\\s*(-?\\d\\d\\d\\d|\\d\\d)[-/](\\d?\\d)([iI]?)[-/](\\d?\\d)/m,l=/^\\d?\\d[iI]?/m,c=/^\\u95f0?\\u5341?[\\u4e00\\u4e8c\\u4e09\\u56db\\u4e94\\u516d\\u4e03\\u516b\\u4e5d]?\\u6708/m,u=/^\\u95f0?\\u5341?[\\u4e00\\u4e8c\\u4e09\\u56db\\u4e94\\u516d\\u4e03\\u516b\\u4e5d]?/m;n.calendars.chinese=o;var f=[1887,5780,5802,19157,2742,50359,1198,2646,46378,7466,3412,30122,5482,67949,2396,5294,43597,6732,6954,36181,2772,4954,18781,2396,54427,5274,6730,47781,5800,6868,21210,4790,59703,2350,5270,46667,3402,3496,38325,1388,4782,18735,2350,52374,6804,7498,44457,2906,1388,29294,4700,63789,6442,6804,56138,5802,2772,38235,1210,4698,22827,5418,63125,3476,5802,43701,2484,5302,27223,2646,70954,7466,3412,54698,5482,2412,38062,5294,2636,32038,6954,60245,2772,4826,43357,2394,5274,39501,6730,72357,5800,5844,53978,4790,2358,38039,5270,87627,3402,3496,54708,5484,4782,43311,2350,3222,27978,7498,68965,2904,5484,45677,4700,6444,39573,6804,6986,19285,2772,62811,1210,4698,47403,5418,5780,38570,5546,76469,2420,5302,51799,2646,5414,36501,3412,5546,18869,2412,54446,5276,6732,48422,6822,2900,28010,4826,92509,2394,5274,55883,6730,6820,47956,5812,2778,18779,2358,62615,5270,5450,46757,3492,5556,27318,4718,67887,2350,3222,52554,7498,3428,38252,5468,4700,31022,6444,64149,6804,6986,43861,2772,5338,35421,2650,70955,5418,5780,54954,5546,2740,38074,5302,2646,29991,3366,61011,3412,5546,43445,2412,5294,35406,6732,72998,6820,6996,52586,2778,2396,38045,5274,6698,23333,6820,64338,5812,2746,43355,2358,5270,39499,5450,79525,3492,5548],h=[1887,966732,967231,967733,968265,968766,969297,969798,970298,970829,971330,971830,972362,972863,973395,973896,974397,974928,975428,975929,976461,976962,977462,977994,978494,979026,979526,980026,980558,981059,981559,982091,982593,983124,983624,984124,984656,985157,985656,986189,986690,987191,987722,988222,988753,989254,989754,990286,990788,991288,991819,992319,992851,993352,993851,994383,994885,995385,995917,996418,996918,997450,997949,998481,998982,999483,1000014,1000515,1001016,1001548,1002047,1002578,1003080,1003580,1004111,1004613,1005113,1005645,1006146,1006645,1007177,1007678,1008209,1008710,1009211,1009743,1010243,1010743,1011275,1011775,1012306,1012807,1013308,1013840,1014341,1014841,1015373,1015874,1016404,1016905,1017405,1017937,1018438,1018939,1019471,1019972,1020471,1021002,1021503,1022035,1022535,1023036,1023568,1024069,1024568,1025100,1025601,1026102,1026633,1027133,1027666,1028167,1028666,1029198,1029699,1030199,1030730,1031231,1031763,1032264,1032764,1033296,1033797,1034297,1034828,1035329,1035830,1036362,1036861,1037393,1037894,1038394,1038925,1039427,1039927,1040459,1040959,1041491,1041992,1042492,1043023,1043524,1044024,1044556,1045057,1045558,1046090,1046590,1047121,1047622,1048122,1048654,1049154,1049655,1050187,1050689,1051219,1051720,1052220,1052751,1053252,1053752,1054284,1054786,1055285,1055817,1056317,1056849,1057349,1057850,1058382,1058883,1059383,1059915,1060415,1060947,1061447,1061947,1062479,1062981,1063480,1064012,1064514,1065014,1065545,1066045,1066577,1067078,1067578,1068110,1068611,1069112,1069642,1070142,1070674,1071175,1071675,1072207,1072709,1073209,1073740,1074241,1074741,1075273,1075773,1076305,1076807,1077308,1077839,1078340,1078840,1079372,1079871,1080403,1080904]},{\"../main\":621,\"object-assign\":499}],608:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\");function a(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}a.prototype=new n.baseCalendar,i(a.prototype,{name:\"Coptic\",jdEpoch:1825029.5,daysPerMonth:[30,30,30,30,30,30,30,30,30,30,30,30,5],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Coptic\",epochs:[\"BAM\",\"AM\"],monthNames:[\"Thout\",\"Paopi\",\"Hathor\",\"Koiak\",\"Tobi\",\"Meshir\",\"Paremhat\",\"Paremoude\",\"Pashons\",\"Paoni\",\"Epip\",\"Mesori\",\"Pi Kogi Enavot\"],monthNamesShort:[\"Tho\",\"Pao\",\"Hath\",\"Koi\",\"Tob\",\"Mesh\",\"Pat\",\"Pad\",\"Pash\",\"Pao\",\"Epi\",\"Meso\",\"PiK\"],dayNames:[\"Tkyriaka\",\"Pesnau\",\"Pshoment\",\"Peftoou\",\"Ptiou\",\"Psoou\",\"Psabbaton\"],dayNamesShort:[\"Tky\",\"Pes\",\"Psh\",\"Pef\",\"Pti\",\"Pso\",\"Psa\"],dayNamesMin:[\"Tk\",\"Pes\",\"Psh\",\"Pef\",\"Pt\",\"Pso\",\"Psa\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return(t=e.year()+(e.year()<0?1:0))%4==3||t%4==-1},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear||n.regionalOptions[\"\"].invalidYear),13},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(13===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return(t=i.year())<0&&t++,i.day()+30*(i.month()-1)+365*(t-1)+Math.floor(t/4)+this.jdEpoch-1},fromJD:function(t){var e=Math.floor(t)+.5-this.jdEpoch,r=Math.floor((e-Math.floor((e+366)/1461))/365)+1;r<=0&&r--,e=Math.floor(t)+.5-this.newDate(r,1,1).toJD();var n=Math.floor(e/30)+1,i=e-30*(n-1)+1;return this.newDate(r,n,i)}}),n.calendars.coptic=a},{\"../main\":621,\"object-assign\":499}],609:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\");function a(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}a.prototype=new n.baseCalendar,i(a.prototype,{name:\"Discworld\",jdEpoch:1721425.5,daysPerMonth:[16,32,32,32,32,32,32,32,32,32,32,32,32],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Discworld\",epochs:[\"BUC\",\"UC\"],monthNames:[\"Ick\",\"Offle\",\"February\",\"March\",\"April\",\"May\",\"June\",\"Grune\",\"August\",\"Spune\",\"Sektober\",\"Ember\",\"December\"],monthNamesShort:[\"Ick\",\"Off\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Gru\",\"Aug\",\"Spu\",\"Sek\",\"Emb\",\"Dec\"],dayNames:[\"Sunday\",\"Octeday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Oct\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Oc\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:2,isRTL:!1}},leapYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),!1},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),13},daysInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),400},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/8)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]},daysInWeek:function(){return 8},dayOfWeek:function(t,e,r){return(this._validate(t,e,r,n.local.invalidDate).day()+1)%8},weekDay:function(t,e,r){var n=this.dayOfWeek(t,e,r);return n>=2&&n<=6},extraInfo:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return{century:o[Math.floor((i.year()-1)/100)+1]||\"\"}},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return t=i.year()+(i.year()<0?1:0),e=i.month(),(r=i.day())+(e>1?16:0)+(e>2?32*(e-2):0)+400*(t-1)+this.jdEpoch-1},fromJD:function(t){t=Math.floor(t+.5)-Math.floor(this.jdEpoch)-1;var e=Math.floor(t/400)+1;t-=400*(e-1),t+=t>15?16:0;var r=Math.floor(t/32)+1,n=t-32*(r-1)+1;return this.newDate(e<=0?e-1:e,r,n)}});var o={20:\"Fruitbat\",21:\"Anchovy\"};n.calendars.discworld=a},{\"../main\":621,\"object-assign\":499}],610:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\");function a(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}a.prototype=new n.baseCalendar,i(a.prototype,{name:\"Ethiopian\",jdEpoch:1724220.5,daysPerMonth:[30,30,30,30,30,30,30,30,30,30,30,30,5],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Ethiopian\",epochs:[\"BEE\",\"EE\"],monthNames:[\"Meskerem\",\"Tikemet\",\"Hidar\",\"Tahesas\",\"Tir\",\"Yekatit\",\"Megabit\",\"Miazia\",\"Genbot\",\"Sene\",\"Hamle\",\"Nehase\",\"Pagume\"],monthNamesShort:[\"Mes\",\"Tik\",\"Hid\",\"Tah\",\"Tir\",\"Yek\",\"Meg\",\"Mia\",\"Gen\",\"Sen\",\"Ham\",\"Neh\",\"Pag\"],dayNames:[\"Ehud\",\"Segno\",\"Maksegno\",\"Irob\",\"Hamus\",\"Arb\",\"Kidame\"],dayNamesShort:[\"Ehu\",\"Seg\",\"Mak\",\"Iro\",\"Ham\",\"Arb\",\"Kid\"],dayNamesMin:[\"Eh\",\"Se\",\"Ma\",\"Ir\",\"Ha\",\"Ar\",\"Ki\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return(t=e.year()+(e.year()<0?1:0))%4==3||t%4==-1},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear||n.regionalOptions[\"\"].invalidYear),13},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(13===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return(t=i.year())<0&&t++,i.day()+30*(i.month()-1)+365*(t-1)+Math.floor(t/4)+this.jdEpoch-1},fromJD:function(t){var e=Math.floor(t)+.5-this.jdEpoch,r=Math.floor((e-Math.floor((e+366)/1461))/365)+1;r<=0&&r--,e=Math.floor(t)+.5-this.newDate(r,1,1).toJD();var n=Math.floor(e/30)+1,i=e-30*(n-1)+1;return this.newDate(r,n,i)}}),n.calendars.ethiopian=a},{\"../main\":621,\"object-assign\":499}],611:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\");function a(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}function o(t,e){return t-e*Math.floor(t/e)}a.prototype=new n.baseCalendar,i(a.prototype,{name:\"Hebrew\",jdEpoch:347995.5,daysPerMonth:[30,29,30,29,30,29,30,29,30,29,30,29,29],hasYearZero:!1,minMonth:1,firstMonth:7,minDay:1,regionalOptions:{\"\":{name:\"Hebrew\",epochs:[\"BAM\",\"AM\"],monthNames:[\"Nisan\",\"Iyar\",\"Sivan\",\"Tammuz\",\"Av\",\"Elul\",\"Tishrei\",\"Cheshvan\",\"Kislev\",\"Tevet\",\"Shevat\",\"Adar\",\"Adar II\"],monthNamesShort:[\"Nis\",\"Iya\",\"Siv\",\"Tam\",\"Av\",\"Elu\",\"Tis\",\"Che\",\"Kis\",\"Tev\",\"She\",\"Ada\",\"Ad2\"],dayNames:[\"Yom Rishon\",\"Yom Sheni\",\"Yom Shlishi\",\"Yom Revi'i\",\"Yom Chamishi\",\"Yom Shishi\",\"Yom Shabbat\"],dayNamesShort:[\"Ris\",\"She\",\"Shl\",\"Rev\",\"Cha\",\"Shi\",\"Sha\"],dayNamesMin:[\"Ri\",\"She\",\"Shl\",\"Re\",\"Ch\",\"Shi\",\"Sha\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return this._leapYear(e.year())},_leapYear:function(t){return o(7*(t=t<0?t+1:t)+1,19)<7},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),this._leapYear(t.year?t.year():t)?13:12},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){return t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year(),this.toJD(-1===t?1:t+1,7,1)-this.toJD(t,7,1)},daysInMonth:function(t,e){return t.year&&(e=t.month(),t=t.year()),this._validate(t,e,this.minDay,n.local.invalidMonth),12===e&&this.leapYear(t)||8===e&&5===o(this.daysInYear(t),10)?30:9===e&&3===o(this.daysInYear(t),10)?29:this.daysPerMonth[e-1]},weekDay:function(t,e,r){return 6!==this.dayOfWeek(t,e,r)},extraInfo:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return{yearType:(this.leapYear(i)?\"embolismic\":\"common\")+\" \"+[\"deficient\",\"regular\",\"complete\"][this.daysInYear(i)%10-3]}},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);t=i.year(),e=i.month(),r=i.day();var a=t<=0?t+1:t,o=this.jdEpoch+this._delay1(a)+this._delay2(a)+r+1;if(e<7){for(var s=7;s<=this.monthsInYear(t);s++)o+=this.daysInMonth(t,s);for(s=1;s<e;s++)o+=this.daysInMonth(t,s)}else for(s=7;s<e;s++)o+=this.daysInMonth(t,s);return o},_delay1:function(t){var e=Math.floor((235*t-234)/19),r=12084+13753*e,n=29*e+Math.floor(r/25920);return o(3*(n+1),7)<3&&n++,n},_delay2:function(t){var e=this._delay1(t-1),r=this._delay1(t);return this._delay1(t+1)-r==356?2:r-e==382?1:0},fromJD:function(t){t=Math.floor(t)+.5;for(var e=Math.floor(98496*(t-this.jdEpoch)/35975351)-1;t>=this.toJD(-1===e?1:e+1,7,1);)e++;for(var r=t<this.toJD(e,1,1)?7:1;t>this.toJD(e,r,this.daysInMonth(e,r));)r++;var n=t-this.toJD(e,r,1)+1;return this.newDate(e,r,n)}}),n.calendars.hebrew=a},{\"../main\":621,\"object-assign\":499}],612:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\");function a(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}a.prototype=new n.baseCalendar,i(a.prototype,{name:\"Islamic\",jdEpoch:1948439.5,daysPerMonth:[30,29,30,29,30,29,30,29,30,29,30,29],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Islamic\",epochs:[\"BH\",\"AH\"],monthNames:[\"Muharram\",\"Safar\",\"Rabi' al-awwal\",\"Rabi' al-thani\",\"Jumada al-awwal\",\"Jumada al-thani\",\"Rajab\",\"Sha'aban\",\"Ramadan\",\"Shawwal\",\"Dhu al-Qi'dah\",\"Dhu al-Hijjah\"],monthNamesShort:[\"Muh\",\"Saf\",\"Rab1\",\"Rab2\",\"Jum1\",\"Jum2\",\"Raj\",\"Sha'\",\"Ram\",\"Shaw\",\"DhuQ\",\"DhuH\"],dayNames:[\"Yawm al-ahad\",\"Yawm al-ithnayn\",\"Yawm ath-thulaathaa'\",\"Yawm al-arbi'aa'\",\"Yawm al-kham\\u012bs\",\"Yawm al-jum'a\",\"Yawm as-sabt\"],dayNamesShort:[\"Aha\",\"Ith\",\"Thu\",\"Arb\",\"Kha\",\"Jum\",\"Sab\"],dayNamesMin:[\"Ah\",\"It\",\"Th\",\"Ar\",\"Kh\",\"Ju\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:6,isRTL:!1}},leapYear:function(t){return(11*this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year()+14)%30<11},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){return this.leapYear(t)?355:354},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return t=i.year(),e=i.month(),t=t<=0?t+1:t,(r=i.day())+Math.ceil(29.5*(e-1))+354*(t-1)+Math.floor((3+11*t)/30)+this.jdEpoch-1},fromJD:function(t){t=Math.floor(t)+.5;var e=Math.floor((30*(t-this.jdEpoch)+10646)/10631);e=e<=0?e-1:e;var r=Math.min(12,Math.ceil((t-29-this.toJD(e,1,1))/29.5)+1),n=t-this.toJD(e,r,1)+1;return this.newDate(e,r,n)}}),n.calendars.islamic=a},{\"../main\":621,\"object-assign\":499}],613:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\");function a(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}a.prototype=new n.baseCalendar,i(a.prototype,{name:\"Julian\",jdEpoch:1721423.5,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Julian\",epochs:[\"BC\",\"AD\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"mm/dd/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return(t=e.year()<0?e.year()+1:e.year())%4==0},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(4-(n.dayOfWeek()||7),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return t=i.year(),e=i.month(),r=i.day(),t<0&&t++,e<=2&&(t--,e+=12),Math.floor(365.25*(t+4716))+Math.floor(30.6001*(e+1))+r-1524.5},fromJD:function(t){var e=Math.floor(t+.5)+1524,r=Math.floor((e-122.1)/365.25),n=Math.floor(365.25*r),i=Math.floor((e-n)/30.6001),a=i-Math.floor(i<14?1:13),o=r-Math.floor(a>2?4716:4715),s=e-n-Math.floor(30.6001*i);return o<=0&&o--,this.newDate(o,a,s)}}),n.calendars.julian=a},{\"../main\":621,\"object-assign\":499}],614:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\");function a(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}function o(t,e){return t-e*Math.floor(t/e)}function s(t,e){return o(t-1,e)+1}a.prototype=new n.baseCalendar,i(a.prototype,{name:\"Mayan\",jdEpoch:584282.5,hasYearZero:!0,minMonth:0,firstMonth:0,minDay:0,regionalOptions:{\"\":{name:\"Mayan\",epochs:[\"\",\"\"],monthNames:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\"],monthNamesShort:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\"],dayNames:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\"],dayNamesShort:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\"],dayNamesMin:[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\",\"7\",\"8\",\"9\",\"10\",\"11\",\"12\",\"13\",\"14\",\"15\",\"16\",\"17\",\"18\",\"19\"],digits:null,dateFormat:\"YYYY.m.d\",firstDay:0,isRTL:!1,haabMonths:[\"Pop\",\"Uo\",\"Zip\",\"Zotz\",\"Tzec\",\"Xul\",\"Yaxkin\",\"Mol\",\"Chen\",\"Yax\",\"Zac\",\"Ceh\",\"Mac\",\"Kankin\",\"Muan\",\"Pax\",\"Kayab\",\"Cumku\",\"Uayeb\"],tzolkinMonths:[\"Imix\",\"Ik\",\"Akbal\",\"Kan\",\"Chicchan\",\"Cimi\",\"Manik\",\"Lamat\",\"Muluc\",\"Oc\",\"Chuen\",\"Eb\",\"Ben\",\"Ix\",\"Men\",\"Cib\",\"Caban\",\"Etznab\",\"Cauac\",\"Ahau\"]}},leapYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),!1},formatYear:function(t){t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year();var e=Math.floor(t/400);return t%=400,t+=t<0?400:0,e+\".\"+Math.floor(t/20)+\".\"+t%20},forYear:function(t){if((t=t.split(\".\")).length<3)throw\"Invalid Mayan year\";for(var e=0,r=0;r<t.length;r++){var n=parseInt(t[r],10);if(Math.abs(n)>19||r>0&&n<0)throw\"Invalid Mayan year\";e=20*e+n}return e},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),18},weekOfYear:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate),0},daysInYear:function(t){return this._validate(t,this.minMonth,this.minDay,n.local.invalidYear),360},daysInMonth:function(t,e){return this._validate(t,e,this.minDay,n.local.invalidMonth),20},daysInWeek:function(){return 5},dayOfWeek:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate).day()},weekDay:function(t,e,r){return this._validate(t,e,r,n.local.invalidDate),!0},extraInfo:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate).toJD(),a=this._toHaab(i),o=this._toTzolkin(i);return{haabMonthName:this.local.haabMonths[a[0]-1],haabMonth:a[0],haabDay:a[1],tzolkinDayName:this.local.tzolkinMonths[o[0]-1],tzolkinDay:o[0],tzolkinTrecena:o[1]}},_toHaab:function(t){var e=o((t-=this.jdEpoch)+8+340,365);return[Math.floor(e/20)+1,o(e,20)]},_toTzolkin:function(t){return[s((t-=this.jdEpoch)+20,20),s(t+4,13)]},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);return i.day()+20*i.month()+360*i.year()+this.jdEpoch},fromJD:function(t){t=Math.floor(t)+.5-this.jdEpoch;var e=Math.floor(t/360);t%=360,t+=t<0?360:0;var r=Math.floor(t/20),n=t%20;return this.newDate(e,r,n)}}),n.calendars.mayan=a},{\"../main\":621,\"object-assign\":499}],615:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\");function a(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}a.prototype=new n.baseCalendar;var o=n.instance(\"gregorian\");i(a.prototype,{name:\"Nanakshahi\",jdEpoch:2257673.5,daysPerMonth:[31,31,31,31,31,30,30,30,30,30,30,30],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Nanakshahi\",epochs:[\"BN\",\"AN\"],monthNames:[\"Chet\",\"Vaisakh\",\"Jeth\",\"Harh\",\"Sawan\",\"Bhadon\",\"Assu\",\"Katak\",\"Maghar\",\"Poh\",\"Magh\",\"Phagun\"],monthNamesShort:[\"Che\",\"Vai\",\"Jet\",\"Har\",\"Saw\",\"Bha\",\"Ass\",\"Kat\",\"Mgr\",\"Poh\",\"Mgh\",\"Pha\"],dayNames:[\"Somvaar\",\"Mangalvar\",\"Budhvaar\",\"Veervaar\",\"Shukarvaar\",\"Sanicharvaar\",\"Etvaar\"],dayNamesShort:[\"Som\",\"Mangal\",\"Budh\",\"Veer\",\"Shukar\",\"Sanichar\",\"Et\"],dayNamesMin:[\"So\",\"Ma\",\"Bu\",\"Ve\",\"Sh\",\"Sa\",\"Et\"],digits:null,dateFormat:\"dd-mm-yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear||n.regionalOptions[\"\"].invalidYear);return o.leapYear(e.year()+(e.year()<1?1:0)+1469)},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(1-(n.dayOfWeek()||7),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidMonth);(t=i.year())<0&&t++;for(var a=i.day(),s=1;s<i.month();s++)a+=this.daysPerMonth[s-1];return a+o.toJD(t+1468,3,13)},fromJD:function(t){t=Math.floor(t+.5);for(var e=Math.floor((t-(this.jdEpoch-1))/366);t>=this.toJD(e+1,1,1);)e++;for(var r=t-Math.floor(this.toJD(e,1,1)+.5)+1,n=1;r>this.daysInMonth(e,n);)r-=this.daysInMonth(e,n),n++;return this.newDate(e,n,r)}}),n.calendars.nanakshahi=a},{\"../main\":621,\"object-assign\":499}],616:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\");function a(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}a.prototype=new n.baseCalendar,i(a.prototype,{name:\"Nepali\",jdEpoch:1700709.5,daysPerMonth:[31,31,32,32,31,30,30,29,30,29,30,30],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,daysPerYear:365,regionalOptions:{\"\":{name:\"Nepali\",epochs:[\"BBS\",\"ABS\"],monthNames:[\"Baisakh\",\"Jestha\",\"Ashadh\",\"Shrawan\",\"Bhadra\",\"Ashwin\",\"Kartik\",\"Mangsir\",\"Paush\",\"Mangh\",\"Falgun\",\"Chaitra\"],monthNamesShort:[\"Bai\",\"Je\",\"As\",\"Shra\",\"Bha\",\"Ash\",\"Kar\",\"Mang\",\"Pau\",\"Ma\",\"Fal\",\"Chai\"],dayNames:[\"Aaitabaar\",\"Sombaar\",\"Manglbaar\",\"Budhabaar\",\"Bihibaar\",\"Shukrabaar\",\"Shanibaar\"],dayNamesShort:[\"Aaita\",\"Som\",\"Mangl\",\"Budha\",\"Bihi\",\"Shukra\",\"Shani\"],dayNamesMin:[\"Aai\",\"So\",\"Man\",\"Bu\",\"Bi\",\"Shu\",\"Sha\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:1,isRTL:!1}},leapYear:function(t){return this.daysInYear(t)!==this.daysPerYear},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){if(t=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear).year(),\"undefined\"==typeof this.NEPALI_CALENDAR_DATA[t])return this.daysPerYear;for(var e=0,r=this.minMonth;r<=12;r++)e+=this.NEPALI_CALENDAR_DATA[t][r];return e},daysInMonth:function(t,e){return t.year&&(e=t.month(),t=t.year()),this._validate(t,e,this.minDay,n.local.invalidMonth),\"undefined\"==typeof this.NEPALI_CALENDAR_DATA[t]?this.daysPerMonth[e-1]:this.NEPALI_CALENDAR_DATA[t][e]},weekDay:function(t,e,r){return 6!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);t=i.year(),e=i.month(),r=i.day();var a=n.instance(),o=0,s=e,l=t;this._createMissingCalendarData(t);var c=t-(s>9||9===s&&r>=this.NEPALI_CALENDAR_DATA[l][0]?56:57);for(9!==e&&(o=r,s--);9!==s;)s<=0&&(s=12,l--),o+=this.NEPALI_CALENDAR_DATA[l][s],s--;return 9===e?(o+=r-this.NEPALI_CALENDAR_DATA[l][0])<0&&(o+=a.daysInYear(c)):o+=this.NEPALI_CALENDAR_DATA[l][9]-this.NEPALI_CALENDAR_DATA[l][0],a.newDate(c,1,1).add(o,\"d\").toJD()},fromJD:function(t){var e=n.instance().fromJD(t),r=e.year(),i=e.dayOfYear(),a=r+56;this._createMissingCalendarData(a);for(var o=9,s=this.NEPALI_CALENDAR_DATA[a][0],l=this.NEPALI_CALENDAR_DATA[a][o]-s+1;i>l;)++o>12&&(o=1,a++),l+=this.NEPALI_CALENDAR_DATA[a][o];var c=this.NEPALI_CALENDAR_DATA[a][o]-(l-i);return this.newDate(a,o,c)},_createMissingCalendarData:function(t){var e=this.daysPerMonth.slice(0);e.unshift(17);for(var r=t-1;r<t+2;r++)\"undefined\"==typeof this.NEPALI_CALENDAR_DATA[r]&&(this.NEPALI_CALENDAR_DATA[r]=e)},NEPALI_CALENDAR_DATA:{1970:[18,31,31,32,31,31,31,30,29,30,29,30,30],1971:[18,31,31,32,31,32,30,30,29,30,29,30,30],1972:[17,31,32,31,32,31,30,30,30,29,29,30,30],1973:[19,30,32,31,32,31,30,30,30,29,30,29,31],1974:[19,31,31,32,30,31,31,30,29,30,29,30,30],1975:[18,31,31,32,32,30,31,30,29,30,29,30,30],1976:[17,31,32,31,32,31,30,30,30,29,29,30,31],1977:[18,31,32,31,32,31,31,29,30,29,30,29,31],1978:[18,31,31,32,31,31,31,30,29,30,29,30,30],1979:[18,31,31,32,32,31,30,30,29,30,29,30,30],1980:[17,31,32,31,32,31,30,30,30,29,29,30,31],1981:[18,31,31,31,32,31,31,29,30,30,29,30,30],1982:[18,31,31,32,31,31,31,30,29,30,29,30,30],1983:[18,31,31,32,32,31,30,30,29,30,29,30,30],1984:[17,31,32,31,32,31,30,30,30,29,29,30,31],1985:[18,31,31,31,32,31,31,29,30,30,29,30,30],1986:[18,31,31,32,31,31,31,30,29,30,29,30,30],1987:[18,31,32,31,32,31,30,30,29,30,29,30,30],1988:[17,31,32,31,32,31,30,30,30,29,29,30,31],1989:[18,31,31,31,32,31,31,30,29,30,29,30,30],1990:[18,31,31,32,31,31,31,30,29,30,29,30,30],1991:[18,31,32,31,32,31,30,30,29,30,29,30,30],1992:[17,31,32,31,32,31,30,30,30,29,30,29,31],1993:[18,31,31,31,32,31,31,30,29,30,29,30,30],1994:[18,31,31,32,31,31,31,30,29,30,29,30,30],1995:[17,31,32,31,32,31,30,30,30,29,29,30,30],1996:[17,31,32,31,32,31,30,30,30,29,30,29,31],1997:[18,31,31,32,31,31,31,30,29,30,29,30,30],1998:[18,31,31,32,31,31,31,30,29,30,29,30,30],1999:[17,31,32,31,32,31,30,30,30,29,29,30,31],2e3:[17,30,32,31,32,31,30,30,30,29,30,29,31],2001:[18,31,31,32,31,31,31,30,29,30,29,30,30],2002:[18,31,31,32,32,31,30,30,29,30,29,30,30],2003:[17,31,32,31,32,31,30,30,30,29,29,30,31],2004:[17,30,32,31,32,31,30,30,30,29,30,29,31],2005:[18,31,31,32,31,31,31,30,29,30,29,30,30],2006:[18,31,31,32,32,31,30,30,29,30,29,30,30],2007:[17,31,32,31,32,31,30,30,30,29,29,30,31],2008:[17,31,31,31,32,31,31,29,30,30,29,29,31],2009:[18,31,31,32,31,31,31,30,29,30,29,30,30],2010:[18,31,31,32,32,31,30,30,29,30,29,30,30],2011:[17,31,32,31,32,31,30,30,30,29,29,30,31],2012:[17,31,31,31,32,31,31,29,30,30,29,30,30],2013:[18,31,31,32,31,31,31,30,29,30,29,30,30],2014:[18,31,31,32,32,31,30,30,29,30,29,30,30],2015:[17,31,32,31,32,31,30,30,30,29,29,30,31],2016:[17,31,31,31,32,31,31,29,30,30,29,30,30],2017:[18,31,31,32,31,31,31,30,29,30,29,30,30],2018:[18,31,32,31,32,31,30,30,29,30,29,30,30],2019:[17,31,32,31,32,31,30,30,30,29,30,29,31],2020:[17,31,31,31,32,31,31,30,29,30,29,30,30],2021:[18,31,31,32,31,31,31,30,29,30,29,30,30],2022:[17,31,32,31,32,31,30,30,30,29,29,30,30],2023:[17,31,32,31,32,31,30,30,30,29,30,29,31],2024:[17,31,31,31,32,31,31,30,29,30,29,30,30],2025:[18,31,31,32,31,31,31,30,29,30,29,30,30],2026:[17,31,32,31,32,31,30,30,30,29,29,30,31],2027:[17,30,32,31,32,31,30,30,30,29,30,29,31],2028:[17,31,31,32,31,31,31,30,29,30,29,30,30],2029:[18,31,31,32,31,32,30,30,29,30,29,30,30],2030:[17,31,32,31,32,31,30,30,30,30,30,30,31],2031:[17,31,32,31,32,31,31,31,31,31,31,31,31],2032:[17,32,32,32,32,32,32,32,32,32,32,32,32],2033:[18,31,31,32,32,31,30,30,29,30,29,30,30],2034:[17,31,32,31,32,31,30,30,30,29,29,30,31],2035:[17,30,32,31,32,31,31,29,30,30,29,29,31],2036:[17,31,31,32,31,31,31,30,29,30,29,30,30],2037:[18,31,31,32,32,31,30,30,29,30,29,30,30],2038:[17,31,32,31,32,31,30,30,30,29,29,30,31],2039:[17,31,31,31,32,31,31,29,30,30,29,30,30],2040:[17,31,31,32,31,31,31,30,29,30,29,30,30],2041:[18,31,31,32,32,31,30,30,29,30,29,30,30],2042:[17,31,32,31,32,31,30,30,30,29,29,30,31],2043:[17,31,31,31,32,31,31,29,30,30,29,30,30],2044:[17,31,31,32,31,31,31,30,29,30,29,30,30],2045:[18,31,32,31,32,31,30,30,29,30,29,30,30],2046:[17,31,32,31,32,31,30,30,30,29,29,30,31],2047:[17,31,31,31,32,31,31,30,29,30,29,30,30],2048:[17,31,31,32,31,31,31,30,29,30,29,30,30],2049:[17,31,32,31,32,31,30,30,30,29,29,30,30],2050:[17,31,32,31,32,31,30,30,30,29,30,29,31],2051:[17,31,31,31,32,31,31,30,29,30,29,30,30],2052:[17,31,31,32,31,31,31,30,29,30,29,30,30],2053:[17,31,32,31,32,31,30,30,30,29,29,30,30],2054:[17,31,32,31,32,31,30,30,30,29,30,29,31],2055:[17,31,31,32,31,31,31,30,29,30,30,29,30],2056:[17,31,31,32,31,32,30,30,29,30,29,30,30],2057:[17,31,32,31,32,31,30,30,30,29,29,30,31],2058:[17,30,32,31,32,31,30,30,30,29,30,29,31],2059:[17,31,31,32,31,31,31,30,29,30,29,30,30],2060:[17,31,31,32,32,31,30,30,29,30,29,30,30],2061:[17,31,32,31,32,31,30,30,30,29,29,30,31],2062:[17,30,32,31,32,31,31,29,30,29,30,29,31],2063:[17,31,31,32,31,31,31,30,29,30,29,30,30],2064:[17,31,31,32,32,31,30,30,29,30,29,30,30],2065:[17,31,32,31,32,31,30,30,30,29,29,30,31],2066:[17,31,31,31,32,31,31,29,30,30,29,29,31],2067:[17,31,31,32,31,31,31,30,29,30,29,30,30],2068:[17,31,31,32,32,31,30,30,29,30,29,30,30],2069:[17,31,32,31,32,31,30,30,30,29,29,30,31],2070:[17,31,31,31,32,31,31,29,30,30,29,30,30],2071:[17,31,31,32,31,31,31,30,29,30,29,30,30],2072:[17,31,32,31,32,31,30,30,29,30,29,30,30],2073:[17,31,32,31,32,31,30,30,30,29,29,30,31],2074:[17,31,31,31,32,31,31,30,29,30,29,30,30],2075:[17,31,31,32,31,31,31,30,29,30,29,30,30],2076:[16,31,32,31,32,31,30,30,30,29,29,30,30],2077:[17,31,32,31,32,31,30,30,30,29,30,29,31],2078:[17,31,31,31,32,31,31,30,29,30,29,30,30],2079:[17,31,31,32,31,31,31,30,29,30,29,30,30],2080:[16,31,32,31,32,31,30,30,30,29,29,30,30],2081:[17,31,31,32,32,31,30,30,30,29,30,30,30],2082:[17,31,32,31,32,31,30,30,30,29,30,30,30],2083:[17,31,31,32,31,31,30,30,30,29,30,30,30],2084:[17,31,31,32,31,31,30,30,30,29,30,30,30],2085:[17,31,32,31,32,31,31,30,30,29,30,30,30],2086:[17,31,32,31,32,31,30,30,30,29,30,30,30],2087:[16,31,31,32,31,31,31,30,30,29,30,30,30],2088:[16,30,31,32,32,30,31,30,30,29,30,30,30],2089:[17,31,32,31,32,31,30,30,30,29,30,30,30],2090:[17,31,32,31,32,31,30,30,30,29,30,30,30],2091:[16,31,31,32,31,31,31,30,30,29,30,30,30],2092:[16,31,31,32,32,31,30,30,30,29,30,30,30],2093:[17,31,32,31,32,31,30,30,30,29,30,30,30],2094:[17,31,31,32,31,31,30,30,30,29,30,30,30],2095:[17,31,31,32,31,31,31,30,29,30,30,30,30],2096:[17,30,31,32,32,31,30,30,29,30,29,30,30],2097:[17,31,32,31,32,31,30,30,30,29,30,30,30],2098:[17,31,31,32,31,31,31,29,30,29,30,30,31],2099:[17,31,31,32,31,31,31,30,29,29,30,30,30],2100:[17,31,32,31,32,30,31,30,29,30,29,30,30]}}),n.calendars.nepali=a},{\"../main\":621,\"object-assign\":499}],617:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\");function a(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}function o(t,e){return t-e*Math.floor(t/e)}a.prototype=new n.baseCalendar,i(a.prototype,{name:\"Persian\",jdEpoch:1948320.5,daysPerMonth:[31,31,31,31,31,31,30,30,30,30,30,29],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Persian\",epochs:[\"BP\",\"AP\"],monthNames:[\"Farvardin\",\"Ordibehesht\",\"Khordad\",\"Tir\",\"Mordad\",\"Shahrivar\",\"Mehr\",\"Aban\",\"Azar\",\"Day\",\"Bahman\",\"Esfand\"],monthNamesShort:[\"Far\",\"Ord\",\"Kho\",\"Tir\",\"Mor\",\"Sha\",\"Meh\",\"Aba\",\"Aza\",\"Day\",\"Bah\",\"Esf\"],dayNames:[\"Yekshambe\",\"Doshambe\",\"Seshambe\",\"Ch\\xe6harshambe\",\"Panjshambe\",\"Jom'e\",\"Shambe\"],dayNamesShort:[\"Yek\",\"Do\",\"Se\",\"Ch\\xe6\",\"Panj\",\"Jom\",\"Sha\"],dayNamesMin:[\"Ye\",\"Do\",\"Se\",\"Ch\",\"Pa\",\"Jo\",\"Sh\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:6,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return 682*((e.year()-(e.year()>0?474:473))%2820+474+38)%2816<682},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-(n.dayOfWeek()+1)%7,\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(12===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);t=i.year(),e=i.month(),r=i.day();var a=t-(t>=0?474:473),s=474+o(a,2820);return r+(e<=7?31*(e-1):30*(e-1)+6)+Math.floor((682*s-110)/2816)+365*(s-1)+1029983*Math.floor(a/2820)+this.jdEpoch-1},fromJD:function(t){var e=(t=Math.floor(t)+.5)-this.toJD(475,1,1),r=Math.floor(e/1029983),n=o(e,1029983),i=2820;if(1029982!==n){var a=Math.floor(n/366),s=o(n,366);i=Math.floor((2134*a+2816*s+2815)/1028522)+a+1}var l=i+2820*r+474;l=l<=0?l-1:l;var c=t-this.toJD(l,1,1)+1,u=c<=186?Math.ceil(c/31):Math.ceil((c-6)/30),f=t-this.toJD(l,u,1)+1;return this.newDate(l,u,f)}}),n.calendars.persian=a,n.calendars.jalali=a},{\"../main\":621,\"object-assign\":499}],618:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\"),a=n.instance();function o(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}o.prototype=new n.baseCalendar,i(o.prototype,{name:\"Taiwan\",jdEpoch:2419402.5,yearsOffset:1911,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Taiwan\",epochs:[\"BROC\",\"ROC\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:1,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(e.year());return a.leapYear(t)},weekOfYear:function(t,e,r){var i=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(i.year());return a.weekOfYear(t,i.month(),i.day())},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);t=this._t2gYear(i.year());return a.toJD(t,i.month(),i.day())},fromJD:function(t){var e=a.fromJD(t),r=this._g2tYear(e.year());return this.newDate(r,e.month(),e.day())},_t2gYear:function(t){return t+this.yearsOffset+(t>=-this.yearsOffset&&t<=-1?1:0)},_g2tYear:function(t){return t-this.yearsOffset-(t>=1&&t<=this.yearsOffset?1:0)}}),n.calendars.taiwan=o},{\"../main\":621,\"object-assign\":499}],619:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\"),a=n.instance();function o(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}o.prototype=new n.baseCalendar,i(o.prototype,{name:\"Thai\",jdEpoch:1523098.5,yearsOffset:543,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Thai\",epochs:[\"BBE\",\"BE\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"dd/mm/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(e.year());return a.leapYear(t)},weekOfYear:function(t,e,r){var i=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);t=this._t2gYear(i.year());return a.weekOfYear(t,i.month(),i.day())},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,n.local.invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate);t=this._t2gYear(i.year());return a.toJD(t,i.month(),i.day())},fromJD:function(t){var e=a.fromJD(t),r=this._g2tYear(e.year());return this.newDate(r,e.month(),e.day())},_t2gYear:function(t){return t-this.yearsOffset-(t>=1&&t<=this.yearsOffset?1:0)},_g2tYear:function(t){return t+this.yearsOffset+(t>=-this.yearsOffset&&t<=-1?1:0)}}),n.calendars.thai=o},{\"../main\":621,\"object-assign\":499}],620:[function(t,e,r){var n=t(\"../main\"),i=t(\"object-assign\");function a(t){this.local=this.regionalOptions[t||\"\"]||this.regionalOptions[\"\"]}a.prototype=new n.baseCalendar,i(a.prototype,{name:\"UmmAlQura\",hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Umm al-Qura\",epochs:[\"BH\",\"AH\"],monthNames:[\"Al-Muharram\",\"Safar\",\"Rabi' al-awwal\",\"Rabi' Al-Thani\",\"Jumada Al-Awwal\",\"Jumada Al-Thani\",\"Rajab\",\"Sha'aban\",\"Ramadan\",\"Shawwal\",\"Dhu al-Qi'dah\",\"Dhu al-Hijjah\"],monthNamesShort:[\"Muh\",\"Saf\",\"Rab1\",\"Rab2\",\"Jum1\",\"Jum2\",\"Raj\",\"Sha'\",\"Ram\",\"Shaw\",\"DhuQ\",\"DhuH\"],dayNames:[\"Yawm al-Ahad\",\"Yawm al-Ithnain\",\"Yawm al-Thal\\u0101th\\u0101\\u2019\",\"Yawm al-Arba\\u2018\\u0101\\u2019\",\"Yawm al-Kham\\u012bs\",\"Yawm al-Jum\\u2018a\",\"Yawm al-Sabt\"],dayNamesMin:[\"Ah\",\"Ith\",\"Th\",\"Ar\",\"Kh\",\"Ju\",\"Sa\"],digits:null,dateFormat:\"yyyy/mm/dd\",firstDay:6,isRTL:!0}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,n.local.invalidYear);return 355===this.daysInYear(e.year())},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(-n.dayOfWeek(),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInYear:function(t){for(var e=0,r=1;r<=12;r++)e+=this.daysInMonth(t,r);return e},daysInMonth:function(t,e){for(var r=this._validate(t,e,this.minDay,n.local.invalidMonth).toJD()-24e5+.5,i=0,a=0;a<o.length;a++){if(o[a]>r)return o[i]-o[i-1];i++}return 30},weekDay:function(t,e,r){return 5!==this.dayOfWeek(t,e,r)},toJD:function(t,e,r){var i=this._validate(t,e,r,n.local.invalidDate),a=12*(i.year()-1)+i.month()-15292;return i.day()+o[a-1]-1+24e5-.5},fromJD:function(t){for(var e=t-24e5+.5,r=0,n=0;n<o.length&&!(o[n]>e);n++)r++;var i=r+15292,a=Math.floor((i-1)/12),s=a+1,l=i-12*a,c=e-o[r-1]+1;return this.newDate(s,l,c)},isValid:function(t,e,r){var i=n.baseCalendar.prototype.isValid.apply(this,arguments);return i&&(i=(t=null!=t.year?t.year:t)>=1276&&t<=1500),i},_validate:function(t,e,r,i){var a=n.baseCalendar.prototype._validate.apply(this,arguments);if(a.year<1276||a.year>1500)throw i.replace(/\\{0\\}/,this.local.name);return a}}),n.calendars.ummalqura=a;var o=[20,50,79,109,138,168,197,227,256,286,315,345,374,404,433,463,492,522,551,581,611,641,670,700,729,759,788,818,847,877,906,936,965,995,1024,1054,1083,1113,1142,1172,1201,1231,1260,1290,1320,1350,1379,1409,1438,1468,1497,1527,1556,1586,1615,1645,1674,1704,1733,1763,1792,1822,1851,1881,1910,1940,1969,1999,2028,2058,2087,2117,2146,2176,2205,2235,2264,2294,2323,2353,2383,2413,2442,2472,2501,2531,2560,2590,2619,2649,2678,2708,2737,2767,2796,2826,2855,2885,2914,2944,2973,3003,3032,3062,3091,3121,3150,3180,3209,3239,3268,3298,3327,3357,3386,3416,3446,3476,3505,3535,3564,3594,3623,3653,3682,3712,3741,3771,3800,3830,3859,3889,3918,3948,3977,4007,4036,4066,4095,4125,4155,4185,4214,4244,4273,4303,4332,4362,4391,4421,4450,4480,4509,4539,4568,4598,4627,4657,4686,4716,4745,4775,4804,4834,4863,4893,4922,4952,4981,5011,5040,5070,5099,5129,5158,5188,5218,5248,5277,5307,5336,5366,5395,5425,5454,5484,5513,5543,5572,5602,5631,5661,5690,5720,5749,5779,5808,5838,5867,5897,5926,5956,5985,6015,6044,6074,6103,6133,6162,6192,6221,6251,6281,6311,6340,6370,6399,6429,6458,6488,6517,6547,6576,6606,6635,6665,6694,6724,6753,6783,6812,6842,6871,6901,6930,6960,6989,7019,7048,7078,7107,7137,7166,7196,7225,7255,7284,7314,7344,7374,7403,7433,7462,7492,7521,7551,7580,7610,7639,7669,7698,7728,7757,7787,7816,7846,7875,7905,7934,7964,7993,8023,8053,8083,8112,8142,8171,8201,8230,8260,8289,8319,8348,8378,8407,8437,8466,8496,8525,8555,8584,8614,8643,8673,8702,8732,8761,8791,8821,8850,8880,8909,8938,8968,8997,9027,9056,9086,9115,9145,9175,9205,9234,9264,9293,9322,9352,9381,9410,9440,9470,9499,9529,9559,9589,9618,9648,9677,9706,9736,9765,9794,9824,9853,9883,9913,9943,9972,10002,10032,10061,10090,10120,10149,10178,10208,10237,10267,10297,10326,10356,10386,10415,10445,10474,10504,10533,10562,10592,10621,10651,10680,10710,10740,10770,10799,10829,10858,10888,10917,10947,10976,11005,11035,11064,11094,11124,11153,11183,11213,11242,11272,11301,11331,11360,11389,11419,11448,11478,11507,11537,11567,11596,11626,11655,11685,11715,11744,11774,11803,11832,11862,11891,11921,11950,11980,12010,12039,12069,12099,12128,12158,12187,12216,12246,12275,12304,12334,12364,12393,12423,12453,12483,12512,12542,12571,12600,12630,12659,12688,12718,12747,12777,12807,12837,12866,12896,12926,12955,12984,13014,13043,13072,13102,13131,13161,13191,13220,13250,13280,13310,13339,13368,13398,13427,13456,13486,13515,13545,13574,13604,13634,13664,13693,13723,13752,13782,13811,13840,13870,13899,13929,13958,13988,14018,14047,14077,14107,14136,14166,14195,14224,14254,14283,14313,14342,14372,14401,14431,14461,14490,14520,14550,14579,14609,14638,14667,14697,14726,14756,14785,14815,14844,14874,14904,14933,14963,14993,15021,15051,15081,15110,15140,15169,15199,15228,15258,15287,15317,15347,15377,15406,15436,15465,15494,15524,15553,15582,15612,15641,15671,15701,15731,15760,15790,15820,15849,15878,15908,15937,15966,15996,16025,16055,16085,16114,16144,16174,16204,16233,16262,16292,16321,16350,16380,16409,16439,16468,16498,16528,16558,16587,16617,16646,16676,16705,16734,16764,16793,16823,16852,16882,16912,16941,16971,17001,17030,17060,17089,17118,17148,17177,17207,17236,17266,17295,17325,17355,17384,17414,17444,17473,17502,17532,17561,17591,17620,17650,17679,17709,17738,17768,17798,17827,17857,17886,17916,17945,17975,18004,18034,18063,18093,18122,18152,18181,18211,18241,18270,18300,18330,18359,18388,18418,18447,18476,18506,18535,18565,18595,18625,18654,18684,18714,18743,18772,18802,18831,18860,18890,18919,18949,18979,19008,19038,19068,19098,19127,19156,19186,19215,19244,19274,19303,19333,19362,19392,19422,19452,19481,19511,19540,19570,19599,19628,19658,19687,19717,19746,19776,19806,19836,19865,19895,19924,19954,19983,20012,20042,20071,20101,20130,20160,20190,20219,20249,20279,20308,20338,20367,20396,20426,20455,20485,20514,20544,20573,20603,20633,20662,20692,20721,20751,20780,20810,20839,20869,20898,20928,20957,20987,21016,21046,21076,21105,21135,21164,21194,21223,21253,21282,21312,21341,21371,21400,21430,21459,21489,21519,21548,21578,21607,21637,21666,21696,21725,21754,21784,21813,21843,21873,21902,21932,21962,21991,22021,22050,22080,22109,22138,22168,22197,22227,22256,22286,22316,22346,22375,22405,22434,22464,22493,22522,22552,22581,22611,22640,22670,22700,22730,22759,22789,22818,22848,22877,22906,22936,22965,22994,23024,23054,23083,23113,23143,23173,23202,23232,23261,23290,23320,23349,23379,23408,23438,23467,23497,23527,23556,23586,23616,23645,23674,23704,23733,23763,23792,23822,23851,23881,23910,23940,23970,23999,24029,24058,24088,24117,24147,24176,24206,24235,24265,24294,24324,24353,24383,24413,24442,24472,24501,24531,24560,24590,24619,24648,24678,24707,24737,24767,24796,24826,24856,24885,24915,24944,24974,25003,25032,25062,25091,25121,25150,25180,25210,25240,25269,25299,25328,25358,25387,25416,25446,25475,25505,25534,25564,25594,25624,25653,25683,25712,25742,25771,25800,25830,25859,25888,25918,25948,25977,26007,26037,26067,26096,26126,26155,26184,26214,26243,26272,26302,26332,26361,26391,26421,26451,26480,26510,26539,26568,26598,26627,26656,26686,26715,26745,26775,26805,26834,26864,26893,26923,26952,26982,27011,27041,27070,27099,27129,27159,27188,27218,27248,27277,27307,27336,27366,27395,27425,27454,27484,27513,27542,27572,27602,27631,27661,27691,27720,27750,27779,27809,27838,27868,27897,27926,27956,27985,28015,28045,28074,28104,28134,28163,28193,28222,28252,28281,28310,28340,28369,28399,28428,28458,28488,28517,28547,28577,28607,28636,28665,28695,28724,28754,28783,28813,28843,28872,28901,28931,28960,28990,29019,29049,29078,29108,29137,29167,29196,29226,29255,29285,29315,29345,29375,29404,29434,29463,29492,29522,29551,29580,29610,29640,29669,29699,29729,29759,29788,29818,29847,29876,29906,29935,29964,29994,30023,30053,30082,30112,30141,30171,30200,30230,30259,30289,30318,30348,30378,30408,30437,30467,30496,30526,30555,30585,30614,30644,30673,30703,30732,30762,30791,30821,30850,30880,30909,30939,30968,30998,31027,31057,31086,31116,31145,31175,31204,31234,31263,31293,31322,31352,31381,31411,31441,31471,31500,31530,31559,31589,31618,31648,31676,31706,31736,31766,31795,31825,31854,31884,31913,31943,31972,32002,32031,32061,32090,32120,32150,32180,32209,32239,32268,32298,32327,32357,32386,32416,32445,32475,32504,32534,32563,32593,32622,32652,32681,32711,32740,32770,32799,32829,32858,32888,32917,32947,32976,33006,33035,33065,33094,33124,33153,33183,33213,33243,33272,33302,33331,33361,33390,33420,33450,33479,33509,33539,33568,33598,33627,33657,33686,33716,33745,33775,33804,33834,33863,33893,33922,33952,33981,34011,34040,34069,34099,34128,34158,34187,34217,34247,34277,34306,34336,34365,34395,34424,34454,34483,34512,34542,34571,34601,34631,34660,34690,34719,34749,34778,34808,34837,34867,34896,34926,34955,34985,35015,35044,35074,35103,35133,35162,35192,35222,35251,35280,35310,35340,35370,35399,35429,35458,35488,35517,35547,35576,35605,35635,35665,35694,35723,35753,35782,35811,35841,35871,35901,35930,35960,35989,36019,36048,36078,36107,36136,36166,36195,36225,36254,36284,36314,36343,36373,36403,36433,36462,36492,36521,36551,36580,36610,36639,36669,36698,36728,36757,36786,36816,36845,36875,36904,36934,36963,36993,37022,37052,37081,37111,37141,37170,37200,37229,37259,37288,37318,37347,37377,37406,37436,37465,37495,37524,37554,37584,37613,37643,37672,37701,37731,37760,37790,37819,37849,37878,37908,37938,37967,37997,38027,38056,38085,38115,38144,38174,38203,38233,38262,38292,38322,38351,38381,38410,38440,38469,38499,38528,38558,38587,38617,38646,38676,38705,38735,38764,38794,38823,38853,38882,38912,38941,38971,39001,39030,39059,39089,39118,39148,39178,39208,39237,39267,39297,39326,39355,39385,39414,39444,39473,39503,39532,39562,39592,39621,39650,39680,39709,39739,39768,39798,39827,39857,39886,39916,39946,39975,40005,40035,40064,40094,40123,40153,40182,40212,40241,40271,40300,40330,40359,40389,40418,40448,40477,40507,40536,40566,40595,40625,40655,40685,40714,40744,40773,40803,40832,40862,40892,40921,40951,40980,41009,41039,41068,41098,41127,41157,41186,41216,41245,41275,41304,41334,41364,41393,41422,41452,41481,41511,41540,41570,41599,41629,41658,41688,41718,41748,41777,41807,41836,41865,41894,41924,41953,41983,42012,42042,42072,42102,42131,42161,42190,42220,42249,42279,42308,42337,42367,42397,42426,42456,42485,42515,42545,42574,42604,42633,42662,42692,42721,42751,42780,42810,42839,42869,42899,42929,42958,42988,43017,43046,43076,43105,43135,43164,43194,43223,43253,43283,43312,43342,43371,43401,43430,43460,43489,43519,43548,43578,43607,43637,43666,43696,43726,43755,43785,43814,43844,43873,43903,43932,43962,43991,44021,44050,44080,44109,44139,44169,44198,44228,44258,44287,44317,44346,44375,44405,44434,44464,44493,44523,44553,44582,44612,44641,44671,44700,44730,44759,44788,44818,44847,44877,44906,44936,44966,44996,45025,45055,45084,45114,45143,45172,45202,45231,45261,45290,45320,45350,45380,45409,45439,45468,45498,45527,45556,45586,45615,45644,45674,45704,45733,45763,45793,45823,45852,45882,45911,45940,45970,45999,46028,46058,46088,46117,46147,46177,46206,46236,46265,46295,46324,46354,46383,46413,46442,46472,46501,46531,46560,46590,46620,46649,46679,46708,46738,46767,46797,46826,46856,46885,46915,46944,46974,47003,47033,47063,47092,47122,47151,47181,47210,47240,47269,47298,47328,47357,47387,47417,47446,47476,47506,47535,47565,47594,47624,47653,47682,47712,47741,47771,47800,47830,47860,47890,47919,47949,47978,48008,48037,48066,48096,48125,48155,48184,48214,48244,48273,48303,48333,48362,48392,48421,48450,48480,48509,48538,48568,48598,48627,48657,48687,48717,48746,48776,48805,48834,48864,48893,48922,48952,48982,49011,49041,49071,49100,49130,49160,49189,49218,49248,49277,49306,49336,49365,49395,49425,49455,49484,49514,49543,49573,49602,49632,49661,49690,49720,49749,49779,49809,49838,49868,49898,49927,49957,49986,50016,50045,50075,50104,50133,50163,50192,50222,50252,50281,50311,50340,50370,50400,50429,50459,50488,50518,50547,50576,50606,50635,50665,50694,50724,50754,50784,50813,50843,50872,50902,50931,50960,50990,51019,51049,51078,51108,51138,51167,51197,51227,51256,51286,51315,51345,51374,51403,51433,51462,51492,51522,51552,51582,51611,51641,51670,51699,51729,51758,51787,51816,51846,51876,51906,51936,51965,51995,52025,52054,52083,52113,52142,52171,52200,52230,52260,52290,52319,52349,52379,52408,52438,52467,52497,52526,52555,52585,52614,52644,52673,52703,52733,52762,52792,52822,52851,52881,52910,52939,52969,52998,53028,53057,53087,53116,53146,53176,53205,53235,53264,53294,53324,53353,53383,53412,53441,53471,53500,53530,53559,53589,53619,53648,53678,53708,53737,53767,53796,53825,53855,53884,53913,53943,53973,54003,54032,54062,54092,54121,54151,54180,54209,54239,54268,54297,54327,54357,54387,54416,54446,54476,54505,54535,54564,54593,54623,54652,54681,54711,54741,54770,54800,54830,54859,54889,54919,54948,54977,55007,55036,55066,55095,55125,55154,55184,55213,55243,55273,55302,55332,55361,55391,55420,55450,55479,55508,55538,55567,55597,55627,55657,55686,55716,55745,55775,55804,55834,55863,55892,55922,55951,55981,56011,56040,56070,56100,56129,56159,56188,56218,56247,56276,56306,56335,56365,56394,56424,56454,56483,56513,56543,56572,56601,56631,56660,56690,56719,56749,56778,56808,56837,56867,56897,56926,56956,56985,57015,57044,57074,57103,57133,57162,57192,57221,57251,57280,57310,57340,57369,57399,57429,57458,57487,57517,57546,57576,57605,57634,57664,57694,57723,57753,57783,57813,57842,57871,57901,57930,57959,57989,58018,58048,58077,58107,58137,58167,58196,58226,58255,58285,58314,58343,58373,58402,58432,58461,58491,58521,58551,58580,58610,58639,58669,58698,58727,58757,58786,58816,58845,58875,58905,58934,58964,58994,59023,59053,59082,59111,59141,59170,59200,59229,59259,59288,59318,59348,59377,59407,59436,59466,59495,59525,59554,59584,59613,59643,59672,59702,59731,59761,59791,59820,59850,59879,59909,59939,59968,59997,60027,60056,60086,60115,60145,60174,60204,60234,60264,60293,60323,60352,60381,60411,60440,60469,60499,60528,60558,60588,60618,60648,60677,60707,60736,60765,60795,60824,60853,60883,60912,60942,60972,61002,61031,61061,61090,61120,61149,61179,61208,61237,61267,61296,61326,61356,61385,61415,61445,61474,61504,61533,61563,61592,61621,61651,61680,61710,61739,61769,61799,61828,61858,61888,61917,61947,61976,62006,62035,62064,62094,62123,62153,62182,62212,62242,62271,62301,62331,62360,62390,62419,62448,62478,62507,62537,62566,62596,62625,62655,62685,62715,62744,62774,62803,62832,62862,62891,62921,62950,62980,63009,63039,63069,63099,63128,63157,63187,63216,63246,63275,63305,63334,63363,63393,63423,63453,63482,63512,63541,63571,63600,63630,63659,63689,63718,63747,63777,63807,63836,63866,63895,63925,63955,63984,64014,64043,64073,64102,64131,64161,64190,64220,64249,64279,64309,64339,64368,64398,64427,64457,64486,64515,64545,64574,64603,64633,64663,64692,64722,64752,64782,64811,64841,64870,64899,64929,64958,64987,65017,65047,65076,65106,65136,65166,65195,65225,65254,65283,65313,65342,65371,65401,65431,65460,65490,65520,65549,65579,65608,65638,65667,65697,65726,65755,65785,65815,65844,65874,65903,65933,65963,65992,66022,66051,66081,66110,66140,66169,66199,66228,66258,66287,66317,66346,66376,66405,66435,66465,66494,66524,66553,66583,66612,66641,66671,66700,66730,66760,66789,66819,66849,66878,66908,66937,66967,66996,67025,67055,67084,67114,67143,67173,67203,67233,67262,67292,67321,67351,67380,67409,67439,67468,67497,67527,67557,67587,67617,67646,67676,67705,67735,67764,67793,67823,67852,67882,67911,67941,67971,68e3,68030,68060,68089,68119,68148,68177,68207,68236,68266,68295,68325,68354,68384,68414,68443,68473,68502,68532,68561,68591,68620,68650,68679,68708,68738,68768,68797,68827,68857,68886,68916,68946,68975,69004,69034,69063,69092,69122,69152,69181,69211,69240,69270,69300,69330,69359,69388,69418,69447,69476,69506,69535,69565,69595,69624,69654,69684,69713,69743,69772,69802,69831,69861,69890,69919,69949,69978,70008,70038,70067,70097,70126,70156,70186,70215,70245,70274,70303,70333,70362,70392,70421,70451,70481,70510,70540,70570,70599,70629,70658,70687,70717,70746,70776,70805,70835,70864,70894,70924,70954,70983,71013,71042,71071,71101,71130,71159,71189,71218,71248,71278,71308,71337,71367,71397,71426,71455,71485,71514,71543,71573,71602,71632,71662,71691,71721,71751,71781,71810,71839,71869,71898,71927,71957,71986,72016,72046,72075,72105,72135,72164,72194,72223,72253,72282,72311,72341,72370,72400,72429,72459,72489,72518,72548,72577,72607,72637,72666,72695,72725,72754,72784,72813,72843,72872,72902,72931,72961,72991,73020,73050,73080,73109,73139,73168,73197,73227,73256,73286,73315,73345,73375,73404,73434,73464,73493,73523,73552,73581,73611,73640,73669,73699,73729,73758,73788,73818,73848,73877,73907,73936,73965,73995,74024,74053,74083,74113,74142,74172,74202,74231,74261,74291,74320,74349,74379,74408,74437,74467,74497,74526,74556,74586,74615,74645,74675,74704,74733,74763,74792,74822,74851,74881,74910,74940,74969,74999,75029,75058,75088,75117,75147,75176,75206,75235,75264,75294,75323,75353,75383,75412,75442,75472,75501,75531,75560,75590,75619,75648,75678,75707,75737,75766,75796,75826,75856,75885,75915,75944,75974,76003,76032,76062,76091,76121,76150,76180,76210,76239,76269,76299,76328,76358,76387,76416,76446,76475,76505,76534,76564,76593,76623,76653,76682,76712,76741,76771,76801,76830,76859,76889,76918,76948,76977,77007,77036,77066,77096,77125,77155,77185,77214,77243,77273,77302,77332,77361,77390,77420,77450,77479,77509,77539,77569,77598,77627,77657,77686,77715,77745,77774,77804,77833,77863,77893,77923,77952,77982,78011,78041,78070,78099,78129,78158,78188,78217,78247,78277,78307,78336,78366,78395,78425,78454,78483,78513,78542,78572,78601,78631,78661,78690,78720,78750,78779,78808,78838,78867,78897,78926,78956,78985,79015,79044,79074,79104,79133,79163,79192,79222,79251,79281,79310,79340,79369,79399,79428,79458,79487,79517,79546,79576,79606,79635,79665,79695,79724,79753,79783,79812,79841,79871,79900,79930,79960,79990]},{\"../main\":621,\"object-assign\":499}],621:[function(t,e,r){var n=t(\"object-assign\");function i(){this.regionalOptions=[],this.regionalOptions[\"\"]={invalidCalendar:\"Calendar {0} not found\",invalidDate:\"Invalid {0} date\",invalidMonth:\"Invalid {0} month\",invalidYear:\"Invalid {0} year\",differentCalendars:\"Cannot mix {0} and {1} dates\"},this.local=this.regionalOptions[\"\"],this.calendars={},this._localCals={}}function a(t,e,r,n){if(this._calendar=t,this._year=e,this._month=r,this._day=n,0===this._calendar._validateLevel&&!this._calendar.isValid(this._year,this._month,this._day))throw(c.local.invalidDate||c.regionalOptions[\"\"].invalidDate).replace(/\\{0\\}/,this._calendar.local.name)}function o(t,e){return\"000000\".substring(0,e-(t=\"\"+t).length)+t}function s(){this.shortYearCutoff=\"+10\"}function l(t){this.local=this.regionalOptions[t]||this.regionalOptions[\"\"]}n(i.prototype,{instance:function(t,e){t=(t||\"gregorian\").toLowerCase(),e=e||\"\";var r=this._localCals[t+\"-\"+e];if(!r&&this.calendars[t]&&(r=new this.calendars[t](e),this._localCals[t+\"-\"+e]=r),!r)throw(this.local.invalidCalendar||this.regionalOptions[\"\"].invalidCalendar).replace(/\\{0\\}/,t);return r},newDate:function(t,e,r,n,i){return(n=(null!=t&&t.year?t.calendar():\"string\"==typeof n?this.instance(n,i):n)||this.instance()).newDate(t,e,r)},substituteDigits:function(t){return function(e){return(e+\"\").replace(/[0-9]/g,(function(e){return t[e]}))}},substituteChineseDigits:function(t,e){return function(r){for(var n=\"\",i=0;r>0;){var a=r%10;n=(0===a?\"\":t[a]+e[i])+n,i++,r=Math.floor(r/10)}return 0===n.indexOf(t[1]+e[1])&&(n=n.substr(1)),n||t[0]}}}),n(a.prototype,{newDate:function(t,e,r){return this._calendar.newDate(null==t?this:t,e,r)},year:function(t){return 0===arguments.length?this._year:this.set(t,\"y\")},month:function(t){return 0===arguments.length?this._month:this.set(t,\"m\")},day:function(t){return 0===arguments.length?this._day:this.set(t,\"d\")},date:function(t,e,r){if(!this._calendar.isValid(t,e,r))throw(c.local.invalidDate||c.regionalOptions[\"\"].invalidDate).replace(/\\{0\\}/,this._calendar.local.name);return this._year=t,this._month=e,this._day=r,this},leapYear:function(){return this._calendar.leapYear(this)},epoch:function(){return this._calendar.epoch(this)},formatYear:function(){return this._calendar.formatYear(this)},monthOfYear:function(){return this._calendar.monthOfYear(this)},weekOfYear:function(){return this._calendar.weekOfYear(this)},daysInYear:function(){return this._calendar.daysInYear(this)},dayOfYear:function(){return this._calendar.dayOfYear(this)},daysInMonth:function(){return this._calendar.daysInMonth(this)},dayOfWeek:function(){return this._calendar.dayOfWeek(this)},weekDay:function(){return this._calendar.weekDay(this)},extraInfo:function(){return this._calendar.extraInfo(this)},add:function(t,e){return this._calendar.add(this,t,e)},set:function(t,e){return this._calendar.set(this,t,e)},compareTo:function(t){if(this._calendar.name!==t._calendar.name)throw(c.local.differentCalendars||c.regionalOptions[\"\"].differentCalendars).replace(/\\{0\\}/,this._calendar.local.name).replace(/\\{1\\}/,t._calendar.local.name);var e=this._year!==t._year?this._year-t._year:this._month!==t._month?this.monthOfYear()-t.monthOfYear():this._day-t._day;return 0===e?0:e<0?-1:1},calendar:function(){return this._calendar},toJD:function(){return this._calendar.toJD(this)},fromJD:function(t){return this._calendar.fromJD(t)},toJSDate:function(){return this._calendar.toJSDate(this)},fromJSDate:function(t){return this._calendar.fromJSDate(t)},toString:function(){return(this.year()<0?\"-\":\"\")+o(Math.abs(this.year()),4)+\"-\"+o(this.month(),2)+\"-\"+o(this.day(),2)}}),n(s.prototype,{_validateLevel:0,newDate:function(t,e,r){return null==t?this.today():(t.year&&(this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),r=t.day(),e=t.month(),t=t.year()),new a(this,t,e,r))},today:function(){return this.fromJSDate(new Date)},epoch:function(t){return this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear).year()<0?this.local.epochs[0]:this.local.epochs[1]},formatYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear);return(e.year()<0?\"-\":\"\")+o(Math.abs(e.year()),4)},monthsInYear:function(t){return this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear),12},monthOfYear:function(t,e){var r=this._validate(t,e,this.minDay,c.local.invalidMonth||c.regionalOptions[\"\"].invalidMonth);return(r.month()+this.monthsInYear(r)-this.firstMonth)%this.monthsInYear(r)+this.minMonth},fromMonthOfYear:function(t,e){var r=(e+this.firstMonth-2*this.minMonth)%this.monthsInYear(t)+this.minMonth;return this._validate(t,r,this.minDay,c.local.invalidMonth||c.regionalOptions[\"\"].invalidMonth),r},daysInYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear);return this.leapYear(e)?366:365},dayOfYear:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);return n.toJD()-this.newDate(n.year(),this.fromMonthOfYear(n.year(),this.minMonth),this.minDay).toJD()+1},daysInWeek:function(){return 7},dayOfWeek:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);return(Math.floor(this.toJD(n))+2)%this.daysInWeek()},extraInfo:function(t,e,r){return this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),{}},add:function(t,e,r){return this._validate(t,this.minMonth,this.minDay,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),this._correctAdd(t,this._add(t,e,r),e,r)},_add:function(t,e,r){if(this._validateLevel++,\"d\"===r||\"w\"===r){var n=t.toJD()+e*(\"w\"===r?this.daysInWeek():1),i=t.calendar().fromJD(n);return this._validateLevel--,[i.year(),i.month(),i.day()]}try{var a=t.year()+(\"y\"===r?e:0),o=t.monthOfYear()+(\"m\"===r?e:0);i=t.day();\"y\"===r?(t.month()!==this.fromMonthOfYear(a,o)&&(o=this.newDate(a,t.month(),this.minDay).monthOfYear()),o=Math.min(o,this.monthsInYear(a)),i=Math.min(i,this.daysInMonth(a,this.fromMonthOfYear(a,o)))):\"m\"===r&&(!function(t){for(;o<t.minMonth;)a--,o+=t.monthsInYear(a);for(var e=t.monthsInYear(a);o>e-1+t.minMonth;)a++,o-=e,e=t.monthsInYear(a)}(this),i=Math.min(i,this.daysInMonth(a,this.fromMonthOfYear(a,o))));var s=[a,this.fromMonthOfYear(a,o),i];return this._validateLevel--,s}catch(t){throw this._validateLevel--,t}},_correctAdd:function(t,e,r,n){if(!(this.hasYearZero||\"y\"!==n&&\"m\"!==n||0!==e[0]&&t.year()>0==e[0]>0)){var i={y:[1,1,\"y\"],m:[1,this.monthsInYear(-1),\"m\"],w:[this.daysInWeek(),this.daysInYear(-1),\"d\"],d:[1,this.daysInYear(-1),\"d\"]}[n],a=r<0?-1:1;e=this._add(t,r*i[0]+a*i[1],i[2])}return t.date(e[0],e[1],e[2])},set:function(t,e,r){this._validate(t,this.minMonth,this.minDay,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);var n=\"y\"===r?e:t.year(),i=\"m\"===r?e:t.month(),a=\"d\"===r?e:t.day();return\"y\"!==r&&\"m\"!==r||(a=Math.min(a,this.daysInMonth(n,i))),t.date(n,i,a)},isValid:function(t,e,r){this._validateLevel++;var n=this.hasYearZero||0!==t;if(n){var i=this.newDate(t,e,this.minDay);n=e>=this.minMonth&&e-this.minMonth<this.monthsInYear(i)&&r>=this.minDay&&r-this.minDay<this.daysInMonth(i)}return this._validateLevel--,n},toJSDate:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);return c.instance().fromJD(this.toJD(n)).toJSDate()},fromJSDate:function(t){return this.fromJD(c.instance().fromJSDate(t).toJD())},_validate:function(t,e,r,n){if(t.year){if(0===this._validateLevel&&this.name!==t.calendar().name)throw(c.local.differentCalendars||c.regionalOptions[\"\"].differentCalendars).replace(/\\{0\\}/,this.local.name).replace(/\\{1\\}/,t.calendar().local.name);return t}try{if(this._validateLevel++,1===this._validateLevel&&!this.isValid(t,e,r))throw n.replace(/\\{0\\}/,this.local.name);var i=this.newDate(t,e,r);return this._validateLevel--,i}catch(t){throw this._validateLevel--,t}}}),l.prototype=new s,n(l.prototype,{name:\"Gregorian\",jdEpoch:1721425.5,daysPerMonth:[31,28,31,30,31,30,31,31,30,31,30,31],hasYearZero:!1,minMonth:1,firstMonth:1,minDay:1,regionalOptions:{\"\":{name:\"Gregorian\",epochs:[\"BCE\",\"CE\"],monthNames:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],monthNamesShort:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],dayNames:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],dayNamesShort:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],dayNamesMin:[\"Su\",\"Mo\",\"Tu\",\"We\",\"Th\",\"Fr\",\"Sa\"],digits:null,dateFormat:\"mm/dd/yyyy\",firstDay:0,isRTL:!1}},leapYear:function(t){var e=this._validate(t,this.minMonth,this.minDay,c.local.invalidYear||c.regionalOptions[\"\"].invalidYear);return(t=e.year()+(e.year()<0?1:0))%4==0&&(t%100!=0||t%400==0)},weekOfYear:function(t,e,r){var n=this.newDate(t,e,r);return n.add(4-(n.dayOfWeek()||7),\"d\"),Math.floor((n.dayOfYear()-1)/7)+1},daysInMonth:function(t,e){var r=this._validate(t,e,this.minDay,c.local.invalidMonth||c.regionalOptions[\"\"].invalidMonth);return this.daysPerMonth[r.month()-1]+(2===r.month()&&this.leapYear(r.year())?1:0)},weekDay:function(t,e,r){return(this.dayOfWeek(t,e,r)||7)<6},toJD:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate);t=n.year(),e=n.month(),r=n.day(),t<0&&t++,e<3&&(e+=12,t--);var i=Math.floor(t/100),a=2-i+Math.floor(i/4);return Math.floor(365.25*(t+4716))+Math.floor(30.6001*(e+1))+r+a-1524.5},fromJD:function(t){var e=Math.floor(t+.5),r=Math.floor((e-1867216.25)/36524.25),n=(r=e+1+r-Math.floor(r/4))+1524,i=Math.floor((n-122.1)/365.25),a=Math.floor(365.25*i),o=Math.floor((n-a)/30.6001),s=n-a-Math.floor(30.6001*o),l=o-(o>13.5?13:1),c=i-(l>2.5?4716:4715);return c<=0&&c--,this.newDate(c,l,s)},toJSDate:function(t,e,r){var n=this._validate(t,e,r,c.local.invalidDate||c.regionalOptions[\"\"].invalidDate),i=new Date(n.year(),n.month()-1,n.day());return i.setHours(0),i.setMinutes(0),i.setSeconds(0),i.setMilliseconds(0),i.setHours(i.getHours()>12?i.getHours()+2:0),i},fromJSDate:function(t){return this.newDate(t.getFullYear(),t.getMonth()+1,t.getDate())}});var c=e.exports=new i;c.cdate=a,c.baseCalendar=s,c.calendars.gregorian=l},{\"object-assign\":499}],622:[function(t,e,r){var n=t(\"object-assign\"),i=t(\"./main\");n(i.regionalOptions[\"\"],{invalidArguments:\"Invalid arguments\",invalidFormat:\"Cannot format a date from another calendar\",missingNumberAt:\"Missing number at position {0}\",unknownNameAt:\"Unknown name at position {0}\",unexpectedLiteralAt:\"Unexpected literal at position {0}\",unexpectedText:\"Additional text found at end\"}),i.local=i.regionalOptions[\"\"],n(i.cdate.prototype,{formatDate:function(t,e){return\"string\"!=typeof t&&(e=t,t=\"\"),this._calendar.formatDate(t||\"\",this,e)}}),n(i.baseCalendar.prototype,{UNIX_EPOCH:i.instance().newDate(1970,1,1).toJD(),SECS_PER_DAY:86400,TICKS_EPOCH:i.instance().jdEpoch,TICKS_PER_DAY:864e9,ATOM:\"yyyy-mm-dd\",COOKIE:\"D, dd M yyyy\",FULL:\"DD, MM d, yyyy\",ISO_8601:\"yyyy-mm-dd\",JULIAN:\"J\",RFC_822:\"D, d M yy\",RFC_850:\"DD, dd-M-yy\",RFC_1036:\"D, d M yy\",RFC_1123:\"D, d M yyyy\",RFC_2822:\"D, d M yyyy\",RSS:\"D, d M yy\",TICKS:\"!\",TIMESTAMP:\"@\",W3C:\"yyyy-mm-dd\",formatDate:function(t,e,r){if(\"string\"!=typeof t&&(r=e,e=t,t=\"\"),!e)return\"\";if(e.calendar()!==this)throw i.local.invalidFormat||i.regionalOptions[\"\"].invalidFormat;t=t||this.local.dateFormat;for(var n,a,o,s,l=(r=r||{}).dayNamesShort||this.local.dayNamesShort,c=r.dayNames||this.local.dayNames,u=r.monthNumbers||this.local.monthNumbers,f=r.monthNamesShort||this.local.monthNamesShort,h=r.monthNames||this.local.monthNames,p=(r.calculateWeek||this.local.calculateWeek,function(e,r){for(var n=1;w+n<t.length&&t.charAt(w+n)===e;)n++;return w+=n-1,Math.floor(n/(r||1))>1}),d=function(t,e,r,n){var i=\"\"+e;if(p(t,n))for(;i.length<r;)i=\"0\"+i;return i},g=this,m=function(t){return\"function\"==typeof u?u.call(g,t,p(\"m\")):x(d(\"m\",t.month(),2))},v=function(t,e){return e?\"function\"==typeof h?h.call(g,t):h[t.month()-g.minMonth]:\"function\"==typeof f?f.call(g,t):f[t.month()-g.minMonth]},y=this.local.digits,x=function(t){return r.localNumbers&&y?y(t):t},b=\"\",_=!1,w=0;w<t.length;w++)if(_)\"'\"!==t.charAt(w)||p(\"'\")?b+=t.charAt(w):_=!1;else switch(t.charAt(w)){case\"d\":b+=x(d(\"d\",e.day(),2));break;case\"D\":b+=(n=\"D\",a=e.dayOfWeek(),o=l,s=c,p(n)?s[a]:o[a]);break;case\"o\":b+=d(\"o\",e.dayOfYear(),3);break;case\"w\":b+=d(\"w\",e.weekOfYear(),2);break;case\"m\":b+=m(e);break;case\"M\":b+=v(e,p(\"M\"));break;case\"y\":b+=p(\"y\",2)?e.year():(e.year()%100<10?\"0\":\"\")+e.year()%100;break;case\"Y\":p(\"Y\",2),b+=e.formatYear();break;case\"J\":b+=e.toJD();break;case\"@\":b+=(e.toJD()-this.UNIX_EPOCH)*this.SECS_PER_DAY;break;case\"!\":b+=(e.toJD()-this.TICKS_EPOCH)*this.TICKS_PER_DAY;break;case\"'\":p(\"'\")?b+=\"'\":_=!0;break;default:b+=t.charAt(w)}return b},parseDate:function(t,e,r){if(null==e)throw i.local.invalidArguments||i.regionalOptions[\"\"].invalidArguments;if(\"\"===(e=\"object\"==typeof e?e.toString():e+\"\"))return null;t=t||this.local.dateFormat;var n=(r=r||{}).shortYearCutoff||this.shortYearCutoff;n=\"string\"!=typeof n?n:this.today().year()%100+parseInt(n,10);for(var a=r.dayNamesShort||this.local.dayNamesShort,o=r.dayNames||this.local.dayNames,s=r.parseMonth||this.local.parseMonth,l=r.monthNumbers||this.local.monthNumbers,c=r.monthNamesShort||this.local.monthNamesShort,u=r.monthNames||this.local.monthNames,f=-1,h=-1,p=-1,d=-1,g=-1,m=!1,v=!1,y=function(e,r){for(var n=1;A+n<t.length&&t.charAt(A+n)===e;)n++;return A+=n-1,Math.floor(n/(r||1))>1},x=function(t,r){var n=y(t,r),a=[2,3,n?4:2,n?4:2,10,11,20][\"oyYJ@!\".indexOf(t)+1],o=new RegExp(\"^-?\\\\d{1,\"+a+\"}\"),s=e.substring(M).match(o);if(!s)throw(i.local.missingNumberAt||i.regionalOptions[\"\"].missingNumberAt).replace(/\\{0\\}/,M);return M+=s[0].length,parseInt(s[0],10)},b=this,_=function(){if(\"function\"==typeof l){y(\"m\");var t=l.call(b,e.substring(M));return M+=t.length,t}return x(\"m\")},w=function(t,r,n,a){for(var o=y(t,a)?n:r,s=0;s<o.length;s++)if(e.substr(M,o[s].length).toLowerCase()===o[s].toLowerCase())return M+=o[s].length,s+b.minMonth;throw(i.local.unknownNameAt||i.regionalOptions[\"\"].unknownNameAt).replace(/\\{0\\}/,M)},T=function(){if(\"function\"==typeof u){var t=y(\"M\")?u.call(b,e.substring(M)):c.call(b,e.substring(M));return M+=t.length,t}return w(\"M\",c,u)},k=function(){if(e.charAt(M)!==t.charAt(A))throw(i.local.unexpectedLiteralAt||i.regionalOptions[\"\"].unexpectedLiteralAt).replace(/\\{0\\}/,M);M++},M=0,A=0;A<t.length;A++)if(v)\"'\"!==t.charAt(A)||y(\"'\")?k():v=!1;else switch(t.charAt(A)){case\"d\":d=x(\"d\");break;case\"D\":w(\"D\",a,o);break;case\"o\":g=x(\"o\");break;case\"w\":x(\"w\");break;case\"m\":p=_();break;case\"M\":p=T();break;case\"y\":var S=A;m=!y(\"y\",2),A=S,h=x(\"y\",2);break;case\"Y\":h=x(\"Y\",2);break;case\"J\":f=x(\"J\")+.5,\".\"===e.charAt(M)&&(M++,x(\"J\"));break;case\"@\":f=x(\"@\")/this.SECS_PER_DAY+this.UNIX_EPOCH;break;case\"!\":f=x(\"!\")/this.TICKS_PER_DAY+this.TICKS_EPOCH;break;case\"*\":M=e.length;break;case\"'\":y(\"'\")?k():v=!0;break;default:k()}if(M<e.length)throw i.local.unexpectedText||i.regionalOptions[\"\"].unexpectedText;if(-1===h?h=this.today().year():h<100&&m&&(h+=-1===n?1900:this.today().year()-this.today().year()%100-(h<=n?0:100)),\"string\"==typeof p&&(p=s.call(this,h,p)),g>-1){p=1,d=g;for(var E=this.daysInMonth(h,p);d>E;E=this.daysInMonth(h,p))p++,d-=E}return f>-1?this.fromJD(f):this.newDate(h,p,d)},determineDate:function(t,e,r,n,i){r&&\"object\"!=typeof r&&(i=n,n=r,r=null),\"string\"!=typeof n&&(i=n,n=\"\");var a=this;return e=e?e.newDate():null,t=null==t?e:\"string\"==typeof t?function(t){try{return a.parseDate(n,t,i)}catch(t){}for(var e=((t=t.toLowerCase()).match(/^c/)&&r?r.newDate():null)||a.today(),o=/([+-]?[0-9]+)\\s*(d|w|m|y)?/g,s=o.exec(t);s;)e.add(parseInt(s[1],10),s[2]||\"d\"),s=o.exec(t);return e}(t):\"number\"==typeof t?isNaN(t)||t===1/0||t===-1/0?e:a.today().add(t,\"d\"):a.newDate(t)}})},{\"./main\":621,\"object-assign\":499}],623:[function(t,e,r){e.exports=t(\"cwise-compiler\")({args:[\"array\",{offset:[1],array:0},\"scalar\",\"scalar\",\"index\"],pre:{body:\"{}\",args:[],thisVars:[],localVars:[]},post:{body:\"{}\",args:[],thisVars:[],localVars:[]},body:{body:\"{\\n        var _inline_1_da = _inline_1_arg0_ - _inline_1_arg3_\\n        var _inline_1_db = _inline_1_arg1_ - _inline_1_arg3_\\n        if((_inline_1_da >= 0) !== (_inline_1_db >= 0)) {\\n          _inline_1_arg2_.push(_inline_1_arg4_[0] + 0.5 + 0.5 * (_inline_1_da + _inline_1_db) / (_inline_1_da - _inline_1_db))\\n        }\\n      }\",args:[{name:\"_inline_1_arg0_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg1_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg2_\",lvalue:!1,rvalue:!0,count:1},{name:\"_inline_1_arg3_\",lvalue:!1,rvalue:!0,count:2},{name:\"_inline_1_arg4_\",lvalue:!1,rvalue:!0,count:1}],thisVars:[],localVars:[\"_inline_1_da\",\"_inline_1_db\"]},funcName:\"zeroCrossings\"})},{\"cwise-compiler\":151}],624:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r=[];return e=+e||0,n(t.hi(t.shape[0]-1),r,e),r};var n=t(\"./lib/zc-core\")},{\"./lib/zc-core\":623}],625:[function(t,e,r){\"use strict\";e.exports=[{path:\"\",backoff:0},{path:\"M-2.4,-3V3L0.6,0Z\",backoff:.6},{path:\"M-3.7,-2.5V2.5L1.3,0Z\",backoff:1.3},{path:\"M-4.45,-3L-1.65,-0.2V0.2L-4.45,3L1.55,0Z\",backoff:1.55},{path:\"M-2.2,-2.2L-0.2,-0.2V0.2L-2.2,2.2L-1.4,3L1.6,0L-1.4,-3Z\",backoff:1.6},{path:\"M-4.4,-2.1L-0.6,-0.2V0.2L-4.4,2.1L-4,3L2,0L-4,-3Z\",backoff:2},{path:\"M2,0A2,2 0 1,1 0,-2A2,2 0 0,1 2,0Z\",backoff:0,noRotate:!0},{path:\"M2,2V-2H-2V2Z\",backoff:0,noRotate:!0}]},{}],626:[function(t,e,r){\"use strict\";var n=t(\"./arrow_paths\"),i=t(\"../../plots/font_attributes\"),a=t(\"../../plots/cartesian/constants\"),o=t(\"../../plot_api/plot_template\").templatedArray;t(\"../../constants/axis_placeable_objects\");e.exports=o(\"annotation\",{visible:{valType:\"boolean\",dflt:!0,editType:\"calc+arraydraw\"},text:{valType:\"string\",editType:\"calc+arraydraw\"},textangle:{valType:\"angle\",dflt:0,editType:\"calc+arraydraw\"},font:i({editType:\"calc+arraydraw\",colorEditType:\"arraydraw\"}),width:{valType:\"number\",min:1,dflt:null,editType:\"calc+arraydraw\"},height:{valType:\"number\",min:1,dflt:null,editType:\"calc+arraydraw\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"arraydraw\"},align:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"center\",editType:\"arraydraw\"},valign:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"middle\",editType:\"arraydraw\"},bgcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"arraydraw\"},bordercolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"arraydraw\"},borderpad:{valType:\"number\",min:0,dflt:1,editType:\"calc+arraydraw\"},borderwidth:{valType:\"number\",min:0,dflt:1,editType:\"calc+arraydraw\"},showarrow:{valType:\"boolean\",dflt:!0,editType:\"calc+arraydraw\"},arrowcolor:{valType:\"color\",editType:\"arraydraw\"},arrowhead:{valType:\"integer\",min:0,max:n.length,dflt:1,editType:\"arraydraw\"},startarrowhead:{valType:\"integer\",min:0,max:n.length,dflt:1,editType:\"arraydraw\"},arrowside:{valType:\"flaglist\",flags:[\"end\",\"start\"],extras:[\"none\"],dflt:\"end\",editType:\"arraydraw\"},arrowsize:{valType:\"number\",min:.3,dflt:1,editType:\"calc+arraydraw\"},startarrowsize:{valType:\"number\",min:.3,dflt:1,editType:\"calc+arraydraw\"},arrowwidth:{valType:\"number\",min:.1,editType:\"calc+arraydraw\"},standoff:{valType:\"number\",min:0,dflt:0,editType:\"calc+arraydraw\"},startstandoff:{valType:\"number\",min:0,dflt:0,editType:\"calc+arraydraw\"},ax:{valType:\"any\",editType:\"calc+arraydraw\"},ay:{valType:\"any\",editType:\"calc+arraydraw\"},axref:{valType:\"enumerated\",dflt:\"pixel\",values:[\"pixel\",a.idRegex.x.toString()],editType:\"calc\"},ayref:{valType:\"enumerated\",dflt:\"pixel\",values:[\"pixel\",a.idRegex.y.toString()],editType:\"calc\"},xref:{valType:\"enumerated\",values:[\"paper\",a.idRegex.x.toString()],editType:\"calc\"},x:{valType:\"any\",editType:\"calc+arraydraw\"},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"auto\",editType:\"calc+arraydraw\"},xshift:{valType:\"number\",dflt:0,editType:\"calc+arraydraw\"},yref:{valType:\"enumerated\",values:[\"paper\",a.idRegex.y.toString()],editType:\"calc\"},y:{valType:\"any\",editType:\"calc+arraydraw\"},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"auto\",editType:\"calc+arraydraw\"},yshift:{valType:\"number\",dflt:0,editType:\"calc+arraydraw\"},clicktoshow:{valType:\"enumerated\",values:[!1,\"onoff\",\"onout\"],dflt:!1,editType:\"arraydraw\"},xclick:{valType:\"any\",editType:\"arraydraw\"},yclick:{valType:\"any\",editType:\"arraydraw\"},hovertext:{valType:\"string\",editType:\"arraydraw\"},hoverlabel:{bgcolor:{valType:\"color\",editType:\"arraydraw\"},bordercolor:{valType:\"color\",editType:\"arraydraw\"},font:i({editType:\"arraydraw\"}),editType:\"arraydraw\"},captureevents:{valType:\"boolean\",editType:\"arraydraw\"},editType:\"calc\",_deprecated:{ref:{valType:\"string\",editType:\"calc\"}}})},{\"../../constants/axis_placeable_objects\":746,\"../../plot_api/plot_template\":817,\"../../plots/cartesian/constants\":834,\"../../plots/font_attributes\":856,\"./arrow_paths\":625}],627:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"./draw\").draw;function o(t){var e=t._fullLayout;n.filterVisible(e.annotations).forEach((function(e){var r=i.getFromId(t,e.xref),n=i.getFromId(t,e.yref),a=i.getRefType(e.xref),o=i.getRefType(e.yref);e._extremes={},\"range\"===a&&s(e,r),\"range\"===o&&s(e,n)}))}function s(t,e){var r,n=e._id,a=n.charAt(0),o=t[a],s=t[\"a\"+a],l=t[a+\"ref\"],c=t[\"a\"+a+\"ref\"],u=t[\"_\"+a+\"padplus\"],f=t[\"_\"+a+\"padminus\"],h={x:1,y:-1}[a]*t[a+\"shift\"],p=3*t.arrowsize*t.arrowwidth||0,d=p+h,g=p-h,m=3*t.startarrowsize*t.arrowwidth||0,v=m+h,y=m-h;if(c===l){var x=i.findExtremes(e,[e.r2c(o)],{ppadplus:d,ppadminus:g}),b=i.findExtremes(e,[e.r2c(s)],{ppadplus:Math.max(u,v),ppadminus:Math.max(f,y)});r={min:[x.min[0],b.min[0]],max:[x.max[0],b.max[0]]}}else v=s?v+s:v,y=s?y-s:y,r=i.findExtremes(e,[e.r2c(o)],{ppadplus:Math.max(u,d,v),ppadminus:Math.max(f,g,y)});t._extremes[n]=r}e.exports=function(t){var e=t._fullLayout;if(n.filterVisible(e.annotations).length&&t._fullData.length)return n.syncOrAsync([a,o],t)}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"./draw\":632}],628:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../registry\"),a=t(\"../../plot_api/plot_template\").arrayEditor;function o(t,e){var r,n,i,a,o,l,c,u=t._fullLayout.annotations,f=[],h=[],p=[],d=(e||[]).length;for(r=0;r<u.length;r++)if(a=(i=u[r]).clicktoshow){for(n=0;n<d;n++)if(l=(o=e[n]).xaxis,c=o.yaxis,l._id===i.xref&&c._id===i.yref&&l.d2r(o.x)===s(i._xclick,l)&&c.d2r(o.y)===s(i._yclick,c)){(i.visible?\"onout\"===a?h:p:f).push(r);break}n===d&&i.visible&&\"onout\"===a&&h.push(r)}return{on:f,off:h,explicitOff:p}}function s(t,e){return\"log\"===e.type?e.l2r(t):e.d2r(t)}e.exports={hasClickToShow:function(t,e){var r=o(t,e);return r.on.length>0||r.explicitOff.length>0},onClick:function(t,e){var r,s,l=o(t,e),c=l.on,u=l.off.concat(l.explicitOff),f={},h=t._fullLayout.annotations;if(!c.length&&!u.length)return;for(r=0;r<c.length;r++)(s=a(t.layout,\"annotations\",h[c[r]])).modifyItem(\"visible\",!0),n.extendFlat(f,s.getUpdateObj());for(r=0;r<u.length;r++)(s=a(t.layout,\"annotations\",h[u[r]])).modifyItem(\"visible\",!1),n.extendFlat(f,s.getUpdateObj());return i.call(\"update\",t,{},f)}}},{\"../../lib\":778,\"../../plot_api/plot_template\":817,\"../../registry\":911}],629:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../color\");e.exports=function(t,e,r,a){a(\"opacity\");var o=a(\"bgcolor\"),s=a(\"bordercolor\"),l=i.opacity(s);a(\"borderpad\");var c=a(\"borderwidth\"),u=a(\"showarrow\");if(a(\"text\",u?\" \":r._dfltTitle.annotation),a(\"textangle\"),n.coerceFont(a,\"font\",r.font),a(\"width\"),a(\"align\"),a(\"height\")&&a(\"valign\"),u){var f,h,p=a(\"arrowside\");-1!==p.indexOf(\"end\")&&(f=a(\"arrowhead\"),h=a(\"arrowsize\")),-1!==p.indexOf(\"start\")&&(a(\"startarrowhead\",f),a(\"startarrowsize\",h)),a(\"arrowcolor\",l?e.bordercolor:i.defaultLine),a(\"arrowwidth\",2*(l&&c||1)),a(\"standoff\"),a(\"startstandoff\")}var d=a(\"hovertext\"),g=r.hoverlabel||{};if(d){var m=a(\"hoverlabel.bgcolor\",g.bgcolor||(i.opacity(o)?i.rgb(o):i.defaultLine)),v=a(\"hoverlabel.bordercolor\",g.bordercolor||i.contrast(m));n.coerceFont(a,\"hoverlabel.font\",{family:g.font.family,size:g.font.size,color:g.font.color||v})}a(\"captureevents\",!!d)}},{\"../../lib\":778,\"../color\":643}],630:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib/to_log_range\");e.exports=function(t,e,r,a){e=e||{};var o=\"log\"===r&&\"linear\"===e.type,s=\"linear\"===r&&\"log\"===e.type;if(o||s)for(var l,c,u=t._fullLayout.annotations,f=e._id.charAt(0),h=0;h<u.length;h++)l=u[h],c=\"annotations[\"+h+\"].\",l[f+\"ref\"]===e._id&&p(f),l[\"a\"+f+\"ref\"]===e._id&&p(\"a\"+f);function p(t){var r=l[t],s=null;s=o?i(r,e.range):Math.pow(10,r),n(s)||(s=null),a(c+t,s)}}},{\"../../lib/to_log_range\":805,\"fast-isnumeric\":241}],631:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../plots/array_container_defaults\"),o=t(\"./common_defaults\"),s=t(\"./attributes\");function l(t,e,r){function a(r,i){return n.coerce(t,e,s,r,i)}var l=a(\"visible\"),c=a(\"clicktoshow\");if(l||c){o(t,e,r,a);for(var u=e.showarrow,f=[\"x\",\"y\"],h=[-10,-30],p={_fullLayout:r},d=0;d<2;d++){var g=f[d],m=i.coerceRef(t,e,p,g,\"\",\"paper\");if(\"paper\"!==m)i.getFromId(p,m)._annIndices.push(e._index);if(i.coercePosition(e,p,a,m,g,.5),u){var v=\"a\"+g,y=i.coerceRef(t,e,p,v,\"pixel\",[\"pixel\",\"paper\"]);\"pixel\"!==y&&y!==m&&(y=e[v]=\"pixel\");var x=\"pixel\"===y?h[d]:.4;i.coercePosition(e,p,a,y,v,x)}a(g+\"anchor\"),a(g+\"shift\")}if(n.noneOrAll(t,e,[\"x\",\"y\"]),u&&n.noneOrAll(t,e,[\"ax\",\"ay\"]),c){var b=a(\"xclick\"),_=a(\"yclick\");e._xclick=void 0===b?e.x:i.cleanPosition(b,p,e.xref),e._yclick=void 0===_?e.y:i.cleanPosition(_,p,e.yref)}}}e.exports=function(t,e){a(t,e,{name:\"annotations\",handleItemDefaults:l})}},{\"../../lib\":778,\"../../plots/array_container_defaults\":823,\"../../plots/cartesian/axes\":828,\"./attributes\":626,\"./common_defaults\":629}],632:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../registry\"),a=t(\"../../plots/plots\"),o=t(\"../../lib\"),s=o.strTranslate,l=t(\"../../plots/cartesian/axes\"),c=t(\"../color\"),u=t(\"../drawing\"),f=t(\"../fx\"),h=t(\"../../lib/svg_text_utils\"),p=t(\"../../lib/setcursor\"),d=t(\"../dragelement\"),g=t(\"../../plot_api/plot_template\").arrayEditor,m=t(\"./draw_arrow_head\");function v(t,e){var r=t._fullLayout.annotations[e]||{},n=l.getFromId(t,r.xref),i=l.getFromId(t,r.yref);n&&n.setScale(),i&&i.setScale(),x(t,r,e,!1,n,i)}function y(t,e,r,n,i){var a=i[r],o=i[r+\"ref\"],s=-1!==r.indexOf(\"y\"),c=\"domain\"===l.getRefType(o),u=s?n.h:n.w;return t?c?a+(s?-e:e)/t._length:t.p2r(t.r2p(a)+e):a+(s?-e:e)/u}function x(t,e,r,a,v,x){var b,_,w=t._fullLayout,T=t._fullLayout._size,k=t._context.edits;a?(b=\"annotation-\"+a,_=a+\".annotations\"):(b=\"annotation\",_=\"annotations\");var M=g(t.layout,_,e),A=M.modifyBase,S=M.modifyItem,E=M.getUpdateObj;w._infolayer.selectAll(\".\"+b+'[data-index=\"'+r+'\"]').remove();var C=\"clip\"+w._uid+\"_ann\"+r;if(e._input&&!1!==e.visible){var L={x:{},y:{}},I=+e.textangle||0,P=w._infolayer.append(\"g\").classed(b,!0).attr(\"data-index\",String(r)).style(\"opacity\",e.opacity),z=P.append(\"g\").classed(\"annotation-text-g\",!0),O=k[e.showarrow?\"annotationTail\":\"annotationPosition\"],D=e.captureevents||k.annotationText||O,R=z.append(\"g\").style(\"pointer-events\",D?\"all\":null).call(p,\"pointer\").on(\"click\",(function(){t._dragging=!1,t.emit(\"plotly_clickannotation\",Y(n.event))}));e.hovertext&&R.on(\"mouseover\",(function(){var r=e.hoverlabel,n=r.font,i=this.getBoundingClientRect(),a=t.getBoundingClientRect();f.loneHover({x0:i.left-a.left,x1:i.right-a.left,y:(i.top+i.bottom)/2-a.top,text:e.hovertext,color:r.bgcolor,borderColor:r.bordercolor,fontFamily:n.family,fontSize:n.size,fontColor:n.color},{container:w._hoverlayer.node(),outerContainer:w._paper.node(),gd:t})})).on(\"mouseout\",(function(){f.loneUnhover(w._hoverlayer.node())}));var F=e.borderwidth,B=e.borderpad,N=F+B,j=R.append(\"rect\").attr(\"class\",\"bg\").style(\"stroke-width\",F+\"px\").call(c.stroke,e.bordercolor).call(c.fill,e.bgcolor),U=e.width||e.height,V=w._topclips.selectAll(\"#\"+C).data(U?[0]:[]);V.enter().append(\"clipPath\").classed(\"annclip\",!0).attr(\"id\",C).append(\"rect\"),V.exit().remove();var q=e.font,H=w._meta?o.templateString(e.text,w._meta):e.text,G=R.append(\"text\").classed(\"annotation-text\",!0).text(H);k.annotationText?G.call(h.makeEditable,{delegate:R,gd:t}).call(W).on(\"edit\",(function(r){e.text=r,this.call(W),S(\"text\",r),v&&v.autorange&&A(v._name+\".autorange\",!0),x&&x.autorange&&A(x._name+\".autorange\",!0),i.call(\"_guiRelayout\",t,E())})):G.call(W)}else n.selectAll(\"#\"+C).remove();function Y(t){var n={index:r,annotation:e._input,fullAnnotation:e,event:t};return a&&(n.subplotId=a),n}function W(r){return r.call(u.font,q).attr({\"text-anchor\":{left:\"start\",right:\"end\"}[e.align]||\"middle\"}),h.convertToTspans(r,t,X),r}function X(){var r=G.selectAll(\"a\");1===r.size()&&r.text()===G.text()&&R.insert(\"a\",\":first-child\").attr({\"xlink:xlink:href\":r.attr(\"xlink:href\"),\"xlink:xlink:show\":r.attr(\"xlink:show\")}).style({cursor:\"pointer\"}).node().appendChild(j.node());var n=R.select(\".annotation-text-math-group\"),f=!n.empty(),g=u.bBox((f?n:G).node()),b=g.width,_=g.height,M=e.width||b,D=e.height||_,B=Math.round(M+2*N),q=Math.round(D+2*N);function H(t,e){return\"auto\"===e&&(e=t<1/3?\"left\":t>2/3?\"right\":\"center\"),{center:0,middle:0,left:.5,bottom:-.5,right:-.5,top:.5}[e]}for(var W=!1,X=[\"x\",\"y\"],Z=0;Z<X.length;Z++){var J,K,Q,$,tt,et=X[Z],rt=e[et+\"ref\"]||et,nt=e[\"a\"+et+\"ref\"],it={x:v,y:x}[et],at=(I+(\"x\"===et?0:-90))*Math.PI/180,ot=B*Math.cos(at),st=q*Math.sin(at),lt=Math.abs(ot)+Math.abs(st),ct=e[et+\"anchor\"],ut=e[et+\"shift\"]*(\"x\"===et?1:-1),ft=L[et],ht=l.getRefType(rt);if(it&&\"domain\"!==ht){var pt=it.r2fraction(e[et]);(pt<0||pt>1)&&(nt===rt?((pt=it.r2fraction(e[\"a\"+et]))<0||pt>1)&&(W=!0):W=!0),J=it._offset+it.r2p(e[et]),$=.5}else{var dt=\"domain\"===ht;\"x\"===et?(Q=e[et],J=dt?it._offset+it._length*Q:J=T.l+T.w*Q):(Q=1-e[et],J=dt?it._offset+it._length*Q:J=T.t+T.h*Q),$=e.showarrow?.5:Q}if(e.showarrow){ft.head=J;var gt=e[\"a\"+et];if(tt=ot*H(.5,e.xanchor)-st*H(.5,e.yanchor),nt===rt){var mt=l.getRefType(nt);\"domain\"===mt?(\"y\"===et&&(gt=1-gt),ft.tail=it._offset+it._length*gt):\"paper\"===mt?\"y\"===et?(gt=1-gt,ft.tail=T.t+T.h*gt):ft.tail=T.l+T.w*gt:ft.tail=it._offset+it.r2p(gt),K=tt}else ft.tail=J+gt,K=tt+gt;ft.text=ft.tail+tt;var vt=w[\"x\"===et?\"width\":\"height\"];if(\"paper\"===rt&&(ft.head=o.constrain(ft.head,1,vt-1)),\"pixel\"===nt){var yt=-Math.max(ft.tail-3,ft.text),xt=Math.min(ft.tail+3,ft.text)-vt;yt>0?(ft.tail+=yt,ft.text+=yt):xt>0&&(ft.tail-=xt,ft.text-=xt)}ft.tail+=ut,ft.head+=ut}else K=tt=lt*H($,ct),ft.text=J+tt;ft.text+=ut,tt+=ut,K+=ut,e[\"_\"+et+\"padplus\"]=lt/2+K,e[\"_\"+et+\"padminus\"]=lt/2-K,e[\"_\"+et+\"size\"]=lt,e[\"_\"+et+\"shift\"]=tt}if(W)R.remove();else{var bt=0,_t=0;if(\"left\"!==e.align&&(bt=(M-b)*(\"center\"===e.align?.5:1)),\"top\"!==e.valign&&(_t=(D-_)*(\"middle\"===e.valign?.5:1)),f)n.select(\"svg\").attr({x:N+bt-1,y:N+_t}).call(u.setClipUrl,U?C:null,t);else{var wt=N+_t-g.top,Tt=N+bt-g.left;G.call(h.positionText,Tt,wt).call(u.setClipUrl,U?C:null,t)}V.select(\"rect\").call(u.setRect,N,N,M,D),j.call(u.setRect,F/2,F/2,B-F,q-F),R.call(u.setTranslate,Math.round(L.x.text-B/2),Math.round(L.y.text-q/2)),z.attr({transform:\"rotate(\"+I+\",\"+L.x.text+\",\"+L.y.text+\")\"});var kt,Mt=function(r,n){P.selectAll(\".annotation-arrow-g\").remove();var l=L.x.head,f=L.y.head,h=L.x.tail+r,p=L.y.tail+n,g=L.x.text+r,b=L.y.text+n,_=o.rotationXYMatrix(I,g,b),w=o.apply2DTransform(_),M=o.apply2DTransform2(_),C=+j.attr(\"width\"),O=+j.attr(\"height\"),D=g-.5*C,F=D+C,B=b-.5*O,N=B+O,U=[[D,B,D,N],[D,N,F,N],[F,N,F,B],[F,B,D,B]].map(M);if(!U.reduce((function(t,e){return t^!!o.segmentsIntersect(l,f,l+1e6,f+1e6,e[0],e[1],e[2],e[3])}),!1)){U.forEach((function(t){var e=o.segmentsIntersect(h,p,l,f,t[0],t[1],t[2],t[3]);e&&(h=e.x,p=e.y)}));var V=e.arrowwidth,q=e.arrowcolor,H=e.arrowside,G=P.append(\"g\").style({opacity:c.opacity(q)}).classed(\"annotation-arrow-g\",!0),Y=G.append(\"path\").attr(\"d\",\"M\"+h+\",\"+p+\"L\"+l+\",\"+f).style(\"stroke-width\",V+\"px\").call(c.stroke,c.rgb(q));if(m(Y,H,e),k.annotationPosition&&Y.node().parentNode&&!a){var W=l,X=f;if(e.standoff){var Z=Math.sqrt(Math.pow(l-h,2)+Math.pow(f-p,2));W+=e.standoff*(h-l)/Z,X+=e.standoff*(p-f)/Z}var J,K,Q=G.append(\"path\").classed(\"annotation-arrow\",!0).classed(\"anndrag\",!0).classed(\"cursor-move\",!0).attr({d:\"M3,3H-3V-3H3ZM0,0L\"+(h-W)+\",\"+(p-X),transform:s(W,X)}).style(\"stroke-width\",V+6+\"px\").call(c.stroke,\"rgba(0,0,0,0)\").call(c.fill,\"rgba(0,0,0,0)\");d.init({element:Q.node(),gd:t,prepFn:function(){var t=u.getTranslate(R);J=t.x,K=t.y,v&&v.autorange&&A(v._name+\".autorange\",!0),x&&x.autorange&&A(x._name+\".autorange\",!0)},moveFn:function(t,r){var n=w(J,K),i=n[0]+t,a=n[1]+r;R.call(u.setTranslate,i,a),S(\"x\",y(v,t,\"x\",T,e)),S(\"y\",y(x,r,\"y\",T,e)),e.axref===e.xref&&S(\"ax\",y(v,t,\"ax\",T,e)),e.ayref===e.yref&&S(\"ay\",y(x,r,\"ay\",T,e)),G.attr(\"transform\",s(t,r)),z.attr({transform:\"rotate(\"+I+\",\"+i+\",\"+a+\")\"})},doneFn:function(){i.call(\"_guiRelayout\",t,E());var e=document.querySelector(\".js-notes-box-panel\");e&&e.redraw(e.selectedObj)}})}}};if(e.showarrow&&Mt(0,0),O)d.init({element:R.node(),gd:t,prepFn:function(){kt=z.attr(\"transform\")},moveFn:function(t,r){var n=\"pointer\";if(e.showarrow)e.axref===e.xref?S(\"ax\",y(v,t,\"ax\",T,e)):S(\"ax\",e.ax+t),e.ayref===e.yref?S(\"ay\",y(x,r,\"ay\",T.w,e)):S(\"ay\",e.ay+r),Mt(t,r);else{if(a)return;var i,o;if(v)i=y(v,t,\"x\",T,e);else{var l=e._xsize/T.w,c=e.x+(e._xshift-e.xshift)/T.w-l/2;i=d.align(c+t/T.w,l,0,1,e.xanchor)}if(x)o=y(x,r,\"y\",T,e);else{var u=e._ysize/T.h,f=e.y-(e._yshift+e.yshift)/T.h-u/2;o=d.align(f-r/T.h,u,0,1,e.yanchor)}S(\"x\",i),S(\"y\",o),v&&x||(n=d.getCursor(v?.5:i,x?.5:o,e.xanchor,e.yanchor))}z.attr({transform:s(t,r)+kt}),p(R,n)},clickFn:function(r,n){e.captureevents&&t.emit(\"plotly_clickannotation\",Y(n))},doneFn:function(){p(R),i.call(\"_guiRelayout\",t,E());var e=document.querySelector(\".js-notes-box-panel\");e&&e.redraw(e.selectedObj)}})}}}e.exports={draw:function(t){var e=t._fullLayout;e._infolayer.selectAll(\".annotation\").remove();for(var r=0;r<e.annotations.length;r++)e.annotations[r].visible&&v(t,r);return a.previousPromises(t)},drawOne:v,drawRaw:x}},{\"../../lib\":778,\"../../lib/setcursor\":799,\"../../lib/svg_text_utils\":803,\"../../plot_api/plot_template\":817,\"../../plots/cartesian/axes\":828,\"../../plots/plots\":891,\"../../registry\":911,\"../color\":643,\"../dragelement\":662,\"../drawing\":665,\"../fx\":683,\"./draw_arrow_head\":633,d3:169}],633:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../color\"),a=t(\"./arrow_paths\"),o=t(\"../../lib\"),s=o.strScale,l=o.strRotate,c=o.strTranslate;e.exports=function(t,e,r){var o,u,f,h,p=t.node(),d=a[r.arrowhead||0],g=a[r.startarrowhead||0],m=(r.arrowwidth||1)*(r.arrowsize||1),v=(r.arrowwidth||1)*(r.startarrowsize||1),y=e.indexOf(\"start\")>=0,x=e.indexOf(\"end\")>=0,b=d.backoff*m+r.standoff,_=g.backoff*v+r.startstandoff;if(\"line\"===p.nodeName){o={x:+t.attr(\"x1\"),y:+t.attr(\"y1\")},u={x:+t.attr(\"x2\"),y:+t.attr(\"y2\")};var w=o.x-u.x,T=o.y-u.y;if(h=(f=Math.atan2(T,w))+Math.PI,b&&_&&b+_>Math.sqrt(w*w+T*T))return void O();if(b){if(b*b>w*w+T*T)return void O();var k=b*Math.cos(f),M=b*Math.sin(f);u.x+=k,u.y+=M,t.attr({x2:u.x,y2:u.y})}if(_){if(_*_>w*w+T*T)return void O();var A=_*Math.cos(f),S=_*Math.sin(f);o.x-=A,o.y-=S,t.attr({x1:o.x,y1:o.y})}}else if(\"path\"===p.nodeName){var E=p.getTotalLength(),C=\"\";if(E<b+_)return void O();var L=p.getPointAtLength(0),I=p.getPointAtLength(.1);f=Math.atan2(L.y-I.y,L.x-I.x),o=p.getPointAtLength(Math.min(_,E)),C=\"0px,\"+_+\"px,\";var P=p.getPointAtLength(E),z=p.getPointAtLength(E-.1);h=Math.atan2(P.y-z.y,P.x-z.x),u=p.getPointAtLength(Math.max(0,E-b)),C+=E-(C?_+b:b)+\"px,\"+E+\"px\",t.style(\"stroke-dasharray\",C)}function O(){t.style(\"stroke-dasharray\",\"0px,100px\")}function D(e,a,o,u){e.path&&(e.noRotate&&(o=0),n.select(p.parentNode).append(\"path\").attr({class:t.attr(\"class\"),d:e.path,transform:c(a.x,a.y)+l(180*o/Math.PI)+s(u)}).style({fill:i.rgb(r.arrowcolor),\"stroke-width\":0}))}y&&D(g,o,f,v),x&&D(d,u,h,m)}},{\"../../lib\":778,\"../color\":643,\"./arrow_paths\":625,d3:169}],634:[function(t,e,r){\"use strict\";var n=t(\"./draw\"),i=t(\"./click\");e.exports={moduleType:\"component\",name:\"annotations\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),includeBasePlot:t(\"../../plots/cartesian/include_components\")(\"annotations\"),calcAutorange:t(\"./calc_autorange\"),draw:n.draw,drawOne:n.drawOne,drawRaw:n.drawRaw,hasClickToShow:i.hasClickToShow,onClick:i.onClick,convertCoords:t(\"./convert_coords\")}},{\"../../plots/cartesian/include_components\":840,\"./attributes\":626,\"./calc_autorange\":627,\"./click\":628,\"./convert_coords\":630,\"./defaults\":631,\"./draw\":632}],635:[function(t,e,r){\"use strict\";var n=t(\"../annotations/attributes\"),i=t(\"../../plot_api/edit_types\").overrideAll,a=t(\"../../plot_api/plot_template\").templatedArray;e.exports=i(a(\"annotation\",{visible:n.visible,x:{valType:\"any\"},y:{valType:\"any\"},z:{valType:\"any\"},ax:{valType:\"number\"},ay:{valType:\"number\"},xanchor:n.xanchor,xshift:n.xshift,yanchor:n.yanchor,yshift:n.yshift,text:n.text,textangle:n.textangle,font:n.font,width:n.width,height:n.height,opacity:n.opacity,align:n.align,valign:n.valign,bgcolor:n.bgcolor,bordercolor:n.bordercolor,borderpad:n.borderpad,borderwidth:n.borderwidth,showarrow:n.showarrow,arrowcolor:n.arrowcolor,arrowhead:n.arrowhead,startarrowhead:n.startarrowhead,arrowside:n.arrowside,arrowsize:n.arrowsize,startarrowsize:n.startarrowsize,arrowwidth:n.arrowwidth,standoff:n.standoff,startstandoff:n.startstandoff,hovertext:n.hovertext,hoverlabel:n.hoverlabel,captureevents:n.captureevents}),\"calc\",\"from-root\")},{\"../../plot_api/edit_types\":810,\"../../plot_api/plot_template\":817,\"../annotations/attributes\":626}],636:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\");function a(t,e){var r=e.fullSceneLayout.domain,a=e.fullLayout._size,o={pdata:null,type:\"linear\",autorange:!1,range:[-1/0,1/0]};t._xa={},n.extendFlat(t._xa,o),i.setConvert(t._xa),t._xa._offset=a.l+r.x[0]*a.w,t._xa.l2p=function(){return.5*(1+t._pdata[0]/t._pdata[3])*a.w*(r.x[1]-r.x[0])},t._ya={},n.extendFlat(t._ya,o),i.setConvert(t._ya),t._ya._offset=a.t+(1-r.y[1])*a.h,t._ya.l2p=function(){return.5*(1-t._pdata[1]/t._pdata[3])*a.h*(r.y[1]-r.y[0])}}e.exports=function(t){for(var e=t.fullSceneLayout.annotations,r=0;r<e.length;r++)a(e[r],t);t.fullLayout._infolayer.selectAll(\".annotation-\"+t.id).remove()}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828}],637:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../plots/array_container_defaults\"),o=t(\"../annotations/common_defaults\"),s=t(\"./attributes\");function l(t,e,r,a){function l(r,i){return n.coerce(t,e,s,r,i)}function c(t){var n=t+\"axis\",a={_fullLayout:{}};return a._fullLayout[n]=r[n],i.coercePosition(e,a,l,t,t,.5)}l(\"visible\")&&(o(t,e,a.fullLayout,l),c(\"x\"),c(\"y\"),c(\"z\"),n.noneOrAll(t,e,[\"x\",\"y\",\"z\"]),e.xref=\"x\",e.yref=\"y\",e.zref=\"z\",l(\"xanchor\"),l(\"yanchor\"),l(\"xshift\"),l(\"yshift\"),e.showarrow&&(e.axref=\"pixel\",e.ayref=\"pixel\",l(\"ax\",-10),l(\"ay\",-30),n.noneOrAll(t,e,[\"ax\",\"ay\"])))}e.exports=function(t,e,r){a(t,e,{name:\"annotations\",handleItemDefaults:l,fullLayout:r.fullLayout})}},{\"../../lib\":778,\"../../plots/array_container_defaults\":823,\"../../plots/cartesian/axes\":828,\"../annotations/common_defaults\":629,\"./attributes\":635}],638:[function(t,e,r){\"use strict\";var n=t(\"../annotations/draw\").drawRaw,i=t(\"../../plots/gl3d/project\"),a=[\"x\",\"y\",\"z\"];e.exports=function(t){for(var e=t.fullSceneLayout,r=t.dataScale,o=e.annotations,s=0;s<o.length;s++){for(var l=o[s],c=!1,u=0;u<3;u++){var f=a[u],h=l[f],p=e[f+\"axis\"].r2fraction(h);if(p<0||p>1){c=!0;break}}c?t.fullLayout._infolayer.select(\".annotation-\"+t.id+'[data-index=\"'+s+'\"]').remove():(l._pdata=i(t.glplot.cameraParams,[e.xaxis.r2l(l.x)*r[0],e.yaxis.r2l(l.y)*r[1],e.zaxis.r2l(l.z)*r[2]]),n(t.graphDiv,l,s,t.id,l._xa,l._ya))}}},{\"../../plots/gl3d/project\":879,\"../annotations/draw\":632}],639:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\");e.exports={moduleType:\"component\",name:\"annotations3d\",schema:{subplots:{scene:{annotations:t(\"./attributes\")}}},layoutAttributes:t(\"./attributes\"),handleDefaults:t(\"./defaults\"),includeBasePlot:function(t,e){var r=n.subplotsRegistry.gl3d;if(!r)return;for(var a=r.attrRegex,o=Object.keys(t),s=0;s<o.length;s++){var l=o[s];a.test(l)&&(t[l].annotations||[]).length&&(i.pushUnique(e._basePlotModules,r),i.pushUnique(e._subplots.gl3d,l))}},convert:t(\"./convert\"),draw:t(\"./draw\")}},{\"../../lib\":778,\"../../registry\":911,\"./attributes\":635,\"./convert\":636,\"./defaults\":637,\"./draw\":638}],640:[function(t,e,r){\"use strict\";e.exports=t(\"world-calendars/dist/main\"),t(\"world-calendars/dist/plus\"),t(\"world-calendars/dist/calendars/chinese\"),t(\"world-calendars/dist/calendars/coptic\"),t(\"world-calendars/dist/calendars/discworld\"),t(\"world-calendars/dist/calendars/ethiopian\"),t(\"world-calendars/dist/calendars/hebrew\"),t(\"world-calendars/dist/calendars/islamic\"),t(\"world-calendars/dist/calendars/julian\"),t(\"world-calendars/dist/calendars/mayan\"),t(\"world-calendars/dist/calendars/nanakshahi\"),t(\"world-calendars/dist/calendars/nepali\"),t(\"world-calendars/dist/calendars/persian\"),t(\"world-calendars/dist/calendars/taiwan\"),t(\"world-calendars/dist/calendars/thai\"),t(\"world-calendars/dist/calendars/ummalqura\")},{\"world-calendars/dist/calendars/chinese\":607,\"world-calendars/dist/calendars/coptic\":608,\"world-calendars/dist/calendars/discworld\":609,\"world-calendars/dist/calendars/ethiopian\":610,\"world-calendars/dist/calendars/hebrew\":611,\"world-calendars/dist/calendars/islamic\":612,\"world-calendars/dist/calendars/julian\":613,\"world-calendars/dist/calendars/mayan\":614,\"world-calendars/dist/calendars/nanakshahi\":615,\"world-calendars/dist/calendars/nepali\":616,\"world-calendars/dist/calendars/persian\":617,\"world-calendars/dist/calendars/taiwan\":618,\"world-calendars/dist/calendars/thai\":619,\"world-calendars/dist/calendars/ummalqura\":620,\"world-calendars/dist/main\":621,\"world-calendars/dist/plus\":622}],641:[function(t,e,r){\"use strict\";var n=t(\"./calendars\"),i=t(\"../../lib\"),a=t(\"../../constants/numerical\"),o=a.EPOCHJD,s=a.ONEDAY,l={valType:\"enumerated\",values:Object.keys(n.calendars),editType:\"calc\",dflt:\"gregorian\"},c=function(t,e,r,n){var a={};return a[r]=l,i.coerce(t,e,a,r,n)},u={d:{0:\"dd\",\"-\":\"d\"},e:{0:\"d\",\"-\":\"d\"},a:{0:\"D\",\"-\":\"D\"},A:{0:\"DD\",\"-\":\"DD\"},j:{0:\"oo\",\"-\":\"o\"},W:{0:\"ww\",\"-\":\"w\"},m:{0:\"mm\",\"-\":\"m\"},b:{0:\"M\",\"-\":\"M\"},B:{0:\"MM\",\"-\":\"MM\"},y:{0:\"yy\",\"-\":\"yy\"},Y:{0:\"yyyy\",\"-\":\"yyyy\"},U:\"##\",w:\"##\",c:{0:\"D M d %X yyyy\",\"-\":\"D M d %X yyyy\"},x:{0:\"mm/dd/yyyy\",\"-\":\"mm/dd/yyyy\"}};var f={};function h(t){var e=f[t];return e||(e=f[t]=n.instance(t))}function p(t){return i.extendFlat({},l,{description:t})}function d(t){return\"Sets the calendar system to use with `\"+t+\"` date data.\"}var g={xcalendar:p(d(\"x\"))},m=i.extendFlat({},g,{ycalendar:p(d(\"y\"))}),v=i.extendFlat({},m,{zcalendar:p(d(\"z\"))}),y=p([\"Sets the calendar system to use for `range` and `tick0`\",\"if this is a date axis. This does not set the calendar for\",\"interpreting data on this axis, that's specified in the trace\",\"or via the global `layout.calendar`\"].join(\" \"));e.exports={moduleType:\"component\",name:\"calendars\",schema:{traces:{scatter:m,bar:m,box:m,heatmap:m,contour:m,histogram:m,histogram2d:m,histogram2dcontour:m,scatter3d:v,surface:v,mesh3d:v,scattergl:m,ohlc:g,candlestick:g},layout:{calendar:p([\"Sets the default calendar system to use for interpreting and\",\"displaying dates throughout the plot.\"].join(\" \"))},subplots:{xaxis:{calendar:y},yaxis:{calendar:y},scene:{xaxis:{calendar:y},yaxis:{calendar:y},zaxis:{calendar:y}},polar:{radialaxis:{calendar:y}}},transforms:{filter:{valuecalendar:p([\"Sets the calendar system to use for `value`, if it is a date.\"].join(\" \")),targetcalendar:p([\"Sets the calendar system to use for `target`, if it is an\",\"array of dates. If `target` is a string (eg *x*) we use the\",\"corresponding trace attribute (eg `xcalendar`) if it exists,\",\"even if `targetcalendar` is provided.\"].join(\" \"))}}},layoutAttributes:l,handleDefaults:c,handleTraceDefaults:function(t,e,r,n){for(var i=0;i<r.length;i++)c(t,e,r[i]+\"calendar\",n.calendar)},CANONICAL_SUNDAY:{chinese:\"2000-01-02\",coptic:\"2000-01-03\",discworld:\"2000-01-03\",ethiopian:\"2000-01-05\",hebrew:\"5000-01-01\",islamic:\"1000-01-02\",julian:\"2000-01-03\",mayan:\"5000-01-01\",nanakshahi:\"1000-01-05\",nepali:\"2000-01-05\",persian:\"1000-01-01\",jalali:\"1000-01-01\",taiwan:\"1000-01-04\",thai:\"2000-01-04\",ummalqura:\"1400-01-06\"},CANONICAL_TICK:{chinese:\"2000-01-01\",coptic:\"2000-01-01\",discworld:\"2000-01-01\",ethiopian:\"2000-01-01\",hebrew:\"5000-01-01\",islamic:\"1000-01-01\",julian:\"2000-01-01\",mayan:\"5000-01-01\",nanakshahi:\"1000-01-01\",nepali:\"2000-01-01\",persian:\"1000-01-01\",jalali:\"1000-01-01\",taiwan:\"1000-01-01\",thai:\"2000-01-01\",ummalqura:\"1400-01-01\"},DFLTRANGE:{chinese:[\"2000-01-01\",\"2001-01-01\"],coptic:[\"1700-01-01\",\"1701-01-01\"],discworld:[\"1800-01-01\",\"1801-01-01\"],ethiopian:[\"2000-01-01\",\"2001-01-01\"],hebrew:[\"5700-01-01\",\"5701-01-01\"],islamic:[\"1400-01-01\",\"1401-01-01\"],julian:[\"2000-01-01\",\"2001-01-01\"],mayan:[\"5200-01-01\",\"5201-01-01\"],nanakshahi:[\"0500-01-01\",\"0501-01-01\"],nepali:[\"2000-01-01\",\"2001-01-01\"],persian:[\"1400-01-01\",\"1401-01-01\"],jalali:[\"1400-01-01\",\"1401-01-01\"],taiwan:[\"0100-01-01\",\"0101-01-01\"],thai:[\"2500-01-01\",\"2501-01-01\"],ummalqura:[\"1400-01-01\",\"1401-01-01\"]},getCal:h,worldCalFmt:function(t,e,r){for(var n,i,a,l,c,f=Math.floor((e+.05)/s)+o,p=h(r).fromJD(f),d=0;-1!==(d=t.indexOf(\"%\",d));)\"0\"===(n=t.charAt(d+1))||\"-\"===n||\"_\"===n?(a=3,i=t.charAt(d+2),\"_\"===n&&(n=\"-\")):(i=n,n=\"0\",a=2),(l=u[i])?(c=\"##\"===l?\"##\":p.formatDate(l[n]),t=t.substr(0,d)+c+t.substr(d+a),d+=c.length):d+=a;return t}}},{\"../../constants/numerical\":753,\"../../lib\":778,\"./calendars\":640}],642:[function(t,e,r){\"use strict\";r.defaults=[\"#1f77b4\",\"#ff7f0e\",\"#2ca02c\",\"#d62728\",\"#9467bd\",\"#8c564b\",\"#e377c2\",\"#7f7f7f\",\"#bcbd22\",\"#17becf\"],r.defaultLine=\"#444\",r.lightLine=\"#eee\",r.background=\"#fff\",r.borderLine=\"#BEC8D9\",r.lightFraction=1e3/11},{}],643:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\"),i=t(\"fast-isnumeric\"),a=e.exports={},o=t(\"./attributes\");a.defaults=o.defaults;var s=a.defaultLine=o.defaultLine;a.lightLine=o.lightLine;var l=a.background=o.background;function c(t){if(i(t)||\"string\"!=typeof t)return t;var e=t.trim();if(\"rgb\"!==e.substr(0,3))return t;var r=e.match(/^rgba?\\s*\\(([^()]*)\\)$/);if(!r)return t;var n=r[1].trim().split(/\\s*[\\s,]\\s*/),a=\"a\"===e.charAt(3)&&4===n.length;if(!a&&3!==n.length)return t;for(var o=0;o<n.length;o++){if(!n[o].length)return t;if(n[o]=Number(n[o]),!(n[o]>=0))return t;if(3===o)n[o]>1&&(n[o]=1);else if(n[o]>=1)return t}var s=Math.round(255*n[0])+\", \"+Math.round(255*n[1])+\", \"+Math.round(255*n[2]);return a?\"rgba(\"+s+\", \"+n[3]+\")\":\"rgb(\"+s+\")\"}a.tinyRGB=function(t){var e=t.toRgb();return\"rgb(\"+Math.round(e.r)+\", \"+Math.round(e.g)+\", \"+Math.round(e.b)+\")\"},a.rgb=function(t){return a.tinyRGB(n(t))},a.opacity=function(t){return t?n(t).getAlpha():0},a.addOpacity=function(t,e){var r=n(t).toRgb();return\"rgba(\"+Math.round(r.r)+\", \"+Math.round(r.g)+\", \"+Math.round(r.b)+\", \"+e+\")\"},a.combine=function(t,e){var r=n(t).toRgb();if(1===r.a)return n(t).toRgbString();var i=n(e||l).toRgb(),a=1===i.a?i:{r:255*(1-i.a)+i.r*i.a,g:255*(1-i.a)+i.g*i.a,b:255*(1-i.a)+i.b*i.a},o={r:a.r*(1-r.a)+r.r*r.a,g:a.g*(1-r.a)+r.g*r.a,b:a.b*(1-r.a)+r.b*r.a};return n(o).toRgbString()},a.contrast=function(t,e,r){var i=n(t);return 1!==i.getAlpha()&&(i=n(a.combine(t,l))),(i.isDark()?e?i.lighten(e):l:r?i.darken(r):s).toString()},a.stroke=function(t,e){var r=n(e);t.style({stroke:a.tinyRGB(r),\"stroke-opacity\":r.getAlpha()})},a.fill=function(t,e){var r=n(e);t.style({fill:a.tinyRGB(r),\"fill-opacity\":r.getAlpha()})},a.clean=function(t){if(t&&\"object\"==typeof t){var e,r,n,i,o=Object.keys(t);for(e=0;e<o.length;e++)if(i=t[n=o[e]],\"color\"===n.substr(n.length-5))if(Array.isArray(i))for(r=0;r<i.length;r++)i[r]=c(i[r]);else t[n]=c(i);else if(\"colorscale\"===n.substr(n.length-10)&&Array.isArray(i))for(r=0;r<i.length;r++)Array.isArray(i[r])&&(i[r][1]=c(i[r][1]));else if(Array.isArray(i)){var s=i[0];if(!Array.isArray(s)&&s&&\"object\"==typeof s)for(r=0;r<i.length;r++)a.clean(i[r])}else i&&\"object\"==typeof i&&a.clean(i)}}},{\"./attributes\":642,\"fast-isnumeric\":241,tinycolor2:576}],644:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/layout_attributes\"),i=t(\"../../plots/font_attributes\"),a=t(\"../../lib/extend\").extendFlat,o=t(\"../../plot_api/edit_types\").overrideAll;e.exports=o({thicknessmode:{valType:\"enumerated\",values:[\"fraction\",\"pixels\"],dflt:\"pixels\"},thickness:{valType:\"number\",min:0,dflt:30},lenmode:{valType:\"enumerated\",values:[\"fraction\",\"pixels\"],dflt:\"fraction\"},len:{valType:\"number\",min:0,dflt:1},x:{valType:\"number\",dflt:1.02,min:-2,max:3},xanchor:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"left\"},xpad:{valType:\"number\",min:0,dflt:10},y:{valType:\"number\",dflt:.5,min:-2,max:3},yanchor:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"middle\"},ypad:{valType:\"number\",min:0,dflt:10},outlinecolor:n.linecolor,outlinewidth:n.linewidth,bordercolor:n.linecolor,borderwidth:{valType:\"number\",min:0,dflt:0},bgcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\"},tickmode:n.tickmode,nticks:n.nticks,tick0:n.tick0,dtick:n.dtick,tickvals:n.tickvals,ticktext:n.ticktext,ticks:a({},n.ticks,{dflt:\"\"}),ticklabelposition:{valType:\"enumerated\",values:[\"outside\",\"inside\",\"outside top\",\"inside top\",\"outside bottom\",\"inside bottom\"],dflt:\"outside\"},ticklen:n.ticklen,tickwidth:n.tickwidth,tickcolor:n.tickcolor,showticklabels:n.showticklabels,tickfont:i({}),tickangle:n.tickangle,tickformat:n.tickformat,tickformatstops:n.tickformatstops,tickprefix:n.tickprefix,showtickprefix:n.showtickprefix,ticksuffix:n.ticksuffix,showticksuffix:n.showticksuffix,separatethousands:n.separatethousands,exponentformat:n.exponentformat,minexponent:n.minexponent,showexponent:n.showexponent,title:{text:{valType:\"string\"},font:i({}),side:{valType:\"enumerated\",values:[\"right\",\"top\",\"bottom\"],dflt:\"top\"}},_deprecated:{title:{valType:\"string\"},titlefont:i({}),titleside:{valType:\"enumerated\",values:[\"right\",\"top\",\"bottom\"],dflt:\"top\"}}},\"colorbars\",\"from-root\")},{\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plots/cartesian/layout_attributes\":842,\"../../plots/font_attributes\":856}],645:[function(t,e,r){\"use strict\";e.exports={cn:{colorbar:\"colorbar\",cbbg:\"cbbg\",cbfill:\"cbfill\",cbfills:\"cbfills\",cbline:\"cbline\",cblines:\"cblines\",cbaxis:\"cbaxis\",cbtitleunshift:\"cbtitleunshift\",cbtitle:\"cbtitle\",cboutline:\"cboutline\",crisp:\"crisp\",jsPlaceholder:\"js-placeholder\"}}},{}],646:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plot_api/plot_template\"),a=t(\"../../plots/cartesian/tick_value_defaults\"),o=t(\"../../plots/cartesian/tick_mark_defaults\"),s=t(\"../../plots/cartesian/tick_label_defaults\"),l=t(\"./attributes\");e.exports=function(t,e,r){var c=i.newContainer(e,\"colorbar\"),u=t.colorbar||{};function f(t,e){return n.coerce(u,c,l,t,e)}var h=f(\"thicknessmode\");f(\"thickness\",\"fraction\"===h?30/(r.width-r.margin.l-r.margin.r):30);var p=f(\"lenmode\");f(\"len\",\"fraction\"===p?1:r.height-r.margin.t-r.margin.b),f(\"x\"),f(\"xanchor\"),f(\"xpad\"),f(\"y\"),f(\"yanchor\"),f(\"ypad\"),n.noneOrAll(u,c,[\"x\",\"y\"]),f(\"outlinecolor\"),f(\"outlinewidth\"),f(\"bordercolor\"),f(\"borderwidth\"),f(\"bgcolor\");var d=f(\"ticklabelposition\");a(u,c,f,\"linear\");var g={outerTicks:!1,font:r.font};-1!==d.indexOf(\"inside\")&&(g.bgColor=\"black\"),s(u,c,f,\"linear\",g),o(u,c,f,\"linear\",g),f(\"title.text\",r._dfltTitle.colorbar),n.coerceFont(f,\"title.font\",r.font),f(\"title.side\")}},{\"../../lib\":778,\"../../plot_api/plot_template\":817,\"../../plots/cartesian/tick_label_defaults\":849,\"../../plots/cartesian/tick_mark_defaults\":850,\"../../plots/cartesian/tick_value_defaults\":851,\"./attributes\":644}],647:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"tinycolor2\"),a=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../plots/cartesian/axes\"),l=t(\"../dragelement\"),c=t(\"../../lib\"),u=c.strTranslate,f=t(\"../../lib/extend\").extendFlat,h=t(\"../../lib/setcursor\"),p=t(\"../drawing\"),d=t(\"../color\"),g=t(\"../titles\"),m=t(\"../../lib/svg_text_utils\"),v=t(\"../colorscale/helpers\").flipScale,y=t(\"../../plots/cartesian/axis_defaults\"),x=t(\"../../plots/cartesian/position_defaults\"),b=t(\"../../plots/cartesian/layout_attributes\"),_=t(\"../../constants/alignment\"),w=_.LINE_SPACING,T=_.FROM_TL,k=_.FROM_BR,M=t(\"./constants\").cn;e.exports={draw:function(t){var e=t._fullLayout._infolayer.selectAll(\"g.\"+M.colorbar).data(function(t){var e,r,n,i,a=t._fullLayout,o=t.calcdata,s=[];function l(t){return f(t,{_fillcolor:null,_line:{color:null,width:null,dash:null},_levels:{start:null,end:null,size:null},_filllevels:null,_fillgradient:null,_zrange:null})}function c(){\"function\"==typeof i.calc?i.calc(t,n,e):(e._fillgradient=r.reversescale?v(r.colorscale):r.colorscale,e._zrange=[r[i.min],r[i.max]])}for(var u=0;u<o.length;u++){var h=o[u],p=(n=h[0].trace)._module.colorbar;if(!0===n.visible&&p)for(var d=Array.isArray(p),g=d?p:[p],m=0;m<g.length;m++){var y=(i=g[m]).container;(r=y?n[y]:n)&&r.showscale&&((e=l(r.colorbar))._id=\"cb\"+n.uid+(d&&y?\"-\"+y:\"\"),e._traceIndex=n.index,e._propPrefix=(y?y+\".\":\"\")+\"colorbar.\",e._meta=n._meta,c(),s.push(e))}}for(var x in a._colorAxes)if((r=a[x]).showscale){var b=a._colorAxes[x];(e=l(r.colorbar))._id=\"cb\"+x,e._propPrefix=x+\".colorbar.\",e._meta=a._meta,i={min:\"cmin\",max:\"cmax\"},\"heatmap\"!==b[0]&&(n=b[1],i.calc=n._module.colorbar.calc),c(),s.push(e)}return s}(t),(function(t){return t._id}));e.enter().append(\"g\").attr(\"class\",(function(t){return t._id})).classed(M.colorbar,!0),e.each((function(e){var r=n.select(this);c.ensureSingle(r,\"rect\",M.cbbg),c.ensureSingle(r,\"g\",M.cbfills),c.ensureSingle(r,\"g\",M.cblines),c.ensureSingle(r,\"g\",M.cbaxis,(function(t){t.classed(M.crisp,!0)})),c.ensureSingle(r,\"g\",M.cbtitleunshift,(function(t){t.append(\"g\").classed(M.cbtitle,!0)})),c.ensureSingle(r,\"rect\",M.cboutline);var v=function(t,e,r){var o=r._fullLayout,l=o._size,h=e._fillcolor,v=e._line,_=e.title,A=_.side,S=e._zrange||n.extent((\"function\"==typeof h?h:v.color).domain()),E=\"function\"==typeof v.color?v.color:function(){return v.color},C=\"function\"==typeof h?h:function(){return h},L=e._levels,I=function(t,e,r){var n,i,a=e._levels,o=[],s=[],l=a.end+a.size/100,c=a.size,u=1.001*r[0]-.001*r[1],f=1.001*r[1]-.001*r[0];for(i=0;i<1e5&&(n=a.start+i*c,!(c>0?n>=l:n<=l));i++)n>u&&n<f&&o.push(n);if(e._fillgradient)s=[0];else if(\"function\"==typeof e._fillcolor){var h=e._filllevels;if(h)for(l=h.end+h.size/100,c=h.size,i=0;i<1e5&&(n=h.start+i*c,!(c>0?n>=l:n<=l));i++)n>r[0]&&n<r[1]&&s.push(n);else(s=o.map((function(t){return t-a.size/2}))).push(s[s.length-1]+a.size)}else e._fillcolor&&\"string\"==typeof e._fillcolor&&(s=[0]);a.size<0&&(o.reverse(),s.reverse());return{line:o,fill:s}}(0,e,S),P=I.fill,z=I.line,O=Math.round(e.thickness*(\"fraction\"===e.thicknessmode?l.w:1)),D=O/l.w,R=Math.round(e.len*(\"fraction\"===e.lenmode?l.h:1)),F=R/l.h,B=e.xpad/l.w,N=(e.borderwidth+e.outlinewidth)/2,j=e.ypad/l.h,U=Math.round(e.x*l.w+e.xpad),V=e.x-D*({middle:.5,right:1}[e.xanchor]||0),q=e.y+F*(({top:-.5,bottom:.5}[e.yanchor]||0)-.5),H=Math.round(l.h*(1-q)),G=H-R;e._lenFrac=F,e._thickFrac=D,e._xLeftFrac=V,e._yBottomFrac=q;var Y=e._axis=function(t,e,r){var n=t._fullLayout,i={type:\"linear\",range:r,tickmode:e.tickmode,nticks:e.nticks,tick0:e.tick0,dtick:e.dtick,tickvals:e.tickvals,ticktext:e.ticktext,ticks:e.ticks,ticklen:e.ticklen,tickwidth:e.tickwidth,tickcolor:e.tickcolor,showticklabels:e.showticklabels,ticklabelposition:e.ticklabelposition,tickfont:e.tickfont,tickangle:e.tickangle,tickformat:e.tickformat,exponentformat:e.exponentformat,minexponent:e.minexponent,separatethousands:e.separatethousands,showexponent:e.showexponent,showtickprefix:e.showtickprefix,tickprefix:e.tickprefix,showticksuffix:e.showticksuffix,ticksuffix:e.ticksuffix,title:e.title,showline:!0,anchor:\"free\",side:\"right\",position:1},a={type:\"linear\",_id:\"y\"+e._id},o={letter:\"y\",font:n.font,noHover:!0,noTickson:!0,noTicklabelmode:!0,calendar:n.calendar};function s(t,e){return c.coerce(i,a,b,t,e)}return y(i,a,s,o,n),x(i,a,s,o),a}(r,e,S);Y.position=e.x+B+D,-1!==[\"top\",\"bottom\"].indexOf(A)&&(Y.title.side=A,Y.titlex=e.x+B,Y.titley=q+(\"top\"===_.side?F-j:j));if(v.color&&\"auto\"===e.tickmode){Y.tickmode=\"linear\",Y.tick0=L.start;var W=L.size,X=c.constrain((H-G)/50,4,15)+1,Z=(S[1]-S[0])/((e.nticks||X)*W);if(Z>1){var J=Math.pow(10,Math.floor(Math.log(Z)/Math.LN10));W*=J*c.roundUp(Z/J,[2,5,10]),(Math.abs(L.start)/L.size+1e-6)%1<2e-6&&(Y.tick0=0)}Y.dtick=W}Y.domain=[q+j,q+F-j],Y.setScale(),t.attr(\"transform\",u(Math.round(l.l),Math.round(l.t)));var K,Q=t.select(\".\"+M.cbtitleunshift).attr(\"transform\",u(-Math.round(l.l),-Math.round(l.t))),$=t.select(\".\"+M.cbaxis),tt=0;function et(n,i){var a={propContainer:Y,propName:e._propPrefix+\"title\",traceIndex:e._traceIndex,_meta:e._meta,placeholder:o._dfltTitle.colorbar,containerGroup:t.select(\".\"+M.cbtitle)},s=\"h\"===n.charAt(0)?n.substr(1):\"h\"+n;t.selectAll(\".\"+s+\",.\"+s+\"-math-group\").remove(),g.draw(r,n,f(a,i||{}))}return c.syncOrAsync([a.previousPromises,function(){if(-1!==[\"top\",\"bottom\"].indexOf(A)){var t,r=l.l+(e.x+B)*l.w,n=Y.title.font.size;t=\"top\"===A?(1-(q+F-j))*l.h+l.t+3+.75*n:(1-(q+j))*l.h+l.t-3-.25*n,et(Y._id+\"title\",{attributes:{x:r,y:t,\"text-anchor\":\"start\"}})}},function(){if(-1!==[\"top\",\"bottom\"].indexOf(A)){var a=t.select(\".\"+M.cbtitle),o=a.select(\"text\"),f=[-e.outlinewidth/2,e.outlinewidth/2],h=a.select(\".h\"+Y._id+\"title-math-group\").node(),d=15.6;if(o.node()&&(d=parseInt(o.node().style.fontSize,10)*w),h?(tt=p.bBox(h).height)>d&&(f[1]-=(tt-d)/2):o.node()&&!o.classed(M.jsPlaceholder)&&(tt=p.bBox(o.node()).height),tt){if(tt+=5,\"top\"===A)Y.domain[1]-=tt/l.h,f[1]*=-1;else{Y.domain[0]+=tt/l.h;var g=m.lineCount(o);f[1]+=(1-g)*d}a.attr(\"transform\",u(f[0],f[1])),Y.setScale()}}t.selectAll(\".\"+M.cbfills+\",.\"+M.cblines).attr(\"transform\",u(0,Math.round(l.h*(1-Y.domain[1])))),$.attr(\"transform\",u(0,Math.round(-l.t)));var y=t.select(\".\"+M.cbfills).selectAll(\"rect.\"+M.cbfill).attr(\"style\",\"\").data(P);y.enter().append(\"rect\").classed(M.cbfill,!0).style(\"stroke\",\"none\"),y.exit().remove();var x=S.map(Y.c2p).map(Math.round).sort((function(t,e){return t-e}));y.each((function(t,a){var o=[0===a?S[0]:(P[a]+P[a-1])/2,a===P.length-1?S[1]:(P[a]+P[a+1])/2].map(Y.c2p).map(Math.round);o[1]=c.constrain(o[1]+(o[1]>o[0])?1:-1,x[0],x[1]);var s=n.select(this).attr({x:U,width:Math.max(O,2),y:n.min(o),height:Math.max(n.max(o)-n.min(o),2)});if(e._fillgradient)p.gradient(s,r,e._id,\"vertical\",e._fillgradient,\"fill\");else{var l=C(t).replace(\"e-\",\"\");s.attr(\"fill\",i(l).toHexString())}}));var b=t.select(\".\"+M.cblines).selectAll(\"path.\"+M.cbline).data(v.color&&v.width?z:[]);b.enter().append(\"path\").classed(M.cbline,!0),b.exit().remove(),b.each((function(t){n.select(this).attr(\"d\",\"M\"+U+\",\"+(Math.round(Y.c2p(t))+v.width/2%1)+\"h\"+O).call(p.lineGroupStyle,v.width,E(t),v.dash)})),$.selectAll(\"g.\"+Y._id+\"tick,path\").remove();var _=U+O+(e.outlinewidth||0)/2-(\"outside\"===e.ticks?1:0),T=s.calcTicks(Y),k=s.getTickSigns(Y)[2];return s.drawTicks(r,Y,{vals:\"inside\"===Y.ticks?s.clipEnds(Y,T):T,layer:$,path:s.makeTickPath(Y,_,k),transFn:s.makeTransTickFn(Y)}),s.drawLabels(r,Y,{vals:T,layer:$,transFn:s.makeTransTickLabelFn(Y),labelFns:s.makeLabelFns(Y,_)})},function(){if(-1===[\"top\",\"bottom\"].indexOf(A)){var t=Y.title.font.size,e=Y._offset+Y._length/2,i=l.l+(Y.position||0)*l.w+(\"right\"===Y.side?10+t*(Y.showticklabels?1:.5):-10-t*(Y.showticklabels?.5:0));et(\"h\"+Y._id+\"title\",{avoid:{selection:n.select(r).selectAll(\"g.\"+Y._id+\"tick\"),side:A,offsetLeft:l.l,offsetTop:0,maxShift:o.width},attributes:{x:i,y:e,\"text-anchor\":\"middle\"},transform:{rotate:\"-90\",offset:0}})}},a.previousPromises,function(){var n=O+e.outlinewidth/2;if(-1===Y.ticklabelposition.indexOf(\"inside\")&&(n+=p.bBox($.node()).width),(K=Q.select(\"text\")).node()&&!K.classed(M.jsPlaceholder)){var i,o=Q.select(\".h\"+Y._id+\"title-math-group\").node();i=o&&-1!==[\"top\",\"bottom\"].indexOf(A)?p.bBox(o).width:p.bBox(Q.node()).right-U-l.l,n=Math.max(n,i)}var s=2*e.xpad+n+e.borderwidth+e.outlinewidth/2,c=H-G;t.select(\".\"+M.cbbg).attr({x:U-e.xpad-(e.borderwidth+e.outlinewidth)/2,y:G-N,width:Math.max(s,2),height:Math.max(c+2*N,2)}).call(d.fill,e.bgcolor).call(d.stroke,e.bordercolor).style(\"stroke-width\",e.borderwidth),t.selectAll(\".\"+M.cboutline).attr({x:U,y:G+e.ypad+(\"top\"===A?tt:0),width:Math.max(O,2),height:Math.max(c-2*e.ypad-tt,2)}).call(d.stroke,e.outlinecolor).style({fill:\"none\",\"stroke-width\":e.outlinewidth});var f=({center:.5,right:1}[e.xanchor]||0)*s;t.attr(\"transform\",u(l.l-f,l.t));var h={},g=T[e.yanchor],m=k[e.yanchor];\"pixels\"===e.lenmode?(h.y=e.y,h.t=c*g,h.b=c*m):(h.t=h.b=0,h.yt=e.y+e.len*g,h.yb=e.y-e.len*m);var v=T[e.xanchor],y=k[e.xanchor];if(\"pixels\"===e.thicknessmode)h.x=e.x,h.l=s*v,h.r=s*y;else{var x=s-O;h.l=x*v,h.r=x*y,h.xl=e.x-e.thickness*v,h.xr=e.x+e.thickness*y}a.autoMargin(r,e._id,h)}],r)}(r,e,t);v&&v.then&&(t._promises||[]).push(v),t._context.edits.colorbarPosition&&function(t,e,r){var n,i,a,s=r._fullLayout._size;l.init({element:t.node(),gd:r,prepFn:function(){n=t.attr(\"transform\"),h(t)},moveFn:function(r,o){t.attr(\"transform\",n+u(r,o)),i=l.align(e._xLeftFrac+r/s.w,e._thickFrac,0,1,e.xanchor),a=l.align(e._yBottomFrac-o/s.h,e._lenFrac,0,1,e.yanchor);var c=l.getCursor(i,a,e.xanchor,e.yanchor);h(t,c)},doneFn:function(){if(h(t),void 0!==i&&void 0!==a){var n={};n[e._propPrefix+\"x\"]=i,n[e._propPrefix+\"y\"]=a,void 0!==e._traceIndex?o.call(\"_guiRestyle\",r,n,e._traceIndex):o.call(\"_guiRelayout\",r,n)}}})}(r,e,t)})),e.exit().each((function(e){a.autoMargin(t,e._id)})).remove(),e.order()}}},{\"../../constants/alignment\":745,\"../../lib\":778,\"../../lib/extend\":768,\"../../lib/setcursor\":799,\"../../lib/svg_text_utils\":803,\"../../plots/cartesian/axes\":828,\"../../plots/cartesian/axis_defaults\":830,\"../../plots/cartesian/layout_attributes\":842,\"../../plots/cartesian/position_defaults\":845,\"../../plots/plots\":891,\"../../registry\":911,\"../color\":643,\"../colorscale/helpers\":654,\"../dragelement\":662,\"../drawing\":665,\"../titles\":738,\"./constants\":645,d3:169,tinycolor2:576}],648:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t){return n.isPlainObject(t.colorbar)}},{\"../../lib\":778}],649:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"colorbar\",attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),draw:t(\"./draw\").draw,hasColorbar:t(\"./has_colorbar\")}},{\"./attributes\":644,\"./defaults\":646,\"./draw\":647,\"./has_colorbar\":648}],650:[function(t,e,r){\"use strict\";var n=t(\"../colorbar/attributes\"),i=t(\"../../lib/regex\").counter,a=t(\"./scales.js\").scales;Object.keys(a);function o(t){return\"`\"+t+\"`\"}e.exports=function(t,e){t=t||\"\";var r,s=(e=e||{}).cLetter||\"c\",l=(\"onlyIfNumerical\"in e?e.onlyIfNumerical:Boolean(t),\"noScale\"in e?e.noScale:\"marker.line\"===t),c=\"showScaleDflt\"in e?e.showScaleDflt:\"z\"===s,u=\"string\"==typeof e.colorscaleDflt?a[e.colorscaleDflt]:null,f=e.editTypeOverride||\"\",h=t?t+\".\":\"\";\"colorAttr\"in e?(r=e.colorAttr,e.colorAttr):o(h+(r={z:\"z\",c:\"color\"}[s]));var p=s+\"auto\",d=s+\"min\",g=s+\"max\",m=s+\"mid\",v=(o(h+p),o(h+d),o(h+g),{});v[d]=v[g]=void 0;var y={};y[p]=!1;var x={};return\"color\"===r&&(x.color={valType:\"color\",arrayOk:!0,editType:f||\"style\"},e.anim&&(x.color.anim=!0)),x[p]={valType:\"boolean\",dflt:!0,editType:\"calc\",impliedEdits:v},x[d]={valType:\"number\",dflt:null,editType:f||\"plot\",impliedEdits:y},x[g]={valType:\"number\",dflt:null,editType:f||\"plot\",impliedEdits:y},x[m]={valType:\"number\",dflt:null,editType:\"calc\",impliedEdits:v},x.colorscale={valType:\"colorscale\",editType:\"calc\",dflt:u,impliedEdits:{autocolorscale:!1}},x.autocolorscale={valType:\"boolean\",dflt:!1!==e.autoColorDflt,editType:\"calc\",impliedEdits:{colorscale:void 0}},x.reversescale={valType:\"boolean\",dflt:!1,editType:\"plot\"},l||(x.showscale={valType:\"boolean\",dflt:c,editType:\"calc\"},x.colorbar=n),e.noColorAxis||(x.coloraxis={valType:\"subplotid\",regex:i(\"coloraxis\"),dflt:null,editType:\"calc\"}),x}},{\"../../lib/regex\":795,\"../colorbar/attributes\":644,\"./scales.js\":658}],651:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"./helpers\").extractOpts;e.exports=function(t,e,r){var o,s=t._fullLayout,l=r.vals,c=r.containerStr,u=c?i.nestedProperty(e,c).get():e,f=a(u),h=!1!==f.auto,p=f.min,d=f.max,g=f.mid,m=function(){return i.aggNums(Math.min,null,l)},v=function(){return i.aggNums(Math.max,null,l)};(void 0===p?p=m():h&&(p=u._colorAx&&n(p)?Math.min(p,m()):m()),void 0===d?d=v():h&&(d=u._colorAx&&n(d)?Math.max(d,v()):v()),h&&void 0!==g&&(d-g>g-p?p=g-(d-g):d-g<g-p&&(d=g+(g-p))),p===d&&(p-=.5,d+=.5),f._sync(\"min\",p),f._sync(\"max\",d),f.autocolorscale)&&(o=p*d<0?s.colorscale.diverging:p>=0?s.colorscale.sequential:s.colorscale.sequentialminus,f._sync(\"colorscale\",o))}},{\"../../lib\":778,\"./helpers\":654,\"fast-isnumeric\":241}],652:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./helpers\").hasColorscale,a=t(\"./helpers\").extractOpts;e.exports=function(t,e){function r(t,e){var r=t[\"_\"+e];void 0!==r&&(t[e]=r)}function o(t,i){var o=i.container?n.nestedProperty(t,i.container).get():t;if(o)if(o.coloraxis)o._colorAx=e[o.coloraxis];else{var s=a(o),l=s.auto;(l||void 0===s.min)&&r(o,i.min),(l||void 0===s.max)&&r(o,i.max),s.autocolorscale&&r(o,\"colorscale\")}}for(var s=0;s<t.length;s++){var l=t[s],c=l._module.colorbar;if(c)if(Array.isArray(c))for(var u=0;u<c.length;u++)o(l,c[u]);else o(l,c);i(l,\"marker.line\")&&o(l,{container:\"marker.line\",min:\"cmin\",max:\"cmax\"})}for(var f in e._colorAxes)o(e[f],{min:\"cmin\",max:\"cmax\"})}},{\"../../lib\":778,\"./helpers\":654}],653:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../colorbar/has_colorbar\"),o=t(\"../colorbar/defaults\"),s=t(\"./scales\").isValid,l=t(\"../../registry\").traceIs;function c(t,e){var r=e.slice(0,e.length-1);return e?i.nestedProperty(t,r).get()||{}:t}e.exports=function t(e,r,u,f,h){var p=h.prefix,d=h.cLetter,g=\"_module\"in r,m=c(e,p),v=c(r,p),y=c(r._template||{},p)||{},x=function(){return delete e.coloraxis,delete r.coloraxis,t(e,r,u,f,h)};if(g){var b=u._colorAxes||{},_=f(p+\"coloraxis\");if(_){var w=l(r,\"contour\")&&i.nestedProperty(r,\"contours.coloring\").get()||\"heatmap\",T=b[_];return void(T?(T[2].push(x),T[0]!==w&&(T[0]=!1,i.warn([\"Ignoring coloraxis:\",_,\"setting\",\"as it is linked to incompatible colorscales.\"].join(\" \")))):b[_]=[w,r,[x]])}}var k=m[d+\"min\"],M=m[d+\"max\"],A=n(k)&&n(M)&&k<M;f(p+d+\"auto\",!A)?f(p+d+\"mid\"):(f(p+d+\"min\"),f(p+d+\"max\"));var S,E,C=m.colorscale,L=y.colorscale;(void 0!==C&&(S=!s(C)),void 0!==L&&(S=!s(L)),f(p+\"autocolorscale\",S),f(p+\"colorscale\"),f(p+\"reversescale\"),\"marker.line.\"!==p)&&(p&&g&&(E=a(m)),f(p+\"showscale\",E)&&(p&&y&&(v._template=y),o(m,v,u)))}},{\"../../lib\":778,\"../../registry\":911,\"../colorbar/defaults\":646,\"../colorbar/has_colorbar\":648,\"./scales\":658,\"fast-isnumeric\":241}],654:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"tinycolor2\"),a=t(\"fast-isnumeric\"),o=t(\"../../lib\"),s=t(\"../color\"),l=t(\"./scales\").isValid;var c=[\"showscale\",\"autocolorscale\",\"colorscale\",\"reversescale\",\"colorbar\"],u=[\"min\",\"max\",\"mid\",\"auto\"];function f(t){var e,r,n,i=t._colorAx,a=i||t,o={};for(r=0;r<c.length;r++)o[n=c[r]]=a[n];if(i)for(e=\"c\",r=0;r<u.length;r++)o[n=u[r]]=a[\"c\"+n];else{var s;for(r=0;r<u.length;r++)((s=\"c\"+(n=u[r]))in a||(s=\"z\"+n)in a)&&(o[n]=a[s]);e=s.charAt(0)}return o._sync=function(t,r){var n=-1!==u.indexOf(t)?e+t:t;a[n]=a[\"_\"+n]=r},o}function h(t){for(var e=f(t),r=e.min,n=e.max,i=e.reversescale?p(e.colorscale):e.colorscale,a=i.length,o=new Array(a),s=new Array(a),l=0;l<a;l++){var c=i[l];o[l]=r+c[0]*(n-r),s[l]=c[1]}return{domain:o,range:s}}function p(t){for(var e=t.length,r=new Array(e),n=e-1,i=0;n>=0;n--,i++){var a=t[n];r[i]=[1-a[0],a[1]]}return r}function d(t,e){e=e||{};for(var r=t.domain,o=t.range,l=o.length,c=new Array(l),u=0;u<l;u++){var f=i(o[u]).toRgb();c[u]=[f.r,f.g,f.b,f.a]}var h,p=n.scale.linear().domain(r).range(c).clamp(!0),d=e.noNumericCheck,m=e.returnArray;return(h=d&&m?p:d?function(t){return g(p(t))}:m?function(t){return a(t)?p(t):i(t).isValid()?t:s.defaultLine}:function(t){return a(t)?g(p(t)):i(t).isValid()?t:s.defaultLine}).domain=p.domain,h.range=function(){return o},h}function g(t){var e={r:t[0],g:t[1],b:t[2],a:t[3]};return i(e).toRgbString()}e.exports={hasColorscale:function(t,e,r){var n=e?o.nestedProperty(t,e).get()||{}:t,i=n[r||\"color\"],s=!1;if(o.isArrayOrTypedArray(i))for(var c=0;c<i.length;c++)if(a(i[c])){s=!0;break}return o.isPlainObject(n)&&(s||!0===n.showscale||a(n.cmin)&&a(n.cmax)||l(n.colorscale)||o.isPlainObject(n.colorbar))},extractOpts:f,extractScale:h,flipScale:p,makeColorScaleFunc:d,makeColorScaleFuncFromTrace:function(t,e){return d(h(t),e)}}},{\"../../lib\":778,\"../color\":643,\"./scales\":658,d3:169,\"fast-isnumeric\":241,tinycolor2:576}],655:[function(t,e,r){\"use strict\";var n=t(\"./scales\"),i=t(\"./helpers\");e.exports={moduleType:\"component\",name:\"colorscale\",attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyLayoutDefaults:t(\"./layout_defaults\"),handleDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"./cross_trace_defaults\"),calc:t(\"./calc\"),scales:n.scales,defaultScale:n.defaultScale,getScale:n.get,isValidScale:n.isValid,hasColorscale:i.hasColorscale,extractOpts:i.extractOpts,extractScale:i.extractScale,flipScale:i.flipScale,makeColorScaleFunc:i.makeColorScaleFunc,makeColorScaleFuncFromTrace:i.makeColorScaleFuncFromTrace}},{\"./attributes\":650,\"./calc\":651,\"./cross_trace_defaults\":652,\"./defaults\":653,\"./helpers\":654,\"./layout_attributes\":656,\"./layout_defaults\":657,\"./scales\":658}],656:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat,i=t(\"./attributes\"),a=t(\"./scales\").scales;e.exports={editType:\"calc\",colorscale:{editType:\"calc\",sequential:{valType:\"colorscale\",dflt:a.Reds,editType:\"calc\"},sequentialminus:{valType:\"colorscale\",dflt:a.Blues,editType:\"calc\"},diverging:{valType:\"colorscale\",dflt:a.RdBu,editType:\"calc\"}},coloraxis:n({_isSubplotObj:!0,editType:\"calc\"},i(\"\",{colorAttr:\"corresponding trace color array(s)\",noColorAxis:!0,showScaleDflt:!0}))}},{\"../../lib/extend\":768,\"./attributes\":650,\"./scales\":658}],657:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plot_api/plot_template\"),a=t(\"./layout_attributes\"),o=t(\"./defaults\");e.exports=function(t,e){function r(r,i){return n.coerce(t,e,a,r,i)}r(\"colorscale.sequential\"),r(\"colorscale.sequentialminus\"),r(\"colorscale.diverging\");var s,l,c=e._colorAxes;function u(t,e){return n.coerce(s,l,a.coloraxis,t,e)}for(var f in c){var h=c[f];if(h[0])s=t[f]||{},(l=i.newContainer(e,f,\"coloraxis\"))._name=f,o(s,l,e,u,{prefix:\"\",cLetter:\"c\"});else{for(var p=0;p<h[2].length;p++)h[2][p]();delete e._colorAxes[f]}}}},{\"../../lib\":778,\"../../plot_api/plot_template\":817,\"./defaults\":653,\"./layout_attributes\":656}],658:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\"),i={Greys:[[0,\"rgb(0,0,0)\"],[1,\"rgb(255,255,255)\"]],YlGnBu:[[0,\"rgb(8,29,88)\"],[.125,\"rgb(37,52,148)\"],[.25,\"rgb(34,94,168)\"],[.375,\"rgb(29,145,192)\"],[.5,\"rgb(65,182,196)\"],[.625,\"rgb(127,205,187)\"],[.75,\"rgb(199,233,180)\"],[.875,\"rgb(237,248,217)\"],[1,\"rgb(255,255,217)\"]],Greens:[[0,\"rgb(0,68,27)\"],[.125,\"rgb(0,109,44)\"],[.25,\"rgb(35,139,69)\"],[.375,\"rgb(65,171,93)\"],[.5,\"rgb(116,196,118)\"],[.625,\"rgb(161,217,155)\"],[.75,\"rgb(199,233,192)\"],[.875,\"rgb(229,245,224)\"],[1,\"rgb(247,252,245)\"]],YlOrRd:[[0,\"rgb(128,0,38)\"],[.125,\"rgb(189,0,38)\"],[.25,\"rgb(227,26,28)\"],[.375,\"rgb(252,78,42)\"],[.5,\"rgb(253,141,60)\"],[.625,\"rgb(254,178,76)\"],[.75,\"rgb(254,217,118)\"],[.875,\"rgb(255,237,160)\"],[1,\"rgb(255,255,204)\"]],Bluered:[[0,\"rgb(0,0,255)\"],[1,\"rgb(255,0,0)\"]],RdBu:[[0,\"rgb(5,10,172)\"],[.35,\"rgb(106,137,247)\"],[.5,\"rgb(190,190,190)\"],[.6,\"rgb(220,170,132)\"],[.7,\"rgb(230,145,90)\"],[1,\"rgb(178,10,28)\"]],Reds:[[0,\"rgb(220,220,220)\"],[.2,\"rgb(245,195,157)\"],[.4,\"rgb(245,160,105)\"],[1,\"rgb(178,10,28)\"]],Blues:[[0,\"rgb(5,10,172)\"],[.35,\"rgb(40,60,190)\"],[.5,\"rgb(70,100,245)\"],[.6,\"rgb(90,120,245)\"],[.7,\"rgb(106,137,247)\"],[1,\"rgb(220,220,220)\"]],Picnic:[[0,\"rgb(0,0,255)\"],[.1,\"rgb(51,153,255)\"],[.2,\"rgb(102,204,255)\"],[.3,\"rgb(153,204,255)\"],[.4,\"rgb(204,204,255)\"],[.5,\"rgb(255,255,255)\"],[.6,\"rgb(255,204,255)\"],[.7,\"rgb(255,153,255)\"],[.8,\"rgb(255,102,204)\"],[.9,\"rgb(255,102,102)\"],[1,\"rgb(255,0,0)\"]],Rainbow:[[0,\"rgb(150,0,90)\"],[.125,\"rgb(0,0,200)\"],[.25,\"rgb(0,25,255)\"],[.375,\"rgb(0,152,255)\"],[.5,\"rgb(44,255,150)\"],[.625,\"rgb(151,255,0)\"],[.75,\"rgb(255,234,0)\"],[.875,\"rgb(255,111,0)\"],[1,\"rgb(255,0,0)\"]],Portland:[[0,\"rgb(12,51,131)\"],[.25,\"rgb(10,136,186)\"],[.5,\"rgb(242,211,56)\"],[.75,\"rgb(242,143,56)\"],[1,\"rgb(217,30,30)\"]],Jet:[[0,\"rgb(0,0,131)\"],[.125,\"rgb(0,60,170)\"],[.375,\"rgb(5,255,255)\"],[.625,\"rgb(255,255,0)\"],[.875,\"rgb(250,0,0)\"],[1,\"rgb(128,0,0)\"]],Hot:[[0,\"rgb(0,0,0)\"],[.3,\"rgb(230,0,0)\"],[.6,\"rgb(255,210,0)\"],[1,\"rgb(255,255,255)\"]],Blackbody:[[0,\"rgb(0,0,0)\"],[.2,\"rgb(230,0,0)\"],[.4,\"rgb(230,210,0)\"],[.7,\"rgb(255,255,255)\"],[1,\"rgb(160,200,255)\"]],Earth:[[0,\"rgb(0,0,130)\"],[.1,\"rgb(0,180,180)\"],[.2,\"rgb(40,210,40)\"],[.4,\"rgb(230,230,50)\"],[.6,\"rgb(120,70,20)\"],[1,\"rgb(255,255,255)\"]],Electric:[[0,\"rgb(0,0,0)\"],[.15,\"rgb(30,0,100)\"],[.4,\"rgb(120,0,100)\"],[.6,\"rgb(160,90,0)\"],[.8,\"rgb(230,200,0)\"],[1,\"rgb(255,250,220)\"]],Viridis:[[0,\"#440154\"],[.06274509803921569,\"#48186a\"],[.12549019607843137,\"#472d7b\"],[.18823529411764706,\"#424086\"],[.25098039215686274,\"#3b528b\"],[.3137254901960784,\"#33638d\"],[.3764705882352941,\"#2c728e\"],[.4392156862745098,\"#26828e\"],[.5019607843137255,\"#21918c\"],[.5647058823529412,\"#1fa088\"],[.6274509803921569,\"#28ae80\"],[.6901960784313725,\"#3fbc73\"],[.7529411764705882,\"#5ec962\"],[.8156862745098039,\"#84d44b\"],[.8784313725490196,\"#addc30\"],[.9411764705882353,\"#d8e219\"],[1,\"#fde725\"]],Cividis:[[0,\"rgb(0,32,76)\"],[.058824,\"rgb(0,42,102)\"],[.117647,\"rgb(0,52,110)\"],[.176471,\"rgb(39,63,108)\"],[.235294,\"rgb(60,74,107)\"],[.294118,\"rgb(76,85,107)\"],[.352941,\"rgb(91,95,109)\"],[.411765,\"rgb(104,106,112)\"],[.470588,\"rgb(117,117,117)\"],[.529412,\"rgb(131,129,120)\"],[.588235,\"rgb(146,140,120)\"],[.647059,\"rgb(161,152,118)\"],[.705882,\"rgb(176,165,114)\"],[.764706,\"rgb(192,177,109)\"],[.823529,\"rgb(209,191,102)\"],[.882353,\"rgb(225,204,92)\"],[.941176,\"rgb(243,219,79)\"],[1,\"rgb(255,233,69)\"]]},a=i.RdBu;function o(t){var e=0;if(!Array.isArray(t)||t.length<2)return!1;if(!t[0]||!t[t.length-1])return!1;if(0!=+t[0][0]||1!=+t[t.length-1][0])return!1;for(var r=0;r<t.length;r++){var i=t[r];if(2!==i.length||+i[0]<e||!n(i[1]).isValid())return!1;e=+i[0]}return!0}e.exports={scales:i,defaultScale:a,get:function(t,e){if(e||(e=a),!t)return e;function r(){try{t=i[t]||JSON.parse(t)}catch(r){t=e}}return\"string\"==typeof t&&(r(),\"string\"==typeof t&&r()),o(t)?t:e},isValid:function(t){return void 0!==i[t]||o(t)}}},{tinycolor2:576}],659:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i){var a=(t-r)/(n-r),o=a+e/(n-r),s=(a+o)/2;return\"left\"===i||\"bottom\"===i?a:\"center\"===i||\"middle\"===i?s:\"right\"===i||\"top\"===i?o:a<2/3-s?a:o>4/3-s?o:s}},{}],660:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=[[\"sw-resize\",\"s-resize\",\"se-resize\"],[\"w-resize\",\"move\",\"e-resize\"],[\"nw-resize\",\"n-resize\",\"ne-resize\"]];e.exports=function(t,e,r,a){return t=\"left\"===r?0:\"center\"===r?1:\"right\"===r?2:n.constrain(Math.floor(3*t),0,2),e=\"bottom\"===a?0:\"middle\"===a?1:\"top\"===a?2:n.constrain(Math.floor(3*e),0,2),i[e][t]}},{\"../../lib\":778}],661:[function(t,e,r){\"use strict\";r.selectMode=function(t){return\"lasso\"===t||\"select\"===t},r.drawMode=function(t){return\"drawclosedpath\"===t||\"drawopenpath\"===t||\"drawline\"===t||\"drawrect\"===t||\"drawcircle\"===t},r.openMode=function(t){return\"drawline\"===t||\"drawopenpath\"===t},r.rectMode=function(t){return\"select\"===t||\"drawline\"===t||\"drawrect\"===t||\"drawcircle\"===t},r.freeMode=function(t){return\"lasso\"===t||\"drawclosedpath\"===t||\"drawopenpath\"===t},r.selectingOrDrawing=function(t){return r.freeMode(t)||r.rectMode(t)}},{}],662:[function(t,e,r){\"use strict\";var n=t(\"mouse-event-offset\"),i=t(\"has-hover\"),a=t(\"has-passive-events\"),o=t(\"../../lib\").removeElement,s=t(\"../../plots/cartesian/constants\"),l=e.exports={};l.align=t(\"./align\"),l.getCursor=t(\"./cursor\");var c=t(\"./unhover\");function u(){var t=document.createElement(\"div\");t.className=\"dragcover\";var e=t.style;return e.position=\"fixed\",e.left=0,e.right=0,e.top=0,e.bottom=0,e.zIndex=999999999,e.background=\"none\",document.body.appendChild(t),t}function f(t){return n(t.changedTouches?t.changedTouches[0]:t,document.body)}l.unhover=c.wrapped,l.unhoverRaw=c.raw,l.init=function(t){var e,r,n,c,h,p,d,g,m=t.gd,v=1,y=m._context.doubleClickDelay,x=t.element;m._mouseDownTime||(m._mouseDownTime=0),x.style.pointerEvents=\"all\",x.onmousedown=_,a?(x._ontouchstart&&x.removeEventListener(\"touchstart\",x._ontouchstart),x._ontouchstart=_,x.addEventListener(\"touchstart\",_,{passive:!1})):x.ontouchstart=_;var b=t.clampFn||function(t,e,r){return Math.abs(t)<r&&(t=0),Math.abs(e)<r&&(e=0),[t,e]};function _(a){m._dragged=!1,m._dragging=!0;var o=f(a);e=o[0],r=o[1],d=a.target,p=a,g=2===a.buttons||a.ctrlKey,\"undefined\"==typeof a.clientX&&\"undefined\"==typeof a.clientY&&(a.clientX=e,a.clientY=r),(n=(new Date).getTime())-m._mouseDownTime<y?v+=1:(v=1,m._mouseDownTime=n),t.prepFn&&t.prepFn(a,e,r),i&&!g?(h=u()).style.cursor=window.getComputedStyle(x).cursor:i||(h=document,c=window.getComputedStyle(document.documentElement).cursor,document.documentElement.style.cursor=window.getComputedStyle(x).cursor),document.addEventListener(\"mouseup\",T),document.addEventListener(\"touchend\",T),!1!==t.dragmode&&(a.preventDefault(),document.addEventListener(\"mousemove\",w),document.addEventListener(\"touchmove\",w,{passive:!1}))}function w(n){n.preventDefault();var i=f(n),a=t.minDrag||s.MINDRAG,o=b(i[0]-e,i[1]-r,a),c=o[0],u=o[1];(c||u)&&(m._dragged=!0,l.unhover(m)),m._dragged&&t.moveFn&&!g&&(m._dragdata={element:x,dx:c,dy:u},t.moveFn(c,u))}function T(e){if(delete m._dragdata,!1!==t.dragmode&&(e.preventDefault(),document.removeEventListener(\"mousemove\",w),document.removeEventListener(\"touchmove\",w)),document.removeEventListener(\"mouseup\",T),document.removeEventListener(\"touchend\",T),i?o(h):c&&(h.documentElement.style.cursor=c,c=null),m._dragging){if(m._dragging=!1,(new Date).getTime()-m._mouseDownTime>y&&(v=Math.max(v-1,1)),m._dragged)t.doneFn&&t.doneFn();else if(t.clickFn&&t.clickFn(v,p),!g){var r;try{r=new MouseEvent(\"click\",e)}catch(t){var n=f(e);(r=document.createEvent(\"MouseEvents\")).initMouseEvent(\"click\",e.bubbles,e.cancelable,e.view,e.detail,e.screenX,e.screenY,n[0],n[1],e.ctrlKey,e.altKey,e.shiftKey,e.metaKey,e.button,e.relatedTarget)}d.dispatchEvent(r)}m._dragging=!1,m._dragged=!1}else m._dragged=!1}},l.coverSlip=u},{\"../../lib\":778,\"../../plots/cartesian/constants\":834,\"./align\":659,\"./cursor\":660,\"./unhover\":663,\"has-hover\":440,\"has-passive-events\":441,\"mouse-event-offset\":484}],663:[function(t,e,r){\"use strict\";var n=t(\"../../lib/events\"),i=t(\"../../lib/throttle\"),a=t(\"../../lib/dom\").getGraphDiv,o=t(\"../fx/constants\"),s=e.exports={};s.wrapped=function(t,e,r){(t=a(t))._fullLayout&&i.clear(t._fullLayout._uid+o.HOVERID),s.raw(t,e,r)},s.raw=function(t,e){var r=t._fullLayout,i=t._hoverdata;e||(e={}),e.target&&!1===n.triggerHandler(t,\"plotly_beforehover\",e)||(r._hoverlayer.selectAll(\"g\").remove(),r._hoverlayer.selectAll(\"line\").remove(),r._hoverlayer.selectAll(\"circle\").remove(),t._hoverdata=void 0,e.target&&i&&t.emit(\"plotly_unhover\",{event:e,points:i}))}},{\"../../lib/dom\":766,\"../../lib/events\":767,\"../../lib/throttle\":804,\"../fx/constants\":677}],664:[function(t,e,r){\"use strict\";r.dash={valType:\"string\",values:[\"solid\",\"dot\",\"dash\",\"longdash\",\"dashdot\",\"longdashdot\"],dflt:\"solid\",editType:\"style\"}},{}],665:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"fast-isnumeric\"),a=t(\"tinycolor2\"),o=t(\"../../registry\"),s=t(\"../color\"),l=t(\"../colorscale\"),c=t(\"../../lib\"),u=c.strTranslate,f=t(\"../../lib/svg_text_utils\"),h=t(\"../../constants/xmlns_namespaces\"),p=t(\"../../constants/alignment\").LINE_SPACING,d=t(\"../../constants/interactions\").DESELECTDIM,g=t(\"../../traces/scatter/subtypes\"),m=t(\"../../traces/scatter/make_bubble_size_func\"),v=t(\"../../components/fx/helpers\").appendArrayPointValue,y=e.exports={};y.font=function(t,e,r,n){c.isPlainObject(e)&&(n=e.color,r=e.size,e=e.family),e&&t.style(\"font-family\",e),r+1&&t.style(\"font-size\",r+\"px\"),n&&t.call(s.fill,n)},y.setPosition=function(t,e,r){t.attr(\"x\",e).attr(\"y\",r)},y.setSize=function(t,e,r){t.attr(\"width\",e).attr(\"height\",r)},y.setRect=function(t,e,r,n,i){t.call(y.setPosition,e,r).call(y.setSize,n,i)},y.translatePoint=function(t,e,r,n){var a=r.c2p(t.x),o=n.c2p(t.y);return!!(i(a)&&i(o)&&e.node())&&(\"text\"===e.node().nodeName?e.attr(\"x\",a).attr(\"y\",o):e.attr(\"transform\",u(a,o)),!0)},y.translatePoints=function(t,e,r){t.each((function(t){var i=n.select(this);y.translatePoint(t,i,e,r)}))},y.hideOutsideRangePoint=function(t,e,r,n,i,a){e.attr(\"display\",r.isPtWithinRange(t,i)&&n.isPtWithinRange(t,a)?null:\"none\")},y.hideOutsideRangePoints=function(t,e){if(e._hasClipOnAxisFalse){var r=e.xaxis,i=e.yaxis;t.each((function(e){var a=e[0].trace,s=a.xcalendar,l=a.ycalendar,c=o.traceIs(a,\"bar-like\")?\".bartext\":\".point,.textpoint\";t.selectAll(c).each((function(t){y.hideOutsideRangePoint(t,n.select(this),r,i,s,l)}))}))}},y.crispRound=function(t,e,r){return e&&i(e)?t._context.staticPlot?e:e<1?1:Math.round(e):r||0},y.singleLineStyle=function(t,e,r,n,i){e.style(\"fill\",\"none\");var a=(((t||[])[0]||{}).trace||{}).line||{},o=r||a.width||0,l=i||a.dash||\"\";s.stroke(e,n||a.color),y.dashLine(e,l,o)},y.lineGroupStyle=function(t,e,r,i){t.style(\"fill\",\"none\").each((function(t){var a=(((t||[])[0]||{}).trace||{}).line||{},o=e||a.width||0,l=i||a.dash||\"\";n.select(this).call(s.stroke,r||a.color).call(y.dashLine,l,o)}))},y.dashLine=function(t,e,r){r=+r||0,e=y.dashStyle(e,r),t.style({\"stroke-dasharray\":e,\"stroke-width\":r+\"px\"})},y.dashStyle=function(t,e){e=+e||1;var r=Math.max(e,3);return\"solid\"===t?t=\"\":\"dot\"===t?t=r+\"px,\"+r+\"px\":\"dash\"===t?t=3*r+\"px,\"+3*r+\"px\":\"longdash\"===t?t=5*r+\"px,\"+5*r+\"px\":\"dashdot\"===t?t=3*r+\"px,\"+r+\"px,\"+r+\"px,\"+r+\"px\":\"longdashdot\"===t&&(t=5*r+\"px,\"+2*r+\"px,\"+r+\"px,\"+2*r+\"px\"),t},y.singleFillStyle=function(t){var e=(((n.select(t.node()).data()[0]||[])[0]||{}).trace||{}).fillcolor;e&&t.call(s.fill,e)},y.fillGroupStyle=function(t){t.style(\"stroke-width\",0).each((function(t){var e=n.select(this);t[0].trace&&e.call(s.fill,t[0].trace.fillcolor)}))};var x=t(\"./symbol_defs\");y.symbolNames=[],y.symbolFuncs=[],y.symbolNeedLines={},y.symbolNoDot={},y.symbolNoFill={},y.symbolList=[],Object.keys(x).forEach((function(t){var e=x[t],r=e.n;y.symbolList.push(r,String(r),t,r+100,String(r+100),t+\"-open\"),y.symbolNames[r]=t,y.symbolFuncs[r]=e.f,e.needLine&&(y.symbolNeedLines[r]=!0),e.noDot?y.symbolNoDot[r]=!0:y.symbolList.push(r+200,String(r+200),t+\"-dot\",r+300,String(r+300),t+\"-open-dot\"),e.noFill&&(y.symbolNoFill[r]=!0)}));var b=y.symbolNames.length;function _(t,e){var r=t%100;return y.symbolFuncs[r](e)+(t>=200?\"M0,0.5L0.5,0L0,-0.5L-0.5,0Z\":\"\")}y.symbolNumber=function(t){if(i(t))t=+t;else if(\"string\"==typeof t){var e=0;t.indexOf(\"-open\")>0&&(e=100,t=t.replace(\"-open\",\"\")),t.indexOf(\"-dot\")>0&&(e+=200,t=t.replace(\"-dot\",\"\")),(t=y.symbolNames.indexOf(t))>=0&&(t+=e)}return t%100>=b||t>=400?0:Math.floor(Math.max(t,0))};var w={x1:1,x2:0,y1:0,y2:0},T={x1:0,x2:0,y1:1,y2:0},k=n.format(\"~.1f\"),M={radial:{node:\"radialGradient\"},radialreversed:{node:\"radialGradient\",reversed:!0},horizontal:{node:\"linearGradient\",attrs:w},horizontalreversed:{node:\"linearGradient\",attrs:w,reversed:!0},vertical:{node:\"linearGradient\",attrs:T},verticalreversed:{node:\"linearGradient\",attrs:T,reversed:!0}};y.gradient=function(t,e,r,i,o,l){for(var u=o.length,f=M[i],h=new Array(u),p=0;p<u;p++)f.reversed?h[u-1-p]=[k(100*(1-o[p][0])),o[p][1]]:h[p]=[k(100*o[p][0]),o[p][1]];var d=e._fullLayout,g=\"g\"+d._uid+\"-\"+r,m=d._defs.select(\".gradients\").selectAll(\"#\"+g).data([i+h.join(\";\")],c.identity);m.exit().remove(),m.enter().append(f.node).each((function(){var t=n.select(this);f.attrs&&t.attr(f.attrs),t.attr(\"id\",g);var e=t.selectAll(\"stop\").data(h);e.exit().remove(),e.enter().append(\"stop\"),e.each((function(t){var e=a(t[1]);n.select(this).attr({offset:t[0]+\"%\",\"stop-color\":s.tinyRGB(e),\"stop-opacity\":e.getAlpha()})}))})),t.style(l,O(g,e)).style(l+\"-opacity\",null);var v=function(t){return\".\"+t.attr(\"class\").replace(/\\s/g,\".\")},y=v(n.select(t.node().parentNode))+\">\"+v(t);d._gradientUrlQueryParts[y]=1},y.initGradients=function(t){var e=t._fullLayout;c.ensureSingle(e._defs,\"g\",\"gradients\").selectAll(\"linearGradient,radialGradient\").remove(),e._gradientUrlQueryParts={}},y.pointStyle=function(t,e,r){if(t.size()){var i=y.makePointStyleFns(e);t.each((function(t){y.singlePointStyle(t,n.select(this),e,i,r)}))}},y.singlePointStyle=function(t,e,r,n,i){var a=r.marker,o=a.line;if(e.style(\"opacity\",n.selectedOpacityFn?n.selectedOpacityFn(t):void 0===t.mo?a.opacity:t.mo),n.ms2mrc){var l;l=\"various\"===t.ms||\"various\"===a.size?3:n.ms2mrc(t.ms),t.mrc=l,n.selectedSizeFn&&(l=t.mrc=n.selectedSizeFn(t));var u=y.symbolNumber(t.mx||a.symbol)||0;t.om=u%200>=100,e.attr(\"d\",_(u,l))}var f,h,p,d=!1;if(t.so)p=o.outlierwidth,h=o.outliercolor,f=a.outliercolor;else{var g=(o||{}).width;p=(t.mlw+1||g+1||(t.trace?(t.trace.marker.line||{}).width:0)+1)-1||0,h=\"mlc\"in t?t.mlcc=n.lineScale(t.mlc):c.isArrayOrTypedArray(o.color)?s.defaultLine:o.color,c.isArrayOrTypedArray(a.color)&&(f=s.defaultLine,d=!0),f=\"mc\"in t?t.mcc=n.markerScale(t.mc):a.color||\"rgba(0,0,0,0)\",n.selectedColorFn&&(f=n.selectedColorFn(t))}if(t.om)e.call(s.stroke,f).style({\"stroke-width\":(p||1)+\"px\",fill:\"none\"});else{e.style(\"stroke-width\",(t.isBlank?0:p)+\"px\");var m=a.gradient,v=t.mgt;if(v?d=!0:v=m&&m.type,Array.isArray(v)&&(v=v[0],M[v]||(v=0)),v&&\"none\"!==v){var x=t.mgc;x?d=!0:x=m.color;var b=r.uid;d&&(b+=\"-\"+t.i),y.gradient(e,i,b,v,[[0,x],[1,f]],\"fill\")}else s.fill(e,f);p&&s.stroke(e,h)}},y.makePointStyleFns=function(t){var e={},r=t.marker;return e.markerScale=y.tryColorscale(r,\"\"),e.lineScale=y.tryColorscale(r,\"line\"),o.traceIs(t,\"symbols\")&&(e.ms2mrc=g.isBubble(t)?m(t):function(){return(r.size||6)/2}),t.selectedpoints&&c.extendFlat(e,y.makeSelectedPointStyleFns(t)),e},y.makeSelectedPointStyleFns=function(t){var e={},r=t.selected||{},n=t.unselected||{},i=t.marker||{},a=r.marker||{},s=n.marker||{},l=i.opacity,u=a.opacity,f=s.opacity,h=void 0!==u,p=void 0!==f;(c.isArrayOrTypedArray(l)||h||p)&&(e.selectedOpacityFn=function(t){var e=void 0===t.mo?i.opacity:t.mo;return t.selected?h?u:e:p?f:d*e});var g=i.color,m=a.color,v=s.color;(m||v)&&(e.selectedColorFn=function(t){var e=t.mcc||g;return t.selected?m||e:v||e});var y=i.size,x=a.size,b=s.size,_=void 0!==x,w=void 0!==b;return o.traceIs(t,\"symbols\")&&(_||w)&&(e.selectedSizeFn=function(t){var e=t.mrc||y/2;return t.selected?_?x/2:e:w?b/2:e}),e},y.makeSelectedTextStyleFns=function(t){var e={},r=t.selected||{},n=t.unselected||{},i=t.textfont||{},a=r.textfont||{},o=n.textfont||{},l=i.color,c=a.color,u=o.color;return e.selectedTextColorFn=function(t){var e=t.tc||l;return t.selected?c||e:u||(c?e:s.addOpacity(e,d))},e},y.selectedPointStyle=function(t,e){if(t.size()&&e.selectedpoints){var r=y.makeSelectedPointStyleFns(e),i=e.marker||{},a=[];r.selectedOpacityFn&&a.push((function(t,e){t.style(\"opacity\",r.selectedOpacityFn(e))})),r.selectedColorFn&&a.push((function(t,e){s.fill(t,r.selectedColorFn(e))})),r.selectedSizeFn&&a.push((function(t,e){var n=e.mx||i.symbol||0,a=r.selectedSizeFn(e);t.attr(\"d\",_(y.symbolNumber(n),a)),e.mrc2=a})),a.length&&t.each((function(t){for(var e=n.select(this),r=0;r<a.length;r++)a[r](e,t)}))}},y.tryColorscale=function(t,e){var r=e?c.nestedProperty(t,e).get():t;if(r){var n=r.color;if((r.colorscale||r._colorAx)&&c.isArrayOrTypedArray(n))return l.makeColorScaleFuncFromTrace(r)}return c.identity};var A={start:1,end:-1,middle:0,bottom:1,top:-1};function S(t,e,r,i){var a=n.select(t.node().parentNode),o=-1!==e.indexOf(\"top\")?\"top\":-1!==e.indexOf(\"bottom\")?\"bottom\":\"middle\",s=-1!==e.indexOf(\"left\")?\"end\":-1!==e.indexOf(\"right\")?\"start\":\"middle\",l=i?i/.8+1:0,c=(f.lineCount(t)-1)*p+1,h=A[s]*l,d=.75*r+A[o]*l+(A[o]-1)*c*r/2;t.attr(\"text-anchor\",s),a.attr(\"transform\",u(h,d))}function E(t,e){var r=t.ts||e.textfont.size;return i(r)&&r>0?r:0}y.textPointStyle=function(t,e,r){if(t.size()){var i;if(e.selectedpoints){var a=y.makeSelectedTextStyleFns(e);i=a.selectedTextColorFn}var o=e.texttemplate,s=r._fullLayout;t.each((function(t){var a=n.select(this),l=o?c.extractOption(t,e,\"txt\",\"texttemplate\"):c.extractOption(t,e,\"tx\",\"text\");if(l||0===l){if(o){var u=e._module.formatLabels?e._module.formatLabels(t,e,s):{},h={};v(h,e,t.i);var p=e._meta||{};l=c.texttemplateString(l,u,s._d3locale,h,t,p)}var d=t.tp||e.textposition,g=E(t,e),m=i?i(t):t.tc||e.textfont.color;a.call(y.font,t.tf||e.textfont.family,g,m).text(l).call(f.convertToTspans,r).call(S,d,g,t.mrc)}else a.remove()}))}},y.selectedTextStyle=function(t,e){if(t.size()&&e.selectedpoints){var r=y.makeSelectedTextStyleFns(e);t.each((function(t){var i=n.select(this),a=r.selectedTextColorFn(t),o=t.tp||e.textposition,l=E(t,e);s.fill(i,a),S(i,o,l,t.mrc2||t.mrc)}))}};function C(t,e,r,i){var a=t[0]-e[0],o=t[1]-e[1],s=r[0]-e[0],l=r[1]-e[1],c=Math.pow(a*a+o*o,.25),u=Math.pow(s*s+l*l,.25),f=(u*u*a-c*c*s)*i,h=(u*u*o-c*c*l)*i,p=3*u*(c+u),d=3*c*(c+u);return[[n.round(e[0]+(p&&f/p),2),n.round(e[1]+(p&&h/p),2)],[n.round(e[0]-(d&&f/d),2),n.round(e[1]-(d&&h/d),2)]]}y.smoothopen=function(t,e){if(t.length<3)return\"M\"+t.join(\"L\");var r,n=\"M\"+t[0],i=[];for(r=1;r<t.length-1;r++)i.push(C(t[r-1],t[r],t[r+1],e));for(n+=\"Q\"+i[0][0]+\" \"+t[1],r=2;r<t.length-1;r++)n+=\"C\"+i[r-2][1]+\" \"+i[r-1][0]+\" \"+t[r];return n+=\"Q\"+i[t.length-3][1]+\" \"+t[t.length-1]},y.smoothclosed=function(t,e){if(t.length<3)return\"M\"+t.join(\"L\")+\"Z\";var r,n=\"M\"+t[0],i=t.length-1,a=[C(t[i],t[0],t[1],e)];for(r=1;r<i;r++)a.push(C(t[r-1],t[r],t[r+1],e));for(a.push(C(t[i-1],t[i],t[0],e)),r=1;r<=i;r++)n+=\"C\"+a[r-1][1]+\" \"+a[r][0]+\" \"+t[r];return n+=\"C\"+a[i][1]+\" \"+a[0][0]+\" \"+t[0]+\"Z\"};var L={hv:function(t,e){return\"H\"+n.round(e[0],2)+\"V\"+n.round(e[1],2)},vh:function(t,e){return\"V\"+n.round(e[1],2)+\"H\"+n.round(e[0],2)},hvh:function(t,e){return\"H\"+n.round((t[0]+e[0])/2,2)+\"V\"+n.round(e[1],2)+\"H\"+n.round(e[0],2)},vhv:function(t,e){return\"V\"+n.round((t[1]+e[1])/2,2)+\"H\"+n.round(e[0],2)+\"V\"+n.round(e[1],2)}},I=function(t,e){return\"L\"+n.round(e[0],2)+\",\"+n.round(e[1],2)};y.steps=function(t){var e=L[t]||I;return function(t){for(var r=\"M\"+n.round(t[0][0],2)+\",\"+n.round(t[0][1],2),i=1;i<t.length;i++)r+=e(t[i-1],t[i]);return r}},y.makeTester=function(){var t=c.ensureSingleById(n.select(\"body\"),\"svg\",\"js-plotly-tester\",(function(t){t.attr(h.svgAttrs).style({position:\"absolute\",left:\"-10000px\",top:\"-10000px\",width:\"9000px\",height:\"9000px\",\"z-index\":\"1\"})})),e=c.ensureSingle(t,\"path\",\"js-reference-point\",(function(t){t.attr(\"d\",\"M0,0H1V1H0Z\").style({\"stroke-width\":0,fill:\"black\"})}));y.tester=t,y.testref=e},y.savedBBoxes={};var P=0;function z(t){var e=t.getAttribute(\"data-unformatted\");if(null!==e)return e+t.getAttribute(\"data-math\")+t.getAttribute(\"text-anchor\")+t.getAttribute(\"style\")}function O(t,e){if(!t)return null;var r=e._context;return\"url('\"+(r._exportedPlot?\"\":r._baseUrl||\"\")+\"#\"+t+\"')\"}y.bBox=function(t,e,r){var i,a,o;if(r||(r=z(t)),r){if(i=y.savedBBoxes[r])return c.extendFlat({},i)}else if(1===t.childNodes.length){var s=t.childNodes[0];if(r=z(s)){var l=+s.getAttribute(\"x\")||0,u=+s.getAttribute(\"y\")||0,h=s.getAttribute(\"transform\");if(!h){var p=y.bBox(s,!1,r);return l&&(p.left+=l,p.right+=l),u&&(p.top+=u,p.bottom+=u),p}if(r+=\"~\"+l+\"~\"+u+\"~\"+h,i=y.savedBBoxes[r])return c.extendFlat({},i)}}e?a=t:(o=y.tester.node(),a=t.cloneNode(!0),o.appendChild(a)),n.select(a).attr(\"transform\",null).call(f.positionText,0,0);var d=a.getBoundingClientRect(),g=y.testref.node().getBoundingClientRect();e||o.removeChild(a);var m={height:d.height,width:d.width,left:d.left-g.left,top:d.top-g.top,right:d.right-g.left,bottom:d.bottom-g.top};return P>=1e4&&(y.savedBBoxes={},P=0),r&&(y.savedBBoxes[r]=m),P++,c.extendFlat({},m)},y.setClipUrl=function(t,e,r){t.attr(\"clip-path\",O(e,r))},y.getTranslate=function(t){var e=(t[t.attr?\"attr\":\"getAttribute\"](\"transform\")||\"\").replace(/.*\\btranslate\\((-?\\d*\\.?\\d*)[^-\\d]*(-?\\d*\\.?\\d*)[^\\d].*/,(function(t,e,r){return[e,r].join(\" \")})).split(\" \");return{x:+e[0]||0,y:+e[1]||0}},y.setTranslate=function(t,e,r){var n=t.attr?\"attr\":\"getAttribute\",i=t.attr?\"attr\":\"setAttribute\",a=t[n](\"transform\")||\"\";return e=e||0,r=r||0,a=a.replace(/(\\btranslate\\(.*?\\);?)/,\"\").trim(),a=(a+=u(e,r)).trim(),t[i](\"transform\",a),a},y.getScale=function(t){var e=(t[t.attr?\"attr\":\"getAttribute\"](\"transform\")||\"\").replace(/.*\\bscale\\((\\d*\\.?\\d*)[^\\d]*(\\d*\\.?\\d*)[^\\d].*/,(function(t,e,r){return[e,r].join(\" \")})).split(\" \");return{x:+e[0]||1,y:+e[1]||1}},y.setScale=function(t,e,r){var n=t.attr?\"attr\":\"getAttribute\",i=t.attr?\"attr\":\"setAttribute\",a=t[n](\"transform\")||\"\";return e=e||1,r=r||1,a=a.replace(/(\\bscale\\(.*?\\);?)/,\"\").trim(),a=(a+=\"scale(\"+e+\",\"+r+\")\").trim(),t[i](\"transform\",a),a};var D=/\\s*sc.*/;y.setPointGroupScale=function(t,e,r){if(e=e||1,r=r||1,t){var n=1===e&&1===r?\"\":\"scale(\"+e+\",\"+r+\")\";t.each((function(){var t=(this.getAttribute(\"transform\")||\"\").replace(D,\"\");t=(t+=n).trim(),this.setAttribute(\"transform\",t)}))}};var R=/translate\\([^)]*\\)\\s*$/;y.setTextPointsScale=function(t,e,r){t&&t.each((function(){var t,i=n.select(this),a=i.select(\"text\");if(a.node()){var o=parseFloat(a.attr(\"x\")||0),s=parseFloat(a.attr(\"y\")||0),l=(i.attr(\"transform\")||\"\").match(R);t=1===e&&1===r?[]:[u(o,s),\"scale(\"+e+\",\"+r+\")\",u(-o,-s)],l&&t.push(l),i.attr(\"transform\",t.join(\"\"))}}))}},{\"../../components/fx/helpers\":679,\"../../constants/alignment\":745,\"../../constants/interactions\":752,\"../../constants/xmlns_namespaces\":754,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../registry\":911,\"../../traces/scatter/make_bubble_size_func\":1204,\"../../traces/scatter/subtypes\":1212,\"../color\":643,\"../colorscale\":655,\"./symbol_defs\":666,d3:169,\"fast-isnumeric\":241,tinycolor2:576}],666:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports={circle:{n:0,f:function(t){var e=n.round(t,2);return\"M\"+e+\",0A\"+e+\",\"+e+\" 0 1,1 0,-\"+e+\"A\"+e+\",\"+e+\" 0 0,1 \"+e+\",0Z\"}},square:{n:1,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"H-\"+e+\"V-\"+e+\"H\"+e+\"Z\"}},diamond:{n:2,f:function(t){var e=n.round(1.3*t,2);return\"M\"+e+\",0L0,\"+e+\"L-\"+e+\",0L0,-\"+e+\"Z\"}},cross:{n:3,f:function(t){var e=n.round(.4*t,2),r=n.round(1.2*t,2);return\"M\"+r+\",\"+e+\"H\"+e+\"V\"+r+\"H-\"+e+\"V\"+e+\"H-\"+r+\"V-\"+e+\"H-\"+e+\"V-\"+r+\"H\"+e+\"V-\"+e+\"H\"+r+\"Z\"}},x:{n:4,f:function(t){var e=n.round(.8*t/Math.sqrt(2),2),r=\"l\"+e+\",\"+e,i=\"l\"+e+\",-\"+e,a=\"l-\"+e+\",-\"+e,o=\"l-\"+e+\",\"+e;return\"M0,\"+e+r+i+a+i+a+o+a+o+r+o+r+\"Z\"}},\"triangle-up\":{n:5,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M-\"+e+\",\"+n.round(t/2,2)+\"H\"+e+\"L0,-\"+n.round(t,2)+\"Z\"}},\"triangle-down\":{n:6,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M-\"+e+\",-\"+n.round(t/2,2)+\"H\"+e+\"L0,\"+n.round(t,2)+\"Z\"}},\"triangle-left\":{n:7,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M\"+n.round(t/2,2)+\",-\"+e+\"V\"+e+\"L-\"+n.round(t,2)+\",0Z\"}},\"triangle-right\":{n:8,f:function(t){var e=n.round(2*t/Math.sqrt(3),2);return\"M-\"+n.round(t/2,2)+\",-\"+e+\"V\"+e+\"L\"+n.round(t,2)+\",0Z\"}},\"triangle-ne\":{n:9,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M-\"+r+\",-\"+e+\"H\"+e+\"V\"+r+\"Z\"}},\"triangle-se\":{n:10,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M\"+e+\",-\"+r+\"V\"+e+\"H-\"+r+\"Z\"}},\"triangle-sw\":{n:11,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M\"+r+\",\"+e+\"H-\"+e+\"V-\"+r+\"Z\"}},\"triangle-nw\":{n:12,f:function(t){var e=n.round(.6*t,2),r=n.round(1.2*t,2);return\"M-\"+e+\",\"+r+\"V-\"+e+\"H\"+r+\"Z\"}},pentagon:{n:13,f:function(t){var e=n.round(.951*t,2),r=n.round(.588*t,2),i=n.round(-t,2),a=n.round(-.309*t,2);return\"M\"+e+\",\"+a+\"L\"+r+\",\"+n.round(.809*t,2)+\"H-\"+r+\"L-\"+e+\",\"+a+\"L0,\"+i+\"Z\"}},hexagon:{n:14,f:function(t){var e=n.round(t,2),r=n.round(t/2,2),i=n.round(t*Math.sqrt(3)/2,2);return\"M\"+i+\",-\"+r+\"V\"+r+\"L0,\"+e+\"L-\"+i+\",\"+r+\"V-\"+r+\"L0,-\"+e+\"Z\"}},hexagon2:{n:15,f:function(t){var e=n.round(t,2),r=n.round(t/2,2),i=n.round(t*Math.sqrt(3)/2,2);return\"M-\"+r+\",\"+i+\"H\"+r+\"L\"+e+\",0L\"+r+\",-\"+i+\"H-\"+r+\"L-\"+e+\",0Z\"}},octagon:{n:16,f:function(t){var e=n.round(.924*t,2),r=n.round(.383*t,2);return\"M-\"+r+\",-\"+e+\"H\"+r+\"L\"+e+\",-\"+r+\"V\"+r+\"L\"+r+\",\"+e+\"H-\"+r+\"L-\"+e+\",\"+r+\"V-\"+r+\"Z\"}},star:{n:17,f:function(t){var e=1.4*t,r=n.round(.225*e,2),i=n.round(.951*e,2),a=n.round(.363*e,2),o=n.round(.588*e,2),s=n.round(-e,2),l=n.round(-.309*e,2),c=n.round(.118*e,2),u=n.round(.809*e,2);return\"M\"+r+\",\"+l+\"H\"+i+\"L\"+a+\",\"+c+\"L\"+o+\",\"+u+\"L0,\"+n.round(.382*e,2)+\"L-\"+o+\",\"+u+\"L-\"+a+\",\"+c+\"L-\"+i+\",\"+l+\"H-\"+r+\"L0,\"+s+\"Z\"}},hexagram:{n:18,f:function(t){var e=n.round(.66*t,2),r=n.round(.38*t,2),i=n.round(.76*t,2);return\"M-\"+i+\",0l-\"+r+\",-\"+e+\"h\"+i+\"l\"+r+\",-\"+e+\"l\"+r+\",\"+e+\"h\"+i+\"l-\"+r+\",\"+e+\"l\"+r+\",\"+e+\"h-\"+i+\"l-\"+r+\",\"+e+\"l-\"+r+\",-\"+e+\"h-\"+i+\"Z\"}},\"star-triangle-up\":{n:19,f:function(t){var e=n.round(t*Math.sqrt(3)*.8,2),r=n.round(.8*t,2),i=n.round(1.6*t,2),a=n.round(4*t,2),o=\"A \"+a+\",\"+a+\" 0 0 1 \";return\"M-\"+e+\",\"+r+o+e+\",\"+r+o+\"0,-\"+i+o+\"-\"+e+\",\"+r+\"Z\"}},\"star-triangle-down\":{n:20,f:function(t){var e=n.round(t*Math.sqrt(3)*.8,2),r=n.round(.8*t,2),i=n.round(1.6*t,2),a=n.round(4*t,2),o=\"A \"+a+\",\"+a+\" 0 0 1 \";return\"M\"+e+\",-\"+r+o+\"-\"+e+\",-\"+r+o+\"0,\"+i+o+e+\",-\"+r+\"Z\"}},\"star-square\":{n:21,f:function(t){var e=n.round(1.1*t,2),r=n.round(2*t,2),i=\"A \"+r+\",\"+r+\" 0 0 1 \";return\"M-\"+e+\",-\"+e+i+\"-\"+e+\",\"+e+i+e+\",\"+e+i+e+\",-\"+e+i+\"-\"+e+\",-\"+e+\"Z\"}},\"star-diamond\":{n:22,f:function(t){var e=n.round(1.4*t,2),r=n.round(1.9*t,2),i=\"A \"+r+\",\"+r+\" 0 0 1 \";return\"M-\"+e+\",0\"+i+\"0,\"+e+i+e+\",0\"+i+\"0,-\"+e+i+\"-\"+e+\",0Z\"}},\"diamond-tall\":{n:23,f:function(t){var e=n.round(.7*t,2),r=n.round(1.4*t,2);return\"M0,\"+r+\"L\"+e+\",0L0,-\"+r+\"L-\"+e+\",0Z\"}},\"diamond-wide\":{n:24,f:function(t){var e=n.round(1.4*t,2),r=n.round(.7*t,2);return\"M0,\"+r+\"L\"+e+\",0L0,-\"+r+\"L-\"+e+\",0Z\"}},hourglass:{n:25,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"H-\"+e+\"L\"+e+\",-\"+e+\"H-\"+e+\"Z\"},noDot:!0},bowtie:{n:26,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"V-\"+e+\"L-\"+e+\",\"+e+\"V-\"+e+\"Z\"},noDot:!0},\"circle-cross\":{n:27,f:function(t){var e=n.round(t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e+\"M\"+e+\",0A\"+e+\",\"+e+\" 0 1,1 0,-\"+e+\"A\"+e+\",\"+e+\" 0 0,1 \"+e+\",0Z\"},needLine:!0,noDot:!0},\"circle-x\":{n:28,f:function(t){var e=n.round(t,2),r=n.round(t/Math.sqrt(2),2);return\"M\"+r+\",\"+r+\"L-\"+r+\",-\"+r+\"M\"+r+\",-\"+r+\"L-\"+r+\",\"+r+\"M\"+e+\",0A\"+e+\",\"+e+\" 0 1,1 0,-\"+e+\"A\"+e+\",\"+e+\" 0 0,1 \"+e+\",0Z\"},needLine:!0,noDot:!0},\"square-cross\":{n:29,f:function(t){var e=n.round(t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e+\"M\"+e+\",\"+e+\"H-\"+e+\"V-\"+e+\"H\"+e+\"Z\"},needLine:!0,noDot:!0},\"square-x\":{n:30,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"L-\"+e+\",-\"+e+\"M\"+e+\",-\"+e+\"L-\"+e+\",\"+e+\"M\"+e+\",\"+e+\"H-\"+e+\"V-\"+e+\"H\"+e+\"Z\"},needLine:!0,noDot:!0},\"diamond-cross\":{n:31,f:function(t){var e=n.round(1.3*t,2);return\"M\"+e+\",0L0,\"+e+\"L-\"+e+\",0L0,-\"+e+\"ZM0,-\"+e+\"V\"+e+\"M-\"+e+\",0H\"+e},needLine:!0,noDot:!0},\"diamond-x\":{n:32,f:function(t){var e=n.round(1.3*t,2),r=n.round(.65*t,2);return\"M\"+e+\",0L0,\"+e+\"L-\"+e+\",0L0,-\"+e+\"ZM-\"+r+\",-\"+r+\"L\"+r+\",\"+r+\"M-\"+r+\",\"+r+\"L\"+r+\",-\"+r},needLine:!0,noDot:!0},\"cross-thin\":{n:33,f:function(t){var e=n.round(1.4*t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e},needLine:!0,noDot:!0,noFill:!0},\"x-thin\":{n:34,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"L-\"+e+\",-\"+e+\"M\"+e+\",-\"+e+\"L-\"+e+\",\"+e},needLine:!0,noDot:!0,noFill:!0},asterisk:{n:35,f:function(t){var e=n.round(1.2*t,2),r=n.round(.85*t,2);return\"M0,\"+e+\"V-\"+e+\"M\"+e+\",0H-\"+e+\"M\"+r+\",\"+r+\"L-\"+r+\",-\"+r+\"M\"+r+\",-\"+r+\"L-\"+r+\",\"+r},needLine:!0,noDot:!0,noFill:!0},hash:{n:36,f:function(t){var e=n.round(t/2,2),r=n.round(t,2);return\"M\"+e+\",\"+r+\"V-\"+r+\"m-\"+r+\",0V\"+r+\"M\"+r+\",\"+e+\"H-\"+r+\"m0,-\"+r+\"H\"+r},needLine:!0,noFill:!0},\"y-up\":{n:37,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return\"M-\"+e+\",\"+i+\"L0,0M\"+e+\",\"+i+\"L0,0M0,-\"+r+\"L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"y-down\":{n:38,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return\"M-\"+e+\",-\"+i+\"L0,0M\"+e+\",-\"+i+\"L0,0M0,\"+r+\"L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"y-left\":{n:39,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return\"M\"+i+\",\"+e+\"L0,0M\"+i+\",-\"+e+\"L0,0M-\"+r+\",0L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"y-right\":{n:40,f:function(t){var e=n.round(1.2*t,2),r=n.round(1.6*t,2),i=n.round(.8*t,2);return\"M-\"+i+\",\"+e+\"L0,0M-\"+i+\",-\"+e+\"L0,0M\"+r+\",0L0,0\"},needLine:!0,noDot:!0,noFill:!0},\"line-ew\":{n:41,f:function(t){var e=n.round(1.4*t,2);return\"M\"+e+\",0H-\"+e},needLine:!0,noDot:!0,noFill:!0},\"line-ns\":{n:42,f:function(t){var e=n.round(1.4*t,2);return\"M0,\"+e+\"V-\"+e},needLine:!0,noDot:!0,noFill:!0},\"line-ne\":{n:43,f:function(t){var e=n.round(t,2);return\"M\"+e+\",-\"+e+\"L-\"+e+\",\"+e},needLine:!0,noDot:!0,noFill:!0},\"line-nw\":{n:44,f:function(t){var e=n.round(t,2);return\"M\"+e+\",\"+e+\"L-\"+e+\",-\"+e},needLine:!0,noDot:!0,noFill:!0},\"arrow-up\":{n:45,f:function(t){var e=n.round(t,2);return\"M0,0L-\"+e+\",\"+n.round(2*t,2)+\"H\"+e+\"Z\"},noDot:!0},\"arrow-down\":{n:46,f:function(t){var e=n.round(t,2);return\"M0,0L-\"+e+\",-\"+n.round(2*t,2)+\"H\"+e+\"Z\"},noDot:!0},\"arrow-left\":{n:47,f:function(t){var e=n.round(2*t,2),r=n.round(t,2);return\"M0,0L\"+e+\",-\"+r+\"V\"+r+\"Z\"},noDot:!0},\"arrow-right\":{n:48,f:function(t){var e=n.round(2*t,2),r=n.round(t,2);return\"M0,0L-\"+e+\",-\"+r+\"V\"+r+\"Z\"},noDot:!0},\"arrow-bar-up\":{n:49,f:function(t){var e=n.round(t,2);return\"M-\"+e+\",0H\"+e+\"M0,0L-\"+e+\",\"+n.round(2*t,2)+\"H\"+e+\"Z\"},needLine:!0,noDot:!0},\"arrow-bar-down\":{n:50,f:function(t){var e=n.round(t,2);return\"M-\"+e+\",0H\"+e+\"M0,0L-\"+e+\",-\"+n.round(2*t,2)+\"H\"+e+\"Z\"},needLine:!0,noDot:!0},\"arrow-bar-left\":{n:51,f:function(t){var e=n.round(2*t,2),r=n.round(t,2);return\"M0,-\"+r+\"V\"+r+\"M0,0L\"+e+\",-\"+r+\"V\"+r+\"Z\"},needLine:!0,noDot:!0},\"arrow-bar-right\":{n:52,f:function(t){var e=n.round(2*t,2),r=n.round(t,2);return\"M0,-\"+r+\"V\"+r+\"M0,0L-\"+e+\",-\"+r+\"V\"+r+\"Z\"},needLine:!0,noDot:!0}}},{d3:169}],667:[function(t,e,r){\"use strict\";e.exports={visible:{valType:\"boolean\",editType:\"calc\"},type:{valType:\"enumerated\",values:[\"percent\",\"constant\",\"sqrt\",\"data\"],editType:\"calc\"},symmetric:{valType:\"boolean\",editType:\"calc\"},array:{valType:\"data_array\",editType:\"calc\"},arrayminus:{valType:\"data_array\",editType:\"calc\"},value:{valType:\"number\",min:0,dflt:10,editType:\"calc\"},valueminus:{valType:\"number\",min:0,dflt:10,editType:\"calc\"},traceref:{valType:\"integer\",min:0,dflt:0,editType:\"style\"},tracerefminus:{valType:\"integer\",min:0,dflt:0,editType:\"style\"},copy_ystyle:{valType:\"boolean\",editType:\"plot\"},copy_zstyle:{valType:\"boolean\",editType:\"style\"},color:{valType:\"color\",editType:\"style\"},thickness:{valType:\"number\",min:0,dflt:2,editType:\"style\"},width:{valType:\"number\",min:0,editType:\"plot\"},editType:\"calc\",_deprecated:{opacity:{valType:\"number\",editType:\"style\"}}}},{}],668:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../registry\"),a=t(\"../../plots/cartesian/axes\"),o=t(\"../../lib\"),s=t(\"./compute_error\");function l(t,e,r,i){var l=e[\"error_\"+i]||{},c=[];if(l.visible&&-1!==[\"linear\",\"log\"].indexOf(r.type)){for(var u=s(l),f=0;f<t.length;f++){var h=t[f],p=h.i;if(void 0===p)p=f;else if(null===p)continue;var d=h[i];if(n(r.c2l(d))){var g=u(d,p);if(n(g[0])&&n(g[1])){var m=h[i+\"s\"]=d-g[0],v=h[i+\"h\"]=d+g[1];c.push(m,v)}}}var y=r._id,x=e._extremes[y],b=a.findExtremes(r,c,o.extendFlat({tozero:x.opts.tozero},{padded:!0}));x.min=x.min.concat(b.min),x.max=x.max.concat(b.max)}}e.exports=function(t){for(var e=t.calcdata,r=0;r<e.length;r++){var n=e[r],o=n[0].trace;if(!0===o.visible&&i.traceIs(o,\"errorBarsOK\")){var s=a.getFromId(t,o.xaxis),c=a.getFromId(t,o.yaxis);l(n,o,s,\"x\"),l(n,o,c,\"y\")}}}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"../../registry\":911,\"./compute_error\":669,\"fast-isnumeric\":241}],669:[function(t,e,r){\"use strict\";function n(t,e){return\"percent\"===t?function(t){return Math.abs(t*e/100)}:\"constant\"===t?function(){return Math.abs(e)}:\"sqrt\"===t?function(t){return Math.sqrt(Math.abs(t))}:void 0}e.exports=function(t){var e=t.type,r=t.symmetric;if(\"data\"===e){var i=t.array||[];if(r)return function(t,e){var r=+i[e];return[r,r]};var a=t.arrayminus||[];return function(t,e){var r=+i[e],n=+a[e];return isNaN(r)&&isNaN(n)?[NaN,NaN]:[n||0,r||0]}}var o=n(e,t.value),s=n(e,t.valueminus);return r||void 0===t.valueminus?function(t){var e=o(t);return[e,e]}:function(t){return[s(t),o(t)]}}},{}],670:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../registry\"),a=t(\"../../lib\"),o=t(\"../../plot_api/plot_template\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){var c=\"error_\"+l.axis,u=o.newContainer(e,c),f=t[c]||{};function h(t,e){return a.coerce(f,u,s,t,e)}if(!1!==h(\"visible\",void 0!==f.array||void 0!==f.value||\"sqrt\"===f.type)){var p=h(\"type\",\"array\"in f?\"data\":\"percent\"),d=!0;\"sqrt\"!==p&&(d=h(\"symmetric\",!((\"data\"===p?\"arrayminus\":\"valueminus\")in f))),\"data\"===p?(h(\"array\"),h(\"traceref\"),d||(h(\"arrayminus\"),h(\"tracerefminus\"))):\"percent\"!==p&&\"constant\"!==p||(h(\"value\"),d||h(\"valueminus\"));var g=\"copy_\"+l.inherit+\"style\";if(l.inherit)(e[\"error_\"+l.inherit]||{}).visible&&h(g,!(f.color||n(f.thickness)||n(f.width)));l.inherit&&u[g]||(h(\"color\",r),h(\"thickness\"),h(\"width\",i.traceIs(e,\"gl3d\")?0:4))}}},{\"../../lib\":778,\"../../plot_api/plot_template\":817,\"../../registry\":911,\"./attributes\":667,\"fast-isnumeric\":241}],671:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plot_api/edit_types\").overrideAll,a=t(\"./attributes\"),o={error_x:n.extendFlat({},a),error_y:n.extendFlat({},a)};delete o.error_x.copy_zstyle,delete o.error_y.copy_zstyle,delete o.error_y.copy_ystyle;var s={error_x:n.extendFlat({},a),error_y:n.extendFlat({},a),error_z:n.extendFlat({},a)};delete s.error_x.copy_ystyle,delete s.error_y.copy_ystyle,delete s.error_z.copy_ystyle,delete s.error_z.copy_zstyle,e.exports={moduleType:\"component\",name:\"errorbars\",schema:{traces:{scatter:o,bar:o,histogram:o,scatter3d:i(s,\"calc\",\"nested\"),scattergl:i(o,\"calc\",\"nested\")}},supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),makeComputeError:t(\"./compute_error\"),plot:t(\"./plot\"),style:t(\"./style\"),hoverInfo:function(t,e,r){(e.error_y||{}).visible&&(r.yerr=t.yh-t.y,e.error_y.symmetric||(r.yerrneg=t.y-t.ys));(e.error_x||{}).visible&&(r.xerr=t.xh-t.x,e.error_x.symmetric||(r.xerrneg=t.x-t.xs))}}},{\"../../lib\":778,\"../../plot_api/edit_types\":810,\"./attributes\":667,\"./calc\":668,\"./compute_error\":669,\"./defaults\":670,\"./plot\":672,\"./style\":673}],672:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"fast-isnumeric\"),a=t(\"../drawing\"),o=t(\"../../traces/scatter/subtypes\");e.exports=function(t,e,r,s){var l=r.xaxis,c=r.yaxis,u=s&&s.duration>0;e.each((function(e){var f,h=e[0].trace,p=h.error_x||{},d=h.error_y||{};h.ids&&(f=function(t){return t.id});var g=o.hasMarkers(h)&&h.marker.maxdisplayed>0;d.visible||p.visible||(e=[]);var m=n.select(this).selectAll(\"g.errorbar\").data(e,f);if(m.exit().remove(),e.length){p.visible||m.selectAll(\"path.xerror\").remove(),d.visible||m.selectAll(\"path.yerror\").remove(),m.style(\"opacity\",1);var v=m.enter().append(\"g\").classed(\"errorbar\",!0);u&&v.style(\"opacity\",0).transition().duration(s.duration).style(\"opacity\",1),a.setClipUrl(m,r.layerClipId,t),m.each((function(t){var e=n.select(this),r=function(t,e,r){var n={x:e.c2p(t.x),y:r.c2p(t.y)};void 0!==t.yh&&(n.yh=r.c2p(t.yh),n.ys=r.c2p(t.ys),i(n.ys)||(n.noYS=!0,n.ys=r.c2p(t.ys,!0)));void 0!==t.xh&&(n.xh=e.c2p(t.xh),n.xs=e.c2p(t.xs),i(n.xs)||(n.noXS=!0,n.xs=e.c2p(t.xs,!0)));return n}(t,l,c);if(!g||t.vis){var a,o=e.select(\"path.yerror\");if(d.visible&&i(r.x)&&i(r.yh)&&i(r.ys)){var f=d.width;a=\"M\"+(r.x-f)+\",\"+r.yh+\"h\"+2*f+\"m-\"+f+\",0V\"+r.ys,r.noYS||(a+=\"m-\"+f+\",0h\"+2*f),!o.size()?o=e.append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").classed(\"yerror\",!0):u&&(o=o.transition().duration(s.duration).ease(s.easing)),o.attr(\"d\",a)}else o.remove();var h=e.select(\"path.xerror\");if(p.visible&&i(r.y)&&i(r.xh)&&i(r.xs)){var m=(p.copy_ystyle?d:p).width;a=\"M\"+r.xh+\",\"+(r.y-m)+\"v\"+2*m+\"m0,-\"+m+\"H\"+r.xs,r.noXS||(a+=\"m0,-\"+m+\"v\"+2*m),!h.size()?h=e.append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").classed(\"xerror\",!0):u&&(h=h.transition().duration(s.duration).ease(s.easing)),h.attr(\"d\",a)}else h.remove()}}))}}))}},{\"../../traces/scatter/subtypes\":1212,\"../drawing\":665,d3:169,\"fast-isnumeric\":241}],673:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../color\");e.exports=function(t){t.each((function(t){var e=t[0].trace,r=e.error_y||{},a=e.error_x||{},o=n.select(this);o.selectAll(\"path.yerror\").style(\"stroke-width\",r.thickness+\"px\").call(i.stroke,r.color),a.copy_ystyle&&(a=r),o.selectAll(\"path.xerror\").style(\"stroke-width\",a.thickness+\"px\").call(i.stroke,a.color)}))}},{\"../color\":643,d3:169}],674:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),i=t(\"./layout_attributes\").hoverlabel,a=t(\"../../lib/extend\").extendFlat;e.exports={hoverlabel:{bgcolor:a({},i.bgcolor,{arrayOk:!0}),bordercolor:a({},i.bordercolor,{arrayOk:!0}),font:n({arrayOk:!0,editType:\"none\"}),align:a({},i.align,{arrayOk:!0}),namelength:a({},i.namelength,{arrayOk:!0}),editType:\"none\"}}},{\"../../lib/extend\":768,\"../../plots/font_attributes\":856,\"./layout_attributes\":684}],675:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../registry\");function a(t,e,r,i){i=i||n.identity,Array.isArray(t)&&(e[0][r]=i(t))}e.exports=function(t){var e=t.calcdata,r=t._fullLayout;function o(t){return function(e){return n.coerceHoverinfo({hoverinfo:e},{_module:t._module},r)}}for(var s=0;s<e.length;s++){var l=e[s],c=l[0].trace;if(!i.traceIs(c,\"pie-like\")){var u=i.traceIs(c,\"2dMap\")?a:n.fillArray;u(c.hoverinfo,l,\"hi\",o(c)),c.hovertemplate&&u(c.hovertemplate,l,\"ht\"),c.hoverlabel&&(u(c.hoverlabel.bgcolor,l,\"hbg\"),u(c.hoverlabel.bordercolor,l,\"hbc\"),u(c.hoverlabel.font.size,l,\"hts\"),u(c.hoverlabel.font.color,l,\"htc\"),u(c.hoverlabel.font.family,l,\"htf\"),u(c.hoverlabel.namelength,l,\"hnl\"),u(c.hoverlabel.align,l,\"hta\"))}}}},{\"../../lib\":778,\"../../registry\":911}],676:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"./hover\").hover;e.exports=function(t,e,r){var a=n.getComponentMethod(\"annotations\",\"onClick\")(t,t._hoverdata);function o(){t.emit(\"plotly_click\",{points:t._hoverdata,event:e})}void 0!==r&&i(t,e,r,!0),t._hoverdata&&e&&e.target&&(a&&a.then?a.then(o):o(),e.stopImmediatePropagation&&e.stopImmediatePropagation())}},{\"../../registry\":911,\"./hover\":680}],677:[function(t,e,r){\"use strict\";e.exports={YANGLE:60,HOVERARROWSIZE:6,HOVERTEXTPAD:3,HOVERFONTSIZE:13,HOVERFONT:\"Arial, sans-serif\",HOVERMINTIME:50,HOVERID:\"-hover\"}},{}],678:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"./hoverlabel_defaults\");e.exports=function(t,e,r,o){var s=n.extendFlat({},o.hoverlabel);e.hovertemplate&&(s.namelength=-1),a(t,e,(function(r,a){return n.coerce(t,e,i,r,a)}),s)}},{\"../../lib\":778,\"./attributes\":674,\"./hoverlabel_defaults\":681}],679:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");r.getSubplot=function(t){return t.subplot||t.xaxis+t.yaxis||t.geo},r.isTraceInSubplots=function(t,e){if(\"splom\"===t.type){for(var n=t.xaxes||[],i=t.yaxes||[],a=0;a<n.length;a++)for(var o=0;o<i.length;o++)if(-1!==e.indexOf(n[a]+i[o]))return!0;return!1}return-1!==e.indexOf(r.getSubplot(t))},r.flat=function(t,e){for(var r=new Array(t.length),n=0;n<t.length;n++)r[n]=e;return r},r.p2c=function(t,e){for(var r=new Array(t.length),n=0;n<t.length;n++)r[n]=t[n].p2c(e);return r},r.getDistanceFunction=function(t,e,n,i){return\"closest\"===t?i||r.quadrature(e,n):\"x\"===t.charAt(0)?e:n},r.getClosest=function(t,e,r){if(!1!==r.index)r.index>=0&&r.index<t.length?r.distance=0:r.index=!1;else for(var n=0;n<t.length;n++){var i=e(t[n]);i<=r.distance&&(r.index=n,r.distance=i)}return r},r.inbox=function(t,e,r){return t*e<0||0===t?r:1/0},r.quadrature=function(t,e){return function(r){var n=t(r),i=e(r);return Math.sqrt(n*n+i*i)}},r.makeEventData=function(t,e,n){var i=\"index\"in t?t.index:t.pointNumber,a={data:e._input,fullData:e,curveNumber:e.index,pointNumber:i};if(e._indexToPoints){var o=e._indexToPoints[i];1===o.length?a.pointIndex=o[0]:a.pointIndices=o}else a.pointIndex=i;return e._module.eventData?a=e._module.eventData(a,t,e,n,i):(\"xVal\"in t?a.x=t.xVal:\"x\"in t&&(a.x=t.x),\"yVal\"in t?a.y=t.yVal:\"y\"in t&&(a.y=t.y),t.xa&&(a.xaxis=t.xa),t.ya&&(a.yaxis=t.ya),void 0!==t.zLabelVal&&(a.z=t.zLabelVal)),r.appendArrayPointValue(a,e,i),a},r.appendArrayPointValue=function(t,e,r){var i=e._arrayAttrs;if(i)for(var s=0;s<i.length;s++){var l=i[s],c=a(l);if(void 0===t[c]){var u=o(n.nestedProperty(e,l).get(),r);void 0!==u&&(t[c]=u)}}},r.appendArrayMultiPointValues=function(t,e,r){var i=e._arrayAttrs;if(i)for(var s=0;s<i.length;s++){var l=i[s],c=a(l);if(void 0===t[c]){for(var u=n.nestedProperty(e,l).get(),f=new Array(r.length),h=0;h<r.length;h++)f[h]=o(u,r[h]);t[c]=f}}};var i={ids:\"id\",locations:\"location\",labels:\"label\",values:\"value\",\"marker.colors\":\"color\",parents:\"parent\"};function a(t){return i[t]||t}function o(t,e){return Array.isArray(e)?Array.isArray(t)&&Array.isArray(t[e[0]])?t[e[0]][e[1]]:void 0:t[e]}var s={x:!0,y:!0},l={\"x unified\":!0,\"y unified\":!0};r.isUnifiedHover=function(t){return\"string\"==typeof t&&!!l[t]},r.isXYhover=function(t){return\"string\"==typeof t&&!!s[t]}},{\"../../lib\":778}],680:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"fast-isnumeric\"),a=t(\"tinycolor2\"),o=t(\"../../lib\"),s=o.strTranslate,l=o.strRotate,c=t(\"../../lib/events\"),u=t(\"../../lib/svg_text_utils\"),f=t(\"../../lib/override_cursor\"),h=t(\"../drawing\"),p=t(\"../color\"),d=t(\"../dragelement\"),g=t(\"../../plots/cartesian/axes\"),m=t(\"../../registry\"),v=t(\"./helpers\"),y=t(\"./constants\"),x=t(\"../legend/defaults\"),b=t(\"../legend/draw\"),_=y.YANGLE,w=Math.PI*_/180,T=1/Math.sin(w),k=Math.cos(w),M=Math.sin(w),A=y.HOVERARROWSIZE,S=y.HOVERTEXTPAD;function E(t){return[t.trace.index,t.index,t.x0,t.y0,t.name,t.attr,t.xa,t.ya||\"\"].join(\",\")}r.hover=function(t,e,r,a){t=o.getGraphDiv(t),o.throttle(t._fullLayout._uid+y.HOVERID,y.HOVERMINTIME,(function(){!function(t,e,r,a){r||(r=\"xy\");var s=Array.isArray(r)?r:[r],l=t._fullLayout,u=l._plots||[],h=u[r],g=l._has(\"cartesian\");if(h){var y=h.overlays.map((function(t){return t.id}));s=s.concat(y)}for(var x=s.length,b=new Array(x),_=new Array(x),w=!1,k=0;k<x;k++){var M=s[k];if(u[M])w=!0,b[k]=u[M].xaxis,_[k]=u[M].yaxis;else{if(!l[M]||!l[M]._subplot)return void o.warn(\"Unrecognized subplot: \"+M);var A=l[M]._subplot;b[k]=A.xaxis,_[k]=A.yaxis}}var S=e.hovermode||l.hovermode;S&&!w&&(S=\"closest\");if(-1===[\"x\",\"y\",\"closest\",\"x unified\",\"y unified\"].indexOf(S)||!t.calcdata||t.querySelector(\".zoombox\")||t._dragging)return d.unhoverRaw(t,e);var C,I,R,F,B,N,j,U,V,q,H,G,Y,W=-1===l.hoverdistance?1/0:l.hoverdistance,X=-1===l.spikedistance?1/0:l.spikedistance,Z=[],J=[],K={hLinePoint:null,vLinePoint:null},Q=!1;if(Array.isArray(e))for(S=\"array\",R=0;R<e.length;R++)(B=t.calcdata[e[R].curveNumber||0])&&(N=B[0].trace,\"skip\"!==B[0].trace.hoverinfo&&(J.push(B),\"h\"===N.orientation&&(Q=!0)));else{for(F=0;F<t.calcdata.length;F++)B=t.calcdata[F],\"skip\"!==(N=B[0].trace).hoverinfo&&v.isTraceInSubplots(N,s)&&(J.push(B),\"h\"===N.orientation&&(Q=!0));var $,tt;if(!e.target)$=\"xpx\"in e?e.xpx:b[0]._length/2,tt=\"ypx\"in e?e.ypx:_[0]._length/2;else{if(!1===c.triggerHandler(t,\"plotly_beforehover\",e))return;var et=e.target.getBoundingClientRect();$=e.clientX-et.left,tt=e.clientY-et.top,l._calcInverseTransform(t);var rt=o.apply3DTransform(l._invTransform)($,tt);if($=rt[0],tt=rt[1],$<0||$>b[0]._length||tt<0||tt>_[0]._length)return d.unhoverRaw(t,e)}if(e.pointerX=$+b[0]._offset,e.pointerY=tt+_[0]._offset,C=\"xval\"in e?v.flat(s,e.xval):v.p2c(b,$),I=\"yval\"in e?v.flat(s,e.yval):v.p2c(_,tt),!i(C[0])||!i(I[0]))return o.warn(\"Fx.hover failed\",e,t),d.unhoverRaw(t,e)}var nt=1/0;function it(t,r){for(F=0;F<J.length;F++)if((B=J[F])&&B[0]&&B[0].trace&&!0===(N=B[0].trace).visible&&0!==N._length&&-1===[\"carpet\",\"contourcarpet\"].indexOf(N._module.name)){if(\"splom\"===N.type?j=s[U=0]:(j=v.getSubplot(N),U=s.indexOf(j)),V=S,v.isUnifiedHover(V)&&(V=V.charAt(0)),G={cd:B,trace:N,xa:b[U],ya:_[U],maxHoverDistance:W,maxSpikeDistance:X,index:!1,distance:Math.min(nt,W),spikeDistance:1/0,xSpike:void 0,ySpike:void 0,color:p.defaultLine,name:N.name,x0:void 0,x1:void 0,y0:void 0,y1:void 0,xLabelVal:void 0,yLabelVal:void 0,zLabelVal:void 0,text:void 0},l[j]&&(G.subplot=l[j]._subplot),l._splomScenes&&l._splomScenes[N.uid]&&(G.scene=l._splomScenes[N.uid]),Y=Z.length,\"array\"===V){var n=e[F];\"pointNumber\"in n?(G.index=n.pointNumber,V=\"closest\"):(V=\"\",\"xval\"in n&&(q=n.xval,V=\"x\"),\"yval\"in n&&(H=n.yval,V=V?\"closest\":\"y\"))}else void 0!==t&&void 0!==r?(q=t,H=r):(q=C[U],H=I[U]);if(0!==W)if(N._module&&N._module.hoverPoints){var a=N._module.hoverPoints(G,q,H,V,l._hoverlayer);if(a)for(var c,u=0;u<a.length;u++)c=a[u],i(c.x0)&&i(c.y0)&&Z.push(z(c,S))}else o.log(\"Unrecognized trace type in hover:\",N);if(\"closest\"===S&&Z.length>Y&&(Z.splice(0,Y),nt=Z[0].distance),g&&0!==X&&0===Z.length){G.distance=X,G.index=!1;var f=N._module.hoverPoints(G,q,H,\"closest\",l._hoverlayer);if(f&&(f=f.filter((function(t){return t.spikeDistance<=X}))),f&&f.length){var h,d=f.filter((function(t){return t.xa.showspikes&&\"hovered data\"!==t.xa.spikesnap}));if(d.length){var m=d[0];i(m.x0)&&i(m.y0)&&(h=ot(m),(!K.vLinePoint||K.vLinePoint.spikeDistance>h.spikeDistance)&&(K.vLinePoint=h))}var y=f.filter((function(t){return t.ya.showspikes&&\"hovered data\"!==t.ya.spikesnap}));if(y.length){var x=y[0];i(x.x0)&&i(x.y0)&&(h=ot(x),(!K.hLinePoint||K.hLinePoint.spikeDistance>h.spikeDistance)&&(K.hLinePoint=h))}}}}}function at(t,e){for(var r,n=null,i=1/0,a=0;a<t.length;a++)(r=t[a].spikeDistance)<=i&&r<=e&&(n=t[a],i=r);return n}function ot(t){return t?{xa:t.xa,ya:t.ya,x:void 0!==t.xSpike?t.xSpike:(t.x0+t.x1)/2,y:void 0!==t.ySpike?t.ySpike:(t.y0+t.y1)/2,distance:t.distance,spikeDistance:t.spikeDistance,curveNumber:t.trace.index,color:t.color,pointNumber:t.index}:null}it();var st={fullLayout:l,container:l._hoverlayer,outerContainer:l._paperdiv,event:e},lt=t._spikepoints,ct={vLinePoint:K.vLinePoint,hLinePoint:K.hLinePoint};if(t._spikepoints=ct,g&&0!==X&&0!==Z.length){var ut=at(Z.filter((function(t){return t.ya.showspikes})),X);K.hLinePoint=ot(ut);var ft=at(Z.filter((function(t){return t.xa.showspikes})),X);K.vLinePoint=ot(ft)}if(0===Z.length){var ht=d.unhoverRaw(t,e);return!g||null===K.hLinePoint&&null===K.vLinePoint||D(lt)&&O(t,K,st),ht}g&&D(lt)&&O(t,K,st);if(Z.sort((function(t,e){return t.distance-e.distance})),v.isXYhover(V)&&0!==Z[0].length&&\"splom\"!==Z[0].trace.type){var pt=Z[0],dt=pt.cd[pt.index],gt=\"group\"===l.boxmode||\"group\"===l.violinmode,mt=pt.xVal,vt=pt.xa;\"category\"===vt.type&&(mt=vt._categoriesMap[mt]),\"date\"===vt.type&&(mt=vt.d2c(mt)),dt&&dt.t&&dt.t.posLetter===vt._id&&gt&&(mt+=dt.t.dPos);var yt=pt.yVal;\"category\"===(vt=pt.ya).type&&(yt=vt._categoriesMap[yt]),\"date\"===vt.type&&(yt=vt.d2c(yt)),dt&&dt.t&&dt.t.posLetter===vt._id&&gt&&(yt+=dt.t.dPos),it(mt,yt);var xt={};Z=Z.filter((function(t){var e=E(t);if(!xt[e])return xt[e]=!0,xt[e]}))}var bt=t._hoverdata,_t=[];for(R=0;R<Z.length;R++){var wt=Z[R],Tt=v.makeEventData(wt,wt.trace,wt.cd);if(!1!==wt.hovertemplate){var kt=!1;wt.cd[wt.index]&&wt.cd[wt.index].ht&&(kt=wt.cd[wt.index].ht),wt.hovertemplate=kt||wt.trace.hovertemplate||!1}wt.eventData=[Tt],_t.push(Tt)}t._hoverdata=_t;var Mt=\"y\"===S&&(J.length>1||Z.length>1)||\"closest\"===S&&Q&&Z.length>1,At=p.combine(l.plot_bgcolor||p.background,l.paper_bgcolor),St={hovermode:S,rotateLabels:Mt,bgColor:At,container:l._hoverlayer,outerContainer:l._paperdiv,commonLabelOpts:l.hoverlabel,hoverdistance:l.hoverdistance},Et=L(Z,St,t);v.isUnifiedHover(S)||(!function(t,e,r){var n,i,a,o,s,l,c,u=0,f=1,h=t.size(),p=new Array(h),d=0;function g(t){var e=t[0],r=t[t.length-1];if(i=e.pmin-e.pos-e.dp+e.size,a=r.pos+r.dp+r.size-e.pmax,i>.01){for(s=t.length-1;s>=0;s--)t[s].dp+=i;n=!1}if(!(a<.01)){if(i<-.01){for(s=t.length-1;s>=0;s--)t[s].dp-=a;n=!1}if(n){var c=0;for(o=0;o<t.length;o++)(l=t[o]).pos+l.dp+l.size>e.pmax&&c++;for(o=t.length-1;o>=0&&!(c<=0);o--)(l=t[o]).pos>e.pmax-1&&(l.del=!0,c--);for(o=0;o<t.length&&!(c<=0);o++)if((l=t[o]).pos<e.pmin+1)for(l.del=!0,c--,a=2*l.size,s=t.length-1;s>=0;s--)t[s].dp-=a;for(o=t.length-1;o>=0&&!(c<=0);o--)(l=t[o]).pos+l.dp+l.size>e.pmax&&(l.del=!0,c--)}}}t.each((function(t){var n=t[e],i=\"x\"===n._id.charAt(0),a=n.range;0===d&&a&&a[0]>a[1]!==i&&(f=-1),p[d++]=[{datum:t,traceIndex:t.trace.index,dp:0,pos:t.pos,posref:t.posref,size:t.by*(i?T:1)/2,pmin:0,pmax:i?r.width:r.height}]})),p.sort((function(t,e){return t[0].posref-e[0].posref||f*(e[0].traceIndex-t[0].traceIndex)}));for(;!n&&u<=h;){for(u++,n=!0,o=0;o<p.length-1;){var m=p[o],v=p[o+1],y=m[m.length-1],x=v[0];if((i=y.pos+y.dp+y.size-x.pos-x.dp+x.size)>.01&&y.pmin===x.pmin&&y.pmax===x.pmax){for(s=v.length-1;s>=0;s--)v[s].dp+=i;for(m.push.apply(m,v),p.splice(o+1,1),c=0,s=m.length-1;s>=0;s--)c+=m[s].dp;for(a=c/m.length,s=m.length-1;s>=0;s--)m[s].dp-=a;n=!1}else o++}p.forEach(g)}for(o=p.length-1;o>=0;o--){var b=p[o];for(s=b.length-1;s>=0;s--){var _=b[s],w=_.datum;w.offset=_.dp,w.del=_.del}}}(Et,Mt?\"xa\":\"ya\",l),P(Et,Mt,l._invScaleX,l._invScaleY));if(e.target&&e.target.tagName){var Ct=m.getComponentMethod(\"annotations\",\"hasClickToShow\")(t,_t);f(n.select(e.target),Ct?\"pointer\":\"\")}if(!e.target||a||!function(t,e,r){if(!r||r.length!==t._hoverdata.length)return!0;for(var n=r.length-1;n>=0;n--){var i=r[n],a=t._hoverdata[n];if(i.curveNumber!==a.curveNumber||String(i.pointNumber)!==String(a.pointNumber)||String(i.pointNumbers)!==String(a.pointNumbers))return!0}return!1}(t,0,bt))return;bt&&t.emit(\"plotly_unhover\",{event:e,points:bt});t.emit(\"plotly_hover\",{event:e,points:t._hoverdata,xaxes:b,yaxes:_,xvals:C,yvals:I})}(t,e,r,a)}))},r.loneHover=function(t,e){var r=!0;Array.isArray(t)||(r=!1,t=[t]);var i=t.map((function(t){return{color:t.color||p.defaultLine,x0:t.x0||t.x||0,x1:t.x1||t.x||0,y0:t.y0||t.y||0,y1:t.y1||t.y||0,xLabel:t.xLabel,yLabel:t.yLabel,zLabel:t.zLabel,text:t.text,name:t.name,idealAlign:t.idealAlign,borderColor:t.borderColor,fontFamily:t.fontFamily,fontSize:t.fontSize,fontColor:t.fontColor,nameLength:t.nameLength,textAlign:t.textAlign,trace:t.trace||{index:0,hoverinfo:\"\"},xa:{_offset:0},ya:{_offset:0},index:0,hovertemplate:t.hovertemplate||!1,eventData:t.eventData||!1,hovertemplateLabels:t.hovertemplateLabels||!1}})),a=n.select(e.container),o=e.outerContainer?n.select(e.outerContainer):a,s={hovermode:\"closest\",rotateLabels:!1,bgColor:e.bgColor||p.background,container:a,outerContainer:o},l=L(i,s,e.gd),c=0,u=0;l.sort((function(t,e){return t.y0-e.y0})).each((function(t,r){var n=t.y0-t.by/2;t.offset=n-5<c?c-n+5:0,c=n+t.by+t.offset,r===e.anchorIndex&&(u=t.offset)})).each((function(t){t.offset-=u}));var f=e.gd._fullLayout._invScaleX,h=e.gd._fullLayout._invScaleY;return P(l,s.rotateLabels,f,h),r?l:l.node()};var C=/<extra>([\\s\\S]*)<\\/extra>/;function L(t,e,r){var i=r._fullLayout,a=e.hovermode,c=e.rotateLabels,f=e.bgColor,d=e.container,g=e.outerContainer,m=e.commonLabelOpts||{},w=e.fontFamily||y.HOVERFONT,T=e.fontSize||y.HOVERFONTSIZE,k=t[0],M=k.xa,C=k.ya,L=\"y\"===a.charAt(0)?\"yLabel\":\"xLabel\",P=k[L],z=(String(P)||\"\").split(\" \")[0],O=g.node().getBoundingClientRect(),D=O.top,R=O.width,F=O.height,B=void 0!==P&&k.distance<=e.hoverdistance&&(\"x\"===a||\"y\"===a);if(B){var N,j,U=!0;for(N=0;N<t.length;N++)if(U&&void 0===t[N].zLabel&&(U=!1),j=t[N].hoverinfo||t[N].trace.hoverinfo){var V=Array.isArray(j)?j:j.split(\"+\");if(-1===V.indexOf(\"all\")&&-1===V.indexOf(a)){B=!1;break}}U&&(B=!1)}var q=d.selectAll(\"g.axistext\").data(B?[0]:[]);function H(t){return t.filter((function(t){return void 0!==t.zLabelVal||(t[L]||\"\").split(\" \")[0]===z}))}if(q.enter().append(\"g\").classed(\"axistext\",!0),q.exit().remove(),q.each((function(){var e=n.select(this),l=o.ensureSingle(e,\"path\",\"\",(function(t){t.style({\"stroke-width\":\"1px\"})})),c=o.ensureSingle(e,\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),f=m.bgcolor||p.defaultLine,d=m.bordercolor||p.contrast(f),g=p.contrast(f),v={family:m.font.family||w,size:m.font.size||T,color:m.font.color||g};l.style({fill:f,stroke:d}),c.text(P).call(h.font,v).call(u.positionText,0,0).call(u.convertToTspans,r),e.attr(\"transform\",\"\");var y,x,b=c.node().getBoundingClientRect();if(\"x\"===a){var _=\"top\"===M.side?\"-\":\"\";c.attr(\"text-anchor\",\"middle\").call(u.positionText,0,\"top\"===M.side?D-b.bottom-A-S:D-b.top+A+S),y=M._offset+(k.x0+k.x1)/2,x=C._offset+(\"top\"===M.side?0:C._length);var E=b.width/2+S;y<E?(y=E,l.attr(\"d\",\"M-\"+(E-A)+\",0L-\"+(E-2*A)+\",\"+_+A+\"H\"+(S+b.width/2)+\"v\"+_+(2*S+b.height)+\"H-\"+E+\"V\"+_+A+\"Z\")):y>i.width-E?(y=i.width-E,l.attr(\"d\",\"M\"+(E-A)+\",0L\"+E+\",\"+_+A+\"v\"+_+(2*S+b.height)+\"H-\"+E+\"V\"+_+A+\"H\"+(E-2*A)+\"Z\")):l.attr(\"d\",\"M0,0L\"+A+\",\"+_+A+\"H\"+(S+b.width/2)+\"v\"+_+(2*S+b.height)+\"H-\"+(S+b.width/2)+\"V\"+_+A+\"H-\"+A+\"Z\")}else{var L,I,z;\"right\"===C.side?(L=\"start\",I=1,z=\"\",y=M._offset+M._length):(L=\"end\",I=-1,z=\"-\",y=M._offset),x=C._offset+(k.y0+k.y1)/2,c.attr(\"text-anchor\",L),l.attr(\"d\",\"M0,0L\"+z+A+\",\"+A+\"V\"+(S+b.height/2)+\"h\"+z+(2*S+b.width)+\"V-\"+(S+b.height/2)+\"H\"+z+A+\"V-\"+A+\"Z\");var O,R=b.height/2,F=D-b.top-R,B=\"clip\"+i._uid+\"commonlabel\"+C._id;if(y<b.width+2*S+A){O=\"M-\"+(A+S)+\"-\"+R+\"h-\"+(b.width-S)+\"V\"+R+\"h\"+(b.width-S)+\"Z\";var N=b.width-y+S;u.positionText(c,N,F),\"end\"===L&&c.selectAll(\"tspan\").each((function(){var t=n.select(this),e=h.tester.append(\"text\").text(t.text()).call(h.font,v),r=e.node().getBoundingClientRect();Math.round(r.width)<Math.round(b.width)&&t.attr(\"x\",N-r.width),e.remove()}))}else u.positionText(c,I*(S+A),F),O=null;var j=i._topclips.selectAll(\"#\"+B).data(O?[0]:[]);j.enter().append(\"clipPath\").attr(\"id\",B).append(\"path\"),j.exit().remove(),j.select(\"path\").attr(\"d\",O),h.setClipUrl(c,O?B:null,r)}e.attr(\"transform\",s(y,x)),t=H(t)})),v.isUnifiedHover(a)){if(d.selectAll(\"g.hovertext\").remove(),void 0!==P&&k.distance<=e.hoverdistance&&(t=H(t)),0===t.length)return;var G={showlegend:!0,legend:{title:{text:P,font:i.hoverlabel.font},font:i.hoverlabel.font,bgcolor:i.hoverlabel.bgcolor,bordercolor:i.hoverlabel.bordercolor,borderwidth:1,tracegroupgap:7,traceorder:i.legend?i.legend.traceorder:void 0,orientation:\"v\"}},Y={};x(G,Y,r._fullData);var W=Y.legend;W.entries=[];for(var X=0;X<t.length;X++){var Z=I(t[X],!0,a,i,P),J=Z[0],K=Z[1],Q=t[X];Q.name=K,Q.text=\"\"!==K?K+\" : \"+J:J;var $=Q.cd[Q.index];$&&($.mc&&(Q.mc=$.mc),$.mcc&&(Q.mc=$.mcc),$.mlc&&(Q.mlc=$.mlc),$.mlcc&&(Q.mlc=$.mlcc),$.mlw&&(Q.mlw=$.mlw),$.mrc&&(Q.mrc=$.mrc),$.dir&&(Q.dir=$.dir)),Q._distinct=!0,W.entries.push([Q])}W.entries.sort((function(t,e){return t[0].trace.index-e[0].trace.index})),W.layer=d,b(r,W);var tt=o.mean(t.map((function(t){return(t.y0+t.y1)/2}))),et=o.mean(t.map((function(t){return(t.x0+t.x1)/2}))),rt=d.select(\"g.legend\"),nt=rt.node().getBoundingClientRect();et+=M._offset,tt+=C._offset-nt.height/2;var it=nt.width+2*S;!(et+it<=R)&&et-it>=0?et-=it:et+=2*S;var at=nt.height+2*S,ot=tt+at>=F;return at<=F&&(tt<=D?tt=C._offset+2*S:ot&&(tt=F-at)),rt.attr(\"transform\",s(et,tt)),rt}var st=d.selectAll(\"g.hovertext\").data(t,(function(t){return E(t)}));return st.enter().append(\"g\").classed(\"hovertext\",!0).each((function(){var t=n.select(this);t.append(\"rect\").call(p.fill,p.addOpacity(f,.8)),t.append(\"text\").classed(\"name\",!0),t.append(\"path\").style(\"stroke-width\",\"1px\"),t.append(\"text\").classed(\"nums\",!0).call(h.font,w,T)})),st.exit().remove(),st.each((function(t){var e=n.select(this).attr(\"transform\",\"\"),o=t.color;Array.isArray(o)&&(o=o[t.eventData[0].pointNumber]);var d=t.bgcolor||o,g=p.combine(p.opacity(d)?d:p.defaultLine,f),m=p.combine(p.opacity(o)?o:p.defaultLine,f),v=t.borderColor||p.contrast(g),y=I(t,B,a,i,P,e),x=y[0],b=y[1],k=e.select(\"text.nums\").call(h.font,t.fontFamily||w,t.fontSize||T,t.fontColor||v).text(x).attr(\"data-notex\",1).call(u.positionText,0,0).call(u.convertToTspans,r),M=e.select(\"text.name\"),E=0,C=0;if(b&&b!==x){M.call(h.font,t.fontFamily||w,t.fontSize||T,m).text(b).attr(\"data-notex\",1).call(u.positionText,0,0).call(u.convertToTspans,r);var L=M.node().getBoundingClientRect();E=L.width+2*S,C=L.height+2*S}else M.remove(),e.select(\"rect\").remove();e.select(\"path\").style({fill:g,stroke:v});var z,O,N=k.node().getBoundingClientRect(),j=t.xa._offset+(t.x0+t.x1)/2,U=t.ya._offset+(t.y0+t.y1)/2,V=Math.abs(t.x1-t.x0),q=Math.abs(t.y1-t.y0),H=N.width+A+S+E;if(t.ty0=D-N.top,t.bx=N.width+2*S,t.by=Math.max(N.height+2*S,C),t.anchor=\"start\",t.txwidth=N.width,t.tx2width=E,t.offset=0,c)t.pos=j,z=U+q/2+H<=F,O=U-q/2-H>=0,\"top\"!==t.idealAlign&&z||!O?z?(U+=q/2,t.anchor=\"start\"):t.anchor=\"middle\":(U-=q/2,t.anchor=\"end\");else if(t.pos=U,z=j+V/2+H<=R,O=j-V/2-H>=0,\"left\"!==t.idealAlign&&z||!O)if(z)j+=V/2,t.anchor=\"start\";else{t.anchor=\"middle\";var G=H/2,Y=j+G-R,W=j-G;Y>0&&(j-=Y),W<0&&(j+=-W)}else j-=V/2,t.anchor=\"end\";k.attr(\"text-anchor\",t.anchor),E&&M.attr(\"text-anchor\",t.anchor),e.attr(\"transform\",s(j,U)+(c?l(_):\"\"))})),st}function I(t,e,r,n,i,a){var s=\"\",l=\"\";void 0!==t.nameOverride&&(t.name=t.nameOverride),t.name&&(t.trace._meta&&(t.name=o.templateString(t.name,t.trace._meta)),s=R(t.name,t.nameLength)),void 0!==t.zLabel?(void 0!==t.xLabel&&(l+=\"x: \"+t.xLabel+\"<br>\"),void 0!==t.yLabel&&(l+=\"y: \"+t.yLabel+\"<br>\"),\"choropleth\"!==t.trace.type&&\"choroplethmapbox\"!==t.trace.type&&(l+=(l?\"z: \":\"\")+t.zLabel)):e&&t[r.charAt(0)+\"Label\"]===i?l=t[(\"x\"===r.charAt(0)?\"y\":\"x\")+\"Label\"]||\"\":void 0===t.xLabel?void 0!==t.yLabel&&\"scattercarpet\"!==t.trace.type&&(l=t.yLabel):l=void 0===t.yLabel?t.xLabel:\"(\"+t.xLabel+\", \"+t.yLabel+\")\",!t.text&&0!==t.text||Array.isArray(t.text)||(l+=(l?\"<br>\":\"\")+t.text),void 0!==t.extraText&&(l+=(l?\"<br>\":\"\")+t.extraText),a&&\"\"===l&&!t.hovertemplate&&(\"\"===s&&a.remove(),l=s);var c=n._d3locale,u=t.hovertemplate||!1,f=t.hovertemplateLabels||t,h=t.eventData[0]||{};return u&&(l=(l=o.hovertemplateString(u,f,c,h,t.trace._meta)).replace(C,(function(e,r){return s=R(r,t.nameLength),\"\"}))),[l,s]}function P(t,e,r,i){var a=function(t){return t*r},o=function(t){return t*i};t.each((function(t){var r=n.select(this);if(t.del)return r.remove();var i=r.select(\"text.nums\"),s=t.anchor,l=\"end\"===s?-1:1,c={start:1,end:-1,middle:0}[s],f=c*(A+S),p=f+c*(t.txwidth+S),d=0,g=t.offset,m=\"middle\"===s;m&&(f-=t.tx2width/2,p+=t.txwidth/2+S),e&&(g*=-M,d=t.offset*k),r.select(\"path\").attr(\"d\",m?\"M-\"+a(t.bx/2+t.tx2width/2)+\",\"+o(g-t.by/2)+\"h\"+a(t.bx)+\"v\"+o(t.by)+\"h-\"+a(t.bx)+\"Z\":\"M0,0L\"+a(l*A+d)+\",\"+o(A+g)+\"v\"+o(t.by/2-A)+\"h\"+a(l*t.bx)+\"v-\"+o(t.by)+\"H\"+a(l*A+d)+\"V\"+o(g-A)+\"Z\");var v=d+f,y=g+t.ty0-t.by/2+S,x=t.textAlign||\"auto\";\"auto\"!==x&&(\"left\"===x&&\"start\"!==s?(i.attr(\"text-anchor\",\"start\"),v=m?-t.bx/2-t.tx2width/2+S:-t.bx-S):\"right\"===x&&\"end\"!==s&&(i.attr(\"text-anchor\",\"end\"),v=m?t.bx/2-t.tx2width/2-S:t.bx+S)),i.call(u.positionText,a(v),o(y)),t.tx2width&&(r.select(\"text.name\").call(u.positionText,a(p+c*S+d),o(g+t.ty0-t.by/2+S)),r.select(\"rect\").call(h.setRect,a(p+(c-1)*t.tx2width/2+d),o(g-t.by/2-1),a(t.tx2width),o(t.by+2)))}))}function z(t,e){var r=t.index,n=t.trace||{},a=t.cd[0],s=t.cd[r]||{};function l(t){return t||i(t)&&0===t}var c=Array.isArray(r)?function(t,e){var i=o.castOption(a,r,t);return l(i)?i:o.extractOption({},n,\"\",e)}:function(t,e){return o.extractOption(s,n,t,e)};function u(e,r,n){var i=c(r,n);l(i)&&(t[e]=i)}if(u(\"hoverinfo\",\"hi\",\"hoverinfo\"),u(\"bgcolor\",\"hbg\",\"hoverlabel.bgcolor\"),u(\"borderColor\",\"hbc\",\"hoverlabel.bordercolor\"),u(\"fontFamily\",\"htf\",\"hoverlabel.font.family\"),u(\"fontSize\",\"hts\",\"hoverlabel.font.size\"),u(\"fontColor\",\"htc\",\"hoverlabel.font.color\"),u(\"nameLength\",\"hnl\",\"hoverlabel.namelength\"),u(\"textAlign\",\"hta\",\"hoverlabel.align\"),t.posref=\"y\"===e||\"closest\"===e&&\"h\"===n.orientation?t.xa._offset+(t.x0+t.x1)/2:t.ya._offset+(t.y0+t.y1)/2,t.x0=o.constrain(t.x0,0,t.xa._length),t.x1=o.constrain(t.x1,0,t.xa._length),t.y0=o.constrain(t.y0,0,t.ya._length),t.y1=o.constrain(t.y1,0,t.ya._length),void 0!==t.xLabelVal&&(t.xLabel=\"xLabel\"in t?t.xLabel:g.hoverLabelText(t.xa,t.xLabelVal),t.xVal=t.xa.c2d(t.xLabelVal)),void 0!==t.yLabelVal&&(t.yLabel=\"yLabel\"in t?t.yLabel:g.hoverLabelText(t.ya,t.yLabelVal),t.yVal=t.ya.c2d(t.yLabelVal)),void 0!==t.zLabelVal&&void 0===t.zLabel&&(t.zLabel=String(t.zLabelVal)),!(isNaN(t.xerr)||\"log\"===t.xa.type&&t.xerr<=0)){var f=g.tickText(t.xa,t.xa.c2l(t.xerr),\"hover\").text;void 0!==t.xerrneg?t.xLabel+=\" +\"+f+\" / -\"+g.tickText(t.xa,t.xa.c2l(t.xerrneg),\"hover\").text:t.xLabel+=\" \\xb1 \"+f,\"x\"===e&&(t.distance+=1)}if(!(isNaN(t.yerr)||\"log\"===t.ya.type&&t.yerr<=0)){var h=g.tickText(t.ya,t.ya.c2l(t.yerr),\"hover\").text;void 0!==t.yerrneg?t.yLabel+=\" +\"+h+\" / -\"+g.tickText(t.ya,t.ya.c2l(t.yerrneg),\"hover\").text:t.yLabel+=\" \\xb1 \"+h,\"y\"===e&&(t.distance+=1)}var p=t.hoverinfo||t.trace.hoverinfo;return p&&\"all\"!==p&&(-1===(p=Array.isArray(p)?p:p.split(\"+\")).indexOf(\"x\")&&(t.xLabel=void 0),-1===p.indexOf(\"y\")&&(t.yLabel=void 0),-1===p.indexOf(\"z\")&&(t.zLabel=void 0),-1===p.indexOf(\"text\")&&(t.text=void 0),-1===p.indexOf(\"name\")&&(t.name=void 0)),t}function O(t,e,r){var n,i,o=r.container,s=r.fullLayout,l=s._size,c=r.event,u=!!e.hLinePoint,f=!!e.vLinePoint;if(o.selectAll(\".spikeline\").remove(),f||u){var d=p.combine(s.plot_bgcolor,s.paper_bgcolor);if(u){var m,v,y=e.hLinePoint;n=y&&y.xa,\"cursor\"===(i=y&&y.ya).spikesnap?(m=c.pointerX,v=c.pointerY):(m=n._offset+y.x,v=i._offset+y.y);var x,b,_=a.readability(y.color,d)<1.5?p.contrast(d):y.color,w=i.spikemode,T=i.spikethickness,k=i.spikecolor||_,M=g.getPxPosition(t,i);if(-1!==w.indexOf(\"toaxis\")||-1!==w.indexOf(\"across\")){if(-1!==w.indexOf(\"toaxis\")&&(x=M,b=m),-1!==w.indexOf(\"across\")){var A=i._counterDomainMin,S=i._counterDomainMax;\"free\"===i.anchor&&(A=Math.min(A,i.position),S=Math.max(S,i.position)),x=l.l+A*l.w,b=l.l+S*l.w}o.insert(\"line\",\":first-child\").attr({x1:x,x2:b,y1:v,y2:v,\"stroke-width\":T,stroke:k,\"stroke-dasharray\":h.dashStyle(i.spikedash,T)}).classed(\"spikeline\",!0).classed(\"crisp\",!0),o.insert(\"line\",\":first-child\").attr({x1:x,x2:b,y1:v,y2:v,\"stroke-width\":T+2,stroke:d}).classed(\"spikeline\",!0).classed(\"crisp\",!0)}-1!==w.indexOf(\"marker\")&&o.insert(\"circle\",\":first-child\").attr({cx:M+(\"right\"!==i.side?T:-T),cy:v,r:T,fill:k}).classed(\"spikeline\",!0)}if(f){var E,C,L=e.vLinePoint;n=L&&L.xa,i=L&&L.ya,\"cursor\"===n.spikesnap?(E=c.pointerX,C=c.pointerY):(E=n._offset+L.x,C=i._offset+L.y);var I,P,z=a.readability(L.color,d)<1.5?p.contrast(d):L.color,O=n.spikemode,D=n.spikethickness,R=n.spikecolor||z,F=g.getPxPosition(t,n);if(-1!==O.indexOf(\"toaxis\")||-1!==O.indexOf(\"across\")){if(-1!==O.indexOf(\"toaxis\")&&(I=F,P=C),-1!==O.indexOf(\"across\")){var B=n._counterDomainMin,N=n._counterDomainMax;\"free\"===n.anchor&&(B=Math.min(B,n.position),N=Math.max(N,n.position)),I=l.t+(1-N)*l.h,P=l.t+(1-B)*l.h}o.insert(\"line\",\":first-child\").attr({x1:E,x2:E,y1:I,y2:P,\"stroke-width\":D,stroke:R,\"stroke-dasharray\":h.dashStyle(n.spikedash,D)}).classed(\"spikeline\",!0).classed(\"crisp\",!0),o.insert(\"line\",\":first-child\").attr({x1:E,x2:E,y1:I,y2:P,\"stroke-width\":D+2,stroke:d}).classed(\"spikeline\",!0).classed(\"crisp\",!0)}-1!==O.indexOf(\"marker\")&&o.insert(\"circle\",\":first-child\").attr({cx:E,cy:F-(\"top\"!==n.side?D:-D),r:D,fill:R}).classed(\"spikeline\",!0)}}}function D(t,e){return!e||(e.vLinePoint!==t._spikepoints.vLinePoint||e.hLinePoint!==t._spikepoints.hLinePoint)}function R(t,e){return u.plainText(t||\"\",{len:e,allowedTags:[\"br\",\"sub\",\"sup\",\"b\",\"i\",\"em\"]})}},{\"../../lib\":778,\"../../lib/events\":767,\"../../lib/override_cursor\":789,\"../../lib/svg_text_utils\":803,\"../../plots/cartesian/axes\":828,\"../../registry\":911,\"../color\":643,\"../dragelement\":662,\"../drawing\":665,\"../legend/defaults\":695,\"../legend/draw\":696,\"./constants\":677,\"./helpers\":679,d3:169,\"fast-isnumeric\":241,tinycolor2:576}],681:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../color\"),a=t(\"./helpers\").isUnifiedHover;e.exports=function(t,e,r,o){function s(t){o.font[t]||(o.font[t]=e.legend?e.legend.font[t]:e.font[t])}o=o||{},e&&a(e.hovermode)&&(o.font||(o.font={}),s(\"size\"),s(\"family\"),s(\"color\"),e.legend?(o.bgcolor||(o.bgcolor=i.combine(e.legend.bgcolor,e.paper_bgcolor)),o.bordercolor||(o.bordercolor=e.legend.bordercolor)):o.bgcolor||(o.bgcolor=e.paper_bgcolor)),r(\"hoverlabel.bgcolor\",o.bgcolor),r(\"hoverlabel.bordercolor\",o.bordercolor),r(\"hoverlabel.namelength\",o.namelength),n.coerceFont(r,\"hoverlabel.font\",o.font),r(\"hoverlabel.align\",o.align)}},{\"../../lib\":778,\"../color\":643,\"./helpers\":679}],682:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e,r){function a(r,a){return void 0!==e[r]?e[r]:n.coerce(t,e,i,r,a)}var o,s=a(\"clickmode\");return e._has(\"cartesian\")?s.indexOf(\"select\")>-1?o=\"closest\":(e._isHoriz=function(t,e){for(var r=e._scatterStackOpts||{},n=0;n<t.length;n++){var i=t[n],a=i.xaxis+i.yaxis,o=(r[a]||{})[i.stackgroup]||{};if(\"h\"!==i.orientation&&\"h\"!==o.orientation)return!1}return!0}(r,e),o=e._isHoriz?\"y\":\"x\"):o=\"closest\",a(\"hovermode\",o)}},{\"../../lib\":778,\"./layout_attributes\":684}],683:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../dragelement\"),o=t(\"./helpers\"),s=t(\"./layout_attributes\"),l=t(\"./hover\");e.exports={moduleType:\"component\",name:\"fx\",constants:t(\"./constants\"),schema:{layout:s},attributes:t(\"./attributes\"),layoutAttributes:s,supplyLayoutGlobalDefaults:t(\"./layout_global_defaults\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),getDistanceFunction:o.getDistanceFunction,getClosest:o.getClosest,inbox:o.inbox,quadrature:o.quadrature,appendArrayPointValue:o.appendArrayPointValue,castHoverOption:function(t,e,r){return i.castOption(t,e,\"hoverlabel.\"+r)},castHoverinfo:function(t,e,r){return i.castOption(t,r,\"hoverinfo\",(function(r){return i.coerceHoverinfo({hoverinfo:r},{_module:t._module},e)}))},hover:l.hover,unhover:a.unhover,loneHover:l.loneHover,loneUnhover:function(t){var e=i.isD3Selection(t)?t:n.select(t);e.selectAll(\"g.hovertext\").remove(),e.selectAll(\".spikeline\").remove()},click:t(\"./click\")}},{\"../../lib\":778,\"../dragelement\":662,\"./attributes\":674,\"./calc\":675,\"./click\":676,\"./constants\":677,\"./defaults\":678,\"./helpers\":679,\"./hover\":680,\"./layout_attributes\":684,\"./layout_defaults\":685,\"./layout_global_defaults\":686,d3:169}],684:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),i=t(\"../../plots/font_attributes\")({editType:\"none\"});i.family.dflt=n.HOVERFONT,i.size.dflt=n.HOVERFONTSIZE,e.exports={clickmode:{valType:\"flaglist\",flags:[\"event\",\"select\"],dflt:\"event\",editType:\"plot\",extras:[\"none\"]},dragmode:{valType:\"enumerated\",values:[\"zoom\",\"pan\",\"select\",\"lasso\",\"drawclosedpath\",\"drawopenpath\",\"drawline\",\"drawrect\",\"drawcircle\",\"orbit\",\"turntable\",!1],dflt:\"zoom\",editType:\"modebar\"},hovermode:{valType:\"enumerated\",values:[\"x\",\"y\",\"closest\",!1,\"x unified\",\"y unified\"],editType:\"modebar\"},hoverdistance:{valType:\"integer\",min:-1,dflt:20,editType:\"none\"},spikedistance:{valType:\"integer\",min:-1,dflt:20,editType:\"none\"},hoverlabel:{bgcolor:{valType:\"color\",editType:\"none\"},bordercolor:{valType:\"color\",editType:\"none\"},font:i,align:{valType:\"enumerated\",values:[\"left\",\"right\",\"auto\"],dflt:\"auto\",editType:\"none\"},namelength:{valType:\"integer\",min:-1,dflt:15,editType:\"none\"},editType:\"none\"},selectdirection:{valType:\"enumerated\",values:[\"h\",\"v\",\"d\",\"any\"],dflt:\"any\",editType:\"none\"}}},{\"../../plots/font_attributes\":856,\"./constants\":677}],685:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./helpers\").isUnifiedHover,a=t(\"./layout_attributes\"),o=t(\"./hovermode_defaults\"),s=t(\"./hoverlabel_defaults\");e.exports=function(t,e,r){function l(r,i){return n.coerce(t,e,a,r,i)}var c=o(t,e,r);c&&(l(\"hoverdistance\"),l(\"spikedistance\",i(c)?-1:void 0)),\"select\"===l(\"dragmode\")&&l(\"selectdirection\");var u=e._has(\"mapbox\"),f=e._has(\"geo\"),h=e._basePlotModules.length;\"zoom\"===e.dragmode&&((u||f)&&1===h||u&&f&&2===h)&&(e.dragmode=\"pan\"),s(t,e,l)}},{\"../../lib\":778,\"./helpers\":679,\"./hoverlabel_defaults\":681,\"./hovermode_defaults\":682,\"./layout_attributes\":684}],686:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./hoverlabel_defaults\"),a=t(\"./layout_attributes\");e.exports=function(t,e){i(t,e,(function(r,i){return n.coerce(t,e,a,r,i)}))}},{\"../../lib\":778,\"./hoverlabel_defaults\":681,\"./layout_attributes\":684}],687:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../lib/regex\").counter,a=t(\"../../plots/domain\").attributes,o=t(\"../../plots/cartesian/constants\").idRegex,s=t(\"../../plot_api/plot_template\"),l={rows:{valType:\"integer\",min:1,editType:\"plot\"},roworder:{valType:\"enumerated\",values:[\"top to bottom\",\"bottom to top\"],dflt:\"top to bottom\",editType:\"plot\"},columns:{valType:\"integer\",min:1,editType:\"plot\"},subplots:{valType:\"info_array\",freeLength:!0,dimensions:2,items:{valType:\"enumerated\",values:[i(\"xy\").toString(),\"\"],editType:\"plot\"},editType:\"plot\"},xaxes:{valType:\"info_array\",freeLength:!0,items:{valType:\"enumerated\",values:[o.x.toString(),\"\"],editType:\"plot\"},editType:\"plot\"},yaxes:{valType:\"info_array\",freeLength:!0,items:{valType:\"enumerated\",values:[o.y.toString(),\"\"],editType:\"plot\"},editType:\"plot\"},pattern:{valType:\"enumerated\",values:[\"independent\",\"coupled\"],dflt:\"coupled\",editType:\"plot\"},xgap:{valType:\"number\",min:0,max:1,editType:\"plot\"},ygap:{valType:\"number\",min:0,max:1,editType:\"plot\"},domain:a({name:\"grid\",editType:\"plot\",noGridCell:!0},{}),xside:{valType:\"enumerated\",values:[\"bottom\",\"bottom plot\",\"top plot\",\"top\"],dflt:\"bottom plot\",editType:\"plot\"},yside:{valType:\"enumerated\",values:[\"left\",\"left plot\",\"right plot\",\"right\"],dflt:\"left plot\",editType:\"plot\"},editType:\"plot\"};function c(t,e,r){var n=e[r+\"axes\"],i=Object.keys((t._splomAxes||{})[r]||{});return Array.isArray(n)?n:i.length?i:void 0}function u(t,e,r,n,i,a){var o=e(t+\"gap\",r),s=e(\"domain.\"+t);e(t+\"side\",n);for(var l=new Array(i),c=s[0],u=(s[1]-c)/(i-o),f=u*(1-o),h=0;h<i;h++){var p=c+u*h;l[a?i-1-h:h]=[p,p+f]}return l}function f(t,e,r,n,i){var a,o=new Array(r);function s(t,r){-1!==e.indexOf(r)&&void 0===n[r]?(o[t]=r,n[r]=t):o[t]=\"\"}if(Array.isArray(t))for(a=0;a<r;a++)s(a,t[a]);else for(s(0,i),a=1;a<r;a++)s(a,i+(a+1));return o}e.exports={moduleType:\"component\",name:\"grid\",schema:{layout:{grid:l}},layoutAttributes:l,sizeDefaults:function(t,e){var r=t.grid||{},i=c(e,r,\"x\"),a=c(e,r,\"y\");if(t.grid||i||a){var o,f,h=Array.isArray(r.subplots)&&Array.isArray(r.subplots[0]),p=Array.isArray(i),d=Array.isArray(a),g=p&&i!==r.xaxes&&d&&a!==r.yaxes;h?(o=r.subplots.length,f=r.subplots[0].length):(d&&(o=a.length),p&&(f=i.length));var m=s.newContainer(e,\"grid\"),v=k(\"rows\",o),y=k(\"columns\",f);if(v*y>1){if(!h&&!p&&!d)\"independent\"===k(\"pattern\")&&(h=!0);m._hasSubplotGrid=h;var x,b,_=\"top to bottom\"===k(\"roworder\"),w=h?.2:.1,T=h?.3:.1;g&&e._splomGridDflt&&(x=e._splomGridDflt.xside,b=e._splomGridDflt.yside),m._domains={x:u(\"x\",k,w,x,y),y:u(\"y\",k,T,b,v,_)}}else delete e.grid}function k(t,e){return n.coerce(r,m,l,t,e)}},contentDefaults:function(t,e){var r=e.grid;if(r&&r._domains){var n,i,a,o,s,l,u,h=t.grid||{},p=e._subplots,d=r._hasSubplotGrid,g=r.rows,m=r.columns,v=\"independent\"===r.pattern,y=r._axisMap={};if(d){var x=h.subplots||[];l=r.subplots=new Array(g);var b=1;for(n=0;n<g;n++){var _=l[n]=new Array(m),w=x[n]||[];for(i=0;i<m;i++)if(v?(s=1===b?\"xy\":\"x\"+b+\"y\"+b,b++):s=w[i],_[i]=\"\",-1!==p.cartesian.indexOf(s)){if(u=s.indexOf(\"y\"),a=s.slice(0,u),o=s.slice(u),void 0!==y[a]&&y[a]!==i||void 0!==y[o]&&y[o]!==n)continue;_[i]=s,y[a]=i,y[o]=n}}}else{var T=c(e,h,\"x\"),k=c(e,h,\"y\");r.xaxes=f(T,p.xaxis,m,y,\"x\"),r.yaxes=f(k,p.yaxis,g,y,\"y\")}var M=r._anchors={},A=\"top to bottom\"===r.roworder;for(var S in y){var E,C,L,I=S.charAt(0),P=r[I+\"side\"];if(P.length<8)M[S]=\"free\";else if(\"x\"===I){if(\"t\"===P.charAt(0)===A?(E=0,C=1,L=g):(E=g-1,C=-1,L=-1),d){var z=y[S];for(n=E;n!==L;n+=C)if((s=l[n][z])&&(u=s.indexOf(\"y\"),s.slice(0,u)===S)){M[S]=s.slice(u);break}}else for(n=E;n!==L;n+=C)if(o=r.yaxes[n],-1!==p.cartesian.indexOf(S+o)){M[S]=o;break}}else if(\"l\"===P.charAt(0)?(E=0,C=1,L=m):(E=m-1,C=-1,L=-1),d){var O=y[S];for(n=E;n!==L;n+=C)if((s=l[O][n])&&(u=s.indexOf(\"y\"),s.slice(u)===S)){M[S]=s.slice(0,u);break}}else for(n=E;n!==L;n+=C)if(a=r.xaxes[n],-1!==p.cartesian.indexOf(a+S)){M[S]=a;break}}}}}},{\"../../lib\":778,\"../../lib/regex\":795,\"../../plot_api/plot_template\":817,\"../../plots/cartesian/constants\":834,\"../../plots/domain\":855}],688:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/constants\"),i=t(\"../../plot_api/plot_template\").templatedArray;t(\"../../constants/axis_placeable_objects\");e.exports=i(\"image\",{visible:{valType:\"boolean\",dflt:!0,editType:\"arraydraw\"},source:{valType:\"string\",editType:\"arraydraw\"},layer:{valType:\"enumerated\",values:[\"below\",\"above\"],dflt:\"above\",editType:\"arraydraw\"},sizex:{valType:\"number\",dflt:0,editType:\"arraydraw\"},sizey:{valType:\"number\",dflt:0,editType:\"arraydraw\"},sizing:{valType:\"enumerated\",values:[\"fill\",\"contain\",\"stretch\"],dflt:\"contain\",editType:\"arraydraw\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"arraydraw\"},x:{valType:\"any\",dflt:0,editType:\"arraydraw\"},y:{valType:\"any\",dflt:0,editType:\"arraydraw\"},xanchor:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"left\",editType:\"arraydraw\"},yanchor:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"top\",editType:\"arraydraw\"},xref:{valType:\"enumerated\",values:[\"paper\",n.idRegex.x.toString()],dflt:\"paper\",editType:\"arraydraw\"},yref:{valType:\"enumerated\",values:[\"paper\",n.idRegex.y.toString()],dflt:\"paper\",editType:\"arraydraw\"},editType:\"arraydraw\"})},{\"../../constants/axis_placeable_objects\":746,\"../../plot_api/plot_template\":817,\"../../plots/cartesian/constants\":834}],689:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib/to_log_range\");e.exports=function(t,e,r,a){e=e||{};var o=\"log\"===r&&\"linear\"===e.type,s=\"linear\"===r&&\"log\"===e.type;if(o||s)for(var l,c,u=t._fullLayout.images,f=e._id.charAt(0),h=0;h<u.length;h++)if(c=\"images[\"+h+\"].\",(l=u[h])[f+\"ref\"]===e._id){var p=l[f],d=l[\"size\"+f],g=null,m=null;if(o){g=i(p,e.range);var v=d/Math.pow(10,g)/2;m=2*Math.log(v+Math.sqrt(1+v*v))/Math.LN10}else m=(g=Math.pow(10,p))*(Math.pow(10,d/2)-Math.pow(10,-d/2));n(g)?n(m)||(m=null):(g=null,m=null),a(c+f,g),a(c+\"size\"+f,m)}}},{\"../../lib/to_log_range\":805,\"fast-isnumeric\":241}],690:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../plots/array_container_defaults\"),o=t(\"./attributes\");function s(t,e,r){function a(r,i){return n.coerce(t,e,o,r,i)}var s=a(\"source\");if(!a(\"visible\",!!s))return e;a(\"layer\"),a(\"xanchor\"),a(\"yanchor\"),a(\"sizex\"),a(\"sizey\"),a(\"sizing\"),a(\"opacity\");for(var l={_fullLayout:r},c=[\"x\",\"y\"],u=0;u<2;u++){var f=c[u],h=i.coerceRef(t,e,l,f,\"paper\",void 0);if(\"paper\"!==h)i.getFromId(l,h)._imgIndices.push(e._index);i.coercePosition(e,l,a,h,f,0)}return e}e.exports=function(t,e){a(t,e,{name:\"images\",handleItemDefaults:s})}},{\"../../lib\":778,\"../../plots/array_container_defaults\":823,\"../../plots/cartesian/axes\":828,\"./attributes\":688}],691:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../drawing\"),a=t(\"../../plots/cartesian/axes\"),o=t(\"../../plots/cartesian/axis_ids\"),s=t(\"../../constants/xmlns_namespaces\");e.exports=function(t){var e,r,l=t._fullLayout,c=[],u={},f=[];for(r=0;r<l.images.length;r++){var h=l.images[r];if(h.visible)if(\"below\"===h.layer&&\"paper\"!==h.xref&&\"paper\"!==h.yref){e=o.ref2id(h.xref)+o.ref2id(h.yref);var p=l._plots[e];if(!p){f.push(h);continue}p.mainplot&&(e=p.mainplot.id),u[e]||(u[e]=[]),u[e].push(h)}else\"above\"===h.layer?c.push(h):f.push(h)}var d={left:{sizing:\"xMin\",offset:0},center:{sizing:\"xMid\",offset:-.5},right:{sizing:\"xMax\",offset:-1}},g={top:{sizing:\"YMin\",offset:0},middle:{sizing:\"YMid\",offset:-.5},bottom:{sizing:\"YMax\",offset:-1}};function m(e){var r=n.select(this);if(this._imgSrc!==e.source)if(r.attr(\"xmlns\",s.svg),e.source&&\"data:\"===e.source.slice(0,5))r.attr(\"xlink:href\",e.source),this._imgSrc=e.source;else{var i=new Promise(function(t){var n=new Image;function i(){r.remove(),t()}this.img=n,n.setAttribute(\"crossOrigin\",\"anonymous\"),n.onerror=i,n.onload=function(){var e=document.createElement(\"canvas\");e.width=this.width,e.height=this.height,e.getContext(\"2d\").drawImage(this,0,0);var n=e.toDataURL(\"image/png\");r.attr(\"xlink:href\",n),t()},r.on(\"error\",i),n.src=e.source,this._imgSrc=e.source}.bind(this));t._promises.push(i)}}function v(e){var r,o,s=n.select(this),c=a.getFromId(t,e.xref),u=a.getFromId(t,e.yref),f=\"domain\"===a.getRefType(e.xref),h=\"domain\"===a.getRefType(e.yref),p=l._size;r=void 0!==c?\"string\"==typeof e.xref&&f?c._length*e.sizex:Math.abs(c.l2p(e.sizex)-c.l2p(0)):e.sizex*p.w,o=void 0!==u?\"string\"==typeof e.yref&&h?u._length*e.sizey:Math.abs(u.l2p(e.sizey)-u.l2p(0)):e.sizey*p.h;var m,v,y=r*d[e.xanchor].offset,x=o*g[e.yanchor].offset,b=d[e.xanchor].sizing+g[e.yanchor].sizing;switch(m=void 0!==c?\"string\"==typeof e.xref&&f?c._length*e.x+c._offset:c.r2p(e.x)+c._offset:e.x*p.w+p.l,m+=y,v=void 0!==u?\"string\"==typeof e.yref&&h?u._length*(1-e.y)+u._offset:u.r2p(e.y)+u._offset:p.h-e.y*p.h+p.t,v+=x,e.sizing){case\"fill\":b+=\" slice\";break;case\"stretch\":b=\"none\"}s.attr({x:m,y:v,width:r,height:o,preserveAspectRatio:b,opacity:e.opacity});var _=(c&&\"domain\"!==a.getRefType(e.xref)?c._id:\"\")+(u&&\"domain\"!==a.getRefType(e.yref)?u._id:\"\");i.setClipUrl(s,_?\"clip\"+l._uid+_:null,t)}var y=l._imageLowerLayer.selectAll(\"image\").data(f),x=l._imageUpperLayer.selectAll(\"image\").data(c);y.enter().append(\"image\"),x.enter().append(\"image\"),y.exit().remove(),x.exit().remove(),y.each((function(t){m.bind(this)(t),v.bind(this)(t)})),x.each((function(t){m.bind(this)(t),v.bind(this)(t)}));var b=Object.keys(l._plots);for(r=0;r<b.length;r++){e=b[r];var _=l._plots[e];if(_.imagelayer){var w=_.imagelayer.selectAll(\"image\").data(u[e]||[]);w.enter().append(\"image\"),w.exit().remove(),w.each((function(t){m.bind(this)(t),v.bind(this)(t)}))}}}},{\"../../constants/xmlns_namespaces\":754,\"../../plots/cartesian/axes\":828,\"../../plots/cartesian/axis_ids\":831,\"../drawing\":665,d3:169}],692:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"images\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),includeBasePlot:t(\"../../plots/cartesian/include_components\")(\"images\"),draw:t(\"./draw\"),convertCoords:t(\"./convert_coords\")}},{\"../../plots/cartesian/include_components\":840,\"./attributes\":688,\"./convert_coords\":689,\"./defaults\":690,\"./draw\":691}],693:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),i=t(\"../color/attributes\");e.exports={bgcolor:{valType:\"color\",editType:\"legend\"},bordercolor:{valType:\"color\",dflt:i.defaultLine,editType:\"legend\"},borderwidth:{valType:\"number\",min:0,dflt:0,editType:\"legend\"},font:n({editType:\"legend\"}),orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],dflt:\"v\",editType:\"legend\"},traceorder:{valType:\"flaglist\",flags:[\"reversed\",\"grouped\"],extras:[\"normal\"],editType:\"legend\"},tracegroupgap:{valType:\"number\",min:0,dflt:10,editType:\"legend\"},itemsizing:{valType:\"enumerated\",values:[\"trace\",\"constant\"],dflt:\"trace\",editType:\"legend\"},itemwidth:{valType:\"number\",min:30,dflt:30,editType:\"legend\"},itemclick:{valType:\"enumerated\",values:[\"toggle\",\"toggleothers\",!1],dflt:\"toggle\",editType:\"legend\"},itemdoubleclick:{valType:\"enumerated\",values:[\"toggle\",\"toggleothers\",!1],dflt:\"toggleothers\",editType:\"legend\"},x:{valType:\"number\",min:-2,max:3,editType:\"legend\"},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"left\",editType:\"legend\"},y:{valType:\"number\",min:-2,max:3,editType:\"legend\"},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],editType:\"legend\"},uirevision:{valType:\"any\",editType:\"none\"},valign:{valType:\"enumerated\",values:[\"top\",\"middle\",\"bottom\"],dflt:\"middle\",editType:\"legend\"},title:{text:{valType:\"string\",dflt:\"\",editType:\"legend\"},font:n({editType:\"legend\"}),side:{valType:\"enumerated\",values:[\"top\",\"left\",\"top left\"],editType:\"legend\"},editType:\"legend\"},editType:\"legend\"}},{\"../../plots/font_attributes\":856,\"../color/attributes\":642}],694:[function(t,e,r){\"use strict\";e.exports={scrollBarWidth:6,scrollBarMinHeight:20,scrollBarColor:\"#808BA4\",scrollBarMargin:4,scrollBarEnterAttrs:{rx:20,ry:3,width:0,height:0},titlePad:2,itemGap:5}},{}],695:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"../../plot_api/plot_template\"),o=t(\"./attributes\"),s=t(\"../../plots/layout_attributes\"),l=t(\"./helpers\");e.exports=function(t,e,r){for(var c=t.legend||{},u=0,f=!1,h=\"normal\",p=0;p<r.length;p++){var d=r[p];d.visible&&((d.showlegend||d._dfltShowLegend&&!(d._module&&d._module.attributes&&d._module.attributes.showlegend&&!1===d._module.attributes.showlegend.dflt))&&(u++,d.showlegend&&(f=!0,(n.traceIs(d,\"pie-like\")||!0===d._input.showlegend)&&u++)),(n.traceIs(d,\"bar\")&&\"stack\"===e.barmode||-1!==[\"tonextx\",\"tonexty\"].indexOf(d.fill))&&(h=l.isGrouped({traceorder:h})?\"grouped+reversed\":\"reversed\"),void 0!==d.legendgroup&&\"\"!==d.legendgroup&&(h=l.isReversed({traceorder:h})?\"reversed+grouped\":\"grouped\"))}var g=i.coerce(t,e,s,\"showlegend\",f&&u>1);if(!1!==g||c.uirevision){var m=a.newContainer(e,\"legend\");if(_(\"uirevision\",e.uirevision),!1!==g){_(\"bgcolor\",e.paper_bgcolor),_(\"bordercolor\"),_(\"borderwidth\"),i.coerceFont(_,\"font\",e.font);var v,y,x,b=_(\"orientation\");\"h\"===b?(v=0,n.getComponentMethod(\"rangeslider\",\"isVisible\")(t.xaxis)?(y=1.1,x=\"bottom\"):(y=-.1,x=\"top\")):(v=1.02,y=1,x=\"auto\"),_(\"traceorder\",h),l.isGrouped(e.legend)&&_(\"tracegroupgap\"),_(\"itemsizing\"),_(\"itemwidth\"),_(\"itemclick\"),_(\"itemdoubleclick\"),_(\"x\",v),_(\"xanchor\"),_(\"y\",y),_(\"yanchor\",x),_(\"valign\"),i.noneOrAll(c,m,[\"x\",\"y\"]),_(\"title.text\")&&(_(\"title.side\",\"h\"===b?\"left\":\"top\"),i.coerceFont(_,\"title.font\",e.font))}}function _(t,e){return i.coerce(c,m,o,t,e)}}},{\"../../lib\":778,\"../../plot_api/plot_template\":817,\"../../plots/layout_attributes\":882,\"../../registry\":911,\"./attributes\":693,\"./helpers\":699}],696:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../lib/events\"),l=t(\"../dragelement\"),c=t(\"../drawing\"),u=t(\"../color\"),f=t(\"../../lib/svg_text_utils\"),h=t(\"./handle_click\"),p=t(\"./constants\"),d=t(\"../../constants/alignment\"),g=d.LINE_SPACING,m=d.FROM_TL,v=d.FROM_BR,y=t(\"./get_legend_data\"),x=t(\"./style\"),b=t(\"./helpers\");function _(t,e,r,n,i){var a=r.data()[0][0].trace,l={event:i,node:r.node(),curveNumber:a.index,expandedIndex:a._expandedIndex,data:t.data,layout:t.layout,frames:t._transitionData._frames,config:t._context,fullData:t._fullData,fullLayout:t._fullLayout};if(a._group&&(l.group=a._group),o.traceIs(a,\"pie-like\")&&(l.label=r.datum()[0].label),!1!==s.triggerHandler(t,\"plotly_legendclick\",l))if(1===n)e._clickTimeout=setTimeout((function(){h(r,t,n)}),t._context.doubleClickDelay);else if(2===n){e._clickTimeout&&clearTimeout(e._clickTimeout),t._legendMouseDownTime=0,!1!==s.triggerHandler(t,\"plotly_legenddoubleclick\",l)&&h(r,t,n)}}function w(t,e,r){var n,a=t.data()[0][0],s=a.trace,l=o.traceIs(s,\"pie-like\"),u=s.index,h=r._main&&e._context.edits.legendText&&!l,d=r._maxNameLength;r.entries?n=a.text:(n=l?a.label:s.name,s._meta&&(n=i.templateString(n,s._meta)));var g=i.ensureSingle(t,\"text\",\"legendtext\");g.attr(\"text-anchor\",\"start\").call(c.font,r.font).text(h?T(n,d):n);var m=r.itemwidth+2*p.itemGap;f.positionText(g,m,0),h?g.call(f.makeEditable,{gd:e,text:n}).call(M,t,e,r).on(\"edit\",(function(n){this.text(T(n,d)).call(M,t,e,r);var s=a.trace._fullInput||{},l={};if(o.hasTransform(s,\"groupby\")){var c=o.getTransformIndices(s,\"groupby\"),f=c[c.length-1],h=i.keyedContainer(s,\"transforms[\"+f+\"].styles\",\"target\",\"value.name\");h.set(a.trace._group,n),l=h.constructUpdate()}else l.name=n;return o.call(\"_guiRestyle\",e,l,u)})):M(g,t,e,r)}function T(t,e){var r=Math.max(4,e);if(t&&t.trim().length>=r/2)return t;for(var n=r-(t=t||\"\").length;n>0;n--)t+=\" \";return t}function k(t,e){var r,a=e._context.doubleClickDelay,o=1,s=i.ensureSingle(t,\"rect\",\"legendtoggle\",(function(t){e._context.staticPlot||t.style(\"cursor\",\"pointer\").attr(\"pointer-events\",\"all\"),t.call(u.fill,\"rgba(0,0,0,0)\")}));e._context.staticPlot||(s.on(\"mousedown\",(function(){(r=(new Date).getTime())-e._legendMouseDownTime<a?o+=1:(o=1,e._legendMouseDownTime=r)})),s.on(\"mouseup\",(function(){if(!e._dragged&&!e._editing){var r=e._fullLayout.legend;(new Date).getTime()-e._legendMouseDownTime>a&&(o=Math.max(o-1,1)),_(e,r,t,o,n.event)}})))}function M(t,e,r,n){n._main||t.attr(\"data-notex\",!0),f.convertToTspans(t,r,(function(){!function(t,e,r){var n=t.data()[0][0];if(r._main&&n&&!n.trace.showlegend)return void t.remove();var i=t.select(\"g[class*=math-group]\"),a=i.node();r||(r=e._fullLayout.legend);var o,s,l=r.borderwidth,u=(n?r:r.title).font.size*g;if(a){var h=c.bBox(a);o=h.height,s=h.width,n?c.setTranslate(i,0,.25*o):c.setTranslate(i,l,.75*o+l)}else{var d=t.select(n?\".legendtext\":\".legendtitletext\"),m=f.lineCount(d),v=d.node();o=u*m,s=v?c.bBox(v).width:0;var y=u*((m-1)/2-.3);if(n){var x=r.itemwidth+2*p.itemGap;f.positionText(d,x,-y)}else f.positionText(d,p.titlePad+l,u+l)}n?(n.lineHeight=u,n.height=Math.max(o,16)+3,n.width=s):(r._titleWidth=s,r._titleHeight=o)}(e,r,n)}))}function A(t){return i.isRightAnchor(t)?\"right\":i.isCenterAnchor(t)?\"center\":\"left\"}function S(t){return i.isBottomAnchor(t)?\"bottom\":i.isMiddleAnchor(t)?\"middle\":\"top\"}e.exports=function(t,e){var r,s=t._fullLayout,f=\"legend\"+s._uid;if(e?(r=e.layer,f+=\"-hover\"):((e=s.legend||{})._main=!0,r=s._infolayer),r){var h;if(t._legendMouseDownTime||(t._legendMouseDownTime=0),e._main){if(!t.calcdata)return;h=s.showlegend&&y(t.calcdata,e)}else{if(!e.entries)return;h=y(e.entries,e)}var d=s.hiddenlabels||[];if(e._main&&(!s.showlegend||!h.length))return r.selectAll(\".legend\").remove(),s._topdefs.select(\"#\"+f).remove(),a.autoMargin(t,\"legend\");var g=i.ensureSingle(r,\"g\",\"legend\",(function(t){e._main&&t.attr(\"pointer-events\",\"all\")})),T=i.ensureSingleById(s._topdefs,\"clipPath\",f,(function(t){t.append(\"rect\")})),E=i.ensureSingle(g,\"rect\",\"bg\",(function(t){t.attr(\"shape-rendering\",\"crispEdges\")}));E.call(u.stroke,e.bordercolor).call(u.fill,e.bgcolor).style(\"stroke-width\",e.borderwidth+\"px\");var C=i.ensureSingle(g,\"g\",\"scrollbox\"),L=e.title;if(e._titleWidth=0,e._titleHeight=0,L.text){var I=i.ensureSingle(C,\"text\",\"legendtitletext\");I.attr(\"text-anchor\",\"start\").call(c.font,L.font).text(L.text),M(I,C,t,e)}else C.selectAll(\".legendtitletext\").remove();var P=i.ensureSingle(g,\"rect\",\"scrollbar\",(function(t){t.attr(p.scrollBarEnterAttrs).call(u.fill,p.scrollBarColor)})),z=C.selectAll(\"g.groups\").data(h);z.enter().append(\"g\").attr(\"class\",\"groups\"),z.exit().remove();var O=z.selectAll(\"g.traces\").data(i.identity);O.enter().append(\"g\").attr(\"class\",\"traces\"),O.exit().remove(),O.style(\"opacity\",(function(t){var e=t[0].trace;return o.traceIs(e,\"pie-like\")?-1!==d.indexOf(t[0].label)?.5:1:\"legendonly\"===e.visible?.5:1})).each((function(){n.select(this).call(w,t,e)})).call(x,t,e).each((function(){e._main&&n.select(this).call(k,t)})),i.syncOrAsync([a.previousPromises,function(){return function(t,e,r,i){var a=t._fullLayout;i||(i=a.legend);var o=a._size,s=b.isVertical(i),l=b.isGrouped(i),u=i.borderwidth,f=2*u,h=p.itemGap,d=i.itemwidth+2*h,g=2*(u+h),m=S(i),v=i.y<0||0===i.y&&\"top\"===m,y=i.y>1||1===i.y&&\"bottom\"===m;i._maxHeight=Math.max(v||y?a.height/2:o.h,30);var x=0;i._width=0,i._height=0;var _=function(t){var e=0,r=0,n=t.title.side;n&&(-1!==n.indexOf(\"left\")&&(e=t._titleWidth),-1!==n.indexOf(\"top\")&&(r=t._titleHeight));return[e,r]}(i);if(s)r.each((function(t){var e=t[0].height;c.setTranslate(this,u+_[0],u+_[1]+i._height+e/2+h),i._height+=e,i._width=Math.max(i._width,t[0].width)})),x=d+i._width,i._width+=h+d+f,i._height+=g,l&&(e.each((function(t,e){c.setTranslate(this,0,e*i.tracegroupgap)})),i._height+=(i._lgroupsLength-1)*i.tracegroupgap);else{var w=A(i),T=i.x<0||0===i.x&&\"right\"===w,k=i.x>1||1===i.x&&\"left\"===w,M=y||v,E=a.width/2;i._maxWidth=Math.max(T?M&&\"left\"===w?o.l+o.w:E:k?M&&\"right\"===w?o.r+o.w:E:o.w,2*d);var C=0,L=0;r.each((function(t){var e=t[0].width+d;C=Math.max(C,e),L+=e})),x=null;var I=0;if(l){var P=0,z=0,O=0;e.each((function(){var t=0,e=0;n.select(this).selectAll(\"g.traces\").each((function(r){var n=r[0].height;c.setTranslate(this,_[0],_[1]+u+h+n/2+e),e+=n,t=Math.max(t,d+r[0].width)})),P=Math.max(P,e);var r=t+h;r+u+z>i._maxWidth&&(I=Math.max(I,z),z=0,O+=P+i.tracegroupgap,P=e),c.setTranslate(this,z,O),z+=r})),i._width=Math.max(I,z)+u,i._height=O+P+g}else{var D=r.size(),R=L+f+(D-1)*h<i._maxWidth,F=0,B=0,N=0,j=0;r.each((function(t){var e=t[0].height,r=d+t[0].width,n=(R?r:C)+h;n+u+B-h>=i._maxWidth&&(I=Math.max(I,j),B=0,N+=F,i._height+=F,F=0),c.setTranslate(this,_[0]+u+B,_[1]+u+N+e/2+h),j=B+r+h,B+=n,F=Math.max(F,e)})),R?(i._width=B+f,i._height=F+g):(i._width=Math.max(I,j)+f,i._height+=F+g)}}i._width=Math.ceil(Math.max(i._width+_[0],i._titleWidth+2*(u+p.titlePad))),i._height=Math.ceil(Math.max(i._height+_[1],i._titleHeight+2*(u+p.itemGap))),i._effHeight=Math.min(i._height,i._maxHeight);var U=t._context.edits,V=U.legendText||U.legendPosition;r.each((function(t){var e=n.select(this).select(\".legendtoggle\"),r=t[0].height,i=V?d:x||d+t[0].width;s||(i+=h/2),c.setRect(e,0,-r/2,i,r)}))}(t,z,O,e)},function(){if(!e._main||!function(t){var e=t._fullLayout.legend,r=A(e),n=S(e);return a.autoMargin(t,\"legend\",{x:e.x,y:e.y,l:e._width*m[r],r:e._width*v[r],b:e._effHeight*v[n],t:e._effHeight*m[n]})}(t)){var u,h,d,y,x=s._size,b=e.borderwidth,w=x.l+x.w*e.x-m[A(e)]*e._width,k=x.t+x.h*(1-e.y)-m[S(e)]*e._effHeight;if(e._main&&s.margin.autoexpand){var M=w,L=k;w=i.constrain(w,0,s.width-e._width),k=i.constrain(k,0,s.height-e._effHeight),w!==M&&i.log(\"Constrain legend.x to make legend fit inside graph\"),k!==L&&i.log(\"Constrain legend.y to make legend fit inside graph\")}if(e._main&&c.setTranslate(g,w,k),P.on(\".drag\",null),g.on(\"wheel\",null),!e._main||e._height<=e._maxHeight||t._context.staticPlot){var I=e._effHeight;e._main||(I=e._height),E.attr({width:e._width-b,height:I-b,x:b/2,y:b/2}),c.setTranslate(C,0,0),T.select(\"rect\").attr({width:e._width-2*b,height:I-2*b,x:b,y:b}),c.setClipUrl(C,f,t),c.setRect(P,0,0,0,0),delete e._scrollY}else{var z,O,D,R=Math.max(p.scrollBarMinHeight,e._effHeight*e._effHeight/e._height),F=e._effHeight-R-2*p.scrollBarMargin,B=e._height-e._effHeight,N=F/B,j=Math.min(e._scrollY||0,B);E.attr({width:e._width-2*b+p.scrollBarWidth+p.scrollBarMargin,height:e._effHeight-b,x:b/2,y:b/2}),T.select(\"rect\").attr({width:e._width-2*b+p.scrollBarWidth+p.scrollBarMargin,height:e._effHeight-2*b,x:b,y:b+j}),c.setClipUrl(C,f,t),q(j,R,N),g.on(\"wheel\",(function(){q(j=i.constrain(e._scrollY+n.event.deltaY/F*B,0,B),R,N),0!==j&&j!==B&&n.event.preventDefault()}));var U=n.behavior.drag().on(\"dragstart\",(function(){var t=n.event.sourceEvent;z=\"touchstart\"===t.type?t.changedTouches[0].clientY:t.clientY,D=j})).on(\"drag\",(function(){var t=n.event.sourceEvent;2===t.buttons||t.ctrlKey||(O=\"touchmove\"===t.type?t.changedTouches[0].clientY:t.clientY,q(j=function(t,e,r){var n=(r-e)/N+t;return i.constrain(n,0,B)}(D,z,O),R,N))}));P.call(U);var V=n.behavior.drag().on(\"dragstart\",(function(){var t=n.event.sourceEvent;\"touchstart\"===t.type&&(z=t.changedTouches[0].clientY,D=j)})).on(\"drag\",(function(){var t=n.event.sourceEvent;\"touchmove\"===t.type&&(O=t.changedTouches[0].clientY,q(j=function(t,e,r){var n=(e-r)/N+t;return i.constrain(n,0,B)}(D,z,O),R,N))}));C.call(V)}if(t._context.edits.legendPosition)g.classed(\"cursor-move\",!0),l.init({element:g.node(),gd:t,prepFn:function(){var t=c.getTranslate(g);d=t.x,y=t.y},moveFn:function(t,r){var n=d+t,i=y+r;c.setTranslate(g,n,i),u=l.align(n,0,x.l,x.l+x.w,e.xanchor),h=l.align(i,0,x.t+x.h,x.t,e.yanchor)},doneFn:function(){void 0!==u&&void 0!==h&&o.call(\"_guiRelayout\",t,{\"legend.x\":u,\"legend.y\":h})},clickFn:function(e,n){var i=r.selectAll(\"g.traces\").filter((function(){var t=this.getBoundingClientRect();return n.clientX>=t.left&&n.clientX<=t.right&&n.clientY>=t.top&&n.clientY<=t.bottom}));i.size()>0&&_(t,g,i,e,n)}})}function q(r,n,i){e._scrollY=t._fullLayout.legend._scrollY=r,c.setTranslate(C,0,-r),c.setRect(P,e._width,p.scrollBarMargin+r*i,p.scrollBarWidth,n),T.select(\"rect\").attr(\"y\",b+r)}}],t)}}},{\"../../constants/alignment\":745,\"../../lib\":778,\"../../lib/events\":767,\"../../lib/svg_text_utils\":803,\"../../plots/plots\":891,\"../../registry\":911,\"../color\":643,\"../dragelement\":662,\"../drawing\":665,\"./constants\":694,\"./get_legend_data\":697,\"./handle_click\":698,\"./helpers\":699,\"./style\":701,d3:169}],697:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"./helpers\");e.exports=function(t,e){var r,a,o={},s=[],l=!1,c={},u=0,f=0,h=e._main;function p(t,r){if(\"\"!==t&&i.isGrouped(e))-1===s.indexOf(t)?(s.push(t),l=!0,o[t]=[[r]]):o[t].push([r]);else{var n=\"~~i\"+u;s.push(n),o[n]=[[r]],u++}}for(r=0;r<t.length;r++){var d=t[r],g=d[0],m=g.trace,v=m.legendgroup;if(!h||m.visible&&m.showlegend)if(n.traceIs(m,\"pie-like\"))for(c[v]||(c[v]={}),a=0;a<d.length;a++){var y=d[a].label;c[v][y]||(p(v,{label:y,color:d[a].color,i:d[a].i,trace:m,pts:d[a].pts}),c[v][y]=!0,f=Math.max(f,(y||\"\").length))}else p(v,g),f=Math.max(f,(m.name||\"\").length)}if(!s.length)return[];var x,b,_=s.length;if(l&&i.isGrouped(e))for(b=new Array(_),r=0;r<_;r++)x=o[s[r]],b[r]=i.isReversed(e)?x.reverse():x;else{for(b=[new Array(_)],r=0;r<_;r++)x=o[s[r]][0],b[0][i.isReversed(e)?_-r-1:r]=x;_=1}return e._lgroupsLength=_,e._maxNameLength=f,b}},{\"../../registry\":911,\"./helpers\":699}],698:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../registry\"),a=!0;e.exports=function(t,e,r){var o=e._fullLayout;if(!e._dragged&&!e._editing){var s,l=o.legend.itemclick,c=o.legend.itemdoubleclick;if(1===r&&\"toggle\"===l&&\"toggleothers\"===c&&a&&e.data&&e._context.showTips?(n.notifier(n._(e,\"Double-click on legend to isolate one trace\"),\"long\"),a=!1):a=!1,1===r?s=l:2===r&&(s=c),s){var u,f,h,p,d,g=o.hiddenlabels?o.hiddenlabels.slice():[],m=t.data()[0][0],v=e._fullData,y=m.trace,x=y.legendgroup,b={},_=[],w=[],T=[];if(i.traceIs(y,\"pie-like\")){var k=m.label,M=g.indexOf(k);\"toggle\"===s?-1===M?g.push(k):g.splice(M,1):\"toggleothers\"===s&&(g=[],e.calcdata[0].forEach((function(t){k!==t.label&&g.push(t.label)})),e._fullLayout.hiddenlabels&&e._fullLayout.hiddenlabels.length===g.length&&-1===M&&(g=[])),i.call(\"_guiRelayout\",e,\"hiddenlabels\",g)}else{var A,S=x&&x.length,E=[];if(S)for(u=0;u<v.length;u++)(A=v[u]).visible&&A.legendgroup===x&&E.push(u);if(\"toggle\"===s){var C;switch(y.visible){case!0:C=\"legendonly\";break;case!1:C=!1;break;case\"legendonly\":C=!0}if(S)for(u=0;u<v.length;u++)!1!==v[u].visible&&v[u].legendgroup===x&&B(v[u],C);else B(y,C)}else if(\"toggleothers\"===s){var L,I,P,z,O=!0;for(u=0;u<v.length;u++)if(L=v[u]===y,P=!0!==v[u].showlegend,!(L||P||(I=S&&v[u].legendgroup===x)||!0!==v[u].visible||i.traceIs(v[u],\"notLegendIsolatable\"))){O=!1;break}for(u=0;u<v.length;u++)if(!1!==v[u].visible&&!i.traceIs(v[u],\"notLegendIsolatable\"))switch(y.visible){case\"legendonly\":B(v[u],!0);break;case!0:z=!!O||\"legendonly\",L=v[u]===y,P=!0!==v[u].showlegend&&!v[u].legendgroup,I=L||S&&v[u].legendgroup===x,B(v[u],!(!I&&!P)||z)}}for(u=0;u<w.length;u++)if(h=w[u]){var D=h.constructUpdate(),R=Object.keys(D);for(f=0;f<R.length;f++)p=R[f],(b[p]=b[p]||[])[T[u]]=D[p]}for(d=Object.keys(b),u=0;u<d.length;u++)for(p=d[u],f=0;f<_.length;f++)b[p].hasOwnProperty(f)||(b[p][f]=void 0);i.call(\"_guiRestyle\",e,b,_)}}}function F(t,e,r){var n=_.indexOf(t),i=b[e];return i||(i=b[e]=[]),-1===_.indexOf(t)&&(_.push(t),n=_.length-1),i[n]=r,n}function B(t,e){var r=t._fullInput;if(i.hasTransform(r,\"groupby\")){var a=w[r.index];if(!a){var o=i.getTransformIndices(r,\"groupby\"),s=o[o.length-1];a=n.keyedContainer(r,\"transforms[\"+s+\"].styles\",\"target\",\"value.visible\"),w[r.index]=a}var l=a.get(t._group);void 0===l&&(l=!0),!1!==l&&a.set(t._group,e),T[r.index]=F(r.index,\"visible\",!1!==r.visible)}else{var c=!1!==r.visible&&e;F(r.index,\"visible\",c)}}}},{\"../../lib\":778,\"../../registry\":911}],699:[function(t,e,r){\"use strict\";r.isGrouped=function(t){return-1!==(t.traceorder||\"\").indexOf(\"grouped\")},r.isVertical=function(t){return\"h\"!==t.orientation},r.isReversed=function(t){return-1!==(t.traceorder||\"\").indexOf(\"reversed\")}},{}],700:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"legend\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),draw:t(\"./draw\"),style:t(\"./style\")}},{\"./attributes\":693,\"./defaults\":695,\"./draw\":696,\"./style\":701}],701:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../registry\"),a=t(\"../../lib\"),o=a.strTranslate,s=t(\"../drawing\"),l=t(\"../color\"),c=t(\"../colorscale/helpers\").extractOpts,u=t(\"../../traces/scatter/subtypes\"),f=t(\"../../traces/pie/style_one\"),h=t(\"../../traces/pie/helpers\").castOption,p=t(\"./constants\");function d(t,e){return(e?\"radial\":\"horizontal\")+(t?\"\":\"reversed\")}e.exports=function(t,e,r){var g=e._fullLayout;r||(r=g.legend);var m=\"constant\"===r.itemsizing,v=r.itemwidth,y=(v+2*p.itemGap)/2,x=o(y,0),b=function(t,e,r,n){var i;if(t+1)i=t;else{if(!(e&&e.width>0))return 0;i=e.width}return m?n:Math.min(i,r)};function _(t,e,r){var a=t[0].trace,o=a.marker||{},s=o.line||{},c=r?a.visible&&a.type===r:i.traceIs(a,\"bar\"),u=n.select(e).select(\"g.legendpoints\").selectAll(\"path.legend\"+r).data(c?[t]:[]);u.enter().append(\"path\").classed(\"legend\"+r,!0).attr(\"d\",\"M6,6H-6V-6H6Z\").attr(\"transform\",x),u.exit().remove(),u.each((function(t){var e=n.select(this),r=t[0],i=b(r.mlw,o.line,5,2);e.style(\"stroke-width\",i+\"px\").call(l.fill,r.mc||o.color),i&&l.stroke(e,r.mlc||s.color)}))}function w(t,e,r){var o=t[0],s=o.trace,l=r?s.visible&&s.type===r:i.traceIs(s,r),c=n.select(e).select(\"g.legendpoints\").selectAll(\"path.legend\"+r).data(l?[t]:[]);if(c.enter().append(\"path\").classed(\"legend\"+r,!0).attr(\"d\",\"M6,6H-6V-6H6Z\").attr(\"transform\",x),c.exit().remove(),c.size()){var u=(s.marker||{}).line,p=b(h(u.width,o.pts),u,5,2),d=a.minExtend(s,{marker:{line:{width:p}}});d.marker.line.color=u.color;var g=a.minExtend(o,{trace:d});f(c,g,d)}}t.each((function(t){var e=n.select(this),i=a.ensureSingle(e,\"g\",\"layers\");i.style(\"opacity\",t[0].trace.opacity);var s=r.valign,l=t[0].lineHeight,c=t[0].height;if(\"middle\"!==s&&l&&c){var u={top:1,bottom:-1}[s]*(.5*(l-c+3));i.attr(\"transform\",o(0,u))}else i.attr(\"transform\",null);i.selectAll(\"g.legendfill\").data([t]).enter().append(\"g\").classed(\"legendfill\",!0),i.selectAll(\"g.legendlines\").data([t]).enter().append(\"g\").classed(\"legendlines\",!0);var f=i.selectAll(\"g.legendsymbols\").data([t]);f.enter().append(\"g\").classed(\"legendsymbols\",!0),f.selectAll(\"g.legendpoints\").data([t]).enter().append(\"g\").classed(\"legendpoints\",!0)})).each((function(t){var r,i=t[0].trace,o=[];if(i.visible)switch(i.type){case\"histogram2d\":case\"heatmap\":o=[[\"M-15,-2V4H15V-2Z\"]],r=!0;break;case\"choropleth\":case\"choroplethmapbox\":o=[[\"M-6,-6V6H6V-6Z\"]],r=!0;break;case\"densitymapbox\":o=[[\"M-6,0 a6,6 0 1,0 12,0 a 6,6 0 1,0 -12,0\"]],r=\"radial\";break;case\"cone\":o=[[\"M-6,2 A2,2 0 0,0 -6,6 V6L6,4Z\"],[\"M-6,-6 A2,2 0 0,0 -6,-2 L6,-4Z\"],[\"M-6,-2 A2,2 0 0,0 -6,2 L6,0Z\"]],r=!1;break;case\"streamtube\":o=[[\"M-6,2 A2,2 0 0,0 -6,6 H6 A2,2 0 0,1 6,2 Z\"],[\"M-6,-6 A2,2 0 0,0 -6,-2 H6 A2,2 0 0,1 6,-6 Z\"],[\"M-6,-2 A2,2 0 0,0 -6,2 H6 A2,2 0 0,1 6,-2 Z\"]],r=!1;break;case\"surface\":o=[[\"M-6,-6 A2,3 0 0,0 -6,0 H6 A2,3 0 0,1 6,-6 Z\"],[\"M-6,1 A2,3 0 0,1 -6,6 H6 A2,3 0 0,0 6,0 Z\"]],r=!0;break;case\"mesh3d\":o=[[\"M-6,6H0L-6,-6Z\"],[\"M6,6H0L6,-6Z\"],[\"M-6,-6H6L0,6Z\"]],r=!1;break;case\"volume\":o=[[\"M-6,6H0L-6,-6Z\"],[\"M6,6H0L6,-6Z\"],[\"M-6,-6H6L0,6Z\"]],r=!0;break;case\"isosurface\":o=[[\"M-6,6H0L-6,-6Z\"],[\"M6,6H0L6,-6Z\"],[\"M-6,-6 A12,24 0 0,0 6,-6 L0,6Z\"]],r=!1}var u=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legend3dandfriends\").data(o);u.enter().append(\"path\").classed(\"legend3dandfriends\",!0).attr(\"transform\",x).style(\"stroke-miterlimit\",1),u.exit().remove(),u.each((function(t,o){var u,f=n.select(this),h=c(i),p=h.colorscale,g=h.reversescale;if(p){if(!r){var m=p.length;u=0===o?p[g?m-1:0][1]:1===o?p[g?0:m-1][1]:p[Math.floor((m-1)/2)][1]}}else{var v=i.vertexcolor||i.facecolor||i.color;u=a.isArrayOrTypedArray(v)?v[o]||v[0]:v}f.attr(\"d\",t[0]),u?f.call(l.fill,u):f.call((function(t){if(t.size()){var n=\"legendfill-\"+i.uid;s.gradient(t,e,n,d(g,\"radial\"===r),p,\"fill\")}}))}))})).each((function(t){var e=t[0].trace,r=\"waterfall\"===e.type;if(t[0]._distinct&&r){var i=t[0].trace[t[0].dir].marker;return t[0].mc=i.color,t[0].mlw=i.line.width,t[0].mlc=i.line.color,_(t,this,\"waterfall\")}var a=[];e.visible&&r&&(a=t[0].hasTotals?[[\"increasing\",\"M-6,-6V6H0Z\"],[\"totals\",\"M6,6H0L-6,-6H-0Z\"],[\"decreasing\",\"M6,6V-6H0Z\"]]:[[\"increasing\",\"M-6,-6V6H6Z\"],[\"decreasing\",\"M6,6V-6H-6Z\"]]);var o=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendwaterfall\").data(a);o.enter().append(\"path\").classed(\"legendwaterfall\",!0).attr(\"transform\",x).style(\"stroke-miterlimit\",1),o.exit().remove(),o.each((function(t){var r=n.select(this),i=e[t[0]].marker,a=b(void 0,i.line,5,2);r.attr(\"d\",t[1]).style(\"stroke-width\",a+\"px\").call(l.fill,i.color),a&&r.call(l.stroke,i.line.color)}))})).each((function(t){_(t,this,\"funnel\")})).each((function(t){_(t,this)})).each((function(t){var r=t[0].trace,o=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendbox\").data(r.visible&&i.traceIs(r,\"box-violin\")?[t]:[]);o.enter().append(\"path\").classed(\"legendbox\",!0).attr(\"d\",\"M6,6H-6V-6H6Z\").attr(\"transform\",x),o.exit().remove(),o.each((function(){var t=n.select(this);if(\"all\"!==r.boxpoints&&\"all\"!==r.points||0!==l.opacity(r.fillcolor)||0!==l.opacity((r.line||{}).color)){var i=b(void 0,r.line,5,2);t.style(\"stroke-width\",i+\"px\").call(l.fill,r.fillcolor),i&&l.stroke(t,r.line.color)}else{var c=a.minExtend(r,{marker:{size:m?12:a.constrain(r.marker.size,2,16),sizeref:1,sizemin:1,sizemode:\"diameter\"}});o.call(s.pointStyle,c,e)}}))})).each((function(t){w(t,this,\"funnelarea\")})).each((function(t){w(t,this,\"pie\")})).each((function(t){var r,i,o=t[0],l=o.trace,f=l.visible&&l.fill&&\"none\"!==l.fill,h=u.hasLines(l),p=l.contours,g=!1,m=!1,y=c(l),x=y.colorscale,_=y.reversescale;if(p){var w=p.coloring;\"lines\"===w?g=!0:h=\"none\"===w||\"heatmap\"===w||p.showlines,\"constraint\"===p.type?f=\"=\"!==p._operation:\"fill\"!==w&&\"heatmap\"!==w||(m=!0)}var T=u.hasMarkers(l)||u.hasText(l),k=f||m,M=h||g,A=T||!k?\"M5,0\":M?\"M5,-2\":\"M5,-3\",S=n.select(this),E=S.select(\".legendfill\").selectAll(\"path\").data(f||m?[t]:[]);if(E.enter().append(\"path\").classed(\"js-fill\",!0),E.exit().remove(),E.attr(\"d\",A+\"h\"+v+\"v6h-\"+v+\"z\").call(f?s.fillGroupStyle:function(t){if(t.size()){var r=\"legendfill-\"+l.uid;s.gradient(t,e,r,d(_),x,\"fill\")}}),h||g){var C=b(void 0,l.line,10,5);i=a.minExtend(l,{line:{width:C}}),r=[a.minExtend(o,{trace:i})]}var L=S.select(\".legendlines\").selectAll(\"path\").data(h||g?[r]:[]);L.enter().append(\"path\").classed(\"js-line\",!0),L.exit().remove(),L.attr(\"d\",A+(g?\"l\"+v+\",0.0001\":\"h\"+v)).call(h?s.lineGroupStyle:function(t){if(t.size()){var r=\"legendline-\"+l.uid;s.lineGroupStyle(t),s.gradient(t,e,r,d(_),x,\"stroke\")}})})).each((function(t){var r,i,o=t[0],l=o.trace,c=u.hasMarkers(l),f=u.hasText(l),h=u.hasLines(l);function p(t,e,r,n){var i=a.nestedProperty(l,t).get(),o=a.isArrayOrTypedArray(i)&&e?e(i):i;if(m&&o&&void 0!==n&&(o=n),r){if(o<r[0])return r[0];if(o>r[1])return r[1]}return o}function d(t){return o._distinct&&o.index&&t[o.index]?t[o.index]:t[0]}if(c||f||h){var g={},v={};if(c){g.mc=p(\"marker.color\",d),g.mx=p(\"marker.symbol\",d),g.mo=p(\"marker.opacity\",a.mean,[.2,1]),g.mlc=p(\"marker.line.color\",d),g.mlw=p(\"marker.line.width\",a.mean,[0,5],2),v.marker={sizeref:1,sizemin:1,sizemode:\"diameter\"};var y=p(\"marker.size\",a.mean,[2,16],12);g.ms=y,v.marker.size=y}h&&(v.line={width:p(\"line.width\",d,[0,10],5)}),f&&(g.tx=\"Aa\",g.tp=p(\"textposition\",d),g.ts=10,g.tc=p(\"textfont.color\",d),g.tf=p(\"textfont.family\",d)),r=[a.minExtend(o,g)],(i=a.minExtend(l,v)).selectedpoints=null,i.texttemplate=null}var b=n.select(this).select(\"g.legendpoints\"),_=b.selectAll(\"path.scatterpts\").data(c?r:[]);_.enter().insert(\"path\",\":first-child\").classed(\"scatterpts\",!0).attr(\"transform\",x),_.exit().remove(),_.call(s.pointStyle,i,e),c&&(r[0].mrc=3);var w=b.selectAll(\"g.pointtext\").data(f?r:[]);w.enter().append(\"g\").classed(\"pointtext\",!0).append(\"text\").attr(\"transform\",x),w.exit().remove(),w.selectAll(\"text\").call(s.textPointStyle,i,e)})).each((function(t){var e=t[0].trace,r=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendcandle\").data(e.visible&&\"candlestick\"===e.type?[t,t]:[]);r.enter().append(\"path\").classed(\"legendcandle\",!0).attr(\"d\",(function(t,e){return e?\"M-15,0H-8M-8,6V-6H8Z\":\"M15,0H8M8,-6V6H-8Z\"})).attr(\"transform\",x).style(\"stroke-miterlimit\",1),r.exit().remove(),r.each((function(t,r){var i=n.select(this),a=e[r?\"increasing\":\"decreasing\"],o=b(void 0,a.line,5,2);i.style(\"stroke-width\",o+\"px\").call(l.fill,a.fillcolor),o&&l.stroke(i,a.line.color)}))})).each((function(t){var e=t[0].trace,r=n.select(this).select(\"g.legendpoints\").selectAll(\"path.legendohlc\").data(e.visible&&\"ohlc\"===e.type?[t,t]:[]);r.enter().append(\"path\").classed(\"legendohlc\",!0).attr(\"d\",(function(t,e){return e?\"M-15,0H0M-8,-6V0\":\"M15,0H0M8,6V0\"})).attr(\"transform\",x).style(\"stroke-miterlimit\",1),r.exit().remove(),r.each((function(t,r){var i=n.select(this),a=e[r?\"increasing\":\"decreasing\"],o=b(void 0,a.line,5,2);i.style(\"fill\",\"none\").call(s.dashLine,a.line.dash,o),o&&l.stroke(i,a.line.color)}))}))}},{\"../../lib\":778,\"../../registry\":911,\"../../traces/pie/helpers\":1166,\"../../traces/pie/style_one\":1172,\"../../traces/scatter/subtypes\":1212,\"../color\":643,\"../colorscale/helpers\":654,\"../drawing\":665,\"./constants\":694,d3:169}],702:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../plots/plots\"),a=t(\"../../plots/cartesian/axis_ids\"),o=t(\"../../fonts/ploticon\"),s=t(\"../shapes/draw\").eraseActiveShape,l=t(\"../../lib\"),c=l._,u=e.exports={};function f(t,e){var r,i,o=e.currentTarget,s=o.getAttribute(\"data-attr\"),l=o.getAttribute(\"data-val\")||!0,c=t._fullLayout,u={},f=a.list(t,null,!0),h=c._cartesianSpikesEnabled;if(\"zoom\"===s){var p,d=\"in\"===l?.5:2,g=(1+d)/2,m=(1-d)/2;for(i=0;i<f.length;i++)if(!(r=f[i]).fixedrange)if(p=r._name,\"auto\"===l)u[p+\".autorange\"]=!0;else if(\"reset\"===l){if(void 0===r._rangeInitial)u[p+\".autorange\"]=!0;else{var v=r._rangeInitial.slice();u[p+\".range[0]\"]=v[0],u[p+\".range[1]\"]=v[1]}void 0!==r._showSpikeInitial&&(u[p+\".showspikes\"]=r._showSpikeInitial,\"on\"!==h||r._showSpikeInitial||(h=\"off\"))}else{var y=[r.r2l(r.range[0]),r.r2l(r.range[1])],x=[g*y[0]+m*y[1],g*y[1]+m*y[0]];u[p+\".range[0]\"]=r.l2r(x[0]),u[p+\".range[1]\"]=r.l2r(x[1])}}else\"hovermode\"!==s||\"x\"!==l&&\"y\"!==l||(l=c._isHoriz?\"y\":\"x\",o.setAttribute(\"data-val\",l)),u[s]=l;c._cartesianSpikesEnabled=h,n.call(\"_guiRelayout\",t,u)}function h(t,e){for(var r=e.currentTarget,i=r.getAttribute(\"data-attr\"),a=r.getAttribute(\"data-val\")||!0,o=t._fullLayout._subplots.gl3d||[],s={},l=i.split(\".\"),c=0;c<o.length;c++)s[o[c]+\".\"+l[1]]=a;var u=\"pan\"===a?a:\"zoom\";s.dragmode=u,n.call(\"_guiRelayout\",t,s)}function p(t,e){for(var r=e.currentTarget.getAttribute(\"data-attr\"),i=\"resetLastSave\"===r,a=\"resetDefault\"===r,o=t._fullLayout,s=o._subplots.gl3d||[],l={},c=0;c<s.length;c++){var u,f=s[c],h=f+\".camera\",p=f+\".aspectratio\",d=f+\".aspectmode\",g=o[f]._scene;i?(l[h+\".up\"]=g.viewInitial.up,l[h+\".eye\"]=g.viewInitial.eye,l[h+\".center\"]=g.viewInitial.center,u=!0):a&&(l[h+\".up\"]=null,l[h+\".eye\"]=null,l[h+\".center\"]=null,u=!0),u&&(l[p+\".x\"]=g.viewInitial.aspectratio.x,l[p+\".y\"]=g.viewInitial.aspectratio.y,l[p+\".z\"]=g.viewInitial.aspectratio.z,l[d]=g.viewInitial.aspectmode)}n.call(\"_guiRelayout\",t,l)}function d(t,e){var r=e.currentTarget,n=r._previousVal,i=t._fullLayout,a=i._subplots.gl3d||[],o=[\"xaxis\",\"yaxis\",\"zaxis\"],s={},l={};if(n)l=n,r._previousVal=null;else{for(var c=0;c<a.length;c++){var u=a[c],f=i[u],h=u+\".hovermode\";s[h]=f.hovermode,l[h]=!1;for(var p=0;p<3;p++){var d=o[p],g=u+\".\"+d+\".showspikes\";l[g]=!1,s[g]=f[d].showspikes}}r._previousVal=s}return l}function g(t,e){for(var r=e.currentTarget,i=r.getAttribute(\"data-attr\"),a=r.getAttribute(\"data-val\")||!0,o=t._fullLayout,s=o._subplots.geo||[],l=0;l<s.length;l++){var c=s[l],u=o[c];if(\"zoom\"===i){var f=u.projection.scale,h=\"in\"===a?2*f:.5*f;n.call(\"_guiRelayout\",t,c+\".projection.scale\",h)}}\"reset\"===i&&x(t,\"geo\")}function m(t){var e=t._fullLayout;return!e.hovermode&&(e._has(\"cartesian\")?e._isHoriz?\"y\":\"x\":\"closest\")}function v(t){var e=m(t);n.call(\"_guiRelayout\",t,\"hovermode\",e)}function y(t,e){for(var r=e.currentTarget.getAttribute(\"data-val\"),i=t._fullLayout,a=i._subplots.mapbox||[],o={},s=0;s<a.length;s++){var l=a[s],c=i[l].zoom,u=\"in\"===r?1.05*c:c/1.05;o[l+\".zoom\"]=u}n.call(\"_guiRelayout\",t,o)}function x(t,e){for(var r=t._fullLayout,i=r._subplots[e]||[],a={},o=0;o<i.length;o++)for(var s=i[o],l=r[s]._subplot.viewInitial,c=Object.keys(l),u=0;u<c.length;u++){var f=c[u];a[s+\".\"+f]=l[f]}n.call(\"_guiRelayout\",t,a)}u.toImage={name:\"toImage\",title:function(t){var e=(t._context.toImageButtonOptions||{}).format||\"png\";return c(t,\"png\"===e?\"Download plot as a png\":\"Download plot\")},icon:o.camera,click:function(t){var e=t._context.toImageButtonOptions,r={format:e.format||\"png\"};l.notifier(c(t,\"Taking snapshot - this may take a few seconds\"),\"long\"),\"svg\"!==r.format&&l.isIE()&&(l.notifier(c(t,\"IE only supports svg.  Changing format to svg.\"),\"long\"),r.format=\"svg\"),[\"filename\",\"width\",\"height\",\"scale\"].forEach((function(t){t in e&&(r[t]=e[t])})),n.call(\"downloadImage\",t,r).then((function(e){l.notifier(c(t,\"Snapshot succeeded\")+\" - \"+e,\"long\")})).catch((function(){l.notifier(c(t,\"Sorry, there was a problem downloading your snapshot!\"),\"long\")}))}},u.sendDataToCloud={name:\"sendDataToCloud\",title:function(t){return c(t,\"Edit in Chart Studio\")},icon:o.disk,click:function(t){i.sendDataToCloud(t)}},u.editInChartStudio={name:\"editInChartStudio\",title:function(t){return c(t,\"Edit in Chart Studio\")},icon:o.pencil,click:function(t){i.sendDataToCloud(t)}},u.zoom2d={name:\"zoom2d\",title:function(t){return c(t,\"Zoom\")},attr:\"dragmode\",val:\"zoom\",icon:o.zoombox,click:f},u.pan2d={name:\"pan2d\",title:function(t){return c(t,\"Pan\")},attr:\"dragmode\",val:\"pan\",icon:o.pan,click:f},u.select2d={name:\"select2d\",title:function(t){return c(t,\"Box Select\")},attr:\"dragmode\",val:\"select\",icon:o.selectbox,click:f},u.lasso2d={name:\"lasso2d\",title:function(t){return c(t,\"Lasso Select\")},attr:\"dragmode\",val:\"lasso\",icon:o.lasso,click:f},u.drawclosedpath={name:\"drawclosedpath\",title:function(t){return c(t,\"Draw closed freeform\")},attr:\"dragmode\",val:\"drawclosedpath\",icon:o.drawclosedpath,click:f},u.drawopenpath={name:\"drawopenpath\",title:function(t){return c(t,\"Draw open freeform\")},attr:\"dragmode\",val:\"drawopenpath\",icon:o.drawopenpath,click:f},u.drawline={name:\"drawline\",title:function(t){return c(t,\"Draw line\")},attr:\"dragmode\",val:\"drawline\",icon:o.drawline,click:f},u.drawrect={name:\"drawrect\",title:function(t){return c(t,\"Draw rectangle\")},attr:\"dragmode\",val:\"drawrect\",icon:o.drawrect,click:f},u.drawcircle={name:\"drawcircle\",title:function(t){return c(t,\"Draw circle\")},attr:\"dragmode\",val:\"drawcircle\",icon:o.drawcircle,click:f},u.eraseshape={name:\"eraseshape\",title:function(t){return c(t,\"Erase active shape\")},icon:o.eraseshape,click:s},u.zoomIn2d={name:\"zoomIn2d\",title:function(t){return c(t,\"Zoom in\")},attr:\"zoom\",val:\"in\",icon:o.zoom_plus,click:f},u.zoomOut2d={name:\"zoomOut2d\",title:function(t){return c(t,\"Zoom out\")},attr:\"zoom\",val:\"out\",icon:o.zoom_minus,click:f},u.autoScale2d={name:\"autoScale2d\",title:function(t){return c(t,\"Autoscale\")},attr:\"zoom\",val:\"auto\",icon:o.autoscale,click:f},u.resetScale2d={name:\"resetScale2d\",title:function(t){return c(t,\"Reset axes\")},attr:\"zoom\",val:\"reset\",icon:o.home,click:f},u.hoverClosestCartesian={name:\"hoverClosestCartesian\",title:function(t){return c(t,\"Show closest data on hover\")},attr:\"hovermode\",val:\"closest\",icon:o.tooltip_basic,gravity:\"ne\",click:f},u.hoverCompareCartesian={name:\"hoverCompareCartesian\",title:function(t){return c(t,\"Compare data on hover\")},attr:\"hovermode\",val:function(t){return t._fullLayout._isHoriz?\"y\":\"x\"},icon:o.tooltip_compare,gravity:\"ne\",click:f},u.zoom3d={name:\"zoom3d\",title:function(t){return c(t,\"Zoom\")},attr:\"scene.dragmode\",val:\"zoom\",icon:o.zoombox,click:h},u.pan3d={name:\"pan3d\",title:function(t){return c(t,\"Pan\")},attr:\"scene.dragmode\",val:\"pan\",icon:o.pan,click:h},u.orbitRotation={name:\"orbitRotation\",title:function(t){return c(t,\"Orbital rotation\")},attr:\"scene.dragmode\",val:\"orbit\",icon:o[\"3d_rotate\"],click:h},u.tableRotation={name:\"tableRotation\",title:function(t){return c(t,\"Turntable rotation\")},attr:\"scene.dragmode\",val:\"turntable\",icon:o[\"z-axis\"],click:h},u.resetCameraDefault3d={name:\"resetCameraDefault3d\",title:function(t){return c(t,\"Reset camera to default\")},attr:\"resetDefault\",icon:o.home,click:p},u.resetCameraLastSave3d={name:\"resetCameraLastSave3d\",title:function(t){return c(t,\"Reset camera to last save\")},attr:\"resetLastSave\",icon:o.movie,click:p},u.hoverClosest3d={name:\"hoverClosest3d\",title:function(t){return c(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:o.tooltip_basic,gravity:\"ne\",click:function(t,e){var r=d(t,e);n.call(\"_guiRelayout\",t,r)}},u.zoomInGeo={name:\"zoomInGeo\",title:function(t){return c(t,\"Zoom in\")},attr:\"zoom\",val:\"in\",icon:o.zoom_plus,click:g},u.zoomOutGeo={name:\"zoomOutGeo\",title:function(t){return c(t,\"Zoom out\")},attr:\"zoom\",val:\"out\",icon:o.zoom_minus,click:g},u.resetGeo={name:\"resetGeo\",title:function(t){return c(t,\"Reset\")},attr:\"reset\",val:null,icon:o.autoscale,click:g},u.hoverClosestGeo={name:\"hoverClosestGeo\",title:function(t){return c(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:o.tooltip_basic,gravity:\"ne\",click:v},u.hoverClosestGl2d={name:\"hoverClosestGl2d\",title:function(t){return c(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:o.tooltip_basic,gravity:\"ne\",click:v},u.hoverClosestPie={name:\"hoverClosestPie\",title:function(t){return c(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:\"closest\",icon:o.tooltip_basic,gravity:\"ne\",click:v},u.resetViewSankey={name:\"resetSankeyGroup\",title:function(t){return c(t,\"Reset view\")},icon:o.home,click:function(t){for(var e={\"node.groups\":[],\"node.x\":[],\"node.y\":[]},r=0;r<t._fullData.length;r++){var i=t._fullData[r]._viewInitial;e[\"node.groups\"].push(i.node.groups.slice()),e[\"node.x\"].push(i.node.x.slice()),e[\"node.y\"].push(i.node.y.slice())}n.call(\"restyle\",t,e)}},u.toggleHover={name:\"toggleHover\",title:function(t){return c(t,\"Toggle show closest data on hover\")},attr:\"hovermode\",val:null,toggle:!0,icon:o.tooltip_basic,gravity:\"ne\",click:function(t,e){var r=d(t,e);r.hovermode=m(t),n.call(\"_guiRelayout\",t,r)}},u.resetViews={name:\"resetViews\",title:function(t){return c(t,\"Reset views\")},icon:o.home,click:function(t,e){var r=e.currentTarget;r.setAttribute(\"data-attr\",\"zoom\"),r.setAttribute(\"data-val\",\"reset\"),f(t,e),r.setAttribute(\"data-attr\",\"resetLastSave\"),p(t,e),x(t,\"geo\"),x(t,\"mapbox\")}},u.toggleSpikelines={name:\"toggleSpikelines\",title:function(t){return c(t,\"Toggle Spike Lines\")},icon:o.spikeline,attr:\"_cartesianSpikesEnabled\",val:\"on\",click:function(t){var e=t._fullLayout,r=e._cartesianSpikesEnabled;e._cartesianSpikesEnabled=\"on\"===r?\"off\":\"on\",n.call(\"_guiRelayout\",t,function(t){for(var e=\"on\"===t._fullLayout._cartesianSpikesEnabled,r=a.list(t,null,!0),n={},i=0;i<r.length;i++){var o=r[i];n[o._name+\".showspikes\"]=!!e||o._showSpikeInitial}return n}(t))}},u.resetViewMapbox={name:\"resetViewMapbox\",title:function(t){return c(t,\"Reset view\")},attr:\"reset\",icon:o.home,click:function(t){x(t,\"mapbox\")}},u.zoomInMapbox={name:\"zoomInMapbox\",title:function(t){return c(t,\"Zoom in\")},attr:\"zoom\",val:\"in\",icon:o.zoom_plus,click:y},u.zoomOutMapbox={name:\"zoomOutMapbox\",title:function(t){return c(t,\"Zoom out\")},attr:\"zoom\",val:\"out\",icon:o.zoom_minus,click:y}},{\"../../fonts/ploticon\":757,\"../../lib\":778,\"../../plots/cartesian/axis_ids\":831,\"../../plots/plots\":891,\"../../registry\":911,\"../shapes/draw\":724}],703:[function(t,e,r){\"use strict\";r.manage=t(\"./manage\")},{\"./manage\":704}],704:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axis_ids\"),i=t(\"../../traces/scatter/subtypes\"),a=t(\"../../registry\"),o=t(\"../fx/helpers\").isUnifiedHover,s=t(\"./modebar\"),l=t(\"./buttons\");e.exports=function(t){var e=t._fullLayout,r=t._context,u=e._modeBar;if(r.displayModeBar||r.watermark){if(!Array.isArray(r.modeBarButtonsToRemove))throw new Error([\"*modeBarButtonsToRemove* configuration options\",\"must be an array.\"].join(\" \"));if(!Array.isArray(r.modeBarButtonsToAdd))throw new Error([\"*modeBarButtonsToAdd* configuration options\",\"must be an array.\"].join(\" \"));var f,h=r.modeBarButtons;f=Array.isArray(h)&&h.length?function(t){for(var e=0;e<t.length;e++)for(var r=t[e],n=0;n<r.length;n++){var i=r[n];if(\"string\"==typeof i){if(void 0===l[i])throw new Error([\"*modeBarButtons* configuration options\",\"invalid button name\"].join(\" \"));t[e][n]=l[i]}}return t}(h):!r.displayModeBar&&r.watermark?[]:function(t){var e=t._fullLayout,r=t._fullData,s=t._context,u=s.modeBarButtonsToRemove,f=s.modeBarButtonsToAdd,h=e._has(\"cartesian\"),p=e._has(\"gl3d\"),d=e._has(\"geo\"),g=e._has(\"pie\"),m=e._has(\"funnelarea\"),v=e._has(\"gl2d\"),y=e._has(\"ternary\"),x=e._has(\"mapbox\"),b=e._has(\"polar\"),_=e._has(\"sankey\"),w=function(t){for(var e=n.list({_fullLayout:t},null,!0),r=0;r<e.length;r++)if(!e[r].fixedrange)return!1;return!0}(e),T=o(e.hovermode),k=[];function M(t){if(t.length){for(var e=[],r=0;r<t.length;r++){var n=t[r];-1===u.indexOf(n)&&e.push(l[n])}k.push(e)}}var A=[\"toImage\"];s.showEditInChartStudio?A.push(\"editInChartStudio\"):s.showSendToCloud&&A.push(\"sendDataToCloud\");M(A);var S=[],E=[],C=[],L=[];(h||v||g||m||y)+d+p+x+b>1?(E=[\"toggleHover\"],C=[\"resetViews\"]):d?(S=[\"zoomInGeo\",\"zoomOutGeo\"],E=[\"hoverClosestGeo\"],C=[\"resetGeo\"]):p?(E=[\"hoverClosest3d\"],C=[\"resetCameraDefault3d\",\"resetCameraLastSave3d\"]):x?(S=[\"zoomInMapbox\",\"zoomOutMapbox\"],E=[\"toggleHover\"],C=[\"resetViewMapbox\"]):v?E=[\"hoverClosestGl2d\"]:g?E=[\"hoverClosestPie\"]:_?(E=[\"hoverClosestCartesian\",\"hoverCompareCartesian\"],C=[\"resetViewSankey\"]):E=[\"toggleHover\"];h&&(E=[\"toggleSpikelines\",\"hoverClosestCartesian\",\"hoverCompareCartesian\"]);(function(t){for(var e=0;e<t.length;e++)if(!a.traceIs(t[e],\"noHover\"))return!1;return!0}(r)||T)&&(E=[]);!h&&!v||w||(S=[\"zoomIn2d\",\"zoomOut2d\",\"autoScale2d\"],\"resetViews\"!==C[0]&&(C=[\"resetScale2d\"]));p?L=[\"zoom3d\",\"pan3d\",\"orbitRotation\",\"tableRotation\"]:(h||v)&&!w||y?L=[\"zoom2d\",\"pan2d\"]:x||d?L=[\"pan2d\"]:b&&(L=[\"zoom2d\"]);(function(t){for(var e=!1,r=0;r<t.length&&!e;r++){var n=t[r];n._module&&n._module.selectPoints&&(a.traceIs(n,\"scatter-like\")?(i.hasMarkers(n)||i.hasText(n))&&(e=!0):a.traceIs(n,\"box-violin\")&&\"all\"!==n.boxpoints&&\"all\"!==n.points||(e=!0))}return e})(r)&&L.push(\"select2d\",\"lasso2d\");if(Array.isArray(f)){for(var I=[],P=0;P<f.length;P++){var z=f[P];\"string\"==typeof z?-1!==c.indexOf(z)&&(e._has(\"mapbox\")||e._has(\"cartesian\"))&&L.push(z):I.push(z)}f=I}return M(L),M(S.concat(C)),M(E),function(t,e){if(e.length)if(Array.isArray(e[0]))for(var r=0;r<e.length;r++)t.push(e[r]);else t.push(e);return t}(k,f)}(t),u?u.update(t,f):e._modeBar=s(t,f)}else u&&(u.destroy(),delete e._modeBar)};var c=[\"drawline\",\"drawopenpath\",\"drawclosedpath\",\"drawcircle\",\"drawrect\",\"eraseshape\"]},{\"../../plots/cartesian/axis_ids\":831,\"../../registry\":911,\"../../traces/scatter/subtypes\":1212,\"../fx/helpers\":679,\"./buttons\":702,\"./modebar\":705}],705:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"fast-isnumeric\"),a=t(\"../../lib\"),o=t(\"../../fonts/ploticon\"),s=new DOMParser;function l(t){this.container=t.container,this.element=document.createElement(\"div\"),this.update(t.graphInfo,t.buttons),this.container.appendChild(this.element)}var c=l.prototype;c.update=function(t,e){this.graphInfo=t;var r=this.graphInfo._context,n=this.graphInfo._fullLayout,i=\"modebar-\"+n._uid;this.element.setAttribute(\"id\",i),this._uid=i,this.element.className=\"modebar\",\"hover\"===r.displayModeBar&&(this.element.className+=\" modebar--hover ease-bg\"),\"v\"===n.modebar.orientation&&(this.element.className+=\" vertical\",e=e.reverse());var o=n.modebar,s=\"hover\"===r.displayModeBar?\".js-plotly-plot .plotly:hover \":\"\";a.deleteRelatedStyleRule(i),a.addRelatedStyleRule(i,s+\"#\"+i+\" .modebar-group\",\"background-color: \"+o.bgcolor),a.addRelatedStyleRule(i,\"#\"+i+\" .modebar-btn .icon path\",\"fill: \"+o.color),a.addRelatedStyleRule(i,\"#\"+i+\" .modebar-btn:hover .icon path\",\"fill: \"+o.activecolor),a.addRelatedStyleRule(i,\"#\"+i+\" .modebar-btn.active .icon path\",\"fill: \"+o.activecolor);var l=!this.hasButtons(e),c=this.hasLogo!==r.displaylogo,u=this.locale!==r.locale;if(this.locale=r.locale,(l||c||u)&&(this.removeAllButtons(),this.updateButtons(e),r.watermark||r.displaylogo)){var f=this.getLogo();r.watermark&&(f.className=f.className+\" watermark\"),\"v\"===n.modebar.orientation?this.element.insertBefore(f,this.element.childNodes[0]):this.element.appendChild(f),this.hasLogo=!0}this.updateActiveButton()},c.updateButtons=function(t){var e=this;this.buttons=t,this.buttonElements=[],this.buttonsNames=[],this.buttons.forEach((function(t){var r=e.createGroup();t.forEach((function(t){var n=t.name;if(!n)throw new Error(\"must provide button 'name' in button config\");if(-1!==e.buttonsNames.indexOf(n))throw new Error(\"button name '\"+n+\"' is taken\");e.buttonsNames.push(n);var i=e.createButton(t);e.buttonElements.push(i),r.appendChild(i)})),e.element.appendChild(r)}))},c.createGroup=function(){var t=document.createElement(\"div\");return t.className=\"modebar-group\",t},c.createButton=function(t){var e=this,r=document.createElement(\"a\");r.setAttribute(\"rel\",\"tooltip\"),r.className=\"modebar-btn\";var i=t.title;void 0===i?i=t.name:\"function\"==typeof i&&(i=i(this.graphInfo)),(i||0===i)&&r.setAttribute(\"data-title\",i),void 0!==t.attr&&r.setAttribute(\"data-attr\",t.attr);var a=t.val;if(void 0!==a&&(\"function\"==typeof a&&(a=a(this.graphInfo)),r.setAttribute(\"data-val\",a)),\"function\"!=typeof t.click)throw new Error(\"must provide button 'click' function in button config\");r.addEventListener(\"click\",(function(r){t.click(e.graphInfo,r),e.updateActiveButton(r.currentTarget)})),r.setAttribute(\"data-toggle\",t.toggle||!1),t.toggle&&n.select(r).classed(\"active\",!0);var s=t.icon;return\"function\"==typeof s?r.appendChild(s()):r.appendChild(this.createIcon(s||o.question)),r.setAttribute(\"data-gravity\",t.gravity||\"n\"),r},c.createIcon=function(t){var e,r=i(t.height)?Number(t.height):t.ascent-t.descent,n=\"http://www.w3.org/2000/svg\";if(t.path){(e=document.createElementNS(n,\"svg\")).setAttribute(\"viewBox\",[0,0,t.width,r].join(\" \")),e.setAttribute(\"class\",\"icon\");var a=document.createElementNS(n,\"path\");a.setAttribute(\"d\",t.path),t.transform?a.setAttribute(\"transform\",t.transform):void 0!==t.ascent&&a.setAttribute(\"transform\",\"matrix(1 0 0 -1 0 \"+t.ascent+\")\"),e.appendChild(a)}t.svg&&(e=s.parseFromString(t.svg,\"application/xml\").childNodes[0]);return e.setAttribute(\"height\",\"1em\"),e.setAttribute(\"width\",\"1em\"),e},c.updateActiveButton=function(t){var e=this.graphInfo._fullLayout,r=void 0!==t?t.getAttribute(\"data-attr\"):null;this.buttonElements.forEach((function(t){var i=t.getAttribute(\"data-val\")||!0,o=t.getAttribute(\"data-attr\"),s=\"true\"===t.getAttribute(\"data-toggle\"),l=n.select(t);if(s)o===r&&l.classed(\"active\",!l.classed(\"active\"));else{var c=null===o?o:a.nestedProperty(e,o).get();l.classed(\"active\",c===i)}}))},c.hasButtons=function(t){var e=this.buttons;if(!e)return!1;if(t.length!==e.length)return!1;for(var r=0;r<t.length;++r){if(t[r].length!==e[r].length)return!1;for(var n=0;n<t[r].length;n++)if(t[r][n].name!==e[r][n].name)return!1}return!0},c.getLogo=function(){var t=this.createGroup(),e=document.createElement(\"a\");return e.href=\"https://plotly.com/\",e.target=\"_blank\",e.setAttribute(\"data-title\",a._(this.graphInfo,\"Produced with Plotly\")),e.className=\"modebar-btn plotlyjsicon modebar-btn--logo\",e.appendChild(this.createIcon(o.newplotlylogo)),t.appendChild(e),t},c.removeAllButtons=function(){for(;this.element.firstChild;)this.element.removeChild(this.element.firstChild);this.hasLogo=!1},c.destroy=function(){a.removeElement(this.container.querySelector(\".modebar\")),a.deleteRelatedStyleRule(this._uid)},e.exports=function(t,e){var r=t._fullLayout,i=new l({graphInfo:t,container:r._modebardiv.node(),buttons:e});return r._privateplot&&n.select(i.element).append(\"span\").classed(\"badge-private float--left\",!0).text(\"PRIVATE\"),i}},{\"../../fonts/ploticon\":757,\"../../lib\":778,d3:169,\"fast-isnumeric\":241}],706:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),i=t(\"../color/attributes\"),a=(0,t(\"../../plot_api/plot_template\").templatedArray)(\"button\",{visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},step:{valType:\"enumerated\",values:[\"month\",\"year\",\"day\",\"hour\",\"minute\",\"second\",\"all\"],dflt:\"month\",editType:\"plot\"},stepmode:{valType:\"enumerated\",values:[\"backward\",\"todate\"],dflt:\"backward\",editType:\"plot\"},count:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},label:{valType:\"string\",editType:\"plot\"},editType:\"plot\"});e.exports={visible:{valType:\"boolean\",editType:\"plot\"},buttons:a,x:{valType:\"number\",min:-2,max:3,editType:\"plot\"},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"left\",editType:\"plot\"},y:{valType:\"number\",min:-2,max:3,editType:\"plot\"},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"bottom\",editType:\"plot\"},font:n({editType:\"plot\"}),bgcolor:{valType:\"color\",dflt:i.lightLine,editType:\"plot\"},activecolor:{valType:\"color\",editType:\"plot\"},bordercolor:{valType:\"color\",dflt:i.defaultLine,editType:\"plot\"},borderwidth:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},editType:\"plot\"}},{\"../../plot_api/plot_template\":817,\"../../plots/font_attributes\":856,\"../color/attributes\":642}],707:[function(t,e,r){\"use strict\";e.exports={yPad:.02,minButtonWidth:30,rx:3,ry:3,lightAmount:25,darkAmount:10}},{}],708:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../color\"),a=t(\"../../plot_api/plot_template\"),o=t(\"../../plots/array_container_defaults\"),s=t(\"./attributes\"),l=t(\"./constants\");function c(t,e,r,i){var a=i.calendar;function o(r,i){return n.coerce(t,e,s.buttons,r,i)}if(o(\"visible\")){var l=o(\"step\");\"all\"!==l&&(!a||\"gregorian\"===a||\"month\"!==l&&\"year\"!==l?o(\"stepmode\"):e.stepmode=\"backward\",o(\"count\")),o(\"label\")}}e.exports=function(t,e,r,u,f){var h=t.rangeselector||{},p=a.newContainer(e,\"rangeselector\");function d(t,e){return n.coerce(h,p,s,t,e)}if(d(\"visible\",o(h,p,{name:\"buttons\",handleItemDefaults:c,calendar:f}).length>0)){var g=function(t,e,r){for(var n=r.filter((function(r){return e[r].anchor===t._id})),i=0,a=0;a<n.length;a++){var o=e[n[a]].domain;o&&(i=Math.max(o[1],i))}return[t.domain[0],i+l.yPad]}(e,r,u);d(\"x\",g[0]),d(\"y\",g[1]),n.noneOrAll(t,e,[\"x\",\"y\"]),d(\"xanchor\"),d(\"yanchor\"),n.coerceFont(d,\"font\",r.font);var m=d(\"bgcolor\");d(\"activecolor\",i.contrast(m,l.lightAmount,l.darkAmount)),d(\"bordercolor\"),d(\"borderwidth\")}}},{\"../../lib\":778,\"../../plot_api/plot_template\":817,\"../../plots/array_container_defaults\":823,\"../color\":643,\"./attributes\":706,\"./constants\":707}],709:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../registry\"),a=t(\"../../plots/plots\"),o=t(\"../color\"),s=t(\"../drawing\"),l=t(\"../../lib\"),c=l.strTranslate,u=t(\"../../lib/svg_text_utils\"),f=t(\"../../plots/cartesian/axis_ids\"),h=t(\"../../constants/alignment\"),p=h.LINE_SPACING,d=h.FROM_TL,g=h.FROM_BR,m=t(\"./constants\"),v=t(\"./get_update_object\");function y(t){return t._id}function x(t,e,r){var n=l.ensureSingle(t,\"rect\",\"selector-rect\",(function(t){t.attr(\"shape-rendering\",\"crispEdges\")}));n.attr({rx:m.rx,ry:m.ry}),n.call(o.stroke,e.bordercolor).call(o.fill,function(t,e){return e._isActive||e._isHovered?t.activecolor:t.bgcolor}(e,r)).style(\"stroke-width\",e.borderwidth+\"px\")}function b(t,e,r,n){l.ensureSingle(t,\"text\",\"selector-text\",(function(t){t.attr(\"text-anchor\",\"middle\")})).call(s.font,e.font).text(function(t,e){if(t.label)return e?l.templateString(t.label,e):t.label;return\"all\"===t.step?\"all\":t.count+t.step.charAt(0)}(r,n._fullLayout._meta)).call((function(t){u.convertToTspans(t,n)}))}e.exports=function(t){var e=t._fullLayout._infolayer.selectAll(\".rangeselector\").data(function(t){for(var e=f.list(t,\"x\",!0),r=[],n=0;n<e.length;n++){var i=e[n];i.rangeselector&&i.rangeselector.visible&&r.push(i)}return r}(t),y);e.enter().append(\"g\").classed(\"rangeselector\",!0),e.exit().remove(),e.style({cursor:\"pointer\",\"pointer-events\":\"all\"}),e.each((function(e){var r=n.select(this),o=e,f=o.rangeselector,h=r.selectAll(\"g.button\").data(l.filterVisible(f.buttons));h.enter().append(\"g\").classed(\"button\",!0),h.exit().remove(),h.each((function(e){var r=n.select(this),a=v(o,e);e._isActive=function(t,e,r){if(\"all\"===e.step)return!0===t.autorange;var n=Object.keys(r);return t.range[0]===r[n[0]]&&t.range[1]===r[n[1]]}(o,e,a),r.call(x,f,e),r.call(b,f,e,t),r.on(\"click\",(function(){t._dragged||i.call(\"_guiRelayout\",t,a)})),r.on(\"mouseover\",(function(){e._isHovered=!0,r.call(x,f,e)})),r.on(\"mouseout\",(function(){e._isHovered=!1,r.call(x,f,e)}))})),function(t,e,r,i,o){var f=0,h=0,v=r.borderwidth;e.each((function(){var t=n.select(this).select(\".selector-text\"),e=r.font.size*p,i=Math.max(e*u.lineCount(t),16)+3;h=Math.max(h,i)})),e.each((function(){var t=n.select(this),e=t.select(\".selector-rect\"),i=t.select(\".selector-text\"),a=i.node()&&s.bBox(i.node()).width,o=r.font.size*p,l=u.lineCount(i),d=Math.max(a+10,m.minButtonWidth);t.attr(\"transform\",c(v+f,v)),e.attr({x:0,y:0,width:d,height:h}),u.positionText(i,d/2,h/2-(l-1)*o/2+3),f+=d+5}));var y=t._fullLayout._size,x=y.l+y.w*r.x,b=y.t+y.h*(1-r.y),_=\"left\";l.isRightAnchor(r)&&(x-=f,_=\"right\");l.isCenterAnchor(r)&&(x-=f/2,_=\"center\");var w=\"top\";l.isBottomAnchor(r)&&(b-=h,w=\"bottom\");l.isMiddleAnchor(r)&&(b-=h/2,w=\"middle\");f=Math.ceil(f),h=Math.ceil(h),x=Math.round(x),b=Math.round(b),a.autoMargin(t,i+\"-range-selector\",{x:r.x,y:r.y,l:f*d[_],r:f*g[_],b:h*g[w],t:h*d[w]}),o.attr(\"transform\",c(x,b))}(t,h,f,o._name,r)}))}},{\"../../constants/alignment\":745,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../plots/cartesian/axis_ids\":831,\"../../plots/plots\":891,\"../../registry\":911,\"../color\":643,\"../drawing\":665,\"./constants\":707,\"./get_update_object\":710,d3:169}],710:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports=function(t,e){var r=t._name,i={};if(\"all\"===e.step)i[r+\".autorange\"]=!0;else{var a=function(t,e){var r,i=t.range,a=new Date(t.r2l(i[1])),o=e.step,s=e.count;switch(e.stepmode){case\"backward\":r=t.l2r(+n.time[o].utc.offset(a,-s));break;case\"todate\":var l=n.time[o].utc.offset(a,-s);r=t.l2r(+n.time[o].utc.ceil(l))}var c=i[1];return[r,c]}(t,e);i[r+\".range[0]\"]=a[0],i[r+\".range[1]\"]=a[1]}return i}},{d3:169}],711:[function(t,e,r){\"use strict\";e.exports={moduleType:\"component\",name:\"rangeselector\",schema:{subplots:{xaxis:{rangeselector:t(\"./attributes\")}}},layoutAttributes:t(\"./attributes\"),handleDefaults:t(\"./defaults\"),draw:t(\"./draw\")}},{\"./attributes\":706,\"./defaults\":708,\"./draw\":709}],712:[function(t,e,r){\"use strict\";var n=t(\"../color/attributes\");e.exports={bgcolor:{valType:\"color\",dflt:n.background,editType:\"plot\"},bordercolor:{valType:\"color\",dflt:n.defaultLine,editType:\"plot\"},borderwidth:{valType:\"integer\",dflt:0,min:0,editType:\"plot\"},autorange:{valType:\"boolean\",dflt:!0,editType:\"calc\",impliedEdits:{\"range[0]\":void 0,\"range[1]\":void 0}},range:{valType:\"info_array\",items:[{valType:\"any\",editType:\"calc\",impliedEdits:{\"^autorange\":!1}},{valType:\"any\",editType:\"calc\",impliedEdits:{\"^autorange\":!1}}],editType:\"calc\",impliedEdits:{autorange:!1}},thickness:{valType:\"number\",dflt:.15,min:0,max:1,editType:\"plot\"},visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"},editType:\"calc\"}},{\"../color/attributes\":642}],713:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axis_ids\").list,i=t(\"../../plots/cartesian/autorange\").getAutoRange,a=t(\"./constants\");e.exports=function(t){for(var e=n(t,\"x\",!0),r=0;r<e.length;r++){var o=e[r],s=o[a.name];s&&s.visible&&s.autorange&&(s._input.autorange=!0,s._input.range=s.range=i(t,o))}}},{\"../../plots/cartesian/autorange\":827,\"../../plots/cartesian/axis_ids\":831,\"./constants\":714}],714:[function(t,e,r){\"use strict\";e.exports={name:\"rangeslider\",containerClassName:\"rangeslider-container\",bgClassName:\"rangeslider-bg\",rangePlotClassName:\"rangeslider-rangeplot\",maskMinClassName:\"rangeslider-mask-min\",maskMaxClassName:\"rangeslider-mask-max\",slideBoxClassName:\"rangeslider-slidebox\",grabberMinClassName:\"rangeslider-grabber-min\",grabAreaMinClassName:\"rangeslider-grabarea-min\",handleMinClassName:\"rangeslider-handle-min\",grabberMaxClassName:\"rangeslider-grabber-max\",grabAreaMaxClassName:\"rangeslider-grabarea-max\",handleMaxClassName:\"rangeslider-handle-max\",maskMinOppAxisClassName:\"rangeslider-mask-min-opp-axis\",maskMaxOppAxisClassName:\"rangeslider-mask-max-opp-axis\",maskColor:\"rgba(0,0,0,0.4)\",maskOppAxisColor:\"rgba(0,0,0,0.2)\",slideBoxFill:\"transparent\",slideBoxCursor:\"ew-resize\",grabAreaFill:\"transparent\",grabAreaCursor:\"col-resize\",grabAreaWidth:10,handleWidth:4,handleRadius:1,handleStrokeWidth:1,extraPad:15}},{}],715:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plot_api/plot_template\"),a=t(\"../../plots/cartesian/axis_ids\"),o=t(\"./attributes\"),s=t(\"./oppaxis_attributes\");e.exports=function(t,e,r){var l=t[r],c=e[r];if(l.rangeslider||e._requestRangeslider[c._id]){n.isPlainObject(l.rangeslider)||(l.rangeslider={});var u,f,h=l.rangeslider,p=i.newContainer(c,\"rangeslider\");if(_(\"visible\")){_(\"bgcolor\",e.plot_bgcolor),_(\"bordercolor\"),_(\"borderwidth\"),_(\"thickness\"),_(\"autorange\",!c.isValidRange(h.range)),_(\"range\");var d=e._subplots;if(d)for(var g=d.cartesian.filter((function(t){return t.substr(0,t.indexOf(\"y\"))===a.name2id(r)})).map((function(t){return t.substr(t.indexOf(\"y\"),t.length)})),m=n.simpleMap(g,a.id2name),v=0;v<m.length;v++){var y=m[v];u=h[y]||{},f=i.newContainer(p,y,\"yaxis\");var x,b=e[y];u.range&&b.isValidRange(u.range)&&(x=\"fixed\"),\"match\"!==w(\"rangemode\",x)&&w(\"range\",b.range.slice())}p._input=h}}function _(t,e){return n.coerce(h,p,o,t,e)}function w(t,e){return n.coerce(u,f,s,t,e)}}},{\"../../lib\":778,\"../../plot_api/plot_template\":817,\"../../plots/cartesian/axis_ids\":831,\"./attributes\":712,\"./oppaxis_attributes\":719}],716:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../registry\"),a=t(\"../../plots/plots\"),o=t(\"../../lib\"),s=o.strTranslate,l=t(\"../drawing\"),c=t(\"../color\"),u=t(\"../titles\"),f=t(\"../../plots/cartesian\"),h=t(\"../../plots/cartesian/axis_ids\"),p=t(\"../dragelement\"),d=t(\"../../lib/setcursor\"),g=t(\"./constants\");function m(t,e,r,n){var i=o.ensureSingle(t,\"rect\",g.bgClassName,(function(t){t.attr({x:0,y:0,\"shape-rendering\":\"crispEdges\"})})),a=n.borderwidth%2==0?n.borderwidth:n.borderwidth-1,c=-n._offsetShift,u=l.crispRound(e,n.borderwidth);i.attr({width:n._width+a,height:n._height+a,transform:s(c,c),fill:n.bgcolor,stroke:n.bordercolor,\"stroke-width\":u})}function v(t,e,r,n){var i=e._fullLayout;o.ensureSingleById(i._topdefs,\"clipPath\",n._clipId,(function(t){t.append(\"rect\").attr({x:0,y:0})})).select(\"rect\").attr({width:n._width,height:n._height})}function y(t,e,r,i){var s,c=e.calcdata,u=t.selectAll(\"g.\"+g.rangePlotClassName).data(r._subplotsWith,o.identity);u.enter().append(\"g\").attr(\"class\",(function(t){return g.rangePlotClassName+\" \"+t})).call(l.setClipUrl,i._clipId,e),u.order(),u.exit().remove(),u.each((function(t,o){var l=n.select(this),u=0===o,p=h.getFromId(e,t,\"y\"),d=p._name,g=i[d],m={data:[],layout:{xaxis:{type:r.type,domain:[0,1],range:i.range.slice(),calendar:r.calendar},width:i._width,height:i._height,margin:{t:0,b:0,l:0,r:0}},_context:e._context};r.rangebreaks&&(m.layout.xaxis.rangebreaks=r.rangebreaks),m.layout[d]={type:p.type,domain:[0,1],range:\"match\"!==g.rangemode?g.range.slice():p.range.slice(),calendar:p.calendar},p.rangebreaks&&(m.layout[d].rangebreaks=p.rangebreaks),a.supplyDefaults(m);var v=m._fullLayout.xaxis,y=m._fullLayout[d];v.clearCalc(),v.setScale(),y.clearCalc(),y.setScale();var x={id:t,plotgroup:l,xaxis:v,yaxis:y,isRangePlot:!0};u?s=x:(x.mainplot=\"xy\",x.mainplotinfo=s),f.rangePlot(e,x,function(t,e){for(var r=[],n=0;n<t.length;n++){var i=t[n],a=i[0].trace;a.xaxis+a.yaxis===e&&r.push(i)}return r}(c,t))}))}function x(t,e,r,n,i){(o.ensureSingle(t,\"rect\",g.maskMinClassName,(function(t){t.attr({x:0,y:0,\"shape-rendering\":\"crispEdges\"})})).attr(\"height\",n._height).call(c.fill,g.maskColor),o.ensureSingle(t,\"rect\",g.maskMaxClassName,(function(t){t.attr({y:0,\"shape-rendering\":\"crispEdges\"})})).attr(\"height\",n._height).call(c.fill,g.maskColor),\"match\"!==i.rangemode)&&(o.ensureSingle(t,\"rect\",g.maskMinOppAxisClassName,(function(t){t.attr({y:0,\"shape-rendering\":\"crispEdges\"})})).attr(\"width\",n._width).call(c.fill,g.maskOppAxisColor),o.ensureSingle(t,\"rect\",g.maskMaxOppAxisClassName,(function(t){t.attr({y:0,\"shape-rendering\":\"crispEdges\"})})).attr(\"width\",n._width).style(\"border-top\",g.maskOppBorder).call(c.fill,g.maskOppAxisColor))}function b(t,e,r,n){e._context.staticPlot||o.ensureSingle(t,\"rect\",g.slideBoxClassName,(function(t){t.attr({y:0,cursor:g.slideBoxCursor,\"shape-rendering\":\"crispEdges\"})})).attr({height:n._height,fill:g.slideBoxFill})}function _(t,e,r,n){var i=o.ensureSingle(t,\"g\",g.grabberMinClassName),a=o.ensureSingle(t,\"g\",g.grabberMaxClassName),s={x:0,width:g.handleWidth,rx:g.handleRadius,fill:c.background,stroke:c.defaultLine,\"stroke-width\":g.handleStrokeWidth,\"shape-rendering\":\"crispEdges\"},l={y:Math.round(n._height/4),height:Math.round(n._height/2)};o.ensureSingle(i,\"rect\",g.handleMinClassName,(function(t){t.attr(s)})).attr(l),o.ensureSingle(a,\"rect\",g.handleMaxClassName,(function(t){t.attr(s)})).attr(l);var u={width:g.grabAreaWidth,x:0,y:0,fill:g.grabAreaFill,cursor:e._context.staticPlot?void 0:g.grabAreaCursor};o.ensureSingle(i,\"rect\",g.grabAreaMinClassName,(function(t){t.attr(u)})).attr(\"height\",n._height),o.ensureSingle(a,\"rect\",g.grabAreaMaxClassName,(function(t){t.attr(u)})).attr(\"height\",n._height)}e.exports=function(t){for(var e=t._fullLayout,r=e._rangeSliderData,a=0;a<r.length;a++){var l=r[a][g.name];l._clipId=l._id+\"-\"+e._uid}var c=e._infolayer.selectAll(\"g.\"+g.containerClassName).data(r,(function(t){return t._name}));c.exit().each((function(t){var r=t[g.name];e._topdefs.select(\"#\"+r._clipId).remove()})).remove(),0!==r.length&&(c.enter().append(\"g\").classed(g.containerClassName,!0).attr(\"pointer-events\",\"all\"),c.each((function(r){var a=n.select(this),l=r[g.name],c=e[h.id2name(r.anchor)],f=l[h.id2name(r.anchor)];if(l.range){var w,T=o.simpleMap(l.range,r.r2l),k=o.simpleMap(r.range,r.r2l);w=k[0]<k[1]?[Math.min(T[0],k[0]),Math.max(T[1],k[1])]:[Math.max(T[0],k[0]),Math.min(T[1],k[1])],l.range=l._input.range=o.simpleMap(w,r.l2r)}r.cleanRange(\"rangeslider.range\");var M=e._size,A=r.domain;l._width=M.w*(A[1]-A[0]);var S=Math.round(M.l+M.w*A[0]),E=Math.round(M.t+M.h*(1-r._counterDomainMin)+(\"bottom\"===r.side?r._depth:0)+l._offsetShift+g.extraPad);a.attr(\"transform\",s(S,E)),l._rl=o.simpleMap(l.range,r.r2l);var C=l._rl[0],L=l._rl[1],I=L-C;if(l.p2d=function(t){return t/l._width*I+C},l.d2p=function(t){return(t-C)/I*l._width},r.rangebreaks){var P=r.locateBreaks(C,L);if(P.length){var z,O,D=0;for(z=0;z<P.length;z++)D+=(O=P[z]).max-O.min;var R=l._width/(L-C-D),F=[-R*C];for(z=0;z<P.length;z++)O=P[z],F.push(F[F.length-1]-R*(O.max-O.min));for(l.d2p=function(t){for(var e=F[0],r=0;r<P.length;r++){var n=P[r];if(t>=n.max)e=F[r+1];else if(t<n.min)break}return e+R*t},z=0;z<P.length;z++)(O=P[z]).pmin=l.d2p(O.min),O.pmax=l.d2p(O.max);l.p2d=function(t){for(var e=F[0],r=0;r<P.length;r++){var n=P[r];if(t>=n.pmax)e=F[r+1];else if(t<n.pmin)break}return(t-e)/R}}}if(\"match\"!==f.rangemode){var B=c.r2l(f.range[0]),N=c.r2l(f.range[1])-B;l.d2pOppAxis=function(t){return(t-B)/N*l._height}}a.call(m,t,r,l).call(v,t,r,l).call(y,t,r,l).call(x,t,r,l,f).call(b,t,r,l).call(_,t,r,l),function(t,e,r,a){if(e._context.staticPlot)return;var s=t.select(\"rect.\"+g.slideBoxClassName).node(),l=t.select(\"rect.\"+g.grabAreaMinClassName).node(),c=t.select(\"rect.\"+g.grabAreaMaxClassName).node();function u(){var u=n.event,f=u.target,h=u.clientX||u.touches[0].clientX,g=h-t.node().getBoundingClientRect().left,m=a.d2p(r._rl[0]),v=a.d2p(r._rl[1]),y=p.coverSlip();function x(t){var u,p,x,b=+(t.clientX||t.touches[0].clientX)-h;switch(f){case s:x=\"ew-resize\",u=m+b,p=v+b;break;case l:x=\"col-resize\",u=m+b,p=v;break;case c:x=\"col-resize\",u=m,p=v+b;break;default:x=\"ew-resize\",u=g,p=g+b}if(p<u){var _=p;p=u,u=_}a._pixelMin=u,a._pixelMax=p,d(n.select(y),x),function(t,e,r,n){function a(t){return r.l2r(o.constrain(t,n._rl[0],n._rl[1]))}var s=a(n.p2d(n._pixelMin)),l=a(n.p2d(n._pixelMax));window.requestAnimationFrame((function(){i.call(\"_guiRelayout\",e,r._name+\".range\",[s,l])}))}(0,e,r,a)}function b(){y.removeEventListener(\"mousemove\",x),y.removeEventListener(\"mouseup\",b),this.removeEventListener(\"touchmove\",x),this.removeEventListener(\"touchend\",b),o.removeElement(y)}this.addEventListener(\"touchmove\",x),this.addEventListener(\"touchend\",b),y.addEventListener(\"mousemove\",x),y.addEventListener(\"mouseup\",b)}t.on(\"mousedown\",u),t.on(\"touchstart\",u)}(a,t,r,l),function(t,e,r,n,i,a){var l=g.handleWidth/2;function c(t){return o.constrain(t,0,n._width)}function u(t){return o.constrain(t,0,n._height)}function f(t){return o.constrain(t,-l,n._width+l)}var h=c(n.d2p(r._rl[0])),p=c(n.d2p(r._rl[1]));if(t.select(\"rect.\"+g.slideBoxClassName).attr(\"x\",h).attr(\"width\",p-h),t.select(\"rect.\"+g.maskMinClassName).attr(\"width\",h),t.select(\"rect.\"+g.maskMaxClassName).attr(\"x\",p).attr(\"width\",n._width-p),\"match\"!==a.rangemode){var d=n._height-u(n.d2pOppAxis(i._rl[1])),m=n._height-u(n.d2pOppAxis(i._rl[0]));t.select(\"rect.\"+g.maskMinOppAxisClassName).attr(\"x\",h).attr(\"height\",d).attr(\"width\",p-h),t.select(\"rect.\"+g.maskMaxOppAxisClassName).attr(\"x\",h).attr(\"y\",m).attr(\"height\",n._height-m).attr(\"width\",p-h),t.select(\"rect.\"+g.slideBoxClassName).attr(\"y\",d).attr(\"height\",m-d)}var v=Math.round(f(h-l))-.5,y=Math.round(f(p-l))+.5;t.select(\"g.\"+g.grabberMinClassName).attr(\"transform\",s(v,.5)),t.select(\"g.\"+g.grabberMaxClassName).attr(\"transform\",s(y,.5))}(a,0,r,l,c,f),\"bottom\"===r.side&&u.draw(t,r._id+\"title\",{propContainer:r,propName:r._name+\".title\",placeholder:e._dfltTitle.x,attributes:{x:r._offset+r._length/2,y:E+l._height+l._offsetShift+10+1.5*r.title.font.size,\"text-anchor\":\"middle\"}})})))}},{\"../../lib\":778,\"../../lib/setcursor\":799,\"../../plots/cartesian\":841,\"../../plots/cartesian/axis_ids\":831,\"../../plots/plots\":891,\"../../registry\":911,\"../color\":643,\"../dragelement\":662,\"../drawing\":665,\"../titles\":738,\"./constants\":714,d3:169}],717:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axis_ids\"),i=t(\"../../lib/svg_text_utils\"),a=t(\"./constants\"),o=t(\"../../constants/alignment\").LINE_SPACING,s=a.name;function l(t){var e=t&&t[s];return e&&e.visible}r.isVisible=l,r.makeData=function(t){var e=n.list({_fullLayout:t},\"x\",!0),r=t.margin,i=[];if(!t._has(\"gl2d\"))for(var a=0;a<e.length;a++){var o=e[a];if(l(o)){i.push(o);var c=o[s];c._id=s+o._id,c._height=(t.height-r.b-r.t)*c.thickness,c._offsetShift=Math.floor(c.borderwidth/2)}}t._rangeSliderData=i},r.autoMarginOpts=function(t,e){var r=t._fullLayout,n=e[s],l=e._id.charAt(0),c=0,u=0;\"bottom\"===e.side&&(c=e._depth,e.title.text!==r._dfltTitle[l]&&(u=1.5*e.title.font.size+10+n._offsetShift,u+=(e.title.text.match(i.BR_TAG_ALL)||[]).length*e.title.font.size*o));return{x:0,y:e._counterDomainMin,l:0,r:0,t:0,b:n._height+c+Math.max(r.margin.b,u),pad:a.extraPad+2*n._offsetShift}}},{\"../../constants/alignment\":745,\"../../lib/svg_text_utils\":803,\"../../plots/cartesian/axis_ids\":831,\"./constants\":714}],718:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"./oppaxis_attributes\"),o=t(\"./helpers\");e.exports={moduleType:\"component\",name:\"rangeslider\",schema:{subplots:{xaxis:{rangeslider:n.extendFlat({},i,{yaxis:a})}}},layoutAttributes:t(\"./attributes\"),handleDefaults:t(\"./defaults\"),calcAutorange:t(\"./calc_autorange\"),draw:t(\"./draw\"),isVisible:o.isVisible,makeData:o.makeData,autoMarginOpts:o.autoMarginOpts}},{\"../../lib\":778,\"./attributes\":712,\"./calc_autorange\":713,\"./defaults\":715,\"./draw\":716,\"./helpers\":717,\"./oppaxis_attributes\":719}],719:[function(t,e,r){\"use strict\";e.exports={_isSubplotObj:!0,rangemode:{valType:\"enumerated\",values:[\"auto\",\"fixed\",\"match\"],dflt:\"match\",editType:\"calc\"},range:{valType:\"info_array\",items:[{valType:\"any\",editType:\"plot\"},{valType:\"any\",editType:\"plot\"}],editType:\"plot\"},editType:\"calc\"}},{}],720:[function(t,e,r){\"use strict\";var n=t(\"../annotations/attributes\"),i=t(\"../../traces/scatter/attributes\").line,a=t(\"../drawing/attributes\").dash,o=t(\"../../lib/extend\").extendFlat,s=t(\"../../plot_api/plot_template\").templatedArray;t(\"../../constants/axis_placeable_objects\");e.exports=s(\"shape\",{visible:{valType:\"boolean\",dflt:!0,editType:\"calc+arraydraw\"},type:{valType:\"enumerated\",values:[\"circle\",\"rect\",\"path\",\"line\"],editType:\"calc+arraydraw\"},layer:{valType:\"enumerated\",values:[\"below\",\"above\"],dflt:\"above\",editType:\"arraydraw\"},xref:o({},n.xref,{}),xsizemode:{valType:\"enumerated\",values:[\"scaled\",\"pixel\"],dflt:\"scaled\",editType:\"calc+arraydraw\"},xanchor:{valType:\"any\",editType:\"calc+arraydraw\"},x0:{valType:\"any\",editType:\"calc+arraydraw\"},x1:{valType:\"any\",editType:\"calc+arraydraw\"},yref:o({},n.yref,{}),ysizemode:{valType:\"enumerated\",values:[\"scaled\",\"pixel\"],dflt:\"scaled\",editType:\"calc+arraydraw\"},yanchor:{valType:\"any\",editType:\"calc+arraydraw\"},y0:{valType:\"any\",editType:\"calc+arraydraw\"},y1:{valType:\"any\",editType:\"calc+arraydraw\"},path:{valType:\"string\",editType:\"calc+arraydraw\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"arraydraw\"},line:{color:o({},i.color,{editType:\"arraydraw\"}),width:o({},i.width,{editType:\"calc+arraydraw\"}),dash:o({},a,{editType:\"arraydraw\"}),editType:\"calc+arraydraw\"},fillcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"arraydraw\"},fillrule:{valType:\"enumerated\",values:[\"evenodd\",\"nonzero\"],dflt:\"evenodd\",editType:\"arraydraw\"},editable:{valType:\"boolean\",dflt:!1,editType:\"calc+arraydraw\"},editType:\"arraydraw\"})},{\"../../constants/axis_placeable_objects\":746,\"../../lib/extend\":768,\"../../plot_api/plot_template\":817,\"../../traces/scatter/attributes\":1187,\"../annotations/attributes\":626,\"../drawing/attributes\":664}],721:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"./constants\"),o=t(\"./helpers\");function s(t){return c(t.line.width,t.xsizemode,t.x0,t.x1,t.path,!1)}function l(t){return c(t.line.width,t.ysizemode,t.y0,t.y1,t.path,!0)}function c(t,e,r,i,s,l){var c=t/2,u=l;if(\"pixel\"===e){var f=s?o.extractPathCoords(s,l?a.paramIsY:a.paramIsX):[r,i],h=n.aggNums(Math.max,null,f),p=n.aggNums(Math.min,null,f),d=p<0?Math.abs(p)+c:c,g=h>0?h+c:c;return{ppad:c,ppadplus:u?d:g,ppadminus:u?g:d}}return{ppad:c}}function u(t,e,r,n,i){var s=\"category\"===t.type||\"multicategory\"===t.type?t.r2c:t.d2c;if(void 0!==e)return[s(e),s(r)];if(n){var l,c,u,f,h=1/0,p=-1/0,d=n.match(a.segmentRE);for(\"date\"===t.type&&(s=o.decodeDate(s)),l=0;l<d.length;l++)void 0!==(c=i[d[l].charAt(0)].drawn)&&(!(u=d[l].substr(1).match(a.paramRE))||u.length<c||((f=s(u[c]))<h&&(h=f),f>p&&(p=f)));return p>=h?[h,p]:void 0}}e.exports=function(t){var e=t._fullLayout,r=n.filterVisible(e.shapes);if(r.length&&t._fullData.length)for(var o=0;o<r.length;o++){var c,f,h=r[o];h._extremes={};var p=i.getRefType(h.xref),d=i.getRefType(h.yref);if(\"paper\"!==h.xref&&\"domain\"!==p){var g=\"pixel\"===h.xsizemode?h.xanchor:h.x0,m=\"pixel\"===h.xsizemode?h.xanchor:h.x1;(f=u(c=i.getFromId(t,h.xref),g,m,h.path,a.paramIsX))&&(h._extremes[c._id]=i.findExtremes(c,f,s(h)))}if(\"paper\"!==h.yref&&\"domain\"!==d){var v=\"pixel\"===h.ysizemode?h.yanchor:h.y0,y=\"pixel\"===h.ysizemode?h.yanchor:h.y1;(f=u(c=i.getFromId(t,h.yref),v,y,h.path,a.paramIsY))&&(h._extremes[c._id]=i.findExtremes(c,f,l(h)))}}}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"./constants\":722,\"./helpers\":731}],722:[function(t,e,r){\"use strict\";e.exports={segmentRE:/[MLHVQCTSZ][^MLHVQCTSZ]*/g,paramRE:/[^\\s,]+/g,paramIsX:{M:{0:!0,drawn:0},L:{0:!0,drawn:0},H:{0:!0,drawn:0},V:{},Q:{0:!0,2:!0,drawn:2},C:{0:!0,2:!0,4:!0,drawn:4},T:{0:!0,drawn:0},S:{0:!0,2:!0,drawn:2},Z:{}},paramIsY:{M:{1:!0,drawn:1},L:{1:!0,drawn:1},H:{},V:{0:!0,drawn:0},Q:{1:!0,3:!0,drawn:3},C:{1:!0,3:!0,5:!0,drawn:5},T:{1:!0,drawn:1},S:{1:!0,3:!0,drawn:5},Z:{}},numParams:{M:2,L:2,H:1,V:1,Q:4,C:6,T:2,S:4,Z:0}}},{}],723:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../plots/array_container_defaults\"),o=t(\"./attributes\"),s=t(\"./helpers\");function l(t,e,r){function a(r,i){return n.coerce(t,e,o,r,i)}if(a(\"visible\")){var l=a(\"path\"),c=a(\"type\",l?\"path\":\"rect\");\"path\"!==e.type&&delete e.path,a(\"editable\"),a(\"layer\"),a(\"opacity\"),a(\"fillcolor\"),a(\"fillrule\"),a(\"line.width\")&&(a(\"line.color\"),a(\"line.dash\"));for(var u=a(\"xsizemode\"),f=a(\"ysizemode\"),h=[\"x\",\"y\"],p=0;p<2;p++){var d,g,m,v=h[p],y=v+\"anchor\",x=\"x\"===v?u:f,b={_fullLayout:r},_=i.coerceRef(t,e,b,v,void 0,\"paper\");if(\"range\"===i.getRefType(_)?((d=i.getFromId(b,_))._shapeIndices.push(e._index),m=s.rangeToShapePosition(d),g=s.shapePositionToRange(d)):g=m=n.identity,\"path\"!==c){var w=v+\"0\",T=v+\"1\",k=t[w],M=t[T];t[w]=g(t[w],!0),t[T]=g(t[T],!0),\"pixel\"===x?(a(w,0),a(T,10)):(i.coercePosition(e,b,a,_,w,.25),i.coercePosition(e,b,a,_,T,.75)),e[w]=m(e[w]),e[T]=m(e[T]),t[w]=k,t[T]=M}if(\"pixel\"===x){var A=t[y];t[y]=g(t[y],!0),i.coercePosition(e,b,a,_,y,.25),e[y]=m(e[y]),t[y]=A}}\"path\"===c?a(\"path\"):n.noneOrAll(t,e,[\"x0\",\"x1\",\"y0\",\"y1\"])}}e.exports=function(t,e){a(t,e,{name:\"shapes\",handleItemDefaults:l})}},{\"../../lib\":778,\"../../plots/array_container_defaults\":823,\"../../plots/cartesian/axes\":828,\"./attributes\":720,\"./helpers\":731}],724:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),o=t(\"./draw_newshape/helpers\").readPaths,s=t(\"./draw_newshape/display_outlines\"),l=t(\"../../plots/cartesian/handle_outline\").clearOutlineControllers,c=t(\"../color\"),u=t(\"../drawing\"),f=t(\"../../plot_api/plot_template\").arrayEditor,h=t(\"../dragelement\"),p=t(\"../../lib/setcursor\"),d=t(\"./constants\"),g=t(\"./helpers\");function m(t){var e=t._fullLayout;for(var r in e._shapeUpperLayer.selectAll(\"path\").remove(),e._shapeLowerLayer.selectAll(\"path\").remove(),e._plots){var n=e._plots[r].shapelayer;n&&n.selectAll(\"path\").remove()}for(var i=0;i<e.shapes.length;i++)e.shapes[i].visible&&x(t,i)}function v(t){return!!t._fullLayout._drawing}function y(t){return!t._context.edits.shapePosition}function x(t,e){t._fullLayout._paperdiv.selectAll('.shapelayer [data-index=\"'+e+'\"]').remove();var r=g.makeOptionsAndPlotinfo(t,e),l=r.options,x=r.plotinfo;if(l._input&&!1!==l.visible)if(\"below\"!==l.layer)k(t._fullLayout._shapeUpperLayer);else if(\"paper\"===l.xref||\"paper\"===l.yref)k(t._fullLayout._shapeLowerLayer);else{if(x._hadPlotinfo)k((x.mainplotinfo||x).shapelayer);else k(t._fullLayout._shapeLowerLayer)}function k(r){var k=_(t,l),M={\"data-index\":e,\"fill-rule\":l.fillrule,d:k},A=l.opacity,S=l.fillcolor,E=l.line.width?l.line.color:\"rgba(0,0,0,0)\",C=l.line.width,L=l.line.dash;C||!0!==l.editable||(C=5,L=\"solid\");var I=\"Z\"!==k[k.length-1],P=y(t)&&l.editable&&t._fullLayout._activeShapeIndex===e;P&&(S=I?\"rgba(0,0,0,0)\":t._fullLayout.activeshape.fillcolor,A=t._fullLayout.activeshape.opacity);var z,O=r.append(\"path\").attr(M).style(\"opacity\",A).call(c.stroke,E).call(c.fill,S).call(u.dashLine,L,C);if(b(O,t,l),(P||t._context.edits.shapePosition)&&(z=f(t.layout,\"shapes\",l)),P){O.style({cursor:\"move\"});var D={element:O.node(),plotinfo:x,gd:t,editHelpers:z,isActiveShape:!0},R=o(k,t);s(R,O,D)}else t._context.edits.shapePosition?function(t,e,r,o,s,l){var c,f,m,y,x,T,k,M,A,S,E,C,L,I,P,z,O=\"pixel\"===r.xsizemode,D=\"pixel\"===r.ysizemode,R=\"line\"===r.type,F=\"path\"===r.type,B=l.modifyItem,N=a.getFromId(t,r.xref),j=a.getRefType(r.xref),U=a.getFromId(t,r.yref),V=a.getRefType(r.yref),q=g.getDataToPixel(t,N,!1,j),H=g.getDataToPixel(t,U,!0,V),G=g.getPixelToData(t,N,!1,j),Y=g.getPixelToData(t,U,!0,V),W=R?function(){var t=Math.max(r.line.width,10),n=s.append(\"g\").attr(\"data-index\",o);n.append(\"path\").attr(\"d\",e.attr(\"d\")).style({cursor:\"move\",\"stroke-width\":t,\"stroke-opacity\":\"0\"});var i={\"fill-opacity\":\"0\"},a=Math.max(t/2,10);return n.append(\"circle\").attr({\"data-line-point\":\"start-point\",cx:O?q(r.xanchor)+r.x0:q(r.x0),cy:D?H(r.yanchor)-r.y0:H(r.y0),r:a}).style(i).classed(\"cursor-grab\",!0),n.append(\"circle\").attr({\"data-line-point\":\"end-point\",cx:O?q(r.xanchor)+r.x1:q(r.x1),cy:D?H(r.yanchor)-r.y1:H(r.y1),r:a}).style(i).classed(\"cursor-grab\",!0),n}():e,X={element:W.node(),gd:t,prepFn:function(n){if(v(t))return;O&&(x=q(r.xanchor));D&&(T=H(r.yanchor));\"path\"===r.type?P=r.path:(c=O?r.x0:q(r.x0),f=D?r.y0:H(r.y0),m=O?r.x1:q(r.x1),y=D?r.y1:H(r.y1));c<m?(A=c,L=\"x0\",S=m,I=\"x1\"):(A=m,L=\"x1\",S=c,I=\"x0\");!D&&f<y||D&&f>y?(k=f,E=\"y0\",M=y,C=\"y1\"):(k=y,E=\"y1\",M=f,C=\"y0\");Z(n),Q(s,r),function(t,e,r){var n=e.xref,i=e.yref,o=a.getFromId(r,n),s=a.getFromId(r,i),l=\"\";\"paper\"===n||o.autorange||(l+=n);\"paper\"===i||s.autorange||(l+=i);u.setClipUrl(t,l?\"clip\"+r._fullLayout._uid+l:null,r)}(e,r,t),X.moveFn=\"move\"===z?J:K,X.altKey=n.altKey},doneFn:function(){if(v(t))return;p(e),$(s),b(e,t,r),n.call(\"_guiRelayout\",t,l.getUpdateObj())},clickFn:function(){if(v(t))return;$(s)}};function Z(r){if(v(t))z=null;else if(R)z=\"path\"===r.target.tagName?\"move\":\"start-point\"===r.target.attributes[\"data-line-point\"].value?\"resize-over-start-point\":\"resize-over-end-point\";else{var n=X.element.getBoundingClientRect(),i=n.right-n.left,a=n.bottom-n.top,o=r.clientX-n.left,s=r.clientY-n.top,l=!F&&i>10&&a>10&&!r.shiftKey?h.getCursor(o/i,1-s/a):\"move\";p(e,l),z=l.split(\"-\")[0]}}function J(n,i){if(\"path\"===r.type){var a=function(t){return t},o=a,l=a;O?B(\"xanchor\",r.xanchor=G(x+n)):(o=function(t){return G(q(t)+n)},N&&\"date\"===N.type&&(o=g.encodeDate(o))),D?B(\"yanchor\",r.yanchor=Y(T+i)):(l=function(t){return Y(H(t)+i)},U&&\"date\"===U.type&&(l=g.encodeDate(l))),B(\"path\",r.path=w(P,o,l))}else O?B(\"xanchor\",r.xanchor=G(x+n)):(B(\"x0\",r.x0=G(c+n)),B(\"x1\",r.x1=G(m+n))),D?B(\"yanchor\",r.yanchor=Y(T+i)):(B(\"y0\",r.y0=Y(f+i)),B(\"y1\",r.y1=Y(y+i)));e.attr(\"d\",_(t,r)),Q(s,r)}function K(n,i){if(F){var a=function(t){return t},o=a,l=a;O?B(\"xanchor\",r.xanchor=G(x+n)):(o=function(t){return G(q(t)+n)},N&&\"date\"===N.type&&(o=g.encodeDate(o))),D?B(\"yanchor\",r.yanchor=Y(T+i)):(l=function(t){return Y(H(t)+i)},U&&\"date\"===U.type&&(l=g.encodeDate(l))),B(\"path\",r.path=w(P,o,l))}else if(R){if(\"resize-over-start-point\"===z){var u=c+n,h=D?f-i:f+i;B(\"x0\",r.x0=O?u:G(u)),B(\"y0\",r.y0=D?h:Y(h))}else if(\"resize-over-end-point\"===z){var p=m+n,d=D?y-i:y+i;B(\"x1\",r.x1=O?p:G(p)),B(\"y1\",r.y1=D?d:Y(d))}}else{var v=function(t){return-1!==z.indexOf(t)},b=v(\"n\"),j=v(\"s\"),V=v(\"w\"),W=v(\"e\"),X=b?k+i:k,Z=j?M+i:M,J=V?A+n:A,K=W?S+n:S;D&&(b&&(X=k-i),j&&(Z=M-i)),(!D&&Z-X>10||D&&X-Z>10)&&(B(E,r[E]=D?X:Y(X)),B(C,r[C]=D?Z:Y(Z))),K-J>10&&(B(L,r[L]=O?J:G(J)),B(I,r[I]=O?K:G(K)))}e.attr(\"d\",_(t,r)),Q(s,r)}function Q(t,e){(O||D)&&function(){var r=\"path\"!==e.type,n=t.selectAll(\".visual-cue\").data([0]);n.enter().append(\"path\").attr({fill:\"#fff\",\"fill-rule\":\"evenodd\",stroke:\"#000\",\"stroke-width\":1}).classed(\"visual-cue\",!0);var a=q(O?e.xanchor:i.midRange(r?[e.x0,e.x1]:g.extractPathCoords(e.path,d.paramIsX))),o=H(D?e.yanchor:i.midRange(r?[e.y0,e.y1]:g.extractPathCoords(e.path,d.paramIsY)));if(a=g.roundPositionForSharpStrokeRendering(a,1),o=g.roundPositionForSharpStrokeRendering(o,1),O&&D){var s=\"M\"+(a-1-1)+\",\"+(o-1-1)+\"h-8v2h8 v8h2v-8 h8v-2h-8 v-8h-2 Z\";n.attr(\"d\",s)}else if(O){var l=\"M\"+(a-1-1)+\",\"+(o-9-1)+\"v18 h2 v-18 Z\";n.attr(\"d\",l)}else{var c=\"M\"+(a-9-1)+\",\"+(o-1-1)+\"h18 v2 h-18 Z\";n.attr(\"d\",c)}}()}function $(t){t.selectAll(\".visual-cue\").remove()}h.init(X),W.node().onmousemove=Z}(t,O,l,e,r,z):!0===l.editable&&O.style(\"pointer-events\",I||c.opacity(S)*A<=.5?\"stroke\":\"all\");O.node().addEventListener(\"click\",(function(){return function(t,e){if(!y(t))return;var r=+e.node().getAttribute(\"data-index\");if(r>=0){if(r===t._fullLayout._activeShapeIndex)return void T(t);t._fullLayout._activeShapeIndex=r,t._fullLayout._deactivateShape=T,m(t)}}(t,O)}))}}function b(t,e,r){var n=(r.xref+r.yref).replace(/paper/g,\"\").replace(/[xyz][1-9]* *domain/g,\"\");u.setClipUrl(t,n?\"clip\"+e._fullLayout._uid+n:null,e)}function _(t,e){var r,n,o,s,l,c,u,f,h=e.type,p=a.getRefType(e.xref),m=a.getRefType(e.yref),v=a.getFromId(t,e.xref),y=a.getFromId(t,e.yref),x=t._fullLayout._size;if(v?\"domain\"===p?n=function(t){return v._offset+v._length*t}:(r=g.shapePositionToRange(v),n=function(t){return v._offset+v.r2p(r(t,!0))}):n=function(t){return x.l+x.w*t},y?\"domain\"===m?s=function(t){return y._offset+y._length*(1-t)}:(o=g.shapePositionToRange(y),s=function(t){return y._offset+y.r2p(o(t,!0))}):s=function(t){return x.t+x.h*(1-t)},\"path\"===h)return v&&\"date\"===v.type&&(n=g.decodeDate(n)),y&&\"date\"===y.type&&(s=g.decodeDate(s)),function(t,e,r){var n=t.path,a=t.xsizemode,o=t.ysizemode,s=t.xanchor,l=t.yanchor;return n.replace(d.segmentRE,(function(t){var n=0,c=t.charAt(0),u=d.paramIsX[c],f=d.paramIsY[c],h=d.numParams[c],p=t.substr(1).replace(d.paramRE,(function(t){return u[n]?t=\"pixel\"===a?e(s)+Number(t):e(t):f[n]&&(t=\"pixel\"===o?r(l)-Number(t):r(t)),++n>h&&(t=\"X\"),t}));return n>h&&(p=p.replace(/[\\s,]*X.*/,\"\"),i.log(\"Ignoring extra params in segment \"+t)),c+p}))}(e,n,s);if(\"pixel\"===e.xsizemode){var b=n(e.xanchor);l=b+e.x0,c=b+e.x1}else l=n(e.x0),c=n(e.x1);if(\"pixel\"===e.ysizemode){var _=s(e.yanchor);u=_-e.y0,f=_-e.y1}else u=s(e.y0),f=s(e.y1);if(\"line\"===h)return\"M\"+l+\",\"+u+\"L\"+c+\",\"+f;if(\"rect\"===h)return\"M\"+l+\",\"+u+\"H\"+c+\"V\"+f+\"H\"+l+\"Z\";var w=(l+c)/2,T=(u+f)/2,k=Math.abs(w-l),M=Math.abs(T-u),A=\"A\"+k+\",\"+M,S=w+k+\",\"+T;return\"M\"+S+A+\" 0 1,1 \"+(w+\",\"+(T-M))+A+\" 0 0,1 \"+S+\"Z\"}function w(t,e,r){return t.replace(d.segmentRE,(function(t){var n=0,i=t.charAt(0),a=d.paramIsX[i],o=d.paramIsY[i],s=d.numParams[i];return i+t.substr(1).replace(d.paramRE,(function(t){return n>=s||(a[n]?t=e(t):o[n]&&(t=r(t)),n++),t}))}))}function T(t){y(t)&&(t._fullLayout._activeShapeIndex>=0&&(l(t),delete t._fullLayout._activeShapeIndex,m(t)))}e.exports={draw:m,drawOne:x,eraseActiveShape:function(t){if(!y(t))return;l(t);var e=t._fullLayout._activeShapeIndex,r=(t.layout||{}).shapes||[];if(e<r.length){for(var i=[],a=0;a<r.length;a++)a!==e&&i.push(r[a]);delete t._fullLayout._activeShapeIndex,n.call(\"_guiRelayout\",t,{shapes:i})}}}},{\"../../lib\":778,\"../../lib/setcursor\":799,\"../../plot_api/plot_template\":817,\"../../plots/cartesian/axes\":828,\"../../plots/cartesian/handle_outline\":838,\"../../registry\":911,\"../color\":643,\"../dragelement\":662,\"../drawing\":665,\"./constants\":722,\"./draw_newshape/display_outlines\":728,\"./draw_newshape/helpers\":729,\"./helpers\":731}],725:[function(t,e,r){\"use strict\";var n=t(\"../../drawing/attributes\").dash,i=t(\"../../../lib/extend\").extendFlat;e.exports={newshape:{line:{color:{valType:\"color\",editType:\"none\"},width:{valType:\"number\",min:0,dflt:4,editType:\"none\"},dash:i({},n,{dflt:\"solid\",editType:\"none\"}),editType:\"none\"},fillcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"none\"},fillrule:{valType:\"enumerated\",values:[\"evenodd\",\"nonzero\"],dflt:\"evenodd\",editType:\"none\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"none\"},layer:{valType:\"enumerated\",values:[\"below\",\"above\"],dflt:\"above\",editType:\"none\"},drawdirection:{valType:\"enumerated\",values:[\"ortho\",\"horizontal\",\"vertical\",\"diagonal\"],dflt:\"diagonal\",editType:\"none\"},editType:\"none\"},activeshape:{fillcolor:{valType:\"color\",dflt:\"rgb(255,0,255)\",editType:\"none\"},opacity:{valType:\"number\",min:0,max:1,dflt:.5,editType:\"none\"},editType:\"none\"}}},{\"../../../lib/extend\":768,\"../../drawing/attributes\":664}],726:[function(t,e,r){\"use strict\";e.exports={CIRCLE_SIDES:32,i000:0,i090:8,i180:16,i270:24,cos45:Math.cos(Math.PI/4),sin45:Math.sin(Math.PI/4),SQRT2:Math.sqrt(2)}},{}],727:[function(t,e,r){\"use strict\";var n=t(\"../../color\");e.exports=function(t,e,r){if(r(\"newshape.drawdirection\"),r(\"newshape.layer\"),r(\"newshape.fillcolor\"),r(\"newshape.fillrule\"),r(\"newshape.opacity\"),r(\"newshape.line.width\")){var i=(t||{}).plot_bgcolor||\"#FFF\";r(\"newshape.line.color\",n.contrast(i)),r(\"newshape.line.dash\")}r(\"activeshape.fillcolor\"),r(\"activeshape.opacity\")}},{\"../../color\":643}],728:[function(t,e,r){\"use strict\";var n=t(\"../../dragelement\"),i=t(\"../../dragelement/helpers\").drawMode,a=t(\"../../../registry\"),o=t(\"./constants\"),s=o.i000,l=o.i090,c=o.i180,u=o.i270,f=t(\"../../../plots/cartesian/handle_outline\").clearOutlineControllers,h=t(\"./helpers\"),p=h.pointsShapeRectangle,d=h.pointsShapeEllipse,g=h.writePaths,m=t(\"./newshapes\");e.exports=function t(e,r,o,h){h||(h=0);var v=o.gd;function y(){t(e,r,o,h++),d(e[0])&&x({redrawing:!0})}function x(t){o.isActiveShape=!1;var e=m(r,o);Object.keys(e).length&&a.call((t||{}).redrawing?\"relayout\":\"_guiRelayout\",v,e)}var b,_,w,T,k,M=o.isActiveShape,A=v._fullLayout._zoomlayer,S=o.dragmode;(i(S)?v._fullLayout._drawing=!0:v._fullLayout._activeShapeIndex>=0&&f(v),r.attr(\"d\",g(e)),M&&!h)&&(k=function(t,e){for(var r=0;r<e.length;r++){var n=e[r];t[r]=[];for(var i=0;i<n.length;i++){t[r][i]=[];for(var a=0;a<n[i].length;a++)t[r][i][a]=n[i][a]}}return t}([],e),function(t){b=[];for(var r=0;r<e.length;r++){var i=e[r],a=!p(i)&&d(i);b[r]=[];for(var o=0;o<i.length;o++)if(\"Z\"!==i[o][0]&&(!a||o===s||o===l||o===c||o===u)){var f=i[o][1],h=i[o][2],g=t.append(\"circle\").classed(\"cursor-grab\",!0).attr(\"data-i\",r).attr(\"data-j\",o).attr(\"cx\",f).attr(\"cy\",h).attr(\"r\",4).style({\"mix-blend-mode\":\"luminosity\",fill:\"black\",stroke:\"white\",\"stroke-width\":1});b[r][o]={element:g.node(),gd:v,prepFn:E,doneFn:L,clickFn:I},n.init(b[r][o])}}}(A.append(\"g\").attr(\"class\",\"outline-controllers\")),function(){if(_=[],!e.length)return;_[0]={element:r[0][0],gd:v,prepFn:z,doneFn:O},n.init(_[0])}());function E(t){w=+t.srcElement.getAttribute(\"data-i\"),T=+t.srcElement.getAttribute(\"data-j\"),b[w][T].moveFn=C}function C(t,r){if(e.length){var n=k[w][T][1],i=k[w][T][2],a=e[w],o=a.length;if(p(a)){for(var s=0;s<o;s++)if(s!==T){var l=a[s];l[1]===a[T][1]&&(l[1]=n+t),l[2]===a[T][2]&&(l[2]=i+r)}if(a[T][1]=n+t,a[T][2]=i+r,!p(a))for(var c=0;c<o;c++)for(var u=0;u<a[c].length;u++)a[c][u]=k[w][c][u]}else a[T][1]=n+t,a[T][2]=i+r;y()}}function L(){x()}function I(t,r){if(2===t){w=+r.srcElement.getAttribute(\"data-i\"),T=+r.srcElement.getAttribute(\"data-j\");var n=e[w];p(n)||d(n)||function(){if(e.length&&e[w]&&e[w].length){for(var t=[],r=0;r<e[w].length;r++)r!==T&&t.push(e[w][r]);t.length>1&&(2!==t.length||\"Z\"!==t[1][0])&&(0===T&&(t[0][0]=\"M\"),e[w]=t,y(),x())}}()}}function P(t,r){!function(t,r){if(e.length)for(var n=0;n<e.length;n++)for(var i=0;i<e[n].length;i++)for(var a=0;a+2<e[n][i].length;a+=2)e[n][i][a+1]=k[n][i][a+1]+t,e[n][i][a+2]=k[n][i][a+2]+r}(t,r),y()}function z(t){(w=+t.srcElement.getAttribute(\"data-i\"))||(w=0),_[w].moveFn=P}function O(){x()}}},{\"../../../plots/cartesian/handle_outline\":838,\"../../../registry\":911,\"../../dragelement\":662,\"../../dragelement/helpers\":661,\"./constants\":726,\"./helpers\":729,\"./newshapes\":730}],729:[function(t,e,r){\"use strict\";var n=t(\"parse-svg-path\"),i=t(\"./constants\"),a=i.CIRCLE_SIDES,o=i.SQRT2,s=t(\"../../../plots/cartesian/helpers\"),l=s.p2r,c=s.r2p,u=[0,3,4,5,6,1,2],f=[0,3,4,1,2];function h(t,e){return Math.abs(t-e)<=1e-6}function p(t,e){var r=e[1]-t[1],n=e[2]-t[2];return Math.sqrt(r*r+n*n)}r.writePaths=function(t){var e=t.length;if(!e)return\"M0,0Z\";for(var r=\"\",n=0;n<e;n++)for(var i=t[n].length,a=0;a<i;a++){var o=t[n][a][0];if(\"Z\"===o)r+=\"Z\";else for(var s=t[n][a].length,l=0;l<s;l++){var c=l;\"Q\"===o||\"S\"===o?c=f[l]:\"C\"===o&&(c=u[l]),r+=t[n][a][c],l>0&&l<s-1&&(r+=\",\")}}return r},r.readPaths=function(t,e,r,i){var o,s,u,f=n(t),h=[],p=-1,d=0,g=0,m=function(){s=d,u=g};m();for(var v=0;v<f.length;v++){var y,x,b,_,w=[],T=f[v][0],k=T;switch(T){case\"M\":p++,h[p]=[],d=+f[v][1],g=+f[v][2],w.push([k,d,g]),m();break;case\"Q\":case\"S\":y=+f[v][1],b=+f[v][2],d=+f[v][3],g=+f[v][4],w.push([k,d,g,y,b]);break;case\"C\":y=+f[v][1],b=+f[v][2],x=+f[v][3],_=+f[v][4],d=+f[v][5],g=+f[v][6],w.push([k,d,g,y,b,x,_]);break;case\"T\":case\"L\":d=+f[v][1],g=+f[v][2],w.push([k,d,g]);break;case\"H\":k=\"L\",d=+f[v][1],w.push([k,d,g]);break;case\"V\":k=\"L\",g=+f[v][1],w.push([k,d,g]);break;case\"A\":k=\"L\";var M=+f[v][1],A=+f[v][2];+f[v][4]||(M=-M,A=-A);var S=d-M,E=g;for(o=1;o<=a/2;o++){var C=2*Math.PI*o/a;w.push([k,S+M*Math.cos(C),E+A*Math.sin(C)])}break;case\"Z\":d===s&&g===u||(d=s,g=u,w.push([k,d,g]))}for(var L=(r||{}).domain,I=e._fullLayout._size,P=r&&\"pixel\"===r.xsizemode,z=r&&\"pixel\"===r.ysizemode,O=!1===i,D=0;D<w.length;D++){for(o=0;o+2<7;o+=2){var R=w[D][o+1],F=w[D][o+2];void 0!==R&&void 0!==F&&(d=R,g=F,r&&(r.xaxis&&r.xaxis.p2r?(O&&(R-=r.xaxis._offset),R=P?c(r.xaxis,r.xanchor)+R:l(r.xaxis,R)):(O&&(R-=I.l),L?R=L.x[0]+R/I.w:R/=I.w),r.yaxis&&r.yaxis.p2r?(O&&(F-=r.yaxis._offset),F=z?c(r.yaxis,r.yanchor)-F:l(r.yaxis,F)):(O&&(F-=I.t),F=L?L.y[1]-F/I.h:1-F/I.h)),w[D][o+1]=R,w[D][o+2]=F)}h[p].push(w[D].slice())}}return h},r.pointsShapeRectangle=function(t){if(5!==t.length)return!1;for(var e=1;e<3;e++){if(!h(t[0][e]-t[1][e],t[3][e]-t[2][e]))return!1;if(!h(t[0][e]-t[3][e],t[1][e]-t[2][e]))return!1}return!(!h(t[0][1],t[1][1])&&!h(t[0][1],t[3][1]))&&!!(p(t[0],t[1])*p(t[0],t[3]))},r.pointsShapeEllipse=function(t){var e=t.length;if(e!==a+1)return!1;e=a;for(var r=0;r<e;r++){var n=(2*e-r)%e,i=(e/2+n)%e,o=(e/2+r)%e;if(!h(p(t[r],t[o]),p(t[n],t[i])))return!1}return!0},r.handleEllipse=function(t,e,n){if(!t)return[e,n];var i=r.ellipseOver({x0:e[0],y0:e[1],x1:n[0],y1:n[1]}),s=(i.x1+i.x0)/2,l=(i.y1+i.y0)/2,c=(i.x1-i.x0)/2,u=(i.y1-i.y0)/2;c||(c=u/=o),u||(u=c/=o);for(var f=[],h=0;h<a;h++){var p=2*h*Math.PI/a;f.push([s+c*Math.cos(p),l+u*Math.sin(p)])}return f},r.ellipseOver=function(t){var e=t.x0,r=t.y0,n=t.x1,i=t.y1,a=n-e,s=i-r,l=((e-=a)+n)/2,c=((r-=s)+i)/2;return{x0:l-(a*=o),y0:c-(s*=o),x1:l+a,y1:c+s}}},{\"../../../plots/cartesian/helpers\":839,\"./constants\":726,\"parse-svg-path\":505}],730:[function(t,e,r){\"use strict\";var n=t(\"../../dragelement/helpers\"),i=n.drawMode,a=n.openMode,o=t(\"./constants\"),s=o.i000,l=o.i090,c=o.i180,u=o.i270,f=o.cos45,h=o.sin45,p=t(\"../../../plots/cartesian/helpers\"),d=p.p2r,g=p.r2p,m=t(\"../../../plots/cartesian/handle_outline\").clearSelect,v=t(\"./helpers\"),y=v.readPaths,x=v.writePaths,b=v.ellipseOver;e.exports=function(t,e){if(t.length){var r=t[0][0];if(r){var n=r.getAttribute(\"d\"),o=e.gd,p=o._fullLayout.newshape,v=e.plotinfo,_=v.xaxis,w=v.yaxis,T=!!v.domain||!v.xaxis,k=!!v.domain||!v.yaxis,M=e.isActiveShape,A=e.dragmode,S=(o.layout||{}).shapes||[];if(!i(A)&&void 0!==M){var E=o._fullLayout._activeShapeIndex;if(E<S.length)switch(o._fullLayout.shapes[E].type){case\"rect\":A=\"drawrect\";break;case\"circle\":A=\"drawcircle\";break;case\"line\":A=\"drawline\";break;case\"path\":var C=S[E].path||\"\";A=\"Z\"===C[C.length-1]?\"drawclosedpath\":\"drawopenpath\"}}var L,I=a(A),P=y(n,o,v,M),z={editable:!0,xref:T?\"paper\":_._id,yref:k?\"paper\":w._id,layer:p.layer,opacity:p.opacity,line:{color:p.line.color,width:p.line.width,dash:p.line.dash}};if(I||(z.fillcolor=p.fillcolor,z.fillrule=p.fillrule),1===P.length&&(L=P[0]),L&&\"drawrect\"===A)z.type=\"rect\",z.x0=L[0][1],z.y0=L[0][2],z.x1=L[2][1],z.y1=L[2][2];else if(L&&\"drawline\"===A)z.type=\"line\",z.x0=L[0][1],z.y0=L[0][2],z.x1=L[1][1],z.y1=L[1][2];else if(L&&\"drawcircle\"===A){z.type=\"circle\";var O=L[s][1],D=L[l][1],R=L[c][1],F=L[u][1],B=L[s][2],N=L[l][2],j=L[c][2],U=L[u][2],V=v.xaxis&&(\"date\"===v.xaxis.type||\"log\"===v.xaxis.type),q=v.yaxis&&(\"date\"===v.yaxis.type||\"log\"===v.yaxis.type);V&&(O=g(v.xaxis,O),D=g(v.xaxis,D),R=g(v.xaxis,R),F=g(v.xaxis,F)),q&&(B=g(v.yaxis,B),N=g(v.yaxis,N),j=g(v.yaxis,j),U=g(v.yaxis,U));var H=(D+F)/2,G=(B+j)/2,Y=b({x0:H,y0:G,x1:H+(F-D+R-O)/2*f,y1:G+(U-N+j-B)/2*h});V&&(Y.x0=d(v.xaxis,Y.x0),Y.x1=d(v.xaxis,Y.x1)),q&&(Y.y0=d(v.yaxis,Y.y0),Y.y1=d(v.yaxis,Y.y1)),z.x0=Y.x0,z.y0=Y.y0,z.x1=Y.x1,z.y1=Y.y1}else z.type=\"path\",_&&w&&function(t,e,r){var n=\"date\"===e.type,i=\"date\"===r.type;if(!n&&!i)return t;for(var a=0;a<t.length;a++)for(var o=0;o<t[a].length;o++)for(var s=0;s+2<t[a][o].length;s+=2)n&&(t[a][o][s+1]=t[a][o][s+1].replace(\" \",\"_\")),i&&(t[a][o][s+2]=t[a][o][s+2].replace(\" \",\"_\"))}(P,_,w),z.path=x(P),L=null;m(o);for(var W=e.editHelpers,X=(W||{}).modifyItem,Z=[],J=0;J<S.length;J++){var K=o._fullLayout.shapes[J];if(Z[J]=K._input,void 0!==M&&J===o._fullLayout._activeShapeIndex){var Q=z;switch(K.type){case\"line\":case\"rect\":case\"circle\":X(\"x0\",Q.x0),X(\"x1\",Q.x1),X(\"y0\",Q.y0),X(\"y1\",Q.y1);break;case\"path\":X(\"path\",Q.path)}}}return void 0===M?(Z.push(z),Z):W?W.getUpdateObj():{}}}}},{\"../../../plots/cartesian/handle_outline\":838,\"../../../plots/cartesian/helpers\":839,\"../../dragelement/helpers\":661,\"./constants\":726,\"./helpers\":729}],731:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),i=t(\"../../lib\");r.rangeToShapePosition=function(t){return\"log\"===t.type?t.r2d:function(t){return t}},r.shapePositionToRange=function(t){return\"log\"===t.type?t.d2r:function(t){return t}},r.decodeDate=function(t){return function(e){return e.replace&&(e=e.replace(\"_\",\" \")),t(e)}},r.encodeDate=function(t){return function(e){return t(e).replace(\" \",\"_\")}},r.extractPathCoords=function(t,e){var r=[];return t.match(n.segmentRE).forEach((function(t){var a=e[t.charAt(0)].drawn;if(void 0!==a){var o=t.substr(1).match(n.paramRE);!o||o.length<a||r.push(i.cleanNumber(o[a]))}})),r},r.getDataToPixel=function(t,e,n,i){var a,o=t._fullLayout._size;if(e)if(\"domain\"===i)a=function(t){return e._length*(n?1-t:t)+e._offset};else{var s=r.shapePositionToRange(e);a=function(t){return e._offset+e.r2p(s(t,!0))},\"date\"===e.type&&(a=r.decodeDate(a))}else a=n?function(t){return o.t+o.h*(1-t)}:function(t){return o.l+o.w*t};return a},r.getPixelToData=function(t,e,n,i){var a,o=t._fullLayout._size;if(e)if(\"domain\"===i)a=function(t){var r=(t-e._offset)/e._length;return n?1-r:r};else{var s=r.rangeToShapePosition(e);a=function(t){return s(e.p2r(t-e._offset))}}else a=n?function(t){return 1-(t-o.t)/o.h}:function(t){return(t-o.l)/o.w};return a},r.roundPositionForSharpStrokeRendering=function(t,e){var r=1===Math.round(e%2),n=Math.round(t);return r?n+.5:n},r.makeOptionsAndPlotinfo=function(t,e){var r=t._fullLayout.shapes[e]||{},n=t._fullLayout._plots[r.xref+r.yref];return!!n?n._hadPlotinfo=!0:(n={},r.xref&&\"paper\"!==r.xref&&(n.xaxis=t._fullLayout[r.xref+\"axis\"]),r.yref&&\"paper\"!==r.yref&&(n.yaxis=t._fullLayout[r.yref+\"axis\"])),n.xsizemode=r.xsizemode,n.ysizemode=r.ysizemode,n.xanchor=r.xanchor,n.yanchor=r.yanchor,{options:r,plotinfo:n}}},{\"../../lib\":778,\"./constants\":722}],732:[function(t,e,r){\"use strict\";var n=t(\"./draw\");e.exports={moduleType:\"component\",name:\"shapes\",layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),supplyDrawNewShapeDefaults:t(\"./draw_newshape/defaults\"),includeBasePlot:t(\"../../plots/cartesian/include_components\")(\"shapes\"),calcAutorange:t(\"./calc_autorange\"),draw:n.draw,drawOne:n.drawOne}},{\"../../plots/cartesian/include_components\":840,\"./attributes\":720,\"./calc_autorange\":721,\"./defaults\":723,\"./draw\":724,\"./draw_newshape/defaults\":727}],733:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),i=t(\"../../plots/pad_attributes\"),a=t(\"../../lib/extend\").extendDeepAll,o=t(\"../../plot_api/edit_types\").overrideAll,s=t(\"../../plots/animation_attributes\"),l=t(\"../../plot_api/plot_template\").templatedArray,c=t(\"./constants\"),u=l(\"step\",{visible:{valType:\"boolean\",dflt:!0},method:{valType:\"enumerated\",values:[\"restyle\",\"relayout\",\"animate\",\"update\",\"skip\"],dflt:\"restyle\"},args:{valType:\"info_array\",freeLength:!0,items:[{valType:\"any\"},{valType:\"any\"},{valType:\"any\"}]},label:{valType:\"string\"},value:{valType:\"string\"},execute:{valType:\"boolean\",dflt:!0}});e.exports=o(l(\"slider\",{visible:{valType:\"boolean\",dflt:!0},active:{valType:\"number\",min:0,dflt:0},steps:u,lenmode:{valType:\"enumerated\",values:[\"fraction\",\"pixels\"],dflt:\"fraction\"},len:{valType:\"number\",min:0,dflt:1},x:{valType:\"number\",min:-2,max:3,dflt:0},pad:a(i({editType:\"arraydraw\"}),{},{t:{dflt:20}}),xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"left\"},y:{valType:\"number\",min:-2,max:3,dflt:0},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"top\"},transition:{duration:{valType:\"number\",min:0,dflt:150},easing:{valType:\"enumerated\",values:s.transition.easing.values,dflt:\"cubic-in-out\"}},currentvalue:{visible:{valType:\"boolean\",dflt:!0},xanchor:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],dflt:\"left\"},offset:{valType:\"number\",dflt:10},prefix:{valType:\"string\"},suffix:{valType:\"string\"},font:n({})},font:n({}),activebgcolor:{valType:\"color\",dflt:c.gripBgActiveColor},bgcolor:{valType:\"color\",dflt:c.railBgColor},bordercolor:{valType:\"color\",dflt:c.railBorderColor},borderwidth:{valType:\"number\",min:0,dflt:c.railBorderWidth},ticklen:{valType:\"number\",min:0,dflt:c.tickLength},tickcolor:{valType:\"color\",dflt:c.tickColor},tickwidth:{valType:\"number\",min:0,dflt:1},minorticklen:{valType:\"number\",min:0,dflt:c.minorTickLength}}),\"arraydraw\",\"from-root\")},{\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plot_api/plot_template\":817,\"../../plots/animation_attributes\":822,\"../../plots/font_attributes\":856,\"../../plots/pad_attributes\":890,\"./constants\":734}],734:[function(t,e,r){\"use strict\";e.exports={name:\"sliders\",containerClassName:\"slider-container\",groupClassName:\"slider-group\",inputAreaClass:\"slider-input-area\",railRectClass:\"slider-rail-rect\",railTouchRectClass:\"slider-rail-touch-rect\",gripRectClass:\"slider-grip-rect\",tickRectClass:\"slider-tick-rect\",inputProxyClass:\"slider-input-proxy\",labelsClass:\"slider-labels\",labelGroupClass:\"slider-label-group\",labelClass:\"slider-label\",currentValueClass:\"slider-current-value\",railHeight:5,menuIndexAttrName:\"slider-active-index\",autoMarginIdRoot:\"slider-\",minWidth:30,minHeight:30,textPadX:40,arrowOffsetX:4,railRadius:2,railWidth:5,railBorder:4,railBorderWidth:1,railBorderColor:\"#bec8d9\",railBgColor:\"#f8fafc\",railInset:8,stepInset:10,gripRadius:10,gripWidth:20,gripHeight:20,gripBorder:20,gripBorderWidth:1,gripBorderColor:\"#bec8d9\",gripBgColor:\"#f6f8fa\",gripBgActiveColor:\"#dbdde0\",labelPadding:8,labelOffset:0,tickWidth:1,tickColor:\"#333\",tickOffset:25,tickLength:7,minorTickOffset:25,minorTickColor:\"#333\",minorTickLength:4,currentValuePadding:8,currentValueInset:0}},{}],735:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/array_container_defaults\"),a=t(\"./attributes\"),o=t(\"./constants\").name,s=a.steps;function l(t,e,r){function o(r,i){return n.coerce(t,e,a,r,i)}for(var s=i(t,e,{name:\"steps\",handleItemDefaults:c}),l=0,u=0;u<s.length;u++)s[u].visible&&l++;if(l<2?e.visible=!1:o(\"visible\")){e._stepCount=l;var f=e._visibleSteps=n.filterVisible(s);(s[o(\"active\")]||{}).visible||(e.active=f[0]._index),o(\"x\"),o(\"y\"),n.noneOrAll(t,e,[\"x\",\"y\"]),o(\"xanchor\"),o(\"yanchor\"),o(\"len\"),o(\"lenmode\"),o(\"pad.t\"),o(\"pad.r\"),o(\"pad.b\"),o(\"pad.l\"),n.coerceFont(o,\"font\",r.font),o(\"currentvalue.visible\")&&(o(\"currentvalue.xanchor\"),o(\"currentvalue.prefix\"),o(\"currentvalue.suffix\"),o(\"currentvalue.offset\"),n.coerceFont(o,\"currentvalue.font\",e.font)),o(\"transition.duration\"),o(\"transition.easing\"),o(\"bgcolor\"),o(\"activebgcolor\"),o(\"bordercolor\"),o(\"borderwidth\"),o(\"ticklen\"),o(\"tickwidth\"),o(\"tickcolor\"),o(\"minorticklen\")}}function c(t,e){function r(r,i){return n.coerce(t,e,s,r,i)}if(\"skip\"===t.method||Array.isArray(t.args)?r(\"visible\"):e.visible=!1){r(\"method\"),r(\"args\");var i=r(\"label\",\"step-\"+e._index);r(\"value\",i),r(\"execute\")}}e.exports=function(t,e){i(t,e,{name:o,handleItemDefaults:l})}},{\"../../lib\":778,\"../../plots/array_container_defaults\":823,\"./attributes\":733,\"./constants\":734}],736:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../plots/plots\"),a=t(\"../color\"),o=t(\"../drawing\"),s=t(\"../../lib\"),l=s.strTranslate,c=t(\"../../lib/svg_text_utils\"),u=t(\"../../plot_api/plot_template\").arrayEditor,f=t(\"./constants\"),h=t(\"../../constants/alignment\"),p=h.LINE_SPACING,d=h.FROM_TL,g=h.FROM_BR;function m(t){return f.autoMarginIdRoot+t._index}function v(t){return t._index}function y(t,e){var r=o.tester.selectAll(\"g.\"+f.labelGroupClass).data(e._visibleSteps);r.enter().append(\"g\").classed(f.labelGroupClass,!0);var a=0,l=0;r.each((function(t){var r=_(n.select(this),{step:t},e).node();if(r){var i=o.bBox(r);l=Math.max(l,i.height),a=Math.max(a,i.width)}})),r.remove();var u=e._dims={};u.inputAreaWidth=Math.max(f.railWidth,f.gripHeight);var h=t._fullLayout._size;u.lx=h.l+h.w*e.x,u.ly=h.t+h.h*(1-e.y),\"fraction\"===e.lenmode?u.outerLength=Math.round(h.w*e.len):u.outerLength=e.len,u.inputAreaStart=0,u.inputAreaLength=Math.round(u.outerLength-e.pad.l-e.pad.r);var p=(u.inputAreaLength-2*f.stepInset)/(e._stepCount-1),v=a+f.labelPadding;if(u.labelStride=Math.max(1,Math.ceil(v/p)),u.labelHeight=l,u.currentValueMaxWidth=0,u.currentValueHeight=0,u.currentValueTotalHeight=0,u.currentValueMaxLines=1,e.currentvalue.visible){var y=o.tester.append(\"g\");r.each((function(t){var r=x(y,e,t.label),n=r.node()&&o.bBox(r.node())||{width:0,height:0},i=c.lineCount(r);u.currentValueMaxWidth=Math.max(u.currentValueMaxWidth,Math.ceil(n.width)),u.currentValueHeight=Math.max(u.currentValueHeight,Math.ceil(n.height)),u.currentValueMaxLines=Math.max(u.currentValueMaxLines,i)})),u.currentValueTotalHeight=u.currentValueHeight+e.currentvalue.offset,y.remove()}u.height=u.currentValueTotalHeight+f.tickOffset+e.ticklen+f.labelOffset+u.labelHeight+e.pad.t+e.pad.b;var b=\"left\";s.isRightAnchor(e)&&(u.lx-=u.outerLength,b=\"right\"),s.isCenterAnchor(e)&&(u.lx-=u.outerLength/2,b=\"center\");var w=\"top\";s.isBottomAnchor(e)&&(u.ly-=u.height,w=\"bottom\"),s.isMiddleAnchor(e)&&(u.ly-=u.height/2,w=\"middle\"),u.outerLength=Math.ceil(u.outerLength),u.height=Math.ceil(u.height),u.lx=Math.round(u.lx),u.ly=Math.round(u.ly);var T={y:e.y,b:u.height*g[w],t:u.height*d[w]};\"fraction\"===e.lenmode?(T.l=0,T.xl=e.x-e.len*d[b],T.r=0,T.xr=e.x+e.len*g[b]):(T.x=e.x,T.l=u.outerLength*d[b],T.r=u.outerLength*g[b]),i.autoMargin(t,m(e),T)}function x(t,e,r){if(e.currentvalue.visible){var n,i,a=e._dims;switch(e.currentvalue.xanchor){case\"right\":n=a.inputAreaLength-f.currentValueInset-a.currentValueMaxWidth,i=\"left\";break;case\"center\":n=.5*a.inputAreaLength,i=\"middle\";break;default:n=f.currentValueInset,i=\"left\"}var l=s.ensureSingle(t,\"text\",f.labelClass,(function(t){t.attr({\"text-anchor\":i,\"data-notex\":1})})),u=e.currentvalue.prefix?e.currentvalue.prefix:\"\";if(\"string\"==typeof r)u+=r;else{var h=e.steps[e.active].label,d=e._gd._fullLayout._meta;d&&(h=s.templateString(h,d)),u+=h}e.currentvalue.suffix&&(u+=e.currentvalue.suffix),l.call(o.font,e.currentvalue.font).text(u).call(c.convertToTspans,e._gd);var g=c.lineCount(l),m=(a.currentValueMaxLines+1-g)*e.currentvalue.font.size*p;return c.positionText(l,n,m),l}}function b(t,e,r){s.ensureSingle(t,\"rect\",f.gripRectClass,(function(n){n.call(M,e,t,r).style(\"pointer-events\",\"all\")})).attr({width:f.gripWidth,height:f.gripHeight,rx:f.gripRadius,ry:f.gripRadius}).call(a.stroke,r.bordercolor).call(a.fill,r.bgcolor).style(\"stroke-width\",r.borderwidth+\"px\")}function _(t,e,r){var n=s.ensureSingle(t,\"text\",f.labelClass,(function(t){t.attr({\"text-anchor\":\"middle\",\"data-notex\":1})})),i=e.step.label,a=r._gd._fullLayout._meta;return a&&(i=s.templateString(i,a)),n.call(o.font,r.font).text(i).call(c.convertToTspans,r._gd),n}function w(t,e){var r=s.ensureSingle(t,\"g\",f.labelsClass),i=e._dims,a=r.selectAll(\"g.\"+f.labelGroupClass).data(i.labelSteps);a.enter().append(\"g\").classed(f.labelGroupClass,!0),a.exit().remove(),a.each((function(t){var r=n.select(this);r.call(_,t,e),o.setTranslate(r,E(e,t.fraction),f.tickOffset+e.ticklen+e.font.size*p+f.labelOffset+i.currentValueTotalHeight)}))}function T(t,e,r,n,i){var a=Math.round(n*(r._stepCount-1)),o=r._visibleSteps[a]._index;o!==r.active&&k(t,e,r,o,!0,i)}function k(t,e,r,n,a,o){var s=r.active;r.active=n,u(t.layout,f.name,r).applyUpdate(\"active\",n);var l=r.steps[r.active];e.call(S,r,o),e.call(x,r),t.emit(\"plotly_sliderchange\",{slider:r,step:r.steps[r.active],interaction:a,previousActive:s}),l&&l.method&&a&&(e._nextMethod?(e._nextMethod.step=l,e._nextMethod.doCallback=a,e._nextMethod.doTransition=o):(e._nextMethod={step:l,doCallback:a,doTransition:o},e._nextMethodRaf=window.requestAnimationFrame((function(){var r=e._nextMethod.step;r.method&&(r.execute&&i.executeAPICommand(t,r.method,r.args),e._nextMethod=null,e._nextMethodRaf=null)}))))}function M(t,e,r){var i=r.node(),o=n.select(e);function s(){return r.data()[0]}t.on(\"mousedown\",(function(){var t=s();e.emit(\"plotly_sliderstart\",{slider:t});var l=r.select(\".\"+f.gripRectClass);n.event.stopPropagation(),n.event.preventDefault(),l.call(a.fill,t.activebgcolor);var c=C(t,n.mouse(i)[0]);T(e,r,t,c,!0),t._dragging=!0,o.on(\"mousemove\",(function(){var t=s(),a=C(t,n.mouse(i)[0]);T(e,r,t,a,!1)})),o.on(\"mouseup\",(function(){var t=s();t._dragging=!1,l.call(a.fill,t.bgcolor),o.on(\"mouseup\",null),o.on(\"mousemove\",null),e.emit(\"plotly_sliderend\",{slider:t,step:t.steps[t.active]})}))}))}function A(t,e){var r=t.selectAll(\"rect.\"+f.tickRectClass).data(e._visibleSteps),i=e._dims;r.enter().append(\"rect\").classed(f.tickRectClass,!0),r.exit().remove(),r.attr({width:e.tickwidth+\"px\",\"shape-rendering\":\"crispEdges\"}),r.each((function(t,r){var s=r%i.labelStride==0,l=n.select(this);l.attr({height:s?e.ticklen:e.minorticklen}).call(a.fill,e.tickcolor),o.setTranslate(l,E(e,r/(e._stepCount-1))-.5*e.tickwidth,(s?f.tickOffset:f.minorTickOffset)+i.currentValueTotalHeight)}))}function S(t,e,r){for(var n=t.select(\"rect.\"+f.gripRectClass),i=0,a=0;a<e._stepCount;a++)if(e._visibleSteps[a]._index===e.active){i=a;break}var o=E(e,i/(e._stepCount-1));if(!e._invokingCommand){var s=n;r&&e.transition.duration>0&&(s=s.transition().duration(e.transition.duration).ease(e.transition.easing)),s.attr(\"transform\",l(o-.5*f.gripWidth,e._dims.currentValueTotalHeight))}}function E(t,e){var r=t._dims;return r.inputAreaStart+f.stepInset+(r.inputAreaLength-2*f.stepInset)*Math.min(1,Math.max(0,e))}function C(t,e){var r=t._dims;return Math.min(1,Math.max(0,(e-f.stepInset-r.inputAreaStart)/(r.inputAreaLength-2*f.stepInset-2*r.inputAreaStart)))}function L(t,e,r){var n=r._dims,i=s.ensureSingle(t,\"rect\",f.railTouchRectClass,(function(n){n.call(M,e,t,r).style(\"pointer-events\",\"all\")}));i.attr({width:n.inputAreaLength,height:Math.max(n.inputAreaWidth,f.tickOffset+r.ticklen+n.labelHeight)}).call(a.fill,r.bgcolor).attr(\"opacity\",0),o.setTranslate(i,0,n.currentValueTotalHeight)}function I(t,e){var r=e._dims,n=r.inputAreaLength-2*f.railInset,i=s.ensureSingle(t,\"rect\",f.railRectClass);i.attr({width:n,height:f.railWidth,rx:f.railRadius,ry:f.railRadius,\"shape-rendering\":\"crispEdges\"}).call(a.stroke,e.bordercolor).call(a.fill,e.bgcolor).style(\"stroke-width\",e.borderwidth+\"px\"),o.setTranslate(i,f.railInset,.5*(r.inputAreaWidth-f.railWidth)+r.currentValueTotalHeight)}e.exports=function(t){var e=t._fullLayout,r=function(t,e){for(var r=t[f.name],n=[],i=0;i<r.length;i++){var a=r[i];a.visible&&(a._gd=e,n.push(a))}return n}(e,t),a=e._infolayer.selectAll(\"g.\"+f.containerClassName).data(r.length>0?[0]:[]);function s(e){e._commandObserver&&(e._commandObserver.remove(),delete e._commandObserver),i.autoMargin(t,m(e))}if(a.enter().append(\"g\").classed(f.containerClassName,!0).style(\"cursor\",\"ew-resize\"),a.exit().each((function(){n.select(this).selectAll(\"g.\"+f.groupClassName).each(s)})).remove(),0!==r.length){var l=a.selectAll(\"g.\"+f.groupClassName).data(r,v);l.enter().append(\"g\").classed(f.groupClassName,!0),l.exit().each(s).remove();for(var c=0;c<r.length;c++){var u=r[c];y(t,u)}l.each((function(e){var r=n.select(this);!function(t){var e=t._dims;e.labelSteps=[];for(var r=t._stepCount,n=0;n<r;n+=e.labelStride)e.labelSteps.push({fraction:n/(r-1),step:t._visibleSteps[n]})}(e),i.manageCommandObserver(t,e,e._visibleSteps,(function(e){var n=r.data()[0];n.active!==e.index&&(n._dragging||k(t,r,n,e.index,!1,!0))})),function(t,e,r){(r.steps[r.active]||{}).visible||(r.active=r._visibleSteps[0]._index);e.call(x,r).call(I,r).call(w,r).call(A,r).call(L,t,r).call(b,t,r);var n=r._dims;o.setTranslate(e,n.lx+r.pad.l,n.ly+r.pad.t),e.call(S,r,!1),e.call(x,r)}(t,n.select(this),e)}))}}},{\"../../constants/alignment\":745,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../plot_api/plot_template\":817,\"../../plots/plots\":891,\"../color\":643,\"../drawing\":665,\"./constants\":734,d3:169}],737:[function(t,e,r){\"use strict\";var n=t(\"./constants\");e.exports={moduleType:\"component\",name:n.name,layoutAttributes:t(\"./attributes\"),supplyLayoutDefaults:t(\"./defaults\"),draw:t(\"./draw\")}},{\"./attributes\":733,\"./constants\":734,\"./defaults\":735,\"./draw\":736}],738:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"fast-isnumeric\"),a=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=s.strTranslate,c=t(\"../drawing\"),u=t(\"../color\"),f=t(\"../../lib/svg_text_utils\"),h=t(\"../../constants/interactions\"),p=t(\"../../constants/alignment\").OPPOSITE_SIDE,d=/ [XY][0-9]* /;e.exports={draw:function(t,e,r){var g,m=r.propContainer,v=r.propName,y=r.placeholder,x=r.traceIndex,b=r.avoid||{},_=r.attributes,w=r.transform,T=r.containerGroup,k=t._fullLayout,M=1,A=!1,S=m.title,E=(S&&S.text?S.text:\"\").trim(),C=S&&S.font?S.font:{},L=C.family,I=C.size,P=C.color;\"title.text\"===v?g=\"titleText\":-1!==v.indexOf(\"axis\")?g=\"axisTitleText\":v.indexOf(!0)&&(g=\"colorbarTitleText\");var z=t._context.edits[g];\"\"===E?M=0:E.replace(d,\" % \")===y.replace(d,\" % \")&&(M=.2,A=!0,z||(E=\"\")),r._meta?E=s.templateString(E,r._meta):k._meta&&(E=s.templateString(E,k._meta));var O=E||z;T||(T=s.ensureSingle(k._infolayer,\"g\",\"g-\"+e));var D=T.selectAll(\"text\").data(O?[0]:[]);if(D.enter().append(\"text\"),D.text(E).attr(\"class\",e),D.exit().remove(),!O)return T;function R(t){s.syncOrAsync([F,B],t)}function F(e){var r;return w?(r=\"\",w.rotate&&(r+=\"rotate(\"+[w.rotate,_.x,_.y]+\")\"),w.offset&&(r+=l(0,w.offset))):r=null,e.attr(\"transform\",r),e.style({\"font-family\":L,\"font-size\":n.round(I,2)+\"px\",fill:u.rgb(P),opacity:M*u.opacity(P),\"font-weight\":a.fontWeight}).attr(_).call(f.convertToTspans,t),a.previousPromises(t)}function B(t){var e=n.select(t.node().parentNode);if(b&&b.selection&&b.side&&E){e.attr(\"transform\",null);var r=p[b.side],a=\"left\"===b.side||\"top\"===b.side?-1:1,o=i(b.pad)?b.pad:2,u=c.bBox(e.node()),f={left:0,top:0,right:k.width,bottom:k.height},h=b.maxShift||a*(f[b.side]-u[b.side]),d=0;if(h<0)d=h;else{var g=b.offsetLeft||0,m=b.offsetTop||0;u.left-=g,u.right-=g,u.top-=m,u.bottom-=m,b.selection.each((function(){var t=c.bBox(this);s.bBoxIntersect(u,t,o)&&(d=Math.max(d,a*(t[b.side]-u[r])+o))})),d=Math.min(h,d)}if(d>0||h<0){var v={left:[-d,0],right:[d,0],top:[0,-d],bottom:[0,d]}[b.side];e.attr(\"transform\",l(v[0],v[1]))}}}return D.call(R),z&&(E?D.on(\".opacity\",null):(M=0,A=!0,D.text(y).on(\"mouseover.opacity\",(function(){n.select(this).transition().duration(h.SHOW_PLACEHOLDER).style(\"opacity\",1)})).on(\"mouseout.opacity\",(function(){n.select(this).transition().duration(h.HIDE_PLACEHOLDER).style(\"opacity\",0)}))),D.call(f.makeEditable,{gd:t}).on(\"edit\",(function(e){void 0!==x?o.call(\"_guiRestyle\",t,v,e,x):o.call(\"_guiRelayout\",t,v,e)})).on(\"cancel\",(function(){this.text(this.attr(\"data-unformatted\")).call(R)})).on(\"input\",(function(t){this.text(t||\" \").call(f.positionText,_.x,_.y)}))),D.classed(\"js-placeholder\",A),T}}},{\"../../constants/alignment\":745,\"../../constants/interactions\":752,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../plots/plots\":891,\"../../registry\":911,\"../color\":643,\"../drawing\":665,d3:169,\"fast-isnumeric\":241}],739:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),i=t(\"../color/attributes\"),a=t(\"../../lib/extend\").extendFlat,o=t(\"../../plot_api/edit_types\").overrideAll,s=t(\"../../plots/pad_attributes\"),l=t(\"../../plot_api/plot_template\").templatedArray,c=l(\"button\",{visible:{valType:\"boolean\"},method:{valType:\"enumerated\",values:[\"restyle\",\"relayout\",\"animate\",\"update\",\"skip\"],dflt:\"restyle\"},args:{valType:\"info_array\",freeLength:!0,items:[{valType:\"any\"},{valType:\"any\"},{valType:\"any\"}]},args2:{valType:\"info_array\",freeLength:!0,items:[{valType:\"any\"},{valType:\"any\"},{valType:\"any\"}]},label:{valType:\"string\",dflt:\"\"},execute:{valType:\"boolean\",dflt:!0}});e.exports=o(l(\"updatemenu\",{_arrayAttrRegexps:[/^updatemenus\\[(0|[1-9][0-9]+)\\]\\.buttons/],visible:{valType:\"boolean\"},type:{valType:\"enumerated\",values:[\"dropdown\",\"buttons\"],dflt:\"dropdown\"},direction:{valType:\"enumerated\",values:[\"left\",\"right\",\"up\",\"down\"],dflt:\"down\"},active:{valType:\"integer\",min:-1,dflt:0},showactive:{valType:\"boolean\",dflt:!0},buttons:c,x:{valType:\"number\",min:-2,max:3,dflt:-.05},xanchor:{valType:\"enumerated\",values:[\"auto\",\"left\",\"center\",\"right\"],dflt:\"right\"},y:{valType:\"number\",min:-2,max:3,dflt:1},yanchor:{valType:\"enumerated\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],dflt:\"top\"},pad:a(s({editType:\"arraydraw\"}),{}),font:n({}),bgcolor:{valType:\"color\"},bordercolor:{valType:\"color\",dflt:i.borderLine},borderwidth:{valType:\"number\",min:0,dflt:1,editType:\"arraydraw\"}}),\"arraydraw\",\"from-root\")},{\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plot_api/plot_template\":817,\"../../plots/font_attributes\":856,\"../../plots/pad_attributes\":890,\"../color/attributes\":642}],740:[function(t,e,r){\"use strict\";e.exports={name:\"updatemenus\",containerClassName:\"updatemenu-container\",headerGroupClassName:\"updatemenu-header-group\",headerClassName:\"updatemenu-header\",headerArrowClassName:\"updatemenu-header-arrow\",dropdownButtonGroupClassName:\"updatemenu-dropdown-button-group\",dropdownButtonClassName:\"updatemenu-dropdown-button\",buttonClassName:\"updatemenu-button\",itemRectClassName:\"updatemenu-item-rect\",itemTextClassName:\"updatemenu-item-text\",menuIndexAttrName:\"updatemenu-active-index\",autoMarginIdRoot:\"updatemenu-\",blankHeaderOpts:{label:\"  \"},minWidth:30,minHeight:30,textPadX:24,arrowPadX:16,rx:2,ry:2,textOffsetX:12,textOffsetY:3,arrowOffsetX:4,gapButtonHeader:5,gapButton:2,activeColor:\"#F4FAFF\",hoverColor:\"#F4FAFF\",arrowSymbol:{left:\"\\u25c4\",right:\"\\u25ba\",up:\"\\u25b2\",down:\"\\u25bc\"}}},{}],741:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/array_container_defaults\"),a=t(\"./attributes\"),o=t(\"./constants\").name,s=a.buttons;function l(t,e,r){function o(r,i){return n.coerce(t,e,a,r,i)}o(\"visible\",i(t,e,{name:\"buttons\",handleItemDefaults:c}).length>0)&&(o(\"active\"),o(\"direction\"),o(\"type\"),o(\"showactive\"),o(\"x\"),o(\"y\"),n.noneOrAll(t,e,[\"x\",\"y\"]),o(\"xanchor\"),o(\"yanchor\"),o(\"pad.t\"),o(\"pad.r\"),o(\"pad.b\"),o(\"pad.l\"),n.coerceFont(o,\"font\",r.font),o(\"bgcolor\",r.paper_bgcolor),o(\"bordercolor\"),o(\"borderwidth\"))}function c(t,e){function r(r,i){return n.coerce(t,e,s,r,i)}r(\"visible\",\"skip\"===t.method||Array.isArray(t.args))&&(r(\"method\"),r(\"args\"),r(\"args2\"),r(\"label\"),r(\"execute\"))}e.exports=function(t,e){i(t,e,{name:o,handleItemDefaults:l})}},{\"../../lib\":778,\"../../plots/array_container_defaults\":823,\"./attributes\":739,\"./constants\":740}],742:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../plots/plots\"),a=t(\"../color\"),o=t(\"../drawing\"),s=t(\"../../lib\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../plot_api/plot_template\").arrayEditor,u=t(\"../../constants/alignment\").LINE_SPACING,f=t(\"./constants\"),h=t(\"./scrollbox\");function p(t){return t._index}function d(t,e){return+t.attr(f.menuIndexAttrName)===e._index}function g(t,e,r,n,i,a,o,s){e.active=o,c(t.layout,f.name,e).applyUpdate(\"active\",o),\"buttons\"===e.type?v(t,n,null,null,e):\"dropdown\"===e.type&&(i.attr(f.menuIndexAttrName,\"-1\"),m(t,n,i,a,e),s||v(t,n,i,a,e))}function m(t,e,r,n,i){var a=s.ensureSingle(e,\"g\",f.headerClassName,(function(t){t.style(\"pointer-events\",\"all\")})),l=i._dims,c=i.active,u=i.buttons[c]||f.blankHeaderOpts,h={y:i.pad.t,yPad:0,x:i.pad.l,xPad:0,index:0},p={width:l.headerWidth,height:l.headerHeight};a.call(y,i,u,t).call(A,i,h,p),s.ensureSingle(e,\"text\",f.headerArrowClassName,(function(t){t.attr(\"text-anchor\",\"end\").call(o.font,i.font).text(f.arrowSymbol[i.direction])})).attr({x:l.headerWidth-f.arrowOffsetX+i.pad.l,y:l.headerHeight/2+f.textOffsetY+i.pad.t}),a.on(\"click\",(function(){r.call(S,String(d(r,i)?-1:i._index)),v(t,e,r,n,i)})),a.on(\"mouseover\",(function(){a.call(w)})),a.on(\"mouseout\",(function(){a.call(T,i)})),o.setTranslate(e,l.lx,l.ly)}function v(t,e,r,a,o){r||(r=e).attr(\"pointer-events\",\"all\");var l=function(t){return-1==+t.attr(f.menuIndexAttrName)}(r)&&\"buttons\"!==o.type?[]:o.buttons,c=\"dropdown\"===o.type?f.dropdownButtonClassName:f.buttonClassName,u=r.selectAll(\"g.\"+c).data(s.filterVisible(l)),h=u.enter().append(\"g\").classed(c,!0),p=u.exit();\"dropdown\"===o.type?(h.attr(\"opacity\",\"0\").transition().attr(\"opacity\",\"1\"),p.transition().attr(\"opacity\",\"0\").remove()):p.remove();var d=0,m=0,v=o._dims,x=-1!==[\"up\",\"down\"].indexOf(o.direction);\"dropdown\"===o.type&&(x?m=v.headerHeight+f.gapButtonHeader:d=v.headerWidth+f.gapButtonHeader),\"dropdown\"===o.type&&\"up\"===o.direction&&(m=-f.gapButtonHeader+f.gapButton-v.openHeight),\"dropdown\"===o.type&&\"left\"===o.direction&&(d=-f.gapButtonHeader+f.gapButton-v.openWidth);var b={x:v.lx+d+o.pad.l,y:v.ly+m+o.pad.t,yPad:f.gapButton,xPad:f.gapButton,index:0},k={l:b.x+o.borderwidth,t:b.y+o.borderwidth};u.each((function(s,l){var c=n.select(this);c.call(y,o,s,t).call(A,o,b),c.on(\"click\",(function(){n.event.defaultPrevented||(s.execute&&(s.args2&&o.active===l?(g(t,o,0,e,r,a,-1),i.executeAPICommand(t,s.method,s.args2)):(g(t,o,0,e,r,a,l),i.executeAPICommand(t,s.method,s.args))),t.emit(\"plotly_buttonclicked\",{menu:o,button:s,active:o.active}))})),c.on(\"mouseover\",(function(){c.call(w)})),c.on(\"mouseout\",(function(){c.call(T,o),u.call(_,o)}))})),u.call(_,o),x?(k.w=Math.max(v.openWidth,v.headerWidth),k.h=b.y-k.t):(k.w=b.x-k.l,k.h=Math.max(v.openHeight,v.headerHeight)),k.direction=o.direction,a&&(u.size()?function(t,e,r,n,i,a){var o,s,l,c=i.direction,u=\"up\"===c||\"down\"===c,h=i._dims,p=i.active;if(u)for(s=0,l=0;l<p;l++)s+=h.heights[l]+f.gapButton;else for(o=0,l=0;l<p;l++)o+=h.widths[l]+f.gapButton;n.enable(a,o,s),n.hbar&&n.hbar.attr(\"opacity\",\"0\").transition().attr(\"opacity\",\"1\");n.vbar&&n.vbar.attr(\"opacity\",\"0\").transition().attr(\"opacity\",\"1\")}(0,0,0,a,o,k):function(t){var e=!!t.hbar,r=!!t.vbar;e&&t.hbar.transition().attr(\"opacity\",\"0\").each(\"end\",(function(){e=!1,r||t.disable()}));r&&t.vbar.transition().attr(\"opacity\",\"0\").each(\"end\",(function(){r=!1,e||t.disable()}))}(a))}function y(t,e,r,n){t.call(x,e).call(b,e,r,n)}function x(t,e){s.ensureSingle(t,\"rect\",f.itemRectClassName,(function(t){t.attr({rx:f.rx,ry:f.ry,\"shape-rendering\":\"crispEdges\"})})).call(a.stroke,e.bordercolor).call(a.fill,e.bgcolor).style(\"stroke-width\",e.borderwidth+\"px\")}function b(t,e,r,n){var i=s.ensureSingle(t,\"text\",f.itemTextClassName,(function(t){t.attr({\"text-anchor\":\"start\",\"data-notex\":1})})),a=r.label,c=n._fullLayout._meta;c&&(a=s.templateString(a,c)),i.call(o.font,e.font).text(a).call(l.convertToTspans,n)}function _(t,e){var r=e.active;t.each((function(t,i){var o=n.select(this);i===r&&e.showactive&&o.select(\"rect.\"+f.itemRectClassName).call(a.fill,f.activeColor)}))}function w(t){t.select(\"rect.\"+f.itemRectClassName).call(a.fill,f.hoverColor)}function T(t,e){t.select(\"rect.\"+f.itemRectClassName).call(a.fill,e.bgcolor)}function k(t,e){var r=e._dims={width1:0,height1:0,heights:[],widths:[],totalWidth:0,totalHeight:0,openWidth:0,openHeight:0,lx:0,ly:0},a=o.tester.selectAll(\"g.\"+f.dropdownButtonClassName).data(s.filterVisible(e.buttons));a.enter().append(\"g\").classed(f.dropdownButtonClassName,!0);var c=-1!==[\"up\",\"down\"].indexOf(e.direction);a.each((function(i,a){var s=n.select(this);s.call(y,e,i,t);var h=s.select(\".\"+f.itemTextClassName),p=h.node()&&o.bBox(h.node()).width,d=Math.max(p+f.textPadX,f.minWidth),g=e.font.size*u,m=l.lineCount(h),v=Math.max(g*m,f.minHeight)+f.textOffsetY;v=Math.ceil(v),d=Math.ceil(d),r.widths[a]=d,r.heights[a]=v,r.height1=Math.max(r.height1,v),r.width1=Math.max(r.width1,d),c?(r.totalWidth=Math.max(r.totalWidth,d),r.openWidth=r.totalWidth,r.totalHeight+=v+f.gapButton,r.openHeight+=v+f.gapButton):(r.totalWidth+=d+f.gapButton,r.openWidth+=d+f.gapButton,r.totalHeight=Math.max(r.totalHeight,v),r.openHeight=r.totalHeight)})),c?r.totalHeight-=f.gapButton:r.totalWidth-=f.gapButton,r.headerWidth=r.width1+f.arrowPadX,r.headerHeight=r.height1,\"dropdown\"===e.type&&(c?(r.width1+=f.arrowPadX,r.totalHeight=r.height1):r.totalWidth=r.width1,r.totalWidth+=f.arrowPadX),a.remove();var h=r.totalWidth+e.pad.l+e.pad.r,p=r.totalHeight+e.pad.t+e.pad.b,d=t._fullLayout._size;r.lx=d.l+d.w*e.x,r.ly=d.t+d.h*(1-e.y);var g=\"left\";s.isRightAnchor(e)&&(r.lx-=h,g=\"right\"),s.isCenterAnchor(e)&&(r.lx-=h/2,g=\"center\");var m=\"top\";s.isBottomAnchor(e)&&(r.ly-=p,m=\"bottom\"),s.isMiddleAnchor(e)&&(r.ly-=p/2,m=\"middle\"),r.totalWidth=Math.ceil(r.totalWidth),r.totalHeight=Math.ceil(r.totalHeight),r.lx=Math.round(r.lx),r.ly=Math.round(r.ly),i.autoMargin(t,M(e),{x:e.x,y:e.y,l:h*({right:1,center:.5}[g]||0),r:h*({left:1,center:.5}[g]||0),b:p*({top:1,middle:.5}[m]||0),t:p*({bottom:1,middle:.5}[m]||0)})}function M(t){return f.autoMarginIdRoot+t._index}function A(t,e,r,n){n=n||{};var i=t.select(\".\"+f.itemRectClassName),a=t.select(\".\"+f.itemTextClassName),s=e.borderwidth,c=r.index,h=e._dims;o.setTranslate(t,s+r.x,s+r.y);var p=-1!==[\"up\",\"down\"].indexOf(e.direction),d=n.height||(p?h.heights[c]:h.height1);i.attr({x:0,y:0,width:n.width||(p?h.width1:h.widths[c]),height:d});var g=e.font.size*u,m=(l.lineCount(a)-1)*g/2;l.positionText(a,f.textOffsetX,d/2-m+f.textOffsetY),p?r.y+=h.heights[c]+r.yPad:r.x+=h.widths[c]+r.xPad,r.index++}function S(t,e){t.attr(f.menuIndexAttrName,e||\"-1\").selectAll(\"g.\"+f.dropdownButtonClassName).remove()}e.exports=function(t){var e=t._fullLayout,r=s.filterVisible(e[f.name]);function a(e){i.autoMargin(t,M(e))}var o=e._menulayer.selectAll(\"g.\"+f.containerClassName).data(r.length>0?[0]:[]);if(o.enter().append(\"g\").classed(f.containerClassName,!0).style(\"cursor\",\"pointer\"),o.exit().each((function(){n.select(this).selectAll(\"g.\"+f.headerGroupClassName).each(a)})).remove(),0!==r.length){var l=o.selectAll(\"g.\"+f.headerGroupClassName).data(r,p);l.enter().append(\"g\").classed(f.headerGroupClassName,!0);for(var c=s.ensureSingle(o,\"g\",f.dropdownButtonGroupClassName,(function(t){t.style(\"pointer-events\",\"all\")})),u=0;u<r.length;u++){var y=r[u];k(t,y)}var x=\"updatemenus\"+e._uid,b=new h(t,c,x);l.enter().size()&&(c.node().parentNode.appendChild(c.node()),c.call(S)),l.exit().each((function(t){c.call(S),a(t)})).remove(),l.each((function(e){var r=n.select(this),a=\"dropdown\"===e.type?c:null;i.manageCommandObserver(t,e,e.buttons,(function(n){g(t,e,e.buttons[n.index],r,a,b,n.index,!0)})),\"dropdown\"===e.type?(m(t,r,c,b,e),d(c,e)&&v(t,r,c,b,e)):v(t,r,null,null,e)}))}}},{\"../../constants/alignment\":745,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../plot_api/plot_template\":817,\"../../plots/plots\":891,\"../color\":643,\"../drawing\":665,\"./constants\":740,\"./scrollbox\":744,d3:169}],743:[function(t,e,r){arguments[4][737][0].apply(r,arguments)},{\"./attributes\":739,\"./constants\":740,\"./defaults\":741,\"./draw\":742,dup:737}],744:[function(t,e,r){\"use strict\";e.exports=s;var n=t(\"d3\"),i=t(\"../color\"),a=t(\"../drawing\"),o=t(\"../../lib\");function s(t,e,r){this.gd=t,this.container=e,this.id=r,this.position=null,this.translateX=null,this.translateY=null,this.hbar=null,this.vbar=null,this.bg=this.container.selectAll(\"rect.scrollbox-bg\").data([0]),this.bg.exit().on(\".drag\",null).on(\"wheel\",null).remove(),this.bg.enter().append(\"rect\").classed(\"scrollbox-bg\",!0).style(\"pointer-events\",\"all\").attr({opacity:0,x:0,y:0,width:0,height:0})}s.barWidth=2,s.barLength=20,s.barRadius=2,s.barPad=1,s.barColor=\"#808BA4\",s.prototype.enable=function(t,e,r){var o=this.gd._fullLayout,l=o.width,c=o.height;this.position=t;var u,f,h,p,d=this.position.l,g=this.position.w,m=this.position.t,v=this.position.h,y=this.position.direction,x=\"down\"===y,b=\"left\"===y,_=\"up\"===y,w=g,T=v;x||b||\"right\"===y||_||(this.position.direction=\"down\",x=!0),x||_?(f=(u=d)+w,x?(h=m,T=(p=Math.min(h+T,c))-h):T=(p=m+T)-(h=Math.max(p-T,0))):(p=(h=m)+T,b?w=(f=d+w)-(u=Math.max(f-w,0)):(u=d,w=(f=Math.min(u+w,l))-u)),this._box={l:u,t:h,w:w,h:T};var k=g>w,M=s.barLength+2*s.barPad,A=s.barWidth+2*s.barPad,S=d,E=m+v;E+A>c&&(E=c-A);var C=this.container.selectAll(\"rect.scrollbar-horizontal\").data(k?[0]:[]);C.exit().on(\".drag\",null).remove(),C.enter().append(\"rect\").classed(\"scrollbar-horizontal\",!0).call(i.fill,s.barColor),k?(this.hbar=C.attr({rx:s.barRadius,ry:s.barRadius,x:S,y:E,width:M,height:A}),this._hbarXMin=S+M/2,this._hbarTranslateMax=w-M):(delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax);var L=v>T,I=s.barWidth+2*s.barPad,P=s.barLength+2*s.barPad,z=d+g,O=m;z+I>l&&(z=l-I);var D=this.container.selectAll(\"rect.scrollbar-vertical\").data(L?[0]:[]);D.exit().on(\".drag\",null).remove(),D.enter().append(\"rect\").classed(\"scrollbar-vertical\",!0).call(i.fill,s.barColor),L?(this.vbar=D.attr({rx:s.barRadius,ry:s.barRadius,x:z,y:O,width:I,height:P}),this._vbarYMin=O+P/2,this._vbarTranslateMax=T-P):(delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax);var R=this.id,F=u-.5,B=L?f+I+.5:f+.5,N=h-.5,j=k?p+A+.5:p+.5,U=o._topdefs.selectAll(\"#\"+R).data(k||L?[0]:[]);if(U.exit().remove(),U.enter().append(\"clipPath\").attr(\"id\",R).append(\"rect\"),k||L?(this._clipRect=U.select(\"rect\").attr({x:Math.floor(F),y:Math.floor(N),width:Math.ceil(B)-Math.floor(F),height:Math.ceil(j)-Math.floor(N)}),this.container.call(a.setClipUrl,R,this.gd),this.bg.attr({x:d,y:m,width:g,height:v})):(this.bg.attr({width:0,height:0}),this.container.on(\"wheel\",null).on(\".drag\",null).call(a.setClipUrl,null),delete this._clipRect),k||L){var V=n.behavior.drag().on(\"dragstart\",(function(){n.event.sourceEvent.preventDefault()})).on(\"drag\",this._onBoxDrag.bind(this));this.container.on(\"wheel\",null).on(\"wheel\",this._onBoxWheel.bind(this)).on(\".drag\",null).call(V);var q=n.behavior.drag().on(\"dragstart\",(function(){n.event.sourceEvent.preventDefault(),n.event.sourceEvent.stopPropagation()})).on(\"drag\",this._onBarDrag.bind(this));k&&this.hbar.on(\".drag\",null).call(q),L&&this.vbar.on(\".drag\",null).call(q)}this.setTranslate(e,r)},s.prototype.disable=function(){(this.hbar||this.vbar)&&(this.bg.attr({width:0,height:0}),this.container.on(\"wheel\",null).on(\".drag\",null).call(a.setClipUrl,null),delete this._clipRect),this.hbar&&(this.hbar.on(\".drag\",null),this.hbar.remove(),delete this.hbar,delete this._hbarXMin,delete this._hbarTranslateMax),this.vbar&&(this.vbar.on(\".drag\",null),this.vbar.remove(),delete this.vbar,delete this._vbarYMin,delete this._vbarTranslateMax)},s.prototype._onBoxDrag=function(){var t=this.translateX,e=this.translateY;this.hbar&&(t-=n.event.dx),this.vbar&&(e-=n.event.dy),this.setTranslate(t,e)},s.prototype._onBoxWheel=function(){var t=this.translateX,e=this.translateY;this.hbar&&(t+=n.event.deltaY),this.vbar&&(e+=n.event.deltaY),this.setTranslate(t,e)},s.prototype._onBarDrag=function(){var t=this.translateX,e=this.translateY;if(this.hbar){var r=t+this._hbarXMin,i=r+this._hbarTranslateMax;t=(o.constrain(n.event.x,r,i)-r)/(i-r)*(this.position.w-this._box.w)}if(this.vbar){var a=e+this._vbarYMin,s=a+this._vbarTranslateMax;e=(o.constrain(n.event.y,a,s)-a)/(s-a)*(this.position.h-this._box.h)}this.setTranslate(t,e)},s.prototype.setTranslate=function(t,e){var r=this.position.w-this._box.w,n=this.position.h-this._box.h;if(t=o.constrain(t||0,0,r),e=o.constrain(e||0,0,n),this.translateX=t,this.translateY=e,this.container.call(a.setTranslate,this._box.l-this.position.l-t,this._box.t-this.position.t-e),this._clipRect&&this._clipRect.attr({x:Math.floor(this.position.l+t-.5),y:Math.floor(this.position.t+e-.5)}),this.hbar){var i=t/r;this.hbar.call(a.setTranslate,t+i*this._hbarTranslateMax,e)}if(this.vbar){var s=e/n;this.vbar.call(a.setTranslate,t,e+s*this._vbarTranslateMax)}}},{\"../../lib\":778,\"../color\":643,\"../drawing\":665,d3:169}],745:[function(t,e,r){\"use strict\";e.exports={FROM_BL:{left:0,center:.5,right:1,bottom:0,middle:.5,top:1},FROM_TL:{left:0,center:.5,right:1,bottom:1,middle:.5,top:0},FROM_BR:{left:1,center:.5,right:0,bottom:0,middle:.5,top:1},LINE_SPACING:1.3,CAP_SHIFT:.7,MID_SHIFT:.35,OPPOSITE_SIDE:{left:\"right\",right:\"left\",top:\"bottom\",bottom:\"top\"}}},{}],746:[function(t,e,r){\"use strict\";e.exports={axisRefDescription:function(t,e,r){return[\"If set to a\",t,\"axis id (e.g. *\"+t+\"* or\",\"*\"+t+\"2*), the `\"+t+\"` position refers to a\",t,\"coordinate. If set to *paper*, the `\"+t+\"`\",\"position refers to the distance from the\",e,\"of the plotting\",\"area in normalized coordinates where *0* (*1*) corresponds to the\",e,\"(\"+r+\"). If set to a\",t,\"axis ID followed by\",\"*domain* (separated by a space), the position behaves like for\",\"*paper*, but refers to the distance in fractions of the domain\",\"length from the\",e,\"of the domain of that axis: e.g.,\",\"*\"+t+\"2 domain* refers to the domain of the second\",t,\" axis and a\",t,\"position of 0.5 refers to the\",\"point between the\",e,\"and the\",r,\"of the domain of the\",\"second\",t,\"axis.\"].join(\" \")}}},{}],747:[function(t,e,r){\"use strict\";e.exports={INCREASING:{COLOR:\"#3D9970\",SYMBOL:\"\\u25b2\"},DECREASING:{COLOR:\"#FF4136\",SYMBOL:\"\\u25bc\"}}},{}],748:[function(t,e,r){\"use strict\";e.exports={FORMAT_LINK:\"https://github.com/d3/d3-3.x-api-reference/blob/master/Formatting.md#d3_format\",DATE_FORMAT_LINK:\"https://github.com/d3/d3-time-format#locale_format\"}},{}],749:[function(t,e,r){\"use strict\";e.exports={COMPARISON_OPS:[\"=\",\"!=\",\"<\",\">=\",\">\",\"<=\"],COMPARISON_OPS2:[\"=\",\"<\",\">=\",\">\",\"<=\"],INTERVAL_OPS:[\"[]\",\"()\",\"[)\",\"(]\",\"][\",\")(\",\"](\",\")[\"],SET_OPS:[\"{}\",\"}{\"],CONSTRAINT_REDUCTION:{\"=\":\"=\",\"<\":\"<\",\"<=\":\"<\",\">\":\">\",\">=\":\">\",\"[]\":\"[]\",\"()\":\"[]\",\"[)\":\"[]\",\"(]\":\"[]\",\"][\":\"][\",\")(\":\"][\",\"](\":\"][\",\")[\":\"][\"}}},{}],750:[function(t,e,r){\"use strict\";e.exports={solid:[[],0],dot:[[.5,1],200],dash:[[.5,1],50],longdash:[[.5,1],10],dashdot:[[.5,.625,.875,1],50],longdashdot:[[.5,.7,.8,1],10]}},{}],751:[function(t,e,r){\"use strict\";e.exports={circle:\"\\u25cf\",\"circle-open\":\"\\u25cb\",square:\"\\u25a0\",\"square-open\":\"\\u25a1\",diamond:\"\\u25c6\",\"diamond-open\":\"\\u25c7\",cross:\"+\",x:\"\\u274c\"}},{}],752:[function(t,e,r){\"use strict\";e.exports={SHOW_PLACEHOLDER:100,HIDE_PLACEHOLDER:1e3,DESELECTDIM:.2}},{}],753:[function(t,e,r){\"use strict\";e.exports={BADNUM:void 0,FP_SAFE:Number.MAX_VALUE/1e4,ONEMAXYEAR:316224e5,ONEAVGYEAR:315576e5,ONEMINYEAR:31536e6,ONEMAXQUARTER:79488e5,ONEAVGQUARTER:78894e5,ONEMINQUARTER:76896e5,ONEMAXMONTH:26784e5,ONEAVGMONTH:26298e5,ONEMINMONTH:24192e5,ONEWEEK:6048e5,ONEDAY:864e5,ONEHOUR:36e5,ONEMIN:6e4,ONESEC:1e3,EPOCHJD:2440587.5,ALMOST_EQUAL:.999999,LOG_CLIP:10,MINUS_SIGN:\"\\u2212\"}},{}],754:[function(t,e,r){\"use strict\";r.xmlns=\"http://www.w3.org/2000/xmlns/\",r.svg=\"http://www.w3.org/2000/svg\",r.xlink=\"http://www.w3.org/1999/xlink\",r.svgAttrs={xmlns:r.svg,\"xmlns:xlink\":r.xlink}},{}],755:[function(t,e,r){\"use strict\";r.version=t(\"./version\").version,t(\"es6-promise\").polyfill(),t(\"../build/plotcss\"),t(\"./fonts/mathjax_config\")();for(var n=t(\"./registry\"),i=r.register=n.register,a=t(\"./plot_api\"),o=Object.keys(a),s=0;s<o.length;s++){var l=o[s];\"_\"!==l.charAt(0)&&(r[l]=a[l]),i({moduleType:\"apiMethod\",name:l,fn:a[l]})}i(t(\"./traces/scatter\")),i([t(\"./components/legend\"),t(\"./components/fx\"),t(\"./components/annotations\"),t(\"./components/annotations3d\"),t(\"./components/shapes\"),t(\"./components/images\"),t(\"./components/updatemenus\"),t(\"./components/sliders\"),t(\"./components/rangeslider\"),t(\"./components/rangeselector\"),t(\"./components/grid\"),t(\"./components/errorbars\"),t(\"./components/colorscale\"),t(\"./components/colorbar\")]),i([t(\"./locale-en\"),t(\"./locale-en-us\")]),window.PlotlyLocales&&Array.isArray(window.PlotlyLocales)&&(i(window.PlotlyLocales),delete window.PlotlyLocales),r.Icons=t(\"./fonts/ploticon\"),r.Plots=t(\"./plots/plots\"),r.Fx=t(\"./components/fx\"),r.Snapshot=t(\"./snapshot\"),r.PlotSchema=t(\"./plot_api/plot_schema\"),r.Queue=t(\"./lib/queue\"),r.d3=t(\"d3\")},{\"../build/plotcss\":1,\"./components/annotations\":634,\"./components/annotations3d\":639,\"./components/colorbar\":649,\"./components/colorscale\":655,\"./components/errorbars\":671,\"./components/fx\":683,\"./components/grid\":687,\"./components/images\":692,\"./components/legend\":700,\"./components/rangeselector\":711,\"./components/rangeslider\":718,\"./components/shapes\":732,\"./components/sliders\":737,\"./components/updatemenus\":743,\"./fonts/mathjax_config\":756,\"./fonts/ploticon\":757,\"./lib/queue\":794,\"./locale-en\":808,\"./locale-en-us\":807,\"./plot_api\":812,\"./plot_api/plot_schema\":816,\"./plots/plots\":891,\"./registry\":911,\"./snapshot\":916,\"./traces/scatter\":1199,\"./version\":1370,d3:169,\"es6-promise\":224}],756:[function(t,e,r){\"use strict\";e.exports=function(){\"undefined\"!=typeof MathJax&&(\"local\"!==(window.PlotlyConfig||{}).MathJaxConfig&&(MathJax.Hub.Config({messageStyle:\"none\",skipStartupTypeset:!0,displayAlign:\"left\",tex2jax:{inlineMath:[[\"$\",\"$\"],[\"\\\\(\",\"\\\\)\"]]}}),MathJax.Hub.Configured()))}},{}],757:[function(t,e,r){\"use strict\";e.exports={undo:{width:857.1,height:1e3,path:\"m857 350q0-87-34-166t-91-137-137-92-166-34q-96 0-183 41t-147 114q-4 6-4 13t5 11l76 77q6 5 14 5 9-1 13-7 41-53 100-82t126-29q58 0 110 23t92 61 61 91 22 111-22 111-61 91-92 61-110 23q-55 0-105-20t-90-57l77-77q17-16 8-38-10-23-33-23h-250q-15 0-25 11t-11 25v250q0 24 22 33 22 10 39-8l72-72q60 57 137 88t159 31q87 0 166-34t137-92 91-137 34-166z\",transform:\"matrix(1 0 0 -1 0 850)\"},home:{width:928.6,height:1e3,path:\"m786 296v-267q0-15-11-26t-25-10h-214v214h-143v-214h-214q-15 0-25 10t-11 26v267q0 1 0 2t0 2l321 264 321-264q1-1 1-4z m124 39l-34-41q-5-5-12-6h-2q-7 0-12 3l-386 322-386-322q-7-4-13-4-7 2-12 7l-35 41q-4 5-3 13t6 12l401 334q18 15 42 15t43-15l136-114v109q0 8 5 13t13 5h107q8 0 13-5t5-13v-227l122-102q5-5 6-12t-4-13z\",transform:\"matrix(1 0 0 -1 0 850)\"},\"camera-retro\":{width:1e3,height:1e3,path:\"m518 386q0 8-5 13t-13 5q-37 0-63-27t-26-63q0-8 5-13t13-5 12 5 5 13q0 23 16 38t38 16q8 0 13 5t5 13z m125-73q0-59-42-101t-101-42-101 42-42 101 42 101 101 42 101-42 42-101z m-572-320h858v71h-858v-71z m643 320q0 89-62 152t-152 62-151-62-63-152 63-151 151-63 152 63 62 151z m-571 358h214v72h-214v-72z m-72-107h858v143h-462l-36-71h-360v-72z m929 143v-714q0-30-21-51t-50-21h-858q-29 0-50 21t-21 51v714q0 30 21 51t50 21h858q29 0 50-21t21-51z\",transform:\"matrix(1 0 0 -1 0 850)\"},zoombox:{width:1e3,height:1e3,path:\"m1000-25l-250 251c40 63 63 138 63 218 0 224-182 406-407 406-224 0-406-182-406-406s183-406 407-406c80 0 155 22 218 62l250-250 125 125z m-812 250l0 438 437 0 0-438-437 0z m62 375l313 0 0-312-313 0 0 312z\",transform:\"matrix(1 0 0 -1 0 850)\"},pan:{width:1e3,height:1e3,path:\"m1000 350l-187 188 0-125-250 0 0 250 125 0-188 187-187-187 125 0 0-250-250 0 0 125-188-188 186-187 0 125 252 0 0-250-125 0 187-188 188 188-125 0 0 250 250 0 0-126 187 188z\",transform:\"matrix(1 0 0 -1 0 850)\"},zoom_plus:{width:875,height:1e3,path:\"m1 787l0-875 875 0 0 875-875 0z m687-500l-187 0 0-187-125 0 0 187-188 0 0 125 188 0 0 187 125 0 0-187 187 0 0-125z\",transform:\"matrix(1 0 0 -1 0 850)\"},zoom_minus:{width:875,height:1e3,path:\"m0 788l0-876 875 0 0 876-875 0z m688-500l-500 0 0 125 500 0 0-125z\",transform:\"matrix(1 0 0 -1 0 850)\"},autoscale:{width:1e3,height:1e3,path:\"m250 850l-187 0-63 0 0-62 0-188 63 0 0 188 187 0 0 62z m688 0l-188 0 0-62 188 0 0-188 62 0 0 188 0 62-62 0z m-875-938l0 188-63 0 0-188 0-62 63 0 187 0 0 62-187 0z m875 188l0-188-188 0 0-62 188 0 62 0 0 62 0 188-62 0z m-125 188l-1 0-93-94-156 156 156 156 92-93 2 0 0 250-250 0 0-2 93-92-156-156-156 156 94 92 0 2-250 0 0-250 0 0 93 93 157-156-157-156-93 94 0 0 0-250 250 0 0 0-94 93 156 157 156-157-93-93 0 0 250 0 0 250z\",transform:\"matrix(1 0 0 -1 0 850)\"},tooltip_basic:{width:1500,height:1e3,path:\"m375 725l0 0-375-375 375-374 0-1 1125 0 0 750-1125 0z\",transform:\"matrix(1 0 0 -1 0 850)\"},tooltip_compare:{width:1125,height:1e3,path:\"m187 786l0 2-187-188 188-187 0 0 937 0 0 373-938 0z m0-499l0 1-187-188 188-188 0 0 937 0 0 376-938-1z\",transform:\"matrix(1 0 0 -1 0 850)\"},plotlylogo:{width:1542,height:1e3,path:\"m0-10h182v-140h-182v140z m228 146h183v-286h-183v286z m225 714h182v-1000h-182v1000z m225-285h182v-715h-182v715z m225 142h183v-857h-183v857z m231-428h182v-429h-182v429z m225-291h183v-138h-183v138z\",transform:\"matrix(1 0 0 -1 0 850)\"},\"z-axis\":{width:1e3,height:1e3,path:\"m833 5l-17 108v41l-130-65 130-66c0 0 0 38 0 39 0-1 36-14 39-25 4-15-6-22-16-30-15-12-39-16-56-20-90-22-187-23-279-23-261 0-341 34-353 59 3 60 228 110 228 110-140-8-351-35-351-116 0-120 293-142 474-142 155 0 477 22 477 142 0 50-74 79-163 96z m-374 94c-58-5-99-21-99-40 0-24 65-43 144-43 79 0 143 19 143 43 0 19-42 34-98 40v216h87l-132 135-133-135h88v-216z m167 515h-136v1c16 16 31 34 46 52l84 109v54h-230v-71h124v-1c-16-17-28-32-44-51l-89-114v-51h245v72z\",transform:\"matrix(1 0 0 -1 0 850)\"},\"3d_rotate\":{width:1e3,height:1e3,path:\"m922 660c-5 4-9 7-14 11-359 263-580-31-580-31l-102 28 58-400c0 1 1 1 2 2 118 108 351 249 351 249s-62 27-100 42c88 83 222 183 347 122 16-8 30-17 44-27-2 1-4 2-6 4z m36-329c0 0 64 229-88 296-62 27-124 14-175-11 157-78 225-208 249-266 8-19 11-31 11-31 2 5 6 15 11 32-5-13-8-20-8-20z m-775-239c70-31 117-50 198-32-121 80-199 346-199 346l-96-15-58-12c0 0 55-226 155-287z m603 133l-317-139c0 0 4-4 19-14 7-5 24-15 24-15s-177-147-389 4c235-287 536-112 536-112l31-22 100 299-4-1z m-298-153c6-4 14-9 24-15 0 0-17 10-24 15z\",transform:\"matrix(1 0 0 -1 0 850)\"},camera:{width:1e3,height:1e3,path:\"m500 450c-83 0-150-67-150-150 0-83 67-150 150-150 83 0 150 67 150 150 0 83-67 150-150 150z m400 150h-120c-16 0-34 13-39 29l-31 93c-6 15-23 28-40 28h-340c-16 0-34-13-39-28l-31-94c-6-15-23-28-40-28h-120c-55 0-100-45-100-100v-450c0-55 45-100 100-100h800c55 0 100 45 100 100v450c0 55-45 100-100 100z m-400-550c-138 0-250 112-250 250 0 138 112 250 250 250 138 0 250-112 250-250 0-138-112-250-250-250z m365 380c-19 0-35 16-35 35 0 19 16 35 35 35 19 0 35-16 35-35 0-19-16-35-35-35z\",transform:\"matrix(1 0 0 -1 0 850)\"},movie:{width:1e3,height:1e3,path:\"m938 413l-188-125c0 37-17 71-44 94 64 38 107 107 107 187 0 121-98 219-219 219-121 0-219-98-219-219 0-61 25-117 66-156h-115c30 33 49 76 49 125 0 103-84 187-187 187s-188-84-188-187c0-57 26-107 65-141-38-22-65-62-65-109v-250c0-70 56-126 125-126h500c69 0 125 56 125 126l188-126c34 0 62 28 62 63v375c0 35-28 63-62 63z m-750 0c-69 0-125 56-125 125s56 125 125 125 125-56 125-125-56-125-125-125z m406-1c-87 0-157 70-157 157 0 86 70 156 157 156s156-70 156-156-70-157-156-157z\",transform:\"matrix(1 0 0 -1 0 850)\"},question:{width:857.1,height:1e3,path:\"m500 82v107q0 8-5 13t-13 5h-107q-8 0-13-5t-5-13v-107q0-8 5-13t13-5h107q8 0 13 5t5 13z m143 375q0 49-31 91t-77 65-95 23q-136 0-207-119-9-14 4-24l74-55q4-4 10-4 9 0 14 7 30 38 48 51 19 14 48 14 27 0 48-15t21-33q0-21-11-34t-38-25q-35-16-65-48t-29-70v-20q0-8 5-13t13-5h107q8 0 13 5t5 13q0 10 12 27t30 28q18 10 28 16t25 19 25 27 16 34 7 45z m214-107q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z\",transform:\"matrix(1 0 0 -1 0 850)\"},disk:{width:857.1,height:1e3,path:\"m214-7h429v214h-429v-214z m500 0h72v500q0 8-6 21t-11 20l-157 156q-5 6-19 12t-22 5v-232q0-22-15-38t-38-16h-322q-22 0-37 16t-16 38v232h-72v-714h72v232q0 22 16 38t37 16h465q22 0 38-16t15-38v-232z m-214 518v178q0 8-5 13t-13 5h-107q-7 0-13-5t-5-13v-178q0-8 5-13t13-5h107q7 0 13 5t5 13z m357-18v-518q0-22-15-38t-38-16h-750q-23 0-38 16t-16 38v750q0 22 16 38t38 16h517q23 0 50-12t42-26l156-157q16-15 27-42t11-49z\",transform:\"matrix(1 0 0 -1 0 850)\"},drawopenpath:{width:70,height:70,path:\"M33.21,85.65a7.31,7.31,0,0,1-2.59-.48c-8.16-3.11-9.27-19.8-9.88-41.3-.1-3.58-.19-6.68-.35-9-.15-2.1-.67-3.48-1.43-3.79-2.13-.88-7.91,2.32-12,5.86L3,32.38c1.87-1.64,11.55-9.66,18.27-6.9,2.13.87,4.75,3.14,5.17,9,.17,2.43.26,5.59.36,9.25a224.17,224.17,0,0,0,1.5,23.4c1.54,10.76,4,12.22,4.48,12.4.84.32,2.79-.46,5.76-3.59L43,80.07C41.53,81.57,37.68,85.64,33.21,85.65ZM74.81,69a11.34,11.34,0,0,0,6.09-6.72L87.26,44.5,74.72,32,56.9,38.35c-2.37.86-5.57,3.42-6.61,6L38.65,72.14l8.42,8.43ZM55,46.27a7.91,7.91,0,0,1,3.64-3.17l14.8-5.3,8,8L76.11,60.6l-.06.19a6.37,6.37,0,0,1-3,3.43L48.25,74.59,44.62,71Zm16.57,7.82A6.9,6.9,0,1,0,64.64,61,6.91,6.91,0,0,0,71.54,54.09Zm-4.05,0a2.85,2.85,0,1,1-2.85-2.85A2.86,2.86,0,0,1,67.49,54.09Zm-4.13,5.22L60.5,56.45,44.26,72.7l2.86,2.86ZM97.83,35.67,84.14,22l-8.57,8.57L89.26,44.24Zm-13.69-8,8,8-2.85,2.85-8-8Z\",transform:\"matrix(1 0 0 1 -15 -15)\"},drawclosedpath:{width:90,height:90,path:\"M88.41,21.12a26.56,26.56,0,0,0-36.18,0l-2.07,2-2.07-2a26.57,26.57,0,0,0-36.18,0,23.74,23.74,0,0,0,0,34.8L48,90.12a3.22,3.22,0,0,0,4.42,0l36-34.21a23.73,23.73,0,0,0,0-34.79ZM84,51.24,50.16,83.35,16.35,51.25a17.28,17.28,0,0,1,0-25.47,20,20,0,0,1,27.3,0l4.29,4.07a3.23,3.23,0,0,0,4.44,0l4.29-4.07a20,20,0,0,1,27.3,0,17.27,17.27,0,0,1,0,25.46ZM66.76,47.68h-33v6.91h33ZM53.35,35H46.44V68h6.91Z\",transform:\"matrix(1 0 0 1 -5 -5)\"},lasso:{width:1031,height:1e3,path:\"m1018 538c-36 207-290 336-568 286-277-48-473-256-436-463 10-57 36-108 76-151-13-66 11-137 68-183 34-28 75-41 114-42l-55-70 0 0c-2-1-3-2-4-3-10-14-8-34 5-45 14-11 34-8 45 4 1 1 2 3 2 5l0 0 113 140c16 11 31 24 45 40 4 3 6 7 8 11 48-3 100 0 151 9 278 48 473 255 436 462z m-624-379c-80 14-149 48-197 96 42 42 109 47 156 9 33-26 47-66 41-105z m-187-74c-19 16-33 37-39 60 50-32 109-55 174-68-42-25-95-24-135 8z m360 75c-34-7-69-9-102-8 8 62-16 128-68 170-73 59-175 54-244-5-9 20-16 40-20 61-28 159 121 317 333 354s407-60 434-217c28-159-121-318-333-355z\",transform:\"matrix(1 0 0 -1 0 850)\"},selectbox:{width:1e3,height:1e3,path:\"m0 850l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m285 0l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m-857-286l0-143 143 0 0 143-143 0z m857 0l0-143 143 0 0 143-143 0z m-857-285l0-143 143 0 0 143-143 0z m857 0l0-143 143 0 0 143-143 0z m-857-286l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z m285 0l0-143 143 0 0 143-143 0z m286 0l0-143 143 0 0 143-143 0z\",transform:\"matrix(1 0 0 -1 0 850)\"},drawline:{width:70,height:70,path:\"M60.64,62.3a11.29,11.29,0,0,0,6.09-6.72l6.35-17.72L60.54,25.31l-17.82,6.4c-2.36.86-5.57,3.41-6.6,6L24.48,65.5l8.42,8.42ZM40.79,39.63a7.89,7.89,0,0,1,3.65-3.17l14.79-5.31,8,8L61.94,54l-.06.19a6.44,6.44,0,0,1-3,3.43L34.07,68l-3.62-3.63Zm16.57,7.81a6.9,6.9,0,1,0-6.89,6.9A6.9,6.9,0,0,0,57.36,47.44Zm-4,0a2.86,2.86,0,1,1-2.85-2.85A2.86,2.86,0,0,1,53.32,47.44Zm-4.13,5.22L46.33,49.8,30.08,66.05l2.86,2.86ZM83.65,29,70,15.34,61.4,23.9,75.09,37.59ZM70,21.06l8,8-2.84,2.85-8-8ZM87,80.49H10.67V87H87Z\",transform:\"matrix(1 0 0 1 -15 -15)\"},drawrect:{width:80,height:80,path:\"M78,22V79H21V22H78m9-9H12V88H87V13ZM68,46.22H31V54H68ZM53,32H45.22V69H53Z\",transform:\"matrix(1 0 0 1 -10 -10)\"},drawcircle:{width:80,height:80,path:\"M50,84.72C26.84,84.72,8,69.28,8,50.3S26.84,15.87,50,15.87,92,31.31,92,50.3,73.16,84.72,50,84.72Zm0-60.59c-18.6,0-33.74,11.74-33.74,26.17S31.4,76.46,50,76.46,83.74,64.72,83.74,50.3,68.6,24.13,50,24.13Zm17.15,22h-34v7.11h34Zm-13.8-13H46.24v34h7.11Z\",transform:\"matrix(1 0 0 1 -10 -10)\"},eraseshape:{width:80,height:80,path:\"M82.77,78H31.85L6,49.57,31.85,21.14H82.77a8.72,8.72,0,0,1,8.65,8.77V69.24A8.72,8.72,0,0,1,82.77,78ZM35.46,69.84H82.77a.57.57,0,0,0,.49-.6V29.91a.57.57,0,0,0-.49-.61H35.46L17,49.57Zm32.68-34.7-24,24,5,5,24-24Zm-19,.53-5,5,24,24,5-5Z\",transform:\"matrix(1 0 0 1 -10 -10)\"},spikeline:{width:1e3,height:1e3,path:\"M512 409c0-57-46-104-103-104-57 0-104 47-104 104 0 57 47 103 104 103 57 0 103-46 103-103z m-327-39l92 0 0 92-92 0z m-185 0l92 0 0 92-92 0z m370-186l92 0 0 93-92 0z m0-184l92 0 0 92-92 0z\",transform:\"matrix(1.5 0 0 -1.5 0 850)\"},pencil:{width:1792,height:1792,path:\"M491 1536l91-91-235-235-91 91v107h128v128h107zm523-928q0-22-22-22-10 0-17 7l-542 542q-7 7-7 17 0 22 22 22 10 0 17-7l542-542q7-7 7-17zm-54-192l416 416-832 832h-416v-416zm683 96q0 53-37 90l-166 166-416-416 166-165q36-38 90-38 53 0 91 38l235 234q37 39 37 91z\",transform:\"matrix(1 0 0 1 0 1)\"},newplotlylogo:{name:\"newplotlylogo\",svg:\"<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 132 132'><defs><style>.cls-1 {fill: #3f4f75;} .cls-2 {fill: #80cfbe;} .cls-3 {fill: #fff;}</style></defs><title>plotly-logomark</title><g id='symbol'><rect class='cls-1' width='132' height='132' rx='6' ry='6'/><circle class='cls-2' cx='78' cy='54' r='6'/><circle class='cls-2' cx='102' cy='30' r='6'/><circle class='cls-2' cx='78' cy='30' r='6'/><circle class='cls-2' cx='54' cy='30' r='6'/><circle class='cls-2' cx='30' cy='30' r='6'/><circle class='cls-2' cx='30' cy='54' r='6'/><path class='cls-3' d='M30,72a6,6,0,0,0-6,6v24a6,6,0,0,0,12,0V78A6,6,0,0,0,30,72Z'/><path class='cls-3' d='M78,72a6,6,0,0,0-6,6v24a6,6,0,0,0,12,0V78A6,6,0,0,0,78,72Z'/><path class='cls-3' d='M54,48a6,6,0,0,0-6,6v48a6,6,0,0,0,12,0V54A6,6,0,0,0,54,48Z'/><path class='cls-3' d='M102,48a6,6,0,0,0-6,6v48a6,6,0,0,0,12,0V54A6,6,0,0,0,102,48Z'/></g></svg>\"}}},{}],758:[function(t,e,r){\"use strict\";r.isLeftAnchor=function(t){return\"left\"===t.xanchor||\"auto\"===t.xanchor&&t.x<=1/3},r.isCenterAnchor=function(t){return\"center\"===t.xanchor||\"auto\"===t.xanchor&&t.x>1/3&&t.x<2/3},r.isRightAnchor=function(t){return\"right\"===t.xanchor||\"auto\"===t.xanchor&&t.x>=2/3},r.isTopAnchor=function(t){return\"top\"===t.yanchor||\"auto\"===t.yanchor&&t.y>=2/3},r.isMiddleAnchor=function(t){return\"middle\"===t.yanchor||\"auto\"===t.yanchor&&t.y>1/3&&t.y<2/3},r.isBottomAnchor=function(t){return\"bottom\"===t.yanchor||\"auto\"===t.yanchor&&t.y<=1/3}},{}],759:[function(t,e,r){\"use strict\";var n=t(\"./mod\"),i=n.mod,a=n.modHalf,o=Math.PI,s=2*o;function l(t){return Math.abs(t[1]-t[0])>s-1e-14}function c(t,e){return a(e-t,s)}function u(t,e){if(l(e))return!0;var r,n;e[0]<e[1]?(r=e[0],n=e[1]):(r=e[1],n=e[0]),(r=i(r,s))>(n=i(n,s))&&(n+=s);var a=i(t,s),o=a+s;return a>=r&&a<=n||o>=r&&o<=n}function f(t,e,r,n,i,a,c){i=i||0,a=a||0;var u,f,h,p,d,g=l([r,n]);function m(t,e){return[t*Math.cos(e)+i,a-t*Math.sin(e)]}g?(u=0,f=o,h=s):r<n?(u=r,h=n):(u=n,h=r),t<e?(p=t,d=e):(p=e,d=t);var v,y=Math.abs(h-u)<=o?0:1;function x(t,e,r){return\"A\"+[t,t]+\" \"+[0,y,r]+\" \"+m(t,e)}return g?v=null===p?\"M\"+m(d,u)+x(d,f,0)+x(d,h,0)+\"Z\":\"M\"+m(p,u)+x(p,f,0)+x(p,h,0)+\"ZM\"+m(d,u)+x(d,f,1)+x(d,h,1)+\"Z\":null===p?(v=\"M\"+m(d,u)+x(d,h,0),c&&(v+=\"L0,0Z\")):v=\"M\"+m(p,u)+\"L\"+m(d,u)+x(d,h,0)+\"L\"+m(p,h)+x(p,u,1)+\"Z\",v}e.exports={deg2rad:function(t){return t/180*o},rad2deg:function(t){return t/o*180},angleDelta:c,angleDist:function(t,e){return Math.abs(c(t,e))},isFullCircle:l,isAngleInsideSector:u,isPtInsideSector:function(t,e,r,n){return!!u(e,n)&&(r[0]<r[1]?(i=r[0],a=r[1]):(i=r[1],a=r[0]),t>=i&&t<=a);var i,a},pathArc:function(t,e,r,n,i){return f(null,t,e,r,n,i,0)},pathSector:function(t,e,r,n,i){return f(null,t,e,r,n,i,1)},pathAnnulus:function(t,e,r,n,i,a){return f(t,e,r,n,i,a,1)}}},{\"./mod\":785}],760:[function(t,e,r){\"use strict\";var n=Array.isArray,i=\"undefined\"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer:{isView:function(){return!1}},a=\"undefined\"==typeof DataView?function(){}:DataView;function o(t){return i.isView(t)&&!(t instanceof a)}function s(t){return n(t)||o(t)}function l(t,e,r){if(s(t)){if(s(t[0])){for(var n=r,i=0;i<t.length;i++)n=e(n,t[i].length);return n}return t.length}return 0}r.isTypedArray=o,r.isArrayOrTypedArray=s,r.isArray1D=function(t){return!s(t[0])},r.ensureArray=function(t,e){return n(t)||(t=[]),t.length=e,t},r.concat=function(){var t,e,r,i,a,o,s,l,c=[],u=!0,f=0;for(r=0;r<arguments.length;r++)(o=(i=arguments[r]).length)&&(e?c.push(i):(e=i,a=o),n(i)?t=!1:(u=!1,f?t!==i.constructor&&(t=!1):t=i.constructor),f+=o);if(!f)return[];if(!c.length)return e;if(u)return e.concat.apply(e,c);if(t){for((s=new t(f)).set(e),r=0;r<c.length;r++)i=c[r],s.set(i,a),a+=i.length;return s}for(s=new Array(f),l=0;l<e.length;l++)s[l]=e[l];for(r=0;r<c.length;r++){for(i=c[r],l=0;l<i.length;l++)s[a+l]=i[l];a+=l}return s},r.maxRowLength=function(t){return l(t,Math.max,0)},r.minRowLength=function(t){return l(t,Math.min,1/0)}},{}],761:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../constants/numerical\").BADNUM,a=/^['\"%,$#\\s']+|[, ]|['\"%,$#\\s']+$/g;e.exports=function(t){return\"string\"==typeof t&&(t=t.replace(a,\"\")),n(t)?Number(t):i}},{\"../constants/numerical\":753,\"fast-isnumeric\":241}],762:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t._fullLayout;e._glcanvas&&e._glcanvas.size()&&e._glcanvas.each((function(t){t.regl&&t.regl.clear({color:!0,depth:!0})}))}},{}],763:[function(t,e,r){\"use strict\";e.exports=function(t){t._responsiveChartHandler&&(window.removeEventListener(\"resize\",t._responsiveChartHandler),delete t._responsiveChartHandler)}},{}],764:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"tinycolor2\"),a=t(\"../plots/attributes\"),o=t(\"../components/colorscale/scales\"),s=t(\"../constants/interactions\").DESELECTDIM,l=t(\"./nested_property\"),c=t(\"./regex\").counter,u=t(\"./mod\").modHalf,f=t(\"./array\").isArrayOrTypedArray;function h(t,e){var n=r.valObjectMeta[e.valType];if(e.arrayOk&&f(t))return!0;if(n.validateFunction)return n.validateFunction(t,e);var i={},a=i,o={set:function(t){a=t}};return n.coerceFunction(t,o,i,e),a!==i}r.valObjectMeta={data_array:{coerceFunction:function(t,e,r){f(t)?e.set(t):void 0!==r&&e.set(r)}},enumerated:{coerceFunction:function(t,e,r,n){n.coerceNumber&&(t=+t),-1===n.values.indexOf(t)?e.set(r):e.set(t)},validateFunction:function(t,e){e.coerceNumber&&(t=+t);for(var r=e.values,n=0;n<r.length;n++){var i=String(r[n]);if(\"/\"===i.charAt(0)&&\"/\"===i.charAt(i.length-1)){if(new RegExp(i.substr(1,i.length-2)).test(t))return!0}else if(t===r[n])return!0}return!1}},boolean:{coerceFunction:function(t,e,r){!0===t||!1===t?e.set(t):e.set(r)}},number:{coerceFunction:function(t,e,r,i){!n(t)||void 0!==i.min&&t<i.min||void 0!==i.max&&t>i.max?e.set(r):e.set(+t)}},integer:{coerceFunction:function(t,e,r,i){t%1||!n(t)||void 0!==i.min&&t<i.min||void 0!==i.max&&t>i.max?e.set(r):e.set(+t)}},string:{coerceFunction:function(t,e,r,n){if(\"string\"!=typeof t){var i=\"number\"==typeof t;!0!==n.strict&&i?e.set(String(t)):e.set(r)}else n.noBlank&&!t?e.set(r):e.set(t)}},color:{coerceFunction:function(t,e,r){i(t).isValid()?e.set(t):e.set(r)}},colorlist:{coerceFunction:function(t,e,r){Array.isArray(t)&&t.length&&t.every((function(t){return i(t).isValid()}))?e.set(t):e.set(r)}},colorscale:{coerceFunction:function(t,e,r){e.set(o.get(t,r))}},angle:{coerceFunction:function(t,e,r){\"auto\"===t?e.set(\"auto\"):n(t)?e.set(u(+t,360)):e.set(r)}},subplotid:{coerceFunction:function(t,e,r,n){var i=n.regex||c(r);\"string\"==typeof t&&i.test(t)?e.set(t):e.set(r)},validateFunction:function(t,e){var r=e.dflt;return t===r||\"string\"==typeof t&&!!c(r).test(t)}},flaglist:{coerceFunction:function(t,e,r,n){if(\"string\"==typeof t)if(-1===(n.extras||[]).indexOf(t)){for(var i=t.split(\"+\"),a=0;a<i.length;){var o=i[a];-1===n.flags.indexOf(o)||i.indexOf(o)<a?i.splice(a,1):a++}i.length?e.set(i.join(\"+\")):e.set(r)}else e.set(t);else e.set(r)}},any:{coerceFunction:function(t,e,r){void 0===t?e.set(r):e.set(t)}},info_array:{coerceFunction:function(t,e,n,i){function a(t,e,n){var i,a={set:function(t){i=t}};return void 0===n&&(n=e.dflt),r.valObjectMeta[e.valType].coerceFunction(t,a,n,e),i}var o=2===i.dimensions||\"1-2\"===i.dimensions&&Array.isArray(t)&&Array.isArray(t[0]);if(Array.isArray(t)){var s,l,c,u,f,h,p=i.items,d=[],g=Array.isArray(p),m=g&&o&&Array.isArray(p[0]),v=o&&g&&!m,y=g&&!v?p.length:t.length;if(n=Array.isArray(n)?n:[],o)for(s=0;s<y;s++)for(d[s]=[],c=Array.isArray(t[s])?t[s]:[],f=v?p.length:g?p[s].length:c.length,l=0;l<f;l++)u=v?p[l]:g?p[s][l]:p,void 0!==(h=a(c[l],u,(n[s]||[])[l]))&&(d[s][l]=h);else for(s=0;s<y;s++)void 0!==(h=a(t[s],g?p[s]:p,n[s]))&&(d[s]=h);e.set(d)}else e.set(n)},validateFunction:function(t,e){if(!Array.isArray(t))return!1;var r=e.items,n=Array.isArray(r),i=2===e.dimensions;if(!e.freeLength&&t.length!==r.length)return!1;for(var a=0;a<t.length;a++)if(i){if(!Array.isArray(t[a])||!e.freeLength&&t[a].length!==r[a].length)return!1;for(var o=0;o<t[a].length;o++)if(!h(t[a][o],n?r[a][o]:r))return!1}else if(!h(t[a],n?r[a]:r))return!1;return!0}}},r.coerce=function(t,e,n,i,a){var o=l(n,i).get(),s=l(t,i),c=l(e,i),u=s.get(),p=e._template;if(void 0===u&&p&&(u=l(p,i).get(),p=0),void 0===a&&(a=o.dflt),o.arrayOk&&f(u))return c.set(u),u;var d=r.valObjectMeta[o.valType].coerceFunction;d(u,c,a,o);var g=c.get();return p&&g===a&&!h(u,o)&&(d(u=l(p,i).get(),c,a,o),g=c.get()),g},r.coerce2=function(t,e,n,i,a){var o=l(t,i),s=r.coerce(t,e,n,i,a),c=o.get();return null!=c&&s},r.coerceFont=function(t,e,r){var n={};return r=r||{},n.family=t(e+\".family\",r.family),n.size=t(e+\".size\",r.size),n.color=t(e+\".color\",r.color),n},r.coerceHoverinfo=function(t,e,n){var i,o=e._module.attributes,s=o.hoverinfo?o:a,l=s.hoverinfo;if(1===n._dataLength){var c=\"all\"===l.dflt?l.flags.slice():l.dflt.split(\"+\");c.splice(c.indexOf(\"name\"),1),i=c.join(\"+\")}return r.coerce(t,e,s,\"hoverinfo\",i)},r.coerceSelectionMarkerOpacity=function(t,e){if(t.marker){var r,n,i=t.marker.opacity;if(void 0!==i)f(i)||t.selected||t.unselected||(r=i,n=s*i),e(\"selected.marker.opacity\",r),e(\"unselected.marker.opacity\",n)}},r.validate=h},{\"../components/colorscale/scales\":658,\"../constants/interactions\":752,\"../plots/attributes\":824,\"./array\":760,\"./mod\":785,\"./nested_property\":786,\"./regex\":795,\"fast-isnumeric\":241,tinycolor2:576}],765:[function(t,e,r){\"use strict\";var n,i,a=t(\"d3-time-format\").timeFormat,o=t(\"fast-isnumeric\"),s=t(\"./loggers\"),l=t(\"./mod\").mod,c=t(\"../constants/numerical\"),u=c.BADNUM,f=c.ONEDAY,h=c.ONEHOUR,p=c.ONEMIN,d=c.ONESEC,g=c.EPOCHJD,m=t(\"../registry\"),v=t(\"d3-time-format\").utcFormat,y=/^\\s*(-?\\d\\d\\d\\d|\\d\\d)(-(\\d?\\d)(-(\\d?\\d)([ Tt]([01]?\\d|2[0-3])(:([0-5]\\d)(:([0-5]\\d(\\.\\d+)?))?(Z|z|[+\\-]\\d\\d(:?\\d\\d)?)?)?)?)?)?\\s*$/m,x=/^\\s*(-?\\d\\d\\d\\d|\\d\\d)(-(\\d?\\di?)(-(\\d?\\d)([ Tt]([01]?\\d|2[0-3])(:([0-5]\\d)(:([0-5]\\d(\\.\\d+)?))?(Z|z|[+\\-]\\d\\d(:?\\d\\d)?)?)?)?)?)?\\s*$/m,b=(new Date).getFullYear()-70;function _(t){return t&&m.componentsRegistry.calendars&&\"string\"==typeof t&&\"gregorian\"!==t}function w(t,e){return String(t+Math.pow(10,e)).substr(1)}r.dateTick0=function(t,e){var n=function(t,e){return _(t)?e?m.getComponentMethod(\"calendars\",\"CANONICAL_SUNDAY\")[t]:m.getComponentMethod(\"calendars\",\"CANONICAL_TICK\")[t]:e?\"2000-01-02\":\"2000-01-01\"}(t,!!e);if(e<2)return n;var i=r.dateTime2ms(n,t);return i+=f*(e-1),r.ms2DateTime(i,0,t)},r.dfltRange=function(t){return _(t)?m.getComponentMethod(\"calendars\",\"DFLTRANGE\")[t]:[\"2000-01-01\",\"2001-01-01\"]},r.isJSDate=function(t){return\"object\"==typeof t&&null!==t&&\"function\"==typeof t.getTime},r.dateTime2ms=function(t,e){if(r.isJSDate(t)){var a=t.getTimezoneOffset()*p,o=(t.getUTCMinutes()-t.getMinutes())*p+(t.getUTCSeconds()-t.getSeconds())*d+(t.getUTCMilliseconds()-t.getMilliseconds());if(o){var s=3*p;a=a-s/2+l(o-a+s/2,s)}return(t=Number(t)-a)>=n&&t<=i?t:u}if(\"string\"!=typeof t&&\"number\"!=typeof t)return u;t=String(t);var c=_(e),v=t.charAt(0);!c||\"G\"!==v&&\"g\"!==v||(t=t.substr(1),e=\"\");var w=c&&\"chinese\"===e.substr(0,7),T=t.match(w?x:y);if(!T)return u;var k=T[1],M=T[3]||\"1\",A=Number(T[5]||1),S=Number(T[7]||0),E=Number(T[9]||0),C=Number(T[11]||0);if(c){if(2===k.length)return u;var L;k=Number(k);try{var I=m.getComponentMethod(\"calendars\",\"getCal\")(e);if(w){var P=\"i\"===M.charAt(M.length-1);M=parseInt(M,10),L=I.newDate(k,I.toMonthIndex(k,M,P),A)}else L=I.newDate(k,Number(M),A)}catch(t){return u}return L?(L.toJD()-g)*f+S*h+E*p+C*d:u}k=2===k.length?(Number(k)+2e3-b)%100+b:Number(k),M-=1;var z=new Date(Date.UTC(2e3,M,A,S,E));return z.setUTCFullYear(k),z.getUTCMonth()!==M||z.getUTCDate()!==A?u:z.getTime()+C*d},n=r.MIN_MS=r.dateTime2ms(\"-9999\"),i=r.MAX_MS=r.dateTime2ms(\"9999-12-31 23:59:59.9999\"),r.isDateTime=function(t,e){return r.dateTime2ms(t,e)!==u};var T=90*f,k=3*h,M=5*p;function A(t,e,r,n,i){if((e||r||n||i)&&(t+=\" \"+w(e,2)+\":\"+w(r,2),(n||i)&&(t+=\":\"+w(n,2),i))){for(var a=4;i%10==0;)a-=1,i/=10;t+=\".\"+w(i,a)}return t}r.ms2DateTime=function(t,e,r){if(\"number\"!=typeof t||!(t>=n&&t<=i))return u;e||(e=0);var a,o,s,c,y,x,b=Math.floor(10*l(t+.05,1)),w=Math.round(t-b/10);if(_(r)){var S=Math.floor(w/f)+g,E=Math.floor(l(t,f));try{a=m.getComponentMethod(\"calendars\",\"getCal\")(r).fromJD(S).formatDate(\"yyyy-mm-dd\")}catch(t){a=v(\"G%Y-%m-%d\")(new Date(w))}if(\"-\"===a.charAt(0))for(;a.length<11;)a=\"-0\"+a.substr(1);else for(;a.length<10;)a=\"0\"+a;o=e<T?Math.floor(E/h):0,s=e<T?Math.floor(E%h/p):0,c=e<k?Math.floor(E%p/d):0,y=e<M?E%d*10+b:0}else x=new Date(w),a=v(\"%Y-%m-%d\")(x),o=e<T?x.getUTCHours():0,s=e<T?x.getUTCMinutes():0,c=e<k?x.getUTCSeconds():0,y=e<M?10*x.getUTCMilliseconds()+b:0;return A(a,o,s,c,y)},r.ms2DateTimeLocal=function(t){if(!(t>=n+f&&t<=i-f))return u;var e=Math.floor(10*l(t+.05,1)),r=new Date(Math.round(t-e/10));return A(a(\"%Y-%m-%d\")(r),r.getHours(),r.getMinutes(),r.getSeconds(),10*r.getUTCMilliseconds()+e)},r.cleanDate=function(t,e,n){if(t===u)return e;if(r.isJSDate(t)||\"number\"==typeof t&&isFinite(t)){if(_(n))return s.error(\"JS Dates and milliseconds are incompatible with world calendars\",t),e;if(!(t=r.ms2DateTimeLocal(+t))&&void 0!==e)return e}else if(!r.isDateTime(t,n))return s.error(\"unrecognized date\",t),e;return t};var S=/%\\d?f/g;function E(t,e,r,n){t=t.replace(S,(function(t){var r=Math.min(+t.charAt(1)||6,6);return(e/1e3%1+2).toFixed(r).substr(2).replace(/0+$/,\"\")||\"0\"}));var i=new Date(Math.floor(e+.05));if(_(n))try{t=m.getComponentMethod(\"calendars\",\"worldCalFmt\")(t,e,n)}catch(t){return\"Invalid\"}return r(t)(i)}var C=[59,59.9,59.99,59.999,59.9999];r.formatDate=function(t,e,r,n,i,a){if(i=_(i)&&i,!e)if(\"y\"===r)e=a.year;else if(\"m\"===r)e=a.month;else{if(\"d\"!==r)return function(t,e){var r=l(t+.05,f),n=w(Math.floor(r/h),2)+\":\"+w(l(Math.floor(r/p),60),2);if(\"M\"!==e){o(e)||(e=0);var i=(100+Math.min(l(t/d,60),C[e])).toFixed(e).substr(1);e>0&&(i=i.replace(/0+$/,\"\").replace(/[\\.]$/,\"\")),n+=\":\"+i}return n}(t,r)+\"\\n\"+E(a.dayMonthYear,t,n,i);e=a.dayMonth+\"\\n\"+a.year}return E(e,t,n,i)};var L=3*f;r.incrementMonth=function(t,e,r){r=_(r)&&r;var n=l(t,f);if(t=Math.round(t-n),r)try{var i=Math.round(t/f)+g,a=m.getComponentMethod(\"calendars\",\"getCal\")(r),o=a.fromJD(i);return e%12?a.add(o,e,\"m\"):a.add(o,e/12,\"y\"),(o.toJD()-g)*f+n}catch(e){s.error(\"invalid ms \"+t+\" in calendar \"+r)}var c=new Date(t+L);return c.setUTCMonth(c.getUTCMonth()+e)+n-L},r.findExactDates=function(t,e){for(var r,n,i=0,a=0,s=0,l=0,c=_(e)&&m.getComponentMethod(\"calendars\",\"getCal\")(e),u=0;u<t.length;u++)if(n=t[u],o(n)){if(!(n%f))if(c)try{1===(r=c.fromJD(n/f+g)).day()?1===r.month()?i++:a++:s++}catch(t){}else 1===(r=new Date(n)).getUTCDate()?0===r.getUTCMonth()?i++:a++:s++}else l++;s+=a+=i;var h=t.length-l;return{exactYears:i/h,exactMonths:a/h,exactDays:s/h}}},{\"../constants/numerical\":753,\"../registry\":911,\"./loggers\":782,\"./mod\":785,\"d3-time-format\":166,\"fast-isnumeric\":241}],766:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"./loggers\"),a=t(\"./matrix\"),o=t(\"gl-mat4\");function s(t){var e=t&&t.parentNode;e&&e.removeChild(t)}function l(t,e,r){var n=\"plotly.js-style-\"+t,a=document.getElementById(n);a||((a=document.createElement(\"style\")).setAttribute(\"id\",n),a.appendChild(document.createTextNode(\"\")),document.head.appendChild(a));var o=a.sheet;o.insertRule?o.insertRule(e+\"{\"+r+\"}\",0):o.addRule?o.addRule(e,r,0):i.warn(\"addStyleRule failed\")}function c(t){var e=window.getComputedStyle(t,null),r=e.getPropertyValue(\"-webkit-transform\")||e.getPropertyValue(\"-moz-transform\")||e.getPropertyValue(\"-ms-transform\")||e.getPropertyValue(\"-o-transform\")||e.getPropertyValue(\"transform\");return\"none\"===r?null:r.replace(\"matrix\",\"\").replace(\"3d\",\"\").slice(1,-1).split(\",\").map((function(t){return+t}))}function u(t){for(var e=[];f(t);)e.push(t),t=t.parentNode;return e}function f(t){return t&&(t instanceof Element||t instanceof HTMLElement)}e.exports={getGraphDiv:function(t){var e;if(\"string\"==typeof t){if(null===(e=document.getElementById(t)))throw new Error(\"No DOM element with id '\"+t+\"' exists on the page.\");return e}if(null==t)throw new Error(\"DOM element provided is null or undefined\");return t},isPlotDiv:function(t){var e=n.select(t);return e.node()instanceof HTMLElement&&e.size()&&e.classed(\"js-plotly-plot\")},removeElement:s,addStyleRule:function(t,e){l(\"global\",t,e)},addRelatedStyleRule:l,deleteRelatedStyleRule:function(t){var e=\"plotly.js-style-\"+t,r=document.getElementById(e);r&&s(r)},getFullTransformMatrix:function(t){var e=u(t),r=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1];return e.forEach((function(t){var e=c(t);if(e){var n=a.convertCssMatrix(e);r=o.multiply(r,r,n)}})),r},getElementTransformMatrix:c,getElementAndAncestors:u,equalDomRects:function(t,e){return t&&e&&t.x===e.x&&t.y===e.y&&t.top===e.top&&t.left===e.left&&t.right===e.right&&t.bottom===e.bottom}}},{\"./loggers\":782,\"./matrix\":784,d3:169,\"gl-mat4\":292}],767:[function(t,e,r){\"use strict\";var n=t(\"events\").EventEmitter,i={init:function(t){if(t._ev instanceof n)return t;var e=new n,r=new n;return t._ev=e,t._internalEv=r,t.on=e.on.bind(e),t.once=e.once.bind(e),t.removeListener=e.removeListener.bind(e),t.removeAllListeners=e.removeAllListeners.bind(e),t._internalOn=r.on.bind(r),t._internalOnce=r.once.bind(r),t._removeInternalListener=r.removeListener.bind(r),t._removeAllInternalListeners=r.removeAllListeners.bind(r),t.emit=function(n,i){\"undefined\"!=typeof jQuery&&jQuery(t).trigger(n,i),e.emit(n,i),r.emit(n,i)},t},triggerHandler:function(t,e,r){var n,i;\"undefined\"!=typeof jQuery&&(n=jQuery(t).triggerHandler(e,r));var a=t._ev;if(!a)return n;var o,s=a._events[e];if(!s)return n;function l(t){return t.listener?(a.removeListener(e,t.listener),t.fired?void 0:(t.fired=!0,t.listener.apply(a,[r]))):t.apply(a,[r])}for(s=Array.isArray(s)?s:[s],o=0;o<s.length-1;o++)l(s[o]);return i=l(s[o]),void 0!==n?n:i},purge:function(t){return delete t._ev,delete t.on,delete t.once,delete t.removeListener,delete t.removeAllListeners,delete t.emit,delete t._ev,delete t._internalEv,delete t._internalOn,delete t._internalOnce,delete t._removeInternalListener,delete t._removeAllInternalListeners,t}};e.exports=i},{events:110}],768:[function(t,e,r){\"use strict\";var n=t(\"./is_plain_object.js\"),i=Array.isArray;function a(t,e,r,o){var s,l,c,u,f,h,p=t[0],d=t.length;if(2===d&&i(p)&&i(t[1])&&0===p.length){if(function(t,e){var r,n;for(r=0;r<t.length;r++){if(null!==(n=t[r])&&\"object\"==typeof n)return!1;void 0!==n&&(e[r]=n)}return!0}(t[1],p))return p;p.splice(0,p.length)}for(var g=1;g<d;g++)for(l in s=t[g])c=p[l],u=s[l],o&&i(u)?p[l]=u:e&&u&&(n(u)||(f=i(u)))?(f?(f=!1,h=c&&i(c)?c:[]):h=c&&n(c)?c:{},p[l]=a([h,u],e,r,o)):(\"undefined\"!=typeof u||r)&&(p[l]=u);return p}r.extendFlat=function(){return a(arguments,!1,!1,!1)},r.extendDeep=function(){return a(arguments,!0,!1,!1)},r.extendDeepAll=function(){return a(arguments,!0,!0,!1)},r.extendDeepNoArrays=function(){return a(arguments,!0,!1,!0)}},{\"./is_plain_object.js\":779}],769:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e={},r=[],n=0,i=0;i<t.length;i++){var a=t[i];1!==e[a]&&(e[a]=1,r[n++]=a)}return r}},{}],770:[function(t,e,r){\"use strict\";function n(t){return!0===t.visible}function i(t){var e=t[0].trace;return!0===e.visible&&0!==e._length}e.exports=function(t){for(var e,r=(e=t,Array.isArray(e)&&Array.isArray(e[0])&&e[0][0]&&e[0][0].trace?i:n),a=[],o=0;o<t.length;o++){var s=t[o];r(s)&&a.push(s)}return a}},{}],771:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"country-regex\"),a=t(\"@turf/area\"),o=t(\"@turf/centroid\"),s=t(\"@turf/bbox\"),l=t(\"./identity\"),c=t(\"./loggers\"),u=t(\"./is_plain_object\"),f=t(\"./nested_property\"),h=t(\"./polygon\"),p=Object.keys(i),d={\"ISO-3\":l,\"USA-states\":l,\"country names\":function(t){for(var e=0;e<p.length;e++){var r=p[e];if(new RegExp(i[r]).test(t.trim().toLowerCase()))return r}return c.log(\"Unrecognized country name: \"+t+\".\"),!1}};function g(t){var e=t.geojson,r=window.PlotlyGeoAssets||{},n=\"string\"==typeof e?r[e]:e;return u(n)?n:(c.error(\"Oops ... something went wrong when fetching \"+e),!1)}e.exports={locationToFeature:function(t,e,r){if(!e||\"string\"!=typeof e)return!1;var n,i,a,o=d[t](e);if(o){if(\"USA-states\"===t)for(n=[],a=0;a<r.length;a++)(i=r[a]).properties&&i.properties.gu&&\"USA\"===i.properties.gu&&n.push(i);else n=r;for(a=0;a<n.length;a++)if((i=n[a]).id===o)return i;c.log([\"Location with id\",o,\"does not have a matching topojson feature at this resolution.\"].join(\" \"))}return!1},feature2polygons:function(t){var e,r,n,i,a=t.geometry,o=a.coordinates,s=t.id,l=[];function c(t){for(var e=0;e<t.length-1;e++)if(t[e][0]>0&&t[e+1][0]<0)return e;return null}switch(e=\"RUS\"===s||\"FJI\"===s?function(t){var e;if(null===c(t))e=t;else for(e=new Array(t.length),i=0;i<t.length;i++)e[i]=[t[i][0]<0?t[i][0]+360:t[i][0],t[i][1]];l.push(h.tester(e))}:\"ATA\"===s?function(t){var e=c(t);if(null===e)return l.push(h.tester(t));var r=new Array(t.length+1),n=0;for(i=0;i<t.length;i++)i>e?r[n++]=[t[i][0]+360,t[i][1]]:i===e?(r[n++]=t[i],r[n++]=[t[i][0],-90]):r[n++]=t[i];var a=h.tester(r);a.pts.pop(),l.push(a)}:function(t){l.push(h.tester(t))},a.type){case\"MultiPolygon\":for(r=0;r<o.length;r++)for(n=0;n<o[r].length;n++)e(o[r][n]);break;case\"Polygon\":for(r=0;r<o.length;r++)e(o[r])}return l},getTraceGeojson:g,extractTraceFeature:function(t){var e=t[0].trace,r=g(e);if(!r)return!1;var n,i={},s=[];for(n=0;n<e._length;n++){var l=t[n];(l.loc||0===l.loc)&&(i[l.loc]=l)}function u(t){var r=f(t,e.featureidkey||\"id\").get(),n=i[r];if(n){var l=t.geometry;if(\"Polygon\"===l.type||\"MultiPolygon\"===l.type){var u={type:\"Feature\",id:r,geometry:l,properties:{}};u.properties.ct=function(t){var e,r=t.geometry;if(\"MultiPolygon\"===r.type)for(var n=r.coordinates,i=0,s=0;s<n.length;s++){var l={type:\"Polygon\",coordinates:n[s]},c=a.default(l);c>i&&(i=c,e=l)}else e=r;return o.default(e).geometry.coordinates}(u),n.fIn=t,n.fOut=u,s.push(u)}else c.log([\"Location\",n.loc,\"does not have a valid GeoJSON geometry.\",\"Traces with locationmode *geojson-id* only support\",\"*Polygon* and *MultiPolygon* geometries.\"].join(\" \"))}delete i[r]}switch(r.type){case\"FeatureCollection\":var h=r.features;for(n=0;n<h.length;n++)u(h[n]);break;case\"Feature\":u(r);break;default:return c.warn([\"Invalid GeoJSON type\",(r.type||\"none\")+\".\",\"Traces with locationmode *geojson-id* only support\",\"*FeatureCollection* and *Feature* types.\"].join(\" \")),!1}for(var p in i)c.log([\"Location *\"+p+\"*\",\"does not have a matching feature with id-key\",\"*\"+e.featureidkey+\"*.\"].join(\" \"));return s},fetchTraceGeoData:function(t){var e=window.PlotlyGeoAssets||{},r=[];function i(t){return new Promise((function(r,i){n.json(t,(function(n,a){if(n){delete e[t];var o=404===n.status?'GeoJSON at URL \"'+t+'\" does not exist.':\"Unexpected error while fetching from \"+t;return i(new Error(o))}return e[t]=a,r(a)}))}))}function a(t){return new Promise((function(r,n){var i=0,a=setInterval((function(){return e[t]&&\"pending\"!==e[t]?(clearInterval(a),r(e[t])):i>100?(clearInterval(a),n(\"Unexpected error while fetching from \"+t)):void i++}),50)}))}for(var o=0;o<t.length;o++){var s=t[o][0].trace.geojson;\"string\"==typeof s&&(e[s]?\"pending\"===e[s]&&r.push(a(s)):(e[s]=\"pending\",r.push(i(s))))}return r},computeBbox:function(t){return s.default(t)}}},{\"./identity\":776,\"./is_plain_object\":779,\"./loggers\":782,\"./nested_property\":786,\"./polygon\":790,\"@turf/area\":59,\"@turf/bbox\":60,\"@turf/centroid\":61,\"country-regex\":139,d3:169}],772:[function(t,e,r){\"use strict\";var n=t(\"../constants/numerical\").BADNUM;r.calcTraceToLineCoords=function(t){for(var e=t[0].trace.connectgaps,r=[],i=[],a=0;a<t.length;a++){var o=t[a].lonlat;o[0]!==n?i.push(o):!e&&i.length>0&&(r.push(i),i=[])}return i.length>0&&r.push(i),r},r.makeLine=function(t){return 1===t.length?{type:\"LineString\",coordinates:t[0]}:{type:\"MultiLineString\",coordinates:t}},r.makePolygon=function(t){if(1===t.length)return{type:\"Polygon\",coordinates:t};for(var e=new Array(t.length),r=0;r<t.length;r++)e[r]=[t[r]];return{type:\"MultiPolygon\",coordinates:e}},r.makeBlank=function(){return{type:\"Point\",coordinates:[]}}},{\"../constants/numerical\":753}],773:[function(t,e,r){\"use strict\";var n,i,a,o=t(\"./mod\").mod;function s(t,e,r,n,i,a,o,s){var l=r-t,c=i-t,u=o-i,f=n-e,h=a-e,p=s-a,d=l*p-u*f;if(0===d)return null;var g=(c*p-u*h)/d,m=(c*f-l*h)/d;return m<0||m>1||g<0||g>1?null:{x:t+l*g,y:e+f*g}}function l(t,e,r,n,i){var a=n*t+i*e;if(a<0)return n*n+i*i;if(a>r){var o=n-t,s=i-e;return o*o+s*s}var l=n*e-i*t;return l*l/r}r.segmentsIntersect=s,r.segmentDistance=function(t,e,r,n,i,a,o,c){if(s(t,e,r,n,i,a,o,c))return 0;var u=r-t,f=n-e,h=o-i,p=c-a,d=u*u+f*f,g=h*h+p*p,m=Math.min(l(u,f,d,i-t,a-e),l(u,f,d,o-t,c-e),l(h,p,g,t-i,e-a),l(h,p,g,r-i,n-a));return Math.sqrt(m)},r.getTextLocation=function(t,e,r,s){if(t===i&&s===a||(n={},i=t,a=s),n[r])return n[r];var l=t.getPointAtLength(o(r-s/2,e)),c=t.getPointAtLength(o(r+s/2,e)),u=Math.atan((c.y-l.y)/(c.x-l.x)),f=t.getPointAtLength(o(r,e)),h={x:(4*f.x+l.x+c.x)/6,y:(4*f.y+l.y+c.y)/6,theta:u};return n[r]=h,h},r.clearLocationCache=function(){i=null},r.getVisibleSegment=function(t,e,r){var n,i,a=e.left,o=e.right,s=e.top,l=e.bottom,c=0,u=t.getTotalLength(),f=u;function h(e){var r=t.getPointAtLength(e);0===e?n=r:e===u&&(i=r);var c=r.x<a?a-r.x:r.x>o?r.x-o:0,f=r.y<s?s-r.y:r.y>l?r.y-l:0;return Math.sqrt(c*c+f*f)}for(var p=h(c);p;){if((c+=p+r)>f)return;p=h(c)}for(p=h(f);p;){if(c>(f-=p+r))return;p=h(f)}return{min:c,max:f,len:f-c,total:u,isClosed:0===c&&f===u&&Math.abs(n.x-i.x)<.1&&Math.abs(n.y-i.y)<.1}},r.findPointOnPath=function(t,e,r,n){for(var i,a,o,s=(n=n||{}).pathLength||t.getTotalLength(),l=n.tolerance||.001,c=n.iterationLimit||30,u=t.getPointAtLength(0)[r]>t.getPointAtLength(s)[r]?-1:1,f=0,h=0,p=s;f<c;){if(i=(h+p)/2,o=(a=t.getPointAtLength(i))[r]-e,Math.abs(o)<l)return a;u*o>0?p=i:h=i,f++}return a}},{\"./mod\":785}],774:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"tinycolor2\"),a=t(\"color-normalize\"),o=t(\"../components/colorscale\"),s=t(\"../components/color/attributes\").defaultLine,l=t(\"./array\").isArrayOrTypedArray,c=a(s);function u(t,e){var r=t;return r[3]*=e,r}function f(t){if(n(t))return c;var e=a(t);return e.length?e:c}function h(t){return n(t)?t:1}e.exports={formatColor:function(t,e,r){var n,i,s,p,d,g=t.color,m=l(g),v=l(e),y=o.extractOpts(t),x=[];if(n=void 0!==y.colorscale?o.makeColorScaleFuncFromTrace(t):f,i=m?function(t,e){return void 0===t[e]?c:a(n(t[e]))}:f,s=v?function(t,e){return void 0===t[e]?1:h(t[e])}:h,m||v)for(var b=0;b<r;b++)p=i(g,b),d=s(e,b),x[b]=u(p,d);else x=u(a(g),e);return x},parseColorScale:function(t){var e=o.extractOpts(t),r=e.colorscale;return e.reversescale&&(r=o.flipScale(e.colorscale)),r.map((function(t){var e=t[0],r=i(t[1]).toRgb();return{index:e,rgb:[r.r,r.g,r.b,r.a]}}))}}},{\"../components/color/attributes\":642,\"../components/colorscale\":655,\"./array\":760,\"color-normalize\":125,\"fast-isnumeric\":241,tinycolor2:576}],775:[function(t,e,r){\"use strict\";var n=t(\"./identity\");function i(t){return[t]}e.exports={keyFun:function(t){return t.key},repeat:i,descend:n,wrap:i,unwrap:function(t){return t[0]}}},{\"./identity\":776}],776:[function(t,e,r){\"use strict\";e.exports=function(t){return t}},{}],777:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(!e)return t;var r=1/Math.abs(e),n=r>1?(r*t+r*e)/r:t+e,i=String(n).length;if(i>16){var a=String(e).length;if(i>=String(t).length+a){var o=parseFloat(n).toPrecision(12);-1===o.indexOf(\"e+\")&&(n=+o)}}return n}},{}],778:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"d3-time-format\").utcFormat,a=t(\"fast-isnumeric\"),o=t(\"../constants/numerical\"),s=o.FP_SAFE,l=o.BADNUM,c=e.exports={};c.nestedProperty=t(\"./nested_property\"),c.keyedContainer=t(\"./keyed_container\"),c.relativeAttr=t(\"./relative_attr\"),c.isPlainObject=t(\"./is_plain_object\"),c.toLogRange=t(\"./to_log_range\"),c.relinkPrivateKeys=t(\"./relink_private\");var u=t(\"./array\");c.isTypedArray=u.isTypedArray,c.isArrayOrTypedArray=u.isArrayOrTypedArray,c.isArray1D=u.isArray1D,c.ensureArray=u.ensureArray,c.concat=u.concat,c.maxRowLength=u.maxRowLength,c.minRowLength=u.minRowLength;var f=t(\"./mod\");c.mod=f.mod,c.modHalf=f.modHalf;var h=t(\"./coerce\");c.valObjectMeta=h.valObjectMeta,c.coerce=h.coerce,c.coerce2=h.coerce2,c.coerceFont=h.coerceFont,c.coerceHoverinfo=h.coerceHoverinfo,c.coerceSelectionMarkerOpacity=h.coerceSelectionMarkerOpacity,c.validate=h.validate;var p=t(\"./dates\");c.dateTime2ms=p.dateTime2ms,c.isDateTime=p.isDateTime,c.ms2DateTime=p.ms2DateTime,c.ms2DateTimeLocal=p.ms2DateTimeLocal,c.cleanDate=p.cleanDate,c.isJSDate=p.isJSDate,c.formatDate=p.formatDate,c.incrementMonth=p.incrementMonth,c.dateTick0=p.dateTick0,c.dfltRange=p.dfltRange,c.findExactDates=p.findExactDates,c.MIN_MS=p.MIN_MS,c.MAX_MS=p.MAX_MS;var d=t(\"./search\");c.findBin=d.findBin,c.sorterAsc=d.sorterAsc,c.sorterDes=d.sorterDes,c.distinctVals=d.distinctVals,c.roundUp=d.roundUp,c.sort=d.sort,c.findIndexOfMin=d.findIndexOfMin;var g=t(\"./stats\");c.aggNums=g.aggNums,c.len=g.len,c.mean=g.mean,c.median=g.median,c.midRange=g.midRange,c.variance=g.variance,c.stdev=g.stdev,c.interp=g.interp;var m=t(\"./matrix\");c.init2dArray=m.init2dArray,c.transposeRagged=m.transposeRagged,c.dot=m.dot,c.translationMatrix=m.translationMatrix,c.rotationMatrix=m.rotationMatrix,c.rotationXYMatrix=m.rotationXYMatrix,c.apply3DTransform=m.apply3DTransform,c.apply2DTransform=m.apply2DTransform,c.apply2DTransform2=m.apply2DTransform2,c.convertCssMatrix=m.convertCssMatrix,c.inverseTransformMatrix=m.inverseTransformMatrix;var v=t(\"./angles\");c.deg2rad=v.deg2rad,c.rad2deg=v.rad2deg,c.angleDelta=v.angleDelta,c.angleDist=v.angleDist,c.isFullCircle=v.isFullCircle,c.isAngleInsideSector=v.isAngleInsideSector,c.isPtInsideSector=v.isPtInsideSector,c.pathArc=v.pathArc,c.pathSector=v.pathSector,c.pathAnnulus=v.pathAnnulus;var y=t(\"./anchor_utils\");c.isLeftAnchor=y.isLeftAnchor,c.isCenterAnchor=y.isCenterAnchor,c.isRightAnchor=y.isRightAnchor,c.isTopAnchor=y.isTopAnchor,c.isMiddleAnchor=y.isMiddleAnchor,c.isBottomAnchor=y.isBottomAnchor;var x=t(\"./geometry2d\");c.segmentsIntersect=x.segmentsIntersect,c.segmentDistance=x.segmentDistance,c.getTextLocation=x.getTextLocation,c.clearLocationCache=x.clearLocationCache,c.getVisibleSegment=x.getVisibleSegment,c.findPointOnPath=x.findPointOnPath;var b=t(\"./extend\");c.extendFlat=b.extendFlat,c.extendDeep=b.extendDeep,c.extendDeepAll=b.extendDeepAll,c.extendDeepNoArrays=b.extendDeepNoArrays;var _=t(\"./loggers\");c.log=_.log,c.warn=_.warn,c.error=_.error;var w=t(\"./regex\");c.counterRegex=w.counter;var T=t(\"./throttle\");c.throttle=T.throttle,c.throttleDone=T.done,c.clearThrottle=T.clear;var k=t(\"./dom\");function M(t){var e={};for(var r in t)for(var n=t[r],i=0;i<n.length;i++)e[n[i]]=+r;return e}c.getGraphDiv=k.getGraphDiv,c.isPlotDiv=k.isPlotDiv,c.removeElement=k.removeElement,c.addStyleRule=k.addStyleRule,c.addRelatedStyleRule=k.addRelatedStyleRule,c.deleteRelatedStyleRule=k.deleteRelatedStyleRule,c.getFullTransformMatrix=k.getFullTransformMatrix,c.getElementTransformMatrix=k.getElementTransformMatrix,c.getElementAndAncestors=k.getElementAndAncestors,c.equalDomRects=k.equalDomRects,c.clearResponsive=t(\"./clear_responsive\"),c.preserveDrawingBuffer=t(\"./preserve_drawing_buffer\"),c.makeTraceGroups=t(\"./make_trace_groups\"),c._=t(\"./localize\"),c.notifier=t(\"./notifier\"),c.filterUnique=t(\"./filter_unique\"),c.filterVisible=t(\"./filter_visible\"),c.pushUnique=t(\"./push_unique\"),c.increment=t(\"./increment\"),c.cleanNumber=t(\"./clean_number\"),c.ensureNumber=function(t){return a(t)?(t=Number(t))<-s||t>s?l:a(t)?Number(t):l:l},c.isIndex=function(t,e){return!(void 0!==e&&t>=e)&&(a(t)&&t>=0&&t%1==0)},c.noop=t(\"./noop\"),c.identity=t(\"./identity\"),c.repeat=function(t,e){for(var r=new Array(e),n=0;n<e;n++)r[n]=t;return r},c.swapAttrs=function(t,e,r,n){r||(r=\"x\"),n||(n=\"y\");for(var i=0;i<e.length;i++){var a=e[i],o=c.nestedProperty(t,a.replace(\"?\",r)),s=c.nestedProperty(t,a.replace(\"?\",n)),l=o.get();o.set(s.get()),s.set(l)}},c.raiseToTop=function(t){t.parentNode.appendChild(t)},c.cancelTransition=function(t){return t.transition().duration(0)},c.constrain=function(t,e,r){return e>r?Math.max(r,Math.min(e,t)):Math.max(e,Math.min(r,t))},c.bBoxIntersect=function(t,e,r){return r=r||0,t.left<=e.right+r&&e.left<=t.right+r&&t.top<=e.bottom+r&&e.top<=t.bottom+r},c.simpleMap=function(t,e,r,n,i){for(var a=t.length,o=new Array(a),s=0;s<a;s++)o[s]=e(t[s],r,n,i);return o},c.randstr=function t(e,r,n,i){if(n||(n=16),void 0===r&&(r=24),r<=0)return\"0\";var a,o,s=Math.log(Math.pow(2,r))/Math.log(n),l=\"\";for(a=2;s===1/0;a*=2)s=Math.log(Math.pow(2,r/a))/Math.log(n)*a;var u=s-Math.floor(s);for(a=0;a<Math.floor(s);a++)l=Math.floor(Math.random()*n).toString(n)+l;u&&(o=Math.pow(n,u),l=Math.floor(Math.random()*o).toString(n)+l);var f=parseInt(l,n);return e&&e[l]||f!==1/0&&f>=Math.pow(2,r)?i>10?(c.warn(\"randstr failed uniqueness\"),l):t(e,r,n,(i||0)+1):l},c.OptionControl=function(t,e){t||(t={}),e||(e=\"opt\");var r={optionList:[],_newoption:function(n){n[e]=t,r[n.name]=n,r.optionList.push(n)}};return r[\"_\"+e]=t,r},c.smooth=function(t,e){if((e=Math.round(e)||0)<2)return t;var r,n,i,a,o=t.length,s=2*o,l=2*e-1,c=new Array(l),u=new Array(o);for(r=0;r<l;r++)c[r]=(1-Math.cos(Math.PI*(r+1)/e))/(2*e);for(r=0;r<o;r++){for(a=0,n=0;n<l;n++)(i=r+n+1-e)<-o?i-=s*Math.round(i/s):i>=s&&(i-=s*Math.floor(i/s)),i<0?i=-1-i:i>=o&&(i=s-1-i),a+=t[i]*c[n];u[r]=a}return u},c.syncOrAsync=function(t,e,r){var n;function i(){return c.syncOrAsync(t,e,r)}for(;t.length;)if((n=(0,t.splice(0,1)[0])(e))&&n.then)return n.then(i).then(void 0,c.promiseError);return r&&r(e)},c.stripTrailingSlash=function(t){return\"/\"===t.substr(-1)?t.substr(0,t.length-1):t},c.noneOrAll=function(t,e,r){if(t){var n,i=!1,a=!0;for(n=0;n<r.length;n++)null!=t[r[n]]?i=!0:a=!1;if(i&&!a)for(n=0;n<r.length;n++)t[r[n]]=e[r[n]]}},c.mergeArray=function(t,e,r,n){var i=\"function\"==typeof n;if(c.isArrayOrTypedArray(t))for(var a=Math.min(t.length,e.length),o=0;o<a;o++){var s=t[o];e[o][r]=i?n(s):s}},c.mergeArrayCastPositive=function(t,e,r){return c.mergeArray(t,e,r,(function(t){var e=+t;return isFinite(e)&&e>0?e:0}))},c.fillArray=function(t,e,r,n){if(n=n||c.identity,c.isArrayOrTypedArray(t))for(var i=0;i<e.length;i++)e[i][r]=n(t[i])},c.castOption=function(t,e,r,n){n=n||c.identity;var i=c.nestedProperty(t,r).get();return c.isArrayOrTypedArray(i)?Array.isArray(e)&&c.isArrayOrTypedArray(i[e[0]])?n(i[e[0]][e[1]]):n(i[e]):i},c.extractOption=function(t,e,r,n){if(r in t)return t[r];var i=c.nestedProperty(e,n).get();return Array.isArray(i)?void 0:i},c.tagSelected=function(t,e,r){var n,i,a=e.selectedpoints,o=e._indexToPoints;o&&(n=M(o));for(var s=0;s<a.length;s++){var l=a[s];if(c.isIndex(l)||c.isArrayOrTypedArray(l)&&c.isIndex(l[0])&&c.isIndex(l[1])){var u=n?n[l]:l,f=r?r[u]:u;void 0!==(i=f)&&i<t.length&&(t[f].selected=1)}}},c.selIndices2selPoints=function(t){var e=t.selectedpoints,r=t._indexToPoints;if(r){for(var n=M(r),i=[],a=0;a<e.length;a++){var o=e[a];if(c.isIndex(o)){var s=n[o];c.isIndex(s)&&i.push(s)}}return i}return e},c.getTargetArray=function(t,e){var r=e.target;if(\"string\"==typeof r&&r){var n=c.nestedProperty(t,r).get();return!!Array.isArray(n)&&n}return!!Array.isArray(r)&&r},c.minExtend=function(t,e){var r={};\"object\"!=typeof e&&(e={});var n,i,a,o=Object.keys(t);for(n=0;n<o.length;n++)a=t[i=o[n]],\"_\"!==i.charAt(0)&&\"function\"!=typeof a&&(\"module\"===i?r[i]=a:Array.isArray(a)?r[i]=\"colorscale\"===i?a.slice():a.slice(0,3):c.isTypedArray(a)?r[i]=a.subarray(0,3):r[i]=a&&\"object\"==typeof a?c.minExtend(t[i],e[i]):a);for(o=Object.keys(e),n=0;n<o.length;n++)\"object\"==typeof(a=e[i=o[n]])&&i in r&&\"object\"==typeof r[i]||(r[i]=a);return r},c.titleCase=function(t){return t.charAt(0).toUpperCase()+t.substr(1)},c.containsAny=function(t,e){for(var r=0;r<e.length;r++)if(-1!==t.indexOf(e[r]))return!0;return!1},c.isIE=function(){return\"undefined\"!=typeof window.navigator.msSaveBlob};var A=/MSIE [1-9]\\./;c.isIE9orBelow=function(){return c.isIE()&&A.test(window.navigator.userAgent)};var S=/Version\\/[\\d\\.]+.*Safari/;c.isSafari=function(){return S.test(window.navigator.userAgent)};var E=/iPad|iPhone|iPod/;c.isIOS=function(){return E.test(window.navigator.userAgent)},c.isD3Selection=function(t){return t&&\"function\"==typeof t.classed},c.ensureSingle=function(t,e,r,n){var i=t.select(e+(r?\".\"+r:\"\"));if(i.size())return i;var a=t.append(e);return r&&a.classed(r,!0),n&&a.call(n),a},c.ensureSingleById=function(t,e,r,n){var i=t.select(e+\"#\"+r);if(i.size())return i;var a=t.append(e).attr(\"id\",r);return n&&a.call(n),a},c.objectFromPath=function(t,e){for(var r,n=t.split(\".\"),i=r={},a=0;a<n.length;a++){var o=n[a],s=null,l=n[a].match(/(.*)\\[([0-9]+)\\]/);l?(o=l[1],s=l[2],r=r[o]=[],a===n.length-1?r[s]=e:r[s]={},r=r[s]):(a===n.length-1?r[o]=e:r[o]={},r=r[o])}return i};var C=/^([^\\[\\.]+)\\.(.+)?/,L=/^([^\\.]+)\\[([0-9]+)\\](\\.)?(.+)?/;c.expandObjectPaths=function(t){var e,r,n,i,a,o,s;if(\"object\"==typeof t&&!Array.isArray(t))for(r in t)t.hasOwnProperty(r)&&((e=r.match(C))?(i=t[r],n=e[1],delete t[r],t[n]=c.extendDeepNoArrays(t[n]||{},c.objectFromPath(r,c.expandObjectPaths(i))[n])):(e=r.match(L))?(i=t[r],n=e[1],a=parseInt(e[2]),delete t[r],t[n]=t[n]||[],\".\"===e[3]?(s=e[4],o=t[n][a]=t[n][a]||{},c.extendDeepNoArrays(o,c.objectFromPath(s,c.expandObjectPaths(i)))):t[n][a]=c.expandObjectPaths(i)):t[r]=c.expandObjectPaths(t[r]));return t},c.numSeparate=function(t,e,r){if(r||(r=!1),\"string\"!=typeof e||0===e.length)throw new Error(\"Separator string required for formatting!\");\"number\"==typeof t&&(t=String(t));var n=/(\\d+)(\\d{3})/,i=e.charAt(0),a=e.charAt(1),o=t.split(\".\"),s=o[0],l=o.length>1?i+o[1]:\"\";if(a&&(o.length>1||s.length>4||r))for(;n.test(s);)s=s.replace(n,\"$1\"+a+\"$2\");return s+l},c.TEMPLATE_STRING_REGEX=/%{([^\\s%{}:]*)([:|\\|][^}]*)?}/g;var I=/^\\w*$/;c.templateString=function(t,e){var r={};return t.replace(c.TEMPLATE_STRING_REGEX,(function(t,n){var i;return I.test(n)?i=e[n]:(r[n]=r[n]||c.nestedProperty(e,n).get,i=r[n]()),c.isValidTextValue(i)?i:\"\"}))};var P={max:10,count:0,name:\"hovertemplate\"};c.hovertemplateString=function(){return D.apply(P,arguments)};var z={max:10,count:0,name:\"texttemplate\"};c.texttemplateString=function(){return D.apply(z,arguments)};var O=/^[:|\\|]/;function D(t,e,r){var a=this,o=arguments;e||(e={});var s={};return t.replace(c.TEMPLATE_STRING_REGEX,(function(t,l,u){var f,h,p,d;for(p=3;p<o.length;p++)if(f=o[p]){if(f.hasOwnProperty(l)){h=f[l];break}if(I.test(l)||(h=s[l]||c.nestedProperty(f,l).get())&&(s[l]=h),void 0!==h)break}if(void 0===h&&a)return a.count<a.max&&(c.warn(\"Variable '\"+l+\"' in \"+a.name+\" could not be found!\"),h=t),a.count===a.max&&c.warn(\"Too many \"+a.name+\" warnings - additional warnings will be suppressed\"),a.count++,t;if(u){if(\":\"===u[0]&&(h=(d=r?r.numberFormat:n.format)(u.replace(O,\"\"))(h)),\"|\"===u[0]){d=r?r.timeFormat:i;var g=c.dateTime2ms(h);h=c.formatDate(g,u.replace(O,\"\"),!1,d)}}else e.hasOwnProperty(l+\"Label\")&&(h=e[l+\"Label\"]);return h}))}c.subplotSort=function(t,e){for(var r=Math.min(t.length,e.length)+1,n=0,i=0,a=0;a<r;a++){var o=t.charCodeAt(a)||0,s=e.charCodeAt(a)||0,l=o>=48&&o<=57,c=s>=48&&s<=57;if(l&&(n=10*n+o-48),c&&(i=10*i+s-48),!l||!c){if(n!==i)return n-i;if(o!==s)return o-s}}return i-n};var R=2e9;c.seedPseudoRandom=function(){R=2e9},c.pseudoRandom=function(){var t=R;return R=(69069*R+1)%4294967296,Math.abs(R-t)<429496729?c.pseudoRandom():R/4294967296},c.fillText=function(t,e,r){var n=Array.isArray(r)?function(t){r.push(t)}:function(t){r.text=t},i=c.extractOption(t,e,\"htx\",\"hovertext\");if(c.isValidTextValue(i))return n(i);var a=c.extractOption(t,e,\"tx\",\"text\");return c.isValidTextValue(a)?n(a):void 0},c.isValidTextValue=function(t){return t||0===t},c.formatPercent=function(t,e){e=e||0;for(var r=(Math.round(100*t*Math.pow(10,e))*Math.pow(.1,e)).toFixed(e)+\"%\",n=0;n<e;n++)-1!==r.indexOf(\".\")&&(r=(r=r.replace(\"0%\",\"%\")).replace(\".%\",\"%\"));return r},c.isHidden=function(t){var e=window.getComputedStyle(t).display;return!e||\"none\"===e},c.strTranslate=function(t,e){return t||e?\"translate(\"+t+\",\"+e+\")\":\"\"},c.strRotate=function(t){return t?\"rotate(\"+t+\")\":\"\"},c.strScale=function(t){return 1!==t?\"scale(\"+t+\")\":\"\"},c.getTextTransform=function(t){var e=t.noCenter,r=t.textX,n=t.textY,i=t.targetX,a=t.targetY,o=t.anchorX||0,s=t.anchorY||0,l=t.rotate,u=t.scale;return u?u>1&&(u=1):u=0,c.strTranslate(i-u*(r+o),a-u*(n+s))+c.strScale(u)+(l?\"rotate(\"+l+(e?\"\":\" \"+r+\" \"+n)+\")\":\"\")},c.ensureUniformFontSize=function(t,e){var r=c.extendFlat({},e);return r.size=Math.max(e.size,t._fullLayout.uniformtext.minsize||0),r},c.join2=function(t,e,r){var n=t.length;return n>1?t.slice(0,-1).join(e)+r+t[n-1]:t.join(e)}},{\"../constants/numerical\":753,\"./anchor_utils\":758,\"./angles\":759,\"./array\":760,\"./clean_number\":761,\"./clear_responsive\":763,\"./coerce\":764,\"./dates\":765,\"./dom\":766,\"./extend\":768,\"./filter_unique\":769,\"./filter_visible\":770,\"./geometry2d\":773,\"./identity\":776,\"./increment\":777,\"./is_plain_object\":779,\"./keyed_container\":780,\"./localize\":781,\"./loggers\":782,\"./make_trace_groups\":783,\"./matrix\":784,\"./mod\":785,\"./nested_property\":786,\"./noop\":787,\"./notifier\":788,\"./preserve_drawing_buffer\":792,\"./push_unique\":793,\"./regex\":795,\"./relative_attr\":796,\"./relink_private\":797,\"./search\":798,\"./stats\":801,\"./throttle\":804,\"./to_log_range\":805,d3:169,\"d3-time-format\":166,\"fast-isnumeric\":241}],779:[function(t,e,r){\"use strict\";e.exports=function(t){return window&&window.process&&window.process.versions?\"[object Object]\"===Object.prototype.toString.call(t):\"[object Object]\"===Object.prototype.toString.call(t)&&Object.getPrototypeOf(t)===Object.prototype}},{}],780:[function(t,e,r){\"use strict\";var n=t(\"./nested_property\"),i=/^\\w*$/;e.exports=function(t,e,r,a){var o,s,l;r=r||\"name\",a=a||\"value\";var c={};e&&e.length?(l=n(t,e),s=l.get()):s=t,e=e||\"\";var u={};if(s)for(o=0;o<s.length;o++)u[s[o][r]]=o;var f=i.test(a),h={set:function(t,e){var i=null===e?4:0;if(!s){if(!l||4===i)return;s=[],l.set(s)}var o=u[t];if(void 0===o){if(4===i)return;i|=3,o=s.length,u[t]=o}else e!==(f?s[o][a]:n(s[o],a).get())&&(i|=2);var p=s[o]=s[o]||{};return p[r]=t,f?p[a]=e:n(p,a).set(e),null!==e&&(i&=-5),c[o]=c[o]|i,h},get:function(t){if(s){var e=u[t];return void 0===e?void 0:f?s[e][a]:n(s[e],a).get()}},rename:function(t,e){var n=u[t];return void 0===n||(c[n]=1|c[n],u[e]=n,delete u[t],s[n][r]=e),h},remove:function(t){var e=u[t];if(void 0===e)return h;var i=s[e];if(Object.keys(i).length>2)return c[e]=2|c[e],h.set(t,null);if(f){for(o=e;o<s.length;o++)c[o]=3|c[o];for(o=e;o<s.length;o++)u[s[o][r]]--;s.splice(e,1),delete u[t]}else n(i,a).set(null),c[e]=6|c[e];return h},constructUpdate:function(){for(var t,i,o={},l=Object.keys(c),u=0;u<l.length;u++)i=l[u],t=e+\"[\"+i+\"]\",s[i]?(1&c[i]&&(o[t+\".\"+r]=s[i][r]),2&c[i]&&(o[t+\".\"+a]=f?4&c[i]?null:s[i][a]:4&c[i]?null:n(s[i],a).get())):o[t]=null;return o}};return h}},{\"./nested_property\":786}],781:[function(t,e,r){\"use strict\";var n=t(\"../registry\");e.exports=function(t,e){for(var r=t._context.locale,i=0;i<2;i++){for(var a=t._context.locales,o=0;o<2;o++){var s=(a[r]||{}).dictionary;if(s){var l=s[e];if(l)return l}a=n.localeRegistry}var c=r.split(\"-\")[0];if(c===r)break;r=c}return e}},{\"../registry\":911}],782:[function(t,e,r){\"use strict\";var n=t(\"../plot_api/plot_config\").dfltConfig,i=t(\"./notifier\"),a=e.exports={};function o(t,e){if(t&&t.apply)try{return void t.apply(console,e)}catch(t){}for(var r=0;r<e.length;r++)try{t(e[r])}catch(t){console.log(e[r])}}a.log=function(){var t;if(n.logging>1){var e=[\"LOG:\"];for(t=0;t<arguments.length;t++)e.push(arguments[t]);o(console.trace||console.log,e)}if(n.notifyOnLogging>1){var r=[];for(t=0;t<arguments.length;t++)r.push(arguments[t]);i(r.join(\"<br>\"),\"long\")}},a.warn=function(){var t;if(n.logging>0){var e=[\"WARN:\"];for(t=0;t<arguments.length;t++)e.push(arguments[t]);o(console.trace||console.log,e)}if(n.notifyOnLogging>0){var r=[];for(t=0;t<arguments.length;t++)r.push(arguments[t]);i(r.join(\"<br>\"),\"stick\")}},a.error=function(){var t;if(n.logging>0){var e=[\"ERROR:\"];for(t=0;t<arguments.length;t++)e.push(arguments[t]);o(console.error,e)}if(n.notifyOnLogging>0){var r=[];for(t=0;t<arguments.length;t++)r.push(arguments[t]);i(r.join(\"<br>\"),\"stick\")}}},{\"../plot_api/plot_config\":815,\"./notifier\":788}],783:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports=function(t,e,r){var i=t.selectAll(\"g.\"+r.replace(/\\s/g,\".\")).data(e,(function(t){return t[0].trace.uid}));i.exit().remove(),i.enter().append(\"g\").attr(\"class\",r),i.order();var a=t.classed(\"rangeplot\")?\"nodeRangePlot3\":\"node3\";return i.each((function(t){t[0][a]=n.select(this)})),i}},{d3:169}],784:[function(t,e,r){\"use strict\";var n=t(\"gl-mat4\");r.init2dArray=function(t,e){for(var r=new Array(t),n=0;n<t;n++)r[n]=new Array(e);return r},r.transposeRagged=function(t){var e,r,n=0,i=t.length;for(e=0;e<i;e++)n=Math.max(n,t[e].length);var a=new Array(n);for(e=0;e<n;e++)for(a[e]=new Array(i),r=0;r<i;r++)a[e][r]=t[r][e];return a},r.dot=function(t,e){if(!t.length||!e.length||t.length!==e.length)return null;var n,i,a=t.length;if(t[0].length)for(n=new Array(a),i=0;i<a;i++)n[i]=r.dot(t[i],e);else if(e[0].length){var o=r.transposeRagged(e);for(n=new Array(o.length),i=0;i<o.length;i++)n[i]=r.dot(t,o[i])}else for(n=0,i=0;i<a;i++)n+=t[i]*e[i];return n},r.translationMatrix=function(t,e){return[[1,0,t],[0,1,e],[0,0,1]]},r.rotationMatrix=function(t){var e=t*Math.PI/180;return[[Math.cos(e),-Math.sin(e),0],[Math.sin(e),Math.cos(e),0],[0,0,1]]},r.rotationXYMatrix=function(t,e,n){return r.dot(r.dot(r.translationMatrix(e,n),r.rotationMatrix(t)),r.translationMatrix(-e,-n))},r.apply3DTransform=function(t){return function(){var e=arguments,n=1===arguments.length?e[0]:[e[0],e[1],e[2]||0];return r.dot(t,[n[0],n[1],n[2],1]).slice(0,3)}},r.apply2DTransform=function(t){return function(){var e=arguments;3===e.length&&(e=e[0]);var n=1===arguments.length?e[0]:[e[0],e[1]];return r.dot(t,[n[0],n[1],1]).slice(0,2)}},r.apply2DTransform2=function(t){var e=r.apply2DTransform(t);return function(t){return e(t.slice(0,2)).concat(e(t.slice(2,4)))}},r.convertCssMatrix=function(t){if(t){var e=t.length;if(16===e)return t;if(6===e)return[t[0],t[1],0,0,t[2],t[3],0,0,0,0,1,0,t[4],t[5],0,1]}return[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},r.inverseTransformMatrix=function(t){var e=[];return n.invert(e,t),[[e[0],e[1],e[2],e[3]],[e[4],e[5],e[6],e[7]],[e[8],e[9],e[10],e[11]],[e[12],e[13],e[14],e[15]]]}},{\"gl-mat4\":292}],785:[function(t,e,r){\"use strict\";e.exports={mod:function(t,e){var r=t%e;return r<0?r+e:r},modHalf:function(t,e){return Math.abs(t)>e/2?t-Math.round(t/e)*e:t}}},{}],786:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"./array\").isArrayOrTypedArray;function a(t,e){return function(){var r,n,o,s,l,c=t;for(s=0;s<e.length-1;s++){if(-1===(r=e[s])){for(n=!0,o=[],l=0;l<c.length;l++)o[l]=a(c[l],e.slice(s+1))(),o[l]!==o[0]&&(n=!1);return n?o[0]:o}if(\"number\"==typeof r&&!i(c))return;if(\"object\"!=typeof(c=c[r])||null===c)return}if(\"object\"==typeof c&&null!==c&&null!==(o=c[e[s]]))return o}}e.exports=function(t,e){if(n(e))e=String(e);else if(\"string\"!=typeof e||\"[-1]\"===e.substr(e.length-4))throw\"bad property string\";for(var r,i,o,s=0,c=e.split(\".\");s<c.length;){if(r=String(c[s]).match(/^([^\\[\\]]*)((\\[\\-?[0-9]*\\])+)$/)){if(r[1])c[s]=r[1];else{if(0!==s)throw\"bad property string\";c.splice(0,1)}for(i=r[2].substr(1,r[2].length-2).split(\"][\"),o=0;o<i.length;o++)s++,c.splice(s,0,Number(i[o]))}s++}return\"object\"!=typeof t?function(t,e,r){return{set:function(){throw\"bad container\"},get:function(){},astr:e,parts:r,obj:t}}(t,e,c):{set:l(t,c,e),get:a(t,c),astr:e,parts:c,obj:t}};var o=/(^|\\.)args\\[/;function s(t,e){return void 0===t||null===t&&!e.match(o)}function l(t,e,r){return function(n){var a,o,l=t,h=\"\",p=[[t,h]],d=s(n,r);for(o=0;o<e.length-1;o++){if(\"number\"==typeof(a=e[o])&&!i(l))throw\"array index but container is not an array\";if(-1===a){if(d=!u(l,e.slice(o+1),n,r))break;return}if(!f(l,a,e[o+1],d))break;if(\"object\"!=typeof(l=l[a])||null===l)throw\"container is not an object\";h=c(h,a),p.push([l,h])}if(d){if(o===e.length-1&&(delete l[e[o]],Array.isArray(l)&&+e[o]==l.length-1))for(;l.length&&void 0===l[l.length-1];)l.pop()}else l[e[o]]=n}}function c(t,e){var r=e;return n(e)?r=\"[\"+e+\"]\":t&&(r=\".\"+e),t+r}function u(t,e,r,n){var a,o=i(r),c=!0,u=r,h=n.replace(\"-1\",0),p=!o&&s(r,h),d=e[0];for(a=0;a<t.length;a++)h=n.replace(\"-1\",a),o&&(p=s(u=r[a%r.length],h)),p&&(c=!1),f(t,a,d,p)&&l(t[a],e,n.replace(\"-1\",a))(u);return c}function f(t,e,r,n){if(void 0===t[e]){if(n)return!1;t[e]=\"number\"==typeof r?[]:{}}return!0}},{\"./array\":760,\"fast-isnumeric\":241}],787:[function(t,e,r){\"use strict\";e.exports=function(){}},{}],788:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"fast-isnumeric\"),a=[];e.exports=function(t,e){if(-1===a.indexOf(t)){a.push(t);var r=1e3;i(e)?r=e:\"long\"===e&&(r=3e3);var o=n.select(\"body\").selectAll(\".plotly-notifier\").data([0]);o.enter().append(\"div\").classed(\"plotly-notifier\",!0),o.selectAll(\".notifier-note\").data(a).enter().append(\"div\").classed(\"notifier-note\",!0).style(\"opacity\",0).each((function(t){var i=n.select(this);i.append(\"button\").classed(\"notifier-close\",!0).html(\"&times;\").on(\"click\",(function(){i.transition().call(s)}));for(var a=i.append(\"p\"),o=t.split(/<br\\s*\\/?>/g),l=0;l<o.length;l++)l&&a.append(\"br\"),a.append(\"span\").text(o[l]);\"stick\"===e?i.transition().duration(350).style(\"opacity\",1):i.transition().duration(700).style(\"opacity\",1).transition().delay(r).call(s)}))}function s(t){t.duration(700).style(\"opacity\",0).each(\"end\",(function(t){var e=a.indexOf(t);-1!==e&&a.splice(e,1),n.select(this).remove()}))}}},{d3:169,\"fast-isnumeric\":241}],789:[function(t,e,r){\"use strict\";var n=t(\"./setcursor\"),i=\"data-savedcursor\";e.exports=function(t,e){var r=t.attr(i);if(e){if(!r){for(var a=(t.attr(\"class\")||\"\").split(\" \"),o=0;o<a.length;o++){var s=a[o];0===s.indexOf(\"cursor-\")&&t.attr(i,s.substr(7)).classed(s,!1)}t.attr(i)||t.attr(i,\"!!\")}n(t,e)}else r&&(t.attr(i,null),\"!!\"===r?n(t):n(t,r))}},{\"./setcursor\":799}],790:[function(t,e,r){\"use strict\";var n=t(\"./matrix\").dot,i=t(\"../constants/numerical\").BADNUM,a=e.exports={};a.tester=function(t){var e,r=t.slice(),n=r[0][0],a=n,o=r[0][1],s=o;for(r.push(r[0]),e=1;e<r.length;e++)n=Math.min(n,r[e][0]),a=Math.max(a,r[e][0]),o=Math.min(o,r[e][1]),s=Math.max(s,r[e][1]);var l,c=!1;5===r.length&&(r[0][0]===r[1][0]?r[2][0]===r[3][0]&&r[0][1]===r[3][1]&&r[1][1]===r[2][1]&&(c=!0,l=function(t){return t[0]===r[0][0]}):r[0][1]===r[1][1]&&r[2][1]===r[3][1]&&r[0][0]===r[3][0]&&r[1][0]===r[2][0]&&(c=!0,l=function(t){return t[1]===r[0][1]}));var u=!0,f=r[0];for(e=1;e<r.length;e++)if(f[0]!==r[e][0]||f[1]!==r[e][1]){u=!1;break}return{xmin:n,xmax:a,ymin:o,ymax:s,pts:r,contains:c?function(t,e){var r=t[0],c=t[1];return!(r===i||r<n||r>a||c===i||c<o||c>s)&&(!e||!l(t))}:function(t,e){var l=t[0],c=t[1];if(l===i||l<n||l>a||c===i||c<o||c>s)return!1;var u,f,h,p,d,g=r.length,m=r[0][0],v=r[0][1],y=0;for(u=1;u<g;u++)if(f=m,h=v,m=r[u][0],v=r[u][1],!(l<(p=Math.min(f,m))||l>Math.max(f,m)||c>Math.max(h,v)))if(c<Math.min(h,v))l!==p&&y++;else{if(c===(d=m===f?c:h+(l-f)*(v-h)/(m-f)))return 1!==u||!e;c<=d&&l!==p&&y++}return y%2==1},isRect:c,degenerate:u}},a.isSegmentBent=function(t,e,r,i){var a,o,s,l=t[e],c=[t[r][0]-l[0],t[r][1]-l[1]],u=n(c,c),f=Math.sqrt(u),h=[-c[1]/f,c[0]/f];for(a=e+1;a<r;a++)if(o=[t[a][0]-l[0],t[a][1]-l[1]],(s=n(o,c))<0||s>u||Math.abs(n(o,h))>i)return!0;return!1},a.filter=function(t,e){var r=[t[0]],n=0,i=0;function o(o){t.push(o);var s=r.length,l=n;r.splice(i+1);for(var c=l+1;c<t.length;c++)(c===t.length-1||a.isSegmentBent(t,l,c+1,e))&&(r.push(t[c]),r.length<s-2&&(n=c,i=r.length-1),l=c)}t.length>1&&o(t.pop());return{addPt:o,raw:t,filtered:r}}},{\"../constants/numerical\":753,\"./matrix\":784}],791:[function(t,e,r){(function(r){(function(){\"use strict\";var n=t(\"./show_no_webgl_msg\"),i=t(\"regl\");e.exports=function(t,e){var a=t._fullLayout,o=!0;return a._glcanvas.each((function(n){if(!n.regl&&(!n.pick||a._has(\"parcoords\"))){try{n.regl=i({canvas:this,attributes:{antialias:!n.pick,preserveDrawingBuffer:!0},pixelRatio:t._context.plotGlPixelRatio||r.devicePixelRatio,extensions:e||[]})}catch(t){o=!1}n.regl||(o=!1),o&&this.addEventListener(\"webglcontextlost\",(function(e){t&&t.emit&&t.emit(\"plotly_webglcontextlost\",{event:e,layer:n.key})}),!1)}})),o||n({container:a._glcontainer.node()}),o}}).call(this)}).call(this,\"undefined\"!=typeof global?global:\"undefined\"!=typeof self?self:\"undefined\"!=typeof window?window:{})},{\"./show_no_webgl_msg\":800,regl:540}],792:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"is-mobile\");e.exports=function(t){var e;if(\"string\"!=typeof(e=t&&t.hasOwnProperty(\"userAgent\")?t.userAgent:function(){var t;\"undefined\"!=typeof navigator&&(t=navigator.userAgent);t&&t.headers&&\"string\"==typeof t.headers[\"user-agent\"]&&(t=t.headers[\"user-agent\"]);return t}()))return!0;var r=i({ua:{headers:{\"user-agent\":e}},tablet:!0,featureDetect:!1});if(!r)for(var a=e.split(\" \"),o=1;o<a.length;o++){if(-1!==a[o].indexOf(\"Safari\"))for(var s=o-1;s>-1;s--){var l=a[s];if(\"Version/\"===l.substr(0,8)){var c=l.substr(8).split(\".\")[0];if(n(c)&&(c=+c),c>=13)return!0}}}return r}},{\"fast-isnumeric\":241,\"is-mobile\":467}],793:[function(t,e,r){\"use strict\";e.exports=function(t,e){if(e instanceof RegExp){for(var r=e.toString(),n=0;n<t.length;n++)if(t[n]instanceof RegExp&&t[n].toString()===r)return t;t.push(e)}else!e&&0!==e||-1!==t.indexOf(e)||t.push(e);return t}},{}],794:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"../plot_api/plot_config\").dfltConfig;var a={add:function(t,e,r,n,a){var o,s;t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},s=t.undoQueue.index,t.autoplay?t.undoQueue.inSequence||(t.autoplay=!1):(!t.undoQueue.sequence||t.undoQueue.beginSequence?(o={undo:{calls:[],args:[]},redo:{calls:[],args:[]}},t.undoQueue.queue.splice(s,t.undoQueue.queue.length-s,o),t.undoQueue.index+=1):o=t.undoQueue.queue[s-1],t.undoQueue.beginSequence=!1,o&&(o.undo.calls.unshift(e),o.undo.args.unshift(r),o.redo.calls.push(n),o.redo.args.push(a)),t.undoQueue.queue.length>i.queueLength&&(t.undoQueue.queue.shift(),t.undoQueue.index--))},startSequence:function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!0,t.undoQueue.beginSequence=!0},stopSequence:function(t){t.undoQueue=t.undoQueue||{index:0,queue:[],sequence:!1},t.undoQueue.sequence=!1,t.undoQueue.beginSequence=!1},undo:function(t){var e,r;if(t.framework&&t.framework.isPolar)t.framework.undo();else if(!(void 0===t.undoQueue||isNaN(t.undoQueue.index)||t.undoQueue.index<=0)){for(t.undoQueue.index--,e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;r<e.undo.calls.length;r++)a.plotDo(t,e.undo.calls[r],e.undo.args[r]);t.undoQueue.inSequence=!1,t.autoplay=!1}},redo:function(t){var e,r;if(t.framework&&t.framework.isPolar)t.framework.redo();else if(!(void 0===t.undoQueue||isNaN(t.undoQueue.index)||t.undoQueue.index>=t.undoQueue.queue.length)){for(e=t.undoQueue.queue[t.undoQueue.index],t.undoQueue.inSequence=!0,r=0;r<e.redo.calls.length;r++)a.plotDo(t,e.redo.calls[r],e.redo.args[r]);t.undoQueue.inSequence=!1,t.autoplay=!1,t.undoQueue.index++}}};a.plotDo=function(t,e,r){t.autoplay=!0,r=function(t,e){for(var r,i=[],a=0;a<e.length;a++)r=e[a],i[a]=r===t?r:\"object\"==typeof r?Array.isArray(r)?n.extendDeep([],r):n.extendDeepAll({},r):r;return i}(t,r),e.apply(null,r)},e.exports=a},{\"../lib\":778,\"../plot_api/plot_config\":815}],795:[function(t,e,r){\"use strict\";r.counter=function(t,e,r,n){var i=(e||\"\")+(r?\"\":\"$\"),a=!1===n?\"\":\"^\";return\"xy\"===t?new RegExp(a+\"x([2-9]|[1-9][0-9]+)?y([2-9]|[1-9][0-9]+)?\"+i):new RegExp(a+t+\"([2-9]|[1-9][0-9]+)?\"+i)}},{}],796:[function(t,e,r){\"use strict\";var n=/^(.*)(\\.[^\\.\\[\\]]+|\\[\\d\\])$/,i=/^[^\\.\\[\\]]+$/;e.exports=function(t,e){for(;e;){var r=t.match(n);if(r)t=r[1];else{if(!t.match(i))throw new Error(\"bad relativeAttr call:\"+[t,e]);t=\"\"}if(\"^\"!==e.charAt(0))break;e=e.slice(1)}return t&&\"[\"!==e.charAt(0)?t+\".\"+e:t+e}},{}],797:[function(t,e,r){\"use strict\";var n=t(\"./array\").isArrayOrTypedArray,i=t(\"./is_plain_object\");e.exports=function t(e,r){for(var a in r){var o=r[a],s=e[a];if(s!==o)if(\"_\"===a.charAt(0)||\"function\"==typeof o){if(a in e)continue;e[a]=o}else if(n(o)&&n(s)&&i(o[0])){if(\"customdata\"===a||\"ids\"===a)continue;for(var l=Math.min(o.length,s.length),c=0;c<l;c++)s[c]!==o[c]&&i(o[c])&&i(s[c])&&t(s[c],o[c])}else i(o)&&i(s)&&(t(s,o),Object.keys(s).length||delete e[a])}}},{\"./array\":760,\"./is_plain_object\":779}],798:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"./loggers\"),a=t(\"./identity\"),o=t(\"../constants/numerical\").BADNUM;function s(t,e){return t<e}function l(t,e){return t<=e}function c(t,e){return t>e}function u(t,e){return t>=e}r.findBin=function(t,e,r){if(n(e.start))return r?Math.ceil((t-e.start)/e.size-1e-9)-1:Math.floor((t-e.start)/e.size+1e-9);var a,o,f=0,h=e.length,p=0,d=h>1?(e[h-1]-e[0])/(h-1):1;for(o=d>=0?r?s:l:r?u:c,t+=1e-9*d*(r?-1:1)*(d>=0?1:-1);f<h&&p++<100;)o(e[a=Math.floor((f+h)/2)],t)?f=a+1:h=a;return p>90&&i.log(\"Long binary search...\"),f-1},r.sorterAsc=function(t,e){return t-e},r.sorterDes=function(t,e){return e-t},r.distinctVals=function(t,e){var n,i=(e||{}).unitMinDiff,a=t.slice();for(a.sort(r.sorterAsc),n=a.length-1;n>-1&&a[n]===o;n--);var s=1;i||(s=a[n]-a[0]||1);for(var l,c=s/(n||1)/1e4,u=[],f=0;f<=n;f++){var h=a[f],p=h-l;void 0===l?(u.push(h),l=h):p>c&&(s=Math.min(s,p),u.push(h),l=h)}return{vals:u,minDiff:s}},r.roundUp=function(t,e,r){for(var n,i=0,a=e.length-1,o=0,s=r?0:1,l=r?1:0,c=r?Math.ceil:Math.floor;i<a&&o++<100;)e[n=c((i+a)/2)]<=t?i=n+s:a=n-l;return e[i]},r.sort=function(t,e){for(var r=0,n=0,i=1;i<t.length;i++){var a=e(t[i],t[i-1]);if(a<0?r=1:a>0&&(n=1),r&&n)return t.sort(e)}return n?t:t.reverse()},r.findIndexOfMin=function(t,e){e=e||a;for(var r,n=1/0,i=0;i<t.length;i++){var o=e(t[i]);o<n&&(n=o,r=i)}return r}},{\"../constants/numerical\":753,\"./identity\":776,\"./loggers\":782,\"fast-isnumeric\":241}],799:[function(t,e,r){\"use strict\";e.exports=function(t,e){(t.attr(\"class\")||\"\").split(\" \").forEach((function(e){0===e.indexOf(\"cursor-\")&&t.classed(e,!1)})),e&&t.classed(\"cursor-\"+e,!0)}},{}],800:[function(t,e,r){\"use strict\";var n=t(\"../components/color\"),i=function(){};e.exports=function(t){for(var e in t)\"function\"==typeof t[e]&&(t[e]=i);t.destroy=function(){t.container.parentNode.removeChild(t.container)};var r=document.createElement(\"div\");r.className=\"no-webgl\",r.style.cursor=\"pointer\",r.style.fontSize=\"24px\",r.style.color=n.defaults[0],r.style.position=\"absolute\",r.style.left=r.style.top=\"0px\",r.style.width=r.style.height=\"100%\",r.style[\"background-color\"]=n.lightLine,r.style[\"z-index\"]=30;var a=document.createElement(\"p\");return a.textContent=\"WebGL is not supported by your browser - visit https://get.webgl.org for more info\",a.style.position=\"relative\",a.style.top=\"50%\",a.style.left=\"50%\",a.style.height=\"30%\",a.style.width=\"50%\",a.style.margin=\"-15% 0 0 -25%\",r.appendChild(a),t.container.appendChild(r),t.container.style.background=\"#FFFFFF\",t.container.onclick=function(){window.open(\"https://get.webgl.org\")},!1}},{\"../components/color\":643}],801:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"./array\").isArrayOrTypedArray;r.aggNums=function(t,e,a,o){var s,l;if((!o||o>a.length)&&(o=a.length),n(e)||(e=!1),i(a[0])){for(l=new Array(o),s=0;s<o;s++)l[s]=r.aggNums(t,e,a[s]);a=l}for(s=0;s<o;s++)n(e)?n(a[s])&&(e=t(+e,+a[s])):e=a[s];return e},r.len=function(t){return r.aggNums((function(t){return t+1}),0,t)},r.mean=function(t,e){return e||(e=r.len(t)),r.aggNums((function(t,e){return t+e}),0,t)/e},r.midRange=function(t){if(void 0!==t&&0!==t.length)return(r.aggNums(Math.max,null,t)+r.aggNums(Math.min,null,t))/2},r.variance=function(t,e,i){return e||(e=r.len(t)),n(i)||(i=r.mean(t,e)),r.aggNums((function(t,e){return t+Math.pow(e-i,2)}),0,t)/e},r.stdev=function(t,e,n){return Math.sqrt(r.variance(t,e,n))},r.median=function(t){var e=t.slice().sort();return r.interp(e,.5)},r.interp=function(t,e){if(!n(e))throw\"n should be a finite number\";if((e=e*t.length-.5)<0)return t[0];if(e>t.length-1)return t[t.length-1];var r=e%1;return r*t[Math.ceil(e)]+(1-r)*t[Math.floor(e)]}},{\"./array\":760,\"fast-isnumeric\":241}],802:[function(t,e,r){\"use strict\";var n=t(\"color-normalize\");e.exports=function(t){return t?n(t):[0,0,0,1]}},{\"color-normalize\":125}],803:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../lib\"),a=i.strTranslate,o=t(\"../constants/xmlns_namespaces\"),s=t(\"../constants/alignment\").LINE_SPACING;function l(t,e){return t.node().getBoundingClientRect()[e]}var c=/([^$]*)([$]+[^$]*[$]+)([^$]*)/;r.convertToTspans=function(t,e,A){var S=t.text(),C=!t.attr(\"data-notex\")&&\"undefined\"!=typeof MathJax&&S.match(c),L=n.select(t.node().parentNode);if(!L.empty()){var I=t.attr(\"class\")?t.attr(\"class\").split(\" \")[0]:\"text\";return I+=\"-math\",L.selectAll(\"svg.\"+I).remove(),L.selectAll(\"g.\"+I+\"-group\").remove(),t.style(\"display\",null).attr({\"data-unformatted\":S,\"data-math\":\"N\"}),C?(e&&e._promises||[]).push(new Promise((function(e){t.style(\"display\",\"none\");var r=parseInt(t.node().style.fontSize,10),o={fontSize:r};!function(t,e,r){var a,o,s,l;MathJax.Hub.Queue((function(){return o=i.extendDeepAll({},MathJax.Hub.config),s=MathJax.Hub.processSectionDelay,void 0!==MathJax.Hub.processSectionDelay&&(MathJax.Hub.processSectionDelay=0),MathJax.Hub.Config({messageStyle:\"none\",tex2jax:{inlineMath:[[\"$\",\"$\"],[\"\\\\(\",\"\\\\)\"]]},displayAlign:\"left\"})}),(function(){if(\"SVG\"!==(a=MathJax.Hub.config.menuSettings.renderer))return MathJax.Hub.setRenderer(\"SVG\")}),(function(){var r=\"math-output-\"+i.randstr({},64);return l=n.select(\"body\").append(\"div\").attr({id:r}).style({visibility:\"hidden\",position:\"absolute\"}).style({\"font-size\":e.fontSize+\"px\"}).text(t.replace(u,\"\\\\lt \").replace(f,\"\\\\gt \")),MathJax.Hub.Typeset(l.node())}),(function(){var e=n.select(\"body\").select(\"#MathJax_SVG_glyphs\");if(l.select(\".MathJax_SVG\").empty()||!l.select(\"svg\").node())i.log(\"There was an error in the tex syntax.\",t),r();else{var o=l.select(\"svg\").node().getBoundingClientRect();r(l.select(\".MathJax_SVG\"),e,o)}if(l.remove(),\"SVG\"!==a)return MathJax.Hub.setRenderer(a)}),(function(){return void 0!==s&&(MathJax.Hub.processSectionDelay=s),MathJax.Hub.Config(o)}))}(C[2],o,(function(n,i,o){L.selectAll(\"svg.\"+I).remove(),L.selectAll(\"g.\"+I+\"-group\").remove();var s=n&&n.select(\"svg\");if(!s||!s.node())return P(),void e();var c=L.append(\"g\").classed(I+\"-group\",!0).attr({\"pointer-events\":\"none\",\"data-unformatted\":S,\"data-math\":\"Y\"});c.node().appendChild(s.node()),i&&i.node()&&s.node().insertBefore(i.node().cloneNode(!0),s.node().firstChild),s.attr({class:I,height:o.height,preserveAspectRatio:\"xMinYMin meet\"}).style({overflow:\"visible\",\"pointer-events\":\"none\"});var u=t.node().style.fill||\"black\",f=s.select(\"g\");f.attr({fill:u,stroke:u});var h=l(f,\"width\"),p=l(f,\"height\"),d=+t.attr(\"x\")-h*{start:0,middle:.5,end:1}[t.attr(\"text-anchor\")||\"start\"],g=-(r||l(t,\"height\"))/4;\"y\"===I[0]?(c.attr({transform:\"rotate(\"+[-90,+t.attr(\"x\"),+t.attr(\"y\")]+\")\"+a(-h/2,g-p/2)}),s.attr({x:+t.attr(\"x\"),y:+t.attr(\"y\")})):\"l\"===I[0]?s.attr({x:t.attr(\"x\"),y:g-p/2}):\"a\"===I[0]&&0!==I.indexOf(\"atitle\")?s.attr({x:0,y:g}):s.attr({x:d,y:+t.attr(\"y\")+g-p/2}),A&&A.call(t,c),e(c)}))}))):P(),t}function P(){L.empty()||(I=t.attr(\"class\")+\"-math\",L.select(\"svg.\"+I).remove()),t.text(\"\").style(\"white-space\",\"pre\"),function(t,e){e=e.replace(m,\" \");var r,a=!1,l=[],c=-1;function u(){c++;var e=document.createElementNS(o.svg,\"tspan\");n.select(e).attr({class:\"line\",dy:c*s+\"em\"}),t.appendChild(e),r=e;var i=l;if(l=[{node:e}],i.length>1)for(var a=1;a<i.length;a++)f(i[a])}function f(t){var e,i=t.type,a={};if(\"a\"===i){e=\"a\";var s=t.target,c=t.href,u=t.popup;c&&(a={\"xlink:xlink:show\":\"_blank\"===s||\"_\"!==s.charAt(0)?\"new\":\"replace\",target:s,\"xlink:xlink:href\":c},u&&(a.onclick='window.open(this.href.baseVal,this.target.baseVal,\"'+u+'\");return false;'))}else e=\"tspan\";t.style&&(a.style=t.style);var f=document.createElementNS(o.svg,e);if(\"sup\"===i||\"sub\"===i){A(r,\"\\u200b\"),r.appendChild(f);var h=document.createElementNS(o.svg,\"tspan\");A(h,\"\\u200b\"),n.select(h).attr(\"dy\",d[i]),a.dy=p[i],r.appendChild(f),r.appendChild(h)}else r.appendChild(f);n.select(f).attr(a),r=t.node=f,l.push(t)}function A(t,e){t.appendChild(document.createTextNode(e))}function S(t){if(1!==l.length){var n=l.pop();t!==n.type&&i.log(\"Start tag <\"+n.type+\"> doesnt match end tag <\"+t+\">. Pretending it did match.\",e),r=l[l.length-1].node}else i.log(\"Ignoring unexpected end tag </\"+t+\">.\",e)}x.test(e)?u():(r=t,l=[{node:t}]);for(var C=e.split(v),L=0;L<C.length;L++){var I=C[L],P=I.match(y),z=P&&P[2].toLowerCase(),O=h[z];if(\"br\"===z)u();else if(void 0===O)A(r,E(I));else if(P[1])S(z);else{var D=P[4],R={type:z},F=k(D,b);if(F?(F=F.replace(M,\"$1 fill:\"),O&&(F+=\";\"+O)):O&&(F=O),F&&(R.style=F),\"a\"===z){a=!0;var B=k(D,_);if(B){var N=document.createElement(\"a\");N.href=B,-1!==g.indexOf(N.protocol)&&(R.href=encodeURI(decodeURI(B)),R.target=k(D,w)||\"_blank\",R.popup=k(D,T))}}f(R)}}return a}(t.node(),S)&&t.style(\"pointer-events\",\"all\"),r.positionText(t),A&&A.call(t)}};var u=/(<|&lt;|&#60;)/g,f=/(>|&gt;|&#62;)/g;var h={sup:\"font-size:70%\",sub:\"font-size:70%\",b:\"font-weight:bold\",i:\"font-style:italic\",a:\"cursor:pointer\",span:\"\",em:\"font-style:italic;font-weight:bold\"},p={sub:\"0.3em\",sup:\"-0.6em\"},d={sub:\"-0.21em\",sup:\"0.42em\"},g=[\"http:\",\"https:\",\"mailto:\",\"\",void 0,\":\"],m=r.NEWLINES=/(\\r\\n?|\\n)/g,v=/(<[^<>]*>)/,y=/<(\\/?)([^ >]*)(\\s+(.*))?>/i,x=/<br(\\s+.*)?>/i;r.BR_TAG_ALL=/<br(\\s+.*)?>/gi;var b=/(^|[\\s\"'])style\\s*=\\s*(\"([^\"]*);?\"|'([^']*);?')/i,_=/(^|[\\s\"'])href\\s*=\\s*(\"([^\"]*)\"|'([^']*)')/i,w=/(^|[\\s\"'])target\\s*=\\s*(\"([^\"\\s]*)\"|'([^'\\s]*)')/i,T=/(^|[\\s\"'])popup\\s*=\\s*(\"([\\w=,]*)\"|'([\\w=,]*)')/i;function k(t,e){if(!t)return null;var r=t.match(e),n=r&&(r[3]||r[4]);return n&&E(n)}var M=/(^|;)\\s*color:/;r.plainText=function(t,e){for(var r=void 0!==(e=e||{}).len&&-1!==e.len?e.len:1/0,n=void 0!==e.allowedTags?e.allowedTags:[\"br\"],i=\"...\".length,a=t.split(v),o=[],s=\"\",l=0,c=0;c<a.length;c++){var u=a[c],f=u.match(y),h=f&&f[2].toLowerCase();if(h)-1!==n.indexOf(h)&&(o.push(u),s=h);else{var p=u.length;if(l+p<r)o.push(u),l+=p;else if(l<r){var d=r-l;s&&(\"br\"!==s||d<=i||p<=i)&&o.pop(),r>i?o.push(u.substr(0,d-i)+\"...\"):o.push(u.substr(0,d));break}s=\"\"}}return o.join(\"\")};var A={mu:\"\\u03bc\",amp:\"&\",lt:\"<\",gt:\">\",nbsp:\"\\xa0\",times:\"\\xd7\",plusmn:\"\\xb1\",deg:\"\\xb0\"},S=/&(#\\d+|#x[\\da-fA-F]+|[a-z]+);/g;function E(t){return t.replace(S,(function(t,e){return(\"#\"===e.charAt(0)?function(t){if(t>1114111)return;var e=String.fromCodePoint;if(e)return e(t);var r=String.fromCharCode;return t<=65535?r(t):r(55232+(t>>10),t%1024+56320)}(\"x\"===e.charAt(1)?parseInt(e.substr(2),16):parseInt(e.substr(1),10)):A[e])||t}))}function C(t,e,r){var n,a,o,s=r.horizontalAlign,l=r.verticalAlign||\"top\",c=t.node().getBoundingClientRect(),u=e.node().getBoundingClientRect();return a=\"bottom\"===l?function(){return c.bottom-n.height}:\"middle\"===l?function(){return c.top+(c.height-n.height)/2}:function(){return c.top},o=\"right\"===s?function(){return c.right-n.width}:\"center\"===s?function(){return c.left+(c.width-n.width)/2}:function(){return c.left},function(){n=this.node().getBoundingClientRect();var t=o()-u.left,e=a()-u.top,s=r.gd||{};if(r.gd){s._fullLayout._calcInverseTransform(s);var l=i.apply3DTransform(s._fullLayout._invTransform)(t,e);t=l[0],e=l[1]}return this.style({top:e+\"px\",left:t+\"px\",\"z-index\":1e3}),this}}r.convertEntities=E,r.sanitizeHTML=function(t){t=t.replace(m,\" \");for(var e=document.createElement(\"p\"),r=e,i=[],a=t.split(v),o=0;o<a.length;o++){var s=a[o],l=s.match(y),c=l&&l[2].toLowerCase();if(c in h)if(l[1])i.length&&(r=i.pop());else{var u=l[4],f=k(u,b),p=f?{style:f}:{};if(\"a\"===c){var d=k(u,_);if(d){var x=document.createElement(\"a\");if(x.href=d,-1!==g.indexOf(x.protocol)){p.href=encodeURI(decodeURI(d));var T=k(u,w);T&&(p.target=T)}}}var M=document.createElement(c);r.appendChild(M),n.select(M).attr(p),r=M,i.push(M)}else r.appendChild(document.createTextNode(E(s)))}return e.innerHTML},r.lineCount=function(t){return t.selectAll(\"tspan.line\").size()||1},r.positionText=function(t,e,r){return t.each((function(){var t=n.select(this);function i(e,r){return void 0===r?null===(r=t.attr(e))&&(t.attr(e,0),r=0):t.attr(e,r),r}var a=i(\"x\",e),o=i(\"y\",r);\"text\"===this.nodeName&&t.selectAll(\"tspan.line\").attr({x:a,y:o})}))},r.makeEditable=function(t,e){var r=e.gd,i=e.delegate,a=n.dispatch(\"edit\",\"input\",\"cancel\"),o=i||t;if(t.style({\"pointer-events\":i?\"none\":\"all\"}),1!==t.size())throw new Error(\"boo\");function s(){!function(){var i=n.select(r).select(\".svg-container\"),o=i.append(\"div\"),s=t.node().style,c=parseFloat(s.fontSize||12),u=e.text;void 0===u&&(u=t.attr(\"data-unformatted\"));o.classed(\"plugin-editable editable\",!0).style({position:\"absolute\",\"font-family\":s.fontFamily||\"Arial\",\"font-size\":c,color:e.fill||s.fill||\"black\",opacity:1,\"background-color\":e.background||\"transparent\",outline:\"#ffffff33 1px solid\",margin:[-c/8+1,0,0,-1].join(\"px \")+\"px\",padding:\"0\",\"box-sizing\":\"border-box\"}).attr({contenteditable:!0}).text(u).call(C(t,i,e)).on(\"blur\",(function(){r._editing=!1,t.text(this.textContent).style({opacity:1});var e,i=n.select(this).attr(\"class\");(e=i?\".\"+i.split(\" \")[0]+\"-math-group\":\"[class*=-math-group]\")&&n.select(t.node().parentNode).select(e).style({opacity:0});var o=this.textContent;n.select(this).transition().duration(0).remove(),n.select(document).on(\"mouseup\",null),a.edit.call(t,o)})).on(\"focus\",(function(){var t=this;r._editing=!0,n.select(document).on(\"mouseup\",(function(){if(n.event.target===t)return!1;document.activeElement===o.node()&&o.node().blur()}))})).on(\"keyup\",(function(){27===n.event.which?(r._editing=!1,t.style({opacity:1}),n.select(this).style({opacity:0}).on(\"blur\",(function(){return!1})).transition().remove(),a.cancel.call(t,this.textContent)):(a.input.call(t,this.textContent),n.select(this).call(C(t,i,e)))})).on(\"keydown\",(function(){13===n.event.which&&this.blur()})).call(l)}(),t.style({opacity:0});var i,s=o.attr(\"class\");(i=s?\".\"+s.split(\" \")[0]+\"-math-group\":\"[class*=-math-group]\")&&n.select(t.node().parentNode).select(i).style({opacity:0})}function l(t){var e=t.node(),r=document.createRange();r.selectNodeContents(e);var n=window.getSelection();n.removeAllRanges(),n.addRange(r),e.focus()}return e.immediate?s():o.on(\"click\",s),n.rebind(t,a,\"on\")}},{\"../constants/alignment\":745,\"../constants/xmlns_namespaces\":754,\"../lib\":778,d3:169}],804:[function(t,e,r){\"use strict\";var n={};function i(t){t&&null!==t.timer&&(clearTimeout(t.timer),t.timer=null)}r.throttle=function(t,e,r){var a=n[t],o=Date.now();if(!a){for(var s in n)n[s].ts<o-6e4&&delete n[s];a=n[t]={ts:0,timer:null}}function l(){r(),a.ts=Date.now(),a.onDone&&(a.onDone(),a.onDone=null)}i(a),o>a.ts+e?l():a.timer=setTimeout((function(){l(),a.timer=null}),e)},r.done=function(t){var e=n[t];return e&&e.timer?new Promise((function(t){var r=e.onDone;e.onDone=function(){r&&r(),t(),e.onDone=null}})):Promise.resolve()},r.clear=function(t){if(t)i(n[t]),delete n[t];else for(var e in n)r.clear(e)}},{}],805:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\");e.exports=function(t,e){if(t>0)return Math.log(t)/Math.LN10;var r=Math.log(Math.min(e[0],e[1]))/Math.LN10;return n(r)||(r=Math.log(Math.max(e[0],e[1]))/Math.LN10-6),r}},{\"fast-isnumeric\":241}],806:[function(t,e,r){\"use strict\";var n=e.exports={},i=t(\"../plots/geo/constants\").locationmodeToLayer,a=t(\"topojson-client\").feature;n.getTopojsonName=function(t){return[t.scope.replace(/ /g,\"-\"),\"_\",t.resolution.toString(),\"m\"].join(\"\")},n.getTopojsonPath=function(t,e){return t+e+\".json\"},n.getTopojsonFeatures=function(t,e){var r=i[t.locationmode],n=e.objects[r];return a(e,n).features}},{\"../plots/geo/constants\":858,\"topojson-client\":579}],807:[function(t,e,r){\"use strict\";e.exports={moduleType:\"locale\",name:\"en-US\",dictionary:{\"Click to enter Colorscale title\":\"Click to enter Colorscale title\"},format:{date:\"%m/%d/%Y\"}}},{}],808:[function(t,e,r){\"use strict\";e.exports={moduleType:\"locale\",name:\"en\",dictionary:{\"Click to enter Colorscale title\":\"Click to enter Colourscale title\"},format:{days:[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],shortDays:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],months:[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],shortMonths:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],periods:[\"AM\",\"PM\"],dateTime:\"%a %b %e %X %Y\",date:\"%d/%m/%Y\",time:\"%H:%M:%S\",decimal:\".\",thousands:\",\",grouping:[3],currency:[\"$\",\"\"],year:\"%Y\",month:\"%b %Y\",dayMonth:\"%b %-d\",dayMonthYear:\"%b %-d, %Y\"}}},{}],809:[function(t,e,r){\"use strict\";var n=t(\"../registry\");e.exports=function(t){for(var e,r,i=n.layoutArrayContainers,a=n.layoutArrayRegexes,o=t.split(\"[\")[0],s=0;s<a.length;s++)if((r=t.match(a[s]))&&0===r.index){e=r[0];break}if(e||(e=i[i.indexOf(o)]),!e)return!1;var l=t.substr(e.length);return l?!!(r=l.match(/^\\[(0|[1-9][0-9]*)\\](\\.(.+))?$/))&&{array:e,index:Number(r[1]),property:r[3]||\"\"}:{array:e,index:\"\",property:\"\"}}},{\"../registry\":911}],810:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=n.extendFlat,a=n.isPlainObject,o={valType:\"flaglist\",extras:[\"none\"],flags:[\"calc\",\"clearAxisTypes\",\"plot\",\"style\",\"markerSize\",\"colorbars\"]},s={valType:\"flaglist\",extras:[\"none\"],flags:[\"calc\",\"plot\",\"legend\",\"ticks\",\"axrange\",\"layoutstyle\",\"modebar\",\"camera\",\"arraydraw\",\"colorbars\"]},l=o.flags.slice().concat([\"fullReplot\"]),c=s.flags.slice().concat(\"layoutReplot\");function u(t){for(var e={},r=0;r<t.length;r++)e[t[r]]=!1;return e}function f(t,e,r){var n=i({},t);for(var o in n){var s=n[o];a(s)&&(n[o]=h(s,e,r,o))}return\"from-root\"===r&&(n.editType=e),n}function h(t,e,r,n){if(t.valType){var a=i({},t);if(a.editType=e,Array.isArray(t.items)){a.items=new Array(t.items.length);for(var o=0;o<t.items.length;o++)a.items[o]=h(t.items[o],e,\"from-root\")}return a}return f(t,e,\"_\"===n.charAt(0)?\"nested\":\"from-root\")}e.exports={traces:o,layout:s,traceFlags:function(){return u(l)},layoutFlags:function(){return u(c)},update:function(t,e){var r=e.editType;if(r&&\"none\"!==r)for(var n=r.split(\"+\"),i=0;i<n.length;i++)t[n[i]]=!0},overrideAll:f}},{\"../lib\":778}],811:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"gl-mat4/fromQuat\"),a=t(\"../registry\"),o=t(\"../lib\"),s=t(\"../plots/plots\"),l=t(\"../plots/cartesian/axis_ids\"),c=t(\"../components/color\"),u=l.cleanId,f=l.getFromTrace,h=a.traceIs;function p(t,e){var r=t[e],n=e.charAt(0);r&&\"paper\"!==r&&(t[e]=u(r,n,!0))}function d(t){function e(e,r){var n=t[e],i=t.title&&t.title[r];n&&!i&&(t.title||(t.title={}),t.title[r]=t[e],delete t[e])}t&&(\"string\"!=typeof t.title&&\"number\"!=typeof t.title||(t.title={text:t.title}),e(\"titlefont\",\"font\"),e(\"titleposition\",\"position\"),e(\"titleside\",\"side\"),e(\"titleoffset\",\"offset\"))}function g(t){if(!o.isPlainObject(t))return!1;var e=t.name;return delete t.name,delete t.showlegend,(\"string\"==typeof e||\"number\"==typeof e)&&String(e)}function m(t,e,r,n){if(r&&!n)return t;if(n&&!r)return e;if(!t.trim())return e;if(!e.trim())return t;var i,a=Math.min(t.length,e.length);for(i=0;i<a&&t.charAt(i)===e.charAt(i);i++);return t.substr(0,i).trim()}function v(t){var e=\"middle\",r=\"center\";return\"string\"==typeof t&&(-1!==t.indexOf(\"top\")?e=\"top\":-1!==t.indexOf(\"bottom\")&&(e=\"bottom\"),-1!==t.indexOf(\"left\")?r=\"left\":-1!==t.indexOf(\"right\")&&(r=\"right\")),e+\" \"+r}function y(t,e){return e in t&&\"object\"==typeof t[e]&&0===Object.keys(t[e]).length}r.clearPromiseQueue=function(t){Array.isArray(t._promises)&&t._promises.length>0&&o.log(\"Clearing previous rejected promises from queue.\"),t._promises=[]},r.cleanLayout=function(t){var e,n;t||(t={}),t.xaxis1&&(t.xaxis||(t.xaxis=t.xaxis1),delete t.xaxis1),t.yaxis1&&(t.yaxis||(t.yaxis=t.yaxis1),delete t.yaxis1),t.scene1&&(t.scene||(t.scene=t.scene1),delete t.scene1);var a=(s.subplotsRegistry.cartesian||{}).attrRegex,l=(s.subplotsRegistry.polar||{}).attrRegex,f=(s.subplotsRegistry.ternary||{}).attrRegex,h=(s.subplotsRegistry.gl3d||{}).attrRegex,g=Object.keys(t);for(e=0;e<g.length;e++){var m=g[e];if(a&&a.test(m)){var v=t[m];v.anchor&&\"free\"!==v.anchor&&(v.anchor=u(v.anchor)),v.overlaying&&(v.overlaying=u(v.overlaying)),v.type||(v.isdate?v.type=\"date\":v.islog?v.type=\"log\":!1===v.isdate&&!1===v.islog&&(v.type=\"linear\")),\"withzero\"!==v.autorange&&\"tozero\"!==v.autorange||(v.autorange=!0,v.rangemode=\"tozero\"),delete v.islog,delete v.isdate,delete v.categories,y(v,\"domain\")&&delete v.domain,void 0!==v.autotick&&(void 0===v.tickmode&&(v.tickmode=v.autotick?\"auto\":\"linear\"),delete v.autotick),d(v)}else if(l&&l.test(m)){d(t[m].radialaxis)}else if(f&&f.test(m)){var x=t[m];d(x.aaxis),d(x.baxis),d(x.caxis)}else if(h&&h.test(m)){var b=t[m],_=b.cameraposition;if(Array.isArray(_)&&4===_[0].length){var w=_[0],T=_[1],k=_[2],M=i([],w),A=[];for(n=0;n<3;++n)A[n]=T[n]+k*M[2+4*n];b.camera={eye:{x:A[0],y:A[1],z:A[2]},center:{x:T[0],y:T[1],z:T[2]},up:{x:0,y:0,z:1}},delete b.cameraposition}d(b.xaxis),d(b.yaxis),d(b.zaxis)}}var S=Array.isArray(t.annotations)?t.annotations.length:0;for(e=0;e<S;e++){var E=t.annotations[e];o.isPlainObject(E)&&(E.ref&&(\"paper\"===E.ref?(E.xref=\"paper\",E.yref=\"paper\"):\"data\"===E.ref&&(E.xref=\"x\",E.yref=\"y\"),delete E.ref),p(E,\"xref\"),p(E,\"yref\"))}var C=Array.isArray(t.shapes)?t.shapes.length:0;for(e=0;e<C;e++){var L=t.shapes[e];o.isPlainObject(L)&&(p(L,\"xref\"),p(L,\"yref\"))}var I=Array.isArray(t.images)?t.images.length:0;for(e=0;e<I;e++){var P=t.images[e];o.isPlainObject(P)&&(p(P,\"xref\"),p(P,\"yref\"))}var z=t.legend;return z&&(z.x>3?(z.x=1.02,z.xanchor=\"left\"):z.x<-2&&(z.x=-.02,z.xanchor=\"right\"),z.y>3?(z.y=1.02,z.yanchor=\"bottom\"):z.y<-2&&(z.y=-.02,z.yanchor=\"top\")),d(t),\"rotate\"===t.dragmode&&(t.dragmode=\"orbit\"),c.clean(t),t.template&&t.template.layout&&r.cleanLayout(t.template.layout),t},r.cleanData=function(t){for(var e=0;e<t.length;e++){var n,i=t[e];if(\"histogramy\"===i.type&&\"xbins\"in i&&!(\"ybins\"in i)&&(i.ybins=i.xbins,delete i.xbins),i.error_y&&\"opacity\"in i.error_y){var l=c.defaults,f=i.error_y.color||(h(i,\"bar\")?c.defaultLine:l[e%l.length]);i.error_y.color=c.addOpacity(c.rgb(f),c.opacity(f)*i.error_y.opacity),delete i.error_y.opacity}if(\"bardir\"in i&&(\"h\"!==i.bardir||!h(i,\"bar\")&&\"histogram\"!==i.type.substr(0,9)||(i.orientation=\"h\",r.swapXYData(i)),delete i.bardir),\"histogramy\"===i.type&&r.swapXYData(i),\"histogramx\"!==i.type&&\"histogramy\"!==i.type||(i.type=\"histogram\"),\"scl\"in i&&!(\"colorscale\"in i)&&(i.colorscale=i.scl,delete i.scl),\"reversescl\"in i&&!(\"reversescale\"in i)&&(i.reversescale=i.reversescl,delete i.reversescl),i.xaxis&&(i.xaxis=u(i.xaxis,\"x\")),i.yaxis&&(i.yaxis=u(i.yaxis,\"y\")),h(i,\"gl3d\")&&i.scene&&(i.scene=s.subplotsRegistry.gl3d.cleanId(i.scene)),!h(i,\"pie-like\")&&!h(i,\"bar-like\"))if(Array.isArray(i.textposition))for(n=0;n<i.textposition.length;n++)i.textposition[n]=v(i.textposition[n]);else i.textposition&&(i.textposition=v(i.textposition));var p=a.getModule(i);if(p&&p.colorbar){var x=p.colorbar.container,b=x?i[x]:i;b&&b.colorscale&&(\"YIGnBu\"===b.colorscale&&(b.colorscale=\"YlGnBu\"),\"YIOrRd\"===b.colorscale&&(b.colorscale=\"YlOrRd\"))}if(\"surface\"===i.type&&o.isPlainObject(i.contours)){var _=[\"x\",\"y\",\"z\"];for(n=0;n<_.length;n++){var w=i.contours[_[n]];o.isPlainObject(w)&&(w.highlightColor&&(w.highlightcolor=w.highlightColor,delete w.highlightColor),w.highlightWidth&&(w.highlightwidth=w.highlightWidth,delete w.highlightWidth))}}if(\"candlestick\"===i.type||\"ohlc\"===i.type){var T=!1!==(i.increasing||{}).showlegend,k=!1!==(i.decreasing||{}).showlegend,M=g(i.increasing),A=g(i.decreasing);if(!1!==M&&!1!==A){var S=m(M,A,T,k);S&&(i.name=S)}else!M&&!A||i.name||(i.name=M||A)}if(Array.isArray(i.transforms)){var E=i.transforms;for(n=0;n<E.length;n++){var C=E[n];if(o.isPlainObject(C))switch(C.type){case\"filter\":C.filtersrc&&(C.target=C.filtersrc,delete C.filtersrc),C.calendar&&(C.valuecalendar||(C.valuecalendar=C.calendar),delete C.calendar);break;case\"groupby\":if(C.styles=C.styles||C.style,C.styles&&!Array.isArray(C.styles)){var L=C.styles,I=Object.keys(L);C.styles=[];for(var P=0;P<I.length;P++)C.styles.push({target:I[P],value:L[I[P]]})}}}}y(i,\"line\")&&delete i.line,\"marker\"in i&&(y(i.marker,\"line\")&&delete i.marker.line,y(i,\"marker\")&&delete i.marker),c.clean(i),i.autobinx&&(delete i.autobinx,delete i.xbins),i.autobiny&&(delete i.autobiny,delete i.ybins),d(i),i.colorbar&&d(i.colorbar),i.marker&&i.marker.colorbar&&d(i.marker.colorbar),i.line&&i.line.colorbar&&d(i.line.colorbar),i.aaxis&&d(i.aaxis),i.baxis&&d(i.baxis)}},r.swapXYData=function(t){var e;if(o.swapAttrs(t,[\"?\",\"?0\",\"d?\",\"?bins\",\"nbins?\",\"autobin?\",\"?src\",\"error_?\"]),Array.isArray(t.z)&&Array.isArray(t.z[0])&&(t.transpose?delete t.transpose:t.transpose=!0),t.error_x&&t.error_y){var r=t.error_y,n=\"copy_ystyle\"in r?r.copy_ystyle:!(r.color||r.thickness||r.width);o.swapAttrs(t,[\"error_?.copy_ystyle\"]),n&&o.swapAttrs(t,[\"error_?.color\",\"error_?.thickness\",\"error_?.width\"])}if(\"string\"==typeof t.hoverinfo){var i=t.hoverinfo.split(\"+\");for(e=0;e<i.length;e++)\"x\"===i[e]?i[e]=\"y\":\"y\"===i[e]&&(i[e]=\"x\");t.hoverinfo=i.join(\"+\")}},r.coerceTraceIndices=function(t,e){if(n(e))return[e];if(!Array.isArray(e)||!e.length)return t.data.map((function(t,e){return e}));if(Array.isArray(e)){for(var r=[],i=0;i<e.length;i++)o.isIndex(e[i],t.data.length)?r.push(e[i]):o.warn(\"trace index (\",e[i],\") is not a number or is out of bounds\");return r}return e},r.manageArrayContainers=function(t,e,r){var i=t.obj,a=t.parts,s=a.length,l=a[s-1],c=n(l);if(c&&null===e){var u=a.slice(0,s-1).join(\".\");o.nestedProperty(i,u).get().splice(l,1)}else c&&void 0===t.get()?(void 0===t.get()&&(r[t.astr]=null),t.set(e)):t.set(e)};var x=/(\\.[^\\[\\]\\.]+|\\[[^\\[\\]\\.]+\\])$/;function b(t){var e=t.search(x);if(e>0)return t.substr(0,e)}r.hasParent=function(t,e){for(var r=b(e);r;){if(r in t)return!0;r=b(r)}return!1};var _=[\"x\",\"y\",\"z\"];r.clearAxisTypes=function(t,e,r){for(var n=0;n<e.length;n++)for(var i=t._fullData[n],a=0;a<3;a++){var s=f(t,i,_[a]);if(s&&\"log\"!==s.type){var l=s._name,c=s._id.substr(1);if(\"scene\"===c.substr(0,5)){if(void 0!==r[c])continue;l=c+\".\"+l}var u=l+\".type\";void 0===r[l]&&void 0===r[u]&&o.nestedProperty(t.layout,u).set(null)}}}},{\"../components/color\":643,\"../lib\":778,\"../plots/cartesian/axis_ids\":831,\"../plots/plots\":891,\"../registry\":911,\"fast-isnumeric\":241,\"gl-mat4/fromQuat\":282}],812:[function(t,e,r){\"use strict\";var n=t(\"./plot_api\");r.plot=n.plot,r.newPlot=n.newPlot,r.restyle=n.restyle,r.relayout=n.relayout,r.redraw=n.redraw,r.update=n.update,r._guiRestyle=n._guiRestyle,r._guiRelayout=n._guiRelayout,r._guiUpdate=n._guiUpdate,r._storeDirectGUIEdit=n._storeDirectGUIEdit,r.react=n.react,r.extendTraces=n.extendTraces,r.prependTraces=n.prependTraces,r.addTraces=n.addTraces,r.deleteTraces=n.deleteTraces,r.moveTraces=n.moveTraces,r.purge=n.purge,r.addFrames=n.addFrames,r.deleteFrames=n.deleteFrames,r.animate=n.animate,r.setPlotConfig=n.setPlotConfig,r.toImage=t(\"./to_image\"),r.validate=t(\"./validate\"),r.downloadImage=t(\"../snapshot/download\");var i=t(\"./template_api\");r.makeTemplate=i.makeTemplate,r.validateTemplate=i.validateTemplate},{\"../snapshot/download\":913,\"./plot_api\":814,\"./template_api\":819,\"./to_image\":820,\"./validate\":821}],813:[function(t,e,r){\"use strict\";var n=t(\"../lib/is_plain_object\"),i=t(\"../lib/noop\"),a=t(\"../lib/loggers\"),o=t(\"../lib/search\").sorterAsc,s=t(\"../registry\");r.containerArrayMatch=t(\"./container_array_match\");var l=r.isAddVal=function(t){return\"add\"===t||n(t)},c=r.isRemoveVal=function(t){return null===t||\"remove\"===t};r.applyContainerArrayChanges=function(t,e,r,n,u){var f=e.astr,h=s.getComponentMethod(f,\"supplyLayoutDefaults\"),p=s.getComponentMethod(f,\"draw\"),d=s.getComponentMethod(f,\"drawOne\"),g=n.replot||n.recalc||h===i||p===i,m=t.layout,v=t._fullLayout;if(r[\"\"]){Object.keys(r).length>1&&a.warn(\"Full array edits are incompatible with other edits\",f);var y=r[\"\"][\"\"];if(c(y))e.set(null);else{if(!Array.isArray(y))return a.warn(\"Unrecognized full array edit value\",f,y),!0;e.set(y)}return!g&&(h(m,v),p(t),!0)}var x,b,_,w,T,k,M,A,S=Object.keys(r).map(Number).sort(o),E=e.get(),C=E||[],L=u(v,f).get(),I=[],P=-1,z=C.length;for(x=0;x<S.length;x++)if(w=r[_=S[x]],T=Object.keys(w),k=w[\"\"],M=l(k),_<0||_>C.length-(M?0:1))a.warn(\"index out of range\",f,_);else if(void 0!==k)T.length>1&&a.warn(\"Insertion & removal are incompatible with edits to the same index.\",f,_),c(k)?I.push(_):M?(\"add\"===k&&(k={}),C.splice(_,0,k),L&&L.splice(_,0,{})):a.warn(\"Unrecognized full object edit value\",f,_,k),-1===P&&(P=_);else for(b=0;b<T.length;b++)A=f+\"[\"+_+\"].\",u(C[_],T[b],A).set(w[T[b]]);for(x=I.length-1;x>=0;x--)C.splice(I[x],1),L&&L.splice(I[x],1);if(C.length?E||e.set(C):e.set(null),g)return!1;if(h(m,v),d!==i){var O;if(-1===P)O=S;else{for(z=Math.max(C.length,z),O=[],x=0;x<S.length&&!((_=S[x])>=P);x++)O.push(_);for(x=P;x<z;x++)O.push(x)}for(x=0;x<O.length;x++)d(t,O[x])}else p(t);return!0}},{\"../lib/is_plain_object\":779,\"../lib/loggers\":782,\"../lib/noop\":787,\"../lib/search\":798,\"../registry\":911,\"./container_array_match\":809}],814:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"fast-isnumeric\"),a=t(\"has-hover\"),o=t(\"../lib\"),s=o.nestedProperty,l=t(\"../lib/events\"),c=t(\"../lib/queue\"),u=t(\"../registry\"),f=t(\"./plot_schema\"),h=t(\"../plots/plots\"),p=t(\"../plots/polar/legacy\"),d=t(\"../plots/cartesian/axes\"),g=t(\"../components/drawing\"),m=t(\"../components/color\"),v=t(\"../plots/cartesian/graph_interact\").initInteractions,y=t(\"../constants/xmlns_namespaces\"),x=t(\"../lib/svg_text_utils\"),b=t(\"../plots/cartesian/select\").clearSelect,_=t(\"./plot_config\").dfltConfig,w=t(\"./manage_arrays\"),T=t(\"./helpers\"),k=t(\"./subroutines\"),M=t(\"./edit_types\"),A=t(\"../plots/cartesian/constants\").AX_NAME_PATTERN,S=0;function E(t){var e=t._fullLayout;e._redrawFromAutoMarginCount?e._redrawFromAutoMarginCount--:t.emit(\"plotly_afterplot\")}function C(t,e){try{t._fullLayout._paper.style(\"background\",e)}catch(t){o.error(t)}}function L(t,e){C(t,m.combine(e,\"white\"))}function I(t,e){if(!t._context){t._context=o.extendDeep({},_);var r=n.select(\"base\");t._context._baseUrl=r.size()&&r.attr(\"href\")?window.location.href.split(\"#\")[0]:\"\"}var i,s,l,c=t._context;if(e){for(s=Object.keys(e),i=0;i<s.length;i++)\"editable\"!==(l=s[i])&&\"edits\"!==l&&l in c&&(\"setBackground\"===l&&\"opaque\"===e[l]?c[l]=L:c[l]=e[l]);e.plot3dPixelRatio&&!c.plotGlPixelRatio&&(c.plotGlPixelRatio=c.plot3dPixelRatio);var u=e.editable;if(void 0!==u)for(c.editable=u,s=Object.keys(c.edits),i=0;i<s.length;i++)c.edits[s[i]]=u;if(e.edits)for(s=Object.keys(e.edits),i=0;i<s.length;i++)(l=s[i])in c.edits&&(c.edits[l]=e.edits[l]);c._exportedPlot=e._exportedPlot}c.staticPlot&&(c.editable=!1,c.edits={},c.autosizable=!1,c.scrollZoom=!1,c.doubleClick=!1,c.showTips=!1,c.showLink=!1,c.displayModeBar=!1),\"hover\"!==c.displayModeBar||a||(c.displayModeBar=!0),\"transparent\"!==c.setBackground&&\"function\"==typeof c.setBackground||(c.setBackground=C),c._hasZeroHeight=c._hasZeroHeight||0===t.clientHeight,c._hasZeroWidth=c._hasZeroWidth||0===t.clientWidth;var f=c.scrollZoom,h=c._scrollZoom={};if(!0===f)h.cartesian=1,h.gl3d=1,h.geo=1,h.mapbox=1;else if(\"string\"==typeof f){var p=f.split(\"+\");for(i=0;i<p.length;i++)h[p[i]]=1}else!1!==f&&(h.gl3d=1,h.geo=1,h.mapbox=1)}function P(t,e){var r,n,i=e+1,a=[];for(r=0;r<t.length;r++)(n=t[r])<0?a.push(i+n):a.push(n);return a}function z(t,e,r){var n,i;for(n=0;n<e.length;n++){if((i=e[n])!==parseInt(i,10))throw new Error(\"all values in \"+r+\" must be integers\");if(i>=t.data.length||i<-t.data.length)throw new Error(r+\" must be valid indices for gd.data.\");if(e.indexOf(i,n+1)>-1||i>=0&&e.indexOf(-t.data.length+i)>-1||i<0&&e.indexOf(t.data.length+i)>-1)throw new Error(\"each index in \"+r+\" must be unique.\")}}function O(t,e,r){if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array.\");if(\"undefined\"==typeof e)throw new Error(\"currentIndices is a required argument.\");if(Array.isArray(e)||(e=[e]),z(t,e,\"currentIndices\"),\"undefined\"==typeof r||Array.isArray(r)||(r=[r]),\"undefined\"!=typeof r&&z(t,r,\"newIndices\"),\"undefined\"!=typeof r&&e.length!==r.length)throw new Error(\"current and new indices must be of equal length.\")}function D(t,e,r,n,a){!function(t,e,r,n){var i=o.isPlainObject(n);if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array\");if(!o.isPlainObject(e))throw new Error(\"update must be a key:value object\");if(\"undefined\"==typeof r)throw new Error(\"indices must be an integer or array of integers\");for(var a in z(t,r,\"indices\"),e){if(!Array.isArray(e[a])||e[a].length!==r.length)throw new Error(\"attribute \"+a+\" must be an array of length equal to indices array length\");if(i&&(!(a in n)||!Array.isArray(n[a])||n[a].length!==e[a].length))throw new Error(\"when maxPoints is set as a key:value object it must contain a 1:1 corrispondence with the keys and number of traces in the update object\")}}(t,e,r,n);for(var l=function(t,e,r,n){var a,l,c,u,f,h=o.isPlainObject(n),p=[];for(var d in Array.isArray(r)||(r=[r]),r=P(r,t.data.length-1),e)for(var g=0;g<r.length;g++){if(a=t.data[r[g]],l=(c=s(a,d)).get(),u=e[d][g],!o.isArrayOrTypedArray(u))throw new Error(\"attribute: \"+d+\" index: \"+g+\" must be an array\");if(!o.isArrayOrTypedArray(l))throw new Error(\"cannot extend missing or non-array attribute: \"+d);if(l.constructor!==u.constructor)throw new Error(\"cannot extend array with an array of a different type: \"+d);f=h?n[d][g]:n,i(f)||(f=-1),p.push({prop:c,target:l,insert:u,maxp:Math.floor(f)})}return p}(t,e,r,n),c={},u={},f=0;f<l.length;f++){var h=l[f].prop,p=l[f].maxp,d=a(l[f].target,l[f].insert,p);h.set(d[0]),Array.isArray(c[h.astr])||(c[h.astr]=[]),c[h.astr].push(d[1]),Array.isArray(u[h.astr])||(u[h.astr]=[]),u[h.astr].push(l[f].target.length)}return{update:c,maxPoints:u}}function R(t,e){var r=new t.constructor(t.length+e.length);return r.set(t),r.set(e,t.length),r}function F(t,e,n,i){t=o.getGraphDiv(t),T.clearPromiseQueue(t);var a={};if(\"string\"==typeof e)a[e]=n;else{if(!o.isPlainObject(e))return o.warn(\"Restyle fail.\",e,n,i),Promise.reject();a=o.extendFlat({},e),void 0===i&&(i=n)}Object.keys(a).length&&(t.changed=!0);var s=T.coerceTraceIndices(t,i),l=U(t,a,s),u=l.flags;u.calc&&(t.calcdata=void 0),u.clearAxisTypes&&T.clearAxisTypes(t,s,{});var f=[];u.fullReplot?f.push(r.plot):(f.push(h.previousPromises),h.supplyDefaults(t),u.markerSize&&(h.doCalcdata(t),G(f)),u.style&&f.push(k.doTraceStyle),u.colorbars&&f.push(k.doColorBars),f.push(E)),f.push(h.rehover,h.redrag),c.add(t,F,[t,l.undoit,l.traces],F,[t,l.redoit,l.traces]);var p=o.syncOrAsync(f,t);return p&&p.then||(p=Promise.resolve()),p.then((function(){return t.emit(\"plotly_restyle\",l.eventData),t}))}function B(t){return void 0===t?null:t}function N(t,e){return e?function(e,r,n){var i=s(e,r),a=i.set;return i.set=function(e){j((n||\"\")+r,i.get(),e,t),a(e)},i}:s}function j(t,e,r,n){if(Array.isArray(e)||Array.isArray(r))for(var i=Array.isArray(e)?e:[],a=Array.isArray(r)?r:[],s=Math.max(i.length,a.length),l=0;l<s;l++)j(t+\"[\"+l+\"]\",i[l],a[l],n);else if(o.isPlainObject(e)||o.isPlainObject(r)){var c=o.isPlainObject(e)?e:{},u=o.isPlainObject(r)?r:{},f=o.extendFlat({},c,u);for(var h in f)j(t+\".\"+h,c[h],u[h],n)}else void 0===n[t]&&(n[t]=B(e))}function U(t,e,r){var n,i=t._fullLayout,a=t._fullData,l=t.data,c=i._guiEditing,p=N(i._preGUI,c),g=o.extendDeepAll({},e);V(e);var m,v=M.traceFlags(),y={},x={};function b(){return r.map((function(){}))}function _(t){var e=d.id2name(t);-1===m.indexOf(e)&&m.push(e)}function w(t){return\"LAYOUT\"+t+\".autorange\"}function k(t){return\"LAYOUT\"+t+\".range\"}function A(t){for(var e=t;e<a.length;e++)if(a[e]._input===l[t])return a[e]}function S(n,a,o){if(Array.isArray(n))n.forEach((function(t){S(t,a,o)}));else if(!(n in e)&&!T.hasParent(e,n)){var s;if(\"LAYOUT\"===n.substr(0,6))s=p(t.layout,n.replace(\"LAYOUT\",\"\"));else{var u=r[o];s=N(i._tracePreGUI[A(u)._fullInput.uid],c)(l[u],n)}n in x||(x[n]=b()),void 0===x[n][o]&&(x[n][o]=B(s.get())),void 0!==a&&s.set(a)}}function E(t){return function(e){return a[e][t]}}function C(t){return function(e,n){return!1===e?a[r[n]][t]:null}}for(var L in e){if(T.hasParent(e,L))throw new Error(\"cannot set \"+L+\" and a parent attribute simultaneously\");var I,P,z,O,D,R,F=e[L];if(\"autobinx\"!==L&&\"autobiny\"!==L||(L=L.charAt(L.length-1)+\"bins\",F=Array.isArray(F)?F.map(C(L)):!1===F?r.map(E(L)):null),y[L]=F,\"LAYOUT\"!==L.substr(0,6)){for(x[L]=b(),n=0;n<r.length;n++){if(I=l[r[n]],P=A(r[n]),O=(z=N(i._tracePreGUI[P._fullInput.uid],c)(I,L)).get(),void 0!==(D=Array.isArray(F)?F[n%F.length]:F)){var j=z.parts[z.parts.length-1],U=L.substr(0,L.length-j.length-1),q=U?U+\".\":\"\",H=U?s(P,U).get():P;if((R=f.getTraceValObject(P,z.parts))&&R.impliedEdits&&null!==D)for(var G in R.impliedEdits)S(o.relativeAttr(L,G),R.impliedEdits[G],n);else if(\"thicknessmode\"!==j&&\"lenmode\"!==j||O===D||\"fraction\"!==D&&\"pixels\"!==D||!H){if(\"type\"===L&&(\"pie\"===D!=(\"pie\"===O)||\"funnelarea\"===D!=(\"funnelarea\"===O))){var Y=\"x\",W=\"y\";\"bar\"!==D&&\"bar\"!==O||\"h\"!==I.orientation||(Y=\"y\",W=\"x\"),o.swapAttrs(I,[\"?\",\"?src\"],\"labels\",Y),o.swapAttrs(I,[\"d?\",\"?0\"],\"label\",Y),o.swapAttrs(I,[\"?\",\"?src\"],\"values\",W),\"pie\"===O||\"funnelarea\"===O?(s(I,\"marker.color\").set(s(I,\"marker.colors\").get()),i._pielayer.selectAll(\"g.trace\").remove()):u.traceIs(I,\"cartesian\")&&s(I,\"marker.colors\").set(s(I,\"marker.color\").get())}}else{var X=i._size,Z=H.orient,J=\"top\"===Z||\"bottom\"===Z;if(\"thicknessmode\"===j){var K=J?X.h:X.w;S(q+\"thickness\",H.thickness*(\"fraction\"===D?1/K:K),n)}else{var Q=J?X.w:X.h;S(q+\"len\",H.len*(\"fraction\"===D?1/Q:Q),n)}}x[L][n]=B(O);if(-1!==[\"swapxy\",\"swapxyaxes\",\"orientation\",\"orientationaxes\"].indexOf(L)){if(\"orientation\"===L){z.set(D);var $=I.x&&!I.y?\"h\":\"v\";if((z.get()||$)===P.orientation)continue}else\"orientationaxes\"===L&&(I.orientation={v:\"h\",h:\"v\"}[P.orientation]);T.swapXYData(I),v.calc=v.clearAxisTypes=!0}else-1!==h.dataArrayContainers.indexOf(z.parts[0])?(T.manageArrayContainers(z,D,x),v.calc=!0):(R?R.arrayOk&&!u.traceIs(P,\"regl\")&&(o.isArrayOrTypedArray(D)||o.isArrayOrTypedArray(O))?v.calc=!0:M.update(v,R):v.calc=!0,z.set(D))}}if(-1!==[\"swapxyaxes\",\"orientationaxes\"].indexOf(L)&&d.swap(t,r),\"orientationaxes\"===L){var tt=s(t.layout,\"hovermode\"),et=tt.get();\"x\"===et?tt.set(\"y\"):\"y\"===et?tt.set(\"x\"):\"x unified\"===et?tt.set(\"y unified\"):\"y unified\"===et&&tt.set(\"x unified\")}if(-1!==[\"orientation\",\"type\"].indexOf(L)){for(m=[],n=0;n<r.length;n++){var rt=l[r[n]];u.traceIs(rt,\"cartesian\")&&(_(rt.xaxis||\"x\"),_(rt.yaxis||\"y\"))}S(m.map(w),!0,0),S(m.map(k),[0,1],0)}}else z=p(t.layout,L.replace(\"LAYOUT\",\"\")),x[L]=[B(z.get())],z.set(Array.isArray(F)?F[0]:F),v.calc=!0}return(v.calc||v.plot)&&(v.fullReplot=!0),{flags:v,undoit:x,redoit:y,traces:r,eventData:o.extendDeepNoArrays([],[g,r])}}function V(t){var e,r,n,i=o.counterRegex(\"axis\",\".title\",!1,!1),a=/colorbar\\.title$/,s=Object.keys(t);for(e=0;e<s.length;e++)r=s[e],n=t[r],\"title\"!==r&&!i.test(r)&&!a.test(r)||\"string\"!=typeof n&&\"number\"!=typeof n?r.indexOf(\"titlefont\")>-1?l(r,r.replace(\"titlefont\",\"title.font\")):r.indexOf(\"titleposition\")>-1?l(r,r.replace(\"titleposition\",\"title.position\")):r.indexOf(\"titleside\")>-1?l(r,r.replace(\"titleside\",\"title.side\")):r.indexOf(\"titleoffset\")>-1&&l(r,r.replace(\"titleoffset\",\"title.offset\")):l(r,r.replace(\"title\",\"title.text\"));function l(e,r){t[r]=t[e],delete t[e]}}function q(t,e,r){if(t=o.getGraphDiv(t),T.clearPromiseQueue(t),t.framework&&t.framework.isPolar)return Promise.resolve(t);var n={};if(\"string\"==typeof e)n[e]=r;else{if(!o.isPlainObject(e))return o.warn(\"Relayout fail.\",e,r),Promise.reject();n=o.extendFlat({},e)}Object.keys(n).length&&(t.changed=!0);var i=Z(t,n),a=i.flags;a.calc&&(t.calcdata=void 0);var s=[h.previousPromises];a.layoutReplot?s.push(k.layoutReplot):Object.keys(n).length&&(H(t,a,i)||h.supplyDefaults(t),a.legend&&s.push(k.doLegend),a.layoutstyle&&s.push(k.layoutStyles),a.axrange&&G(s,i.rangesAltered),a.ticks&&s.push(k.doTicksRelayout),a.modebar&&s.push(k.doModeBar),a.camera&&s.push(k.doCamera),a.colorbars&&s.push(k.doColorBars),s.push(E)),s.push(h.rehover,h.redrag),c.add(t,q,[t,i.undoit],q,[t,i.redoit]);var l=o.syncOrAsync(s,t);return l&&l.then||(l=Promise.resolve(t)),l.then((function(){return t.emit(\"plotly_relayout\",i.eventData),t}))}function H(t,e,r){var n=t._fullLayout;if(!e.axrange)return!1;for(var i in e)if(\"axrange\"!==i&&e[i])return!1;for(var a in r.rangesAltered){var o=d.id2name(a),s=t.layout[o],l=n[o];if(l.autorange=s.autorange,s.range&&(l.range=s.range.slice()),l.cleanRange(),l._matchGroup)for(var c in l._matchGroup)if(c!==a){var u=n[d.id2name(c)];u.autorange=l.autorange,u.range=l.range.slice(),u._input.range=l.range.slice()}}return!0}function G(t,e){var r=e?function(t){var r=[],n=!0;for(var i in e){var a=d.getFromId(t,i);if(r.push(i),-1!==(a.ticklabelposition||\"\").indexOf(\"inside\")&&a._anchorAxis&&r.push(a._anchorAxis._id),a._matchGroup)for(var o in a._matchGroup)e[o]||r.push(o);a.automargin&&(n=!1)}return d.draw(t,r,{skipTitle:n})}:function(t){return d.draw(t,\"redraw\")};t.push(b,k.doAutoRangeAndConstraints,r,k.drawData,k.finalDraw)}var Y=/^[xyz]axis[0-9]*\\.range(\\[[0|1]\\])?$/,W=/^[xyz]axis[0-9]*\\.autorange$/,X=/^[xyz]axis[0-9]*\\.domain(\\[[0|1]\\])?$/;function Z(t,e){var r,n,i,a=t.layout,l=t._fullLayout,c=l._guiEditing,h=N(l._preGUI,c),p=Object.keys(e),g=d.list(t),m=o.extendDeepAll({},e),v={};for(V(e),p=Object.keys(e),n=0;n<p.length;n++)if(0===p[n].indexOf(\"allaxes\")){for(i=0;i<g.length;i++){var y=g[i]._id.substr(1),x=-1!==y.indexOf(\"scene\")?y+\".\":\"\",b=p[n].replace(\"allaxes\",x+g[i]._name);e[b]||(e[b]=e[p[n]])}delete e[p[n]]}var _=M.layoutFlags(),k={},S={};function E(t,r){if(Array.isArray(t))t.forEach((function(t){E(t,r)}));else if(!(t in e)&&!T.hasParent(e,t)){var n=h(a,t);t in S||(S[t]=B(n.get())),void 0!==r&&n.set(r)}}var C,L={};function I(t){var e=d.name2id(t.split(\".\")[0]);return L[e]=1,e}for(var P in e){if(T.hasParent(e,P))throw new Error(\"cannot set \"+P+\" and a parent attribute simultaneously\");for(var z=h(a,P),O=e[P],D=z.parts.length-1;D>0&&\"string\"!=typeof z.parts[D];)D--;var R=z.parts[D],F=z.parts[D-1]+\".\"+R,j=z.parts.slice(0,D).join(\".\"),U=s(t.layout,j).get(),q=s(l,j).get(),H=z.get();if(void 0!==O){k[P]=O,S[P]=\"reverse\"===R?O:B(H);var G=f.getLayoutValObject(l,z.parts);if(G&&G.impliedEdits&&null!==O)for(var Z in G.impliedEdits)E(o.relativeAttr(P,Z),G.impliedEdits[Z]);if(-1!==[\"width\",\"height\"].indexOf(P))if(O){E(\"autosize\",null);var K=\"height\"===P?\"width\":\"height\";E(K,l[K])}else l[P]=t._initialAutoSize[P];else if(\"autosize\"===P)E(\"width\",O?null:l.width),E(\"height\",O?null:l.height);else if(F.match(Y))I(F),s(l,j+\"._inputRange\").set(null);else if(F.match(W)){I(F),s(l,j+\"._inputRange\").set(null);var Q=s(l,j).get();Q._inputDomain&&(Q._input.domain=Q._inputDomain.slice())}else F.match(X)&&s(l,j+\"._inputDomain\").set(null);if(\"type\"===R){C=U;var $=\"linear\"===q.type&&\"log\"===O,tt=\"log\"===q.type&&\"linear\"===O;if($||tt){if(C&&C.range)if(q.autorange)$&&(C.range=C.range[1]>C.range[0]?[1,2]:[2,1]);else{var et=C.range[0],rt=C.range[1];$?(et<=0&&rt<=0&&E(j+\".autorange\",!0),et<=0?et=rt/1e6:rt<=0&&(rt=et/1e6),E(j+\".range[0]\",Math.log(et)/Math.LN10),E(j+\".range[1]\",Math.log(rt)/Math.LN10)):(E(j+\".range[0]\",Math.pow(10,et)),E(j+\".range[1]\",Math.pow(10,rt)))}else E(j+\".autorange\",!0);Array.isArray(l._subplots.polar)&&l._subplots.polar.length&&l[z.parts[0]]&&\"radialaxis\"===z.parts[1]&&delete l[z.parts[0]]._subplot.viewInitial[\"radialaxis.range\"],u.getComponentMethod(\"annotations\",\"convertCoords\")(t,q,O,E),u.getComponentMethod(\"images\",\"convertCoords\")(t,q,O,E)}else E(j+\".autorange\",!0),E(j+\".range\",null);s(l,j+\"._inputRange\").set(null)}else if(R.match(A)){var nt=s(l,P).get(),it=(O||{}).type;it&&\"-\"!==it||(it=\"linear\"),u.getComponentMethod(\"annotations\",\"convertCoords\")(t,nt,it,E),u.getComponentMethod(\"images\",\"convertCoords\")(t,nt,it,E)}var at=w.containerArrayMatch(P);if(at){r=at.array,n=at.index;var ot=at.property,st=G||{editType:\"calc\"};\"\"!==n&&\"\"===ot&&(w.isAddVal(O)?S[P]=null:w.isRemoveVal(O)?S[P]=(s(a,r).get()||[])[n]:o.warn(\"unrecognized full object value\",e)),M.update(_,st),v[r]||(v[r]={});var lt=v[r][n];lt||(lt=v[r][n]={}),lt[ot]=O,delete e[P]}else\"reverse\"===R?(U.range?U.range.reverse():(E(j+\".autorange\",!0),U.range=[1,0]),q.autorange?_.calc=!0:_.plot=!0):(l._has(\"scatter-like\")&&l._has(\"regl\")&&\"dragmode\"===P&&(\"lasso\"===O||\"select\"===O)&&\"lasso\"!==H&&\"select\"!==H||l._has(\"gl2d\")?_.plot=!0:G?M.update(_,G):_.calc=!0,z.set(O))}}for(r in v){w.applyContainerArrayChanges(t,h(a,r),v[r],_,h)||(_.plot=!0)}for(var ct in L){var ut=(C=d.getFromId(t,ct))&&C._constraintGroup;if(ut)for(var ft in _.calc=!0,ut)L[ft]||(d.getFromId(t,ft)._constraintShrinkable=!0)}return(J(t)||e.height||e.width)&&(_.plot=!0),(_.plot||_.calc)&&(_.layoutReplot=!0),{flags:_,rangesAltered:L,undoit:S,redoit:k,eventData:m}}function J(t){var e=t._fullLayout,r=e.width,n=e.height;return t.layout.autosize&&h.plotAutoSize(t,t.layout,e),e.width!==r||e.height!==n}function K(t,e,n,i){if(t=o.getGraphDiv(t),T.clearPromiseQueue(t),t.framework&&t.framework.isPolar)return Promise.resolve(t);o.isPlainObject(e)||(e={}),o.isPlainObject(n)||(n={}),Object.keys(e).length&&(t.changed=!0),Object.keys(n).length&&(t.changed=!0);var a=T.coerceTraceIndices(t,i),s=U(t,o.extendFlat({},e),a),l=s.flags,u=Z(t,o.extendFlat({},n)),f=u.flags;(l.calc||f.calc)&&(t.calcdata=void 0),l.clearAxisTypes&&T.clearAxisTypes(t,a,n);var p=[];f.layoutReplot?p.push(k.layoutReplot):l.fullReplot?p.push(r.plot):(p.push(h.previousPromises),H(t,f,u)||h.supplyDefaults(t),l.style&&p.push(k.doTraceStyle),(l.colorbars||f.colorbars)&&p.push(k.doColorBars),f.legend&&p.push(k.doLegend),f.layoutstyle&&p.push(k.layoutStyles),f.axrange&&G(p,u.rangesAltered),f.ticks&&p.push(k.doTicksRelayout),f.modebar&&p.push(k.doModeBar),f.camera&&p.push(k.doCamera),p.push(E)),p.push(h.rehover,h.redrag),c.add(t,K,[t,s.undoit,u.undoit,s.traces],K,[t,s.redoit,u.redoit,s.traces]);var d=o.syncOrAsync(p,t);return d&&d.then||(d=Promise.resolve(t)),d.then((function(){return t.emit(\"plotly_update\",{data:s.eventData,layout:u.eventData}),t}))}function Q(t){return function(e){e._fullLayout._guiEditing=!0;var r=t.apply(null,arguments);return e._fullLayout._guiEditing=!1,r}}var $=[{pattern:/^hiddenlabels/,attr:\"legend.uirevision\"},{pattern:/^((x|y)axis\\d*)\\.((auto)?range|title\\.text)/},{pattern:/axis\\d*\\.showspikes$/,attr:\"modebar.uirevision\"},{pattern:/(hover|drag)mode$/,attr:\"modebar.uirevision\"},{pattern:/^(scene\\d*)\\.camera/},{pattern:/^(geo\\d*)\\.(projection|center|fitbounds)/},{pattern:/^(ternary\\d*\\.[abc]axis)\\.(min|title\\.text)$/},{pattern:/^(polar\\d*\\.radialaxis)\\.((auto)?range|angle|title\\.text)/},{pattern:/^(polar\\d*\\.angularaxis)\\.rotation/},{pattern:/^(mapbox\\d*)\\.(center|zoom|bearing|pitch)/},{pattern:/^legend\\.(x|y)$/,attr:\"editrevision\"},{pattern:/^(shapes|annotations)/,attr:\"editrevision\"},{pattern:/^title\\.text$/,attr:\"editrevision\"}],tt=[{pattern:/^selectedpoints$/,attr:\"selectionrevision\"},{pattern:/(^|value\\.)visible$/,attr:\"legend.uirevision\"},{pattern:/^dimensions\\[\\d+\\]\\.constraintrange/},{pattern:/^node\\.(x|y|groups)/},{pattern:/^level$/},{pattern:/(^|value\\.)name$/},{pattern:/colorbar\\.title\\.text$/},{pattern:/colorbar\\.(x|y)$/,attr:\"editrevision\"}];function et(t,e){for(var r=0;r<e.length;r++){var n=e[r],i=t.match(n.pattern);if(i)return{head:i[1],attr:n.attr}}}function rt(t,e){var r=s(e,t).get();if(void 0!==r)return r;var n=t.split(\".\");for(n.pop();n.length>1;)if(n.pop(),void 0!==(r=s(e,n.join(\".\")+\".uirevision\").get()))return r;return e.uirevision}function nt(t,e){for(var r=0;r<e.length;r++)if(e[r]._fullInput.uid===t)return r;return-1}function it(t,e,r){for(var n=0;n<e.length;n++)if(e[n].uid===t)return n;return!e[r]||e[r].uid?-1:r}function at(t,e){var r=o.isPlainObject(t),n=Array.isArray(t);return r||n?(r&&o.isPlainObject(e)||n&&Array.isArray(e))&&JSON.stringify(t)===JSON.stringify(e):t===e}function ot(t,e,r,n){var i,a,l,c=n.getValObject,u=n.flags,f=n.immutable,h=n.inArray,p=n.arrayIndex;function d(){var t=i.editType;h&&-1!==t.indexOf(\"arraydraw\")?o.pushUnique(u.arrays[h],p):(M.update(u,i),\"none\"!==t&&u.nChanges++,n.transition&&i.anim&&u.nChangesAnim++,(Y.test(l)||W.test(l))&&(u.rangesAltered[r[0]]=1),X.test(l)&&s(e,\"_inputDomain\").set(null),\"datarevision\"===a&&(u.newDataRevision=1))}function g(t){return\"data_array\"===t.valType||t.arrayOk}for(a in t){if(u.calc&&!n.transition)return;var m=t[a],v=e[a],y=r.concat(a);if(l=y.join(\".\"),\"_\"!==a.charAt(0)&&\"function\"!=typeof m&&m!==v){if((\"tick0\"===a||\"dtick\"===a)&&\"geo\"!==r[0]){var x=e.tickmode;if(\"auto\"===x||\"array\"===x||!x)continue}if((\"range\"!==a||!e.autorange)&&(\"zmin\"!==a&&\"zmax\"!==a||\"contourcarpet\"!==e.type)&&(i=c(y))&&(!i._compareAsJSON||JSON.stringify(m)!==JSON.stringify(v))){var b,_=i.valType,w=g(i),T=Array.isArray(m),k=Array.isArray(v);if(T&&k){var A=\"_input_\"+a,S=t[A],E=e[A];if(Array.isArray(S)&&S===E)continue}if(void 0===v)w&&T?u.calc=!0:d();else if(i._isLinkedToArray){var C=[],L=!1;h||(u.arrays[a]=C);var I=Math.min(m.length,v.length),P=Math.max(m.length,v.length);if(I!==P){if(\"arraydraw\"!==i.editType){d();continue}L=!0}for(b=0;b<I;b++)ot(m[b],v[b],y.concat(b),o.extendFlat({inArray:a,arrayIndex:b},n));if(L)for(b=I;b<P;b++)C.push(b)}else!_&&o.isPlainObject(m)?ot(m,v,y,n):w?T&&k?(f&&(u.calc=!0),(f||n.newDataRevision)&&d()):T!==k?u.calc=!0:d():T&&k&&m.length===v.length&&String(m)===String(v)||d()}}}for(a in e)if(!(a in t)&&\"_\"!==a.charAt(0)&&\"function\"!=typeof e[a]){if(g(i=c(r.concat(a)))&&Array.isArray(e[a]))return void(u.calc=!0);d()}}function st(t){var e=t._fullLayout,r=t.getBoundingClientRect();if(!o.equalDomRects(r,e._lastBBox)){var n=e._invTransform=o.inverseTransformMatrix(o.getFullTransformMatrix(t));e._invScaleX=Math.sqrt(n[0][0]*n[0][0]+n[0][1]*n[0][1]+n[0][2]*n[0][2]),e._invScaleY=Math.sqrt(n[1][0]*n[1][0]+n[1][1]*n[1][1]+n[1][2]*n[1][2]),e._lastBBox=r}}function lt(t){var e=n.select(t),r=t._fullLayout;if(r._calcInverseTransform=st,r._calcInverseTransform(t),r._container=e.selectAll(\".plot-container\").data([0]),r._container.enter().insert(\"div\",\":first-child\").classed(\"plot-container\",!0).classed(\"plotly\",!0),r._paperdiv=r._container.selectAll(\".svg-container\").data([0]),r._paperdiv.enter().append(\"div\").classed(\"user-select-none\",!0).classed(\"svg-container\",!0).style(\"position\",\"relative\"),r._glcontainer=r._paperdiv.selectAll(\".gl-container\").data([{}]),r._glcontainer.enter().append(\"div\").classed(\"gl-container\",!0),r._paperdiv.selectAll(\".main-svg\").remove(),r._paperdiv.select(\".modebar-container\").remove(),r._paper=r._paperdiv.insert(\"svg\",\":first-child\").classed(\"main-svg\",!0),r._toppaper=r._paperdiv.append(\"svg\").classed(\"main-svg\",!0),r._modebardiv=r._paperdiv.append(\"div\"),delete r._modeBar,r._hoverpaper=r._paperdiv.append(\"svg\").classed(\"main-svg\",!0),!r._uid){var i={};n.selectAll(\"defs\").each((function(){this.id&&(i[this.id.split(\"-\")[1]]=1)})),r._uid=o.randstr(i)}r._paperdiv.selectAll(\".main-svg\").attr(y.svgAttrs),r._defs=r._paper.append(\"defs\").attr(\"id\",\"defs-\"+r._uid),r._clips=r._defs.append(\"g\").classed(\"clips\",!0),r._topdefs=r._toppaper.append(\"defs\").attr(\"id\",\"topdefs-\"+r._uid),r._topclips=r._topdefs.append(\"g\").classed(\"clips\",!0),r._bgLayer=r._paper.append(\"g\").classed(\"bglayer\",!0),r._draggers=r._paper.append(\"g\").classed(\"draglayer\",!0);var a=r._paper.append(\"g\").classed(\"layer-below\",!0);r._imageLowerLayer=a.append(\"g\").classed(\"imagelayer\",!0),r._shapeLowerLayer=a.append(\"g\").classed(\"shapelayer\",!0),r._cartesianlayer=r._paper.append(\"g\").classed(\"cartesianlayer\",!0),r._polarlayer=r._paper.append(\"g\").classed(\"polarlayer\",!0),r._ternarylayer=r._paper.append(\"g\").classed(\"ternarylayer\",!0),r._geolayer=r._paper.append(\"g\").classed(\"geolayer\",!0),r._funnelarealayer=r._paper.append(\"g\").classed(\"funnelarealayer\",!0),r._pielayer=r._paper.append(\"g\").classed(\"pielayer\",!0),r._treemaplayer=r._paper.append(\"g\").classed(\"treemaplayer\",!0),r._sunburstlayer=r._paper.append(\"g\").classed(\"sunburstlayer\",!0),r._indicatorlayer=r._toppaper.append(\"g\").classed(\"indicatorlayer\",!0),r._glimages=r._paper.append(\"g\").classed(\"glimages\",!0);var s=r._toppaper.append(\"g\").classed(\"layer-above\",!0);r._imageUpperLayer=s.append(\"g\").classed(\"imagelayer\",!0),r._shapeUpperLayer=s.append(\"g\").classed(\"shapelayer\",!0),r._infolayer=r._toppaper.append(\"g\").classed(\"infolayer\",!0),r._menulayer=r._toppaper.append(\"g\").classed(\"menulayer\",!0),r._zoomlayer=r._toppaper.append(\"g\").classed(\"zoomlayer\",!0),r._hoverlayer=r._hoverpaper.append(\"g\").classed(\"hoverlayer\",!0),r._modebardiv.classed(\"modebar-container\",!0).style(\"position\",\"absolute\").style(\"top\",\"0px\").style(\"right\",\"0px\"),t.emit(\"plotly_framework\")}r.animate=function(t,e,r){if(t=o.getGraphDiv(t),!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t+\". It's likely that you've failed to create a plot before animating it. For more details, see https://plotly.com/javascript/animations/\");var n=t._transitionData;n._frameQueue||(n._frameQueue=[]);var i=(r=h.supplyAnimationDefaults(r)).transition,a=r.frame;function s(t){return Array.isArray(i)?t>=i.length?i[0]:i[t]:i}function l(t){return Array.isArray(a)?t>=a.length?a[0]:a[t]:a}function c(t,e){var r=0;return function(){if(t&&++r===e)return t()}}return void 0===n._frameWaitingCnt&&(n._frameWaitingCnt=0),new Promise((function(a,u){function f(){n._currentFrame&&n._currentFrame.onComplete&&n._currentFrame.onComplete();var e=n._currentFrame=n._frameQueue.shift();if(e){var r=e.name?e.name.toString():null;t._fullLayout._currentFrame=r,n._lastFrameAt=Date.now(),n._timeToNext=e.frameOpts.duration,h.transition(t,e.frame.data,e.frame.layout,T.coerceTraceIndices(t,e.frame.traces),e.frameOpts,e.transitionOpts).then((function(){e.onComplete&&e.onComplete()})),t.emit(\"plotly_animatingframe\",{name:r,frame:e.frame,animation:{frame:e.frameOpts,transition:e.transitionOpts}})}else t.emit(\"plotly_animated\"),window.cancelAnimationFrame(n._animationRaf),n._animationRaf=null}function p(){t.emit(\"plotly_animating\"),n._lastFrameAt=-1/0,n._timeToNext=0,n._runningTransitions=0,n._currentFrame=null;var e=function(){n._animationRaf=window.requestAnimationFrame(e),Date.now()-n._lastFrameAt>n._timeToNext&&f()};e()}var d,g,m=0;function v(t){return Array.isArray(i)?m>=i.length?t.transitionOpts=i[m]:t.transitionOpts=i[0]:t.transitionOpts=i,m++,t}var y=[],x=null==e,b=Array.isArray(e);if(!x&&!b&&o.isPlainObject(e))y.push({type:\"object\",data:v(o.extendFlat({},e))});else if(x||-1!==[\"string\",\"number\"].indexOf(typeof e))for(d=0;d<n._frames.length;d++)(g=n._frames[d])&&(x||String(g.group)===String(e))&&y.push({type:\"byname\",name:String(g.name),data:v({name:g.name})});else if(b)for(d=0;d<e.length;d++){var _=e[d];-1!==[\"number\",\"string\"].indexOf(typeof _)?(_=String(_),y.push({type:\"byname\",name:_,data:v({name:_})})):o.isPlainObject(_)&&y.push({type:\"object\",data:v(o.extendFlat({},_))})}for(d=0;d<y.length;d++)if(\"byname\"===(g=y[d]).type&&!n._frameHash[g.data.name])return o.warn('animate failure: frame not found: \"'+g.data.name+'\"'),void u();-1!==[\"next\",\"immediate\"].indexOf(r.mode)&&function(){if(0!==n._frameQueue.length){for(;n._frameQueue.length;){var e=n._frameQueue.pop();e.onInterrupt&&e.onInterrupt()}t.emit(\"plotly_animationinterrupted\",[])}}(),\"reverse\"===r.direction&&y.reverse();var w=t._fullLayout._currentFrame;if(w&&r.fromcurrent){var k=-1;for(d=0;d<y.length;d++)if(\"byname\"===(g=y[d]).type&&g.name===w){k=d;break}if(k>0&&k<y.length-1){var M=[];for(d=0;d<y.length;d++)g=y[d],(\"byname\"!==y[d].type||d>k)&&M.push(g);y=M}}y.length>0?function(e){if(0!==e.length){for(var i=0;i<e.length;i++){var o;o=\"byname\"===e[i].type?h.computeFrame(t,e[i].name):e[i].data;var f=l(i),d=s(i);d.duration=Math.min(d.duration,f.duration);var g={frame:o,name:e[i].name,frameOpts:f,transitionOpts:d};i===e.length-1&&(g.onComplete=c(a,2),g.onInterrupt=u),n._frameQueue.push(g)}\"immediate\"===r.mode&&(n._lastFrameAt=-1/0),n._animationRaf||p()}}(y):(t.emit(\"plotly_animated\"),a())}))},r.addFrames=function(t,e,r){if(t=o.getGraphDiv(t),null==e)return Promise.resolve();if(!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t+\". It's likely that you've failed to create a plot before adding frames. For more details, see https://plotly.com/javascript/animations/\");var n,i,a,s,l=t._transitionData._frames,u=t._transitionData._frameHash;if(!Array.isArray(e))throw new Error(\"addFrames failure: frameList must be an Array of frame definitions\"+e);var f=l.length+2*e.length,p=[],d={};for(n=e.length-1;n>=0;n--)if(o.isPlainObject(e[n])){var g=e[n].name,m=(u[g]||d[g]||{}).name,v=e[n].name,y=u[m]||d[m];m&&v&&\"number\"==typeof v&&y&&S<5&&(S++,o.warn('addFrames: overwriting frame \"'+(u[m]||d[m]).name+'\" with a frame whose name of type \"number\" also equates to \"'+m+'\". This is valid but may potentially lead to unexpected behavior since all plotly.js frame names are stored internally as strings.'),5===S&&o.warn(\"addFrames: This API call has yielded too many of these warnings. For the rest of this call, further warnings about numeric frame names will be suppressed.\")),d[g]={name:g},p.push({frame:h.supplyFrameDefaults(e[n]),index:r&&void 0!==r[n]&&null!==r[n]?r[n]:f+n})}p.sort((function(t,e){return t.index>e.index?-1:t.index<e.index?1:0}));var x=[],b=[],_=l.length;for(n=p.length-1;n>=0;n--){if(\"number\"==typeof(i=p[n].frame).name&&o.warn(\"Warning: addFrames accepts frames with numeric names, but the numbers areimplicitly cast to strings\"),!i.name)for(;u[i.name=\"frame \"+t._transitionData._counter++];);if(u[i.name]){for(a=0;a<l.length&&(l[a]||{}).name!==i.name;a++);x.push({type:\"replace\",index:a,value:i}),b.unshift({type:\"replace\",index:a,value:l[a]})}else s=Math.max(0,Math.min(p[n].index,_)),x.push({type:\"insert\",index:s,value:i}),b.unshift({type:\"delete\",index:s}),_++}var w=h.modifyFrames,T=h.modifyFrames,k=[t,b],M=[t,x];return c&&c.add(t,w,k,T,M),h.modifyFrames(t,x)},r.deleteFrames=function(t,e){if(t=o.getGraphDiv(t),!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t);var r,n,i=t._transitionData._frames,a=[],s=[];if(!e)for(e=[],r=0;r<i.length;r++)e.push(r);for((e=e.slice()).sort(),r=e.length-1;r>=0;r--)n=e[r],a.push({type:\"delete\",index:n}),s.unshift({type:\"insert\",index:n,value:i[n]});var l=h.modifyFrames,u=h.modifyFrames,f=[t,s],p=[t,a];return c&&c.add(t,l,f,u,p),h.modifyFrames(t,a)},r.addTraces=function t(e,n,i){e=o.getGraphDiv(e);var a,s,l=[],u=r.deleteTraces,f=t,h=[e,l],p=[e,n];for(function(t,e,r){var n,i;if(!Array.isArray(t.data))throw new Error(\"gd.data must be an array.\");if(\"undefined\"==typeof e)throw new Error(\"traces must be defined.\");for(Array.isArray(e)||(e=[e]),n=0;n<e.length;n++)if(\"object\"!=typeof(i=e[n])||Array.isArray(i)||null===i)throw new Error(\"all values in traces array must be non-array objects\");if(\"undefined\"==typeof r||Array.isArray(r)||(r=[r]),\"undefined\"!=typeof r&&r.length!==e.length)throw new Error(\"if indices is specified, traces.length must equal indices.length\")}(e,n,i),Array.isArray(n)||(n=[n]),n=n.map((function(t){return o.extendFlat({},t)})),T.cleanData(n),a=0;a<n.length;a++)e.data.push(n[a]);for(a=0;a<n.length;a++)l.push(-n.length+a);if(\"undefined\"==typeof i)return s=r.redraw(e),c.add(e,u,h,f,p),s;Array.isArray(i)||(i=[i]);try{O(e,l,i)}catch(t){throw e.data.splice(e.data.length-n.length,n.length),t}return c.startSequence(e),c.add(e,u,h,f,p),s=r.moveTraces(e,l,i),c.stopSequence(e),s},r.deleteTraces=function t(e,n){e=o.getGraphDiv(e);var i,a,s=[],l=r.addTraces,u=t,f=[e,s,n],h=[e,n];if(\"undefined\"==typeof n)throw new Error(\"indices must be an integer or array of integers.\");for(Array.isArray(n)||(n=[n]),z(e,n,\"indices\"),(n=P(n,e.data.length-1)).sort(o.sorterDes),i=0;i<n.length;i+=1)a=e.data.splice(n[i],1)[0],s.push(a);var p=r.redraw(e);return c.add(e,l,f,u,h),p},r.extendTraces=function t(e,n,i,a){function s(t,e,r){var n,i;if(o.isTypedArray(t))if(r<0){var a=new t.constructor(0),s=R(t,e);r<0?(n=s,i=a):(n=a,i=s)}else if(n=new t.constructor(r),i=new t.constructor(t.length+e.length-r),r===e.length)n.set(e),i.set(t);else if(r<e.length){var l=e.length-r;n.set(e.subarray(l)),i.set(t),i.set(e.subarray(0,l),t.length)}else{var c=r-e.length,u=t.length-c;n.set(t.subarray(u)),n.set(e,c),i.set(t.subarray(0,u))}else n=t.concat(e),i=r>=0&&r<n.length?n.splice(0,n.length-r):[];return[n,i]}var l=D(e=o.getGraphDiv(e),n,i,a,s),u=r.redraw(e),f=[e,l.update,i,l.maxPoints];return c.add(e,r.prependTraces,f,t,arguments),u},r.moveTraces=function t(e,n,i){var a,s=[],l=[],u=t,f=t,h=[e=o.getGraphDiv(e),i,n],p=[e,n,i];if(O(e,n,i),n=Array.isArray(n)?n:[n],\"undefined\"==typeof i)for(i=[],a=0;a<n.length;a++)i.push(-n.length+a);for(i=Array.isArray(i)?i:[i],n=P(n,e.data.length-1),i=P(i,e.data.length-1),a=0;a<e.data.length;a++)-1===n.indexOf(a)&&s.push(e.data[a]);for(a=0;a<n.length;a++)l.push({newIndex:i[a],trace:e.data[n[a]]});for(l.sort((function(t,e){return t.newIndex-e.newIndex})),a=0;a<l.length;a+=1)s.splice(l[a].newIndex,0,l[a].trace);e.data=s;var d=r.redraw(e);return c.add(e,u,h,f,p),d},r.prependTraces=function t(e,n,i,a){function s(t,e,r){var n,i;if(o.isTypedArray(t))if(r<=0){var a=new t.constructor(0),s=R(e,t);r<0?(n=s,i=a):(n=a,i=s)}else if(n=new t.constructor(r),i=new t.constructor(t.length+e.length-r),r===e.length)n.set(e),i.set(t);else if(r<e.length){var l=e.length-r;n.set(e.subarray(0,l)),i.set(e.subarray(l)),i.set(t,l)}else{var c=r-e.length;n.set(e),n.set(t.subarray(0,c),e.length),i.set(t.subarray(c))}else n=e.concat(t),i=r>=0&&r<n.length?n.splice(r,n.length):[];return[n,i]}var l=D(e=o.getGraphDiv(e),n,i,a,s),u=r.redraw(e),f=[e,l.update,i,l.maxPoints];return c.add(e,r.extendTraces,f,t,arguments),u},r.newPlot=function(t,e,n,i){return t=o.getGraphDiv(t),h.cleanPlot([],{},t._fullData||[],t._fullLayout||{}),h.purge(t),r.plot(t,e,n,i)},r.plot=function(t,e,i,a){var s;if(t=o.getGraphDiv(t),l.init(t),o.isPlainObject(e)){var c=e;e=c.data,i=c.layout,a=c.config,s=c.frames}if(!1===l.triggerHandler(t,\"plotly_beforeplot\",[e,i,a]))return Promise.reject();e||i||o.isPlotDiv(t)||o.warn(\"Calling Plotly.plot as if redrawing but this container doesn't yet have a plot.\",t),I(t,a),i||(i={}),n.select(t).classed(\"js-plotly-plot\",!0),g.makeTester(),Array.isArray(t._promises)||(t._promises=[]);var f=0===(t.data||[]).length&&Array.isArray(e);Array.isArray(e)&&(T.cleanData(e),f?t.data=e:t.data.push.apply(t.data,e),t.empty=!1),t.layout&&!f||(t.layout=T.cleanLayout(i)),h.supplyDefaults(t);var m=t._fullLayout,y=m._has(\"cartesian\");if(!m._has(\"polar\")&&e&&e[0]&&e[0].r)return o.log(\"Legacy polar charts are deprecated!\"),function(t,e,r){var i=n.select(t).selectAll(\".plot-container\").data([0]);i.enter().insert(\"div\",\":first-child\").classed(\"plot-container plotly\",!0);var a=i.selectAll(\".svg-container\").data([0]);a.enter().append(\"div\").classed(\"svg-container\",!0).style(\"position\",\"relative\"),a.html(\"\"),e&&(t.data=e);r&&(t.layout=r);p.manager.fillLayout(t),a.style({width:t._fullLayout.width+\"px\",height:t._fullLayout.height+\"px\"}),t.framework=p.manager.framework(t),t.framework({data:t.data,layout:t.layout},a.node()),t.framework.setUndoPoint();var s=t.framework.svg(),l=1,c=t._fullLayout.title?t._fullLayout.title.text:\"\";\"\"!==c&&c||(l=0);var u=function(){this.call(x.convertToTspans,t)},f=s.select(\".title-group text\").call(u);if(t._context.edits.titleText){var d=o._(t,\"Click to enter Plot title\");c&&c!==d||(l=.2,f.attr({\"data-unformatted\":d}).text(d).style({opacity:l}).on(\"mouseover.opacity\",(function(){n.select(this).transition().duration(100).style(\"opacity\",1)})).on(\"mouseout.opacity\",(function(){n.select(this).transition().duration(1e3).style(\"opacity\",0)})));var g=function(){this.call(x.makeEditable,{gd:t}).on(\"edit\",(function(e){t.framework({layout:{title:{text:e}}}),this.text(e).call(u),this.call(g)})).on(\"cancel\",(function(){var t=this.attr(\"data-unformatted\");this.text(t).call(u)}))};f.call(g)}return t._context.setBackground(t,t._fullLayout.paper_bgcolor),h.addLinks(t),Promise.resolve()}(t,e,i);m._replotting=!0,(f||m._shouldCreateBgLayer)&&(lt(t),m._shouldCreateBgLayer&&delete m._shouldCreateBgLayer),t.framework!==lt&&(t.framework=lt,lt(t)),g.initGradients(t),f&&d.saveShowSpikeInitial(t);var b=!t.calcdata||t.calcdata.length!==(t._fullData||[]).length;b&&h.doCalcdata(t);for(var _=0;_<t.calcdata.length;_++)t.calcdata[_][0].trace=t._fullData[_];t._context.responsive?t._responsiveChartHandler||(t._responsiveChartHandler=function(){o.isHidden(t)||h.resize(t)},window.addEventListener(\"resize\",t._responsiveChartHandler)):o.clearResponsive(t);var w=o.extendFlat({},m._size),M=0;function A(){if(h.clearAutoMarginIds(t),k.drawMarginPushers(t),d.allowAutoMargin(t),m._has(\"pie\"))for(var e=t._fullData,r=0;r<e.length;r++){var n=e[r];\"pie\"===n.type&&n.automargin&&h.allowAutoMargin(t,\"pie.\"+n.uid+\".automargin\")}return h.doAutoMargin(t),h.previousPromises(t)}function S(){t._transitioning||(k.doAutoRangeAndConstraints(t),f&&d.saveRangeInitial(t),u.getComponentMethod(\"rangeslider\",\"calcAutorange\")(t))}var C=[h.previousPromises,function(){if(s)return r.addFrames(t,s)},function e(){for(var r=m._basePlotModules,n=0;n<r.length;n++)r[n].drawFramework&&r[n].drawFramework(t);if(!m._glcanvas&&m._has(\"gl\")&&(m._glcanvas=m._glcontainer.selectAll(\".gl-canvas\").data([{key:\"contextLayer\",context:!0,pick:!1},{key:\"focusLayer\",context:!1,pick:!1},{key:\"pickLayer\",context:!1,pick:!0}],(function(t){return t.key})),m._glcanvas.enter().append(\"canvas\").attr(\"class\",(function(t){return\"gl-canvas gl-canvas-\"+t.key.replace(\"Layer\",\"\")})).style({position:\"absolute\",top:0,left:0,overflow:\"visible\",\"pointer-events\":\"none\"})),m._glcanvas){m._glcanvas.attr(\"width\",m.width).attr(\"height\",m.height);var i=m._glcanvas.data()[0].regl;if(i&&(Math.floor(m.width)!==i._gl.drawingBufferWidth||Math.floor(m.height)!==i._gl.drawingBufferHeight)){var a=\"WebGL context buffer and canvas dimensions do not match due to browser/WebGL bug.\";if(!M)return o.log(a+\" Clearing graph and plotting again.\"),h.cleanPlot([],{},t._fullData,m),h.supplyDefaults(t),m=t._fullLayout,h.doCalcdata(t),M++,e();o.error(a)}}return\"h\"===m.modebar.orientation?m._modebardiv.style(\"height\",null).style(\"width\",\"100%\"):m._modebardiv.style(\"width\",null).style(\"height\",m.height+\"px\"),h.previousPromises(t)},A,function(){if(h.didMarginChange(w,m._size))return o.syncOrAsync([A,k.layoutStyles],t)}];y&&C.push((function(){if(b)return o.syncOrAsync([u.getComponentMethod(\"shapes\",\"calcAutorange\"),u.getComponentMethod(\"annotations\",\"calcAutorange\"),S],t);S()})),C.push(k.layoutStyles),y&&C.push((function(){return d.draw(t,f?\"\":\"redraw\")}),(function(t){t._fullLayout._insideTickLabelsAutorange&&q(t,t._fullLayout._insideTickLabelsAutorange).then((function(){t._fullLayout._insideTickLabelsAutorange=void 0}))})),C.push(k.drawData,k.finalDraw,v,h.addLinks,h.rehover,h.redrag,h.doAutoMargin,(function(t){t._fullLayout._insideTickLabelsAutorange&&f&&d.saveRangeInitial(t,!0)}),h.previousPromises);var L=o.syncOrAsync(C,t);return L&&L.then||(L=Promise.resolve()),L.then((function(){return E(t),t}))},r.purge=function(t){var e=(t=o.getGraphDiv(t))._fullLayout||{},r=t._fullData||[];return h.cleanPlot([],{},r,e),h.purge(t),l.purge(t),e._container&&e._container.remove(),delete t._context,t},r.react=function(t,e,n,i){var a,l;t=o.getGraphDiv(t),T.clearPromiseQueue(t);var c=t._fullData,p=t._fullLayout;if(o.isPlotDiv(t)&&c&&p){if(o.isPlainObject(e)){var d=e;e=d.data,n=d.layout,i=d.config,a=d.frames}var g=!1;if(i){var m=o.extendDeep({},t._context);t._context=void 0,I(t,i),g=function t(e,r){var n;for(n in e)if(\"_\"!==n.charAt(0)){var i=e[n],a=r[n];if(i!==a)if(o.isPlainObject(i)&&o.isPlainObject(a)){if(t(i,a))return!0}else{if(!Array.isArray(i)||!Array.isArray(a))return!0;if(i.length!==a.length)return!0;for(var s=0;s<i.length;s++)if(i[s]!==a[s]){if(!o.isPlainObject(i[s])||!o.isPlainObject(a[s]))return!0;if(t(i[s],a[s]))return!0}}}}(m,t._context)}t.data=e||[],T.cleanData(t.data),t.layout=n||{},T.cleanLayout(t.layout),function(t,e,r,n){var i,a,l,c,u,f,h,p,d=n._preGUI,g=[],m={};for(i in d){if(u=et(i,$)){if(a=u.attr||u.head+\".uirevision\",(c=(l=s(n,a).get())&&rt(a,e))&&c===l&&(null===(f=d[i])&&(f=void 0),at(p=(h=s(e,i)).get(),f))){void 0===p&&\"autorange\"===i.substr(i.length-9)&&g.push(i.substr(0,i.length-10)),h.set(B(s(n,i).get()));continue}}else o.warn(\"unrecognized GUI edit: \"+i);delete d[i],\"range[\"===i.substr(i.length-8,6)&&(m[i.substr(0,i.length-9)]=1)}for(var v=0;v<g.length;v++){var y=g[v];if(m[y]){var x=s(e,y).get();x&&delete x.autorange}}var b=n._tracePreGUI;for(var _ in b){var w,T=b[_],k=null;for(i in T){if(!k){var M=nt(_,r);if(M<0){delete b[_];break}var A=it(_,t,(w=r[M]._fullInput).index);if(A<0){delete b[_];break}k=t[A]}if(u=et(i,tt)){if(u.attr?c=(l=s(n,u.attr).get())&&rt(u.attr,e):(l=w.uirevision,void 0===(c=k.uirevision)&&(c=e.uirevision)),c&&c===l&&(null===(f=T[i])&&(f=void 0),at(p=(h=s(k,i)).get(),f))){h.set(B(s(w,i).get()));continue}}else o.warn(\"unrecognized GUI edit: \"+i+\" in trace uid \"+_);delete T[i]}}}(t.data,t.layout,c,p),h.supplyDefaults(t,{skipUpdateCalc:!0});var v=t._fullData,y=t._fullLayout,x=void 0===y.datarevision,b=y.transition,_=function(t,e,r,n,i){var a=M.layoutFlags();function o(t){return f.getLayoutValObject(r,t)}a.arrays={},a.rangesAltered={},a.nChanges=0,a.nChangesAnim=0,ot(e,r,[],{getValObject:o,flags:a,immutable:n,transition:i,gd:t}),(a.plot||a.calc)&&(a.layoutReplot=!0);i&&a.nChanges&&a.nChangesAnim&&(a.anim=a.nChanges===a.nChangesAnim?\"all\":\"some\");return a}(t,p,y,x,b),w=_.newDataRevision,A=function(t,e,r,n,i,a){var o=e.length===r.length;if(!i&&!o)return{fullReplot:!0,calc:!0};var s,l,c=M.traceFlags();c.arrays={},c.nChanges=0,c.nChangesAnim=0;var u={getValObject:function(t){var e=f.getTraceValObject(l,t);return!l._module.animatable&&e.anim&&(e.anim=!1),e},flags:c,immutable:n,transition:i,newDataRevision:a,gd:t},p={};for(s=0;s<e.length;s++)if(r[s]){if(l=r[s]._fullInput,h.hasMakesDataTransform(l)&&(l=r[s]),p[l.uid])continue;p[l.uid]=1,ot(e[s]._fullInput,l,[],u)}(c.calc||c.plot)&&(c.fullReplot=!0);i&&c.nChanges&&c.nChangesAnim&&(c.anim=c.nChanges===c.nChangesAnim&&o?\"all\":\"some\");return c}(t,c,v,x,b,w);if(J(t)&&(_.layoutReplot=!0),A.calc||_.calc){t.calcdata=void 0;for(var S=Object.getOwnPropertyNames(y),C=0;C<S.length;C++){var L=S[C],P=L.substring(0,5);if(\"xaxis\"===P||\"yaxis\"===P){var z=y[L]._emptyCategories;z&&z()}}}else h.supplyDefaultsUpdateCalc(t.calcdata,v);var O=[];if(a&&(t._transitionData={},h.createTransitionData(t),O.push((function(){return r.addFrames(t,a)}))),y.transition&&!g&&(A.anim||_.anim))_.ticks&&O.push(k.doTicksRelayout),h.doCalcdata(t),k.doAutoRangeAndConstraints(t),O.push((function(){return h.transitionFromReact(t,A,_,p)}));else if(A.fullReplot||_.layoutReplot||g)t._fullLayout._skipDefaults=!0,O.push(r.plot);else{for(var D in _.arrays){var R=_.arrays[D];if(R.length){var F=u.getComponentMethod(D,\"drawOne\");if(F!==o.noop)for(var N=0;N<R.length;N++)F(t,R[N]);else{var j=u.getComponentMethod(D,\"draw\");if(j===o.noop)throw new Error(\"cannot draw components: \"+D);j(t)}}}O.push(h.previousPromises),A.style&&O.push(k.doTraceStyle),(A.colorbars||_.colorbars)&&O.push(k.doColorBars),_.legend&&O.push(k.doLegend),_.layoutstyle&&O.push(k.layoutStyles),_.axrange&&G(O),_.ticks&&O.push(k.doTicksRelayout),_.modebar&&O.push(k.doModeBar),_.camera&&O.push(k.doCamera),O.push(E)}O.push(h.rehover,h.redrag),(l=o.syncOrAsync(O,t))&&l.then||(l=Promise.resolve(t))}else l=r.newPlot(t,e,n,i);return l.then((function(){return t.emit(\"plotly_react\",{data:e,layout:n}),t}))},r.redraw=function(t){if(t=o.getGraphDiv(t),!o.isPlotDiv(t))throw new Error(\"This element is not a Plotly plot: \"+t);return T.cleanData(t.data),T.cleanLayout(t.layout),t.calcdata=void 0,r.plot(t).then((function(){return t.emit(\"plotly_redraw\"),t}))},r.relayout=q,r.restyle=F,r.setPlotConfig=function(t){return o.extendFlat(_,t)},r.update=K,r._guiRelayout=Q(q),r._guiRestyle=Q(F),r._guiUpdate=Q(K),r._storeDirectGUIEdit=function(t,e,r){for(var n in r){j(n,s(t,n).get(),r[n],e)}}},{\"../components/color\":643,\"../components/drawing\":665,\"../constants/xmlns_namespaces\":754,\"../lib\":778,\"../lib/events\":767,\"../lib/queue\":794,\"../lib/svg_text_utils\":803,\"../plots/cartesian/axes\":828,\"../plots/cartesian/constants\":834,\"../plots/cartesian/graph_interact\":837,\"../plots/cartesian/select\":847,\"../plots/plots\":891,\"../plots/polar/legacy\":899,\"../registry\":911,\"./edit_types\":810,\"./helpers\":811,\"./manage_arrays\":813,\"./plot_config\":815,\"./plot_schema\":816,\"./subroutines\":818,d3:169,\"fast-isnumeric\":241,\"has-hover\":440}],815:[function(t,e,r){\"use strict\";var n={staticPlot:{valType:\"boolean\",dflt:!1},plotlyServerURL:{valType:\"string\",dflt:\"\"},editable:{valType:\"boolean\",dflt:!1},edits:{annotationPosition:{valType:\"boolean\",dflt:!1},annotationTail:{valType:\"boolean\",dflt:!1},annotationText:{valType:\"boolean\",dflt:!1},axisTitleText:{valType:\"boolean\",dflt:!1},colorbarPosition:{valType:\"boolean\",dflt:!1},colorbarTitleText:{valType:\"boolean\",dflt:!1},legendPosition:{valType:\"boolean\",dflt:!1},legendText:{valType:\"boolean\",dflt:!1},shapePosition:{valType:\"boolean\",dflt:!1},titleText:{valType:\"boolean\",dflt:!1}},autosizable:{valType:\"boolean\",dflt:!1},responsive:{valType:\"boolean\",dflt:!1},fillFrame:{valType:\"boolean\",dflt:!1},frameMargins:{valType:\"number\",dflt:0,min:0,max:.5},scrollZoom:{valType:\"flaglist\",flags:[\"cartesian\",\"gl3d\",\"geo\",\"mapbox\"],extras:[!0,!1],dflt:\"gl3d+geo+mapbox\"},doubleClick:{valType:\"enumerated\",values:[!1,\"reset\",\"autosize\",\"reset+autosize\"],dflt:\"reset+autosize\"},doubleClickDelay:{valType:\"number\",dflt:300,min:0},showAxisDragHandles:{valType:\"boolean\",dflt:!0},showAxisRangeEntryBoxes:{valType:\"boolean\",dflt:!0},showTips:{valType:\"boolean\",dflt:!0},showLink:{valType:\"boolean\",dflt:!1},linkText:{valType:\"string\",dflt:\"Edit chart\",noBlank:!0},sendData:{valType:\"boolean\",dflt:!0},showSources:{valType:\"any\",dflt:!1},displayModeBar:{valType:\"enumerated\",values:[\"hover\",!0,!1],dflt:\"hover\"},showSendToCloud:{valType:\"boolean\",dflt:!1},showEditInChartStudio:{valType:\"boolean\",dflt:!1},modeBarButtonsToRemove:{valType:\"any\",dflt:[]},modeBarButtonsToAdd:{valType:\"any\",dflt:[]},modeBarButtons:{valType:\"any\",dflt:!1},toImageButtonOptions:{valType:\"any\",dflt:{}},displaylogo:{valType:\"boolean\",dflt:!0},watermark:{valType:\"boolean\",dflt:!1},plotGlPixelRatio:{valType:\"number\",dflt:2,min:1,max:4},setBackground:{valType:\"any\",dflt:\"transparent\"},topojsonURL:{valType:\"string\",noBlank:!0,dflt:\"https://cdn.plot.ly/\"},mapboxAccessToken:{valType:\"string\",dflt:null},logging:{valType:\"integer\",min:0,max:2,dflt:1},notifyOnLogging:{valType:\"integer\",min:0,max:2,dflt:0},queueLength:{valType:\"integer\",min:0,dflt:0},globalTransforms:{valType:\"any\",dflt:[]},locale:{valType:\"string\",dflt:\"en-US\"},locales:{valType:\"any\",dflt:{}}},i={};!function t(e,r){for(var n in e){var i=e[n];i.valType?r[n]=i.dflt:(r[n]||(r[n]={}),t(i,r[n]))}}(n,i),e.exports={configAttributes:n,dfltConfig:i}},{}],816:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),i=t(\"../lib\"),a=t(\"../plots/attributes\"),o=t(\"../plots/layout_attributes\"),s=t(\"../plots/frame_attributes\"),l=t(\"../plots/animation_attributes\"),c=t(\"./plot_config\").configAttributes,u=t(\"../plots/polar/legacy/area_attributes\"),f=t(\"../plots/polar/legacy/axis_attributes\"),h=t(\"./edit_types\"),p=i.extendFlat,d=i.extendDeepAll,g=i.isPlainObject,m=i.isArrayOrTypedArray,v=i.nestedProperty,y=i.valObjectMeta,x=[\"_isSubplotObj\",\"_isLinkedToArray\",\"_arrayAttrRegexps\",\"_deprecated\"];function b(t,e,r){if(!t)return!1;if(t._isLinkedToArray)if(_(e[r]))r++;else if(r<e.length)return!1;for(;r<e.length;r++){var n=t[e[r]];if(!g(n))break;if(t=n,r===e.length-1)break;if(t._isLinkedToArray){if(!_(e[++r]))return!1}else if(\"info_array\"===t.valType){var i=e[++r];if(!_(i))return!1;var a=t.items;if(Array.isArray(a)){if(i>=a.length)return!1;if(2===t.dimensions){if(r++,e.length===r)return t;var o=e[r];if(!_(o))return!1;t=a[i][o]}else t=a[i]}else t=a}}return t}function _(t){return t===Math.round(t)&&t>=0}function w(){var t,e,r={};for(t in d(r,o),n.subplotsRegistry){if((e=n.subplotsRegistry[t]).layoutAttributes)if(Array.isArray(e.attr))for(var i=0;i<e.attr.length;i++)M(r,e,e.attr[i]);else M(r,e,\"subplot\"===e.attr?e.name:e.attr)}for(t in r=function(t){return p(t,{radialaxis:f.radialaxis,angularaxis:f.angularaxis}),p(t,f.layout),t}(r),n.componentsRegistry){var a=(e=n.componentsRegistry[t]).schema;if(a&&(a.subplots||a.layout)){var s=a.subplots;if(s&&s.xaxis&&!s.yaxis)for(var l in s.xaxis)delete r.yaxis[l]}else\"colorscale\"===e.name?d(r,e.layoutAttributes):e.layoutAttributes&&A(r,e.layoutAttributes,e.name)}return{layoutAttributes:k(r)}}function T(){var t={frames:d({},s)};return k(t),t.frames}function k(t){return function(t){r.crawl(t,(function(t,e,n){r.isValObject(t)?\"data_array\"===t.valType?(t.role=\"data\",n[e+\"src\"]={valType:\"string\",editType:\"none\"}):!0===t.arrayOk&&(n[e+\"src\"]={valType:\"string\",editType:\"none\"}):g(t)&&(t.role=\"object\")}))}(t),function(t){r.crawl(t,(function(t,e,r){if(t){var n=t._isLinkedToArray;n&&(delete t._isLinkedToArray,r[e]={items:{}},r[e].items[n]=t,r[e].role=\"object\")}}))}(t),function(t){!function t(e){for(var r in e)if(g(e[r]))t(e[r]);else if(Array.isArray(e[r]))for(var n=0;n<e[r].length;n++)t(e[r][n]);else e[r]instanceof RegExp&&(e[r]=e[r].toString())}(t)}(t),t}function M(t,e,r){var n=v(t,r),i=d({},e.layoutAttributes);i._isSubplotObj=!0,n.set(i)}function A(t,e,r){var n=v(t,r);n.set(d(n.get()||{},e))}r.IS_SUBPLOT_OBJ=\"_isSubplotObj\",r.IS_LINKED_TO_ARRAY=\"_isLinkedToArray\",r.DEPRECATED=\"_deprecated\",r.UNDERSCORE_ATTRS=x,r.get=function(){var t={};n.allTypes.concat(\"area\").forEach((function(e){t[e]=function(t){var e,i;\"area\"===t?(e={attributes:u},i={}):(e=n.modules[t]._module,i=e.basePlotModule);var o={type:null},s=d({},a),l=d({},e.attributes);r.crawl(l,(function(t,e,r,n,i){v(s,i).set(void 0),void 0===t&&v(l,i).set(void 0)})),d(o,s),n.traceIs(t,\"noOpacity\")&&delete o.opacity;n.traceIs(t,\"showLegend\")||(delete o.showlegend,delete o.legendgroup);n.traceIs(t,\"noHover\")&&(delete o.hoverinfo,delete o.hoverlabel);e.selectPoints||delete o.selectedpoints;d(o,l),i.attributes&&d(o,i.attributes);o.type=t;var c={meta:e.meta||{},categories:e.categories||{},animatable:Boolean(e.animatable),type:t,attributes:k(o)};if(e.layoutAttributes){var f={};d(f,e.layoutAttributes),c.layoutAttributes=k(f)}e.animatable||r.crawl(c,(function(t){r.isValObject(t)&&\"anim\"in t&&delete t.anim}));return c}(e)}));var e={};return Object.keys(n.transformsRegistry).forEach((function(t){e[t]=function(t){var e=n.transformsRegistry[t],r=d({},e.attributes);return Object.keys(n.componentsRegistry).forEach((function(e){var i=n.componentsRegistry[e];i.schema&&i.schema.transforms&&i.schema.transforms[t]&&Object.keys(i.schema.transforms[t]).forEach((function(e){A(r,i.schema.transforms[t][e],e)}))})),{attributes:k(r)}}(t)})),{defs:{valObjects:y,metaKeys:x.concat([\"description\",\"role\",\"editType\",\"impliedEdits\"]),editType:{traces:h.traces,layout:h.layout},impliedEdits:{}},traces:t,layout:w(),transforms:e,frames:T(),animation:k(l),config:k(c)}},r.crawl=function(t,e,n,i){var a=n||0;i=i||\"\",Object.keys(t).forEach((function(n){var o=t[n];if(-1===x.indexOf(n)){var s=(i?i+\".\":\"\")+n;e(o,n,t,a,s),r.isValObject(o)||g(o)&&\"impliedEdits\"!==n&&r.crawl(o,e,a+1,s)}}))},r.isValObject=function(t){return t&&void 0!==t.valType},r.findArrayAttributes=function(t){var e,n,i=[],o=[],s=[];function l(t,r,a,l){o=o.slice(0,l).concat([r]),s=s.slice(0,l).concat([t&&t._isLinkedToArray]),t&&(\"data_array\"===t.valType||!0===t.arrayOk)&&!(\"colorbar\"===o[l-1]&&(\"ticktext\"===r||\"tickvals\"===r))&&function t(e,r,a){var l=e[o[r]],c=a+o[r];if(r===o.length-1)m(l)&&i.push(n+c);else if(s[r]){if(Array.isArray(l))for(var u=0;u<l.length;u++)g(l[u])&&t(l[u],r+1,c+\"[\"+u+\"].\")}else g(l)&&t(l,r+1,c+\".\")}(e,0,\"\")}e=t,n=\"\",r.crawl(a,l),t._module&&t._module.attributes&&r.crawl(t._module.attributes,l);var c=t.transforms;if(c)for(var u=0;u<c.length;u++){var f=c[u],h=f._module;h&&(n=\"transforms[\"+u+\"].\",e=f,r.crawl(h.attributes,l))}return i},r.getTraceValObject=function(t,e){var r,i,o=e[0],s=1;if(\"transforms\"===o){if(1===e.length)return a.transforms;var l=t.transforms;if(!Array.isArray(l)||!l.length)return!1;var c=e[1];if(!_(c)||c>=l.length)return!1;i=(r=(n.transformsRegistry[l[c].type]||{}).attributes)&&r[e[2]],s=3}else if(\"area\"===t.type)i=u[o];else{var f=t._module;if(f||(f=(n.modules[t.type||a.type.dflt]||{})._module),!f)return!1;if(!(i=(r=f.attributes)&&r[o])){var h=f.basePlotModule;h&&h.attributes&&(i=h.attributes[o])}i||(i=a[o])}return b(i,e,s)},r.getLayoutValObject=function(t,e){return b(function(t,e){var r,i,a,s,l=t._basePlotModules;if(l){var c;for(r=0;r<l.length;r++){if((a=l[r]).attrRegex&&a.attrRegex.test(e)){if(a.layoutAttrOverrides)return a.layoutAttrOverrides;!c&&a.layoutAttributes&&(c=a.layoutAttributes)}var u=a.baseLayoutAttrOverrides;if(u&&e in u)return u[e]}if(c)return c}var h=t._modules;if(h)for(r=0;r<h.length;r++)if((s=h[r].layoutAttributes)&&e in s)return s[e];for(i in n.componentsRegistry){if(\"colorscale\"===(a=n.componentsRegistry[i]).name&&0===e.indexOf(\"coloraxis\"))return a.layoutAttributes[e];if(!a.schema&&e===a.name)return a.layoutAttributes}if(e in o)return o[e];if(\"radialaxis\"===e||\"angularaxis\"===e)return f[e];return f.layout[e]||!1}(t,e[0]),e,1)}},{\"../lib\":778,\"../plots/animation_attributes\":822,\"../plots/attributes\":824,\"../plots/frame_attributes\":857,\"../plots/layout_attributes\":882,\"../plots/polar/legacy/area_attributes\":897,\"../plots/polar/legacy/axis_attributes\":898,\"../registry\":911,\"./edit_types\":810,\"./plot_config\":815}],817:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"../plots/attributes\"),a={name:{valType:\"string\",editType:\"none\"}};function o(t){return t&&\"string\"==typeof t}function s(t){var e=t.length-1;return\"s\"!==t.charAt(e)&&n.warn(\"bad argument to arrayDefaultKey: \"+t),t.substr(0,t.length-1)+\"defaults\"}a.templateitemname={valType:\"string\",editType:\"calc\"},r.templatedArray=function(t,e){return e._isLinkedToArray=t,e.name=a.name,e.templateitemname=a.templateitemname,e},r.traceTemplater=function(t){var e,r,a={};for(e in t)r=t[e],Array.isArray(r)&&r.length&&(a[e]=0);return{newTrace:function(o){var s={type:e=n.coerce(o,{},i,\"type\"),_template:null};if(e in a){r=t[e];var l=a[e]%r.length;a[e]++,s._template=r[l]}return s}}},r.newContainer=function(t,e,r){var i=t._template,a=i&&(i[e]||r&&i[r]);return n.isPlainObject(a)||(a=null),t[e]={_template:a}},r.arrayTemplater=function(t,e,r){var n=t._template,i=n&&n[s(e)],a=n&&n[e];Array.isArray(a)&&a.length||(a=[]);var l={};return{newItem:function(t){var e={name:t.name,_input:t},n=e.templateitemname=t.templateitemname;if(!o(n))return e._template=i,e;for(var s=0;s<a.length;s++){var c=a[s];if(c.name===n)return l[n]=1,e._template=c,e}return e[r]=t[r]||!1,e._template=!1,e},defaultItems:function(){for(var t=[],e=0;e<a.length;e++){var r=a[e],n=r.name;if(o(n)&&!l[n]){var i={_template:r,name:n,_input:{_templateitemname:n}};i.templateitemname=r.templateitemname,t.push(i),l[n]=1}}return t}}},r.arrayDefaultKey=s,r.arrayEditor=function(t,e,r){var i=(n.nestedProperty(t,e).get()||[]).length,a=r._index,o=a>=i&&(r._input||{})._templateitemname;o&&(a=i);var s,l=e+\"[\"+a+\"]\";function c(){s={},o&&(s[l]={},s[l].templateitemname=o)}function u(t,e){o?n.nestedProperty(s[l],t).set(e):s[l+\".\"+t]=e}function f(){var t=s;return c(),t}return c(),{modifyBase:function(t,e){s[t]=e},modifyItem:u,getUpdateObj:f,applyUpdate:function(e,r){e&&u(e,r);var i=f();for(var a in i)n.nestedProperty(t,a).set(i[a])}}}},{\"../lib\":778,\"../plots/attributes\":824}],818:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../registry\"),a=t(\"../plots/plots\"),o=t(\"../lib\"),s=t(\"../lib/clear_gl_canvases\"),l=t(\"../components/color\"),c=t(\"../components/drawing\"),u=t(\"../components/titles\"),f=t(\"../components/modebar\"),h=t(\"../plots/cartesian/axes\"),p=t(\"../constants/alignment\"),d=t(\"../plots/cartesian/constraints\"),g=d.enforce,m=d.clean,v=t(\"../plots/cartesian/autorange\").doAutoRange;function y(t,e,r){for(var n=0;n<r.length;n++){var i=r[n][0],a=r[n][1];if(!(i[0]>=t[1]||i[1]<=t[0])&&(a[0]<e[1]&&a[1]>e[0]))return!0}return!1}function x(t){var e,i,s,u,d,g,m=t._fullLayout,v=m._size,x=v.p,_=h.list(t,\"\",!0);if(m._paperdiv.style({width:t._context.responsive&&m.autosize&&!t._context._hasZeroWidth&&!t.layout.width?\"100%\":m.width+\"px\",height:t._context.responsive&&m.autosize&&!t._context._hasZeroHeight&&!t.layout.height?\"100%\":m.height+\"px\"}).selectAll(\".main-svg\").call(c.setSize,m.width,m.height),t._context.setBackground(t,m.paper_bgcolor),r.drawMainTitle(t),f.manage(t),!m._has(\"cartesian\"))return a.previousPromises(t);function T(t,e,r){var n=t._lw/2;return\"x\"===t._id.charAt(0)?e?\"top\"===r?e._offset-x-n:e._offset+e._length+x+n:v.t+v.h*(1-(t.position||0))+n%1:e?\"right\"===r?e._offset+e._length+x+n:e._offset-x-n:v.l+v.w*(t.position||0)+n%1}for(e=0;e<_.length;e++){var k=(u=_[e])._anchorAxis;u._linepositions={},u._lw=c.crispRound(t,u.linewidth,1),u._mainLinePosition=T(u,k,u.side),u._mainMirrorPosition=u.mirror&&k?T(u,k,p.OPPOSITE_SIDE[u.side]):null}var M=[],A=[],S=[],E=1===l.opacity(m.paper_bgcolor)&&1===l.opacity(m.plot_bgcolor)&&m.paper_bgcolor===m.plot_bgcolor;for(i in m._plots)if((s=m._plots[i]).mainplot)s.bg&&s.bg.remove(),s.bg=void 0;else{var C=s.xaxis.domain,L=s.yaxis.domain,I=s.plotgroup;if(y(C,L,S)){var P=I.node(),z=s.bg=o.ensureSingle(I,\"rect\",\"bg\");P.insertBefore(z.node(),P.childNodes[0]),A.push(i)}else I.select(\"rect.bg\").remove(),S.push([C,L]),E||(M.push(i),A.push(i))}var O,D,R,F,B,N,j,U,V,q,H,G,Y,W=m._bgLayer.selectAll(\".bg\").data(M);for(W.enter().append(\"rect\").classed(\"bg\",!0),W.exit().remove(),W.each((function(t){m._plots[t].bg=n.select(this)})),e=0;e<A.length;e++)s=m._plots[A[e]],d=s.xaxis,g=s.yaxis,s.bg&&void 0!==d._offset&&void 0!==g._offset&&s.bg.call(c.setRect,d._offset-x,g._offset-x,d._length+2*x,g._length+2*x).call(l.fill,m.plot_bgcolor).style(\"stroke-width\",0);if(!m._hasOnlyLargeSploms)for(i in m._plots){s=m._plots[i],d=s.xaxis,g=s.yaxis;var X,Z,J=s.clipId=\"clip\"+m._uid+i+\"plot\",K=o.ensureSingleById(m._clips,\"clipPath\",J,(function(t){t.classed(\"plotclip\",!0).append(\"rect\")}));s.clipRect=K.select(\"rect\").attr({width:d._length,height:g._length}),c.setTranslate(s.plot,d._offset,g._offset),s._hasClipOnAxisFalse?(X=null,Z=J):(X=J,Z=null),c.setClipUrl(s.plot,X,t),s.layerClipId=Z}function Q(t){return\"M\"+O+\",\"+t+\"H\"+D}function $(t){return\"M\"+d._offset+\",\"+t+\"h\"+d._length}function tt(t){return\"M\"+t+\",\"+U+\"V\"+j}function et(t){return\"M\"+t+\",\"+g._offset+\"v\"+g._length}function rt(t,e,r){if(!t.showline||i!==t._mainSubplot)return\"\";if(!t._anchorAxis)return r(t._mainLinePosition);var n=e(t._mainLinePosition);return t.mirror&&(n+=e(t._mainMirrorPosition)),n}for(i in m._plots){s=m._plots[i],d=s.xaxis,g=s.yaxis;var nt=\"M0,0\";b(d,i)&&(B=w(d,\"left\",g,_),O=d._offset-(B?x+B:0),N=w(d,\"right\",g,_),D=d._offset+d._length+(N?x+N:0),R=T(d,g,\"bottom\"),F=T(d,g,\"top\"),!(Y=!d._anchorAxis||i!==d._mainSubplot)||\"allticks\"!==d.mirror&&\"all\"!==d.mirror||(d._linepositions[i]=[R,F]),nt=rt(d,Q,$),Y&&d.showline&&(\"all\"===d.mirror||\"allticks\"===d.mirror)&&(nt+=Q(R)+Q(F)),s.xlines.style(\"stroke-width\",d._lw+\"px\").call(l.stroke,d.showline?d.linecolor:\"rgba(0,0,0,0)\")),s.xlines.attr(\"d\",nt);var it=\"M0,0\";b(g,i)&&(H=w(g,\"bottom\",d,_),j=g._offset+g._length+(H?x:0),G=w(g,\"top\",d,_),U=g._offset-(G?x:0),V=T(g,d,\"left\"),q=T(g,d,\"right\"),!(Y=!g._anchorAxis||i!==g._mainSubplot)||\"allticks\"!==g.mirror&&\"all\"!==g.mirror||(g._linepositions[i]=[V,q]),it=rt(g,tt,et),Y&&g.showline&&(\"all\"===g.mirror||\"allticks\"===g.mirror)&&(it+=tt(V)+tt(q)),s.ylines.style(\"stroke-width\",g._lw+\"px\").call(l.stroke,g.showline?g.linecolor:\"rgba(0,0,0,0)\")),s.ylines.attr(\"d\",it)}return h.makeClipPaths(t),a.previousPromises(t)}function b(t,e){return(t.ticks||t.showline)&&(e===t._mainSubplot||\"all\"===t.mirror||\"allticks\"===t.mirror)}function _(t,e,r){if(!r.showline||!r._lw)return!1;if(\"all\"===r.mirror||\"allticks\"===r.mirror)return!0;var n=r._anchorAxis;if(!n)return!1;var i=p.FROM_BL[e];return r.side===e?n.domain[i]===t.domain[i]:r.mirror&&n.domain[1-i]===t.domain[1-i]}function w(t,e,r,n){if(_(t,e,r))return r._lw;for(var i=0;i<n.length;i++){var a=n[i];if(a._mainAxis===r._mainAxis&&_(t,e,a))return a._lw}return 0}function T(t,e){var r=t.title,n=t._size,i=0;switch(\"start\"===e?i=r.pad.l:\"end\"===e&&(i=-r.pad.r),r.xref){case\"paper\":return n.l+n.w*r.x+i;case\"container\":default:return t.width*r.x+i}}function k(t,e){var r=t.title,n=t._size,i=0;if(\"0em\"!==e&&e?e===p.CAP_SHIFT+\"em\"&&(i=r.pad.t):i=-r.pad.b,\"auto\"===r.y)return n.t/2;switch(r.yref){case\"paper\":return n.t+n.h-n.h*r.y+i;case\"container\":default:return t.height-t.height*r.y+i}}r.layoutStyles=function(t){return o.syncOrAsync([a.doAutoMargin,x],t)},r.drawMainTitle=function(t){var e=t._fullLayout,r=function(t){var e=t.title,r=\"middle\";o.isRightAnchor(e)?r=\"end\":o.isLeftAnchor(e)&&(r=\"start\");return r}(e),n=function(t){var e=t.title,r=\"0em\";o.isTopAnchor(e)?r=p.CAP_SHIFT+\"em\":o.isMiddleAnchor(e)&&(r=p.MID_SHIFT+\"em\");return r}(e);u.draw(t,\"gtitle\",{propContainer:e,propName:\"title.text\",placeholder:e._dfltTitle.plot,attributes:{x:T(e,r),y:k(e,n),\"text-anchor\":r,dy:n}})},r.doTraceStyle=function(t){var e,n=t.calcdata,o=[];for(e=0;e<n.length;e++){var l=n[e],c=l[0]||{},u=c.trace||{},f=u._module||{},h=f.arraysToCalcdata;h&&h(l,u);var p=f.editStyle;p&&o.push({fn:p,cd0:c})}if(o.length){for(e=0;e<o.length;e++){var d=o[e];d.fn(t,d.cd0)}s(t),r.redrawReglTraces(t)}return a.style(t),i.getComponentMethod(\"legend\",\"draw\")(t),a.previousPromises(t)},r.doColorBars=function(t){return i.getComponentMethod(\"colorbar\",\"draw\")(t),a.previousPromises(t)},r.layoutReplot=function(t){var e=t.layout;return t.layout=void 0,i.call(\"plot\",t,\"\",e)},r.doLegend=function(t){return i.getComponentMethod(\"legend\",\"draw\")(t),a.previousPromises(t)},r.doTicksRelayout=function(t){return h.draw(t,\"redraw\"),t._fullLayout._hasOnlyLargeSploms&&(i.subplotsRegistry.splom.updateGrid(t),s(t),r.redrawReglTraces(t)),r.drawMainTitle(t),a.previousPromises(t)},r.doModeBar=function(t){var e=t._fullLayout;f.manage(t);for(var r=0;r<e._basePlotModules.length;r++){var n=e._basePlotModules[r].updateFx;n&&n(t)}return a.previousPromises(t)},r.doCamera=function(t){for(var e=t._fullLayout,r=e._subplots.gl3d,n=0;n<r.length;n++){var i=e[r[n]];i._scene.setViewport(i)}},r.drawData=function(t){var e=t._fullLayout;s(t);for(var n=e._basePlotModules,o=0;o<n.length;o++)n[o].plot(t);return r.redrawReglTraces(t),a.style(t),i.getComponentMethod(\"shapes\",\"draw\")(t),i.getComponentMethod(\"annotations\",\"draw\")(t),i.getComponentMethod(\"images\",\"draw\")(t),e._replotting=!1,a.previousPromises(t)},r.redrawReglTraces=function(t){var e=t._fullLayout;if(e._has(\"regl\")){var r,n,i=t._fullData,a=[],s=[];for(e._hasOnlyLargeSploms&&e._splomGrid.draw(),r=0;r<i.length;r++){var l=i[r];!0===l.visible&&0!==l._length&&(\"splom\"===l.type?e._splomScenes[l.uid].draw():\"scattergl\"===l.type?o.pushUnique(a,l.xaxis+l.yaxis):\"scatterpolargl\"===l.type&&o.pushUnique(s,l.subplot))}for(r=0;r<a.length;r++)(n=e._plots[a[r]])._scene&&n._scene.draw();for(r=0;r<s.length;r++)(n=e[s[r]]._subplot)._scene&&n._scene.draw()}},r.doAutoRangeAndConstraints=function(t){for(var e,r=h.list(t,\"\",!0),n={},i=0;i<r.length;i++)if(!n[(e=r[i])._id]){n[e._id]=1,m(t,e),v(t,e);var a=e._matchGroup;if(a)for(var o in a){var s=h.getFromId(t,o);v(t,s,e.range),n[o]=1}}g(t)},r.finalDraw=function(t){i.getComponentMethod(\"rangeslider\",\"draw\")(t),i.getComponentMethod(\"rangeselector\",\"draw\")(t)},r.drawMarginPushers=function(t){i.getComponentMethod(\"legend\",\"draw\")(t),i.getComponentMethod(\"rangeselector\",\"draw\")(t),i.getComponentMethod(\"sliders\",\"draw\")(t),i.getComponentMethod(\"updatemenus\",\"draw\")(t),i.getComponentMethod(\"colorbar\",\"draw\")(t)}},{\"../components/color\":643,\"../components/drawing\":665,\"../components/modebar\":703,\"../components/titles\":738,\"../constants/alignment\":745,\"../lib\":778,\"../lib/clear_gl_canvases\":762,\"../plots/cartesian/autorange\":827,\"../plots/cartesian/axes\":828,\"../plots/cartesian/constraints\":835,\"../plots/plots\":891,\"../registry\":911,d3:169}],819:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=n.isPlainObject,a=t(\"./plot_schema\"),o=t(\"../plots/plots\"),s=t(\"../plots/attributes\"),l=t(\"./plot_template\"),c=t(\"./plot_config\").dfltConfig;function u(t,e){t=n.extendDeep({},t);var r,a,o=Object.keys(t).sort();function s(e,r,n){if(i(r)&&i(e))u(e,r);else if(Array.isArray(r)&&Array.isArray(e)){var o=l.arrayTemplater({_template:t},n);for(a=0;a<r.length;a++){var s=r[a],c=o.newItem(s)._template;c&&u(c,s)}var f=o.defaultItems();for(a=0;a<f.length;a++)r.push(f[a]._template);for(a=0;a<r.length;a++)delete r[a].templateitemname}}for(r=0;r<o.length;r++){var c=o[r],h=t[c];if(c in e?s(h,e[c],c):e[c]=h,f(c)===c)for(var p in e){var d=f(p);p===d||d!==c||p in t||s(h,e[p],c)}}}function f(t){return t.replace(/[0-9]+$/,\"\")}function h(t,e,r,a,o){var s=o&&r(o);for(var c in t){var u=t[c],p=g(t,c,a),d=g(t,c,o),m=r(d);if(!m){var v=f(c);v!==c&&(m=r(d=g(t,v,o)))}if((!s||s!==m)&&!(!m||m._noTemplating||\"data_array\"===m.valType||m.arrayOk&&Array.isArray(u)))if(!m.valType&&i(u))h(u,e,r,p,d);else if(m._isLinkedToArray&&Array.isArray(u))for(var y=!1,x=0,b={},_=0;_<u.length;_++){var w=u[_];if(i(w)){var T=w.name;if(T)b[T]||(h(w,e,r,g(u,x,p),g(u,x,d)),x++,b[T]=1);else if(!y){var k=g(t,l.arrayDefaultKey(c),a),M=g(u,x,p);h(w,e,r,M,g(u,x,d));var A=n.nestedProperty(e,M);n.nestedProperty(e,k).set(A.get()),A.set(null),y=!0}}}else{n.nestedProperty(e,p).set(u)}}}function p(t,e){return a.getLayoutValObject(t,n.nestedProperty({},e).parts)}function d(t,e){return a.getTraceValObject(t,n.nestedProperty({},e).parts)}function g(t,e,r){return r?Array.isArray(t)?r+\"[\"+e+\"]\":r+\".\"+e:e}function m(t){for(var e=0;e<t.length;e++)if(i(t[e]))return!0}function v(t){var e;switch(t.code){case\"data\":e=\"The template has no key data.\";break;case\"layout\":e=\"The template has no key layout.\";break;case\"missing\":e=t.path?\"There are no templates for item \"+t.path+\" with name \"+t.templateitemname:\"There are no templates for trace \"+t.index+\", of type \"+t.traceType+\".\";break;case\"unused\":e=t.path?\"The template item at \"+t.path+\" was not used in constructing the plot.\":t.dataCount?\"Some of the templates of type \"+t.traceType+\" were not used. The template has \"+t.templateCount+\" traces, the data only has \"+t.dataCount+\" of this type.\":\"The template has \"+t.templateCount+\" traces of type \"+t.traceType+\" but there are none in the data.\";break;case\"reused\":e=\"Some of the templates of type \"+t.traceType+\" were used more than once. The template has \"+t.templateCount+\" traces, the data has \"+t.dataCount+\" of this type.\"}return t.msg=e,t}r.makeTemplate=function(t){t=n.isPlainObject(t)?t:n.getGraphDiv(t),t=n.extendDeep({_context:c},{data:t.data,layout:t.layout}),o.supplyDefaults(t);var e=t.data||[],r=t.layout||{};r._basePlotModules=t._fullLayout._basePlotModules,r._modules=t._fullLayout._modules;var a={data:{},layout:{}};e.forEach((function(t){var e={};h(t,e,d.bind(null,t));var r=n.coerce(t,{},s,\"type\"),i=a.data[r];i||(i=a.data[r]=[]),i.push(e)})),h(r,a.layout,p.bind(null,r)),delete a.layout.template;var l=r.template;if(i(l)){var f,g,m,v,y,x,b=l.layout;i(b)&&u(b,a.layout);var _=l.data;if(i(_)){for(g in a.data)if(m=_[g],Array.isArray(m)){for(x=(y=a.data[g]).length,v=m.length,f=0;f<x;f++)u(m[f%v],y[f]);for(f=x;f<v;f++)y.push(n.extendDeep({},m[f]))}for(g in _)g in a.data||(a.data[g]=n.extendDeep([],_[g]))}}return a},r.validateTemplate=function(t,e){var r=n.extendDeep({},{_context:c,data:t.data,layout:t.layout}),a=r.layout||{};i(e)||(e=a.template||{});var s=e.layout,l=e.data,u=[];r.layout=a,r.layout.template=e,o.supplyDefaults(r);var h=r._fullLayout,p=r._fullData,d={};if(i(s)?(!function t(e,r){for(var n in e)if(\"_\"!==n.charAt(0)&&i(e[n])){var a,o=f(n),s=[];for(a=0;a<r.length;a++)s.push(g(e,n,r[a])),o!==n&&s.push(g(e,o,r[a]));for(a=0;a<s.length;a++)d[s[a]]=1;t(e[n],s)}}(h,[\"layout\"]),function t(e,r){for(var n in e)if(-1===n.indexOf(\"defaults\")&&i(e[n])){var a=g(e,n,r);d[a]?t(e[n],a):u.push({code:\"unused\",path:a})}}(s,\"layout\")):u.push({code:\"layout\"}),i(l)){for(var y,x={},b=0;b<p.length;b++){var _=p[b];x[y=_.type]=(x[y]||0)+1,_._fullInput._template||u.push({code:\"missing\",index:_._fullInput.index,traceType:y})}for(y in l){var w=l[y].length,T=x[y]||0;w>T?u.push({code:\"unused\",traceType:y,templateCount:w,dataCount:T}):T>w&&u.push({code:\"reused\",traceType:y,templateCount:w,dataCount:T})}}else u.push({code:\"data\"});if(function t(e,r){for(var n in e)if(\"_\"!==n.charAt(0)){var a=e[n],o=g(e,n,r);i(a)?(Array.isArray(e)&&!1===a._template&&a.templateitemname&&u.push({code:\"missing\",path:o,templateitemname:a.templateitemname}),t(a,o)):Array.isArray(a)&&m(a)&&t(a,o)}}({data:p,layout:h},\"\"),u.length)return u.map(v)}},{\"../lib\":778,\"../plots/attributes\":824,\"../plots/plots\":891,\"./plot_config\":815,\"./plot_schema\":816,\"./plot_template\":817}],820:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"./plot_api\"),a=t(\"../plots/plots\"),o=t(\"../lib\"),s=t(\"../snapshot/helpers\"),l=t(\"../snapshot/tosvg\"),c=t(\"../snapshot/svgtoimg\"),u=t(\"../version\").version,f={format:{valType:\"enumerated\",values:[\"png\",\"jpeg\",\"webp\",\"svg\",\"full-json\"],dflt:\"png\"},width:{valType:\"number\",min:1},height:{valType:\"number\",min:1},scale:{valType:\"number\",min:0,dflt:1},setBackground:{valType:\"any\",dflt:!1},imageDataOnly:{valType:\"boolean\",dflt:!1}};e.exports=function(t,e){var r,h,p,d;function g(t){return!(t in e)||o.validate(e[t],f[t])}if(e=e||{},o.isPlainObject(t)?(r=t.data||[],h=t.layout||{},p=t.config||{},d={}):(t=o.getGraphDiv(t),r=o.extendDeep([],t.data),h=o.extendDeep({},t.layout),p=t._context,d=t._fullLayout||{}),!g(\"width\")&&null!==e.width||!g(\"height\")&&null!==e.height)throw new Error(\"Height and width should be pixel values.\");if(!g(\"format\"))throw new Error(\"Export format is not \"+o.join2(f.format.values,\", \",\" or \")+\".\");var m={};function v(t,r){return o.coerce(e,m,f,t,r)}var y=v(\"format\"),x=v(\"width\"),b=v(\"height\"),_=v(\"scale\"),w=v(\"setBackground\"),T=v(\"imageDataOnly\"),k=document.createElement(\"div\");k.style.position=\"absolute\",k.style.left=\"-5000px\",document.body.appendChild(k);var M=o.extendFlat({},h);x?M.width=x:null===e.width&&n(d.width)&&(M.width=d.width),b?M.height=b:null===e.height&&n(d.height)&&(M.height=d.height);var A=o.extendFlat({},p,{_exportedPlot:!0,staticPlot:!0,setBackground:w}),S=s.getRedrawFunc(k);function E(){return new Promise((function(t){setTimeout(t,s.getDelay(k._fullLayout))}))}function C(){return new Promise((function(t,e){var r=l(k,y,_),n=k._fullLayout.width,f=k._fullLayout.height;function h(){i.purge(k),document.body.removeChild(k)}if(\"full-json\"===y){var p=a.graphJson(k,!1,\"keepdata\",\"object\",!0,!0);return p.version=u,p=JSON.stringify(p),h(),t(T?p:s.encodeJSON(p))}if(h(),\"svg\"===y)return t(T?r:s.encodeSVG(r));var d=document.createElement(\"canvas\");d.id=o.randstr(),c({format:y,width:n,height:f,scale:_,canvas:d,svg:r,promise:!0}).then(t).catch(e)}))}return new Promise((function(t,e){i.plot(k,r,M,A).then(S).then(E).then(C).then((function(e){t(function(t){return T?t.replace(s.IMAGE_URL_PREFIX,\"\"):t}(e))})).catch((function(t){e(t)}))}))}},{\"../lib\":778,\"../plots/plots\":891,\"../snapshot/helpers\":915,\"../snapshot/svgtoimg\":917,\"../snapshot/tosvg\":919,\"../version\":1370,\"./plot_api\":814,\"fast-isnumeric\":241}],821:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"../plots/plots\"),a=t(\"./plot_schema\"),o=t(\"./plot_config\").dfltConfig,s=n.isPlainObject,l=Array.isArray,c=n.isArrayOrTypedArray;function u(t,e,r,i,a,o){o=o||[];for(var f=Object.keys(t),h=0;h<f.length;h++){var p=f[h];if(\"transforms\"!==p){var v=o.slice();v.push(p);var y=t[p],x=e[p],b=m(r,p),_=(b||{}).valType,w=\"info_array\"===_,T=\"colorscale\"===_,k=(b||{}).items;if(g(r,p))if(s(y)&&s(x)&&\"any\"!==_)u(y,x,b,i,a,v);else if(w&&l(y)){y.length>x.length&&i.push(d(\"unused\",a,v.concat(x.length)));var M,A,S,E,C,L=x.length,I=Array.isArray(k);if(I&&(L=Math.min(L,k.length)),2===b.dimensions)for(A=0;A<L;A++)if(l(y[A])){y[A].length>x[A].length&&i.push(d(\"unused\",a,v.concat(A,x[A].length)));var P=x[A].length;for(M=0;M<(I?Math.min(P,k[A].length):P);M++)S=I?k[A][M]:k,E=y[A][M],C=x[A][M],n.validate(E,S)?C!==E&&C!==+E&&i.push(d(\"dynamic\",a,v.concat(A,M),E,C)):i.push(d(\"value\",a,v.concat(A,M),E))}else i.push(d(\"array\",a,v.concat(A),y[A]));else for(A=0;A<L;A++)S=I?k[A]:k,E=y[A],C=x[A],n.validate(E,S)?C!==E&&C!==+E&&i.push(d(\"dynamic\",a,v.concat(A),E,C)):i.push(d(\"value\",a,v.concat(A),E))}else if(b.items&&!w&&l(y)){var z,O,D=k[Object.keys(k)[0]],R=[];for(z=0;z<x.length;z++){var F=x[z]._index||z;if((O=v.slice()).push(F),s(y[F])&&s(x[z])){R.push(F);var B=y[F],N=x[z];s(B)&&!1!==B.visible&&!1===N.visible?i.push(d(\"invisible\",a,O)):u(B,N,D,i,a,O)}}for(z=0;z<y.length;z++)(O=v.slice()).push(z),s(y[z])?-1===R.indexOf(z)&&i.push(d(\"unused\",a,O)):i.push(d(\"object\",a,O,y[z]))}else!s(y)&&s(x)?i.push(d(\"object\",a,v,y)):c(y)||!c(x)||w||T?p in e?n.validate(y,b)?\"enumerated\"===b.valType&&(b.coerceNumber&&y!==+x||y!==x)&&i.push(d(\"dynamic\",a,v,y,x)):i.push(d(\"value\",a,v,y)):i.push(d(\"unused\",a,v,y)):i.push(d(\"array\",a,v,y));else i.push(d(\"schema\",a,v))}}return i}function f(t,e){for(var r=t.layout.layoutAttributes,i=0;i<e.length;i++){var a=e[i],o=t.traces[a.type],s=o.layoutAttributes;s&&(a.subplot?n.extendFlat(r[o.attributes.subplot.dflt],s):n.extendFlat(r,s))}return r}e.exports=function(t,e){void 0===t&&(t=[]),void 0===e&&(e={});var r,c,h=a.get(),p=[],g={_context:n.extendFlat({},o)};l(t)?(g.data=n.extendDeep([],t),r=t):(g.data=[],r=[],p.push(d(\"array\",\"data\"))),s(e)?(g.layout=n.extendDeep({},e),c=e):(g.layout={},c={},arguments.length>1&&p.push(d(\"object\",\"layout\"))),i.supplyDefaults(g);for(var m=g._fullData,v=r.length,y=0;y<v;y++){var x=r[y],b=[\"data\",y];if(s(x)){var _=m[y],w=_.type,T=h.traces[w].attributes;T.type={valType:\"enumerated\",values:[w]},!1===_.visible&&!1!==x.visible&&p.push(d(\"invisible\",b)),u(x,_,T,p,b);var k=x.transforms,M=_.transforms;if(k){l(k)||p.push(d(\"array\",b,[\"transforms\"])),b.push(\"transforms\");for(var A=0;A<k.length;A++){var S=[\"transforms\",A],E=k[A].type;if(s(k[A])){var C=h.transforms[E]?h.transforms[E].attributes:{};C.type={valType:\"enumerated\",values:Object.keys(h.transforms)},u(k[A],M[A],C,p,b,S)}else p.push(d(\"object\",b,S))}}}else p.push(d(\"object\",b))}var L=g._fullLayout,I=f(h,m);return u(c,L,I,p,\"layout\"),0===p.length?void 0:p};var h={object:function(t,e){return(\"layout\"===t&&\"\"===e?\"The layout argument\":\"data\"===t[0]&&\"\"===e?\"Trace \"+t[1]+\" in the data argument\":p(t)+\"key \"+e)+\" must be linked to an object container\"},array:function(t,e){return(\"data\"===t?\"The data argument\":p(t)+\"key \"+e)+\" must be linked to an array container\"},schema:function(t,e){return p(t)+\"key \"+e+\" is not part of the schema\"},unused:function(t,e,r){var n=s(r)?\"container\":\"key\";return p(t)+n+\" \"+e+\" did not get coerced\"},dynamic:function(t,e,r,n){return[p(t)+\"key\",e,\"(set to '\"+r+\"')\",\"got reset to\",\"'\"+n+\"'\",\"during defaults.\"].join(\" \")},invisible:function(t,e){return(e?p(t)+\"item \"+e:\"Trace \"+t[1])+\" got defaulted to be not visible\"},value:function(t,e,r){return[p(t)+\"key \"+e,\"is set to an invalid value (\"+r+\")\"].join(\" \")}};function p(t){return l(t)?\"In data trace \"+t[1]+\", \":\"In \"+t+\", \"}function d(t,e,r,i,a){var o,s;r=r||\"\",l(e)?(o=e[0],s=e[1]):(o=e,s=null);var c=function(t){if(!l(t))return String(t);for(var e=\"\",r=0;r<t.length;r++){var n=t[r];\"number\"==typeof n?e=e.substr(0,e.length-1)+\"[\"+n+\"]\":e+=n,r<t.length-1&&(e+=\".\")}return e}(r),u=h[t](e,c,i,a);return n.log(u),{code:t,container:o,trace:s,path:r,astr:c,msg:u}}function g(t,e){var r=y(e),n=r.keyMinusId,i=r.id;return!!(n in t&&t[n]._isSubplotObj&&i)||e in t}function m(t,e){return e in t?t[e]:t[y(e).keyMinusId]}var v=n.counterRegex(\"([a-z]+)\");function y(t){var e=t.match(v);return{keyMinusId:e&&e[1],id:e&&e[2]}}},{\"../lib\":778,\"../plots/plots\":891,\"./plot_config\":815,\"./plot_schema\":816}],822:[function(t,e,r){\"use strict\";e.exports={mode:{valType:\"enumerated\",dflt:\"afterall\",values:[\"immediate\",\"next\",\"afterall\"]},direction:{valType:\"enumerated\",values:[\"forward\",\"reverse\"],dflt:\"forward\"},fromcurrent:{valType:\"boolean\",dflt:!1},frame:{duration:{valType:\"number\",min:0,dflt:500},redraw:{valType:\"boolean\",dflt:!0}},transition:{duration:{valType:\"number\",min:0,dflt:500,editType:\"none\"},easing:{valType:\"enumerated\",dflt:\"cubic-in-out\",values:[\"linear\",\"quad\",\"cubic\",\"sin\",\"exp\",\"circle\",\"elastic\",\"back\",\"bounce\",\"linear-in\",\"quad-in\",\"cubic-in\",\"sin-in\",\"exp-in\",\"circle-in\",\"elastic-in\",\"back-in\",\"bounce-in\",\"linear-out\",\"quad-out\",\"cubic-out\",\"sin-out\",\"exp-out\",\"circle-out\",\"elastic-out\",\"back-out\",\"bounce-out\",\"linear-in-out\",\"quad-in-out\",\"cubic-in-out\",\"sin-in-out\",\"exp-in-out\",\"circle-in-out\",\"elastic-in-out\",\"back-in-out\",\"bounce-in-out\"],editType:\"none\"},ordering:{valType:\"enumerated\",values:[\"layout first\",\"traces first\"],dflt:\"layout first\",editType:\"none\"}}}},{}],823:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"../plot_api/plot_template\");e.exports=function(t,e,r){var a,o,s=r.name,l=r.inclusionAttr||\"visible\",c=e[s],u=n.isArrayOrTypedArray(t[s])?t[s]:[],f=e[s]=[],h=i.arrayTemplater(e,s,l);for(a=0;a<u.length;a++){var p=u[a];n.isPlainObject(p)?o=h.newItem(p):(o=h.newItem({}))[l]=!1,o._index=a,!1!==o[l]&&r.handleItemDefaults(p,o,e,r),f.push(o)}var d=h.defaultItems();for(a=0;a<d.length;a++)(o=d[a])._index=f.length,r.handleItemDefaults({},o,e,r,{}),f.push(o);if(n.isArrayOrTypedArray(c)){var g=Math.min(c.length,f.length);for(a=0;a<g;a++)n.relinkPrivateKeys(f[a],c[a])}return f}},{\"../lib\":778,\"../plot_api/plot_template\":817}],824:[function(t,e,r){\"use strict\";var n=t(\"../components/fx/attributes\");e.exports={type:{valType:\"enumerated\",values:[],dflt:\"scatter\",editType:\"calc+clearAxisTypes\",_noTemplating:!0},visible:{valType:\"enumerated\",values:[!0,!1,\"legendonly\"],dflt:!0,editType:\"calc\"},showlegend:{valType:\"boolean\",dflt:!0,editType:\"style\"},legendgroup:{valType:\"string\",dflt:\"\",editType:\"style\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,editType:\"style\"},name:{valType:\"string\",editType:\"style\"},uid:{valType:\"string\",editType:\"plot\",anim:!0},ids:{valType:\"data_array\",editType:\"calc\",anim:!0},customdata:{valType:\"data_array\",editType:\"calc\"},meta:{valType:\"any\",arrayOk:!0,editType:\"plot\"},selectedpoints:{valType:\"any\",editType:\"calc\"},hoverinfo:{valType:\"flaglist\",flags:[\"x\",\"y\",\"z\",\"text\",\"name\"],extras:[\"all\",\"none\",\"skip\"],arrayOk:!0,dflt:\"all\",editType:\"none\"},hoverlabel:n.hoverlabel,stream:{token:{valType:\"string\",noBlank:!0,strict:!0,editType:\"calc\"},maxpoints:{valType:\"number\",min:0,max:1e4,dflt:500,editType:\"calc\"},editType:\"calc\"},transforms:{_isLinkedToArray:\"transform\",editType:\"calc\"},uirevision:{valType:\"any\",editType:\"none\"}}},{\"../components/fx/attributes\":674}],825:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=i.dateTime2ms,o=i.incrementMonth,s=t(\"../../constants/numerical\").ONEAVGMONTH;e.exports=function(t,e,r,i){if(\"date\"!==e.type)return i;var l=t[r+\"periodalignment\"];if(!l)return i;var c,u=t[r+\"period\"];if(n(u)){if((u=+u)<=0)return i}else if(\"string\"==typeof u&&\"M\"===u.charAt(0)){var f=+u.substring(1);if(!(f>0&&Math.round(f)===f))return i;c=f}for(var h=e.calendar,p=\"start\"===l,d=\"end\"===l,g=t[r+\"period0\"],m=a(g,h)||0,v=[],y=i.length,x=0;x<y;x++){var b,_,w,T=i[x];if(c){for(b=Math.round((T-m)/(c*s)),w=o(m,c*b,h);w>T;)w=o(w,-c,h);for(;w<=T;)w=o(w,c,h);_=o(w,-c,h)}else{for(w=m+(b=Math.round((T-m)/u))*u;w>T;)w-=u;for(;w<=T;)w+=u;_=w-u}v[x]=p?_:d?w:(_+w)/2}return v}},{\"../../constants/numerical\":753,\"../../lib\":778,\"fast-isnumeric\":241}],826:[function(t,e,r){\"use strict\";e.exports={xaxis:{valType:\"subplotid\",dflt:\"x\",editType:\"calc+clearAxisTypes\"},yaxis:{valType:\"subplotid\",dflt:\"y\",editType:\"calc+clearAxisTypes\"}}},{}],827:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../../constants/numerical\").FP_SAFE,o=t(\"../../registry\"),s=t(\"./axis_ids\"),l=s.getFromId,c=s.isLinked;function u(t,e){var r,n,a=[],o=t._fullLayout,s=h(o,e,0),l=h(o,e,1),c=p(t,e),u=c.min,d=c.max;if(0===u.length||0===d.length)return i.simpleMap(e.range,e.r2l);var g=u[0].val,m=d[0].val;for(r=1;r<u.length&&g===m;r++)g=Math.min(g,u[r].val);for(r=1;r<d.length&&g===m;r++)m=Math.max(m,d[r].val);var v=!1;if(e.range){var y=i.simpleMap(e.range,e.r2l);v=y[1]<y[0]}\"reversed\"===e.autorange&&(v=!0,e.autorange=!0);var x,b,_,w,T,k,M=e.rangemode,A=\"tozero\"===M,S=\"nonnegative\"===M,E=e._length,C=E/10,L=0;for(r=0;r<u.length;r++)for(x=u[r],n=0;n<d.length;n++)(k=(b=d[n]).val-x.val-f(e,x.val,b.val))>0&&((T=E-s(x)-l(b))>C?k/T>L&&(_=x,w=b,L=k/T):k/E>L&&(_={val:x.val,nopad:1},w={val:b.val,nopad:1},L=k/E));if(g===m){var I=g-1,P=g+1;if(A)if(0===g)a=[0,1];else{var z=(g>0?d:u).reduce((function(t,e){return Math.max(t,l(e))}),0),O=g/(1-Math.min(.5,z/E));a=g>0?[0,O]:[O,0]}else a=S?[Math.max(0,I),Math.max(1,P)]:[I,P]}else A?(_.val>=0&&(_={val:0,nopad:1}),w.val<=0&&(w={val:0,nopad:1})):S&&(_.val-L*s(_)<0&&(_={val:0,nopad:1}),w.val<=0&&(w={val:1,nopad:1})),L=(w.val-_.val-f(e,x.val,b.val))/(E-s(_)-l(w)),a=[_.val-L*s(_),w.val+L*l(w)];return v&&a.reverse(),i.simpleMap(a,e.l2r||Number)}function f(t,e,r){var n=0;if(t.rangebreaks)for(var i=t.locateBreaks(e,r),a=0;a<i.length;a++){var o=i[a];n+=o.max-o.min}return n}function h(t,e,r){var n=.05*e._length,a=e._anchorAxis||{};if(-1!==(e.ticklabelposition||\"\").indexOf(\"inside\")||-1!==(a.ticklabelposition||\"\").indexOf(\"inside\")){var o=\"reversed\"===e.autorange;if(!o){var s=i.simpleMap(e.range,e.r2l);o=s[1]<s[0]}o&&(r=!r)}var l=0;return c(t,e._id)||(l=function(t,e){var r=0,n=t._anchorAxis||{};if(-1!==(n.ticklabelposition||\"\").indexOf(\"inside\")&&(!e&&(\"left\"===n.side||\"bottom\"===n.side)||e&&(\"top\"===n.side||\"right\"===n.side))){var a=\"x\"===t._id.charAt(0);if(n._vals){var o=i.deg2rad(n._tickAngles[n._id+\"tick\"]||0),s=Math.abs(Math.cos(o)),l=Math.abs(Math.sin(o));n._vals.forEach((function(t){if(t.bb){var e=6+t.bb.width,n=6+t.bb.height;r=Math.max(r,a?Math.max(e*s,n*l):Math.max(n*s,e*l))}}))}\"inside\"===n.ticks&&\"inside\"===n.ticklabelposition&&(r+=n.ticklen||0)}return r}(e,r)),n=Math.max(l,n),\"domain\"===e.constrain&&e._inputDomain&&(n*=(e._inputDomain[1]-e._inputDomain[0])/(e.domain[1]-e.domain[0])),function(t){return t.nopad?0:t.pad+(t.extrapad?n:l)}}e.exports={getAutoRange:u,makePadFn:h,doAutoRange:function(t,e,r){if(e.setScale(),e.autorange){e.range=r?r.slice():u(t,e),e._r=e.range.slice(),e._rl=i.simpleMap(e._r,e.r2l);var n=e._input,a={};a[e._attr+\".range\"]=e.range,a[e._attr+\".autorange\"]=e.autorange,o.call(\"_storeDirectGUIEdit\",t.layout,t._fullLayout._preGUI,a),n.range=e.range.slice(),n.autorange=e.autorange}var s=e._anchorAxis;if(s&&s.rangeslider){var l=s.rangeslider[e._name];l&&\"auto\"===l.rangemode&&(l.range=u(t,e)),s._input.rangeslider[e._name]=i.extendFlat({},l)}},findExtremes:function(t,e,r){r||(r={});t._m||t.setScale();var i,o,s,l,c,u,f,h,p,m=[],y=[],x=e.length,b=r.padded||!1,_=r.tozero&&(\"linear\"===t.type||\"-\"===t.type),w=\"log\"===t.type,T=!1,k=r.vpadLinearized||!1;function M(t){if(Array.isArray(t))return T=!0,function(e){return Math.max(Number(t[e]||0),0)};var e=Math.max(Number(t||0),0);return function(){return e}}var A=M((t._m>0?r.ppadplus:r.ppadminus)||r.ppad||0),S=M((t._m>0?r.ppadminus:r.ppadplus)||r.ppad||0),E=M(r.vpadplus||r.vpad),C=M(r.vpadminus||r.vpad);if(!T){if(h=1/0,p=-1/0,w)for(i=0;i<x;i++)(o=e[i])<h&&o>0&&(h=o),o>p&&o<a&&(p=o);else for(i=0;i<x;i++)(o=e[i])<h&&o>-a&&(h=o),o>p&&o<a&&(p=o);e=[h,p],x=2}var L={tozero:_,extrapad:b};function I(r){s=e[r],n(s)&&(u=A(r),f=S(r),k?(l=t.c2l(s)-C(r),c=t.c2l(s)+E(r)):(h=s-C(r),p=s+E(r),w&&h<p/10&&(h=p/10),l=t.c2l(h),c=t.c2l(p)),_&&(l=Math.min(0,l),c=Math.max(0,c)),v(l)&&d(m,l,f,L),v(c)&&g(y,c,u,L))}var P=Math.min(6,x);for(i=0;i<P;i++)I(i);for(i=x-1;i>=P;i--)I(i);return{min:m,max:y,opts:r}},concatExtremes:p};function p(t,e,r){var n,i,a,o=e._id,s=t._fullData,c=t._fullLayout,u=[],f=[];function h(t,e){for(n=0;n<e.length;n++){var r=t[e[n]],s=(r._extremes||{})[o];if(!0===r.visible&&s){for(i=0;i<s.min.length;i++)a=s.min[i],d(u,a.val,a.pad,{extrapad:a.extrapad});for(i=0;i<s.max.length;i++)a=s.max[i],g(f,a.val,a.pad,{extrapad:a.extrapad})}}}if(h(s,e._traceIndices),h(c.annotations||[],e._annIndices||[]),h(c.shapes||[],e._shapeIndices||[]),e._matchGroup&&!r)for(var m in e._matchGroup)if(m!==e._id){var v=l(t,m),y=p(t,v,!0),x=e._length/v._length;for(i=0;i<y.min.length;i++)a=y.min[i],d(u,a.val,a.pad*x,{extrapad:a.extrapad});for(i=0;i<y.max.length;i++)a=y.max[i],g(f,a.val,a.pad*x,{extrapad:a.extrapad})}return{min:u,max:f}}function d(t,e,r,n){m(t,e,r,n,y)}function g(t,e,r,n){m(t,e,r,n,x)}function m(t,e,r,n,i){for(var a=n.tozero,o=n.extrapad,s=!0,l=0;l<t.length&&s;l++){var c=t[l];if(i(c.val,e)&&c.pad>=r&&(c.extrapad||!o)){s=!1;break}i(e,c.val)&&c.pad<=r&&(o||!c.extrapad)&&(t.splice(l,1),l--)}if(s){var u=a&&0===e;t.push({val:e,pad:u?0:r,extrapad:!u&&o})}}function v(t){return n(t)&&Math.abs(t)<a}function y(t,e){return t<=e}function x(t,e){return t>=e}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../../registry\":911,\"./axis_ids\":831,\"fast-isnumeric\":241}],828:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"fast-isnumeric\"),a=t(\"../../plots/plots\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=s.strTranslate,c=t(\"../../lib/svg_text_utils\"),u=t(\"../../components/titles\"),f=t(\"../../components/color\"),h=t(\"../../components/drawing\"),p=t(\"./layout_attributes\"),d=t(\"./clean_ticks\"),g=t(\"../../constants/numerical\"),m=g.ONEMAXYEAR,v=g.ONEAVGYEAR,y=g.ONEMINYEAR,x=g.ONEMAXQUARTER,b=g.ONEAVGQUARTER,_=g.ONEMINQUARTER,w=g.ONEMAXMONTH,T=g.ONEAVGMONTH,k=g.ONEMINMONTH,M=g.ONEWEEK,A=g.ONEDAY,S=A/2,E=g.ONEHOUR,C=g.ONEMIN,L=g.ONESEC,I=g.MINUS_SIGN,P=g.BADNUM,z=t(\"../../constants/alignment\"),O=z.MID_SHIFT,D=z.CAP_SHIFT,R=z.LINE_SPACING,F=z.OPPOSITE_SIDE,B=e.exports={};B.setConvert=t(\"./set_convert\");var N=t(\"./axis_autotype\"),j=t(\"./axis_ids\"),U=j.idSort,V=j.isLinked;B.id2name=j.id2name,B.name2id=j.name2id,B.cleanId=j.cleanId,B.list=j.list,B.listIds=j.listIds,B.getFromId=j.getFromId,B.getFromTrace=j.getFromTrace;var q=t(\"./autorange\");B.getAutoRange=q.getAutoRange,B.findExtremes=q.findExtremes;function H(t){var e=1e-4*(t[1]-t[0]);return[t[0]-e,t[1]+e]}B.coerceRef=function(t,e,r,n,i,a){var o=n.charAt(n.length-1),l=r._fullLayout._subplots[o+\"axis\"],c=n+\"ref\",u={};return i||(i=l[0]||(\"string\"==typeof a?a:a[0])),a||(a=i),l=l.concat(l.map((function(t){return t+\" domain\"}))),u[c]={valType:\"enumerated\",values:l.concat(a?\"string\"==typeof a?[a]:a:[]),dflt:i},s.coerce(t,e,u,c)},B.getRefType=function(t){return void 0===t?t:\"paper\"===t?\"paper\":\"pixel\"===t?\"pixel\":/( domain)$/.test(t)?\"domain\":\"range\"},B.coercePosition=function(t,e,r,n,i,a){var o,l;if(\"range\"!==B.getRefType(n))o=s.ensureNumber,l=r(i,a);else{var c=B.getFromId(e,n);l=r(i,a=c.fraction2r(a)),o=c.cleanPos}t[i]=o(l)},B.cleanPosition=function(t,e,r){return(\"paper\"===r||\"pixel\"===r?s.ensureNumber:B.getFromId(e,r).cleanPos)(t)},B.redrawComponents=function(t,e){e=e||B.listIds(t);var r=t._fullLayout;function n(n,i,a,s){for(var l=o.getComponentMethod(n,i),c={},u=0;u<e.length;u++)for(var f=r[B.id2name(e[u])][a],h=0;h<f.length;h++){var p=f[h];if(!c[p]&&(l(t,p),c[p]=1,s))return}}n(\"annotations\",\"drawOne\",\"_annIndices\"),n(\"shapes\",\"drawOne\",\"_shapeIndices\"),n(\"images\",\"draw\",\"_imgIndices\",!0)};var G=B.getDataConversions=function(t,e,r,n){var i,a=\"x\"===r||\"y\"===r||\"z\"===r?r:n;if(Array.isArray(a)){if(i={type:N(n,void 0,{autotypenumbers:t._fullLayout.autotypenumbers}),_categories:[]},B.setConvert(i),\"category\"===i.type)for(var o=0;o<n.length;o++)i.d2c(n[o])}else i=B.getFromTrace(t,e,a);return i?{d2c:i.d2c,c2d:i.c2d}:\"ids\"===a?{d2c:W,c2d:W}:{d2c:Y,c2d:Y}};function Y(t){return+t}function W(t){return String(t)}function X(t){return+t.substring(1)}B.getDataToCoordFunc=function(t,e,r,n){return G(t,e,r,n).d2c},B.counterLetter=function(t){var e=t.charAt(0);return\"x\"===e?\"y\":\"y\"===e?\"x\":void 0},B.minDtick=function(t,e,r,n){-1===[\"log\",\"category\",\"multicategory\"].indexOf(t.type)&&n?void 0===t._minDtick?(t._minDtick=e,t._forceTick0=r):t._minDtick&&((t._minDtick/e+1e-6)%1<2e-6&&((r-t._forceTick0)/e%1+1.000001)%1<2e-6?(t._minDtick=e,t._forceTick0=r):((e/t._minDtick+1e-6)%1>2e-6||((r-t._forceTick0)/t._minDtick%1+1.000001)%1>2e-6)&&(t._minDtick=0)):t._minDtick=0},B.saveRangeInitial=function(t,e){for(var r=B.list(t,\"\",!0),n=!1,i=0;i<r.length;i++){var a=r[i],o=void 0===a._rangeInitial,s=o||!(a.range[0]===a._rangeInitial[0]&&a.range[1]===a._rangeInitial[1]);(o&&!1===a.autorange||e&&s)&&(a._rangeInitial=a.range.slice(),n=!0)}return n},B.saveShowSpikeInitial=function(t,e){for(var r=B.list(t,\"\",!0),n=!1,i=\"on\",a=0;a<r.length;a++){var o=r[a],s=void 0===o._showSpikeInitial,l=s||!(o.showspikes===o._showspikes);(s||e&&l)&&(o._showSpikeInitial=o.showspikes,n=!0),\"on\"!==i||o.showspikes||(i=\"off\")}return t._fullLayout._cartesianSpikesEnabled=i,n},B.autoBin=function(t,e,r,n,a,o){var l,c=s.aggNums(Math.min,null,t),u=s.aggNums(Math.max,null,t);if(\"category\"===e.type||\"multicategory\"===e.type)return{start:c-.5,end:u+.5,size:Math.max(1,Math.round(o)||1),_dataSpan:u-c};if(a||(a=e.calendar),l=\"log\"===e.type?{type:\"linear\",range:[c,u]}:{type:e.type,range:s.simpleMap([c,u],e.c2r,0,a),calendar:a},B.setConvert(l),o=o&&d.dtick(o,l.type))l.dtick=o,l.tick0=d.tick0(void 0,l.type,a);else{var f;if(r)f=(u-c)/r;else{var h=s.distinctVals(t),p=Math.pow(10,Math.floor(Math.log(h.minDiff)/Math.LN10)),g=p*s.roundUp(h.minDiff/p,[.9,1.9,4.9,9.9],!0);f=Math.max(g,2*s.stdev(t)/Math.pow(t.length,n?.25:.4)),i(f)||(f=1)}B.autoTicks(l,f)}var m,v=l.dtick,y=B.tickIncrement(B.tickFirst(l),v,\"reverse\",a);if(\"number\"==typeof v)m=(y=function(t,e,r,n,a){var o=0,s=0,l=0,c=0;function u(e){return(1+100*(e-t)/r.dtick)%100<2}for(var f=0;f<e.length;f++)e[f]%1==0?l++:i(e[f])||c++,u(e[f])&&o++,u(e[f]+r.dtick/2)&&s++;var h=e.length-c;if(l===h&&\"date\"!==r.type)r.dtick<1?t=n-.5*r.dtick:(t-=.5)+r.dtick<n&&(t+=r.dtick);else if(s<.1*h&&(o>.3*h||u(n)||u(a))){var p=r.dtick/2;t+=t+p<n?p:-p}return t}(y,t,l,c,u))+(1+Math.floor((u-y)/v))*v;else for(\"M\"===l.dtick.charAt(0)&&(y=function(t,e,r,n,i){var a=s.findExactDates(e,i);if(a.exactDays>.8){var o=Number(r.substr(1));a.exactYears>.8&&o%12==0?t=B.tickIncrement(t,\"M6\",\"reverse\")+1.5*A:a.exactMonths>.8?t=B.tickIncrement(t,\"M1\",\"reverse\")+15.5*A:t-=S;var l=B.tickIncrement(t,r);if(l<=n)return l}return t}(y,t,v,c,a)),m=y,0;m<=u;)m=B.tickIncrement(m,v,!1,a);return{start:e.c2r(y,0,a),end:e.c2r(m,0,a),size:v,_dataSpan:u-c}},B.prepTicks=function(t,e){var r=s.simpleMap(t.range,t.r2l,void 0,void 0,e);if(t._dtickInit=t.dtick,t._tick0Init=t.tick0,\"auto\"===t.tickmode||!t.dtick){var n,a=t.nticks;a||(\"category\"===t.type||\"multicategory\"===t.type?(n=t.tickfont?1.2*(t.tickfont.size||12):15,a=t._length/n):(n=\"y\"===t._id.charAt(0)?40:80,a=s.constrain(t._length/n,4,9)+1),\"radialaxis\"===t._name&&(a*=2)),\"array\"===t.tickmode&&(a*=100),t._roughDTick=Math.abs(r[1]-r[0])/a,B.autoTicks(t,t._roughDTick),t._minDtick>0&&t.dtick<2*t._minDtick&&(t.dtick=t._minDtick,t.tick0=t.l2r(t._forceTick0))}\"period\"===t.ticklabelmode&&function(t){var e;function r(){return!(i(t.dtick)||\"M\"!==t.dtick.charAt(0))}var n=r(),a=B.getTickFormat(t);if(a){var o=t._dtickInit!==t.dtick;/%[fLQsSMX]/.test(a)||(/%[HI]/.test(a)?(e=E,o&&!n&&t.dtick<E&&(t.dtick=E)):/%p/.test(a)?(e=S,o&&!n&&t.dtick<S&&(t.dtick=S)):/%[Aadejuwx]/.test(a)?(e=A,o&&!n&&t.dtick<A&&(t.dtick=A)):/%[UVW]/.test(a)?(e=M,o&&!n&&t.dtick<M&&(t.dtick=M)):/%[Bbm]/.test(a)?(e=T,o&&(n?X(t.dtick)<1:t.dtick<k)&&(t.dtick=\"M1\")):/%[q]/.test(a)?(e=b,o&&(n?X(t.dtick)<3:t.dtick<_)&&(t.dtick=\"M3\")):/%[Yy]/.test(a)&&(e=v,o&&(n?X(t.dtick)<12:t.dtick<y)&&(t.dtick=\"M12\")))}(n=r())&&t.tick0===t._dowTick0&&(t.tick0=t._rawTick0);t._definedDelta=e}(t),t.tick0||(t.tick0=\"date\"===t.type?\"2000-01-01\":0),\"date\"===t.type&&t.dtick<.1&&(t.dtick=.1),nt(t)},B.calcTicks=function(t,e){B.prepTicks(t,e);var r=s.simpleMap(t.range,t.r2l,void 0,void 0,e);if(\"array\"===t.tickmode)return function(t){var e=t.tickvals,r=t.ticktext,n=new Array(e.length),i=H(s.simpleMap(t.range,t.r2l)),a=Math.min(i[0],i[1]),o=Math.max(i[0],i[1]),l=0;Array.isArray(r)||(r=[]);var c=\"category\"===t.type?t.d2l_noadd:t.d2l;\"log\"===t.type&&\"L\"!==String(t.dtick).charAt(0)&&(t.dtick=\"L\"+Math.pow(10,Math.floor(Math.min(t.range[0],t.range[1]))-1));for(var u=0;u<e.length;u++){var f=c(e[u]);f>a&&f<o&&(void 0===r[u]?n[l]=B.tickText(t,f):n[l]=it(t,f,String(r[u])),l++)}l<e.length&&n.splice(l,e.length-l);t.rangebreaks&&(n=n.filter((function(e){return t.maskBreaks(e.x)!==P})));return n}(t);var n=H(r),a=n[0],o=n[1],l=r[1]<r[0],c=Math.min(r[0],r[1]),u=Math.max(r[0],r[1]),f=\"log\"===t.type&&!(i(t.dtick)||\"L\"===t.dtick.charAt(0)),h=\"period\"===t.ticklabelmode;if(t._tmin=B.tickFirst(t,e),t._tmin<a!==l)return[];\"category\"!==t.type&&\"multicategory\"!==t.type||(o=l?Math.max(-.5,o):Math.min(t._categories.length-.5,o));var p=t._tmin;t.rangebreaks&&t._tick0Init!==t.tick0&&(p=wt(p,t),l||(p=B.tickIncrement(p,t.dtick,!l,t.calendar))),h&&(p=B.tickIncrement(p,t.dtick,!l,t.calendar));for(var d,g=Math.max(1e3,t._length||0),C=[],L=null;l?p>=o:p<=o;p=B.tickIncrement(p,t.dtick,l,t.calendar)){if(t.rangebreaks&&!l){if(p<a)continue;if(t.maskBreaks(p)===P&&wt(p,t)>=u)break}if(C.length>g||p===L)break;L=p;var I=!1;f&&p!==(0|p)&&(I=!0),C.push({minor:I,value:p})}if(h&&function(t,e,r){for(var n=0;n<t.length;n++){var i=t[n].value,a=n,o=n+1;n<t.length-1?(a=n,o=n+1):n>0?(a=n-1,o=n):(a=n,o=n);var s,l=t[a].value,c=t[o].value,u=Math.abs(c-l),f=r||u,h=0;f>=y?h=u>=y&&u<=m?u:v:r===b&&f>=_?h=u>=_&&u<=x?u:b:f>=k?h=u>=k&&u<=w?u:T:r===M&&f>=M?h=M:f>=A?h=A:r===S&&f>=S?h=S:r===E&&f>=E&&(h=E),h>=u&&(h=u,s=!0);var p=i+h;if(e.rangebreaks&&h>0){for(var d=0,g=0;g<84;g++){var C=(g+.5)/84;e.maskBreaks(i*(1-C)+C*p)!==P&&d++}(h*=d/84)||(t[n].drop=!0),s&&u>M&&(h=u)}(h>0||0===n)&&(t[n].periodX=i+h/2)}}(C,t,t._definedDelta),t.rangebreaks){var z=\"y\"===t._id.charAt(0),O=1;\"auto\"===t.tickmode&&(O=t.tickfont?t.tickfont.size:12);var D=NaN;for(d=C.length-1;d>-1;d--)if(C[d].drop)C.splice(d,1);else{C[d].value=wt(C[d].value,t);var R=t.c2p(C[d].value);(z?D>R-O:D<R+O)?C.splice(l?d+1:d,1):D=R}}_t(t)&&360===Math.abs(r[1]-r[0])&&C.pop(),t._tmax=(C[C.length-1]||{}).value,t._prevDateHead=\"\",t._inCalcTicks=!0;var F,N,j=[];for(d=0;d<C.length;d++){var U=C[d].minor,V=C[d].value;F=B.tickText(t,V,!1,U),void 0!==(N=C[d].periodX)&&(F.periodX=N,(N>u||N<c)&&(N>u&&(F.periodX=u),N<c&&(F.periodX=c),F.text=\" \",t._prevDateHead=\"\")),j.push(F)}return t._inCalcTicks=!1,j};var Z=[2,5,10],J=[1,2,3,6,12],K=[1,2,5,10,15,30],Q=[1,2,3,7,14],$=[-.046,0,.301,.477,.602,.699,.778,.845,.903,.954,1],tt=[-.301,0,.301,.699,1],et=[15,30,45,90,180];function rt(t,e,r){return e*s.roundUp(t/e,r)}function nt(t){var e=t.dtick;if(t._tickexponent=0,i(e)||\"string\"==typeof e||(e=1),\"category\"!==t.type&&\"multicategory\"!==t.type||(t._tickround=null),\"date\"===t.type){var r=t.r2l(t.tick0),n=t.l2r(r).replace(/(^-|i)/g,\"\"),a=n.length;if(\"M\"===String(e).charAt(0))a>10||\"01-01\"!==n.substr(5)?t._tickround=\"d\":t._tickround=+e.substr(1)%12==0?\"y\":\"m\";else if(e>=A&&a<=10||e>=15*A)t._tickround=\"d\";else if(e>=C&&a<=16||e>=E)t._tickround=\"M\";else if(e>=L&&a<=19||e>=C)t._tickround=\"S\";else{var o=t.l2r(r+e).replace(/^-/,\"\").length;t._tickround=Math.max(a,o)-20,t._tickround<0&&(t._tickround=4)}}else if(i(e)||\"L\"===e.charAt(0)){var s=t.range.map(t.r2d||Number);i(e)||(e=Number(e.substr(1))),t._tickround=2-Math.floor(Math.log(e)/Math.LN10+.01);var l=Math.max(Math.abs(s[0]),Math.abs(s[1])),c=Math.floor(Math.log(l)/Math.LN10+.01),u=void 0===t.minexponent?3:t.minexponent;Math.abs(c)>u&&(ot(t.exponentformat)&&!st(c)?t._tickexponent=3*Math.round((c-1)/3):t._tickexponent=c)}else t._tickround=null}function it(t,e,r){var n=t.tickfont||{};return{x:e,dx:0,dy:0,text:r||\"\",fontSize:n.size,font:n.family,fontColor:n.color}}B.autoTicks=function(t,e){var r;function n(t){return Math.pow(t,Math.floor(Math.log(e)/Math.LN10))}if(\"date\"===t.type){t.tick0=s.dateTick0(t.calendar,0);var a=2*e;if(a>v)e/=v,r=n(10),t.dtick=\"M\"+12*rt(e,r,Z);else if(a>T)e/=T,t.dtick=\"M\"+rt(e,1,J);else if(a>A){t.dtick=rt(e,A,t._hasDayOfWeekBreaks?[1,2,7,14]:Q);var o=B.getTickFormat(t),l=\"period\"===t.ticklabelmode;l&&(t._rawTick0=t.tick0),/%[uVW]/.test(o)?t.tick0=s.dateTick0(t.calendar,2):t.tick0=s.dateTick0(t.calendar,1),l&&(t._dowTick0=t.tick0)}else a>E?t.dtick=rt(e,E,J):a>C?t.dtick=rt(e,C,K):a>L?t.dtick=rt(e,L,K):(r=n(10),t.dtick=rt(e,r,Z))}else if(\"log\"===t.type){t.tick0=0;var c=s.simpleMap(t.range,t.r2l);if(e>.7)t.dtick=Math.ceil(e);else if(Math.abs(c[1]-c[0])<1){var u=1.5*Math.abs((c[1]-c[0])/e);e=Math.abs(Math.pow(10,c[1])-Math.pow(10,c[0]))/u,r=n(10),t.dtick=\"L\"+rt(e,r,Z)}else t.dtick=e>.3?\"D2\":\"D1\"}else\"category\"===t.type||\"multicategory\"===t.type?(t.tick0=0,t.dtick=Math.ceil(Math.max(e,1))):_t(t)?(t.tick0=0,r=1,t.dtick=rt(e,r,et)):(t.tick0=0,r=n(10),t.dtick=rt(e,r,Z));if(0===t.dtick&&(t.dtick=1),!i(t.dtick)&&\"string\"!=typeof t.dtick){var f=t.dtick;throw t.dtick=1,\"ax.dtick error: \"+String(f)}},B.tickIncrement=function(t,e,r,a){var o=r?-1:1;if(i(e))return s.increment(t,o*e);var l=e.charAt(0),c=o*Number(e.substr(1));if(\"M\"===l)return s.incrementMonth(t,c,a);if(\"L\"===l)return Math.log(Math.pow(10,t)+c)/Math.LN10;if(\"D\"===l){var u=\"D2\"===e?tt:$,f=t+.01*o,h=s.roundUp(s.mod(f,1),u,r);return Math.floor(f)+Math.log(n.round(Math.pow(10,h),1))/Math.LN10}throw\"unrecognized dtick \"+String(e)},B.tickFirst=function(t,e){var r=t.r2l||Number,a=s.simpleMap(t.range,r,void 0,void 0,e),o=a[1]<a[0],l=o?Math.floor:Math.ceil,c=H(a)[0],u=t.dtick,f=r(t.tick0);if(i(u)){var h=l((c-f)/u)*u+f;return\"category\"!==t.type&&\"multicategory\"!==t.type||(h=s.constrain(h,0,t._categories.length-1)),h}var p=u.charAt(0),d=Number(u.substr(1));if(\"M\"===p){for(var g,m,v,y=0,x=f;y<10;){if(((g=B.tickIncrement(x,u,o,t.calendar))-c)*(x-c)<=0)return o?Math.min(x,g):Math.max(x,g);m=(c-(x+g)/2)/(g-x),v=p+(Math.abs(Math.round(m))||1)*d,x=B.tickIncrement(x,v,m<0?!o:o,t.calendar),y++}return s.error(\"tickFirst did not converge\",t),x}if(\"L\"===p)return Math.log(l((Math.pow(10,c)-f)/d)*d+f)/Math.LN10;if(\"D\"===p){var b=\"D2\"===u?tt:$,_=s.roundUp(s.mod(c,1),b,o);return Math.floor(c)+Math.log(n.round(Math.pow(10,_),1))/Math.LN10}throw\"unrecognized dtick \"+String(u)},B.tickText=function(t,e,r,n){var a,o=it(t,e),l=\"array\"===t.tickmode,c=r||l,u=t.type,f=\"category\"===u?t.d2l_noadd:t.d2l;if(l&&Array.isArray(t.ticktext)){var h=s.simpleMap(t.range,t.r2l),p=(Math.abs(h[1]-h[0])-(t._lBreaks||0))/1e4;for(a=0;a<t.ticktext.length&&!(Math.abs(e-f(t.tickvals[a]))<p);a++);if(a<t.ticktext.length)return o.text=String(t.ticktext[a]),o}function d(n){if(void 0===n)return!0;if(r)return\"none\"===n;var i={first:t._tmin,last:t._tmax}[n];return\"all\"!==n&&e!==i}var g=r?\"never\":\"none\"!==t.exponentformat&&d(t.showexponent)?\"hide\":\"\";if(\"date\"===u?function(t,e,r,n){var a=t._tickround,o=r&&t.hoverformat||B.getTickFormat(t);n&&(a=i(a)?4:{y:\"m\",m:\"d\",d:\"M\",M:\"S\",S:4}[a]);var l,c=s.formatDate(e.x,o,a,t._dateFormat,t.calendar,t._extraFormat),u=c.indexOf(\"\\n\");-1!==u&&(l=c.substr(u+1),c=c.substr(0,u));n&&(\"00:00:00\"===c||\"00:00\"===c?(c=l,l=\"\"):8===c.length&&(c=c.replace(/:00$/,\"\")));if(l)if(r)\"d\"===a?c+=\", \"+l:c=l+(c?\", \"+c:\"\");else if(t._inCalcTicks&&t._prevDateHead===l){var f=-1!==(t.ticklabelposition||\"\").indexOf(\"inside\"),h=t._realSide||t.side;(!f&&\"top\"===h||f&&\"bottom\"===h)&&(c+=\"<br> \")}else t._prevDateHead=l,c+=\"<br>\"+l;e.text=c}(t,o,r,c):\"log\"===u?function(t,e,r,n,a){var o=t.dtick,l=e.x,c=t.tickformat,u=\"string\"==typeof o&&o.charAt(0);\"never\"===a&&(a=\"\");n&&\"L\"!==u&&(o=\"L3\",u=\"L\");if(c||\"L\"===u)e.text=lt(Math.pow(10,l),t,a,n);else if(i(o)||\"D\"===u&&s.mod(l+.01,1)<.1){var f=Math.round(l),h=Math.abs(f),p=t.exponentformat;\"power\"===p||ot(p)&&st(f)?(e.text=0===f?1:1===f?\"10\":\"10<sup>\"+(f>1?\"\":I)+h+\"</sup>\",e.fontSize*=1.25):(\"e\"===p||\"E\"===p)&&h>2?e.text=\"1\"+p+(f>0?\"+\":I)+h:(e.text=lt(Math.pow(10,l),t,\"\",\"fakehover\"),\"D1\"===o&&\"y\"===t._id.charAt(0)&&(e.dy-=e.fontSize/6))}else{if(\"D\"!==u)throw\"unrecognized dtick \"+String(o);e.text=String(Math.round(Math.pow(10,s.mod(l,1)))),e.fontSize*=.75}if(\"D1\"===t.dtick){var d=String(e.text).charAt(0);\"0\"!==d&&\"1\"!==d||(\"y\"===t._id.charAt(0)?e.dx-=e.fontSize/4:(e.dy+=e.fontSize/2,e.dx+=(t.range[1]>t.range[0]?1:-1)*e.fontSize*(l<0?.5:.25)))}}(t,o,0,c,g):\"category\"===u?function(t,e){var r=t._categories[Math.round(e.x)];void 0===r&&(r=\"\");e.text=String(r)}(t,o):\"multicategory\"===u?function(t,e,r){var n=Math.round(e.x),i=t._categories[n]||[],a=void 0===i[1]?\"\":String(i[1]),o=void 0===i[0]?\"\":String(i[0]);r?e.text=o+\" - \"+a:(e.text=a,e.text2=o)}(t,o,r):_t(t)?function(t,e,r,n,i){if(\"radians\"!==t.thetaunit||r)e.text=lt(e.x,t,i,n);else{var a=e.x/180;if(0===a)e.text=\"0\";else{var o=function(t){function e(t,e){return Math.abs(t-e)<=1e-6}var r=function(t){for(var r=1;!e(Math.round(t*r)/r,t);)r*=10;return r}(t),n=t*r,i=Math.abs(function t(r,n){return e(n,0)?r:t(n,r%n)}(n,r));return[Math.round(n/i),Math.round(r/i)]}(a);if(o[1]>=100)e.text=lt(s.deg2rad(e.x),t,i,n);else{var l=e.x<0;1===o[1]?1===o[0]?e.text=\"\\u03c0\":e.text=o[0]+\"\\u03c0\":e.text=[\"<sup>\",o[0],\"</sup>\",\"\\u2044\",\"<sub>\",o[1],\"</sub>\",\"\\u03c0\"].join(\"\"),l&&(e.text=I+e.text)}}}}(t,o,r,c,g):function(t,e,r,n,i){\"never\"===i?i=\"\":\"all\"===t.showexponent&&Math.abs(e.x/t.dtick)<1e-6&&(i=\"hide\");e.text=lt(e.x,t,i,n)}(t,o,0,c,g),n||(t.tickprefix&&!d(t.showtickprefix)&&(o.text=t.tickprefix+o.text),t.ticksuffix&&!d(t.showticksuffix)&&(o.text+=t.ticksuffix)),\"boundaries\"===t.tickson||t.showdividers){var m=function(e){var r=t.l2p(e);return r>=0&&r<=t._length?e:null};o.xbnd=[m(o.x-.5),m(o.x+t.dtick-.5)]}return o},B.hoverLabelText=function(t,e,r){if(r!==P&&r!==e)return B.hoverLabelText(t,e)+\" - \"+B.hoverLabelText(t,r);var n=\"log\"===t.type&&e<=0,i=B.tickText(t,t.c2l(n?-e:e),\"hover\").text;return n?0===e?\"0\":I+i:i};var at=[\"f\",\"p\",\"n\",\"\\u03bc\",\"m\",\"\",\"k\",\"M\",\"G\",\"T\"];function ot(t){return\"SI\"===t||\"B\"===t}function st(t){return t>14||t<-15}function lt(t,e,r,n){var a=t<0,o=e._tickround,l=r||e.exponentformat||\"B\",c=e._tickexponent,u=B.getTickFormat(e),f=e.separatethousands;if(n){var h={exponentformat:l,minexponent:e.minexponent,dtick:\"none\"===e.showexponent?e.dtick:i(t)&&Math.abs(t)||1,range:\"none\"===e.showexponent?e.range.map(e.r2d):[0,t||1]};nt(h),o=(Number(h._tickround)||0)+4,c=h._tickexponent,e.hoverformat&&(u=e.hoverformat)}if(u)return e._numFormat(u)(t).replace(/-/g,I);var p,d=Math.pow(10,-o)/2;if(\"none\"===l&&(c=0),(t=Math.abs(t))<d)t=\"0\",a=!1;else{if(t+=d,c&&(t*=Math.pow(10,-c),o+=c),0===o)t=String(Math.floor(t));else if(o<0){t=(t=String(Math.round(t))).substr(0,t.length+o);for(var g=o;g<0;g++)t+=\"0\"}else{var m=(t=String(t)).indexOf(\".\")+1;m&&(t=t.substr(0,m+o).replace(/\\.?0+$/,\"\"))}t=s.numSeparate(t,e._separators,f)}c&&\"hide\"!==l&&(ot(l)&&st(c)&&(l=\"power\"),p=c<0?I+-c:\"power\"!==l?\"+\"+c:String(c),\"e\"===l||\"E\"===l?t+=l+p:\"power\"===l?t+=\"\\xd710<sup>\"+p+\"</sup>\":\"B\"===l&&9===c?t+=\"B\":ot(l)&&(t+=at[c/3+5]));return a?I+t:t}function ct(t,e){for(var r=[],n={},i=0;i<e.length;i++){var a=e[i];n[a.text2]?n[a.text2].push(a.x):n[a.text2]=[a.x]}for(var o in n)r.push(it(t,s.interp(n[o],.5),o));return r}function ut(t){return void 0!==t.periodX?t.periodX:t.x}function ft(t){return[t.text,t.x,t.axInfo,t.font,t.fontSize,t.fontColor].join(\"_\")}function ht(t){var e=t.title.font.size,r=(t.title.text.match(c.BR_TAG_ALL)||[]).length;return t.title.hasOwnProperty(\"standoff\")?r?e*(D+r*R):e*D:r?e*(r+1)*R:e}function pt(t,e){var r=t.l2p(e);return r>1&&r<t._length-1}function dt(t){var e=n.select(t),r=e.select(\".text-math-group\");return r.empty()?e.select(\"text\"):r}function gt(t){return t._id+\".automargin\"}function mt(t){return gt(t)+\".mirror\"}function vt(t){return t._id+\".rangeslider\"}function yt(t,e){for(var r=0;r<e.length;r++)-1===t.indexOf(e[r])&&t.push(e[r])}function xt(t,e,r){var n,i,a=[],o=[],l=t.layout;for(n=0;n<e.length;n++)a.push(B.getFromId(t,e[n]));for(n=0;n<r.length;n++)o.push(B.getFromId(t,r[n]));var c=Object.keys(p),u=[\"anchor\",\"domain\",\"overlaying\",\"position\",\"side\",\"tickangle\",\"editType\"],f=[\"linear\",\"log\"];for(n=0;n<c.length;n++){var h=c[n],d=a[0][h],g=o[0][h],m=!0,v=!1,y=!1;if(\"_\"!==h.charAt(0)&&\"function\"!=typeof d&&-1===u.indexOf(h)){for(i=1;i<a.length&&m;i++){var x=a[i][h];\"type\"===h&&-1!==f.indexOf(d)&&-1!==f.indexOf(x)&&d!==x?v=!0:x!==d&&(m=!1)}for(i=1;i<o.length&&m;i++){var b=o[i][h];\"type\"===h&&-1!==f.indexOf(g)&&-1!==f.indexOf(b)&&g!==b?y=!0:o[i][h]!==g&&(m=!1)}m&&(v&&(l[a[0]._name].type=\"linear\"),y&&(l[o[0]._name].type=\"linear\"),bt(l,h,a,o,t._fullLayout._dfltTitle))}}for(n=0;n<t._fullLayout.annotations.length;n++){var _=t._fullLayout.annotations[n];-1!==e.indexOf(_.xref)&&-1!==r.indexOf(_.yref)&&s.swapAttrs(l.annotations[n],[\"?\"])}}function bt(t,e,r,n,i){var a,o=s.nestedProperty,l=o(t[r[0]._name],e).get(),c=o(t[n[0]._name],e).get();for(\"title\"===e&&(l&&l.text===i.x&&(l.text=i.y),c&&c.text===i.y&&(c.text=i.x)),a=0;a<r.length;a++)o(t,r[a]._name+\".\"+e).set(c);for(a=0;a<n.length;a++)o(t,n[a]._name+\".\"+e).set(l)}function _t(t){return\"angularaxis\"===t._id}function wt(t,e){for(var r=e._rangebreaks.length,n=0;n<r;n++){var i=e._rangebreaks[n];if(t>=i.min&&t<i.max)return i.max}return t}B.getTickFormat=function(t){var e,r,n,i,a,o,s,l;function c(t){return\"string\"!=typeof t?t:Number(t.replace(\"M\",\"\"))*T}function u(t,e){var r=[\"L\",\"D\"];if(typeof t==typeof e){if(\"number\"==typeof t)return t-e;var n=r.indexOf(t.charAt(0)),i=r.indexOf(e.charAt(0));return n===i?Number(t.replace(/(L|D)/g,\"\"))-Number(e.replace(/(L|D)/g,\"\")):n-i}return\"number\"==typeof t?1:-1}function f(t,e){var r=null===e[0],n=null===e[1],i=u(t,e[0])>=0,a=u(t,e[1])<=0;return(r||i)&&(n||a)}if(t.tickformatstops&&t.tickformatstops.length>0)switch(t.type){case\"date\":case\"linear\":for(e=0;e<t.tickformatstops.length;e++)if((n=t.tickformatstops[e]).enabled&&(i=t.dtick,a=n.dtickrange,o=void 0,s=void 0,l=void 0,o=c||function(t){return t},s=a[0],l=a[1],(!s&&\"number\"!=typeof s||o(s)<=o(i))&&(!l&&\"number\"!=typeof l||o(l)>=o(i)))){r=n;break}break;case\"log\":for(e=0;e<t.tickformatstops.length;e++)if((n=t.tickformatstops[e]).enabled&&f(t.dtick,n.dtickrange)){r=n;break}}return r?r.value:t.tickformat},B.getSubplots=function(t,e){var r=t._fullLayout._subplots,n=r.cartesian.concat(r.gl2d||[]),i=e?B.findSubplotsWithAxis(n,e):n;return i.sort((function(t,e){var r=t.substr(1).split(\"y\"),n=e.substr(1).split(\"y\");return r[0]===n[0]?+r[1]-+n[1]:+r[0]-+n[0]})),i},B.findSubplotsWithAxis=function(t,e){for(var r=new RegExp(\"x\"===e._id.charAt(0)?\"^\"+e._id+\"y\":e._id+\"$\"),n=[],i=0;i<t.length;i++){var a=t[i];r.test(a)&&n.push(a)}return n},B.makeClipPaths=function(t){var e=t._fullLayout;if(!e._hasOnlyLargeSploms){var r,i,a={_offset:0,_length:e.width,_id:\"\"},o={_offset:0,_length:e.height,_id:\"\"},s=B.list(t,\"x\",!0),l=B.list(t,\"y\",!0),c=[];for(r=0;r<s.length;r++)for(c.push({x:s[r],y:o}),i=0;i<l.length;i++)0===r&&c.push({x:a,y:l[i]}),c.push({x:s[r],y:l[i]});var u=e._clips.selectAll(\".axesclip\").data(c,(function(t){return t.x._id+t.y._id}));u.enter().append(\"clipPath\").classed(\"axesclip\",!0).attr(\"id\",(function(t){return\"clip\"+e._uid+t.x._id+t.y._id})).append(\"rect\"),u.exit().remove(),u.each((function(t){n.select(this).select(\"rect\").attr({x:t.x._offset||0,y:t.y._offset||0,width:t.x._length||1,height:t.y._length||1})}))}},B.draw=function(t,e,r){var n=t._fullLayout;\"redraw\"===e&&n._paper.selectAll(\"g.subplot\").each((function(t){var e=t[0],r=n._plots[e];if(r){var i=r.xaxis,a=r.yaxis;r.xaxislayer.selectAll(\".\"+i._id+\"tick\").remove(),r.yaxislayer.selectAll(\".\"+a._id+\"tick\").remove(),r.xaxislayer.selectAll(\".\"+i._id+\"tick2\").remove(),r.yaxislayer.selectAll(\".\"+a._id+\"tick2\").remove(),r.xaxislayer.selectAll(\".\"+i._id+\"divider\").remove(),r.yaxislayer.selectAll(\".\"+a._id+\"divider\").remove(),r.gridlayer&&r.gridlayer.selectAll(\"path\").remove(),r.zerolinelayer&&r.zerolinelayer.selectAll(\"path\").remove(),n._infolayer.select(\".g-\"+i._id+\"title\").remove(),n._infolayer.select(\".g-\"+a._id+\"title\").remove()}}));var i=e&&\"redraw\"!==e?e:B.listIds(t);return s.syncOrAsync(i.map((function(e){return function(){if(e){var n=B.getFromId(t,e),i=B.drawOne(t,n,r);return n._r=n.range.slice(),n._rl=s.simpleMap(n._r,n.r2l),i}}})))},B.drawOne=function(t,e,r){var n,i,l;r=r||{},e.setScale();var c=t._fullLayout,p=e._id,d=p.charAt(0),g=B.counterLetter(p),m=c._plots[e._mainSubplot];if(m){var v=m[d+\"axislayer\"],y=e._mainLinePosition,x=e._mainMirrorPosition,b=e._vals=B.calcTicks(e),_=[e.mirror,y,x].join(\"_\");for(n=0;n<b.length;n++)b[n].axInfo=_;e._selections={},e._tickAngles&&(e._prevTickAngles=e._tickAngles),e._tickAngles={},e._depth=null;var w={};if(e.visible){var T,k,M=B.makeTransTickFn(e),A=B.makeTransTickLabelFn(e),S=\"inside\"===e.ticks,E=\"outside\"===e.ticks;if(\"boundaries\"===e.tickson){var C=function(t,e){var r,n=[],i=function(t,e){var r=t.xbnd[e];null!==r&&n.push(s.extendFlat({},t,{x:r}))};if(e.length){for(r=0;r<e.length;r++)i(e[r],0);i(e[r-1],1)}return n}(0,b);k=B.clipEnds(e,C),T=S?k:C}else k=B.clipEnds(e,b),T=S&&\"period\"!==e.ticklabelmode?k:b;var L=e._gridVals=k,I=function(t,e){var r,n,i=[],a=e.length&&e[e.length-1].x<e[0].x,o=function(t,e){var r=t.xbnd[e];null!==r&&i.push(s.extendFlat({},t,{x:r}))};if(t.showdividers&&e.length){for(r=0;r<e.length;r++){var l=e[r];l.text2!==n&&o(l,a?1:0),n=l.text2}o(e[r-1],a?0:1)}return i}(e,b);if(!c._hasOnlyLargeSploms){var P=e._subplotsWith,z={};for(n=0;n<P.length;n++){i=P[n];var O=(l=c._plots[i])[g+\"axis\"],D=O._mainAxis._id;if(!z[D]){z[D]=1;var N=\"x\"===d?\"M0,\"+O._offset+\"v\"+O._length:\"M\"+O._offset+\",0h\"+O._length;B.drawGrid(t,e,{vals:L,counterAxis:O,layer:l.gridlayer.select(\".\"+p),path:N,transFn:M}),B.drawZeroLine(t,e,{counterAxis:O,layer:l.zerolinelayer,path:N,transFn:M})}}}var j=B.getTickSigns(e),U=[];if(e.ticks){var V,q,H,G=B.makeTickPath(e,y,j[2]);if(e._anchorAxis&&e.mirror&&!0!==e.mirror?(V=B.makeTickPath(e,x,j[3]),q=G+V):(V=\"\",q=G),e.showdividers&&E&&\"boundaries\"===e.tickson){var Y={};for(n=0;n<I.length;n++)Y[I[n].x]=1;H=function(t){return Y[t.x]?V:q}}else H=q;B.drawTicks(t,e,{vals:T,layer:v,path:H,transFn:M}),\"allticks\"===e.mirror&&(U=Object.keys(e._linepositions||{}))}for(n=0;n<U.length;n++){i=U[n],l=c._plots[i];var W=e._linepositions[i]||[],X=B.makeTickPath(e,W[0],j[0])+B.makeTickPath(e,W[1],j[1]);B.drawTicks(t,e,{vals:T,layer:l[d+\"axislayer\"],path:X,transFn:M})}var Z=[];if(Z.push((function(){return B.drawLabels(t,e,{vals:b,layer:v,transFn:A,labelFns:B.makeLabelFns(e,y)})})),\"multicategory\"===e.type){var J={x:2,y:10}[d];Z.push((function(){var r={x:\"height\",y:\"width\"}[d],n=Q()[r]+J+(e._tickAngles[p+\"tick\"]?e.tickfont.size*R:0);return B.drawLabels(t,e,{vals:ct(e,b),layer:v,cls:p+\"tick2\",repositionOnUpdate:!0,secondary:!0,transFn:M,labelFns:B.makeLabelFns(e,y+n*j[4])})})),Z.push((function(){return e._depth=j[4]*(Q(\"tick2\")[e.side]-y),function(t,e,r){var n=e._id+\"divider\",i=r.vals,a=r.layer.selectAll(\"path.\"+n).data(i,ft);a.exit().remove(),a.enter().insert(\"path\",\":first-child\").classed(n,1).classed(\"crisp\",1).call(f.stroke,e.dividercolor).style(\"stroke-width\",h.crispRound(t,e.dividerwidth,1)+\"px\"),a.attr(\"transform\",r.transFn).attr(\"d\",r.path)}(t,e,{vals:I,layer:v,path:B.makeTickPath(e,y,j[4],e._depth),transFn:M})}))}else e.title.hasOwnProperty(\"standoff\")&&Z.push((function(){e._depth=j[4]*(Q()[e.side]-y)}));var K=o.getComponentMethod(\"rangeslider\",\"isVisible\")(e);return Z.push((function(){var r,n,i,s,l=e.side.charAt(0),u=F[e.side].charAt(0),f=B.getPxPosition(t,e),h=E?e.ticklen:0;if((e.automargin||K)&&(\"multicategory\"===e.type?r=Q(\"tick2\"):(r=Q(),\"x\"===d&&\"b\"===l&&(e._depth=Math.max(r.width>0?r.bottom-f:0,h)))),e.automargin){n={x:0,y:0,r:0,l:0,t:0,b:0};var p=[0,1];if(\"x\"===d){if(\"b\"===l?n[l]=e._depth:(n[l]=e._depth=Math.max(r.width>0?f-r.top:0,h),p.reverse()),r.width>0){var m=r.right-(e._offset+e._length);m>0&&(n.xr=1,n.r=m);var v=e._offset-r.left;v>0&&(n.xl=0,n.l=v)}}else if(\"l\"===l?n[l]=e._depth=Math.max(r.height>0?f-r.left:0,h):(n[l]=e._depth=Math.max(r.height>0?r.right-f:0,h),p.reverse()),r.height>0){var y=r.bottom-(e._offset+e._length);y>0&&(n.yb=0,n.b=y);var x=e._offset-r.top;x>0&&(n.yt=1,n.t=x)}n[g]=\"free\"===e.anchor?e.position:e._anchorAxis.domain[p[0]],e.title.text!==c._dfltTitle[d]&&(n[l]+=ht(e)+(e.title.standoff||0)),e.mirror&&\"free\"!==e.anchor&&((i={x:0,y:0,r:0,l:0,t:0,b:0})[u]=e.linewidth,e.mirror&&!0!==e.mirror&&(i[u]+=h),!0===e.mirror||\"ticks\"===e.mirror?i[g]=e._anchorAxis.domain[p[1]]:\"all\"!==e.mirror&&\"allticks\"!==e.mirror||(i[g]=[e._counterDomainMin,e._counterDomainMax][p[1]]))}K&&(s=o.getComponentMethod(\"rangeslider\",\"autoMarginOpts\")(t,e)),a.autoMargin(t,gt(e),n),a.autoMargin(t,mt(e),i),a.autoMargin(t,vt(e),s)})),r.skipTitle||K&&\"bottom\"===e.side||Z.push((function(){return function(t,e){var r,n=t._fullLayout,i=e._id,a=i.charAt(0),o=e.title.font.size;if(e.title.hasOwnProperty(\"standoff\"))r=e._depth+e.title.standoff+ht(e);else{var s=-1!==(e.ticklabelposition||\"\").indexOf(\"inside\");if(\"multicategory\"===e.type)r=e._depth;else{var l=1.5*o;s&&(l=.5*o,\"outside\"===e.ticks&&(l+=e.ticklen)),r=10+l+(e.linewidth?e.linewidth-1:0)}s||(r+=\"x\"===a?\"top\"===e.side?o*(e.showticklabels?1:0):o*(e.showticklabels?1.5:.5):\"right\"===e.side?o*(e.showticklabels?1:.5):o*(e.showticklabels?.5:0))}var c,f,p,d,g=B.getPxPosition(t,e);\"x\"===a?(f=e._offset+e._length/2,p=\"top\"===e.side?g-r:g+r):(p=e._offset+e._length/2,f=\"right\"===e.side?g+r:g-r,c={rotate:\"-90\",offset:0});if(\"multicategory\"!==e.type){var m=e._selections[e._id+\"tick\"];if(d={selection:m,side:e.side},m&&m.node()&&m.node().parentNode){var v=h.getTranslate(m.node().parentNode);d.offsetLeft=v.x,d.offsetTop=v.y}e.title.hasOwnProperty(\"standoff\")&&(d.pad=0)}return u.draw(t,i+\"title\",{propContainer:e,propName:e._name+\".title.text\",placeholder:n._dfltTitle[a],avoid:d,transform:c,attributes:{x:f,y:p,\"text-anchor\":\"middle\"}})}(t,e)})),s.syncOrAsync(Z)}}function Q(t){var r=p+(t||\"tick\");return w[r]||(w[r]=function(t,e){var r,n,i,a;t._selections[e].size()?(r=1/0,n=-1/0,i=1/0,a=-1/0,t._selections[e].each((function(){var t=dt(this),e=h.bBox(t.node().parentNode);r=Math.min(r,e.top),n=Math.max(n,e.bottom),i=Math.min(i,e.left),a=Math.max(a,e.right)}))):(r=0,n=0,i=0,a=0);return{top:r,bottom:n,left:i,right:a,height:n-r,width:a-i}}(e,r)),w[r]}},B.getTickSigns=function(t){var e=t._id.charAt(0),r={x:\"top\",y:\"right\"}[e],n=t.side===r?1:-1,i=[-1,1,n,-n];return\"inside\"!==t.ticks==(\"x\"===e)&&(i=i.map((function(t){return-t}))),t.side&&i.push({l:-1,t:-1,r:1,b:1}[t.side.charAt(0)]),i},B.makeTransTickFn=function(t){return\"x\"===t._id.charAt(0)?function(e){return l(t._offset+t.l2p(e.x),0)}:function(e){return l(0,t._offset+t.l2p(e.x))}},B.makeTransTickLabelFn=function(t){var e=function(t){var e=t.ticklabelposition||\"\",r=function(t){return-1!==e.indexOf(t)},n=r(\"top\"),i=r(\"left\"),a=r(\"right\"),o=r(\"bottom\"),s=r(\"inside\"),l=o||i||n||a;if(!l&&!s)return[0,0];var c=t.side,u=l?(t.tickwidth||0)/2:0,f=3,h=t.tickfont?t.tickfont.size:12;(o||n)&&(u+=h*D,f+=(t.linewidth||0)/2);(i||a)&&(u+=(t.linewidth||0)/2,f+=3);s&&\"top\"===c&&(f-=h*(1-D));(i||n)&&(u=-u);\"bottom\"!==c&&\"right\"!==c||(f=-f);return[l?u:0,s?f:0]}(t),r=e[0],n=e[1];return\"x\"===t._id.charAt(0)?function(e){return l(r+t._offset+t.l2p(ut(e)),n)}:function(e){return l(n,r+t._offset+t.l2p(ut(e)))}},B.makeTickPath=function(t,e,r,n){n=void 0!==n?n:t.ticklen;var i=t._id.charAt(0),a=(t.linewidth||1)/2;return\"x\"===i?\"M0,\"+(e+a*r)+\"v\"+n*r:\"M\"+(e+a*r)+\",0h\"+n*r},B.makeLabelFns=function(t,e,r){var n=t.ticklabelposition||\"\",a=function(t){return-1!==n.indexOf(t)},o=a(\"top\"),l=a(\"left\"),c=a(\"right\"),u=a(\"bottom\")||l||o||c,f=a(\"inside\"),h=\"inside\"===n&&\"inside\"===t.ticks||!f&&\"outside\"===t.ticks&&\"boundaries\"!==t.tickson,p=0,d=0,g=h?t.ticklen:0;if(f?g*=-1:u&&(g=0),h&&(p+=g,r)){var m=s.deg2rad(r);p=g*Math.cos(m)+1,d=g*Math.sin(m)}t.showticklabels&&(h||t.showline)&&(p+=.2*t.tickfont.size);var v,y,x,b,_,w={labelStandoff:p+=(t.linewidth||1)/2*(f?-1:1),labelShift:d},T=0,k=t.side,M=t._id.charAt(0),A=t.tickangle;if(\"x\"===M)b=(_=!f&&\"bottom\"===k||f&&\"top\"===k)?1:-1,f&&(b*=-1),v=d*b,y=e+p*b,x=_?1:-.2,90===Math.abs(A)&&(f?x+=O:x=-90===A&&\"bottom\"===k?D:90===A&&\"top\"===k?O:.5,T=O/2*(A/90)),w.xFn=function(t){return t.dx+v+T*t.fontSize},w.yFn=function(t){return t.dy+y+t.fontSize*x},w.anchorFn=function(t,e){if(u){if(l)return\"end\";if(c)return\"start\"}return i(e)&&0!==e&&180!==e?e*b<0!==f?\"end\":\"start\":\"middle\"},w.heightFn=function(e,r,n){return r<-60||r>60?-.5*n:\"top\"===t.side!==f?-n:0};else if(\"y\"===M){if(b=(_=!f&&\"left\"===k||f&&\"right\"===k)?1:-1,f&&(b*=-1),v=p,y=d*b,x=0,f||90!==Math.abs(A)||(x=-90===A&&\"left\"===k||90===A&&\"right\"===k?D:.5),f){var S=i(A)?+A:0;if(0!==S){var E=s.deg2rad(S);T=Math.abs(Math.sin(E))*D*b,x=0}}w.xFn=function(t){return t.dx+e-(v+t.fontSize*x)*b+T*t.fontSize},w.yFn=function(t){return t.dy+y+t.fontSize*O},w.anchorFn=function(t,e){return i(e)&&90===Math.abs(e)?\"middle\":_?\"end\":\"start\"},w.heightFn=function(e,r,n){return\"right\"===t.side&&(r*=-1),r<-30?-n:r<30?-.5*n:0}}return w},B.drawTicks=function(t,e,r){r=r||{};var n=e._id+\"tick\",i=r.vals;\"period\"===e.ticklabelmode&&(i=i.slice()).shift();var a=r.layer.selectAll(\"path.\"+n).data(e.ticks?i:[],ft);a.exit().remove(),a.enter().append(\"path\").classed(n,1).classed(\"ticks\",1).classed(\"crisp\",!1!==r.crisp).call(f.stroke,e.tickcolor).style(\"stroke-width\",h.crispRound(t,e.tickwidth,1)+\"px\").attr(\"d\",r.path),a.attr(\"transform\",r.transFn)},B.drawGrid=function(t,e,r){r=r||{};var n=e._id+\"grid\",i=r.vals,a=r.counterAxis;if(!1===e.showgrid)i=[];else if(a&&B.shouldShowZeroLine(t,e,a))for(var o=\"array\"===e.tickmode,s=0;s<i.length;s++){var l=i[s].x;if(o?!l:Math.abs(l)<e.dtick/100){if(i=i.slice(0,s).concat(i.slice(s+1)),!o)break;s--}}var c=r.layer.selectAll(\"path.\"+n).data(i,ft);c.exit().remove(),c.enter().append(\"path\").classed(n,1).classed(\"crisp\",!1!==r.crisp),e._gw=h.crispRound(t,e.gridwidth,1),c.attr(\"transform\",r.transFn).attr(\"d\",r.path).call(f.stroke,e.gridcolor||\"#ddd\").style(\"stroke-width\",e._gw+\"px\"),\"function\"==typeof r.path&&c.attr(\"d\",r.path)},B.drawZeroLine=function(t,e,r){r=r||r;var n=e._id+\"zl\",i=B.shouldShowZeroLine(t,e,r.counterAxis),a=r.layer.selectAll(\"path.\"+n).data(i?[{x:0,id:e._id}]:[]);a.exit().remove(),a.enter().append(\"path\").classed(n,1).classed(\"zl\",1).classed(\"crisp\",!1!==r.crisp).each((function(){r.layer.selectAll(\"path\").sort((function(t,e){return U(t.id,e.id)}))})),a.attr(\"transform\",r.transFn).attr(\"d\",r.path).call(f.stroke,e.zerolinecolor||f.defaultLine).style(\"stroke-width\",h.crispRound(t,e.zerolinewidth,e._gw||1)+\"px\")},B.drawLabels=function(t,e,r){r=r||{};var a=t._fullLayout,o=e._id,u=o.charAt(0),f=r.cls||o+\"tick\",p=r.vals,d=r.labelFns,g=r.secondary?0:e.tickangle,m=(e._prevTickAngles||{})[f],v=r.layer.selectAll(\"g.\"+f).data(e.showticklabels?p:[],ft),y=[];function x(t,a){var o=-1!==(e.ticklabelposition||\"\").indexOf(\"inside\");t.each((function(t){var s=n.select(this),u=s.select(\".text-math-group\"),f=d.anchorFn(t,a),p=r.transFn.call(s.node(),t)+(i(a)&&0!=+a?\" rotate(\"+a+\",\"+d.xFn(t)+\",\"+(d.yFn(t)-t.fontSize/2)+\")\":\"\"),g=c.lineCount(s),m=R*t.fontSize,v=d.heightFn(t,i(a)?+a:0,(g-1)*m);if(v&&(p+=l(0,v)),u.empty()){var y=s.select(\"text\");y.attr({transform:p,\"text-anchor\":f}),o&&(y.style({opacity:100}),e._hideOutOfRangeInsideTickLabels&&e._hideOutOfRangeInsideTickLabels())}else{var x=h.bBox(u.node()).width*{end:-.5,start:.5}[f];u.attr(\"transform\",p+l(x,0))}}))}v.enter().append(\"g\").classed(f,1).append(\"text\").attr(\"text-anchor\",\"middle\").each((function(e){var r=n.select(this),i=t._promises.length;r.call(c.positionText,d.xFn(e),d.yFn(e)).call(h.font,e.font,e.fontSize,e.fontColor).text(e.text).call(c.convertToTspans,t),t._promises[i]?y.push(t._promises.pop().then((function(){x(r,g)}))):x(r,g)})),v.exit().remove(),r.repositionOnUpdate&&v.each((function(t){n.select(this).select(\"text\").call(c.positionText,d.xFn(t),d.yFn(t))})),e._hideOutOfRangeInsideTickLabels=void 0,-1!==(e.ticklabelposition||\"\").indexOf(\"inside\")&&(e._hideOutOfRangeInsideTickLabels=function(){var t=s.simpleMap(e.range,e.r2l),r=e.l2p(t[0]),i=e.l2p(t[1]),a=Math.min(r,i)+e._offset,o=Math.max(r,i)+e._offset,l=\"x\"===e._id.charAt(0);v.each((function(t){var r=n.select(this);if(r.select(\".text-math-group\").empty()){var i=h.bBox(r.node()),s=!1;l?(i.right>o||i.left<a)&&(s=!0):(i.bottom>o||i.top+(e.tickangle?0:t.fontSize/4)<a)&&(s=!0),s&&r.select(\"text\").style({opacity:0})}}))}),x(v,m+1?m:g);var b=null;e._selections&&(e._selections[f]=v);var _=[function(){return y.length&&Promise.all(y)}];e.automargin&&a._redrawFromAutoMarginCount&&90===m?(b=90,_.push((function(){x(v,m)}))):_.push((function(){if(x(v,g),p.length&&\"x\"===u&&!i(g)&&(\"log\"!==e.type||\"D\"!==String(e.dtick).charAt(0))){b=0;var t,n=0,a=[];if(v.each((function(t){n=Math.max(n,t.fontSize);var r=e.l2p(t.x),i=dt(this),o=h.bBox(i.node());a.push({top:0,bottom:10,height:10,left:r-o.width/2,right:r+o.width/2+2,width:o.width+2})})),\"boundaries\"!==e.tickson&&!e.showdividers||r.secondary){var o=p.length,l=Math.abs((p[o-1].x-p[0].x)*e._m)/(o-1),c=e.ticklabelposition||\"\",f=function(t){return-1!==c.indexOf(t)},d=f(\"top\"),m=f(\"left\"),y=f(\"right\"),_=f(\"bottom\")||m||d||y?(e.tickwidth||0)+6:0,w=l<2.5*n||\"multicategory\"===e.type;for(t=0;t<a.length-1;t++)if(s.bBoxIntersect(a[t],a[t+1],_)){b=w?90:30;break}}else{var T=2;for(e.ticks&&(T+=e.tickwidth/2),t=0;t<a.length;t++){var k=p[t].xbnd,M=a[t];if(null!==k[0]&&M.left-e.l2p(k[0])<T||null!==k[1]&&e.l2p(k[1])-M.right<T){b=90;break}}}b&&x(v,b)}})),e._tickAngles&&_.push((function(){e._tickAngles[f]=null===b?i(g)?g:0:b}));var w=e._anchorAxis;w&&w.autorange&&-1!==(e.ticklabelposition||\"\").indexOf(\"inside\")&&!V(a,e._id)&&(a._insideTickLabelsAutorange||(a._insideTickLabelsAutorange={}),a._insideTickLabelsAutorange[w._name+\".autorange\"]=w.autorange,_.push((function(){v.each((function(t,r){var n=dt(this);e._vals[r].bb=h.bBox(n.node())}))})));var T=s.syncOrAsync(_);return T&&T.then&&t._promises.push(T),T},B.getPxPosition=function(t,e){var r,n=t._fullLayout._size,i=e._id.charAt(0),a=e.side;return\"free\"!==e.anchor?r=e._anchorAxis:\"x\"===i?r={_offset:n.t+(1-(e.position||0))*n.h,_length:0}:\"y\"===i&&(r={_offset:n.l+(e.position||0)*n.w,_length:0}),\"top\"===a||\"left\"===a?r._offset:\"bottom\"===a||\"right\"===a?r._offset+r._length:void 0},B.shouldShowZeroLine=function(t,e,r){var n=s.simpleMap(e.range,e.r2l);return n[0]*n[1]<=0&&e.zeroline&&(\"linear\"===e.type||\"-\"===e.type)&&!(e.rangebreaks&&e.maskBreaks(0)===P)&&(pt(e,0)||!function(t,e,r,n){var i=r._mainAxis;if(!i)return;var a=t._fullLayout,o=e._id.charAt(0),s=B.counterLetter(e._id),l=e._offset+(Math.abs(n[0])<Math.abs(n[1])==(\"x\"===o)?0:e._length);function c(t){if(!t.showline||!t.linewidth)return!1;var r=Math.max((t.linewidth+e.zerolinewidth)/2,1);function n(t){return\"number\"==typeof t&&Math.abs(t-l)<r}if(n(t._mainLinePosition)||n(t._mainMirrorPosition))return!0;var i=t._linepositions||{};for(var a in i)if(n(i[a][0])||n(i[a][1]))return!0}var u=a._plots[r._mainSubplot];if(!(u.mainplotinfo||u).overlays.length)return c(r);for(var f=B.list(t,s),h=0;h<f.length;h++){var p=f[h];if(p._mainAxis===i&&c(p))return!0}}(t,e,r,n)||function(t,e){for(var r=t._fullData,n=e._mainSubplot,i=e._id.charAt(0),a=0;a<r.length;a++){var s=r[a];if(!0===s.visible&&s.xaxis+s.yaxis===n){if(o.traceIs(s,\"bar-like\")&&s.orientation==={x:\"h\",y:\"v\"}[i])return!0;if(s.fill&&s.fill.charAt(s.fill.length-1)===i)return!0}}return!1}(t,e))},B.clipEnds=function(t,e){return e.filter((function(e){return pt(t,e.x)}))},B.allowAutoMargin=function(t){for(var e=B.list(t,\"\",!0),r=0;r<e.length;r++){var n=e[r];n.automargin&&(a.allowAutoMargin(t,gt(n)),n.mirror&&a.allowAutoMargin(t,mt(n))),o.getComponentMethod(\"rangeslider\",\"isVisible\")(n)&&a.allowAutoMargin(t,vt(n))}},B.swap=function(t,e){for(var r=function(t,e){var r,n,i=[];for(r=0;r<e.length;r++){var a=[],o=t._fullData[e[r]].xaxis,s=t._fullData[e[r]].yaxis;if(o&&s){for(n=0;n<i.length;n++)-1===i[n].x.indexOf(o)&&-1===i[n].y.indexOf(s)||a.push(n);if(a.length){var l,c=i[a[0]];if(a.length>1)for(n=1;n<a.length;n++)l=i[a[n]],yt(c.x,l.x),yt(c.y,l.y);yt(c.x,[o]),yt(c.y,[s])}else i.push({x:[o],y:[s]})}}return i}(t,e),n=0;n<r.length;n++)xt(t,r[n].x,r[n].y)}},{\"../../components/color\":643,\"../../components/drawing\":665,\"../../components/titles\":738,\"../../constants/alignment\":745,\"../../constants/numerical\":753,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../plots/plots\":891,\"../../registry\":911,\"./autorange\":827,\"./axis_autotype\":829,\"./axis_ids\":831,\"./clean_ticks\":833,\"./layout_attributes\":842,\"./set_convert\":848,d3:169,\"fast-isnumeric\":241}],829:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../../constants/numerical\").BADNUM,o=i.isArrayOrTypedArray,s=i.isDateTime,l=i.cleanNumber,c=Math.round;function u(t,e){return e?n(t):\"number\"==typeof t}function f(t){return Math.max(1,(t-1)/1e3)}e.exports=function(t,e,r){var i=t,h=r.noMultiCategory;if(o(i)&&!i.length)return\"-\";if(!h&&function(t){return o(t[0])&&o(t[1])}(i))return\"multicategory\";if(h&&Array.isArray(i[0])){for(var p=[],d=0;d<i.length;d++)if(o(i[d]))for(var g=0;g<i[d].length;g++)p.push(i[d][g]);i=p}if(function(t,e){for(var r=t.length,i=f(r),a=0,o=0,l={},u=0;u<r;u+=i){var h=c(u),p=t[h],d=String(p);l[d]||(l[d]=1,s(p,e)&&a++,n(p)&&o++)}return a>2*o}(i,e))return\"date\";var m=\"strict\"!==r.autotypenumbers;return function(t,e){for(var r=t.length,n=f(r),i=0,o=0,s={},u=0;u<r;u+=n){var h=c(u),p=t[h],d=String(p);if(!s[d]){s[d]=1;var g=typeof p;\"boolean\"===g?o++:(e?l(p)!==a:\"number\"===g)?i++:\"string\"===g&&o++}}return o>2*i}(i,m)?\"category\":function(t,e){for(var r=t.length,n=0;n<r;n++)if(u(t[n],e))return!0;return!1}(i,m)?\"linear\":\"-\"}},{\"../../constants/numerical\":753,\"../../lib\":778,\"fast-isnumeric\":241}],830:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../registry\"),a=t(\"../../lib\"),o=t(\"../array_container_defaults\"),s=t(\"./layout_attributes\"),l=t(\"./tick_value_defaults\"),c=t(\"./tick_mark_defaults\"),u=t(\"./tick_label_defaults\"),f=t(\"./category_order_defaults\"),h=t(\"./line_grid_defaults\"),p=t(\"./set_convert\"),d=t(\"./constants\").WEEKDAY_PATTERN,g=t(\"./constants\").HOUR_PATTERN;function m(t,e,r){function i(r,n){return a.coerce(t,e,s.rangebreaks,r,n)}if(i(\"enabled\")){var o=i(\"bounds\");if(o&&o.length>=2){var l,c,u=\"\";if(2===o.length)for(l=0;l<2;l++)if(c=y(o[l])){u=d;break}var f=i(\"pattern\",u);if(f===d)for(l=0;l<2;l++)(c=y(o[l]))&&(e.bounds[l]=o[l]=c-1);if(f)for(l=0;l<2;l++)switch(c=o[l],f){case d:if(!n(c))return void(e.enabled=!1);if((c=+c)!==Math.floor(c)||c<0||c>=7)return void(e.enabled=!1);e.bounds[l]=o[l]=c;break;case g:if(!n(c))return void(e.enabled=!1);if((c=+c)<0||c>24)return void(e.enabled=!1);e.bounds[l]=o[l]=c}if(!1===r.autorange){var h=r.range;if(h[0]<h[1]){if(o[0]<h[0]&&o[1]>h[1])return void(e.enabled=!1)}else if(o[0]>h[0]&&o[1]<h[1])return void(e.enabled=!1)}}else{var p=i(\"values\");if(!p||!p.length)return void(e.enabled=!1);i(\"dvalue\")}}}e.exports=function(t,e,r,n,g){var v,y=n.letter,x=n.font||{},b=n.splomStash||{},_=r(\"visible\",!n.visibleDflt),w=e._template||{},T=e.type||w.type||\"-\";\"date\"===T&&(i.getComponentMethod(\"calendars\",\"handleDefaults\")(t,e,\"calendar\",n.calendar),n.noTicklabelmode||(v=r(\"ticklabelmode\")));n.noTicklabelposition&&\"multicategory\"!==T||a.coerce(t,e,{ticklabelposition:{valType:\"enumerated\",dflt:\"outside\",values:\"period\"===v?[\"outside\",\"inside\"]:\"x\"===y?[\"outside\",\"inside\",\"outside left\",\"inside left\",\"outside right\",\"inside right\"]:[\"outside\",\"inside\",\"outside top\",\"inside top\",\"outside bottom\",\"inside bottom\"]}},\"ticklabelposition\"),p(e,g);var k=!e.isValidRange(t.range);k&&n.reverseDflt&&(k=\"reversed\"),!r(\"autorange\",k)||\"linear\"!==T&&\"-\"!==T||r(\"rangemode\"),r(\"range\"),e.cleanRange(),f(t,e,r,n),\"category\"===T||n.noHover||r(\"hoverformat\");var M=r(\"color\"),A=M!==s.color.dflt?M:x.color,S=b.label||g._dfltTitle[y];if(u(t,e,r,T,n,{pass:1}),!_)return e;r(\"title.text\",S),a.coerceFont(r,\"title.font\",{family:x.family,size:Math.round(1.2*x.size),color:A}),l(t,e,r,T),u(t,e,r,T,n,{pass:2}),c(t,e,r,n),h(t,e,r,{dfltColor:M,bgColor:n.bgColor,showGrid:n.showGrid,attributes:s}),(e.showline||e.ticks)&&r(\"mirror\"),n.automargin&&r(\"automargin\");var E,C=\"multicategory\"===T;n.noTickson||\"category\"!==T&&!C||!e.ticks&&!e.showgrid||(C&&(E=\"boundaries\"),\"boundaries\"===r(\"tickson\",E)&&delete e.ticklabelposition);C&&(r(\"showdividers\")&&(r(\"dividercolor\"),r(\"dividerwidth\")));if(\"date\"===T)if(o(t,e,{name:\"rangebreaks\",inclusionAttr:\"enabled\",handleItemDefaults:m}),e.rangebreaks.length){for(var L=0;L<e.rangebreaks.length;L++)if(e.rangebreaks[L].pattern===d){e._hasDayOfWeekBreaks=!0;break}if(p(e,g),g._has(\"scattergl\")||g._has(\"splom\"))for(var I=0;I<n.data.length;I++){var P=n.data[I];\"scattergl\"!==P.type&&\"splom\"!==P.type||(P.visible=!1,a.warn(P.type+\" traces do not work on axes with rangebreaks. Setting trace \"+P.index+\" to `visible: false`.\"))}}else delete e.rangebreaks;return e};var v={sun:1,mon:2,tue:3,wed:4,thu:5,fri:6,sat:7};function y(t){if(\"string\"==typeof t)return v[t.substr(0,3).toLowerCase()]}},{\"../../lib\":778,\"../../registry\":911,\"../array_container_defaults\":823,\"./category_order_defaults\":832,\"./constants\":834,\"./layout_attributes\":842,\"./line_grid_defaults\":844,\"./set_convert\":848,\"./tick_label_defaults\":849,\"./tick_mark_defaults\":850,\"./tick_value_defaults\":851,\"fast-isnumeric\":241}],831:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"./constants\");function a(t,e){if(e&&e.length)for(var r=0;r<e.length;r++)if(e[r][t])return!0;return!1}r.id2name=function(t){if(\"string\"==typeof t&&t.match(i.AX_ID_PATTERN)){var e=t.split(\" \")[0].substr(1);return\"1\"===e&&(e=\"\"),t.charAt(0)+\"axis\"+e}},r.name2id=function(t){if(t.match(i.AX_NAME_PATTERN)){var e=t.substr(5);return\"1\"===e&&(e=\"\"),t.charAt(0)+e}},r.cleanId=function(t,e,r){var n=/( domain)$/.test(t);if(\"string\"==typeof t&&t.match(i.AX_ID_PATTERN)&&(!e||t.charAt(0)===e)&&(!n||r)){var a=t.split(\" \")[0].substr(1).replace(/^0+/,\"\");return\"1\"===a&&(a=\"\"),t.charAt(0)+a+(n&&r?\" domain\":\"\")}},r.list=function(t,e,n){var i=t._fullLayout;if(!i)return[];var a,o=r.listIds(t,e),s=new Array(o.length);for(a=0;a<o.length;a++){var l=o[a];s[a]=i[l.charAt(0)+\"axis\"+l.substr(1)]}if(!n){var c=i._subplots.gl3d||[];for(a=0;a<c.length;a++){var u=i[c[a]];e?s.push(u[e+\"axis\"]):s.push(u.xaxis,u.yaxis,u.zaxis)}}return s},r.listIds=function(t,e){var r=t._fullLayout;if(!r)return[];var n=r._subplots;return e?n[e+\"axis\"]:n.xaxis.concat(n.yaxis)},r.getFromId=function(t,e,n){var i=t._fullLayout;return e=void 0===e||\"string\"!=typeof e?e:e.replace(\" domain\",\"\"),\"x\"===n?e=e.replace(/y[0-9]*/,\"\"):\"y\"===n&&(e=e.replace(/x[0-9]*/,\"\")),i[r.id2name(e)]},r.getFromTrace=function(t,e,i){var a=t._fullLayout,o=null;if(n.traceIs(e,\"gl3d\")){var s=e.scene;\"scene\"===s.substr(0,5)&&(o=a[s][i+\"axis\"])}else o=r.getFromId(t,e[i+\"axis\"]||i);return o},r.idSort=function(t,e){var r=t.charAt(0),n=e.charAt(0);return r!==n?r>n?1:-1:+(t.substr(1)||1)-+(e.substr(1)||1)},r.ref2id=function(t){return!!/^[xyz]/.test(t)&&t.split(\" \")[0]},r.isLinked=function(t,e){return a(e,t._axisMatchGroups)||a(e,t._axisConstraintGroups)}},{\"../../registry\":911,\"./constants\":834}],832:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){if(\"category\"===e.type){var i,a=t.categoryarray,o=Array.isArray(a)&&a.length>0;o&&(i=\"array\");var s,l=r(\"categoryorder\",i);\"array\"===l&&(s=r(\"categoryarray\")),o||\"array\"!==l||(l=e.categoryorder=\"trace\"),\"trace\"===l?e._initialCategories=[]:\"array\"===l?e._initialCategories=s.slice():(s=function(t,e){var r,n,i,a=e.dataAttr||t._id.charAt(0),o={};if(e.axData)r=e.axData;else for(r=[],n=0;n<e.data.length;n++){var s=e.data[n];s[a+\"axis\"]===t._id&&r.push(s)}for(n=0;n<r.length;n++){var l=r[n][a];for(i=0;i<l.length;i++){var c=l[i];null!=c&&(o[c]=1)}}return Object.keys(o)}(e,n).sort(),\"category ascending\"===l?e._initialCategories=s:\"category descending\"===l&&(e._initialCategories=s.reverse()))}}},{}],833:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../../constants/numerical\"),o=a.ONEDAY,s=a.ONEWEEK;r.dtick=function(t,e){var r=\"log\"===e,i=\"date\"===e,a=\"category\"===e,s=i?o:1;if(!t)return s;if(n(t))return(t=Number(t))<=0?s:a?Math.max(1,Math.round(t)):i?Math.max(.1,t):t;if(\"string\"!=typeof t||!i&&!r)return s;var l=t.charAt(0),c=t.substr(1);return(c=n(c)?Number(c):0)<=0||!(i&&\"M\"===l&&c===Math.round(c)||r&&\"L\"===l||r&&\"D\"===l&&(1===c||2===c))?s:t},r.tick0=function(t,e,r,a){return\"date\"===e?i.cleanDate(t,i.dateTick0(r,a%s==0?1:0)):\"D1\"!==a&&\"D2\"!==a?n(t)?Number(t):0:void 0}},{\"../../constants/numerical\":753,\"../../lib\":778,\"fast-isnumeric\":241}],834:[function(t,e,r){\"use strict\";var n=t(\"../../lib/regex\").counter;e.exports={idRegex:{x:n(\"x\",\"( domain)?\"),y:n(\"y\",\"( domain)?\")},attrRegex:n(\"[xy]axis\"),xAxisMatch:n(\"xaxis\"),yAxisMatch:n(\"yaxis\"),AX_ID_PATTERN:/^[xyz][0-9]*( domain)?$/,AX_NAME_PATTERN:/^[xyz]axis[0-9]*$/,SUBPLOT_PATTERN:/^x([0-9]*)y([0-9]*)$/,HOUR_PATTERN:\"hour\",WEEKDAY_PATTERN:\"day of week\",MINDRAG:8,MINSELECT:12,MINZOOM:20,DRAGGERSIZE:20,BENDPX:1.5,REDRAWDELAY:50,SELECTDELAY:100,SELECTID:\"-select\",DFLTRANGEX:[-1,6],DFLTRANGEY:[-1,4],traceLayerClasses:[\"imagelayer\",\"heatmaplayer\",\"contourcarpetlayer\",\"contourlayer\",\"funnellayer\",\"waterfalllayer\",\"barlayer\",\"carpetlayer\",\"violinlayer\",\"boxlayer\",\"ohlclayer\",\"scattercarpetlayer\",\"scatterlayer\"],clipOnAxisFalseQuery:[\".scatterlayer\",\".barlayer\",\".funnellayer\",\".waterfalllayer\"],layerValue2layerClass:{\"above traces\":\"above\",\"below traces\":\"below\"}}},{\"../../lib/regex\":795}],835:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./autorange\"),a=t(\"./axis_ids\").id2name,o=t(\"./layout_attributes\"),s=t(\"./scale_zoom\"),l=t(\"./set_convert\"),c=t(\"../../constants/numerical\").ALMOST_EQUAL,u=t(\"../../constants/alignment\").FROM_BL;function f(t,e,r){var i=r.axIds,s=r.layoutOut,l=r.hasImage,c=s._axisConstraintGroups,u=s._axisMatchGroups,f=e._id,g=f.charAt(0),m=((s._splomAxes||{})[g]||{})[f]||{},v=e._id,y=\"x\"===v.charAt(0);function x(r,i){return n.coerce(t,e,o,r,i)}e._matchGroup=null,e._constraintGroup=null,x(\"constrain\",l?\"domain\":\"range\"),n.coerce(t,e,{constraintoward:{valType:\"enumerated\",values:y?[\"left\",\"center\",\"right\"]:[\"bottom\",\"middle\",\"top\"],dflt:y?\"center\":\"middle\"}},\"constraintoward\");var b,_,w=e.type,T=[];for(b=0;b<i.length;b++){if((_=i[b])!==v)s[a(_)].type===w&&T.push(_)}var k=p(c,v);if(k){var M=[];for(b=0;b<T.length;b++)k[_=T[b]]||M.push(_);T=M}var A,S,E=T.length;E&&(t.matches||m.matches)&&(A=n.coerce(t,e,{matches:{valType:\"enumerated\",values:T,dflt:-1!==T.indexOf(m.matches)?m.matches:void 0}},\"matches\"));var C=l&&!y?e.anchor:void 0;if(E&&!A&&(t.scaleanchor||C)&&(S=n.coerce(t,e,{scaleanchor:{valType:\"enumerated\",values:T}},\"scaleanchor\",C)),A){e._matchGroup=d(u,v,A,1);var L=s[a(A)],I=h(s,e)/h(s,L);y!==(\"x\"===A.charAt(0))&&(I=(y?\"x\":\"y\")+I),d(c,v,A,I)}else t.matches&&-1!==i.indexOf(t.matches)&&n.warn(\"ignored \"+e._name+'.matches: \"'+t.matches+'\" to avoid an infinite loop');if(S){var P=x(\"scaleratio\");P||(P=e.scaleratio=1),d(c,v,S,P)}else t.scaleanchor&&-1!==i.indexOf(t.scaleanchor)&&n.warn(\"ignored \"+e._name+'.scaleanchor: \"'+t.scaleanchor+'\" to avoid either an infinite loop and possibly inconsistent scaleratios, or because this axis declares a *matches* constraint.')}function h(t,e){var r=e.domain;return r||(r=t[a(e.overlaying)].domain),r[1]-r[0]}function p(t,e){for(var r=0;r<t.length;r++)if(t[r][e])return t[r];return null}function d(t,e,r,n){var i,a,o,s,l,c=p(t,e);null===c?((c={})[e]=1,l=t.length,t.push(c)):l=t.indexOf(c);var u=Object.keys(c);for(i=0;i<t.length;i++)if(o=t[i],i!==l&&o[r]){var f=o[r];for(a=0;a<u.length;a++)o[s=u[a]]=g(f,g(n,c[s]));return void t.splice(l,1)}if(1!==n)for(a=0;a<u.length;a++){var h=u[a];c[h]=g(n,c[h])}c[r]=1}function g(t,e){var r,n,i=\"\",a=\"\";\"string\"==typeof t&&(r=(i=t.match(/^[xy]*/)[0]).length,t=+t.substr(r)),\"string\"==typeof e&&(n=(a=e.match(/^[xy]*/)[0]).length,e=+e.substr(n));var o=t*e;return r||n?r&&n&&i.charAt(0)!==a.charAt(0)?r===n?o:(r>n?i.substr(n):a.substr(r))+o:i+a+t*e:o}function m(t,e){for(var r=e._size,n=r.h/r.w,i={},a=Object.keys(t),o=0;o<a.length;o++){var s=a[o],l=t[s];if(\"string\"==typeof l){var c=l.match(/^[xy]*/)[0],u=c.length;l=+l.substr(u);for(var f=\"y\"===c.charAt(0)?n:1/n,h=0;h<u;h++)l*=f}i[s]=l}return i}function v(t,e){var r=t._inputDomain,n=u[t.constraintoward],i=r[0]+(r[1]-r[0])*n;t.domain=t._input.domain=[i+(r[0]-i)/e,i+(r[1]-i)/e],t.setScale()}r.handleDefaults=function(t,e,r){var i,o,s,c,u,h,p,d,g=r.axIds,m=r.axHasImage,v=e._axisConstraintGroups=[],y=e._axisMatchGroups=[];for(i=0;i<g.length;i++)f(u=t[c=a(g[i])],h=e[c],{axIds:g,layoutOut:e,hasImage:m[c]});function x(t,r){for(i=0;i<t.length;i++)for(s in o=t[i])e[a(s)][r]=o}for(x(y,\"_matchGroup\"),i=0;i<v.length;i++)for(s in o=v[i])if((h=e[a(s)]).fixedrange){for(var b in o){var _=a(b);!1===(t[_]||{}).fixedrange&&n.warn(\"fixedrange was specified as false for axis \"+_+\" but was overridden because another axis in its constraint group has fixedrange true\"),e[_].fixedrange=!0}break}for(i=0;i<v.length;){for(s in o=v[i]){(h=e[a(s)])._matchGroup&&Object.keys(h._matchGroup).length===Object.keys(o).length&&(v.splice(i,1),i--);break}i++}x(v,\"_constraintGroup\");var w=[\"constrain\",\"range\",\"autorange\",\"rangemode\",\"rangebreaks\",\"categoryorder\",\"categoryarray\"],T=!1,k=!1;function M(){d=h[p],\"rangebreaks\"===p&&(k=h._hasDayOfWeekBreaks)}for(i=0;i<y.length;i++){o=y[i];for(var A=0;A<w.length;A++){var S;for(s in p=w[A],d=null,o)if(u=t[c=a(s)],h=e[c],p in h){if(!h.matches&&(S=h,p in u)){M();break}null===d&&p in u&&M()}if(\"range\"===p&&d&&(T=!0),\"autorange\"===p&&null===d&&T&&(d=!1),null===d&&p in S&&(d=S[p]),null!==d)for(s in o)(h=e[a(s)])[p]=\"range\"===p?d.slice():d,\"rangebreaks\"===p&&(h._hasDayOfWeekBreaks=k,l(h,e))}}},r.enforce=function(t){var e,r,n,o,l,u,f,h,p=t._fullLayout,d=p._axisConstraintGroups||[];for(e=0;e<d.length;e++){n=m(d[e],p);var g=Object.keys(n),y=1/0,x=0,b=1/0,_={},w={},T=!1;for(r=0;r<g.length;r++)w[o=g[r]]=l=p[a(o)],l._inputDomain?l.domain=l._inputDomain.slice():l._inputDomain=l.domain.slice(),l._inputRange||(l._inputRange=l.range.slice()),l.setScale(),_[o]=u=Math.abs(l._m)/n[o],y=Math.min(y,u),\"domain\"!==l.constrain&&l._constraintShrinkable||(b=Math.min(b,u)),delete l._constraintShrinkable,x=Math.max(x,u),\"domain\"===l.constrain&&(T=!0);if(!(y>c*x)||T)for(r=0;r<g.length;r++)if(u=_[o=g[r]],f=(l=w[o]).constrain,u!==b||\"domain\"===f)if(h=u/b,\"range\"===f)s(l,h);else{var k=l._inputDomain,M=(l.domain[1]-l.domain[0])/(k[1]-k[0]),A=(l.r2l(l.range[1])-l.r2l(l.range[0]))/(l.r2l(l._inputRange[1])-l.r2l(l._inputRange[0]));if((h/=M)*A<1){l.domain=l._input.domain=k.slice(),s(l,h);continue}if(A<1&&(l.range=l._input.range=l._inputRange.slice(),h*=A),l.autorange){var S=l.r2l(l.range[0]),E=l.r2l(l.range[1]),C=(S+E)/2,L=C,I=C,P=Math.abs(E-C),z=C-P*h*1.0001,O=C+P*h*1.0001,D=i.makePadFn(p,l,0),R=i.makePadFn(p,l,1);v(l,h);var F,B,N=Math.abs(l._m),j=i.concatExtremes(t,l),U=j.min,V=j.max;for(B=0;B<U.length;B++)(F=U[B].val-D(U[B])/N)>z&&F<L&&(L=F);for(B=0;B<V.length;B++)(F=V[B].val+R(V[B])/N)<O&&F>I&&(I=F);h/=(I-L)/(2*P),L=l.l2r(L),I=l.l2r(I),l.range=l._input.range=S<E?[L,I]:[I,L]}v(l,h)}}},r.getAxisGroup=function(t,e){for(var r=t._axisMatchGroups,n=0;n<r.length;n++){if(r[n][e])return\"g\"+n}return e},r.clean=function(t,e){if(e._inputDomain){for(var r=!1,n=e._id,i=t._fullLayout._axisConstraintGroups,a=0;a<i.length;a++)if(i[a][n]){r=!0;break}r&&\"domain\"===e.constrain||(e._input.domain=e.domain=e._inputDomain,delete e._inputDomain)}}},{\"../../constants/alignment\":745,\"../../constants/numerical\":753,\"../../lib\":778,\"./autorange\":827,\"./axis_ids\":831,\"./layout_attributes\":842,\"./scale_zoom\":846,\"./set_convert\":848}],836:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"tinycolor2\"),a=t(\"has-passive-events\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=s.strTranslate,c=t(\"../../lib/svg_text_utils\"),u=t(\"../../components/color\"),f=t(\"../../components/drawing\"),h=t(\"../../components/fx\"),p=t(\"./axes\"),d=t(\"../../lib/setcursor\"),g=t(\"../../components/dragelement\"),m=t(\"../../components/dragelement/helpers\"),v=m.selectingOrDrawing,y=m.freeMode,x=t(\"../../constants/alignment\").FROM_TL,b=t(\"../../lib/clear_gl_canvases\"),_=t(\"../../plot_api/subroutines\").redrawReglTraces,w=t(\"../plots\"),T=t(\"./axis_ids\").getFromId,k=t(\"./select\").prepSelect,M=t(\"./select\").clearSelect,A=t(\"./select\").selectOnClick,S=t(\"./scale_zoom\"),E=t(\"./constants\"),C=E.MINDRAG,L=E.MINZOOM,I=!0;function P(t,e,r,n){var i=s.ensureSingle(t.draglayer,e,r,(function(e){e.classed(\"drag\",!0).style({fill:\"transparent\",\"stroke-width\":0}).attr(\"data-subplot\",t.id)}));return i.call(d,n),i.node()}function z(t,e,r,i,a,o,s){var l=P(t,\"rect\",e,r);return n.select(l).call(f.setRect,i,a,o,s),l}function O(t,e){for(var r=0;r<t.length;r++)if(!t[r].fixedrange)return e;return\"\"}function D(t,e,r,n,i){for(var a=0;a<t.length;a++){var o=t[a];if(!o.fixedrange)if(o.rangebreaks){var s=\"y\"===o._id.charAt(0),l=s?1-e:e,c=s?1-r:r;n[o._name+\".range[0]\"]=o.l2r(o.p2l(l*o._length)),n[o._name+\".range[1]\"]=o.l2r(o.p2l(c*o._length))}else{var u=o._rl[0],f=o._rl[1]-u;n[o._name+\".range[0]\"]=o.l2r(u+f*e),n[o._name+\".range[1]\"]=o.l2r(u+f*r)}}if(i&&i.length){var h=(e+(1-r))/2;D(i,h,1-h,n,[])}}function R(t,e){for(var r=0;r<t.length;r++){var n=t[r];if(!n.fixedrange)if(n.rangebreaks){var i=n._length,a=(n.p2l(0+e)-n.p2l(0)+(n.p2l(i+e)-n.p2l(i)))/2;n.range=[n.l2r(n._rl[0]-a),n.l2r(n._rl[1]-a)]}else n.range=[n.l2r(n._rl[0]-e/n._m),n.l2r(n._rl[1]-e/n._m)]}}function F(t){return 1-(t>=0?Math.min(t,.9):1/(1/Math.max(t,-.3)+3.222))}function B(t,e,r,n,i){return t.append(\"path\").attr(\"class\",\"zoombox\").style({fill:e>.2?\"rgba(0,0,0,0)\":\"rgba(255,255,255,0)\",\"stroke-width\":0}).attr(\"transform\",l(r,n)).attr(\"d\",i+\"Z\")}function N(t,e,r){return t.append(\"path\").attr(\"class\",\"zoombox-corners\").style({fill:u.background,stroke:u.defaultLine,\"stroke-width\":1,opacity:0}).attr(\"transform\",l(e,r)).attr(\"d\",\"M0,0Z\")}function j(t,e,r,n,i,a){t.attr(\"d\",n+\"M\"+r.l+\",\"+r.t+\"v\"+r.h+\"h\"+r.w+\"v-\"+r.h+\"h-\"+r.w+\"Z\"),U(t,e,i,a)}function U(t,e,r,n){r||(t.transition().style(\"fill\",n>.2?\"rgba(0,0,0,0.4)\":\"rgba(255,255,255,0.3)\").duration(200),e.transition().style(\"opacity\",1).duration(200))}function V(t){n.select(t).selectAll(\".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners\").remove()}function q(t){I&&t.data&&t._context.showTips&&(s.notifier(s._(t,\"Double-click to zoom back out\"),\"long\"),I=!1)}function H(t){var e=Math.floor(Math.min(t.b-t.t,t.r-t.l,L)/2);return\"M\"+(t.l-3.5)+\",\"+(t.t-.5+e)+\"h3v\"+-e+\"h\"+e+\"v-3h-\"+(e+3)+\"ZM\"+(t.r+3.5)+\",\"+(t.t-.5+e)+\"h-3v\"+-e+\"h\"+-e+\"v-3h\"+(e+3)+\"ZM\"+(t.r+3.5)+\",\"+(t.b+.5-e)+\"h-3v\"+e+\"h\"+-e+\"v3h\"+(e+3)+\"ZM\"+(t.l-3.5)+\",\"+(t.b+.5-e)+\"h3v\"+e+\"h\"+e+\"v3h-\"+(e+3)+\"Z\"}function G(t,e,r,n,i){for(var a,o,l,c,u=!1,f={},h={},p=(i||{}).xaHash,d=(i||{}).yaHash,g=0;g<e.length;g++){var m=e[g];for(a in r)if(m[a]){for(l in m)i&&(p[l]||d[l])||(\"x\"===l.charAt(0)?r:n)[l]||(f[l]=a);for(o in n)i&&(p[o]||d[o])||!m[o]||(u=!0)}for(o in n)if(m[o])for(c in m)i&&(p[c]||d[c])||(\"x\"===c.charAt(0)?r:n)[c]||(h[c]=o)}u&&(s.extendFlat(f,h),h={});var v={},y=[];for(l in f){var x=T(t,l);y.push(x),v[x._id]=x}var b={},_=[];for(c in h){var w=T(t,c);_.push(w),b[w._id]=w}return{xaHash:v,yaHash:b,xaxes:y,yaxes:_,xLinks:f,yLinks:h,isSubplotConstrained:u}}function Y(t,e){if(a){var r=void 0!==t.onwheel?\"wheel\":\"mousewheel\";t._onwheel&&t.removeEventListener(r,t._onwheel),t._onwheel=e,t.addEventListener(r,e,{passive:!1})}else void 0!==t.onwheel?t.onwheel=e:void 0!==t.onmousewheel?t.onmousewheel=e:t.isAddedWheelEvent||(t.isAddedWheelEvent=!0,t.addEventListener(\"wheel\",e,{passive:!1}))}function W(t){var e=[];for(var r in t)e.push(t[r]);return e}e.exports={makeDragBox:function(t,e,r,a,l,u,d,m){var I,P,U,X,Z,J,K,Q,$,tt,et,rt,nt,it,at,ot,st,lt,ct,ut,ft,ht,pt,dt=t._fullLayout._zoomlayer,gt=d+m===\"nsew\",mt=1===(d+m).length;function vt(){if(I=e.xaxis,P=e.yaxis,$=I._length,tt=P._length,K=I._offset,Q=P._offset,(U={})[I._id]=I,(X={})[P._id]=P,d&&m)for(var r=e.overlays,n=0;n<r.length;n++){var i=r[n].xaxis;U[i._id]=i;var a=r[n].yaxis;X[a._id]=a}Z=W(U),J=W(X),nt=O(Z,m),it=O(J,d),at=!it&&!nt,rt=G(t,t._fullLayout._axisMatchGroups,U,X);var o=(et=G(t,t._fullLayout._axisConstraintGroups,U,X,rt)).isSubplotConstrained||rt.isSubplotConstrained;ot=m||o,st=d||o;var s=t._fullLayout;lt=s._has(\"scattergl\"),ct=s._has(\"splom\"),ut=s._has(\"svg\")}vt();var yt=function(t,e,r){if(!t)return\"pointer\";if(\"nsew\"===t)return r?\"\":\"pan\"===e?\"move\":\"crosshair\";return t.toLowerCase()+\"-resize\"}(it+nt,t._fullLayout.dragmode,gt),xt=z(e,d+m+\"drag\",yt,r,a,l,u);if(at&&!gt)return xt.onmousedown=null,xt.style.pointerEvents=\"none\",xt;var bt,_t,wt,Tt,kt,Mt,At,St,Et,Ct,Lt={element:xt,gd:t,plotinfo:e};function It(){Lt.plotinfo.selection=!1,M(t)}function Pt(t,r){var i=Lt.gd;if(i._fullLayout._activeShapeIndex>=0)i._fullLayout._deactivateShape(i);else{var a=i._fullLayout.clickmode;if(V(i),2!==t||mt||qt(),gt)a.indexOf(\"select\")>-1&&A(r,i,Z,J,e.id,Lt),a.indexOf(\"event\")>-1&&h.click(i,r,e.id);else if(1===t&&mt){var s=d?P:I,l=\"s\"===d||\"w\"===m?0:1,u=s._name+\".range[\"+l+\"]\",f=function(t,e){var r,i=t.range[e],a=Math.abs(i-t.range[1-e]);return\"date\"===t.type?i:\"log\"===t.type?(r=Math.ceil(Math.max(0,-Math.log(a)/Math.LN10))+3,n.format(\".\"+r+\"g\")(Math.pow(10,i))):(r=Math.floor(Math.log(Math.abs(i))/Math.LN10)-Math.floor(Math.log(a)/Math.LN10)+4,n.format(\".\"+String(r)+\"g\")(i))}(s,l),p=\"left\",g=\"middle\";if(s.fixedrange)return;d?(g=\"n\"===d?\"top\":\"bottom\",\"right\"===s.side&&(p=\"right\")):\"e\"===m&&(p=\"right\"),i._context.showAxisRangeEntryBoxes&&n.select(xt).call(c.makeEditable,{gd:i,immediate:!0,background:i._fullLayout.paper_bgcolor,text:String(f),fill:s.tickfont?s.tickfont.color:\"#444\",horizontalAlign:p,verticalAlign:g}).on(\"edit\",(function(t){var e=s.d2r(t);void 0!==e&&o.call(\"_guiRelayout\",i,u,e)}))}}}function zt(e,r){if(t._transitioningWithDuration)return!1;var n=Math.max(0,Math.min($,ht*e+bt)),i=Math.max(0,Math.min(tt,pt*r+_t)),a=Math.abs(n-bt),o=Math.abs(i-_t);function s(){At=\"\",wt.r=wt.l,wt.t=wt.b,Et.attr(\"d\",\"M0,0Z\")}if(wt.l=Math.min(bt,n),wt.r=Math.max(bt,n),wt.t=Math.min(_t,i),wt.b=Math.max(_t,i),et.isSubplotConstrained)a>L||o>L?(At=\"xy\",a/$>o/tt?(o=a*tt/$,_t>i?wt.t=_t-o:wt.b=_t+o):(a=o*$/tt,bt>n?wt.l=bt-a:wt.r=bt+a),Et.attr(\"d\",H(wt))):s();else if(rt.isSubplotConstrained)if(a>L||o>L){At=\"xy\";var l=Math.min(wt.l/$,(tt-wt.b)/tt),c=Math.max(wt.r/$,(tt-wt.t)/tt);wt.l=l*$,wt.r=c*$,wt.b=(1-l)*tt,wt.t=(1-c)*tt,Et.attr(\"d\",H(wt))}else s();else!it||o<Math.min(Math.max(.6*a,C),L)?a<C||!nt?s():(wt.t=0,wt.b=tt,At=\"x\",Et.attr(\"d\",function(t,e){return\"M\"+(t.l-.5)+\",\"+(e-L-.5)+\"h-3v\"+(2*L+1)+\"h3ZM\"+(t.r+.5)+\",\"+(e-L-.5)+\"h3v\"+(2*L+1)+\"h-3Z\"}(wt,_t))):!nt||a<Math.min(.6*o,L)?(wt.l=0,wt.r=$,At=\"y\",Et.attr(\"d\",function(t,e){return\"M\"+(e-L-.5)+\",\"+(t.t-.5)+\"v-3h\"+(2*L+1)+\"v3ZM\"+(e-L-.5)+\",\"+(t.b+.5)+\"v3h\"+(2*L+1)+\"v-3Z\"}(wt,bt))):(At=\"xy\",Et.attr(\"d\",H(wt)));wt.w=wt.r-wt.l,wt.h=wt.b-wt.t,At&&(Ct=!0),t._dragged=Ct,j(St,Et,wt,kt,Mt,Tt),Ot(),t.emit(\"plotly_relayouting\",ft),Mt=!0}function Ot(){ft={},\"xy\"!==At&&\"x\"!==At||(D(Z,wt.l/$,wt.r/$,ft,et.xaxes),Ut(\"x\",ft)),\"xy\"!==At&&\"y\"!==At||(D(J,(tt-wt.b)/tt,(tt-wt.t)/tt,ft,et.yaxes),Ut(\"y\",ft))}function Dt(){Ot(),V(t),Ht(),q(t)}Lt.prepFn=function(e,r,n){var a=Lt.dragmode,o=t._fullLayout.dragmode;o!==a&&(Lt.dragmode=o),vt(),ht=t._fullLayout._invScaleX,pt=t._fullLayout._invScaleY,at||(gt?e.shiftKey?\"pan\"===o?o=\"zoom\":v(o)||(o=\"pan\"):e.ctrlKey&&(o=\"pan\"):o=\"pan\"),y(o)?Lt.minDrag=1:Lt.minDrag=void 0,v(o)?(Lt.xaxes=Z,Lt.yaxes=J,k(e,r,n,Lt,o)):(Lt.clickFn=Pt,v(a)&&It(),at||(\"zoom\"===o?(Lt.moveFn=zt,Lt.doneFn=Dt,Lt.minDrag=1,function(e,r,n){var a=xt.getBoundingClientRect();bt=r-a.left,_t=n-a.top,t._fullLayout._calcInverseTransform(t);var o=s.apply3DTransform(t._fullLayout._invTransform)(bt,_t);bt=o[0],_t=o[1],wt={l:bt,r:bt,w:0,t:_t,b:_t,h:0},Tt=t._hmpixcount?t._hmlumcount/t._hmpixcount:i(t._fullLayout.plot_bgcolor).getLuminance(),Mt=!1,At=\"xy\",Ct=!1,St=B(dt,Tt,K,Q,kt=\"M0,0H\"+$+\"V\"+tt+\"H0V0\"),Et=N(dt,K,Q)}(0,r,n)):\"pan\"===o&&(Lt.moveFn=jt,Lt.doneFn=Ht))),t._fullLayout._redrag=function(){var e=t._dragdata;if(e&&e.element===xt){var r=t._fullLayout.dragmode;v(r)||(vt(),Gt([0,0,$,tt]),Lt.moveFn(e.dx,e.dy))}}},g.init(Lt);var Rt=[0,0,$,tt],Ft=null,Bt=E.REDRAWDELAY,Nt=e.mainplot?t._fullLayout._plots[e.mainplot]:e;function jt(e,r){if(e*=ht,r*=pt,!t._transitioningWithDuration){if(t._fullLayout._replotting=!0,\"ew\"===nt||\"ns\"===it){var n=nt?-e:0,i=it?-r:0;if(rt.isSubplotConstrained){if(nt&&it){var a=(e/$-r/tt)/2;n=-(e=a*$),i=-(r=-a*tt)}it?n=-i*$/tt:i=-n*tt/$}return nt&&(R(Z,e),Ut(\"x\")),it&&(R(J,r),Ut(\"y\")),Gt([n,i,$,tt]),Vt(),void t.emit(\"plotly_relayouting\",ft)}var o,s,l=\"w\"===nt==(\"n\"===it)?1:-1;if(nt&&it&&(et.isSubplotConstrained||rt.isSubplotConstrained)){var c=(e/$+l*r/tt)/2;e=c*$,r=l*c*tt}if(\"w\"===nt?e=p(Z,0,e):\"e\"===nt?e=p(Z,1,-e):nt||(e=0),\"n\"===it?r=p(J,1,r):\"s\"===it?r=p(J,0,-r):it||(r=0),o=\"w\"===nt?e:0,s=\"n\"===it?r:0,et.isSubplotConstrained&&!rt.isSubplotConstrained||rt.isSubplotConstrained&&nt&&it&&l>0){var u;if(rt.isSubplotConstrained||!nt&&1===it.length){for(u=0;u<Z.length;u++)Z[u].range=Z[u]._r.slice(),S(Z[u],1-r/tt);o=(e=r*$/tt)/2}if(rt.isSubplotConstrained||!it&&1===nt.length){for(u=0;u<J.length;u++)J[u].range=J[u]._r.slice(),S(J[u],1-e/$);s=(r=e*tt/$)/2}}rt.isSubplotConstrained&&it||Ut(\"x\"),rt.isSubplotConstrained&&nt||Ut(\"y\");var f=$-e,h=tt-r;!rt.isSubplotConstrained||nt&&it||(nt?(s=o?0:e*tt/$,h=f*tt/$):(o=s?0:r*$/tt,f=h*$/tt)),Gt([o,s,f,h]),Vt(),t.emit(\"plotly_relayouting\",ft)}function p(t,e,r){for(var n,i,a=1-e,o=0;o<t.length;o++){var s=t[o];if(!s.fixedrange){n=s,i=s._rl[a]+(s._rl[e]-s._rl[a])/F(r/s._length);var l=s.l2r(i);!1!==l&&void 0!==l&&(s.range[e]=l)}}return n._length*(n._rl[e]-i)/(n._rl[e]-n._rl[a])}}function Ut(t,e){for(var r=rt.isSubplotConstrained?{x:J,y:Z}[t]:rt[t+\"axes\"],n=rt.isSubplotConstrained?{x:Z,y:J}[t]:[],i=0;i<r.length;i++){var a=r[i],o=a._id,s=rt.xLinks[o]||rt.yLinks[o],l=n[0]||U[s]||X[s];l&&(e?(e[a._name+\".range[0]\"]=e[l._name+\".range[0]\"],e[a._name+\".range[1]\"]=e[l._name+\".range[1]\"]):a.range=l.range.slice())}}function Vt(){var e,r=[];function n(t){for(e=0;e<t.length;e++)t[e].fixedrange||r.push(t[e]._id)}for(ot&&(n(Z),n(et.xaxes),n(rt.xaxes)),st&&(n(J),n(et.yaxes),n(rt.yaxes)),ft={},e=0;e<r.length;e++){var i=r[e],a=T(t,i);p.drawOne(t,a,{skipTitle:!0}),ft[a._name+\".range[0]\"]=a.range[0],ft[a._name+\".range[1]\"]=a.range[1]}p.redrawComponents(t,r)}function qt(){if(!t._transitioningWithDuration){var e=t._context.doubleClick,r=[];nt&&(r=r.concat(Z)),it&&(r=r.concat(J)),rt.xaxes&&(r=r.concat(rt.xaxes)),rt.yaxes&&(r=r.concat(rt.yaxes));var n,i,a,s={};if(\"reset+autosize\"===e)for(e=\"autosize\",i=0;i<r.length;i++)if((n=r[i])._rangeInitial&&(n.range[0]!==n._rangeInitial[0]||n.range[1]!==n._rangeInitial[1])||!n._rangeInitial&&!n.autorange){e=\"reset\";break}if(\"autosize\"===e)for(i=0;i<r.length;i++)(n=r[i]).fixedrange||(s[n._name+\".autorange\"]=!0);else if(\"reset\"===e)for((nt||et.isSubplotConstrained)&&(r=r.concat(et.xaxes)),it&&!et.isSubplotConstrained&&(r=r.concat(et.yaxes)),et.isSubplotConstrained&&(nt?it||(r=r.concat(J)):r=r.concat(Z)),i=0;i<r.length;i++)(n=r[i]).fixedrange||(n._rangeInitial?(a=n._rangeInitial,s[n._name+\".range[0]\"]=a[0],s[n._name+\".range[1]\"]=a[1]):s[n._name+\".autorange\"]=!0);t.emit(\"plotly_doubleclick\",null),o.call(\"_guiRelayout\",t,s)}}function Ht(){Gt([0,0,$,tt]),s.syncOrAsync([w.previousPromises,function(){t._fullLayout._replotting=!1,o.call(\"_guiRelayout\",t,ft)}],t)}function Gt(e){var r,n,i,a,l=t._fullLayout,c=l._plots,u=l._subplots.cartesian;if(ct&&o.subplotsRegistry.splom.drag(t),lt)for(r=0;r<u.length;r++)if(i=(n=c[u[r]]).xaxis,a=n.yaxis,n._scene){var h=s.simpleMap(i.range,i.r2l),p=s.simpleMap(a.range,a.r2l);n._scene.update({range:[h[0],p[0],h[1],p[1]]})}if((ct||lt)&&(b(t),_(t)),ut){var g=e[2]/I._length,v=e[3]/P._length;for(r=0;r<u.length;r++){i=(n=c[u[r]]).xaxis,a=n.yaxis;var y,x,w,T,k=(ot||rt.isSubplotConstrained)&&!i.fixedrange&&U[i._id],M=(st||rt.isSubplotConstrained)&&!a.fixedrange&&X[a._id];if(k?(y=g,w=m||rt.isSubplotConstrained?e[0]:Xt(i,y)):rt.xaHash[i._id]?(y=g,w=e[0]*i._length/I._length):rt.yaHash[i._id]?(y=v,w=\"ns\"===it?-e[1]*i._length/P._length:Xt(i,y,{n:\"top\",s:\"bottom\"}[it])):w=Wt(i,y=Yt(i,g,v)),M?(x=v,T=d||rt.isSubplotConstrained?e[1]:Xt(a,x)):rt.yaHash[a._id]?(x=v,T=e[1]*a._length/P._length):rt.xaHash[a._id]?(x=g,T=\"ew\"===nt?-e[0]*a._length/I._length:Xt(a,x,{e:\"right\",w:\"left\"}[nt])):T=Wt(a,x=Yt(a,g,v)),y||x){y||(y=1),x||(x=1);var A=i._offset-w/y,S=a._offset-T/x;n.clipRect.call(f.setTranslate,w,T).call(f.setScale,y,x),n.plot.call(f.setTranslate,A,S).call(f.setScale,1/y,1/x),y===n.xScaleFactor&&x===n.yScaleFactor||(f.setPointGroupScale(n.zoomScalePts,y,x),f.setTextPointsScale(n.zoomScaleTxt,y,x)),f.hideOutsideRangePoints(n.clipOnAxisFalseTraces,n),n.xScaleFactor=y,n.yScaleFactor=x}}}}function Yt(t,e,r){return t.fixedrange?0:ot&&et.xaHash[t._id]?e:st&&(et.isSubplotConstrained?et.xaHash:et.yaHash)[t._id]?r:0}function Wt(t,e){return e?(t.range=t._r.slice(),S(t,e),Xt(t,e)):0}function Xt(t,e,r){return t._length*(1-e)*x[r||t.constraintoward||\"middle\"]}return d.length*m.length!=1&&Y(xt,(function(e){if(t._context._scrollZoom.cartesian||t._fullLayout._enablescrollzoom){if(It(),t._transitioningWithDuration)return e.preventDefault(),void e.stopPropagation();vt(),clearTimeout(Ft);var r=-e.deltaY;if(isFinite(r)||(r=e.wheelDelta/10),isFinite(r)){var n,i=Math.exp(-Math.min(Math.max(r,-20),20)/200),a=Nt.draglayer.select(\".nsewdrag\").node().getBoundingClientRect(),o=(e.clientX-a.left)/a.width,l=(a.bottom-e.clientY)/a.height;if(ot){for(m||(o=.5),n=0;n<Z.length;n++)c(Z[n],o,i);Ut(\"x\"),Rt[2]*=i,Rt[0]+=Rt[2]*o*(1/i-1)}if(st){for(d||(l=.5),n=0;n<J.length;n++)c(J[n],l,i);Ut(\"y\"),Rt[3]*=i,Rt[1]+=Rt[3]*(1-l)*(1/i-1)}Gt(Rt),Vt(),t.emit(\"plotly_relayouting\",ft),Ft=setTimeout((function(){Rt=[0,0,$,tt],Ht()}),Bt),e.preventDefault()}else s.log(\"Did not find wheel motion attributes: \",e)}function c(t,e,r){if(!t.fixedrange){var n=s.simpleMap(t.range,t.r2l),i=n[0]+(n[1]-n[0])*e;t.range=n.map((function(e){return t.l2r(i+(e-i)*r)}))}}})),xt},makeDragger:P,makeRectDragger:z,makeZoombox:B,makeCorners:N,updateZoombox:j,xyCorners:H,transitionZoombox:U,removeZoombox:V,showDoubleClickNotifier:q,attachWheelEventHandler:Y}},{\"../../components/color\":643,\"../../components/dragelement\":662,\"../../components/dragelement/helpers\":661,\"../../components/drawing\":665,\"../../components/fx\":683,\"../../constants/alignment\":745,\"../../lib\":778,\"../../lib/clear_gl_canvases\":762,\"../../lib/setcursor\":799,\"../../lib/svg_text_utils\":803,\"../../plot_api/subroutines\":818,\"../../registry\":911,\"../plots\":891,\"./axes\":828,\"./axis_ids\":831,\"./constants\":834,\"./scale_zoom\":846,\"./select\":847,d3:169,\"has-passive-events\":441,tinycolor2:576}],837:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/fx\"),a=t(\"../../components/dragelement\"),o=t(\"../../lib/setcursor\"),s=t(\"./dragbox\").makeDragBox,l=t(\"./constants\").DRAGGERSIZE;r.initInteractions=function(t){var e=t._fullLayout;if(t._context.staticPlot)n.select(t).selectAll(\".drag\").remove();else if(e._has(\"cartesian\")||e._has(\"splom\")){Object.keys(e._plots||{}).sort((function(t,r){if((e._plots[t].mainplot&&!0)===(e._plots[r].mainplot&&!0)){var n=t.split(\"y\"),i=r.split(\"y\");return n[0]===i[0]?Number(n[1]||1)-Number(i[1]||1):Number(n[0]||1)-Number(i[0]||1)}return e._plots[t].mainplot?1:-1})).forEach((function(r){var n=e._plots[r],o=n.xaxis,c=n.yaxis;if(!n.mainplot){var u=s(t,n,o._offset,c._offset,o._length,c._length,\"ns\",\"ew\");u.onmousemove=function(e){t._fullLayout._rehover=function(){t._fullLayout._hoversubplot===r&&t._fullLayout._plots[r]&&i.hover(t,e,r)},i.hover(t,e,r),t._fullLayout._lasthover=u,t._fullLayout._hoversubplot=r},u.onmouseout=function(e){t._dragging||(t._fullLayout._hoversubplot=null,a.unhover(t,e))},t._context.showAxisDragHandles&&(s(t,n,o._offset-l,c._offset-l,l,l,\"n\",\"w\"),s(t,n,o._offset+o._length,c._offset-l,l,l,\"n\",\"e\"),s(t,n,o._offset-l,c._offset+c._length,l,l,\"s\",\"w\"),s(t,n,o._offset+o._length,c._offset+c._length,l,l,\"s\",\"e\"))}if(t._context.showAxisDragHandles){if(r===o._mainSubplot){var f=o._mainLinePosition;\"top\"===o.side&&(f-=l),s(t,n,o._offset+.1*o._length,f,.8*o._length,l,\"\",\"ew\"),s(t,n,o._offset,f,.1*o._length,l,\"\",\"w\"),s(t,n,o._offset+.9*o._length,f,.1*o._length,l,\"\",\"e\")}if(r===c._mainSubplot){var h=c._mainLinePosition;\"right\"!==c.side&&(h-=l),s(t,n,h,c._offset+.1*c._length,l,.8*c._length,\"ns\",\"\"),s(t,n,h,c._offset+.9*c._length,l,.1*c._length,\"s\",\"\"),s(t,n,h,c._offset,l,.1*c._length,\"n\",\"\")}}}));var o=e._hoverlayer.node();o.onmousemove=function(r){r.target=t._fullLayout._lasthover,i.hover(t,r,e._hoversubplot)},o.onclick=function(e){e.target=t._fullLayout._lasthover,i.click(t,e)},o.onmousedown=function(e){t._fullLayout._lasthover.onmousedown(e)},r.updateFx(t)}},r.updateFx=function(t){var e=t._fullLayout,r=\"pan\"===e.dragmode?\"move\":\"crosshair\";o(e._draggers,r)}},{\"../../components/dragelement\":662,\"../../components/fx\":683,\"../../lib/setcursor\":799,\"./constants\":834,\"./dragbox\":836,d3:169}],838:[function(t,e,r){\"use strict\";e.exports={clearOutlineControllers:function(t){var e=t._fullLayout._zoomlayer;e&&e.selectAll(\".outline-controllers\").remove()},clearSelect:function(t){var e=t._fullLayout._zoomlayer;e&&e.selectAll(\".select-outline\").remove(),t._fullLayout._drawing=!1}}},{}],839:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").strTranslate;function i(t,e){switch(t.type){case\"log\":return t.p2d(e);case\"date\":return t.p2r(e,0,t.calendar);default:return t.p2r(e)}}e.exports={p2r:i,r2p:function(t,e){switch(t.type){case\"log\":return t.d2p(e);case\"date\":return t.r2p(e,0,t.calendar);default:return t.r2p(e)}},axValue:function(t){var e=\"y\"===t._id.charAt(0)?1:0;return function(r){return i(t,r[e])}},getTransform:function(t){return n(t.xaxis._offset,t.yaxis._offset)}}},{\"../../lib\":778}],840:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"./axis_ids\");e.exports=function(t){return function(e,r){var o=e[t];if(Array.isArray(o))for(var s=n.subplotsRegistry.cartesian,l=s.idRegex,c=r._subplots,u=c.xaxis,f=c.yaxis,h=c.cartesian,p=r._has(\"cartesian\")||r._has(\"gl2d\"),d=0;d<o.length;d++){var g=o[d];if(i.isPlainObject(g)){var m=a.cleanId(g.xref,\"x\",!1),v=a.cleanId(g.yref,\"y\",!1),y=l.x.test(m),x=l.y.test(v);if(y||x){p||i.pushUnique(r._basePlotModules,s);var b=!1;y&&-1===u.indexOf(m)&&(u.push(m),b=!0),x&&-1===f.indexOf(v)&&(f.push(v),b=!0),b&&y&&x&&h.push(m+v)}}}}}},{\"../../lib\":778,\"../../registry\":911,\"./axis_ids\":831}],841:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../registry\"),a=t(\"../../lib\"),o=t(\"../plots\"),s=t(\"../../components/drawing\"),l=t(\"../get_data\").getModuleCalcData,c=t(\"./axis_ids\"),u=t(\"./constants\"),f=t(\"../../constants/xmlns_namespaces\"),h=a.ensureSingle;function p(t,e,r){return a.ensureSingle(t,e,r,(function(t){t.datum(r)}))}function d(t,e,r,a,o){for(var c,f,h,p=u.traceLayerClasses,d=t._fullLayout,g=d._modules,m=[],v=[],y=0;y<g.length;y++){var x=(c=g[y]).name,b=i.modules[x].categories;if(b.svg){var _=c.layerName||x+\"layer\",w=c.plot;h=(f=l(r,w))[0],r=f[1],h.length&&m.push({i:p.indexOf(_),className:_,plotMethod:w,cdModule:h}),b.zoomScale&&v.push(\".\"+_)}}m.sort((function(t,e){return t.i-e.i}));var T=e.plot.selectAll(\"g.mlayer\").data(m,(function(t){return t.className}));if(T.enter().append(\"g\").attr(\"class\",(function(t){return t.className})).classed(\"mlayer\",!0).classed(\"rangeplot\",e.isRangePlot),T.exit().remove(),T.order(),T.each((function(r){var i=n.select(this),l=r.className;r.plotMethod(t,e,r.cdModule,i,a,o),-1===u.clipOnAxisFalseQuery.indexOf(\".\"+l)&&s.setClipUrl(i,e.layerClipId,t)})),d._has(\"scattergl\")&&(c=i.getModule(\"scattergl\"),h=l(r,c)[0],c.plot(t,e,h)),!t._context.staticPlot&&(e._hasClipOnAxisFalse&&(e.clipOnAxisFalseTraces=e.plot.selectAll(u.clipOnAxisFalseQuery.join(\",\")).selectAll(\".trace\")),v.length)){var k=e.plot.selectAll(v.join(\",\")).selectAll(\".trace\");e.zoomScalePts=k.selectAll(\"path.point\"),e.zoomScaleTxt=k.selectAll(\".textpoint\")}}function g(t,e){var r=e.plotgroup,n=e.id,i=u.layerValue2layerClass[e.xaxis.layer],a=u.layerValue2layerClass[e.yaxis.layer],o=t._fullLayout._hasOnlyLargeSploms;if(e.mainplot){var s=e.mainplotinfo,l=s.plotgroup,f=n+\"-x\",d=n+\"-y\";e.gridlayer=s.gridlayer,e.zerolinelayer=s.zerolinelayer,h(s.overlinesBelow,\"path\",f),h(s.overlinesBelow,\"path\",d),h(s.overaxesBelow,\"g\",f),h(s.overaxesBelow,\"g\",d),e.plot=h(s.overplot,\"g\",n),h(s.overlinesAbove,\"path\",f),h(s.overlinesAbove,\"path\",d),h(s.overaxesAbove,\"g\",f),h(s.overaxesAbove,\"g\",d),e.xlines=l.select(\".overlines-\"+i).select(\".\"+f),e.ylines=l.select(\".overlines-\"+a).select(\".\"+d),e.xaxislayer=l.select(\".overaxes-\"+i).select(\".\"+f),e.yaxislayer=l.select(\".overaxes-\"+a).select(\".\"+d)}else if(o)e.xlines=h(r,\"path\",\"xlines-above\"),e.ylines=h(r,\"path\",\"ylines-above\"),e.xaxislayer=h(r,\"g\",\"xaxislayer-above\"),e.yaxislayer=h(r,\"g\",\"yaxislayer-above\");else{var g=h(r,\"g\",\"layer-subplot\");e.shapelayer=h(g,\"g\",\"shapelayer\"),e.imagelayer=h(g,\"g\",\"imagelayer\"),e.gridlayer=h(r,\"g\",\"gridlayer\"),e.zerolinelayer=h(r,\"g\",\"zerolinelayer\"),h(r,\"path\",\"xlines-below\"),h(r,\"path\",\"ylines-below\"),e.overlinesBelow=h(r,\"g\",\"overlines-below\"),h(r,\"g\",\"xaxislayer-below\"),h(r,\"g\",\"yaxislayer-below\"),e.overaxesBelow=h(r,\"g\",\"overaxes-below\"),e.plot=h(r,\"g\",\"plot\"),e.overplot=h(r,\"g\",\"overplot\"),e.xlines=h(r,\"path\",\"xlines-above\"),e.ylines=h(r,\"path\",\"ylines-above\"),e.overlinesAbove=h(r,\"g\",\"overlines-above\"),h(r,\"g\",\"xaxislayer-above\"),h(r,\"g\",\"yaxislayer-above\"),e.overaxesAbove=h(r,\"g\",\"overaxes-above\"),e.xlines=r.select(\".xlines-\"+i),e.ylines=r.select(\".ylines-\"+a),e.xaxislayer=r.select(\".xaxislayer-\"+i),e.yaxislayer=r.select(\".yaxislayer-\"+a)}o||(p(e.gridlayer,\"g\",e.xaxis._id),p(e.gridlayer,\"g\",e.yaxis._id),e.gridlayer.selectAll(\"g\").map((function(t){return t[0]})).sort(c.idSort)),e.xlines.style(\"fill\",\"none\").classed(\"crisp\",!0),e.ylines.style(\"fill\",\"none\").classed(\"crisp\",!0)}function m(t,e){if(t){var r={};for(var i in t.each((function(t){var i=t[0];n.select(this).remove(),v(i,e),r[i]=!0})),e._plots)for(var a=e._plots[i].overlays||[],o=0;o<a.length;o++){var s=a[o];r[s.id]&&s.plot.selectAll(\".trace\").remove()}}}function v(t,e){e._draggers.selectAll(\"g.\"+t).remove(),e._defs.select(\"#clip\"+e._uid+t+\"plot\").remove()}r.name=\"cartesian\",r.attr=[\"xaxis\",\"yaxis\"],r.idRoot=[\"x\",\"y\"],r.idRegex=u.idRegex,r.attrRegex=u.attrRegex,r.attributes=t(\"./attributes\"),r.layoutAttributes=t(\"./layout_attributes\"),r.supplyLayoutDefaults=t(\"./layout_defaults\"),r.transitionAxes=t(\"./transition_axes\"),r.finalizeSubplots=function(t,e){var r,n,i,o=e._subplots,s=o.xaxis,l=o.yaxis,f=o.cartesian,h=f.concat(o.gl2d||[]),p={},d={};for(r=0;r<h.length;r++){var g=h[r].split(\"y\");p[g[0]]=1,d[\"y\"+g[1]]=1}for(r=0;r<s.length;r++)p[n=s[r]]||(i=(t[c.id2name(n)]||{}).anchor,u.idRegex.y.test(i)||(i=\"y\"),f.push(n+i),h.push(n+i),d[i]||(d[i]=1,a.pushUnique(l,i)));for(r=0;r<l.length;r++)d[i=l[r]]||(n=(t[c.id2name(i)]||{}).anchor,u.idRegex.x.test(n)||(n=\"x\"),f.push(n+i),h.push(n+i),p[n]||(p[n]=1,a.pushUnique(s,n)));if(!h.length){for(var m in n=\"\",i=\"\",t){if(u.attrRegex.test(m))\"x\"===m.charAt(0)?(!n||+m.substr(5)<+n.substr(5))&&(n=m):(!i||+m.substr(5)<+i.substr(5))&&(i=m)}n=n?c.name2id(n):\"x\",i=i?c.name2id(i):\"y\",s.push(n),l.push(i),f.push(n+i)}},r.plot=function(t,e,r,n){var i,a=t._fullLayout,o=a._subplots.cartesian,s=t.calcdata;if(!Array.isArray(e))for(e=[],i=0;i<s.length;i++)e.push(i);for(i=0;i<o.length;i++){for(var l,c=o[i],u=a._plots[c],f=[],h=0;h<s.length;h++){var p=s[h],g=p[0].trace;g.xaxis+g.yaxis===c&&((-1!==e.indexOf(g.index)||g.carpet)&&(l&&l[0].trace.xaxis+l[0].trace.yaxis===c&&-1!==[\"tonextx\",\"tonexty\",\"tonext\"].indexOf(g.fill)&&-1===f.indexOf(l)&&f.push(l),f.push(p)),l=p)}d(t,u,f,r,n)}},r.clean=function(t,e,r,n){var i,a,o,s=n._plots||{},l=e._plots||{},u=n._subplots||{};if(n._hasOnlyLargeSploms&&!e._hasOnlyLargeSploms)for(o in s)(i=s[o]).plotgroup&&i.plotgroup.remove();var f=n._has&&n._has(\"gl\"),h=e._has&&e._has(\"gl\");if(f&&!h)for(o in s)(i=s[o])._scene&&i._scene.destroy();if(u.xaxis&&u.yaxis){var p=c.listIds({_fullLayout:n});for(a=0;a<p.length;a++){var d=p[a];e[c.id2name(d)]||n._infolayer.selectAll(\".g-\"+d+\"title\").remove()}}var g=n._has&&n._has(\"cartesian\"),y=e._has&&e._has(\"cartesian\");if(g&&!y)m(n._cartesianlayer.selectAll(\".subplot\"),n),n._defs.selectAll(\".axesclip\").remove(),delete n._axisConstraintGroups,delete n._axisMatchGroups;else if(u.cartesian)for(a=0;a<u.cartesian.length;a++){var x=u.cartesian[a];if(!l[x]){var b=\".\"+x+\",.\"+x+\"-x,.\"+x+\"-y\";n._cartesianlayer.selectAll(b).remove(),v(x,n)}}},r.drawFramework=function(t){var e=t._fullLayout,r=function(t){var e,r,n,i,a,o,s=t._fullLayout,l=s._subplots.cartesian,c=l.length,u=[],f=[];for(e=0;e<c;e++){n=l[e],i=s._plots[n],a=i.xaxis,o=i.yaxis;var h=a._mainAxis,p=o._mainAxis,d=h._id+p._id,g=s._plots[d];i.overlays=[],d!==n&&g?(i.mainplot=d,i.mainplotinfo=g,f.push(n)):(i.mainplot=void 0,i.mainplotinfo=void 0,u.push(n))}for(e=0;e<f.length;e++)n=f[e],(i=s._plots[n]).mainplotinfo.overlays.push(i);var m=u.concat(f),v=new Array(c);for(e=0;e<c;e++){n=m[e],i=s._plots[n],a=i.xaxis,o=i.yaxis;var y=[n,a.layer,o.layer,a.overlaying||\"\",o.overlaying||\"\"];for(r=0;r<i.overlays.length;r++)y.push(i.overlays[r].id);v[e]=y}return v}(t),i=e._cartesianlayer.selectAll(\".subplot\").data(r,String);i.enter().append(\"g\").attr(\"class\",(function(t){return\"subplot \"+t[0]})),i.order(),i.exit().call(m,e),i.each((function(r){var i=r[0],a=e._plots[i];a.plotgroup=n.select(this),g(t,a),a.draglayer=h(e._draggers,\"g\",i)}))},r.rangePlot=function(t,e,r){g(t,e),d(t,e,r),o.style(t)},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(\".svg-container\");r.filter((function(t,e){return e===r.size()-1})).selectAll(\".gl-canvas-context, .gl-canvas-focus\").each((function(){var t=this.toDataURL(\"image/png\");e.append(\"svg:image\").attr({xmlns:f.svg,\"xlink:href\":t,preserveAspectRatio:\"none\",x:0,y:0,width:this.width,height:this.height})}))},r.updateFx=t(\"./graph_interact\").updateFx},{\"../../components/drawing\":665,\"../../constants/xmlns_namespaces\":754,\"../../lib\":778,\"../../registry\":911,\"../get_data\":865,\"../plots\":891,\"./attributes\":826,\"./axis_ids\":831,\"./constants\":834,\"./graph_interact\":837,\"./layout_attributes\":842,\"./layout_defaults\":843,\"./transition_axes\":852,d3:169}],842:[function(t,e,r){\"use strict\";var n=t(\"../font_attributes\"),i=t(\"../../components/color/attributes\"),a=t(\"../../components/drawing/attributes\").dash,o=t(\"../../lib/extend\").extendFlat,s=t(\"../../plot_api/plot_template\").templatedArray,l=(t(\"../../constants/docs\").FORMAT_LINK,t(\"../../constants/docs\").DATE_FORMAT_LINK,t(\"../../constants/numerical\").ONEDAY),c=t(\"./constants\"),u=c.HOUR_PATTERN,f=c.WEEKDAY_PATTERN;e.exports={visible:{valType:\"boolean\",editType:\"plot\"},color:{valType:\"color\",dflt:i.defaultLine,editType:\"ticks\"},title:{text:{valType:\"string\",editType:\"ticks\"},font:n({editType:\"ticks\"}),standoff:{valType:\"number\",min:0,editType:\"ticks\"},editType:\"ticks\"},type:{valType:\"enumerated\",values:[\"-\",\"linear\",\"log\",\"date\",\"category\",\"multicategory\"],dflt:\"-\",editType:\"calc\",_noTemplating:!0},autotypenumbers:{valType:\"enumerated\",values:[\"convert types\",\"strict\"],dflt:\"convert types\",editType:\"calc\"},autorange:{valType:\"enumerated\",values:[!0,!1,\"reversed\"],dflt:!0,editType:\"axrange\",impliedEdits:{\"range[0]\":void 0,\"range[1]\":void 0}},rangemode:{valType:\"enumerated\",values:[\"normal\",\"tozero\",\"nonnegative\"],dflt:\"normal\",editType:\"plot\"},range:{valType:\"info_array\",items:[{valType:\"any\",editType:\"axrange\",impliedEdits:{\"^autorange\":!1},anim:!0},{valType:\"any\",editType:\"axrange\",impliedEdits:{\"^autorange\":!1},anim:!0}],editType:\"axrange\",impliedEdits:{autorange:!1},anim:!0},fixedrange:{valType:\"boolean\",dflt:!1,editType:\"calc\"},scaleanchor:{valType:\"enumerated\",values:[c.idRegex.x.toString(),c.idRegex.y.toString()],editType:\"plot\"},scaleratio:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},constrain:{valType:\"enumerated\",values:[\"range\",\"domain\"],editType:\"plot\"},constraintoward:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\",\"top\",\"middle\",\"bottom\"],editType:\"plot\"},matches:{valType:\"enumerated\",values:[c.idRegex.x.toString(),c.idRegex.y.toString()],editType:\"calc\"},rangebreaks:s(\"rangebreak\",{enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},bounds:{valType:\"info_array\",items:[{valType:\"any\",editType:\"calc\"},{valType:\"any\",editType:\"calc\"}],editType:\"calc\"},pattern:{valType:\"enumerated\",values:[f,u,\"\"],editType:\"calc\"},values:{valType:\"info_array\",freeLength:!0,editType:\"calc\",items:{valType:\"any\",editType:\"calc\"}},dvalue:{valType:\"number\",editType:\"calc\",min:0,dflt:l},editType:\"calc\"}),tickmode:{valType:\"enumerated\",values:[\"auto\",\"linear\",\"array\"],editType:\"ticks\",impliedEdits:{tick0:void 0,dtick:void 0}},nticks:{valType:\"integer\",min:0,dflt:0,editType:\"ticks\"},tick0:{valType:\"any\",editType:\"ticks\",impliedEdits:{tickmode:\"linear\"}},dtick:{valType:\"any\",editType:\"ticks\",impliedEdits:{tickmode:\"linear\"}},tickvals:{valType:\"data_array\",editType:\"ticks\"},ticktext:{valType:\"data_array\",editType:\"ticks\"},ticks:{valType:\"enumerated\",values:[\"outside\",\"inside\",\"\"],editType:\"ticks\"},tickson:{valType:\"enumerated\",values:[\"labels\",\"boundaries\"],dflt:\"labels\",editType:\"ticks\"},ticklabelmode:{valType:\"enumerated\",values:[\"instant\",\"period\"],dflt:\"instant\",editType:\"ticks\"},ticklabelposition:{valType:\"enumerated\",values:[\"outside\",\"inside\",\"outside top\",\"inside top\",\"outside left\",\"inside left\",\"outside right\",\"inside right\",\"outside bottom\",\"inside bottom\"],dflt:\"outside\",editType:\"calc\"},mirror:{valType:\"enumerated\",values:[!0,\"ticks\",!1,\"all\",\"allticks\"],dflt:!1,editType:\"ticks+layoutstyle\"},ticklen:{valType:\"number\",min:0,dflt:5,editType:\"ticks\"},tickwidth:{valType:\"number\",min:0,dflt:1,editType:\"ticks\"},tickcolor:{valType:\"color\",dflt:i.defaultLine,editType:\"ticks\"},showticklabels:{valType:\"boolean\",dflt:!0,editType:\"ticks\"},automargin:{valType:\"boolean\",dflt:!1,editType:\"ticks\"},showspikes:{valType:\"boolean\",dflt:!1,editType:\"modebar\"},spikecolor:{valType:\"color\",dflt:null,editType:\"none\"},spikethickness:{valType:\"number\",dflt:3,editType:\"none\"},spikedash:o({},a,{dflt:\"dash\",editType:\"none\"}),spikemode:{valType:\"flaglist\",flags:[\"toaxis\",\"across\",\"marker\"],dflt:\"toaxis\",editType:\"none\"},spikesnap:{valType:\"enumerated\",values:[\"data\",\"cursor\",\"hovered data\"],dflt:\"data\",editType:\"none\"},tickfont:n({editType:\"ticks\"}),tickangle:{valType:\"angle\",dflt:\"auto\",editType:\"ticks\"},tickprefix:{valType:\"string\",dflt:\"\",editType:\"ticks\"},showtickprefix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"ticks\"},ticksuffix:{valType:\"string\",dflt:\"\",editType:\"ticks\"},showticksuffix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"ticks\"},showexponent:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"ticks\"},exponentformat:{valType:\"enumerated\",values:[\"none\",\"e\",\"E\",\"power\",\"SI\",\"B\"],dflt:\"B\",editType:\"ticks\"},minexponent:{valType:\"number\",dflt:3,min:0,editType:\"ticks\"},separatethousands:{valType:\"boolean\",dflt:!1,editType:\"ticks\"},tickformat:{valType:\"string\",dflt:\"\",editType:\"ticks\"},tickformatstops:s(\"tickformatstop\",{enabled:{valType:\"boolean\",dflt:!0,editType:\"ticks\"},dtickrange:{valType:\"info_array\",items:[{valType:\"any\",editType:\"ticks\"},{valType:\"any\",editType:\"ticks\"}],editType:\"ticks\"},value:{valType:\"string\",dflt:\"\",editType:\"ticks\"},editType:\"ticks\"}),hoverformat:{valType:\"string\",dflt:\"\",editType:\"none\"},showline:{valType:\"boolean\",dflt:!1,editType:\"ticks+layoutstyle\"},linecolor:{valType:\"color\",dflt:i.defaultLine,editType:\"layoutstyle\"},linewidth:{valType:\"number\",min:0,dflt:1,editType:\"ticks+layoutstyle\"},showgrid:{valType:\"boolean\",editType:\"ticks\"},gridcolor:{valType:\"color\",dflt:i.lightLine,editType:\"ticks\"},gridwidth:{valType:\"number\",min:0,dflt:1,editType:\"ticks\"},zeroline:{valType:\"boolean\",editType:\"ticks\"},zerolinecolor:{valType:\"color\",dflt:i.defaultLine,editType:\"ticks\"},zerolinewidth:{valType:\"number\",dflt:1,editType:\"ticks\"},showdividers:{valType:\"boolean\",dflt:!0,editType:\"ticks\"},dividercolor:{valType:\"color\",dflt:i.defaultLine,editType:\"ticks\"},dividerwidth:{valType:\"number\",dflt:1,editType:\"ticks\"},anchor:{valType:\"enumerated\",values:[\"free\",c.idRegex.x.toString(),c.idRegex.y.toString()],editType:\"plot\"},side:{valType:\"enumerated\",values:[\"top\",\"bottom\",\"left\",\"right\"],editType:\"plot\"},overlaying:{valType:\"enumerated\",values:[\"free\",c.idRegex.x.toString(),c.idRegex.y.toString()],editType:\"plot\"},layer:{valType:\"enumerated\",values:[\"above traces\",\"below traces\"],dflt:\"above traces\",editType:\"plot\"},domain:{valType:\"info_array\",items:[{valType:\"number\",min:0,max:1,editType:\"plot\"},{valType:\"number\",min:0,max:1,editType:\"plot\"}],dflt:[0,1],editType:\"plot\"},position:{valType:\"number\",min:0,max:1,dflt:0,editType:\"plot\"},categoryorder:{valType:\"enumerated\",values:[\"trace\",\"category ascending\",\"category descending\",\"array\",\"total ascending\",\"total descending\",\"min ascending\",\"min descending\",\"max ascending\",\"max descending\",\"sum ascending\",\"sum descending\",\"mean ascending\",\"mean descending\",\"median ascending\",\"median descending\"],dflt:\"trace\",editType:\"calc\"},categoryarray:{valType:\"data_array\",editType:\"calc\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\",_deprecated:{autotick:{valType:\"boolean\",editType:\"ticks\"},title:{valType:\"string\",editType:\"ticks\"},titlefont:n({editType:\"ticks\"})}}},{\"../../components/color/attributes\":642,\"../../components/drawing/attributes\":664,\"../../constants/docs\":748,\"../../constants/numerical\":753,\"../../lib/extend\":768,\"../../plot_api/plot_template\":817,\"../font_attributes\":856,\"./constants\":834}],843:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/color\"),a=t(\"../../components/fx/helpers\").isUnifiedHover,o=t(\"../../components/fx/hovermode_defaults\"),s=t(\"../../plot_api/plot_template\"),l=t(\"../layout_attributes\"),c=t(\"./layout_attributes\"),u=t(\"./type_defaults\"),f=t(\"./axis_defaults\"),h=t(\"./constraints\"),p=t(\"./position_defaults\"),d=t(\"./axis_ids\"),g=d.id2name,m=d.name2id,v=t(\"./constants\").AX_ID_PATTERN,y=t(\"../../registry\"),x=y.traceIs,b=y.getComponentMethod;function _(t,e,r){Array.isArray(t[e])?t[e].push(r):t[e]=[r]}e.exports=function(t,e,r){var y,w,T=e.autotypenumbers,k={},M={},A={},S={},E={},C={},L={},I={},P={},z={};for(y=0;y<r.length;y++){var O=r[y];if(x(O,\"cartesian\")||x(O,\"gl2d\")){var D,R;if(O.xaxis)D=g(O.xaxis),_(k,D,O);else if(O.xaxes)for(w=0;w<O.xaxes.length;w++)_(k,g(O.xaxes[w]),O);if(O.yaxis)R=g(O.yaxis),_(k,R,O);else if(O.yaxes)for(w=0;w<O.yaxes.length;w++)_(k,g(O.yaxes[w]),O);if(\"funnel\"===O.type?\"h\"===O.orientation?(D&&(M[D]=!0),R&&(L[R]=!0)):R&&(A[R]=!0):\"image\"===O.type?(R&&(I[R]=!0),D&&(I[D]=!0)):(R&&(E[R]=!0,C[R]=!0),x(O,\"carpet\")&&(\"carpet\"!==O.type||O._cheater)||D&&(S[D]=!0)),\"carpet\"===O.type&&O._cheater&&D&&(M[D]=!0),x(O,\"2dMap\")&&(P[D]=!0,P[R]=!0),x(O,\"oriented\"))z[\"h\"===O.orientation?R:D]=!0}}var F=e._subplots,B=F.xaxis,N=F.yaxis,j=n.simpleMap(B,g),U=n.simpleMap(N,g),V=j.concat(U),q=i.background;B.length&&N.length&&(q=n.coerce(t,e,l,\"plot_bgcolor\"));var H,G,Y,W,X,Z=i.combine(q,e.paper_bgcolor);function J(){var t=k[H]||[];X._traceIndices=t.map((function(t){return t._expandedIndex})),X._annIndices=[],X._shapeIndices=[],X._imgIndices=[],X._subplotsWith=[],X._counterAxes=[],X._name=X._attr=H,X._id=G}function K(t,e){return n.coerce(W,X,c,t,e)}function Q(t,e){return n.coerce2(W,X,c,t,e)}function $(t){return\"x\"===t?N:B}function tt(e,r){for(var n=\"x\"===e?j:U,i=[],a=0;a<n.length;a++){var o=n[a];o===r||(t[o]||{}).overlaying||i.push(m(o))}return i}var et={x:$(\"x\"),y:$(\"y\")},rt=et.x.concat(et.y),nt={},it=[];function at(){var t=W.matches;v.test(t)&&-1===rt.indexOf(t)&&(nt[t]=W.type,it=Object.keys(nt))}var ot=o(t,e,r),st=a(ot);for(y=0;y<V.length;y++){H=V[y],G=m(H),Y=H.charAt(0),n.isPlainObject(t[H])||(t[H]={}),W=t[H],X=s.newContainer(e,H,Y+\"axis\"),J();var lt=\"x\"===Y&&!S[H]&&M[H]||\"y\"===Y&&!E[H]&&A[H],ct=\"y\"===Y&&(!C[H]&&L[H]||I[H]),ut={letter:Y,font:e.font,outerTicks:P[H],showGrid:!z[H],data:k[H]||[],bgColor:Z,calendar:e.calendar,automargin:!0,visibleDflt:lt,reverseDflt:ct,autotypenumbersDflt:T,splomStash:((e._splomAxes||{})[Y]||{})[G]};K(\"uirevision\",e.uirevision),u(W,X,K,ut),f(W,X,K,ut,e);var ft=st&&Y===ot.charAt(0),ht=Q(\"spikecolor\",st?X.color:void 0),pt=Q(\"spikethickness\",st?1.5:void 0),dt=Q(\"spikedash\",st?\"dot\":void 0),gt=Q(\"spikemode\",st?\"across\":void 0),mt=Q(\"spikesnap\",st?\"hovered data\":void 0);K(\"showspikes\",!!(ft||ht||pt||dt||gt||mt))||(delete X.spikecolor,delete X.spikethickness,delete X.spikedash,delete X.spikemode,delete X.spikesnap),p(W,X,K,{letter:Y,counterAxes:et[Y],overlayableAxes:tt(Y,H),grid:e.grid}),K(\"title.standoff\"),at(),X._input=W}for(y=0;y<it.length;){G=it[y++],Y=(H=g(G)).charAt(0),n.isPlainObject(t[H])||(t[H]={}),W=t[H],X=s.newContainer(e,H,Y+\"axis\"),J();var vt={letter:Y,font:e.font,outerTicks:P[H],showGrid:!z[H],data:[],bgColor:Z,calendar:e.calendar,automargin:!0,visibleDflt:!1,reverseDflt:!1,autotypenumbersDflt:T,splomStash:((e._splomAxes||{})[Y]||{})[G]};K(\"uirevision\",e.uirevision),X.type=nt[G]||\"linear\",f(W,X,K,vt,e),p(W,X,K,{letter:Y,counterAxes:et[Y],overlayableAxes:tt(Y,H),grid:e.grid}),K(\"fixedrange\"),at(),X._input=W}var yt=b(\"rangeslider\",\"handleDefaults\"),xt=b(\"rangeselector\",\"handleDefaults\");for(y=0;y<j.length;y++)H=j[y],W=t[H],X=e[H],yt(t,e,H),\"date\"===X.type&&xt(W,X,e,U,X.calendar),K(\"fixedrange\");for(y=0;y<U.length;y++){H=U[y],W=t[H],X=e[H];var bt=e[g(X.anchor)];K(\"fixedrange\",b(\"rangeslider\",\"isVisible\")(bt))}h.handleDefaults(t,e,{axIds:rt.concat(it).sort(d.idSort),axHasImage:I})}},{\"../../components/color\":643,\"../../components/fx/helpers\":679,\"../../components/fx/hovermode_defaults\":682,\"../../lib\":778,\"../../plot_api/plot_template\":817,\"../../registry\":911,\"../layout_attributes\":882,\"./axis_defaults\":830,\"./axis_ids\":831,\"./constants\":834,\"./constraints\":835,\"./layout_attributes\":842,\"./position_defaults\":845,\"./type_defaults\":853}],844:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\").mix,i=t(\"../../components/color/attributes\").lightFraction,a=t(\"../../lib\");e.exports=function(t,e,r,o){var s=(o=o||{}).dfltColor;function l(r,n){return a.coerce2(t,e,o.attributes,r,n)}var c=l(\"linecolor\",s),u=l(\"linewidth\");r(\"showline\",o.showLine||!!c||!!u)||(delete e.linecolor,delete e.linewidth);var f=l(\"gridcolor\",n(s,o.bgColor,o.blend||i).toRgbString()),h=l(\"gridwidth\");if(r(\"showgrid\",o.showGrid||!!f||!!h)||(delete e.gridcolor,delete e.gridwidth),!o.noZeroLine){var p=l(\"zerolinecolor\",s),d=l(\"zerolinewidth\");r(\"zeroline\",o.showGrid||!!p||!!d)||(delete e.zerolinecolor,delete e.zerolinewidth)}}},{\"../../components/color/attributes\":642,\"../../lib\":778,tinycolor2:576}],845:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\");e.exports=function(t,e,r,a){var o,s,l,c,u=a.counterAxes||[],f=a.overlayableAxes||[],h=a.letter,p=a.grid;p&&(s=p._domains[h][p._axisMap[e._id]],o=p._anchors[e._id],s&&(l=p[h+\"side\"].split(\" \")[0],c=p.domain[h][\"right\"===l||\"top\"===l?1:0])),s=s||[0,1],o=o||(n(t.position)?\"free\":u[0]||\"free\"),l=l||(\"x\"===h?\"bottom\":\"left\"),c=c||0,\"free\"===i.coerce(t,e,{anchor:{valType:\"enumerated\",values:[\"free\"].concat(u),dflt:o}},\"anchor\")&&r(\"position\",c),i.coerce(t,e,{side:{valType:\"enumerated\",values:\"x\"===h?[\"bottom\",\"top\"]:[\"left\",\"right\"],dflt:l}},\"side\");var d=!1;if(f.length&&(d=i.coerce(t,e,{overlaying:{valType:\"enumerated\",values:[!1].concat(f),dflt:!1}},\"overlaying\")),!d){var g=r(\"domain\",s);g[0]>g[1]-1/4096&&(e.domain=s),i.noneOrAll(t.domain,e.domain,s)}return r(\"layer\"),e}},{\"../../lib\":778,\"fast-isnumeric\":241}],846:[function(t,e,r){\"use strict\";var n=t(\"../../constants/alignment\").FROM_BL;e.exports=function(t,e,r){void 0===r&&(r=n[t.constraintoward||\"center\"]);var i=[t.r2l(t.range[0]),t.r2l(t.range[1])],a=i[0]+(i[1]-i[0])*r;t.range=t._input.range=[t.l2r(a+(i[0]-a)*e),t.l2r(a+(i[1]-a)*e)],t.setScale()}},{\"../../constants/alignment\":745}],847:[function(t,e,r){\"use strict\";var n=t(\"polybooljs\"),i=t(\"../../registry\"),a=t(\"../../components/drawing\").dashStyle,o=t(\"../../components/color\"),s=t(\"../../components/fx\"),l=t(\"../../components/fx/helpers\").makeEventData,c=t(\"../../components/dragelement/helpers\"),u=c.freeMode,f=c.rectMode,h=c.drawMode,p=c.openMode,d=c.selectMode,g=t(\"../../components/shapes/draw_newshape/display_outlines\"),m=t(\"../../components/shapes/draw_newshape/helpers\").handleEllipse,v=t(\"../../components/shapes/draw_newshape/newshapes\"),y=t(\"../../lib\"),x=t(\"../../lib/polygon\"),b=t(\"../../lib/throttle\"),_=t(\"./axis_ids\").getFromId,w=t(\"../../lib/clear_gl_canvases\"),T=t(\"../../plot_api/subroutines\").redrawReglTraces,k=t(\"./constants\"),M=k.MINSELECT,A=x.filter,S=x.tester,E=t(\"./handle_outline\").clearSelect,C=t(\"./helpers\"),L=C.p2r,I=C.axValue,P=C.getTransform;function z(t,e,r,n,i,a,o){var s,l,c,u,f,h,d,m,v,y=e._hoverdata,x=e._fullLayout.clickmode.indexOf(\"event\")>-1,b=[];if(function(t){return t&&Array.isArray(t)&&!0!==t[0].hoverOnBox}(y)){F(t,e,a);var _=function(t,e){var r,n,i=t[0],a=-1,o=[];for(n=0;n<e.length;n++)if(r=e[n],i.fullData._expandedIndex===r.cd[0].trace._expandedIndex){if(!0===i.hoverOnBox)break;void 0!==i.pointNumber?a=i.pointNumber:void 0!==i.binNumber&&(a=i.binNumber,o=i.pointNumbers);break}return{pointNumber:a,pointNumbers:o,searchInfo:r}}(y,s=N(e,r,n,i));if(_.pointNumbers.length>0?function(t,e){var r,n,i,a=[];for(i=0;i<t.length;i++)(r=t[i]).cd[0].trace.selectedpoints&&r.cd[0].trace.selectedpoints.length>0&&a.push(r);if(1===a.length&&a[0]===e.searchInfo&&(n=e.searchInfo.cd[0].trace).selectedpoints.length===e.pointNumbers.length){for(i=0;i<e.pointNumbers.length;i++)if(n.selectedpoints.indexOf(e.pointNumbers[i])<0)return!1;return!0}return!1}(s,_):function(t){var e,r,n,i=0;for(n=0;n<t.length;n++)if(e=t[n],(r=e.cd[0].trace).selectedpoints){if(r.selectedpoints.length>1)return!1;if((i+=r.selectedpoints.length)>1)return!1}return 1===i}(s)&&(h=j(_))){for(o&&o.remove(),v=0;v<s.length;v++)(l=s[v])._module.selectPoints(l,!1);U(e,s),B(a),x&&e.emit(\"plotly_deselect\",null)}else{for(d=t.shiftKey&&(void 0!==h?h:j(_)),c=function(t,e,r){return{pointNumber:t,searchInfo:e,subtract:r}}(_.pointNumber,_.searchInfo,d),u=R(a.selectionDefs.concat([c])),v=0;v<s.length;v++)if(f=V(s[v]._module.selectPoints(s[v],u),s[v]),b.length)for(var w=0;w<f.length;w++)b.push(f[w]);else b=f;if(U(e,s,m={points:b}),c&&a&&a.selectionDefs.push(c),o){var T=a.mergedPolygons,k=p(a.dragmode);g(q(T,k),o,a)}x&&e.emit(\"plotly_selected\",m)}}}function O(t){return\"pointNumber\"in t&&\"searchInfo\"in t}function D(t){return{xmin:0,xmax:0,ymin:0,ymax:0,pts:[],contains:function(e,r,n,i){var a=t.searchInfo.cd[0].trace._expandedIndex;return i.cd[0].trace._expandedIndex===a&&n===t.pointNumber},isRect:!1,degenerate:!1,subtract:t.subtract}}function R(t){for(var e=[],r=O(t[0])?0:t[0][0][0],n=r,i=O(t[0])?0:t[0][0][1],a=i,o=0;o<t.length;o++)if(O(t[o]))e.push(D(t[o]));else{var s=x.tester(t[o]);s.subtract=t[o].subtract,e.push(s),r=Math.min(r,s.xmin),n=Math.max(n,s.xmax),i=Math.min(i,s.ymin),a=Math.max(a,s.ymax)}return{xmin:r,xmax:n,ymin:i,ymax:a,pts:[],contains:function(t,r,n,i){for(var a=!1,o=0;o<e.length;o++)e[o].contains(t,r,n,i)&&(a=!1===e[o].subtract);return a},isRect:!1,degenerate:!1}}function F(t,e,r){e._fullLayout._drawing=!1;var n=e._fullLayout,i=r.plotinfo,a=r.dragmode,o=n._lastSelectedSubplot&&n._lastSelectedSubplot===i.id,s=(t.shiftKey||t.altKey)&&!(h(a)&&p(a));o&&s&&i.selection&&i.selection.selectionDefs&&!r.selectionDefs?(r.selectionDefs=i.selection.selectionDefs,r.mergedPolygons=i.selection.mergedPolygons):s&&i.selection||B(r),o||(E(e),n._lastSelectedSubplot=i.id)}function B(t){var e=t.dragmode,r=t.plotinfo,n=t.gd;if(n._fullLayout._activeShapeIndex>=0&&n._fullLayout._deactivateShape(n),h(e)){var a=n._fullLayout._zoomlayer.selectAll(\".select-outline-\"+r.id);if(a&&n._fullLayout._drawing){var o=v(a,t);o&&i.call(\"_guiRelayout\",n,{shapes:o}),n._fullLayout._drawing=!1}}r.selection={},r.selection.selectionDefs=t.selectionDefs=[],r.selection.mergedPolygons=t.mergedPolygons=[]}function N(t,e,r,n){var i,a,o,s=[],l=e.map((function(t){return t._id})),c=r.map((function(t){return t._id}));for(o=0;o<t.calcdata.length;o++)if(!0===(a=(i=t.calcdata[o])[0].trace).visible&&a._module&&a._module.selectPoints)if(!n||a.subplot!==n&&a.geo!==n)if(\"splom\"===a.type&&a._xaxes[l[0]]&&a._yaxes[c[0]]){var u=h(a._module,i,e[0],r[0]);u.scene=t._fullLayout._splomScenes[a.uid],s.push(u)}else if(\"sankey\"===a.type){var f=h(a._module,i,e[0],r[0]);s.push(f)}else{if(-1===l.indexOf(a.xaxis))continue;if(-1===c.indexOf(a.yaxis))continue;s.push(h(a._module,i,_(t,a.xaxis),_(t,a.yaxis)))}else s.push(h(a._module,i,e[0],r[0]));return s;function h(t,e,r,n){return{_module:t,cd:e,xaxis:r,yaxis:n}}}function j(t){var e=t.searchInfo.cd[0].trace,r=t.pointNumber,n=t.pointNumbers,i=n.length>0?n[0]:r;return!!e.selectedpoints&&e.selectedpoints.indexOf(i)>-1}function U(t,e,r){var n,a,o,s;for(n=0;n<e.length;n++){var l=e[n].cd[0].trace._fullInput,c=t._fullLayout._tracePreGUI[l.uid]||{};void 0===c.selectedpoints&&(c.selectedpoints=l._input.selectedpoints||null)}if(r){var u=r.points||[];for(n=0;n<e.length;n++)(s=e[n].cd[0].trace)._input.selectedpoints=s._fullInput.selectedpoints=[],s._fullInput!==s&&(s.selectedpoints=[]);for(n=0;n<u.length;n++){var f=u[n],h=f.data,p=f.fullData;f.pointIndices?([].push.apply(h.selectedpoints,f.pointIndices),s._fullInput!==s&&[].push.apply(p.selectedpoints,f.pointIndices)):(h.selectedpoints.push(f.pointIndex),s._fullInput!==s&&p.selectedpoints.push(f.pointIndex))}}else for(n=0;n<e.length;n++)delete(s=e[n].cd[0].trace).selectedpoints,delete s._input.selectedpoints,s._fullInput!==s&&delete s._fullInput.selectedpoints;var d=!1;for(n=0;n<e.length;n++){s=(o=(a=e[n]).cd)[0].trace,i.traceIs(s,\"regl\")&&(d=!0);var g=a._module,m=g.styleOnSelect||g.style;m&&(m(t,o,o[0].node3),o[0].nodeRangePlot3&&m(t,o,o[0].nodeRangePlot3))}d&&(w(t),T(t))}function V(t,e){if(Array.isArray(t))for(var r=e.cd,n=e.cd[0].trace,i=0;i<t.length;i++)t[i]=l(t[i],n,r);return t}function q(t,e){for(var r=[],n=0;n<t.length;n++){r[n]=[];for(var i=0;i<t[n].length;i++){r[n][i]=[],r[n][i][0]=i?\"L\":\"M\";for(var a=0;a<t[n][i].length;a++)r[n][i].push(t[n][i][a])}e||r[n].push([\"Z\",r[n][0][1],r[n][0][2]])}return r}e.exports={prepSelect:function(t,e,r,i,l){var c=u(l),v=f(l),x=p(l),_=h(l),w=d(l),T=\"drawcircle\"===l,E=\"drawline\"===l||T,C=i.gd,O=C._fullLayout,D=O._zoomlayer,j=i.element.getBoundingClientRect(),H=i.plotinfo,G=P(H),Y=e-j.left,W=r-j.top;O._calcInverseTransform(C);var X=y.apply3DTransform(O._invTransform)(Y,W);Y=X[0],W=X[1];var Z,J,K,Q,$,tt,et,rt=O._invScaleX,nt=O._invScaleY,it=Y,at=W,ot=\"M\"+Y+\",\"+W,st=i.xaxes[0]._length,lt=i.yaxes[0]._length,ct=i.xaxes.concat(i.yaxes),ut=t.altKey&&!(h(l)&&x);F(t,C,i),c&&(Z=A([[Y,W]],k.BENDPX));var ft=D.selectAll(\"path.select-outline-\"+H.id).data(_?[0]:[1,2]),ht=O.newshape;ft.enter().append(\"path\").attr(\"class\",(function(t){return\"select-outline select-outline-\"+t+\" select-outline-\"+H.id})).style(_?{opacity:ht.opacity/2,fill:x?void 0:ht.fillcolor,stroke:ht.line.color,\"stroke-dasharray\":a(ht.line.dash,ht.line.width),\"stroke-width\":ht.line.width+\"px\"}:{}).attr(\"fill-rule\",ht.fillrule).classed(\"cursor-move\",!!_).attr(\"transform\",G).attr(\"d\",ot+\"Z\");var pt,dt=D.append(\"path\").attr(\"class\",\"zoombox-corners\").style({fill:o.background,stroke:o.defaultLine,\"stroke-width\":1}).attr(\"transform\",G).attr(\"d\",\"M0,0Z\"),gt=O._uid+k.SELECTID,mt=[],vt=N(C,i.xaxes,i.yaxes,i.subplot);function yt(t,e){return t-e}pt=H.fillRangeItems?H.fillRangeItems:v?function(t,e){var r=t.range={};for($=0;$<ct.length;$++){var n=ct[$],i=n._id.charAt(0);r[n._id]=[L(n,e[i+\"min\"]),L(n,e[i+\"max\"])].sort(yt)}}:function(t,e,r){var n=t.lassoPoints={};for($=0;$<ct.length;$++){var i=ct[$];n[i._id]=r.filtered.map(I(i))}},i.moveFn=function(t,e){it=Math.max(0,Math.min(st,rt*t+Y)),at=Math.max(0,Math.min(lt,nt*e+W));var r=Math.abs(it-Y),a=Math.abs(at-W);if(v){var o,s,l;if(w){var u=O.selectdirection;switch(o=\"any\"===u?a<Math.min(.6*r,M)?\"h\":r<Math.min(.6*a,M)?\"v\":\"d\":u){case\"h\":s=T?lt/2:0,l=lt;break;case\"v\":s=T?st/2:0,l=st}}if(_)switch(O.newshape.drawdirection){case\"vertical\":o=\"h\",s=T?lt/2:0,l=lt;break;case\"horizontal\":o=\"v\",s=T?st/2:0,l=st;break;case\"ortho\":r<a?(o=\"h\",s=W,l=at):(o=\"v\",s=Y,l=it);break;default:o=\"d\"}\"h\"===o?((Q=E?m(T,[it,s],[it,l]):[[Y,s],[Y,l],[it,l],[it,s]]).xmin=E?it:Math.min(Y,it),Q.xmax=E?it:Math.max(Y,it),Q.ymin=Math.min(s,l),Q.ymax=Math.max(s,l),dt.attr(\"d\",\"M\"+Q.xmin+\",\"+(W-M)+\"h-4v\"+2*M+\"h4ZM\"+(Q.xmax-1)+\",\"+(W-M)+\"h4v\"+2*M+\"h-4Z\")):\"v\"===o?((Q=E?m(T,[s,at],[l,at]):[[s,W],[s,at],[l,at],[l,W]]).xmin=Math.min(s,l),Q.xmax=Math.max(s,l),Q.ymin=E?at:Math.min(W,at),Q.ymax=E?at:Math.max(W,at),dt.attr(\"d\",\"M\"+(Y-M)+\",\"+Q.ymin+\"v-4h\"+2*M+\"v4ZM\"+(Y-M)+\",\"+(Q.ymax-1)+\"v4h\"+2*M+\"v-4Z\")):\"d\"===o&&((Q=E?m(T,[Y,W],[it,at]):[[Y,W],[Y,at],[it,at],[it,W]]).xmin=Math.min(Y,it),Q.xmax=Math.max(Y,it),Q.ymin=Math.min(W,at),Q.ymax=Math.max(W,at),dt.attr(\"d\",\"M0,0Z\"))}else c&&(Z.addPt([it,at]),Q=Z.filtered);i.selectionDefs&&i.selectionDefs.length?(K=function(t,e,r){if(r)return n.difference({regions:t,inverted:!1},{regions:[e],inverted:!1}).regions;return n.union({regions:t,inverted:!1},{regions:[e],inverted:!1}).regions}(i.mergedPolygons,Q,ut),Q.subtract=ut,J=R(i.selectionDefs.concat([Q]))):(K=[Q],J=S(Q)),g(q(K,x),ft,i),w&&b.throttle(gt,k.SELECTDELAY,(function(){var t;mt=[];var e,r=[];for($=0;$<vt.length;$++)if(e=(tt=vt[$])._module.selectPoints(tt,J),r.push(e),t=V(e,tt),mt.length)for(var n=0;n<t.length;n++)mt.push(t[n]);else mt=t;U(C,vt,et={points:mt}),pt(et,Q,Z),i.gd.emit(\"plotly_selecting\",et)}))},i.clickFn=function(t,e){if(dt.remove(),C._fullLayout._activeShapeIndex>=0)C._fullLayout._deactivateShape(C);else if(!_){var r=O.clickmode;b.done(gt).then((function(){if(b.clear(gt),2===t){for(ft.remove(),$=0;$<vt.length;$++)(tt=vt[$])._module.selectPoints(tt,!1);U(C,vt),B(i),C.emit(\"plotly_deselect\",null)}else r.indexOf(\"select\")>-1&&z(e,C,i.xaxes,i.yaxes,i.subplot,i,ft),\"event\"===r&&C.emit(\"plotly_selected\",void 0);s.click(C,e)})).catch(y.error)}},i.doneFn=function(){dt.remove(),b.done(gt).then((function(){b.clear(gt),i.gd.emit(\"plotly_selected\",et),Q&&i.selectionDefs&&(Q.subtract=ut,i.selectionDefs.push(Q),i.mergedPolygons.length=0,[].push.apply(i.mergedPolygons,K)),i.doneFnCompleted&&i.doneFnCompleted(mt)})).catch(y.error),_&&B(i)}},clearSelect:E,clearSelectionsCache:B,selectOnClick:z}},{\"../../components/color\":643,\"../../components/dragelement/helpers\":661,\"../../components/drawing\":665,\"../../components/fx\":683,\"../../components/fx/helpers\":679,\"../../components/shapes/draw_newshape/display_outlines\":728,\"../../components/shapes/draw_newshape/helpers\":729,\"../../components/shapes/draw_newshape/newshapes\":730,\"../../lib\":778,\"../../lib/clear_gl_canvases\":762,\"../../lib/polygon\":790,\"../../lib/throttle\":804,\"../../plot_api/subroutines\":818,\"../../registry\":911,\"./axis_ids\":831,\"./constants\":834,\"./handle_outline\":838,\"./helpers\":839,polybooljs:517}],848:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"d3-time-format\").utcFormat,a=t(\"fast-isnumeric\"),o=t(\"../../lib\"),s=o.cleanNumber,l=o.ms2DateTime,c=o.dateTime2ms,u=o.ensureNumber,f=o.isArrayOrTypedArray,h=t(\"../../constants/numerical\"),p=h.FP_SAFE,d=h.BADNUM,g=h.LOG_CLIP,m=h.ONEWEEK,v=h.ONEDAY,y=h.ONEHOUR,x=h.ONEMIN,b=h.ONESEC,_=t(\"./axis_ids\"),w=t(\"./constants\"),T=w.HOUR_PATTERN,k=w.WEEKDAY_PATTERN;function M(t){return Math.pow(10,t)}function A(t){return null!=t}e.exports=function(t,e){e=e||{};var r=t._id||\"x\",h=r.charAt(0);function S(e,r){if(e>0)return Math.log(e)/Math.LN10;if(e<=0&&r&&t.range&&2===t.range.length){var n=t.range[0],i=t.range[1];return.5*(n+i-2*g*Math.abs(n-i))}return d}function E(e,r,n,i){if((i||{}).msUTC&&a(e))return+e;var s=c(e,n||t.calendar);if(s===d){if(!a(e))return d;e=+e;var l=Math.floor(10*o.mod(e+.05,1)),u=Math.round(e-l/10);s=c(new Date(u))+l/10}return s}function C(e,r,n){return l(e,r,n||t.calendar)}function L(e){return t._categories[Math.round(e)]}function I(e){if(A(e)){if(void 0===t._categoriesMap&&(t._categoriesMap={}),void 0!==t._categoriesMap[e])return t._categoriesMap[e];t._categories.push(\"number\"==typeof e?String(e):e);var r=t._categories.length-1;return t._categoriesMap[e]=r,r}return d}function P(e){if(t._categoriesMap)return t._categoriesMap[e]}function z(t){var e=P(t);return void 0!==e?e:a(t)?+t:void 0}function O(t){return a(t)?+t:P(t)}function D(t,e,r){return n.round(r+e*t,2)}function R(t,e,r){return(t-r)/e}var F=function(e){return a(e)?D(e,t._m,t._b):d},B=function(e){return R(e,t._m,t._b)};if(t.rangebreaks){var N=\"y\"===h;F=function(e){if(!a(e))return d;var r=t._rangebreaks.length;if(!r)return D(e,t._m,t._b);var n=N;t.range[0]>t.range[1]&&(n=!n);for(var i=n?-1:1,o=i*e,s=0,l=0;l<r;l++){var c=i*t._rangebreaks[l].min,u=i*t._rangebreaks[l].max;if(o<c)break;if(!(o>u)){s=o<(c+u)/2?l:l+1;break}s=l+1}var f=t._B[s]||0;return isFinite(f)?D(e,t._m2,f):0},B=function(e){var r=t._rangebreaks.length;if(!r)return R(e,t._m,t._b);for(var n=0,i=0;i<r&&!(e<t._rangebreaks[i].pmin);i++)e>t._rangebreaks[i].pmax&&(n=i+1);return R(e,t._m2,t._B[n])}}t.c2l=\"log\"===t.type?S:u,t.l2c=\"log\"===t.type?M:u,t.l2p=F,t.p2l=B,t.c2p=\"log\"===t.type?function(t,e){return F(S(t,e))}:F,t.p2c=\"log\"===t.type?function(t){return M(B(t))}:B,-1!==[\"linear\",\"-\"].indexOf(t.type)?(t.d2r=t.r2d=t.d2c=t.r2c=t.d2l=t.r2l=s,t.c2d=t.c2r=t.l2d=t.l2r=u,t.d2p=t.r2p=function(e){return t.l2p(s(e))},t.p2d=t.p2r=B,t.cleanPos=u):\"log\"===t.type?(t.d2r=t.d2l=function(t,e){return S(s(t),e)},t.r2d=t.r2c=function(t){return M(s(t))},t.d2c=t.r2l=s,t.c2d=t.l2r=u,t.c2r=S,t.l2d=M,t.d2p=function(e,r){return t.l2p(t.d2r(e,r))},t.p2d=function(t){return M(B(t))},t.r2p=function(e){return t.l2p(s(e))},t.p2r=B,t.cleanPos=u):\"date\"===t.type?(t.d2r=t.r2d=o.identity,t.d2c=t.r2c=t.d2l=t.r2l=E,t.c2d=t.c2r=t.l2d=t.l2r=C,t.d2p=t.r2p=function(e,r,n){return t.l2p(E(e,0,n))},t.p2d=t.p2r=function(t,e,r){return C(B(t),e,r)},t.cleanPos=function(e){return o.cleanDate(e,d,t.calendar)}):\"category\"===t.type?(t.d2c=t.d2l=I,t.r2d=t.c2d=t.l2d=L,t.d2r=t.d2l_noadd=z,t.r2c=function(e){var r=O(e);return void 0!==r?r:t.fraction2r(.5)},t.l2r=t.c2r=u,t.r2l=O,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return L(B(t))},t.r2p=t.d2p,t.p2r=B,t.cleanPos=function(t){return\"string\"==typeof t&&\"\"!==t?t:u(t)}):\"multicategory\"===t.type&&(t.r2d=t.c2d=t.l2d=L,t.d2r=t.d2l_noadd=z,t.r2c=function(e){var r=z(e);return void 0!==r?r:t.fraction2r(.5)},t.r2c_just_indices=P,t.l2r=t.c2r=u,t.r2l=z,t.d2p=function(e){return t.l2p(t.r2c(e))},t.p2d=function(t){return L(B(t))},t.r2p=t.d2p,t.p2r=B,t.cleanPos=function(t){return Array.isArray(t)||\"string\"==typeof t&&\"\"!==t?t:u(t)},t.setupMultiCategory=function(n){var i,a,s=t._traceIndices,l=t._matchGroup;if(l&&0===t._categories.length)for(var c in l)if(c!==r){var u=e[_.id2name(c)];s=s.concat(u._traceIndices)}var p=[[0,{}],[0,{}]],d=[];for(i=0;i<s.length;i++){var g=n[s[i]];if(h in g){var m=g[h],v=g._length||o.minRowLength(m);if(f(m[0])&&f(m[1]))for(a=0;a<v;a++){var y=m[0][a],x=m[1][a];A(y)&&A(x)&&(d.push([y,x]),y in p[0][1]||(p[0][1][y]=p[0][0]++),x in p[1][1]||(p[1][1][x]=p[1][0]++))}}}for(d.sort((function(t,e){var r=p[0][1],n=r[t[0]]-r[e[0]];if(n)return n;var i=p[1][1];return i[t[1]]-i[e[1]]})),i=0;i<d.length;i++)I(d[i])}),t.fraction2r=function(e){var r=t.r2l(t.range[0]),n=t.r2l(t.range[1]);return t.l2r(r+e*(n-r))},t.r2fraction=function(e){var r=t.r2l(t.range[0]),n=t.r2l(t.range[1]);return(t.r2l(e)-r)/(n-r)},t.cleanRange=function(e,r){r||(r={}),e||(e=\"range\");var n,i,s=o.nestedProperty(t,e).get();if(i=(i=\"date\"===t.type?o.dfltRange(t.calendar):\"y\"===h?w.DFLTRANGEY:r.dfltRange||w.DFLTRANGEX).slice(),\"tozero\"!==t.rangemode&&\"nonnegative\"!==t.rangemode||(i[0]=0),s&&2===s.length)for(\"date\"!==t.type||t.autorange||(s[0]=o.cleanDate(s[0],d,t.calendar),s[1]=o.cleanDate(s[1],d,t.calendar)),n=0;n<2;n++)if(\"date\"===t.type){if(!o.isDateTime(s[n],t.calendar)){t[e]=i;break}if(t.r2l(s[0])===t.r2l(s[1])){var l=o.constrain(t.r2l(s[0]),o.MIN_MS+1e3,o.MAX_MS-1e3);s[0]=t.l2r(l-1e3),s[1]=t.l2r(l+1e3);break}}else{if(!a(s[n])){if(!a(s[1-n])){t[e]=i;break}s[n]=s[1-n]*(n?10:.1)}if(s[n]<-p?s[n]=-p:s[n]>p&&(s[n]=p),s[0]===s[1]){var c=Math.max(1,Math.abs(1e-6*s[0]));s[0]-=c,s[1]+=c}}else o.nestedProperty(t,e).set(i)},t.setScale=function(r){var n=e._size;if(t.overlaying){var i=_.getFromId({_fullLayout:e},t.overlaying);t.domain=i.domain}var a=r&&t._r?\"_r\":\"range\",o=t.calendar;t.cleanRange(a);var s,l,c=t.r2l(t[a][0],o),u=t.r2l(t[a][1],o),f=\"y\"===h;if((f?(t._offset=n.t+(1-t.domain[1])*n.h,t._length=n.h*(t.domain[1]-t.domain[0]),t._m=t._length/(c-u),t._b=-t._m*u):(t._offset=n.l+t.domain[0]*n.w,t._length=n.w*(t.domain[1]-t.domain[0]),t._m=t._length/(u-c),t._b=-t._m*c),t._rangebreaks=[],t._lBreaks=0,t._m2=0,t._B=[],t.rangebreaks)&&(t._rangebreaks=t.locateBreaks(Math.min(c,u),Math.max(c,u)),t._rangebreaks.length)){for(s=0;s<t._rangebreaks.length;s++)l=t._rangebreaks[s],t._lBreaks+=Math.abs(l.max-l.min);var p=f;c>u&&(p=!p),p&&t._rangebreaks.reverse();var d=p?-1:1;for(t._m2=d*t._length/(Math.abs(u-c)-t._lBreaks),t._B.push(-t._m2*(f?u:c)),s=0;s<t._rangebreaks.length;s++)l=t._rangebreaks[s],t._B.push(t._B[t._B.length-1]-d*t._m2*(l.max-l.min));for(s=0;s<t._rangebreaks.length;s++)(l=t._rangebreaks[s]).pmin=F(l.min),l.pmax=F(l.max)}if(!isFinite(t._m)||!isFinite(t._b)||t._length<0)throw e._replotting=!1,new Error(\"Something went wrong with axis scaling\")},t.maskBreaks=function(e){for(var r,n,i,a,l,c=t.rangebreaks||[],u=0;u<c.length;u++){var f=c[u];if(f.enabled)if(f.bounds){var h=f.pattern;switch(n=(r=o.simpleMap(f.bounds,h?s:t.d2c))[0],i=r[1],h){case k:a=(l=new Date(e)).getUTCDay(),n>i&&(i+=7,a<n&&(a+=7));break;case T:a=(l=new Date(e)).getUTCHours()+(l.getUTCMinutes()/60+l.getUTCSeconds()/3600+l.getUTCMilliseconds()/36e5),n>i&&(i+=24,a<n&&(a+=24));break;case\"\":a=e}if(a>=n&&a<i)return d}else for(var p=o.simpleMap(f.values,t.d2c).sort(o.sorterAsc),g=0;g<p.length;g++)if(i=(n=p[g])+f.dvalue,e>=n&&e<i)return d}return e},t.locateBreaks=function(e,r){var n,i,a,l,c=[];if(!t.rangebreaks)return c;var u=t.rangebreaks.slice().sort((function(t,e){return t.pattern===k&&e.pattern===T?-1:e.pattern===k&&t.pattern===T?1:0})),f=function(t,n){if((t=o.constrain(t,e,r))!==(n=o.constrain(n,e,r))){for(var i=!0,a=0;a<c.length;a++){var s=c[a];t<s.max&&n>=s.min&&(t<s.min&&(s.min=t),n>s.max&&(s.max=n),i=!1)}i&&c.push({min:t,max:n})}};for(n=0;n<u.length;n++){var h=u[n];if(h.enabled)if(h.bounds){var p=e,d=r;h.pattern&&(p=Math.floor(p)),a=(i=o.simpleMap(h.bounds,h.pattern?s:t.r2l))[0],l=i[1];var g,_,w=new Date(p);switch(h.pattern){case k:_=m,g=(l-a+(l<a?7:0))*v,p+=a*v-(w.getUTCDay()*v+w.getUTCHours()*y+w.getUTCMinutes()*x+w.getUTCSeconds()*b+w.getUTCMilliseconds());break;case T:_=v,g=(l-a+(l<a?24:0))*y,p+=a*y-(w.getUTCHours()*y+w.getUTCMinutes()*x+w.getUTCSeconds()*b+w.getUTCMilliseconds());break;default:p=Math.min(i[0],i[1]),g=_=(d=Math.max(i[0],i[1]))-p}for(var M=p;M<d;M+=_)f(M,M+g)}else for(var A=o.simpleMap(h.values,t.d2c),S=0;S<A.length;S++)f(a=A[S],l=a+h.dvalue)}return c.sort((function(t,e){return t.min-e.min})),c},t.makeCalcdata=function(e,r,n){var i,a,s,l,c=t.type,u=\"date\"===c&&e[r+\"calendar\"];if(r in e){if(i=e[r],l=e._length||o.minRowLength(i),o.isTypedArray(i)&&(\"linear\"===c||\"log\"===c)){if(l===i.length)return i;if(i.subarray)return i.subarray(0,l)}if(\"multicategory\"===c)return function(t,e){for(var r=new Array(e),n=0;n<e;n++){var i=(t[0]||[])[n],a=(t[1]||[])[n];r[n]=P([i,a])}return r}(i,l);for(a=new Array(l),s=0;s<l;s++)a[s]=t.d2c(i[s],0,u,n)}else{var f=r+\"0\"in e?t.d2c(e[r+\"0\"],0,u):0,h=e[\"d\"+r]?Number(e[\"d\"+r]):1;for(i=e[{x:\"y\",y:\"x\"}[r]],l=e._length||i.length,a=new Array(l),s=0;s<l;s++)a[s]=f+s*h}if(t.rangebreaks)for(s=0;s<l;s++)a[s]=t.maskBreaks(a[s]);return a},t.isValidRange=function(e){return Array.isArray(e)&&2===e.length&&a(t.r2l(e[0]))&&a(t.r2l(e[1]))},t.isPtWithinRange=function(e,r){var n=t.c2l(e[h],null,r),i=t.r2l(t.range[0]),a=t.r2l(t.range[1]);return i<a?i<=n&&n<=a:a<=n&&n<=i},t._emptyCategories=function(){t._categories=[],t._categoriesMap={}},t.clearCalc=function(){var r=t._matchGroup;if(r){var n=null,i=null;for(var a in r){var o=e[_.id2name(a)];if(o._categories){n=o._categories,i=o._categoriesMap;break}}n&&i?(t._categories=n,t._categoriesMap=i):t._emptyCategories()}else t._emptyCategories();if(t._initialCategories)for(var s=0;s<t._initialCategories.length;s++)I(t._initialCategories[s])},t.sortByInitialCategories=function(){var n=[];if(t._emptyCategories(),t._initialCategories)for(var i=0;i<t._initialCategories.length;i++)I(t._initialCategories[i]);n=n.concat(t._traceIndices);var a=t._matchGroup;for(var o in a)if(r!==o){var s=e[_.id2name(o)];s._categories=t._categories,s._categoriesMap=t._categoriesMap,n=n.concat(s._traceIndices)}return n};var j=e._d3locale;\"date\"===t.type&&(t._dateFormat=j?j.timeFormat:i,t._extraFormat=e._extraFormat),t._separators=e.separators,t._numFormat=j?j.numberFormat:n.format,delete t._minDtick,delete t._forceTick0}},{\"../../constants/numerical\":753,\"../../lib\":778,\"./axis_ids\":831,\"./constants\":834,d3:169,\"d3-time-format\":166,\"fast-isnumeric\":241}],849:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/color\").contrast,a=t(\"./layout_attributes\"),o=t(\"../array_container_defaults\");function s(t){var e=[\"showexponent\",\"showtickprefix\",\"showticksuffix\"].filter((function(e){return void 0!==t[e]}));if(e.every((function(r){return t[r]===t[e[0]]}))||1===e.length)return t[e[0]]}function l(t,e){function r(r,i){return n.coerce(t,e,a.tickformatstops,r,i)}r(\"enabled\")&&(r(\"dtickrange\"),r(\"value\"))}e.exports=function(t,e,r,c,u,f){f&&1!==f.pass||function(t,e,r,n,i){var a=s(t);r(\"tickprefix\")&&r(\"showtickprefix\",a);r(\"ticksuffix\",i.tickSuffixDflt)&&r(\"showticksuffix\",a)}(t,0,r,0,u),f&&2!==f.pass||function(t,e,r,c,u){var f=s(t);r(\"tickprefix\")&&r(\"showtickprefix\",f);r(\"ticksuffix\",u.tickSuffixDflt)&&r(\"showticksuffix\",f);if(r(\"showticklabels\")){var h=u.font||{},p=e.color,d=-1!==(e.ticklabelposition||\"\").indexOf(\"inside\")?i(u.bgColor):p&&p!==a.color.dflt?p:h.color;if(n.coerceFont(r,\"tickfont\",{family:h.family,size:h.size,color:d}),r(\"tickangle\"),\"category\"!==c){var g=r(\"tickformat\");o(t,e,{name:\"tickformatstops\",inclusionAttr:\"enabled\",handleItemDefaults:l}),e.tickformatstops.length||delete e.tickformatstops,g||\"date\"===c||(r(\"showexponent\",f),r(\"exponentformat\"),r(\"minexponent\"),r(\"separatethousands\"))}}}(t,e,r,c,u)}},{\"../../components/color\":643,\"../../lib\":778,\"../array_container_defaults\":823,\"./layout_attributes\":842}],850:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e,r,a){var o=n.coerce2(t,e,i,\"ticklen\"),s=n.coerce2(t,e,i,\"tickwidth\"),l=n.coerce2(t,e,i,\"tickcolor\",e.color);r(\"ticks\",a.outerTicks||o||s||l?\"outside\":\"\")||(delete e.ticklen,delete e.tickwidth,delete e.tickcolor)}},{\"../../lib\":778,\"./layout_attributes\":842}],851:[function(t,e,r){\"use strict\";var n=t(\"./clean_ticks\"),i=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r,a){function o(r){var n=t[r];return void 0!==n?n:(e._template||{})[r]}var s=o(\"tick0\"),l=o(\"dtick\"),c=o(\"tickvals\"),u=r(\"tickmode\",i(c)?\"array\":l?\"linear\":\"auto\");if(\"auto\"===u)r(\"nticks\");else if(\"linear\"===u){var f=e.dtick=n.dtick(l,a);e.tick0=n.tick0(s,a,e.calendar,f)}else if(\"multicategory\"!==a){void 0===r(\"tickvals\")?e.tickmode=\"auto\":r(\"ticktext\")}}},{\"../../lib\":778,\"./clean_ticks\":833}],852:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../registry\"),a=t(\"../../lib\"),o=t(\"../../components/drawing\"),s=t(\"./axes\");e.exports=function(t,e,r,l){var c=t._fullLayout;if(0!==e.length){var u,f,h,p;l&&(u=l());var d=n.ease(r.easing);return t._transitionData._interruptCallbacks.push((function(){return window.cancelAnimationFrame(p),p=null,function(){for(var r={},n=0;n<e.length;n++){var a=e[n],o=a.plotinfo.xaxis,s=a.plotinfo.yaxis;a.xr0&&(r[o._name+\".range\"]=a.xr0.slice()),a.yr0&&(r[s._name+\".range\"]=a.yr0.slice())}return i.call(\"relayout\",t,r).then((function(){for(var t=0;t<e.length;t++)g(e[t].plotinfo)}))}()})),f=Date.now(),p=window.requestAnimationFrame((function n(){h=Date.now();for(var a=Math.min(1,(h-f)/r.duration),o=d(a),s=0;s<e.length;s++)m(e[s],o);h-f>r.duration?(!function(){for(var r={},n=0;n<e.length;n++){var a=e[n],o=a.plotinfo.xaxis,s=a.plotinfo.yaxis;a.xr1&&(r[o._name+\".range\"]=a.xr1.slice()),a.yr1&&(r[s._name+\".range\"]=a.yr1.slice())}u&&u(),i.call(\"relayout\",t,r).then((function(){for(var t=0;t<e.length;t++)g(e[t].plotinfo)}))}(),p=window.cancelAnimationFrame(n)):p=window.requestAnimationFrame(n)})),Promise.resolve()}function g(t){var e=t.xaxis,r=t.yaxis;c._defs.select(\"#\"+t.clipId+\"> rect\").call(o.setTranslate,0,0).call(o.setScale,1,1),t.plot.call(o.setTranslate,e._offset,r._offset).call(o.setScale,1,1);var n=t.plot.selectAll(\".scatterlayer .trace\");n.selectAll(\".point\").call(o.setPointGroupScale,1,1),n.selectAll(\".textpoint\").call(o.setTextPointsScale,1,1),n.call(o.hideOutsideRangePoints,t)}function m(e,r){var n=e.plotinfo,i=n.xaxis,l=n.yaxis,c=i._length,u=l._length,f=!!e.xr1,h=!!e.yr1,p=[];if(f){var d=a.simpleMap(e.xr0,i.r2l),g=a.simpleMap(e.xr1,i.r2l),m=d[1]-d[0],v=g[1]-g[0];p[0]=(d[0]*(1-r)+r*g[0]-d[0])/(d[1]-d[0])*c,p[2]=c*(1-r+r*v/m),i.range[0]=i.l2r(d[0]*(1-r)+r*g[0]),i.range[1]=i.l2r(d[1]*(1-r)+r*g[1])}else p[0]=0,p[2]=c;if(h){var y=a.simpleMap(e.yr0,l.r2l),x=a.simpleMap(e.yr1,l.r2l),b=y[1]-y[0],_=x[1]-x[0];p[1]=(y[1]*(1-r)+r*x[1]-y[1])/(y[0]-y[1])*u,p[3]=u*(1-r+r*_/b),l.range[0]=i.l2r(y[0]*(1-r)+r*x[0]),l.range[1]=l.l2r(y[1]*(1-r)+r*x[1])}else p[1]=0,p[3]=u;s.drawOne(t,i,{skipTitle:!0}),s.drawOne(t,l,{skipTitle:!0}),s.redrawComponents(t,[i._id,l._id]);var w=f?c/p[2]:1,T=h?u/p[3]:1,k=f?p[0]:0,M=h?p[1]:0,A=f?p[0]/p[2]*c:0,S=h?p[1]/p[3]*u:0,E=i._offset-A,C=l._offset-S;n.clipRect.call(o.setTranslate,k,M).call(o.setScale,1/w,1/T),n.plot.call(o.setTranslate,E,C).call(o.setScale,w,T),o.setPointGroupScale(n.zoomScalePts,1/w,1/T),o.setTextPointsScale(n.zoomScaleTxt,1/w,1/T)}s.redrawComponents(t)}},{\"../../components/drawing\":665,\"../../lib\":778,\"../../registry\":911,\"./axes\":828,d3:169}],853:[function(t,e,r){\"use strict\";var n=t(\"../../registry\").traceIs,i=t(\"./axis_autotype\");function a(t){return{v:\"x\",h:\"y\"}[t.orientation||\"v\"]}function o(t,e){var r=a(t),i=n(t,\"box-violin\"),o=n(t._fullInput||{},\"candlestick\");return i&&!o&&e===r&&void 0===t[r]&&void 0===t[r+\"0\"]}e.exports=function(t,e,r,s){r(\"autotypenumbers\",s.autotypenumbersDflt),\"-\"===r(\"type\",(s.splomStash||{}).type)&&(!function(t,e){if(\"-\"!==t.type)return;var r,s=t._id,l=s.charAt(0);-1!==s.indexOf(\"scene\")&&(s=l);var c=function(t,e,r){for(var n=0;n<t.length;n++){var i=t[n];if(\"splom\"===i.type&&i._length>0&&(i[\"_\"+r+\"axes\"]||{})[e])return i;if((i[r+\"axis\"]||r)===e){if(o(i,r))return i;if((i[r]||[]).length||i[r+\"0\"])return i}}}(e,s,l);if(!c)return;if(\"histogram\"===c.type&&l==={v:\"y\",h:\"x\"}[c.orientation||\"v\"])return void(t.type=\"linear\");var u=l+\"calendar\",f=c[u],h={noMultiCategory:!n(c,\"cartesian\")||n(c,\"noMultiCategory\")};\"box\"===c.type&&c._hasPreCompStats&&l==={h:\"x\",v:\"y\"}[c.orientation||\"v\"]&&(h.noMultiCategory=!0);if(h.autotypenumbers=t.autotypenumbers,o(c,l)){var p=a(c),d=[];for(r=0;r<e.length;r++){var g=e[r];n(g,\"box-violin\")&&(g[l+\"axis\"]||l)===s&&(void 0!==g[p]?d.push(g[p][0]):void 0!==g.name?d.push(g.name):d.push(\"text\"),g[u]!==f&&(f=void 0))}t.type=i(d,f,h)}else if(\"splom\"===c.type){var m=c.dimensions[c._axesDim[s]];m.visible&&(t.type=i(m.values,f,h))}else t.type=i(c[l]||[c[l+\"0\"]],f,h)}(e,s.data),\"-\"===e.type?e.type=\"linear\":t.type=e.type)}},{\"../../registry\":911,\"./axis_autotype\":829}],854:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),i=t(\"../lib\");function a(t,e,r){var n,a,o,s=!1;if(\"data\"===e.type)n=t._fullData[null!==e.traces?e.traces[0]:0];else{if(\"layout\"!==e.type)return!1;n=t._fullLayout}return a=i.nestedProperty(n,e.prop).get(),(o=r[e.type]=r[e.type]||{}).hasOwnProperty(e.prop)&&o[e.prop]!==a&&(s=!0),o[e.prop]=a,{changed:s,value:a}}function o(t,e){var r=[],n=e[0],a={};if(\"string\"==typeof n)a[n]=e[1];else{if(!i.isPlainObject(n))return r;a=n}return l(a,(function(t,e,n){r.push({type:\"layout\",prop:t,value:n})}),\"\",0),r}function s(t,e){var r,n,a,o,s=[];if(n=e[0],a=e[1],r=e[2],o={},\"string\"==typeof n)o[n]=a;else{if(!i.isPlainObject(n))return s;o=n,void 0===r&&(r=a)}return void 0===r&&(r=null),l(o,(function(e,n,i){var a,o;if(Array.isArray(i)){o=i.slice();var l=Math.min(o.length,t.data.length);r&&(l=Math.min(l,r.length)),a=[];for(var c=0;c<l;c++)a[c]=r?r[c]:c}else o=i,a=r?r.slice():null;if(null===a)Array.isArray(o)&&(o=o[0]);else if(Array.isArray(a)){if(!Array.isArray(o)){var u=o;o=[];for(var f=0;f<a.length;f++)o[f]=u}o.length=Math.min(a.length,o.length)}s.push({type:\"data\",prop:e,traces:a,value:o})}),\"\",0),s}function l(t,e,r,n){Object.keys(t).forEach((function(a){var o=t[a];if(\"_\"!==a[0]){var s=r+(n>0?\".\":\"\")+a;i.isPlainObject(o)?l(o,e,s,n+1):e(s,a,o)}}))}r.manageCommandObserver=function(t,e,n,o){var s={},l=!0;e&&e._commandObserver&&(s=e._commandObserver),s.cache||(s.cache={}),s.lookupTable={};var c=r.hasSimpleAPICommandBindings(t,n,s.lookupTable);if(e&&e._commandObserver){if(c)return s;if(e._commandObserver.remove)return e._commandObserver.remove(),e._commandObserver=null,s}if(c){a(t,c,s.cache),s.check=function(){if(l){var e=a(t,c,s.cache);return e.changed&&o&&void 0!==s.lookupTable[e.value]&&(s.disable(),Promise.resolve(o({value:e.value,type:c.type,prop:c.prop,traces:c.traces,index:s.lookupTable[e.value]})).then(s.enable,s.enable)),e.changed}};for(var u=[\"plotly_relayout\",\"plotly_redraw\",\"plotly_restyle\",\"plotly_update\",\"plotly_animatingframe\",\"plotly_afterplot\"],f=0;f<u.length;f++)t._internalOn(u[f],s.check);s.remove=function(){for(var e=0;e<u.length;e++)t._removeInternalListener(u[e],s.check)}}else i.log(\"Unable to automatically bind plot updates to API command\"),s.lookupTable={},s.remove=function(){};return s.disable=function(){l=!1},s.enable=function(){l=!0},e&&(e._commandObserver=s),s},r.hasSimpleAPICommandBindings=function(t,e,n){var i,a,o=e.length;for(i=0;i<o;i++){var s,l=e[i],c=l.method,u=l.args;if(Array.isArray(u)||(u=[]),!c)return!1;var f=r.computeAPICommandBindings(t,c,u);if(1!==f.length)return!1;if(a){if((s=f[0]).type!==a.type)return!1;if(s.prop!==a.prop)return!1;if(Array.isArray(a.traces)){if(!Array.isArray(s.traces))return!1;s.traces.sort();for(var h=0;h<a.traces.length;h++)if(a.traces[h]!==s.traces[h])return!1}else if(s.prop!==a.prop)return!1}else a=f[0],Array.isArray(a.traces)&&a.traces.sort();var p=(s=f[0]).value;if(Array.isArray(p)){if(1!==p.length)return!1;p=p[0]}n&&(n[p]=i)}return a},r.executeAPICommand=function(t,e,r){if(\"skip\"===e)return Promise.resolve();var a=n.apiMethodRegistry[e],o=[t];Array.isArray(r)||(r=[]);for(var s=0;s<r.length;s++)o.push(r[s]);return a.apply(null,o).catch((function(t){return i.warn(\"API call to Plotly.\"+e+\" rejected.\",t),Promise.reject(t)}))},r.computeAPICommandBindings=function(t,e,r){var n;switch(Array.isArray(r)||(r=[]),e){case\"restyle\":n=s(t,r);break;case\"relayout\":n=o(t,r);break;case\"update\":n=s(t,[r[0],r[2]]).concat(o(t,[r[1]]));break;case\"animate\":n=function(t,e){return Array.isArray(e[0])&&1===e[0].length&&-1!==[\"string\",\"number\"].indexOf(typeof e[0][0])?[{type:\"layout\",prop:\"_currentFrame\",value:e[0][0].toString()}]:[]}(0,r);break;default:n=[]}return n}},{\"../lib\":778,\"../registry\":911}],855:[function(t,e,r){\"use strict\";var n=t(\"../lib/extend\").extendFlat;r.attributes=function(t,e){e=e||{};var r={valType:\"info_array\",editType:(t=t||{}).editType,items:[{valType:\"number\",min:0,max:1,editType:t.editType},{valType:\"number\",min:0,max:1,editType:t.editType}],dflt:[0,1]},i=(t.name&&t.name,t.trace,e.description&&e.description,{x:n({},r,{}),y:n({},r,{}),editType:t.editType});return t.noGridCell||(i.row={valType:\"integer\",min:0,dflt:0,editType:t.editType},i.column={valType:\"integer\",min:0,dflt:0,editType:t.editType}),i},r.defaults=function(t,e,r,n){var i=n&&n.x||[0,1],a=n&&n.y||[0,1],o=e.grid;if(o){var s=r(\"domain.column\");void 0!==s&&(s<o.columns?i=o._domains.x[s]:delete t.domain.column);var l=r(\"domain.row\");void 0!==l&&(l<o.rows?a=o._domains.y[l]:delete t.domain.row)}var c=r(\"domain.x\",i),u=r(\"domain.y\",a);c[0]<c[1]||(t.domain.x=i.slice()),u[0]<u[1]||(t.domain.y=a.slice())}},{\"../lib/extend\":768}],856:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.editType,r=t.colorEditType;void 0===r&&(r=e);var n={family:{valType:\"string\",noBlank:!0,strict:!0,editType:e},size:{valType:\"number\",min:1,editType:e},color:{valType:\"color\",editType:r},editType:e};return t.arrayOk&&(n.family.arrayOk=!0,n.size.arrayOk=!0,n.color.arrayOk=!0),n}},{}],857:[function(t,e,r){\"use strict\";e.exports={_isLinkedToArray:\"frames_entry\",group:{valType:\"string\"},name:{valType:\"string\"},traces:{valType:\"any\"},baseframe:{valType:\"string\"},data:{valType:\"any\"},layout:{valType:\"any\"}}},{}],858:[function(t,e,r){\"use strict\";r.projNames={equirectangular:\"equirectangular\",mercator:\"mercator\",orthographic:\"orthographic\",\"natural earth\":\"naturalEarth\",kavrayskiy7:\"kavrayskiy7\",miller:\"miller\",robinson:\"robinson\",eckert4:\"eckert4\",\"azimuthal equal area\":\"azimuthalEqualArea\",\"azimuthal equidistant\":\"azimuthalEquidistant\",\"conic equal area\":\"conicEqualArea\",\"conic conformal\":\"conicConformal\",\"conic equidistant\":\"conicEquidistant\",gnomonic:\"gnomonic\",stereographic:\"stereographic\",mollweide:\"mollweide\",hammer:\"hammer\",\"transverse mercator\":\"transverseMercator\",\"albers usa\":\"albersUsa\",\"winkel tripel\":\"winkel3\",aitoff:\"aitoff\",sinusoidal:\"sinusoidal\"},r.axesNames=[\"lonaxis\",\"lataxis\"],r.lonaxisSpan={orthographic:180,\"azimuthal equal area\":360,\"azimuthal equidistant\":360,\"conic conformal\":180,gnomonic:160,stereographic:180,\"transverse mercator\":180,\"*\":360},r.lataxisSpan={\"conic conformal\":150,stereographic:179.5,\"*\":180},r.scopeDefaults={world:{lonaxisRange:[-180,180],lataxisRange:[-90,90],projType:\"equirectangular\",projRotate:[0,0,0]},usa:{lonaxisRange:[-180,-50],lataxisRange:[15,80],projType:\"albers usa\"},europe:{lonaxisRange:[-30,60],lataxisRange:[30,85],projType:\"conic conformal\",projRotate:[15,0,0],projParallels:[0,60]},asia:{lonaxisRange:[22,160],lataxisRange:[-15,55],projType:\"mercator\",projRotate:[0,0,0]},africa:{lonaxisRange:[-30,60],lataxisRange:[-40,40],projType:\"mercator\",projRotate:[0,0,0]},\"north america\":{lonaxisRange:[-180,-45],lataxisRange:[5,85],projType:\"conic conformal\",projRotate:[-100,0,0],projParallels:[29.5,45.5]},\"south america\":{lonaxisRange:[-100,-30],lataxisRange:[-60,15],projType:\"mercator\",projRotate:[0,0,0]}},r.clipPad=.001,r.precision=.1,r.landColor=\"#F0DC82\",r.waterColor=\"#3399FF\",r.locationmodeToLayer={\"ISO-3\":\"countries\",\"USA-states\":\"subunits\",\"country names\":\"countries\"},r.sphereSVG={type:\"Sphere\"},r.fillLayers={ocean:1,land:1,lakes:1},r.lineLayers={subunits:1,countries:1,coastlines:1,rivers:1,frame:1},r.layers=[\"bg\",\"ocean\",\"land\",\"lakes\",\"subunits\",\"countries\",\"coastlines\",\"rivers\",\"lataxis\",\"lonaxis\",\"frame\",\"backplot\",\"frontplot\"],r.layersForChoropleth=[\"bg\",\"ocean\",\"land\",\"subunits\",\"countries\",\"coastlines\",\"lataxis\",\"lonaxis\",\"frame\",\"backplot\",\"rivers\",\"lakes\",\"frontplot\"],r.layerNameToAdjective={ocean:\"ocean\",land:\"land\",lakes:\"lake\",subunits:\"subunit\",countries:\"country\",coastlines:\"coastline\",rivers:\"river\",frame:\"frame\"}},{}],859:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../registry\"),a=t(\"../../lib\"),o=a.strTranslate,s=t(\"../../components/color\"),l=t(\"../../components/drawing\"),c=t(\"../../components/fx\"),u=t(\"../plots\"),f=t(\"../cartesian/axes\"),h=t(\"../cartesian/autorange\").getAutoRange,p=t(\"../../components/dragelement\"),d=t(\"../cartesian/select\").prepSelect,g=t(\"../cartesian/select\").clearSelect,m=t(\"../cartesian/select\").selectOnClick,v=t(\"./zoom\"),y=t(\"./constants\"),x=t(\"../../lib/geo_location_utils\"),b=t(\"../../lib/topojson_utils\"),_=t(\"topojson-client\").feature;function w(t){this.id=t.id,this.graphDiv=t.graphDiv,this.container=t.container,this.topojsonURL=t.topojsonURL,this.isStatic=t.staticPlot,this.topojsonName=null,this.topojson=null,this.projection=null,this.scope=null,this.viewInitial=null,this.fitScale=null,this.bounds=null,this.midPt=null,this.hasChoropleth=!1,this.traceHash={},this.layers={},this.basePaths={},this.dataPaths={},this.dataPoints={},this.clipDef=null,this.clipRect=null,this.bgRect=null,this.makeFramework()}t(\"./projections\")(n);var T=w.prototype;function k(t,e){var r=y.clipPad,n=t[0]+r,i=t[1]-r,a=e[0]+r,o=e[1]-r;n>0&&i<0&&(i+=360);var s=(i-n)/4;return{type:\"Polygon\",coordinates:[[[n,a],[n,o],[n+s,o],[n+2*s,o],[n+3*s,o],[i,o],[i,a],[i-s,a],[i-2*s,a],[i-3*s,a],[n,a]]]}}e.exports=function(t){return new w(t)},T.plot=function(t,e,r){var n=this,i=e[this.id],a=[],o=!1;for(var s in y.layerNameToAdjective)if(\"frame\"!==s&&i[\"show\"+s]){o=!0;break}for(var l=0;l<t.length;l++)if(t[0][0].trace.locationmode){o=!0;break}if(o){var c=b.getTopojsonName(i);null!==n.topojson&&c===n.topojsonName||(n.topojsonName=c,void 0===PlotlyGeoAssets.topojson[n.topojsonName]&&a.push(n.fetchTopojson()))}a=a.concat(x.fetchTraceGeoData(t)),r.push(new Promise((function(r,i){Promise.all(a).then((function(){n.topojson=PlotlyGeoAssets.topojson[n.topojsonName],n.update(t,e),r()})).catch(i)})))},T.fetchTopojson=function(){var t=this,e=b.getTopojsonPath(t.topojsonURL,t.topojsonName);return new Promise((function(r,i){n.json(e,(function(n,a){if(n)return 404===n.status?i(new Error([\"plotly.js could not find topojson file at\",e,\".\",\"Make sure the *topojsonURL* plot config option\",\"is set properly.\"].join(\" \"))):i(new Error([\"unexpected error while fetching topojson file at\",e].join(\" \")));PlotlyGeoAssets.topojson[t.topojsonName]=a,r()}))}))},T.update=function(t,e){var r=e[this.id];this.hasChoropleth=!1;for(var n=0;n<t.length;n++){var i=t[n],a=i[0].trace;\"choropleth\"===a.type&&(this.hasChoropleth=!0),!0===a.visible&&a._length>0&&a._module.calcGeoJSON(i,e)}if(!this.updateProjection(t,e)){this.viewInitial&&this.scope===r.scope||this.saveViewInitial(r),this.scope=r.scope,this.updateBaseLayers(e,r),this.updateDims(e,r),this.updateFx(e,r),u.generalUpdatePerTraceModule(this.graphDiv,this,t,r);var o=this.layers.frontplot.select(\".scatterlayer\");this.dataPoints.point=o.selectAll(\".point\"),this.dataPoints.text=o.selectAll(\"text\"),this.dataPaths.line=o.selectAll(\".js-line\");var s=this.layers.backplot.select(\".choroplethlayer\");this.dataPaths.choropleth=s.selectAll(\"path\"),this.render()}},T.updateProjection=function(t,e){var r=this.graphDiv,o=e[this.id],s=e._size,l=o.domain,c=o.projection,u=o.lonaxis,f=o.lataxis,p=u._ax,d=f._ax,g=this.projection=function(t){for(var e=t.projection.type,r=n.geo[y.projNames[e]](),i=t._isClipped?y.lonaxisSpan[e]/2:null,a=[\"center\",\"rotate\",\"parallels\",\"clipExtent\"],o=function(t){return t?r:[]},s=0;s<a.length;s++){var l=a[s];\"function\"!=typeof r[l]&&(r[l]=o)}r.isLonLatOverEdges=function(t){if(null===r(t))return!0;if(i){var e=r.rotate();return n.geo.distance(t,[-e[0],-e[1]])>i*Math.PI/180}return!1},r.getPath=function(){return n.geo.path().projection(r)},r.getBounds=function(t){return r.getPath().bounds(t)},r.fitExtent=function(t,e){var n=t[1][0]-t[0][0],i=t[1][1]-t[0][1],a=r.clipExtent&&r.clipExtent();r.scale(150).translate([0,0]),a&&r.clipExtent(null);var o=r.getBounds(e),s=Math.min(n/(o[1][0]-o[0][0]),i/(o[1][1]-o[0][1])),l=+t[0][0]+(n-s*(o[1][0]+o[0][0]))/2,c=+t[0][1]+(i-s*(o[1][1]+o[0][1]))/2;return a&&r.clipExtent(a),r.scale(150*s).translate([l,c])},r.precision(y.precision),i&&r.clipAngle(i-y.clipPad);return r}(o),m=[[s.l+s.w*l.x[0],s.t+s.h*(1-l.y[1])],[s.l+s.w*l.x[1],s.t+s.h*(1-l.y[0])]],v=o.center||{},x=c.rotation||{},b=u.range||[],_=f.range||[];if(o.fitbounds){p._length=m[1][0]-m[0][0],d._length=m[1][1]-m[0][1],p.range=h(r,p),d.range=h(r,d);var w=(p.range[0]+p.range[1])/2,T=(d.range[0]+d.range[1])/2;if(o._isScoped)v={lon:w,lat:T};else if(o._isClipped){v={lon:w,lat:T},x={lon:w,lat:T,roll:x.roll};var M=c.type,A=y.lonaxisSpan[M]/2||180,S=y.lataxisSpan[M]/2||90;b=[w-A,w+A],_=[T-S,T+S]}else v={lon:w,lat:T},x={lon:w,lat:x.lat,roll:x.roll}}g.center([v.lon-x.lon,v.lat-x.lat]).rotate([-x.lon,-x.lat,x.roll]).parallels(c.parallels);var E=k(b,_);g.fitExtent(m,E);var C=this.bounds=g.getBounds(E),L=this.fitScale=g.scale(),I=g.translate();if(!isFinite(C[0][0])||!isFinite(C[0][1])||!isFinite(C[1][0])||!isFinite(C[1][1])||isNaN(I[0])||isNaN(I[0])){for(var P=[\"fitbounds\",\"projection.rotation\",\"center\",\"lonaxis.range\",\"lataxis.range\"],z=\"Invalid geo settings, relayout'ing to default view.\",O={},D=0;D<P.length;D++)O[this.id+\".\"+P[D]]=null;return this.viewInitial=null,a.warn(z),r._promises.push(i.call(\"relayout\",r,O)),z}if(o.fitbounds){var R=g.getBounds(k(p.range,d.range)),F=Math.min((C[1][0]-C[0][0])/(R[1][0]-R[0][0]),(C[1][1]-C[0][1])/(R[1][1]-R[0][1]));isFinite(F)?g.scale(F*L):a.warn(\"Something went wrong during\"+this.id+\"fitbounds computations.\")}else g.scale(c.scale*L);var B=this.midPt=[(C[0][0]+C[1][0])/2,(C[0][1]+C[1][1])/2];if(g.translate([I[0]+(B[0]-I[0]),I[1]+(B[1]-I[1])]).clipExtent(C),o._isAlbersUsa){var N=g([v.lon,v.lat]),j=g.translate();g.translate([j[0]-(N[0]-j[0]),j[1]-(N[1]-j[1])])}},T.updateBaseLayers=function(t,e){var r=this,i=r.topojson,a=r.layers,o=r.basePaths;function c(t){return\"lonaxis\"===t||\"lataxis\"===t}function u(t){return Boolean(y.lineLayers[t])}function h(t){return Boolean(y.fillLayers[t])}var p=(this.hasChoropleth?y.layersForChoropleth:y.layers).filter((function(t){return u(t)||h(t)?e[\"show\"+t]:!c(t)||e[t].showgrid})),d=r.framework.selectAll(\".layer\").data(p,String);d.exit().each((function(t){delete a[t],delete o[t],n.select(this).remove()})),d.enter().append(\"g\").attr(\"class\",(function(t){return\"layer \"+t})).each((function(t){var e=a[t]=n.select(this);\"bg\"===t?r.bgRect=e.append(\"rect\").style(\"pointer-events\",\"all\"):c(t)?o[t]=e.append(\"path\").style(\"fill\",\"none\"):\"backplot\"===t?e.append(\"g\").classed(\"choroplethlayer\",!0):\"frontplot\"===t?e.append(\"g\").classed(\"scatterlayer\",!0):u(t)?o[t]=e.append(\"path\").style(\"fill\",\"none\").style(\"stroke-miterlimit\",2):h(t)&&(o[t]=e.append(\"path\").style(\"stroke\",\"none\"))})),d.order(),d.each((function(r){var n=o[r],a=y.layerNameToAdjective[r];\"frame\"===r?n.datum(y.sphereSVG):u(r)||h(r)?n.datum(_(i,i.objects[r])):c(r)&&n.datum(function(t,e,r){var n,i,a,o=e[t],s=y.scopeDefaults[e.scope];\"lonaxis\"===t?(n=s.lonaxisRange,i=s.lataxisRange,a=function(t,e){return[t,e]}):\"lataxis\"===t&&(n=s.lataxisRange,i=s.lonaxisRange,a=function(t,e){return[e,t]});var l={type:\"linear\",range:[n[0],n[1]-1e-6],tick0:o.tick0,dtick:o.dtick};f.setConvert(l,r);var c=f.calcTicks(l);e.isScoped||\"lonaxis\"!==t||c.pop();for(var u=c.length,h=new Array(u),p=0;p<u;p++)for(var d=c[p].x,g=h[p]=[],m=i[0];m<i[1]+2.5;m+=2.5)g.push(a(d,m));return{type:\"MultiLineString\",coordinates:h}}(r,e,t)).call(s.stroke,e[r].gridcolor).call(l.dashLine,\"\",e[r].gridwidth),u(r)?n.call(s.stroke,e[a+\"color\"]).call(l.dashLine,\"\",e[a+\"width\"]):h(r)&&n.call(s.fill,e[a+\"color\"])}))},T.updateDims=function(t,e){var r=this.bounds,n=(e.framewidth||0)/2,i=r[0][0]-n,a=r[0][1]-n,o=r[1][0]-i+n,c=r[1][1]-a+n;l.setRect(this.clipRect,i,a,o,c),this.bgRect.call(l.setRect,i,a,o,c).call(s.fill,e.bgcolor),this.xaxis._offset=i,this.xaxis._length=o,this.yaxis._offset=a,this.yaxis._length=c},T.updateFx=function(t,e){var r=this,a=r.graphDiv,o=r.bgRect,s=t.dragmode,l=t.clickmode;if(!r.isStatic){var u;\"select\"===s?u=function(t,e){(t.range={})[r.id]=[h([e.xmin,e.ymin]),h([e.xmax,e.ymax])]}:\"lasso\"===s&&(u=function(t,e,n){(t.lassoPoints={})[r.id]=n.filtered.map(h)});var f={element:r.bgRect.node(),gd:a,plotinfo:{id:r.id,xaxis:r.xaxis,yaxis:r.yaxis,fillRangeItems:u},xaxes:[r.xaxis],yaxes:[r.yaxis],subplot:r.id,clickFn:function(t){2===t&&g(a)}};\"pan\"===s?(o.node().onmousedown=null,o.call(v(r,e)),o.on(\"dblclick.zoom\",(function(){var t=r.viewInitial,e={};for(var n in t)e[r.id+\".\"+n]=t[n];i.call(\"_guiRelayout\",a,e),a.emit(\"plotly_doubleclick\",null)})),a._context._scrollZoom.geo||o.on(\"wheel.zoom\",null)):\"select\"!==s&&\"lasso\"!==s||(o.on(\".zoom\",null),f.prepFn=function(t,e,r){d(t,e,r,f,s)},p.init(f)),o.on(\"mousemove\",(function(){var t=r.projection.invert(n.mouse(this));if(!t||isNaN(t[0])||isNaN(t[1]))return p.unhover(a,n.event);r.xaxis.p2c=function(){return t[0]},r.yaxis.p2c=function(){return t[1]},c.hover(a,n.event,r.id)})),o.on(\"mouseout\",(function(){a._dragging||p.unhover(a,n.event)})),o.on(\"click\",(function(){\"select\"!==s&&\"lasso\"!==s&&(l.indexOf(\"select\")>-1&&m(n.event,a,[r.xaxis],[r.yaxis],r.id,f),l.indexOf(\"event\")>-1&&c.click(a,n.event))}))}function h(t){return r.projection.invert([t[0]+r.xaxis._offset,t[1]+r.yaxis._offset])}},T.makeFramework=function(){var t=this,e=t.graphDiv,r=e._fullLayout,i=\"clip\"+r._uid+t.id;t.clipDef=r._clips.append(\"clipPath\").attr(\"id\",i),t.clipRect=t.clipDef.append(\"rect\"),t.framework=n.select(t.container).append(\"g\").attr(\"class\",\"geo \"+t.id).call(l.setClipUrl,i,e),t.project=function(e){var r=t.projection(e);return r?[r[0]-t.xaxis._offset,r[1]-t.yaxis._offset]:[null,null]},t.xaxis={_id:\"x\",c2p:function(e){return t.project(e)[0]}},t.yaxis={_id:\"y\",c2p:function(e){return t.project(e)[1]}},t.mockAxis={type:\"linear\",showexponent:\"all\",exponentformat:\"B\"},f.setConvert(t.mockAxis,r)},T.saveViewInitial=function(t){var e,r=t.center||{},n=t.projection,i=n.rotation||{};this.viewInitial={fitbounds:t.fitbounds,\"projection.scale\":n.scale},e=t._isScoped?{\"center.lon\":r.lon,\"center.lat\":r.lat}:t._isClipped?{\"projection.rotation.lon\":i.lon,\"projection.rotation.lat\":i.lat}:{\"center.lon\":r.lon,\"center.lat\":r.lat,\"projection.rotation.lon\":i.lon},a.extendFlat(this.viewInitial,e)},T.render=function(){var t,e=this.projection,r=e.getPath();function n(t){var r=e(t.lonlat);return r?o(r[0],r[1]):null}function i(t){return e.isLonLatOverEdges(t.lonlat)?\"none\":null}for(t in this.basePaths)this.basePaths[t].attr(\"d\",r);for(t in this.dataPaths)this.dataPaths[t].attr(\"d\",(function(t){return r(t.geojson)}));for(t in this.dataPoints)this.dataPoints[t].attr(\"display\",i).attr(\"transform\",n)}},{\"../../components/color\":643,\"../../components/dragelement\":662,\"../../components/drawing\":665,\"../../components/fx\":683,\"../../lib\":778,\"../../lib/geo_location_utils\":771,\"../../lib/topojson_utils\":806,\"../../registry\":911,\"../cartesian/autorange\":827,\"../cartesian/axes\":828,\"../cartesian/select\":847,\"../plots\":891,\"./constants\":858,\"./projections\":863,\"./zoom\":864,d3:169,\"topojson-client\":579}],860:[function(t,e,r){\"use strict\";var n=t(\"../../plots/get_data\").getSubplotCalcData,i=t(\"../../lib\").counterRegex,a=t(\"./geo\"),o=\"geo\",s=i(o),l={};l.geo={valType:\"subplotid\",dflt:o,editType:\"calc\"},e.exports={attr:o,name:o,idRoot:o,idRegex:s,attrRegex:s,attributes:l,layoutAttributes:t(\"./layout_attributes\"),supplyLayoutDefaults:t(\"./layout_defaults\"),plot:function(t){for(var e=t._fullLayout,r=t.calcdata,i=e._subplots.geo,s=0;s<i.length;s++){var l=i[s],c=n(r,o,l),u=e[l]._subplot;u||(u=a({id:l,graphDiv:t,container:e._geolayer.node(),topojsonURL:t._context.topojsonURL,staticPlot:t._context.staticPlot}),e[l]._subplot=u),u.plot(c,e,t._promises)}},updateFx:function(t){for(var e=t._fullLayout,r=e._subplots.geo,n=0;n<r.length;n++){var i=e[r[n]];i._subplot.updateFx(e,i)}},clean:function(t,e,r,n){for(var i=n._subplots.geo||[],a=0;a<i.length;a++){var o=i[a],s=n[o]._subplot;!e[o]&&s&&(s.framework.remove(),s.clipDef.remove())}}}},{\"../../lib\":778,\"../../plots/get_data\":865,\"./geo\":859,\"./layout_attributes\":861,\"./layout_defaults\":862}],861:[function(t,e,r){\"use strict\";var n=t(\"../../components/color/attributes\"),i=t(\"../domain\").attributes,a=t(\"./constants\"),o=t(\"../../plot_api/edit_types\").overrideAll,s={range:{valType:\"info_array\",items:[{valType:\"number\"},{valType:\"number\"}]},showgrid:{valType:\"boolean\",dflt:!1},tick0:{valType:\"number\",dflt:0},dtick:{valType:\"number\"},gridcolor:{valType:\"color\",dflt:n.lightLine},gridwidth:{valType:\"number\",min:0,dflt:1}};(e.exports=o({domain:i({name:\"geo\"},{}),fitbounds:{valType:\"enumerated\",values:[!1,\"locations\",\"geojson\"],dflt:!1,editType:\"plot\"},resolution:{valType:\"enumerated\",values:[110,50],dflt:110,coerceNumber:!0},scope:{valType:\"enumerated\",values:Object.keys(a.scopeDefaults),dflt:\"world\"},projection:{type:{valType:\"enumerated\",values:Object.keys(a.projNames)},rotation:{lon:{valType:\"number\"},lat:{valType:\"number\"},roll:{valType:\"number\"}},parallels:{valType:\"info_array\",items:[{valType:\"number\"},{valType:\"number\"}]},scale:{valType:\"number\",min:0,dflt:1}},center:{lon:{valType:\"number\"},lat:{valType:\"number\"}},visible:{valType:\"boolean\",dflt:!0},showcoastlines:{valType:\"boolean\"},coastlinecolor:{valType:\"color\",dflt:n.defaultLine},coastlinewidth:{valType:\"number\",min:0,dflt:1},showland:{valType:\"boolean\",dflt:!1},landcolor:{valType:\"color\",dflt:a.landColor},showocean:{valType:\"boolean\",dflt:!1},oceancolor:{valType:\"color\",dflt:a.waterColor},showlakes:{valType:\"boolean\",dflt:!1},lakecolor:{valType:\"color\",dflt:a.waterColor},showrivers:{valType:\"boolean\",dflt:!1},rivercolor:{valType:\"color\",dflt:a.waterColor},riverwidth:{valType:\"number\",min:0,dflt:1},showcountries:{valType:\"boolean\"},countrycolor:{valType:\"color\",dflt:n.defaultLine},countrywidth:{valType:\"number\",min:0,dflt:1},showsubunits:{valType:\"boolean\"},subunitcolor:{valType:\"color\",dflt:n.defaultLine},subunitwidth:{valType:\"number\",min:0,dflt:1},showframe:{valType:\"boolean\"},framecolor:{valType:\"color\",dflt:n.defaultLine},framewidth:{valType:\"number\",min:0,dflt:1},bgcolor:{valType:\"color\",dflt:n.background},lonaxis:s,lataxis:s},\"plot\",\"from-root\")).uirevision={valType:\"any\",editType:\"none\"}},{\"../../components/color/attributes\":642,\"../../plot_api/edit_types\":810,\"../domain\":855,\"./constants\":858}],862:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../subplot_defaults\"),a=t(\"../get_data\").getSubplotData,o=t(\"./constants\"),s=t(\"./layout_attributes\"),l=o.axesNames;function c(t,e,r,i){var s=a(i.fullData,\"geo\",i.id).map((function(t){return t._expandedIndex})),c=r(\"resolution\"),u=r(\"scope\"),f=o.scopeDefaults[u],h=r(\"projection.type\",f.projType),p=e._isAlbersUsa=\"albers usa\"===h;p&&(u=e.scope=\"usa\");var d=e._isScoped=\"world\"!==u,g=e._isConic=-1!==h.indexOf(\"conic\"),m=e._isClipped=!!o.lonaxisSpan[h];if(!1===t.visible){var v=n.extendDeep({},e._template);v.showcoastlines=!1,v.showcountries=!1,v.showframe=!1,v.showlakes=!1,v.showland=!1,v.showocean=!1,v.showrivers=!1,v.showsubunits=!1,v.lonaxis&&(v.lonaxis.showgrid=!1),v.lataxis&&(v.lataxis.showgrid=!1),e._template=v}for(var y=r(\"visible\"),x=0;x<l.length;x++){var b,_=l[x],w=[30,10][x];if(d)b=f[_+\"Range\"];else{var T=o[_+\"Span\"],k=(T[h]||T[\"*\"])/2,M=r(\"projection.rotation.\"+_.substr(0,3),f.projRotate[x]);b=[M-k,M+k]}var A=r(_+\".range\",b);r(_+\".tick0\"),r(_+\".dtick\",w),r(_+\".showgrid\",!!y&&void 0)&&(r(_+\".gridcolor\"),r(_+\".gridwidth\")),e[_]._ax={type:\"linear\",_id:_.slice(0,3),_traceIndices:s,setScale:n.identity,c2l:n.identity,r2l:n.identity,autorange:!0,range:A.slice(),_m:1,_input:{}}}var S=e.lonaxis.range,E=e.lataxis.range,C=S[0],L=S[1];C>0&&L<0&&(L+=360);var I,P,z,O=(C+L)/2;if(!p){var D=d?f.projRotate:[O,0,0];I=r(\"projection.rotation.lon\",D[0]),r(\"projection.rotation.lat\",D[1]),r(\"projection.rotation.roll\",D[2]),r(\"showcoastlines\",!d&&y)&&(r(\"coastlinecolor\"),r(\"coastlinewidth\")),r(\"showocean\",!!y&&void 0)&&r(\"oceancolor\")}(p?(P=-96.6,z=38.7):(P=d?O:I,z=(E[0]+E[1])/2),r(\"center.lon\",P),r(\"center.lat\",z),g)&&r(\"projection.parallels\",f.projParallels||[0,60]);r(\"projection.scale\"),r(\"showland\",!!y&&void 0)&&r(\"landcolor\"),r(\"showlakes\",!!y&&void 0)&&r(\"lakecolor\"),r(\"showrivers\",!!y&&void 0)&&(r(\"rivercolor\"),r(\"riverwidth\")),r(\"showcountries\",d&&\"usa\"!==u&&y)&&(r(\"countrycolor\"),r(\"countrywidth\")),(\"usa\"===u||\"north america\"===u&&50===c)&&(r(\"showsubunits\",y),r(\"subunitcolor\"),r(\"subunitwidth\")),d||r(\"showframe\",y)&&(r(\"framecolor\"),r(\"framewidth\")),r(\"bgcolor\"),r(\"fitbounds\")&&(delete e.projection.scale,d?(delete e.center.lon,delete e.center.lat):m?(delete e.center.lon,delete e.center.lat,delete e.projection.rotation.lon,delete e.projection.rotation.lat,delete e.lonaxis.range,delete e.lataxis.range):(delete e.center.lon,delete e.center.lat,delete e.projection.rotation.lon))}e.exports=function(t,e,r){i(t,e,r,{type:\"geo\",attributes:s,handleDefaults:c,fullData:r,partition:\"y\"})}},{\"../../lib\":778,\"../get_data\":865,\"../subplot_defaults\":905,\"./constants\":858,\"./layout_attributes\":861}],863:[function(t,e,r){\"use strict\";e.exports=function(t){function e(t,e){return{type:\"Feature\",id:t.id,properties:t.properties,geometry:r(t.geometry,e)}}function r(e,n){if(!e)return null;if(\"GeometryCollection\"===e.type)return{type:\"GeometryCollection\",geometries:object.geometries.map((function(t){return r(t,n)}))};if(!c.hasOwnProperty(e.type))return null;var i=c[e.type];return t.geo.stream(e,n(i)),i.result()}t.geo.project=function(t,e){var i=e.stream;if(!i)throw new Error(\"not yet supported\");return(t&&n.hasOwnProperty(t.type)?n[t.type]:r)(t,i)};var n={Feature:e,FeatureCollection:function(t,r){return{type:\"FeatureCollection\",features:t.features.map((function(t){return e(t,r)}))}}},i=[],a=[],o={point:function(t,e){i.push([t,e])},result:function(){var t=i.length?i.length<2?{type:\"Point\",coordinates:i[0]}:{type:\"MultiPoint\",coordinates:i}:null;return i=[],t}},s={lineStart:u,point:function(t,e){i.push([t,e])},lineEnd:function(){i.length&&(a.push(i),i=[])},result:function(){var t=a.length?a.length<2?{type:\"LineString\",coordinates:a[0]}:{type:\"MultiLineString\",coordinates:a}:null;return a=[],t}},l={polygonStart:u,lineStart:u,point:function(t,e){i.push([t,e])},lineEnd:function(){var t=i.length;if(t){do{i.push(i[0].slice())}while(++t<4);a.push(i),i=[]}},polygonEnd:u,result:function(){if(!a.length)return null;var t=[],e=[];return a.forEach((function(r){!function(t){if((e=t.length)<4)return!1;var e,r=0,n=t[e-1][1]*t[0][0]-t[e-1][0]*t[0][1];for(;++r<e;)n+=t[r-1][1]*t[r][0]-t[r-1][0]*t[r][1];return n<=0}(r)?e.push(r):t.push([r])})),e.forEach((function(e){var r=e[0];t.some((function(t){if(function(t,e){for(var r=e[0],n=e[1],i=!1,a=0,o=t.length,s=o-1;a<o;s=a++){var l=t[a],c=l[0],u=l[1],f=t[s],h=f[0],p=f[1];u>n^p>n&&r<(h-c)*(n-u)/(p-u)+c&&(i=!i)}return i}(t[0],r))return t.push(e),!0}))||t.push([e])})),a=[],t.length?t.length>1?{type:\"MultiPolygon\",coordinates:t}:{type:\"Polygon\",coordinates:t[0]}:null}},c={Point:o,MultiPoint:o,LineString:s,MultiLineString:s,Polygon:l,MultiPolygon:l,Sphere:l};function u(){}var f=1e-6,h=Math.PI,p=h/2,d=(Math.sqrt(h),h/180),g=180/h;function m(t){return t>1?p:t<-1?-p:Math.asin(t)}function v(t){return t>1?0:t<-1?h:Math.acos(t)}var y=t.geo.projection,x=t.geo.projectionMutator;function b(t,e){var r=(2+p)*Math.sin(e);e/=2;for(var n=0,i=1/0;n<10&&Math.abs(i)>f;n++){var a=Math.cos(e);e-=i=(e+Math.sin(e)*(a+2)-r)/(2*a*(1+a))}return[2/Math.sqrt(h*(4+h))*t*(1+Math.cos(e)),2*Math.sqrt(h/(4+h))*Math.sin(e)]}t.geo.interrupt=function(e){var r,n=[[[[-h,0],[0,p],[h,0]]],[[[-h,0],[0,-p],[h,0]]]];function i(t,r){for(var i=r<0?-1:1,a=n[+(r<0)],o=0,s=a.length-1;o<s&&t>a[o][2][0];++o);var l=e(t-a[o][1][0],r);return l[0]+=e(a[o][1][0],i*r>i*a[o][0][1]?a[o][0][1]:r)[0],l}function a(){r=n.map((function(t){return t.map((function(t){var r,n=e(t[0][0],t[0][1])[0],i=e(t[2][0],t[2][1])[0],a=e(t[1][0],t[0][1])[1],o=e(t[1][0],t[1][1])[1];return a>o&&(r=a,a=o,o=r),[[n,a],[i,o]]}))}))}e.invert&&(i.invert=function(t,a){for(var o=r[+(a<0)],s=n[+(a<0)],l=0,u=o.length;l<u;++l){var f=o[l];if(f[0][0]<=t&&t<f[1][0]&&f[0][1]<=a&&a<f[1][1]){var h=e.invert(t-e(s[l][1][0],0)[0],a);return h[0]+=s[l][1][0],c(i(h[0],h[1]),[t,a])?h:null}}});var o=t.geo.projection(i),s=o.stream;function l(t,e){for(var r,n,i,a=-1,o=t.length,s=t[0],l=[];++a<o;){n=((r=t[a])[0]-s[0])/e,i=(r[1]-s[1])/e;for(var c=0;c<e;++c)l.push([s[0]+c*n,s[1]+c*i]);s=r}return l.push(r),l}function c(t,e){return Math.abs(t[0]-e[0])<f&&Math.abs(t[1]-e[1])<f}return o.stream=function(e){var r=o.rotate(),i=s(e),a=(o.rotate([0,0]),s(e));return o.rotate(r),i.sphere=function(){t.geo.stream(function(){for(var e=1e-6,r=[],i=0,a=n[0].length;i<a;++i){var o=180*(p=n[0][i])[0][0]/h,s=180*p[0][1]/h,c=180*p[1][1]/h,u=180*p[2][0]/h,f=180*p[2][1]/h;r.push(l([[o+e,s+e],[o+e,c-e],[u-e,c-e],[u-e,f+e]],30))}for(i=n[1].length-1;i>=0;--i){var p;o=180*(p=n[1][i])[0][0]/h,s=180*p[0][1]/h,c=180*p[1][1]/h,u=180*p[2][0]/h,f=180*p[2][1]/h;r.push(l([[u-e,f-e],[u-e,c+e],[o+e,c+e],[o+e,s-e]],30))}return{type:\"Polygon\",coordinates:[t.merge(r)]}}(),a)},i},o.lobes=function(t){return arguments.length?(n=t.map((function(t){return t.map((function(t){return[[t[0][0]*h/180,t[0][1]*h/180],[t[1][0]*h/180,t[1][1]*h/180],[t[2][0]*h/180,t[2][1]*h/180]]}))})),a(),o):n.map((function(t){return t.map((function(t){return[[180*t[0][0]/h,180*t[0][1]/h],[180*t[1][0]/h,180*t[1][1]/h],[180*t[2][0]/h,180*t[2][1]/h]]}))}))},o},b.invert=function(t,e){var r=.5*e*Math.sqrt((4+h)/h),n=m(r),i=Math.cos(n);return[t/(2/Math.sqrt(h*(4+h))*(1+i)),m((n+r*(i+2))/(2+p))]},(t.geo.eckert4=function(){return y(b)}).raw=b;var _=t.geo.azimuthalEqualArea.raw;function w(t,e){if(arguments.length<2&&(e=t),1===e)return _;if(e===1/0)return T;function r(r,n){var i=_(r/e,n);return i[0]*=t,i}return r.invert=function(r,n){var i=_.invert(r/t,n);return i[0]*=e,i},r}function T(t,e){return[t*Math.cos(e)/Math.cos(e/=2),2*Math.sin(e)]}function k(t,e){return[3*t/(2*h)*Math.sqrt(h*h/3-e*e),e]}function M(t,e){return[t,1.25*Math.log(Math.tan(h/4+.4*e))]}function A(t){return function(e){var r,n=t*Math.sin(e),i=30;do{e-=r=(e+Math.sin(e)-n)/(1+Math.cos(e))}while(Math.abs(r)>f&&--i>0);return e/2}}T.invert=function(t,e){var r=2*m(e/2);return[t*Math.cos(r/2)/Math.cos(r),r]},(t.geo.hammer=function(){var t=2,e=x(w),r=e(t);return r.coefficient=function(r){return arguments.length?e(t=+r):t},r}).raw=w,k.invert=function(t,e){return[2/3*h*t/Math.sqrt(h*h/3-e*e),e]},(t.geo.kavrayskiy7=function(){return y(k)}).raw=k,M.invert=function(t,e){return[t,2.5*Math.atan(Math.exp(.8*e))-.625*h]},(t.geo.miller=function(){return y(M)}).raw=M,A(h);var S=function(t,e,r){var n=A(r);function i(r,i){return[t*r*Math.cos(i=n(i)),e*Math.sin(i)]}return i.invert=function(n,i){var a=m(i/e);return[n/(t*Math.cos(a)),m((2*a+Math.sin(2*a))/r)]},i}(Math.SQRT2/p,Math.SQRT2,h);function E(t,e){var r=e*e,n=r*r;return[t*(.8707-.131979*r+n*(n*(.003971*r-.001529*n)-.013791)),e*(1.007226+r*(.015085+n*(.028874*r-.044475-.005916*n)))]}(t.geo.mollweide=function(){return y(S)}).raw=S,E.invert=function(t,e){var r,n=e,i=25;do{var a=n*n,o=a*a;n-=r=(n*(1.007226+a*(.015085+o*(.028874*a-.044475-.005916*o)))-e)/(1.007226+a*(.045255+o*(.259866*a-.311325-.005916*11*o)))}while(Math.abs(r)>f&&--i>0);return[t/(.8707+(a=n*n)*(a*(a*a*a*(.003971-.001529*a)-.013791)-.131979)),n]},(t.geo.naturalEarth=function(){return y(E)}).raw=E;var C=[[.9986,-.062],[1,0],[.9986,.062],[.9954,.124],[.99,.186],[.9822,.248],[.973,.31],[.96,.372],[.9427,.434],[.9216,.4958],[.8962,.5571],[.8679,.6176],[.835,.6769],[.7986,.7346],[.7597,.7903],[.7186,.8435],[.6732,.8936],[.6213,.9394],[.5722,.9761],[.5322,1]];function L(t,e){var r,n=Math.min(18,36*Math.abs(e)/h),i=Math.floor(n),a=n-i,o=(r=C[i])[0],s=r[1],l=(r=C[++i])[0],c=r[1],u=(r=C[Math.min(19,++i)])[0],f=r[1];return[t*(l+a*(u-o)/2+a*a*(u-2*l+o)/2),(e>0?p:-p)*(c+a*(f-s)/2+a*a*(f-2*c+s)/2)]}function I(t,e){return[t*Math.cos(e),e]}function P(t,e){var r,n=Math.cos(e),i=(r=v(n*Math.cos(t/=2)))?r/Math.sin(r):1;return[2*n*Math.sin(t)*i,Math.sin(e)*i]}function z(t,e){var r=P(t,e);return[(r[0]+t/p)/2,(r[1]+e)/2]}C.forEach((function(t){t[1]*=1.0144})),L.invert=function(t,e){var r=e/p,n=90*r,i=Math.min(18,Math.abs(n/5)),a=Math.max(0,Math.floor(i));do{var o=C[a][1],s=C[a+1][1],l=C[Math.min(19,a+2)][1],c=l-o,u=l-2*s+o,f=2*(Math.abs(r)-s)/c,h=u/c,m=f*(1-h*f*(1-2*h*f));if(m>=0||1===a){n=(e>=0?5:-5)*(m+i);var v,y=50;do{m=(i=Math.min(18,Math.abs(n)/5))-(a=Math.floor(i)),o=C[a][1],s=C[a+1][1],l=C[Math.min(19,a+2)][1],n-=(v=(e>=0?p:-p)*(s+m*(l-o)/2+m*m*(l-2*s+o)/2)-e)*g}while(Math.abs(v)>1e-12&&--y>0);break}}while(--a>=0);var x=C[a][0],b=C[a+1][0],_=C[Math.min(19,a+2)][0];return[t/(b+m*(_-x)/2+m*m*(_-2*b+x)/2),n*d]},(t.geo.robinson=function(){return y(L)}).raw=L,I.invert=function(t,e){return[t/Math.cos(e),e]},(t.geo.sinusoidal=function(){return y(I)}).raw=I,P.invert=function(t,e){if(!(t*t+4*e*e>h*h+f)){var r=t,n=e,i=25;do{var a,o=Math.sin(r),s=Math.sin(r/2),l=Math.cos(r/2),c=Math.sin(n),u=Math.cos(n),p=Math.sin(2*n),d=c*c,g=u*u,m=s*s,y=1-g*l*l,x=y?v(u*l)*Math.sqrt(a=1/y):a=0,b=2*x*u*s-t,_=x*c-e,w=a*(g*m+x*u*l*d),T=a*(.5*o*p-2*x*c*s),k=.25*a*(p*s-x*c*g*o),M=a*(d*l+x*m*u),A=T*k-M*w;if(!A)break;var S=(_*T-b*M)/A,E=(b*k-_*w)/A;r-=S,n-=E}while((Math.abs(S)>f||Math.abs(E)>f)&&--i>0);return[r,n]}},(t.geo.aitoff=function(){return y(P)}).raw=P,z.invert=function(t,e){var r=t,n=e,i=25;do{var a,o=Math.cos(n),s=Math.sin(n),l=Math.sin(2*n),c=s*s,u=o*o,h=Math.sin(r),d=Math.cos(r/2),g=Math.sin(r/2),m=g*g,y=1-u*d*d,x=y?v(o*d)*Math.sqrt(a=1/y):a=0,b=.5*(2*x*o*g+r/p)-t,_=.5*(x*s+n)-e,w=.5*a*(u*m+x*o*d*c)+.5/p,T=a*(h*l/4-x*s*g),k=.125*a*(l*g-x*s*u*h),M=.5*a*(c*d+x*m*o)+.5,A=T*k-M*w,S=(_*T-b*M)/A,E=(b*k-_*w)/A;r-=S,n-=E}while((Math.abs(S)>f||Math.abs(E)>f)&&--i>0);return[r,n]},(t.geo.winkel3=function(){return y(z)}).raw=z}},{}],864:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../../registry\"),o=Math.PI/180,s=180/Math.PI,l={cursor:\"pointer\"},c={cursor:\"auto\"};function u(t,e){return n.behavior.zoom().translate(e.translate()).scale(e.scale())}function f(t,e,r){var n=t.id,o=t.graphDiv,s=o.layout,l=s[n],c=o._fullLayout,u=c[n],f={},h={};function p(t,e){f[n+\".\"+t]=i.nestedProperty(l,t).get(),a.call(\"_storeDirectGUIEdit\",s,c._preGUI,f);var r=i.nestedProperty(u,t);r.get()!==e&&(r.set(e),i.nestedProperty(l,t).set(e),h[n+\".\"+t]=e)}r(p),p(\"projection.scale\",e.scale()/t.fitScale),p(\"fitbounds\",!1),o.emit(\"plotly_relayout\",h)}function h(t,e){var r=u(0,e);function i(r){var n=e.invert(t.midPt);r(\"center.lon\",n[0]),r(\"center.lat\",n[1])}return r.on(\"zoomstart\",(function(){n.select(this).style(l)})).on(\"zoom\",(function(){e.scale(n.event.scale).translate(n.event.translate),t.render();var r=e.invert(t.midPt);t.graphDiv.emit(\"plotly_relayouting\",{\"geo.projection.scale\":e.scale()/t.fitScale,\"geo.center.lon\":r[0],\"geo.center.lat\":r[1]})})).on(\"zoomend\",(function(){n.select(this).style(c),f(t,e,i)})),r}function p(t,e){var r,i,a,o,s,h,p,d,g,m=u(0,e);function v(t){return e.invert(t)}function y(r){var n=e.rotate(),i=e.invert(t.midPt);r(\"projection.rotation.lon\",-n[0]),r(\"center.lon\",i[0]),r(\"center.lat\",i[1])}return m.on(\"zoomstart\",(function(){n.select(this).style(l),r=n.mouse(this),i=e.rotate(),a=e.translate(),o=i,s=v(r)})).on(\"zoom\",(function(){if(h=n.mouse(this),function(t){var r=v(t);if(!r)return!0;var n=e(r);return Math.abs(n[0]-t[0])>2||Math.abs(n[1]-t[1])>2}(r))return m.scale(e.scale()),void m.translate(e.translate());e.scale(n.event.scale),e.translate([a[0],n.event.translate[1]]),s?v(h)&&(d=v(h),p=[o[0]+(d[0]-s[0]),i[1],i[2]],e.rotate(p),o=p):s=v(r=h),g=!0,t.render();var l=e.rotate(),c=e.invert(t.midPt);t.graphDiv.emit(\"plotly_relayouting\",{\"geo.projection.scale\":e.scale()/t.fitScale,\"geo.center.lon\":c[0],\"geo.center.lat\":c[1],\"geo.projection.rotation.lon\":-l[0]})})).on(\"zoomend\",(function(){n.select(this).style(c),g&&f(t,e,y)})),m}function d(t,e){var r,i={r:e.rotate(),k:e.scale()},a=u(0,e),o=function(t){var e=0,r=arguments.length,i=[];for(;++e<r;)i.push(arguments[e]);var a=n.dispatch.apply(null,i);return a.of=function(e,r){return function(i){var o;try{o=i.sourceEvent=n.event,i.target=t,n.event=i,a[i.type].apply(e,r)}finally{n.event=o}}},a}(a,\"zoomstart\",\"zoom\",\"zoomend\"),s=0,h=a.on;function p(t){s++||t({type:\"zoomstart\"})}function d(t){t({type:\"zoom\"})}function b(t){--s||t({type:\"zoomend\"})}function _(t){var r=e.rotate();t(\"projection.rotation.lon\",-r[0]),t(\"projection.rotation.lat\",-r[1])}return a.on(\"zoomstart\",(function(){n.select(this).style(l);var t=n.mouse(this),s=e.rotate(),c=s,u=e.translate(),f=m(s);r=g(e,t),h.call(a,\"zoom\",(function(){var a=n.mouse(this);if(e.scale(i.k=n.event.scale),r){if(g(e,a)){e.rotate(s).translate(u);var l=g(e,a),h=y(r,l),p=T(v(f,h)),m=i.r=x(p,r,c);isFinite(m[0])&&isFinite(m[1])&&isFinite(m[2])||(m=c),e.rotate(m),c=m}}else r=g(e,t=a);d(o.of(this,arguments))})),p(o.of(this,arguments))})).on(\"zoomend\",(function(){n.select(this).style(c),h.call(a,\"zoom\",null),b(o.of(this,arguments)),f(t,e,_)})).on(\"zoom.redraw\",(function(){t.render();var r=e.rotate();t.graphDiv.emit(\"plotly_relayouting\",{\"geo.projection.scale\":e.scale()/t.fitScale,\"geo.projection.rotation.lon\":-r[0],\"geo.projection.rotation.lat\":-r[1]})})),n.rebind(a,o,\"on\")}function g(t,e){var r=t.invert(e);return r&&isFinite(r[0])&&isFinite(r[1])&&function(t){var e=t[0]*o,r=t[1]*o,n=Math.cos(r);return[n*Math.cos(e),n*Math.sin(e),Math.sin(r)]}(r)}function m(t){var e=.5*t[0]*o,r=.5*t[1]*o,n=.5*t[2]*o,i=Math.sin(e),a=Math.cos(e),s=Math.sin(r),l=Math.cos(r),c=Math.sin(n),u=Math.cos(n);return[a*l*u+i*s*c,i*l*u-a*s*c,a*s*u+i*l*c,a*l*c-i*s*u]}function v(t,e){var r=t[0],n=t[1],i=t[2],a=t[3],o=e[0],s=e[1],l=e[2],c=e[3];return[r*o-n*s-i*l-a*c,r*s+n*o+i*c-a*l,r*l-n*c+i*o+a*s,r*c+n*l-i*s+a*o]}function y(t,e){if(t&&e){var r=function(t,e){return[t[1]*e[2]-t[2]*e[1],t[2]*e[0]-t[0]*e[2],t[0]*e[1]-t[1]*e[0]]}(t,e),n=Math.sqrt(k(r,r)),i=.5*Math.acos(Math.max(-1,Math.min(1,k(t,e)))),a=Math.sin(i)/n;return n&&[Math.cos(i),r[2]*a,-r[1]*a,r[0]*a]}}function x(t,e,r){var n=w(e,2,t[0]);n=w(n,1,t[1]),n=w(n,0,t[2]-r[2]);var i,a,o=e[0],l=e[1],c=e[2],u=n[0],f=n[1],h=n[2],p=Math.atan2(l,o)*s,d=Math.sqrt(o*o+l*l);Math.abs(f)>d?(a=(f>0?90:-90)-p,i=0):(a=Math.asin(f/d)*s-p,i=Math.sqrt(d*d-f*f));var g=180-a-2*p,m=(Math.atan2(h,u)-Math.atan2(c,i))*s,v=(Math.atan2(h,u)-Math.atan2(c,-i))*s;return b(r[0],r[1],a,m)<=b(r[0],r[1],g,v)?[a,m,r[2]]:[g,v,r[2]]}function b(t,e,r,n){var i=_(r-t),a=_(n-e);return Math.sqrt(i*i+a*a)}function _(t){return(t%360+540)%360-180}function w(t,e,r){var n=r*o,i=t.slice(),a=0===e?1:0,s=2===e?1:2,l=Math.cos(n),c=Math.sin(n);return i[a]=t[a]*l-t[s]*c,i[s]=t[s]*l+t[a]*c,i}function T(t){return[Math.atan2(2*(t[0]*t[1]+t[2]*t[3]),1-2*(t[1]*t[1]+t[2]*t[2]))*s,Math.asin(Math.max(-1,Math.min(1,2*(t[0]*t[2]-t[3]*t[1]))))*s,Math.atan2(2*(t[0]*t[3]+t[1]*t[2]),1-2*(t[2]*t[2]+t[3]*t[3]))*s]}function k(t,e){for(var r=0,n=0,i=t.length;n<i;++n)r+=t[n]*e[n];return r}e.exports=function(t,e){var r=t.projection;return(e._isScoped?h:e._isClipped?d:p)(t,r)}},{\"../../lib\":778,\"../../registry\":911,d3:169}],865:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),i=t(\"./cartesian/constants\").SUBPLOT_PATTERN;r.getSubplotCalcData=function(t,e,r){var i=n.subplotsRegistry[e];if(!i)return[];for(var a=i.attr,o=[],s=0;s<t.length;s++){var l=t[s];l[0].trace[a]===r&&o.push(l)}return o},r.getModuleCalcData=function(t,e){var r,i=[],a=[];if(!(r=\"string\"==typeof e?n.getModule(e).plot:\"function\"==typeof e?e:e.plot))return[i,t];for(var o=0;o<t.length;o++){var s=t[o],l=s[0].trace;!0===l.visible&&0!==l._length&&(l._module.plot===r?i.push(s):a.push(s))}return[i,a]},r.getSubplotData=function(t,e,r){if(!n.subplotsRegistry[e])return[];var a,o,s,l=n.subplotsRegistry[e].attr,c=[];if(\"gl2d\"===e){var u=r.match(i);o=\"x\"+u[1],s=\"y\"+u[2]}for(var f=0;f<t.length;f++)a=t[f],\"gl2d\"===e&&n.traceIs(a,\"gl2d\")?a[l[0]]===o&&a[l[1]]===s&&c.push(a):a[l]===r&&c.push(a);return c}},{\"../registry\":911,\"./cartesian/constants\":834}],866:[function(t,e,r){\"use strict\";var n=t(\"mouse-change\"),i=t(\"mouse-wheel\"),a=t(\"mouse-event-offset\"),o=t(\"../cartesian/constants\"),s=t(\"has-passive-events\");function l(t,e){this.element=t,this.plot=e,this.mouseListener=null,this.wheelListener=null,this.lastInputTime=Date.now(),this.lastPos=[0,0],this.boxEnabled=!1,this.boxInited=!1,this.boxStart=[0,0],this.boxEnd=[0,0],this.dragStart=[0,0]}e.exports=function(t){var e=t.mouseContainer,r=t.glplot,c=new l(e,r);function u(){t.xaxis.autorange=!1,t.yaxis.autorange=!1}function f(e,n,i){var a,s,l=t.calcDataBox(),f=r.viewBox,h=c.lastPos[0],p=c.lastPos[1],d=o.MINDRAG*r.pixelRatio,g=o.MINZOOM*r.pixelRatio;function m(e,r,n){var i=Math.min(r,n),a=Math.max(r,n);i!==a?(l[e]=i,l[e+2]=a,c.dataBox=l,t.setRanges(l)):(t.selectBox.selectBox=[0,0,1,1],t.glplot.setDirty())}switch(n*=r.pixelRatio,i*=r.pixelRatio,i=f[3]-f[1]-i,t.fullLayout.dragmode){case\"zoom\":if(e){var v=n/(f[2]-f[0])*(l[2]-l[0])+l[0],y=i/(f[3]-f[1])*(l[3]-l[1])+l[1];c.boxInited||(c.boxStart[0]=v,c.boxStart[1]=y,c.dragStart[0]=n,c.dragStart[1]=i),c.boxEnd[0]=v,c.boxEnd[1]=y,c.boxInited=!0,c.boxEnabled||c.boxStart[0]===c.boxEnd[0]&&c.boxStart[1]===c.boxEnd[1]||(c.boxEnabled=!0);var x=Math.abs(c.dragStart[0]-n)<g,b=Math.abs(c.dragStart[1]-i)<g;if(!function(){for(var e=t.graphDiv._fullLayout._axisConstraintGroups,r=t.xaxis._id,n=t.yaxis._id,i=0;i<e.length;i++)if(-1!==e[i][r]){if(-1!==e[i][n])return!0;break}return!1}()||x&&b)x&&(c.boxEnd[0]=c.boxStart[0]),b&&(c.boxEnd[1]=c.boxStart[1]);else{a=c.boxEnd[0]-c.boxStart[0],s=c.boxEnd[1]-c.boxStart[1];var _=(l[3]-l[1])/(l[2]-l[0]);Math.abs(a*_)>Math.abs(s)?(c.boxEnd[1]=c.boxStart[1]+Math.abs(a)*_*(s>=0?1:-1),c.boxEnd[1]<l[1]?(c.boxEnd[1]=l[1],c.boxEnd[0]=c.boxStart[0]+(l[1]-c.boxStart[1])/Math.abs(_)):c.boxEnd[1]>l[3]&&(c.boxEnd[1]=l[3],c.boxEnd[0]=c.boxStart[0]+(l[3]-c.boxStart[1])/Math.abs(_))):(c.boxEnd[0]=c.boxStart[0]+Math.abs(s)/_*(a>=0?1:-1),c.boxEnd[0]<l[0]?(c.boxEnd[0]=l[0],c.boxEnd[1]=c.boxStart[1]+(l[0]-c.boxStart[0])*Math.abs(_)):c.boxEnd[0]>l[2]&&(c.boxEnd[0]=l[2],c.boxEnd[1]=c.boxStart[1]+(l[2]-c.boxStart[0])*Math.abs(_)))}}else c.boxEnabled?(a=c.boxStart[0]!==c.boxEnd[0],s=c.boxStart[1]!==c.boxEnd[1],a||s?(a&&(m(0,c.boxStart[0],c.boxEnd[0]),t.xaxis.autorange=!1),s&&(m(1,c.boxStart[1],c.boxEnd[1]),t.yaxis.autorange=!1),t.relayoutCallback()):t.glplot.setDirty(),c.boxEnabled=!1,c.boxInited=!1):c.boxInited&&(c.boxInited=!1);break;case\"pan\":c.boxEnabled=!1,c.boxInited=!1,e?(c.panning||(c.dragStart[0]=n,c.dragStart[1]=i),Math.abs(c.dragStart[0]-n)<d&&(n=c.dragStart[0]),Math.abs(c.dragStart[1]-i)<d&&(i=c.dragStart[1]),a=(h-n)*(l[2]-l[0])/(r.viewBox[2]-r.viewBox[0]),s=(p-i)*(l[3]-l[1])/(r.viewBox[3]-r.viewBox[1]),l[0]+=a,l[2]+=a,l[1]+=s,l[3]+=s,t.setRanges(l),c.panning=!0,c.lastInputTime=Date.now(),u(),t.cameraChanged(),t.handleAnnotations()):c.panning&&(c.panning=!1,t.relayoutCallback())}c.lastPos[0]=n,c.lastPos[1]=i}return c.mouseListener=n(e,f),e.addEventListener(\"touchstart\",(function(t){var r=a(t.changedTouches[0],e);f(0,r[0],r[1]),f(1,r[0],r[1]),t.preventDefault()}),!!s&&{passive:!1}),e.addEventListener(\"touchmove\",(function(t){t.preventDefault();var r=a(t.changedTouches[0],e);f(1,r[0],r[1]),t.preventDefault()}),!!s&&{passive:!1}),e.addEventListener(\"touchend\",(function(t){f(0,c.lastPos[0],c.lastPos[1]),t.preventDefault()}),!!s&&{passive:!1}),c.wheelListener=i(e,(function(e,n){if(!t.scrollZoom)return!1;var i=t.calcDataBox(),a=r.viewBox,o=c.lastPos[0],s=c.lastPos[1],l=Math.exp(5*n/(a[3]-a[1])),f=o/(a[2]-a[0])*(i[2]-i[0])+i[0],h=s/(a[3]-a[1])*(i[3]-i[1])+i[1];return i[0]=(i[0]-f)*l+f,i[2]=(i[2]-f)*l+f,i[1]=(i[1]-h)*l+h,i[3]=(i[3]-h)*l+h,t.setRanges(i),c.lastInputTime=Date.now(),u(),t.cameraChanged(),t.handleAnnotations(),t.relayoutCallback(),!0}),!0),c}},{\"../cartesian/constants\":834,\"has-passive-events\":441,\"mouse-change\":483,\"mouse-event-offset\":484,\"mouse-wheel\":486}],867:[function(t,e,r){\"use strict\";var n=t(\"../cartesian/axes\"),i=t(\"../../lib/str2rgbarray\");function a(t){this.scene=t,this.gl=t.gl,this.pixelRatio=t.pixelRatio,this.screenBox=[0,0,1,1],this.viewBox=[0,0,1,1],this.dataBox=[-1,-1,1,1],this.borderLineEnable=[!1,!1,!1,!1],this.borderLineWidth=[1,1,1,1],this.borderLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.ticks=[[],[]],this.tickEnable=[!0,!0,!1,!1],this.tickPad=[15,15,15,15],this.tickAngle=[0,0,0,0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickMarkLength=[0,0,0,0],this.tickMarkWidth=[0,0,0,0],this.tickMarkColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labels=[\"x\",\"y\"],this.labelEnable=[!0,!0,!1,!1],this.labelAngle=[0,Math.PI/2,0,3*Math.PI/2],this.labelPad=[15,15,15,15],this.labelSize=[12,12],this.labelFont=[\"sans-serif\",\"sans-serif\"],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.title=\"\",this.titleEnable=!0,this.titleCenter=[0,0,0,0],this.titleAngle=0,this.titleColor=[0,0,0,1],this.titleFont=\"sans-serif\",this.titleSize=18,this.gridLineEnable=[!0,!0],this.gridLineColor=[[0,0,0,.5],[0,0,0,.5]],this.gridLineWidth=[1,1],this.zeroLineEnable=[!0,!0],this.zeroLineWidth=[1,1],this.zeroLineColor=[[0,0,0,1],[0,0,0,1]],this.borderColor=[0,0,0,0],this.backgroundColor=[0,0,0,0],this.static=this.scene.staticPlot}var o=a.prototype,s=[\"xaxis\",\"yaxis\"];o.merge=function(t){var e,r,n,a,o,l,c,u,f,h,p;for(this.titleEnable=!1,this.backgroundColor=i(t.plot_bgcolor),h=0;h<2;++h){var d=(e=s[h]).charAt(0);for(n=(r=t[this.scene[e]._name]).title.text===this.scene.fullLayout._dfltTitle[d]?\"\":r.title.text,p=0;p<=2;p+=2)this.labelEnable[h+p]=!1,this.labels[h+p]=n,this.labelColor[h+p]=i(r.title.font.color),this.labelFont[h+p]=r.title.font.family,this.labelSize[h+p]=r.title.font.size,this.labelPad[h+p]=this.getLabelPad(e,r),this.tickEnable[h+p]=!1,this.tickColor[h+p]=i((r.tickfont||{}).color),this.tickAngle[h+p]=\"auto\"===r.tickangle?0:Math.PI*-r.tickangle/180,this.tickPad[h+p]=this.getTickPad(r),this.tickMarkLength[h+p]=0,this.tickMarkWidth[h+p]=r.tickwidth||0,this.tickMarkColor[h+p]=i(r.tickcolor),this.borderLineEnable[h+p]=!1,this.borderLineColor[h+p]=i(r.linecolor),this.borderLineWidth[h+p]=r.linewidth||0;c=this.hasSharedAxis(r),o=this.hasAxisInDfltPos(e,r)&&!c,l=this.hasAxisInAltrPos(e,r)&&!c,a=r.mirror||!1,u=c?-1!==String(a).indexOf(\"all\"):!!a,f=c?\"allticks\"===a:-1!==String(a).indexOf(\"ticks\"),o?this.labelEnable[h]=!0:l&&(this.labelEnable[h+2]=!0),o?this.tickEnable[h]=r.showticklabels:l&&(this.tickEnable[h+2]=r.showticklabels),(o||u)&&(this.borderLineEnable[h]=r.showline),(l||u)&&(this.borderLineEnable[h+2]=r.showline),(o||f)&&(this.tickMarkLength[h]=this.getTickMarkLength(r)),(l||f)&&(this.tickMarkLength[h+2]=this.getTickMarkLength(r)),this.gridLineEnable[h]=r.showgrid,this.gridLineColor[h]=i(r.gridcolor),this.gridLineWidth[h]=r.gridwidth,this.zeroLineEnable[h]=r.zeroline,this.zeroLineColor[h]=i(r.zerolinecolor),this.zeroLineWidth[h]=r.zerolinewidth}},o.hasSharedAxis=function(t){var e=this.scene,r=e.fullLayout._subplots.gl2d;return 0!==n.findSubplotsWithAxis(r,t).indexOf(e.id)},o.hasAxisInDfltPos=function(t,e){var r=e.side;return\"xaxis\"===t?\"bottom\"===r:\"yaxis\"===t?\"left\"===r:void 0},o.hasAxisInAltrPos=function(t,e){var r=e.side;return\"xaxis\"===t?\"top\"===r:\"yaxis\"===t?\"right\"===r:void 0},o.getLabelPad=function(t,e){var r=e.title.font.size,n=e.showticklabels;return\"xaxis\"===t?\"top\"===e.side?r*(1.5+(n?1:0))-10:r*(1.5+(n?.5:0))-10:\"yaxis\"===t?\"right\"===e.side?10+r*(1.5+(n?1:.5)):10+r*(1.5+(n?.5:0)):void 0},o.getTickPad=function(t){return\"outside\"===t.ticks?10+t.ticklen:15},o.getTickMarkLength=function(t){if(!t.ticks)return 0;var e=t.ticklen;return\"inside\"===t.ticks?-e:e},e.exports=function(t){return new a(t)}},{\"../../lib/str2rgbarray\":802,\"../cartesian/axes\":828}],868:[function(t,e,r){\"use strict\";var n=t(\"../../plot_api/edit_types\").overrideAll,i=t(\"./scene2d\"),a=t(\"../layout_attributes\"),o=t(\"../../constants/xmlns_namespaces\"),s=t(\"../cartesian/constants\"),l=t(\"../cartesian\"),c=t(\"../../components/fx/layout_attributes\"),u=t(\"../get_data\").getSubplotData;r.name=\"gl2d\",r.attr=[\"xaxis\",\"yaxis\"],r.idRoot=[\"x\",\"y\"],r.idRegex=s.idRegex,r.attrRegex=s.attrRegex,r.attributes=t(\"../cartesian/attributes\"),r.supplyLayoutDefaults=function(t,e,r){e._has(\"cartesian\")||l.supplyLayoutDefaults(t,e,r)},r.layoutAttrOverrides=n(l.layoutAttributes,\"plot\",\"from-root\"),r.baseLayoutAttrOverrides=n({plot_bgcolor:a.plot_bgcolor,hoverlabel:c.hoverlabel},\"plot\",\"nested\"),r.plot=function(t){for(var e=t._fullLayout,r=t._fullData,n=e._subplots.gl2d,a=0;a<n.length;a++){var o=n[a],s=e._plots[o],l=u(r,\"gl2d\",o),c=s._scene2d;void 0===c&&(c=new i({id:o,graphDiv:t,container:t.querySelector(\".gl-container\"),staticPlot:t._context.staticPlot,plotGlPixelRatio:t._context.plotGlPixelRatio},e),s._scene2d=c),c.plot(l,t.calcdata,e,t.layout)}},r.clean=function(t,e,r,n){for(var i=n._subplots.gl2d||[],a=0;a<i.length;a++){var o=i[a],s=n._plots[o];if(s._scene2d){var c=u(t,\"gl2d\",o);0===c.length&&(s._scene2d.destroy(),delete n._plots[o])}}l.clean.apply(this,arguments)},r.drawFramework=function(t){t._context.staticPlot||l.drawFramework(t)},r.toSVG=function(t){for(var e=t._fullLayout,r=e._subplots.gl2d,n=0;n<r.length;n++){var i=e._plots[r[n]]._scene2d,a=i.toImage(\"png\");e._glimages.append(\"svg:image\").attr({xmlns:o.svg,\"xlink:href\":a,x:0,y:0,width:\"100%\",height:\"100%\",preserveAspectRatio:\"none\"}),i.destroy()}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.gl2d,n=0;n<r.length;n++){e._plots[r[n]]._scene2d.updateFx(e.dragmode)}}},{\"../../components/fx/layout_attributes\":684,\"../../constants/xmlns_namespaces\":754,\"../../plot_api/edit_types\":810,\"../cartesian\":841,\"../cartesian/attributes\":826,\"../cartesian/constants\":834,\"../get_data\":865,\"../layout_attributes\":882,\"./scene2d\":869}],869:[function(t,e,r){\"use strict\";var n,i,a=t(\"../../registry\"),o=t(\"../../plots/cartesian/axes\"),s=t(\"../../components/fx\"),l=t(\"gl-plot2d\"),c=t(\"gl-spikes2d\"),u=t(\"gl-select-box\"),f=t(\"webgl-context\"),h=t(\"./convert\"),p=t(\"./camera\"),d=t(\"../../lib/show_no_webgl_msg\"),g=t(\"../cartesian/constraints\"),m=g.enforce,v=g.clean,y=t(\"../cartesian/autorange\").doAutoRange,x=t(\"../../components/dragelement/helpers\"),b=x.drawMode,_=x.selectMode,w=[\"xaxis\",\"yaxis\"],T=t(\"../cartesian/constants\").SUBPLOT_PATTERN;function k(t,e){this.container=t.container,this.graphDiv=t.graphDiv,this.pixelRatio=t.plotGlPixelRatio||window.devicePixelRatio,this.id=t.id,this.staticPlot=!!t.staticPlot,this.scrollZoom=this.graphDiv._context._scrollZoom.cartesian,this.fullData=null,this.updateRefs(e),this.makeFramework(),this.stopped||(this.glplotOptions=h(this),this.glplotOptions.merge(e),this.glplot=l(this.glplotOptions),this.camera=p(this),this.traces={},this.spikes=c(this.glplot),this.selectBox=u(this.glplot,{innerFill:!1,outerFill:!0}),this.lastButtonState=0,this.pickResult=null,this.isMouseOver=!0,this.stopped=!1,this.redraw=this.draw.bind(this),this.redraw())}e.exports=k;var M=k.prototype;M.makeFramework=function(){if(this.staticPlot){if(!(i||(n=document.createElement(\"canvas\"),i=f({canvas:n,preserveDrawingBuffer:!1,premultipliedAlpha:!0,antialias:!0}))))throw new Error(\"Error creating static canvas/context for image server\");this.canvas=n,this.gl=i}else{var t=this.container.querySelector(\".gl-canvas-focus\"),e=f({canvas:t,preserveDrawingBuffer:!0,premultipliedAlpha:!0});if(!e)return d(this),void(this.stopped=!0);this.canvas=t,this.gl=e}var r=this.canvas;r.style.width=\"100%\",r.style.height=\"100%\",r.style.position=\"absolute\",r.style.top=\"0px\",r.style.left=\"0px\",r.style[\"pointer-events\"]=\"none\",this.updateSize(r);var a=this.svgContainer=document.createElementNS(\"http://www.w3.org/2000/svg\",\"svg\");a.style.position=\"absolute\",a.style.top=a.style.left=\"0px\",a.style.width=a.style.height=\"100%\",a.style[\"z-index\"]=20,a.style[\"pointer-events\"]=\"none\";var o=this.mouseContainer=document.createElement(\"div\");o.style.position=\"absolute\",o.style[\"pointer-events\"]=\"auto\",this.pickCanvas=this.container.querySelector(\".gl-canvas-pick\");var s=this.container;s.appendChild(a),s.appendChild(o);var l=this;o.addEventListener(\"mouseout\",(function(){l.isMouseOver=!1,l.unhover()})),o.addEventListener(\"mouseover\",(function(){l.isMouseOver=!0}))},M.toImage=function(t){t||(t=\"png\"),this.stopped=!0,this.staticPlot&&this.container.appendChild(n),this.updateSize(this.canvas);var e=this.glplot.gl,r=e.drawingBufferWidth,i=e.drawingBufferHeight;e.clearColor(1,1,1,0),e.clear(e.COLOR_BUFFER_BIT|e.DEPTH_BUFFER_BIT),this.glplot.setDirty(),this.glplot.draw(),e.bindFramebuffer(e.FRAMEBUFFER,null);var a=new Uint8Array(r*i*4);e.readPixels(0,0,r,i,e.RGBA,e.UNSIGNED_BYTE,a);for(var o=0,s=i-1;o<s;++o,--s)for(var l=0;l<r;++l)for(var c=0;c<4;++c){var u=a[4*(r*o+l)+c];a[4*(r*o+l)+c]=a[4*(r*s+l)+c],a[4*(r*s+l)+c]=u}var f=document.createElement(\"canvas\");f.width=r,f.height=i;var h,p=f.getContext(\"2d\"),d=p.createImageData(r,i);switch(d.data.set(a),p.putImageData(d,0,0),t){case\"jpeg\":h=f.toDataURL(\"image/jpeg\");break;case\"webp\":h=f.toDataURL(\"image/webp\");break;default:h=f.toDataURL(\"image/png\")}return this.staticPlot&&this.container.removeChild(n),h},M.updateSize=function(t){t||(t=this.canvas);var e=this.pixelRatio,r=this.fullLayout,n=r.width,i=r.height,a=0|Math.ceil(e*n),o=0|Math.ceil(e*i);return t.width===a&&t.height===o||(t.width=a,t.height=o),t},M.computeTickMarks=function(){this.xaxis.setScale(),this.yaxis.setScale();for(var t=[o.calcTicks(this.xaxis),o.calcTicks(this.yaxis)],e=0;e<2;++e)for(var r=0;r<t[e].length;++r)t[e][r].text=t[e][r].text+\"\";return t},M.updateRefs=function(t){this.fullLayout=t;var e=this.id.match(T),r=\"xaxis\"+e[1],n=\"yaxis\"+e[2];this.xaxis=this.fullLayout[r],this.yaxis=this.fullLayout[n]},M.relayoutCallback=function(){var t=this.graphDiv,e=this.xaxis,r=this.yaxis,n=t.layout,i={},o=i[e._name+\".range\"]=e.range.slice(),s=i[r._name+\".range\"]=r.range.slice();i[e._name+\".autorange\"]=e.autorange,i[r._name+\".autorange\"]=r.autorange,a.call(\"_storeDirectGUIEdit\",t.layout,t._fullLayout._preGUI,i);var l=n[e._name];l.range=o,l.autorange=e.autorange;var c=n[r._name];c.range=s,c.autorange=r.autorange,i.lastInputTime=this.camera.lastInputTime,t.emit(\"plotly_relayout\",i)},M.cameraChanged=function(){var t=this.camera;this.glplot.setDataBox(this.calcDataBox());var e=this.computeTickMarks();(function(t,e){for(var r=0;r<2;++r){var n=t[r],i=e[r];if(n.length!==i.length)return!0;for(var a=0;a<n.length;++a)if(n[a].x!==i[a].x)return!0}return!1})(e,this.glplotOptions.ticks)&&(this.glplotOptions.ticks=e,this.glplotOptions.dataBox=t.dataBox,this.glplot.update(this.glplotOptions),this.handleAnnotations())},M.handleAnnotations=function(){for(var t=this.graphDiv,e=this.fullLayout.annotations,r=0;r<e.length;r++){var n=e[r];n.xref===this.xaxis._id&&n.yref===this.yaxis._id&&a.getComponentMethod(\"annotations\",\"drawOne\")(t,r)}},M.destroy=function(){if(this.glplot){var t=this.traces;t&&Object.keys(t).map((function(e){t[e].dispose(),delete t[e]})),this.glplot.dispose(),this.container.removeChild(this.svgContainer),this.container.removeChild(this.mouseContainer),this.fullData=null,this.glplot=null,this.stopped=!0,this.camera.mouseListener.enabled=!1,this.mouseContainer.removeEventListener(\"wheel\",this.camera.wheelListener),this.camera=null}},M.plot=function(t,e,r){var n=this.glplot;this.updateRefs(r),this.xaxis.clearCalc(),this.yaxis.clearCalc(),this.updateTraces(t,e),this.updateFx(r.dragmode);var i=r.width,a=r.height;this.updateSize(this.canvas);var o=this.glplotOptions;o.merge(r),o.screenBox=[0,0,i,a];var s={_fullLayout:{_axisConstraintGroups:this.graphDiv._fullLayout._axisConstraintGroups,xaxis:this.xaxis,yaxis:this.yaxis}};v(s,this.xaxis),v(s,this.yaxis);var l,c,u=r._size,f=this.xaxis.domain,h=this.yaxis.domain;for(o.viewBox=[u.l+f[0]*u.w,u.b+h[0]*u.h,i-u.r-(1-f[1])*u.w,a-u.t-(1-h[1])*u.h],this.mouseContainer.style.width=u.w*(f[1]-f[0])+\"px\",this.mouseContainer.style.height=u.h*(h[1]-h[0])+\"px\",this.mouseContainer.height=u.h*(h[1]-h[0]),this.mouseContainer.style.left=u.l+f[0]*u.w+\"px\",this.mouseContainer.style.top=u.t+(1-h[1])*u.h+\"px\",c=0;c<2;++c)(l=this[w[c]])._length=o.viewBox[c+2]-o.viewBox[c],y(this.graphDiv,l),l.setScale();m(s),o.ticks=this.computeTickMarks(),o.dataBox=this.calcDataBox(),o.merge(r),n.update(o),this.glplot.draw()},M.calcDataBox=function(){var t=this.xaxis,e=this.yaxis,r=t.range,n=e.range,i=t.r2l,a=e.r2l;return[i(r[0]),a(n[0]),i(r[1]),a(n[1])]},M.setRanges=function(t){var e=this.xaxis,r=this.yaxis,n=e.l2r,i=r.l2r;e.range=[n(t[0]),n(t[2])],r.range=[i(t[1]),i(t[3])]},M.updateTraces=function(t,e){var r,n,i,a=Object.keys(this.traces);this.fullData=t;t:for(r=0;r<a.length;r++){var o=a[r],s=this.traces[o];for(n=0;n<t.length;n++)if((i=t[n]).uid===o&&i.type===s.type)continue t;s.dispose(),delete this.traces[o]}for(r=0;r<t.length;r++){i=t[r];var l=e[r],c=this.traces[i.uid];c?c.update(i,l):(c=i._module.plot(this,i,l),this.traces[i.uid]=c)}this.glplot.objects.sort((function(t,e){return t._trace.index-e._trace.index}))},M.updateFx=function(t){_(t)||b(t)?(this.pickCanvas.style[\"pointer-events\"]=\"none\",this.mouseContainer.style[\"pointer-events\"]=\"none\"):(this.pickCanvas.style[\"pointer-events\"]=\"auto\",this.mouseContainer.style[\"pointer-events\"]=\"auto\"),this.mouseContainer.style.cursor=\"pan\"===t?\"move\":\"zoom\"===t?\"crosshair\":null},M.emitPointAction=function(t,e){for(var r,n=t.trace.uid,i=t.pointIndex,a=0;a<this.fullData.length;a++)this.fullData[a].uid===n&&(r=this.fullData[a]);var o={x:t.traceCoord[0],y:t.traceCoord[1],curveNumber:r.index,pointNumber:i,data:r._input,fullData:this.fullData,xaxis:this.xaxis,yaxis:this.yaxis};s.appendArrayPointValue(o,r,i),this.graphDiv.emit(e,{points:[o]})},M.draw=function(){if(!this.stopped){requestAnimationFrame(this.redraw);var t=this.glplot,e=this.camera,r=e.mouseListener,n=1===this.lastButtonState&&0===r.buttons,i=this.fullLayout;this.lastButtonState=r.buttons,this.cameraChanged();var a,o=r.x*t.pixelRatio,l=this.canvas.height-t.pixelRatio*r.y;if(e.boxEnabled&&\"zoom\"===i.dragmode){this.selectBox.enabled=!0;for(var c=this.selectBox.selectBox=[Math.min(e.boxStart[0],e.boxEnd[0]),Math.min(e.boxStart[1],e.boxEnd[1]),Math.max(e.boxStart[0],e.boxEnd[0]),Math.max(e.boxStart[1],e.boxEnd[1])],u=0;u<2;u++)e.boxStart[u]===e.boxEnd[u]&&(c[u]=t.dataBox[u],c[u+2]=t.dataBox[u+2]);t.setDirty()}else if(!e.panning&&this.isMouseOver){this.selectBox.enabled=!1;var f=i._size,h=this.xaxis.domain,p=this.yaxis.domain,d=(a=t.pick(o/t.pixelRatio+f.l+h[0]*f.w,l/t.pixelRatio-(f.t+(1-p[1])*f.h)))&&a.object._trace.handlePick(a);if(d&&n&&this.emitPointAction(d,\"plotly_click\"),a&&\"skip\"!==a.object._trace.hoverinfo&&i.hovermode&&d&&(!this.lastPickResult||this.lastPickResult.traceUid!==d.trace.uid||this.lastPickResult.dataCoord[0]!==d.dataCoord[0]||this.lastPickResult.dataCoord[1]!==d.dataCoord[1])){var g=d;this.lastPickResult={traceUid:d.trace?d.trace.uid:null,dataCoord:d.dataCoord.slice()},this.spikes.update({center:a.dataCoord}),g.screenCoord=[((t.viewBox[2]-t.viewBox[0])*(a.dataCoord[0]-t.dataBox[0])/(t.dataBox[2]-t.dataBox[0])+t.viewBox[0])/t.pixelRatio,(this.canvas.height-(t.viewBox[3]-t.viewBox[1])*(a.dataCoord[1]-t.dataBox[1])/(t.dataBox[3]-t.dataBox[1])-t.viewBox[1])/t.pixelRatio],this.emitPointAction(d,\"plotly_hover\");var m=this.fullData[g.trace.index]||{},v=g.pointIndex,y=s.castHoverinfo(m,i,v);if(y&&\"all\"!==y){var x=y.split(\"+\");-1===x.indexOf(\"x\")&&(g.traceCoord[0]=void 0),-1===x.indexOf(\"y\")&&(g.traceCoord[1]=void 0),-1===x.indexOf(\"z\")&&(g.traceCoord[2]=void 0),-1===x.indexOf(\"text\")&&(g.textLabel=void 0),-1===x.indexOf(\"name\")&&(g.name=void 0)}s.loneHover({x:g.screenCoord[0],y:g.screenCoord[1],xLabel:this.hoverFormatter(\"xaxis\",g.traceCoord[0]),yLabel:this.hoverFormatter(\"yaxis\",g.traceCoord[1]),zLabel:g.traceCoord[2],text:g.textLabel,name:g.name,color:s.castHoverOption(m,v,\"bgcolor\")||g.color,borderColor:s.castHoverOption(m,v,\"bordercolor\"),fontFamily:s.castHoverOption(m,v,\"font.family\"),fontSize:s.castHoverOption(m,v,\"font.size\"),fontColor:s.castHoverOption(m,v,\"font.color\"),nameLength:s.castHoverOption(m,v,\"namelength\"),textAlign:s.castHoverOption(m,v,\"align\")},{container:this.svgContainer,gd:this.graphDiv})}}a||this.unhover(),t.draw()}},M.unhover=function(){this.lastPickResult&&(this.spikes.update({}),this.lastPickResult=null,this.graphDiv.emit(\"plotly_unhover\"),s.loneUnhover(this.svgContainer))},M.hoverFormatter=function(t,e){if(void 0!==e){var r=this[t];return o.tickText(r,r.c2l(e),\"hover\").text}}},{\"../../components/dragelement/helpers\":661,\"../../components/fx\":683,\"../../lib/show_no_webgl_msg\":800,\"../../plots/cartesian/axes\":828,\"../../registry\":911,\"../cartesian/autorange\":827,\"../cartesian/constants\":834,\"../cartesian/constraints\":835,\"./camera\":866,\"./convert\":867,\"gl-plot2d\":317,\"gl-select-box\":333,\"gl-spikes2d\":342,\"webgl-context\":606}],870:[function(t,e,r){\"use strict\";var n=t(\"../../plot_api/edit_types\").overrideAll,i=t(\"../../components/fx/layout_attributes\"),a=t(\"./scene\"),o=t(\"../get_data\").getSubplotData,s=t(\"../../lib\"),l=t(\"../../constants/xmlns_namespaces\");r.name=\"gl3d\",r.attr=\"scene\",r.idRoot=\"scene\",r.idRegex=r.attrRegex=s.counterRegex(\"scene\"),r.attributes=t(\"./layout/attributes\"),r.layoutAttributes=t(\"./layout/layout_attributes\"),r.baseLayoutAttrOverrides=n({hoverlabel:i.hoverlabel},\"plot\",\"nested\"),r.supplyLayoutDefaults=t(\"./layout/defaults\"),r.plot=function(t){for(var e=t._fullLayout,r=t._fullData,n=e._subplots.gl3d,i=0;i<n.length;i++){var s=n[i],l=o(r,\"gl3d\",s),c=e[s],u=c.camera,f=c._scene;f||(f=new a({id:s,graphDiv:t,container:t.querySelector(\".gl-container\"),staticPlot:t._context.staticPlot,plotGlPixelRatio:t._context.plotGlPixelRatio,camera:u},e),c._scene=f),f.viewInitial||(f.viewInitial={up:{x:u.up.x,y:u.up.y,z:u.up.z},eye:{x:u.eye.x,y:u.eye.y,z:u.eye.z},center:{x:u.center.x,y:u.center.y,z:u.center.z}}),f.plot(l,e,t.layout)}},r.clean=function(t,e,r,n){for(var i=n._subplots.gl3d||[],a=0;a<i.length;a++){var o=i[a];!e[o]&&n[o]._scene&&(n[o]._scene.destroy(),n._infolayer&&n._infolayer.selectAll(\".annotation-\"+o).remove())}},r.toSVG=function(t){for(var e=t._fullLayout,r=e._subplots.gl3d,n=e._size,i=0;i<r.length;i++){var a=e[r[i]],o=a.domain,s=a._scene,c=s.toImage(\"png\");e._glimages.append(\"svg:image\").attr({xmlns:l.svg,\"xlink:href\":c,x:n.l+n.w*o.x[0],y:n.t+n.h*(1-o.y[1]),width:n.w*(o.x[1]-o.x[0]),height:n.h*(o.y[1]-o.y[0]),preserveAspectRatio:\"none\"}),s.destroy()}},r.cleanId=function(t){if(t.match(/^scene[0-9]*$/)){var e=t.substr(5);return\"1\"===e&&(e=\"\"),\"scene\"+e}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.gl3d,n=0;n<r.length;n++){e[r[n]]._scene.updateFx(e.dragmode,e.hovermode)}}},{\"../../components/fx/layout_attributes\":684,\"../../constants/xmlns_namespaces\":754,\"../../lib\":778,\"../../plot_api/edit_types\":810,\"../get_data\":865,\"./layout/attributes\":871,\"./layout/defaults\":875,\"./layout/layout_attributes\":876,\"./scene\":880}],871:[function(t,e,r){\"use strict\";e.exports={scene:{valType:\"subplotid\",dflt:\"scene\",editType:\"calc+clearAxisTypes\"}}},{}],872:[function(t,e,r){\"use strict\";var n=t(\"../../../components/color\"),i=t(\"../../cartesian/layout_attributes\"),a=t(\"../../../lib/extend\").extendFlat,o=t(\"../../../plot_api/edit_types\").overrideAll;e.exports=o({visible:i.visible,showspikes:{valType:\"boolean\",dflt:!0},spikesides:{valType:\"boolean\",dflt:!0},spikethickness:{valType:\"number\",min:0,dflt:2},spikecolor:{valType:\"color\",dflt:n.defaultLine},showbackground:{valType:\"boolean\",dflt:!1},backgroundcolor:{valType:\"color\",dflt:\"rgba(204, 204, 204, 0.5)\"},showaxeslabels:{valType:\"boolean\",dflt:!0},color:i.color,categoryorder:i.categoryorder,categoryarray:i.categoryarray,title:{text:i.title.text,font:i.title.font},type:a({},i.type,{values:[\"-\",\"linear\",\"log\",\"date\",\"category\"]}),autotypenumbers:i.autotypenumbers,autorange:i.autorange,rangemode:i.rangemode,range:a({},i.range,{items:[{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}},{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}}],anim:!1}),tickmode:i.tickmode,nticks:i.nticks,tick0:i.tick0,dtick:i.dtick,tickvals:i.tickvals,ticktext:i.ticktext,ticks:i.ticks,mirror:i.mirror,ticklen:i.ticklen,tickwidth:i.tickwidth,tickcolor:i.tickcolor,showticklabels:i.showticklabels,tickfont:i.tickfont,tickangle:i.tickangle,tickprefix:i.tickprefix,showtickprefix:i.showtickprefix,ticksuffix:i.ticksuffix,showticksuffix:i.showticksuffix,showexponent:i.showexponent,exponentformat:i.exponentformat,minexponent:i.minexponent,separatethousands:i.separatethousands,tickformat:i.tickformat,tickformatstops:i.tickformatstops,hoverformat:i.hoverformat,showline:i.showline,linecolor:i.linecolor,linewidth:i.linewidth,showgrid:i.showgrid,gridcolor:a({},i.gridcolor,{dflt:\"rgb(204, 204, 204)\"}),gridwidth:i.gridwidth,zeroline:i.zeroline,zerolinecolor:i.zerolinecolor,zerolinewidth:i.zerolinewidth,_deprecated:{title:i._deprecated.title,titlefont:i._deprecated.titlefont}},\"plot\",\"from-root\")},{\"../../../components/color\":643,\"../../../lib/extend\":768,\"../../../plot_api/edit_types\":810,\"../../cartesian/layout_attributes\":842}],873:[function(t,e,r){\"use strict\";var n=t(\"tinycolor2\").mix,i=t(\"../../../lib\"),a=t(\"../../../plot_api/plot_template\"),o=t(\"./axis_attributes\"),s=t(\"../../cartesian/type_defaults\"),l=t(\"../../cartesian/axis_defaults\"),c=[\"xaxis\",\"yaxis\",\"zaxis\"];e.exports=function(t,e,r){var u,f;function h(t,e){return i.coerce(u,f,o,t,e)}for(var p=0;p<c.length;p++){var d=c[p];u=t[d]||{},(f=a.newContainer(e,d))._id=d[0]+r.scene,f._name=d,s(u,f,h,r),l(u,f,h,{font:r.font,letter:d[0],data:r.data,showGrid:!0,noTickson:!0,noTicklabelmode:!0,noTicklabelposition:!0,bgColor:r.bgColor,calendar:r.calendar},r.fullLayout),h(\"gridcolor\",n(f.color,r.bgColor,13600/187).toRgbString()),h(\"title.text\",d[0]),f.setScale=i.noop,h(\"showspikes\")&&(h(\"spikesides\"),h(\"spikethickness\"),h(\"spikecolor\",f.color)),h(\"showaxeslabels\"),h(\"showbackground\")&&h(\"backgroundcolor\")}}},{\"../../../lib\":778,\"../../../plot_api/plot_template\":817,\"../../cartesian/axis_defaults\":830,\"../../cartesian/type_defaults\":853,\"./axis_attributes\":872,tinycolor2:576}],874:[function(t,e,r){\"use strict\";var n=t(\"../../../lib/str2rgbarray\"),i=t(\"../../../lib\"),a=[\"xaxis\",\"yaxis\",\"zaxis\"];function o(){this.bounds=[[-10,-10,-10],[10,10,10]],this.ticks=[[],[],[]],this.tickEnable=[!0,!0,!0],this.tickFont=[\"sans-serif\",\"sans-serif\",\"sans-serif\"],this.tickSize=[12,12,12],this.tickAngle=[0,0,0],this.tickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.tickPad=[18,18,18],this.labels=[\"x\",\"y\",\"z\"],this.labelEnable=[!0,!0,!0],this.labelFont=[\"Open Sans\",\"Open Sans\",\"Open Sans\"],this.labelSize=[20,20,20],this.labelColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.labelPad=[30,30,30],this.lineEnable=[!0,!0,!0],this.lineMirror=[!1,!1,!1],this.lineWidth=[1,1,1],this.lineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.lineTickEnable=[!0,!0,!0],this.lineTickMirror=[!1,!1,!1],this.lineTickLength=[10,10,10],this.lineTickWidth=[1,1,1],this.lineTickColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.gridEnable=[!0,!0,!0],this.gridWidth=[1,1,1],this.gridColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroEnable=[!0,!0,!0],this.zeroLineColor=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.zeroLineWidth=[2,2,2],this.backgroundEnable=[!0,!0,!0],this.backgroundColor=[[.8,.8,.8,.5],[.8,.8,.8,.5],[.8,.8,.8,.5]],this._defaultTickPad=this.tickPad.slice(),this._defaultLabelPad=this.labelPad.slice(),this._defaultLineTickLength=this.lineTickLength.slice()}o.prototype.merge=function(t,e){for(var r=0;r<3;++r){var o=e[a[r]];o.visible?(this.labels[r]=t._meta?i.templateString(o.title.text,t._meta):o.title.text,\"font\"in o.title&&(o.title.font.color&&(this.labelColor[r]=n(o.title.font.color)),o.title.font.family&&(this.labelFont[r]=o.title.font.family),o.title.font.size&&(this.labelSize[r]=o.title.font.size)),\"showline\"in o&&(this.lineEnable[r]=o.showline),\"linecolor\"in o&&(this.lineColor[r]=n(o.linecolor)),\"linewidth\"in o&&(this.lineWidth[r]=o.linewidth),\"showgrid\"in o&&(this.gridEnable[r]=o.showgrid),\"gridcolor\"in o&&(this.gridColor[r]=n(o.gridcolor)),\"gridwidth\"in o&&(this.gridWidth[r]=o.gridwidth),\"log\"===o.type?this.zeroEnable[r]=!1:\"zeroline\"in o&&(this.zeroEnable[r]=o.zeroline),\"zerolinecolor\"in o&&(this.zeroLineColor[r]=n(o.zerolinecolor)),\"zerolinewidth\"in o&&(this.zeroLineWidth[r]=o.zerolinewidth),\"ticks\"in o&&o.ticks?this.lineTickEnable[r]=!0:this.lineTickEnable[r]=!1,\"ticklen\"in o&&(this.lineTickLength[r]=this._defaultLineTickLength[r]=o.ticklen),\"tickcolor\"in o&&(this.lineTickColor[r]=n(o.tickcolor)),\"tickwidth\"in o&&(this.lineTickWidth[r]=o.tickwidth),\"tickangle\"in o&&(this.tickAngle[r]=\"auto\"===o.tickangle?-3600:Math.PI*-o.tickangle/180),\"showticklabels\"in o&&(this.tickEnable[r]=o.showticklabels),\"tickfont\"in o&&(o.tickfont.color&&(this.tickColor[r]=n(o.tickfont.color)),o.tickfont.family&&(this.tickFont[r]=o.tickfont.family),o.tickfont.size&&(this.tickSize[r]=o.tickfont.size)),\"mirror\"in o?-1!==[\"ticks\",\"all\",\"allticks\"].indexOf(o.mirror)?(this.lineTickMirror[r]=!0,this.lineMirror[r]=!0):!0===o.mirror?(this.lineTickMirror[r]=!1,this.lineMirror[r]=!0):(this.lineTickMirror[r]=!1,this.lineMirror[r]=!1):this.lineMirror[r]=!1,\"showbackground\"in o&&!1!==o.showbackground?(this.backgroundEnable[r]=!0,this.backgroundColor[r]=n(o.backgroundcolor)):this.backgroundEnable[r]=!1):(this.tickEnable[r]=!1,this.labelEnable[r]=!1,this.lineEnable[r]=!1,this.lineTickEnable[r]=!1,this.gridEnable[r]=!1,this.zeroEnable[r]=!1,this.backgroundEnable[r]=!1)}},e.exports=function(t,e){var r=new o;return r.merge(t,e),r}},{\"../../../lib\":778,\"../../../lib/str2rgbarray\":802}],875:[function(t,e,r){\"use strict\";var n=t(\"../../../lib\"),i=t(\"../../../components/color\"),a=t(\"../../../registry\"),o=t(\"../../subplot_defaults\"),s=t(\"./axis_defaults\"),l=t(\"./layout_attributes\"),c=t(\"../../get_data\").getSubplotData;function u(t,e,r,n){for(var o=r(\"bgcolor\"),l=i.combine(o,n.paper_bgcolor),u=[\"up\",\"center\",\"eye\"],f=0;f<u.length;f++)r(\"camera.\"+u[f]+\".x\"),r(\"camera.\"+u[f]+\".y\"),r(\"camera.\"+u[f]+\".z\");r(\"camera.projection.type\");var h=!!r(\"aspectratio.x\")&&!!r(\"aspectratio.y\")&&!!r(\"aspectratio.z\"),p=r(\"aspectmode\",h?\"manual\":\"auto\");h||(t.aspectratio=e.aspectratio={x:1,y:1,z:1},\"manual\"===p&&(e.aspectmode=\"auto\"),t.aspectmode=e.aspectmode);var d=c(n.fullData,\"gl3d\",n.id);s(t,e,{font:n.font,scene:n.id,data:d,bgColor:l,calendar:n.calendar,autotypenumbersDflt:n.autotypenumbersDflt,fullLayout:n.fullLayout}),a.getComponentMethod(\"annotations3d\",\"handleDefaults\")(t,e,n);var g=n.getDfltFromLayout(\"dragmode\");if(!1!==g&&!g)if(g=\"orbit\",t.camera&&t.camera.up){var m=t.camera.up.x,v=t.camera.up.y,y=t.camera.up.z;0!==y&&(m&&v&&y?y/Math.sqrt(m*m+v*v+y*y)>.999&&(g=\"turntable\"):g=\"turntable\")}else g=\"turntable\";r(\"dragmode\",g),r(\"hovermode\",n.getDfltFromLayout(\"hovermode\"))}e.exports=function(t,e,r){var i=e._basePlotModules.length>1;o(t,e,r,{type:\"gl3d\",attributes:l,handleDefaults:u,fullLayout:e,font:e.font,fullData:r,getDfltFromLayout:function(e){if(!i)return n.validate(t[e],l[e])?t[e]:void 0},autotypenumbersDflt:e.autotypenumbers,paper_bgcolor:e.paper_bgcolor,calendar:e.calendar})}},{\"../../../components/color\":643,\"../../../lib\":778,\"../../../registry\":911,\"../../get_data\":865,\"../../subplot_defaults\":905,\"./axis_defaults\":873,\"./layout_attributes\":876}],876:[function(t,e,r){\"use strict\";var n=t(\"./axis_attributes\"),i=t(\"../../domain\").attributes,a=t(\"../../../lib/extend\").extendFlat,o=t(\"../../../lib\").counterRegex;function s(t,e,r){return{x:{valType:\"number\",dflt:t,editType:\"camera\"},y:{valType:\"number\",dflt:e,editType:\"camera\"},z:{valType:\"number\",dflt:r,editType:\"camera\"},editType:\"camera\"}}e.exports={_arrayAttrRegexps:[o(\"scene\",\".annotations\",!0)],bgcolor:{valType:\"color\",dflt:\"rgba(0,0,0,0)\",editType:\"plot\"},camera:{up:a(s(0,0,1),{}),center:a(s(0,0,0),{}),eye:a(s(1.25,1.25,1.25),{}),projection:{type:{valType:\"enumerated\",values:[\"perspective\",\"orthographic\"],dflt:\"perspective\",editType:\"calc\"},editType:\"calc\"},editType:\"camera\"},domain:i({name:\"scene\",editType:\"plot\"}),aspectmode:{valType:\"enumerated\",values:[\"auto\",\"cube\",\"data\",\"manual\"],dflt:\"auto\",editType:\"plot\",impliedEdits:{\"aspectratio.x\":void 0,\"aspectratio.y\":void 0,\"aspectratio.z\":void 0}},aspectratio:{x:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},y:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},z:{valType:\"number\",min:0,editType:\"plot\",impliedEdits:{\"^aspectmode\":\"manual\"}},editType:\"plot\",impliedEdits:{aspectmode:\"manual\"}},xaxis:n,yaxis:n,zaxis:n,dragmode:{valType:\"enumerated\",values:[\"orbit\",\"turntable\",\"zoom\",\"pan\",!1],editType:\"plot\"},hovermode:{valType:\"enumerated\",values:[\"closest\",!1],dflt:\"closest\",editType:\"modebar\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"plot\",_deprecated:{cameraposition:{valType:\"info_array\",editType:\"camera\"}}}},{\"../../../lib\":778,\"../../../lib/extend\":768,\"../../domain\":855,\"./axis_attributes\":872}],877:[function(t,e,r){\"use strict\";var n=t(\"../../../lib/str2rgbarray\"),i=[\"xaxis\",\"yaxis\",\"zaxis\"];function a(){this.enabled=[!0,!0,!0],this.colors=[[0,0,0,1],[0,0,0,1],[0,0,0,1]],this.drawSides=[!0,!0,!0],this.lineWidth=[1,1,1]}a.prototype.merge=function(t){for(var e=0;e<3;++e){var r=t[i[e]];r.visible?(this.enabled[e]=r.showspikes,this.colors[e]=n(r.spikecolor),this.drawSides[e]=r.spikesides,this.lineWidth[e]=r.spikethickness):(this.enabled[e]=!1,this.drawSides[e]=!1)}},e.exports=function(t){var e=new a;return e.merge(t),e}},{\"../../../lib/str2rgbarray\":802}],878:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=t.axesOptions,r=t.glplot.axesPixels,s=t.fullSceneLayout,l=[[],[],[]],c=0;c<3;++c){var u=s[a[c]];if(u._length=(r[c].hi-r[c].lo)*r[c].pixelsPerDataUnit/t.dataScale[c],Math.abs(u._length)===1/0||isNaN(u._length))l[c]=[];else{u._input_range=u.range.slice(),u.range[0]=r[c].lo/t.dataScale[c],u.range[1]=r[c].hi/t.dataScale[c],u._m=1/(t.dataScale[c]*r[c].pixelsPerDataUnit),u.range[0]===u.range[1]&&(u.range[0]-=1,u.range[1]+=1);var f=u.tickmode;if(\"auto\"===u.tickmode){u.tickmode=\"linear\";var h=u.nticks||i.constrain(u._length/40,4,9);n.autoTicks(u,Math.abs(u.range[1]-u.range[0])/h)}for(var p=n.calcTicks(u,{msUTC:!0}),d=0;d<p.length;++d)p[d].x=p[d].x*t.dataScale[c],\"date\"===u.type&&(p[d].text=p[d].text.replace(/\\<br\\>/g,\" \"));l[c]=p,u.tickmode=f}}e.ticks=l;for(c=0;c<3;++c){o[c]=.5*(t.glplot.bounds[0][c]+t.glplot.bounds[1][c]);for(d=0;d<2;++d)e.bounds[d][c]=t.glplot.bounds[d][c]}t.contourLevels=function(t){for(var e=new Array(3),r=0;r<3;++r){for(var n=t[r],i=new Array(n.length),a=0;a<n.length;++a)i[a]=n[a].x;e[r]=i}return e}(l)};var n=t(\"../../cartesian/axes\"),i=t(\"../../../lib\"),a=[\"xaxis\",\"yaxis\",\"zaxis\"],o=[0,0,0]},{\"../../../lib\":778,\"../../cartesian/axes\":828}],879:[function(t,e,r){\"use strict\";function n(t,e){var r,n,i=[0,0,0,0];for(r=0;r<4;++r)for(n=0;n<4;++n)i[n]+=t[4*r+n]*e[r];return i}e.exports=function(t,e){return n(t.projection,n(t.view,n(t.model,[e[0],e[1],e[2],1])))}},{}],880:[function(t,e,r){\"use strict\";var n,i,a=t(\"gl-plot3d\"),o=a.createCamera,s=a.createScene,l=t(\"webgl-context\"),c=t(\"has-passive-events\"),u=t(\"../../registry\"),f=t(\"../../lib\"),h=f.preserveDrawingBuffer(),p=t(\"../../plots/cartesian/axes\"),d=t(\"../../components/fx\"),g=t(\"../../lib/str2rgbarray\"),m=t(\"../../lib/show_no_webgl_msg\"),v=t(\"./project\"),y=t(\"./layout/convert\"),x=t(\"./layout/spikes\"),b=t(\"./layout/tick_marks\");function _(t,e){var r=document.createElement(\"div\"),n=t.container;this.graphDiv=t.graphDiv;var i=document.createElementNS(\"http://www.w3.org/2000/svg\",\"svg\");i.style.position=\"absolute\",i.style.top=i.style.left=\"0px\",i.style.width=i.style.height=\"100%\",i.style[\"z-index\"]=20,i.style[\"pointer-events\"]=\"none\",r.appendChild(i),this.svgContainer=i,r.id=t.id,r.style.position=\"absolute\",r.style.top=r.style.left=\"0px\",r.style.width=r.style.height=\"100%\",n.appendChild(r),this.fullLayout=e,this.id=t.id||\"scene\",this.fullSceneLayout=e[this.id],this.plotArgs=[[],{},{}],this.axesOptions=y(e,e[this.id]),this.spikeOptions=x(e[this.id]),this.container=r,this.staticMode=!!t.staticPlot,this.pixelRatio=this.pixelRatio||t.plotGlPixelRatio||2,this.dataScale=[1,1,1],this.contourLevels=[[],[],[]],this.convertAnnotations=u.getComponentMethod(\"annotations3d\",\"convert\"),this.drawAnnotations=u.getComponentMethod(\"annotations3d\",\"draw\"),this.initializeGLPlot()}var w=_.prototype;w.prepareOptions=function(){var t={canvas:this.canvas,gl:this.gl,glOptions:{preserveDrawingBuffer:h,premultipliedAlpha:!0,antialias:!0},container:this.container,axes:this.axesOptions,spikes:this.spikeOptions,pickRadius:10,snapToData:!0,autoScale:!0,autoBounds:!1,cameraObject:this.camera,pixelRatio:this.pixelRatio};if(this.staticMode){if(!(i||(n=document.createElement(\"canvas\"),i=l({canvas:n,preserveDrawingBuffer:!0,premultipliedAlpha:!0,antialias:!0}))))throw new Error(\"error creating static canvas/context for image server\");t.gl=i,t.canvas=n}return t};var T=!0;w.tryCreatePlot=function(){var t=this.prepareOptions(),e=!0;try{this.glplot=s(t)}catch(r){if(this.staticMode||!T||h)e=!1;else{f.warn([\"webgl setup failed possibly due to\",\"false preserveDrawingBuffer config.\",\"The mobile/tablet device may not be detected by is-mobile module.\",\"Enabling preserveDrawingBuffer in second attempt to create webgl scene...\"].join(\" \"));try{h=t.glOptions.preserveDrawingBuffer=!0,this.glplot=s(t)}catch(r){h=t.glOptions.preserveDrawingBuffer=!1,e=!1}}}return T=!1,e},w.initializeGLCamera=function(){var t=this.fullSceneLayout.camera,e=\"orthographic\"===t.projection.type;this.camera=o(this.container,{center:[t.center.x,t.center.y,t.center.z],eye:[t.eye.x,t.eye.y,t.eye.z],up:[t.up.x,t.up.y,t.up.z],_ortho:e,zoomMin:.01,zoomMax:100,mode:\"orbit\"})},w.initializeGLPlot=function(){var t=this;if(t.initializeGLCamera(),!t.tryCreatePlot())return m(t);t.traces={},t.make4thDimension();var e=t.graphDiv,r=e.layout,n=function(){var e={};return t.isCameraChanged(r)&&(e[t.id+\".camera\"]=t.getCamera()),t.isAspectChanged(r)&&(e[t.id+\".aspectratio\"]=t.glplot.getAspectratio(),\"manual\"!==r[t.id].aspectmode&&(t.fullSceneLayout.aspectmode=r[t.id].aspectmode=e[t.id+\".aspectmode\"]=\"manual\")),e},i=function(t){if(!1!==t.fullSceneLayout.dragmode){var e=n();t.saveLayout(r),t.graphDiv.emit(\"plotly_relayout\",e)}};return t.glplot.canvas&&(t.glplot.canvas.addEventListener(\"mouseup\",(function(){i(t)})),t.glplot.canvas.addEventListener(\"wheel\",(function(r){if(e._context._scrollZoom.gl3d){if(t.camera._ortho){var n=r.deltaX>r.deltaY?1.1:1/1.1,a=t.glplot.getAspectratio();t.glplot.setAspectratio({x:n*a.x,y:n*a.y,z:n*a.z})}i(t)}}),!!c&&{passive:!1}),t.glplot.canvas.addEventListener(\"mousemove\",(function(){if(!1!==t.fullSceneLayout.dragmode&&0!==t.camera.mouseListener.buttons){var e=n();t.graphDiv.emit(\"plotly_relayouting\",e)}})),t.staticMode||t.glplot.canvas.addEventListener(\"webglcontextlost\",(function(r){e&&e.emit&&e.emit(\"plotly_webglcontextlost\",{event:r,layer:t.id})}),!1)),t.glplot.oncontextloss=function(){t.recoverContext()},t.glplot.onrender=function(){t.render()},!0},w.render=function(){var t,e=this,r=e.graphDiv,n=e.svgContainer,i=e.container.getBoundingClientRect();r._fullLayout._calcInverseTransform(r);var a=r._fullLayout._invScaleX,o=r._fullLayout._invScaleY,s=i.width*a,l=i.height*o;n.setAttributeNS(null,\"viewBox\",\"0 0 \"+s+\" \"+l),n.setAttributeNS(null,\"width\",s),n.setAttributeNS(null,\"height\",l),b(e),e.glplot.axes.update(e.axesOptions);for(var c,u=Object.keys(e.traces),h=null,g=e.glplot.selection,m=0;m<u.length;++m)\"skip\"!==(t=e.traces[u[m]]).data.hoverinfo&&t.handlePick(g)&&(h=t),t.setContourLevels&&t.setContourLevels();function y(t,r){var n=e.fullSceneLayout[t];return p.tickText(n,n.d2l(r),\"hover\").text}if(null!==h){var x=v(e.glplot.cameraParams,g.dataCoordinate);t=h.data;var _,w=r._fullData[t.index],T=g.index,k={xLabel:y(\"xaxis\",g.traceCoordinate[0]),yLabel:y(\"yaxis\",g.traceCoordinate[1]),zLabel:y(\"zaxis\",g.traceCoordinate[2])},M=d.castHoverinfo(w,e.fullLayout,T),A=(M||\"\").split(\"+\"),S=M&&\"all\"===M;w.hovertemplate||S||(-1===A.indexOf(\"x\")&&(k.xLabel=void 0),-1===A.indexOf(\"y\")&&(k.yLabel=void 0),-1===A.indexOf(\"z\")&&(k.zLabel=void 0),-1===A.indexOf(\"text\")&&(g.textLabel=void 0),-1===A.indexOf(\"name\")&&(h.name=void 0));var E=[];\"cone\"===t.type||\"streamtube\"===t.type?(k.uLabel=y(\"xaxis\",g.traceCoordinate[3]),(S||-1!==A.indexOf(\"u\"))&&E.push(\"u: \"+k.uLabel),k.vLabel=y(\"yaxis\",g.traceCoordinate[4]),(S||-1!==A.indexOf(\"v\"))&&E.push(\"v: \"+k.vLabel),k.wLabel=y(\"zaxis\",g.traceCoordinate[5]),(S||-1!==A.indexOf(\"w\"))&&E.push(\"w: \"+k.wLabel),k.normLabel=g.traceCoordinate[6].toPrecision(3),(S||-1!==A.indexOf(\"norm\"))&&E.push(\"norm: \"+k.normLabel),\"streamtube\"===t.type&&(k.divergenceLabel=g.traceCoordinate[7].toPrecision(3),(S||-1!==A.indexOf(\"divergence\"))&&E.push(\"divergence: \"+k.divergenceLabel)),g.textLabel&&E.push(g.textLabel),_=E.join(\"<br>\")):\"isosurface\"===t.type||\"volume\"===t.type?(k.valueLabel=p.tickText(e._mockAxis,e._mockAxis.d2l(g.traceCoordinate[3]),\"hover\").text,E.push(\"value: \"+k.valueLabel),g.textLabel&&E.push(g.textLabel),_=E.join(\"<br>\")):_=g.textLabel;var C={x:g.traceCoordinate[0],y:g.traceCoordinate[1],z:g.traceCoordinate[2],data:w._input,fullData:w,curveNumber:w.index,pointNumber:T};d.appendArrayPointValue(C,w,T),t._module.eventData&&(C=w._module.eventData(C,g,w,{},T));var L={points:[C]};e.fullSceneLayout.hovermode&&d.loneHover({trace:w,x:(.5+.5*x[0]/x[3])*s,y:(.5-.5*x[1]/x[3])*l,xLabel:k.xLabel,yLabel:k.yLabel,zLabel:k.zLabel,text:_,name:h.name,color:d.castHoverOption(w,T,\"bgcolor\")||h.color,borderColor:d.castHoverOption(w,T,\"bordercolor\"),fontFamily:d.castHoverOption(w,T,\"font.family\"),fontSize:d.castHoverOption(w,T,\"font.size\"),fontColor:d.castHoverOption(w,T,\"font.color\"),nameLength:d.castHoverOption(w,T,\"namelength\"),textAlign:d.castHoverOption(w,T,\"align\"),hovertemplate:f.castOption(w,T,\"hovertemplate\"),hovertemplateLabels:f.extendFlat({},C,k),eventData:[C]},{container:n,gd:r}),g.buttons&&g.distance<5?r.emit(\"plotly_click\",L):r.emit(\"plotly_hover\",L),c=L}else d.loneUnhover(n),r.emit(\"plotly_unhover\",c);e.drawAnnotations(e)},w.recoverContext=function(){var t=this;t.glplot.dispose();var e=function(){t.glplot.gl.isContextLost()?requestAnimationFrame(e):t.initializeGLPlot()?t.plot.apply(t,t.plotArgs):f.error(\"Catastrophic and unrecoverable WebGL error. Context lost.\")};requestAnimationFrame(e)};var k=[\"xaxis\",\"yaxis\",\"zaxis\"];function M(t,e,r){for(var n=t.fullSceneLayout,i=0;i<3;i++){var a=k[i],o=a.charAt(0),s=n[a],l=e[o],c=e[o+\"calendar\"],u=e[\"_\"+o+\"length\"];if(f.isArrayOrTypedArray(l))for(var h,p=0;p<(u||l.length);p++)if(f.isArrayOrTypedArray(l[p]))for(var d=0;d<l[p].length;++d)h=s.d2l(l[p][d],0,c),!isNaN(h)&&isFinite(h)&&(r[0][i]=Math.min(r[0][i],h),r[1][i]=Math.max(r[1][i],h));else h=s.d2l(l[p],0,c),!isNaN(h)&&isFinite(h)&&(r[0][i]=Math.min(r[0][i],h),r[1][i]=Math.max(r[1][i],h));else r[0][i]=Math.min(r[0][i],0),r[1][i]=Math.max(r[1][i],u-1)}}w.plot=function(t,e,r){if(this.plotArgs=[t,e,r],!this.glplot.contextLost){var n,i,a,o,s,l,c=e[this.id],u=r[this.id];this.fullLayout=e,this.fullSceneLayout=c,this.axesOptions.merge(e,c),this.spikeOptions.merge(c),this.setViewport(c),this.updateFx(c.dragmode,c.hovermode),this.camera.enableWheel=this.graphDiv._context._scrollZoom.gl3d,this.glplot.setClearColor(g(c.bgcolor)),this.setConvert(s),t?Array.isArray(t)||(t=[t]):t=[];var f=[[1/0,1/0,1/0],[-1/0,-1/0,-1/0]];for(a=0;a<t.length;++a)!0===(n=t[a]).visible&&0!==n._length&&M(this,n,f);!function(t,e){for(var r=t.fullSceneLayout,n=r.annotations||[],i=0;i<3;i++)for(var a=k[i],o=a.charAt(0),s=r[a],l=0;l<n.length;l++){var c=n[l];if(c.visible){var u=s.r2l(c[o]);!isNaN(u)&&isFinite(u)&&(e[0][i]=Math.min(e[0][i],u),e[1][i]=Math.max(e[1][i],u))}}}(this,f);var h=[1,1,1];for(o=0;o<3;++o)f[1][o]===f[0][o]?h[o]=1:h[o]=1/(f[1][o]-f[0][o]);for(this.dataScale=h,this.convertAnnotations(this),a=0;a<t.length;++a)!0===(n=t[a]).visible&&0!==n._length&&((i=this.traces[n.uid])?i.data.type===n.type?i.update(n):(i.dispose(),i=n._module.plot(this,n),this.traces[n.uid]=i):(i=n._module.plot(this,n),this.traces[n.uid]=i),i.name=n.name);var p=Object.keys(this.traces);t:for(a=0;a<p.length;++a){for(o=0;o<t.length;++o)if(t[o].uid===p[a]&&!0===t[o].visible&&0!==t[o]._length)continue t;(i=this.traces[p[a]]).dispose(),delete this.traces[p[a]]}this.glplot.objects.sort((function(t,e){return t._trace.data.index-e._trace.data.index}));var d,m=[[0,0,0],[0,0,0]],v=[],y={};for(a=0;a<3;++a){if((l=(s=c[k[a]]).type)in y?(y[l].acc*=h[a],y[l].count+=1):y[l]={acc:h[a],count:1},s.autorange){m[0][a]=1/0,m[1][a]=-1/0;var x=this.glplot.objects,b=this.fullSceneLayout.annotations||[],_=s._name.charAt(0);for(o=0;o<x.length;o++){var w=x[o],T=w.bounds,A=w._trace.data._pad||0;\"ErrorBars\"===w.constructor.name&&s._lowerLogErrorBound?m[0][a]=Math.min(m[0][a],s._lowerLogErrorBound):m[0][a]=Math.min(m[0][a],T[0][a]/h[a]-A),m[1][a]=Math.max(m[1][a],T[1][a]/h[a]+A)}for(o=0;o<b.length;o++){var S=b[o];if(S.visible){var E=s.r2l(S[_]);m[0][a]=Math.min(m[0][a],E),m[1][a]=Math.max(m[1][a],E)}}if(\"rangemode\"in s&&\"tozero\"===s.rangemode&&(m[0][a]=Math.min(m[0][a],0),m[1][a]=Math.max(m[1][a],0)),m[0][a]>m[1][a])m[0][a]=-1,m[1][a]=1;else{var C=m[1][a]-m[0][a];m[0][a]-=C/32,m[1][a]+=C/32}if(\"reversed\"===s.autorange){var L=m[0][a];m[0][a]=m[1][a],m[1][a]=L}}else{var I=s.range;m[0][a]=s.r2l(I[0]),m[1][a]=s.r2l(I[1])}m[0][a]===m[1][a]&&(m[0][a]-=1,m[1][a]+=1),v[a]=m[1][a]-m[0][a],this.glplot.setBounds(a,{min:m[0][a]*h[a],max:m[1][a]*h[a]})}var P=c.aspectmode;if(\"cube\"===P)d=[1,1,1];else if(\"manual\"===P){var z=c.aspectratio;d=[z.x,z.y,z.z]}else{if(\"auto\"!==P&&\"data\"!==P)throw new Error(\"scene.js aspectRatio was not one of the enumerated types\");var O=[1,1,1];for(a=0;a<3;++a){var D=y[l=(s=c[k[a]]).type];O[a]=Math.pow(D.acc,1/D.count)/h[a]}d=\"data\"===P||Math.max.apply(null,O)/Math.min.apply(null,O)<=4?O:[1,1,1]}c.aspectratio.x=u.aspectratio.x=d[0],c.aspectratio.y=u.aspectratio.y=d[1],c.aspectratio.z=u.aspectratio.z=d[2],this.glplot.setAspectratio(c.aspectratio),this.viewInitial.aspectratio||(this.viewInitial.aspectratio={x:c.aspectratio.x,y:c.aspectratio.y,z:c.aspectratio.z}),this.viewInitial.aspectmode||(this.viewInitial.aspectmode=c.aspectmode);var R=c.domain||null,F=e._size||null;if(R&&F){var B=this.container.style;B.position=\"absolute\",B.left=F.l+R.x[0]*F.w+\"px\",B.top=F.t+(1-R.y[1])*F.h+\"px\",B.width=F.w*(R.x[1]-R.x[0])+\"px\",B.height=F.h*(R.y[1]-R.y[0])+\"px\"}this.glplot.redraw()}},w.destroy=function(){this.glplot&&(this.camera.mouseListener.enabled=!1,this.container.removeEventListener(\"wheel\",this.camera.wheelListener),this.camera=null,this.glplot.dispose(),this.container.parentNode.removeChild(this.container),this.glplot=null)},w.getCamera=function(){var t;return this.camera.view.recalcMatrix(this.camera.view.lastT()),{up:{x:(t=this.camera).up[0],y:t.up[1],z:t.up[2]},center:{x:t.center[0],y:t.center[1],z:t.center[2]},eye:{x:t.eye[0],y:t.eye[1],z:t.eye[2]},projection:{type:!0===t._ortho?\"orthographic\":\"perspective\"}}},w.setViewport=function(t){var e,r=t.camera;this.camera.lookAt.apply(this,[[(e=r).eye.x,e.eye.y,e.eye.z],[e.center.x,e.center.y,e.center.z],[e.up.x,e.up.y,e.up.z]]),this.glplot.setAspectratio(t.aspectratio),\"orthographic\"===r.projection.type!==this.camera._ortho&&(this.glplot.redraw(),this.glplot.clearRGBA(),this.glplot.dispose(),this.initializeGLPlot())},w.isCameraChanged=function(t){var e=this.getCamera(),r=f.nestedProperty(t,this.id+\".camera\").get();function n(t,e,r,n){var i=[\"up\",\"center\",\"eye\"],a=[\"x\",\"y\",\"z\"];return e[i[r]]&&t[i[r]][a[n]]===e[i[r]][a[n]]}var i=!1;if(void 0===r)i=!0;else{for(var a=0;a<3;a++)for(var o=0;o<3;o++)if(!n(e,r,a,o)){i=!0;break}(!r.projection||e.projection&&e.projection.type!==r.projection.type)&&(i=!0)}return i},w.isAspectChanged=function(t){var e=this.glplot.getAspectratio(),r=f.nestedProperty(t,this.id+\".aspectratio\").get();return void 0===r||r.x!==e.x||r.y!==e.y||r.z!==e.z},w.saveLayout=function(t){var e,r,n,i,a,o,s=this.fullLayout,l=this.isCameraChanged(t),c=this.isAspectChanged(t),h=l||c;if(h){var p={};if(l&&(e=this.getCamera(),n=(r=f.nestedProperty(t,this.id+\".camera\")).get(),p[this.id+\".camera\"]=n),c&&(i=this.glplot.getAspectratio(),o=(a=f.nestedProperty(t,this.id+\".aspectratio\")).get(),p[this.id+\".aspectratio\"]=o),u.call(\"_storeDirectGUIEdit\",t,s._preGUI,p),l)r.set(e),f.nestedProperty(s,this.id+\".camera\").set(e);if(c)a.set(i),f.nestedProperty(s,this.id+\".aspectratio\").set(i),this.glplot.redraw()}return h},w.updateFx=function(t,e){var r=this.camera;if(r)if(\"orbit\"===t)r.mode=\"orbit\",r.keyBindingMode=\"rotate\";else if(\"turntable\"===t){r.up=[0,0,1],r.mode=\"turntable\",r.keyBindingMode=\"rotate\";var n=this.graphDiv,i=n._fullLayout,a=this.fullSceneLayout.camera,o=a.up.x,s=a.up.y,l=a.up.z;if(l/Math.sqrt(o*o+s*s+l*l)<.999){var c=this.id+\".camera.up\",h={x:0,y:0,z:1},p={};p[c]=h;var d=n.layout;u.call(\"_storeDirectGUIEdit\",d,i._preGUI,p),a.up=h,f.nestedProperty(d,c).set(h)}}else r.keyBindingMode=t;this.fullSceneLayout.hovermode=e},w.toImage=function(t){t||(t=\"png\"),this.staticMode&&this.container.appendChild(n),this.glplot.redraw();var e=this.glplot.gl,r=e.drawingBufferWidth,i=e.drawingBufferHeight;e.bindFramebuffer(e.FRAMEBUFFER,null);var a=new Uint8Array(r*i*4);e.readPixels(0,0,r,i,e.RGBA,e.UNSIGNED_BYTE,a),function(t,e,r){for(var n=0,i=r-1;n<i;++n,--i)for(var a=0;a<e;++a)for(var o=0;o<4;++o){var s=4*(e*n+a)+o,l=4*(e*i+a)+o,c=t[s];t[s]=t[l],t[l]=c}}(a,r,i),function(t,e,r){for(var n=0;n<r;++n)for(var i=0;i<e;++i){var a=4*(e*n+i),o=t[a+3];if(o>0)for(var s=255/o,l=0;l<3;++l)t[a+l]=Math.min(s*t[a+l],255)}}(a,r,i);var o=document.createElement(\"canvas\");o.width=r,o.height=i;var s,l=o.getContext(\"2d\"),c=l.createImageData(r,i);switch(c.data.set(a),l.putImageData(c,0,0),t){case\"jpeg\":s=o.toDataURL(\"image/jpeg\");break;case\"webp\":s=o.toDataURL(\"image/webp\");break;default:s=o.toDataURL(\"image/png\")}return this.staticMode&&this.container.removeChild(n),s},w.setConvert=function(){for(var t=0;t<3;t++){var e=this.fullSceneLayout[k[t]];p.setConvert(e,this.fullLayout),e.setScale=f.noop}},w.make4thDimension=function(){var t=this.graphDiv._fullLayout;this._mockAxis={type:\"linear\",showexponent:\"all\",exponentformat:\"B\"},p.setConvert(this._mockAxis,t)},e.exports=_},{\"../../components/fx\":683,\"../../lib\":778,\"../../lib/show_no_webgl_msg\":800,\"../../lib/str2rgbarray\":802,\"../../plots/cartesian/axes\":828,\"../../registry\":911,\"./layout/convert\":874,\"./layout/spikes\":877,\"./layout/tick_marks\":878,\"./project\":879,\"gl-plot3d\":321,\"has-passive-events\":441,\"webgl-context\":606}],881:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){n=n||t.length;for(var i=new Array(n),a=0;a<n;a++)i[a]=[t[a],e[a],r[a]];return i}},{}],882:[function(t,e,r){\"use strict\";var n=t(\"./font_attributes\"),i=t(\"./animation_attributes\"),a=t(\"../components/color/attributes\"),o=t(\"../components/shapes/draw_newshape/attributes\"),s=t(\"./pad_attributes\"),l=t(\"../lib/extend\").extendFlat,c=n({editType:\"calc\"});c.family.dflt='\"Open Sans\", verdana, arial, sans-serif',c.size.dflt=12,c.color.dflt=a.defaultLine,e.exports={font:c,title:{text:{valType:\"string\",editType:\"layoutstyle\"},font:n({editType:\"layoutstyle\"}),xref:{valType:\"enumerated\",dflt:\"container\",values:[\"container\",\"paper\"],editType:\"layoutstyle\"},yref:{valType:\"enumerated\",dflt:\"container\",values:[\"container\",\"paper\"],editType:\"layoutstyle\"},x:{valType:\"number\",min:0,max:1,dflt:.5,editType:\"layoutstyle\"},y:{valType:\"number\",min:0,max:1,dflt:\"auto\",editType:\"layoutstyle\"},xanchor:{valType:\"enumerated\",dflt:\"auto\",values:[\"auto\",\"left\",\"center\",\"right\"],editType:\"layoutstyle\"},yanchor:{valType:\"enumerated\",dflt:\"auto\",values:[\"auto\",\"top\",\"middle\",\"bottom\"],editType:\"layoutstyle\"},pad:l(s({editType:\"layoutstyle\"}),{}),editType:\"layoutstyle\"},uniformtext:{mode:{valType:\"enumerated\",values:[!1,\"hide\",\"show\"],dflt:!1,editType:\"plot\"},minsize:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},editType:\"plot\"},autosize:{valType:\"boolean\",dflt:!1,editType:\"none\"},width:{valType:\"number\",min:10,dflt:700,editType:\"plot\"},height:{valType:\"number\",min:10,dflt:450,editType:\"plot\"},margin:{l:{valType:\"number\",min:0,dflt:80,editType:\"plot\"},r:{valType:\"number\",min:0,dflt:80,editType:\"plot\"},t:{valType:\"number\",min:0,dflt:100,editType:\"plot\"},b:{valType:\"number\",min:0,dflt:80,editType:\"plot\"},pad:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},autoexpand:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},computed:{valType:\"any\",editType:\"none\"},paper_bgcolor:{valType:\"color\",dflt:a.background,editType:\"plot\"},plot_bgcolor:{valType:\"color\",dflt:a.background,editType:\"layoutstyle\"},autotypenumbers:{valType:\"enumerated\",values:[\"convert types\",\"strict\"],dflt:\"convert types\",editType:\"calc\"},separators:{valType:\"string\",editType:\"plot\"},hidesources:{valType:\"boolean\",dflt:!1,editType:\"plot\"},showlegend:{valType:\"boolean\",editType:\"legend\"},colorway:{valType:\"colorlist\",dflt:a.defaults,editType:\"calc\"},datarevision:{valType:\"any\",editType:\"calc\"},uirevision:{valType:\"any\",editType:\"none\"},editrevision:{valType:\"any\",editType:\"none\"},selectionrevision:{valType:\"any\",editType:\"none\"},template:{valType:\"any\",editType:\"calc\"},modebar:{orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],dflt:\"h\",editType:\"modebar\"},bgcolor:{valType:\"color\",editType:\"modebar\"},color:{valType:\"color\",editType:\"modebar\"},activecolor:{valType:\"color\",editType:\"modebar\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"modebar\"},newshape:o.newshape,activeshape:o.activeshape,meta:{valType:\"any\",arrayOk:!0,editType:\"plot\"},transition:l({},i.transition,{editType:\"none\"}),_deprecated:{title:{valType:\"string\",editType:\"layoutstyle\"},titlefont:n({editType:\"layoutstyle\"})}}},{\"../components/color/attributes\":642,\"../components/shapes/draw_newshape/attributes\":725,\"../lib/extend\":768,\"./animation_attributes\":822,\"./font_attributes\":856,\"./pad_attributes\":890}],883:[function(t,e,r){\"use strict\";var n={\"open-street-map\":{id:\"osm\",version:8,sources:{\"plotly-osm-tiles\":{type:\"raster\",attribution:'<a href=\"http://www.openstreetmap.org/about/\" target=\"_blank\">\\xa9 OpenStreetMap</a>',tiles:[\"https://a.tile.openstreetmap.org/{z}/{x}/{y}.png\",\"https://b.tile.openstreetmap.org/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-osm-tiles\",type:\"raster\",source:\"plotly-osm-tiles\",minzoom:0,maxzoom:22}]},\"white-bg\":{id:\"white-bg\",version:8,sources:{},layers:[{id:\"white-bg\",type:\"background\",paint:{\"background-color\":\"#FFFFFF\"},minzoom:0,maxzoom:22}]},\"carto-positron\":{id:\"carto-positron\",version:8,sources:{\"plotly-carto-positron\":{type:\"raster\",attribution:'<a href=\"https://carto.com/\" target=\"_blank\">\\xa9 CARTO</a>',tiles:[\"https://cartodb-basemaps-c.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-carto-positron\",type:\"raster\",source:\"plotly-carto-positron\",minzoom:0,maxzoom:22}]},\"carto-darkmatter\":{id:\"carto-darkmatter\",version:8,sources:{\"plotly-carto-darkmatter\":{type:\"raster\",attribution:'<a href=\"https://carto.com/\" target=\"_blank\">\\xa9 CARTO</a>',tiles:[\"https://cartodb-basemaps-c.global.ssl.fastly.net/dark_all/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-carto-darkmatter\",type:\"raster\",source:\"plotly-carto-darkmatter\",minzoom:0,maxzoom:22}]},\"stamen-terrain\":{id:\"stamen-terrain\",version:8,sources:{\"plotly-stamen-terrain\":{type:\"raster\",attribution:'Map tiles by <a href=\"http://stamen.com\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a> | Data by <a href=\"http://openstreetmap.org\">OpenStreetMap</a>, under <a href=\"http://www.openstreetmap.org/copyright\">ODbL</a>.',tiles:[\"https://stamen-tiles.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-terrain\",type:\"raster\",source:\"plotly-stamen-terrain\",minzoom:0,maxzoom:22}]},\"stamen-toner\":{id:\"stamen-toner\",version:8,sources:{\"plotly-stamen-toner\":{type:\"raster\",attribution:'Map tiles by <a href=\"http://stamen.com\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a> | Data by <a href=\"http://openstreetmap.org\">OpenStreetMap</a>, under <a href=\"http://www.openstreetmap.org/copyright\">ODbL</a>.',tiles:[\"https://stamen-tiles.a.ssl.fastly.net/toner/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-toner\",type:\"raster\",source:\"plotly-stamen-toner\",minzoom:0,maxzoom:22}]},\"stamen-watercolor\":{id:\"stamen-watercolor\",version:8,sources:{\"plotly-stamen-watercolor\":{type:\"raster\",attribution:'Map tiles by <a href=\"http://stamen.com\">Stamen Design</a>, under <a href=\"http://creativecommons.org/licenses/by/3.0\">CC BY 3.0</a> | Data by <a href=\"http://openstreetmap.org\">OpenStreetMap</a>, under <a href=\"http://creativecommons.org/licenses/by-sa/3.0\">CC BY SA</a>.',tiles:[\"https://stamen-tiles.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png\"],tileSize:256}},layers:[{id:\"plotly-stamen-watercolor\",type:\"raster\",source:\"plotly-stamen-watercolor\",minzoom:0,maxzoom:22}]}},i=Object.keys(n);e.exports={requiredVersion:\"1.10.1\",styleUrlPrefix:\"mapbox://styles/mapbox/\",styleUrlSuffix:\"v9\",styleValuesMapbox:[\"basic\",\"streets\",\"outdoors\",\"light\",\"dark\",\"satellite\",\"satellite-streets\"],styleValueDflt:\"basic\",stylesNonMapbox:n,styleValuesNonMapbox:i,traceLayerPrefix:\"plotly-trace-layer-\",layoutLayerPrefix:\"plotly-layout-layer-\",wrongVersionErrorMsg:[\"Your custom plotly.js bundle is not using the correct mapbox-gl version\",\"Please install mapbox-gl@1.10.1.\"].join(\"\\n\"),noAccessTokenErrorMsg:[\"Missing Mapbox access token.\",\"Mapbox trace type require a Mapbox access token to be registered.\",\"For example:\",\"  Plotly.plot(gd, data, layout, { mapboxAccessToken: 'my-access-token' });\",\"More info here: https://www.mapbox.com/help/define-access-token/\"].join(\"\\n\"),missingStyleErrorMsg:[\"No valid mapbox style found, please set `mapbox.style` to one of:\",i.join(\", \"),\"or register a Mapbox access token to use a Mapbox-served style.\"].join(\"\\n\"),multipleTokensErrorMsg:[\"Set multiple mapbox access token across different mapbox subplot,\",\"using first token found as mapbox-gl does not allow multipleaccess tokens on the same page.\"].join(\"\\n\"),mapOnErrorMsg:\"Mapbox error.\",mapboxLogo:{path0:\"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z\",path1:\"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z\",path2:\"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z\",polygon:\"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34\"},styleRules:{map:\"overflow:hidden;position:relative;\",\"missing-css\":\"display:none;\",canary:\"background-color:salmon;\",\"ctrl-bottom-left\":\"position: absolute; pointer-events: none; z-index: 2; bottom: 0; left: 0;\",\"ctrl-bottom-right\":\"position: absolute; pointer-events: none; z-index: 2; right: 0; bottom: 0;\",ctrl:\"clear: both; pointer-events: auto; transform: translate(0, 0);\",\"ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner\":\"display: none;\",\"ctrl-attrib.mapboxgl-compact:hover .mapboxgl-ctrl-attrib-inner\":\"display: block; margin-top:2px\",\"ctrl-attrib.mapboxgl-compact:hover\":\"padding: 2px 24px 2px 4px; visibility: visible; margin-top: 6px;\",\"ctrl-attrib.mapboxgl-compact::after\":'content: \"\"; cursor: pointer; position: absolute; background-image: url(\\'data:image/svg+xml;charset=utf-8,%3Csvg viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"%3E %3Cpath fill=\"%23333333\" fill-rule=\"evenodd\" d=\"M4,10a6,6 0 1,0 12,0a6,6 0 1,0 -12,0 M9,7a1,1 0 1,0 2,0a1,1 0 1,0 -2,0 M9,10a1,1 0 1,1 2,0l0,3a1,1 0 1,1 -2,0\"/%3E %3C/svg%3E\\'); background-color: rgba(255, 255, 255, 0.5); width: 24px; height: 24px; box-sizing: border-box; border-radius: 12px;',\"ctrl-attrib.mapboxgl-compact\":\"min-height: 20px; padding: 0; margin: 10px; position: relative; background-color: #fff; border-radius: 3px 12px 12px 3px;\",\"ctrl-bottom-right > .mapboxgl-ctrl-attrib.mapboxgl-compact::after\":\"bottom: 0; right: 0\",\"ctrl-bottom-left > .mapboxgl-ctrl-attrib.mapboxgl-compact::after\":\"bottom: 0; left: 0\",\"ctrl-bottom-left .mapboxgl-ctrl\":\"margin: 0 0 10px 10px; float: left;\",\"ctrl-bottom-right .mapboxgl-ctrl\":\"margin: 0 10px 10px 0; float: right;\",\"ctrl-attrib\":\"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px\",\"ctrl-attrib a\":\"color: rgba(0, 0, 0, 0.75); text-decoration: none; font-size: 12px\",\"ctrl-attrib a:hover\":\"color: inherit; text-decoration: underline;\",\"ctrl-attrib .mapbox-improve-map\":\"font-weight: bold; margin-left: 2px;\",\"attrib-empty\":\"display: none;\",\"ctrl-logo\":'display:block; width: 21px; height: 21px; background-image: url(\\'data:image/svg+xml;charset=utf-8,%3C?xml version=\"1.0\" encoding=\"utf-8\"?%3E %3Csvg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 21 21\" style=\"enable-background:new 0 0 21 21;\" xml:space=\"preserve\"%3E%3Cg transform=\"translate(0,0.01)\"%3E%3Cpath d=\"m 10.5,1.24 c -5.11,0 -9.25,4.15 -9.25,9.25 0,5.1 4.15,9.25 9.25,9.25 5.1,0 9.25,-4.15 9.25,-9.25 0,-5.11 -4.14,-9.25 -9.25,-9.25 z m 4.39,11.53 c -1.93,1.93 -4.78,2.31 -6.7,2.31 -0.7,0 -1.41,-0.05 -2.1,-0.16 0,0 -1.02,-5.64 2.14,-8.81 0.83,-0.83 1.95,-1.28 3.13,-1.28 1.27,0 2.49,0.51 3.39,1.42 1.84,1.84 1.89,4.75 0.14,6.52 z\" style=\"opacity:0.9;fill:%23ffffff;enable-background:new\" class=\"st0\"/%3E%3Cpath d=\"M 10.5,-0.01 C 4.7,-0.01 0,4.7 0,10.49 c 0,5.79 4.7,10.5 10.5,10.5 5.8,0 10.5,-4.7 10.5,-10.5 C 20.99,4.7 16.3,-0.01 10.5,-0.01 Z m 0,19.75 c -5.11,0 -9.25,-4.15 -9.25,-9.25 0,-5.1 4.14,-9.26 9.25,-9.26 5.11,0 9.25,4.15 9.25,9.25 0,5.13 -4.14,9.26 -9.25,9.26 z\" style=\"opacity:0.35;enable-background:new\" class=\"st1\"/%3E%3Cpath d=\"M 14.74,6.25 C 12.9,4.41 9.98,4.35 8.23,6.1 5.07,9.27 6.09,14.91 6.09,14.91 c 0,0 5.64,1.02 8.81,-2.14 C 16.64,11 16.59,8.09 14.74,6.25 Z m -2.27,4.09 -0.91,1.87 -0.9,-1.87 -1.86,-0.91 1.86,-0.9 0.9,-1.87 0.91,1.87 1.86,0.9 z\" style=\"opacity:0.35;enable-background:new\" class=\"st1\"/%3E%3Cpolygon points=\"11.56,12.21 10.66,10.34 8.8,9.43 10.66,8.53 11.56,6.66 12.47,8.53 14.33,9.43 12.47,10.34 \" style=\"opacity:0.9;fill:%23ffffff;enable-background:new\" class=\"st0\"/%3E%3C/g%3E%3C/svg%3E\\')'}}},{}],884:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){var r=t.split(\" \"),i=r[0],a=r[1],o=n.isArrayOrTypedArray(e)?n.mean(e):e,s=.5+o/100,l=1.5+o/100,c=[\"\",\"\"],u=[0,0];switch(i){case\"top\":c[0]=\"top\",u[1]=-l;break;case\"bottom\":c[0]=\"bottom\",u[1]=l}switch(a){case\"left\":c[1]=\"right\",u[0]=-s;break;case\"right\":c[1]=\"left\",u[0]=s}return{anchor:c[0]&&c[1]?c.join(\"-\"):c[0]?c[0]:c[1]?c[1]:\"center\",offset:u}}},{\"../../lib\":778}],885:[function(t,e,r){\"use strict\";var n=t(\"mapbox-gl\"),i=t(\"../../lib\"),a=i.strTranslate,o=i.strScale,s=t(\"../../plots/get_data\").getSubplotCalcData,l=t(\"../../constants/xmlns_namespaces\"),c=t(\"d3\"),u=t(\"../../components/drawing\"),f=t(\"../../lib/svg_text_utils\"),h=t(\"./mapbox\"),p=r.constants=t(\"./constants\");function d(t){return\"string\"==typeof t&&(-1!==p.styleValuesMapbox.indexOf(t)||0===t.indexOf(\"mapbox://\"))}r.name=\"mapbox\",r.attr=\"subplot\",r.idRoot=\"mapbox\",r.idRegex=r.attrRegex=i.counterRegex(\"mapbox\"),r.attributes={subplot:{valType:\"subplotid\",dflt:\"mapbox\",editType:\"calc\"}},r.layoutAttributes=t(\"./layout_attributes\"),r.supplyLayoutDefaults=t(\"./layout_defaults\"),r.plot=function(t){var e=t._fullLayout,r=t.calcdata,a=e._subplots.mapbox;if(n.version!==p.requiredVersion)throw new Error(p.wrongVersionErrorMsg);var o=function(t,e){var r=t._fullLayout;if(\"\"===t._context.mapboxAccessToken)return\"\";for(var n=[],a=[],o=!1,s=!1,l=0;l<e.length;l++){var c=r[e[l]],u=c.accesstoken;d(c.style)&&(u?i.pushUnique(n,u):(d(c._input.style)&&(i.error(\"Uses Mapbox map style, but did not set an access token.\"),o=!0),s=!0)),u&&i.pushUnique(a,u)}if(s){var f=o?p.noAccessTokenErrorMsg:p.missingStyleErrorMsg;throw i.error(f),new Error(f)}return n.length?(n.length>1&&i.warn(p.multipleTokensErrorMsg),n[0]):(a.length&&i.log([\"Listed mapbox access token(s)\",a.join(\",\"),\"but did not use a Mapbox map style, ignoring token(s).\"].join(\" \")),\"\")}(t,a);n.accessToken=o;for(var l=0;l<a.length;l++){var c=a[l],u=s(r,\"mapbox\",c),f=e[c],g=f._subplot;g||(g=new h(t,c),e[c]._subplot=g),g.viewInitial||(g.viewInitial={center:i.extendFlat({},f.center),zoom:f.zoom,bearing:f.bearing,pitch:f.pitch}),g.plot(u,e,t._promises)}},r.clean=function(t,e,r,n){for(var i=n._subplots.mapbox||[],a=0;a<i.length;a++){var o=i[a];!e[o]&&n[o]._subplot&&n[o]._subplot.destroy()}},r.toSVG=function(t){for(var e=t._fullLayout,r=e._subplots.mapbox,n=e._size,i=0;i<r.length;i++){var s=e[r[i]],h=s.domain,d=s._subplot.toImage(\"png\");e._glimages.append(\"svg:image\").attr({xmlns:l.svg,\"xlink:href\":d,x:n.l+n.w*h.x[0],y:n.t+n.h*(1-h.y[1]),width:n.w*(h.x[1]-h.x[0]),height:n.h*(h.y[1]-h.y[0]),preserveAspectRatio:\"none\"});var g=c.select(s._subplot.div);if(!(null===g.select(\".mapboxgl-ctrl-logo\").node().offsetParent)){var m=e._glimages.append(\"g\");m.attr(\"transform\",a(n.l+n.w*h.x[0]+10,n.t+n.h*(1-h.y[0])-31)),m.append(\"path\").attr(\"d\",p.mapboxLogo.path0).style({opacity:.9,fill:\"#ffffff\",\"enable-background\":\"new\"}),m.append(\"path\").attr(\"d\",p.mapboxLogo.path1).style(\"opacity\",.35).style(\"enable-background\",\"new\"),m.append(\"path\").attr(\"d\",p.mapboxLogo.path2).style(\"opacity\",.35).style(\"enable-background\",\"new\"),m.append(\"polygon\").attr(\"points\",p.mapboxLogo.polygon).style({opacity:.9,fill:\"#ffffff\",\"enable-background\":\"new\"})}var v=g.select(\".mapboxgl-ctrl-attrib\").text().replace(\"Improve this map\",\"\"),y=e._glimages.append(\"g\"),x=y.append(\"text\");x.text(v).classed(\"static-attribution\",!0).attr({\"font-size\":12,\"font-family\":\"Arial\",color:\"rgba(0, 0, 0, 0.75)\",\"text-anchor\":\"end\",\"data-unformatted\":v});var b=u.bBox(x.node()),_=n.w*(h.x[1]-h.x[0]);if(b.width>_/2){var w=v.split(\"|\").join(\"<br>\");x.text(w).attr(\"data-unformatted\",w).call(f.convertToTspans,t),b=u.bBox(x.node())}x.attr(\"transform\",a(-3,8-b.height)),y.insert(\"rect\",\".static-attribution\").attr({x:-b.width-6,y:-b.height-3,width:b.width+6,height:b.height+3,fill:\"rgba(255, 255, 255, 0.75)\"});var T=1;b.width+6>_&&(T=_/(b.width+6));var k=[n.l+n.w*h.x[1],n.t+n.h*(1-h.y[0])];y.attr(\"transform\",a(k[0],k[1])+o(T))}},r.updateFx=function(t){for(var e=t._fullLayout,r=e._subplots.mapbox,n=0;n<r.length;n++){e[r[n]]._subplot.updateFx(e)}}},{\"../../components/drawing\":665,\"../../constants/xmlns_namespaces\":754,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../plots/get_data\":865,\"./constants\":883,\"./layout_attributes\":887,\"./layout_defaults\":888,\"./mapbox\":889,d3:169,\"mapbox-gl\":473}],886:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../lib/svg_text_utils\").sanitizeHTML,a=t(\"./convert_text_opts\"),o=t(\"./constants\");function s(t,e){this.subplot=t,this.uid=t.uid+\"-\"+e,this.index=e,this.idSource=\"source-\"+this.uid,this.idLayer=o.layoutLayerPrefix+this.uid,this.sourceType=null,this.source=null,this.layerType=null,this.below=null,this.visible=!1}var l=s.prototype;function c(t){if(!t.visible)return!1;var e=t.source;if(Array.isArray(e)&&e.length>0){for(var r=0;r<e.length;r++)if(\"string\"!=typeof e[r]||0===e[r].length)return!1;return!0}return n.isPlainObject(e)||\"string\"==typeof e&&e.length>0}function u(t){var e={},r={};switch(t.type){case\"circle\":n.extendFlat(r,{\"circle-radius\":t.circle.radius,\"circle-color\":t.color,\"circle-opacity\":t.opacity});break;case\"line\":n.extendFlat(r,{\"line-width\":t.line.width,\"line-color\":t.color,\"line-opacity\":t.opacity,\"line-dasharray\":t.line.dash});break;case\"fill\":n.extendFlat(r,{\"fill-color\":t.color,\"fill-outline-color\":t.fill.outlinecolor,\"fill-opacity\":t.opacity});break;case\"symbol\":var i=t.symbol,o=a(i.textposition,i.iconsize);n.extendFlat(e,{\"icon-image\":i.icon+\"-15\",\"icon-size\":i.iconsize/10,\"text-field\":i.text,\"text-size\":i.textfont.size,\"text-anchor\":o.anchor,\"text-offset\":o.offset,\"symbol-placement\":i.placement}),n.extendFlat(r,{\"icon-color\":t.color,\"text-color\":i.textfont.color,\"text-opacity\":t.opacity});break;case\"raster\":n.extendFlat(r,{\"raster-fade-duration\":0,\"raster-opacity\":t.opacity})}return{layout:e,paint:r}}l.update=function(t){this.visible?this.needsNewImage(t)?this.updateImage(t):this.needsNewSource(t)?(this.removeLayer(),this.updateSource(t),this.updateLayer(t)):this.needsNewLayer(t)?this.updateLayer(t):this.updateStyle(t):(this.updateSource(t),this.updateLayer(t)),this.visible=c(t)},l.needsNewImage=function(t){return this.subplot.map.getSource(this.idSource)&&\"image\"===this.sourceType&&\"image\"===t.sourcetype&&(this.source!==t.source||JSON.stringify(this.coordinates)!==JSON.stringify(t.coordinates))},l.needsNewSource=function(t){return this.sourceType!==t.sourcetype||JSON.stringify(this.source)!==JSON.stringify(t.source)||this.layerType!==t.type},l.needsNewLayer=function(t){return this.layerType!==t.type||this.below!==this.subplot.belowLookup[\"layout-\"+this.index]},l.lookupBelow=function(){return this.subplot.belowLookup[\"layout-\"+this.index]},l.updateImage=function(t){this.subplot.map.getSource(this.idSource).updateImage({url:t.source,coordinates:t.coordinates});var e=this.findFollowingMapboxLayerId(this.lookupBelow());null!==e&&this.subplot.map.moveLayer(this.idLayer,e)},l.updateSource=function(t){var e=this.subplot.map;if(e.getSource(this.idSource)&&e.removeSource(this.idSource),this.sourceType=t.sourcetype,this.source=t.source,c(t)){var r=function(t){var e,r=t.sourcetype,n=t.source,a={type:r};\"geojson\"===r?e=\"data\":\"vector\"===r?e=\"string\"==typeof n?\"url\":\"tiles\":\"raster\"===r?(e=\"tiles\",a.tileSize=256):\"image\"===r&&(e=\"url\",a.coordinates=t.coordinates);a[e]=n,t.sourceattribution&&(a.attribution=i(t.sourceattribution));return a}(t);e.addSource(this.idSource,r)}},l.findFollowingMapboxLayerId=function(t){if(\"traces\"===t)for(var e=this.subplot.getMapLayers(),r=0;r<e.length;r++){var n=e[r].id;if(\"string\"==typeof n&&0===n.indexOf(o.traceLayerPrefix)){t=n;break}}return t},l.updateLayer=function(t){var e=this.subplot,r=u(t),n=this.lookupBelow(),i=this.findFollowingMapboxLayerId(n);this.removeLayer(),c(t)&&e.addLayer({id:this.idLayer,source:this.idSource,\"source-layer\":t.sourcelayer||\"\",type:t.type,minzoom:t.minzoom,maxzoom:t.maxzoom,layout:r.layout,paint:r.paint},i),this.layerType=t.type,this.below=n},l.updateStyle=function(t){if(c(t)){var e=u(t);this.subplot.setOptions(this.idLayer,\"setLayoutProperty\",e.layout),this.subplot.setOptions(this.idLayer,\"setPaintProperty\",e.paint)}},l.removeLayer=function(){var t=this.subplot.map;t.getLayer(this.idLayer)&&t.removeLayer(this.idLayer)},l.dispose=function(){var t=this.subplot.map;t.getLayer(this.idLayer)&&t.removeLayer(this.idLayer),t.getSource(this.idSource)&&t.removeSource(this.idSource)},e.exports=function(t,e,r){var n=new s(t,e);return n.update(r),n}},{\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"./constants\":883,\"./convert_text_opts\":884}],887:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/color\").defaultLine,a=t(\"../domain\").attributes,o=t(\"../font_attributes\"),s=t(\"../../traces/scatter/attributes\").textposition,l=t(\"../../plot_api/edit_types\").overrideAll,c=t(\"../../plot_api/plot_template\").templatedArray,u=t(\"./constants\"),f=o({});f.family.dflt=\"Open Sans Regular, Arial Unicode MS Regular\",(e.exports=l({_arrayAttrRegexps:[n.counterRegex(\"mapbox\",\".layers\",!0)],domain:a({name:\"mapbox\"}),accesstoken:{valType:\"string\",noBlank:!0,strict:!0},style:{valType:\"any\",values:u.styleValuesMapbox.concat(u.styleValuesNonMapbox),dflt:u.styleValueDflt},center:{lon:{valType:\"number\",dflt:0},lat:{valType:\"number\",dflt:0}},zoom:{valType:\"number\",dflt:1},bearing:{valType:\"number\",dflt:0},pitch:{valType:\"number\",dflt:0},layers:c(\"layer\",{visible:{valType:\"boolean\",dflt:!0},sourcetype:{valType:\"enumerated\",values:[\"geojson\",\"vector\",\"raster\",\"image\"],dflt:\"geojson\"},source:{valType:\"any\"},sourcelayer:{valType:\"string\",dflt:\"\"},sourceattribution:{valType:\"string\"},type:{valType:\"enumerated\",values:[\"circle\",\"line\",\"fill\",\"symbol\",\"raster\"],dflt:\"circle\"},coordinates:{valType:\"any\"},below:{valType:\"string\"},color:{valType:\"color\",dflt:i},opacity:{valType:\"number\",min:0,max:1,dflt:1},minzoom:{valType:\"number\",min:0,max:24,dflt:0},maxzoom:{valType:\"number\",min:0,max:24,dflt:24},circle:{radius:{valType:\"number\",dflt:15}},line:{width:{valType:\"number\",dflt:2},dash:{valType:\"data_array\"}},fill:{outlinecolor:{valType:\"color\",dflt:i}},symbol:{icon:{valType:\"string\",dflt:\"marker\"},iconsize:{valType:\"number\",dflt:10},text:{valType:\"string\",dflt:\"\"},placement:{valType:\"enumerated\",values:[\"point\",\"line\",\"line-center\"],dflt:\"point\"},textfont:f,textposition:n.extendFlat({},s,{arrayOk:!1})}})},\"plot\",\"from-root\")).uirevision={valType:\"any\",editType:\"none\"}},{\"../../components/color\":643,\"../../lib\":778,\"../../plot_api/edit_types\":810,\"../../plot_api/plot_template\":817,\"../../traces/scatter/attributes\":1187,\"../domain\":855,\"../font_attributes\":856,\"./constants\":883}],888:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../subplot_defaults\"),a=t(\"../array_container_defaults\"),o=t(\"./layout_attributes\");function s(t,e,r,n){r(\"accesstoken\",n.accessToken),r(\"style\"),r(\"center.lon\"),r(\"center.lat\"),r(\"zoom\"),r(\"bearing\"),r(\"pitch\"),a(t,e,{name:\"layers\",handleItemDefaults:l}),e._input=t}function l(t,e){function r(r,i){return n.coerce(t,e,o.layers,r,i)}if(r(\"visible\")){var i,a=r(\"sourcetype\"),s=\"raster\"===a||\"image\"===a;r(\"source\"),r(\"sourceattribution\"),\"vector\"===a&&r(\"sourcelayer\"),\"image\"===a&&r(\"coordinates\"),s&&(i=\"raster\");var l=r(\"type\",i);s&&\"raster\"!==l&&(l=e.type=\"raster\",n.log(\"Source types *raster* and *image* must drawn *raster* layer type.\")),r(\"below\"),r(\"color\"),r(\"opacity\"),r(\"minzoom\"),r(\"maxzoom\"),\"circle\"===l&&r(\"circle.radius\"),\"line\"===l&&(r(\"line.width\"),r(\"line.dash\")),\"fill\"===l&&r(\"fill.outlinecolor\"),\"symbol\"===l&&(r(\"symbol.icon\"),r(\"symbol.iconsize\"),r(\"symbol.text\"),n.coerceFont(r,\"symbol.textfont\"),r(\"symbol.textposition\"),r(\"symbol.placement\"))}}e.exports=function(t,e,r){i(t,e,r,{type:\"mapbox\",attributes:o,handleDefaults:s,partition:\"y\",accessToken:e._mapboxAccessToken})}},{\"../../lib\":778,\"../array_container_defaults\":823,\"../subplot_defaults\":905,\"./layout_attributes\":887}],889:[function(t,e,r){\"use strict\";var n=t(\"mapbox-gl\"),i=t(\"../../lib\"),a=t(\"../../lib/geo_location_utils\"),o=t(\"../../registry\"),s=t(\"../cartesian/axes\"),l=t(\"../../components/dragelement\"),c=t(\"../../components/fx\"),u=t(\"../../components/dragelement/helpers\"),f=u.rectMode,h=u.drawMode,p=u.selectMode,d=t(\"../cartesian/select\").prepSelect,g=t(\"../cartesian/select\").clearSelect,m=t(\"../cartesian/select\").clearSelectionsCache,v=t(\"../cartesian/select\").selectOnClick,y=t(\"./constants\"),x=t(\"./layers\");function b(t,e){this.id=e,this.gd=t;var r=t._fullLayout,n=t._context;this.container=r._glcontainer.node(),this.isStatic=n.staticPlot,this.uid=r._uid+\"-\"+this.id,this.div=null,this.xaxis=null,this.yaxis=null,this.createFramework(r),this.map=null,this.accessToken=null,this.styleObj=null,this.traceHash={},this.layerList=[],this.belowLookup={},this.dragging=!1,this.wheeling=!1}var _=b.prototype;_.plot=function(t,e,r){var n,i=this,a=e[i.id];i.map&&a.accesstoken!==i.accessToken&&(i.map.remove(),i.map=null,i.styleObj=null,i.traceHash={},i.layerList=[]),n=i.map?new Promise((function(r,n){i.updateMap(t,e,r,n)})):new Promise((function(r,n){i.createMap(t,e,r,n)})),r.push(n)},_.createMap=function(t,e,r,i){var o=this,s=e[o.id],l=o.styleObj=T(s.style);o.accessToken=s.accesstoken;var c=o.map=new n.Map({container:o.div,style:l.style,center:M(s.center),zoom:s.zoom,bearing:s.bearing,pitch:s.pitch,interactive:!o.isStatic,preserveDrawingBuffer:o.isStatic,doubleClickZoom:!1,boxZoom:!1,attributionControl:!1}).addControl(new n.AttributionControl({compact:!0}));c._canvas.style.left=\"0px\",c._canvas.style.top=\"0px\",o.rejectOnError(i),o.isStatic||o.initFx(t,e);var u=[];u.push(new Promise((function(t){c.once(\"load\",t)}))),u=u.concat(a.fetchTraceGeoData(t)),Promise.all(u).then((function(){o.fillBelowLookup(t,e),o.updateData(t),o.updateLayout(e),o.resolveOnRender(r)})).catch(i)},_.updateMap=function(t,e,r,n){var i=this,o=i.map,s=e[this.id];i.rejectOnError(n);var l=[],c=T(s.style);JSON.stringify(i.styleObj)!==JSON.stringify(c)&&(i.styleObj=c,o.setStyle(c.style),i.traceHash={},l.push(new Promise((function(t){o.once(\"styledata\",t)})))),l=l.concat(a.fetchTraceGeoData(t)),Promise.all(l).then((function(){i.fillBelowLookup(t,e),i.updateData(t),i.updateLayout(e),i.resolveOnRender(r)})).catch(n)},_.fillBelowLookup=function(t,e){var r,n,i=e[this.id].layers,a=this.belowLookup={},o=!1;for(r=0;r<t.length;r++){var s=t[r][0].trace,l=s._module;\"string\"==typeof s.below?n=s.below:l.getBelow&&(n=l.getBelow(s,this)),\"\"===n&&(o=!0),a[\"trace-\"+s.uid]=n||\"\"}for(r=0;r<i.length;r++){var c=i[r];n=\"string\"==typeof c.below?c.below:o?\"traces\":\"\",a[\"layout-\"+r]=n}var u,f,h={};for(u in a)h[n=a[u]]?h[n].push(u):h[n]=[u];for(n in h){var p=h[n];if(p.length>1)for(r=0;r<p.length;r++)0===(u=p[r]).indexOf(\"trace-\")?(f=u.split(\"trace-\")[1],this.traceHash[f]&&(this.traceHash[f].below=null)):0===u.indexOf(\"layout-\")&&(f=u.split(\"layout-\")[1],this.layerList[f]&&(this.layerList[f].below=null))}};var w={choroplethmapbox:0,densitymapbox:1,scattermapbox:2};function T(t){var e={};return i.isPlainObject(t)?(e.id=t.id,e.style=t):\"string\"==typeof t?(e.id=t,-1!==y.styleValuesMapbox.indexOf(t)?e.style=k(t):y.stylesNonMapbox[t]?e.style=y.stylesNonMapbox[t]:e.style=t):(e.id=y.styleValueDflt,e.style=k(y.styleValueDflt)),e.transition={duration:0,delay:0},e}function k(t){return y.styleUrlPrefix+t+\"-\"+y.styleUrlSuffix}function M(t){return[t.lon,t.lat]}_.updateData=function(t){var e,r,n,i,a=this.traceHash,o=t.slice().sort((function(t,e){return w[t[0].trace.type]-w[e[0].trace.type]}));for(n=0;n<o.length;n++){var s=o[n],l=!1;(e=a[(r=s[0].trace).uid])&&(e.type===r.type?(e.update(s),l=!0):e.dispose()),!l&&r._module&&(a[r.uid]=r._module.plot(this,s))}var c=Object.keys(a);t:for(n=0;n<c.length;n++){var u=c[n];for(i=0;i<t.length;i++)if(u===(r=t[i][0].trace).uid)continue t;(e=a[u]).dispose(),delete a[u]}},_.updateLayout=function(t){var e=this.map,r=t[this.id];this.dragging||this.wheeling||(e.setCenter(M(r.center)),e.setZoom(r.zoom),e.setBearing(r.bearing),e.setPitch(r.pitch)),this.updateLayers(t),this.updateFramework(t),this.updateFx(t),this.map.resize(),this.gd._context._scrollZoom.mapbox?e.scrollZoom.enable():e.scrollZoom.disable()},_.resolveOnRender=function(t){var e=this.map;e.on(\"render\",(function r(){e.loaded()&&(e.off(\"render\",r),setTimeout(t,10))}))},_.rejectOnError=function(t){var e=this.map;function r(){t(new Error(y.mapOnErrorMsg))}e.once(\"error\",r),e.once(\"style.error\",r),e.once(\"source.error\",r),e.once(\"tile.error\",r),e.once(\"layer.error\",r)},_.createFramework=function(t){var e=this,r=e.div=document.createElement(\"div\");r.id=e.uid,r.style.position=\"absolute\",e.container.appendChild(r),e.xaxis={_id:\"x\",c2p:function(t){return e.project(t).x}},e.yaxis={_id:\"y\",c2p:function(t){return e.project(t).y}},e.updateFramework(t),e.mockAxis={type:\"linear\",showexponent:\"all\",exponentformat:\"B\"},s.setConvert(e.mockAxis,t)},_.initFx=function(t,e){var r=this,n=r.gd,i=r.map;function a(){c.loneUnhover(e._hoverlayer)}function s(){var t=r.getView();n.emit(\"plotly_relayouting\",r.getViewEditsWithDerived(t))}i.on(\"moveend\",(function(t){if(r.map){var e=n._fullLayout;if(t.originalEvent||r.wheeling){var i=e[r.id];o.call(\"_storeDirectGUIEdit\",n.layout,e._preGUI,r.getViewEdits(i));var a=r.getView();i._input.center=i.center=a.center,i._input.zoom=i.zoom=a.zoom,i._input.bearing=i.bearing=a.bearing,i._input.pitch=i.pitch=a.pitch,n.emit(\"plotly_relayout\",r.getViewEditsWithDerived(a))}t.originalEvent&&\"mouseup\"===t.originalEvent.type?r.dragging=!1:r.wheeling&&(r.wheeling=!1),e._rehover&&e._rehover()}})),i.on(\"wheel\",(function(){r.wheeling=!0})),i.on(\"mousemove\",(function(t){var e=r.div.getBoundingClientRect(),a=[t.originalEvent.offsetX,t.originalEvent.offsetY];t.target.getBoundingClientRect=function(){return e},r.xaxis.p2c=function(){return i.unproject(a).lng},r.yaxis.p2c=function(){return i.unproject(a).lat},n._fullLayout._rehover=function(){n._fullLayout._hoversubplot===r.id&&n._fullLayout[r.id]&&c.hover(n,t,r.id)},c.hover(n,t,r.id),n._fullLayout._hoversubplot=r.id})),i.on(\"dragstart\",(function(){r.dragging=!0,a()})),i.on(\"zoomstart\",a),i.on(\"mouseout\",(function(){n._fullLayout._hoversubplot=null})),i.on(\"drag\",s),i.on(\"zoom\",s),i.on(\"dblclick\",(function(){var t=n._fullLayout[r.id];o.call(\"_storeDirectGUIEdit\",n.layout,n._fullLayout._preGUI,r.getViewEdits(t));var e=r.viewInitial;i.setCenter(M(e.center)),i.setZoom(e.zoom),i.setBearing(e.bearing),i.setPitch(e.pitch);var a=r.getView();t._input.center=t.center=a.center,t._input.zoom=t.zoom=a.zoom,t._input.bearing=t.bearing=a.bearing,t._input.pitch=t.pitch=a.pitch,n.emit(\"plotly_doubleclick\",null),n.emit(\"plotly_relayout\",r.getViewEditsWithDerived(a))})),r.clearSelect=function(){m(r.dragOptions),g(r.dragOptions.gd)},r.onClickInPanFn=function(t){return function(e){var i=n._fullLayout.clickmode;i.indexOf(\"select\")>-1&&v(e.originalEvent,n,[r.xaxis],[r.yaxis],r.id,t),i.indexOf(\"event\")>-1&&c.click(n,e.originalEvent)}}},_.updateFx=function(t){var e=this,r=e.map,n=e.gd;if(!e.isStatic){var a,o=t.dragmode;a=f(o)?function(t,r){(t.range={})[e.id]=[c([r.xmin,r.ymin]),c([r.xmax,r.ymax])]}:function(t,r,n){(t.lassoPoints={})[e.id]=n.filtered.map(c)};var s=e.dragOptions;e.dragOptions=i.extendDeep(s||{},{dragmode:t.dragmode,element:e.div,gd:n,plotinfo:{id:e.id,domain:t[e.id].domain,xaxis:e.xaxis,yaxis:e.yaxis,fillRangeItems:a},xaxes:[e.xaxis],yaxes:[e.yaxis],subplot:e.id}),r.off(\"click\",e.onClickInPanHandler),p(o)||h(o)?(r.dragPan.disable(),r.on(\"zoomstart\",e.clearSelect),e.dragOptions.prepFn=function(t,r,n){d(t,r,n,e.dragOptions,o)},l.init(e.dragOptions)):(r.dragPan.enable(),r.off(\"zoomstart\",e.clearSelect),e.div.onmousedown=null,e.onClickInPanHandler=e.onClickInPanFn(e.dragOptions),r.on(\"click\",e.onClickInPanHandler))}function c(t){var r=e.map.unproject(t);return[r.lng,r.lat]}},_.updateFramework=function(t){var e=t[this.id].domain,r=t._size,n=this.div.style;n.width=r.w*(e.x[1]-e.x[0])+\"px\",n.height=r.h*(e.y[1]-e.y[0])+\"px\",n.left=r.l+e.x[0]*r.w+\"px\",n.top=r.t+(1-e.y[1])*r.h+\"px\",this.xaxis._offset=r.l+e.x[0]*r.w,this.xaxis._length=r.w*(e.x[1]-e.x[0]),this.yaxis._offset=r.t+(1-e.y[1])*r.h,this.yaxis._length=r.h*(e.y[1]-e.y[0])},_.updateLayers=function(t){var e,r=t[this.id].layers,n=this.layerList;if(r.length!==n.length){for(e=0;e<n.length;e++)n[e].dispose();for(n=this.layerList=[],e=0;e<r.length;e++)n.push(x(this,e,r[e]))}else for(e=0;e<r.length;e++)n[e].update(r[e])},_.destroy=function(){this.map&&(this.map.remove(),this.map=null,this.container.removeChild(this.div))},_.toImage=function(){return this.map.stop(),this.map.getCanvas().toDataURL()},_.setOptions=function(t,e,r){for(var n in r)this.map[e](t,n,r[n])},_.getMapLayers=function(){return this.map.getStyle().layers},_.addLayer=function(t,e){var r=this.map;if(\"string\"==typeof e){if(\"\"===e)return void r.addLayer(t,e);for(var n=this.getMapLayers(),a=0;a<n.length;a++)if(e===n[a].id)return void r.addLayer(t,e);i.warn([\"Trying to add layer with *below* value\",e,\"referencing a layer that does not exist\",\"or that does not yet exist.\"].join(\" \"))}r.addLayer(t)},_.project=function(t){return this.map.project(new n.LngLat(t[0],t[1]))},_.getView=function(){var t=this.map,e=t.getCenter(),r={lon:e.lng,lat:e.lat},n=t.getCanvas(),i=n.width,a=n.height;return{center:r,zoom:t.getZoom(),bearing:t.getBearing(),pitch:t.getPitch(),_derived:{coordinates:[t.unproject([0,0]).toArray(),t.unproject([i,0]).toArray(),t.unproject([i,a]).toArray(),t.unproject([0,a]).toArray()]}}},_.getViewEdits=function(t){for(var e=this.id,r=[\"center\",\"zoom\",\"bearing\",\"pitch\"],n={},i=0;i<r.length;i++){var a=r[i];n[e+\".\"+a]=t[a]}return n},_.getViewEditsWithDerived=function(t){var e=this.id,r=this.getViewEdits(t);return r[e+\"._derived\"]=t._derived,r},e.exports=b},{\"../../components/dragelement\":662,\"../../components/dragelement/helpers\":661,\"../../components/fx\":683,\"../../lib\":778,\"../../lib/geo_location_utils\":771,\"../../registry\":911,\"../cartesian/axes\":828,\"../cartesian/select\":847,\"./constants\":883,\"./layers\":886,\"mapbox-gl\":473}],890:[function(t,e,r){\"use strict\";e.exports=function(t){var e=t.editType;return{t:{valType:\"number\",dflt:0,editType:e},r:{valType:\"number\",dflt:0,editType:e},b:{valType:\"number\",dflt:0,editType:e},l:{valType:\"number\",dflt:0,editType:e},editType:e}}},{}],891:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"d3-time-format\").timeFormatLocale,a=t(\"fast-isnumeric\"),o=t(\"../registry\"),s=t(\"../plot_api/plot_schema\"),l=t(\"../plot_api/plot_template\"),c=t(\"../lib\"),u=t(\"../components/color\"),f=t(\"../constants/numerical\").BADNUM,h=t(\"./cartesian/axis_ids\"),p=t(\"./cartesian/handle_outline\").clearSelect,d=t(\"./animation_attributes\"),g=t(\"./frame_attributes\"),m=t(\"../plots/get_data\").getModuleCalcData,v=c.relinkPrivateKeys,y=c._,x=e.exports={};c.extendFlat(x,o),x.attributes=t(\"./attributes\"),x.attributes.type.values=x.allTypes,x.fontAttrs=t(\"./font_attributes\"),x.layoutAttributes=t(\"./layout_attributes\"),x.fontWeight=\"normal\";var b=x.transformsRegistry,_=t(\"./command\");x.executeAPICommand=_.executeAPICommand,x.computeAPICommandBindings=_.computeAPICommandBindings,x.manageCommandObserver=_.manageCommandObserver,x.hasSimpleAPICommandBindings=_.hasSimpleAPICommandBindings,x.redrawText=function(t){var e=(t=c.getGraphDiv(t))._fullLayout||{};if(!(!(e._has&&e._has(\"polar\"))&&t.data&&t.data[0]&&t.data[0].r))return new Promise((function(e){setTimeout((function(){o.getComponentMethod(\"annotations\",\"draw\")(t),o.getComponentMethod(\"legend\",\"draw\")(t),o.getComponentMethod(\"colorbar\",\"draw\")(t),e(x.previousPromises(t))}),300)}))},x.resize=function(t){var e;t=c.getGraphDiv(t);var r=new Promise((function(r,n){t&&!c.isHidden(t)||n(new Error(\"Resize must be passed a displayed plot div element.\")),t._redrawTimer&&clearTimeout(t._redrawTimer),t._resolveResize&&(e=t._resolveResize),t._resolveResize=r,t._redrawTimer=setTimeout((function(){if(!t.layout||t.layout.width&&t.layout.height||c.isHidden(t))r(t);else{delete t.layout.width,delete t.layout.height;var e=t.changed;t.autoplay=!0,o.call(\"relayout\",t,{autosize:!0}).then((function(){t.changed=e,t._resolveResize===r&&(delete t._resolveResize,r(t))}))}}),100)}));return e&&e(r),r},x.previousPromises=function(t){if((t._promises||[]).length)return Promise.all(t._promises).then((function(){t._promises=[]}))},x.addLinks=function(t){if(t._context.showLink||t._context.showSources){var e=t._fullLayout,r=c.ensureSingle(e._paper,\"text\",\"js-plot-link-container\",(function(t){t.style({\"font-family\":'\"Open Sans\", Arial, sans-serif',\"font-size\":\"12px\",fill:u.defaultLine,\"pointer-events\":\"all\"}).each((function(){var t=n.select(this);t.append(\"tspan\").classed(\"js-link-to-tool\",!0),t.append(\"tspan\").classed(\"js-link-spacer\",!0),t.append(\"tspan\").classed(\"js-sourcelinks\",!0)}))})),i=r.node(),a={y:e._paper.attr(\"height\")-9};document.body.contains(i)&&i.getComputedTextLength()>=e.width-20?(a[\"text-anchor\"]=\"start\",a.x=5):(a[\"text-anchor\"]=\"end\",a.x=e._paper.attr(\"width\")-7),r.attr(a);var o=r.select(\".js-link-to-tool\"),s=r.select(\".js-link-spacer\"),l=r.select(\".js-sourcelinks\");t._context.showSources&&t._context.showSources(t),t._context.showLink&&function(t,e){e.text(\"\");var r=e.append(\"a\").attr({\"xlink:xlink:href\":\"#\",class:\"link--impt link--embedview\",\"font-weight\":\"bold\"}).text(t._context.linkText+\" \"+String.fromCharCode(187));if(t._context.sendData)r.on(\"click\",(function(){x.sendDataToCloud(t)}));else{var n=window.location.pathname.split(\"/\"),i=window.location.search;r.attr({\"xlink:xlink:show\":\"new\",\"xlink:xlink:href\":\"/\"+n[2].split(\".\")[0]+\"/\"+n[1]+i})}}(t,o),s.text(o.text()&&l.text()?\" - \":\"\")}},x.sendDataToCloud=function(t){var e=(window.PLOTLYENV||{}).BASE_URL||t._context.plotlyServerURL;if(e){t.emit(\"plotly_beforeexport\");var r=n.select(t).append(\"div\").attr(\"id\",\"hiddenform\").style(\"display\",\"none\"),i=r.append(\"form\").attr({action:e+\"/external\",method:\"post\",target:\"_blank\"});return i.append(\"input\").attr({type:\"text\",name:\"data\"}).node().value=x.graphJson(t,!1,\"keepdata\"),i.node().submit(),r.remove(),t.emit(\"plotly_afterexport\"),!1}};var w=[\"days\",\"shortDays\",\"months\",\"shortMonths\",\"periods\",\"dateTime\",\"date\",\"time\",\"decimal\",\"thousands\",\"grouping\",\"currency\"],T=[\"year\",\"month\",\"dayMonth\",\"dayMonthYear\"];function k(t,e){var r=t._context.locale;r||(r=\"en-US\");var n=!1,i={};function a(t){for(var r=!0,a=0;a<e.length;a++){var o=e[a];i[o]||(t[o]?i[o]=t[o]:r=!1)}r&&(n=!0)}for(var s=0;s<2;s++){for(var l=t._context.locales,c=0;c<2;c++){var u=(l[r]||{}).format;if(u&&(a(u),n))break;l=o.localeRegistry}var f=r.split(\"-\")[0];if(n||f===r)break;r=f}return n||a(o.localeRegistry.en.format),i}function M(t,e){var r={_fullLayout:e},n=\"x\"===t._id.charAt(0),i=t._mainAxis._anchorAxis,a=\"\",o=\"\",s=\"\";if(i&&(s=i._mainAxis._id,a=n?t._id+s:s+t._id),!a||!e._plots[a]){a=\"\";for(var l=t._counterAxes,c=0;c<l.length;c++){var u=l[c],f=n?t._id+u:u+t._id;o||(o=f);var p=h.getFromId(r,u);if(s&&p.overlaying===s){a=f;break}}}return a||o}function A(t){var e=t.transforms;if(Array.isArray(e)&&e.length)for(var r=0;r<e.length;r++){var n=e[r],i=n._module||b[n.type];if(i&&i.makesData)return!0}return!1}function S(t,e,r,n){for(var i=t.transforms,a=[t],o=0;o<i.length;o++){var s=i[o],l=b[s.type];l&&l.transform&&(a=l.transform(a,{transform:s,fullTrace:t,fullData:e,layout:r,fullLayout:n,transformIndex:o}))}return a}function E(t){return\"string\"==typeof t&&\"px\"===t.substr(t.length-2)&&parseFloat(t)}function C(t){var e=t.margin;if(!t._size){var r=t._size={l:Math.round(e.l),r:Math.round(e.r),t:Math.round(e.t),b:Math.round(e.b),p:Math.round(e.pad)};r.w=Math.round(t.width)-r.l-r.r,r.h=Math.round(t.height)-r.t-r.b}t._pushmargin||(t._pushmargin={}),t._pushmarginIds||(t._pushmarginIds={})}x.supplyDefaults=function(t,e){var r=e&&e.skipUpdateCalc,a=t._fullLayout||{};if(a._skipDefaults)delete a._skipDefaults;else{var s,l=t._fullLayout={},u=t.layout||{},f=t._fullData||[],h=t._fullData=[],d=t.data||[],g=t.calcdata||[],m=t._context||{};t._transitionData||x.createTransitionData(t),l._dfltTitle={plot:y(t,\"Click to enter Plot title\"),x:y(t,\"Click to enter X axis title\"),y:y(t,\"Click to enter Y axis title\"),colorbar:y(t,\"Click to enter Colorscale title\"),annotation:y(t,\"new text\")},l._traceWord=y(t,\"trace\");var b=k(t,w);if(l._mapboxAccessToken=m.mapboxAccessToken,a._initialAutoSizeIsDone){var _=a.width,M=a.height;x.supplyLayoutGlobalDefaults(u,l,b),u.width||(l.width=_),u.height||(l.height=M),x.sanitizeMargins(l)}else{x.supplyLayoutGlobalDefaults(u,l,b);var A=!u.width||!u.height,S=l.autosize,E=m.autosizable;A&&(S||E)?x.plotAutoSize(t,u,l):A&&x.sanitizeMargins(l),!S&&A&&(u.width=l.width,u.height=l.height)}l._d3locale=function(t,e){return t.decimal=e.charAt(0),t.thousands=e.charAt(1),{numberFormat:n.locale(t).numberFormat,timeFormat:i(t).utcFormat}}(b,l.separators),l._extraFormat=k(t,T),l._initialAutoSizeIsDone=!0,l._dataLength=d.length,l._modules=[],l._visibleModules=[],l._basePlotModules=[];var L=l._subplots=function(){var t,e,r=o.collectableSubplotTypes,n={};if(!r){r=[];var i=o.subplotsRegistry;for(var a in i){var s=i[a].attr;if(s&&(r.push(a),Array.isArray(s)))for(e=0;e<s.length;e++)c.pushUnique(r,s[e])}}for(t=0;t<r.length;t++)n[r[t]]=[];return n}(),I=l._splomAxes={x:{},y:{}},P=l._splomSubplots={};l._splomGridDflt={},l._scatterStackOpts={},l._firstScatter={},l._alignmentOpts={},l._colorAxes={},l._requestRangeslider={},l._traceUids=function(t,e){var r,n,i=e.length,a=[];for(r=0;r<t.length;r++){var o=t[r]._fullInput;o!==n&&a.push(o),n=o}var s=a.length,l=new Array(i),u={};function f(t,e){l[e]=t,u[t]=1}function h(t,e){if(t&&\"string\"==typeof t&&!u[t])return f(t,e),!0}for(r=0;r<i;r++){var p=e[r].uid;\"number\"==typeof p&&(p=String(p)),h(p,r)||(r<s&&h(a[r].uid,r)||f(c.randstr(u),r))}return l}(f,d),l._globalTransforms=(t._context||{}).globalTransforms,x.supplyDataDefaults(d,h,u,l);var z=Object.keys(I.x),O=Object.keys(I.y);if(z.length>1&&O.length>1){for(o.getComponentMethod(\"grid\",\"sizeDefaults\")(u,l),s=0;s<z.length;s++)c.pushUnique(L.xaxis,z[s]);for(s=0;s<O.length;s++)c.pushUnique(L.yaxis,O[s]);for(var D in P)c.pushUnique(L.cartesian,D)}if(l._has=x._hasPlotType.bind(l),f.length===h.length)for(s=0;s<h.length;s++)v(h[s],f[s]);x.supplyLayoutModuleDefaults(u,l,h,t._transitionData);var R=l._visibleModules,F=[];for(s=0;s<R.length;s++){var B=R[s].crossTraceDefaults;B&&c.pushUnique(F,B)}for(s=0;s<F.length;s++)F[s](h,l);l._hasOnlyLargeSploms=1===l._basePlotModules.length&&\"splom\"===l._basePlotModules[0].name&&z.length>15&&O.length>15&&0===l.shapes.length&&0===l.images.length,l._hasCartesian=l._has(\"cartesian\"),l._hasGeo=l._has(\"geo\"),l._hasGL3D=l._has(\"gl3d\"),l._hasGL2D=l._has(\"gl2d\"),l._hasTernary=l._has(\"ternary\"),l._hasPie=l._has(\"pie\"),x.linkSubplots(h,l,f,a),x.cleanPlot(h,l,f,a);var N=!(!a._has||!a._has(\"gl2d\")),j=!(!l._has||!l._has(\"gl2d\")),U=!(!a._has||!a._has(\"cartesian\"))||N,V=!(!l._has||!l._has(\"cartesian\"))||j;U&&!V?a._bgLayer.remove():V&&!U&&(l._shouldCreateBgLayer=!0),a._zoomlayer&&!t._dragging&&p({_fullLayout:a}),function(t,e){var r,n=[];e.meta&&(r=e._meta={meta:e.meta,layout:{meta:e.meta}});for(var i=0;i<t.length;i++){var a=t[i];a.meta?n[a.index]=a._meta={meta:a.meta}:e.meta&&(a._meta={meta:e.meta}),e.meta&&(a._meta.layout={meta:e.meta})}n.length&&(r||(r=e._meta={}),r.data=n)}(h,l),v(l,a),o.getComponentMethod(\"colorscale\",\"crossTraceDefaults\")(h,l),l._preGUI||(l._preGUI={}),l._tracePreGUI||(l._tracePreGUI={});var q,H=l._tracePreGUI,G={};for(q in H)G[q]=\"old\";for(s=0;s<h.length;s++)G[q=h[s]._fullInput.uid]||(H[q]={}),G[q]=\"new\";for(q in G)\"old\"===G[q]&&delete H[q];C(l),o.getComponentMethod(\"rangeslider\",\"makeData\")(l),r||g.length!==h.length||x.supplyDefaultsUpdateCalc(g,h)}},x.supplyDefaultsUpdateCalc=function(t,e){for(var r=0;r<e.length;r++){var n=e[r],i=(t[r]||[])[0];if(i&&i.trace){var a=i.trace;if(a._hasCalcTransform){var o,s,l,u=a._arrayAttrs;for(o=0;o<u.length;o++)s=u[o],l=c.nestedProperty(a,s).get().slice(),c.nestedProperty(n,s).set(l)}i.trace=n}}},x.createTransitionData=function(t){t._transitionData||(t._transitionData={}),t._transitionData._frames||(t._transitionData._frames=[]),t._transitionData._frameHash||(t._transitionData._frameHash={}),t._transitionData._counter||(t._transitionData._counter=0),t._transitionData._interruptCallbacks||(t._transitionData._interruptCallbacks=[])},x._hasPlotType=function(t){var e,r=this._basePlotModules||[];for(e=0;e<r.length;e++)if(r[e].name===t)return!0;var n=this._modules||[];for(e=0;e<n.length;e++){var i=n[e].name;if(i===t)return!0;var a=o.modules[i];if(a&&a.categories[t])return!0}return!1},x.cleanPlot=function(t,e,r,n){var i,a,o=n._basePlotModules||[];for(i=0;i<o.length;i++){var s=o[i];s.clean&&s.clean(t,e,r,n)}var l=n._has&&n._has(\"gl\"),c=e._has&&e._has(\"gl\");l&&!c&&void 0!==n._glcontainer&&(n._glcontainer.selectAll(\".gl-canvas\").remove(),n._glcontainer.selectAll(\".no-webgl\").remove(),n._glcanvas=null);var u=!!n._infolayer;t:for(i=0;i<r.length;i++){var f=r[i].uid;for(a=0;a<t.length;a++){if(f===t[a].uid)continue t}u&&n._infolayer.select(\".cb\"+f).remove()}},x.linkSubplots=function(t,e,r,n){var i,a,s=n._plots||{},l=e._plots={},u=e._subplots,f={_fullData:t,_fullLayout:e},p=u.cartesian.concat(u.gl2d||[]);for(i=0;i<p.length;i++){var d,g=p[i],m=s[g],v=h.getFromId(f,g,\"x\"),y=h.getFromId(f,g,\"y\");for(m?d=l[g]=m:(d=l[g]={}).id=g,v._counterAxes.push(y._id),y._counterAxes.push(v._id),v._subplotsWith.push(g),y._subplotsWith.push(g),d.xaxis=v,d.yaxis=y,d._hasClipOnAxisFalse=!1,a=0;a<t.length;a++){var x=t[a];if(x.xaxis===d.xaxis._id&&x.yaxis===d.yaxis._id&&!1===x.cliponaxis){d._hasClipOnAxisFalse=!0;break}}}var b,_=h.list(f,null,!0);for(i=0;i<_.length;i++){var w=null;(b=_[i]).overlaying&&(w=h.getFromId(f,b.overlaying))&&w.overlaying&&(b.overlaying=!1,w=null),b._mainAxis=w||b,w&&(b.domain=w.domain.slice()),b._anchorAxis=\"free\"===b.anchor?null:h.getFromId(f,b.anchor)}for(i=0;i<_.length;i++)if((b=_[i])._counterAxes.sort(h.idSort),b._subplotsWith.sort(c.subplotSort),b._mainSubplot=M(b,e),b._counterAxes.length&&(b.spikemode&&-1!==b.spikemode.indexOf(\"across\")||b.automargin&&b.mirror&&\"free\"!==b.anchor||o.getComponentMethod(\"rangeslider\",\"isVisible\")(b))){var T=1,k=0;for(a=0;a<b._counterAxes.length;a++){var A=h.getFromId(f,b._counterAxes[a]);T=Math.min(T,A.domain[0]),k=Math.max(k,A.domain[1])}T<k&&(b._counterDomainMin=T,b._counterDomainMax=k)}},x.clearExpandedTraceDefaultColors=function(t){var e,r,n;for(r=[],(e=t._module._colorAttrs)||(t._module._colorAttrs=e=[],s.crawl(t._module.attributes,(function(t,n,i,a){r[a]=n,r.length=a+1,\"color\"===t.valType&&void 0===t.dflt&&e.push(r.join(\".\"))}))),n=0;n<e.length;n++){c.nestedProperty(t,\"_input.\"+e[n]).get()||c.nestedProperty(t,e[n]).set(null)}},x.supplyDataDefaults=function(t,e,r,n){var i,a,s,u=n._modules,f=n._visibleModules,h=n._basePlotModules,p=0,d=0;function g(t){e.push(t);var r=t._module;r&&(c.pushUnique(u,r),!0===t.visible&&c.pushUnique(f,r),c.pushUnique(h,t._module.basePlotModule),p++,!1!==t._input.visible&&d++)}n._transformModules=[];var m={},y=[],b=(r.template||{}).data||{},_=l.traceTemplater(b);for(i=0;i<t.length;i++){if(s=t[i],(a=_.newTrace(s)).uid=n._traceUids[i],x.supplyTraceDefaults(s,a,d,n,i),a.index=i,a._input=s,a._expandedIndex=p,a.transforms&&a.transforms.length)for(var w=!1!==s.visible&&!1===a.visible,T=S(a,e,r,n),k=0;k<T.length;k++){var M=T[k],A={_template:a._template,type:a.type,uid:a.uid+k};w&&!1===M.visible&&delete M.visible,x.supplyTraceDefaults(M,A,p,n,i),v(A,M),A.index=i,A._input=s,A._fullInput=a,A._expandedIndex=p,A._expandedInput=M,g(A)}else a._fullInput=a,a._expandedInput=a,g(a);o.traceIs(a,\"carpetAxis\")&&(m[a.carpet]=a),o.traceIs(a,\"carpetDependent\")&&y.push(i)}for(i=0;i<y.length;i++)if((a=e[y[i]]).visible){var E=m[a.carpet];a._carpet=E,E&&E.visible?(a.xaxis=E.xaxis,a.yaxis=E.yaxis):a.visible=!1}},x.supplyAnimationDefaults=function(t){var e;t=t||{};var r={};function n(e,n){return c.coerce(t||{},r,d,e,n)}if(n(\"mode\"),n(\"direction\"),n(\"fromcurrent\"),Array.isArray(t.frame))for(r.frame=[],e=0;e<t.frame.length;e++)r.frame[e]=x.supplyAnimationFrameDefaults(t.frame[e]||{});else r.frame=x.supplyAnimationFrameDefaults(t.frame||{});if(Array.isArray(t.transition))for(r.transition=[],e=0;e<t.transition.length;e++)r.transition[e]=x.supplyAnimationTransitionDefaults(t.transition[e]||{});else r.transition=x.supplyAnimationTransitionDefaults(t.transition||{});return r},x.supplyAnimationFrameDefaults=function(t){var e={};function r(r,n){return c.coerce(t||{},e,d.frame,r,n)}return r(\"duration\"),r(\"redraw\"),e},x.supplyAnimationTransitionDefaults=function(t){var e={};function r(r,n){return c.coerce(t||{},e,d.transition,r,n)}return r(\"duration\"),r(\"easing\"),e},x.supplyFrameDefaults=function(t){var e={};function r(r,n){return c.coerce(t,e,g,r,n)}return r(\"group\"),r(\"name\"),r(\"traces\"),r(\"baseframe\"),r(\"data\"),r(\"layout\"),e},x.supplyTraceDefaults=function(t,e,r,n,i){var a,s=n.colorway||u.defaults,l=s[r%s.length];function f(r,n){return c.coerce(t,e,x.attributes,r,n)}var h=f(\"visible\");f(\"type\"),f(\"name\",n._traceWord+\" \"+i),f(\"uirevision\",n.uirevision);var p=x.getModule(e);if(e._module=p,p){var d=p.basePlotModule,g=d.attr,m=d.attributes;if(g&&m){var v=n._subplots,y=\"\";if(h||\"gl2d\"!==d.name){if(Array.isArray(g))for(a=0;a<g.length;a++){var b=g[a],_=c.coerce(t,e,m,b);v[b]&&c.pushUnique(v[b],_),y+=_}else y=c.coerce(t,e,m,g);v[d.name]&&c.pushUnique(v[d.name],y)}}}return h&&(f(\"customdata\"),f(\"ids\"),f(\"meta\"),o.traceIs(e,\"showLegend\")?(c.coerce(t,e,p.attributes.showlegend?p.attributes:x.attributes,\"showlegend\"),f(\"legendgroup\"),e._dfltShowLegend=!0):e._dfltShowLegend=!1,p&&p.supplyDefaults(t,e,l,n),o.traceIs(e,\"noOpacity\")||f(\"opacity\"),o.traceIs(e,\"notLegendIsolatable\")&&(e.visible=!!e.visible),o.traceIs(e,\"noHover\")||(e.hovertemplate||c.coerceHoverinfo(t,e,n),\"parcats\"!==e.type&&o.getComponentMethod(\"fx\",\"supplyDefaults\")(t,e,l,n)),p&&p.selectPoints&&f(\"selectedpoints\"),x.supplyTransformDefaults(t,e,n)),e},x.hasMakesDataTransform=A,x.supplyTransformDefaults=function(t,e,r){if(e._length||A(t)){var n=r._globalTransforms||[],i=r._transformModules||[];if(Array.isArray(t.transforms)||0!==n.length)for(var a=t.transforms||[],o=n.concat(a),s=e.transforms=[],l=0;l<o.length;l++){var u,f=o[l],h=f.type,p=b[h],d=!(f._module&&f._module===p),g=p&&\"function\"==typeof p.transform;p||c.warn(\"Unrecognized transform type \"+h+\".\"),p&&p.supplyDefaults&&(d||g)?((u=p.supplyDefaults(f,e,r,t)).type=h,u._module=p,c.pushUnique(i,p)):u=c.extendFlat({},f),s.push(u)}}},x.supplyLayoutGlobalDefaults=function(t,e,r){function n(r,n){return c.coerce(t,e,x.layoutAttributes,r,n)}var i=t.template;c.isPlainObject(i)&&(e.template=i,e._template=i.layout,e._dataTemplate=i.data),n(\"autotypenumbers\");var a=c.coerceFont(n,\"font\");n(\"title.text\",e._dfltTitle.plot),c.coerceFont(n,\"title.font\",{family:a.family,size:Math.round(1.4*a.size),color:a.color}),n(\"title.xref\"),n(\"title.yref\"),n(\"title.x\"),n(\"title.y\"),n(\"title.xanchor\"),n(\"title.yanchor\"),n(\"title.pad.t\"),n(\"title.pad.r\"),n(\"title.pad.b\"),n(\"title.pad.l\"),n(\"uniformtext.mode\")&&n(\"uniformtext.minsize\"),n(\"autosize\",!(t.width&&t.height)),n(\"width\"),n(\"height\"),n(\"margin.l\"),n(\"margin.r\"),n(\"margin.t\"),n(\"margin.b\"),n(\"margin.pad\"),n(\"margin.autoexpand\"),t.width&&t.height&&x.sanitizeMargins(e),o.getComponentMethod(\"grid\",\"sizeDefaults\")(t,e),n(\"paper_bgcolor\"),n(\"separators\",r.decimal+r.thousands),n(\"hidesources\"),n(\"colorway\"),n(\"datarevision\");var s=n(\"uirevision\");n(\"editrevision\",s),n(\"selectionrevision\",s),n(\"modebar.orientation\"),n(\"modebar.bgcolor\",u.addOpacity(e.paper_bgcolor,.5));var l=u.contrast(u.rgb(e.modebar.bgcolor));n(\"modebar.color\",u.addOpacity(l,.3)),n(\"modebar.activecolor\",u.addOpacity(l,.7)),n(\"modebar.uirevision\",s),o.getComponentMethod(\"shapes\",\"supplyDrawNewShapeDefaults\")(t,e,n),n(\"meta\"),c.isPlainObject(t.transition)&&(n(\"transition.duration\"),n(\"transition.easing\"),n(\"transition.ordering\")),o.getComponentMethod(\"calendars\",\"handleDefaults\")(t,e,\"calendar\"),o.getComponentMethod(\"fx\",\"supplyLayoutGlobalDefaults\")(t,e,n)},x.plotAutoSize=function(t,e,r){var n,i,o=t._context||{},s=o.frameMargins,l=c.isPlotDiv(t);if(l&&t.emit(\"plotly_autosize\"),o.fillFrame)n=window.innerWidth,i=window.innerHeight,document.body.style.overflow=\"hidden\";else{var u=l?window.getComputedStyle(t):{};if(n=E(u.width)||E(u.maxWidth)||r.width,i=E(u.height)||E(u.maxHeight)||r.height,a(s)&&s>0){var f=1-2*s;n=Math.round(f*n),i=Math.round(f*i)}}var h=x.layoutAttributes.width.min,p=x.layoutAttributes.height.min;n<h&&(n=h),i<p&&(i=p);var d=!e.width&&Math.abs(r.width-n)>1,g=!e.height&&Math.abs(r.height-i)>1;(g||d)&&(d&&(r.width=n),g&&(r.height=i)),t._initialAutoSize||(t._initialAutoSize={width:n,height:i}),x.sanitizeMargins(r)},x.supplyLayoutModuleDefaults=function(t,e,r,n){var i,a,s,l=o.componentsRegistry,u=e._basePlotModules,f=o.subplotsRegistry.cartesian;for(i in l)(s=l[i]).includeBasePlot&&s.includeBasePlot(t,e);for(var h in u.length||u.push(f),e._has(\"cartesian\")&&(o.getComponentMethod(\"grid\",\"contentDefaults\")(t,e),f.finalizeSubplots(t,e)),e._subplots)e._subplots[h].sort(c.subplotSort);for(a=0;a<u.length;a++)(s=u[a]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r);var p=e._modules;for(a=0;a<p.length;a++)(s=p[a]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r);var d=e._transformModules;for(a=0;a<d.length;a++)(s=d[a]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r,n);for(i in l)(s=l[i]).supplyLayoutDefaults&&s.supplyLayoutDefaults(t,e,r)},x.purge=function(t){var e=t._fullLayout||{};void 0!==e._glcontainer&&(e._glcontainer.selectAll(\".gl-canvas\").remove(),e._glcontainer.remove(),e._glcanvas=null),e._modeBar&&e._modeBar.destroy(),t._transitionData&&(t._transitionData._interruptCallbacks&&(t._transitionData._interruptCallbacks.length=0),t._transitionData._animationRaf&&window.cancelAnimationFrame(t._transitionData._animationRaf)),c.clearThrottle(),c.clearResponsive(t),delete t.data,delete t.layout,delete t._fullData,delete t._fullLayout,delete t.calcdata,delete t.framework,delete t.empty,delete t.fid,delete t.undoqueue,delete t.undonum,delete t.autoplay,delete t.changed,delete t._promises,delete t._redrawTimer,delete t._hmlumcount,delete t._hmpixcount,delete t._transitionData,delete t._transitioning,delete t._initialAutoSize,delete t._transitioningWithDuration,delete t._dragging,delete t._dragged,delete t._dragdata,delete t._hoverdata,delete t._snapshotInProgress,delete t._editing,delete t._mouseDownTime,delete t._legendMouseDownTime,t.removeAllListeners&&t.removeAllListeners()},x.style=function(t){var e,r=t._fullLayout._visibleModules,n=[];for(e=0;e<r.length;e++){var i=r[e];i.style&&c.pushUnique(n,i.style)}for(e=0;e<n.length;e++)n[e](t)},x.sanitizeMargins=function(t){if(t&&t.margin){var e,r=t.width,n=t.height,i=t.margin,a=r-(i.l+i.r),o=n-(i.t+i.b);a<0&&(e=(r-1)/(i.l+i.r),i.l=Math.floor(e*i.l),i.r=Math.floor(e*i.r)),o<0&&(e=(n-1)/(i.t+i.b),i.t=Math.floor(e*i.t),i.b=Math.floor(e*i.b))}},x.clearAutoMarginIds=function(t){t._fullLayout._pushmarginIds={}},x.allowAutoMargin=function(t,e){t._fullLayout._pushmarginIds[e]=1};x.autoMargin=function(t,e,r){var n=t._fullLayout,i=n.width,a=n.height,o=n.margin,s=c.constrain(i-o.l-o.r,2,64),l=c.constrain(a-o.t-o.b,2,64),u=Math.max(0,i-s),f=Math.max(0,a-l),h=n._pushmargin,p=n._pushmarginIds;if(!1!==o.autoexpand){if(r){var d=r.pad;if(void 0===d&&(d=Math.min(12,o.l,o.r,o.t,o.b)),u){var g=(r.l+r.r)/u;g>1&&(r.l/=g,r.r/=g)}if(f){var m=(r.t+r.b)/f;m>1&&(r.t/=m,r.b/=m)}var v=void 0!==r.xl?r.xl:r.x,y=void 0!==r.xr?r.xr:r.x,b=void 0!==r.yt?r.yt:r.y,_=void 0!==r.yb?r.yb:r.y;h[e]={l:{val:v,size:r.l+d},r:{val:y,size:r.r+d},b:{val:_,size:r.b+d},t:{val:b,size:r.t+d}},p[e]=1}else delete h[e],delete p[e];if(!n._replotting)return x.doAutoMargin(t)}},x.doAutoMargin=function(t){var e=t._fullLayout,r=e.width,n=e.height;e._size||(e._size={}),C(e);var i=e._size,s=e.margin,l=c.extendFlat({},i),u=s.l,f=s.r,p=s.t,d=s.b,g=e._pushmargin,m=e._pushmarginIds;if(!1!==e.margin.autoexpand){for(var v in g)m[v]||delete g[v];for(var y in g.base={l:{val:0,size:u},r:{val:1,size:f},t:{val:1,size:p},b:{val:0,size:d}},g){var b=g[y].l||{},_=g[y].b||{},w=b.val,T=b.size,k=_.val,M=_.size;for(var A in g){if(a(T)&&g[A].r){var S=g[A].r.val,E=g[A].r.size;if(S>w){var L=(T*S+(E-r)*w)/(S-w),I=(E*(1-w)+(T-r)*(1-S))/(S-w);L+I>u+f&&(u=L,f=I)}}if(a(M)&&g[A].t){var P=g[A].t.val,z=g[A].t.size;if(P>k){var O=(M*P+(z-n)*k)/(P-k),D=(z*(1-k)+(M-n)*(1-P))/(P-k);O+D>d+p&&(d=O,p=D)}}}}}var R=c.constrain(r-s.l-s.r,2,64),F=c.constrain(n-s.t-s.b,2,64),B=Math.max(0,r-R),N=Math.max(0,n-F);if(B){var j=(u+f)/B;j>1&&(u/=j,f/=j)}if(N){var U=(d+p)/N;U>1&&(d/=U,p/=U)}if(i.l=Math.round(u),i.r=Math.round(f),i.t=Math.round(p),i.b=Math.round(d),i.p=Math.round(s.pad),i.w=Math.round(r)-i.l-i.r,i.h=Math.round(n)-i.t-i.b,!e._replotting&&x.didMarginChange(l,i)){\"_redrawFromAutoMarginCount\"in e?e._redrawFromAutoMarginCount++:e._redrawFromAutoMarginCount=1;var V=3*(1+Object.keys(m).length);if(e._redrawFromAutoMarginCount<V)return o.call(\"plot\",t);e._size=l,c.warn(\"Too many auto-margin redraws.\")}!function(t){for(var e=h.list(t,\"\",!0),r=0;r<e.length;r++){var n=e[r]._hideOutOfRangeInsideTickLabels;n&&n()}}(t)};var L=[\"l\",\"r\",\"t\",\"b\",\"p\",\"w\",\"h\"];function I(t,e,r){var n=!1;var i=[x.previousPromises,function(){if(t._transitionData)return t._transitioning=!1,function(t){var e=Promise.resolve();if(!t)return e;for(;t.length;)e=e.then(t.shift());return e}(t._transitionData._interruptCallbacks)},r.prepareFn,x.rehover,function(){return t.emit(\"plotly_transitioning\",[]),new Promise((function(i){t._transitioning=!0,e.duration>0&&(t._transitioningWithDuration=!0),t._transitionData._interruptCallbacks.push((function(){n=!0})),r.redraw&&t._transitionData._interruptCallbacks.push((function(){return o.call(\"redraw\",t)})),t._transitionData._interruptCallbacks.push((function(){t.emit(\"plotly_transitioninterrupted\",[])}));var a=0,s=0;function l(){return a++,function(){s++,n||s!==a||function(e){if(!t._transitionData)return;(function(t){if(t)for(;t.length;)t.shift()})(t._transitionData._interruptCallbacks),Promise.resolve().then((function(){if(r.redraw)return o.call(\"redraw\",t)})).then((function(){t._transitioning=!1,t._transitioningWithDuration=!1,t.emit(\"plotly_transitioned\",[])})).then(e)}(i)}}r.runFn(l),setTimeout(l())}))}],a=c.syncOrAsync(i,t);return a&&a.then||(a=Promise.resolve()),a.then((function(){return t}))}x.didMarginChange=function(t,e){for(var r=0;r<L.length;r++){var n=L[r],i=t[n],o=e[n];if(!a(i)||Math.abs(o-i)>1)return!0}return!1},x.graphJson=function(t,e,r,n,i,a){(i&&e&&!t._fullData||i&&!e&&!t._fullLayout)&&x.supplyDefaults(t);var o=i?t._fullData:t.data,s=i?t._fullLayout:t.layout,l=(t._transitionData||{})._frames;function u(t,e){if(\"function\"==typeof t)return e?\"_function_\":null;if(c.isPlainObject(t)){var n,i={};return Object.keys(t).sort().forEach((function(a){if(-1===[\"_\",\"[\"].indexOf(a.charAt(0)))if(\"function\"!=typeof t[a]){if(\"keepdata\"===r){if(\"src\"===a.substr(a.length-3))return}else if(\"keepstream\"===r){if(\"string\"==typeof(n=t[a+\"src\"])&&n.indexOf(\":\")>0&&!c.isPlainObject(t.stream))return}else if(\"keepall\"!==r&&\"string\"==typeof(n=t[a+\"src\"])&&n.indexOf(\":\")>0)return;i[a]=u(t[a],e)}else e&&(i[a]=\"_function\")})),i}return Array.isArray(t)?t.map((function(t){return u(t,e)})):c.isTypedArray(t)?c.simpleMap(t,c.identity):c.isJSDate(t)?c.ms2DateTimeLocal(+t):t}var f={data:(o||[]).map((function(t){var r=u(t);return e&&delete r.fit,r}))};if(!e&&(f.layout=u(s),i)){var h=s._size;f.layout.computed={margin:{b:h.b,l:h.l,r:h.r,t:h.t}}}return t.framework&&t.framework.isPolar&&(f=t.framework.getConfig()),l&&(f.frames=u(l)),a&&(f.config=u(t._context,!0)),\"object\"===n?f:JSON.stringify(f)},x.modifyFrames=function(t,e){var r,n,i,a=t._transitionData._frames,o=t._transitionData._frameHash;for(r=0;r<e.length;r++)switch((n=e[r]).type){case\"replace\":i=n.value;var s=(a[n.index]||{}).name,l=i.name;a[n.index]=o[l]=i,l!==s&&(delete o[s],o[l]=i);break;case\"insert\":o[(i=n.value).name]=i,a.splice(n.index,0,i);break;case\"delete\":delete o[(i=a[n.index]).name],a.splice(n.index,1)}return Promise.resolve()},x.computeFrame=function(t,e){var r,n,i,a,o=t._transitionData._frameHash;if(!e)throw new Error(\"computeFrame must be given a string frame name\");var s=o[e.toString()];if(!s)return!1;for(var l=[s],c=[s.name];s.baseframe&&(s=o[s.baseframe.toString()])&&-1===c.indexOf(s.name);)l.push(s),c.push(s.name);for(var u={};s=l.pop();)if(s.layout&&(u.layout=x.extendLayout(u.layout,s.layout)),s.data){if(u.data||(u.data=[]),!(n=s.traces))for(n=[],r=0;r<s.data.length;r++)n[r]=r;for(u.traces||(u.traces=[]),r=0;r<s.data.length;r++)null!=(i=n[r])&&(-1===(a=u.traces.indexOf(i))&&(a=u.data.length,u.traces[a]=i),u.data[a]=x.extendTrace(u.data[a],s.data[r]))}return u},x.recomputeFrameHash=function(t){for(var e=t._transitionData._frameHash={},r=t._transitionData._frames,n=0;n<r.length;n++){var i=r[n];i&&i.name&&(e[i.name]=i)}},x.extendObjectWithContainers=function(t,e,r){var n,i,a,o,s,l,u,f=c.extendDeepNoArrays({},e||{}),h=c.expandObjectPaths(f),p={};if(r&&r.length)for(a=0;a<r.length;a++)void 0===(i=(n=c.nestedProperty(h,r[a])).get())?c.nestedProperty(p,r[a]).set(null):(n.set(null),c.nestedProperty(p,r[a]).set(i));if(t=c.extendDeepNoArrays(t||{},h),r&&r.length)for(a=0;a<r.length;a++)if(l=c.nestedProperty(p,r[a]).get()){for(u=(s=c.nestedProperty(t,r[a])).get(),Array.isArray(u)||(u=[],s.set(u)),o=0;o<l.length;o++){var d=l[o];u[o]=null===d?null:x.extendObjectWithContainers(u[o],d)}s.set(u)}return t},x.dataArrayContainers=[\"transforms\",\"dimensions\"],x.layoutArrayContainers=o.layoutArrayContainers,x.extendTrace=function(t,e){return x.extendObjectWithContainers(t,e,x.dataArrayContainers)},x.extendLayout=function(t,e){return x.extendObjectWithContainers(t,e,x.layoutArrayContainers)},x.transition=function(t,e,r,n,i,a){var o={redraw:i.redraw},s={},l=[];return o.prepareFn=function(){for(var i=Array.isArray(e)?e.length:0,a=n.slice(0,i),o=0;o<a.length;o++){var u=a[o],f=t._fullData[u]._module;if(f){if(f.animatable){var h=f.basePlotModule.name;s[h]||(s[h]=[]),s[h].push(u)}t.data[a[o]]=x.extendTrace(t.data[a[o]],e[o])}}var p=c.expandObjectPaths(c.extendDeepNoArrays({},r)),d=/^[xy]axis[0-9]*$/;for(var g in p)d.test(g)&&delete p[g].range;x.extendLayout(t.layout,p),delete t.calcdata,x.supplyDefaults(t),x.doCalcdata(t);var m=c.expandObjectPaths(r);if(m){var v=t._fullLayout._plots;for(var y in v){var b=v[y],_=b.xaxis,w=b.yaxis,T=_.range.slice(),k=w.range.slice(),M=null,A=null,S=null,E=null;Array.isArray(m[_._name+\".range\"])?M=m[_._name+\".range\"].slice():Array.isArray((m[_._name]||{}).range)&&(M=m[_._name].range.slice()),Array.isArray(m[w._name+\".range\"])?A=m[w._name+\".range\"].slice():Array.isArray((m[w._name]||{}).range)&&(A=m[w._name].range.slice()),T&&M&&(_.r2l(T[0])!==_.r2l(M[0])||_.r2l(T[1])!==_.r2l(M[1]))&&(S={xr0:T,xr1:M}),k&&A&&(w.r2l(k[0])!==w.r2l(A[0])||w.r2l(k[1])!==w.r2l(A[1]))&&(E={yr0:k,yr1:A}),(S||E)&&l.push(c.extendFlat({plotinfo:b},S,E))}}return Promise.resolve()},o.runFn=function(e){var n,i,o=t._fullLayout._basePlotModules,u=l.length;if(r)for(i=0;i<o.length;i++)o[i].transitionAxes&&o[i].transitionAxes(t,l,a,e);for(var f in u?((n=c.extendFlat({},a)).duration=0,delete s.cartesian):n=a,s){var h=s[f];t._fullData[h[0]]._module.basePlotModule.plot(t,h,n,e)}},I(t,a,o)},x.transitionFromReact=function(t,e,r,n){var i=t._fullLayout,a=i.transition,o={},s=[];return o.prepareFn=function(){var t=i._plots;for(var a in o.redraw=!1,\"some\"===e.anim&&(o.redraw=!0),\"some\"===r.anim&&(o.redraw=!0),t){var l=t[a],u=l.xaxis,f=l.yaxis,h=n[u._name].range.slice(),p=n[f._name].range.slice(),d=u.range.slice(),g=f.range.slice();u.setScale(),f.setScale();var m=null,v=null;u.r2l(h[0])===u.r2l(d[0])&&u.r2l(h[1])===u.r2l(d[1])||(m={xr0:h,xr1:d}),f.r2l(p[0])===f.r2l(g[0])&&f.r2l(p[1])===f.r2l(g[1])||(v={yr0:p,yr1:g}),(m||v)&&s.push(c.extendFlat({plotinfo:l},m,v))}return Promise.resolve()},o.runFn=function(r){for(var n,i,o,l=t._fullData,u=t._fullLayout._basePlotModules,f=[],h=0;h<l.length;h++)f.push(h);function p(){for(var e=0;e<u.length;e++)u[e].transitionAxes&&u[e].transitionAxes(t,s,n,r)}function d(){for(var e=0;e<u.length;e++)u[e].plot(t,o,i,r)}s.length&&e.anim?\"traces first\"===a.ordering?(n=c.extendFlat({},a,{duration:0}),o=f,i=a,setTimeout(p,a.duration),d()):(n=a,o=null,i=c.extendFlat({},a,{duration:0}),setTimeout(d,n.duration),p()):s.length?(n=a,p()):e.anim&&(o=f,i=a,d())},I(t,a,o)},x.doCalcdata=function(t,e){var r,n,i,a,l=h.list(t),u=t._fullData,p=t._fullLayout,d=new Array(u.length),g=(t.calcdata||[]).slice();for(t.calcdata=d,p._numBoxes=0,p._numViolins=0,p._violinScaleGroupStats={},t._hmpixcount=0,t._hmlumcount=0,p._piecolormap={},p._sunburstcolormap={},p._treemapcolormap={},p._funnelareacolormap={},i=0;i<u.length;i++)Array.isArray(e)&&-1===e.indexOf(i)&&(d[i]=g[i]);for(i=0;i<u.length;i++)(r=u[i])._arrayAttrs=s.findArrayAttributes(r),r._extremes={};var m=p._subplots.polar||[];for(i=0;i<m.length;i++)l.push(p[m[i]].radialaxis,p[m[i]].angularaxis);for(var v in p._colorAxes){var y=p[v];!1!==y.cauto&&(delete y.cmin,delete y.cmax)}var x=!1;function _(e){if(r=u[e],n=r._module,!0===r.visible&&r.transforms){if(n&&n.calc){var i=n.calc(t,r);i[0]&&i[0].t&&i[0].t._scene&&delete i[0].t._scene.dirty}for(a=0;a<r.transforms.length;a++){var o=r.transforms[a];(n=b[o.type])&&n.calcTransform&&(r._hasCalcTransform=!0,x=!0,n.calcTransform(t,r,o))}}}function w(e,i){if(r=u[e],!!(n=r._module).isContainer===i){var o=[];if(!0===r.visible&&0!==r._length){delete r._indexToPoints;var s=r.transforms||[];for(a=s.length-1;a>=0;a--)if(s[a].enabled){r._indexToPoints=s[a]._indexToPoints;break}n&&n.calc&&(o=n.calc(t,r))}Array.isArray(o)&&o[0]||(o=[{x:f,y:f}]),o[0].t||(o[0].t={}),o[0].trace=r,d[e]=o}}for(z(l,u,p),i=0;i<u.length;i++)w(i,!0);for(i=0;i<u.length;i++)_(i);for(x&&z(l,u,p),i=0;i<u.length;i++)w(i,!0);for(i=0;i<u.length;i++)w(i,!1);O(t);var T=function(t,e){var r,n,i,a,s,l=[];function u(t,r,n){var i=r._id.charAt(0);if(\"histogram2dcontour\"===t){var a=r._counterAxes[0],o=h.getFromId(e,a),s=\"x\"===i||\"x\"===a&&\"category\"===o.type,l=\"y\"===i||\"y\"===a&&\"category\"===o.type;return function(t,e){return 0===t||0===e||s&&t===n[e].length-1||l&&e===n.length-1?-1:(\"y\"===i?e:t)-1}}return function(t,e){return\"y\"===i?e:t}}var f={min:function(t){return c.aggNums(Math.min,null,t)},max:function(t){return c.aggNums(Math.max,null,t)},sum:function(t){return c.aggNums((function(t,e){return t+e}),null,t)},total:function(t){return c.aggNums((function(t,e){return t+e}),null,t)},mean:function(t){return c.mean(t)},median:function(t){return c.median(t)}};for(r=0;r<t.length;r++){var p=t[r];if(\"category\"===p.type){var d=p.categoryorder.match(P);if(d){var g=d[1],m=d[2],v=p._id.charAt(0),y=\"x\"===v,x=[];for(n=0;n<p._categories.length;n++)x.push([p._categories[n],[]]);for(n=0;n<p._traceIndices.length;n++){var b=p._traceIndices[n],_=e._fullData[b];if(!0===_.visible){var w=_.type;o.traceIs(_,\"histogram\")&&(delete _._xautoBinFinished,delete _._yautoBinFinished);var T=\"splom\"===w,k=\"scattergl\"===w,M=e.calcdata[b];for(i=0;i<M.length;i++){var A,S,E=M[i];if(T){var C=_._axesDim[p._id];if(!y){var L=_._diag[C][0];L&&(p=e._fullLayout[h.id2name(L)])}var I=E.trace.dimensions[C].values;for(a=0;a<I.length;a++)for(A=p._categoriesMap[I[a]],s=0;s<E.trace.dimensions.length;s++)if(s!==C){var z=E.trace.dimensions[s];x[A][1].push(z.values[a])}}else if(k){for(a=0;a<E.t.x.length;a++)y?(A=E.t.x[a],S=E.t.y[a]):(A=E.t.y[a],S=E.t.x[a]),x[A][1].push(S);E.t&&E.t._scene&&delete E.t._scene.dirty}else if(E.hasOwnProperty(\"z\")){S=E.z;var O=u(_.type,p,S);for(a=0;a<S.length;a++)for(s=0;s<S[a].length;s++)(A=O(s,a))+1&&x[A][1].push(S[a][s])}else for(void 0===(A=E.p)&&(A=E[v]),void 0===(S=E.s)&&(S=E.v),void 0===S&&(S=y?E.y:E.x),Array.isArray(S)||(S=void 0===S?[]:[S]),a=0;a<S.length;a++)x[A][1].push(S[a])}}}p._categoriesValue=x;var D=[];for(n=0;n<x.length;n++)D.push([x[n][0],f[g](x[n][1])]);D.sort((function(t,e){return t[1]-e[1]})),p._categoriesAggregatedValue=D,p._initialCategories=D.map((function(t){return t[0]})),\"descending\"===m&&p._initialCategories.reverse(),l=l.concat(p.sortByInitialCategories())}}}return l}(l,t);if(T.length){for(p._numBoxes=0,p._numViolins=0,i=0;i<T.length;i++)w(T[i],!0);for(i=0;i<T.length;i++)w(T[i],!1);O(t)}o.getComponentMethod(\"fx\",\"calc\")(t),o.getComponentMethod(\"errorbars\",\"calc\")(t)};var P=/(total|sum|min|max|mean|median) (ascending|descending)/;function z(t,e,r){var n={};function i(t){t.clearCalc(),\"multicategory\"===t.type&&t.setupMultiCategory(e),n[t._id]=1}c.simpleMap(t,i);for(var a=r._axisMatchGroups||[],o=0;o<a.length;o++)for(var s in a[o])n[s]||i(r[h.id2name(s)])}function O(t){var e,r,n,i=t._fullLayout,a=i._visibleModules,o={};for(r=0;r<a.length;r++){var s=a[r],l=s.crossTraceCalc;if(l){var u=s.basePlotModule.name;o[u]?c.pushUnique(o[u],l):o[u]=[l]}}for(n in o){var f=o[n],h=i._subplots[n];if(Array.isArray(h))for(e=0;e<h.length;e++){var p=h[e],d=\"cartesian\"===n?i._plots[p]:i[p];for(r=0;r<f.length;r++)f[r](t,d,p)}else for(r=0;r<f.length;r++)f[r](t)}}x.rehover=function(t){t._fullLayout._rehover&&t._fullLayout._rehover()},x.redrag=function(t){t._fullLayout._redrag&&t._fullLayout._redrag()},x.generalUpdatePerTraceModule=function(t,e,r,n){var i,a=e.traceHash,o={};for(i=0;i<r.length;i++){var s=r[i],l=s[0].trace;l.visible&&(o[l.type]=o[l.type]||[],o[l.type].push(s))}for(var u in a)if(!o[u]){var f=a[u][0];f[0].trace.visible=!1,o[u]=[f]}for(var h in o){var p=o[h];p[0][0].trace._module.plot(t,e,c.filterVisible(p),n)}e.traceHash=o},x.plotBasePlot=function(t,e,r,n,i){var a=o.getModule(t),s=m(e.calcdata,a)[0];a.plot(e,s,n,i)},x.cleanBasePlot=function(t,e,r,n,i){var a=i._has&&i._has(t),o=r._has&&r._has(t);a&&!o&&i[\"_\"+t+\"layer\"].selectAll(\"g.trace\").remove()}},{\"../components/color\":643,\"../constants/numerical\":753,\"../lib\":778,\"../plot_api/plot_schema\":816,\"../plot_api/plot_template\":817,\"../plots/get_data\":865,\"../registry\":911,\"./animation_attributes\":822,\"./attributes\":824,\"./cartesian/axis_ids\":831,\"./cartesian/handle_outline\":838,\"./command\":854,\"./font_attributes\":856,\"./frame_attributes\":857,\"./layout_attributes\":882,d3:169,\"d3-time-format\":166,\"fast-isnumeric\":241}],892:[function(t,e,r){\"use strict\";e.exports={attr:\"subplot\",name:\"polar\",axisNames:[\"angularaxis\",\"radialaxis\"],axisName2dataArray:{angularaxis:\"theta\",radialaxis:\"r\"},layerNames:[\"draglayer\",\"plotbg\",\"backplot\",\"angular-grid\",\"radial-grid\",\"frontplot\",\"angular-line\",\"radial-line\",\"angular-axis\",\"radial-axis\"],radialDragBoxSize:50,angularDragBoxSize:30,cornerLen:25,cornerHalfWidth:2,MINDRAG:8,MINZOOM:20,OFFEDGE:20}},{}],893:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../lib/polygon\").tester,a=n.findIndexOfMin,o=n.isAngleInsideSector,s=n.angleDelta,l=n.angleDist;function c(t,e,r,n){var i,a,o=n[0],s=n[1],l=f(Math.sin(e)-Math.sin(t)),c=f(Math.cos(e)-Math.cos(t)),u=Math.tan(r),h=f(1/u),p=l/c,d=s-p*o;return h?l&&c?a=u*(i=d/(u-p)):c?(i=s*h,a=s):(i=o,a=o*u):l&&c?(i=0,a=d):c?(i=0,a=s):i=a=NaN,[i,a]}function u(t,e,r,i){return n.isFullCircle([e,r])?function(t,e){var r,n=e.length,i=new Array(n+1);for(r=0;r<n;r++){var a=e[r];i[r]=[t*Math.cos(a),t*Math.sin(a)]}return i[r]=i[0].slice(),i}(t,i):function(t,e,r,i){var s,u,f=i.length,h=[];function p(e){return[t*Math.cos(e),t*Math.sin(e)]}function d(t,e,r){return c(t,e,r,p(t))}function g(t){return n.mod(t,f)}function m(t){return o(t,[e,r])}var v=a(i,(function(t){return m(t)?l(t,e):1/0})),y=d(i[v],i[g(v-1)],e);for(h.push(y),s=v,u=0;u<f;s++,u++){var x=i[g(s)];if(!m(x))break;h.push(p(x))}var b=a(i,(function(t){return m(t)?l(t,r):1/0})),_=d(i[b],i[g(b+1)],r);return h.push(_),h.push([0,0]),h.push(h[0].slice()),h}(t,e,r,i)}function f(t){return Math.abs(t)>1e-10?t:0}function h(t,e,r){e=e||0,r=r||0;for(var n=t.length,i=new Array(n),a=0;a<n;a++){var o=t[a];i[a]=[e+o[0],r-o[1]]}return i}e.exports={isPtInsidePolygon:function(t,e,r,n,a){if(!o(e,n))return!1;var s,l;r[0]<r[1]?(s=r[0],l=r[1]):(s=r[1],l=r[0]);var c=i(u(s,n[0],n[1],a)),f=i(u(l,n[0],n[1],a)),h=[t*Math.cos(e),t*Math.sin(e)];return f.contains(h)&&!c.contains(h)},findPolygonOffset:function(t,e,r,n){for(var i=1/0,a=1/0,o=u(t,e,r,n),s=0;s<o.length;s++){var l=o[s];i=Math.min(i,l[0]),a=Math.min(a,-l[1])}return[i,a]},findEnclosingVertexAngles:function(t,e){var r=a(e,(function(e){var r=s(e,t);return r>0?r:1/0})),i=n.mod(r+1,e.length);return[e[r],e[i]]},findIntersectionXY:c,findXYatLength:function(t,e,r,n){var i=-e*r,a=e*e+1,o=2*(e*i-r),s=i*i+r*r-t*t,l=Math.sqrt(o*o-4*a*s),c=(-o+l)/(2*a),u=(-o-l)/(2*a);return[[c,e*c+i+n],[u,e*u+i+n]]},clampTiny:f,pathPolygon:function(t,e,r,n,i,a){return\"M\"+h(u(t,e,r,n),i,a).join(\"L\")},pathPolygonAnnulus:function(t,e,r,n,i,a,o){var s,l;t<e?(s=t,l=e):(s=e,l=t);var c=h(u(s,r,n,i),a,o);return\"M\"+h(u(l,r,n,i),a,o).reverse().join(\"L\")+\"M\"+c.join(\"L\")}}},{\"../../lib\":778,\"../../lib/polygon\":790}],894:[function(t,e,r){\"use strict\";var n=t(\"../get_data\").getSubplotCalcData,i=t(\"../../lib\").counterRegex,a=t(\"./polar\"),o=t(\"./constants\"),s=o.attr,l=o.name,c=i(l),u={};u[s]={valType:\"subplotid\",dflt:l,editType:\"calc\"},e.exports={attr:s,name:l,idRoot:l,idRegex:c,attrRegex:c,attributes:u,layoutAttributes:t(\"./layout_attributes\"),supplyLayoutDefaults:t(\"./layout_defaults\"),plot:function(t){for(var e=t._fullLayout,r=t.calcdata,i=e._subplots[l],o=0;o<i.length;o++){var s=i[o],c=n(r,l,s),u=e[s]._subplot;u||(u=a(t,s),e[s]._subplot=u),u.plot(c,e,t._promises)}},clean:function(t,e,r,n){for(var i=n._subplots[l]||[],a=n._has&&n._has(\"gl\"),o=e._has&&e._has(\"gl\"),s=a&&!o,c=0;c<i.length;c++){var u=i[c],f=n[u]._subplot;if(!e[u]&&f)for(var h in f.framework.remove(),f.layers[\"radial-axis-title\"].remove(),f.clipPaths)f.clipPaths[h].remove();s&&f._scene&&(f._scene.destroy(),f._scene=null)}},toSVG:t(\"../cartesian\").toSVG}},{\"../../lib\":778,\"../cartesian\":841,\"../get_data\":865,\"./constants\":892,\"./layout_attributes\":895,\"./layout_defaults\":896,\"./polar\":903}],895:[function(t,e,r){\"use strict\";var n=t(\"../../components/color/attributes\"),i=t(\"../cartesian/layout_attributes\"),a=t(\"../domain\").attributes,o=t(\"../../lib\").extendFlat,s=t(\"../../plot_api/edit_types\").overrideAll,l=s({color:i.color,showline:o({},i.showline,{dflt:!0}),linecolor:i.linecolor,linewidth:i.linewidth,showgrid:o({},i.showgrid,{dflt:!0}),gridcolor:i.gridcolor,gridwidth:i.gridwidth},\"plot\",\"from-root\"),c=s({tickmode:i.tickmode,nticks:i.nticks,tick0:i.tick0,dtick:i.dtick,tickvals:i.tickvals,ticktext:i.ticktext,ticks:i.ticks,ticklen:i.ticklen,tickwidth:i.tickwidth,tickcolor:i.tickcolor,showticklabels:i.showticklabels,showtickprefix:i.showtickprefix,tickprefix:i.tickprefix,showticksuffix:i.showticksuffix,ticksuffix:i.ticksuffix,showexponent:i.showexponent,exponentformat:i.exponentformat,minexponent:i.minexponent,separatethousands:i.separatethousands,tickfont:i.tickfont,tickangle:i.tickangle,tickformat:i.tickformat,tickformatstops:i.tickformatstops,layer:i.layer},\"plot\",\"from-root\"),u={visible:o({},i.visible,{dflt:!0}),type:o({},i.type,{values:[\"-\",\"linear\",\"log\",\"date\",\"category\"]}),autotypenumbers:i.autotypenumbers,autorange:o({},i.autorange,{editType:\"plot\"}),rangemode:{valType:\"enumerated\",values:[\"tozero\",\"nonnegative\",\"normal\"],dflt:\"tozero\",editType:\"calc\"},range:o({},i.range,{items:[{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}},{valType:\"any\",editType:\"plot\",impliedEdits:{\"^autorange\":!1}}],editType:\"plot\"}),categoryorder:i.categoryorder,categoryarray:i.categoryarray,angle:{valType:\"angle\",editType:\"plot\"},side:{valType:\"enumerated\",values:[\"clockwise\",\"counterclockwise\"],dflt:\"clockwise\",editType:\"plot\"},title:{text:o({},i.title.text,{editType:\"plot\",dflt:\"\"}),font:o({},i.title.font,{editType:\"plot\"}),editType:\"plot\"},hoverformat:i.hoverformat,uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\",_deprecated:{title:i._deprecated.title,titlefont:i._deprecated.titlefont}};o(u,l,c);var f={visible:o({},i.visible,{dflt:!0}),type:{valType:\"enumerated\",values:[\"-\",\"linear\",\"category\"],dflt:\"-\",editType:\"calc\",_noTemplating:!0},autotypenumbers:i.autotypenumbers,categoryorder:i.categoryorder,categoryarray:i.categoryarray,thetaunit:{valType:\"enumerated\",values:[\"radians\",\"degrees\"],dflt:\"degrees\",editType:\"calc\"},period:{valType:\"number\",editType:\"calc\",min:0},direction:{valType:\"enumerated\",values:[\"counterclockwise\",\"clockwise\"],dflt:\"counterclockwise\",editType:\"calc\"},rotation:{valType:\"angle\",editType:\"calc\"},hoverformat:i.hoverformat,uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\"};o(f,l,c),e.exports={domain:a({name:\"polar\",editType:\"plot\"}),sector:{valType:\"info_array\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],dflt:[0,360],editType:\"plot\"},hole:{valType:\"number\",min:0,max:1,dflt:0,editType:\"plot\"},bgcolor:{valType:\"color\",editType:\"plot\",dflt:n.background},radialaxis:u,angularaxis:f,gridshape:{valType:\"enumerated\",values:[\"circular\",\"linear\"],dflt:\"circular\",editType:\"plot\"},uirevision:{valType:\"any\",editType:\"none\"},editType:\"calc\"}},{\"../../components/color/attributes\":642,\"../../lib\":778,\"../../plot_api/edit_types\":810,\"../cartesian/layout_attributes\":842,\"../domain\":855}],896:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/color\"),a=t(\"../../plot_api/plot_template\"),o=t(\"../subplot_defaults\"),s=t(\"../get_data\").getSubplotData,l=t(\"../cartesian/tick_value_defaults\"),c=t(\"../cartesian/tick_mark_defaults\"),u=t(\"../cartesian/tick_label_defaults\"),f=t(\"../cartesian/category_order_defaults\"),h=t(\"../cartesian/line_grid_defaults\"),p=t(\"../cartesian/axis_autotype\"),d=t(\"./layout_attributes\"),g=t(\"./set_convert\"),m=t(\"./constants\"),v=m.axisNames;function y(t,e,r,o){var p=r(\"bgcolor\");o.bgColor=i.combine(p,o.paper_bgcolor);var y=r(\"sector\");r(\"hole\");var b,_=s(o.fullData,m.name,o.id),w=o.layoutOut;function T(t,e){return r(b+\".\"+t,e)}for(var k=0;k<v.length;k++){b=v[k],n.isPlainObject(t[b])||(t[b]={});var M=t[b],A=a.newContainer(e,b);A._id=A._name=b,A._attr=o.id+\".\"+b,A._traceIndices=_.map((function(t){return t._expandedIndex}));var S=m.axisName2dataArray[b],E=x(M,A,T,_,S,o);f(M,A,T,{axData:_,dataAttr:S});var C,L,I=T(\"visible\");switch(g(A,e,w),T(\"uirevision\",e.uirevision),I&&(L=(C=T(\"color\"))===M.color?C:o.font.color),A._m=1,b){case\"radialaxis\":var P=T(\"autorange\",!A.isValidRange(M.range));M.autorange=P,!P||\"linear\"!==E&&\"-\"!==E||T(\"rangemode\"),\"reversed\"===P&&(A._m=-1),T(\"range\"),A.cleanRange(\"range\",{dfltRange:[0,1]}),I&&(T(\"side\"),T(\"angle\",y[0]),T(\"title.text\"),n.coerceFont(T,\"title.font\",{family:o.font.family,size:Math.round(1.2*o.font.size),color:L}));break;case\"angularaxis\":if(\"date\"===E){n.log(\"Polar plots do not support date angular axes yet.\");for(var z=0;z<_.length;z++)_[z].visible=!1;E=M.type=A.type=\"linear\"}T(\"linear\"===E?\"thetaunit\":\"period\");var O=T(\"direction\");T(\"rotation\",{counterclockwise:0,clockwise:90}[O])}if(I)l(M,A,T,A.type),u(M,A,T,A.type,{tickSuffixDflt:\"degrees\"===A.thetaunit?\"\\xb0\":void 0}),c(M,A,T,{outerTicks:!0}),T(\"showticklabels\")&&(n.coerceFont(T,\"tickfont\",{family:o.font.family,size:o.font.size,color:L}),T(\"tickangle\"),T(\"tickformat\")),h(M,A,T,{dfltColor:C,bgColor:o.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:d[b]}),T(\"layer\");\"category\"!==E&&T(\"hoverformat\"),A._input=M}\"category\"===e.angularaxis.type&&r(\"gridshape\")}function x(t,e,r,n,i,a){var o=r(\"autotypenumbers\",a.autotypenumbersDflt);if(\"-\"===r(\"type\")){for(var s,l=0;l<n.length;l++)if(n[l].visible){s=n[l];break}s&&s[i]&&(e.type=p(s[i],\"gregorian\",{noMultiCategory:!0,autotypenumbers:o})),\"-\"===e.type?e.type=\"linear\":t.type=e.type}return e.type}e.exports=function(t,e,r){o(t,e,r,{type:m.name,attributes:d,handleDefaults:y,font:e.font,autotypenumbersDflt:e.autotypenumbers,paper_bgcolor:e.paper_bgcolor,fullData:r,layoutOut:e})}},{\"../../components/color\":643,\"../../lib\":778,\"../../plot_api/plot_template\":817,\"../cartesian/axis_autotype\":829,\"../cartesian/category_order_defaults\":832,\"../cartesian/line_grid_defaults\":844,\"../cartesian/tick_label_defaults\":849,\"../cartesian/tick_mark_defaults\":850,\"../cartesian/tick_value_defaults\":851,\"../get_data\":865,\"../subplot_defaults\":905,\"./constants\":892,\"./layout_attributes\":895,\"./set_convert\":904}],897:[function(t,e,r){\"use strict\";var n=t(\"../../../traces/scatter/attributes\"),i=n.marker,a=t(\"../../../lib/extend\").extendFlat;[\"Area traces are deprecated!\",\"Please switch to the *barpolar* trace type.\"].join(\" \");e.exports={r:a({},n.r,{}),t:a({},n.t,{}),marker:{color:a({},i.color,{}),size:a({},i.size,{}),symbol:a({},i.symbol,{}),opacity:a({},i.opacity,{}),editType:\"calc\"}}},{\"../../../lib/extend\":768,\"../../../traces/scatter/attributes\":1187}],898:[function(t,e,r){\"use strict\";var n=t(\"../../cartesian/layout_attributes\"),i=t(\"../../../lib/extend\").extendFlat,a=t(\"../../../plot_api/edit_types\").overrideAll,o=[\"Legacy polar charts are deprecated!\",\"Please switch to *polar* subplots.\"].join(\" \"),s=i({},n.domain,{});function l(t,e){return i({},e,{showline:{valType:\"boolean\"},showticklabels:{valType:\"boolean\"},tickorientation:{valType:\"enumerated\",values:[\"horizontal\",\"vertical\"]},ticklen:{valType:\"number\",min:0},tickcolor:{valType:\"color\"},ticksuffix:{valType:\"string\"},endpadding:{valType:\"number\",description:o},visible:{valType:\"boolean\"}})}e.exports=a({radialaxis:l(0,{range:{valType:\"info_array\",items:[{valType:\"number\"},{valType:\"number\"}]},domain:s,orientation:{valType:\"number\"}}),angularaxis:l(0,{range:{valType:\"info_array\",items:[{valType:\"number\",dflt:0},{valType:\"number\",dflt:360}]},domain:s}),layout:{direction:{valType:\"enumerated\",values:[\"clockwise\",\"counterclockwise\"]},orientation:{valType:\"angle\"}}},\"plot\",\"nested\")},{\"../../../lib/extend\":768,\"../../../plot_api/edit_types\":810,\"../../cartesian/layout_attributes\":842}],899:[function(t,e,r){\"use strict\";(e.exports=t(\"./micropolar\")).manager=t(\"./micropolar_manager\")},{\"./micropolar\":900,\"./micropolar_manager\":901}],900:[function(t,e,r){var n=t(\"d3\"),i=t(\"../../../lib\").extendDeepAll,a=t(\"../../../constants/alignment\").MID_SHIFT,o=e.exports={version:\"0.2.2\"};o.Axis=function(){var t,e,r,s,l={data:[],layout:{}},c={},u={},f=n.dispatch(\"hover\"),h={};return h.render=function(c){return function(c){e=c||e;var f=l.data,h=l.layout;(\"string\"==typeof e||e.nodeName)&&(e=n.select(e)),e.datum(f).each((function(e,l){var c=e.slice();u={data:o.util.cloneJson(c),layout:o.util.cloneJson(h)};var f=0;c.forEach((function(t,e){t.color||(t.color=h.defaultColorRange[f],f=(f+1)%h.defaultColorRange.length),t.strokeColor||(t.strokeColor=\"LinePlot\"===t.geometry?t.color:n.rgb(t.color).darker().toString()),u.data[e].color=t.color,u.data[e].strokeColor=t.strokeColor,u.data[e].strokeDash=t.strokeDash,u.data[e].strokeSize=t.strokeSize}));var p=c.filter((function(t,e){var r=t.visible;return\"undefined\"==typeof r||!0===r})),d=!1,g=p.map((function(t,e){return d=d||\"undefined\"!=typeof t.groupId,t}));if(d){var m=n.nest().key((function(t,e){return\"undefined\"!=typeof t.groupId?t.groupId:\"unstacked\"})).entries(g),v=[],y=m.map((function(t,e){if(\"unstacked\"===t.key)return t.values;var r=t.values[0].r.map((function(t,e){return 0}));return t.values.forEach((function(t,e,n){t.yStack=[r],v.push(r),r=o.util.sumArrays(t.r,r)})),t.values}));p=n.merge(y)}p.forEach((function(t,e){t.t=Array.isArray(t.t[0])?t.t:[t.t],t.r=Array.isArray(t.r[0])?t.r:[t.r]}));var x=Math.min(h.width-h.margin.left-h.margin.right,h.height-h.margin.top-h.margin.bottom)/2;x=Math.max(10,x);var b,_=[h.margin.left+x,h.margin.top+x];d?b=[0,n.max(o.util.sumArrays(o.util.arrayLast(p).r[0],o.util.arrayLast(v)))]:b=n.extent(o.util.flattenArray(p.map((function(t,e){return t.r}))));h.radialAxis.domain!=o.DATAEXTENT&&(b[0]=0),r=n.scale.linear().domain(h.radialAxis.domain!=o.DATAEXTENT&&h.radialAxis.domain?h.radialAxis.domain:b).range([0,x]),u.layout.radialAxis.domain=r.domain();var w,T=o.util.flattenArray(p.map((function(t,e){return t.t}))),k=\"string\"==typeof T[0];k&&(T=o.util.deduplicate(T),w=T.slice(),T=n.range(T.length),p=p.map((function(t,e){var r=t;return t.t=[T],d&&(r.yStack=t.yStack),r})));var M=p.filter((function(t,e){return\"LinePlot\"===t.geometry||\"DotPlot\"===t.geometry})).length===p.length,A=null===h.needsEndSpacing?k||!M:h.needsEndSpacing,S=h.angularAxis.domain&&h.angularAxis.domain!=o.DATAEXTENT&&!k&&h.angularAxis.domain[0]>=0?h.angularAxis.domain:n.extent(T),E=Math.abs(T[1]-T[0]);M&&!k&&(E=0);var C=S.slice();A&&k&&(C[1]+=E);var L=h.angularAxis.ticksCount||4;L>8&&(L=L/(L/8)+L%8),h.angularAxis.ticksStep&&(L=(C[1]-C[0])/L);var I=h.angularAxis.ticksStep||(C[1]-C[0])/(L*(h.minorTicks+1));w&&(I=Math.max(Math.round(I),1)),C[2]||(C[2]=I);var P=n.range.apply(this,C);if(P=P.map((function(t,e){return parseFloat(t.toPrecision(12))})),s=n.scale.linear().domain(C.slice(0,2)).range(\"clockwise\"===h.direction?[0,360]:[360,0]),u.layout.angularAxis.domain=s.domain(),u.layout.angularAxis.endPadding=A?E:0,\"undefined\"==typeof(t=n.select(this).select(\"svg.chart-root\"))||t.empty()){var z=(new DOMParser).parseFromString(\"<svg xmlns='http://www.w3.org/2000/svg' class='chart-root'>' + '<g class='outer-group'>' + '<g class='chart-group'>' + '<circle class='background-circle'></circle>' + '<g class='geometry-group'></g>' + '<g class='radial axis-group'>' + '<circle class='outside-circle'></circle>' + '</g>' + '<g class='angular axis-group'></g>' + '<g class='guides-group'><line></line><circle r='0'></circle></g>' + '</g>' + '<g class='legend-group'></g>' + '<g class='tooltips-group'></g>' + '<g class='title-group'><text></text></g>' + '</g>' + '</svg>\",\"application/xml\"),O=this.appendChild(this.ownerDocument.importNode(z.documentElement,!0));t=n.select(O)}t.select(\".guides-group\").style({\"pointer-events\":\"none\"}),t.select(\".angular.axis-group\").style({\"pointer-events\":\"none\"}),t.select(\".radial.axis-group\").style({\"pointer-events\":\"none\"});var D,R=t.select(\".chart-group\"),F={fill:\"none\",stroke:h.tickColor},B={\"font-size\":h.font.size,\"font-family\":h.font.family,fill:h.font.color,\"text-shadow\":[\"-1px 0px\",\"1px -1px\",\"-1px 1px\",\"1px 1px\"].map((function(t,e){return\" \"+t+\" 0 \"+h.font.outlineColor})).join(\",\")};if(h.showLegend){D=t.select(\".legend-group\").attr({transform:\"translate(\"+[x,h.margin.top]+\")\"}).style({display:\"block\"});var N=p.map((function(t,e){var r=o.util.cloneJson(t);return r.symbol=\"DotPlot\"===t.geometry?t.dotType||\"circle\":\"LinePlot\"!=t.geometry?\"square\":\"line\",r.visibleInLegend=\"undefined\"==typeof t.visibleInLegend||t.visibleInLegend,r.color=\"LinePlot\"===t.geometry?t.strokeColor:t.color,r}));o.Legend().config({data:p.map((function(t,e){return t.name||\"Element\"+e})),legendConfig:i({},o.Legend.defaultConfig().legendConfig,{container:D,elements:N,reverseOrder:h.legend.reverseOrder})})();var j=D.node().getBBox();x=Math.min(h.width-j.width-h.margin.left-h.margin.right,h.height-h.margin.top-h.margin.bottom)/2,x=Math.max(10,x),_=[h.margin.left+x,h.margin.top+x],r.range([0,x]),u.layout.radialAxis.domain=r.domain(),D.attr(\"transform\",\"translate(\"+[_[0]+x,_[1]-x]+\")\")}else D=t.select(\".legend-group\").style({display:\"none\"});t.attr({width:h.width,height:h.height}).style({opacity:h.opacity}),R.attr(\"transform\",\"translate(\"+_+\")\").style({cursor:\"crosshair\"});var U=[(h.width-(h.margin.left+h.margin.right+2*x+(j?j.width:0)))/2,(h.height-(h.margin.top+h.margin.bottom+2*x))/2];if(U[0]=Math.max(0,U[0]),U[1]=Math.max(0,U[1]),t.select(\".outer-group\").attr(\"transform\",\"translate(\"+U+\")\"),h.title&&h.title.text){var V=t.select(\"g.title-group text\").style(B).text(h.title.text),q=V.node().getBBox();V.attr({x:_[0]-q.width/2,y:_[1]-x-20})}var H=t.select(\".radial.axis-group\");if(h.radialAxis.gridLinesVisible){var G=H.selectAll(\"circle.grid-circle\").data(r.ticks(5));G.enter().append(\"circle\").attr({class:\"grid-circle\"}).style(F),G.attr(\"r\",r),G.exit().remove()}H.select(\"circle.outside-circle\").attr({r:x}).style(F);var Y=t.select(\"circle.background-circle\").attr({r:x}).style({fill:h.backgroundColor,stroke:h.stroke});function W(t,e){return s(t)%360+h.orientation}if(h.radialAxis.visible){var X=n.svg.axis().scale(r).ticks(5).tickSize(5);H.call(X).attr({transform:\"rotate(\"+h.radialAxis.orientation+\")\"}),H.selectAll(\".domain\").style(F),H.selectAll(\"g>text\").text((function(t,e){return this.textContent+h.radialAxis.ticksSuffix})).style(B).style({\"text-anchor\":\"start\"}).attr({x:0,y:0,dx:0,dy:0,transform:function(t,e){return\"horizontal\"===h.radialAxis.tickOrientation?\"rotate(\"+-h.radialAxis.orientation+\") translate(\"+[0,B[\"font-size\"]]+\")\":\"translate(\"+[0,B[\"font-size\"]]+\")\"}}),H.selectAll(\"g>line\").style({stroke:\"black\"})}var Z=t.select(\".angular.axis-group\").selectAll(\"g.angular-tick\").data(P),J=Z.enter().append(\"g\").classed(\"angular-tick\",!0);Z.attr({transform:function(t,e){return\"rotate(\"+W(t)+\")\"}}).style({display:h.angularAxis.visible?\"block\":\"none\"}),Z.exit().remove(),J.append(\"line\").classed(\"grid-line\",!0).classed(\"major\",(function(t,e){return e%(h.minorTicks+1)==0})).classed(\"minor\",(function(t,e){return!(e%(h.minorTicks+1)==0)})).style(F),J.selectAll(\".minor\").style({stroke:h.minorTickColor}),Z.select(\"line.grid-line\").attr({x1:h.tickLength?x-h.tickLength:0,x2:x}).style({display:h.angularAxis.gridLinesVisible?\"block\":\"none\"}),J.append(\"text\").classed(\"axis-text\",!0).style(B);var K=Z.select(\"text.axis-text\").attr({x:x+h.labelOffset,dy:a+\"em\",transform:function(t,e){var r=W(t),n=x+h.labelOffset,i=h.angularAxis.tickOrientation;return\"horizontal\"==i?\"rotate(\"+-r+\" \"+n+\" 0)\":\"radial\"==i?r<270&&r>90?\"rotate(180 \"+n+\" 0)\":null:\"rotate(\"+(r<=180&&r>0?-90:90)+\" \"+n+\" 0)\"}}).style({\"text-anchor\":\"middle\",display:h.angularAxis.labelsVisible?\"block\":\"none\"}).text((function(t,e){return e%(h.minorTicks+1)!=0?\"\":w?w[t]+h.angularAxis.ticksSuffix:t+h.angularAxis.ticksSuffix})).style(B);h.angularAxis.rewriteTicks&&K.text((function(t,e){return e%(h.minorTicks+1)!=0?\"\":h.angularAxis.rewriteTicks(this.textContent,e)}));var Q=n.max(R.selectAll(\".angular-tick text\")[0].map((function(t,e){return t.getCTM().e+t.getBBox().width})));D.attr({transform:\"translate(\"+[x+Q,h.margin.top]+\")\"});var $=t.select(\"g.geometry-group\").selectAll(\"g\").size()>0,tt=t.select(\"g.geometry-group\").selectAll(\"g.geometry\").data(p);if(tt.enter().append(\"g\").attr({class:function(t,e){return\"geometry geometry\"+e}}),tt.exit().remove(),p[0]||$){var et=[];p.forEach((function(t,e){var n={};n.radialScale=r,n.angularScale=s,n.container=tt.filter((function(t,r){return r==e})),n.geometry=t.geometry,n.orientation=h.orientation,n.direction=h.direction,n.index=e,et.push({data:t,geometryConfig:n})}));var rt=n.nest().key((function(t,e){return\"undefined\"!=typeof t.data.groupId||\"unstacked\"})).entries(et),nt=[];rt.forEach((function(t,e){\"unstacked\"===t.key?nt=nt.concat(t.values.map((function(t,e){return[t]}))):nt.push(t.values)})),nt.forEach((function(t,e){var r;r=Array.isArray(t)?t[0].geometryConfig.geometry:t.geometryConfig.geometry;var n=t.map((function(t,e){return i(o[r].defaultConfig(),t)}));o[r]().config(n)()}))}var it,at,ot=t.select(\".guides-group\"),st=t.select(\".tooltips-group\"),lt=o.tooltipPanel().config({container:st,fontSize:8})(),ct=o.tooltipPanel().config({container:st,fontSize:8})(),ut=o.tooltipPanel().config({container:st,hasTick:!0})();if(!k){var ft=ot.select(\"line\").attr({x1:0,y1:0,y2:0}).style({stroke:\"grey\",\"pointer-events\":\"none\"});R.on(\"mousemove.angular-guide\",(function(t,e){var r=o.util.getMousePos(Y).angle;ft.attr({x2:-x,transform:\"rotate(\"+r+\")\"}).style({opacity:.5});var n=(r+180+360-h.orientation)%360;it=s.invert(n);var i=o.util.convertToCartesian(x+12,r+180);lt.text(o.util.round(it)).move([i[0]+_[0],i[1]+_[1]])})).on(\"mouseout.angular-guide\",(function(t,e){ot.select(\"line\").style({opacity:0})}))}var ht=ot.select(\"circle\").style({stroke:\"grey\",fill:\"none\"});R.on(\"mousemove.radial-guide\",(function(t,e){var n=o.util.getMousePos(Y).radius;ht.attr({r:n}).style({opacity:.5}),at=r.invert(o.util.getMousePos(Y).radius);var i=o.util.convertToCartesian(n,h.radialAxis.orientation);ct.text(o.util.round(at)).move([i[0]+_[0],i[1]+_[1]])})).on(\"mouseout.radial-guide\",(function(t,e){ht.style({opacity:0}),ut.hide(),lt.hide(),ct.hide()})),t.selectAll(\".geometry-group .mark\").on(\"mouseover.tooltip\",(function(e,r){var i=n.select(this),a=this.style.fill,s=\"black\",l=this.style.opacity||1;if(i.attr({\"data-opacity\":l}),a&&\"none\"!==a){i.attr({\"data-fill\":a}),s=n.hsl(a).darker().toString(),i.style({fill:s,opacity:1});var c={t:o.util.round(e[0]),r:o.util.round(e[1])};k&&(c.t=w[e[0]]);var u=\"t: \"+c.t+\", r: \"+c.r,f=this.getBoundingClientRect(),h=t.node().getBoundingClientRect(),p=[f.left+f.width/2-U[0]-h.left,f.top+f.height/2-U[1]-h.top];ut.config({color:s}).text(u),ut.move(p)}else a=this.style.stroke||\"black\",i.attr({\"data-stroke\":a}),s=n.hsl(a).darker().toString(),i.style({stroke:s,opacity:1})})).on(\"mousemove.tooltip\",(function(t,e){if(0!=n.event.which)return!1;n.select(this).attr(\"data-fill\")&&ut.show()})).on(\"mouseout.tooltip\",(function(t,e){ut.hide();var r=n.select(this),i=r.attr(\"data-fill\");i?r.style({fill:i,opacity:r.attr(\"data-opacity\")}):r.style({stroke:r.attr(\"data-stroke\"),opacity:r.attr(\"data-opacity\")})}))}))}(c),this},h.config=function(t){if(!arguments.length)return l;var e=o.util.cloneJson(t);return e.data.forEach((function(t,e){l.data[e]||(l.data[e]={}),i(l.data[e],o.Axis.defaultConfig().data[0]),i(l.data[e],t)})),i(l.layout,o.Axis.defaultConfig().layout),i(l.layout,e.layout),this},h.getLiveConfig=function(){return u},h.getinputConfig=function(){return c},h.radialScale=function(t){return r},h.angularScale=function(t){return s},h.svg=function(){return t},n.rebind(h,f,\"on\"),h},o.Axis.defaultConfig=function(t,e){return{data:[{t:[1,2,3,4],r:[10,11,12,13],name:\"Line1\",geometry:\"LinePlot\",color:null,strokeDash:\"solid\",strokeColor:null,strokeSize:\"1\",visibleInLegend:!0,opacity:1}],layout:{defaultColorRange:n.scale.category10().range(),title:null,height:450,width:500,margin:{top:40,right:40,bottom:40,left:40},font:{size:12,color:\"gray\",outlineColor:\"white\",family:\"Tahoma, sans-serif\"},direction:\"clockwise\",orientation:0,labelOffset:10,radialAxis:{domain:null,orientation:-45,ticksSuffix:\"\",visible:!0,gridLinesVisible:!0,tickOrientation:\"horizontal\",rewriteTicks:null},angularAxis:{domain:[0,360],ticksSuffix:\"\",visible:!0,gridLinesVisible:!0,labelsVisible:!0,tickOrientation:\"horizontal\",rewriteTicks:null,ticksCount:null,ticksStep:null},minorTicks:0,tickLength:null,tickColor:\"silver\",minorTickColor:\"#eee\",backgroundColor:\"none\",needsEndSpacing:null,showLegend:!0,legend:{reverseOrder:!1},opacity:1}}},o.util={},o.DATAEXTENT=\"dataExtent\",o.AREA=\"AreaChart\",o.LINE=\"LinePlot\",o.DOT=\"DotPlot\",o.BAR=\"BarChart\",o.util._override=function(t,e){for(var r in t)r in e&&(e[r]=t[r])},o.util._extend=function(t,e){for(var r in t)e[r]=t[r]},o.util._rndSnd=function(){return 2*Math.random()-1+(2*Math.random()-1)+(2*Math.random()-1)},o.util.dataFromEquation2=function(t,e){var r=e||6;return n.range(0,360+r,r).map((function(e,r){var n=e*Math.PI/180;return[e,t(n)]}))},o.util.dataFromEquation=function(t,e,r){var i=e||6,a=[],o=[];n.range(0,360+i,i).forEach((function(e,r){var n=e*Math.PI/180,i=t(n);a.push(e),o.push(i)}));var s={t:a,r:o};return r&&(s.name=r),s},o.util.ensureArray=function(t,e){if(\"undefined\"==typeof t)return null;var r=[].concat(t);return n.range(e).map((function(t,e){return r[e]||r[0]}))},o.util.fillArrays=function(t,e,r){return e.forEach((function(e,n){t[e]=o.util.ensureArray(t[e],r)})),t},o.util.cloneJson=function(t){return JSON.parse(JSON.stringify(t))},o.util.validateKeys=function(t,e){\"string\"==typeof e&&(e=e.split(\".\"));var r=e.shift();return t[r]&&(!e.length||objHasKeys(t[r],e))},o.util.sumArrays=function(t,e){return n.zip(t,e).map((function(t,e){return n.sum(t)}))},o.util.arrayLast=function(t){return t[t.length-1]},o.util.arrayEqual=function(t,e){for(var r=Math.max(t.length,e.length,1);r-- >=0&&t[r]===e[r];);return-2===r},o.util.flattenArray=function(t){for(var e=[];!o.util.arrayEqual(e,t);)e=t,t=[].concat.apply([],t);return t},o.util.deduplicate=function(t){return t.filter((function(t,e,r){return r.indexOf(t)==e}))},o.util.convertToCartesian=function(t,e){var r=e*Math.PI/180;return[t*Math.cos(r),t*Math.sin(r)]},o.util.round=function(t,e){var r=e||2,n=Math.pow(10,r);return Math.round(t*n)/n},o.util.getMousePos=function(t){var e=n.mouse(t.node()),r=e[0],i=e[1],a={};return a.x=r,a.y=i,a.pos=e,a.angle=180*(Math.atan2(i,r)+Math.PI)/Math.PI,a.radius=Math.sqrt(r*r+i*i),a},o.util.duplicatesCount=function(t){for(var e,r={},n={},i=0,a=t.length;i<a;i++)(e=t[i])in r?(r[e]++,n[e]=r[e]):r[e]=1;return n},o.util.duplicates=function(t){return Object.keys(o.util.duplicatesCount(t))},o.util.translator=function(t,e,r,n){if(n){var i=r.slice();r=e,e=i}var a=e.reduce((function(t,e){if(\"undefined\"!=typeof t)return t[e]}),t);\"undefined\"!=typeof a&&(e.reduce((function(t,r,n){if(\"undefined\"!=typeof t)return n===e.length-1&&delete t[r],t[r]}),t),r.reduce((function(t,e,n){return\"undefined\"==typeof t[e]&&(t[e]={}),n===r.length-1&&(t[e]=a),t[e]}),t))},o.PolyChart=function(){var t=[o.PolyChart.defaultConfig()],e=n.dispatch(\"hover\"),r={solid:\"none\",dash:[5,2],dot:[2,5]};function a(){var e=t[0].geometryConfig,i=e.container;\"string\"==typeof i&&(i=n.select(i)),i.datum(t).each((function(t,i){var a=!!t[0].data.yStack,o=t.map((function(t,e){return a?n.zip(t.data.t[0],t.data.r[0],t.data.yStack[0]):n.zip(t.data.t[0],t.data.r[0])})),s=e.angularScale,l=e.radialScale.domain()[0],c={bar:function(r,i,a){var o=t[a].data,l=e.radialScale(r[1])-e.radialScale(0),c=e.radialScale(r[2]||0),u=o.barWidth;n.select(this).attr({class:\"mark bar\",d:\"M\"+[[l+c,-u/2],[l+c,u/2],[c,u/2],[c,-u/2]].join(\"L\")+\"Z\",transform:function(t,r){return\"rotate(\"+(e.orientation+s(t[0]))+\")\"}})}};c.dot=function(r,i,a){var o=r[2]?[r[0],r[1]+r[2]]:r,s=n.svg.symbol().size(t[a].data.dotSize).type(t[a].data.dotType)(r,i);n.select(this).attr({class:\"mark dot\",d:s,transform:function(t,r){var n,i,a,s=(n=function(t,r){var n=e.radialScale(t[1]),i=(e.angularScale(t[0])+e.orientation)*Math.PI/180;return{r:n,t:i}}(o),i=n.r*Math.cos(n.t),a=n.r*Math.sin(n.t),{x:i,y:a});return\"translate(\"+[s.x,s.y]+\")\"}})};var u=n.svg.line.radial().interpolate(t[0].data.lineInterpolation).radius((function(t){return e.radialScale(t[1])})).angle((function(t){return e.angularScale(t[0])*Math.PI/180}));c.line=function(r,i,a){var s=r[2]?o[a].map((function(t,e){return[t[0],t[1]+t[2]]})):o[a];if(n.select(this).each(c.dot).style({opacity:function(e,r){return+t[a].data.dotVisible},fill:d.stroke(r,i,a)}).attr({class:\"mark dot\"}),!(i>0)){var l=n.select(this.parentNode).selectAll(\"path.line\").data([0]);l.enter().insert(\"path\"),l.attr({class:\"line\",d:u(s),transform:function(t,r){return\"rotate(\"+(e.orientation+90)+\")\"},\"pointer-events\":\"none\"}).style({fill:function(t,e){return d.fill(r,i,a)},\"fill-opacity\":0,stroke:function(t,e){return d.stroke(r,i,a)},\"stroke-width\":function(t,e){return d[\"stroke-width\"](r,i,a)},\"stroke-dasharray\":function(t,e){return d[\"stroke-dasharray\"](r,i,a)},opacity:function(t,e){return d.opacity(r,i,a)},display:function(t,e){return d.display(r,i,a)}})}};var f=e.angularScale.range(),h=Math.abs(f[1]-f[0])/o[0].length*Math.PI/180,p=n.svg.arc().startAngle((function(t){return-h/2})).endAngle((function(t){return h/2})).innerRadius((function(t){return e.radialScale(l+(t[2]||0))})).outerRadius((function(t){return e.radialScale(l+(t[2]||0))+e.radialScale(t[1])}));c.arc=function(t,r,i){n.select(this).attr({class:\"mark arc\",d:p,transform:function(t,r){return\"rotate(\"+(e.orientation+s(t[0])+90)+\")\"}})};var d={fill:function(e,r,n){return t[n].data.color},stroke:function(e,r,n){return t[n].data.strokeColor},\"stroke-width\":function(e,r,n){return t[n].data.strokeSize+\"px\"},\"stroke-dasharray\":function(e,n,i){return r[t[i].data.strokeDash]},opacity:function(e,r,n){return t[n].data.opacity},display:function(e,r,n){return\"undefined\"==typeof t[n].data.visible||t[n].data.visible?\"block\":\"none\"}},g=n.select(this).selectAll(\"g.layer\").data(o);g.enter().append(\"g\").attr({class:\"layer\"});var m=g.selectAll(\"path.mark\").data((function(t,e){return t}));m.enter().append(\"path\").attr({class:\"mark\"}),m.style(d).each(c[e.geometryType]),m.exit().remove(),g.exit().remove()}))}return a.config=function(e){return arguments.length?(e.forEach((function(e,r){t[r]||(t[r]={}),i(t[r],o.PolyChart.defaultConfig()),i(t[r],e)})),this):t},a.getColorScale=function(){},n.rebind(a,e,\"on\"),a},o.PolyChart.defaultConfig=function(){return{data:{name:\"geom1\",t:[[1,2,3,4]],r:[[1,2,3,4]],dotType:\"circle\",dotSize:64,dotVisible:!1,barWidth:20,color:\"#ffa500\",strokeSize:1,strokeColor:\"silver\",strokeDash:\"solid\",opacity:1,index:0,visible:!0,visibleInLegend:!0},geometryConfig:{geometry:\"LinePlot\",geometryType:\"arc\",direction:\"clockwise\",orientation:0,container:\"body\",radialScale:null,angularScale:null,colorScale:n.scale.category20()}}},o.BarChart=function(){return o.PolyChart()},o.BarChart.defaultConfig=function(){return{geometryConfig:{geometryType:\"bar\"}}},o.AreaChart=function(){return o.PolyChart()},o.AreaChart.defaultConfig=function(){return{geometryConfig:{geometryType:\"arc\"}}},o.DotPlot=function(){return o.PolyChart()},o.DotPlot.defaultConfig=function(){return{geometryConfig:{geometryType:\"dot\",dotType:\"circle\"}}},o.LinePlot=function(){return o.PolyChart()},o.LinePlot.defaultConfig=function(){return{geometryConfig:{geometryType:\"line\"}}},o.Legend=function(){var t=o.Legend.defaultConfig(),e=n.dispatch(\"hover\");function r(){var e=t.legendConfig,a=t.data.map((function(t,r){return[].concat(t).map((function(t,n){var a=i({},e.elements[r]);return a.name=t,a.color=[].concat(e.elements[r].color)[n],a}))})),o=n.merge(a);o=o.filter((function(t,r){return e.elements[r]&&(e.elements[r].visibleInLegend||\"undefined\"==typeof e.elements[r].visibleInLegend)})),e.reverseOrder&&(o=o.reverse());var s=e.container;(\"string\"==typeof s||s.nodeName)&&(s=n.select(s));var l=o.map((function(t,e){return t.color})),c=e.fontSize,u=null==e.isContinuous?\"number\"==typeof o[0]:e.isContinuous,f=u?e.height:c*o.length,h=s.classed(\"legend-group\",!0).selectAll(\"svg\").data([0]),p=h.enter().append(\"svg\").attr({width:300,height:f+c,xmlns:\"http://www.w3.org/2000/svg\",\"xmlns:xlink\":\"http://www.w3.org/1999/xlink\",version:\"1.1\"});p.append(\"g\").classed(\"legend-axis\",!0),p.append(\"g\").classed(\"legend-marks\",!0);var d=n.range(o.length),g=n.scale[u?\"linear\":\"ordinal\"]().domain(d).range(l),m=n.scale[u?\"linear\":\"ordinal\"]().domain(d)[u?\"range\":\"rangePoints\"]([0,f]);if(u){var v=h.select(\".legend-marks\").append(\"defs\").append(\"linearGradient\").attr({id:\"grad1\",x1:\"0%\",y1:\"0%\",x2:\"0%\",y2:\"100%\"}).selectAll(\"stop\").data(l);v.enter().append(\"stop\"),v.attr({offset:function(t,e){return e/(l.length-1)*100+\"%\"}}).style({\"stop-color\":function(t,e){return t}}),h.append(\"rect\").classed(\"legend-mark\",!0).attr({height:e.height,width:e.colorBandWidth,fill:\"url(#grad1)\"})}else{var y=h.select(\".legend-marks\").selectAll(\"path.legend-mark\").data(o);y.enter().append(\"path\").classed(\"legend-mark\",!0),y.attr({transform:function(t,e){return\"translate(\"+[c/2,m(e)+c/2]+\")\"},d:function(t,e){var r,i,a,o=t.symbol;return a=3*(i=c),\"line\"===(r=o)?\"M\"+[[-i/2,-i/12],[i/2,-i/12],[i/2,i/12],[-i/2,i/12]]+\"Z\":-1!=n.svg.symbolTypes.indexOf(r)?n.svg.symbol().type(r).size(a)():n.svg.symbol().type(\"square\").size(a)()},fill:function(t,e){return g(e)}}),y.exit().remove()}var x=n.svg.axis().scale(m).orient(\"right\"),b=h.select(\"g.legend-axis\").attr({transform:\"translate(\"+[u?e.colorBandWidth:c,c/2]+\")\"}).call(x);return b.selectAll(\".domain\").style({fill:\"none\",stroke:\"none\"}),b.selectAll(\"line\").style({fill:\"none\",stroke:u?e.textColor:\"none\"}),b.selectAll(\"text\").style({fill:e.textColor,\"font-size\":e.fontSize}).text((function(t,e){return o[e].name})),r}return r.config=function(e){return arguments.length?(i(t,e),this):t},n.rebind(r,e,\"on\"),r},o.Legend.defaultConfig=function(t,e){return{data:[\"a\",\"b\",\"c\"],legendConfig:{elements:[{symbol:\"line\",color:\"red\"},{symbol:\"square\",color:\"yellow\"},{symbol:\"diamond\",color:\"limegreen\"}],height:150,colorBandWidth:30,fontSize:12,container:\"body\",isContinuous:null,textColor:\"grey\",reverseOrder:!1}}},o.tooltipPanel=function(){var t,e,r,a={container:null,hasTick:!1,fontSize:12,color:\"white\",padding:5},s=\"tooltip-\"+o.tooltipPanel.uid++,l=10,c=function(){var n=(t=a.container.selectAll(\"g.\"+s).data([0])).enter().append(\"g\").classed(s,!0).style({\"pointer-events\":\"none\",display:\"none\"});return r=n.append(\"path\").style({fill:\"white\",\"fill-opacity\":.9}).attr({d:\"M0 0\"}),e=n.append(\"text\").attr({dx:a.padding+l,dy:.3*+a.fontSize}),c};return c.text=function(i){var o=n.hsl(a.color).l,s=o>=.5?\"#aaa\":\"white\",u=o>=.5?\"black\":\"white\",f=i||\"\";e.style({fill:u,\"font-size\":a.fontSize+\"px\"}).text(f);var h=a.padding,p=e.node().getBBox(),d={fill:a.color,stroke:s,\"stroke-width\":\"2px\"},g=p.width+2*h+l,m=p.height+2*h;return r.attr({d:\"M\"+[[l,-m/2],[l,-m/4],[a.hasTick?0:l,0],[l,m/4],[l,m/2],[g,m/2],[g,-m/2]].join(\"L\")+\"Z\"}).style(d),t.attr({transform:\"translate(\"+[l,-m/2+2*h]+\")\"}),t.style({display:\"block\"}),c},c.move=function(e){if(t)return t.attr({transform:\"translate(\"+[e[0],e[1]]+\")\"}).style({display:\"block\"}),c},c.hide=function(){if(t)return t.style({display:\"none\"}),c},c.show=function(){if(t)return t.style({display:\"block\"}),c},c.config=function(t){return i(a,t),c},c},o.tooltipPanel.uid=1,o.adapter={},o.adapter.plotly=function(){var t={convert:function(t,e){var r={};if(t.data&&(r.data=t.data.map((function(t,r){var n=i({},t);return[[n,[\"marker\",\"color\"],[\"color\"]],[n,[\"marker\",\"opacity\"],[\"opacity\"]],[n,[\"marker\",\"line\",\"color\"],[\"strokeColor\"]],[n,[\"marker\",\"line\",\"dash\"],[\"strokeDash\"]],[n,[\"marker\",\"line\",\"width\"],[\"strokeSize\"]],[n,[\"marker\",\"symbol\"],[\"dotType\"]],[n,[\"marker\",\"size\"],[\"dotSize\"]],[n,[\"marker\",\"barWidth\"],[\"barWidth\"]],[n,[\"line\",\"interpolation\"],[\"lineInterpolation\"]],[n,[\"showlegend\"],[\"visibleInLegend\"]]].forEach((function(t,r){o.util.translator.apply(null,t.concat(e))})),e||delete n.marker,e&&delete n.groupId,e?(\"LinePlot\"===n.geometry?(n.type=\"scatter\",!0===n.dotVisible?(delete n.dotVisible,n.mode=\"lines+markers\"):n.mode=\"lines\"):\"DotPlot\"===n.geometry?(n.type=\"scatter\",n.mode=\"markers\"):\"AreaChart\"===n.geometry?n.type=\"area\":\"BarChart\"===n.geometry&&(n.type=\"bar\"),delete n.geometry):(\"scatter\"===n.type?\"lines\"===n.mode?n.geometry=\"LinePlot\":\"markers\"===n.mode?n.geometry=\"DotPlot\":\"lines+markers\"===n.mode&&(n.geometry=\"LinePlot\",n.dotVisible=!0):\"area\"===n.type?n.geometry=\"AreaChart\":\"bar\"===n.type&&(n.geometry=\"BarChart\"),delete n.mode,delete n.type),n})),!e&&t.layout&&\"stack\"===t.layout.barmode)){var a=o.util.duplicates(r.data.map((function(t,e){return t.geometry})));r.data.forEach((function(t,e){var n=a.indexOf(t.geometry);-1!=n&&(r.data[e].groupId=n)}))}if(t.layout){var s=i({},t.layout);if([[s,[\"plot_bgcolor\"],[\"backgroundColor\"]],[s,[\"showlegend\"],[\"showLegend\"]],[s,[\"radialaxis\"],[\"radialAxis\"]],[s,[\"angularaxis\"],[\"angularAxis\"]],[s.angularaxis,[\"showline\"],[\"gridLinesVisible\"]],[s.angularaxis,[\"showticklabels\"],[\"labelsVisible\"]],[s.angularaxis,[\"nticks\"],[\"ticksCount\"]],[s.angularaxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.angularaxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.angularaxis,[\"range\"],[\"domain\"]],[s.angularaxis,[\"endpadding\"],[\"endPadding\"]],[s.radialaxis,[\"showline\"],[\"gridLinesVisible\"]],[s.radialaxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.radialaxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.radialaxis,[\"range\"],[\"domain\"]],[s.angularAxis,[\"showline\"],[\"gridLinesVisible\"]],[s.angularAxis,[\"showticklabels\"],[\"labelsVisible\"]],[s.angularAxis,[\"nticks\"],[\"ticksCount\"]],[s.angularAxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.angularAxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.angularAxis,[\"range\"],[\"domain\"]],[s.angularAxis,[\"endpadding\"],[\"endPadding\"]],[s.radialAxis,[\"showline\"],[\"gridLinesVisible\"]],[s.radialAxis,[\"tickorientation\"],[\"tickOrientation\"]],[s.radialAxis,[\"ticksuffix\"],[\"ticksSuffix\"]],[s.radialAxis,[\"range\"],[\"domain\"]],[s.font,[\"outlinecolor\"],[\"outlineColor\"]],[s.legend,[\"traceorder\"],[\"reverseOrder\"]],[s,[\"labeloffset\"],[\"labelOffset\"]],[s,[\"defaultcolorrange\"],[\"defaultColorRange\"]]].forEach((function(t,r){o.util.translator.apply(null,t.concat(e))})),e?(\"undefined\"!=typeof s.tickLength&&(s.angularaxis.ticklen=s.tickLength,delete s.tickLength),s.tickColor&&(s.angularaxis.tickcolor=s.tickColor,delete s.tickColor)):(s.angularAxis&&\"undefined\"!=typeof s.angularAxis.ticklen&&(s.tickLength=s.angularAxis.ticklen),s.angularAxis&&\"undefined\"!=typeof s.angularAxis.tickcolor&&(s.tickColor=s.angularAxis.tickcolor)),s.legend&&\"boolean\"!=typeof s.legend.reverseOrder&&(s.legend.reverseOrder=\"normal\"!=s.legend.reverseOrder),s.legend&&\"boolean\"==typeof s.legend.traceorder&&(s.legend.traceorder=s.legend.traceorder?\"reversed\":\"normal\",delete s.legend.reverseOrder),s.margin&&\"undefined\"!=typeof s.margin.t){var l=[\"t\",\"r\",\"b\",\"l\",\"pad\"],c=[\"top\",\"right\",\"bottom\",\"left\",\"pad\"],u={};n.entries(s.margin).forEach((function(t,e){u[c[l.indexOf(t.key)]]=t.value})),s.margin=u}e&&(delete s.needsEndSpacing,delete s.minorTickColor,delete s.minorTicks,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksCount,delete s.angularaxis.ticksStep,delete s.angularaxis.rewriteTicks,delete s.angularaxis.nticks,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksCount,delete s.radialaxis.ticksStep,delete s.radialaxis.rewriteTicks,delete s.radialaxis.nticks),r.layout=s}return r}};return t}},{\"../../../constants/alignment\":745,\"../../../lib\":778,d3:169}],901:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../../lib\"),a=t(\"../../../components/color\"),o=t(\"./micropolar\"),s=t(\"./undo_manager\"),l=i.extendDeepAll,c=e.exports={};c.framework=function(t){var e,r,i,a,u,f=new s;function h(r,s){return s&&(u=s),n.select(n.select(u).node().parentNode).selectAll(\".svg-container>*:not(.chart-root)\").remove(),e=e?l(e,r):r,i||(i=o.Axis()),a=o.adapter.plotly().convert(e),i.config(a).render(u),t.data=e.data,t.layout=e.layout,c.fillLayout(t),e}return h.isPolar=!0,h.svg=function(){return i.svg()},h.getConfig=function(){return e},h.getLiveConfig=function(){return o.adapter.plotly().convert(i.getLiveConfig(),!0)},h.getLiveScales=function(){return{t:i.angularScale(),r:i.radialScale()}},h.setUndoPoint=function(){var t,n,i=this,a=o.util.cloneJson(e);t=a,n=r,f.add({undo:function(){n&&i(n)},redo:function(){i(t)}}),r=o.util.cloneJson(a)},h.undo=function(){f.undo()},h.redo=function(){f.redo()},h},c.fillLayout=function(t){var e=n.select(t).selectAll(\".plot-container\"),r=e.selectAll(\".svg-container\"),i=t.framework&&t.framework.svg&&t.framework.svg(),o={width:800,height:600,paper_bgcolor:a.background,_container:e,_paperdiv:r,_paper:i};t._fullLayout=l(o,t.layout)}},{\"../../../components/color\":643,\"../../../lib\":778,\"./micropolar\":900,\"./undo_manager\":902,d3:169}],902:[function(t,e,r){\"use strict\";e.exports=function(){var t,e=[],r=-1,n=!1;function i(t,e){return t?(n=!0,t[e](),n=!1,this):this}return{add:function(t){return n||(e.splice(r+1,e.length-r),e.push(t),r=e.length-1),this},setCallback:function(e){t=e},undo:function(){var n=e[r];return n?(i(n,\"undo\"),r-=1,t&&t(n.undo),this):this},redo:function(){var n=e[r+1];return n?(i(n,\"redo\"),r+=1,t&&t(n.redo),this):this},clear:function(){e=[],r=-1},hasUndo:function(){return-1!==r},hasRedo:function(){return r<e.length-1},getCommands:function(){return e},getPreviousCommand:function(){return e[r-1]},getIndex:function(){return r}}}},{}],903:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"tinycolor2\"),a=t(\"../../registry\"),o=t(\"../../lib\"),s=o.strRotate,l=o.strTranslate,c=t(\"../../components/color\"),u=t(\"../../components/drawing\"),f=t(\"../plots\"),h=t(\"../../plots/cartesian/axes\"),p=t(\"../cartesian/set_convert\"),d=t(\"./set_convert\"),g=t(\"../cartesian/autorange\").doAutoRange,m=t(\"../cartesian/dragbox\"),v=t(\"../../components/dragelement\"),y=t(\"../../components/fx\"),x=t(\"../../components/titles\"),b=t(\"../cartesian/select\").prepSelect,_=t(\"../cartesian/select\").selectOnClick,w=t(\"../cartesian/select\").clearSelect,T=t(\"../../lib/setcursor\"),k=t(\"../../lib/clear_gl_canvases\"),M=t(\"../../plot_api/subroutines\").redrawReglTraces,A=t(\"../../constants/alignment\").MID_SHIFT,S=t(\"./constants\"),E=t(\"./helpers\"),C=o._,L=o.mod,I=o.deg2rad,P=o.rad2deg;function z(t,e){this.id=e,this.gd=t,this._hasClipOnAxisFalse=null,this.vangles=null,this.radialAxisAngle=null,this.traceHash={},this.layers={},this.clipPaths={},this.clipIds={},this.viewInitial={};var r=t._fullLayout,n=\"clip\"+r._uid+e;this.clipIds.forTraces=n+\"-for-traces\",this.clipPaths.forTraces=r._clips.append(\"clipPath\").attr(\"id\",this.clipIds.forTraces),this.clipPaths.forTraces.append(\"path\"),this.framework=r._polarlayer.append(\"g\").attr(\"class\",e),this.radialTickLayout=null,this.angularTickLayout=null}var O=z.prototype;function D(t){var e=t.ticks+String(t.ticklen)+String(t.showticklabels);return\"side\"in t&&(e+=t.side),e}function R(t,e){return e[o.findIndexOfMin(e,(function(e){return o.angleDist(t,e)}))]}function F(t,e,r){return e?(t.attr(\"display\",null),t.attr(r)):t&&t.attr(\"display\",\"none\"),t}e.exports=function(t,e){return new z(t,e)},O.plot=function(t,e){var r=e[this.id];this._hasClipOnAxisFalse=!1;for(var n=0;n<t.length;n++){if(!1===t[n][0].trace.cliponaxis){this._hasClipOnAxisFalse=!0;break}}this.updateLayers(e,r),this.updateLayout(e,r),f.generalUpdatePerTraceModule(this.gd,this,t,r),this.updateFx(e,r)},O.updateLayers=function(t,e){var r=this.layers,i=e.radialaxis,a=e.angularaxis,o=S.layerNames,s=o.indexOf(\"frontplot\"),l=o.slice(0,s),c=\"below traces\"===a.layer,u=\"below traces\"===i.layer;c&&l.push(\"angular-line\"),u&&l.push(\"radial-line\"),c&&l.push(\"angular-axis\"),u&&l.push(\"radial-axis\"),l.push(\"frontplot\"),c||l.push(\"angular-line\"),u||l.push(\"radial-line\"),c||l.push(\"angular-axis\"),u||l.push(\"radial-axis\");var f=this.framework.selectAll(\".polarsublayer\").data(l,String);f.enter().append(\"g\").attr(\"class\",(function(t){return\"polarsublayer \"+t})).each((function(t){var e=r[t]=n.select(this);switch(t){case\"frontplot\":e.append(\"g\").classed(\"barlayer\",!0),e.append(\"g\").classed(\"scatterlayer\",!0);break;case\"backplot\":e.append(\"g\").classed(\"maplayer\",!0);break;case\"plotbg\":r.bg=e.append(\"path\");break;case\"radial-grid\":case\"angular-grid\":e.style(\"fill\",\"none\");break;case\"radial-line\":e.append(\"line\").style(\"fill\",\"none\");break;case\"angular-line\":e.append(\"path\").style(\"fill\",\"none\")}})),f.order()},O.updateLayout=function(t,e){var r=this.layers,n=t._size,i=e.radialaxis,a=e.angularaxis,o=e.domain.x,s=e.domain.y;this.xOffset=n.l+n.w*o[0],this.yOffset=n.t+n.h*(1-s[1]);var f=this.xLength=n.w*(o[1]-o[0]),h=this.yLength=n.h*(s[1]-s[0]),p=e.sector;this.sectorInRad=p.map(I);var d,g,m,v,y,x=this.sectorBBox=function(t){var e,r,n,i,a=t[0],o=t[1]-a,s=L(a,360),l=s+o,c=Math.cos(I(s)),u=Math.sin(I(s)),f=Math.cos(I(l)),h=Math.sin(I(l));i=s<=90&&l>=90||s>90&&l>=450?1:u<=0&&h<=0?0:Math.max(u,h);e=s<=180&&l>=180||s>180&&l>=540?-1:c>=0&&f>=0?0:Math.min(c,f);r=s<=270&&l>=270||s>270&&l>=630?-1:u>=0&&h>=0?0:Math.min(u,h);n=l>=360?1:c<=0&&f<=0?0:Math.max(c,f);return[e,r,n,i]}(p),b=x[2]-x[0],_=x[3]-x[1],w=h/f,T=Math.abs(_/b);w>T?(d=f,y=(h-(g=f*T))/n.h/2,m=[o[0],o[1]],v=[s[0]+y,s[1]-y]):(g=h,y=(f-(d=h/T))/n.w/2,m=[o[0]+y,o[1]-y],v=[s[0],s[1]]),this.xLength2=d,this.yLength2=g,this.xDomain2=m,this.yDomain2=v;var k=this.xOffset2=n.l+n.w*m[0],M=this.yOffset2=n.t+n.h*(1-v[1]),A=this.radius=d/b,S=this.innerRadius=e.hole*A,E=this.cx=k-A*x[0],C=this.cy=M+A*x[3],P=this.cxx=E-k,z=this.cyy=C-M;this.radialAxis=this.mockAxis(t,e,i,{_id:\"x\",side:{counterclockwise:\"top\",clockwise:\"bottom\"}[i.side],_realSide:i.side,domain:[S/n.w,A/n.w]}),this.angularAxis=this.mockAxis(t,e,a,{side:\"right\",domain:[0,Math.PI],autorange:!1}),this.doAutoRange(t,e),this.updateAngularAxis(t,e),this.updateRadialAxis(t,e),this.updateRadialAxisTitle(t,e),this.xaxis=this.mockCartesianAxis(t,e,{_id:\"x\",domain:m}),this.yaxis=this.mockCartesianAxis(t,e,{_id:\"y\",domain:v});var O=this.pathSubplot();this.clipPaths.forTraces.select(\"path\").attr(\"d\",O).attr(\"transform\",l(P,z)),r.frontplot.attr(\"transform\",l(k,M)).call(u.setClipUrl,this._hasClipOnAxisFalse?null:this.clipIds.forTraces,this.gd),r.bg.attr(\"d\",O).attr(\"transform\",l(E,C)).call(c.fill,e.bgcolor)},O.mockAxis=function(t,e,r,n){var i=o.extendFlat({},r,n);return d(i,e,t),i},O.mockCartesianAxis=function(t,e,r){var n=this,i=r._id,a=o.extendFlat({type:\"linear\"},r);p(a,t);var s={x:[0,2],y:[1,3]};return a.setRange=function(){var t=n.sectorBBox,r=s[i],o=n.radialAxis._rl,l=(o[1]-o[0])/(1-e.hole);a.range=[t[r[0]]*l,t[r[1]]*l]},a.isPtWithinRange=\"x\"===i?function(t){return n.isPtInside(t)}:function(){return!0},a.setRange(),a.setScale(),a},O.doAutoRange=function(t,e){var r=this.gd,n=this.radialAxis,i=e.radialaxis;n.setScale(),g(r,n);var a=n.range;i.range=a.slice(),i._input.range=a.slice(),n._rl=[n.r2l(a[0],null,\"gregorian\"),n.r2l(a[1],null,\"gregorian\")]},O.updateRadialAxis=function(t,e){var r=this,n=r.gd,i=r.layers,a=r.radius,u=r.innerRadius,f=r.cx,p=r.cy,d=e.radialaxis,g=L(e.sector[0],360),m=r.radialAxis,v=u<a;r.fillViewInitialKey(\"radialaxis.angle\",d.angle),r.fillViewInitialKey(\"radialaxis.range\",m.range.slice()),m.setGeometry(),\"auto\"===m.tickangle&&g>90&&g<=270&&(m.tickangle=180);var y=function(t){return l(m.l2p(t.x)+u,0)},x=D(d);if(r.radialTickLayout!==x&&(i[\"radial-axis\"].selectAll(\".xtick\").remove(),r.radialTickLayout=x),v){m.setScale();var b=h.calcTicks(m),_=h.clipEnds(m,b),w=h.getTickSigns(m)[2];h.drawTicks(n,m,{vals:b,layer:i[\"radial-axis\"],path:h.makeTickPath(m,0,w),transFn:y,crisp:!1}),h.drawGrid(n,m,{vals:_,layer:i[\"radial-grid\"],path:function(t){return r.pathArc(m.r2p(t.x)+u)},transFn:o.noop,crisp:!1}),h.drawLabels(n,m,{vals:b,layer:i[\"radial-axis\"],transFn:y,labelFns:h.makeLabelFns(m,0)})}var T=r.radialAxisAngle=r.vangles?P(R(I(d.angle),r.vangles)):d.angle,k=l(f,p),M=k+s(-T);F(i[\"radial-axis\"],v&&(d.showticklabels||d.ticks),{transform:M}),F(i[\"radial-grid\"],v&&d.showgrid,{transform:k}),F(i[\"radial-line\"].select(\"line\"),v&&d.showline,{x1:u,y1:0,x2:a,y2:0,transform:M}).attr(\"stroke-width\",d.linewidth).call(c.stroke,d.linecolor)},O.updateRadialAxisTitle=function(t,e,r){var n=this.gd,i=this.radius,a=this.cx,o=this.cy,s=e.radialaxis,l=this.id+\"title\",c=void 0!==r?r:this.radialAxisAngle,f=I(c),h=Math.cos(f),p=Math.sin(f),d=0;if(s.title){var g=u.bBox(this.layers[\"radial-axis\"].node()).height,m=s.title.font.size;d=\"counterclockwise\"===s.side?-g-.4*m:g+.8*m}this.layers[\"radial-axis-title\"]=x.draw(n,l,{propContainer:s,propName:this.id+\".radialaxis.title\",placeholder:C(n,\"Click to enter radial axis title\"),attributes:{x:a+i/2*h+d*p,y:o-i/2*p+d*h,\"text-anchor\":\"middle\"},transform:{rotate:-c}})},O.updateAngularAxis=function(t,e){var r=this,n=r.gd,i=r.layers,a=r.radius,u=r.innerRadius,f=r.cx,p=r.cy,d=e.angularaxis,g=r.angularAxis;r.fillViewInitialKey(\"angularaxis.rotation\",d.rotation),g.setGeometry(),g.setScale();var m=function(t){return g.t2g(t.x)};\"linear\"===g.type&&\"radians\"===g.thetaunit&&(g.tick0=P(g.tick0),g.dtick=P(g.dtick));var v=function(t){return l(f+a*Math.cos(t),p-a*Math.sin(t))},y=h.makeLabelFns(g,0).labelStandoff,x={xFn:function(t){var e=m(t);return Math.cos(e)*y},yFn:function(t){var e=m(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(y+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*A)},anchorFn:function(t){var e=m(t),r=Math.cos(e);return Math.abs(r)<.1?\"middle\":r>0?\"start\":\"end\"},heightFn:function(t,e,r){var n=m(t);return-.5*(1+Math.sin(n))*r}},b=D(d);r.angularTickLayout!==b&&(i[\"angular-axis\"].selectAll(\".\"+g._id+\"tick\").remove(),r.angularTickLayout=b);var _,w=h.calcTicks(g);if(\"linear\"===e.gridshape?(_=w.map(m),o.angleDelta(_[0],_[1])<0&&(_=_.slice().reverse())):_=null,r.vangles=_,\"category\"===g.type&&(w=w.filter((function(t){return o.isAngleInsideSector(m(t),r.sectorInRad)}))),g.visible){var T=\"inside\"===g.ticks?-1:1,k=(g.linewidth||1)/2;h.drawTicks(n,g,{vals:w,layer:i[\"angular-axis\"],path:\"M\"+T*k+\",0h\"+T*g.ticklen,transFn:function(t){var e=m(t);return v(e)+s(-P(e))},crisp:!1}),h.drawGrid(n,g,{vals:w,layer:i[\"angular-grid\"],path:function(t){var e=m(t),r=Math.cos(e),n=Math.sin(e);return\"M\"+[f+u*r,p-u*n]+\"L\"+[f+a*r,p-a*n]},transFn:o.noop,crisp:!1}),h.drawLabels(n,g,{vals:w,layer:i[\"angular-axis\"],repositionOnUpdate:!0,transFn:function(t){return v(m(t))},labelFns:x})}F(i[\"angular-line\"].select(\"path\"),d.showline,{d:r.pathSubplot(),transform:l(f,p)}).attr(\"stroke-width\",d.linewidth).call(c.stroke,d.linecolor)},O.updateFx=function(t,e){this.gd._context.staticPlot||(this.updateAngularDrag(t),this.updateRadialDrag(t,e,0),this.updateRadialDrag(t,e,1),this.updateMainDrag(t))},O.updateMainDrag=function(t){var e,r,s=this,c=s.gd,u=s.layers,f=t._zoomlayer,h=S.MINZOOM,p=S.OFFEDGE,d=s.radius,g=s.innerRadius,x=s.cx,T=s.cy,k=s.cxx,M=s.cyy,A=s.sectorInRad,C=s.vangles,L=s.radialAxis,I=E.clampTiny,P=E.findXYatLength,z=E.findEnclosingVertexAngles,O=S.cornerHalfWidth,D=S.cornerLen/2,R=m.makeDragger(u,\"path\",\"maindrag\",\"crosshair\");n.select(R).attr(\"d\",s.pathSubplot()).attr(\"transform\",l(x,T));var F,B,N,j,U,V,q,H,G,Y={element:R,gd:c,subplot:s.id,plotinfo:{id:s.id,xaxis:s.xaxis,yaxis:s.yaxis},xaxes:[s.xaxis],yaxes:[s.yaxis]};function W(t,e){return Math.sqrt(t*t+e*e)}function X(t,e){return W(t-k,e-M)}function Z(t,e){return Math.atan2(M-e,t-k)}function J(t,e){return[t*Math.cos(e),t*Math.sin(-e)]}function K(t,e){if(0===t)return s.pathSector(2*O);var r=D/t,n=e-r,i=e+r,a=Math.max(0,Math.min(t,d)),o=a-O,l=a+O;return\"M\"+J(o,n)+\"A\"+[o,o]+\" 0,0,0 \"+J(o,i)+\"L\"+J(l,i)+\"A\"+[l,l]+\" 0,0,1 \"+J(l,n)+\"Z\"}function Q(t,e,r){if(0===t)return s.pathSector(2*O);var n,i,a=J(t,e),o=J(t,r),l=I((a[0]+o[0])/2),c=I((a[1]+o[1])/2);if(l&&c){var u=c/l,f=-1/u,h=P(O,u,l,c);n=P(D,f,h[0][0],h[0][1]),i=P(D,f,h[1][0],h[1][1])}else{var p,d;c?(p=D,d=O):(p=O,d=D),n=[[l-p,c-d],[l+p,c-d]],i=[[l-p,c+d],[l+p,c+d]]}return\"M\"+n.join(\"L\")+\"L\"+i.reverse().join(\"L\")+\"Z\"}function $(t,e){return e=Math.max(Math.min(e,d),g),t<p?t=0:d-t<p?t=d:e<p?e=0:d-e<p&&(e=d),Math.abs(e-t)>h?(t<e?(N=t,j=e):(N=e,j=t),!0):(N=null,j=null,!1)}function tt(t,e){t=t||U,e=e||\"M0,0Z\",H.attr(\"d\",t),G.attr(\"d\",e),m.transitionZoombox(H,G,V,q),V=!0;var r={};at(r),c.emit(\"plotly_relayouting\",r)}function et(t,n){var i,a,o=F+(t*=e),l=B+(n*=r),c=X(F,B),u=Math.min(X(o,l),d),f=Z(F,B);$(c,u)&&(i=U+s.pathSector(j),N&&(i+=s.pathSector(N)),a=K(N,f)+K(j,f)),tt(i,a)}function rt(t,e,r,n){var i=E.findIntersectionXY(r,n,r,[t-k,M-e]);return W(i[0],i[1])}function nt(t,e){var r,n,i=F+t,a=B+e,o=Z(F,B),l=Z(i,a),c=z(o,C),u=z(l,C);$(rt(F,B,c[0],c[1]),Math.min(rt(i,a,u[0],u[1]),d))&&(r=U+s.pathSector(j),N&&(r+=s.pathSector(N)),n=[Q(N,c[0],c[1]),Q(j,c[0],c[1])].join(\" \")),tt(r,n)}function it(){if(m.removeZoombox(c),null!==N&&null!==j){var t={};at(t),m.showDoubleClickNotifier(c),a.call(\"_guiRelayout\",c,t)}}function at(t){var e=L._rl,r=(e[1]-e[0])/(1-g/d)/d,n=[e[0]+(N-g)*r,e[0]+(j-g)*r];t[s.id+\".radialaxis.range\"]=n}function ot(t,e){var r=c._fullLayout.clickmode;if(m.removeZoombox(c),2===t){var n={};for(var i in s.viewInitial)n[s.id+\".\"+i]=s.viewInitial[i];c.emit(\"plotly_doubleclick\",null),a.call(\"_guiRelayout\",c,n)}r.indexOf(\"select\")>-1&&1===t&&_(e,c,[s.xaxis],[s.yaxis],s.id,Y),r.indexOf(\"event\")>-1&&y.click(c,e,s.id)}Y.prepFn=function(t,n,a){var l=c._fullLayout.dragmode,u=R.getBoundingClientRect();c._fullLayout._calcInverseTransform(c);var h=c._fullLayout._invTransform;e=c._fullLayout._invScaleX,r=c._fullLayout._invScaleY;var p=o.apply3DTransform(h)(n-u.left,a-u.top);if(F=p[0],B=p[1],C){var g=E.findPolygonOffset(d,A[0],A[1],C);F+=k+g[0],B+=M+g[1]}switch(l){case\"zoom\":Y.moveFn=C?nt:et,Y.clickFn=ot,Y.doneFn=it,function(){N=null,j=null,U=s.pathSubplot(),V=!1;var t=c._fullLayout[s.id];q=i(t.bgcolor).getLuminance(),(H=m.makeZoombox(f,q,x,T,U)).attr(\"fill-rule\",\"evenodd\"),G=m.makeCorners(f,x,T),w(c)}();break;case\"select\":case\"lasso\":b(t,n,a,Y,l)}},R.onmousemove=function(t){y.hover(c,t,s.id),c._fullLayout._lasthover=R,c._fullLayout._hoversubplot=s.id},R.onmouseout=function(t){c._dragging||v.unhover(c,t)},v.init(Y)},O.updateRadialDrag=function(t,e,r){var i=this,c=i.gd,u=i.layers,f=i.radius,h=i.innerRadius,p=i.cx,d=i.cy,g=i.radialAxis,y=S.radialDragBoxSize,x=y/2;if(g.visible){var b,_,T,A=I(i.radialAxisAngle),E=g._rl,C=E[0],L=E[1],z=E[r],O=.75*(E[1]-E[0])/(1-e.hole)/f;r?(b=p+(f+x)*Math.cos(A),_=d-(f+x)*Math.sin(A),T=\"radialdrag\"):(b=p+(h-x)*Math.cos(A),_=d-(h-x)*Math.sin(A),T=\"radialdrag-inner\");var D,B,N,j=m.makeRectDragger(u,T,\"crosshair\",-x,-x,y,y),U={element:j,gd:c};F(n.select(j),g.visible&&h<f,{transform:l(b,_)}),U.prepFn=function(){D=null,B=null,N=null,U.moveFn=V,U.doneFn=q,w(c)},U.clampFn=function(t,e){return Math.sqrt(t*t+e*e)<S.MINDRAG&&(t=0,e=0),[t,e]},v.init(U)}function V(t,e){if(D)D(t,e);else{var n=[t,-e],a=[Math.cos(A),Math.sin(A)],s=Math.abs(o.dot(n,a)/Math.sqrt(o.dot(n,n)));isNaN(s)||(D=s<.5?H:G)}var l={};!function(t){null!==B?t[i.id+\".radialaxis.angle\"]=B:null!==N&&(t[i.id+\".radialaxis.range[\"+r+\"]\"]=N)}(l),c.emit(\"plotly_relayouting\",l)}function q(){null!==B?a.call(\"_guiRelayout\",c,i.id+\".radialaxis.angle\",B):null!==N&&a.call(\"_guiRelayout\",c,i.id+\".radialaxis.range[\"+r+\"]\",N)}function H(t,e){if(0!==r){var n=b+t,a=_+e;B=Math.atan2(d-a,n-p),i.vangles&&(B=R(B,i.vangles)),B=P(B);var o=l(p,d)+s(-B);u[\"radial-axis\"].attr(\"transform\",o),u[\"radial-line\"].select(\"line\").attr(\"transform\",o);var c=i.gd._fullLayout,f=c[i.id];i.updateRadialAxisTitle(c,f,B)}}function G(t,e){var n=o.dot([t,-e],[Math.cos(A),Math.sin(A)]);if(N=z-O*n,O>0==(r?N>C:N<L)){var s=c._fullLayout,l=s[i.id];g.range[r]=N,g._rl[r]=N,i.updateRadialAxis(s,l),i.xaxis.setRange(),i.xaxis.setScale(),i.yaxis.setRange(),i.yaxis.setScale();var u=!1;for(var f in i.traceHash){var h=i.traceHash[f],p=o.filterVisible(h);h[0][0].trace._module.plot(c,i,p,l),a.traceIs(f,\"gl\")&&p.length&&(u=!0)}u&&(k(c),M(c))}else N=null}},O.updateAngularDrag=function(t){var e=this,r=e.gd,i=e.layers,c=e.radius,f=e.angularAxis,h=e.cx,p=e.cy,d=e.cxx,g=e.cyy,y=S.angularDragBoxSize,x=m.makeDragger(i,\"path\",\"angulardrag\",\"move\"),b={element:x,gd:r};function _(t,e){return Math.atan2(g+y-e,t-d-y)}n.select(x).attr(\"d\",e.pathAnnulus(c,c+y)).attr(\"transform\",l(h,p)).call(T,\"move\");var A,E,C,L,I,z,O=i.frontplot.select(\".scatterlayer\").selectAll(\".trace\"),D=O.selectAll(\".point\"),R=O.selectAll(\".textpoint\");function F(c,m){var v=e.gd._fullLayout,y=v[e.id],x=_(A+c*t._invScaleX,E+m*t._invScaleY),b=P(x-z);if(L=C+b,i.frontplot.attr(\"transform\",l(e.xOffset2,e.yOffset2)+s([-b,d,g])),e.vangles){I=e.radialAxisAngle+b;var w=l(h,p)+s(-b),T=l(h,p)+s(-I);i.bg.attr(\"transform\",w),i[\"radial-grid\"].attr(\"transform\",w),i[\"radial-axis\"].attr(\"transform\",T),i[\"radial-line\"].select(\"line\").attr(\"transform\",T),e.updateRadialAxisTitle(v,y,I)}else e.clipPaths.forTraces.select(\"path\").attr(\"transform\",l(d,g)+s(b));D.each((function(){var t=n.select(this),e=u.getTranslate(t);t.attr(\"transform\",l(e.x,e.y)+s([b]))})),R.each((function(){var t=n.select(this),e=t.select(\"text\"),r=u.getTranslate(t);t.attr(\"transform\",s([b,e.attr(\"x\"),e.attr(\"y\")])+l(r.x,r.y))})),f.rotation=o.modHalf(L,360),e.updateAngularAxis(v,y),e._hasClipOnAxisFalse&&!o.isFullCircle(e.sectorInRad)&&O.call(u.hideOutsideRangePoints,e);var S=!1;for(var F in e.traceHash)if(a.traceIs(F,\"gl\")){var N=e.traceHash[F],j=o.filterVisible(N);N[0][0].trace._module.plot(r,e,j,y),j.length&&(S=!0)}S&&(k(r),M(r));var U={};B(U),r.emit(\"plotly_relayouting\",U)}function B(t){t[e.id+\".angularaxis.rotation\"]=L,e.vangles&&(t[e.id+\".radialaxis.angle\"]=I)}function N(){R.select(\"text\").attr(\"transform\",null);var t={};B(t),a.call(\"_guiRelayout\",r,t)}b.prepFn=function(n,i,a){var s=t[e.id];C=s.angularaxis.rotation;var l=x.getBoundingClientRect();A=i-l.left,E=a-l.top,r._fullLayout._calcInverseTransform(r);var c=o.apply3DTransform(t._invTransform)(A,E);A=c[0],E=c[1],z=_(A,E),b.moveFn=F,b.doneFn=N,w(r)},e.vangles&&!o.isFullCircle(e.sectorInRad)&&(b.prepFn=o.noop,T(n.select(x),null)),v.init(b)},O.isPtInside=function(t){var e=this.sectorInRad,r=this.vangles,n=this.angularAxis.c2g(t.theta),i=this.radialAxis,a=i.c2l(t.r),s=i._rl;return(r?E.isPtInsidePolygon:o.isPtInsideSector)(a,n,s,e,r)},O.pathArc=function(t){var e=this.sectorInRad,r=this.vangles;return(r?E.pathPolygon:o.pathArc)(t,e[0],e[1],r)},O.pathSector=function(t){var e=this.sectorInRad,r=this.vangles;return(r?E.pathPolygon:o.pathSector)(t,e[0],e[1],r)},O.pathAnnulus=function(t,e){var r=this.sectorInRad,n=this.vangles;return(n?E.pathPolygonAnnulus:o.pathAnnulus)(t,e,r[0],r[1],n)},O.pathSubplot=function(){var t=this.innerRadius,e=this.radius;return t?this.pathAnnulus(t,e):this.pathSector(e)},O.fillViewInitialKey=function(t,e){t in this.viewInitial||(this.viewInitial[t]=e)}},{\"../../components/color\":643,\"../../components/dragelement\":662,\"../../components/drawing\":665,\"../../components/fx\":683,\"../../components/titles\":738,\"../../constants/alignment\":745,\"../../lib\":778,\"../../lib/clear_gl_canvases\":762,\"../../lib/setcursor\":799,\"../../plot_api/subroutines\":818,\"../../plots/cartesian/axes\":828,\"../../registry\":911,\"../cartesian/autorange\":827,\"../cartesian/dragbox\":836,\"../cartesian/select\":847,\"../cartesian/set_convert\":848,\"../plots\":891,\"./constants\":892,\"./helpers\":893,\"./set_convert\":904,d3:169,tinycolor2:576}],904:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../cartesian/set_convert\"),a=n.deg2rad,o=n.rad2deg;e.exports=function(t,e,r){switch(i(t,r),t._id){case\"x\":case\"radialaxis\":!function(t,e){var r=e._subplot;t.setGeometry=function(){var e=t._rl[0],n=t._rl[1],i=r.innerRadius,a=(r.radius-i)/(n-e),o=i/a,s=e>n?function(t){return t<=0}:function(t){return t>=0};t.c2g=function(r){var n=t.c2l(r)-e;return(s(n)?n:0)+o},t.g2c=function(r){return t.l2c(r+e-o)},t.g2p=function(t){return t*a},t.c2p=function(e){return t.g2p(t.c2g(e))}}}(t,e);break;case\"angularaxis\":!function(t,e){var r=t.type;if(\"linear\"===r){var i=t.d2c,s=t.c2d;t.d2c=function(t,e){return function(t,e){return\"degrees\"===e?a(t):t}(i(t),e)},t.c2d=function(t,e){return s(function(t,e){return\"degrees\"===e?o(t):t}(t,e))}}t.makeCalcdata=function(e,i){var a,o,s=e[i],l=e._length,c=function(r){return t.d2c(r,e.thetaunit)};if(s){if(n.isTypedArray(s)&&\"linear\"===r){if(l===s.length)return s;if(s.subarray)return s.subarray(0,l)}for(a=new Array(l),o=0;o<l;o++)a[o]=c(s[o])}else{var u=i+\"0\",f=\"d\"+i,h=u in e?c(e[u]):0,p=e[f]?c(e[f]):(t.period||2*Math.PI)/l;for(a=new Array(l),o=0;o<l;o++)a[o]=h+o*p}return a},t.setGeometry=function(){var i,s,l,c,u=e.sector,f=u.map(a),h={clockwise:-1,counterclockwise:1}[t.direction],p=a(t.rotation),d=function(t){return h*t+p},g=function(t){return(t-p)/h};switch(r){case\"linear\":s=i=n.identity,c=a,l=o,t.range=n.isFullCircle(f)?[u[0],u[0]+360]:f.map(g).map(o);break;case\"category\":var m=t._categories.length,v=t.period?Math.max(t.period,m):m;0===v&&(v=1),s=c=function(t){return 2*t*Math.PI/v},i=l=function(t){return t*v/Math.PI/2},t.range=[0,v]}t.c2g=function(t){return d(s(t))},t.g2c=function(t){return i(g(t))},t.t2g=function(t){return d(c(t))},t.g2t=function(t){return l(g(t))}}}(t,e)}}},{\"../../lib\":778,\"../cartesian/set_convert\":848}],905:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"../plot_api/plot_template\"),a=t(\"./domain\").defaults;e.exports=function(t,e,r,o){var s,l,c=o.type,u=o.attributes,f=o.handleDefaults,h=o.partition||\"x\",p=e._subplots[c],d=p.length,g=d&&p[0].replace(/\\d+$/,\"\");function m(t,e){return n.coerce(s,l,u,t,e)}for(var v=0;v<d;v++){var y=p[v];s=t[y]?t[y]:t[y]={},l=i.newContainer(e,y,g),m(\"uirevision\",e.uirevision);var x={};x[h]=[v/d,(v+1)/d],a(l,e,m,x),o.id=y,f(s,l,m,o)}}},{\"../lib\":778,\"../plot_api/plot_template\":817,\"./domain\":855}],906:[function(t,e,r){\"use strict\";['Variables are inserted using %{variable}, for example \"y: %{y}\".','Numbers are formatted using d3-format\\'s syntax %{variable:d3-format}, for example \"Price: %{y:$.2f}\".',t(\"../constants/docs\").FORMAT_LINK,\"for details on the formatting syntax.\",'Dates are formatted using d3-time-format\\'s syntax %{variable|d3-time-format}, for example \"Day: %{2019-01-01|%A}\".',t(\"../constants/docs\").DATE_FORMAT_LINK,\"for details on the date formatting syntax.\"].join(\" \");function n(t){var e=t.description?\" \"+t.description:\"\",r=t.keys||[];if(r.length>0){for(var n=[],i=0;i<r.length;i++)n[i]=\"`\"+r[i]+\"`\";e+=\"Finally, the template string has access to \",e=1===r.length?\"variable \"+n[0]:\"variables \"+n.slice(0,-1).join(\", \")+\" and \"+n.slice(-1)+\".\"}return e}r.hovertemplateAttrs=function(t,e){t=t||{};n(e=e||{});var r={valType:\"string\",dflt:\"\",editType:t.editType||\"none\"};return!1!==t.arrayOk&&(r.arrayOk=!0),r},r.texttemplateAttrs=function(t,e){t=t||{};n(e=e||{});var r={valType:\"string\",dflt:\"\",editType:t.editType||\"calc\"};return!1!==t.arrayOk&&(r.arrayOk=!0),r}},{\"../constants/docs\":748}],907:[function(t,e,r){\"use strict\";var n=t(\"./ternary\"),i=t(\"../../plots/get_data\").getSubplotCalcData,a=t(\"../../lib\").counterRegex;r.name=\"ternary\";var o=r.attr=\"subplot\";r.idRoot=\"ternary\",r.idRegex=r.attrRegex=a(\"ternary\"),(r.attributes={})[o]={valType:\"subplotid\",dflt:\"ternary\",editType:\"calc\"},r.layoutAttributes=t(\"./layout_attributes\"),r.supplyLayoutDefaults=t(\"./layout_defaults\"),r.plot=function(t){for(var e=t._fullLayout,r=t.calcdata,a=e._subplots.ternary,o=0;o<a.length;o++){var s=a[o],l=i(r,\"ternary\",s),c=e[s]._subplot;c||(c=new n({id:s,graphDiv:t,container:e._ternarylayer.node()},e),e[s]._subplot=c),c.plot(l,e,t._promises)}},r.clean=function(t,e,r,n){for(var i=n._subplots.ternary||[],a=0;a<i.length;a++){var o=i[a],s=n[o]._subplot;!e[o]&&s&&(s.plotContainer.remove(),s.clipDef.remove(),s.clipDefRelative.remove(),s.layers[\"a-title\"].remove(),s.layers[\"b-title\"].remove(),s.layers[\"c-title\"].remove())}}},{\"../../lib\":778,\"../../plots/get_data\":865,\"./layout_attributes\":908,\"./layout_defaults\":909,\"./ternary\":910}],908:[function(t,e,r){\"use strict\";var n=t(\"../../components/color/attributes\"),i=t(\"../domain\").attributes,a=t(\"../cartesian/layout_attributes\"),o=t(\"../../plot_api/edit_types\").overrideAll,s=t(\"../../lib/extend\").extendFlat,l={title:{text:a.title.text,font:a.title.font},color:a.color,tickmode:a.tickmode,nticks:s({},a.nticks,{dflt:6,min:1}),tick0:a.tick0,dtick:a.dtick,tickvals:a.tickvals,ticktext:a.ticktext,ticks:a.ticks,ticklen:a.ticklen,tickwidth:a.tickwidth,tickcolor:a.tickcolor,showticklabels:a.showticklabels,showtickprefix:a.showtickprefix,tickprefix:a.tickprefix,showticksuffix:a.showticksuffix,ticksuffix:a.ticksuffix,showexponent:a.showexponent,exponentformat:a.exponentformat,minexponent:a.minexponent,separatethousands:a.separatethousands,tickfont:a.tickfont,tickangle:a.tickangle,tickformat:a.tickformat,tickformatstops:a.tickformatstops,hoverformat:a.hoverformat,showline:s({},a.showline,{dflt:!0}),linecolor:a.linecolor,linewidth:a.linewidth,showgrid:s({},a.showgrid,{dflt:!0}),gridcolor:a.gridcolor,gridwidth:a.gridwidth,layer:a.layer,min:{valType:\"number\",dflt:0,min:0},_deprecated:{title:a._deprecated.title,titlefont:a._deprecated.titlefont}},c=e.exports=o({domain:i({name:\"ternary\"}),bgcolor:{valType:\"color\",dflt:n.background},sum:{valType:\"number\",dflt:1,min:0},aaxis:l,baxis:l,caxis:l},\"plot\",\"from-root\");c.uirevision={valType:\"any\",editType:\"none\"},c.aaxis.uirevision=c.baxis.uirevision=c.caxis.uirevision={valType:\"any\",editType:\"none\"}},{\"../../components/color/attributes\":642,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../cartesian/layout_attributes\":842,\"../domain\":855}],909:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"../../plot_api/plot_template\"),a=t(\"../../lib\"),o=t(\"../subplot_defaults\"),s=t(\"../cartesian/tick_label_defaults\"),l=t(\"../cartesian/tick_mark_defaults\"),c=t(\"../cartesian/tick_value_defaults\"),u=t(\"../cartesian/line_grid_defaults\"),f=t(\"./layout_attributes\"),h=[\"aaxis\",\"baxis\",\"caxis\"];function p(t,e,r,a){var o,s,l,c=r(\"bgcolor\"),u=r(\"sum\");a.bgColor=n.combine(c,a.paper_bgcolor);for(var f=0;f<h.length;f++)s=t[o=h[f]]||{},(l=i.newContainer(e,o))._name=o,d(s,l,a,e);var p=e.aaxis,g=e.baxis,m=e.caxis;p.min+g.min+m.min>=u&&(p.min=0,g.min=0,m.min=0,t.aaxis&&delete t.aaxis.min,t.baxis&&delete t.baxis.min,t.caxis&&delete t.caxis.min)}function d(t,e,r,n){var i=f[e._name];function o(r,n){return a.coerce(t,e,i,r,n)}o(\"uirevision\",n.uirevision),e.type=\"linear\";var h=o(\"color\"),p=h!==i.color.dflt?h:r.font.color,d=e._name.charAt(0).toUpperCase(),g=\"Component \"+d,m=o(\"title.text\",g);e._hovertitle=m===g?m:d,a.coerceFont(o,\"title.font\",{family:r.font.family,size:Math.round(1.2*r.font.size),color:p}),o(\"min\"),c(t,e,o,\"linear\"),s(t,e,o,\"linear\",{}),l(t,e,o,{outerTicks:!0}),o(\"showticklabels\")&&(a.coerceFont(o,\"tickfont\",{family:r.font.family,size:r.font.size,color:p}),o(\"tickangle\"),o(\"tickformat\")),u(t,e,o,{dfltColor:h,bgColor:r.bgColor,blend:60,showLine:!0,showGrid:!0,noZeroLine:!0,attributes:i}),o(\"hoverformat\"),o(\"layer\")}e.exports=function(t,e,r){o(t,e,r,{type:\"ternary\",attributes:f,handleDefaults:p,font:e.font,paper_bgcolor:e.paper_bgcolor})}},{\"../../components/color\":643,\"../../lib\":778,\"../../plot_api/plot_template\":817,\"../cartesian/line_grid_defaults\":844,\"../cartesian/tick_label_defaults\":849,\"../cartesian/tick_mark_defaults\":850,\"../cartesian/tick_value_defaults\":851,\"../subplot_defaults\":905,\"./layout_attributes\":908}],910:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"tinycolor2\"),a=t(\"../../registry\"),o=t(\"../../lib\"),s=o.strTranslate,l=o._,c=t(\"../../components/color\"),u=t(\"../../components/drawing\"),f=t(\"../cartesian/set_convert\"),h=t(\"../../lib/extend\").extendFlat,p=t(\"../plots\"),d=t(\"../cartesian/axes\"),g=t(\"../../components/dragelement\"),m=t(\"../../components/fx\"),v=t(\"../../components/dragelement/helpers\"),y=v.freeMode,x=v.rectMode,b=t(\"../../components/titles\"),_=t(\"../cartesian/select\").prepSelect,w=t(\"../cartesian/select\").selectOnClick,T=t(\"../cartesian/select\").clearSelect,k=t(\"../cartesian/select\").clearSelectionsCache,M=t(\"../cartesian/constants\");function A(t,e){this.id=t.id,this.graphDiv=t.graphDiv,this.init(e),this.makeFramework(e),this.aTickLayout=null,this.bTickLayout=null,this.cTickLayout=null}e.exports=A;var S=A.prototype;S.init=function(t){this.container=t._ternarylayer,this.defs=t._defs,this.layoutId=t._uid,this.traceHash={},this.layers={}},S.plot=function(t,e){var r=e[this.id],n=e._size;this._hasClipOnAxisFalse=!1;for(var i=0;i<t.length;i++){if(!1===t[i][0].trace.cliponaxis){this._hasClipOnAxisFalse=!0;break}}this.updateLayers(r),this.adjustLayout(r,n),p.generalUpdatePerTraceModule(this.graphDiv,this,t,r),this.layers.plotbg.select(\"path\").call(c.fill,r.bgcolor)},S.makeFramework=function(t){var e=this.graphDiv,r=t[this.id],n=this.clipId=\"clip\"+this.layoutId+this.id,i=this.clipIdRelative=\"clip-relative\"+this.layoutId+this.id;this.clipDef=o.ensureSingleById(t._clips,\"clipPath\",n,(function(t){t.append(\"path\").attr(\"d\",\"M0,0Z\")})),this.clipDefRelative=o.ensureSingleById(t._clips,\"clipPath\",i,(function(t){t.append(\"path\").attr(\"d\",\"M0,0Z\")})),this.plotContainer=o.ensureSingle(this.container,\"g\",this.id),this.updateLayers(r),u.setClipUrl(this.layers.backplot,n,e),u.setClipUrl(this.layers.grids,n,e)},S.updateLayers=function(t){var e=this.layers,r=[\"draglayer\",\"plotbg\",\"backplot\",\"grids\"];\"below traces\"===t.aaxis.layer&&r.push(\"aaxis\",\"aline\"),\"below traces\"===t.baxis.layer&&r.push(\"baxis\",\"bline\"),\"below traces\"===t.caxis.layer&&r.push(\"caxis\",\"cline\"),r.push(\"frontplot\"),\"above traces\"===t.aaxis.layer&&r.push(\"aaxis\",\"aline\"),\"above traces\"===t.baxis.layer&&r.push(\"baxis\",\"bline\"),\"above traces\"===t.caxis.layer&&r.push(\"caxis\",\"cline\");var i=this.plotContainer.selectAll(\"g.toplevel\").data(r,String),a=[\"agrid\",\"bgrid\",\"cgrid\"];i.enter().append(\"g\").attr(\"class\",(function(t){return\"toplevel \"+t})).each((function(t){var r=n.select(this);e[t]=r,\"frontplot\"===t?r.append(\"g\").classed(\"scatterlayer\",!0):\"backplot\"===t?r.append(\"g\").classed(\"maplayer\",!0):\"plotbg\"===t?r.append(\"path\").attr(\"d\",\"M0,0Z\"):\"aline\"===t||\"bline\"===t||\"cline\"===t?r.append(\"path\"):\"grids\"===t&&a.forEach((function(t){e[t]=r.append(\"g\").classed(\"grid \"+t,!0)}))})),i.order()};var E=Math.sqrt(4/3);S.adjustLayout=function(t,e){var r,n,i,a,o,l,p=this,d=t.domain,g=(d.x[0]+d.x[1])/2,m=(d.y[0]+d.y[1])/2,v=d.x[1]-d.x[0],y=d.y[1]-d.y[0],x=v*e.w,b=y*e.h,_=t.sum,w=t.aaxis.min,T=t.baxis.min,k=t.caxis.min;x>E*b?i=(a=b)*E:a=(i=x)/E,o=v*i/x,l=y*a/b,r=e.l+e.w*g-i/2,n=e.t+e.h*(1-m)-a/2,p.x0=r,p.y0=n,p.w=i,p.h=a,p.sum=_,p.xaxis={type:\"linear\",range:[w+2*k-_,_-w-2*T],domain:[g-o/2,g+o/2],_id:\"x\"},f(p.xaxis,p.graphDiv._fullLayout),p.xaxis.setScale(),p.xaxis.isPtWithinRange=function(t){return t.a>=p.aaxis.range[0]&&t.a<=p.aaxis.range[1]&&t.b>=p.baxis.range[1]&&t.b<=p.baxis.range[0]&&t.c>=p.caxis.range[1]&&t.c<=p.caxis.range[0]},p.yaxis={type:\"linear\",range:[w,_-T-k],domain:[m-l/2,m+l/2],_id:\"y\"},f(p.yaxis,p.graphDiv._fullLayout),p.yaxis.setScale(),p.yaxis.isPtWithinRange=function(){return!0};var M=p.yaxis.domain[0],A=p.aaxis=h({},t.aaxis,{range:[w,_-T-k],side:\"left\",tickangle:(+t.aaxis.tickangle||0)-30,domain:[M,M+l*E],anchor:\"free\",position:0,_id:\"y\",_length:i});f(A,p.graphDiv._fullLayout),A.setScale();var S=p.baxis=h({},t.baxis,{range:[_-w-k,T],side:\"bottom\",domain:p.xaxis.domain,anchor:\"free\",position:0,_id:\"x\",_length:i});f(S,p.graphDiv._fullLayout),S.setScale();var C=p.caxis=h({},t.caxis,{range:[_-w-T,k],side:\"right\",tickangle:(+t.caxis.tickangle||0)+30,domain:[M,M+l*E],anchor:\"free\",position:0,_id:\"y\",_length:i});f(C,p.graphDiv._fullLayout),C.setScale();var L=\"M\"+r+\",\"+(n+a)+\"h\"+i+\"l-\"+i/2+\",-\"+a+\"Z\";p.clipDef.select(\"path\").attr(\"d\",L),p.layers.plotbg.select(\"path\").attr(\"d\",L);var I=\"M0,\"+a+\"h\"+i+\"l-\"+i/2+\",-\"+a+\"Z\";p.clipDefRelative.select(\"path\").attr(\"d\",I);var P=s(r,n);p.plotContainer.selectAll(\".scatterlayer,.maplayer\").attr(\"transform\",P),p.clipDefRelative.select(\"path\").attr(\"transform\",null);var z=s(r-S._offset,n+a);p.layers.baxis.attr(\"transform\",z),p.layers.bgrid.attr(\"transform\",z);var O=s(r+i/2,n)+\"rotate(30)\"+s(0,-A._offset);p.layers.aaxis.attr(\"transform\",O),p.layers.agrid.attr(\"transform\",O);var D=s(r+i/2,n)+\"rotate(-30)\"+s(0,-C._offset);p.layers.caxis.attr(\"transform\",D),p.layers.cgrid.attr(\"transform\",D),p.drawAxes(!0),p.layers.aline.select(\"path\").attr(\"d\",A.showline?\"M\"+r+\",\"+(n+a)+\"l\"+i/2+\",-\"+a:\"M0,0\").call(c.stroke,A.linecolor||\"#000\").style(\"stroke-width\",(A.linewidth||0)+\"px\"),p.layers.bline.select(\"path\").attr(\"d\",S.showline?\"M\"+r+\",\"+(n+a)+\"h\"+i:\"M0,0\").call(c.stroke,S.linecolor||\"#000\").style(\"stroke-width\",(S.linewidth||0)+\"px\"),p.layers.cline.select(\"path\").attr(\"d\",C.showline?\"M\"+(r+i/2)+\",\"+n+\"l\"+i/2+\",\"+a:\"M0,0\").call(c.stroke,C.linecolor||\"#000\").style(\"stroke-width\",(C.linewidth||0)+\"px\"),p.graphDiv._context.staticPlot||p.initInteractions(),u.setClipUrl(p.layers.frontplot,p._hasClipOnAxisFalse?null:p.clipId,p.graphDiv)},S.drawAxes=function(t){var e=this.graphDiv,r=this.id.substr(7)+\"title\",n=this.layers,i=this.aaxis,a=this.baxis,o=this.caxis;if(this.drawAx(i),this.drawAx(a),this.drawAx(o),t){var s=Math.max(i.showticklabels?i.tickfont.size/2:0,(o.showticklabels?.75*o.tickfont.size:0)+(\"outside\"===o.ticks?.87*o.ticklen:0)),c=(a.showticklabels?a.tickfont.size:0)+(\"outside\"===a.ticks?a.ticklen:0)+3;n[\"a-title\"]=b.draw(e,\"a\"+r,{propContainer:i,propName:this.id+\".aaxis.title\",placeholder:l(e,\"Click to enter Component A title\"),attributes:{x:this.x0+this.w/2,y:this.y0-i.title.font.size/3-s,\"text-anchor\":\"middle\"}}),n[\"b-title\"]=b.draw(e,\"b\"+r,{propContainer:a,propName:this.id+\".baxis.title\",placeholder:l(e,\"Click to enter Component B title\"),attributes:{x:this.x0-c,y:this.y0+this.h+.83*a.title.font.size+c,\"text-anchor\":\"middle\"}}),n[\"c-title\"]=b.draw(e,\"c\"+r,{propContainer:o,propName:this.id+\".caxis.title\",placeholder:l(e,\"Click to enter Component C title\"),attributes:{x:this.x0+this.w+c,y:this.y0+this.h+.83*o.title.font.size+c,\"text-anchor\":\"middle\"}})}},S.drawAx=function(t){var e,r=this.graphDiv,n=t._name,i=n.charAt(0),a=t._id,s=this.layers[n],l=i+\"tickLayout\",c=(e=t).ticks+String(e.ticklen)+String(e.showticklabels);this[l]!==c&&(s.selectAll(\".\"+a+\"tick\").remove(),this[l]=c),t.setScale();var u=d.calcTicks(t),f=d.clipEnds(t,u),h=d.makeTransTickFn(t),p=d.getTickSigns(t)[2],g=o.deg2rad(30),m=p*(t.linewidth||1)/2,v=p*t.ticklen,y=this.w,x=this.h,b=\"b\"===i?\"M0,\"+m+\"l\"+Math.sin(g)*v+\",\"+Math.cos(g)*v:\"M\"+m+\",0l\"+Math.cos(g)*v+\",\"+-Math.sin(g)*v,_={a:\"M0,0l\"+x+\",-\"+y/2,b:\"M0,0l-\"+y/2+\",-\"+x,c:\"M0,0l-\"+x+\",\"+y/2}[i];d.drawTicks(r,t,{vals:\"inside\"===t.ticks?f:u,layer:s,path:b,transFn:h,crisp:!1}),d.drawGrid(r,t,{vals:f,layer:this.layers[i+\"grid\"],path:_,transFn:h,crisp:!1}),d.drawLabels(r,t,{vals:u,layer:s,transFn:h,labelFns:d.makeLabelFns(t,0,30)})};var C=M.MINZOOM/2+.87,L=\"m-0.87,.5h\"+C+\"v3h-\"+(C+5.2)+\"l\"+(C/2+2.6)+\",-\"+(.87*C+4.5)+\"l2.6,1.5l-\"+C/2+\",\"+.87*C+\"Z\",I=\"m0.87,.5h-\"+C+\"v3h\"+(C+5.2)+\"l-\"+(C/2+2.6)+\",-\"+(.87*C+4.5)+\"l-2.6,1.5l\"+C/2+\",\"+.87*C+\"Z\",P=\"m0,1l\"+C/2+\",\"+.87*C+\"l2.6,-1.5l-\"+(C/2+2.6)+\",-\"+(.87*C+4.5)+\"l-\"+(C/2+2.6)+\",\"+(.87*C+4.5)+\"l2.6,1.5l\"+C/2+\",-\"+.87*C+\"Z\",z=!0;function O(t){n.select(t).selectAll(\".zoombox,.js-zoombox-backdrop,.js-zoombox-menu,.zoombox-corners\").remove()}S.clearSelect=function(){k(this.dragOptions),T(this.dragOptions.gd)},S.initInteractions=function(){var t,e,r,n,f,h,p,d,v,b,T,k,A=this,S=A.layers.plotbg.select(\"path\").node(),C=A.graphDiv,D=C._fullLayout._zoomlayer;function R(t){var e={};return e[A.id+\".aaxis.min\"]=t.a,e[A.id+\".baxis.min\"]=t.b,e[A.id+\".caxis.min\"]=t.c,e}function F(t,e){var r=C._fullLayout.clickmode;O(C),2===t&&(C.emit(\"plotly_doubleclick\",null),a.call(\"_guiRelayout\",C,R({a:0,b:0,c:0}))),r.indexOf(\"select\")>-1&&1===t&&w(e,C,[A.xaxis],[A.yaxis],A.id,A.dragOptions),r.indexOf(\"event\")>-1&&m.click(C,e,A.id)}function B(t,e){return 1-e/A.h}function N(t,e){return 1-(t+(A.h-e)/Math.sqrt(3))/A.w}function j(t,e){return(t-(A.h-e)/Math.sqrt(3))/A.w}function U(i,a){var o=r+i*t,s=n+a*e,l=Math.max(0,Math.min(1,B(0,n),B(0,s))),c=Math.max(0,Math.min(1,N(r,n),N(o,s))),u=Math.max(0,Math.min(1,j(r,n),j(o,s))),g=(l/2+u)*A.w,m=(1-l/2-c)*A.w,y=(g+m)/2,x=m-g,_=(1-l)*A.h,w=_-x/E;x<M.MINZOOM?(p=f,T.attr(\"d\",v),k.attr(\"d\",\"M0,0Z\")):(p={a:f.a+l*h,b:f.b+c*h,c:f.c+u*h},T.attr(\"d\",v+\"M\"+g+\",\"+_+\"H\"+m+\"L\"+y+\",\"+w+\"L\"+g+\",\"+_+\"Z\"),k.attr(\"d\",\"M\"+r+\",\"+n+\"m0.5,0.5h5v-2h-5v-5h-2v5h-5v2h5v5h2ZM\"+g+\",\"+_+L+\"M\"+m+\",\"+_+I+\"M\"+y+\",\"+w+P)),b||(T.transition().style(\"fill\",d>.2?\"rgba(0,0,0,0.4)\":\"rgba(255,255,255,0.3)\").duration(200),k.transition().style(\"opacity\",1).duration(200),b=!0),C.emit(\"plotly_relayouting\",R(p))}function V(){O(C),p!==f&&(a.call(\"_guiRelayout\",C,R(p)),z&&C.data&&C._context.showTips&&(o.notifier(l(C,\"Double-click to zoom back out\"),\"long\"),z=!1))}function q(t,e){var r=t/A.xaxis._m,n=e/A.yaxis._m,i=[(p={a:f.a-n,b:f.b+(r+n)/2,c:f.c-(r-n)/2}).a,p.b,p.c].sort(o.sorterAsc),a=i.indexOf(p.a),l=i.indexOf(p.b),c=i.indexOf(p.c);i[0]<0&&(i[1]+i[0]/2<0?(i[2]+=i[0]+i[1],i[0]=i[1]=0):(i[2]+=i[0]/2,i[1]+=i[0]/2,i[0]=0),p={a:i[a],b:i[l],c:i[c]},e=(f.a-p.a)*A.yaxis._m,t=(f.c-p.c-f.b+p.b)*A.xaxis._m);var h=s(A.x0+t,A.y0+e);A.plotContainer.selectAll(\".scatterlayer,.maplayer\").attr(\"transform\",h);var d=s(-t,-e);A.clipDefRelative.select(\"path\").attr(\"transform\",d),A.aaxis.range=[p.a,A.sum-p.b-p.c],A.baxis.range=[A.sum-p.a-p.c,p.b],A.caxis.range=[A.sum-p.a-p.b,p.c],A.drawAxes(!1),A._hasClipOnAxisFalse&&A.plotContainer.select(\".scatterlayer\").selectAll(\".trace\").call(u.hideOutsideRangePoints,A),C.emit(\"plotly_relayouting\",R(p))}function H(){a.call(\"_guiRelayout\",C,R(p))}this.dragOptions={element:S,gd:C,plotinfo:{id:A.id,domain:C._fullLayout[A.id].domain,xaxis:A.xaxis,yaxis:A.yaxis},subplot:A.id,prepFn:function(a,l,u){A.dragOptions.xaxes=[A.xaxis],A.dragOptions.yaxes=[A.yaxis],t=C._fullLayout._invScaleX,e=C._fullLayout._invScaleY;var g=A.dragOptions.dragmode=C._fullLayout.dragmode;y(g)?A.dragOptions.minDrag=1:A.dragOptions.minDrag=void 0,\"zoom\"===g?(A.dragOptions.moveFn=U,A.dragOptions.clickFn=F,A.dragOptions.doneFn=V,function(t,e,a){var l=S.getBoundingClientRect();r=e-l.left,n=a-l.top,C._fullLayout._calcInverseTransform(C);var u=C._fullLayout._invTransform,g=o.apply3DTransform(u)(r,n);r=g[0],n=g[1],f={a:A.aaxis.range[0],b:A.baxis.range[1],c:A.caxis.range[1]},p=f,h=A.aaxis.range[1]-f.a,d=i(A.graphDiv._fullLayout[A.id].bgcolor).getLuminance(),v=\"M0,\"+A.h+\"L\"+A.w/2+\", 0L\"+A.w+\",\"+A.h+\"Z\",b=!1,T=D.append(\"path\").attr(\"class\",\"zoombox\").attr(\"transform\",s(A.x0,A.y0)).style({fill:d>.2?\"rgba(0,0,0,0)\":\"rgba(255,255,255,0)\",\"stroke-width\":0}).attr(\"d\",v),k=D.append(\"path\").attr(\"class\",\"zoombox-corners\").attr(\"transform\",s(A.x0,A.y0)).style({fill:c.background,stroke:c.defaultLine,\"stroke-width\":1,opacity:0}).attr(\"d\",\"M0,0Z\"),A.clearSelect(C)}(0,l,u)):\"pan\"===g?(A.dragOptions.moveFn=q,A.dragOptions.clickFn=F,A.dragOptions.doneFn=H,f={a:A.aaxis.range[0],b:A.baxis.range[1],c:A.caxis.range[1]},p=f,A.clearSelect(C)):(x(g)||y(g))&&_(a,l,u,A.dragOptions,g)}},S.onmousemove=function(t){m.hover(C,t,A.id),C._fullLayout._lasthover=S,C._fullLayout._hoversubplot=A.id},S.onmouseout=function(t){C._dragging||g.unhover(C,t)},g.init(this.dragOptions)}},{\"../../components/color\":643,\"../../components/dragelement\":662,\"../../components/dragelement/helpers\":661,\"../../components/drawing\":665,\"../../components/fx\":683,\"../../components/titles\":738,\"../../lib\":778,\"../../lib/extend\":768,\"../../registry\":911,\"../cartesian/axes\":828,\"../cartesian/constants\":834,\"../cartesian/select\":847,\"../cartesian/set_convert\":848,\"../plots\":891,d3:169,tinycolor2:576}],911:[function(t,e,r){\"use strict\";var n=t(\"./lib/loggers\"),i=t(\"./lib/noop\"),a=t(\"./lib/push_unique\"),o=t(\"./lib/is_plain_object\"),s=t(\"./lib/dom\").addStyleRule,l=t(\"./lib/extend\"),c=t(\"./plots/attributes\"),u=t(\"./plots/layout_attributes\"),f=l.extendFlat,h=l.extendDeepAll;function p(t){var e=t.name,i=t.categories,a=t.meta;if(r.modules[e])n.log(\"Type \"+e+\" already registered\");else{r.subplotsRegistry[t.basePlotModule.name]||function(t){var e=t.name;if(r.subplotsRegistry[e])return void n.log(\"Plot type \"+e+\" already registered.\");for(var i in v(t),r.subplotsRegistry[e]=t,r.componentsRegistry)b(i,t.name)}(t.basePlotModule);for(var o={},l=0;l<i.length;l++)o[i[l]]=!0,r.allCategories[i[l]]=!0;for(var c in r.modules[e]={_module:t,categories:o},a&&Object.keys(a).length&&(r.modules[e].meta=a),r.allTypes.push(e),r.componentsRegistry)y(c,e);t.layoutAttributes&&f(r.traceLayoutAttributes,t.layoutAttributes);var u=t.basePlotModule,h=u.name;if(\"mapbox\"===h){var p=u.constants.styleRules;for(var d in p)s(\".js-plotly-plot .plotly .mapboxgl-\"+d,p[d])}\"geo\"!==h&&\"mapbox\"!==h||void 0===typeof window||void 0!==window.PlotlyGeoAssets||(window.PlotlyGeoAssets={topojson:{}})}}function d(t){if(\"string\"!=typeof t.name)throw new Error(\"Component module *name* must be a string.\");var e=t.name;for(var n in r.componentsRegistry[e]=t,t.layoutAttributes&&(t.layoutAttributes._isLinkedToArray&&a(r.layoutArrayContainers,e),v(t)),r.modules)y(e,n);for(var i in r.subplotsRegistry)b(e,i);for(var o in r.transformsRegistry)x(e,o);t.schema&&t.schema.layout&&h(u,t.schema.layout)}function g(t){if(\"string\"!=typeof t.name)throw new Error(\"Transform module *name* must be a string.\");var e=\"Transform module \"+t.name,i=\"function\"==typeof t.transform,a=\"function\"==typeof t.calcTransform;if(!i&&!a)throw new Error(e+\" is missing a *transform* or *calcTransform* method.\");for(var s in i&&a&&n.log([e+\" has both a *transform* and *calcTransform* methods.\",\"Please note that all *transform* methods are executed\",\"before all *calcTransform* methods.\"].join(\" \")),o(t.attributes)||n.log(e+\" registered without an *attributes* object.\"),\"function\"!=typeof t.supplyDefaults&&n.log(e+\" registered without a *supplyDefaults* method.\"),r.transformsRegistry[t.name]=t,r.componentsRegistry)x(s,t.name)}function m(t){var e=t.name,n=e.split(\"-\")[0],i=t.dictionary,a=t.format,o=i&&Object.keys(i).length,s=a&&Object.keys(a).length,l=r.localeRegistry,c=l[e];if(c||(l[e]=c={}),n!==e){var u=l[n];u||(l[n]=u={}),o&&u.dictionary===c.dictionary&&(u.dictionary=i),s&&u.format===c.format&&(u.format=a)}o&&(c.dictionary=i),s&&(c.format=a)}function v(t){if(t.layoutAttributes){var e=t.layoutAttributes._arrayAttrRegexps;if(e)for(var n=0;n<e.length;n++)a(r.layoutArrayRegexes,e[n])}}function y(t,e){var n=r.componentsRegistry[t].schema;if(n&&n.traces){var i=n.traces[e];i&&h(r.modules[e]._module.attributes,i)}}function x(t,e){var n=r.componentsRegistry[t].schema;if(n&&n.transforms){var i=n.transforms[e];i&&h(r.transformsRegistry[e].attributes,i)}}function b(t,e){var n=r.componentsRegistry[t].schema;if(n&&n.subplots){var i=r.subplotsRegistry[e],a=i.layoutAttributes,o=\"subplot\"===i.attr?i.name:i.attr;Array.isArray(o)&&(o=o[0]);var s=n.subplots[o];a&&s&&h(a,s)}}function _(t){return\"object\"==typeof t&&(t=t.type),t}r.modules={},r.allCategories={},r.allTypes=[],r.subplotsRegistry={},r.transformsRegistry={},r.componentsRegistry={},r.layoutArrayContainers=[],r.layoutArrayRegexes=[],r.traceLayoutAttributes={},r.localeRegistry={},r.apiMethodRegistry={},r.collectableSubplotTypes=null,r.register=function(t){if(r.collectableSubplotTypes=null,!t)throw new Error(\"No argument passed to Plotly.register.\");t&&!Array.isArray(t)&&(t=[t]);for(var e=0;e<t.length;e++){var n=t[e];if(!n)throw new Error(\"Invalid module was attempted to be registered!\");switch(n.moduleType){case\"trace\":p(n);break;case\"transform\":g(n);break;case\"component\":d(n);break;case\"locale\":m(n);break;case\"apiMethod\":var i=n.name;r.apiMethodRegistry[i]=n.fn;break;default:throw new Error(\"Invalid module was attempted to be registered!\")}}},r.getModule=function(t){var e=r.modules[_(t)];return!!e&&e._module},r.traceIs=function(t,e){if(\"various\"===(t=_(t)))return!1;var i=r.modules[t];return i||(t&&\"area\"!==t&&n.log(\"Unrecognized trace type \"+t+\".\"),i=r.modules[c.type.dflt]),!!i.categories[e]},r.getTransformIndices=function(t,e){for(var r=[],n=t.transforms||[],i=0;i<n.length;i++)n[i].type===e&&r.push(i);return r},r.hasTransform=function(t,e){for(var r=t.transforms||[],n=0;n<r.length;n++)if(r[n].type===e)return!0;return!1},r.getComponentMethod=function(t,e){var n=r.componentsRegistry[t];return n&&n[e]||i},r.call=function(){var t=arguments[0],e=[].slice.call(arguments,1);return r.apiMethodRegistry[t].apply(null,e)}},{\"./lib/dom\":766,\"./lib/extend\":768,\"./lib/is_plain_object\":779,\"./lib/loggers\":782,\"./lib/noop\":787,\"./lib/push_unique\":793,\"./plots/attributes\":824,\"./plots/layout_attributes\":882}],912:[function(t,e,r){\"use strict\";var n=t(\"../registry\"),i=t(\"../lib\"),a=i.extendFlat,o=i.extendDeep;function s(t){var e;switch(t){case\"themes__thumb\":e={autosize:!0,width:150,height:150,title:{text:\"\"},showlegend:!1,margin:{l:5,r:5,t:5,b:5,pad:0},annotations:[]};break;case\"thumbnail\":e={title:{text:\"\"},hidesources:!0,showlegend:!1,borderwidth:0,bordercolor:\"\",margin:{l:1,r:1,t:1,b:1,pad:0},annotations:[]};break;default:e={}}return e}e.exports=function(t,e){var r;t.framework&&t.framework.isPolar&&(t=t.framework.getConfig());var i,l=t.data,c=t.layout,u=o([],l),f=o({},c,s(e.tileClass)),h=t._context||{};if(e.width&&(f.width=e.width),e.height&&(f.height=e.height),\"thumbnail\"===e.tileClass||\"themes__thumb\"===e.tileClass){f.annotations=[];var p=Object.keys(f);for(r=0;r<p.length;r++)i=p[r],[\"xaxis\",\"yaxis\",\"zaxis\"].indexOf(i.slice(0,5))>-1&&(f[p[r]].title={text:\"\"});for(r=0;r<u.length;r++){var d=u[r];d.showscale=!1,d.marker&&(d.marker.showscale=!1),n.traceIs(d,\"pie-like\")&&(d.textposition=\"none\")}}if(Array.isArray(e.annotations))for(r=0;r<e.annotations.length;r++)f.annotations.push(e.annotations[r]);var g=Object.keys(f).filter((function(t){return t.match(/^scene\\d*$/)}));if(g.length){var m={};for(\"thumbnail\"===e.tileClass&&(m={title:{text:\"\"},showaxeslabels:!1,showticklabels:!1,linetickenable:!1}),r=0;r<g.length;r++){var v=f[g[r]];v.xaxis||(v.xaxis={}),v.yaxis||(v.yaxis={}),v.zaxis||(v.zaxis={}),a(v.xaxis,m),a(v.yaxis,m),a(v.zaxis,m),v._scene=null}}var y=document.createElement(\"div\");e.tileClass&&(y.className=e.tileClass);var x={gd:y,td:y,layout:f,data:u,config:{staticPlot:void 0===e.staticPlot||e.staticPlot,plotGlPixelRatio:void 0===e.plotGlPixelRatio?2:e.plotGlPixelRatio,displaylogo:e.displaylogo||!1,showLink:e.showLink||!1,showTips:e.showTips||!1,mapboxAccessToken:h.mapboxAccessToken}};return\"transparent\"!==e.setBackground&&(x.config.setBackground=e.setBackground||\"opaque\"),x.gd.defaultLayout=s(e.tileClass),x}},{\"../lib\":778,\"../registry\":911}],913:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"../plot_api/to_image\"),a=t(\"./filesaver\"),o=t(\"./helpers\");e.exports=function(t,e){var r;return n.isPlainObject(t)||(r=n.getGraphDiv(t)),(e=e||{}).format=e.format||\"png\",e.width=e.width||null,e.height=e.height||null,e.imageDataOnly=!0,new Promise((function(s,l){r&&r._snapshotInProgress&&l(new Error(\"Snapshotting already in progress.\")),n.isIE()&&\"svg\"!==e.format&&l(new Error(o.MSG_IE_BAD_FORMAT)),r&&(r._snapshotInProgress=!0);var c=i(t,e),u=e.filename||t.fn||\"newplot\";u+=\".\"+e.format.replace(\"-\",\".\"),c.then((function(t){return r&&(r._snapshotInProgress=!1),a(t,u,e.format)})).then((function(t){s(t)})).catch((function(t){r&&(r._snapshotInProgress=!1),l(t)}))}))}},{\"../lib\":778,\"../plot_api/to_image\":820,\"./filesaver\":914,\"./helpers\":915}],914:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"./helpers\");e.exports=function(t,e,r){var a=document.createElement(\"a\"),o=\"download\"in a;return new Promise((function(s,l){var c,u;if(n.isIE9orBelow()&&l(new Error(\"IE < 10 unsupported\")),n.isSafari()){var f=\"svg\"===r?\",\":\";base64,\";return i.octetStream(f+encodeURIComponent(t)),s(e)}return n.isIE()?(c=i.createBlob(t,\"svg\"),window.navigator.msSaveBlob(c,e),c=null,s(e)):o?(c=i.createBlob(t,r),u=i.createObjectURL(c),a.href=u,a.download=e,document.body.appendChild(a),a.click(),document.body.removeChild(a),i.revokeObjectURL(u),c=null,s(e)):void l(new Error(\"download error\"))}))}},{\"../lib\":778,\"./helpers\":915}],915:[function(t,e,r){\"use strict\";var n=t(\"../registry\");r.getDelay=function(t){return t._has&&(t._has(\"gl3d\")||t._has(\"gl2d\")||t._has(\"mapbox\"))?500:0},r.getRedrawFunc=function(t){return function(){var e=t._fullLayout||{};!(e._has&&e._has(\"polar\"))&&t.data&&t.data[0]&&t.data[0].r||n.getComponentMethod(\"colorbar\",\"draw\")(t)}},r.encodeSVG=function(t){return\"data:image/svg+xml,\"+encodeURIComponent(t)},r.encodeJSON=function(t){return\"data:application/json,\"+encodeURIComponent(t)};var i=window.URL||window.webkitURL;r.createObjectURL=function(t){return i.createObjectURL(t)},r.revokeObjectURL=function(t){return i.revokeObjectURL(t)},r.createBlob=function(t,e){if(\"svg\"===e)return new window.Blob([t],{type:\"image/svg+xml;charset=utf-8\"});if(\"full-json\"===e)return new window.Blob([t],{type:\"application/json;charset=utf-8\"});var r=function(t){for(var e=t.length,r=new ArrayBuffer(e),n=new Uint8Array(r),i=0;i<e;i++)n[i]=t.charCodeAt(i);return r}(window.atob(t));return new window.Blob([r],{type:\"image/\"+e})},r.octetStream=function(t){document.location.href=\"data:application/octet-stream\"+t},r.IMAGE_URL_PREFIX=/^data:image\\/\\w+;base64,/,r.MSG_IE_BAD_FORMAT=\"Sorry IE does not support downloading from canvas. Try {format:'svg'} instead.\"},{\"../registry\":911}],916:[function(t,e,r){\"use strict\";var n=t(\"./helpers\"),i={getDelay:n.getDelay,getRedrawFunc:n.getRedrawFunc,clone:t(\"./cloneplot\"),toSVG:t(\"./tosvg\"),svgToImg:t(\"./svgtoimg\"),toImage:t(\"./toimage\"),downloadImage:t(\"./download\")};e.exports=i},{\"./cloneplot\":912,\"./download\":913,\"./helpers\":915,\"./svgtoimg\":917,\"./toimage\":918,\"./tosvg\":919}],917:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"events\").EventEmitter,a=t(\"./helpers\");e.exports=function(t){var e=t.emitter||new i,r=new Promise((function(i,o){var s=window.Image,l=t.svg,c=t.format||\"png\";if(n.isIE()&&\"svg\"!==c){var u=new Error(a.MSG_IE_BAD_FORMAT);return o(u),t.promise?r:e.emit(\"error\",u)}var f,h,p=t.canvas,d=t.scale||1,g=t.width||300,m=t.height||150,v=d*g,y=d*m,x=p.getContext(\"2d\"),b=new s;\"svg\"===c||n.isIE9orBelow()||n.isSafari()?h=a.encodeSVG(l):(f=a.createBlob(l,\"svg\"),h=a.createObjectURL(f)),p.width=v,p.height=y,b.onload=function(){var r;switch(f=null,a.revokeObjectURL(h),\"svg\"!==c&&x.drawImage(b,0,0,v,y),c){case\"jpeg\":r=p.toDataURL(\"image/jpeg\");break;case\"png\":r=p.toDataURL(\"image/png\");break;case\"webp\":r=p.toDataURL(\"image/webp\");break;case\"svg\":r=h;break;default:var n=\"Image format is not jpeg, png, svg or webp.\";if(o(new Error(n)),!t.promise)return e.emit(\"error\",n)}i(r),t.promise||e.emit(\"success\",r)},b.onerror=function(r){if(f=null,a.revokeObjectURL(h),o(r),!t.promise)return e.emit(\"error\",r)},b.src=h}));return t.promise?r:e}},{\"../lib\":778,\"./helpers\":915,events:110}],918:[function(t,e,r){\"use strict\";var n=t(\"events\").EventEmitter,i=t(\"../registry\"),a=t(\"../lib\"),o=t(\"./helpers\"),s=t(\"./cloneplot\"),l=t(\"./tosvg\"),c=t(\"./svgtoimg\");e.exports=function(t,e){var r=new n,u=s(t,{format:\"png\"}),f=u.gd;f.style.position=\"absolute\",f.style.left=\"-5000px\",document.body.appendChild(f);var h=o.getRedrawFunc(f);return i.call(\"plot\",f,u.data,u.layout,u.config).then(h).then((function(){var t=o.getDelay(f._fullLayout);setTimeout((function(){var t=l(f),n=document.createElement(\"canvas\");n.id=a.randstr(),(r=c({format:e.format,width:f._fullLayout.width,height:f._fullLayout.height,canvas:n,emitter:r,svg:t})).clean=function(){f&&document.body.removeChild(f)}}),t)})).catch((function(t){r.emit(\"error\",t)})),r}},{\"../lib\":778,\"../registry\":911,\"./cloneplot\":912,\"./helpers\":915,\"./svgtoimg\":917,\"./tosvg\":919,events:110}],919:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../lib\"),a=t(\"../components/drawing\"),o=t(\"../components/color\"),s=t(\"../constants/xmlns_namespaces\"),l=/\"/g,c=new RegExp('(\"TOBESTRIPPED)|(TOBESTRIPPED\")',\"g\");e.exports=function(t,e,r){var u,f=t._fullLayout,h=f._paper,p=f._toppaper,d=f.width,g=f.height;h.insert(\"rect\",\":first-child\").call(a.setRect,0,0,d,g).call(o.fill,f.paper_bgcolor);var m=f._basePlotModules||[];for(u=0;u<m.length;u++){var v=m[u];v.toSVG&&v.toSVG(t)}if(p){var y=p.node().childNodes,x=Array.prototype.slice.call(y);for(u=0;u<x.length;u++){var b=x[u];b.childNodes.length&&h.node().appendChild(b)}}if(f._draggers&&f._draggers.remove(),h.node().style.background=\"\",h.selectAll(\"text\").attr({\"data-unformatted\":null,\"data-math\":null}).each((function(){var t=n.select(this);if(\"hidden\"!==this.style.visibility&&\"none\"!==this.style.display){t.style({visibility:null,display:null});var e=this.style.fontFamily;e&&-1!==e.indexOf('\"')&&t.style(\"font-family\",e.replace(l,\"TOBESTRIPPED\"))}else t.remove()})),f._gradientUrlQueryParts){var _=[];for(var w in f._gradientUrlQueryParts)_.push(w);_.length&&h.selectAll(_.join(\",\")).each((function(){var t=n.select(this),e=this.style.fill;e&&-1!==e.indexOf(\"url(\")&&t.style(\"fill\",e.replace(l,\"TOBESTRIPPED\"));var r=this.style.stroke;r&&-1!==r.indexOf(\"url(\")&&t.style(\"stroke\",r.replace(l,\"TOBESTRIPPED\"))}))}\"pdf\"!==e&&\"eps\"!==e||h.selectAll(\"#MathJax_SVG_glyphs path\").attr(\"stroke-width\",0),h.node().setAttributeNS(s.xmlns,\"xmlns\",s.svg),h.node().setAttributeNS(s.xmlns,\"xmlns:xlink\",s.xlink),\"svg\"===e&&r&&(h.attr(\"width\",r*d),h.attr(\"height\",r*g),h.attr(\"viewBox\",\"0 0 \"+d+\" \"+g));var T=(new window.XMLSerializer).serializeToString(h.node());return T=function(t){var e=n.select(\"body\").append(\"div\").style({display:\"none\"}).html(\"\"),r=t.replace(/(&[^;]*;)/gi,(function(t){return\"&lt;\"===t?\"&#60;\":\"&rt;\"===t?\"&#62;\":-1!==t.indexOf(\"<\")||-1!==t.indexOf(\">\")?\"\":e.html(t).text()}));return e.remove(),r}(T),T=(T=T.replace(/&(?!\\w+;|\\#[0-9]+;| \\#x[0-9A-F]+;)/g,\"&amp;\")).replace(c,\"'\"),i.isIE()&&(T=(T=(T=T.replace(/\"/gi,\"'\")).replace(/(\\('#)([^']*)('\\))/gi,'(\"#$2\")')).replace(/(\\\\')/gi,'\"')),T}},{\"../components/color\":643,\"../components/drawing\":665,\"../constants/xmlns_namespaces\":754,\"../lib\":778,d3:169}],920:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){for(var r=0;r<t.length;r++)t[r].i=r;n.mergeArray(e.text,t,\"tx\"),n.mergeArray(e.hovertext,t,\"htx\");var i=e.marker;if(i){n.mergeArray(i.opacity,t,\"mo\",!0),n.mergeArray(i.color,t,\"mc\");var a=i.line;a&&(n.mergeArray(a.color,t,\"mlc\"),n.mergeArrayCastPositive(a.width,t,\"mlw\"))}}},{\"../../lib\":778}],921:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,o=t(\"../../components/colorscale/attributes\"),s=t(\"../../plots/font_attributes\"),l=t(\"./constants\"),c=t(\"../../lib/extend\").extendFlat,u=s({editType:\"calc\",arrayOk:!0,colorEditType:\"style\"}),f=c({},n.marker.line.width,{dflt:0}),h=c({width:f,editType:\"calc\"},o(\"marker.line\")),p=c({line:h,editType:\"calc\"},o(\"marker\"),{opacity:{valType:\"number\",arrayOk:!0,dflt:1,min:0,max:1,editType:\"style\"}});e.exports={x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,xperiod:n.xperiod,yperiod:n.yperiod,xperiod0:n.xperiod0,yperiod0:n.yperiod0,xperiodalignment:n.xperiodalignment,yperiodalignment:n.yperiodalignment,text:n.text,texttemplate:a({editType:\"plot\"},{keys:l.eventDataKeys}),hovertext:n.hovertext,hovertemplate:i({},{keys:l.eventDataKeys}),textposition:{valType:\"enumerated\",values:[\"inside\",\"outside\",\"auto\",\"none\"],dflt:\"none\",arrayOk:!0,editType:\"calc\"},insidetextanchor:{valType:\"enumerated\",values:[\"end\",\"middle\",\"start\"],dflt:\"end\",editType:\"plot\"},textangle:{valType:\"angle\",dflt:\"auto\",editType:\"plot\"},textfont:c({},u,{}),insidetextfont:c({},u,{}),outsidetextfont:c({},u,{}),constraintext:{valType:\"enumerated\",values:[\"inside\",\"outside\",\"both\",\"none\"],dflt:\"both\",editType:\"calc\"},cliponaxis:c({},n.cliponaxis,{}),orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],editType:\"calc+clearAxisTypes\"},base:{valType:\"any\",dflt:null,arrayOk:!0,editType:\"calc\"},offset:{valType:\"number\",dflt:null,arrayOk:!0,editType:\"calc\"},width:{valType:\"number\",dflt:null,min:0,arrayOk:!0,editType:\"calc\"},marker:p,offsetgroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},alignmentgroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},selected:{marker:{opacity:n.selected.marker.opacity,color:n.selected.marker.color,editType:\"style\"},textfont:n.selected.textfont,editType:\"style\"},unselected:{marker:{opacity:n.unselected.marker.opacity,color:n.unselected.marker.color,editType:\"style\"},textfont:n.unselected.textfont,editType:\"style\"},r:n.r,t:n.t,_deprecated:{bardir:{valType:\"enumerated\",editType:\"calc\",values:[\"v\",\"h\"]}}}},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/font_attributes\":856,\"../../plots/template_attributes\":906,\"../scatter/attributes\":1187,\"./constants\":923}],922:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../plots/cartesian/align_period\"),a=t(\"../../components/colorscale/helpers\").hasColorscale,o=t(\"../../components/colorscale/calc\"),s=t(\"./arrays_to_calcdata\"),l=t(\"../scatter/calc_selection\");e.exports=function(t,e){var r,c,u,f,h=n.getFromId(t,e.xaxis||\"x\"),p=n.getFromId(t,e.yaxis||\"y\"),d={msUTC:!(!e.base&&0!==e.base)};\"h\"===e.orientation?(r=h.makeCalcdata(e,\"x\",d),u=p.makeCalcdata(e,\"y\"),c=i(e,p,\"y\",u),f=!!e.yperiodalignment):(r=p.makeCalcdata(e,\"y\",d),u=h.makeCalcdata(e,\"x\"),c=i(e,h,\"x\",u),f=!!e.xperiodalignment);for(var g=Math.min(c.length,r.length),m=new Array(g),v=0;v<g;v++)m[v]={p:c[v],s:r[v]},f&&(m[v].orig_p=u[v]),e.ids&&(m[v].id=String(e.ids[v]));return a(e,\"marker\")&&o(t,e,{vals:e.marker.color,containerStr:\"marker\",cLetter:\"c\"}),a(e,\"marker.line\")&&o(t,e,{vals:e.marker.line.color,containerStr:\"marker.line\",cLetter:\"c\"}),s(m,e),l(m,e),m}},{\"../../components/colorscale/calc\":651,\"../../components/colorscale/helpers\":654,\"../../plots/cartesian/align_period\":825,\"../../plots/cartesian/axes\":828,\"../scatter/calc_selection\":1189,\"./arrays_to_calcdata\":920}],923:[function(t,e,r){\"use strict\";e.exports={TEXTPAD:3,eventDataKeys:[\"value\",\"label\"]}},{}],924:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\").isArrayOrTypedArray,a=t(\"../../constants/numerical\").BADNUM,o=t(\"../../registry\"),s=t(\"../../plots/cartesian/axes\"),l=t(\"../../plots/cartesian/constraints\").getAxisGroup,c=t(\"./sieve.js\");function u(t,e,r,o,u){if(o.length){var b,_,w,T;switch(function(t,e){var r,a;for(r=0;r<e.length;r++){var o,s=e[r],l=s[0].trace,c=\"funnel\"===l.type?l._base:l.base,u=\"h\"===l.orientation?l.xcalendar:l.ycalendar,f=\"category\"===t.type||\"multicategory\"===t.type?function(){return null}:t.d2c;if(i(c)){for(a=0;a<Math.min(c.length,s.length);a++)o=f(c[a],0,u),n(o)?(s[a].b=+o,s[a].hasB=1):s[a].b=0;for(;a<s.length;a++)s[a].b=0}else{o=f(c,0,u);var h=n(o);for(o=h?o:0,a=0;a<s.length;a++)s[a].b=o,h&&(s[a].hasB=1)}}}(r,o),u.mode){case\"overlay\":f(e,r,o,u);break;case\"group\":for(b=[],_=[],w=0;w<o.length;w++)void 0===(T=o[w])[0].trace.offset?_.push(T):b.push(T);_.length&&function(t,e,r,n,i){var o=new c(n,{sepNegVal:!1,overlapNoMerge:!i.norm});(function(t,e,r,n){for(var i=t._fullLayout,a=r.positions,o=r.distinctPositions,s=r.minDiff,c=r.traces,u=c.length,f=a.length!==o.length,h=s*(1-n.gap),m=l(i,e._id)+c[0][0].trace.orientation,v=i._alignmentOpts[m]||{},y=0;y<u;y++){var x,b,_=c[y],w=_[0].trace,T=v[w.alignmentgroup]||{},k=Object.keys(T.offsetGroups||{}).length,M=(x=k?h/k:f?h/u:h)*(1-(n.groupgap||0));b=k?((2*w._offsetIndex+1-k)*x-M)/2:f?((2*y+1-u)*x-M)/2:-M/2;var A=_[0].t;A.barwidth=M,A.poffset=b,A.bargroupwidth=h,A.bardelta=s}r.binWidth=c[0][0].t.barwidth/100,p(r),d(e,r),g(e,r,f)})(t,e,o,i),function(t){for(var e=t.traces,r=0;r<e.length;r++){var n=e[r];if(void 0===n[0].trace.base)for(var i=new c([n],{sepNegVal:!0,overlapNoMerge:!0}),o=0;o<n.length;o++){var s=n[o];if(s.p!==a){var l=i.put(s.p,s.b+s.s);l&&(s.b=l)}}}}(o),i.norm?(v(o),y(r,o,i)):m(r,o)}(t,e,r,_,u),b.length&&f(e,r,b,u);break;case\"stack\":case\"relative\":for(b=[],_=[],w=0;w<o.length;w++)void 0===(T=o[w])[0].trace.base?_.push(T):b.push(T);_.length&&function(t,e,r,n,i){var o=new c(n,{sepNegVal:\"relative\"===i.mode,overlapNoMerge:!(i.norm||\"stack\"===i.mode||\"relative\"===i.mode)});h(e,o,i),function(t,e,r){var n,i,o,l,c,u,f=x(t),h=e.traces;for(l=0;l<h.length;l++)if(n=h[l],\"funnel\"===(i=n[0].trace).type)for(c=0;c<n.length;c++)(u=n[c]).s!==a&&e.put(u.p,-.5*u.s);for(l=0;l<h.length;l++){n=h[l],i=n[0].trace,o=\"funnel\"===i.type;var p=[];for(c=0;c<n.length;c++)if((u=n[c]).s!==a){var d;d=o?u.s:u.s+u.b;var g=e.put(u.p,d),m=g+d;u.b=g,u[f]=m,r.norm||(p.push(m),u.hasB&&p.push(g))}r.norm||(i._extremes[t._id]=s.findExtremes(t,p,{tozero:!0,padded:!0}))}}(r,o,i);for(var l=0;l<n.length;l++)for(var u=n[l],f=0;f<u.length;f++){var p=u[f];if(p.s!==a)p.b+p.s===o.get(p.p,p.s)&&(p._outmost=!0)}i.norm&&y(r,o,i)}(0,e,r,_,u),b.length&&f(e,r,b,u)}!function(t,e){var r,i,a,o=x(e),s={},l=1/0,c=-1/0;for(r=0;r<t.length;r++)for(a=t[r],i=0;i<a.length;i++){var u=a[i].p;n(u)&&(l=Math.min(l,u),c=Math.max(c,u))}var f=1e4/(c-l),h=s.round=function(t){return String(Math.round(f*(t-l)))};for(r=0;r<t.length;r++){(a=t[r])[0].t.extents=s;var p=a[0].t.poffset,d=Array.isArray(p);for(i=0;i<a.length;i++){var g=a[i],m=g[o]-g.w/2;if(n(m)){var v=g[o]+g.w/2,y=h(g.p);s[y]?s[y]=[Math.min(m,s[y][0]),Math.max(v,s[y][1])]:s[y]=[m,v]}g.p0=g.p+(d?p[i]:p),g.p1=g.p0+g.w,g.s0=g.b,g.s1=g.s0+g.s}}}(o,e)}}function f(t,e,r,n){for(var i=0;i<r.length;i++){var a=r[i],o=new c([a],{unitMinDiff:n.xCat||n.yCat,sepNegVal:!1,overlapNoMerge:!n.norm});h(t,o,n),n.norm?(v(o),y(e,o,n)):m(e,o)}}function h(t,e,r){for(var n=e.minDiff,i=e.traces,a=n*(1-r.gap),o=a*(1-(r.groupgap||0)),s=-o/2,l=0;l<i.length;l++){var c=i[l][0].t;c.barwidth=o,c.poffset=s,c.bargroupwidth=a,c.bardelta=n}e.binWidth=i[0][0].t.barwidth/100,p(e),d(t,e),g(t,e)}function p(t){var e,r,a=t.traces;for(e=0;e<a.length;e++){var o,s=a[e],l=s[0],c=l.trace,u=l.t,f=c._offset||c.offset,h=u.poffset;if(i(f)){for(o=Array.prototype.slice.call(f,0,s.length),r=0;r<o.length;r++)n(o[r])||(o[r]=h);for(r=o.length;r<s.length;r++)o.push(h);u.poffset=o}else void 0!==f&&(u.poffset=f);var p=c._width||c.width,d=u.barwidth;if(i(p)){var g=Array.prototype.slice.call(p,0,s.length);for(r=0;r<g.length;r++)n(g[r])||(g[r]=d);for(r=g.length;r<s.length;r++)g.push(d);if(u.barwidth=g,void 0===f){for(o=[],r=0;r<s.length;r++)o.push(h+(d-g[r])/2);u.poffset=o}}else void 0!==p&&(u.barwidth=p,void 0===f&&(u.poffset=h+(d-p)/2))}}function d(t,e){for(var r=e.traces,n=x(t),i=0;i<r.length;i++)for(var a=r[i],o=a[0].t,s=o.poffset,l=Array.isArray(s),c=o.barwidth,u=Array.isArray(c),f=0;f<a.length;f++){var h=a[f],p=h.w=u?c[f]:c;h[n]=h.p+(l?s[f]:s)+p/2}}function g(t,e,r){var n=e.traces,i=e.minDiff/2;s.minDtick(t,e.minDiff,e.distinctPositions[0],r);for(var a=0;a<n.length;a++){var o,l,c,u,f=n[a],h=f[0],p=h.trace,d=[];for(u=0;u<f.length;u++)l=(o=f[u]).p-i,c=o.p+i,d.push(l,c);if(p.width||p.offset){var g=h.t,m=g.poffset,v=g.barwidth,y=Array.isArray(m),x=Array.isArray(v);for(u=0;u<f.length;u++){o=f[u];var b=y?m[u]:m,_=x?v[u]:v;c=(l=o.p+b)+_,d.push(l,c)}}p._extremes[t._id]=s.findExtremes(t,d,{padded:!1})}}function m(t,e){for(var r=e.traces,n=x(t),i=0;i<r.length;i++){for(var a=r[i],o=a[0].trace,l=[],c=!1,u=0;u<a.length;u++){var f=a[u],h=f.b,p=h+f.s;f[n]=p,l.push(p),f.hasB&&l.push(h),f.hasB&&f.b||(c=!0)}o._extremes[t._id]=s.findExtremes(t,l,{tozero:c,padded:!0})}}function v(t){for(var e=t.traces,r=0;r<e.length;r++)for(var n=e[r],i=0;i<n.length;i++){var o=n[i];o.s!==a&&t.put(o.p,o.b+o.s)}}function y(t,e,r){var i=e.traces,o=x(t),l=\"fraction\"===r.norm?1:100,c=l/1e9,u=t.l2c(t.c2l(0)),f=\"stack\"===r.mode?l:u;function h(e){return n(t.c2l(e))&&(e<u-c||e>f+c||!n(u))}for(var p=0;p<i.length;p++){for(var d=i[p],g=d[0].trace,m=[],v=!1,y=!1,b=0;b<d.length;b++){var _=d[b];if(_.s!==a){var w=Math.abs(l/e.get(_.p,_.s));_.b*=w,_.s*=w;var T=_.b,k=T+_.s;_[o]=k,m.push(k),y=y||h(k),_.hasB&&(m.push(T),y=y||h(T)),_.hasB&&_.b||(v=!0)}}g._extremes[t._id]=s.findExtremes(t,m,{tozero:v,padded:y})}}function x(t){return t._id.charAt(0)}e.exports={crossTraceCalc:function(t,e){for(var r=e.xaxis,n=e.yaxis,i=t._fullLayout,a=t._fullData,s=t.calcdata,l=[],c=[],f=0;f<a.length;f++){var h=a[f];if(!0===h.visible&&o.traceIs(h,\"bar\")&&h.xaxis===r._id&&h.yaxis===n._id&&(\"h\"===h.orientation?l.push(s[f]):c.push(s[f]),h._computePh))for(var p=t.calcdata[f],d=0;d<p.length;d++)\"function\"==typeof p[d].ph0&&(p[d].ph0=p[d].ph0()),\"function\"==typeof p[d].ph1&&(p[d].ph1=p[d].ph1())}var g={xCat:\"category\"===r.type||\"multicategory\"===r.type,yCat:\"category\"===n.type||\"multicategory\"===n.type,mode:i.barmode,norm:i.barnorm,gap:i.bargap,groupgap:i.bargroupgap};u(t,r,n,c,g),u(t,n,r,l,g)},setGroupPositions:u}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"../../plots/cartesian/constraints\":835,\"../../registry\":911,\"./sieve.js\":934,\"fast-isnumeric\":241}],925:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/color\"),a=t(\"../../registry\"),o=t(\"../scatter/xy_defaults\"),s=t(\"../scatter/period_defaults\"),l=t(\"./style_defaults\"),c=t(\"../../plots/cartesian/constraints\").getAxisGroup,u=t(\"./attributes\"),f=n.coerceFont;function h(t,e,r,n){var i=e.orientation,a=e[{v:\"x\",h:\"y\"}[i]+\"axis\"],o=c(r,a)+i,s=r._alignmentOpts||{},l=n(\"alignmentgroup\"),u=s[o];u||(u=s[o]={});var f=u[l];f?f.traces.push(e):f=u[l]={traces:[e],alignmentIndex:Object.keys(u).length,offsetGroups:{}};var h=n(\"offsetgroup\"),p=f.offsetGroups,d=p[h];h&&(d||(d=p[h]={offsetIndex:Object.keys(p).length}),e._offsetIndex=d.offsetIndex)}function p(t,e,r,i,a,o){var s=!(!1===(o=o||{}).moduleHasSelected),l=!(!1===o.moduleHasUnselected),c=!(!1===o.moduleHasConstrain),u=!(!1===o.moduleHasCliponaxis),h=!(!1===o.moduleHasTextangle),p=!(!1===o.moduleHasInsideanchor),d=!!o.hasPathbar,g=Array.isArray(a)||\"auto\"===a,m=g||\"inside\"===a,v=g||\"outside\"===a;if(m||v){var y=f(i,\"textfont\",r.font),x=n.extendFlat({},y),b=!(t.textfont&&t.textfont.color);if(b&&delete x.color,f(i,\"insidetextfont\",x),d){var _=n.extendFlat({},y);b&&delete _.color,f(i,\"pathbar.textfont\",_)}v&&f(i,\"outsidetextfont\",y),s&&i(\"selected.textfont.color\"),l&&i(\"unselected.textfont.color\"),c&&i(\"constraintext\"),u&&i(\"cliponaxis\"),h&&i(\"textangle\"),i(\"texttemplate\")}m&&p&&i(\"insidetextanchor\")}e.exports={supplyDefaults:function(t,e,r,c){function f(r,i){return n.coerce(t,e,u,r,i)}if(o(t,e,c,f)){s(t,e,c,f),f(\"orientation\",e.x&&!e.y?\"h\":\"v\"),f(\"base\"),f(\"offset\"),f(\"width\"),f(\"text\"),f(\"hovertext\"),f(\"hovertemplate\");var h=f(\"textposition\");p(t,e,c,f,h,{moduleHasSelected:!0,moduleHasUnselected:!0,moduleHasConstrain:!0,moduleHasCliponaxis:!0,moduleHasTextangle:!0,moduleHasInsideanchor:!0}),l(t,e,f,r,c);var d=(e.marker.line||{}).color,g=a.getComponentMethod(\"errorbars\",\"supplyDefaults\");g(t,e,d||i.defaultLine,{axis:\"y\"}),g(t,e,d||i.defaultLine,{axis:\"x\",inherit:\"y\"}),n.coerceSelectionMarkerOpacity(e,f)}else e.visible=!1},crossTraceDefaults:function(t,e){var r;function i(t){return n.coerce(r._input,r,u,t)}if(\"group\"===e.barmode)for(var a=0;a<t.length;a++)\"bar\"===(r=t[a]).type&&(r._input,h(0,r,e,i))},handleGroupingDefaults:h,handleText:p}},{\"../../components/color\":643,\"../../lib\":778,\"../../plots/cartesian/constraints\":835,\"../../registry\":911,\"../scatter/period_defaults\":1207,\"../scatter/xy_defaults\":1214,\"./attributes\":921,\"./style_defaults\":936}],926:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){return t.x=\"xVal\"in e?e.xVal:e.x,t.y=\"yVal\"in e?e.yVal:e.y,e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),\"h\"===r.orientation?(t.label=t.y,t.value=t.x):(t.label=t.x,t.value=t.y),t}},{}],927:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"tinycolor2\"),a=t(\"../../lib\").isArrayOrTypedArray;r.coerceString=function(t,e,r){if(\"string\"==typeof e){if(e||!t.noBlank)return e}else if((\"number\"==typeof e||!0===e)&&!t.strict)return String(e);return void 0!==r?r:t.dflt},r.coerceNumber=function(t,e,r){if(n(e)){e=+e;var i=t.min,a=t.max;if(!(void 0!==i&&e<i||void 0!==a&&e>a))return e}return void 0!==r?r:t.dflt},r.coerceColor=function(t,e,r){return i(e).isValid()?e:void 0!==r?r:t.dflt},r.coerceEnumerated=function(t,e,r){return t.coerceNumber&&(e=+e),-1!==t.values.indexOf(e)?e:void 0!==r?r:t.dflt},r.getValue=function(t,e){var r;return Array.isArray(t)?e<t.length&&(r=t[e]):r=t,r},r.getLineWidth=function(t,e){return 0<e.mlw?e.mlw:a(t.marker.line.width)?0:t.marker.line.width}},{\"../../lib\":778,\"fast-isnumeric\":241,tinycolor2:576}],928:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),i=t(\"../../registry\"),a=t(\"../../components/color\"),o=t(\"../../lib\").fillText,s=t(\"./helpers\").getLineWidth,l=t(\"../../plots/cartesian/axes\").hoverLabelText,c=t(\"../../constants/numerical\").BADNUM;function u(t,e,r,i){var a,s,u,f,h,p,d,g=t.cd,m=g[0].trace,v=g[0].t,y=\"closest\"===i,x=\"waterfall\"===m.type,b=t.maxHoverDistance;function _(t){return t[u]-t.w/2}function w(t){return t[u]+t.w/2}var T=y?_:function(t){return Math.min(_(t),t.p-v.bardelta/2)},k=y?w:function(t){return Math.max(w(t),t.p+v.bardelta/2)};function M(t,e){return n.inbox(t-a,e-a,b+Math.min(1,Math.abs(e-t)/d)-1)}function A(t){return M(T(t),k(t))}function S(t){var e=s,r=t.b,i=t[f];if(x){var a=Math.abs(t.rawS)||0;e>0?i+=a:e<0&&(i-=a)}return n.inbox(r-e,i-e,b+(i-e)/(i-r)-1)}\"h\"===m.orientation?(a=r,s=e,u=\"y\",f=\"x\",h=S,p=A):(a=e,s=r,u=\"x\",f=\"y\",p=S,h=A);var E=t[u+\"a\"],C=t[f+\"a\"];d=Math.abs(E.r2c(E.range[1])-E.r2c(E.range[0]));var L=n.getDistanceFunction(i,h,p,(function(t){return(h(t)+p(t))/2}));if(n.getClosest(g,L,t),!1!==t.index&&g[t.index].p!==c){y||(T=function(t){return Math.min(_(t),t.p-v.bargroupwidth/2)},k=function(t){return Math.max(w(t),t.p+v.bargroupwidth/2)});var I=g[t.index],P=m.base?I.b+I.s:I.s;t[f+\"0\"]=t[f+\"1\"]=C.c2p(I[f],!0),t[f+\"LabelVal\"]=P;var z=v.extents[v.extents.round(I.p)];t[u+\"0\"]=E.c2p(y?T(I):z[0],!0),t[u+\"1\"]=E.c2p(y?k(I):z[1],!0);var O=void 0!==I.orig_p;return t[u+\"LabelVal\"]=O?I.orig_p:I.p,t.labelLabel=l(E,t[u+\"LabelVal\"]),t.valueLabel=l(C,t[f+\"LabelVal\"]),t.baseLabel=l(C,I.b),t.spikeDistance=(S(I)+function(t){return M(_(t),w(t))}(I))/2-b,t[u+\"Spike\"]=E.c2p(I.p,!0),o(I,m,t),t.hovertemplate=m.hovertemplate,t}}function f(t,e){var r=e.mcc||t.marker.color,n=e.mlcc||t.marker.line.color,i=s(t,e);return a.opacity(r)?r:a.opacity(n)&&i?n:void 0}e.exports={hoverPoints:function(t,e,r,n){var a=u(t,e,r,n);if(a){var o=a.cd,s=o[0].trace,l=o[a.index];return a.color=f(s,l),i.getComponentMethod(\"errorbars\",\"hoverInfo\")(l,s,a),[a]}},hoverOnBars:u,getTraceColor:f}},{\"../../components/color\":643,\"../../components/fx\":683,\"../../constants/numerical\":753,\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"../../registry\":911,\"./helpers\":927}],929:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\").crossTraceCalc,colorbar:t(\"../scatter/marker_colorbar\"),arraysToCalcdata:t(\"./arrays_to_calcdata\"),plot:t(\"./plot\").plot,style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"bar\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"bar\",\"oriented\",\"errorBarsOK\",\"showLegend\",\"zoomScale\"],animatable:!0,meta:{}}},{\"../../plots/cartesian\":841,\"../scatter/marker_colorbar\":1205,\"./arrays_to_calcdata\":920,\"./attributes\":921,\"./calc\":922,\"./cross_trace_calc\":924,\"./defaults\":925,\"./event_data\":926,\"./hover\":928,\"./layout_attributes\":930,\"./layout_defaults\":931,\"./plot\":932,\"./select\":933,\"./style\":935}],930:[function(t,e,r){\"use strict\";e.exports={barmode:{valType:\"enumerated\",values:[\"stack\",\"group\",\"overlay\",\"relative\"],dflt:\"group\",editType:\"calc\"},barnorm:{valType:\"enumerated\",values:[\"\",\"fraction\",\"percent\"],dflt:\"\",editType:\"calc\"},bargap:{valType:\"number\",min:0,max:1,editType:\"calc\"},bargroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],931:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib\"),o=t(\"./layout_attributes\");e.exports=function(t,e,r){function s(r,n){return a.coerce(t,e,o,r,n)}for(var l=!1,c=!1,u=!1,f={},h=s(\"barmode\"),p=0;p<r.length;p++){var d=r[p];if(n.traceIs(d,\"bar\")&&d.visible){if(l=!0,\"group\"===h){var g=d.xaxis+d.yaxis;f[g]&&(u=!0),f[g]=!0}if(d.visible&&\"histogram\"===d.type)\"category\"!==i.getFromId({_fullLayout:e},d[\"v\"===d.orientation?\"xaxis\":\"yaxis\"]).type&&(c=!0)}}l?(\"overlay\"!==h&&s(\"barnorm\"),s(\"bargap\",c&&!u?0:.2),s(\"bargroupgap\")):delete e.barmode}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"../../registry\":911,\"./layout_attributes\":930}],932:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"fast-isnumeric\"),a=t(\"../../lib\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"../../components/color\"),l=t(\"../../components/drawing\"),c=t(\"../../registry\"),u=t(\"../../plots/cartesian/axes\").tickText,f=t(\"./uniform_text\"),h=f.recordMinTextSize,p=f.clearMinTextSize,d=t(\"./style\"),g=t(\"./helpers\"),m=t(\"./constants\"),v=t(\"./attributes\"),y=v.text,x=v.textposition,b=t(\"../../components/fx/helpers\").appendArrayPointValue,_=m.TEXTPAD;function w(t){return t.id}function T(t){if(t.ids)return w}function k(t,e){return t<e?1:-1}function M(t,e,r,n){var i;return!e.uniformtext.mode&&A(r)?(n&&(i=n()),t.transition().duration(r.duration).ease(r.easing).each(\"end\",(function(){i&&i()})).each(\"interrupt\",(function(){i&&i()}))):t}function A(t){return t&&t.duration>0}function S(t){return\"auto\"===t?0:t}function E(t,e){var r=Math.PI/180*e,n=Math.abs(Math.sin(r)),i=Math.abs(Math.cos(r));return{x:t.width*i+t.height*n,y:t.width*n+t.height*i}}function C(t,e,r,n,i,a){var o=!!a.isHorizontal,s=!!a.constrained,l=a.angle||0,c=a.anchor||\"end\",u=\"end\"===c,f=\"start\"===c,h=((a.leftToRight||0)+1)/2,p=1-h,d=i.width,g=i.height,m=Math.abs(e-t),v=Math.abs(n-r),y=m>2*_&&v>2*_?_:0;m-=2*y,v-=2*y;var x=S(l);\"auto\"!==l||d<=m&&g<=v||!(d>m||g>v)||(d>v||g>m)&&d<g==m<v||(x+=90);var b=E(i,x),w=1;s&&(w=Math.min(1,m/b.x,v/b.y));var T=i.left*p+i.right*h,M=(i.top+i.bottom)/2,A=(t+_)*p+(e-_)*h,C=(r+n)/2,L=0,I=0;if(f||u){var P=(o?b.x:b.y)/2,z=o?k(t,e):k(r,n);o?f?(A=t+z*y,L=-z*P):(A=e-z*y,L=z*P):f?(C=r+z*y,I=-z*P):(C=n-z*y,I=z*P)}return{textX:T,textY:M,targetX:A,targetY:C,anchorX:L,anchorY:I,scale:w,rotate:x}}e.exports={plot:function(t,e,r,f,m,v){var w=e.xaxis,L=e.yaxis,I=t._fullLayout;m||(m={mode:I.barmode,norm:I.barmode,gap:I.bargap,groupgap:I.bargroupgap},p(\"bar\",I));var P=a.makeTraceGroups(f,r,\"trace bars\").each((function(r){var c=n.select(this),f=r[0].trace,p=\"waterfall\"===f.type,P=\"funnel\"===f.type,z=\"bar\"===f.type||P,O=0;p&&f.connector.visible&&\"between\"===f.connector.mode&&(O=f.connector.line.width/2);var D=\"h\"===f.orientation,R=A(m),F=a.ensureSingle(c,\"g\",\"points\"),B=T(f),N=F.selectAll(\"g.point\").data(a.identity,B);N.enter().append(\"g\").classed(\"point\",!0),N.exit().remove(),N.each((function(c,p){var T,A,P=n.select(this),F=function(t,e,r,n){var i=[],a=[],o=n?e:r,s=n?r:e;return i[0]=o.c2p(t.s0,!0),a[0]=s.c2p(t.p0,!0),i[1]=o.c2p(t.s1,!0),a[1]=s.c2p(t.p1,!0),n?[i,a]:[a,i]}(c,w,L,D),B=F[0][0],N=F[0][1],j=F[1][0],U=F[1][1],V=0==(D?N-B:U-j);if(V&&z&&g.getLineWidth(f,c)&&(V=!1),V||(V=!(i(B)&&i(N)&&i(j)&&i(U))),c.isBlank=V,V&&(D?N=B:U=j),O&&!V&&(D?(B-=k(B,N)*O,N+=k(B,N)*O):(j-=k(j,U)*O,U+=k(j,U)*O)),\"waterfall\"===f.type){if(!V){var q=f[c.dir].marker;T=q.line.width,A=q.color}}else T=g.getLineWidth(f,c),A=c.mc||f.marker.color;function H(t){var e=n.round(T/2%1,2);return 0===m.gap&&0===m.groupgap?n.round(Math.round(t)-e,2):t}if(!t._context.staticPlot){var G=s.opacity(A)<1||T>.01?H:function(t,e,r){return r&&t===e?t:Math.abs(t-e)>=2?H(t):t>e?Math.ceil(t):Math.floor(t)};B=G(B,N,D),N=G(N,B,D),j=G(j,U,!D),U=G(U,j,!D)}var Y=M(a.ensureSingle(P,\"path\"),I,m,v);if(Y.style(\"vector-effect\",\"non-scaling-stroke\").attr(\"d\",isNaN((N-B)*(U-j))||V&&t._context.staticPlot?\"M0,0Z\":\"M\"+B+\",\"+j+\"V\"+U+\"H\"+N+\"V\"+j+\"Z\").call(l.setClipUrl,e.layerClipId,t),!I.uniformtext.mode&&R){var W=l.makePointStyleFns(f);l.singlePointStyle(c,Y,f,W,t)}!function(t,e,r,n,i,s,c,f,p,m,v){var w,T=e.xaxis,A=e.yaxis,L=t._fullLayout;function I(e,r,n){return a.ensureSingle(e,\"text\").text(r).attr({class:\"bartext bartext-\"+w,\"text-anchor\":\"middle\",\"data-notex\":1}).call(l.font,n).call(o.convertToTspans,t)}var P=n[0].trace,z=\"h\"===P.orientation,O=function(t,e,r,n,i){var o,s=e[0].trace;o=s.texttemplate?function(t,e,r,n,i){var o=e[0].trace,s=a.castOption(o,r,\"texttemplate\");if(!s)return\"\";var l,c,f,h,p=\"waterfall\"===o.type,d=\"funnel\"===o.type;\"h\"===o.orientation?(l=\"y\",c=i,f=\"x\",h=n):(l=\"x\",c=n,f=\"y\",h=i);function g(t){return u(h,+t,!0).text}var m=e[r],v={};v.label=m.p,v.labelLabel=v[l+\"Label\"]=(y=m.p,u(c,y,!0).text);var y;var x=a.castOption(o,m.i,\"text\");(0===x||x)&&(v.text=x);v.value=m.s,v.valueLabel=v[f+\"Label\"]=g(m.s);var _={};b(_,o,m.i),p&&(v.delta=+m.rawS||m.s,v.deltaLabel=g(v.delta),v.final=m.v,v.finalLabel=g(v.final),v.initial=v.final-v.delta,v.initialLabel=g(v.initial));d&&(v.value=m.s,v.valueLabel=g(v.value),v.percentInitial=m.begR,v.percentInitialLabel=a.formatPercent(m.begR),v.percentPrevious=m.difR,v.percentPreviousLabel=a.formatPercent(m.difR),v.percentTotal=m.sumR,v.percenTotalLabel=a.formatPercent(m.sumR));var w=a.castOption(o,m.i,\"customdata\");w&&(v.customdata=w);return a.texttemplateString(s,v,t._d3locale,_,v,o._meta||{})}(t,e,r,n,i):s.textinfo?function(t,e,r,n){var i=t[0].trace,o=\"h\"===i.orientation,s=\"waterfall\"===i.type,l=\"funnel\"===i.type;function c(t){return u(o?r:n,+t,!0).text}var f,h=i.textinfo,p=t[e],d=h.split(\"+\"),g=[],m=function(t){return-1!==d.indexOf(t)};m(\"label\")&&g.push((v=t[e].p,u(o?n:r,v,!0).text));var v;m(\"text\")&&(0===(f=a.castOption(i,p.i,\"text\"))||f)&&g.push(f);if(s){var y=+p.rawS||p.s,x=p.v,b=x-y;m(\"initial\")&&g.push(c(b)),m(\"delta\")&&g.push(c(y)),m(\"final\")&&g.push(c(x))}if(l){m(\"value\")&&g.push(c(p.s));var _=0;m(\"percent initial\")&&_++,m(\"percent previous\")&&_++,m(\"percent total\")&&_++;var w=_>1;m(\"percent initial\")&&(f=a.formatPercent(p.begR),w&&(f+=\" of initial\"),g.push(f)),m(\"percent previous\")&&(f=a.formatPercent(p.difR),w&&(f+=\" of previous\"),g.push(f)),m(\"percent total\")&&(f=a.formatPercent(p.sumR),w&&(f+=\" of total\"),g.push(f))}return g.join(\"<br>\")}(e,r,n,i):g.getValue(s.text,r);return g.coerceString(y,o)}(L,n,i,T,A);w=function(t,e){var r=g.getValue(t.textposition,e);return g.coerceEnumerated(x,r)}(P,i);var D=\"stack\"===m.mode||\"relative\"===m.mode,R=n[i],F=!D||R._outmost;if(!O||\"none\"===w||(R.isBlank||s===c||f===p)&&(\"auto\"===w||\"inside\"===w))return void r.select(\"text\").remove();var B=L.font,N=d.getBarColor(n[i],P),j=d.getInsideTextFont(P,i,B,N),U=d.getOutsideTextFont(P,i,B),V=r.datum();z?\"log\"===T.type&&V.s0<=0&&(s=T.range[0]<T.range[1]?0:T._length):\"log\"===A.type&&V.s0<=0&&(f=A.range[0]<A.range[1]?A._length:0);var q,H,G,Y,W,X=Math.abs(c-s)-2*_,Z=Math.abs(p-f)-2*_;\"outside\"===w&&(F||R.hasB||(w=\"inside\"));if(\"auto\"===w)if(F){w=\"inside\",W=a.ensureUniformFontSize(t,j),q=I(r,O,W),H=l.bBox(q.node()),G=H.width,Y=H.height;var J=G<=X&&Y<=Z,K=G<=Z&&Y<=X,Q=z?X>=G*(Z/Y):Z>=Y*(X/G);G>0&&Y>0&&(J||K||Q)?w=\"inside\":(w=\"outside\",q.remove(),q=null)}else w=\"inside\";if(!q){W=a.ensureUniformFontSize(t,\"outside\"===w?U:j);var $=(q=I(r,O,W)).attr(\"transform\");if(q.attr(\"transform\",\"\"),H=l.bBox(q.node()),G=H.width,Y=H.height,q.attr(\"transform\",$),G<=0||Y<=0)return void q.remove()}var tt,et,rt=P.textangle;\"outside\"===w?(et=\"both\"===P.constraintext||\"outside\"===P.constraintext,tt=function(t,e,r,n,i,a){var o,s=!!a.isHorizontal,l=!!a.constrained,c=a.angle||0,u=i.width,f=i.height,h=Math.abs(e-t),p=Math.abs(n-r);o=s?p>2*_?_:0:h>2*_?_:0;var d=1;l&&(d=s?Math.min(1,p/f):Math.min(1,h/u));var g=S(c),m=E(i,g),v=(s?m.x:m.y)/2,y=(i.left+i.right)/2,x=(i.top+i.bottom)/2,b=(t+e)/2,w=(r+n)/2,T=0,M=0,A=s?k(e,t):k(r,n);s?(b=e-A*o,T=A*v):(w=n+A*o,M=-A*v);return{textX:y,textY:x,targetX:b,targetY:w,anchorX:T,anchorY:M,scale:d,rotate:g}}(s,c,f,p,H,{isHorizontal:z,constrained:et,angle:rt})):(et=\"both\"===P.constraintext||\"inside\"===P.constraintext,tt=C(s,c,f,p,H,{isHorizontal:z,constrained:et,angle:rt,anchor:P.insidetextanchor}));tt.fontSize=W.size,h(P.type,tt,L),R.transform=tt,M(q,L,m,v).attr(\"transform\",a.getTextTransform(tt))}(t,e,P,r,p,B,N,j,U,m,v),e.layerClipId&&l.hideOutsideRangePoint(c,P.select(\"text\"),w,L,f.xcalendar,f.ycalendar)}));var j=!1===f.cliponaxis;l.setClipUrl(c,j?null:e.layerClipId,t)}));c.getComponentMethod(\"errorbars\",\"plot\")(t,P,e,m)},toMoveInsideBar:C}},{\"../../components/color\":643,\"../../components/drawing\":665,\"../../components/fx/helpers\":679,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../plots/cartesian/axes\":828,\"../../registry\":911,\"./attributes\":921,\"./constants\":923,\"./helpers\":927,\"./style\":935,\"./uniform_text\":937,d3:169,\"fast-isnumeric\":241}],933:[function(t,e,r){\"use strict\";function n(t,e,r,n,i){var a=e.c2p(n?t.s0:t.p0,!0),o=e.c2p(n?t.s1:t.p1,!0),s=r.c2p(n?t.p0:t.s0,!0),l=r.c2p(n?t.p1:t.s1,!0);return i?[(a+o)/2,(s+l)/2]:n?[o,(s+l)/2]:[(a+o)/2,l]}e.exports=function(t,e){var r,i=t.cd,a=t.xaxis,o=t.yaxis,s=i[0].trace,l=\"funnel\"===s.type,c=\"h\"===s.orientation,u=[];if(!1===e)for(r=0;r<i.length;r++)i[r].selected=0;else for(r=0;r<i.length;r++){var f=i[r],h=\"ct\"in f?f.ct:n(f,a,o,c,l);e.contains(h,!1,r,t)?(u.push({pointNumber:r,x:a.c2d(f.x),y:o.c2d(f.y)}),f.selected=1):f.selected=0}return u}},{}],934:[function(t,e,r){\"use strict\";e.exports=a;var n=t(\"../../lib\").distinctVals,i=t(\"../../constants/numerical\").BADNUM;function a(t,e){this.traces=t,this.sepNegVal=e.sepNegVal,this.overlapNoMerge=e.overlapNoMerge;for(var r=1/0,a=[],o=0;o<t.length;o++){for(var s=t[o],l=0;l<s.length;l++){var c=s[l];c.p!==i&&a.push(c.p)}s[0]&&s[0].width1&&(r=Math.min(s[0].width1,r))}this.positions=a;var u=n(a,{unitMinDiff:e.unitMinDiff});this.distinctPositions=u.vals,1===u.vals.length&&r!==1/0?this.minDiff=r:this.minDiff=Math.min(u.minDiff,r),this.binWidth=this.minDiff,this.bins={}}a.prototype.put=function(t,e){var r=this.getLabel(t,e),n=this.bins[r]||0;return this.bins[r]=n+e,n},a.prototype.get=function(t,e){var r=this.getLabel(t,e);return this.bins[r]||0},a.prototype.getLabel=function(t,e){return(e<0&&this.sepNegVal?\"v\":\"^\")+(this.overlapNoMerge?t:Math.round(t/this.binWidth))}},{\"../../constants/numerical\":753,\"../../lib\":778}],935:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/color\"),a=t(\"../../components/drawing\"),o=t(\"../../lib\"),s=t(\"../../registry\"),l=t(\"./uniform_text\").resizeText,c=t(\"./attributes\"),u=c.textfont,f=c.insidetextfont,h=c.outsidetextfont,p=t(\"./helpers\");function d(t,e,r){a.pointStyle(t.selectAll(\"path\"),e,r),g(t,e,r)}function g(t,e,r){t.selectAll(\"text\").each((function(t){var i=n.select(this),s=o.ensureUniformFontSize(r,m(i,t,e,r));a.font(i,s)}))}function m(t,e,r,n){var i=n._fullLayout.font,a=r.textfont;if(t.classed(\"bartext-inside\")){var o=_(e,r);a=y(r,e.i,i,o)}else t.classed(\"bartext-outside\")&&(a=x(r,e.i,i));return a}function v(t,e,r){return b(u,t.textfont,e,r)}function y(t,e,r,n){var a=v(t,e,r);return(void 0===t._input.textfont||void 0===t._input.textfont.color||Array.isArray(t.textfont.color)&&void 0===t.textfont.color[e])&&(a={color:i.contrast(n),family:a.family,size:a.size}),b(f,t.insidetextfont,e,a)}function x(t,e,r){var n=v(t,e,r);return b(h,t.outsidetextfont,e,n)}function b(t,e,r,n){e=e||{};var i=p.getValue(e.family,r),a=p.getValue(e.size,r),o=p.getValue(e.color,r);return{family:p.coerceString(t.family,i,n.family),size:p.coerceNumber(t.size,a,n.size),color:p.coerceColor(t.color,o,n.color)}}function _(t,e){return\"waterfall\"===e.type?e[t.dir].marker.color:t.mc||e.marker.color}e.exports={style:function(t){var e=n.select(t).selectAll(\"g.barlayer\").selectAll(\"g.trace\");l(t,e,\"bar\");var r=e.size(),i=t._fullLayout;e.style(\"opacity\",(function(t){return t[0].trace.opacity})).each((function(t){(\"stack\"===i.barmode&&r>1||0===i.bargap&&0===i.bargroupgap&&!t[0].trace.marker.line.width)&&n.select(this).attr(\"shape-rendering\",\"crispEdges\")})),e.selectAll(\"g.points\").each((function(e){d(n.select(this),e[0].trace,t)})),s.getComponentMethod(\"errorbars\",\"style\")(e)},styleTextPoints:g,styleOnSelect:function(t,e,r){var i=e[0].trace;i.selectedpoints?function(t,e,r){a.selectedPointStyle(t.selectAll(\"path\"),e),function(t,e,r){t.each((function(t){var i,s=n.select(this);if(t.selected){i=o.ensureUniformFontSize(r,m(s,t,e,r));var l=e.selected.textfont&&e.selected.textfont.color;l&&(i.color=l),a.font(s,i)}else a.selectedTextStyle(s,e)}))}(t.selectAll(\"text\"),e,r)}(r,i,t):(d(r,i,t),s.getComponentMethod(\"errorbars\",\"style\")(r))},getInsideTextFont:y,getOutsideTextFont:x,getBarColor:_,resizeText:l}},{\"../../components/color\":643,\"../../components/drawing\":665,\"../../lib\":778,\"../../registry\":911,\"./attributes\":921,\"./helpers\":927,\"./uniform_text\":937,d3:169}],936:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/defaults\");e.exports=function(t,e,r,o,s){r(\"marker.color\",o),i(t,\"marker\")&&a(t,e,s,r,{prefix:\"marker.\",cLetter:\"c\"}),r(\"marker.line.color\",n.defaultLine),i(t,\"marker.line\")&&a(t,e,s,r,{prefix:\"marker.line.\",cLetter:\"c\"}),r(\"marker.line.width\"),r(\"marker.opacity\"),r(\"selected.marker.color\"),r(\"unselected.marker.color\")}},{\"../../components/color\":643,\"../../components/colorscale/defaults\":653,\"../../components/colorscale/helpers\":654}],937:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\");function a(t){return\"_\"+t+\"Text_minsize\"}e.exports={recordMinTextSize:function(t,e,r){if(r.uniformtext.mode){var n=a(t),i=r.uniformtext.minsize,o=e.scale*e.fontSize;e.hide=o<i,r[n]=r[n]||1/0,e.hide||(r[n]=Math.min(r[n],Math.max(o,i)))}},clearMinTextSize:function(t,e){e[a(t)]=void 0},resizeText:function(t,e,r){var a=t._fullLayout,o=a[\"_\"+r+\"Text_minsize\"];if(o){var s,l=\"hide\"===a.uniformtext.mode;switch(r){case\"funnelarea\":case\"pie\":case\"sunburst\":s=\"g.slice\";break;case\"treemap\":s=\"g.slice, g.pathbar\";break;default:s=\"g.points > g.point\"}e.selectAll(s).each((function(t){var e=t.transform;e&&(e.scale=l&&e.hide?0:o/e.fontSize,n.select(this).select(\"text\").attr(\"transform\",i.getTextTransform(e)))}))}}}},{\"../../lib\":778,d3:169}],938:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../lib/extend\").extendFlat,a=t(\"../scatterpolar/attributes\"),o=t(\"../bar/attributes\");e.exports={r:a.r,theta:a.theta,r0:a.r0,dr:a.dr,theta0:a.theta0,dtheta:a.dtheta,thetaunit:a.thetaunit,base:i({},o.base,{}),offset:i({},o.offset,{}),width:i({},o.width,{}),text:i({},o.text,{}),hovertext:i({},o.hovertext,{}),marker:o.marker,hoverinfo:a.hoverinfo,hovertemplate:n(),selected:o.selected,unselected:o.unselected}},{\"../../lib/extend\":768,\"../../plots/template_attributes\":906,\"../bar/attributes\":921,\"../scatterpolar/attributes\":1261}],939:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/calc\"),a=t(\"../bar/arrays_to_calcdata\"),o=t(\"../bar/cross_trace_calc\").setGroupPositions,s=t(\"../scatter/calc_selection\"),l=t(\"../../registry\").traceIs,c=t(\"../../lib\").extendFlat;e.exports={calc:function(t,e){for(var r=t._fullLayout,o=e.subplot,l=r[o].radialaxis,c=r[o].angularaxis,u=l.makeCalcdata(e,\"r\"),f=c.makeCalcdata(e,\"theta\"),h=e._length,p=new Array(h),d=u,g=f,m=0;m<h;m++)p[m]={p:g[m],s:d[m]};function v(t){var r=e[t];void 0!==r&&(e[\"_\"+t]=Array.isArray(r)?c.makeCalcdata(e,t):c.d2c(r,e.thetaunit))}return\"linear\"===c.type&&(v(\"width\"),v(\"offset\")),n(e,\"marker\")&&i(t,e,{vals:e.marker.color,containerStr:\"marker\",cLetter:\"c\"}),n(e,\"marker.line\")&&i(t,e,{vals:e.marker.line.color,containerStr:\"marker.line\",cLetter:\"c\"}),a(p,e),s(p,e),p},crossTraceCalc:function(t,e,r){for(var n=t.calcdata,i=[],a=0;a<n.length;a++){var s=n[a],u=s[0].trace;!0===u.visible&&l(u,\"bar\")&&u.subplot===r&&i.push(s)}var f=c({},e.radialaxis,{_id:\"x\"}),h=e.angularaxis;o(t,h,f,i,{mode:e.barmode,norm:e.barnorm,gap:e.bargap,groupgap:e.bargroupgap})}}},{\"../../components/colorscale/calc\":651,\"../../components/colorscale/helpers\":654,\"../../lib\":778,\"../../registry\":911,\"../bar/arrays_to_calcdata\":920,\"../bar/cross_trace_calc\":924,\"../scatter/calc_selection\":1189}],940:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../scatterpolar/defaults\").handleRThetaDefaults,a=t(\"../bar/style_defaults\"),o=t(\"./attributes\");e.exports=function(t,e,r,s){function l(r,i){return n.coerce(t,e,o,r,i)}i(t,e,s,l)?(l(\"thetaunit\"),l(\"base\"),l(\"offset\"),l(\"width\"),l(\"text\"),l(\"hovertext\"),l(\"hovertemplate\"),a(t,e,l,r,s),n.coerceSelectionMarkerOpacity(e,l)):e.visible=!1}},{\"../../lib\":778,\"../bar/style_defaults\":936,\"../scatterpolar/defaults\":1263,\"./attributes\":938}],941:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),i=t(\"../../lib\"),a=t(\"../bar/hover\").getTraceColor,o=i.fillText,s=t(\"../scatterpolar/hover\").makeHoverPointText,l=t(\"../../plots/polar/helpers\").isPtInsidePolygon;e.exports=function(t,e,r){var c=t.cd,u=c[0].trace,f=t.subplot,h=f.radialAxis,p=f.angularAxis,d=f.vangles,g=d?l:i.isPtInsideSector,m=t.maxHoverDistance,v=p._period||2*Math.PI,y=Math.abs(h.g2p(Math.sqrt(e*e+r*r))),x=Math.atan2(r,e);h.range[0]>h.range[1]&&(x+=Math.PI);if(n.getClosest(c,(function(t){return g(y,x,[t.rp0,t.rp1],[t.thetag0,t.thetag1],d)?m+Math.min(1,Math.abs(t.thetag1-t.thetag0)/v)-1+(t.rp1-y)/(t.rp1-t.rp0)-1:1/0}),t),!1!==t.index){var b=c[t.index];t.x0=t.x1=b.ct[0],t.y0=t.y1=b.ct[1];var _=i.extendFlat({},b,{r:b.s,theta:b.p});return o(b,u,t),s(_,u,f,t),t.hovertemplate=u.hovertemplate,t.color=a(u,b),t.xLabelVal=t.yLabelVal=void 0,b.s<0&&(t.idealAlign=\"left\"),[t]}}},{\"../../components/fx\":683,\"../../lib\":778,\"../../plots/polar/helpers\":893,\"../bar/hover\":928,\"../scatterpolar/hover\":1265}],942:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"barpolar\",basePlotModule:t(\"../../plots/polar\"),categories:[\"polar\",\"bar\",\"showLegend\"],attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"../scatterpolar/format_labels\"),style:t(\"../bar/style\").style,styleOnSelect:t(\"../bar/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../bar/select\"),meta:{}}},{\"../../plots/polar\":894,\"../bar/select\":933,\"../bar/style\":935,\"../scatter/marker_colorbar\":1205,\"../scatterpolar/format_labels\":1264,\"./attributes\":938,\"./calc\":939,\"./defaults\":940,\"./hover\":941,\"./layout_attributes\":943,\"./layout_defaults\":944,\"./plot\":945}],943:[function(t,e,r){\"use strict\";e.exports={barmode:{valType:\"enumerated\",values:[\"stack\",\"overlay\"],dflt:\"stack\",editType:\"calc\"},bargap:{valType:\"number\",dflt:.1,min:0,max:1,editType:\"calc\"}}},{}],944:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e,r){var a,o={};function s(r,o){return n.coerce(t[a]||{},e[a],i,r,o)}for(var l=0;l<r.length;l++){var c=r[l];\"barpolar\"===c.type&&!0===c.visible&&(o[a=c.subplot]||(s(\"barmode\"),s(\"bargap\"),o[a]=1))}}},{\"../../lib\":778,\"./layout_attributes\":943}],945:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"fast-isnumeric\"),a=t(\"../../lib\"),o=t(\"../../components/drawing\"),s=t(\"../../plots/polar/helpers\");e.exports=function(t,e,r){var l=e.xaxis,c=e.yaxis,u=e.radialAxis,f=e.angularAxis,h=function(t){var e=t.cxx,r=t.cyy;if(t.vangles)return function(n,i,o,l){var c,u;a.angleDelta(o,l)>0?(c=o,u=l):(c=l,u=o);var f=[s.findEnclosingVertexAngles(c,t.vangles)[0],(c+u)/2,s.findEnclosingVertexAngles(u,t.vangles)[1]];return s.pathPolygonAnnulus(n,i,c,u,f,e,r)};return function(t,n,i,o){return a.pathAnnulus(t,n,i,o,e,r)}}(e),p=e.layers.frontplot.select(\"g.barlayer\");a.makeTraceGroups(p,r,\"trace bars\").each((function(){var r=n.select(this),s=a.ensureSingle(r,\"g\",\"points\").selectAll(\"g.point\").data(a.identity);s.enter().append(\"g\").style(\"vector-effect\",\"non-scaling-stroke\").style(\"stroke-miterlimit\",2).classed(\"point\",!0),s.exit().remove(),s.each((function(t){var e,r=n.select(this),o=t.rp0=u.c2p(t.s0),s=t.rp1=u.c2p(t.s1),p=t.thetag0=f.c2g(t.p0),d=t.thetag1=f.c2g(t.p1);if(i(o)&&i(s)&&i(p)&&i(d)&&o!==s&&p!==d){var g=u.c2g(t.s1),m=(p+d)/2;t.ct=[l.c2p(g*Math.cos(m)),c.c2p(g*Math.sin(m))],e=h(o,s,p,d)}else e=\"M0,0Z\";a.ensureSingle(r,\"path\").attr(\"d\",e)})),o.setClipUrl(r,e._hasClipOnAxisFalse?e.clipIds.forTraces:null,t)}))}},{\"../../components/drawing\":665,\"../../lib\":778,\"../../plots/polar/helpers\":893,d3:169,\"fast-isnumeric\":241}],946:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),i=t(\"../bar/attributes\"),a=t(\"../../components/color/attributes\"),o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../lib/extend\").extendFlat,l=n.marker,c=l.line;e.exports={y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},x0:{valType:\"any\",editType:\"calc+clearAxisTypes\"},y0:{valType:\"any\",editType:\"calc+clearAxisTypes\"},dx:{valType:\"number\",editType:\"calc\"},dy:{valType:\"number\",editType:\"calc\"},xperiod:n.xperiod,yperiod:n.yperiod,xperiod0:n.xperiod0,yperiod0:n.yperiod0,xperiodalignment:n.xperiodalignment,yperiodalignment:n.yperiodalignment,name:{valType:\"string\",editType:\"calc+clearAxisTypes\"},q1:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},median:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},q3:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},lowerfence:{valType:\"data_array\",editType:\"calc\"},upperfence:{valType:\"data_array\",editType:\"calc\"},notched:{valType:\"boolean\",editType:\"calc\"},notchwidth:{valType:\"number\",min:0,max:.5,dflt:.25,editType:\"calc\"},notchspan:{valType:\"data_array\",editType:\"calc\"},boxpoints:{valType:\"enumerated\",values:[\"all\",\"outliers\",\"suspectedoutliers\",!1],editType:\"calc\"},jitter:{valType:\"number\",min:0,max:1,editType:\"calc\"},pointpos:{valType:\"number\",min:-2,max:2,editType:\"calc\"},boxmean:{valType:\"enumerated\",values:[!0,\"sd\",!1],editType:\"calc\"},mean:{valType:\"data_array\",editType:\"calc\"},sd:{valType:\"data_array\",editType:\"calc\"},orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],editType:\"calc+clearAxisTypes\"},quartilemethod:{valType:\"enumerated\",values:[\"linear\",\"exclusive\",\"inclusive\"],dflt:\"linear\",editType:\"calc\"},width:{valType:\"number\",min:0,dflt:0,editType:\"calc\"},marker:{outliercolor:{valType:\"color\",dflt:\"rgba(0, 0, 0, 0)\",editType:\"style\"},symbol:s({},l.symbol,{arrayOk:!1,editType:\"plot\"}),opacity:s({},l.opacity,{arrayOk:!1,dflt:1,editType:\"style\"}),size:s({},l.size,{arrayOk:!1,editType:\"calc\"}),color:s({},l.color,{arrayOk:!1,editType:\"style\"}),line:{color:s({},c.color,{arrayOk:!1,dflt:a.defaultLine,editType:\"style\"}),width:s({},c.width,{arrayOk:!1,dflt:0,editType:\"style\"}),outliercolor:{valType:\"color\",editType:\"style\"},outlierwidth:{valType:\"number\",min:0,dflt:1,editType:\"style\"},editType:\"style\"},editType:\"plot\"},line:{color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,dflt:2,editType:\"style\"},editType:\"plot\"},fillcolor:n.fillcolor,whiskerwidth:{valType:\"number\",min:0,max:1,dflt:.5,editType:\"calc\"},offsetgroup:i.offsetgroup,alignmentgroup:i.alignmentgroup,selected:{marker:n.selected.marker,editType:\"style\"},unselected:{marker:n.unselected.marker,editType:\"style\"},text:s({},n.text,{}),hovertext:s({},n.hovertext,{}),hovertemplate:o({}),hoveron:{valType:\"flaglist\",flags:[\"boxes\",\"points\"],dflt:\"boxes+points\",editType:\"style\"}}},{\"../../components/color/attributes\":642,\"../../lib/extend\":768,\"../../plots/template_attributes\":906,\"../bar/attributes\":921,\"../scatter/attributes\":1187}],947:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../plots/cartesian/align_period\"),o=t(\"../../lib\"),s=t(\"../../constants/numerical\").BADNUM,l=o._;e.exports=function(t,e){var r,c,y,x,b,_,w,T=t._fullLayout,k=i.getFromId(t,e.xaxis||\"x\"),M=i.getFromId(t,e.yaxis||\"y\"),A=[],S=\"violin\"===e.type?\"_numViolins\":\"_numBoxes\";\"h\"===e.orientation?(y=k,x=\"x\",b=M,_=\"y\",w=!!e.yperiodalignment):(y=M,x=\"y\",b=k,_=\"x\",w=!!e.xperiodalignment);var E,C,L,I,P,z,O=function(t,e,r,i){var s,l=e+\"0\"in t,c=\"d\"+e in t;if(e in t||l&&c){var u=r.makeCalcdata(t,e);return[a(t,r,e,u),u]}s=l?t[e+\"0\"]:\"name\"in t&&(\"category\"===r.type||n(t.name)&&-1!==[\"linear\",\"log\"].indexOf(r.type)||o.isDateTime(t.name)&&\"date\"===r.type)?t.name:i;for(var f=\"multicategory\"===r.type?r.r2c_just_indices(s):r.d2c(s,0,t[e+\"calendar\"]),h=t._length,p=new Array(h),d=0;d<h;d++)p[d]=f;return[p]}(e,_,b,T[S]),D=O[0],R=O[1],F=o.distinctVals(D),B=F.vals,N=F.minDiff/2,j=\"all\"===(e.boxpoints||e.points)?o.identity:function(t){return t.v<E.lf||t.v>E.uf};if(e._hasPreCompStats){var U=e[x],V=function(t){return y.d2c((e[t]||[])[r])},q=1/0,H=-1/0;for(r=0;r<e._length;r++){var G=D[r];if(n(G)){if((E={}).pos=E[_]=G,w&&R&&(E.orig_p=R[r]),E.q1=V(\"q1\"),E.med=V(\"median\"),E.q3=V(\"q3\"),C=[],U&&o.isArrayOrTypedArray(U[r]))for(c=0;c<U[r].length;c++)(z=y.d2c(U[r][c]))!==s&&(u(P={v:z,i:[r,c]},e,[r,c]),C.push(P));if(E.pts=C.sort(f),I=(L=E[x]=C.map(h)).length,E.med!==s&&E.q1!==s&&E.q3!==s&&E.med>=E.q1&&E.q3>=E.med){var Y=V(\"lowerfence\");E.lf=Y!==s&&Y<=E.q1?Y:p(E,L,I);var W=V(\"upperfence\");E.uf=W!==s&&W>=E.q3?W:d(E,L,I);var X=V(\"mean\");E.mean=X!==s?X:I?o.mean(L,I):(E.q1+E.q3)/2;var Z=V(\"sd\");E.sd=X!==s&&Z>=0?Z:I?o.stdev(L,I,E.mean):E.q3-E.q1,E.lo=g(E),E.uo=m(E);var J=V(\"notchspan\");J=J!==s&&J>0?J:v(E,I),E.ln=E.med-J,E.un=E.med+J;var K=E.lf,Q=E.uf;e.boxpoints&&L.length&&(K=Math.min(K,L[0]),Q=Math.max(Q,L[I-1])),e.notched&&(K=Math.min(K,E.ln),Q=Math.max(Q,E.un)),E.min=K,E.max=Q}else{var $;o.warn([\"Invalid input - make sure that q1 <= median <= q3\",\"q1 = \"+E.q1,\"median = \"+E.med,\"q3 = \"+E.q3].join(\"\\n\")),$=E.med!==s?E.med:E.q1!==s?E.q3!==s?(E.q1+E.q3)/2:E.q1:E.q3!==s?E.q3:0,E.med=$,E.q1=E.q3=$,E.lf=E.uf=$,E.mean=E.sd=$,E.ln=E.un=$,E.min=E.max=$}q=Math.min(q,E.min),H=Math.max(H,E.max),E.pts2=C.filter(j),A.push(E)}}e._extremes[y._id]=i.findExtremes(y,[q,H],{padded:!0})}else{var tt=y.makeCalcdata(e,x),et=function(t,e){for(var r=t.length,n=new Array(r+1),i=0;i<r;i++)n[i]=t[i]-e;return n[r]=t[r-1]+e,n}(B,N),rt=B.length,nt=function(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=[];return e}(rt);for(r=0;r<e._length;r++)if(z=tt[r],n(z)){var it=o.findBin(D[r],et);it>=0&&it<rt&&(u(P={v:z,i:r},e,r),nt[it].push(P))}var at=1/0,ot=-1/0,st=e.quartilemethod,lt=\"exclusive\"===st,ct=\"inclusive\"===st;for(r=0;r<rt;r++)if(nt[r].length>0){var ut,ft;if((E={}).pos=E[_]=B[r],C=E.pts=nt[r].sort(f),I=(L=E[x]=C.map(h)).length,E.min=L[0],E.max=L[I-1],E.mean=o.mean(L,I),E.sd=o.stdev(L,I,E.mean),E.med=o.interp(L,.5),I%2&&(lt||ct))lt?(ut=L.slice(0,I/2),ft=L.slice(I/2+1)):ct&&(ut=L.slice(0,I/2+1),ft=L.slice(I/2)),E.q1=o.interp(ut,.5),E.q3=o.interp(ft,.5);else E.q1=o.interp(L,.25),E.q3=o.interp(L,.75);E.lf=p(E,L,I),E.uf=d(E,L,I),E.lo=g(E),E.uo=m(E);var ht=v(E,I);E.ln=E.med-ht,E.un=E.med+ht,at=Math.min(at,E.ln),ot=Math.max(ot,E.un),E.pts2=C.filter(j),A.push(E)}e._extremes[y._id]=i.findExtremes(y,e.notched?tt.concat([at,ot]):tt,{padded:!0})}return function(t,e){if(o.isArrayOrTypedArray(e.selectedpoints))for(var r=0;r<t.length;r++){for(var n=t[r].pts||[],i={},a=0;a<n.length;a++)i[n[a].i]=a;o.tagSelected(n,e,i)}}(A,e),A.length>0?(A[0].t={num:T[S],dPos:N,posLetter:_,valLetter:x,labels:{med:l(t,\"median:\"),min:l(t,\"min:\"),q1:l(t,\"q1:\"),q3:l(t,\"q3:\"),max:l(t,\"max:\"),mean:\"sd\"===e.boxmean?l(t,\"mean \\xb1 \\u03c3:\"):l(t,\"mean:\"),lf:l(t,\"lower fence:\"),uf:l(t,\"upper fence:\")}},T[S]++,A):[{t:{empty:!0}}]};var c={text:\"tx\",hovertext:\"htx\"};function u(t,e,r){for(var n in c)o.isArrayOrTypedArray(e[n])&&(Array.isArray(r)?o.isArrayOrTypedArray(e[n][r[0]])&&(t[c[n]]=e[n][r[0]][r[1]]):t[c[n]]=e[n][r])}function f(t,e){return t.v-e.v}function h(t){return t.v}function p(t,e,r){return 0===r?t.q1:Math.min(t.q1,e[Math.min(o.findBin(2.5*t.q1-1.5*t.q3,e,!0)+1,r-1)])}function d(t,e,r){return 0===r?t.q3:Math.max(t.q3,e[Math.max(o.findBin(2.5*t.q3-1.5*t.q1,e),0)])}function g(t){return 4*t.q1-3*t.q3}function m(t){return 4*t.q3-3*t.q1}function v(t,e){return 0===e?0:1.57*(t.q3-t.q1)/Math.sqrt(e)}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../../plots/cartesian/align_period\":825,\"../../plots/cartesian/axes\":828,\"fast-isnumeric\":241}],948:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib\"),a=t(\"../../plots/cartesian/constraints\").getAxisGroup,o=[\"v\",\"h\"];function s(t,e,r,o){var s,l,c,u=e.calcdata,f=e._fullLayout,h=o._id,p=h.charAt(0),d=[],g=0;for(s=0;s<r.length;s++)for(c=u[r[s]],l=0;l<c.length;l++)d.push(o.c2l(c[l].pos,!0)),g+=(c[l].pts2||[]).length;if(d.length){var m=i.distinctVals(d,{unitMinDiff:\"category\"===o.type||\"multicategory\"===o.type}),v=m.minDiff/2;n.minDtick(o,m.minDiff,m.vals[0],!0);var y=f[\"violin\"===t?\"_numViolins\":\"_numBoxes\"],x=\"group\"===f[t+\"mode\"]&&y>1,b=1-f[t+\"gap\"],_=1-f[t+\"groupgap\"];for(s=0;s<r.length;s++){var w,T,k,M,A,S,E=(c=u[r[s]])[0].trace,C=c[0].t,L=E.width,I=E.side;if(L)w=T=M=L/2,k=0;else if(w=v,x){var P=a(f,o._id)+E.orientation,z=(f._alignmentOpts[P]||{})[E.alignmentgroup]||{},O=Object.keys(z.offsetGroups||{}).length,D=O||y;T=w*b*_/D,k=2*w*(((O?E._offsetIndex:C.num)+.5)/D-.5)*b,M=w*b/D}else T=w*b*_,k=0,M=w;C.dPos=w,C.bPos=k,C.bdPos=T,C.wHover=M;var R,F,B,N,j,U,V=k+T,q=Boolean(L);if(\"positive\"===I?(A=w*(L?1:.5),R=V,S=R=k):\"negative\"===I?(A=R=k,S=w*(L?1:.5),F=V):(A=S=w,R=F=V),(E.boxpoints||E.points)&&g>0){var H=E.pointpos,G=E.jitter,Y=E.marker.size/2,W=0;H+G>=0&&((W=V*(H+G))>A?(q=!0,j=Y,B=W):W>R&&(j=Y,B=A)),W<=A&&(B=A);var X=0;H-G<=0&&((X=-V*(H-G))>S?(q=!0,U=Y,N=X):X>F&&(U=Y,N=S)),X<=S&&(N=S)}else B=A,N=S;var Z=new Array(c.length);for(l=0;l<c.length;l++)Z[l]=c[l].pos;E._extremes[h]=n.findExtremes(o,Z,{padded:q,vpadminus:N,vpadplus:B,vpadLinearized:!0,ppadminus:{x:U,y:j}[p],ppadplus:{x:j,y:U}[p]})}}}e.exports={crossTraceCalc:function(t,e){for(var r=t.calcdata,n=e.xaxis,i=e.yaxis,a=0;a<o.length;a++){for(var l=o[a],c=\"h\"===l?i:n,u=[],f=0;f<r.length;f++){var h=r[f],p=h[0].t,d=h[0].trace;!0!==d.visible||\"box\"!==d.type&&\"candlestick\"!==d.type||p.empty||(d.orientation||\"v\")!==l||d.xaxis!==n._id||d.yaxis!==i._id||u.push(f)}s(\"box\",t,u,c)}},setPositionOffset:s}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"../../plots/cartesian/constraints\":835}],949:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../registry\"),a=t(\"../../components/color\"),o=t(\"../scatter/period_defaults\"),s=t(\"../bar/defaults\").handleGroupingDefaults,l=t(\"../../plots/cartesian/axis_autotype\"),c=t(\"./attributes\");function u(t,e,r,a){function o(t){var e=0;return t&&t.length&&(e+=1,n.isArrayOrTypedArray(t[0])&&t[0].length&&(e+=1)),e}function s(e){return n.validate(t[e],c[e])}var u,f=r(\"y\"),h=r(\"x\");if(\"box\"===e.type){var p=r(\"q1\"),d=r(\"median\"),g=r(\"q3\");e._hasPreCompStats=p&&p.length&&d&&d.length&&g&&g.length,u=Math.min(n.minRowLength(p),n.minRowLength(d),n.minRowLength(g))}var m,v,y=o(f),x=o(h),b=y&&n.minRowLength(f),_=x&&n.minRowLength(h),w=a.calendar,T={autotypenumbers:a.autotypenumbers};if(e._hasPreCompStats)switch(String(x)+String(y)){case\"00\":var k=s(\"x0\")||s(\"dx\");m=(s(\"y0\")||s(\"dy\"))&&!k?\"h\":\"v\",v=u;break;case\"10\":m=\"v\",v=Math.min(u,_);break;case\"20\":m=\"h\",v=Math.min(u,h.length);break;case\"01\":m=\"h\",v=Math.min(u,b);break;case\"02\":m=\"v\",v=Math.min(u,f.length);break;case\"12\":m=\"v\",v=Math.min(u,_,f.length);break;case\"21\":m=\"h\",v=Math.min(u,h.length,b);break;case\"11\":v=0;break;case\"22\":var M,A=!1;for(M=0;M<h.length;M++)if(\"category\"===l(h[M],w,T)){A=!0;break}if(A)m=\"v\",v=Math.min(u,_,f.length);else{for(M=0;M<f.length;M++)if(\"category\"===l(f[M],w,T)){A=!0;break}A?(m=\"h\",v=Math.min(u,h.length,b)):(m=\"v\",v=Math.min(u,_,f.length))}}else y>0?(m=\"v\",v=x>0?Math.min(_,b):Math.min(b)):x>0?(m=\"h\",v=Math.min(_)):v=0;if(v){e._length=v;var S=r(\"orientation\",m);e._hasPreCompStats?\"v\"===S&&0===x?(r(\"x0\",0),r(\"dx\",1)):\"h\"===S&&0===y&&(r(\"y0\",0),r(\"dy\",1)):\"v\"===S&&0===x?r(\"x0\"):\"h\"===S&&0===y&&r(\"y0\"),i.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],a)}else e.visible=!1}function f(t,e,r,i){var a=i.prefix,o=n.coerce2(t,e,c,\"marker.outliercolor\"),s=r(\"marker.line.outliercolor\"),l=\"outliers\";e._hasPreCompStats?l=\"all\":(o||s)&&(l=\"suspectedoutliers\");var u=r(a+\"points\",l);u?(r(\"jitter\",\"all\"===u?.3:0),r(\"pointpos\",\"all\"===u?-1.5:0),r(\"marker.symbol\"),r(\"marker.opacity\"),r(\"marker.size\"),r(\"marker.color\",e.line.color),r(\"marker.line.color\"),r(\"marker.line.width\"),\"suspectedoutliers\"===u&&(r(\"marker.line.outliercolor\",e.marker.color),r(\"marker.line.outlierwidth\")),r(\"selected.marker.color\"),r(\"unselected.marker.color\"),r(\"selected.marker.size\"),r(\"unselected.marker.size\"),r(\"text\"),r(\"hovertext\")):delete e.marker;var f=r(\"hoveron\");\"all\"!==f&&-1===f.indexOf(\"points\")||r(\"hovertemplate\"),n.coerceSelectionMarkerOpacity(e,r)}e.exports={supplyDefaults:function(t,e,r,i){function s(r,i){return n.coerce(t,e,c,r,i)}if(u(t,e,s,i),!1!==e.visible){o(t,e,i,s);var l=e._hasPreCompStats;l&&(s(\"lowerfence\"),s(\"upperfence\")),s(\"line.color\",(t.marker||{}).color||r),s(\"line.width\"),s(\"fillcolor\",a.addOpacity(e.line.color,.5));var h=!1;if(l){var p=s(\"mean\"),d=s(\"sd\");p&&p.length&&(h=!0,d&&d.length&&(h=\"sd\"))}s(\"boxmean\",h),s(\"whiskerwidth\"),s(\"width\"),s(\"quartilemethod\");var g=!1;if(l){var m=s(\"notchspan\");m&&m.length&&(g=!0)}else n.validate(t.notchwidth,c.notchwidth)&&(g=!0);s(\"notched\",g)&&s(\"notchwidth\"),f(t,e,s,{prefix:\"box\"})}},crossTraceDefaults:function(t,e){var r,i;function a(t){return n.coerce(i._input,i,c,t)}for(var o=0;o<t.length;o++){var l=(i=t[o]).type;\"box\"!==l&&\"violin\"!==l||(r=i._input,\"group\"===e[l+\"mode\"]&&s(r,i,e,a))}},handleSampleDefaults:u,handlePointsDefaults:f}},{\"../../components/color\":643,\"../../lib\":778,\"../../plots/cartesian/axis_autotype\":829,\"../../registry\":911,\"../bar/defaults\":925,\"../scatter/period_defaults\":1207,\"./attributes\":946}],950:[function(t,e,r){\"use strict\";e.exports=function(t,e){return e.hoverOnBox&&(t.hoverOnBox=e.hoverOnBox),\"xVal\"in e&&(t.x=e.xVal),\"yVal\"in e&&(t.y=e.yVal),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),t}},{}],951:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib\"),a=t(\"../../components/fx\"),o=t(\"../../components/color\"),s=i.fillText;function l(t,e,r,s){var l,c,u,f,h,p,d,g,m,v,y,x,b,_,w=t.cd,T=t.xa,k=t.ya,M=w[0].trace,A=w[0].t,S=\"violin\"===M.type,E=[],C=A.bdPos,L=A.wHover,I=function(t){return u.c2l(t.pos)+A.bPos-u.c2l(p)};S&&\"both\"!==M.side?(\"positive\"===M.side&&(m=function(t){var e=I(t);return a.inbox(e,e+L,v)},x=C,b=0),\"negative\"===M.side&&(m=function(t){var e=I(t);return a.inbox(e-L,e,v)},x=0,b=C)):(m=function(t){var e=I(t);return a.inbox(e-L,e+L,v)},x=b=C),_=S?function(t){return a.inbox(t.span[0]-h,t.span[1]-h,v)}:function(t){return a.inbox(t.min-h,t.max-h,v)},\"h\"===M.orientation?(h=e,p=r,d=_,g=m,l=\"y\",u=k,c=\"x\",f=T):(h=r,p=e,d=m,g=_,l=\"x\",u=T,c=\"y\",f=k);var P=Math.min(1,C/Math.abs(u.r2c(u.range[1])-u.r2c(u.range[0])));function z(t){return(d(t)+g(t))/2}v=t.maxHoverDistance-P,y=t.maxSpikeDistance-P;var O=a.getDistanceFunction(s,d,g,z);if(a.getClosest(w,O,t),!1===t.index)return[];var D=w[t.index],R=M.line.color,F=(M.marker||{}).color;o.opacity(R)&&M.line.width?t.color=R:o.opacity(F)&&M.boxpoints?t.color=F:t.color=M.fillcolor,t[l+\"0\"]=u.c2p(D.pos+A.bPos-b,!0),t[l+\"1\"]=u.c2p(D.pos+A.bPos+x,!0),t[l+\"LabelVal\"]=void 0!==D.orig_p?D.orig_p:D.pos;var B=l+\"Spike\";t.spikeDistance=z(D)*y/v,t[B]=u.c2p(D.pos,!0);var N={},j=[\"med\",\"q1\",\"q3\",\"min\",\"max\"];(M.boxmean||(M.meanline||{}).visible)&&j.push(\"mean\"),(M.boxpoints||M.points)&&j.push(\"lf\",\"uf\");for(var U=0;U<j.length;U++){var V=j[U];if(V in D&&!(D[V]in N)){N[D[V]]=!0;var q=D[V],H=f.c2p(q,!0),G=i.extendFlat({},t);G.attr=V,G[c+\"0\"]=G[c+\"1\"]=H,G[c+\"LabelVal\"]=q,G[c+\"Label\"]=(A.labels?A.labels[V]+\" \":\"\")+n.hoverLabelText(f,q),G.hoverOnBox=!0,\"mean\"===V&&\"sd\"in D&&\"sd\"===M.boxmean&&(G[c+\"err\"]=D.sd),t.name=\"\",t.spikeDistance=void 0,t[B]=void 0,G.hovertemplate=!1,E.push(G)}}return E}function c(t,e,r){for(var n,o,l,c=t.cd,u=t.xa,f=t.ya,h=c[0].trace,p=u.c2p(e),d=f.c2p(r),g=a.quadrature((function(t){var e=Math.max(3,t.mrc||0);return Math.max(Math.abs(u.c2p(t.x)-p)-e,1-3/e)}),(function(t){var e=Math.max(3,t.mrc||0);return Math.max(Math.abs(f.c2p(t.y)-d)-e,1-3/e)})),m=!1,v=0;v<c.length;v++){o=c[v];for(var y=0;y<(o.pts||[]).length;y++){var x=g(l=o.pts[y]);x<=t.distance&&(t.distance=x,m=[v,y])}}if(!m)return!1;l=(o=c[m[0]]).pts[m[1]];var b=u.c2p(l.x,!0),_=f.c2p(l.y,!0),w=l.mrc||1;n=i.extendFlat({},t,{index:l.i,color:(h.marker||{}).color,name:h.name,x0:b-w,x1:b+w,y0:_-w,y1:_+w,spikeDistance:t.distance,hovertemplate:h.hovertemplate});var T,k=o.orig_p,M=void 0!==k?k:o.pos;return\"h\"===h.orientation?(T=f,n.xLabelVal=l.x,n.yLabelVal=M):(T=u,n.xLabelVal=M,n.yLabelVal=l.y),n[T._id.charAt(0)+\"Spike\"]=T.c2p(o.pos,!0),s(l,h,n),n}e.exports={hoverPoints:function(t,e,r,n){var i,a=t.cd[0].trace.hoveron,o=[];return-1!==a.indexOf(\"boxes\")&&(o=o.concat(l(t,e,r,n))),-1!==a.indexOf(\"points\")&&(i=c(t,e,r)),\"closest\"===n?i?[i]:o:i?(o.push(i),o):o},hoverOnBoxes:l,hoverOnPoints:c}},{\"../../components/color\":643,\"../../components/fx\":683,\"../../lib\":778,\"../../plots/cartesian/axes\":828}],952:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\").supplyLayoutDefaults,calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\").crossTraceCalc,plot:t(\"./plot\").plot,style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"box\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"symbols\",\"oriented\",\"box-violin\",\"showLegend\",\"boxLayout\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":841,\"./attributes\":946,\"./calc\":947,\"./cross_trace_calc\":948,\"./defaults\":949,\"./event_data\":950,\"./hover\":951,\"./layout_attributes\":953,\"./layout_defaults\":954,\"./plot\":955,\"./select\":956,\"./style\":957}],953:[function(t,e,r){\"use strict\";e.exports={boxmode:{valType:\"enumerated\",values:[\"group\",\"overlay\"],dflt:\"overlay\",editType:\"calc\"},boxgap:{valType:\"number\",min:0,max:1,dflt:.3,editType:\"calc\"},boxgroupgap:{valType:\"number\",min:0,max:1,dflt:.3,editType:\"calc\"}}},{}],954:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"./layout_attributes\");function o(t,e,r,i,a){for(var o=a+\"Layout\",s=!1,l=0;l<r.length;l++){var c=r[l];if(n.traceIs(c,o)){s=!0;break}}s&&(i(a+\"mode\"),i(a+\"gap\"),i(a+\"groupgap\"))}e.exports={supplyLayoutDefaults:function(t,e,r){o(0,0,r,(function(r,n){return i.coerce(t,e,a,r,n)}),\"box\")},_supply:o}},{\"../../lib\":778,\"../../registry\":911,\"./layout_attributes\":953}],955:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../../components/drawing\");function o(t,e,r,a){var o,s,l=\"h\"===r.orientation,c=e.val,u=e.pos,f=!!u.rangebreaks,h=a.bPos,p=a.wdPos||0,d=a.bPosPxOffset||0,g=r.whiskerwidth||0,m=r.notched||!1,v=m?1-2*r.notchwidth:1;Array.isArray(a.bdPos)?(o=a.bdPos[0],s=a.bdPos[1]):(o=a.bdPos,s=a.bdPos);var y=t.selectAll(\"path.box\").data(\"violin\"!==r.type||r.box.visible?i.identity:[]);y.enter().append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").attr(\"class\",\"box\"),y.exit().remove(),y.each((function(t){if(t.empty)return\"M0,0Z\";var e=u.c2l(t.pos+h,!0),a=u.l2p(e-o)+d,y=u.l2p(e+s)+d,x=f?(a+y)/2:u.l2p(e)+d,b=r.whiskerwidth,_=f?a*b+(1-b)*x:u.l2p(e-p)+d,w=f?y*b+(1-b)*x:u.l2p(e+p)+d,T=u.l2p(e-o*v)+d,k=u.l2p(e+s*v)+d,M=c.c2p(t.q1,!0),A=c.c2p(t.q3,!0),S=i.constrain(c.c2p(t.med,!0),Math.min(M,A)+1,Math.max(M,A)-1),E=void 0===t.lf||!1===r.boxpoints,C=c.c2p(E?t.min:t.lf,!0),L=c.c2p(E?t.max:t.uf,!0),I=c.c2p(t.ln,!0),P=c.c2p(t.un,!0);l?n.select(this).attr(\"d\",\"M\"+S+\",\"+T+\"V\"+k+\"M\"+M+\",\"+a+\"V\"+y+(m?\"H\"+I+\"L\"+S+\",\"+k+\"L\"+P+\",\"+y:\"\")+\"H\"+A+\"V\"+a+(m?\"H\"+P+\"L\"+S+\",\"+T+\"L\"+I+\",\"+a:\"\")+\"ZM\"+M+\",\"+x+\"H\"+C+\"M\"+A+\",\"+x+\"H\"+L+(0===g?\"\":\"M\"+C+\",\"+_+\"V\"+w+\"M\"+L+\",\"+_+\"V\"+w)):n.select(this).attr(\"d\",\"M\"+T+\",\"+S+\"H\"+k+\"M\"+a+\",\"+M+\"H\"+y+(m?\"V\"+I+\"L\"+k+\",\"+S+\"L\"+y+\",\"+P:\"\")+\"V\"+A+\"H\"+a+(m?\"V\"+P+\"L\"+T+\",\"+S+\"L\"+a+\",\"+I:\"\")+\"ZM\"+x+\",\"+M+\"V\"+C+\"M\"+x+\",\"+A+\"V\"+L+(0===g?\"\":\"M\"+_+\",\"+C+\"H\"+w+\"M\"+_+\",\"+L+\"H\"+w))}))}function s(t,e,r,n){var o=e.x,s=e.y,l=n.bdPos,c=n.bPos,u=r.boxpoints||r.points;i.seedPseudoRandom();var f=t.selectAll(\"g.points\").data(u?function(t){return t.forEach((function(t){t.t=n,t.trace=r})),t}:[]);f.enter().append(\"g\").attr(\"class\",\"points\"),f.exit().remove();var h=f.selectAll(\"path\").data((function(t){var e,n,a=t.pts2,o=Math.max((t.max-t.min)/10,t.q3-t.q1),s=1e-9*o,f=.01*o,h=[],p=0;if(r.jitter){if(0===o)for(p=1,h=new Array(a.length),e=0;e<a.length;e++)h[e]=1;else for(e=0;e<a.length;e++){var d=Math.max(0,e-5),g=a[d].v,m=Math.min(a.length-1,e+5),v=a[m].v;\"all\"!==u&&(a[e].v<t.lf?v=Math.min(v,t.lf):g=Math.max(g,t.uf));var y=Math.sqrt(f*(m-d)/(v-g+s))||0;y=i.constrain(Math.abs(y),0,1),h.push(y),p=Math.max(y,p)}n=2*r.jitter/(p||1)}for(e=0;e<a.length;e++){var x=a[e],b=x.v,_=r.jitter?n*h[e]*(i.pseudoRandom()-.5):0,w=t.pos+c+l*(r.pointpos+_);\"h\"===r.orientation?(x.y=w,x.x=b):(x.x=w,x.y=b),\"suspectedoutliers\"===u&&b<t.uo&&b>t.lo&&(x.so=!0)}return a}));h.enter().append(\"path\").classed(\"point\",!0),h.exit().remove(),h.call(a.translatePoints,o,s)}function l(t,e,r,a){var o,s,l=e.val,c=e.pos,u=!!c.rangebreaks,f=a.bPos,h=a.bPosPxOffset||0,p=r.boxmean||(r.meanline||{}).visible;Array.isArray(a.bdPos)?(o=a.bdPos[0],s=a.bdPos[1]):(o=a.bdPos,s=a.bdPos);var d=t.selectAll(\"path.mean\").data(\"box\"===r.type&&r.boxmean||\"violin\"===r.type&&r.box.visible&&r.meanline.visible?i.identity:[]);d.enter().append(\"path\").attr(\"class\",\"mean\").style({fill:\"none\",\"vector-effect\":\"non-scaling-stroke\"}),d.exit().remove(),d.each((function(t){var e=c.c2l(t.pos+f,!0),i=c.l2p(e-o)+h,a=c.l2p(e+s)+h,d=u?(i+a)/2:c.l2p(e)+h,g=l.c2p(t.mean,!0),m=l.c2p(t.mean-t.sd,!0),v=l.c2p(t.mean+t.sd,!0);\"h\"===r.orientation?n.select(this).attr(\"d\",\"M\"+g+\",\"+i+\"V\"+a+(\"sd\"===p?\"m0,0L\"+m+\",\"+d+\"L\"+g+\",\"+i+\"L\"+v+\",\"+d+\"Z\":\"\")):n.select(this).attr(\"d\",\"M\"+i+\",\"+g+\"H\"+a+(\"sd\"===p?\"m0,0L\"+d+\",\"+m+\"L\"+i+\",\"+g+\"L\"+d+\",\"+v+\"Z\":\"\"))}))}e.exports={plot:function(t,e,r,a){var c=e.xaxis,u=e.yaxis;i.makeTraceGroups(a,r,\"trace boxes\").each((function(t){var e,r,i=n.select(this),a=t[0],f=a.t,h=a.trace;(f.wdPos=f.bdPos*h.whiskerwidth,!0!==h.visible||f.empty)?i.remove():(\"h\"===h.orientation?(e=u,r=c):(e=c,r=u),o(i,{pos:e,val:r},h,f),s(i,{x:c,y:u},h,f),l(i,{pos:e,val:r},h,f))}))},plotBoxAndWhiskers:o,plotPoints:s,plotBoxMean:l}},{\"../../components/drawing\":665,\"../../lib\":778,d3:169}],956:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n,i=t.cd,a=t.xaxis,o=t.yaxis,s=[];if(!1===e)for(r=0;r<i.length;r++)for(n=0;n<(i[r].pts||[]).length;n++)i[r].pts[n].selected=0;else for(r=0;r<i.length;r++)for(n=0;n<(i[r].pts||[]).length;n++){var l=i[r].pts[n],c=a.c2p(l.x),u=o.c2p(l.y);e.contains([c,u],null,l.i,t)?(s.push({pointNumber:l.i,x:a.c2d(l.x),y:o.c2d(l.y)}),l.selected=1):l.selected=0}return s}},{}],957:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/color\"),a=t(\"../../components/drawing\");e.exports={style:function(t,e,r){var o=r||n.select(t).selectAll(\"g.trace.boxes\");o.style(\"opacity\",(function(t){return t[0].trace.opacity})),o.each((function(e){var r=n.select(this),o=e[0].trace,s=o.line.width;function l(t,e,r,n){t.style(\"stroke-width\",e+\"px\").call(i.stroke,r).call(i.fill,n)}var c=r.selectAll(\"path.box\");if(\"candlestick\"===o.type)c.each((function(t){if(!t.empty){var e=n.select(this),r=o[t.dir];l(e,r.line.width,r.line.color,r.fillcolor),e.style(\"opacity\",o.selectedpoints&&!t.selected?.3:1)}}));else{l(c,s,o.line.color,o.fillcolor),r.selectAll(\"path.mean\").style({\"stroke-width\":s,\"stroke-dasharray\":2*s+\"px,\"+s+\"px\"}).call(i.stroke,o.line.color);var u=r.selectAll(\"path.point\");a.pointStyle(u,o,t)}}))},styleOnSelect:function(t,e,r){var n=e[0].trace,i=r.selectAll(\"path.point\");n.selectedpoints?a.selectedPointStyle(i,n):a.pointStyle(i,n,t)}}},{\"../../components/color\":643,\"../../components/drawing\":665,d3:169}],958:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").extendFlat,i=t(\"../ohlc/attributes\"),a=t(\"../box/attributes\");function o(t){return{line:{color:n({},a.line.color,{dflt:t}),width:a.line.width,editType:\"style\"},fillcolor:a.fillcolor,editType:\"style\"}}e.exports={xperiod:i.xperiod,xperiod0:i.xperiod0,xperiodalignment:i.xperiodalignment,x:i.x,open:i.open,high:i.high,low:i.low,close:i.close,line:{width:n({},a.line.width,{}),editType:\"style\"},increasing:o(i.increasing.line.color.dflt),decreasing:o(i.decreasing.line.color.dflt),text:i.text,hovertext:i.hovertext,whiskerwidth:n({},a.whiskerwidth,{dflt:0}),hoverlabel:i.hoverlabel}},{\"../../lib\":778,\"../box/attributes\":946,\"../ohlc/attributes\":1133}],959:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../plots/cartesian/align_period\"),o=t(\"../ohlc/calc\").calcCommon;function s(t,e,r,n){return{min:r,q1:Math.min(t,n),med:n,q3:Math.max(t,n),max:e}}e.exports=function(t,e){var r=t._fullLayout,l=i.getFromId(t,e.xaxis),c=i.getFromId(t,e.yaxis),u=l.makeCalcdata(e,\"x\"),f=a(e,l,\"x\",u),h=o(t,e,u,f,c,s);return h.length?(n.extendFlat(h[0].t,{num:r._numBoxes,dPos:n.distinctVals(f).minDiff/2,posLetter:\"x\",valLetter:\"y\"}),r._numBoxes++,h):[{t:{empty:!0}}]}},{\"../../lib\":778,\"../../plots/cartesian/align_period\":825,\"../../plots/cartesian/axes\":828,\"../ohlc/calc\":1134}],960:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/color\"),a=t(\"../ohlc/ohlc_defaults\"),o=t(\"../scatter/period_defaults\"),s=t(\"./attributes\");function l(t,e,r,n){var a=r(n+\".line.color\");r(n+\".line.width\",e.line.width),r(n+\".fillcolor\",i.addOpacity(a,.5))}e.exports=function(t,e,r,i){function c(r,i){return n.coerce(t,e,s,r,i)}a(t,e,c,i)?(o(t,e,i,c,{x:!0}),c(\"line.width\"),l(t,e,c,\"increasing\"),l(t,e,c,\"decreasing\"),c(\"text\"),c(\"hovertext\"),c(\"whiskerwidth\"),i._requestRangeslider[e.xaxis]=!0):e.visible=!1}},{\"../../components/color\":643,\"../../lib\":778,\"../ohlc/ohlc_defaults\":1138,\"../scatter/period_defaults\":1207,\"./attributes\":958}],961:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"candlestick\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"showLegend\",\"candlestick\",\"boxLayout\"],meta:{},attributes:t(\"./attributes\"),layoutAttributes:t(\"../box/layout_attributes\"),supplyLayoutDefaults:t(\"../box/layout_defaults\").supplyLayoutDefaults,crossTraceCalc:t(\"../box/cross_trace_calc\").crossTraceCalc,supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"../box/plot\").plot,layerName:\"boxlayer\",style:t(\"../box/style\").style,hoverPoints:t(\"../ohlc/hover\").hoverPoints,selectPoints:t(\"../ohlc/select\")}},{\"../../plots/cartesian\":841,\"../box/cross_trace_calc\":948,\"../box/layout_attributes\":953,\"../box/layout_defaults\":954,\"../box/plot\":955,\"../box/style\":957,\"../ohlc/hover\":1136,\"../ohlc/select\":1140,\"./attributes\":958,\"./calc\":959,\"./defaults\":960}],962:[function(t,e,r){\"use strict\";var n=t(\"./axis_defaults\"),i=t(\"../../plot_api/plot_template\");e.exports=function(t,e,r,a,o){a(\"a\")||(a(\"da\"),a(\"a0\")),a(\"b\")||(a(\"db\"),a(\"b0\")),function(t,e,r,a){[\"aaxis\",\"baxis\"].forEach((function(o){var s=o.charAt(0),l=t[o]||{},c=i.newContainer(e,o),u={tickfont:\"x\",id:s+\"axis\",letter:s,font:e.font,name:o,data:t[s],calendar:e.calendar,dfltColor:a,bgColor:r.paper_bgcolor,autotypenumbersDflt:r.autotypenumbers,fullLayout:r};n(l,c,u),c._categories=c._categories||[],t[o]||\"-\"===l.type||(t[o]={type:l.type})}))}(t,e,r,o)}},{\"../../plot_api/plot_template\":817,\"./axis_defaults\":967}],963:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t){return function t(e,r){if(!n(e)||r>=10)return null;for(var i=1/0,a=-1/0,o=e.length,s=0;s<o;s++){var l=e[s];if(n(l)){var c=t(l,r+1);c&&(i=Math.min(c[0],i),a=Math.max(c[1],a))}else i=Math.min(l,i),a=Math.max(l,a)}return[i,a]}(t,0)}},{\"../../lib\":778}],964:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),i=t(\"./axis_attributes\"),a=t(\"../../components/color/attributes\"),o=n({editType:\"calc\"});o.family.dflt='\"Open Sans\", verdana, arial, sans-serif',o.size.dflt=12,o.color.dflt=a.defaultLine,e.exports={carpet:{valType:\"string\",editType:\"calc\"},x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},a:{valType:\"data_array\",editType:\"calc\"},a0:{valType:\"number\",dflt:0,editType:\"calc\"},da:{valType:\"number\",dflt:1,editType:\"calc\"},b:{valType:\"data_array\",editType:\"calc\"},b0:{valType:\"number\",dflt:0,editType:\"calc\"},db:{valType:\"number\",dflt:1,editType:\"calc\"},cheaterslope:{valType:\"number\",dflt:1,editType:\"calc\"},aaxis:i,baxis:i,font:o,color:{valType:\"color\",dflt:a.defaultLine,editType:\"plot\"},transforms:void 0}},{\"../../components/color/attributes\":642,\"../../plots/font_attributes\":856,\"./axis_attributes\":966}],965:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r,i){var a,o,s,l,c,u,f,h,p,d,g,m,v,y=n(r)?\"a\":\"b\",x=(\"a\"===y?t.aaxis:t.baxis).smoothing,b=\"a\"===y?t.a2i:t.b2j,_=\"a\"===y?r:i,w=\"a\"===y?i:r,T=\"a\"===y?e.a.length:e.b.length,k=\"a\"===y?e.b.length:e.a.length,M=Math.floor(\"a\"===y?t.b2j(w):t.a2i(w)),A=\"a\"===y?function(e){return t.evalxy([],e,M)}:function(e){return t.evalxy([],M,e)};x&&(s=Math.max(0,Math.min(k-2,M)),l=M-s,o=\"a\"===y?function(e,r){return t.dxydi([],e,s,r,l)}:function(e,r){return t.dxydj([],s,e,l,r)});var S=b(_[0]),E=b(_[1]),C=S<E?1:-1,L=1e-8*(E-S),I=C>0?Math.floor:Math.ceil,P=C>0?Math.ceil:Math.floor,z=C>0?Math.min:Math.max,O=C>0?Math.max:Math.min,D=I(S+L),R=P(E-L),F=[[f=A(S)]];for(a=D;a*C<R*C;a+=C)c=[],g=O(S,a),v=(m=z(E,a+C))-g,u=Math.max(0,Math.min(T-2,Math.floor(.5*(g+m)))),h=A(m),x&&(p=o(u,g-u),d=o(u,m-u),c.push([f[0]+p[0]/3*v,f[1]+p[1]/3*v]),c.push([h[0]-d[0]/3*v,h[1]-d[1]/3*v])),c.push(h),F.push(c),f=h;return F}},{\"../../lib\":778}],966:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),i=t(\"../../components/color/attributes\"),a=t(\"../../plots/cartesian/layout_attributes\"),o=t(\"../../plot_api/edit_types\").overrideAll;t(\"../../constants/docs\").FORMAT_LINK,t(\"../../constants/docs\").TIME_FORMAT_LINK;e.exports={color:{valType:\"color\",editType:\"calc\"},smoothing:{valType:\"number\",dflt:1,min:0,max:1.3,editType:\"calc\"},title:{text:{valType:\"string\",dflt:\"\",editType:\"calc\"},font:n({editType:\"calc\"}),offset:{valType:\"number\",dflt:10,editType:\"calc\"},editType:\"calc\"},type:{valType:\"enumerated\",values:[\"-\",\"linear\",\"date\",\"category\"],dflt:\"-\",editType:\"calc\"},autotypenumbers:a.autotypenumbers,autorange:{valType:\"enumerated\",values:[!0,!1,\"reversed\"],dflt:!0,editType:\"calc\"},rangemode:{valType:\"enumerated\",values:[\"normal\",\"tozero\",\"nonnegative\"],dflt:\"normal\",editType:\"calc\"},range:{valType:\"info_array\",editType:\"calc\",items:[{valType:\"any\",editType:\"calc\"},{valType:\"any\",editType:\"calc\"}]},fixedrange:{valType:\"boolean\",dflt:!1,editType:\"calc\"},cheatertype:{valType:\"enumerated\",values:[\"index\",\"value\"],dflt:\"value\",editType:\"calc\"},tickmode:{valType:\"enumerated\",values:[\"linear\",\"array\"],dflt:\"array\",editType:\"calc\"},nticks:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},tickvals:{valType:\"data_array\",editType:\"calc\"},ticktext:{valType:\"data_array\",editType:\"calc\"},showticklabels:{valType:\"enumerated\",values:[\"start\",\"end\",\"both\",\"none\"],dflt:\"start\",editType:\"calc\"},tickfont:n({editType:\"calc\"}),tickangle:{valType:\"angle\",dflt:\"auto\",editType:\"calc\"},tickprefix:{valType:\"string\",dflt:\"\",editType:\"calc\"},showtickprefix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"calc\"},ticksuffix:{valType:\"string\",dflt:\"\",editType:\"calc\"},showticksuffix:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"calc\"},showexponent:{valType:\"enumerated\",values:[\"all\",\"first\",\"last\",\"none\"],dflt:\"all\",editType:\"calc\"},exponentformat:{valType:\"enumerated\",values:[\"none\",\"e\",\"E\",\"power\",\"SI\",\"B\"],dflt:\"B\",editType:\"calc\"},minexponent:{valType:\"number\",dflt:3,min:0,editType:\"calc\"},separatethousands:{valType:\"boolean\",dflt:!1,editType:\"calc\"},tickformat:{valType:\"string\",dflt:\"\",editType:\"calc\"},tickformatstops:o(a.tickformatstops,\"calc\",\"from-root\"),categoryorder:{valType:\"enumerated\",values:[\"trace\",\"category ascending\",\"category descending\",\"array\"],dflt:\"trace\",editType:\"calc\"},categoryarray:{valType:\"data_array\",editType:\"calc\"},labelpadding:{valType:\"integer\",dflt:10,editType:\"calc\"},labelprefix:{valType:\"string\",editType:\"calc\"},labelsuffix:{valType:\"string\",dflt:\"\",editType:\"calc\"},showline:{valType:\"boolean\",dflt:!1,editType:\"calc\"},linecolor:{valType:\"color\",dflt:i.defaultLine,editType:\"calc\"},linewidth:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},gridcolor:{valType:\"color\",editType:\"calc\"},gridwidth:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},showgrid:{valType:\"boolean\",dflt:!0,editType:\"calc\"},minorgridcount:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},minorgridwidth:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},minorgridcolor:{valType:\"color\",dflt:i.lightLine,editType:\"calc\"},startline:{valType:\"boolean\",editType:\"calc\"},startlinecolor:{valType:\"color\",editType:\"calc\"},startlinewidth:{valType:\"number\",dflt:1,editType:\"calc\"},endline:{valType:\"boolean\",editType:\"calc\"},endlinewidth:{valType:\"number\",dflt:1,editType:\"calc\"},endlinecolor:{valType:\"color\",editType:\"calc\"},tick0:{valType:\"number\",min:0,dflt:0,editType:\"calc\"},dtick:{valType:\"number\",min:0,dflt:1,editType:\"calc\"},arraytick0:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},arraydtick:{valType:\"integer\",min:1,dflt:1,editType:\"calc\"},_deprecated:{title:{valType:\"string\",editType:\"calc\"},titlefont:n({editType:\"calc\"}),titleoffset:{valType:\"number\",dflt:10,editType:\"calc\"}},editType:\"calc\"}},{\"../../components/color/attributes\":642,\"../../constants/docs\":748,\"../../plot_api/edit_types\":810,\"../../plots/cartesian/layout_attributes\":842,\"../../plots/font_attributes\":856}],967:[function(t,e,r){\"use strict\";var n=t(\"./attributes\"),i=t(\"../../components/color\").addOpacity,a=t(\"../../registry\"),o=t(\"../../lib\"),s=t(\"../../plots/cartesian/tick_value_defaults\"),l=t(\"../../plots/cartesian/tick_label_defaults\"),c=t(\"../../plots/cartesian/category_order_defaults\"),u=t(\"../../plots/cartesian/set_convert\"),f=t(\"../../plots/cartesian/axis_autotype\");e.exports=function(t,e,r){var h=r.letter,p=r.font||{},d=n[h+\"axis\"];function g(r,n){return o.coerce(t,e,d,r,n)}function m(r,n){return o.coerce2(t,e,d,r,n)}r.name&&(e._name=r.name,e._id=r.name),g(\"autotypenumbers\",r.autotypenumbersDflt);var v=g(\"type\");(\"-\"===v&&(r.data&&function(t,e){if(\"-\"!==t.type)return;var r=t._id.charAt(0),n=t[r+\"calendar\"];t.type=f(e,n,{autotypenumbers:t.autotypenumbers})}(e,r.data),\"-\"===e.type?e.type=\"linear\":v=t.type=e.type),g(\"smoothing\"),g(\"cheatertype\"),g(\"showticklabels\"),g(\"labelprefix\",h+\" = \"),g(\"labelsuffix\"),g(\"showtickprefix\"),g(\"showticksuffix\"),g(\"separatethousands\"),g(\"tickformat\"),g(\"exponentformat\"),g(\"minexponent\"),g(\"showexponent\"),g(\"categoryorder\"),g(\"tickmode\"),g(\"tickvals\"),g(\"ticktext\"),g(\"tick0\"),g(\"dtick\"),\"array\"===e.tickmode&&(g(\"arraytick0\"),g(\"arraydtick\")),g(\"labelpadding\"),e._hovertitle=h,\"date\"===v)&&a.getComponentMethod(\"calendars\",\"handleDefaults\")(t,e,\"calendar\",r.calendar);u(e,r.fullLayout),e.c2p=o.identity;var y=g(\"color\",r.dfltColor),x=y===t.color?y:p.color;g(\"title.text\")&&(o.coerceFont(g,\"title.font\",{family:p.family,size:Math.round(1.2*p.size),color:x}),g(\"title.offset\")),g(\"tickangle\"),g(\"autorange\",!e.isValidRange(t.range))&&g(\"rangemode\"),g(\"range\"),e.cleanRange(),g(\"fixedrange\"),s(t,e,g,v),l(t,e,g,v,r),c(t,e,g,{data:r.data,dataAttr:h});var b=m(\"gridcolor\",i(y,.3)),_=m(\"gridwidth\"),w=g(\"showgrid\");w||(delete e.gridcolor,delete e.gridwidth);var T=m(\"startlinecolor\",y),k=m(\"startlinewidth\",_);g(\"startline\",e.showgrid||!!T||!!k)||(delete e.startlinecolor,delete e.startlinewidth);var M=m(\"endlinecolor\",y),A=m(\"endlinewidth\",_);return g(\"endline\",e.showgrid||!!M||!!A)||(delete e.endlinecolor,delete e.endlinewidth),w?(g(\"minorgridcount\"),g(\"minorgridwidth\",_),g(\"minorgridcolor\",i(b,.06)),e.minorgridcount||(delete e.minorgridwidth,delete e.minorgridcolor)):(delete e.gridcolor,delete e.gridWidth),\"none\"===e.showticklabels&&(delete e.tickfont,delete e.tickangle,delete e.showexponent,delete e.exponentformat,delete e.minexponent,delete e.tickformat,delete e.showticksuffix,delete e.showtickprefix),e.showticksuffix||delete e.ticksuffix,e.showtickprefix||delete e.tickprefix,g(\"tickmode\"),e}},{\"../../components/color\":643,\"../../lib\":778,\"../../plots/cartesian/axis_autotype\":829,\"../../plots/cartesian/category_order_defaults\":832,\"../../plots/cartesian/set_convert\":848,\"../../plots/cartesian/tick_label_defaults\":849,\"../../plots/cartesian/tick_value_defaults\":851,\"../../registry\":911,\"./attributes\":964}],968:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib\").isArray1D,a=t(\"./cheater_basis\"),o=t(\"./array_minmax\"),s=t(\"./calc_gridlines\"),l=t(\"./calc_labels\"),c=t(\"./calc_clippath\"),u=t(\"../heatmap/clean_2d_array\"),f=t(\"./smooth_fill_2d_array\"),h=t(\"../heatmap/convert_column_xyz\"),p=t(\"./set_convert\");e.exports=function(t,e){var r=n.getFromId(t,e.xaxis),d=n.getFromId(t,e.yaxis),g=e.aaxis,m=e.baxis,v=e.x,y=e.y,x=[];v&&i(v)&&x.push(\"x\"),y&&i(y)&&x.push(\"y\"),x.length&&h(e,g,m,\"a\",\"b\",x);var b=e._a=e._a||e.a,_=e._b=e._b||e.b;v=e._x||e.x,y=e._y||e.y;var w={};if(e._cheater){var T=\"index\"===g.cheatertype?b.length:b,k=\"index\"===m.cheatertype?_.length:_;v=a(T,k,e.cheaterslope)}e._x=v=u(v),e._y=y=u(y),f(v,b,_),f(y,b,_),p(e),e.setScale();var M=o(v),A=o(y),S=.5*(M[1]-M[0]),E=.5*(M[1]+M[0]),C=.5*(A[1]-A[0]),L=.5*(A[1]+A[0]);return M=[E-1.3*S,E+1.3*S],A=[L-1.3*C,L+1.3*C],e._extremes[r._id]=n.findExtremes(r,M,{padded:!0}),e._extremes[d._id]=n.findExtremes(d,A,{padded:!0}),s(e,\"a\",\"b\"),s(e,\"b\",\"a\"),l(e,g),l(e,m),w.clipsegments=c(e._xctrl,e._yctrl,g,m),w.x=v,w.y=y,w.a=b,w.b=_,[w]}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"../heatmap/clean_2d_array\":1067,\"../heatmap/convert_column_xyz\":1069,\"./array_minmax\":963,\"./calc_clippath\":969,\"./calc_gridlines\":970,\"./calc_labels\":971,\"./cheater_basis\":973,\"./set_convert\":986,\"./smooth_fill_2d_array\":987}],969:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var i,a,o,s=[],l=!!r.smoothing,c=!!n.smoothing,u=t[0].length-1,f=t.length-1;for(i=0,a=[],o=[];i<=u;i++)a[i]=t[0][i],o[i]=e[0][i];for(s.push({x:a,y:o,bicubic:l}),i=0,a=[],o=[];i<=f;i++)a[i]=t[i][u],o[i]=e[i][u];for(s.push({x:a,y:o,bicubic:c}),i=u,a=[],o=[];i>=0;i--)a[u-i]=t[f][i],o[u-i]=e[f][i];for(s.push({x:a,y:o,bicubic:l}),i=f,a=[],o=[];i>=0;i--)a[f-i]=t[i][0],o[f-i]=e[i][0];return s.push({x:a,y:o,bicubic:c}),s}},{}],970:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib/extend\").extendFlat;e.exports=function(t,e,r){var a,o,s,l,c,u,f,h,p,d,g,m,v,y,x=t[\"_\"+e],b=t[e+\"axis\"],_=b._gridlines=[],w=b._minorgridlines=[],T=b._boundarylines=[],k=t[\"_\"+r],M=t[r+\"axis\"];\"array\"===b.tickmode&&(b.tickvals=x.slice());var A=t._xctrl,S=t._yctrl,E=A[0].length,C=A.length,L=t._a.length,I=t._b.length;n.prepTicks(b),\"array\"===b.tickmode&&delete b.tickvals;var P=b.smoothing?3:1;function z(n){var i,a,o,s,l,c,u,f,p,d,g,m,v=[],y=[],x={};if(\"b\"===e)for(a=t.b2j(n),o=Math.floor(Math.max(0,Math.min(I-2,a))),s=a-o,x.length=I,x.crossLength=L,x.xy=function(e){return t.evalxy([],e,a)},x.dxy=function(e,r){return t.dxydi([],e,o,r,s)},i=0;i<L;i++)c=Math.min(L-2,i),u=i-c,f=t.evalxy([],i,a),M.smoothing&&i>0&&(p=t.dxydi([],i-1,o,0,s),v.push(l[0]+p[0]/3),y.push(l[1]+p[1]/3),d=t.dxydi([],i-1,o,1,s),v.push(f[0]-d[0]/3),y.push(f[1]-d[1]/3)),v.push(f[0]),y.push(f[1]),l=f;else for(i=t.a2i(n),c=Math.floor(Math.max(0,Math.min(L-2,i))),u=i-c,x.length=L,x.crossLength=I,x.xy=function(e){return t.evalxy([],i,e)},x.dxy=function(e,r){return t.dxydj([],c,e,u,r)},a=0;a<I;a++)o=Math.min(I-2,a),s=a-o,f=t.evalxy([],i,a),M.smoothing&&a>0&&(g=t.dxydj([],c,a-1,u,0),v.push(l[0]+g[0]/3),y.push(l[1]+g[1]/3),m=t.dxydj([],c,a-1,u,1),v.push(f[0]-m[0]/3),y.push(f[1]-m[1]/3)),v.push(f[0]),y.push(f[1]),l=f;return x.axisLetter=e,x.axis=b,x.crossAxis=M,x.value=n,x.constvar=r,x.index=h,x.x=v,x.y=y,x.smoothing=M.smoothing,x}function O(n){var i,a,o,s,l,c=[],u=[],f={};if(f.length=x.length,f.crossLength=k.length,\"b\"===e)for(o=Math.max(0,Math.min(I-2,n)),l=Math.min(1,Math.max(0,n-o)),f.xy=function(e){return t.evalxy([],e,n)},f.dxy=function(e,r){return t.dxydi([],e,o,r,l)},i=0;i<E;i++)c[i]=A[n*P][i],u[i]=S[n*P][i];else for(a=Math.max(0,Math.min(L-2,n)),s=Math.min(1,Math.max(0,n-a)),f.xy=function(e){return t.evalxy([],n,e)},f.dxy=function(e,r){return t.dxydj([],a,e,s,r)},i=0;i<C;i++)c[i]=A[i][n*P],u[i]=S[i][n*P];return f.axisLetter=e,f.axis=b,f.crossAxis=M,f.value=x[n],f.constvar=r,f.index=n,f.x=c,f.y=u,f.smoothing=M.smoothing,f}if(\"array\"===b.tickmode){for(l=5e-15,u=(c=[Math.floor((x.length-1-b.arraytick0)/b.arraydtick*(1+l)),Math.ceil(-b.arraytick0/b.arraydtick/(1+l))].sort((function(t,e){return t-e})))[0]-1,f=c[1]+1,h=u;h<f;h++)(o=b.arraytick0+b.arraydtick*h)<0||o>x.length-1||_.push(i(O(o),{color:b.gridcolor,width:b.gridwidth}));for(h=u;h<f;h++)if(s=b.arraytick0+b.arraydtick*h,g=Math.min(s+b.arraydtick,x.length-1),!(s<0||s>x.length-1||g<0||g>x.length-1))for(m=x[s],v=x[g],a=0;a<b.minorgridcount;a++)(y=g-s)<=0||(d=m+(v-m)*(a+1)/(b.minorgridcount+1)*(b.arraydtick/y))<x[0]||d>x[x.length-1]||w.push(i(z(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&T.push(i(O(0),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&T.push(i(O(x.length-1),{color:b.endlinecolor,width:b.endlinewidth}))}else{for(l=5e-15,u=(c=[Math.floor((x[x.length-1]-b.tick0)/b.dtick*(1+l)),Math.ceil((x[0]-b.tick0)/b.dtick/(1+l))].sort((function(t,e){return t-e})))[0],f=c[1],h=u;h<=f;h++)p=b.tick0+b.dtick*h,_.push(i(z(p),{color:b.gridcolor,width:b.gridwidth}));for(h=u-1;h<f+1;h++)for(p=b.tick0+b.dtick*h,a=0;a<b.minorgridcount;a++)(d=p+b.dtick*(a+1)/(b.minorgridcount+1))<x[0]||d>x[x.length-1]||w.push(i(z(d),{color:b.minorgridcolor,width:b.minorgridwidth}));b.startline&&T.push(i(z(x[0]),{color:b.startlinecolor,width:b.startlinewidth})),b.endline&&T.push(i(z(x[x.length-1]),{color:b.endlinecolor,width:b.endlinewidth}))}}},{\"../../lib/extend\":768,\"../../plots/cartesian/axes\":828}],971:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib/extend\").extendFlat;e.exports=function(t,e){var r,a,o,s=e._labels=[],l=e._gridlines;for(r=0;r<l.length;r++)o=l[r],-1!==[\"start\",\"both\"].indexOf(e.showticklabels)&&(a=n.tickText(e,o.value),i(a,{prefix:void 0,suffix:void 0,endAnchor:!0,xy:o.xy(0),dxy:o.dxy(0,0),axis:o.axis,length:o.crossAxis.length,font:o.axis.tickfont,isFirst:0===r,isLast:r===l.length-1}),s.push(a)),-1!==[\"end\",\"both\"].indexOf(e.showticklabels)&&(a=n.tickText(e,o.value),i(a,{endAnchor:!1,xy:o.xy(o.crossLength-1),dxy:o.dxy(o.crossLength-2,1),axis:o.axis,length:o.crossAxis.length,font:o.axis.tickfont,isFirst:0===r,isLast:r===l.length-1}),s.push(a))}},{\"../../lib/extend\":768,\"../../plots/cartesian/axes\":828}],972:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var i=t[0]-e[0],a=t[1]-e[1],o=r[0]-e[0],s=r[1]-e[1],l=Math.pow(i*i+a*a,.25),c=Math.pow(o*o+s*s,.25),u=(c*c*i-l*l*o)*n,f=(c*c*a-l*l*s)*n,h=c*(l+c)*3,p=l*(l+c)*3;return[[e[0]+(h&&u/h),e[1]+(h&&f/h)],[e[0]-(p&&u/p),e[1]-(p&&f/p)]]}},{}],973:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r){var i,a,o,s,l,c,u=[],f=n(t)?t.length:t,h=n(e)?e.length:e,p=n(t)?t:null,d=n(e)?e:null;p&&(o=(p.length-1)/(p[p.length-1]-p[0])/(f-1)),d&&(s=(d.length-1)/(d[d.length-1]-d[0])/(h-1));var g=1/0,m=-1/0;for(a=0;a<h;a++)for(u[a]=[],l=d?(d[a]-d[0])*s:a/(h-1),i=0;i<f;i++)c=(p?(p[i]-p[0])*o:i/(f-1))-l*r,g=Math.min(c,g),m=Math.max(c,m),u[a][i]=c;var v=1/(m-g),y=-g*v;for(a=0;a<h;a++)for(i=0;i<f;i++)u[a][i]=v*u[a][i]+y;return u}},{\"../../lib\":778}],974:[function(t,e,r){\"use strict\";var n=t(\"./catmull_rom\"),i=t(\"../../lib\").ensureArray;function a(t,e,r){var n=-.5*r[0]+1.5*e[0],i=-.5*r[1]+1.5*e[1];return[(2*n+t[0])/3,(2*i+t[1])/3]}e.exports=function(t,e,r,o,s,l){var c,u,f,h,p,d,g,m,v,y,x=r[0].length,b=r.length,_=s?3*x-2:x,w=l?3*b-2:b;for(t=i(t,w),e=i(e,w),f=0;f<w;f++)t[f]=i(t[f],_),e[f]=i(e[f],_);for(u=0,h=0;u<b;u++,h+=l?3:1)for(p=t[h],d=e[h],g=r[u],m=o[u],c=0,f=0;c<x;c++,f+=s?3:1)p[f]=g[c],d[f]=m[c];if(s)for(u=0,h=0;u<b;u++,h+=l?3:1){for(c=1,f=3;c<x-1;c++,f+=3)v=n([r[u][c-1],o[u][c-1]],[r[u][c],o[u][c]],[r[u][c+1],o[u][c+1]],s),t[h][f-1]=v[0][0],e[h][f-1]=v[0][1],t[h][f+1]=v[1][0],e[h][f+1]=v[1][1];y=a([t[h][0],e[h][0]],[t[h][2],e[h][2]],[t[h][3],e[h][3]]),t[h][1]=y[0],e[h][1]=y[1],y=a([t[h][_-1],e[h][_-1]],[t[h][_-3],e[h][_-3]],[t[h][_-4],e[h][_-4]]),t[h][_-2]=y[0],e[h][_-2]=y[1]}if(l)for(f=0;f<_;f++){for(h=3;h<w-3;h+=3)v=n([t[h-3][f],e[h-3][f]],[t[h][f],e[h][f]],[t[h+3][f],e[h+3][f]],l),t[h-1][f]=v[0][0],e[h-1][f]=v[0][1],t[h+1][f]=v[1][0],e[h+1][f]=v[1][1];y=a([t[0][f],e[0][f]],[t[2][f],e[2][f]],[t[3][f],e[3][f]]),t[1][f]=y[0],e[1][f]=y[1],y=a([t[w-1][f],e[w-1][f]],[t[w-3][f],e[w-3][f]],[t[w-4][f],e[w-4][f]]),t[w-2][f]=y[0],e[w-2][f]=y[1]}if(s&&l)for(h=1;h<w;h+=(h+1)%3==0?2:1){for(f=3;f<_-3;f+=3)v=n([t[h][f-3],e[h][f-3]],[t[h][f],e[h][f]],[t[h][f+3],e[h][f+3]],s),t[h][f-1]=.5*(t[h][f-1]+v[0][0]),e[h][f-1]=.5*(e[h][f-1]+v[0][1]),t[h][f+1]=.5*(t[h][f+1]+v[1][0]),e[h][f+1]=.5*(e[h][f+1]+v[1][1]);y=a([t[h][0],e[h][0]],[t[h][2],e[h][2]],[t[h][3],e[h][3]]),t[h][1]=.5*(t[h][1]+y[0]),e[h][1]=.5*(e[h][1]+y[1]),y=a([t[h][_-1],e[h][_-1]],[t[h][_-3],e[h][_-3]],[t[h][_-4],e[h][_-4]]),t[h][_-2]=.5*(t[h][_-2]+y[0]),e[h][_-2]=.5*(e[h][_-2]+y[1])}return[t,e]}},{\"../../lib\":778,\"./catmull_rom\":972}],975:[function(t,e,r){\"use strict\";e.exports={RELATIVE_CULL_TOLERANCE:1e-6}},{}],976:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){return e&&r?function(e,r,n,i,a){var o,s,l,c,u,f;e||(e=[]),r*=3,n*=3;var h=i*i,p=1-i,d=p*p,g=p*i*2,m=-3*d,v=3*(d-g),y=3*(g-h),x=3*h,b=a*a,_=b*a,w=1-a,T=w*w,k=T*w;for(f=0;f<t.length;f++)o=m*(u=t[f])[n][r]+v*u[n][r+1]+y*u[n][r+2]+x*u[n][r+3],s=m*u[n+1][r]+v*u[n+1][r+1]+y*u[n+1][r+2]+x*u[n+1][r+3],l=m*u[n+2][r]+v*u[n+2][r+1]+y*u[n+2][r+2]+x*u[n+2][r+3],c=m*u[n+3][r]+v*u[n+3][r+1]+y*u[n+3][r+2]+x*u[n+3][r+3],e[f]=k*o+3*(T*a*s+w*b*l)+_*c;return e}:e?function(e,r,n,i,a){var o,s,l,c;e||(e=[]),r*=3;var u=i*i,f=1-i,h=f*f,p=f*i*2,d=-3*h,g=3*(h-p),m=3*(p-u),v=3*u,y=1-a;for(l=0;l<t.length;l++)o=d*(c=t[l])[n][r]+g*c[n][r+1]+m*c[n][r+2]+v*c[n][r+3],s=d*c[n+1][r]+g*c[n+1][r+1]+m*c[n+1][r+2]+v*c[n+1][r+3],e[l]=y*o+a*s;return e}:r?function(e,r,n,i,a){var o,s,l,c,u,f;e||(e=[]),n*=3;var h=a*a,p=h*a,d=1-a,g=d*d,m=g*d;for(u=0;u<t.length;u++)o=(f=t[u])[n][r+1]-f[n][r],s=f[n+1][r+1]-f[n+1][r],l=f[n+2][r+1]-f[n+2][r],c=f[n+3][r+1]-f[n+3][r],e[u]=m*o+3*(g*a*s+d*h*l)+p*c;return e}:function(e,r,n,i,a){var o,s,l,c;e||(e=[]);var u=1-a;for(l=0;l<t.length;l++)o=(c=t[l])[n][r+1]-c[n][r],s=c[n+1][r+1]-c[n+1][r],e[l]=u*o+a*s;return e}}},{}],977:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){return e&&r?function(e,r,n,i,a){var o,s,l,c,u,f;e||(e=[]),r*=3,n*=3;var h=i*i,p=h*i,d=1-i,g=d*d,m=g*d,v=a*a,y=1-a,x=y*y,b=y*a*2,_=-3*x,w=3*(x-b),T=3*(b-v),k=3*v;for(f=0;f<t.length;f++)o=_*(u=t[f])[n][r]+w*u[n+1][r]+T*u[n+2][r]+k*u[n+3][r],s=_*u[n][r+1]+w*u[n+1][r+1]+T*u[n+2][r+1]+k*u[n+3][r+1],l=_*u[n][r+2]+w*u[n+1][r+2]+T*u[n+2][r+2]+k*u[n+3][r+2],c=_*u[n][r+3]+w*u[n+1][r+3]+T*u[n+2][r+3]+k*u[n+3][r+3],e[f]=m*o+3*(g*i*s+d*h*l)+p*c;return e}:e?function(e,r,n,i,a){var o,s,l,c,u,f;e||(e=[]),r*=3;var h=a*a,p=h*a,d=1-a,g=d*d,m=g*d;for(u=0;u<t.length;u++)o=(f=t[u])[n+1][r]-f[n][r],s=f[n+1][r+1]-f[n][r+1],l=f[n+1][r+2]-f[n][r+2],c=f[n+1][r+3]-f[n][r+3],e[u]=m*o+3*(g*a*s+d*h*l)+p*c;return e}:r?function(e,r,n,i,a){var o,s,l,c;e||(e=[]),n*=3;var u=1-i,f=a*a,h=1-a,p=h*h,d=h*a*2,g=-3*p,m=3*(p-d),v=3*(d-f),y=3*f;for(l=0;l<t.length;l++)o=g*(c=t[l])[n][r]+m*c[n+1][r]+v*c[n+2][r]+y*c[n+3][r],s=g*c[n][r+1]+m*c[n+1][r+1]+v*c[n+2][r+1]+y*c[n+3][r+1],e[l]=u*o+i*s;return e}:function(e,r,n,i,a){var o,s,l,c;e||(e=[]);var u=1-i;for(l=0;l<t.length;l++)o=(c=t[l])[n+1][r]-c[n][r],s=c[n+1][r+1]-c[n][r+1],e[l]=u*o+i*s;return e}}},{}],978:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i){var a=e-2,o=r-2;return n&&i?function(e,r,n){var i,s,l,c,u,f;e||(e=[]);var h=Math.max(0,Math.min(Math.floor(r),a)),p=Math.max(0,Math.min(Math.floor(n),o)),d=Math.max(0,Math.min(1,r-h)),g=Math.max(0,Math.min(1,n-p));h*=3,p*=3;var m=d*d,v=m*d,y=1-d,x=y*y,b=x*y,_=g*g,w=_*g,T=1-g,k=T*T,M=k*T;for(f=0;f<t.length;f++)i=b*(u=t[f])[p][h]+3*(x*d*u[p][h+1]+y*m*u[p][h+2])+v*u[p][h+3],s=b*u[p+1][h]+3*(x*d*u[p+1][h+1]+y*m*u[p+1][h+2])+v*u[p+1][h+3],l=b*u[p+2][h]+3*(x*d*u[p+2][h+1]+y*m*u[p+2][h+2])+v*u[p+2][h+3],c=b*u[p+3][h]+3*(x*d*u[p+3][h+1]+y*m*u[p+3][h+2])+v*u[p+3][h+3],e[f]=M*i+3*(k*g*s+T*_*l)+w*c;return e}:n?function(e,r,n){e||(e=[]);var i,s,l,c,u,f,h=Math.max(0,Math.min(Math.floor(r),a)),p=Math.max(0,Math.min(Math.floor(n),o)),d=Math.max(0,Math.min(1,r-h)),g=Math.max(0,Math.min(1,n-p));h*=3;var m=d*d,v=m*d,y=1-d,x=y*y,b=x*y,_=1-g;for(u=0;u<t.length;u++)i=_*(f=t[u])[p][h]+g*f[p+1][h],s=_*f[p][h+1]+g*f[p+1][h+1],l=_*f[p][h+2]+g*f[p+1][h+1],c=_*f[p][h+3]+g*f[p+1][h+1],e[u]=b*i+3*(x*d*s+y*m*l)+v*c;return e}:i?function(e,r,n){e||(e=[]);var i,s,l,c,u,f,h=Math.max(0,Math.min(Math.floor(r),a)),p=Math.max(0,Math.min(Math.floor(n),o)),d=Math.max(0,Math.min(1,r-h)),g=Math.max(0,Math.min(1,n-p));p*=3;var m=g*g,v=m*g,y=1-g,x=y*y,b=x*y,_=1-d;for(u=0;u<t.length;u++)i=_*(f=t[u])[p][h]+d*f[p][h+1],s=_*f[p+1][h]+d*f[p+1][h+1],l=_*f[p+2][h]+d*f[p+2][h+1],c=_*f[p+3][h]+d*f[p+3][h+1],e[u]=b*i+3*(x*g*s+y*m*l)+v*c;return e}:function(e,r,n){e||(e=[]);var i,s,l,c,u=Math.max(0,Math.min(Math.floor(r),a)),f=Math.max(0,Math.min(Math.floor(n),o)),h=Math.max(0,Math.min(1,r-u)),p=Math.max(0,Math.min(1,n-f)),d=1-p,g=1-h;for(l=0;l<t.length;l++)i=g*(c=t[l])[f][u]+h*c[f][u+1],s=g*c[f+1][u]+h*c[f+1][u+1],e[l]=d*i+p*s;return e}}},{}],979:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./xy_defaults\"),a=t(\"./ab_defaults\"),o=t(\"./attributes\"),s=t(\"../../components/color/attributes\");e.exports=function(t,e,r,l){function c(r,i){return n.coerce(t,e,o,r,i)}e._clipPathId=\"clip\"+e.uid+\"carpet\";var u=c(\"color\",s.defaultLine);(n.coerceFont(c,\"font\"),c(\"carpet\"),a(t,e,l,c,u),e.a&&e.b)?(e.a.length<3&&(e.aaxis.smoothing=0),e.b.length<3&&(e.baxis.smoothing=0),i(t,e,c)||(e.visible=!1),e._cheater&&c(\"cheaterslope\")):e.visible=!1}},{\"../../components/color/attributes\":642,\"../../lib\":778,\"./ab_defaults\":962,\"./attributes\":964,\"./xy_defaults\":988}],980:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),plot:t(\"./plot\"),calc:t(\"./calc\"),animatable:!0,isContainer:!0,moduleType:\"trace\",name:\"carpet\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"carpet\",\"carpetAxis\",\"notLegendIsolatable\",\"noMultiCategory\",\"noHover\",\"noSortingByValue\"],meta:{}}},{\"../../plots/cartesian\":841,\"./attributes\":964,\"./calc\":968,\"./defaults\":979,\"./plot\":985}],981:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r,n=t._fullData.length,i=0;i<n;i++){var a=t._fullData[i];if(a.index!==e.index&&(\"carpet\"===a.type&&(r||(r=a),a.carpet===e.carpet)))return a}return r}},{}],982:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){if(0===t.length)return\"\";var n,i=[],a=r?3:1;for(n=0;n<t.length;n+=a)i.push(t[n]+\",\"+e[n]),r&&n<t.length-a&&(i.push(\"C\"),i.push([t[n+1]+\",\"+e[n+1],t[n+2]+\",\"+e[n+2]+\" \"].join(\" \")));return i.join(r?\"\":\"L\")}},{}],983:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r){var i;for(n(t)?t.length>e.length&&(t=t.slice(0,e.length)):t=[],i=0;i<e.length;i++)t[i]=r(e[i]);return t}},{\"../../lib\":778}],984:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i,a){var o=i[0]*t.dpdx(e),s=i[1]*t.dpdy(r),l=1,c=1;if(a){var u=Math.sqrt(i[0]*i[0]+i[1]*i[1]),f=Math.sqrt(a[0]*a[0]+a[1]*a[1]),h=(i[0]*a[0]+i[1]*a[1])/u/f;c=Math.max(0,h)}var p=180*Math.atan2(s,o)/Math.PI;return p<-90?(p+=180,l=-l):p>90&&(p-=180,l=-l),{angle:p,flip:l,p:t.c2p(n,e,r),offsetMultplier:c}}},{}],985:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/drawing\"),a=t(\"./map_1d_array\"),o=t(\"./makepath\"),s=t(\"./orient_text\"),l=t(\"../../lib/svg_text_utils\"),c=t(\"../../lib\"),u=c.strRotate,f=c.strTranslate,h=t(\"../../constants/alignment\");function p(t,e,r,i,s,l){var c=\"const-\"+s+\"-lines\",u=r.selectAll(\".\"+c).data(l);u.enter().append(\"path\").classed(c,!0).style(\"vector-effect\",\"non-scaling-stroke\"),u.each((function(r){var i=r,s=i.x,l=i.y,c=a([],s,t.c2p),u=a([],l,e.c2p),f=\"M\"+o(c,u,i.smoothing);n.select(this).attr(\"d\",f).style(\"stroke-width\",i.width).style(\"stroke\",i.color).style(\"fill\",\"none\")})),u.exit().remove()}function d(t,e,r,a,o,c,h,p){var d=c.selectAll(\"text.\"+p).data(h);d.enter().append(\"text\").classed(p,!0);var g=0,m={};return d.each((function(o,c){var h;if(\"auto\"===o.axis.tickangle)h=s(a,e,r,o.xy,o.dxy);else{var p=(o.axis.tickangle+180)*Math.PI/180;h=s(a,e,r,o.xy,[Math.cos(p),Math.sin(p)])}c||(m={angle:h.angle,flip:h.flip});var d=(o.endAnchor?-1:1)*h.flip,v=n.select(this).attr({\"text-anchor\":d>0?\"start\":\"end\",\"data-notex\":1}).call(i.font,o.font).text(o.text).call(l.convertToTspans,t),y=i.bBox(this);v.attr(\"transform\",f(h.p[0],h.p[1])+u(h.angle)+f(o.axis.labelpadding*d,.3*y.height)),g=Math.max(g,y.width+o.axis.labelpadding)})),d.exit().remove(),m.maxExtent=g,m}e.exports=function(t,e,r,i){var l=e.xaxis,u=e.yaxis,f=t._fullLayout._clips;c.makeTraceGroups(i,r,\"trace\").each((function(e){var r=n.select(this),i=e[0],h=i.trace,g=h.aaxis,m=h.baxis,y=c.ensureSingle(r,\"g\",\"minorlayer\"),x=c.ensureSingle(r,\"g\",\"majorlayer\"),b=c.ensureSingle(r,\"g\",\"boundarylayer\"),_=c.ensureSingle(r,\"g\",\"labellayer\");r.style(\"opacity\",h.opacity),p(l,u,x,g,\"a\",g._gridlines),p(l,u,x,m,\"b\",m._gridlines),p(l,u,y,g,\"a\",g._minorgridlines),p(l,u,y,m,\"b\",m._minorgridlines),p(l,u,b,g,\"a-boundary\",g._boundarylines),p(l,u,b,m,\"b-boundary\",m._boundarylines);var w=d(t,l,u,h,i,_,g._labels,\"a-label\"),T=d(t,l,u,h,i,_,m._labels,\"b-label\");!function(t,e,r,n,i,a,o,l){var u,f,h,p,d=c.aggNums(Math.min,null,r.a),g=c.aggNums(Math.max,null,r.a),m=c.aggNums(Math.min,null,r.b),y=c.aggNums(Math.max,null,r.b);u=.5*(d+g),f=m,h=r.ab2xy(u,f,!0),p=r.dxyda_rough(u,f),void 0===o.angle&&c.extendFlat(o,s(r,i,a,h,r.dxydb_rough(u,f)));v(t,e,r,n,h,p,r.aaxis,i,a,o,\"a-title\"),u=d,f=.5*(m+y),h=r.ab2xy(u,f,!0),p=r.dxydb_rough(u,f),void 0===l.angle&&c.extendFlat(l,s(r,i,a,h,r.dxyda_rough(u,f)));v(t,e,r,n,h,p,r.baxis,i,a,l,\"b-title\")}(t,_,h,i,l,u,w,T),function(t,e,r,n,i){var s,l,u,f,h=r.select(\"#\"+t._clipPathId);h.size()||(h=r.append(\"clipPath\").classed(\"carpetclip\",!0));var p=c.ensureSingle(h,\"path\",\"carpetboundary\"),d=e.clipsegments,g=[];for(f=0;f<d.length;f++)s=d[f],l=a([],s.x,n.c2p),u=a([],s.y,i.c2p),g.push(o(l,u,s.bicubic));var m=\"M\"+g.join(\"L\")+\"Z\";h.attr(\"id\",t._clipPathId),p.attr(\"d\",m)}(h,i,f,l,u)}))};var g=h.LINE_SPACING,m=(1-h.MID_SHIFT)/g+1;function v(t,e,r,a,o,c,h,p,d,v,y){var x=[];h.title.text&&x.push(h.title.text);var b=e.selectAll(\"text.\"+y).data(x),_=v.maxExtent;b.enter().append(\"text\").classed(y,!0),b.each((function(){var e=s(r,p,d,o,c);-1===[\"start\",\"both\"].indexOf(h.showticklabels)&&(_=0);var a=h.title.font.size;_+=a+h.title.offset;var y=(v.angle+(v.flip<0?180:0)-e.angle+450)%360,x=y>90&&y<270,b=n.select(this);b.text(h.title.text).call(l.convertToTspans,t),x&&(_=(-l.lineCount(b)+m)*g*a-_),b.attr(\"transform\",f(e.p[0],e.p[1])+u(e.angle)+f(0,_)).attr(\"text-anchor\",\"middle\").call(i.font,h.title.font)})),b.exit().remove()}},{\"../../components/drawing\":665,\"../../constants/alignment\":745,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"./makepath\":982,\"./map_1d_array\":983,\"./orient_text\":984,d3:169}],986:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),i=t(\"../../lib/search\").findBin,a=t(\"./compute_control_points\"),o=t(\"./create_spline_evaluator\"),s=t(\"./create_i_derivative_evaluator\"),l=t(\"./create_j_derivative_evaluator\");e.exports=function(t){var e=t._a,r=t._b,c=e.length,u=r.length,f=t.aaxis,h=t.baxis,p=e[0],d=e[c-1],g=r[0],m=r[u-1],v=e[e.length-1]-e[0],y=r[r.length-1]-r[0],x=v*n.RELATIVE_CULL_TOLERANCE,b=y*n.RELATIVE_CULL_TOLERANCE;p-=x,d+=x,g-=b,m+=b,t.isVisible=function(t,e){return t>p&&t<d&&e>g&&e<m},t.isOccluded=function(t,e){return t<p||t>d||e<g||e>m},t.setScale=function(){var e=t._x,r=t._y,n=a(t._xctrl,t._yctrl,e,r,f.smoothing,h.smoothing);t._xctrl=n[0],t._yctrl=n[1],t.evalxy=o([t._xctrl,t._yctrl],c,u,f.smoothing,h.smoothing),t.dxydi=s([t._xctrl,t._yctrl],f.smoothing,h.smoothing),t.dxydj=l([t._xctrl,t._yctrl],f.smoothing,h.smoothing)},t.i2a=function(t){var r=Math.max(0,Math.floor(t[0]),c-2),n=t[0]-r;return(1-n)*e[r]+n*e[r+1]},t.j2b=function(t){var e=Math.max(0,Math.floor(t[1]),c-2),n=t[1]-e;return(1-n)*r[e]+n*r[e+1]},t.ij2ab=function(e){return[t.i2a(e[0]),t.j2b(e[1])]},t.a2i=function(t){var r=Math.max(0,Math.min(i(t,e),c-2)),n=e[r],a=e[r+1];return Math.max(0,Math.min(c-1,r+(t-n)/(a-n)))},t.b2j=function(t){var e=Math.max(0,Math.min(i(t,r),u-2)),n=r[e],a=r[e+1];return Math.max(0,Math.min(u-1,e+(t-n)/(a-n)))},t.ab2ij=function(e){return[t.a2i(e[0]),t.b2j(e[1])]},t.i2c=function(e,r){return t.evalxy([],e,r)},t.ab2xy=function(n,i,a){if(!a&&(n<e[0]||n>e[c-1]|i<r[0]||i>r[u-1]))return[!1,!1];var o=t.a2i(n),s=t.b2j(i),l=t.evalxy([],o,s);if(a){var f,h,p,d,g=0,m=0,v=[];n<e[0]?(f=0,h=0,g=(n-e[0])/(e[1]-e[0])):n>e[c-1]?(f=c-2,h=1,g=(n-e[c-1])/(e[c-1]-e[c-2])):h=o-(f=Math.max(0,Math.min(c-2,Math.floor(o)))),i<r[0]?(p=0,d=0,m=(i-r[0])/(r[1]-r[0])):i>r[u-1]?(p=u-2,d=1,m=(i-r[u-1])/(r[u-1]-r[u-2])):d=s-(p=Math.max(0,Math.min(u-2,Math.floor(s)))),g&&(t.dxydi(v,f,p,h,d),l[0]+=v[0]*g,l[1]+=v[1]*g),m&&(t.dxydj(v,f,p,h,d),l[0]+=v[0]*m,l[1]+=v[1]*m)}return l},t.c2p=function(t,e,r){return[e.c2p(t[0]),r.c2p(t[1])]},t.p2x=function(t,e,r){return[e.p2c(t[0]),r.p2c(t[1])]},t.dadi=function(t){var r=Math.max(0,Math.min(e.length-2,t));return e[r+1]-e[r]},t.dbdj=function(t){var e=Math.max(0,Math.min(r.length-2,t));return r[e+1]-r[e]},t.dxyda=function(e,r,n,i){var a=t.dxydi(null,e,r,n,i),o=t.dadi(e,n);return[a[0]/o,a[1]/o]},t.dxydb=function(e,r,n,i){var a=t.dxydj(null,e,r,n,i),o=t.dbdj(r,i);return[a[0]/o,a[1]/o]},t.dxyda_rough=function(e,r,n){var i=v*(n||.1),a=t.ab2xy(e+i,r,!0),o=t.ab2xy(e-i,r,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},t.dxydb_rough=function(e,r,n){var i=y*(n||.1),a=t.ab2xy(e,r+i,!0),o=t.ab2xy(e,r-i,!0);return[.5*(a[0]-o[0])/i,.5*(a[1]-o[1])/i]},t.dpdx=function(t){return t._m},t.dpdy=function(t){return t._m}}},{\"../../lib/search\":798,\"./compute_control_points\":974,\"./constants\":975,\"./create_i_derivative_evaluator\":976,\"./create_j_derivative_evaluator\":977,\"./create_spline_evaluator\":978}],987:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r){var i,a,o,s=[],l=[],c=t[0].length,u=t.length;function f(e,r){var n,i=0,a=0;return e>0&&void 0!==(n=t[r][e-1])&&(a++,i+=n),e<c-1&&void 0!==(n=t[r][e+1])&&(a++,i+=n),r>0&&void 0!==(n=t[r-1][e])&&(a++,i+=n),r<u-1&&void 0!==(n=t[r+1][e])&&(a++,i+=n),i/Math.max(1,a)}var h,p,d,g,m,v,y,x,b,_,w,T=0;for(i=0;i<c;i++)for(a=0;a<u;a++)void 0===t[a][i]&&(s.push(i),l.push(a),t[a][i]=f(i,a)),T=Math.max(T,Math.abs(t[a][i]));if(!s.length)return t;var k=0,M=0,A=s.length;do{for(k=0,o=0;o<A;o++){i=s[o],a=l[o];var S,E,C,L,I,P,z=0,O=0;0===i?(C=e[I=Math.min(c-1,2)],L=e[1],S=t[a][I],O+=(E=t[a][1])+(E-S)*(e[0]-L)/(L-C),z++):i===c-1&&(C=e[I=Math.max(0,c-3)],L=e[c-2],S=t[a][I],O+=(E=t[a][c-2])+(E-S)*(e[c-1]-L)/(L-C),z++),(0===i||i===c-1)&&a>0&&a<u-1&&(h=r[a+1]-r[a],O+=((p=r[a]-r[a-1])*t[a+1][i]+h*t[a-1][i])/(p+h),z++),0===a?(C=r[P=Math.min(u-1,2)],L=r[1],S=t[P][i],O+=(E=t[1][i])+(E-S)*(r[0]-L)/(L-C),z++):a===u-1&&(C=r[P=Math.max(0,u-3)],L=r[u-2],S=t[P][i],O+=(E=t[u-2][i])+(E-S)*(r[u-1]-L)/(L-C),z++),(0===a||a===u-1)&&i>0&&i<c-1&&(h=e[i+1]-e[i],O+=((p=e[i]-e[i-1])*t[a][i+1]+h*t[a][i-1])/(p+h),z++),z?O/=z:(d=e[i+1]-e[i],g=e[i]-e[i-1],x=(m=r[a+1]-r[a])*(v=r[a]-r[a-1])*(m+v),O=((y=d*g*(d+g))*(v*t[a+1][i]+m*t[a-1][i])+x*(g*t[a][i+1]+d*t[a][i-1]))/(x*(g+d)+y*(v+m))),k+=(_=(b=O-t[a][i])/T)*_,w=z?0:.85,t[a][i]+=b*(1+w)}k=Math.sqrt(k)}while(M++<100&&k>1e-5);return n.log(\"Smoother converged to\",k,\"after\",M,\"iterations\"),t}},{\"../../lib\":778}],988:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArray1D;e.exports=function(t,e,r){var i=r(\"x\"),a=i&&i.length,o=r(\"y\"),s=o&&o.length;if(!a&&!s)return!1;if(e._cheater=!i,a&&!n(i)||s&&!n(o))e._length=null;else{var l=a?i.length:1/0;s&&(l=Math.min(l,o.length)),e.a&&e.a.length&&(l=Math.min(l,e.a.length)),e.b&&e.b.length&&(l=Math.min(l,e.b.length)),e._length=l}return!0}},{\"../../lib\":778}],989:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../scattergeo/attributes\"),a=t(\"../../components/colorscale/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../components/color/attributes\").defaultLine,l=t(\"../../lib/extend\").extendFlat,c=i.marker.line;e.exports=l({locations:{valType:\"data_array\",editType:\"calc\"},locationmode:i.locationmode,z:{valType:\"data_array\",editType:\"calc\"},geojson:l({},i.geojson,{}),featureidkey:i.featureidkey,text:l({},i.text,{}),hovertext:l({},i.hovertext,{}),marker:{line:{color:l({},c.color,{dflt:s}),width:l({},c.width,{dflt:1}),editType:\"calc\"},opacity:{valType:\"number\",arrayOk:!0,min:0,max:1,dflt:1,editType:\"style\"},editType:\"calc\"},selected:{marker:{opacity:i.selected.marker.opacity,editType:\"plot\"},editType:\"plot\"},unselected:{marker:{opacity:i.unselected.marker.opacity,editType:\"plot\"},editType:\"plot\"},hoverinfo:l({},o.hoverinfo,{editType:\"calc\",flags:[\"location\",\"z\",\"text\",\"name\"]}),hovertemplate:n(),showlegend:l({},o.showlegend,{dflt:!1})},a(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/color/attributes\":642,\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../scattergeo/attributes\":1229}],990:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../constants/numerical\").BADNUM,a=t(\"../../components/colorscale/calc\"),o=t(\"../scatter/arrays_to_calcdata\"),s=t(\"../scatter/calc_selection\");function l(t){return t&&\"string\"==typeof t}e.exports=function(t,e){var r,c=e._length,u=new Array(c);r=e.geojson?function(t){return l(t)||n(t)}:l;for(var f=0;f<c;f++){var h=u[f]={},p=e.locations[f],d=e.z[f];r(p)&&n(d)?(h.loc=p,h.z=d):(h.loc=null,h.z=i),h.index=f}return o(u,e),a(t,e,{vals:e.z,containerStr:\"\",cLetter:\"z\"}),s(u,e),u}},{\"../../components/colorscale/calc\":651,\"../../constants/numerical\":753,\"../scatter/arrays_to_calcdata\":1186,\"../scatter/calc_selection\":1189,\"fast-isnumeric\":241}],991:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/colorscale/defaults\"),a=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}var l=s(\"locations\"),c=s(\"z\");if(l&&l.length&&n.isArrayOrTypedArray(c)&&c.length){e._length=Math.min(l.length,c.length);var u,f=s(\"geojson\");(\"string\"==typeof f&&\"\"!==f||n.isPlainObject(f))&&(u=\"geojson-id\"),\"geojson-id\"===s(\"locationmode\",u)&&s(\"featureidkey\"),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),s(\"marker.line.width\")&&s(\"marker.line.color\"),s(\"marker.opacity\"),i(t,e,o,s,{prefix:\"\",cLetter:\"z\"}),n.coerceSelectionMarkerOpacity(e,s)}else e.visible=!1}},{\"../../components/colorscale/defaults\":653,\"../../lib\":778,\"./attributes\":989}],992:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i){t.location=e.location,t.z=e.z;var a=n[i];return a.fIn&&a.fIn.properties&&(t.properties=a.fIn.properties),t.ct=a.ct,t}},{}],993:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"./attributes\"),a=t(\"../../lib\").fillText;e.exports=function(t,e,r){var o,s,l,c,u=t.cd,f=u[0].trace,h=t.subplot,p=[e,r],d=[e+360,r];for(s=0;s<u.length;s++)if(c=!1,(o=u[s])._polygons){for(l=0;l<o._polygons.length;l++)o._polygons[l].contains(p)&&(c=!c),o._polygons[l].contains(d)&&(c=!c);if(c)break}if(c&&o)return t.x0=t.x1=t.xa.c2p(o.ct),t.y0=t.y1=t.ya.c2p(o.ct),t.index=o.index,t.location=o.loc,t.z=o.z,t.zLabel=n.tickText(h.mockAxis,h.mockAxis.c2l(o.z),\"hover\").text,t.hovertemplate=o.hovertemplate,function(t,e,r){if(e.hovertemplate)return;var n=r.hi||e.hoverinfo,o=String(r.loc),s=\"all\"===n?i.hoverinfo.flags:n.split(\"+\"),l=-1!==s.indexOf(\"name\"),c=-1!==s.indexOf(\"location\"),u=-1!==s.indexOf(\"z\"),f=-1!==s.indexOf(\"text\"),h=[];!l&&c?t.nameOverride=o:(l&&(t.nameOverride=e.name),c&&h.push(o));u&&h.push(t.zLabel);f&&a(r,e,h);t.extraText=h.join(\"<br>\")}(t,f,o),[t]}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"./attributes\":989}],994:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"./calc\"),calcGeoJSON:t(\"./plot\").calcGeoJSON,plot:t(\"./plot\").plot,style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"choropleth\",basePlotModule:t(\"../../plots/geo\"),categories:[\"geo\",\"noOpacity\",\"showLegend\"],meta:{}}},{\"../../plots/geo\":860,\"../heatmap/colorbar\":1068,\"./attributes\":989,\"./calc\":990,\"./defaults\":991,\"./event_data\":992,\"./hover\":993,\"./plot\":995,\"./select\":996,\"./style\":997}],995:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../../lib/geo_location_utils\"),o=t(\"../../lib/topojson_utils\").getTopojsonFeatures,s=t(\"../../plots/cartesian/autorange\").findExtremes,l=t(\"./style\").style;e.exports={calcGeoJSON:function(t,e){for(var r=t[0].trace,n=e[r.geo],i=n._subplot,l=r.locationmode,c=r._length,u=\"geojson-id\"===l?a.extractTraceFeature(t):o(r,i.topojson),f=[],h=[],p=0;p<c;p++){var d=t[p],g=\"geojson-id\"===l?d.fOut:a.locationToFeature(l,d.loc,u);if(g){d.geojson=g,d.ct=g.properties.ct,d._polygons=a.feature2polygons(g);var m=a.computeBbox(g);f.push(m[0],m[2]),h.push(m[1],m[3])}else d.geojson=null}if(\"geojson\"===n.fitbounds&&\"geojson-id\"===l){var v=a.computeBbox(a.getTraceGeojson(r));f=[v[0],v[2]],h=[v[1],v[3]]}var y={padded:!0};r._extremes.lon=s(n.lonaxis._ax,f,y),r._extremes.lat=s(n.lataxis._ax,h,y)},plot:function(t,e,r){var a=e.layers.backplot.select(\".choroplethlayer\");i.makeTraceGroups(a,r,\"trace choropleth\").each((function(e){var r=n.select(this).selectAll(\"path.choroplethlocation\").data(i.identity);r.enter().append(\"path\").classed(\"choroplethlocation\",!0),r.exit().remove(),l(t,e)}))}}},{\"../../lib\":778,\"../../lib/geo_location_utils\":771,\"../../lib/topojson_utils\":806,\"../../plots/cartesian/autorange\":827,\"./style\":997,d3:169}],996:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n,i,a,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[];if(!1===e)for(r=0;r<s.length;r++)s[r].selected=0;else for(r=0;r<s.length;r++)(i=(n=s[r]).ct)&&(a=l.c2p(i),o=c.c2p(i),e.contains([a,o],null,r,t)?(u.push({pointNumber:r,lon:i[0],lat:i[1]}),n.selected=1):n.selected=0);return u}},{}],997:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/color\"),a=t(\"../../components/drawing\"),o=t(\"../../components/colorscale\");function s(t,e){var r=e[0].trace,s=e[0].node3.selectAll(\".choroplethlocation\"),l=r.marker||{},c=l.line||{},u=o.makeColorScaleFuncFromTrace(r);s.each((function(t){n.select(this).attr(\"fill\",u(t.z)).call(i.stroke,t.mlc||c.color).call(a.dashLine,\"\",t.mlw||c.width||0).style(\"opacity\",l.opacity)})),a.selectedPointStyle(s,r,t)}e.exports={style:function(t,e){e&&s(t,e)},styleOnSelect:function(t,e){var r=e[0].node3,n=e[0].trace;n.selectedpoints?a.selectedPointStyle(r.selectAll(\".choroplethlocation\"),n,t):s(t,e)}}},{\"../../components/color\":643,\"../../components/colorscale\":655,\"../../components/drawing\":665,d3:169}],998:[function(t,e,r){\"use strict\";var n=t(\"../choropleth/attributes\"),i=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat;e.exports=s({locations:{valType:\"data_array\",editType:\"calc\"},z:{valType:\"data_array\",editType:\"calc\"},geojson:{valType:\"any\",editType:\"calc\"},featureidkey:s({},n.featureidkey,{}),below:{valType:\"string\",editType:\"plot\"},text:n.text,hovertext:n.hovertext,marker:{line:{color:s({},n.marker.line.color,{editType:\"plot\"}),width:s({},n.marker.line.width,{editType:\"plot\"}),editType:\"calc\"},opacity:s({},n.marker.opacity,{editType:\"plot\"}),editType:\"calc\"},selected:{marker:{opacity:s({},n.selected.marker.opacity,{editType:\"plot\"}),editType:\"plot\"},editType:\"plot\"},unselected:{marker:{opacity:s({},n.unselected.marker.opacity,{editType:\"plot\"}),editType:\"plot\"},editType:\"plot\"},hoverinfo:n.hoverinfo,hovertemplate:a({},{keys:[\"properties\"]}),showlegend:s({},o.showlegend,{dflt:!1})},i(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../choropleth/attributes\":989}],999:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../../components/colorscale\"),o=t(\"../../components/drawing\"),s=t(\"../../lib/geojson_utils\").makeBlank,l=t(\"../../lib/geo_location_utils\");function c(t){var e,r=t[0].trace,n=r._opts;if(r.selectedpoints){for(var a=o.makeSelectedPointStyleFns(r),s=0;s<t.length;s++){var l=t[s];l.fOut&&(l.fOut.properties.mo2=a.selectedOpacityFn(l))}e={type:\"identity\",property:\"mo2\"}}else e=i.isArrayOrTypedArray(r.marker.opacity)?{type:\"identity\",property:\"mo\"}:r.marker.opacity;return i.extendFlat(n.fill.paint,{\"fill-opacity\":e}),i.extendFlat(n.line.paint,{\"line-opacity\":e}),n}e.exports={convert:function(t){var e=t[0].trace,r=!0===e.visible&&0!==e._length,o={layout:{visibility:\"none\"},paint:{}},u={layout:{visibility:\"none\"},paint:{}},f=e._opts={fill:o,line:u,geojson:s()};if(!r)return f;var h=l.extractTraceFeature(t);if(!h)return f;var p,d,g,m=a.makeColorScaleFuncFromTrace(e),v=e.marker,y=v.line||{};i.isArrayOrTypedArray(v.opacity)&&(p=function(t){var e=t.mo;return n(e)?+i.constrain(e,0,1):0}),i.isArrayOrTypedArray(y.color)&&(d=function(t){return t.mlc}),i.isArrayOrTypedArray(y.width)&&(g=function(t){return t.mlw});for(var x=0;x<t.length;x++){var b=t[x],_=b.fOut;if(_){var w=_.properties;w.fc=m(b.z),p&&(w.mo=p(b)),d&&(w.mlc=d(b)),g&&(w.mlw=g(b)),b.ct=w.ct,b._polygons=l.feature2polygons(_)}}var T=p?{type:\"identity\",property:\"mo\"}:v.opacity;return i.extendFlat(o.paint,{\"fill-color\":{type:\"identity\",property:\"fc\"},\"fill-opacity\":T}),i.extendFlat(u.paint,{\"line-color\":d?{type:\"identity\",property:\"mlc\"}:y.color,\"line-width\":g?{type:\"identity\",property:\"mlw\"}:y.width,\"line-opacity\":T}),o.layout.visibility=\"visible\",u.layout.visibility=\"visible\",f.geojson={type:\"FeatureCollection\",features:h},c(t),f},convertOnSelect:c}},{\"../../components/colorscale\":655,\"../../components/drawing\":665,\"../../lib\":778,\"../../lib/geo_location_utils\":771,\"../../lib/geojson_utils\":772,\"fast-isnumeric\":241}],1e3:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/colorscale/defaults\"),a=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}var l=s(\"locations\"),c=s(\"z\"),u=s(\"geojson\");n.isArrayOrTypedArray(l)&&l.length&&n.isArrayOrTypedArray(c)&&c.length&&(\"string\"==typeof u&&\"\"!==u||n.isPlainObject(u))?(s(\"featureidkey\"),e._length=Math.min(l.length,c.length),s(\"below\"),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),s(\"marker.line.width\")&&s(\"marker.line.color\"),s(\"marker.opacity\"),i(t,e,o,s,{prefix:\"\",cLetter:\"z\"}),n.coerceSelectionMarkerOpacity(e,s)):e.visible=!1}},{\"../../components/colorscale/defaults\":653,\"../../lib\":778,\"./attributes\":998}],1001:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"../choropleth/calc\"),plot:t(\"./plot\"),hoverPoints:t(\"../choropleth/hover\"),eventData:t(\"../choropleth/event_data\"),selectPoints:t(\"../choropleth/select\"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.updateOnSelect(e)},getBelow:function(t,e){for(var r=e.getMapLayers(),n=r.length-2;n>=0;n--){var i=r[n].id;if(\"string\"==typeof i&&0===i.indexOf(\"water\"))for(var a=n+1;a<r.length;a++)if(\"string\"==typeof(i=r[a].id)&&-1===i.indexOf(\"plotly-\"))return i}},moduleType:\"trace\",name:\"choroplethmapbox\",basePlotModule:t(\"../../plots/mapbox\"),categories:[\"mapbox\",\"gl\",\"noOpacity\",\"showLegend\"],meta:{hr_name:\"choropleth_mapbox\"}}},{\"../../plots/mapbox\":885,\"../choropleth/calc\":990,\"../choropleth/event_data\":992,\"../choropleth/hover\":993,\"../choropleth/select\":996,\"../heatmap/colorbar\":1068,\"./attributes\":998,\"./defaults\":1e3,\"./plot\":1002}],1002:[function(t,e,r){\"use strict\";var n=t(\"./convert\").convert,i=t(\"./convert\").convertOnSelect,a=t(\"../../plots/mapbox/constants\").traceLayerPrefix;function o(t,e){this.type=\"choroplethmapbox\",this.subplot=t,this.uid=e,this.sourceId=\"source-\"+e,this.layerList=[[\"fill\",a+e+\"-fill\"],[\"line\",a+e+\"-line\"]],this.below=null}var s=o.prototype;s.update=function(t){this._update(n(t))},s.updateOnSelect=function(t){this._update(i(t))},s._update=function(t){var e=this.subplot,r=this.layerList,n=e.belowLookup[\"trace-\"+this.uid];e.map.getSource(this.sourceId).setData(t.geojson),n!==this.below&&(this._removeLayers(),this._addLayers(t,n),this.below=n);for(var i=0;i<r.length;i++){var a=r[i],o=a[0],s=a[1],l=t[o];e.setOptions(s,\"setLayoutProperty\",l.layout),\"visible\"===l.layout.visibility&&e.setOptions(s,\"setPaintProperty\",l.paint)}},s._addLayers=function(t,e){for(var r=this.subplot,n=this.layerList,i=this.sourceId,a=0;a<n.length;a++){var o=n[a],s=o[0],l=t[s];r.addLayer({type:s,id:o[1],source:i,layout:l.layout,paint:l.paint},e)}},s._removeLayers=function(){for(var t=this.subplot.map,e=this.layerList,r=e.length-1;r>=0;r--)t.removeLayer(e[r][1])},s.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,i=new o(t,r.uid),a=i.sourceId,s=n(e),l=i.below=t.belowLookup[\"trace-\"+r.uid];return t.map.addSource(a,{type:\"geojson\",data:s.geojson}),i._addLayers(s,l),e[0].trace._glTrace=i,i}},{\"../../plots/mapbox/constants\":883,\"./convert\":999}],1003:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../mesh3d/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},z:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},u:{valType:\"data_array\",editType:\"calc\"},v:{valType:\"data_array\",editType:\"calc\"},w:{valType:\"data_array\",editType:\"calc\"},sizemode:{valType:\"enumerated\",values:[\"scaled\",\"absolute\"],editType:\"calc\",dflt:\"scaled\"},sizeref:{valType:\"number\",editType:\"calc\",min:0},anchor:{valType:\"enumerated\",editType:\"calc\",values:[\"tip\",\"tail\",\"cm\",\"center\"],dflt:\"cm\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertemplate:i({editType:\"calc\"},{keys:[\"norm\"]}),showlegend:s({},o.showlegend,{dflt:!1})};s(l,n(\"\",{colorAttr:\"u/v/w norm\",showScaleDflt:!0,editTypeOverride:\"calc\"}));[\"opacity\",\"lightposition\",\"lighting\"].forEach((function(t){l[t]=a[t]})),l.hoverinfo=s({},o.hoverinfo,{editType:\"calc\",flags:[\"x\",\"y\",\"z\",\"u\",\"v\",\"w\",\"norm\",\"text\",\"name\"],dflt:\"x+y+z+norm+text+name\"}),l.transforms=void 0,e.exports=l},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../mesh3d/attributes\":1128}],1004:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){for(var r=e.u,i=e.v,a=e.w,o=Math.min(e.x.length,e.y.length,e.z.length,r.length,i.length,a.length),s=-1/0,l=1/0,c=0;c<o;c++){var u=r[c],f=i[c],h=a[c],p=Math.sqrt(u*u+f*f+h*h);s=Math.max(s,p),l=Math.min(l,p)}e._len=o,e._normMax=s,n(t,e,{vals:[l,s],containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":651}],1005:[function(t,e,r){\"use strict\";var n=t(\"gl-cone3d\"),i=t(\"gl-cone3d\").createConeMesh,a=t(\"../../lib\").simpleMap,o=t(\"../../lib/gl_format_color\").parseColorScale,s=t(\"../../components/colorscale\").extractOpts,l=t(\"../../plots/gl3d/zip3\");function c(t,e){this.scene=t,this.uid=e,this.mesh=null,this.data=null}var u=c.prototype;u.handlePick=function(t){if(t.object===this.mesh){var e=t.index=t.data.index,r=this.data.x[e],n=this.data.y[e],i=this.data.z[e],a=this.data.u[e],o=this.data.v[e],s=this.data.w[e];t.traceCoordinate=[r,n,i,a,o,s,Math.sqrt(a*a+o*o+s*s)];var l=this.data.hovertext||this.data.text;return Array.isArray(l)&&void 0!==l[e]?t.textLabel=l[e]:l&&(t.textLabel=l),!0}};var f={xaxis:0,yaxis:1,zaxis:2},h={tip:1,tail:0,cm:.25,center:.5},p={tip:1,tail:1,cm:.75,center:.5};function d(t,e){var r=t.fullSceneLayout,i=t.dataScale,c={};function u(t,e){var n=r[e],o=i[f[e]];return a(t,(function(t){return n.d2l(t)*o}))}c.vectors=l(u(e.u,\"xaxis\"),u(e.v,\"yaxis\"),u(e.w,\"zaxis\"),e._len),c.positions=l(u(e.x,\"xaxis\"),u(e.y,\"yaxis\"),u(e.z,\"zaxis\"),e._len);var d=s(e);c.colormap=o(e),c.vertexIntensityBounds=[d.min/e._normMax,d.max/e._normMax],c.coneOffset=h[e.anchor],\"scaled\"===e.sizemode?c.coneSize=e.sizeref||.5:c.coneSize=e.sizeref&&e._normMax?e.sizeref/e._normMax:.5;var g=n(c),m=e.lightposition;return g.lightPosition=[m.x,m.y,m.z],g.ambient=e.lighting.ambient,g.diffuse=e.lighting.diffuse,g.specular=e.lighting.specular,g.roughness=e.lighting.roughness,g.fresnel=e.lighting.fresnel,g.opacity=e.opacity,e._pad=p[e.anchor]*g.vectorScale*g.coneScale*e._normMax,g}u.update=function(t){this.data=t;var e=d(this.scene,t);this.mesh.update(e)},u.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,n=d(t,e),a=i(r,n),o=new c(t,e.uid);return o.mesh=a,o.data=e,a._trace=o,t.glplot.add(a),o}},{\"../../components/colorscale\":655,\"../../lib\":778,\"../../lib/gl_format_color\":774,\"../../plots/gl3d/zip3\":881,\"gl-cone3d\":260}],1006:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/colorscale/defaults\"),a=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}var l=s(\"u\"),c=s(\"v\"),u=s(\"w\"),f=s(\"x\"),h=s(\"y\"),p=s(\"z\");l&&l.length&&c&&c.length&&u&&u.length&&f&&f.length&&h&&h.length&&p&&p.length?(s(\"sizeref\"),s(\"sizemode\"),s(\"anchor\"),s(\"lighting.ambient\"),s(\"lighting.diffuse\"),s(\"lighting.specular\"),s(\"lighting.roughness\"),s(\"lighting.fresnel\"),s(\"lightposition.x\"),s(\"lightposition.y\"),s(\"lightposition.z\"),i(t,e,o,s,{prefix:\"\",cLetter:\"c\"}),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),e._length=null):e.visible=!1}},{\"../../components/colorscale/defaults\":653,\"../../lib\":778,\"./attributes\":1003}],1007:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"cone\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"showLegend\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:{min:\"cmin\",max:\"cmax\"},calc:t(\"./calc\"),plot:t(\"./convert\"),eventData:function(t,e){return t.norm=e.traceCoordinate[6],t},meta:{}}},{\"../../plots/gl3d\":870,\"./attributes\":1003,\"./calc\":1004,\"./convert\":1005,\"./defaults\":1006}],1008:[function(t,e,r){\"use strict\";var n=t(\"../heatmap/attributes\"),i=t(\"../scatter/attributes\"),a=t(\"../../components/colorscale/attributes\"),o=t(\"../../components/drawing/attributes\").dash,s=t(\"../../plots/font_attributes\"),l=t(\"../../lib/extend\").extendFlat,c=t(\"../../constants/filter_ops\"),u=c.COMPARISON_OPS2,f=c.INTERVAL_OPS,h=(t(\"../../constants/docs\").FORMAT_LINK,i.line);e.exports=l({z:n.z,x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,xperiod:n.xperiod,yperiod:n.yperiod,xperiod0:i.xperiod0,yperiod0:i.yperiod0,xperiodalignment:n.xperiodalignment,yperiodalignment:n.yperiodalignment,text:n.text,hovertext:n.hovertext,transpose:n.transpose,xtype:n.xtype,ytype:n.ytype,zhoverformat:n.zhoverformat,hovertemplate:n.hovertemplate,hoverongaps:n.hoverongaps,connectgaps:l({},n.connectgaps,{}),fillcolor:{valType:\"color\",editType:\"calc\"},autocontour:{valType:\"boolean\",dflt:!0,editType:\"calc\",impliedEdits:{\"contours.start\":void 0,\"contours.end\":void 0,\"contours.size\":void 0}},ncontours:{valType:\"integer\",dflt:15,min:1,editType:\"calc\"},contours:{type:{valType:\"enumerated\",values:[\"levels\",\"constraint\"],dflt:\"levels\",editType:\"calc\"},start:{valType:\"number\",dflt:null,editType:\"plot\",impliedEdits:{\"^autocontour\":!1}},end:{valType:\"number\",dflt:null,editType:\"plot\",impliedEdits:{\"^autocontour\":!1}},size:{valType:\"number\",dflt:null,min:0,editType:\"plot\",impliedEdits:{\"^autocontour\":!1}},coloring:{valType:\"enumerated\",values:[\"fill\",\"heatmap\",\"lines\",\"none\"],dflt:\"fill\",editType:\"calc\"},showlines:{valType:\"boolean\",dflt:!0,editType:\"plot\"},showlabels:{valType:\"boolean\",dflt:!1,editType:\"plot\"},labelfont:s({editType:\"plot\",colorEditType:\"style\"}),labelformat:{valType:\"string\",dflt:\"\",editType:\"plot\"},operation:{valType:\"enumerated\",values:[].concat(u).concat(f),dflt:\"=\",editType:\"calc\"},value:{valType:\"any\",dflt:0,editType:\"calc\"},editType:\"calc\",impliedEdits:{autocontour:!1}},line:{color:l({},h.color,{editType:\"style+colorbars\"}),width:{valType:\"number\",min:0,editType:\"style+colorbars\"},dash:o,smoothing:l({},h.smoothing,{}),editType:\"plot\"}},a(\"\",{cLetter:\"z\",autoColorDflt:!1,editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":650,\"../../components/drawing/attributes\":664,\"../../constants/docs\":748,\"../../constants/filter_ops\":749,\"../../lib/extend\":768,\"../../plots/font_attributes\":856,\"../heatmap/attributes\":1065,\"../scatter/attributes\":1187}],1009:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale\"),i=t(\"../heatmap/calc\"),a=t(\"./set_contours\"),o=t(\"./end_plus\");e.exports=function(t,e){var r=i(t,e),s=r[0].z;a(e,s);var l,c=e.contours,u=n.extractOpts(e);if(\"heatmap\"===c.coloring&&u.auto&&!1===e.autocontour){var f=c.start,h=o(c),p=c.size||1,d=Math.floor((h-f)/p)+1;isFinite(p)||(p=1,d=1);var g=f-p/2;l=[g,g+d*p]}else l=s;return n.calc(t,e,{vals:l,cLetter:\"z\"}),r}},{\"../../components/colorscale\":655,\"../heatmap/calc\":1066,\"./end_plus\":1019,\"./set_contours\":1027}],1010:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n=t[0],i=n.z;switch(e.type){case\"levels\":var a=Math.min(i[0][0],i[0][1]);for(r=0;r<t.length;r++){var o=t[r];o.prefixBoundary=!o.edgepaths.length&&(a>o.level||o.starts.length&&a===o.level)}break;case\"constraint\":if(n.prefixBoundary=!1,n.edgepaths.length)return;var s=n.x.length,l=n.y.length,c=-1/0,u=1/0;for(r=0;r<l;r++)u=Math.min(u,i[r][0]),u=Math.min(u,i[r][s-1]),c=Math.max(c,i[r][0]),c=Math.max(c,i[r][s-1]);for(r=1;r<s-1;r++)u=Math.min(u,i[0][r]),u=Math.min(u,i[l-1][r]),c=Math.max(c,i[0][r]),c=Math.max(c,i[l-1][r]);var f,h,p=e.value;switch(e._operation){case\">\":p>c&&(n.prefixBoundary=!0);break;case\"<\":(p<u||n.starts.length&&p===u)&&(n.prefixBoundary=!0);break;case\"[]\":f=Math.min(p[0],p[1]),((h=Math.max(p[0],p[1]))<u||f>c||n.starts.length&&h===u)&&(n.prefixBoundary=!0);break;case\"][\":f=Math.min(p[0],p[1]),h=Math.max(p[0],p[1]),f<u&&h>c&&(n.prefixBoundary=!0)}}}},{}],1011:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale\"),i=t(\"./make_color_map\"),a=t(\"./end_plus\");e.exports={min:\"zmin\",max:\"zmax\",calc:function(t,e,r){var o=e.contours,s=e.line,l=o.size||1,c=o.coloring,u=i(e,{isColorbar:!0});if(\"heatmap\"===c){var f=n.extractOpts(e);r._fillgradient=f.reversescale?n.flipScale(f.colorscale):f.colorscale,r._zrange=[f.min,f.max]}else\"fill\"===c&&(r._fillcolor=u);r._line={color:\"lines\"===c?u:s.color,width:!1!==o.showlines?s.width:0,dash:s.dash},r._levels={start:o.start,end:a(o),size:l}}}},{\"../../components/colorscale\":655,\"./end_plus\":1019,\"./make_color_map\":1024}],1012:[function(t,e,r){\"use strict\";e.exports={BOTTOMSTART:[1,9,13,104,713],TOPSTART:[4,6,7,104,713],LEFTSTART:[8,12,14,208,1114],RIGHTSTART:[2,3,11,208,1114],NEWDELTA:[null,[-1,0],[0,-1],[-1,0],[1,0],null,[0,-1],[-1,0],[0,1],[0,1],null,[0,1],[1,0],[1,0],[0,-1]],CHOOSESADDLE:{104:[4,1],208:[2,8],713:[7,13],1114:[11,14]},SADDLEREMAINDER:{1:4,2:8,4:1,7:13,8:2,11:14,13:7,14:11},LABELDISTANCE:2,LABELINCREASE:10,LABELMIN:3,LABELMAX:10,LABELOPTIMIZER:{EDGECOST:1,ANGLECOST:1,NEIGHBORCOST:5,SAMELEVELFACTOR:10,SAMELEVELDISTANCE:5,MAXCOST:100,INITIALSEARCHPOINTS:10,ITERATIONS:5}}},{}],1013:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"./label_defaults\"),a=t(\"../../components/color\"),o=a.addOpacity,s=a.opacity,l=t(\"../../constants/filter_ops\"),c=l.CONSTRAINT_REDUCTION,u=l.COMPARISON_OPS2;e.exports=function(t,e,r,a,l,f){var h,p,d,g=e.contours,m=r(\"contours.operation\");(g._operation=c[m],function(t,e){var r;-1===u.indexOf(e.operation)?(t(\"contours.value\",[0,1]),Array.isArray(e.value)?e.value.length>2?e.value=e.value.slice(2):0===e.length?e.value=[0,1]:e.length<2?(r=parseFloat(e.value[0]),e.value=[r,r+1]):e.value=[parseFloat(e.value[0]),parseFloat(e.value[1])]:n(e.value)&&(r=parseFloat(e.value),e.value=[r,r+1])):(t(\"contours.value\",0),n(e.value)||(Array.isArray(e.value)?e.value=parseFloat(e.value[0]):e.value=0))}(r,g),\"=\"===m?h=g.showlines=!0:(h=r(\"contours.showlines\"),d=r(\"fillcolor\",o((t.line||{}).color||l,.5))),h)&&(p=r(\"line.color\",d&&s(d)?o(e.fillcolor,1):l),r(\"line.width\",2),r(\"line.dash\"));r(\"line.smoothing\"),i(r,a,p,f)}},{\"../../components/color\":643,\"../../constants/filter_ops\":749,\"./label_defaults\":1023,\"fast-isnumeric\":241}],1014:[function(t,e,r){\"use strict\";var n=t(\"../../constants/filter_ops\"),i=t(\"fast-isnumeric\");function a(t,e){var r,a=Array.isArray(e);function o(t){return i(t)?+t:null}return-1!==n.COMPARISON_OPS2.indexOf(t)?r=o(a?e[0]:e):-1!==n.INTERVAL_OPS.indexOf(t)?r=a?[o(e[0]),o(e[1])]:[o(e),o(e)]:-1!==n.SET_OPS.indexOf(t)&&(r=a?e.map(o):[o(e)]),r}function o(t){return function(e){e=a(t,e);var r=Math.min(e[0],e[1]),n=Math.max(e[0],e[1]);return{start:r,end:n,size:n-r}}}function s(t){return function(e){return{start:e=a(t,e),end:1/0,size:1/0}}}e.exports={\"[]\":o(\"[]\"),\"][\":o(\"][\"),\">\":s(\">\"),\"<\":s(\"<\"),\"=\":s(\"=\")}},{\"../../constants/filter_ops\":749,\"fast-isnumeric\":241}],1015:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var i=n(\"contours.start\"),a=n(\"contours.end\"),o=!1===i||!1===a,s=r(\"contours.size\");!(o?e.autocontour=!0:r(\"autocontour\",!1))&&s||r(\"ncontours\")}},{}],1016:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");function i(t){return n.extendFlat({},t,{edgepaths:n.extendDeep([],t.edgepaths),paths:n.extendDeep([],t.paths),starts:n.extendDeep([],t.starts)})}e.exports=function(t,e){var r,a,o,s=function(t){return t.reverse()},l=function(t){return t};switch(e){case\"=\":case\"<\":return t;case\">\":for(1!==t.length&&n.warn(\"Contour data invalid for the specified inequality operation.\"),a=t[0],r=0;r<a.edgepaths.length;r++)a.edgepaths[r]=s(a.edgepaths[r]);for(r=0;r<a.paths.length;r++)a.paths[r]=s(a.paths[r]);for(r=0;r<a.starts.length;r++)a.starts[r]=s(a.starts[r]);return t;case\"][\":var c=s;s=l,l=c;case\"[]\":for(2!==t.length&&n.warn(\"Contour data invalid for the specified inequality range operation.\"),a=i(t[0]),o=i(t[1]),r=0;r<a.edgepaths.length;r++)a.edgepaths[r]=s(a.edgepaths[r]);for(r=0;r<a.paths.length;r++)a.paths[r]=s(a.paths[r]);for(r=0;r<a.starts.length;r++)a.starts[r]=s(a.starts[r]);for(;o.edgepaths.length;)a.edgepaths.push(l(o.edgepaths.shift()));for(;o.paths.length;)a.paths.push(l(o.paths.shift()));for(;o.starts.length;)a.starts.push(l(o.starts.shift()));return[a]}}},{\"../../lib\":778}],1017:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../heatmap/xyz_defaults\"),a=t(\"../scatter/period_defaults\"),o=t(\"./constraint_defaults\"),s=t(\"./contours_defaults\"),l=t(\"./style_defaults\"),c=t(\"./attributes\");e.exports=function(t,e,r,u){function f(r,i){return n.coerce(t,e,c,r,i)}if(i(t,e,f,u)){a(t,e,u,f),f(\"text\"),f(\"hovertext\"),f(\"hovertemplate\"),f(\"hoverongaps\");var h=\"constraint\"===f(\"contours.type\");f(\"connectgaps\",n.isArray1D(e.z)),h?o(t,e,f,u,r):(s(t,e,f,(function(r){return n.coerce2(t,e,c,r)})),l(t,e,f,u))}else e.visible=!1}},{\"../../lib\":778,\"../heatmap/xyz_defaults\":1079,\"../scatter/period_defaults\":1207,\"./attributes\":1008,\"./constraint_defaults\":1013,\"./contours_defaults\":1015,\"./style_defaults\":1029}],1018:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./constraint_mapping\"),a=t(\"./end_plus\");e.exports=function(t,e,r){for(var o=\"constraint\"===t.type?i[t._operation](t.value):t,s=o.size,l=[],c=a(o),u=r.trace._carpetTrace,f=u?{xaxis:u.aaxis,yaxis:u.baxis,x:r.a,y:r.b}:{xaxis:e.xaxis,yaxis:e.yaxis,x:r.x,y:r.y},h=o.start;h<c;h+=s)if(l.push(n.extendFlat({level:h,crossings:{},starts:[],edgepaths:[],paths:[],z:r.z,smoothing:r.trace.line.smoothing},f)),l.length>1e3){n.warn(\"Too many contours, clipping at 1000\",t);break}return l}},{\"../../lib\":778,\"./constraint_mapping\":1014,\"./end_plus\":1019}],1019:[function(t,e,r){\"use strict\";e.exports=function(t){return t.end+t.size/1e6}},{}],1020:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./constants\");function a(t,e,r,n){return Math.abs(t[0]-e[0])<r&&Math.abs(t[1]-e[1])<n}function o(t,e,r,o,l){var c,u=e.join(\",\"),f=t.crossings[u],h=function(t,e,r){var n=0,a=0;t>20&&e?208===t||1114===t?n=0===r[0]?1:-1:a=0===r[1]?1:-1:-1!==i.BOTTOMSTART.indexOf(t)?a=1:-1!==i.LEFTSTART.indexOf(t)?n=1:-1!==i.TOPSTART.indexOf(t)?a=-1:n=-1;return[n,a]}(f,r,e),p=[s(t,e,[-h[0],-h[1]])],d=t.z.length,g=t.z[0].length,m=e.slice(),v=h.slice();for(c=0;c<1e4;c++){if(f>20?(f=i.CHOOSESADDLE[f][(h[0]||h[1])<0?0:1],t.crossings[u]=i.SADDLEREMAINDER[f]):delete t.crossings[u],!(h=i.NEWDELTA[f])){n.log(\"Found bad marching index:\",f,e,t.level);break}p.push(s(t,e,h)),e[0]+=h[0],e[1]+=h[1],u=e.join(\",\"),a(p[p.length-1],p[p.length-2],o,l)&&p.pop();var y=h[0]&&(e[0]<0||e[0]>g-2)||h[1]&&(e[1]<0||e[1]>d-2);if(e[0]===m[0]&&e[1]===m[1]&&h[0]===v[0]&&h[1]===v[1]||r&&y)break;f=t.crossings[u]}1e4===c&&n.log(\"Infinite loop in contour?\");var x,b,_,w,T,k,M,A,S,E,C,L,I,P,z,O=a(p[0],p[p.length-1],o,l),D=0,R=.2*t.smoothing,F=[],B=0;for(c=1;c<p.length;c++)L=p[c],I=p[c-1],P=void 0,z=void 0,P=L[2]-I[2],z=L[3]-I[3],D+=M=Math.sqrt(P*P+z*z),F.push(M);var N=D/F.length*R;function j(t){return p[t%p.length]}for(c=p.length-2;c>=B;c--)if((x=F[c])<N){for(_=0,b=c-1;b>=B&&x+F[b]<N;b--)x+=F[b];if(O&&c===p.length-2)for(_=0;_<b&&x+F[_]<N;_++)x+=F[_];T=c-b+_+1,k=Math.floor((c+b+_+2)/2),w=O||c!==p.length-2?O||-1!==b?T%2?j(k):[(j(k)[0]+j(k+1)[0])/2,(j(k)[1]+j(k+1)[1])/2]:p[0]:p[p.length-1],p.splice(b+1,c-b+1,w),c=b+1,_&&(B=_),O&&(c===p.length-2?p[_]=p[p.length-1]:0===c&&(p[p.length-1]=p[0]))}for(p.splice(0,B),c=0;c<p.length;c++)p[c].length=2;if(!(p.length<2))if(O)p.pop(),t.paths.push(p);else{r||n.log(\"Unclosed interior contour?\",t.level,m.join(\",\"),p.join(\"L\"));var U=!1;for(A=0;A<t.edgepaths.length;A++)if(E=t.edgepaths[A],!U&&a(E[0],p[p.length-1],o,l)){p.pop(),U=!0;var V=!1;for(S=0;S<t.edgepaths.length;S++)if(a((C=t.edgepaths[S])[C.length-1],p[0],o,l)){V=!0,p.shift(),t.edgepaths.splice(A,1),S===A?t.paths.push(p.concat(C)):(S>A&&S--,t.edgepaths[S]=C.concat(p,E));break}V||(t.edgepaths[A]=p.concat(E))}for(A=0;A<t.edgepaths.length&&!U;A++)a((E=t.edgepaths[A])[E.length-1],p[0],o,l)&&(p.shift(),t.edgepaths[A]=E.concat(p),U=!0);U||t.edgepaths.push(p)}}function s(t,e,r){var n=e[0]+Math.max(r[0],0),i=e[1]+Math.max(r[1],0),a=t.z[i][n],o=t.xaxis,s=t.yaxis;if(r[1]){var l=(t.level-a)/(t.z[i][n+1]-a);return[o.c2p((1-l)*t.x[n]+l*t.x[n+1],!0),s.c2p(t.y[i],!0),n+l,i]}var c=(t.level-a)/(t.z[i+1][n]-a);return[o.c2p(t.x[n],!0),s.c2p((1-c)*t.y[i]+c*t.y[i+1],!0),n,i+c]}e.exports=function(t,e,r){var i,a,s,l;for(e=e||.01,r=r||.01,a=0;a<t.length;a++){for(s=t[a],l=0;l<s.starts.length;l++)o(s,s.starts[l],\"edge\",e,r);for(i=0;Object.keys(s.crossings).length&&i<1e4;)i++,o(s,Object.keys(s.crossings)[0].split(\",\").map(Number),void 0,e,r);1e4===i&&n.log(\"Infinite loop in contour?\")}}},{\"../../lib\":778,\"./constants\":1012}],1021:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"../heatmap/hover\");e.exports=function(t,e,r,a,o){var s=i(t,e,r,a,o,!0);return s&&s.forEach((function(t){var e=t.trace;\"constraint\"===e.contours.type&&(e.fillcolor&&n.opacity(e.fillcolor)?t.color=n.addOpacity(e.fillcolor,1):e.contours.showlines&&n.opacity(e.line.color)&&(t.color=n.addOpacity(e.line.color,1)))})),s}},{\"../../components/color\":643,\"../heatmap/hover\":1072}],1022:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\").plot,style:t(\"./style\"),colorbar:t(\"./colorbar\"),hoverPoints:t(\"./hover\"),moduleType:\"trace\",name:\"contour\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"contour\",\"showLegend\"],meta:{}}},{\"../../plots/cartesian\":841,\"./attributes\":1008,\"./calc\":1009,\"./colorbar\":1011,\"./defaults\":1017,\"./hover\":1021,\"./plot\":1026,\"./style\":1028}],1023:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r,i){if(i||(i={}),t(\"contours.showlabels\")){var a=e.font;n.coerceFont(t,\"contours.labelfont\",{family:a.family,size:a.size,color:r}),t(\"contours.labelformat\")}!1!==i.hasHover&&t(\"zhoverformat\")}},{\"../../lib\":778}],1024:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/colorscale\"),a=t(\"./end_plus\");e.exports=function(t){var e=t.contours,r=e.start,o=a(e),s=e.size||1,l=Math.floor((o-r)/s)+1,c=\"lines\"===e.coloring?0:1,u=i.extractOpts(t);isFinite(s)||(s=1,l=1);var f,h,p=u.reversescale?i.flipScale(u.colorscale):u.colorscale,d=p.length,g=new Array(d),m=new Array(d);if(\"heatmap\"===e.coloring){var v=u.min,y=u.max;for(h=0;h<d;h++)f=p[h],g[h]=f[0]*(y-v)+v,m[h]=f[1];var x=n.extent([v,y,e.start,e.start+s*(l-1)]),b=x[v<y?0:1],_=x[v<y?1:0];b!==v&&(g.splice(0,0,b),m.splice(0,0,m[0])),_!==y&&(g.push(_),m.push(m[m.length-1]))}else for(h=0;h<d;h++)f=p[h],g[h]=(f[0]*(l+c-1)-c/2)*s+r,m[h]=f[1];return i.makeColorScaleFunc({domain:g,range:m},{noNumericCheck:!0})}},{\"../../components/colorscale\":655,\"./end_plus\":1019,d3:169}],1025:[function(t,e,r){\"use strict\";var n=t(\"./constants\");function i(t,e){var r=(e[0][0]>t?0:1)+(e[0][1]>t?0:2)+(e[1][1]>t?0:4)+(e[1][0]>t?0:8);return 5===r||10===r?t>(e[0][0]+e[0][1]+e[1][0]+e[1][1])/4?5===r?713:1114:5===r?104:208:15===r?0:r}e.exports=function(t){var e,r,a,o,s,l,c,u,f,h=t[0].z,p=h.length,d=h[0].length,g=2===p||2===d;for(r=0;r<p-1;r++)for(o=[],0===r&&(o=o.concat(n.BOTTOMSTART)),r===p-2&&(o=o.concat(n.TOPSTART)),e=0;e<d-1;e++)for(a=o.slice(),0===e&&(a=a.concat(n.LEFTSTART)),e===d-2&&(a=a.concat(n.RIGHTSTART)),s=e+\",\"+r,l=[[h[r][e],h[r][e+1]],[h[r+1][e],h[r+1][e+1]]],f=0;f<t.length;f++)(c=i((u=t[f]).level,l))&&(u.crossings[s]=c,-1!==a.indexOf(c)&&(u.starts.push([e,r]),g&&-1!==a.indexOf(c,a.indexOf(c)+1)&&u.starts.push([e,r])))}},{\"./constants\":1012}],1026:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../../components/drawing\"),o=t(\"../../components/colorscale\"),s=t(\"../../lib/svg_text_utils\"),l=t(\"../../plots/cartesian/axes\"),c=t(\"../../plots/cartesian/set_convert\"),u=t(\"../heatmap/plot\"),f=t(\"./make_crossings\"),h=t(\"./find_all_paths\"),p=t(\"./empty_pathinfo\"),d=t(\"./convert_to_constraints\"),g=t(\"./close_boundaries\"),m=t(\"./constants\"),v=m.LABELOPTIMIZER;function y(t,e){var r,n,o,s,l,c,u,f=\"\",h=0,p=t.edgepaths.map((function(t,e){return e})),d=!0;function g(t){return Math.abs(t[1]-e[2][1])<.01}function m(t){return Math.abs(t[0]-e[0][0])<.01}function v(t){return Math.abs(t[0]-e[2][0])<.01}for(;p.length;){for(c=a.smoothopen(t.edgepaths[h],t.smoothing),f+=d?c:c.replace(/^M/,\"L\"),p.splice(p.indexOf(h),1),r=t.edgepaths[h][t.edgepaths[h].length-1],s=-1,o=0;o<4;o++){if(!r){i.log(\"Missing end?\",h,t);break}for(u=r,Math.abs(u[1]-e[0][1])<.01&&!v(r)?n=e[1]:m(r)?n=e[0]:g(r)?n=e[3]:v(r)&&(n=e[2]),l=0;l<t.edgepaths.length;l++){var y=t.edgepaths[l][0];Math.abs(r[0]-n[0])<.01?Math.abs(r[0]-y[0])<.01&&(y[1]-r[1])*(n[1]-y[1])>=0&&(n=y,s=l):Math.abs(r[1]-n[1])<.01?Math.abs(r[1]-y[1])<.01&&(y[0]-r[0])*(n[0]-y[0])>=0&&(n=y,s=l):i.log(\"endpt to newendpt is not vert. or horz.\",r,n,y)}if(r=n,s>=0)break;f+=\"L\"+n}if(s===t.edgepaths.length){i.log(\"unclosed perimeter path\");break}h=s,(d=-1===p.indexOf(h))&&(h=p[0],f+=\"Z\")}for(h=0;h<t.paths.length;h++)f+=a.smoothclosed(t.paths[h],t.smoothing);return f}function x(t,e,r,n){var a=e.width/2,o=e.height/2,s=t.x,l=t.y,c=t.theta,u=Math.cos(c)*a,f=Math.sin(c)*a,h=(s>n.center?n.right-s:s-n.left)/(u+Math.abs(Math.sin(c)*o)),p=(l>n.middle?n.bottom-l:l-n.top)/(Math.abs(f)+Math.cos(c)*o);if(h<1||p<1)return 1/0;var d=v.EDGECOST*(1/(h-1)+1/(p-1));d+=v.ANGLECOST*c*c;for(var g=s-u,m=l-f,y=s+u,x=l+f,b=0;b<r.length;b++){var _=r[b],w=Math.cos(_.theta)*_.width/2,T=Math.sin(_.theta)*_.width/2,k=2*i.segmentDistance(g,m,y,x,_.x-w,_.y-T,_.x+w,_.y+T)/(e.height+_.height),M=_.level===e.level,A=M?v.SAMELEVELDISTANCE:1;if(k<=A)return 1/0;d+=v.NEIGHBORCOST*(M?v.SAMELEVELFACTOR:1)/(k-A)}return d}function b(t){var e,r,n=t.trace._emptypoints,i=[],a=t.z.length,o=t.z[0].length,s=[];for(e=0;e<o;e++)s.push(1);for(e=0;e<a;e++)i.push(s.slice());for(e=0;e<n.length;e++)i[(r=n[e])[0]][r[1]]=0;return t.zmask=i,i}r.plot=function(t,e,o,s){var l=e.xaxis,c=e.yaxis;i.makeTraceGroups(s,o,\"contour\").each((function(o){var s=n.select(this),v=o[0],x=v.trace,_=v.x,w=v.y,T=x.contours,k=p(T,e,v),M=i.ensureSingle(s,\"g\",\"heatmapcoloring\"),A=[];\"heatmap\"===T.coloring&&(A=[o]),u(t,e,A,M),f(k),h(k);var S=l.c2p(_[0],!0),E=l.c2p(_[_.length-1],!0),C=c.c2p(w[0],!0),L=c.c2p(w[w.length-1],!0),I=[[S,L],[E,L],[E,C],[S,C]],P=k;\"constraint\"===T.type&&(P=d(k,T._operation)),function(t,e,r){var n=i.ensureSingle(t,\"g\",\"contourbg\").selectAll(\"path\").data(\"fill\"===r.coloring?[0]:[]);n.enter().append(\"path\"),n.exit().remove(),n.attr(\"d\",\"M\"+e.join(\"L\")+\"Z\").style(\"stroke\",\"none\")}(s,I,T),function(t,e,r,a){var o=\"fill\"===a.coloring||\"constraint\"===a.type&&\"=\"!==a._operation,s=\"M\"+r.join(\"L\")+\"Z\";o&&g(e,a);var l=i.ensureSingle(t,\"g\",\"contourfill\").selectAll(\"path\").data(o?e:[]);l.enter().append(\"path\"),l.exit().remove(),l.each((function(t){var e=(t.prefixBoundary?s:\"\")+y(t,r);e?n.select(this).attr(\"d\",e).style(\"stroke\",\"none\"):n.select(this).remove()}))}(s,P,I,T),function(t,e,o,s,l){var c=i.ensureSingle(t,\"g\",\"contourlines\"),u=!1!==l.showlines,f=l.showlabels,h=u&&f,p=r.createLines(c,u||f,e),d=r.createLineClip(c,h,o,s.trace.uid),g=t.selectAll(\"g.contourlabels\").data(f?[0]:[]);if(g.exit().remove(),g.enter().append(\"g\").classed(\"contourlabels\",!0),f){var v=[],y=[];i.clearLocationCache();var x=r.labelFormatter(o,s),b=a.tester.append(\"text\").attr(\"data-notex\",1).call(a.font,l.labelfont),_=e[0].xaxis,w=e[0].yaxis,T=_._length,k=w._length,M=_.range,A=w.range,S=i.aggNums(Math.min,null,s.x),E=i.aggNums(Math.max,null,s.x),C=i.aggNums(Math.min,null,s.y),L=i.aggNums(Math.max,null,s.y),I=Math.max(_.c2p(S,!0),0),P=Math.min(_.c2p(E,!0),T),z=Math.max(w.c2p(L,!0),0),O=Math.min(w.c2p(C,!0),k),D={};M[0]<M[1]?(D.left=I,D.right=P):(D.left=P,D.right=I),A[0]<A[1]?(D.top=z,D.bottom=O):(D.top=O,D.bottom=z),D.middle=(D.top+D.bottom)/2,D.center=(D.left+D.right)/2,v.push([[D.left,D.top],[D.right,D.top],[D.right,D.bottom],[D.left,D.bottom]]);var R=Math.sqrt(T*T+k*k),F=m.LABELDISTANCE*R/Math.max(1,e.length/m.LABELINCREASE);p.each((function(t){var e=r.calcTextOpts(t.level,x,b,o);n.select(this).selectAll(\"path\").each((function(){var t=i.getVisibleSegment(this,D,e.height/2);if(t&&!(t.len<(e.width+e.height)*m.LABELMIN))for(var n=Math.min(Math.ceil(t.len/F),m.LABELMAX),a=0;a<n;a++){var o=r.findBestTextLocation(this,t,e,y,D);if(!o)break;r.addLabelData(o,e,y,v)}}))})),b.remove(),r.drawLabels(g,y,o,d,h?v:null)}f&&!u&&p.remove()}(s,k,t,v,T),function(t,e,r,n,o){var s=n.trace,l=r._fullLayout._clips,c=\"clip\"+s.uid,u=l.selectAll(\"#\"+c).data(s.connectgaps?[]:[0]);if(u.enter().append(\"clipPath\").classed(\"contourclip\",!0).attr(\"id\",c),u.exit().remove(),!1===s.connectgaps){var p={level:.9,crossings:{},starts:[],edgepaths:[],paths:[],xaxis:e.xaxis,yaxis:e.yaxis,x:n.x,y:n.y,z:b(n),smoothing:0};f([p]),h([p]),g([p],{type:\"levels\"}),i.ensureSingle(u,\"path\",\"\").attr(\"d\",(p.prefixBoundary?\"M\"+o.join(\"L\")+\"Z\":\"\")+y(p,o))}else c=null;a.setClipUrl(t,c,r)}(s,e,t,v,I)}))},r.createLines=function(t,e,r){var n=r[0].smoothing,i=t.selectAll(\"g.contourlevel\").data(e?r:[]);if(i.exit().remove(),i.enter().append(\"g\").classed(\"contourlevel\",!0),e){var o=i.selectAll(\"path.openline\").data((function(t){return t.pedgepaths||t.edgepaths}));o.exit().remove(),o.enter().append(\"path\").classed(\"openline\",!0),o.attr(\"d\",(function(t){return a.smoothopen(t,n)})).style(\"stroke-miterlimit\",1).style(\"vector-effect\",\"non-scaling-stroke\");var s=i.selectAll(\"path.closedline\").data((function(t){return t.ppaths||t.paths}));s.exit().remove(),s.enter().append(\"path\").classed(\"closedline\",!0),s.attr(\"d\",(function(t){return a.smoothclosed(t,n)})).style(\"stroke-miterlimit\",1).style(\"vector-effect\",\"non-scaling-stroke\")}return i},r.createLineClip=function(t,e,r,n){var i=e?\"clipline\"+n:null,o=r._fullLayout._clips.selectAll(\"#\"+i).data(e?[0]:[]);return o.exit().remove(),o.enter().append(\"clipPath\").classed(\"contourlineclip\",!0).attr(\"id\",i),a.setClipUrl(t,i,r),o},r.labelFormatter=function(t,e){var r=t._fullLayout,n=e.trace,i=n.contours,a={type:\"linear\",_id:\"ycontour\",showexponent:\"all\",exponentformat:\"B\"};if(i.labelformat)a.tickformat=i.labelformat,c(a,r);else{var s=o.extractOpts(n);if(s&&s.colorbar&&s.colorbar._axis)a=s.colorbar._axis;else{if(\"constraint\"===i.type){var u=i.value;Array.isArray(u)?a.range=[u[0],u[u.length-1]]:a.range=[u,u]}else a.range=[i.start,i.end],a.nticks=(i.end-i.start)/i.size;a.range[0]===a.range[1]&&(a.range[1]+=a.range[0]||1),a.nticks||(a.nticks=1e3),c(a,r),l.prepTicks(a),a._tmin=null,a._tmax=null}}return function(t){return l.tickText(a,t).text}},r.calcTextOpts=function(t,e,r,n){var i=e(t);r.text(i).call(s.convertToTspans,n);var o=r.node(),l=a.bBox(o,!0);return{text:i,width:l.width,height:l.height,fontSize:+o.style[\"font-size\"].replace(\"px\",\"\"),level:t,dy:(l.top+l.bottom)/2}},r.findBestTextLocation=function(t,e,r,n,a){var o,s,l,c,u,f=r.width;e.isClosed?(s=e.len/v.INITIALSEARCHPOINTS,o=e.min+s/2,l=e.max):(s=(e.len-f)/(v.INITIALSEARCHPOINTS+1),o=e.min+s+f/2,l=e.max-(s+f)/2);for(var h=1/0,p=0;p<v.ITERATIONS;p++){for(var d=o;d<l;d+=s){var g=i.getTextLocation(t,e.total,d,f),m=x(g,r,n,a);m<h&&(h=m,u=g,c=d)}if(h>2*v.MAXCOST)break;p&&(s/=2),l=(o=c-s/2)+1.5*s}if(h<=v.MAXCOST)return u},r.addLabelData=function(t,e,r,n){var i=e.fontSize,a=e.width+i/3,o=Math.max(0,e.height-i/3),s=t.x,l=t.y,c=t.theta,u=Math.sin(c),f=Math.cos(c),h=function(t,e){return[s+t*f-e*u,l+t*u+e*f]},p=[h(-a/2,-o/2),h(-a/2,o/2),h(a/2,o/2),h(a/2,-o/2)];r.push({text:e.text,x:s,y:l,dy:e.dy,theta:c,level:e.level,width:a,height:o}),n.push(p)},r.drawLabels=function(t,e,r,a,o){var l=t.selectAll(\"text\").data(e,(function(t){return t.text+\",\"+t.x+\",\"+t.y+\",\"+t.theta}));if(l.exit().remove(),l.enter().append(\"text\").attr({\"data-notex\":1,\"text-anchor\":\"middle\"}).each((function(t){var e=t.x+Math.sin(t.theta)*t.dy,i=t.y-Math.cos(t.theta)*t.dy;n.select(this).text(t.text).attr({x:e,y:i,transform:\"rotate(\"+180*t.theta/Math.PI+\" \"+e+\" \"+i+\")\"}).call(s.convertToTspans,r)})),o){for(var c=\"\",u=0;u<o.length;u++)c+=\"M\"+o[u].join(\"L\")+\"Z\";i.ensureSingle(a,\"path\",\"\").attr(\"d\",c)}}},{\"../../components/colorscale\":655,\"../../components/drawing\":665,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../plots/cartesian/axes\":828,\"../../plots/cartesian/set_convert\":848,\"../heatmap/plot\":1076,\"./close_boundaries\":1010,\"./constants\":1012,\"./convert_to_constraints\":1016,\"./empty_pathinfo\":1018,\"./find_all_paths\":1020,\"./make_crossings\":1025,d3:169}],1027:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib\");function a(t,e,r){var i={type:\"linear\",range:[t,e]};return n.autoTicks(i,(e-t)/(r||15)),i}e.exports=function(t,e){var r=t.contours;if(t.autocontour){var o=t.zmin,s=t.zmax;(t.zauto||void 0===o)&&(o=i.aggNums(Math.min,null,e)),(t.zauto||void 0===s)&&(s=i.aggNums(Math.max,null,e));var l=a(o,s,t.ncontours);r.size=l.dtick,r.start=n.tickFirst(l),l.range.reverse(),r.end=n.tickFirst(l),r.start===o&&(r.start+=r.size),r.end===s&&(r.end-=r.size),r.start>r.end&&(r.start=r.end=(r.start+r.end)/2),t._input.contours||(t._input.contours={}),i.extendFlat(t._input.contours,{start:r.start,end:r.end,size:r.size}),t._input.autocontour=!0}else if(\"constraint\"!==r.type){var c,u=r.start,f=r.end,h=t._input.contours;if(u>f&&(r.start=h.start=f,f=r.end=h.end=u,u=r.start),!(r.size>0))c=u===f?1:a(u,f,t.ncontours).dtick,h.size=r.size=c}}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828}],1028:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/drawing\"),a=t(\"../heatmap/style\"),o=t(\"./make_color_map\");e.exports=function(t){var e=n.select(t).selectAll(\"g.contour\");e.style(\"opacity\",(function(t){return t[0].trace.opacity})),e.each((function(t){var e=n.select(this),r=t[0].trace,a=r.contours,s=r.line,l=a.size||1,c=a.start,u=\"constraint\"===a.type,f=!u&&\"lines\"===a.coloring,h=!u&&\"fill\"===a.coloring,p=f||h?o(r):null;e.selectAll(\"g.contourlevel\").each((function(t){n.select(this).selectAll(\"path\").call(i.lineGroupStyle,s.width,f?p(t.level):s.color,s.dash)}));var d=a.labelfont;if(e.selectAll(\"g.contourlabels text\").each((function(t){i.font(n.select(this),{family:d.family,size:d.size,color:d.color||(f?p(t.level):s.color)})})),u)e.selectAll(\"g.contourfill path\").style(\"fill\",r.fillcolor);else if(h){var g;e.selectAll(\"g.contourfill path\").style(\"fill\",(function(t){return void 0===g&&(g=t.level),p(t.level+.5*l)})),void 0===g&&(g=c),e.selectAll(\"g.contourbg path\").style(\"fill\",p(g-.5*l))}})),a(t)}},{\"../../components/drawing\":665,\"../heatmap/style\":1077,\"./make_color_map\":1024,d3:169}],1029:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/defaults\"),i=t(\"./label_defaults\");e.exports=function(t,e,r,a,o){var s,l=r(\"contours.coloring\"),c=\"\";\"fill\"===l&&(s=r(\"contours.showlines\")),!1!==s&&(\"lines\"!==l&&(c=r(\"line.color\",\"#000\")),r(\"line.width\",.5),r(\"line.dash\")),\"none\"!==l&&(!0!==t.showlegend&&(e.showlegend=!1),e._dfltShowLegend=!1,n(t,e,a,r,{prefix:\"\",cLetter:\"z\"})),r(\"line.smoothing\"),i(r,a,c,o)}},{\"../../components/colorscale/defaults\":653,\"./label_defaults\":1023}],1030:[function(t,e,r){\"use strict\";var n=t(\"../heatmap/attributes\"),i=t(\"../contour/attributes\"),a=t(\"../../components/colorscale/attributes\"),o=t(\"../../lib/extend\").extendFlat,s=i.contours;e.exports=o({carpet:{valType:\"string\",editType:\"calc\"},z:n.z,a:n.x,a0:n.x0,da:n.dx,b:n.y,b0:n.y0,db:n.dy,text:n.text,hovertext:n.hovertext,transpose:n.transpose,atype:n.xtype,btype:n.ytype,fillcolor:i.fillcolor,autocontour:i.autocontour,ncontours:i.ncontours,contours:{type:s.type,start:s.start,end:s.end,size:s.size,coloring:{valType:\"enumerated\",values:[\"fill\",\"lines\",\"none\"],dflt:\"fill\",editType:\"calc\"},showlines:s.showlines,showlabels:s.showlabels,labelfont:s.labelfont,labelformat:s.labelformat,operation:s.operation,value:s.value,editType:\"calc\",impliedEdits:{autocontour:!1}},line:{color:i.line.color,width:i.line.width,dash:i.line.dash,smoothing:i.line.smoothing,editType:\"plot\"},transforms:void 0},a(\"\",{cLetter:\"z\",autoColorDflt:!1}))},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../contour/attributes\":1008,\"../heatmap/attributes\":1065}],1031:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\"),i=t(\"../../lib\"),a=t(\"../heatmap/convert_column_xyz\"),o=t(\"../heatmap/clean_2d_array\"),s=t(\"../heatmap/interp2d\"),l=t(\"../heatmap/find_empties\"),c=t(\"../heatmap/make_bound_array\"),u=t(\"./defaults\"),f=t(\"../carpet/lookup_carpetid\"),h=t(\"../contour/set_contours\");e.exports=function(t,e){var r=e._carpetTrace=f(t,e);if(r&&r.visible&&\"legendonly\"!==r.visible){if(!e.a||!e.b){var p=t.data[r.index],d=t.data[e.index];d.a||(d.a=p.a),d.b||(d.b=p.b),u(d,e,e._defaultColor,t._fullLayout)}var g=function(t,e){var r,u,f,h,p,d,g,m=e._carpetTrace,v=m.aaxis,y=m.baxis;v._minDtick=0,y._minDtick=0,i.isArray1D(e.z)&&a(e,v,y,\"a\",\"b\",[\"z\"]);r=e._a=e._a||e.a,h=e._b=e._b||e.b,r=r?v.makeCalcdata(e,\"_a\"):[],h=h?y.makeCalcdata(e,\"_b\"):[],u=e.a0||0,f=e.da||1,p=e.b0||0,d=e.db||1,g=e._z=o(e._z||e.z,e.transpose),e._emptypoints=l(g),s(g,e._emptypoints);var x=i.maxRowLength(g),b=\"scaled\"===e.xtype?\"\":r,_=c(e,b,u,f,x,v),w=\"scaled\"===e.ytype?\"\":h,T=c(e,w,p,d,g.length,y),k={a:_,b:T,z:g};\"levels\"===e.contours.type&&\"none\"!==e.contours.coloring&&n(t,e,{vals:g,containerStr:\"\",cLetter:\"z\"});return[k]}(t,e);return h(e,e._z),g}}},{\"../../components/colorscale/calc\":651,\"../../lib\":778,\"../carpet/lookup_carpetid\":981,\"../contour/set_contours\":1027,\"../heatmap/clean_2d_array\":1067,\"../heatmap/convert_column_xyz\":1069,\"../heatmap/find_empties\":1071,\"../heatmap/interp2d\":1074,\"../heatmap/make_bound_array\":1075,\"./defaults\":1032}],1032:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../heatmap/xyz_defaults\"),a=t(\"./attributes\"),o=t(\"../contour/constraint_defaults\"),s=t(\"../contour/contours_defaults\"),l=t(\"../contour/style_defaults\");e.exports=function(t,e,r,c){function u(r,i){return n.coerce(t,e,a,r,i)}if(u(\"carpet\"),t.a&&t.b){if(!i(t,e,u,c,\"a\",\"b\"))return void(e.visible=!1);u(\"text\"),\"constraint\"===u(\"contours.type\")?o(t,e,u,c,r,{hasHover:!1}):(s(t,e,u,(function(r){return n.coerce2(t,e,a,r)})),l(t,e,u,c,{hasHover:!1}))}else e._defaultColor=r,e._length=null}},{\"../../lib\":778,\"../contour/constraint_defaults\":1013,\"../contour/contours_defaults\":1015,\"../contour/style_defaults\":1029,\"../heatmap/xyz_defaults\":1079,\"./attributes\":1030}],1033:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../contour/colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../contour/style\"),moduleType:\"trace\",name:\"contourcarpet\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"carpet\",\"contour\",\"symbols\",\"showLegend\",\"hasLines\",\"carpetDependent\",\"noHover\",\"noSortingByValue\"],meta:{}}},{\"../../plots/cartesian\":841,\"../contour/colorbar\":1011,\"../contour/style\":1028,\"./attributes\":1030,\"./calc\":1031,\"./defaults\":1032,\"./plot\":1034}],1034:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../carpet/map_1d_array\"),a=t(\"../carpet/makepath\"),o=t(\"../../components/drawing\"),s=t(\"../../lib\"),l=t(\"../contour/make_crossings\"),c=t(\"../contour/find_all_paths\"),u=t(\"../contour/plot\"),f=t(\"../contour/constants\"),h=t(\"../contour/convert_to_constraints\"),p=t(\"../contour/empty_pathinfo\"),d=t(\"../contour/close_boundaries\"),g=t(\"../carpet/lookup_carpetid\"),m=t(\"../carpet/axis_aligned_line\");function v(t,e,r){var n=t.getPointAtLength(e),i=t.getPointAtLength(r),a=i.x-n.x,o=i.y-n.y,s=Math.sqrt(a*a+o*o);return[a/s,o/s]}function y(t){var e=Math.sqrt(t[0]*t[0]+t[1]*t[1]);return[t[0]/e,t[1]/e]}function x(t,e){var r=Math.abs(t[0]*e[0]+t[1]*e[1]);return Math.sqrt(1-r*r)/r}e.exports=function(t,e,r,b){var _=e.xaxis,w=e.yaxis;s.makeTraceGroups(b,r,\"contour\").each((function(r){var b=n.select(this),T=r[0],k=T.trace,M=k._carpetTrace=g(t,k),A=t.calcdata[M.index][0];if(M.visible&&\"legendonly\"!==M.visible){var S=T.a,E=T.b,C=k.contours,L=p(C,e,T),I=\"constraint\"===C.type,P=C._operation,z=I?\"=\"===P?\"lines\":\"fill\":C.coloring,O=[[S[0],E[E.length-1]],[S[S.length-1],E[E.length-1]],[S[S.length-1],E[0]],[S[0],E[0]]];l(L);var D=1e-8*(S[S.length-1]-S[0]),R=1e-8*(E[E.length-1]-E[0]);c(L,D,R);var F,B,N,j,U=L;\"constraint\"===C.type&&(U=h(L,P)),function(t,e){var r,n,i,a,o,s,l,c,u;for(r=0;r<t.length;r++){for(a=t[r],o=a.pedgepaths=[],s=a.ppaths=[],n=0;n<a.edgepaths.length;n++){for(u=a.edgepaths[n],l=[],i=0;i<u.length;i++)l[i]=e(u[i]);o.push(l)}for(n=0;n<a.paths.length;n++){for(u=a.paths[n],c=[],i=0;i<u.length;i++)c[i]=e(u[i]);s.push(c)}}}(L,H);var V=[];for(j=A.clipsegments.length-1;j>=0;j--)F=A.clipsegments[j],B=i([],F.x,_.c2p),N=i([],F.y,w.c2p),B.reverse(),N.reverse(),V.push(a(B,N,F.bicubic));var q=\"M\"+V.join(\"L\")+\"Z\";!function(t,e,r,n,o,l){var c,u,f,h,p=s.ensureSingle(t,\"g\",\"contourbg\").selectAll(\"path\").data(\"fill\"!==l||o?[]:[0]);p.enter().append(\"path\"),p.exit().remove();var d=[];for(h=0;h<e.length;h++)c=e[h],u=i([],c.x,r.c2p),f=i([],c.y,n.c2p),d.push(a(u,f,c.bicubic));p.attr(\"d\",\"M\"+d.join(\"L\")+\"Z\").style(\"stroke\",\"none\")}(b,A.clipsegments,_,w,I,z),function(t,e,r,i,a,l,c,u,f,h,p){var g=\"fill\"===h;g&&d(a,t.contours);var v=s.ensureSingle(e,\"g\",\"contourfill\").selectAll(\"path\").data(g?a:[]);v.enter().append(\"path\"),v.exit().remove(),v.each((function(t){var e=(t.prefixBoundary?p:\"\")+function(t,e,r,n,i,a,l,c){var u,f,h,p,d,g,v,y=\"\",x=e.edgepaths.map((function(t,e){return e})),b=!0,_=1e-4*Math.abs(r[0][0]-r[2][0]),w=1e-4*Math.abs(r[0][1]-r[2][1]);function T(t){return Math.abs(t[1]-r[0][1])<w}function k(t){return Math.abs(t[1]-r[2][1])<w}function M(t){return Math.abs(t[0]-r[0][0])<_}function A(t){return Math.abs(t[0]-r[2][0])<_}function S(t,e){var r,n,o,s,u=\"\";for(T(t)&&!A(t)||k(t)&&!M(t)?(s=i.aaxis,o=m(i,a,[t[0],e[0]],.5*(t[1]+e[1]))):(s=i.baxis,o=m(i,a,.5*(t[0]+e[0]),[t[1],e[1]])),r=1;r<o.length;r++)for(u+=s.smoothing?\"C\":\"L\",n=0;n<o[r].length;n++){var f=o[r][n];u+=[l.c2p(f[0]),c.c2p(f[1])]+\" \"}return u}u=0,f=null;for(;x.length;){var E=e.edgepaths[u][0];for(f&&(y+=S(f,E)),v=o.smoothopen(e.edgepaths[u].map(n),e.smoothing),y+=b?v:v.replace(/^M/,\"L\"),x.splice(x.indexOf(u),1),f=e.edgepaths[u][e.edgepaths[u].length-1],d=-1,p=0;p<4;p++){if(!f){s.log(\"Missing end?\",u,e);break}for(T(f)&&!A(f)?h=r[1]:M(f)?h=r[0]:k(f)?h=r[3]:A(f)&&(h=r[2]),g=0;g<e.edgepaths.length;g++){var C=e.edgepaths[g][0];Math.abs(f[0]-h[0])<_?Math.abs(f[0]-C[0])<_&&(C[1]-f[1])*(h[1]-C[1])>=0&&(h=C,d=g):Math.abs(f[1]-h[1])<w?Math.abs(f[1]-C[1])<w&&(C[0]-f[0])*(h[0]-C[0])>=0&&(h=C,d=g):s.log(\"endpt to newendpt is not vert. or horz.\",f,h,C)}if(d>=0)break;y+=S(f,h),f=h}if(d===e.edgepaths.length){s.log(\"unclosed perimeter path\");break}u=d,(b=-1===x.indexOf(u))&&(u=x[0],y+=S(f,h)+\"Z\",f=null)}for(u=0;u<e.paths.length;u++)y+=o.smoothclosed(e.paths[u].map(n),e.smoothing);return y}(0,t,l,c,u,f,r,i);e?n.select(this).attr(\"d\",e).style(\"stroke\",\"none\"):n.select(this).remove()}))}(k,b,_,w,U,O,H,M,A,z,q),function(t,e,r,i,a,l,c){var h=s.ensureSingle(t,\"g\",\"contourlines\"),p=!1!==a.showlines,d=a.showlabels,g=p&&d,m=u.createLines(h,p||d,e),b=u.createLineClip(h,g,r,i.trace.uid),_=t.selectAll(\"g.contourlabels\").data(d?[0]:[]);if(_.exit().remove(),_.enter().append(\"g\").classed(\"contourlabels\",!0),d){var w=l.xaxis,T=l.yaxis,k=w._length,M=T._length,A=[[[0,0],[k,0],[k,M],[0,M]]],S=[];s.clearLocationCache();var E=u.labelFormatter(r,i),C=o.tester.append(\"text\").attr(\"data-notex\",1).call(o.font,a.labelfont),L={left:0,right:k,center:k/2,top:0,bottom:M,middle:M/2},I=Math.sqrt(k*k+M*M),P=f.LABELDISTANCE*I/Math.max(1,e.length/f.LABELINCREASE);m.each((function(t){var e=u.calcTextOpts(t.level,E,C,r);n.select(this).selectAll(\"path\").each((function(r){var n=s.getVisibleSegment(this,L,e.height/2);if(n&&(function(t,e,r,n,i,a){for(var o,s=0;s<r.pedgepaths.length;s++)e===r.pedgepaths[s]&&(o=r.edgepaths[s]);if(!o)return;var l=i.a[0],c=i.a[i.a.length-1],u=i.b[0],f=i.b[i.b.length-1];function h(t,e){var r,n=0;return(Math.abs(t[0]-l)<.1||Math.abs(t[0]-c)<.1)&&(r=y(i.dxydb_rough(t[0],t[1],.1)),n=Math.max(n,a*x(e,r)/2)),(Math.abs(t[1]-u)<.1||Math.abs(t[1]-f)<.1)&&(r=y(i.dxyda_rough(t[0],t[1],.1)),n=Math.max(n,a*x(e,r)/2)),n}var p=v(t,0,1),d=v(t,n.total,n.total-1),g=h(o[0],p),m=n.total-h(o[o.length-1],d);n.min<g&&(n.min=g);n.max>m&&(n.max=m);n.len=n.max-n.min}(this,r,t,n,c,e.height),!(n.len<(e.width+e.height)*f.LABELMIN)))for(var i=Math.min(Math.ceil(n.len/P),f.LABELMAX),a=0;a<i;a++){var o=u.findBestTextLocation(this,n,e,S,L);if(!o)break;u.addLabelData(o,e,S,A)}}))})),C.remove(),u.drawLabels(_,S,r,b,g?A:null)}d&&!p&&m.remove()}(b,L,t,T,C,e,M),o.setClipUrl(b,M._clipPathId,t)}function H(t){var e=M.ab2xy(t[0],t[1],!0);return[_.c2p(e[0]),w.c2p(e[1])]}}))}},{\"../../components/drawing\":665,\"../../lib\":778,\"../carpet/axis_aligned_line\":965,\"../carpet/lookup_carpetid\":981,\"../carpet/makepath\":982,\"../carpet/map_1d_array\":983,\"../contour/close_boundaries\":1010,\"../contour/constants\":1012,\"../contour/convert_to_constraints\":1016,\"../contour/empty_pathinfo\":1018,\"../contour/find_all_paths\":1020,\"../contour/make_crossings\":1025,\"../contour/plot\":1026,d3:169}],1035:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/attributes\"),o=t(\"../scattermapbox/attributes\"),s=t(\"../../lib/extend\").extendFlat;e.exports=s({lon:o.lon,lat:o.lat,z:{valType:\"data_array\",editType:\"calc\"},radius:{valType:\"number\",editType:\"plot\",arrayOk:!0,min:1,dflt:30},below:{valType:\"string\",editType:\"plot\"},text:o.text,hovertext:o.hovertext,hoverinfo:s({},a.hoverinfo,{flags:[\"lon\",\"lat\",\"z\",\"text\",\"name\"]}),hovertemplate:i(),showlegend:s({},a.showlegend,{dflt:!1})},n(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../scattermapbox/attributes\":1252}],1036:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\").isArrayOrTypedArray,a=t(\"../../constants/numerical\").BADNUM,o=t(\"../../components/colorscale/calc\"),s=t(\"../../lib\")._;e.exports=function(t,e){for(var r=e._length,l=new Array(r),c=e.z,u=i(c)&&c.length,f=0;f<r;f++){var h=l[f]={},p=e.lon[f],d=e.lat[f];if(h.lonlat=n(p)&&n(d)?[+p,+d]:[a,a],u){var g=c[f];h.z=n(g)?g:a}}return o(t,e,{vals:u?c:[0,1],containerStr:\"\",cLetter:\"z\"}),r&&(l[0].t={labels:{lat:s(t,\"lat:\")+\" \",lon:s(t,\"lon:\")+\" \"}}),l}},{\"../../components/colorscale/calc\":651,\"../../constants/numerical\":753,\"../../lib\":778,\"fast-isnumeric\":241}],1037:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../../components/color\"),o=t(\"../../components/colorscale\"),s=t(\"../../constants/numerical\").BADNUM,l=t(\"../../lib/geojson_utils\").makeBlank;e.exports=function(t){var e=t[0].trace,r=!0===e.visible&&0!==e._length,c=e._opts={heatmap:{layout:{visibility:\"none\"},paint:{}},geojson:l()};if(!r)return c;var u,f=[],h=e.z,p=e.radius,d=i.isArrayOrTypedArray(h)&&h.length,g=i.isArrayOrTypedArray(p);for(u=0;u<t.length;u++){var m=t[u],v=m.lonlat;if(v[0]!==s){var y={};if(d){var x=m.z;y.z=x!==s?x:0}g&&(y.r=n(p[u])&&p[u]>0?+p[u]:0),f.push({type:\"Feature\",geometry:{type:\"Point\",coordinates:v},properties:y})}}var b=o.extractOpts(e),_=b.reversescale?o.flipScale(b.colorscale):b.colorscale,w=_[0][1],T=[\"interpolate\",[\"linear\"],[\"heatmap-density\"],0,a.opacity(w)<1?w:a.addOpacity(w,0)];for(u=1;u<_.length;u++)T.push(_[u][0],_[u][1]);var k=[\"interpolate\",[\"linear\"],[\"get\",\"z\"],b.min,0,b.max,1];return i.extendFlat(c.heatmap.paint,{\"heatmap-weight\":d?k:1/(b.max-b.min),\"heatmap-color\":T,\"heatmap-radius\":g?{type:\"identity\",property:\"r\"}:e.radius,\"heatmap-opacity\":e.opacity}),c.geojson={type:\"FeatureCollection\",features:f},c.heatmap.layout.visibility=\"visible\",c}},{\"../../components/color\":643,\"../../components/colorscale\":655,\"../../constants/numerical\":753,\"../../lib\":778,\"../../lib/geojson_utils\":772,\"fast-isnumeric\":241}],1038:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/colorscale/defaults\"),a=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}var l=s(\"lon\")||[],c=s(\"lat\")||[],u=Math.min(l.length,c.length);u?(e._length=u,s(\"z\"),s(\"radius\"),s(\"below\"),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),i(t,e,o,s,{prefix:\"\",cLetter:\"z\"})):e.visible=!1}},{\"../../components/colorscale/defaults\":653,\"../../lib\":778,\"./attributes\":1035}],1039:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t.z=e.z,t}},{}],1040:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../scattermapbox/hover\");e.exports=function(t,e,r){var o=a(t,e,r);if(o){var s=o[0],l=s.cd,c=l[0].trace,u=l[s.index];if(delete s.color,\"z\"in u){var f=s.subplot.mockAxis;s.z=u.z,s.zLabel=i.tickText(f,f.c2l(u.z),\"hover\").text}return s.extraText=function(t,e,r){if(t.hovertemplate)return;var i=(e.hi||t.hoverinfo).split(\"+\"),a=-1!==i.indexOf(\"all\"),o=-1!==i.indexOf(\"lon\"),s=-1!==i.indexOf(\"lat\"),l=e.lonlat,c=[];function u(t){return t+\"\\xb0\"}a||o&&s?c.push(\"(\"+u(l[0])+\", \"+u(l[1])+\")\"):o?c.push(r.lon+u(l[0])):s&&c.push(r.lat+u(l[1]));(a||-1!==i.indexOf(\"text\"))&&n.fillText(e,t,c);return c.join(\"<br>\")}(c,u,l[0].t.labels),[s]}}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"../scattermapbox/hover\":1257}],1041:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),formatLabels:t(\"../scattermapbox/format_labels\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),getBelow:function(t,e){for(var r=e.getMapLayers(),n=0;n<r.length;n++){var i=r[n],a=i.id;if(\"symbol\"===i.type&&\"string\"==typeof a&&-1===a.indexOf(\"plotly-\"))return a}},moduleType:\"trace\",name:\"densitymapbox\",basePlotModule:t(\"../../plots/mapbox\"),categories:[\"mapbox\",\"gl\",\"showLegend\"],meta:{hr_name:\"density_mapbox\"}}},{\"../../plots/mapbox\":885,\"../heatmap/colorbar\":1068,\"../scattermapbox/format_labels\":1256,\"./attributes\":1035,\"./calc\":1036,\"./defaults\":1038,\"./event_data\":1039,\"./hover\":1040,\"./plot\":1042}],1042:[function(t,e,r){\"use strict\";var n=t(\"./convert\"),i=t(\"../../plots/mapbox/constants\").traceLayerPrefix;function a(t,e){this.type=\"densitymapbox\",this.subplot=t,this.uid=e,this.sourceId=\"source-\"+e,this.layerList=[[\"heatmap\",i+e+\"-heatmap\"]],this.below=null}var o=a.prototype;o.update=function(t){var e=this.subplot,r=this.layerList,i=n(t),a=e.belowLookup[\"trace-\"+this.uid];e.map.getSource(this.sourceId).setData(i.geojson),a!==this.below&&(this._removeLayers(),this._addLayers(i,a),this.below=a);for(var o=0;o<r.length;o++){var s=r[o],l=s[0],c=s[1],u=i[l];e.setOptions(c,\"setLayoutProperty\",u.layout),\"visible\"===u.layout.visibility&&e.setOptions(c,\"setPaintProperty\",u.paint)}},o._addLayers=function(t,e){for(var r=this.subplot,n=this.layerList,i=this.sourceId,a=0;a<n.length;a++){var o=n[a],s=o[0],l=t[s];r.addLayer({type:s,id:o[1],source:i,layout:l.layout,paint:l.paint},e)}},o._removeLayers=function(){for(var t=this.subplot.map,e=this.layerList,r=e.length-1;r>=0;r--)t.removeLayer(e[r][1])},o.dispose=function(){var t=this.subplot.map;this._removeLayers(),t.removeSource(this.sourceId)},e.exports=function(t,e){var r=e[0].trace,i=new a(t,r.uid),o=i.sourceId,s=n(e),l=i.below=t.belowLookup[\"trace-\"+r.uid];return t.map.addSource(o,{type:\"geojson\",data:s.geojson}),i._addLayers(s,l),i}},{\"../../plots/mapbox/constants\":883,\"./convert\":1037}],1043:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){for(var r=0;r<t.length;r++)t[r].i=r;n.mergeArray(e.text,t,\"tx\"),n.mergeArray(e.hovertext,t,\"htx\");var i=e.marker;if(i){n.mergeArray(i.opacity,t,\"mo\"),n.mergeArray(i.color,t,\"mc\");var a=i.line;a&&(n.mergeArray(a.color,t,\"mlc\"),n.mergeArrayCastPositive(a.width,t,\"mlw\"))}}},{\"../../lib\":778}],1044:[function(t,e,r){\"use strict\";var n=t(\"../bar/attributes\"),i=t(\"../scatter/attributes\").line,a=t(\"../../plots/attributes\"),o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../plots/template_attributes\").texttemplateAttrs,l=t(\"./constants\"),c=t(\"../../lib/extend\").extendFlat,u=t(\"../../components/color\");e.exports={x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,xperiod:n.xperiod,yperiod:n.yperiod,xperiod0:n.xperiod0,yperiod0:n.yperiod0,xperiodalignment:n.xperiodalignment,yperiodalignment:n.yperiodalignment,hovertext:n.hovertext,hovertemplate:o({},{keys:l.eventDataKeys}),hoverinfo:c({},a.hoverinfo,{flags:[\"name\",\"x\",\"y\",\"text\",\"percent initial\",\"percent previous\",\"percent total\"]}),textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"percent initial\",\"percent previous\",\"percent total\",\"value\"],extras:[\"none\"],editType:\"plot\",arrayOk:!1},texttemplate:s({editType:\"plot\"},{keys:l.eventDataKeys.concat([\"label\",\"value\"])}),text:n.text,textposition:c({},n.textposition,{dflt:\"auto\"}),insidetextanchor:c({},n.insidetextanchor,{dflt:\"middle\"}),textangle:c({},n.textangle,{dflt:0}),textfont:n.textfont,insidetextfont:n.insidetextfont,outsidetextfont:n.outsidetextfont,constraintext:n.constraintext,cliponaxis:n.cliponaxis,orientation:c({},n.orientation,{}),offset:c({},n.offset,{arrayOk:!1}),width:c({},n.width,{arrayOk:!1}),marker:n.marker,connector:{fillcolor:{valType:\"color\",editType:\"style\"},line:{color:c({},i.color,{dflt:u.defaultLine}),width:c({},i.width,{dflt:0,editType:\"plot\"}),dash:i.dash,editType:\"style\"},visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup}},{\"../../components/color\":643,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../bar/attributes\":921,\"../scatter/attributes\":1187,\"./constants\":1046}],1045:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../plots/cartesian/align_period\"),a=t(\"./arrays_to_calcdata\"),o=t(\"../scatter/calc_selection\"),s=t(\"../../constants/numerical\").BADNUM;function l(t){return t===s?0:t}e.exports=function(t,e){var r,c,u,f,h,p,d=n.getFromId(t,e.xaxis||\"x\"),g=n.getFromId(t,e.yaxis||\"y\");\"h\"===e.orientation?(r=d.makeCalcdata(e,\"x\"),u=g.makeCalcdata(e,\"y\"),c=i(e,g,\"y\",u),p=!!e.yperiodalignment):(r=g.makeCalcdata(e,\"y\"),u=d.makeCalcdata(e,\"x\"),c=i(e,d,\"x\",u),p=!!e.xperiodalignment);var m,v=Math.min(c.length,r.length),y=new Array(v);for(e._base=[],f=0;f<v;f++){r[f]<0&&(r[f]=s);var x=!1;r[f]!==s&&f+1<v&&r[f+1]!==s&&(x=!0),h=y[f]={p:c[f],s:r[f],cNext:x},e._base[f]=-.5*h.s,p&&(y[f].orig_p=u[f]),e.ids&&(h.id=String(e.ids[f])),0===f&&(y[0].vTotal=0),y[0].vTotal+=l(h.s),h.begR=l(h.s)/l(y[0].s)}for(f=0;f<v;f++)(h=y[f]).s!==s&&(h.sumR=h.s/y[0].vTotal,h.difR=void 0!==m?h.s/m:1,m=h.s);return a(y,e),o(y,e),y}},{\"../../constants/numerical\":753,\"../../plots/cartesian/align_period\":825,\"../../plots/cartesian/axes\":828,\"../scatter/calc_selection\":1189,\"./arrays_to_calcdata\":1043}],1046:[function(t,e,r){\"use strict\";e.exports={eventDataKeys:[\"percentInitial\",\"percentPrevious\",\"percentTotal\"]}},{}],1047:[function(t,e,r){\"use strict\";var n=t(\"../bar/cross_trace_calc\").setGroupPositions;e.exports=function(t,e){var r,i,a=t._fullLayout,o=t._fullData,s=t.calcdata,l=e.xaxis,c=e.yaxis,u=[],f=[],h=[];for(i=0;i<o.length;i++){var p=o[i],d=\"h\"===p.orientation;!0===p.visible&&p.xaxis===l._id&&p.yaxis===c._id&&\"funnel\"===p.type&&(r=s[i],d?h.push(r):f.push(r),u.push(r))}var g={mode:a.funnelmode,norm:a.funnelnorm,gap:a.funnelgap,groupgap:a.funnelgroupgap};for(n(t,l,c,f,g),n(t,c,l,h,g),i=0;i<u.length;i++){r=u[i];for(var m=0;m<r.length;m++)m+1<r.length&&(r[m].nextP0=r[m+1].p0,r[m].nextS0=r[m+1].s0,r[m].nextP1=r[m+1].p1,r[m].nextS1=r[m+1].s1)}}},{\"../bar/cross_trace_calc\":924}],1048:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../bar/defaults\").handleGroupingDefaults,a=t(\"../bar/defaults\").handleText,o=t(\"../scatter/xy_defaults\"),s=t(\"../scatter/period_defaults\"),l=t(\"./attributes\"),c=t(\"../../components/color\");e.exports={supplyDefaults:function(t,e,r,i){function u(r,i){return n.coerce(t,e,l,r,i)}if(o(t,e,i,u)){s(t,e,i,u),u(\"orientation\",e.y&&!e.x?\"v\":\"h\"),u(\"offset\"),u(\"width\");var f=u(\"text\");u(\"hovertext\"),u(\"hovertemplate\");var h=u(\"textposition\");a(t,e,i,u,h,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!0,moduleHasCliponaxis:!0,moduleHasTextangle:!0,moduleHasInsideanchor:!0}),\"none\"===e.textposition||e.texttemplate||u(\"textinfo\",Array.isArray(f)?\"text+value\":\"value\");var p=u(\"marker.color\",r);if(u(\"marker.line.color\",c.defaultLine),u(\"marker.line.width\"),u(\"connector.visible\"))u(\"connector.fillcolor\",function(t){var e=n.isArrayOrTypedArray(t)?\"#000\":t;return c.addOpacity(e,.5*c.opacity(e))}(p)),u(\"connector.line.width\")&&(u(\"connector.line.color\"),u(\"connector.line.dash\"))}else e.visible=!1},crossTraceDefaults:function(t,e){var r,a;function o(t){return n.coerce(a._input,a,l,t)}if(\"group\"===e.funnelmode)for(var s=0;s<t.length;s++)r=(a=t[s])._input,i(r,a,e,o)}}},{\"../../components/color\":643,\"../../lib\":778,\"../bar/defaults\":925,\"../scatter/period_defaults\":1207,\"../scatter/xy_defaults\":1214,\"./attributes\":1044}],1049:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.x=\"xVal\"in e?e.xVal:e.x,t.y=\"yVal\"in e?e.yVal:e.y,\"percentInitial\"in e&&(t.percentInitial=e.percentInitial),\"percentPrevious\"in e&&(t.percentPrevious=e.percentPrevious),\"percentTotal\"in e&&(t.percentTotal=e.percentTotal),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),t}},{}],1050:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\").opacity,i=t(\"../bar/hover\").hoverOnBars,a=t(\"../../lib\").formatPercent;e.exports=function(t,e,r,o){var s=i(t,e,r,o);if(s){var l=s.cd,c=l[0].trace,u=\"h\"===c.orientation,f=l[s.index];s[(u?\"x\":\"y\")+\"LabelVal\"]=f.s,s.percentInitial=f.begR,s.percentInitialLabel=a(f.begR,1),s.percentPrevious=f.difR,s.percentPreviousLabel=a(f.difR,1),s.percentTotal=f.sumR,s.percentTotalLabel=a(f.sumR,1);var h=f.hi||c.hoverinfo,p=[];if(h&&\"none\"!==h&&\"skip\"!==h){var d=\"all\"===h,g=h.split(\"+\"),m=function(t){return d||-1!==g.indexOf(t)};m(\"percent initial\")&&p.push(s.percentInitialLabel+\" of initial\"),m(\"percent previous\")&&p.push(s.percentPreviousLabel+\" of previous\"),m(\"percent total\")&&p.push(s.percentTotalLabel+\" of total\")}return s.extraText=p.join(\"<br>\"),s.color=function(t,e){var r=t.marker,i=e.mc||r.color,a=e.mlc||r.line.color,o=e.mlw||r.line.width;if(n(i))return i;if(n(a)&&o)return a}(c,f),[s]}}},{\"../../components/color\":643,\"../../lib\":778,\"../bar/hover\":928}],1051:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\").style,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"../bar/select\"),moduleType:\"trace\",name:\"funnel\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"oriented\",\"showLegend\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":841,\"../bar/select\":933,\"./attributes\":1044,\"./calc\":1045,\"./cross_trace_calc\":1047,\"./defaults\":1048,\"./event_data\":1049,\"./hover\":1050,\"./layout_attributes\":1052,\"./layout_defaults\":1053,\"./plot\":1054,\"./style\":1055}],1052:[function(t,e,r){\"use strict\";e.exports={funnelmode:{valType:\"enumerated\",values:[\"stack\",\"group\",\"overlay\"],dflt:\"stack\",editType:\"calc\"},funnelgap:{valType:\"number\",min:0,max:1,editType:\"calc\"},funnelgroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],1053:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e,r){var a=!1;function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=0;s<r.length;s++){var l=r[s];if(l.visible&&\"funnel\"===l.type){a=!0;break}}a&&(o(\"funnelmode\"),o(\"funnelgap\",.2),o(\"funnelgroupgap\"))}},{\"../../lib\":778,\"./layout_attributes\":1052}],1054:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../../components/drawing\"),o=t(\"../../constants/numerical\").BADNUM,s=t(\"../bar/plot\"),l=t(\"../bar/uniform_text\").clearMinTextSize;function c(t,e,r,n){var i=[],a=[],o=n?e:r,s=n?r:e;return i[0]=o.c2p(t.s0,!0),a[0]=s.c2p(t.p0,!0),i[1]=o.c2p(t.s1,!0),a[1]=s.c2p(t.p1,!0),i[2]=o.c2p(t.nextS0,!0),a[2]=s.c2p(t.nextP0,!0),i[3]=o.c2p(t.nextS1,!0),a[3]=s.c2p(t.nextP1,!0),n?[i,a]:[a,i]}e.exports=function(t,e,r,u){var f=t._fullLayout;l(\"funnel\",f),function(t,e,r,s){var l=e.xaxis,u=e.yaxis;i.makeTraceGroups(s,r,\"trace bars\").each((function(r){var s=n.select(this),f=r[0].trace,h=i.ensureSingle(s,\"g\",\"regions\");if(f.connector&&f.connector.visible){var p=\"h\"===f.orientation,d=h.selectAll(\"g.region\").data(i.identity);d.enter().append(\"g\").classed(\"region\",!0),d.exit().remove();var g=d.size();d.each((function(r,s){if(s===g-1||r.cNext){var f=c(r,l,u,p),h=f[0],d=f[1],m=\"\";h[0]!==o&&d[0]!==o&&h[1]!==o&&d[1]!==o&&h[2]!==o&&d[2]!==o&&h[3]!==o&&d[3]!==o&&(m+=p?\"M\"+h[0]+\",\"+d[1]+\"L\"+h[2]+\",\"+d[2]+\"H\"+h[3]+\"L\"+h[1]+\",\"+d[1]+\"Z\":\"M\"+h[1]+\",\"+d[1]+\"L\"+h[2]+\",\"+d[3]+\"V\"+d[2]+\"L\"+h[1]+\",\"+d[0]+\"Z\"),\"\"===m&&(m=\"M0,0Z\"),i.ensureSingle(n.select(this),\"path\").attr(\"d\",m).call(a.setClipUrl,e.layerClipId,t)}}))}else h.remove()}))}(t,e,r,u),function(t,e,r,o){var s=e.xaxis,l=e.yaxis;i.makeTraceGroups(o,r,\"trace bars\").each((function(r){var o=n.select(this),u=r[0].trace,f=i.ensureSingle(o,\"g\",\"lines\");if(u.connector&&u.connector.visible&&u.connector.line.width){var h=\"h\"===u.orientation,p=f.selectAll(\"g.line\").data(i.identity);p.enter().append(\"g\").classed(\"line\",!0),p.exit().remove();var d=p.size();p.each((function(r,o){if(o===d-1||r.cNext){var u=c(r,s,l,h),f=u[0],p=u[1],g=\"\";void 0!==f[3]&&void 0!==p[3]&&(h?(g+=\"M\"+f[0]+\",\"+p[1]+\"L\"+f[2]+\",\"+p[2],g+=\"M\"+f[1]+\",\"+p[1]+\"L\"+f[3]+\",\"+p[2]):(g+=\"M\"+f[1]+\",\"+p[1]+\"L\"+f[2]+\",\"+p[3],g+=\"M\"+f[1]+\",\"+p[0]+\"L\"+f[2]+\",\"+p[2])),\"\"===g&&(g=\"M0,0Z\"),i.ensureSingle(n.select(this),\"path\").attr(\"d\",g).call(a.setClipUrl,e.layerClipId,t)}}))}else f.remove()}))}(t,e,r,u),s.plot(t,e,r,u,{mode:f.funnelmode,norm:f.funnelmode,gap:f.funnelgap,groupgap:f.funnelgroupgap})}},{\"../../components/drawing\":665,\"../../constants/numerical\":753,\"../../lib\":778,\"../bar/plot\":932,\"../bar/uniform_text\":937,d3:169}],1055:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/drawing\"),a=t(\"../../components/color\"),o=t(\"../../constants/interactions\").DESELECTDIM,s=t(\"../bar/style\"),l=t(\"../bar/uniform_text\").resizeText,c=s.styleTextPoints;e.exports={style:function(t,e,r){var s=r||n.select(t).selectAll(\"g.funnellayer\").selectAll(\"g.trace\");l(t,s,\"funnel\"),s.style(\"opacity\",(function(t){return t[0].trace.opacity})),s.each((function(e){var r=n.select(this),s=e[0].trace;r.selectAll(\".point > path\").each((function(t){if(!t.isBlank){var e=s.marker;n.select(this).call(a.fill,t.mc||e.color).call(a.stroke,t.mlc||e.line.color).call(i.dashLine,e.line.dash,t.mlw||e.line.width).style(\"opacity\",s.selectedpoints&&!t.selected?o:1)}})),c(r,s,t),r.selectAll(\".regions\").each((function(){n.select(this).selectAll(\"path\").style(\"stroke-width\",0).call(a.fill,s.connector.fillcolor)})),r.selectAll(\".lines\").each((function(){var t=s.connector.line;i.lineGroupStyle(n.select(this).selectAll(\"path\"),t.width,t.color,t.dash)}))}))}}},{\"../../components/color\":643,\"../../components/drawing\":665,\"../../constants/interactions\":752,\"../bar/style\":935,\"../bar/uniform_text\":937,d3:169}],1056:[function(t,e,r){\"use strict\";var n=t(\"../pie/attributes\"),i=t(\"../../plots/attributes\"),a=t(\"../../plots/domain\").attributes,o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../plots/template_attributes\").texttemplateAttrs,l=t(\"../../lib/extend\").extendFlat;e.exports={labels:n.labels,label0:n.label0,dlabel:n.dlabel,values:n.values,marker:{colors:n.marker.colors,line:{color:l({},n.marker.line.color,{dflt:null}),width:l({},n.marker.line.width,{dflt:1}),editType:\"calc\"},editType:\"calc\"},text:n.text,hovertext:n.hovertext,scalegroup:l({},n.scalegroup,{}),textinfo:l({},n.textinfo,{flags:[\"label\",\"text\",\"value\",\"percent\"]}),texttemplate:s({editType:\"plot\"},{keys:[\"label\",\"color\",\"value\",\"text\",\"percent\"]}),hoverinfo:l({},i.hoverinfo,{flags:[\"label\",\"text\",\"value\",\"percent\",\"name\"]}),hovertemplate:o({},{keys:[\"label\",\"color\",\"value\",\"text\",\"percent\"]}),textposition:l({},n.textposition,{values:[\"inside\",\"none\"],dflt:\"inside\"}),textfont:n.textfont,insidetextfont:n.insidetextfont,title:{text:n.title.text,font:n.title.font,position:l({},n.title.position,{values:[\"top left\",\"top center\",\"top right\"],dflt:\"top center\"}),editType:\"plot\"},domain:a({name:\"funnelarea\",trace:!0,editType:\"calc\"}),aspectratio:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},baseratio:{valType:\"number\",min:0,max:1,dflt:.333,editType:\"plot\"}}},{\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/domain\":855,\"../../plots/template_attributes\":906,\"../pie/attributes\":1161}],1057:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"funnelarea\",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{\"../../plots/plots\":891}],1058:[function(t,e,r){\"use strict\";var n=t(\"../pie/calc\");e.exports={calc:function(t,e){return n.calc(t,e)},crossTraceCalc:function(t){n.crossTraceCalc(t,{type:\"funnelarea\"})}}},{\"../pie/calc\":1163}],1059:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"../../plots/domain\").defaults,o=t(\"../bar/defaults\").handleText,s=t(\"../pie/defaults\").handleLabelsAndValues;e.exports=function(t,e,r,l){function c(r,a){return n.coerce(t,e,i,r,a)}var u=c(\"labels\"),f=c(\"values\"),h=s(u,f),p=h.len;if(e._hasLabels=h.hasLabels,e._hasValues=h.hasValues,!e._hasLabels&&e._hasValues&&(c(\"label0\"),c(\"dlabel\")),p){e._length=p,c(\"marker.line.width\")&&c(\"marker.line.color\",l.paper_bgcolor),c(\"marker.colors\"),c(\"scalegroup\");var d,g=c(\"text\"),m=c(\"texttemplate\");if(m||(d=c(\"textinfo\",Array.isArray(g)?\"text+percent\":\"percent\")),c(\"hovertext\"),c(\"hovertemplate\"),m||d&&\"none\"!==d){var v=c(\"textposition\");o(t,e,l,c,v,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1})}a(e,l,c),c(\"title.text\")&&(c(\"title.position\"),n.coerceFont(c,\"title.font\",l.font)),c(\"aspectratio\"),c(\"baseratio\")}else e.visible=!1}},{\"../../lib\":778,\"../../plots/domain\":855,\"../bar/defaults\":925,\"../pie/defaults\":1164,\"./attributes\":1056}],1060:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"funnelarea\",basePlotModule:t(\"./base_plot\"),categories:[\"pie-like\",\"funnelarea\",\"showLegend\"],attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),style:t(\"./style\"),styleOne:t(\"../pie/style_one\"),meta:{}}},{\"../pie/style_one\":1172,\"./attributes\":1056,\"./base_plot\":1057,\"./calc\":1058,\"./defaults\":1059,\"./layout_attributes\":1061,\"./layout_defaults\":1062,\"./plot\":1063,\"./style\":1064}],1061:[function(t,e,r){\"use strict\";var n=t(\"../pie/layout_attributes\").hiddenlabels;e.exports={hiddenlabels:n,funnelareacolorway:{valType:\"colorlist\",editType:\"calc\"},extendfunnelareacolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{\"../pie/layout_attributes\":1168}],1062:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r(\"hiddenlabels\"),r(\"funnelareacolorway\",e.colorway),r(\"extendfunnelareacolors\")}},{\"../../lib\":778,\"./layout_attributes\":1061}],1063:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/drawing\"),a=t(\"../../lib\"),o=a.strScale,s=a.strTranslate,l=t(\"../../lib/svg_text_utils\"),c=t(\"../bar/plot\").toMoveInsideBar,u=t(\"../bar/uniform_text\"),f=u.recordMinTextSize,h=u.clearMinTextSize,p=t(\"../pie/helpers\"),d=t(\"../pie/plot\"),g=d.attachFxHandlers,m=d.determineInsideTextFont,v=d.layoutAreas,y=d.prerenderTitles,x=d.positionTitleOutside,b=d.formatSliceLabel;function _(t,e){return\"l\"+(e[0]-t[0])+\",\"+(e[1]-t[1])}e.exports=function(t,e){var r=t._fullLayout;h(\"funnelarea\",r),y(e,t),v(e,r._size),a.makeTraceGroups(r._funnelarealayer,e,\"trace\").each((function(e){var u=n.select(this),h=e[0],d=h.trace;!function(t){if(!t.length)return;var e=t[0],r=e.trace,n=r.aspectratio,i=r.baseratio;i>.999&&(i=.999);var a,o=Math.pow(i,2),s=e.vTotal,l=s,c=s*o/(1-o)/s;function u(){var t,e={x:t=Math.sqrt(c),y:-t};return[e.x,e.y]}var f,h,p=[];for(p.push(u()),f=t.length-1;f>-1;f--)if(!(h=t[f]).hidden){var d=h.v/l;c+=d,p.push(u())}var g=1/0,m=-1/0;for(f=0;f<p.length;f++)a=p[f],g=Math.min(g,a[1]),m=Math.max(m,a[1]);for(f=0;f<p.length;f++)p[f][1]-=(m+g)/2;var v=p[p.length-1][0],y=e.r,x=(m-g)/2,b=y/v,_=y/x*n;for(e.r=_*x,f=0;f<p.length;f++)p[f][0]*=b,p[f][1]*=_;var w=[-(a=p[0])[0],a[1]],T=[a[0],a[1]],k=0;for(f=t.length-1;f>-1;f--)if(!(h=t[f]).hidden){var M=p[k+=1][0],A=p[k][1];h.TL=[-M,A],h.TR=[M,A],h.BL=w,h.BR=T,h.pxmid=(S=h.TR,E=h.BR,[.5*(S[0]+E[0]),.5*(S[1]+E[1])]),w=h.TL,T=h.TR}var S,E}(e),u.each((function(){var u=n.select(this).selectAll(\"g.slice\").data(e);u.enter().append(\"g\").classed(\"slice\",!0),u.exit().remove(),u.each((function(o,s){if(o.hidden)n.select(this).selectAll(\"path,g\").remove();else{o.pointNumber=o.i,o.curveNumber=d.index;var u=h.cx,v=h.cy,y=n.select(this),x=y.selectAll(\"path.surface\").data([o]);x.enter().append(\"path\").classed(\"surface\",!0).style({\"pointer-events\":\"all\"}),y.call(g,t,e);var w=\"M\"+(u+o.TR[0])+\",\"+(v+o.TR[1])+_(o.TR,o.BR)+_(o.BR,o.BL)+_(o.BL,o.TL)+\"Z\";x.attr(\"d\",w),b(t,o,h);var T=p.castOption(d.textposition,o.pts),k=y.selectAll(\"g.slicetext\").data(o.text&&\"none\"!==T?[0]:[]);k.enter().append(\"g\").classed(\"slicetext\",!0),k.exit().remove(),k.each((function(){var h=a.ensureSingle(n.select(this),\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),p=a.ensureUniformFontSize(t,m(d,o,r.font));h.text(o.text).attr({class:\"slicetext\",transform:\"\",\"text-anchor\":\"middle\"}).call(i.font,p).call(l.convertToTspans,t);var g,y,x,b=i.bBox(h.node()),_=Math.min(o.BL[1],o.BR[1])+v,w=Math.max(o.TL[1],o.TR[1])+v;y=Math.max(o.TL[0],o.BL[0])+u,x=Math.min(o.TR[0],o.BR[0])+u,(g=c(y,x,_,w,b,{isHorizontal:!0,constrained:!0,angle:0,anchor:\"middle\"})).fontSize=p.size,f(d.type,g,r),e[s].transform=g,h.attr(\"transform\",a.getTextTransform(g))}))}}));var v=n.select(this).selectAll(\"g.titletext\").data(d.title.text?[0]:[]);v.enter().append(\"g\").classed(\"titletext\",!0),v.exit().remove(),v.each((function(){var e=a.ensureSingle(n.select(this),\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),c=d.title.text;d._meta&&(c=a.templateString(c,d._meta)),e.text(c).attr({class:\"titletext\",transform:\"\",\"text-anchor\":\"middle\"}).call(i.font,d.title.font).call(l.convertToTspans,t);var u=x(h,r._size);e.attr(\"transform\",s(u.x,u.y)+o(Math.min(1,u.scale))+s(u.tx,u.ty))}))}))}))}},{\"../../components/drawing\":665,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../bar/plot\":932,\"../bar/uniform_text\":937,\"../pie/helpers\":1166,\"../pie/plot\":1170,d3:169}],1064:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../pie/style_one\"),a=t(\"../bar/uniform_text\").resizeText;e.exports=function(t){var e=t._fullLayout._funnelarealayer.selectAll(\".trace\");a(t,e,\"funnelarea\"),e.each((function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll(\"path.surface\").each((function(t){n.select(this).call(i,t,e)}))}))}},{\"../bar/uniform_text\":937,\"../pie/style_one\":1172,d3:169}],1065:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),i=t(\"../../plots/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../components/colorscale/attributes\"),s=(t(\"../../constants/docs\").FORMAT_LINK,t(\"../../lib/extend\").extendFlat);e.exports=s({z:{valType:\"data_array\",editType:\"calc\"},x:s({},n.x,{impliedEdits:{xtype:\"array\"}}),x0:s({},n.x0,{impliedEdits:{xtype:\"scaled\"}}),dx:s({},n.dx,{impliedEdits:{xtype:\"scaled\"}}),y:s({},n.y,{impliedEdits:{ytype:\"array\"}}),y0:s({},n.y0,{impliedEdits:{ytype:\"scaled\"}}),dy:s({},n.dy,{impliedEdits:{ytype:\"scaled\"}}),xperiod:s({},n.xperiod,{impliedEdits:{xtype:\"scaled\"}}),yperiod:s({},n.yperiod,{impliedEdits:{ytype:\"scaled\"}}),xperiod0:s({},n.xperiod0,{impliedEdits:{xtype:\"scaled\"}}),yperiod0:s({},n.yperiod0,{impliedEdits:{ytype:\"scaled\"}}),xperiodalignment:s({},n.xperiodalignment,{impliedEdits:{xtype:\"scaled\"}}),yperiodalignment:s({},n.yperiodalignment,{impliedEdits:{ytype:\"scaled\"}}),text:{valType:\"data_array\",editType:\"calc\"},hovertext:{valType:\"data_array\",editType:\"calc\"},transpose:{valType:\"boolean\",dflt:!1,editType:\"calc\"},xtype:{valType:\"enumerated\",values:[\"array\",\"scaled\"],editType:\"calc+clearAxisTypes\"},ytype:{valType:\"enumerated\",values:[\"array\",\"scaled\"],editType:\"calc+clearAxisTypes\"},zsmooth:{valType:\"enumerated\",values:[\"fast\",\"best\",!1],dflt:!1,editType:\"calc\"},hoverongaps:{valType:\"boolean\",dflt:!0,editType:\"none\"},connectgaps:{valType:\"boolean\",editType:\"calc\"},xgap:{valType:\"number\",dflt:0,min:0,editType:\"plot\"},ygap:{valType:\"number\",dflt:0,min:0,editType:\"plot\"},zhoverformat:{valType:\"string\",dflt:\"\",editType:\"none\"},hovertemplate:a(),showlegend:s({},i.showlegend,{dflt:!1})},{transforms:void 0},o(\"\",{cLetter:\"z\",autoColorDflt:!1}))},{\"../../components/colorscale/attributes\":650,\"../../constants/docs\":748,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../scatter/attributes\":1187}],1066:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),o=t(\"../../plots/cartesian/align_period\"),s=t(\"../histogram2d/calc\"),l=t(\"../../components/colorscale/calc\"),c=t(\"./convert_column_xyz\"),u=t(\"./clean_2d_array\"),f=t(\"./interp2d\"),h=t(\"./find_empties\"),p=t(\"./make_bound_array\"),d=t(\"../../constants/numerical\").BADNUM;function g(t){for(var e=[],r=t.length,n=0;n<r;n++){var i=t[n];i!==d&&e.push(i)}return e}e.exports=function(t,e){var r,m,v,y,x,b,_,w,T,k,M,A=a.getFromId(t,e.xaxis||\"x\"),S=a.getFromId(t,e.yaxis||\"y\"),E=n.traceIs(e,\"contour\"),C=n.traceIs(e,\"histogram\"),L=n.traceIs(e,\"gl2d\"),I=E?\"best\":e.zsmooth;if(A._minDtick=0,S._minDtick=0,C)y=(M=s(t,e)).orig_x,r=M.x,m=M.x0,v=M.dx,w=M.orig_y,x=M.y,b=M.y0,_=M.dy,T=M.z;else{var P=e.z;i.isArray1D(P)?(c(e,A,S,\"x\",\"y\",[\"z\"]),r=e._x,x=e._y,P=e._z):(y=e.x?A.makeCalcdata(e,\"x\"):[],w=e.y?S.makeCalcdata(e,\"y\"):[],r=o(e,A,\"x\",y),x=o(e,S,\"y\",w),e._x=r,e._y=x),m=e.x0,v=e.dx,b=e.y0,_=e.dy,T=u(P,e,A,S)}function z(t){I=e._input.zsmooth=e.zsmooth=!1,i.warn('cannot use zsmooth: \"fast\": '+t)}if((A.rangebreaks||S.rangebreaks)&&(T=function(t,e,r){for(var n=[],i=-1,a=0;a<r.length;a++)if(e[a]!==d){i++,n[i]=[];for(var o=0;o<r[a].length;o++)t[o]!==d&&n[i].push(r[a][o])}return n}(r,x,T),C||(r=g(r),x=g(x),e._x=r,e._y=x)),C||!E&&!e.connectgaps||(e._emptypoints=h(T),f(T,e._emptypoints)),\"fast\"===I)if(\"log\"===A.type||\"log\"===S.type)z(\"log axis found\");else if(!C){if(r.length){var O=(r[r.length-1]-r[0])/(r.length-1),D=Math.abs(O/100);for(k=0;k<r.length-1;k++)if(Math.abs(r[k+1]-r[k]-O)>D){z(\"x scale is not linear\");break}}if(x.length&&\"fast\"===I){var R=(x[x.length-1]-x[0])/(x.length-1),F=Math.abs(R/100);for(k=0;k<x.length-1;k++)if(Math.abs(x[k+1]-x[k]-R)>F){z(\"y scale is not linear\");break}}}var B=i.maxRowLength(T),N=\"scaled\"===e.xtype?\"\":r,j=p(e,N,m,v,B,A),U=\"scaled\"===e.ytype?\"\":x,V=p(e,U,b,_,T.length,S);L||(e._extremes[A._id]=a.findExtremes(A,j),e._extremes[S._id]=a.findExtremes(S,V));var q={x:j,y:V,z:T,text:e._text||e.text,hovertext:e._hovertext||e.hovertext};if(e.xperiodalignment&&y&&(q.orig_x=y),e.yperiodalignment&&w&&(q.orig_y=w),N&&N.length===j.length-1&&(q.xCenter=N),U&&U.length===V.length-1&&(q.yCenter=U),C&&(q.xRanges=M.xRanges,q.yRanges=M.yRanges,q.pts=M.pts),E||l(t,e,{vals:T,cLetter:\"z\"}),E&&e.contours&&\"heatmap\"===e.contours.coloring){var H={type:\"contour\"===e.type?\"heatmap\":\"histogram2d\",xcalendar:e.xcalendar,ycalendar:e.ycalendar};q.xfill=p(H,N,m,v,B,A),q.yfill=p(H,U,b,_,T.length,S)}return[q]}},{\"../../components/colorscale/calc\":651,\"../../constants/numerical\":753,\"../../lib\":778,\"../../plots/cartesian/align_period\":825,\"../../plots/cartesian/axes\":828,\"../../registry\":911,\"../histogram2d/calc\":1098,\"./clean_2d_array\":1067,\"./convert_column_xyz\":1069,\"./find_empties\":1071,\"./interp2d\":1074,\"./make_bound_array\":1075}],1067:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r,o){var s,l,c,u,f,h;function p(t){if(n(t))return+t}if(e&&e.transpose){for(s=0,f=0;f<t.length;f++)s=Math.max(s,t[f].length);if(0===s)return!1;c=function(t){return t.length},u=function(t,e,r){return(t[r]||[])[e]}}else s=t.length,c=function(t,e){return t[e].length},u=function(t,e,r){return(t[e]||[])[r]};var d=function(t,e,r){return e===a||r===a?a:u(t,e,r)};function g(t){if(e&&\"carpet\"!==e.type&&\"contourcarpet\"!==e.type&&t&&\"category\"===t.type&&e[\"_\"+t._id.charAt(0)].length){var r=t._id.charAt(0),n={},o=e[\"_\"+r+\"CategoryMap\"]||e[r];for(f=0;f<o.length;f++)n[o[f]]=f;return function(e){var r=n[t._categories[e]];return r+1?r:a}}return i.identity}var m=g(r),v=g(o);o&&\"category\"===o.type&&(s=o._categories.length);var y=new Array(s);for(f=0;f<s;f++)for(l=r&&\"category\"===r.type?r._categories.length:c(t,f),y[f]=new Array(l),h=0;h<l;h++)y[f][h]=p(d(t,v(f),m(h)));return y}},{\"../../constants/numerical\":753,\"../../lib\":778,\"fast-isnumeric\":241}],1068:[function(t,e,r){\"use strict\";e.exports={min:\"zmin\",max:\"zmax\"}},{}],1069:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../constants/numerical\").BADNUM,a=t(\"../../plots/cartesian/align_period\");e.exports=function(t,e,r,o,s,l){var c=t._length,u=e.makeCalcdata(t,o),f=r.makeCalcdata(t,s);u=a(t,e,o,u),f=a(t,r,s,f);var h,p,d,g,m=t.text,v=void 0!==m&&n.isArray1D(m),y=t.hovertext,x=void 0!==y&&n.isArray1D(y),b=n.distinctVals(u),_=b.vals,w=n.distinctVals(f),T=w.vals,k=[],M=T.length,A=_.length;for(h=0;h<l.length;h++)k[h]=n.init2dArray(M,A);v&&(d=n.init2dArray(M,A)),x&&(g=n.init2dArray(M,A));var S=n.init2dArray(M,A);for(h=0;h<c;h++)if(u[h]!==i&&f[h]!==i){var E=n.findBin(u[h]+b.minDiff/2,_),C=n.findBin(f[h]+w.minDiff/2,T);for(p=0;p<l.length;p++){var L=t[l[p]];k[p][C][E]=L[h],S[C][E]=h}v&&(d[C][E]=m[h]),x&&(g[C][E]=y[h])}for(t[\"_\"+o]=_,t[\"_\"+s]=T,p=0;p<l.length;p++)t[\"_\"+l[p]]=k[p];v&&(t._text=d),x&&(t._hovertext=g),e&&\"category\"===e.type&&(t[\"_\"+o+\"CategoryMap\"]=_.map((function(t){return e._categories[t]}))),r&&\"category\"===r.type&&(t[\"_\"+s+\"CategoryMap\"]=T.map((function(t){return r._categories[t]}))),t._after2before=S}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../../plots/cartesian/align_period\":825}],1070:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./xyz_defaults\"),a=t(\"../scatter/period_defaults\"),o=t(\"./style_defaults\"),s=t(\"../../components/colorscale/defaults\"),l=t(\"./attributes\");e.exports=function(t,e,r,c){function u(r,i){return n.coerce(t,e,l,r,i)}i(t,e,u,c)?(a(t,e,c,u),u(\"text\"),u(\"hovertext\"),u(\"hovertemplate\"),o(t,e,u,c),u(\"hoverongaps\"),u(\"connectgaps\",n.isArray1D(e.z)&&!1!==e.zsmooth),s(t,e,c,u,{prefix:\"\",cLetter:\"z\"})):e.visible=!1}},{\"../../components/colorscale/defaults\":653,\"../../lib\":778,\"../scatter/period_defaults\":1207,\"./attributes\":1065,\"./style_defaults\":1078,\"./xyz_defaults\":1079}],1071:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").maxRowLength;e.exports=function(t){var e,r,i,a,o,s,l,c,u=[],f={},h=[],p=t[0],d=[],g=[0,0,0],m=n(t);for(r=0;r<t.length;r++)for(e=d,d=p,p=t[r+1]||[],i=0;i<m;i++)void 0===d[i]&&((s=(void 0!==d[i-1]?1:0)+(void 0!==d[i+1]?1:0)+(void 0!==e[i]?1:0)+(void 0!==p[i]?1:0))?(0===r&&s++,0===i&&s++,r===t.length-1&&s++,i===d.length-1&&s++,s<4&&(f[[r,i]]=[r,i,s]),u.push([r,i,s])):h.push([r,i]));for(;h.length;){for(l={},c=!1,o=h.length-1;o>=0;o--)(s=((f[[(r=(a=h[o])[0])-1,i=a[1]]]||g)[2]+(f[[r+1,i]]||g)[2]+(f[[r,i-1]]||g)[2]+(f[[r,i+1]]||g)[2])/20)&&(l[a]=[r,i,s],h.splice(o,1),c=!0);if(!c)throw\"findEmpties iterated with no new neighbors\";for(a in l)f[a]=l[a],u.push(l[a])}return u.sort((function(t,e){return e[2]-t[2]}))}},{\"../../lib\":778}],1072:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),i=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),o=t(\"../../components/colorscale\").extractOpts;e.exports=function(t,e,r,s,l,c){var u,f,h,p,d=t.cd[0],g=d.trace,m=t.xa,v=t.ya,y=d.x,x=d.y,b=d.z,_=d.xCenter,w=d.yCenter,T=d.zmask,k=g.zhoverformat,M=y,A=x;if(!1!==t.index){try{h=Math.round(t.index[1]),p=Math.round(t.index[0])}catch(e){return void i.error(\"Error hovering on heatmap, pointNumber must be [row,col], found:\",t.index)}if(h<0||h>=b[0].length||p<0||p>b.length)return}else{if(n.inbox(e-y[0],e-y[y.length-1],0)>0||n.inbox(r-x[0],r-x[x.length-1],0)>0)return;if(c){var S;for(M=[2*y[0]-y[1]],S=1;S<y.length;S++)M.push((y[S]+y[S-1])/2);for(M.push([2*y[y.length-1]-y[y.length-2]]),A=[2*x[0]-x[1]],S=1;S<x.length;S++)A.push((x[S]+x[S-1])/2);A.push([2*x[x.length-1]-x[x.length-2]])}h=Math.max(0,Math.min(M.length-2,i.findBin(e,M))),p=Math.max(0,Math.min(A.length-2,i.findBin(r,A)))}var E,C,L=m.c2p(y[h]),I=m.c2p(y[h+1]),P=v.c2p(x[p]),z=v.c2p(x[p+1]);c?(E=d.orig_x||y,C=d.orig_y||x,I=L,u=E[h],z=P,f=C[p]):(E=d.orig_x||_||y,C=d.orig_y||w||x,u=_?E[h]:(E[h]+E[h+1])/2,f=w?C[p]:(C[p]+C[p+1])/2,m&&\"category\"===m.type&&(u=y[h]),v&&\"category\"===v.type&&(f=x[p]),g.zsmooth&&(L=I=m.c2p(u),P=z=v.c2p(f)));var O=b[p][h];if(T&&!T[p][h]&&(O=void 0),void 0!==O||g.hoverongaps){var D;Array.isArray(d.hovertext)&&Array.isArray(d.hovertext[p])?D=d.hovertext[p][h]:Array.isArray(d.text)&&Array.isArray(d.text[p])&&(D=d.text[p][h]);var R=o(g),F={type:\"linear\",range:[R.min,R.max],hoverformat:k,_separators:m._separators,_numFormat:m._numFormat},B=a.tickText(F,O,\"hover\").text;return[i.extendFlat(t,{index:g._after2before?g._after2before[p][h]:[p,h],distance:t.maxHoverDistance,spikeDistance:t.maxSpikeDistance,x0:L,x1:I,y0:P,y1:z,xLabelVal:u,yLabelVal:f,zLabelVal:O,zLabel:B,text:D})]}}},{\"../../components/colorscale\":655,\"../../components/fx\":683,\"../../lib\":778,\"../../plots/cartesian/axes\":828}],1073:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),colorbar:t(\"./colorbar\"),style:t(\"./style\"),hoverPoints:t(\"./hover\"),moduleType:\"trace\",name:\"heatmap\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"showLegend\"],meta:{}}},{\"../../plots/cartesian\":841,\"./attributes\":1065,\"./calc\":1066,\"./colorbar\":1068,\"./defaults\":1070,\"./hover\":1072,\"./plot\":1076,\"./style\":1077}],1074:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=[[-1,0],[1,0],[0,-1],[0,1]];function a(t){return.5-.25*Math.min(1,.5*t)}function o(t,e,r){var n,a,o,s,l,c,u,f,h,p,d,g,m,v=0;for(s=0;s<e.length;s++){for(a=(n=e[s])[0],o=n[1],d=t[a][o],p=0,h=0,l=0;l<4;l++)(u=t[a+(c=i[l])[0]])&&void 0!==(f=u[o+c[1]])&&(0===p?g=m=f:(g=Math.min(g,f),m=Math.max(m,f)),h++,p+=f);if(0===h)throw\"iterateInterp2d order is wrong: no defined neighbors\";t[a][o]=p/h,void 0===d?h<4&&(v=1):(t[a][o]=(1+r)*t[a][o]-r*d,m>g&&(v=Math.max(v,Math.abs(t[a][o]-d)/(m-g))))}return v}e.exports=function(t,e){var r,i=1;for(o(t,e),r=0;r<e.length&&!(e[r][2]<4);r++);for(e=e.slice(r),r=0;r<100&&i>.01;r++)i=o(t,e,a(i));return i>.01&&n.log(\"interp2d didn't converge quickly\",i),t}},{\"../../lib\":778}],1075:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r,a,o,s){var l,c,u,f=[],h=n.traceIs(t,\"contour\"),p=n.traceIs(t,\"histogram\"),d=n.traceIs(t,\"gl2d\");if(i(e)&&e.length>1&&!p&&\"category\"!==s.type){var g=e.length;if(!(g<=o))return h?e.slice(0,o):e.slice(0,o+1);if(h||d)f=e.slice(0,o);else if(1===o)f=[e[0]-.5,e[0]+.5];else{for(f=[1.5*e[0]-.5*e[1]],u=1;u<g;u++)f.push(.5*(e[u-1]+e[u]));f.push(1.5*e[g-1]-.5*e[g-2])}if(g<o){var m=f[f.length-1],v=m-f[f.length-2];for(u=g;u<o;u++)m+=v,f.push(m)}}else{var y=t[s._id.charAt(0)+\"calendar\"];if(p)l=s.r2c(r,0,y);else if(i(e)&&1===e.length)l=e[0];else if(void 0===r)l=0;else{l=(\"log\"===s.type?s.d2c:s.r2c)(r,0,y)}for(c=a||1,u=h||d?0:-.5;u<o;u++)f.push(l+c*u)}return f}},{\"../../lib\":778,\"../../registry\":911}],1076:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"tinycolor2\"),a=t(\"../../registry\"),o=t(\"../../lib\"),s=t(\"../../components/colorscale\").makeColorScaleFuncFromTrace,l=t(\"../../constants/xmlns_namespaces\");function c(t,e){var r=e.length-2,n=o.constrain(o.findBin(t,e),0,r),i=e[n],a=e[n+1],s=o.constrain(n+(t-i)/(a-i)-.5,0,r),l=Math.round(s),c=Math.abs(s-l);return s&&s!==r&&c?{bin0:l,frac:c,bin1:Math.round(l+c/(s-l))}:{bin0:l,bin1:l,frac:0}}function u(t,e){var r=e.length-1,n=o.constrain(o.findBin(t,e),0,r),i=e[n],a=(t-i)/(e[n+1]-i)||0;return a<=0?{bin0:n,bin1:n,frac:0}:a<.5?{bin0:n,bin1:n+1,frac:a}:{bin0:n+1,bin1:n,frac:1-a}}function f(t,e,r){t[e]=r[0],t[e+1]=r[1],t[e+2]=r[2],t[e+3]=Math.round(255*r[3])}e.exports=function(t,e,r,h){var p=e.xaxis,d=e.yaxis;o.makeTraceGroups(h,r,\"hm\").each((function(e){var r,h,g,m,v,y,x=n.select(this),b=e[0],_=b.trace,w=b.z,T=b.x,k=b.y,M=b.xCenter,A=b.yCenter,S=a.traceIs(_,\"contour\"),E=S?\"best\":_.zsmooth,C=w.length,L=o.maxRowLength(w),I=!1,P=!1;for(y=0;void 0===r&&y<T.length-1;)r=p.c2p(T[y]),y++;for(y=T.length-1;void 0===h&&y>0;)h=p.c2p(T[y]),y--;for(h<r&&(g=h,h=r,r=g,I=!0),y=0;void 0===m&&y<k.length-1;)m=d.c2p(k[y]),y++;for(y=k.length-1;void 0===v&&y>0;)v=d.c2p(k[y]),y--;if(v<m&&(g=m,m=v,v=g,P=!0),S&&(M=T,A=k,T=b.xfill,k=b.yfill),\"fast\"!==E){var z=\"best\"===E?0:.5;r=Math.max(-z*p._length,r),h=Math.min((1+z)*p._length,h),m=Math.max(-z*d._length,m),v=Math.min((1+z)*d._length,v)}var O=Math.round(h-r),D=Math.round(v-m);if(O<=0||D<=0){x.selectAll(\"image\").data([]).exit().remove()}else{var R,F;\"fast\"===E?(R=L,F=C):(R=O,F=D);var B=document.createElement(\"canvas\");B.width=R,B.height=F;var N,j,U=B.getContext(\"2d\"),V=s(_,{noNumericCheck:!0,returnArray:!0});\"fast\"===E?(N=I?function(t){return L-1-t}:o.identity,j=P?function(t){return C-1-t}:o.identity):(N=function(t){return o.constrain(Math.round(p.c2p(T[t])-r),0,O)},j=function(t){return o.constrain(Math.round(d.c2p(k[t])-m),0,D)});var q,H,G,Y,W,X=j(0),Z=[X,X],J=I?0:1,K=P?0:1,Q=0,$=0,tt=0,et=0;if(E){var rt,nt=0;try{rt=new Uint8Array(O*D*4)}catch(t){rt=new Array(O*D*4)}if(\"best\"===E){var it,at,ot,st=M||T,lt=A||k,ct=new Array(st.length),ut=new Array(lt.length),ft=new Array(O),ht=M?u:c,pt=A?u:c;for(y=0;y<st.length;y++)ct[y]=Math.round(p.c2p(st[y])-r);for(y=0;y<lt.length;y++)ut[y]=Math.round(d.c2p(lt[y])-m);for(y=0;y<O;y++)ft[y]=ht(y,ct);for(H=0;H<D;H++)for(at=w[(it=pt(H,ut)).bin0],ot=w[it.bin1],y=0;y<O;y++,nt+=4)f(rt,nt,W=kt(at,ot,ft[y],it))}else for(H=0;H<C;H++)for(Y=w[H],Z=j(H),y=0;y<O;y++)W=Tt(Y[y],1),f(rt,nt=4*(Z*O+N(y)),W);var dt=U.createImageData(O,D);try{dt.data.set(rt)}catch(t){var gt=dt.data,mt=gt.length;for(H=0;H<mt;H++)gt[H]=rt[H]}U.putImageData(dt,0,0)}else{var vt=_.xgap,yt=_.ygap,xt=Math.floor(vt/2),bt=Math.floor(yt/2);for(H=0;H<C;H++)if(Y=w[H],Z.reverse(),Z[K]=j(H+1),Z[0]!==Z[1]&&void 0!==Z[0]&&void 0!==Z[1])for(q=[G=N(0),G],y=0;y<L;y++)q.reverse(),q[J]=N(y+1),q[0]!==q[1]&&void 0!==q[0]&&void 0!==q[1]&&(W=Tt(Y[y],(q[1]-q[0])*(Z[1]-Z[0])),U.fillStyle=\"rgba(\"+W.join(\",\")+\")\",U.fillRect(q[0]+xt,Z[0]+bt,q[1]-q[0]-vt,Z[1]-Z[0]-yt))}$=Math.round($/Q),tt=Math.round(tt/Q),et=Math.round(et/Q);var _t=i(\"rgb(\"+$+\",\"+tt+\",\"+et+\")\");t._hmpixcount=(t._hmpixcount||0)+Q,t._hmlumcount=(t._hmlumcount||0)+Q*_t.getLuminance();var wt=x.selectAll(\"image\").data(e);wt.enter().append(\"svg:image\").attr({xmlns:l.svg,preserveAspectRatio:\"none\"}),wt.attr({height:D,width:O,x:r,y:m,\"xlink:href\":B.toDataURL(\"image/png\")})}function Tt(t,e){if(void 0!==t){var r=V(t);return r[0]=Math.round(r[0]),r[1]=Math.round(r[1]),r[2]=Math.round(r[2]),Q+=e,$+=r[0]*e,tt+=r[1]*e,et+=r[2]*e,r}return[0,0,0,0]}function kt(t,e,r,n){var i=t[r.bin0];if(void 0===i)return Tt(void 0,1);var a,o=t[r.bin1],s=e[r.bin0],l=e[r.bin1],c=o-i||0,u=s-i||0;return a=void 0===o?void 0===l?0:void 0===s?2*(l-i):2*(2*l-s-i)/3:void 0===l?void 0===s?0:2*(2*i-o-s)/3:void 0===s?2*(2*l-o-i)/3:l+i-o-s,Tt(i+r.frac*c+n.frac*(u+r.frac*a))}}))}},{\"../../components/colorscale\":655,\"../../constants/xmlns_namespaces\":754,\"../../lib\":778,\"../../registry\":911,d3:169,tinycolor2:576}],1077:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports=function(t){n.select(t).selectAll(\".hm image\").style(\"opacity\",(function(t){return t.trace.opacity}))}},{d3:169}],1078:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){!1===r(\"zsmooth\")&&(r(\"xgap\"),r(\"ygap\")),r(\"zhoverformat\")}},{}],1079:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../../registry\");function o(t,e){var r=e(t);return\"scaled\"===(r?e(t+\"type\",\"array\"):\"scaled\")&&(e(t+\"0\"),e(\"d\"+t)),r}e.exports=function(t,e,r,s,l,c){var u,f,h=r(\"z\");if(l=l||\"x\",c=c||\"y\",void 0===h||!h.length)return 0;if(i.isArray1D(t.z)){u=r(l),f=r(c);var p=i.minRowLength(u),d=i.minRowLength(f);if(0===p||0===d)return 0;e._length=Math.min(p,d,h.length)}else{if(u=o(l,r),f=o(c,r),!function(t){for(var e,r=!0,a=!1,o=!1,s=0;s<t.length;s++){if(e=t[s],!i.isArrayOrTypedArray(e)){r=!1;break}e.length>0&&(a=!0);for(var l=0;l<e.length;l++)if(n(e[l])){o=!0;break}}return r&&a&&o}(h))return 0;r(\"transpose\"),e._length=null}return\"heatmapgl\"===t.type||\"contourgl\"===t.type||a.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[l,c],s),!0}},{\"../../lib\":778,\"../../registry\":911,\"fast-isnumeric\":241}],1080:[function(t,e,r){\"use strict\";for(var n=t(\"../heatmap/attributes\"),i=t(\"../../components/colorscale/attributes\"),a=t(\"../../lib/extend\").extendFlat,o=t(\"../../plot_api/edit_types\").overrideAll,s=[\"z\",\"x\",\"x0\",\"dx\",\"y\",\"y0\",\"dy\",\"text\",\"transpose\",\"xtype\",\"ytype\"],l={},c=0;c<s.length;c++){var u=s[c];l[u]=n[u]}l.zsmooth={valType:\"enumerated\",values:[\"fast\",!1],dflt:\"fast\",editType:\"calc\"},a(l,i(\"\",{cLetter:\"z\",autoColorDflt:!1})),e.exports=o(l,\"calc\",\"nested\")},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../heatmap/attributes\":1065}],1081:[function(t,e,r){\"use strict\";var n=t(\"gl-heatmap2d\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../lib/str2rgbarray\");function o(t,e){this.scene=t,this.uid=e,this.type=\"heatmapgl\",this.name=\"\",this.hoverinfo=\"all\",this.xData=[],this.yData=[],this.zData=[],this.textLabels=[],this.idToIndex=[],this.bounds=[0,0,0,0],this.options={zsmooth:\"fast\",z:[],x:[],y:[],shape:[0,0],colorLevels:[0],colorValues:[0,0,0,1]},this.heatmap=n(t.glplot,this.options),this.heatmap._trace=this}var s=o.prototype;s.handlePick=function(t){var e=this.options,r=e.shape,n=t.pointId,i=n%r[0],a=Math.floor(n/r[0]),o=n;return{trace:this,dataCoord:t.dataCoord,traceCoord:[e.x[i],e.y[a],e.z[o]],textLabel:this.textLabels[n],name:this.name,pointIndex:[a,i],hoverinfo:this.hoverinfo}},s.update=function(t,e){var r=e[0];this.index=t.index,this.name=t.name,this.hoverinfo=t.hoverinfo;var n=r.z;this.options.z=[].concat.apply([],n);var o=n[0].length,s=n.length;this.options.shape=[o,s],this.options.x=r.x,this.options.y=r.y,this.options.zsmooth=t.zsmooth;var l=function(t){for(var e=t.colorscale,r=t.zmin,n=t.zmax,i=e.length,o=new Array(i),s=new Array(4*i),l=0;l<i;l++){var c=e[l],u=a(c[1]);o[l]=r+c[0]*(n-r);for(var f=0;f<4;f++)s[4*l+f]=u[f]}return{colorLevels:o,colorValues:s}}(t);this.options.colorLevels=l.colorLevels,this.options.colorValues=l.colorValues,this.textLabels=[].concat.apply([],t.text),this.heatmap.update(this.options);var c,u,f=this.scene.xaxis,h=this.scene.yaxis;!1===t.zsmooth&&(c={ppad:r.x[1]-r.x[0]},u={ppad:r.y[1]-r.y[0]}),t._extremes[f._id]=i.findExtremes(f,r.x,c),t._extremes[h._id]=i.findExtremes(h,r.y,u)},s.dispose=function(){this.heatmap.dispose()},e.exports=function(t,e,r){var n=new o(t,e.uid);return n.update(e,r),n}},{\"../../lib/str2rgbarray\":802,\"../../plots/cartesian/axes\":828,\"gl-heatmap2d\":271}],1082:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../heatmap/xyz_defaults\"),a=t(\"../../components/colorscale/defaults\"),o=t(\"./attributes\");e.exports=function(t,e,r,s){function l(r,i){return n.coerce(t,e,o,r,i)}i(t,e,l,s)?(l(\"text\"),l(\"zsmooth\"),a(t,e,s,l,{prefix:\"\",cLetter:\"z\"})):e.visible=!1}},{\"../../components/colorscale/defaults\":653,\"../../lib\":778,\"../heatmap/xyz_defaults\":1079,\"./attributes\":1080}],1083:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../heatmap/colorbar\"),calc:t(\"../heatmap/calc\"),plot:t(\"./convert\"),moduleType:\"trace\",name:\"heatmapgl\",basePlotModule:t(\"../../plots/gl2d\"),categories:[\"gl\",\"gl2d\",\"2dMap\"],meta:{}}},{\"../../plots/gl2d\":868,\"../heatmap/calc\":1066,\"../heatmap/colorbar\":1068,\"./attributes\":1080,\"./convert\":1081,\"./defaults\":1082}],1084:[function(t,e,r){\"use strict\";var n=t(\"../bar/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"./bin_attributes\"),o=t(\"./constants\"),s=t(\"../../lib/extend\").extendFlat;e.exports={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},text:s({},n.text,{}),hovertext:s({},n.hovertext,{}),orientation:n.orientation,histfunc:{valType:\"enumerated\",values:[\"count\",\"sum\",\"avg\",\"min\",\"max\"],dflt:\"count\",editType:\"calc\"},histnorm:{valType:\"enumerated\",values:[\"\",\"percent\",\"probability\",\"density\",\"probability density\"],dflt:\"\",editType:\"calc\"},cumulative:{enabled:{valType:\"boolean\",dflt:!1,editType:\"calc\"},direction:{valType:\"enumerated\",values:[\"increasing\",\"decreasing\"],dflt:\"increasing\",editType:\"calc\"},currentbin:{valType:\"enumerated\",values:[\"include\",\"exclude\",\"half\"],dflt:\"include\",editType:\"calc\"},editType:\"calc\"},nbinsx:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},xbins:a(\"x\",!0),nbinsy:{valType:\"integer\",min:0,dflt:0,editType:\"calc\"},ybins:a(\"y\",!0),autobinx:{valType:\"boolean\",dflt:null,editType:\"calc\"},autobiny:{valType:\"boolean\",dflt:null,editType:\"calc\"},bingroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},hovertemplate:i({},{keys:o.eventDataKeys}),marker:n.marker,offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup,selected:n.selected,unselected:n.unselected,_deprecated:{bardir:n._deprecated.bardir}}},{\"../../lib/extend\":768,\"../../plots/template_attributes\":906,\"../bar/attributes\":921,\"./bin_attributes\":1086,\"./constants\":1090}],1085:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=t.length,n=0,i=0;i<r;i++)e[i]?(t[i]/=e[i],n+=t[i]):t[i]=null;return n}},{}],1086:[function(t,e,r){\"use strict\";e.exports=function(t,e){return{start:{valType:\"any\",editType:\"calc\"},end:{valType:\"any\",editType:\"calc\"},size:{valType:\"any\",editType:\"calc\"},editType:\"calc\"}}},{}],1087:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\");e.exports={count:function(t,e,r){return r[t]++,1},sum:function(t,e,r,i){var a=i[e];return n(a)?(a=Number(a),r[t]+=a,a):0},avg:function(t,e,r,i,a){var o=i[e];return n(o)&&(o=Number(o),r[t]+=o,a[t]++),0},min:function(t,e,r,i){var a=i[e];if(n(a)){if(a=Number(a),!n(r[t]))return r[t]=a,a;if(r[t]>a){var o=a-r[t];return r[t]=a,o}}return 0},max:function(t,e,r,i){var a=i[e];if(n(a)){if(a=Number(a),!n(r[t]))return r[t]=a,a;if(r[t]<a){var o=a-r[t];return r[t]=a,o}}return 0}}},{\"fast-isnumeric\":241}],1088:[function(t,e,r){\"use strict\";var n=t(\"../../constants/numerical\"),i=n.ONEAVGYEAR,a=n.ONEAVGMONTH,o=n.ONEDAY,s=n.ONEHOUR,l=n.ONEMIN,c=n.ONESEC,u=t(\"../../plots/cartesian/axes\").tickIncrement;function f(t,e,r,n){if(t*e<=0)return 1/0;for(var i=Math.abs(e-t),a=\"date\"===r.type,o=h(i,a),s=0;s<10;s++){var l=h(80*o,a);if(o===l)break;if(!p(l,t,e,a,r,n))break;o=l}return o}function h(t,e){return e&&t>c?t>o?t>1.1*i?i:t>1.1*a?a:o:t>s?s:t>l?l:c:Math.pow(10,Math.floor(Math.log(t)/Math.LN10))}function p(t,e,r,n,a,s){if(n&&t>o){var l=d(e,a,s),c=d(r,a,s),u=t===i?0:1;return l[u]!==c[u]}return Math.floor(r/t)-Math.floor(e/t)>.1}function d(t,e,r){var n=e.c2d(t,i,r).split(\"-\");return\"\"===n[0]&&(n.unshift(),n[0]=\"-\"+n[0]),n}e.exports=function(t,e,r,n,a){var s,l,c=-1.1*e,h=-.1*e,p=t-h,d=r[0],g=r[1],m=Math.min(f(d+h,d+p,n,a),f(g+h,g+p,n,a)),v=Math.min(f(d+c,d+h,n,a),f(g+c,g+h,n,a));if(m>v&&v<Math.abs(g-d)/4e3?(s=m,l=!1):(s=Math.min(m,v),l=!0),\"date\"===n.type&&s>o){var y=s===i?1:6,x=s===i?\"M12\":\"M1\";return function(e,r){var o=n.c2d(e,i,a),s=o.indexOf(\"-\",y);s>0&&(o=o.substr(0,s));var c=n.d2c(o,0,a);if(c<e){var f=u(c,x,!1,a);(c+f)/2<e+t&&(c=f)}return r&&l?u(c,x,!0,a):c}}return function(e,r){var n=s*Math.round(e/s);return n+s/10<e&&n+.9*s<e+t&&(n+=s),r&&l&&(n-=s),n}}},{\"../../constants/numerical\":753,\"../../plots/cartesian/axes\":828}],1089:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../../registry\"),o=t(\"../../plots/cartesian/axes\"),s=t(\"../bar/arrays_to_calcdata\"),l=t(\"./bin_functions\"),c=t(\"./norm_functions\"),u=t(\"./average\"),f=t(\"./bin_label_vals\");function h(t,e,r,s,l){var c,u,f,p,d,g,m,v=s+\"bins\",y=t._fullLayout,x=e[\"_\"+s+\"bingroup\"],b=y._histogramBinOpts[x],_=\"overlay\"===y.barmode,w=function(t){return r.r2c(t,0,p)},T=function(t){return r.c2r(t,0,p)},k=\"date\"===r.type?function(t){return t||0===t?i.cleanDate(t,null,p):null}:function(t){return n(t)?Number(t):null};function M(t,e,r){e[t+\"Found\"]?(e[t]=k(e[t]),null===e[t]&&(e[t]=r[t])):(g[t]=e[t]=r[t],i.nestedProperty(u[0],v+\".\"+t).set(r[t]))}if(e[\"_\"+s+\"autoBinFinished\"])delete e[\"_\"+s+\"autoBinFinished\"];else{u=b.traces;var A=[],S=!0,E=!1,C=!1;for(c=0;c<u.length;c++)if((f=u[c]).visible){var L=b.dirs[c];d=f[\"_\"+L+\"pos0\"]=r.makeCalcdata(f,L),A=i.concat(A,d),delete f[\"_\"+s+\"autoBinFinished\"],!0===e.visible&&(S?S=!1:(delete f._autoBin,f[\"_\"+s+\"autoBinFinished\"]=1),a.traceIs(f,\"2dMap\")&&(E=!0),\"histogram2dcontour\"===f.type&&(C=!0))}p=u[0][s+\"calendar\"];var I=o.autoBin(A,r,b.nbins,E,p,b.sizeFound&&b.size),P=u[0]._autoBin={};if(g=P[b.dirs[0]]={},C&&(b.size||(I.start=T(o.tickIncrement(w(I.start),I.size,!0,p))),void 0===b.end&&(I.end=T(o.tickIncrement(w(I.end),I.size,!1,p)))),_&&!a.traceIs(e,\"2dMap\")&&0===I._dataSpan&&\"category\"!==r.type&&\"multicategory\"!==r.type){if(l)return[I,d,!0];I=function(t,e,r,n,a){var o,s,l,c=t._fullLayout,u=function(t,e){for(var r=e.xaxis,n=e.yaxis,i=e.orientation,a=[],o=t._fullData,s=0;s<o.length;s++){var l=o[s];\"histogram\"===l.type&&!0===l.visible&&l.orientation===i&&l.xaxis===r&&l.yaxis===n&&a.push(l)}return a}(t,e),f=!1,p=1/0,d=[e];for(o=0;o<u.length;o++)if((s=u[o])===e)f=!0;else if(f){var g=h(t,s,r,n,!0),m=g[0],v=g[2];s[\"_\"+n+\"autoBinFinished\"]=1,s[\"_\"+n+\"pos0\"]=g[1],v?d.push(s):p=Math.min(p,m.size)}else l=c._histogramBinOpts[s[\"_\"+n+\"bingroup\"]],p=Math.min(p,l.size||s[a].size);var y=new Array(d.length);for(o=0;o<d.length;o++)for(var x=d[o][\"_\"+n+\"pos0\"],b=0;b<x.length;b++)if(void 0!==x[b]){y[o]=x[b];break}isFinite(p)||(p=i.distinctVals(y).minDiff);for(o=0;o<d.length;o++){var _=(s=d[o])[n+\"calendar\"],w={start:r.c2r(y[o]-p/2,0,_),end:r.c2r(y[o]+p/2,0,_),size:p};s._input[a]=s[a]=w,(l=c._histogramBinOpts[s[\"_\"+n+\"bingroup\"]])&&i.extendFlat(l,w)}return e[a]}(t,e,r,s,v)}(m=f.cumulative||{}).enabled&&\"include\"!==m.currentbin&&(\"decreasing\"===m.direction?I.start=T(o.tickIncrement(w(I.start),I.size,!0,p)):I.end=T(o.tickIncrement(w(I.end),I.size,!1,p))),b.size=I.size,b.sizeFound||(g.size=I.size,i.nestedProperty(u[0],v+\".size\").set(I.size)),M(\"start\",b,I),M(\"end\",b,I)}d=e[\"_\"+s+\"pos0\"],delete e[\"_\"+s+\"pos0\"];var z=e._input[v]||{},O=i.extendFlat({},b),D=b.start,R=r.r2l(z.start),F=void 0!==R;if((b.startFound||F)&&R!==r.r2l(D)){var B=F?R:i.aggNums(Math.min,null,d),N={type:\"category\"===r.type||\"multicategory\"===r.type?\"linear\":r.type,r2l:r.r2l,dtick:b.size,tick0:D,calendar:p,range:[B,o.tickIncrement(B,b.size,!1,p)].map(r.l2r)},j=o.tickFirst(N);j>r.r2l(B)&&(j=o.tickIncrement(j,b.size,!0,p)),O.start=r.l2r(j),F||i.nestedProperty(e,v+\".start\").set(O.start)}var U=b.end,V=r.r2l(z.end),q=void 0!==V;if((b.endFound||q)&&V!==r.r2l(U)){var H=q?V:i.aggNums(Math.max,null,d);O.end=r.l2r(H),q||i.nestedProperty(e,v+\".start\").set(O.end)}var G=\"autobin\"+s;return!1===e._input[G]&&(e._input[v]=i.extendFlat({},e[v]||{}),delete e._input[G],delete e[G]),[O,d]}e.exports={calc:function(t,e){var r,a,p,d,g=[],m=[],v=o.getFromId(t,\"h\"===e.orientation?e.yaxis:e.xaxis),y=\"h\"===e.orientation?\"y\":\"x\",x={x:\"y\",y:\"x\"}[y],b=e[y+\"calendar\"],_=e.cumulative,w=h(t,e,v,y),T=w[0],k=w[1],M=\"string\"==typeof T.size,A=[],S=M?A:T,E=[],C=[],L=[],I=0,P=e.histnorm,z=e.histfunc,O=-1!==P.indexOf(\"density\");_.enabled&&O&&(P=P.replace(/ ?density$/,\"\"),O=!1);var D,R=\"max\"===z||\"min\"===z?null:0,F=l.count,B=c[P],N=!1,j=function(t){return v.r2c(t,0,b)};for(i.isArrayOrTypedArray(e[x])&&\"count\"!==z&&(D=e[x],N=\"avg\"===z,F=l[z]),r=j(T.start),p=j(T.end)+(r-o.tickIncrement(r,T.size,!1,b))/1e6;r<p&&g.length<1e6&&(a=o.tickIncrement(r,T.size,!1,b),g.push((r+a)/2),m.push(R),L.push([]),A.push(r),O&&E.push(1/(a-r)),N&&C.push(0),!(a<=r));)r=a;A.push(r),M||\"date\"!==v.type||(S={start:j(S.start),end:j(S.end),size:S.size}),t._fullLayout._roundFnOpts||(t._fullLayout._roundFnOpts={});var U=e[\"_\"+y+\"bingroup\"],V={leftGap:1/0,rightGap:1/0};U&&(t._fullLayout._roundFnOpts[U]||(t._fullLayout._roundFnOpts[U]=V),V=t._fullLayout._roundFnOpts[U]);var q,H=m.length,G=!0,Y=V.leftGap,W=V.rightGap,X={};for(r=0;r<k.length;r++){var Z=k[r];(d=i.findBin(Z,S))>=0&&d<H&&(I+=F(d,r,m,D,C),G&&L[d].length&&Z!==k[L[d][0]]&&(G=!1),L[d].push(r),X[r]=d,Y=Math.min(Y,Z-A[d]),W=Math.min(W,A[d+1]-Z))}V.leftGap=Y,V.rightGap=W,G||(q=function(e,r){return function(){var n=t._fullLayout._roundFnOpts[U];return f(n.leftGap,n.rightGap,A,v,b)(e,r)}}),N&&(I=u(m,C)),B&&B(m,I,E),_.enabled&&function(t,e,r){var n,i,a;function o(e){a=t[e],t[e]/=2}function s(e){i=t[e],t[e]=a+i/2,a+=i}if(\"half\"===r)if(\"increasing\"===e)for(o(0),n=1;n<t.length;n++)s(n);else for(o(t.length-1),n=t.length-2;n>=0;n--)s(n);else if(\"increasing\"===e){for(n=1;n<t.length;n++)t[n]+=t[n-1];\"exclude\"===r&&(t.unshift(0),t.pop())}else{for(n=t.length-2;n>=0;n--)t[n]+=t[n+1];\"exclude\"===r&&(t.push(0),t.shift())}}(m,_.direction,_.currentbin);var J=Math.min(g.length,m.length),K=[],Q=0,$=J-1;for(r=0;r<J;r++)if(m[r]){Q=r;break}for(r=J-1;r>=Q;r--)if(m[r]){$=r;break}for(r=Q;r<=$;r++)if(n(g[r])&&n(m[r])){var tt={p:g[r],s:m[r],b:0};_.enabled||(tt.pts=L[r],G?tt.ph0=tt.ph1=L[r].length?k[L[r][0]]:g[r]:(e._computePh=!0,tt.ph0=q(A[r]),tt.ph1=q(A[r+1],!0))),K.push(tt)}return 1===K.length&&(K[0].width1=o.tickIncrement(K[0].p,T.size,!1,b)-K[0].p),s(K,e),i.isArrayOrTypedArray(e.selectedpoints)&&i.tagSelected(K,e,X),K},calcAllAutoBins:h}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"../../registry\":911,\"../bar/arrays_to_calcdata\":920,\"./average\":1085,\"./bin_functions\":1087,\"./bin_label_vals\":1088,\"./norm_functions\":1096,\"fast-isnumeric\":241}],1090:[function(t,e,r){\"use strict\";e.exports={eventDataKeys:[\"binNumber\"]}},{}],1091:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axis_ids\"),a=t(\"../../registry\").traceIs,o=t(\"../bar/defaults\").handleGroupingDefaults,s=n.nestedProperty,l=t(\"../../plots/cartesian/constraints\").getAxisGroup,c=[{aStr:{x:\"xbins.start\",y:\"ybins.start\"},name:\"start\"},{aStr:{x:\"xbins.end\",y:\"ybins.end\"},name:\"end\"},{aStr:{x:\"xbins.size\",y:\"ybins.size\"},name:\"size\"},{aStr:{x:\"nbinsx\",y:\"nbinsy\"},name:\"nbins\"}],u=[\"x\",\"y\"];e.exports=function(t,e){var r,f,h,p,d,g,m,v=e._histogramBinOpts={},y=[],x={},b=[];function _(t,e){return n.coerce(r._input,r,r._module.attributes,t,e)}function w(t){return\"v\"===t.orientation?\"x\":\"y\"}function T(t,r,a){var o=t.uid+\"__\"+a;r||(r=o);var s=function(t,r){return i.getFromTrace({_fullLayout:e},t,r).type}(t,a),l=t[a+\"calendar\"]||\"\",c=v[r],u=!0;c&&(s===c.axType&&l===c.calendar?(u=!1,c.traces.push(t),c.dirs.push(a)):(r=o,s!==c.axType&&n.warn([\"Attempted to group the bins of trace\",t.index,\"set on a\",\"type:\"+s,\"axis\",\"with bins on\",\"type:\"+c.axType,\"axis.\"].join(\" \")),l!==c.calendar&&n.warn([\"Attempted to group the bins of trace\",t.index,\"set with a\",l,\"calendar\",\"with bins\",c.calendar?\"on a \"+c.calendar+\" calendar\":\"w/o a set calendar\"].join(\" \")))),u&&(v[r]={traces:[t],dirs:[a],axType:s,calendar:t[a+\"calendar\"]||\"\"}),t[\"_\"+a+\"bingroup\"]=r}for(d=0;d<t.length;d++)r=t[d],a(r,\"histogram\")&&(y.push(r),delete r._xautoBinFinished,delete r._yautoBinFinished,a(r,\"2dMap\")||o(r._input,r,e,_));var k=e._alignmentOpts||{};for(d=0;d<y.length;d++){if(r=y[d],h=\"\",!a(r,\"2dMap\")){if(p=w(r),\"group\"===e.barmode&&r.alignmentgroup){var M=r[p+\"axis\"],A=l(e,M)+r.orientation;(k[A]||{})[r.alignmentgroup]&&(h=A)}h||\"overlay\"===e.barmode||(h=l(e,r.xaxis)+l(e,r.yaxis)+w(r))}h?(x[h]||(x[h]=[]),x[h].push(r)):b.push(r)}for(h in x)if(1!==(f=x[h]).length){var S=!1;for(f.length&&(r=f[0],S=_(\"bingroup\")),h=S||h,d=0;d<f.length;d++){var E=(r=f[d])._input.bingroup;E&&E!==h&&n.warn([\"Trace\",r.index,\"must match\",\"within bingroup\",h+\".\",\"Ignoring its bingroup:\",E,\"setting.\"].join(\" \")),r.bingroup=h,T(r,h,w(r))}}else b.push(f[0]);for(d=0;d<b.length;d++){r=b[d];var C=_(\"bingroup\");if(a(r,\"2dMap\"))for(m=0;m<2;m++){var L=_((p=u[m])+\"bingroup\",C?C+\"__\"+p:null);T(r,L,p)}else T(r,C,w(r))}for(h in v){var I=v[h];for(f=I.traces,g=0;g<c.length;g++){var P,z,O=c[g],D=O.name;if(\"nbins\"!==D||!I.sizeFound){for(d=0;d<f.length;d++){if(r=f[d],p=I.dirs[d],P=O.aStr[p],void 0!==s(r._input,P).get()){I[D]=_(P),I[D+\"Found\"]=!0;break}(z=(r._autoBin||{})[p]||{})[D]&&s(r,P).set(z[D])}if(\"start\"===D||\"end\"===D)for(;d<f.length;d++)(r=f[d])[\"_\"+p+\"bingroup\"]&&_(P,(z=(r._autoBin||{})[p]||{})[D]);\"nbins\"!==D||I.sizeFound||I.nbinsFound||(r=f[0],I[D]=_(P))}}}}},{\"../../lib\":778,\"../../plots/cartesian/axis_ids\":831,\"../../plots/cartesian/constraints\":835,\"../../registry\":911,\"../bar/defaults\":925}],1092:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"../../components/color\"),o=t(\"../bar/style_defaults\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){function c(r,n){return i.coerce(t,e,s,r,n)}var u=c(\"x\"),f=c(\"y\");c(\"cumulative.enabled\")&&(c(\"cumulative.direction\"),c(\"cumulative.currentbin\")),c(\"text\"),c(\"hovertext\"),c(\"hovertemplate\");var h=c(\"orientation\",f&&!u?\"h\":\"v\"),p=\"v\"===h?\"x\":\"y\",d=\"v\"===h?\"y\":\"x\",g=u&&f?Math.min(i.minRowLength(u)&&i.minRowLength(f)):i.minRowLength(e[p]||[]);if(g){e._length=g,n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],l),e[d]&&c(\"histfunc\"),c(\"histnorm\"),c(\"autobin\"+p),o(t,e,c,r,l),i.coerceSelectionMarkerOpacity(e,c);var m=(e.marker.line||{}).color,v=n.getComponentMethod(\"errorbars\",\"supplyDefaults\");v(t,e,m||a.defaultLine,{axis:\"y\"}),v(t,e,m||a.defaultLine,{axis:\"x\",inherit:\"y\"})}else e.visible=!1}},{\"../../components/color\":643,\"../../lib\":778,\"../../registry\":911,\"../bar/style_defaults\":936,\"./attributes\":1084}],1093:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i){if(t.x=\"xVal\"in e?e.xVal:e.x,t.y=\"yVal\"in e?e.yVal:e.y,\"zLabelVal\"in e&&(t.z=e.zLabelVal),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),!(r.cumulative||{}).enabled){var a,o=Array.isArray(i)?n[0].pts[i[0]][i[1]]:n[i].pts;if(t.pointNumbers=o,t.binNumber=t.pointNumber,delete t.pointNumber,delete t.pointIndex,r._indexToPoints){a=[];for(var s=0;s<o.length;s++)a=a.concat(r._indexToPoints[o[s]])}else a=o;t.pointIndices=a}return t}},{}],1094:[function(t,e,r){\"use strict\";var n=t(\"../bar/hover\").hoverPoints,i=t(\"../../plots/cartesian/axes\").hoverLabelText;e.exports=function(t,e,r,a){var o=n(t,e,r,a);if(o){var s=(t=o[0]).cd[t.index],l=t.cd[0].trace;if(!l.cumulative.enabled){var c=\"h\"===l.orientation?\"y\":\"x\";t[c+\"Label\"]=i(t[c+\"a\"],s.ph0,s.ph1)}return o}}},{\"../../plots/cartesian/axes\":828,\"../bar/hover\":928}],1095:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"../bar/layout_attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"./cross_trace_defaults\"),supplyLayoutDefaults:t(\"../bar/layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"../bar/cross_trace_calc\").crossTraceCalc,plot:t(\"../bar/plot\").plot,layerName:\"barlayer\",style:t(\"../bar/style\").style,styleOnSelect:t(\"../bar/style\").styleOnSelect,colorbar:t(\"../scatter/marker_colorbar\"),hoverPoints:t(\"./hover\"),selectPoints:t(\"../bar/select\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"histogram\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"bar\",\"histogram\",\"oriented\",\"errorBarsOK\",\"showLegend\"],meta:{}}},{\"../../plots/cartesian\":841,\"../bar/cross_trace_calc\":924,\"../bar/layout_attributes\":930,\"../bar/layout_defaults\":931,\"../bar/plot\":932,\"../bar/select\":933,\"../bar/style\":935,\"../scatter/marker_colorbar\":1205,\"./attributes\":1084,\"./calc\":1089,\"./cross_trace_defaults\":1091,\"./defaults\":1092,\"./event_data\":1093,\"./hover\":1094}],1096:[function(t,e,r){\"use strict\";e.exports={percent:function(t,e){for(var r=t.length,n=100/e,i=0;i<r;i++)t[i]*=n},probability:function(t,e){for(var r=t.length,n=0;n<r;n++)t[n]/=e},density:function(t,e,r,n){var i=t.length;n=n||1;for(var a=0;a<i;a++)t[a]*=r[a]*n},\"probability density\":function(t,e,r,n){var i=t.length;n&&(e/=n);for(var a=0;a<i;a++)t[a]*=r[a]/e}}},{}],1097:[function(t,e,r){\"use strict\";var n=t(\"../histogram/attributes\"),i=t(\"../histogram/bin_attributes\"),a=t(\"../heatmap/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../plots/template_attributes\").hovertemplateAttrs,l=t(\"../../components/colorscale/attributes\"),c=t(\"../../lib/extend\").extendFlat;e.exports=c({x:n.x,y:n.y,z:{valType:\"data_array\",editType:\"calc\"},marker:{color:{valType:\"data_array\",editType:\"calc\"},editType:\"calc\"},histnorm:n.histnorm,histfunc:n.histfunc,nbinsx:n.nbinsx,xbins:i(\"x\"),nbinsy:n.nbinsy,ybins:i(\"y\"),autobinx:n.autobinx,autobiny:n.autobiny,bingroup:c({},n.bingroup,{}),xbingroup:c({},n.bingroup,{}),ybingroup:c({},n.bingroup,{}),xgap:a.xgap,ygap:a.ygap,zsmooth:a.zsmooth,zhoverformat:a.zhoverformat,hovertemplate:s({},{keys:\"z\"}),showlegend:c({},o.showlegend,{dflt:!1})},l(\"\",{cLetter:\"z\",autoColorDflt:!1}))},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../heatmap/attributes\":1065,\"../histogram/attributes\":1084,\"../histogram/bin_attributes\":1086}],1098:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../histogram/bin_functions\"),o=t(\"../histogram/norm_functions\"),s=t(\"../histogram/average\"),l=t(\"../histogram/bin_label_vals\"),c=t(\"../histogram/calc\").calcAllAutoBins;function u(t,e,r,n){var i,a=new Array(t);if(n)for(i=0;i<t;i++)a[i]=1/(e[i+1]-e[i]);else{var o=1/r;for(i=0;i<t;i++)a[i]=o}return a}function f(t,e){return{start:t(e.start),end:t(e.end),size:e.size}}function h(t,e,r,n,i,a){var o,s=t.length-1,c=new Array(s),u=l(r,n,t,i,a);for(o=0;o<s;o++){var f=(e||[])[o];c[o]=void 0===f?[u(t[o]),u(t[o+1],!0)]:[f,f]}return c}e.exports=function(t,e){var r,l,p,d,g=i.getFromId(t,e.xaxis),m=i.getFromId(t,e.yaxis),v=e.xcalendar,y=e.ycalendar,x=function(t){return g.r2c(t,0,v)},b=function(t){return m.r2c(t,0,y)},_=c(t,e,g,\"x\"),w=_[0],T=_[1],k=c(t,e,m,\"y\"),M=k[0],A=k[1],S=e._length;T.length>S&&T.splice(S,T.length-S),A.length>S&&A.splice(S,A.length-S);var E=[],C=[],L=[],I=\"string\"==typeof w.size,P=\"string\"==typeof M.size,z=[],O=[],D=I?z:w,R=P?O:M,F=0,B=[],N=[],j=e.histnorm,U=e.histfunc,V=-1!==j.indexOf(\"density\"),q=\"max\"===U||\"min\"===U?null:0,H=a.count,G=o[j],Y=!1,W=[],X=[],Z=\"z\"in e?e.z:\"marker\"in e&&Array.isArray(e.marker.color)?e.marker.color:\"\";Z&&\"count\"!==U&&(Y=\"avg\"===U,H=a[U]);var J=w.size,K=x(w.start),Q=x(w.end)+(K-i.tickIncrement(K,J,!1,v))/1e6;for(r=K;r<Q;r=i.tickIncrement(r,J,!1,v))C.push(q),z.push(r),Y&&L.push(0);z.push(r);var $,tt=C.length,et=(r-K)/tt,rt=($=K+et/2,g.c2r($,0,v)),nt=M.size,it=b(M.start),at=b(M.end)+(it-i.tickIncrement(it,nt,!1,y))/1e6;for(r=it;r<at;r=i.tickIncrement(r,nt,!1,y)){E.push(C.slice()),O.push(r);var ot=new Array(tt);for(l=0;l<tt;l++)ot[l]=[];N.push(ot),Y&&B.push(L.slice())}O.push(r);var st=E.length,lt=(r-it)/st,ct=function(t){return m.c2r(t,0,y)}(it+lt/2);V&&(W=u(C.length,D,et,I),X=u(E.length,R,lt,P)),I||\"date\"!==g.type||(D=f(x,D)),P||\"date\"!==m.type||(R=f(b,R));var ut=!0,ft=!0,ht=new Array(tt),pt=new Array(st),dt=1/0,gt=1/0,mt=1/0,vt=1/0;for(r=0;r<S;r++){var yt=T[r],xt=A[r];p=n.findBin(yt,D),d=n.findBin(xt,R),p>=0&&p<tt&&d>=0&&d<st&&(F+=H(p,r,E[d],Z,B[d]),N[d][p].push(r),ut&&(void 0===ht[p]?ht[p]=yt:ht[p]!==yt&&(ut=!1)),ft&&(void 0===pt[d]?pt[d]=xt:pt[d]!==xt&&(ft=!1)),dt=Math.min(dt,yt-z[p]),gt=Math.min(gt,z[p+1]-yt),mt=Math.min(mt,xt-O[d]),vt=Math.min(vt,O[d+1]-xt))}if(Y)for(d=0;d<st;d++)F+=s(E[d],B[d]);if(G)for(d=0;d<st;d++)G(E[d],F,W,X[d]);return{x:T,xRanges:h(z,ut&&ht,dt,gt,g,v),x0:rt,dx:et,y:A,yRanges:h(O,ft&&pt,mt,vt,m,y),y0:ct,dy:lt,z:E,pts:N}}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"../histogram/average\":1085,\"../histogram/bin_functions\":1087,\"../histogram/bin_label_vals\":1088,\"../histogram/calc\":1089,\"../histogram/norm_functions\":1096}],1099:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./sample_defaults\"),a=t(\"../heatmap/style_defaults\"),o=t(\"../../components/colorscale/defaults\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){function c(r,i){return n.coerce(t,e,s,r,i)}i(t,e,c,l),!1!==e.visible&&(a(t,e,c,l),o(t,e,l,c,{prefix:\"\",cLetter:\"z\"}),c(\"hovertemplate\"))}},{\"../../components/colorscale/defaults\":653,\"../../lib\":778,\"../heatmap/style_defaults\":1078,\"./attributes\":1097,\"./sample_defaults\":1102}],1100:[function(t,e,r){\"use strict\";var n=t(\"../heatmap/hover\"),i=t(\"../../plots/cartesian/axes\").hoverLabelText;e.exports=function(t,e,r,a,o,s){var l=n(t,e,r,a,o,s);if(l){var c=(t=l[0]).index,u=c[0],f=c[1],h=t.cd[0],p=h.xRanges[f],d=h.yRanges[u];return t.xLabel=i(t.xa,p[0],p[1]),t.yLabel=i(t.ya,d[0],d[1]),l}}},{\"../../plots/cartesian/axes\":828,\"../heatmap/hover\":1072}],1101:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../histogram/cross_trace_defaults\"),calc:t(\"../heatmap/calc\"),plot:t(\"../heatmap/plot\"),layerName:\"heatmaplayer\",colorbar:t(\"../heatmap/colorbar\"),style:t(\"../heatmap/style\"),hoverPoints:t(\"./hover\"),eventData:t(\"../histogram/event_data\"),moduleType:\"trace\",name:\"histogram2d\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"histogram\",\"showLegend\"],meta:{}}},{\"../../plots/cartesian\":841,\"../heatmap/calc\":1066,\"../heatmap/colorbar\":1068,\"../heatmap/plot\":1076,\"../heatmap/style\":1077,\"../histogram/cross_trace_defaults\":1091,\"../histogram/event_data\":1093,\"./attributes\":1097,\"./defaults\":1099,\"./hover\":1100}],1102:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\");e.exports=function(t,e,r,a){var o=r(\"x\"),s=r(\"y\"),l=i.minRowLength(o),c=i.minRowLength(s);l&&c?(e._length=Math.min(l,c),n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],a),(r(\"z\")||r(\"marker.color\"))&&r(\"histfunc\"),r(\"histnorm\"),r(\"autobinx\"),r(\"autobiny\")):e.visible=!1}},{\"../../lib\":778,\"../../registry\":911}],1103:[function(t,e,r){\"use strict\";var n=t(\"../histogram2d/attributes\"),i=t(\"../contour/attributes\"),a=t(\"../../components/colorscale/attributes\"),o=t(\"../../lib/extend\").extendFlat;e.exports=o({x:n.x,y:n.y,z:n.z,marker:n.marker,histnorm:n.histnorm,histfunc:n.histfunc,nbinsx:n.nbinsx,xbins:n.xbins,nbinsy:n.nbinsy,ybins:n.ybins,autobinx:n.autobinx,autobiny:n.autobiny,bingroup:n.bingroup,xbingroup:n.xbingroup,ybingroup:n.ybingroup,autocontour:i.autocontour,ncontours:i.ncontours,contours:i.contours,line:{color:i.line.color,width:o({},i.line.width,{dflt:.5}),dash:i.line.dash,smoothing:i.line.smoothing,editType:\"plot\"},zhoverformat:n.zhoverformat,hovertemplate:n.hovertemplate},a(\"\",{cLetter:\"z\",editTypeOverride:\"calc\"}))},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../contour/attributes\":1008,\"../histogram2d/attributes\":1097}],1104:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../histogram2d/sample_defaults\"),a=t(\"../contour/contours_defaults\"),o=t(\"../contour/style_defaults\"),s=t(\"./attributes\");e.exports=function(t,e,r,l){function c(r,i){return n.coerce(t,e,s,r,i)}i(t,e,c,l),!1!==e.visible&&(a(t,e,c,(function(r){return n.coerce2(t,e,s,r)})),o(t,e,c,l),c(\"hovertemplate\"))}},{\"../../lib\":778,\"../contour/contours_defaults\":1015,\"../contour/style_defaults\":1029,\"../histogram2d/sample_defaults\":1102,\"./attributes\":1103}],1105:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../histogram/cross_trace_defaults\"),calc:t(\"../contour/calc\"),plot:t(\"../contour/plot\").plot,layerName:\"contourlayer\",style:t(\"../contour/style\"),colorbar:t(\"../contour/colorbar\"),hoverPoints:t(\"../contour/hover\"),moduleType:\"trace\",name:\"histogram2dcontour\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"contour\",\"histogram\",\"showLegend\"],meta:{}}},{\"../../plots/cartesian\":841,\"../contour/calc\":1009,\"../contour/colorbar\":1011,\"../contour/hover\":1021,\"../contour/plot\":1026,\"../contour/style\":1028,\"../histogram/cross_trace_defaults\":1091,\"./attributes\":1103,\"./defaults\":1104}],1106:[function(t,e,r){\"use strict\";for(var n=t(\"../../plots/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../lib/extend\").extendFlat,o=t(\"./constants\").colormodel,s=[\"rgb\",\"rgba\",\"rgba256\",\"hsl\",\"hsla\"],l=[],c=[],u=0;u<s.length;u++){var f=o[s[u]];l.push(\"For the `\"+s[u]+\"` colormodel, it is [\"+(f.zminDflt||f.min).join(\", \")+\"].\"),c.push(\"For the `\"+s[u]+\"` colormodel, it is [\"+(f.zmaxDflt||f.max).join(\", \")+\"].\")}e.exports=a({source:{valType:\"string\",editType:\"calc\"},z:{valType:\"data_array\",editType:\"calc\"},colormodel:{valType:\"enumerated\",values:s,editType:\"calc\"},zmin:{valType:\"info_array\",items:[{valType:\"number\",editType:\"calc\"},{valType:\"number\",editType:\"calc\"},{valType:\"number\",editType:\"calc\"},{valType:\"number\",editType:\"calc\"}],editType:\"calc\"},zmax:{valType:\"info_array\",items:[{valType:\"number\",editType:\"calc\"},{valType:\"number\",editType:\"calc\"},{valType:\"number\",editType:\"calc\"},{valType:\"number\",editType:\"calc\"}],editType:\"calc\"},x0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\"},y0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\"},dx:{valType:\"number\",dflt:1,editType:\"calc\"},dy:{valType:\"number\",dflt:1,editType:\"calc\"},text:{valType:\"data_array\",editType:\"plot\"},hovertext:{valType:\"data_array\",editType:\"plot\"},hoverinfo:a({},n.hoverinfo,{flags:[\"x\",\"y\",\"z\",\"color\",\"name\",\"text\"],dflt:\"x+y+z+text+name\"}),hovertemplate:i({},{keys:[\"z\",\"color\",\"colormodel\"]}),transforms:void 0})},{\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"./constants\":1108}],1107:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./constants\"),a=t(\"fast-isnumeric\"),o=t(\"../../plots/cartesian/axes\"),s=t(\"../../lib\").maxRowLength,l=t(\"./helpers\").getImageSize;function c(t,e,r,i){return function(a){return n.constrain((a-t)*e,r,i)}}function u(t,e){return function(r){return n.constrain(r,t,e)}}e.exports=function(t,e){var r,n;if(e._hasZ)r=e.z.length,n=s(e.z);else if(e._hasSource){var f=l(e.source);r=f.height,n=f.width}var h,p=o.getFromId(t,e.xaxis||\"x\"),d=o.getFromId(t,e.yaxis||\"y\"),g=p.d2c(e.x0)-e.dx/2,m=d.d2c(e.y0)-e.dy/2,v=[g,g+n*e.dx],y=[m,m+r*e.dy];if(p&&\"log\"===p.type)for(h=0;h<n;h++)v.push(g+h*e.dx);if(d&&\"log\"===d.type)for(h=0;h<r;h++)y.push(m+h*e.dy);return e._extremes[p._id]=o.findExtremes(p,v),e._extremes[d._id]=o.findExtremes(d,y),e._scaler=function(t){var e=i.colormodel[t.colormodel],r=(e.colormodel||t.colormodel).length;t._sArray=[];for(var n=0;n<r;n++)e.min[n]!==t.zmin[n]||e.max[n]!==t.zmax[n]?t._sArray.push(c(t.zmin[n],(e.max[n]-e.min[n])/(t.zmax[n]-t.zmin[n]),e.min[n],e.max[n])):t._sArray.push(u(e.min[n],e.max[n]));return function(e){for(var n=e.slice(0,r),i=0;i<r;i++){var o=n[i];if(!a(o))return!1;n[i]=t._sArray[i](o)}return n}}(e),[{x0:g,y0:m,z:e.z,w:n,h:r}]}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"./constants\":1108,\"./helpers\":1111,\"fast-isnumeric\":241}],1108:[function(t,e,r){\"use strict\";e.exports={colormodel:{rgb:{min:[0,0,0],max:[255,255,255],fmt:function(t){return t.slice(0,3)},suffix:[\"\",\"\",\"\"]},rgba:{min:[0,0,0,0],max:[255,255,255,1],fmt:function(t){return t.slice(0,4)},suffix:[\"\",\"\",\"\",\"\"]},rgba256:{colormodel:\"rgba\",zminDflt:[0,0,0,0],zmaxDflt:[255,255,255,255],min:[0,0,0,0],max:[255,255,255,1],fmt:function(t){return t.slice(0,4)},suffix:[\"\",\"\",\"\",\"\"]},hsl:{min:[0,0,0],max:[360,100,100],fmt:function(t){var e=t.slice(0,3);return e[1]=e[1]+\"%\",e[2]=e[2]+\"%\",e},suffix:[\"\\xb0\",\"%\",\"%\"]},hsla:{min:[0,0,0,0],max:[360,100,100,1],fmt:function(t){var e=t.slice(0,4);return e[1]=e[1]+\"%\",e[2]=e[2]+\"%\",e},suffix:[\"\\xb0\",\"%\",\"%\",\"\"]}}}},{}],1109:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"./constants\"),o=t(\"../../snapshot/helpers\").IMAGE_URL_PREFIX;e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r(\"source\"),e.source&&!e.source.match(o)&&delete e.source,e._hasSource=!!e.source;var s,l=r(\"z\");(e._hasZ=!(void 0===l||!l.length||!l[0]||!l[0].length),e._hasZ||e._hasSource)?(r(\"x0\"),r(\"y0\"),r(\"dx\"),r(\"dy\"),e._hasZ?(r(\"colormodel\",\"rgb\"),r(\"zmin\",(s=a.colormodel[e.colormodel]).zminDflt||s.min),r(\"zmax\",s.zmaxDflt||s.max)):e._hasSource&&(e.colormodel=\"rgba256\",s=a.colormodel[e.colormodel],e.zmin=s.zminDflt,e.zmax=s.zmaxDflt),r(\"text\"),r(\"hovertext\"),r(\"hovertemplate\"),e._length=null):e.visible=!1}},{\"../../lib\":778,\"../../snapshot/helpers\":915,\"./attributes\":1106,\"./constants\":1108}],1110:[function(t,e,r){\"use strict\";e.exports=function(t,e){return\"xVal\"in e&&(t.x=e.xVal),\"yVal\"in e&&(t.y=e.yVal),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),t.color=e.color,t.colormodel=e.trace.colormodel,t.z||(t.z=e.color),t}},{}],1111:[function(t,e,r){\"use strict\";var n=t(\"image-size\"),i=t(\"../../snapshot/helpers\").IMAGE_URL_PREFIX,a=t(\"buffer/\").Buffer;r.getImageSize=function(t){var e=t.replace(i,\"\"),r=new a(e,\"base64\");return n(r)}},{\"../../snapshot/helpers\":915,\"buffer/\":111,\"image-size\":444}],1112:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),i=t(\"../../lib\"),a=t(\"./constants\");e.exports=function(t,e,r){var o=t.cd[0],s=o.trace,l=t.xa,c=t.ya;if(!(n.inbox(e-o.x0,e-(o.x0+o.w*s.dx),0)>0||n.inbox(r-o.y0,r-(o.y0+o.h*s.dy),0)>0)){var u,f=Math.floor((e-o.x0)/s.dx),h=Math.floor(Math.abs(r-o.y0)/s.dy);if(s._hasZ?u=o.z[h][f]:s._hasSource&&(u=s._canvas.el.getContext(\"2d\").getImageData(f,h,1,1).data),u){var p,d=o.hi||s.hoverinfo;if(d){var g=d.split(\"+\");-1!==g.indexOf(\"all\")&&(g=[\"color\"]),-1!==g.indexOf(\"color\")&&(p=!0)}var m,v=a.colormodel[s.colormodel],y=v.colormodel||s.colormodel,x=y.length,b=s._scaler(u),_=v.suffix,w=[];(s.hovertemplate||p)&&(w.push(\"[\"+[b[0]+_[0],b[1]+_[1],b[2]+_[2]].join(\", \")),4===x&&w.push(\", \"+b[3]+_[3]),w.push(\"]\"),w=w.join(\"\"),t.extraText=y.toUpperCase()+\": \"+w),Array.isArray(s.hovertext)&&Array.isArray(s.hovertext[h])?m=s.hovertext[h][f]:Array.isArray(s.text)&&Array.isArray(s.text[h])&&(m=s.text[h][f]);var T=c.c2p(o.y0+(h+.5)*s.dy),k=o.x0+(f+.5)*s.dx,M=o.y0+(h+.5)*s.dy,A=\"[\"+u.slice(0,s.colormodel.length).join(\", \")+\"]\";return[i.extendFlat(t,{index:[h,f],x0:l.c2p(o.x0+f*s.dx),x1:l.c2p(o.x0+(f+1)*s.dx),y0:T,y1:T,color:b,xVal:k,xLabelVal:k,yVal:M,yLabelVal:M,zLabelVal:A,text:m,hovertemplateLabels:{zLabel:A,colorLabel:w,\"color[0]Label\":b[0]+_[0],\"color[1]Label\":b[1]+_[1],\"color[2]Label\":b[2]+_[2],\"color[3]Label\":b[3]+_[3]}})]}}}},{\"../../components/fx\":683,\"../../lib\":778,\"./constants\":1108}],1113:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"./style\"),hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"image\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"2dMap\",\"noSortingByValue\"],animatable:!1,meta:{}}},{\"../../plots/cartesian\":841,\"./attributes\":1106,\"./calc\":1107,\"./defaults\":1109,\"./event_data\":1110,\"./hover\":1112,\"./plot\":1114,\"./style\":1115}],1114:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=i.strTranslate,o=t(\"../../constants/xmlns_namespaces\"),s=t(\"./constants\"),l=i.isIOS()||i.isSafari()||i.isIE();e.exports=function(t,e,r,c){var u=e.xaxis,f=e.yaxis,h=!(l||t._context._exportedPlot);i.makeTraceGroups(c,r,\"im\").each((function(e){var r=n.select(this),l=e[0],c=l.trace,p=h&&!c._hasZ&&c._hasSource&&\"linear\"===u.type&&\"linear\"===f.type;c._fastImage=p;var d,g,m,v,y,x,b=l.z,_=l.x0,w=l.y0,T=l.w,k=l.h,M=c.dx,A=c.dy;for(x=0;void 0===d&&x<T;)d=u.c2p(_+x*M),x++;for(x=T;void 0===g&&x>0;)g=u.c2p(_+x*M),x--;for(x=0;void 0===v&&x<k;)v=f.c2p(w+x*A),x++;for(x=k;void 0===y&&x>0;)y=f.c2p(w+x*A),x--;if(g<d&&(m=g,g=d,d=m),y<v&&(m=v,v=y,y=m),!p){d=Math.max(-.5*u._length,d),g=Math.min(1.5*u._length,g),v=Math.max(-.5*f._length,v),y=Math.min(1.5*f._length,y)}var S=Math.round(g-d),E=Math.round(y-v);if(S<=0||E<=0){r.selectAll(\"image\").data([]).exit().remove()}else{var C=r.selectAll(\"image\").data([e]);C.enter().append(\"svg:image\").attr({xmlns:o.svg,preserveAspectRatio:\"none\"}),C.exit().remove();var L=\"image-rendering: optimizeSpeed; image-rendering: -moz-crisp-edges; image-rendering: -o-crisp-edges; image-rendering: -webkit-optimize-contrast; image-rendering: optimize-contrast; image-rendering: crisp-edges; image-rendering: pixelated;\";if(p){var I=i.simpleMap(u.range,u.r2l),P=i.simpleMap(f.range,f.r2l),z=I[1]<I[0],O=P[1]>P[0];if(z||O){var D=d+S/2,R=v+E/2;L+=\"transform:\"+a(D+\"px\",R+\"px\")+\"scale(\"+(z?-1:1)+\",\"+(O?-1:1)+\")\"+a(-D+\"px\",-R+\"px\")+\";\"}}C.attr(\"style\",L);var F=new Promise((function(t){if(c._hasZ)t();else if(c._hasSource)if(c._canvas&&c._canvas.el.width===T&&c._canvas.el.height===k&&c._canvas.source===c.source)t();else{var e=document.createElement(\"canvas\");e.width=T,e.height=k;var r=e.getContext(\"2d\");c._image=c._image||new Image;var n=c._image;n.onload=function(){r.drawImage(n,0,0),c._canvas={el:e,source:c.source},t()},n.setAttribute(\"src\",c.source)}})).then((function(){var t;if(c._hasZ)t=B((function(t,e){return b[e][t]})).toDataURL(\"image/png\");else if(c._hasSource)if(p)t=c.source;else{var e=c._canvas.el.getContext(\"2d\").getImageData(0,0,T,k).data;t=B((function(t,r){var n=4*(r*T+t);return[e[n],e[n+1],e[n+2],e[n+3]]})).toDataURL(\"image/png\")}C.attr({\"xlink:href\":t,height:E,width:S,x:d,y:v})}));t._promises.push(F)}function B(t){var e=document.createElement(\"canvas\");e.width=S,e.height=E;var r,n=e.getContext(\"2d\"),a=function(t){return i.constrain(Math.round(u.c2p(_+t*M)-d),0,S)},o=function(t){return i.constrain(Math.round(f.c2p(w+t*A)-v),0,E)},h=s.colormodel[c.colormodel],p=h.colormodel||c.colormodel,g=h.fmt;for(x=0;x<l.w;x++){var m=a(x),y=a(x+1);if(y!==m&&!isNaN(y)&&!isNaN(m))for(var b=0;b<l.h;b++){var T=o(b),k=o(b+1);k===T||isNaN(k)||isNaN(T)||!t(x,b)||(r=c._scaler(t(x,b)),n.fillStyle=r?p+\"(\"+g(r).join(\",\")+\")\":\"rgba(0,0,0,0)\",n.fillRect(m,T,y-m,k-T))}}return e}}))}},{\"../../constants/xmlns_namespaces\":754,\"../../lib\":778,\"./constants\":1108,d3:169}],1115:[function(t,e,r){\"use strict\";var n=t(\"d3\");e.exports=function(t){n.select(t).selectAll(\".im image\").style(\"opacity\",(function(t){return t[0].trace.opacity}))}},{d3:169}],1116:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat,i=t(\"../../lib/extend\").extendDeep,a=t(\"../../plot_api/edit_types\").overrideAll,o=t(\"../../plots/font_attributes\"),s=t(\"../../components/color/attributes\"),l=t(\"../../plots/domain\").attributes,c=t(\"../../plots/cartesian/layout_attributes\"),u=t(\"../../plot_api/plot_template\").templatedArray,f=t(\"../../constants/delta.js\"),h=(t(\"../../constants/docs\").FORMAT_LINK,o({editType:\"plot\",colorEditType:\"plot\"})),p={color:{valType:\"color\",editType:\"plot\"},line:{color:{valType:\"color\",dflt:s.defaultLine,editType:\"plot\"},width:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},editType:\"calc\"},thickness:{valType:\"number\",min:0,max:1,dflt:1,editType:\"plot\"},editType:\"calc\"},d={valType:\"info_array\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],editType:\"plot\"},g=u(\"step\",i({},p,{range:d}));e.exports={mode:{valType:\"flaglist\",editType:\"calc\",flags:[\"number\",\"delta\",\"gauge\"],dflt:\"number\"},value:{valType:\"number\",editType:\"calc\",anim:!0},align:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],editType:\"plot\"},domain:l({name:\"indicator\",trace:!0,editType:\"calc\"}),title:{text:{valType:\"string\",editType:\"plot\"},align:{valType:\"enumerated\",values:[\"left\",\"center\",\"right\"],editType:\"plot\"},font:n({},h,{}),editType:\"plot\"},number:{valueformat:{valType:\"string\",dflt:\"\",editType:\"plot\"},font:n({},h,{}),prefix:{valType:\"string\",dflt:\"\",editType:\"plot\"},suffix:{valType:\"string\",dflt:\"\",editType:\"plot\"},editType:\"plot\"},delta:{reference:{valType:\"number\",editType:\"calc\"},position:{valType:\"enumerated\",values:[\"top\",\"bottom\",\"left\",\"right\"],dflt:\"bottom\",editType:\"plot\"},relative:{valType:\"boolean\",editType:\"plot\",dflt:!1},valueformat:{valType:\"string\",editType:\"plot\"},increasing:{symbol:{valType:\"string\",dflt:f.INCREASING.SYMBOL,editType:\"plot\"},color:{valType:\"color\",dflt:f.INCREASING.COLOR,editType:\"plot\"},editType:\"plot\"},decreasing:{symbol:{valType:\"string\",dflt:f.DECREASING.SYMBOL,editType:\"plot\"},color:{valType:\"color\",dflt:f.DECREASING.COLOR,editType:\"plot\"},editType:\"plot\"},font:n({},h,{}),editType:\"calc\"},gauge:{shape:{valType:\"enumerated\",editType:\"plot\",dflt:\"angular\",values:[\"angular\",\"bullet\"]},bar:i({},p,{color:{dflt:\"green\"}}),bgcolor:{valType:\"color\",editType:\"plot\"},bordercolor:{valType:\"color\",dflt:s.defaultLine,editType:\"plot\"},borderwidth:{valType:\"number\",min:0,dflt:1,editType:\"plot\"},axis:a({range:d,visible:n({},c.visible,{dflt:!0}),tickmode:c.tickmode,nticks:c.nticks,tick0:c.tick0,dtick:c.dtick,tickvals:c.tickvals,ticktext:c.ticktext,ticks:n({},c.ticks,{dflt:\"outside\"}),ticklen:c.ticklen,tickwidth:c.tickwidth,tickcolor:c.tickcolor,showticklabels:c.showticklabels,tickfont:o({}),tickangle:c.tickangle,tickformat:c.tickformat,tickformatstops:c.tickformatstops,tickprefix:c.tickprefix,showtickprefix:c.showtickprefix,ticksuffix:c.ticksuffix,showticksuffix:c.showticksuffix,separatethousands:c.separatethousands,exponentformat:c.exponentformat,minexponent:c.minexponent,showexponent:c.showexponent,editType:\"plot\"},\"plot\"),steps:g,threshold:{line:{color:n({},p.line.color,{}),width:n({},p.line.width,{dflt:1}),editType:\"plot\"},thickness:n({},p.thickness,{dflt:.85}),value:{valType:\"number\",editType:\"calc\",dflt:!1},editType:\"plot\"},editType:\"plot\"}}},{\"../../components/color/attributes\":642,\"../../constants/delta.js\":747,\"../../constants/docs\":748,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plot_api/plot_template\":817,\"../../plots/cartesian/layout_attributes\":842,\"../../plots/domain\":855,\"../../plots/font_attributes\":856}],1117:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"indicator\",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{\"../../plots/plots\":891}],1118:[function(t,e,r){\"use strict\";e.exports={calc:function(t,e){var r=[],n=e.value;\"number\"!=typeof e._lastValue&&(e._lastValue=e.value);var i=e._lastValue,a=i;return e._hasDelta&&\"number\"==typeof e.delta.reference&&(a=e.delta.reference),r[0]={y:n,lastY:i,delta:n-a,relativeDelta:(n-a)/a},r}}},{}],1119:[function(t,e,r){\"use strict\";e.exports={defaultNumberFontSize:80,bulletNumberDomainSize:.25,bulletPadding:.025,innerRadius:.75,valueThickness:.5,titlePadding:5,horizontalPadding:10}},{}],1120:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"../../plots/domain\").defaults,o=t(\"../../plot_api/plot_template\"),s=t(\"../../plots/array_container_defaults\"),l=t(\"./constants.js\"),c=t(\"../../plots/cartesian/tick_value_defaults\"),u=t(\"../../plots/cartesian/tick_mark_defaults\"),f=t(\"../../plots/cartesian/tick_label_defaults\");function h(t,e){function r(r,a){return n.coerce(t,e,i.gauge.steps,r,a)}r(\"color\"),r(\"line.color\"),r(\"line.width\"),r(\"range\"),r(\"thickness\")}e.exports={supplyDefaults:function(t,e,r,p){function d(r,a){return n.coerce(t,e,i,r,a)}a(e,p,d),d(\"mode\"),e._hasNumber=-1!==e.mode.indexOf(\"number\"),e._hasDelta=-1!==e.mode.indexOf(\"delta\"),e._hasGauge=-1!==e.mode.indexOf(\"gauge\");var g=d(\"value\");e._range=[0,\"number\"==typeof g?1.5*g:1];var m,v,y,x,b,_,w=new Array(2);function T(t,e){return n.coerce(y,x,i.gauge,t,e)}function k(t,e){return n.coerce(b,_,i.gauge.axis,t,e)}if(e._hasNumber&&(d(\"number.valueformat\"),d(\"number.font.color\",p.font.color),d(\"number.font.family\",p.font.family),d(\"number.font.size\"),void 0===e.number.font.size&&(e.number.font.size=l.defaultNumberFontSize,w[0]=!0),d(\"number.prefix\"),d(\"number.suffix\"),m=e.number.font.size),e._hasDelta&&(d(\"delta.font.color\",p.font.color),d(\"delta.font.family\",p.font.family),d(\"delta.font.size\"),void 0===e.delta.font.size&&(e.delta.font.size=(e._hasNumber?.5:1)*(m||l.defaultNumberFontSize),w[1]=!0),d(\"delta.reference\",e.value),d(\"delta.relative\"),d(\"delta.valueformat\",e.delta.relative?\"2%\":\"\"),d(\"delta.increasing.symbol\"),d(\"delta.increasing.color\"),d(\"delta.decreasing.symbol\"),d(\"delta.decreasing.color\"),d(\"delta.position\"),v=e.delta.font.size),e._scaleNumbers=(!e._hasNumber||w[0])&&(!e._hasDelta||w[1])||!1,d(\"title.font.color\",p.font.color),d(\"title.font.family\",p.font.family),d(\"title.font.size\",.25*(m||v||l.defaultNumberFontSize)),d(\"title.text\"),e._hasGauge){(y=t.gauge)||(y={}),x=o.newContainer(e,\"gauge\"),T(\"shape\"),(e._isBullet=\"bullet\"===e.gauge.shape)||d(\"title.align\",\"center\"),(e._isAngular=\"angular\"===e.gauge.shape)||d(\"align\",\"center\"),T(\"bgcolor\",p.paper_bgcolor),T(\"borderwidth\"),T(\"bordercolor\"),T(\"bar.color\"),T(\"bar.line.color\"),T(\"bar.line.width\"),T(\"bar.thickness\",l.valueThickness*(\"bullet\"===e.gauge.shape?.5:1)),s(y,x,{name:\"steps\",handleItemDefaults:h}),T(\"threshold.value\"),T(\"threshold.thickness\"),T(\"threshold.line.width\"),T(\"threshold.line.color\"),b={},y&&(b=y.axis||{}),_=o.newContainer(x,\"axis\"),k(\"visible\"),e._range=k(\"range\",e._range);var M={outerTicks:!0};c(b,_,k,\"linear\"),f(b,_,k,\"linear\",M),u(b,_,k,M)}else d(\"title.align\",\"center\"),d(\"align\",\"center\"),e._isAngular=e._isBullet=!1;e._length=null}}},{\"../../lib\":778,\"../../plot_api/plot_template\":817,\"../../plots/array_container_defaults\":823,\"../../plots/cartesian/tick_label_defaults\":849,\"../../plots/cartesian/tick_mark_defaults\":850,\"../../plots/cartesian/tick_value_defaults\":851,\"../../plots/domain\":855,\"./attributes\":1116,\"./constants.js\":1119}],1121:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"indicator\",basePlotModule:t(\"./base_plot\"),categories:[\"svg\",\"noOpacity\",\"noHover\"],animatable:!0,attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,calc:t(\"./calc\").calc,plot:t(\"./plot\"),meta:{}}},{\"./attributes\":1116,\"./base_plot\":1117,\"./calc\":1118,\"./defaults\":1120,\"./plot\":1122}],1122:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=i.strScale,o=i.strTranslate,s=i.rad2deg,l=t(\"../../constants/alignment\").MID_SHIFT,c=t(\"../../components/drawing\"),u=t(\"./constants\"),f=t(\"../../lib/svg_text_utils\"),h=t(\"../../plots/cartesian/axes\"),p=t(\"../../plots/cartesian/axis_defaults\"),d=t(\"../../plots/cartesian/position_defaults\"),g=t(\"../../plots/cartesian/layout_attributes\"),m=t(\"../../components/color\"),v={left:\"start\",center:\"middle\",right:\"end\"},y={left:0,center:.5,right:1},x=/[yzafpn\\xb5mkMGTPEZY]/;function b(t){return t&&t.duration>0}function _(t){t.each((function(t){m.stroke(n.select(this),t.line.color)})).each((function(t){m.fill(n.select(this),t.color)})).style(\"stroke-width\",(function(t){return t.line.width}))}function w(t,e,r){var n=t._fullLayout,a=i.extendFlat({type:\"linear\",ticks:\"outside\",range:r,showline:!0},e),o={type:\"linear\",_id:\"x\"+e._id},s={letter:\"x\",font:n.font,noHover:!0,noTickson:!0};function l(t,e){return i.coerce(a,o,g,t,e)}return p(a,o,l,s,n),d(a,o,l,s),o}function T(t,e,r){return[Math.min(e/t.width,r/t.height),t,e+\"x\"+r]}function k(t,e,r,i){var a=document.createElementNS(\"http://www.w3.org/2000/svg\",\"text\"),o=n.select(a);return o.text(t).attr(\"x\",0).attr(\"y\",0).attr(\"text-anchor\",r).attr(\"data-unformatted\",t).call(f.convertToTspans,i).call(c.font,e),c.bBox(o.node())}function M(t,e,r,n,a,o){var s=\"_cache\"+e;t[s]&&t[s].key===a||(t[s]={key:a,value:r});var l=i.aggNums(o,null,[t[s].value,n],2);return t[s].value=l,l}e.exports=function(t,e,r,p){var d,g=t._fullLayout;b(r)&&p&&(d=p()),i.makeTraceGroups(g._indicatorlayer,e,\"trace\").each((function(e){var p,A,S,E,C,L=e[0].trace,I=n.select(this),P=L._hasGauge,z=L._isAngular,O=L._isBullet,D=L.domain,R={w:g._size.w*(D.x[1]-D.x[0]),h:g._size.h*(D.y[1]-D.y[0]),l:g._size.l+g._size.w*D.x[0],r:g._size.r+g._size.w*(1-D.x[1]),t:g._size.t+g._size.h*(1-D.y[1]),b:g._size.b+g._size.h*D.y[0]},F=R.l+R.w/2,B=R.t+R.h/2,N=Math.min(R.w/2,R.h),j=u.innerRadius*N,U=L.align||\"center\";if(A=B,P){if(z&&(p=F,A=B+N/2,S=function(t){return function(t,e){var r=Math.sqrt(t.width/2*(t.width/2)+t.height*t.height);return[e/r,t,e]}(t,.9*j)}),O){var V=u.bulletPadding,q=1-u.bulletNumberDomainSize+V;p=R.l+(q+(1-q)*y[U])*R.w,S=function(t){return T(t,(u.bulletNumberDomainSize-V)*R.w,R.h)}}}else p=R.l+y[U]*R.w,S=function(t){return T(t,R.w,R.h)};!function(t,e,r,s){var l,u,p,d=r[0].trace,g=s.numbersX,_=s.numbersY,T=d.align||\"center\",A=v[T],S=s.transitionOpts,E=s.onComplete,C=i.ensureSingle(e,\"g\",\"numbers\"),L=[];d._hasNumber&&L.push(\"number\");d._hasDelta&&(L.push(\"delta\"),\"left\"===d.delta.position&&L.reverse());var I=C.selectAll(\"text\").data(L);function P(e,r,n,i){if(!e.match(\"s\")||n>=0==i>=0||r(n).slice(-1).match(x)||r(i).slice(-1).match(x))return r;var a=e.slice().replace(\"s\",\"f\").replace(/\\d+/,(function(t){return parseInt(t)-1})),o=w(t,{tickformat:a});return function(t){return Math.abs(t)<1?h.tickText(o,t).text:r(t)}}I.enter().append(\"text\"),I.attr(\"text-anchor\",(function(){return A})).attr(\"class\",(function(t){return t})).attr(\"x\",null).attr(\"y\",null).attr(\"dx\",null).attr(\"dy\",null),I.exit().remove();var z,O=d.mode+d.align;d._hasDelta&&(z=function(){var e=w(t,{tickformat:d.delta.valueformat},d._range);e.setScale(),h.prepTicks(e);var i=function(t){return h.tickText(e,t).text},a=function(t){return d.delta.relative?t.relativeDelta:t.delta},o=function(t,e){return 0===t||\"number\"!=typeof t||isNaN(t)?\"-\":(t>0?d.delta.increasing.symbol:d.delta.decreasing.symbol)+e(t)},s=function(t){return t.delta>=0?d.delta.increasing.color:d.delta.decreasing.color};void 0===d._deltaLastValue&&(d._deltaLastValue=a(r[0]));var l=C.select(\"text.delta\");function p(){l.text(o(a(r[0]),i)).call(m.fill,s(r[0])).call(f.convertToTspans,t)}return l.call(c.font,d.delta.font).call(m.fill,s({delta:d._deltaLastValue})),b(S)?l.transition().duration(S.duration).ease(S.easing).tween(\"text\",(function(){var t=n.select(this),e=a(r[0]),l=d._deltaLastValue,c=P(d.delta.valueformat,i,l,e),u=n.interpolateNumber(l,e);return d._deltaLastValue=e,function(e){t.text(o(u(e),c)),t.call(m.fill,s({delta:u(e)}))}})).each(\"end\",(function(){p(),E&&E()})).each(\"interrupt\",(function(){p(),E&&E()})):p(),u=k(o(a(r[0]),i),d.delta.font,A,t),l}(),O+=d.delta.position+d.delta.font.size+d.delta.font.family+d.delta.valueformat,O+=d.delta.increasing.symbol+d.delta.decreasing.symbol,p=u);d._hasNumber&&(!function(){var e=w(t,{tickformat:d.number.valueformat},d._range);e.setScale(),h.prepTicks(e);var i=function(t){return h.tickText(e,t).text},a=d.number.suffix,o=d.number.prefix,s=C.select(\"text.number\");function u(){var e=\"number\"==typeof r[0].y?o+i(r[0].y)+a:\"-\";s.text(e).call(c.font,d.number.font).call(f.convertToTspans,t)}b(S)?s.transition().duration(S.duration).ease(S.easing).each(\"end\",(function(){u(),E&&E()})).each(\"interrupt\",(function(){u(),E&&E()})).attrTween(\"text\",(function(){var t=n.select(this),e=n.interpolateNumber(r[0].lastY,r[0].y);d._lastValue=r[0].y;var s=P(d.number.valueformat,i,r[0].lastY,r[0].y);return function(r){t.text(o+s(e(r))+a)}})):u(),l=k(o+i(r[0].y)+a,d.number.font,A,t)}(),O+=d.number.font.size+d.number.font.family+d.number.valueformat+d.number.suffix+d.number.prefix,p=l);if(d._hasDelta&&d._hasNumber){var D,R,F=[(l.left+l.right)/2,(l.top+l.bottom)/2],B=[(u.left+u.right)/2,(u.top+u.bottom)/2],N=.75*d.delta.font.size;\"left\"===d.delta.position&&(D=M(d,\"deltaPos\",0,-1*(l.width*y[d.align]+u.width*(1-y[d.align])+N),O,Math.min),R=F[1]-B[1],p={width:l.width+u.width+N,height:Math.max(l.height,u.height),left:u.left+D,right:l.right,top:Math.min(l.top,u.top+R),bottom:Math.max(l.bottom,u.bottom+R)}),\"right\"===d.delta.position&&(D=M(d,\"deltaPos\",0,l.width*(1-y[d.align])+u.width*y[d.align]+N,O,Math.max),R=F[1]-B[1],p={width:l.width+u.width+N,height:Math.max(l.height,u.height),left:l.left,right:u.right+D,top:Math.min(l.top,u.top+R),bottom:Math.max(l.bottom,u.bottom+R)}),\"bottom\"===d.delta.position&&(D=null,R=u.height,p={width:Math.max(l.width,u.width),height:l.height+u.height,left:Math.min(l.left,u.left),right:Math.max(l.right,u.right),top:l.bottom-l.height,bottom:l.bottom+u.height}),\"top\"===d.delta.position&&(D=null,R=l.top,p={width:Math.max(l.width,u.width),height:l.height+u.height,left:Math.min(l.left,u.left),right:Math.max(l.right,u.right),top:l.bottom-l.height-u.height,bottom:l.bottom}),z.attr({dx:D,dy:R})}(d._hasNumber||d._hasDelta)&&C.attr(\"transform\",(function(){var t=s.numbersScaler(p);O+=t[2];var e,r=M(d,\"numbersScale\",1,t[0],O,Math.min);d._scaleNumbers||(r=1),e=d._isAngular?_-r*p.bottom:_-r*(p.top+p.bottom)/2,d._numbersTop=r*p.top+e;var n=p[T];\"center\"===T&&(n=(p.left+p.right)/2);var i=g-r*n;return i=M(d,\"numbersTranslate\",0,i,O,Math.max),o(i,e)+a(r)}))}(t,I,e,{numbersX:p,numbersY:A,numbersScaler:S,transitionOpts:r,onComplete:d}),P&&(E={range:L.gauge.axis.range,color:L.gauge.bgcolor,line:{color:L.gauge.bordercolor,width:0},thickness:1},C={range:L.gauge.axis.range,color:\"rgba(0, 0, 0, 0)\",line:{color:L.gauge.bordercolor,width:L.gauge.borderwidth},thickness:1});var H=I.selectAll(\"g.angular\").data(z?e:[]);H.exit().remove();var G=I.selectAll(\"g.angularaxis\").data(z?e:[]);G.exit().remove(),z&&function(t,e,r,i){var a,c,u,f,p=r[0].trace,d=i.size,g=i.radius,m=i.innerRadius,v=i.gaugeBg,y=i.gaugeOutline,x=[d.l+d.w/2,d.t+d.h/2+g/2],T=i.gauge,k=i.layer,M=i.transitionOpts,A=i.onComplete,S=Math.PI/2;function E(t){var e=p.gauge.axis.range[0],r=(t-e)/(p.gauge.axis.range[1]-e)*Math.PI-S;return r<-S?-S:r>S?S:r}function C(t){return n.svg.arc().innerRadius((m+g)/2-t/2*(g-m)).outerRadius((m+g)/2+t/2*(g-m)).startAngle(-S)}function L(t){t.attr(\"d\",(function(t){return C(t.thickness).startAngle(E(t.range[0])).endAngle(E(t.range[1]))()}))}T.enter().append(\"g\").classed(\"angular\",!0),T.attr(\"transform\",o(x[0],x[1])),k.enter().append(\"g\").classed(\"angularaxis\",!0).classed(\"crisp\",!0),k.selectAll(\"g.xangularaxistick,path,text\").remove(),(a=w(t,p.gauge.axis)).type=\"linear\",a.range=p.gauge.axis.range,a._id=\"xangularaxis\",a.setScale();var I=function(t){return(a.range[0]-t.x)/(a.range[1]-a.range[0])*Math.PI+Math.PI},P={},z=h.makeLabelFns(a,0).labelStandoff;P.xFn=function(t){var e=I(t);return Math.cos(e)*z},P.yFn=function(t){var e=I(t),r=Math.sin(e)>0?.2:1;return-Math.sin(e)*(z+t.fontSize*r)+Math.abs(Math.cos(e))*(t.fontSize*l)},P.anchorFn=function(t){var e=I(t),r=Math.cos(e);return Math.abs(r)<.1?\"middle\":r>0?\"start\":\"end\"},P.heightFn=function(t,e,r){var n=I(t);return-.5*(1+Math.sin(n))*r};var O=function(t){return o(x[0]+g*Math.cos(t),x[1]-g*Math.sin(t))};u=function(t){return O(I(t))};if(c=h.calcTicks(a),f=h.getTickSigns(a)[2],a.visible){f=\"inside\"===a.ticks?-1:1;var D=(a.linewidth||1)/2;h.drawTicks(t,a,{vals:c,layer:k,path:\"M\"+f*D+\",0h\"+f*a.ticklen,transFn:function(t){var e=I(t);return O(e)+\"rotate(\"+-s(e)+\")\"}}),h.drawLabels(t,a,{vals:c,layer:k,transFn:u,labelFns:P})}var R=[v].concat(p.gauge.steps),F=T.selectAll(\"g.bg-arc\").data(R);F.enter().append(\"g\").classed(\"bg-arc\",!0).append(\"path\"),F.select(\"path\").call(L).call(_),F.exit().remove();var B=C(p.gauge.bar.thickness),N=T.selectAll(\"g.value-arc\").data([p.gauge.bar]);N.enter().append(\"g\").classed(\"value-arc\",!0).append(\"path\");var j=N.select(\"path\");b(M)?(j.transition().duration(M.duration).ease(M.easing).each(\"end\",(function(){A&&A()})).each(\"interrupt\",(function(){A&&A()})).attrTween(\"d\",(U=B,V=E(r[0].lastY),q=E(r[0].y),function(){var t=n.interpolate(V,q);return function(e){return U.endAngle(t(e))()}})),p._lastValue=r[0].y):j.attr(\"d\",\"number\"==typeof r[0].y?B.endAngle(E(r[0].y)):\"M0,0Z\");var U,V,q;j.call(_),N.exit().remove(),R=[];var H=p.gauge.threshold.value;H&&R.push({range:[H,H],color:p.gauge.threshold.color,line:{color:p.gauge.threshold.line.color,width:p.gauge.threshold.line.width},thickness:p.gauge.threshold.thickness});var G=T.selectAll(\"g.threshold-arc\").data(R);G.enter().append(\"g\").classed(\"threshold-arc\",!0).append(\"path\"),G.select(\"path\").call(L).call(_),G.exit().remove();var Y=T.selectAll(\"g.gauge-outline\").data([y]);Y.enter().append(\"g\").classed(\"gauge-outline\",!0).append(\"path\"),Y.select(\"path\").call(L).call(_),Y.exit().remove()}(t,0,e,{radius:N,innerRadius:j,gauge:H,layer:G,size:R,gaugeBg:E,gaugeOutline:C,transitionOpts:r,onComplete:d});var Y=I.selectAll(\"g.bullet\").data(O?e:[]);Y.exit().remove();var W=I.selectAll(\"g.bulletaxis\").data(O?e:[]);W.exit().remove(),O&&function(t,e,r,n){var i,a,s,l,c,f=r[0].trace,p=n.gauge,d=n.layer,g=n.gaugeBg,v=n.gaugeOutline,y=n.size,x=f.domain,T=n.transitionOpts,k=n.onComplete;p.enter().append(\"g\").classed(\"bullet\",!0),p.attr(\"transform\",o(y.l,y.t)),d.enter().append(\"g\").classed(\"bulletaxis\",!0).classed(\"crisp\",!0),d.selectAll(\"g.xbulletaxistick,path,text\").remove();var M=y.h,A=f.gauge.bar.thickness*M,S=x.x[0],E=x.x[0]+(x.x[1]-x.x[0])*(f._hasNumber||f._hasDelta?1-u.bulletNumberDomainSize:1);(i=w(t,f.gauge.axis))._id=\"xbulletaxis\",i.domain=[S,E],i.setScale(),a=h.calcTicks(i),s=h.makeTransTickFn(i),l=h.getTickSigns(i)[2],c=y.t+y.h,i.visible&&(h.drawTicks(t,i,{vals:\"inside\"===i.ticks?h.clipEnds(i,a):a,layer:d,path:h.makeTickPath(i,c,l),transFn:s}),h.drawLabels(t,i,{vals:a,layer:d,transFn:s,labelFns:h.makeLabelFns(i,c)}));function C(t){t.attr(\"width\",(function(t){return Math.max(0,i.c2p(t.range[1])-i.c2p(t.range[0]))})).attr(\"x\",(function(t){return i.c2p(t.range[0])})).attr(\"y\",(function(t){return.5*(1-t.thickness)*M})).attr(\"height\",(function(t){return t.thickness*M}))}var L=[g].concat(f.gauge.steps),I=p.selectAll(\"g.bg-bullet\").data(L);I.enter().append(\"g\").classed(\"bg-bullet\",!0).append(\"rect\"),I.select(\"rect\").call(C).call(_),I.exit().remove();var P=p.selectAll(\"g.value-bullet\").data([f.gauge.bar]);P.enter().append(\"g\").classed(\"value-bullet\",!0).append(\"rect\"),P.select(\"rect\").attr(\"height\",A).attr(\"y\",(M-A)/2).call(_),b(T)?P.select(\"rect\").transition().duration(T.duration).ease(T.easing).each(\"end\",(function(){k&&k()})).each(\"interrupt\",(function(){k&&k()})).attr(\"width\",Math.max(0,i.c2p(Math.min(f.gauge.axis.range[1],r[0].y)))):P.select(\"rect\").attr(\"width\",\"number\"==typeof r[0].y?Math.max(0,i.c2p(Math.min(f.gauge.axis.range[1],r[0].y))):0);P.exit().remove();var z=r.filter((function(){return f.gauge.threshold.value})),O=p.selectAll(\"g.threshold-bullet\").data(z);O.enter().append(\"g\").classed(\"threshold-bullet\",!0).append(\"line\"),O.select(\"line\").attr(\"x1\",i.c2p(f.gauge.threshold.value)).attr(\"x2\",i.c2p(f.gauge.threshold.value)).attr(\"y1\",(1-f.gauge.threshold.thickness)/2*M).attr(\"y2\",(1-(1-f.gauge.threshold.thickness)/2)*M).call(m.stroke,f.gauge.threshold.line.color).style(\"stroke-width\",f.gauge.threshold.line.width),O.exit().remove();var D=p.selectAll(\"g.gauge-outline\").data([v]);D.enter().append(\"g\").classed(\"gauge-outline\",!0).append(\"rect\"),D.select(\"rect\").call(C).call(_),D.exit().remove()}(t,0,e,{gauge:Y,layer:W,size:R,gaugeBg:E,gaugeOutline:C,transitionOpts:r,onComplete:d});var X=I.selectAll(\"text.title\").data(e);X.exit().remove(),X.enter().append(\"text\").classed(\"title\",!0),X.attr(\"text-anchor\",(function(){return O?v.right:v[L.title.align]})).text(L.title.text).call(c.font,L.title.font).call(f.convertToTspans,t),X.attr(\"transform\",(function(){var t,e=R.l+R.w*y[L.title.align],r=u.titlePadding,n=c.bBox(X.node());if(P){if(z)if(L.gauge.axis.visible)t=c.bBox(G.node()).top-r-n.bottom;else t=R.t+R.h/2-N/2-n.bottom-r;O&&(t=A-(n.top+n.bottom)/2,e=R.l-u.bulletPadding*R.w)}else t=L._numbersTop-r-n.bottom;return o(e,t)}))}))}},{\"../../components/color\":643,\"../../components/drawing\":665,\"../../constants/alignment\":745,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../plots/cartesian/axes\":828,\"../../plots/cartesian/axis_defaults\":830,\"../../plots/cartesian/layout_attributes\":842,\"../../plots/cartesian/position_defaults\":845,\"./constants\":1119,d3:169}],1123:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../mesh3d/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l=t(\"../../plot_api/edit_types\").overrideAll;var c=e.exports=l(s({x:{valType:\"data_array\"},y:{valType:\"data_array\"},z:{valType:\"data_array\"},value:{valType:\"data_array\"},isomin:{valType:\"number\"},isomax:{valType:\"number\"},surface:{show:{valType:\"boolean\",dflt:!0},count:{valType:\"integer\",dflt:2,min:1},fill:{valType:\"number\",min:0,max:1,dflt:1},pattern:{valType:\"flaglist\",flags:[\"A\",\"B\",\"C\",\"D\",\"E\"],extras:[\"all\",\"odd\",\"even\"],dflt:\"all\"}},spaceframe:{show:{valType:\"boolean\",dflt:!1},fill:{valType:\"number\",min:0,max:1,dflt:.15}},slices:{x:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}},y:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}},z:{show:{valType:\"boolean\",dflt:!1},locations:{valType:\"data_array\",dflt:[]},fill:{valType:\"number\",min:0,max:1,dflt:1}}},caps:{x:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}},y:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}},z:{show:{valType:\"boolean\",dflt:!0},fill:{valType:\"number\",min:0,max:1,dflt:1}}},text:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertemplate:i(),showlegend:s({},o.showlegend,{dflt:!1})},n(\"\",{colorAttr:\"`value`\",showScaleDflt:!0,editTypeOverride:\"calc\"}),{opacity:a.opacity,lightposition:a.lightposition,lighting:a.lighting,flatshading:a.flatshading,contour:a.contour,hoverinfo:s({},o.hoverinfo)}),\"calc\",\"nested\");c.flatshading.dflt=!0,c.lighting.facenormalsepsilon.dflt=0,c.x.editType=c.y.editType=c.z.editType=c.value.editType=\"calc+clearAxisTypes\",c.transforms=void 0},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../mesh3d/attributes\":1128}],1124:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\"),i=t(\"../streamtube/calc\").processGrid,a=t(\"../streamtube/calc\").filter;e.exports=function(t,e){e._len=Math.min(e.x.length,e.y.length,e.z.length,e.value.length),e._x=a(e.x,e._len),e._y=a(e.y,e._len),e._z=a(e.z,e._len),e._value=a(e.value,e._len);var r=i(e);e._gridFill=r.fill,e._Xs=r.Xs,e._Ys=r.Ys,e._Zs=r.Zs,e._len=r.len;for(var o=1/0,s=-1/0,l=0;l<e._len;l++){var c=e._value[l];o=Math.min(o,c),s=Math.max(s,c)}e._minValues=o,e._maxValues=s,e._vMin=void 0===e.isomin||null===e.isomin?o:e.isomin,e._vMax=void 0===e.isomax||null===e.isomin?s:e.isomax,n(t,e,{vals:[e._vMin,e._vMax],containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":651,\"../streamtube/calc\":1295}],1125:[function(t,e,r){\"use strict\";var n=t(\"gl-mesh3d\"),i=t(\"../../lib/gl_format_color\").parseColorScale,a=t(\"../../lib/str2rgbarray\"),o=t(\"../../components/colorscale\").extractOpts,s=t(\"../../plots/gl3d/zip3\"),l=function(t,e){for(var r=e.length-1;r>0;r--){var n=Math.min(e[r],e[r-1]),i=Math.max(e[r],e[r-1]);if(i>n&&n<t&&t<=i)return{id:r,distRatio:(i-t)/(i-n)}}return{id:0,distRatio:0}};function c(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name=\"\",this.data=null,this.showContour=!1}var u=c.prototype;u.handlePick=function(t){if(t.object===this.mesh){var e=t.data.index,r=this.data._meshX[e],n=this.data._meshY[e],i=this.data._meshZ[e],a=this.data._Ys.length,o=this.data._Zs.length,s=l(r,this.data._Xs).id,c=l(n,this.data._Ys).id,u=l(i,this.data._Zs).id,f=t.index=u+o*c+o*a*s;t.traceCoordinate=[this.data._meshX[f],this.data._meshY[f],this.data._meshZ[f],this.data._value[f]];var h=this.data.hovertext||this.data.text;return Array.isArray(h)&&void 0!==h[f]?t.textLabel=h[f]:h&&(t.textLabel=h),!0}},u.update=function(t){var e=this.scene,r=e.fullSceneLayout;function n(t,e,r,n){return e.map((function(e){return t.d2l(e,0,n)*r}))}this.data=h(t);var l={positions:s(n(r.xaxis,t._meshX,e.dataScale[0],t.xcalendar),n(r.yaxis,t._meshY,e.dataScale[1],t.ycalendar),n(r.zaxis,t._meshZ,e.dataScale[2],t.zcalendar)),cells:s(t._meshI,t._meshJ,t._meshK),lightPosition:[t.lightposition.x,t.lightposition.y,t.lightposition.z],ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,vertexNormalsEpsilon:t.lighting.vertexnormalsepsilon,faceNormalsEpsilon:t.lighting.facenormalsepsilon,opacity:t.opacity,contourEnable:t.contour.show,contourColor:a(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading},c=o(t);l.vertexIntensity=t._meshIntensity,l.vertexIntensityBounds=[c.min,c.max],l.colormap=i(t),this.mesh.update(l)},u.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()};var f=[\"xyz\",\"xzy\",\"yxz\",\"yzx\",\"zxy\",\"zyx\"];function h(t){t._meshI=[],t._meshJ=[],t._meshK=[];var e,r,n,i,a,o,s,c=t.surface.show,u=t.spaceframe.show,h=t.surface.fill,p=t.spaceframe.fill,d=!1,g=!1,m=0,v=t._Xs,y=t._Ys,x=t._Zs,b=v.length,_=y.length,w=x.length,T=f.indexOf(t._gridFill.replace(/-/g,\"\").replace(/\\+/g,\"\")),k=function(t,e,r){switch(T){case 5:return r+w*e+w*_*t;case 4:return r+w*t+w*b*e;case 3:return e+_*r+_*w*t;case 2:return e+_*t+_*b*r;case 1:return t+b*r+b*w*e;default:return t+b*e+b*_*r}},M=t._minValues,A=t._maxValues,S=t._vMin,E=t._vMax;function C(t,e,s){for(var l=o.length,c=r;c<l;c++)if(t===n[c]&&e===i[c]&&s===a[c])return c;return-1}function L(){r=e}function I(){n=[],i=[],a=[],o=[],e=0,L()}function P(t,r,s,l){return n.push(t),i.push(r),a.push(s),o.push(l),++e-1}function z(t,e,r){for(var n=[],i=0;i<t.length;i++)n[i]=t[i]*(1-r)+r*e[i];return n}function O(t){s=t}function D(t,e){return\"all\"===t||null===t||t.indexOf(e)>-1}function R(t,e){return null===t?e:t}function F(e,r,n){L();var i,a,o,l=[r],c=[n];if(s>=1)l=[r],c=[n];else if(s>0){var u=function(t,e){var r=t[0],n=t[1],i=t[2],a=function(t,e,r){for(var n=[],i=0;i<t.length;i++)n[i]=(t[i]+e[i]+r[i])/3;return n}(r,n,i),o=Math.sqrt(1-s),l=z(a,r,o),c=z(a,n,o),u=z(a,i,o),f=e[0],h=e[1],p=e[2];return{xyzv:[[r,n,c],[c,l,r],[n,i,u],[u,c,n],[i,r,l],[l,u,i]],abc:[[f,h,-1],[-1,-1,f],[h,p,-1],[-1,-1,h],[p,f,-1],[-1,-1,p]]}}(r,n);l=u.xyzv,c=u.abc}for(var f=0;f<l.length;f++){r=l[f],n=c[f];for(var h=[],p=0;p<3;p++){var d=r[p][0],g=r[p][1],v=r[p][2],y=r[p][3],x=n[p]>-1?n[p]:C(d,g,v);h[p]=x>-1?x:P(d,g,v,R(e,y))}i=h[0],a=h[1],o=h[2],t._meshI.push(i),t._meshJ.push(a),t._meshK.push(o),++m}}function B(t,e,r,n){var i=t[3];i<r&&(i=r),i>n&&(i=n);for(var a=(t[3]-i)/(t[3]-e[3]+1e-9),o=[],s=0;s<4;s++)o[s]=(1-a)*t[s]+a*e[s];return o}function N(t,e,r){return t>=e&&t<=r}function j(t){var e=.001*(E-S);return t>=S-e&&t<=E+e}function U(e){for(var r=[],n=0;n<4;n++){var i=e[n];r.push([t._x[i],t._y[i],t._z[i],t._value[i]])}return r}function V(t,e,r,n,i,a){a||(a=1),r=[-1,-1,-1];var o=!1,s=[N(e[0][3],n,i),N(e[1][3],n,i),N(e[2][3],n,i)];if(!s[0]&&!s[1]&&!s[2])return!1;var l=function(t,e,r){return j(e[0][3])&&j(e[1][3])&&j(e[2][3])?(F(t,e,r),!0):a<3&&V(t,e,r,S,E,++a)};if(s[0]&&s[1]&&s[2])return l(t,e,r)||o;var c=!1;return[[0,1,2],[2,0,1],[1,2,0]].forEach((function(a){if(s[a[0]]&&s[a[1]]&&!s[a[2]]){var u=e[a[0]],f=e[a[1]],h=e[a[2]],p=B(h,u,n,i),d=B(h,f,n,i);o=l(t,[d,p,u],[-1,-1,r[a[0]]])||o,o=l(t,[u,f,d],[r[a[0]],r[a[1]],-1])||o,c=!0}})),c||[[0,1,2],[1,2,0],[2,0,1]].forEach((function(a){if(s[a[0]]&&!s[a[1]]&&!s[a[2]]){var u=e[a[0]],f=e[a[1]],h=e[a[2]],p=B(f,u,n,i),d=B(h,u,n,i);o=l(t,[d,p,u],[-1,-1,r[a[0]]])||o,c=!0}})),o}function q(t,e,r,n){var i=!1,a=U(e),o=[N(a[0][3],r,n),N(a[1][3],r,n),N(a[2][3],r,n),N(a[3][3],r,n)];if(!(o[0]||o[1]||o[2]||o[3]))return i;if(o[0]&&o[1]&&o[2]&&o[3])return g&&(i=function(t,e,r){var n=function(n,i,a){F(t,[e[n],e[i],e[a]],[r[n],r[i],r[a]])};n(0,1,2),n(3,0,1),n(2,3,0),n(1,2,3)}(t,a,e)||i),i;var s=!1;return[[0,1,2,3],[3,0,1,2],[2,3,0,1],[1,2,3,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]];if(g)i=F(t,[c,u,f],[e[l[0]],e[l[1]],e[l[2]]])||i;else{var p=B(h,c,r,n),d=B(h,u,r,n),m=B(h,f,r,n);i=F(null,[p,d,m],[-1,-1,-1])||i}s=!0}})),s?i:([[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2],[0,2,3,1],[1,3,2,0]].forEach((function(l){if(o[l[0]]&&o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]],p=B(f,c,r,n),d=B(f,u,r,n),m=B(h,u,r,n),v=B(h,c,r,n);g?(i=F(t,[c,v,p],[e[l[0]],-1,-1])||i,i=F(t,[u,d,m],[e[l[1]],-1,-1])||i):i=function(t,e,r){var n=function(n,i,a){F(t,[e[n],e[i],e[a]],[r[n],r[i],r[a]])};n(0,1,2),n(2,3,0)}(null,[p,d,m,v],[-1,-1,-1,-1])||i,s=!0}})),s||[[0,1,2,3],[1,2,3,0],[2,3,0,1],[3,0,1,2]].forEach((function(l){if(o[l[0]]&&!o[l[1]]&&!o[l[2]]&&!o[l[3]]){var c=a[l[0]],u=a[l[1]],f=a[l[2]],h=a[l[3]],p=B(u,c,r,n),d=B(f,c,r,n),m=B(h,c,r,n);g?(i=F(t,[c,p,d],[e[l[0]],-1,-1])||i,i=F(t,[c,d,m],[e[l[0]],-1,-1])||i,i=F(t,[c,m,p],[e[l[0]],-1,-1])||i):i=F(null,[p,d,m],[-1,-1,-1])||i,s=!0}})),i)}function H(t,e,r,n,i,a,o,s,l,c,u){var f=!1;return d&&(D(t,\"A\")&&(f=q(null,[e,r,n,a],c,u)||f),D(t,\"B\")&&(f=q(null,[r,n,i,l],c,u)||f),D(t,\"C\")&&(f=q(null,[r,a,o,l],c,u)||f),D(t,\"D\")&&(f=q(null,[n,a,s,l],c,u)||f),D(t,\"E\")&&(f=q(null,[r,n,a,l],c,u)||f)),g&&(f=q(t,[r,n,a,l],c,u)||f),f}function G(t,e,r,n,i,a,o,s){return[!0===s[0]||V(t,U([e,r,n]),[e,r,n],a,o),!0===s[1]||V(t,U([n,i,e]),[n,i,e],a,o)]}function Y(t,e,r,n,i,a,o,s,l){return s?G(t,e,r,i,n,a,o,l):G(t,r,i,n,e,a,o,l)}function W(t,e,r,n,i,a,o){var s,l,c,u,f=!1,h=function(){f=V(t,[s,l,c],[-1,-1,-1],i,a)||f,f=V(t,[c,u,s],[-1,-1,-1],i,a)||f},p=o[0],d=o[1],g=o[2];return p&&(s=z(U([k(e,r-0,n-0)])[0],U([k(e-1,r-0,n-0)])[0],p),l=z(U([k(e,r-0,n-1)])[0],U([k(e-1,r-0,n-1)])[0],p),c=z(U([k(e,r-1,n-1)])[0],U([k(e-1,r-1,n-1)])[0],p),u=z(U([k(e,r-1,n-0)])[0],U([k(e-1,r-1,n-0)])[0],p),h()),d&&(s=z(U([k(e-0,r,n-0)])[0],U([k(e-0,r-1,n-0)])[0],d),l=z(U([k(e-0,r,n-1)])[0],U([k(e-0,r-1,n-1)])[0],d),c=z(U([k(e-1,r,n-1)])[0],U([k(e-1,r-1,n-1)])[0],d),u=z(U([k(e-1,r,n-0)])[0],U([k(e-1,r-1,n-0)])[0],d),h()),g&&(s=z(U([k(e-0,r-0,n)])[0],U([k(e-0,r-0,n-1)])[0],g),l=z(U([k(e-0,r-1,n)])[0],U([k(e-0,r-1,n-1)])[0],g),c=z(U([k(e-1,r-1,n)])[0],U([k(e-1,r-1,n-1)])[0],g),u=z(U([k(e-1,r-0,n)])[0],U([k(e-1,r-0,n-1)])[0],g),h()),f}function X(t,e,r,n,i,a,o,s,l,c,u,f){var h=t;return f?(d&&\"even\"===t&&(h=null),H(h,e,r,n,i,a,o,s,l,c,u)):(d&&\"odd\"===t&&(h=null),H(h,l,s,o,a,i,n,r,e,c,u))}function Z(t,e,r,n,i){for(var a=[],o=0,s=0;s<e.length;s++)for(var l=e[s],c=1;c<w;c++)for(var u=1;u<_;u++)a.push(Y(t,k(l,u-1,c-1),k(l,u-1,c),k(l,u,c-1),k(l,u,c),r,n,(l+u+c)%2,i&&i[o]?i[o]:[])),o++;return a}function J(t,e,r,n,i){for(var a=[],o=0,s=0;s<e.length;s++)for(var l=e[s],c=1;c<b;c++)for(var u=1;u<w;u++)a.push(Y(t,k(c-1,l,u-1),k(c,l,u-1),k(c-1,l,u),k(c,l,u),r,n,(c+l+u)%2,i&&i[o]?i[o]:[])),o++;return a}function K(t,e,r,n,i){for(var a=[],o=0,s=0;s<e.length;s++)for(var l=e[s],c=1;c<_;c++)for(var u=1;u<b;u++)a.push(Y(t,k(u-1,c-1,l),k(u-1,c,l),k(u,c-1,l),k(u,c,l),r,n,(u+c+l)%2,i&&i[o]?i[o]:[])),o++;return a}function Q(t,e,r){for(var n=1;n<w;n++)for(var i=1;i<_;i++)for(var a=1;a<b;a++)X(t,k(a-1,i-1,n-1),k(a-1,i-1,n),k(a-1,i,n-1),k(a-1,i,n),k(a,i-1,n-1),k(a,i-1,n),k(a,i,n-1),k(a,i,n),e,r,(a+i+n)%2)}function $(t,e,r){d=!0,Q(t,e,r),d=!1}function tt(t,e,r,n,i,a){for(var o=[],s=0,l=0;l<e.length;l++)for(var c=e[l],u=1;u<w;u++)for(var f=1;f<_;f++)o.push(W(t,c,f,u,r,n,i[l],a&&a[s]&&a[s])),s++;return o}function et(t,e,r,n,i,a){for(var o=[],s=0,l=0;l<e.length;l++)for(var c=e[l],u=1;u<b;u++)for(var f=1;f<w;f++)o.push(W(t,u,c,f,r,n,i[l],a&&a[s]&&a[s])),s++;return o}function rt(t,e,r,n,i,a){for(var o=[],s=0,l=0;l<e.length;l++)for(var c=e[l],u=1;u<_;u++)for(var f=1;f<b;f++)o.push(W(t,f,u,c,r,n,i[l],a&&a[s]&&a[s])),s++;return o}function nt(t,e){for(var r=[],n=t;n<e;n++)r.push(n);return r}return function(){if(I(),function(){for(var e=0;e<b;e++)for(var r=0;r<_;r++)for(var n=0;n<w;n++){var i=k(e,r,n);P(t._x[i],t._y[i],t._z[i],t._value[i])}}(),u&&p&&(O(p),g=!0,Q(null,S,E),g=!1),c&&h){O(h);for(var e=t.surface.pattern,r=t.surface.count,s=0;s<r;s++){var f=1===r?.5:s/(r-1),d=(1-f)*S+f*E,T=Math.abs(d-M)>Math.abs(d-A)?[M,d]:[d,A];$(e,T[0],T[1])}}var C=[[Math.min(S,A),Math.max(S,A)],[Math.min(M,E),Math.max(M,E)]];[\"x\",\"y\",\"z\"].forEach((function(e){for(var r=[],n=0;n<C.length;n++){var i=0,a=C[n][0],o=C[n][1],s=t.slices[e];if(s.show&&s.fill){O(s.fill);var c=[],u=[],f=[];if(s.locations.length)for(var h=0;h<s.locations.length;h++){var p=l(s.locations[h],\"x\"===e?v:\"y\"===e?y:x);0===p.distRatio?c.push(p.id):p.id>0&&(u.push(p.id),\"x\"===e?f.push([p.distRatio,0,0]):\"y\"===e?f.push([0,p.distRatio,0]):f.push([0,0,p.distRatio]))}else c=nt(1,\"x\"===e?b-1:\"y\"===e?_-1:w-1);u.length>0&&(r[i]=\"x\"===e?tt(null,u,a,o,f,r[i]):\"y\"===e?et(null,u,a,o,f,r[i]):rt(null,u,a,o,f,r[i]),i++),c.length>0&&(r[i]=\"x\"===e?Z(null,c,a,o,r[i]):\"y\"===e?J(null,c,a,o,r[i]):K(null,c,a,o,r[i]),i++)}var d=t.caps[e];d.show&&d.fill&&(O(d.fill),r[i]=\"x\"===e?Z(null,[0,b-1],a,o,r[i]):\"y\"===e?J(null,[0,_-1],a,o,r[i]):K(null,[0,w-1],a,o,r[i]),i++)}})),0===m&&I(),t._meshX=n,t._meshY=i,t._meshZ=a,t._meshIntensity=o,t._Xs=v,t._Ys=y,t._Zs=x}(),t}e.exports={findNearestOnAxis:l,generateIsoMeshes:h,createIsosurfaceTrace:function(t,e){var r=t.glplot.gl,i=n({gl:r}),a=new c(t,i,e.uid);return i._trace=a,a.update(e),t.glplot.add(i),a}}},{\"../../components/colorscale\":655,\"../../lib/gl_format_color\":774,\"../../lib/str2rgbarray\":802,\"../../plots/gl3d/zip3\":881,\"gl-mesh3d\":309}],1126:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../registry\"),a=t(\"./attributes\"),o=t(\"../../components/colorscale/defaults\");function s(t,e,r,n,a){var s=a(\"isomin\"),l=a(\"isomax\");null!=l&&null!=s&&s>l&&(e.isomin=null,e.isomax=null);var c=a(\"x\"),u=a(\"y\"),f=a(\"z\"),h=a(\"value\");c&&c.length&&u&&u.length&&f&&f.length&&h&&h.length?(i.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],n),[\"x\",\"y\",\"z\"].forEach((function(t){var e=\"caps.\"+t;a(e+\".show\")&&a(e+\".fill\");var r=\"slices.\"+t;a(r+\".show\")&&(a(r+\".fill\"),a(r+\".locations\"))})),a(\"spaceframe.show\")&&a(\"spaceframe.fill\"),a(\"surface.show\")&&(a(\"surface.count\"),a(\"surface.fill\"),a(\"surface.pattern\")),a(\"contour.show\")&&(a(\"contour.color\"),a(\"contour.width\")),[\"text\",\"hovertext\",\"hovertemplate\",\"lighting.ambient\",\"lighting.diffuse\",\"lighting.specular\",\"lighting.roughness\",\"lighting.fresnel\",\"lighting.vertexnormalsepsilon\",\"lighting.facenormalsepsilon\",\"lightposition.x\",\"lightposition.y\",\"lightposition.z\",\"flatshading\",\"opacity\"].forEach((function(t){a(t)})),o(t,e,n,a,{prefix:\"\",cLetter:\"c\"}),e._length=null):e.visible=!1}e.exports={supplyDefaults:function(t,e,r,i){s(t,e,r,i,(function(r,i){return n.coerce(t,e,a,r,i)}))},supplyIsoDefaults:s}},{\"../../components/colorscale/defaults\":653,\"../../lib\":778,\"../../registry\":911,\"./attributes\":1123}],1127:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,calc:t(\"./calc\"),colorbar:{min:\"cmin\",max:\"cmax\"},plot:t(\"./convert\").createIsosurfaceTrace,moduleType:\"trace\",name:\"isosurface\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"showLegend\"],meta:{}}},{\"../../plots/gl3d\":870,\"./attributes\":1123,\"./calc\":1124,\"./convert\":1125,\"./defaults\":1126}],1128:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../surface/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat;e.exports=s({x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},z:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},i:{valType:\"data_array\",editType:\"calc\"},j:{valType:\"data_array\",editType:\"calc\"},k:{valType:\"data_array\",editType:\"calc\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertemplate:i({editType:\"calc\"}),delaunayaxis:{valType:\"enumerated\",values:[\"x\",\"y\",\"z\"],dflt:\"z\",editType:\"calc\"},alphahull:{valType:\"number\",dflt:-1,editType:\"calc\"},intensity:{valType:\"data_array\",editType:\"calc\"},intensitymode:{valType:\"enumerated\",values:[\"vertex\",\"cell\"],dflt:\"vertex\",editType:\"calc\"},color:{valType:\"color\",editType:\"calc\"},vertexcolor:{valType:\"data_array\",editType:\"calc\"},facecolor:{valType:\"data_array\",editType:\"calc\"},transforms:void 0},n(\"\",{colorAttr:\"`intensity`\",showScaleDflt:!0,editTypeOverride:\"calc\"}),{opacity:a.opacity,flatshading:{valType:\"boolean\",dflt:!1,editType:\"calc\"},contour:{show:s({},a.contours.x.show,{}),color:a.contours.x.color,width:a.contours.x.width,editType:\"calc\"},lightposition:{x:s({},a.lightposition.x,{dflt:1e5}),y:s({},a.lightposition.y,{dflt:1e5}),z:s({},a.lightposition.z,{dflt:0}),editType:\"calc\"},lighting:s({vertexnormalsepsilon:{valType:\"number\",min:0,max:1,dflt:1e-12,editType:\"calc\"},facenormalsepsilon:{valType:\"number\",min:0,max:1,dflt:1e-6,editType:\"calc\"},editType:\"calc\"},a.lighting),hoverinfo:s({},o.hoverinfo,{editType:\"calc\"}),showlegend:s({},o.showlegend,{dflt:!1})})},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../surface/attributes\":1311}],1129:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){e.intensity&&n(t,e,{vals:e.intensity,containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":651}],1130:[function(t,e,r){\"use strict\";var n=t(\"gl-mesh3d\"),i=t(\"delaunay-triangulate\"),a=t(\"alpha-shape\"),o=t(\"convex-hull\"),s=t(\"../../lib/gl_format_color\").parseColorScale,l=t(\"../../lib/str2rgbarray\"),c=t(\"../../components/colorscale\").extractOpts,u=t(\"../../plots/gl3d/zip3\");function f(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name=\"\",this.color=\"#fff\",this.data=null,this.showContour=!1}var h=f.prototype;function p(t){for(var e=[],r=t.length,n=0;n<r;n++)e[n]=l(t[n]);return e}function d(t,e,r,n){for(var i=[],a=e.length,o=0;o<a;o++)i[o]=t.d2l(e[o],0,n)*r;return i}function g(t){for(var e=[],r=t.length,n=0;n<r;n++)e[n]=Math.round(t[n]);return e}function m(t,e){for(var r=t.length,n=0;n<r;n++)if(t[n]<=-.5||t[n]>=e-.5)return!1;return!0}h.handlePick=function(t){if(t.object===this.mesh){var e=t.index=t.data.index;t.data._cellCenter?t.traceCoordinate=t.data.dataCoordinate:t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]];var r=this.data.hovertext||this.data.text;return Array.isArray(r)&&void 0!==r[e]?t.textLabel=r[e]:r&&(t.textLabel=r),!0}},h.update=function(t){var e=this.scene,r=e.fullSceneLayout;this.data=t;var n,f=t.x.length,h=u(d(r.xaxis,t.x,e.dataScale[0],t.xcalendar),d(r.yaxis,t.y,e.dataScale[1],t.ycalendar),d(r.zaxis,t.z,e.dataScale[2],t.zcalendar));if(t.i&&t.j&&t.k){if(t.i.length!==t.j.length||t.j.length!==t.k.length||!m(t.i,f)||!m(t.j,f)||!m(t.k,f))return;n=u(g(t.i),g(t.j),g(t.k))}else n=0===t.alphahull?o(h):t.alphahull>0?a(t.alphahull,h):function(t,e){for(var r=[\"x\",\"y\",\"z\"].indexOf(t),n=[],a=e.length,o=0;o<a;o++)n[o]=[e[o][(r+1)%3],e[o][(r+2)%3]];return i(n)}(t.delaunayaxis,h);var v={positions:h,cells:n,lightPosition:[t.lightposition.x,t.lightposition.y,t.lightposition.z],ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,vertexNormalsEpsilon:t.lighting.vertexnormalsepsilon,faceNormalsEpsilon:t.lighting.facenormalsepsilon,opacity:t.opacity,contourEnable:t.contour.show,contourColor:l(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading};if(t.intensity){var y=c(t);this.color=\"#fff\";var x=t.intensitymode;v[x+\"Intensity\"]=t.intensity,v[x+\"IntensityBounds\"]=[y.min,y.max],v.colormap=s(t)}else t.vertexcolor?(this.color=t.vertexcolor[0],v.vertexColors=p(t.vertexcolor)):t.facecolor?(this.color=t.facecolor[0],v.cellColors=p(t.facecolor)):(this.color=t.color,v.meshColor=l(t.color));this.mesh.update(v)},h.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,i=n({gl:r}),a=new f(t,i,e.uid);return i._trace=a,a.update(e),t.glplot.add(i),a}},{\"../../components/colorscale\":655,\"../../lib/gl_format_color\":774,\"../../lib/str2rgbarray\":802,\"../../plots/gl3d/zip3\":881,\"alpha-shape\":69,\"convex-hull\":135,\"delaunay-triangulate\":171,\"gl-mesh3d\":309}],1131:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),o=t(\"./attributes\");e.exports=function(t,e,r,s){function l(r,n){return i.coerce(t,e,o,r,n)}function c(t){var e=t.map((function(t){var e=l(t);return e&&i.isArrayOrTypedArray(e)?e:null}));return e.every((function(t){return t&&t.length===e[0].length}))&&e}c([\"x\",\"y\",\"z\"])?(c([\"i\",\"j\",\"k\"]),(!e.i||e.j&&e.k)&&(!e.j||e.k&&e.i)&&(!e.k||e.i&&e.j)?(n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],s),[\"lighting.ambient\",\"lighting.diffuse\",\"lighting.specular\",\"lighting.roughness\",\"lighting.fresnel\",\"lighting.vertexnormalsepsilon\",\"lighting.facenormalsepsilon\",\"lightposition.x\",\"lightposition.y\",\"lightposition.z\",\"flatshading\",\"alphahull\",\"delaunayaxis\",\"opacity\"].forEach((function(t){l(t)})),l(\"contour.show\")&&(l(\"contour.color\"),l(\"contour.width\")),\"intensity\"in t?(l(\"intensity\"),l(\"intensitymode\"),a(t,e,s,l,{prefix:\"\",cLetter:\"c\"})):(e.showscale=!1,\"facecolor\"in t?l(\"facecolor\"):\"vertexcolor\"in t?l(\"vertexcolor\"):l(\"color\",r)),l(\"text\"),l(\"hovertext\"),l(\"hovertemplate\"),e._length=null):e.visible=!1):e.visible=!1}},{\"../../components/colorscale/defaults\":653,\"../../lib\":778,\"../../registry\":911,\"./attributes\":1128}],1132:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),colorbar:{min:\"cmin\",max:\"cmax\"},plot:t(\"./convert\"),moduleType:\"trace\",name:\"mesh3d\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"showLegend\"],meta:{}}},{\"../../plots/gl3d\":870,\"./attributes\":1128,\"./calc\":1129,\"./convert\":1130,\"./defaults\":1131}],1133:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").extendFlat,i=t(\"../scatter/attributes\"),a=t(\"../../components/drawing/attributes\").dash,o=t(\"../../components/fx/attributes\"),s=t(\"../../constants/delta.js\"),l=s.INCREASING.COLOR,c=s.DECREASING.COLOR,u=i.line;function f(t){return{line:{color:n({},u.color,{dflt:t}),width:u.width,dash:a,editType:\"style\"},editType:\"style\"}}e.exports={xperiod:i.xperiod,xperiod0:i.xperiod0,xperiodalignment:i.xperiodalignment,x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},open:{valType:\"data_array\",editType:\"calc\"},high:{valType:\"data_array\",editType:\"calc\"},low:{valType:\"data_array\",editType:\"calc\"},close:{valType:\"data_array\",editType:\"calc\"},line:{width:n({},u.width,{}),dash:n({},a,{}),editType:\"style\"},increasing:f(l),decreasing:f(c),text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},tickwidth:{valType:\"number\",min:0,max:.5,dflt:.3,editType:\"calc\"},hoverlabel:n({},o.hoverlabel,{split:{valType:\"boolean\",dflt:!1,editType:\"style\"}})}},{\"../../components/drawing/attributes\":664,\"../../components/fx/attributes\":674,\"../../constants/delta.js\":747,\"../../lib\":778,\"../scatter/attributes\":1187}],1134:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=n._,a=t(\"../../plots/cartesian/axes\"),o=t(\"../../plots/cartesian/align_period\"),s=t(\"../../constants/numerical\").BADNUM;function l(t,e,r,n){return{o:t,h:e,l:r,c:n}}function c(t,e,r,o,l,c){for(var u=l.makeCalcdata(e,\"open\"),f=l.makeCalcdata(e,\"high\"),h=l.makeCalcdata(e,\"low\"),p=l.makeCalcdata(e,\"close\"),d=Array.isArray(e.text),g=Array.isArray(e.hovertext),m=!0,v=null,y=!!e.xperiodalignment,x=[],b=0;b<o.length;b++){var _=o[b],w=u[b],T=f[b],k=h[b],M=p[b];if(_!==s&&w!==s&&T!==s&&k!==s&&M!==s){M===w?null!==v&&M!==v&&(m=M>v):m=M>w,v=M;var A=c(w,T,k,M);A.pos=_,A.yc=(w+M)/2,A.i=b,A.dir=m?\"increasing\":\"decreasing\",A.x=A.pos,A.y=[k,T],y&&(A.orig_p=r[b]),d&&(A.tx=e.text[b]),g&&(A.htx=e.hovertext[b]),x.push(A)}else x.push({pos:_,empty:!0})}return e._extremes[l._id]=a.findExtremes(l,n.concat(h,f),{padded:!0}),x.length&&(x[0].t={labels:{open:i(t,\"open:\")+\" \",high:i(t,\"high:\")+\" \",low:i(t,\"low:\")+\" \",close:i(t,\"close:\")+\" \"}}),x}e.exports={calc:function(t,e){var r=a.getFromId(t,e.xaxis),i=a.getFromId(t,e.yaxis),s=function(t,e,r){var i=r._minDiff;if(!i){var a,s=t._fullData,l=[];for(i=1/0,a=0;a<s.length;a++){var c=s[a];if(\"ohlc\"===c.type&&!0===c.visible&&c.xaxis===e._id){l.push(c);var u=e.makeCalcdata(c,\"x\");c._origX=u;var f=o(r,e,\"x\",u);c._xcalc=f;var h=n.distinctVals(f).minDiff;h&&isFinite(h)&&(i=Math.min(i,h))}}for(i===1/0&&(i=1),a=0;a<l.length;a++)l[a]._minDiff=i}return i*r.tickwidth}(t,r,e),u=e._minDiff;e._minDiff=null;var f=e._origX;e._origX=null;var h=e._xcalc;e._xcalc=null;var p=c(t,e,f,h,i,l);return e._extremes[r._id]=a.findExtremes(r,h,{vpad:u/2}),p.length?(n.extendFlat(p[0].t,{wHover:u/2,tickLen:s}),p):[{t:{empty:!0}}]},calcCommon:c}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../../plots/cartesian/align_period\":825,\"../../plots/cartesian/axes\":828}],1135:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./ohlc_defaults\"),a=t(\"../scatter/period_defaults\"),o=t(\"./attributes\");function s(t,e,r,n){r(n+\".line.color\"),r(n+\".line.width\",e.line.width),r(n+\".line.dash\",e.line.dash)}e.exports=function(t,e,r,l){function c(r,i){return n.coerce(t,e,o,r,i)}i(t,e,c,l)?(a(t,e,l,c,{x:!0}),c(\"line.width\"),c(\"line.dash\"),s(t,e,c,\"increasing\"),s(t,e,c,\"decreasing\"),c(\"text\"),c(\"hovertext\"),c(\"tickwidth\"),l._requestRangeslider[e.xaxis]=!0):e.visible=!1}},{\"../../lib\":778,\"../scatter/period_defaults\":1207,\"./attributes\":1133,\"./ohlc_defaults\":1138}],1136:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../lib\"),a=t(\"../../components/fx\"),o=t(\"../../components/color\"),s=t(\"../../lib\").fillText,l=t(\"../../constants/delta.js\"),c={increasing:l.INCREASING.SYMBOL,decreasing:l.DECREASING.SYMBOL};function u(t,e,r,n){var i,s,l=t.cd,c=t.xa,u=l[0].trace,f=l[0].t,h=u.type,p=\"ohlc\"===h?\"l\":\"min\",d=\"ohlc\"===h?\"h\":\"max\",g=f.bPos||0,m=f.bdPos||f.tickLen,v=f.wHover,y=Math.min(1,m/Math.abs(c.r2c(c.range[1])-c.r2c(c.range[0])));function x(t){var r=function(t){return t.pos+g-e}(t);return a.inbox(r-v,r+v,i)}function b(t){var e=t[p],n=t[d];return e===n||a.inbox(e-r,n-r,i)}function _(t){return(x(t)+b(t))/2}i=t.maxHoverDistance-y,s=t.maxSpikeDistance-y;var w=a.getDistanceFunction(n,x,b,_);if(a.getClosest(l,w,t),!1===t.index)return null;var T=l[t.index];if(T.empty)return null;var k=u[T.dir],M=k.line.color;return o.opacity(M)&&k.line.width?t.color=M:t.color=k.fillcolor,t.x0=c.c2p(T.pos+g-m,!0),t.x1=c.c2p(T.pos+g+m,!0),t.xLabelVal=void 0!==T.orig_p?T.orig_p:T.pos,t.spikeDistance=_(T)*s/i,t.xSpike=c.c2p(T.pos,!0),t}function f(t,e,r,a){var o=t.cd,s=t.ya,l=o[0].trace,c=o[0].t,f=[],h=u(t,e,r,a);if(!h)return[];var p=o[h.index].hi||l.hoverinfo,d=p.split(\"+\");if(!(\"all\"===p||-1!==d.indexOf(\"y\")))return[];for(var g=[\"high\",\"open\",\"close\",\"low\"],m={},v=0;v<g.length;v++){var y,x=g[v],b=l[x][h.index],_=s.c2p(b,!0);b in m?(y=m[b]).yLabel+=\"<br>\"+c.labels[x]+n.hoverLabelText(s,b):((y=i.extendFlat({},h)).y0=y.y1=_,y.yLabelVal=b,y.yLabel=c.labels[x]+n.hoverLabelText(s,b),y.name=\"\",f.push(y),m[b]=y)}return f}function h(t,e,r,i){var a=t.cd,o=t.ya,l=a[0].trace,f=a[0].t,h=u(t,e,r,i);if(!h)return[];var p=a[h.index],d=h.index=p.i,g=p.dir;function m(t){return f.labels[t]+n.hoverLabelText(o,l[t][d])}var v=p.hi||l.hoverinfo,y=v.split(\"+\"),x=\"all\"===v,b=x||-1!==y.indexOf(\"y\"),_=x||-1!==y.indexOf(\"text\"),w=b?[m(\"open\"),m(\"high\"),m(\"low\"),m(\"close\")+\"  \"+c[g]]:[];return _&&s(p,l,w),h.extraText=w.join(\"<br>\"),h.y0=h.y1=o.c2p(p.yc,!0),[h]}e.exports={hoverPoints:function(t,e,r,n){return t.cd[0].trace.hoverlabel.split?f(t,e,r,n):h(t,e,r,n)},hoverSplit:f,hoverOnPoints:h}},{\"../../components/color\":643,\"../../components/fx\":683,\"../../constants/delta.js\":747,\"../../lib\":778,\"../../plots/cartesian/axes\":828}],1137:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"ohlc\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"showLegend\"],meta:{},attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\").calc,plot:t(\"./plot\"),style:t(\"./style\"),hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"./select\")}},{\"../../plots/cartesian\":841,\"./attributes\":1133,\"./calc\":1134,\"./defaults\":1135,\"./hover\":1136,\"./plot\":1139,\"./select\":1140,\"./style\":1141}],1138:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\");e.exports=function(t,e,r,a){var o=r(\"x\"),s=r(\"open\"),l=r(\"high\"),c=r(\"low\"),u=r(\"close\");if(r(\"hoverlabel.split\"),n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\"],a),s&&l&&c&&u){var f=Math.min(s.length,l.length,c.length,u.length);return o&&(f=Math.min(f,i.minRowLength(o))),e._length=f,f}}},{\"../../lib\":778,\"../../registry\":911}],1139:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\");e.exports=function(t,e,r,a){var o=e.yaxis,s=e.xaxis,l=!!s.rangebreaks;i.makeTraceGroups(a,r,\"trace ohlc\").each((function(t){var e=n.select(this),r=t[0],a=r.t;if(!0!==r.trace.visible||a.empty)e.remove();else{var c=a.tickLen,u=e.selectAll(\"path\").data(i.identity);u.enter().append(\"path\"),u.exit().remove(),u.attr(\"d\",(function(t){if(t.empty)return\"M0,0Z\";var e=s.c2p(t.pos-c,!0),r=s.c2p(t.pos+c,!0),n=l?(e+r)/2:s.c2p(t.pos,!0);return\"M\"+e+\",\"+o.c2p(t.o,!0)+\"H\"+n+\"M\"+n+\",\"+o.c2p(t.h,!0)+\"V\"+o.c2p(t.l,!0)+\"M\"+r+\",\"+o.c2p(t.c,!0)+\"H\"+n}))}}))}},{\"../../lib\":778,d3:169}],1140:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r,n=t.cd,i=t.xaxis,a=t.yaxis,o=[],s=n[0].t.bPos||0;if(!1===e)for(r=0;r<n.length;r++)n[r].selected=0;else for(r=0;r<n.length;r++){var l=n[r];e.contains([i.c2p(l.pos+s),a.c2p(l.yc)],null,l.i,t)?(o.push({pointNumber:l.i,x:i.c2d(l.pos),y:a.c2d(l.yc)}),l.selected=1):l.selected=0}return o}},{}],1141:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/drawing\"),a=t(\"../../components/color\");e.exports=function(t,e,r){var o=r||n.select(t).selectAll(\"g.ohlclayer\").selectAll(\"g.trace\");o.style(\"opacity\",(function(t){return t[0].trace.opacity})),o.each((function(t){var e=t[0].trace;n.select(this).selectAll(\"path\").each((function(t){if(!t.empty){var r=e[t.dir].line;n.select(this).style(\"fill\",\"none\").call(a.stroke,r.color).call(i.dashLine,r.dash,r.width).style(\"opacity\",e.selectedpoints&&!t.selected?.3:1)}}))}))}},{\"../../components/color\":643,\"../../components/drawing\":665,d3:169}],1142:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat,i=t(\"../../plots/attributes\"),a=t(\"../../plots/font_attributes\"),o=t(\"../../components/colorscale/attributes\"),s=t(\"../../plots/template_attributes\").hovertemplateAttrs,l=t(\"../../plots/domain\").attributes,c=n({editType:\"calc\"},o(\"line\",{editTypeOverride:\"calc\"}),{shape:{valType:\"enumerated\",values:[\"linear\",\"hspline\"],dflt:\"linear\",editType:\"plot\"},hovertemplate:s({editType:\"plot\",arrayOk:!1},{keys:[\"count\",\"probability\"]})});e.exports={domain:l({name:\"parcats\",trace:!0,editType:\"calc\"}),hoverinfo:n({},i.hoverinfo,{flags:[\"count\",\"probability\"],editType:\"plot\",arrayOk:!1}),hoveron:{valType:\"enumerated\",values:[\"category\",\"color\",\"dimension\"],dflt:\"category\",editType:\"plot\"},hovertemplate:s({editType:\"plot\",arrayOk:!1},{keys:[\"count\",\"probability\",\"category\",\"categorycount\",\"colorcount\",\"bandcolorcount\"]}),arrangement:{valType:\"enumerated\",values:[\"perpendicular\",\"freeform\",\"fixed\"],dflt:\"perpendicular\",editType:\"plot\"},bundlecolors:{valType:\"boolean\",dflt:!0,editType:\"plot\"},sortpaths:{valType:\"enumerated\",values:[\"forward\",\"backward\"],dflt:\"forward\",editType:\"plot\"},labelfont:a({editType:\"calc\"}),tickfont:a({editType:\"calc\"}),dimensions:{_isLinkedToArray:\"dimension\",label:{valType:\"string\",editType:\"calc\"},categoryorder:{valType:\"enumerated\",values:[\"trace\",\"category ascending\",\"category descending\",\"array\"],dflt:\"trace\",editType:\"calc\"},categoryarray:{valType:\"data_array\",editType:\"calc\"},ticktext:{valType:\"data_array\",editType:\"calc\"},values:{valType:\"data_array\",dflt:[],editType:\"calc\"},displayindex:{valType:\"integer\",editType:\"calc\"},editType:\"calc\",visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"}},line:c,counts:{valType:\"number\",min:0,dflt:1,arrayOk:!0,editType:\"calc\"},customdata:void 0,hoverlabel:void 0,ids:void 0,legendgroup:void 0,opacity:void 0,selectedpoints:void 0,showlegend:void 0}},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/domain\":855,\"../../plots/font_attributes\":856,\"../../plots/template_attributes\":906}],1143:[function(t,e,r){\"use strict\";var n=t(\"../../plots/get_data\").getModuleCalcData,i=t(\"./plot\");r.name=\"parcats\",r.plot=function(t,e,r,a){var o=n(t.calcdata,\"parcats\");if(o.length){var s=o[0];i(t,s,r,a)}},r.clean=function(t,e,r,n){var i=n._has&&n._has(\"parcats\"),a=e._has&&e._has(\"parcats\");i&&!a&&n._paperdiv.selectAll(\".parcats\").remove()}},{\"../../plots/get_data\":865,\"./plot\":1148}],1144:[function(t,e,r){\"use strict\";var n=t(\"../../lib/gup\").wrap,i=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/calc\"),o=t(\"../../lib/filter_unique.js\"),s=t(\"../../components/drawing\"),l=t(\"../../lib\"),c=t(\"fast-isnumeric\");function u(t,e,r){t.valueInds.push(e),t.count+=r}function f(t,e,r){return{categoryInds:t,color:e,rawColor:r,valueInds:[],count:0}}function h(t,e,r){t.valueInds.push(e),t.count+=r}e.exports=function(t,e){var r=l.filterVisible(e.dimensions);if(0===r.length)return[];var p,d,g,m=r.map((function(t){var e;if(\"trace\"===t.categoryorder)e=null;else if(\"array\"===t.categoryorder)e=t.categoryarray;else{e=o(t.values);for(var r=!0,n=0;n<e.length;n++)if(!c(e[n])){r=!1;break}e.sort(r?l.sorterAsc:void 0),\"category descending\"===t.categoryorder&&(e=e.reverse())}return function(t,e){e=null==e?[]:e.map((function(t){return t}));var r={},n={},i=[];e.forEach((function(t,e){r[t]=0,n[t]=e}));for(var a=0;a<t.length;a++){var o,s=t[a];void 0===r[s]?(r[s]=1,o=e.push(s)-1,n[s]=o):(r[s]++,o=n[s]),i.push(o)}var l=e.map((function(t){return r[t]}));return{uniqueValues:e,uniqueCounts:l,inds:i}}(t.values,e)}));p=l.isArrayOrTypedArray(e.counts)?e.counts:[e.counts],function(t){var e;if(function(t){for(var e=new Array(t.length),r=0;r<t.length;r++){if(t[r]<0||t[r]>=t.length)return!1;if(void 0!==e[t[r]])return!1;e[t[r]]=!0}return!0}(t.map((function(t){return t.displayindex}))))for(e=0;e<t.length;e++)t[e]._displayindex=t[e].displayindex;else for(e=0;e<t.length;e++)t[e]._displayindex=e}(r),r.forEach((function(t,e){!function(t,e){t._categoryarray=e.uniqueValues,null===t.ticktext||void 0===t.ticktext?t._ticktext=[]:t._ticktext=t.ticktext.slice();for(var r=t._ticktext.length;r<e.uniqueValues.length;r++)t._ticktext.push(e.uniqueValues[r])}(t,m[e])}));var v,y=e.line;y?(i(e,\"line\")&&a(t,e,{vals:e.line.color,containerStr:\"line\",cLetter:\"c\"}),v=s.tryColorscale(y)):v=l.identity;var x,b,_,w,T,k=r[0].values.length,M={},A=m.map((function(t){return t.inds}));for(g=0,x=0;x<k;x++){var S=[];for(b=0;b<A.length;b++)S.push(A[b][x]);d=p[x%p.length],g+=d;var E=(_=x,w=void 0,T=void 0,l.isArrayOrTypedArray(y.color)?T=w=y.color[_%y.color.length]:w=y.color,{color:v(w),rawColor:T}),C=S+\"-\"+E.rawColor;void 0===M[C]&&(M[C]=f(S,E.color,E.rawColor)),h(M[C],x,d)}var L,I=r.map((function(t,e){return function(t,e,r,n,i){return{dimensionInd:t,containerInd:e,displayInd:r,dimensionLabel:n,count:i,categories:[],dragX:null}}(e,t._index,t._displayindex,t.label,g)}));for(x=0;x<k;x++)for(d=p[x%p.length],b=0;b<I.length;b++){var P=I[b].containerInd,z=m[b].inds[x],O=I[b].categories;if(void 0===O[z]){var D=e.dimensions[P]._categoryarray[z],R=e.dimensions[P]._ticktext[z];O[z]={dimensionInd:b,categoryInd:L=z,categoryValue:D,displayInd:L,categoryLabel:R,valueInds:[],count:0,dragY:null}}u(O[z],x,d)}return n(function(t,e,r){var n=t.map((function(t){return t.categories.length})).reduce((function(t,e){return Math.max(t,e)}));return{dimensions:t,paths:e,trace:void 0,maxCats:n,count:r}}(I,M,g))}},{\"../../components/colorscale/calc\":651,\"../../components/colorscale/helpers\":654,\"../../components/drawing\":665,\"../../lib\":778,\"../../lib/filter_unique.js\":769,\"../../lib/gup\":775,\"fast-isnumeric\":241}],1145:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/defaults\"),o=t(\"../../plots/domain\").defaults,s=t(\"../../plots/array_container_defaults\"),l=t(\"./attributes\"),c=t(\"../parcoords/merge_length\");function u(t,e){function r(r,i){return n.coerce(t,e,l.dimensions,r,i)}var i=r(\"values\"),a=r(\"visible\");if(i&&i.length||(a=e.visible=!1),a){r(\"label\"),r(\"displayindex\",e._index);var o,s=t.categoryarray,c=Array.isArray(s)&&s.length>0;c&&(o=\"array\");var u=r(\"categoryorder\",o);\"array\"===u?(r(\"categoryarray\"),r(\"ticktext\")):(delete t.categoryarray,delete t.ticktext),c||\"array\"!==u||(e.categoryorder=\"trace\")}}e.exports=function(t,e,r,f){function h(r,i){return n.coerce(t,e,l,r,i)}var p=s(t,e,{name:\"dimensions\",handleItemDefaults:u}),d=function(t,e,r,o,s){s(\"line.shape\"),s(\"line.hovertemplate\");var l=s(\"line.color\",o.colorway[0]);if(i(t,\"line\")&&n.isArrayOrTypedArray(l)){if(l.length)return s(\"line.colorscale\"),a(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}),l.length;e.line.color=r}return 1/0}(t,e,r,f,h);o(e,f,h),Array.isArray(p)&&p.length||(e.visible=!1),c(e,p,\"values\",d),h(\"hoveron\"),h(\"hovertemplate\"),h(\"arrangement\"),h(\"bundlecolors\"),h(\"sortpaths\"),h(\"counts\");var g={family:f.font.family,size:Math.round(f.font.size),color:f.font.color};n.coerceFont(h,\"labelfont\",g);var m={family:f.font.family,size:Math.round(f.font.size/1.2),color:f.font.color};n.coerceFont(h,\"tickfont\",m)}},{\"../../components/colorscale/defaults\":653,\"../../components/colorscale/helpers\":654,\"../../lib\":778,\"../../plots/array_container_defaults\":823,\"../../plots/domain\":855,\"../parcoords/merge_length\":1158,\"./attributes\":1142}],1146:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),colorbar:{container:\"line\",min:\"cmin\",max:\"cmax\"},moduleType:\"trace\",name:\"parcats\",basePlotModule:t(\"./base_plot\"),categories:[\"noOpacity\"],meta:{}}},{\"./attributes\":1142,\"./base_plot\":1143,\"./calc\":1144,\"./defaults\":1145,\"./plot\":1148}],1147:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../plot_api/plot_api\"),a=t(\"../../components/fx\"),o=t(\"../../lib\"),s=o.strTranslate,l=t(\"../../components/drawing\"),c=t(\"tinycolor2\"),u=t(\"../../lib/svg_text_utils\");function f(t,e,r,i){var a=t.map(R.bind(0,e,r)),c=i.selectAll(\"g.parcatslayer\").data([null]);c.enter().append(\"g\").attr(\"class\",\"parcatslayer\").style(\"pointer-events\",\"all\");var f=c.selectAll(\"g.trace.parcats\").data(a,h),v=f.enter().append(\"g\").attr(\"class\",\"trace parcats\");f.attr(\"transform\",(function(t){return s(t.x,t.y)})),v.append(\"g\").attr(\"class\",\"paths\");var y=f.select(\"g.paths\").selectAll(\"path.path\").data((function(t){return t.paths}),h);y.attr(\"fill\",(function(t){return t.model.color}));var _=y.enter().append(\"path\").attr(\"class\",\"path\").attr(\"stroke-opacity\",0).attr(\"fill\",(function(t){return t.model.color})).attr(\"fill-opacity\",0);b(_),y.attr(\"d\",(function(t){return t.svgD})),_.empty()||y.sort(d),y.exit().remove(),y.on(\"mouseover\",g).on(\"mouseout\",m).on(\"click\",x),v.append(\"g\").attr(\"class\",\"dimensions\");var k=f.select(\"g.dimensions\").selectAll(\"g.dimension\").data((function(t){return t.dimensions}),h);k.enter().append(\"g\").attr(\"class\",\"dimension\"),k.attr(\"transform\",(function(t){return s(t.x,0)})),k.exit().remove();var M=k.selectAll(\"g.category\").data((function(t){return t.categories}),h),A=M.enter().append(\"g\").attr(\"class\",\"category\");M.attr(\"transform\",(function(t){return s(0,t.y)})),A.append(\"rect\").attr(\"class\",\"catrect\").attr(\"pointer-events\",\"none\"),M.select(\"rect.catrect\").attr(\"fill\",\"none\").attr(\"width\",(function(t){return t.width})).attr(\"height\",(function(t){return t.height})),w(A);var S=M.selectAll(\"rect.bandrect\").data((function(t){return t.bands}),h);S.each((function(){o.raiseToTop(this)})),S.attr(\"fill\",(function(t){return t.color}));var z=S.enter().append(\"rect\").attr(\"class\",\"bandrect\").attr(\"stroke-opacity\",0).attr(\"fill\",(function(t){return t.color})).attr(\"fill-opacity\",0);S.attr(\"fill\",(function(t){return t.color})).attr(\"width\",(function(t){return t.width})).attr(\"height\",(function(t){return t.height})).attr(\"y\",(function(t){return t.y})).attr(\"cursor\",(function(t){return\"fixed\"===t.parcatsViewModel.arrangement?\"default\":\"perpendicular\"===t.parcatsViewModel.arrangement?\"ns-resize\":\"move\"})),T(z),S.exit().remove(),A.append(\"text\").attr(\"class\",\"catlabel\").attr(\"pointer-events\",\"none\");var O=e._fullLayout.paper_bgcolor;M.select(\"text.catlabel\").attr(\"text-anchor\",(function(t){return p(t)?\"start\":\"end\"})).attr(\"alignment-baseline\",\"middle\").style(\"text-shadow\",O+\" -1px  1px 2px, \"+O+\" 1px  1px 2px, \"+O+\"  1px -1px 2px, \"+O+\" -1px -1px 2px\").style(\"fill\",\"rgb(0, 0, 0)\").attr(\"x\",(function(t){return p(t)?t.width+5:-5})).attr(\"y\",(function(t){return t.height/2})).text((function(t){return t.model.categoryLabel})).each((function(t){l.font(n.select(this),t.parcatsViewModel.categorylabelfont),u.convertToTspans(n.select(this),e)})),A.append(\"text\").attr(\"class\",\"dimlabel\"),M.select(\"text.dimlabel\").attr(\"text-anchor\",\"middle\").attr(\"alignment-baseline\",\"baseline\").attr(\"cursor\",(function(t){return\"fixed\"===t.parcatsViewModel.arrangement?\"default\":\"ew-resize\"})).attr(\"x\",(function(t){return t.width/2})).attr(\"y\",-5).text((function(t,e){return 0===e?t.parcatsViewModel.model.dimensions[t.model.dimensionInd].dimensionLabel:null})).each((function(t){l.font(n.select(this),t.parcatsViewModel.labelfont)})),M.selectAll(\"rect.bandrect\").on(\"mouseover\",E).on(\"mouseout\",C),M.exit().remove(),k.call(n.behavior.drag().origin((function(t){return{x:t.x,y:0}})).on(\"dragstart\",L).on(\"drag\",I).on(\"dragend\",P)),f.each((function(t){t.traceSelection=n.select(this),t.pathSelection=n.select(this).selectAll(\"g.paths\").selectAll(\"path.path\"),t.dimensionSelection=n.select(this).selectAll(\"g.dimensions\").selectAll(\"g.dimension\")})),f.exit().remove()}function h(t){return t.key}function p(t){var e=t.parcatsViewModel.dimensions.length,r=t.parcatsViewModel.dimensions[e-1].model.dimensionInd;return t.model.dimensionInd===r}function d(t,e){return t.model.rawColor>e.model.rawColor?1:t.model.rawColor<e.model.rawColor?-1:0}function g(t){if(!t.parcatsViewModel.dragDimension&&-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")){o.raiseToTop(this),_(n.select(this));var e=v(t),r=y(t);if(t.parcatsViewModel.graphDiv.emit(\"plotly_hover\",{points:e,event:n.event,constraints:r}),-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"none\")){var i,s,l,u=n.mouse(this)[0],f=t.parcatsViewModel.graphDiv,h=t.parcatsViewModel.trace,p=f._fullLayout,d=p._paperdiv.node().getBoundingClientRect(),g=t.parcatsViewModel.graphDiv.getBoundingClientRect();for(l=0;l<t.leftXs.length-1;l++)if(t.leftXs[l]+t.dimWidths[l]-2<=u&&u<=t.leftXs[l+1]+2){var m=t.parcatsViewModel.dimensions[l],x=t.parcatsViewModel.dimensions[l+1];i=(m.x+m.width+x.x)/2,s=(t.topYs[l]+t.topYs[l+1]+t.height)/2;break}var b=t.parcatsViewModel.x+i,w=t.parcatsViewModel.y+s,T=c.mostReadable(t.model.color,[\"black\",\"white\"]),k=t.model.count,M=k/t.parcatsViewModel.model.count,A={countLabel:k,probabilityLabel:M.toFixed(3)},S=[];-1!==t.parcatsViewModel.hoverinfoItems.indexOf(\"count\")&&S.push([\"Count:\",A.countLabel].join(\" \")),-1!==t.parcatsViewModel.hoverinfoItems.indexOf(\"probability\")&&S.push([\"P:\",A.probabilityLabel].join(\" \"));var E=S.join(\"<br>\"),C=n.mouse(f)[0];a.loneHover({trace:h,x:b-d.left+g.left,y:w-d.top+g.top,text:E,color:t.model.color,borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontSize:10,fontColor:T,idealAlign:C<b?\"right\":\"left\",hovertemplate:(h.line||{}).hovertemplate,hovertemplateLabels:A,eventData:[{data:h._input,fullData:h,count:k,probability:M}]},{container:p._hoverlayer.node(),outerContainer:p._paper.node(),gd:f})}}}function m(t){if(!t.parcatsViewModel.dragDimension&&(b(n.select(this)),a.loneUnhover(t.parcatsViewModel.graphDiv._fullLayout._hoverlayer.node()),t.parcatsViewModel.pathSelection.sort(d),-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\"))){var e=v(t),r=y(t);t.parcatsViewModel.graphDiv.emit(\"plotly_unhover\",{points:e,event:n.event,constraints:r})}}function v(t){for(var e=[],r=z(t.parcatsViewModel),n=0;n<t.model.valueInds.length;n++){var i=t.model.valueInds[n];e.push({curveNumber:r,pointNumber:i})}return e}function y(t){for(var e={},r=t.parcatsViewModel.model.dimensions,n=0;n<r.length;n++){var i=r[n],a=i.categories[t.model.categoryInds[n]];e[i.containerInd]=a.categoryValue}return void 0!==t.model.rawColor&&(e.color=t.model.rawColor),e}function x(t){if(-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")){var e=v(t),r=y(t);t.parcatsViewModel.graphDiv.emit(\"plotly_click\",{points:e,event:n.event,constraints:r})}}function b(t){t.attr(\"fill\",(function(t){return t.model.color})).attr(\"fill-opacity\",.6).attr(\"stroke\",\"lightgray\").attr(\"stroke-width\",.2).attr(\"stroke-opacity\",1)}function _(t){t.attr(\"fill-opacity\",.8).attr(\"stroke\",(function(t){return c.mostReadable(t.model.color,[\"black\",\"white\"])})).attr(\"stroke-width\",.3)}function w(t){t.select(\"rect.catrect\").attr(\"stroke\",\"black\").attr(\"stroke-width\",1).attr(\"stroke-opacity\",1)}function T(t){t.attr(\"stroke\",\"black\").attr(\"stroke-width\",.2).attr(\"stroke-opacity\",1).attr(\"fill-opacity\",1)}function k(t){var e=t.parcatsViewModel.pathSelection,r=t.categoryViewModel.model.dimensionInd,n=t.categoryViewModel.model.categoryInd;return e.filter((function(e){return e.model.categoryInds[r]===n&&e.model.color===t.color}))}function M(t,e,r){var i=n.select(t).datum(),a=i.categoryViewModel.model,o=i.parcatsViewModel.graphDiv,s=n.select(t.parentNode).selectAll(\"rect.bandrect\"),l=[];s.each((function(t){k(t).each((function(t){Array.prototype.push.apply(l,v(t))}))}));var c={};c[a.dimensionInd]=a.categoryValue,o.emit(e,{points:l,event:r,constraints:c})}function A(t,e,r){var i=n.select(t).datum(),a=i.categoryViewModel.model,o=i.parcatsViewModel.graphDiv,s=k(i),l=[];s.each((function(t){Array.prototype.push.apply(l,v(t))}));var c={};c[a.dimensionInd]=a.categoryValue,void 0!==i.rawColor&&(c.color=i.rawColor),o.emit(e,{points:l,event:r,constraints:c})}function S(t,e,r){t._fullLayout._calcInverseTransform(t);var i,a,o=t._fullLayout._invScaleX,s=t._fullLayout._invScaleY,l=n.select(r.parentNode).select(\"rect.catrect\"),c=l.node().getBoundingClientRect(),u=l.datum(),f=u.parcatsViewModel,h=f.model.dimensions[u.model.dimensionInd],p=f.trace,d=c.top+c.height/2;f.dimensions.length>1&&h.displayInd===f.dimensions.length-1?(i=c.left,a=\"left\"):(i=c.left+c.width,a=\"right\");var g=u.model.count,m=u.model.categoryLabel,v=g/u.parcatsViewModel.model.count,y={countLabel:g,categoryLabel:m,probabilityLabel:v.toFixed(3)},x=[];-1!==u.parcatsViewModel.hoverinfoItems.indexOf(\"count\")&&x.push([\"Count:\",y.countLabel].join(\" \")),-1!==u.parcatsViewModel.hoverinfoItems.indexOf(\"probability\")&&x.push([\"P(\"+y.categoryLabel+\"):\",y.probabilityLabel].join(\" \"));var b=x.join(\"<br>\");return{trace:p,x:o*(i-e.left),y:s*(d-e.top),text:b,color:\"lightgray\",borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontSize:12,fontColor:\"black\",idealAlign:a,hovertemplate:p.hovertemplate,hovertemplateLabels:y,eventData:[{data:p._input,fullData:p,count:g,category:m,probability:v}]}}function E(t){if(!t.parcatsViewModel.dragDimension&&-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")){if(n.mouse(this)[1]<-1)return;var e,r=t.parcatsViewModel.graphDiv,i=r._fullLayout,s=i._paperdiv.node().getBoundingClientRect(),l=t.parcatsViewModel.hoveron;if(\"color\"===l?(!function(t){var e=n.select(t).datum(),r=k(e);_(r),r.each((function(){o.raiseToTop(this)})),n.select(t.parentNode).selectAll(\"rect.bandrect\").filter((function(t){return t.color===e.color})).each((function(){o.raiseToTop(this),n.select(this).attr(\"stroke\",\"black\").attr(\"stroke-width\",1.5)}))}(this),A(this,\"plotly_hover\",n.event)):(!function(t){n.select(t.parentNode).selectAll(\"rect.bandrect\").each((function(t){var e=k(t);_(e),e.each((function(){o.raiseToTop(this)}))})),n.select(t.parentNode).select(\"rect.catrect\").attr(\"stroke\",\"black\").attr(\"stroke-width\",2.5)}(this),M(this,\"plotly_hover\",n.event)),-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"none\"))\"category\"===l?e=S(r,s,this):\"color\"===l?e=function(t,e,r){t._fullLayout._calcInverseTransform(t);var i,a,o=t._fullLayout._invScaleX,s=t._fullLayout._invScaleY,l=r.getBoundingClientRect(),u=n.select(r).datum(),f=u.categoryViewModel,h=f.parcatsViewModel,p=h.model.dimensions[f.model.dimensionInd],d=h.trace,g=l.y+l.height/2;h.dimensions.length>1&&p.displayInd===h.dimensions.length-1?(i=l.left,a=\"left\"):(i=l.left+l.width,a=\"right\");var m=f.model.categoryLabel,v=u.parcatsViewModel.model.count,y=0;u.categoryViewModel.bands.forEach((function(t){t.color===u.color&&(y+=t.count)}));var x=f.model.count,b=0;h.pathSelection.each((function(t){t.model.color===u.color&&(b+=t.model.count)}));var _=y/v,w=y/b,T=y/x,k={countLabel:v,categoryLabel:m,probabilityLabel:_.toFixed(3)},M=[];-1!==f.parcatsViewModel.hoverinfoItems.indexOf(\"count\")&&M.push([\"Count:\",k.countLabel].join(\" \")),-1!==f.parcatsViewModel.hoverinfoItems.indexOf(\"probability\")&&(M.push(\"P(color \\u2229 \"+m+\"): \"+k.probabilityLabel),M.push(\"P(\"+m+\" | color): \"+w.toFixed(3)),M.push(\"P(color | \"+m+\"): \"+T.toFixed(3)));var A=M.join(\"<br>\"),S=c.mostReadable(u.color,[\"black\",\"white\"]);return{trace:d,x:o*(i-e.left),y:s*(g-e.top),text:A,color:u.color,borderColor:\"black\",fontFamily:'Monaco, \"Courier New\", monospace',fontColor:S,fontSize:10,idealAlign:a,hovertemplate:d.hovertemplate,hovertemplateLabels:k,eventData:[{data:d._input,fullData:d,category:m,count:v,probability:_,categorycount:x,colorcount:b,bandcolorcount:y}]}}(r,s,this):\"dimension\"===l&&(e=function(t,e,r){var i=[];return n.select(r.parentNode.parentNode).selectAll(\"g.category\").select(\"rect.catrect\").each((function(){i.push(S(t,e,this))})),i}(r,s,this)),e&&a.loneHover(e,{container:i._hoverlayer.node(),outerContainer:i._paper.node(),gd:r})}}function C(t){var e=t.parcatsViewModel;if(!e.dragDimension&&(b(e.pathSelection),w(e.dimensionSelection.selectAll(\"g.category\")),T(e.dimensionSelection.selectAll(\"g.category\").selectAll(\"rect.bandrect\")),a.loneUnhover(e.graphDiv._fullLayout._hoverlayer.node()),e.pathSelection.sort(d),-1===e.hoverinfoItems.indexOf(\"skip\"))){\"color\"===t.parcatsViewModel.hoveron?A(this,\"plotly_unhover\",n.event):M(this,\"plotly_unhover\",n.event)}}function L(t){\"fixed\"!==t.parcatsViewModel.arrangement&&(t.dragDimensionDisplayInd=t.model.displayInd,t.initialDragDimensionDisplayInds=t.parcatsViewModel.model.dimensions.map((function(t){return t.displayInd})),t.dragHasMoved=!1,t.dragCategoryDisplayInd=null,n.select(this).selectAll(\"g.category\").select(\"rect.catrect\").each((function(e){var r=n.mouse(this)[0],i=n.mouse(this)[1];-2<=r&&r<=e.width+2&&-2<=i&&i<=e.height+2&&(t.dragCategoryDisplayInd=e.model.displayInd,t.initialDragCategoryDisplayInds=t.model.categories.map((function(t){return t.displayInd})),e.model.dragY=e.y,o.raiseToTop(this.parentNode),n.select(this.parentNode).selectAll(\"rect.bandrect\").each((function(e){e.y<i&&i<=e.y+e.height&&(t.potentialClickBand=this)})))})),t.parcatsViewModel.dragDimension=t,a.loneUnhover(t.parcatsViewModel.graphDiv._fullLayout._hoverlayer.node()))}function I(t){if(\"fixed\"!==t.parcatsViewModel.arrangement&&(t.dragHasMoved=!0,null!==t.dragDimensionDisplayInd)){var e=t.dragDimensionDisplayInd,r=e-1,i=e+1,a=t.parcatsViewModel.dimensions[e];if(null!==t.dragCategoryDisplayInd){var o=a.categories[t.dragCategoryDisplayInd];o.model.dragY+=n.event.dy;var s=o.model.dragY,l=o.model.displayInd,c=a.categories,u=c[l-1],f=c[l+1];void 0!==u&&s<u.y+u.height/2&&(o.model.displayInd=u.model.displayInd,u.model.displayInd=l),void 0!==f&&s+o.height>f.y+f.height/2&&(o.model.displayInd=f.model.displayInd,f.model.displayInd=l),t.dragCategoryDisplayInd=o.model.displayInd}if(null===t.dragCategoryDisplayInd||\"freeform\"===t.parcatsViewModel.arrangement){a.model.dragX=n.event.x;var h=t.parcatsViewModel.dimensions[r],p=t.parcatsViewModel.dimensions[i];void 0!==h&&a.model.dragX<h.x+h.width&&(a.model.displayInd=h.model.displayInd,h.model.displayInd=e),void 0!==p&&a.model.dragX+a.width>p.x&&(a.model.displayInd=p.model.displayInd,p.model.displayInd=t.dragDimensionDisplayInd),t.dragDimensionDisplayInd=a.model.displayInd}N(t.parcatsViewModel),B(t.parcatsViewModel),D(t.parcatsViewModel),O(t.parcatsViewModel)}}function P(t){if(\"fixed\"!==t.parcatsViewModel.arrangement&&null!==t.dragDimensionDisplayInd){n.select(this).selectAll(\"text\").attr(\"font-weight\",\"normal\");var e={},r=z(t.parcatsViewModel),a=t.parcatsViewModel.model.dimensions.map((function(t){return t.displayInd})),o=t.initialDragDimensionDisplayInds.some((function(t,e){return t!==a[e]}));o&&a.forEach((function(r,n){var i=t.parcatsViewModel.model.dimensions[n].containerInd;e[\"dimensions[\"+i+\"].displayindex\"]=r}));var s=!1;if(null!==t.dragCategoryDisplayInd){var l=t.model.categories.map((function(t){return t.displayInd}));if(s=t.initialDragCategoryDisplayInds.some((function(t,e){return t!==l[e]}))){var c=t.model.categories.slice().sort((function(t,e){return t.displayInd-e.displayInd})),u=c.map((function(t){return t.categoryValue})),f=c.map((function(t){return t.categoryLabel}));e[\"dimensions[\"+t.model.containerInd+\"].categoryarray\"]=[u],e[\"dimensions[\"+t.model.containerInd+\"].ticktext\"]=[f],e[\"dimensions[\"+t.model.containerInd+\"].categoryorder\"]=\"array\"}}if(-1===t.parcatsViewModel.hoverinfoItems.indexOf(\"skip\")&&!t.dragHasMoved&&t.potentialClickBand&&(\"color\"===t.parcatsViewModel.hoveron?A(t.potentialClickBand,\"plotly_click\",n.event.sourceEvent):M(t.potentialClickBand,\"plotly_click\",n.event.sourceEvent)),t.model.dragX=null,null!==t.dragCategoryDisplayInd)t.parcatsViewModel.dimensions[t.dragDimensionDisplayInd].categories[t.dragCategoryDisplayInd].model.dragY=null,t.dragCategoryDisplayInd=null;t.dragDimensionDisplayInd=null,t.parcatsViewModel.dragDimension=null,t.dragHasMoved=null,t.potentialClickBand=null,N(t.parcatsViewModel),B(t.parcatsViewModel),n.transition().duration(300).ease(\"cubic-in-out\").each((function(){D(t.parcatsViewModel,!0),O(t.parcatsViewModel,!0)})).each(\"end\",(function(){(o||s)&&i.restyle(t.parcatsViewModel.graphDiv,e,[r])}))}}function z(t){for(var e,r=t.graphDiv._fullData,n=0;n<r.length;n++)if(t.key===r[n].uid){e=n;break}return e}function O(t,e){var r;void 0===e&&(e=!1),t.pathSelection.data((function(t){return t.paths}),h),(r=t.pathSelection,e?r.transition():r).attr(\"d\",(function(t){return t.svgD}))}function D(t,e){function r(t){return e?t.transition():t}void 0===e&&(e=!1),t.dimensionSelection.data((function(t){return t.dimensions}),h);var i=t.dimensionSelection.selectAll(\"g.category\").data((function(t){return t.categories}),h);r(t.dimensionSelection).attr(\"transform\",(function(t){return s(t.x,0)})),r(i).attr(\"transform\",(function(t){return s(0,t.y)})),i.select(\".dimlabel\").text((function(t,e){return 0===e?t.parcatsViewModel.model.dimensions[t.model.dimensionInd].dimensionLabel:null})),i.select(\".catlabel\").attr(\"text-anchor\",(function(t){return p(t)?\"start\":\"end\"})).attr(\"x\",(function(t){return p(t)?t.width+5:-5})).each((function(t){var e,r;p(t)?(e=t.width+5,r=\"start\"):(e=-5,r=\"end\"),n.select(this).selectAll(\"tspan\").attr(\"x\",e).attr(\"text-anchor\",r)}));var a=i.selectAll(\"rect.bandrect\").data((function(t){return t.bands}),h),l=a.enter().append(\"rect\").attr(\"class\",\"bandrect\").attr(\"cursor\",\"move\").attr(\"stroke-opacity\",0).attr(\"fill\",(function(t){return t.color})).attr(\"fill-opacity\",0);a.attr(\"fill\",(function(t){return t.color})).attr(\"width\",(function(t){return t.width})).attr(\"height\",(function(t){return t.height})).attr(\"y\",(function(t){return t.y})),T(l),a.each((function(){o.raiseToTop(this)})),a.exit().remove()}function R(t,e,r){var n,i=r[0],a=e.margin||{l:80,r:80,t:100,b:80},o=i.trace,s=o.domain,l=e.width,c=e.height,u=Math.floor(l*(s.x[1]-s.x[0])),f=Math.floor(c*(s.y[1]-s.y[0])),h=s.x[0]*l+a.l,p=e.height-s.y[1]*e.height+a.t,d=o.line.shape;n=\"all\"===o.hoverinfo?[\"count\",\"probability\"]:(o.hoverinfo||\"\").split(\"+\");var g={trace:o,key:o.uid,model:i,x:h,y:p,width:u,height:f,hoveron:o.hoveron,hoverinfoItems:n,arrangement:o.arrangement,bundlecolors:o.bundlecolors,sortpaths:o.sortpaths,labelfont:o.labelfont,categorylabelfont:o.tickfont,pathShape:d,dragDimension:null,margin:a,paths:[],dimensions:[],graphDiv:t,traceSelection:null,pathSelection:null,dimensionSelection:null};return i.dimensions&&(N(g),B(g)),g}function F(t,e,r,i,a){var o,s,l=[],c=[];for(s=0;s<r.length-1;s++)o=n.interpolateNumber(r[s]+t[s],t[s+1]),l.push(o(a)),c.push(o(1-a));var u=\"M \"+t[0]+\",\"+e[0];for(u+=\"l\"+r[0]+\",0 \",s=1;s<r.length;s++)u+=\"C\"+l[s-1]+\",\"+e[s-1]+\" \"+c[s-1]+\",\"+e[s]+\" \"+t[s]+\",\"+e[s],u+=\"l\"+r[s]+\",0 \";for(u+=\"l0,\"+i+\" \",u+=\"l -\"+r[r.length-1]+\",0 \",s=r.length-2;s>=0;s--)u+=\"C\"+c[s]+\",\"+(e[s+1]+i)+\" \"+l[s]+\",\"+(e[s]+i)+\" \"+(t[s]+r[s])+\",\"+(e[s]+i),u+=\"l-\"+r[s]+\",0 \";return u+=\"Z\"}function B(t){var e=t.dimensions,r=t.model,n=e.map((function(t){return t.categories.map((function(t){return t.y}))})),i=t.model.dimensions.map((function(t){return t.categories.map((function(t){return t.displayInd}))})),a=t.model.dimensions.map((function(t){return t.displayInd})),o=t.dimensions.map((function(t){return t.model.dimensionInd})),s=e.map((function(t){return t.x})),l=e.map((function(t){return t.width})),c=[];for(var u in r.paths)r.paths.hasOwnProperty(u)&&c.push(r.paths[u]);function f(t){var e=t.categoryInds.map((function(t,e){return i[e][t]}));return o.map((function(t){return e[t]}))}c.sort((function(e,r){var n=f(e),i=f(r);return\"backward\"===t.sortpaths&&(n.reverse(),i.reverse()),n.push(e.valueInds[0]),i.push(r.valueInds[0]),t.bundlecolors&&(n.unshift(e.rawColor),i.unshift(r.rawColor)),n<i?-1:n>i?1:0}));for(var h=new Array(c.length),p=e[0].model.count,d=e[0].categories.map((function(t){return t.height})).reduce((function(t,e){return t+e})),g=0;g<c.length;g++){var m,v=c[g];m=p>0?d*(v.count/p):0;for(var y,x=new Array(n.length),b=0;b<v.categoryInds.length;b++){var _=v.categoryInds[b],w=i[b][_],T=a[b];x[T]=n[T][w],n[T][w]+=m;var k=t.dimensions[T].categories[w],M=k.bands.length,A=k.bands[M-1];if(void 0===A||v.rawColor!==A.rawColor){var S=void 0===A?0:A.y+A.height;k.bands.push({key:S,color:v.color,rawColor:v.rawColor,height:m,width:k.width,count:v.count,y:S,categoryViewModel:k,parcatsViewModel:t})}else{var E=k.bands[M-1];E.height+=m,E.count+=v.count}}y=\"hspline\"===t.pathShape?F(s,x,l,m,.5):F(s,x,l,m,0),h[g]={key:v.valueInds[0],model:v,height:m,leftXs:s,topYs:x,dimWidths:l,svgD:y,parcatsViewModel:t}}t.paths=h}function N(t){var e=t.model.dimensions.map((function(t){return{displayInd:t.displayInd,dimensionInd:t.dimensionInd}}));e.sort((function(t,e){return t.displayInd-e.displayInd}));var r=[];for(var n in e){var i=e[n].dimensionInd,a=t.model.dimensions[i];r.push(j(t,a))}t.dimensions=r}function j(t,e){var r,n=t.model.dimensions.length,i=e.displayInd;r=40+(n>1?(t.width-80-16)/(n-1):0)*i;var a,o,s,l,c,u=[],f=t.model.maxCats,h=e.categories.length,p=e.count,d=t.height-8*(f-1),g=8*(f-h)/2,m=e.categories.map((function(t){return{displayInd:t.displayInd,categoryInd:t.categoryInd}}));for(m.sort((function(t,e){return t.displayInd-e.displayInd})),c=0;c<h;c++)l=m[c].categoryInd,o=e.categories[l],a=p>0?o.count/p*d:0,s={key:o.valueInds[0],model:o,width:16,height:a,y:null!==o.dragY?o.dragY:g,bands:[],parcatsViewModel:t},g=g+a+8,u.push(s);return{key:e.dimensionInd,x:null!==e.dragX?e.dragX:r,y:0,width:16,model:e,categories:u,parcatsViewModel:t,dragCategoryDisplayInd:null,dragDimensionDisplayInd:null,initialDragDimensionDisplayInds:null,initialDragCategoryDisplayInds:null,dragHasMoved:null,potentialClickBand:null}}e.exports=function(t,e,r,n){f(r,t,n,e)}},{\"../../components/drawing\":665,\"../../components/fx\":683,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../plot_api/plot_api\":814,d3:169,tinycolor2:576}],1148:[function(t,e,r){\"use strict\";var n=t(\"./parcats\");e.exports=function(t,e,r,i){var a=t._fullLayout,o=a._paper,s=a._size;n(t,o,e,{width:s.w,height:s.h,margin:{t:s.t,r:s.r,b:s.b,l:s.l}},r,i)}},{\"./parcats\":1147}],1149:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/cartesian/layout_attributes\"),a=t(\"../../plots/font_attributes\"),o=t(\"../../plots/domain\").attributes,s=t(\"../../lib/extend\").extendFlat,l=t(\"../../plot_api/plot_template\").templatedArray;e.exports={domain:o({name:\"parcoords\",trace:!0,editType:\"plot\"}),labelangle:{valType:\"angle\",dflt:0,editType:\"plot\"},labelside:{valType:\"enumerated\",values:[\"top\",\"bottom\"],dflt:\"top\",editType:\"plot\"},labelfont:a({editType:\"plot\"}),tickfont:a({editType:\"plot\"}),rangefont:a({editType:\"plot\"}),dimensions:l(\"dimension\",{label:{valType:\"string\",editType:\"plot\"},tickvals:s({},i.tickvals,{editType:\"plot\"}),ticktext:s({},i.ticktext,{editType:\"plot\"}),tickformat:s({},i.tickformat,{editType:\"plot\"}),visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},range:{valType:\"info_array\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],editType:\"plot\"},constraintrange:{valType:\"info_array\",freeLength:!0,dimensions:\"1-2\",items:[{valType:\"number\",editType:\"plot\"},{valType:\"number\",editType:\"plot\"}],editType:\"plot\"},multiselect:{valType:\"boolean\",dflt:!0,editType:\"plot\"},values:{valType:\"data_array\",editType:\"calc\"},editType:\"calc\"}),line:s({editType:\"calc\"},n(\"line\",{colorscaleDflt:\"Viridis\",autoColorDflt:!1,editTypeOverride:\"calc\"}))}},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plot_api/plot_template\":817,\"../../plots/cartesian/layout_attributes\":842,\"../../plots/domain\":855,\"../../plots/font_attributes\":856}],1150:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),i=t(\"d3\"),a=t(\"../../lib/gup\").keyFun,o=t(\"../../lib/gup\").repeat,s=t(\"../../lib\").sorterAsc,l=t(\"../../lib\").strTranslate,c=n.bar.snapRatio;function u(t,e){return t*(1-c)+e*c}var f=n.bar.snapClose;function h(t,e){return t*(1-f)+e*f}function p(t,e,r,n){if(function(t,e){for(var r=0;r<e.length;r++)if(t>=e[r][0]&&t<=e[r][1])return!0;return!1}(r,n))return r;var i=t?-1:1,a=0,o=e.length-1;if(i<0){var s=a;a=o,o=s}for(var l=e[a],c=l,f=a;i*f<i*o;f+=i){var p=f+i,d=e[p];if(i*r<i*h(l,d))return u(l,c);if(i*r<i*d||p===o)return u(d,l);c=l,l=d}}function d(t){t.attr(\"x\",-n.bar.captureWidth/2).attr(\"width\",n.bar.captureWidth)}function g(t){t.attr(\"visibility\",\"visible\").style(\"visibility\",\"visible\").attr(\"fill\",\"yellow\").attr(\"opacity\",0)}function m(t){if(!t.brush.filterSpecified)return\"0,\"+t.height;for(var e,r,n,i=v(t.brush.filter.getConsolidated(),t.height),a=[0],o=i.length?i[0][0]:null,s=0;s<i.length;s++)r=(e=i[s])[1]-e[0],a.push(o),a.push(r),(n=s+1)<i.length&&(o=i[n][0]-e[1]);return a.push(t.height),a}function v(t,e){return t.map((function(t){return t.map((function(t){return Math.max(0,t*e)})).sort(s)}))}function y(){i.select(document.body).style(\"cursor\",null)}function x(t){t.attr(\"stroke-dasharray\",m)}function b(t,e){var r=i.select(t).selectAll(\".highlight, .highlight-shadow\");x(e?r.transition().duration(n.bar.snapDuration).each(\"end\",e):r)}function _(t,e){var r,i=t.brush,a=NaN,o={};if(i.filterSpecified){var s=t.height,l=i.filter.getConsolidated(),c=v(l,s),u=NaN,f=NaN,h=NaN;for(r=0;r<=c.length;r++){var p=c[r];if(p&&p[0]<=e&&e<=p[1]){u=r;break}if(f=r?r-1:NaN,p&&p[0]>e){h=r;break}}if(a=u,isNaN(a)&&(a=isNaN(f)||isNaN(h)?isNaN(f)?h:f:e-c[f][1]<c[h][0]-e?f:h),!isNaN(a)){var d=c[a],g=function(t,e){var r=n.bar.handleHeight;if(!(e>t[1]+r||e<t[0]-r))return e>=.9*t[1]+.1*t[0]?\"n\":e<=.9*t[0]+.1*t[1]?\"s\":\"ns\"}(d,e);g&&(o.interval=l[a],o.intervalPix=d,o.region=g)}}if(t.ordinal&&!o.region){var m=t.unitTickvals,y=t.unitToPaddedPx.invert(e);for(r=0;r<m.length;r++){var x=[.25*m[Math.max(r-1,0)]+.75*m[r],.25*m[Math.min(r+1,m.length-1)]+.75*m[r]];if(y>=x[0]&&y<=x[1]){o.clickableOrdinalRange=x;break}}}return o}function w(t,e){i.event.sourceEvent.stopPropagation();var r=e.height-i.mouse(t)[1]-2*n.verticalPadding,a=e.brush.svgBrush;a.wasDragged=!0,a._dragging=!0,a.grabbingBar?a.newExtent=[r-a.grabPoint,r+a.barLength-a.grabPoint].map(e.unitToPaddedPx.invert):a.newExtent=[a.startExtent,e.unitToPaddedPx.invert(r)].sort(s),e.brush.filterSpecified=!0,a.extent=a.stayingIntervals.concat([a.newExtent]),a.brushCallback(e),b(t.parentNode)}function T(t,e){var r=_(e,e.height-i.mouse(t)[1]-2*n.verticalPadding),a=\"crosshair\";r.clickableOrdinalRange?a=\"pointer\":r.region&&(a=r.region+\"-resize\"),i.select(document.body).style(\"cursor\",a)}function k(t){t.on(\"mousemove\",(function(t){i.event.preventDefault(),t.parent.inBrushDrag||T(this,t)})).on(\"mouseleave\",(function(t){t.parent.inBrushDrag||y()})).call(i.behavior.drag().on(\"dragstart\",(function(t){!function(t,e){i.event.sourceEvent.stopPropagation();var r=e.height-i.mouse(t)[1]-2*n.verticalPadding,a=e.unitToPaddedPx.invert(r),o=e.brush,s=_(e,r),l=s.interval,c=o.svgBrush;if(c.wasDragged=!1,c.grabbingBar=\"ns\"===s.region,c.grabbingBar){var u=l.map(e.unitToPaddedPx);c.grabPoint=r-u[0]-n.verticalPadding,c.barLength=u[1]-u[0]}c.clickableOrdinalRange=s.clickableOrdinalRange,c.stayingIntervals=e.multiselect&&o.filterSpecified?o.filter.getConsolidated():[],l&&(c.stayingIntervals=c.stayingIntervals.filter((function(t){return t[0]!==l[0]&&t[1]!==l[1]}))),c.startExtent=s.region?l[\"s\"===s.region?1:0]:a,e.parent.inBrushDrag=!0,c.brushStartCallback()}(this,t)})).on(\"drag\",(function(t){w(this,t)})).on(\"dragend\",(function(t){!function(t,e){var r=e.brush,n=r.filter,a=r.svgBrush;a._dragging||(T(t,e),w(t,e),e.brush.svgBrush.wasDragged=!1),a._dragging=!1,i.event.sourceEvent.stopPropagation();var o=a.grabbingBar;if(a.grabbingBar=!1,a.grabLocation=void 0,e.parent.inBrushDrag=!1,y(),!a.wasDragged)return a.wasDragged=void 0,a.clickableOrdinalRange?r.filterSpecified&&e.multiselect?a.extent.push(a.clickableOrdinalRange):(a.extent=[a.clickableOrdinalRange],r.filterSpecified=!0):o?(a.extent=a.stayingIntervals,0===a.extent.length&&A(r)):A(r),a.brushCallback(e),b(t.parentNode),void a.brushEndCallback(r.filterSpecified?n.getConsolidated():[]);var s=function(){n.set(n.getConsolidated())};if(e.ordinal){var l=e.unitTickvals;l[l.length-1]<l[0]&&l.reverse(),a.newExtent=[p(0,l,a.newExtent[0],a.stayingIntervals),p(1,l,a.newExtent[1],a.stayingIntervals)];var c=a.newExtent[1]>a.newExtent[0];a.extent=a.stayingIntervals.concat(c?[a.newExtent]:[]),a.extent.length||A(r),a.brushCallback(e),c?b(t.parentNode,s):(s(),b(t.parentNode))}else s();a.brushEndCallback(r.filterSpecified?n.getConsolidated():[])}(this,t)})))}function M(t,e){return t[0]-e[0]}function A(t){t.filterSpecified=!1,t.svgBrush.extent=[[-1/0,1/0]]}function S(t){for(var e,r=t.slice(),n=[],i=r.shift();i;){for(e=i.slice();(i=r.shift())&&i[0]<=e[1];)e[1]=Math.max(e[1],i[1]);n.push(e)}return 1===n.length&&n[0][0]>n[0][1]&&(n=[]),n}e.exports={makeBrush:function(t,e,r,n,i,a){var o,l=function(){var t,e,r=[];return{set:function(n){1===(r=n.map((function(t){return t.slice().sort(s)})).sort(M)).length&&r[0][0]===-1/0&&r[0][1]===1/0&&(r=[[0,-1]]),t=S(r),e=r.reduce((function(t,e){return[Math.min(t[0],e[0]),Math.max(t[1],e[1])]}),[1/0,-1/0])},get:function(){return r.slice()},getConsolidated:function(){return t},getBounds:function(){return e}}}();return l.set(r),{filter:l,filterSpecified:e,svgBrush:{extent:[],brushStartCallback:n,brushCallback:(o=i,function(t){var e=t.brush,r=function(t){return t.svgBrush.extent.map((function(t){return t.slice()}))}(e).slice();e.filter.set(r),o()}),brushEndCallback:a}}},ensureAxisBrush:function(t){var e=t.selectAll(\".\"+n.cn.axisBrush).data(o,a);e.enter().append(\"g\").classed(n.cn.axisBrush,!0),function(t){var e=t.selectAll(\".background\").data(o);e.enter().append(\"rect\").classed(\"background\",!0).call(d).call(g).style(\"pointer-events\",\"auto\").attr(\"transform\",l(0,n.verticalPadding)),e.call(k).attr(\"height\",(function(t){return t.height-n.verticalPadding}));var r=t.selectAll(\".highlight-shadow\").data(o);r.enter().append(\"line\").classed(\"highlight-shadow\",!0).attr(\"x\",-n.bar.width/2).attr(\"stroke-width\",n.bar.width+n.bar.strokeWidth).attr(\"stroke\",n.bar.strokeColor).attr(\"opacity\",n.bar.strokeOpacity).attr(\"stroke-linecap\",\"butt\"),r.attr(\"y1\",(function(t){return t.height})).call(x);var i=t.selectAll(\".highlight\").data(o);i.enter().append(\"line\").classed(\"highlight\",!0).attr(\"x\",-n.bar.width/2).attr(\"stroke-width\",n.bar.width-n.bar.strokeWidth).attr(\"stroke\",n.bar.fillColor).attr(\"opacity\",n.bar.fillOpacity).attr(\"stroke-linecap\",\"butt\"),i.attr(\"y1\",(function(t){return t.height})).call(x)}(e)},cleanRanges:function(t,e){if(Array.isArray(t[0])?(t=t.map((function(t){return t.sort(s)})),t=e.multiselect?S(t.sort(M)):[t[0]]):t=[t.sort(s)],e.tickvals){var r=e.tickvals.slice().sort(s);if(!(t=t.map((function(t){var e=[p(0,r,t[0],[]),p(1,r,t[1],[])];if(e[1]>e[0])return e})).filter((function(t){return t}))).length)return}return t.length>1?t:t[0]}}},{\"../../lib\":778,\"../../lib/gup\":775,\"./constants\":1153,d3:169}],1151:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../plots/get_data\").getModuleCalcData,a=t(\"./plot\"),o=t(\"../../constants/xmlns_namespaces\");r.name=\"parcoords\",r.plot=function(t){var e=i(t.calcdata,\"parcoords\")[0];e.length&&a(t,e)},r.clean=function(t,e,r,n){var i=n._has&&n._has(\"parcoords\"),a=e._has&&e._has(\"parcoords\");i&&!a&&(n._paperdiv.selectAll(\".parcoords\").remove(),n._glimages.selectAll(\"*\").remove())},r.toSVG=function(t){var e=t._fullLayout._glimages,r=n.select(t).selectAll(\".svg-container\");r.filter((function(t,e){return e===r.size()-1})).selectAll(\".gl-canvas-context, .gl-canvas-focus\").each((function(){var t=this.toDataURL(\"image/png\");e.append(\"svg:image\").attr({xmlns:o.svg,\"xlink:href\":t,preserveAspectRatio:\"none\",x:0,y:0,width:this.width,height:this.height})})),window.setTimeout((function(){n.selectAll(\"#filterBarPattern\").attr(\"id\",\"filterBarPattern\")}),60)}},{\"../../constants/xmlns_namespaces\":754,\"../../plots/get_data\":865,\"./plot\":1160,d3:169}],1152:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray,i=t(\"../../components/colorscale\"),a=t(\"../../lib/gup\").wrap;e.exports=function(t,e){var r,o;return i.hasColorscale(e,\"line\")&&n(e.line.color)?(r=e.line.color,o=i.extractOpts(e.line).colorscale,i.calc(t,e,{vals:r,containerStr:\"line\",cLetter:\"c\"})):(r=function(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=.5;return e}(e._length),o=[[0,e.line.color],[1,e.line.color]]),a({lineColor:r,cscale:o})}},{\"../../components/colorscale\":655,\"../../lib\":778,\"../../lib/gup\":775}],1153:[function(t,e,r){\"use strict\";e.exports={maxDimensionCount:60,overdrag:45,verticalPadding:2,tickDistance:50,canvasPixelRatio:1,blockLineCount:5e3,layers:[\"contextLineLayer\",\"focusLineLayer\",\"pickLineLayer\"],axisTitleOffset:28,axisExtentOffset:10,deselectedLineColor:\"#777\",bar:{width:4,captureWidth:10,fillColor:\"magenta\",fillOpacity:1,snapDuration:150,snapRatio:.25,snapClose:.01,strokeColor:\"white\",strokeOpacity:1,strokeWidth:1,handleHeight:8,handleOpacity:1,handleOverlap:0},cn:{axisExtentText:\"axis-extent-text\",parcoordsLineLayers:\"parcoords-line-layers\",parcoordsLineLayer:\"parcoords-lines\",parcoords:\"parcoords\",parcoordsControlView:\"parcoords-control-view\",yAxis:\"y-axis\",axisOverlays:\"axis-overlays\",axis:\"axis\",axisHeading:\"axis-heading\",axisTitle:\"axis-title\",axisExtent:\"axis-extent\",axisExtentTop:\"axis-extent-top\",axisExtentTopText:\"axis-extent-top-text\",axisExtentBottom:\"axis-extent-bottom\",axisExtentBottomText:\"axis-extent-bottom-text\",axisBrush:\"axis-brush\"},id:{filterBarPattern:\"filter-bar-pattern\"}}},{}],1154:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/defaults\"),o=t(\"../../plots/domain\").defaults,s=t(\"../../plots/array_container_defaults\"),l=t(\"../../plots/cartesian/axes\"),c=t(\"./attributes\"),u=t(\"./axisbrush\"),f=t(\"./constants\").maxDimensionCount,h=t(\"./merge_length\");function p(t,e,r,i){function a(r,i){return n.coerce(t,e,c.dimensions,r,i)}var o=a(\"values\"),s=a(\"visible\");if(o&&o.length||(s=e.visible=!1),s){a(\"label\"),a(\"tickvals\"),a(\"ticktext\"),a(\"tickformat\");var f=a(\"range\");e._ax={_id:\"y\",type:\"linear\",showexponent:\"all\",exponentformat:\"B\",range:f},l.setConvert(e._ax,i.layout),a(\"multiselect\");var h=a(\"constraintrange\");h&&(e.constraintrange=u.cleanRanges(h,e))}}e.exports=function(t,e,r,l){function u(r,i){return n.coerce(t,e,c,r,i)}var d=t.dimensions;Array.isArray(d)&&d.length>f&&(n.log(\"parcoords traces support up to \"+f+\" dimensions at the moment\"),d.splice(f));var g=s(t,e,{name:\"dimensions\",layout:l,handleItemDefaults:p}),m=function(t,e,r,o,s){var l=s(\"line.color\",r);if(i(t,\"line\")&&n.isArrayOrTypedArray(l)){if(l.length)return s(\"line.colorscale\"),a(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}),l.length;e.line.color=r}return 1/0}(t,e,r,l,u);o(e,l,u),Array.isArray(g)&&g.length||(e.visible=!1),h(e,g,\"values\",m);var v={family:l.font.family,size:Math.round(l.font.size/1.2),color:l.font.color};n.coerceFont(u,\"labelfont\",v),n.coerceFont(u,\"tickfont\",v),n.coerceFont(u,\"rangefont\",v),u(\"labelangle\"),u(\"labelside\")}},{\"../../components/colorscale/defaults\":653,\"../../components/colorscale/helpers\":654,\"../../lib\":778,\"../../plots/array_container_defaults\":823,\"../../plots/cartesian/axes\":828,\"../../plots/domain\":855,\"./attributes\":1149,\"./axisbrush\":1150,\"./constants\":1153,\"./merge_length\":1158}],1155:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isTypedArray;r.convertTypedArray=function(t){return n(t)?Array.prototype.slice.call(t):t},r.isOrdinal=function(t){return!!t.tickvals},r.isVisible=function(t){return t.visible||!(\"visible\"in t)}},{\"../../lib\":778}],1156:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),colorbar:{container:\"line\",min:\"cmin\",max:\"cmax\"},moduleType:\"trace\",name:\"parcoords\",basePlotModule:t(\"./base_plot\"),categories:[\"gl\",\"regl\",\"noOpacity\",\"noHover\"],meta:{}}},{\"./attributes\":1149,\"./base_plot\":1151,\"./calc\":1152,\"./defaults\":1154,\"./plot\":1160}],1157:[function(t,e,r){\"use strict\";var n=t(\"glslify\"),i=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nattribute vec4 p01_04, p05_08, p09_12, p13_16,\\n               p17_20, p21_24, p25_28, p29_32,\\n               p33_36, p37_40, p41_44, p45_48,\\n               p49_52, p53_56, p57_60, colors;\\n\\nuniform mat4 dim0A, dim1A, dim0B, dim1B, dim0C, dim1C, dim0D, dim1D,\\n             loA, hiA, loB, hiB, loC, hiC, loD, hiD;\\n\\nuniform vec2 resolution, viewBoxPos, viewBoxSize;\\nuniform sampler2D mask, palette;\\nuniform float maskHeight;\\nuniform float drwLayer; // 0: context, 1: focus, 2: pick\\nuniform vec4 contextColor;\\n\\nbool isPick    = (drwLayer > 1.5);\\nbool isContext = (drwLayer < 0.5);\\n\\nconst vec4 ZEROS = vec4(0.0, 0.0, 0.0, 0.0);\\nconst vec4 UNITS = vec4(1.0, 1.0, 1.0, 1.0);\\n\\nfloat val(mat4 p, mat4 v) {\\n    return dot(matrixCompMult(p, v) * UNITS, UNITS);\\n}\\n\\nfloat axisY(float ratio, mat4 A, mat4 B, mat4 C, mat4 D) {\\n    float y1 = val(A, dim0A) + val(B, dim0B) + val(C, dim0C) + val(D, dim0D);\\n    float y2 = val(A, dim1A) + val(B, dim1B) + val(C, dim1C) + val(D, dim1D);\\n    return y1 * (1.0 - ratio) + y2 * ratio;\\n}\\n\\nint iMod(int a, int b) {\\n    return a - b * (a / b);\\n}\\n\\nbool fOutside(float p, float lo, float hi) {\\n    return (lo < hi) && (lo > p || p > hi);\\n}\\n\\nbool vOutside(vec4 p, vec4 lo, vec4 hi) {\\n    return (\\n        fOutside(p[0], lo[0], hi[0]) ||\\n        fOutside(p[1], lo[1], hi[1]) ||\\n        fOutside(p[2], lo[2], hi[2]) ||\\n        fOutside(p[3], lo[3], hi[3])\\n    );\\n}\\n\\nbool mOutside(mat4 p, mat4 lo, mat4 hi) {\\n    return (\\n        vOutside(p[0], lo[0], hi[0]) ||\\n        vOutside(p[1], lo[1], hi[1]) ||\\n        vOutside(p[2], lo[2], hi[2]) ||\\n        vOutside(p[3], lo[3], hi[3])\\n    );\\n}\\n\\nbool outsideBoundingBox(mat4 A, mat4 B, mat4 C, mat4 D) {\\n    return mOutside(A, loA, hiA) ||\\n           mOutside(B, loB, hiB) ||\\n           mOutside(C, loC, hiC) ||\\n           mOutside(D, loD, hiD);\\n}\\n\\nbool outsideRasterMask(mat4 A, mat4 B, mat4 C, mat4 D) {\\n    mat4 pnts[4];\\n    pnts[0] = A;\\n    pnts[1] = B;\\n    pnts[2] = C;\\n    pnts[3] = D;\\n\\n    for(int i = 0; i < 4; ++i) {\\n        for(int j = 0; j < 4; ++j) {\\n            for(int k = 0; k < 4; ++k) {\\n                if(0 == iMod(\\n                    int(255.0 * texture2D(mask,\\n                        vec2(\\n                            (float(i * 2 + j / 2) + 0.5) / 8.0,\\n                            (pnts[i][j][k] * (maskHeight - 1.0) + 1.0) / maskHeight\\n                        ))[3]\\n                    ) / int(pow(2.0, float(iMod(j * 4 + k, 8)))),\\n                    2\\n                )) return true;\\n            }\\n        }\\n    }\\n    return false;\\n}\\n\\nvec4 position(bool isContext, float v, mat4 A, mat4 B, mat4 C, mat4 D) {\\n    float x = 0.5 * sign(v) + 0.5;\\n    float y = axisY(x, A, B, C, D);\\n    float z = 1.0 - abs(v);\\n\\n    z += isContext ? 0.0 : 2.0 * float(\\n        outsideBoundingBox(A, B, C, D) ||\\n        outsideRasterMask(A, B, C, D)\\n    );\\n\\n    return vec4(\\n        2.0 * (vec2(x, y) * viewBoxSize + viewBoxPos) / resolution - 1.0,\\n        z,\\n        1.0\\n    );\\n}\\n\\nvoid main() {\\n    mat4 A = mat4(p01_04, p05_08, p09_12, p13_16);\\n    mat4 B = mat4(p17_20, p21_24, p25_28, p29_32);\\n    mat4 C = mat4(p33_36, p37_40, p41_44, p45_48);\\n    mat4 D = mat4(p49_52, p53_56, p57_60, ZEROS);\\n\\n    float v = colors[3];\\n\\n    gl_Position = position(isContext, v, A, B, C, D);\\n\\n    fragColor =\\n        isContext ? vec4(contextColor) :\\n        isPick ? vec4(colors.rgb, 1.0) : texture2D(palette, vec2(abs(v), 0.5));\\n}\\n\"]),a=n([\"precision highp float;\\n#define GLSLIFY 1\\n\\nvarying vec4 fragColor;\\n\\nvoid main() {\\n    gl_FragColor = fragColor;\\n}\\n\"]),o=t(\"./constants\").maxDimensionCount,s=t(\"../../lib\"),l=new Uint8Array(4),c=new Uint8Array(4),u={shape:[256,1],format:\"rgba\",type:\"uint8\",mag:\"nearest\",min:\"nearest\"};function f(t,e,r,n,i){var a=t._gl;a.enable(a.SCISSOR_TEST),a.scissor(e,r,n,i),t.clear({color:[0,0,0,0],depth:1})}function h(t,e,r,n,i,a){var o=a.key;r.drawCompleted||(!function(t){t.read({x:0,y:0,width:1,height:1,data:l})}(t),r.drawCompleted=!0),function s(l){var c=Math.min(n,i-l*n);0===l&&(window.cancelAnimationFrame(r.currentRafs[o]),delete r.currentRafs[o],f(t,a.scissorX,a.scissorY,a.scissorWidth,a.viewBoxSize[1])),r.clearOnly||(a.count=2*c,a.offset=2*l*n,e(a),l*n+c<i&&(r.currentRafs[o]=window.requestAnimationFrame((function(){s(l+1)}))),r.drawCompleted=!1)}(0)}function p(t,e){for(var r=new Array(256),n=0;n<256;n++)r[n]=t(n/255).concat(e);return r}function d(t,e){return(t>>>8*e)%256/255}function g(t,e,r){for(var n=new Array(8*e),i=0,a=0;a<e;a++)for(var o=0;o<2;o++)for(var s=0;s<4;s++){var l=4*t+s,c=r[64*a+l];63===l&&0===o&&(c*=-1),n[i++]=c}return n}function m(t){var e=\"0\"+t;return e.substr(e.length-2)}function v(t){return t<o?\"p\"+m(t+1)+\"_\"+m(t+4):\"colors\"}function y(t,e,r,n,i,a,o,l,c,u,f,h,p){for(var d=[[],[]],g=0;g<64;g++)d[0][g]=g===i?1:0,d[1][g]=g===a?1:0;var m=t.lines.canvasOverdrag,v=t.domain,y=t.canvasWidth,x=t.canvasHeight,b=t.deselectedLines.color;return s.extendFlat({key:f,resolution:[y,x],viewBoxPos:[o+m,l],viewBoxSize:[c,u],i0:i,i1:a,dim0A:d[0].slice(0,16),dim0B:d[0].slice(16,32),dim0C:d[0].slice(32,48),dim0D:d[0].slice(48,64),dim1A:d[1].slice(0,16),dim1B:d[1].slice(16,32),dim1C:d[1].slice(32,48),dim1D:d[1].slice(48,64),drwLayer:h,contextColor:[b[0]/255,b[1]/255,b[2]/255,b[3]<1?b[3]:Math.max(1/255,Math.pow(1/t.lines.color.length,1/3))],scissorX:(n===e?0:o+m)+(t.pad.l-m)+t.layoutWidth*v.x[0],scissorWidth:(n===r?y-o+m:c+.5)+(n===e?o+m:0),scissorY:l+t.pad.b+t.layoutHeight*v.y[0],scissorHeight:u,viewportX:t.pad.l-m+t.layoutWidth*v.x[0],viewportY:t.pad.b+t.layoutHeight*v.y[0],viewportWidth:y,viewportHeight:x},p)}function x(t){var e=Math.max(0,Math.floor(2047*t[0]),0),r=Math.min(2047,Math.ceil(2047*t[1]),2047);return[Math.min(e,r),Math.max(e,r)]}e.exports=function(t,e){var r,n,l,m,b,_=e.context,w=e.pick,T=e.regl,k={currentRafs:{},drawCompleted:!0,clearOnly:!1},M=function(t){for(var e={},r=0;r<=o;r+=4)e[v(r)]=t.buffer({usage:\"dynamic\",type:\"float\",data:new Uint8Array(0)});return e}(T),A=T.texture(u),S=[];C(e);var E=T({profile:!1,blend:{enable:_,func:{srcRGB:\"src alpha\",dstRGB:\"one minus src alpha\",srcAlpha:1,dstAlpha:1},equation:{rgb:\"add\",alpha:\"add\"},color:[0,0,0,0]},depth:{enable:!_,mask:!0,func:\"less\",range:[0,1]},cull:{enable:!0,face:\"back\"},scissor:{enable:!0,box:{x:T.prop(\"scissorX\"),y:T.prop(\"scissorY\"),width:T.prop(\"scissorWidth\"),height:T.prop(\"scissorHeight\")}},viewport:{x:T.prop(\"viewportX\"),y:T.prop(\"viewportY\"),width:T.prop(\"viewportWidth\"),height:T.prop(\"viewportHeight\")},dither:!1,vert:i,frag:a,primitive:\"lines\",lineWidth:1,attributes:M,uniforms:{resolution:T.prop(\"resolution\"),viewBoxPos:T.prop(\"viewBoxPos\"),viewBoxSize:T.prop(\"viewBoxSize\"),dim0A:T.prop(\"dim0A\"),dim1A:T.prop(\"dim1A\"),dim0B:T.prop(\"dim0B\"),dim1B:T.prop(\"dim1B\"),dim0C:T.prop(\"dim0C\"),dim1C:T.prop(\"dim1C\"),dim0D:T.prop(\"dim0D\"),dim1D:T.prop(\"dim1D\"),loA:T.prop(\"loA\"),hiA:T.prop(\"hiA\"),loB:T.prop(\"loB\"),hiB:T.prop(\"hiB\"),loC:T.prop(\"loC\"),hiC:T.prop(\"hiC\"),loD:T.prop(\"loD\"),hiD:T.prop(\"hiD\"),palette:A,contextColor:T.prop(\"contextColor\"),mask:T.prop(\"maskTexture\"),drwLayer:T.prop(\"drwLayer\"),maskHeight:T.prop(\"maskHeight\")},offset:T.prop(\"offset\"),count:T.prop(\"count\")});function C(t){r=t.model,n=t.viewModel,l=n.dimensions.slice(),m=l[0]?l[0].values.length:0;var e=r.lines,i=w?e.color.map((function(t,r){return r/e.color.length})):e.color,a=function(t,e,r){for(var n,i=new Array(t*(o+4)),a=0,s=0;s<t;s++){for(var l=0;l<o;l++)i[a++]=l<e.length?e[l].paddedUnitValues[s]:.5;i[a++]=d(s,2),i[a++]=d(s,1),i[a++]=d(s,0),i[a++]=(n=r[s],Math.max(1e-6,Math.min(.999999,n)))}return i}(m,l,i);!function(t,e,r){for(var n=0;n<=o;n+=4)t[v(n)](g(n/4,e,r))}(M,m,a),_||w||(A=T.texture(s.extendFlat({data:p(r.unitToColor,255)},u)))}return{render:function(t,e,n){var i,a,o,s=t.length,c=1/0,u=-1/0;for(i=0;i<s;i++)t[i].dim0.canvasX<c&&(c=t[i].dim0.canvasX,a=i),t[i].dim1.canvasX>u&&(u=t[i].dim1.canvasX,o=i);0===s&&f(T,0,0,r.canvasWidth,r.canvasHeight);var p=function(t){var e,r,n,i=[[],[]];for(n=0;n<64;n++){var a=!t&&n<l.length?l[n].brush.filter.getBounds():[-1/0,1/0];i[0][n]=a[0],i[1][n]=a[1]}var o=new Array(16384);for(e=0;e<16384;e++)o[e]=255;if(!t)for(e=0;e<l.length;e++){var s=e%8,c=(e-s)/8,u=Math.pow(2,s),f=l[e].brush.filter.get();if(!(f.length<2)){var h=x(f[0])[1];for(r=1;r<f.length;r++){var p=x(f[r]);for(n=h+1;n<p[0];n++)o[8*n+c]&=~u;h=Math.max(h,p[1])}}}var d={shape:[8,2048],format:\"alpha\",type:\"uint8\",mag:\"nearest\",min:\"nearest\",data:o};return b?b(d):b=T.texture(d),{maskTexture:b,maskHeight:2048,loA:i[0].slice(0,16),loB:i[0].slice(16,32),loC:i[0].slice(32,48),loD:i[0].slice(48,64),hiA:i[1].slice(0,16),hiB:i[1].slice(16,32),hiC:i[1].slice(32,48),hiD:i[1].slice(48,64)}}(_);for(i=0;i<s;i++){var d=t[i],g=d.dim0.crossfilterDimensionIndex,v=d.dim1.crossfilterDimensionIndex,M=d.canvasX,A=d.canvasY,C=M+d.panelSizeX;if(e||!S[g]||S[g][0]!==M||S[g][1]!==C){S[g]=[M,C];var L=y(r,a,o,i,g,v,M,A,d.panelSizeX,d.panelSizeY,d.dim0.crossfilterDimensionIndex,_?0:w?2:1,p);k.clearOnly=n;var I=e?r.lines.blockLineCount:m;h(T,E,k,I,m,L)}}},readPixel:function(t,e){return T.read({x:t,y:e,width:1,height:1,data:c}),c},readPixels:function(t,e,r,n){var i=new Uint8Array(4*r*n);return T.read({x:t,y:e,width:r,height:n,data:i}),i},destroy:function(){for(var e in t.style[\"pointer-events\"]=\"none\",A.destroy(),b&&b.destroy(),M)M[e].destroy()},update:C}}},{\"../../lib\":778,\"./constants\":1153,glslify:439}],1158:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n){var i,a;for(n||(n=1/0),i=0;i<e.length;i++)(a=e[i]).visible&&(n=Math.min(n,a[r].length));for(n===1/0&&(n=0),t._length=n,i=0;i<e.length;i++)(a=e[i]).visible&&(a._length=n);return n}},{}],1159:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"color-rgba\"),a=t(\"../../plots/cartesian/axes\"),o=t(\"../../lib\"),s=o.strRotate,l=o.strTranslate,c=t(\"../../lib/svg_text_utils\"),u=t(\"../../components/drawing\"),f=t(\"../../components/colorscale\"),h=t(\"../../lib/gup\"),p=h.keyFun,d=h.repeat,g=h.unwrap,m=t(\"./helpers\"),v=t(\"./constants\"),y=t(\"./axisbrush\"),x=t(\"./lines\");function b(t,e,r){return o.aggNums(t,null,e,r)}function _(t,e){return T(b(Math.min,t,e),b(Math.max,t,e))}function w(t){var e=t.range;return e?T(e[0],e[1]):_(t.values,t._length)}function T(t,e){return!isNaN(t)&&isFinite(t)||(t=0),!isNaN(e)&&isFinite(e)||(e=0),t===e&&(0===t?(t-=1,e+=1):(t*=.9,e*=1.1)),[t,e]}function k(t,e,r,i,a){var o,s,l=w(r);return i?n.scale.ordinal().domain(i.map((o=n.format(r.tickformat),s=a,s?function(t,e){var r=s[e];return null==r?o(t):r}:o))).range(i.map((function(r){var n=(r-l[0])/(l[1]-l[0]);return t-e+n*(2*e-t)}))):n.scale.linear().domain(l).range([t-e,e])}function M(t){if(t.tickvals){var e=w(t);return n.scale.ordinal().domain(t.tickvals).range(t.tickvals.map((function(t){return(t-e[0])/(e[1]-e[0])})))}}function A(t){var e=t.map((function(t){return t[0]})),r=t.map((function(t){var e=i(t[1]);return n.rgb(\"rgb(\"+e[0]+\",\"+e[1]+\",\"+e[2]+\")\")})),a=\"rgb\".split(\"\").map((function(t){return n.scale.linear().clamp(!0).domain(e).range(r.map((i=t,function(t){return t[i]})));var i}));return function(t){return a.map((function(e){return e(t)}))}}function S(t){return t.dimensions.some((function(t){return t.brush.filterSpecified}))}function E(t,e,r){var a=g(e),s=a.trace,l=m.convertTypedArray(a.lineColor),c=s.line,u={color:i(v.deselectedLineColor)},h=f.extractOpts(c),p=h.reversescale?f.flipScale(a.cscale):a.cscale,d=s.domain,y=s.dimensions,x=t.width,b=s.labelangle,_=s.labelside,T=s.labelfont,k=s.tickfont,M=s.rangefont,S=o.extendDeepNoArrays({},c,{color:l.map(n.scale.linear().domain(w({values:l,range:[h.min,h.max],_length:s._length}))),blockLineCount:v.blockLineCount,canvasOverdrag:v.overdrag*v.canvasPixelRatio}),E=Math.floor(x*(d.x[1]-d.x[0])),C=Math.floor(t.height*(d.y[1]-d.y[0])),L=t.margin||{l:80,r:80,t:100,b:80},I=E,P=C;return{key:r,colCount:y.filter(m.isVisible).length,dimensions:y,tickDistance:v.tickDistance,unitToColor:A(p),lines:S,deselectedLines:u,labelAngle:b,labelSide:_,labelFont:T,tickFont:k,rangeFont:M,layoutWidth:x,layoutHeight:t.height,domain:d,translateX:d.x[0]*x,translateY:t.height-d.y[1]*t.height,pad:L,canvasWidth:I*v.canvasPixelRatio+2*S.canvasOverdrag,canvasHeight:P*v.canvasPixelRatio,width:I,height:P,canvasPixelRatio:v.canvasPixelRatio}}function C(t,e,r){var i=r.width,a=r.height,s=r.dimensions,l=r.canvasPixelRatio,c=function(t){return i*t/Math.max(1,r.colCount-1)},u=v.verticalPadding/a,f=function(t,e){return n.scale.linear().range([e,t-e])}(a,v.verticalPadding),h={key:r.key,xScale:c,model:r,inBrushDrag:!1},p={};return h.dimensions=s.filter(m.isVisible).map((function(i,s){var d=function(t,e){return n.scale.linear().domain(w(t)).range([e,1-e])}(i,u),g=p[i.label];p[i.label]=(g||0)+1;var x=i.label+(g?\"__\"+g:\"\"),b=i.constraintrange,_=b&&b.length;_&&!Array.isArray(b[0])&&(b=[b]);var T=_?b.map((function(t){return t.map(d)})):[[-1/0,1/0]],A=i.values;A.length>i._length&&(A=A.slice(0,i._length));var E,C=i.tickvals;function L(t,e){return{val:t,text:E[e]}}function I(t,e){return t.val-e.val}if(Array.isArray(C)&&C.length){E=i.ticktext,Array.isArray(E)&&E.length?E.length>C.length?E=E.slice(0,C.length):C.length>E.length&&(C=C.slice(0,E.length)):E=C.map(n.format(i.tickformat));for(var P=1;P<C.length;P++)if(C[P]<C[P-1]){for(var z=C.map(L).sort(I),O=0;O<C.length;O++)C[O]=z[O].val,E[O]=z[O].text;break}}else C=void 0;return A=m.convertTypedArray(A),{key:x,label:i.label,tickFormat:i.tickformat,tickvals:C,ticktext:E,ordinal:m.isOrdinal(i),multiselect:i.multiselect,xIndex:s,crossfilterDimensionIndex:s,visibleIndex:i._index,height:a,values:A,paddedUnitValues:A.map(d),unitTickvals:C&&C.map(d),xScale:c,x:c(s),canvasX:c(s)*l,unitToPaddedPx:f,domainScale:k(a,v.verticalPadding,i,C,E),ordinalScale:M(i),parent:h,model:r,brush:y.makeBrush(t,_,T,(function(){t.linePickActive(!1)}),(function(){var e=h;e.focusLayer&&e.focusLayer.render(e.panels,!0);var r=S(e);!t.contextShown()&&r?(e.contextLayer&&e.contextLayer.render(e.panels,!0),t.contextShown(!0)):t.contextShown()&&!r&&(e.contextLayer&&e.contextLayer.render(e.panels,!0,!0),t.contextShown(!1))}),(function(r){if(h.focusLayer.render(h.panels,!0),h.pickLayer&&h.pickLayer.render(h.panels,!0),t.linePickActive(!0),e&&e.filterChanged){var n=d.invert,a=r.map((function(t){return t.map(n).sort(o.sorterAsc)})).sort((function(t,e){return t[0]-e[0]}));e.filterChanged(h.key,i._index,a)}}))}})),h}function L(t){t.classed(v.cn.axisExtentText,!0).attr(\"text-anchor\",\"middle\").style(\"cursor\",\"default\")}function I(t,e){var r=\"top\"===e?1:-1,n=t*Math.PI/180;return{dir:r,dx:Math.sin(n),dy:Math.cos(n),degrees:t}}function P(t,e){for(var r=e.panels||(e.panels=[]),n=t.data(),i=0;i<n.length-1;i++){var a=r[i]||(r[i]={}),o=n[i],s=n[i+1];a.dim0=o,a.dim1=s,a.canvasX=o.canvasX,a.panelSizeX=s.canvasX-o.canvasX,a.panelSizeY=e.model.canvasHeight,a.y=0,a.canvasY=0}}function z(t,e){return a.tickText(t._ax,e,!1).text}function O(t,e){if(t.ordinal)return\"\";var r=t.domainScale.domain(),n=r[e?r.length-1:0];return z(t.model.dimensions[t.visibleIndex],n)}e.exports=function(t,e,r,i){var f=t._fullLayout,h=f._toppaper,b=f._glcontainer;!function(t){for(var e=0;e<t.length;e++)for(var r=0;r<t[e].length;r++)for(var n=t[e][r].trace,i=n.dimensions,o=0;o<i.length;o++){var s=i[o].values,l=i[o]._ax;l&&(l.range?l.range=T(l.range[0],l.range[1]):l.range=_(s,n._length),l.dtick||(l.dtick=.01*(Math.abs(l.range[1]-l.range[0])||1)),l.tickformat=i[o].tickformat,a.calcTicks(l),l.cleanRange())}}(e);var w,k,M=(w=!0,k=!1,{linePickActive:function(t){return arguments.length?w=!!t:w},contextShown:function(t){return arguments.length?k=!!t:k}}),A=e.filter((function(t){return g(t).trace.visible})).map(E.bind(0,r)).map(C.bind(0,M,i));b.each((function(t,e){return o.extendFlat(t,A[e])}));var D=b.selectAll(\".gl-canvas\").each((function(t){t.viewModel=A[0],t.model=t.viewModel?t.viewModel.model:null})),R=null;D.filter((function(t){return t.pick})).style(\"pointer-events\",\"auto\").on(\"mousemove\",(function(t){if(M.linePickActive()&&t.lineLayer&&i&&i.hover){var e=n.event,r=this.width,a=this.height,o=n.mouse(this),s=o[0],l=o[1];if(s<0||l<0||s>=r||l>=a)return;var c=t.lineLayer.readPixel(s,a-1-l),u=0!==c[3],f=u?c[2]+256*(c[1]+256*c[0]):null,h={x:s,y:l,clientX:e.clientX,clientY:e.clientY,dataIndex:t.model.key,curveNumber:f};f!==R&&(u?i.hover(h):i.unhover&&i.unhover(h),R=f)}})),D.style(\"opacity\",(function(t){return t.pick?0:1})),h.style(\"background\",\"rgba(255, 255, 255, 0)\");var F=h.selectAll(\".\"+v.cn.parcoords).data(A,p);F.exit().remove(),F.enter().append(\"g\").classed(v.cn.parcoords,!0).style(\"shape-rendering\",\"crispEdges\").style(\"pointer-events\",\"none\"),F.attr(\"transform\",(function(t){return l(t.model.translateX,t.model.translateY)}));var B=F.selectAll(\".\"+v.cn.parcoordsControlView).data(d,p);B.enter().append(\"g\").classed(v.cn.parcoordsControlView,!0),B.attr(\"transform\",(function(t){return l(t.model.pad.l,t.model.pad.t)}));var N=B.selectAll(\".\"+v.cn.yAxis).data((function(t){return t.dimensions}),p);N.enter().append(\"g\").classed(v.cn.yAxis,!0),B.each((function(t){P(N,t)})),D.each((function(t){if(t.viewModel){!t.lineLayer||i?t.lineLayer=x(this,t):t.lineLayer.update(t),(t.key||0===t.key)&&(t.viewModel[t.key]=t.lineLayer);var e=!t.context||i;t.lineLayer.render(t.viewModel.panels,e)}})),N.attr(\"transform\",(function(t){return l(t.xScale(t.xIndex),0)})),N.call(n.behavior.drag().origin((function(t){return t})).on(\"drag\",(function(t){var e=t.parent;M.linePickActive(!1),t.x=Math.max(-v.overdrag,Math.min(t.model.width+v.overdrag,n.event.x)),t.canvasX=t.x*t.model.canvasPixelRatio,N.sort((function(t,e){return t.x-e.x})).each((function(e,r){e.xIndex=r,e.x=t===e?e.x:e.xScale(e.xIndex),e.canvasX=e.x*e.model.canvasPixelRatio})),P(N,e),N.filter((function(e){return 0!==Math.abs(t.xIndex-e.xIndex)})).attr(\"transform\",(function(t){return l(t.xScale(t.xIndex),0)})),n.select(this).attr(\"transform\",l(t.x,0)),N.each((function(r,n,i){i===t.parent.key&&(e.dimensions[n]=r)})),e.contextLayer&&e.contextLayer.render(e.panels,!1,!S(e)),e.focusLayer.render&&e.focusLayer.render(e.panels)})).on(\"dragend\",(function(t){var e=t.parent;t.x=t.xScale(t.xIndex),t.canvasX=t.x*t.model.canvasPixelRatio,P(N,e),n.select(this).attr(\"transform\",(function(t){return l(t.x,0)})),e.contextLayer&&e.contextLayer.render(e.panels,!1,!S(e)),e.focusLayer&&e.focusLayer.render(e.panels),e.pickLayer&&e.pickLayer.render(e.panels,!0),M.linePickActive(!0),i&&i.axesMoved&&i.axesMoved(e.key,e.dimensions.map((function(t){return t.crossfilterDimensionIndex})))}))),N.exit().remove();var j=N.selectAll(\".\"+v.cn.axisOverlays).data(d,p);j.enter().append(\"g\").classed(v.cn.axisOverlays,!0),j.selectAll(\".\"+v.cn.axis).remove();var U=j.selectAll(\".\"+v.cn.axis).data(d,p);U.enter().append(\"g\").classed(v.cn.axis,!0),U.each((function(t){var e=t.model.height/t.model.tickDistance,r=t.domainScale,i=r.domain();n.select(this).call(n.svg.axis().orient(\"left\").tickSize(4).outerTickSize(2).ticks(e,t.tickFormat).tickValues(t.ordinal?i:null).tickFormat((function(e){return m.isOrdinal(t)?e:z(t.model.dimensions[t.visibleIndex],e)})).scale(r)),u.font(U.selectAll(\"text\"),t.model.tickFont)})),U.selectAll(\".domain, .tick>line\").attr(\"fill\",\"none\").attr(\"stroke\",\"black\").attr(\"stroke-opacity\",.25).attr(\"stroke-width\",\"1px\"),U.selectAll(\"text\").style(\"text-shadow\",\"1px 1px 1px #fff, -1px -1px 1px #fff, 1px -1px 1px #fff, -1px 1px 1px #fff\").style(\"cursor\",\"default\");var V=j.selectAll(\".\"+v.cn.axisHeading).data(d,p);V.enter().append(\"g\").classed(v.cn.axisHeading,!0);var q=V.selectAll(\".\"+v.cn.axisTitle).data(d,p);q.enter().append(\"text\").classed(v.cn.axisTitle,!0).attr(\"text-anchor\",\"middle\").style(\"cursor\",\"ew-resize\").style(\"pointer-events\",\"auto\"),q.text((function(t){return t.label})).each((function(e){var r=n.select(this);u.font(r,e.model.labelFont),c.convertToTspans(r,t)})).attr(\"transform\",(function(t){var e=I(t.model.labelAngle,t.model.labelSide),r=v.axisTitleOffset;return(e.dir>0?\"\":l(0,2*r+t.model.height))+s(e.degrees)+l(-r*e.dx,-r*e.dy)})).attr(\"text-anchor\",(function(t){var e=I(t.model.labelAngle,t.model.labelSide);return 2*Math.abs(e.dx)>Math.abs(e.dy)?e.dir*e.dx<0?\"start\":\"end\":\"middle\"}));var H=j.selectAll(\".\"+v.cn.axisExtent).data(d,p);H.enter().append(\"g\").classed(v.cn.axisExtent,!0);var G=H.selectAll(\".\"+v.cn.axisExtentTop).data(d,p);G.enter().append(\"g\").classed(v.cn.axisExtentTop,!0),G.attr(\"transform\",l(0,-v.axisExtentOffset));var Y=G.selectAll(\".\"+v.cn.axisExtentTopText).data(d,p);Y.enter().append(\"text\").classed(v.cn.axisExtentTopText,!0).call(L),Y.text((function(t){return O(t,!0)})).each((function(t){u.font(n.select(this),t.model.rangeFont)}));var W=H.selectAll(\".\"+v.cn.axisExtentBottom).data(d,p);W.enter().append(\"g\").classed(v.cn.axisExtentBottom,!0),W.attr(\"transform\",(function(t){return l(0,t.model.height+v.axisExtentOffset)}));var X=W.selectAll(\".\"+v.cn.axisExtentBottomText).data(d,p);X.enter().append(\"text\").classed(v.cn.axisExtentBottomText,!0).attr(\"dy\",\"0.75em\").call(L),X.text((function(t){return O(t,!1)})).each((function(t){u.font(n.select(this),t.model.rangeFont)})),y.ensureAxisBrush(j)}},{\"../../components/colorscale\":655,\"../../components/drawing\":665,\"../../lib\":778,\"../../lib/gup\":775,\"../../lib/svg_text_utils\":803,\"../../plots/cartesian/axes\":828,\"./axisbrush\":1150,\"./constants\":1153,\"./helpers\":1155,\"./lines\":1157,\"color-rgba\":127,d3:169}],1160:[function(t,e,r){\"use strict\";var n=t(\"./parcoords\"),i=t(\"../../lib/prepare_regl\"),a=t(\"./helpers\").isVisible;function o(t,e,r){var n=e.indexOf(r),i=t.indexOf(n);return-1===i&&(i+=e.length),i}e.exports=function(t,e){var r=t._fullLayout;if(i(t)){var s={},l={},c={},u={},f=r._size;e.forEach((function(e,r){var n=e[0].trace;c[r]=n.index;var i=u[r]=n._fullInput.index;s[r]=t.data[i].dimensions,l[r]=t.data[i].dimensions.slice()}));n(t,e,{width:f.w,height:f.h,margin:{t:f.t,r:f.r,b:f.b,l:f.l}},{filterChanged:function(e,n,i){var a=l[e][n],o=i.map((function(t){return t.slice()})),s=\"dimensions[\"+n+\"].constraintrange\",f=r._tracePreGUI[t._fullData[c[e]]._fullInput.uid];if(void 0===f[s]){var h=a.constraintrange;f[s]=h||null}var p=t._fullData[c[e]].dimensions[n];o.length?(1===o.length&&(o=o[0]),a.constraintrange=o,p.constraintrange=o.slice(),o=[o]):(delete a.constraintrange,delete p.constraintrange,o=null);var d={};d[s]=o,t.emit(\"plotly_restyle\",[d,[u[e]]])},hover:function(e){t.emit(\"plotly_hover\",e)},unhover:function(e){t.emit(\"plotly_unhover\",e)},axesMoved:function(e,r){var n=function(t,e){return function(r,n){return o(t,e,r)-o(t,e,n)}}(r,l[e].filter(a));s[e].sort(n),l[e].filter((function(t){return!a(t)})).sort((function(t){return l[e].indexOf(t)})).forEach((function(t){s[e].splice(s[e].indexOf(t),1),s[e].splice(l[e].indexOf(t),0,t)})),t.emit(\"plotly_restyle\",[{dimensions:[s[e]]},[u[e]]])}})}}},{\"../../lib/prepare_regl\":791,\"./helpers\":1155,\"./parcoords\":1159}],1161:[function(t,e,r){\"use strict\";var n=t(\"../../plots/attributes\"),i=t(\"../../plots/domain\").attributes,a=t(\"../../plots/font_attributes\"),o=t(\"../../components/color/attributes\"),s=t(\"../../plots/template_attributes\").hovertemplateAttrs,l=t(\"../../plots/template_attributes\").texttemplateAttrs,c=t(\"../../lib/extend\").extendFlat,u=a({editType:\"plot\",arrayOk:!0,colorEditType:\"plot\"});e.exports={labels:{valType:\"data_array\",editType:\"calc\"},label0:{valType:\"number\",dflt:0,editType:\"calc\"},dlabel:{valType:\"number\",dflt:1,editType:\"calc\"},values:{valType:\"data_array\",editType:\"calc\"},marker:{colors:{valType:\"data_array\",editType:\"calc\"},line:{color:{valType:\"color\",dflt:o.defaultLine,arrayOk:!0,editType:\"style\"},width:{valType:\"number\",min:0,dflt:0,arrayOk:!0,editType:\"style\"},editType:\"calc\"},editType:\"calc\"},text:{valType:\"data_array\",editType:\"plot\"},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"style\"},scalegroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"value\",\"percent\"],extras:[\"none\"],editType:\"calc\"},hoverinfo:c({},n.hoverinfo,{flags:[\"label\",\"text\",\"value\",\"percent\",\"name\"]}),hovertemplate:s({},{keys:[\"label\",\"color\",\"value\",\"percent\",\"text\"]}),texttemplate:l({editType:\"plot\"},{keys:[\"label\",\"color\",\"value\",\"percent\",\"text\"]}),textposition:{valType:\"enumerated\",values:[\"inside\",\"outside\",\"auto\",\"none\"],dflt:\"auto\",arrayOk:!0,editType:\"plot\"},textfont:c({},u,{}),insidetextorientation:{valType:\"enumerated\",values:[\"horizontal\",\"radial\",\"tangential\",\"auto\"],dflt:\"auto\",editType:\"plot\"},insidetextfont:c({},u,{}),outsidetextfont:c({},u,{}),automargin:{valType:\"boolean\",dflt:!1,editType:\"plot\"},title:{text:{valType:\"string\",dflt:\"\",editType:\"plot\"},font:c({},u,{}),position:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle center\",\"bottom left\",\"bottom center\",\"bottom right\"],editType:\"plot\"},editType:\"plot\"},domain:i({name:\"pie\",trace:!0,editType:\"calc\"}),hole:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"},sort:{valType:\"boolean\",dflt:!0,editType:\"calc\"},direction:{valType:\"enumerated\",values:[\"clockwise\",\"counterclockwise\"],dflt:\"counterclockwise\",editType:\"calc\"},rotation:{valType:\"number\",min:-360,max:360,dflt:0,editType:\"calc\"},pull:{valType:\"number\",min:0,max:1,dflt:0,arrayOk:!0,editType:\"calc\"},_deprecated:{title:{valType:\"string\",dflt:\"\",editType:\"calc\"},titlefont:c({},u,{}),titleposition:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle center\",\"bottom left\",\"bottom center\",\"bottom right\"],editType:\"calc\"}}}},{\"../../components/color/attributes\":642,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/domain\":855,\"../../plots/font_attributes\":856,\"../../plots/template_attributes\":906}],1162:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"pie\",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{\"../../plots/plots\":891}],1163:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"tinycolor2\"),a=t(\"../../components/color\"),o={};function s(t){return function(e,r){return!!e&&(!!(e=i(e)).isValid()&&(e=a.addOpacity(e,e.getAlpha()),t[r]||(t[r]=e),e))}}function l(t,e){var r,n=JSON.stringify(t),a=e[n];if(!a){for(a=t.slice(),r=0;r<t.length;r++)a.push(i(t[r]).lighten(20).toHexString());for(r=0;r<t.length;r++)a.push(i(t[r]).darken(20).toHexString());e[n]=a}return a}e.exports={calc:function(t,e){var r,i,a=[],o=t._fullLayout,l=o.hiddenlabels||[],c=e.labels,u=e.marker.colors||[],f=e.values,h=e._length,p=e._hasValues&&h;if(e.dlabel)for(c=new Array(h),r=0;r<h;r++)c[r]=String(e.label0+r*e.dlabel);var d={},g=s(o[\"_\"+e.type+\"colormap\"]),m=0,v=!1;for(r=0;r<h;r++){var y,x,b;if(p){if(y=f[r],!n(y))continue;if((y=+y)<0)continue}else y=1;void 0!==(x=c[r])&&\"\"!==x||(x=r);var _=d[x=String(x)];void 0===_?(d[x]=a.length,(b=-1!==l.indexOf(x))||(m+=y),a.push({v:y,label:x,color:g(u[r],x),i:r,pts:[r],hidden:b})):(v=!0,(i=a[_]).v+=y,i.pts.push(r),i.hidden||(m+=y),!1===i.color&&u[r]&&(i.color=g(u[r],x)))}return(\"funnelarea\"===e.type?v:e.sort)&&a.sort((function(t,e){return e.v-t.v})),a[0]&&(a[0].vTotal=m),a},crossTraceCalc:function(t,e){var r=(e||{}).type;r||(r=\"pie\");var n=t._fullLayout,i=t.calcdata,a=n[r+\"colorway\"],s=n[\"_\"+r+\"colormap\"];n[\"extend\"+r+\"colors\"]&&(a=l(a,o));for(var c=0,u=0;u<i.length;u++){var f=i[u];if(f[0].trace.type===r)for(var h=0;h<f.length;h++){var p=f[h];!1===p.color&&(s[p.label]?p.color=s[p.label]:(s[p.label]=p.color=a[c%a.length],c++))}}},makePullColorFn:s,generateExtendedColors:l}},{\"../../components/color\":643,\"fast-isnumeric\":241,tinycolor2:576}],1164:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"./attributes\"),o=t(\"../../plots/domain\").defaults,s=t(\"../bar/defaults\").handleText;function l(t,e){var r=Array.isArray(t),a=i.isArrayOrTypedArray(e),o=Math.min(r?t.length:1/0,a?e.length:1/0);if(isFinite(o)||(o=0),o&&a){for(var s,l=0;l<o;l++){var c=e[l];if(n(c)&&c>0){s=!0;break}}s||(o=0)}return{hasLabels:r,hasValues:a,len:o}}e.exports={handleLabelsAndValues:l,supplyDefaults:function(t,e,r,n){function c(r,n){return i.coerce(t,e,a,r,n)}var u=l(c(\"labels\"),c(\"values\")),f=u.len;if(e._hasLabels=u.hasLabels,e._hasValues=u.hasValues,!e._hasLabels&&e._hasValues&&(c(\"label0\"),c(\"dlabel\")),f){e._length=f,c(\"marker.line.width\")&&c(\"marker.line.color\"),c(\"marker.colors\"),c(\"scalegroup\");var h,p=c(\"text\"),d=c(\"texttemplate\");if(d||(h=c(\"textinfo\",Array.isArray(p)?\"text+percent\":\"percent\")),c(\"hovertext\"),c(\"hovertemplate\"),d||h&&\"none\"!==h){var g=c(\"textposition\");s(t,e,n,c,g,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),(Array.isArray(g)||\"auto\"===g||\"outside\"===g)&&c(\"automargin\"),(\"inside\"===g||\"auto\"===g||Array.isArray(g))&&c(\"insidetextorientation\")}o(e,n,c);var m=c(\"hole\");if(c(\"title.text\")){var v=c(\"title.position\",m?\"middle center\":\"top center\");m||\"middle center\"!==v||(e.title.position=\"top center\"),i.coerceFont(c,\"title.font\",n.font)}c(\"sort\"),c(\"direction\"),c(\"rotation\"),c(\"pull\")}else e.visible=!1}}},{\"../../lib\":778,\"../../plots/domain\":855,\"../bar/defaults\":925,\"./attributes\":1161,\"fast-isnumeric\":241}],1165:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx/helpers\").appendArrayMultiPointValues;e.exports=function(t,e){var r={curveNumber:e.index,pointNumbers:t.pts,data:e._input,fullData:e,label:t.label,color:t.color,value:t.v,percent:t.percent,text:t.text,v:t.v};return 1===t.pts.length&&(r.pointNumber=r.i=t.pts[0]),n(r,e,t.pts),\"funnelarea\"===e.type&&(delete r.v,delete r.i),r}},{\"../../components/fx/helpers\":679}],1166:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");function i(t){return-1!==t.indexOf(\"e\")?t.replace(/[.]?0+e/,\"e\"):-1!==t.indexOf(\".\")?t.replace(/[.]?0+$/,\"\"):t}r.formatPiePercent=function(t,e){var r=i((100*t).toPrecision(3));return n.numSeparate(r,e)+\"%\"},r.formatPieValue=function(t,e){var r=i(t.toPrecision(10));return n.numSeparate(r,e)},r.getFirstFilled=function(t,e){if(Array.isArray(t))for(var r=0;r<e.length;r++){var n=t[e[r]];if(n||0===n||\"\"===n)return n}},r.castOption=function(t,e){return Array.isArray(t)?r.getFirstFilled(t,e):t||void 0},r.getRotationAngle=function(t){return(\"auto\"===t?0:t)*Math.PI/180}},{\"../../lib\":778}],1167:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),layoutAttributes:t(\"./layout_attributes\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\").plot,style:t(\"./style\"),styleOne:t(\"./style_one\"),moduleType:\"trace\",name:\"pie\",basePlotModule:t(\"./base_plot\"),categories:[\"pie-like\",\"pie\",\"showLegend\"],meta:{}}},{\"./attributes\":1161,\"./base_plot\":1162,\"./calc\":1163,\"./defaults\":1164,\"./layout_attributes\":1168,\"./layout_defaults\":1169,\"./plot\":1170,\"./style\":1171,\"./style_one\":1172}],1168:[function(t,e,r){\"use strict\";e.exports={hiddenlabels:{valType:\"data_array\",editType:\"calc\"},piecolorway:{valType:\"colorlist\",editType:\"calc\"},extendpiecolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{}],1169:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r(\"hiddenlabels\"),r(\"piecolorway\",e.colorway),r(\"extendpiecolors\")}},{\"../../lib\":778,\"./layout_attributes\":1168}],1170:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../plots/plots\"),a=t(\"../../components/fx\"),o=t(\"../../components/color\"),s=t(\"../../components/drawing\"),l=t(\"../../lib\"),c=l.strScale,u=l.strTranslate,f=t(\"../../lib/svg_text_utils\"),h=t(\"../bar/uniform_text\"),p=h.recordMinTextSize,d=h.clearMinTextSize,g=t(\"../bar/constants\").TEXTPAD,m=t(\"./helpers\"),v=t(\"./event_data\"),y=t(\"../../lib\").isValidTextValue;function x(t,e,r){var i=r[0],o=i.trace,s=i.cx,c=i.cy;\"_hasHoverLabel\"in o||(o._hasHoverLabel=!1),\"_hasHoverEvent\"in o||(o._hasHoverEvent=!1),t.on(\"mouseover\",(function(t){var r=e._fullLayout,u=e._fullData[o.index];if(!e._dragging&&!1!==r.hovermode){var f=u.hoverinfo;if(Array.isArray(f)&&(f=a.castHoverinfo({hoverinfo:[m.castOption(f,t.pts)],_module:o._module},r,0)),\"all\"===f&&(f=\"label+text+value+percent+name\"),u.hovertemplate||\"none\"!==f&&\"skip\"!==f&&f){var h=t.rInscribed||0,p=s+t.pxmid[0]*(1-h),d=c+t.pxmid[1]*(1-h),g=r.separators,y=[];if(f&&-1!==f.indexOf(\"label\")&&y.push(t.label),t.text=m.castOption(u.hovertext||u.text,t.pts),f&&-1!==f.indexOf(\"text\")){var x=t.text;l.isValidTextValue(x)&&y.push(x)}t.value=t.v,t.valueLabel=m.formatPieValue(t.v,g),f&&-1!==f.indexOf(\"value\")&&y.push(t.valueLabel),t.percent=t.v/i.vTotal,t.percentLabel=m.formatPiePercent(t.percent,g),f&&-1!==f.indexOf(\"percent\")&&y.push(t.percentLabel);var b=u.hoverlabel,_=b.font;a.loneHover({trace:o,x0:p-h*i.r,x1:p+h*i.r,y:d,text:y.join(\"<br>\"),name:u.hovertemplate||-1!==f.indexOf(\"name\")?u.name:void 0,idealAlign:t.pxmid[0]<0?\"left\":\"right\",color:m.castOption(b.bgcolor,t.pts)||t.color,borderColor:m.castOption(b.bordercolor,t.pts),fontFamily:m.castOption(_.family,t.pts),fontSize:m.castOption(_.size,t.pts),fontColor:m.castOption(_.color,t.pts),nameLength:m.castOption(b.namelength,t.pts),textAlign:m.castOption(b.align,t.pts),hovertemplate:m.castOption(u.hovertemplate,t.pts),hovertemplateLabels:t,eventData:[v(t,u)]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:e}),o._hasHoverLabel=!0}o._hasHoverEvent=!0,e.emit(\"plotly_hover\",{points:[v(t,u)],event:n.event})}})),t.on(\"mouseout\",(function(t){var r=e._fullLayout,i=e._fullData[o.index],s=n.select(this).datum();o._hasHoverEvent&&(t.originalEvent=n.event,e.emit(\"plotly_unhover\",{points:[v(s,i)],event:n.event}),o._hasHoverEvent=!1),o._hasHoverLabel&&(a.loneUnhover(r._hoverlayer.node()),o._hasHoverLabel=!1)})),t.on(\"click\",(function(t){var r=e._fullLayout,i=e._fullData[o.index];e._dragging||!1===r.hovermode||(e._hoverdata=[v(t,i)],a.click(e,n.event))}))}function b(t,e,r){var n=m.castOption(t.insidetextfont.color,e.pts);!n&&t._input.textfont&&(n=m.castOption(t._input.textfont.color,e.pts));var i=m.castOption(t.insidetextfont.family,e.pts)||m.castOption(t.textfont.family,e.pts)||r.family,a=m.castOption(t.insidetextfont.size,e.pts)||m.castOption(t.textfont.size,e.pts)||r.size;return{color:n||o.contrast(e.color),family:i,size:a}}function _(t,e){for(var r,n,i=0;i<t.length;i++)if((n=(r=t[i][0]).trace).title.text){var a=n.title.text;n._meta&&(a=l.templateString(a,n._meta));var o=s.tester.append(\"text\").attr(\"data-notex\",1).text(a).call(s.font,n.title.font).call(f.convertToTspans,e),c=s.bBox(o.node(),!0);r.titleBox={width:c.width,height:c.height},o.remove()}}function w(t,e,r){var n=r.r||e.rpx1,i=e.rInscribed;if(e.startangle===e.stopangle)return{rCenter:1-i,scale:0,rotate:0,textPosAngle:0};var a,o=e.ring,s=1===o&&Math.abs(e.startangle-e.stopangle)===2*Math.PI,l=e.halfangle,c=e.midangle,u=r.trace.insidetextorientation,f=\"horizontal\"===u,h=\"tangential\"===u,p=\"radial\"===u,d=\"auto\"===u,g=[];if(!d){var m,v=function(r,i){if(function(t,e){var r=t.startangle,n=t.stopangle;return r>e&&e>n||r<e&&e<n}(e,r)){var s=Math.abs(r-e.startangle),l=Math.abs(r-e.stopangle),c=s<l?s:l;(a=\"tan\"===i?k(t,n,o,c,0):T(t,n,o,c,Math.PI/2)).textPosAngle=r,g.push(a)}};if(f||h){for(m=4;m>=-4;m-=2)v(Math.PI*m,\"tan\");for(m=4;m>=-4;m-=2)v(Math.PI*(m+1),\"tan\")}if(f||p){for(m=4;m>=-4;m-=2)v(Math.PI*(m+1.5),\"rad\");for(m=4;m>=-4;m-=2)v(Math.PI*(m+.5),\"rad\")}}if(s||d||f){var y=Math.sqrt(t.width*t.width+t.height*t.height);if((a={scale:i*n*2/y,rCenter:1-i,rotate:0}).textPosAngle=(e.startangle+e.stopangle)/2,a.scale>=1)return a;g.push(a)}(d||p)&&((a=T(t,n,o,l,c)).textPosAngle=(e.startangle+e.stopangle)/2,g.push(a)),(d||h)&&((a=k(t,n,o,l,c)).textPosAngle=(e.startangle+e.stopangle)/2,g.push(a));for(var x=0,b=0,_=0;_<g.length;_++){var w=g[_].scale;if(b<w&&(b=w,x=_),!d&&b>=1)break}return g[x]}function T(t,e,r,n,i){e=Math.max(0,e-2*g);var a=t.width/t.height,o=S(a,n,e,r);return{scale:2*o/t.height,rCenter:M(a,o/e),rotate:A(i)}}function k(t,e,r,n,i){e=Math.max(0,e-2*g);var a=t.height/t.width,o=S(a,n,e,r);return{scale:2*o/t.width,rCenter:M(a,o/e),rotate:A(i+Math.PI/2)}}function M(t,e){return Math.cos(e)-t*e}function A(t){return(180/Math.PI*t+720)%180-90}function S(t,e,r,n){var i=t+1/(2*Math.tan(e));return r*Math.min(1/(Math.sqrt(i*i+.5)+i),n/(Math.sqrt(t*t+n/2)+t))}function E(t,e){return t.v!==e.vTotal||e.trace.hole?Math.min(1/(1+1/Math.sin(t.halfangle)),t.ring/2):1}function C(t,e){var r=e.pxmid[0],n=e.pxmid[1],i=t.width/2,a=t.height/2;return r<0&&(i*=-1),n<0&&(a*=-1),{scale:1,rCenter:1,rotate:0,x:i+Math.abs(a)*(i>0?1:-1)/2,y:a/(1+r*r/(n*n)),outside:!0}}function L(t,e){var r,n,i,a=t.trace,o={x:t.cx,y:t.cy},s={tx:0,ty:0};s.ty+=a.title.font.size,i=P(a),-1!==a.title.position.indexOf(\"top\")?(o.y-=(1+i)*t.r,s.ty-=t.titleBox.height):-1!==a.title.position.indexOf(\"bottom\")&&(o.y+=(1+i)*t.r);var l,c,u=(l=t.r,c=t.trace.aspectratio,l/(void 0===c?1:c)),f=e.w*(a.domain.x[1]-a.domain.x[0])/2;return-1!==a.title.position.indexOf(\"left\")?(f+=u,o.x-=(1+i)*u,s.tx+=t.titleBox.width/2):-1!==a.title.position.indexOf(\"center\")?f*=2:-1!==a.title.position.indexOf(\"right\")&&(f+=u,o.x+=(1+i)*u,s.tx-=t.titleBox.width/2),r=f/t.titleBox.width,n=I(t,e)/t.titleBox.height,{x:o.x,y:o.y,scale:Math.min(r,n),tx:s.tx,ty:s.ty}}function I(t,e){var r=t.trace,n=e.h*(r.domain.y[1]-r.domain.y[0]);return Math.min(t.titleBox.height,n/2)}function P(t){var e,r=t.pull;if(!r)return 0;if(Array.isArray(r))for(r=0,e=0;e<t.pull.length;e++)t.pull[e]>r&&(r=t.pull[e]);return r}function z(t,e){for(var r=[],n=0;n<t.length;n++){var i=t[n][0],a=i.trace,o=a.domain,s=e.w*(o.x[1]-o.x[0]),l=e.h*(o.y[1]-o.y[0]);a.title.text&&\"middle center\"!==a.title.position&&(l-=I(i,e));var c=s/2,u=l/2;\"funnelarea\"!==a.type||a.scalegroup||(u/=a.aspectratio),i.r=Math.min(c,u)/(1+P(a)),i.cx=e.l+e.w*(a.domain.x[1]+a.domain.x[0])/2,i.cy=e.t+e.h*(1-a.domain.y[0])-l/2,a.title.text&&-1!==a.title.position.indexOf(\"bottom\")&&(i.cy-=I(i,e)),a.scalegroup&&-1===r.indexOf(a.scalegroup)&&r.push(a.scalegroup)}!function(t,e){for(var r,n,i,a=0;a<e.length;a++){var o=1/0,s=e[a];for(n=0;n<t.length;n++)if(r=t[n][0],(i=r.trace).scalegroup===s){var l;if(\"pie\"===i.type)l=r.r*r.r;else if(\"funnelarea\"===i.type){var c,u;i.aspectratio>1?(c=r.r,u=c/i.aspectratio):(u=r.r,c=u*i.aspectratio),c*=(1+i.baseratio)/2,l=c*u}o=Math.min(o,l/r.vTotal)}for(n=0;n<t.length;n++)if(r=t[n][0],(i=r.trace).scalegroup===s){var f=o*r.vTotal;\"funnelarea\"===i.type&&(f/=(1+i.baseratio)/2,f/=i.aspectratio),r.r=Math.sqrt(f)}}}(t,r)}function O(t,e){return[t*Math.sin(e),-t*Math.cos(e)]}function D(t,e,r){var n=t._fullLayout,i=r.trace,a=i.texttemplate,o=i.textinfo;if(!a&&o&&\"none\"!==o){var s,c=o.split(\"+\"),u=function(t){return-1!==c.indexOf(t)},f=u(\"label\"),h=u(\"text\"),p=u(\"value\"),d=u(\"percent\"),g=n.separators;if(s=f?[e.label]:[],h){var v=m.getFirstFilled(i.text,e.pts);y(v)&&s.push(v)}p&&s.push(m.formatPieValue(e.v,g)),d&&s.push(m.formatPiePercent(e.v/r.vTotal,g)),e.text=s.join(\"<br>\")}if(a){var x=l.castOption(i,e.i,\"texttemplate\");if(x){var b=function(t){return{label:t.label,value:t.v,valueLabel:m.formatPieValue(t.v,n.separators),percent:t.v/r.vTotal,percentLabel:m.formatPiePercent(t.v/r.vTotal,n.separators),color:t.color,text:t.text,customdata:l.castOption(i,t.i,\"customdata\")}}(e),_=m.getFirstFilled(i.text,e.pts);(y(_)||\"\"===_)&&(b.text=_),e.text=l.texttemplateString(x,b,t._fullLayout._d3locale,b,i._meta||{})}else e.text=\"\"}}function R(t,e){var r=t.rotate*Math.PI/180,n=Math.cos(r),i=Math.sin(r),a=(e.left+e.right)/2,o=(e.top+e.bottom)/2;t.textX=a*n-o*i,t.textY=a*i+o*n,t.noCenter=!0}e.exports={plot:function(t,e){var r=t._fullLayout,a=r._size;d(\"pie\",r),_(e,t),z(e,a);var h=l.makeTraceGroups(r._pielayer,e,\"trace\").each((function(e){var h=n.select(this),d=e[0],g=d.trace;!function(t){var e,r,n,i=t[0],a=i.r,o=i.trace,s=m.getRotationAngle(o.rotation),l=2*Math.PI/i.vTotal,c=\"px0\",u=\"px1\";if(\"counterclockwise\"===o.direction){for(e=0;e<t.length&&t[e].hidden;e++);if(e===t.length)return;s+=l*t[e].v,l*=-1,c=\"px1\",u=\"px0\"}for(n=O(a,s),e=0;e<t.length;e++)(r=t[e]).hidden||(r[c]=n,r.startangle=s,s+=l*r.v/2,r.pxmid=O(a,s),r.midangle=s,s+=l*r.v/2,n=O(a,s),r.stopangle=s,r[u]=n,r.largeArc=r.v>i.vTotal/2?1:0,r.halfangle=Math.PI*Math.min(r.v/i.vTotal,.5),r.ring=1-o.hole,r.rInscribed=E(r,i))}(e),h.attr(\"stroke-linejoin\",\"round\"),h.each((function(){var v=n.select(this).selectAll(\"g.slice\").data(e);v.enter().append(\"g\").classed(\"slice\",!0),v.exit().remove();var y=[[[],[]],[[],[]]],_=!1;v.each((function(i,a){if(i.hidden)n.select(this).selectAll(\"path,g\").remove();else{i.pointNumber=i.i,i.curveNumber=g.index,y[i.pxmid[1]<0?0:1][i.pxmid[0]<0?0:1].push(i);var o=d.cx,c=d.cy,u=n.select(this),h=u.selectAll(\"path.surface\").data([i]);if(h.enter().append(\"path\").classed(\"surface\",!0).style({\"pointer-events\":\"all\"}),u.call(x,t,e),g.pull){var v=+m.castOption(g.pull,i.pts)||0;v>0&&(o+=v*i.pxmid[0],c+=v*i.pxmid[1])}i.cxFinal=o,i.cyFinal=c;var T=g.hole;if(i.v===d.vTotal){var k=\"M\"+(o+i.px0[0])+\",\"+(c+i.px0[1])+L(i.px0,i.pxmid,!0,1)+L(i.pxmid,i.px0,!0,1)+\"Z\";T?h.attr(\"d\",\"M\"+(o+T*i.px0[0])+\",\"+(c+T*i.px0[1])+L(i.px0,i.pxmid,!1,T)+L(i.pxmid,i.px0,!1,T)+\"Z\"+k):h.attr(\"d\",k)}else{var M=L(i.px0,i.px1,!0,1);if(T){var A=1-T;h.attr(\"d\",\"M\"+(o+T*i.px1[0])+\",\"+(c+T*i.px1[1])+L(i.px1,i.px0,!1,T)+\"l\"+A*i.px0[0]+\",\"+A*i.px0[1]+M+\"Z\")}else h.attr(\"d\",\"M\"+o+\",\"+c+\"l\"+i.px0[0]+\",\"+i.px0[1]+M+\"Z\")}D(t,i,d);var S=m.castOption(g.textposition,i.pts),E=u.selectAll(\"g.slicetext\").data(i.text&&\"none\"!==S?[0]:[]);E.enter().append(\"g\").classed(\"slicetext\",!0),E.exit().remove(),E.each((function(){var u=l.ensureSingle(n.select(this),\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),h=l.ensureUniformFontSize(t,\"outside\"===S?function(t,e,r){var n=m.castOption(t.outsidetextfont.color,e.pts)||m.castOption(t.textfont.color,e.pts)||r.color,i=m.castOption(t.outsidetextfont.family,e.pts)||m.castOption(t.textfont.family,e.pts)||r.family,a=m.castOption(t.outsidetextfont.size,e.pts)||m.castOption(t.textfont.size,e.pts)||r.size;return{color:n,family:i,size:a}}(g,i,r.font):b(g,i,r.font));u.text(i.text).attr({class:\"slicetext\",transform:\"\",\"text-anchor\":\"middle\"}).call(s.font,h).call(f.convertToTspans,t);var v,y=s.bBox(u.node());if(\"outside\"===S)v=C(y,i);else if(v=w(y,i,d),\"auto\"===S&&v.scale<1){var x=l.ensureUniformFontSize(t,g.outsidetextfont);u.call(s.font,x),v=C(y=s.bBox(u.node()),i)}var T=v.textPosAngle,k=void 0===T?i.pxmid:O(d.r,T);if(v.targetX=o+k[0]*v.rCenter+(v.x||0),v.targetY=c+k[1]*v.rCenter+(v.y||0),R(v,y),v.outside){var M=v.targetY;i.yLabelMin=M-y.height/2,i.yLabelMid=M,i.yLabelMax=M+y.height/2,i.labelExtraX=0,i.labelExtraY=0,_=!0}v.fontSize=h.size,p(g.type,v,r),e[a].transform=v,u.attr(\"transform\",l.getTextTransform(v))}))}function L(t,e,r,n){var a=n*(e[0]-t[0]),o=n*(e[1]-t[1]);return\"a\"+n*d.r+\",\"+n*d.r+\" 0 \"+i.largeArc+(r?\" 1 \":\" 0 \")+a+\",\"+o}}));var T=n.select(this).selectAll(\"g.titletext\").data(g.title.text?[0]:[]);if(T.enter().append(\"g\").classed(\"titletext\",!0),T.exit().remove(),T.each((function(){var e,r=l.ensureSingle(n.select(this),\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),i=g.title.text;g._meta&&(i=l.templateString(i,g._meta)),r.text(i).attr({class:\"titletext\",transform:\"\",\"text-anchor\":\"middle\"}).call(s.font,g.title.font).call(f.convertToTspans,t),e=\"middle center\"===g.title.position?function(t){var e=Math.sqrt(t.titleBox.width*t.titleBox.width+t.titleBox.height*t.titleBox.height);return{x:t.cx,y:t.cy,scale:t.trace.hole*t.r*2/e,tx:0,ty:-t.titleBox.height/2+t.trace.title.font.size}}(d):L(d,a),r.attr(\"transform\",u(e.x,e.y)+c(Math.min(1,e.scale))+u(e.tx,e.ty))})),_&&function(t,e){var r,n,i,a,o,s,l,c,u,f,h,p,d;function g(t,e){return t.pxmid[1]-e.pxmid[1]}function v(t,e){return e.pxmid[1]-t.pxmid[1]}function y(t,r){r||(r={});var i,c,u,h,p=r.labelExtraY+(n?r.yLabelMax:r.yLabelMin),d=n?t.yLabelMin:t.yLabelMax,g=n?t.yLabelMax:t.yLabelMin,v=t.cyFinal+o(t.px0[1],t.px1[1]),y=p-d;if(y*l>0&&(t.labelExtraY=y),Array.isArray(e.pull))for(c=0;c<f.length;c++)(u=f[c])===t||(m.castOption(e.pull,t.pts)||0)>=(m.castOption(e.pull,u.pts)||0)||((t.pxmid[1]-u.pxmid[1])*l>0?(y=u.cyFinal+o(u.px0[1],u.px1[1])-d-t.labelExtraY)*l>0&&(t.labelExtraY+=y):(g+t.labelExtraY-v)*l>0&&(i=3*s*Math.abs(c-f.indexOf(t)),(h=u.cxFinal+a(u.px0[0],u.px1[0])+i-(t.cxFinal+t.pxmid[0])-t.labelExtraX)*s>0&&(t.labelExtraX+=h)))}for(n=0;n<2;n++)for(i=n?g:v,o=n?Math.max:Math.min,l=n?1:-1,r=0;r<2;r++){for(a=r?Math.max:Math.min,s=r?1:-1,(c=t[n][r]).sort(i),u=t[1-n][r],f=u.concat(c),p=[],h=0;h<c.length;h++)void 0!==c[h].yLabelMid&&p.push(c[h]);for(d=!1,h=0;n&&h<u.length;h++)if(void 0!==u[h].yLabelMid){d=u[h];break}for(h=0;h<p.length;h++){var x=h&&p[h-1];d&&!h&&(x=d),y(p[h],x)}}}(y,g),function(t,e){t.each((function(t){var r=n.select(this);if(t.labelExtraX||t.labelExtraY){var i=r.select(\"g.slicetext text\");t.transform.targetX+=t.labelExtraX,t.transform.targetY+=t.labelExtraY,i.attr(\"transform\",l.getTextTransform(t.transform));var a=t.cxFinal+t.pxmid[0],s=\"M\"+a+\",\"+(t.cyFinal+t.pxmid[1]),c=(t.yLabelMax-t.yLabelMin)*(t.pxmid[0]<0?-1:1)/4;if(t.labelExtraX){var u=t.labelExtraX*t.pxmid[1]/t.pxmid[0],f=t.yLabelMid+t.labelExtraY-(t.cyFinal+t.pxmid[1]);Math.abs(u)>Math.abs(f)?s+=\"l\"+f*t.pxmid[0]/t.pxmid[1]+\",\"+f+\"H\"+(a+t.labelExtraX+c):s+=\"l\"+t.labelExtraX+\",\"+u+\"v\"+(f-u)+\"h\"+c}else s+=\"V\"+(t.yLabelMid+t.labelExtraY)+\"h\"+c;l.ensureSingle(r,\"path\",\"textline\").call(o.stroke,e.outsidetextfont.color).attr({\"stroke-width\":Math.min(2,e.outsidetextfont.size/8),d:s,fill:\"none\"})}else r.select(\"path.textline\").remove()}))}(v,g),_&&g.automargin){var k=s.bBox(h.node()),M=g.domain,A=a.w*(M.x[1]-M.x[0]),S=a.h*(M.y[1]-M.y[0]),E=(.5*A-d.r)/a.w,I=(.5*S-d.r)/a.h;i.autoMargin(t,\"pie.\"+g.uid+\".automargin\",{xl:M.x[0]-E,xr:M.x[1]+E,yb:M.y[0]-I,yt:M.y[1]+I,l:Math.max(d.cx-d.r-k.left,0),r:Math.max(k.right-(d.cx+d.r),0),b:Math.max(k.bottom-(d.cy+d.r),0),t:Math.max(d.cy-d.r-k.top,0),pad:5})}}))}));setTimeout((function(){h.selectAll(\"tspan\").each((function(){var t=n.select(this);t.attr(\"dy\")&&t.attr(\"dy\",t.attr(\"dy\"))}))}),0)},formatSliceLabel:D,transformInsideText:w,determineInsideTextFont:b,positionTitleOutside:L,prerenderTitles:_,layoutAreas:z,attachFxHandlers:x,computeTransform:R}},{\"../../components/color\":643,\"../../components/drawing\":665,\"../../components/fx\":683,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../../plots/plots\":891,\"../bar/constants\":923,\"../bar/uniform_text\":937,\"./event_data\":1165,\"./helpers\":1166,d3:169}],1171:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"./style_one\"),a=t(\"../bar/uniform_text\").resizeText;e.exports=function(t){var e=t._fullLayout._pielayer.selectAll(\".trace\");a(t,e,\"pie\"),e.each((function(t){var e=t[0].trace,r=n.select(this);r.style({opacity:e.opacity}),r.selectAll(\"path.surface\").each((function(t){n.select(this).call(i,t,e)}))}))}},{\"../bar/uniform_text\":937,\"./style_one\":1172,d3:169}],1172:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"./helpers\").castOption;e.exports=function(t,e,r){var a=r.marker.line,o=i(a.color,e.pts)||n.defaultLine,s=i(a.width,e.pts)||0;t.style(\"stroke-width\",s).call(n.fill,e.color).call(n.stroke,o)}},{\"../../components/color\":643,\"./helpers\":1166}],1173:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\");e.exports={x:n.x,y:n.y,xy:{valType:\"data_array\",editType:\"calc\"},indices:{valType:\"data_array\",editType:\"calc\"},xbounds:{valType:\"data_array\",editType:\"calc\"},ybounds:{valType:\"data_array\",editType:\"calc\"},text:n.text,marker:{color:{valType:\"color\",arrayOk:!1,editType:\"calc\"},opacity:{valType:\"number\",min:0,max:1,dflt:1,arrayOk:!1,editType:\"calc\"},blend:{valType:\"boolean\",dflt:null,editType:\"calc\"},sizemin:{valType:\"number\",min:.1,max:2,dflt:.5,editType:\"calc\"},sizemax:{valType:\"number\",min:.1,dflt:20,editType:\"calc\"},border:{color:{valType:\"color\",arrayOk:!1,editType:\"calc\"},arearatio:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"},editType:\"calc\"},editType:\"calc\"},transforms:void 0}},{\"../scatter/attributes\":1187}],1174:[function(t,e,r){\"use strict\";var n=t(\"gl-pointcloud2d\"),i=t(\"../../lib/str2rgbarray\"),a=t(\"../../plots/cartesian/autorange\").findExtremes,o=t(\"../scatter/get_trace_color\");function s(t,e){this.scene=t,this.uid=e,this.type=\"pointcloud\",this.pickXData=[],this.pickYData=[],this.xData=[],this.yData=[],this.textLabels=[],this.color=\"rgb(0, 0, 0)\",this.name=\"\",this.hoverinfo=\"all\",this.idToIndex=new Int32Array(0),this.bounds=[0,0,0,0],this.pointcloudOptions={positions:new Float32Array(0),idToIndex:this.idToIndex,sizemin:.5,sizemax:12,color:[0,0,0,1],areaRatio:1,borderColor:[0,0,0,1]},this.pointcloud=n(t.glplot,this.pointcloudOptions),this.pointcloud._trace=this}var l=s.prototype;l.handlePick=function(t){var e=this.idToIndex[t.pointId];return{trace:this,dataCoord:t.dataCoord,traceCoord:this.pickXYData?[this.pickXYData[2*e],this.pickXYData[2*e+1]]:[this.pickXData[e],this.pickYData[e]],textLabel:Array.isArray(this.textLabels)?this.textLabels[e]:this.textLabels,color:this.color,name:this.name,pointIndex:e,hoverinfo:this.hoverinfo}},l.update=function(t){this.index=t.index,this.textLabels=t.text,this.name=t.name,this.hoverinfo=t.hoverinfo,this.bounds=[1/0,1/0,-1/0,-1/0],this.updateFast(t),this.color=o(t,{})},l.updateFast=function(t){var e,r,n,o,s,l,c=this.xData=this.pickXData=t.x,u=this.yData=this.pickYData=t.y,f=this.pickXYData=t.xy,h=t.xbounds&&t.ybounds,p=t.indices,d=this.bounds;if(f){if(n=f,e=f.length>>>1,h)d[0]=t.xbounds[0],d[2]=t.xbounds[1],d[1]=t.ybounds[0],d[3]=t.ybounds[1];else for(l=0;l<e;l++)o=n[2*l],s=n[2*l+1],o<d[0]&&(d[0]=o),o>d[2]&&(d[2]=o),s<d[1]&&(d[1]=s),s>d[3]&&(d[3]=s);if(p)r=p;else for(r=new Int32Array(e),l=0;l<e;l++)r[l]=l}else for(e=c.length,n=new Float32Array(2*e),r=new Int32Array(e),l=0;l<e;l++)o=c[l],s=u[l],r[l]=l,n[2*l]=o,n[2*l+1]=s,o<d[0]&&(d[0]=o),o>d[2]&&(d[2]=o),s<d[1]&&(d[1]=s),s>d[3]&&(d[3]=s);this.idToIndex=r,this.pointcloudOptions.idToIndex=r,this.pointcloudOptions.positions=n;var g=i(t.marker.color),m=i(t.marker.border.color),v=t.opacity*t.marker.opacity;g[3]*=v,this.pointcloudOptions.color=g;var y=t.marker.blend;if(null===y){y=c.length<100||u.length<100}this.pointcloudOptions.blend=y,m[3]*=v,this.pointcloudOptions.borderColor=m;var x=t.marker.sizemin,b=Math.max(t.marker.sizemax,t.marker.sizemin);this.pointcloudOptions.sizeMin=x,this.pointcloudOptions.sizeMax=b,this.pointcloudOptions.areaRatio=t.marker.border.arearatio,this.pointcloud.update(this.pointcloudOptions);var _=this.scene.xaxis,w=this.scene.yaxis,T=b/2||.5;t._extremes[_._id]=a(_,[d[0],d[2]],{ppad:T}),t._extremes[w._id]=a(w,[d[1],d[3]],{ppad:T})},l.dispose=function(){this.pointcloud.dispose()},e.exports=function(t,e){var r=new s(t,e.uid);return r.update(e),r}},{\"../../lib/str2rgbarray\":802,\"../../plots/cartesian/autorange\":827,\"../scatter/get_trace_color\":1197,\"gl-pointcloud2d\":324}],1175:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\");e.exports=function(t,e,r){function a(r,a){return n.coerce(t,e,i,r,a)}a(\"x\"),a(\"y\"),a(\"xbounds\"),a(\"ybounds\"),t.xy&&t.xy instanceof Float32Array&&(e.xy=t.xy),t.indices&&t.indices instanceof Int32Array&&(e.indices=t.indices),a(\"text\"),a(\"marker.color\",r),a(\"marker.opacity\"),a(\"marker.blend\"),a(\"marker.sizemin\"),a(\"marker.sizemax\"),a(\"marker.border.color\",r),a(\"marker.border.arearatio\"),e._length=null}},{\"../../lib\":778,\"./attributes\":1173}],1176:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"../scatter3d/calc\"),plot:t(\"./convert\"),moduleType:\"trace\",name:\"pointcloud\",basePlotModule:t(\"../../plots/gl2d\"),categories:[\"gl\",\"gl2d\",\"showLegend\"],meta:{}}},{\"../../plots/gl2d\":868,\"../scatter3d/calc\":1216,\"./attributes\":1173,\"./convert\":1174,\"./defaults\":1175}],1177:[function(t,e,r){\"use strict\";var n=t(\"../../plots/font_attributes\"),i=t(\"../../plots/attributes\"),a=t(\"../../components/color/attributes\"),o=t(\"../../components/fx/attributes\"),s=t(\"../../plots/domain\").attributes,l=t(\"../../plots/template_attributes\").hovertemplateAttrs,c=t(\"../../components/colorscale/attributes\"),u=t(\"../../plot_api/plot_template\").templatedArray,f=t(\"../../lib/extend\").extendFlat,h=t(\"../../plot_api/edit_types\").overrideAll;t(\"../../constants/docs\").FORMAT_LINK;(e.exports=h({hoverinfo:f({},i.hoverinfo,{flags:[],arrayOk:!1}),hoverlabel:o.hoverlabel,domain:s({name:\"sankey\",trace:!0}),orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],dflt:\"h\"},valueformat:{valType:\"string\",dflt:\".3s\"},valuesuffix:{valType:\"string\",dflt:\"\"},arrangement:{valType:\"enumerated\",values:[\"snap\",\"perpendicular\",\"freeform\",\"fixed\"],dflt:\"snap\"},textfont:n({}),customdata:void 0,node:{label:{valType:\"data_array\",dflt:[]},groups:{valType:\"info_array\",impliedEdits:{x:[],y:[]},dimensions:2,freeLength:!0,dflt:[],items:{valType:\"number\",editType:\"calc\"}},x:{valType:\"data_array\",dflt:[]},y:{valType:\"data_array\",dflt:[]},color:{valType:\"color\",arrayOk:!0},customdata:{valType:\"data_array\",editType:\"calc\"},line:{color:{valType:\"color\",dflt:a.defaultLine,arrayOk:!0},width:{valType:\"number\",min:0,dflt:.5,arrayOk:!0}},pad:{valType:\"number\",arrayOk:!1,min:0,dflt:20},thickness:{valType:\"number\",arrayOk:!1,min:1,dflt:20},hoverinfo:{valType:\"enumerated\",values:[\"all\",\"none\",\"skip\"],dflt:\"all\"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:[\"value\",\"label\"]})},link:{label:{valType:\"data_array\",dflt:[]},color:{valType:\"color\",arrayOk:!0},customdata:{valType:\"data_array\",editType:\"calc\"},line:{color:{valType:\"color\",dflt:a.defaultLine,arrayOk:!0},width:{valType:\"number\",min:0,dflt:0,arrayOk:!0}},source:{valType:\"data_array\",dflt:[]},target:{valType:\"data_array\",dflt:[]},value:{valType:\"data_array\",dflt:[]},hoverinfo:{valType:\"enumerated\",values:[\"all\",\"none\",\"skip\"],dflt:\"all\"},hoverlabel:o.hoverlabel,hovertemplate:l({},{keys:[\"value\",\"label\"]}),colorscales:u(\"concentrationscales\",{editType:\"calc\",label:{valType:\"string\",editType:\"calc\",dflt:\"\"},cmax:{valType:\"number\",editType:\"calc\",dflt:1},cmin:{valType:\"number\",editType:\"calc\",dflt:0},colorscale:f(c().colorscale,{dflt:[[0,\"white\"],[1,\"black\"]]})})}},\"calc\",\"nested\")).transforms=void 0},{\"../../components/color/attributes\":642,\"../../components/colorscale/attributes\":650,\"../../components/fx/attributes\":674,\"../../constants/docs\":748,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plot_api/plot_template\":817,\"../../plots/attributes\":824,\"../../plots/domain\":855,\"../../plots/font_attributes\":856,\"../../plots/template_attributes\":906}],1178:[function(t,e,r){\"use strict\";var n=t(\"../../plot_api/edit_types\").overrideAll,i=t(\"../../plots/get_data\").getModuleCalcData,a=t(\"./plot\"),o=t(\"../../components/fx/layout_attributes\"),s=t(\"../../lib/setcursor\"),l=t(\"../../components/dragelement\"),c=t(\"../../plots/cartesian/select\").prepSelect,u=t(\"../../lib\"),f=t(\"../../registry\");function h(t,e){var r=t._fullData[e],n=t._fullLayout,i=n.dragmode,a=\"pan\"===n.dragmode?\"move\":\"crosshair\",o=r._bgRect;if(\"pan\"!==i&&\"zoom\"!==i){s(o,a);var h={_id:\"x\",c2p:u.identity,_offset:r._sankey.translateX,_length:r._sankey.width},p={_id:\"y\",c2p:u.identity,_offset:r._sankey.translateY,_length:r._sankey.height},d={gd:t,element:o.node(),plotinfo:{id:e,xaxis:h,yaxis:p,fillRangeItems:u.noop},subplot:e,xaxes:[h],yaxes:[p],doneFnCompleted:function(r){var n,i=t._fullData[e],a=i.node.groups.slice(),o=[];function s(t){for(var e=i._sankey.graph.nodes,r=0;r<e.length;r++)if(e[r].pointNumber===t)return e[r]}for(var l=0;l<r.length;l++){var c=s(r[l].pointNumber);if(c)if(c.group){for(var u=0;u<c.childrenNodes.length;u++)o.push(c.childrenNodes[u].pointNumber);a[c.pointNumber-i.node._count]=!1}else o.push(c.pointNumber)}n=a.filter(Boolean).concat([o]),f.call(\"_guiRestyle\",t,{\"node.groups\":[n]},e)},prepFn:function(t,e,r){c(t,e,r,d,i)}};l.init(d)}}r.name=\"sankey\",r.baseLayoutAttrOverrides=n({hoverlabel:o.hoverlabel},\"plot\",\"nested\"),r.plot=function(t){var e=i(t.calcdata,\"sankey\")[0];a(t,e),r.updateFx(t)},r.clean=function(t,e,r,n){var i=n._has&&n._has(\"sankey\"),a=e._has&&e._has(\"sankey\");i&&!a&&(n._paperdiv.selectAll(\".sankey\").remove(),n._paperdiv.selectAll(\".bgsankey\").remove())},r.updateFx=function(t){for(var e=0;e<t._fullData.length;e++)h(t,e)}},{\"../../components/dragelement\":662,\"../../components/fx/layout_attributes\":684,\"../../lib\":778,\"../../lib/setcursor\":799,\"../../plot_api/edit_types\":810,\"../../plots/cartesian/select\":847,\"../../plots/get_data\":865,\"../../registry\":911,\"./plot\":1183}],1179:[function(t,e,r){\"use strict\";var n=t(\"strongly-connected-components\"),i=t(\"../../lib\"),a=t(\"../../lib/gup\").wrap,o=i.isArrayOrTypedArray,s=i.isIndex,l=t(\"../../components/colorscale\");function c(t){var e,r=t.node,a=t.link,c=[],u=o(a.color),f=o(a.customdata),h={},p={},d=a.colorscales.length;for(e=0;e<d;e++){var g=a.colorscales[e],m=l.extractScale(g,{cLetter:\"c\"}),v=l.makeColorScaleFunc(m);p[g.label]=v}var y=0;for(e=0;e<a.value.length;e++)a.source[e]>y&&(y=a.source[e]),a.target[e]>y&&(y=a.target[e]);var x,b=y+1;t.node._count=b;var _=t.node.groups,w={};for(e=0;e<_.length;e++){var T=_[e];for(x=0;x<T.length;x++){var k=T[x],M=b+e;w.hasOwnProperty(k)?i.warn(\"Node \"+k+\" is already part of a group.\"):w[k]=M}}var A={source:[],target:[]};for(e=0;e<a.value.length;e++){var S=a.value[e],E=a.source[e],C=a.target[e];if(S>0&&s(E,b)&&s(C,b)&&(!w.hasOwnProperty(E)||!w.hasOwnProperty(C)||w[E]!==w[C])){w.hasOwnProperty(C)&&(C=w[C]),w.hasOwnProperty(E)&&(E=w[E]),C=+C,h[E=+E]=h[C]=!0;var L=\"\";a.label&&a.label[e]&&(L=a.label[e]);var I=null;L&&p.hasOwnProperty(L)&&(I=p[L]),c.push({pointNumber:e,label:L,color:u?a.color[e]:a.color,customdata:f?a.customdata[e]:a.customdata,concentrationscale:I,source:E,target:C,value:+S}),A.source.push(E),A.target.push(C)}}var P=b+_.length,z=o(r.color),O=o(r.customdata),D=[];for(e=0;e<P;e++)if(h[e]){var R=r.label[e];D.push({group:e>b-1,childrenNodes:[],pointNumber:e,label:R,color:z?r.color[e]:r.color,customdata:O?r.customdata[e]:r.customdata})}var F=!1;return function(t,e,r){for(var a=i.init2dArray(t,0),o=0;o<Math.min(e.length,r.length);o++)if(i.isIndex(e[o],t)&&i.isIndex(r[o],t)){if(e[o]===r[o])return!0;a[e[o]].push(r[o])}return n(a).components.some((function(t){return t.length>1}))}(P,A.source,A.target)&&(F=!0),{circular:F,links:c,nodes:D,groups:_,groupLookup:w}}e.exports=function(t,e){var r=c(e);return a({circular:r.circular,_nodes:r.nodes,_links:r.links,_groups:r.groups,_groupLookup:r.groupLookup})}},{\"../../components/colorscale\":655,\"../../lib\":778,\"../../lib/gup\":775,\"strongly-connected-components\":569}],1180:[function(t,e,r){\"use strict\";e.exports={nodeTextOffsetHorizontal:4,nodeTextOffsetVertical:3,nodePadAcross:10,sankeyIterations:50,forceIterations:5,forceTicksPerFrame:10,duration:500,ease:\"linear\",cn:{sankey:\"sankey\",sankeyLinks:\"sankey-links\",sankeyLink:\"sankey-link\",sankeyNodeSet:\"sankey-node-set\",sankeyNode:\"sankey-node\",nodeRect:\"node-rect\",nodeCapture:\"node-capture\",nodeCentered:\"node-entered\",nodeLabelGuide:\"node-label-guide\",nodeLabel:\"node-label\",nodeLabelTextPath:\"node-label-text-path\"}}},{}],1181:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"../../components/color\"),o=t(\"tinycolor2\"),s=t(\"../../plots/domain\").defaults,l=t(\"../../components/fx/hoverlabel_defaults\"),c=t(\"../../plot_api/plot_template\"),u=t(\"../../plots/array_container_defaults\");function f(t,e){function r(r,a){return n.coerce(t,e,i.link.colorscales,r,a)}r(\"label\"),r(\"cmin\"),r(\"cmax\"),r(\"colorscale\")}e.exports=function(t,e,r,h){function p(r,a){return n.coerce(t,e,i,r,a)}var d=n.extendDeep(h.hoverlabel,t.hoverlabel),g=t.node,m=c.newContainer(e,\"node\");function v(t,e){return n.coerce(g,m,i.node,t,e)}v(\"label\"),v(\"groups\"),v(\"x\"),v(\"y\"),v(\"pad\"),v(\"thickness\"),v(\"line.color\"),v(\"line.width\"),v(\"hoverinfo\",t.hoverinfo),l(g,m,v,d),v(\"hovertemplate\");var y=h.colorway;v(\"color\",m.label.map((function(t,e){return a.addOpacity(function(t){return y[t%y.length]}(e),.8)}))),v(\"customdata\");var x=t.link||{},b=c.newContainer(e,\"link\");function _(t,e){return n.coerce(x,b,i.link,t,e)}_(\"label\"),_(\"source\"),_(\"target\"),_(\"value\"),_(\"line.color\"),_(\"line.width\"),_(\"hoverinfo\",t.hoverinfo),l(x,b,_,d),_(\"hovertemplate\");var w,T=o(h.paper_bgcolor).getLuminance()<.333?\"rgba(255, 255, 255, 0.6)\":\"rgba(0, 0, 0, 0.2)\";_(\"color\",n.repeat(T,b.value.length)),_(\"customdata\"),u(x,b,{name:\"colorscales\",handleItemDefaults:f}),s(e,h,p),p(\"orientation\"),p(\"valueformat\"),p(\"valuesuffix\"),m.x.length&&m.y.length&&(w=\"freeform\"),p(\"arrangement\",w),n.coerceFont(p,\"textfont\",n.extendFlat({},h.font)),e._length=null}},{\"../../components/color\":643,\"../../components/fx/hoverlabel_defaults\":681,\"../../lib\":778,\"../../plot_api/plot_template\":817,\"../../plots/array_container_defaults\":823,\"../../plots/domain\":855,\"./attributes\":1177,tinycolor2:576}],1182:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),moduleType:\"trace\",name:\"sankey\",basePlotModule:t(\"./base_plot\"),selectPoints:t(\"./select.js\"),categories:[\"noOpacity\"],meta:{}}},{\"./attributes\":1177,\"./base_plot\":1178,\"./calc\":1179,\"./defaults\":1181,\"./plot\":1183,\"./select.js\":1185}],1183:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"./render\"),a=t(\"../../components/fx\"),o=t(\"../../components/color\"),s=t(\"../../lib\"),l=t(\"./constants\").cn,c=s._;function u(t){return\"\"!==t}function f(t,e){return t.filter((function(t){return t.key===e.traceId}))}function h(t,e){n.select(t).select(\"path\").style(\"fill-opacity\",e),n.select(t).select(\"rect\").style(\"fill-opacity\",e)}function p(t){n.select(t).select(\"text.name\").style(\"fill\",\"black\")}function d(t){return function(e){return-1!==t.node.sourceLinks.indexOf(e.link)||-1!==t.node.targetLinks.indexOf(e.link)}}function g(t){return function(e){return-1!==e.node.sourceLinks.indexOf(t.link)||-1!==e.node.targetLinks.indexOf(t.link)}}function m(t,e,r){e&&r&&f(r,e).selectAll(\".\"+l.sankeyLink).filter(d(e)).call(y.bind(0,e,r,!1))}function v(t,e,r){e&&r&&f(r,e).selectAll(\".\"+l.sankeyLink).filter(d(e)).call(x.bind(0,e,r,!1))}function y(t,e,r,n){var i=n.datum().link.label;n.style(\"fill-opacity\",(function(t){if(!t.link.concentrationscale)return.4})),i&&f(e,t).selectAll(\".\"+l.sankeyLink).filter((function(t){return t.link.label===i})).style(\"fill-opacity\",(function(t){if(!t.link.concentrationscale)return.4})),r&&f(e,t).selectAll(\".\"+l.sankeyNode).filter(g(t)).call(m)}function x(t,e,r,n){var i=n.datum().link.label;n.style(\"fill-opacity\",(function(t){return t.tinyColorAlpha})),i&&f(e,t).selectAll(\".\"+l.sankeyLink).filter((function(t){return t.link.label===i})).style(\"fill-opacity\",(function(t){return t.tinyColorAlpha})),r&&f(e,t).selectAll(l.sankeyNode).filter(g(t)).call(v)}function b(t,e){var r=t.hoverlabel||{},n=s.nestedProperty(r,e).get();return!Array.isArray(n)&&n}e.exports=function(t,e){for(var r=t._fullLayout,s=r._paper,f=r._size,d=0;d<t._fullData.length;d++)if(t._fullData[d].visible&&t._fullData[d].type===l.sankey&&!t._fullData[d]._viewInitial){var g=t._fullData[d].node;t._fullData[d]._viewInitial={node:{groups:g.groups.slice(),x:g.x.slice(),y:g.y.slice()}}}var _=c(t,\"source:\")+\" \",w=c(t,\"target:\")+\" \",T=c(t,\"concentration:\")+\" \",k=c(t,\"incoming flow count:\")+\" \",M=c(t,\"outgoing flow count:\")+\" \";i(t,s,e,{width:f.w,height:f.h,margin:{t:f.t,r:f.r,b:f.b,l:f.l}},{linkEvents:{hover:function(e,r,i){!1!==t._fullLayout.hovermode&&(n.select(e).call(y.bind(0,r,i,!0)),\"skip\"!==r.link.trace.link.hoverinfo&&(r.link.fullData=r.link.trace,t.emit(\"plotly_hover\",{event:n.event,points:[r.link]})))},follow:function(e,i){if(!1!==t._fullLayout.hovermode){var s=i.link.trace.link;if(\"none\"!==s.hoverinfo&&\"skip\"!==s.hoverinfo){for(var l=[],c=0,f=0;f<i.flow.links.length;f++){var d=i.flow.links[f];if(\"closest\"!==t._fullLayout.hovermode||i.link.pointNumber===d.pointNumber){i.link.pointNumber===d.pointNumber&&(c=f),d.fullData=d.trace,s=i.link.trace.link;var g=v(d),m={valueLabel:n.format(i.valueFormat)(d.value)+i.valueSuffix};l.push({x:g[0],y:g[1],name:m.valueLabel,text:[d.label||\"\",_+d.source.label,w+d.target.label,d.concentrationscale?T+n.format(\"%0.2f\")(d.flow.labelConcentration):\"\"].filter(u).join(\"<br>\"),color:b(s,\"bgcolor\")||o.addOpacity(d.color,1),borderColor:b(s,\"bordercolor\"),fontFamily:b(s,\"font.family\"),fontSize:b(s,\"font.size\"),fontColor:b(s,\"font.color\"),nameLength:b(s,\"namelength\"),textAlign:b(s,\"align\"),idealAlign:n.event.x<g[0]?\"right\":\"left\",hovertemplate:s.hovertemplate,hovertemplateLabels:m,eventData:[d]})}}a.loneHover(l,{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:t,anchorIndex:c}).each((function(){i.link.concentrationscale||h(this,.65),p(this)}))}}function v(t){var e,r;t.circular?(e=(t.circularPathData.leftInnerExtent+t.circularPathData.rightInnerExtent)/2,r=t.circularPathData.verticalFullExtent):(e=(t.source.x1+t.target.x0)/2,r=(t.y0+t.y1)/2);var n=[e,r];return\"v\"===t.trace.orientation&&n.reverse(),n[0]+=i.parent.translateX,n[1]+=i.parent.translateY,n}},unhover:function(e,i,o){!1!==t._fullLayout.hovermode&&(n.select(e).call(x.bind(0,i,o,!0)),\"skip\"!==i.link.trace.link.hoverinfo&&(i.link.fullData=i.link.trace,t.emit(\"plotly_unhover\",{event:n.event,points:[i.link]})),a.loneUnhover(r._hoverlayer.node()))},select:function(e,r){var i=r.link;i.originalEvent=n.event,t._hoverdata=[i],a.click(t,{target:!0})}},nodeEvents:{hover:function(e,r,i){!1!==t._fullLayout.hovermode&&(n.select(e).call(m,r,i),\"skip\"!==r.node.trace.node.hoverinfo&&(r.node.fullData=r.node.trace,t.emit(\"plotly_hover\",{event:n.event,points:[r.node]})))},follow:function(e,i){if(!1!==t._fullLayout.hovermode){var o=i.node.trace.node;if(\"none\"!==o.hoverinfo&&\"skip\"!==o.hoverinfo){var s=n.select(e).select(\".\"+l.nodeRect),c=t._fullLayout._paperdiv.node().getBoundingClientRect(),f=s.node().getBoundingClientRect(),d=f.left-2-c.left,g=f.right+2-c.left,m=f.top+f.height/4-c.top,v={valueLabel:n.format(i.valueFormat)(i.node.value)+i.valueSuffix};i.node.fullData=i.node.trace,t._fullLayout._calcInverseTransform(t);var y=t._fullLayout._invScaleX,x=t._fullLayout._invScaleY,_=a.loneHover({x0:y*d,x1:y*g,y:x*m,name:n.format(i.valueFormat)(i.node.value)+i.valueSuffix,text:[i.node.label,k+i.node.targetLinks.length,M+i.node.sourceLinks.length].filter(u).join(\"<br>\"),color:b(o,\"bgcolor\")||i.tinyColorHue,borderColor:b(o,\"bordercolor\"),fontFamily:b(o,\"font.family\"),fontSize:b(o,\"font.size\"),fontColor:b(o,\"font.color\"),nameLength:b(o,\"namelength\"),textAlign:b(o,\"align\"),idealAlign:\"left\",hovertemplate:o.hovertemplate,hovertemplateLabels:v,eventData:[i.node]},{container:r._hoverlayer.node(),outerContainer:r._paper.node(),gd:t});h(_,.85),p(_)}}},unhover:function(e,i,o){!1!==t._fullLayout.hovermode&&(n.select(e).call(v,i,o),\"skip\"!==i.node.trace.node.hoverinfo&&(i.node.fullData=i.node.trace,t.emit(\"plotly_unhover\",{event:n.event,points:[i.node]})),a.loneUnhover(r._hoverlayer.node()))},select:function(e,r,i){var o=r.node;o.originalEvent=n.event,t._hoverdata=[o],n.select(e).call(v,r,i),a.click(t,{target:!0})}}})}},{\"../../components/color\":643,\"../../components/fx\":683,\"../../lib\":778,\"./constants\":1180,\"./render\":1184,d3:169}],1184:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),i=t(\"d3\"),a=t(\"tinycolor2\"),o=t(\"../../components/color\"),s=t(\"../../components/drawing\"),l=t(\"@plotly/d3-sankey\"),c=t(\"@plotly/d3-sankey-circular\"),u=t(\"d3-force\"),f=t(\"../../lib\"),h=f.strTranslate,p=t(\"../../lib/gup\"),d=p.keyFun,g=p.repeat,m=p.unwrap,v=t(\"d3-interpolate\").interpolateNumber,y=t(\"../../registry\");function x(t,e,r){var i,o=m(e),s=o.trace,u=s.domain,h=\"h\"===s.orientation,p=s.node.pad,d=s.node.thickness,g=t.width*(u.x[1]-u.x[0]),v=t.height*(u.y[1]-u.y[0]),y=o._nodes,x=o._links,b=o.circular;(i=b?c.sankeyCircular().circularLinkGap(0):l.sankey()).iterations(n.sankeyIterations).size(h?[g,v]:[v,g]).nodeWidth(d).nodePadding(p).nodeId((function(t){return t.pointNumber})).nodes(y).links(x);var _,w,T,k=i();for(var M in i.nodePadding()<p&&f.warn(\"node.pad was reduced to \",i.nodePadding(),\" to fit within the figure.\"),o._groupLookup){var A,S=parseInt(o._groupLookup[M]);for(_=0;_<k.nodes.length;_++)if(k.nodes[_].pointNumber===S){A=k.nodes[_];break}if(A){var E={pointNumber:parseInt(M),x0:A.x0,x1:A.x1,y0:A.y0,y1:A.y1,partOfGroup:!0,sourceLinks:[],targetLinks:[]};k.nodes.unshift(E),A.childrenNodes.unshift(E)}}if(function(){for(_=0;_<k.nodes.length;_++){var t,e,r=k.nodes[_],n={};for(w=0;w<r.targetLinks.length;w++)t=(e=r.targetLinks[w]).source.pointNumber+\":\"+e.target.pointNumber,n.hasOwnProperty(t)||(n[t]=[]),n[t].push(e);var i=Object.keys(n);for(w=0;w<i.length;w++){var o=n[t=i[w]],s=0,l={};for(T=0;T<o.length;T++)l[(e=o[T]).label]||(l[e.label]=0),l[e.label]+=e.value,s+=e.value;for(T=0;T<o.length;T++)(e=o[T]).flow={value:s,labelConcentration:l[e.label]/s,concentration:e.value/s,links:o},e.concentrationscale&&(e.color=a(e.concentrationscale(e.flow.labelConcentration)))}var c=0;for(w=0;w<r.sourceLinks.length;w++)c+=r.sourceLinks[w].value;for(w=0;w<r.sourceLinks.length;w++)(e=r.sourceLinks[w]).concentrationOut=e.value/c;var u=0;for(w=0;w<r.targetLinks.length;w++)u+=r.targetLinks[w].value;for(w=0;w<r.targetLinks.length;w++)(e=r.targetLinks[w]).concenrationIn=e.value/u}}(),s.node.x.length&&s.node.y.length){for(_=0;_<Math.min(s.node.x.length,s.node.y.length,k.nodes.length);_++)if(s.node.x[_]&&s.node.y[_]){var C=[s.node.x[_]*g,s.node.y[_]*v];k.nodes[_].x0=C[0]-d/2,k.nodes[_].x1=C[0]+d/2;var L=k.nodes[_].y1-k.nodes[_].y0;k.nodes[_].y0=C[1]-L/2,k.nodes[_].y1=C[1]+L/2}if(\"snap\"===s.arrangement)!function(t){t.forEach((function(t){var e,r,n,i=0,a=t.length;for(t.sort((function(t,e){return t.y0-e.y0})),n=0;n<a;++n)(e=t[n]).y0>=i||(r=i-e.y0)>1e-6&&(e.y0+=r,e.y1+=r),i=e.y1+p}))}(function(t){var e,r,n=t.map((function(t,e){return{x0:t.x0,index:e}})).sort((function(t,e){return t.x0-e.x0})),i=[],a=-1,o=-1/0;for(_=0;_<n.length;_++){var s=t[n[_].index];s.x0>o+d&&(a+=1,e=s.x0),o=s.x0,i[a]||(i[a]=[]),i[a].push(s),r=e-s.x0,s.x0+=r,s.x1+=r}return i}(y=k.nodes));i.update(k)}return{circular:b,key:r,trace:s,guid:f.randstr(),horizontal:h,width:g,height:v,nodePad:s.node.pad,nodeLineColor:s.node.line.color,nodeLineWidth:s.node.line.width,linkLineColor:s.link.line.color,linkLineWidth:s.link.line.width,valueFormat:s.valueformat,valueSuffix:s.valuesuffix,textFont:s.textfont,translateX:u.x[0]*t.width+t.margin.l,translateY:t.height-u.y[1]*t.height+t.margin.t,dragParallel:h?v:g,dragPerpendicular:h?g:v,arrangement:s.arrangement,sankey:i,graph:k,forceLayouts:{},interactionState:{dragInProgress:!1,hovered:!1}}}function b(t,e,r){var n=a(e.color),i=e.source.label+\"|\"+e.target.label+\"__\"+r;return e.trace=t.trace,e.curveNumber=t.trace.index,{circular:t.circular,key:i,traceId:t.key,pointNumber:e.pointNumber,link:e,tinyColorHue:o.tinyRGB(n),tinyColorAlpha:n.getAlpha(),linkPath:_,linkLineColor:t.linkLineColor,linkLineWidth:t.linkLineWidth,valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,parent:t,interactionState:t.interactionState,flow:e.flow}}function _(){return function(t){if(t.link.circular)return e=t.link,r=e.width/2,n=e.circularPathData,\"top\"===e.circularLinkType?\"M \"+n.targetX+\" \"+(n.targetY+r)+\" L\"+n.rightInnerExtent+\" \"+(n.targetY+r)+\"A\"+(n.rightLargeArcRadius+r)+\" \"+(n.rightSmallArcRadius+r)+\" 0 0 1 \"+(n.rightFullExtent-r)+\" \"+(n.targetY-n.rightSmallArcRadius)+\"L\"+(n.rightFullExtent-r)+\" \"+n.verticalRightInnerExtent+\"A\"+(n.rightLargeArcRadius+r)+\" \"+(n.rightLargeArcRadius+r)+\" 0 0 1 \"+n.rightInnerExtent+\" \"+(n.verticalFullExtent-r)+\"L\"+n.leftInnerExtent+\" \"+(n.verticalFullExtent-r)+\"A\"+(n.leftLargeArcRadius+r)+\" \"+(n.leftLargeArcRadius+r)+\" 0 0 1 \"+(n.leftFullExtent+r)+\" \"+n.verticalLeftInnerExtent+\"L\"+(n.leftFullExtent+r)+\" \"+(n.sourceY-n.leftSmallArcRadius)+\"A\"+(n.leftLargeArcRadius+r)+\" \"+(n.leftSmallArcRadius+r)+\" 0 0 1 \"+n.leftInnerExtent+\" \"+(n.sourceY+r)+\"L\"+n.sourceX+\" \"+(n.sourceY+r)+\"L\"+n.sourceX+\" \"+(n.sourceY-r)+\"L\"+n.leftInnerExtent+\" \"+(n.sourceY-r)+\"A\"+(n.leftLargeArcRadius-r)+\" \"+(n.leftSmallArcRadius-r)+\" 0 0 0 \"+(n.leftFullExtent-r)+\" \"+(n.sourceY-n.leftSmallArcRadius)+\"L\"+(n.leftFullExtent-r)+\" \"+n.verticalLeftInnerExtent+\"A\"+(n.leftLargeArcRadius-r)+\" \"+(n.leftLargeArcRadius-r)+\" 0 0 0 \"+n.leftInnerExtent+\" \"+(n.verticalFullExtent+r)+\"L\"+n.rightInnerExtent+\" \"+(n.verticalFullExtent+r)+\"A\"+(n.rightLargeArcRadius-r)+\" \"+(n.rightLargeArcRadius-r)+\" 0 0 0 \"+(n.rightFullExtent+r)+\" \"+n.verticalRightInnerExtent+\"L\"+(n.rightFullExtent+r)+\" \"+(n.targetY-n.rightSmallArcRadius)+\"A\"+(n.rightLargeArcRadius-r)+\" \"+(n.rightSmallArcRadius-r)+\" 0 0 0 \"+n.rightInnerExtent+\" \"+(n.targetY-r)+\"L\"+n.targetX+\" \"+(n.targetY-r)+\"Z\":\"M \"+n.targetX+\" \"+(n.targetY-r)+\" L\"+n.rightInnerExtent+\" \"+(n.targetY-r)+\"A\"+(n.rightLargeArcRadius+r)+\" \"+(n.rightSmallArcRadius+r)+\" 0 0 0 \"+(n.rightFullExtent-r)+\" \"+(n.targetY+n.rightSmallArcRadius)+\"L\"+(n.rightFullExtent-r)+\" \"+n.verticalRightInnerExtent+\"A\"+(n.rightLargeArcRadius+r)+\" \"+(n.rightLargeArcRadius+r)+\" 0 0 0 \"+n.rightInnerExtent+\" \"+(n.verticalFullExtent+r)+\"L\"+n.leftInnerExtent+\" \"+(n.verticalFullExtent+r)+\"A\"+(n.leftLargeArcRadius+r)+\" \"+(n.leftLargeArcRadius+r)+\" 0 0 0 \"+(n.leftFullExtent+r)+\" \"+n.verticalLeftInnerExtent+\"L\"+(n.leftFullExtent+r)+\" \"+(n.sourceY+n.leftSmallArcRadius)+\"A\"+(n.leftLargeArcRadius+r)+\" \"+(n.leftSmallArcRadius+r)+\" 0 0 0 \"+n.leftInnerExtent+\" \"+(n.sourceY-r)+\"L\"+n.sourceX+\" \"+(n.sourceY-r)+\"L\"+n.sourceX+\" \"+(n.sourceY+r)+\"L\"+n.leftInnerExtent+\" \"+(n.sourceY+r)+\"A\"+(n.leftLargeArcRadius-r)+\" \"+(n.leftSmallArcRadius-r)+\" 0 0 1 \"+(n.leftFullExtent-r)+\" \"+(n.sourceY+n.leftSmallArcRadius)+\"L\"+(n.leftFullExtent-r)+\" \"+n.verticalLeftInnerExtent+\"A\"+(n.leftLargeArcRadius-r)+\" \"+(n.leftLargeArcRadius-r)+\" 0 0 1 \"+n.leftInnerExtent+\" \"+(n.verticalFullExtent-r)+\"L\"+n.rightInnerExtent+\" \"+(n.verticalFullExtent-r)+\"A\"+(n.rightLargeArcRadius-r)+\" \"+(n.rightLargeArcRadius-r)+\" 0 0 1 \"+(n.rightFullExtent+r)+\" \"+n.verticalRightInnerExtent+\"L\"+(n.rightFullExtent+r)+\" \"+(n.targetY+n.rightSmallArcRadius)+\"A\"+(n.rightLargeArcRadius-r)+\" \"+(n.rightSmallArcRadius-r)+\" 0 0 1 \"+n.rightInnerExtent+\" \"+(n.targetY+r)+\"L\"+n.targetX+\" \"+(n.targetY+r)+\"Z\";var e,r,n,i=t.link.source.x1,a=t.link.target.x0,o=v(i,a),s=o(.5),l=o(.5),c=t.link.y0-t.link.width/2,u=t.link.y0+t.link.width/2,f=t.link.y1-t.link.width/2,h=t.link.y1+t.link.width/2;return\"M\"+i+\",\"+c+\"C\"+s+\",\"+c+\" \"+l+\",\"+f+\" \"+a+\",\"+f+\"L\"+a+\",\"+h+\"C\"+l+\",\"+h+\" \"+s+\",\"+u+\" \"+i+\",\"+u+\"Z\"}}function w(t,e){var r=a(e.color),i=n.nodePadAcross,s=t.nodePad/2;e.dx=e.x1-e.x0,e.dy=e.y1-e.y0;var l=e.dx,c=Math.max(.5,e.dy),u=\"node_\"+e.pointNumber;return e.group&&(u=f.randstr()),e.trace=t.trace,e.curveNumber=t.trace.index,{index:e.pointNumber,key:u,partOfGroup:e.partOfGroup||!1,group:e.group,traceId:t.key,trace:t.trace,node:e,nodePad:t.nodePad,nodeLineColor:t.nodeLineColor,nodeLineWidth:t.nodeLineWidth,textFont:t.textFont,size:t.horizontal?t.height:t.width,visibleWidth:Math.ceil(l),visibleHeight:c,zoneX:-i,zoneY:-s,zoneWidth:l+2*i,zoneHeight:c+2*s,labelY:t.horizontal?e.dy/2+1:e.dx/2+1,left:1===e.originalLayer,sizeAcross:t.width,forceLayouts:t.forceLayouts,horizontal:t.horizontal,darkBackground:r.getBrightness()<=128,tinyColorHue:o.tinyRGB(r),tinyColorAlpha:r.getAlpha(),valueFormat:t.valueFormat,valueSuffix:t.valueSuffix,sankey:t.sankey,graph:t.graph,arrangement:t.arrangement,uniqueNodeLabelPathId:[t.guid,t.key,u].join(\"_\"),interactionState:t.interactionState,figure:t}}function T(t){t.attr(\"transform\",(function(t){return h(t.node.x0.toFixed(3),t.node.y0.toFixed(3))}))}function k(t){t.call(T)}function M(t,e){t.call(k),e.attr(\"d\",_())}function A(t){t.attr(\"width\",(function(t){return t.node.x1-t.node.x0})).attr(\"height\",(function(t){return t.visibleHeight}))}function S(t){return t.link.width>1||t.linkLineWidth>0}function E(t){return h(t.translateX,t.translateY)+(t.horizontal?\"matrix(1 0 0 1 0 0)\":\"matrix(0 1 1 0 0 0)\")}function C(t){return h(t.horizontal?0:t.labelY,t.horizontal?t.labelY:0)}function L(t){return i.svg.line()([[t.horizontal?t.left?-t.sizeAcross:t.visibleWidth+n.nodeTextOffsetHorizontal:n.nodeTextOffsetHorizontal,0],[t.horizontal?t.left?-n.nodeTextOffsetHorizontal:t.sizeAcross:t.visibleHeight-n.nodeTextOffsetHorizontal,0]])}function I(t){return t.horizontal?\"matrix(1 0 0 1 0 0)\":\"matrix(0 1 1 0 0 0)\"}function P(t){return t.horizontal?\"scale(1 1)\":\"scale(-1 1)\"}function z(t){return t.darkBackground&&!t.horizontal?\"rgb(255,255,255)\":\"rgb(0,0,0)\"}function O(t){return t.horizontal&&t.left?\"100%\":\"0%\"}function D(t,e,r){t.on(\".basic\",null).on(\"mouseover.basic\",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.hover(this,t,e),t.interactionState.hovered=[this,t])})).on(\"mousemove.basic\",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.follow(this,t),t.interactionState.hovered=[this,t])})).on(\"mouseout.basic\",(function(t){t.interactionState.dragInProgress||t.partOfGroup||(r.unhover(this,t,e),t.interactionState.hovered=!1)})).on(\"click.basic\",(function(t){t.interactionState.hovered&&(r.unhover(this,t,e),t.interactionState.hovered=!1),t.interactionState.dragInProgress||t.partOfGroup||r.select(this,t,e)}))}function R(t,e,r,a){var o=i.behavior.drag().origin((function(t){return{x:t.node.x0+t.visibleWidth/2,y:t.node.y0+t.visibleHeight/2}})).on(\"dragstart\",(function(i){if(\"fixed\"!==i.arrangement&&(f.ensureSingle(a._fullLayout._infolayer,\"g\",\"dragcover\",(function(t){a._fullLayout._dragCover=t})),f.raiseToTop(this),i.interactionState.dragInProgress=i.node,B(i.node),i.interactionState.hovered&&(r.nodeEvents.unhover.apply(0,i.interactionState.hovered),i.interactionState.hovered=!1),\"snap\"===i.arrangement)){var o=i.traceId+\"|\"+i.key;i.forceLayouts[o]?i.forceLayouts[o].alpha(1):function(t,e,r,i){!function(t){for(var e=0;e<t.length;e++)t[e].y=(t[e].y0+t[e].y1)/2,t[e].x=(t[e].x0+t[e].x1)/2}(r.graph.nodes);var a=r.graph.nodes.filter((function(t){return t.originalX===r.node.originalX})).filter((function(t){return!t.partOfGroup}));r.forceLayouts[e]=u.forceSimulation(a).alphaDecay(0).force(\"collide\",u.forceCollide().radius((function(t){return t.dy/2+r.nodePad/2})).strength(1).iterations(n.forceIterations)).force(\"constrain\",function(t,e,r,i){return function(){for(var t=0,a=0;a<r.length;a++){var o=r[a];o===i.interactionState.dragInProgress?(o.x=o.lastDraggedX,o.y=o.lastDraggedY):(o.vx=(o.originalX-o.x)/n.forceTicksPerFrame,o.y=Math.min(i.size-o.dy/2,Math.max(o.dy/2,o.y))),t=Math.max(t,Math.abs(o.vx),Math.abs(o.vy))}!i.interactionState.dragInProgress&&t<.1&&i.forceLayouts[e].alpha()>0&&i.forceLayouts[e].alpha(0)}}(0,e,a,r)).stop()}(0,o,i),function(t,e,r,i,a){window.requestAnimationFrame((function o(){var s;for(s=0;s<n.forceTicksPerFrame;s++)r.forceLayouts[i].tick();if(function(t){for(var e=0;e<t.length;e++)t[e].y0=t[e].y-t[e].dy/2,t[e].y1=t[e].y0+t[e].dy,t[e].x0=t[e].x-t[e].dx/2,t[e].x1=t[e].x0+t[e].dx}(r.graph.nodes),r.sankey.update(r.graph),M(t.filter(N(r)),e),r.forceLayouts[i].alpha()>0)window.requestAnimationFrame(o);else{var l=r.node.originalX;r.node.x0=l-r.visibleWidth/2,r.node.x1=l+r.visibleWidth/2,F(r,a)}}))}(t,e,i,o,a)}})).on(\"drag\",(function(r){if(\"fixed\"!==r.arrangement){var n=i.event.x,a=i.event.y;\"snap\"===r.arrangement?(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2,r.node.y0=a-r.visibleHeight/2,r.node.y1=a+r.visibleHeight/2):(\"freeform\"===r.arrangement&&(r.node.x0=n-r.visibleWidth/2,r.node.x1=n+r.visibleWidth/2),a=Math.max(0,Math.min(r.size-r.visibleHeight/2,a)),r.node.y0=a-r.visibleHeight/2,r.node.y1=a+r.visibleHeight/2),B(r.node),\"snap\"!==r.arrangement&&(r.sankey.update(r.graph),M(t.filter(N(r)),e))}})).on(\"dragend\",(function(t){if(\"fixed\"!==t.arrangement){t.interactionState.dragInProgress=!1;for(var e=0;e<t.node.childrenNodes.length;e++)t.node.childrenNodes[e].x=t.node.x,t.node.childrenNodes[e].y=t.node.y;\"snap\"!==t.arrangement&&F(t,a)}}));t.on(\".drag\",null).call(o)}function F(t,e){for(var r=[],n=[],i=0;i<t.graph.nodes.length;i++){var a=(t.graph.nodes[i].x0+t.graph.nodes[i].x1)/2,o=(t.graph.nodes[i].y0+t.graph.nodes[i].y1)/2;r.push(a/t.figure.width),n.push(o/t.figure.height)}y.call(\"_guiRestyle\",e,{\"node.x\":[r],\"node.y\":[n]},t.trace.index).then((function(){e._fullLayout._dragCover&&e._fullLayout._dragCover.remove()}))}function B(t){t.lastDraggedX=t.x0+t.dx/2,t.lastDraggedY=t.y0+t.dy/2}function N(t){return function(e){return e.node.originalX===t.node.originalX}}e.exports=function(t,e,r,l,c){var u=!1;f.ensureSingle(t._fullLayout._infolayer,\"g\",\"first-render\",(function(){u=!0}));var h=t._fullLayout._dragCover,p=r.filter((function(t){return m(t).trace.visible})).map(x.bind(null,l)),v=e.selectAll(\".\"+n.cn.sankey).data(p,d);v.exit().remove(),v.enter().append(\"g\").classed(n.cn.sankey,!0).style(\"box-sizing\",\"content-box\").style(\"position\",\"absolute\").style(\"left\",0).style(\"shape-rendering\",\"geometricPrecision\").style(\"pointer-events\",\"auto\").attr(\"transform\",E),v.each((function(e,r){t._fullData[r]._sankey=e;var n=\"bgsankey-\"+e.trace.uid+\"-\"+r;f.ensureSingle(t._fullLayout._draggers,\"rect\",n),t._fullData[r]._bgRect=i.select(\".\"+n),t._fullData[r]._bgRect.style(\"pointer-events\",\"all\").attr(\"width\",e.width).attr(\"height\",e.height).attr(\"x\",e.translateX).attr(\"y\",e.translateY).classed(\"bgsankey\",!0).style({fill:\"transparent\",\"stroke-width\":0})})),v.transition().ease(n.ease).duration(n.duration).attr(\"transform\",E);var y=v.selectAll(\".\"+n.cn.sankeyLinks).data(g,d);y.enter().append(\"g\").classed(n.cn.sankeyLinks,!0).style(\"fill\",\"none\");var k=y.selectAll(\".\"+n.cn.sankeyLink).data((function(t){return t.graph.links.filter((function(t){return t.value})).map(b.bind(null,t))}),d);k.enter().append(\"path\").classed(n.cn.sankeyLink,!0).call(D,v,c.linkEvents),k.style(\"stroke\",(function(t){return S(t)?o.tinyRGB(a(t.linkLineColor)):t.tinyColorHue})).style(\"stroke-opacity\",(function(t){return S(t)?o.opacity(t.linkLineColor):t.tinyColorAlpha})).style(\"fill\",(function(t){return t.tinyColorHue})).style(\"fill-opacity\",(function(t){return t.tinyColorAlpha})).style(\"stroke-width\",(function(t){return S(t)?t.linkLineWidth:1})).attr(\"d\",_()),k.style(\"opacity\",(function(){return t._context.staticPlot||u||h?1:0})).transition().ease(n.ease).duration(n.duration).style(\"opacity\",1),k.exit().transition().ease(n.ease).duration(n.duration).style(\"opacity\",0).remove();var M=v.selectAll(\".\"+n.cn.sankeyNodeSet).data(g,d);M.enter().append(\"g\").classed(n.cn.sankeyNodeSet,!0),M.style(\"cursor\",(function(t){switch(t.arrangement){case\"fixed\":return\"default\";case\"perpendicular\":return\"ns-resize\";default:return\"move\"}}));var F=M.selectAll(\".\"+n.cn.sankeyNode).data((function(t){var e=t.graph.nodes;return function(t){var e,r=[];for(e=0;e<t.length;e++)t[e].originalX=(t[e].x0+t[e].x1)/2,t[e].originalY=(t[e].y0+t[e].y1)/2,-1===r.indexOf(t[e].originalX)&&r.push(t[e].originalX);for(r.sort((function(t,e){return t-e})),e=0;e<t.length;e++)t[e].originalLayerIndex=r.indexOf(t[e].originalX),t[e].originalLayer=t[e].originalLayerIndex/(r.length-1)}(e),e.map(w.bind(null,t))}),d);F.enter().append(\"g\").classed(n.cn.sankeyNode,!0).call(T).style(\"opacity\",(function(e){return!t._context.staticPlot&&!u||e.partOfGroup?0:1})),F.call(D,v,c.nodeEvents).call(R,k,c,t),F.transition().ease(n.ease).duration(n.duration).call(T).style(\"opacity\",(function(t){return t.partOfGroup?0:1})),F.exit().transition().ease(n.ease).duration(n.duration).style(\"opacity\",0).remove();var B=F.selectAll(\".\"+n.cn.nodeRect).data(g);B.enter().append(\"rect\").classed(n.cn.nodeRect,!0).call(A),B.style(\"stroke-width\",(function(t){return t.nodeLineWidth})).style(\"stroke\",(function(t){return o.tinyRGB(a(t.nodeLineColor))})).style(\"stroke-opacity\",(function(t){return o.opacity(t.nodeLineColor)})).style(\"fill\",(function(t){return t.tinyColorHue})).style(\"fill-opacity\",(function(t){return t.tinyColorAlpha})),B.transition().ease(n.ease).duration(n.duration).call(A);var N=F.selectAll(\".\"+n.cn.nodeCapture).data(g);N.enter().append(\"rect\").classed(n.cn.nodeCapture,!0).style(\"fill-opacity\",0),N.attr(\"x\",(function(t){return t.zoneX})).attr(\"y\",(function(t){return t.zoneY})).attr(\"width\",(function(t){return t.zoneWidth})).attr(\"height\",(function(t){return t.zoneHeight}));var j=F.selectAll(\".\"+n.cn.nodeCentered).data(g);j.enter().append(\"g\").classed(n.cn.nodeCentered,!0).attr(\"transform\",C),j.transition().ease(n.ease).duration(n.duration).attr(\"transform\",C);var U=j.selectAll(\".\"+n.cn.nodeLabelGuide).data(g);U.enter().append(\"path\").classed(n.cn.nodeLabelGuide,!0).attr(\"id\",(function(t){return t.uniqueNodeLabelPathId})).attr(\"d\",L).attr(\"transform\",I),U.transition().ease(n.ease).duration(n.duration).attr(\"d\",L).attr(\"transform\",I);var V=j.selectAll(\".\"+n.cn.nodeLabel).data(g);V.enter().append(\"text\").classed(n.cn.nodeLabel,!0).attr(\"transform\",P).style(\"cursor\",\"default\").style(\"fill\",\"black\"),V.style(\"text-shadow\",(function(t){return t.horizontal?\"-1px 1px 1px #fff, 1px 1px 1px #fff, 1px -1px 1px #fff, -1px -1px 1px #fff\":\"none\"})).each((function(t){s.font(V,t.textFont)})),V.transition().ease(n.ease).duration(n.duration).attr(\"transform\",P);var q=V.selectAll(\".\"+n.cn.nodeLabelTextPath).data(g);q.enter().append(\"textPath\").classed(n.cn.nodeLabelTextPath,!0).attr(\"alignment-baseline\",\"middle\").attr(\"xlink:href\",(function(t){return\"#\"+t.uniqueNodeLabelPathId})).attr(\"startOffset\",O).style(\"fill\",z),q.text((function(t){return t.horizontal||t.node.dy>5?t.node.label:\"\"})).attr(\"text-anchor\",(function(t){return t.horizontal&&t.left?\"end\":\"start\"})),q.transition().ease(n.ease).duration(n.duration).attr(\"startOffset\",O).style(\"fill\",z)}},{\"../../components/color\":643,\"../../components/drawing\":665,\"../../lib\":778,\"../../lib/gup\":775,\"../../registry\":911,\"./constants\":1180,\"@plotly/d3-sankey\":56,\"@plotly/d3-sankey-circular\":55,d3:169,\"d3-force\":160,\"d3-interpolate\":162,tinycolor2:576}],1185:[function(t,e,r){\"use strict\";e.exports=function(t,e){for(var r=[],n=t.cd[0].trace,i=n._sankey.graph.nodes,a=0;a<i.length;a++){var o=i[a];if(!o.partOfGroup){var s=[(o.x0+o.x1)/2,(o.y0+o.y1)/2];\"v\"===n.orientation&&s.reverse(),e&&e.contains(s,!1,a,t)&&r.push({pointNumber:o.pointNumber})}}return r}},{}],1186:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){for(var r=0;r<t.length;r++)t[r].i=r;n.mergeArray(e.text,t,\"tx\"),n.mergeArray(e.texttemplate,t,\"txt\"),n.mergeArray(e.hovertext,t,\"htx\"),n.mergeArray(e.customdata,t,\"data\"),n.mergeArray(e.textposition,t,\"tp\"),e.textfont&&(n.mergeArrayCastPositive(e.textfont.size,t,\"ts\"),n.mergeArray(e.textfont.color,t,\"tc\"),n.mergeArray(e.textfont.family,t,\"tf\"));var i=e.marker;if(i){n.mergeArrayCastPositive(i.size,t,\"ms\"),n.mergeArrayCastPositive(i.opacity,t,\"mo\"),n.mergeArray(i.symbol,t,\"mx\"),n.mergeArray(i.color,t,\"mc\");var a=i.line;i.line&&(n.mergeArray(a.color,t,\"mlc\"),n.mergeArrayCastPositive(a.width,t,\"mlw\"));var o=i.gradient;o&&\"none\"!==o.type&&(n.mergeArray(o.type,t,\"mgt\"),n.mergeArray(o.color,t,\"mgc\"))}}},{\"../../lib\":778}],1187:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").texttemplateAttrs,i=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../components/colorscale/attributes\"),o=t(\"../../plots/font_attributes\"),s=t(\"../../components/drawing/attributes\").dash,l=t(\"../../components/drawing\"),c=t(\"./constants\"),u=t(\"../../lib/extend\").extendFlat;e.exports={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\",anim:!0},x0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\",anim:!0},dx:{valType:\"number\",dflt:1,editType:\"calc\",anim:!0},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\",anim:!0},y0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\",anim:!0},dy:{valType:\"number\",dflt:1,editType:\"calc\",anim:!0},xperiod:{valType:\"any\",dflt:0,editType:\"calc\"},yperiod:{valType:\"any\",dflt:0,editType:\"calc\"},xperiod0:{valType:\"any\",editType:\"calc\"},yperiod0:{valType:\"any\",editType:\"calc\"},xperiodalignment:{valType:\"enumerated\",values:[\"start\",\"middle\",\"end\"],dflt:\"middle\",editType:\"calc\"},yperiodalignment:{valType:\"enumerated\",values:[\"start\",\"middle\",\"end\"],dflt:\"middle\",editType:\"calc\"},stackgroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},orientation:{valType:\"enumerated\",values:[\"v\",\"h\"],editType:\"calc\"},groupnorm:{valType:\"enumerated\",values:[\"\",\"fraction\",\"percent\"],dflt:\"\",editType:\"calc\"},stackgaps:{valType:\"enumerated\",values:[\"infer zero\",\"interpolate\"],dflt:\"infer zero\",editType:\"calc\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"calc\"},texttemplate:n({},{}),hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0,editType:\"style\"},mode:{valType:\"flaglist\",flags:[\"lines\",\"markers\",\"text\"],extras:[\"none\"],editType:\"calc\"},hoveron:{valType:\"flaglist\",flags:[\"points\",\"fills\"],editType:\"style\"},hovertemplate:i({},{keys:c.eventDataKeys}),line:{color:{valType:\"color\",editType:\"style\",anim:!0},width:{valType:\"number\",min:0,dflt:2,editType:\"style\",anim:!0},shape:{valType:\"enumerated\",values:[\"linear\",\"spline\",\"hv\",\"vh\",\"hvh\",\"vhv\"],dflt:\"linear\",editType:\"plot\"},smoothing:{valType:\"number\",min:0,max:1.3,dflt:1,editType:\"plot\"},dash:u({},s,{editType:\"style\"}),simplify:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},connectgaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},cliponaxis:{valType:\"boolean\",dflt:!0,editType:\"plot\"},fill:{valType:\"enumerated\",values:[\"none\",\"tozeroy\",\"tozerox\",\"tonexty\",\"tonextx\",\"toself\",\"tonext\"],editType:\"calc\"},fillcolor:{valType:\"color\",editType:\"style\",anim:!0},marker:u({symbol:{valType:\"enumerated\",values:l.symbolList,dflt:\"circle\",arrayOk:!0,editType:\"style\"},opacity:{valType:\"number\",min:0,max:1,arrayOk:!0,editType:\"style\",anim:!0},size:{valType:\"number\",min:0,dflt:6,arrayOk:!0,editType:\"calc\",anim:!0},maxdisplayed:{valType:\"number\",min:0,dflt:0,editType:\"plot\"},sizeref:{valType:\"number\",dflt:1,editType:\"calc\"},sizemin:{valType:\"number\",min:0,dflt:0,editType:\"calc\"},sizemode:{valType:\"enumerated\",values:[\"diameter\",\"area\"],dflt:\"diameter\",editType:\"calc\"},line:u({width:{valType:\"number\",min:0,arrayOk:!0,editType:\"style\",anim:!0},editType:\"calc\"},a(\"marker.line\",{anim:!0})),gradient:{type:{valType:\"enumerated\",values:[\"radial\",\"horizontal\",\"vertical\",\"none\"],arrayOk:!0,dflt:\"none\",editType:\"calc\"},color:{valType:\"color\",arrayOk:!0,editType:\"calc\"},editType:\"calc\"},editType:\"calc\"},a(\"marker\",{anim:!0})),selected:{marker:{opacity:{valType:\"number\",min:0,max:1,editType:\"style\"},color:{valType:\"color\",editType:\"style\"},size:{valType:\"number\",min:0,editType:\"style\"},editType:\"style\"},textfont:{color:{valType:\"color\",editType:\"style\"},editType:\"style\"},editType:\"style\"},unselected:{marker:{opacity:{valType:\"number\",min:0,max:1,editType:\"style\"},color:{valType:\"color\",editType:\"style\"},size:{valType:\"number\",min:0,editType:\"style\"},editType:\"style\"},textfont:{color:{valType:\"color\",editType:\"style\"},editType:\"style\"},editType:\"style\"},textposition:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle left\",\"middle center\",\"middle right\",\"bottom left\",\"bottom center\",\"bottom right\"],dflt:\"middle center\",arrayOk:!0,editType:\"calc\"},textfont:o({editType:\"calc\",colorEditType:\"style\",arrayOk:!0}),r:{valType:\"data_array\",editType:\"calc\"},t:{valType:\"data_array\",editType:\"calc\"}}},{\"../../components/colorscale/attributes\":650,\"../../components/drawing\":665,\"../../components/drawing/attributes\":664,\"../../lib/extend\":768,\"../../plots/font_attributes\":856,\"../../plots/template_attributes\":906,\"./constants\":1191}],1188:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../../plots/cartesian/axes\"),o=t(\"../../plots/cartesian/align_period\"),s=t(\"../../constants/numerical\").BADNUM,l=t(\"./subtypes\"),c=t(\"./colorscale_calc\"),u=t(\"./arrays_to_calcdata\"),f=t(\"./calc_selection\");function h(t,e,r,n,i,o,s){var c=e._length,u=t._fullLayout,f=r._id,h=n._id,p=u._firstScatter[g(e)]===e.uid,d=(m(e,u,r,n)||{}).orientation,v=e.fill;r._minDtick=0,n._minDtick=0;var y={padded:!0},x={padded:!0};s&&(y.ppad=x.ppad=s);var b=c<2||i[0]!==i[c-1]||o[0]!==o[c-1];b&&(\"tozerox\"===v||\"tonextx\"===v&&(p||\"h\"===d))?y.tozero=!0:(e.error_y||{}).visible||\"tonexty\"!==v&&\"tozeroy\"!==v&&(l.hasMarkers(e)||l.hasText(e))||(y.padded=!1,y.ppad=0),b&&(\"tozeroy\"===v||\"tonexty\"===v&&(p||\"v\"===d))?x.tozero=!0:\"tonextx\"!==v&&\"tozerox\"!==v||(x.padded=!1),f&&(e._extremes[f]=a.findExtremes(r,i,y)),h&&(e._extremes[h]=a.findExtremes(n,o,x))}function p(t,e){if(l.hasMarkers(t)){var r,n=t.marker,o=1.6*(t.marker.sizeref||1);if(r=\"area\"===t.marker.sizemode?function(t){return Math.max(Math.sqrt((t||0)/o),3)}:function(t){return Math.max((t||0)/o,3)},i.isArrayOrTypedArray(n.size)){var s={type:\"linear\"};a.setConvert(s);for(var c=s.makeCalcdata(t.marker,\"size\"),u=new Array(e),f=0;f<e;f++)u[f]=r(c[f]);return u}return r(n.size)}}function d(t,e){var r=g(e),n=t._firstScatter;n[r]||(n[r]=e.uid)}function g(t){var e=t.stackgroup;return t.xaxis+t.yaxis+t.type+(e?\"-\"+e:\"\")}function m(t,e,r,n){var i=t.stackgroup;if(i){var a=e._scatterStackOpts[r._id+n._id][i],o=\"v\"===a.orientation?n:r;return\"linear\"===o.type||\"log\"===o.type?a:void 0}}e.exports={calc:function(t,e){var r,l,g,v,y,x,b=t._fullLayout,_=a.getFromId(t,e.xaxis||\"x\"),w=a.getFromId(t,e.yaxis||\"y\"),T=_.makeCalcdata(e,\"x\"),k=w.makeCalcdata(e,\"y\"),M=o(e,_,\"x\",T),A=o(e,w,\"y\",k),S=e._length,E=new Array(S),C=e.ids,L=m(e,b,_,w),I=!1;d(b,e);var P,z=\"x\",O=\"y\";L?(i.pushUnique(L.traceIndices,e._expandedIndex),(r=\"v\"===L.orientation)?(O=\"s\",P=\"x\"):(z=\"s\",P=\"y\"),y=\"interpolate\"===L.stackgaps):h(t,e,_,w,M,A,p(e,S));var D=!!e.xperiodalignment,R=!!e.yperiodalignment;for(l=0;l<S;l++){var F=E[l]={},B=n(M[l]),N=n(A[l]);B&&N?(F[z]=M[l],F[O]=A[l],D&&(F.orig_x=T[l]),R&&(F.orig_y=k[l])):L&&(r?B:N)?(F[P]=r?M[l]:A[l],F.gap=!0,y?(F.s=s,I=!0):F.s=0):F[z]=F[O]=s,C&&(F.id=String(C[l]))}if(u(E,e),c(t,e),f(E,e),L){for(l=0;l<E.length;)E[l][P]===s?E.splice(l,1):l++;if(i.sort(E,(function(t,e){return t[P]-e[P]||t.i-e.i})),I){for(l=0;l<E.length-1&&E[l].gap;)l++;for((x=E[l].s)||(x=E[l].s=0),g=0;g<l;g++)E[g].s=x;for(v=E.length-1;v>l&&E[v].gap;)v--;for(x=E[v].s,g=E.length-1;g>v;g--)E[g].s=x;for(;l<v;)if(E[++l].gap){for(g=l+1;E[g].gap;)g++;for(var j=E[l-1][P],U=E[l-1].s,V=(E[g].s-U)/(E[g][P]-j);l<g;)E[l].s=U+(E[l][P]-j)*V,l++}}}return E},calcMarkerSize:p,calcAxisExpansion:h,setFirstScatter:d,getStackOpts:m}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../../plots/cartesian/align_period\":825,\"../../plots/cartesian/axes\":828,\"./arrays_to_calcdata\":1186,\"./calc_selection\":1189,\"./colorscale_calc\":1190,\"./subtypes\":1212,\"fast-isnumeric\":241}],1189:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){n.isArrayOrTypedArray(e.selectedpoints)&&n.tagSelected(t,e)}},{\"../../lib\":778}],1190:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/helpers\").hasColorscale,i=t(\"../../components/colorscale/calc\"),a=t(\"./subtypes\");e.exports=function(t,e){a.hasLines(e)&&n(e,\"line\")&&i(t,e,{vals:e.line.color,containerStr:\"line\",cLetter:\"c\"}),a.hasMarkers(e)&&(n(e,\"marker\")&&i(t,e,{vals:e.marker.color,containerStr:\"marker\",cLetter:\"c\"}),n(e,\"marker.line\")&&i(t,e,{vals:e.marker.line.color,containerStr:\"marker.line\",cLetter:\"c\"}))}},{\"../../components/colorscale/calc\":651,\"../../components/colorscale/helpers\":654,\"./subtypes\":1212}],1191:[function(t,e,r){\"use strict\";e.exports={PTS_LINESONLY:20,minTolerance:.2,toleranceGrowth:10,maxScreensAway:20,eventDataKeys:[]}},{}],1192:[function(t,e,r){\"use strict\";var n=t(\"./calc\");function i(t,e,r,n,i,a,o){i[n]=!0;var s={i:null,gap:!0,s:0};if(s[o]=r,t.splice(e,0,s),e&&r===t[e-1][o]){var l=t[e-1];s.s=l.s,s.i=l.i,s.gap=l.gap}else a&&(s.s=function(t,e,r,n){var i=t[e-1],a=t[e+1];return a?i?i.s+(a.s-i.s)*(r-i[n])/(a[n]-i[n]):a.s:i.s}(t,e,r,o));e||(t[0].t=t[1].t,t[0].trace=t[1].trace,delete t[1].t,delete t[1].trace)}e.exports=function(t,e){var r=e.xaxis,a=e.yaxis,o=r._id+a._id,s=t._fullLayout._scatterStackOpts[o];if(s){var l,c,u,f,h,p,d,g,m,v,y,x,b,_,w,T=t.calcdata;for(var k in s){var M=(v=s[k]).traceIndices;if(M.length){for(y=\"interpolate\"===v.stackgaps,x=v.groupnorm,\"v\"===v.orientation?(b=\"x\",_=\"y\"):(b=\"y\",_=\"x\"),w=new Array(M.length),l=0;l<w.length;l++)w[l]=!1;p=T[M[0]];var A=new Array(p.length);for(l=0;l<p.length;l++)A[l]=p[l][b];for(l=1;l<M.length;l++){for(h=T[M[l]],c=u=0;c<h.length;c++){for(d=h[c][b];d>A[u]&&u<A.length;u++)i(h,c,A[u],l,w,y,b),c++;if(d!==A[u]){for(f=0;f<l;f++)i(T[M[f]],u,d,f,w,y,b);A.splice(u,0,d)}u++}for(;u<A.length;u++)i(h,c,A[u],l,w,y,b),c++}var S=A.length;for(c=0;c<p.length;c++){for(g=p[c][_]=p[c].s,l=1;l<M.length;l++)(h=T[M[l]])[0].trace._rawLength=h[0].trace._length,h[0].trace._length=S,g+=h[c].s,h[c][_]=g;if(x)for(m=(\"fraction\"===x?g:g/100)||1,l=0;l<M.length;l++){var E=T[M[l]][c];E[_]/=m,E.sNorm=E.s/m}}for(l=0;l<M.length;l++){var C=(h=T[M[l]])[0].trace,L=n.calcMarkerSize(C,C._rawLength),I=Array.isArray(L);if(L&&w[l]||I){var P=L;for(L=new Array(S),c=0;c<S;c++)L[c]=h[c].gap?0:I?P[h[c].i]:P}var z=new Array(S),O=new Array(S);for(c=0;c<S;c++)z[c]=h[c].x,O[c]=h[c].y;n.calcAxisExpansion(t,C,r,a,z,O,L),h[0].t.orientation=v.orientation}}}}}},{\"./calc\":1188}],1193:[function(t,e,r){\"use strict\";e.exports=function(t){for(var e=0;e<t.length;e++){var r=t[e];if(\"scatter\"===r.type){var n=r.fill;if(\"none\"!==n&&\"toself\"!==n&&(r.opacity=void 0,\"tonexty\"===n||\"tonextx\"===n))for(var i=e-1;i>=0;i--){var a=t[i];if(\"scatter\"===a.type&&a.xaxis===r.xaxis&&a.yaxis===r.yaxis){a.opacity=void 0;break}}}}}},{}],1194:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../registry\"),a=t(\"./attributes\"),o=t(\"./constants\"),s=t(\"./subtypes\"),l=t(\"./xy_defaults\"),c=t(\"./period_defaults\"),u=t(\"./stack_defaults\"),f=t(\"./marker_defaults\"),h=t(\"./line_defaults\"),p=t(\"./line_shape_defaults\"),d=t(\"./text_defaults\"),g=t(\"./fillcolor_defaults\");e.exports=function(t,e,r,m){function v(r,i){return n.coerce(t,e,a,r,i)}var y=l(t,e,m,v);if(y||(e.visible=!1),e.visible){c(t,e,m,v);var x=u(t,e,m,v),b=!x&&y<o.PTS_LINESONLY?\"lines+markers\":\"lines\";v(\"text\"),v(\"hovertext\"),v(\"mode\",b),s.hasLines(e)&&(h(t,e,r,m,v),p(t,e,v),v(\"connectgaps\"),v(\"line.simplify\")),s.hasMarkers(e)&&f(t,e,r,m,v,{gradient:!0}),s.hasText(e)&&(v(\"texttemplate\"),d(t,e,m,v));var _=[];(s.hasMarkers(e)||s.hasText(e))&&(v(\"cliponaxis\"),v(\"marker.maxdisplayed\"),_.push(\"points\")),v(\"fill\",x?x.fillDflt:\"none\"),\"none\"!==e.fill&&(g(t,e,r,v),s.hasLines(e)||p(t,e,v));var w=(e.line||{}).color,T=(e.marker||{}).color;\"tonext\"!==e.fill&&\"toself\"!==e.fill||_.push(\"fills\"),v(\"hoveron\",_.join(\"+\")||\"points\"),\"fills\"!==e.hoveron&&v(\"hovertemplate\");var k=i.getComponentMethod(\"errorbars\",\"supplyDefaults\");k(t,e,w||T||r,{axis:\"y\"}),k(t,e,w||T||r,{axis:\"x\",inherit:\"y\"}),n.coerceSelectionMarkerOpacity(e,v)}}},{\"../../lib\":778,\"../../registry\":911,\"./attributes\":1187,\"./constants\":1191,\"./fillcolor_defaults\":1195,\"./line_defaults\":1200,\"./line_shape_defaults\":1202,\"./marker_defaults\":1206,\"./period_defaults\":1207,\"./stack_defaults\":1210,\"./subtypes\":1212,\"./text_defaults\":1213,\"./xy_defaults\":1214}],1195:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"../../lib\").isArrayOrTypedArray;e.exports=function(t,e,r,a){var o=!1;if(e.marker){var s=e.marker.color,l=(e.marker.line||{}).color;s&&!i(s)?o=s:l&&!i(l)&&(o=l)}a(\"fillcolor\",n.addOpacity((e.line||{}).color||o||r,.5))}},{\"../../components/color\":643,\"../../lib\":778}],1196:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\");e.exports=function(t,e,r){var i={},a={_fullLayout:r},o=n.getFromTrace(a,e,\"x\"),s=n.getFromTrace(a,e,\"y\");return i.xLabel=n.tickText(o,t.x,!0).text,i.yLabel=n.tickText(s,t.y,!0).text,i}},{\"../../plots/cartesian/axes\":828}],1197:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"./subtypes\");e.exports=function(t,e){var r,a;if(\"lines\"===t.mode)return(r=t.line.color)&&n.opacity(r)?r:t.fillcolor;if(\"none\"===t.mode)return t.fill?t.fillcolor:\"\";var o=e.mcc||(t.marker||{}).color,s=e.mlcc||((t.marker||{}).line||{}).color;return(a=o&&n.opacity(o)?o:s&&n.opacity(s)&&(e.mlw||((t.marker||{}).line||{}).width)?s:\"\")?n.opacity(a)<.3?n.addOpacity(a,.3):a:(r=(t.line||{}).color)&&n.opacity(r)&&i.hasLines(t)&&t.line.width?r:t.fillcolor}},{\"../../components/color\":643,\"./subtypes\":1212}],1198:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/fx\"),a=t(\"../../registry\"),o=t(\"./get_trace_color\"),s=t(\"../../components/color\"),l=n.fillText;e.exports=function(t,e,r,c){var u=t.cd,f=u[0].trace,h=t.xa,p=t.ya,d=h.c2p(e),g=p.c2p(r),m=[d,g],v=f.hoveron||\"\",y=-1!==f.mode.indexOf(\"markers\")?3:.5;if(-1!==v.indexOf(\"points\")){var x=function(t){var e=Math.max(y,t.mrc||0),r=h.c2p(t.x)-d,n=p.c2p(t.y)-g;return Math.max(Math.sqrt(r*r+n*n)-e,1-y/e)},b=i.getDistanceFunction(c,(function(t){var e=Math.max(3,t.mrc||0),r=1-1/e,n=Math.abs(h.c2p(t.x)-d);return n<e?r*n/e:n-e+r}),(function(t){var e=Math.max(3,t.mrc||0),r=1-1/e,n=Math.abs(p.c2p(t.y)-g);return n<e?r*n/e:n-e+r}),x);if(i.getClosest(u,b,t),!1!==t.index){var _=u[t.index],w=h.c2p(_.x,!0),T=p.c2p(_.y,!0),k=_.mrc||1;t.index=_.i;var M=u[0].t.orientation,A=M&&(_.sNorm||_.s),S=\"h\"===M?A:void 0!==_.orig_x?_.orig_x:_.x,E=\"v\"===M?A:void 0!==_.orig_y?_.orig_y:_.y;return n.extendFlat(t,{color:o(f,_),x0:w-k,x1:w+k,xLabelVal:S,y0:T-k,y1:T+k,yLabelVal:E,spikeDistance:x(_),hovertemplate:f.hovertemplate}),l(_,f,t),a.getComponentMethod(\"errorbars\",\"hoverInfo\")(_,f,t),[t]}}if(-1!==v.indexOf(\"fills\")&&f._polygons){var C,L,I,P,z,O,D,R,F,B=f._polygons,N=[],j=!1,U=1/0,V=-1/0,q=1/0,H=-1/0;for(C=0;C<B.length;C++)(I=B[C]).contains(m)&&(j=!j,N.push(I),q=Math.min(q,I.ymin),H=Math.max(H,I.ymax));if(j){var G=((q=Math.max(q,0))+(H=Math.min(H,p._length)))/2;for(C=0;C<N.length;C++)for(P=N[C].pts,L=1;L<P.length;L++)(R=P[L-1][1])>G!=(F=P[L][1])>=G&&(O=P[L-1][0],D=P[L][0],F-R&&(z=O+(D-O)*(G-R)/(F-R),U=Math.min(U,z),V=Math.max(V,z)));U=Math.max(U,0),V=Math.min(V,h._length);var Y=s.defaultLine;return s.opacity(f.fillcolor)?Y=f.fillcolor:s.opacity((f.line||{}).color)&&(Y=f.line.color),n.extendFlat(t,{distance:t.maxHoverDistance,x0:U,x1:V,y0:G,y1:G,color:Y,hovertemplate:!1}),delete t.index,f.text&&!Array.isArray(f.text)?t.text=String(f.text):t.text=f.name,[t]}}}},{\"../../components/color\":643,\"../../components/fx\":683,\"../../lib\":778,\"../../registry\":911,\"./get_trace_color\":1197}],1199:[function(t,e,r){\"use strict\";var n=t(\"./subtypes\");e.exports={hasLines:n.hasLines,hasMarkers:n.hasMarkers,hasText:n.hasText,isBubble:n.isBubble,attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"./cross_trace_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./cross_trace_calc\"),arraysToCalcdata:t(\"./arrays_to_calcdata\"),plot:t(\"./plot\"),colorbar:t(\"./marker_colorbar\"),formatLabels:t(\"./format_labels\"),style:t(\"./style\").style,styleOnSelect:t(\"./style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"./select\"),animatable:!0,moduleType:\"trace\",name:\"scatter\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"symbols\",\"errorBarsOK\",\"showLegend\",\"scatter-like\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":841,\"./arrays_to_calcdata\":1186,\"./attributes\":1187,\"./calc\":1188,\"./cross_trace_calc\":1192,\"./cross_trace_defaults\":1193,\"./defaults\":1194,\"./format_labels\":1196,\"./hover\":1198,\"./marker_colorbar\":1205,\"./plot\":1208,\"./select\":1209,\"./style\":1211,\"./subtypes\":1212}],1200:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").isArrayOrTypedArray,i=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/defaults\");e.exports=function(t,e,r,o,s,l){var c=(t.marker||{}).color;(s(\"line.color\",r),i(t,\"line\"))?a(t,e,o,s,{prefix:\"line.\",cLetter:\"c\"}):s(\"line.color\",!n(c)&&c||r);s(\"line.width\"),(l||{}).noDash||s(\"line.dash\")}},{\"../../components/colorscale/defaults\":653,\"../../components/colorscale/helpers\":654,\"../../lib\":778}],1201:[function(t,e,r){\"use strict\";var n=t(\"../../constants/numerical\"),i=n.BADNUM,a=n.LOG_CLIP,o=a+.5,s=a-.5,l=t(\"../../lib\"),c=l.segmentsIntersect,u=l.constrain,f=t(\"./constants\");e.exports=function(t,e){var r,n,a,h,p,d,g,m,v,y,x,b,_,w,T,k,M,A,S=e.xaxis,E=e.yaxis,C=\"log\"===S.type,L=\"log\"===E.type,I=S._length,P=E._length,z=e.connectGaps,O=e.baseTolerance,D=e.shape,R=\"linear\"===D,F=e.fill&&\"none\"!==e.fill,B=[],N=f.minTolerance,j=t.length,U=new Array(j),V=0;function q(r){var n=t[r];if(!n)return!1;var a=e.linearized?S.l2p(n.x):S.c2p(n.x),l=e.linearized?E.l2p(n.y):E.c2p(n.y);if(a===i){if(C&&(a=S.c2p(n.x,!0)),a===i)return!1;L&&l===i&&(a*=Math.abs(S._m*P*(S._m>0?o:s)/(E._m*I*(E._m>0?o:s)))),a*=1e3}if(l===i){if(L&&(l=E.c2p(n.y,!0)),l===i)return!1;l*=1e3}return[a,l]}function H(t,e,r,n){var i=r-t,a=n-e,o=.5-t,s=.5-e,l=i*i+a*a,c=i*o+a*s;if(c>0&&c<l){var u=o*a-s*i;if(u*u<l)return!0}}function G(t,e){var r=t[0]/I,n=t[1]/P,i=Math.max(0,-r,r-1,-n,n-1);return i&&void 0!==M&&H(r,n,M,A)&&(i=0),i&&e&&H(r,n,e[0]/I,e[1]/P)&&(i=0),(1+f.toleranceGrowth*i)*O}function Y(t,e){var r=t[0]-e[0],n=t[1]-e[1];return Math.sqrt(r*r+n*n)}var W,X,Z,J,K,Q,$,tt=f.maxScreensAway,et=-I*tt,rt=I*(1+tt),nt=-P*tt,it=P*(1+tt),at=[[et,nt,rt,nt],[rt,nt,rt,it],[rt,it,et,it],[et,it,et,nt]];function ot(t){if(t[0]<et||t[0]>rt||t[1]<nt||t[1]>it)return[u(t[0],et,rt),u(t[1],nt,it)]}function st(t,e){return t[0]===e[0]&&(t[0]===et||t[0]===rt)||(t[1]===e[1]&&(t[1]===nt||t[1]===it)||void 0)}function lt(t,e,r){return function(n,i){var a=ot(n),o=ot(i),s=[];if(a&&o&&st(a,o))return s;a&&s.push(a),o&&s.push(o);var c=2*l.constrain((n[t]+i[t])/2,e,r)-((a||n)[t]+(o||i)[t]);c&&((a&&o?c>0==a[t]>o[t]?a:o:a||o)[t]+=c);return s}}function ct(t){var e=t[0],r=t[1],n=e===U[V-1][0],i=r===U[V-1][1];if(!n||!i)if(V>1){var a=e===U[V-2][0],o=r===U[V-2][1];n&&(e===et||e===rt)&&a?o?V--:U[V-1]=t:i&&(r===nt||r===it)&&o?a?V--:U[V-1]=t:U[V++]=t}else U[V++]=t}function ut(t){U[V-1][0]!==t[0]&&U[V-1][1]!==t[1]&&ct([Z,J]),ct(t),K=null,Z=J=0}function ft(t){if(M=t[0]/I,A=t[1]/P,W=t[0]<et?et:t[0]>rt?rt:0,X=t[1]<nt?nt:t[1]>it?it:0,W||X){if(V)if(K){var e=$(K,t);e.length>1&&(ut(e[0]),U[V++]=e[1])}else Q=$(U[V-1],t)[0],U[V++]=Q;else U[V++]=[W||t[0],X||t[1]];var r=U[V-1];W&&X&&(r[0]!==W||r[1]!==X)?(K&&(Z!==W&&J!==X?ct(Z&&J?(n=K,a=(i=t)[0]-n[0],o=(i[1]-n[1])/a,(n[1]*i[0]-i[1]*n[0])/a>0?[o>0?et:rt,it]:[o>0?rt:et,nt]):[Z||W,J||X]):Z&&J&&ct([Z,J])),ct([W,X])):Z-W&&J-X&&ct([W||Z,X||J]),K=t,Z=W,J=X}else K&&ut($(K,t)[0]),U[V++]=t;var n,i,a,o}for(\"linear\"===D||\"spline\"===D?$=function(t,e){for(var r=[],n=0,i=0;i<4;i++){var a=at[i],o=c(t[0],t[1],e[0],e[1],a[0],a[1],a[2],a[3]);o&&(!n||Math.abs(o.x-r[0][0])>1||Math.abs(o.y-r[0][1])>1)&&(o=[o.x,o.y],n&&Y(o,t)<Y(r[0],t)?r.unshift(o):r.push(o),n++)}return r}:\"hv\"===D||\"vh\"===D?$=function(t,e){var r=[],n=ot(t),i=ot(e);return n&&i&&st(n,i)||(n&&r.push(n),i&&r.push(i)),r}:\"hvh\"===D?$=lt(0,et,rt):\"vhv\"===D&&($=lt(1,nt,it)),r=0;r<j;r++)if(n=q(r)){for(V=0,K=null,ft(n),r++;r<j;r++){if(!(h=q(r))){if(z)continue;break}if(R&&e.simplify){var ht=q(r+1);if(y=Y(h,n),F&&(0===V||V===j-1)||!(y<G(h,ht)*N)){for(m=[(h[0]-n[0])/y,(h[1]-n[1])/y],p=n,x=y,b=w=T=0,g=!1,a=h,r++;r<t.length;r++){if(d=ht,ht=q(r+1),!d){if(z)continue;break}if(k=(v=[d[0]-n[0],d[1]-n[1]])[0]*m[1]-v[1]*m[0],w=Math.min(w,k),(T=Math.max(T,k))-w>G(d,ht))break;a=d,(_=v[0]*m[0]+v[1]*m[1])>x?(x=_,h=d,g=!1):_<b&&(b=_,p=d,g=!0)}if(g?(ft(h),a!==p&&ft(p)):(p!==n&&ft(p),a!==h&&ft(h)),ft(a),r>=t.length||!d)break;ft(d),n=d}}else ft(h)}K&&ct([Z||K[0],J||K[1]]),B.push(U.slice(0,V))}return B}},{\"../../constants/numerical\":753,\"../../lib\":778,\"./constants\":1191}],1202:[function(t,e,r){\"use strict\";e.exports=function(t,e,r){\"spline\"===r(\"line.shape\")&&r(\"line.smoothing\")}},{}],1203:[function(t,e,r){\"use strict\";var n={tonextx:1,tonexty:1,tonext:1};e.exports=function(t,e,r){var i,a,o,s,l,c={},u=!1,f=-1,h=0,p=-1;for(a=0;a<r.length;a++)(o=(i=r[a][0].trace).stackgroup||\"\")?o in c?l=c[o]:(l=c[o]=h,h++):i.fill in n&&p>=0?l=p:(l=p=h,h++),l<f&&(u=!0),i._groupIndex=f=l;var d=r.slice();u&&d.sort((function(t,e){var r=t[0].trace,n=e[0].trace;return r._groupIndex-n._groupIndex||r.index-n.index}));var g={};for(a=0;a<d.length;a++)o=(i=d[a][0].trace).stackgroup||\"\",!0===i.visible?(i._nexttrace=null,i.fill in n&&(s=g[o],i._prevtrace=s||null,s&&(s._nexttrace=i)),i._ownfill=i.fill&&(\"tozero\"===i.fill.substr(0,6)||\"toself\"===i.fill||\"to\"===i.fill.substr(0,2)&&!i._prevtrace),g[o]=i):i._prevtrace=i._nexttrace=i._ownfill=null;return d}},{}],1204:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\");e.exports=function(t){var e=t.marker,r=e.sizeref||1,i=e.sizemin||0,a=\"area\"===e.sizemode?function(t){return Math.sqrt(t/r)}:function(t){return t/r};return function(t){var e=a(t/2);return n(e)&&e>0?Math.max(e,i):0}}},{\"fast-isnumeric\":241}],1205:[function(t,e,r){\"use strict\";e.exports={container:\"marker\",min:\"cmin\",max:\"cmax\"}},{}],1206:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"../../components/colorscale/helpers\").hasColorscale,a=t(\"../../components/colorscale/defaults\"),o=t(\"./subtypes\");e.exports=function(t,e,r,s,l,c){var u=o.isBubble(t),f=(t.line||{}).color;(c=c||{},f&&(r=f),l(\"marker.symbol\"),l(\"marker.opacity\",u?.7:1),l(\"marker.size\"),l(\"marker.color\",r),i(t,\"marker\")&&a(t,e,s,l,{prefix:\"marker.\",cLetter:\"c\"}),c.noSelect||(l(\"selected.marker.color\"),l(\"unselected.marker.color\"),l(\"selected.marker.size\"),l(\"unselected.marker.size\")),c.noLine||(l(\"marker.line.color\",f&&!Array.isArray(f)&&e.marker.color!==f?f:u?n.background:n.defaultLine),i(t,\"marker.line\")&&a(t,e,s,l,{prefix:\"marker.line.\",cLetter:\"c\"}),l(\"marker.line.width\",u?1:0)),u&&(l(\"marker.sizeref\"),l(\"marker.sizemin\"),l(\"marker.sizemode\")),c.gradient)&&(\"none\"!==l(\"marker.gradient.type\")&&l(\"marker.gradient.color\"))}},{\"../../components/color\":643,\"../../components/colorscale/defaults\":653,\"../../components/colorscale/helpers\":654,\"./subtypes\":1212}],1207:[function(t,e,r){\"use strict\";var n=t(\"../../lib\").dateTick0,i=t(\"../../constants/numerical\").ONEWEEK;function a(t,e){return n(e,t%i==0?1:0)}e.exports=function(t,e,r,n,i){if(i||(i={x:!0,y:!0}),i.x){var o=n(\"xperiod\");o&&(n(\"xperiod0\",a(o,e.xcalendar)),n(\"xperiodalignment\"))}if(i.y){var s=n(\"yperiod\");s&&(n(\"yperiod0\",a(s,e.ycalendar)),n(\"yperiodalignment\"))}}},{\"../../constants/numerical\":753,\"../../lib\":778}],1208:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../registry\"),a=t(\"../../lib\"),o=a.ensureSingle,s=a.identity,l=t(\"../../components/drawing\"),c=t(\"./subtypes\"),u=t(\"./line_points\"),f=t(\"./link_traces\"),h=t(\"../../lib/polygon\").tester;function p(t,e,r,f,p,d,g){var m;!function(t,e,r,i,o){var s=r.xaxis,l=r.yaxis,u=n.extent(a.simpleMap(s.range,s.r2c)),f=n.extent(a.simpleMap(l.range,l.r2c)),h=i[0].trace;if(!c.hasMarkers(h))return;var p=h.marker.maxdisplayed;if(0===p)return;var d=i.filter((function(t){return t.x>=u[0]&&t.x<=u[1]&&t.y>=f[0]&&t.y<=f[1]})),g=Math.ceil(d.length/p),m=0;o.forEach((function(t,r){var n=t[0].trace;c.hasMarkers(n)&&n.marker.maxdisplayed>0&&r<e&&m++}));var v=Math.round(m*g/3+Math.floor(m/3)*g/7.1);i.forEach((function(t){delete t.vis})),d.forEach((function(t,e){0===Math.round((e+v)%g)&&(t.vis=!0)}))}(0,e,r,f,p);var v=!!g&&g.duration>0;function y(t){return v?t.transition():t}var x=r.xaxis,b=r.yaxis,_=f[0].trace,w=_.line,T=n.select(d),k=o(T,\"g\",\"errorbars\"),M=o(T,\"g\",\"lines\"),A=o(T,\"g\",\"points\"),S=o(T,\"g\",\"text\");if(i.getComponentMethod(\"errorbars\",\"plot\")(t,k,r,g),!0===_.visible){var E,C;y(T).style(\"opacity\",_.opacity);var L=_.fill.charAt(_.fill.length-1);\"x\"!==L&&\"y\"!==L&&(L=\"\"),f[0][r.isRangePlot?\"nodeRangePlot3\":\"node3\"]=T;var I,P,z=\"\",O=[],D=_._prevtrace;D&&(z=D._prevRevpath||\"\",C=D._nextFill,O=D._polygons);var R,F,B,N,j,U,V,q=\"\",H=\"\",G=[],Y=a.noop;if(E=_._ownFill,c.hasLines(_)||\"none\"!==_.fill){for(C&&C.datum(f),-1!==[\"hv\",\"vh\",\"hvh\",\"vhv\"].indexOf(w.shape)?(R=l.steps(w.shape),F=l.steps(w.shape.split(\"\").reverse().join(\"\"))):R=F=\"spline\"===w.shape?function(t){var e=t[t.length-1];return t.length>1&&t[0][0]===e[0]&&t[0][1]===e[1]?l.smoothclosed(t.slice(1),w.smoothing):l.smoothopen(t,w.smoothing)}:function(t){return\"M\"+t.join(\"L\")},B=function(t){return F(t.reverse())},G=u(f,{xaxis:x,yaxis:b,connectGaps:_.connectgaps,baseTolerance:Math.max(w.width||1,3)/4,shape:w.shape,simplify:w.simplify,fill:_.fill}),V=_._polygons=new Array(G.length),m=0;m<G.length;m++)_._polygons[m]=h(G[m]);G.length&&(N=G[0][0],U=(j=G[G.length-1])[j.length-1]),Y=function(t){return function(e){if(I=R(e),P=B(e),q?L?(q+=\"L\"+I.substr(1),H=P+\"L\"+H.substr(1)):(q+=\"Z\"+I,H=P+\"Z\"+H):(q=I,H=P),c.hasLines(_)&&e.length>1){var r=n.select(this);if(r.datum(f),t)y(r.style(\"opacity\",0).attr(\"d\",I).call(l.lineGroupStyle)).style(\"opacity\",1);else{var i=y(r);i.attr(\"d\",I),l.singleLineStyle(f,i)}}}}}var W=M.selectAll(\".js-line\").data(G);y(W.exit()).style(\"opacity\",0).remove(),W.each(Y(!1)),W.enter().append(\"path\").classed(\"js-line\",!0).style(\"vector-effect\",\"non-scaling-stroke\").call(l.lineGroupStyle).each(Y(!0)),l.setClipUrl(W,r.layerClipId,t),G.length?(E?(E.datum(f),N&&U&&(L?(\"y\"===L?N[1]=U[1]=b.c2p(0,!0):\"x\"===L&&(N[0]=U[0]=x.c2p(0,!0)),y(E).attr(\"d\",\"M\"+U+\"L\"+N+\"L\"+q.substr(1)).call(l.singleFillStyle)):y(E).attr(\"d\",q+\"Z\").call(l.singleFillStyle))):C&&(\"tonext\"===_.fill.substr(0,6)&&q&&z?(\"tonext\"===_.fill?y(C).attr(\"d\",q+\"Z\"+z+\"Z\").call(l.singleFillStyle):y(C).attr(\"d\",q+\"L\"+z.substr(1)+\"Z\").call(l.singleFillStyle),_._polygons=_._polygons.concat(O)):(Z(C),_._polygons=null)),_._prevRevpath=H,_._prevPolygons=V):(E?Z(E):C&&Z(C),_._polygons=_._prevRevpath=_._prevPolygons=null),A.datum(f),S.datum(f),function(e,i,a){var o,u=a[0].trace,f=c.hasMarkers(u),h=c.hasText(u),p=tt(u),d=et,g=et;if(f||h){var m=s,_=u.stackgroup,w=_&&\"infer zero\"===t._fullLayout._scatterStackOpts[x._id+b._id][_].stackgaps;u.marker.maxdisplayed||u._needsCull?m=w?K:J:_&&!w&&(m=Q),f&&(d=m),h&&(g=m)}var T,k=(o=e.selectAll(\"path.point\").data(d,p)).enter().append(\"path\").classed(\"point\",!0);v&&k.call(l.pointStyle,u,t).call(l.translatePoints,x,b).style(\"opacity\",0).transition().style(\"opacity\",1),o.order(),f&&(T=l.makePointStyleFns(u)),o.each((function(e){var i=n.select(this),a=y(i);l.translatePoint(e,a,x,b)?(l.singlePointStyle(e,a,u,T,t),r.layerClipId&&l.hideOutsideRangePoint(e,a,x,b,u.xcalendar,u.ycalendar),u.customdata&&i.classed(\"plotly-customdata\",null!==e.data&&void 0!==e.data)):a.remove()})),v?o.exit().transition().style(\"opacity\",0).remove():o.exit().remove(),(o=i.selectAll(\"g\").data(g,p)).enter().append(\"g\").classed(\"textpoint\",!0).append(\"text\"),o.order(),o.each((function(t){var e=n.select(this),i=y(e.select(\"text\"));l.translatePoint(t,i,x,b)?r.layerClipId&&l.hideOutsideRangePoint(t,e,x,b,u.xcalendar,u.ycalendar):e.remove()})),o.selectAll(\"text\").call(l.textPointStyle,u,t).each((function(t){var e=x.c2p(t.x),r=b.c2p(t.y);n.select(this).selectAll(\"tspan.line\").each((function(){y(n.select(this)).attr({x:e,y:r})}))})),o.exit().remove()}(A,S,f);var X=!1===_.cliponaxis?null:r.layerClipId;l.setClipUrl(A,X,t),l.setClipUrl(S,X,t)}function Z(t){y(t).attr(\"d\",\"M0,0Z\")}function J(t){return t.filter((function(t){return!t.gap&&t.vis}))}function K(t){return t.filter((function(t){return t.vis}))}function Q(t){return t.filter((function(t){return!t.gap}))}function $(t){return t.id}function tt(t){if(t.ids)return $}function et(){return!1}}e.exports=function(t,e,r,i,a,c){var u,h,d=!a,g=!!a&&a.duration>0,m=f(t,e,r);((u=i.selectAll(\"g.trace\").data(m,(function(t){return t[0].trace.uid}))).enter().append(\"g\").attr(\"class\",(function(t){return\"trace scatter trace\"+t[0].trace.uid})).style(\"stroke-miterlimit\",2),u.order(),function(t,e,r){e.each((function(e){var i=o(n.select(this),\"g\",\"fills\");l.setClipUrl(i,r.layerClipId,t);var a=e[0].trace,c=[];a._ownfill&&c.push(\"_ownFill\"),a._nexttrace&&c.push(\"_nextFill\");var u=i.selectAll(\"g\").data(c,s);u.enter().append(\"g\"),u.exit().each((function(t){a[t]=null})).remove(),u.order().each((function(t){a[t]=o(n.select(this),\"path\",\"js-fill\")}))}))}(t,u,e),g)?(c&&(h=c()),n.transition().duration(a.duration).ease(a.easing).each(\"end\",(function(){h&&h()})).each(\"interrupt\",(function(){h&&h()})).each((function(){i.selectAll(\"g.trace\").each((function(r,n){p(t,n,e,r,m,this,a)}))}))):u.each((function(r,n){p(t,n,e,r,m,this,a)}));d&&u.exit().remove(),i.selectAll(\"path:not([d])\").remove()}},{\"../../components/drawing\":665,\"../../lib\":778,\"../../lib/polygon\":790,\"../../registry\":911,\"./line_points\":1201,\"./link_traces\":1203,\"./subtypes\":1212,d3:169}],1209:[function(t,e,r){\"use strict\";var n=t(\"./subtypes\");e.exports=function(t,e){var r,i,a,o,s=t.cd,l=t.xaxis,c=t.yaxis,u=[],f=s[0].trace;if(!n.hasMarkers(f)&&!n.hasText(f))return[];if(!1===e)for(r=0;r<s.length;r++)s[r].selected=0;else for(r=0;r<s.length;r++)i=s[r],a=l.c2p(i.x),o=c.c2p(i.y),null!==i.i&&e.contains([a,o],!1,r,t)?(u.push({pointNumber:i.i,x:l.c2d(i.x),y:c.c2d(i.y)}),i.selected=1):i.selected=0;return u}},{\"./subtypes\":1212}],1210:[function(t,e,r){\"use strict\";var n=[\"orientation\",\"groupnorm\",\"stackgaps\"];e.exports=function(t,e,r,i){var a=r._scatterStackOpts,o=i(\"stackgroup\");if(o){var s=e.xaxis+e.yaxis,l=a[s];l||(l=a[s]={});var c=l[o],u=!1;c?c.traces.push(e):(c=l[o]={traceIndices:[],traces:[e]},u=!0);for(var f={orientation:e.x&&!e.y?\"h\":\"v\"},h=0;h<n.length;h++){var p=n[h],d=p+\"Found\";if(!c[d]){var g=void 0!==t[p],m=\"orientation\"===p;if((g||u)&&(c[p]=i(p,f[p]),m&&(c.fillDflt=\"h\"===c[p]?\"tonextx\":\"tonexty\"),g&&(c[d]=!0,!u&&(delete c.traces[0][p],m))))for(var v=0;v<c.traces.length-1;v++){var y=c.traces[v];y._input.fill!==y.fill&&(y.fill=c.fillDflt)}}}return c}}},{}],1211:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/drawing\"),a=t(\"../../registry\");function o(t,e,r){i.pointStyle(t.selectAll(\"path.point\"),e,r)}function s(t,e,r){i.textPointStyle(t.selectAll(\"text\"),e,r)}e.exports={style:function(t){var e=n.select(t).selectAll(\"g.trace.scatter\");e.style(\"opacity\",(function(t){return t[0].trace.opacity})),e.selectAll(\"g.points\").each((function(e){o(n.select(this),e.trace||e[0].trace,t)})),e.selectAll(\"g.text\").each((function(e){s(n.select(this),e.trace||e[0].trace,t)})),e.selectAll(\"g.trace path.js-line\").call(i.lineGroupStyle),e.selectAll(\"g.trace path.js-fill\").call(i.fillGroupStyle),a.getComponentMethod(\"errorbars\",\"style\")(e)},stylePoints:o,styleText:s,styleOnSelect:function(t,e,r){var n=e[0].trace;n.selectedpoints?(i.selectedPointStyle(r.selectAll(\"path.point\"),n),i.selectedTextStyle(r.selectAll(\"text\"),n)):(o(r,n,t),s(r,n,t))}}},{\"../../components/drawing\":665,\"../../registry\":911,d3:169}],1212:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports={hasLines:function(t){return t.visible&&t.mode&&-1!==t.mode.indexOf(\"lines\")},hasMarkers:function(t){return t.visible&&(t.mode&&-1!==t.mode.indexOf(\"markers\")||\"splom\"===t.type)},hasText:function(t){return t.visible&&t.mode&&-1!==t.mode.indexOf(\"text\")},isBubble:function(t){return n.isPlainObject(t.marker)&&n.isArrayOrTypedArray(t.marker.size)}}},{\"../../lib\":778}],1213:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e,r,i,a){a=a||{},i(\"textposition\"),n.coerceFont(i,\"textfont\",r.font),a.noSelect||(i(\"selected.textfont.color\"),i(\"unselected.textfont.color\"))}},{\"../../lib\":778}],1214:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../registry\");e.exports=function(t,e,r,a){var o,s=a(\"x\"),l=a(\"y\");if(i.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\"],r),s){var c=n.minRowLength(s);l?o=Math.min(c,n.minRowLength(l)):(o=c,a(\"y0\"),a(\"dy\"))}else{if(!l)return 0;o=n.minRowLength(l),a(\"x0\"),a(\"dx\")}return e._length=o,o}},{\"../../lib\":778,\"../../registry\":911}],1215:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),i=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../plots/template_attributes\").texttemplateAttrs,s=t(\"../../plots/attributes\"),l=t(\"../../constants/gl3d_dashes\"),c=t(\"../../constants/gl3d_markers\"),u=t(\"../../lib/extend\").extendFlat,f=t(\"../../plot_api/edit_types\").overrideAll,h=n.line,p=n.marker,d=p.line,g=u({width:h.width,dash:{valType:\"enumerated\",values:Object.keys(l),dflt:\"solid\"}},i(\"line\"));var m=e.exports=f({x:n.x,y:n.y,z:{valType:\"data_array\"},text:u({},n.text,{}),texttemplate:o({},{}),hovertext:u({},n.hovertext,{}),hovertemplate:a(),mode:u({},n.mode,{dflt:\"lines+markers\"}),surfaceaxis:{valType:\"enumerated\",values:[-1,0,1,2],dflt:-1},surfacecolor:{valType:\"color\"},projection:{x:{show:{valType:\"boolean\",dflt:!1},opacity:{valType:\"number\",min:0,max:1,dflt:1},scale:{valType:\"number\",min:0,max:10,dflt:2/3}},y:{show:{valType:\"boolean\",dflt:!1},opacity:{valType:\"number\",min:0,max:1,dflt:1},scale:{valType:\"number\",min:0,max:10,dflt:2/3}},z:{show:{valType:\"boolean\",dflt:!1},opacity:{valType:\"number\",min:0,max:1,dflt:1},scale:{valType:\"number\",min:0,max:10,dflt:2/3}}},connectgaps:n.connectgaps,line:g,marker:u({symbol:{valType:\"enumerated\",values:Object.keys(c),dflt:\"circle\",arrayOk:!0},size:u({},p.size,{dflt:8}),sizeref:p.sizeref,sizemin:p.sizemin,sizemode:p.sizemode,opacity:u({},p.opacity,{arrayOk:!1}),colorbar:p.colorbar,line:u({width:u({},d.width,{arrayOk:!1})},i(\"marker.line\"))},i(\"marker\")),textposition:u({},n.textposition,{dflt:\"top center\"}),textfont:{color:n.textfont.color,size:n.textfont.size,family:u({},n.textfont.family,{arrayOk:!1})},hoverinfo:u({},s.hoverinfo)},\"calc\",\"nested\");m.x.editType=m.y.editType=m.z.editType=\"calc+clearAxisTypes\"},{\"../../components/colorscale/attributes\":650,\"../../constants/gl3d_dashes\":750,\"../../constants/gl3d_markers\":751,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../scatter/attributes\":1187}],1216:[function(t,e,r){\"use strict\";var n=t(\"../scatter/arrays_to_calcdata\"),i=t(\"../scatter/colorscale_calc\");e.exports=function(t,e){var r=[{x:!1,y:!1,trace:e,t:{}}];return n(r,e),i(t,e),r}},{\"../scatter/arrays_to_calcdata\":1186,\"../scatter/colorscale_calc\":1190}],1217:[function(t,e,r){\"use strict\";var n=t(\"../../registry\");function i(t,e,r,i){if(!e||!e.visible)return null;for(var a=n.getComponentMethod(\"errorbars\",\"makeComputeError\")(e),o=new Array(t.length),s=0;s<t.length;s++){var l=a(+t[s],s);if(\"log\"===i.type){var c=i.c2l(t[s]),u=t[s]-l[0],f=t[s]+l[1];if(o[s]=[(i.c2l(u,!0)-c)*r,(i.c2l(f,!0)-c)*r],u>0){var h=i.c2l(u);i._lowerLogErrorBound||(i._lowerLogErrorBound=h),i._lowerErrorBound=Math.min(i._lowerLogErrorBound,h)}}else o[s]=[-l[0]*r,l[1]*r]}return o}e.exports=function(t,e,r){var n=[i(t.x,t.error_x,e[0],r.xaxis),i(t.y,t.error_y,e[1],r.yaxis),i(t.z,t.error_z,e[2],r.zaxis)],a=function(t){for(var e=0;e<t.length;e++)if(t[e])return t[e].length;return 0}(n);if(0===a)return null;for(var o=new Array(a),s=0;s<a;s++){for(var l=[[0,0,0],[0,0,0]],c=0;c<3;c++)if(n[c])for(var u=0;u<2;u++)l[u][c]=n[c][s][u];o[s]=l}return o}},{\"../../registry\":911}],1218:[function(t,e,r){\"use strict\";var n=t(\"gl-line3d\"),i=t(\"gl-scatter3d\"),a=t(\"gl-error3d\"),o=t(\"gl-mesh3d\"),s=t(\"delaunay-triangulate\"),l=t(\"../../lib\"),c=t(\"../../lib/str2rgbarray\"),u=t(\"../../lib/gl_format_color\").formatColor,f=t(\"../scatter/make_bubble_size_func\"),h=t(\"../../constants/gl3d_dashes\"),p=t(\"../../constants/gl3d_markers\"),d=t(\"../../plots/cartesian/axes\"),g=t(\"../../components/fx/helpers\").appendArrayPointValue,m=t(\"./calc_errors\");function v(t,e){this.scene=t,this.uid=e,this.linePlot=null,this.scatterPlot=null,this.errorBars=null,this.textMarkers=null,this.delaunayMesh=null,this.color=null,this.mode=\"\",this.dataPoints=[],this.axesBounds=[[-1/0,-1/0,-1/0],[1/0,1/0,1/0]],this.textLabels=null,this.data=null}var y=v.prototype;function x(t){return null==t?0:t.indexOf(\"left\")>-1?-1:t.indexOf(\"right\")>-1?1:0}function b(t){return null==t?0:t.indexOf(\"top\")>-1?-1:t.indexOf(\"bottom\")>-1?1:0}function _(t,e){return e(4*t)}function w(t){return p[t]}function T(t,e,r,n,i){var a=null;if(l.isArrayOrTypedArray(t)){a=[];for(var o=0;o<e;o++)void 0===t[o]?a[o]=n:a[o]=r(t[o],i)}else a=r(t,l.identity);return a}function k(t,e){var r,n,i,a,o,s,h=[],p=t.fullSceneLayout,v=t.dataScale,y=p.xaxis,k=p.yaxis,M=p.zaxis,A=e.marker,S=e.line,E=e.x||[],C=e.y||[],L=e.z||[],I=E.length,P=e.xcalendar,z=e.ycalendar,O=e.zcalendar;for(o=0;o<I;o++)r=y.d2l(E[o],0,P)*v[0],n=k.d2l(C[o],0,z)*v[1],i=M.d2l(L[o],0,O)*v[2],h[o]=[r,n,i];if(Array.isArray(e.text))s=e.text;else if(void 0!==e.text)for(s=new Array(I),o=0;o<I;o++)s[o]=e.text;function D(t,e){var r=p[t];return d.tickText(r,r.d2l(e),!0).text}var R=e.texttemplate;if(R){var F=t.fullLayout._d3locale,B=Array.isArray(R),N=B?Math.min(R.length,I):I,j=B?function(t){return R[t]}:function(){return R};for(s=new Array(N),o=0;o<N;o++){var U={x:E[o],y:C[o],z:L[o]},V={xLabel:D(\"xaxis\",E[o]),yLabel:D(\"yaxis\",C[o]),zLabel:D(\"zaxis\",L[o])},q={};g(q,e,o);var H=e._meta||{};s[o]=l.texttemplateString(j(o),V,F,q,U,H)}}if(a={position:h,mode:e.mode,text:s},\"line\"in e&&(a.lineColor=u(S,1,I),a.lineWidth=S.width,a.lineDashes=S.dash),\"marker\"in e){var G=f(e);a.scatterColor=u(A,1,I),a.scatterSize=T(A.size,I,_,20,G),a.scatterMarker=T(A.symbol,I,w,\"\\u25cf\"),a.scatterLineWidth=A.line.width,a.scatterLineColor=u(A.line,1,I),a.scatterAngle=0}\"textposition\"in e&&(a.textOffset=function(t){var e=[0,0];if(Array.isArray(t))for(var r=0;r<t.length;r++)e[r]=[0,0],t[r]&&(e[r][0]=x(t[r]),e[r][1]=b(t[r]));else e[0]=x(t),e[1]=b(t);return e}(e.textposition),a.textColor=u(e.textfont,1,I),a.textSize=T(e.textfont.size,I,l.identity,12),a.textFont=e.textfont.family,a.textAngle=0);var Y=[\"x\",\"y\",\"z\"];for(a.project=[!1,!1,!1],a.projectScale=[1,1,1],a.projectOpacity=[1,1,1],o=0;o<3;++o){var W=e.projection[Y[o]];(a.project[o]=W.show)&&(a.projectOpacity[o]=W.opacity,a.projectScale[o]=W.scale)}a.errorBounds=m(e,v,p);var X=function(t){for(var e=[0,0,0],r=[[0,0,0],[0,0,0],[0,0,0]],n=[1,1,1],i=0;i<3;i++){var a=t[i];a&&!1!==a.copy_zstyle&&!1!==t[2].visible&&(a=t[2]),a&&a.visible&&(e[i]=a.width/2,r[i]=c(a.color),n[i]=a.thickness)}return{capSize:e,color:r,lineWidth:n}}([e.error_x,e.error_y,e.error_z]);return a.errorColor=X.color,a.errorLineWidth=X.lineWidth,a.errorCapSize=X.capSize,a.delaunayAxis=e.surfaceaxis,a.delaunayColor=c(e.surfacecolor),a}function M(t){if(l.isArrayOrTypedArray(t)){var e=t[0];return l.isArrayOrTypedArray(e)&&(t=e),\"rgb(\"+t.slice(0,3).map((function(t){return Math.round(255*t)}))+\")\"}return null}function A(t){return l.isArrayOrTypedArray(t)?4===t.length&&\"number\"==typeof t[0]?M(t):t.map(M):null}y.handlePick=function(t){if(t.object&&(t.object===this.linePlot||t.object===this.delaunayMesh||t.object===this.textMarkers||t.object===this.scatterPlot)){var e=t.index=t.data.index;return t.object.highlight&&t.object.highlight(null),this.scatterPlot&&(t.object=this.scatterPlot,this.scatterPlot.highlight(t.data)),t.textLabel=\"\",this.textLabels&&(Array.isArray(this.textLabels)?(this.textLabels[e]||0===this.textLabels[e])&&(t.textLabel=this.textLabels[e]):t.textLabel=this.textLabels),t.traceCoordinate=[this.data.x[e],this.data.y[e],this.data.z[e]],!0}},y.update=function(t){var e,r,l,c,u=this.scene.glplot.gl,f=h.solid;this.data=t;var p=k(this.scene,t);\"mode\"in p&&(this.mode=p.mode),\"lineDashes\"in p&&p.lineDashes in h&&(f=h[p.lineDashes]),this.color=A(p.scatterColor)||A(p.lineColor),this.dataPoints=p.position,e={gl:this.scene.glplot.gl,position:p.position,color:p.lineColor,lineWidth:p.lineWidth||1,dashes:f[0],dashScale:f[1],opacity:t.opacity,connectGaps:t.connectgaps},-1!==this.mode.indexOf(\"lines\")?this.linePlot?this.linePlot.update(e):(this.linePlot=n(e),this.linePlot._trace=this,this.scene.glplot.add(this.linePlot)):this.linePlot&&(this.scene.glplot.remove(this.linePlot),this.linePlot.dispose(),this.linePlot=null);var d=t.opacity;if(t.marker&&t.marker.opacity&&(d*=t.marker.opacity),r={gl:this.scene.glplot.gl,position:p.position,color:p.scatterColor,size:p.scatterSize,glyph:p.scatterMarker,opacity:d,orthographic:!0,lineWidth:p.scatterLineWidth,lineColor:p.scatterLineColor,project:p.project,projectScale:p.projectScale,projectOpacity:p.projectOpacity},-1!==this.mode.indexOf(\"markers\")?this.scatterPlot?this.scatterPlot.update(r):(this.scatterPlot=i(r),this.scatterPlot._trace=this,this.scatterPlot.highlightScale=1,this.scene.glplot.add(this.scatterPlot)):this.scatterPlot&&(this.scene.glplot.remove(this.scatterPlot),this.scatterPlot.dispose(),this.scatterPlot=null),c={gl:this.scene.glplot.gl,position:p.position,glyph:p.text,color:p.textColor,size:p.textSize,angle:p.textAngle,alignment:p.textOffset,font:p.textFont,orthographic:!0,lineWidth:0,project:!1,opacity:t.opacity},this.textLabels=t.hovertext||t.text,-1!==this.mode.indexOf(\"text\")?this.textMarkers?this.textMarkers.update(c):(this.textMarkers=i(c),this.textMarkers._trace=this,this.textMarkers.highlightScale=1,this.scene.glplot.add(this.textMarkers)):this.textMarkers&&(this.scene.glplot.remove(this.textMarkers),this.textMarkers.dispose(),this.textMarkers=null),l={gl:this.scene.glplot.gl,position:p.position,color:p.errorColor,error:p.errorBounds,lineWidth:p.errorLineWidth,capSize:p.errorCapSize,opacity:t.opacity},this.errorBars?p.errorBounds?this.errorBars.update(l):(this.scene.glplot.remove(this.errorBars),this.errorBars.dispose(),this.errorBars=null):p.errorBounds&&(this.errorBars=a(l),this.errorBars._trace=this,this.scene.glplot.add(this.errorBars)),p.delaunayAxis>=0){var g=function(t,e,r){var n,i=(r+1)%3,a=(r+2)%3,o=[],l=[];for(n=0;n<t.length;++n){var c=t[n];!isNaN(c[i])&&isFinite(c[i])&&!isNaN(c[a])&&isFinite(c[a])&&(o.push([c[i],c[a]]),l.push(n))}var u=s(o);for(n=0;n<u.length;++n)for(var f=u[n],h=0;h<f.length;++h)f[h]=l[f[h]];return{positions:t,cells:u,meshColor:e}}(p.position,p.delaunayColor,p.delaunayAxis);g.opacity=t.opacity,this.delaunayMesh?this.delaunayMesh.update(g):(g.gl=u,this.delaunayMesh=o(g),this.delaunayMesh._trace=this,this.scene.glplot.add(this.delaunayMesh))}else this.delaunayMesh&&(this.scene.glplot.remove(this.delaunayMesh),this.delaunayMesh.dispose(),this.delaunayMesh=null)},y.dispose=function(){this.linePlot&&(this.scene.glplot.remove(this.linePlot),this.linePlot.dispose()),this.scatterPlot&&(this.scene.glplot.remove(this.scatterPlot),this.scatterPlot.dispose()),this.errorBars&&(this.scene.glplot.remove(this.errorBars),this.errorBars.dispose()),this.textMarkers&&(this.scene.glplot.remove(this.textMarkers),this.textMarkers.dispose()),this.delaunayMesh&&(this.scene.glplot.remove(this.delaunayMesh),this.delaunayMesh.dispose())},e.exports=function(t,e){var r=new v(t,e.uid);return r.update(e),r}},{\"../../components/fx/helpers\":679,\"../../constants/gl3d_dashes\":750,\"../../constants/gl3d_markers\":751,\"../../lib\":778,\"../../lib/gl_format_color\":774,\"../../lib/str2rgbarray\":802,\"../../plots/cartesian/axes\":828,\"../scatter/make_bubble_size_func\":1204,\"./calc_errors\":1217,\"delaunay-triangulate\":171,\"gl-error3d\":266,\"gl-line3d\":275,\"gl-mesh3d\":309,\"gl-scatter3d\":330}],1219:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"../scatter/subtypes\"),o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/text_defaults\"),c=t(\"./attributes\");e.exports=function(t,e,r,u){function f(r,n){return i.coerce(t,e,c,r,n)}if(function(t,e,r,i){var a=0,o=r(\"x\"),s=r(\"y\"),l=r(\"z\");n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],i),o&&s&&l&&(a=Math.min(o.length,s.length,l.length),e._length=e._xlength=e._ylength=e._zlength=a);return a}(t,e,f,u)){f(\"text\"),f(\"hovertext\"),f(\"hovertemplate\"),f(\"mode\"),a.hasLines(e)&&(f(\"connectgaps\"),s(t,e,r,u,f)),a.hasMarkers(e)&&o(t,e,r,u,f,{noSelect:!0}),a.hasText(e)&&(f(\"texttemplate\"),l(t,e,u,f,{noSelect:!0}));var h=(e.line||{}).color,p=(e.marker||{}).color;f(\"surfaceaxis\")>=0&&f(\"surfacecolor\",h||p);for(var d=[\"x\",\"y\",\"z\"],g=0;g<3;++g){var m=\"projection.\"+d[g];f(m+\".show\")&&(f(m+\".opacity\"),f(m+\".scale\"))}var v=n.getComponentMethod(\"errorbars\",\"supplyDefaults\");v(t,e,h||p||r,{axis:\"z\"}),v(t,e,h||p||r,{axis:\"y\",inherit:\"z\"}),v(t,e,h||p||r,{axis:\"x\",inherit:\"z\"})}else e.visible=!1}},{\"../../lib\":778,\"../../registry\":911,\"../scatter/line_defaults\":1200,\"../scatter/marker_defaults\":1206,\"../scatter/subtypes\":1212,\"../scatter/text_defaults\":1213,\"./attributes\":1215}],1220:[function(t,e,r){\"use strict\";e.exports={plot:t(\"./convert\"),attributes:t(\"./attributes\"),markerSymbols:t(\"../../constants/gl3d_markers\"),supplyDefaults:t(\"./defaults\"),colorbar:[{container:\"marker\",min:\"cmin\",max:\"cmax\"},{container:\"line\",min:\"cmin\",max:\"cmax\"}],calc:t(\"./calc\"),moduleType:\"trace\",name:\"scatter3d\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../constants/gl3d_markers\":751,\"../../plots/gl3d\":870,\"./attributes\":1215,\"./calc\":1216,\"./convert\":1218,\"./defaults\":1219}],1221:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),i=t(\"../../plots/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../plots/template_attributes\").texttemplateAttrs,s=t(\"../../components/colorscale/attributes\"),l=t(\"../../lib/extend\").extendFlat,c=n.marker,u=n.line,f=c.line;e.exports={carpet:{valType:\"string\",editType:\"calc\"},a:{valType:\"data_array\",editType:\"calc\"},b:{valType:\"data_array\",editType:\"calc\"},mode:l({},n.mode,{dflt:\"markers\"}),text:l({},n.text,{}),texttemplate:o({editType:\"plot\"},{keys:[\"a\",\"b\",\"text\"]}),hovertext:l({},n.hovertext,{}),line:{color:u.color,width:u.width,dash:u.dash,shape:l({},u.shape,{values:[\"linear\",\"spline\"]}),smoothing:u.smoothing,editType:\"calc\"},connectgaps:n.connectgaps,fill:l({},n.fill,{values:[\"none\",\"toself\",\"tonext\"],dflt:\"none\"}),fillcolor:n.fillcolor,marker:l({symbol:c.symbol,opacity:c.opacity,maxdisplayed:c.maxdisplayed,size:c.size,sizeref:c.sizeref,sizemin:c.sizemin,sizemode:c.sizemode,line:l({width:f.width,editType:\"calc\"},s(\"marker.line\")),gradient:c.gradient,editType:\"calc\"},s(\"marker\")),textfont:n.textfont,textposition:n.textposition,selected:n.selected,unselected:n.unselected,hoverinfo:l({},i.hoverinfo,{flags:[\"a\",\"b\",\"text\",\"name\"]}),hoveron:n.hoveron,hovertemplate:a()}},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../scatter/attributes\":1187}],1222:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../scatter/colorscale_calc\"),a=t(\"../scatter/arrays_to_calcdata\"),o=t(\"../scatter/calc_selection\"),s=t(\"../scatter/calc\").calcMarkerSize,l=t(\"../carpet/lookup_carpetid\");e.exports=function(t,e){var r=e._carpetTrace=l(t,e);if(r&&r.visible&&\"legendonly\"!==r.visible){var c;e.xaxis=r.xaxis,e.yaxis=r.yaxis;var u,f,h=e._length,p=new Array(h),d=!1;for(c=0;c<h;c++)if(u=e.a[c],f=e.b[c],n(u)&&n(f)){var g=r.ab2xy(+u,+f,!0),m=r.isVisible(+u,+f);m||(d=!0),p[c]={x:g[0],y:g[1],a:u,b:f,vis:m}}else p[c]={x:!1,y:!1};return e._needsCull=d,p[0].carpet=r,p[0].trace=e,s(e,h),i(t,e),a(p,e),o(p,e),p}}},{\"../carpet/lookup_carpetid\":981,\"../scatter/arrays_to_calcdata\":1186,\"../scatter/calc\":1188,\"../scatter/calc_selection\":1189,\"../scatter/colorscale_calc\":1190,\"fast-isnumeric\":241}],1223:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../scatter/constants\"),a=t(\"../scatter/subtypes\"),o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/line_shape_defaults\"),c=t(\"../scatter/text_defaults\"),u=t(\"../scatter/fillcolor_defaults\"),f=t(\"./attributes\");e.exports=function(t,e,r,h){function p(r,i){return n.coerce(t,e,f,r,i)}p(\"carpet\"),e.xaxis=\"x\",e.yaxis=\"y\";var d=p(\"a\"),g=p(\"b\"),m=Math.min(d.length,g.length);if(m){e._length=m,p(\"text\"),p(\"texttemplate\"),p(\"hovertext\"),p(\"mode\",m<i.PTS_LINESONLY?\"lines+markers\":\"lines\"),a.hasLines(e)&&(s(t,e,r,h,p),l(t,e,p),p(\"connectgaps\")),a.hasMarkers(e)&&o(t,e,r,h,p,{gradient:!0}),a.hasText(e)&&c(t,e,h,p);var v=[];(a.hasMarkers(e)||a.hasText(e))&&(p(\"marker.maxdisplayed\"),v.push(\"points\")),p(\"fill\"),\"none\"!==e.fill&&(u(t,e,r,p),a.hasLines(e)||l(t,e,p)),\"tonext\"!==e.fill&&\"toself\"!==e.fill||v.push(\"fills\"),\"fills\"!==p(\"hoveron\",v.join(\"+\")||\"points\")&&p(\"hovertemplate\"),n.coerceSelectionMarkerOpacity(e,p)}else e.visible=!1}},{\"../../lib\":778,\"../scatter/constants\":1191,\"../scatter/fillcolor_defaults\":1195,\"../scatter/line_defaults\":1200,\"../scatter/line_shape_defaults\":1202,\"../scatter/marker_defaults\":1206,\"../scatter/subtypes\":1212,\"../scatter/text_defaults\":1213,\"./attributes\":1221}],1224:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i){var a=n[i];return t.a=a.a,t.b=a.b,t.y=a.y,t}},{}],1225:[function(t,e,r){\"use strict\";e.exports=function(t,e){var r={},n=e._carpet,i=n.ab2ij([t.a,t.b]),a=Math.floor(i[0]),o=i[0]-a,s=Math.floor(i[1]),l=i[1]-s,c=n.evalxy([],a,s,o,l);return r.yLabel=c[1].toFixed(3),r}},{}],1226:[function(t,e,r){\"use strict\";var n=t(\"../scatter/hover\"),i=t(\"../../lib\").fillText;e.exports=function(t,e,r,a){var o=n(t,e,r,a);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index){var l=1-s.y0/t.ya._length,c=t.xa._length,u=c*l/2,f=c-u;return s.x0=Math.max(Math.min(s.x0,f),u),s.x1=Math.max(Math.min(s.x1,f),u),o}var h=s.cd[s.index];s.a=h.a,s.b=h.b,s.xLabelVal=void 0,s.yLabelVal=void 0;var p=s.trace,d=p._carpet,g=p._module.formatLabels(h,p);s.yLabel=g.yLabel,delete s.text;var m=[];if(!p.hovertemplate){var v=(h.hi||p.hoverinfo).split(\"+\");-1!==v.indexOf(\"all\")&&(v=[\"a\",\"b\",\"text\"]),-1!==v.indexOf(\"a\")&&y(d.aaxis,h.a),-1!==v.indexOf(\"b\")&&y(d.baxis,h.b),m.push(\"y: \"+s.yLabel),-1!==v.indexOf(\"text\")&&i(h,p,m),s.extraText=m.join(\"<br>\")}return o}function y(t,e){var r;r=t.labelprefix&&t.labelprefix.length>0?t.labelprefix.replace(/ = $/,\"\"):t._hovertitle,m.push(r+\": \"+e.toFixed(3)+t.labelsuffix)}}},{\"../../lib\":778,\"../scatter/hover\":1198}],1227:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../scatter/select\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"scattercarpet\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"svg\",\"carpet\",\"symbols\",\"showLegend\",\"carpetDependent\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":841,\"../scatter/marker_colorbar\":1205,\"../scatter/select\":1209,\"../scatter/style\":1211,\"./attributes\":1221,\"./calc\":1222,\"./defaults\":1223,\"./event_data\":1224,\"./format_labels\":1225,\"./hover\":1226,\"./plot\":1228}],1228:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../../components/drawing\");e.exports=function(t,e,r,o){var s,l,c,u=r[0][0].carpet,f={xaxis:i.getFromId(t,u.xaxis||\"x\"),yaxis:i.getFromId(t,u.yaxis||\"y\"),plot:e.plot};for(n(t,f,r,o),s=0;s<r.length;s++)l=r[s][0].trace,c=o.selectAll(\"g.trace\"+l.uid+\" .js-line\"),a.setClipUrl(c,r[s][0].carpet._clipPathId,t)}},{\"../../components/drawing\":665,\"../../plots/cartesian/axes\":828,\"../scatter/plot\":1208}],1229:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/template_attributes\").texttemplateAttrs,a=t(\"../scatter/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../components/colorscale/attributes\"),l=t(\"../../components/drawing/attributes\").dash,c=t(\"../../lib/extend\").extendFlat,u=t(\"../../plot_api/edit_types\").overrideAll,f=a.marker,h=a.line,p=f.line;e.exports=u({lon:{valType:\"data_array\"},lat:{valType:\"data_array\"},locations:{valType:\"data_array\"},locationmode:{valType:\"enumerated\",values:[\"ISO-3\",\"USA-states\",\"country names\",\"geojson-id\"],dflt:\"ISO-3\"},geojson:{valType:\"any\",editType:\"calc\"},featureidkey:{valType:\"string\",editType:\"calc\",dflt:\"id\"},mode:c({},a.mode,{dflt:\"markers\"}),text:c({},a.text,{}),texttemplate:i({editType:\"plot\"},{keys:[\"lat\",\"lon\",\"location\",\"text\"]}),hovertext:c({},a.hovertext,{}),textfont:a.textfont,textposition:a.textposition,line:{color:h.color,width:h.width,dash:l},connectgaps:a.connectgaps,marker:c({symbol:f.symbol,opacity:f.opacity,size:f.size,sizeref:f.sizeref,sizemin:f.sizemin,sizemode:f.sizemode,colorbar:f.colorbar,line:c({width:p.width},s(\"marker.line\")),gradient:f.gradient},s(\"marker\")),fill:{valType:\"enumerated\",values:[\"none\",\"toself\"],dflt:\"none\"},fillcolor:a.fillcolor,selected:a.selected,unselected:a.unselected,hoverinfo:c({},o.hoverinfo,{flags:[\"lon\",\"lat\",\"location\",\"text\",\"name\"]}),hovertemplate:n()},\"calc\",\"nested\")},{\"../../components/colorscale/attributes\":650,\"../../components/drawing/attributes\":664,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../scatter/attributes\":1187}],1230:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../constants/numerical\").BADNUM,a=t(\"../scatter/colorscale_calc\"),o=t(\"../scatter/arrays_to_calcdata\"),s=t(\"../scatter/calc_selection\"),l=t(\"../../lib\")._;function c(t){return t&&\"string\"==typeof t}e.exports=function(t,e){var r,u=Array.isArray(e.locations),f=u?e.locations.length:e._length,h=new Array(f);r=e.geojson?function(t){return c(t)||n(t)}:c;for(var p=0;p<f;p++){var d=h[p]={};if(u){var g=e.locations[p];d.loc=r(g)?g:null}else{var m=e.lon[p],v=e.lat[p];n(m)&&n(v)?d.lonlat=[+m,+v]:d.lonlat=[i,i]}}return o(h,e),a(t,e),s(h,e),f&&(h[0].t={labels:{lat:l(t,\"lat:\")+\" \",lon:l(t,\"lon:\")+\" \"}}),h}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../scatter/arrays_to_calcdata\":1186,\"../scatter/calc_selection\":1189,\"../scatter/colorscale_calc\":1190,\"fast-isnumeric\":241}],1231:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../scatter/subtypes\"),a=t(\"../scatter/marker_defaults\"),o=t(\"../scatter/line_defaults\"),s=t(\"../scatter/text_defaults\"),l=t(\"../scatter/fillcolor_defaults\"),c=t(\"./attributes\");e.exports=function(t,e,r,u){function f(r,i){return n.coerce(t,e,c,r,i)}var h,p=f(\"locations\");if(p&&p.length){var d,g=f(\"geojson\");(\"string\"==typeof g&&\"\"!==g||n.isPlainObject(g))&&(d=\"geojson-id\"),\"geojson-id\"===f(\"locationmode\",d)&&f(\"featureidkey\"),h=p.length}else{var m=f(\"lon\")||[],v=f(\"lat\")||[];h=Math.min(m.length,v.length)}h?(e._length=h,f(\"text\"),f(\"hovertext\"),f(\"hovertemplate\"),f(\"mode\"),i.hasLines(e)&&(o(t,e,r,u,f),f(\"connectgaps\")),i.hasMarkers(e)&&a(t,e,r,u,f,{gradient:!0}),i.hasText(e)&&(f(\"texttemplate\"),s(t,e,u,f)),f(\"fill\"),\"none\"!==e.fill&&l(t,e,r,f),n.coerceSelectionMarkerOpacity(e,f)):e.visible=!1}},{\"../../lib\":778,\"../scatter/fillcolor_defaults\":1195,\"../scatter/line_defaults\":1200,\"../scatter/marker_defaults\":1206,\"../scatter/subtypes\":1212,\"../scatter/text_defaults\":1213,\"./attributes\":1229}],1232:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i){t.lon=e.lon,t.lat=e.lat,t.location=e.loc?e.loc:null;var a=n[i];return a.fIn&&a.fIn.properties&&(t.properties=a.fIn.properties),t}},{}],1233:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\");e.exports=function(t,e,r){var i={},a=r[e.geo]._subplot.mockAxis,o=t.lonlat;return i.lonLabel=n.tickText(a,a.c2l(o[0]),!0).text,i.latLabel=n.tickText(a,a.c2l(o[1]),!0).text,i}},{\"../../plots/cartesian/axes\":828}],1234:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),i=t(\"../../constants/numerical\").BADNUM,a=t(\"../scatter/get_trace_color\"),o=t(\"../../lib\").fillText,s=t(\"./attributes\");e.exports=function(t,e,r){var l=t.cd,c=l[0].trace,u=t.xa,f=t.ya,h=t.subplot,p=h.projection.isLonLatOverEdges,d=h.project;if(n.getClosest(l,(function(t){var n=t.lonlat;if(n[0]===i)return 1/0;if(p(n))return 1/0;var a=d(n),o=d([e,r]),s=Math.abs(a[0]-o[0]),l=Math.abs(a[1]-o[1]),c=Math.max(3,t.mrc||0);return Math.max(Math.sqrt(s*s+l*l)-c,1-3/c)}),t),!1!==t.index){var g=l[t.index],m=g.lonlat,v=[u.c2p(m),f.c2p(m)],y=g.mrc||1;t.x0=v[0]-y,t.x1=v[0]+y,t.y0=v[1]-y,t.y1=v[1]+y,t.loc=g.loc,t.lon=m[0],t.lat=m[1];var x={};x[c.geo]={_subplot:h};var b=c._module.formatLabels(g,c,x);return t.lonLabel=b.lonLabel,t.latLabel=b.latLabel,t.color=a(c,g),t.extraText=function(t,e,r,n){if(t.hovertemplate)return;var i=e.hi||t.hoverinfo,a=\"all\"===i?s.hoverinfo.flags:i.split(\"+\"),l=-1!==a.indexOf(\"location\")&&Array.isArray(t.locations),c=-1!==a.indexOf(\"lon\"),u=-1!==a.indexOf(\"lat\"),f=-1!==a.indexOf(\"text\"),h=[];function p(t){return t+\"\\xb0\"}l?h.push(e.loc):c&&u?h.push(\"(\"+p(r.lonLabel)+\", \"+p(r.latLabel)+\")\"):c?h.push(n.lon+p(r.lonLabel)):u&&h.push(n.lat+p(r.latLabel));f&&o(e,t,h);return h.join(\"<br>\")}(c,g,t,l[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}}},{\"../../components/fx\":683,\"../../constants/numerical\":753,\"../../lib\":778,\"../scatter/get_trace_color\":1197,\"./attributes\":1229}],1235:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"./calc\"),calcGeoJSON:t(\"./plot\").calcGeoJSON,plot:t(\"./plot\").plot,style:t(\"./style\"),styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),moduleType:\"trace\",name:\"scattergeo\",basePlotModule:t(\"../../plots/geo\"),categories:[\"geo\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/geo\":860,\"../scatter/marker_colorbar\":1205,\"../scatter/style\":1211,\"./attributes\":1229,\"./calc\":1230,\"./defaults\":1231,\"./event_data\":1232,\"./format_labels\":1233,\"./hover\":1234,\"./plot\":1236,\"./select\":1237,\"./style\":1238}],1236:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../../lib/topojson_utils\").getTopojsonFeatures,o=t(\"../../lib/geojson_utils\"),s=t(\"../../lib/geo_location_utils\"),l=t(\"../../plots/cartesian/autorange\").findExtremes,c=t(\"../../constants/numerical\").BADNUM,u=t(\"../scatter/calc\").calcMarkerSize,f=t(\"../scatter/subtypes\"),h=t(\"./style\");e.exports={calcGeoJSON:function(t,e){var r,n,i=t[0].trace,o=e[i.geo],f=o._subplot,h=i._length;if(Array.isArray(i.locations)){var p=i.locationmode,d=\"geojson-id\"===p?s.extractTraceFeature(t):a(i,f.topojson);for(r=0;r<h;r++){n=t[r];var g=\"geojson-id\"===p?n.fOut:s.locationToFeature(p,n.loc,d);n.lonlat=g?g.properties.ct:[c,c]}}var m,v,y={padded:!0};if(\"geojson\"===o.fitbounds&&\"geojson-id\"===i.locationmode){var x=s.computeBbox(s.getTraceGeojson(i));m=[x[0],x[2]],v=[x[1],x[3]]}else{for(m=new Array(h),v=new Array(h),r=0;r<h;r++)n=t[r],m[r]=n.lonlat[0],v[r]=n.lonlat[1];y.ppad=u(i,h)}i._extremes.lon=l(o.lonaxis._ax,m,y),i._extremes.lat=l(o.lataxis._ax,v,y)},plot:function(t,e,r){var a=e.layers.frontplot.select(\".scatterlayer\"),s=i.makeTraceGroups(a,r,\"trace scattergeo\");function l(t,e){t.lonlat[0]===c&&n.select(e).remove()}s.selectAll(\"*\").remove(),s.each((function(e){var r=n.select(this),a=e[0].trace;if(f.hasLines(a)||\"none\"!==a.fill){var s=o.calcTraceToLineCoords(e),c=\"none\"!==a.fill?o.makePolygon(s):o.makeLine(s);r.selectAll(\"path.js-line\").data([{geojson:c,trace:a}]).enter().append(\"path\").classed(\"js-line\",!0).style(\"stroke-miterlimit\",2)}f.hasMarkers(a)&&r.selectAll(\"path.point\").data(i.identity).enter().append(\"path\").classed(\"point\",!0).each((function(t){l(t,this)})),f.hasText(a)&&r.selectAll(\"g\").data(i.identity).enter().append(\"g\").append(\"text\").each((function(t){l(t,this)})),h(t,e)}))}}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../../lib/geo_location_utils\":771,\"../../lib/geojson_utils\":772,\"../../lib/topojson_utils\":806,\"../../plots/cartesian/autorange\":827,\"../scatter/calc\":1188,\"../scatter/subtypes\":1212,\"./style\":1238,d3:169}],1237:[function(t,e,r){\"use strict\";var n=t(\"../scatter/subtypes\"),i=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e){var r,a,o,s,l,c=t.cd,u=t.xaxis,f=t.yaxis,h=[],p=c[0].trace;if(!n.hasMarkers(p)&&!n.hasText(p))return[];if(!1===e)for(l=0;l<c.length;l++)c[l].selected=0;else for(l=0;l<c.length;l++)(a=(r=c[l]).lonlat)[0]!==i&&(o=u.c2p(a),s=f.c2p(a),e.contains([o,s],null,l,t)?(h.push({pointNumber:l,lon:a[0],lat:a[1]}),r.selected=1):r.selected=0);return h}},{\"../../constants/numerical\":753,\"../scatter/subtypes\":1212}],1238:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/drawing\"),a=t(\"../../components/color\"),o=t(\"../scatter/style\"),s=o.stylePoints,l=o.styleText;e.exports=function(t,e){e&&function(t,e){var r=e[0].trace,o=e[0].node3;o.style(\"opacity\",e[0].trace.opacity),s(o,r,t),l(o,r,t),o.selectAll(\"path.js-line\").style(\"fill\",\"none\").each((function(t){var e=n.select(this),r=t.trace,o=r.line||{};e.call(a.stroke,o.color).call(i.dashLine,o.dash||\"\",o.width||0),\"none\"!==r.fill&&e.call(a.fill,r.fillcolor)}))}(t,e)}},{\"../../components/color\":643,\"../../components/drawing\":665,\"../scatter/style\":1211,d3:169}],1239:[function(t,e,r){\"use strict\";var n=t(\"../../plots/attributes\"),i=t(\"../scatter/attributes\"),a=t(\"../../components/colorscale/attributes\"),o=t(\"../../lib/extend\").extendFlat,s=t(\"../../plot_api/edit_types\").overrideAll,l=t(\"./constants\").DASHES,c=i.line,u=i.marker,f=u.line,h=e.exports=s({x:i.x,x0:i.x0,dx:i.dx,y:i.y,y0:i.y0,dy:i.dy,xperiod:i.xperiod,yperiod:i.yperiod,xperiod0:i.xperiod0,yperiod0:i.yperiod0,xperiodalignment:i.xperiodalignment,yperiodalignment:i.yperiodalignment,text:i.text,hovertext:i.hovertext,textposition:i.textposition,textfont:i.textfont,mode:{valType:\"flaglist\",flags:[\"lines\",\"markers\",\"text\"],extras:[\"none\"]},line:{color:c.color,width:c.width,shape:{valType:\"enumerated\",values:[\"linear\",\"hv\",\"vh\",\"hvh\",\"vhv\"],dflt:\"linear\",editType:\"plot\"},dash:{valType:\"enumerated\",values:Object.keys(l),dflt:\"solid\"}},marker:o({},a(\"marker\"),{symbol:u.symbol,size:u.size,sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,opacity:u.opacity,colorbar:u.colorbar,line:o({},a(\"marker.line\"),{width:f.width})}),connectgaps:i.connectgaps,fill:o({},i.fill,{dflt:\"none\"}),fillcolor:i.fillcolor,selected:{marker:i.selected.marker,textfont:i.selected.textfont},unselected:{marker:i.unselected.marker,textfont:i.unselected.textfont},opacity:n.opacity},\"calc\",\"nested\");h.x.editType=h.y.editType=h.x0.editType=h.y0.editType=\"calc+clearAxisTypes\",h.hovertemplate=i.hovertemplate,h.texttemplate=i.texttemplate},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plots/attributes\":824,\"../scatter/attributes\":1187,\"./constants\":1241}],1240:[function(t,e,r){\"use strict\";var n=t(\"@plotly/point-cluster\"),i=t(\"../../lib\"),a=t(\"../../plots/cartesian/axis_ids\"),o=t(\"../../plots/cartesian/autorange\").findExtremes,s=t(\"../../plots/cartesian/align_period\"),l=t(\"../scatter/calc\"),c=l.calcMarkerSize,u=l.calcAxisExpansion,f=l.setFirstScatter,h=t(\"../scatter/colorscale_calc\"),p=t(\"./convert\"),d=t(\"./scene_update\"),g=t(\"../../constants/numerical\").BADNUM,m=t(\"./constants\").TOO_MANY_POINTS;function v(t,e,r){var n=t._extremes[e._id],i=o(e,r._bnds,{padded:!0});n.min=n.min.concat(i.min),n.max=n.max.concat(i.max)}e.exports=function(t,e){var r,o,l,y=t._fullLayout,x=a.getFromId(t,e.xaxis),b=a.getFromId(t,e.yaxis),_=y._plots[e.xaxis+e.yaxis],w=e._length,T=w>=m,k=2*w,M={},A=x.makeCalcdata(e,\"x\"),S=b.makeCalcdata(e,\"y\"),E=s(e,x,\"x\",A),C=s(e,b,\"y\",S);e._x=E,e._y=C,e.xperiodalignment&&(e._origX=A),e.yperiodalignment&&(e._origY=S);var L=new Array(k);for(r=0;r<w;r++)o=E[r],l=C[r],L[2*r]=o===g?NaN:o,L[2*r+1]=l===g?NaN:l;if(\"log\"===x.type)for(r=0;r<k;r+=2)L[r]=x.c2l(L[r]);if(\"log\"===b.type)for(r=1;r<k;r+=2)L[r]=b.c2l(L[r]);if(T&&\"log\"!==x.type&&\"log\"!==b.type)M.tree=n(L);else{var I=M.ids=new Array(w);for(r=0;r<w;r++)I[r]=r}h(t,e);var P,z=function(t,e,r,n,a,o){var s=p.style(t,r);s.marker&&(s.marker.positions=n);s.line&&n.length>1&&i.extendFlat(s.line,p.linePositions(t,r,n));if(s.errorX||s.errorY){var l=p.errorBarPositions(t,r,n,a,o);s.errorX&&i.extendFlat(s.errorX,l.x),s.errorY&&i.extendFlat(s.errorY,l.y)}s.text&&(i.extendFlat(s.text,{positions:n},p.textPosition(t,r,s.text,s.marker)),i.extendFlat(s.textSel,{positions:n},p.textPosition(t,r,s.text,s.markerSel)),i.extendFlat(s.textUnsel,{positions:n},p.textPosition(t,r,s.text,s.markerUnsel)));return s}(t,0,e,L,E,C),O=d(t,_);return f(y,e),T?z.marker&&(P=2*(z.marker.sizeAvg||Math.max(z.marker.size,3))):P=c(e,w),u(t,e,x,b,E,C,P),z.errorX&&v(e,x,z.errorX),z.errorY&&v(e,b,z.errorY),z.fill&&!O.fill2d&&(O.fill2d=!0),z.marker&&!O.scatter2d&&(O.scatter2d=!0),z.line&&!O.line2d&&(O.line2d=!0),!z.errorX&&!z.errorY||O.error2d||(O.error2d=!0),z.text&&!O.glText&&(O.glText=!0),z.marker&&(z.marker.snap=w),O.lineOptions.push(z.line),O.errorXOptions.push(z.errorX),O.errorYOptions.push(z.errorY),O.fillOptions.push(z.fill),O.markerOptions.push(z.marker),O.markerSelectedOptions.push(z.markerSel),O.markerUnselectedOptions.push(z.markerUnsel),O.textOptions.push(z.text),O.textSelectedOptions.push(z.textSel),O.textUnselectedOptions.push(z.textUnsel),O.selectBatch.push([]),O.unselectBatch.push([]),M._scene=O,M.index=O.count,M.x=E,M.y=C,M.positions=L,O.count++,[{x:!1,y:!1,t:M,trace:e}]}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../../plots/cartesian/align_period\":825,\"../../plots/cartesian/autorange\":827,\"../../plots/cartesian/axis_ids\":831,\"../scatter/calc\":1188,\"../scatter/colorscale_calc\":1190,\"./constants\":1241,\"./convert\":1242,\"./scene_update\":1250,\"@plotly/point-cluster\":57}],1241:[function(t,e,r){\"use strict\";e.exports={TOO_MANY_POINTS:1e5,SYMBOL_SDF_SIZE:200,SYMBOL_SIZE:20,SYMBOL_STROKE:1,DOT_RE:/-dot/,OPEN_RE:/-open/,DASHES:{solid:[1],dot:[1,1],dash:[4,1],longdash:[8,1],dashdot:[4,1,1,1],longdashdot:[8,1,1,1]}}},{}],1242:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"svg-path-sdf\"),a=t(\"color-normalize\"),o=t(\"../../registry\"),s=t(\"../../lib\"),l=t(\"../../components/drawing\"),c=t(\"../../plots/cartesian/axis_ids\"),u=t(\"../../lib/gl_format_color\").formatColor,f=t(\"../scatter/subtypes\"),h=t(\"../scatter/make_bubble_size_func\"),p=t(\"./helpers\"),d=t(\"./constants\"),g=t(\"../../constants/interactions\").DESELECTDIM,m={start:1,left:1,end:-1,right:-1,middle:0,center:0,bottom:1,top:-1},v=t(\"../../components/fx/helpers\").appendArrayPointValue;function y(t,e){var r,i=t._fullLayout,a=e._length,o=e.textfont,l=e.textposition,c=Array.isArray(l)?l:[l],u=o.color,f=o.size,h=o.family,p={},d=e.texttemplate;if(d){p.text=[];var g=i._d3locale,m=Array.isArray(d),y=m?Math.min(d.length,a):a,x=m?function(t){return d[t]}:function(){return d};for(r=0;r<y;r++){var b={i:r},_=e._module.formatLabels(b,e,i),w={};v(w,e,r);var T=e._meta||{};p.text.push(s.texttemplateString(x(r),_,g,w,b,T))}}else Array.isArray(e.text)&&e.text.length<a?p.text=e.text.slice():p.text=e.text;if(Array.isArray(p.text))for(r=p.text.length;r<a;r++)p.text[r]=\"\";for(p.opacity=e.opacity,p.font={},p.align=[],p.baseline=[],r=0;r<c.length;r++){var k=c[r].split(/\\s+/);switch(k[1]){case\"left\":p.align.push(\"right\");break;case\"right\":p.align.push(\"left\");break;default:p.align.push(k[1])}switch(k[0]){case\"top\":p.baseline.push(\"bottom\");break;case\"bottom\":p.baseline.push(\"top\");break;default:p.baseline.push(k[0])}}if(Array.isArray(u))for(p.color=new Array(a),r=0;r<a;r++)p.color[r]=u[r];else p.color=u;if(s.isArrayOrTypedArray(f)||Array.isArray(h))for(p.font=new Array(a),r=0;r<a;r++){var M=p.font[r]={};M.size=s.isTypedArray(f)?f[r]:Array.isArray(f)?n(f[r])?f[r]:0:f,M.family=Array.isArray(h)?h[r]:h}else p.font={size:f,family:h};return p}function x(t){var e,r,n=t._length,i=t.marker,o={},l=s.isArrayOrTypedArray(i.symbol),c=s.isArrayOrTypedArray(i.color),f=s.isArrayOrTypedArray(i.line.color),d=s.isArrayOrTypedArray(i.opacity),g=s.isArrayOrTypedArray(i.size),m=s.isArrayOrTypedArray(i.line.width);if(l||(r=p.isOpenSymbol(i.symbol)),l||c||f||d){o.colors=new Array(n),o.borderColors=new Array(n);var v=u(i,i.opacity,n),y=u(i.line,i.opacity,n);if(!Array.isArray(y[0])){var x=y;for(y=Array(n),e=0;e<n;e++)y[e]=x}if(!Array.isArray(v[0])){var b=v;for(v=Array(n),e=0;e<n;e++)v[e]=b}for(o.colors=v,o.borderColors=y,e=0;e<n;e++){if(l){var _=i.symbol[e];r=p.isOpenSymbol(_)}r&&(y[e]=v[e].slice(),v[e]=v[e].slice(),v[e][3]=0)}o.opacity=t.opacity}else r?(o.color=a(i.color,\"uint8\"),o.color[3]=0,o.borderColor=a(i.color,\"uint8\")):(o.color=a(i.color,\"uint8\"),o.borderColor=a(i.line.color,\"uint8\")),o.opacity=t.opacity*i.opacity;if(l)for(o.markers=new Array(n),e=0;e<n;e++)o.markers[e]=E(i.symbol[e]);else o.marker=E(i.symbol);var w,T=h(t);if(g||m){var k,M=o.sizes=new Array(n),A=o.borderSizes=new Array(n),S=0;if(g){for(e=0;e<n;e++)M[e]=T(i.size[e]),S+=M[e];k=S/n}else for(w=T(i.size),e=0;e<n;e++)M[e]=w;if(m)for(e=0;e<n;e++)A[e]=i.line.width[e]/2;else for(w=i.line.width/2,e=0;e<n;e++)A[e]=w;o.sizeAvg=k}else o.size=T(i&&i.size||10),o.borderSizes=T(i.line.width);return o}function b(t,e){var r=t.marker,n={};return e?(e.marker&&e.marker.symbol?n=x(s.extendFlat({},r,e.marker)):e.marker&&(e.marker.size&&(n.size=e.marker.size/2),e.marker.color&&(n.colors=e.marker.color),void 0!==e.marker.opacity&&(n.opacity=e.marker.opacity)),n):n}function _(t,e,r){var n={};if(!r)return n;if(r.textfont){var i={opacity:1,text:e.text,texttemplate:e.texttemplate,textposition:e.textposition,textfont:s.extendFlat({},e.textfont)};r.textfont&&s.extendFlat(i.textfont,r.textfont),n=y(t,i)}return n}function w(t,e){var r={capSize:2*e.width,lineWidth:e.thickness,color:e.color};return e.copy_ystyle&&(r=t.error_y),r}var T=d.SYMBOL_SDF_SIZE,k=d.SYMBOL_SIZE,M=d.SYMBOL_STROKE,A={},S=l.symbolFuncs[0](.05*k);function E(t){if(\"circle\"===t)return null;var e,r,n=l.symbolNumber(t),a=l.symbolFuncs[n%100],o=!!l.symbolNoDot[n%100],s=!!l.symbolNoFill[n%100],c=p.isDotSymbol(t);return A[t]?A[t]:(e=c&&!o?a(1.1*k)+S:a(k),r=i(e,{w:T,h:T,viewBox:[-k,-k,k,k],stroke:s?M:-M}),A[t]=r,r||null)}e.exports={style:function(t,e){var r,n={marker:void 0,markerSel:void 0,markerUnsel:void 0,line:void 0,fill:void 0,errorX:void 0,errorY:void 0,text:void 0,textSel:void 0,textUnsel:void 0};if(!0!==e.visible)return n;if(f.hasText(e)&&(n.text=y(t,e),n.textSel=_(t,e,e.selected),n.textUnsel=_(t,e,e.unselected)),f.hasMarkers(e)&&(n.marker=x(e),n.markerSel=b(e,e.selected),n.markerUnsel=b(e,e.unselected),!e.unselected&&s.isArrayOrTypedArray(e.marker.opacity))){var i=e.marker.opacity;for(n.markerUnsel.opacity=new Array(i.length),r=0;r<i.length;r++)n.markerUnsel.opacity[r]=g*i[r]}if(f.hasLines(e)){n.line={overlay:!0,thickness:e.line.width,color:e.line.color,opacity:e.opacity};var a=(d.DASHES[e.line.dash]||[1]).slice();for(r=0;r<a.length;++r)a[r]*=e.line.width;n.line.dashes=a}return e.error_x&&e.error_x.visible&&(n.errorX=w(e,e.error_x)),e.error_y&&e.error_y.visible&&(n.errorY=w(e,e.error_y)),e.fill&&\"none\"!==e.fill&&(n.fill={closed:!0,fill:e.fillcolor,thickness:0}),n},markerStyle:x,markerSelection:b,linePositions:function(t,e,r){var n,i,a=r.length,o=a/2;if(f.hasLines(e)&&o)if(\"hv\"===e.line.shape){for(n=[],i=0;i<o-1;i++)isNaN(r[2*i])||isNaN(r[2*i+1])?n.push(NaN,NaN,NaN,NaN):(n.push(r[2*i],r[2*i+1]),isNaN(r[2*i+2])||isNaN(r[2*i+3])?n.push(NaN,NaN):n.push(r[2*i+2],r[2*i+1]));n.push(r[a-2],r[a-1])}else if(\"hvh\"===e.line.shape){for(n=[],i=0;i<o-1;i++)if(isNaN(r[2*i])||isNaN(r[2*i+1])||isNaN(r[2*i+2])||isNaN(r[2*i+3]))isNaN(r[2*i])||isNaN(r[2*i+1])?n.push(NaN,NaN):n.push(r[2*i],r[2*i+1]),n.push(NaN,NaN);else{var s=(r[2*i]+r[2*i+2])/2;n.push(r[2*i],r[2*i+1],s,r[2*i+1],s,r[2*i+3])}n.push(r[a-2],r[a-1])}else if(\"vhv\"===e.line.shape){for(n=[],i=0;i<o-1;i++)if(isNaN(r[2*i])||isNaN(r[2*i+1])||isNaN(r[2*i+2])||isNaN(r[2*i+3]))isNaN(r[2*i])||isNaN(r[2*i+1])?n.push(NaN,NaN):n.push(r[2*i],r[2*i+1]),n.push(NaN,NaN);else{var l=(r[2*i+1]+r[2*i+3])/2;n.push(r[2*i],r[2*i+1],r[2*i],l,r[2*i+2],l)}n.push(r[a-2],r[a-1])}else if(\"vh\"===e.line.shape){for(n=[],i=0;i<o-1;i++)isNaN(r[2*i])||isNaN(r[2*i+1])?n.push(NaN,NaN,NaN,NaN):(n.push(r[2*i],r[2*i+1]),isNaN(r[2*i+2])||isNaN(r[2*i+3])?n.push(NaN,NaN):n.push(r[2*i],r[2*i+3]));n.push(r[a-2],r[a-1])}else n=r;var c=!1;for(i=0;i<n.length;i++)if(isNaN(n[i])){c=!0;break}var u=c||n.length>d.TOO_MANY_POINTS||f.hasMarkers(e)?\"rect\":\"round\";if(c&&e.connectgaps){var h=n[0],p=n[1];for(i=0;i<n.length;i+=2)isNaN(n[i])||isNaN(n[i+1])?(n[i]=h,n[i+1]=p):(h=n[i],p=n[i+1])}return{join:u,positions:n}},errorBarPositions:function(t,e,r,i,a){var s=o.getComponentMethod(\"errorbars\",\"makeComputeError\"),l=c.getFromId(t,e.xaxis),u=c.getFromId(t,e.yaxis),f=r.length/2,h={};function p(t,i){var a=i._id.charAt(0),o=e[\"error_\"+a];if(o&&o.visible&&(\"linear\"===i.type||\"log\"===i.type)){for(var l=s(o),c={x:0,y:1}[a],u={x:[0,1,2,3],y:[2,3,0,1]}[a],p=new Float64Array(4*f),d=1/0,g=-1/0,m=0,v=0;m<f;m++,v+=4){var y=t[m];if(n(y)){var x=r[2*m+c],b=l(y,m),_=b[0],w=b[1];if(n(_)&&n(w)){var T=y-_,k=y+w;p[v+u[0]]=x-i.c2l(T),p[v+u[1]]=i.c2l(k)-x,p[v+u[2]]=0,p[v+u[3]]=0,d=Math.min(d,y-_),g=Math.max(g,y+w)}}}h[a]={positions:r,errors:p,_bnds:[d,g]}}}return p(i,l),p(a,u),h},textPosition:function(t,e,r,n){var i,a=e._length,o={};if(f.hasMarkers(e)){var s=r.font,l=r.align,c=r.baseline;for(o.offset=new Array(a),i=0;i<a;i++){var u=n.sizes?n.sizes[i]:n.size,h=Array.isArray(s)?s[i].size:s.size,p=Array.isArray(l)?l.length>1?l[i]:l[0]:l,d=Array.isArray(c)?c.length>1?c[i]:c[0]:c,g=m[p],v=m[d],y=u?u/.8+1:0,x=-v*y-.5*v;o.offset[i]=[g*y/h,x/h]}}return o}}},{\"../../components/drawing\":665,\"../../components/fx/helpers\":679,\"../../constants/interactions\":752,\"../../lib\":778,\"../../lib/gl_format_color\":774,\"../../plots/cartesian/axis_ids\":831,\"../../registry\":911,\"../scatter/make_bubble_size_func\":1204,\"../scatter/subtypes\":1212,\"./constants\":1241,\"./helpers\":1246,\"color-normalize\":125,\"fast-isnumeric\":241,\"svg-path-sdf\":574}],1243:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../registry\"),a=t(\"./helpers\"),o=t(\"./attributes\"),s=t(\"../scatter/constants\"),l=t(\"../scatter/subtypes\"),c=t(\"../scatter/xy_defaults\"),u=t(\"../scatter/period_defaults\"),f=t(\"../scatter/marker_defaults\"),h=t(\"../scatter/line_defaults\"),p=t(\"../scatter/fillcolor_defaults\"),d=t(\"../scatter/text_defaults\");e.exports=function(t,e,r,g){function m(r,i){return n.coerce(t,e,o,r,i)}var v=!!t.marker&&a.isOpenSymbol(t.marker.symbol),y=l.isBubble(t),x=c(t,e,g,m);if(x){u(t,e,g,m);var b=x<s.PTS_LINESONLY?\"lines+markers\":\"lines\";m(\"text\"),m(\"hovertext\"),m(\"hovertemplate\"),m(\"mode\",b),l.hasLines(e)&&(m(\"connectgaps\"),h(t,e,r,g,m),m(\"line.shape\")),l.hasMarkers(e)&&(f(t,e,r,g,m),m(\"marker.line.width\",v||y?1:0)),l.hasText(e)&&(m(\"texttemplate\"),d(t,e,g,m));var _=(e.line||{}).color,w=(e.marker||{}).color;m(\"fill\"),\"none\"!==e.fill&&p(t,e,r,m);var T=i.getComponentMethod(\"errorbars\",\"supplyDefaults\");T(t,e,_||w||r,{axis:\"y\"}),T(t,e,_||w||r,{axis:\"x\",inherit:\"y\"}),n.coerceSelectionMarkerOpacity(e,m)}else e.visible=!1}},{\"../../lib\":778,\"../../registry\":911,\"../scatter/constants\":1191,\"../scatter/fillcolor_defaults\":1195,\"../scatter/line_defaults\":1200,\"../scatter/marker_defaults\":1206,\"../scatter/period_defaults\":1207,\"../scatter/subtypes\":1212,\"../scatter/text_defaults\":1213,\"../scatter/xy_defaults\":1214,\"./attributes\":1239,\"./helpers\":1246}],1244:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/color\"),a=t(\"../../constants/interactions\").DESELECTDIM;e.exports={styleTextSelection:function(t){var e,r,o=t[0],s=o.trace,l=o.t,c=l._scene,u=l.index,f=c.selectBatch[u],h=c.unselectBatch[u],p=c.textOptions[u],d=c.textSelectedOptions[u]||{},g=c.textUnselectedOptions[u]||{},m=n.extendFlat({},p);if(f.length||h.length){var v=d.color,y=g.color,x=p.color,b=Array.isArray(x);for(m.color=new Array(s._length),e=0;e<f.length;e++)r=f[e],m.color[r]=v||(b?x[r]:x);for(e=0;e<h.length;e++){r=h[e];var _=b?x[r]:x;m.color[r]=y||(v?_:i.addOpacity(_,a))}}c.glText[u].update(m)}}},{\"../../components/color\":643,\"../../constants/interactions\":752,\"../../lib\":778}],1245:[function(t,e,r){\"use strict\";var n=t(\"../scatter/format_labels\");e.exports=function(t,e,r){var i=t.i;return\"x\"in t||(t.x=e._x[i]),\"y\"in t||(t.y=e._y[i]),n(t,e,r)}},{\"../scatter/format_labels\":1196}],1246:[function(t,e,r){\"use strict\";var n=t(\"./constants\");r.isOpenSymbol=function(t){return\"string\"==typeof t?n.OPEN_RE.test(t):t%200>100},r.isDotSymbol=function(t){return\"string\"==typeof t?n.DOT_RE.test(t):t>200}},{\"./constants\":1241}],1247:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"../scatter/get_trace_color\");function o(t,e,r,o){var s=t.xa,l=t.ya,c=t.distance,u=t.dxy,f=t.index,h={pointNumber:f,x:e[f],y:r[f]};h.tx=Array.isArray(o.text)?o.text[f]:o.text,h.htx=Array.isArray(o.hovertext)?o.hovertext[f]:o.hovertext,h.data=Array.isArray(o.customdata)?o.customdata[f]:o.customdata,h.tp=Array.isArray(o.textposition)?o.textposition[f]:o.textposition;var p=o.textfont;p&&(h.ts=i.isArrayOrTypedArray(p.size)?p.size[f]:p.size,h.tc=Array.isArray(p.color)?p.color[f]:p.color,h.tf=Array.isArray(p.family)?p.family[f]:p.family);var d=o.marker;d&&(h.ms=i.isArrayOrTypedArray(d.size)?d.size[f]:d.size,h.mo=i.isArrayOrTypedArray(d.opacity)?d.opacity[f]:d.opacity,h.mx=i.isArrayOrTypedArray(d.symbol)?d.symbol[f]:d.symbol,h.mc=i.isArrayOrTypedArray(d.color)?d.color[f]:d.color);var g=d&&d.line;g&&(h.mlc=Array.isArray(g.color)?g.color[f]:g.color,h.mlw=i.isArrayOrTypedArray(g.width)?g.width[f]:g.width);var m=d&&d.gradient;m&&\"none\"!==m.type&&(h.mgt=Array.isArray(m.type)?m.type[f]:m.type,h.mgc=Array.isArray(m.color)?m.color[f]:m.color);var v=s.c2p(h.x,!0),y=l.c2p(h.y,!0),x=h.mrc||1,b=o.hoverlabel;b&&(h.hbg=Array.isArray(b.bgcolor)?b.bgcolor[f]:b.bgcolor,h.hbc=Array.isArray(b.bordercolor)?b.bordercolor[f]:b.bordercolor,h.hts=i.isArrayOrTypedArray(b.font.size)?b.font.size[f]:b.font.size,h.htc=Array.isArray(b.font.color)?b.font.color[f]:b.font.color,h.htf=Array.isArray(b.font.family)?b.font.family[f]:b.font.family,h.hnl=i.isArrayOrTypedArray(b.namelength)?b.namelength[f]:b.namelength);var _=o.hoverinfo;_&&(h.hi=Array.isArray(_)?_[f]:_);var w=o.hovertemplate;w&&(h.ht=Array.isArray(w)?w[f]:w);var T={};T[t.index]=h;var k=o._origX,M=o._origY,A=i.extendFlat({},t,{color:a(o,h),x0:v-x,x1:v+x,xLabelVal:k?k[f]:h.x,y0:y-x,y1:y+x,yLabelVal:M?M[f]:h.y,cd:T,distance:c,spikeDistance:u,hovertemplate:h.ht});return h.htx?A.text=h.htx:h.tx?A.text=h.tx:o.text&&(A.text=o.text),i.fillText(h,o,A),n.getComponentMethod(\"errorbars\",\"hoverInfo\")(h,o,A),A}e.exports={hoverPoints:function(t,e,r,n){var i,a,s,l,c,u,f,h,p,d=t.cd,g=d[0].t,m=d[0].trace,v=t.xa,y=t.ya,x=g.x,b=g.y,_=v.c2p(e),w=y.c2p(r),T=t.distance;if(g.tree){var k=v.p2c(_-T),M=v.p2c(_+T),A=y.p2c(w-T),S=y.p2c(w+T);i=\"x\"===n?g.tree.range(Math.min(k,M),Math.min(y._rl[0],y._rl[1]),Math.max(k,M),Math.max(y._rl[0],y._rl[1])):g.tree.range(Math.min(k,M),Math.min(A,S),Math.max(k,M),Math.max(A,S))}else i=g.ids;var E=T;if(\"x\"===n)for(c=0;c<i.length;c++)s=x[i[c]],(u=Math.abs(v.c2p(s)-_))<E&&(E=u,f=y.c2p(b[i[c]])-w,p=Math.sqrt(u*u+f*f),a=i[c]);else for(c=i.length-1;c>-1;c--)s=x[i[c]],l=b[i[c]],u=v.c2p(s)-_,f=y.c2p(l)-w,(h=Math.sqrt(u*u+f*f))<E&&(E=p=h,a=i[c]);return t.index=a,t.distance=E,t.dxy=p,void 0===a?[t]:[o(t,x,b,m)]},calcHover:o}},{\"../../lib\":778,\"../../registry\":911,\"../scatter/get_trace_color\":1197}],1248:[function(t,e,r){\"use strict\";var n=t(\"./hover\");e.exports={moduleType:\"trace\",name:\"scattergl\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"gl\",\"regl\",\"cartesian\",\"symbols\",\"errorBarsOK\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../scatter/cross_trace_defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:n.hoverPoints,selectPoints:t(\"./select\"),meta:{}}},{\"../../plots/cartesian\":841,\"../scatter/cross_trace_defaults\":1193,\"../scatter/marker_colorbar\":1205,\"./attributes\":1239,\"./calc\":1240,\"./defaults\":1243,\"./format_labels\":1245,\"./hover\":1247,\"./plot\":1249,\"./select\":1251}],1249:[function(t,e,r){\"use strict\";var n=t(\"regl-scatter2d\"),i=t(\"regl-line2d\"),a=t(\"regl-error2d\"),o=t(\"gl-text\"),s=t(\"../../lib\"),l=t(\"../../components/dragelement/helpers\").selectMode,c=t(\"../../lib/prepare_regl\"),u=t(\"../scatter/subtypes\"),f=t(\"../scatter/link_traces\"),h=t(\"./edit_style\").styleTextSelection;function p(t,e,r){var n=t._size,i=t.width,a=t.height;return[n.l+e.domain[0]*n.w,n.b+r.domain[0]*n.h,i-n.r-(1-e.domain[1])*n.w,a-n.t-(1-r.domain[1])*n.h]}e.exports=function(t,e,r){if(r.length){var d,g,m=t._fullLayout,v=e._scene,y=e.xaxis,x=e.yaxis;if(v)if(c(t,[\"ANGLE_instanced_arrays\",\"OES_element_index_uint\"])){var b=v.count,_=m._glcanvas.data()[0].regl;if(f(t,e,r),v.dirty){if(!0===v.error2d&&(v.error2d=a(_)),!0===v.line2d&&(v.line2d=i(_)),!0===v.scatter2d&&(v.scatter2d=n(_,{constPointSize:!0})),!0===v.fill2d&&(v.fill2d=i(_)),!0===v.glText)for(v.glText=new Array(b),d=0;d<b;d++)v.glText[d]=new o(_);if(v.glText){if(b>v.glText.length){var w=b-v.glText.length;for(d=0;d<w;d++)v.glText.push(new o(_))}else if(b<v.glText.length){var T=v.glText.length-b;v.glText.splice(b,T).forEach((function(t){t.destroy()}))}for(d=0;d<b;d++)v.glText[d].update(v.textOptions[d])}if(v.line2d&&(v.line2d.update(v.lineOptions),v.lineOptions=v.lineOptions.map((function(t){if(t&&t.positions){for(var e=t.positions,r=0;r<e.length&&(isNaN(e[r])||isNaN(e[r+1]));)r+=2;for(var n=e.length-2;n>r&&(isNaN(e[n])||isNaN(e[n+1]));)n-=2;t.positions=e.slice(r,n+2)}return t})),v.line2d.update(v.lineOptions)),v.error2d){var k=(v.errorXOptions||[]).concat(v.errorYOptions||[]);v.error2d.update(k)}v.scatter2d&&v.scatter2d.update(v.markerOptions),v.fillOrder=s.repeat(null,b),v.fill2d&&(v.fillOptions=v.fillOptions.map((function(t,e){var n=r[e];if(t&&n&&n[0]&&n[0].trace){var i,a,o=n[0],s=o.trace,l=o.t,c=v.lineOptions[e],u=[];s._ownfill&&u.push(e),s._nexttrace&&u.push(e+1),u.length&&(v.fillOrder[e]=u);var f,h,p=[],d=c&&c.positions||l.positions;if(\"tozeroy\"===s.fill){for(f=0;f<d.length&&isNaN(d[f+1]);)f+=2;for(h=d.length-2;h>f&&isNaN(d[h+1]);)h-=2;0!==d[f+1]&&(p=[d[f],0]),p=p.concat(d.slice(f,h+2)),0!==d[h+1]&&(p=p.concat([d[h],0]))}else if(\"tozerox\"===s.fill){for(f=0;f<d.length&&isNaN(d[f]);)f+=2;for(h=d.length-2;h>f&&isNaN(d[h]);)h-=2;0!==d[f]&&(p=[0,d[f+1]]),p=p.concat(d.slice(f,h+2)),0!==d[h]&&(p=p.concat([0,d[h+1]]))}else if(\"toself\"===s.fill||\"tonext\"===s.fill){for(p=[],i=0,a=0;a<d.length;a+=2)(isNaN(d[a])||isNaN(d[a+1]))&&((p=p.concat(d.slice(i,a))).push(d[i],d[i+1]),i=a+2);p=p.concat(d.slice(i)),i&&p.push(d[i],d[i+1])}else{var g=s._nexttrace;if(g){var m=v.lineOptions[e+1];if(m){var y=m.positions;if(\"tonexty\"===s.fill){for(p=d.slice(),e=Math.floor(y.length/2);e--;){var x=y[2*e],b=y[2*e+1];isNaN(x)||isNaN(b)||p.push(x,b)}t.fill=g.fillcolor}}}}if(s._prevtrace&&\"tonext\"===s._prevtrace.fill){var _=v.lineOptions[e-1].positions,w=p.length/2,T=[i=w];for(a=0;a<_.length;a+=2)(isNaN(_[a])||isNaN(_[a+1]))&&(T.push(a/2+w+1),i=a+2);p=p.concat(_),t.hole=T}return t.fillmode=s.fill,t.opacity=s.opacity,t.positions=p,t}})),v.fill2d.update(v.fillOptions))}var M=m.dragmode,A=l(M),S=m.clickmode.indexOf(\"select\")>-1;for(d=0;d<b;d++){var E=r[d][0],C=E.trace,L=E.t,I=L.index,P=C._length,z=L.x,O=L.y;if(C.selectedpoints||A||S){if(A||(A=!0),C.selectedpoints){var D=v.selectBatch[I]=s.selIndices2selPoints(C),R={};for(g=0;g<D.length;g++)R[D[g]]=1;var F=[];for(g=0;g<P;g++)R[g]||F.push(g);v.unselectBatch[I]=F}var B=L.xpx=new Array(P),N=L.ypx=new Array(P);for(g=0;g<P;g++)B[g]=y.c2p(z[g]),N[g]=x.c2p(O[g])}else L.xpx=L.ypx=null}if(A){if(v.select2d||(v.select2d=n(m._glcanvas.data()[1].regl)),v.scatter2d){var j=new Array(b);for(d=0;d<b;d++)j[d]=v.selectBatch[d].length||v.unselectBatch[d].length?v.markerUnselectedOptions[d]:{};v.scatter2d.update(j)}v.select2d&&(v.select2d.update(v.markerOptions),v.select2d.update(v.markerSelectedOptions)),v.glText&&r.forEach((function(t){var e=((t||[])[0]||{}).trace||{};u.hasText(e)&&h(t)}))}else v.scatter2d&&v.scatter2d.update(v.markerOptions);var U={viewport:p(m,y,x),range:[(y._rl||y.range)[0],(x._rl||x.range)[0],(y._rl||y.range)[1],(x._rl||x.range)[1]]},V=s.repeat(U,v.count);v.fill2d&&v.fill2d.update(V),v.line2d&&v.line2d.update(V),v.error2d&&v.error2d.update(V.concat(V)),v.scatter2d&&v.scatter2d.update(V),v.select2d&&v.select2d.update(V),v.glText&&v.glText.forEach((function(t){t.update(U)}))}else v.init()}}},{\"../../components/dragelement/helpers\":661,\"../../lib\":778,\"../../lib/prepare_regl\":791,\"../scatter/link_traces\":1203,\"../scatter/subtypes\":1212,\"./edit_style\":1244,\"gl-text\":352,\"regl-error2d\":534,\"regl-line2d\":535,\"regl-scatter2d\":537}],1250:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){var r=e._scene,i={count:0,dirty:!0,lineOptions:[],fillOptions:[],markerOptions:[],markerSelectedOptions:[],markerUnselectedOptions:[],errorXOptions:[],errorYOptions:[],textOptions:[],textSelectedOptions:[],textUnselectedOptions:[],selectBatch:[],unselectBatch:[]},a={fill2d:!1,scatter2d:!1,error2d:!1,line2d:!1,glText:!1,select2d:!1};return e._scene||((r=e._scene={}).init=function(){n.extendFlat(r,a,i)},r.init(),r.update=function(t){var e=n.repeat(t,r.count);if(r.fill2d&&r.fill2d.update(e),r.scatter2d&&r.scatter2d.update(e),r.line2d&&r.line2d.update(e),r.error2d&&r.error2d.update(e.concat(e)),r.select2d&&r.select2d.update(e),r.glText)for(var i=0;i<r.count;i++)r.glText[i].update(t)},r.draw=function(){for(var t=r.count,e=r.fill2d,i=r.error2d,a=r.line2d,o=r.scatter2d,s=r.glText,l=r.select2d,c=r.selectBatch,u=r.unselectBatch,f=0;f<t;f++){if(e&&r.fillOrder[f]&&e.draw(r.fillOrder[f]),a&&r.lineOptions[f]&&a.draw(f),i&&(r.errorXOptions[f]&&i.draw(f),r.errorYOptions[f]&&i.draw(f+t)),o&&r.markerOptions[f])if(u[f].length){var h=n.repeat([],r.count);h[f]=u[f],o.draw(h)}else c[f].length||o.draw(f);s[f]&&r.textOptions[f]&&s[f].render()}l&&l.draw(c),r.dirty=!1},r.destroy=function(){r.fill2d&&r.fill2d.destroy&&r.fill2d.destroy(),r.scatter2d&&r.scatter2d.destroy&&r.scatter2d.destroy(),r.error2d&&r.error2d.destroy&&r.error2d.destroy(),r.line2d&&r.line2d.destroy&&r.line2d.destroy(),r.select2d&&r.select2d.destroy&&r.select2d.destroy(),r.glText&&r.glText.forEach((function(t){t.destroy&&t.destroy()})),r.lineOptions=null,r.fillOptions=null,r.markerOptions=null,r.markerSelectedOptions=null,r.markerUnselectedOptions=null,r.errorXOptions=null,r.errorYOptions=null,r.textOptions=null,r.textSelectedOptions=null,r.textUnselectedOptions=null,r.selectBatch=null,r.unselectBatch=null,e._scene=null}),r.dirty||n.extendFlat(r,i),r}},{\"../../lib\":778}],1251:[function(t,e,r){\"use strict\";var n=t(\"../scatter/subtypes\"),i=t(\"./edit_style\").styleTextSelection;e.exports=function(t,e){var r=t.cd,a=[],o=r[0].trace,s=r[0].t,l=o._length,c=s.x,u=s.y,f=s._scene,h=s.index;if(!f)return a;var p=n.hasText(o),d=n.hasMarkers(o),g=!d&&!p;if(!0!==o.visible||g)return a;var m=[],v=[];if(!1!==e&&!e.degenerate)for(var y=0;y<l;y++)e.contains([s.xpx[y],s.ypx[y]],!1,y,t)?(m.push(y),a.push({pointNumber:y,x:c[y],y:u[y]})):v.push(y);if(d){var x=f.scatter2d;if(m.length||v.length){if(!f.selectBatch[h].length&&!f.unselectBatch[h].length){var b=new Array(f.count);b[h]=f.markerUnselectedOptions[h],x.update.apply(x,b)}}else{var _=new Array(f.count);_[h]=f.markerOptions[h],x.update.apply(x,_)}}return f.selectBatch[h]=m,f.unselectBatch[h]=v,p&&i(r),a}},{\"../scatter/subtypes\":1212,\"./edit_style\":1244}],1252:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/template_attributes\").texttemplateAttrs,a=t(\"../scattergeo/attributes\"),o=t(\"../scatter/attributes\"),s=t(\"../../plots/mapbox/layout_attributes\"),l=t(\"../../plots/attributes\"),c=t(\"../../components/colorscale/attributes\"),u=t(\"../../lib/extend\").extendFlat,f=t(\"../../plot_api/edit_types\").overrideAll,h=a.line,p=a.marker;e.exports=f({lon:a.lon,lat:a.lat,mode:u({},o.mode,{dflt:\"markers\"}),text:u({},o.text,{}),texttemplate:i({editType:\"plot\"},{keys:[\"lat\",\"lon\",\"text\"]}),hovertext:u({},o.hovertext,{}),line:{color:h.color,width:h.width},connectgaps:o.connectgaps,marker:u({symbol:{valType:\"string\",dflt:\"circle\",arrayOk:!0},angle:{valType:\"number\",dflt:\"auto\",arrayOk:!0},allowoverlap:{valType:\"boolean\",dflt:!1},opacity:p.opacity,size:p.size,sizeref:p.sizeref,sizemin:p.sizemin,sizemode:p.sizemode},c(\"marker\")),fill:a.fill,fillcolor:o.fillcolor,textfont:s.layers.symbol.textfont,textposition:s.layers.symbol.textposition,below:{valType:\"string\"},selected:{marker:o.selected.marker},unselected:{marker:o.unselected.marker},hoverinfo:u({},l.hoverinfo,{flags:[\"lon\",\"lat\",\"text\",\"name\"]}),hovertemplate:n()},\"calc\",\"nested\")},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plots/attributes\":824,\"../../plots/mapbox/layout_attributes\":887,\"../../plots/template_attributes\":906,\"../scatter/attributes\":1187,\"../scattergeo/attributes\":1229}],1253:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../lib\"),a=t(\"../../constants/numerical\").BADNUM,o=t(\"../../lib/geojson_utils\"),s=t(\"../../components/colorscale\"),l=t(\"../../components/drawing\"),c=t(\"../scatter/make_bubble_size_func\"),u=t(\"../scatter/subtypes\"),f=t(\"../../plots/mapbox/convert_text_opts\"),h=t(\"../../components/fx/helpers\").appendArrayPointValue,p=t(\"../../lib/svg_text_utils\").NEWLINES,d=t(\"../../lib/svg_text_utils\").BR_TAG_ALL;function g(){return{geojson:o.makeBlank(),layout:{visibility:\"none\"},paint:{}}}function m(t,e){return i.isArrayOrTypedArray(t)?e?function(e){return n(t[e])?+t[e]:0}:function(e){return t[e]}:t?function(){return t}:v}function v(){return\"\"}function y(t){return t[0]===a}e.exports=function(t,e){var r,a=e[0].trace,x=!0===a.visible&&0!==a._length,b=\"none\"!==a.fill,_=u.hasLines(a),w=u.hasMarkers(a),T=u.hasText(a),k=w&&\"circle\"===a.marker.symbol,M=w&&\"circle\"!==a.marker.symbol,A=g(),S=g(),E=g(),C=g(),L={fill:A,line:S,circle:E,symbol:C};if(!x)return L;if((b||_)&&(r=o.calcTraceToLineCoords(e)),b&&(A.geojson=o.makePolygon(r),A.layout.visibility=\"visible\",i.extendFlat(A.paint,{\"fill-color\":a.fillcolor})),_&&(S.geojson=o.makeLine(r),S.layout.visibility=\"visible\",i.extendFlat(S.paint,{\"line-width\":a.line.width,\"line-color\":a.line.color,\"line-opacity\":a.opacity})),k){var I=function(t){var e,r,a,o,u=t[0].trace,f=u.marker,h=u.selectedpoints,p=i.isArrayOrTypedArray(f.color),d=i.isArrayOrTypedArray(f.size),g=i.isArrayOrTypedArray(f.opacity);function m(t){return u.opacity*t}p&&(r=s.hasColorscale(u,\"marker\")?s.makeColorScaleFuncFromTrace(f):i.identity);d&&(a=c(u));g&&(o=function(t){return m(n(t)?+i.constrain(t,0,1):0)});var v,x=[];for(e=0;e<t.length;e++){var b=t[e],_=b.lonlat;if(!y(_)){var w={};r&&(w.mcc=b.mcc=r(b.mc)),a&&(w.mrc=b.mrc=a(b.ms)),o&&(w.mo=o(b.mo)),h&&(w.selected=b.selected||0),x.push({type:\"Feature\",geometry:{type:\"Point\",coordinates:_},properties:w})}}if(h)for(v=l.makeSelectedPointStyleFns(u),e=0;e<x.length;e++){var T=x[e].properties;v.selectedOpacityFn&&(T.mo=m(v.selectedOpacityFn(T))),v.selectedColorFn&&(T.mcc=v.selectedColorFn(T)),v.selectedSizeFn&&(T.mrc=v.selectedSizeFn(T))}return{geojson:{type:\"FeatureCollection\",features:x},mcc:p||v&&v.selectedColorFn?{type:\"identity\",property:\"mcc\"}:f.color,mrc:d||v&&v.selectedSizeFn?{type:\"identity\",property:\"mrc\"}:(k=f.size,k/2),mo:g||v&&v.selectedOpacityFn?{type:\"identity\",property:\"mo\"}:m(f.opacity)};var k}(e);E.geojson=I.geojson,E.layout.visibility=\"visible\",i.extendFlat(E.paint,{\"circle-color\":I.mcc,\"circle-radius\":I.mrc,\"circle-opacity\":I.mo})}if((M||T)&&(C.geojson=function(t,e){for(var r=e._fullLayout,n=t[0].trace,a=n.marker||{},o=a.symbol,s=a.angle,l=\"circle\"!==o?m(o):v,c=\"auto\"!==s?m(s,!0):v,f=u.hasText(n)?m(n.text):v,g=[],x=0;x<t.length;x++){var b=t[x];if(!y(b.lonlat)){var _,w=n.texttemplate;if(w){var T=Array.isArray(w)?w[x]||\"\":w,k=n._module.formatLabels(b,n,r),M={};h(M,n,b.i);var A=n._meta||{};_=i.texttemplateString(T,k,r._d3locale,M,b,A)}else _=f(x);_&&(_=_.replace(p,\"\").replace(d,\"\\n\")),g.push({type:\"Feature\",geometry:{type:\"Point\",coordinates:b.lonlat},properties:{symbol:l(x),angle:c(x),text:_}})}}return{type:\"FeatureCollection\",features:g}}(e,t),i.extendFlat(C.layout,{visibility:\"visible\",\"icon-image\":\"{symbol}-15\",\"text-field\":\"{text}\"}),M&&(i.extendFlat(C.layout,{\"icon-size\":a.marker.size/10}),\"angle\"in a.marker&&\"auto\"!==a.marker.angle&&i.extendFlat(C.layout,{\"icon-rotate\":{type:\"identity\",property:\"angle\"},\"icon-rotation-alignment\":\"map\"}),C.layout[\"icon-allow-overlap\"]=a.marker.allowoverlap,i.extendFlat(C.paint,{\"icon-opacity\":a.opacity*a.marker.opacity,\"icon-color\":a.marker.color})),T)){var P=(a.marker||{}).size,z=f(a.textposition,P);i.extendFlat(C.layout,{\"text-size\":a.textfont.size,\"text-anchor\":z.anchor,\"text-offset\":z.offset}),i.extendFlat(C.paint,{\"text-color\":a.textfont.color,\"text-opacity\":a.opacity})}return L}},{\"../../components/colorscale\":655,\"../../components/drawing\":665,\"../../components/fx/helpers\":679,\"../../constants/numerical\":753,\"../../lib\":778,\"../../lib/geojson_utils\":772,\"../../lib/svg_text_utils\":803,\"../../plots/mapbox/convert_text_opts\":884,\"../scatter/make_bubble_size_func\":1204,\"../scatter/subtypes\":1212,\"fast-isnumeric\":241}],1254:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../scatter/subtypes\"),a=t(\"../scatter/marker_defaults\"),o=t(\"../scatter/line_defaults\"),s=t(\"../scatter/text_defaults\"),l=t(\"../scatter/fillcolor_defaults\"),c=t(\"./attributes\");e.exports=function(t,e,r,u){function f(r,i){return n.coerce(t,e,c,r,i)}if(function(t,e,r){var n=r(\"lon\")||[],i=r(\"lat\")||[],a=Math.min(n.length,i.length);return e._length=a,a}(0,e,f)){if(f(\"text\"),f(\"texttemplate\"),f(\"hovertext\"),f(\"hovertemplate\"),f(\"mode\"),f(\"below\"),i.hasLines(e)&&(o(t,e,r,u,f,{noDash:!0}),f(\"connectgaps\")),i.hasMarkers(e)){a(t,e,r,u,f,{noLine:!0}),f(\"marker.allowoverlap\"),f(\"marker.angle\");var h=e.marker;\"circle\"!==h.symbol&&(n.isArrayOrTypedArray(h.size)&&(h.size=h.size[0]),n.isArrayOrTypedArray(h.color)&&(h.color=h.color[0]))}i.hasText(e)&&s(t,e,u,f,{noSelect:!0}),f(\"fill\"),\"none\"!==e.fill&&l(t,e,r,f),n.coerceSelectionMarkerOpacity(e,f)}else e.visible=!1}},{\"../../lib\":778,\"../scatter/fillcolor_defaults\":1195,\"../scatter/line_defaults\":1200,\"../scatter/marker_defaults\":1206,\"../scatter/subtypes\":1212,\"../scatter/text_defaults\":1213,\"./attributes\":1252}],1255:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.lon=e.lon,t.lat=e.lat,t}},{}],1256:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\");e.exports=function(t,e,r){var i={},a=r[e.subplot]._subplot.mockAxis,o=t.lonlat;return i.lonLabel=n.tickText(a,a.c2l(o[0]),!0).text,i.latLabel=n.tickText(a,a.c2l(o[1]),!0).text,i}},{\"../../plots/cartesian/axes\":828}],1257:[function(t,e,r){\"use strict\";var n=t(\"../../components/fx\"),i=t(\"../../lib\"),a=t(\"../scatter/get_trace_color\"),o=i.fillText,s=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r){var l=t.cd,c=l[0].trace,u=t.xa,f=t.ya,h=t.subplot,p=360*(e>=0?Math.floor((e+180)/360):Math.ceil((e-180)/360)),d=e-p;if(n.getClosest(l,(function(t){var e=t.lonlat;if(e[0]===s)return 1/0;var n=i.modHalf(e[0],360),a=e[1],o=h.project([n,a]),l=o.x-u.c2p([d,a]),c=o.y-f.c2p([n,r]),p=Math.max(3,t.mrc||0);return Math.max(Math.sqrt(l*l+c*c)-p,1-3/p)}),t),!1!==t.index){var g=l[t.index],m=g.lonlat,v=[i.modHalf(m[0],360)+p,m[1]],y=u.c2p(v),x=f.c2p(v),b=g.mrc||1;t.x0=y-b,t.x1=y+b,t.y0=x-b,t.y1=x+b;var _={};_[c.subplot]={_subplot:h};var w=c._module.formatLabels(g,c,_);return t.lonLabel=w.lonLabel,t.latLabel=w.latLabel,t.color=a(c,g),t.extraText=function(t,e,r){if(t.hovertemplate)return;var n=(e.hi||t.hoverinfo).split(\"+\"),i=-1!==n.indexOf(\"all\"),a=-1!==n.indexOf(\"lon\"),s=-1!==n.indexOf(\"lat\"),l=e.lonlat,c=[];function u(t){return t+\"\\xb0\"}i||a&&s?c.push(\"(\"+u(l[0])+\", \"+u(l[1])+\")\"):a?c.push(r.lon+u(l[0])):s&&c.push(r.lat+u(l[1]));(i||-1!==n.indexOf(\"text\"))&&o(e,t,c);return c.join(\"<br>\")}(c,g,l[0].t.labels),t.hovertemplate=c.hovertemplate,[t]}}},{\"../../components/fx\":683,\"../../constants/numerical\":753,\"../../lib\":778,\"../scatter/get_trace_color\":1197}],1258:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"../scattergeo/calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"./select\"),styleOnSelect:function(t,e){e&&e[0].trace._glTrace.update(e)},moduleType:\"trace\",name:\"scattermapbox\",basePlotModule:t(\"../../plots/mapbox\"),categories:[\"mapbox\",\"gl\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/mapbox\":885,\"../scatter/marker_colorbar\":1205,\"../scattergeo/calc\":1230,\"./attributes\":1252,\"./defaults\":1254,\"./event_data\":1255,\"./format_labels\":1256,\"./hover\":1257,\"./plot\":1259,\"./select\":1260}],1259:[function(t,e,r){\"use strict\";var n=t(\"./convert\"),i=t(\"../../plots/mapbox/constants\").traceLayerPrefix,a=[\"fill\",\"line\",\"circle\",\"symbol\"];function o(t,e){this.type=\"scattermapbox\",this.subplot=t,this.uid=e,this.sourceIds={fill:\"source-\"+e+\"-fill\",line:\"source-\"+e+\"-line\",circle:\"source-\"+e+\"-circle\",symbol:\"source-\"+e+\"-symbol\"},this.layerIds={fill:i+e+\"-fill\",line:i+e+\"-line\",circle:i+e+\"-circle\",symbol:i+e+\"-symbol\"},this.below=null}var s=o.prototype;s.addSource=function(t,e){this.subplot.map.addSource(this.sourceIds[t],{type:\"geojson\",data:e.geojson})},s.setSourceData=function(t,e){this.subplot.map.getSource(this.sourceIds[t]).setData(e.geojson)},s.addLayer=function(t,e,r){this.subplot.addLayer({type:t,id:this.layerIds[t],source:this.sourceIds[t],layout:e.layout,paint:e.paint},r)},s.update=function(t){var e,r,i,o=this.subplot,s=o.map,l=n(o.gd,t),c=o.belowLookup[\"trace-\"+this.uid];if(c!==this.below){for(e=a.length-1;e>=0;e--)r=a[e],s.removeLayer(this.layerIds[r]);for(e=0;e<a.length;e++)i=l[r=a[e]],this.addLayer(r,i,c);this.below=c}for(e=0;e<a.length;e++)i=l[r=a[e]],o.setOptions(this.layerIds[r],\"setLayoutProperty\",i.layout),\"visible\"===i.layout.visibility&&(this.setSourceData(r,i),o.setOptions(this.layerIds[r],\"setPaintProperty\",i.paint));t[0].trace._glTrace=this},s.dispose=function(){for(var t=this.subplot.map,e=a.length-1;e>=0;e--){var r=a[e];t.removeLayer(this.layerIds[r]),t.removeSource(this.sourceIds[r])}},e.exports=function(t,e){for(var r=e[0].trace,i=new o(t,r.uid),s=n(t.gd,e),l=i.below=t.belowLookup[\"trace-\"+r.uid],c=0;c<a.length;c++){var u=a[c],f=s[u];i.addSource(u,f),i.addLayer(u,f,l)}return e[0].trace._glTrace=i,i}},{\"../../plots/mapbox/constants\":883,\"./convert\":1253}],1260:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../scatter/subtypes\"),a=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e){var r,o=t.cd,s=t.xaxis,l=t.yaxis,c=[],u=o[0].trace;if(!i.hasMarkers(u))return[];if(!1===e)for(r=0;r<o.length;r++)o[r].selected=0;else for(r=0;r<o.length;r++){var f=o[r],h=f.lonlat;if(h[0]!==a){var p=[n.modHalf(h[0],360),h[1]],d=[s.c2p(p),l.c2p(p)];e.contains(d,null,r,t)?(c.push({pointNumber:r,lon:h[0],lat:h[1]}),f.selected=1):f.selected=0}}return c}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../scatter/subtypes\":1212}],1261:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/template_attributes\").texttemplateAttrs,a=t(\"../../lib/extend\").extendFlat,o=t(\"../scatter/attributes\"),s=t(\"../../plots/attributes\"),l=o.line;e.exports={mode:o.mode,r:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},theta:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},r0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\"},dr:{valType:\"number\",dflt:1,editType:\"calc\"},theta0:{valType:\"any\",dflt:0,editType:\"calc+clearAxisTypes\"},dtheta:{valType:\"number\",editType:\"calc\"},thetaunit:{valType:\"enumerated\",values:[\"radians\",\"degrees\",\"gradians\"],dflt:\"degrees\",editType:\"calc+clearAxisTypes\"},text:o.text,texttemplate:i({editType:\"plot\"},{keys:[\"r\",\"theta\",\"text\"]}),hovertext:o.hovertext,line:{color:l.color,width:l.width,dash:l.dash,shape:a({},l.shape,{values:[\"linear\",\"spline\"]}),smoothing:l.smoothing,editType:\"calc\"},connectgaps:o.connectgaps,marker:o.marker,cliponaxis:a({},o.cliponaxis,{dflt:!1}),textposition:o.textposition,textfont:o.textfont,fill:a({},o.fill,{values:[\"none\",\"toself\",\"tonext\"],dflt:\"none\"}),fillcolor:o.fillcolor,hoverinfo:a({},s.hoverinfo,{flags:[\"r\",\"theta\",\"text\",\"name\"]}),hoveron:o.hoveron,hovertemplate:n(),selected:o.selected,unselected:o.unselected}},{\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../scatter/attributes\":1187}],1262:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../../constants/numerical\").BADNUM,a=t(\"../../plots/cartesian/axes\"),o=t(\"../scatter/colorscale_calc\"),s=t(\"../scatter/arrays_to_calcdata\"),l=t(\"../scatter/calc_selection\"),c=t(\"../scatter/calc\").calcMarkerSize;e.exports=function(t,e){for(var r=t._fullLayout,u=e.subplot,f=r[u].radialaxis,h=r[u].angularaxis,p=f.makeCalcdata(e,\"r\"),d=h.makeCalcdata(e,\"theta\"),g=e._length,m=new Array(g),v=0;v<g;v++){var y=p[v],x=d[v],b=m[v]={};n(y)&&n(x)?(b.r=y,b.theta=x):b.r=i}var _=c(e,g);return e._extremes.x=a.findExtremes(f,p,{ppad:_}),o(t,e),s(m,e),l(m,e),m}},{\"../../constants/numerical\":753,\"../../plots/cartesian/axes\":828,\"../scatter/arrays_to_calcdata\":1186,\"../scatter/calc\":1188,\"../scatter/calc_selection\":1189,\"../scatter/colorscale_calc\":1190,\"fast-isnumeric\":241}],1263:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../scatter/subtypes\"),a=t(\"../scatter/marker_defaults\"),o=t(\"../scatter/line_defaults\"),s=t(\"../scatter/line_shape_defaults\"),l=t(\"../scatter/text_defaults\"),c=t(\"../scatter/fillcolor_defaults\"),u=t(\"../scatter/constants\").PTS_LINESONLY,f=t(\"./attributes\");function h(t,e,r,n){var i,a=n(\"r\"),o=n(\"theta\");if(a)o?i=Math.min(a.length,o.length):(i=a.length,n(\"theta0\"),n(\"dtheta\"));else{if(!o)return 0;i=e.theta.length,n(\"r0\"),n(\"dr\")}return e._length=i,i}e.exports={handleRThetaDefaults:h,supplyDefaults:function(t,e,r,p){function d(r,i){return n.coerce(t,e,f,r,i)}var g=h(t,e,p,d);if(g){d(\"thetaunit\"),d(\"mode\",g<u?\"lines+markers\":\"lines\"),d(\"text\"),d(\"hovertext\"),\"fills\"!==e.hoveron&&d(\"hovertemplate\"),i.hasLines(e)&&(o(t,e,r,p,d),s(t,e,d),d(\"connectgaps\")),i.hasMarkers(e)&&a(t,e,r,p,d,{gradient:!0}),i.hasText(e)&&(d(\"texttemplate\"),l(t,e,p,d));var m=[];(i.hasMarkers(e)||i.hasText(e))&&(d(\"cliponaxis\"),d(\"marker.maxdisplayed\"),m.push(\"points\")),d(\"fill\"),\"none\"!==e.fill&&(c(t,e,r,d),i.hasLines(e)||s(t,e,d)),\"tonext\"!==e.fill&&\"toself\"!==e.fill||m.push(\"fills\"),d(\"hoveron\",m.join(\"+\")||\"points\"),n.coerceSelectionMarkerOpacity(e,d)}else e.visible=!1}}},{\"../../lib\":778,\"../scatter/constants\":1191,\"../scatter/fillcolor_defaults\":1195,\"../scatter/line_defaults\":1200,\"../scatter/line_shape_defaults\":1202,\"../scatter/marker_defaults\":1206,\"../scatter/subtypes\":1212,\"../scatter/text_defaults\":1213,\"./attributes\":1261}],1264:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\");e.exports=function(t,e,r){var a,o,s={},l=r[e.subplot]._subplot;l?(a=l.radialAxis,o=l.angularAxis):(a=(l=r[e.subplot]).radialaxis,o=l.angularaxis);var c=a.c2l(t.r);s.rLabel=i.tickText(a,c,!0).text;var u=\"degrees\"===o.thetaunit?n.rad2deg(t.theta):t.theta;return s.thetaLabel=i.tickText(o,u,!0).text,s}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828}],1265:[function(t,e,r){\"use strict\";var n=t(\"../scatter/hover\");function i(t,e,r,n){var i=r.radialAxis,a=r.angularAxis;i._hovertitle=\"r\",a._hovertitle=\"\\u03b8\";var o={};o[e.subplot]={_subplot:r};var s=e._module.formatLabels(t,e,o);n.rLabel=s.rLabel,n.thetaLabel=s.thetaLabel;var l=t.hi||e.hoverinfo,c=[];function u(t,e){c.push(t._hovertitle+\": \"+e)}if(!e.hovertemplate){var f=l.split(\"+\");-1!==f.indexOf(\"all\")&&(f=[\"r\",\"theta\",\"text\"]),-1!==f.indexOf(\"r\")&&u(i,n.rLabel),-1!==f.indexOf(\"theta\")&&u(a,n.thetaLabel),-1!==f.indexOf(\"text\")&&n.text&&(c.push(n.text),delete n.text),n.extraText=c.join(\"<br>\")}}e.exports={hoverPoints:function(t,e,r,a){var o=n(t,e,r,a);if(o&&!1!==o[0].index){var s=o[0];if(void 0===s.index)return o;var l=t.subplot,c=s.cd[s.index],u=s.trace;if(l.isPtInside(c))return s.xLabelVal=void 0,s.yLabelVal=void 0,i(c,u,l,s),s.hovertemplate=u.hovertemplate,o}},makeHoverPointText:i}},{\"../scatter/hover\":1198}],1266:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"scatterpolar\",basePlotModule:t(\"../../plots/polar\"),categories:[\"polar\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"../scatter/select\"),meta:{}}},{\"../../plots/polar\":894,\"../scatter/marker_colorbar\":1205,\"../scatter/select\":1209,\"../scatter/style\":1211,\"./attributes\":1261,\"./calc\":1262,\"./defaults\":1263,\"./format_labels\":1264,\"./hover\":1265,\"./plot\":1267}],1267:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\"),i=t(\"../../constants/numerical\").BADNUM;e.exports=function(t,e,r){for(var a=e.layers.frontplot.select(\"g.scatterlayer\"),o={xaxis:e.xaxis,yaxis:e.yaxis,plot:e.framework,layerClipId:e._hasClipOnAxisFalse?e.clipIds.forTraces:null},s=e.radialAxis,l=e.angularAxis,c=0;c<r.length;c++)for(var u=r[c],f=0;f<u.length;f++){var h=u[f],p=h.r;if(p===i)h.x=h.y=i;else{var d=s.c2g(p),g=l.c2g(h.theta);h.x=d*Math.cos(g),h.y=d*Math.sin(g)}}n(t,o,r,a)}},{\"../../constants/numerical\":753,\"../scatter/plot\":1208}],1268:[function(t,e,r){\"use strict\";var n=t(\"../scatterpolar/attributes\"),i=t(\"../scattergl/attributes\"),a=t(\"../../plots/template_attributes\").texttemplateAttrs;e.exports={mode:n.mode,r:n.r,theta:n.theta,r0:n.r0,dr:n.dr,theta0:n.theta0,dtheta:n.dtheta,thetaunit:n.thetaunit,text:n.text,texttemplate:a({editType:\"plot\"},{keys:[\"r\",\"theta\",\"text\"]}),hovertext:n.hovertext,hovertemplate:n.hovertemplate,line:i.line,connectgaps:i.connectgaps,marker:i.marker,fill:i.fill,fillcolor:i.fillcolor,textposition:i.textposition,textfont:i.textfont,hoverinfo:n.hoverinfo,selected:n.selected,unselected:n.unselected}},{\"../../plots/template_attributes\":906,\"../scattergl/attributes\":1239,\"../scatterpolar/attributes\":1261}],1269:[function(t,e,r){\"use strict\";var n=t(\"../scatter/colorscale_calc\"),i=t(\"../scatter/calc\").calcMarkerSize,a=t(\"../scattergl/convert\"),o=t(\"../../plots/cartesian/axes\"),s=t(\"../scattergl/constants\").TOO_MANY_POINTS;e.exports=function(t,e){var r=t._fullLayout,l=e.subplot,c=r[l].radialaxis,u=r[l].angularaxis,f=e._r=c.makeCalcdata(e,\"r\"),h=e._theta=u.makeCalcdata(e,\"theta\"),p=e._length,d={};p<f.length&&(f=f.slice(0,p)),p<h.length&&(h=h.slice(0,p)),d.r=f,d.theta=h,n(t,e);var g,m=d.opts=a.style(t,e);return p<s?g=i(e,p):m.marker&&(g=2*(m.marker.sizeAvg||Math.max(m.marker.size,3))),e._extremes.x=o.findExtremes(c,f,{ppad:g}),[{x:!1,y:!1,t:d,trace:e}]}},{\"../../plots/cartesian/axes\":828,\"../scatter/calc\":1188,\"../scatter/colorscale_calc\":1190,\"../scattergl/constants\":1241,\"../scattergl/convert\":1242}],1270:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../scatter/subtypes\"),a=t(\"../scatterpolar/defaults\").handleRThetaDefaults,o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/text_defaults\"),c=t(\"../scatter/fillcolor_defaults\"),u=t(\"../scatter/constants\").PTS_LINESONLY,f=t(\"./attributes\");e.exports=function(t,e,r,h){function p(r,i){return n.coerce(t,e,f,r,i)}var d=a(t,e,h,p);d?(p(\"thetaunit\"),p(\"mode\",d<u?\"lines+markers\":\"lines\"),p(\"text\"),p(\"hovertext\"),\"fills\"!==e.hoveron&&p(\"hovertemplate\"),i.hasLines(e)&&(s(t,e,r,h,p),p(\"connectgaps\")),i.hasMarkers(e)&&o(t,e,r,h,p),i.hasText(e)&&(p(\"texttemplate\"),l(t,e,h,p)),p(\"fill\"),\"none\"!==e.fill&&c(t,e,r,p),n.coerceSelectionMarkerOpacity(e,p)):e.visible=!1}},{\"../../lib\":778,\"../scatter/constants\":1191,\"../scatter/fillcolor_defaults\":1195,\"../scatter/line_defaults\":1200,\"../scatter/marker_defaults\":1206,\"../scatter/subtypes\":1212,\"../scatter/text_defaults\":1213,\"../scatterpolar/defaults\":1263,\"./attributes\":1268}],1271:[function(t,e,r){\"use strict\";var n=t(\"../scatterpolar/format_labels\");e.exports=function(t,e,r){var i=t.i;return\"r\"in t||(t.r=e._r[i]),\"theta\"in t||(t.theta=e._theta[i]),n(t,e,r)}},{\"../scatterpolar/format_labels\":1264}],1272:[function(t,e,r){\"use strict\";var n=t(\"../scattergl/hover\"),i=t(\"../scatterpolar/hover\").makeHoverPointText;e.exports={hoverPoints:function(t,e,r,a){var o=t.cd[0].t,s=o.r,l=o.theta,c=n.hoverPoints(t,e,r,a);if(c&&!1!==c[0].index){var u=c[0];if(void 0===u.index)return c;var f=t.subplot,h=u.cd[u.index],p=u.trace;if(h.r=s[u.index],h.theta=l[u.index],f.isPtInside(h))return u.xLabelVal=void 0,u.yLabelVal=void 0,i(h,p,f,u),c}}}},{\"../scattergl/hover\":1247,\"../scatterpolar/hover\":1265}],1273:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"scatterpolargl\",basePlotModule:t(\"../../plots/polar\"),categories:[\"gl\",\"regl\",\"polar\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"../scattergl/select\"),meta:{}}},{\"../../plots/polar\":894,\"../scatter/marker_colorbar\":1205,\"../scattergl/select\":1251,\"./attributes\":1268,\"./calc\":1269,\"./defaults\":1270,\"./format_labels\":1271,\"./hover\":1272,\"./plot\":1274}],1274:[function(t,e,r){\"use strict\";var n=t(\"@plotly/point-cluster\"),i=t(\"fast-isnumeric\"),a=t(\"../scattergl/plot\"),o=t(\"../scattergl/scene_update\"),s=t(\"../scattergl/convert\"),l=t(\"../../lib\"),c=t(\"../scattergl/constants\").TOO_MANY_POINTS;e.exports=function(t,e,r){if(r.length){var u=e.radialAxis,f=e.angularAxis,h=o(t,e);return r.forEach((function(r){if(r&&r[0]&&r[0].trace){var a,o=r[0],p=o.trace,d=o.t,g=p._length,m=d.r,v=d.theta,y=d.opts,x=m.slice(),b=v.slice();for(a=0;a<m.length;a++)e.isPtInside({r:m[a],theta:v[a]})||(x[a]=NaN,b[a]=NaN);var _=new Array(2*g),w=Array(g),T=Array(g);for(a=0;a<g;a++){var k,M,A=x[a];if(i(A)){var S=u.c2g(A),E=f.c2g(b[a],p.thetaunit);k=S*Math.cos(E),M=S*Math.sin(E)}else k=M=NaN;w[a]=_[2*a]=k,T[a]=_[2*a+1]=M}d.tree=n(_),y.marker&&g>=c&&(y.marker.cluster=d.tree),y.marker&&(y.markerSel.positions=y.markerUnsel.positions=y.marker.positions=_),y.line&&_.length>1&&l.extendFlat(y.line,s.linePositions(t,p,_)),y.text&&(l.extendFlat(y.text,{positions:_},s.textPosition(t,p,y.text,y.marker)),l.extendFlat(y.textSel,{positions:_},s.textPosition(t,p,y.text,y.markerSel)),l.extendFlat(y.textUnsel,{positions:_},s.textPosition(t,p,y.text,y.markerUnsel))),y.fill&&!h.fill2d&&(h.fill2d=!0),y.marker&&!h.scatter2d&&(h.scatter2d=!0),y.line&&!h.line2d&&(h.line2d=!0),y.text&&!h.glText&&(h.glText=!0),h.lineOptions.push(y.line),h.fillOptions.push(y.fill),h.markerOptions.push(y.marker),h.markerSelectedOptions.push(y.markerSel),h.markerUnselectedOptions.push(y.markerUnsel),h.textOptions.push(y.text),h.textSelectedOptions.push(y.textSel),h.textUnselectedOptions.push(y.textUnsel),h.selectBatch.push([]),h.unselectBatch.push([]),d.x=w,d.y=T,d.rawx=w,d.rawy=T,d.r=m,d.theta=v,d.positions=_,d._scene=h,d.index=h.count,h.count++}})),a(t,e,r)}}},{\"../../lib\":778,\"../scattergl/constants\":1241,\"../scattergl/convert\":1242,\"../scattergl/plot\":1249,\"../scattergl/scene_update\":1250,\"@plotly/point-cluster\":57,\"fast-isnumeric\":241}],1275:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/template_attributes\").texttemplateAttrs,a=t(\"../scatter/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../components/colorscale/attributes\"),l=t(\"../../components/drawing/attributes\").dash,c=t(\"../../lib/extend\").extendFlat,u=a.marker,f=a.line,h=u.line;e.exports={a:{valType:\"data_array\",editType:\"calc\"},b:{valType:\"data_array\",editType:\"calc\"},c:{valType:\"data_array\",editType:\"calc\"},sum:{valType:\"number\",dflt:0,min:0,editType:\"calc\"},mode:c({},a.mode,{dflt:\"markers\"}),text:c({},a.text,{}),texttemplate:i({editType:\"plot\"},{keys:[\"a\",\"b\",\"c\",\"text\"]}),hovertext:c({},a.hovertext,{}),line:{color:f.color,width:f.width,dash:l,shape:c({},f.shape,{values:[\"linear\",\"spline\"]}),smoothing:f.smoothing,editType:\"calc\"},connectgaps:a.connectgaps,cliponaxis:a.cliponaxis,fill:c({},a.fill,{values:[\"none\",\"toself\",\"tonext\"],dflt:\"none\"}),fillcolor:a.fillcolor,marker:c({symbol:u.symbol,opacity:u.opacity,maxdisplayed:u.maxdisplayed,size:u.size,sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,line:c({width:h.width,editType:\"calc\"},s(\"marker.line\")),gradient:u.gradient,editType:\"calc\"},s(\"marker\")),textfont:a.textfont,textposition:a.textposition,selected:a.selected,unselected:a.unselected,hoverinfo:c({},o.hoverinfo,{flags:[\"a\",\"b\",\"c\",\"text\",\"name\"]}),hoveron:a.hoveron,hovertemplate:n()}},{\"../../components/colorscale/attributes\":650,\"../../components/drawing/attributes\":664,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../scatter/attributes\":1187}],1276:[function(t,e,r){\"use strict\";var n=t(\"fast-isnumeric\"),i=t(\"../scatter/colorscale_calc\"),a=t(\"../scatter/arrays_to_calcdata\"),o=t(\"../scatter/calc_selection\"),s=t(\"../scatter/calc\").calcMarkerSize,l=[\"a\",\"b\",\"c\"],c={a:[\"b\",\"c\"],b:[\"a\",\"c\"],c:[\"a\",\"b\"]};e.exports=function(t,e){var r,u,f,h,p,d,g=t._fullLayout[e.subplot].sum,m=e.sum||g,v={a:e.a,b:e.b,c:e.c};for(r=0;r<l.length;r++)if(!v[f=l[r]]){for(p=v[c[f][0]],d=v[c[f][1]],h=new Array(p.length),u=0;u<p.length;u++)h[u]=m-p[u]-d[u];v[f]=h}var y,x,b,_,w,T,k=e._length,M=new Array(k);for(r=0;r<k;r++)y=v.a[r],x=v.b[r],b=v.c[r],n(y)&&n(x)&&n(b)?(1!==(_=g/((y=+y)+(x=+x)+(b=+b)))&&(y*=_,x*=_,b*=_),T=y,w=b-x,M[r]={x:w,y:T,a:y,b:x,c:b}):M[r]={x:!1,y:!1};return s(e,k),i(t,e),a(M,e),o(M,e),M}},{\"../scatter/arrays_to_calcdata\":1186,\"../scatter/calc\":1188,\"../scatter/calc_selection\":1189,\"../scatter/colorscale_calc\":1190,\"fast-isnumeric\":241}],1277:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../scatter/constants\"),a=t(\"../scatter/subtypes\"),o=t(\"../scatter/marker_defaults\"),s=t(\"../scatter/line_defaults\"),l=t(\"../scatter/line_shape_defaults\"),c=t(\"../scatter/text_defaults\"),u=t(\"../scatter/fillcolor_defaults\"),f=t(\"./attributes\");e.exports=function(t,e,r,h){function p(r,i){return n.coerce(t,e,f,r,i)}var d,g=p(\"a\"),m=p(\"b\"),v=p(\"c\");if(g?(d=g.length,m?(d=Math.min(d,m.length),v&&(d=Math.min(d,v.length))):d=v?Math.min(d,v.length):0):m&&v&&(d=Math.min(m.length,v.length)),d){e._length=d,p(\"sum\"),p(\"text\"),p(\"hovertext\"),\"fills\"!==e.hoveron&&p(\"hovertemplate\"),p(\"mode\",d<i.PTS_LINESONLY?\"lines+markers\":\"lines\"),a.hasLines(e)&&(s(t,e,r,h,p),l(t,e,p),p(\"connectgaps\")),a.hasMarkers(e)&&o(t,e,r,h,p,{gradient:!0}),a.hasText(e)&&(p(\"texttemplate\"),c(t,e,h,p));var y=[];(a.hasMarkers(e)||a.hasText(e))&&(p(\"cliponaxis\"),p(\"marker.maxdisplayed\"),y.push(\"points\")),p(\"fill\"),\"none\"!==e.fill&&(u(t,e,r,p),a.hasLines(e)||l(t,e,p)),\"tonext\"!==e.fill&&\"toself\"!==e.fill||y.push(\"fills\"),p(\"hoveron\",y.join(\"+\")||\"points\"),n.coerceSelectionMarkerOpacity(e,p)}else e.visible=!1}},{\"../../lib\":778,\"../scatter/constants\":1191,\"../scatter/fillcolor_defaults\":1195,\"../scatter/line_defaults\":1200,\"../scatter/line_shape_defaults\":1202,\"../scatter/marker_defaults\":1206,\"../scatter/subtypes\":1212,\"../scatter/text_defaults\":1213,\"./attributes\":1275}],1278:[function(t,e,r){\"use strict\";e.exports=function(t,e,r,n,i){if(e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),n[i]){var a=n[i];t.a=a.a,t.b=a.b,t.c=a.c}else t.a=e.a,t.b=e.b,t.c=e.c;return t}},{}],1279:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\");e.exports=function(t,e,r){var i={},a=r[e.subplot]._subplot;return i.aLabel=n.tickText(a.aaxis,t.a,!0).text,i.bLabel=n.tickText(a.baxis,t.b,!0).text,i.cLabel=n.tickText(a.caxis,t.c,!0).text,i}},{\"../../plots/cartesian/axes\":828}],1280:[function(t,e,r){\"use strict\";var n=t(\"../scatter/hover\");e.exports=function(t,e,r,i){var a=n(t,e,r,i);if(a&&!1!==a[0].index){var o=a[0];if(void 0===o.index){var s=1-o.y0/t.ya._length,l=t.xa._length,c=l*s/2,u=l-c;return o.x0=Math.max(Math.min(o.x0,u),c),o.x1=Math.max(Math.min(o.x1,u),c),a}var f=o.cd[o.index],h=o.trace,p=o.subplot;o.a=f.a,o.b=f.b,o.c=f.c,o.xLabelVal=void 0,o.yLabelVal=void 0;var d={};d[h.subplot]={_subplot:p};var g=h._module.formatLabels(f,h,d);o.aLabel=g.aLabel,o.bLabel=g.bLabel,o.cLabel=g.cLabel;var m=f.hi||h.hoverinfo,v=[];if(!h.hovertemplate){var y=m.split(\"+\");-1!==y.indexOf(\"all\")&&(y=[\"a\",\"b\",\"c\"]),-1!==y.indexOf(\"a\")&&x(p.aaxis,o.aLabel),-1!==y.indexOf(\"b\")&&x(p.baxis,o.bLabel),-1!==y.indexOf(\"c\")&&x(p.caxis,o.cLabel)}return o.extraText=v.join(\"<br>\"),o.hovertemplate=h.hovertemplate,a}function x(t,e){v.push(t._hovertitle+\": \"+e)}}},{\"../scatter/hover\":1198}],1281:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),formatLabels:t(\"./format_labels\"),calc:t(\"./calc\"),plot:t(\"./plot\"),style:t(\"../scatter/style\").style,styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../scatter/select\"),eventData:t(\"./event_data\"),moduleType:\"trace\",name:\"scatterternary\",basePlotModule:t(\"../../plots/ternary\"),categories:[\"ternary\",\"symbols\",\"showLegend\",\"scatter-like\"],meta:{}}},{\"../../plots/ternary\":907,\"../scatter/marker_colorbar\":1205,\"../scatter/select\":1209,\"../scatter/style\":1211,\"./attributes\":1275,\"./calc\":1276,\"./defaults\":1277,\"./event_data\":1278,\"./format_labels\":1279,\"./hover\":1280,\"./plot\":1282}],1282:[function(t,e,r){\"use strict\";var n=t(\"../scatter/plot\");e.exports=function(t,e,r){var i=e.plotContainer;i.select(\".scatterlayer\").selectAll(\"*\").remove();var a={xaxis:e.xaxis,yaxis:e.yaxis,plot:i,layerClipId:e._hasClipOnAxisFalse?e.clipIdRelative:null},o=e.layers.frontplot.select(\"g.scatterlayer\");n(t,a,r,o)}},{\"../scatter/plot\":1208}],1283:[function(t,e,r){\"use strict\";var n=t(\"../scatter/attributes\"),i=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../scattergl/attributes\"),s=t(\"../../plots/cartesian/constants\").idRegex,l=t(\"../../plot_api/plot_template\").templatedArray,c=t(\"../../lib/extend\").extendFlat,u=n.marker,f=u.line,h=c(i(\"marker.line\",{editTypeOverride:\"calc\"}),{width:c({},f.width,{editType:\"calc\"}),editType:\"calc\"}),p=c(i(\"marker\"),{symbol:u.symbol,size:c({},u.size,{editType:\"markerSize\"}),sizeref:u.sizeref,sizemin:u.sizemin,sizemode:u.sizemode,opacity:u.opacity,colorbar:u.colorbar,line:h,editType:\"calc\"});function d(t){return{valType:\"info_array\",freeLength:!0,editType:\"calc\",items:{valType:\"subplotid\",regex:s[t],editType:\"plot\"}}}p.color.editType=p.cmin.editType=p.cmax.editType=\"style\",e.exports={dimensions:l(\"dimension\",{visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"},label:{valType:\"string\",editType:\"calc\"},values:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},axis:{type:{valType:\"enumerated\",values:[\"linear\",\"log\",\"date\",\"category\"],editType:\"calc+clearAxisTypes\"},matches:{valType:\"boolean\",dflt:!1,editType:\"calc\"},editType:\"calc+clearAxisTypes\"},editType:\"calc+clearAxisTypes\"}),text:c({},o.text,{}),hovertext:c({},o.hovertext,{}),hovertemplate:a(),marker:p,xaxes:d(\"x\"),yaxes:d(\"y\"),diagonal:{visible:{valType:\"boolean\",dflt:!0,editType:\"calc\"},editType:\"calc\"},showupperhalf:{valType:\"boolean\",dflt:!0,editType:\"calc\"},showlowerhalf:{valType:\"boolean\",dflt:!0,editType:\"calc\"},selected:{marker:o.selected.marker,editType:\"calc\"},unselected:{marker:o.unselected.marker,editType:\"calc\"},opacity:o.opacity}},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plot_api/plot_template\":817,\"../../plots/cartesian/constants\":834,\"../../plots/template_attributes\":906,\"../scatter/attributes\":1187,\"../scattergl/attributes\":1239}],1284:[function(t,e,r){\"use strict\";var n=t(\"regl-line2d\"),i=t(\"../../registry\"),a=t(\"../../lib/prepare_regl\"),o=t(\"../../plots/get_data\").getModuleCalcData,s=t(\"../../plots/cartesian\"),l=t(\"../../plots/cartesian/axis_ids\").getFromId,c=t(\"../../plots/cartesian/axes\").shouldShowZeroLine;function u(t,e,r){for(var n=r.matrixOptions.data.length,i=e._visibleDims,a=r.viewOpts.ranges=new Array(n),o=0;o<i.length;o++){var s=i[o],c=a[o]=new Array(4),u=l(t,e._diag[s][0]);u&&(c[0]=u.r2l(u.range[0]),c[2]=u.r2l(u.range[1]));var f=l(t,e._diag[s][1]);f&&(c[1]=f.r2l(f.range[0]),c[3]=f.r2l(f.range[1]))}r.selectBatch.length||r.unselectBatch.length?r.matrix.update({ranges:a},{ranges:a}):r.matrix.update({ranges:a})}function f(t){var e=t._fullLayout,r=e._glcanvas.data()[0].regl,i=e._splomGrid;i||(i=e._splomGrid=n(r)),i.update(function(t){var e,r=t._fullLayout,n=r._size,i=[0,0,r.width,r.height],a={};function o(t,e,r,n,o,s){var l=e[t+\"color\"],c=e[t+\"width\"],u=String(l+c);u in a?a[u].data.push(NaN,NaN,r,n,o,s):a[u]={data:[r,n,o,s],join:\"rect\",thickness:c,color:l,viewport:i,range:i,overlay:!1}}for(e in r._splomSubplots){var s,l,u=r._plots[e],f=u.xaxis,h=u.yaxis,p=f._gridVals,d=h._gridVals,g=n.b+h.domain[0]*n.h,m=-h._m,v=-m*h.r2l(h.range[0],h.calendar);if(f.showgrid)for(e=0;e<p.length;e++)s=f._offset+f.l2p(p[e].x),o(\"grid\",f,s,g,s,g+h._length);if(h.showgrid)for(e=0;e<d.length;e++)l=g+v+m*d[e].x,o(\"grid\",h,f._offset,l,f._offset+f._length,l);c(t,f,h)&&(s=f._offset+f.l2p(0),o(\"zeroline\",f,s,g,s,g+h._length)),c(t,h,f)&&(l=g+v+0,o(\"zeroline\",h,f._offset,l,f._offset+f._length,l))}var y=[];for(e in a)y.push(a[e]);return y}(t))}e.exports={name:\"splom\",attr:s.attr,attrRegex:s.attrRegex,layoutAttributes:s.layoutAttributes,supplyLayoutDefaults:s.supplyLayoutDefaults,drawFramework:s.drawFramework,plot:function(t){var e=t._fullLayout,r=i.getModule(\"splom\"),n=o(t.calcdata,r)[0];a(t,[\"ANGLE_instanced_arrays\",\"OES_element_index_uint\"])&&(e._hasOnlyLargeSploms&&f(t),r.plot(t,{},n))},drag:function(t){var e=t.calcdata,r=t._fullLayout;r._hasOnlyLargeSploms&&f(t);for(var n=0;n<e.length;n++){var i=e[n][0].trace,a=r._splomScenes[i.uid];\"splom\"===i.type&&a&&a.matrix&&u(t,i,a)}},updateGrid:f,clean:function(t,e,r,n){var i,a={};if(n._splomScenes){for(i=0;i<t.length;i++){var o=t[i];\"splom\"===o.type&&(a[o.uid]=1)}for(i=0;i<r.length;i++){var l=r[i];if(!a[l.uid]){var c=n._splomScenes[l.uid];c&&c.destroy&&c.destroy(),n._splomScenes[l.uid]=null,delete n._splomScenes[l.uid]}}}0===Object.keys(n._splomScenes||{}).length&&delete n._splomScenes,n._splomGrid&&!e._hasOnlyLargeSploms&&n._hasOnlyLargeSploms&&(n._splomGrid.destroy(),n._splomGrid=null,delete n._splomGrid),s.clean(t,e,r,n)},updateFx:s.updateFx,toSVG:s.toSVG}},{\"../../lib/prepare_regl\":791,\"../../plots/cartesian\":841,\"../../plots/cartesian/axes\":828,\"../../plots/cartesian/axis_ids\":831,\"../../plots/get_data\":865,\"../../registry\":911,\"regl-line2d\":535}],1285:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axis_ids\"),a=t(\"../scatter/calc\").calcMarkerSize,o=t(\"../scatter/calc\").calcAxisExpansion,s=t(\"../scatter/colorscale_calc\"),l=t(\"../scattergl/convert\").markerSelection,c=t(\"../scattergl/convert\").markerStyle,u=t(\"./scene_update\"),f=t(\"../../constants/numerical\").BADNUM,h=t(\"../scattergl/constants\").TOO_MANY_POINTS;e.exports=function(t,e){var r,p,d,g,m,v,y=e.dimensions,x=e._length,b={},_=b.cdata=[],w=b.data=[],T=e._visibleDims=[];function k(t,r){for(var i=t.makeCalcdata({v:r.values,vcalendar:e.calendar},\"v\"),a=0;a<i.length;a++)i[a]=i[a]===f?NaN:i[a];_.push(i),w.push(\"log\"===t.type?n.simpleMap(i,t.c2l):i)}for(r=0;r<y.length;r++)if((d=y[r]).visible){if(g=i.getFromId(t,e._diag[r][0]),m=i.getFromId(t,e._diag[r][1]),g&&m&&g.type!==m.type){n.log(\"Skipping splom dimension \"+r+\" with conflicting axis types\");continue}g?(k(g,d),m&&\"category\"===m.type&&(m._categories=g._categories.slice())):k(m,d),T.push(r)}for(s(t,e),n.extendFlat(b,c(e)),v=_.length*x>h?2*(b.sizeAvg||Math.max(b.size,3)):a(e,x),p=0;p<T.length;p++)d=y[r=T[p]],g=i.getFromId(t,e._diag[r][0])||{},m=i.getFromId(t,e._diag[r][1])||{},o(t,e,g,m,_[p],_[p],v);var M=u(t,e);return M.matrix||(M.matrix=!0),M.matrixOptions=b,M.selectedOptions=l(e,e.selected),M.unselectedOptions=l(e,e.unselected),[{x:!1,y:!1,t:{},trace:e}]}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../../plots/cartesian/axis_ids\":831,\"../scatter/calc\":1188,\"../scatter/colorscale_calc\":1190,\"../scattergl/constants\":1241,\"../scattergl/convert\":1242,\"./scene_update\":1292}],1286:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/array_container_defaults\"),a=t(\"./attributes\"),o=t(\"../scatter/subtypes\"),s=t(\"../scatter/marker_defaults\"),l=t(\"../parcoords/merge_length\"),c=t(\"../scattergl/helpers\").isOpenSymbol;function u(t,e){function r(r,i){return n.coerce(t,e,a.dimensions,r,i)}r(\"label\");var i=r(\"values\");i&&i.length?r(\"visible\"):e.visible=!1,r(\"axis.type\"),r(\"axis.matches\")}e.exports=function(t,e,r,f){function h(r,i){return n.coerce(t,e,a,r,i)}var p=i(t,e,{name:\"dimensions\",handleItemDefaults:u}),d=h(\"diagonal.visible\"),g=h(\"showupperhalf\"),m=h(\"showlowerhalf\");if(l(e,p,\"values\")&&(d||g||m)){h(\"text\"),h(\"hovertext\"),h(\"hovertemplate\"),s(t,e,r,f,h);var v=c(e.marker.symbol),y=o.isBubble(e);h(\"marker.line.width\",v||y?1:0),function(t,e,r,n){var i,a,o=e.dimensions,s=o.length,l=e.showupperhalf,c=e.showlowerhalf,u=e.diagonal.visible,f=new Array(s),h=new Array(s);for(i=0;i<s;i++){var p=i?i+1:\"\";f[i]=\"x\"+p,h[i]=\"y\"+p}var d=n(\"xaxes\",f),g=n(\"yaxes\",h),m=e._diag=new Array(s);e._xaxes={},e._yaxes={};var v=[],y=[];function x(t,n,i,a){if(t){var o=t.charAt(0),s=r._splomAxes[o];if(e[\"_\"+o+\"axes\"][t]=1,a.push(t),!(t in s)){var l=s[t]={};i&&(l.label=i.label||\"\",i.visible&&i.axis&&(i.axis.type&&(l.type=i.axis.type),i.axis.matches&&(l.matches=n)))}}}var b=!u&&!c,_=!u&&!l;for(e._axesDim={},i=0;i<s;i++){var w=o[i],T=0===i,k=i===s-1,M=T&&b||k&&_?void 0:d[i],A=T&&_||k&&b?void 0:g[i];x(M,A,w,v),x(A,M,w,y),m[i]=[M,A],e._axesDim[M]=i,e._axesDim[A]=i}for(i=0;i<v.length;i++)for(a=0;a<y.length;a++){var S=v[i]+y[a];i>a&&l||i<a&&c?r._splomSubplots[S]=1:i!==a||!u&&c&&l||(r._splomSubplots[S]=1)}(!c||!u&&l&&c)&&(r._splomGridDflt.xside=\"bottom\",r._splomGridDflt.yside=\"left\")}(0,e,f,h),n.coerceSelectionMarkerOpacity(e,h)}else e.visible=!1}},{\"../../lib\":778,\"../../plots/array_container_defaults\":823,\"../parcoords/merge_length\":1158,\"../scatter/marker_defaults\":1206,\"../scatter/subtypes\":1212,\"../scattergl/helpers\":1246,\"./attributes\":1283}],1287:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../scatter/colorscale_calc\"),a=t(\"../scattergl/convert\").markerStyle;e.exports=function(t,e){var r=e.trace,o=t._fullLayout._splomScenes[r.uid];if(o){i(t,r),n.extendFlat(o.matrixOptions,a(r));var s=n.extendFlat({},o.matrixOptions,o.viewOpts);o.matrix.update(s,null)}}},{\"../../lib\":778,\"../scatter/colorscale_calc\":1190,\"../scattergl/convert\":1242}],1288:[function(t,e,r){\"use strict\";r.getDimIndex=function(t,e){for(var r=e._id,n={x:0,y:1}[r.charAt(0)],i=t._visibleDims,a=0;a<i.length;a++){var o=i[a];if(t._diag[o][n]===r)return a}return!1}},{}],1289:[function(t,e,r){\"use strict\";var n=t(\"./helpers\"),i=t(\"../scattergl/hover\").calcHover;e.exports={hoverPoints:function(t,e,r){var a=t.cd[0].trace,o=t.scene.matrixOptions.cdata,s=t.xa,l=t.ya,c=s.c2p(e),u=l.c2p(r),f=t.distance,h=n.getDimIndex(a,s),p=n.getDimIndex(a,l);if(!1===h||!1===p)return[t];for(var d,g,m=o[h],v=o[p],y=f,x=0;x<m.length;x++){var b=m[x],_=v[x],w=s.c2p(b)-c,T=l.c2p(_)-u,k=Math.sqrt(w*w+T*T);k<y&&(y=g=k,d=x)}return t.index=d,t.distance=y,t.dxy=g,void 0===d?[t]:[i(t,m,v,a)]}}},{\"../scattergl/hover\":1247,\"./helpers\":1288}],1290:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../components/grid\");e.exports={moduleType:\"trace\",name:\"splom\",basePlotModule:t(\"./base_plot\"),categories:[\"gl\",\"regl\",\"cartesian\",\"symbols\",\"showLegend\",\"scatter-like\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:t(\"../scatter/marker_colorbar\"),calc:t(\"./calc\"),plot:t(\"./plot\"),hoverPoints:t(\"./hover\").hoverPoints,selectPoints:t(\"./select\"),editStyle:t(\"./edit_style\"),meta:{}},n.register(i)},{\"../../components/grid\":687,\"../../registry\":911,\"../scatter/marker_colorbar\":1205,\"./attributes\":1283,\"./base_plot\":1284,\"./calc\":1285,\"./defaults\":1286,\"./edit_style\":1287,\"./hover\":1289,\"./plot\":1291,\"./select\":1293}],1291:[function(t,e,r){\"use strict\";var n=t(\"regl-splom\"),i=t(\"../../lib\"),a=t(\"../../plots/cartesian/axis_ids\"),o=t(\"../../components/dragelement/helpers\").selectMode;function s(t,e){var r,s,l,c,u,f=t._fullLayout,h=f._size,p=e.trace,d=e.t,g=f._splomScenes[p.uid],m=g.matrixOptions,v=m.cdata,y=f._glcanvas.data()[0].regl,x=f.dragmode;if(0!==v.length){m.lower=p.showupperhalf,m.upper=p.showlowerhalf,m.diagonal=p.diagonal.visible;var b=p._visibleDims,_=v.length,w=g.viewOpts={};for(w.ranges=new Array(_),w.domains=new Array(_),u=0;u<b.length;u++){l=b[u];var T=w.ranges[u]=new Array(4),k=w.domains[u]=new Array(4);(r=a.getFromId(t,p._diag[l][0]))&&(T[0]=r._rl[0],T[2]=r._rl[1],k[0]=r.domain[0],k[2]=r.domain[1]),(s=a.getFromId(t,p._diag[l][1]))&&(T[1]=s._rl[0],T[3]=s._rl[1],k[1]=s.domain[0],k[3]=s.domain[1])}w.viewport=[h.l,h.b,h.w+h.l,h.h+h.b],!0===g.matrix&&(g.matrix=n(y));var M=f.clickmode.indexOf(\"select\")>-1,A=!0;if(o(x)||!!p.selectedpoints||M){var S=p._length;if(p.selectedpoints){g.selectBatch=p.selectedpoints;var E=p.selectedpoints,C={};for(l=0;l<E.length;l++)C[E[l]]=!0;var L=[];for(l=0;l<S;l++)C[l]||L.push(l);g.unselectBatch=L}var I=d.xpx=new Array(_),P=d.ypx=new Array(_);for(u=0;u<b.length;u++){if(l=b[u],r=a.getFromId(t,p._diag[l][0]))for(I[u]=new Array(S),c=0;c<S;c++)I[u][c]=r.c2p(v[u][c]);if(s=a.getFromId(t,p._diag[l][1]))for(P[u]=new Array(S),c=0;c<S;c++)P[u][c]=s.c2p(v[u][c])}if(g.selectBatch.length||g.unselectBatch.length){var z=i.extendFlat({},m,g.unselectedOptions,w),O=i.extendFlat({},m,g.selectedOptions,w);g.matrix.update(z,O),A=!1}}else d.xpx=d.ypx=null;if(A){var D=i.extendFlat({},m,w);g.matrix.update(D,null)}}}e.exports=function(t,e,r){if(r.length)for(var n=0;n<r.length;n++)s(t,r[n][0])}},{\"../../components/dragelement/helpers\":661,\"../../lib\":778,\"../../plots/cartesian/axis_ids\":831,\"regl-splom\":539}],1292:[function(t,e,r){\"use strict\";var n=t(\"../../lib\");e.exports=function(t,e){var r=t._fullLayout,i=e.uid,a=r._splomScenes;a||(a=r._splomScenes={});var o={dirty:!0,selectBatch:[],unselectBatch:[]},s=a[e.uid];return s||((s=a[i]=n.extendFlat({},o,{matrix:!1,selectBatch:[],unselectBatch:[]})).draw=function(){s.matrix&&s.matrix.draw&&(s.selectBatch.length||s.unselectBatch.length?s.matrix.draw(s.unselectBatch,s.selectBatch):s.matrix.draw()),s.dirty=!1},s.destroy=function(){s.matrix&&s.matrix.destroy&&s.matrix.destroy(),s.matrixOptions=null,s.selectBatch=null,s.unselectBatch=null,s=null}),s.dirty||n.extendFlat(s,o),s}},{\"../../lib\":778}],1293:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../scatter/subtypes\"),a=t(\"./helpers\");e.exports=function(t,e){var r=t.cd,o=r[0].trace,s=r[0].t,l=t.scene,c=l.matrixOptions.cdata,u=t.xaxis,f=t.yaxis,h=[];if(!l)return h;var p=!i.hasMarkers(o)&&!i.hasText(o);if(!0!==o.visible||p)return h;var d=a.getDimIndex(o,u),g=a.getDimIndex(o,f);if(!1===d||!1===g)return h;var m=s.xpx[d],v=s.ypx[g],y=c[d],x=c[g],b=[],_=[];if(!1!==e&&!e.degenerate)for(var w=0;w<y.length;w++)e.contains([m[w],v[w]],null,w,t)?(b.push(w),h.push({pointNumber:w,x:y[w],y:x[w]})):_.push(w);var T=l.matrixOptions;return b.length||_.length?l.selectBatch.length||l.unselectBatch.length||l.matrix.update(l.unselectedOptions,n.extendFlat({},T,l.selectedOptions,l.viewOpts)):l.matrix.update(T,null),l.selectBatch=b,l.unselectBatch=_,h}},{\"../../lib\":778,\"../scatter/subtypes\":1212,\"./helpers\":1288}],1294:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../mesh3d/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l={x:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},y:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},z:{valType:\"data_array\",editType:\"calc+clearAxisTypes\"},u:{valType:\"data_array\",editType:\"calc\"},v:{valType:\"data_array\",editType:\"calc\"},w:{valType:\"data_array\",editType:\"calc\"},starts:{x:{valType:\"data_array\",editType:\"calc\"},y:{valType:\"data_array\",editType:\"calc\"},z:{valType:\"data_array\",editType:\"calc\"},editType:\"calc\"},maxdisplayed:{valType:\"integer\",min:0,dflt:1e3,editType:\"calc\"},sizeref:{valType:\"number\",editType:\"calc\",min:0,dflt:1},text:{valType:\"string\",dflt:\"\",editType:\"calc\"},hovertext:{valType:\"string\",dflt:\"\",editType:\"calc\"},hovertemplate:i({editType:\"calc\"},{keys:[\"tubex\",\"tubey\",\"tubez\",\"tubeu\",\"tubev\",\"tubew\",\"norm\",\"divergence\"]}),showlegend:s({},o.showlegend,{dflt:!1})};s(l,n(\"\",{colorAttr:\"u/v/w norm\",showScaleDflt:!0,editTypeOverride:\"calc\"}));[\"opacity\",\"lightposition\",\"lighting\"].forEach((function(t){l[t]=a[t]})),l.hoverinfo=s({},o.hoverinfo,{editType:\"calc\",flags:[\"x\",\"y\",\"z\",\"u\",\"v\",\"w\",\"norm\",\"divergence\",\"text\",\"name\"],dflt:\"x+y+z+norm+text+name\"}),l.transforms=void 0,e.exports=l},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../mesh3d/attributes\":1128}],1295:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/colorscale/calc\");function a(t){var e,r,i,a,s,l,c,u,f,h,p,d,g=t._x,m=t._y,v=t._z,y=t._len,x=-1/0,b=1/0,_=-1/0,w=1/0,T=-1/0,k=1/0,M=\"\";for(y&&(c=g[0],f=m[0],p=v[0]),y>1&&(u=g[y-1],h=m[y-1],d=v[y-1]),e=0;e<y;e++)x=Math.max(x,g[e]),b=Math.min(b,g[e]),_=Math.max(_,m[e]),w=Math.min(w,m[e]),T=Math.max(T,v[e]),k=Math.min(k,v[e]),a||g[e]===c||(a=!0,M+=\"x\"),s||m[e]===f||(s=!0,M+=\"y\"),l||v[e]===p||(l=!0,M+=\"z\");a||(M+=\"x\"),s||(M+=\"y\"),l||(M+=\"z\");var A=o(t._x),S=o(t._y),E=o(t._z);M=(M=(M=M.replace(\"x\",(c>u?\"-\":\"+\")+\"x\")).replace(\"y\",(f>h?\"-\":\"+\")+\"y\")).replace(\"z\",(p>d?\"-\":\"+\")+\"z\");var C=function(){y=0,A=[],S=[],E=[]};(!y||y<A.length*S.length*E.length)&&C();var L=function(t){return\"x\"===t?g:\"y\"===t?m:v},I=function(t){return\"x\"===t?A:\"y\"===t?S:E},P=function(t){return t[y-1]<t[0]?-1:1},z=L(M[1]),O=L(M[3]),D=L(M[5]),R=I(M[1]).length,F=I(M[3]).length,B=I(M[5]).length,N=!1,j=function(t,e,r){return R*(F*t+e)+r},U=P(L(M[1])),V=P(L(M[3])),q=P(L(M[5]));for(e=0;e<B-1;e++){for(r=0;r<F-1;r++){for(i=0;i<R-1;i++){var H=j(e,r,i),G=j(e,r,i+1),Y=j(e,r+1,i),W=j(e+1,r,i);if(z[H]*U<z[G]*U&&O[H]*V<O[Y]*V&&D[H]*q<D[W]*q||(N=!0),N)break}if(N)break}if(N)break}return N&&(n.warn(\"Encountered arbitrary coordinates! Unable to input data grid.\"),C()),{xMin:b,yMin:w,zMin:k,xMax:x,yMax:_,zMax:T,Xs:A,Ys:S,Zs:E,len:y,fill:M}}function o(t){return n.distinctVals(t).vals}function s(t,e){if(void 0===e&&(e=t.length),n.isTypedArray(t))return t.subarray(0,e);for(var r=[],i=0;i<e;i++)r[i]=+t[i];return r}e.exports={calc:function(t,e){e._len=Math.min(e.u.length,e.v.length,e.w.length,e.x.length,e.y.length,e.z.length),e._u=s(e.u,e._len),e._v=s(e.v,e._len),e._w=s(e.w,e._len),e._x=s(e.x,e._len),e._y=s(e.y,e._len),e._z=s(e.z,e._len);var r=a(e);e._gridFill=r.fill,e._Xs=r.Xs,e._Ys=r.Ys,e._Zs=r.Zs,e._len=r.len;var n,o,l,c=0;e.starts&&(n=s(e.starts.x||[]),o=s(e.starts.y||[]),l=s(e.starts.z||[]),c=Math.min(n.length,o.length,l.length)),e._startsX=n||[],e._startsY=o||[],e._startsZ=l||[];var u,f=0,h=1/0;for(u=0;u<e._len;u++){var p=e._u[u],d=e._v[u],g=e._w[u],m=Math.sqrt(p*p+d*d+g*g);f=Math.max(f,m),h=Math.min(h,m)}for(i(t,e,{vals:[h,f],containerStr:\"\",cLetter:\"c\"}),u=0;u<c;u++){var v=n[u];r.xMax=Math.max(r.xMax,v),r.xMin=Math.min(r.xMin,v);var y=o[u];r.yMax=Math.max(r.yMax,y),r.yMin=Math.min(r.yMin,y);var x=l[u];r.zMax=Math.max(r.zMax,x),r.zMin=Math.min(r.zMin,x)}e._slen=c,e._normMax=f,e._xbnds=[r.xMin,r.xMax],e._ybnds=[r.yMin,r.yMax],e._zbnds=[r.zMin,r.zMax]},filter:s,processGrid:a}},{\"../../components/colorscale/calc\":651,\"../../lib\":778}],1296:[function(t,e,r){\"use strict\";var n=t(\"gl-streamtube3d\"),i=n.createTubeMesh,a=t(\"../../lib\"),o=t(\"../../lib/gl_format_color\").parseColorScale,s=t(\"../../components/colorscale\").extractOpts,l=t(\"../../plots/gl3d/zip3\"),c={xaxis:0,yaxis:1,zaxis:2};function u(t,e){this.scene=t,this.uid=e,this.mesh=null,this.data=null}var f=u.prototype;function h(t){var e=t.length;return e>2?t.slice(1,e-1):2===e?[(t[0]+t[1])/2]:t}function p(t){var e=t.length;return 1===e?[.5,.5]:[t[1]-t[0],t[e-1]-t[e-2]]}function d(t,e){var r=t.fullSceneLayout,i=t.dataScale,u=e._len,f={};function d(t,e){var n=r[e],o=i[c[e]];return a.simpleMap(t,(function(t){return n.d2l(t)*o}))}if(f.vectors=l(d(e._u,\"xaxis\"),d(e._v,\"yaxis\"),d(e._w,\"zaxis\"),u),!u)return{positions:[],cells:[]};var g=d(e._Xs,\"xaxis\"),m=d(e._Ys,\"yaxis\"),v=d(e._Zs,\"zaxis\");if(f.meshgrid=[g,m,v],f.gridFill=e._gridFill,e._slen)f.startingPositions=l(d(e._startsX,\"xaxis\"),d(e._startsY,\"yaxis\"),d(e._startsZ,\"zaxis\"));else{for(var y=m[0],x=h(g),b=h(v),_=new Array(x.length*b.length),w=0,T=0;T<x.length;T++)for(var k=0;k<b.length;k++)_[w++]=[x[T],y,b[k]];f.startingPositions=_}f.colormap=o(e),f.tubeSize=e.sizeref,f.maxLength=e.maxdisplayed;var M=d(e._xbnds,\"xaxis\"),A=d(e._ybnds,\"yaxis\"),S=d(e._zbnds,\"zaxis\"),E=p(g),C=p(m),L=p(v),I=[[M[0]-E[0],A[0]-C[0],S[0]-L[0]],[M[1]+E[1],A[1]+C[1],S[1]+L[1]]],P=n(f,I),z=s(e);P.vertexIntensityBounds=[z.min/e._normMax,z.max/e._normMax];var O=e.lightposition;return P.lightPosition=[O.x,O.y,O.z],P.ambient=e.lighting.ambient,P.diffuse=e.lighting.diffuse,P.specular=e.lighting.specular,P.roughness=e.lighting.roughness,P.fresnel=e.lighting.fresnel,P.opacity=e.opacity,e._pad=P.tubeScale*e.sizeref*2,P}f.handlePick=function(t){var e=this.scene.fullSceneLayout,r=this.scene.dataScale;function n(t,n){var i=e[n],a=r[c[n]];return i.l2c(t)/a}if(t.object===this.mesh){var i=t.data.position,a=t.data.velocity;return t.traceCoordinate=[n(i[0],\"xaxis\"),n(i[1],\"yaxis\"),n(i[2],\"zaxis\"),n(a[0],\"xaxis\"),n(a[1],\"yaxis\"),n(a[2],\"zaxis\"),t.data.intensity*this.data._normMax,t.data.divergence],t.textLabel=this.data.hovertext||this.data.text,!0}},f.update=function(t){this.data=t;var e=d(this.scene,t);this.mesh.update(e)},f.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,n=d(t,e),a=i(r,n),o=new u(t,e.uid);return o.mesh=a,o.data=e,a._trace=o,t.glplot.add(a),o}},{\"../../components/colorscale\":655,\"../../lib\":778,\"../../lib/gl_format_color\":774,\"../../plots/gl3d/zip3\":881,\"gl-streamtube3d\":348}],1297:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/colorscale/defaults\"),a=t(\"./attributes\");e.exports=function(t,e,r,o){function s(r,i){return n.coerce(t,e,a,r,i)}var l=s(\"u\"),c=s(\"v\"),u=s(\"w\"),f=s(\"x\"),h=s(\"y\"),p=s(\"z\");l&&l.length&&c&&c.length&&u&&u.length&&f&&f.length&&h&&h.length&&p&&p.length?(s(\"starts.x\"),s(\"starts.y\"),s(\"starts.z\"),s(\"maxdisplayed\"),s(\"sizeref\"),s(\"lighting.ambient\"),s(\"lighting.diffuse\"),s(\"lighting.specular\"),s(\"lighting.roughness\"),s(\"lighting.fresnel\"),s(\"lightposition.x\"),s(\"lightposition.y\"),s(\"lightposition.z\"),i(t,e,o,s,{prefix:\"\",cLetter:\"c\"}),s(\"text\"),s(\"hovertext\"),s(\"hovertemplate\"),e._length=null):e.visible=!1}},{\"../../components/colorscale/defaults\":653,\"../../lib\":778,\"./attributes\":1294}],1298:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"streamtube\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"showLegend\"],attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),colorbar:{min:\"cmin\",max:\"cmax\"},calc:t(\"./calc\").calc,plot:t(\"./convert\"),eventData:function(t,e){return t.tubex=t.x,t.tubey=t.y,t.tubez=t.z,t.tubeu=e.traceCoordinate[3],t.tubev=e.traceCoordinate[4],t.tubew=e.traceCoordinate[5],t.norm=e.traceCoordinate[6],t.divergence=e.traceCoordinate[7],delete t.x,delete t.y,delete t.z,t},meta:{}}},{\"../../plots/gl3d\":870,\"./attributes\":1294,\"./calc\":1295,\"./convert\":1296,\"./defaults\":1297}],1299:[function(t,e,r){\"use strict\";var n=t(\"../../plots/attributes\"),i=t(\"../../plots/template_attributes\").hovertemplateAttrs,a=t(\"../../plots/template_attributes\").texttemplateAttrs,o=t(\"../../components/colorscale/attributes\"),s=t(\"../../plots/domain\").attributes,l=t(\"../pie/attributes\"),c=t(\"./constants\"),u=t(\"../../lib/extend\").extendFlat;e.exports={labels:{valType:\"data_array\",editType:\"calc\"},parents:{valType:\"data_array\",editType:\"calc\"},values:{valType:\"data_array\",editType:\"calc\"},branchvalues:{valType:\"enumerated\",values:[\"remainder\",\"total\"],dflt:\"remainder\",editType:\"calc\"},count:{valType:\"flaglist\",flags:[\"branches\",\"leaves\"],dflt:\"leaves\",editType:\"calc\"},level:{valType:\"any\",editType:\"plot\",anim:!0},maxdepth:{valType:\"integer\",editType:\"plot\",dflt:-1},marker:u({colors:{valType:\"data_array\",editType:\"calc\"},line:{color:u({},l.marker.line.color,{dflt:null}),width:u({},l.marker.line.width,{dflt:1}),editType:\"calc\"},editType:\"calc\"},o(\"marker\",{colorAttr:\"colors\",anim:!1})),leaf:{opacity:{valType:\"number\",editType:\"style\",min:0,max:1},editType:\"plot\"},text:l.text,textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"value\",\"current path\",\"percent root\",\"percent entry\",\"percent parent\"],extras:[\"none\"],editType:\"plot\"},texttemplate:a({editType:\"plot\"},{keys:c.eventDataKeys.concat([\"label\",\"value\"])}),hovertext:l.hovertext,hoverinfo:u({},n.hoverinfo,{flags:[\"label\",\"text\",\"value\",\"name\",\"current path\",\"percent root\",\"percent entry\",\"percent parent\"],dflt:\"label+text+value+name\"}),hovertemplate:i({},{keys:c.eventDataKeys}),textfont:l.textfont,insidetextorientation:l.insidetextorientation,insidetextfont:l.insidetextfont,outsidetextfont:u({},l.outsidetextfont,{}),rotation:{valType:\"angle\",dflt:0,editType:\"plot\"},sort:l.sort,root:{color:{valType:\"color\",editType:\"calc\",dflt:\"rgba(0,0,0,0)\"},editType:\"calc\"},domain:s({name:\"sunburst\",trace:!0,editType:\"calc\"})}},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/domain\":855,\"../../plots/template_attributes\":906,\"../pie/attributes\":1161,\"./constants\":1302}],1300:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"sunburst\",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{\"../../plots/plots\":891}],1301:[function(t,e,r){\"use strict\";var n=t(\"d3-hierarchy\"),i=t(\"fast-isnumeric\"),a=t(\"../../lib\"),o=t(\"../../components/colorscale\").makeColorScaleFuncFromTrace,s=t(\"../pie/calc\").makePullColorFn,l=t(\"../pie/calc\").generateExtendedColors,c=t(\"../../components/colorscale\").calc,u=t(\"../../constants/numerical\").ALMOST_EQUAL,f={},h={};r.calc=function(t,e){var r,l,f,h,p,d,g=t._fullLayout,m=e.ids,v=a.isArrayOrTypedArray(m),y=e.labels,x=e.parents,b=e.values,_=a.isArrayOrTypedArray(b),w=[],T={},k={},M=function(t){return t||\"number\"==typeof t},A=function(t){return!_||i(b[t])&&b[t]>=0};v?(r=Math.min(m.length,x.length),l=function(t){return M(m[t])&&A(t)},f=function(t){return String(m[t])}):(r=Math.min(y.length,x.length),l=function(t){return M(y[t])&&A(t)},f=function(t){return String(y[t])}),_&&(r=Math.min(r,b.length));for(var S=0;S<r;S++)if(l(S)){var E=f(S),C=M(x[S])?String(x[S]):\"\",L={i:S,id:E,pid:C,label:M(y[S])?String(y[S]):\"\"};_&&(L.v=+b[S]),w.push(L),p=E,T[h=C]?T[h].push(p):T[h]=[p],k[p]=1}if(T[\"\"]){if(T[\"\"].length>1){for(var I=a.randstr(),P=0;P<w.length;P++)\"\"===w[P].pid&&(w[P].pid=I);w.unshift({hasMultipleRoots:!0,id:I,pid:\"\",label:\"\"})}}else{var z,O=[];for(z in T)k[z]||O.push(z);if(1!==O.length)return a.warn([\"Multiple implied roots, cannot build\",e.type,\"hierarchy of\",e.name+\".\",\"These roots include:\",O.join(\", \")].join(\" \"));z=O[0],w.unshift({hasImpliedRoot:!0,id:z,pid:\"\",label:z})}try{d=n.stratify().id((function(t){return t.id})).parentId((function(t){return t.pid}))(w)}catch(t){return a.warn([\"Failed to build\",e.type,\"hierarchy of\",e.name+\".\",\"Error:\",t.message].join(\" \"))}var D=n.hierarchy(d),R=!1;if(_)switch(e.branchvalues){case\"remainder\":D.sum((function(t){return t.data.v}));break;case\"total\":D.each((function(t){var r=t.data.data,n=r.v;if(t.children){var i=t.children.reduce((function(t,e){return t+e.data.data.v}),0);if((r.hasImpliedRoot||r.hasMultipleRoots)&&(n=i),n<i*u)return R=!0,a.warn([\"Total value for node\",t.data.data.id,\"of\",e.name,\"is smaller than the sum of its children.\",\"\\nparent value =\",n,\"\\nchildren sum =\",i].join(\" \"))}t.value=n}))}else!function t(e,r,n){var i=0,a=e.children;if(a){for(var o=a.length,s=0;s<o;s++)i+=t(a[s],r,n);n.branches&&i++}else n.leaves&&i++;e.value=e.data.data.value=i,r._values||(r._values=[]);return r._values[e.data.data.i]=i,i}(D,e,{branches:-1!==e.count.indexOf(\"branches\"),leaves:-1!==e.count.indexOf(\"leaves\")});if(!R){var F,B;e.sort&&D.sort((function(t,e){return e.value-t.value}));var N=e.marker.colors||[],j=!!N.length;return e._hasColorscale?(j||(N=_?e.values:e._values),c(t,e,{vals:N,containerStr:\"marker\",cLetter:\"c\"}),B=o(e.marker)):F=s(g[\"_\"+e.type+\"colormap\"]),D.each((function(t){var r=t.data.data;r.color=e._hasColorscale?B(N[r.i]):F(N[r.i],r.id)})),w[0].hierarchy=D,w}},r._runCrossTraceCalc=function(t,e){var r=e._fullLayout,n=e.calcdata,i=r[t+\"colorway\"],a=r[\"_\"+t+\"colormap\"];r[\"extend\"+t+\"colors\"]&&(i=l(i,\"treemap\"===t?h:f));var o,s=0;function c(t){var e=t.data.data,r=e.id;!1===e.color&&(a[r]?e.color=a[r]:t.parent?t.parent.parent?e.color=t.parent.data.data.color:(a[r]=e.color=i[s%i.length],s++):e.color=o)}for(var u=0;u<n.length;u++){var p=n[u][0];p.trace.type===t&&p.hierarchy&&(o=p.trace.root.color,p.hierarchy.each(c))}},r.crossTraceCalc=function(t){return r._runCrossTraceCalc(\"sunburst\",t)}},{\"../../components/colorscale\":655,\"../../constants/numerical\":753,\"../../lib\":778,\"../pie/calc\":1163,\"d3-hierarchy\":161,\"fast-isnumeric\":241}],1302:[function(t,e,r){\"use strict\";e.exports={CLICK_TRANSITION_TIME:750,CLICK_TRANSITION_EASING:\"linear\",eventDataKeys:[\"currentPath\",\"root\",\"entry\",\"percentRoot\",\"percentEntry\",\"percentParent\"]}},{}],1303:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"../../plots/domain\").defaults,o=t(\"../bar/defaults\").handleText,s=t(\"../../components/colorscale\"),l=s.hasColorscale,c=s.handleDefaults;e.exports=function(t,e,r,s){function u(r,a){return n.coerce(t,e,i,r,a)}var f=u(\"labels\"),h=u(\"parents\");if(f&&f.length&&h&&h.length){var p=u(\"values\");p&&p.length?u(\"branchvalues\"):u(\"count\"),u(\"level\"),u(\"maxdepth\"),u(\"marker.line.width\")&&u(\"marker.line.color\",s.paper_bgcolor),u(\"marker.colors\");var d=e._hasColorscale=l(t,\"marker\",\"colors\")||(t.marker||{}).coloraxis;d&&c(t,e,s,u,{prefix:\"marker.\",cLetter:\"c\"}),u(\"leaf.opacity\",d?1:.7);var g=u(\"text\");u(\"texttemplate\"),e.texttemplate||u(\"textinfo\",Array.isArray(g)?\"text+label\":\"label\"),u(\"hovertext\"),u(\"hovertemplate\");o(t,e,s,u,\"auto\",{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),u(\"insidetextorientation\"),u(\"sort\"),u(\"rotation\"),u(\"root.color\"),a(e,s,u),e._length=null}else e.visible=!1}},{\"../../components/colorscale\":655,\"../../lib\":778,\"../../plots/domain\":855,\"../bar/defaults\":925,\"./attributes\":1299}],1304:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../registry\"),a=t(\"../../components/fx/helpers\").appendArrayPointValue,o=t(\"../../components/fx\"),s=t(\"../../lib\"),l=t(\"../../lib/events\"),c=t(\"./helpers\"),u=t(\"../pie/helpers\").formatPieValue;function f(t,e,r){for(var n=t.data.data,i={curveNumber:e.index,pointNumber:n.i,data:e._input,fullData:e},o=0;o<r.length;o++){var s=r[o];s in t&&(i[s]=t[s])}return\"parentString\"in t&&!c.isHierarchyRoot(t)&&(i.parent=t.parentString),a(i,e,n.i),i}e.exports=function(t,e,r,a,h){var p=a[0],d=p.trace,g=p.hierarchy,m=\"sunburst\"===d.type,v=\"treemap\"===d.type;\"_hasHoverLabel\"in d||(d._hasHoverLabel=!1),\"_hasHoverEvent\"in d||(d._hasHoverEvent=!1);t.on(\"mouseover\",(function(i){var a=r._fullLayout;if(!r._dragging&&!1!==a.hovermode){var l=r._fullData[d.index],y=i.data.data,x=y.i,b=c.isHierarchyRoot(i),_=c.getParent(g,i),w=c.getValue(i),T=function(t){return s.castOption(l,x,t)},k=T(\"hovertemplate\"),M=o.castHoverinfo(l,a,x),A=a.separators;if(k||M&&\"none\"!==M&&\"skip\"!==M){var S,E;m&&(S=p.cx+i.pxmid[0]*(1-i.rInscribed),E=p.cy+i.pxmid[1]*(1-i.rInscribed)),v&&(S=i._hoverX,E=i._hoverY);var C,L={},I=[],P=[],z=function(t){return-1!==I.indexOf(t)};M&&(I=\"all\"===M?l._module.attributes.hoverinfo.flags:M.split(\"+\")),L.label=y.label,z(\"label\")&&L.label&&P.push(L.label),y.hasOwnProperty(\"v\")&&(L.value=y.v,L.valueLabel=u(L.value,A),z(\"value\")&&P.push(L.valueLabel)),L.currentPath=i.currentPath=c.getPath(i.data),z(\"current path\")&&!b&&P.push(L.currentPath);var O=[],D=function(){-1===O.indexOf(C)&&(P.push(C),O.push(C))};L.percentParent=i.percentParent=w/c.getValue(_),L.parent=i.parentString=c.getPtLabel(_),z(\"percent parent\")&&(C=c.formatPercent(L.percentParent,A)+\" of \"+L.parent,D()),L.percentEntry=i.percentEntry=w/c.getValue(e),L.entry=i.entry=c.getPtLabel(e),!z(\"percent entry\")||b||i.onPathbar||(C=c.formatPercent(L.percentEntry,A)+\" of \"+L.entry,D()),L.percentRoot=i.percentRoot=w/c.getValue(g),L.root=i.root=c.getPtLabel(g),z(\"percent root\")&&!b&&(C=c.formatPercent(L.percentRoot,A)+\" of \"+L.root,D()),L.text=T(\"hovertext\")||T(\"text\"),z(\"text\")&&(C=L.text,s.isValidTextValue(C)&&P.push(C));var R={trace:l,y:E,text:P.join(\"<br>\"),name:k||z(\"name\")?l.name:void 0,color:T(\"hoverlabel.bgcolor\")||y.color,borderColor:T(\"hoverlabel.bordercolor\"),fontFamily:T(\"hoverlabel.font.family\"),fontSize:T(\"hoverlabel.font.size\"),fontColor:T(\"hoverlabel.font.color\"),nameLength:T(\"hoverlabel.namelength\"),textAlign:T(\"hoverlabel.align\"),hovertemplate:k,hovertemplateLabels:L,eventData:[f(i,l,h.eventDataKeys)]};m&&(R.x0=S-i.rInscribed*i.rpx1,R.x1=S+i.rInscribed*i.rpx1,R.idealAlign=i.pxmid[0]<0?\"left\":\"right\"),v&&(R.x=S,R.idealAlign=S<0?\"left\":\"right\"),o.loneHover(R,{container:a._hoverlayer.node(),outerContainer:a._paper.node(),gd:r}),d._hasHoverLabel=!0}if(v){var F=t.select(\"path.surface\");h.styleOne(F,i,l,{hovered:!0})}d._hasHoverEvent=!0,r.emit(\"plotly_hover\",{points:[f(i,l,h.eventDataKeys)],event:n.event})}})),t.on(\"mouseout\",(function(e){var i=r._fullLayout,a=r._fullData[d.index],s=n.select(this).datum();if(d._hasHoverEvent&&(e.originalEvent=n.event,r.emit(\"plotly_unhover\",{points:[f(s,a,h.eventDataKeys)],event:n.event}),d._hasHoverEvent=!1),d._hasHoverLabel&&(o.loneUnhover(i._hoverlayer.node()),d._hasHoverLabel=!1),v){var l=t.select(\"path.surface\");h.styleOne(l,s,a,{hovered:!1})}})),t.on(\"click\",(function(t){var e=r._fullLayout,a=r._fullData[d.index],s=m&&(c.isHierarchyRoot(t)||c.isLeaf(t)),u=c.getPtId(t),p=c.isEntry(t)?c.findEntryWithChild(g,u):c.findEntryWithLevel(g,u),v=c.getPtId(p),y={points:[f(t,a,h.eventDataKeys)],event:n.event};s||(y.nextLevel=v);var x=l.triggerHandler(r,\"plotly_\"+d.type+\"click\",y);if(!1!==x&&e.hovermode&&(r._hoverdata=[f(t,a,h.eventDataKeys)],o.click(r,n.event)),!s&&!1!==x&&!r._dragging&&!r._transitioning){i.call(\"_storeDirectGUIEdit\",a,e._tracePreGUI[a.uid],{level:a.level});var b={data:[{level:v}],traces:[d.index]},_={frame:{redraw:!1,duration:h.transitionTime},transition:{duration:h.transitionTime,easing:h.transitionEasing},mode:\"immediate\",fromcurrent:!0};o.loneUnhover(e._hoverlayer.node()),i.call(\"animate\",r,b,_)}}))}},{\"../../components/fx\":683,\"../../components/fx/helpers\":679,\"../../lib\":778,\"../../lib/events\":767,\"../../registry\":911,\"../pie/helpers\":1166,\"./helpers\":1305,d3:169}],1305:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/color\"),a=t(\"../../lib/setcursor\"),o=t(\"../pie/helpers\");function s(t){return t.data.data.pid}r.findEntryWithLevel=function(t,e){var n;return e&&t.eachAfter((function(t){if(r.getPtId(t)===e)return n=t.copy()})),n||t},r.findEntryWithChild=function(t,e){var n;return t.eachAfter((function(t){for(var i=t.children||[],a=0;a<i.length;a++){var o=i[a];if(r.getPtId(o)===e)return n=t.copy()}})),n||t},r.isEntry=function(t){return!t.parent},r.isLeaf=function(t){return!t.children},r.getPtId=function(t){return t.data.data.id},r.getPtLabel=function(t){return t.data.data.label},r.getValue=function(t){return t.value},r.isHierarchyRoot=function(t){return\"\"===s(t)},r.setSliceCursor=function(t,e,n){var i=n.isTransitioning;if(!i){var o=t.datum();i=n.hideOnRoot&&r.isHierarchyRoot(o)||n.hideOnLeaves&&r.isLeaf(o)}a(t,i?null:\"pointer\")},r.getInsideTextFontKey=function(t,e,r,i,a){var o=(a||{}).onPathbar?\"pathbar.textfont\":\"insidetextfont\",s=r.data.data.i;return n.castOption(e,s,o+\".\"+t)||n.castOption(e,s,\"textfont.\"+t)||i.size},r.getOutsideTextFontKey=function(t,e,r,i){var a=r.data.data.i;return n.castOption(e,a,\"outsidetextfont.\"+t)||n.castOption(e,a,\"textfont.\"+t)||i.size},r.isOutsideText=function(t,e){return!t._hasColorscale&&r.isHierarchyRoot(e)},r.determineTextFont=function(t,e,a,o){return r.isOutsideText(t,e)?function(t,e,n){return{color:r.getOutsideTextFontKey(\"color\",t,e,n),family:r.getOutsideTextFontKey(\"family\",t,e,n),size:r.getOutsideTextFontKey(\"size\",t,e,n)}}(t,e,a):function(t,e,a,o){var s=(o||{}).onPathbar,l=e.data.data,c=l.i,u=n.castOption(t,c,(s?\"pathbar.textfont\":\"insidetextfont\")+\".color\");return!u&&t._input.textfont&&(u=n.castOption(t._input,c,\"textfont.color\")),{color:u||i.contrast(l.color),family:r.getInsideTextFontKey(\"family\",t,e,a,o),size:r.getInsideTextFontKey(\"size\",t,e,a,o)}}(t,e,a,o)},r.hasTransition=function(t){return!!(t&&t.duration>0)},r.getMaxDepth=function(t){return t.maxdepth>=0?t.maxdepth:1/0},r.isHeader=function(t,e){return!(r.isLeaf(t)||t.depth===e._maxDepth-1)},r.getParent=function(t,e){return r.findEntryWithLevel(t,s(e))},r.listPath=function(t,e){var n=t.parent;if(!n)return[];var i=e?[n.data[e]]:[n];return r.listPath(n,e).concat(i)},r.getPath=function(t){return r.listPath(t,\"label\").join(\"/\")+\"/\"},r.formatValue=o.formatPieValue,r.formatPercent=function(t,e){var r=n.formatPercent(t,0);return\"0%\"===r&&(r=o.formatPiePercent(t,e)),r}},{\"../../components/color\":643,\"../../lib\":778,\"../../lib/setcursor\":799,\"../pie/helpers\":1166}],1306:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"sunburst\",basePlotModule:t(\"./base_plot\"),categories:[],animatable:!0,attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\").plot,style:t(\"./style\").style,colorbar:t(\"../scatter/marker_colorbar\"),meta:{}}},{\"../scatter/marker_colorbar\":1205,\"./attributes\":1299,\"./base_plot\":1300,\"./calc\":1301,\"./defaults\":1303,\"./layout_attributes\":1307,\"./layout_defaults\":1308,\"./plot\":1309,\"./style\":1310}],1307:[function(t,e,r){\"use strict\";e.exports={sunburstcolorway:{valType:\"colorlist\",editType:\"calc\"},extendsunburstcolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{}],1308:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r(\"sunburstcolorway\",e.colorway),r(\"extendsunburstcolors\")}},{\"../../lib\":778,\"./layout_attributes\":1307}],1309:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"d3-hierarchy\"),a=t(\"../../components/drawing\"),o=t(\"../../lib\"),s=t(\"../../lib/svg_text_utils\"),l=t(\"../bar/uniform_text\"),c=l.recordMinTextSize,u=l.clearMinTextSize,f=t(\"../pie/plot\"),h=t(\"../pie/helpers\").getRotationAngle,p=f.computeTransform,d=f.transformInsideText,g=t(\"./style\").styleOne,m=t(\"../bar/style\").resizeText,v=t(\"./fx\"),y=t(\"./constants\"),x=t(\"./helpers\");function b(t,e,l,u){var f=t._fullLayout,m=!f.uniformtext.mode&&x.hasTransition(u),b=n.select(l).selectAll(\"g.slice\"),w=e[0],T=w.trace,k=w.hierarchy,M=x.findEntryWithLevel(k,T.level),A=x.getMaxDepth(T),S=f._size,E=T.domain,C=S.w*(E.x[1]-E.x[0]),L=S.h*(E.y[1]-E.y[0]),I=.5*Math.min(C,L),P=w.cx=S.l+S.w*(E.x[1]+E.x[0])/2,z=w.cy=S.t+S.h*(1-E.y[0])-L/2;if(!M)return b.remove();var O=null,D={};m&&b.each((function(t){D[x.getPtId(t)]={rpx0:t.rpx0,rpx1:t.rpx1,x0:t.x0,x1:t.x1,transform:t.transform},!O&&x.isEntry(t)&&(O=t)}));var R=function(t){return i.partition().size([2*Math.PI,t.height+1])(t)}(M).descendants(),F=M.height+1,B=0,N=A;w.hasMultipleRoots&&x.isHierarchyRoot(M)&&(R=R.slice(1),F-=1,B=1,N+=1),R=R.filter((function(t){return t.y1<=N}));var j=h(T.rotation);j&&R.forEach((function(t){t.x0+=j,t.x1+=j}));var U=Math.min(F,A),V=function(t){return(t-B)/U*I},q=function(t,e){return[t*Math.cos(e),-t*Math.sin(e)]},H=function(t){return o.pathAnnulus(t.rpx0,t.rpx1,t.x0,t.x1,P,z)},G=function(t){return P+_(t)[0]*(t.transform.rCenter||0)+(t.transform.x||0)},Y=function(t){return z+_(t)[1]*(t.transform.rCenter||0)+(t.transform.y||0)};(b=b.data(R,x.getPtId)).enter().append(\"g\").classed(\"slice\",!0),m?b.exit().transition().each((function(){var t=n.select(this);t.select(\"path.surface\").transition().attrTween(\"d\",(function(t){var e=function(t){var e,r=x.getPtId(t),i=D[r],a=D[x.getPtId(M)];if(a){var o=(t.x1>a.x1?2*Math.PI:0)+j;e=t.rpx1<a.rpx1?{rpx0:0,rpx1:0}:{x0:o,x1:o}}else{var s,l=x.getPtId(t.parent);b.each((function(t){if(x.getPtId(t)===l)return s=t}));var c,u=s.children;u.forEach((function(t,e){if(x.getPtId(t)===r)return c=e}));var f=u.length,h=n.interpolate(s.x0,s.x1);e={rpx0:I,rpx1:I,x0:h(c/f),x1:h((c+1)/f)}}return n.interpolate(i,e)}(t);return function(t){return H(e(t))}})),t.select(\"g.slicetext\").attr(\"opacity\",0)})).remove():b.exit().remove(),b.order();var W=null;if(m&&O){var X=x.getPtId(O);b.each((function(t){null===W&&x.getPtId(t)===X&&(W=t.x1)}))}var Z=b;function J(t){var e=t.parent,r=D[x.getPtId(e)],i={};if(r){var a=e.children,o=a.indexOf(t),s=a.length,l=n.interpolate(r.x0,r.x1);i.x0=l(o/s),i.x1=l(o/s)}else i.x0=i.x1=0;return i}m&&(Z=Z.transition().each(\"end\",(function(){var e=n.select(this);x.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!0,isTransitioning:!1})}))),Z.each((function(i){var l=n.select(this),u=o.ensureSingle(l,\"path\",\"surface\",(function(t){t.style(\"pointer-events\",\"all\")}));i.rpx0=V(i.y0),i.rpx1=V(i.y1),i.xmid=(i.x0+i.x1)/2,i.pxmid=q(i.rpx1,i.xmid),i.midangle=-(i.xmid-Math.PI/2),i.startangle=-(i.x0-Math.PI/2),i.stopangle=-(i.x1-Math.PI/2),i.halfangle=.5*Math.min(o.angleDelta(i.x0,i.x1)||Math.PI,Math.PI),i.ring=1-i.rpx0/i.rpx1,i.rInscribed=function(t){return 0===t.rpx0&&o.isFullCircle([t.x0,t.x1])?1:Math.max(0,Math.min(1/(1+1/Math.sin(t.halfangle)),t.ring/2))}(i),m?u.transition().attrTween(\"d\",(function(t){var e=function(t){var e,r=D[x.getPtId(t)],i={x0:t.x0,x1:t.x1,rpx0:t.rpx0,rpx1:t.rpx1};if(r)e=r;else if(O)if(t.parent)if(W){var a=(t.x1>W?2*Math.PI:0)+j;e={x0:a,x1:a}}else e={rpx0:I,rpx1:I},o.extendFlat(e,J(t));else e={rpx0:0,rpx1:0};else e={x0:j,x1:j};return n.interpolate(e,i)}(t);return function(t){return H(e(t))}})):u.attr(\"d\",H),l.call(v,M,t,e,{eventDataKeys:y.eventDataKeys,transitionTime:y.CLICK_TRANSITION_TIME,transitionEasing:y.CLICK_TRANSITION_EASING}).call(x.setSliceCursor,t,{hideOnRoot:!0,hideOnLeaves:!0,isTransitioning:t._transitioning}),u.call(g,i,T);var h=o.ensureSingle(l,\"g\",\"slicetext\"),b=o.ensureSingle(h,\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),_=o.ensureUniformFontSize(t,x.determineTextFont(T,i,f.font));b.text(r.formatSliceLabel(i,M,T,e,f)).classed(\"slicetext\",!0).attr(\"text-anchor\",\"middle\").call(a.font,_).call(s.convertToTspans,t);var k=a.bBox(b.node());i.transform=d(k,i,w),i.transform.targetX=G(i),i.transform.targetY=Y(i);var A=function(t,e){var r=t.transform;return p(r,e),r.fontSize=_.size,c(T.type,r,f),o.getTextTransform(r)};m?b.transition().attrTween(\"transform\",(function(t){var e=function(t){var e,r=D[x.getPtId(t)],i=t.transform;if(r)e=r;else if(e={rpx1:t.rpx1,transform:{textPosAngle:i.textPosAngle,scale:0,rotate:i.rotate,rCenter:i.rCenter,x:i.x,y:i.y}},O)if(t.parent)if(W){var a=t.x1>W?2*Math.PI:0;e.x0=e.x1=a}else o.extendFlat(e,J(t));else e.x0=e.x1=j;else e.x0=e.x1=j;var s=n.interpolate(e.transform.textPosAngle,t.transform.textPosAngle),l=n.interpolate(e.rpx1,t.rpx1),u=n.interpolate(e.x0,t.x0),h=n.interpolate(e.x1,t.x1),p=n.interpolate(e.transform.scale,i.scale),d=n.interpolate(e.transform.rotate,i.rotate),g=0===i.rCenter?3:0===e.transform.rCenter?1/3:1,m=n.interpolate(e.transform.rCenter,i.rCenter);return function(t){var e=l(t),r=u(t),n=h(t),a=function(t){return m(Math.pow(t,g))}(t),o={pxmid:q(e,(r+n)/2),rpx1:e,transform:{textPosAngle:s(t),rCenter:a,x:i.x,y:i.y}};return c(T.type,i,f),{transform:{targetX:G(o),targetY:Y(o),scale:p(t),rotate:d(t),rCenter:a}}}}(t);return function(t){return A(e(t),k)}})):b.attr(\"transform\",A(i,k))}))}function _(t){return e=t.rpx1,r=t.transform.textPosAngle,[e*Math.sin(r),-e*Math.cos(r)];var e,r}r.plot=function(t,e,r,i){var a,o,s=t._fullLayout,l=s._sunburstlayer,c=!r,f=!s.uniformtext.mode&&x.hasTransition(r);(u(\"sunburst\",s),(a=l.selectAll(\"g.trace.sunburst\").data(e,(function(t){return t[0].trace.uid}))).enter().append(\"g\").classed(\"trace\",!0).classed(\"sunburst\",!0).attr(\"stroke-linejoin\",\"round\"),a.order(),f)?(i&&(o=i()),n.transition().duration(r.duration).ease(r.easing).each(\"end\",(function(){o&&o()})).each(\"interrupt\",(function(){o&&o()})).each((function(){l.selectAll(\"g.trace\").each((function(e){b(t,e,this,r)}))}))):(a.each((function(e){b(t,e,this,r)})),s.uniformtext.mode&&m(t,s._sunburstlayer.selectAll(\".trace\"),\"sunburst\"));c&&a.exit().remove()},r.formatSliceLabel=function(t,e,r,n,i){var a=r.texttemplate,s=r.textinfo;if(!(a||s&&\"none\"!==s))return\"\";var l=i.separators,c=n[0],u=t.data.data,f=c.hierarchy,h=x.isHierarchyRoot(t),p=x.getParent(f,t),d=x.getValue(t);if(!a){var g,m=s.split(\"+\"),v=function(t){return-1!==m.indexOf(t)},y=[];if(v(\"label\")&&u.label&&y.push(u.label),u.hasOwnProperty(\"v\")&&v(\"value\")&&y.push(x.formatValue(u.v,l)),!h){v(\"current path\")&&y.push(x.getPath(t.data));var b=0;v(\"percent parent\")&&b++,v(\"percent entry\")&&b++,v(\"percent root\")&&b++;var _=b>1;if(b){var w,T=function(t){g=x.formatPercent(w,l),_&&(g+=\" of \"+t),y.push(g)};v(\"percent parent\")&&!h&&(w=d/x.getValue(p),T(\"parent\")),v(\"percent entry\")&&(w=d/x.getValue(e),T(\"entry\")),v(\"percent root\")&&(w=d/x.getValue(f),T(\"root\"))}}return v(\"text\")&&(g=o.castOption(r,u.i,\"text\"),o.isValidTextValue(g)&&y.push(g)),y.join(\"<br>\")}var k=o.castOption(r,u.i,\"texttemplate\");if(!k)return\"\";var M={};u.label&&(M.label=u.label),u.hasOwnProperty(\"v\")&&(M.value=u.v,M.valueLabel=x.formatValue(u.v,l)),M.currentPath=x.getPath(t.data),h||(M.percentParent=d/x.getValue(p),M.percentParentLabel=x.formatPercent(M.percentParent,l),M.parent=x.getPtLabel(p)),M.percentEntry=d/x.getValue(e),M.percentEntryLabel=x.formatPercent(M.percentEntry,l),M.entry=x.getPtLabel(e),M.percentRoot=d/x.getValue(f),M.percentRootLabel=x.formatPercent(M.percentRoot,l),M.root=x.getPtLabel(f),u.hasOwnProperty(\"color\")&&(M.color=u.color);var A=o.castOption(r,u.i,\"text\");return(o.isValidTextValue(A)||\"\"===A)&&(M.text=A),M.customdata=o.castOption(r,u.i,\"customdata\"),o.texttemplateString(k,M,i._d3locale,M,r._meta||{})}},{\"../../components/drawing\":665,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../bar/style\":935,\"../bar/uniform_text\":937,\"../pie/helpers\":1166,\"../pie/plot\":1170,\"./constants\":1302,\"./fx\":1304,\"./helpers\":1305,\"./style\":1310,d3:169,\"d3-hierarchy\":161}],1310:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/color\"),a=t(\"../../lib\"),o=t(\"../bar/uniform_text\").resizeText;function s(t,e,r){var n=e.data.data,o=!e.children,s=n.i,l=a.castOption(r,s,\"marker.line.color\")||i.defaultLine,c=a.castOption(r,s,\"marker.line.width\")||0;t.style(\"stroke-width\",c).call(i.fill,n.color).call(i.stroke,l).style(\"opacity\",o?r.leaf.opacity:null)}e.exports={style:function(t){var e=t._fullLayout._sunburstlayer.selectAll(\".trace\");o(t,e,\"sunburst\"),e.each((function(t){var e=n.select(this),r=t[0].trace;e.style(\"opacity\",r.opacity),e.selectAll(\"path.surface\").each((function(t){n.select(this).call(s,t,r)}))}))},styleOne:s}},{\"../../components/color\":643,\"../../lib\":778,\"../bar/uniform_text\":937,d3:169}],1311:[function(t,e,r){\"use strict\";var n=t(\"../../components/color\"),i=t(\"../../components/colorscale/attributes\"),a=t(\"../../plots/template_attributes\").hovertemplateAttrs,o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l=t(\"../../plot_api/edit_types\").overrideAll;function c(t){return{show:{valType:\"boolean\",dflt:!1},start:{valType:\"number\",dflt:null,editType:\"plot\"},end:{valType:\"number\",dflt:null,editType:\"plot\"},size:{valType:\"number\",dflt:null,min:0,editType:\"plot\"},project:{x:{valType:\"boolean\",dflt:!1},y:{valType:\"boolean\",dflt:!1},z:{valType:\"boolean\",dflt:!1}},color:{valType:\"color\",dflt:n.defaultLine},usecolormap:{valType:\"boolean\",dflt:!1},width:{valType:\"number\",min:1,max:16,dflt:2},highlight:{valType:\"boolean\",dflt:!0},highlightcolor:{valType:\"color\",dflt:n.defaultLine},highlightwidth:{valType:\"number\",min:1,max:16,dflt:2}}}var u=e.exports=l(s({z:{valType:\"data_array\"},x:{valType:\"data_array\"},y:{valType:\"data_array\"},text:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertext:{valType:\"string\",dflt:\"\",arrayOk:!0},hovertemplate:a(),connectgaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},surfacecolor:{valType:\"data_array\"}},i(\"\",{colorAttr:\"z or surfacecolor\",showScaleDflt:!0,autoColorDflt:!1,editTypeOverride:\"calc\"}),{contours:{x:c(),y:c(),z:c()},hidesurface:{valType:\"boolean\",dflt:!1},lightposition:{x:{valType:\"number\",min:-1e5,max:1e5,dflt:10},y:{valType:\"number\",min:-1e5,max:1e5,dflt:1e4},z:{valType:\"number\",min:-1e5,max:1e5,dflt:0}},lighting:{ambient:{valType:\"number\",min:0,max:1,dflt:.8},diffuse:{valType:\"number\",min:0,max:1,dflt:.8},specular:{valType:\"number\",min:0,max:2,dflt:.05},roughness:{valType:\"number\",min:0,max:1,dflt:.5},fresnel:{valType:\"number\",min:0,max:5,dflt:.2}},opacity:{valType:\"number\",min:0,max:1,dflt:1},opacityscale:{valType:\"any\",editType:\"calc\"},_deprecated:{zauto:s({},i.zauto,{}),zmin:s({},i.zmin,{}),zmax:s({},i.zmax,{})},hoverinfo:s({},o.hoverinfo),showlegend:s({},o.showlegend,{dflt:!1})}),\"calc\",\"nested\");u.x.editType=u.y.editType=u.z.editType=\"calc+clearAxisTypes\",u.transforms=void 0},{\"../../components/color\":643,\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906}],1312:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/calc\");e.exports=function(t,e){e.surfacecolor?n(t,e,{vals:e.surfacecolor,containerStr:\"\",cLetter:\"c\"}):n(t,e,{vals:e.z,containerStr:\"\",cLetter:\"c\"})}},{\"../../components/colorscale/calc\":651}],1313:[function(t,e,r){\"use strict\";var n=t(\"gl-surface3d\"),i=t(\"ndarray\"),a=t(\"ndarray-linear-interpolate\").d2,o=t(\"../heatmap/interp2d\"),s=t(\"../heatmap/find_empties\"),l=t(\"../../lib\").isArrayOrTypedArray,c=t(\"../../lib/gl_format_color\").parseColorScale,u=t(\"../../lib/str2rgbarray\"),f=t(\"../../components/colorscale\").extractOpts;function h(t,e,r){this.scene=t,this.uid=r,this.surface=e,this.data=null,this.showContour=[!1,!1,!1],this.contourStart=[null,null,null],this.contourEnd=[null,null,null],this.contourSize=[0,0,0],this.minValues=[1/0,1/0,1/0],this.maxValues=[-1/0,-1/0,-1/0],this.dataScaleX=1,this.dataScaleY=1,this.refineData=!0,this.objectOffset=[0,0,0]}var p=h.prototype;p.getXat=function(t,e,r,n){var i=l(this.data.x)?l(this.data.x[0])?this.data.x[e][t]:this.data.x[t]:t;return void 0===r?i:n.d2l(i,0,r)},p.getYat=function(t,e,r,n){var i=l(this.data.y)?l(this.data.y[0])?this.data.y[e][t]:this.data.y[e]:e;return void 0===r?i:n.d2l(i,0,r)},p.getZat=function(t,e,r,n){var i=this.data.z[e][t];return null===i&&this.data.connectgaps&&this.data._interpolatedZ&&(i=this.data._interpolatedZ[e][t]),void 0===r?i:n.d2l(i,0,r)},p.handlePick=function(t){if(t.object===this.surface){var e=(t.data.index[0]-1)/this.dataScaleX-1,r=(t.data.index[1]-1)/this.dataScaleY-1,n=Math.max(Math.min(Math.round(e),this.data.z[0].length-1),0),i=Math.max(Math.min(Math.round(r),this.data._ylength-1),0);t.index=[n,i],t.traceCoordinate=[this.getXat(n,i),this.getYat(n,i),this.getZat(n,i)],t.dataCoordinate=[this.getXat(n,i,this.data.xcalendar,this.scene.fullSceneLayout.xaxis),this.getYat(n,i,this.data.ycalendar,this.scene.fullSceneLayout.yaxis),this.getZat(n,i,this.data.zcalendar,this.scene.fullSceneLayout.zaxis)];for(var a=0;a<3;a++){var o=t.dataCoordinate[a];null!=o&&(t.dataCoordinate[a]*=this.scene.dataScale[a])}var s=this.data.hovertext||this.data.text;return Array.isArray(s)&&s[i]&&void 0!==s[i][n]?t.textLabel=s[i][n]:t.textLabel=s||\"\",t.data.dataCoordinate=t.dataCoordinate.slice(),this.surface.highlight(t.data),this.scene.glplot.spikes.position=t.dataCoordinate,!0}};var d=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997,1009,1013,1019,1021,1031,1033,1039,1049,1051,1061,1063,1069,1087,1091,1093,1097,1103,1109,1117,1123,1129,1151,1153,1163,1171,1181,1187,1193,1201,1213,1217,1223,1229,1231,1237,1249,1259,1277,1279,1283,1289,1291,1297,1301,1303,1307,1319,1321,1327,1361,1367,1373,1381,1399,1409,1423,1427,1429,1433,1439,1447,1451,1453,1459,1471,1481,1483,1487,1489,1493,1499,1511,1523,1531,1543,1549,1553,1559,1567,1571,1579,1583,1597,1601,1607,1609,1613,1619,1621,1627,1637,1657,1663,1667,1669,1693,1697,1699,1709,1721,1723,1733,1741,1747,1753,1759,1777,1783,1787,1789,1801,1811,1823,1831,1847,1861,1867,1871,1873,1877,1879,1889,1901,1907,1913,1931,1933,1949,1951,1973,1979,1987,1993,1997,1999,2003,2011,2017,2027,2029,2039,2053,2063,2069,2081,2083,2087,2089,2099,2111,2113,2129,2131,2137,2141,2143,2153,2161,2179,2203,2207,2213,2221,2237,2239,2243,2251,2267,2269,2273,2281,2287,2293,2297,2309,2311,2333,2339,2341,2347,2351,2357,2371,2377,2381,2383,2389,2393,2399,2411,2417,2423,2437,2441,2447,2459,2467,2473,2477,2503,2521,2531,2539,2543,2549,2551,2557,2579,2591,2593,2609,2617,2621,2633,2647,2657,2659,2663,2671,2677,2683,2687,2689,2693,2699,2707,2711,2713,2719,2729,2731,2741,2749,2753,2767,2777,2789,2791,2797,2801,2803,2819,2833,2837,2843,2851,2857,2861,2879,2887,2897,2903,2909,2917,2927,2939,2953,2957,2963,2969,2971,2999];function g(t,e){if(t<e)return 0;for(var r=0;0===Math.floor(t%e);)t/=e,r++;return r}function m(t){for(var e=[],r=0;r<d.length;r++){var n=d[r];e.push(g(t,n))}return e}function v(t){for(var e=m(t),r=t,n=0;n<d.length;n++)if(e[n]>0){r=d[n];break}return r}function y(t,e){if(!(t<1||e<1)){for(var r=m(t),n=m(e),i=1,a=0;a<d.length;a++)i*=Math.pow(d[a],Math.max(r[a],n[a]));return i}}p.calcXnums=function(t){var e,r=[];for(e=1;e<t;e++){var n=this.getXat(e-1,0),i=this.getXat(e,0);r[e-1]=i!==n&&null!=n&&null!=i?Math.abs(i-n):0}var a=0;for(e=1;e<t;e++)a+=r[e-1];for(e=1;e<t;e++)0===r[e-1]?r[e-1]=1:r[e-1]=Math.round(a/r[e-1]);return r},p.calcYnums=function(t){var e,r=[];for(e=1;e<t;e++){var n=this.getYat(0,e-1),i=this.getYat(0,e);r[e-1]=i!==n&&null!=n&&null!=i?Math.abs(i-n):0}var a=0;for(e=1;e<t;e++)a+=r[e-1];for(e=1;e<t;e++)0===r[e-1]?r[e-1]=1:r[e-1]=Math.round(a/r[e-1]);return r};var x=[1,2,4,6,12,24,36,48,60,120,180,240,360,720,840,1260],b=x[9],_=x[13];function w(t,e,r){var n=r[8]+r[2]*e[0]+r[5]*e[1];return t[0]=(r[6]+r[0]*e[0]+r[3]*e[1])/n,t[1]=(r[7]+r[1]*e[0]+r[4]*e[1])/n,t}function T(t,e,r){return function(t,e,r,n){for(var i=[0,0],o=t.shape[0],s=t.shape[1],l=0;l<o;l++)for(var c=0;c<s;c++)r(i,[l,c],n),t.set(l,c,a(e,i[0],i[1]))}(t,e,w,r),t}function k(t,e){for(var r=!1,n=0;n<t.length;n++)if(e===t[n]){r=!0;break}!1===r&&t.push(e)}p.estimateScale=function(t,e){for(var r=1+function(t){if(0!==t.length){for(var e=1,r=0;r<t.length;r++)e=y(e,t[r]);return e}}(0===e?this.calcXnums(t):this.calcYnums(t));r<b;)r*=2;for(;r>_;)r--,r/=v(r),++r<b&&(r=_);var n=Math.round(r/t);return n>1?n:1},p.refineCoords=function(t){for(var e=this.dataScaleX,r=this.dataScaleY,n=t[0].shape[0],a=t[0].shape[1],o=0|Math.floor(t[0].shape[0]*e+1),s=0|Math.floor(t[0].shape[1]*r+1),l=1+n+1,c=1+a+1,u=i(new Float32Array(l*c),[l,c]),f=[1/e,0,0,0,1/r,0,0,0,1],h=0;h<t.length;++h){this.surface.padField(u,t[h]);var p=i(new Float32Array(o*s),[o,s]);T(p,u,f),t[h]=p}},p.setContourLevels=function(){var t,e,r,n=[[],[],[]],i=[!1,!1,!1],a=!1;for(t=0;t<3;++t)if(this.showContour[t]&&(a=!0,this.contourSize[t]>0&&null!==this.contourStart[t]&&null!==this.contourEnd[t]&&this.contourEnd[t]>this.contourStart[t]))for(i[t]=!0,e=this.contourStart[t];e<this.contourEnd[t];e+=this.contourSize[t])r=e*this.scene.dataScale[t],k(n[t],r);if(a){var o=[[],[],[]];for(t=0;t<3;++t)this.showContour[t]&&(o[t]=i[t]?n[t]:this.scene.contourLevels[t]);this.surface.update({levels:o})}},p.update=function(t){var e,r,n,a,l=this.scene,h=l.fullSceneLayout,p=this.surface,d=c(t),g=l.dataScale,m=t.z[0].length,v=t._ylength,y=l.contourLevels;this.data=t;var x=[];for(e=0;e<3;e++)for(x[e]=[],r=0;r<m;r++)x[e][r]=[];for(r=0;r<m;r++)for(n=0;n<v;n++)x[0][r][n]=this.getXat(r,n,t.xcalendar,h.xaxis),x[1][r][n]=this.getYat(r,n,t.ycalendar,h.yaxis),x[2][r][n]=this.getZat(r,n,t.zcalendar,h.zaxis);if(t.connectgaps)for(t._emptypoints=s(x[2]),o(x[2],t._emptypoints),t._interpolatedZ=[],r=0;r<m;r++)for(t._interpolatedZ[r]=[],n=0;n<v;n++)t._interpolatedZ[r][n]=x[2][r][n];for(e=0;e<3;e++)for(r=0;r<m;r++)for(n=0;n<v;n++)null==(a=x[e][r][n])?x[e][r][n]=NaN:a=x[e][r][n]*=g[e];for(e=0;e<3;e++)for(r=0;r<m;r++)for(n=0;n<v;n++)null!=(a=x[e][r][n])&&(this.minValues[e]>a&&(this.minValues[e]=a),this.maxValues[e]<a&&(this.maxValues[e]=a));for(e=0;e<3;e++)this.objectOffset[e]=.5*(this.minValues[e]+this.maxValues[e]);for(e=0;e<3;e++)for(r=0;r<m;r++)for(n=0;n<v;n++)null!=(a=x[e][r][n])&&(x[e][r][n]-=this.objectOffset[e]);var b=[i(new Float32Array(m*v),[m,v]),i(new Float32Array(m*v),[m,v]),i(new Float32Array(m*v),[m,v])];for(e=0;e<3;e++)for(r=0;r<m;r++)for(n=0;n<v;n++)b[e].set(r,n,x[e][r][n]);x=[];var w={colormap:d,levels:[[],[],[]],showContour:[!0,!0,!0],showSurface:!t.hidesurface,contourProject:[[!1,!1,!1],[!1,!1,!1],[!1,!1,!1]],contourWidth:[1,1,1],contourColor:[[1,1,1,1],[1,1,1,1],[1,1,1,1]],contourTint:[1,1,1],dynamicColor:[[1,1,1,1],[1,1,1,1],[1,1,1,1]],dynamicWidth:[1,1,1],dynamicTint:[1,1,1],opacityscale:t.opacityscale,opacity:t.opacity},T=f(t);if(w.intensityBounds=[T.min,T.max],t.surfacecolor){var k=i(new Float32Array(m*v),[m,v]);for(r=0;r<m;r++)for(n=0;n<v;n++)k.set(r,n,t.surfacecolor[n][r]);b.push(k)}else w.intensityBounds[0]*=g[2],w.intensityBounds[1]*=g[2];(_<b[0].shape[0]||_<b[0].shape[1])&&(this.refineData=!1),!0===this.refineData&&(this.dataScaleX=this.estimateScale(b[0].shape[0],0),this.dataScaleY=this.estimateScale(b[0].shape[1],1),1===this.dataScaleX&&1===this.dataScaleY||this.refineCoords(b)),t.surfacecolor&&(w.intensity=b.pop());var M=[!0,!0,!0],A=[\"x\",\"y\",\"z\"];for(e=0;e<3;++e){var S=t.contours[A[e]];M[e]=S.highlight,w.showContour[e]=S.show||S.highlight,w.showContour[e]&&(w.contourProject[e]=[S.project.x,S.project.y,S.project.z],S.show?(this.showContour[e]=!0,w.levels[e]=y[e],p.highlightColor[e]=w.contourColor[e]=u(S.color),S.usecolormap?p.highlightTint[e]=w.contourTint[e]=0:p.highlightTint[e]=w.contourTint[e]=1,w.contourWidth[e]=S.width,this.contourStart[e]=S.start,this.contourEnd[e]=S.end,this.contourSize[e]=S.size):(this.showContour[e]=!1,this.contourStart[e]=null,this.contourEnd[e]=null,this.contourSize[e]=0),S.highlight&&(w.dynamicColor[e]=u(S.highlightcolor),w.dynamicWidth[e]=S.highlightwidth))}(function(t){var e=t[0].rgb,r=t[t.length-1].rgb;return e[0]===r[0]&&e[1]===r[1]&&e[2]===r[2]&&e[3]===r[3]})(d)&&(w.vertexColor=!0),w.objectOffset=this.objectOffset,w.coords=b,p.update(w),p.visible=t.visible,p.enableDynamic=M,p.enableHighlight=M,p.snapToData=!0,\"lighting\"in t&&(p.ambientLight=t.lighting.ambient,p.diffuseLight=t.lighting.diffuse,p.specularLight=t.lighting.specular,p.roughness=t.lighting.roughness,p.fresnel=t.lighting.fresnel),\"lightposition\"in t&&(p.lightPosition=[t.lightposition.x,t.lightposition.y,t.lightposition.z])},p.dispose=function(){this.scene.glplot.remove(this.surface),this.surface.dispose()},e.exports=function(t,e){var r=t.glplot.gl,i=n({gl:r}),a=new h(t,i,e.uid);return i._trace=a,a.update(e),t.glplot.add(i),a}},{\"../../components/colorscale\":655,\"../../lib\":778,\"../../lib/gl_format_color\":774,\"../../lib/str2rgbarray\":802,\"../heatmap/find_empties\":1071,\"../heatmap/interp2d\":1074,\"gl-surface3d\":351,ndarray:495,\"ndarray-linear-interpolate\":489}],1314:[function(t,e,r){\"use strict\";var n=t(\"../../registry\"),i=t(\"../../lib\"),a=t(\"../../components/colorscale/defaults\"),o=t(\"./attributes\");function s(t,e,r,n){var i=n(\"opacityscale\");\"max\"===i?e.opacityscale=[[0,.1],[1,1]]:\"min\"===i?e.opacityscale=[[0,1],[1,.1]]:\"extremes\"===i?e.opacityscale=function(t,e){for(var r=[],n=0;n<32;n++){var i=n/31,a=e+(1-e)*(1-Math.pow(Math.sin(t*i*Math.PI),2));r.push([i,Math.max(0,Math.min(1,a))])}return r}(1,.1):function(t){var e=0;if(!Array.isArray(t)||t.length<2)return!1;if(!t[0]||!t[t.length-1])return!1;if(0!=+t[0][0]||1!=+t[t.length-1][0])return!1;for(var r=0;r<t.length;r++){var n=t[r];if(2!==n.length||+n[0]<e)return!1;e=+n[0]}return!0}(i)||(e.opacityscale=void 0)}function l(t,e,r){e in t&&!(r in t)&&(t[r]=t[e])}e.exports={supplyDefaults:function(t,e,r,c){var u,f;function h(r,n){return i.coerce(t,e,o,r,n)}var p=h(\"x\"),d=h(\"y\"),g=h(\"z\");if(!g||!g.length||p&&p.length<1||d&&d.length<1)e.visible=!1;else{e._xlength=Array.isArray(p)&&i.isArrayOrTypedArray(p[0])?g.length:g[0].length,e._ylength=g.length,n.getComponentMethod(\"calendars\",\"handleTraceDefaults\")(t,e,[\"x\",\"y\",\"z\"],c),h(\"text\"),h(\"hovertext\"),h(\"hovertemplate\"),[\"lighting.ambient\",\"lighting.diffuse\",\"lighting.specular\",\"lighting.roughness\",\"lighting.fresnel\",\"lightposition.x\",\"lightposition.y\",\"lightposition.z\",\"hidesurface\",\"connectgaps\",\"opacity\"].forEach((function(t){h(t)}));var m=h(\"surfacecolor\"),v=[\"x\",\"y\",\"z\"];for(u=0;u<3;++u){var y=\"contours.\"+v[u],x=h(y+\".show\"),b=h(y+\".highlight\");if(x||b)for(f=0;f<3;++f)h(y+\".project.\"+v[f]);x&&(h(y+\".color\"),h(y+\".width\"),h(y+\".usecolormap\")),b&&(h(y+\".highlightcolor\"),h(y+\".highlightwidth\")),h(y+\".start\"),h(y+\".end\"),h(y+\".size\")}m||(l(t,\"zmin\",\"cmin\"),l(t,\"zmax\",\"cmax\"),l(t,\"zauto\",\"cauto\")),a(t,e,c,h,{prefix:\"\",cLetter:\"c\"}),s(t,e,c,h),e._length=null}},opacityscaleDefaults:s}},{\"../../components/colorscale/defaults\":653,\"../../lib\":778,\"../../registry\":911,\"./attributes\":1311}],1315:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,colorbar:{min:\"cmin\",max:\"cmax\"},calc:t(\"./calc\"),plot:t(\"./convert\"),moduleType:\"trace\",name:\"surface\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"2dMap\",\"showLegend\"],meta:{}}},{\"../../plots/gl3d\":870,\"./attributes\":1311,\"./calc\":1312,\"./convert\":1313,\"./defaults\":1314}],1316:[function(t,e,r){\"use strict\";var n=t(\"../../components/annotations/attributes\"),i=t(\"../../lib/extend\").extendFlat,a=t(\"../../plot_api/edit_types\").overrideAll,o=t(\"../../plots/font_attributes\"),s=t(\"../../plots/domain\").attributes;t(\"../../constants/docs\").FORMAT_LINK;(e.exports=a({domain:s({name:\"table\",trace:!0}),columnwidth:{valType:\"number\",arrayOk:!0,dflt:null},columnorder:{valType:\"data_array\"},header:{values:{valType:\"data_array\",dflt:[]},format:{valType:\"data_array\",dflt:[]},prefix:{valType:\"string\",arrayOk:!0,dflt:null},suffix:{valType:\"string\",arrayOk:!0,dflt:null},height:{valType:\"number\",dflt:28},align:i({},n.align,{arrayOk:!0}),line:{width:{valType:\"number\",arrayOk:!0,dflt:1},color:{valType:\"color\",arrayOk:!0,dflt:\"grey\"}},fill:{color:{valType:\"color\",arrayOk:!0,dflt:\"white\"}},font:i({},o({arrayOk:!0}))},cells:{values:{valType:\"data_array\",dflt:[]},format:{valType:\"data_array\",dflt:[]},prefix:{valType:\"string\",arrayOk:!0,dflt:null},suffix:{valType:\"string\",arrayOk:!0,dflt:null},height:{valType:\"number\",dflt:20},align:i({},n.align,{arrayOk:!0}),line:{width:{valType:\"number\",arrayOk:!0,dflt:1},color:{valType:\"color\",arrayOk:!0,dflt:\"grey\"}},fill:{color:{valType:\"color\",arrayOk:!0,dflt:\"white\"}},font:i({},o({arrayOk:!0}))}},\"calc\",\"from-root\")).transforms=void 0},{\"../../components/annotations/attributes\":626,\"../../constants/docs\":748,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plots/domain\":855,\"../../plots/font_attributes\":856}],1317:[function(t,e,r){\"use strict\";var n=t(\"../../plots/get_data\").getModuleCalcData,i=t(\"./plot\");r.name=\"table\",r.plot=function(t){var e=n(t.calcdata,\"table\")[0];e.length&&i(t,e)},r.clean=function(t,e,r,n){var i=n._has&&n._has(\"table\"),a=e._has&&e._has(\"table\");i&&!a&&n._paperdiv.selectAll(\".table\").remove()}},{\"../../plots/get_data\":865,\"./plot\":1324}],1318:[function(t,e,r){\"use strict\";var n=t(\"../../lib/gup\").wrap;e.exports=function(){return n({})}},{\"../../lib/gup\":775}],1319:[function(t,e,r){\"use strict\";e.exports={cellPad:8,columnExtentOffset:10,columnTitleOffset:28,emptyHeaderHeight:16,latexCheck:/^\\$.*\\$$/,goldenRatio:1.618,lineBreaker:\"<br>\",maxDimensionCount:60,overdrag:45,releaseTransitionDuration:120,releaseTransitionEase:\"cubic-out\",scrollbarCaptureWidth:18,scrollbarHideDelay:1e3,scrollbarHideDuration:1e3,scrollbarOffset:5,scrollbarWidth:8,transitionDuration:100,transitionEase:\"cubic-out\",uplift:5,wrapSpacer:\" \",wrapSplitCharacter:\" \",cn:{table:\"table\",tableControlView:\"table-control-view\",scrollBackground:\"scroll-background\",yColumn:\"y-column\",columnBlock:\"column-block\",scrollAreaClip:\"scroll-area-clip\",scrollAreaClipRect:\"scroll-area-clip-rect\",columnBoundary:\"column-boundary\",columnBoundaryClippath:\"column-boundary-clippath\",columnBoundaryRect:\"column-boundary-rect\",columnCells:\"column-cells\",columnCell:\"column-cell\",cellRect:\"cell-rect\",cellText:\"cell-text\",cellTextHolder:\"cell-text-holder\",scrollbarKit:\"scrollbar-kit\",scrollbar:\"scrollbar\",scrollbarSlider:\"scrollbar-slider\",scrollbarGlyph:\"scrollbar-glyph\",scrollbarCaptureZone:\"scrollbar-capture-zone\"}}},{}],1320:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),i=t(\"../../lib/extend\").extendFlat,a=t(\"fast-isnumeric\");function o(t){if(Array.isArray(t)){for(var e=0,r=0;r<t.length;r++)e=Math.max(e,o(t[r]));return e}return t}function s(t,e){return t+e}function l(t){var e,r=t.slice(),n=1/0,i=0;for(e=0;e<r.length;e++)Array.isArray(r[e])||(r[e]=[r[e]]),n=Math.min(n,r[e].length),i=Math.max(i,r[e].length);if(n!==i)for(e=0;e<r.length;e++){var a=i-r[e].length;a&&(r[e]=r[e].concat(c(a)))}return r}function c(t){for(var e=new Array(t),r=0;r<t;r++)e[r]=\"\";return e}function u(t){return t.calcdata.columns.reduce((function(e,r){return r.xIndex<t.xIndex?e+r.columnWidth:e}),0)}function f(t,e){return Object.keys(t).map((function(r){return i({},t[r],{auxiliaryBlocks:e})}))}function h(t,e){for(var r,n={},i=0,a=0,o={firstRowIndex:null,lastRowIndex:null,rows:[]},s=0,l=0,c=0;c<t.length;c++)r=t[c],o.rows.push({rowIndex:c,rowHeight:r}),((a+=r)>=e||c===t.length-1)&&(n[i]=o,o.key=l++,o.firstRowIndex=s,o.lastRowIndex=c,o={firstRowIndex:null,lastRowIndex:null,rows:[]},i+=a,s=c+1,a=0);return n}e.exports=function(t,e){var r=l(e.cells.values),p=function(t){return t.slice(e.header.values.length,t.length)},d=l(e.header.values);d.length&&!d[0].length&&(d[0]=[\"\"],d=l(d));var g=d.concat(p(r).map((function(){return c((d[0]||[\"\"]).length)}))),m=e.domain,v=Math.floor(t._fullLayout._size.w*(m.x[1]-m.x[0])),y=Math.floor(t._fullLayout._size.h*(m.y[1]-m.y[0])),x=e.header.values.length?g[0].map((function(){return e.header.height})):[n.emptyHeaderHeight],b=r.length?r[0].map((function(){return e.cells.height})):[],_=x.reduce(s,0),w=h(b,y-_+n.uplift),T=f(h(x,_),[]),k=f(w,T),M={},A=e._fullInput.columnorder.concat(p(r.map((function(t,e){return e})))),S=g.map((function(t,r){var n=Array.isArray(e.columnwidth)?e.columnwidth[Math.min(r,e.columnwidth.length-1)]:e.columnwidth;return a(n)?Number(n):1})),E=S.reduce(s,0);S=S.map((function(t){return t/E*v}));var C=Math.max(o(e.header.line.width),o(e.cells.line.width)),L={key:e.uid+t._context.staticPlot,translateX:m.x[0]*t._fullLayout._size.w,translateY:t._fullLayout._size.h*(1-m.y[1]),size:t._fullLayout._size,width:v,maxLineWidth:C,height:y,columnOrder:A,groupHeight:y,rowBlocks:k,headerRowBlocks:T,scrollY:0,cells:i({},e.cells,{values:r}),headerCells:i({},e.header,{values:g}),gdColumns:g.map((function(t){return t[0]})),gdColumnsOriginalOrder:g.map((function(t){return t[0]})),prevPages:[0,0],scrollbarState:{scrollbarScrollInProgress:!1},columns:g.map((function(t,e){var r=M[t];return M[t]=(r||0)+1,{key:t+\"__\"+M[t],label:t,specIndex:e,xIndex:A[e],xScale:u,x:void 0,calcdata:void 0,columnWidth:S[e]}}))};return L.columns.forEach((function(t){t.calcdata=L,t.x=u(t)})),L}},{\"../../lib/extend\":768,\"./constants\":1319,\"fast-isnumeric\":241}],1321:[function(t,e,r){\"use strict\";var n=t(\"../../lib/extend\").extendFlat;r.splitToPanels=function(t){var e=[0,0],r=n({},t,{key:\"header\",type:\"header\",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!0,values:t.calcdata.headerCells.values[t.specIndex],rowBlocks:t.calcdata.headerRowBlocks,calcdata:n({},t.calcdata,{cells:t.calcdata.headerCells})});return[n({},t,{key:\"cells1\",type:\"cells\",page:0,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),n({},t,{key:\"cells2\",type:\"cells\",page:1,prevPages:e,currentRepaint:[null,null],dragHandle:!1,values:t.calcdata.cells.values[t.specIndex],rowBlocks:t.calcdata.rowBlocks}),r]},r.splitToCells=function(t){var e=function(t){var e=t.rowBlocks[t.page],r=e?e.rows[0].rowIndex:0,n=e?r+e.rows.length:0;return[r,n]}(t);return(t.values||[]).slice(e[0],e[1]).map((function(r,n){return{keyWithinBlock:n+(\"string\"==typeof r&&r.match(/[<$&> ]/)?\"_keybuster_\"+Math.random():\"\"),key:e[0]+n,column:t,calcdata:t.calcdata,page:t.page,rowBlocks:t.rowBlocks,value:r}}))}},{\"../../lib/extend\":768}],1322:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"../../plots/domain\").defaults;e.exports=function(t,e,r,o){function s(r,a){return n.coerce(t,e,i,r,a)}a(e,o,s),s(\"columnwidth\"),s(\"header.values\"),s(\"header.format\"),s(\"header.align\"),s(\"header.prefix\"),s(\"header.suffix\"),s(\"header.height\"),s(\"header.line.width\"),s(\"header.line.color\"),s(\"header.fill.color\"),n.coerceFont(s,\"header.font\",n.extendFlat({},o.font)),function(t,e){for(var r=t.columnorder||[],n=t.header.values.length,i=r.slice(0,n),a=i.slice().sort((function(t,e){return t-e})),o=i.map((function(t){return a.indexOf(t)})),s=o.length;s<n;s++)o.push(s);e(\"columnorder\",o)}(e,s),s(\"cells.values\"),s(\"cells.format\"),s(\"cells.align\"),s(\"cells.prefix\"),s(\"cells.suffix\"),s(\"cells.height\"),s(\"cells.line.width\"),s(\"cells.line.color\"),s(\"cells.fill.color\"),n.coerceFont(s,\"cells.font\",n.extendFlat({},o.font)),e._length=null}},{\"../../lib\":778,\"../../plots/domain\":855,\"./attributes\":1316}],1323:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"./calc\"),plot:t(\"./plot\"),moduleType:\"trace\",name:\"table\",basePlotModule:t(\"./base_plot\"),categories:[\"noOpacity\"],meta:{}}},{\"./attributes\":1316,\"./base_plot\":1317,\"./calc\":1318,\"./defaults\":1322,\"./plot\":1324}],1324:[function(t,e,r){\"use strict\";var n=t(\"./constants\"),i=t(\"d3\"),a=t(\"../../lib/gup\"),o=t(\"../../components/drawing\"),s=t(\"../../lib/svg_text_utils\"),l=t(\"../../lib\").raiseToTop,c=t(\"../../lib\").strTranslate,u=t(\"../../lib\").cancelTransition,f=t(\"./data_preparation_helper\"),h=t(\"./data_split_helpers\"),p=t(\"../../components/color\");function d(t){return Math.ceil(t.calcdata.maxLineWidth/2)}function g(t,e){return\"clip\"+t._fullLayout._uid+\"_scrollAreaBottomClip_\"+e.key}function m(t,e){return\"clip\"+t._fullLayout._uid+\"_columnBoundaryClippath_\"+e.calcdata.key+\"_\"+e.specIndex}function v(t){return[].concat.apply([],t.map((function(t){return t}))).map((function(t){return t.__data__}))}function y(t,e,r){var o=t.selectAll(\".\"+n.cn.scrollbarKit).data(a.repeat,a.keyFun);o.enter().append(\"g\").classed(n.cn.scrollbarKit,!0).style(\"shape-rendering\",\"geometricPrecision\"),o.each((function(t){var e=t.scrollbarState;e.totalHeight=function(t){var e=t.rowBlocks;return O(e,e.length-1)+(e.length?D(e[e.length-1],1/0):1)}(t),e.scrollableAreaHeight=t.groupHeight-A(t),e.currentlyVisibleHeight=Math.min(e.totalHeight,e.scrollableAreaHeight),e.ratio=e.currentlyVisibleHeight/e.totalHeight,e.barLength=Math.max(e.ratio*e.currentlyVisibleHeight,n.goldenRatio*n.scrollbarWidth),e.barWiggleRoom=e.currentlyVisibleHeight-e.barLength,e.wiggleRoom=Math.max(0,e.totalHeight-e.scrollableAreaHeight),e.topY=0===e.barWiggleRoom?0:t.scrollY/e.wiggleRoom*e.barWiggleRoom,e.bottomY=e.topY+e.barLength,e.dragMultiplier=e.wiggleRoom/e.barWiggleRoom})).attr(\"transform\",(function(t){var e=t.width+n.scrollbarWidth/2+n.scrollbarOffset;return c(e,A(t))}));var s=o.selectAll(\".\"+n.cn.scrollbar).data(a.repeat,a.keyFun);s.enter().append(\"g\").classed(n.cn.scrollbar,!0);var l=s.selectAll(\".\"+n.cn.scrollbarSlider).data(a.repeat,a.keyFun);l.enter().append(\"g\").classed(n.cn.scrollbarSlider,!0),l.attr(\"transform\",(function(t){return c(0,t.scrollbarState.topY||0)}));var u=l.selectAll(\".\"+n.cn.scrollbarGlyph).data(a.repeat,a.keyFun);u.enter().append(\"line\").classed(n.cn.scrollbarGlyph,!0).attr(\"stroke\",\"black\").attr(\"stroke-width\",n.scrollbarWidth).attr(\"stroke-linecap\",\"round\").attr(\"y1\",n.scrollbarWidth/2),u.attr(\"y2\",(function(t){return t.scrollbarState.barLength-n.scrollbarWidth/2})).attr(\"stroke-opacity\",(function(t){return t.columnDragInProgress||!t.scrollbarState.barWiggleRoom||r?0:.4})),u.transition().delay(0).duration(0),u.transition().delay(n.scrollbarHideDelay).duration(n.scrollbarHideDuration).attr(\"stroke-opacity\",0);var f=s.selectAll(\".\"+n.cn.scrollbarCaptureZone).data(a.repeat,a.keyFun);f.enter().append(\"line\").classed(n.cn.scrollbarCaptureZone,!0).attr(\"stroke\",\"white\").attr(\"stroke-opacity\",.01).attr(\"stroke-width\",n.scrollbarCaptureWidth).attr(\"stroke-linecap\",\"butt\").attr(\"y1\",0).on(\"mousedown\",(function(r){var n=i.event.y,a=this.getBoundingClientRect(),o=r.scrollbarState,s=n-a.top,l=i.scale.linear().domain([0,o.scrollableAreaHeight]).range([0,o.totalHeight]).clamp(!0);o.topY<=s&&s<=o.bottomY||E(e,t,null,l(s-o.barLength/2))(r)})).call(i.behavior.drag().origin((function(t){return i.event.stopPropagation(),t.scrollbarState.scrollbarScrollInProgress=!0,t})).on(\"drag\",E(e,t)).on(\"dragend\",(function(){}))),f.attr(\"y2\",(function(t){return t.scrollbarState.scrollableAreaHeight})),e._context.staticPlot&&(u.remove(),f.remove())}function x(t,e,r,s){var l=function(t){var e=t.selectAll(\".\"+n.cn.columnCell).data(h.splitToCells,(function(t){return t.keyWithinBlock}));return e.enter().append(\"g\").classed(n.cn.columnCell,!0),e.exit().remove(),e}(function(t){var e=t.selectAll(\".\"+n.cn.columnCells).data(a.repeat,a.keyFun);return e.enter().append(\"g\").classed(n.cn.columnCells,!0),e.exit().remove(),e}(r));!function(t){t.each((function(t,e){var r=t.calcdata.cells.font,n=t.column.specIndex,i={size:w(r.size,n,e),color:w(r.color,n,e),family:w(r.family,n,e)};t.rowNumber=t.key,t.align=w(t.calcdata.cells.align,n,e),t.cellBorderWidth=w(t.calcdata.cells.line.width,n,e),t.font=i}))}(l),function(t){t.attr(\"width\",(function(t){return t.column.columnWidth})).attr(\"stroke-width\",(function(t){return t.cellBorderWidth})).each((function(t){var e=i.select(this);p.stroke(e,w(t.calcdata.cells.line.color,t.column.specIndex,t.rowNumber)),p.fill(e,w(t.calcdata.cells.fill.color,t.column.specIndex,t.rowNumber))}))}(function(t){var e=t.selectAll(\".\"+n.cn.cellRect).data(a.repeat,(function(t){return t.keyWithinBlock}));return e.enter().append(\"rect\").classed(n.cn.cellRect,!0),e}(l));var c=function(t){var e=t.selectAll(\".\"+n.cn.cellText).data(a.repeat,(function(t){return t.keyWithinBlock}));return e.enter().append(\"text\").classed(n.cn.cellText,!0).style(\"cursor\",(function(){return\"auto\"})).on(\"mousedown\",(function(){i.event.stopPropagation()})),e}(function(t){var e=t.selectAll(\".\"+n.cn.cellTextHolder).data(a.repeat,(function(t){return t.keyWithinBlock}));return e.enter().append(\"g\").classed(n.cn.cellTextHolder,!0).style(\"shape-rendering\",\"geometricPrecision\"),e}(l));!function(t){t.each((function(t){o.font(i.select(this),t.font)}))}(c),b(c,e,s,t),z(l)}function b(t,e,r,a){t.text((function(t){var e=t.column.specIndex,r=t.rowNumber,a=t.value,o=\"string\"==typeof a,s=o&&a.match(/<br>/i),l=!o||s;t.mayHaveMarkup=o&&a.match(/[<&>]/);var c,u=\"string\"==typeof(c=a)&&c.match(n.latexCheck);t.latex=u;var f,h,p=u?\"\":w(t.calcdata.cells.prefix,e,r)||\"\",d=u?\"\":w(t.calcdata.cells.suffix,e,r)||\"\",g=u?null:w(t.calcdata.cells.format,e,r)||null,m=p+(g?i.format(g)(t.value):t.value)+d;if(t.wrappingNeeded=!t.wrapped&&!l&&!u&&(f=_(m)),t.cellHeightMayIncrease=s||u||t.mayHaveMarkup||(void 0===f?_(m):f),t.needsConvertToTspans=t.mayHaveMarkup||t.wrappingNeeded||t.latex,t.wrappingNeeded){var v=(\" \"===n.wrapSplitCharacter?m.replace(/<a href=/gi,\"<a_href=\"):m).split(n.wrapSplitCharacter),y=\" \"===n.wrapSplitCharacter?v.map((function(t){return t.replace(/<a_href=/gi,\"<a href=\")})):v;t.fragments=y.map((function(t){return{text:t,width:null}})),t.fragments.push({fragment:n.wrapSpacer,width:null}),h=y.join(n.lineBreaker)+n.lineBreaker+n.wrapSpacer}else delete t.fragments,h=m;return h})).attr(\"dy\",(function(t){return t.needsConvertToTspans?0:\"0.75em\"})).each((function(t){var o=i.select(this),l=t.wrappingNeeded?L:I;t.needsConvertToTspans?s.convertToTspans(o,a,l(r,this,e,a,t)):i.select(this.parentNode).attr(\"transform\",(function(t){return c(P(t),n.cellPad)})).attr(\"text-anchor\",(function(t){return{left:\"start\",center:\"middle\",right:\"end\"}[t.align]}))}))}function _(t){return-1!==t.indexOf(n.wrapSplitCharacter)}function w(t,e,r){if(Array.isArray(t)){var n=t[Math.min(e,t.length-1)];return Array.isArray(n)?n[Math.min(r,n.length-1)]:n}return t}function T(t,e,r){t.transition().ease(n.releaseTransitionEase).duration(n.releaseTransitionDuration).attr(\"transform\",c(e.x,r))}function k(t){return\"cells\"===t.type}function M(t){return\"header\"===t.type}function A(t){return(t.rowBlocks.length?t.rowBlocks[0].auxiliaryBlocks:[]).reduce((function(t,e){return t+D(e,1/0)}),0)}function S(t,e,r){var n=v(e)[0];if(void 0!==n){var i=n.rowBlocks,a=n.calcdata,o=O(i,i.length),s=n.calcdata.groupHeight-A(n),l=a.scrollY=Math.max(0,Math.min(o-s,a.scrollY)),u=function(t,e,r){for(var n=[],i=0,a=0;a<t.length;a++){for(var o=t[a],s=o.rows,l=0,c=0;c<s.length;c++)l+=s[c].rowHeight;o.allRowsHeight=l;e<i+l&&e+r>i&&n.push(a),i+=l}return n}(i,l,s);1===u.length&&(u[0]===i.length-1?u.unshift(u[0]-1):u.push(u[0]+1)),u[0]%2&&u.reverse(),e.each((function(t,e){t.page=u[e],t.scrollY=l})),e.attr(\"transform\",(function(t){var e=O(t.rowBlocks,t.page)-t.scrollY;return c(0,e)})),t&&(C(t,r,e,u,n.prevPages,n,0),C(t,r,e,u,n.prevPages,n,1),y(r,t))}}function E(t,e,r,a){return function(o){var s=o.calcdata?o.calcdata:o,l=e.filter((function(t){return s.key===t.key})),c=r||s.scrollbarState.dragMultiplier,u=s.scrollY;s.scrollY=void 0===a?s.scrollY+c*i.event.dy:a;var f=l.selectAll(\".\"+n.cn.yColumn).selectAll(\".\"+n.cn.columnBlock).filter(k);return S(t,f,l),s.scrollY===u}}function C(t,e,r,n,i,a,o){n[o]!==i[o]&&(clearTimeout(a.currentRepaint[o]),a.currentRepaint[o]=setTimeout((function(){var a=r.filter((function(t,e){return e===o&&n[e]!==i[e]}));x(t,e,a,r),i[o]=n[o]})))}function L(t,e,r,a){return function(){var o=i.select(e.parentNode);o.each((function(t){var e=t.fragments;o.selectAll(\"tspan.line\").each((function(t,r){e[r].width=this.getComputedTextLength()}));var r,i,a=e[e.length-1].width,s=e.slice(0,-1),l=[],c=0,u=t.column.columnWidth-2*n.cellPad;for(t.value=\"\";s.length;)c+(i=(r=s.shift()).width+a)>u&&(t.value+=l.join(n.wrapSpacer)+n.lineBreaker,l=[],c=0),l.push(r.text),c+=i;c&&(t.value+=l.join(n.wrapSpacer)),t.wrapped=!0})),o.selectAll(\"tspan.line\").remove(),b(o.select(\".\"+n.cn.cellText),r,t,a),i.select(e.parentNode.parentNode).call(z)}}function I(t,e,r,a,o){return function(){if(!o.settledY){var s=i.select(e.parentNode),l=F(o),u=o.key-l.firstRowIndex,f=l.rows[u].rowHeight,h=o.cellHeightMayIncrease?e.parentNode.getBoundingClientRect().height+2*n.cellPad:f,p=Math.max(h,f);p-l.rows[u].rowHeight&&(l.rows[u].rowHeight=p,t.selectAll(\".\"+n.cn.columnCell).call(z),S(null,t.filter(k),0),y(r,a,!0)),s.attr(\"transform\",(function(){var t=this.parentNode.getBoundingClientRect(),e=i.select(this.parentNode).select(\".\"+n.cn.cellRect).node().getBoundingClientRect(),r=this.transform.baseVal.consolidate(),a=e.top-t.top+(r?r.matrix.f:n.cellPad);return c(P(o,i.select(this.parentNode).select(\".\"+n.cn.cellTextHolder).node().getBoundingClientRect().width),a)})),o.settledY=!0}}}function P(t,e){switch(t.align){case\"left\":return n.cellPad;case\"right\":return t.column.columnWidth-(e||0)-n.cellPad;case\"center\":return(t.column.columnWidth-(e||0))/2;default:return n.cellPad}}function z(t){t.attr(\"transform\",(function(t){var e=t.rowBlocks[0].auxiliaryBlocks.reduce((function(t,e){return t+D(e,1/0)}),0),r=D(F(t),t.key);return c(0,r+e)})).selectAll(\".\"+n.cn.cellRect).attr(\"height\",(function(t){return(e=F(t),r=t.key,e.rows[r-e.firstRowIndex]).rowHeight;var e,r}))}function O(t,e){for(var r=0,n=e-1;n>=0;n--)r+=R(t[n]);return r}function D(t,e){for(var r=0,n=0;n<t.rows.length&&t.rows[n].rowIndex<e;n++)r+=t.rows[n].rowHeight;return r}function R(t){var e=t.allRowsHeight;if(void 0!==e)return e;for(var r=0,n=0;n<t.rows.length;n++)r+=t.rows[n].rowHeight;return t.allRowsHeight=r,r}function F(t){return t.rowBlocks[t.page]}e.exports=function(t,e){var r=!t._context.staticPlot,s=t._fullLayout._paper.selectAll(\".\"+n.cn.table).data(e.map((function(e){var r=a.unwrap(e).trace;return f(t,r)})),a.keyFun);s.exit().remove(),s.enter().append(\"g\").classed(n.cn.table,!0).attr(\"overflow\",\"visible\").style(\"box-sizing\",\"content-box\").style(\"position\",\"absolute\").style(\"left\",0).style(\"overflow\",\"visible\").style(\"shape-rendering\",\"crispEdges\").style(\"pointer-events\",\"all\"),s.attr(\"width\",(function(t){return t.width+t.size.l+t.size.r})).attr(\"height\",(function(t){return t.height+t.size.t+t.size.b})).attr(\"transform\",(function(t){return c(t.translateX,t.translateY)}));var p=s.selectAll(\".\"+n.cn.tableControlView).data(a.repeat,a.keyFun),b=p.enter().append(\"g\").classed(n.cn.tableControlView,!0).style(\"box-sizing\",\"content-box\");if(r){var _=\"onwheel\"in document?\"wheel\":\"mousewheel\";b.on(\"mousemove\",(function(e){p.filter((function(t){return e===t})).call(y,t)})).on(_,(function(e){if(!e.scrollbarState.wheeling){e.scrollbarState.wheeling=!0;var r=e.scrollY+i.event.deltaY;E(t,p,null,r)(e)||(i.event.stopPropagation(),i.event.preventDefault()),e.scrollbarState.wheeling=!1}})).call(y,t,!0)}p.attr(\"transform\",(function(t){return c(t.size.l,t.size.t)}));var w=p.selectAll(\".\"+n.cn.scrollBackground).data(a.repeat,a.keyFun);w.enter().append(\"rect\").classed(n.cn.scrollBackground,!0).attr(\"fill\",\"none\"),w.attr(\"width\",(function(t){return t.width})).attr(\"height\",(function(t){return t.height})),p.each((function(e){o.setClipUrl(i.select(this),g(t,e),t)}));var A=p.selectAll(\".\"+n.cn.yColumn).data((function(t){return t.columns}),a.keyFun);A.enter().append(\"g\").classed(n.cn.yColumn,!0),A.exit().remove(),A.attr(\"transform\",(function(t){return c(t.x,0)})),r&&A.call(i.behavior.drag().origin((function(e){return T(i.select(this),e,-n.uplift),l(this),e.calcdata.columnDragInProgress=!0,y(p.filter((function(t){return e.calcdata.key===t.key})),t),e})).on(\"drag\",(function(t){var e=i.select(this),r=function(e){return(t===e?i.event.x:e.x)+e.columnWidth/2};t.x=Math.max(-n.overdrag,Math.min(t.calcdata.width+n.overdrag-t.columnWidth,i.event.x)),v(A).filter((function(e){return e.calcdata.key===t.calcdata.key})).sort((function(t,e){return r(t)-r(e)})).forEach((function(e,r){e.xIndex=r,e.x=t===e?e.x:e.xScale(e)})),A.filter((function(e){return t!==e})).transition().ease(n.transitionEase).duration(n.transitionDuration).attr(\"transform\",(function(t){return c(t.x,0)})),e.call(u).attr(\"transform\",c(t.x,-n.uplift))})).on(\"dragend\",(function(e){var r=i.select(this),n=e.calcdata;e.x=e.xScale(e),e.calcdata.columnDragInProgress=!1,T(r,e,0),function(t,e,r){var n=e.gdColumnsOriginalOrder;e.gdColumns.sort((function(t,e){return r[n.indexOf(t)]-r[n.indexOf(e)]})),e.columnorder=r,t.emit(\"plotly_restyle\")}(t,n,n.columns.map((function(t){return t.xIndex})))}))),A.each((function(e){o.setClipUrl(i.select(this),m(t,e),t)}));var C=A.selectAll(\".\"+n.cn.columnBlock).data(h.splitToPanels,a.keyFun);C.enter().append(\"g\").classed(n.cn.columnBlock,!0).attr(\"id\",(function(t){return t.key})),C.style(\"cursor\",(function(t){return t.dragHandle?\"ew-resize\":t.calcdata.scrollbarState.barWiggleRoom?\"ns-resize\":\"default\"}));var L=C.filter(M),I=C.filter(k);r&&I.call(i.behavior.drag().origin((function(t){return i.event.stopPropagation(),t})).on(\"drag\",E(t,p,-1)).on(\"dragend\",(function(){}))),x(t,p,L,C),x(t,p,I,C);var P=p.selectAll(\".\"+n.cn.scrollAreaClip).data(a.repeat,a.keyFun);P.enter().append(\"clipPath\").classed(n.cn.scrollAreaClip,!0).attr(\"id\",(function(e){return g(t,e)}));var z=P.selectAll(\".\"+n.cn.scrollAreaClipRect).data(a.repeat,a.keyFun);z.enter().append(\"rect\").classed(n.cn.scrollAreaClipRect,!0).attr(\"x\",-n.overdrag).attr(\"y\",-n.uplift).attr(\"fill\",\"none\"),z.attr(\"width\",(function(t){return t.width+2*n.overdrag})).attr(\"height\",(function(t){return t.height+n.uplift})),A.selectAll(\".\"+n.cn.columnBoundary).data(a.repeat,a.keyFun).enter().append(\"g\").classed(n.cn.columnBoundary,!0);var O=A.selectAll(\".\"+n.cn.columnBoundaryClippath).data(a.repeat,a.keyFun);O.enter().append(\"clipPath\").classed(n.cn.columnBoundaryClippath,!0),O.attr(\"id\",(function(e){return m(t,e)}));var D=O.selectAll(\".\"+n.cn.columnBoundaryRect).data(a.repeat,a.keyFun);D.enter().append(\"rect\").classed(n.cn.columnBoundaryRect,!0).attr(\"fill\",\"none\"),D.attr(\"width\",(function(t){return t.columnWidth+2*d(t)})).attr(\"height\",(function(t){return t.calcdata.height+2*d(t)+n.uplift})).attr(\"x\",(function(t){return-d(t)})).attr(\"y\",(function(t){return-d(t)})),S(null,I,p)}},{\"../../components/color\":643,\"../../components/drawing\":665,\"../../lib\":778,\"../../lib/gup\":775,\"../../lib/svg_text_utils\":803,\"./constants\":1319,\"./data_preparation_helper\":1320,\"./data_split_helpers\":1321,d3:169}],1325:[function(t,e,r){\"use strict\";var n=t(\"../../plots/template_attributes\").hovertemplateAttrs,i=t(\"../../plots/template_attributes\").texttemplateAttrs,a=t(\"../../components/colorscale/attributes\"),o=t(\"../../plots/domain\").attributes,s=t(\"../pie/attributes\"),l=t(\"../sunburst/attributes\"),c=t(\"./constants\"),u=t(\"../../lib/extend\").extendFlat;e.exports={labels:l.labels,parents:l.parents,values:l.values,branchvalues:l.branchvalues,count:l.count,level:l.level,maxdepth:l.maxdepth,tiling:{packing:{valType:\"enumerated\",values:[\"squarify\",\"binary\",\"dice\",\"slice\",\"slice-dice\",\"dice-slice\"],dflt:\"squarify\",editType:\"plot\"},squarifyratio:{valType:\"number\",min:1,dflt:1,editType:\"plot\"},flip:{valType:\"flaglist\",flags:[\"x\",\"y\"],dflt:\"\",editType:\"plot\"},pad:{valType:\"number\",min:0,dflt:3,editType:\"plot\"},editType:\"calc\"},marker:u({pad:{t:{valType:\"number\",min:0,editType:\"plot\"},l:{valType:\"number\",min:0,editType:\"plot\"},r:{valType:\"number\",min:0,editType:\"plot\"},b:{valType:\"number\",min:0,editType:\"plot\"},editType:\"calc\"},colors:l.marker.colors,depthfade:{valType:\"enumerated\",values:[!0,!1,\"reversed\"],editType:\"style\"},line:l.marker.line,editType:\"calc\"},a(\"marker\",{colorAttr:\"colors\",anim:!1})),pathbar:{visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},side:{valType:\"enumerated\",values:[\"top\",\"bottom\"],dflt:\"top\",editType:\"plot\"},edgeshape:{valType:\"enumerated\",values:[\">\",\"<\",\"|\",\"/\",\"\\\\\"],dflt:\">\",editType:\"plot\"},thickness:{valType:\"number\",min:12,editType:\"plot\"},textfont:u({},s.textfont,{}),editType:\"calc\"},text:s.text,textinfo:l.textinfo,texttemplate:i({editType:\"plot\"},{keys:c.eventDataKeys.concat([\"label\",\"value\"])}),hovertext:s.hovertext,hoverinfo:l.hoverinfo,hovertemplate:n({},{keys:c.eventDataKeys}),textfont:s.textfont,insidetextfont:s.insidetextfont,outsidetextfont:u({},s.outsidetextfont,{}),textposition:{valType:\"enumerated\",values:[\"top left\",\"top center\",\"top right\",\"middle left\",\"middle center\",\"middle right\",\"bottom left\",\"bottom center\",\"bottom right\"],dflt:\"top left\",editType:\"plot\"},sort:s.sort,root:l.root,domain:o({name:\"treemap\",trace:!0,editType:\"calc\"})}},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plots/domain\":855,\"../../plots/template_attributes\":906,\"../pie/attributes\":1161,\"../sunburst/attributes\":1299,\"./constants\":1328}],1326:[function(t,e,r){\"use strict\";var n=t(\"../../plots/plots\");r.name=\"treemap\",r.plot=function(t,e,i,a){n.plotBasePlot(r.name,t,e,i,a)},r.clean=function(t,e,i,a){n.cleanBasePlot(r.name,t,e,i,a)}},{\"../../plots/plots\":891}],1327:[function(t,e,r){\"use strict\";var n=t(\"../sunburst/calc\");r.calc=function(t,e){return n.calc(t,e)},r.crossTraceCalc=function(t){return n._runCrossTraceCalc(\"treemap\",t)}},{\"../sunburst/calc\":1301}],1328:[function(t,e,r){\"use strict\";e.exports={CLICK_TRANSITION_TIME:750,CLICK_TRANSITION_EASING:\"poly\",eventDataKeys:[\"currentPath\",\"root\",\"entry\",\"percentRoot\",\"percentEntry\",\"percentParent\"],gapWithPathbar:1}},{}],1329:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"../../components/color\"),o=t(\"../../plots/domain\").defaults,s=t(\"../bar/defaults\").handleText,l=t(\"../bar/constants\").TEXTPAD,c=t(\"../../components/colorscale\"),u=c.hasColorscale,f=c.handleDefaults;e.exports=function(t,e,r,c){function h(r,a){return n.coerce(t,e,i,r,a)}var p=h(\"labels\"),d=h(\"parents\");if(p&&p.length&&d&&d.length){var g=h(\"values\");g&&g.length?h(\"branchvalues\"):h(\"count\"),h(\"level\"),h(\"maxdepth\"),\"squarify\"===h(\"tiling.packing\")&&h(\"tiling.squarifyratio\"),h(\"tiling.flip\"),h(\"tiling.pad\");var m=h(\"text\");h(\"texttemplate\"),e.texttemplate||h(\"textinfo\",Array.isArray(m)?\"text+label\":\"label\"),h(\"hovertext\"),h(\"hovertemplate\");var v=h(\"pathbar.visible\");s(t,e,c,h,\"auto\",{hasPathbar:v,moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!1,moduleHasCliponaxis:!1,moduleHasTextangle:!1,moduleHasInsideanchor:!1}),h(\"textposition\");var y=-1!==e.textposition.indexOf(\"bottom\");h(\"marker.line.width\")&&h(\"marker.line.color\",c.paper_bgcolor);var x=h(\"marker.colors\"),b=e._hasColorscale=u(t,\"marker\",\"colors\")||(t.marker||{}).coloraxis;b?f(t,e,c,h,{prefix:\"marker.\",cLetter:\"c\"}):h(\"marker.depthfade\",!(x||[]).length);var _=2*e.textfont.size;h(\"marker.pad.t\",y?_/4:_),h(\"marker.pad.l\",_/4),h(\"marker.pad.r\",_/4),h(\"marker.pad.b\",y?_:_/4),b&&f(t,e,c,h,{prefix:\"marker.\",cLetter:\"c\"}),e._hovered={marker:{line:{width:2,color:a.contrast(c.paper_bgcolor)}}},v&&(h(\"pathbar.thickness\",e.pathbar.textfont.size+2*l),h(\"pathbar.side\"),h(\"pathbar.edgeshape\")),h(\"sort\"),h(\"root.color\"),o(e,c,h),e._length=null}else e.visible=!1}},{\"../../components/color\":643,\"../../components/colorscale\":655,\"../../lib\":778,\"../../plots/domain\":855,\"../bar/constants\":923,\"../bar/defaults\":925,\"./attributes\":1325}],1330:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../../components/drawing\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"./partition\"),l=t(\"./style\").styleOne,c=t(\"./constants\"),u=t(\"../sunburst/helpers\"),f=t(\"../sunburst/fx\");e.exports=function(t,e,r,h,p){var d=p.barDifY,g=p.width,m=p.height,v=p.viewX,y=p.viewY,x=p.pathSlice,b=p.toMoveInsideSlice,_=p.strTransform,w=p.hasTransition,T=p.handleSlicesExit,k=p.makeUpdateSliceInterpolator,M=p.makeUpdateTextInterpolator,A={},S=t._fullLayout,E=e[0],C=E.trace,L=E.hierarchy,I=g/C._entryDepth,P=u.listPath(r.data,\"id\"),z=s(L.copy(),[g,m],{packing:\"dice\",pad:{inner:0,top:0,left:0,right:0,bottom:0}}).descendants();(z=z.filter((function(t){var e=P.indexOf(t.data.id);return-1!==e&&(t.x0=I*e,t.x1=I*(e+1),t.y0=d,t.y1=d+m,t.onPathbar=!0,!0)}))).reverse(),(h=h.data(z,u.getPtId)).enter().append(\"g\").classed(\"pathbar\",!0),T(h,!0,A,[g,m],x),h.order();var O=h;w&&(O=O.transition().each(\"end\",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:!1})}))),O.each((function(s){s._hoverX=v(s.x1-Math.min(g,m)/2),s._hoverY=y(s.y1-m/2);var h=n.select(this),p=i.ensureSingle(h,\"path\",\"surface\",(function(t){t.style(\"pointer-events\",\"all\")}));w?p.transition().attrTween(\"d\",(function(t){var e=k(t,!0,A,[g,m]);return function(t){return x(e(t))}})):p.attr(\"d\",x),h.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{hideOnRoot:!1,hideOnLeaves:!1,isTransitioning:t._transitioning}),p.call(l,s,C,{hovered:!1}),s._text=(u.getPtLabel(s)||\"\").split(\"<br>\").join(\" \")||\"\";var d=i.ensureSingle(h,\"g\",\"slicetext\"),T=i.ensureSingle(d,\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),E=i.ensureUniformFontSize(t,u.determineTextFont(C,s,S.font,{onPathbar:!0}));T.text(s._text||\" \").classed(\"slicetext\",!0).attr(\"text-anchor\",\"start\").call(a.font,E).call(o.convertToTspans,t),s.textBB=a.bBox(T.node()),s.transform=b(s,{fontSize:E.size,onPathbar:!0}),s.transform.fontSize=E.size,w?T.transition().attrTween(\"transform\",(function(t){var e=M(t,!0,A,[g,m]);return function(t){return _(e(t))}})):T.attr(\"transform\",_(s))}))}},{\"../../components/drawing\":665,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../sunburst/fx\":1304,\"../sunburst/helpers\":1305,\"./constants\":1328,\"./partition\":1335,\"./style\":1337,d3:169}],1331:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../../components/drawing\"),o=t(\"../../lib/svg_text_utils\"),s=t(\"./partition\"),l=t(\"./style\").styleOne,c=t(\"./constants\"),u=t(\"../sunburst/helpers\"),f=t(\"../sunburst/fx\"),h=t(\"../sunburst/plot\").formatSliceLabel;e.exports=function(t,e,r,p,d){var g=d.width,m=d.height,v=d.viewX,y=d.viewY,x=d.pathSlice,b=d.toMoveInsideSlice,_=d.strTransform,w=d.hasTransition,T=d.handleSlicesExit,k=d.makeUpdateSliceInterpolator,M=d.makeUpdateTextInterpolator,A=d.prevEntry,S=t._fullLayout,E=e[0].trace,C=-1!==E.textposition.indexOf(\"left\"),L=-1!==E.textposition.indexOf(\"right\"),I=-1!==E.textposition.indexOf(\"bottom\"),P=!I&&!E.marker.pad.t||I&&!E.marker.pad.b,z=s(r,[g,m],{packing:E.tiling.packing,squarifyratio:E.tiling.squarifyratio,flipX:E.tiling.flip.indexOf(\"x\")>-1,flipY:E.tiling.flip.indexOf(\"y\")>-1,pad:{inner:E.tiling.pad,top:E.marker.pad.t,left:E.marker.pad.l,right:E.marker.pad.r,bottom:E.marker.pad.b}}).descendants(),O=1/0,D=-1/0;z.forEach((function(t){var e=t.depth;e>=E._maxDepth?(t.x0=t.x1=(t.x0+t.x1)/2,t.y0=t.y1=(t.y0+t.y1)/2):(O=Math.min(O,e),D=Math.max(D,e))})),p=p.data(z,u.getPtId),E._maxVisibleLayers=isFinite(D)?D-O+1:0,p.enter().append(\"g\").classed(\"slice\",!0),T(p,!1,{},[g,m],x),p.order();var R=null;if(w&&A){var F=u.getPtId(A);p.each((function(t){null===R&&u.getPtId(t)===F&&(R={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})}))}var B=function(){return R||{x0:0,x1:g,y0:0,y1:m}},N=p;return w&&(N=N.transition().each(\"end\",(function(){var e=n.select(this);u.setSliceCursor(e,t,{hideOnRoot:!0,hideOnLeaves:!1,isTransitioning:!1})}))),N.each((function(s){var p=u.isHeader(s,E);s._hoverX=v(s.x1-E.marker.pad.r),s._hoverY=y(I?s.y1-E.marker.pad.b/2:s.y0+E.marker.pad.t/2);var d=n.select(this),T=i.ensureSingle(d,\"path\",\"surface\",(function(t){t.style(\"pointer-events\",\"all\")}));w?T.transition().attrTween(\"d\",(function(t){var e=k(t,!1,B(),[g,m]);return function(t){return x(e(t))}})):T.attr(\"d\",x),d.call(f,r,t,e,{styleOne:l,eventDataKeys:c.eventDataKeys,transitionTime:c.CLICK_TRANSITION_TIME,transitionEasing:c.CLICK_TRANSITION_EASING}).call(u.setSliceCursor,t,{isTransitioning:t._transitioning}),T.call(l,s,E,{hovered:!1}),s.x0===s.x1||s.y0===s.y1?s._text=\"\":s._text=p?P?\"\":u.getPtLabel(s)||\"\":h(s,r,E,e,S)||\"\";var A=i.ensureSingle(d,\"g\",\"slicetext\"),z=i.ensureSingle(A,\"text\",\"\",(function(t){t.attr(\"data-notex\",1)})),O=i.ensureUniformFontSize(t,u.determineTextFont(E,s,S.font));z.text(s._text||\" \").classed(\"slicetext\",!0).attr(\"text-anchor\",L?\"end\":C||p?\"start\":\"middle\").call(a.font,O).call(o.convertToTspans,t),s.textBB=a.bBox(z.node()),s.transform=b(s,{fontSize:O.size,isHeader:p}),s.transform.fontSize=O.size,w?z.transition().attrTween(\"transform\",(function(t){var e=M(t,!1,B(),[g,m]);return function(t){return _(e(t))}})):z.attr(\"transform\",_(s))})),R}},{\"../../components/drawing\":665,\"../../lib\":778,\"../../lib/svg_text_utils\":803,\"../sunburst/fx\":1304,\"../sunburst/helpers\":1305,\"../sunburst/plot\":1309,\"./constants\":1328,\"./partition\":1335,\"./style\":1337,d3:169}],1332:[function(t,e,r){\"use strict\";e.exports={moduleType:\"trace\",name:\"treemap\",basePlotModule:t(\"./base_plot\"),categories:[],animatable:!0,attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\").calc,crossTraceCalc:t(\"./calc\").crossTraceCalc,plot:t(\"./plot\"),style:t(\"./style\").style,colorbar:t(\"../scatter/marker_colorbar\"),meta:{}}},{\"../scatter/marker_colorbar\":1205,\"./attributes\":1325,\"./base_plot\":1326,\"./calc\":1327,\"./defaults\":1329,\"./layout_attributes\":1333,\"./layout_defaults\":1334,\"./plot\":1336,\"./style\":1337}],1333:[function(t,e,r){\"use strict\";e.exports={treemapcolorway:{valType:\"colorlist\",editType:\"calc\"},extendtreemapcolors:{valType:\"boolean\",dflt:!0,editType:\"calc\"}}},{}],1334:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e){function r(r,a){return n.coerce(t,e,i,r,a)}r(\"treemapcolorway\",e.colorway),r(\"extendtreemapcolors\")}},{\"../../lib\":778,\"./layout_attributes\":1333}],1335:[function(t,e,r){\"use strict\";var n=t(\"d3-hierarchy\");e.exports=function(t,e,r){var i,a=r.flipX,o=r.flipY,s=\"dice-slice\"===r.packing,l=r.pad[o?\"bottom\":\"top\"],c=r.pad[a?\"right\":\"left\"],u=r.pad[a?\"left\":\"right\"],f=r.pad[o?\"top\":\"bottom\"];s&&(i=c,c=l,l=i,i=u,u=f,f=i);var h=n.treemap().tile(function(t,e){switch(t){case\"squarify\":return n.treemapSquarify.ratio(e);case\"binary\":return n.treemapBinary;case\"dice\":return n.treemapDice;case\"slice\":return n.treemapSlice;default:return n.treemapSliceDice}}(r.packing,r.squarifyratio)).paddingInner(r.pad.inner).paddingLeft(c).paddingRight(u).paddingTop(l).paddingBottom(f).size(s?[e[1],e[0]]:e)(t);return(s||a||o)&&function t(e,r,n){var i;n.swapXY&&(i=e.x0,e.x0=e.y0,e.y0=i,i=e.x1,e.x1=e.y1,e.y1=i);n.flipX&&(i=e.x0,e.x0=r[0]-e.x1,e.x1=r[0]-i);n.flipY&&(i=e.y0,e.y0=r[1]-e.y1,e.y1=r[1]-i);var a=e.children;if(a)for(var o=0;o<a.length;o++)t(a[o],r,n)}(h,e,{swapXY:s,flipX:a,flipY:o}),h}},{\"d3-hierarchy\":161}],1336:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../sunburst/helpers\"),a=t(\"../../lib\"),o=t(\"../bar/constants\").TEXTPAD,s=t(\"../bar/plot\").toMoveInsideBar,l=t(\"../bar/uniform_text\"),c=l.recordMinTextSize,u=l.clearMinTextSize,f=t(\"../bar/style\").resizeText,h=t(\"./constants\"),p=t(\"./draw_descendants\"),d=t(\"./draw_ancestors\");function g(t){return i.isHierarchyRoot(t)?\"\":i.getPtId(t)}function m(t,e,r,l){var u=t._fullLayout,f=e[0],m=f.trace,v=f.hierarchy,y=i.findEntryWithLevel(v,m.level),x=n.select(r),b=x.selectAll(\"g.pathbar\"),_=x.selectAll(\"g.slice\");if(!y)return b.remove(),void _.remove();var w=i.isHierarchyRoot(y),T=!u.uniformtext.mode&&i.hasTransition(l),k=i.getMaxDepth(m),M=u._size,A=m.domain,S=M.w*(A.x[1]-A.x[0]),E=M.h*(A.y[1]-A.y[0]),C=S,L=m.pathbar.thickness,I=m.marker.line.width+h.gapWithPathbar,P=m.pathbar.visible?m.pathbar.side.indexOf(\"bottom\")>-1?E+I:-(L+I):0,z={x0:C,x1:C,y0:P,y1:P+L},O=function(t,e,r){var n=m.tiling.pad,i=function(t){return t-n<=e.x0},a=function(t){return t+n>=e.x1},o=function(t){return t-n<=e.y0},s=function(t){return t+n>=e.y1};return{x0:i(t.x0-n)?0:a(t.x0-n)?r[0]:t.x0,x1:i(t.x1+n)?0:a(t.x1+n)?r[0]:t.x1,y0:o(t.y0-n)?0:s(t.y0-n)?r[1]:t.y0,y1:o(t.y1+n)?0:s(t.y1+n)?r[1]:t.y1}},D=null,R={},F={},B=null,N=function(t,e){return e?R[g(t)]:F[g(t)]},j=function(t,e,r,n){if(e)return R[g(v)]||z;var i=F[m.level]||r;return function(t){return t.data.depth-y.data.depth<k}(t)?O(t,i,n):{}};f.hasMultipleRoots&&w&&k++,m._maxDepth=k,m._backgroundColor=u.paper_bgcolor,m._entryDepth=y.data.depth,m._atRootLevel=w;var U=-S/2+M.l+M.w*(A.x[1]+A.x[0])/2,V=-E/2+M.t+M.h*(1-(A.y[1]+A.y[0])/2),q=function(t){return U+t},H=function(t){return V+t},G=H(0),Y=q(0),W=function(t){return Y+t},X=function(t){return G+t};function Z(t,e){return t+\",\"+e}var J=W(0),K=function(t){t.x=Math.max(J,t.x)},Q=m.pathbar.edgeshape,$=function(t,e){var r=t.x0,n=t.x1,i=t.y0,a=t.y1,l=t.textBB,f=function(t){return-1!==m.textposition.indexOf(t)},h=f(\"bottom\"),p=f(\"top\")||e.isHeader&&!h?\"start\":h?\"end\":\"middle\",d=f(\"right\"),g=f(\"left\")||e.onPathbar?-1:d?1:0,v=m.marker.pad;if(e.isHeader){if((r+=v.l-o)>=(n-=v.r-o)){var y=(r+n)/2;r=y,n=y}var x;h?i<(x=a-v.b)&&x<a&&(i=x):i<(x=i+v.t)&&x<a&&(a=x)}var b=s(r,n,i,a,l,{isHorizontal:!1,constrained:!0,angle:0,anchor:p,leftToRight:g});return b.fontSize=e.fontSize,b.targetX=q(b.targetX),b.targetY=H(b.targetY),isNaN(b.targetX)||isNaN(b.targetY)?{}:(r!==n&&i!==a&&c(m.type,b,u),{scale:b.scale,rotate:b.rotate,textX:b.textX,textY:b.textY,anchorX:b.anchorX,anchorY:b.anchorY,targetX:b.targetX,targetY:b.targetY})},tt=function(t,e){for(var r,n=0,i=t;!r&&n<k;)n++,(i=i.parent)?r=N(i,e):n=k;return r||{}},et=function(t,e,r,i){var o,s=N(t,e);if(s)o=s;else if(e)o=z;else if(D)if(t.parent){var l=B||r;l&&!e?o=O(t,l,i):(o={},a.extendFlat(o,tt(t,e)))}else o=t;else o={};return n.interpolate(o,{x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1})},rt=function(t,e,r,o){var s=N(t,e),l={},f=j(t,e,r,o);a.extendFlat(l,{transform:$({x0:f.x0,x1:f.x1,y0:f.y0,y1:f.y1,textBB:t.textBB,_text:t._text},{isHeader:i.isHeader(t,m)})}),s?l=s:t.parent&&a.extendFlat(l,tt(t,e));var h=t.transform;return t.x0!==t.x1&&t.y0!==t.y1&&c(m.type,h,u),n.interpolate(l,{transform:{scale:h.scale,rotate:h.rotate,textX:h.textX,textY:h.textY,anchorX:h.anchorX,anchorY:h.anchorY,targetX:h.targetX,targetY:h.targetY}})},nt=function(t,e,r,i,a){var o=i[0],s=i[1];T?t.exit().transition().each((function(){var t=n.select(this);t.select(\"path.surface\").transition().attrTween(\"d\",(function(t){var r=function(t,e,r,i){var a,o=N(t,e);if(e)a=z;else{var s=N(y,e);a=s?O(t,s,i):{}}return n.interpolate(o,a)}(t,e,0,[o,s]);return function(t){return a(r(t))}})),t.select(\"g.slicetext\").attr(\"opacity\",0)})).remove():t.exit().remove()},it=function(t){var e=t.transform;return t.x0!==t.x1&&t.y0!==t.y1&&c(m.type,e,u),a.getTextTransform({textX:e.textX,textY:e.textY,anchorX:e.anchorX,anchorY:e.anchorY,targetX:e.targetX,targetY:e.targetY,scale:e.scale,rotate:e.rotate})};T&&(b.each((function(t){R[g(t)]={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1},t.transform&&(R[g(t)].transform={textX:t.transform.textX,textY:t.transform.textY,anchorX:t.transform.anchorX,anchorY:t.transform.anchorY,targetX:t.transform.targetX,targetY:t.transform.targetY,scale:t.transform.scale,rotate:t.transform.rotate})})),_.each((function(t){F[g(t)]={x0:t.x0,x1:t.x1,y0:t.y0,y1:t.y1},t.transform&&(F[g(t)].transform={textX:t.transform.textX,textY:t.transform.textY,anchorX:t.transform.anchorX,anchorY:t.transform.anchorY,targetX:t.transform.targetX,targetY:t.transform.targetY,scale:t.transform.scale,rotate:t.transform.rotate}),!D&&i.isEntry(t)&&(D=t)}))),B=p(t,e,y,_,{width:S,height:E,viewX:q,viewY:H,pathSlice:function(t){var e=q(t.x0),r=q(t.x1),n=H(t.y0),i=H(t.y1),a=r-e,o=i-n;if(!a||!o)return\"\";return\"M\"+Z(e,n+0)+\"L\"+Z(r-0,n)+\"L\"+Z(r,i-0)+\"L\"+Z(e+0,i)+\"Z\"},toMoveInsideSlice:$,prevEntry:D,makeUpdateSliceInterpolator:et,makeUpdateTextInterpolator:rt,handleSlicesExit:nt,hasTransition:T,strTransform:it}),m.pathbar.visible?d(t,e,y,b,{barDifY:P,width:C,height:L,viewX:W,viewY:X,pathSlice:function(t){var e=W(Math.max(Math.min(t.x0,t.x0),0)),r=W(Math.min(Math.max(t.x1,t.x1),C)),n=X(t.y0),i=X(t.y1),a=L/2,o={},s={};o.x=e,s.x=r,o.y=s.y=(n+i)/2;var l={x:e,y:n},c={x:r,y:n},u={x:r,y:i},f={x:e,y:i};return\">\"===Q?(l.x-=a,c.x-=a,u.x-=a,f.x-=a):\"/\"===Q?(u.x-=a,f.x-=a,o.x-=a/2,s.x-=a/2):\"\\\\\"===Q?(l.x-=a,c.x-=a,o.x-=a/2,s.x-=a/2):\"<\"===Q&&(o.x-=a,s.x-=a),K(l),K(f),K(o),K(c),K(u),K(s),\"M\"+Z(l.x,l.y)+\"L\"+Z(c.x,c.y)+\"L\"+Z(s.x,s.y)+\"L\"+Z(u.x,u.y)+\"L\"+Z(f.x,f.y)+\"L\"+Z(o.x,o.y)+\"Z\"},toMoveInsideSlice:$,makeUpdateSliceInterpolator:et,makeUpdateTextInterpolator:rt,handleSlicesExit:nt,hasTransition:T,strTransform:it}):b.remove()}e.exports=function(t,e,r,a){var o,s,l=t._fullLayout,c=l._treemaplayer,h=!r;(u(\"treemap\",l),(o=c.selectAll(\"g.trace.treemap\").data(e,(function(t){return t[0].trace.uid}))).enter().append(\"g\").classed(\"trace\",!0).classed(\"treemap\",!0),o.order(),!l.uniformtext.mode&&i.hasTransition(r))?(a&&(s=a()),n.transition().duration(r.duration).ease(r.easing).each(\"end\",(function(){s&&s()})).each(\"interrupt\",(function(){s&&s()})).each((function(){c.selectAll(\"g.trace\").each((function(e){m(t,e,this,r)}))}))):(o.each((function(e){m(t,e,this,r)})),l.uniformtext.mode&&f(t,l._treemaplayer.selectAll(\".trace\"),\"treemap\"));h&&o.exit().remove()}},{\"../../lib\":778,\"../bar/constants\":923,\"../bar/plot\":932,\"../bar/style\":935,\"../bar/uniform_text\":937,\"../sunburst/helpers\":1305,\"./constants\":1328,\"./draw_ancestors\":1330,\"./draw_descendants\":1331,d3:169}],1337:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/color\"),a=t(\"../../lib\"),o=t(\"../sunburst/helpers\"),s=t(\"../bar/uniform_text\").resizeText;function l(t,e,r,n){var s,l,c=(n||{}).hovered,u=e.data.data,f=u.i,h=u.color,p=o.isHierarchyRoot(e),d=1;if(c)s=r._hovered.marker.line.color,l=r._hovered.marker.line.width;else if(p&&h===r.root.color)d=100,s=\"rgba(0,0,0,0)\",l=0;else if(s=a.castOption(r,f,\"marker.line.color\")||i.defaultLine,l=a.castOption(r,f,\"marker.line.width\")||0,!r._hasColorscale&&!e.onPathbar){var g=r.marker.depthfade;if(g){var m,v=i.combine(i.addOpacity(r._backgroundColor,.75),h);if(!0===g){var y=o.getMaxDepth(r);m=isFinite(y)?o.isLeaf(e)?0:r._maxVisibleLayers-(e.data.depth-r._entryDepth):e.data.height+1}else m=e.data.depth-r._entryDepth,r._atRootLevel||m++;if(m>0)for(var x=0;x<m;x++){var b=.5*x/m;h=i.combine(i.addOpacity(v,b),h)}}}t.style(\"stroke-width\",l).call(i.fill,h).call(i.stroke,s).style(\"opacity\",d)}e.exports={style:function(t){var e=t._fullLayout._treemaplayer.selectAll(\".trace\");s(t,e,\"treemap\"),e.each((function(t){var e=n.select(this),r=t[0].trace;e.style(\"opacity\",r.opacity),e.selectAll(\"path.surface\").each((function(t){n.select(this).call(l,t,r,{hovered:!1})}))}))},styleOne:l}},{\"../../components/color\":643,\"../../lib\":778,\"../bar/uniform_text\":937,\"../sunburst/helpers\":1305,d3:169}],1338:[function(t,e,r){\"use strict\";var n=t(\"../box/attributes\"),i=t(\"../../lib/extend\").extendFlat;e.exports={y:n.y,x:n.x,x0:n.x0,y0:n.y0,name:i({},n.name,{}),orientation:i({},n.orientation,{}),bandwidth:{valType:\"number\",min:0,editType:\"calc\"},scalegroup:{valType:\"string\",dflt:\"\",editType:\"calc\"},scalemode:{valType:\"enumerated\",values:[\"width\",\"count\"],dflt:\"width\",editType:\"calc\"},spanmode:{valType:\"enumerated\",values:[\"soft\",\"hard\",\"manual\"],dflt:\"soft\",editType:\"calc\"},span:{valType:\"info_array\",items:[{valType:\"any\",editType:\"calc\"},{valType:\"any\",editType:\"calc\"}],editType:\"calc\"},line:{color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,dflt:2,editType:\"style\"},editType:\"plot\"},fillcolor:n.fillcolor,points:i({},n.boxpoints,{}),jitter:i({},n.jitter,{}),pointpos:i({},n.pointpos,{}),width:i({},n.width,{}),marker:n.marker,text:n.text,hovertext:n.hovertext,hovertemplate:n.hovertemplate,box:{visible:{valType:\"boolean\",dflt:!1,editType:\"plot\"},width:{valType:\"number\",min:0,max:1,dflt:.25,editType:\"plot\"},fillcolor:{valType:\"color\",editType:\"style\"},line:{color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,editType:\"style\"},editType:\"style\"},editType:\"plot\"},meanline:{visible:{valType:\"boolean\",dflt:!1,editType:\"plot\"},color:{valType:\"color\",editType:\"style\"},width:{valType:\"number\",min:0,editType:\"style\"},editType:\"plot\"},side:{valType:\"enumerated\",values:[\"both\",\"positive\",\"negative\"],dflt:\"both\",editType:\"calc\"},offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup,selected:n.selected,unselected:n.unselected,hoveron:{valType:\"flaglist\",flags:[\"violins\",\"points\",\"kde\"],dflt:\"violins+points+kde\",extras:[\"all\"],editType:\"style\"}}},{\"../../lib/extend\":768,\"../box/attributes\":946}],1339:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../box/calc\"),o=t(\"./helpers\"),s=t(\"../../constants/numerical\").BADNUM;function l(t,e,r){var i=e.max-e.min;if(!i)return t.bandwidth?t.bandwidth:0;if(t.bandwidth)return Math.max(t.bandwidth,i/1e4);var a=r.length,o=n.stdev(r,a-1,e.mean);return Math.max(function(t,e,r){return 1.059*Math.min(e,r/1.349)*Math.pow(t,-.2)}(a,o,e.q3-e.q1),i/100)}function c(t,e,r,n){var a,o=t.spanmode,l=t.span||[],c=[e.min,e.max],u=[e.min-2*n,e.max+2*n];function f(n){var i=l[n],a=\"multicategory\"===r.type?r.r2c(i):r.d2c(i,0,t[e.valLetter+\"calendar\"]);return a===s?u[n]:a}var h={type:\"linear\",range:a=\"soft\"===o?u:\"hard\"===o?c:[f(0),f(1)]};return i.setConvert(h),h.cleanRange(),a}e.exports=function(t,e){var r=a(t,e);if(r[0].t.empty)return r;for(var s=t._fullLayout,u=i.getFromId(t,e[\"h\"===e.orientation?\"xaxis\":\"yaxis\"]),f=1/0,h=-1/0,p=0,d=0,g=0;g<r.length;g++){var m=r[g],v=m.pts.map(o.extractVal),y=m.bandwidth=l(e,m,v),x=m.span=c(e,m,u,y);if(m.min===m.max&&0===y)x=m.span=[m.min,m.max],m.density=[{v:1,t:x[0]}],m.bandwidth=y,p=Math.max(p,1);else{var b=x[1]-x[0],_=Math.ceil(b/(y/3)),w=b/_;if(!isFinite(w)||!isFinite(_))return n.error(\"Something went wrong with computing the violin span\"),r[0].t.empty=!0,r;var T=o.makeKDE(m,e,v);m.density=new Array(_);for(var k=0,M=x[0];M<x[1]+w/2;k++,M+=w){var A=T(M);m.density[k]={v:A,t:M},p=Math.max(p,A)}}d=Math.max(d,v.length),f=Math.min(f,x[0]),h=Math.max(h,x[1])}var S=i.findExtremes(u,[f,h],{padded:!0});if(e._extremes[u._id]=S,e.width)r[0].t.maxKDE=p;else{var E=s._violinScaleGroupStats,C=e.scalegroup,L=E[C];L?(L.maxKDE=Math.max(L.maxKDE,p),L.maxCount=Math.max(L.maxCount,d)):E[C]={maxKDE:p,maxCount:d}}return r[0].t.labels.kde=n._(t,\"kde:\"),r}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"../box/calc\":947,\"./helpers\":1342}],1340:[function(t,e,r){\"use strict\";var n=t(\"../box/cross_trace_calc\").setPositionOffset,i=[\"v\",\"h\"];e.exports=function(t,e){for(var r=t.calcdata,a=e.xaxis,o=e.yaxis,s=0;s<i.length;s++){for(var l=i[s],c=\"h\"===l?o:a,u=[],f=0;f<r.length;f++){var h=r[f],p=h[0].t,d=h[0].trace;!0!==d.visible||\"violin\"!==d.type||p.empty||d.orientation!==l||d.xaxis!==a._id||d.yaxis!==o._id||u.push(f)}n(\"violin\",t,u,c)}}},{\"../box/cross_trace_calc\":948}],1341:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../components/color\"),a=t(\"../box/defaults\"),o=t(\"./attributes\");e.exports=function(t,e,r,s){function l(r,i){return n.coerce(t,e,o,r,i)}function c(r,i){return n.coerce2(t,e,o,r,i)}if(a.handleSampleDefaults(t,e,l,s),!1!==e.visible){l(\"bandwidth\"),l(\"side\"),l(\"width\")||(l(\"scalegroup\",e.name),l(\"scalemode\"));var u,f=l(\"span\");Array.isArray(f)&&(u=\"manual\"),l(\"spanmode\",u);var h=l(\"line.color\",(t.marker||{}).color||r),p=l(\"line.width\"),d=l(\"fillcolor\",i.addOpacity(e.line.color,.5));a.handlePointsDefaults(t,e,l,{prefix:\"\"});var g=c(\"box.width\"),m=c(\"box.fillcolor\",d),v=c(\"box.line.color\",h),y=c(\"box.line.width\",p);l(\"box.visible\",Boolean(g||m||v||y))||(e.box={visible:!1});var x=c(\"meanline.color\",h),b=c(\"meanline.width\",p);l(\"meanline.visible\",Boolean(x||b))||(e.meanline={visible:!1})}}},{\"../../components/color\":643,\"../../lib\":778,\"../box/defaults\":949,\"./attributes\":1338}],1342:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=function(t){return 1/Math.sqrt(2*Math.PI)*Math.exp(-.5*t*t)};r.makeKDE=function(t,e,r){var n=r.length,a=i,o=t.bandwidth,s=1/(n*o);return function(t){for(var e=0,i=0;i<n;i++)e+=a((t-r[i])/o);return s*e}},r.getPositionOnKdePath=function(t,e,r){var i,a;\"h\"===e.orientation?(i=\"y\",a=\"x\"):(i=\"x\",a=\"y\");var o=n.findPointOnPath(t.path,r,a,{pathLength:t.pathLength}),s=t.posCenterPx,l=o[i];return[l,\"both\"===e.side?2*s-l:s]},r.getKdeValue=function(t,e,n){var i=t.pts.map(r.extractVal);return r.makeKDE(t,e,i)(n)/t.posDensityScale},r.extractVal=function(t){return t.v}},{\"../../lib\":778}],1343:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../../plots/cartesian/axes\"),a=t(\"../box/hover\"),o=t(\"./helpers\");e.exports=function(t,e,r,s,l){var c,u,f=t.cd,h=f[0].trace,p=h.hoveron,d=-1!==p.indexOf(\"violins\"),g=-1!==p.indexOf(\"kde\"),m=[];if(d||g){var v=a.hoverOnBoxes(t,e,r,s);if(g&&v.length>0){var y,x,b,_,w,T=t.xa,k=t.ya;\"h\"===h.orientation?(w=e,y=\"y\",b=k,x=\"x\",_=T):(w=r,y=\"x\",b=T,x=\"y\",_=k);var M=f[t.index];if(w>=M.span[0]&&w<=M.span[1]){var A=n.extendFlat({},t),S=_.c2p(w,!0),E=o.getKdeValue(M,h,w),C=o.getPositionOnKdePath(M,h,S),L=b._offset,I=b._length;A[y+\"0\"]=C[0],A[y+\"1\"]=C[1],A[x+\"0\"]=A[x+\"1\"]=S,A[x+\"Label\"]=x+\": \"+i.hoverLabelText(_,w)+\", \"+f[0].t.labels.kde+\" \"+E.toFixed(3),A.spikeDistance=v[0].spikeDistance;var P=y+\"Spike\";A[P]=v[0][P],v[0].spikeDistance=void 0,v[0][P]=void 0,A.hovertemplate=!1,m.push(A),(u={stroke:t.color})[y+\"1\"]=n.constrain(L+C[0],L,L+I),u[y+\"2\"]=n.constrain(L+C[1],L,L+I),u[x+\"1\"]=u[x+\"2\"]=_._offset+S}}d&&(m=m.concat(v))}-1!==p.indexOf(\"points\")&&(c=a.hoverOnPoints(t,e,r));var z=l.selectAll(\".violinline-\"+h.uid).data(u?[0]:[]);return z.enter().append(\"line\").classed(\"violinline-\"+h.uid,!0).attr(\"stroke-width\",1.5),z.exit().remove(),z.attr(u),\"closest\"===s?c?[c]:m:c?(m.push(c),m):m}},{\"../../lib\":778,\"../../plots/cartesian/axes\":828,\"../box/hover\":951,\"./helpers\":1342}],1344:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\"),crossTraceDefaults:t(\"../box/defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\"),styleOnSelect:t(\"../scatter/style\").styleOnSelect,hoverPoints:t(\"./hover\"),selectPoints:t(\"../box/select\"),moduleType:\"trace\",name:\"violin\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"cartesian\",\"svg\",\"symbols\",\"oriented\",\"box-violin\",\"showLegend\",\"violinLayout\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":841,\"../box/defaults\":949,\"../box/select\":956,\"../scatter/style\":1211,\"./attributes\":1338,\"./calc\":1339,\"./cross_trace_calc\":1340,\"./defaults\":1341,\"./hover\":1343,\"./layout_attributes\":1345,\"./layout_defaults\":1346,\"./plot\":1347,\"./style\":1348}],1345:[function(t,e,r){\"use strict\";var n=t(\"../box/layout_attributes\"),i=t(\"../../lib\").extendFlat;e.exports={violinmode:i({},n.boxmode,{}),violingap:i({},n.boxgap,{}),violingroupgap:i({},n.boxgroupgap,{})}},{\"../../lib\":778,\"../box/layout_attributes\":953}],1346:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\"),a=t(\"../box/layout_defaults\");e.exports=function(t,e,r){a._supply(t,e,r,(function(r,a){return n.coerce(t,e,i,r,a)}),\"violin\")}},{\"../../lib\":778,\"../box/layout_defaults\":954,\"./layout_attributes\":1345}],1347:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../../components/drawing\"),o=t(\"../box/plot\"),s=t(\"../scatter/line_points\"),l=t(\"./helpers\");e.exports=function(t,e,r,c){var u=t._fullLayout,f=e.xaxis,h=e.yaxis;function p(t){var e=s(t,{xaxis:f,yaxis:h,connectGaps:!0,baseTolerance:.75,shape:\"spline\",simplify:!0,linearized:!0});return a.smoothopen(e[0],1)}i.makeTraceGroups(c,r,\"trace violins\").each((function(t){var r=n.select(this),a=t[0],s=a.t,c=a.trace;if(!0!==c.visible||s.empty)r.remove();else{var d=s.bPos,g=s.bdPos,m=e[s.valLetter+\"axis\"],v=e[s.posLetter+\"axis\"],y=\"both\"===c.side,x=y||\"positive\"===c.side,b=y||\"negative\"===c.side,_=r.selectAll(\"path.violin\").data(i.identity);_.enter().append(\"path\").style(\"vector-effect\",\"non-scaling-stroke\").attr(\"class\",\"violin\"),_.exit().remove(),_.each((function(t){var e,r,i,a,o,l,f,h,_=n.select(this),w=t.density,T=w.length,k=v.c2l(t.pos+d,!0),M=v.l2p(k);if(c.width)e=s.maxKDE/g;else{var A=u._violinScaleGroupStats[c.scalegroup];e=\"count\"===c.scalemode?A.maxKDE/g*(A.maxCount/t.pts.length):A.maxKDE/g}if(x){for(f=new Array(T),o=0;o<T;o++)(h=f[o]={})[s.posLetter]=k+w[o].v/e,h[s.valLetter]=m.c2l(w[o].t,!0);r=p(f)}if(b){for(f=new Array(T),l=0,o=T-1;l<T;l++,o--)(h=f[l]={})[s.posLetter]=k-w[o].v/e,h[s.valLetter]=m.c2l(w[o].t,!0);i=p(f)}if(y)a=r+\"L\"+i.substr(1)+\"Z\";else{var S=[M,m.c2p(w[0].t)],E=[M,m.c2p(w[T-1].t)];\"h\"===c.orientation&&(S.reverse(),E.reverse()),a=x?\"M\"+S+\"L\"+r.substr(1)+\"L\"+E:\"M\"+E+\"L\"+i.substr(1)+\"L\"+S}_.attr(\"d\",a),t.posCenterPx=M,t.posDensityScale=e*g,t.path=_.node(),t.pathLength=t.path.getTotalLength()/(y?2:1)}));var w,T,k,M=c.box,A=M.width,S=(M.line||{}).width;y?(w=g*A,T=0):x?(w=[0,g*A/2],T=S*{x:1,y:-1}[s.posLetter]):(w=[g*A/2,0],T=S*{x:-1,y:1}[s.posLetter]),o.plotBoxAndWhiskers(r,{pos:v,val:m},c,{bPos:d,bdPos:w,bPosPxOffset:T}),o.plotBoxMean(r,{pos:v,val:m},c,{bPos:d,bdPos:w,bPosPxOffset:T}),!c.box.visible&&c.meanline.visible&&(k=i.identity);var E=r.selectAll(\"path.meanline\").data(k||[]);E.enter().append(\"path\").attr(\"class\",\"meanline\").style(\"fill\",\"none\").style(\"vector-effect\",\"non-scaling-stroke\"),E.exit().remove(),E.each((function(t){var e=m.c2p(t.mean,!0),r=l.getPositionOnKdePath(t,c,e);n.select(this).attr(\"d\",\"h\"===c.orientation?\"M\"+e+\",\"+r[0]+\"V\"+r[1]:\"M\"+r[0]+\",\"+e+\"H\"+r[1])})),o.plotPoints(r,{x:f,y:h},c,s)}}))}},{\"../../components/drawing\":665,\"../../lib\":778,\"../box/plot\":955,\"../scatter/line_points\":1201,\"./helpers\":1342,d3:169}],1348:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/color\"),a=t(\"../scatter/style\").stylePoints;e.exports=function(t){var e=n.select(t).selectAll(\"g.trace.violins\");e.style(\"opacity\",(function(t){return t[0].trace.opacity})),e.each((function(e){var r=e[0].trace,o=n.select(this),s=r.box||{},l=s.line||{},c=r.meanline||{},u=c.width;o.selectAll(\"path.violin\").style(\"stroke-width\",r.line.width+\"px\").call(i.stroke,r.line.color).call(i.fill,r.fillcolor),o.selectAll(\"path.box\").style(\"stroke-width\",l.width+\"px\").call(i.stroke,l.color).call(i.fill,s.fillcolor);var f={\"stroke-width\":u+\"px\",\"stroke-dasharray\":2*u+\"px,\"+u+\"px\"};o.selectAll(\"path.mean\").style(f).call(i.stroke,c.color),o.selectAll(\"path.meanline\").style(f).call(i.stroke,c.color),a(o,r,t)}))}},{\"../../components/color\":643,\"../scatter/style\":1211,d3:169}],1349:[function(t,e,r){\"use strict\";var n=t(\"../../components/colorscale/attributes\"),i=t(\"../isosurface/attributes\"),a=t(\"../surface/attributes\"),o=t(\"../../plots/attributes\"),s=t(\"../../lib/extend\").extendFlat,l=t(\"../../plot_api/edit_types\").overrideAll,c=e.exports=l(s({x:i.x,y:i.y,z:i.z,value:i.value,isomin:i.isomin,isomax:i.isomax,surface:i.surface,spaceframe:{show:{valType:\"boolean\",dflt:!1},fill:{valType:\"number\",min:0,max:1,dflt:1}},slices:i.slices,caps:i.caps,text:i.text,hovertext:i.hovertext,hovertemplate:i.hovertemplate},n(\"\",{colorAttr:\"`value`\",showScaleDflt:!0,editTypeOverride:\"calc\"}),{colorbar:i.colorbar,opacity:i.opacity,opacityscale:a.opacityscale,lightposition:i.lightposition,lighting:i.lighting,flatshading:i.flatshading,contour:i.contour,hoverinfo:s({},o.hoverinfo),showlegend:s({},o.showlegend,{dflt:!1})}),\"calc\",\"nested\");c.x.editType=c.y.editType=c.z.editType=c.value.editType=\"calc+clearAxisTypes\",c.transforms=void 0},{\"../../components/colorscale/attributes\":650,\"../../lib/extend\":768,\"../../plot_api/edit_types\":810,\"../../plots/attributes\":824,\"../isosurface/attributes\":1123,\"../surface/attributes\":1311}],1350:[function(t,e,r){\"use strict\";var n=t(\"gl-mesh3d\"),i=t(\"../../lib/gl_format_color\").parseColorScale,a=t(\"../../lib/str2rgbarray\"),o=t(\"../../components/colorscale\").extractOpts,s=t(\"../../plots/gl3d/zip3\"),l=t(\"../isosurface/convert\").findNearestOnAxis,c=t(\"../isosurface/convert\").generateIsoMeshes;function u(t,e,r){this.scene=t,this.uid=r,this.mesh=e,this.name=\"\",this.data=null,this.showContour=!1}var f=u.prototype;f.handlePick=function(t){if(t.object===this.mesh){var e=t.data.index,r=this.data._meshX[e],n=this.data._meshY[e],i=this.data._meshZ[e],a=this.data._Ys.length,o=this.data._Zs.length,s=l(r,this.data._Xs).id,c=l(n,this.data._Ys).id,u=l(i,this.data._Zs).id,f=t.index=u+o*c+o*a*s;t.traceCoordinate=[this.data._meshX[f],this.data._meshY[f],this.data._meshZ[f],this.data._value[f]];var h=this.data.hovertext||this.data.text;return Array.isArray(h)&&void 0!==h[f]?t.textLabel=h[f]:h&&(t.textLabel=h),!0}},f.update=function(t){var e=this.scene,r=e.fullSceneLayout;function n(t,e,r,n){return e.map((function(e){return t.d2l(e,0,n)*r}))}this.data=c(t);var l={positions:s(n(r.xaxis,t._meshX,e.dataScale[0],t.xcalendar),n(r.yaxis,t._meshY,e.dataScale[1],t.ycalendar),n(r.zaxis,t._meshZ,e.dataScale[2],t.zcalendar)),cells:s(t._meshI,t._meshJ,t._meshK),lightPosition:[t.lightposition.x,t.lightposition.y,t.lightposition.z],ambient:t.lighting.ambient,diffuse:t.lighting.diffuse,specular:t.lighting.specular,roughness:t.lighting.roughness,fresnel:t.lighting.fresnel,vertexNormalsEpsilon:t.lighting.vertexnormalsepsilon,faceNormalsEpsilon:t.lighting.facenormalsepsilon,opacity:t.opacity,opacityscale:t.opacityscale,contourEnable:t.contour.show,contourColor:a(t.contour.color).slice(0,3),contourWidth:t.contour.width,useFacetNormals:t.flatshading},u=o(t);l.vertexIntensity=t._meshIntensity,l.vertexIntensityBounds=[u.min,u.max],l.colormap=i(t),this.mesh.update(l)},f.dispose=function(){this.scene.glplot.remove(this.mesh),this.mesh.dispose()},e.exports=function(t,e){var r=t.glplot.gl,i=n({gl:r}),a=new u(t,i,e.uid);return i._trace=a,a.update(e),t.glplot.add(i),a}},{\"../../components/colorscale\":655,\"../../lib/gl_format_color\":774,\"../../lib/str2rgbarray\":802,\"../../plots/gl3d/zip3\":881,\"../isosurface/convert\":1125,\"gl-mesh3d\":309}],1351:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./attributes\"),a=t(\"../isosurface/defaults\").supplyIsoDefaults,o=t(\"../surface/defaults\").opacityscaleDefaults;e.exports=function(t,e,r,s){function l(r,a){return n.coerce(t,e,i,r,a)}a(t,e,r,s,l),o(t,e,s,l)}},{\"../../lib\":778,\"../isosurface/defaults\":1126,\"../surface/defaults\":1314,\"./attributes\":1349}],1352:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),supplyDefaults:t(\"./defaults\"),calc:t(\"../isosurface/calc\"),colorbar:{min:\"cmin\",max:\"cmax\"},plot:t(\"./convert\"),moduleType:\"trace\",name:\"volume\",basePlotModule:t(\"../../plots/gl3d\"),categories:[\"gl3d\",\"showLegend\"],meta:{}}},{\"../../plots/gl3d\":870,\"../isosurface/calc\":1124,\"./attributes\":1349,\"./convert\":1350,\"./defaults\":1351}],1353:[function(t,e,r){\"use strict\";var n=t(\"../bar/attributes\"),i=t(\"../scatter/attributes\").line,a=t(\"../../plots/attributes\"),o=t(\"../../plots/template_attributes\").hovertemplateAttrs,s=t(\"../../plots/template_attributes\").texttemplateAttrs,l=t(\"./constants\"),c=t(\"../../lib/extend\").extendFlat,u=t(\"../../components/color\");function f(t){return{marker:{color:c({},n.marker.color,{arrayOk:!1,editType:\"style\"}),line:{color:c({},n.marker.line.color,{arrayOk:!1,editType:\"style\"}),width:c({},n.marker.line.width,{arrayOk:!1,editType:\"style\"}),editType:\"style\"},editType:\"style\"},editType:\"style\"}}e.exports={measure:{valType:\"data_array\",dflt:[],editType:\"calc\"},base:{valType:\"number\",dflt:null,arrayOk:!1,editType:\"calc\"},x:n.x,x0:n.x0,dx:n.dx,y:n.y,y0:n.y0,dy:n.dy,xperiod:n.xperiod,yperiod:n.yperiod,xperiod0:n.xperiod0,yperiod0:n.yperiod0,xperiodalignment:n.xperiodalignment,yperiodalignment:n.yperiodalignment,hovertext:n.hovertext,hovertemplate:o({},{keys:l.eventDataKeys}),hoverinfo:c({},a.hoverinfo,{flags:[\"name\",\"x\",\"y\",\"text\",\"initial\",\"delta\",\"final\"]}),textinfo:{valType:\"flaglist\",flags:[\"label\",\"text\",\"initial\",\"delta\",\"final\"],extras:[\"none\"],editType:\"plot\",arrayOk:!1},texttemplate:s({editType:\"plot\"},{keys:l.eventDataKeys.concat([\"label\"])}),text:n.text,textposition:n.textposition,insidetextanchor:n.insidetextanchor,textangle:n.textangle,textfont:n.textfont,insidetextfont:n.insidetextfont,outsidetextfont:n.outsidetextfont,constraintext:n.constraintext,cliponaxis:n.cliponaxis,orientation:n.orientation,offset:n.offset,width:n.width,increasing:f(),decreasing:f(),totals:f(),connector:{line:{color:c({},i.color,{dflt:u.defaultLine}),width:c({},i.width,{editType:\"plot\"}),dash:i.dash,editType:\"plot\"},mode:{valType:\"enumerated\",values:[\"spanning\",\"between\"],dflt:\"between\",editType:\"plot\"},visible:{valType:\"boolean\",dflt:!0,editType:\"plot\"},editType:\"plot\"},offsetgroup:n.offsetgroup,alignmentgroup:n.alignmentgroup}},{\"../../components/color\":643,\"../../lib/extend\":768,\"../../plots/attributes\":824,\"../../plots/template_attributes\":906,\"../bar/attributes\":921,\"../scatter/attributes\":1187,\"./constants\":1355}],1354:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\"),i=t(\"../../plots/cartesian/align_period\"),a=t(\"../../lib\").mergeArray,o=t(\"../scatter/calc_selection\"),s=t(\"../../constants/numerical\").BADNUM;function l(t){return\"a\"===t||\"absolute\"===t}function c(t){return\"t\"===t||\"total\"===t}e.exports=function(t,e){var r,u,f,h,p=n.getFromId(t,e.xaxis||\"x\"),d=n.getFromId(t,e.yaxis||\"y\");\"h\"===e.orientation?(r=p.makeCalcdata(e,\"x\"),f=d.makeCalcdata(e,\"y\"),u=i(e,d,\"y\",f),h=!!e.yperiodalignment):(r=d.makeCalcdata(e,\"y\"),f=p.makeCalcdata(e,\"x\"),u=i(e,p,\"x\",f),h=!!e.xperiodalignment);for(var g,m=Math.min(u.length,r.length),v=new Array(m),y=0,x=!1,b=0;b<m;b++){var _=r[b]||0,w=!1;(r[b]!==s||c(e.measure[b])||l(e.measure[b]))&&b+1<m&&(r[b+1]!==s||c(e.measure[b+1])||l(e.measure[b+1]))&&(w=!0);var T=v[b]={i:b,p:u[b],s:_,rawS:_,cNext:w};l(e.measure[b])?(y=T.s,T.isSum=!0,T.dir=\"totals\",T.s=y):c(e.measure[b])?(T.isSum=!0,T.dir=\"totals\",T.s=y):(T.isSum=!1,T.dir=T.rawS<0?\"decreasing\":\"increasing\",g=T.s,T.s=y+g,y+=g),\"totals\"===T.dir&&(x=!0),h&&(v[b].orig_p=f[b]),e.ids&&(T.id=String(e.ids[b])),T.v=(e.base||0)+y}return v.length&&(v[0].hasTotals=x),a(e.text,v,\"tx\"),a(e.hovertext,v,\"htx\"),o(v,e),v}},{\"../../constants/numerical\":753,\"../../lib\":778,\"../../plots/cartesian/align_period\":825,\"../../plots/cartesian/axes\":828,\"../scatter/calc_selection\":1189}],1355:[function(t,e,r){\"use strict\";e.exports={eventDataKeys:[\"initial\",\"delta\",\"final\"]}},{}],1356:[function(t,e,r){\"use strict\";var n=t(\"../bar/cross_trace_calc\").setGroupPositions;e.exports=function(t,e){var r,i,a=t._fullLayout,o=t._fullData,s=t.calcdata,l=e.xaxis,c=e.yaxis,u=[],f=[],h=[];for(i=0;i<o.length;i++){var p=o[i];!0===p.visible&&p.xaxis===l._id&&p.yaxis===c._id&&\"waterfall\"===p.type&&(r=s[i],\"h\"===p.orientation?h.push(r):f.push(r),u.push(r))}var d={mode:a.waterfallmode,norm:a.waterfallnorm,gap:a.waterfallgap,groupgap:a.waterfallgroupgap};for(n(t,l,c,f,d),n(t,c,l,h,d),i=0;i<u.length;i++){r=u[i];for(var g=0;g<r.length;g++){var m=r[g];!1===m.isSum&&(m.s0+=0===g?0:r[g-1].s),g+1<r.length&&(r[g].nextP0=r[g+1].p0,r[g].nextS0=r[g+1].s0)}}}},{\"../bar/cross_trace_calc\":924}],1357:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"../bar/defaults\").handleGroupingDefaults,a=t(\"../bar/defaults\").handleText,o=t(\"../scatter/xy_defaults\"),s=t(\"../scatter/period_defaults\"),l=t(\"./attributes\"),c=t(\"../../components/color\"),u=t(\"../../constants/delta.js\"),f=u.INCREASING.COLOR,h=u.DECREASING.COLOR;function p(t,e,r){t(e+\".marker.color\",r),t(e+\".marker.line.color\",c.defaultLine),t(e+\".marker.line.width\")}e.exports={supplyDefaults:function(t,e,r,i){function c(r,i){return n.coerce(t,e,l,r,i)}if(o(t,e,i,c)){s(t,e,i,c),c(\"measure\"),c(\"orientation\",e.x&&!e.y?\"h\":\"v\"),c(\"base\"),c(\"offset\"),c(\"width\"),c(\"text\"),c(\"hovertext\"),c(\"hovertemplate\");var u=c(\"textposition\");if(a(t,e,i,c,u,{moduleHasSelected:!1,moduleHasUnselected:!1,moduleHasConstrain:!0,moduleHasCliponaxis:!0,moduleHasTextangle:!0,moduleHasInsideanchor:!0}),\"none\"!==e.textposition&&(c(\"texttemplate\"),e.texttemplate||c(\"textinfo\")),p(c,\"increasing\",f),p(c,\"decreasing\",h),p(c,\"totals\",\"#4499FF\"),c(\"connector.visible\"))c(\"connector.mode\"),c(\"connector.line.width\")&&(c(\"connector.line.color\"),c(\"connector.line.dash\"))}else e.visible=!1},crossTraceDefaults:function(t,e){var r,a;function o(t){return n.coerce(a._input,a,l,t)}if(\"group\"===e.waterfallmode)for(var s=0;s<t.length;s++)r=(a=t[s])._input,i(r,a,e,o)}}},{\"../../components/color\":643,\"../../constants/delta.js\":747,\"../../lib\":778,\"../bar/defaults\":925,\"../scatter/period_defaults\":1207,\"../scatter/xy_defaults\":1214,\"./attributes\":1353}],1358:[function(t,e,r){\"use strict\";e.exports=function(t,e){return t.x=\"xVal\"in e?e.xVal:e.x,t.y=\"yVal\"in e?e.yVal:e.y,\"initial\"in e&&(t.initial=e.initial),\"delta\"in e&&(t.delta=e.delta),\"final\"in e&&(t.final=e.final),e.xa&&(t.xaxis=e.xa),e.ya&&(t.yaxis=e.ya),t}},{}],1359:[function(t,e,r){\"use strict\";var n=t(\"../../plots/cartesian/axes\").hoverLabelText,i=t(\"../../components/color\").opacity,a=t(\"../bar/hover\").hoverOnBars,o=t(\"../../constants/delta.js\"),s=o.INCREASING.SYMBOL,l=o.DECREASING.SYMBOL;e.exports=function(t,e,r,o){var c=a(t,e,r,o);if(c){var u=c.cd,f=u[0].trace,h=\"h\"===f.orientation,p=h?t.xa:t.ya,d=u[c.index],g=d.isSum?d.b+d.s:d.rawS;if(!d.isSum){c.initial=d.b+d.s-g,c.delta=g,c.final=c.initial+c.delta;var m=w(Math.abs(c.delta));c.deltaLabel=g<0?\"(\"+m+\")\":m,c.finalLabel=w(c.final),c.initialLabel=w(c.initial)}var v=d.hi||f.hoverinfo,y=[];if(v&&\"none\"!==v&&\"skip\"!==v){var x=\"all\"===v,b=v.split(\"+\"),_=function(t){return x||-1!==b.indexOf(t)};d.isSum||(!_(\"final\")||_(h?\"x\":\"y\")||y.push(c.finalLabel),_(\"delta\")&&(g<0?y.push(c.deltaLabel+\" \"+l):y.push(c.deltaLabel+\" \"+s)),_(\"initial\")&&y.push(\"Initial: \"+c.initialLabel))}return y.length&&(c.extraText=y.join(\"<br>\")),c.color=function(t,e){var r=t[e.dir].marker,n=r.color,a=r.line.color,o=r.line.width;if(i(n))return n;if(i(a)&&o)return a}(f,d),[c]}function w(t){return n(p,t)}}},{\"../../components/color\":643,\"../../constants/delta.js\":747,\"../../plots/cartesian/axes\":828,\"../bar/hover\":928}],1360:[function(t,e,r){\"use strict\";e.exports={attributes:t(\"./attributes\"),layoutAttributes:t(\"./layout_attributes\"),supplyDefaults:t(\"./defaults\").supplyDefaults,crossTraceDefaults:t(\"./defaults\").crossTraceDefaults,supplyLayoutDefaults:t(\"./layout_defaults\"),calc:t(\"./calc\"),crossTraceCalc:t(\"./cross_trace_calc\"),plot:t(\"./plot\"),style:t(\"./style\").style,hoverPoints:t(\"./hover\"),eventData:t(\"./event_data\"),selectPoints:t(\"../bar/select\"),moduleType:\"trace\",name:\"waterfall\",basePlotModule:t(\"../../plots/cartesian\"),categories:[\"bar-like\",\"cartesian\",\"svg\",\"oriented\",\"showLegend\",\"zoomScale\"],meta:{}}},{\"../../plots/cartesian\":841,\"../bar/select\":933,\"./attributes\":1353,\"./calc\":1354,\"./cross_trace_calc\":1356,\"./defaults\":1357,\"./event_data\":1358,\"./hover\":1359,\"./layout_attributes\":1361,\"./layout_defaults\":1362,\"./plot\":1363,\"./style\":1364}],1361:[function(t,e,r){\"use strict\";e.exports={waterfallmode:{valType:\"enumerated\",values:[\"group\",\"overlay\"],dflt:\"group\",editType:\"calc\"},waterfallgap:{valType:\"number\",min:0,max:1,editType:\"calc\"},waterfallgroupgap:{valType:\"number\",min:0,max:1,dflt:0,editType:\"calc\"}}},{}],1362:[function(t,e,r){\"use strict\";var n=t(\"../../lib\"),i=t(\"./layout_attributes\");e.exports=function(t,e,r){var a=!1;function o(r,a){return n.coerce(t,e,i,r,a)}for(var s=0;s<r.length;s++){var l=r[s];if(l.visible&&\"waterfall\"===l.type){a=!0;break}}a&&(o(\"waterfallmode\"),o(\"waterfallgap\",.2),o(\"waterfallgroupgap\"))}},{\"../../lib\":778,\"./layout_attributes\":1361}],1363:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../lib\"),a=t(\"../../components/drawing\"),o=t(\"../../constants/numerical\").BADNUM,s=t(\"../bar/plot\"),l=t(\"../bar/uniform_text\").clearMinTextSize;e.exports=function(t,e,r,c){var u=t._fullLayout;l(\"waterfall\",u),s.plot(t,e,r,c,{mode:u.waterfallmode,norm:u.waterfallmode,gap:u.waterfallgap,groupgap:u.waterfallgroupgap}),function(t,e,r,s){var l=e.xaxis,c=e.yaxis;i.makeTraceGroups(s,r,\"trace bars\").each((function(r){var s=n.select(this),u=r[0].trace,f=i.ensureSingle(s,\"g\",\"lines\");if(u.connector&&u.connector.visible){var h=\"h\"===u.orientation,p=u.connector.mode,d=f.selectAll(\"g.line\").data(i.identity);d.enter().append(\"g\").classed(\"line\",!0),d.exit().remove();var g=d.size();d.each((function(r,s){if(s===g-1||r.cNext){var u=function(t,e,r,n){var i=[],a=[],o=n?e:r,s=n?r:e;return i[0]=o.c2p(t.s0,!0),a[0]=s.c2p(t.p0,!0),i[1]=o.c2p(t.s1,!0),a[1]=s.c2p(t.p1,!0),i[2]=o.c2p(t.nextS0,!0),a[2]=s.c2p(t.nextP0,!0),n?[i,a]:[a,i]}(r,l,c,h),f=u[0],d=u[1],m=\"\";f[0]!==o&&d[0]!==o&&f[1]!==o&&d[1]!==o&&(\"spanning\"===p&&!r.isSum&&s>0&&(m+=h?\"M\"+f[0]+\",\"+d[1]+\"V\"+d[0]:\"M\"+f[1]+\",\"+d[0]+\"H\"+f[0]),\"between\"!==p&&(r.isSum||s<g-1)&&(m+=h?\"M\"+f[1]+\",\"+d[0]+\"V\"+d[1]:\"M\"+f[0]+\",\"+d[1]+\"H\"+f[1]),f[2]!==o&&d[2]!==o&&(m+=h?\"M\"+f[1]+\",\"+d[1]+\"V\"+d[2]:\"M\"+f[1]+\",\"+d[1]+\"H\"+f[2])),\"\"===m&&(m=\"M0,0Z\"),i.ensureSingle(n.select(this),\"path\").attr(\"d\",m).call(a.setClipUrl,e.layerClipId,t)}}))}else f.remove()}))}(t,e,r,c)}},{\"../../components/drawing\":665,\"../../constants/numerical\":753,\"../../lib\":778,\"../bar/plot\":932,\"../bar/uniform_text\":937,d3:169}],1364:[function(t,e,r){\"use strict\";var n=t(\"d3\"),i=t(\"../../components/drawing\"),a=t(\"../../components/color\"),o=t(\"../../constants/interactions\").DESELECTDIM,s=t(\"../bar/style\"),l=t(\"../bar/uniform_text\").resizeText,c=s.styleTextPoints;e.exports={style:function(t,e,r){var s=r||n.select(t).selectAll(\"g.waterfalllayer\").selectAll(\"g.trace\");l(t,s,\"waterfall\"),s.style(\"opacity\",(function(t){return t[0].trace.opacity})),s.each((function(e){var r=n.select(this),s=e[0].trace;r.selectAll(\".point > path\").each((function(t){if(!t.isBlank){var e=s[t.dir].marker;n.select(this).call(a.fill,e.color).call(a.stroke,e.line.color).call(i.dashLine,e.line.dash,e.line.width).style(\"opacity\",s.selectedpoints&&!t.selected?o:1)}})),c(r,s,t),r.selectAll(\".lines\").each((function(){var t=s.connector.line;i.lineGroupStyle(n.select(this).selectAll(\"path\"),t.width,t.color,t.dash)}))}))}}},{\"../../components/color\":643,\"../../components/drawing\":665,\"../../constants/interactions\":752,\"../bar/style\":935,\"../bar/uniform_text\":937,d3:169}],1365:[function(t,e,r){\"use strict\";var n=t(\"../plots/cartesian/axes\"),i=t(\"../lib\"),a=t(\"../plot_api/plot_schema\"),o=t(\"./helpers\").pointsAccessorFunction,s=t(\"../constants/numerical\").BADNUM;r.moduleType=\"transform\",r.name=\"aggregate\";var l=r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},groups:{valType:\"string\",strict:!0,noBlank:!0,arrayOk:!0,dflt:\"x\",editType:\"calc\"},aggregations:{_isLinkedToArray:\"aggregation\",target:{valType:\"string\",editType:\"calc\"},func:{valType:\"enumerated\",values:[\"count\",\"sum\",\"avg\",\"median\",\"mode\",\"rms\",\"stddev\",\"min\",\"max\",\"first\",\"last\",\"change\",\"range\"],dflt:\"first\",editType:\"calc\"},funcmode:{valType:\"enumerated\",values:[\"sample\",\"population\"],dflt:\"sample\",editType:\"calc\"},enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},editType:\"calc\"},editType:\"calc\"},c=l.aggregations;function u(t,e,r,a){if(a.enabled){for(var o=a.target,l=i.nestedProperty(e,o),c=l.get(),u=function(t,e){var r=t.func,n=e.d2c,a=e.c2d;switch(r){case\"count\":return f;case\"first\":return h;case\"last\":return p;case\"sum\":return function(t,e){for(var r=0,i=0;i<e.length;i++){var o=n(t[e[i]]);o!==s&&(r+=o)}return a(r)};case\"avg\":return function(t,e){for(var r=0,i=0,o=0;o<e.length;o++){var l=n(t[e[o]]);l!==s&&(r+=l,i++)}return i?a(r/i):s};case\"min\":return function(t,e){for(var r=1/0,i=0;i<e.length;i++){var o=n(t[e[i]]);o!==s&&(r=Math.min(r,o))}return r===1/0?s:a(r)};case\"max\":return function(t,e){for(var r=-1/0,i=0;i<e.length;i++){var o=n(t[e[i]]);o!==s&&(r=Math.max(r,o))}return r===-1/0?s:a(r)};case\"range\":return function(t,e){for(var r=1/0,i=-1/0,o=0;o<e.length;o++){var l=n(t[e[o]]);l!==s&&(r=Math.min(r,l),i=Math.max(i,l))}return i===-1/0||r===1/0?s:a(i-r)};case\"change\":return function(t,e){var r=n(t[e[0]]),i=n(t[e[e.length-1]]);return r===s||i===s?s:a(i-r)};case\"median\":return function(t,e){for(var r=[],o=0;o<e.length;o++){var l=n(t[e[o]]);l!==s&&r.push(l)}if(!r.length)return s;r.sort(i.sorterAsc);var c=(r.length-1)/2;return a((r[Math.floor(c)]+r[Math.ceil(c)])/2)};case\"mode\":return function(t,e){for(var r={},i=0,o=s,l=0;l<e.length;l++){var c=n(t[e[l]]);if(c!==s){var u=r[c]=(r[c]||0)+1;u>i&&(i=u,o=c)}}return i?a(o):s};case\"rms\":return function(t,e){for(var r=0,i=0,o=0;o<e.length;o++){var l=n(t[e[o]]);l!==s&&(r+=l*l,i++)}return i?a(Math.sqrt(r/i)):s};case\"stddev\":return function(e,r){var i,a=0,o=0,l=1,c=s;for(i=0;i<r.length&&c===s;i++)c=n(e[r[i]]);if(c===s)return s;for(;i<r.length;i++){var u=n(e[r[i]]);if(u!==s){var f=u-c;a+=f,o+=f*f,l++}}var h=\"sample\"===t.funcmode?l-1:l;return h?Math.sqrt((o-a*a/l)/h):0}}}(a,n.getDataConversions(t,e,o,c)),d=new Array(r.length),g=0;g<r.length;g++)d[g]=u(c,r[g]);l.set(d),\"count\"===a.func&&i.pushUnique(e._arrayAttrs,o)}}function f(t,e){return e.length}function h(t,e){return t[e[0]]}function p(t,e){return t[e[e.length-1]]}r.supplyDefaults=function(t,e){var r,n={};function o(e,r){return i.coerce(t,n,l,e,r)}if(!o(\"enabled\"))return n;var s=a.findArrayAttributes(e),u={};for(r=0;r<s.length;r++)u[s[r]]=1;var f=o(\"groups\");if(!Array.isArray(f)){if(!u[f])return n.enabled=!1,n;u[f]=0}var h,p=t.aggregations||[],d=n.aggregations=new Array(p.length);function g(t,e){return i.coerce(p[r],h,c,t,e)}for(r=0;r<p.length;r++){h={_index:r};var m=g(\"target\"),v=g(\"func\");g(\"enabled\")&&m&&(u[m]||\"count\"===v&&void 0===u[m])?(\"stddev\"===v&&g(\"funcmode\"),u[m]=0,d[r]=h):d[r]={enabled:!1,_index:r}}for(r=0;r<s.length;r++)u[s[r]]&&d.push({target:s[r],func:c.func.dflt,enabled:!0,_index:-1});return n},r.calcTransform=function(t,e,r){if(r.enabled){var n=r.groups,a=i.getTargetArray(e,{target:n});if(a){var s,l,c,f,h={},p={},d=[],g=o(e.transforms,r),m=a.length;for(e._length&&(m=Math.min(m,e._length)),s=0;s<m;s++)void 0===(c=h[l=a[s]])?(h[l]=d.length,f=[s],d.push(f),p[h[l]]=g(s)):(d[c].push(s),p[h[l]]=(p[h[l]]||[]).concat(g(s)));r._indexToPoints=p;var v=r.aggregations;for(s=0;s<v.length;s++)u(t,e,d,v[s]);\"string\"==typeof n&&u(t,e,d,{target:n,func:\"first\",enabled:!0}),e._length=d.length}}}},{\"../constants/numerical\":753,\"../lib\":778,\"../plot_api/plot_schema\":816,\"../plots/cartesian/axes\":828,\"./helpers\":1368}],1366:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"../registry\"),a=t(\"../plots/cartesian/axes\"),o=t(\"./helpers\").pointsAccessorFunction,s=t(\"../constants/filter_ops\"),l=s.COMPARISON_OPS,c=s.INTERVAL_OPS,u=s.SET_OPS;r.moduleType=\"transform\",r.name=\"filter\",r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},target:{valType:\"string\",strict:!0,noBlank:!0,arrayOk:!0,dflt:\"x\",editType:\"calc\"},operation:{valType:\"enumerated\",values:[].concat(l).concat(c).concat(u),dflt:\"=\",editType:\"calc\"},value:{valType:\"any\",dflt:0,editType:\"calc\"},preservegaps:{valType:\"boolean\",dflt:!1,editType:\"calc\"},editType:\"calc\"},r.supplyDefaults=function(t){var e={};function a(i,a){return n.coerce(t,e,r.attributes,i,a)}if(a(\"enabled\")){var o=a(\"target\");if(n.isArrayOrTypedArray(o)&&0===o.length)return e.enabled=!1,e;a(\"preservegaps\"),a(\"operation\"),a(\"value\");var s=i.getComponentMethod(\"calendars\",\"handleDefaults\");s(t,e,\"valuecalendar\",null),s(t,e,\"targetcalendar\",null)}return e},r.calcTransform=function(t,e,r){if(r.enabled){var i=n.getTargetArray(e,r);if(i){var s=r.target,f=i.length;e._length&&(f=Math.min(f,e._length));var h=r.targetcalendar,p=e._arrayAttrs,d=r.preservegaps;if(\"string\"==typeof s){var g=n.nestedProperty(e,s+\"calendar\").get();g&&(h=g)}var m,v,y=function(t,e,r){var n=t.operation,i=t.value,a=Array.isArray(i);function o(t){return-1!==t.indexOf(n)}var s,f=function(r){return e(r,0,t.valuecalendar)},h=function(t){return e(t,0,r)};o(l)?s=f(a?i[0]:i):o(c)?s=a?[f(i[0]),f(i[1])]:[f(i),f(i)]:o(u)&&(s=a?i.map(f):[f(i)]);switch(n){case\"=\":return function(t){return h(t)===s};case\"!=\":return function(t){return h(t)!==s};case\"<\":return function(t){return h(t)<s};case\"<=\":return function(t){return h(t)<=s};case\">\":return function(t){return h(t)>s};case\">=\":return function(t){return h(t)>=s};case\"[]\":return function(t){var e=h(t);return e>=s[0]&&e<=s[1]};case\"()\":return function(t){var e=h(t);return e>s[0]&&e<s[1]};case\"[)\":return function(t){var e=h(t);return e>=s[0]&&e<s[1]};case\"(]\":return function(t){var e=h(t);return e>s[0]&&e<=s[1]};case\"][\":return function(t){var e=h(t);return e<=s[0]||e>=s[1]};case\")(\":return function(t){var e=h(t);return e<s[0]||e>s[1]};case\"](\":return function(t){var e=h(t);return e<=s[0]||e>s[1]};case\")[\":return function(t){var e=h(t);return e<s[0]||e>=s[1]};case\"{}\":return function(t){return-1!==s.indexOf(h(t))};case\"}{\":return function(t){return-1===s.indexOf(h(t))}}}(r,a.getDataToCoordFunc(t,e,s,i),h),x={},b={},_=0;d?(m=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set(new Array(f))},v=function(t,e){var r=x[t.astr][e];t.get()[e]=r}):(m=function(t){x[t.astr]=n.extendDeep([],t.get()),t.set([])},v=function(t,e){var r=x[t.astr][e];t.get().push(r)}),k(m);for(var w=o(e.transforms,r),T=0;T<f;T++){y(i[T])?(k(v,T),b[_++]=w(T)):d&&_++}r._indexToPoints=b,e._length=_}}function k(t,r){for(var i=0;i<p.length;i++){t(n.nestedProperty(e,p[i]),r)}}}},{\"../constants/filter_ops\":749,\"../lib\":778,\"../plots/cartesian/axes\":828,\"../registry\":911,\"./helpers\":1368}],1367:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"../plot_api/plot_schema\"),a=t(\"../plots/plots\"),o=t(\"./helpers\").pointsAccessorFunction;function s(t,e){var r,s,l,c,u,f,h,p,d,g,m=e.transform,v=e.transformIndex,y=t.transforms[v].groups,x=o(t.transforms,m);if(!n.isArrayOrTypedArray(y)||0===y.length)return[t];var b=n.filterUnique(y),_=new Array(b.length),w=y.length,T=i.findArrayAttributes(t),k=m.styles||[],M={};for(r=0;r<k.length;r++)M[k[r].target]=k[r].value;m.styles&&(g=n.keyedContainer(m,\"styles\",\"target\",\"value.name\"));var A={},S={};for(r=0;r<b.length;r++){A[f=b[r]]=r,S[f]=0,(h=_[r]=n.extendDeepNoArrays({},t))._group=f,h.transforms[v]._indexToPoints={};var E=null;for(g&&(E=g.get(f)),h.name=E||\"\"===E?E:n.templateString(m.nameformat,{trace:t.name,group:f}),p=h.transforms,h.transforms=[],s=0;s<p.length;s++)h.transforms[s]=n.extendDeepNoArrays({},p[s]);for(s=0;s<T.length;s++)n.nestedProperty(h,T[s]).set([])}for(l=0;l<T.length;l++){for(c=T[l],s=0,d=[];s<b.length;s++)d[s]=n.nestedProperty(_[s],c).get();for(u=n.nestedProperty(t,c).get(),s=0;s<w;s++)d[A[y[s]]].push(u[s])}for(s=0;s<w;s++){(h=_[A[y[s]]]).transforms[v]._indexToPoints[S[y[s]]]=x(s),S[y[s]]++}for(r=0;r<b.length;r++)f=b[r],h=_[r],a.clearExpandedTraceDefaultColors(h),h=n.extendDeepNoArrays(h,M[f]||{});return _}r.moduleType=\"transform\",r.name=\"groupby\",r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},groups:{valType:\"data_array\",dflt:[],editType:\"calc\"},nameformat:{valType:\"string\",editType:\"calc\"},styles:{_isLinkedToArray:\"style\",target:{valType:\"string\",editType:\"calc\"},value:{valType:\"any\",dflt:{},editType:\"calc\",_compareAsJSON:!0},editType:\"calc\"},editType:\"calc\"},r.supplyDefaults=function(t,e,i){var a,o={};function s(e,i){return n.coerce(t,o,r.attributes,e,i)}if(!s(\"enabled\"))return o;s(\"groups\"),s(\"nameformat\",i._dataLength>1?\"%{group} (%{trace})\":\"%{group}\");var l=t.styles,c=o.styles=[];if(l)for(a=0;a<l.length;a++){var u=c[a]={};n.coerce(l[a],c[a],r.attributes.styles,\"target\");var f=n.coerce(l[a],c[a],r.attributes.styles,\"value\");n.isPlainObject(f)?u.value=n.extendDeep({},f):f&&delete u.value}return o},r.transform=function(t,e){var r,n,i,a=[];for(n=0;n<t.length;n++)for(r=s(t[n],e),i=0;i<r.length;i++)a.push(r[i]);return a}},{\"../lib\":778,\"../plot_api/plot_schema\":816,\"../plots/plots\":891,\"./helpers\":1368}],1368:[function(t,e,r){\"use strict\";r.pointsAccessorFunction=function(t,e){for(var r,n,i=0;i<t.length&&(r=t[i])!==e;i++)r._indexToPoints&&!1!==r.enabled&&(n=r._indexToPoints);return n?function(t){return n[t]}:function(t){return[t]}}},{}],1369:[function(t,e,r){\"use strict\";var n=t(\"../lib\"),i=t(\"../plots/cartesian/axes\"),a=t(\"./helpers\").pointsAccessorFunction,o=t(\"../constants/numerical\").BADNUM;r.moduleType=\"transform\",r.name=\"sort\",r.attributes={enabled:{valType:\"boolean\",dflt:!0,editType:\"calc\"},target:{valType:\"string\",strict:!0,noBlank:!0,arrayOk:!0,dflt:\"x\",editType:\"calc\"},order:{valType:\"enumerated\",values:[\"ascending\",\"descending\"],dflt:\"ascending\",editType:\"calc\"},editType:\"calc\"},r.supplyDefaults=function(t){var e={};function i(i,a){return n.coerce(t,e,r.attributes,i,a)}return i(\"enabled\")&&(i(\"target\"),i(\"order\")),e},r.calcTransform=function(t,e,r){if(r.enabled){var s=n.getTargetArray(e,r);if(s){var l=r.target,c=s.length;e._length&&(c=Math.min(c,e._length));var u,f,h=e._arrayAttrs,p=function(t,e,r,n){var i,a=new Array(n),s=new Array(n);for(i=0;i<n;i++)a[i]={v:e[i],i:i};for(a.sort(function(t,e){switch(t.order){case\"ascending\":return function(t,r){var n=e(t.v),i=e(r.v);return n===o?1:i===o?-1:n-i};case\"descending\":return function(t,r){var n=e(t.v),i=e(r.v);return n===o?1:i===o?-1:i-n}}}(t,r)),i=0;i<n;i++)s[i]=a[i].i;return s}(r,s,i.getDataToCoordFunc(t,e,l,s),c),d=a(e.transforms,r),g={};for(u=0;u<h.length;u++){var m=n.nestedProperty(e,h[u]),v=m.get(),y=new Array(c);for(f=0;f<c;f++)y[f]=v[p[f]];m.set(y)}for(f=0;f<c;f++)g[f]=d(p[f]);r._indexToPoints=g,e._length=c}}}},{\"../constants/numerical\":753,\"../lib\":778,\"../plots/cartesian/axes\":828,\"./helpers\":1368}],1370:[function(t,e,r){\"use strict\";r.version=\"1.58.4\"},{}]},{},[26])(26)}));\n",
       "        });\n",
       "        require(['plotly'], function(Plotly) {\n",
       "            window._Plotly = Plotly;\n",
       "        });\n",
       "        }\n",
       "        </script>\n",
       "        "
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "application/vnd.plotly.v1+json": {
       "config": {
        "plotlyServerURL": "https://plot.ly"
       },
       "data": [
        {
         "alignmentgroup": "True",
         "bingroup": "x",
         "hovertemplate": "series=pre-2000 mean: 0.001<br>data=%{x}<br>count=%{y}<extra></extra>",
         "legendgroup": "pre-2000 mean: 0.001",
         "marker": {
          "color": "#636efa",
          "opacity": 0.5
         },
         "name": "pre-2000 mean: 0.001",
         "nbinsx": 100,
         "offsetgroup": "pre-2000 mean: 0.001",
         "orientation": "v",
         "showlegend": true,
         "type": "histogram",
         "x": [
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658602779715658,
          -2.966610986681934,
          -7,
          -7,
          -3.6050894618815805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731335458395129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.513217600067939,
          -4.558408539791075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335838869579954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.002166061756508,
          -7,
          -7,
          -3.073351702386901,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5504729571065634,
          -7,
          -7,
          -7,
          -7,
          -3.298197867109815,
          -7,
          -7,
          -7,
          -3.740546896566616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.437750562820388,
          -7,
          -2.8808135922807914,
          -7,
          -7,
          -7,
          -3.6151870003574307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3240765797394864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5137501500818233,
          -4.096910013008056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.373187949912719,
          -3.4072208929273966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.959004679486049,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -7,
          -7,
          -7,
          -7,
          -2.6522463410033232,
          -7,
          -7,
          -7,
          -7,
          -3.8248739727439425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3384564936046046,
          -2.1931245983544616,
          -3.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -3.078642684050268,
          -7,
          -7,
          -2.7075701760979367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.824451270036613,
          -7,
          -7,
          -7,
          -3.914660430589222,
          -7,
          -3.318272080211627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149354616033284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1740598077250253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.496749807394558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.330413773349191,
          -2.7188337183038622,
          -7,
          -7,
          -7,
          -4.305480348653206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.711807229041191,
          -7,
          -7,
          -7,
          -7,
          -4.495828686511949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -7,
          -3.9498289589353135,
          -7,
          -5.131964935456146,
          -7,
          -2.4349678884278125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.485011214578573,
          -7,
          -7,
          -7,
          -7,
          -2.334453751150931,
          -3.3643633546157306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732851940001292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153021743626138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7351995484223135,
          -3.968646361965884,
          -3.603144372620182,
          -3.428701599623054,
          -7,
          -7,
          -7,
          -3.94019263553191,
          -3.300885206703846,
          -2.890700397698875,
          -4.067405658437824,
          -3.836672171482981,
          -3.094994900944612,
          -7,
          -7,
          -7,
          -7,
          -3.4818724103106633,
          -7,
          -7,
          -7,
          -3.121830095896224,
          -4.076444730438234,
          -7,
          -7,
          -7,
          -7,
          -4.309747240843205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8538806501245424,
          -7,
          -7,
          -3.325169853067657,
          -4.261607787677791,
          -7,
          -4.331619598814896,
          -7,
          -7,
          -3.116939646550756,
          -7,
          -2.5490032620257876,
          -7,
          -7,
          -7,
          -7,
          -3.9872639541222354,
          -7,
          -3.0425755124401905,
          -7,
          -7,
          -3.9873086737311825,
          -7,
          -2.571708831808688,
          -7,
          -7,
          -7,
          -4.326489475673702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.468184808873887,
          -4.640431743683348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7041505168397992,
          -4.177889851651956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6766936096248664,
          -7,
          -7,
          -7,
          -3.593618308129536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.722798396870905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.149126699742614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.450403086155366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.399962001930988,
          -7,
          -7,
          -7,
          -7,
          -2.214843848047698,
          -7,
          -4.55735077960453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0863598306747484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517301488634157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.593286067020457,
          -7,
          -4.7356707439453665,
          -7,
          -2.921166050637739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5575072019056577,
          -2.403120521175818,
          -7,
          -7,
          -7,
          -4.426316028957644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.192437349923709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0863598306747484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.832508912706236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6020599913279623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9807757739626215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.114610984232173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.756636108245848,
          -1.9614210940664483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7122286696195355,
          -2.171726453653231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9455178220778397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9956351945975501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.61655952887783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.089993373706118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.000434077479319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.97919770198058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.60336092434838,
          -4.5616141210401855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.682190218984122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -2.45484486000851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.660865478003869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.466882442438441,
          -7,
          -7,
          -7,
          -2.8581360017148696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5800121125294244,
          -7,
          -3.68761812957177,
          -7,
          -7,
          -7,
          -2.423245873936808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.381714192303751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5877109650189114,
          -3.2092468487533736,
          -7,
          -7,
          -3.5837653682849995,
          -7,
          -2.7505083948513462,
          -3.7080808104682315,
          -7,
          -7,
          -7,
          -3.715501945293284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008834287045376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.846337112129805,
          -7,
          -7,
          -2.5921767573958667,
          -2.9273703630390235,
          -7,
          -7,
          -7,
          -7,
          -3.845315132986487,
          -7,
          -2.655138434811382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.876927608974731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.568201724066995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080601236508595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0718820073061255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.214658438879918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.516905391125257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.496929648073215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9637878273455553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9819997141298784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.819214799882384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.309268104477122,
          -7,
          -7,
          -4.277792518931442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274342616116883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3364597338485296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603025223127586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779564026171181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.787460474518415,
          -7,
          -3.404234866653423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6202401898458314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.575932206504239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7271751242414615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.294466226161593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.037426497940624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9400181550076634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.731959248048951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.609615749953064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151584339359897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505014240084107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626401965060686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639327085896673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779592884145819,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7061201097027037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30941722577814,
          -7,
          -7,
          -4.277952847038809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14569352390422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.649983543645145,
          -7,
          -7,
          -7,
          -7,
          -2.9935464435376407,
          -7,
          -7,
          -2.6665179805548807,
          -7,
          -7,
          -7,
          -3.8950355974523228,
          -3.575534218319864,
          -7,
          -7,
          -4.57610513115158,
          -7,
          -2.167317334748176,
          -7,
          -7,
          -7,
          -7,
          -4.5574350139981465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334212409393176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8318697742805017,
          -7,
          -7,
          -7,
          -3.517156294823795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.792391689498254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.598790506763115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9570802596579,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6254839394069043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426372980809529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669660832034381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149105133899851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304608994731877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7151673578484576,
          -7,
          -7,
          -7,
          -5.097628609835998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.747411807886423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -3.9458623244896174,
          -3.0681858617461617,
          -7,
          -7,
          -7,
          -4.2422680448276875,
          -7,
          -7,
          -2.640481436970422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.348888723071438,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0641458839444216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7159198174335795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979229593022155,
          -5.17205387889541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9043800949900676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4653828514484184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.337459261290656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779701084475718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.909556029241175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8506462351830666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.649983543645145,
          -7,
          -4.658402562724309,
          -7,
          -7,
          -7,
          -2.4538641419058598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8983411657275093,
          -7,
          -7,
          -7,
          -3.9231576348444315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.558156353686574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7000110623221123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1702617153949575,
          -7,
          -7,
          -3.1025524356630036,
          -2.6757783416740852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.269512944217916,
          -1.6842467475153124,
          -7,
          -3.3197304943302246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8109042806687006,
          -7,
          -7,
          -2.6757783416740852,
          -7,
          -4.05865374157237,
          -7,
          -7,
          -7,
          -2.0521165505499983,
          -2.1182174713718545,
          -7,
          -7,
          -3.795080179420615,
          -2.2304489213782737,
          -7,
          -7,
          -4.736205211208257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.403635189790548,
          -2.2975079898311006,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.771954748963949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.12579833129549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8529676910288186,
          -7,
          -7,
          -3.439472017303169,
          -2.2741578492636796,
          -7,
          -7,
          -7,
          -2.8363241157067516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3192548157701802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4221519325979415,
          -7,
          -7,
          -3.1152775913959014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1142772965615864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1271047983648077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7466341989375787,
          -2.791690649020118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0791812460476247,
          -7,
          -7,
          -7,
          -4.544068044350276,
          -2.9827233876685453,
          -7,
          -2.3935752032695876,
          -7,
          -2.620656479819621,
          -3.118264726089479,
          -7,
          -7,
          -7,
          -7,
          -2.77232170672292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7326831930105575,
          -7,
          -7,
          -7,
          -7,
          -4.5009770535891995,
          -7,
          -7,
          -7,
          -4.651268319816693,
          -7,
          -4.607637281414817,
          -3.899382705533265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.448860845607441,
          -7,
          -4.703600863886312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3263358609287517,
          -4.570531265142131,
          -7,
          -3.426998958756537,
          -2.786751422145561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6957442751973235,
          -7,
          -3.7209031708134575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.051422666089034,
          -4.502363382364717,
          -5.172229183784123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464578960565791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.531478917042255,
          -3.281433803271223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9863237770507656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080954608767231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7034633418832934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658602779715658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658402562724309,
          -7,
          -4.364044179182894,
          -7,
          -7,
          -3.35049470648729,
          -3.263697423853724,
          -4.658440706411126,
          -4.661500335378259,
          -7,
          -4.362718030694413,
          -7,
          -3.1129318090463487,
          -3.412593163181993,
          -7,
          -3.24940533901592,
          -2.1417289398469945,
          -7,
          -3.88024177589548,
          -4.6576389846160815,
          -3.659021982916067,
          -4.357668093043634,
          -4.35837273025802,
          -2.3413646240800943,
          -4.658802904446173,
          -7,
          -4.357639502542187,
          -4.3582395081717715,
          -4.183516585741525,
          -4.6576103243042395,
          -4.659317087843722,
          -4.657524332018719,
          -4.193829290866235,
          -7,
          -2.611723308007342,
          -4.6576389846160815,
          -3.881935972915227,
          -7,
          -7,
          -4.658326265298826,
          -7,
          -7,
          -7,
          -4.056209042104069,
          -3.2541016739018396,
          -2.4131607314521517,
          -2.7121424991293415,
          -7,
          -3.667340862430717,
          -7,
          -4.658078206053737,
          -4.658202253387015,
          -7,
          -3.9627196609848174,
          -3.9675573359128724,
          -4.658602779715658,
          -7,
          -7,
          -3.2852157604593244,
          -4.6576007704466384,
          -7,
          -7,
          -7,
          -3.2943100431280117,
          -3.8167146455230045,
          -3.6577631574494944,
          -7,
          -2.850491311089423,
          -7,
          -3.8810421081934057,
          -7,
          -7,
          -7,
          -7,
          -4.18089014193745,
          -7,
          -3.3601577647473424,
          -3.8143332281816082,
          -3.2651387047066582,
          -7,
          -3.405422255930527,
          -4.361482295825142,
          -2.5353220082369856,
          -4.058909780686973,
          -4.357200878999709,
          -7,
          -7,
          -7,
          -7,
          -4.35723903776805,
          -7,
          -7,
          -3.6758974356443237,
          -7,
          -7,
          -4.65748610775906,
          -3.1055196464203245,
          -4.6576007704466384,
          -4.3568000093778245,
          -4.65909815822552,
          -4.658059118703411,
          -3.3835697189547274,
          -4.658068662483436,
          -7,
          -3.4054317419673734,
          -4.3589812256253495,
          -2.9403708783959486,
          -3.4279154943087975,
          -4.358325155632681,
          -4.658240414670103,
          -3.882619393144054,
          -3.9662919491725086,
          -4.658049574713654,
          -3.129582486614012,
          -3.0370354042411027,
          -7,
          -7,
          -4.3587341271980105,
          -2.9153823903389724,
          -3.277695147981495,
          -3.5508865888362537,
          -3.387474128991608,
          -3.816042340921997,
          -7,
          -4.357744325180375,
          -4.65955492971097,
          -7,
          -7,
          -2.738892615890152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5852263815565872,
          -3.533753906434624,
          -3.123815357539862,
          -3.9638161499751687,
          -7,
          -3.087722277824171,
          -4.658135463071869,
          -4.356752262147557,
          -3.5820633629117085,
          -3.7763833355374703,
          -4.188103149551257,
          -7,
          -4.357105467407888,
          -4.181004666040053,
          -2.470993581501898,
          -7,
          -7,
          -7,
          -7,
          -4.356637647372692,
          -7,
          -4.187059861038297,
          -7,
          -3.815378484965918,
          -7,
          -3.883547879268044,
          -4.056838178206314,
          -4.357353493960548,
          -2.1291708907423548,
          -4.657944576981328,
          -7,
          -7,
          -4.658316727178102,
          -4.657935030474059,
          -4.658393026279124,
          -7,
          -3.127049234748905,
          -7,
          -3.464365331981961,
          -7,
          -3.6644163094134004,
          -1.8363677743629234,
          -3.9592608703276713,
          -3.8832922699131758,
          -3.815957044839122,
          -3.758684849882441,
          -4.18587254245639,
          -3.7626504349355674,
          -4.6603151495574515,
          -7,
          -4.183269843682805,
          -4.658945794243111,
          -3.7553507194191824,
          -3.627356544861648,
          -7,
          -4.657820456015697,
          -7,
          -3.104747167896156,
          -7,
          -3.31367468753116,
          -7,
          -3.709166275871844,
          -7,
          -4.658316727178102,
          -7,
          -4.657849102464169,
          -4.659925703127408,
          -7,
          -7,
          -7,
          -3.6747325778893765,
          -3.881403679327327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.707806655538521,
          -3.320788091434305,
          -2.952693805985888,
          -2.7933043927733774,
          -7,
          -7,
          -7,
          -3.9630129593770773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657772707735521,
          -7,
          -7,
          -3.7049222912234017,
          -2.3313316316749564,
          -7,
          -7,
          -7,
          -4.657992306370206,
          -4.658412098960092,
          -4.05641885542015,
          -7,
          -3.8812514755383583,
          -3.7115916680435577,
          -3.657982760912062,
          -4.201415333350953,
          -2.9974328623333713,
          -7,
          -7,
          -7,
          -3.2585636110560623,
          -3.816288657767513,
          -3.3575017219202703,
          -4.183241364422366,
          -2.5205177076292187,
          -7,
          -7,
          -7,
          -3.3711558562912662,
          -3.7096844540272005,
          -3.7618151176130694,
          -3.1917676303072247,
          -4.367775101747835,
          -7,
          -7,
          -7,
          -4.357868173870295,
          -3.2819324789996647,
          -3.8824486388840995,
          -7,
          -4.057542491129928,
          -7,
          -7,
          -4.658011396657113,
          -3.8139239429018104,
          -4.181195472458439,
          -2.963833215283299,
          -3.5494654330043325,
          -4.183516585741525,
          -4.181843587944773,
          -2.3842957067946604,
          -4.659136240870398,
          -7,
          -3.215390216393895,
          -7,
          -4.180632352233786,
          -3.8155872347755277,
          -4.181252698040852,
          -2.8154842088373986,
          -3.5818264448534065,
          -3.712528112078682,
          -3.756778694670736,
          -3.7616459815267613,
          -4.659250468772661,
          -2.003901031014158,
          -3.461095033798302,
          -7,
          -7,
          -7,
          -3.82187832849502,
          -3.708005198806338,
          -7,
          -4.658240414670103,
          -3.7571776877918075,
          -7,
          -4.657552998005808,
          -4.657533887557986,
          -4.659516883764218,
          -4.3576585630856135,
          -4.65786819904679,
          -3.7065850372590567,
          -7,
          -3.052252948311862,
          -4.076813326169952,
          -2.512971799832511,
          -4.182547792837783,
          -3.1609466070925256,
          -2.454763218034042,
          -3.5862308719545637,
          -7,
          -7,
          -4.357620441162185,
          -3.302312102385248,
          -3.1752671276454327,
          -3.3864895783427094,
          -7,
          -4.657572107612741,
          -7,
          -3.620561903494791,
          -4.357048210389756,
          -4.0572285467366145,
          -4.658269033432031,
          -3.552331205374715,
          -4.357324882740209,
          -2.6894095629680157,
          -7,
          -7,
          -2.420536096425766,
          -2.68940369736512,
          -2.8795805260758676,
          -4.661377226639747,
          -2.377081515976082,
          -3.3737760513703203,
          -3.0772727117618524,
          -2.5610268074521003,
          -2.3127610850765197,
          -7,
          -3.104262021903205,
          -2.6859997629642085,
          -2.4235455007027262,
          -2.279007948555511,
          -2.7364151785299615,
          -2.949457775152798,
          -2.4883689390699706,
          -2.5425202730917387,
          -2.9016320265580866,
          -3.0818238136507157,
          -3.102605194126567,
          -2.307519041408115,
          -2.501482514820539,
          -2.3653972637477167,
          -3.2118982321165546,
          -2.679633008202028,
          -2.640955609396501,
          -2.562619949426298,
          -3.5904981702001146,
          -2.5560793781615727,
          -2.7411938214377605,
          -2.245871057494562,
          -2.6868945016279873,
          -2.7745241924673554,
          -3.2059314148945273,
          -2.733818089486326,
          -2.9059345858229104,
          -2.837491808816075,
          -2.731320101718905,
          -3.456549814132931,
          -4.365572214876125,
          -2.6844440291990255,
          -1.629708726347577,
          -3.148028219473996,
          -7,
          -3.1718187977917682,
          -7,
          -2.7009648094994096,
          -3.2474483777449596,
          -3.7165875776756923,
          -3.08308309635478,
          -2.840600504023395,
          -4.701619786477204,
          -7,
          -3.5900182997846484,
          -4.669084326621116,
          -7,
          -7,
          -3.6682998808693528,
          -3.773347541980823,
          -7,
          -1.7038472506330558,
          -2.303370621853087,
          -2.230840899270554,
          -4.658860066006634,
          -4.196489375975232,
          -7,
          -2.975229752334916,
          -3.419329537729261,
          -3.2361608677864693,
          -2.9756968646553625,
          -3.355045196760146,
          -7,
          -2.925242148353079,
          -3.6638971457345137,
          -3.344487131834023,
          -4.067925949681522,
          -4.219121520999956,
          -4.085575969718504,
          -2.290903952080366,
          -3.504271453579076,
          -7,
          -2.800421747228451,
          -2.9435742893274437,
          -7,
          -2.325655782561224,
          -4.366133331018571,
          -4.196470959229819,
          -3.6130574113800384,
          -3.0905950403567006,
          -7,
          -4.357677622792537,
          -7,
          -4.661481397843616,
          -2.830901668228616,
          -2.8417632701717763,
          -4.659193358577049,
          -3.7635309391043776,
          -4.058644255742717,
          -2.7172405854118513,
          -2.6819391031748543,
          -3.9671359498564263,
          -4.358819677179949,
          -4.357324882740209,
          -2.9166237274738633,
          -7,
          -2.3003855638904804,
          -3.6646701755809334,
          -4.061235654721493,
          -3.4436402707776104,
          -2.6069915285261684,
          -3.6710802327388494,
          -3.036801229045618,
          -7,
          -3.8843138059182074,
          -2.7959341597745686,
          -4.187370289770912,
          -4.188937853551512,
          -4.661916752355482,
          -4.659764122861992,
          -4.658049574713654,
          -3.062347957827833,
          -3.8154544055975217,
          -7,
          -2.6926601937121126,
          -1.923894846387566,
          -2.158818812869884,
          -4.356905034810079,
          -3.2790278056227207,
          -4.0588528961494434,
          -3.8904210188009145,
          -4.358420299672387,
          -7,
          -7,
          -3.3372958595898874,
          -7,
          -7,
          -3.5457134697726813,
          -7,
          -2.8873835596662767,
          -3.759809439370634,
          -4.071605884917739,
          -7,
          -7,
          -4.658993413729996,
          -3.8877672897973903,
          -2.7328773476313475,
          -4.660372112436349,
          -4.658621843187422,
          -7,
          -3.3673647967677733,
          -3.004894321731049,
          -4.663748026358395,
          -4.662880549738856,
          -3.0539771977423924,
          -7,
          -2.025167138603114,
          -3.2994314973289582,
          -4.378061601404729,
          -3.8152930583882103,
          -4.360877297102039,
          -2.6824784516700206,
          -7,
          -2.9772144017362656,
          -4.66335221936459,
          -4.05759954755417,
          -3.8825909387625783,
          -3.769146453452604,
          -7,
          -4.357315345247881,
          -2.9131689938402077,
          -4.362218500326052,
          -7,
          -3.3606450425580268,
          -4.363734166777149,
          -3.504778859928894,
          -4.187389096503919,
          -2.660917197172924,
          -3.521469346698325,
          -3.6305573026766758,
          -4.193792230279798,
          -7,
          -7,
          -2.696383695123476,
          -4.07683152032504,
          -4.357944370897822,
          -3.718667735316211,
          -2.2266800247178287,
          -3.3060145500599503,
          -2.5394058622888096,
          -2.706812575414054,
          -3.477044607753807,
          -4.357649032918467,
          -4.362765126555426,
          -7,
          -7,
          -3.7576522021542784,
          -4.364119300390762,
          -2.949136910740208,
          -7,
          -4.056657156668353,
          -7,
          -2.8040954442382904,
          -7,
          -3.9624072223037277,
          -7,
          -7,
          -7,
          -4.6592409509282415,
          -7,
          -3.5653845905590975,
          -3.77244090126548,
          -4.662635078938201,
          -4.357725268400632,
          -4.186881028636386,
          -4.6576103243042395,
          -7,
          -7,
          -4.359038228379384,
          -4.659716587811443,
          -4.3591522114468955,
          -3.084584995993608,
          -3.986709048064589,
          -3.837326844932794,
          -4.65900293700084,
          -7,
          -3.4459245638311797,
          -7,
          -7,
          -2.705795856951702,
          -7,
          -7,
          -3.970644363685447,
          -3.9042375403597336,
          -4.36369657447383,
          -4.657562552914381,
          -7,
          -4.359465510718378,
          -7,
          -3.8435531067748108,
          -7,
          -4.6601632120103025,
          -7,
          -2.966610986681934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.364044179182894,
          -7,
          -7,
          -7,
          -2.8943160626844384,
          -2.9965116721541785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0317113547545933,
          -7,
          -7,
          -7,
          -3.48333049525732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.089398727914103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.202741238033296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0577421558287528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.971739590887778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.452553063228925,
          -7,
          -7,
          -7,
          -7,
          -3.1256438923573917,
          -7,
          -7,
          -3.1344958558346736,
          -2.933461978575007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7936351963804653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9122220565324155,
          -1.9907510041972791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295347148333618,
          -2.9150038821546924,
          -7,
          -7,
          -7,
          -4.440759570913159,
          -7,
          -7,
          -3.2477278329097232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.733277533932582,
          -7,
          -2.5634810853944106,
          -3.1383026981662816,
          -7,
          -3.3581252852766488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9439888750737717,
          -7,
          -3.621003083574573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5292538542887826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4166959692478005,
          -7,
          -7,
          -4.375681899659375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.702645906884803,
          -7,
          -7,
          -7,
          -2.1729391872871573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.373279893277496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.713448539662225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6403394410620447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.74020473550745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8756399370041685,
          -3.205745540942662,
          -7,
          -7,
          -7,
          -2.928907690243953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.613841821876069,
          -2.99211148778695,
          -7,
          -3.323870606540509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.844891183862738,
          -3.2187979981117376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.13640344813399,
          -7,
          -3.8319113468728965,
          -7,
          -7,
          -3.7744804688604328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.738328593727102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.789411473551423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5880923482183755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.989583289311005,
          -7,
          -3.97657921864011,
          -4.316892503761295,
          -3.782114147479071,
          -7,
          -4.074816440645175,
          -7,
          -3.346304064660407,
          -7,
          -7,
          -7,
          -4.158935141829918,
          -7,
          -7,
          -3.29827071697695,
          -7,
          -7,
          -3.570426178358973,
          -7,
          -7,
          -7,
          -4.0648509228019005,
          -3.7784542460202473,
          -4.87325373741082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.547040829274825,
          -7,
          -7,
          -7,
          -3.711807229041191,
          -7,
          -7,
          -7,
          -3.4025193025742495,
          -3.6108730003800513,
          -7,
          -3.517855418930029,
          -7,
          -3.8334021292318585,
          -7,
          -3.2177470732627937,
          -4.639556209850188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8129133566428557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334051440346892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.278296208091274,
          -7,
          -7,
          -7,
          -3.3119656603683665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216231899472033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0170333392987803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.250200359678991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.889021422095225,
          -7,
          -7,
          -7,
          -7,
          -4.067470728941126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.368100851709351,
          -7,
          -7,
          -7,
          -4.543223451486436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3473300153169503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.569736645661217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.13494171073536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351177653684284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6314437690131722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9833104857941155,
          -7,
          -7,
          -7,
          -3.7694511794020378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6989700043360187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8129133566428557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576076315158132,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3931363002692168,
          -7,
          -7,
          -3.040602340114073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.769561935848059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5599066250361124,
          -2.4065401804339555,
          -7,
          -7,
          -7,
          -4.125269759964129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1924559385119755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5390760987927767,
          -7,
          -7,
          -2.7955324427101544,
          -7,
          -7,
          -7,
          -3.910090545594068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1152775913959014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.79657433321043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.131827101333347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.950364854376123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3479151865016914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.569771733076458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.541254649786259,
          -7,
          -7,
          -7,
          -4.135037191549618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6050894618815805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9935464435376407,
          -2.4538641419058598,
          -3.35049470648729,
          -2.8943160626844384,
          -7,
          -7,
          -7,
          -2.674699080477742,
          -7,
          -7,
          -7,
          -2.8810992183890174,
          -7,
          -1.935257176946508,
          -3.2802368096096894,
          -7,
          -3.3697722885969625,
          -2.695756933177721,
          -7,
          -7,
          -7,
          -3.611723308007342,
          -3.6063813651106047,
          -3.313023110323238,
          -3.397211955499955,
          -7,
          -7,
          -7,
          -3.6127838567197355,
          -7,
          -7,
          -3.1355566635968395,
          -3.592731766393962,
          -3.7280289544205187,
          -7,
          -2.540020759009994,
          -7,
          -3.321391278311689,
          -3.620864475265121,
          -3.596047007545439,
          -7,
          -2.999130541287371,
          -7,
          -7,
          -7,
          -2.8690640060845967,
          -2.944630701856278,
          -7,
          -3.605628222007619,
          -3.696531119969607,
          -3.3067466080777117,
          -3.5991185650553628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7782115648732764,
          -7,
          -7,
          -7,
          -7,
          -3.15904054763018,
          -3.641275757231913,
          -7,
          -2.6940198963087196,
          -2.8148273565661532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6372895476781744,
          -7,
          -3.055187138555754,
          -1.6554254840764648,
          -7,
          -3.6475785542124552,
          -1.5563274251256347,
          -2.4245754000580986,
          -2.7546758991321316,
          -3.5935075893317654,
          -7,
          -3.1157214284114376,
          -3.121887985103681,
          -2.6455314297070633,
          -2.553883026643874,
          -3.5931752634781025,
          -2.185363193491215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5990092398233435,
          -7,
          -7,
          -3.62096843564429,
          -3.4049761783177557,
          -7,
          -7,
          -3.6009728956867484,
          -3.328787200354535,
          -1.9589478044569444,
          -7,
          -3.1488493429592204,
          -1.589134592627297,
          -3.5997739391463885,
          -7,
          -7,
          -4.288405740175751,
          -7,
          -3.673020907128896,
          -3.68761812957177,
          -7,
          -3.6045500325712614,
          -7,
          -7,
          -7,
          -7,
          -3.634275694625944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.782626166498415,
          -3.324830980134619,
          -1.4192204025471138,
          -2.9512403503243405,
          -2.6050894618815805,
          -2.9969929818907057,
          -7,
          -7,
          -7,
          -3.7983052820219765,
          -3.3738311450738303,
          -7,
          -7,
          -7,
          -2.9380469252711707,
          -7,
          -7,
          -7,
          -3.32376758329678,
          -7,
          -7,
          -7,
          -3.635081436010873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.864541505555368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6027109449575576,
          -3.5959369062691735,
          -7,
          -7,
          -3.5616180933850865,
          -7,
          -2.9686697017203922,
          -2.7837142054247326,
          -7,
          -7,
          -7,
          -7,
          -3.6527296960692475,
          -2.09443434895989,
          -3.6240757311456826,
          -7,
          -7,
          -7,
          -7,
          -2.930694387664535,
          -7,
          -7,
          -7,
          -2.6001012556913907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6585837154070626,
          -3.5438818782481594,
          -2.931969120319917,
          -7,
          -7,
          -7,
          -3.34143452457814,
          -7,
          -3.5949447366950835,
          -7,
          -3.2979792441593623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.599992177584098,
          -2.4653828514484184,
          -3.4215216663369774,
          -7,
          -7,
          -7,
          -3.452553063228925,
          -7,
          -2.9344984512435675,
          -7,
          -3.6429712311818627,
          -7,
          -7,
          -7,
          -3.895753942073728,
          -1.2235402589870163,
          -2.7684530982706304,
          -3.111598524880394,
          -2.929674317948588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.315655525231531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1075491297446862,
          -3.0562376589802276,
          -7,
          -7,
          -2.76315203827082,
          -3.6110857334148725,
          -7,
          -3.1288606460924466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.369957607346053,
          -7,
          -2.433722385233559,
          -2.8311381767490547,
          -7,
          -7,
          -7,
          -1.7866968316757637,
          -3.6462076122066853,
          -7,
          -7,
          -3.6250036010148636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.330007700872759,
          -3.000650953629595,
          -2.72191361402292,
          -2.677536763713164,
          -3.6192767787643367,
          -7,
          -7,
          -3.4747204434733674,
          -7,
          -7,
          -3.3328422669943514,
          -7,
          -7,
          -3.8086835091289695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6869935662646784,
          -7,
          -7,
          -7,
          -7,
          -4.655464993695882,
          -4.775479375409764,
          -7,
          -7,
          -3.639699884317628,
          -7,
          -3.9408649759667216,
          -2.900882755786381,
          -3.917077681247535,
          -7,
          -7,
          -3.7127443776037308,
          -4.389493897263608,
          -4.128341100382978,
          -7,
          -4.355987591676388,
          -3.97283514522388,
          -7,
          -4.134081437462512,
          -4.345608950540594,
          -7,
          -3.835263241125063,
          -4.047274867384179,
          -3.3332456989619628,
          -4.191618663369469,
          -7,
          -4.360952968049115,
          -3.503804297090878,
          -7,
          -3.1217359506263405,
          -7,
          -3.507357589416977,
          -7,
          -4.273279131626577,
          -3.9974737588029803,
          -4.322177931384976,
          -7,
          -3.7170210718966303,
          -4.450403086155366,
          -2.765566961445306,
          -2.8419848045901137,
          -3.093676328665223,
          -3.0148856148402015,
          -3.359408564022824,
          -2.799242058812066,
          -2.9986661172549796,
          -2.4924810101288766,
          -1.7228205553179063,
          -3.14515199291356,
          -3.7279477095447966,
          -3.888319928675217,
          -2.736869386655646,
          -2.7956814373306003,
          -7,
          -2.7255273008700516,
          -2.070424498052958,
          -7,
          -2.6278137478108206,
          -3.979001748474721,
          -3.7746629225378223,
          -7,
          -2.900797319812092,
          -2.058551657819114,
          -3.7206582057950017,
          -7,
          -7,
          -7,
          -3.4185839684998247,
          -7,
          -3.0844714150301855,
          -3.1099158630237933,
          -4.180011119057717,
          -7,
          -3.6154239528859438,
          -3.0610438792188233,
          -3.5092793478189916,
          -3.7196626830180466,
          -2.63085590953734,
          -2.4733653019080357,
          -3.4787107555127594,
          -2.034739066153002,
          -7,
          -2.816033430174598,
          -3.3747160071678457,
          -3.3757550347552243,
          -3.16367373995895,
          -7,
          -3.449478399187365,
          -2.886547123391106,
          -3.668634368917545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.953308577080214,
          -7,
          -3.2119210843085093,
          -7,
          -7,
          -3.6530838148614064,
          -7,
          -7,
          -7,
          -3.9893608137762473,
          -7,
          -4.66468897458024,
          -3.369679599559816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.618048096712093,
          -7,
          -7,
          -7,
          -7,
          -4.520837112780868,
          -3.9774949690730366,
          -3.7697612262993307,
          -7,
          -7,
          -3.631139250256811,
          -7,
          -7,
          -7,
          -7,
          -3.8020892578817325,
          -7,
          -7,
          -7,
          -7,
          -3.46453922366873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.751901678305574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.629715332647132,
          -7,
          -7,
          -7,
          -3.5859680500071183,
          -7,
          -7,
          -3.953373050726696,
          -7,
          -7,
          -7,
          -3.957607287060095,
          -3.9207492612757084,
          -7,
          -7,
          -7,
          -7,
          -4.349083168779591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3591522114468955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.630122642859312,
          -7,
          -7,
          -7,
          -3.3057811512549824,
          -7,
          -3.775270548461582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9223101632143957,
          -7,
          -3.82013575187043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.356293621448165,
          -7,
          -7,
          -3.716504163773217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6202401898458314,
          -7,
          -7,
          -3.263697423853724,
          -2.9965116721541785,
          -7,
          -7,
          -2.674699080477742,
          -7,
          -3.328685336983151,
          -3.360309344342059,
          -3.637189422148762,
          -7,
          -3.621384028481653,
          -2.3107299261343788,
          -3.0510973704399538,
          -7,
          -2.9942291408176986,
          -2.594892570014196,
          -7,
          -7,
          -3.621280167550415,
          -7,
          -7,
          -3.640282629696681,
          -3.172484007140436,
          -3.3325394468901104,
          -7,
          -7,
          -3.6388884247050757,
          -3.6532125137753435,
          -7,
          -7,
          -7,
          -7,
          -3.625209525381881,
          -2.7094904451648456,
          -7,
          -7,
          -3.043853283705882,
          -3.6231458746379395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1619342799296826,
          -2.6337088621630316,
          -7,
          -7,
          -3.4169731726030363,
          -3.6343764940883676,
          -7,
          -7,
          -7,
          -3.6641717053619307,
          -3.408833321776418,
          -7,
          -7,
          -7,
          -3.212661014432471,
          -7,
          -7,
          -7,
          -7,
          -3.4790711958039306,
          -3.364550995353972,
          -7,
          -3.3726358805817207,
          -2.562356601630755,
          -3.6236627073562047,
          -3.6388884247050757,
          -7,
          -7,
          -7,
          -7,
          -3.625723909525756,
          -7,
          -7,
          -7,
          -3.6814221557210085,
          -3.1620663052160913,
          -3.3554515201265174,
          -7,
          -2.380376790839503,
          -3.1792644643390253,
          -7,
          -3.319522449065454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4877744973806672,
          -7,
          -7,
          -7,
          -3.370050237074868,
          -7,
          -7,
          -7,
          -3.625826713285711,
          -3.371806458507416,
          -3.6259294927162946,
          -7,
          -7,
          -7,
          -2.21221594798249,
          -3.632356046239073,
          -3.63978521298682,
          -7,
          -7,
          -7,
          -7,
          -2.7831886910752575,
          -2.122229202028619,
          -7,
          -7,
          -7,
          -3.113579431846841,
          -7,
          -3.394626764272209,
          -7,
          -7,
          -7,
          -7,
          -2.9419087743655994,
          -7,
          -7,
          -2.640944966994348,
          -7,
          -7,
          -7,
          -3.620656479819621,
          -7,
          -3.2434845220064585,
          -3.341895943969397,
          -3.2214142378423385,
          -3.0723418215173193,
          -3.1559430179718366,
          -3.4064124279747596,
          -3.6266482684740105,
          -3.3218054838575393,
          -3.6610550848533787,
          -2.254534650373201,
          -3.6977522741677546,
          -7,
          -7,
          -7,
          -3.2007684447831717,
          -7,
          -7,
          -7,
          -3.6504046698680317,
          -3.6217992240026677,
          -7,
          -3.085379783217932,
          -7,
          -7,
          -3.6417714706539592,
          -3.6644539285811577,
          -3.6353832040474985,
          -7,
          -2.5477747053878224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.629409599102719,
          -7,
          -3.0549193271238146,
          -7,
          -3.349588320562463,
          -7,
          -3.691435152144062,
          -2.6475373859320346,
          -7,
          -7,
          -3.6582022533870147,
          -7,
          -3.073993133323909,
          -2.470168274303783,
          -7,
          -3.337459261290656,
          -3.6506959797606107,
          -7,
          -3.6313422864839326,
          -3.4295100408131383,
          -7,
          -7,
          -7,
          -3.3099139273065608,
          -7,
          -2.385606273598312,
          -7,
          -2.726002327603283,
          -3.3271545124094315,
          -3.15106325335375,
          -7,
          -3.0208789778835277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.642662331442035,
          -7,
          -3.622006673006805,
          -7,
          -7,
          -7,
          -3.3292961591399655,
          -7,
          -7,
          -3.6684791029325856,
          -3.682145076373832,
          -3.3831568450325724,
          -3.027277639180358,
          -3.621072371143626,
          -7,
          -3.623766000133931,
          -2.46014581749175,
          -7,
          -3.6221103603612193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.639187559935754,
          -3.1360543495510553,
          -7,
          -7,
          -7,
          -7,
          -3.629613445378183,
          -7,
          -7,
          -7,
          -2.925398047854587,
          -7,
          -2.962030915578165,
          -3.4419306745501714,
          -7,
          -7,
          -7,
          -3.772761647144032,
          -7,
          -2.2442276257329077,
          -7,
          -2.7554691280706067,
          -7,
          -7,
          -7,
          -1.9311187105921872,
          -3.2091574233475386,
          -3.0930713063760633,
          -2.5867480056844685,
          -3.7297315952870354,
          -7,
          -7,
          -7,
          -7,
          -3.3709754493589705,
          -3.3521825181113627,
          -7,
          -3.1652443261253107,
          -7,
          -7,
          -3.625312450961674,
          -2.9375178920173464,
          -7,
          -2.520418023353549,
          -2.400401640330525,
          -2.9534697432534016,
          -7,
          -3.1158062279831116,
          -3.6372895476781744,
          -7,
          -3.031094132296288,
          -3.62283547952152,
          -7,
          -3.176958980586908,
          -7,
          -3.7229628089424898,
          -7,
          -7,
          -7,
          -2.4121509531021377,
          -7,
          -2.6642239827597556,
          -3.097344090487375,
          -7,
          -7,
          -7,
          -2.935423287388426,
          -3.0678145111618402,
          -7,
          -7,
          -3.349180358996378,
          -7,
          -7,
          -7,
          -3.641275757231913,
          -3.6327608884794387,
          -3.623766000133931,
          -7,
          -7,
          -2.5786055058446684,
          -3.2081052932151874,
          -3.349136902644719,
          -3.6432552250247716,
          -3.710709565724337,
          -3.011158499816333,
          -2.8549130223078554,
          -7,
          -3.658964842664435,
          -3.3311234878466514,
          -3.388988785124714,
          -3.3481100684802376,
          -3.0010410579860936,
          -7,
          -7,
          -7,
          -3.6679196853173615,
          -7,
          -7,
          -7,
          -3.7091002815511667,
          -7,
          -2.8478467484424077,
          -7,
          -7,
          -3.6577249542051082,
          -3.9991015293309222,
          -3.8758519242862692,
          -7,
          -3.4883109423296537,
          -7,
          -2.9109637921655658,
          -2.770431183622876,
          -3.0391146831688234,
          -7,
          -7,
          -3.203147997054803,
          -3.914545886349628,
          -3.714903366650505,
          -3.3789275745695604,
          -3.661699129651687,
          -3.4122161068666275,
          -3.785756799962643,
          -4.142107771731307,
          -3.950092117510449,
          -3.4767229688690007,
          -3.51266438833237,
          -3.153433737087157,
          -3.3206955935760587,
          -3.499467130989543,
          -7,
          -3.622816660564442,
          -3.251759854528801,
          -7,
          -3.305407105902434,
          -4.315130317183602,
          -3.4197492856943774,
          -3.8495217813829723,
          -3.6769221255374807,
          -4.008429826797229,
          -3.850196802968261,
          -7,
          -4.119272389514709,
          -3.675992076790947,
          -3.163128231581581,
          -3.7102020146553847,
          -3.4111144185509046,
          -3.2676409823459154,
          -2.972804322336578,
          -3.368565785360332,
          -3.3374307352647072,
          -7,
          -2.030522403689804,
          -2.9596483728278686,
          -3.048519487922654,
          -2.161200018291969,
          -3.0730336902474913,
          -2.9546283775072713,
          -7,
          -2.8544461895402313,
          -3.7319914490189294,
          -7,
          -3.548573662418466,
          -3.50745106090197,
          -3.315410507181645,
          -7,
          -2.7999474153427037,
          -2.872611870862621,
          -3.5402412871049003,
          -7,
          -2.923983747103962,
          -3.3369597851207042,
          -3.132676818696156,
          -3.937216890862705,
          -3.370019362693744,
          -2.2963360546020466,
          -3.8861521819707967,
          -7,
          -3.6285932558512592,
          -3.6715739245654024,
          -3.8822588331549723,
          -3.4390167283875126,
          -2.9697781910347425,
          -1.9876662649262746,
          -2.7051982724309926,
          -2.8675984177611293,
          -7,
          -2.6617732597751806,
          -3.306800181689314,
          -2.698013503939182,
          -3.3491664760112605,
          -7,
          -3.4686426683915115,
          -3.2992348258376047,
          -3.5514499979728753,
          -7,
          -7,
          -7,
          -3.66133934000604,
          -7,
          -3.0236955527159197,
          -7,
          -2.532924157916436,
          -7,
          -3.325720858019412,
          -2.7567628540462232,
          -3.7062055418819706,
          -3.343703931783211,
          -7,
          -3.398200507219428,
          -3.6510840892430116,
          -2.7063425737932336,
          -3.392609030497567,
          -3.378488748031808,
          -7,
          -3.9795028487874013,
          -3.750354088762708,
          -3.8258802989361795,
          -3.7061201097027037,
          -3.672005445022952,
          -3.8452841263479915,
          -3.6909045540549665,
          -3.7054360465852505,
          -2.5171015988546297,
          -3.643847310299714,
          -7,
          -3.2530551694438183,
          -7,
          -3.325515663363148,
          -3.8250754246136784,
          -3.3774792785745746,
          -3.127678960206914,
          -7,
          -3.7992026563005252,
          -3.3549723250189762,
          -3.4271614029259654,
          -3.640779477344857,
          -7,
          -3.63205216670581,
          -2.703622017252944,
          -7,
          -7,
          -3.899382705533265,
          -7,
          -3.3519411763536078,
          -7,
          -3.770557474850995,
          -7,
          -3.692758818154724,
          -7,
          -3.1020905255118367,
          -7,
          -7,
          -7,
          -7,
          -3.8859828113549733,
          -2.7366899869982735,
          -7,
          -3.675136504467994,
          -3.9359604689891663,
          -3.6578204560156973,
          -2.9805138004226635,
          -7,
          -3.3345207667334886,
          -7,
          -7,
          -4.092439911331141,
          -7,
          -3.6586313746095143,
          -7,
          -7,
          -3.353627758985543,
          -3.4584112014697164,
          -7,
          -7,
          -2.3791681219185326,
          -2.7745169657285493,
          -3.6714505542124947,
          -2.548153093111087,
          -2.9936125579388904,
          -3.3491479646740636,
          -3.691081492122968,
          -3.969602264848539,
          -3.4564672554769906,
          -3.7576996250877386,
          -3.4466924663715273,
          -7,
          -7,
          -3.7518177877368792,
          -3.8107028609471167,
          -7,
          -3.7652213663049805,
          -3.18527648256255,
          -7,
          -3.337026415142606,
          -3.4605971888976015,
          -3.0337364064361574,
          -7,
          -7,
          -7,
          -7,
          -3.655234507034294,
          -2.5484771632553307,
          -2.401528180600803,
          -7,
          -7,
          -7,
          -3.1118623514410926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.337725413884801,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.643353961976863,
          -7,
          -3.9353056902899253,
          -3.8585973449946924,
          -3.53535742366243,
          -7,
          -7,
          -3.793580867368156,
          -7,
          -7,
          -3.7589497212801803,
          -7,
          -7,
          -3.7371926427047373,
          -3.8361341494653747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.878406887580996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658440706411126,
          -7,
          -7,
          -7,
          -7,
          -3.328685336983151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6468821035034504,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -2.0663259253620376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.287801729930226,
          -7,
          -7,
          -7,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.518237482689147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.220108088040055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.283531196663333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.273392460053555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.672836454171397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2479732663618064,
          -3.772101569277012,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7279395842212315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2384085612286544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7113853790984517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5010592622177517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6824158616773586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6349248811067227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4163075870598827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7863964613723042,
          -2.3944516808262164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9786369483844743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6148972160331345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6748611407378116,
          -7,
          -7,
          -7,
          -5.1319376926448035,
          -7,
          -7,
          -4.544117675169358,
          -2.201852121200103,
          -7,
          -7,
          -7,
          -2.924795995797912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8618329976579449,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.757965097861435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431669271313745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.392309959892819,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.301919388035856,
          -7,
          -2.7895807121644256,
          -7,
          -7,
          -4.2410606158912,
          -7,
          -3.187520720836463,
          -4.066773037085025,
          -4.137227476442907,
          -3.6960941599952233,
          -7,
          -3.243781916093795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.875369985268502,
          -4.377433751703389,
          -7,
          -7,
          -3.262213705476417,
          -7,
          -7,
          -7,
          -4.6407000199084365,
          -3.293473048156108,
          -7,
          -7,
          -3.648067129448935,
          -7,
          -7,
          -7,
          -3.0360297306565434,
          -7,
          -3.3089910290001643,
          -7,
          -7,
          -3.1121182879546594,
          -7,
          -7,
          -4.632497783955012,
          -7,
          -2.783665413935314,
          -3.592620821321982,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -2.733999286538387,
          -7,
          -7,
          -3.3842189645780287,
          -7,
          -7,
          -7,
          -3.4735599546008133,
          -7,
          -4.025244404149697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5910646070264993,
          -7,
          -7,
          -3.8258154449852038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.496929648073215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6658154279909354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.442703689915969,
          -2.8543060418010806,
          -7,
          -2.9350872111620183,
          -7,
          -3.1215598441875008,
          -7,
          -3.4202033743532962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -4.010342366139568,
          -7,
          -7,
          -7,
          -3.0550723824494175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2595938788859486,
          -7,
          -7,
          -7,
          -7,
          -3.847510965203248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6665179805548807,
          -7,
          -4.661500335378259,
          -7,
          -7,
          -7,
          -7,
          -3.360309344342059,
          -7,
          -7,
          -1.7220353084047122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.464105320046255,
          -7,
          -7,
          -7,
          -7,
          -2.443262987458695,
          -7,
          -3.9599234024401224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2702128548962426,
          -7,
          -4.04083959468534,
          -7,
          -2.851869600729766,
          -7,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.426185825244511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1436392352745433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.951823035315912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9237619608287004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8254261177678233,
          -3.697245198420693,
          -7,
          -3.0888445627270045,
          -7,
          -2.3106933123433606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0965624383741357,
          -7,
          -7,
          -7,
          -3.783760695743924,
          -7,
          -7,
          -7,
          -7,
          -2.3492775274679554,
          -7,
          -7,
          -7,
          -7,
          -2.8102325179950842,
          -7,
          -7,
          -7,
          -3.952316087981373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8723893884178207,
          -7,
          -7,
          -4.196074810185649,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788875115775417,
          -2.3879827199214656,
          -7,
          -7,
          -3.215373152783422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6757783416740852,
          -2.3961993470957363,
          -7,
          -7,
          -7,
          -5.150292740338675,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.998259338423699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1225435240687545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3402457615679317,
          -7,
          -7,
          -7,
          -4.500949647254549,
          -7,
          -7,
          -7,
          -2.942008053022313,
          -7,
          -2.386320573894046,
          -3.229169702539101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.308745776330676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.410496045616074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.797928522794656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5634810853944106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9644482079166607,
          -7,
          -4.588369362086652,
          -7,
          -7,
          -3.0031896290810205,
          -2.5054891384167237,
          -7,
          -7,
          -7,
          -3.0655797147284485,
          -2.6235446283772546,
          -2.504130905935453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3979400086720375,
          -7,
          -7,
          -4.654417214913714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.574320700915308,
          -4.308841761261316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.679945470619215,
          -7,
          -7,
          -3.3326404103874627,
          -7,
          -4.6140319822010385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1304302676581415,
          -7,
          -7,
          -4.635745049128339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7831886910752575,
          -3.1486026548060932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.649334858712142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6943711725332387,
          -7,
          -7,
          -7,
          -3.40840957846843,
          -7,
          -7,
          -2.803457115648414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.622731965164719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7693773260761385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7597649431594515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.716003343634799,
          -7,
          -7,
          -2.9804578922761,
          -7,
          -3.0784568180532927,
          -2.693140460675295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275472601069419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4774106879072515,
          -7,
          -7,
          -2.4313637641589874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.507855871695831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.637189422148762,
          -7,
          -1.7220353084047122,
          -7,
          -7,
          -7,
          -7,
          -3.590953235187986,
          -7,
          -7,
          -4.2758351870121984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.559068334034537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.663700925389648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0608488730388075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.622214022966295,
          -4.134702916820561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.497620649781288,
          -7,
          -7,
          -4.728524219304322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.229169702539101,
          -7,
          -7,
          -7,
          -7,
          -4.670922750442565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6875289612146345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3872118003137306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0203336548935145,
          -7,
          -7,
          -7,
          -3.616265405281708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.607122472989352,
          -7,
          -7,
          -3.75564621945668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3384564936046046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.433086262195134,
          -7,
          -7,
          -3.2020670448127246,
          -7,
          -7,
          -2.75815462196739,
          -7,
          -7,
          -2.6522463410033232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.574841195063384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.977494969073036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276300924570774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5633149300417255,
          -7,
          -4.633225990988621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.808885867359812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.596047007545439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9740509027928774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604092791382165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6148972160331345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.269676357629865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.458939861890326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.362718030694413,
          -7,
          -7,
          -7,
          -2.8810992183890174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4510184521554574,
          -7,
          -7,
          -7,
          -3.880636409709007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.96277171225233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -3.443262987458695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.842297134328065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2708728475314053,
          -7,
          -7,
          -7,
          -7,
          -2.8003733548913496,
          -7,
          -7,
          -7,
          -3.9307962629833004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1156105116742996,
          -7,
          -7,
          -7,
          -2.9683661870310103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9461246192171453,
          -7,
          -7,
          -7,
          -3.0770043267933502,
          -2.832508912706236,
          -7,
          -7,
          -2.862131379313037,
          -3.083860800866573,
          -7,
          -7,
          -7,
          -7,
          -4.0796153235269434,
          -7,
          -7,
          -7,
          -2.405260961594782,
          -7,
          -7,
          -3.279552881150386,
          -3.4162076611902306,
          -7,
          -7,
          -2.656577291396114,
          -7,
          -7,
          -7,
          -3.2116544005531824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9860996250551297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7218106152125467,
          -7,
          -3.0232524596337114,
          -7,
          -7,
          -3.8264635490928014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.711526041280055,
          -7,
          -7,
          -7,
          -2.9885589568786157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.033447882287984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8861521819707967,
          -7,
          -7,
          -3.529072695212456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.989894563718773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.096860376516557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8887409606828927,
          -7,
          -2.8692317197309762,
          -2.1056993786226297,
          -7,
          -7,
          -4.0370125409780915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4667193716815987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2529338976558373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.28668096935493,
          -7,
          -7,
          -2.850033257689769,
          -7,
          -2.912753303671323,
          -7,
          -3.002166061756508,
          -7,
          -2.101354224998816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.010225730048655,
          -2.2216749970707688,
          -7,
          -7,
          -7,
          -7,
          -2.705007959333336,
          -7,
          -7,
          -7,
          -3.2216749970707688,
          -7,
          -7,
          -7,
          -4.1966562421307065,
          -3.180125875164054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0149403497929366,
          -7,
          -3.975615597966895,
          -7,
          -4.392445926608398,
          -7,
          -3.214843848047698,
          -3.9489017609702137,
          -7,
          -7,
          -2.422014995979464,
          -7,
          -2.8454081396217936,
          -2.9014583213961123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.456214155357989,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.436226275270583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.580468783951002,
          -7,
          -4.805881293844513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9293167267534956,
          -7,
          -7,
          -4.7884158626098525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.586508539462949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983265352566545,
          -1.6638671413061645,
          -3.6226629418839154,
          -4.012858306449886,
          -7,
          -7,
          -4.069631102620343,
          -3.1604685311190375,
          -3.16828873237199,
          -3.037227234582274,
          -3.3226327116922234,
          -7,
          -3.4554539687786283,
          -3.265211027637486,
          -7,
          -3.464116794444044,
          -2.976808337338066,
          -7,
          -3.5536403362313544,
          -7,
          -7,
          -7,
          -3.664152883958131,
          -3.6596717642835825,
          -4.696746525053621,
          -7,
          -7,
          -2.929418925714293,
          -4.13939626869514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024895960107485,
          -7,
          -7,
          -3.213960237403306,
          -7,
          -7,
          -7,
          -2.0472748673841794,
          -3.029586671630457,
          -7,
          -7,
          -4.638149675666846,
          -7,
          -3.378216149749878,
          -7,
          -4.0313680628857735,
          -7,
          -2.9020028913507296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.011020355516257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.646893624167745,
          -2.8627275283179747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.041525465650097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0288422632984635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9916468715211346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4079854213081364,
          -7,
          -7,
          -2.9175055095525466,
          -7,
          -7,
          -7,
          -7,
          -3.9883136494546534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6919651027673606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.621384028481653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5928426831311002,
          -7,
          -7,
          -7,
          -4.877037144635965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4608978427565478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216086692421913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.093421685162236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.655042341331202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.12515582958053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669484242333031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.82865989653532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.49548189455384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6847556221086237,
          -7,
          -4.033013394664247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.447638591400498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7267272090265724,
          -4.045088161542816,
          -7,
          -4.541079767776629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.678103917207136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.439174739843469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9656719712201065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3188977146274867,
          -7,
          -7,
          -7,
          -7,
          -4.779632560730201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.582404298019028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.378579576115775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8950355974523228,
          -3.8983411657275093,
          -3.1129318090463487,
          -3.0317113547545933,
          -7,
          -7,
          -1.935257176946508,
          -2.3107299261343788,
          -7,
          -7,
          -7,
          -3.4510184521554574,
          -3.5928426831311002,
          -7,
          -3.459844642388208,
          -7,
          -3.234820879807401,
          -2.0762486368402864,
          -7,
          -3.05307844348342,
          -7,
          -3.124178055474675,
          -3.5990092398233435,
          -3.2047709362855197,
          -3.2266891142671636,
          -3.423300498738075,
          -7,
          -7,
          -3.426077292323316,
          -7,
          -7,
          -3.9035782936630543,
          -7,
          -3.3638938977741004,
          -3.4186878954494686,
          -2.5157994514673847,
          -3.893928126542607,
          -3.4311492447760616,
          -2.675400905264045,
          -7,
          -3.5967619862752436,
          -7,
          -7,
          -7,
          -7,
          -2.595016709265098,
          -2.1592974644303227,
          -7,
          -3.2003579455416356,
          -3.6471872978959894,
          -3.122270503074094,
          -3.1177682949263725,
          -3.596047007545439,
          -7,
          -3.616212862243485,
          -3.9435439771534546,
          -3.5983527098692836,
          -7,
          -7,
          -2.3251909714733467,
          -3.8937062930647133,
          -7,
          -7,
          -7,
          -3.6848004941944112,
          -3.4409090820652177,
          -7,
          -3.44544851426605,
          -3.06096750474098,
          -7,
          -3.1247215350624358,
          -7,
          -7,
          -7,
          -7,
          -3.8963057074660803,
          -7,
          -3.216746333609975,
          -3.6037396302426137,
          -3.3246939138617746,
          -3.125101566510315,
          -2.8328281295393536,
          -7,
          -1.7642236073088604,
          -2.4186754297187782,
          -3.295072052054132,
          -3.8936508169859634,
          -7,
          -7,
          -3.2942457161381182,
          -2.9938218538340813,
          -7,
          -7,
          -2.688642251959892,
          -3.5958267770732233,
          -7,
          -7,
          -3.4439927191170185,
          -7,
          -7,
          -3.9023293058583186,
          -3.8963608454693164,
          -3.3199384399803087,
          -3.896415976473123,
          -7,
          -7,
          -3.430290106054924,
          -1.6791918413383962,
          -3.5987358062804047,
          -3.6027651470770543,
          -7,
          -3.309949384259016,
          -2.7047559460483073,
          -7,
          -2.892571587342385,
          -2.0253058652647704,
          -3.595661530898903,
          -3.912434633375575,
          -7,
          -3.362000495735565,
          -7,
          -2.9802559418042427,
          -2.942454526342477,
          -3.613366056465805,
          -7,
          -7,
          -3.1262396696287182,
          -7,
          -7,
          -2.668075151394519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5602935243774274,
          -3.00987563371216,
          -2.54883401242041,
          -2.691289562306325,
          -3.5993371329924893,
          -2.9365451573208112,
          -7,
          -7,
          -3.6144753660903954,
          -3.10452978752546,
          -2.8561244442423,
          -7,
          -3.896911840826025,
          -7,
          -2.8126683008872484,
          -7,
          -7,
          -7,
          -3.6085795148261877,
          -7,
          -7,
          -3.328430573978307,
          -3.914977472444331,
          -3.9107844347928373,
          -7,
          -3.9175055095525466,
          -3.90151280912994,
          -7,
          -2.3050789541538186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5971464878336956,
          -7,
          -2.6672661193822744,
          -7,
          -3.1709947020363,
          -7,
          -2.5688136938468413,
          -2.1517877352979724,
          -7,
          -2.9609989878668697,
          -3.436692597664054,
          -2.917190308511564,
          -3.145662470707546,
          -2.404884002555489,
          -3.0634941988333124,
          -7,
          -3.909876817990393,
          -7,
          -7,
          -3.9557358422776656,
          -7,
          -7,
          -7,
          -3.2011785563833253,
          -7,
          -2.7846618607977156,
          -7,
          -3.2278353057755873,
          -7,
          -7,
          -7,
          -7,
          -3.429698460746883,
          -7,
          -7,
          -7,
          -3.985695859689842,
          -7,
          -7,
          -7,
          -3.894758994371892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4424275042491854,
          -2.624488362513449,
          -2.6935270987144677,
          -2.807464739663779,
          -3.893817223967463,
          -3.2932520331478248,
          -3.8952567531448947,
          -2.9180303367848803,
          -7,
          -7,
          -3.4290521089243864,
          -3.896526217489555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7754723435777815,
          -7,
          -7,
          -7,
          -7,
          -3.898396045930009,
          -3.8991088581933995,
          -7,
          -3.1259148015308593,
          -3.940267391446012,
          -7,
          -2.7007037171450192,
          -2.6827149543979574,
          -7,
          -7,
          -3.8961954104542107,
          -2.9804578922761,
          -3.9158745028576916,
          -2.17827488687209,
          -7,
          -2.3475543120201428,
          -7,
          -7,
          -7,
          -2.8392191755333216,
          -2.5660530133297814,
          -2.8549130223078554,
          -2.2373697070918968,
          -3.1765253365349997,
          -7,
          -3.41791434273266,
          -7,
          -3.9012948171655673,
          -2.9667672920577095,
          -3.911370707116138,
          -7,
          -3.604388073038561,
          -3.90449915539782,
          -7,
          -7,
          -3.902546779313991,
          -3.4207256768599095,
          -2.5058703771963513,
          -2.7219651042692194,
          -3.6101276130759956,
          -3.901785145303599,
          -1.4464814546640163,
          -3.601408060534684,
          -7,
          -2.6919651027673606,
          -7,
          -7,
          -3.2125604579711435,
          -3.898396045930009,
          -2.9502674680135885,
          -3.1356096360286796,
          -3.945222316635341,
          -7,
          -3.456973013635818,
          -7,
          -2.262959805400504,
          -2.5931349642708077,
          -3.8952567531448947,
          -7,
          -3.893928126542607,
          -2.903731084963894,
          -2.538238500689552,
          -7,
          -7,
          -3.131030225594209,
          -7,
          -7,
          -7,
          -3.904715545278681,
          -7,
          -3.8952567531448947,
          -3.4356320489516605,
          -3.2962262872611605,
          -2.9404902712924867,
          -2.2762883465645865,
          -3.221921559353994,
          -7,
          -3.2445739728174354,
          -3.0169824105995837,
          -2.790888071786576,
          -7,
          -3.0106179269885396,
          -7,
          -3.630936119064191,
          -3.236075179005586,
          -3.15946692901018,
          -7,
          -7,
          -7,
          -3.919444210465237,
          -7,
          -7,
          -7,
          -3.164352855784437,
          -3.898176483497677,
          -2.656098202012832,
          -7,
          -7,
          -2.7260358406419276,
          -3.246252312299322,
          -3.3039101528616395,
          -3.9151887051731564,
          -2.9923009843277657,
          -3.9869507878585164,
          -2.4170216650043423,
          -2.3797015850547303,
          -2.425683042498169,
          -7,
          -2.883448493505859,
          -2.596143564636393,
          -3.1669478796158117,
          -3.420218655274665,
          -2.5944060266909417,
          -3.470443160662778,
          -3.0432267304289233,
          -3.0663342093933186,
          -3.2889692223054343,
          -2.94199902862763,
          -3.893345571818231,
          -3.5356770471526247,
          -2.72899112978433,
          -2.412936196270033,
          -2.7191520486477514,
          -4.039731296098691,
          -3.191765303091737,
          -2.7893740181644615,
          -7,
          -2.5349043560660567,
          -3.306246268757506,
          -2.6808029121706944,
          -3.617367343179719,
          -2.8490737449449446,
          -2.7083894215363657,
          -3.354527507512407,
          -3.7987426959928587,
          -3.362467974826899,
          -2.69207373070237,
          -2.881047300339714,
          -3.4663237943053677,
          -3.1746992883707756,
          -2.950992629105126,
          -2.4138025167693513,
          -2.742934505531679,
          -3.129459704839323,
          -3.633165353683903,
          -1.873993814550635,
          -3.291115025498768,
          -3.3638469241672295,
          -2.9640799562089097,
          -2.6569947892596133,
          -2.846611982064236,
          -7,
          -3.0331555896976927,
          -3.479191276121532,
          -7,
          -3.428175304684282,
          -2.5593555501202285,
          -3.3914644118391033,
          -7,
          -2.8772705363797146,
          -2.398105624862588,
          -3.5407436856394208,
          -7,
          -3.2802140293383997,
          -7,
          -2.634594213071113,
          -7,
          -3.7230130335521174,
          -3.3668337082390027,
          -3.6775157047987577,
          -3.899492196138132,
          -4.084862139048422,
          -2.8675902357985654,
          -3.5204507792823576,
          -2.4141134532146724,
          -2.849852805415638,
          -2.378634853476651,
          -2.926104889240625,
          -2.004536317851323,
          -3.906065544755237,
          -2.4572433221712098,
          -2.4968011980452105,
          -3.2380963076814093,
          -3.101549466237807,
          -7,
          -2.8644197947770462,
          -2.833746914486369,
          -2.6598918323053944,
          -7,
          -7,
          -7,
          -7,
          -3.247013055017526,
          -2.19380739181105,
          -3.9028727854460796,
          -2.71230299905154,
          -7,
          -2.5831551591574486,
          -2.659065083745527,
          -3.162663958267158,
          -7,
          -3.898176483497677,
          -2.8792233507313676,
          -3.210692980817999,
          -2.9586333717289905,
          -3.088439861957448,
          -3.4487578345818384,
          -3.079452595311,
          -3.1196846918240504,
          -3.6664243725187595,
          -2.6909972448905215,
          -3.6401334644944923,
          -3.44440915878158,
          -3.1819660221367885,
          -3.4551495211798278,
          -3.24149667332751,
          -3.9181876613589255,
          -3.4287825114969546,
          -7,
          -2.9535482900828445,
          -7,
          -3.896856772737204,
          -2.95545307898588,
          -2.2558453684520914,
          -2.260309246403442,
          -7,
          -2.9970367108825267,
          -3.435578953471198,
          -3.351989455435632,
          -3.6033067965385137,
          -7,
          -7,
          -2.8955925243123817,
          -7,
          -2.9632104824903385,
          -2.5702415557741025,
          -7,
          -2.065471512398471,
          -7,
          -2.937609063316496,
          -7,
          -3.154880244718762,
          -3.9017306917292185,
          -3.161767169985413,
          -2.7724115266843383,
          -3.909556029241175,
          -7,
          -3.9018395920512297,
          -3.3554515201265174,
          -2.472725336054176,
          -3.627109711211139,
          -3.9235030669421045,
          -2.76559760320161,
          -3.9138138523837167,
          -2.4745847150335125,
          -7,
          -2.774087396473049,
          -7,
          -3.9182400902214147,
          -3.4263485737875077,
          -7,
          -2.641781720821696,
          -3.6249521046631217,
          -3.905849826642319,
          -3.309789805171458,
          -2.5081813078158945,
          -7,
          -3.4207806195485655,
          -2.6831596518740986,
          -3.925621454790829,
          -3.1427543537803806,
          -2.6167972574221303,
          -3.1551841596940076,
          -2.9730858501679815,
          -3.086868074713916,
          -2.9661417327390325,
          -2.472078282328687,
          -3.67089495352021,
          -2.6856003283393646,
          -3.89470365260923,
          -3.894814329083301,
          -2.7944548500620274,
          -2.962885687041937,
          -3.9017306917292185,
          -2.829303772831025,
          -2.7002864012059606,
          -3.951677437343301,
          -2.8235003121397035,
          -3.0845437818078687,
          -2.803424597623472,
          -7,
          -7,
          -7,
          -7,
          -3.9123814989188004,
          -3.9359101364305076,
          -2.697727386944923,
          -7,
          -7,
          -3.893484346218486,
          -2.1222968014541115,
          -7,
          -3.915610862661467,
          -7,
          -3.9020028913507296,
          -3.217431299267857,
          -7,
          -3.9085386321719593,
          -2.751236322671984,
          -3.6882863093259703,
          -3.4448251995097476,
          -7,
          -2.7523045932010324,
          -7,
          -7,
          -7,
          -3.9079485216122722,
          -7,
          -7,
          -3.3895204658463776,
          -3.3370597263205246,
          -3.720696668749796,
          -3.901785145303599,
          -7,
          -3.5169758348685476,
          -7,
          -7,
          -3.0820996162644265,
          -7,
          -7,
          -3.260262244714977,
          -3.3222606541436837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.204042423144708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.575534218319864,
          -7,
          -3.412593163181993,
          -7,
          -7,
          -7,
          -3.2802368096096894,
          -3.0510973704399538,
          -7,
          -7,
          -3.590953235187986,
          -7,
          -7,
          -3.459844642388208,
          -7,
          -3.5742628297070267,
          -7,
          -2.9055866375456456,
          -7,
          -7,
          -7,
          -3.5917322389518356,
          -7,
          -3.5943925503754266,
          -2.1739392332058043,
          -3.285894712480839,
          -7,
          -7,
          -2.6368220975871743,
          -2.829518186304599,
          -3.5728716022004803,
          -7,
          -7,
          -7,
          -7,
          -3.100973313405724,
          -7,
          -7,
          -7,
          -3.575303333422399,
          -7,
          -2.9786369483844743,
          -7,
          -7,
          -2.978750981332984,
          -7,
          -3.2369904646531475,
          -7,
          -3.585347911094591,
          -3.378942698613437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.375785504077291,
          -7,
          -7,
          -7,
          -7,
          -2.9014583213961123,
          -7,
          -7,
          -7,
          -3.1268238205131804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9401178667477184,
          -7,
          -7,
          -7,
          -3.0575947931384415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2794387882870204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590618948206578,
          -7,
          -3.6306312440205,
          -7,
          -7,
          -3.6126779183165016,
          -3.601408060534684,
          -3.3997025581386566,
          -7,
          -7,
          -3.5804687839510017,
          -3.6108730003800513,
          -3.6585837154070626,
          -7,
          -3.137354111370733,
          -4.206933761880598,
          -7,
          -7,
          -3.598571663482141,
          -2.8599109900635233,
          -7,
          -3.65571454961871,
          -3.67089495352021,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6280481732796694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9205928620848085,
          -3.3120362371917773,
          -3.31694832926197,
          -7,
          -3.586812269443376,
          -3.989672247623873,
          -7,
          -7,
          -3.6174197467371765,
          -7,
          -3.6578204560156973,
          -7,
          -7,
          -7,
          -2.6688093294971598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0444417587036496,
          -3.1386184338994925,
          -2.9079485216122722,
          -3.1184851801459406,
          -2.9213742954184743,
          -2.986211715514367,
          -7,
          -2.8860636902492818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.117105502761251,
          -7,
          -3.3322364154914434,
          -7,
          -7,
          -2.838055133510821,
          -7,
          -7,
          -3.614264287358705,
          -7,
          -7,
          -7,
          -3.604657972047871,
          -7,
          -7,
          -7,
          -7,
          -2.8476607781404675,
          -7,
          -7,
          -7,
          -2.867393822439164,
          -7,
          -2.4294446515270676,
          -7,
          -3.3389542523776075,
          -7,
          -3.103803720955957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.625621081424908,
          -7,
          -3.356089625562946,
          -3.069674111945659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2728854447575695,
          -3.598899887063883,
          -7,
          -3.2821687783046416,
          -7,
          -3.571941635074462,
          -2.795416522655575,
          -3.273579945676206,
          -7,
          -3.571825249040829,
          -2.893317811616112,
          -3.64525847734945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1876147137990425,
          -7,
          -3.2998703301367427,
          -3.707314633588708,
          -7,
          -7,
          -3.5779511277297553,
          -7,
          -7,
          -7,
          -2.759236033088654,
          -3.39750549689802,
          -7,
          -7,
          -3.578524605274993,
          -7,
          -3.1681044568157537,
          -2.751086554886017,
          -3.698448538015329,
          -2.993083360698062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6089536992758626,
          -7,
          -7,
          -3.595055089759304,
          -2.9763499790032735,
          -7,
          -7,
          -7,
          -2.4694011879588946,
          -3.640978057358332,
          -7,
          -7,
          -3.740402169016284,
          -7,
          -7,
          -3.6648299411430907,
          -7,
          -7,
          -7,
          -7,
          -3.2079035303860515,
          -7,
          -1.9159836783557305,
          -2.4845188481673137,
          -1.7240759641970738,
          -7,
          -3.165156610994007,
          -3.3589812256253495,
          -7,
          -7,
          -3.2719577125342236,
          -7,
          -3.6277753752293034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1084522639030685,
          -7,
          -3.6121478383264867,
          -7,
          -3.6201013378002385,
          -7,
          -3.587255520806597,
          -7,
          -3.194514341882467,
          -3.285411019391177,
          -3.66143405039392,
          -7,
          -7,
          -7,
          -3.649529565947819,
          -3.7960884286806684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5787537844264343,
          -2.9907826918031377,
          -3.103233406386929,
          -2.589018238151037,
          -3.280805928393667,
          -2.59402403573142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.45983711033396,
          -7,
          -7,
          -7,
          -4.688909017620555,
          -4.826172021926372,
          -4.451771089158385,
          -7,
          -7,
          -7,
          -7,
          -4.6448520064261425,
          -7,
          -4.812485532959049,
          -7,
          -7,
          -7,
          -7,
          -4.660258179206216,
          -7,
          -7,
          -4.432640641207875,
          -7,
          -4.619635859719037,
          -4.317666442356502,
          -4.2689989585426735,
          -3.9893608137762473,
          -7,
          -7,
          -7,
          -7,
          -3.8020550061776333,
          -3.193958978019187,
          -4.13375174566039,
          -3.771881320190099,
          -3.9529376677509807,
          -7,
          -3.6929643596462265,
          -7,
          -3.470840026689671,
          -2.1990234256365437,
          -2.276972138523276,
          -3.0073209529227447,
          -3.159241249837855,
          -3.2345172835126865,
          -7,
          -3.647480773173676,
          -3.6952189189051508,
          -2.513217600067939,
          -7,
          -4.275863950712521,
          -7,
          -7,
          -3.3029799367482493,
          -3.716789460800791,
          -4.4045115809285225,
          -3.5878231713189552,
          -2.780877124642547,
          -2.6874174750166397,
          -7,
          -7,
          -4.181162087386154,
          -7,
          -3.873611196996467,
          -7,
          -3.207365037469072,
          -3.8340071958856363,
          -3.748885440009517,
          -7,
          -3.901621764093357,
          -7,
          -2.996560313525334,
          -3.793301353613115,
          -7,
          -3.5621936991445007,
          -3.700281762108918,
          -7,
          -3.6261069635526333,
          -7,
          -7,
          -3.877083256650651,
          -3.839037873388306,
          -7,
          -2.9835135272947686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0701302598602904,
          -7,
          -7,
          -3.2788841961972057,
          -7,
          -2.5179652417860705,
          -7,
          -3.6799726942774185,
          -7,
          -3.2000292665537704,
          -3.653501946962933,
          -3.6379897807846855,
          -7,
          -7,
          -7,
          -3.7965049515532963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.712439236645189,
          -7,
          -7,
          -3.7401389043873006,
          -7,
          -7,
          -7,
          -7,
          -2.9122220565324155,
          -7,
          -7,
          -7,
          -7,
          -2.833925861701843,
          -7,
          -7,
          -7,
          -3.578409970331236,
          -7,
          -7,
          -7,
          -7,
          -3.652343055062715,
          -7,
          -7,
          -3.699178415672612,
          -7,
          -3.585009279902461,
          -3.5896145406312665,
          -7,
          -7,
          -7,
          -7,
          -3.913336925932623,
          -2.834632606336092,
          -3.4702914591867704,
          -7,
          -7,
          -7,
          -7,
          -3.121960871649443,
          -7,
          -3.461048091670658,
          -3.6379897807846855,
          -3.2965555060882235,
          -7,
          -7,
          -7,
          -7,
          -3.5754765086019,
          -2.9373172477624943,
          -3.327665387050042,
          -2.86411536851903,
          -3.652922887567942,
          -7,
          -3.650501794878367,
          -3.4713895141179947,
          -7,
          -3.7231271587956916,
          -7,
          -7,
          -7,
          -4.044422155711843,
          -7,
          -7,
          -7,
          -3.904913807999268,
          -7,
          -7,
          -3.3552982352111687,
          -7,
          -3.5859117103194342,
          -7,
          -7,
          -7,
          -3.6109793799229974,
          -2.701088048570016,
          -7,
          -7,
          -7,
          -7,
          -3.293362554711446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.285557309007774,
          -7,
          -7,
          -7,
          -7,
          -3.6020599913279625,
          -7,
          -3.1258064581395266,
          -7,
          -7,
          -3.5067079263501197,
          -3.589502796263764,
          -3.5722906061514177,
          -7,
          -7,
          -3.5728716022004803,
          -3.27315566043433,
          -7,
          -7,
          -3.2234094022589295,
          -7,
          -3.1750283506819907,
          -7,
          -7,
          -7,
          -7,
          -3.375114684692225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5742628297070267,
          -7,
          -7,
          -4.399938946535649,
          -7,
          -7,
          -7,
          -2.3222192947339195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.0043213737826426,
          -7,
          -3.392609030497567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023992804606471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6972293427597176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3450468246483553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.760422483423212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727329751292091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.586024382386976,
          -7,
          -7,
          -7,
          -7,
          -3.221898380435438,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.515873843711679,
          -7,
          -2.531478917042255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8920946026904806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7853298350107671,
          -7,
          -1.5440680443502757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.224014811372864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2576785748691846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.446640706109038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5786392099680726,
          -7,
          -2.582063362911709,
          -2.6263403673750423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9429995933660407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6994040818153375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.582063362911709,
          -7,
          -7,
          -1.8260748027008264,
          -7,
          -1.462397997898956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0382226383687185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.300291066777081,
          -7,
          -7,
          -7,
          -7,
          -4.240124730168566,
          -3.294172187909397,
          -3.1658376246901283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.376576957056512,
          -7,
          -7,
          -7,
          -7,
          -3.873920951019782,
          -4.979179477476769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.272908612690247,
          -7,
          -7,
          -7,
          -3.851074805228887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.44870631990508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.598790506763115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080698622871129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.24940533901592,
          -7,
          -7,
          -7,
          -3.3697722885969625,
          -2.9942291408176986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.234820879807401,
          -7,
          -7,
          -7,
          -3.218124327999076,
          -7,
          -2.948412965778601,
          -7,
          -2.681241237375587,
          -2.9599948383284165,
          -2.993876914941211,
          -4.089092255842719,
          -7,
          -2.909020854211156,
          -2.9585638832219674,
          -7,
          -3.0484418035504044,
          -7,
          -7,
          -7,
          -3.3459615418131414,
          -2.92272545799326,
          -3.5705234818079274,
          -7,
          -7,
          -3.020775488193558,
          -7,
          -7,
          -7,
          -2.6278776945799716,
          -7,
          -2.637989780784685,
          -1.2704459080179626,
          -2.6395631046841332,
          -2.9380190974762104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9595183769729982,
          -2.789228057267335,
          -7,
          -2.9542425094393248,
          -7,
          -7,
          -4.053846426852253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6183967876034884,
          -7,
          -3.126131407261984,
          -3.7575731524225557,
          -7,
          -2.382917135087531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.08278537031645,
          -7,
          -2.450864692379766,
          -2.9907826918031377,
          -7,
          -7,
          -3.1840975149130593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4423229557455746,
          -7,
          -7,
          -7,
          -2.4153072922255676,
          -7,
          -7,
          -7,
          -7,
          -2.519171463821659,
          -7,
          -7,
          -2.7607993116307177,
          -7,
          -3.78265175161032,
          -1.594593426642608,
          -7,
          -7,
          -7,
          -2.9057958803678687,
          -7,
          -2.991004440330755,
          -2.6703121322779007,
          -2.929929560084588,
          -7,
          -7,
          -4.264447885773872,
          -7,
          -7,
          -2.76317832728305,
          -7,
          -7,
          -2.484774218948188,
          -2.5211380837040362,
          -7,
          -7,
          -2.526339277389844,
          -7,
          -7,
          -7,
          -7,
          -2.5938396610812715,
          -3.7311857076340007,
          -3.5070458724273257,
          -3.215108581053093,
          -3.1300119496719043,
          -7,
          -7,
          -7,
          -7,
          -3.0791812460476247,
          -2.7197454925295768,
          -7,
          -2.9036325160842376,
          -7,
          -7,
          -3.2518467151626838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.828053896840553,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.151905874537198,
          -7,
          -7,
          -7,
          -7,
          -2.371806458507416,
          -7,
          -2.4782056360118823,
          -2.5895772957033327,
          -2.1363681983890817,
          -2.3544285972760934,
          -7,
          -7,
          -2.9867717342662448,
          -3.0382226383687185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.59090549565564,
          -7,
          -2.5493098589194982,
          -7,
          -7,
          -7,
          -7,
          -3.0166155475571776,
          -7,
          -7,
          -7,
          -3.12057393120585,
          -3.0043213737826426,
          -7,
          -2.906335041805091,
          -2.910624404889201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.805160901599434,
          -7,
          -2.985089506926381,
          -4.850345984314136,
          -7,
          -7,
          -7,
          -1.6692453387684207,
          -7,
          -2.90687353472207,
          -2.406965750758948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2685354252766956,
          -7,
          -7,
          -7,
          -7,
          -2.9444826721501687,
          -2.9508514588885464,
          -7,
          -7,
          -7,
          -7,
          -2.8805277781988052,
          -2.3293978793610424,
          -7,
          -7,
          -7,
          -7,
          -2.231542403656085,
          -2.153895059060278,
          -7,
          -4.204730280256104,
          -7,
          -7,
          -2.624797578960761,
          -3.1981069988734014,
          -7,
          -2.4974825373673704,
          -2.833784374656479,
          -2.9962927185413215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.621176281775035,
          -7,
          -2.3364597338485296,
          -2.611590557133038,
          -3.1556396337597765,
          -2.7466341989375787,
          -7,
          -4.13640344813399,
          -7,
          -7,
          -3.020637463567606,
          -7,
          -7,
          -3.053462604925455,
          -2.9444826721501687,
          -2.49876988168213,
          -2.288174674978394,
          -7,
          -7,
          -7,
          -7,
          -3.821313521414233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.113943352306837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.696356388733332,
          -7,
          -7,
          -2.7589118923979736,
          -7,
          -3.980866554582079,
          -3.488973524726508,
          -4.053769689599309,
          -7,
          -2.9427519204298136,
          -3.774164034126966,
          -2.9138138523837167,
          -7,
          -3.0711452904510828,
          -7,
          -2.5774917998372255,
          -3.2184041992497217,
          -3.2143138974243994,
          -7,
          -7,
          -7,
          -2.500716623555479,
          -7,
          -7,
          -7,
          -3.239549720840473,
          -7,
          -2.3233994435087757,
          -7,
          -7,
          -3.925291459442737,
          -4.14997308296338,
          -7,
          -7,
          -4.4380516115621225,
          -7,
          -3.7481104674949837,
          -7,
          -3.1812638243618423,
          -7,
          -3.7543865641765075,
          -4.581779045728458,
          -4.360867837306531,
          -4.204560839154543,
          -3.4495469620768637,
          -7,
          -4.3989290729854345,
          -3.481461738950127,
          -7,
          -4.6148761332650095,
          -7,
          -5.103564280050957,
          -7,
          -3.642916527809786,
          -3.792951708250132,
          -7,
          -4.63136258488696,
          -4.158196584044788,
          -7,
          -3.4303551661442375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.360612344908592,
          -4.098297536494698,
          -3.3860974812287905,
          -7,
          -3.976281183510049,
          -3.315970345456918,
          -2.7374095188550136,
          -2.809896246602439,
          -7,
          -7,
          -3.6472117617451385,
          -3.3462225361009863,
          -7,
          -4.091279964228837,
          -3.6809093578706777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.202215775801132,
          -7,
          -7,
          -3.410889657525366,
          -3.86854045204139,
          -5.174213950544837,
          -7,
          -7,
          -7,
          -4.0156426254063415,
          -7,
          -7,
          -3.18620267890855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7014816356209272,
          -7,
          -3.0599418880619544,
          -7,
          -7,
          -3.5319682869631666,
          -4.269384504815968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7348798027926278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.432927116124977,
          -7,
          -2.339699822486733,
          -7,
          -3.1718726561396826,
          -3.0609495323235096,
          -2.3242824552976926,
          -7,
          -7,
          -2.9756287228095775,
          -7,
          -3.1150857941900143,
          -7,
          -3.146438135285775,
          -3.111262513659065,
          -2.8339965879428433,
          -3.0499928569201424,
          -7,
          -3.230704313612569,
          -7,
          -2.7122888420452504,
          -7,
          -3.2286569581089353,
          -7,
          -3.009450895798694,
          -7,
          -3.390287301803129,
          -7,
          -7,
          -3.398330697921948,
          -2.7315396318493663,
          -3.8429834701222174,
          -7,
          -2.7646243978509815,
          -7,
          -2.6906390117159673,
          -7,
          -7,
          -7,
          -2.727270077199637,
          -7,
          -3.0972573096934197,
          -7,
          -2.926342446625655,
          -3.14713505089171,
          -2.8341026557127935,
          -2.922552466761376,
          -7,
          -2.711244671343486,
          -7,
          -2.924795995797912,
          -3.8667204327514666,
          -7,
          -7,
          -2.9745116927373285,
          -7,
          -2.890855530574932,
          -7,
          -3.130655349022031,
          -2.9409313235178423,
          -7,
          -3.087064026120594,
          -2.782114147479071,
          -3.0141003215196207,
          -2.4369573306694496,
          -7,
          -7,
          -7,
          -3.4572004127937683,
          -3.146438135285775,
          -7,
          -2.753199914199416,
          -3.374198257929083,
          -7,
          -2.942008053022313,
          -2.2586372827240764,
          -3.1436392352745433,
          -3.117602691690084,
          -3.466274321789292,
          -7,
          -3.5217916496391233,
          -7,
          -3.171433900943008,
          -3.415140352195873,
          -2.6691308473733324,
          -3.345177616542704,
          -7,
          -7,
          -3.9824973691977124,
          -7,
          -7,
          -7,
          -3.1488698939816735,
          -2.6782907017180433,
          -3.6840819838753727,
          -3.994185128202317,
          -3.3261309567107946,
          -7,
          -7,
          -2.952792443044092,
          -7,
          -3.0565237240791006,
          -7,
          -3.2397998184470986,
          -7,
          -7,
          -7,
          -3.127016398361401,
          -7,
          -7,
          -7,
          -7,
          -3.0874264570362855,
          -7,
          -7,
          -3.1971426649725627,
          -7,
          -3.1222158782728267,
          -7,
          -3.1684974835230326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7188337183038622,
          -3.2829618035343353,
          -7,
          -2.9740509027928774,
          -7,
          -2.6728672017718136,
          -7,
          -7,
          -4.291945750170066,
          -7,
          -7,
          -7,
          -3.540954808926133,
          -7,
          -7,
          -7,
          -3.041787318971752,
          -7,
          -3.319522449065454,
          -7,
          -7,
          -7,
          -3.731335458395129,
          -4.399962001930988,
          -4.876927608974731,
          -7,
          -7,
          -7,
          -4.575932206504239,
          -4.57610513115158,
          -3.9231576348444315,
          -2.1417289398469945,
          -3.48333049525732,
          -7,
          -4.576076315158132,
          -2.695756933177721,
          -2.594892570014196,
          -3.6468821035034504,
          -3.464105320046255,
          -4.2758351870121984,
          -3.880636409709007,
          -4.877037144635965,
          -2.0762486368402864,
          -2.9055866375456456,
          -4.399938946535649,
          -3.218124327999076,
          -7,
          -3.39963334694337,
          -2.83887218782187,
          -3.575782282761056,
          -2.6134201009969362,
          -2.7523084438585426,
          -2.55976210781365,
          -2.287230877686913,
          -2.7238197536852606,
          -4.576059024644269,
          -4.178648945509116,
          -3.386320573894046,
          -3.7026143259031574,
          -4.1779979630965665,
          -3.9237101943965627,
          -7,
          -3.212516276244047,
          -7,
          -1.9205173958532884,
          -4.0988224822367725,
          -3.401113213955382,
          -3.535806039376913,
          -7,
          -4.275351671786708,
          -4.576398945124239,
          -3.7632494007603223,
          -4.032319382401304,
          -3.5549965066930604,
          -3.4860392250921777,
          -2.196453638006586,
          -3.763341586861342,
          -3.5349774634615505,
          -3.0071102312643196,
          -4.178752551784779,
          -3.8771927530671593,
          -3.59841033994433,
          -4.178660458538169,
          -3.703274177996601,
          -3.928128319128786,
          -4.099404372345543,
          -4.876921843174579,
          -7,
          -2.3455779218656394,
          -4.877008322140324,
          -7,
          -4.576335590293832,
          -4.274890680081923,
          -3.2638445159718152,
          -3.1081061568911568,
          -4.877210039451698,
          -3.800814417138437,
          -2.14197367709603,
          -7,
          -3.599066782849663,
          -4.876956436827322,
          -4.576283747648257,
          -4.876956436827322,
          -7,
          -3.9741085282798463,
          -4.8770256158672485,
          -3.0397646092150197,
          -3.8780792331116247,
          -2.748727687356933,
          -4.032900678732676,
          -2.300728780389829,
          -4.180974129232144,
          -1.8243995969787599,
          -3.5364149547842194,
          -4.032232984867467,
          -4.575961032060751,
          -7,
          -7,
          -4.576272226219881,
          -4.178407101369325,
          -4.576168519607808,
          -4.876985262766487,
          -2.90946030951289,
          -4.877348305763564,
          -7,
          -4.876939140345395,
          -3.1389798130022526,
          -4.877008322140324,
          -3.6216896970649146,
          -4.032745358864123,
          -3.59832389196373,
          -2.5789442910971676,
          -4.57624918244613,
          -4.399996582729268,
          -3.3104636635935303,
          -3.4632151307661956,
          -2.235624770342187,
          -4.400509208154525,
          -4.577037736309381,
          -4.1783783014275455,
          -3.6235134632921726,
          -3.7354163846789343,
          -4.2751846188287805,
          -2.6887978851749255,
          -2.324022596211637,
          -3.8772273251482074,
          -3.732715340349993,
          -3.5163456465629728,
          -2.170604608513454,
          -4.1784416587786515,
          -1.967557300945524,
          -3.191696193356389,
          -3.556767567185354,
          -4.877584408926619,
          -4.576686805200995,
          -3.4154684148357113,
          -7,
          -7,
          -3.0502198796550055,
          -7,
          -7,
          -7,
          -4.876996792606452,
          -7,
          -2.7249800027309923,
          -3.009081707149539,
          -3.0329990831515152,
          -3.8800872563019415,
          -4.032549691831266,
          -3.3302481843706953,
          -4.032163854463103,
          -4.5760878417849495,
          -3.310722009900572,
          -3.1996824306402645,
          -2.3462839237339175,
          -7,
          -4.4001982491921465,
          -3.223628600158525,
          -2.149791189004268,
          -7,
          -4.576001384625881,
          -4.17856834575881,
          -3.556250795965523,
          -3.478843432329472,
          -7,
          -3.389309014917708,
          -3.536604348652848,
          -3.463554192128399,
          -3.8366865479533994,
          -3.310928576352893,
          -3.7015737410745344,
          -4.099283449476349,
          -1.7019773666297375,
          -3.9228810912082936,
          -4.57603596955491,
          -4.876933374698336,
          -4.576398945124239,
          -4.576168519607808,
          -3.555036838379667,
          -4.178113252314632,
          -2.839030505034086,
          -7,
          -2.965349706108749,
          -4.8770256158672485,
          -3.3757321813607444,
          -1.5208106485077677,
          -4.178418620811301,
          -3.8378810064031437,
          -3.3473070513532233,
          -3.517631867509287,
          -3.3235900970681924,
          -3.2795129520575665,
          -3.5773998759334207,
          -3.923681432601159,
          -3.799409479615127,
          -3.836312604966299,
          -3.9744253318550826,
          -3.057058345431303,
          -7,
          -4.031973689091717,
          -7,
          -2.4295006001874326,
          -7,
          -2.8534559683972103,
          -4.575949502067735,
          -3.375108963026137,
          -4.178412861128507,
          -3.923105796324239,
          -4.177980667073867,
          -4.576116657013627,
          -3.8369050117306402,
          -4.877083256650651,
          -7,
          -4.8770025574116485,
          -3.6320634252958612,
          -4.276151482986834,
          -7,
          -4.399927418378985,
          -3.9739471576440217,
          -7,
          -4.399864008046825,
          -3.8360420147017673,
          -4.576162757403178,
          -3.6218856731304694,
          -3.3609088282656576,
          -2.8000981801747757,
          -3.1948749479303777,
          -1.9898918994693524,
          -3.6215513077550128,
          -3.6729171619800405,
          -3.9228349834772342,
          -3.464443687404161,
          -4.876967967432585,
          -4.399933182495568,
          -3.3464852909784732,
          -4.400157923390449,
          -3.9232094671777817,
          -7,
          -7,
          -4.576064788225377,
          -4.399967765588587,
          -7,
          -4.876962202168221,
          -4.179028714410914,
          -2.701665621471304,
          -7,
          -4.2748503200166645,
          -7,
          -4.275150048123735,
          -4.400353756504531,
          -3.836065050225192,
          -7,
          -3.2442023004929483,
          -3.4838724542226736,
          -3.798034555379355,
          -3.0695111297549458,
          -2.752913044000912,
          -7,
          -4.3998870674206625,
          -4.40012335543708,
          -3.682686478249768,
          -3.5569167422407153,
          -2.6178845514336007,
          -3.73242248205319,
          -2.503868588928999,
          -4.87727917811011,
          -4.877060201255311,
          -4.275201903149397,
          -2.4600107006492493,
          -3.3892232622307072,
          -2.9311148982994553,
          -1.7653912419080031,
          -3.158948212402123,
          -4.576064788225377,
          -4.400025397957946,
          -7,
          -3.9234685360935613,
          -3.1804871588298704,
          -3.322173335214124,
          -7,
          -3.975081244262648,
          -3.974971994298069,
          -7,
          -3.877152415493926,
          -4.099726668821858,
          -3.0843686801856824,
          -2.3369330363913186,
          -2.8419962702029213,
          -3.648233694151396,
          -3.836347136272441,
          -2.1753078349067776,
          -3.8778318914928938,
          -4.877083256650651,
          -2.8457234051996587,
          -4.03195063308439,
          -4.576082078509781,
          -2.328350640239603,
          -3.974327435423617,
          -3.083297812242457,
          -3.1382108046537596,
          -3.2193851792311725,
          -3.836950990105,
          -3.7351310513165665,
          -4.0328374069729644,
          -1.9785670656068557,
          -2.536862479985503,
          -4.877169703484078,
          -7,
          -7,
          -3.405306509594342,
          -2.1570754865616193,
          -7,
          -4.5763528698005445,
          -2.899895344556287,
          -3.8769333746983357,
          -4.575937971768604,
          -7,
          -3.5992048550135713,
          -4.03250939649661,
          -3.9228349834772342,
          -3.0859577327195216,
          -4.03235393660285,
          -2.4359702501023976,
          -3.2460675192399124,
          -2.100510739194386,
          -4.401136207098224,
          -2.588025756201648,
          -2.218837876764699,
          -1.935912236167164,
          -7,
          -3.4987354489364773,
          -3.974482907684665,
          -2.7525300290346935,
          -2.6719466265655902,
          -2.419163774190302,
          -4.57610513115158,
          -3.9738203243526837,
          -4.876927608974731,
          -2.891882167768502,
          -4.576266465391071,
          -3.836554266470963,
          -4.275317114377382,
          -3.0303431158216347,
          -4.032307863723146,
          -2.364528392331072,
          -7,
          -7,
          -2.837737818927626,
          -3.0832902249210807,
          -3.178805273804607,
          -4.277196495795956,
          -2.811203458094404,
          -3.6570558528571038,
          -3.488610368239004,
          -2.8658874442230333,
          -2.3525148327209098,
          -4.877135126815562,
          -3.4566038682343416,
          -2.9611431678226436,
          -2.924456409691413,
          -2.4965860992984648,
          -2.8429799822823734,
          -3.1949488814069302,
          -2.9144218415753604,
          -2.86589928955951,
          -3.3271187286686343,
          -2.9870500630767345,
          -3.597460114481666,
          -2.5035434751067442,
          -3.2728854447575695,
          -2.6145382207807,
          -3.182884965971133,
          -3.1247474752869913,
          -2.8560353749424916,
          -2.9093749020813826,
          -4.407317240973132,
          -2.53712497340571,
          -3.0814136390692934,
          -2.8915643707545753,
          -2.8640258120883804,
          -3.1415607147757774,
          -3.65493554585486,
          -3.072909432901749,
          -3.254729297425354,
          -3.033892647546583,
          -2.893460309733855,
          -2.6404452028433893,
          -3.450813427021517,
          -2.3350545700813736,
          -2.308150269457855,
          -2.630000273287136,
          -3.1632818171729102,
          -2.679417801318545,
          -3.148408403505286,
          -1.8568379988483543,
          -2.8255065858864694,
          -3.2125106115949857,
          -2.8373027824636576,
          -1.4763353612855514,
          -2.365083934123616,
          -3.98045221370234,
          -2.7397781891936,
          -3.2021987362922757,
          -4.179114979230523,
          -2.9479514383577072,
          -2.685221486931221,
          -3.3567005768760696,
          -4.180905413562809,
          -2.101876182215234,
          -1.9092655725827472,
          -2.2665525867583787,
          -3.974598036449844,
          -2.821005006647399,
          -4.099778444168306,
          -2.3105572539897095,
          -3.788005112766247,
          -2.1256628615011692,
          -3.016824493667488,
          -2.7835613852761036,
          -4.576571684065291,
          -3.2673463937576654,
          -2.73877544549828,
          -2.6596704390534436,
          -3.3527044930956182,
          -2.514300718383189,
          -2.8488711984461923,
          -2.3823499028148887,
          -2.8524072395241404,
          -3.764227878947755,
          -1.8985153536370132,
          -2.285557309007774,
          -3.173626112391373,
          -2.239349687763895,
          -4.183799217793253,
          -2.505660746145801,
          -2.763334385526816,
          -2.9812024817976854,
          -4.100060223931153,
          -4.576646516274588,
          -7,
          -4.578312506832515,
          -3.4766167808859505,
          -2.8137092617421473,
          -3.701717616751476,
          -2.7983994992871044,
          -7,
          -3.110572876853564,
          -2.586299508635064,
          -3.84069905030844,
          -3.702125963963316,
          -4.877475011224193,
          -2.9947247797882426,
          -3.9244056496686226,
          -2.53137864938941,
          -3.181860730809662,
          -4.181471992946307,
          -3.845706753536257,
          -3.375033901249075,
          -3.7090437070077527,
          -3.399601156258678,
          -4.103991760529103,
          -3.97683696867815,
          -3.5705596175371634,
          -4.1821863167395446,
          -4.103946182653774,
          -3.1466160554402265,
          -3.5770664885839754,
          -7,
          -3.0492764487705313,
          -4.878860596838407,
          -7,
          -2.8912835950189386,
          -2.4355155492092426,
          -2.6257078337736153,
          -7,
          -3.610110785065819,
          -3.3873381488811636,
          -3.804412059137714,
          -3.3864299194080996,
          -7,
          -4.178620161601131,
          -3.157736514148242,
          -4.276162980319142,
          -3.557180541881304,
          -3.254207397942776,
          -4.032123523311559,
          -2.973633058847854,
          -4.035126569752172,
          -3.295313299732073,
          -7,
          -4.036155338400719,
          -3.8363413812454157,
          -3.580856577457996,
          -3.0019319261726443,
          -4.87868261552967,
          -4.032457582714929,
          -3.9235260859825862,
          -3.5541531359965925,
          -3.0021287152533693,
          -4.403583750366688,
          -4.579160279808659,
          -3.4544909672215263,
          -3.879038505237237,
          -2.088702509314734,
          -3.976241047772464,
          -3.5281394817829104,
          -4.276668561845278,
          -4.034456560924718,
          -3.1150173197373445,
          -4.032549691831266,
          -3.385719990896485,
          -4.03532107949519,
          -4.276191722318338,
          -3.536300130411311,
          -3.7097277645597693,
          -4.399881302691986,
          -3.7311914682335705,
          -2.475472322889589,
          -3.3118225640429104,
          -3.7336958383326047,
          -2.990544591752271,
          -3.62588952582799,
          -3.0097024355116977,
          -3.1994351876202076,
          -3.029848940638572,
          -3.288489155230087,
          -3.73956104337977,
          -3.340659367297437,
          -4.2750175015885965,
          -4.877123600647619,
          -2.7887450123625794,
          -3.93568076981809,
          -4.032682064470379,
          -3.6557709903483695,
          -2.7338216935736406,
          -3.929072487398351,
          -3.0553628323897706,
          -2.7715551279285786,
          -2.943198706108668,
          -4.275576227946301,
          -4.035601249204444,
          -3.877492286377779,
          -4.877210039451698,
          -3.5170064590194547,
          -3.3497344992127642,
          -3.71594766128561,
          -4.275178857235708,
          -4.400572524359314,
          -4.876985262766487,
          -2.5384162586458476,
          -4.27534591240944,
          -4.578295305120826,
          -4.877659244111609,
          -4.400733651239303,
          -3.925134394436687,
          -4.400854457181176,
          -4.276479037739323,
          -3.5679389439305034,
          -3.984825366582568,
          -3.027992403440902,
          -4.178700751736516,
          -3.880802163328254,
          -7,
          -7,
          -7,
          -4.276415844653449,
          -4.100077469815475,
          -4.276484782109383,
          -3.003395081957638,
          -3.496004750814479,
          -3.3733523197972075,
          -4.576813403214398,
          -7,
          -3.5266370221906365,
          -4.877331024881724,
          -7,
          -2.768129153306671,
          -7,
          -7,
          -3.5618960672777495,
          -3.687902231588367,
          -3.8020264610272116,
          -4.876985262766487,
          -7,
          -3.732491407656525,
          -7,
          -3.4808247611406684,
          -7,
          -4.878556261949533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.39963334694337,
          -7,
          -2.1367205671564067,
          -7,
          -2.019116290447073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334011188761349,
          -7,
          -2.194514341882467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.722921711759407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.395326393069351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9965116721541785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.891323695765261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1024337056813365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.57978359661681,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.225309281725863,
          -1.6901960800285138,
          -1.5910646070264993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.470802365112064,
          -7,
          -7,
          -1.8864907251724818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0455185628844927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.244277120801843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.631748074396569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983220214648103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.167317334748176,
          -7,
          -3.88024177589548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.05307844348342,
          -7,
          -7,
          -2.948412965778601,
          -2.83887218782187,
          -2.1367205671564067,
          -7,
          -7,
          -1.8512583487190755,
          -7,
          -2.1931245983544616,
          -4.558264451377498,
          -1.9120448296448702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.189209489582306,
          -7,
          -3.7334179686894733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0982109460284746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.027268042466619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.761927838420529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7307822756663893,
          -7,
          -2.571708831808688,
          -7,
          -1.8957907482504441,
          -7,
          -3.916164322342523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8041394323353503,
          -7,
          -7,
          -7,
          -7,
          -2.8169038393756605,
          -7,
          -7,
          -7,
          -7,
          -4.058995093525416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5121505369220305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.256236533205923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.722633922533812,
          -7,
          -2.9694159123539814,
          -7,
          -7,
          -7,
          -3.596120392892336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9143431571194407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6864250009637516,
          -2.2013971243204513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2116544005531824,
          -7,
          -7,
          -7,
          -2.9344984512435675,
          -3.391213768955675,
          -7,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3157604906657347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.848281510243934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2041199826559246,
          -7,
          -2.2576785748691846,
          -7,
          -3.1705550585212086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6828667956623247,
          -7,
          -4.496583734489095,
          -7,
          -7,
          -7,
          -7,
          -2.906335041805091,
          -7,
          -2.437750562820388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.305351369446624,
          -3.1157768761589635,
          -2.88024177589548,
          -7,
          -7,
          -4.305351369446623,
          -7,
          -7,
          -3.7505083948513462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7015679850559273,
          -7,
          -2.574031267727719,
          -2.6473829701146196,
          -7,
          -4.620732756383168,
          -2.678973375919765,
          -7,
          -7,
          -7,
          -7,
          -1.7853298350107671,
          -7,
          -7,
          -2.3170181010481117,
          -7,
          -2.0718820073061255,
          -7,
          -7,
          -7,
          -7,
          -2.6794278966121188,
          -7,
          -3.6481159567559627,
          -3.382197210377454,
          -5.432978906143947,
          -7,
          -2.7327956982893293,
          -4.067008827268302,
          -2.0253058652647704,
          -7,
          -7,
          -7,
          -7,
          -3.4211101297934343,
          -2.6830470382388496,
          -7,
          -7,
          -7,
          -2.7788744720027396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.514737442325631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.483416112701048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703678200880355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.57063632650346,
          -4.302027726021775,
          -3.7289216463728594,
          -7,
          -7,
          -2.949390006644913,
          -4.24112293662285,
          -2.931457870689005,
          -7,
          -7,
          -3.660137883917105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.653540523484712,
          -4.201347045549598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5952757118020995,
          -7,
          -7,
          -7,
          -4.001430812246398,
          -4.2747580543520085,
          -7,
          -7,
          -7,
          -3.8535156967569284,
          -7,
          -7,
          -3.7009415623278796,
          -7,
          -7,
          -4.030427670038405,
          -7,
          -7,
          -3.1156105116742996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779949842979917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6576389846160815,
          -7,
          -7,
          -7,
          -7,
          -3.621280167550415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.575782282761056,
          -7,
          -7,
          -7,
          -1.8173449714419305,
          -7,
          -7,
          -4.557194300943595,
          -7,
          -7,
          -7,
          -2.019116290447073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.484299839346786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9867717342662448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7558748556724915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.99211148778695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426210241414335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.970430565175467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.824125833916549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.59955559098598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0572856444182146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.642958879409791,
          -7,
          -7,
          -7,
          -7,
          -3.406199423663313,
          -2.9429995933660407,
          -7,
          -7,
          -7,
          -2.709269960975831,
          -7,
          -7,
          -7,
          -2.989004615698537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721645766289746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.134559577422625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.997561115633588,
          -7,
          -7,
          -7,
          -7,
          -4.151890568735089,
          -7,
          -7,
          -4.001095211443513,
          -7,
          -7,
          -7,
          -7,
          -3.2412973871099933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.416640507338281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.155336037465062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.895422546039408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2600713879850747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080666163176663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.659021982916067,
          -7,
          -7,
          -7,
          -3.611723308007342,
          -7,
          -2.45484486000851,
          -7,
          -7,
          -7,
          -7,
          -3.124178055474675,
          -3.5917322389518356,
          -2.3222192947339195,
          -2.681241237375587,
          -2.6134201009969362,
          -2.019116290447073,
          -1.8512583487190755,
          -1.8173449714419305,
          -7,
          -2.1931245983544616,
          -7,
          -3.9570203296921784,
          -2.509202522331103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.508395033133053,
          -7,
          -4.337079711800931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1319392952104246,
          -3.165541076722373,
          -3.229681842317676,
          -2.429752280002408,
          -7,
          -7,
          -7,
          -2.392696953259666,
          -2.110589710299249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.81424759573192,
          -7,
          -7,
          -3.9183187216495976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3096301674258988,
          -7,
          -1.8309092995464433,
          -7,
          -4.042102768037303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.851869600729766,
          -7,
          -7,
          -2.5490032620257876,
          -2.084576277934331,
          -2.863322860120456,
          -2.3909351071033793,
          -7,
          -2.443262987458695,
          -2.655138434811382,
          -3.5845196793420233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.220631019448092,
          -4.099058789068055,
          -7,
          -7,
          -7,
          -4.037832711917421,
          -7,
          -2.992995098431342,
          -2.7570162347313003,
          -7,
          -7,
          -2.507855871695831,
          -2.60422605308447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4771212547196626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7749911461195644,
          -7,
          -7,
          -7,
          -7,
          -2.3138672203691537,
          -7,
          -7,
          -7,
          -2.708420900134713,
          -7,
          -2.5024271199844326,
          -7,
          -7,
          -3.4495352349815573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.929418925714293,
          -7,
          -7,
          -7,
          -7,
          -2.921779342902304,
          -7,
          -7,
          -2.7573960287930244,
          -7,
          -2.885926339801431,
          -2.727947709544797,
          -2.6830470382388496,
          -7,
          -7,
          -7,
          -2.4756711883244296,
          -3.1458177144918276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.029586671630457,
          -7,
          -2.6143698395482886,
          -7,
          -2.4345689040341987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5308397786165204,
          -2.067655263657066,
          -7,
          -4.672411914830631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.294466226161593,
          -7,
          -2.4065401804339555,
          -7,
          -2.490520309363349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6910814921229687,
          -4.497606840516214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.99211148778695,
          -2.2029119304669567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5556988947189017,
          -2.717670503002262,
          -7,
          -7,
          -7,
          -7,
          -2.380211241711606,
          -7,
          -7,
          -2.8262368226549173,
          -2.441433275830611,
          -2.716003343634799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3364597338485296,
          -2.1197506238845842,
          -7,
          -2.8135809885681917,
          -7,
          -3.0729847446279304,
          -7,
          -2.682145076373832,
          -7,
          -4.496043558539809,
          -2.1630761439921695,
          -7,
          -7,
          -7,
          -7,
          -2.2405492482826,
          -7,
          -7,
          -2.388278863459639,
          -2.305351369446624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.741939077729199,
          -7,
          -7,
          -2.9175055095525466,
          -5.132064277112742,
          -7,
          -2.5847080525750368,
          -3.9429624514287713,
          -2.1685816572769356,
          -7,
          -2.7634279935629373,
          -7,
          -7,
          -7,
          -2.166895074645,
          -7,
          -7,
          -7,
          -2.5269850685599957,
          -7,
          -7,
          -7,
          -3.056142262059052,
          -7,
          -2.139508685967779,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.256196408063205,
          -7,
          -7,
          -7,
          -4.656222816103602,
          -4.802589025376433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784987960564955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.38888237082715,
          -7,
          -7,
          -4.0943313492770965,
          -3.525260820213098,
          -3.4336898459916987,
          -2.5397032389478253,
          -7,
          -7,
          -3.764823478524604,
          -7,
          -7,
          -7,
          -3.6624745037503095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.575745755034518,
          -4.2808741725572155,
          -7,
          -2.5171958979499744,
          -3.2805783703680764,
          -7,
          -7,
          -7,
          -7,
          -3.302114376956201,
          -7,
          -7,
          -7,
          -7,
          -4.276461804173244,
          -7,
          -7,
          -7,
          -2.979912410334717,
          -7,
          -7,
          -3.525563058270067,
          -7,
          -3.0115704435972783,
          -7,
          -7,
          -3.2801228963023075,
          -3.3000517321200418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7645497190644672,
          -7,
          -7,
          -3.2114765203615074,
          -7,
          -2.6384892569546374,
          -7,
          -3.47928731647617,
          -7,
          -4.628174284448325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8135809885681917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5943925503754266,
          -7,
          -7,
          -3.4173055832445254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.00199317382353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -2.8211858826088454,
          -2.8998205024270964,
          -7,
          -3.7206553565517244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.998259338423699,
          -7,
          -7,
          -7,
          -7,
          -3.5487885153415606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5593080109070123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357668093043634,
          -7,
          -7,
          -7,
          -3.6063813651106047,
          -7,
          -2.0663259253620376,
          -2.443262987458695,
          -7,
          -7,
          -7,
          -3.5990092398233435,
          -7,
          -7,
          -2.9599948383284165,
          -2.7523084438585426,
          -7,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -7,
          -4.0813833174622856,
          -2.1319392952104246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.035009249707063,
          -7,
          -2.621176281775035,
          -2.603144372620182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3483048630481607,
          -3.1504494094608804,
          -3.7028611705729295,
          -7,
          -2.4099331233312946,
          -2.775974331129369,
          -7,
          -7,
          -2.3222192947339195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028245816572474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7795964912578244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.749736315569061,
          -7,
          -7,
          -7,
          -2.401400540781544,
          -7,
          -3.8195439355418688,
          -7,
          -7,
          -2.164352855784437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.482873583608754,
          -7,
          -2.530199698203082,
          -7,
          -7,
          -2.705007959333336,
          -7,
          -2.8033432919072556,
          -2.413299764081252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3743896719509805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0644579892269186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6755033847279566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.741939077729199,
          -7,
          -2.678518379040114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5740312677277188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7280289544205187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4941731532151254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.651601029618764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3207692283386865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5899496013257077,
          -3.5082603055123345,
          -4.848355410696216,
          -7,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1335389083702174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5390760987927767,
          -7,
          -7,
          -7,
          -2.875928984922927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.495224021995183,
          -7,
          -2.667452952889954,
          -2.187520720836463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.673941998634088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1197506238845842,
          -2.591621038213319,
          -7,
          -7,
          -4.6066607716609465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4819201376014313,
          -7,
          -3.0982975364946976,
          -2.4191293077419758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6897526961391565,
          -7,
          -7,
          -7,
          -7,
          -2.5118833609788744,
          -7,
          -7,
          -1.7273378880330803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.950413539369381,
          -7,
          -5.433017365093436,
          -7,
          -3.044147620878723,
          -3.942342951035721,
          -1.6573290799701759,
          -7,
          -7,
          -7,
          -2.9395192526186187,
          -7,
          -2.2130748253088512,
          -7,
          -1.8512583487190755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.519265314601474,
          -7,
          -7,
          -4.617608347205152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431902277007789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784631554943246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8253395531907173,
          -7,
          -7,
          -7,
          -7,
          -4.542476856009627,
          -3.7791634237644987,
          -7,
          -7,
          -3.837051550831765,
          -3.0960405542954277,
          -7,
          -3.7236198355154633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.654003174669913,
          -4.678613967933965,
          -7,
          -7,
          -7,
          -7,
          -4.610926193408706,
          -7,
          -7,
          -3.5979144712025284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.340344949528144,
          -7,
          -3.8542452970661185,
          -7,
          -7,
          -3.8261828227192676,
          -7,
          -7,
          -4.331741009037769,
          -7,
          -3.268577971882843,
          -3.5958267770732233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9878002857518724,
          -7,
          -7,
          -7,
          -3.3664229572259727,
          -3.510545010206612,
          -3.022840610876528,
          -7,
          -7,
          -3.7768464086952993,
          -7,
          -3.782441909184704,
          -2.9595183769729982,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.298853076409707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3395011289081085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4082399653118496,
          -2.931118710592187,
          -7,
          -2.780317312140151,
          -7,
          -7,
          -3.3952390010815514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9670436946040506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6875289612146345,
          -7,
          -7,
          -1.871183608328498,
          -2.9922220374838435,
          -2.8715729355458786,
          -7,
          -3.239049093140191,
          -7,
          -7,
          -7,
          -3.422589839851482,
          -3.6585837154070626,
          -7,
          -3.1947917577219247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.010956838955719,
          -7,
          -3.9550620696750323,
          -7,
          -3.4556821645007902,
          -7,
          -7,
          -2.0916669575956846,
          -7,
          -2.6910814921229687,
          -2.673941998634088,
          -7,
          -7,
          -7,
          -7,
          -3.5472515145799526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277334112215984,
          -7,
          -7,
          -7,
          -7,
          -2.954724790979063,
          -7,
          -7,
          -7,
          -7,
          -3.547528576459782,
          -7,
          -7,
          -7,
          -2.513217600067939,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.35837273025802,
          -7,
          -7,
          -7,
          -3.313023110323238,
          -3.640282629696681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2047709362855197,
          -3.5943925503754266,
          -7,
          -2.993876914941211,
          -2.55976210781365,
          -7,
          -2.1931245983544616,
          -7,
          -7,
          -7,
          -7,
          -3.714197990190072,
          -2.236789099409293,
          -7,
          -7,
          -2.5998830720736876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8603579736743696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9301846522986197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.730136003996678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5010592622177517,
          -7,
          -2.076068010623482,
          -7,
          -7,
          -7,
          -3.4053332230254467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.575187844927661,
          -7,
          -7,
          -7,
          -2.677606952720493,
          -4.062694773342393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.497620649781288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0678145111618402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6638892986226614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.432969290874406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -7,
          -2.796902832645105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788168371141168,
          -7,
          -7,
          -7,
          -2.5599066250361124,
          -7,
          -3.1599896745229517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.859438535455056,
          -7,
          -7,
          -3.09074056116527,
          -7,
          -7,
          -7,
          -7,
          -2.8992731873176036,
          -3.0394141191761372,
          -7,
          -2.597695185925512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4983105537896004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149619341533153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.603144372620182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.392696953259666,
          -3.1983821300082944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.49793814174857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4771212547196626,
          -2.830107278114626,
          -7,
          -7,
          -7,
          -3.6530409067467735,
          -7,
          -7,
          -3.758003009299799,
          -7,
          -7,
          -2.745855195173729,
          -7,
          -7,
          -7,
          -3.081707270097349,
          -7,
          -7,
          -7,
          -4.320021590369593,
          -2.54448146130858,
          -7,
          -7,
          -7,
          -7,
          -2.381415942849977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4578818967339924,
          -7,
          -7,
          -7,
          -4.433107089399942,
          -7,
          -2.770483809431108,
          -4.06822297934645,
          -2.0211892990699383,
          -7,
          -7,
          -7,
          -2.2723058444020863,
          -3.4369573306694496,
          -3.0269416279590295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.065206128054312,
          -7,
          -3.3802112417116064,
          -7,
          -7,
          -4.618382845341753,
          -7,
          -7,
          -7,
          -4.428863408299256,
          -7,
          -7,
          -7,
          -4.4324962773898475,
          -7,
          -7,
          -7,
          -7,
          -4.802753206957748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.608782683529647,
          -7,
          -7,
          -7,
          -4.785158931428092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.227363866089596,
          -7,
          -4.581312362231848,
          -4.237116270535057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9620376865650124,
          -2.591435640352701,
          -3.793511005792858,
          -3.6050031982042876,
          -7,
          -2.8567288903828825,
          -7,
          -2.6928469192772297,
          -3.94126290931895,
          -3.7844746437625165,
          -2.611988688083979,
          -3.5933229952532844,
          -2.9354127889420147,
          -2.556647042222806,
          -7,
          -7,
          -3.158060793936605,
          -7,
          -7,
          -3.7090437070077527,
          -7,
          -7,
          -3.4000004248702242,
          -4.025674449410344,
          -4.871505801505925,
          -7,
          -2.9845273133437926,
          -7,
          -3.708474015096181,
          -7,
          -4.465110092336941,
          -3.605951157564873,
          -4.058198187878253,
          -7,
          -7,
          -4.005652315355074,
          -4.277012939376528,
          -7,
          -3.6488477083728936,
          -7,
          -4.157577640520729,
          -7,
          -7,
          -3.760012985109646,
          -3.4494546633573377,
          -7,
          -4.156377499418026,
          -7,
          -2.807535028068853,
          -3.1263479050141765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073315020560628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.991137435120312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.628419585049459,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1641247417062335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8090207204836726,
          -7,
          -7,
          -7,
          -7,
          -4.604204445856331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.28244083582987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.279027805622721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.558408539791075,
          -4.55735077960453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5574350139981465,
          -4.558156353686574,
          -2.3413646240800943,
          -4.089398727914103,
          -7,
          -7,
          -3.397211955499955,
          -3.172484007140436,
          -7,
          -3.9599234024401224,
          -4.559068334034537,
          -3.96277171225233,
          -7,
          -3.2266891142671636,
          -2.1739392332058043,
          -7,
          -4.089092255842719,
          -2.287230877686913,
          -7,
          -4.558264451377498,
          -4.557194300943595,
          -3.9570203296921784,
          -4.0813833174622856,
          -3.714197990190072,
          -7,
          -3.5584445544261687,
          -3.7790671278701122,
          -2.955519386488213,
          -3.354792490450614,
          -2.614453783201774,
          -7,
          -7,
          -7,
          -3.8748875108461127,
          -7,
          -2.5049072879073857,
          -4.557194300943595,
          -3.518765111973402,
          -3.8611280030902804,
          -7,
          -4.2570062179123065,
          -3.516415170606379,
          -7,
          -7,
          -7,
          -3.6177107625232265,
          -2.825840962449408,
          -7,
          -7,
          -3.171094292723705,
          -7,
          -7,
          -7,
          -4.558540578854597,
          -4.261334253799131,
          -3.6140296350502608,
          -7,
          -7,
          -7,
          -2.896404763954549,
          -7,
          -7,
          -7,
          -7,
          -3.800625445307701,
          -3.043314635810413,
          -4.557567349330712,
          -4.26256973321755,
          -3.0468520107260044,
          -7,
          -7,
          -7,
          -7,
          -4.255983682892567,
          -7,
          -7,
          -7,
          -4.084945479775793,
          -4.559595448664063,
          -3.7193668057996536,
          -4.2583019756569245,
          -4.260393410079865,
          -7,
          -2.4952147551681585,
          -4.561459171241916,
          -7,
          -4.55713410182759,
          -4.256031856208043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5800806438630075,
          -7,
          -7,
          -7,
          -4.2622374497415825,
          -7,
          -7,
          -4.2579783984792305,
          -7,
          -4.26246295553778,
          -7,
          -7,
          -4.561459171241916,
          -3.8611399616898683,
          -2.950566907345739,
          -7,
          -4.082210716601243,
          -4.557952095720065,
          -4.084087496160286,
          -3.4526473239486646,
          -7,
          -3.177747325191253,
          -3.012235739791244,
          -4.557819877590791,
          -3.86221488945307,
          -3.714653024705956,
          -2.6644201679395536,
          -4.55808427360864,
          -3.9643892861748222,
          -4.267359490827859,
          -3.7834747875822465,
          -7,
          -7,
          -4.258553480224311,
          -7,
          -7,
          -2.754802988015006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.721050076134882,
          -3.2046060299125667,
          -3.330470142287151,
          -7,
          -4.257570587678587,
          -4.147078307006692,
          -7,
          -7,
          -3.959863863555982,
          -3.6302696332736275,
          -3.452553063228925,
          -7,
          -4.557843920244874,
          -7,
          -2.365983220970808,
          -7,
          -3.711975854351756,
          -7,
          -7,
          -4.256200420744306,
          -7,
          -3.5652573434202135,
          -2.7896165593379805,
          -3.3844848356953223,
          -3.236920956251943,
          -3.1639123887749165,
          -4.0816832818909905,
          -7,
          -2.224391022988587,
          -7,
          -7,
          -7,
          -4.256994202073168,
          -7,
          -7,
          -7,
          -3.620471511314936,
          -7,
          -3.1866133147403364,
          -7,
          -4.264876826403677,
          -2.3814459294110506,
          -7,
          -7,
          -4.561637954564607,
          -4.562566443285449,
          -3.9618480590183243,
          -4.5675439155731015,
          -4.560564148979884,
          -4.559248104088254,
          -4.259653596243472,
          -4.55884051842334,
          -7,
          -3.529756909124659,
          -7,
          -7,
          -7,
          -3.498556682717641,
          -7,
          -3.4335412578764823,
          -4.557110019844558,
          -4.2635887314599445,
          -7,
          -4.256994202073168,
          -7,
          -7,
          -3.4458436158937196,
          -4.557302638328947,
          -7,
          -7,
          -7,
          -4.5597271274175615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.55755532051209,
          -7,
          -4.261881149383667,
          -3.360226455806278,
          -2.6128730479675517,
          -2.808829255943203,
          -7,
          -4.557567349330712,
          -7,
          -4.562756657400079,
          -7,
          -7,
          -3.781659651821598,
          -7,
          -4.558264451377498,
          -7,
          -7,
          -4.55735077960453,
          -4.557362814089654,
          -7,
          -7,
          -4.082138831393448,
          -2.941893498711568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.860469772491684,
          -3.567473376960255,
          -7,
          -3.8051495651298395,
          -4.096028949745415,
          -7,
          -7,
          -7,
          -3.9755811433675645,
          -7,
          -3.496088332375765,
          -2.887473644846725,
          -3.1114951644986593,
          -4.557711669173163,
          -4.557254491716343,
          -4.557747741641468,
          -3.203739808633858,
          -3.866228247379647,
          -3.5662842540845943,
          -3.173500945013356,
          -3.6679896519391977,
          -7,
          -7,
          -7,
          -7,
          -4.262356151598692,
          -4.0838727351483755,
          -7,
          -4.559739096233808,
          -3.714269869449075,
          -4.5578078557646045,
          -7,
          -4.559080321020141,
          -7,
          -2.97245120664604,
          -3.719497016610582,
          -4.561017857447836,
          -7,
          -2.6230721544503495,
          -4.559080321020141,
          -7,
          -2.587249250978184,
          -4.557374848241307,
          -7,
          -3.657915936829955,
          -4.08099906042334,
          -4.269220981530011,
          -7,
          -1.983613128335068,
          -2.639126308050443,
          -2.5468154354551418,
          -7,
          -2.7713956218704094,
          -3.66381866823486,
          -7,
          -7,
          -4.557194300943595,
          -3.5274424120197287,
          -4.563184334797349,
          -3.8582122574519104,
          -7,
          -4.259617766814334,
          -7,
          -7,
          -7,
          -4.2585055858202585,
          -3.6552825351772134,
          -7,
          -4.561399560442028,
          -7,
          -2.934712049839496,
          -4.583855954817508,
          -2.5089605755382696,
          -4.08262981000055,
          -3.8694898721419673,
          -1.8600833612246932,
          -3.4207923920775887,
          -7,
          -3.7164922461934813,
          -4.558492569294311,
          -3.866700756042499,
          -2.39259484773975,
          -4.090011024007147,
          -7,
          -7,
          -7,
          -7,
          -3.7795002913500433,
          -2.9456006716552943,
          -7,
          -2.3364834179016465,
          -3.955988237755026,
          -3.3269613588176865,
          -7,
          -7,
          -3.6580057819539546,
          -3.547533311024088,
          -4.434856209740375,
          -7,
          -4.320077015119296,
          -3.4649364291217326,
          -4.310395894010226,
          -4.006187833539161,
          -3.840144713858491,
          -7,
          -3.8904955374150134,
          -3.865885356849177,
          -4.307389055653304,
          -3.766561552637531,
          -3.5783526415103615,
          -4.040103683227775,
          -3.6664315738532856,
          -3.429736134926033,
          -4.058407042640009,
          -3.521530341278711,
          -4.040226421767277,
          -3.260202745013895,
          -4.159296426688385,
          -4.082834719158263,
          -7,
          -3.8551469168353636,
          -4.59142636838178,
          -4.20452694299984,
          -7,
          -3.857684212927998,
          -4.419550989026631,
          -3.72285125039637,
          -3.2195354099174534,
          -3.5926464265465854,
          -4.624168607391142,
          -3.3448751004890465,
          -3.769977021138206,
          -4.463997445885867,
          -4.178624479308948,
          -3.954281111677642,
          -3.0113589537066106,
          -3.4015134379172833,
          -3.349821269512391,
          -3.6615813366225707,
          -7,
          -3.593904201112881,
          -7,
          -2.8575847767956573,
          -2.586951772374066,
          -3.573730052453567,
          -2.2597027012768227,
          -2.8956505175479332,
          -2.765359830990325,
          -3.064972473084506,
          -3.916000993326847,
          -4.571569089924529,
          -4.559487681797765,
          -7,
          -3.0272731407471967,
          -4.103746723189368,
          -4.086039331268039,
          -2.631399000232247,
          -2.7551719956158522,
          -2.7555775342988365,
          -4.2576785748691846,
          -3.196533112615811,
          -3.7139463190564657,
          -2.64759901722542,
          -3.0887587486171286,
          -3.077752331902897,
          -4.299757822843316,
          -2.738642308311227,
          -4.558408539791075,
          -3.907314601225792,
          -3.1056047919987337,
          -2.6722810323070783,
          -4.271713854077303,
          -4.304296603018355,
          -4.594734988590292,
          -3.5245691995124906,
          -3.983829181069782,
          -7,
          -2.977637880812752,
          -2.4370267586220122,
          -7,
          -2.846392345502033,
          -4.092018470752797,
          -4.577250458079471,
          -3.7553738764518165,
          -3.433317943937392,
          -7,
          -4.257510583190615,
          -7,
          -4.084862139048422,
          -4.6784091088214215,
          -3.6592314328752287,
          -4.258098269990316,
          -4.568647527350753,
          -7,
          -4.105442054801695,
          -3.26101530988617,
          -4.567931673283491,
          -3.5183703477185686,
          -7,
          -4.020143666491209,
          -7,
          -2.370548307718535,
          -4.265195306285716,
          -4.564381964057547,
          -2.3139482984020416,
          -4.015213009510909,
          -3.9721449594582214,
          -3.984347257585864,
          -7,
          -4.5633861472626736,
          -4.5899049414992605,
          -4.088691158069201,
          -4.266772463513072,
          -7,
          -7,
          -7,
          -3.8516455748718625,
          -7,
          -7,
          -2.3354209998400677,
          -3.520614521878236,
          -3.4964572283200215,
          -7,
          -2.3852968368328855,
          -3.716146494044897,
          -4.571044657029212,
          -7,
          -7,
          -4.55845655864088,
          -3.8070499529448028,
          -7,
          -4.562602114778459,
          -3.696913099635797,
          -7,
          -4.611659592651788,
          -4.563979170379509,
          -4.100198171834132,
          -7,
          -3.4518808627642996,
          -7,
          -7,
          -3.2809803088344367,
          -7,
          -7,
          -4.081755242535474,
          -7,
          -4.325197419924709,
          -7,
          -4.086620803576045,
          -3.8294324336175984,
          -3.9594587825328493,
          -2.575067860586362,
          -7,
          -3.8850217948622974,
          -7,
          -7,
          -4.043941605805343,
          -4.081455327822574,
          -2.912859475162355,
          -4.564381964057547,
          -7,
          -4.084051710032526,
          -4.575672690363307,
          -7,
          -4.55810830163055,
          -3.9014583213961123,
          -4.263221693667648,
          -3.0184389399350797,
          -3.768923379908386,
          -7,
          -4.586587304671755,
          -3.9637524214609017,
          -3.916022071490407,
          -7,
          -4.575384157099592,
          -4.573903855991725,
          -4.557362814089654,
          -7,
          -3.2587091005698268,
          -4.583878598498626,
          -7,
          -3.877475011224193,
          -3.973328014143002,
          -3.96827275520536,
          -4.175473156148423,
          -3.2628701517374172,
          -3.540058216787737,
          -4.558528576962073,
          -2.9512308693093825,
          -4.558372522169157,
          -7,
          -3.199015465037119,
          -3.964530684927539,
          -7,
          -7,
          -4.558624582816597,
          -7,
          -3.107523049907903,
          -3.5578318990842086,
          -3.114193834568074,
          -7,
          -4.558960436273091,
          -7,
          -7,
          -7,
          -4.584625178418518,
          -3.7345483893175566,
          -4.563481085394411,
          -3.655366571648936,
          -7,
          -7,
          -7,
          -7,
          -4.560277351854042,
          -7,
          -7,
          -3.306113939864634,
          -3.9902056151848067,
          -2.4549915753995015,
          -4.558912473106539,
          -7,
          -4.581038948772167,
          -7,
          -7,
          -2.998045230323877,
          -7,
          -7,
          -7,
          -4.111105619410548,
          -3.1183355985266434,
          -7,
          -7,
          -4.5608149411970516,
          -7,
          -3.180533896417463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658802904446173,
          -7,
          -7,
          -7,
          -7,
          -3.3325394468901104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.423300498738075,
          -3.285894712480839,
          -7,
          -7,
          -2.7238197536852606,
          -7,
          -1.9120448296448702,
          -7,
          -2.509202522331103,
          -2.1319392952104246,
          -2.236789099409293,
          -3.5584445544261687,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -7,
          -2.1958996524092336,
          -7,
          -7,
          -7,
          -7,
          -4.035189508908448,
          -2.2041199826559246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.402433346219312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02861191506623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.306067436355595,
          -7,
          -7,
          -3.741099049455883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.413299764081252,
          -7,
          -2.1046577910087962,
          -7,
          -3.9165986892551152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1818435879447726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3585693167727633,
          -7,
          -7,
          -7,
          -7,
          -4.060244426898225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.13443212489584,
          -7,
          -2.271841606536499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9845273133437926,
          -7,
          -7,
          -7,
          -3.472317546316842,
          -7,
          -7,
          -7,
          -7,
          -2.2174839442139063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6866931316334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.378397900948138,
          -7,
          -3.2203696324513946,
          -7,
          -3.8555191556678,
          -7,
          -7,
          -3.2387614348007605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3226327116922234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.89707700320942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985695859689842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.404833716619938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6532125137753435,
          -4.497040282255931,
          -7,
          -7,
          -2.3138672203691537,
          -3.311435968289161,
          -7,
          -7,
          -1.7549214096651689,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5010592622177517,
          -2.3710678622717363,
          -2.944811558558846,
          -2.8987251815894934,
          -7,
          -7,
          -4.305705970134437,
          -7,
          -7,
          -3.753046561626529,
          -7,
          -7,
          -1.904895787855206,
          -7,
          -7,
          -7,
          -3.0576661039098294,
          -7,
          -7,
          -7,
          -5.097982264210186,
          -2.99563519459755,
          -7,
          -7,
          -7,
          -7,
          -2.517855418930029,
          -7,
          -7,
          -2.1722136039924793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2648178230095364,
          -2.708420900134713,
          -7,
          -3.9508514588885464,
          -7,
          -5.433031786321499,
          -7,
          -2.0871501757189,
          -4.243534101832062,
          -1.5641195526675085,
          -7,
          -7,
          -7,
          -2.0339261204728705,
          -7,
          -2.394889257167419,
          -7,
          -7,
          -7,
          -2.8020892578817325,
          -7,
          -7,
          -7,
          -3.0402066275747113,
          -7,
          -2.8904210188009145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.802308404843316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.800335528704904,
          -7,
          -4.784695729544385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703961652091485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.388154507768882,
          -7,
          -7,
          -7,
          -4.001668823327807,
          -7,
          -7,
          -7,
          -7,
          -4.542588927185314,
          -3.7798128631705805,
          -3.1981069988734014,
          -7,
          -3.292951904190633,
          -3.6994040818153375,
          -7,
          -3.7243578042264267,
          -3.137986732723532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0522320902523346,
          -4.201497264541644,
          -4.871316018745736,
          -7,
          -3.2711443179490782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7983052820219765,
          -7,
          -7,
          -7,
          -3.854518581489548,
          -7,
          -7,
          -3.4903367141452675,
          -7,
          -7,
          -4.632882267597585,
          -7,
          -3.2706788361447066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4463818122224423,
          -7,
          -7,
          -3.9882467233753784,
          -7,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -4.627754908466091,
          -2.661812685537261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8282731120520697,
          -7,
          -7,
          -7,
          -4.3395905522680405,
          -7,
          -7,
          -3.05595140532915,
          -2.7075701760979367,
          -7,
          -7,
          -7,
          -7,
          -3.4104397862103464,
          -7,
          -2.786751422145561,
          -7,
          -7,
          -7,
          -7,
          -3.2730012720637376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.758742522719065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4456042032735974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1183749671059116,
          -2.5746099413401873,
          -2.525044807036845,
          -3.7172543127625497,
          -7,
          -3.4291060083326967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6989700043360187,
          -2.9800033715837464,
          -7,
          -2.305351369446624,
          -7,
          -7,
          -4.149773177559665,
          -2.0588054866759067,
          -7,
          -7,
          -2.4871383754771865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.909020854211156,
          -4.576059024644269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7790671278701122,
          -7,
          -7,
          -7,
          -2.3483048630481607,
          -2.56702636615906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0394141191761372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.663700925389648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.51728829120251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.997386384397313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.381656482585787,
          -7,
          -7,
          -7,
          -7,
          -3.7694511794020378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6424645202421213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.22169943522332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.190611797813605,
          -7,
          -7,
          -7,
          -7,
          -3.628007884353261,
          -7,
          -7,
          -7,
          -2.69810054562339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.444044795918076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2813970218487563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.404149249209695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0136796972911926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426023015689876,
          -7,
          -7,
          -7,
          -4.732136323845126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9833104857941155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2641091563058082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.478627811914573,
          -2.6665179805548807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.749736315569061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.309885559660194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357639502542187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9585638832219674,
          -4.178648945509116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.955519386488213,
          -7,
          -7,
          -7,
          -7,
          -2.669316880566112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.336019211951666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0398105541483504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7774268223893115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.457503426573305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.259291184676737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.949918320775918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9156636035057732,
          -7,
          -7,
          -7,
          -7,
          -4.193337981247228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.575187844927661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.285827252753274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.310162065204453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.751279103983342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.649140064144219,
          -7,
          -4.955884893531976,
          -7,
          -7,
          -3.5027994256068076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.610894278373339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6044096711329505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.942008053022313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7518562395924007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9523080096621253,
          -7,
          -7,
          -4.330920830595236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.177922287911278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8195439355418688,
          -7,
          -7,
          -3.4271614029259654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.280692164285117,
          -2.9777236052888476,
          -7,
          -2.600428325732131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.149403879508583,
          -7,
          -2.739572344450092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6611498572447867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277265309456845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3582395081717715,
          -7,
          -7,
          -7,
          -3.6127838567197355,
          -3.6388884247050757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.426077292323316,
          -2.6368220975871743,
          -7,
          -7,
          -3.386320573894046,
          -7,
          -7,
          -2.019116290447073,
          -7,
          -7,
          -2.5998830720736876,
          -3.354792490450614,
          -2.5224442335063197,
          -2.3483048630481607,
          -7,
          -7,
          -2.2438644894340767,
          -1.7032913781186614,
          -7,
          -7,
          -7,
          -7,
          -4.337279516037941,
          -7,
          -2.6794278966121188,
          -7,
          -7,
          -7,
          -2.4502491083193614,
          -7,
          -7,
          -7,
          -7,
          -3.008344629252689,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4913616938342726,
          -2.3106933123433606,
          -2.216957207361097,
          -7,
          -2.7528164311882715,
          -7,
          -4.519407928955734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5848963441374497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.523226041965701,
          -7,
          -7,
          -7,
          -2.639486489268586,
          -4.7369459952260415,
          -7,
          -7,
          -3.062581984228163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4192947217534604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9616401028869763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6546577546495245,
          -7,
          -7,
          -7,
          -2.509202522331103,
          -2.5428254269591797,
          -7,
          -3.1598759699845607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.18700767354478,
          -7,
          -7,
          -7,
          -7,
          -2.3819516782648016,
          -7,
          -7,
          -7,
          -7,
          -2.1077750894177876,
          -7,
          -2.3891660843645326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4502491083193614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3138672203691537,
          -7,
          -7,
          -7,
          -7,
          -2.354108439147401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8394780473741985,
          -7,
          -7,
          -5.149576257678986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.987978915875482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.699837725867246,
          -4.497744913411731,
          -7,
          -7,
          -7,
          -3.316808752053022,
          -7,
          -7,
          -2.6866362692622934,
          -7,
          -7,
          -7,
          -7,
          -2.5378190950732744,
          -7,
          -7,
          -7,
          -7,
          -2.606381365110605,
          -7,
          -7,
          -7,
          -7,
          -2.195248291984317,
          -2.623766000133931,
          -7,
          -7,
          -4.130140705819276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.472390727626629,
          -7,
          -7,
          -7,
          -5.098158983460533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.852479993636856,
          -7,
          -7,
          -2.699837725867246,
          -7,
          -7,
          -7,
          -7,
          -2.509202522331103,
          -7,
          -2.749736315569061,
          -7,
          -7,
          -7,
          -4.95598583468028,
          -7,
          -2.588458460008786,
          -4.244165748963329,
          -3.022840610876528,
          -7,
          -7,
          -2.5037906830571814,
          -1.649334858712142,
          -2.7344797894255772,
          -3.0211892990699383,
          -7,
          -7,
          -7,
          -2.8356905714924254,
          -7,
          -2.591064607026499,
          -7,
          -3.0599418880619544,
          -7,
          -2.5303826746043154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092808336654493,
          -7,
          -7,
          -4.351119609737672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.403352197532708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.064832219738574,
          -7,
          -3.8266362136341487,
          -3.7356787259059048,
          -7,
          -7,
          -7,
          -4.242168589973666,
          -3.4823017672234426,
          -3.2119210843085093,
          -7,
          -4.140036410975282,
          -3.4026052419199146,
          -7,
          -7,
          -3.153814864344529,
          -7,
          -7,
          -4.185881978409979,
          -7,
          -7,
          -4.053212938645568,
          -4.3778387731760615,
          -7,
          -7,
          -2.9813655090785445,
          -7,
          -4.00944027202683,
          -7,
          -7,
          -3.604442066260723,
          -7,
          -7,
          -7,
          -7,
          -4.276691528845039,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.127925077465084,
          -7,
          -7,
          -4.633397750722679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5118833609788744,
          -7,
          -7,
          -7,
          -3.6893532632422525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.327226071047025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.43568513794163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6374897295125104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.340096937139528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.499687082618404,
          -7,
          -7,
          -2.821513528404773,
          -7,
          -7,
          -7,
          -7,
          -3.2846562827885157,
          -7,
          -2.6798819421128623,
          -2.5477747053878224,
          -7,
          -7,
          -7,
          -7,
          -2.246744709723841,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9050975707722384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.737987326333431,
          -7,
          -7,
          -7,
          -3.123960473064361,
          -7,
          -2.859138297294531,
          -7,
          -7,
          -7,
          -2.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.313297626086869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2608660716137683,
          -7,
          -7,
          -2.403120521175818,
          -7,
          -7,
          -3.6740953241367937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8674674878590514,
          -7,
          -7,
          -7,
          -7,
          -2.3201462861110542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.183516585741525,
          -7,
          -7,
          -7,
          -7,
          -3.6532125137753435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.829518186304599,
          -7,
          -3.0484418035504044,
          -3.7026143259031574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.614453783201774,
          -7,
          -2.56702636615906,
          -2.669316880566112,
          -2.2438644894340767,
          -7,
          -7,
          -7,
          -7,
          -3.249442961442582,
          -7,
          -3.339828924582621,
          -7,
          -2.4927603890268375,
          -2.7831886910752575,
          -7,
          -7,
          -2.3283796034387376,
          -7,
          -7,
          -2.632457292184724,
          -7,
          -3.2427898094786767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8981764834976764,
          -7,
          -7,
          -7,
          -7,
          -4.036549054479152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9903388547876015,
          -7,
          -2.852479993636856,
          -7,
          -3.7430391548049333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9474337218870508,
          -7,
          -7,
          -2.8530895298518657,
          -7,
          -4.067628716728246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8438554226231614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8674674878590514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.216517771441886,
          -2.8397921844453293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4002500911501117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3032320670786417,
          -7,
          -2.251638220448212,
          -7,
          -7,
          -7,
          -7,
          -3.021602716028242,
          -2.3932826505593647,
          -2.3443922736851106,
          -2.747411807886423,
          -2.597695185925512,
          -2.694605198933569,
          -7,
          -3.3870822809891834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.639486489268586,
          -7,
          -3.269045709657623,
          -7,
          -7,
          -7,
          -7,
          -3.1947732688446826,
          -7,
          -7,
          -7,
          -2.906335041805091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.361538971269279,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.993876914941211,
          -3.535167485114944,
          -4.848989206251168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6933311562440196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.741939077729199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5085297189712867,
          -4.499755794663781,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.056142262059052,
          -3.2062860444124324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9429995933660407,
          -2.8312296938670634,
          -7,
          -7,
          -2.740362689494244,
          -7,
          -7,
          -7,
          -7,
          -2.4970832990501948,
          -2.9951962915971793,
          -7,
          -7,
          -4.006744072853106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7913898563391086,
          -2.47928731647617,
          -2.4448251995097476,
          -7,
          -4.496583734489095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6232492903979003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6711728427150834,
          -7,
          -2.850033257689769,
          -7,
          -7,
          -7,
          -4.588230076620279,
          -7,
          -3.118264726089479,
          -4.245968930781295,
          -7,
          -7,
          -7,
          -7,
          -2.7299742856995555,
          -2.454692449239477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7291647896927698,
          -7,
          -2.330413773349191,
          -7,
          -3.1020905255118367,
          -7,
          -7,
          -4.142598010892065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.712397131406715,
          -4.099542528695332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3964260280181024,
          -7,
          -4.090134556033146,
          -4.352529814796726,
          -7,
          -7,
          -7,
          -5.102049325662146,
          -7,
          -4.786098069954851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.582813067170428,
          -7,
          -4.181614951728961,
          -3.8042757671290937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8145805160103183,
          -4.573312639954846,
          -7,
          -3.269746373130767,
          -7,
          -7,
          -7,
          -4.24398006574108,
          -2.8897217842562033,
          -2.7710973064704123,
          -7,
          -7,
          -3.716170347859854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357076839842412,
          -4.37850237345544,
          -5.172926780108456,
          -7,
          -2.836745965649491,
          -2.2380461031287955,
          -4.6131121016412875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9789561652175918,
          -7,
          -3.6615287401319825,
          -7,
          -4.161547673125727,
          -7,
          -7,
          -4.12949654301666,
          -7,
          -7,
          -3.7896512087934098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.629766267319319,
          -7,
          -7,
          -2.6306312440205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.471394403692833,
          -4.3415433318876095,
          -4.742725131304698,
          -7,
          -2.7902851640332416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1411360901207392,
          -7,
          -7,
          -3.613630434925241,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7415455167762097,
          -7,
          -7,
          -4.335136825371625,
          -7,
          -7,
          -2.699837725867246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7014384544643515,
          -7,
          -3.425044874551389,
          -7,
          -7,
          -7,
          -2.677606952720493,
          -3.723537761532057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.617105230502378,
          -7,
          -2.3339508043872472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.677789391068861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6832272060414346,
          -7,
          -7,
          -3.0034605321095067,
          -7,
          -7,
          -2.5409548089261325,
          -7,
          -7,
          -7,
          -7,
          -2.5428254269591797,
          -4.1557913523576175,
          -2.6314437690131722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.077912702949456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.679836558918098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6576103243042395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5728716022004803,
          -7,
          -7,
          -4.1779979630965665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1958996524092336,
          -7,
          -7,
          -1.7032913781186614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.33374946248197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0293837776852097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023499381548012,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6866362692622934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8920946026904806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.591064607026499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426185825244511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4387005329007363,
          -7,
          -2.6483600109809315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4771212547196626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.14903426716125,
          -7,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6901960800285138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9084850188786497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0413926851582254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.09754882443547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.167317334748176,
          -7,
          -7,
          -2.079181246047625,
          -7,
          -7,
          -7,
          -7,
          -2.9960736544852753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8773713458697743,
          -7,
          -7,
          -1.7403626894942439,
          -7,
          -7,
          -2.403977963669355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1627634871966417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.134463991534289,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3988077302032647,
          -7,
          -4.12602311790052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.430639336164655,
          -7,
          -7,
          -7,
          -7,
          -3.4559102403827433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.338346910071675,
          -7,
          -7,
          -3.3328422669943514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8937617620579434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.302468022284192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2806921642851177,
          -7,
          -2.4353665066126613,
          -3.7067177823367587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.574031267727719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145910834132374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659317087843722,
          -7,
          -7,
          -7,
          -3.1355566635968395,
          -7,
          -7,
          -7,
          -7,
          -2.9344984512435675,
          -7,
          -3.9035782936630543,
          -7,
          -7,
          -7,
          -3.9237101943965627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8195439355418688,
          -7,
          -7,
          -4.337339439388419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.456366033129043,
          -7,
          -3.40705081480425,
          -7,
          -7,
          -3.1000257301078626,
          -7,
          -7,
          -2.436162647040756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.729691133696481,
          -2.3222192947339195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.876217840591642,
          -7,
          -7,
          -2.5877109650189114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.795880017344075,
          -7,
          -2.921686475483602,
          -7,
          -2.7551122663950713,
          -7,
          -3.263728098236335,
          -2.4533183400470375,
          -7,
          -7,
          -7,
          -7,
          -2.1156105116742996,
          -7,
          -7,
          -7,
          -7,
          -2.429752280002408,
          -7,
          -7,
          -1.4913616938342726,
          -7,
          -7,
          -7,
          -7,
          -2.3915231836751634,
          -7,
          -7,
          -2.4533183400470375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -3.2223262109908117,
          -3.622248571670176,
          -7,
          -7,
          -7,
          -4.435923958119165,
          -7,
          -2.998695158311656,
          -2.155336037465062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.681241237375587,
          -7,
          -2.7309436934277356,
          -2.8830933585756897,
          -7,
          -7,
          -7,
          -7,
          -2.486430478854434,
          -3.4102709642521845,
          -7,
          -7,
          -7,
          -7,
          -3.231032454528749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.546542663478131,
          -7,
          -3.473138096777888,
          -2.3909351071033793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5332635167787148,
          -7,
          -7,
          -7,
          -7,
          -2.3752248996285106,
          -7,
          -2.795184589682424,
          -1.9130565819531333,
          -2.821513528404773,
          -2.4138583422700264,
          -7,
          -2.694605198933569,
          -7,
          -7,
          -2.5453071164658243,
          -2.494154594018443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.359835482339888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9258275746247424,
          -3.215373152783422,
          -4.371403463765366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.164352855784437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.988112840268352,
          -7,
          -7,
          -7,
          -7,
          -2.1658376246901283,
          -2.4885507165004443,
          -7,
          -7,
          -7,
          -2.428134794028789,
          -7,
          -2.7171154940041666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9508514588885464,
          -2.5189523997656127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9319661147281728,
          -1.6434526764861874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9535986331436197,
          -7,
          -2.7267272090265724,
          -7,
          -4.607337050667031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.31998348175068,
          -3.0187004986662433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6138418218760693,
          -7,
          -7,
          -7,
          -2.171726453653231,
          -7,
          -2.7944880466591697,
          -4.734135483006706,
          -7,
          -2.4638929889859074,
          -4.545257621396889,
          -7,
          -2.296665190261531,
          -2.292994040067439,
          -7,
          -2.6679196853173615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0610753236297916,
          -7,
          -2.9003671286564705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.961516011448949,
          -3.06595298031387,
          -4.270597325510137,
          -3.6047658847038875,
          -2.0117005400505548,
          -7,
          -7,
          -7,
          -3.6980135039391815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1547282074401557,
          -7,
          -3.4924810101288766,
          -7,
          -7,
          -7,
          -3.239934426758005,
          -3.4883050259234247,
          -7,
          -7,
          -7,
          -7,
          -4.310544628636955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2767604225577776,
          -7,
          -3.64777405026883,
          -3.540454613671412,
          -7,
          -2.7285161047597666,
          -2.639486489268586,
          -4.30407024797259,
          -4.563552275376031,
          -3.0170333392987803,
          -4.633428054213735,
          -7,
          -7,
          -3.3014640731432996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9906052114239197,
          -7,
          -3.0711452904510828,
          -7,
          -3.3780343224573315,
          -3.9906495883188544,
          -7,
          -7,
          -7,
          -3.781396305196791,
          -7,
          -4.6283071728057354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8317418336456384,
          -7,
          -7,
          -7,
          -3.862926062941731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1180993120779945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808278509582768,
          -7,
          -7,
          -7,
          -7,
          -4.236159230579664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.740362689494244,
          -7,
          -7,
          -2.462397997898956,
          -2.999130541287371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.270142914565645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1514311436611395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3521825181113627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1740598077250253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657524332018719,
          -7,
          -7,
          -7,
          -3.592731766393962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9912260756924949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2487903775753857,
          -1.3424226808222062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.069668096911595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1838390370564214,
          -7,
          -7,
          -7,
          -7,
          -3.8241537379985804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7371926427047373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.304275050477128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.540917314258837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.093421685162235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.678044676072082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.193829290866235,
          -7,
          -7,
          -7,
          -3.7280289544205187,
          -7,
          -7,
          -3.2702128548962426,
          -7,
          -7,
          -7,
          -3.3638938977741004,
          -7,
          -7,
          -3.3459615418131414,
          -3.212516276244047,
          -7,
          -3.189209489582306,
          -7,
          -2.508395033133053,
          -7,
          -7,
          -3.8748875108461127,
          -7,
          -7,
          -7,
          -7,
          -3.249442961442582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.406937392374276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3254472435942937,
          -7,
          -7,
          -3.398287305357401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6011179990900035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2805783703680764,
          -7,
          -7,
          -4.251126984977872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3176455432211585,
          -7,
          -2.9566485792052033,
          -2.9934362304976116,
          -4.234416037567035,
          -3.258397804095509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2938043599193367,
          -7,
          -7,
          -3.20682587603185,
          -7,
          -7,
          -7,
          -7,
          -3.258397804095509,
          -7,
          -3.50443687881101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.359835482339888,
          -3.839352328895421,
          -7,
          -7,
          -7,
          -4.445705371207266,
          -7,
          -3.3502480183341627,
          -3.0790002523038495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7812525942484565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.665580991017953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6423655808449733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.247236549506764,
          -7,
          -2.975891136401793,
          -7,
          -7,
          -3.416117232254335,
          -7,
          -7,
          -3.1583624920952498,
          -7,
          -7,
          -7,
          -7,
          -3.4709981696608736,
          -7,
          -7,
          -7,
          -7,
          -3.009541300362376,
          -7,
          -7,
          -2.561101383649056,
          -7,
          -3.0049658871068234,
          -7,
          -7,
          -7,
          -7,
          -3.2024883170600935,
          -7,
          -3.1227072543183483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2300655512060468,
          -7,
          -3.016824493667488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.153394080644413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.17435059747938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1792644643390253,
          -7,
          -3.147521743537597,
          -7,
          -7,
          -7,
          -3.505421327583281,
          -7,
          -7,
          -7,
          -2.284846834042906,
          -7,
          -7,
          -7,
          -3.1295287738587763,
          -7,
          -3.3498600821923312,
          -2.8296253533580495,
          -3.4220971631317103,
          -7,
          -7,
          -3.16345955176999,
          -7,
          -2.818005830532529,
          -2.948412965778601,
          -7,
          -7,
          -3.2174839442139063,
          -3.1784013415337555,
          -7,
          -7,
          -7,
          -3.5958267770732233,
          -7,
          -2.7713424628313694,
          -7,
          -3.9214159323948645,
          -3.2079035303860515,
          -7,
          -3.541454428747589,
          -7,
          -7,
          -3.252610340567373,
          -7,
          -7,
          -7,
          -3.085825533520743,
          -7,
          -3.3463529744506384,
          -7,
          -3.9262669702523056,
          -2.149411576421837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1818435879447726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.708633321015398,
          -7,
          -3.6714952268360177,
          -7,
          -3.382557321908786,
          -4.259319073229125,
          -3.060320028688285,
          -7,
          -7,
          -7,
          -3.3376588910261424,
          -7,
          -2.8830933585756897,
          -7,
          -7,
          -7,
          -3.285782273779395,
          -7,
          -7,
          -3.182699903336043,
          -2.5318437171325017,
          -7,
          -3.258876629372131,
          -7,
          -7,
          -2.897606730077943,
          -2.992812429876849,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.044280988044567,
          -7,
          -4.079940597152362,
          -2.706706555470474,
          -4.3670482644844935,
          -4.811098897643041,
          -3.9380023999433105,
          -3.40256227437282,
          -7,
          -4.664058764701992,
          -7,
          -3.1740390295759937,
          -7,
          -4.804773026242165,
          -7,
          -3.0076778354173825,
          -4.116474911908331,
          -4.191506904624152,
          -4.33693979412059,
          -7,
          -7,
          -4.112847883836081,
          -4.253725595250898,
          -4.2940692274708905,
          -3.9659773740003734,
          -7,
          -7,
          -3.966751664051378,
          -3.795880017344075,
          -4.372893600271661,
          -3.933419793174251,
          -3.7157109316222785,
          -7,
          -4.10872283832555,
          -4.329926440795451,
          -3.8252313231999002,
          -7,
          -4.0973267357157725,
          -7,
          -4.257390549337304,
          -3.864511081058392,
          -7,
          -7,
          -3.8764776465309354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2197940266919804,
          -7,
          -7,
          -7,
          -3.0353757656518012,
          -4.477129940522443,
          -7,
          -2.7207104386092404,
          -7,
          -4.624601767442247,
          -7,
          -7,
          -3.721645766289746,
          -4.1026394836913,
          -7,
          -3.762078087334639,
          -7,
          -7,
          -7,
          -3.7548832282521674,
          -3.673389578188305,
          -7,
          -7,
          -7,
          -4.3172691867066195,
          -4.1008872548535935,
          -7,
          -3.8005894413487176,
          -7,
          -7,
          -3.7200765727681406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.383994789441733,
          -7,
          -7,
          -4.042575512440191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6419695977020594,
          -7,
          -4.450233707532753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5877109650189114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7545012293869173,
          -7,
          -7,
          -7,
          -3.6960941599952233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.085754244209699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.093421685162235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.309502414966703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30629632863675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.625209525381881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4186878954494686,
          -7,
          -7,
          -2.92272545799326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334574371754929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8185557792978027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0526239959621972,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4806296561576167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7965743332104296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.386320573894046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9632095769583877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.197831693328903,
          -7,
          -7,
          -7,
          -7,
          -3.493476639981276,
          -7,
          -2.6866362692622934,
          -7,
          -2.720159303405957,
          -2.506505032404872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149160586760595,
          -7,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5046067706419537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3656751404559175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.200759326791928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.932980821923198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4085791254086675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097691040361552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.071513805095089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.616821971013603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6880636969463443,
          -7,
          -4.130237247885229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.090434416175122,
          -7,
          -7,
          -3.951813330302852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8809064413723564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.226084115975824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1222158782728267,
          -7,
          -7,
          -7,
          -4.064370622354286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.205835671581546,
          -7,
          -3.0170333392987803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325843928293292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.338755217322839,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3960248966085933,
          -7,
          -7,
          -7,
          -7,
          -3.388633969351789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6807886115066824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.35430056234536,
          -7,
          -4.302615890543056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9838517189914717,
          -7,
          -7,
          -3.7102020146553847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.009365898346244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335838869579954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334212409393176,
          -7,
          -2.611723308007342,
          -3.202741238033296,
          -4.334051440346892,
          -7,
          -2.540020759009994,
          -2.7094904451648456,
          -7,
          -4.04083959468534,
          -7,
          -3.443262987458695,
          -7,
          -2.5157994514673847,
          -3.100973313405724,
          -7,
          -3.5705234818079274,
          -1.9205173958532884,
          -4.334011188761349,
          -3.7334179686894733,
          -7,
          -4.337079711800931,
          -4.035009249707063,
          -3.8603579736743696,
          -2.5049072879073857,
          -4.035189508908448,
          -7,
          -4.336019211951666,
          -4.337279516037941,
          -3.339828924582621,
          -4.33374946248197,
          -4.337339439388419,
          -7,
          -3.406937392374276,
          -4.334574371754929,
          -7,
          -7,
          -3.6400240441088667,
          -7,
          -7,
          -7,
          -4.335237186909729,
          -7,
          -4.335397717145591,
          -4.335257256434532,
          -3.079085995585152,
          -2.4853251723647625,
          -7,
          -3.6368087344744513,
          -3.3540123456672206,
          -4.035309640156801,
          -3.8575335121635788,
          -4.334996280243225,
          -3.8588578876206907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.94270070784522,
          -7,
          -4.032538179260007,
          -7,
          -7,
          -3.0263103588818407,
          -3.865597435075882,
          -7,
          -3.1678684699514594,
          -2.0556719515266586,
          -4.334272757407155,
          -3.7350996531988936,
          -7,
          -4.334835601526356,
          -7,
          -7,
          -7,
          -7,
          -4.342007929017339,
          -3.7356388146361157,
          -4.346137730160444,
          -3.7352395000788343,
          -3.8636994819362567,
          -7,
          -1.960740761500965,
          -3.340563083333371,
          -4.335096674261542,
          -4.333709182897272,
          -7,
          -4.03259861685471,
          -7,
          -4.0341068297076434,
          -4.033363432619723,
          -7,
          -2.414230329001037,
          -3.7327354312288112,
          -7,
          -7,
          -3.042181594515766,
          -7,
          -7,
          -4.035809829650629,
          -7,
          -3.440968085459358,
          -3.55636281525692,
          -3.7320115734128025,
          -2.997664332875219,
          -4.0377650359678245,
          -2.9977833992178162,
          -4.335979142340354,
          -3.6383294870707776,
          -7,
          -3.3860230915330054,
          -3.747703052659987,
          -4.334674863340148,
          -2.3316758706381853,
          -2.112321759496482,
          -7,
          -7,
          -3.434947947911181,
          -3.040762816328596,
          -7,
          -2.9010884025090147,
          -3.397862793900405,
          -4.341394951524042,
          -3.858537197569639,
          -4.336239528754922,
          -7,
          -4.333507728917455,
          -7,
          -3.2807348293181673,
          -7,
          -7,
          -7,
          -4.333689041703905,
          -7,
          -2.699837725867246,
          -3.534588111892698,
          -3.058227126133445,
          -4.043676585602717,
          -3.557847927224487,
          -3.3990440809475486,
          -7,
          -3.555799554003604,
          -2.8492608615268398,
          -4.077803798076088,
          -3.203091193315651,
          -7,
          -4.334895863011881,
          -7,
          -2.788430262532993,
          -7,
          -4.333850145102545,
          -4.3357386470050505,
          -3.108525229488806,
          -4.333910543472979,
          -7,
          -3.142858551113391,
          -3.7393943184250933,
          -3.4946713037544734,
          -4.337858429041094,
          -3.6433934504731535,
          -7,
          -7,
          -2.1268753382290857,
          -7,
          -3.555618350489831,
          -7,
          -4.335237186909729,
          -4.033363432619723,
          -7,
          -4.334152052992287,
          -3.459675139563483,
          -7,
          -3.1129704155080913,
          -7,
          -2.884834412185107,
          -2.24256846111836,
          -7,
          -4.3419881690481885,
          -3.739038047296087,
          -7,
          -3.5667516576717624,
          -3.651859269246949,
          -3.7372522944432975,
          -3.8600383898071935,
          -4.339670024244455,
          -3.1318391234923233,
          -3.2939849689526044,
          -3.0343037076079074,
          -7,
          -3.7320115734128025,
          -7,
          -2.3892694755046238,
          -7,
          -3.3294903316193807,
          -7,
          -3.6470698522337863,
          -7,
          -4.034167049413581,
          -4.333689041703905,
          -7,
          -3.7364363439795194,
          -7,
          -7,
          -7,
          -7,
          -4.338037934903125,
          -4.333467426905371,
          -7,
          -4.033041569076784,
          -7,
          -7,
          -4.335618349377605,
          -7,
          -3.8577344348976292,
          -3.3888114134735234,
          -3.869094758435343,
          -3.3120715213029315,
          -2.266591201940714,
          -3.8565677869842427,
          -4.33443364445948,
          -7,
          -3.497738996902168,
          -4.333588321723421,
          -7,
          -4.338376799232071,
          -7,
          -2.2938185388802057,
          -7,
          -7,
          -7,
          -4.334091688202155,
          -7,
          -4.333568174923988,
          -4.036269495742816,
          -3.714245911017894,
          -7,
          -7,
          -4.333507728917455,
          -3.635423423947685,
          -4.03436772148161,
          -4.03462845662532,
          -7,
          -3.6385890832927172,
          -3.1745830891776,
          -4.334895863011881,
          -2.9133935997862364,
          -2.96140210810033,
          -7,
          -4.333809874855226,
          -7,
          -3.5892605847872807,
          -7,
          -3.038305485793075,
          -3.0836618478730786,
          -2.8350231169115405,
          -7,
          -7,
          -4.334735147131833,
          -3.3649260337899753,
          -3.232859333958687,
          -3.172622388412072,
          -3.181672122068266,
          -2.95820062484609,
          -7,
          -4.03322264667025,
          -4.0327396052094935,
          -4.035429738184548,
          -3.3023702901274774,
          -3.385665843515682,
          -7,
          -3.383496207794542,
          -4.33767884895367,
          -7,
          -4.033524274983268,
          -7,
          -4.33531745944485,
          -3.1017832395359197,
          -4.045283851395136,
          -4.340186237916345,
          -3.7344997988467563,
          -2.553353730509349,
          -3.734779833986647,
          -4.333991061569507,
          -2.758927990197405,
          -3.856910060300786,
          -7,
          -3.4951080400257655,
          -4.335437840434784,
          -3.8782727899035083,
          -4.0402462150577065,
          -3.273541391414393,
          -4.037705313135537,
          -3.445545826436101,
          -7,
          -2.4423754319047664,
          -3.270601207315846,
          -3.7321121813966434,
          -7,
          -7,
          -3.3117153409899256,
          -3.7416045736602705,
          -7,
          -4.335076597314406,
          -3.7374312005145827,
          -7,
          -7,
          -7,
          -3.2959667268431296,
          -7,
          -7,
          -4.039751111967191,
          -3.8583165857151207,
          -2.5501563844606956,
          -3.2979427962988312,
          -2.648525621044213,
          -7,
          -3.574301411369372,
          -2.4475611176714263,
          -3.23605254695602,
          -7,
          -3.864174748390403,
          -4.034909073367748,
          -3.7458746873072974,
          -2.949317708578839,
          -3.5050530267664497,
          -4.334212409393176,
          -7,
          -7,
          -3.564902672529205,
          -7,
          -3.3828372023616065,
          -3.857935264719429,
          -3.029287128195125,
          -7,
          -3.052584021782163,
          -7,
          -7,
          -3.7983536494378956,
          -4.042862284965543,
          -3.9022640425804287,
          -7,
          -3.3401375306780454,
          -7,
          -3.943890048248473,
          -3.109231587666042,
          -3.415146109816988,
          -7,
          -7,
          -2.871661594213514,
          -3.7098958959608153,
          -3.041331151474711,
          -3.5175540478934977,
          -3.0486683441400135,
          -3.1981829145283434,
          -3.8668319172660026,
          -3.892817824309576,
          -3.6158729303734223,
          -3.865932668193186,
          -2.798789303893418,
          -3.7601660533515986,
          -3.3588281256465544,
          -3.742685862397225,
          -3.5518767631329724,
          -3.404922618201421,
          -3.5487753641351265,
          -7,
          -3.39451206240183,
          -3.8812590869948047,
          -3.695007137399929,
          -3.410248449698567,
          -3.4146988443936896,
          -3.9634572601167077,
          -3.4728126868675537,
          -3.513150985376206,
          -4.038461196178564,
          -3.5819591348886286,
          -2.595725204619729,
          -3.1214632849497366,
          -2.601754985726854,
          -2.8242413391651398,
          -2.5870436333497824,
          -3.866444877666462,
          -2.6482797891073147,
          -3.8717091176588196,
          -2.1432653081007023,
          -3.0951534951918838,
          -3.281866292147957,
          -3.3434742418248278,
          -2.5264883913765117,
          -2.7671558660821804,
          -3.754233630120203,
          -3.3123238548327696,
          -3.3158177338478967,
          -7,
          -2.74350976472843,
          -2.6542716385214287,
          -3.258397804095509,
          -4.042752659005548,
          -2.54725846811543,
          -2.395734989139622,
          -2.5389528728350346,
          -3.859178341043755,
          -2.6489789179974625,
          -3.859938471600862,
          -2.633720878999598,
          -3.461148228743249,
          -2.0662955011492445,
          -3.3249166245928636,
          -3.0676950810079404,
          -4.335838869579954,
          -3.50985750359542,
          -3.1549493349815436,
          -3.1572084425277938,
          -3.7573770469760275,
          -3.0128372247051725,
          -3.0517311960598494,
          -3.0897955195268247,
          -2.848225351982192,
          -3.296465743882869,
          -2.605864781665245,
          -2.61491227452664,
          -3.395578760073066,
          -2.5295417018298836,
          -3.8764872659889766,
          -3.1358058893081124,
          -2.8715385971800256,
          -2.8267776004800336,
          -3.860916680183462,
          -7,
          -7,
          -7,
          -4.520902558987522,
          -3.3790404105101395,
          -4.337079711800931,
          -3.39824873054884,
          -7,
          -4.375517300649672,
          -3.130990657630152,
          -4.351622399736366,
          -4.037426497940624,
          -7,
          -7,
          -7,
          -3.1710934753828313,
          -4.047780924741197,
          -7,
          -7,
          -4.430171841456267,
          -7,
          -4.38172861853511,
          -7,
          -4.34411706783031,
          -4.086146190685901,
          -7,
          -7,
          -3.7405995128111567,
          -7,
          -7,
          -3.4490770892633167,
          -7,
          -7,
          -3.6266482684740105,
          -3.3662227753916363,
          -3.3648465072411535,
          -7,
          -7,
          -3.8636004025933444,
          -7,
          -4.337658891026142,
          -7,
          -7,
          -3.4253349238884816,
          -7,
          -3.4974825373673704,
          -3.9262566770031975,
          -7,
          -4.120343562438025,
          -7,
          -3.8898430655962555,
          -7,
          -7,
          -7,
          -7,
          -3.853647520853222,
          -7,
          -7,
          -7,
          -4.39929289804391,
          -3.966626619751244,
          -7,
          -7,
          -7,
          -4.341137638740964,
          -2.966485288615243,
          -4.34206720353101,
          -4.076822423342773,
          -7,
          -7,
          -3.5191422616644465,
          -4.336199479466631,
          -3.946091841038187,
          -7,
          -7,
          -4.039453778961736,
          -7,
          -7,
          -4.034267397038025,
          -3.362276794197056,
          -3.7434117630396684,
          -4.0429297333431595,
          -3.5799631549550854,
          -4.348733103798286,
          -3.0387285143512552,
          -3.7460695605412515,
          -3.6483762763872707,
          -4.4145221155206515,
          -4.363818737564178,
          -3.8842098704188714,
          -7,
          -7,
          -3.371056991184941,
          -7,
          -7,
          -7,
          -3.719289844693328,
          -7,
          -4.006180697638505,
          -3.2453087762064916,
          -3.734351707294765,
          -7,
          -7,
          -4.33577873881047,
          -7,
          -7,
          -3.747353535486769,
          -4.3846221884515435,
          -7,
          -7,
          -7,
          -3.1185463975292795,
          -4.335237186909729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4409090820652177,
          -4.0351294308208,
          -4.347193361847937,
          -7,
          -7,
          -7,
          -4.338954252377607,
          -4.338177499296536,
          -3.861992160051738,
          -3.335474616860434,
          -4.090011024007147,
          -3.384389260324799,
          -4.336679827345716,
          -7,
          -4.071918810363806,
          -7,
          -7,
          -3.24369573586642,
          -7,
          -7,
          -4.3588291816933245,
          -4.083538451230139,
          -7,
          -7,
          -7,
          -3.8626480890490678,
          -7,
          -4.3969835082752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6576389846160815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.893928126542607,
          -7,
          -7,
          -7,
          -4.0988224822367725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557194300943595,
          -2.2041199826559246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3242824552976926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4920616045125992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.467830005178976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426210241414335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.669307580798836,
          -7,
          -2.651278013998144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1436392352745433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.444044795918076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1007150865730817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9385197251764916,
          -7,
          -7,
          -7,
          -7,
          -2.7315887651867388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432836257800043,
          -7,
          -2.6954816764901977,
          -4.543074235033532,
          -7,
          -7,
          -2.6201360549737576,
          -7,
          -2.576916955965207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8670744611517724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.093999192869392,
          -7,
          -7,
          -7,
          -7,
          -4.6546577546495245,
          -4.500428598023598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.100952660908403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.579177447294851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.300095257323717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7709256146389993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.049876719873882,
          -7,
          -5.1719954282039575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603220178008266,
          -7,
          -7,
          -4.63164666295842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.389343311252078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.881935972915227,
          -7,
          -7,
          -7,
          -3.321391278311689,
          -7,
          -7,
          -2.851869600729766,
          -2.663700925389648,
          -7,
          -7,
          -3.4311492447760616,
          -7,
          -7,
          -7,
          -3.401113213955382,
          -2.194514341882467,
          -7,
          -2.484299839346786,
          -7,
          -2.621176281775035,
          -7,
          -3.518765111973402,
          -7,
          -7,
          -7,
          -2.6794278966121188,
          -2.4927603890268375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6400240441088667,
          -7,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -2.8937617620579434,
          -3.414722721158878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.561101383649056,
          -7,
          -2.56643749219507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.222117928758222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5171958979499744,
          -7,
          -3.7423584833454764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5440680443502757,
          -7,
          -7,
          -7,
          -3.2871669874200933,
          -7,
          -7,
          -7,
          -2.329058719264225,
          -3.0484418035504044,
          -7,
          -3.5352941200427703,
          -3.8015409061903185,
          -7,
          -7,
          -7,
          -4.135585799233926,
          -7,
          -7,
          -3.0965624383741357,
          -7,
          -7,
          -7,
          -2.7041505168397992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6893976628212823,
          -7,
          -3.144262773761991,
          -7,
          -7,
          -7,
          -1.9432471251378618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.778766065508379,
          -7,
          -7,
          -7,
          -2.7745169657285493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.127315412520904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.256717745977487,
          -7,
          -7,
          -7,
          -7,
          -3.3928634949578282,
          -7,
          -7,
          -7,
          -7,
          -2.638988159343682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.351603072419129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8948696567452528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.886490725172482,
          -7,
          -7,
          -2.7267272090265724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6989700043360187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0251009610468134,
          -7,
          -3.035829825252828,
          -2.8904210188009145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.842765208181785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8041394323353503,
          -7,
          -7,
          -2.833147111912785,
          -2.807873132003332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.906335041805091,
          -7,
          -7,
          -2.294466226161593,
          -1.8750612633917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.480533912223829,
          -2.935339292710299,
          -4.8311944620597,
          -7,
          -7,
          -3.4669293757018003,
          -3.0599418880619544,
          -7,
          -2.5327543789924976,
          -1.1449332770652945,
          -3.010299956639812,
          -2.5442231218316245,
          -7,
          -7,
          -7,
          -7,
          -2.188084373714938,
          -7,
          -7,
          -7,
          -3.0941215958405612,
          -7,
          -2.916629385628418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.734183542152668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9705793057148506,
          -3.4024763265233604,
          -7,
          -2.423245873936808,
          -7,
          -7,
          -4.067219688974141,
          -7,
          -7,
          -7,
          -3.6657372963937283,
          -7,
          -7,
          -3.736077637003946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8788854701365376,
          -4.37826613891235,
          -4.871739266495737,
          -7,
          -3.002166061756508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.880705760006643,
          -7,
          -7,
          -4.333296101617611,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5173278822943734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3205616801952367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.341028729729668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6127838567197355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9675983721901957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.15060295179301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.154210882206974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4743619760326307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.620864475265121,
          -3.043853283705882,
          -7,
          -7,
          -7,
          -7,
          -2.4608978427565478,
          -2.675400905264045,
          -7,
          -7,
          -3.020775488193558,
          -3.535806039376913,
          -7,
          -7,
          -7,
          -7,
          -2.603144372620182,
          -7,
          -3.8611280030902804,
          -7,
          -7,
          -7,
          -7,
          -2.7831886910752575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.712369058979705,
          -3.714497408649806,
          -7,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.916980047320382,
          -4.221674997070769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.315904776726982,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6101276130759956,
          -7,
          -7,
          -2.808885867359812,
          -7,
          -3.763951826033324,
          -7,
          -7,
          -7,
          -7,
          -3.041787318971752,
          -7,
          -7,
          -2.8220647947787074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.611723308007342,
          -2.386498965550653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.079253622430078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.473738309626689,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7745169657285493,
          -7,
          -7,
          -7,
          -3.0090257420869104,
          -3.495442573988997,
          -7,
          -2.8438554226231614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3483048630481607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.526339277389844,
          -4.672679607538666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.142493751023144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3927848582254354,
          -7,
          -4.021630263171184,
          -7,
          -7,
          -2.5237464668115646,
          -7,
          -7,
          -3.028977705208778,
          -2.885643871835764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.443106456737266,
          -7,
          -7,
          -7,
          -3.9090744014009045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.841672250073634,
          -7,
          -7,
          -7,
          -7,
          -2.6599162000698504,
          -3.7558575389603575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5949447366950835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.831167235523549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7883451651521183,
          -7,
          -7,
          -3.919987588054925,
          -7,
          -7,
          -7,
          -4.12881914219451,
          -7,
          -3.103974669386388,
          -3.554108260657051,
          -3.779676641573066,
          -7,
          -7,
          -4.5759264411633405,
          -4.05493846198963,
          -4.104159218143249,
          -3.5499136595638374,
          -7,
          -3.9127886970523704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8824178010972825,
          -7,
          -7,
          -4.325094710984229,
          -4.451479405124862,
          -7,
          -3.3067080309848262,
          -7,
          -3.736794754924361,
          -7,
          -7,
          -7,
          -4.239524703156667,
          -7,
          -4.049760551762476,
          -3.9132308711135604,
          -3.965013450272248,
          -7,
          -3.970381748583891,
          -7,
          -7,
          -7,
          -3.7536213547777604,
          -7,
          -2.7793352090989942,
          -7,
          -7,
          -4.07291131585408,
          -3.187708686423428,
          -7,
          -7,
          -3.73471984165568,
          -7,
          -7,
          -3.502700175310563,
          -7,
          -7,
          -7,
          -7,
          -3.679073411294163,
          -7,
          -7,
          -7,
          -7,
          -4.612381153235321,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1774403000220808,
          -2.5057664361691927,
          -7,
          -7,
          -7,
          -4.60591887481288,
          -4.263375650509443,
          -2.0863598306747484,
          -7,
          -7,
          -3.2995072987004876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.391552566610928,
          -7,
          -2.795880017344075,
          -7,
          -7,
          -3.993920958801287,
          -7,
          -7,
          -7,
          -3.7866804531966487,
          -7,
          -3.9300112058961556,
          -3.0203612826477078,
          -7,
          -7,
          -3.052155067199565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.993201015824255,
          -3.31929447555578,
          -3.4631461367263494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40705081480425,
          -7,
          -3.3016809492935764,
          -7,
          -7,
          -7,
          -2.5906932564421776,
          -4.33374946248197,
          -7,
          -7,
          -7,
          -7,
          -3.512083758343917,
          -7,
          -7,
          -7,
          -7,
          -3.719680686428995,
          -7,
          -2.7133225049870275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.795184589682424,
          -7,
          -7,
          -7,
          -2.566276751530018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8923729073984363,
          -7,
          -7,
          -7,
          -7,
          -3.7946506733159673,
          -7,
          -7,
          -7,
          -4.31492005599242,
          -2.845098040014257,
          -3.6604860157849677,
          -3.982791170279078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.852601969338235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6742179455767,
          -3.5221833176186865,
          -7,
          -7,
          -7,
          -3.366236123718293,
          -7,
          -7,
          -3.9793890131122187,
          -7,
          -7,
          -7,
          -3.4718781993072905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5640739789771465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.596047007545439,
          -3.6231458746379395,
          -7,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -3.575303333422399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3729120029701067,
          -7,
          -7,
          -4.517367469777369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.056294887076228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.094016681120422,
          -7,
          -7,
          -2.44870631990508,
          -4.735710652281123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.863322860120456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4263567096139225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669642247025738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2487903775753857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.60151678365001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0236639181977933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6980508096542675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1078880251827985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.391146906415991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9835360816029923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626689305465622,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4456042032735974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6085260335771943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.973589623427257,
          -7,
          -7,
          -7,
          -2.3010299956639813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.235589763228279,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.584331224367531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.187520720836463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658326265298826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5967619862752436,
          -7,
          -7,
          -7,
          -4.275351671786708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2570062179123065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2278867046136734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.51807942810387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1903316981702914,
          -7,
          -7,
          -7,
          -3.581076933158591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.435095486058288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3636119798921444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.671728088239558,
          -7,
          -3.414137362184477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.852479993636856,
          -7,
          -7,
          -4.192985379093162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3121773564397787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7708520116421442,
          -7,
          -3.2013971243204513,
          -5.149265311738653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.98344585734134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9668454236549167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6073477767684134,
          -7,
          -2.949877704036875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.620673816578646,
          -2.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.379124146070392,
          -4.733968836780335,
          -7,
          -7,
          -7,
          -2.677150521273433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.24551266781415,
          -7,
          -7,
          -3.358886204405869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1368473499574545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0512683188703855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.309438524641924,
          -7,
          -7,
          -3.2921452678141216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.126834630715719,
          -4.0851478121269045,
          -7,
          -4.632376297316548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985965078304871,
          -7,
          -3.0310042813635367,
          -7,
          -7,
          -7,
          -7,
          -2.2329961103921536,
          -7,
          -7,
          -7,
          -3.7820219199132845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7481880270062007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6627578316815743,
          -7,
          -2.1760912590556813,
          -7,
          -7,
          -2.7988232242204005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0232524596337114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.678518379040114,
          -3.399345569666288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.269512944217916,
          -7,
          -2.367355921026019,
          -7,
          -2.4312790981129244,
          -2.936513742478893,
          -2.9431646302222556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.267711326726692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.279826581794015,
          -7,
          -7,
          -7,
          -2.3180633349627615,
          -7,
          -2.6532125137753435,
          -2.173671784932268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2576785748691846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5010592622177517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.657533887557986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276392863069535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0863598306747484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.999130541287371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9786369483844743,
          -7,
          -7,
          -4.576398945124239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.516415170606379,
          -7,
          -7,
          -7,
          -2.4502491083193614,
          -2.3283796034387376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335237186909729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9003671286564703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.225309281725863,
          -7,
          -7,
          -3.024074987307426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.156851901070011,
          -7,
          -7,
          -4.040892300326412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.146128035678238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -3.509740015570382,
          -3.794766797940821,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8109042806687006,
          -7,
          -7,
          -7,
          -7,
          -2.100370545117563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7371926427047373,
          -7,
          -7,
          -4.426787690457996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.068018793276356,
          -7,
          -7,
          -7,
          -7,
          -2.8305886686851442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5276299008713385,
          -7,
          -2.296665190261531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1652443261253107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.681241237375587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5943925503754266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9497964591611532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.566241023301467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0394141191761372,
          -7,
          -7,
          -7,
          -3.471047107007469,
          -7,
          -5.131916858753586,
          -7,
          -7,
          -4.242901534681515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.459392487759231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.776119799052988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2591158441850663,
          -7,
          -4.610479169346105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603988314428608,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.126621980658712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.846337112129805,
          -2.3131639093135794,
          -7,
          -7,
          -7,
          -7,
          -3.7203247174174416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6522463410033232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.255272505103306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6278776945799716,
          -3.7632494007603223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9003671286564703,
          -7,
          -7,
          -7,
          -2.8296253533580495,
          -3.220108088040055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2810333672477277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1156105116742996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4756711883244296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.649334858712142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0145205387579237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8920946026904806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.869190961954971,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.523588546610636,
          -7,
          -7,
          -7,
          -2.251232527301566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9242792860618816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9867717342662448,
          -7,
          -7,
          -1.6232492903979006,
          -7,
          -7,
          -7,
          -2.7558748556724915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7442929831226763,
          -7,
          -1.9912260756924949,
          -1.8920946026904806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9268567089496924,
          -2.2648178230095364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1595671932336202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1335389083702174,
          -7,
          -7,
          -2.3349561161368517,
          -2.8257505813480277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.110589710299249,
          -7,
          -7,
          -3.4109458586877746,
          -7,
          -7,
          -2.367355921026019,
          -7,
          -7,
          -7,
          -3.747644819328248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9474337218870508,
          -7,
          -5.432919608590166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.301225384221708,
          -2.8216772586543666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.67833624673218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5911759503117913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8523884893737295,
          -7,
          -7,
          -4.302731264944306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.022840610876528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7723950610820003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1627833902457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.77981646845598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5881596163830918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.009663316679379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.032319382401304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335397717145591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.319522449065454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -7,
          -7,
          -3.7719180361289046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1492868696291,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.0978332097322445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.94875518016827,
          -7,
          -4.955835215464196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.10122450682362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.347505649475902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542053214823124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.377410986477962,
          -4.871190424556114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.339625323047164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274527304396044,
          -7,
          -7,
          -7,
          -7,
          -3.4127964287165433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.056209042104069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.287801729930226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.978750981332984,
          -1.0043213737826426,
          -2.637989780784685,
          -3.5549965066930604,
          -7,
          -7,
          -7,
          -2.1319392952104246,
          -2.3483048630481607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -2.0293837776852097,
          -2.456366033129043,
          -1.9912260756924949,
          -7,
          -7,
          -4.335257256434532,
          -7,
          -2.576341350205793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2218487496163566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2278867046136734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.026574118150334,
          -2.0253058652647704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.20682587603185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8530895298518655,
          -7,
          -2.186579670669986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6989700043360187,
          -1.7930916001765804,
          -7,
          -7,
          -2.3654879848909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9590413923210934,
          -7,
          -2.5440680443502757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4704839943156855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3201462861110542,
          -7,
          -7,
          -7,
          -7,
          -3.7276957537986664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7288946220436823,
          -7,
          -7,
          -7,
          -7,
          -2.8114912218475876,
          -7,
          -7,
          -2.682145076373832,
          -7,
          -7,
          -2.6893088591236203,
          -2.5921767573958667,
          -7,
          -2.302114376956201,
          -7,
          -2.3180633349627615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149265311738653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9956351945975501,
          -7,
          -1.0791812460476249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.180412632838324,
          -7,
          -7,
          -7,
          -3.165541076722373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.681331705969166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6073477767684134,
          -7,
          -7,
          -2.6554585929400747,
          -7,
          -7,
          -7,
          -7,
          -2.3873898263387296,
          -2.7993405494535817,
          -2.6344772701607315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7805573201495222,
          -2.2335037603411343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -2.2810333672477277,
          -2.479647278769387,
          -2.079181246047625,
          -7,
          -7,
          -7,
          -7,
          -5.097808940207254,
          -2.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -2.786041210242554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7259116322950483,
          -7,
          -7,
          -7,
          -2.6893088591236203,
          -7,
          -2.918554530550274,
          -7,
          -7,
          -2.113943352306837,
          -7,
          -1.6532125137753437,
          -2.061452479087193,
          -7,
          -7,
          -2.24551266781415,
          -7,
          -7,
          -1.5069692271226607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4315728185856536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.39826560744918,
          -3.7275412570285567,
          -7,
          -7,
          -7,
          -7,
          -3.776192514747072,
          -7,
          -7,
          -4.1368473499574545,
          -3.695043658821294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.39778556539804,
          -4.502326956667444,
          -7,
          -7,
          -7,
          -7,
          -4.610489818125192,
          -7,
          -4.941680347291402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274365706447425,
          -7,
          -7,
          -7,
          -3.308625384287424,
          -7,
          -7,
          -3.7587713562655973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.591287265058499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.773859552376687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.33909352266184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3283796034387376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9668959012123954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6343652953033616,
          -2.367355921026019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7204074008031087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.148232359644905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2541016739018396,
          -7,
          -7,
          -7,
          -2.8690640060845967,
          -2.1619342799296826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.595016709265098,
          -7,
          -7,
          -1.2704459080179626,
          -3.4860392250921777,
          -7,
          -7,
          -7,
          -3.165541076722373,
          -3.1504494094608804,
          -7,
          -3.6177107625232265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.079085995585152,
          -7,
          -2.8937617620579434,
          -2.712369058979705,
          -7,
          -7,
          -7,
          -2.8296253533580495,
          -7,
          -7,
          -7,
          -2.6440867345657413,
          -3.13640344813399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2392994791268923,
          -7,
          -7,
          -7,
          -7,
          -4.0726909550128685,
          -7,
          -7,
          -7,
          -7,
          -3.498172660636544,
          -2.765420173578722,
          -7,
          -7,
          -4.2473102774556555,
          -7,
          -2.4671639659690903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2335037603411343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8161902935342806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.130333768495006,
          -7,
          -7,
          -7,
          -3.213384924916388,
          -7,
          -7,
          -7,
          -2.9564085711958326,
          -7,
          -7,
          -7,
          -7,
          -3.2624510897304293,
          -7,
          -3.12057393120585,
          -2.6156870819348312,
          -7,
          -3.40212376240064,
          -1.4781071677013136,
          -1.9312184910594619,
          -7,
          -7,
          -3.3251049829714074,
          -7,
          -3.6460114095912393,
          -2.383815365980431,
          -7,
          -7,
          -7,
          -4.444489797808013,
          -7,
          -7,
          -2.873320601815399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.732647658971915,
          -7,
          -7,
          -7,
          -3.1122697684172707,
          -3.110252917353403,
          -7,
          -7,
          -2.975431808509263,
          -2.965906915495192,
          -7,
          -7,
          -7,
          -7,
          -2.929418925714293,
          -3.262094964674063,
          -3.3234583668494677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2016701796465816,
          -7,
          -7,
          -7,
          -2.749736315569061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0615721938673013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2670151976815847,
          -7,
          -3.9196532823103643,
          -7,
          -7,
          -2.526211824863059,
          -3.1370374547895126,
          -2.385095338854789,
          -3.2232362731029975,
          -2.2385478876813276,
          -2.008363563484802,
          -7,
          -2.8976270912904414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0332896932905147,
          -7,
          -2.046701692585523,
          -7,
          -3.137354111370733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.638156336676239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.807535028068853,
          -3.3395508108256715,
          -4.0389012666222,
          -7,
          -7,
          -7,
          -1.6731233471534077,
          -7,
          -7,
          -3.18440748541232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.130170852059858,
          -7,
          -7,
          -7,
          -7,
          -3.1405080430381793,
          -2.8429211207599825,
          -7,
          -2.873320601815399,
          -3.339053735709139,
          -7,
          -2.8497878242376853,
          -7,
          -7,
          -3.1142772965615864,
          -7,
          -3.4837298990000236,
          -2.451530591934032,
          -2.394013663157313,
          -7,
          -3.667279467298674,
          -7,
          -7,
          -3.1293675957229854,
          -7,
          -7,
          -2.7151673578484576,
          -3.105510184769974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.673596818209052,
          -3.286231854028553,
          -2.731320101718905,
          -2.857935264719429,
          -3.773619296135908,
          -7,
          -7,
          -3.133283365860989,
          -7,
          -7,
          -3.212986184736668,
          -3.1405080430381793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4783878216585498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1501421618485588,
          -7,
          -7,
          -7,
          -3.7019563451928037,
          -3.554489160003819,
          -4.036839604795666,
          -7,
          -7,
          -3.558288469433135,
          -7,
          -7,
          -7,
          -7,
          -3.3053513694466234,
          -3.581038948772167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9304395947667,
          -4.454875335744946,
          -7,
          -7,
          -7,
          -7,
          -3.48422863769372,
          -4.416607226792504,
          -3.3800145058160997,
          -7,
          -4.074267742553358,
          -4.110286608403566,
          -7,
          -4.810050963782019,
          -3.5092529405903825,
          -4.302590648306554,
          -7,
          -3.548417768495678,
          -7,
          -4.3190852293386985,
          -7,
          -4.327093167048512,
          -3.9306434410421645,
          -3.678644425908479,
          -4.1112625136590655,
          -7,
          -7,
          -7,
          -7,
          -3.281849481182487,
          -7,
          -4.593396842300207,
          -7,
          -7,
          -7,
          -4.2641564367458855,
          -7,
          -7,
          -3.9307792854229726,
          -3.4079429827990975,
          -7,
          -3.6808791744268112,
          -3.047254366806777,
          -2.734333025494258,
          -7,
          -7,
          -7,
          -2.9994205543077666,
          -7,
          -7,
          -7,
          -3.6958026089088825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6756133883967066,
          -3.7059401975314,
          -4.874635446114873,
          -7,
          -7,
          -7,
          -4.6229907048100864,
          -7,
          -7,
          -3.7085908451503435,
          -7,
          -7,
          -7,
          -7,
          -4.301029995663981,
          -7,
          -3.441616594274755,
          -2.9590413923210934,
          -3.48973354378241,
          -3.0988743654836055,
          -7,
          -4.01456253812761,
          -4.0990933597731,
          -3.327767489902729,
          -3.945222316635341,
          -7,
          -7,
          -7,
          -3.578333530221577,
          -7,
          -7,
          -7,
          -2.3250536206057983,
          -7,
          -2.5152715769643432,
          -7,
          -2.8771793076256973,
          -3.2119210843085093,
          -2.761551988564182,
          -3.257838506552783,
          -3.3432115901797474,
          -7,
          -7,
          -3.074450718954591,
          -3.203576774977973,
          -2.5613720064670162,
          -3.3140779917792127,
          -2.977952121201462,
          -3.188365926063148,
          -2.7078975748936176,
          -2.48223818557017,
          -7,
          -3.343014497150768,
          -3.2598326990634834,
          -2.8360074591255313,
          -2.829089253448099,
          -2.863521122841043,
          -7,
          -7,
          -2.826722520168992,
          -3.2938595539820534,
          -7,
          -7,
          -3.5305554148925595,
          -2.499891724766401,
          -3.4073290897914963,
          -7,
          -2.9309490311675233,
          -7,
          -2.241973165892279,
          -7,
          -7,
          -7,
          -2.967079734144497,
          -7,
          -3.243781916093795,
          -3.2259980915164155,
          -7,
          -2.940872085117753,
          -3.271609301378832,
          -2.876506504265881,
          -7,
          -2.2276725026453836,
          -7,
          -2.5595076406424986,
          -3.8764872659889766,
          -7,
          -7,
          -7,
          -7,
          -3.0303105200628067,
          -7,
          -3.2678754193188975,
          -2.7582304084577496,
          -7,
          -2.9839339903647955,
          -7,
          -2.954121855324949,
          -7,
          -7,
          -7,
          -7,
          -3.0953088613853814,
          -2.195207549502754,
          -7,
          -2.735864930017006,
          -7,
          -7,
          -7,
          -2.5278016945768633,
          -2.975891136401793,
          -2.4104156728052764,
          -2.9572651342952905,
          -3.0113589537066106,
          -7,
          -7,
          -2.963247995726138,
          -2.9103194227966793,
          -2.125558714560702,
          -2.8309092995464433,
          -7,
          -7,
          -3.11806622171401,
          -3.2534591643398376,
          -3.159266331093494,
          -3.4689378056654614,
          -3.189069009399324,
          -3.081527326244805,
          -3.706077387310076,
          -4.306167591572845,
          -3.057729481433751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.952165426358076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0850526086449856,
          -3.508798965403905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4913616938342726,
          -3.1815577738627865,
          -7,
          -3.758609142659744,
          -7,
          -3.600210306409328,
          -7,
          -7,
          -2.743901550485179,
          -7,
          -7,
          -4.001863462692524,
          -7,
          -7,
          -7,
          -7,
          -2.8339965879428433,
          -7,
          -7,
          -7,
          -7,
          -3.0674428427763805,
          -7,
          -7,
          -7,
          -3.002166061756508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7000110623221123,
          -2.4131607314521517,
          -3.0577421558287528,
          -7,
          -3.3931363002692168,
          -2.944630701856278,
          -2.6337088621630316,
          -7,
          -3.426185825244511,
          -7,
          -2.842297134328065,
          -7,
          -2.1592974644303227,
          -3.2369904646531475,
          -3.392609030497567,
          -2.6395631046841332,
          -2.196453638006586,
          -7,
          -3.0982109460284746,
          -7,
          -3.229681842317676,
          -3.7028611705729295,
          -2.9301846522986197,
          -2.825840962449408,
          -3.402433346219312,
          -7,
          -7,
          -3.008344629252689,
          -3.2427898094786767,
          -7,
          -3.40705081480425,
          -7,
          -3.3254472435942937,
          -7,
          -2.4853251723647625,
          -7,
          -3.414722721158878,
          -3.714497408649806,
          -7,
          -7,
          -7,
          -3.220108088040055,
          -7,
          -3.2218487496163566,
          -2.6440867345657413,
          -7,
          -2.7433355242117883,
          -2.7007037171450192,
          -2.00469190062186,
          -2.7998572591896123,
          -7,
          -3.6981875698661226,
          -2.7984779980639836,
          -3.2522055549271984,
          -3.4681995860726125,
          -3.7018269303971394,
          -3.691346764134822,
          -7,
          -2.2297387094752668,
          -7,
          -7,
          -7,
          -7,
          -2.7157462885921344,
          -2.8268034169712943,
          -3.2182728535714475,
          -3.1354506993455136,
          -2.5627029631478573,
          -3.695043658821294,
          -2.8037131100453947,
          -7,
          -3.697490887171057,
          -7,
          -7,
          -3.395588463568244,
          -7,
          -2.5494120098036346,
          -3.107718610520263,
          -2.3793449363557286,
          -7,
          -2.7676505067756327,
          -3.736157375273132,
          -2.0042041932514953,
          -2.9443181355003873,
          -3.698622429702098,
          -3.3913762391696496,
          -7,
          -7,
          -3.697316541732383,
          -3.2215011749824356,
          -7,
          -3.6923180442592787,
          -2.723518819179158,
          -7,
          -7,
          -3.390405156480081,
          -2.370505044202905,
          -7,
          -7,
          -3.4050901140387224,
          -3.09429639740537,
          -2.0770043267933502,
          -3.2194972045125625,
          -3.3934874581471752,
          -2.5750228080714463,
          -7,
          -2.640991471652534,
          -3.401228167498113,
          -7,
          -3.3973315703911284,
          -2.8758051307992005,
          -2.9132839017604186,
          -7,
          -2.7909344146565678,
          -2.7592900330243038,
          -7,
          -3.4208630205509762,
          -3.712397131406715,
          -3.9947569445876283,
          -2.9204711793184543,
          -3.1545000516787205,
          -2.9901908082608895,
          -3.0256335110606978,
          -7,
          -3.4023473728483684,
          -3.409172018991404,
          -7,
          -7,
          -3.1020280999717116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3412274163300966,
          -2.7856263829785224,
          -2.6924944075030846,
          -2.834738518903841,
          -7,
          -3.4372747974101237,
          -7,
          -7,
          -2.5485941291816783,
          -7,
          -3.059108817913594,
          -7,
          -3.3965480379871322,
          -3.697839368218363,
          -2.0315147656796184,
          -7,
          -7,
          -3.2239283760094772,
          -2.762261654333892,
          -7,
          -7,
          -3.750199727829182,
          -2.421850615022958,
          -2.5712095470456258,
          -3.0108085975122063,
          -2.774354733944107,
          -2.9259992664561554,
          -3.3988077302032647,
          -2.0356385582547913,
          -3.218360421770535,
          -7,
          -7,
          -7,
          -7,
          -3.699924402742477,
          -3.3933119147002,
          -2.1692368714947654,
          -7,
          -3.599810319835993,
          -3.692935002531138,
          -3.452016565962548,
          -1.6835520910142645,
          -3.3979400086720375,
          -3.12515582958053,
          -2.723044991643445,
          -3.1283184772596804,
          -3.740362689494244,
          -3.1610683854711747,
          -2.8128298304416357,
          -2.803542463881351,
          -3.115527305527498,
          -2.5889178182660926,
          -3.400365273349939,
          -2.609380944250707,
          -7,
          -7,
          -7,
          -2.8342868171349913,
          -7,
          -2.3146331720348976,
          -7,
          -2.965828614858199,
          -7,
          -3.3980268588836866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8309092995464433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.692670699156369,
          -3.700876708376904,
          -7,
          -3.3967222785037734,
          -2.7319109421168726,
          -2.6642501190990586,
          -3.1246128935404425,
          -3.1218253591650096,
          -7,
          -3.6957442751973235,
          -3.695131297704026,
          -7,
          -7,
          -3.693726948923647,
          -3.235191653961703,
          -7,
          -3.700790221374347,
          -7,
          -7,
          -3.694166295933198,
          -7,
          -7,
          -7,
          -3.40705081480425,
          -2.47573170452071,
          -7,
          -7,
          -7,
          -2.9965992227001665,
          -3.0975176000709466,
          -3.001560652642573,
          -7,
          -2.863747598033922,
          -3.287054877670668,
          -3.6977522741677546,
          -2.6500037994452423,
          -2.275416066894797,
          -7,
          -7,
          -7,
          -3.824581376233483,
          -3.426185825244511,
          -2.7265008135244413,
          -3.7178368674869255,
          -3.1106618462485724,
          -7,
          -7,
          -3.6970548922725746,
          -2.7705083659594516,
          -3.271609301378832,
          -2.7554937284151193,
          -2.445816416559962,
          -3.00774777800074,
          -3.3929606147967957,
          -3.217659381292399,
          -7,
          -3.005008820672367,
          -2.454925054724259,
          -2.764840064462161,
          -7,
          -7,
          -3.0100454126360985,
          -3.697490887171057,
          -7,
          -3.7066324508732946,
          -2.7439450604267974,
          -2.192769056392809,
          -3.0457922327295592,
          -3.2427898094786767,
          -3.1028622998954396,
          -2.6576834670780443,
          -1.42753011836615,
          -3.6938148538894167,
          -3.1148194089047454,
          -7,
          -3.694429690957083,
          -2.8752266774031847,
          -1.678094487894716,
          -2.1620979090990606,
          -2.4918558654960536,
          -2.992995098431342,
          -7,
          -2.97657921864011,
          -7,
          -3.023493360732307,
          -2.325272344086861,
          -3.695131297704026,
          -7,
          -3.693023067923694,
          -3.4720246977002813,
          -2.733598460961339,
          -7,
          -3.3973315703911284,
          -3.2403828200445397,
          -7,
          -3.6922298357727557,
          -7,
          -2.4282200752233494,
          -7,
          -7,
          -2.6798406848590526,
          -3.7004441010277516,
          -2.880432465023419,
          -3.158844773634988,
          -3.3433108911761096,
          -7,
          -2.0910305188634193,
          -2.7007037171450192,
          -2.5833499380780163,
          -7,
          -2.8790958795000727,
          -7,
          -2.2854020929654126,
          -2.406011305416004,
          -2.8058028185264856,
          -3.2173084362374205,
          -7,
          -7,
          -2.5545295388316016,
          -3.6972293427597176,
          -7,
          -3.2213272832956665,
          -2.7672300981107183,
          -7,
          -1.7967634995939228,
          -7,
          -7,
          -2.676429606544869,
          -3.8795474371414054,
          -7,
          -3.2488720042050603,
          -3.243286146083446,
          -3.3553237864544485,
          -3.2888749458352793,
          -3.1715948293206875,
          -2.8141883831772025,
          -3.694605198933569,
          -7,
          -3.9273703630390235,
          -3.5230176972834117,
          -3.0772212348020416,
          -2.924574624041236,
          -7,
          -3.1424192643611137,
          -2.931168431656111,
          -3.8639173769578603,
          -3.7531711647163974,
          -7,
          -3.913260701649197,
          -3.3854990271520573,
          -3.2606873945370265,
          -3.7415980121808308,
          -4.279142006491639,
          -3.7681847038928176,
          -3.5630589791948317,
          -7,
          -2.922552466761376,
          -3.183981218914592,
          -3.3527409004337323,
          -3.5634810853944106,
          -3.994866823015008,
          -4.03929511808431,
          -3.74030346348121,
          -3.7262652369408156,
          -3.830396176483469,
          -3.1640106397198697,
          -3.0622058088197126,
          -2.7266531289441915,
          -3.091221989003633,
          -1.8363564880287062,
          -2.1374581672330395,
          -2.955527405293444,
          -3.5045795924147223,
          -3.7554937284151193,
          -2.292864986031581,
          -2.4504516993954346,
          -2.6548638255819332,
          -2.8004526998229493,
          -2.612501296864678,
          -2.2371036915866878,
          -7,
          -2.855908366581291,
          -3.311188557387388,
          -3.7095243558763413,
          -3.4161965568964496,
          -2.8387839742393597,
          -3.8424220033576497,
          -7,
          -1.7709177292002485,
          -2.357611434806292,
          -3.6176632694789093,
          -3.7041505168397992,
          -2.8209235878813175,
          -3.7073998311332486,
          -2.581221817873486,
          -7,
          -3.2743463860506234,
          -2.4764718236140304,
          -3.0933408536053615,
          -3.7018269303971394,
          -3.011476460804896,
          -3.325925955771466,
          -2.8952936014803914,
          -3.7958105246674085,
          -2.756445920162273,
          -3.00939777434038,
          -2.1959688020761106,
          -2.914166793875635,
          -3.2346859743215286,
          -2.296694434696538,
          -2.596998642902258,
          -3.1577588860468637,
          -2.6946417541696412,
          -7,
          -2.9179647680549445,
          -2.345851073918755,
          -3.0613654722789483,
          -3.7115541682501694,
          -7,
          -7,
          -7,
          -3.6164755138885654,
          -2.557085936526085,
          -3.104572459545332,
          -2.4891440150652615,
          -7,
          -2.401154272285065,
          -2.387178600948196,
          -3.0664750137541312,
          -2.757564719601866,
          -3.6997510316895146,
          -2.9170204900714385,
          -7,
          -2.764074608884626,
          -3.2778383330020473,
          -3.7430391548049333,
          -7,
          -2.780613773351461,
          -3.503586421323274,
          -2.8709888137605755,
          -7,
          -7,
          -2.525326542033364,
          -7,
          -3.4641913706409997,
          -3.2534995431676204,
          -3.411030146797094,
          -7,
          -2.855670556918036,
          -7,
          -7,
          -3.57935162711144,
          -2.295671153476217,
          -3.185629314451658,
          -7,
          -7,
          -2.7672383453307243,
          -3.48422863769372,
          -3.7096091210726487,
          -7,
          -3.702171950857711,
          -2.688241795977712,
          -7,
          -3.7311050512159203,
          -3.63753976055708,
          -7,
          -2.9089315942207272,
          -3.2629254693318317,
          -3.822625678774141,
          -7,
          -7,
          -3.404149249209695,
          -3.463519723400486,
          -4.418450450829583,
          -7,
          -3.7019994748896368,
          -3.404320467221731,
          -3.625312450961674,
          -2.8155386842826937,
          -7,
          -7,
          -3.6710802327388494,
          -3.4229999772716164,
          -2.6173173711074478,
          -3.4268364538035083,
          -3.55834850876162,
          -7,
          -7,
          -4.118033128828567,
          -3.2259120500140233,
          -3.5168437434754565,
          -7,
          -7,
          -3.02201573981772,
          -3.511749711344983,
          -7,
          -3.3984608496082234,
          -2.134753718901899,
          -3.042732979621721,
          -3.4347285417797577,
          -2.9571717731027167,
          -3.453624073591451,
          -3.173186268412274,
          -7,
          -2.7978299584283435,
          -3.1245508004664684,
          -3.5100756113539493,
          -3.3251734566778013,
          -7,
          -7,
          -3.221581886746912,
          -3.858416877723488,
          -3.705350462885712,
          -3.0390834800418545,
          -2.788857891778036,
          -3.1789769472931693,
          -2.837588438235511,
          -3.015305073292771,
          -3.4186326873540653,
          -7,
          -7,
          -7,
          -7,
          -3.119420863442087,
          -3.155411956437706,
          -3.403977963669355,
          -7,
          -3.402175375031505,
          -3.6923180442592787,
          -2.541394319744552,
          -3.699230502883409,
          -7,
          -7,
          -7,
          -3.7288405683399715,
          -7,
          -7,
          -3.0165558301996542,
          -3.8361974807789254,
          -3.4358443659844413,
          -3.402175375031505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.716086853774832,
          -2.7660873761509297,
          -3.6004283257321315,
          -7,
          -7,
          -7,
          -3.1436392352745433,
          -3.697578033651113,
          -7,
          -3.1192008839606693,
          -7,
          -7,
          -3.3157604906657347,
          -3.5801263254115825,
          -7,
          -7,
          -7,
          -3.4176377396522297,
          -7,
          -3.618414214801256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7121424991293415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9380190974762104,
          -3.763341586861342,
          -7,
          -7,
          -7,
          -2.429752280002408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.13640344813399,
          -2.7433355242117883,
          -7,
          -7,
          -2.7592900330243038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.745855195173729,
          -7,
          -7,
          -4.216904498521672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5593080109070123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4871383754771865,
          -7,
          -2.1072099696478683,
          -7,
          -2.1760912590556813,
          -2.500373714353374,
          -7,
          -7,
          -2.183744223284207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9493900066449128,
          -7,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.705007959333336,
          -7,
          -7,
          -7,
          -2.2041199826559246,
          -7,
          -3.117786691388597,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3873898263387296,
          -7,
          -3.5234456722537035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2671717284030137,
          -7,
          -2.90444504107691,
          -7,
          -7,
          -7,
          -7,
          -3.0673219820337434,
          -7,
          -7,
          -7,
          -7,
          -2.82865989653532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0043213737826426,
          -3.1152775913959014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.767897616018091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.756636108245848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.155336037465062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2041199826559246,
          -7,
          -2.8627275283179747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.680969718465897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.132579847659737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7965743332104296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2576785748691846,
          -7,
          -2.8680563618230415,
          -2.6283889300503116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.780677274433368,
          -2.6830470382388496,
          -7,
          -7,
          -7,
          -7,
          -4.796758141013766,
          -2.669316880566112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9867717342662448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9482172935599706,
          -7,
          -4.830875644426505,
          -7,
          -2.724275869600789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6143698395482886,
          -3.4176377396522297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.187520720836463,
          -7,
          -7,
          -7,
          -7,
          -2.5780658838360915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.396251668580277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3867485908293835,
          -7,
          -7,
          -7,
          -7,
          -5.101186665056354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6024289848375455,
          -3.7272158209084925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.136720567156407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.175627764367181,
          -4.5023087426730655,
          -4.695061188012712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6323357942172505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0293837776852097,
          -7,
          -7,
          -3.985830489858392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.627201940953156,
          -2.9375178920173464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.037983949447127,
          -4.74074943414471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.478829733882481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.987219229908005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3521825181113627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.605628222007619,
          -7,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -7,
          -3.2003579455416356,
          -3.585347911094591,
          -7,
          -7,
          -3.5349774634615505,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6368087344744513,
          -7,
          -7,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7007037171450192,
          -7,
          -7,
          -3.0751818546186915,
          -2.4345689040341987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7268494135432264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.916822284595912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4768711343703425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3251049829714074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6989700043360187,
          -7,
          -3.214086577617114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2131191388114564,
          -3.619823500457278,
          -7,
          -7,
          -7,
          -4.435366506612661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9611837098124356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3736474722092176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.977266212427293,
          -7,
          -7,
          -7,
          -3.7729081949712717,
          -7,
          -2.164352855784437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7737458244431754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4941081925565785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.319314304090512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.220108088040055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.371187969667537,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0111473607757975,
          -7,
          -7,
          -3.1755118133634475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6843964784190204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.831763159702354,
          -7,
          -7,
          -2.5406422544096534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8221680793680175,
          -2.667452952889954,
          -7,
          -7,
          -2.5276299008713385,
          -7,
          -7,
          -7,
          -2.3404441148401185,
          -7,
          -2.8898617212581885,
          -2.665580991017953,
          -7,
          -4.305534078686048,
          -2.478566495593843,
          -7,
          -7,
          -7,
          -7,
          -2.677606952720493,
          -7,
          -7,
          -2.716003343634799,
          -7,
          -7,
          -7,
          -7,
          -4.05646479274284,
          -2.6866362692622934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6374897295125104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.694605198933569,
          -7,
          -7,
          -7,
          -5.1319729477225025,
          -7,
          -7,
          -4.544390543337748,
          -2.6924062348336304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3222192947339195,
          -7,
          -7,
          -2.8874297406343095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.033857832966269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.269781376648798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.843320002089389,
          -7,
          -7,
          -4.067591548301512,
          -3.4387005329007363,
          -3.6980135039391815,
          -7,
          -7,
          -7,
          -7,
          -3.4825877695267677,
          -7,
          -7,
          -7,
          -7,
          -4.201424437579911,
          -5.172305127265699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5971464878336956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.640878778701618,
          -3.2303211689190787,
          -3.85403262355994,
          -7,
          -7,
          -3.649951132399792,
          -7,
          -7,
          -4.6327204212336115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5658478186735176,
          -7,
          -7,
          -3.3852039627942734,
          -7,
          -2.5774917998372255,
          -7,
          -7,
          -7,
          -4.150428933047859,
          -2.9561684304753633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4077307280263356,
          -7,
          -7,
          -7,
          -7,
          -3.695831772826692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3028610245195775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1166077439882485,
          -7,
          -7,
          -3.7159198174335795,
          -7,
          -7,
          -2.9410142437055695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.834674974462744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.972665592266111,
          -7,
          -7,
          -7,
          -7,
          -4.149280710341023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.558708570533166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.073351702386901,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.667340862430717,
          -7,
          -7,
          -3.040602340114073,
          -3.696531119969607,
          -3.4169731726030363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6471872978959894,
          -3.378942698613437,
          -7,
          -7,
          -3.0071102312643196,
          -7,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -7,
          -3.171094292723705,
          -7,
          -3.0394141191761372,
          -7,
          -7,
          -7,
          -7,
          -3.1000257301078626,
          -7,
          -3.398287305357401,
          -7,
          -3.3540123456672206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.00469190062186,
          -2.7592900330243038,
          -3.0751818546186915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1809855807867304,
          -7,
          -7,
          -7,
          -7,
          -3.219060332448861,
          -7,
          -7,
          -7,
          -7,
          -3.4670158184384356,
          -2.8842287696326037,
          -7,
          -7,
          -3.2414717675507636,
          -7,
          -7,
          -7,
          -3.0546130545568877,
          -7,
          -7,
          -7,
          -3.034227260770551,
          -7,
          -7,
          -2.929929560084588,
          -7,
          -7,
          -7,
          -2.653752633125999,
          -3.158060793936605,
          -7,
          -7,
          -7,
          -7,
          -3.0538464268522527,
          -3.0610753236297916,
          -7,
          -7,
          -2.7846172926328756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6036855496147,
          -3.0523090996473234,
          -7,
          -7,
          -7,
          -3.4915367772802655,
          -7,
          -7,
          -7,
          -2.8512583487190755,
          -2.9763499790032735,
          -7,
          -3.6240757311456826,
          -3.429299990833608,
          -7,
          -7,
          -7,
          -4.044798378643768,
          -3.0633333589517497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0036328370044085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.75350645699097,
          -3.2425414282983844,
          -3.5524248457040857,
          -7,
          -3.079904467666721,
          -7,
          -7,
          -3.041392685158225,
          -3.171433900943008,
          -7,
          -2.797959643737196,
          -7,
          -7,
          -7,
          -2.1617121341720806,
          -7,
          -3.0354297381845483,
          -7,
          -3.137670537236755,
          -7,
          -7,
          -2.9481683617271317,
          -2.0468252095542914,
          -2.3626709297256667,
          -2.807196660710947,
          -3.1818435879447726,
          -2.6081693235104026,
          -7,
          -2.7898049799111613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.065206128054312,
          -3.041392685158225,
          -3.4122925093230463,
          -7,
          -3.6069722055085722,
          -7,
          -7,
          -2.8327278295294405,
          -7,
          -7,
          -7,
          -7,
          -3.2177470732627937,
          -7,
          -7,
          -2.619788758288394,
          -3.1386184338994925,
          -3.0863598306747484,
          -7,
          -2.88024177589548,
          -7,
          -7,
          -7,
          -2.681431675651782,
          -7,
          -3.4807253789884878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1215598441875008,
          -7,
          -7,
          -7,
          -7,
          -3.1119342763326814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5324995860946626,
          -7,
          -3.8968751295426642,
          -7,
          -7,
          -7,
          -3.189770956346874,
          -7,
          -7,
          -7,
          -7,
          -3.0689276116820716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1000257301078626,
          -3.246703697921374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8048206787211623,
          -7,
          -7,
          -3.044539760392411,
          -2.5396137029240258,
          -7,
          -7,
          -7,
          -7,
          -2.871280972857973,
          -3.284054558436069,
          -3.137670537236755,
          -4.509619137576773,
          -7,
          -7,
          -7,
          -3.399673721481038,
          -7,
          -2.792391689498254,
          -2.8902346663063563,
          -3.355834495884936,
          -7,
          -7,
          -7,
          -7,
          -3.204933522354145,
          -3.1473671077937864,
          -7,
          -3.1122697684172707,
          -3.1058506743851435,
          -7,
          -7,
          -7,
          -7,
          -2.852601969338235,
          -7,
          -2.845098040014257,
          -7,
          -3.574956775764507,
          -2.4892551683692603,
          -7,
          -3.3412366232386925,
          -7,
          -7,
          -7,
          -2.587336734507256,
          -2.861733491532661,
          -3.1640552918934515,
          -7,
          -7,
          -7,
          -7,
          -3.8706104335298415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.503109436671369,
          -7,
          -7,
          -7,
          -7,
          -3.6924503234060153,
          -7,
          -4.07271012126439,
          -7,
          -7,
          -3.555662651664352,
          -2.504244254358882,
          -7,
          -2.863322860120456,
          -7,
          -2.7776684326775474,
          -2.776095557782467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.053462604925455,
          -7,
          -7,
          -7,
          -7,
          -2.666250475475956,
          -7,
          -7,
          -7,
          -4.754256573662172,
          -7,
          -7,
          -4.14146545161862,
          -7,
          -7,
          -4.111900712865614,
          -4.263217745338578,
          -7,
          -7,
          -7,
          -4.664594971445261,
          -4.331434045411302,
          -7,
          -7,
          -7,
          -4.660523976930213,
          -7,
          -7,
          -7,
          -4.5024544332438925,
          -3.442061474322838,
          -4.79122734162645,
          -7,
          -7,
          -4.634235368289326,
          -7,
          -7,
          -4.410768800392774,
          -7,
          -4.113809702672945,
          -7,
          -4.201888500365973,
          -7,
          -3.7817553746524686,
          -7,
          -7,
          -7,
          -4.000911062131223,
          -7,
          -7,
          -3.7200765727681406,
          -3.4990681845107945,
          -7,
          -4.084147133154448,
          -7,
          -3.210999118023019,
          -7,
          -3.096736260462469,
          -3.255651485675603,
          -3.124652402693,
          -2.4690852991231202,
          -7,
          -7,
          -3.361160995195026,
          -7,
          -7,
          -3.4314709841279067,
          -7,
          -7,
          -3.8935213452372426,
          -3.603455631785735,
          -4.174986747747709,
          -7,
          -3.144262773761991,
          -3.0965624383741357,
          -3.2585435894214507,
          -7,
          -4.101329660136574,
          -7,
          -3.0096633166793794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.182756931040399,
          -3.2493206766376344,
          -7,
          -3.6142009437289793,
          -3.067872555625634,
          -7,
          -4.642118133694582,
          -7,
          -3.4452927694259716,
          -3.2104968748521077,
          -4.0471969600412665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7264826967848297,
          -7,
          -7,
          -7,
          -3.839729375206388,
          -7,
          -3.595506242348686,
          -7,
          -7,
          -7,
          -3.808953299155911,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8044996528482944,
          -4.447344117675954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7710727832211948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.863322860120456,
          -7,
          -7,
          -7,
          -7,
          -3.880191706122409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.779380011491656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.209783014848515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.289945516176668,
          -7,
          -7,
          -7,
          -4.331326050575092,
          -7,
          -7,
          -3.4561056387081894,
          -3.822494985278751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.575043441108574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9628426812012423,
          -3.6152133348013584,
          -7,
          -7,
          -7,
          -3.4940153747571436,
          -7,
          -7,
          -3.3948017771627113,
          -7,
          -7,
          -3.373279893277496,
          -7,
          -3.2631624649622166,
          -7,
          -7,
          -7,
          -7,
          -3.649334858712142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3067466080777117,
          -3.6343764940883676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.122270503074094,
          -7,
          -7,
          -7,
          -4.178752551784779,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.035309640156801,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7998572591896123,
          -7,
          -2.4345689040341987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028855809390444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.847572659142112,
          -3.519302849235429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.564363543741234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0281644194244697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.796747738875302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0453229787866576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9622272313500853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.12205196263325,
          -2.8549130223078554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4183012913197457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.82509329083244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.67066324328588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.438753248138029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.672304175802286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.208889036595623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.926856708949692,
          -2.497390438017666,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6857417386022635,
          -7,
          -4.606821886016697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.319817150451569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9559137362541525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9689613428677815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5424394925233997,
          -7,
          -7,
          -7,
          -4.1386184338994925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.353416091053356,
          -4.678682232836399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604604005662973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6407000199084365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658078206053737,
          -7,
          -7,
          -7,
          -3.5991185650553628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1177682949263725,
          -7,
          -7,
          -7,
          -3.8771927530671593,
          -7,
          -7,
          -7,
          -2.392696953259666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8575335121635788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6658935455344326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0255106728525805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9152414973061944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.391816923613249,
          -7,
          -7,
          -7,
          -2.161368002234975,
          -7,
          -3.8186612898165646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7562556487542333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.205068964264459,
          -7,
          -7,
          -7,
          -7,
          -4.735934071215523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6693168805661123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0043213737826426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7168377232995247,
          -7,
          -7,
          -3.7274843233085995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2000292665537704,
          -7,
          -7,
          -7,
          -7,
          -3.3473114255351692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -2.5622928644564746,
          -7,
          -7,
          -7,
          -2.2600713879850747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8530895298518657,
          -7,
          -4.848149073810197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.553883026643874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.678973375919765,
          -2.5728716022004803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.125481265700594,
          -3.103803720955957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.304275050477128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4099331233312946,
          -7,
          -7,
          -7,
          -4.304888879148899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.62058365787334,
          -2.9609461957338317,
          -7,
          -7,
          -7,
          -7,
          -2.7671558660821804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432909992007674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.876025291494317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.395867831233988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.38635625808797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.233554492714523,
          -4.173739713951887,
          -7,
          -4.234390722392193,
          -4.046456142412592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.000021714181245,
          -7,
          -7,
          -4.0468462039458215,
          -7,
          -3.939506772712817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351834943477441,
          -4.20115122765526,
          -7,
          -7,
          -7,
          -7,
          -4.610212864974371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9726887170222147,
          -3.146438135285775,
          -7,
          -7,
          -4.153296449355305,
          -7,
          -7,
          -7,
          -4.562007207036461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.068111617027303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626976455884445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.740575836289971,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9863237770507656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603696366279048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.286231854028553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658202253387015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.596047007545439,
          -7,
          -7,
          -7,
          -3.59841033994433,
          -7,
          -7,
          -1.9867717342662448,
          -2.110589710299249,
          -2.3222192947339195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.436162647040756,
          -7,
          -7,
          -7,
          -4.334996280243225,
          -7,
          -2.561101383649056,
          -7,
          -7,
          -2.2278867046136734,
          -2.225309281725863,
          -7,
          -7,
          -2.2278867046136734,
          -7,
          -3.6981875698661226,
          -7,
          -7,
          -7,
          -7,
          -1.6658935455344326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.655138434811382,
          -7,
          -4.517908137366838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6424645202421213,
          -3.017450729510536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4000196350651586,
          -3.4119562379304016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7275412570285567,
          -7,
          -7,
          -4.250582628965692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.24551266781415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9190780923760737,
          -3.555856841947366,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -7,
          -2.9854264740830017,
          -7,
          -2.428134794028789,
          -2.591064607026499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9637878273455553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.161368002234975,
          -7,
          -1.872156272748293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5877109650189114,
          -4.1951105670203095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9434945159061026,
          -3.129689892199301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7902851640332416,
          -7,
          -7,
          -7,
          -2.462397997898956,
          -7,
          -7,
          -7,
          -7,
          -3.1107580088798876,
          -2.5605044151950564,
          -7,
          -7,
          -4.128915978453837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9344984512435675,
          -7,
          -4.620628739565589,
          -2.6651117370750512,
          -7,
          -7,
          -7,
          -3.0402066275747113,
          -7,
          -7,
          -7,
          -2.5877109650189114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.947776708464738,
          -7,
          -4.830861220005249,
          -7,
          -7,
          -4.0666364684442025,
          -2.6711728427150834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7126497016272113,
          -7,
          -3.0549958615291417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.396094685212617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.386588133907789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.233884108765886,
          -4.174117981254267,
          -7,
          -4.234719704621876,
          -4.046963154123424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.301377292349344,
          -3.4252896164467943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.835341727828342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.502267758392556,
          -7,
          -7,
          -7,
          -7,
          -4.610351363626693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274065436350914,
          -7,
          -7,
          -7,
          -3.852601969338235,
          -7,
          -7,
          -4.302806962741421,
          -4.5621619614618565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.068593980976652,
          -7,
          -7,
          -3.0257153839013404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.740678425227455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603743235378374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2380461031287955,
          -3.287689783936075,
          -2.8388490907372557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2900346113625183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1478308499434595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.971739590887778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9595183769729982,
          -4.178660458538169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.558540578854597,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8588578876206907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7984779980639836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028205119905443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7788744720027396,
          -7,
          -7,
          -3.916980047320382,
          -7,
          -2.205475036740891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.041432164680265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.339782584655998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9836262871245345,
          -7,
          -3.037559289405319,
          -7,
          -7,
          -7,
          -7,
          -4.435414316217528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9614685553507862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.926342446625655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2805702410901008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9161906599805376,
          -7,
          -7,
          -7,
          -7,
          -3.1016449143243836,
          -7,
          -7,
          -2.414137362184477,
          -7,
          -2.8561244442423,
          -7,
          -7,
          -2.506505032404872,
          -2.3434085938038574,
          -7,
          -2.3944516808262164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8887409606828927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.123851640967086,
          -2.1958996524092336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7993405494535817,
          -7,
          -7,
          -5.14938848527283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5774917998372255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.08278537031645,
          -7,
          -7,
          -7,
          -7,
          -3.379305517750582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6849350826408895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3103746420476123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1492191126553797,
          -2.346352974450639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.119585774961784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7501225267834002,
          -2.18998131938412,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -7,
          -4.796910677093591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.830946156923676,
          -7,
          -7,
          -4.067294086315977,
          -7,
          -7,
          -7,
          -7,
          -2.636989101812229,
          -3.424881636631067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6659560294539566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703875777319706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3481490343841624,
          -7,
          -7,
          -7,
          -7,
          -3.8253179093501952,
          -3.2533380053261065,
          -7,
          -7,
          -7,
          -4.2414094968594185,
          -3.7790912038454993,
          -7,
          -7,
          -3.837019948540908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979648514925287,
          -7,
          -7,
          -7,
          -7,
          -4.610915555324175,
          -7,
          -7,
          -7,
          -4.055340099544181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5323721335678773,
          -7,
          -3.4183012913197457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.510455640007325,
          -7,
          -7,
          -7,
          -7,
          -3.9878002857518724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4398062113933303,
          -7,
          -7,
          -7,
          -2.824776462475546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9235229873366637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2706788361447066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.803934849863842,
          -7,
          -7,
          -7,
          -7,
          -4.235928650226638,
          -7,
          -7,
          -2.6541765418779604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8709888137605755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6232492903979003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6722210445716033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7363965022766426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9627196609848174,
          -7,
          -7,
          -7,
          -7,
          -3.6641717053619307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.616212862243485,
          -7,
          -7,
          -2.789228057267335,
          -3.703274177996601,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.261334253799131,
          -7,
          -7,
          -7,
          -7,
          -2.8981764834976764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.56643749219507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2392994791268923,
          -3.2522055549271984,
          -7,
          -7,
          -3.1809855807867304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5256925245050108,
          -7,
          -7,
          -7,
          -4.041116227969485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.038620161949703,
          -7,
          -2.9175055095525466,
          -2.9943171526696366,
          -4.522822283327583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.693726948923647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7707783961691477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039984870959395,
          -7,
          -7,
          -3.15106325335375,
          -7,
          -7,
          -7,
          -2.3483048630481607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.703978825008386,
          -7,
          -3.4708513245261177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.784759894664005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.741939077729199,
          -3.1390956495216904,
          -7,
          -7,
          -7,
          -2.734799829588847,
          -7,
          -7,
          -7,
          -3.295127085252191,
          -7,
          -7,
          -7,
          -7,
          -3.394405594501357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1277525158329733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.931915317081246,
          -7,
          -3.3827372657613304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9786369483844743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6697816152085365,
          -7,
          -2.681241237375587,
          -2.5428254269591797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.160368474792848,
          -2.866793509866322,
          -7,
          -4.501333178645567,
          -7,
          -7,
          -7,
          -3.3433101031623416,
          -7,
          -7,
          -2.934750874663579,
          -3.2195845262142546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.624134702492355,
          -2.741151598851785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7763379096201755,
          -7,
          -7,
          -7,
          -7,
          -3.197280558125619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.496981511355553,
          -3.114610984232173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2121876044039577,
          -7,
          -7,
          -3.440279213235588,
          -4.354314968159569,
          -7,
          -7,
          -2.4279615760912017,
          -2.8172347304254983,
          -7,
          -7,
          -7,
          -2.7741518589547103,
          -3.474507639116976,
          -2.5135505203463375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1489109931093564,
          -7,
          -3.422753941301348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.258365863632017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.398426146305484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.257304790554309,
          -7,
          -4.786914606730178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1528995963937474,
          -3.8755821043278855,
          -3.464084829296133,
          -3.2786011901837955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0796153235269434,
          -7,
          -3.7256666603141784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1932081084944945,
          -7,
          -7,
          -3.7570922201189325,
          -4.503972168426268,
          -3.89440351920064,
          -7,
          -3.338257230246256,
          -7,
          -7,
          -7,
          -4.6424348407896066,
          -3.3305152321703284,
          -7,
          -7,
          -7,
          -7,
          -3.80543288813214,
          -7,
          -7,
          -7,
          -3.2614710422736133,
          -7,
          -2.841359470454855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8027737252919755,
          -7,
          -7,
          -3.422589839851482,
          -3.7008334670285428,
          -7,
          -7,
          -2.739572344450092,
          -7,
          -7,
          -4.1537742267023265,
          -3.0906107078284064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5397032389478253,
          -7,
          -7,
          -7,
          -7,
          -3.35878385060598,
          -4.643728957803573,
          -7,
          -7,
          -7,
          -7,
          -2.9135489579065177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1480882706622184,
          -2.7134905430939424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788168371141168,
          -7,
          -7,
          -7,
          -7,
          -2.7895807121644256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.68411614002016,
          -7,
          -7,
          -2.888179493918325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.738780558484369,
          -3.1514720011315966,
          -7,
          -7,
          -3.7424894645817752,
          -7,
          -2.776701183988411,
          -3.079543007402906,
          -7,
          -7,
          -2.8262908158770794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8415680152280833,
          -7,
          -7,
          -7,
          -3.0810591230013196,
          -7,
          -7,
          -2.7558748556724915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6665179805548807,
          -4.1592663310934945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6972293427597176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4988616889928843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9675573359128724,
          -7,
          -7,
          -7,
          -7,
          -3.408833321776418,
          -7,
          -3.1436392352745433,
          -7,
          -7,
          -7,
          -3.9435439771534546,
          -7,
          -7,
          -7,
          -3.928128319128786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6140296350502608,
          -7,
          -7,
          -3.0398105541483504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.024074987307426,
          -7,
          -7,
          -7,
          -7,
          -3.4681995860726125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5256925245050108,
          -7,
          -3.0362295440862943,
          -7,
          -7,
          -3.759856627340681,
          -7,
          -7,
          -7,
          -7,
          -3.4523998459114416,
          -7,
          -7,
          -7,
          -4.239499684031626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.127428777851599,
          -7,
          -3.927331860048449,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0034605321095067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.613136798211654,
          -7,
          -7,
          -7,
          -2.6437815628948647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.781396305196791,
          -3.964840815368866,
          -7,
          -7,
          -7,
          -1.8003242293348352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.99943504987633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8999767515678005,
          -7,
          -3.540454613671412,
          -7,
          -7,
          -3.8455940931600243,
          -7,
          -7,
          -7,
          -3.524266268766979,
          -7,
          -7,
          -7,
          -7,
          -3.6265456590271294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1383026981662816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1780412001399494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9028727854460796,
          -7,
          -7,
          -3.7238112811795303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0068937079479006,
          -7,
          -2.864511081058392,
          -7,
          -3.608312042697327,
          -4.67482135154191,
          -7,
          -7,
          -3.0043213737826426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2080380493531804,
          -7,
          -7,
          -7,
          -7,
          -3.4363217001397333,
          -2.6652682113991735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.247236549506764,
          -2.8717674683517753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.540579716504454,
          -7,
          -7,
          -7,
          -4.314488702046227,
          -7,
          -7,
          -3.3347887257004363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2940250940953226,
          -7,
          -7,
          -7,
          -4.401838061585477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.989271791641693,
          -3.514547752660286,
          -4.13326259642578,
          -7,
          -3.288249225571986,
          -2.1102947233754246,
          -3.262213705476417,
          -7,
          -2.6567368704836722,
          -7,
          -3.2317243833285163,
          -2.1396272484806373,
          -3.2612628687924934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.411333448612567,
          -4.438558169790535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.40725490056078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.104203634837933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.462068408086943,
          -7,
          -4.7109969149162225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.402588055411201,
          -7,
          -2.6834973176798114,
          -3.978420203258263,
          -4.019178624894263,
          -3.793511005792858,
          -7,
          -7,
          -7,
          -4.075583455193813,
          -3.8356271662098975,
          -3.3809344633307017,
          -7,
          -3.862667950228588,
          -3.7657430414210444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.36891880234938,
          -4.28443073384452,
          -4.475764137731008,
          -7,
          -7,
          -7,
          -4.017596721365986,
          -7,
          -7,
          -3.680969718465897,
          -4.086181804649749,
          -7,
          -7,
          -3.735997884091794,
          -3.993061296812981,
          -7,
          -7,
          -7,
          -3.7027463765507442,
          -7,
          -2.6035052322021435,
          -3.835109009618324,
          -4.271562825432305,
          -7,
          -4.039037170468973,
          -7,
          -7,
          -7,
          -3.7422929779105942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.636126669925523,
          -3.2420442393695508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.174277918292213,
          -7,
          -3.8785217955012063,
          -7,
          -7,
          -3.8783781558498545,
          -4.648769713584033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0711452904510828,
          -7,
          -3.037824750588342,
          -3.2300655512060468,
          -7,
          -7,
          -3.374289987675311,
          -2.5344491888776157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0523090996473234,
          -7,
          -4.347583686308583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5787000814126397,
          -3.146128035678238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.678518379040114,
          -7,
          -7,
          -7,
          -7,
          -2.6989700043360187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9982811398083022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6972293427597176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1795517911651876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.43288915534841,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.994998640442741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658602779715658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5983527098692836,
          -7,
          -7,
          -2.9542425094393248,
          -4.099404372345543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2810333672477277,
          -7,
          -7,
          -7,
          -3.7018269303971394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0362295440862943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7708520116421442,
          -7,
          -7,
          -3.916690771866838,
          -7,
          -7,
          -2.100370545117563,
          -2.278753600952829,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7151673578484576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.772725002459211,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.643338459312974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.940516484932567,
          -3.414824845838442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.433769833924866,
          -7,
          -7,
          -4.496749807394558,
          -7,
          -7,
          -1.9614210940664483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4712917110589387,
          -7,
          -3.4191293077419758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7514330818193473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097909476553979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.955870471452533,
          -7,
          -7,
          -7,
          -2.99211148778695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9903388547876015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.651471852199043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.387781226906038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.065156292208035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.876921843174579,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.691346764134822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.992553517832136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.08059762918686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5504729571065634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2852157604593244,
          -3.452553063228925,
          -7,
          -7,
          -2.7782115648732764,
          -3.212661014432471,
          -7,
          -7,
          -7,
          -3.2708728475314053,
          -7,
          -2.3251909714733467,
          -3.375785504077291,
          -4.023992804606471,
          -4.053846426852253,
          -2.3455779218656394,
          -3.722921711759407,
          -4.027268042466619,
          -7,
          -7,
          -4.028245816572474,
          -3.730136003996678,
          -2.896404763954549,
          -4.02861191506623,
          -7,
          -7,
          -7,
          -4.036549054479152,
          -4.023499381548012,
          -3.729691133696481,
          -7,
          -3.6011179990900035,
          -7,
          -1.94270070784522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.026574118150334,
          -4.0726909550128685,
          -2.2297387094752668,
          -7,
          -3.7268494135432264,
          -3.219060332448861,
          -4.028855809390444,
          -4.0255106728525805,
          -7,
          -4.028205119905443,
          -4.041116227969485,
          -3.759856627340681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.978882520617143,
          -7,
          -7,
          -3.1996376574362504,
          -2.70429623966108,
          -7,
          -4.0306806639999015,
          -7,
          -7,
          -4.023087766995445,
          -7,
          -7,
          -7,
          -3.5629269868278,
          -7,
          -3.571165138386463,
          -4.030963842378275,
          -3.7368743616484226,
          -7,
          -2.2581541481427756,
          -3.338735308799518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.42410541751129,
          -7,
          -3.7221812966649073,
          -2.866356848444443,
          -7,
          -7,
          -7,
          -3.140468759922789,
          -7,
          -7,
          -7,
          -7,
          -3.4425581544959227,
          -3.7243578042264267,
          -7,
          -3.134376352651557,
          -4.03382569395331,
          -2.345093540561045,
          -7,
          -7,
          -7,
          -3.4350476413399647,
          -4.055836851018404,
          -7,
          -3.1814624606874005,
          -2.551640569954477,
          -4.025756314534414,
          -7,
          -3.7316693318286362,
          -3.267835239110218,
          -7,
          -2.9398263372924727,
          -4.060811119791346,
          -7,
          -3.3282572497312364,
          -7,
          -7,
          -7,
          -7,
          -3.211698859219537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9697147408599875,
          -3.6358187213644175,
          -3.035496444963253,
          -4.045674966769105,
          -3.727378569451489,
          -3.5204311260215415,
          -7,
          -4.024321442141565,
          -2.834500179293778,
          -7,
          -3.151905874537198,
          -4.023705042622037,
          -4.0258381642297,
          -3.7247672456463103,
          -2.5746589460548055,
          -7,
          -7,
          -7,
          -2.80365790832937,
          -7,
          -7,
          -3.5739926620579388,
          -3.7382254481425052,
          -3.433889788208712,
          -4.031852631395629,
          -7,
          -4.029261995804175,
          -7,
          -2.762528522447,
          -7,
          -7,
          -7,
          -4.026533264523296,
          -7,
          -7,
          -7,
          -3.0806986228711293,
          -7,
          -2.942776694080424,
          -7,
          -2.341337525385835,
          -2.1934628459235785,
          -4.02649240705284,
          -3.7390578478058996,
          -3.5613399414589013,
          -4.041708420891436,
          -3.745270023988988,
          -3.358734127198011,
          -3.189450207084212,
          -4.0305997219659515,
          -7,
          -4.029221394253928,
          -4.027634965777544,
          -2.8386639300088468,
          -7,
          -3.4220971631317103,
          -7,
          -2.454446134185004,
          -7,
          -3.3976967356393635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0322157032979815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.724808168565719,
          -3.5656510827780115,
          -3.446459496594692,
          -3.179775136236658,
          -2.524514399128848,
          -7,
          -7,
          -7,
          -7,
          -4.023170121121397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1881926846818818,
          -7,
          -7,
          -4.023005397249935,
          -7,
          -7,
          -3.4251672627392926,
          -7,
          -3.7304592600457687,
          -3.581190866388724,
          -7,
          -3.20378055748671,
          -3.1724204775324703,
          -7,
          -7,
          -4.02530586526477,
          -3.3907938501556703,
          -7,
          -3.484071952954621,
          -4.035389709198677,
          -2.543243510293341,
          -7,
          -7,
          -7,
          -3.1607685618611283,
          -3.4483971034577676,
          -3.209055200331437,
          -2.9251646981563364,
          -3.0691869251519095,
          -3.4218506150229584,
          -4.024608796126557,
          -7,
          -7,
          -3.4422053085873574,
          -7,
          -7,
          -4.032256025890453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.211887757793364,
          -7,
          -4.036549054479152,
          -3.7283537820212285,
          -2.174052881785803,
          -7,
          -4.023992804606471,
          -3.058968011900246,
          -3.7231271587956916,
          -4.02428037604708,
          -3.5597869682005565,
          -7,
          -7,
          -4.038818787373656,
          -4.062243441026478,
          -7,
          -4.053923150548575,
          -7,
          -2.7967734227159236,
          -3.3572104190061216,
          -3.7234967187231707,
          -7,
          -7,
          -3.5856486950954656,
          -3.7426465899387362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4293484729236616,
          -7,
          -3.7234967187231707,
          -3.56054423863114,
          -3.181516927920419,
          -3.0066461633496013,
          -4.108666482553972,
          -2.811559527360728,
          -3.731346975545955,
          -3.3619921087578137,
          -2.5117872143143454,
          -3.3577062107846425,
          -7,
          -3.0840596627601995,
          -3.7269308641214662,
          -3.574956775764507,
          -3.0741845459702977,
          -4.056828652637812,
          -4.0244446171313495,
          -7,
          -7,
          -4.042693618178643,
          -7,
          -7,
          -7,
          -4.060546755126169,
          -7,
          -2.9279175919435616,
          -7,
          -7,
          -3.3923283959700776,
          -3.590618948206578,
          -3.682941905826968,
          -7,
          -3.968167620369607,
          -7,
          -3.7091285660594253,
          -3.1164601502801488,
          -3.023265956261281,
          -7,
          -3.5463986973189114,
          -2.9895860127950473,
          -7,
          -3.8267284040809275,
          -3.0395752145302946,
          -3.2115358218543153,
          -3.4275485247671114,
          -3.595921175236594,
          -7,
          -3.5930644316587173,
          -4.2641800750358305,
          -3.171370276441817,
          -4.2499806059095295,
          -3.296421410023919,
          -3.6467956887784694,
          -3.4371866354801193,
          -4.243434936520088,
          -3.4096288416375478,
          -7,
          -3.3223690256376273,
          -3.9547890547379705,
          -4.08334134193701,
          -3.2643297543348835,
          -3.023732456741596,
          -2.8759027157874644,
          -3.486886811075451,
          -3.6354033144631863,
          -3.4350875123045923,
          -2.950090118806048,
          -3.0851790462224917,
          -2.780923392631927,
          -2.7125216046549006,
          -3.0060379549973173,
          -1.8952364476239492,
          -3.7423715832469,
          -2.7311050512159203,
          -4.053923150548575,
          -2.389949983431617,
          -2.031381530425332,
          -2.8218409272004545,
          -2.094441179707738,
          -3.0019319261726443,
          -3.342197014679481,
          -3.76748981033693,
          -2.9645646414975544,
          -3.371621927176021,
          -7,
          -3.0867803295915035,
          -1.3226638131779507,
          -3.321322205630525,
          -4.043833654133147,
          -2.3808361546624934,
          -2.4593222480023207,
          -2.9128490780700087,
          -4.028855809390444,
          -4.088702960351474,
          -4.0303973008567615,
          -1.976211511558734,
          -3.6997799316716846,
          -3.2913022357598494,
          -4.157456768134225,
          -2.0827650918170697,
          -3.5504729571065634,
          -3.6954816764901977,
          -2.4756498276534518,
          -3.0853500502578064,
          -2.959848290501177,
          -3.3244882333076564,
          -3.839289456006147,
          -2.9004199914746116,
          -2.8126125871077585,
          -3.2541047755068098,
          -2.5002744574000397,
          -1.7507143703221413,
          -3.579059168622478,
          -2.1600081910853546,
          -7,
          -3.6113692154627337,
          -2.3976046343494333,
          -2.181630311663954,
          -3.1867949476962183,
          -4.028286509426278,
          -7,
          -4.039929414108561,
          -3.5674772960726626,
          -3.099097680917744,
          -3.5529924979879306,
          -3.0194184346331205,
          -7,
          -3.6276730317666157,
          -2.177623935903965,
          -4.059260404121731,
          -3.7320316968741922,
          -4.026778328659529,
          -2.7982787042255786,
          -3.558388530369896,
          -2.240873600020581,
          -3.0116473234845214,
          -7,
          -7,
          -7,
          -3.078746734273607,
          -3.2709448868349495,
          -4.05922251252969,
          -3.4421268594394014,
          -4.126488570700374,
          -7,
          -7,
          -7,
          -3.7315887651867388,
          -7,
          -2.834674974462744,
          -7,
          -7,
          -3.320834749256372,
          -2.8933757439385097,
          -2.9013652777557017,
          -7,
          -3.625723909525756,
          -3.4354860207578644,
          -7,
          -3.730338067221792,
          -7,
          -4.027920136405803,
          -3.1124038927178743,
          -3.7311857076340007,
          -3.0869527242574843,
          -3.854548935812951,
          -7,
          -3.2322335211147335,
          -3.5691006825019738,
          -3.0883487522885287,
          -7,
          -4.053347392169267,
          -4.029424364058016,
          -4.058577849133225,
          -2.996921912886755,
          -7,
          -7,
          -4.029505525426577,
          -4.148263229636879,
          -3.6224730712781232,
          -4.049334335972284,
          -3.744644971105124,
          -4.176293882538767,
          -3.7373516958037145,
          -2.700350867630475,
          -3.5630457817631846,
          -3.154559214682701,
          -7,
          -7,
          -3.2725841491100423,
          -7,
          -2.387305061142422,
          -7,
          -3.731387283168788,
          -3.2586771829934693,
          -3.606488850442648,
          -7,
          -3.424432415724877,
          -3.04196933677907,
          -3.5700757053216043,
          -3.743078391782139,
          -2.9372949482332396,
          -7,
          -3.4175381194013275,
          -3.2740808398686907,
          -2.7029305877176997,
          -3.396606125927017,
          -3.480581786829169,
          -3.7771367125041726,
          -7,
          -4.02428037604708,
          -3.029834524463506,
          -7,
          -3.4271207975795845,
          -7,
          -3.167472060642541,
          -7,
          -3.1116433067408074,
          -2.8152529759306737,
          -3.7301629511925354,
          -4.02816441942447,
          -7,
          -4.027634965777544,
          -7,
          -4.037386652582377,
          -3.3558727748926644,
          -7,
          -7,
          -4.02848991652189,
          -7,
          -2.2511191040920613,
          -3.725421550074259,
          -7,
          -7,
          -4.029627239047413,
          -7,
          -7,
          -7,
          -3.8098626051382367,
          -3.7952889748486287,
          -3.5674577001569503,
          -4.02848991652189,
          -7,
          -7,
          -7,
          -7,
          -3.0791812460476247,
          -4.03249788285711,
          -3.4322475382686006,
          -2.629875392934101,
          -3.531255325570886,
          -2.5283562564155875,
          -3.5521813388393357,
          -7,
          -4.100198171834132,
          -7,
          -7,
          -2.864333055033393,
          -7,
          -7,
          -2.59402403573142,
          -3.5194670251274163,
          -7,
          -7,
          -7,
          -3.4335698364624765,
          -7,
          -3.444918753773256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6576007704466384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8937062930647133,
          -7,
          -7,
          -7,
          -4.877008322140324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3222192947339195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0253058652647704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.069963937850763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426177686216186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7078539359785987,
          -7,
          -7,
          -7,
          -7,
          -3.465038774776985,
          -7,
          -7,
          -7,
          -7,
          -2.7795964912578244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8407332346118066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7539658658651605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.936513742478893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8662873390841948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092381402367751,
          -7,
          -3.2438644894340767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979120242557178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151768102895178,
          -7,
          -7,
          -4.126012287479145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3961993470957363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.740181037453737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080651735867012,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.032538179260007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4987239707479048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.069742076041645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.364550995353972,
          -7,
          -7,
          -4.7271751242414615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368333380751638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8388490907372557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432820226967818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.315970345456918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.569479251294796,
          -7,
          -3.7208205817703437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576335590293832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1522883443830563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3404441148401185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.072323438293041,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028709489232689,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8316565189450587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3790334318179673,
          -7,
          -4.496182129257268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3654879848909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.796730401424177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.131899229295741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.617052788978206,
          -4.746657547475629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.655234507034295,
          -7,
          -4.391887391645515,
          -7,
          -7,
          -4.65107439073182,
          -7,
          -7,
          -7,
          -5.101159141699892,
          -3.86457040685343,
          -4.784253445375443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.579863590864233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.34713478291002,
          -4.3870515144724935,
          -7,
          -7,
          -7,
          -4.301398989173564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.35210530333973,
          -4.67837267930482,
          -5.172170756683376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941620737855168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6322547766847135,
          -7,
          -7,
          -7,
          -4.00702192557868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0261245167454502,
          -7,
          -7,
          -3.9854713832895876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.326069466588894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.467578510402737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.399846712712922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028835490094027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779845309661779,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7528164311882715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.147861748487239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.795184589682424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274890680081923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388278863459639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.1461280356782382,
          -4.727191403365907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1075491297446862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.60535892548885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.4328234331816025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.579085879525616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.134304634954544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080637308078068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.298197867109815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2943100431280117,
          -3.1256438923573917,
          -3.278296208091274,
          -7,
          -3.15904054763018,
          -3.4790711958039306,
          -7,
          -7,
          -7,
          -2.8003733548913496,
          -7,
          -3.6848004941944112,
          -2.9014583213961123,
          -7,
          -7,
          -3.2638445159718152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.800625445307701,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0263103588818407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.498172660636544,
          -2.7157462885921344,
          -7,
          -7,
          -3.4670158184384356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4523998459114416,
          -7,
          -7,
          -7,
          -2.978882520617143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3845326154942486,
          -3.0566190372544866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7913020858835584,
          -3.0492180226701815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4370707382903847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.518777068926775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0002604985473904,
          -3.0390478577317825,
          -7,
          -7,
          -3.023046584075505,
          -4.750076199567835,
          -7,
          -7,
          -7,
          -3.3552599055273786,
          -3.2971036501492565,
          -7,
          -7,
          -7,
          -7,
          -3.4346088189721344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.811038508604216,
          -3.332337449453026,
          -3.037924256713626,
          -7,
          -3.302114376956201,
          -2.6173314844704563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.271648027535343,
          -7,
          -7,
          -2.8191050325414984,
          -3.0362295440862943,
          -7,
          -7,
          -3.41161970596323,
          -3.0555694400609896,
          -7,
          -7,
          -7,
          -3.3062105081677613,
          -2.08278537031645,
          -2.7912647463631677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2794387882870204,
          -3.5298151966446305,
          -7,
          -3.949194774237982,
          -7,
          -3.418135498425232,
          -3.363746249326481,
          -7,
          -7,
          -7,
          -3.368286884902131,
          -7,
          -3.440279213235588,
          -2.635282637998212,
          -7,
          -7,
          -3.004536317851323,
          -7,
          -2.254135607904569,
          -7,
          -7,
          -7,
          -3.396068515800304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3941013020400446,
          -4.15464608517337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3251049829714074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6160551949765862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.816837630902035,
          -7,
          -4.0431001811622975,
          -7,
          -7,
          -3.2860071220794747,
          -3.7652959296980564,
          -3.107718610520263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.381295623003826,
          -7,
          -7,
          -3.0203612826477078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721676680229461,
          -7,
          -7,
          -3.0898462599613077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.598561402497095,
          -3.433929765608464,
          -7,
          -7,
          -7,
          -3.4602963267574753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1820068258650944,
          -7,
          -3.812408772969734,
          -3.322839272686321,
          -7,
          -3.2427779850240452,
          -7,
          -7,
          -2.7518562395924007,
          -7,
          -3.4158077276355434,
          -3.643057683751453,
          -7,
          -7,
          -7,
          -7,
          -3.3729120029701067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8139677453372975,
          -7,
          -7,
          -7,
          -4.668078260148475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.59982850903801,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.432086985778083,
          -7,
          -3.8916377965385367,
          -3.7363765800544826,
          -3.8522359394118872,
          -3.376576957056512,
          -7,
          -7,
          -2.899737259826841,
          -3.1898270631206618,
          -3.2177470732627937,
          -7,
          -3.344336123386771,
          -2.982206601075478,
          -7,
          -2.565785701176179,
          -3.4913616938342726,
          -3.317436496535099,
          -7,
          -4.2308829988575924,
          -7,
          -7,
          -3.6069900972210145,
          -3.2880702826432477,
          -4.87632755539097,
          -7,
          -3.0778522036135776,
          -7,
          -4.1518395454985555,
          -7,
          -3.908923478766375,
          -7,
          -4.117105502761251,
          -7,
          -7,
          -7,
          -4.313550871333505,
          -7,
          -3.485295438726089,
          -7,
          -3.9039847969050228,
          -7,
          -7,
          -2.96865932865102,
          -7,
          -7,
          -4.649996507466041,
          -7,
          -3.555215405126073,
          -7,
          -4.077404246398098,
          -7,
          -2.9995654882259823,
          -7,
          -7,
          -7,
          -4.059108817913594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055340099544181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.485199533870229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7535830588929064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7163581508819816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1998648337322555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.302114376956201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3233896221747057,
          -3.6924944075030846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7132174481438476,
          -7,
          -7,
          -7,
          -3.6591552809406296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7212333700172775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8167146455230045,
          -7,
          -7,
          -7,
          -3.641275757231913,
          -3.364550995353972,
          -7,
          -2.951823035315912,
          -7,
          -7,
          -7,
          -3.4409090820652177,
          -7,
          -2.6972293427597176,
          -2.6183967876034884,
          -3.1081061568911568,
          -2.395326393069351,
          -2.761927838420529,
          -7,
          -2.81424759573192,
          -2.7795964912578244,
          -7,
          -3.043314635810413,
          -2.306067436355595,
          -7,
          -2.7774268223893115,
          -2.5185139398778875,
          -7,
          -2.6866362692622934,
          -7,
          -7,
          -3.2805783703680764,
          -7,
          -3.865597435075882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.765420173578722,
          -2.8268034169712943,
          -2.745855195173729,
          -7,
          -2.8842287696326037,
          -7,
          -7,
          -7,
          -2.7788744720027396,
          -7,
          -7,
          -2.7708520116421442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.709693869727792,
          -4.226883328390917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7259116322950483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.79987050007688,
          -7,
          -3.8239695379160965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.624797578960761,
          -7,
          -3.373243118267363,
          -7,
          -2.524396122103842,
          -7,
          -7,
          -7,
          -7,
          -2.9552065375419416,
          -3.8078055322706246,
          -7,
          -7,
          -7,
          -4.040119522407977,
          -7,
          -2.6259979988260516,
          -7,
          -2.3339508043872472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1986570869544226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.462996612028056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6473829701146196,
          -7,
          -2.6334684555795866,
          -7,
          -7,
          -2.432969290874406,
          -3.3872118003137306,
          -7,
          -7,
          -7,
          -2.8915374576725643,
          -7,
          -7,
          -2.1647245241698965,
          -7,
          -2.2972131959896416,
          -7,
          -2.1158481557195747,
          -7,
          -7,
          -3.2533218482368023,
          -7,
          -2.696356388733332,
          -7,
          -2.267953536862395,
          -7,
          -7,
          -7,
          -2.8208579894397,
          -7,
          -3.8750033536000412,
          -7,
          -7,
          -2.873163691847328,
          -7,
          -7,
          -7,
          -7,
          -3.024074987307426,
          -7,
          -7,
          -2.339782584655998,
          -7,
          -7,
          -2.7686381012476144,
          -2.3789167713586075,
          -7,
          -7,
          -7,
          -7,
          -2.6910814921229687,
          -3.0843975191411492,
          -2.6830470382388496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.15896526038341,
          -2.3944516808262164,
          -7,
          -7,
          -7,
          -2.845098040014257,
          -7,
          -7,
          -7,
          -7,
          -2.6857417386022635,
          -7,
          -7,
          -2.7363965022766426,
          -2.9863237770507656,
          -7,
          -2.705007959333336,
          -4.548352559894337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8555191556678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.343080204765978,
          -2.8529589869476504,
          -7,
          -7,
          -7,
          -2.7209857441537393,
          -7,
          -2.765668554759014,
          -7,
          -2.5327543789924976,
          -2.8353734524700087,
          -7,
          -7,
          -2.2193939834967513,
          -7,
          -7,
          -7,
          -7,
          -2.4727564493172123,
          -3.111766433052562,
          -2.8915374576725643,
          -4.501565871851012,
          -7,
          -7,
          -7,
          -2.946452265013073,
          -3.0674428427763805,
          -7,
          -2.236033147117636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0038911662369103,
          -7,
          -7,
          -7,
          -2.2278867046136734,
          -7,
          -7,
          -7,
          -7,
          -2.6266336114657944,
          -3.049605612594973,
          -7,
          -7,
          -4.610276792917653,
          -2.507855871695831,
          -7,
          -2.3264821619178067,
          -2.7024305364455254,
          -7,
          -1.9515533709285438,
          -7,
          -7,
          -2.9370161074648142,
          -2.318957251879195,
          -7,
          -3.097604328874411,
          -7,
          -4.798084105211312,
          -2.338788396167112,
          -7,
          -7,
          -7,
          -7,
          -2.516755660221549,
          -2.0881360887005513,
          -2.2616593037647066,
          -7,
          -7,
          -2.681241237375587,
          -7,
          -2.534026106056135,
          -7,
          -7,
          -7,
          -7,
          -3.4892551683692608,
          -3.4429498695778618,
          -4.58844138876869,
          -7,
          -3.1598678470925665,
          -2.776368707370917,
          -2.422917980767662,
          -7,
          -2.6364878963533656,
          -7,
          -2.780317312140151,
          -2.7768464086952993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -7,
          -2.246744709723841,
          -7,
          -2.822494985278751,
          -7,
          -7,
          -4.621134720505861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.434608818972134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.706777504386875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8564267724702446,
          -4.27378807956752,
          -3.4644469632811794,
          -3.4561381965502913,
          -7,
          -7,
          -7,
          -4.546666025070184,
          -3.200440076436431,
          -3.2803506930460054,
          -7,
          -7,
          -2.948086796418994,
          -7,
          -7,
          -7,
          -2.530199698203082,
          -7,
          -7,
          -7,
          -7,
          -3.757415009780414,
          -4.379101469283612,
          -7,
          -7,
          -3.0402066275747113,
          -7,
          -4.313455921670493,
          -7,
          -7,
          -7,
          -7,
          -2.4683473304121573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165481742822164,
          -7,
          -2.851869600729766,
          -3.5664696331901315,
          -7,
          -7,
          -4.335146862569169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.780317312140151,
          -7,
          -7,
          -7,
          -3.001863462692524,
          -7,
          -2.8606374167737547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.800717078282385,
          -7,
          -4.028987861649464,
          -2.7948364578145615,
          -2.559108289366632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5199591807520685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.473326360897987,
          -3.9448477208632444,
          -7,
          -7,
          -3.415974411376566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9849771264154934,
          -7,
          -2.973589623427257,
          -3.149834696715785,
          -7,
          -7,
          -7,
          -3.3432115901797474,
          -7,
          -3.0923696996291206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.801403710017355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9324737646771535,
          -3.391748601849537,
          -7,
          -7,
          -2.8976270912904414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8494194137968996,
          -7,
          -7,
          -7,
          -7,
          -2.9309490311675233,
          -2.5554975061310574,
          -2.698535492562001,
          -3.442636525782232,
          -3.094471128641645,
          -2.699693225955115,
          -3.0856472882968564,
          -3.7506626461340558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.288383384399775,
          -3.002957585345823,
          -7,
          -7,
          -2.7686381012476144,
          -7,
          -2.918554530550274,
          -3.1085650237328344,
          -7,
          -7,
          -7,
          -7,
          -3.3813257060905904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.704579449696299,
          -2.783903579272735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6923180442592787,
          -7,
          -7,
          -7,
          -7,
          -3.40226138245468,
          -7,
          -7,
          -4.285016917629171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6577631574494944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.877210039451698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557567349330712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2182728535714475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.53655844257153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.056790548274383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.47712125471966255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3951515915045425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.359984200595567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727508724388225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.493411575048662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6804714924842656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0689276116820716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0107238653917734,
          -4.543459606069367,
          -7,
          -7,
          -7,
          -7,
          -2.8965262174895554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.300769340770549,
          -7,
          -7,
          -7,
          -7,
          -4.541454428747589,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8743465023900985,
          -4.377192379575923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.631960961368071,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1344958558346736,
          -7,
          -7,
          -2.6940198963087196,
          -3.3726358805817207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.44544851426605,
          -7,
          -7,
          -3.126131407261984,
          -3.800814417138437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.26256973321755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.876217840591642,
          -7,
          -7,
          -7,
          -3.1678684699514594,
          -7,
          -7,
          -2.916980047320382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1354506993455136,
          -7,
          -7,
          -7,
          -2.847572659142112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1996376574362504,
          -7,
          -7,
          -7,
          -7,
          -3.3845326154942486,
          -2.709693869727792,
          -7,
          -7,
          -3.7518946880437474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.244953855620354,
          -2.9694159123539814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.104487111312395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.075692918201804,
          -7,
          -7,
          -7,
          -7,
          -2.664328518680805,
          -7,
          -3.5683190850951116,
          -3.4125949311184796,
          -7,
          -7,
          -7,
          -4.739841223173554,
          -7,
          -7,
          -3.1818435879447726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.71281800020785,
          -7,
          -3.485863329597335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.140193678578631,
          -7,
          -7,
          -7,
          -3.4872798164430687,
          -7,
          -7,
          -7,
          -2.9375178920173464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7772414967636383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.385202520149573,
          -7,
          -7,
          -3.771229095215522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1601682929585118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7708520116421442,
          -7,
          -7,
          -7,
          -2.6566024919927442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7792356316758635,
          -7,
          -3.8718339990495183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.450403086155366,
          -7,
          -7,
          -7,
          -2.7902851640332416,
          -7,
          -7,
          -2.9425867266347816,
          -7,
          -4.50275476578036,
          -7,
          -7,
          -7,
          -7,
          -2.796921075330169,
          -7,
          -7,
          -3.2460059040760294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.611202692182174,
          -2.8651039746411278,
          -2.7671558660821804,
          -3.482659240683335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.756853857758851,
          -7,
          -7,
          -7,
          -7,
          -3.1975562131535367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2827353726210187,
          -7,
          -7,
          -7,
          -7,
          -3.4933186082321015,
          -7,
          -4.178370941136013,
          -7,
          -7,
          -4.072543985643648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.80514729780041,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.102800608390914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2790278056227207,
          -7,
          -4.575845718353445,
          -7,
          -3.4626974081017172,
          -7,
          -3.764512374855157,
          -3.126780577012009,
          -3.4334990460631887,
          -7,
          -7,
          -7,
          -7,
          -3.0344680227550427,
          -7,
          -7,
          -7,
          -7,
          -3.5403294747908736,
          -7,
          -7,
          -7,
          -4.361236616731331,
          -3.8353371955474906,
          -4.8725291977811604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040829711665509,
          -3.642167634404945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6817837664678814,
          -7,
          -7,
          -3.182414652434554,
          -7,
          -3.9099516346165966,
          -4.266772463513072,
          -7,
          -4.637069241035025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.086003705618382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.644753609506606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.740546896566616,
          -7,
          -7,
          -4.214658438879918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.850491311089423,
          -2.933461978575007,
          -3.3119656603683665,
          -7,
          -2.8148273565661532,
          -2.562356601630755,
          -7,
          -7,
          -7,
          -3.9307962629833004,
          -7,
          -3.06096750474098,
          -3.1268238205131804,
          -7,
          -3.7575731524225557,
          -2.14197367709603,
          -7,
          -7,
          -7,
          -3.9183187216495976,
          -7,
          -7,
          -3.0468520107260044,
          -3.741099049455883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.251126984977872,
          -7,
          -2.0556719515266586,
          -7,
          -4.222117928758222,
          -4.221674997070769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2473102774556555,
          -2.5627029631478573,
          -4.216904498521672,
          -3.916822284595912,
          -3.2414717675507636,
          -3.519302849235429,
          -3.9152414973061944,
          -7,
          -3.916980047320382,
          -7,
          -4.239499684031626,
          -3.916690771866838,
          -7,
          -7,
          -2.70429623966108,
          -7,
          -4.214843848047698,
          -7,
          -7,
          -3.0566190372544866,
          -4.226883328390917,
          -7,
          -3.7518946880437474,
          -7,
          -3.9146339999844666,
          -7,
          -7,
          -3.7392294144195337,
          -7,
          -7,
          -7,
          -7,
          -4.225851810818157,
          -4.220369632451394,
          -7,
          -4.2198463860243605,
          -3.7471786713601642,
          -3.6263146990939448,
          -2.19571222376197,
          -3.622214022966295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216904498521672,
          -4.215928229339918,
          -7,
          -2.831751312022354,
          -7,
          -7,
          -7,
          -3.927319024959656,
          -7,
          -7,
          -7,
          -7,
          -3.4504800546060603,
          -4.216297886630392,
          -4.215611129612849,
          -3.622214022966295,
          -4.221701064384597,
          -3.401369205272897,
          -7,
          -7,
          -4.216772698429039,
          -3.746763897156223,
          -4.236108801587282,
          -4.216245097705822,
          -2.7578647280763793,
          -2.31492005599242,
          -7,
          -3.37863146935062,
          -4.221022805204841,
          -3.3053513694466234,
          -4.217062605852551,
          -3.193453484763139,
          -3.5402293377182827,
          -4.225050696138049,
          -4.217641840773327,
          -7,
          -3.5212165635672568,
          -4.214711421005384,
          -7,
          -3.501692431974699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5437784181428738,
          -3.797521439979663,
          -2.797890483058349,
          -7,
          -3.9171640314290026,
          -3.7486918264884537,
          -7,
          -4.215558257141162,
          -3.92451188152325,
          -4.273417994771454,
          -3.934826573088993,
          -7,
          -3.7393085761565885,
          -7,
          -2.3848440940143085,
          -7,
          -7,
          -3.916559219301114,
          -3.5235383717036526,
          -7,
          -7,
          -4.233097687864703,
          -7,
          -7,
          -4.220421922437841,
          -3.925441019653158,
          -7,
          -7,
          -2.188550161961675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.518013555046075,
          -7,
          -3.6509143340199595,
          -4.214684930750601,
          -3.4662372137034914,
          -4.215082115013175,
          -7,
          -2.6306215619417825,
          -7,
          -7,
          -3.7475930498107353,
          -7,
          -4.229886529245892,
          -4.237543738142874,
          -7,
          -3.617393545748848,
          -3.9217124803626198,
          -3.7414930150254317,
          -4.2176944602053785,
          -3.3422746006428197,
          -7,
          -7,
          -7,
          -1.7347722492070448,
          -7,
          -3.485295438726089,
          -7,
          -7,
          -7,
          -3.9159008580770402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.261334253799131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.227629649571009,
          -3.5322701446090563,
          -4.289633539009645,
          -2.5372058865181337,
          -7,
          -7,
          -7,
          -4.227243781503063,
          -7,
          -4.21532025132993,
          -4.221101119961506,
          -3.5171694962671247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1126720171171325,
          -7,
          -7,
          -7,
          -3.7388598020722004,
          -4.217246991685393,
          -7,
          -3.9141579738331505,
          -7,
          -7,
          -7,
          -2.947643745820492,
          -3.471144965160633,
          -4.214896807560221,
          -7,
          -7,
          -3.7817793020639456,
          -3.924641047417163,
          -2.5738451016256025,
          -3.9216344610537055,
          -3.086378085628699,
          -3.069430221462924,
          -3.3698252448806407,
          -7,
          -3.7063550077687095,
          -3.387313538406589,
          -3.1555637545804265,
          -3.343580898698759,
          -3.203527358754229,
          -7,
          -4.215743282637605,
          -4.2151085810530935,
          -4.218640521413849,
          -4.228656958108935,
          -3.922439985497939,
          -7,
          -7,
          -4.2201865679032755,
          -7,
          -7,
          -7,
          -4.217088951479171,
          -3.3729580063049203,
          -3.754297359188641,
          -3.2230024392104095,
          -4.218876715052756,
          -3.221483277582076,
          -3.7420177471401384,
          -7,
          -3.0176890582210874,
          -7,
          -7,
          -7,
          -4.217246991685393,
          -7,
          -4.2249472187770865,
          -3.9392695863387313,
          -3.92054071650248,
          -3.9337655925566613,
          -7,
          -2.6493132876666134,
          -3.9354568807116097,
          -7,
          -7,
          -7,
          -3.462397997898956,
          -3.6259551837738253,
          -7,
          -7,
          -4.222716471147583,
          -7,
          -7,
          -3.9137344010040573,
          -7,
          -7,
          -7,
          -7,
          -4.217352319881362,
          -1.8397016936749504,
          -3.9706257766882946,
          -2.3551696329233685,
          -4.220813896785491,
          -7,
          -2.805619780113231,
          -3.4584615778161254,
          -7,
          -7,
          -7,
          -3.7565093254448008,
          -3.1001866778489813,
          -3.6345528368718063,
          -7,
          -7,
          -7,
          -3.9263939002696824,
          -7,
          -7,
          -7,
          -3.3938258059781585,
          -7,
          -3.1894669186239772,
          -7,
          -7,
          -4.159198608378712,
          -4.012855294834725,
          -4.541254649786259,
          -7,
          -3.934720591598597,
          -4.261999948651827,
          -4.326540668516562,
          -3.711733434874681,
          -3.9439518176496353,
          -7,
          -7,
          -4.031634642470658,
          -4.010808597512207,
          -3.26743370009934,
          -4.612423560664503,
          -4.546308179871572,
          -3.910197369966001,
          -4.78597723416667,
          -4.416640507338281,
          -3.9761894392304566,
          -7,
          -3.4909076706335322,
          -7,
          -4.410254078446397,
          -7,
          -4.007050413245592,
          -3.6523132991844616,
          -4.647402532488529,
          -7,
          -3.9797824326358735,
          -3.914911441141365,
          -4.035917794967079,
          -4.524370154542358,
          -3.8926371317827746,
          -7,
          -3.9226605943560844,
          -3.8364665358773564,
          -4.284994386722994,
          -4.132355761753956,
          -3.1245728608647534,
          -4.239549720840473,
          -3.3129012281886356,
          -2.9795843128465216,
          -4.034187120793453,
          -3.9269081017054357,
          -3.4384948823144637,
          -4.234846169921364,
          -2.5018548537616296,
          -3.5694324359249388,
          -3.7738839187739726,
          -4.145320738918325,
          -2.599970358674706,
          -4.02639024655699,
          -4.244573972817435,
          -3.856265556939869,
          -7,
          -7,
          -3.9845723156216324,
          -2.719096395032266,
          -3.9645660274236105,
          -7,
          -2.591087102920519,
          -2.7746925762144707,
          -3.0895835270087257,
          -7,
          -3.780869132399668,
          -7,
          -3.0397343447526954,
          -7,
          -2.5205572453155787,
          -3.191343513169289,
          -3.5378977644842133,
          -7,
          -3.2022577163595325,
          -3.8180608567577408,
          -3.3689807055782293,
          -4.2486352446993285,
          -3.314330782520869,
          -4.293738117783524,
          -3.7068457481036043,
          -3.7987887139512493,
          -4.220944476323413,
          -3.0979972823670283,
          -3.0142569205658902,
          -4.2364364854163306,
          -2.7751873723527694,
          -3.9399682905513362,
          -4.258038338370556,
          -3.350807759477898,
          -2.9304889211886853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8125122842899826,
          -7,
          -3.637689819118401,
          -7,
          -4.269139196792179,
          -4.113625867244077,
          -4.2383723290283255,
          -7,
          -7,
          -3.869954941350072,
          -7,
          -3.7270085981532355,
          -4.234770295160916,
          -7,
          -7,
          -7,
          -4.2518084986240465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.220970587520289,
          -7,
          -7,
          -7,
          -7,
          -3.960489804258006,
          -3.6985644735424197,
          -4.154393537956997,
          -7,
          -7,
          -3.622058519778418,
          -4.244994166139669,
          -4.2201604095245955,
          -7,
          -7,
          -3.3712757194554817,
          -7,
          -7,
          -4.304512069624235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.23792056635038,
          -4.275138523943827,
          -7,
          -3.9167433817375144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.387494700369401,
          -7,
          -4.2721666251407875,
          -7,
          -7,
          -3.913760886412323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.074084689028244,
          -3.753302119172978,
          -7,
          -3.428357555885853,
          -7,
          -7,
          -7,
          -4.03243743124139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6386015599717445,
          -7,
          -7,
          -7,
          -3.963386391534554,
          -7,
          -7,
          -3.849284251626279,
          -3.8646692651730175,
          -7,
          -7,
          -7,
          -7,
          -4.224014811372864,
          -3.633443205166375,
          -7,
          -7,
          -7,
          -7,
          -3.783331762887424,
          -7,
          -4.2255935481548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.273279131626577,
          -7,
          -4.228810845011355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.288919605661727,
          -3.9797759327296856,
          -7,
          -7,
          -4.2659022043017565,
          -7,
          -7,
          -3.8474369209063135,
          -7,
          -7,
          -4.247703281934172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6236627073562047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334272757407155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.695043658821294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9146339999844666,
          -7,
          -1.501254934436382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517433440897774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0413926851582254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0253058652647704,
          -7,
          -2.6201360549737576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8920946026904806,
          -2.6646419755561257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070960915800934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3944516808262164,
          -7,
          -7,
          -3.3291130026818196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1936810295412816,
          -7,
          -7,
          -7,
          -7,
          -3.465289884631858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9689496809813427,
          -7,
          -7,
          -2.5490032620257876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3016809492935764,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6434526764861874,
          -1.5185139398778875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4959603948817053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9812294874200007,
          -7,
          -7,
          -7,
          -0.6690067809585756,
          -1.26884531229258,
          -1.7018556925735069,
          -7,
          -2.4082399653118496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3664229572259727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4616485680634552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8239087409443189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432873126468675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8715729355458786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9995220131289035,
          -2.7679799545304054,
          -7,
          -7,
          -7,
          -4.5413545507544155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.17206264582066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4533795039767075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5064599319861283,
          -7,
          -7,
          -7,
          -7,
          -3.682686478249768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024619055253279,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.338605881147866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779711903026216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5848963441374497,
          -7,
          -7,
          -3.4077307280263356,
          -7,
          -7,
          -7,
          -3.716337287889549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0090470096602795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.321598430465344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8810421081934057,
          -7,
          -7,
          -7,
          -7,
          -3.6388884247050757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1247215350624358,
          -7,
          -7,
          -2.382917135087531,
          -3.599066782849663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5877109650189114,
          -7,
          -7,
          -7,
          -3.7350996531988936,
          -2.3242824552976926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1156105116742996,
          -7,
          -7,
          -2.4671639659690903,
          -2.8037131100453947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.205475036740891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0306806639999015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.501254934436382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3138672203691537,
          -7,
          -2.4409090820652177,
          -7,
          -2.7528164311882715,
          -7,
          -3.439937652477201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9311187105921872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9463294268049558,
          -7,
          -7,
          -7,
          -7,
          -2.0170333392987803,
          -2.103803720955957,
          -7,
          -1.8991949431084194,
          -7,
          -3.3628969678025444,
          -2.5037906830571814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8232133132826673,
          -3.6221449173122546,
          -7,
          -7,
          -7,
          -4.7369459952260415,
          -7,
          -7,
          -2.5839540689101295,
          -7,
          -7,
          -7,
          -2.311753861055754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8260748027008264,
          -2.298853076409707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9330532103693867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.076458387712152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8115750058705933,
          -7,
          -7,
          -2.81887727846276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.18700767354478,
          -7,
          -7,
          -7,
          -7,
          -2.3819516782648016,
          -7,
          -2.1868151244474543,
          -2.7649229846498886,
          -2.5171958979499744,
          -2.412180447786648,
          -7,
          -7,
          -7,
          -2.7024305364455254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.855115160771781,
          -7,
          -2.1383026981662816,
          -2.143014800254095,
          -7,
          -2.311753861055754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3126004392612596,
          -7,
          -1.8016323462331667,
          -1.255272505103306,
          -2.0492180226701815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5162708827293403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5106790310322102,
          -7,
          -7,
          -7,
          -2.089905111439398,
          -1.184524426592544,
          -0.7991541969590241,
          -2.334453751150931,
          -2.6085260335771943,
          -7,
          -2.423245873936808,
          -7,
          -2.1894903136993675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.690373306916059,
          -7,
          -4.020568434801363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.561101383649056,
          -7,
          -7,
          -7,
          -7,
          -2.5378190950732744,
          -2.011630850368626,
          -2.7259116322950483,
          -7,
          -7,
          -7,
          -7,
          -2.3979400086720375,
          -7,
          -7,
          -2.651116416049525,
          -7,
          -2.1172712956557644,
          -1.4419568376564116,
          -3.8290463368531826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.269512944217916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.984132478110988,
          -2.5386575016693786,
          -7,
          -7,
          -7,
          -7,
          -2.550228353055094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9533246963891853,
          -3.397070549959409,
          -5.433113497569717,
          -7,
          -2.4627722284106115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.489489731962272,
          -3.4347285417797577,
          -7,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -3.0599418880619544,
          -7,
          -2.4720246977002813,
          -7,
          -7,
          -4.618236424563806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.39776625612645,
          -7,
          -7,
          -7,
          -4.097870189257832,
          -7,
          -4.501613763802906,
          -4.393873404149383,
          -3.977266212427293,
          -3.4852776801653578,
          -4.175009000975738,
          -7,
          -7,
          -7,
          -4.800510876894368,
          -7,
          -4.182956469055351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7043993494928875,
          -4.2224563366792465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.087994255099714,
          -7,
          -7,
          -4.094447835204867,
          -3.349255936352989,
          -2.020052401871201,
          -7,
          -7,
          -7,
          -4.242168589973666,
          -3.7834747875822465,
          -2.910357557272878,
          -7,
          -4.140036410975282,
          -3.7038070652743285,
          -7,
          -3.427323786357247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.450922358675277,
          -3.979844176893234,
          -4.695367834387965,
          -7,
          -7,
          -7,
          -3.9125090106953726,
          -7,
          -7,
          -2.825209673964737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0424846400112133,
          -3.1269427179442277,
          -7,
          -3.701848502207992,
          -4.086347964543191,
          -7,
          -4.332347551556558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8431882693117134,
          -2.5728716022004803,
          -3.070037866607755,
          -7,
          -3.3774883833761327,
          -2.9897167199481047,
          -3.04688519083771,
          -7,
          -7,
          -3.081635301502951,
          -7,
          -3.7250434005491395,
          -2.6852937813867843,
          -7,
          -7,
          -3.0461828907408814,
          -7,
          -7,
          -7,
          -7,
          -2.47928731647617,
          -7,
          -7,
          -7,
          -2.334453751150931,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -2.833714719570962,
          -4.13946977558943,
          -7,
          -7,
          -2.4463818122224423,
          -7,
          -7,
          -7,
          -7,
          -3.4189638307036225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5893910231369333,
          -7,
          -7,
          -7,
          -2.244277120801843,
          -3.0398105541483504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808075868091307,
          -7,
          -7,
          -7,
          -7,
          -3.512828569933557,
          -2.1896306576921556,
          -7,
          -2.2287424575642567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4353665066126613,
          -3.250175948083925,
          -7,
          -1.9746651808046278,
          -2.7551122663950713,
          -2.905256048748451,
          -7,
          -7,
          -7,
          -7,
          -2.9731278535996988,
          -3.251232527301566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.968996326648312,
          -7,
          -7,
          -3.2681097298084785,
          -3.358717226442781,
          -3.1222158782728267,
          -7,
          -4.282123418809911,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.741151598851785,
          -7,
          -7,
          -7,
          -2.214843848047698,
          -7,
          -4.151339200296363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8674674878590514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -7,
          -3.6670792054642165,
          -7,
          -7,
          -7,
          -7,
          -3.351603072419129,
          -7,
          -7,
          -4.278707883337975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.876956436827322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.100370545117563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8808135922807914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9030899869919435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.069631102620343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7271507044105965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6431070774941166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576283747648257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334835601526356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.20682587603185,
          -7,
          -3.697490887171057,
          -7,
          -7,
          -3.0546130545568877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.278753600952829,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7392294144195337,
          -7,
          -7,
          -1.8808135922807914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5070458724273257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.398634324538392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6658935455344326,
          -7,
          -4.071992407124176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.297760511099134,
          -7,
          -2.7209857441537393,
          -7,
          -2.2278867046136734,
          -4.125562586641175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.225309281725863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067833086234314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9818186071706636,
          -7,
          -2.414973347970818,
          -7,
          -7,
          -7,
          -3.1095785469043866,
          -7,
          -7,
          -7,
          -3.9120093755869783,
          -7,
          -3.307709923404807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149200631645913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.478566495593843,
          -7,
          -7,
          -7,
          -7,
          -2.214843848047698,
          -7,
          -7,
          -2.61066016308988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.667452952889954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1318848046615555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8769871844277386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784189205380961,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351931519893126,
          -4.9793707966348855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941576025408112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.676205706771244,
          -7,
          -7,
          -4.3027204498961344,
          -7,
          -7,
          -4.632163613891242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.627027712771981,
          -2.6268534146667255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3394514413064407,
          -7,
          -2.44870631990508,
          -7,
          -2.287801729930226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9294189257142926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2833012287035497,
          -2.367355921026019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4787684460657005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.588047496986083,
          -2.833784374656479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3010299956639813,
          -7,
          -2.271841606536499,
          -7,
          -2.632457292184724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.876956436827322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.255983682892567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023087766995445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3979400086720375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.552668216112193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.801383126852731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080619272667835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.827553882825746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.830749013705206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.952550293898202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.18089014193745,
          -7,
          -7,
          -7,
          -7,
          -3.625723909525756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8963057074660803,
          -7,
          -7,
          -7,
          -3.9741085282798463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8920946026904806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.395588463568244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7259116322950483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9030899869919435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7715874808812555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.756141445883285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.434864187741935,
          -7,
          -7,
          -3.0107238653917734,
          -7,
          -7,
          -2.305351369446624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.773233679871393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -7,
          -3.1251744325010917,
          -7,
          -7,
          -2.3521825181113627,
          -7,
          -2.812244696800369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.848189116991399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7489628612561616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.855216194733363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2012149920125177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1245042248342823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4063698354692677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.594760752586463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7649229846498886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.131871982362283,
          -7,
          -7,
          -4.543608690196552,
          -7,
          -7,
          -7,
          -7,
          -2.1997551772534747,
          -3.413467412985825,
          -2.963787827345555,
          -2.0043213737826426,
          -7,
          -7,
          -2.7442929831226763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.234750837958704,
          -7,
          -7,
          -4.315823457751156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.10110064877518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703282778142782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9999565683801928,
          -3.4239827296771757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351776987317764,
          -4.9793343613877905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.302633919813779,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5073610516826004,
          -2.3873898263387296,
          -3.0191162904470725,
          -7,
          -7,
          -3.683587317572767,
          -7,
          -7,
          -7,
          -3.7717344253867693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4144719496293026,
          -7,
          -7,
          -3.4628470358316736,
          -7,
          -7,
          -7,
          -2.1789769472931693,
          -7,
          -3.823148059810694,
          -7,
          -7,
          -7,
          -3.5256726091346264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.436162647040756,
          -7,
          -1.7829501332654125,
          -3.396896449142524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8672710189654482,
          -7,
          -3.7992026563005252,
          -7,
          -7,
          -7,
          -7,
          -3.6334684555795866,
          -2.391816923613249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.682483531630788,
          -2.82865989653532,
          -2.7730546933642626,
          -3.710625015060797,
          -7,
          -3.416141031168329,
          -2.9084850188786495,
          -3.7180031682670176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.310544628636955,
          -7,
          -3.951677437343301,
          -4.27916484306227,
          -7,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3010299956639813,
          -7,
          -4.147336174036738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4807253789884878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6547539332529304,
          -7,
          -7,
          -7,
          -7,
          -3.0242803760470798,
          -7,
          -7,
          -4.275725867573664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.583198773968623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8770256158672485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.034227260770551,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9030899869919435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4353665066126613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9916690073799486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.125139551371345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.523095838252568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7134905430939424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.441852175773292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.674677467873199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1005428500124648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0569048513364727,
          -2.6159500516564007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9444826721501687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.866877814337499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.482773570074737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.40185699938287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9826781933834843,
          -7,
          -7,
          -7,
          -2.8666810784419927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7319914490189294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6850148190800835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2355212326535785,
          -7,
          -7,
          -2.5289167002776547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.265996370495079,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145972902802181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.437750562820388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3601577647473424,
          -7,
          -7,
          -7,
          -3.6372895476781744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.216746333609975,
          -7,
          -7,
          -3.08278537031645,
          -3.0397646092150197,
          -7,
          -2.7307822756663893,
          -7,
          -7,
          -2.749736315569061,
          -2.5010592622177517,
          -4.084945479775793,
          -7,
          -2.663700925389648,
          -7,
          -2.4913616938342726,
          -7,
          -7,
          -2.795880017344075,
          -7,
          -7,
          -7,
          -4.342007929017339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2335037603411343,
          -2.5494120098036346,
          -7,
          -7,
          -7,
          -7,
          -2.391816923613249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5629269868278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.225851810818157,
          -7,
          -2.3138672203691537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.559836242654968,
          -1.8129133566428557,
          -7,
          -2.603144372620182,
          -7,
          -3.5680712857173424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7928584219256614,
          -7,
          -7,
          -7,
          -2.6928469192772297,
          -2.028932562598488,
          -7,
          -7,
          -2.2024883170600935,
          -7,
          -3.7699309201369524,
          -7,
          -7,
          -7,
          -2.8965262174895554,
          -7,
          -2.6919651027673606,
          -3.5531545481696254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788875115775417,
          -1.6637334093630283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.975431808509263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7019994748896368,
          -3.1556396337597765,
          -3.4674601095072637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3242824552976926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5915313394539066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0580462303952816,
          -7,
          -7,
          -7,
          -2.9474337218870508,
          -7,
          -7,
          -2.563887264210333,
          -2.682145076373832,
          -2.6599162000698504,
          -7,
          -7,
          -7,
          -2.419955748489758,
          -7,
          -1.9804578922761003,
          -7,
          -7,
          -7,
          -7,
          -2.1420343984273713,
          -2.009450895798694,
          -2.45484486000851,
          -2.9138138523837167,
          -2.3483048630481607,
          -3.0073209529227447,
          -3.1202447955463652,
          -7,
          -7,
          -2.870403905279027,
          -7,
          -2.737987326333431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.378579576115775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6589648426644352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5466660250701842,
          -4.451313518411642,
          -7,
          -7,
          -7,
          -2.9609461957338317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.724275869600789,
          -2.254467510467076,
          -7,
          -2.808885867359812,
          -7,
          -2.7015679850559273,
          -7,
          -2.044588752944993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.501018159848659,
          -7,
          -7,
          -7,
          -3.6422666189026733,
          -7,
          -7,
          -2.928907690243953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2837533833325265,
          -7,
          -7,
          -2.82020145948564,
          -7,
          -7,
          -2.688419822002711,
          -2.1760912590556813,
          -2.416640507338281,
          -2.1394292733295357,
          -3.0338256939533106,
          -2.885361220031512,
          -7,
          -3.706611115387456,
          -7,
          -7,
          -3.7746629225378223,
          -7,
          -7,
          -7,
          -7,
          -2.4896772916636984,
          -2.916453948549925,
          -7,
          -7,
          -7,
          -7,
          -4.195844324747282,
          -2.325310371711061,
          -7,
          -7,
          -7,
          -2.859438535455056,
          -2.49876988168213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9400735532451134,
          -2.7275412570285567,
          -7,
          -7,
          -4.479226493384303,
          -7,
          -1.4767921190601778,
          -7,
          -7,
          -7,
          -2.9180303367848803,
          -7,
          -1.7993405494535817,
          -3.471144965160633,
          -7,
          -7,
          -7,
          -7,
          -2.360309344342059,
          -7,
          -7,
          -7,
          -3.141763230275788,
          -7,
          -2.3010299956639813,
          -7,
          -7,
          -4.319668091214678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9250025076809774,
          -4.258182160366098,
          -7,
          -7,
          -7,
          -3.9595469793998377,
          -4.105258050483448,
          -4.398026858883687,
          -7,
          -4.392820015230385,
          -4.353416091053356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.081635301502951,
          -7,
          -4.627795841028035,
          -4.1528843255738686,
          -7,
          -4.405389053169786,
          -7,
          -4.106689409193445,
          -7,
          -4.184237029016371,
          -3.8105013477665297,
          -7,
          -7,
          -4.353935455571521,
          -4.393259237826838,
          -7,
          -2.8441664104502005,
          -3.7961115793233833,
          -2.566276751530018,
          -2.1805288320314995,
          -7,
          -7,
          -7,
          -3.4319325523895805,
          -3.322770429937203,
          -2.79309160017658,
          -7,
          -3.8463680436836736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5903401790321667,
          -7,
          -7,
          -2.54347585490142,
          -3.4366305511632125,
          -5.173195012508446,
          -7,
          -3.3336487565147013,
          -7,
          -3.291442854793911,
          -7,
          -4.943360942394186,
          -3.026737494238748,
          -3.7655195430979527,
          -7,
          -3.377670439334323,
          -7,
          -3.43675312229406,
          -3.24699069924155,
          -3.67015304519218,
          -7,
          -3.084457113581298,
          -2.9875173043753707,
          -7,
          -3.4032063416448066,
          -3.524702893919724,
          -7,
          -3.936744902547847,
          -7,
          -7,
          -2.6256210814249075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6997943809416243,
          -7,
          -7,
          -7,
          -7,
          -3.3016375827268716,
          -7,
          -7,
          -7,
          -3.4967913157000425,
          -7,
          -4.028581418642887,
          -7,
          -7,
          -7,
          -3.763951826033324,
          -7,
          -7,
          -7,
          -7,
          -3.5146805441249818,
          -7,
          -7,
          -7,
          -2.8273692730538253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1958107295133327,
          -4.7434470461953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4566696294237573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0073209529227447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7730546933642626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040681439373358,
          -2.45687190911158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731024379815688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.740678425227455,
          -7,
          -7,
          -7,
          -3.747567162737625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.017221214537218,
          -3.193958978019187,
          -7,
          -3.9864134054654685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.89707700320942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3801207542684404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.824125833916549,
          -2.553883026643874,
          -3.6887756552728446,
          -7,
          -7,
          -7,
          -7,
          -3.0939467238905833,
          -7,
          -7,
          -3.983039616046102,
          -7,
          -7,
          -2.9360107957152097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8143332281816082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6037396302426137,
          -7,
          -7,
          -7,
          -3.8780792331116247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.559595448664063,
          -7,
          -7,
          -7,
          -2.3106933123433606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7356388146361157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.107718610520263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.220369632451394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.559836242654968,
          -7,
          -2.6319508262592173,
          -7,
          -2.4705574852172743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3944516808262164,
          -7,
          -7,
          -7,
          -7,
          -2.8847953639489807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.92389134992005,
          -7,
          -7,
          -7,
          -7,
          -4.436114919749988,
          -7,
          -7,
          -2.290776361298428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.423737249982329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2989258164621176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.281285035693031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2357808703275603,
          -7,
          -7,
          -7,
          -7,
          -2.777807762110115,
          -2.4885507165004443,
          -2.8115750058705933,
          -7,
          -2.35729944896187,
          -2.60422605308447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.515873843711679,
          -7,
          -7,
          -2.8561244442423,
          -7,
          -3.519827993775719,
          -4.195367600199167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9891827512555476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0387525889920166,
          -7,
          -7,
          -3.0492180226701815,
          -7,
          -7,
          -1.7087041048932998,
          -7,
          -7,
          -7,
          -7,
          -2.808885867359812,
          -7,
          -7,
          -4.49811749111387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -3.172894697752176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5774917998372255,
          -2.747411807886423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.59659709562646,
          -7,
          -2.7349597612724454,
          -7,
          -7,
          -7,
          -4.607594404013138,
          -7,
          -7,
          -3.7589875468676195,
          -7,
          -7,
          -7,
          -2.5037906830571814,
          -2.8257505813480277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.098252511606886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7701152947871015,
          -7,
          -7,
          -7,
          -4.433127915606001,
          -7,
          -2.1687920203141817,
          -4.244499778833843,
          -3.0338256939533106,
          -7,
          -7,
          -7,
          -2.0714217057453848,
          -3.137670537236755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4983105537896004,
          -2.682145076373832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.802842112739074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.10164054878698,
          -7,
          -7,
          -4.073974819866659,
          -7,
          -4.625631365330661,
          -7,
          -7,
          -4.704630893182262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.389538177331949,
          -7,
          -7,
          -4.2708767268752394,
          -3.157737313164466,
          -2.958882280950234,
          -7,
          -7,
          -7,
          -4.242504158866157,
          -7,
          -7,
          -4.07107154998365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.885559095608426,
          -7,
          -7,
          -3.2403956244812444,
          -4.281042462324887,
          -4.87154374810799,
          -7,
          -7,
          -7,
          -3.912795775382462,
          -7,
          -4.34022592125719,
          -3.3061032087275857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6501131644435714,
          -7,
          -3.5557290949540867,
          -3.4326486600131068,
          -7,
          -4.128216119832209,
          -3.9617057840025054,
          -7,
          -4.156508768749401,
          -7,
          -7,
          -3.605305046141109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9916690073799486,
          -7,
          -3.079904467666721,
          -7,
          -7,
          -3.9917132757130895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.999130541287371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.18440748541232,
          -7,
          -7,
          -7,
          -2.3607826898732798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.796197556622054,
          -4.741789566577141,
          -7,
          -7,
          -2.7693773260761385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45178643552429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.178246517332496,
          -2.5118833609788744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.496929648073215,
          -7,
          -7,
          -7,
          -3.723701893991268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.270702122087818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.959232249050996,
          -4.282735372621018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.552668216112193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.413299764081252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6589648426644352,
          -7,
          -3.6695957810243134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.27932466544261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8808135922807914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8318697742805017,
          -7,
          -3.2651387047066582,
          -7,
          -7,
          -7,
          -3.055187138555754,
          -3.6814221557210085,
          -7,
          -7,
          -7,
          -3.1156105116742996,
          -7,
          -3.3246939138617746,
          -2.9401178667477184,
          -2.3450468246483553,
          -2.450864692379766,
          -2.748727687356933,
          -7,
          -2.571708831808688,
          -7,
          -2.3096301674258988,
          -7,
          -2.076068010623482,
          -3.7193668057996536,
          -2.413299764081252,
          -7,
          -7,
          -2.216957207361097,
          -2.9903388547876015,
          -7,
          -2.921686475483602,
          -7,
          -3.3176455432211585,
          -7,
          -4.346137730160444,
          -1.4920616045125992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8530895298518655,
          -7,
          -2.3793449363557286,
          -2.5593080109070123,
          -7,
          -2.929929560084588,
          -7,
          -7,
          -7,
          -7,
          -3.038620161949703,
          -7,
          -7,
          -7,
          -7,
          -3.571165138386463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.53655844257153,
          -7,
          -7,
          -7,
          -2.4409090820652177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8129133566428557,
          -2.6319508262592173,
          -7,
          -7,
          -2.0969100130080562,
          -7,
          -3.483600262724949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8615344108590377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.218235318937493,
          -7,
          -7,
          -7,
          -7,
          -2.0681858617461617,
          -7,
          -7,
          -2.704579449696299,
          -7,
          -3.3001967991717134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5779511277297553,
          -7,
          -7,
          -7,
          -2.946452265013073,
          -7,
          -2.385606273598312,
          -3.15896526038341,
          -2.2980339102154357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7197454925295768,
          -7,
          -3.4974825373673704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4207806195485655,
          -7,
          -2.5616975326539935,
          -2.82020145948564,
          -7,
          -7,
          -2.072417666398705,
          -7,
          -2.82020145948564,
          -7,
          -2.977266212427293,
          -7,
          -7,
          -3.131297796597623,
          -3.0203612826477078,
          -2.50740605862413,
          -2.935003151453655,
          -3.0398105541483504,
          -7,
          -7,
          -2.677396973050582,
          -2.537189226243645,
          -2.824125833916549,
          -7,
          -7,
          -7,
          -2.8680563618230415,
          -2.829946695941636,
          -1.9448937412598015,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -2.1400652631443045,
          -7,
          -3.028977705208778,
          -2.710963118995276,
          -3.044539760392411,
          -7,
          -2.706148588963142,
          -7,
          -7,
          -2.3738311450738303,
          -7,
          -2.8790958795000727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1137762838370313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8744818176994666,
          -7,
          -7,
          -2.7547304690237535,
          -2.6314437690131722,
          -7,
          -4.305817969913129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8739015978644615,
          -7,
          -7,
          -2.8273692730538253,
          -2.123851640967086,
          -7,
          -2.8109042806687006,
          -2.921686475483602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8692317197309762,
          -2.8767949762007006,
          -7,
          -2.629409599102719,
          -7,
          -7,
          -7,
          -2.3977228071261734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4271614029259654,
          -2.977266212427293,
          -3.725598588011667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.677606952720493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9841521129041246,
          -7,
          -7,
          -7,
          -2.4512745975370516,
          -7,
          -7,
          -2.432434774521513,
          -7,
          -1.5552838836565568,
          -1.6965311199696071,
          -7,
          -7,
          -3.381295623003826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9960736544852753,
          -2.8692317197309762,
          -2.2415464805965484,
          -2.410355383434471,
          -2.9135489579065177,
          -7,
          -2.8512583487190755,
          -7,
          -4.099646117123231,
          -1.9599353092375267,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -2.214843848047698,
          -7,
          -2.858537197569639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.290744823265525,
          -7,
          -7,
          -7,
          -4.155019432182956,
          -7,
          -1.6454222693490919,
          -3.7054849439852404,
          -2.5728716022004803,
          -7,
          -3.0161973535124393,
          -7,
          -1.691179759909767,
          -2.721398375521505,
          -2.571708831808688,
          -7,
          -7,
          -7,
          -1.761453026621882,
          -7,
          -2.9232440186302764,
          -7,
          -2.9014583213961123,
          -2.3873898263387296,
          -1.73814608871206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.706683651763288,
          -3.9587788272906477,
          -7,
          -7,
          -7,
          -4.058473475370126,
          -4.027492310213354,
          -7,
          -4.2884728005997825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.199947057925218,
          -7,
          -7,
          -7,
          -7,
          -4.62993940053517,
          -4.457139784659526,
          -7,
          -7,
          -7,
          -4.10906081946941,
          -4.24789965088881,
          -3.7129301630395437,
          -7,
          -4.248708735600918,
          -7,
          -7,
          -7,
          -3.9821354948037695,
          -2.7283537820212285,
          -3.6735507734166104,
          -2.767897616018091,
          -2.3864246445986614,
          -3.061829307294699,
          -4.0687052196919415,
          -7,
          -2.9457393192824894,
          -2.910357557272878,
          -3.0159881053841304,
          -4.086324231307385,
          -3.308442446423766,
          -3.1381447441794874,
          -7,
          -3.7634279935629373,
          -7,
          -7,
          -7,
          -3.8972971220594963,
          -7,
          -7,
          -2.575206779572527,
          -3.273935843952804,
          -4.270675925314027,
          -2.8959747323590643,
          -2.4683473304121573,
          -7,
          -3.469895618975018,
          -7,
          -4.166198151877356,
          -3.34908316877959,
          -4.074377537644804,
          -7,
          -3.697578033651113,
          -7,
          -3.4414931434230693,
          -2.81778565588553,
          -7,
          -3.5928426831311002,
          -3.215784388711792,
          -7,
          -2.944975908412048,
          -3.0528435107623086,
          -3.7905314524809914,
          -7,
          -3.5584985707795957,
          -7,
          -3.3736474722092176,
          -3.0458117739782704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.908753019184534,
          -7,
          -7,
          -3.708845638048179,
          -7,
          -7,
          -7,
          -3.812244696800369,
          -7,
          -4.331781471570759,
          -3.151982395457474,
          -7,
          -7,
          -3.779380011491656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8003537053355636,
          -7,
          -7,
          -7,
          -2.7019994748896368,
          -7,
          -7,
          -7,
          -7,
          -3.4874212113594747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.003640014891705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1701638903057043,
          -3.097604328874411,
          -3.068556895072363,
          -3.756940236046724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.322653372213238,
          -3.2487087356009177,
          -3.978864984347657,
          -3.689974444666774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9995654882259823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.164858246962555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.967547976218862,
          -3.104487111312395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6866362692622934,
          -7,
          -7,
          -3.287353772714747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1702617153949575,
          -7,
          -7,
          -7,
          -7,
          -1.6554254840764648,
          -3.1620663052160913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.125101566510315,
          -7,
          -7,
          -2.9907826918031377,
          -4.032900678732676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2583019756569245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7352395000788343,
          -7,
          -7,
          -7,
          -2.3729120029701067,
          -7,
          -2.156851901070011,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.030963842378275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2198463860243605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.455797870134525,
          -2.456366033129043,
          -1.9669235411984138,
          -7,
          -7,
          -7,
          -2.4265112613645754,
          -7,
          -1.529650305995847,
          -2.3222192947339195,
          -3.3400473176613934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062431553162612,
          -7,
          -7,
          -2.44870631990508,
          -7,
          -1.5766956594091306,
          -7,
          -3.22284647997415,
          -2.09719067832643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1860612225861757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6816029987308685,
          -7,
          -1.5574902574651688,
          -2.03342375548695,
          -7,
          -7,
          -7,
          -7,
          -2.791690649020118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.775610448006361,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.825515369420171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.859018143888894,
          -7,
          -7,
          -3.6295671250801513,
          -7,
          -2.797959643737196,
          -7,
          -7,
          -7,
          -7,
          -2.69810054562339,
          -7,
          -7,
          -7,
          -7,
          -3.15106325335375,
          -7,
          -7,
          -7,
          -3.3164421483082114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9143431571194407,
          -4.547519343910926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.354108439147401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.595496221825574,
          -3.9882913419074875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3914644118391033,
          -2.718224803628757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.690993032099869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.0351437358812237,
          -2.394889257167419,
          -3.1670217957902564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.607379953483188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.797146309343345,
          -3.0203612826477078,
          -7,
          -7,
          -7,
          -1.2320426643848312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6979264448065052,
          -4.831055108269423,
          -7,
          -7,
          -4.545307116465824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6522366684127165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7851090718786775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.094529356768286,
          -7,
          -3.4350476413399647,
          -2.852479993636856,
          -4.052039507001472,
          -7,
          -3.338817425576695,
          -7,
          -7,
          -7,
          -4.140256569677416,
          -3.704407927386841,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.053347392169267,
          -3.7757014473743005,
          -5.172521201440062,
          -7,
          -7,
          -7,
          -4.611638352122505,
          -7,
          -4.942216464358906,
          -2.9053640687668922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.948412965778601,
          -3.540954808926133,
          -3.856275634663985,
          -7,
          -7,
          -3.906108675522897,
          -4.26254600711293,
          -2.7168377232995247,
          -4.633468455579586,
          -7,
          -3.28397928423848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.14515199291356,
          -7,
          -2.59402403573142,
          -7,
          -7,
          -3.513528333599192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.628348053351905,
          -2.9903388547876015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6444385894678386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.641216233580327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.719828286254335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0425755124401905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.081250066810652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -7,
          -7,
          -7,
          -3.6022770843001926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4280537613796307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.313445370426414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7466341989375787,
          -7,
          -7,
          -7,
          -2.5276299008713385,
          -7,
          -4.151553704542976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.405422255930527,
          -7,
          -7,
          -7,
          -7,
          -3.3554515201265174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8328281295393536,
          -7,
          -7,
          -7,
          -2.300728780389829,
          -7,
          -1.8957907482504441,
          -7,
          -1.8309092995464433,
          -2.401400540781544,
          -7,
          -4.260393410079865,
          -2.1046577910087962,
          -7,
          -7,
          -2.7528164311882715,
          -2.852479993636856,
          -2.591064607026499,
          -2.7551122663950713,
          -7,
          -2.9566485792052033,
          -7,
          -3.8636994819362567,
          -7,
          -2.5171958979499744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.186579670669986,
          -7,
          -2.7676505067756327,
          -7,
          -7,
          -7,
          -7,
          -2.161368002234975,
          -2.655138434811382,
          -7,
          -2.9175055095525466,
          -3.127428777851599,
          -7,
          -7,
          -7,
          -3.7368743616484226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.79987050007688,
          -7,
          -7,
          -3.7471786713601642,
          -7,
          -2.7528164311882715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.603144372620182,
          -2.4705574852172743,
          -2.0969100130080562,
          -7,
          -7,
          -7,
          -3.6185187633048668,
          -2.8744818176994666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.476638437013566,
          -7,
          -7,
          -2.7371926427047373,
          -7,
          -2.359835482339888,
          -7,
          -7,
          -2.0223694478447944,
          -7,
          -3.290442730593008,
          -7,
          -7,
          -7,
          -2.864511081058392,
          -7,
          -7,
          -2.846337112129805,
          -7,
          -7,
          -7,
          -7,
          -4.261239071182586,
          -7,
          -1.4385423487861106,
          -7,
          -2.888179493918325,
          -7,
          -7,
          -2.167317334748176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4483971034577676,
          -7,
          -7,
          -7,
          -7,
          -2.6483600109809315,
          -7,
          -2.048108713045591,
          -7,
          -2.776701183988411,
          -7,
          -7,
          -7,
          -3.605771778568517,
          -7,
          -7,
          -7,
          -2.532117116248804,
          -7,
          -7,
          -7,
          -7,
          -2.846955325019824,
          -7,
          -7,
          -2.725094521081469,
          -7,
          -3.3680523082026887,
          -2.6283889300503116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7993405494535817,
          -7,
          -3.5682604085454175,
          -7,
          -7,
          -2.6496500552675855,
          -7,
          -7,
          -2.8830933585756897,
          -2.9253120914996495,
          -7,
          -2.7996850909091004,
          -2.82865989653532,
          -2.751279103983342,
          -2.8363241157067516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.368286884902131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6522463410033232,
          -2.9410142437055695,
          -2.404833716619938,
          -7,
          -4.305001089817488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0644579892269186,
          -2.627024295834346,
          -2.6503075231319366,
          -7,
          -2.4616485680634552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7062055418819706,
          -7,
          -4.199192752823317,
          -7,
          -7,
          -7,
          -7,
          -3.030194785356751,
          -3.0696680969115957,
          -1.5814528920040938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.658488381309017,
          -2.8536982117761744,
          -7,
          -7,
          -7,
          -7,
          -2.6354837468149124,
          -7,
          -2.367355921026019,
          -2.376728994335118,
          -2.228314791865588,
          -7,
          -2.7291647896927698,
          -3.286606149046036,
          -7,
          -7,
          -3.770557474850995,
          -7,
          -2.611723308007342,
          -2.076154791417437,
          -7,
          -7,
          -7,
          -2.6599162000698504,
          -2.504470862494419,
          -7,
          -7,
          -4.399791363015452,
          -2.6088824508987196,
          -7,
          -7,
          -7,
          -7,
          -1.7323937598229684,
          -7,
          -7,
          -1.9816244801547354,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -2.400537989391946,
          -7,
          -2.3921104650113136,
          -7,
          -3.3596932228588203,
          -7,
          -4.5302925683609425,
          -7,
          -2.2810333672477277,
          -4.070296518197765,
          -1.9695592675234308,
          -7,
          -2.887617300335736,
          -7,
          -3.0461047872460387,
          -3.4628470358316736,
          -1.9352192721258945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -7,
          -2.519827993775719,
          -2.6720978579357175,
          -2.0403615145545038,
          -7,
          -7,
          -4.3190852293386985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100163688966044,
          -4.433841810470936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.610574998959417,
          -7,
          -7,
          -7,
          -4.786353846576917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.40491065174079,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.392274761571942,
          -3.969928189428116,
          -7,
          -3.728492919511281,
          -3.462397997898956,
          -2.9710437918360286,
          -7,
          -7,
          -7,
          -3.6422171294738805,
          -3.096771016533225,
          -7,
          -4.0767496406240005,
          -4.145724574880668,
          -3.417969642214737,
          -7,
          -3.7430391548049333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.357420246145415,
          -3.866700756042499,
          -5.173031760343499,
          -7,
          -7,
          -7,
          -4.613492978211986,
          -7,
          -4.6420438720485455,
          -3.146128035678238,
          -4.064532861131578,
          -7,
          -7,
          -7,
          -4.280851425694206,
          -3.2329961103921536,
          -7,
          -7,
          -3.6853834098014873,
          -7,
          -7,
          -3.5276299008713385,
          -7,
          -7,
          -4.334182232241241,
          -7,
          -7,
          -2.9218944709291024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.28362424432417,
          -7,
          -3.1080573737838537,
          -3.998520882835038,
          -7,
          -2.494850021680094,
          -7,
          -3.316669129971156,
          -7,
          -4.3290824690943,
          -2.583198773968623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7895807121644256,
          -7,
          -3.8430458105345693,
          -7,
          -7,
          -7,
          -4.642948997739193,
          -4.743007762670625,
          -7,
          -7,
          -2.8709888137605755,
          -7,
          -2.287054877670668,
          -7,
          -7,
          -2.970346876230093,
          -7,
          -7,
          -7,
          -2.3384564936046046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.425697213362591,
          -2.8048206787211623,
          -7,
          -7,
          -2.392696953259666,
          -2.7299742856995555,
          -7,
          -3.5190400386483445,
          -7,
          -7,
          -7,
          -7,
          -3.619345252023765,
          -2.90687353472207,
          -3.4308809464528913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.786041210242554,
          -2.8627275283179747,
          -7,
          -7,
          -2.6711728427150834,
          -2.6649552063536226,
          -7,
          -7,
          -3.736237098904729,
          -3.0595634179012676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.317122737714539,
          -7,
          -7,
          -3.6840370374865197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.385606273598312,
          -3.074816440645175,
          -7,
          -7,
          -7,
          -7,
          -3.554640561254055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2605483726369795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2062860444124324,
          -7,
          -7,
          -7,
          -7,
          -3.3854275148051305,
          -7,
          -7,
          -3.805636766305935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.361482295825142,
          -7,
          -7,
          -7,
          -3.6475785542124552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.180974129232144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9934362304976116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.736157375273132,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9943171526696366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6263146990939448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.546542663478131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.248463717551032,
          -2.890979596989689,
          -4.438613538767731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7876375568784235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.129319230615535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5775492423982382,
          -7,
          -7,
          -3.9751927658771193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.441695135640717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0141003215196207,
          -7,
          -7,
          -4.548549101029368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.201383467046534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7821858664920165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.099279994042449,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.492248057013865,
          -7,
          -3.9564469813917054,
          -7,
          -7,
          -3.2267226219309495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4861469968065726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.922746212311292,
          -3.971955834543654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659583461983928,
          -4.804990823476288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.500641206758236,
          -7,
          -4.088462130302983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.245290528606833,
          -7,
          -7,
          -7,
          -4.0643831044121965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.360801612967852,
          -4.078325386022452,
          -4.219208918263775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983400738180538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.034718674639405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.005395031886706,
          -2.8549130223078554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.805092878342673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8721125496264306,
          -4.644527211951955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30433252154373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1162755875805446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.675778341674085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.289811839117621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6979264448065052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.286456469746983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6151870003574307,
          -4.517301488634157,
          -7,
          -4.516905391125257,
          -7,
          -7,
          -7,
          -3.517156294823795,
          -3.1025524356630036,
          -2.5353220082369856,
          -2.7936351963804653,
          -4.216231899472033,
          -7,
          -1.5563274251256347,
          -2.380376790839503,
          -4.518237482689147,
          -7,
          -7,
          -2.9683661870310103,
          -4.216086692421913,
          -1.7642236073088604,
          -3.0575947931384415,
          -7,
          -3.1840975149130593,
          -1.8243995969787599,
          -7,
          -3.916164322342523,
          -7,
          -4.042102768037303,
          -3.8195439355418688,
          -3.4053332230254467,
          -2.4952147551681585,
          -3.9165986892551152,
          -4.51728829120251,
          -7,
          -4.519407928955734,
          -3.7430391548049333,
          -7,
          -3.263728098236335,
          -7,
          -4.234416037567035,
          -3.8185557792978027,
          -1.960740761500965,
          -7,
          -3.7423584833454764,
          -3.315904776726982,
          -4.517367469777369,
          -4.51807942810387,
          -4.040892300326412,
          -7,
          -7,
          -7,
          -2.8161902935342806,
          -2.0042041932514953,
          -7,
          -3.4768711343703425,
          -2.653752633125999,
          -3.564363543741234,
          -3.8186612898165646,
          -4.517908137366838,
          -4.041432164680265,
          -4.522822283327583,
          -3.927331860048449,
          -7,
          -7,
          -7,
          -2.2581541481427756,
          -7,
          -7,
          -7,
          -7,
          -2.7913020858835584,
          -3.8239695379160965,
          -7,
          -3.244953855620354,
          -2.19571222376197,
          -4.517433440897774,
          -3.439937652477201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5680712857173424,
          -7,
          -3.483600262724949,
          -2.455797870134525,
          -3.6185187633048668,
          -7,
          -7,
          -1.93670887875277,
          -2.591501862960277,
          -3.4754070189233994,
          -3.4753541657552796,
          -3.402777069610347,
          -2.677130665542173,
          -2.5712454995937803,
          -2.8086477890631767,
          -3.4375523905687615,
          -2.071211164815486,
          -4.040681439373358,
          -7,
          -7,
          -3.409555990461098,
          -7,
          -7,
          -4.51914518196853,
          -3.9155713028246213,
          -3.244836803876376,
          -4.216667229548209,
          -7,
          -3.407547779153598,
          -3.2647129082893973,
          -2.6945263277191858,
          -4.041379524519975,
          -4.042352336152693,
          -3.614686342282013,
          -3.1230149001807717,
          -2.171700340886371,
          -3.91555811541152,
          -2.791739032986512,
          -1.5441390597182538,
          -4.216759516219574,
          -4.521608750296811,
          -4.520090328112842,
          -3.232712164986875,
          -4.5181057745296185,
          -3.322839272686321,
          -3.066300215293246,
          -3.919979755708313,
          -3.8193201504349257,
          -7,
          -4.519775507887456,
          -4.516931808868013,
          -7,
          -2.8012789486025635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.385582910615795,
          -3.115893909272309,
          -1.9356806163177214,
          -2.991994404486493,
          -3.262978146205194,
          -2.848569762828942,
          -4.517815875902376,
          -7,
          -3.160089935812264,
          -3.3707597427257125,
          -3.0497605517624757,
          -7,
          -4.216785880238395,
          -7,
          -2.140778728145066,
          -7,
          -4.517156294823795,
          -3.916256497088509,
          -3.2900739122522697,
          -7,
          -7,
          -3.680943850666622,
          -4.221179420598498,
          -3.8221288341175814,
          -4.519788629954198,
          -4.221805317996549,
          -4.217891726314075,
          -4.518184804218403,
          -1.8805861967308912,
          -7,
          -4.216179102525562,
          -7,
          -7,
          -7,
          -3.8190962499555887,
          -4.216297886630392,
          -2.9444826721501687,
          -7,
          -2.976884683384128,
          -4.517116688085895,
          -3.164404585220732,
          -1.824246144417384,
          -7,
          -3.4082530148297936,
          -3.743718761114515,
          -3.376550888177972,
          -3.1260014567876744,
          -2.7561201505007595,
          -3.479169445805911,
          -3.9172428579074663,
          -4.219924913188828,
          -3.673679028912518,
          -4.518421807033958,
          -2.775361299557757,
          -7,
          -4.040206627574711,
          -7,
          -2.2364300521070484,
          -7,
          -3.1990941600088276,
          -4.517037463772294,
          -4.224235143716918,
          -7,
          -3.9159272116971158,
          -7,
          -7,
          -4.043113289762588,
          -4.5172486965011185,
          -7,
          -7,
          -4.239749810446363,
          -3.8208317472884548,
          -7,
          -7,
          -4.517327882294373,
          -7,
          -7,
          -4.518316488416471,
          -7,
          -4.517868599139189,
          -3.9212832006133365,
          -3.7470750149405774,
          -3.1080936541800073,
          -1.9514668045128307,
          -4.517103485037208,
          -7,
          -3.818371074186973,
          -3.2675106848795448,
          -7,
          -4.517235497465091,
          -4.2190734450070035,
          -4.51774996285426,
          -4.217246991685393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.218391066469307,
          -2.855437017653531,
          -7,
          -7,
          -7,
          -4.216561735047927,
          -4.518197974435138,
          -3.740086232305504,
          -4.517195897949974,
          -4.042523010689413,
          -3.8295481957452853,
          -4.517842238320856,
          -2.570369028299623,
          -3.0868045767268297,
          -4.517024258314842,
          -7,
          -4.216614485501277,
          -3.4979343783811503,
          -3.8233829264392476,
          -2.559825308445932,
          -4.043768215815501,
          -2.539846263642648,
          -7,
          -7,
          -4.517736779044113,
          -3.787979711502274,
          -2.01949214030342,
          -2.924253434430462,
          -3.0274005783143263,
          -3.040385381112445,
          -4.040127441781456,
          -4.040272604708435,
          -7,
          -4.217839130778947,
          -3.678687433531933,
          -3.67609236517432,
          -7,
          -3.5654673821665757,
          -7,
          -7,
          -7,
          -7,
          -4.217062605852551,
          -3.0038665700721023,
          -4.048221622337202,
          -4.521321181329137,
          -7,
          -2.00959373153784,
          -3.217668151286279,
          -4.5172486965011185,
          -2.647883126093151,
          -4.216271492970176,
          -4.517341078522992,
          -4.04431759147577,
          -4.518197974435138,
          -3.4898051268519477,
          -4.221009751372294,
          -3.4882557883675878,
          -7,
          -3.5268559871258747,
          -7,
          -1.4915811312752698,
          -2.681073174258163,
          -3.9153074784494066,
          -7,
          -7,
          -2.514676676986443,
          -3.5234603103244715,
          -7,
          -7,
          -4.21988565138146,
          -7,
          -7,
          -7,
          -3.1767487829994527,
          -7,
          -4.517446633919386,
          -3.6184664921990803,
          -3.1559430179718366,
          -2.3962098539237355,
          -2.3635870776856063,
          -2.6070916851790966,
          -4.218929185088087,
          -3.2068387209907216,
          -2.6444385894678386,
          -3.6828667956623247,
          -7,
          -3.442636525782232,
          -4.518553419399928,
          -3.247301223820282,
          -2.979978789341033,
          -7,
          -7,
          -7,
          -7,
          -3.6200709579966586,
          -4.04058915550344,
          -3.741204141890008,
          -4.0408264172755874,
          -3.449863924718144,
          -7,
          -3.0670956650757906,
          -7,
          -7,
          -3.1455306163719823,
          -3.8333727117977894,
          -3.4790500017126824,
          -7,
          -3.2058989954366655,
          -7,
          -2.7552394576339077,
          -2.4357382204426923,
          -2.532935563607061,
          -7,
          -3.275911969341105,
          -2.619397717259811,
          -3.2103686895810273,
          -2.867916010514917,
          -2.7083981345910604,
          -4.014167583607013,
          -2.9707963815537974,
          -3.173152635632317,
          -3.629073043426928,
          -3.3733510618714013,
          -3.4954909680247956,
          -2.9309435565337925,
          -3.222629776969852,
          -2.494509447937863,
          -2.8839549765516828,
          -3.893669309799605,
          -3.157816961558364,
          -2.791912529111286,
          -7,
          -2.5921715180832483,
          -3.5471415203838537,
          -2.9979398687097745,
          -3.3000299678823013,
          -3.2469542651406975,
          -3.2886068903909687,
          -3.4942937686653326,
          -3.496474961863589,
          -3.378579576115775,
          -2.8421828934051807,
          -2.472495250968145,
          -3.2279766379455532,
          -2.4267489259439063,
          -2.5384149714282267,
          -2.506654059799193,
          -2.889040982413291,
          -2.5577954361732025,
          -3.2962262872611605,
          -1.3388058084949108,
          -2.7058637122839193,
          -3.2127328262241575,
          -2.9565898139962505,
          -2.4235565785971245,
          -2.363565556109962,
          -4.2310233428503805,
          -2.6698790890013155,
          -2.746008552259242,
          -4.519644265409076,
          -2.659782160442492,
          -2.948123049558286,
          -4.242019364975552,
          -7,
          -2.239398798651167,
          -1.5707693706090062,
          -2.6440084295323794,
          -3.916677618403313,
          -3.1405583202415124,
          -4.218259716818564,
          -2.2665337307243667,
          -4.572499854279727,
          -2.3055885681982082,
          -3.0324765479535576,
          -3.181528196150299,
          -3.2392336020722494,
          -3.291602505421389,
          -2.6165417892021465,
          -2.646200848074611,
          -2.931127192823453,
          -2.5418970074937137,
          -2.5827642863448856,
          -2.662035257986414,
          -2.217024327282991,
          -3.3435923832614898,
          -1.8664891445287781,
          -2.3525241236469903,
          -3.050031562368402,
          -2.459328928945867,
          -4.229208133978611,
          -3.0759746270911994,
          -2.627996640264847,
          -2.3765973450330384,
          -4.5199591807520685,
          -4.518632367678986,
          -7,
          -7,
          -3.305615149607283,
          -1.9755258014718424,
          -4.042102768037303,
          -2.630041469090016,
          -4.0442652999153195,
          -3.2657237281336005,
          -2.702081614845795,
          -2.948155484012653,
          -3.674952948048565,
          -4.518145291171665,
          -3.082156803810918,
          -4.219977256744623,
          -2.8255594089315244,
          -2.8727000147927284,
          -3.6797522632579414,
          -4.540104133899875,
          -3.303502991379405,
          -3.933689708957895,
          -3.434900393753358,
          -3.574429992161969,
          -3.523681447800753,
          -3.0469704624639555,
          -4.04945061813155,
          -3.7504955381044454,
          -3.9208925777394548,
          -3.7417816961431667,
          -7,
          -3.1643198031962783,
          -4.521308105487026,
          -7,
          -3.190800763000039,
          -2.339104758662789,
          -2.127707357576145,
          -4.517565353082339,
          -3.464762696435282,
          -3.4800723044565447,
          -4.05512338890692,
          -7,
          -7,
          -4.041340040212176,
          -2.7201716499108235,
          -7,
          -3.568605834163208,
          -3.7187863010659177,
          -4.0405495992697675,
          -2.8193476390283543,
          -3.482912543686698,
          -2.982019832464153,
          -4.517077077735613,
          -3.1645985157488954,
          -3.819925420670676,
          -3.0093221052868215,
          -2.9474819330823383,
          -7,
          -3.9163486522754605,
          -3.6737710864286717,
          -3.5195296940992455,
          -2.6508766945653943,
          -3.8264765013148656,
          -7,
          -3.425778686860983,
          -3.6186755388851397,
          -2.3523111788979363,
          -3.568110421335942,
          -2.8551481540375985,
          -3.67583069469469,
          -7,
          -3.8354368948018585,
          -4.51869814695026,
          -3.032975442566309,
          -4.0478327947340205,
          -4.519998529118848,
          -3.2906760809696594,
          -3.3065007149823713,
          -4.517116688085895,
          -4.217075778865637,
          -2.464561079412046,
          -3.5246557123577773,
          -4.222781480425739,
          -3.1984738016670837,
          -3.623701445026877,
          -3.770986940942376,
          -3.6813963148569364,
          -3.164673081360996,
          -2.9579925120750126,
          -4.05986622041094,
          -4.535420718056173,
          -7,
          -7,
          -3.0373077988643398,
          -3.3154640523400225,
          -4.217944315480356,
          -3.0323668937196664,
          -2.7247590605996757,
          -3.385133679818153,
          -3.1730509206636928,
          -3.1118839301593266,
          -3.5433567985654086,
          -7,
          -7,
          -7,
          -4.517538973850582,
          -4.044422155711843,
          -3.682248252589059,
          -3.5508884680813524,
          -4.517684039800974,
          -3.7404153280594743,
          -4.517024258314842,
          -2.4947987194361336,
          -4.217009909804205,
          -7,
          -7,
          -4.519066326864926,
          -4.221635893166133,
          -7,
          -4.5206538109166265,
          -3.148590316719418,
          -4.54184123916057,
          -4.222963454651633,
          -4.217641840773327,
          -3.8268778287230028,
          -7,
          -7,
          -7,
          -3.918371134693579,
          -4.218942301606471,
          -3.918528335883243,
          -3.249373088627388,
          -3.409075275308904,
          -3.596731455692808,
          -4.519013748840418,
          -7,
          -3.463756162184995,
          -3.9156767877161505,
          -4.517090281587123,
          -3.0998826777007147,
          -7,
          -7,
          -3.4194473557107146,
          -3.509459136176865,
          -3.924783085544135,
          -7,
          -7,
          -4.5210988384536,
          -7,
          -3.413132050434872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6757783416740852,
          -4.058909780686973,
          -7,
          -7,
          -7,
          -2.4245754000580986,
          -3.1792644643390253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4186754297187782,
          -7,
          -7,
          -7,
          -3.5364149547842194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.561459171241916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4533183400470375,
          -7,
          -3.258397804095509,
          -7,
          -3.340563083333371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9443181355003873,
          -7,
          -7,
          -3.158060793936605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.338735308799518,
          -7,
          -7,
          -7,
          -7,
          -3.0492180226701815,
          -7,
          -7,
          -2.9694159123539814,
          -3.622214022966295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.456366033129043,
          -2.8744818176994666,
          -7,
          -1.93670887875277,
          -7,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -1.9395192526186187,
          -2.183744223284207,
          -7,
          -7,
          -2.467977875279793,
          -7,
          -7,
          -7,
          -2.9561684304753633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0690017170456,
          -7,
          -7,
          -7,
          -7,
          -2.2322698652699,
          -7,
          -7,
          -2.990919165834241,
          -7,
          -7,
          -7,
          -4.437354127848175,
          -7,
          -7,
          -3.1264561134318045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3960248966085933,
          -7,
          -2.5025788385822736,
          -2.9749719942980692,
          -2.7101173651118162,
          -3.5060989599284405,
          -7,
          -7,
          -2.9003671286564705,
          -3.4396484295634737,
          -7,
          -7,
          -7,
          -7,
          -4.083072412284536,
          -7,
          -7,
          -7,
          -2.835056101720116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.553826411010125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9761206182998157,
          -7,
          -3.5683190850951116,
          -7,
          -3.0519239160461065,
          -3.2573369850674387,
          -7,
          -7,
          -7,
          -2.9258275746247424,
          -7,
          -7,
          -2.5269850685599957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.781755374652469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.672839529029401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9960736544852753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.120080134129453,
          -7,
          -7,
          -7,
          -2.6384892569546374,
          -3.330210784571528,
          -7,
          -3.2288279401906332,
          -7,
          -4.500263926200883,
          -7,
          -7,
          -7,
          -7,
          -1.8738186460006043,
          -3.070037866607755,
          -3.2161659022859928,
          -3.1986570869544226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.782472624166286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.007139425162523,
          -7,
          -7,
          -3.4694538137671267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7764348125004576,
          -3.087781417809542,
          -2.621176281775035,
          -7,
          -7,
          -2.442793225939769,
          -7,
          -7,
          -7,
          -2.835056101720116,
          -7,
          -7,
          -7,
          -2.7715874808812555,
          -7,
          -7,
          -7,
          -2.680335513414563,
          -3.96208508051736,
          -2.5224442335063197,
          -4.433377752211042,
          -7,
          -7,
          -4.547479333931025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4097641042663462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9240551874495404,
          -4.7348957956663345,
          -7,
          -4.039731296098691,
          -4.099979734081352,
          -4.658068662483436,
          -4.502863926138332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.801139485303378,
          -3.881783955593385,
          -4.485316748040482,
          -7,
          -7,
          -7,
          -4.453104198432209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3676354197905107,
          -7,
          -4.272688467413575,
          -7,
          -3.2726150608493985,
          -2.3434085938038574,
          -7,
          -7,
          -3.026186472960786,
          -3.4951973183654577,
          -7,
          -7,
          -4.145755623637207,
          -3.418052578237505,
          -7,
          -3.4419306745501714,
          -2.904715545278681,
          -7,
          -3.516931808868013,
          -7,
          -7,
          -7,
          -3.88058495606498,
          -3.461953037961793,
          -4.69590175824009,
          -7,
          -7,
          -7,
          -4.6135035533500375,
          -7,
          -4.6420488232200245,
          -3.623766000133931,
          -7,
          -2.694605198933569,
          -7,
          -4.012837224705172,
          -4.2808741725572155,
          -7,
          -3.062393937253195,
          -2.862489166905897,
          -3.8615642787784408,
          -3.1556396337597765,
          -7,
          -3.264184372768502,
          -4.2646289582612225,
          -3.0863598306747484,
          -4.334192291524873,
          -7,
          -7,
          -7,
          -3.718377112354902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1528995963937474,
          -7,
          -2.654497409629463,
          -7,
          -3.4095950193968156,
          -3.5212688755983854,
          -3.11293997608408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2060158767633444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.471936804594729,
          -4.165798096658618,
          -4.743015610916935,
          -7,
          -7,
          -2.8715729355458786,
          -7,
          -7,
          -7,
          -7,
          -3.146902869928199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3240765797394864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8202671571609645,
          -7,
          -7,
          -3.685024785105714,
          -7,
          -3.935726732763876,
          -2.907411360774586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5943925503754266,
          -7,
          -3.3197304943302246,
          -7,
          -7,
          -3.435127379609151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.016071816734024,
          -7,
          -7,
          -4.286254320828791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.85582190540603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.282871245335206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357200878999709,
          -7,
          -7,
          -7,
          -2.7546758991321316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295072052054132,
          -7,
          -7,
          -7,
          -4.032232984867467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335096674261542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.698622429702098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9669235411984138,
          -7,
          -7,
          -2.591501862960277,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -7,
          -2.1789769472931693,
          -1.9242792860618816,
          -7,
          -1.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058046230395282,
          -7,
          -7,
          -7,
          -7,
          -2.961421094066448,
          -7,
          -7,
          -3.493353473120484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0195316845312554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.11143055176598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.957607287060095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.42673079296728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.82486004404595,
          -7,
          -7,
          -7,
          -7,
          -2.8260748027008264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.113943352306837,
          -7,
          -2.08278537031645,
          -7,
          -3.6115640020881243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149240672839162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.413299764081252,
          -2.9459607035775686,
          -7,
          -3.1099158630237933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.004009515801031,
          -2.413299764081252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1946426687347085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.271841606536499,
          -7,
          -7,
          -5.4329388411163535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3891660843645326,
          -3.918990875891816,
          -4.431508504864177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.391957848245589,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784281993434279,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703463341883293,
          -4.219610719301437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3871227599275855,
          -7,
          -7,
          -7,
          -7,
          -3.726890140741822,
          -7,
          -7,
          -7,
          -3.6386015599717445,
          -7,
          -7,
          -7,
          -4.136593747333078,
          -7,
          -7,
          -7,
          -2.515211304327802,
          -7,
          -3.4765418090274287,
          -4.1827854420846835,
          -7,
          -7,
          -4.051113916777601,
          -4.076276255404218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941640608576343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2249213455840313,
          -7,
          -3.1089031276673134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590395947184013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5083052193633395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1629027893892045,
          -4.740717876059285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9943171526696366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6580113966571126,
          -7,
          -4.603761260608287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.589502796263764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.310990527134579,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.147985320683805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5935075893317654,
          -3.319522449065454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8936508169859634,
          -7,
          -7,
          -7,
          -4.575961032060751,
          -7,
          -7,
          -7,
          -7,
          -2.164352855784437,
          -7,
          -4.55713410182759,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333709182897272,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3913762391696496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4754070189233994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.09321149181366,
          -7,
          -7,
          -7,
          -4.735527043564013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426169547035326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368379871623802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149028104289625,
          -7,
          -7,
          -1.7558748556724915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.373095987078727,
          -7,
          -4.495280628260573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.910624404889201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605391249889289,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.796504951553296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.731999498888382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.841934810980999,
          -7,
          -7,
          -4.063445953123033,
          -4.134400255918984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.678076576148942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.215901813204032,
          -7,
          -3.3984608496082234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6813769331998136,
          -7,
          -2.998695158311656,
          -7,
          -7,
          -7,
          -2.971275848738105,
          -7,
          -7,
          -3.7681939616330715,
          -7,
          -4.325402764963596,
          -7,
          -7,
          -7,
          -7,
          -3.1702617153949575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.967079734144497,
          -7,
          -7,
          -7,
          -3.820004306808318,
          -7,
          -7,
          -7,
          -7,
          -4.7401731378151295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1398790864012365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.795880017344075,
          -7,
          -7,
          -7,
          -7,
          -4.779610919406259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2242740142942576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.256031856208043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4753541657552796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.796491073891664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9907826918031377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5409548089261325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979097457744342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.996949248495381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080633701055939,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1157214284114376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03259861685471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.402777069610347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9956351945975501,
          -7,
          -7,
          -2.8232568101510402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.95502131363761,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542987168420799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.121887985103681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2942457161381182,
          -7,
          -7,
          -7,
          -4.576272226219881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1156105116742996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.130333768495006,
          -3.697316541732383,
          -7,
          -7,
          -3.0538464268522527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0413926851582254,
          -1.9311187105921872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4265112613645754,
          -7,
          -7,
          -2.677130665542173,
          -1.9395192526186187,
          -2.1789769472931693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6464037262230695,
          -7,
          -3.7563698216020813,
          -7,
          -7,
          -7,
          -7,
          -2.9542425094393248,
          -7,
          -7,
          -2.88993167285404,
          -7,
          -7,
          -7,
          -4.735958002142925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1089031276673134,
          -2.3242824552976926,
          -7,
          -7,
          -7,
          -7,
          -2.385606273598312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5813156161174313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2008504980910777,
          -7,
          -7,
          -7,
          -7,
          -2.8298163247172368,
          -7,
          -7,
          -2.660865478003869,
          -2.7291647896927698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4742162640762553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1491944711346544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.940108802990022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1586639808139894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.582063362911709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605972678066446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0755469613925306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.097666762890238,
          -7,
          -7,
          -7,
          -7,
          -3.0362295440862943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4533183400470375,
          -7,
          -7,
          -7,
          -1.9294189257142926,
          -7,
          -3.3749315539781883,
          -5.432914800325537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431387890960021,
          -7,
          -7,
          -4.573602552304502,
          -7,
          -7,
          -4.090628333058493,
          -7,
          -7,
          -3.9519200735202937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.78417492853611,
          -3.767304317453273,
          -7,
          -7,
          -4.448381636854661,
          -7,
          -4.402287181360576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.085789890327987,
          -7,
          -7,
          -4.57016919245616,
          -4.000086850211649,
          -3.248218561190075,
          -7,
          -7,
          -7,
          -3.842609239610562,
          -7,
          -7,
          -7,
          -7,
          -3.693023067923694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351892891903961,
          -4.377274370059828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6351820486562674,
          -3.524266268766979,
          -7,
          -2.929929560084588,
          -7,
          -4.603750445560116,
          -4.562042924490958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.551224026542675,
          -7,
          -7,
          -7,
          -3.052886235256382,
          -3.9849771264154934,
          -2.516755660221549,
          -7,
          -7,
          -7,
          -7,
          -4.627007210742902,
          -7,
          -7,
          -7,
          -3.735997884091794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8616638236770844,
          -4.439553732943139,
          -7,
          -3.041787318971752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.218535505216528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5559404378185113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.235701553060869,
          -7,
          -7,
          -2.5888317255942073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.286568734057264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2380461031287955,
          -4.310672074930124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3690611665868144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.792391689498254,
          -2.269512944217916,
          -4.35723903776805,
          -7,
          -7,
          -7,
          -2.6455314297070633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9938218538340813,
          -7,
          -7,
          -7,
          -4.178407101369325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0341068297076434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2215011749824356,
          -7,
          -7,
          -3.0610753236297916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.42410541751129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216904498521672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8615344108590377,
          -7,
          -7,
          -7,
          -2.5712454995937803,
          -2.183744223284207,
          -1.9242792860618816,
          -7,
          -7,
          -1.9956351945975501,
          -7,
          -7,
          -2.1367205671564067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.500373714353374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2278867046136734,
          -2.3453737305590883,
          -2.3584107862063366,
          -7,
          -7,
          -3.3172622140648027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.370142847051102,
          -3.401572845676446,
          -2.5080244315589613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.373353433957022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727809558365384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.971062360951899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6009728956867484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.912912551176097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.672119418119499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1914510144648953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.419955748489758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.734799829588847,
          -7,
          -7,
          -7,
          -3.9216067174769838,
          -2.971275848738105,
          -7,
          -7,
          -7,
          -3.0437551269686796,
          -7,
          -7,
          -7,
          -2.597695185925512,
          -7,
          -7,
          -7,
          -2.481442628502305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5984257066728684,
          -7,
          -7,
          -3.0261245167454502,
          -4.066748209617138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7634279935629373,
          -7,
          -2.45484486000851,
          -7,
          -7,
          -7,
          -3.3581252852766488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.570391143779831,
          -7,
          -3.4260230156898763,
          -7,
          -4.0477031081343045,
          -7,
          -4.0647449281249015,
          -7,
          -7,
          -7,
          -4.136720567156407,
          -2.995020606124758,
          -7,
          -7,
          -7,
          -7,
          -3.1758016328482794,
          -7,
          -7,
          -7,
          -4.352259719157145,
          -4.2804417782984165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153967221645479,
          -3.4109458586877746,
          -7,
          -3.3995114795956187,
          -7,
          -7,
          -4.6323357942172505,
          -7,
          -7,
          -3.5908418347816027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985785617772605,
          -7,
          -7,
          -7,
          -7,
          -3.985830489858392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.640103625305096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080911354139791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6842467475153124,
          -7,
          -7,
          -7,
          -7,
          -2.553883026643874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576168519607808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.033363432619723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.146128035678238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.215928229339918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.529650305995847,
          -7,
          -7,
          -2.8086477890631767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1367205671564067,
          -7,
          -7,
          -3.30941722577814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8129133566428557,
          -2.307496037913213,
          -2.0354297381845483,
          -7,
          -7,
          -3.1396692316100534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.09377178149873,
          -2.2891771688689815,
          -7,
          -7,
          -3.7846885995014214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4689746837261892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.250354934591055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.192604618582549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.968482948553935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.153204900084284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.021779774323242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1789769472931693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7126497016272113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0107238653917734,
          -4.242404758074511,
          -7,
          -7,
          -7,
          -7,
          -2.8965262174895554,
          -3.4114513421379375,
          -7,
          -7,
          -7,
          -7,
          -2.734799829588847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.541454428747589,
          -7,
          -7,
          -7,
          -3.8344524956717305,
          -2.78710609303657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.134126997288191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.287577809078705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.633367445117007,
          -7,
          -7,
          -7,
          -7,
          -3.6033609243483804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5068206042642256,
          -7,
          -3.0141003215196207,
          -7,
          -7,
          -3.9841671271469883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.918554530550274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4653828514484184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639735439967236,
          -4.740457434318508,
          -7,
          -7,
          -2.3191060593097763,
          -7,
          -7,
          -7,
          -7,
          -3.093421685162235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779740751176741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6074550232146687,
          -7,
          -7,
          -7,
          -3.5857990090130007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7170044070405472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9122220565324155,
          -7,
          -7,
          -3.5931752634781025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.876985262766487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1818435879447726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6923180442592787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7221812966649073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3222192947339195,
          -7,
          -7,
          -3.4375523905687615,
          -7,
          -1.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727191403365907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149018859818209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1075491297446862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.60535892548885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495450669690435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.938832324687507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3770146804081005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080637308078068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3240765797394864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3197304943302246,
          -3.6758974356443237,
          -1.9907510041972791,
          -7,
          -7,
          -2.185363193491215,
          -3.4877744973806672,
          -7,
          -7,
          -7,
          -2.9461246192171453,
          -7,
          -2.688642251959892,
          -3.2794387882870204,
          -7,
          -3.4423229557455746,
          -2.90946030951289,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5800806438630075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.414230329001037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.319522449065454,
          -7,
          -3.213384924916388,
          -2.723518819179158,
          -7,
          -3.3251049829714074,
          -2.7846172926328756,
          -3.0281644194244697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.866356848444443,
          -7,
          -7,
          -7,
          -7,
          -2.4370707382903847,
          -7,
          -7,
          -3.104487111312395,
          -2.831751312022354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3400473176613934,
          -7,
          -7,
          -2.071211164815486,
          -2.467977875279793,
          -7,
          -7,
          -7,
          -2.8232568101510402,
          -7,
          -7,
          -3.30941722577814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.404320467221731,
          -7,
          -7,
          -7,
          -2.7507012003958686,
          -4.125025586819949,
          -7,
          -7,
          -7,
          -7,
          -2.6034536991873214,
          -3.3119656603683665,
          -2.806095142558302,
          -2.446823361859061,
          -7,
          -7,
          -7,
          -4.273865140887861,
          -3.3184807251745174,
          -3.144418518602069,
          -7,
          -7,
          -3.3230457354817013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8062769038987865,
          -7,
          -2.7244806771885997,
          -3.302330928684399,
          -7,
          -7,
          -7,
          -7,
          -3.449169732165201,
          -7,
          -3.3142886609474975,
          -7,
          -3.057539321108782,
          -7,
          -7,
          -3.021602716028242,
          -2.210280291360743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8667755227942764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.306425027550687,
          -7,
          -7,
          -3.477796299015296,
          -7,
          -3.1365620365899805,
          -3.3860439219322616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7264555202583103,
          -7,
          -3.3068537486930083,
          -7,
          -2.2059984408197937,
          -7,
          -3.59659709562646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3517963068970236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.447197566155191,
          -3.302330928684399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.312811826212088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5122943328400638,
          -3.526597709103452,
          -7,
          -7,
          -7,
          -3.5743785644130823,
          -7,
          -3.04720994556899,
          -7,
          -4.521870011498159,
          -7,
          -7,
          -7,
          -7,
          -2.2202715717543526,
          -3.1441069730493227,
          -7,
          -2.9014583213961123,
          -7,
          -3.307923703611882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.86844850133673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.65263306808311,
          -7,
          -3.36679638328673,
          -7,
          -3.9271136119337604,
          -7,
          -3.3047058982127653,
          -2.6979844861673534,
          -7,
          -7,
          -7,
          -7,
          -3.4929000111087034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.277814400881507,
          -3.4530123911214554,
          -7,
          -7,
          -7,
          -3.4782778319196046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0419845014867866,
          -3.326335860928751,
          -7,
          -7,
          -3.3207692283386865,
          -2.952469547503639,
          -3.6326597132939136,
          -3.616231969538357,
          -7,
          -7,
          -3.5252804524478916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313023110323238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.155730671278588,
          -7,
          -7,
          -4.1271534106979635,
          -4.446568231376214,
          -7,
          -7,
          -7,
          -7,
          -4.513736844287251,
          -4.4242934715668065,
          -7,
          -4.118330874057302,
          -7,
          -7,
          -7,
          -7,
          -4.80664455621679,
          -7,
          -4.797676014934945,
          -4.134400255918984,
          -7,
          -7,
          -7,
          -7,
          -4.242392331375743,
          -7,
          -4.123993117376059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.084377652510378,
          -7,
          -3.688808999699281,
          -3.8637787291390504,
          -7,
          -2.9204711793184543,
          -3.036129648862875,
          -3.442636525782232,
          -2.6600468488873688,
          -3.293638735631343,
          -3.5347873586294916,
          -7,
          -3.347748075174585,
          -2.720413760411568,
          -7,
          -3.553093786437186,
          -2.299942900022767,
          -7,
          -2.9906939606797516,
          -4.233985478780212,
          -7,
          -7,
          -3.2409056656041253,
          -3.167898869393933,
          -4.332582719834521,
          -7,
          -7,
          -3.3372595397502756,
          -3.931193348542249,
          -7,
          -3.4192071574778993,
          -7,
          -4.1211328899984085,
          -7,
          -7,
          -3.598790506763115,
          -4.015045239174416,
          -3.5217916496391233,
          -3.1925674533365456,
          -3.4202033743532962,
          -3.9072769666896816,
          -2.951337518795918,
          -7,
          -3.1048697542030097,
          -4.107164728282974,
          -7,
          -3.872932838859368,
          -7,
          -7,
          -7,
          -4.08181520063228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7626035495668035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357572784051678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.533136288278639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.087713997583522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7628285531890904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5958267770732233,
          -7,
          -7,
          -7,
          -4.877348305763564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.429752280002408,
          -7,
          -7,
          -7,
          -3.7327354312288112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9030899869919435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040681439373358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.095308861385381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.07213956323974,
          -7,
          -7,
          -7,
          -2.279894980011638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7275575224348954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.192827543293699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9122220565324155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6797911709803546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3729120029701067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097749994285252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.955796751121542,
          -7,
          -7,
          -4.242702892223277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.801849439205396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1439511164239637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.570239294602916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.182528775278964,
          -7,
          -7,
          -7,
          -4.979389013112218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941595898175119,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.562114350588686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080864490098036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9522595365908204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.65748610775906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.876939140345395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.390405156480081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7259116322950483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.12501744535038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1921677259471775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.569409026347427,
          -3.822538554147357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.873436863222037,
          -4.979065556997999,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1055196464203245,
          -7,
          -7,
          -7,
          -7,
          -3.370050237074868,
          -7,
          -7,
          -7,
          -3.0770043267933502,
          -7,
          -3.4439927191170185,
          -7,
          -7,
          -2.4153072922255676,
          -3.1389798130022526,
          -7,
          -2.8041394323353503,
          -7,
          -2.851869600729766,
          -7,
          -7,
          -4.2622374497415825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4913616938342726,
          -2.2487903775753857,
          -3.2938043599193367,
          -7,
          -3.042181594515766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4756711883244296,
          -7,
          -7,
          -2.9564085711958326,
          -2.370505044202905,
          -2.4871383754771865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.339782584655998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.140468759922789,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.927319024959656,
          -7,
          -1.9463294268049558,
          -7,
          -7,
          -7,
          -7,
          -2.7715874808812555,
          -2.4353665066126613,
          -1.7928584219256614,
          -2.3944516808262164,
          -2.218235318937493,
          -7,
          -2.476638437013566,
          -7,
          -3.409555990461098,
          -2.9561684304753633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7259116322950483,
          -7,
          -1.8808135922807914,
          -7,
          -7,
          -7,
          -1.9084850188786497,
          -7,
          -2.7535830588929064,
          -1.6842467475153124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.245018870737753,
          -7,
          -7,
          -2.3573391885859913,
          -3.6336367541602255,
          -7,
          -7,
          -7,
          -4.262466910734854,
          -2.4913616938342726,
          -3.124178055474675,
          -2.392696953259666,
          -7,
          -7,
          -2.2194535370768107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.733999286538387,
          -2.4265112613645754,
          -3.7104558643354246,
          -7,
          -3.4818724103106633,
          -7,
          -7,
          -3.8175653695597807,
          -7,
          -7,
          -1.5214286788851048,
          -7,
          -3.131297796597623,
          -7,
          -2.4771212547196626,
          -7,
          -2.7861833455676335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8363241157067516,
          -7,
          -2.696235006222717,
          -2.2833012287035497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8690143007117155,
          -7,
          -7,
          -7,
          -7,
          -1.9400745984269563,
          -2.790988475088816,
          -2.9813655090785445,
          -1.2454076516168293,
          -2.6967930850817443,
          -1.9984178689901253,
          -7,
          -7,
          -7,
          -2.924795995797912,
          -2.8356905714924254,
          -1.8976270912904414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0689276116820716,
          -7,
          -7,
          -2.733999286538387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4479328655921804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.011993114659257,
          -3.0707764628434346,
          -3.558708570533166,
          -5.150612162606934,
          -7,
          -2.762678563727436,
          -7,
          -7,
          -7,
          -7,
          -2.8898617212581885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2540644529143377,
          -3.1571544399062814,
          -7,
          -7,
          -7,
          -7,
          -1.9451871240189849,
          -1.5826314394896364,
          -7,
          -7,
          -7,
          -2.7795964912578244,
          -7,
          -1.585580716933467,
          -7,
          -7,
          -7,
          -3.058995093525416,
          -2.979548374704095,
          -3.1166907434117026,
          -2.9232440186302764,
          -4.502372488311689,
          -7,
          -7,
          -2.7737864449811935,
          -7,
          -7,
          -2.8218409272004545,
          -2.6515202982342205,
          -7,
          -7,
          -7,
          -2.03342375548695,
          -1.6394864892685859,
          -0.9289177202554291,
          -2.236033147117636,
          -7,
          -7,
          -7,
          -2.7774268223893115,
          -2.7686381012476144,
          -7,
          -2.7944880466591697,
          -2.332149796241367,
          -2.593286067020457,
          -7,
          -2.537189226243645,
          -4.008781090107339,
          -7,
          -2.745855195173729,
          -3.781827152932428,
          -7,
          -2.271066772286538,
          -7,
          -7,
          -2.4369573306694496,
          -2.3607826898732798,
          -7,
          -7,
          -7,
          -7,
          -5.099324912538834,
          -3.139249217571607,
          -7,
          -7,
          -7,
          -3.189770956346874,
          -2.5419950357274104,
          -7,
          -7,
          -7,
          -7,
          -2.7315887651867388,
          -7,
          -2.569958818096594,
          -7,
          -7,
          -2.4747017805962495,
          -2.801403710017355,
          -7,
          -7,
          -4.956525391661737,
          -7,
          -1.8879724546272227,
          -4.24831664034178,
          -7,
          -2.7259116322950483,
          -2.3621996388688866,
          -7,
          -2.0544737683203174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7075701760979367,
          -2.2952004520032574,
          -2.0092080017868237,
          -7,
          -2.0179272562152137,
          -2.315970345456918,
          -1.9953101238623854,
          -7,
          -7,
          -4.320696597770426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.102828027919261,
          -4.258972331109386,
          -7,
          -7,
          -4.578914137904182,
          -7,
          -7,
          -3.922552466761376,
          -7,
          -7,
          -4.655416985727724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.787453389721934,
          -7,
          -7,
          -7,
          -4.455453968778628,
          -7,
          -4.406233511374323,
          -4.231138136029719,
          -7,
          -7,
          -4.187041040042328,
          -7,
          -4.2459812555626195,
          -7,
          -7,
          -7,
          -7,
          -2.6972293427597176,
          -3.5753148805829507,
          -2.4693096496224327,
          -1.7744393091379262,
          -7,
          -7,
          -3.117602691690084,
          -3.9452592658135237,
          -2.7641761323903307,
          -3.2935835134961167,
          -7,
          -3.5482665451707454,
          -3.7318304202881625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.482835485930594,
          -3.6590555379726695,
          -7,
          -2.829946695941636,
          -3.0517311960598494,
          -7,
          -3.500932780958173,
          -7,
          -4.341760864759556,
          -2.939619078956698,
          -4.070296518197765,
          -2.812244696800369,
          -3.6877964113812944,
          -4.019282495761732,
          -3.9832879197666284,
          -7,
          -3.679246145413859,
          -3.5803546611065915,
          -3.1252446090735795,
          -3.479719235439571,
          -2.886490725172482,
          -3.462301715051026,
          -4.090328606823422,
          -7,
          -4.159627340658673,
          -7,
          -7,
          -3.3362595520141936,
          -7,
          -2.8825245379548803,
          -7,
          -7,
          -7,
          -7,
          -3.1014893069102683,
          -2.851869600729766,
          -2.0940050223646494,
          -7,
          -2.8318697742805017,
          -3.5279304952743336,
          -7,
          -2.4138583422700264,
          -7,
          -3.8047526021504607,
          -7,
          -3.400933960963036,
          -2.2675069615203176,
          -7,
          -7,
          -3.7712934426290596,
          -7,
          -3.0086001717619175,
          -7,
          -3.0277572046905536,
          -2.924795995797912,
          -7,
          -7,
          -7,
          -2.4076741092293186,
          -7,
          -3.5514499979728753,
          -7,
          -7,
          -7,
          -2.708302294449341,
          -4.744222551279631,
          -7,
          -7,
          -1.9444826721501685,
          -7,
          -7,
          -7,
          -7,
          -2.8684974938893117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.745855195173729,
          -3.0532705666813786,
          -2.73559889969818,
          -7,
          -2.53655844257153,
          -3.1562461903973444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8302678009336417,
          -7,
          -7,
          -7,
          -2.961421094066448,
          -3.1133574320107926,
          -2.378397900948138,
          -7,
          -2.1456107104450566,
          -7,
          -3.94146173934733,
          -7,
          -7,
          -7,
          -7,
          -2.09541844491831,
          -7,
          -7,
          -1.664207898076807,
          -1.9367598714069336,
          -2.7554937284151193,
          -7,
          -3.4472355770047596,
          -7,
          -7,
          -7,
          -3.45400593810379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.675663797434491,
          -7,
          -7,
          -7,
          -3.84314969134017,
          -2.617000341120899,
          -7,
          -3.988625834862769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6464037262230695,
          -2.826398782187618,
          -7,
          -7,
          -2.824125833916549,
          -7,
          -2.984617313236748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0310042813635367,
          -2.824125833916549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.396286546068402,
          -7,
          -7,
          -7,
          -7,
          -2.367525335688555,
          -7,
          -7,
          -3.9852692552788476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6576007704466384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.832508912706236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.877008322140324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3424226808222062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8808135922807914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.499549625905149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.627859092854612,
          -7,
          -7,
          -2.6074550232146687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4409090820652177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6159500516564007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.172281761455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.569549464888704,
          -4.300008202553813,
          -3.2438644894340767,
          -7,
          -7,
          -7,
          -7,
          -3.770631127777807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.350867996286564,
          -4.979120242557178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5848963441374497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.584331224367531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3568000093778245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6216896970649146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1072099696478683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.693726948923647,
          -3.0034605321095067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0170333392987803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.434696618924666,
          -7,
          -2.446640706109038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426389251395546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.06756366989378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1760912590556813,
          -7,
          -7,
          -7,
          -2.8382192219076257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1504494094608804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.601951404133522,
          -7,
          -7,
          -2.2098499890921364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5809249756756194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.593286067020457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6473829701146196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7853298350107671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9459607035775686,
          -7,
          -5.432871523548164,
          -7,
          -7,
          -4.543347759379176,
          -2.9556877503135057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9537596917332287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.378397900948138,
          -7,
          -7,
          -7,
          -3.3492775274679554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.135259898515659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.126293790693266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779708296872661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2835273648616936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.716003343634799,
          -4.146686055647526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.767897616018091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.65909815822552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9023293058583186,
          -3.590618948206578,
          -7,
          -7,
          -4.032745358864123,
          -7,
          -7,
          -7,
          -2.5490032620257876,
          -2.482873583608754,
          -7,
          -4.2579783984792305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.20682587603185,
          -7,
          -4.035809829650629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4050901140387224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7371926427047373,
          -2.546542663478131,
          -4.51914518196853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8573324964312685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4756711883244296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.520614521878236,
          -4.0987129305788805,
          -7,
          -7,
          -7,
          -4.736786793449335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2900346113625183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.679155241283354,
          -7,
          -3.4274861090957858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7746264379339527,
          -7,
          -2.285557309007774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4955443375464483,
          -7,
          -7,
          -3.449454038712713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8573928109209015,
          -7,
          -7,
          -3.76767522402796,
          -7,
          -7,
          -7,
          -7,
          -2.88024177589548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3289908554494287,
          -7,
          -2.0005425290922942,
          -2.414973347970818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.44870631990508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149514701900688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.376576957056512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3866772839608377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6885977750811696,
          -7,
          -4.497468723709966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.660549282517093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7535830588929064,
          -7,
          -7,
          -2.677606952720493,
          -7,
          -4.620954575698162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9523564773237907,
          -7,
          -4.433052616138876,
          -7,
          -7,
          -4.067802127338805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -7,
          -2.8228216453031045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0726174765452368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9604232070778296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.782042416620554,
          -7,
          -7,
          -4.139406770441792,
          -7,
          -7,
          -7,
          -7,
          -2.582063362911709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.172442376021389,
          -7,
          -3.278296208091274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.156549151331781,
          -7,
          -7,
          -4.303822199862847,
          -7,
          -7,
          -4.633195673394554,
          -7,
          -7,
          -3.600210306409328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7607993116307177,
          -7,
          -7,
          -3.989627770745151,
          -7,
          -7,
          -7,
          -3.7797407511767407,
          -7,
          -4.025950682379089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.640948276144205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.303030374525659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5993371329924893,
          -2.8943160626844384,
          -7,
          -3.7198282862543346,
          -7,
          -7,
          -7,
          -3.7270530113538576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.312875222239046,
          -7,
          -7,
          -4.281669563107719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.993876914941211,
          -7,
          -7,
          -7,
          -7,
          -3.84963435786558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278250442299367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658059118703411,
          -7,
          -7,
          -7,
          -7,
          -3.625826713285711,
          -2.220108088040055,
          -7,
          -7,
          -2.862131379313037,
          -7,
          -3.8963608454693164,
          -7,
          -7,
          -7,
          -3.59832389196373,
          -7,
          -7,
          -7,
          -2.084576277934331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6989700043360187,
          -7,
          -3.09429639740537,
          -2.1760912590556813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1522883443830563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6928469192772297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9155713028246213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0170333392987803,
          -7,
          -7,
          -1.8728843441374254,
          -7,
          -7,
          -7,
          -7,
          -4.057285644418214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1271047983648077,
          -7,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1476763242410986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6691308473733324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6459132750338443,
          -7,
          -7,
          -7,
          -3.770631127777807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9493818737132953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.721260875288632,
          -7,
          -7,
          -7,
          -7,
          -3.3077471101313116,
          -7,
          -7,
          -2.3531465462139796,
          -2.725094521081469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3062105081677613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4988616889928843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.110589710299249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -7,
          -2.1335389083702174,
          -7,
          -3.1571544399062814,
          -7,
          -7,
          -7,
          -7,
          -2.688419822002711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.604334073102911,
          -7,
          -7,
          -3.1248301494138593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7795964912578244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8893017025063104,
          -3.4095950193968156,
          -7,
          -7,
          -7,
          -4.60591887481288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097711848542565,
          -2.2571984261393445,
          -7,
          -7,
          -7,
          -3.034227260770551,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.361727836017593,
          -7,
          -1.9622114391106,
          -7,
          -1.716003343634799,
          -2.3334472744967503,
          -7,
          -7,
          -7,
          -5.131873585170395,
          -7,
          -3.0161973535124393,
          -4.5436211115640335,
          -7,
          -7,
          -2.663700925389648,
          -7,
          -2.9036325160842376,
          -7,
          -2.9642596301968487,
          -7,
          -7,
          -7,
          -2.7450747915820575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3961993470957363,
          -7,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732393759822968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.386766415717314,
          -7,
          -7,
          -7,
          -3.397657625474316,
          -3.725258066359961,
          -7,
          -7,
          -7,
          -7,
          -3.4729757345942285,
          -7,
          -7,
          -3.5337085232398597,
          -3.3913762391696496,
          -7,
          -3.7179200258369938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3514484229091166,
          -4.377251596478043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590284403718162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5509922837391463,
          -7,
          -7,
          -4.12653184328548,
          -7,
          -7,
          -4.154930911986147,
          -7,
          -7,
          -3.286905352972375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.984707294482673,
          -7,
          -2.5407464642438433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.001564258766185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8079857748471495,
          -2.829303772831025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.279187678432147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.654850090561394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275748884479195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8109042806687006,
          -3.3835697189547274,
          -7,
          -7,
          -7,
          -7,
          -3.371806458507416,
          -7,
          -7,
          -7,
          -3.083860800866573,
          -7,
          -3.3199384399803087,
          -3.6306312440205,
          -2.760422483423212,
          -2.519171463821659,
          -2.5789442910971676,
          -7,
          -2.8169038393756605,
          -7,
          -2.863322860120456,
          -2.530199698203082,
          -2.575187844927661,
          -4.26246295553778,
          -2.3585693167727633,
          -7,
          -7,
          -7,
          -2.9474337218870508,
          -7,
          -2.3915231836751634,
          -7,
          -7,
          -7,
          -3.440968085459358,
          -7,
          -7,
          -2.6101276130759956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7930916001765804,
          -3.2624510897304293,
          -2.0770043267933502,
          -2.500373714353374,
          -7,
          -2.6036855496147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4425581544959227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4504800546060603,
          -7,
          -2.0170333392987803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.028932562598488,
          -2.8847953639489807,
          -2.0681858617461617,
          -7,
          -2.359835482339888,
          -7,
          -3.244836803876376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.500373714353374,
          -7,
          -7,
          -3.404320467221731,
          -7,
          -7,
          -7,
          -1.9084850188786497,
          -7,
          -7,
          -2.8573324964312685,
          -1.8728843441374254,
          -7,
          -7,
          -2.767897616018091,
          -2.360309344342059,
          -7,
          -3.598097124391873,
          -7,
          -7,
          -7,
          -2.957128197676813,
          -7,
          -7,
          -3.2659963704950794,
          -7,
          -7,
          -7,
          -7,
          -4.438724255549354,
          -7,
          -2.82865989653532,
          -2.7009919975949694,
          -7,
          -7,
          -2.837588438235511,
          -2.583198773968623,
          -7,
          -7,
          -3.980821166644336,
          -7,
          -7,
          -7,
          -2.7489628612561616,
          -7,
          -3.012415374762433,
          -2.996803438696495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.683947130751512,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -2.3956294534922296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.640978057358332,
          -2.885926339801431,
          -2.397070549959409,
          -2.5459253293558426,
          -7,
          -2.775861155715095,
          -2.0726174765452363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.311753861055754,
          -7,
          -7,
          -7,
          -7,
          -2.1646884198754046,
          -7,
          -7,
          -2.493225621510431,
          -7,
          -7,
          -7,
          -2.9283958522567137,
          -7,
          -7,
          -2.1436392352745433,
          -2.8228216453031045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.699143687394484,
          -7,
          -3.075911761482778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7944880466591697,
          -2.7180862947830917,
          -7,
          -2.9582054065347525,
          -5.15067049322578,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788168371141168,
          -7,
          -7,
          -7,
          -7,
          -2.7641761323903307,
          -7,
          -2.7442929831226763,
          -2.8709888137605755,
          -4.00358976718914,
          -7,
          -7,
          -7,
          -2.7810369386211318,
          -2.3317646126401494,
          -2.3404441148401185,
          -7,
          -2.8819549713396007,
          -7,
          -2.1868151244474543,
          -3.1476763242410986,
          -2.1010593549081156,
          -7,
          -7,
          -7,
          -7,
          -2.988112840268352,
          -3.419625360887743,
          -7,
          -4.502631927572243,
          -7,
          -7,
          -7,
          -7,
          -3.095518042323151,
          -3.129689892199301,
          -2.41161970596323,
          -2.765668554759014,
          -7,
          -7,
          -7,
          -2.5434471800817002,
          -1.9481683617271317,
          -2.6464037262230695,
          -7,
          -2.8915374576725643,
          -2.8808135922807914,
          -2.790988475088816,
          -2.782472624166286,
          -2.5575072019056577,
          -1.554880913632493,
          -2.2497018038950065,
          -3.0788191830988487,
          -7,
          -2.8512583487190755,
          -3.569501593215114,
          -2.859738566197147,
          -2.760422483423212,
          -3.4820155764507117,
          -7,
          -2.765668554759014,
          -2.651762447380111,
          -2.1072099696478683,
          -2.218010042984363,
          -1.6788536861072663,
          -7,
          -7,
          -7,
          -7,
          -4.254251057483062,
          -1.8321894610685132,
          -7,
          -7,
          -7,
          -3.19506899646859,
          -1.9789685974894828,
          -7,
          -7,
          -7,
          -7,
          -2.7466341989375787,
          -7,
          -1.7912226592314022,
          -7,
          -7,
          -1.7169848005087767,
          -7,
          -3.6690843266211157,
          -7,
          -4.319701694006469,
          -7,
          -1.593465688370741,
          -4.248549489593387,
          -2.847572659142112,
          -7,
          -2.975891136401793,
          -7,
          -1.8948696567452525,
          -2.708562525598842,
          -7,
          -2.7686381012476144,
          -7,
          -2.739572344450092,
          -1.3258803868629827,
          -2.788875115775417,
          -7,
          -7,
          -3.1772478362556233,
          -7,
          -1.5208696693061823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7297315952870354,
          -4.4042177445149235,
          -3.4807333549387898,
          -7,
          -7,
          -7,
          -7,
          -4.8050860754309666,
          -7,
          -7,
          -4.394889257167419,
          -4.3545501955078825,
          -7,
          -7,
          -7,
          -4.801732908048583,
          -7,
          -4.486543819882519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008404269288749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055129764292919,
          -7,
          -3.977952121201462,
          -2.399962001930988,
          -3.8766796104192007,
          -2.6192211457496266,
          -2.530350390252444,
          -3.0257153839013404,
          -7,
          -3.123851640967086,
          -3.4011789054198043,
          -2.630224410752432,
          -2.2938043599193367,
          -3.605771778568517,
          -2.5466351879571025,
          -2.237154410925494,
          -7,
          -3.0569048513364727,
          -3.2506639194632436,
          -7,
          -7,
          -3.496652939250918,
          -7,
          -7,
          -2.471691675306919,
          -3.248667908857583,
          -4.474545503517712,
          -7,
          -7,
          -7,
          -3.770104761201152,
          -7,
          -3.943855453545965,
          -2.5249450723982387,
          -4.0709977969934235,
          -7,
          -3.388278863459639,
          -4.020071103533841,
          -3.3301882244051946,
          -7,
          -2.7766103938800204,
          -3.5825178836040625,
          -2.5023677374066544,
          -7,
          -2.89707700320942,
          -2.756153779095104,
          -3.965589710687253,
          -7,
          -3.522795219079118,
          -7,
          -2.576341350205793,
          -2.2732529640336354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2274153207496505,
          -2.863322860120456,
          -2.1378717791808004,
          -7,
          -3.4379090355394983,
          -2.572441309406038,
          -7,
          -7,
          -7,
          -2.8048206787211623,
          -7,
          -3.552495842828762,
          -2.6444385894678386,
          -7,
          -7,
          -7,
          -7,
          -3.488973524726508,
          -7,
          -7,
          -3.2287852009806493,
          -7,
          -7,
          -2.7054360465852505,
          -7,
          -7,
          -3.3763944420372662,
          -7,
          -7,
          -7,
          -3.4402496657082047,
          -4.744371227331861,
          -7,
          -7,
          -2.962369335670021,
          -7,
          -7,
          -7,
          -7,
          -2.9965116721541785,
          -7,
          -3.0081741840064264,
          -7,
          -7,
          -3.731346975545955,
          -7,
          -3.358315640082196,
          -7,
          -7,
          -7,
          -3.161966616364075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5303277897780863,
          -7,
          -7,
          -7,
          -7,
          -3.2495795919611683,
          -7,
          -3.458033192496506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9556877503135057,
          -7,
          -7,
          -7,
          -2.0631405624169377,
          -3.0644579892269186,
          -7,
          -3.272460480145897,
          -7,
          -7,
          -7,
          -2.9777236052888476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.977220446635385,
          -7,
          -2.8506462351830666,
          -7,
          -3.320374802023668,
          -7,
          -3.1960379407345236,
          -3.687930074726357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1341771075767664,
          -7,
          -7,
          -2.8363241157067516,
          -7,
          -3.3166591552474705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.534026106056135,
          -7,
          -2.751279103983342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2216749970707688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8095597146352675,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658068662483436,
          -7,
          -7,
          -7,
          -3.5990092398233435,
          -3.6259294927162946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.896415976473123,
          -7,
          -7,
          -7,
          -4.57624918244613,
          -7,
          -7,
          -7,
          -2.3909351071033793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.55636281525692,
          -7,
          -2.5440680443502757,
          -7,
          -7,
          -2.1903316981702914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2194972045125625,
          -7,
          -7,
          -3.0523090996473234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7243578042264267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216297886630392,
          -2.0253058652647704,
          -2.103803720955957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216667229548209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.1856365769619115,
          -2.3394514413064407,
          -7,
          -4.057323705369284,
          -7,
          -7,
          -7,
          -7,
          -2.9523080096621253,
          -7,
          -7,
          -3.7938602013426697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8864907251724818,
          -1.8512583487190755,
          -7,
          -7,
          -3.1082266563749283,
          -7,
          -7,
          -7,
          -7,
          -1.0314084642516241,
          -2.0773679052841567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.264768986551449,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6283146059185416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.342422680822206,
          -7,
          -7,
          -7,
          -2.0086001717619175,
          -7,
          -3.9116901587538613,
          -7,
          -3.306425027550687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6811054991397882,
          -7,
          -7,
          -7,
          -7,
          -2.214843848047698,
          -2.2479732663618064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.157456768134226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6788824146707357,
          -7,
          -7,
          -7,
          -7,
          -2.110589710299249,
          -7,
          -2.8819549713396007,
          -2.936513742478893,
          -7,
          -3.103461622094705,
          -7,
          -7,
          -7,
          -2.3364597338485296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.271066772286538,
          -7,
          -7,
          -7,
          -7,
          -2.60422605308447,
          -2.354108439147401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.620580189857018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.447158031342219,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.072801149409849,
          -5.131875187972593,
          -7,
          -7,
          -4.543633532576258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4138025167693513,
          -2.9647309210536292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0257153839013404,
          -7,
          -7,
          -7,
          -4.541629159983864,
          -7,
          -7,
          -7,
          -4.135990846921625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.172126931198854,
          -7,
          -3.2528530309798933,
          -7,
          -4.61020220940222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.484299839346786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9847522781154137,
          -7,
          -3.0199466816788423,
          -7,
          -3.353531559077762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626966203780956,
          -7,
          -7,
          -7,
          -7,
          -3.184691430817599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.989894563718773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3026411313125035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5873741720730656,
          -7,
          -2.7745169657285493,
          -3.233334609615762,
          -7,
          -7,
          -7,
          -3.718169405391307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.009514632972974,
          -7,
          -7,
          -4.279210512601395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6549462265843444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275771900164932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.399996582729268,
          -7,
          -7,
          -1.7558748556724915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7320115734128025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.12057393120585,
          -3.3934874581471752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.215611129612849,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7535830588929064,
          -7,
          -7,
          -7,
          -7,
          -2.767897616018091,
          -1.1856365769619115,
          -7,
          -1.9084850188786497,
          -7,
          -4.0563330349511615,
          -2.2174839442139063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.000434077479319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3679767852945943,
          -2.660865478003869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070813359702716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1357277820214926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1925674533365456,
          -7,
          -7,
          -7,
          -7,
          -3.555485109936394,
          -7,
          -7,
          -2.6314437690131722,
          -2.7041505168397992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.910304168068569,
          -7,
          -3.300812794118117,
          -7,
          -2.353467413965482,
          -7,
          -7,
          -1.3891660843645326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.981048058913173,
          -7,
          -7,
          -7,
          -7,
          -1.8325089127062362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3847117429382825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.24551266781415,
          -7,
          -7,
          -7,
          -7,
          -2.575187844927661,
          -1.9956351945975501,
          -4.605649758517102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097625141210313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0472748673841794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.300508529343292,
          -3.245759355967277,
          -7,
          -7,
          -7,
          -4.240249631518799,
          -3.7723217067229196,
          -7,
          -7,
          -4.135164466656955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.874114435154633,
          -4.67818593005568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.851380667965597,
          -7,
          -7,
          -4.603425868816548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9836262871245345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.149537273365785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639615961441463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.303196057420489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2355933698010935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.123851640967086,
          -2.9817053769570374,
          -2.510545010206612,
          -7,
          -3.106020819140269,
          -7,
          -7,
          -7,
          -3.716003343634799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6283889300503116,
          -7,
          -7,
          -7,
          -7,
          -4.146593102096305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.24551266781415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6757783416740852,
          -3.4054317419673734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6126779183165016,
          -7,
          -2.7607993116307177,
          -3.3104636635935303,
          -7,
          -7,
          -7,
          -2.443262987458695,
          -2.705007959333336,
          -7,
          -4.561459171241916,
          -7,
          -7,
          -7,
          -7,
          -2.8530895298518657,
          -7,
          -2.4533183400470375,
          -7,
          -3.258397804095509,
          -7,
          -2.997664332875219,
          -2.595496221825574,
          -7,
          -2.808885867359812,
          -7,
          -7,
          -7,
          -2.649334858712142,
          -7,
          -2.3654879848909,
          -2.6156870819348312,
          -2.5750228080714463,
          -2.183744223284207,
          -2.6989700043360187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.134376352651557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.624797578960761,
          -7,
          -7,
          -3.622214022966295,
          -2.6201360549737576,
          -1.8991949431084194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2024883170600935,
          -7,
          -2.704579449696299,
          -7,
          -2.0223694478447944,
          -7,
          -3.407547779153598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6464037262230695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6842467475153124,
          -7,
          -7,
          -7,
          -7,
          -2.360309344342059,
          -2.3394514413064407,
          -1.9084850188786497,
          -7,
          -7,
          -7,
          -2.7007037171450192,
          -7,
          -7,
          -2.385606273598312,
          -7,
          -7,
          -2.8464608251293324,
          -3.503416129793859,
          -7,
          -7,
          -7,
          -4.738399987861007,
          -7,
          -3.0707764628434346,
          -2.040074643230312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5888317255942073,
          -2.582063362911709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6138418218760693,
          -0.2759571039631571,
          -7,
          -2.7770641547424293,
          -7,
          -7,
          -7,
          -3.383815365980431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.036628895362161,
          -7,
          -2.5453071164658243,
          -7,
          -7,
          -2.423245873936808,
          -7,
          -2.836802721861793,
          -2.629409599102719,
          -7,
          -7,
          -2.667452952889954,
          -7,
          -2.6748611407378116,
          -7,
          -2.429752280002408,
          -7,
          -3.8694664100808667,
          -7,
          -7,
          -2.0906088327618333,
          -2.6665179805548807,
          -7,
          -2.0316969361864436,
          -2.623766000133931,
          -2.504244254358882,
          -7,
          -2.829303772831025,
          -7,
          -7,
          -7,
          -2.3891660843645326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3626709297256667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9945371042984978,
          -7,
          -7,
          -7,
          -2.3820170425748683,
          -7,
          -7,
          -2.639486489268586,
          -3.00987563371216,
          -3.539828558377898,
          -5.15013908827447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7937903846908188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9700367766225568,
          -3.694956002249818,
          -7,
          -7,
          -7,
          -7,
          -2.069112851387121,
          -1.9822712330395684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5984257066728684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4050901140387224,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.612518962242537,
          -7,
          -7,
          -2.621176281775035,
          -7,
          -2.2422100322640643,
          -1.835446654338076,
          -1.761551988564182,
          -2.574031267727719,
          -7,
          -7,
          -7,
          -2.6364878963533656,
          -2.741151598851785,
          -2.6711728427150834,
          -2.8564267724702446,
          -3.0111473607757975,
          -2.373524980463404,
          -1.4728424567403875,
          -4.132099521916504,
          -7,
          -7,
          -3.770631127777807,
          -7,
          -2.6127838567197355,
          -7,
          -7,
          -2.571417652125032,
          -2.584331224367531,
          -7,
          -7,
          -7,
          -7,
          -4.195654082132311,
          -2.786041210242554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7041505168397992,
          -7,
          -7,
          -2.3774883833761327,
          -7,
          -2.9500401482063032,
          -7,
          -7,
          -2.4287825114969546,
          -4.547479333931025,
          -7,
          -7,
          -7,
          -7,
          -2.4420876295507603,
          -3.462996612028056,
          -7,
          -7,
          -7,
          -7,
          -2.459392487759231,
          -7,
          -1.8443218208944798,
          -2.6627578316815743,
          -2.520155886944864,
          -2.1921956258464497,
          -2.2005427182177972,
          -7,
          -7,
          -4.62014646958466,
          -4.748955119752549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100180930742329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.803907564918058,
          -7,
          -7,
          -4.090786927949267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7954744865504764,
          -2.81512766887421,
          -1.970141919942742,
          -7,
          -4.0587675553704194,
          -7,
          -3.2897994595306046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2062860444124324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.941855307225644,
          -3.701840554823391,
          -7,
          -7,
          -7,
          -7,
          -4.136339996533044,
          -7,
          -7,
          -2.719227673841901,
          -7,
          -7,
          -7,
          -4.012837224705172,
          -4.2808741725572155,
          -7,
          -3.187520720836463,
          -2.959637541326031,
          -3.120663652202327,
          -2.5517548730165664,
          -2.7895807121644256,
          -3.5276406399690727,
          -4.2646289582612225,
          -2.7846172926328756,
          -7,
          -7,
          -7,
          -3.3205616801952367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0948203803548,
          -7,
          -2.8312296938670634,
          -7,
          -3.4095950193968156,
          -3.219977256744623,
          -7,
          -2.4955443375464483,
          -7,
          -3.4929698053204894,
          -7,
          -3.9310915663388015,
          -7,
          -7,
          -7,
          -3.4586378490256493,
          -7,
          -7,
          -7,
          -7,
          -3.5073160400764136,
          -7,
          -7,
          -2.926342446625655,
          -2.4878451201114355,
          -7,
          -3.8431081419996067,
          -7,
          -7,
          -7,
          -3.051142623884847,
          -4.743015610916935,
          -7,
          -7,
          -7,
          -7,
          -2.767897616018091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.983175072037813,
          -3.022634539944119,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6838356205451257,
          -2.907411360774586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.863322860120456,
          -7,
          -7,
          -7,
          -2.665059566436283,
          -7,
          -2.957128197676813,
          -7,
          -7,
          -3.4653828514484184,
          -3.050379756261458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.31714366202289,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6796701132842666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.963787827345555,
          -2.7101173651118162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0842186867392387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3589812256253495,
          -7,
          -7,
          -7,
          -3.62096843564429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.430290106054924,
          -3.601408060534684,
          -7,
          -7,
          -3.4632151307661956,
          -7,
          -7,
          -7,
          -2.655138434811382,
          -7,
          -2.677606952720493,
          -3.8611399616898683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0377650359678245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03382569395331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.221701064384597,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2647129082893973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7507012003958686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.065093989357153,
          -7,
          -7,
          -2.546542663478131,
          -7,
          -2.1335389083702174,
          -7,
          -7,
          -3.624831922757537,
          -7,
          -7,
          -7,
          -4.436520434633616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8000981801747757,
          -7,
          -7,
          -7,
          -7,
          -3.039017321997412,
          -7,
          -7,
          -7,
          -3.4770126675252215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8312296938670634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6877396932891924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.671802067369607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.67268268350736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4038066105474227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3960248966085933,
          -7,
          -4.49882037810471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.608140774044056,
          -7,
          -7,
          -2.6819945671081067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.02201573981772,
          -7,
          -4.496348355776995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6866362692622934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530126028436784,
          -7,
          -7,
          -3.7679099677901626,
          -2.575187844927661,
          -7,
          -7,
          -7,
          -7,
          -3.4470028984661623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3916407034923877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4330093530931425,
          -7,
          -7,
          -7,
          -4.657065418709505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.404020791388131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.004450352989225,
          -3.7418603940652635,
          -7,
          -4.054766217838991,
          -7,
          -3.464737871805711,
          -3.7890163267933747,
          -7,
          -3.7718446011470075,
          -4.142483323659504,
          -2.1481911962420113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7536022072574475,
          -4.378193425501022,
          -7,
          -7,
          -3.3001605369513523,
          -7,
          -4.612391755480837,
          -7,
          -4.24355888962248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278479223046323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7026889681591335,
          -3.786171502733773,
          -3.0472748673841794,
          -4.15702336561913,
          -7,
          -7,
          -7,
          -4.015108160645837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.993920958801287,
          -2.655138434811382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.709269960975831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.641920074413117,
          -4.742190769699096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6364878963533656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604434867552265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7349597612724454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05865374157237,
          -2.9403708783959486,
          -7,
          -7,
          -7,
          -3.4049761783177557,
          -2.21221594798249,
          -2.283531196663333,
          -2.9237619608287004,
          -3.0608488730388075,
          -4.0796153235269434,
          -7,
          -1.6791918413383962,
          -3.3997025581386566,
          -7,
          -3.78265175161032,
          -2.235624770342187,
          -7,
          -4.058995093525416,
          -7,
          -3.5845196793420233,
          -2.8033432919072556,
          -4.062694773342393,
          -2.950566907345739,
          -4.060244426898225,
          -7,
          -3.457503426573305,
          -3.5848963441374497,
          -4.067628716728246,
          -7,
          -7,
          -7,
          -3.50443687881101,
          -7,
          -2.9977833992178162,
          -7,
          -3.2871669874200933,
          -3.763951826033324,
          -4.056294887076228,
          -3.581076933158591,
          -7,
          -7,
          -7,
          -7,
          -3.40212376240064,
          -2.640991471652534,
          -7,
          -3.214086577617114,
          -3.4915367772802655,
          -7,
          -3.7562556487542333,
          -7,
          -7,
          -3.7707783961691477,
          -3.613136798211654,
          -7,
          -7,
          -7,
          -2.345093540561045,
          -7,
          -7,
          -7,
          -7,
          -3.518777068926775,
          -3.373243118267363,
          -4.056790548274383,
          -4.075692918201804,
          -3.401369205272897,
          -7,
          -3.3628969678025444,
          -7,
          -7,
          -7,
          -7,
          -3.756141445883285,
          -7,
          -3.7699309201369524,
          -7,
          -3.3001967991717134,
          -4.062431553162612,
          -3.290442730593008,
          -7,
          -2.6945263277191858,
          -4.0690017170456,
          -4.058046230395282,
          -7,
          -7,
          -7,
          -3.7563698216020813,
          -7,
          -7,
          -7,
          -4.125025586819949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.057285644418214,
          -3.598097124391873,
          -4.057323705369284,
          -4.0563330349511615,
          -7,
          -4.065093989357153,
          -7,
          -7,
          -7,
          -3.5807349540222253,
          -7,
          -3.240085468038522,
          -4.057247580131245,
          -3.315640528098325,
          -3.5299250889736333,
          -7,
          -7,
          -3.5868497522450995,
          -1.781165293585858,
          -7,
          -3.482266003688865,
          -3.7891574919114395,
          -3.370624100841536,
          -7,
          -3.759101003867064,
          -3.585949270923298,
          -7,
          -7,
          -4.007854418758035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4438803215809832,
          -2.882935427564857,
          -4.141481129270804,
          -4.076130494543006,
          -7,
          -3.9391696796251776,
          -7,
          -4.056256735850139,
          -4.070665753453728,
          -7,
          -2.8801344764553045,
          -7,
          -7,
          -3.0155502605146522,
          -3.000679233840276,
          -7,
          -7,
          -7,
          -3.76544501809015,
          -4.05579865953248,
          -7,
          -3.177752871842618,
          -3.7691187404883246,
          -3.3680264161136764,
          -4.063258279950456,
          -3.168386980706974,
          -3.759743367597725,
          -7,
          -2.5833000057543316,
          -7,
          -7,
          -7,
          -3.757206173278786,
          -3.7556843338524133,
          -3.7575099022757996,
          -7,
          -3.2639740409646225,
          -7,
          -2.757633231530858,
          -7,
          -3.480474061544751,
          -2.267754435393497,
          -7,
          -3.468716471515472,
          -4.069557104582695,
          -3.5951654147902294,
          -3.231251077479202,
          -2.9728434433197877,
          -3.7651094972067183,
          -3.760987603193131,
          -3.46437775512603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.238376289780375,
          -7,
          -2.6620309788225325,
          -4.058236168942767,
          -3.279780976996965,
          -4.0553783313750005,
          -3.7553411838115474,
          -3.3654131000761778,
          -7,
          -7,
          -7,
          -7,
          -3.7624910040260096,
          -7,
          -4.055875039146097,
          -4.05618042334214,
          -7,
          -7,
          -3.155411956437706,
          -7,
          -7,
          -3.2950537061049516,
          -3.3004867879860287,
          -3.6822654462420923,
          -3.290083149124708,
          -7,
          -7,
          -3.7554174628109362,
          -3.595753342091326,
          -7,
          -7,
          -3.763128376799137,
          -7,
          -3.7578892650549034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062281069972644,
          -2.418888402527995,
          -7,
          -7,
          -7,
          -7,
          -3.7575858013465804,
          -3.581911750244118,
          -7,
          -3.761890268068682,
          -2.6088824508987196,
          -7,
          -3.8327962184124127,
          -3.258979166140853,
          -7,
          -7,
          -7,
          -3.515377033954657,
          -4.070850253427573,
          -2.672396706235079,
          -4.066549538761934,
          -2.3982277298043977,
          -7,
          -7,
          -7,
          -0.6128725059078792,
          -4.080806804334363,
          -3.0045005012266763,
          -2.684258267110064,
          -4.0987129305788805,
          -7,
          -7,
          -7,
          -3.759592308645975,
          -3.375773316604984,
          -3.5904331219738412,
          -7,
          -4.063633545230784,
          -3.460634782014431,
          -7,
          -3.755989128658785,
          -3.760460180960834,
          -4.058463985602251,
          -2.708515322242249,
          -3.036991623589965,
          -3.766524381029522,
          -7,
          -1.1212463653081923,
          -7,
          -7,
          -3.0802914129703645,
          -7,
          -7,
          -2.5341754764727074,
          -7,
          -2.9487970654459246,
          -3.0690758097663977,
          -3.79049627696711,
          -7,
          -3.606560492554639,
          -3.7609122963641055,
          -2.955247987438747,
          -3.307709923404807,
          -7,
          -7,
          -3.7545012293869173,
          -4.0922292421628566,
          -3.295823569483015,
          -7,
          -3.7569022317166274,
          -3.2210041567525165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3695498016648924,
          -2.9788269866677775,
          -2.980890327323183,
          -3.8340390181594666,
          -2.968253249161065,
          -7,
          -7,
          -1.9142950651552806,
          -2.1724659855008337,
          -4.054995861529141,
          -2.7897662050480823,
          -3.3604419331026376,
          -3.3829890619644596,
          -2.144923510396036,
          -2.121043692724776,
          -4.056371179475529,
          -4.055340099544181,
          -7,
          -2.8681299149575903,
          -7,
          -3.2838663484734685,
          -4.058122215782914,
          -2.833536661357987,
          -4.058539897939781,
          -2.5980498568165213,
          -7,
          -7,
          -2.9143679524576918,
          -3.4460255809433114,
          -3.7741080255082182,
          -4.070370390367003,
          -4.278570701610516,
          -3.8206939499733856,
          -3.0617754947078137,
          -2.601878997584187,
          -2.869165023196728,
          -7,
          -3.7388598020722004,
          -3.541543586121371,
          -4.274727294773987,
          -3.918624375272506,
          -2.584647295942839,
          -4.479100018108288,
          -3.4052975630428595,
          -3.203957091681244,
          -4.3233758719338615,
          -3.713885176907469,
          -3.6806527317073043,
          -3.7067651814617064,
          -2.7235963873885836,
          -2.9706306045562396,
          -7,
          -4.104640726057345,
          -3.5508884680813524,
          -2.9708779609577287,
          -7,
          -2.665164685826289,
          -3.3652227097019267,
          -3.613251442466525,
          -3.453104198432209,
          -3.138967138122855,
          -3.1981820519249844,
          -3.4993968451810296,
          -3.7482849569210996,
          -3.2459280618983324,
          -3.4725980077291743,
          -4.00650882777529,
          -3.244948282443099,
          -3.1933670027973036,
          -2.962940070683585,
          -2.9638402752028625,
          -3.295567099962479,
          -3.4472937271664454,
          -3.7827233819060297,
          -2.7325734959401977,
          -3.005003769884945,
          -2.47033526537637,
          -2.0809966834445737,
          -2.8048555856441326,
          -3.130038777017368,
          -3.796435558810175,
          -2.937966366237449,
          -3.6224212739756703,
          -3.585573518622731,
          -3.5518767631329724,
          -2.5230051670436797,
          -3.2813256137230815,
          -3.5971464878336956,
          -2.5623187299448182,
          -2.386880986817247,
          -3.672244590979858,
          -4.060471192797679,
          -2.327040530515065,
          -3.7607993116307177,
          -2.627953160620053,
          -4.199727758807056,
          -3.8180586558425884,
          -2.67425817319393,
          -3.010396335877664,
          -7,
          -3.018783688874697,
          -3.2481776883387057,
          -2.6372431155203353,
          -1.963612955395577,
          -2.8494194137968996,
          -3.123049400051291,
          -2.5916980263724967,
          -2.447790652695018,
          -3.762903528499057,
          -2.1476292279157922,
          -2.5798750174111493,
          -7,
          -3.0003376533044324,
          -4.092580300691311,
          -3.270811881862804,
          -3.2771506139637965,
          -2.898623623119816,
          -3.7626410582667367,
          -4.059941888061955,
          -7,
          -2.0253058652647704,
          -3.884153167842544,
          -2.801091739253345,
          -3.1581739553083064,
          -2.7091285660594253,
          -3.7668588110214176,
          -3.4323919847799242,
          -2.377854510283913,
          -3.4865367369347835,
          -4.064457989226918,
          -3.7574339899382694,
          -2.771638157016891,
          -3.7657057996869474,
          -1.9408213367147171,
          -2.8272256334024735,
          -3.4757438067481257,
          -3.5167666716053274,
          -3.444929147447511,
          -2.492146882358005,
          -2.1105261844479104,
          -4.088773767310448,
          -3.773859552376687,
          -3.549677489710556,
          -3.304023525101023,
          -2.352325472188329,
          -1.6743252109433453,
          -3.3647760572774246,
          -3.278715503274669,
          -2.930633736245974,
          -7,
          -4.057628072955568,
          -2.935614448747319,
          -2.6734658159009137,
          -2.719561449945234,
          -7,
          -3.0877491606340604,
          -3.2902572693945182,
          -2.5643527078960786,
          -2.885738048239018,
          -7,
          -4.059601279762754,
          -3.2356862287374053,
          -2.33547682460851,
          -3.168939213835978,
          -2.2400555832772624,
          -3.756217584467264,
          -2.5075320532526666,
          -7,
          -3.1618669046240195,
          -3.754348335711019,
          -4.0832875693272825,
          -3.2824710539263124,
          -4.088171539864352,
          -2.630976218273112,
          -7,
          -3.3602525081936707,
          -7,
          -7,
          -3.1653679968502697,
          -4.079543007402906,
          -2.13037074388832,
          -3.7218106152125467,
          -3.592139731565084,
          -2.2839979374679777,
          -3.468864040148188,
          -2.8558696887096082,
          -4.0669591978671225,
          -7,
          -3.5921545422761962,
          -4.060130999531045,
          -2.055443399092839,
          -2.4623249396967646,
          -7,
          -3.113423372534924,
          -3.266231696689893,
          -7,
          -3.2799709653992704,
          -2.3706056009381484,
          -2.6958099000719393,
          -3.773640193260026,
          -2.3924038081375647,
          -7,
          -2.325831307306037,
          -2.5360892666199084,
          -2.818516206243704,
          -2.3814066886605665,
          -2.6466065096424285,
          -2.31713817377725,
          -7,
          -4.056218581272306,
          -3.8717626060934567,
          -3.532945375615925,
          -4.060999853218289,
          -3.8131471445804674,
          -2.9820518369844335,
          -7,
          -2.43961383958441,
          -2.962053485123806,
          -1.708183718356779,
          -3.5825557388650933,
          -3.4775191756421684,
          -3.280805928393667,
          -7,
          -3.767304317453273,
          -2.5511269556556435,
          -3.067597743260208,
          -3.7561033715851053,
          -3.7590253691608635,
          -7,
          -2.338906665336077,
          -7,
          -7,
          -7,
          -3.45890212176587,
          -3.7704101315139065,
          -3.760874638052189,
          -3.7646243978509815,
          -3.438067450453494,
          -1.9006853974365008,
          -2.5960103102213306,
          -4.060130999531045,
          -2.9035602180181637,
          -7,
          -7,
          -7,
          -3.588047496986083,
          -7,
          -7,
          -2.9424765625193063,
          -3.2550311633455515,
          -2.8038914411897666,
          -4.061037590063418,
          -7,
          -3.649918718735419,
          -7,
          -4.055493006677845,
          -2.934281971477399,
          -7,
          -7,
          -3.198347748146906,
          -3.192691325123439,
          -3.0412490929989064,
          -4.055301864347441,
          -7,
          -3.7658919764300154,
          -7,
          -2.735687594578893,
          -7,
          -3.588346417745989,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4279154943087975,
          -7,
          -7,
          -7,
          -7,
          -3.632356046239073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5987358062804047,
          -7,
          -7,
          -1.594593426642608,
          -4.400509208154525,
          -7,
          -7,
          -7,
          -7,
          -2.413299764081252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335979142340354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4781071677013136,
          -3.401228167498113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5037906830571814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.041379524519975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4756711883244296,
          -7,
          -7,
          -7,
          -2.2174839442139063,
          -2.7007037171450192,
          -7,
          -7,
          -7,
          -2.03342375548695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6198929764583707,
          -7,
          -7,
          -7,
          -4.736428375931341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8025049560183866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.192818257048295,
          -7,
          -7,
          -7,
          -7,
          -2.2479732663618064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3197304943302246,
          -7,
          -2.0345711656177965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149376169491331,
          -7,
          -7,
          -7,
          -2.0007232216190958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0813473078041325,
          -7,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -1.8957907482504441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2616593037647066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4608978427565478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.620798620817837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.131976152587657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3656751404559175,
          -7,
          -7,
          -4.14039280248941,
          -7,
          -7,
          -7,
          -7,
          -2.826722520168992,
          -7,
          -7,
          -4.732908174430821,
          -7,
          -7,
          -7,
          -7,
          -4.5011688495213615,
          -4.0916669575956846,
          -7,
          -7,
          -4.651539675135214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.483551639143684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.402794248640903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.570858039282002,
          -3.347850206404031,
          -3.0308425028249166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4653828514484184,
          -4.137986732723531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.051962449783047,
          -4.3775430081774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8540933980467313,
          -7,
          -7,
          -4.604388073038561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6864575104691117,
          -7,
          -7,
          -7,
          -3.3654879848909,
          -3.9876215821254837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.945407031098423,
          -7,
          -7,
          -3.286231854028553,
          -7,
          -2.9006401839826004,
          -7,
          -7,
          -7,
          -7,
          -2.335959106148248,
          -7,
          -7,
          -2.56702636615906,
          -2.2764618041732443,
          -7,
          -7,
          -7,
          -7,
          -3.0835026198302673,
          -4.440019125975593,
          -7,
          -7,
          -7,
          -2.640481436970422,
          -7,
          -7,
          -7,
          -3.4080702858871854,
          -7,
          -7,
          -7,
          -2.2810333672477277,
          -7,
          -7,
          -2.9682493941079175,
          -7,
          -7,
          -7,
          -3.0132586652835167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8438554226231614,
          -7,
          -7,
          -3.7586920594058713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.228400358703005,
          -2.571708831808688,
          -7,
          -2.6830470382388496,
          -7,
          -7,
          -7,
          -2.8945375849957466,
          -7,
          -2.8182258936139557,
          -7,
          -7,
          -7,
          -7,
          -3.7233735670189843,
          -7,
          -2.526597709103452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8347173384565254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.450125886731954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5469126431812423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.358325155632681,
          -7,
          -7,
          -7,
          -7,
          -3.63978521298682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6027651470770543,
          -7,
          -7,
          -7,
          -4.577037736309381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.082210716601243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6383294870707776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9312184910594619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.524396122103842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.042352336152693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.03342375548695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.076786033508079,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9496257954341845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7679439333520977,
          -7,
          -7,
          -7,
          -2.8254261177678233,
          -2.5943925503754266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6242820958356683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9875768947269874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.391816923613249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6911699341316035,
          -7,
          -4.497869141497094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.000434077479319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.130976691605617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.733502207751304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.652256013378507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5016939865380676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979966989370279,
          -7,
          -7,
          -7,
          -7,
          -4.611659592651788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.60518648804185,
          -4.563623453690032,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2661907795538254,
          -7,
          -7,
          -7,
          -7,
          -3.2219355998280053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039116555285152,
          -7,
          -7,
          -7,
          -7,
          -2.538762188781348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.598899887063883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.236180841212548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3096301674258988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2135177569963047,
          -7,
          -7,
          -4.2702827839652135,
          -7,
          -7,
          -7,
          -4.313487573864755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6414741105040997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3533390953113047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9867717342662448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658240414670103,
          -7,
          -7,
          -7,
          -3.6009728956867484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5804687839510017,
          -7,
          -7,
          -4.1783783014275455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557952095720065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3973315703911284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216772698429039,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.44870631990508,
          -7,
          -7,
          -3.614686342282013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2278867046136734,
          -1.8129133566428557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.546542663478131,
          -3.5807349540222253,
          -7,
          -7,
          -7,
          -1.2798406965940432,
          -2.4819201376014313,
          -7,
          -2.9057958803678687,
          -3.7944880466591697,
          -7,
          -7,
          -7,
          -4.435023717004075,
          -7,
          -7,
          -7,
          -2.682145076373832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.67089495352021,
          -3.400710636773231,
          -2.934834983210739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0287338793493355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.465661632552612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1958996524092336,
          -2.157607853361668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7888751157754168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.86123561863404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8920946026904804,
          -2.9454685851318194,
          -3.130976691605617,
          -7,
          -7,
          -7,
          -7,
          -2.3710678622717363,
          -2.79309160017658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4127964287165433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7327956982893293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.041787318971752,
          -7,
          -7,
          -7,
          -2.2889196056617265,
          -7,
          -7,
          -7,
          -2.4742162640762553,
          -7,
          -2.0969100130080562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.765581637503615,
          -2.673020907128896,
          -7,
          -7,
          -7,
          -7,
          -3.4168068718229443,
          -2.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3571722577230334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4743619760326307,
          -7,
          -7,
          -7,
          -3.6942541120252788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.592398846115564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153814864344529,
          -7,
          -1.6476623490125806,
          -4.603901831731672,
          -4.56220956711611,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6844413876256064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7187783976895714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.037934206072325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3138672203691537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.084576277934331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.802009934029908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.640481436970422,
          -7,
          -7,
          -7,
          -3.5893910231369333,
          -7,
          -7,
          -7,
          -7,
          -3.1180993120779945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.494850021680094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.598790506763115,
          -2.0521165505499983,
          -3.882619393144054,
          -7,
          -7,
          -7,
          -3.328787200354535,
          -7,
          -7,
          -7,
          -7,
          -2.405260961594782,
          -7,
          -3.309949384259016,
          -3.6108730003800513,
          -7,
          -7,
          -3.6235134632921726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.084087496160286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3860230915330054,
          -7,
          -2.329058719264225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8758051307992005,
          -7,
          -7,
          -2.8512583487190755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6437815628948647,
          -7,
          -7,
          -7,
          -3.4350476413399647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.746763897156223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8965262174895554,
          -7,
          -7,
          -7,
          -2.864511081058392,
          -7,
          -3.1230149001807717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3453737305590883,
          -2.307496037913213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.245018870737753,
          -7,
          -7,
          -7,
          -7,
          -2.957128197676813,
          -7,
          -7,
          -2.385606273598312,
          -7,
          -7,
          -7,
          -7,
          -1.2798406965940432,
          -7,
          -1.7834522078668837,
          -7,
          -1.9552572166343505,
          -7,
          -7,
          -2.553883026643874,
          -2.7795964912578244,
          -3.9600345198563254,
          -7,
          -7,
          -2.6424645202421213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3945392313722045,
          -2.7456992266025058,
          -3.155336037465062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.41161970596323,
          -3.4369573306694496,
          -7,
          -7,
          -7,
          -7,
          -3.178869079308535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.029789470831856,
          -7,
          -2.8369567370595505,
          -7,
          -7,
          -7,
          -7,
          -3.1853883377542935,
          -2.611723308007342,
          -7,
          -7,
          -7,
          -2.61066016308988,
          -7,
          -7,
          -2.9722028383790646,
          -7,
          -7,
          -7,
          -7,
          -2.662146501450624,
          -7,
          -7,
          -2.3944516808262164,
          -7,
          -2.6734816970733473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6766936096248664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.669316880566112,
          -7,
          -2.6364878963533656,
          -1.6355895561666118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.603144372620182,
          -7,
          -7,
          -7,
          -2.47928731647617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9953280090774097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7573960287930244,
          -7,
          -2.3314272965207428,
          -7,
          -1.7936869319790616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0637085593914173,
          -3.2116544005531824,
          -7,
          -7,
          -7,
          -7,
          -2.2278867046136734,
          -2.3478177127089124,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1554878621412814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8506462351830666,
          -2.660865478003869,
          -7,
          -2.8767949762007006,
          -3.1332194567324945,
          -2.795880017344075,
          -3.0569048513364727,
          -7,
          -4.621598595728911,
          -3.081707270097349,
          -7,
          -7,
          -7,
          -3.1389339402569236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.603144372620182,
          -2.862131379313037,
          -7,
          -7,
          -3.123688341667586,
          -4.734396540337467,
          -7,
          -3.1248301494138593,
          -3.4678176803976513,
          -3.0863598306747484,
          -7,
          -2.8785217955012063,
          -2.6857417386022635,
          -2.1899312421881114,
          -2.9827233876685453,
          -3.0849335749367164,
          -7,
          -7,
          -7,
          -2.929929560084588,
          -7,
          -2.7450747915820575,
          -7,
          -1.9637878273455553,
          -7,
          -3.105510184769974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.001001063405748,
          -4.573544585314933,
          -3.1929532452325295,
          -3.049140463158965,
          -7,
          -7,
          -7,
          -4.244227625732908,
          -2.949250563881826,
          -3.254064452914338,
          -7,
          -7,
          -3.018201022496291,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.402910666384635,
          -4.503541016777294,
          -7,
          -7,
          -2.840942080243099,
          -2.734799829588847,
          -4.13616016663698,
          -7,
          -7,
          -7,
          -4.063933524163039,
          -2.6794278966121188,
          -7,
          -7,
          -3.9794117826344353,
          -7,
          -7,
          -3.5603849229720157,
          -7,
          -7,
          -0.9905303695254535,
          -3.4926744454294854,
          -3.963350952906355,
          -7,
          -4.334021252007486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1521572498058466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.792951708250132,
          -7,
          -4.629969946292171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.160018096006677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9242792860618816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.642612887088148,
          -7,
          -7,
          -7,
          -2.8615344108590377,
          -7,
          -7,
          -7,
          -2.075546961392531,
          -7,
          -7,
          -7,
          -7,
          -2.625312450961674,
          -7,
          -2.975431808509263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.576514112051963,
          -2.2928096654172903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8530895298518657,
          -7,
          -7,
          -7,
          -3.6191977157929474,
          -7,
          -7,
          -7,
          -7,
          -3.4628470358316736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8086610190597323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6954816764901977,
          -7,
          -3.8553071052068284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9556877503135057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3811150807098507,
          -7,
          -7,
          -7,
          -7,
          -3.382557321908786,
          -7,
          -7,
          -3.805274250022863,
          -2.2844307338445193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.529558673021163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1182174713718545,
          -3.9662919491725086,
          -7,
          -7,
          -7,
          -1.9589478044569444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7047559460483073,
          -3.6585837154070626,
          -7,
          -2.9057958803678687,
          -3.7354163846789343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4526473239486646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.747703052659987,
          -7,
          -3.0484418035504044,
          -3.041787318971752,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -7,
          -7,
          -3.3251049829714074,
          -2.9132839017604186,
          -7,
          -7,
          -2.9763499790032735,
          -7,
          -7,
          -7,
          -2.9836262871245345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055836851018404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.664328518680805,
          -4.236108801587282,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5766956594091306,
          -7,
          -7,
          -2.171700340886371,
          -2.2322698652699,
          -2.961421094066448,
          -7,
          -7,
          -7,
          -2.9542425094393248,
          -2.3584107862063366,
          -2.0354297381845483,
          -7,
          -2.6034536991873214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9523080096621253,
          -7,
          -7,
          -2.1335389083702174,
          -3.240085468038522,
          -7,
          -7,
          -2.4819201376014313,
          -1.7834522078668837,
          -7,
          -7,
          -2.753035605798981,
          -2.527398532748866,
          -2.9556877503135057,
          -7,
          -7,
          -4.042976940975573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.02201573981772,
          -7,
          -7,
          -3.214932110314418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1328198114646653,
          -3.0363627019845945,
          -1.7294347893793671,
          -2.542514216281654,
          -7,
          -3.5359899528769274,
          -7,
          -7,
          -7,
          -7,
          -2.9175055095525466,
          -7,
          -7,
          -7,
          -3.496895069110507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1889284837608534,
          -2.4892551683692603,
          -7,
          -7,
          -3.1099158630237933,
          -7,
          -7,
          -3.6922699327603388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2930861980480297,
          -7,
          -7,
          -3.472573626968942,
          -7,
          -7,
          -7,
          -7,
          -3.151982395457474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6496268868405295,
          -7,
          -3.446070935701005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.124178055474675,
          -7,
          -3.593618308129536,
          -3.365843818161034,
          -7,
          -7,
          -2.6399842480415883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0115704435972783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.238798562713917,
          -7,
          -7,
          -3.0419845014867866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4424797690644486,
          -7,
          -4.205434446574788,
          -7,
          -7,
          -7,
          -3.680335513414563,
          -1.7219283261448037,
          -3.2127201544178425,
          -7,
          -3.3089910290001643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2220658425885866,
          -7,
          -7,
          -7,
          -3.437729428754742,
          -3.0034605321095067,
          -7,
          -2.957128197676813,
          -7,
          -7,
          -7,
          -2.9694159123539814,
          -7,
          -7,
          -3.2631624649622166,
          -7,
          -2.906335041805091,
          -7,
          -3.924182765452105,
          -7,
          -2.6399842480415883,
          -7,
          -7,
          -1.9356991555801393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.718501688867274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2613328542058917,
          -4.434108819200736,
          -7,
          -7,
          -3.552850654460561,
          -7,
          -7,
          -3.089905111439398,
          -7,
          -7,
          -2.9236325331770483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.409053505010069,
          -4.136427240094511,
          -7,
          -3.7563698216020813,
          -7,
          -4.662408367294865,
          -7,
          -4.404953387586245,
          -7,
          -7,
          -4.357267654644208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.095866453478543,
          -7,
          -4.330839741208471,
          -4.460040429961608,
          -7,
          -7,
          -7,
          -4.588383768378728,
          -7,
          -4.195512210674072,
          -3.535547279176668,
          -4.2533864729877715,
          -7,
          -7,
          -4.400261610744863,
          -3.9907383285075375,
          -3.2555137128195333,
          -3.800739983505454,
          -3.5390760987927767,
          -3.48280214772046,
          -2.8270460170047342,
          -4.075765878215734,
          -7,
          -3.2496141023445815,
          -3.525821952156663,
          -2.655330558009341,
          -3.6158448828747023,
          -3.682476013267746,
          -2.7126497016272113,
          -2.8236915393984545,
          -3.77757180469141,
          -3.31492005599242,
          -7,
          -7,
          -4.203631126330513,
          -7,
          -7,
          -3.2197902864981054,
          -3.4510501018233475,
          -4.697232249674232,
          -7,
          -7,
          -7,
          -3.4138757862674542,
          -7,
          -4.945345468339527,
          -3.367355921026019,
          -3.4790711958039306,
          -7,
          -7,
          -7,
          -3.990072334692153,
          -7,
          -7,
          -7,
          -2.7945461345990545,
          -7,
          -2.4261044280965076,
          -3.031365936393981,
          -3.5294186871545548,
          -3.2245330626060857,
          -4.03769535853163,
          -7,
          -7,
          -7,
          -4.038063526997859,
          -7,
          -7,
          -7,
          -3.098643725817057,
          -4.095692282839792,
          -2.937893850328434,
          -7,
          -2.9573678084315276,
          -7,
          -7,
          -3.1143607425185924,
          -3.2440295890300215,
          -7,
          -7,
          -3.5237464668115646,
          -7,
          -4.333719253143685,
          -3.207095540419218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7198834733033834,
          -7,
          -7,
          -7,
          -7,
          -3.569549464888704,
          -7,
          -7,
          -4.478580923742277,
          -4.170291058625393,
          -4.44554193436792,
          -7,
          -7,
          -3.079543007402906,
          -7,
          -7,
          -7,
          -2.678518379040114,
          -3.212453961040276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9978230807457256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8793611369153265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.284881714655453,
          -7,
          -7,
          -3.074450718954591,
          -7,
          -7,
          -7,
          -3.666049738480516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7777167386096258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9836713828601966,
          -7,
          -7,
          -7,
          -4.025531148300212,
          -7,
          -3.9875322027298394,
          -4.2964019016921435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.216429830876251,
          -7,
          -7,
          -2.9867717342662448,
          -7,
          -3.693287157005656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5919298588776174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3283796034387376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658049574713654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2751846188287805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -7,
          -4.334674863340148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216245097705822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6919651027673606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.91555811541152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3119656603683665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.057247580131245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505963518018126,
          -3.7937903846908188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0107238653917734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.669037800885156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.714329759745233,
          -7,
          -7,
          -4.727606314999153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5495549806880504,
          -7,
          -7,
          -2.8693807441750576,
          -7,
          -7,
          -2.655138434811382,
          -7,
          -2.812244696800369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5947607525864629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.60422605308447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495627580906491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.220108088040055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.122625396909397,
          -7,
          -7,
          -7,
          -4.5416042026823655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1122697684172707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.678295256434399,
          -7,
          -7,
          -7,
          -7,
          -4.610180897473572,
          -7,
          -7,
          -3.5901728315963144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1053398398052865,
          -7,
          -4.302633919813779,
          -4.56197148664423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9846623061901068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626945698847907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639854885632376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5137501500818233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.129582486614012,
          -3.295347148333618,
          -7,
          -7,
          -3.1488493429592204,
          -2.7831886910752575,
          -7,
          -7,
          -7,
          -3.279552881150386,
          -7,
          -2.892571587342385,
          -3.137354111370733,
          -7,
          -2.991004440330755,
          -2.6887978851749255,
          -7,
          -3.5121505369220305,
          -7,
          -3.220631019448092,
          -7,
          -7,
          -3.177747325191253,
          -7,
          -7,
          -7,
          -3.523226041965701,
          -7,
          -7,
          -3.2223262109908117,
          -7,
          -3.359835482339888,
          -7,
          -2.3316758706381853,
          -7,
          -3.5352941200427703,
          -7,
          -7,
          -7,
          -3.509740015570382,
          -7,
          -7,
          -7,
          -3.6460114095912393,
          -2.7909344146565678,
          -7,
          -3.2131191388114564,
          -3.6240757311456826,
          -7,
          -3.205068964264459,
          -7,
          -3.037559289405319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1814624606874005,
          -7,
          -3.4987239707479048,
          -7,
          -7,
          -3.0002604985473904,
          -2.9552065375419416,
          -7,
          -3.5683190850951116,
          -2.7578647280763793,
          -7,
          -2.8232133132826673,
          -7,
          -3.5070458724273257,
          -7,
          -7,
          -7,
          -7,
          -3.5531545481696254,
          -2.92389134992005,
          -3.5779511277297553,
          -3.22284647997415,
          -2.846337112129805,
          -7,
          -2.791739032986512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.806095142558302,
          -7,
          -7,
          -7,
          -2.3573391885859913,
          -3.499549625905149,
          -7,
          -3.520614521878236,
          -7,
          -3.2659963704950794,
          -7,
          -7,
          -2.8464608251293324,
          -7,
          -3.315640528098325,
          -7,
          -7,
          -2.9057958803678687,
          -1.9552572166343505,
          -2.753035605798981,
          -3.505963518018126,
          -7,
          -2.774629244550763,
          -7,
          -3.544564097496043,
          -3.2286569581089353,
          -3.2970054131398028,
          -7,
          -3.118595365223762,
          -2.657586970059049,
          -3.24809593109413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.828588295763267,
          -7,
          -7,
          -7,
          -3.4992745818922173,
          -7,
          -3.1105335962760554,
          -3.269045709657623,
          -3.0523090996473234,
          -2.723221045080855,
          -7,
          -3.661954588653016,
          -3.507180977260241,
          -7,
          -2.549738731264899,
          -3.2645817292380777,
          -7,
          -7,
          -3.50745106090197,
          -7,
          -3.130538438197742,
          -7,
          -7,
          -7,
          -3.5381965783494542,
          -7,
          -7,
          -3.586249638866042,
          -3.249198357391113,
          -3.5407047833107623,
          -7,
          -2.7769431981946755,
          -7,
          -7,
          -2.5649366840364607,
          -3.504470862494419,
          -7,
          -7,
          -3.0320812676114404,
          -3.203032887014711,
          -7,
          -7,
          -2.4103084859146473,
          -7,
          -3.405132832229078,
          -7,
          -3.590618948206578,
          -2.227111556054666,
          -7,
          -7,
          -2.6434526764861874,
          -3.5577477416414682,
          -3.571825249040829,
          -7,
          -3.2357808703275603,
          -3.5229655954919865,
          -2.582315933132205,
          -2.9156636035057732,
          -3.212054364801163,
          -3.0369281680157196,
          -7,
          -7,
          -7,
          -3.0959051485809788,
          -7,
          -3.707995746422929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8009918612601714,
          -3.5021538928713607,
          -7,
          -3.499549625905149,
          -3.5122840632818537,
          -7,
          -7,
          -2.479647278769387,
          -3.5788683286660286,
          -2.9489017609702137,
          -3.180276823857626,
          -7,
          -7,
          -3.5033820634737327,
          -3.5596672783880576,
          -7,
          -7,
          -2.8303319934519617,
          -7,
          -3.034494765849475,
          -7,
          -7,
          -3.5018804937550585,
          -7,
          -7,
          -7,
          -2.61870166264718,
          -3.5008194435414155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5260806918020298,
          -7,
          -3.20615098159626,
          -7,
          -1.6732012744666738,
          -7,
          -3.1987945001755986,
          -7,
          -3.6909045540549665,
          -3.074938279468222,
          -3.1956782994574984,
          -3.0605719396477284,
          -3.390240992999803,
          -7,
          -7,
          -3.205068964264459,
          -3.3740147402919116,
          -7,
          -3.2946866242794433,
          -2.94507448847873,
          -7,
          -3.2005769267548483,
          -7,
          -7,
          -2.8180938691466357,
          -2.416996924659806,
          -2.6372394877989302,
          -7,
          -3.5282737771670436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.709038563501977,
          -3.5792117802314993,
          -3.5418287667813124,
          -7,
          -3.558468562523795,
          -3.5211380837040362,
          -7,
          -3.0921188508484487,
          -7,
          -3.2009872191631663,
          -7,
          -3.5110808455391185,
          -3.1524921906585206,
          -3.548880562637515,
          -3.1399839757827155,
          -7,
          -3.29269900304393,
          -7,
          -3.288283107975391,
          -3.601299310194338,
          -7,
          -7,
          -7,
          -3.318167720128966,
          -3.0863598306747484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.526339277389844,
          -2.9123549292524067,
          -3.0257153839013404,
          -3.545801757159276,
          -7,
          -2.7743344507093037,
          -3.736157375273132,
          -3.4462834977916423,
          -7,
          -3.137248584828626,
          -3.117259863694777,
          -3,
          -7,
          -7,
          -3.5146805441249818,
          -2.9863237770507656,
          -2.752432609261474,
          -2.7558748556724915,
          -7,
          -7,
          -7,
          -3.560743301054712,
          -3.205339721431523,
          -3.2227164711475833,
          -7,
          -2.3302000983230338,
          -3.510545010206612,
          -2.6464037262230695,
          -7,
          -7,
          -4.347017601324948,
          -4.769879281205094,
          -7,
          -3.5509617522981762,
          -3.9967888550237687,
          -7,
          -7,
          -3.543229667726184,
          -4.27933988355467,
          -7,
          -7,
          -3.829614637842637,
          -4.382674293893472,
          -3.977220446635385,
          -4.442777558468063,
          -4.040048241547462,
          -7,
          -7,
          -3.8079069279242788,
          -4.338057875419756,
          -7,
          -4.208441356438567,
          -4.016448318259037,
          -4.027376792806965,
          -4.169733197942518,
          -4.236738743506645,
          -3.9556685120366013,
          -4.49352775559078,
          -7,
          -3.883815499236417,
          -7,
          -3.768320905020316,
          -3.7031838661780445,
          -4.255224247479844,
          -7,
          -4.0050088206723675,
          -4.1525329484345255,
          -4.403206341644807,
          -3.9612945052782886,
          -3.383564048536695,
          -2.834950266583269,
          -3.4002572909326387,
          -3.1073607401690504,
          -2.5234863323432277,
          -7,
          -3.6755950563867463,
          -7,
          -2.9755007386708083,
          -2.8752542402808574,
          -7,
          -3.8663168819216542,
          -2.992917205061587,
          -2.823148059810694,
          -3.3337494624819706,
          -3.6181527333785195,
          -3.3399480616943507,
          -7,
          -3.7822575736633017,
          -3.7850924507567543,
          -3.7149999674120426,
          -3.2629254693318317,
          -3.15172727327314,
          -3.5015230515328484,
          -3.6895007669133824,
          -7,
          -3.386320573894046,
          -7,
          -3.2990018498562894,
          -3.5817221599490985,
          -3.4121916552415694,
          -3.843481943039958,
          -3.555275870769318,
          -7,
          -3.874365835730049,
          -3.1614678285730546,
          -3.6405609344046366,
          -3.651278013998144,
          -3.3914644118391033,
          -3.3301431005564446,
          -4.2383472434264755,
          -3.27330999394054,
          -2.3215725418490862,
          -3.237382858540404,
          -3.3664009809846007,
          -3.6008640363098396,
          -3.5158643859762524,
          -7,
          -7,
          -3.3649260337899753,
          -3.820398522703982,
          -3.52865964523499,
          -7,
          -7,
          -7,
          -4.169586273321913,
          -2.990236366413815,
          -3.0442783733957133,
          -2.7110687225172314,
          -7,
          -7,
          -3.803934849863842,
          -7,
          -3.229809782952539,
          -7,
          -3.652826302561005,
          -7,
          -3.5780563219853025,
          -2.8937617620579434,
          -7,
          -7,
          -3.6293586225803405,
          -7,
          -3.15175279223674,
          -7,
          -3.5659658174466666,
          -2.9981866592365316,
          -7,
          -7,
          -7,
          -2.7502511875699738,
          -7,
          -7,
          -7,
          -7,
          -4.033544376090948,
          -3.1503842538862474,
          -3.7640864237491396,
          -7,
          -7,
          -3.0680621134957438,
          -7,
          -7,
          -7,
          -3.212986184736668,
          -3.445136968713304,
          -7,
          -7,
          -3.839729375206388,
          -7,
          -3.6010273151444854,
          -3.571825249040829,
          -3.210764270129043,
          -7,
          -7,
          -3.217878578027433,
          -3.129689892199301,
          -4.3881012015705165,
          -7,
          -7,
          -3.519434194913703,
          -7,
          -7,
          -7,
          -7,
          -3.58029758843657,
          -7,
          -3.2652544343851564,
          -3.2522460504731185,
          -7,
          -2.5833247477133505,
          -7,
          -4.055148889889394,
          -7,
          -7,
          -7,
          -7,
          -3.066325925362038,
          -7,
          -7,
          -3.510410948010177,
          -2.886553389407769,
          -7,
          -3.5652573434202135,
          -3.9147661369258526,
          -7,
          -7,
          -3.5901728315963144,
          -3.9193919267738595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333970933444835,
          -7,
          -7,
          -7,
          -4.3715296320992945,
          -3.32990612340021,
          -7,
          -3.566044465487791,
          -7,
          -3.5150786750759226,
          -7,
          -7,
          -7,
          -3.5444401373176926,
          -3.5974757898703773,
          -7,
          -7,
          -3.5161385767170743,
          -7,
          -3.2788805690817564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.499687082618404,
          -7,
          -7,
          -7,
          -3.529045170765769,
          -3.535547279176668,
          -3.1812717715594614,
          -7,
          -2.9207939364157585,
          -7,
          -7,
          -3.113358331267094,
          -7,
          -7,
          -3.5630853728550487,
          -7,
          -7,
          -3.6475785542124552,
          -7,
          -7,
          -7,
          -7,
          -3.2384224958854797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096910013008056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.795080179420615,
          -3.0370354042411027,
          -2.9150038821546924,
          -7,
          -7,
          -1.589134592627297,
          -2.122229202028619,
          -7,
          -7,
          -7,
          -3.4162076611902306,
          -4.093421685162236,
          -2.0253058652647704,
          -4.206933761880598,
          -7,
          -2.6703121322779007,
          -2.324022596211637,
          -7,
          -7,
          -7,
          -4.099058789068055,
          -7,
          -3.497620649781288,
          -3.012235739791244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.622248571670176,
          -7,
          -3.839352328895421,
          -3.0526239959621972,
          -2.112321759496482,
          -7,
          -3.8015409061903185,
          -2.8220647947787074,
          -4.094016681120422,
          -7,
          -3.794766797940821,
          -7,
          -7,
          -7,
          -2.383815365980431,
          -2.7592900330243038,
          -7,
          -3.619823500457278,
          -3.429299990833608,
          -3.796747738875302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.551640569954477,
          -7,
          -7,
          -7,
          -7,
          -3.0390478577317825,
          -3.8078055322706246,
          -7,
          -3.4125949311184796,
          -2.31492005599242,
          -7,
          -3.6221449173122546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.09719067832643,
          -7,
          -7,
          -1.5441390597182538,
          -2.990919165834241,
          -3.493353473120484,
          -4.09321149181366,
          -7,
          -7,
          -2.88993167285404,
          -3.3172622140648027,
          -3.1396692316100534,
          -7,
          -2.446823361859061,
          -4.095308861385381,
          -7,
          -7,
          -3.6336367541602255,
          -7,
          -7,
          -4.0987129305788805,
          -7,
          -7,
          -3.7938602013426697,
          -7,
          -3.503416129793859,
          -3.624831922757537,
          -3.5299250889736333,
          -3.6198929764583707,
          -7,
          -3.7944880466591697,
          -7,
          -2.527398532748866,
          -3.7937903846908188,
          -2.774629244550763,
          -7,
          -7,
          -7,
          -7,
          -3.5020172148271476,
          -7,
          -3.642728248491855,
          -2.6319344788110417,
          -7,
          -3.6194759536382315,
          -7,
          -7,
          -7,
          -7,
          -2.9314985521074135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.471317450841545,
          -3.869583707713424,
          -2.0247711295330606,
          -3.157456768134226,
          -2.773925686560425,
          -3.566154548823162,
          -7,
          -4.093981703914113,
          -3.3287192940950106,
          -3.2142844367533643,
          -7,
          -7,
          -7,
          -7,
          -2.9040841065189205,
          -7,
          -7,
          -7,
          -3.8023289442025816,
          -7,
          -7,
          -4.117039167877679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.096520818131028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096144981294344,
          -7,
          -2.886678690759447,
          -7,
          -3.1412929600815933,
          -7,
          -3.8172347304254983,
          -2.2884260153495157,
          -7,
          -2.9023768874830473,
          -3.2606845578001846,
          -3.1540518415007632,
          -2.9658398015278347,
          -3.5205817782975743,
          -3.802020751771976,
          -4.099335277685958,
          -7,
          -7,
          -7,
          -2.831197665069386,
          -7,
          -4.094051655509965,
          -7,
          -2.2055394577870526,
          -7,
          -7,
          -7,
          -4.114711040558363,
          -7,
          -4.095866453478543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100715086573081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0426598769592315,
          -2.1982728443452566,
          -7,
          -4.094471128641644,
          -7,
          -2.785804214612169,
          -7,
          -4.093666782227903,
          -7,
          -3.7939300067726847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5903680640032447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096666739975382,
          -7,
          -3.799064719351008,
          -3.645978700535912,
          -7,
          -2.1964405298523033,
          -3.837304286407038,
          -4.0931063569779065,
          -4.093386660001371,
          -4.0948203803548,
          -4.150572247668998,
          -3.630122642859312,
          -2.6746570549812816,
          -4.1034273973827675,
          -2.9065046393767022,
          -4.0948901970066505,
          -7,
          -7,
          -4.213198891723608,
          -1.9017306917292187,
          -2.8884107740313127,
          -3.3566631199368167,
          -3.4338338136659807,
          -4.093841766912128,
          -3.7931265661185423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7996506490611184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.172223341427753,
          -4.114977744785308,
          -7,
          -7,
          -2.633236593363552,
          -7,
          -7,
          -2.7600818411990895,
          -7,
          -7,
          -7,
          -7,
          -3.1756406459012965,
          -7,
          -7,
          -7,
          -3.642068627341504,
          -7,
          -2.2335970419994844,
          -3.1667589255503157,
          -4.09422648522204,
          -7,
          -7,
          -2.2299573599427696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.105510184769974,
          -3.6190933306267428,
          -2.129003424907397,
          -2.9618065669531717,
          -3.050042006104736,
          -4.100921680320846,
          -7,
          -2.8473976833632433,
          -4.121953583545299,
          -7,
          -3.504198918539445,
          -4.09715314984596,
          -7,
          -3.872360255801214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.862489166905897,
          -7,
          -7,
          -3.5537050669363817,
          -3.9299933471863993,
          -4.010850957373923,
          -7,
          -3.4148731146014684,
          -7,
          -2.5999084478943093,
          -2.8133117167318837,
          -2.891104357461312,
          -7,
          -3.515703572953595,
          -3.0528075800932757,
          -3.3976906898536563,
          -3.0030179697199246,
          -2.867549978297747,
          -3.891593204348965,
          -3.333328711983892,
          -3.224502594352818,
          -3.8669761488747474,
          -3.768243332915101,
          -3.828423569175315,
          -3.3487695036242493,
          -3.690550461510359,
          -2.938948375793857,
          -3.037354049115382,
          -4.121920785563038,
          -3.559220144744601,
          -3.1743613637320154,
          -7,
          -2.7838272880918025,
          -3.7614767795447017,
          -3.4225725624070504,
          -4.468893547858615,
          -3.957926386620302,
          -3.7879325337843524,
          -4.168320665518865,
          -4.0689646659444465,
          -3.583891177811344,
          -3.183696808634681,
          -2.406704305139731,
          -4.125448733060263,
          -2.961104552884867,
          -3.147124958647896,
          -2.4168887891206565,
          -4.1103539826640025,
          -2.4428529063688726,
          -4.119321886463977,
          -1.3251953821249525,
          -3.306925161088451,
          -7,
          -3.679990842434873,
          -2.723053376758989,
          -3.1569023388474213,
          -7,
          -3.289390735066813,
          -2.986995539724382,
          -7,
          -2.519171463821659,
          -3.3980979052314586,
          -3.6818440056637476,
          -7,
          -2.8970144490903236,
          -2.197975494850741,
          -3.1933110552062804,
          -7,
          -4.149403879508583,
          -7,
          -2.788981849269942,
          -4.22716656673143,
          -2.136994597878688,
          -3.2551116255008354,
          -3.5277403474828533,
          -3.7958105246674085,
          -3.9222582234329666,
          -3.143697730052988,
          -3.7144415328720637,
          -3.5349774634615505,
          -2.3419222959903934,
          -1.837908225908228,
          -3.3096956669331346,
          -2.323134189499164,
          -7,
          -2.745224339164012,
          -2.747286769372282,
          -2.1282726609921685,
          -3.1849357906889892,
          -4.127396390776607,
          -3.5470975149038937,
          -3.5100890297927787,
          -2.9703856231170267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7954416809560518,
          -4.099058789068055,
          -3.083860800866573,
          -4.104726044109975,
          -3.0166454031569487,
          -3.3000814088684325,
          -2.630591889711026,
          -4.101506496139928,
          -7,
          -3.783570111217814,
          -7,
          -3.395048266590487,
          -3.077169627477378,
          -3.6367218642178245,
          -3.306394388411241,
          -3.248929133718768,
          -7,
          -3.8725350221946804,
          -3.822788990355016,
          -3.8100644148453546,
          -3.1819292955032332,
          -4.1181323999209045,
          -7,
          -7,
          -4.101128175838757,
          -7,
          -3.8009231818132183,
          -7,
          -4.095239112010478,
          -4.142441611701165,
          -2.5045958370768617,
          -2.683487604346112,
          -7,
          -3.3163897510731957,
          -7,
          -7,
          -7,
          -7,
          -4.097048965011131,
          -2.8684680990209865,
          -7,
          -4.10893692358826,
          -3.36275167111627,
          -7,
          -2.757421336591866,
          -7,
          -3.450433875172564,
          -7,
          -2.8388822164366654,
          -7,
          -2.6590961883427093,
          -3.248102386173046,
          -7,
          -7,
          -4.0984014222700775,
          -3.9005582854095375,
          -2.7368649969088095,
          -7,
          -7,
          -3.925441019653158,
          -3.8049567998574916,
          -2.8078961003912637,
          -3.8065530355273407,
          -2.4159565554639775,
          -2.989038878211426,
          -7,
          -4.012584163914151,
          -7,
          -3.636663384067435,
          -3.812879948090056,
          -7,
          -3.6277412634214152,
          -4.145103133146382,
          -7,
          -7,
          -2.50745106090197,
          -4.1136760118971,
          -3.8098626051382367,
          -3.6396856612426816,
          -4.119024820114783,
          -3.6966766756507976,
          -3.6409449669943474,
          -3.465680211598278,
          -2.881903155497279,
          -4.144325078400488,
          -3.0982975364946976,
          -7,
          -7,
          -2.9693029325193425,
          -4.166873950858819,
          -7,
          -2.7309064484998022,
          -3.099720473067752,
          -3.829657498318051,
          -3.4823222022067144,
          -3.893900403553743,
          -3.2538950571317695,
          -7,
          -7,
          -7,
          -7,
          -3.804037153146142,
          -4.120376479744434,
          -3.8771985152717896,
          -7,
          -3.796435558810175,
          -7,
          -2.851506257287449,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.963817330044653,
          -4.156094630639427,
          -4.11143055176598,
          -7,
          -4.116408480629899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.22618732283988,
          -3.7113853790984517,
          -3.877342545546019,
          -3.7972675408307164,
          -7,
          -3.460206027457451,
          -7,
          -7,
          -3.7948782483762575,
          -7,
          -7,
          -4.136022599397011,
          -3.7010208151180817,
          -4.118892725373621,
          -7,
          -7,
          -7,
          -7,
          -3.5957717020009405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -3.5997739391463885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.595661530898903,
          -7,
          -7,
          -2.929929560084588,
          -3.8772273251482074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557819877590791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.025756314534414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216759516219574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1271047983648077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9556877503135057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.41077723337721,
          -2.806179973983887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.072029200827922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8943160626844384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028644442224251,
          -7,
          -7,
          -7,
          -7,
          -2.08278537031645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067842373472633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.49996186559619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9825425823029432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6795187436957892,
          -7,
          -4.496071276220637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.127428777851599,
          -7,
          -7,
          -7,
          -1.9542425094393248,
          -7,
          -2.482873583608754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.625312450961674,
          -7,
          -7,
          -7,
          -3.030194785356751,
          -2.5289167002776547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.955791942839168,
          -7,
          -7,
          -3.76544501809015,
          -2.9698816437465,
          -7,
          -7,
          -2.296665190261531,
          -7,
          -3.4149733479708178,
          -2.3631417096979495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0115704435972783,
          -7,
          -7,
          -7,
          -7,
          -4.616968869365974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.39174644414508,
          -7,
          -7,
          -4.650996794844283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0170333392987803,
          -7,
          -4.301225384221708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.83511959042455,
          -3.693287157005656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3519508325993845,
          -7,
          -7,
          -7,
          -3.2545480771089736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.632173744035556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985067033150501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.510545010206612,
          -7,
          -7,
          -7,
          -4.627037963423587,
          -7,
          -7,
          -3.2734642726213465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.584444307165176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7998228309933197,
          -7,
          -7,
          -3.6568644915489172,
          -7,
          -4.03938887924493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9132839017604186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4510184521554574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.147614498562027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.593286067020457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.912434633375575,
          -7,
          -7,
          -7,
          -3.732715340349993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.86221488945307,
          -7,
          -7,
          -7,
          -7,
          -2.8438554226231614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4208630205509762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.37863146935062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.248463717551032,
          -4.521608750296811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.553883026643874,
          -7,
          -7,
          -3.544564097496043,
          -7,
          -7,
          -7,
          -7,
          -4.738280991116689,
          -7,
          -7,
          -7,
          -2.88024177589548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4802585307800777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2524322813650826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2741578492636796,
          -7,
          -7,
          -7,
          -7,
          -3.6310561626158684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2776092143040914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.368286884902131,
          -2.611723308007342,
          -2.6384892569546374,
          -2.230959555748569,
          -2.7015679850559273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.926342446625655,
          -7,
          -7,
          -2.7831886910752575,
          -2.629409599102719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9954157985424152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7589118923979736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.705007959333336,
          -7,
          -4.500057998579122,
          -7,
          -7,
          -7,
          -3.635282637998212,
          -7,
          -7,
          -3.2121876044039577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.910047808486978,
          -7,
          -7,
          -3.4683473304121573,
          -7,
          -7,
          -2.851869600729766,
          -7,
          -7,
          -7,
          -2.6554585929400747,
          -2.494850021680094,
          -7,
          -7,
          -4.621605515488349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.660248683421062,
          -7,
          -4.17805561153123,
          -7,
          -7,
          -3.547072869887322,
          -2.6085260335771943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.481442628502305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8175653695597807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.433729841799795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.102124855734526,
          -7,
          -4.48521019101124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.404790968996309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8441974969884125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.190611797813605,
          -7,
          -7,
          -7,
          -7,
          -4.871955109930143,
          -7,
          -7,
          -7,
          -4.1361813269606005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.264451822935162,
          -7,
          -4.635091498324376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.696749435201623,
          -7,
          -3.1280760126687155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.32893995062819,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5052856741441323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040691325767884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6848453616444123,
          -7,
          -7,
          -7,
          -3.615950051656401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9678646537908753,
          -7,
          -7,
          -2.832508912706236,
          -7,
          -7,
          -7,
          -3.725339815909737,
          -7,
          -7,
          -2.8543060418010806,
          -3.2893659515200318,
          -7,
          -7,
          -7,
          -7,
          -2.949877704036875,
          -3.2576785748691846,
          -3.0542299098633974,
          -3.1618170401676924,
          -2.7427251313046983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.316829691494307,
          -3.1740598077250253,
          -7,
          -4.285917196728309,
          -3.4726833296130404,
          -7,
          -7,
          -7,
          -7,
          -2.8567288903828825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.855367701618522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6546577546495245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.682506085939011,
          -7,
          -3.485863329597335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.282531483812228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3587341271980105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8254261177678233,
          -2.622214022966295,
          -2.656577291396114,
          -7,
          -7,
          -3.598571663482141,
          -7,
          -7,
          -3.5163456465629728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.714653024705956,
          -7,
          -7,
          -7,
          -2.639486489268586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.434947947911181,
          -7,
          -7,
          -7,
          -2.44870631990508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.712397131406715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.781396305196791,
          -7,
          -7,
          -7,
          -3.7316693318286362,
          -7,
          -7,
          -7,
          -7,
          -3.023046584075505,
          -7,
          -7,
          -7,
          -4.221022805204841,
          -7,
          -7,
          -7,
          -7,
          -2.3979400086720375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.946452265013073,
          -7,
          -7,
          -2.890979596989689,
          -4.520090328112842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5868497522450995,
          -7,
          -7,
          -7,
          -2.7795964912578244,
          -7,
          -7,
          -3.2286569581089353,
          -7,
          -7,
          -7,
          -7,
          -3.9591288787339476,
          -7,
          -7,
          -7,
          -1.7958800173440752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6856521841155243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.028571252692538,
          -7,
          -7,
          -7,
          -3.2998340406458584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9809119377768436,
          -7,
          -7,
          -7,
          -2.845098040014257,
          -7,
          -7,
          -3.4983754295385956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.944975908412048,
          -7,
          -7,
          -7,
          -7,
          -3.525192941934471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.73559889969818,
          -7,
          -2.7450747915820575,
          -7,
          -7,
          -3.1646502159342966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0419845014867866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.413299764081252,
          -2.5477747053878224,
          -7,
          -2.5037906830571814,
          -1.7427855380760457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.796227314029439,
          -3.208710019906401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9952841076892596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1459211795267192,
          -7,
          -3.0187004986662433,
          -3.180125875164054,
          -7,
          -7,
          -7,
          -7,
          -2.598790506763115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6078623183483565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1680553034591394,
          -7,
          -7,
          -7,
          -7,
          -2.708420900134713,
          -7,
          -7,
          -5.098339093786907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8830933585756897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4578818967339924,
          -7,
          -7,
          -7,
          -7,
          -4.95606913351297,
          -7,
          -3.0860037056183818,
          -3.000954398406458,
          -3.0437551269686796,
          -7,
          -2.807535028068853,
          -7,
          -2.513217600067939,
          -2.1823195271506552,
          -2.437750562820388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0791812460476247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3947842790470375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.605305046141109,
          -4.572220834365276,
          -3.827756862978617,
          -7,
          -7,
          -7,
          -7,
          -4.543869464336801,
          -3.787176992470554,
          -3.225567713439471,
          -7,
          -4.141669216966209,
          -3.708250888591378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.753104075187242,
          -4.980162507941342,
          -7,
          -7,
          -7,
          -7,
          -4.3110647990615965,
          -7,
          -7,
          -7,
          -3.7585334222372864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.857633985150008,
          -7,
          -2.6857417386022635,
          -4.3045982263436375,
          -4.564133223842105,
          -7,
          -4.332872537394924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9928185200666797,
          -7,
          -7,
          -7,
          -3.4837298990000236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.12602311790052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.850912790647412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5984778397360007,
          -7,
          -3.7328760413627067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.314393957221963,
          -7,
          -7,
          -3.8060894865407215,
          -3.7652959296980564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.41774840202559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.370698092575577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.802682525274441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7520484478194387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7356707439453665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.736205211208257,
          -2.9153823903389724,
          -4.440759570913159,
          -7,
          -7,
          -4.288405740175751,
          -3.113579431846841,
          -3.273392460053555,
          -3.697245198420693,
          -4.134702916820561,
          -7,
          -7,
          -3.362000495735565,
          -2.8599109900635233,
          -7,
          -4.264447885773872,
          -2.170604608513454,
          -7,
          -7,
          -7,
          -4.037832711917421,
          -3.3743896719509805,
          -7,
          -2.6644201679395536,
          -4.13443212489584,
          -7,
          -4.259291184676737,
          -4.7369459952260415,
          -7,
          -7,
          -4.435923958119165,
          -7,
          -4.445705371207266,
          -7,
          -3.040762816328596,
          -7,
          -4.135585799233926,
          -7,
          -4.735710652281123,
          -4.435095486058288,
          -7,
          -7,
          -7,
          -7,
          -4.444489797808013,
          -3.9947569445876283,
          -7,
          -4.435366506612661,
          -4.044798378643768,
          -7,
          -4.735934071215523,
          -7,
          -4.435414316217528,
          -4.039984870959395,
          -3.964840815368866,
          -7,
          -7,
          -7,
          -3.267835239110218,
          -7,
          -7,
          -7,
          -7,
          -4.750076199567835,
          -4.040119522407977,
          -7,
          -4.739841223173554,
          -3.3053513694466234,
          -7,
          -4.7369459952260415,
          -7,
          -7,
          -7,
          -7,
          -4.434864187741935,
          -7,
          -7,
          -4.436114919749988,
          -7,
          -7,
          -4.261239071182586,
          -4.438613538767731,
          -3.232712164986875,
          -4.437354127848175,
          -7,
          -4.735527043564013,
          -7,
          -7,
          -4.735958002142925,
          -7,
          -7,
          -7,
          -4.273865140887861,
          -7,
          -7,
          -7,
          -4.262466910734854,
          -7,
          -4.434696618924666,
          -4.736786793449335,
          -7,
          -4.438724255549354,
          -7,
          -7,
          -4.738399987861007,
          -4.436520434633616,
          -1.781165293585858,
          -4.736428375931341,
          -7,
          -4.435023717004075,
          -3.9600345198563254,
          -4.042976940975573,
          -7,
          -3.2970054131398028,
          -3.5020172148271476,
          -7,
          -4.738280991116689,
          -3.9591288787339476,
          -7,
          -7,
          -3.787405367499166,
          -4.743039154804933,
          -3.893397121772088,
          -7,
          -4.435486020757864,
          -4.260015705635886,
          -7,
          -7,
          -3.625785594701899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.624399974504209,
          -3.9092426495998436,
          -3.9097775515524833,
          -7,
          -7,
          -3.5021538928713607,
          -4.735981931751734,
          -4.434656712055763,
          -4.437710935603617,
          -3.975768696456831,
          -3.5956143061554546,
          -7,
          -7,
          -3.7816357178169127,
          -3.778743066712205,
          -7,
          -7,
          -4.736332747948591,
          -4.737876158125802,
          -7,
          -7,
          -4.741072772373322,
          -7,
          -4.738034961141285,
          -7,
          -4.261889070345975,
          -7,
          -7,
          -2.8697777859314675,
          -7,
          -7,
          -7,
          -4.435087512304593,
          -4.735814396794525,
          -7,
          -7,
          -3.793021659845983,
          -7,
          -2.8840019247687874,
          -7,
          -4.741380114764399,
          -2.604558668716702,
          -4.258972331109386,
          -4.437782261990645,
          -3.8933257432834987,
          -4.2619841106268845,
          -3.563765775330468,
          -3.6631038705467858,
          -4.260651650298644,
          -7,
          -4.260746961730889,
          -7,
          -7,
          -4.443982303007413,
          -7,
          -7,
          -7,
          -4.494648462275092,
          -7,
          -3.258976961303746,
          -7,
          -3.8953278149927018,
          -4.435071564357987,
          -4.258980305302306,
          -7,
          -4.735742576309504,
          -4.0384452964007185,
          -7,
          -7,
          -7,
          -4.448992149239026,
          -7,
          -7,
          -7,
          -4.735686707719744,
          -7,
          -4.735535028166055,
          -3.833083334178343,
          -7,
          -7,
          -3.8361816488163294,
          -4.138452701260987,
          -4.28227459870558,
          -2.077761476485917,
          -7,
          -7,
          -3.957527475522261,
          -7,
          -7,
          -7,
          -4.0383498855076025,
          -7,
          -4.7362769552331105,
          -7,
          -7,
          -4.7356707439453665,
          -7,
          -7,
          -7,
          -7,
          -3.072467759719054,
          -7,
          -4.735447189468635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.436075143000658,
          -3.4412236742426123,
          -7,
          -4.275978986467148,
          -3.599914247873701,
          -7,
          -7,
          -7,
          -3.749140877763003,
          -4.738796408358713,
          -3.5671513990768036,
          -4.737876158125802,
          -3.023399816762231,
          -7,
          -7,
          -7,
          -1.8620778387246808,
          -4.740954505822805,
          -3.9635281171363457,
          -3.364871360852042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.136014661495803,
          -7,
          -7,
          -4.259952059922254,
          -7,
          -4.735878227256237,
          -4.736818638473778,
          -7,
          -3.499442685041947,
          -3.7862149248791837,
          -4.738106403558114,
          -4.736707170670822,
          -3.2198280150476593,
          -7,
          -7,
          -3.0954962573424885,
          -7,
          -4.73569468938689,
          -3.056221760948491,
          -7,
          -3.7441442802773826,
          -4.039525157450326,
          -4.442291586286071,
          -4.436496591295506,
          -7,
          -4.7369141595391175,
          -2.217537806855908,
          -4.043110668074183,
          -7,
          -7,
          -7,
          -4.442432731013761,
          -3.894355628528032,
          -7,
          -4.736069662371753,
          -3.5071730310804767,
          -4.735574948974428,
          -7,
          -7,
          -7,
          -7,
          -4.258605359868985,
          -4.738360325902248,
          -7,
          -3.25594754939894,
          -3.8502325702897666,
          -2.3500284998172463,
          -7,
          -4.442087629550761,
          -2.163800920094078,
          -2.732054581246163,
          -4.434393234712605,
          -4.261429415559447,
          -4.25927524755698,
          -3.6619151757715462,
          -3.1635130490182313,
          -3.0010016694117185,
          -4.735726614588647,
          -4.133403170134419,
          -7,
          -4.2621820444366785,
          -4.735950025313642,
          -4.037960073338272,
          -7,
          -3.40023176389234,
          -7,
          -3.430067373207018,
          -7,
          -7,
          -3.05074358222705,
          -2.858754796828139,
          -3.907554668639903,
          -7,
          -3.629624171479566,
          -4.148147455851064,
          -4.170188348643891,
          -3.8193848844515053,
          -3.1532691472062484,
          -7,
          -3.4321271294654903,
          -3.2379418864745153,
          -3.2570236949030695,
          -3.0091182022183838,
          -2.9773819838616995,
          -3.563059639055887,
          -3.4975156883526086,
          -2.535576378609283,
          -3.806641166905534,
          -2.9546421521708908,
          -3.492564842670765,
          -3.1731790417536367,
          -4.187612364222886,
          -3.0392781152661854,
          -3.372129199790205,
          -3.5565881268755133,
          -3.198156625567903,
          -3.4241858713584445,
          -4.444778414819479,
          -3.0752150588300236,
          -3.435213235221657,
          -3.4735811413625797,
          -3.376430951177879,
          -3.442059381836555,
          -3.8267584761637057,
          -3.511427568232574,
          -3.453829990084514,
          -3.2601622826027996,
          -3.1170557525484806,
          -4.023417089841105,
          -4.0440534546854,
          -3.0160023755050576,
          -3.1984406460667385,
          -3.4133872411492066,
          -7,
          -3.639639195951458,
          -7,
          -3.431134614595152,
          -3.779892172536556,
          -3.792376123108822,
          -3.1108932604638193,
          -2.974204553769857,
          -4.0735937247670435,
          -4.04563587107822,
          -4.297636513446362,
          -4.745152895076901,
          -4.737089226944776,
          -4.758078822249613,
          -3.1981632898780257,
          -3.797075094121358,
          -7,
          -3.241387983090901,
          -2.870770656446694,
          -3.1394464176042884,
          -7,
          -3.3869175103792855,
          -7,
          -3.138572689317992,
          -3.2780821008003054,
          -3.11735109929666,
          -3.723433281297394,
          -3.3251778739655737,
          -7,
          -3.689449456593836,
          -3.9630453857472343,
          -3.0305818650744536,
          -7,
          -3.864896553945115,
          -4.760821910929019,
          -3.317056153661989,
          -4.152746864026461,
          -4.260182731270367,
          -3.050227801195228,
          -3.179312365346288,
          -7,
          -3.2311922774468314,
          -4.74355679768502,
          -4.146864161030103,
          -4.162728654665835,
          -2.770412835511627,
          -4.4362342281438885,
          -4.736476182027697,
          -7,
          -3.5080779604155277,
          -3.185588270541374,
          -3.4076967576338975,
          -3.958635543065691,
          -3.5124960502155544,
          -7,
          -4.275434214468909,
          -3.2491915608671667,
          -4.742717277807254,
          -4.737431200514583,
          -7,
          -3.3815049580804746,
          -4.436885868659852,
          -2.5158105730293747,
          -3.963362766103736,
          -4.740346896680485,
          -4.1474985516858025,
          -3.662249162440235,
          -3.968739713458941,
          -3.800839225514776,
          -3.964479629577269,
          -4.4386372661686115,
          -4.058501943429649,
          -4.7413328454741555,
          -3.8974542815321183,
          -2.886776612422209,
          -3.6232095180198423,
          -7,
          -2.880899299839252,
          -4.738098466092143,
          -7,
          -2.6281594701971898,
          -2.790961787868363,
          -3.033658596404163,
          -7,
          -3.797782877883888,
          -3.69680102095226,
          -3.8416018942970567,
          -3.622962847945896,
          -7,
          -4.736404470909626,
          -3.6402902778133663,
          -3.9590334381368626,
          -7,
          -3.485504748083348,
          -4.133818235928276,
          -3.4934213598717854,
          -4.262925469331831,
          -4.050016080603039,
          -7,
          -7,
          -4.134591434710877,
          -7,
          -2.840273036699264,
          -4.737852332664364,
          -4.4353425998364004,
          -4.259562026270737,
          -3.3821671876003583,
          -3.879375470539603,
          -7,
          -3.8367512361816107,
          -3.593404226314317,
          -4.136379654870003,
          -2.216030105101232,
          -4.261706851652487,
          -4.276431165033798,
          -4.43691763100473,
          -4.438107045154885,
          -2.381283029465036,
          -4.736516016421845,
          -3.325720858019412,
          -3.8951540877215907,
          -4.737303985990029,
          -3.960010711374667,
          -3.9696798881274287,
          -7,
          -3.890979596989689,
          -3.091988565813422,
          -3.308501175617602,
          -4.739635625010004,
          -3.2173450062486335,
          -4.74154551677621,
          -3.0140926774414027,
          -3.7869800210123445,
          -3.5192809544265256,
          -3.623064602118739,
          -3.9694858039103753,
          -3.667367330842684,
          -7,
          -7,
          -2.8274829540948496,
          -3.908255172627239,
          -4.259546099087022,
          -4.049458369168608,
          -3.1326671225668004,
          -4.267218676620119,
          -3.2566078014860538,
          -2.961272744113886,
          -2.6423481186113245,
          -4.435406348315538,
          -4.740733655388644,
          -3.9581177338764024,
          -7,
          -4.136165456814543,
          -3.5111674626951785,
          -3.610104774904159,
          -7,
          -7,
          -4.73550308887706,
          -3.135170829433316,
          -4.7361334553295675,
          -7,
          -4.736436343979519,
          -7,
          -7,
          -4.736906200252733,
          -4.73770140771463,
          -3.9757227725765003,
          -3.303103447444255,
          -3.4172106347347677,
          -4.435470087438645,
          -4.138815652231705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.135601690575795,
          -3.3378584290410944,
          -3.913995400974908,
          -3.911279392043913,
          -4.736707170670822,
          -7,
          -3.7099788120776522,
          -7,
          -7,
          -2.8419848045901137,
          -7,
          -7,
          -4.143553428678768,
          -3.9112337273068007,
          -3.263935750640936,
          -7,
          -7,
          -4.13586381379987,
          -7,
          -3.1929816157909645,
          -7,
          -4.260524535842226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.277695147981495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1784416587786515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.55808427360864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9590413923210934,
          -7,
          -2.9204711793184543,
          -1.9493900066449128,
          -7,
          -3.0633333589517497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.47712125471966255,
          -7,
          -4.217062605852551,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.385606273598312,
          -7,
          -7,
          -7,
          -4.5181057745296185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3184807251745174,
          -7,
          -7,
          -7,
          -2.4913616938342726,
          -7,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4955443375464483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9138138523837167,
          -7,
          -2.092825126714171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2833012287035497,
          -4.0288232980598355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1380703930086145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3222192947339195,
          -3.1172712956557644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.204933522354145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4871383754771865,
          -7,
          -7,
          -7,
          -2.864511081058392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1344958558346736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.271841606536499,
          -2.8115750058705933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.08278537031645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.084576277934331,
          -2.688419822002711,
          -7,
          -7,
          -7,
          -7,
          -5.0978158744956446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -2.665580991017953,
          -7,
          -3.9485107688376573,
          -7,
          -5.4329548675709285,
          -7,
          -2.7267272090265724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.767897616018091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.579211780231499,
          -7,
          -7,
          -4.617199609291268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.396356292642913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278970693925059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.570461210112099,
          -3.824494643099857,
          -7,
          -7,
          -7,
          -7,
          -4.0648197505822,
          -3.7763379096201755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4490153163477864,
          -3.979393567112165,
          -7,
          -7,
          -7,
          -7,
          -4.610511114900085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604020741000524,
          -7,
          -7,
          -4.632396547449762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9860996250551297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779895777163634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590618948206578,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.921166050637739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5508865888362537,
          -7,
          -7,
          -7,
          -3.673020907128896,
          -3.394626764272209,
          -7,
          -3.0888445627270045,
          -7,
          -7,
          -7,
          -2.9802559418042427,
          -3.65571454961871,
          -7,
          -7,
          -1.967557300945524,
          -7,
          -2.256236533205923,
          -7,
          -2.992995098431342,
          -7,
          -7,
          -3.9643892861748222,
          -2.271841606536499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.998695158311656,
          -7,
          -3.3502480183341627,
          -7,
          -2.9010884025090147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1545000516787205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6424645202421213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9398263372924727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6259979988260516,
          -7,
          -7,
          -3.193453484763139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788875115775417,
          -7,
          -3.15896526038341,
          -7,
          -1.4385423487861106,
          -7,
          -3.322839272686321,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.144418518602069,
          -7,
          -7,
          -7,
          -3.124178055474675,
          -7,
          -2.446640706109038,
          -7,
          -7,
          -2.82865989653532,
          -7,
          -7,
          -3.0707764628434346,
          -7,
          -3.482266003688865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.118595365223762,
          -3.642728248491855,
          -7,
          -7,
          -7,
          -3.787405367499166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.009450895798694,
          -7,
          -7,
          -3.9921999297955852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2555137128195333,
          -7,
          -3.218010042984363,
          -7,
          -7,
          -3.835246539996311,
          -2.9410142437055695,
          -7,
          -2.785329835010767,
          -7,
          -2.430290106054924,
          -7,
          -7,
          -2.9425041061680806,
          -3.252610340567373,
          -7,
          -7,
          -2.962369335670021,
          -7,
          -7,
          -7,
          -3.180412632838324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.478037132206131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.893817223967463,
          -7,
          -3.1914510144648953,
          -3.157594120512708,
          -7,
          -7,
          -7,
          -7,
          -2.8410464654093035,
          -7,
          -7,
          -7,
          -2.7450747915820575,
          -7,
          -7,
          -7,
          -7,
          -2.9242792860618816,
          -7,
          -3.4719758703932535,
          -7,
          -3.4413808849165113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9429995933660407,
          -3.1142772965615864,
          -2.4599952560473914,
          -7,
          -3.9209025391581,
          -7,
          -2.9304395947667,
          -7,
          -7,
          -7,
          -7,
          -3.020775488193558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.713280485299326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.705007959333336,
          -7,
          -7,
          -3.4865721505183562,
          -3.337459261290656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4401216031878037,
          -7,
          -3.8070070597740875,
          -7,
          -7,
          -7,
          -7,
          -3.1760912590556813,
          -7,
          -1.9650733570910066,
          -3.3025473724874854,
          -7,
          -2.926856708949692,
          -7,
          -7,
          -3.127428777851599,
          -3.0576661039098294,
          -7,
          -2.5352941200427703,
          -3.0060379549973173,
          -7,
          -7,
          -7,
          -7,
          -3.041787318971752,
          -3.1622656142980214,
          -7,
          -2.984077033902831,
          -3.8355426114309683,
          -7,
          -7,
          -3.8009918612601714,
          -7,
          -7,
          -2.0549958615291413,
          -7,
          -7,
          -7,
          -2.6524880857810116,
          -2.7271344237604884,
          -7,
          -7,
          -3.66872405285837,
          -2.516667559099043,
          -7,
          -7,
          -7,
          -3.26030994579492,
          -2.213517756996305,
          -7,
          -7,
          -2.343605508104172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0689276116820716,
          -7,
          -3.1362221332448503,
          -7,
          -3.9568756646371357,
          -7,
          -3.2496874278053016,
          -3.5524857010929476,
          -2.314393957221963,
          -7,
          -3.0791812460476247,
          -7,
          -2.709269960975831,
          -2.822560336942692,
          -2.215373152783422,
          -7,
          -7,
          -7,
          -2.6338049875467577,
          -7,
          -7,
          -7,
          -3.245018870737753,
          -7,
          -2.696938553005363,
          -7,
          -7,
          -4.0224489924661775,
          -4.752248254177775,
          -4.282961803534335,
          -7,
          -3.7393032991563406,
          -3.128722284338427,
          -7,
          -4.107481318911243,
          -3.8931036018217346,
          -7,
          -7,
          -4.280976518699718,
          -4.361075905224315,
          -3.692704593194761,
          -7,
          -7,
          -4.09824558428674,
          -4.180871051650544,
          -4.0216440360874435,
          -4.615107987443194,
          -7,
          -4.325454086056255,
          -7,
          -4.187280946665672,
          -4.0948203803548,
          -4.173361116894232,
          -4.3305355210905585,
          -4.158528336790152,
          -7,
          -4.010562828804489,
          -7,
          -4.2869950739688525,
          -3.7746385998091383,
          -7,
          -7,
          -3.951580344903392,
          -4.074304344001435,
          -3.8838317133294527,
          -4.399742926242862,
          -3.989405318001516,
          -7,
          -3.800396278249509,
          -3.7146231028714842,
          -3.781827152932428,
          -7,
          -4.074670188924007,
          -7,
          -3.2280335249267362,
          -3.523876475638131,
          -7,
          -4.092053606425475,
          -3.2553026633951765,
          -3.2758486103094215,
          -7,
          -3.775391971696612,
          -7,
          -7,
          -3.2686949535621777,
          -3.9017306917292185,
          -3.1528995963937474,
          -7,
          -3.462491585763105,
          -3.6207650116107004,
          -4.219988887789219,
          -7,
          -7,
          -7,
          -4.015872975925313,
          -7,
          -3.5647597371096733,
          -3.364550995353972,
          -7,
          -7,
          -7,
          -7,
          -3.8132695547205664,
          -7,
          -3.0037189638231143,
          -3.6104472214421213,
          -3.2205148668713357,
          -7,
          -7,
          -3.407178379640504,
          -4.093526743699675,
          -2.738516308715399,
          -3.7362869187437133,
          -7,
          -7,
          -3.0613582209247174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.01674092728626,
          -7,
          -2.9501213475113732,
          -7,
          -7,
          -3.71566914240099,
          -7,
          -7,
          -7,
          -3.5217916496391233,
          -7,
          -3.935416568411959,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0187004986662433,
          -7,
          -7,
          -7,
          -7,
          -4.478147870643273,
          -4.045039225299072,
          -4.047321605082491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1048284036536553,
          -7,
          -7,
          -3.148833929054163,
          -7,
          -3.404149249209695,
          -7,
          -7,
          -7,
          -3.231979026831504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8474492624991727,
          -7,
          -7,
          -7,
          -7,
          -3.5919043645847664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8169984054036665,
          -7,
          -7,
          -3.166578109919652,
          -3.197280558125619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3494717992143856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8487841956346793,
          -7,
          -3.5088886771335988,
          -3.8185337947129234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.208441356438567,
          -3.543819805142658,
          -7,
          -7,
          -7,
          -3.868556277657932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8985880720439496,
          -7,
          -2.650954757949053,
          -7,
          -3.174931593528443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.243203462697779,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8152234391209294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.387474128991608,
          -3.2477278329097232,
          -7,
          -7,
          -3.68761812957177,
          -7,
          -7,
          -7,
          -7,
          -3.2116544005531824,
          -7,
          -2.942454526342477,
          -3.67089495352021,
          -7,
          -2.76317832728305,
          -3.191696193356389,
          -2.9965116721541785,
          -7,
          -2.99211148778695,
          -2.7570162347313003,
          -7,
          -3.0678145111618402,
          -4.267359490827859,
          -7,
          -2.997386384397313,
          -7,
          -3.062581984228163,
          -7,
          -7,
          -2.155336037465062,
          -7,
          -3.0790002523038495,
          -7,
          -3.397862793900405,
          -7,
          -3.0965624383741357,
          -7,
          -7,
          -7,
          -7,
          -3.0145205387579237,
          -7,
          -2.5440680443502757,
          -2.873320601815399,
          -2.9901908082608895,
          -7,
          -7,
          -7,
          -3.0453229787866576,
          -7,
          -3.017450729510536,
          -7,
          -3.15106325335375,
          -7,
          -7,
          -7,
          -7,
          -4.060811119791346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1818435879447726,
          -3.5402293377182827,
          -7,
          -2.5839540689101295,
          -7,
          -7,
          -7,
          -7,
          -3.0107238653917734,
          -2.9916690073799486,
          -1.6637334093630283,
          -2.290776361298428,
          -2.2980339102154357,
          -7,
          -7,
          -7,
          -3.066300215293246,
          -3.1264561134318045,
          -3.0195316845312554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.392696953259666,
          -7,
          -7,
          -7,
          -7,
          -2.7009919975949694,
          -7,
          -3.000434077479319,
          -2.040074643230312,
          -7,
          -3.7891574919114395,
          -7,
          -7,
          -7,
          -2.6424645202421213,
          -7,
          -3.0107238653917734,
          -2.657586970059049,
          -2.6319344788110417,
          -7,
          -7,
          -7,
          -4.743039154804933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0729847446279304,
          -7,
          -7,
          -3.0955616090064297,
          -7,
          -7,
          -7,
          -7,
          -2.9867717342662448,
          -3.7456992266025058,
          -7,
          -3.5399538416563967,
          -7,
          -7,
          -3.5441921107650325,
          -7,
          -7,
          -2.233313461142046,
          -7,
          -2.9506082247842307,
          -7,
          -7,
          -7,
          -2.9266167956441933,
          -2.380211241711606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.92272545799326,
          -7,
          -7,
          -3.073351702386901,
          -7,
          -3.0492180226701815,
          -7,
          -2.356332505359126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7161848669318633,
          -7,
          -7,
          -7,
          -7,
          -1.9682317095729847,
          -3.02201573981772,
          -2.2947810463869796,
          -1.8178957571617955,
          -1.9423181526298499,
          -1.816097135847089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.554691016610708,
          -2.7351995484223135,
          -7,
          -7,
          -7,
          -3.2577265605586323,
          -7,
          -3.465977368285823,
          -7,
          -3.205745540942662,
          -2.4170562991191105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.863322860120456,
          -7,
          -7,
          -4.151887507509935,
          -7,
          -7,
          -7,
          -2.682145076373832,
          -7,
          -7,
          -3.08278537031645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.998259338423699,
          -7,
          -7,
          -7,
          -3.0203612826477078,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -3.0265332645232967,
          -3.0318122713303706,
          -7,
          -2.7690078709437738,
          -7,
          -2.313023110323238,
          -2.9059307334917293,
          -1.7747090039726263,
          -7,
          -7,
          -3.00987563371216,
          -7,
          -2.5384480517102173,
          -2.6380282224294906,
          -7,
          -3.6630005371638217,
          -7,
          -7,
          -7,
          -3.6920533650340808,
          -3.2203696324513946,
          -2.944729360303296,
          -2.7456602257060756,
          -7,
          -7,
          -2.7007037171450192,
          -7,
          -2.568983532526376,
          -2.328088228398017,
          -2.813247300897605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7547304690237535,
          -3.024074987307426,
          -1.906437663375016,
          -3.2079035303860515,
          -7,
          -3.0511525224473814,
          -3.5738943775920253,
          -7,
          -7,
          -7,
          -7,
          -2.999130541287371,
          -7,
          -7,
          -2.235317981925527,
          -2.5289167002776547,
          -3.2931414834509307,
          -2.788168371141168,
          -2.940267391446012,
          -7,
          -3.8965985479517316,
          -3.2581581933407944,
          -7,
          -7,
          -7,
          -3.2971036501492565,
          -3.1711411510283822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7263196121107756,
          -3.9890936926103255,
          -3.5140161804006493,
          -4.288177337719967,
          -7,
          -2.1049421081920463,
          -3.952526071556139,
          -7,
          -7,
          -2.832189461068513,
          -7,
          -2.3240250955971815,
          -3.543074235033532,
          -7,
          -3.000867721531227,
          -7,
          -7,
          -2.461798557525109,
          -7,
          -3.064832219738574,
          -7,
          -3.2830749747354715,
          -7,
          -2.192985379093163,
          -7,
          -7,
          -4.325176880079742,
          -7,
          -7,
          -3.1383026981662816,
          -7,
          -7,
          -7,
          -4.411266066512139,
          -3.7852032462226073,
          -7,
          -4.062431553162612,
          -4.282803314291728,
          -3.709251110979869,
          -3.6316196159084075,
          -3.6288655408018107,
          -7,
          -7,
          -3.960518342780708,
          -7,
          -7,
          -7,
          -4.627055047305291,
          -3.9140785853891122,
          -4.091491094267951,
          -4.100405011565889,
          -7,
          -3.934165027520354,
          -4.160948480864697,
          -7,
          -4.233808065724531,
          -7,
          -7,
          -4.2557547866430445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4991885949036172,
          -7,
          -3.2860071220794747,
          -3.434078220883039,
          -2.762407618151054,
          -1.6678905292311565,
          -7,
          -7,
          -7,
          -3.5524857010929476,
          -3.135895575564019,
          -3.3802112417116064,
          -7,
          -3.686397907850216,
          -3.76544501809015,
          -7,
          -7,
          -3.3416323357780544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7237913946490377,
          -3.3597993573621676,
          -4.475752520143048,
          -7,
          -7,
          -7,
          -3.7164415928308245,
          -7,
          -3.9459016787990917,
          -2.8344207036815328,
          -7,
          -7,
          -7,
          -3.5596672783880576,
          -3.6918547497031398,
          -7,
          -3.7170044070405472,
          -3.3260284683370087,
          -3.4806679478217943,
          -2.8380931384455983,
          -3.0806264869218056,
          -3.533909685986936,
          -3.5723603667301402,
          -7,
          -4.163956058605712,
          -7,
          -7,
          -3.6788824146707357,
          -7,
          -3.0780941504064105,
          -7,
          -7,
          -7,
          -7,
          -3.546131204914049,
          -7,
          -3.289142835932333,
          -7,
          -3.4991369945373827,
          -4.023458237643675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.636086515103073,
          -7,
          -7,
          -7,
          -3.0232524596337114,
          -7,
          -3.2425414282983844,
          -7,
          -7,
          -2.733770288651772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.878291949249796,
          -7,
          -7,
          -7,
          -2.9234395410907656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.064008486531724,
          -2.8887409606828927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.347505649475902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.734799829588847,
          -7,
          -3.5653146367896102,
          -3.144885418287142,
          -7,
          -2.806519134080705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3769417571467586,
          -7,
          -7,
          -3.4796472787693866,
          -7,
          -3.545059584694003,
          -7,
          -7,
          -3.731346975545955,
          -7,
          -7,
          -7,
          -7,
          -4.2876897839360755,
          -3.514282047860378,
          -7,
          -7,
          -3.8520731603687888,
          -3.0199466816788423,
          -7,
          -3.8220590560256844,
          -3.8158432906632664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.395908557341382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5229655954919865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.432568465297358,
          -7,
          -7,
          -7,
          -7,
          -2.6328909362366324,
          -7,
          -7,
          -3.818775563959327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.816042340921997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3106933123433606,
          -7,
          -7,
          -7,
          -3.613366056465805,
          -7,
          -7,
          -7,
          -3.556767567185354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7834747875822465,
          -7,
          -7,
          -7,
          -7,
          -2.8674674878590514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.341394951524042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0256335110606978,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8003242293348352,
          -2.7151673578484576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3552599055273786,
          -2.3339508043872472,
          -7,
          -7,
          -4.225050696138049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.888179493918325,
          -7,
          -3.919979755708313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.370624100841536,
          -7,
          -7,
          -2.682145076373832,
          -7,
          -7,
          -7,
          -3.24809593109413,
          -7,
          -2.6720978579357175,
          -2.88024177589548,
          -1.7958800173440752,
          -3.893397121772088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3981136917305026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0874264570362855,
          -7,
          -7,
          -7,
          -3.0418231769977724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3439990690571615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9097423747827356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.41740710243536,
          -7,
          -7,
          -7,
          -7,
          -2.993876914941211,
          -7,
          -7,
          -7,
          -2.5496162395190853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3729120029701067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -7,
          -7,
          -2.3483048630481607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.330413773349191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.113943352306837,
          -7,
          -7,
          -2.946943270697825,
          -7,
          -7,
          -7,
          -7,
          -2.4366925976640545,
          -3.7083359026822635,
          -7,
          -4.500593207431217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7770641547424293,
          -2.920905604164024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7596678446896306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.468568852723465,
          -7,
          -7,
          -2.8750612633917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.621740428764866,
          -3.0962145853464054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6620964454179235,
          -7,
          -4.956317333363374,
          -7,
          -7,
          -3.0284726614362905,
          -3.1007150865730817,
          -7,
          -7,
          -7,
          -3.0557604646877348,
          -1.7181632495953605,
          -2.4951973183654577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.657693115600798,
          -4.272966527115369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9436552443683515,
          -3.496860487394368,
          -2.6603910984024672,
          -7,
          -3.6692548783557273,
          -7,
          -7,
          -3.74499667403856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.503727145256533,
          -7,
          -2.7371926427047373,
          -3.0259199985020175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.28141974015399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.527898298680946,
          -7,
          -7,
          -4.635483746814912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8068580295188172,
          -7,
          -7,
          -7,
          -7,
          -3.9951084577447404,
          -4.643195972076743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.451939869365103,
          -7,
          -7,
          -3.318793504793297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.780867933550551,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6893088591236203,
          -3.0595634179012676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.809582158214607,
          -3.475525915039281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.157638064100917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2723058444020863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.208530929395862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.806202592899124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6045500325712614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.877584408926619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.858537197569639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3282572497312364,
          -7,
          -7,
          -7,
          -7,
          -3.2971036501492565,
          -7,
          -7,
          -7,
          -4.217641840773327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8193201504349257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3230457354817013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6194759536382315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426990834952875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.670366473678122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.646076820312336,
          -7,
          -7,
          -7,
          -3.0105649480946766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.848303065841533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.195622943586937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3054266119721705,
          -7,
          -7,
          -3.751048034820188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097892144361428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4722687519252506,
          -7,
          -4.830920517340211,
          -7,
          -7,
          -4.2432117317447595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4803902567348173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.678536588070615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.640759614348585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604258461911163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357744325180375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.484774218948188,
          -4.576686805200995,
          -7,
          -7,
          -7,
          -2.507855871695831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.336239528754922,
          -7,
          -7,
          -2.611723308007342,
          -7,
          -2.3636119798921444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4023473728483684,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3404441148401185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.305351369446624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2194535370768107,
          -7,
          -7,
          -7,
          -7,
          -2.837588438235511,
          -7,
          -7,
          -7,
          -7,
          -3.759101003867064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.435486020757864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.660770643527697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7752462597402365,
          -7,
          -7,
          -3.8250364412213536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6704314093606056,
          -7,
          -2.7551122663950713,
          -2.2438644894340767,
          -7,
          -2.8615344108590377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.509336958017644,
          -4.67228262478892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.207050607980928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5788683286660286,
          -7,
          -3.6857417386022635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.311329952303793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4224256763712044,
          -7,
          -7,
          -7,
          -4.305695228911858,
          -7,
          -7,
          -3.752969865029084,
          -7,
          -7,
          -7,
          -7,
          -2.7993405494535817,
          -2.7283537820212285,
          -7,
          -2.60959440922522,
          -7,
          -7,
          -7,
          -2.9951962915971793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.955902519867588,
          -7,
          -3.0472748673841794,
          -4.243521707406287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0398105541483504,
          -2.0681858617461617,
          -2.8902346663063563,
          -7,
          -7,
          -4.617692143352612,
          -7,
          -7,
          -7,
          -7,
          -3.307496037913213,
          -7,
          -7,
          -4.431966532447148,
          -7,
          -4.030316305988586,
          -7,
          -7,
          -7,
          -4.091895473508298,
          -7,
          -7,
          -3.952618109269662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.48364434340033,
          -4.07107154998365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.388136739763074,
          -7,
          -7,
          -7,
          -3.7005306569785916,
          -7,
          -7,
          -7,
          -7,
          -4.542576476260529,
          -7,
          -7,
          -4.068148740973294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5749375144503044,
          -4.3776021772931735,
          -7,
          -7,
          -3.270911639410481,
          -7,
          -4.133847488421549,
          -7,
          -4.941923667610981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6423655808449733,
          -7,
          -4.155578931476932,
          -7,
          -7,
          -3.458119623559412,
          -4.5628992633333025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7505083948513462,
          -7,
          -3.2095596927466623,
          -2.507855871695831,
          -2.445993181787647,
          -7,
          -3.3679147387937527,
          -3.510902307208997,
          -3.0261245167454502,
          -2.2911467617318855,
          -7,
          -3.7774268223893115,
          -7,
          -3.7245113899980535,
          -7,
          -7,
          -7,
          -3.74170298395774,
          -7,
          -7,
          -7,
          -7,
          -3.4743619760326307,
          -7,
          -3.0224283711854865,
          -2.7846172926328756,
          -7,
          -7,
          -3.8282086144679455,
          -2.678518379040114,
          -7,
          -3.8663316525868,
          -3.5264486326524866,
          -4.042134300345594,
          -7,
          -3.3571722577230334,
          -2.7067177823367587,
          -7,
          -7,
          -7,
          -7,
          -2.9324737646771535,
          -7,
          -7,
          -3.2909245593827543,
          -7,
          -3.395937645080042,
          -7,
          -7,
          -7,
          -2.478566495593843,
          -7,
          -7,
          -3.4277700279826964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6634182122526795,
          -2.7209857441537393,
          -3.364731342718344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2295111961536325,
          -7,
          -7,
          -2.694605198933569,
          -7,
          -7,
          -7,
          -2.6398183918310933,
          -2.876217840591642,
          -2.826722520168992,
          -2.938186037505905,
          -2.658488381309017,
          -2.5819009187422806,
          -7,
          -3.7244397233970745,
          -3.659345635746177,
          -7,
          -7,
          -7,
          -7,
          -4.268858674994137,
          -2.910446524697526,
          -7,
          -7,
          -3.83499260373303,
          -2.803115554890027,
          -3.9554472105776957,
          -4.280942405998698,
          -3.456290100882691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -7,
          -7,
          -7,
          -7,
          -3.2462215189159713,
          -7,
          -7,
          -7,
          -7,
          -2.765668554759014,
          -7,
          -7,
          -3.399846712712922,
          -3.3191060593097763,
          -2.8356905714924254,
          -2.1398790864012365,
          -2.921166050637739,
          -7,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -7,
          -3.662190990859007,
          -3.0273496077747564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2775175329691715,
          -7,
          -7,
          -7,
          -2.9748186146454407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.848558572123763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.65955492971097,
          -7,
          -7,
          -7,
          -7,
          -2.9419087743655994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1262396696287182,
          -7,
          -7,
          -2.5211380837040362,
          -3.4154684148357113,
          -7,
          -7,
          -7,
          -2.60422605308447,
          -2.0644579892269186,
          -7,
          -4.258553480224311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7041505168397992,
          -2.386498965550653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.409172018991404,
          -7,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -7,
          -7,
          -2.3483048630481607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5212165635672568,
          -7,
          -2.311753861055754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.167317334748176,
          -7,
          -4.519775507887456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2900346113625183,
          -2.1476763242410986,
          -2.583198773968623,
          -7,
          -7,
          -7,
          -7,
          -3.585949270923298,
          -7,
          -7,
          -7,
          -7,
          -3.02201573981772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.260015705635886,
          -2.4955443375464483,
          -3.009450895798694,
          -3.0729847446279304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.266325791475637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1225435240687545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.077476919504343,
          -7,
          -7,
          -7,
          -7,
          -2.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.237040791379191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.152232733334654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.037227234582274,
          -7,
          -2.9360107957152097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.469822015978163,
          -7,
          -2.459392487759231,
          -7,
          -5.149662421113644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.456366033129043,
          -7,
          -7,
          -7,
          -2.401400540781544,
          -7,
          -7,
          -7,
          -2.6180480967120925,
          -3.688108228551808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.917330426106554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5071809772602407,
          -2.3467085164122916,
          -7,
          -4.498131284151583,
          -7,
          -7,
          -7,
          -3.018284308426531,
          -7,
          -3.0086001717619175,
          -2.4718781993072905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.444044795918076,
          -7,
          -2.496929648073215,
          -2.530039530588542,
          -2.637989780784685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.756636108245848,
          -7,
          -7,
          -2.486430478854434,
          -7,
          -7,
          -3.000867721531227,
          -7,
          -5.098255975225523,
          -3.028977705208778,
          -7,
          -7,
          -7,
          -7,
          -2.165541076722373,
          -7,
          -7,
          -2.1164416975393117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.47736246243589,
          -3.4019172505175748,
          -4.734175532664321,
          -7,
          -3.0773679052841567,
          -4.244512145378027,
          -3.034227260770551,
          -7,
          -7,
          -7,
          -7,
          -3.4391747398434687,
          -2.7307822756663893,
          -7,
          -7,
          -7,
          -2.5508396050657853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2995799292687487,
          -7,
          -7,
          -4.618529216771113,
          -7,
          -7,
          -7,
          -4.4290898392125735,
          -7,
          -7,
          -7,
          -4.256501266211318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3943641126271284,
          -7,
          -7,
          -4.65243974758942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.785258633357701,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.227483917481322,
          -7,
          -4.581471773962398,
          -4.237468333249569,
          -7,
          -7,
          -7,
          -7,
          -4.048810680621964,
          -7,
          -7,
          -7,
          -3.7936739986571855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.242516582365605,
          -7,
          -7,
          -7,
          -3.441695135640717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354818870847722,
          -4.5029139488008685,
          -7,
          -7,
          -7,
          -7,
          -4.611861325884996,
          -7,
          -7,
          -3.6074550232146683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.680758419669491,
          -7,
          -7,
          -4.128226895434375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.304167271724397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.298489193286698,
          -7,
          -3.0811672147134725,
          -3.6906390117159673,
          -7,
          -7,
          -7,
          -3.4820155764507117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.74795530690673,
          -7,
          -7,
          -7,
          -7,
          -3.485863329597335,
          -2.9849771264154934,
          -7,
          -2.8382192219076257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5998334695972587,
          -7,
          -7,
          -7,
          -2.467608105583633,
          -7,
          -7,
          -7,
          -7,
          -2.945796726048,
          -7,
          -2.8394780473741985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7489628612561616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.67089495352021,
          -7,
          -3.3175518450809616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7596678446896306,
          -7,
          -7,
          -7,
          -2.1675361229048957,
          -2.31492005599242,
          -7,
          -2.8195439355418688,
          -7,
          -7,
          -7,
          -3.7309436934277356,
          -7,
          -7,
          -3.218535505216528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.711701804964474,
          -7,
          -3.6581545470672103,
          -7,
          -3.763502865467597,
          -7,
          -7,
          -7,
          -7,
          -2.762678563727436,
          -2.7126497016272113,
          -7,
          -7,
          -7,
          -7,
          -3.3737393183514452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0555694400609896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333507728917455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.214711421005384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.516931808868013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727134423760488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.4328122113298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9570802596579,
          -7,
          -2.738892615890152,
          -7,
          -7,
          -7,
          -3.634275694625944,
          -2.640944966994348,
          -7,
          -7,
          -7,
          -3.9860996250551297,
          -3.655042341331202,
          -2.668075151394519,
          -3.6280481732796694,
          -7,
          -2.526339277389844,
          -3.0502198796550055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6638892986226614,
          -2.754802988015006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4806296561576167,
          -3.2807348293181673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.732647658971915,
          -3.1020280999717116,
          -7,
          -3.9611837098124356,
          -4.0036328370044085,
          -3.9622272313500853,
          -7,
          -7,
          -3.9614685553507862,
          -7,
          -3.99943504987633,
          -7,
          -7,
          -7,
          -3.211698859219537,
          -7,
          -7,
          -7,
          -7,
          -3.4346088189721344,
          -3.1986570869544226,
          -7,
          -7,
          -3.501692431974699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.975431808509263,
          -7,
          -7,
          -3.1860612225861757,
          -7,
          -7,
          -2.8012789486025635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.980821166644336,
          -7,
          -7,
          -7,
          -7,
          -4.007854418758035,
          -7,
          -7,
          -7,
          -7,
          -3.214932110314418,
          -7,
          -2.828588295763267,
          -2.9314985521074135,
          -7,
          -7,
          -7,
          -3.625785594701899,
          -7,
          -3.9921999297955852,
          -3.0955616090064297,
          -7,
          -7,
          -3.660770643527697,
          -3.266325791475637,
          -7,
          -7,
          -7,
          -3.478037132206131,
          -3.478037132206131,
          -3.0520683999338503,
          -7,
          -7,
          -2.9873789381001123,
          -3.4566696294237573,
          -3.3623316518700257,
          -1.7383958575537897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.454501860531497,
          -7,
          -7,
          -7,
          -7,
          -3.413697824610152,
          -7,
          -7,
          -7,
          -3.9698350930757975,
          -7,
          -7,
          -3.6871274768927718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1238375049273124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0679383299743406,
          -7,
          -3.0908546858840182,
          -7,
          -7,
          -2.5560831047121524,
          -3.959470702075107,
          -3.9753858489894673,
          -3.3712526291249394,
          -3.9771746760201876,
          -3.203984244420126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7090578513345434,
          -7,
          -7,
          -7,
          -3.5342292372487547,
          -7,
          -3.7395327894173307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.490192663567421,
          -7,
          -7,
          -7,
          -4.036708721569886,
          -7,
          -7,
          -7,
          -3.9568404901592333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.2377501940906657,
          -2.924482559869432,
          -7,
          -7,
          -7,
          -2.897718704935313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.964495339555093,
          -3.0123919266355528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.996555449633365,
          -7,
          -3.575187844927661,
          -3.715627349158221,
          -7,
          -7,
          -7,
          -3.5554975061310574,
          -3.9752019622578523,
          -2.2350807535650064,
          -7,
          -3.242962512642639,
          -7,
          -7,
          -7,
          -7,
          -3.6864575104691117,
          -2.6893976628212823,
          -3.4101020766428607,
          -3.4073484078239042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9467922511424818,
          -7,
          -7,
          -7,
          -3.1012357969686812,
          -3.9635989625972416,
          -7,
          -2.3882939162119032,
          -7,
          -7,
          -7,
          -7,
          -3.5288310321677203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.269921362515407,
          -3.693155132538336,
          -7,
          -7,
          -7,
          -4.001690454232153,
          -3.979548374704095,
          -3.655330558009341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4722443526734725,
          -3.5766868052009952,
          -3.0733890027618425,
          -7,
          -3.999782798454136,
          -2.58737317819709,
          -7,
          -7,
          -7,
          -7,
          -3.9893608137762473,
          -3.4602587043308133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3504806137955305,
          -7,
          -7,
          -3.224343108953842,
          -3.305633461726069,
          -3.0390967104414504,
          -7,
          -4.074999186064199,
          -2.8606174625142047,
          -3.2375751529847925,
          -3.352928220652557,
          -2.91150349477443,
          -7,
          -2.969216160193203,
          -3.3652726562364186,
          -3.3182319446859947,
          -3.6037276129072717,
          -2.9232051480529364,
          -3.188397198393092,
          -3.3178936555380973,
          -2.566433428221703,
          -3.9714382148239724,
          -3.2311706772347133,
          -7,
          -3.143491254545802,
          -3.910090545594068,
          -3.1804749464164352,
          -3.3605092642757195,
          -3.886866575028829,
          -3.503467224264229,
          -3.8695016026972224,
          -7,
          -2.853925332171701,
          -3.3272908044180514,
          -3.208700758415077,
          -3.8140976983042227,
          -3.532608801355367,
          -3.47845105314715,
          -3.462298148609655,
          -4.302850212702309,
          -3.001691849737373,
          -3.160429381388825,
          -2.9527682342042683,
          -3.522226814487059,
          -2.7703421100328383,
          -3.3152504207468403,
          -2.675503384727957,
          -3.133584525142688,
          -2.2900782787982696,
          -7,
          -2.899641457036817,
          -4.173244559061566,
          -4.019407108018883,
          -3.271609301378832,
          -2.9558800862253753,
          -4.142514604999374,
          -2.8932494712502037,
          -3.8505849763520317,
          -7,
          -7,
          -2.796683860632784,
          -4.082210716601243,
          -7,
          -7,
          -3.6521772463437383,
          -2.988062779908248,
          -3.2102357529251764,
          -7,
          -7,
          -7,
          -3.5501147400413813,
          -3.285235728480749,
          -3.5065275808580276,
          -3.8078055322706246,
          -4.306382132150198,
          -7,
          -7,
          -3.046311501179504,
          -3.401369205272897,
          -7,
          -7,
          -3.7886632131208575,
          -3.5199404421814484,
          -4.061037590063418,
          -7,
          -3.6495826527746433,
          -3.2419007136463427,
          -7,
          -3.5681598017268974,
          -7,
          -4.031165999660659,
          -7,
          -3.5027456678452404,
          -3.9663294951638783,
          -7,
          -7,
          -7,
          -4.314983145039124,
          -2.184998828988206,
          -7,
          -3.3978097007803054,
          -7,
          -2.8725447293769673,
          -3.792578442664711,
          -2.6532125137753435,
          -7,
          -7,
          -3.473107252633462,
          -3.9701608430373136,
          -3.218391490113583,
          -3.388855763178122,
          -3.6830019846071993,
          -3.7333577879255855,
          -3.8571816735501194,
          -4.020609853377705,
          -3.2842426868695513,
          -3.218841731507062,
          -3.980321586008756,
          -3.119292555619459,
          -3.3873898263387296,
          -3.9970804354717306,
          -3.977220446635385,
          -7,
          -7,
          -3.0466344997274475,
          -7,
          -2.2377563480984297,
          -2.718114759110934,
          -3.0670046917014813,
          -2.616455053232196,
          -7,
          -4.0475085055940125,
          -7,
          -3.406625327867206,
          -3.965248750967121,
          -3.654850090561394,
          -7,
          -2.0557488898291396,
          -7,
          -3.977311973396926,
          -7,
          -3.958277125547698,
          -3.442511124934785,
          -7,
          -2.9893689057927917,
          -7,
          -7,
          -3.485579476984679,
          -3.0417434884744745,
          -2.867740479949696,
          -3.9696954111184732,
          -7,
          -7,
          -3.7975099023288803,
          -2.7347426968541853,
          -3.50870923513873,
          -3.9818638909913506,
          -2.85000097173786,
          -2.7960189693471493,
          -2.780128801657813,
          -3.9755696578936623,
          -3.3554515201265174,
          -3.6692238739308056,
          -3.6761446803562063,
          -4.236285277448029,
          -7,
          -2.6663619559503995,
          -7,
          -3.364128689628175,
          -3.971971276399757,
          -3.5483075066875784,
          -7,
          -7,
          -2.9309490311675233,
          -3.9837164739137494,
          -7,
          -3.3035662999679793,
          -3.513617073787875,
          -7,
          -7,
          -3.6744937172963503,
          -3.2249860256767717,
          -7,
          -4.019282495761732,
          -7,
          -7,
          -3.4840782847471243,
          -1.893946607552074,
          -3.962889987391791,
          -2.9485759586429285,
          -3.1667704294521917,
          -7,
          -3.65076877671263,
          -3.300253776544204,
          -3.5621441079960707,
          -7,
          -7,
          -7,
          -3.3552599055273786,
          -3.9721565358594937,
          -3.5154322631124733,
          -7,
          -7,
          -3.9618006391916785,
          -7,
          -2.472300437219242,
          -7,
          -7,
          -7,
          -7,
          -3.373693397708325,
          -7,
          -3.0138199506371244,
          -3.2110060574081962,
          -3.2614611315130806,
          -7,
          -7,
          -3.385069776331935,
          -7,
          -7,
          -7,
          -3.6671726724788685,
          -7,
          -7,
          -4.12949654301666,
          -2.3883694792886034,
          -2.575374101516656,
          -7,
          -7,
          -4.044343734895107,
          -7,
          -7,
          -3.3649260337899753,
          -7,
          -7,
          -4.0135955235372895,
          -2.3405937554590173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.349824798081177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.478037132206131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.12501744535038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368277585134854,
          -7,
          -7,
          -7,
          -2.673020907128896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432810608184443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.616254897182604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.731910942116873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.390546539888802,
          -7,
          -7,
          -4.650336669434548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.702775077901044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6808791744268112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8750612633917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.386498965550653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080608451062176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.478037132206131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727126283206558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067210388410234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7203247174174416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6808791744268112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5622928644564746,
          -7,
          -4.639267294545039,
          -4.7400862323055035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779571240844613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2214142378423385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145507171409663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0520683999338503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7649229846498886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.190611797813605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.79989512705351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.870942050060529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6848453616444123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080644522032454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.844725627973226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.620656479819621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.876996792606452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333689041703905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1122697684172707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8260748027008264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.733999286538387,
          -7,
          -7,
          -7,
          -7,
          -2.7489628612561616,
          -1.8864907251724818,
          -7,
          -2.5888317255942073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4992745818922173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.7269987279362623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5808679779090298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.88394519503428,
          -7,
          -7,
          -7,
          -7,
          -3.7150278702988717,
          -7,
          -7,
          -7,
          -7,
          -2.7781512503836434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8169038393756605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5910646070264993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.696356388733332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.05307844348342,
          -2.100370545117563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.196728722623287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0293837776852097,
          -3.09968064110925,
          -7,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.61066016308988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4051755462179893,
          -7,
          -7,
          -7,
          -7,
          -2.7041505168397992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.343802333161655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.731991449018929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.650433809651895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.952792443044092,
          -7,
          -7,
          -4.299964668624155,
          -3.118595365223762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151706857022576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6813769331998136,
          -7,
          -7,
          -7,
          -3.466941725717638,
          -7,
          -4.6264430253312945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.16220583117701,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7958105246674085,
          -7,
          -7,
          -7,
          -7,
          -5.080644522032454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2364532830524073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8322959710584774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5938396610812715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8920946026904806,
          -7,
          -7,
          -3.110252917353403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.298853076409707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4265112613645754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8512583487190755,
          -7,
          -2.582063362911709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9867717342662448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.7269987279362623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.881963113267065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1838390370564214,
          -7,
          -7,
          -7,
          -7,
          -3.7661431884987495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7708520116421442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.673665876245702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4000196350651586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1180993120779945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.162146039825377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3093746249166704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.373187949912719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5852263815565872,
          -3.733277533932582,
          -7,
          -7,
          -2.782626166498415,
          -3.2434845220064585,
          -3.672836454171397,
          -7,
          -7,
          -3.7218106152125467,
          -7,
          -2.5602935243774274,
          -3.9205928620848085,
          -7,
          -3.7311857076340007,
          -2.7249800027309923,
          -7,
          -7,
          -7,
          -7,
          -3.6755033847279566,
          -7,
          -2.721050076134882,
          -7,
          -7,
          -7,
          -7,
          -3.216517771441886,
          -7,
          -3.681241237375587,
          -7,
          -3.7812525942484565,
          -7,
          -2.699837725867246,
          -7,
          -3.6893976628212823,
          -7,
          -7,
          -3.671728088239558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3412274163300966,
          -7,
          -3.3736474722092176,
          -3.75350645699097,
          -7,
          -3.6693168805661123,
          -7,
          -7,
          -3.703978825008386,
          -2.8999767515678005,
          -7,
          -7,
          -7,
          -1.9697147408599875,
          -7,
          -7,
          -7,
          -7,
          -3.811038508604216,
          -7,
          -7,
          -3.71281800020785,
          -3.5437784181428738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7019994748896368,
          -7,
          -3.7197454925295768,
          -3.6816029987308685,
          -7,
          -7,
          -2.385582910615795,
          -3.3960248966085933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.370142847051102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7104558643354246,
          -7,
          -7,
          -3.679155241283354,
          -3.6691308473733324,
          -3.012415374762433,
          -7,
          -7,
          -7,
          -7,
          -2.4438803215809832,
          -7,
          -7,
          -3.67089495352021,
          -3.3945392313722045,
          -3.1328198114646653,
          -3.669037800885156,
          -3.1105335962760554,
          -2.471317450841545,
          -7,
          -7,
          -3.6856521841155243,
          -3.624399974504209,
          -7,
          -3.2555137128195333,
          -3.7456992266025058,
          -3.3981136917305026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9873789381001123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2450806260854437,
          -3.2493818233440925,
          -3.2363692883742803,
          -7,
          -4.027186461836736,
          -7,
          -7,
          -3.7011360660925265,
          -7,
          -2.733277533932582,
          -7,
          -7,
          -7,
          -2.813981075636472,
          -7,
          -3.6652056284346006,
          -7,
          -7,
          -7,
          -7,
          -3.4245549766067134,
          -7,
          -3.6931991451537174,
          -7,
          -3.403034683744586,
          -3.200303182981585,
          -7,
          -3.2310871205848226,
          -3.668012971641832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.485934263771752,
          -7,
          -3.4634450317704277,
          -7,
          -3.4277294795038933,
          -2.412345401424098,
          -7,
          -7,
          -7,
          -7,
          -3.414137362184477,
          -3.739888655084543,
          -2.734977527824511,
          -7,
          -7,
          -3.2002118967002393,
          -7,
          -3.765072201102792,
          -7,
          -7,
          -7,
          -3.5015727138817785,
          -7,
          -3.8173008783933216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6843964784190204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.020775488193558,
          -2.3641244218181514,
          -3.2033706558529422,
          -3.6648299411430907,
          -3.6679196853173615,
          -7,
          -3.7066324508732946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6663307443019684,
          -7,
          -7,
          -7,
          -3.849357981661299,
          -7,
          -7,
          -3.6636067081245205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.991036109451118,
          -3.776555910703262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.366843038975866,
          -7,
          -3.2990712600274095,
          -7,
          -7,
          -7,
          -3.1539672216454786,
          -3.121969981607635,
          -7,
          -2.9230218541705404,
          -2.918180171004722,
          -3.6662370958958044,
          -7,
          -7,
          -7,
          -3.7113009599161657,
          -3.694166295933198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9479236198317262,
          -7,
          -7,
          -7,
          -2.237322669869924,
          -7,
          -7,
          -2.890507000682388,
          -3.365207100231823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146128035678238,
          -7,
          -3.731346975545955,
          -7,
          -3.139433582260135,
          -3.1341771075767664,
          -7,
          -2.885078384149224,
          -3.665017825412473,
          -3.7500453120117676,
          -3.2322335211147335,
          -3.3644571851188294,
          -7,
          -3.691435152144062,
          -7,
          -7,
          -7,
          -3.683137131483007,
          -3.6754116937148633,
          -3.3660492098002353,
          -7,
          -3.371714202642618,
          -3.4276808163314625,
          -3.361979527987491,
          -3.5590762202465087,
          -7,
          -2.9677039447900855,
          -2.6757783416740852,
          -7,
          -7,
          -2.6181352956847586,
          -7,
          -3.1252372114756253,
          -2.3443922736851106,
          -3.7374312005145827,
          -7,
          -7,
          -7,
          -3.1048284036536553,
          -3.669502834104343,
          -3.681512586638962,
          -3.6711728427150834,
          -3.443966678374579,
          -7,
          -3.0536545582907473,
          -7,
          -7,
          -3.707712079213691,
          -4.780526126607946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.623382217343356,
          -2.600957985056156,
          -7,
          -4.18150058846776,
          -3.924196555424065,
          -4.696670854360099,
          -4.354697347829673,
          -3.2341598394744815,
          -4.369123049528199,
          -4.15956719323362,
          -3.6135158906856466,
          -4.155761012877924,
          -3.808220621661337,
          -7,
          -4.162162649359897,
          -3.374345016224609,
          -3.383702357611819,
          -7,
          -3.970974150579461,
          -7,
          -3.3669563247869063,
          -7,
          -2.900770714997175,
          -4.32434419893904,
          -7,
          -4.335698551498222,
          -3.9880458832342387,
          -3.7257891635772458,
          -7,
          -7,
          -3.4272913145278627,
          -4.159942978047153,
          -2.7506369413912526,
          -2.44216608578472,
          -2.5313008910172563,
          -2.245172795269417,
          -2.299164733747734,
          -2.4272810597615218,
          -2.990366607893781,
          -7,
          -2.2186248823129056,
          -2.541121412738247,
          -2.523457418892806,
          -2.3854979437195007,
          -3.1459848380679163,
          -2.559031448926597,
          -7,
          -2.3042301459140004,
          -2.6181975699477458,
          -7,
          -3.574956775764507,
          -2.4936018736013543,
          -2.976873777627786,
          -7,
          -1.9375343341579927,
          -2.2739733552614925,
          -4.10595276923698,
          -3.6768764319731373,
          -3.801472313521471,
          -3.379124146070392,
          -2.274933652403,
          -3.6577727077355213,
          -3.7592805835202423,
          -3.1474186591597326,
          -3.354135890522645,
          -7,
          -3.6506474416793195,
          -2.469190620933241,
          -3.024578950016235,
          -1.8014564829054331,
          -2.438937701095528,
          -3.050821505295759,
          -2.0148460455784836,
          -2.7031685051564884,
          -2.906335041805091,
          -1.618700389595784,
          -2.1551535630443066,
          -7,
          -3.051832155289801,
          -7,
          -3.198863190485256,
          -3.02129269021003,
          -2.9619843621856914,
          -3.2072752236993582,
          -3.6755950563867463,
          -7,
          -7,
          -3.9094490469812664,
          -2.770545198148703,
          -3.378851946448881,
          -2.7043065414442804,
          -3.6947806360120614,
          -3.0535905832619945,
          -2.516150885953567,
          -3.7424894645817752,
          -3.6864575104691117,
          -7,
          -3.0185756834672515,
          -7,
          -2.971312966338393,
          -2.582874673593952,
          -7,
          -7,
          -7,
          -3.305852740224386,
          -3.3763335866484043,
          -3.7424108805804925,
          -3.711132072306842,
          -3.394568410965853,
          -7,
          -7,
          -3.404149249209695,
          -3.6854730197227594,
          -7,
          -3.203576774977973,
          -7,
          -3.669967369908504,
          -3.830793899704099,
          -3.0486405033272277,
          -3.6608873599424494,
          -7,
          -3.5275654607077214,
          -3.21923513401367,
          -3.285482294847141,
          -7,
          -7,
          -7,
          -3.1479235389806064,
          -7,
          -3.404320467221731,
          -3.320613576530592,
          -3.3680078052211746,
          -2.9328425922848016,
          -3.414137362184477,
          -3.3246253644997976,
          -7,
          -7,
          -7,
          -3.4398850808173016,
          -3.714212366993632,
          -7,
          -7,
          -3.0757293997408985,
          -3.910304168068569,
          -3.1894903136993675,
          -7,
          -7,
          -3.9577030415488315,
          -2.998520882835038,
          -2.8704282921999926,
          -2.797959643737196,
          -3.539452491549461,
          -7,
          -7,
          -3.8066208304825055,
          -3.3748399596549756,
          -2.8330559979961802,
          -7,
          -3.685024785105714,
          -3.6954816764901977,
          -7,
          -7,
          -3.6720978579357175,
          -2.64407561871382,
          -7,
          -3.710625015060797,
          -3.082111871372628,
          -7,
          -3.2518814545525276,
          -3.2511513431753545,
          -3.0860482372238454,
          -3.1099640296607753,
          -3.7900739484263046,
          -7,
          -7,
          -3.6665179805548807,
          -7,
          -7,
          -7,
          -7,
          -3.2511165453321484,
          -7,
          -2.6811119638274077,
          -3.2578077550334497,
          -3.706888394981618,
          -7,
          -3.72222246396973,
          -7,
          -7,
          -2.6526857769225343,
          -3.131378035763099,
          -3.863382348440788,
          -3.668944734457734,
          -7,
          -7,
          -2.676247950804945,
          -3.6716355966021297,
          -3.7011360660925265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.241172786770047,
          -3.816241299991783,
          -3.711807229041191,
          -3.6760531246518715,
          -7,
          -7,
          -7,
          -7,
          -3.6885088076565213,
          -3.383815365980431,
          -7,
          -3.0020700214018694,
          -7,
          -2.959756672990995,
          -7,
          -7,
          -3.823474229170301,
          -7,
          -7,
          -3.3276561037821124,
          -7,
          -7,
          -3.7710727832211948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.602005701124516,
          -7,
          -7,
          -7,
          -3.4072208929273966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.403635189790548,
          -3.533753906434624,
          -7,
          -7,
          -7,
          -3.324830980134619,
          -3.341895943969397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.00987563371216,
          -3.3120362371917773,
          -7,
          -3.5070458724273257,
          -3.009081707149539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2046060299125667,
          -7,
          -7,
          -7,
          -3.4192947217534604,
          -2.8397921844453293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.534588111892698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7856263829785224,
          -7,
          -7,
          -3.2425414282983844,
          -7,
          -7,
          -3.4000196350651586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6358187213644175,
          -7,
          -7,
          -7,
          -3.388278863459639,
          -3.332337449453026,
          -3.462996612028056,
          -3.3951515915045425,
          -7,
          -3.797521439979663,
          -7,
          -7,
          -7,
          -3.398634324538392,
          -7,
          -7,
          -7,
          -7,
          -3.1556396337597765,
          -3.423737249982329,
          -7,
          -7,
          -3.4483971034577676,
          -7,
          -3.115893909272309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.401572845676446,
          -3.09377178149873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.996803438696495,
          -7,
          -7,
          -7,
          -7,
          -2.882935427564857,
          -7,
          -7,
          -3.400710636773231,
          -2.7456992266025058,
          -3.0363627019845945,
          -7,
          -3.269045709657623,
          -3.869583707713424,
          -7,
          -7,
          -7,
          -3.9092426495998436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1225435240687545,
          -7,
          -7,
          -3.4566696294237573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2450806260854437,
          -7,
          -3.0909630765957314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.381024781409826,
          -7,
          -7,
          -3.0977777345392834,
          -7,
          -2.3551300540393427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0202231262979176,
          -7,
          -2.9636304457595233,
          -7,
          -2.4164892115757675,
          -3.1121020547708906,
          -3.403635189790548,
          -2.842156613741657,
          -7,
          -3.089728533074736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5970366649776535,
          -7,
          -3.4987239707479048,
          -7,
          -7,
          -2.9915273183833317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.220238879934404,
          -7,
          -2.941180036600083,
          -2.17801718009172,
          -7,
          -7,
          -3.5624118329497274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.38431358157012,
          -7,
          -2.8852198251151067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6330642726914992,
          -3.4255342204982635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0111473607757975,
          -3.2648964924204757,
          -3.8775592589857277,
          -3.389343311252078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.103803720955957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4757801114070315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.422917980767662,
          -7,
          -7,
          -7,
          -2.9778378782751416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.85394144588049,
          -2.960470777534299,
          -3.7493626513079716,
          -7,
          -7,
          -7,
          -3.328243652746783,
          -7,
          -3.208441356438567,
          -2.965906915495192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.12434117077496,
          -7,
          -7,
          -7,
          -7,
          -3.402777069610347,
          -2.9146075677710805,
          -3.1879435290625273,
          -7,
          -7,
          -3.5165252041365958,
          -7,
          -7,
          -3.59955559098598,
          -3.392345155361204,
          -7,
          -3.4448251995097476,
          -3.4038066105474227,
          -7,
          -7,
          -2.9331074937869817,
          -7,
          -3.0296542818869807,
          -3.4186326873540653,
          -3.525821952156663,
          -3.038620161949703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4382258076045296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146438135285775,
          -7,
          -7,
          -3.1980152497483316,
          -3.9314419784748638,
          -7,
          -2.753199914199416,
          -3.2098761935936153,
          -3.2166935991697545,
          -7,
          -3.150756439860309,
          -3.40840957846843,
          -2.7218106152125467,
          -2.7400994009248563,
          -7,
          -7,
          -7,
          -7,
          -3.165095874754218,
          -7,
          -7,
          -3.401228167498113,
          -2.7507654498940113,
          -3.1017470739463664,
          -7,
          -7,
          -7,
          -4.0389577711393665,
          -4.463564532213337,
          -4.318418142209945,
          -7,
          -3.764400322956388,
          -7,
          -7,
          -7,
          -4.148949520009529,
          -7,
          -7,
          -7,
          -3.9782444462250335,
          -4.340582908247528,
          -3.95432292689755,
          -7,
          -7,
          -4.071219018399975,
          -4.084325995016827,
          -4.631971096240407,
          -4.011443562022075,
          -5.109186931698511,
          -3.985695859689842,
          -7,
          -7,
          -7,
          -7,
          -4.483515978390542,
          -7,
          -4.4221711002794475,
          -7,
          -3.0489163245115374,
          -7,
          -7,
          -7,
          -4.290568798984483,
          -7,
          -4.39084682689535,
          -7,
          -7,
          -2.8318697742805017,
          -3.5967729767595324,
          -3.203071758751761,
          -3.4081834128693056,
          -3.469380135849925,
          -7,
          -7,
          -3.3657686880021926,
          -2.1429618407415725,
          -2.32871929409501,
          -7,
          -2.949200198545658,
          -2.4287345655395307,
          -7,
          -3.034685740076159,
          -7,
          -2.9444826721501687,
          -7,
          -7,
          -7,
          -7,
          -3.2809808919291505,
          -3.609589963108257,
          -4.48000406682523,
          -2.9339931638312424,
          -1.8838220767244906,
          -3.418135498425232,
          -2.9261708904385917,
          -3.840482487213442,
          -4.174965460984311,
          -3.796851749049887,
          -3.8344207036815328,
          -7,
          -7,
          -3.0120283186865047,
          -7,
          -7,
          -2.7822771281099112,
          -3.4554539687786283,
          -3.5209810814192983,
          -3.214755567839669,
          -7,
          -2.518801729103482,
          -3.208609290581607,
          -3.515741416669365,
          -3.257073500468536,
          -7,
          -2.662967585118109,
          -7,
          -3.4952667443878105,
          -7,
          -2.7091002815511667,
          -7,
          -7,
          -7,
          -3.301572524756275,
          -3.4176377396522297,
          -3.0560150335589764,
          -7,
          -7,
          -3.1253004979635812,
          -7,
          -2.649497120803289,
          -3.403120521175818,
          -3.13956426617585,
          -7,
          -3.5364321758220134,
          -3.205610309902521,
          -7,
          -7,
          -7,
          -3.591064607026499,
          -7,
          -7,
          -7,
          -3.421027775667483,
          -7,
          -7,
          -7,
          -3.4274861090957858,
          -7,
          -3.109867691044164,
          -7,
          -3.398981066658131,
          -7,
          -3.361453955329276,
          -4.156776233418996,
          -7,
          -7,
          -2.4448251995097476,
          -7,
          -3.121067167467729,
          -7,
          -3.1065308538223815,
          -2.68556261115823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388988785124714,
          -7,
          -3.11277252110537,
          -3.22219604630172,
          -7,
          -7,
          -3.1061908972634154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6032990634435107,
          -3.0973777355179872,
          -7,
          -7,
          -7,
          -7,
          -4.027104865879351,
          -1.9538976944296247,
          -3.8684680990209865,
          -7,
          -7,
          -3.44544851426605,
          -7,
          -7,
          -7,
          -2.890909813992527,
          -3.182414652434554,
          -3.1707016558160697,
          -2.618280588410313,
          -3.5060989599284405,
          -3.6971421262754594,
          -7,
          -3.034800284315753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.319439203046049,
          -7,
          -7,
          -7,
          -4.05715240481542,
          -7,
          -4.053808059920658,
          -2.6562409647638097,
          -7,
          -3.4089180208467798,
          -7,
          -7,
          -7,
          -2.745855195173729,
          -3.033959590819456,
          -7,
          -7,
          -3.1089031276673134,
          -7,
          -3.311674409676095,
          -3.1007150865730817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.807196660710947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.426673888021373,
          -7,
          -2.199295849360945,
          -3.137274968868117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6531714437973566,
          -7,
          -7,
          -3.571941635074462,
          -7,
          -7,
          -7,
          -7,
          -2.837114748515506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6254839394069043,
          -2.2975079898311006,
          -3.123815357539862,
          -2.5634810853944106,
          -7,
          -7,
          -1.4192204025471138,
          -3.2214142378423385,
          -7,
          -7,
          -7,
          -3.0232524596337114,
          -7,
          -2.54883401242041,
          -3.31694832926197,
          -7,
          -3.215108581053093,
          -3.0329990831515152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.432969290874406,
          -3.330470142287151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7309436934277356,
          -7,
          -7,
          -7,
          -3.058227126133445,
          -7,
          -3.144262773761991,
          -7,
          -7,
          -3.414137362184477,
          -2.8109042806687006,
          -7,
          -7,
          -7,
          -2.975431808509263,
          -2.6924944075030846,
          -7,
          -7,
          -3.5524248457040857,
          -3.12205196263325,
          -7,
          -3.4119562379304016,
          -7,
          -3.4708513245261177,
          -3.540454613671412,
          -7,
          -7,
          -7,
          -3.035496444963253,
          -7,
          -7,
          -7,
          -7,
          -3.037924256713626,
          -7,
          -7,
          -3.485863329597335,
          -2.797890483058349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4674601095072637,
          -7,
          -3.4974825373673704,
          -1.5574902574651688,
          -7,
          -7,
          -1.9356806163177214,
          -2.5025788385822736,
          -3.11143055176598,
          -7,
          -7,
          -7,
          -3.1089031276673134,
          -2.5080244315589613,
          -2.2891771688689815,
          -7,
          -2.8062769038987865,
          -7,
          -7,
          -7,
          -3.4818724103106633,
          -7,
          -7,
          -3.4274861090957858,
          -7,
          -7,
          -3.1082266563749283,
          -7,
          -7,
          -7,
          -4.141481129270804,
          -7,
          -7,
          -2.934834983210739,
          -3.155336037465062,
          -1.7294347893793671,
          -7,
          -3.0523090996473234,
          -2.0247711295330606,
          -3.41077723337721,
          -7,
          -7,
          -3.9097775515524833,
          -7,
          -3.218010042984363,
          -3.5399538416563967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3623316518700257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2493818233440925,
          -3.0909630765957314,
          -7,
          -2.531052929286764,
          -3.4219328132785085,
          -2.9307962629833004,
          -7,
          -7,
          -7,
          -3.211031500871904,
          -7,
          -7,
          -7,
          -7,
          -3.006496603769381,
          -7,
          -7,
          -7,
          -2.9714304844819157,
          -7,
          -7,
          -3.50745106090197,
          -3.4641913706409997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1336167877718255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4153072922255676,
          -7,
          -3.604657972047871,
          -7,
          -3.678108473882829,
          -7,
          -3.2113875529368587,
          -2.8582894438957243,
          -7,
          -7,
          -3.4614985267830187,
          -7,
          -7,
          -7,
          -3.447778009294621,
          -7,
          -7,
          -7,
          -7,
          -3.570659670021534,
          -7,
          -7,
          -7,
          -2.531478917042255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.446614823664267,
          -3.2811243094492752,
          -7,
          -7,
          -7,
          -3.4753805931433615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.532117116248804,
          -7,
          -2.722633922533812,
          -2.9857631799909927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.158724253450531,
          -7,
          -3.625273856727731,
          -7,
          -7,
          -7,
          -7,
          -1.3660182950222062,
          -2.6723617865259754,
          -2.9740509027928774,
          -2.869349080759093,
          -7,
          -3.406028944963615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4369573306694496,
          -7,
          -7,
          -7,
          -3.428134794028789,
          -7,
          -3.222282827095675,
          -7,
          -7,
          -7,
          -3.1995317172630013,
          -7,
          -7,
          -3.4271614029259654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2434101416537113,
          -7,
          -2.9138138523837167,
          -7,
          -3.236367018022369,
          -2.922595721029815,
          -7,
          -7,
          -7,
          -1.7392149424344683,
          -3.480581786829169,
          -7,
          -7,
          -3.449169732165201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4163075870598827,
          -3.2742733377584177,
          -2.229809782952539,
          -3.604079865575918,
          -7,
          -7,
          -3.2106906559695236,
          -7,
          -7,
          -3.161368002234975,
          -7,
          -3.510813010512496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4316853446860116,
          -7,
          -3.5390760987927767,
          -7,
          -3.671913012441587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464534256300944,
          -7,
          -7,
          -3.834325313744794,
          -4.75159469981361,
          -7,
          -7,
          -4.2999102450746784,
          -4.3768779392470645,
          -4.34104523285067,
          -4.432632622254583,
          -7,
          -7,
          -4.372930404888793,
          -7,
          -4.632679950216724,
          -7,
          -4.410426282868454,
          -7,
          -4.801225290173022,
          -7,
          -7,
          -4.6485161337405545,
          -4.484513374292612,
          -7,
          -4.246638070980783,
          -7,
          -4.305673745669693,
          -7,
          -4.239499684031626,
          -7,
          -7,
          -7,
          -4.39208111979816,
          -7,
          -3.359949256382866,
          -2.761301241165817,
          -3.4513258084895195,
          -3.873862888966365,
          -3.5883277412249504,
          -3.4795753101749884,
          -3.8317418336456384,
          -7,
          -2.551614188051973,
          -3.321184027302314,
          -7,
          -2.9711211579147765,
          -3.252610340567373,
          -2.78686967796165,
          -7,
          -3.5833121519830775,
          -7,
          -7,
          -7,
          -4.246843122251319,
          -7,
          -7,
          -3.3548241031327466,
          -2.755808015428896,
          -4.032995569091898,
          -7,
          -7,
          -7,
          -3.254779622985036,
          -7,
          -3.7772769564795263,
          -3.5005109105263372,
          -7,
          -7,
          -3.835563751669097,
          -3.6171751426857073,
          -3.5484303680628813,
          -7,
          -3.227050718827332,
          -3.761927838420529,
          -3.619771386161673,
          -7,
          -7,
          -3.166358649407166,
          -3.174585324070688,
          -3.223625716693796,
          -3.701750221946291,
          -7,
          -7,
          -7,
          -3.622697454895568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.905508053677255,
          -7,
          -2.84248442441157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9218944709291024,
          -7,
          -4.174127676084932,
          -3.2149762347220667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.137354111370733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.663503045519445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.99370069482035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5324995860946626,
          -7,
          -7,
          -7,
          -3.4260230156898763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8341450755684536,
          -7,
          -7,
          -7,
          -7,
          -4.02995164203684,
          -7,
          -3.8725641430906514,
          -7,
          -7,
          -3.456214155357989,
          -7,
          -7,
          -7,
          -2.895767744755542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5121505369220305,
          -3.8845688149183335,
          -3.84060787900929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.030559245291156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.456821348021599,
          -7,
          -7,
          -3.409087369447835,
          -3.4219328132785085,
          -7,
          -3.7397568869831948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.484157424365381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5413295776666933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.027512692448811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9638161499751687,
          -3.1383026981662816,
          -7,
          -7,
          -2.9512403503243405,
          -3.0723418215173193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.691289562306325,
          -7,
          -7,
          -3.1300119496719043,
          -3.8800872563019415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8830933585756897,
          -7,
          -7,
          -2.7965743332104296,
          -4.043676585602717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.965906915495192,
          -2.834738518903841,
          -7,
          -7,
          -7,
          -2.8549130223078554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.045674966769105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.03342375548695,
          -7,
          -7,
          -2.991994404486493,
          -2.9749719942980692,
          -7,
          -7,
          -7,
          -7,
          -2.3242824552976926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.076130494543006,
          -7,
          -7,
          -7,
          -7,
          -2.542514216281654,
          -7,
          -2.723221045080855,
          -3.157456768134226,
          -2.806179973983887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7383958575537897,
          -7,
          -7,
          -2.7649229846498886,
          -7,
          -7,
          -3.2363692883742803,
          -7,
          -2.531052929286764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9951962915971793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.089975722687729,
          -7,
          -7,
          -7,
          -2.9434945159061026,
          -7,
          -7,
          -3.1078880251827985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1870934679310956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0184924534014725,
          -7,
          -3.8806992892187013,
          -7,
          -7,
          -3.211645201640165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.937768567049936,
          -7,
          -3.403120521175818,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.216045881701589,
          -4.071486177340895,
          -7,
          -7,
          -7,
          -2.720572720364261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1509098737011216,
          -2.8102325179950842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0066757349199578,
          -7,
          -3.9007766472930405,
          -7,
          -7,
          -7,
          -7,
          -2.401055725771844,
          -2.3550682063488506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.044539760392411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4877038631637265,
          -7,
          -7,
          -7,
          -3.8330727036452936,
          -2.569958818096594,
          -7,
          -3.483515978390541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7375832559402493,
          -7,
          -7,
          -7,
          -7,
          -2.597146487833695,
          -3.037027879755775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.249504090935526,
          -3.607431015117042,
          -7,
          -7,
          -4.549861188471943,
          -3.1556396337597765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.154423973114647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4413808849165113,
          -7,
          -7,
          -7,
          -7,
          -4.277655047714709,
          -2.9916690073799486,
          -4.434696618924666,
          -7,
          -3.731427587050948,
          -4.404577167740624,
          -3.3558663952923395,
          -7,
          -3.746244871720198,
          -7,
          -7,
          -4.504185316870708,
          -3.7013261633598793,
          -4.2868829198267875,
          -7,
          -4.35475171759385,
          -7,
          -7,
          -7,
          -4.023585085498241,
          -7,
          -4.4866925351069185,
          -7,
          -7,
          -4.62921585647718,
          -7,
          -7,
          -4.008583140271812,
          -7,
          -4.5854268870614865,
          -7,
          -7,
          -7,
          -4.246966106558744,
          -7,
          -7,
          -4.395693247503584,
          -3.1332651070696262,
          -7,
          -4.098816717048941,
          -7,
          -3.7647737169110402,
          -1.5487493628768414,
          -3.1112251630263263,
          -7,
          -3.4684334914047827,
          -7,
          -7,
          -7,
          -3.5494937132150133,
          -3.7350397050337207,
          -7,
          -3.456897187449348,
          -7,
          -7,
          -2.695231434776617,
          -7,
          -7,
          -7,
          -7,
          -3.358016473630128,
          -4.2193108595141835,
          -7,
          -7,
          -7,
          -4.314499227973151,
          -7,
          -4.944048160376151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5848963441374497,
          -3.8673201445219627,
          -7,
          -7,
          -3.4627294755267726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0519667310983327,
          -7,
          -3.1908917169221698,
          -7,
          -3.4412236742426123,
          -4.006936451364293,
          -3.1734776434529945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.828015064223977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.504470862494419,
          -4.4747697096158685,
          -4.6448716831351105,
          -3.465500254778325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9995654882259823,
          -7,
          -3.0170333392987803,
          -7,
          -7,
          -3.7330366829335797,
          -7,
          -3.362293937964231,
          -7,
          -7,
          -7,
          -3.168202746842631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.877563299235066,
          -7,
          -7,
          -3.702085721435825,
          -2.9800033715837464,
          -3.906453567547994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4409090820652177,
          -7,
          -2.906335041805091,
          -7,
          -7,
          -7,
          -7,
          -3.3394514413064407,
          -7,
          -7,
          -3.7515100502700416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3016809492935764,
          -7,
          -7,
          -3.977700747083,
          -3.1571544399062814,
          -7,
          -3.0470800728162564,
          -3.84397984447816,
          -7,
          -3.975615597966895,
          -4.290591042549338,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.463534660185131,
          -7,
          -7,
          -7,
          -7,
          -3.0051805125037805,
          -7,
          -7,
          -2.6887163699704657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.700963178159549,
          -3.258397804095509,
          -7,
          -7,
          -7,
          -7,
          -2.806179973983887,
          -7,
          -4.287241711178348,
          -7,
          -7,
          -7,
          -3.212453961040276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2969940766702086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6050894618815805,
          -3.1559430179718366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5993371329924893,
          -3.586812269443376,
          -7,
          -7,
          -4.032549691831266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.257570587678587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.557847927224487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.079904467666721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.727378569451489,
          -7,
          -7,
          -7,
          -7,
          -3.302114376956201,
          -7,
          -7,
          -7,
          -3.9171640314290026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.262978146205194,
          -2.7101173651118162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7244806771885997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.773925686560425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4219328132785085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.126115165579008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8253704710918672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.915610862661467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304275050477128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0791812460476247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9222062774390163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305673745669693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.252832234257769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.473389638266334,
          -7,
          -4.478758831505713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.269933025967809,
          -7,
          -7,
          -7,
          -4.049683089088249,
          -7,
          -3.5009097804074516,
          -7,
          -7,
          -7,
          -4.138334282071019,
          -3.699143687394484,
          -7,
          -7,
          -3.1370374547895126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.35324283143373,
          -3.7007629061106853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163712841181165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4194600727860704,
          -7,
          -4.303455260341883,
          -7,
          -2.2900346113625183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.087722277824171,
          -3.3581252852766488,
          -7,
          -7,
          -2.9969929818907057,
          -3.4064124279747596,
          -7,
          -7,
          -7,
          -3.8264635490928014,
          -7,
          -2.9365451573208112,
          -3.989672247623873,
          -7,
          -7,
          -3.3302481843706953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.147078307006692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3990440809475486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4372747974101237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8455940931600243,
          -7,
          -7,
          -7,
          -3.5204311260215415,
          -7,
          -7,
          -7,
          -7,
          -2.6173314844704563,
          -7,
          -7,
          -7,
          -3.7486918264884537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.848569762828942,
          -3.5060989599284405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7846885995014214,
          -7,
          -3.302330928684399,
          -7,
          -7,
          -7,
          -3.8175653695597807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8000981801747757,
          -3.9391696796251776,
          -7,
          -7,
          -7,
          -7,
          -3.5359899528769274,
          -7,
          -3.661954588653016,
          -3.566154548823162,
          -7,
          -7,
          -7,
          -3.5021538928713607,
          -7,
          -3.835246539996311,
          -3.5441921107650325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.027186461836736,
          -7,
          -2.9307962629833004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.404393825711008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8041394323353503,
          -7,
          -7,
          -7,
          -3.788168371141168,
          -3.3754002144995283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.639021399134131,
          -7,
          -3.832061614590727,
          -3.6427694415679754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5018121170750933,
          -3.792181496149679,
          -7,
          -3.082066934285113,
          -7,
          -7,
          -7,
          -3.5481129050651687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.897791981939225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7198962835797453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6182050422592695,
          -7,
          -7,
          -7,
          -3.7854010249923875,
          -7,
          -7,
          -4.031448861859383,
          -3.8027737252919755,
          -3.079741264799503,
          -7,
          -7,
          -7,
          -3.9999565683801928,
          -7,
          -7,
          -7,
          -3.5589484459780394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8048887446223913,
          -7,
          -7,
          -3.7960884286806684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188243942455559,
          -3.4924111373136824,
          -7,
          -3.1594543943545212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1086943298492145,
          -7,
          -7,
          -7,
          -7,
          -3.070037866607755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7963661549775214,
          -7,
          -7,
          -7,
          -7,
          -3.471936804594729,
          -3.6202401898458314,
          -3.153976644053331,
          -7,
          -7,
          -2.9035368248903057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7951149856303634,
          -7,
          -3.8449118739121406,
          -7,
          -7,
          -7,
          -7,
          -3.4447334600751223,
          -3.1669161974037845,
          -3.5425053212702986,
          -7,
          -7,
          -7,
          -7,
          -3.6440867345657413,
          -3.286195614804735,
          -7,
          -3.521556479191024,
          -2.5942719800021083,
          -4.106921475168692,
          -4.0627198336125625,
          -3.883803338269372,
          -4.0939292328222185,
          -3.0337682969424686,
          -3.7509795462660587,
          -7,
          -3.411479407308512,
          -3.5399538416563967,
          -3.576910381921401,
          -3.0812490844673115,
          -3.0682444670336,
          -7,
          -3.605024765730024,
          -3.9826781933834843,
          -3.9300061034825893,
          -7,
          -3.496345278086235,
          -3.875736307687334,
          -4.041027329343209,
          -4.062506775208683,
          -4.018970808600747,
          -4.08188713942355,
          -4.063126860458549,
          -3.932042300059813,
          -3.3707597427257125,
          -3.3677715207203325,
          -3.5737995822157407,
          -7,
          -3.731659261815723,
          -3.812462124192689,
          -4.052693941924968,
          -3.8165064370463573,
          -3.756154136574281,
          -7,
          -2.956307194643153,
          -4.076385543954533,
          -7,
          -7,
          -3.448087666692341,
          -3.3383369465610726,
          -7,
          -3.5719804234888946,
          -7,
          -7,
          -7,
          -3.627017461878423,
          -7,
          -7,
          -3.8520528086978505,
          -3.2810247868116487,
          -3.17583819826466,
          -7,
          -7,
          -7,
          -4.067517201903676,
          -3.2439883200147483,
          -3.367849580426129,
          -3.994361151908001,
          -4.237267189503993,
          -7,
          -7,
          -3.9021117234480043,
          -4.092668021001432,
          -7,
          -4.0124153747624325,
          -3.969276095488932,
          -7,
          -3.629817196018516,
          -7,
          -3.433223740977953,
          -3.849644590644391,
          -3.837967018368655,
          -4.2116366158122185,
          -7,
          -7,
          -7,
          -3.9064158583202704,
          -7,
          -7,
          -7,
          -7,
          -4.247334850657456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.194042327886423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.207131483023054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.933284772348695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4022957806553165,
          -7,
          -7,
          -2.990733398972723,
          -7,
          -4.086324231307385,
          -7,
          -7,
          -7,
          -3.8590782247469693,
          -7,
          -7,
          -7,
          -3.928037206406883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.959566046637928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.506843136339351,
          -3.4483455459718755,
          -7,
          -7,
          -7,
          -7,
          -3.6766021695820186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.748226801568246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.38868721020124,
          -7,
          -7,
          -7,
          -4.421965688225113,
          -7,
          -7,
          -3.92069713446992,
          -3.5880101174205477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9413623357117613,
          -7,
          -7,
          -7,
          -4.301420684913891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3058885302843097,
          -7,
          -7,
          -3.9180827846421873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -4.658135463071869,
          -7,
          -7,
          -7,
          -7,
          -3.6266482684740105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.032163854463103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9432471251378618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6483600109809315,
          -7,
          -4.517815875902376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.507180977260241,
          -7,
          -7,
          -7,
          -7,
          -4.735981931751734,
          -7,
          -2.9410142437055695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7709256146389993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727679493568708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7234556720351857,
          -7,
          -7,
          -7,
          -2.91539983521227,
          -2.811304977239847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1099158630237933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7558748556724915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.710625015060797,
          -7,
          -7,
          -7,
          -4.606004956819436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.625312450961674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9474337218870508,
          -7,
          -5.432919608590166,
          -7,
          -7,
          -4.242665636645263,
          -7,
          -7,
          -7,
          -1.6812412373755874,
          -2.428674625648206,
          -3.4149733479708178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0115704435972783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.101131616599028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.579772167664273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.570204244943991,
          -4.301225384221708,
          -3.424718337331567,
          -7,
          -7,
          -7,
          -4.240661551299707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.67833624673218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.302731264944306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.589055531052344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.467460109507264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.356752262147557,
          -7,
          -7,
          -7,
          -7,
          -3.3218054838575393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5760878417849495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.555799554003604,
          -7,
          -7,
          -7,
          -1.863322860120456,
          -7,
          -2.100370545117563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.041392685158225,
          -7,
          -2.0043213737826426,
          -7,
          -7,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -7,
          -4.024321442141565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.215558257141162,
          -1.8920946026904806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.0314084642516241,
          -1.3679767852945943,
          -2.6138418218760693,
          -7,
          -4.056256735850139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.093981703914113,
          -7,
          -7,
          -7,
          -4.434656712055763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.258876629372131,
          -7,
          -7,
          -7,
          -7,
          -3.773022142436208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1920095926536702,
          -7,
          -7,
          -7,
          -7,
          -3.6694656497657867,
          -7,
          -7,
          -7,
          -7,
          -2.7944880466591697,
          -2.9661417327390325,
          -7,
          -2.354108439147401,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.679836558918098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1489109931093564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0043213737826426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9708116108725178,
          -7,
          -2.575187844927661,
          -7,
          -7,
          -7,
          -7,
          -1.662757831681574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.296665190261531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.4328635088568635,
          -7,
          -7,
          -4.543285609880379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.107718610520263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.04688519083771,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.002166061756508,
          -7,
          -7,
          -3.120491670672996,
          -7,
          -7,
          -7,
          -7,
          -3.7721749608246142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2460059040760294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.478645844479148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4072208929273966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5820633629117085,
          -7,
          -7,
          -7,
          -7,
          -3.6610550848533787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6144753660903954,
          -3.6174197467371765,
          -7,
          -3.0791812460476247,
          -3.310722009900572,
          -7,
          -2.722633922533812,
          -7,
          -2.4771212547196626,
          -2.741939077729199,
          -7,
          -3.959863863555982,
          -7,
          -7,
          -7,
          -7,
          -2.4002500911501117,
          -7,
          -2.486430478854434,
          -7,
          -2.665580991017953,
          -7,
          -2.8492608615268398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.929418925714293,
          -2.5485941291816783,
          -2.705007959333336,
          -7,
          -3.171433900943008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.834500179293778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6473829701146196,
          -7,
          -7,
          -3.92451188152325,
          -2.6646419755561257,
          -1.9330532103693867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3242824552976926,
          -7,
          -2.4207806195485655,
          -2.791690649020118,
          -2.048108713045591,
          -7,
          -3.160089935812264,
          -2.9003671286564705,
          -7,
          -7,
          -7,
          -7,
          -2.385606273598312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5214286788851048,
          -7,
          -7,
          -7,
          -7,
          -2.683947130751512,
          -2.0773679052841567,
          -2.660865478003869,
          -0.2759571039631571,
          -7,
          -4.070665753453728,
          -7,
          -7,
          -7,
          -2.41161970596323,
          -7,
          -7,
          -2.549738731264899,
          -3.3287192940950106,
          -7,
          -7,
          -7,
          -4.437710935603617,
          -7,
          -2.785329835010767,
          -2.233313461142046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7011360660925265,
          -7,
          -7,
          -2.9951962915971793,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -2.79309160017658,
          -7,
          -7,
          -7,
          -3.3061747446331835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8744818176994666,
          -7,
          -7,
          -2.7611758131557314,
          -7,
          -2.8720267099544015,
          -2.673020907128896,
          -7,
          -7,
          -2.2270292621201366,
          -7,
          -7,
          -7,
          -2.1358138977625867,
          -7,
          -7,
          -7,
          -7,
          -2.0410924859104984,
          -7,
          -7,
          -2.2052043639481447,
          -2.4693310102934105,
          -2.5241796783007557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7299742856995555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0265332645232967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8613352388849425,
          -7,
          -7,
          -7,
          -2.7234556720351857,
          -7,
          -7,
          -2.6613393400060397,
          -7,
          -3.244153372551425,
          -4.451282791695256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.824125833916549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9352192721258945,
          -3.696924008405422,
          -7,
          -7,
          -7,
          -7,
          -2.2355284469075487,
          -1.8717396832852677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6799827766807411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8627275283179747,
          -4.500881123850455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.926342446625655,
          -7,
          -7,
          -2.665580991017953,
          -7,
          -2.05307844348342,
          -1.7928584219256614,
          -2.0969100130080562,
          -7,
          -2.8135809885681917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6864873087113894,
          -2.727947709544797,
          -2.5774917998372255,
          -1.5378190950732742,
          -4.132579847659737,
          -2.7752462597402365,
          -7,
          -3.4727564493172123,
          -7,
          -7,
          -7,
          -7,
          -3.188084373714938,
          -7,
          -3.15259407792747,
          -7,
          -7,
          -7,
          -4.253808605250558,
          -2.401745082237063,
          -2.665580991017953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.416640507338281,
          -7,
          -3.1336985461157765,
          -4.9563509495317035,
          -7,
          -2.363298523016824,
          -7,
          -7,
          -7,
          -2.912753303671323,
          -7,
          -2.5850845541000504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5111403420090934,
          -2.7032913781186614,
          -2.132899769944483,
          -2.2321487062561682,
          -2.334453751150931,
          -7,
          -7,
          -4.620614868774087,
          -4.7493033508713305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3926442017384275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.972063916008022,
          -7,
          -3.795995813767079,
          -2.8022604758937684,
          -1.8729433234927009,
          -7,
          -4.060471192797679,
          -7,
          -3.341558167136101,
          -7,
          -3.2688119037397803,
          -7,
          -4.147150525210071,
          -7,
          -7,
          -7,
          -3.2182728535714475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9960736544852753,
          -3.5828039875901907,
          -7,
          -7,
          -7,
          -7,
          -4.312928045193233,
          -7,
          -7,
          -3.0257153839013404,
          -7,
          -7,
          -7,
          -4.0147304950017535,
          -4.281896550246061,
          -7,
          -3.3680078052211746,
          -2.7212215815105543,
          -3.2604887781968306,
          -2.616850455189505,
          -2.82020145948564,
          -3.6073477767684134,
          -7,
          -3.1020905255118367,
          -7,
          -7,
          -7,
          -3.325207689482919,
          -3.720242018287057,
          -2.815577748324267,
          -7,
          -7,
          -7,
          -7,
          -3.301160264469208,
          -7,
          -7,
          -7,
          -3.4171394097273255,
          -3.301203678722446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1534388209846105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8208579894397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2449892250514107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3332456989619628,
          -7,
          -7,
          -2.7641761323903307,
          -3.121887985103681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.905918148971727,
          -2.9309490311675233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3025473724874854,
          -7,
          -7,
          -3.022943609686901,
          -3.0136796972911926,
          -2.978180516937414,
          -7,
          -7,
          -7,
          -2.765668554759014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318084214003265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.68103007067304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9845273133437926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7649229846498886,
          -7,
          -3.3935752032695876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7763833355374703,
          -7,
          -7,
          -7,
          -3.7983052820219765,
          -2.254534650373201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.10452978752546,
          -7,
          -7,
          -2.7197454925295768,
          -3.1996824306402645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6302696332736275,
          -7,
          -3.381656482585787,
          -7,
          -7,
          -7,
          -7,
          -3.4102709642521845,
          -7,
          -7,
          -3.386320573894046,
          -4.077803798076088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.262094964674063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.524266268766979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.273417994771454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3707597427257125,
          -3.4396484295634737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4369573306694496,
          -7,
          -7,
          -3.2645817292380777,
          -3.2142844367533643,
          -7,
          -7,
          -7,
          -3.975768696456831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.454501860531497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.381024781409826,
          -3.211031500871904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3710678622717363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4899584794248346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.556122290708796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.890867938811441,
          -7,
          -3.3710678622717363,
          -7,
          -7,
          -2.6804688266371786,
          -7,
          -3.448087666692341,
          -7,
          -3.45408227073109,
          -3.1705550585212086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.336059277866349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.627263416568221,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.458788881710845,
          -7,
          -3.0382226383687185,
          -4.378067663160357,
          -7,
          -7,
          -7,
          -2.9787889856630807,
          -7,
          -7,
          -2.639154332860882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7126497016272113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.66661156841903,
          -2.424881636631067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.373095987078727,
          -7,
          -3.924770174906564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5020172148271476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7849126306122294,
          -7,
          -7,
          -3.4202308796246506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7075599572840225,
          -7,
          -7,
          -7,
          -7,
          -3.229681842317676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7467898321526123,
          -7,
          -3.905016084650832,
          -7,
          -7,
          -3.7262147396149374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9116901587538613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8622606143926705,
          -4.287032452247534,
          -7,
          -7,
          -2.6614370567346723,
          -7,
          -7,
          -3.656146134740865,
          -3.796250457270067,
          -7,
          -3.811507979945327,
          -4.122412495411281,
          -3.157667357356373,
          -3.1635588985580028,
          -3.254048322829027,
          -4.325659309801641,
          -2.919601023784111,
          -3.4964591381210437,
          -3.6050175766737853,
          -3.728160944936087,
          -3.5317343092765503,
          -2.6856094356904237,
          -3.9831299247347003,
          -4.101327694887568,
          -3.3011230487976233,
          -3.5178026940930205,
          -3.744048379071207,
          -3.637432544117484,
          -7,
          -3.4671968807807247,
          -4.275886960301226,
          -2.6951464433728933,
          -3.4431959097719598,
          -3.0050542751160636,
          -7,
          -3.288897276322566,
          -3.4292030104137097,
          -3.787672964687493,
          -3.522851601026952,
          -3.4520932490177314,
          -7,
          -4.295292143016351,
          -3.6494711629423424,
          -3.1828709639889086,
          -7,
          -7,
          -7,
          -3.6151431060686856,
          -7,
          -7,
          -3.0642707529740063,
          -3.726618553914196,
          -3.2573785441270937,
          -7,
          -3.399846712712922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.785498892166861,
          -3.731519696167285,
          -7,
          -3.6131015169669127,
          -7,
          -3.5547717329908126,
          -7,
          -4.475748647544665,
          -2.946943270697825,
          -4.1336985461157765,
          -7,
          -7,
          -7,
          -4.3241795297179,
          -7,
          -3.343867921696387,
          -7,
          -7,
          -3.6871721045948,
          -7,
          -3.627847001305857,
          -3.3330440298234874,
          -7,
          -4.654927001082143,
          -7,
          -2.9130717403092508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3679767852945943,
          -3.1231980750319988,
          -7,
          -7,
          -7,
          -7,
          -3.600791448229794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.649879819144556,
          -7,
          -7,
          -7,
          -3.5883837683787276,
          -7,
          -7,
          -7,
          -3.1631613749770184,
          -3.717504074764202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1741567592784814,
          -7,
          -7,
          -4.500318823746387,
          -3.3397069170049827,
          -3.3778903218424934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8582965245338854,
          -7,
          -3.31270614559789,
          -7,
          -7,
          -7,
          -7,
          -4.0731866097643925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9894498176666917,
          -7,
          -3.7272052047543145,
          -7,
          -7,
          -7,
          -7,
          -3.5474875414068956,
          -7,
          -3.8651039746411278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3135860326080175,
          -7,
          -7,
          -7,
          -7,
          -3.6921416093667836,
          -7,
          -3.8773137433122384,
          -3.83257277484618,
          -7,
          -7,
          -7,
          -7,
          -3.7160659777452225,
          -7,
          -7,
          -3.6062738531699883,
          -2.8373971106488654,
          -7,
          -4.05161552300499,
          -4.0279812200433875,
          -3.90080393481037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.404063614883892,
          -7,
          -7,
          -7,
          -3.514441490246763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024916464556482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.188103149551257,
          -7,
          -7,
          -7,
          -3.3738311450738303,
          -3.6977522741677546,
          -7,
          -3.0965624383741357,
          -7,
          -7,
          -7,
          -2.8561244442423,
          -3.6578204560156973,
          -7,
          -7,
          -2.3462839237339175,
          -7,
          -2.9694159123539814,
          -7,
          -7,
          -2.678518379040114,
          -3.0128372247051725,
          -3.452553063228925,
          -2.9845273133437926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203091193315651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -3.3234583668494677,
          -3.059108817913594,
          -7,
          -2.977266212427293,
          -2.797959643737196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.151905874537198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6334684555795866,
          -7,
          -3.140193678578631,
          -3.934826573088993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5616975326539935,
          -7,
          -2.776701183988411,
          -7,
          -3.0497605517624757,
          -7,
          -2.957607287060095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.449169732165201,
          -7,
          -7,
          -7,
          -3.131297796597623,
          -7,
          -7,
          -7,
          -2.6459132750338443,
          -2.3560258571931225,
          -7,
          -7,
          -2.7770641547424293,
          -3.039017321997412,
          -2.8801344764553045,
          -7,
          -7,
          -7,
          -7,
          -2.9175055095525466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.028571252692538,
          -3.5956143061554546,
          -7,
          -2.430290106054924,
          -2.9506082247842307,
          -3.0874264570362855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.733277533932582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.79309160017658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8673288131610093,
          -7,
          -7,
          -2.972665592266111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.061829307294699,
          -7,
          -2.628729419665481,
          -7,
          -7,
          -2.893818027711187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -3.068556895072363,
          -7,
          -3.8950355974523228,
          -7,
          -7,
          -3.074121305906298,
          -7,
          -7,
          -7,
          -3.111262513659065,
          -7,
          -7,
          -3.0507663112330423,
          -7,
          -7,
          -2.9912260756924947,
          -7,
          -3.3098430047160705,
          -7,
          -2.9355072658247128,
          -7,
          -3.950364854376123,
          -7,
          -2.967079734144497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6896048008603892,
          -3.1151665612324684,
          -4.306382132150198,
          -2.924795995797912,
          -7,
          -7,
          -3.1166077439882485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -3.4130062226831868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188365926063148,
          -3.3418300569205104,
          -7,
          -7,
          -7,
          -3.4129642719966626,
          -7,
          -3.043440876244474,
          -7,
          -3.904242052299247,
          -2.9474337218870508,
          -7,
          -7,
          -2.5984257066728684,
          -7,
          -7,
          -2.5407464642438433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7641761323903307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2210228052048415,
          -2.564961804462294,
          -7,
          -7,
          -3.1985302053792193,
          -7,
          -7,
          -3.2000292665537704,
          -7,
          -7,
          -2.591435640352701,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0051805125037805,
          -3.9241551841945124,
          -2.4427409988358755,
          -7,
          -7,
          -7,
          -7,
          -2.080495299945456,
          -7,
          -7,
          -2.752432609261474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7752462597402365,
          -2.967547976218862,
          -3.6817385815870307,
          -7,
          -4.229956868102761,
          -7,
          -2.7769431981946755,
          -3.4065280151520345,
          -2.2684739617082585,
          -7,
          -3.0870712059065353,
          -7,
          -3.1936810295412816,
          -2.7459851262089248,
          -2.4450850227193537,
          -7,
          -7,
          -7,
          -2.417969642214737,
          -7,
          -3.009450895798694,
          -7,
          -3.250420002308894,
          -7,
          -2.8767949762007006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9317290081923666,
          -3.323101304852948,
          -7,
          -7,
          -4.281226596668253,
          -7,
          -7,
          -4.404816618075401,
          -7,
          -4.399691023705375,
          -7,
          -7,
          -7,
          -7,
          -4.802677964770796,
          -7,
          -4.011316643366872,
          -7,
          -7,
          -7,
          -4.4599199557469165,
          -7,
          -4.107676246526482,
          -7,
          -4.588294121462958,
          -4.252391803181244,
          -7,
          -7,
          -4.253192569878443,
          -7,
          -7,
          -7,
          -3.990383258906234,
          -2.4055658794489867,
          -3.733678655677088,
          -3.618131808061986,
          -2.782114147479071,
          -2.4245549766067134,
          -4.075473964588946,
          -2.6020599913279625,
          -2.9819287487799087,
          -2.745855195173729,
          -2.309049171376836,
          -3.138021851349023,
          -1.8908315357418142,
          -2.976044137806195,
          -7,
          -3.776991584856405,
          -7,
          -7,
          -7,
          -3.9023293058583186,
          -7,
          -7,
          -3.1103464971511974,
          -3.463987950842169,
          -5.174341876619092,
          -2.987219229908005,
          -3.1051694279993316,
          -3.0038911662369103,
          -3.538814522875754,
          -7,
          -4.468165105160079,
          -7,
          -3.7799570512469063,
          -7,
          -3.7133225049870275,
          -7,
          -4.290969008948517,
          -3.3344537511509307,
          -2.70372115992702,
          -7,
          -3.397418542351348,
          -3.52022143588196,
          -3.0273496077747564,
          -3.1641190727500446,
          -3.570741362455255,
          -7,
          -2.957557406567787,
          -7,
          -2.500716623555479,
          -3.1885535262742306,
          -3.7366354976868212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7165458727270932,
          -3.0025979807199086,
          -3.256958152560932,
          -7,
          -3.4795753101749884,
          -3.0169498130975607,
          -7,
          -7,
          -7,
          -3.824386202318774,
          -7,
          -4.0325683991086905,
          -2.9033613362553186,
          -7,
          -7,
          -3.792461731346951,
          -3.359835482339888,
          -7,
          -7,
          -3.133858125203335,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -3.8702282790117946,
          -7,
          -7,
          -7,
          -3.9483249241899148,
          -4.144418518602069,
          -7,
          -3.1699681739968923,
          -7,
          -7,
          -2.2325726150081295,
          -7,
          -7,
          -3.2113875529368587,
          -7,
          -2.810568529216413,
          -7,
          -7,
          -3.753046561626529,
          -7,
          -3.407900540142635,
          -7,
          -7,
          -7,
          -7,
          -4.34478512263266,
          -7,
          -7,
          -7,
          -7,
          -3.371437317404101,
          -7,
          -7,
          -7,
          -3.08278537031645,
          -3.5919832327066707,
          -7,
          -7,
          -7,
          -7,
          -3.9558800862253753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1878026387184195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.196452541703389,
          -3.7771367125041726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9834909718151668,
          -7,
          -7,
          -7,
          -3.5480821705205963,
          -7,
          -3.5098742850047193,
          -3.8190171986890595,
          -3.204052118841129,
          -7,
          -7,
          -2.973589623427257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.324840768927558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504470862494419,
          -3.4423229557455746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0461047872460387,
          -3.4212747912103465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.622214022966295,
          -3.9918460536448968,
          -7,
          -7,
          -2.8488047010518036,
          -7,
          -7,
          -7,
          -7,
          -3.0588054866759067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9036325160842376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023705042622037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.82020145948564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727272789836275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.643847310299714,
          -7,
          -5.432839463895481,
          -7,
          -7,
          -4.543099108002921,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357105467407888,
          -2.9439888750737717,
          -2.0170333392987803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.896911840826025,
          -7,
          -7,
          -7,
          -4.4001982491921465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557843920244874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334895863011881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3965480379871322,
          -2.2041199826559246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0258381642297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7393085761565885,
          -7,
          -7,
          -7,
          -1.6658935455344326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216785880238395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3142886609474975,
          -7,
          -7,
          -7,
          -2.4771212547196626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.50745106090197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9138138523837167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0977777345392834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2935835134961167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0286607048897425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6698094834789914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.110589710299249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9826329943948497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1398790864012365,
          -7,
          -7,
          -2.461898521729004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.482873583608754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.796709595569177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.919078092376074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.947531745695593,
          -7,
          -5.131889612926185,
          -7,
          -2.718501688867274,
          -4.543745305703089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.113943352306837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3554515201265174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.301268791966063,
          -7,
          -7,
          -7,
          -7,
          -4.5417414500957305,
          -7,
          -7,
          -7,
          -3.8351830698490437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351989455435632,
          -4.502244987676499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153540486438023,
          -7,
          -7,
          -4.302752894232717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9304395947667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9444826721501685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080860884962276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.307496037913213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.181004666040053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2479732663618064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.223628600158525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.697839368218363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7247672456463103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0155502605146522,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7816357178169127,
          -7,
          -2.9425041061680806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.07213956323974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727703883685354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368937374244523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1109262422664203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8920946026904806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5619682391901555,
          -7,
          -7,
          -2.524396122103842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1565491513317814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.74787770581979,
          -7,
          -7,
          -2.325310371711061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.965201701025912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1015179552484096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1318912156692305,
          -7,
          -7,
          -4.242702892223277,
          -1.9628426812012423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.118689787331298,
          -7,
          -1.9344984512435677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.355643050220869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.301290494211371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.352008765565775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.635785235533652,
          -7,
          -7,
          -7,
          -7,
          -4.001690454232153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.734799829588847,
          -2.499687082618404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639974298454951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779827284132608,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.58849580100721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.752432609261474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.959004679486049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.771954748963949,
          -2.470993581501898,
          -3.621003083574573,
          -7,
          -3.769561935848059,
          -2.9380469252711707,
          -3.2007684447831717,
          -3.772101569277012,
          -3.783760695743924,
          -7,
          -2.711526041280055,
          -7,
          -2.8126683008872484,
          -2.6688093294971598,
          -7,
          -3.2518467151626838,
          -2.149791189004268,
          -7,
          -3.596120392892336,
          -7,
          -3.7749911461195644,
          -7,
          -2.796902832645105,
          -2.365983220970808,
          -3.472317546316842,
          -3.7694511794020378,
          -7,
          -2.9616401028869763,
          -3.3032320670786417,
          -7,
          -3.231032454528749,
          -4.069668096911595,
          -3.6423655808449733,
          -7,
          -2.788430262532993,
          -3.467830005178976,
          -3.778766065508379,
          -4.079253622430078,
          -7,
          -7,
          -7,
          -7,
          -3.7719180361289046,
          -3.4704839943156855,
          -7,
          -2.0315147656796184,
          -3.117786691388597,
          -3.7729081949712717,
          -2.1617121341720806,
          -7,
          -7,
          -7,
          -7,
          -3.784759894664005,
          -3.6265456590271294,
          -3.772725002459211,
          -7,
          -7,
          -2.5746589460548055,
          -4.069963937850763,
          -4.069742076041645,
          -4.072323438293041,
          -7,
          -2.271648027535343,
          -3.3872118003137306,
          -2.359984200595567,
          -3.4872798164430687,
          -2.3848440940143085,
          -4.070960915800934,
          -4.076458387712152,
          -4.069631102620343,
          -4.071992407124176,
          -7,
          -7,
          -7,
          -7,
          -2.5915313394539066,
          -3.2989258164621176,
          -2.072417666398705,
          -3.775610448006361,
          -3.605771778568517,
          -3.7876375568784235,
          -2.140778728145066,
          -4.083072412284536,
          -7,
          -7,
          -7,
          -2.95502131363761,
          -7,
          -3.373353433957022,
          -3.4689746837261892,
          -7,
          -3.057539321108782,
          -4.07213956323974,
          -7,
          -7,
          -2.7861833455676335,
          -7,
          -7,
          -3.7746264379339527,
          -3.770631127777807,
          -2.3956294534922296,
          -7,
          -4.070813359702716,
          -3.383815365980431,
          -3.4770126675252215,
          -3.000679233840276,
          -7,
          -4.076786033508079,
          -7,
          -3.178869079308535,
          -3.496895069110507,
          -7,
          -3.130538438197742,
          -2.9040841065189205,
          -4.072029200827922,
          -3.4802585307800777,
          -3.2998340406458584,
          -3.778743066712205,
          -2.092825126714171,
          -3.252610340567373,
          -2.9266167956441933,
          -3.0418231769977724,
          -7,
          -7,
          -4.077476919504343,
          -7,
          -7,
          -3.413697824610152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.813981075636472,
          -2.3551300540393427,
          -3.006496603769381,
          -4.089975722687729,
          -7,
          -3.404393825711008,
          -3.7709256146389993,
          -7,
          -3.3061747446331835,
          -3.3710678622717363,
          -2.8673288131610093,
          -7,
          -3.2935835134961167,
          -4.07213956323974,
          -7,
          -7,
          -4.07018568637838,
          -3.596377143997599,
          -3.381440002819618,
          -7,
          -7,
          -3.3165294629875106,
          -3.23872695603908,
          -2.824920914325174,
          -3.600246650564494,
          -2.7835820252012704,
          -3.472902651803664,
          -3.1694539986517043,
          -1.892923507255603,
          -4.071292733834574,
          -4.070407321740119,
          -7,
          -3.595459477929287,
          -4.0712558776812955,
          -3.7719180361289046,
          -3.2922191399833594,
          -2.5886670891458565,
          -7,
          -3.369864957856229,
          -3.59280571403281,
          -3.6191281284699492,
          -1.7325864900722077,
          -7,
          -4.085004999076652,
          -3.6063455307542247,
          -3.6091317690974987,
          -3.6133484255114983,
          -3.6238692683503024,
          -3.4780973196422216,
          -3.47410694801697,
          -3.1772117398019684,
          -3.3758829915452284,
          -3.596450473585262,
          -3.4130313911501697,
          -7,
          -7,
          -7,
          -2.7394624604624846,
          -7,
          -3.135959092124557,
          -7,
          -3.137775961313472,
          -7,
          -3.595459477929287,
          -7,
          -7,
          -4.078891619840223,
          -7,
          -7,
          -7,
          -4.133379211923518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7723217067229196,
          -4.071219018399975,
          -3.7710727832211948,
          -3.086857915659847,
          -3.3142535565153644,
          -3.325515663363148,
          -3.41253457748711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.078456818053293,
          -7,
          -3.374124860179727,
          -7,
          -7,
          -7,
          -3.7695250201710504,
          -7,
          -7,
          -3.5993007126409307,
          -2.8213087787513165,
          -7,
          -7,
          -7,
          -4.071476967698918,
          -4.073094864515745,
          -3.2280335249267362,
          -7,
          -3.3779979478618998,
          -3.8004421213362565,
          -3.37283838749711,
          -3.3675733244970245,
          -2.583798674353646,
          -7,
          -7,
          -7,
          -4.130237247885229,
          -3.385606273598312,
          -3.1740598077250253,
          -3.381440002819618,
          -3.2906213728473426,
          -7,
          -7,
          -4.0718083918331285,
          -3.240965040063429,
          -3.617245043616472,
          -3.7969557343208025,
          -2.834085909892286,
          -3.4126285205443754,
          -3.769488101355888,
          -4.0709977969934235,
          -7,
          -3.597768293321006,
          -2.9741218253833677,
          -3.4795393214049737,
          -7,
          -2.9630609744865137,
          -4.077186154085896,
          -4.071992407124176,
          -7,
          -4.075875295259833,
          -3.4705942260050717,
          -2.169952718952251,
          -3.189279712637177,
          -3.7806412916269427,
          -3.598097124391873,
          -2.9158519113966404,
          -3.29735921414077,
          -2.605973420133687,
          -3.0056598802090075,
          -7,
          -7,
          -4.082210716601243,
          -3.7719914586957577,
          -2.962064769456804,
          -3.1801975823353392,
          -3.3264724100516823,
          -3.6019152023678274,
          -3.4951626011919386,
          -7,
          -3.025004034678297,
          -2.7179477417489277,
          -7,
          -7,
          -4.0701117827822,
          -3.406335758457056,
          -2.623855025918205,
          -7,
          -7,
          -3.7795964912578244,
          -7,
          -4.0697790608815145,
          -7,
          -2.930257508276295,
          -7,
          -7,
          -2.3386375628096054,
          -7,
          -2.766710207262259,
          -7,
          -3.104187106078922,
          -7,
          -2.158639730841915,
          -2.590952299169162,
          -2.7978558985883404,
          -7,
          -3.7827950003893553,
          -3.7729814503449637,
          -2.1928073248846807,
          -2.2986378584396854,
          -3.32156391196738,
          -7,
          -7,
          -7,
          -2.269800223528476,
          -4.071882007306125,
          -3.77557404291963,
          -3.771440486639912,
          -2.8718818587232695,
          -4.072948031792886,
          -2.518043669683693,
          -7,
          -7,
          -4.423712694379625,
          -4.1300055108623965,
          -7,
          -7,
          -3.504584122237375,
          -7,
          -3.9177680024477564,
          -3.6084428274303924,
          -3.7032649161102507,
          -7,
          -7,
          -3.9922883537970923,
          -3.8004726807059277,
          -3.5739501918571133,
          -4.082833223821198,
          -4.484627216681783,
          -4.079253622430078,
          -3.429005904106777,
          -4.030194785356751,
          -4.2401080739408314,
          -3.592354437456401,
          -3.5264748156360772,
          -4.278181784567518,
          -3.906017616655766,
          -4.067610132912504,
          -3.935053589231065,
          -3.688783739005256,
          -3.7540423867854362,
          -7,
          -3.7520484478194387,
          -4.450726262021876,
          -3.28060463314932,
          -3.096849585224196,
          -3.220059030922857,
          -3.7723950610820003,
          -3.0117667348918755,
          -3.658755264064613,
          -4.052950314117716,
          -4.556724526395461,
          -3.470410490975931,
          -2.6548638255819332,
          -2.812333910950622,
          -2.5203525040833177,
          -2.413789632942366,
          -3.610731120443506,
          -3.1533765391396362,
          -2.8922685640314416,
          -2.2734501064563295,
          -2.282380559390902,
          -2.6553371814315407,
          -2.594186470553561,
          -2.4716023034943726,
          -2.0571977987215453,
          -7,
          -2.9256987611930096,
          -3.413567971273289,
          -7,
          -3.4665117384861452,
          -2.884309756948811,
          -7,
          -3.389059713506695,
          -2.115184637844681,
          -2.578496459283649,
          -3.2906968195221182,
          -7,
          -2.285752937156083,
          -3.1213774364894507,
          -2.194216614222509,
          -7,
          -3.464200143469367,
          -2.810596518420296,
          -2.4033684007191196,
          -7,
          -3.6039829097645595,
          -3.255995726722402,
          -2.95118032364108,
          -4.116242357963335,
          -2.8600656362378873,
          -7,
          -2.739673319684656,
          -3.0731070983354316,
          -3.7771367125041726,
          -2.1944591769417783,
          -2.2783344944909594,
          -4.099611590392529,
          -3.082753465050354,
          -4.105918740286373,
          -3.429719989249435,
          -2.6097067170825574,
          -3.6396657481551746,
          -3.6007188480153314,
          -3.5970366649776535,
          -7,
          -7,
          -3.8913887648758014,
          -3.328501922685259,
          -3.5988269699243727,
          -3.5020855592260456,
          -7,
          -4.143826390839561,
          -2.822474560866872,
          -4.1022621494942735,
          -4.078674273360466,
          -4.072948031792886,
          -3.290455091857383,
          -7,
          -2.8175169990655613,
          -3.3188282441831407,
          -7,
          -7,
          -3.932169245920792,
          -3.643288139836406,
          -7,
          -7,
          -4.0888445627270045,
          -4.163578765188774,
          -7,
          -4.101953177477199,
          -7,
          -7,
          -7,
          -3.5639080503462868,
          -7,
          -7,
          -4.612805041299721,
          -3.1188942981663943,
          -3.7099936168613983,
          -7,
          -4.142045148157744,
          -3.383599959933904,
          -7,
          -3.7760470711817797,
          -7,
          -3.596707029681446,
          -3.850125259486936,
          -7,
          -7,
          -4.19041574703329,
          -4.0717715794167555,
          -3.742148831165734,
          -3.4883391579275007,
          -3.5270173329247743,
          -7,
          -7,
          -7,
          -7,
          -3.916756533209448,
          -7,
          -7,
          -4.0754009555138975,
          -7,
          -4.2545239086857,
          -7,
          -7,
          -7,
          -4.083466785473887,
          -3.0671696446545726,
          -3.482873583608754,
          -7,
          -7,
          -7,
          -4.299790489253733,
          -3.4722077512253953,
          -3.3769417571467586,
          -4.091807597001675,
          -4.078094150406411,
          -3.7812525942484565,
          -4.124504224834283,
          -7,
          -4.07291131585408,
          -2.8892456608929797,
          -7,
          -7,
          -3.748265572668741,
          -7,
          -4.154667377622576,
          -4.096249383189612,
          -3.7505341072033804,
          -4.208360724978379,
          -3.646436403284287,
          -7,
          -7,
          -7,
          -3.4000052274986206,
          -7,
          -7,
          -4.126942717944228,
          -4.205637359479429,
          -4.109443547064349,
          -3.712060142461075,
          -2.8730652846523115,
          -3.9373172477624943,
          -7,
          -7,
          -7,
          -7,
          -3.383240712265224,
          -4.098539897992862,
          -7,
          -7,
          -4.0744873049856905,
          -7,
          -3.066969349796947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.149342299291265,
          -7,
          -4.089127629044278,
          -3.7733841341771543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.078094150406411,
          -4.079940597152362,
          -2.627392810478352,
          -3.868938178332911,
          -7,
          -7,
          -7,
          -3.8384082784941866,
          -7,
          -7,
          -2.892708063453812,
          -7,
          -7,
          -3.4157410362223435,
          -4.159206133646325,
          -7,
          -7,
          -7,
          -3.603865792191225,
          -7,
          -4.179810222878796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.380211241711606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727126283206558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1921677259471775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4191293077419758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576001384625881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.711975854351756,
          -7,
          -7,
          -7,
          -7,
          -2.251638220448212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333850145102545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.164352855784437,
          -3.0354297381845483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.82020145948564,
          -7,
          -7,
          -7,
          -4.517156294823795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.285557309007774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6652056284346006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.07018568637838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426226518098315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1878026387184195,
          -7,
          -7,
          -7,
          -7,
          -3.8912493191278426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2971036501492565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.674952948048565,
          -2.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.009450895798694,
          -2.459392487759231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6020599913279623,
          -7,
          -2.7331972651065692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432839463895481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0439514182632768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.293657141449485,
          -3.163757523981956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.350984143686028,
          -7,
          -7,
          -7,
          -7,
          -2.0086001717619175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603241834260485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.437750562820388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080673376651764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5825178836040625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278227557594742,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.650793039651931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274781122605907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.17856834575881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3357386470050505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2239283760094772,
          -7,
          -7,
          -7,
          -2.4183012913197457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8191050325414984,
          -7,
          -7,
          -7,
          -3.916559219301114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.916256497088509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.021602716028242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.736332747948591,
          -7,
          -2.962369335670021,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.972665592266111,
          -7,
          -7,
          -7,
          -3.596377143997599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7278908290871864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9143960521297863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.681874122128647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.961421094066448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.620757023389678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.949585151326652,
          -7,
          -4.529877701316842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.065093989357153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.172275919805895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.94179954162426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604258461911163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.32376758329678,
          -3.6504046698680317,
          -7,
          -7,
          -7,
          -2.9885589568786157,
          -7,
          -3.6085795148261877,
          -7,
          -7,
          -7,
          -3.556250795965523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.108525229488806,
          -7,
          -2.7745169657285493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2016701796465816,
          -2.762261654333892,
          -7,
          -7,
          -3.137670537236755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.80365790832937,
          -7,
          -7,
          -7,
          -7,
          -3.0362295440862943,
          -2.8915374576725643,
          -7,
          -2.9375178920173464,
          -3.5235383717036526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.977266212427293,
          -7,
          -2.532117116248804,
          -7,
          -3.2900739122522697,
          -2.835056101720116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.210280291360743,
          -2.279894980011638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.76544501809015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5381965783494542,
          -3.8023289442025816,
          -7,
          -7,
          -7,
          -4.737876158125802,
          -7,
          -7,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -7,
          -7,
          -7,
          -3.9698350930757975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9714304844819157,
          -2.9434945159061026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -7,
          -7,
          -3.381440002819618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.688055599800202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7238659644435037,
          -3.495812509045674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1782573208121887,
          -7,
          -2.79309160017658,
          -7,
          -7,
          -3.1835545336188615,
          -7,
          -7,
          -7,
          -3.225154148849806,
          -7,
          -7,
          -7,
          -2.9786369483844743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304801242437977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.08278537031645,
          -7,
          -3.4104397862103464,
          -3.2258259914618934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.700617195682057,
          -7,
          -7,
          -2.569373909615046,
          -7,
          -7,
          -3.630122642859312,
          -3.003029470553618,
          -7,
          -3.1983821300082944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.449324093098727,
          -2.9822712330395684,
          -7,
          -7,
          -4.131394081817373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.253424550927697,
          -7,
          -7,
          -7,
          -7,
          -3.1231980750319988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4169731726030363,
          -4.391876181587,
          -7,
          -7,
          -3.944532020991981,
          -7,
          -7,
          -2.243658026638696,
          -7,
          -7,
          -3.4530123911214554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.101949743219734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.391129260417903,
          -3.66576855071938,
          -2.8048206787211623,
          -4.572976098995143,
          -7,
          -3.7449185424413534,
          -2.9148718175400505,
          -7,
          -3.037824750588342,
          -3.265475722826399,
          -3.3143588613003385,
          -7,
          -7,
          -7,
          -3.7137424784090824,
          -7,
          -3.737907923374639,
          -7,
          -7,
          -7,
          -4.189181397180737,
          -7,
          -7,
          -4.356523002341826,
          -3.7250309035037272,
          -4.69570927120908,
          -7,
          -3.3085644135612386,
          -7,
          -4.311753861055754,
          -7,
          -4.94276183005964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.658774320844357,
          -7,
          -4.160678574400385,
          -7,
          -7,
          -4.129184854827195,
          -7,
          -7,
          -4.634578022853888,
          -7,
          -3.3081373786380386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.742497322199888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.780673676286881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.315760490665735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4776999283321306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.356637647372692,
          -7,
          -7,
          -7,
          -7,
          -3.6217992240026677,
          -7,
          -2.3492775274679554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.478843432329472,
          -7,
          -7,
          -7,
          -2.3138672203691537,
          -1.5740312677277188,
          -7,
          -4.256200420744306,
          -2.2174839442139063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333910543472979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05579865953248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426250931980546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368472838440362,
          -7,
          -7,
          -7,
          -7,
          -2.4835872969688944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8273692730538253,
          -7,
          -7,
          -1.6127838567197355,
          -7,
          -1.8260748027008264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495419442581866,
          -7,
          -7,
          -7,
          -3.2988530764097064,
          -7,
          -7,
          -2.507855871695831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.574031267727719,
          -7,
          -7,
          -7,
          -3.0107238653917734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5859117103194342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3022226663176655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.004665233247877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639476528271741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.381685338403339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1461590556048185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.187059861038297,
          -7,
          -7,
          -7,
          -7,
          -3.085379783217932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.328430573978307,
          -3.0444417587036496,
          -7,
          -7,
          -3.389309014917708,
          -7,
          -2.9143431571194407,
          -7,
          -7,
          -7,
          -7,
          -3.5652573434202135,
          -7,
          -7,
          -7,
          -2.6546577546495245,
          -3.021602716028242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.142858551113391,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.750199727829182,
          -7,
          -7,
          -2.9481683617271317,
          -7,
          -7,
          -7,
          -2.926342446625655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5739926620579388,
          -7,
          -7,
          -7,
          -7,
          -3.41161970596323,
          -2.1647245241698965,
          -7,
          -7,
          -4.233097687864703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0580462303952816,
          -7,
          -3.131297796597623,
          -7,
          -7,
          -7,
          -3.680943850666622,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.036628895362161,
          -7,
          -3.177752871842618,
          -7,
          -7,
          -7,
          -3.029789470831856,
          -3.1889284837608534,
          -7,
          -3.586249638866042,
          -4.117039167877679,
          -2.8943160626844384,
          -7,
          -2.9809119377768436,
          -4.741072772373322,
          -7,
          -3.180412632838324,
          -2.92272545799326,
          -2.3439990690571615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6871274768927718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4245549766067134,
          -3.0202231262979176,
          -3.50745106090197,
          -3.1078880251827985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4899584794248346,
          -7,
          -7,
          -7,
          -7,
          -3.3165294629875106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7478000908643687,
          -3.0178677189635055,
          -7,
          -3.0678145111618402,
          -7,
          -7,
          -2.961083084112392,
          -7,
          -2.8692317197309762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.86421433046133,
          -2.984802764398631,
          -7,
          -7,
          -3.0425755124401905,
          -7,
          -2.5098742850047193,
          -7,
          -2.526769911517248,
          -7,
          -3.0107238653917734,
          -7,
          -7,
          -3.285557309007774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2767899450894244,
          -7,
          -2.1264561134318045,
          -2.200303182981585,
          -2.2993983300681498,
          -7,
          -2.8773713458697743,
          -2.285107029566812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.57978359661681,
          -2.8965262174895554,
          -7,
          -7,
          -3.5802405082653763,
          -3.7893139474454895,
          -2.863322860120456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3774883833761327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8727388274726686,
          -7,
          -7,
          -7,
          -3.311329952303793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6651117370750512,
          -1.854029860881183,
          -7,
          -3.473778834646725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.056142262059052,
          -7,
          -7,
          -4.027702880532386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.179838928023187,
          -3.2973227142053023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.357934847000454,
          -3.13481437032046,
          -2.7197454925295768,
          -2.942008053022313,
          -3.709619715559004,
          -7,
          -7,
          -2.2992752680974307,
          -7,
          -7,
          -7,
          -7,
          -3.263636068588108,
          -7,
          -7,
          -7,
          -2.873029812061044,
          -7,
          -4.099898079134955,
          -7,
          -7,
          -7,
          -2.5622928644564746,
          -7,
          -7,
          -2.8686444383948255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9122220565324155,
          -3.977815026083187,
          -7,
          -4.354730929958319,
          -7,
          -7,
          -2.809939059242838,
          -3.197280558125619,
          -7,
          -2.743901550485179,
          -7,
          -2.683347276399375,
          -2.3309546133716443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.222456336679247,
          -7,
          -2.9857257811120115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.407033803328038,
          -4.436544276662768,
          -7,
          -7,
          -4.581016156545554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.78875505029906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.622214022966295,
          -4.1004739362576546,
          -7,
          -3.4742162640762553,
          -7,
          -7,
          -7,
          -3.6463914716912074,
          -3.040404528914159,
          -2.552262522965547,
          -3.134106242849204,
          -3.855034316675884,
          -3.746400644491561,
          -7,
          -7,
          -7,
          -2.965201701025912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.681250285083047,
          -7,
          -2.9344984512435675,
          -3.085825533520743,
          -2.651278013998144,
          -4.014940349792936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0268599859845615,
          -4.288495151773556,
          -7,
          -7,
          -7,
          -3.2179224041016314,
          -3.505421327583281,
          -7,
          -3.707431775903971,
          -4.569654763999852,
          -7,
          -3.7934111840437565,
          -7,
          -7,
          -3.6555225962534177,
          -3.7321926510062684,
          -7,
          -2.9273703630390235,
          -7,
          -7,
          -7,
          -4.013005850015737,
          -2.4727564493172123,
          -7,
          -7,
          -7,
          -3.313740708405768,
          -7,
          -7,
          -7,
          -3.5159400420933182,
          -7,
          -3.855317205195943,
          -3.17376882313665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2132520521963968,
          -7,
          -7,
          -3.1640552918934515,
          -7,
          -7,
          -2.9800033715837464,
          -7,
          -3.386320573894046,
          -7,
          -7,
          -3.9996814005458545,
          -4.34523646004688,
          -4.4446146287028,
          -7,
          -7,
          -7,
          -3.278982116865443,
          -7,
          -7,
          -2.92272545799326,
          -3.0199466816788423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388633969351789,
          -7,
          -7,
          -7,
          -3.208710019906401,
          -4.04153084778685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.714329759745233,
          -2.5622928644564746,
          -3.358513089911424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7532765701844184,
          -3.12515582958053,
          -2.9777236052888476,
          -7,
          -2.8838506290062735,
          -7,
          -7,
          -3.1772478362556233,
          -2.5181848042184027,
          -7,
          -2.681618065583093,
          -2.2648178230095364,
          -7,
          -3.1646502159342966,
          -7,
          -3.710709565724337,
          -3.0555694400609896,
          -7,
          -7,
          -7,
          -4.282055370683707,
          -7,
          -7,
          -7,
          -4.324158941674477,
          -7,
          -7,
          -3.4484191976496126,
          -3.7989267385772014,
          -7,
          -7,
          -2.9190780923760737,
          -7,
          -7,
          -2.70557864861638,
          -7,
          -7,
          -7,
          -7,
          -2.887202586250158,
          -7,
          -7,
          -7,
          -7,
          -2.7611758131557314,
          -7,
          -3,
          -7,
          -3.4245549766067134,
          -3.09968064110925,
          -7,
          -2.8466463285771173,
          -7,
          -7,
          -7,
          -2.9951962915971793,
          -7,
          -7,
          -2.934245881023071,
          -3.5765716840652906,
          -7,
          -7,
          -7,
          -3.44216608578472,
          -7,
          -7,
          -3.4450924439560473,
          -7,
          -7,
          -3.001949941084268,
          -3.054868296692888,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -3.6137361412618714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.635081436010873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.914977472444331,
          -3.1386184338994925,
          -7,
          -7,
          -3.536604348652848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788168371141168,
          -2.7896165593379805,
          -7,
          -2.6424645202421213,
          -7,
          -7,
          -2.3932826505593647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7393943184250933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.749736315569061,
          -2.421850615022958,
          -7,
          -7,
          -2.0468252095542914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1383026981662816,
          -7,
          -7,
          -7,
          -3.7382254481425052,
          -7,
          -7,
          -7,
          -7,
          -3.0555694400609896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0203612826477078,
          -7,
          -7,
          -7,
          -4.221179420598498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8312296938670634,
          -3.7691187404883246,
          -7,
          -7,
          -7,
          -7,
          -2.4892551683692603,
          -7,
          -3.249198357391113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4641913706409997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.23872695603908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7478000908643687,
          -7,
          -2.163757523981956,
          -1.6341892764619133,
          -2.026328938722349,
          -2.145351816558461,
          -7,
          -2.8968178969406244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.41749014594413,
          -7,
          -7,
          -7,
          -7,
          -2.9978230807457256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.210853365314893,
          -7,
          -7,
          -7,
          -3.9296232515152405,
          -7,
          -3.374565060722765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6263403673750423,
          -7,
          -2.6599162000698504,
          -7,
          -7,
          -7,
          -3.5439439424829065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.816241299991783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.780317312140151,
          -3.151894941876449,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7937903846908188,
          -7,
          -7,
          -3.4268364538035083,
          -3.2506639194632436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.500716623555479,
          -7,
          -7,
          -2.6748611407378116,
          -7,
          -7,
          -2.6035052322021435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8739015978644615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.861385040442465,
          -7,
          -7,
          -2.7558748556724915,
          -4.308564413561239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -7,
          -7,
          -2.3000983660999252,
          -2.829303772831025,
          -2.167317334748176,
          -7,
          -4.320720809309493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -7,
          -7,
          -7,
          -7,
          -2.1889284837608534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.588342148897704,
          -7,
          -7,
          -4.070714961111136,
          -2.625312450961674,
          -7,
          -7,
          -7,
          -7,
          -3.4679039465228003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2121876044039577,
          -3.13481437032046,
          -2.7024305364455254,
          -3.4153072922255676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658383489624529,
          -4.8041326144720715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.660549282517093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.244845909032436,
          -2.650723713371649,
          -3.2659963704950794,
          -4.077985291029502,
          -4.146778989307833,
          -2.417803722639881,
          -7,
          -7,
          -7,
          -2.790988475088816,
          -7,
          -4.191953767152995,
          -7,
          -7,
          -4.358410786206337,
          -7,
          -7,
          -7,
          -2.7259116322950483,
          -2.7730546933642626,
          -4.011728993455529,
          -7,
          -4.642212180220815,
          -7,
          -4.065803712575022,
          -7,
          -7,
          -7,
          -4.281624151440202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.607412127814179,
          -3.611640712232615,
          -7,
          -4.158412754751622,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7708520116421442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.82020145948564,
          -7,
          -7,
          -7,
          -4.329428390782099,
          -7,
          -7,
          -3.345177616542704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8129133566428557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.303879730883368,
          -2.924795995797912,
          -7,
          -7,
          -7,
          -7,
          -2.7371926427047373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7389390312034796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275080898456858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2869950739688525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8847953639489807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7371926427047373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.283617786365643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6522463410033232,
          -2.5575072019056577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.815378484965918,
          -7,
          -7,
          -2.5599066250361124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9107844347928373,
          -2.9079485216122722,
          -7,
          -7,
          -3.463554192128399,
          -7,
          -7,
          -7,
          -2.708420900134713,
          -7,
          -7,
          -3.3844848356953223,
          -7,
          -7,
          -7,
          -7,
          -2.3443922736851106,
          -7,
          -7,
          -7,
          -3.247236549506764,
          -7,
          -3.4946713037544734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3201462861110542,
          -7,
          -2.5712095470456258,
          -7,
          -7,
          -2.3626709297256667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.433889788208712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2972131959896416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.297760511099134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.50740605862413,
          -7,
          -2.846955325019824,
          -7,
          -3.8221288341175814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.640978057358332,
          -7,
          -7,
          -2.5453071164658243,
          -7,
          -3.3680264161136764,
          -7,
          -7,
          -7,
          -2.8369567370595505,
          -7,
          -7,
          -3.5407047833107623,
          -7,
          -7,
          -7,
          -7,
          -4.738034961141285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6931991451537174,
          -2.9636304457595233,
          -7,
          -7,
          -7,
          -3.8041394323353503,
          -7,
          -2.258876629372131,
          -2.8744818176994666,
          -7,
          -3.061829307294699,
          -7,
          -7,
          -7,
          -2.824920914325174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0178677189635055,
          -2.163757523981956,
          -7,
          -2.1335389083702174,
          -1.528566132938369,
          -1.516629796003336,
          -7,
          -3.3870094093910237,
          -7,
          -7,
          -7,
          -2.1409268419924303,
          -2.5786392099680726,
          -7,
          -7,
          -2.96543689977626,
          -7,
          -7,
          -7,
          -7,
          -2.9812637281762018,
          -7,
          -7,
          -2.554489160003819,
          -7,
          -7,
          -3.0856472882968564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5854607295085006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.359835482339888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.687974620034556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.760422483423212,
          -7,
          -2.159366641633703,
          -7,
          -2.224014811372864,
          -2.5575072019056577,
          -2.255272505103306,
          -7,
          -2.526339277389844,
          -2.416640507338281,
          -3.2947306904843314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4321672694425884,
          -7,
          -7,
          -7,
          -2.929418925714293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.595496221825574,
          -7,
          -7,
          -3.052693941924968,
          -3.2038484637462346,
          -3.185825359612962,
          -7,
          -7,
          -7,
          -2.6830470382388496,
          -7,
          -1.972467329545524,
          -7,
          -2.7481880270062007,
          -1.635986111800833,
          -7,
          -7,
          -7,
          -7,
          -2.605458969404072,
          -7,
          -7,
          -7,
          -4.307720614914806,
          -2.7032913781186614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.859738566197147,
          -2.645422269349092,
          -2.2952004520032574,
          -2.1958996524092336,
          -7,
          -4.3204474864238644,
          -3.0711452904510828,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -2.928907690243953,
          -7,
          -1.6957005197711714,
          -7,
          -7,
          -7,
          -7,
          -2.7363965022766426,
          -2.6627578316815743,
          -7,
          -7,
          -7,
          -3.9598995878659435,
          -7,
          -4.9562052606727915,
          -7,
          -2.511214701136388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7263196121107756,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -2.6127838567197355,
          -7,
          -7,
          -2.617000341120899,
          -2.3273589343863303,
          -2.6283889300503116,
          -2.357068164449998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6100956392991375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.226006694729179,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.41161970596323,
          -7,
          -3.306403580380042,
          -3.269045709657623,
          -2.9253120914996495,
          -7,
          -7,
          -4.544923382058467,
          -1.9320018841538737,
          -2.768884649356367,
          -3.7740057302582093,
          -4.144325078400488,
          -2.634393291724445,
          -7,
          -7,
          -7,
          -1.9453044216515423,
          -7,
          -7,
          -7,
          -7,
          -3.315130317183602,
          -4.503409316743605,
          -7,
          -2.677606952720493,
          -2.5325420619597168,
          -7,
          -3.767791729273228,
          -7,
          -7,
          -3.3177500288422337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6840370374865197,
          -3.4499409887733377,
          -7,
          -3.9075080987704354,
          -3.963008230329139,
          -7,
          -3.7895605681684152,
          -7,
          -7,
          -3.3157604906657347,
          -4.0175758683910745,
          -7,
          -1.8081144737610868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5192590585137475,
          -7,
          -1.9107768156582345,
          -7,
          -3.7909181952145783,
          -7,
          -3.93062306071968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.456973013635818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8402315949581087,
          -7,
          -7,
          -7,
          -4.642504089690639,
          -4.742654444714546,
          -7,
          -7,
          -2.1398790864012365,
          -7,
          -7,
          -7,
          -2.656098202012832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.53655844257153,
          -7,
          -2.690196080028514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8543060418010806,
          -3.8263879867643107,
          -7,
          -3.4235735197327357,
          -7,
          -7,
          -7,
          -2.3664229572259727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -2.973589623427257,
          -2.9344984512435675,
          -3.732634967539196,
          -7,
          -7,
          -7,
          -3.739651443709377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.285219643202061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -2.3664229572259727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9628426812012423,
          -7,
          -7,
          -7,
          -2.5390760987927767,
          -7,
          -7,
          -7,
          -3.679700380871964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.281828466560518,
          -7,
          -7,
          -3.2113875529368587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.403120521175818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4065401804339555,
          -7,
          -3.6417714706539592,
          -7,
          -2.8102325179950842,
          -7,
          -7,
          -7,
          -7,
          -3.1184851801459406,
          -7,
          -7,
          -3.8366865479533994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.236920956251943,
          -7,
          -7,
          -7,
          -7,
          -2.747411807886423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.337858429041094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0108085975122063,
          -7,
          -7,
          -2.807196660710947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.031852631395629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.220421922437841,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.935003151453655,
          -7,
          -7,
          -7,
          -4.519788629954198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.885926339801431,
          -7,
          -7,
          -7,
          -7,
          -4.063258279950456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.073351702386901,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.600246650564494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6341892764619133,
          -2.1335389083702174,
          -7,
          -2.5282737771670436,
          -2.0957503474808177,
          -7,
          -2.3789459686077294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.240798771117331,
          -7,
          -7,
          -7,
          -7,
          -3.466950987999048,
          -7,
          -7,
          -7,
          -7,
          -2.907411360774586,
          -7,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -7,
          -3.1577588860468637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.378397900948138,
          -7,
          -7,
          -7,
          -7,
          -2.6541765418779604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -2.5171958979499744,
          -7,
          -2.359835482339888,
          -7,
          -2.404833716619938,
          -7,
          -7,
          -2.6190933306267428,
          -3.989271791641693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2024883170600935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.692935002531138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1734776434529945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.655138434811382,
          -7,
          -2.1598678470925665,
          -7,
          -7,
          -7,
          -3.1341771075767664,
          -7,
          -7,
          -7,
          -4.306564408349157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.305351369446624,
          -2.080987046910887,
          -2.3966351669836934,
          -7,
          -5.098259438816537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.132126754578685,
          -7,
          -2.473486970064568,
          -4.244524511570083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.439332693830263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6825060859390115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.429106008332696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.581483158275855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.737987326333431,
          -7,
          -7,
          -7,
          -4.543583846395738,
          -3.3081373786380386,
          -7,
          -7,
          -3.839854984601885,
          -2.8601668223031473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354838055584639,
          -7,
          -7,
          -7,
          -3.2893659515200318,
          -2.6085260335771943,
          -4.6118719408282765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.641434447096437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604258461911163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.883547879268044,
          -7,
          -7,
          -7,
          -7,
          -3.6644539285811577,
          -7,
          -7,
          -2.497620649781288,
          -7,
          -7,
          -3.9175055095525466,
          -2.9213742954184743,
          -7,
          -7,
          -3.310928576352893,
          -7,
          -7,
          -7,
          -2.5024271199844326,
          -7,
          -7,
          -3.1639123887749165,
          -7,
          -7,
          -7,
          -2.509202522331103,
          -2.597695185925512,
          -7,
          -7,
          -7,
          -2.975891136401793,
          -7,
          -3.6433934504731535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7371926427047373,
          -7,
          -7,
          -7,
          -7,
          -2.774354733944107,
          -7,
          -7,
          -3.1818435879447726,
          -7,
          -2.7168377232995247,
          -2.7275412570285567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.364550995353972,
          -7,
          -7,
          -7,
          -2.1158481557195747,
          -7,
          -7,
          -3.925441019653158,
          -2.3944516808262164,
          -2.8115750058705933,
          -7,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -7,
          -2.9474337218870508,
          -7,
          -3.0398105541483504,
          -7,
          -7,
          -7,
          -4.221805317996549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4955443375464483,
          -7,
          -2.397070549959409,
          -7,
          -7,
          -7,
          -7,
          -3.168386980706974,
          -7,
          -7,
          -7,
          -7,
          -3.1099158630237933,
          -2.714329759745233,
          -2.7769431981946755,
          -7,
          -7,
          -7,
          -2.845098040014257,
          -4.261889070345975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7752462597402365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.403034683744586,
          -2.4164892115757675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.628729419665481,
          -7,
          -7,
          -7,
          -2.7835820252012704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0678145111618402,
          -2.026328938722349,
          -1.528566132938369,
          -2.5282737771670436,
          -7,
          -2.1811286997472954,
          -7,
          -3.3154212801108605,
          -7,
          -7,
          -7,
          -1.8228216453031048,
          -7,
          -2.74350976472843,
          -7,
          -3.295786940251609,
          -7,
          -3.874191804679071,
          -7,
          -7,
          -3.009931003697816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8785217955012063,
          -2.8102325179950842,
          -2.885361220031512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9054360671891235,
          -7,
          -3.0409976924234905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7032913781186614,
          -7,
          -7,
          -2.741151598851785,
          -3.549861188471943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.688419822002711,
          -7,
          -7,
          -7,
          -2.8135809885681917,
          -3.522313795156667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.346352974450639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.86844850133673,
          -7,
          -7,
          -2.5814945422908995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0989896394011773,
          -2.7589118923979736,
          -2.9188163903603797,
          -7,
          -7,
          -2.3738311450738303,
          -2.7846172926328756,
          -2.9978230807457256,
          -1.7092699609758308,
          -7,
          -2.8369567370595505,
          -1.6949425150529753,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -2.468790262099611,
          -3.044147620878723,
          -7,
          -7,
          -4.610127613075996,
          -7,
          -7,
          -3.776555910703262,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -7,
          -2.929929560084588,
          -2.158060793936605,
          -2.074938279468222,
          -2.3909351071033793,
          -7,
          -4.621937534348392,
          -2.5115491597450657,
          -7,
          -7,
          -7,
          -7,
          -2.9894498176666917,
          -7,
          -1.5631419252975927,
          -2.8836614351536176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.395326393069351,
          -7,
          -7,
          -7,
          -7,
          -4.8314666335845295,
          -7,
          -2.4542348957482654,
          -3.946341712189376,
          -7,
          -7,
          -2.629409599102719,
          -7,
          -7,
          -3.4749443354653877,
          -7,
          -7,
          -7,
          -7,
          -2.977266212427293,
          -2.718501688867274,
          -7,
          -2.4305587695227575,
          -2.1022465501163183,
          -2.1351326513767748,
          -2.2425414282983844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.434497047900033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.153814864344529,
          -4.273626206272959,
          -4.309502414966703,
          -3.4550733759211245,
          -7,
          -7,
          -7,
          -7,
          -2.070490928340032,
          -7,
          -7,
          -3.369803180547177,
          -3.248463717551032,
          -7,
          -7,
          -7,
          -1.9704797083100105,
          -7,
          -4.193291602579516,
          -7,
          -7,
          -4.058255158229489,
          -4.680086107821505,
          -7,
          -2.780317312140151,
          -2.2934630044590665,
          -7,
          -3.4679567540619156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.863976783904387,
          -7,
          -7,
          -3.2650537885040145,
          -3.9645071216655343,
          -7,
          -3.6816532195389895,
          -7,
          -7,
          -3.630122642859312,
          -7,
          -7,
          -1.9160777731414746,
          -7,
          -7,
          -7,
          -7,
          -2.1986570869544226,
          -7,
          -7,
          -7,
          -3.2234959409623944,
          -7,
          -1.721747219185589,
          -7,
          -3.7997539664118856,
          -7,
          -4.028845649861069,
          -2.78993308093175,
          -7,
          -7,
          -7,
          -7,
          -3.475816413031318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.005930867219212,
          -7,
          -2.3443922736851106,
          -7,
          -1.9777236052888478,
          -2.982874001327729,
          -7,
          -7,
          -3.6259294927162946,
          -2.716003343634799,
          -7,
          -7,
          -7,
          -2.673020907128896,
          -3.0874264570362855,
          -2.7902851640332416,
          -7,
          -7,
          -7,
          -2.761927838420529,
          -2.4892551683692603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6232492903979003,
          -3.469168017429083,
          -2.9489017609702137,
          -7,
          -7,
          -7,
          -7,
          -2.167317334748176,
          -7,
          -7,
          -2.8407332346118066,
          -2.909020854211156,
          -7,
          -7,
          -2.741151598851785,
          -2.929521100631104,
          -3.028571252692538,
          -2.9943171526696366,
          -3.26528962586083,
          -7,
          -7,
          -3.0806264869218056,
          -3.749581734865559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318835191727664,
          -7,
          -7,
          -3.509695249865874,
          -7,
          -7,
          -7,
          -2.75815462196739,
          -7,
          -2.0596175052644243,
          -2.625312450961674,
          -7,
          -7,
          -2.7737864449811935,
          -7,
          -3.3809043531298437,
          -2.4345689040341987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8603380065709938,
          -7,
          -7,
          -7,
          -2.6748611407378116,
          -7,
          -2.8407332346118066,
          -7,
          -3.691081492122968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5063246026216772,
          -7,
          -7,
          -2.9425041061680806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.056838178206314,
          -7,
          -7,
          -7,
          -7,
          -3.6353832040474985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.90151280912994,
          -2.986211715514367,
          -7,
          -7,
          -3.7015737410745344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5599066250361124,
          -4.0816832818909905,
          -7,
          -7,
          -7,
          -2.5428254269591797,
          -2.694605198933569,
          -7,
          -2.546542663478131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9259992664561554,
          -2.3873898263387296,
          -7,
          -2.6081693235104026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.029261995804175,
          -7,
          -7,
          -7,
          -7,
          -3.3062105081677613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.725094521081469,
          -7,
          -4.217891726314075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8363241157067516,
          -7,
          -7,
          -7,
          -7,
          -2.5459253293558426,
          -7,
          -7,
          -2.423245873936808,
          -7,
          -3.759743367597725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0492180226701815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.200303182981585,
          -3.1121020547708906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7611758131557314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.472902651803664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.145351816558461,
          -1.516629796003336,
          -2.0957503474808177,
          -2.1811286997472954,
          -7,
          -7,
          -3.8831826769763365,
          -7,
          -7,
          -7,
          -7,
          -2.010723865391773,
          -7,
          -7,
          -3.2245330626060857,
          -7,
          -7,
          -7,
          -7,
          -3.4151681799908333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.137986732723532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.024485667699167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5877109650189114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8169038393756605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2174839442139063,
          -1.9708116108725178,
          -7,
          -7,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.569373909615046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.497261466106855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.187520720836463,
          -2.3629848397370954,
          -2.3935752032695876,
          -7,
          -2.5888317255942073,
          -2.56702636615906,
          -1.4873404199013485,
          -7,
          -7,
          -2.095169351431755,
          -3.123851640967086,
          -7,
          -7,
          -7,
          -4.6069292623911515,
          -2.5224442335063197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6273658565927325,
          -2.010959191586587,
          -7,
          -5.098037713285091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8305886686851442,
          -7,
          -1.893946607552074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.955929759161037,
          -7,
          -2.575187844927661,
          -7,
          -3.0081741840064264,
          -7,
          -7,
          -7,
          -7,
          -3.1277525158329733,
          -7,
          -7,
          -7,
          -7,
          -2.8129133566428557,
          -7,
          -7,
          -2.079181246047625,
          -3.0464951643347082,
          -2.403120521175818,
          -3.0698530211136243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7331490966888365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.704099016416958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.348655273245765,
          -7,
          -7,
          -3.0515383905153275,
          -7,
          -3.6039450752328426,
          -3.4316853446860116,
          -7,
          -7,
          -7,
          -7,
          -2.2852668595858776,
          -2.900913067737669,
          -7,
          -7,
          -3.0982109460284746,
          -7,
          -7,
          -7,
          -1.7745169657285496,
          -7,
          -7,
          -7,
          -7,
          -3.7514330818193473,
          -4.50262737734167,
          -7,
          -7,
          -7,
          -7,
          -3.9121369966522233,
          -7,
          -7,
          -3.29939833006815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4568820206232487,
          -7,
          -7,
          -3.65029672770863,
          -4.5631012082812745,
          -7,
          -4.633044053669549,
          -7,
          -7,
          -3.2973227142053023,
          -7,
          -7,
          -1.8512583487190755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.988960070390338,
          -7,
          -1.8239087409443189,
          -7,
          -3.7786576319473553,
          -7,
          -4.326868159893682,
          -7,
          -7,
          -7,
          -7,
          -3.210318519826232,
          -3.4300750555519395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.829303772831025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -7,
          -3.413132050434872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8057047044338645,
          -7,
          -7,
          -7,
          -2.734799829588847,
          -4.126863456607053,
          -7,
          -3.3944516808262164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.296445794206396,
          -7,
          -7,
          -3.7185847200274362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2833012287035497,
          -7,
          -7,
          -7,
          -7,
          -4.312558149521521,
          -7,
          -7,
          -4.281328859801704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7126497016272113,
          -2.987219229908005,
          -7,
          -7,
          -7,
          -7,
          -3.8491736330988267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9867717342662448,
          -7,
          -7,
          -7,
          -2.2405492482826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277907045047425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357353493960548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.099283449476349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3988077302032647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.741939077729199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.1461280356782382,
          -2.08278537031645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2278867046136734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.518184804218403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2833012287035497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.403635189790548,
          -7,
          -7,
          -7,
          -3.788168371141168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1694539986517043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.250753321439791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.068102335544942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1192558892779365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6820547770738075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.004181603069199,
          -2.439332693830263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097836676696532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6711728427150834,
          -7,
          -7,
          -7,
          -5.432964483159803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.92272545799326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3604040547299387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.802020751771976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.580092064700632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.570531265142131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.241010752866155,
          -7,
          -7,
          -7,
          -3.659852841038167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604085586881876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080954608767231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8248739727439425,
          -4.426316028957644,
          -7,
          -7,
          -7,
          -7,
          -4.7271751242414615,
          -4.426372980809529,
          -4.12579833129549,
          -2.1291708907423548,
          -3.5292538542887826,
          -4.250200359678991,
          -4.125269759964129,
          -2.864541505555368,
          -2.5477747053878224,
          -4.7279395842212315,
          -3.952316087981373,
          -4.728524219304322,
          -4.033447882287984,
          -4.12515582958053,
          -2.3050789541538186,
          -2.8860636902492818,
          -4.727329751292091,
          -1.828053896840553,
          -1.7019773666297375,
          -7,
          -3.6864250009637516,
          -4.426210241414335,
          -3.4495352349815573,
          -3.7280289544205187,
          -3.1599896745229517,
          -2.224391022988587,
          -3.6866931316334,
          -3.22169943522332,
          -3.949918320775918,
          -3.1598759699845607,
          -3.3870822809891834,
          -4.426185825244511,
          -3.473138096777888,
          -7,
          -3.416117232254335,
          -2.9632095769583877,
          -2.1268753382290857,
          -4.426210241414335,
          -4.127315412520904,
          -3.473738309626689,
          -4.4263567096139225,
          -7,
          -4.426787690457996,
          -2.869190961954971,
          -7,
          -3.7276957537986664,
          -2.0615721938673013,
          -2.0356385582547913,
          -3.5234456722537035,
          -3.7737458244431754,
          -2.7898049799111613,
          -3.82509329083244,
          -3.7274843233085995,
          -4.250582628965692,
          -3.2805702410901008,
          -3.1390956495216904,
          -3.1780412001399494,
          -2.643338459312974,
          -7,
          -7,
          -2.762528522447,
          -4.426177686216186,
          -4.7271751242414615,
          -4.028709489232689,
          -4.727191403365907,
          -2.7912647463631677,
          -3.2533218482368023,
          -4.727508724388225,
          -3.7772414967636383,
          -2.188550161961675,
          -3.3291130026818196,
          -2.81887727846276,
          -4.7271507044105965,
          -4.125562586641175,
          -7,
          -7,
          -3.773233679871393,
          -4.125139551371345,
          -2.563887264210333,
          -3.281285035693031,
          -2.677396973050582,
          -3.825515369420171,
          -3.3680523082026887,
          -4.129319230615535,
          -1.8805861967308912,
          -3.553826411010125,
          -4.42673079296728,
          -4.426169547035326,
          -7,
          -7,
          -3.5813156161174313,
          -4.727809558365384,
          -4.250354934591055,
          -4.727191403365907,
          -2.8667755227942764,
          -3.7275575224348954,
          -7,
          -4.12501744535038,
          -2.696235006222717,
          -7,
          -4.426389251395546,
          -3.449454038712713,
          -3.9493818737132953,
          -2.775861155715095,
          -3.264768986551449,
          -3.1357277820214926,
          -2.836802721861793,
          -3.6877396932891924,
          -2.5833000057543316,
          -2.8025049560183866,
          -2.9496257954341845,
          -4.0287338793493355,
          -3.1853883377542935,
          -3.6922699327603388,
          -4.727606314999153,
          -2.5649366840364607,
          -2.096520818131028,
          -4.028644442224251,
          -3.2524322813650826,
          -3.4983754295385956,
          -2.8697777859314675,
          -4.0288232980598355,
          -3.478037132206131,
          -2.356332505359126,
          -2.9097423747827356,
          -4.426990834952875,
          -3.8250364412213536,
          -3.237040791379191,
          -4.727134423760488,
          -7,
          -2.1238375049273124,
          -4.12501744535038,
          -4.727126283206558,
          -7,
          -3.5808679779090298,
          -3.881963113267065,
          -3.2310871205848226,
          -2.842156613741657,
          -3.1336167877718255,
          -3.1870934679310956,
          -4.126115165579008,
          -3.3754002144995283,
          -4.727679493568708,
          -3.773022142436208,
          -2.8720267099544015,
          -2.556122290708796,
          -2.893818027711187,
          -4.727272789836275,
          -4.0286607048897425,
          -4.727703883685354,
          -1.892923507255603,
          -4.727126283206558,
          -4.426226518098315,
          -3.7278908290871864,
          -3.688055599800202,
          -4.426250931980546,
          -7,
          -2.961083084112392,
          -2.8968178969406244,
          -3.3870094093910237,
          -2.3789459686077294,
          -3.3154212801108605,
          -3.8831826769763365,
          -4.250753321439791,
          -7,
          -4.028481782066952,
          -4.727321614398654,
          -7,
          -4.125725182854944,
          -7,
          -4.028863936842829,
          -4.426348573787507,
          -2.062545750245087,
          -7,
          -3.525339998131806,
          -4.42620210284358,
          -3.4106406792031247,
          -1.0077450772374068,
          -3.1474403631674783,
          -2.4847227399449667,
          -2.7032589244882543,
          -2.6049078342007888,
          -2.4431940560100167,
          -3.6927267769512566,
          -3.428199609263877,
          -4.029611012535356,
          -3.6502751360569445,
          -3.019987346336959,
          -3.329723224057897,
          -3.064067490359177,
          -7,
          -4.426364845287927,
          -7,
          -2.769973475081076,
          -4.727272789836275,
          -2.561441012527098,
          -4.727199542699307,
          -1.9129494697951093,
          -3.4487713900601857,
          -3.6484738560346033,
          -3.5808679779090298,
          -4.125326713949941,
          -3.406661814514544,
          -7,
          -7,
          -7,
          -3.150339140453838,
          -3.406426624548381,
          -4.426071864965211,
          -3.6479531777128638,
          -3.949145952419944,
          -7,
          -4.250070148646245,
          -3.88279278907293,
          -4.727500590847347,
          -4.250558238849045,
          -2.8787563722006486,
          -3.7322006971472383,
          -3.002528594136107,
          -2.5785538211080494,
          -7,
          -4.125399929529946,
          -4.4264055213720175,
          -2.55252221023356,
          -7,
          -4.028286509426278,
          -2.330634661374436,
          -7,
          -3.4724313785820478,
          -7,
          -4.727166984450405,
          -4.72736229734141,
          -4.125261623070691,
          -7,
          -4.727158844506786,
          -3.8254829163960453,
          -1.7315565343446218,
          -7,
          -4.727134423760488,
          -7,
          -3.405012803773642,
          -2.7219656140431185,
          -2.9417150342629825,
          -4.727297202803587,
          -3.582501658910611,
          -3.6202401898458314,
          -4.0286607048897425,
          -2.393366632040518,
          -2.378509956288727,
          -7,
          -3.4259171567401974,
          -4.426543791568096,
          -3.896037794686384,
          -2.0942184429580704,
          -1.8316472780798594,
          -3.5252473225368557,
          -2.6952498398147355,
          -4.426560055756167,
          -7,
          -2.9070284317165918,
          -2.8705407076999516,
          -3.778376381752652,
          -2.9129784850676734,
          -2.722857464681718,
          -3.2177789568624706,
          -4.426316028957644,
          -4.4264055213720175,
          -4.250102705064626,
          -3.4727970660562555,
          -2.838130320707927,
          -3.331532567271932,
          -7,
          -3.95074607416863,
          -3.950592004332609,
          -4.125562586641175,
          -2.9557774090066586,
          -2.477693393952372,
          -3.3657808883706317,
          -2.132160282103326,
          -3.300587433274399,
          -2.6827384693289797,
          -2.51359339336404,
          -2.347449358810914,
          -3.774159975774139,
          -7,
          -2.591583964972279,
          -4.426332301677428,
          -4.125277896705118,
          -3.6158125181252205,
          -3.385151106409871,
          -2.1789931049835896,
          -2.733083728305306,
          -3.0019339278663946,
          -3.7748979720461997,
          -3.390662182998049,
          -4.42758347362526,
          -2.2333728424577397,
          -3.1651801371648745,
          -7,
          -7,
          -7,
          -3.588983606160755,
          -2.9900804134622208,
          -7,
          -4.426722664145779,
          -3.951377999243531,
          -7,
          -4.72718326387996,
          -7,
          -3.6147187910628036,
          -4.427120797579584,
          -4.250297992339864,
          -2.9810253750197253,
          -3.7735751766826517,
          -2.72352583496175,
          -3.422925790625542,
          -2.4176620338083574,
          -4.4279727136082085,
          -2.40113470291114,
          -2.2015017826004426,
          -3.0801452741502415,
          -7,
          -3.2674792279092797,
          -4.250980807096349,
          -2.634162771445941,
          -2.3954478504814185,
          -3.043065401325682,
          -4.426372980809529,
          -4.727199542699307,
          -4.7271100016409155,
          -2.9238994354584613,
          -3.8824513497936164,
          -3.649351087649641,
          -3.9495607630362115,
          -2.907684032886376,
          -4.125773949850886,
          -2.1013088384840706,
          -7,
          -7,
          -2.38836211745815,
          -3.179807033301188,
          -3.9525200157595273,
          -4.253289532254802,
          -3.311531088810858,
          -3.108092810484286,
          -3.232689740335693,
          -3.4613428736466783,
          -2.2945643764286494,
          -7,
          -3.106061643964693,
          -3.241311761772201,
          -3.252495566964527,
          -3.1854638683319636,
          -2.4671089777077575,
          -4.159133885693975,
          -3.0631764626789213,
          -2.2845202514129914,
          -4.0214993986774745,
          -3.33817842648472,
          -4.309452723304164,
          -3.129563910021561,
          -3.703047646167912,
          -2.4958815048717864,
          -3.1219683083643344,
          -4.129960436522729,
          -3.410827372065674,
          -3.679775150575617,
          -7,
          -2.41400876822251,
          -3.144549301118705,
          -3.0404879542618537,
          -3.290856641538179,
          -3.2422355332465385,
          -3.2680365213593214,
          -3.449558616691692,
          -3.7674257399338993,
          -3.178453177304058,
          -2.5846911866607476,
          -2.839023892302064,
          -3.504214919957298,
          -2.5508420193755015,
          -2.122116633990356,
          -1.8251445416738838,
          -3.8860634722671143,
          -3.3614984895639037,
          -3.733277533932582,
          -1.990160790410788,
          -2.7624431817322277,
          -3.18178802771381,
          -2.9853192094259917,
          -2.1716508690254384,
          -2.3686143205822265,
          -7,
          -3.5116754437726105,
          -3.782655731381152,
          -4.1266994838399125,
          -3.6708408988553822,
          -3.2118956929098874,
          -4.743431365146684,
          -4.731330851449278,
          -2.1532484973821076,
          -2.2361703147138603,
          -2.8678429063865183,
          -3.523933342263851,
          -2.4154026577248313,
          -3.49789674291322,
          -2.309159412716156,
          -4.762213266928569,
          -2.6480066689858415,
          -2.8584001216829997,
          -3.146694137624876,
          -4.125968963092556,
          -3.6817536437363345,
          -3.3384221443751882,
          -3.0716647453946364,
          -3.7834747875822465,
          -3.096947776103763,
          -3.4516636494104094,
          -2.5214488119418825,
          -3.299328264363879,
          -3.4983511022684035,
          -2.3082523908915555,
          -2.268999741029523,
          -3.8307249657259144,
          -2.753528668400722,
          -4.258246065968053,
          -2.961832252984734,
          -2.7688363674494263,
          -3.2577608328052667,
          -3.88380739196289,
          -4.7281832778243835,
          -7,
          -4.253378395419779,
          -3.9675947726718896,
          -2.0816644831892415,
          -3.8253774273163,
          -2.901450307917467,
          -3.884722557505038,
          -2.467505773250982,
          -2.581813728522774,
          -3.110637802263409,
          -3.729010814729995,
          -4.72788270269935,
          -2.7332782702751555,
          -4.252513226416275,
          -2.1374213769188546,
          -3.2858063702375837,
          -4.033093888137047,
          -3.5652494649908055,
          -2.2271465125877086,
          -3.307099675302965,
          -2.8165376190019558,
          -4.433489811682095,
          -3.6173149332982937,
          -2.449914523871852,
          -4.255979668208399,
          -3.6203362921859834,
          -3.952671385348004,
          -3.7746953507239045,
          -4.426560055756167,
          -2.8522257675089486,
          -7,
          -3.5813481536324794,
          -2.952313278148243,
          -1.5125997457466591,
          -2.452979280821311,
          -4.426478728724244,
          -3.3820797181144515,
          -3.428758239517558,
          -3.1920574373719934,
          -4.251662549989795,
          -7,
          -4.250956439331893,
          -2.939300802474012,
          -7,
          -3.952687528323953,
          -3.434234234551041,
          -3.949390006644913,
          -2.7949525327803473,
          -3.300071883219573,
          -3.0241855933138573,
          -7,
          -3.3527210309601645,
          -3.8832151518408686,
          -3.189786987593324,
          -3.191194759164397,
          -7,
          -4.728093939379775,
          -4.1263181429721,
          -3.851724506256658,
          -2.732130471253581,
          -7,
          -4.430679613881531,
          -2.6920933411840697,
          -4.429186844904713,
          -1.8251823856386462,
          -3.3152354096177272,
          -3.423081958297231,
          -3.1609144478506357,
          -7,
          -4.789270390978015,
          -3.949991421335047,
          -3.246670139929375,
          -3.5558116315501107,
          -4.251873348943444,
          -3.1383026981662816,
          -3.593499679766006,
          -4.42620210284358,
          -3.7735020213967823,
          -2.4172535172774223,
          -3.163274222705834,
          -3.6172665493319,
          -2.5413699526015563,
          -3.6917965522497167,
          -3.1234549503883753,
          -3.653791187387812,
          -2.8795947904433206,
          -3.137836192154967,
          -3.0955021988092257,
          -3.659266331383175,
          -4.028335335818388,
          -7,
          -2.5681044059002835,
          -3.422941409919984,
          -4.728410601881194,
          -3.4613879368708793,
          -2.216977478288399,
          -2.9794605133896948,
          -2.8952896369361607,
          -2.7207928476202827,
          -3.0291549471648436,
          -4.251005173493635,
          -4.732522420609542,
          -3.8828577947020895,
          -7,
          -4.030980018424236,
          -3.1648991988610664,
          -3.7941471074965745,
          -7,
          -4.029188910280547,
          -7,
          -2.368104755322076,
          -4.727833941178848,
          -4.730507727707434,
          -7,
          -4.728451182944577,
          -4.253539918241502,
          -7,
          -4.428385899200131,
          -3.254158099637722,
          -3.4413258676537932,
          -3.5851786285035163,
          -4.029188910280547,
          -3.778344227272801,
          -4.727232098507561,
          -7,
          -7,
          -4.72934300831835,
          -3.8838317133294527,
          -7,
          -2.7737110636466,
          -3.7511789891068097,
          -4.271400120441062,
          -4.728418718397232,
          -7,
          -2.5709450534801004,
          -7,
          -4.727232098507561,
          -2.736094552405685,
          -7,
          -7,
          -3.6959908142764144,
          -3.794139355767774,
          -3.9550861509904007,
          -4.727191403365907,
          -7,
          -4.030672570475327,
          -7,
          -3.4983718255845533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657944576981328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.919601023784111,
          -3.9228810912082936,
          -7,
          -2.2013971243204513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3909351071033793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.218360421770535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.682145076373832,
          -7,
          -2.537189226243645,
          -7,
          -2.6283889300503116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2833012287035497,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -2.0726174765452363,
          -7,
          -7,
          -2.629409599102719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.611723308007342,
          -7,
          -7,
          -3.504470862494419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.668012971641832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.673020907128896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071292733834574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028481782066952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.289133536961551,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.372298159077237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4382031886892928,
          -1.916829798406272,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.161368002234975,
          -3.4075608494863623,
          -7,
          -7,
          -7,
          -4.605789719802564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.649334858712142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9542425094393248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6242820958356683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5323296410790315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.89707700320942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.255272505103306,
          -7,
          -7,
          -1.8260748027008264,
          -7,
          -7,
          -3.0497992779189866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.268917131979661,
          -3.044779227016736,
          -3.246826721711981,
          -7,
          -7,
          -7,
          -7,
          -3.773274348337454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.952695599586917,
          -4.979284257931421,
          -7,
          -7,
          -7,
          -7,
          -4.6100636631681216,
          -7,
          -7,
          -2.742500689706988,
          -7,
          -7,
          -7,
          -3.998956440470486,
          -4.273441134312813,
          -7,
          -7,
          -7,
          -3.374412263872896,
          -7,
          -7,
          -4.302514912793019,
          -4.5618404867309605,
          -7,
          -4.330920830595236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.683092087197129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325782397515805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.394976719554564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.640481436970422,
          -4.381782712635187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5859117103194342,
          -7,
          -7,
          -3.40849436021236,
          -7,
          -7,
          -7,
          -3.717087724927019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6127838567197355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.57603596955491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.555618350489831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.696356388733332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6599162000698504,
          -7,
          -2.824125833916549,
          -7,
          -7,
          -7,
          -4.216179102525562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.089728533074736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070407321740119,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8692317197309762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727321614398654,
          -7,
          -7,
          -7,
          -2.0681858617461617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9705049418128855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3187587626244128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.346352974450639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4034637013453173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.367355921026019,
          -5.432849082039786,
          -7,
          -3.000867721531227,
          -4.543173718365064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8672710189654482,
          -7,
          -2.5136614370834756,
          -7,
          -3.346548558548474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7715139899796664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.243781916093795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30225514786152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.876933374698336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1583624920952498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669316880566112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.929929560084588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9813655090785445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658316727178102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576398945124239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.256994202073168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335237186909729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.734799829588847,
          -7,
          -7,
          -7,
          -7,
          -4.026533264523296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.267953536862395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.667452952889954,
          -7,
          -3.757206173278786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0320812676114404,
          -7,
          -7,
          -7,
          -7,
          -4.435087512304593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2270292621201366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.595459477929287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1409268419924303,
          -7,
          -1.8228216453031048,
          -7,
          -7,
          -4.125725182854944,
          -7,
          -2.0681858617461617,
          -7,
          -7,
          -1.8388490907372554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5907489792763627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.447158031342219,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9130717403092508,
          -2.0453229787866576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7701152947871015,
          -2.8680563618230415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.661181443446619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1652443261253107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9923325590474643,
          -7,
          -7,
          -7,
          -7,
          -3.6072405038317426,
          -7,
          -7,
          -3.1335389083702174,
          -7,
          -7,
          -7,
          -7,
          -2.385606273598312,
          -2.496237545166735,
          -1.5713911715615105,
          -7,
          -7,
          -2.4800069429571505,
          -7,
          -7,
          -2.424881636631067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.606209333228022,
          -7,
          -7,
          -3.7491176623563223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.037824750588342,
          -2.552668216112193,
          -7,
          -7,
          -4.796768542903085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9294189257142926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.123851640967086,
          -7,
          -7,
          -7,
          -7,
          -5.432950059696654,
          -7,
          -3.0273496077747564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.418135498425232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.155336037465062,
          -7,
          -1.9697546756175726,
          -7,
          -2.8808135922807914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8244295818805045,
          -3.426267207139606,
          -7,
          -7,
          -7,
          -7,
          -2.8207121796408137,
          -7,
          -7,
          -4.136815657726849,
          -7,
          -7,
          -7,
          -7,
          -1.7664128471123997,
          -7,
          -7,
          -7,
          -7,
          -4.051249021610516,
          -4.979461871381611,
          -7,
          -7,
          -2.957607287060095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274342616116883,
          -7,
          -7,
          -7,
          -4.154058610376971,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.632366171895849,
          -7,
          -7,
          -7,
          -7,
          -2.510545010206612,
          -2.3483048630481607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.030599721965951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.358886204405869,
          -7,
          -2.478566495593843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.403120521175818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.381923325770788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1127166884277973,
          -7,
          -7,
          -3.712986233594383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.279803779994103,
          -7,
          -2.342422680822206,
          -7,
          -7,
          -7,
          -7,
          -2.9561684304753633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6574383227029625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276369880269439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657935030474059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576168519607808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.033363432619723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7556843338524133,
          -7,
          -7,
          -7,
          -2.61066016308988,
          -7,
          -7,
          -3.203032887014711,
          -7,
          -2.08278537031645,
          -7,
          -7,
          -4.735814396794525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0712558776812955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5786392099680726,
          -7,
          -7,
          -2.010723865391773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8388490907372554,
          -7,
          -7,
          -7,
          -3.1958996524092336,
          -7,
          -7,
          -7,
          -7,
          -3.8245534996152175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.380211241711606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1986570869544226,
          -7,
          -1.7634279935629373,
          -7,
          -7,
          -7,
          -7,
          -1.675778341674085,
          -3.9815921172140816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.153204900084284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5550944485783194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.002166061756508,
          -7,
          -2.591064607026499,
          -7,
          -7,
          -7,
          -2.079181246047625,
          -7,
          -7,
          -7,
          -3.4073909044707316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4409090820652177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7781512503836436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9464031338990546,
          -7,
          -5.43288594961979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.130333768495006,
          -2.7007037171450192,
          -2.164352855784437,
          -3.3510228525841237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.698578963307436,
          -3.7241939195143297,
          -7,
          -7,
          -7,
          -7,
          -2.6924062348336304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.050476427265063,
          -7,
          -7,
          -7,
          -2.401400540781544,
          -7,
          -4.610053003934577,
          -7,
          -4.941476647930497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.152838509892218,
          -7,
          -7,
          -4.603555728624722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.481442628502305,
          -7,
          -7,
          -2.5634810853944106,
          -4.32577214153862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4653828514484184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.622214022966295,
          -7,
          -7,
          -7,
          -2.2405492482826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2355284469075487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603642280263075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6074550232146687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9020028913507296,
          -7,
          -7,
          -7,
          -3.171433900943008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2788907249286785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.845872874264218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275449569516267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3384564936046046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658393026279124,
          -7,
          -7,
          -7,
          -3.6027109449575576,
          -3.629409599102719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5971464878336956,
          -7,
          -7,
          -7,
          -3.555036838379667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.378397900948138,
          -7,
          -7,
          -7,
          -2.639486489268586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.699924402742477,
          -2.2671717284030137,
          -7,
          -3.065206128054312,
          -7,
          -7,
          -2.24551266781415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.518013555046075,
          -7,
          -7,
          -7,
          -2.225309281725863,
          -7,
          -7,
          -7,
          -7,
          -2.419955748489758,
          -7,
          -2.8680563618230415,
          -7,
          -7,
          -7,
          -3.8190962499555887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6748611407378116,
          -7,
          -3.7575099022757996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096144981294344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4153072922255676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -7,
          -7,
          -3.7719180361289046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -7,
          -7,
          -4.028863936842829,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1271047983648077,
          -3.2089785172762535,
          -7,
          -7,
          -7,
          -7,
          -3.2225492597345475,
          -2.271841606536499,
          -7,
          -2.688419822002711,
          -7,
          -7,
          -7,
          -2.5998830720736876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9134959596171237,
          -7,
          -3.3136563466180315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1492868696291,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.865991800126275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.894302213787551,
          -7,
          -7,
          -7,
          -3.6080979463252794,
          -7,
          -7,
          -2.8344207036815328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.197969367916172,
          -2.6414741105040997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.635651266385708,
          -7,
          -7,
          -7,
          -3.4299029384459896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7967962800566575,
          -2.273695587930092,
          -7,
          -7,
          -7,
          -7,
          -2.0863598306747484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -7,
          -7,
          -5.131929679727997,
          -7,
          -3.030599721965951,
          -7,
          -2.680335513414563,
          -7,
          -7,
          -7,
          -2.3170181010481117,
          -7,
          -2.678518379040114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7209857441537393,
          -7,
          -2.6597260952377915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.427112676054709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.655416985727724,
          -4.80201390056662,
          -4.392221958741192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.10122450682362,
          -3.8656960599160706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703592270036801,
          -7,
          -4.580080643863007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.000737673774033,
          -3.7281101841003403,
          -7,
          -7,
          -7,
          -3.8429834701222174,
          -7,
          -7,
          -7,
          -3.659821158055705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8752735332544463,
          -4.502358829319633,
          -5.172226262615762,
          -7,
          -7,
          -7,
          -4.61056435226876,
          -7,
          -4.941715115684539,
          -7,
          -7,
          -7,
          -7,
          -4.000997730357794,
          -7,
          -3.1565491513317814,
          -3.638189640190837,
          -7,
          -7,
          -7,
          -7,
          -3.9050183100925886,
          -4.562399937566829,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9429995933660407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.669316880566112,
          -7,
          -2.4899584794248346,
          -7,
          -2.346352974450639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.342422680822206,
          -2.416640507338281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779913799850263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5911759503117913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3324384599156054,
          -7,
          -2.6599162000698504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5959369062691735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.178113252314632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334152052992287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3933119147002,
          -7,
          -7,
          -3.041392685158225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2794387882870204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.829946695941636,
          -7,
          -7,
          -7,
          -4.216297886630392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.306425027550687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2922191399833594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426348573787507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1271047983648077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.970588600307352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605628222007619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0637085593914173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097618203875831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3483048630481607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0457140589408676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.13510083376572,
          -3.388988785124714,
          -7,
          -7,
          -7,
          -7,
          -3.469674772551798,
          -7,
          -7,
          -7,
          -7,
          -4.979215925719661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.001279282706004,
          -7,
          -7,
          -7,
          -7,
          -3.24551266781415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.127049234748905,
          -7,
          -2.889021422095225,
          -7,
          -7,
          -3.0549193271238146,
          -7,
          -7,
          -3.229169702539101,
          -7,
          -7,
          -2.6672661193822744,
          -3.117105502761251,
          -2.586024382386976,
          -2.151905874537198,
          -2.839030505034086,
          -7,
          -3.2116544005531824,
          -7,
          -2.929418925714293,
          -7,
          -7,
          -3.620471511314936,
          -3.2203696324513946,
          -3.190611797813605,
          -2.9156636035057732,
          -2.18700767354478,
          -3.269045709657623,
          -7,
          -2.5332635167787148,
          -3.1838390370564214,
          -3.4709981696608736,
          -3.197831693328903,
          -3.459675139563483,
          -7,
          -3.256717745977487,
          -2.7745169657285493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7288946220436823,
          -2.2670151976815847,
          -2.1692368714947654,
          -2.90444504107691,
          -7,
          -3.4122925093230463,
          -7,
          -3.2000292665537704,
          -7,
          -2.9161906599805376,
          -3.295127085252191,
          -7,
          -7,
          -7,
          -7,
          -3.0806986228711293,
          -2.7078539359785987,
          -7,
          -7,
          -7,
          -3.5298151966446305,
          -2.8208579894397,
          -7,
          -7,
          -3.6509143340199595,
          -3.1936810295412816,
          -2.18700767354478,
          -7,
          -7,
          -7,
          -7,
          -2.7209857441537393,
          -7,
          -1.9804578922761003,
          -2.2357808703275603,
          -1.9448937412598015,
          -7,
          -2.7993405494535817,
          -7,
          -2.9444826721501687,
          -2.9761206182998157,
          -7,
          -7,
          -7,
          -7,
          -3.2008504980910777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8690143007117155,
          -7,
          -7,
          -7,
          -2.721260875288632,
          -2.311753861055754,
          -7,
          -3.1925674533365456,
          -2.429752280002408,
          -7,
          -3.2639740409646225,
          -7,
          -7,
          -7,
          -2.9722028383790646,
          -7,
          -7,
          -2.4103084859146473,
          -2.886678690759447,
          -7,
          -3.2741578492636796,
          -2.944975908412048,
          -3.793021659845983,
          -7,
          -7,
          -1.7161848669318633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0679383299743406,
          -7,
          -7,
          -7,
          -2.88394519503428,
          -3.1838390370564214,
          -3.485934263771752,
          -3.5970366649776535,
          -3.604657972047871,
          -3.0184924534014725,
          -7,
          -7,
          -2.7234556720351857,
          -3.1920095926536702,
          -2.1358138977625867,
          -2.890867938811441,
          -3.068556895072363,
          -7,
          -7,
          -7,
          -2.5886670891458565,
          -7,
          -3.1878026387184195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.96543689977626,
          -3.240798771117331,
          -3.295786940251609,
          -3.2245330626060857,
          -7,
          -2.062545750245087,
          -7,
          -7,
          -7,
          -7,
          -3.1958996524092336,
          -3.2089785172762535,
          -7,
          -7,
          -7,
          -3.931915317081246,
          -7,
          -7,
          -1.4727977870291447,
          -2.505421327583281,
          -1.4473965891520644,
          -1.761551988564182,
          -1.4936903561528552,
          -1.586111033321402,
          -2.903993825990188,
          -2.5591881890047756,
          -2.754857772111842,
          -2.659440781870318,
          -2.92272545799326,
          -2.912487761332324,
          -3.1359273350054684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2404244330836076,
          -7,
          -3.3350565194390915,
          -3.2062860444124324,
          -3.20682587603185,
          -7,
          -7,
          -3.250175948083925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.182414652434554,
          -2.5854607295085006,
          -2.8898617212581885,
          -7,
          -7,
          -2.910357557272878,
          -7,
          -7,
          -2.8271537957574657,
          -7,
          -7,
          -4.153589277403475,
          -7,
          -7,
          -7,
          -2.698535492562001,
          -7,
          -7,
          -2.9457147140598603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4102146756795046,
          -7,
          -3.1838390370564214,
          -3.2342641243787895,
          -2.283261543549604,
          -7,
          -7,
          -7,
          -3.1975562131535367,
          -2.9079485216122722,
          -2.364684974834258,
          -7,
          -2.6354837468149124,
          -7,
          -7,
          -2.9752019622578523,
          -1.8703114792547921,
          -3.184975190698261,
          -7,
          -7,
          -3.0387525889920166,
          -2.8109042806687006,
          -2.5368389039838624,
          -2.9607085516885565,
          -3.561247184547739,
          -7,
          -7,
          -3.2000292665537704,
          -3.1360860973840974,
          -7,
          -3.064083435963596,
          -2.665893545534433,
          -7,
          -2.88930170250631,
          -7,
          -3.187238619831479,
          -2.6198756085000428,
          -1.888006588777431,
          -2.968015713993642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.927883410330707,
          -3.2079035303860515,
          -1.0909969190427458,
          -2.8587376566001557,
          -3.269045709657623,
          -2.747670701773019,
          -3.222882875472395,
          -7,
          -7,
          -3.245265839457461,
          -7,
          -3.1917303933628562,
          -7,
          -3.2095150145426308,
          -2.0529113107194163,
          -2.019116290447073,
          -3.100198171834132,
          -7,
          -3.060697840353612,
          -7,
          -3.7223665188137702,
          -2.7714037303044066,
          -7,
          -7,
          -3.187238619831479,
          -3.4046627008737222,
          -2.6089536992758626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2177470732627937,
          -3.193958978019187,
          -2.496006598880036,
          -7,
          -3.4109037084978153,
          -3.582404298019028,
          -4.1564248034664555,
          -7,
          -1.8042111928249227,
          -3.21842807601491,
          -3.3769417571467586,
          -7,
          -2.5024271199844326,
          -7,
          -2.0453229787866576,
          -2.7609607093960578,
          -2.89835945989891,
          -2.589111464400596,
          -7,
          -7,
          -3.0023820749327608,
          -3.2005769267548483,
          -7,
          -7,
          -2.6138418218760693,
          -7,
          -1.5460488664017342,
          -7,
          -7,
          -3.3304949423022174,
          -3.912540882790638,
          -7,
          -7,
          -4.1485563851735865,
          -3.532754378992498,
          -7,
          -3.943362591700379,
          -3.5676457844583123,
          -7,
          -3.605628222007619,
          -3.987990077819066,
          -4.191702463559194,
          -4.112625107295181,
          -3.302214337325348,
          -7,
          -3.4112660665121393,
          -3.363442741279142,
          -4.050341081834084,
          -4.62260771535978,
          -7,
          -4.106027623544182,
          -3.6414741105040997,
          -3.590089133690572,
          -3.641936582803575,
          -7,
          -4.036688766393468,
          -4.470278153606753,
          -7,
          -3.4365894474446383,
          -7,
          -3.8969669019331548,
          -7,
          -3.9130717403092508,
          -3.8781769804915065,
          -7,
          -7,
          -4.073333361861047,
          -3.235427436444969,
          -3.5429498488141786,
          -2.6956567599361905,
          -3.5866098063935756,
          -2.7066771503975513,
          -1.567188673731501,
          -7,
          -3.799064719351008,
          -7,
          -3.3037478776800056,
          -2.5884781135660653,
          -3.4708513245261177,
          -4.1165745397769165,
          -3.4807253789884878,
          -3.5039268041935103,
          -7,
          -3.824776462475546,
          -7,
          -7,
          -7,
          -3.9208534961212593,
          -7,
          -7,
          -2.6447485068361107,
          -3.2530551694438183,
          -4.477367285224013,
          -3.2219355998280053,
          -2.6646419755561257,
          -3.2317243833285163,
          -3.1334667946657992,
          -7,
          -4.471580166756362,
          -2.949390006644913,
          -3.6281845080734128,
          -7,
          -7,
          -3.7575099022757996,
          -3.159481253887955,
          -7,
          -7,
          -7,
          -3.1157768761589635,
          -7,
          -7,
          -3.127188429114518,
          -3.0099674143453172,
          -7,
          -3.801393908632056,
          -7,
          -7,
          -3.249361442065167,
          -4.064607720130627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5520398850766086,
          -2.929418925714293,
          -2.9206450014067875,
          -7,
          -2.8698182079793284,
          -3.0036171757475993,
          -3.0863598306747484,
          -3.2487087356009177,
          -7,
          -3.088726563953855,
          -7,
          -3.4108764326654217,
          -2.5814945422908995,
          -7,
          -7,
          -2.5812414937873656,
          -3.4750898033890065,
          -3.130440988463926,
          -7,
          -3.313234291694724,
          -2.3347552398696707,
          -7,
          -3.0847549631793543,
          -7,
          -2.767897616018091,
          -7,
          -3.608044405736923,
          -7,
          -7,
          -4.011217903207838,
          -2.381037405021494,
          -3.7975445143617264,
          -7,
          -7,
          -2.798190099822149,
          -3.4326486600131068,
          -3.238297067875394,
          -7,
          -7,
          -2.8969669019331548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5434471800817002,
          -2.909556029241175,
          -7,
          -7,
          -3.225567713439471,
          -7,
          -4.3582395081717715,
          -7,
          -3.215373152783422,
          -3.226084115975824,
          -7,
          -7,
          -7,
          -7,
          -3.4760341590784485,
          -7,
          -2.917687664328476,
          -2.812690584397959,
          -3.584670384464349,
          -2.4168781513835556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.244771761495295,
          -2.971507781711256,
          -7,
          -7,
          -2.9066043717249803,
          -2.3421758524655174,
          -7,
          -3.3119656603683665,
          -7,
          -7,
          -3.6090605499300867,
          -3.0542299098633974,
          -3.3475251599986895,
          -7,
          -3.4888326343824008,
          -7,
          -7,
          -7,
          -3.822778104826663,
          -7,
          -3.225567713439471,
          -3.2013971243204513,
          -3.1638170938993255,
          -2.9459607035775686,
          -3.716128602823834,
          -3.5328817194073974,
          -7,
          -3.2174839442139063,
          -7,
          -2.912487761332324,
          -7,
          -3.273926780100526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.866905912191609,
          -7,
          -7,
          -7,
          -3.226857570288723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.244771761495295,
          -7,
          -2.997386384397313,
          -7,
          -7,
          -7,
          -7,
          -2.50944691990756,
          -7,
          -7,
          -3.5296869537729165,
          -7,
          -7,
          -3.1486026548060932,
          -7,
          -7,
          -7,
          -7,
          -2.9635517335740964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.214684930750601,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8129133566428557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9440876794154343,
          -7,
          -4.955682940824174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8529676910288186,
          -3.464365331981961,
          -3.4166959692478005,
          -7,
          -7,
          -3.5616180933850865,
          -3.349588320562463,
          -7,
          -3.8723893884178207,
          -7,
          -3.8861521819707967,
          -7,
          -3.1709947020363,
          -3.3322364154914434,
          -7,
          -7,
          -2.965349706108749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.859438535455056,
          -3.1866133147403364,
          -3.8555191556678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1129704155080913,
          -7,
          -7,
          -7,
          -7,
          -3.852479993636856,
          -7,
          -7,
          -7,
          -7,
          -3.9196532823103643,
          -3.599810319835993,
          -7,
          -7,
          -3.6069722055085722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9028727854460796,
          -7,
          -7,
          -7,
          -2.942776694080424,
          -7,
          -7,
          -7,
          -7,
          -3.949194774237982,
          -3.8750033536000412,
          -7,
          -2.385202520149573,
          -3.4662372137034914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.859018143888894,
          -3.5682604085454175,
          -3.5775492423982382,
          -2.976884683384128,
          -3.5683190850951116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.477796299015296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8573928109209015,
          -7,
          -7,
          -7,
          -7,
          -3.8694664100808667,
          -7,
          -2.757633231530858,
          -7,
          -7,
          -7,
          -7,
          -3.2930861980480297,
          -3.5495549806880504,
          -3.405132832229078,
          -3.1412929600815933,
          -7,
          -7,
          -7,
          -2.8840019247687874,
          -7,
          -3.893817223967463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0908546858840182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4634450317704277,
          -3.4987239707479048,
          -3.678108473882829,
          -3.8806992892187013,
          -7,
          -3.639021399134131,
          -7,
          -7,
          -7,
          -3.3710678622717363,
          -3.8950355974523228,
          -7,
          -7,
          -7,
          -3.369864957856229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.874191804679071,
          -7,
          -7,
          -3.525339998131806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.931915317081246,
          -7,
          -7,
          -7,
          -3.8910354153153106,
          -3.349609355807689,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2962262872611605,
          -3.865044721693099,
          -3.8584770418133405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.89990685758534,
          -7,
          -3.351409751925439,
          -7,
          -7,
          -3.8522969658269255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4716339254486073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.849910558301496,
          -7,
          -7,
          -7,
          -3.4028629579685634,
          -2.8593002162054635,
          -3.8479426388452236,
          -7,
          -7,
          -3.5746677663162267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.014257950635828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.598133645813238,
          -7,
          -3.49084770815903,
          -3.924382677201973,
          -7,
          -7,
          -7,
          -3.466818209752554,
          -7,
          -3.592361839214949,
          -7,
          -2.94873131349413,
          -7,
          -7,
          -7,
          -2.8937221420714265,
          -3.888010912245029,
          -3.8937062930647133,
          -3.91902576458736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9792751475910233,
          -3.885361220031512,
          -7,
          -7,
          -2.7002340851124638,
          -7,
          -7,
          -2.9516496988610452,
          -7,
          -7,
          -3.5669086552268032,
          -7,
          -7,
          -7,
          -3.904715545278681,
          -7,
          -7,
          -7,
          -3.034066020351715,
          -3.896415976473123,
          -7,
          -7,
          -7,
          -3.9056879677118523,
          -7,
          -7,
          -7,
          -3.5644293269979834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0845487813702075,
          -2.9276502821475883,
          -3.0165873673554606,
          -7,
          -3.903307079964174,
          -2.978180516937414,
          -3.4197905861063624,
          -7,
          -3.8708134239155974,
          -7,
          -7,
          -3.5030639822276726,
          -3.2945213361777705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.663748026358395,
          -7,
          -7,
          -3.269018738474736,
          -3.518631675212612,
          -3.024040746405299,
          -7,
          -3.3807537708039,
          -7,
          -3.471365065418019,
          -3.1600454084072833,
          -3.1717335866238385,
          -7,
          -3.2039225311945088,
          -3.1028843304520466,
          -3.512967742271094,
          -3.355346451621734,
          -3.220493466955287,
          -3.5666394818031004,
          -3.2647345104508063,
          -3.509362160076662,
          -3.6214878645806303,
          -3.445466833516987,
          -3.5698418994037615,
          -3.1893825770776196,
          -3.2509381626112535,
          -2.9381410984255703,
          -3.229216285664953,
          -3.28315726254433,
          -3.4114867925782897,
          -3.502923456589202,
          -7,
          -3.179067762715081,
          -3.166892434227915,
          -3.47643549340525,
          -3.536450216176842,
          -3.561757102571363,
          -3.8149464337908365,
          -4.382359297519319,
          -4.257510583190615,
          -3.350933519151349,
          -3.1336360861599792,
          -3.60151678365001,
          -3.9029813997975027,
          -3.3891168418357758,
          -3.47633237460754,
          -3.2436049203372175,
          -7,
          -3.4793593328069714,
          -3.1932916025795164,
          -3.3417260043823003,
          -3.8098626051382367,
          -3.6265456590271294,
          -3.1224967326576327,
          -3.235107414899873,
          -3.3760291817281805,
          -3.9138138523837167,
          -3.784866815467607,
          -3.9170851906405675,
          -7,
          -3.5201777376898518,
          -3.231528402060794,
          -7,
          -3.878004470268025,
          -3.3225146327132733,
          -3.2460483982279698,
          -3.060932757396147,
          -7,
          -3.4649364291217326,
          -7,
          -3.502372488311689,
          -4.061490176624815,
          -3.6524397475894204,
          -3.7346798421638807,
          -3.146914779664304,
          -3.8542452970661185,
          -3.7547686638684996,
          -3.928190948038757,
          -3.632406672162299,
          -3.3200943339030964,
          -3.574956775764507,
          -3.7119337041617966,
          -3.070304726837112,
          -7,
          -7,
          -3.5590130051978,
          -3.433469803182775,
          -7,
          -3.053288028212929,
          -7,
          -3.94215692846749,
          -3.4327288399232216,
          -3.1535862281287175,
          -7,
          -7,
          -7,
          -3.1728363601227105,
          -3.3675422735205767,
          -2.9409356881329756,
          -7,
          -3.301355594441124,
          -3.867820908045573,
          -2.9224895437705523,
          -2.8973914245675183,
          -3.298033910215436,
          -3.862250674597925,
          -3.8527848686805477,
          -2.904749346460307,
          -3.865991800126275,
          -2.828483325349808,
          -3.8925398046586355,
          -3.184237029016371,
          -3.343851525491311,
          -3.315130317183602,
          -3.150500596270051,
          -2.6363054963162855,
          -2.9452496866988067,
          -3.878866336956725,
          -3.2157256645575676,
          -3.288305130120162,
          -3.054175147303347,
          -3.2725377773752373,
          -3.3842339054735975,
          -7,
          -2.7525605875980133,
          -3.5660837841679958,
          -7,
          -2.5575072019056577,
          -3.2413059789193195,
          -2.9340001857393228,
          -3.8500945943867007,
          -3.058378568358843,
          -7,
          -3.0108827245590275,
          -3.5585885831081994,
          -7,
          -7,
          -2.9751099896861612,
          -3.015180059737978,
          -3.175627764367181,
          -2.599923484718011,
          -7,
          -3.295860195625301,
          -3.10300507069192,
          -2.9002677932301673,
          -7,
          -3.192455938511975,
          -7,
          -7,
          -2.7786591702013523,
          -3.865400118179301,
          -3.8543667780408697,
          -3.8568496787251725,
          -3.119915410257991,
          -3.122117536313263,
          -2.8850217948622974,
          -3.1813861950832174,
          -2.883396425218766,
          -3.170672340315576,
          -2.7963658130592655,
          -7,
          -3.0671638826028436,
          -3.388870545406613,
          -7,
          -3.0683286043873492,
          -3.3779736964389593,
          -2.798468909458224,
          -3.8836614351536176,
          -3.5601458398490475,
          -3.8682916880178557,
          -2.8550141033002596,
          -7,
          -3.5515719736742537,
          -3.557426992378806,
          -3.0373695748811147,
          -3.4011706945301334,
          -2.8028457117801073,
          -3.4148619761323045,
          -2.833784374656479,
          -2.8483011062859602,
          -3.0060736450562517,
          -2.8817649496862066,
          -3.331680308168973,
          -2.8851041041149954,
          -7,
          -3.3716834463321415,
          -2.8996666397554955,
          -3.12441105858231,
          -3.8567288903828825,
          -3.0933716483533886,
          -3.2613739070666825,
          -3.4344624462614135,
          -3.087180544900543,
          -2.9085352815350225,
          -2.5419950357274104,
          -7,
          -3.409087369447835,
          -7,
          -3.8499719123288503,
          -3.391170433298193,
          -3.1157768761589635,
          -2.9077247853330963,
          -3.8506462351830666,
          -7,
          -7,
          -2.7410271294508175,
          -3.3750536497006407,
          -3.5709513581793884,
          -3.8547310172139424,
          -3.857030798272624,
          -3.1740016264024247,
          -3.5571461423183632,
          -3.8642736968043794,
          -3.2737880795675203,
          -3.2536287301937543,
          -3.5781806096277777,
          -7,
          -2.8867726430544383,
          -7,
          -7,
          -7,
          -3.2612033723225187,
          -7,
          -3.864333055033393,
          -3.4577683903130203,
          -2.8565562773114914,
          -3.2095150145426308,
          -3.555638487947554,
          -7,
          -3.355930187078868,
          -7,
          -7,
          -2.934111116821407,
          -3.547528576459782,
          -7,
          -3.221101119961505,
          -2.7559644840871944,
          -3.1925674533365456,
          -7,
          -7,
          -3.8662873390841948,
          -7,
          -2.6941872061371988,
          -3.8483738838446016,
          -3.5629467882404056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8770256158672485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.692935002531138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.215082115013175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517116688085895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.59280571403281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.42620210284358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669465649765787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.957607287060095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3961993470957363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9885589568786157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.162862993321926,
          -7,
          -7,
          -3.6885977750811696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979133912871117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.302157695941016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6644163094134004,
          -7,
          -7,
          -7,
          -2.9686697017203922,
          -3.691435152144062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5688136938468413,
          -7,
          -7,
          -7,
          -3.3757321813607444,
          -7,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -7,
          -4.264876826403677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.884834412185107,
          -7,
          -7,
          -3.0090257420869104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.452016565962548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9190780923760737,
          -7,
          -7,
          -7,
          -2.940516484932567,
          -7,
          -7,
          -2.341337525385835,
          -7,
          -7,
          -7,
          -7,
          -3.418135498425232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -7,
          -7,
          -7,
          -3.164404585220732,
          -3.0519239160461065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1365620365899805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.480474061544751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590618948206578,
          -3.8172347304254983,
          -7,
          -7,
          -7,
          -4.741380114764399,
          -7,
          -3.1914510144648953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4277294795038933,
          -7,
          -3.2113875529368587,
          -7,
          -7,
          -3.832061614590727,
          -2.91539983521227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6191281284699492,
          -7,
          -7,
          -7,
          -2.7238659644435037,
          -7,
          -7,
          -2.86421433046133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4106406792031247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8910354153153106,
          -7,
          -7,
          -3.773018073398652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.215108581053093,
          -2.720159303405957,
          -7,
          -7,
          -7,
          -7,
          -3.2942457161381182,
          -7,
          -1.5314789170422551,
          -7,
          -3.946845113960623,
          -7,
          -3.433449793761596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7894335518935525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.711174300366762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2182728535714475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.922898380345496,
          -7,
          -3.436162647040756,
          -7,
          -3.6601469298342457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3057811512549824,
          -2.6881972780665557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.512817758564873,
          -3.1470576710283598,
          -7,
          -7,
          -3.1502799204175456,
          -7,
          -7,
          -2.8934843462184863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0311079538669303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.104487111312395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.091519876777007,
          -7,
          -7,
          -4.2510417205264535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5160062303860475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.469232742506612,
          -7,
          -7,
          -4.624055089282426,
          -7,
          -3.9807530758424656,
          -7,
          -7,
          -7,
          -3.745933158459443,
          -3.1518463489431174,
          -4.7378999822802434,
          -7,
          -7,
          -3.882399297374088,
          -7,
          -7,
          -4.403583750366688,
          -4.290969008948517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325282992157282,
          -3.601625479553945,
          -4.010808597512207,
          -3.791971201020768,
          -7,
          -7,
          -3.680531913962837,
          -7,
          -4.408129681227052,
          -7,
          -4.110320296840297,
          -7,
          -4.193291602579516,
          -7,
          -7,
          -7,
          -7,
          -4.097812407365289,
          -3.686055033960141,
          -7,
          -4.100921680320846,
          -4.315760490665735,
          -7,
          -7,
          -7,
          -7,
          -2.735648025254694,
          -7,
          -7,
          -7,
          -3.8562151648112137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.063839803002981,
          -3.5508667518642625,
          -4.696999635006528,
          -7,
          -7,
          -7,
          -4.015349275203567,
          -7,
          -3.7986950293949935,
          -7,
          -7,
          -7,
          -7,
          -3.7273378880330803,
          -4.289365951520032,
          -7,
          -3.699056854547668,
          -3.3038437748886547,
          -7,
          -7,
          -7,
          -4.008961933117199,
          -4.09294276329501,
          -3.203304916138483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092896010921856,
          -7,
          -7,
          -3.2392994791268923,
          -7,
          -7,
          -4.014688511872338,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.633963067531229,
          -3.184975190698261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.444918753773256,
          -7,
          -7,
          -7,
          -7,
          -2.9836262871245345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.129002037005967,
          -7,
          -7,
          -7,
          -7,
          -3.9524049395770247,
          -7,
          -3.7562556487542333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.168173262170234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.078642684050268,
          -4.192437349923709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669660832034381,
          -3.439472017303169,
          -1.8363677743629234,
          -4.375681899659375,
          -4.067470728941126,
          -4.1924559385119755,
          -2.7837142054247326,
          -2.6475373859320346,
          -3.2384085612286544,
          -4.196074810185649,
          -4.670922750442565,
          -3.529072695212456,
          -4.669484242333031,
          -2.1517877352979724,
          -2.838055133510821,
          -3.221898380435438,
          -2.371806458507416,
          -1.5208106485077677,
          -3.891323695765261,
          -3.391213768955675,
          -3.970430565175467,
          -2.921779342902304,
          -3.4941731532151254,
          -3.09074056116527,
          -2.3814459294110506,
          -3.2387614348007605,
          -3.628007884353261,
          -4.193337981247228,
          -2.3819516782648016,
          -3.1947732688446826,
          -3.4387005329007363,
          -2.3752248996285106,
          -3.8241537379985804,
          -3.009541300362376,
          -3.493476639981276,
          -2.24256846111836,
          -3.669307580798836,
          -3.3928634949578282,
          -3.495442573988997,
          -4.669642247025738,
          -4.192985379093162,
          -4.068018793276356,
          -3.523588546610636,
          -7,
          -2.8114912218475876,
          -2.526211824863059,
          -1.6835520910142645,
          -3.0673219820337434,
          -3.4941081925565785,
          -2.8327278295294405,
          -4.67066324328588,
          -3.3473114255351692,
          -3.555856841947366,
          -3.1016449143243836,
          -3.394405594501357,
          -3.7238112811795303,
          -3.414824845838442,
          -7,
          -7,
          -2.1934628459235785,
          -3.465038774776985,
          -4.368333380751638,
          -7,
          -7,
          -3.363746249326481,
          -2.873163691847328,
          -3.493411575048662,
          -3.771229095215522,
          -2.6306215619417825,
          -3.465289884631858,
          -2.3819516782648016,
          -7,
          -4.067833086234314,
          -7,
          -7,
          -3.1251744325010917,
          -3.523095838252568,
          -2.1420343984273713,
          -2.777807762110115,
          -2.1400652631443045,
          -3.6295671250801513,
          -2.6496500552675855,
          -3.9751927658771193,
          -1.824246144417384,
          -3.2573369850674387,
          -3.82486004404595,
          -4.368379871623802,
          -7,
          -7,
          -2.8298163247172368,
          -3.971062360951899,
          -4.192604618582549,
          -7,
          -3.3860439219322616,
          -4.192827543293699,
          -7,
          -4.1921677259471775,
          -1.9400745984269563,
          -3.627859092854612,
          -4.06756366989378,
          -3.76767522402796,
          -3.3077471101313116,
          -2.1646884198754046,
          -3.6283146059185416,
          -3.555485109936394,
          -2.0906088327618333,
          -4.671802067369607,
          -2.267754435393497,
          -3.192818257048295,
          -3.7679439333520977,
          -3.465661632552612,
          -2.662146501450624,
          -3.472573626968942,
          -2.8693807441750576,
          -2.227111556054666,
          -2.2884260153495157,
          -4.067842373472633,
          -3.6310561626158684,
          -3.525192941934471,
          -2.604558668716702,
          -3.1380703930086145,
          -3.157594120512708,
          -1.9682317095729847,
          -3.41740710243536,
          -4.670366473678122,
          -3.6704314093606056,
          -3.152232733334654,
          -7,
          -7,
          -2.5560831047121524,
          -4.368277585134854,
          -4.067210388410234,
          -7,
          -3.7150278702988717,
          -3.7661431884987495,
          -2.412345401424098,
          -2.9915273183833317,
          -2.8582894438957243,
          -3.211645201640165,
          -3.8253704710918672,
          -3.6427694415679754,
          -2.811304977239847,
          -3.6694656497657867,
          -2.0410924859104984,
          -2.6804688266371786,
          -3.074121305906298,
          -7,
          -3.6698094834789914,
          -4.368937374244523,
          -1.7325864900722077,
          -4.1921677259471775,
          -3.8912493191278426,
          -7,
          -3.495812509045674,
          -4.368472838440362,
          -7,
          -2.984802764398631,
          -3.41749014594413,
          -2.9812637281762018,
          -3.466950987999048,
          -3.009931003697816,
          -3.4151681799908333,
          -4.068102335544942,
          -1.0077450772374068,
          -3.289133536961551,
          -3.9705049418128855,
          -4.669316880566112,
          -3.5907489792763627,
          -3.8245534996152175,
          -3.2225492597345475,
          -3.970588600307352,
          -1.4727977870291447,
          -7,
          -3.349609355807689,
          -4.669465649765787,
          -3.773018073398652,
          -7,
          -2.7142272757687214,
          -2.0318216577267725,
          -2.0734792672231546,
          -1.9937510507229985,
          -1.894427214702641,
          -3.1454066540283647,
          -2.8928363526263907,
          -3.3282498332470345,
          -2.9900797402371215,
          -3.0902766208563244,
          -2.704905528094701,
          -3.1483939488110453,
          -7,
          -7,
          -7,
          -3.4161965568964496,
          -4.669493538318174,
          -2.726512260525233,
          -4.669409867287783,
          -2.787350048968867,
          -2.719089096287673,
          -3.555968299533478,
          -4.067303385087657,
          -4.1925209923060756,
          -3.630122642859312,
          -7,
          -7,
          -3.590042627883181,
          -3.343480209334696,
          -3.467034339643714,
          -4.192158425582441,
          -3.2376926476186703,
          -3.3905260793492746,
          -4.368277585134854,
          -4.6694377594224,
          -3.493959674554181,
          -4.067638008337918,
          -3.9709509343454243,
          -2.5283524591538877,
          -2.8227388533320608,
          -2.7317551363799857,
          -2.5817098278976522,
          -4.368407763758419,
          -3.76654296723122,
          -4.192539577314719,
          -3.104911380171239,
          -7,
          -4.192390874971884,
          -3.4160021857814553,
          -4.067795935294864,
          -3.391213768955675,
          -7,
          -4.368324081979958,
          -4.067480023931482,
          -3.177685412596826,
          -7,
          -3.7661431884987495,
          -3.0368609076345705,
          -1.8030605934580088,
          -7,
          -4.368286884902131,
          -4.669335479503264,
          -3.5234491575534,
          -2.928861184436562,
          -2.611341248488478,
          -4.368472838440362,
          -3.0370371541027277,
          -3.5634354446522214,
          -2.799387125085768,
          -2.9565241471648407,
          -1.5183510800440148,
          -3.970356175798233,
          -4.368426357519688,
          -2.8834100830783638,
          -3.22250119856757,
          -2.845939884498351,
          -2.2215638729371334,
          -3.0279145829217957,
          -2.5490200674618704,
          -4.669874502489803,
          -4.669521425079791,
          -3.493550987970057,
          -2.3664748411615104,
          -3.277361630267923,
          -3.0324355992428838,
          -2.4224256763712044,
          -3.0775949873713713,
          -3.766375662773843,
          -3.715306800611545,
          -3.669307580798836,
          -2.818160816145953,
          -1.9318626317634804,
          -2.7214308130498446,
          -4.669298280832415,
          -3.495090843570958,
          -2.9713871920233976,
          -4.192790397120652,
          -3.555671015714629,
          -3.1139804699071245,
          -2.913255991700841,
          -1.246372417574952,
          -2.765355755262699,
          -3.2247734691895307,
          -2.9138881796955367,
          -2.0761361797273654,
          -3.4945812550135593,
          -4.192400170360129,
          -2.7921748216786346,
          -4.368565785360332,
          -3.1126701557128023,
          -3.0485435302695847,
          -3.1132746924643504,
          -1.6083564501871657,
          -2.067913944212041,
          -2.996411332117376,
          -3.5254057973664397,
          -3.2610797766810538,
          -4.671043183218105,
          -2.2778454830341475,
          -2.557470466556451,
          -4.3686494205837585,
          -4.6693912715361305,
          -3.891230722978062,
          -3.146593102096305,
          -2.5478209546538007,
          -4.669540015259445,
          -3.4937089351985215,
          -3.3707813182108777,
          -7,
          -4.0672754881753015,
          -7,
          -3.3699205499219165,
          -3.494163873715923,
          -3.824488447213163,
          -2.6061403530336102,
          -2.6471406962754473,
          -2.873815282752997,
          -3.14553379809076,
          -2.6323899806850464,
          -4.671487568998327,
          -1.6706849001349,
          -2.3883298406118683,
          -2.7165536640656525,
          -4.1921677259471775,
          -2.747171268150613,
          -3.628899564420607,
          -1.793735581621422,
          -2.446084263545658,
          -2.7070387720538625,
          -3.066875435390042,
          -4.067294086315977,
          -4.368258985002859,
          -2.522055578229381,
          -3.41433256951902,
          -3.0576104477254815,
          -3.5237186027131404,
          -2.499283752832909,
          -3.2225306767139887,
          -1.3069645223546313,
          -4.669298280832415,
          -4.067210388410234,
          -2.1830749482495064,
          -3.013926173025573,
          -3.6091339945083023,
          -3.468716471515472,
          -3.4178452084766517,
          -2.9866821797795056,
          -3.155057554299442,
          -2.9039309228438346,
          -2.336011372536,
          -4.669642247025738,
          -3.0329454951737977,
          -2.866686256844357,
          -3.075769668011446,
          -2.8583115705066877,
          -2.3397805350094547,
          -3.8618130982567225,
          -2.7890101881385543,
          -2.2137294343074028,
          -3.575026109423261,
          -3.133289356859643,
          -4.2594903493437135,
          -2.946653770402097,
          -3.2843179154306097,
          -2.4589044615454947,
          -2.7309167946335178,
          -3.8295610562993927,
          -3.275424086374576,
          -3.316663311410181,
          -4.681395022773371,
          -2.399606128061048,
          -2.9131530351912573,
          -3.171053801432508,
          -3.2599827474128915,
          -3.145182275133918,
          -3.1532791307030545,
          -3.4620302575790087,
          -3.858446960810253,
          -3.165282220472543,
          -2.237749208835019,
          -3.012282485301065,
          -2.5585711775988758,
          -2.3656343704164615,
          -1.5025532094804224,
          -1.3242559139073553,
          -3.5276759237063207,
          -3.1378512485602417,
          -3.9774675246367477,
          -1.986032139177172,
          -2.1561071928505533,
          -2.483737164091958,
          -2.5958485054524854,
          -2.505867886525835,
          -2.7614548059120496,
          -7,
          -3.090879205198259,
          -3.449877525251001,
          -3.716856246874708,
          -3.4648488414960115,
          -2.590458060239311,
          -3.5737460987713385,
          -7,
          -1.4447201491172896,
          -1.8903131072361514,
          -2.840684167333266,
          -3.391575762261328,
          -2.6876640576421096,
          -3.629437401956792,
          -1.999376963319447,
          -3.805976350717563,
          -2.4215353775078543,
          -2.470168274303783,
          -2.731897397433134,
          -3.327600400007021,
          -3.245052943739646,
          -3.1088800834859853,
          -2.462464848431206,
          -3.425968732272281,
          -2.830793899704099,
          -3.1183169490065796,
          -2.1140592839654127,
          -2.4931871179946894,
          -2.8850922984181877,
          -2.0499724842459552,
          -1.9982710654658589,
          -3.773868689935876,
          -2.444930287804152,
          -4.377715941401723,
          -3.6056641155967877,
          -2.3135808237099367,
          -3.063279732418138,
          -3.0797006039934045,
          -3.6289552336843007,
          -7,
          -7,
          -3.765765384928689,
          -1.919244045161112,
          -3.2391418455233265,
          -2.6232218372873692,
          -3.827304641089735,
          -2.182519056204964,
          -2.341675935576924,
          -2.928597003413005,
          -3.114694366104735,
          -4.670190170724935,
          -2.594517165016293,
          -4.371178731816287,
          -2.2133103433761163,
          -2.7665321827419165,
          -3.633459273781007,
          -4.083663837854232,
          -2.119027360004553,
          -3.235077325560345,
          -2.6037564736529744,
          -4.200622533946479,
          -3.3516766956918618,
          -2.1640064186301355,
          -4.199023425636544,
          -3.563544974376491,
          -3.0393956715301442,
          -3.15243660570801,
          -7,
          -2.6914826123553053,
          -7,
          -3.590581789320403,
          -3.1318076361798615,
          -1.3300330586491649,
          -2.4575980750387347,
          -4.192623200012946,
          -3.7343374736148895,
          -2.8862780102586014,
          -3.638634451316608,
          -3.3698742236946972,
          -7,
          -3.39136231553266,
          -2.7453232539625274,
          -7,
          -3.4692603825691135,
          -3.588866164710985,
          -3.7666730483760844,
          -2.746794906209887,
          -2.770179807426844,
          -2.7103334589000303,
          -4.067321982033744,
          -3.5300074899760445,
          -3.2231342182366127,
          -2.936276058415254,
          -3.1691375262036536,
          -7,
          -3.3690487889403373,
          -3.391724185094446,
          -3.3995785469236655,
          -2.7828019969642233,
          -4.675420863687349,
          -7,
          -2.7342634585311685,
          -3.5934891334542405,
          -1.7091014698616578,
          -2.7222918382381724,
          -3.4113095114320773,
          -2.726171300154445,
          -7,
          -3.739493230781615,
          -3.971535605346295,
          -3.1810445178354394,
          -3.771817059827186,
          -3.89325303090974,
          -2.9081058394817405,
          -3.4047347157118026,
          -4.192307207523569,
          -3.089709941701364,
          -1.9275041833607214,
          -2.992847954780297,
          -3.35162147940743,
          -2.6439585524687246,
          -4.074313493881491,
          -3.1732657537216933,
          -3.244359600050387,
          -2.7264499166393055,
          -3.105884708669233,
          -3.3822152230475337,
          -3.7280470067735045,
          -4.669605074622326,
          -7,
          -2.385350881364017,
          -3.4858367262946746,
          -3.670626158173298,
          -3.0304827790555695,
          -2.2868412551961677,
          -2.7238477374538714,
          -2.743392160047862,
          -2.592343002156279,
          -3.126630854711548,
          -3.6703386411274423,
          -7,
          -3.4659866511569004,
          -7,
          -3.1037575071243726,
          -3.013222034507356,
          -3.3711030620190323,
          -4.067749492151028,
          -3.2899418034805743,
          -4.368351977697725,
          -2.147473108182756,
          -3.9710902131371153,
          -4.673186847835966,
          -7,
          -4.068723756708053,
          -4.1962406839924995,
          -7,
          -4.370910748617717,
          -3.389440755221461,
          -3.987978915875482,
          -3.3517503064858096,
          -3.524210605449204,
          -3.721315880605899,
          -7,
          -7,
          -4.067340578183524,
          -4.370809056545495,
          -3.4670991576426897,
          -3.9729245192283265,
          -2.6063643015001317,
          -3.7936419870291562,
          -3.4893343477460994,
          -4.369753752372034,
          -7,
          -2.316492290815025,
          -4.368909516103976,
          -4.36839846657925,
          -2.6100343496463325,
          -4.368519314386888,
          -7,
          -3.1123513354275403,
          -3.848461840439585,
          -3.8981490303871453,
          -7,
          -7,
          -3.180357146127899,
          -7,
          -3.620413692497615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2741578492636796,
          -3.9592608703276713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.178418620811301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1370374547895126,
          -3.3979400086720375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02649240705284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.009450895798694,
          -2.4885507165004443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.790988475088816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6665179805548807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.258972331109386,
          -7,
          -7,
          -3.02201573981772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.959470702075107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1474403631674783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.271841606536499,
          -7,
          -2.505421327583281,
          -7,
          -7,
          -7,
          -7,
          -2.7142272757687214,
          -7,
          -7,
          -2.199572354905204,
          -2.443262987458695,
          -2.829946695941636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.672125577975422,
          -7,
          -7,
          -7,
          -2.75815462196739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2840244503226454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.863322860120456,
          -7,
          -7,
          -7,
          -3.2678754193188975,
          -7,
          -7,
          -7,
          -4.496320655774951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4139699717480614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2764618041732443,
          -2.0766404436703416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.796765075634327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.131915256105172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9175055095525466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0570952896126675,
          -7,
          -7,
          -3.838901538594562,
          -4.746735366871247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.13049458852347,
          -7,
          -7,
          -7,
          -4.655330558009341,
          -4.801952234854282,
          -3.6137361412618714,
          -7,
          -7,
          -4.049053192149191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.78432481200424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.226359279795683,
          -4.219767844658398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9564565834098997,
          -7,
          -7,
          -3.523247738789921,
          -2.6464037262230695,
          -7,
          -7,
          -7,
          -7,
          -3.7760470711817797,
          -7,
          -4.066251361968962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.397746945996307,
          -4.678418215723125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2919235758838847,
          -4.053731315887608,
          -7,
          -7,
          -7,
          -4.274319524558622,
          -7,
          -3.6372895476781744,
          -7,
          -4.154028149603197,
          -7,
          -7,
          -4.603977505033251,
          -4.261239071182586,
          -7,
          -7,
          -7,
          -7,
          -3.591064607026499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.383546091724474,
          -7,
          -7,
          -7,
          -2.880432465023419,
          -3.6848004941944112,
          -7,
          -7,
          -7,
          -3.7737133252770216,
          -7,
          -4.3261719452891745,
          -7,
          -7,
          -7,
          -3.436480695009495,
          -7,
          -7,
          -7,
          -7,
          -3.4668676203541096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2779578252250885,
          -4.439719438480728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3979400086720375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.001658007471607,
          -2.717670503002262,
          -7,
          -2.611723308007342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.311117842662505,
          -7,
          -3.9529860651970554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.148170613077387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8532925186295284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8832922699131758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9609989878668697,
          -7,
          -7,
          -2.4782056360118823,
          -3.8378810064031437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6483600109809315,
          -2.795184589682424,
          -7,
          -7,
          -2.6866362692622934,
          -4.3419881690481885,
          -2.651278013998144,
          -7,
          -2.8438554226231614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.385095338854789,
          -3.12515582958053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7390578478058996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1868151244474543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -2.8115750058705933,
          -3.028977705208778,
          -2.797959643737196,
          -7,
          -7,
          -3.4082530148297936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9813655090785445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.468716471515472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9023768874830473,
          -7,
          -7,
          -7,
          -4.437782261990645,
          -7,
          -7,
          -2.2947810463869796,
          -7,
          -7,
          -2.7551122663950713,
          -7,
          -7,
          -7,
          -3.9753858489894673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.448087666692341,
          -7,
          -7,
          -7,
          -7,
          -4.085004999076652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4847227399449667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4473965891520644,
          -7,
          -7,
          -7,
          -7,
          -2.0318216577267725,
          -7,
          -7,
          -1.8222770753484876,
          -1.462397997898956,
          -1.7124724747396658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3783979009481375,
          -7,
          -3.030194785356751,
          -2.7134905430939424,
          -7,
          -7,
          -7,
          -2.837588438235511,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5482266039717745,
          -7,
          -7,
          -7,
          -2.960470777534299,
          -7,
          -7,
          -2.829946695941636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.674467460866252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4302363534115106,
          -7,
          -2.6434526764861874,
          -7,
          -7,
          -7,
          -2.931457870689005,
          -2.709354775834396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.258876629372131,
          -7,
          -7,
          -7,
          -3.229137673741424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7234556720351857,
          -2.5868684924328913,
          -2.6138418218760693,
          -7,
          -7,
          -7,
          -7,
          -3.92279117659816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7267272090265724,
          -7,
          -7,
          -4.956365355664486,
          -7,
          -2.6690067809585756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9410142437055695,
          -7,
          -7,
          -3.666299530410274,
          -4.050341081834084,
          -7,
          -2.4456042032735974,
          -7,
          -3.063896038125994,
          -2.8739015978644615,
          -4.402175375031505,
          -3.354748519560839,
          -7,
          -3.5645871661717736,
          -3.7325316092073675,
          -7,
          -7,
          -3.167004404880978,
          -7,
          -3.6144753660903954,
          -3.375355528567644,
          -7,
          -4.133996379664722,
          -7,
          -7,
          -7,
          -3.507735178133635,
          -3.0016255582867375,
          -7,
          -7,
          -7,
          -7,
          -3.7062738755272857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.353916230920363,
          -2.8736023939381226,
          -7,
          -7,
          -4.273313851575582,
          -3.7067391125831666,
          -1.8064954803413185,
          -7,
          -7,
          -7,
          -3.767885263894712,
          -7,
          -7,
          -4.078746734273607,
          -4.147428968698656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8816128724783483,
          -4.077849178425541,
          -4.571114618015548,
          -7,
          -3.3334472744967503,
          -7,
          -3.710836360863743,
          -7,
          -4.943355994438028,
          -7,
          -7,
          -2.739572344450092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.987368292714309,
          -7,
          -4.130473149293476,
          -3.611888452446593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5212252826767023,
          -7,
          -3.149834696715785,
          -7,
          -2.815577748324267,
          -4.000911062131223,
          -2.5266622930104643,
          -7,
          -7,
          -3.3204924754334133,
          -7,
          -4.0285712526925375,
          -7,
          -7,
          -7,
          -2.615799802742291,
          -7,
          -3.1705550585212086,
          -7,
          -7,
          -2.3649528098608803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.369092109159725,
          -7,
          -7,
          -4.472727202912817,
          -2.6371923965070563,
          -4.0444064726812945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1190908524217216,
          -2.705007959333336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.035889806536247,
          -7,
          -2.741151598851785,
          -7,
          -7,
          -3.3464181789371965,
          -7,
          -7,
          -3.6898414091375047,
          -7,
          -3.5136818186999896,
          -7,
          -7,
          -2.8744818176994666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8943160626844384,
          -3.3044905277734875,
          -7,
          -7,
          -3.6265456590271294,
          -7,
          -7,
          -3.7405995128111567,
          -7,
          -7,
          -7,
          -3.446304113951924,
          -3.3848012789620823,
          -3.2990712600274095,
          -7,
          -7,
          -7,
          -3.1288375888610482,
          -3.1354506993455136,
          -7,
          -2.717046067981814,
          -3.2764618041732443,
          -3.1936810295412816,
          -3.2697930438612297,
          -4.287465805343229,
          -3.4776999283321306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8574531170352664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.050379756261458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.09377178149873,
          -7,
          -7,
          -4.284092190642834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7075701760979367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.815957044839122,
          -7,
          -7,
          -7,
          -7,
          -3.6582022533870147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.436692597664054,
          -3.614264287358705,
          -7,
          -2.5895772957033327,
          -3.3473070513532233,
          -7,
          -7,
          -7,
          -2.7573960287930244,
          -7,
          -7,
          -4.561637954564607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9130565819531333,
          -7,
          -2.561101383649056,
          -7,
          -3.739038047296087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.682145076373832,
          -3.2232362731029975,
          -2.723044991643445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6702458530741238,
          -2.414137362184477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5613399414589013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7475930498107353,
          -7,
          -2.7649229846498886,
          -7,
          -7,
          -7,
          -7,
          -2.3521825181113627,
          -7,
          -2.9138138523837167,
          -7,
          -2.710963118995276,
          -7,
          -2.8830933585756897,
          -7,
          -3.743718761114515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.660865478003869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.2454076516168293,
          -2.6074550232146687,
          -7,
          -7,
          -2.3531465462139796,
          -2.493225621510431,
          -7,
          -2.6314437690131722,
          -2.0316969361864436,
          -7,
          -4.069557104582695,
          -7,
          -7,
          -7,
          -2.3944516808262164,
          -7,
          -2.655138434811382,
          -2.6434526764861874,
          -3.2606845578001846,
          -7,
          -7,
          -7,
          -3.8933257432834987,
          -7,
          -7,
          -1.8178957571617955,
          -7,
          -7,
          -2.2438644894340767,
          -7,
          -7,
          -7,
          -3.3712526291249394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4614985267830187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2052043639481447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6063455307542247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0425755124401905,
          -7,
          -2.554489160003819,
          -7,
          -7,
          -7,
          -7,
          -2.7032589244882543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.688419822002711,
          -7,
          -1.761551988564182,
          -7,
          -7,
          -7,
          -7,
          -2.0734792672231546,
          -2.199572354905204,
          -1.8222770753484876,
          -7,
          -2.0822723230247666,
          -1.9395192526186187,
          -2.805160901599434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9489017609702137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6364878963533656,
          -2.941511432634403,
          -7,
          -7,
          -7,
          -2.6589648426644352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.695612995691491,
          -7,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -2.7015679850559273,
          -7,
          -7,
          -7,
          -2.665580991017953,
          -3.4239009185284166,
          -2.0346785800579923,
          -2.603144372620182,
          -7,
          -2.6532125137753435,
          -7,
          -7,
          -2.8614490626261007,
          -7,
          -4.199412322193509,
          -7,
          -7,
          -2.6580113966571126,
          -7,
          -7,
          -7,
          -2.741939077729199,
          -7,
          -7,
          -7,
          -2.3085644135612386,
          -7,
          -1.8095597146352678,
          -2.2576785748691846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2012453527019566,
          -7,
          -7,
          -2.439332693830263,
          -3.910368234326188,
          -7,
          -7,
          -3.7717344253867693,
          -7,
          -2.325310371711061,
          -7,
          -7,
          -2.398518682284506,
          -2.8948696567452528,
          -7,
          -7,
          -7,
          -7,
          -4.195705974747098,
          -3.0930713063760633,
          -7,
          -7,
          -7,
          -7,
          -2.9590413923210934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6364878963533656,
          -7,
          -2.3909351071033793,
          -7,
          -3.1288837020997735,
          -4.831360987247442,
          -7,
          -7,
          -4.547663964631684,
          -7,
          -7,
          -2.2911467617318855,
          -7,
          -2.3502480183341627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9459607035775686,
          -7,
          -2.7693773260761385,
          -7,
          -2.4274861090957858,
          -2.383815365980431,
          -2.1764317486708507,
          -2.591064607026499,
          -7,
          -3.7170668969538765,
          -4.74907122781966,
          -4.2735336801512975,
          -7,
          -7,
          -7,
          -3.716754357432697,
          -7,
          -3.620880470789483,
          -7,
          -3.7392162193937257,
          -7,
          -7,
          -7,
          -3.795167189715199,
          -7,
          -3.9149246482051483,
          -4.353030975765281,
          -7,
          -4.008621460185338,
          -7,
          -4.801190970259465,
          -3.8826383616960385,
          -3.8321113371375928,
          -3.6029277128591892,
          -7,
          -7,
          -7,
          -7,
          -3.802884849425611,
          -7,
          -7,
          -7,
          -4.1830989401001295,
          -3.8078055322706246,
          -4.242541428298384,
          -4.058957178777311,
          -4.353165804965758,
          -3.2159722526627705,
          -3.9706722426897194,
          -3.1332194567324945,
          -7,
          -3.7059064557003114,
          -2.269590767796998,
          -7,
          -7,
          -7,
          -3.846609234225857,
          -7,
          -7,
          -4.07733156112899,
          -3.845129059940837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.057000080912976,
          -4.135673194419237,
          -5.173078410081454,
          -7,
          -3.325515663363148,
          -7,
          -4.011538726678542,
          -7,
          -4.943162980164098,
          -3.625312450961674,
          -7,
          -7,
          -7,
          -7,
          -4.281215232611316,
          -7,
          -3.6664243725187595,
          -7,
          -3.6858611158657704,
          -7,
          -7,
          -3.7619922371773242,
          -4.264806021368701,
          -7,
          -4.635393259371746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2205874658721743,
          -2.7573960287930244,
          -2.288760085189078,
          -7,
          -2.711807229041191,
          -3.69810054562339,
          -7,
          -2.3283796034387376,
          -7,
          -3.0956574403284893,
          -7,
          -3.550890503921033,
          -7,
          -7,
          -7,
          -3.2835273648616936,
          -7,
          -3.466125870418199,
          -3.117602691690084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.194514341882467,
          -7,
          -3.8440420420410164,
          -7,
          -7,
          -7,
          -3.074193540963896,
          -4.743133317595437,
          -7,
          -7,
          -2.2747349848727385,
          -7,
          -7,
          -7,
          -7,
          -2.847572659142112,
          -7,
          -7,
          -7,
          -7,
          -3.1158600345090313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8102325179950842,
          -7,
          -7,
          -7,
          -7,
          -3.5931752634781025,
          -3.8212514315459414,
          -7,
          -7,
          -7,
          -7,
          -3.282215572818346,
          -2.91539983521227,
          -7,
          -2.8512583487190755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2665844470668635,
          -3.2960066693136723,
          -7,
          -1.8297631007235549,
          -2.058910834034071,
          -3.000867721531227,
          -7,
          -3.4363217001397333,
          -7,
          -7,
          -7,
          -3.7444494574467986,
          -3.682506085939011,
          -7,
          -7,
          -7,
          -7,
          -4.2746657690813885,
          -7,
          -7,
          -7,
          -4.0163855906671175,
          -7,
          -3.9673139182870836,
          -3.8093801242339063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0806264869218056,
          -3.4893959217271293,
          -7,
          -2.722633922533812,
          -7,
          -3.5551246908736487,
          -7,
          -7,
          -7,
          -7,
          -2.9206450014067875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2077241069247497,
          -7,
          -7,
          -7,
          -7,
          -3.388278863459639,
          -7,
          -7,
          -3.805998980240112,
          -7,
          -7,
          -3.227372442289636,
          -7,
          -7,
          -7,
          -7,
          -2.851869600729766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.758684849882441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.917190308511564,
          -7,
          -7,
          -2.1363681983890817,
          -3.517631867509287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.562566443285449,
          -7,
          -2.69810054562339,
          -7,
          -7,
          -2.906335041805091,
          -7,
          -2.821513528404773,
          -7,
          -7,
          -2.720159303405957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.251232527301566,
          -7,
          -7,
          -2.2385478876813276,
          -3.1283184772596804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.041708420891436,
          -7,
          -7,
          -7,
          -7,
          -3.368286884902131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5171958979499744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3483048630481607,
          -2.35729944896187,
          -3.044539760392411,
          -7,
          -2.9253120914996495,
          -7,
          -3.376550888177972,
          -2.9258275746247424,
          -7,
          -7,
          -7,
          -7,
          -2.7291647896927698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6967930850817443,
          -7,
          -7,
          -7,
          -2.725094521081469,
          -7,
          -7,
          -2.7041505168397992,
          -2.623766000133931,
          -7,
          -3.5951654147902294,
          -7,
          -2.8254261177678233,
          -7,
          -7,
          -7,
          -7,
          -3.5577477416414682,
          -3.1540518415007632,
          -7,
          -7,
          -7,
          -4.2619841106268845,
          -7,
          -7,
          -1.9423181526298499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9771746760201876,
          -2.673020907128896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4693310102934105,
          -3.45408227073109,
          -3.111262513659065,
          -7,
          -7,
          -7,
          -3.6091317690974987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6049078342007888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4936903561528552,
          -7,
          -7,
          -7,
          -7,
          -1.9937510507229985,
          -2.443262987458695,
          -1.462397997898956,
          -2.0822723230247666,
          -7,
          -1.7294205830535974,
          -7,
          -2.885361220031512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3854275148051305,
          -7,
          -2.743901550485179,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7007037171450192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6834973176798114,
          -7,
          -3.551327988003846,
          -4.849388698815317,
          -7,
          -7,
          -7,
          -2.3738311450738303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.821513528404773,
          -2.3733061592354647,
          -7,
          -7,
          -7,
          -2.7193312869837265,
          -7,
          -7,
          -7,
          -2.833784374656479,
          -7,
          -7,
          -3.436480695009495,
          -3.2650537885040145,
          -7,
          -7,
          -7,
          -3.348694190265541,
          -2.6488477083728936,
          -3.111598524880394,
          -7,
          -4.024362504353283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1031192535457137,
          -2.9385197251764916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7011360660925265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0508554673866186,
          -7,
          -7,
          -7,
          -3.655842471411064,
          -7,
          -7,
          -3.7774268223893115,
          -7,
          -7,
          -7,
          -7,
          -2.3530089588591445,
          -2.6339731557896737,
          -3.1670217957902564,
          -7,
          -7,
          -7,
          -3.894890402801413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.73457262535556,
          -7,
          -3.159266331093494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0813473078041325,
          -7,
          -3.1225435240687545,
          -2.705007959333336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.189506827111484,
          -7,
          -2.0653929615619915,
          -3.390332367662027,
          -4.74967448988999,
          -4.2753343934257675,
          -7,
          -4.132019415952632,
          -7,
          -3.723209310405111,
          -4.402845781655725,
          -3.589303181209229,
          -7,
          -3.5661230992888213,
          -3.276748941031243,
          -4.181795965324855,
          -4.804541496940634,
          -3.3983740861513563,
          -7,
          -3.351743615110992,
          -3.5084527607498646,
          -4.007619774517403,
          -4.611574624300936,
          -7,
          -4.500414877756268,
          -3.8870543780509568,
          -3.582688206299978,
          -3.6057358938767465,
          -7,
          -4.628184508073413,
          -7,
          -7,
          -3.803550997782215,
          -7,
          -4.584285983002637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6948157149250407,
          -3.9742813588778305,
          -7,
          -4.097650577155367,
          -3.3551747163388153,
          -2.1382641781004526,
          -7,
          -7,
          -7,
          -3.9445073472720127,
          -3.8027737252919755,
          -7,
          -7,
          -3.6713888558913363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8925398046586355,
          -7,
          -7,
          -3.4561951669015265,
          -4.078026116493543,
          -7,
          -7,
          -3.3412366232386925,
          -7,
          -4.137322456100344,
          -7,
          -7,
          -3.332034277027518,
          -7,
          -7,
          -7,
          -7,
          -4.282984440133955,
          -7,
          -7,
          -7,
          -3.688182437748698,
          -7,
          -7,
          -4.130891023495683,
          -3.721539758930226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023334782538309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.326466600325224,
          -7,
          -7,
          -7,
          -2.8220045340895257,
          -4.002597980719909,
          -2.137354111370733,
          -2.857935264719429,
          -7,
          -3.3231833228365364,
          -7,
          -3.5169013267145064,
          -3.0958664534785427,
          -7,
          -7,
          -2.9207939364157585,
          -3.286456469746983,
          -3.1762359997608716,
          -7,
          -7,
          -2.7402310651617,
          -7,
          -3.140193678578631,
          -7,
          -7,
          -7,
          -3.547713186231703,
          -7,
          -7,
          -4.172237947171315,
          -2.6552077674159724,
          -4.044712189670485,
          -7,
          -7,
          -2.92272545799326,
          -2.9175055095525466,
          -7,
          -7,
          -7,
          -3.462397997898956,
          -7,
          -7,
          -7,
          -7,
          -3.724849087629386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.86053763630648,
          -7,
          -7,
          -7,
          -7,
          -3.82633400562222,
          -7,
          -7,
          -3.39208111979816,
          -7,
          -3.4692111685525626,
          -7,
          -7,
          -2.8965262174895554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.312811826212088,
          -7,
          -7,
          -3.0278590441755795,
          -7,
          -2.9995654882259823,
          -7,
          -7,
          -3.478999131673357,
          -7,
          -3.449324093098727,
          -3.689486448364248,
          -3.307496037913213,
          -3.279210512601395,
          -7,
          -7,
          -3.7992486255497773,
          -2.965201701025912,
          -7,
          -2.548184610545108,
          -3.473737151713407,
          -3.2043913319193,
          -3.669828061332521,
          -4.288338669395164,
          -3.7816835845073506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5574771250690587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.782472624166286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6921416093667836,
          -3.2461291256634364,
          -7,
          -7,
          -7,
          -3.4019172505175748,
          -7,
          -7,
          -4.2849718546478694,
          -7,
          -7,
          -7,
          -3.1987945001755986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1094660499520925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8363241157067516,
          -4.18587254245639,
          -7,
          -7,
          -7,
          -3.6527296960692475,
          -3.073993133323909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.145662470707546,
          -7,
          -7,
          -2.3544285972760934,
          -3.3235900970681924,
          -7,
          -2.8419848045901137,
          -7,
          -2.885926339801431,
          -7,
          -2.8992731873176036,
          -3.9618480590183243,
          -7,
          -7,
          -7,
          -2.1077750894177876,
          -7,
          -7,
          -2.4138583422700264,
          -7,
          -3.0049658871068234,
          -2.506505032404872,
          -3.5667516576717624,
          -7,
          -2.638988159343682,
          -7,
          -7,
          -7,
          -2.8305886686851442,
          -7,
          -7,
          -7,
          -2.008363563484802,
          -3.740362689494244,
          -2.82865989653532,
          -7,
          -3.2177470732627937,
          -7,
          -7,
          -7,
          -2.8561244442423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.745270023988988,
          -2.7795964912578244,
          -7,
          -7,
          -7,
          -7,
          -3.024074987307426,
          -7,
          -7,
          -4.229886529245892,
          -7,
          -2.412180447786648,
          -7,
          -7,
          -7,
          -7,
          -2.812244696800369,
          -7,
          -3.0073209529227447,
          -2.60422605308447,
          -7,
          -7,
          -7,
          -7,
          -3.1260014567876744,
          -7,
          -2.8260748027008264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9984178689901253,
          -7,
          -7,
          -2.88024177589548,
          -7,
          -7,
          -7,
          -7,
          -2.504244254358882,
          -7,
          -3.231251077479202,
          -2.2479732663618064,
          -2.5943925503754266,
          -7,
          -2.6734816970733473,
          -3.151982395457474,
          -2.812244696800369,
          -3.571825249040829,
          -2.9658398015278347,
          -7,
          -7,
          -7,
          -3.563765775330468,
          -7,
          -2.8410464654093035,
          -1.816097135847089,
          -2.993876914941211,
          -7,
          -2.8615344108590377,
          -7,
          -7,
          -7,
          -3.203984244420126,
          -7,
          -7,
          -7,
          -2.7781512503836434,
          -7,
          -3.414137362184477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7944880466591697,
          -2.5241796783007557,
          -3.1705550585212086,
          -7,
          -7,
          -7,
          -7,
          -3.6133484255114983,
          -7,
          -7,
          -7,
          -7,
          -2.4835872969688944,
          -7,
          -2.5098742850047193,
          -2.9978230807457256,
          -7,
          -2.907411360774586,
          -7,
          -7,
          -7,
          -2.4431940560100167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.586111033321402,
          -7,
          -7,
          -7,
          -7,
          -1.894427214702641,
          -2.829946695941636,
          -1.7124724747396658,
          -1.9395192526186187,
          -1.7294205830535974,
          -7,
          -3.1690863574870227,
          -7,
          -7,
          -2.9537596917332287,
          -2.8709888137605755,
          -2.847572659142112,
          -2.7781512503836434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.803115554890027,
          -7,
          -2.48572142648158,
          -2.34960126544933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388988785124714,
          -7,
          -2.7701152947871015,
          -2.787460474518415,
          -7,
          -7,
          -7,
          -2.842609239610562,
          -7,
          -7,
          -3.035829825252828,
          -2.78993308093175,
          -3.565611724902059,
          -4.849754066288477,
          -7,
          -7,
          -7,
          -2.5510431647048075,
          -7,
          -7,
          -2.921166050637739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7026028413404273,
          -7,
          -7,
          -2.7715874808812555,
          -7,
          -7,
          -2.3654879848909,
          -7,
          -7,
          -7,
          -2.8195439355418688,
          -3.1536624535754956,
          -2.1403284340687447,
          -2.776701183988411,
          -7,
          -7,
          -3.3712526291249394,
          -2.7032913781186614,
          -2.8779469516291885,
          -2.9523080096621253,
          -3.5029184960299538,
          -7,
          -7,
          -7,
          -3.0549001914148866,
          -7,
          -3.1420764610732848,
          -2.567966906823154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.749736315569061,
          -2.967079734144497,
          -7,
          -7,
          -2.9025467793139916,
          -7,
          -7,
          -7,
          -7,
          -1.834536299764702,
          -7,
          -7,
          -2.5722906061514177,
          -3.2493259940843204,
          -7,
          -7,
          -3.3085644135612386,
          -7,
          -7,
          -7,
          -7,
          -2.384583802303419,
          -2.99211148778695,
          -7,
          -7,
          -7,
          -7,
          -4.099463094164411,
          -3.1571544399062814,
          -7,
          -7,
          -7,
          -7,
          -3.044147620878723,
          -7,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -7,
          -7,
          -2.8561244442423,
          -7,
          -2.9809119377768436,
          -7,
          -3.9720175986740154,
          -7,
          -4.354529398223967,
          -7,
          -2.715446198616883,
          -3.85101360682367,
          -7,
          -7,
          -7,
          -7,
          -2.2145127046981408,
          -3.1922886125681202,
          -2.6815427260943268,
          -2.7965743332104296,
          -7,
          -7,
          -7,
          -2.815577748324267,
          -2.2894774663446023,
          -7,
          -2.7101173651118162,
          -2.8344207036815328,
          -2.3615704544315608,
          -7,
          -7,
          -3.8440938665398194,
          -4.750593239836581,
          -7,
          -2.6976651626476746,
          -7,
          -7,
          -7,
          -7,
          -3.4140496895261268,
          -7,
          -3.348772013844623,
          -4.278524964737017,
          -4.359038228379384,
          -7,
          -3.001975881244265,
          -7,
          -7,
          -3.7015775783778904,
          -7,
          -4.3117856375382315,
          -7,
          -7,
          -7,
          -3.78773669147004,
          -4.087248867795658,
          -7,
          -7,
          -7,
          -7,
          -3.7533957859406746,
          -7,
          -4.108463541203595,
          -3.9455178220778397,
          -7,
          -7,
          -7,
          -7,
          -4.35694321958013,
          -3.4926731024258193,
          -7,
          -7,
          -3.877129363769828,
          -3.3577019756452953,
          -1.873993263073632,
          -7,
          -7,
          -7,
          -4.070936326599144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.196921944819459,
          -7,
          -7,
          -3.6626822956379184,
          -3.867666888451123,
          -7,
          -7,
          -7,
          -7,
          -3.7125023868498763,
          -7,
          -7,
          -7,
          -4.072433725968388,
          -7,
          -7,
          -7,
          -4.285669805960068,
          -7,
          -3.6844862921887342,
          -3.5869247081448203,
          -4.168939213835978,
          -7,
          -7,
          -3.910272131395313,
          -3.8691143269793753,
          -7,
          -4.637369631484764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.683732992153464,
          -7,
          -2.8943160626844384,
          -7,
          -3.1427022457376155,
          -3.5304131631775952,
          -3.17868923977559,
          -7,
          -7,
          -7,
          -7,
          -3.2701216261422252,
          -3.1354506993455136,
          -7,
          -7,
          -3.0759846847441197,
          -3.0109356647043852,
          -3.494432898726399,
          -7,
          -7,
          -2.4911069009364373,
          -3.1248301494138593,
          -7,
          -2.7218106152125467,
          -7,
          -7,
          -3.8561244442423,
          -7,
          -7,
          -7,
          -2.740402169016284,
          -3.7031271673456327,
          -7,
          -7,
          -7,
          -2.9476787399369364,
          -7,
          -7,
          -2.851869600729766,
          -3.479863113023098,
          -7,
          -3.024485667699167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1316186643491255,
          -7,
          -3.1734776434529945,
          -4.039037170468973,
          -7,
          -7,
          -2.8750612633917,
          -3.6144753660903954,
          -3.532818053867167,
          -7,
          -7,
          -3.703635237583896,
          -7,
          -3.179052438944499,
          -7,
          -7,
          -2.655618583541222,
          -7,
          -7,
          -7,
          -7,
          -3.082066934285113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0398105541483504,
          -7,
          -3.0484418035504044,
          -3.752893154884594,
          -3.1335389083702174,
          -3.194514341882467,
          -7,
          -3.759592308645975,
          -7,
          -2.728962179713866,
          -7,
          -7,
          -7,
          -3.8019750750279386,
          -7,
          -7,
          -7,
          -3.6224212739756703,
          -2.7573960287930244,
          -7,
          -3.5126176996829153,
          -3.7901443650429005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.509202522331103,
          -7,
          -7,
          -3.464072042578179,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6290696425437527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9235030669421045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5092697453761876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.656098202012832,
          -7,
          -3.2989621819201167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7626504349355674,
          -7,
          -7,
          -7,
          -2.09443434895989,
          -2.470168274303783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.404884002555489,
          -7,
          -7,
          -7,
          -3.2795129520575665,
          -7,
          -7,
          -7,
          -2.727947709544797,
          -7,
          -3.0394141191761372,
          -4.5675439155731015,
          -3.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.651859269246949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6893088591236203,
          -7,
          -3.1610683854711747,
          -7,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -2.9854264740830017,
          -7,
          -3.1277525158329733,
          -7,
          -7,
          -7,
          -7,
          -3.358734127198011,
          -7,
          -7,
          -7,
          -7,
          -3.440279213235588,
          -7,
          -7,
          -3.1601682929585118,
          -4.237543738142874,
          -2.9689496809813427,
          -7,
          -7,
          -2.9818186071706636,
          -7,
          -7,
          -7,
          -7,
          -3.1202447955463652,
          -7,
          -2.706148588963142,
          -7,
          -2.7996850909091004,
          -7,
          -2.7561201505007595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9728434433197877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5205817782975743,
          -7,
          -7,
          -7,
          -3.6631038705467858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.739888655084543,
          -3.220238879934404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9661417327390325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6238692683503024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0856472882968564,
          -7,
          -7,
          -7,
          -7,
          -3.6927267769512566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.903993825990188,
          -7,
          -3.2962262872611605,
          -2.957607287060095,
          -3.215108581053093,
          -3.1454066540283647,
          -7,
          -7,
          -2.805160901599434,
          -7,
          -3.1690863574870227,
          -7,
          -2.7734207232906103,
          -7,
          -3.079543007402906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.607439703915141,
          -7,
          -7,
          -2.9694159123539814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0425755124401905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9459607035775686,
          -7,
          -3.7481104674949837,
          -7,
          -3.427783543301038,
          -7,
          -7,
          -7,
          -3.384263785722803,
          -3.2005769267548483,
          -7,
          -2.856326019777088,
          -3.0195316845312554,
          -7,
          -7,
          -7,
          -7,
          -3.1547282074401557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5284024379536176,
          -2.583765368285,
          -7,
          -7,
          -3.383931471978156,
          -7,
          -7,
          -3.8069257768837317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1085650237328344,
          -7,
          -7,
          -7,
          -7,
          -2.464132404475205,
          -1.7791840558214114,
          -7,
          -7,
          -7,
          -7,
          -3.1489109931093564,
          -7,
          -7,
          -3.0784568180532927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7983052820219765,
          -7,
          -3.684665864025861,
          -7,
          -3.902644287189708,
          -7,
          -7,
          -3.8546946070403574,
          -3.243286146083446,
          -7,
          -7,
          -7,
          -7,
          -3.533772058384718,
          -3.2422929049829308,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.486430478854434,
          -7,
          -7,
          -4.324416222094499,
          -7,
          -3.439558242774259,
          -7,
          -7,
          -7,
          -3.1539672216454786,
          -2.683981060007928,
          -4.1368790398755175,
          -7,
          -3.7585334222372864,
          -2.6727134419961223,
          -4.185787609647107,
          -3.9042149799590122,
          -7,
          -3.9929288899577164,
          -4.400814192267559,
          -7,
          -7,
          -4.616023654653256,
          -7,
          -3.9277500763288153,
          -7,
          -2.7673396555398124,
          -7,
          -7,
          -7,
          -3.9837164739137494,
          -7,
          -7,
          -7,
          -4.287969594835454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9240551874495404,
          -7,
          -7,
          -4.579657861593733,
          -4.318626717029967,
          -3.7880268840958036,
          -7,
          -7,
          -7,
          -2.8101224941992746,
          -7,
          -3.3666097103924297,
          -7,
          -3.5591881890047756,
          -7,
          -7,
          -3.7816835845073506,
          -7,
          -7,
          -3.5800121125294244,
          -4.205177287388274,
          -7,
          -7,
          -4.066400475955629,
          -3.535682839461785,
          -4.174478483315079,
          -7,
          -7,
          -7,
          -3.539494292837515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.718750734739665,
          -3.0332628758844793,
          -4.292411148837825,
          -7,
          -7,
          -3.0169289290369714,
          -7,
          -3.051023823533444,
          -7,
          -3.7673149191811577,
          -3.7934411329776636,
          -7,
          -3.1484235191525474,
          -7,
          -3.1157768761589635,
          -3.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.719248398447946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03322264667025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3469589986735295,
          -3.8438320895564417,
          -7,
          -7,
          -3.09968064110925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.346059433052574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7288405683399715,
          -7,
          -4.042328460240732,
          -3.1212314551496214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1763806922432702,
          -7,
          -3.7754648093457392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.28602960050819,
          -3.5043349118024643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.596377143997599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5543680009900878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.631950826259217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6603151495574515,
          -7,
          -7,
          -7,
          -3.6240757311456826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0634941988333124,
          -3.604657972047871,
          -2.515873843711679,
          -7,
          -3.5773998759334207,
          -7,
          -7,
          -7,
          -2.6830470382388496,
          -7,
          -7,
          -4.560564148979884,
          -7,
          -7,
          -7,
          -2.3891660843645326,
          -7,
          -7,
          -2.694605198933569,
          -7,
          -7,
          -7,
          -3.7372522944432975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5921767573958667,
          -2.8976270912904414,
          -2.8128298304416357,
          -7,
          -7,
          -7,
          -7,
          -2.5622928644564746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.189450207084212,
          -7,
          -7,
          -7,
          -7,
          -2.635282637998212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.69810054562339,
          -2.82865989653532,
          -7,
          -3.479169445805911,
          -2.5269850685599957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9283958522567137,
          -7,
          -7,
          -2.829303772831025,
          -7,
          -3.7651094972067183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2357808703275603,
          -3.802020751771976,
          -7,
          -7,
          -2.73559889969818,
          -4.260651650298644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.734977527824511,
          -7,
          -3.447778009294621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0507663112330423,
          -7,
          -7,
          -7,
          -3.4780973196422216,
          -7,
          -7,
          -7,
          -2.1782573208121887,
          -7,
          -7,
          -2.526769911517248,
          -7,
          -7,
          -7,
          -2.8785217955012063,
          -7,
          -7,
          -3.428199609263877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5998830720736876,
          -7,
          -2.5591881890047756,
          -7,
          -3.865044721693099,
          -7,
          -2.720159303405957,
          -2.8928363526263907,
          -7,
          -7,
          -7,
          -2.885361220031512,
          -7,
          -2.7734207232906103,
          -7,
          -2.08278537031645,
          -1.8210037503009116,
          -2.6589648426644352,
          -7,
          -2.7027176733035243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.052886235256382,
          -7,
          -2.6725596277632757,
          -2.5888317255942073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2972131959896416,
          -7,
          -7,
          -4.371726504556958,
          -7,
          -2.5440680443502757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2234959409623944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.022057020601165,
          -7,
          -7,
          -7,
          -3.6292056571023035,
          -7,
          -3.041392685158225,
          -2.717670503002262,
          -2.875928984922927,
          -7,
          -7,
          -7,
          -7,
          -2.9237619608287004,
          -7,
          -7,
          -7,
          -2.709269960975831,
          -7,
          -7,
          -7,
          -7,
          -2.8449429071382,
          -7,
          -7,
          -7,
          -3.830203598925704,
          -7,
          -7,
          -3.765072201102792,
          -7,
          -7,
          -2.8135809885681917,
          -2.6020599913279625,
          -3.1528995963937474,
          -2.8419848045901137,
          -7,
          -7,
          -7,
          -7,
          -3.984506541488811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6344772701607315,
          -2.2317243833285163,
          -7,
          -7,
          -7,
          -3.4154741681092355,
          -4.831216882631442,
          -7,
          -2.5014016307667424,
          -3.504915494713347,
          -3.065206128054312,
          -7,
          -1.1903316981702914,
          -7,
          -2.0552083863593693,
          -2.271221849767887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.39375064034808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.399950474386311,
          -7,
          -7,
          -7,
          -4.576283747648257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7858279199958655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.705324784486743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1955537388251134,
          -4.572871602200481,
          -7,
          -3.2667802957655163,
          -7,
          -7,
          -7,
          -3.502923456589202,
          -3.791129000727286,
          -2.9382694834629115,
          -7,
          -4.143420785129937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.188928483760853,
          -7,
          -7,
          -4.356350978030569,
          -4.503277576759695,
          -5.1728159401009215,
          -7,
          -3.3066394410242617,
          -7,
          -4.612709702550948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.180412632838324,
          -3.55339751012388,
          -7,
          -2.8424532150060804,
          -2.2528530309798933,
          -3.827993553315733,
          -4.087627637093355,
          -7,
          -4.15732578507467,
          -7,
          -7,
          -7,
          -3.5390760987927767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.517943279436479,
          -7,
          -2.806519134080705,
          -7,
          -7,
          -7,
          -7,
          -2.4401216031878037,
          -7,
          -7,
          -7,
          -4.629379013907319,
          -2.7311857076340007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.497067936398505,
          -7,
          -7,
          -2.583765368285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.64221712947388,
          -7,
          -7,
          -7,
          -2.523095838252568,
          -7,
          -7,
          -7,
          -2.6273658565927325,
          -3.436480695009495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.625312450961674,
          -2.665580991017953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.513217600067939,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7299742856995555,
          -7,
          -7,
          -7,
          -2.2933625547114453,
          -2.833890494261626,
          -2.6580113966571126,
          -7,
          -3.1277525158329733,
          -7,
          -2.7538893314598334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.284566077266973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5165353738957994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.15463695951842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.926856708949692,
          -2.6414741105040997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.281169773409736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.337459261290656,
          -7,
          -2.788875115775417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9867717342662448,
          -3.923681432601159,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.597695185925512,
          -4.559248104088254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8600383898071935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.803542463881351,
          -7,
          -7,
          -2.619788758288394,
          -7,
          -7,
          -2.428134794028789,
          -2.506505032404872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0305997219659515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.339782584655998,
          -7,
          -7,
          -3.617393545748848,
          -7,
          -7,
          -7,
          -2.414973347970818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.751279103983342,
          -7,
          -3.9172428579074663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.760987603193131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5229655954919865,
          -4.099335277685958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.941180036600083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.354108439147401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.47410694801697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8102325179950842,
          -7,
          -7,
          -4.029611012535356,
          -7,
          -7,
          -7,
          -2.447158031342219,
          -2.380211241711606,
          -7,
          -7,
          -2.754857772111842,
          -7,
          -3.8584770418133405,
          -7,
          -7,
          -3.3282498332470345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.08278537031645,
          -7,
          -2.7007037171450192,
          -2.5390760987927767,
          -7,
          -2.5443781439578124,
          -7,
          -7,
          -7,
          -3.918344928962275,
          -7,
          -3.3326404103874627,
          -2.305351369446624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6522463410033232,
          -2.3384564936046046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4756711883244296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5854607295085006,
          -3.686770290087891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.606381365110605,
          -3.037824750588342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6178387477170033,
          -7,
          -2.693726948923647,
          -7,
          -7,
          -7,
          -7,
          -2.3201462861110542,
          -7,
          -7,
          -2.724275869600789,
          -7,
          -7,
          -2.60422605308447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.546542663478131,
          -4.607283416186098,
          -2.2600713879850747,
          -7,
          -3.7567881987681178,
          -7,
          -7,
          -2.7331972651065692,
          -7,
          -3.1179338350396413,
          -2.7671558660821804,
          -2.7741518589547103,
          -7,
          -7,
          -7,
          -5.098152054648372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2,
          -7,
          -7,
          -7,
          -7,
          -3.652101229519464,
          -3.3967222785037734,
          -5.132077093735961,
          -7,
          -7,
          -4.244140995786811,
          -7,
          -7,
          -1.9837765880368856,
          -7,
          -7,
          -2.734159513244467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7573960287930244,
          -7,
          -3.377306251068199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.733413956897983,
          -7,
          -7,
          -7,
          -7,
          -4.802643759466887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.101540872558349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.961278679085043,
          -7,
          -4.571592383361307,
          -4.3038006237651745,
          -7,
          -7,
          -3.7505855273410087,
          -7,
          -4.066027594948862,
          -3.1808424146466825,
          -3.2113875529368587,
          -7,
          -7,
          -3.703635237583896,
          -7,
          -7,
          -7,
          -2.6020599913279625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.871459093443646,
          -7,
          -3.2823955047425257,
          -7,
          -7,
          -7,
          -7,
          -3.60422605308447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6472851450253665,
          -7,
          -7,
          -7,
          -7,
          -4.127903511010362,
          -7,
          -7,
          -4.633377547220539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0692980121155293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9863237770507656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.641126932803509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5453071164658243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.760422483423212,
          -4.081217648307154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6304278750250236,
          -7,
          -7,
          -7,
          -7,
          -3.601299310194338,
          -2.9041743682841634,
          -7,
          -2.8752266774031847,
          -7,
          -3.4369573306694496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.282078054577154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0017337128090005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278662160909981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.496929648073215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.183269843682805,
          -7,
          -7,
          -2.5390760987927767,
          -7,
          -3.6506959797606107,
          -7,
          -2.3879827199214656,
          -2.6875289612146345,
          -2.989894563718773,
          -7,
          -3.909876817990393,
          -7,
          -2.531478917042255,
          -3.0382226383687185,
          -3.799409479615127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.259653596243472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.339670024244455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.302114376956201,
          -7,
          -3.115527305527498,
          -7,
          -7,
          -3.1386184338994925,
          -7,
          -7,
          -2.591064607026499,
          -2.3434085938038574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9217124803626198,
          -2.5490032620257876,
          -2.7024305364455254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.870403905279027,
          -7,
          -2.3738311450738303,
          -7,
          -2.8363241157067516,
          -7,
          -4.219924913188828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6009728956867484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.924795995797912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.46437775512603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.582315933132205,
          -7,
          -7,
          -7,
          -2.7450747915820575,
          -4.260746961730889,
          -7,
          -2.7450747915820575,
          -7,
          -2.5496162395190853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.17801718009172,
          -7,
          -7,
          -7,
          -3.5018121170750933,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1772117398019684,
          -7,
          -7,
          -7,
          -2.79309160017658,
          -7,
          -7,
          -3.0107238653917734,
          -7,
          -7,
          -7,
          -2.885361220031512,
          -7,
          -7,
          -3.6502751360569445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.659440781870318,
          -7,
          -7,
          -7,
          -7,
          -2.9900797402371215,
          -7,
          -7,
          -7,
          -7,
          -2.9537596917332287,
          -3.079543007402906,
          -1.8210037503009116,
          -2.7007037171450192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.356599435724971,
          -7,
          -7,
          -7,
          -2.60422605308447,
          -7,
          -7,
          -2.756636108245848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6242820958356683,
          -2.5575072019056577,
          -7,
          -2.125481265700594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0556331242728354,
          -7,
          -7,
          -7,
          -3.9933039379194746,
          -7,
          -7,
          -7,
          -2.5658478186735176,
          -2.6148972160331345,
          -2.6283889300503116,
          -7,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -3.2265999052073573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.79309160017658,
          -4.198340871447986,
          -7,
          -7,
          -7,
          -3.0277572046905536,
          -7,
          -7,
          -3.1992064791616577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.929929560084588,
          -2.81424759573192,
          -7,
          -2.734799829588847,
          -2.7193312869837265,
          -7,
          -7,
          -7,
          -2.6085260335771943,
          -2.8468008542794783,
          -7,
          -2.8129133566428557,
          -7,
          -7,
          -7,
          -7,
          -3.4647875196459372,
          -7,
          -7,
          -2.3417641598743475,
          -7,
          -2.8549130223078554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.064832219738574,
          -7,
          -7,
          -7,
          -7,
          -2.920123326290724,
          -7,
          -7,
          -2.79309160017658,
          -7,
          -7,
          -7,
          -2.722633922533812,
          -7,
          -7,
          -7,
          -7,
          -3.6579636693663447,
          -7,
          -7,
          -7,
          -2.631105401655266,
          -4.069532435768039,
          -3.0696680969115957,
          -7,
          -1.9395192526186187,
          -7,
          -2.542410429811593,
          -7,
          -2.366236123718293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.624625819226704,
          -7,
          -2.354108439147401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657466994367546,
          -4.803477600754047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.281465173199528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4058583993176366,
          -7,
          -3.704236337308788,
          -3.7451528950769006,
          -7,
          -7,
          -7,
          -4.067541985450457,
          -7,
          -2.94126290931895,
          -4.0744873049856905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.657457437356336,
          -4.980471520550195,
          -7,
          -7,
          -7,
          -7,
          -4.612836816232258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4615585495157384,
          -7,
          -2.7427251313046983,
          -7,
          -4.564938152655192,
          -7,
          -4.157446693916665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3909351071033793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7897216939809217,
          -7,
          -4.6295013417672655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.718501688867274,
          -7,
          -7,
          -3.438384107034714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6374897295125104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.802838513668216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313128713845194,
          -2.663700925389648,
          -7,
          -3.128722284338427,
          -7,
          -3.4559102403827433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.315823457751156,
          -7,
          -7,
          -4.284836637642396,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -7,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.678154038010437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.281442457270873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.801403710017355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658945794243111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.836312604966299,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.55884051842334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5453071164658243,
          -7,
          -3.2024883170600935,
          -7,
          -3.1318391234923233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5889178182660926,
          -7,
          -7,
          -3.0863598306747484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.029221394253928,
          -7,
          -7,
          -7,
          -7,
          -3.004536317851323,
          -7,
          -7,
          -7,
          -3.7414930150254317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.673679028912518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8356905714924254,
          -7,
          -7,
          -7,
          -7,
          -2.1436392352745433,
          -2.342422680822206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9156636035057732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2002118967002393,
          -7,
          -7,
          -7,
          -7,
          -3.792181496149679,
          -7,
          -7,
          -7,
          -7,
          -2.9912260756924947,
          -7,
          -7,
          -7,
          -3.3758829915452284,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -7,
          -7,
          -7,
          -3.019987346336959,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.92272545799326,
          -7,
          -7,
          -7,
          -7,
          -3.0902766208563244,
          -7,
          -7,
          -7,
          -7,
          -2.8709888137605755,
          -7,
          -2.6589648426644352,
          -2.5390760987927767,
          -7,
          -7,
          -1.3204924754334133,
          -2.8360074591255313,
          -7,
          -7,
          -7,
          -3.4392273975557974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3263358609287517,
          -7,
          -7,
          -7,
          -2.568201724066995,
          -7,
          -2.0549958615291413,
          -7,
          -3.18440748541232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6871721045948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9804578922761,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -7,
          -7,
          -7,
          -2.2624510897304293,
          -7,
          -7,
          -7,
          -7,
          -3.425044874551389,
          -7,
          -2.693726948923647,
          -7,
          -4.606918525948291,
          -2.2174839442139063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.951580344903392,
          -7,
          -4.734072998165133,
          -2.593286067020457,
          -3.053462604925455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.951337518795918,
          -7,
          -2.7041505168397992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0461047872460387,
          -7,
          -2.767897616018091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30306639792351,
          -3.7327956982893293,
          -7,
          -7,
          -7,
          -4.0656046090841285,
          -7,
          -7,
          -7,
          -3.8378093167503406,
          -3.3995006613146104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3535892815794845,
          -4.280755875857311,
          -7,
          -7,
          -2.9731278535996988,
          -7,
          -7,
          -7,
          -4.640963167006545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275863950712521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.905644795140426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1209028176145273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.780122808375505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5975855017522043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7553507194191824,
          -7,
          -7,
          -7,
          -7,
          -3.6313422864839326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9744253318550826,
          -7,
          -7,
          -7,
          -2.4756711883244296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.494154594018443,
          -7,
          -7,
          -7,
          -3.2939849689526044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3180633349627615,
          -7,
          -3.400365273349939,
          -2.0043213737826426,
          -7,
          -7,
          -7,
          -2.2600713879850747,
          -7,
          -2.3944516808262164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.027634965777544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7686381012476144,
          -7,
          -7,
          -4.2176944602053785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.737987326333431,
          -7,
          -2.8790958795000727,
          -7,
          -7,
          -7,
          -4.518421807033958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8976270912904414,
          -7,
          -7,
          -7,
          -7,
          -2.8228216453031045,
          -7,
          -7,
          -2.3891660843645326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6766936096248664,
          -7,
          -7,
          -3.212054364801163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3222192947339195,
          -7,
          -2.554691016610708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7299742856995555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.596450473585262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.329723224057897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.912487761332324,
          -7,
          -7,
          -7,
          -7,
          -2.704905528094701,
          -7,
          -7,
          -7,
          -7,
          -2.847572659142112,
          -7,
          -7,
          -7,
          -7,
          -1.3204924754334133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -1.792391689498254,
          -7,
          -2.3921104650113136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.629409599102719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.962369335670021,
          -7,
          -3.1212314551496214,
          -7,
          -7,
          -7,
          -7,
          -2.514547752660286,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7183355789085066,
          -7,
          -7,
          -7,
          -4.6064995975128875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097899077321453,
          -2.9849771264154934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432993328649117,
          -7,
          -2.7363965022766426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.931966114728173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.482873583608754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3637999454791094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.00114935814922,
          -3.030032704936171,
          -7,
          -7,
          -7,
          -3.7640141449764357,
          -3.778078861937455,
          -7,
          -7,
          -4.1376705372367555,
          -3.697316541732383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6537140754412487,
          -3.657183380234882,
          -7,
          -7,
          -7,
          -7,
          -4.6107665947732706,
          -7,
          -4.6407695459602785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7977521286507105,
          -3.1622656142980214,
          -7,
          -7,
          -3.853789440530192,
          -7,
          -7,
          -7,
          -4.56262589414616,
          -7,
          -4.331589240955137,
          -7,
          -7,
          -3.594171479114912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9871297676598974,
          -7,
          -7,
          -7,
          -7,
          -3.9871745010875417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.815577748324267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6404019249815684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.267406418752904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603883812335287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1157214284114376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14903426716125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.824451270036613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.627356544861648,
          -2.702645906884803,
          -7,
          -2.7955324427101544,
          -2.930694387664535,
          -3.4295100408131383,
          -7,
          -3.215373152783422,
          -7,
          -7,
          -7,
          -3.9557358422776656,
          -2.8476607781404675,
          -7,
          -7,
          -3.057058345431303,
          -7,
          -7,
          -7,
          -3.1458177144918276,
          -2.651601029618764,
          -7,
          -3.529756909124659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1227072543183483,
          -7,
          -3.0343037076079074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.609380944250707,
          -3.1152775913959014,
          -7,
          -2.88024177589548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8386639300088468,
          -7,
          -7,
          -7,
          -7,
          -2.254135607904569,
          -2.3789167713586075,
          -7,
          -2.7708520116421442,
          -3.3422746006428197,
          -7,
          -7,
          -7,
          -3.1095785469043866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.15106325335375,
          -7,
          -7,
          -2.775361299557757,
          -7,
          -3.113943352306837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7264555202583103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0369281680157196,
          -2.831197665069386,
          -7,
          -7,
          -3.1646502159342966,
          -4.443982303007413,
          -3.1172712956557644,
          -7,
          -2.7351995484223135,
          -7,
          -2.646076820312336,
          -7,
          -7,
          -7,
          -7,
          -3.7090578513345434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.765072201102792,
          -3.5624118329497274,
          -3.570659670021534,
          -7,
          -7,
          -3.082066934285113,
          -3.1099158630237933,
          -7,
          -7,
          -7,
          -3.3098430047160705,
          -7,
          -3.110589710299249,
          -3.1109262422664203,
          -3.4130313911501697,
          -7,
          -7,
          -7,
          -3.1835545336188615,
          -7,
          -7,
          -3.285557309007774,
          -3.210853365314893,
          -2.5854607295085006,
          -3.1577588860468637,
          -7,
          -3.137986732723532,
          -3.1192558892779365,
          -3.064067490359177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1359273350054684,
          -7,
          -7,
          -7,
          -3.2942457161381182,
          -3.1483939488110453,
          -7,
          -7,
          -7,
          -7,
          -2.7781512503836434,
          -7,
          -2.7027176733035243,
          -2.5443781439578124,
          -7,
          -2.8360074591255313,
          -7,
          -7,
          -7,
          -3.098643725817057,
          -7,
          -2.5040722658303283,
          -7,
          -3.5021538928713607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1690863574870227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.634275694625944,
          -3.7211966936121548,
          -7,
          -3.1027766148834415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03148925570975,
          -7,
          -7,
          -3.0867156639448825,
          -3.1048284036536553,
          -7,
          -7,
          -7,
          -3.1556396337597765,
          -7,
          -7,
          -3.2404244330836076,
          -7,
          -7,
          -7,
          -3.1061908972634154,
          -7,
          -7,
          -3.772834927239018,
          -7,
          -4.210612766352898,
          -7,
          -7,
          -7,
          -7,
          -3.2821687783046416,
          -7,
          -3.395675785269936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.244524511570084,
          -2.5885518064856425,
          -7,
          -7,
          -2.853393977450666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8399073111296422,
          -7,
          -7,
          -3.828595456371702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.300812794118117,
          -7,
          -3.871136636456436,
          -7,
          -7,
          -7,
          -7,
          -3.048053173115609,
          -7,
          -2.392696953259666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8546096380957953,
          -7,
          -7,
          -7,
          -2.6424645202421213,
          -2.920123326290724,
          -7,
          -4.003305718493799,
          -7,
          -7,
          -3.326889823407641,
          -2.3140779917792127,
          -7,
          -7,
          -7,
          -7,
          -3.2723058444020863,
          -7,
          -7,
          -7,
          -7,
          -3.2329961103921536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5328817194073974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.586722297518069,
          -7,
          -7,
          -4.411485020124997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.10505691956627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.261833620575751,
          -7,
          -7,
          -4.262617181538574,
          -7,
          -7,
          -7,
          -3.103803720955957,
          -7,
          -3.9812634968287997,
          -3.848209650524033,
          -3.5094713521025485,
          -7,
          -3.3903344475118518,
          -7,
          -3.351300971319075,
          -3.1517374810385186,
          -7,
          -7,
          -3.2676409823459154,
          -3.306567981627654,
          -7,
          -7,
          -2.911335197980604,
          -7,
          -3.0132586652835167,
          -7,
          -3.513350798805957,
          -7,
          -3.4701899062855524,
          -3.72913778048962,
          -4.330349987099072,
          -7,
          -3.4687902620996107,
          -7,
          -4.622317660833844,
          -7,
          -3.6683074285531756,
          -7,
          -7,
          -7,
          -7,
          -4.046963154123424,
          -4.2996162399984135,
          -7,
          -3.737669627356642,
          -7,
          -4.187097500583477,
          -2.9661417327390325,
          -7,
          -3.3852171160984486,
          -4.575511135352897,
          -7,
          -3.9445813642269263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.033785516842231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.337579050143133,
          -7,
          -3.2643455070500926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.651200454486927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.127428777851599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1398790864012365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.482884297978607,
          -7,
          -7,
          -7,
          -7,
          -3.974373507081423,
          -7,
          -7,
          -7,
          -7,
          -3.196452541703389,
          -7,
          -7,
          -3.1179338350396413,
          -3.7007037171450192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334413536837101,
          -7,
          -7,
          -3.7025813069667075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1319392952104246,
          -7,
          -4.181672122068266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.699338997845602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657820456015697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.031973689091717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7320115734128025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4220971631317103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040206627574711,
          -7,
          -2.08278537031645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3068537486930083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0086001717619175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.094051655509965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9242792860618816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9355072658247128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426364845287927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5314789170422551,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.098643725817057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.547023575658172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.972665592266111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.094471128641645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.575187844927661,
          -7,
          -4.605649758517102,
          -7,
          -7,
          -3.7450747915820575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983598533574965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432866714751133,
          -7,
          -7,
          -4.543310470747173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.862131379313037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7630284585928058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.104145550554008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024909629847714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6321534835106326,
          -3.5203525040833177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.342422680822206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542887642342412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.478530423125539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1832698436828046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.914660430589222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.104747167896156,
          -2.1729391872871573,
          -7,
          -3.910090545594068,
          -2.6001012556913907,
          -3.3099139273065608,
          -7,
          -7,
          -7,
          -3.096860376516557,
          -7,
          -3.2011785563833253,
          -2.867393822439164,
          -7,
          -7,
          -2.4295006001874326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.498556682717641,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3892694755046238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8342868171349913,
          -7,
          -7,
          -2.681431675651782,
          -3.438753248138029,
          -7,
          -7,
          -7,
          -3.931915317081246,
          -7,
          -7,
          -7,
          -7,
          -2.454446134185004,
          -7,
          -7,
          -7,
          -7,
          -3.396068515800304,
          -7,
          -7,
          -2.6566024919927442,
          -1.7347722492070448,
          -7,
          -7,
          -7,
          -3.9120093755869783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3164421483082114,
          -7,
          -7,
          -2.2364300521070484,
          -7,
          -3.6115640020881243,
          -7,
          -7,
          -7,
          -7,
          -3.912912551176097,
          -7,
          -7,
          -2.2059984408197937,
          -3.9122220565324155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9116901587538613,
          -3.910304168068569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6496268868405295,
          -7,
          -3.0959051485809788,
          -2.2055394577870526,
          -7,
          -7,
          -7,
          -4.494648462275092,
          -7,
          -3.4719758703932535,
          -3.2577265605586323,
          -7,
          -3.0105649480946766,
          -7,
          -7,
          -7,
          -7,
          -3.5342292372487547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5015727138817785,
          -7,
          -2.531478917042255,
          -3.937768567049936,
          -3.915610862661467,
          -3.5481129050651687,
          -7,
          -7,
          -7,
          -7,
          -3.950364854376123,
          -7,
          -7,
          -7,
          -2.7394624604624846,
          -7,
          -7,
          -3.9143960521297863,
          -3.225154148849806,
          -7,
          -7,
          -7,
          -3.9296232515152405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.769973475081076,
          -7,
          -7,
          -7,
          -3.9130717403092508,
          -7,
          -3.9134959596171237,
          -7,
          -7,
          -7,
          -2.89990685758534,
          -7,
          -3.946845113960623,
          -3.4161965568964496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.918344928962275,
          -7,
          -3.4392273975557974,
          -7,
          -2.5040722658303283,
          -7,
          -7,
          -7,
          -7,
          -3.9093955459671053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1432425020627006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9451976821033337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9196010237841112,
          -7,
          -7,
          -2.2178234357159727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.850986404764101,
          -7,
          -3.4486732001001474,
          -7,
          -7,
          -7,
          -7,
          -3.3418300569205104,
          -3.1035105098621796,
          -7,
          -3.9685296443748395,
          -3.909983694939844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0166677935099506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.926033596678845,
          -7,
          -3.9065146136422175,
          -3.01378489154674,
          -3.9097699147327694,
          -3.2886324266102918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1509784117298585,
          -7,
          -7,
          -7,
          -7,
          -3.181128699747295,
          -3.9353056902899253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.919705534549121,
          -7,
          -7,
          -7,
          -7,
          -2.424959376626245,
          -3.5397032389478253,
          -2.8087672119302907,
          -3.6196150057428067,
          -7,
          -2.7869439937109552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.693920316367327,
          -4.503913193999621,
          -7,
          -7,
          -4.063596033291059,
          -7,
          -7,
          -4.517354274350649,
          -4.315473525026916,
          -7,
          -7,
          -4.657925483756938,
          -3.880936026472807,
          -3.8535096116017584,
          -7,
          -7,
          -4.510182947257836,
          -7,
          -4.250541978010273,
          -7,
          -3.7249581862877257,
          -4.650767159135146,
          -7,
          -4.536962249650276,
          -4.295215123866298,
          -4.346352974450639,
          -3.921669138032477,
          -4.557591405968501,
          -7,
          -4.4663559484189665,
          -7,
          -3.963938860030751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.480825865259064,
          -7,
          -2.815552206848569,
          -7,
          -3.0746047445737625,
          -3.602401088721594,
          -4.125318578123527,
          -3.63382180730168,
          -3.328016973644657,
          -3.9483151406893477,
          -2.7791288410764556,
          -3.6681994841986616,
          -7,
          -3.992398858487621,
          -2.9206650533255254,
          -4.1126050015345745,
          -7,
          -3.8213169705910977,
          -3.9698350930757975,
          -7,
          -3.5644687921697042,
          -3.0869215395030887,
          -7,
          -7,
          -3.068799322509493,
          -3.2146041885781704,
          -3.8524439488043782,
          -7,
          -3.9921999297955852,
          -7,
          -3.4839348074213596,
          -7,
          -2.6725413491836623,
          -3.2979792441593623,
          -3.808885867359812,
          -7,
          -3.617559458651492,
          -4.255778886667017,
          -4.1272992150577075,
          -7,
          -3.3922395603981106,
          -7,
          -3.2679925903655827,
          -3.5474054596674898,
          -7,
          -3.1910000242876015,
          -3.6068404347418768,
          -7,
          -3.6273231761856515,
          -3.960232873128512,
          -7,
          -7,
          -2.896813671100868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02234587626988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.468229138961733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.409865523598587,
          -7,
          -7,
          -7,
          -7,
          -4.2123474379880115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.774407465921632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7331009229280614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.730685396203913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6910814921229687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.441695135640717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2776092143040914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727272789836275,
          -7,
          -7,
          -7,
          -2.0453229787866576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669493538318174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9093955459671053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3710678622717363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.367355921026019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.904715545278681,
          -7,
          -4.796529236394143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0253058652647704,
          -2.989894563718773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.469895618975018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2422929049829308,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.272746411201189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.318272080211627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.294466226161593,
          -7,
          -7,
          -3.31367468753116,
          -7,
          -7,
          -7,
          -7,
          -2.385606273598312,
          -2.7113853790984517,
          -7,
          -7,
          -7,
          -7,
          -2.7846618607977156,
          -2.4294446515270676,
          -7,
          -2.59090549565564,
          -2.8534559683972103,
          -7,
          -3.3157604906657347,
          -7,
          -3.029586671630457,
          -3.3207692283386865,
          -7,
          -3.4335412578764823,
          -3.3226327116922234,
          -7,
          -7,
          -7,
          -3.361538971269279,
          -7,
          -7,
          -7,
          -3.2300655512060468,
          -7,
          -3.3294903316193807,
          -7,
          -3.351603072419129,
          -3.3483048630481607,
          -7,
          -3.3121773564397787,
          -7,
          -7,
          -7,
          -7,
          -3.0332896932905147,
          -2.3146331720348976,
          -7,
          -3.319314304090512,
          -3.4807253789884878,
          -7,
          -7,
          -7,
          -7,
          -3.3827372657613304,
          -7,
          -7,
          -7,
          -7,
          -3.3976967356393635,
          -7,
          -7,
          -2.8316565189450587,
          -7,
          -7,
          -3.0843975191411492,
          -7,
          -7,
          -3.485295438726089,
          -3.3016809492935764,
          -2.855115160771781,
          -7,
          -3.307709923404807,
          -7,
          -7,
          -7,
          -7,
          -3.378579576115775,
          -7,
          -3.1137762838370313,
          -7,
          -3.368286884902131,
          -7,
          -3.1990941600088276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.59659709562646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3289908554494287,
          -3.3062105081677613,
          -2.699143687394484,
          -3.306425027550687,
          -3.300812794118117,
          -7,
          -7,
          -2.238376289780375,
          -3.3197304943302246,
          -7,
          -7,
          -7,
          -3.446070935701005,
          -7,
          -3.707995746422929,
          -7,
          -7,
          -7,
          -3.0419845014867866,
          -3.258976961303746,
          -7,
          -3.4413808849165113,
          -3.465977368285823,
          -3.3729120029701067,
          -7,
          -7,
          -3.037227234582274,
          -7,
          -7,
          -3.7395327894173307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8173008783933216,
          -2.38431358157012,
          -7,
          -3.403120521175818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.336059277866349,
          -2.967079734144497,
          -7,
          -7,
          -7,
          -3.135959092124557,
          -7,
          -3.2971036501492565,
          -7,
          -7,
          -7,
          -7,
          -2.2767899450894244,
          -3.374565060722765,
          -3.359835482339888,
          -7,
          -2.9054360671891235,
          -3.024485667699167,
          -7,
          -2.561441012527098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3136563466180315,
          -7,
          -3.2404244330836076,
          -7,
          -3.351409751925439,
          -7,
          -3.433449793761596,
          -2.726512260525233,
          -7,
          -3.3783979009481375,
          -7,
          -3.3854275148051305,
          -2.803115554890027,
          -7,
          -3.052886235256382,
          -3.3326404103874627,
          -3.356599435724971,
          -7,
          -7,
          -3.5021538928713607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.811712462583848,
          -2.531265975394496,
          -2.3081373786380386,
          -7,
          -2.395326393069351,
          -3.3463529744506384,
          -7,
          -7,
          -7,
          -3.2811470420244278,
          -3.0392157659039505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.303196057420489,
          -3.0073209529227447,
          -7,
          -7,
          -3.40226138245468,
          -3.5865660181861325,
          -7,
          -3.001949941084268,
          -7,
          -7,
          -7,
          -7,
          -3.3439990690571615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5669124528516787,
          -7,
          -7,
          -7,
          -7,
          -2.5338144099847226,
          -3.0153597554092144,
          -7,
          -3.0360297306565434,
          -2.2479732663618064,
          -7,
          -7,
          -3.2216749970707688,
          -7,
          -7,
          -7,
          -3.5711262770843115,
          -3.377670439334323,
          -2.7814942626759254,
          -7,
          -3.198761786685379,
          -7,
          -7,
          -7,
          -2.198731369770289,
          -7,
          -7,
          -2.8092903011763157,
          -3.5005109105263372,
          -7,
          -7,
          -7,
          -7,
          -3.3979400086720375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0113589537066106,
          -2.745465168670727,
          -2.8139144200486035,
          -2.4042634020509106,
          -2.6263403673750423,
          -3.263697804915245,
          -7,
          -7,
          -3.0953437318725254,
          -7,
          -7,
          -7,
          -7,
          -3.1876617026529592,
          -3.0707764628434346,
          -3.1702617153949575,
          -3.3479151865016914,
          -1.9372589788376664,
          -3.0308020487722676,
          -3.781888667731667,
          -3.44870631990508,
          -7,
          -7,
          -7,
          -3.4742162640762553,
          -3.09324653110384,
          -7,
          -3.3102683666324477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0661394928706995,
          -7,
          -3.7302976620971497,
          -3.629817196018516,
          -3.904354304879218,
          -7,
          -3.1664301138432824,
          -3.021708959667232,
          -3.4507108781469196,
          -7,
          -3.3727279408855955,
          -7,
          -3.12985095078891,
          -2.7478000908643687,
          -3.4500950758716025,
          -7,
          -7,
          -7,
          -3.0884904701823963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4395432098217347,
          -7,
          -7,
          -3.4899685184785194,
          -4.062032658656056,
          -4.308436347167652,
          -7,
          -4.456366033129043,
          -7,
          -3.8312296938670634,
          -3.950575783275147,
          -2.9830816586339246,
          -7,
          -3.097812407365289,
          -4.595010951898408,
          -4.6729471353465035,
          -4.814593827514569,
          -3.0428707165856252,
          -7,
          -7,
          -3.5895679839722483,
          -7,
          -4.6271507046257,
          -7,
          -4.630451606315535,
          -3.361586195156881,
          -3.6833726716448614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.200269990190228,
          -3.664006990415448,
          -4.299801377511212,
          -7,
          -3.924615217311472,
          -3.6016798173058957,
          -7,
          -7,
          -7,
          -3.94215692846749,
          -7,
          -2.98915306706963,
          -4.114577627000166,
          -4.0393546227061625,
          -3.3805730030668872,
          -3.393399695293102,
          -7,
          -3.136879039875517,
          -3.78640829807341,
          -2.9393528243805584,
          -2.163835222252474,
          -2.7143942477521676,
          -2.9361785093615893,
          -2.930120893290665,
          -7,
          -7,
          -7,
          -3.33665982345442,
          -7,
          -4.233275391293944,
          -7,
          -3.394976719554564,
          -3.272626949394092,
          -3.5563025007672873,
          -4.478641516731935,
          -7,
          -2.9639058261187046,
          -2.7283537820212285,
          -3.3508394641028696,
          -7,
          -4.047712835972715,
          -2.4812917270129815,
          -3.8191160105241306,
          -7,
          -3.498517311461634,
          -4.0750357259221905,
          -3.3609508662563887,
          -3.2168254232660476,
          -3.3156905165284845,
          -3.719082573901486,
          -2.229442192497785,
          -7,
          -3.3428173146357327,
          -3.3223330236343784,
          -3.504584122237375,
          -7,
          -2.8863740159456666,
          -7,
          -2.9636697965031646,
          -3.1588146467242266,
          -3.4785304231255387,
          -7,
          -7,
          -7,
          -3.075911761482778,
          -7,
          -2.857407888234583,
          -7,
          -2.2337424492627256,
          -7,
          -3.1409268419924303,
          -2.0920108321869253,
          -3.158513262616432,
          -2.4977192746214762,
          -7,
          -2.6355395938518185,
          -7,
          -2.425277259051414,
          -2.532435864506711,
          -2.9341616582977217,
          -3.5759956202032677,
          -7,
          -2.326975564214103,
          -2.8737080188633053,
          -2.981969534880924,
          -3.397592434038117,
          -7,
          -2.5854607295085006,
          -2.5018197150156265,
          -2.9077695418108918,
          -7,
          -7,
          -2.3973264538510293,
          -7,
          -7,
          -3.3480822335510885,
          -3.3792577957042833,
          -3.307717560224521,
          -7,
          -2.9126471062183175,
          -2.666892211066536,
          -2.4159466351953087,
          -3.336859820916809,
          -7,
          -3.3191060593097763,
          -2.6869340371737893,
          -3.341038631677523,
          -7,
          -3.4570488265856314,
          -3.0049658871068234,
          -2.9866437936313814,
          -3.1048284036536553,
          -2.611487278391802,
          -7,
          -7,
          -7,
          -2.9793966030856,
          -3.219939869134243,
          -2.877563299235066,
          -3.0172420845476458,
          -3.0257153839013404,
          -7,
          -2.736077637003946,
          -2.639154332860882,
          -7,
          -3.808075868091307,
          -2.8926510338773004,
          -2.759778274692473,
          -7,
          -2.9320676922007216,
          -3.3581252852766488,
          -7,
          -4.007363654312278,
          -7,
          -3.362356792654536,
          -2.9341616582977217,
          -3.040602340114073,
          -2.886866575028829,
          -3.5499836111596887,
          -7,
          -7,
          -2.4792494083469703,
          -2.060869464336048,
          -3.3965480379871322,
          -1.8045915935946966,
          -2.589790080853059,
          -3.3525683861793083,
          -3.1314582601065255,
          -2.40219995031908,
          -2.6572607893053752,
          -2.0930462684998408,
          -2.7514074226375196,
          -7,
          -3.3001605369513523,
          -3.6103407114521566,
          -3.0273496077747564,
          -7,
          -3.559068334034537,
          -2.5473644129795048,
          -7,
          -2.51418538761473,
          -2.9393320163657064,
          -2.5529577650807846,
          -3.0189084443163274,
          -3.420120848085703,
          -2.83968749733336,
          -7,
          -3.3654879848909,
          -1.796445242184168,
          -3.668106237932731,
          -7,
          -7,
          -3.2949069106051923,
          -2.459118225368112,
          -3.0105119627372137,
          -7,
          -7,
          -7,
          -3.3809344633307017,
          -3.332034277027518,
          -7,
          -3.3354579006893843,
          -2.6870828446043706,
          -3.398981066658131,
          -3.3220124385824006,
          -3.1227072543183483,
          -7,
          -7,
          -7,
          -3.048247531803974,
          -7,
          -3.351989455435632,
          -2.764447863656448,
          -2.552320502337091,
          -3.668572269184558,
          -7,
          -7,
          -7,
          -3.307923703611882,
          -7,
          -3.061389642585325,
          -7,
          -7,
          -2.910224071953891,
          -3.0653929615619915,
          -3.436162647040756,
          -7,
          -7,
          -3.358315640082196,
          -7,
          -2.88284966953054,
          -3.297760511099134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.575949502067735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557110019844558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6830470382388496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517037463772294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727199542699307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669409867287783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.305351369446624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.674125982742708,
          -7,
          -4.495252860071183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1078880251827985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.941511432634403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8418955262504215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.08064091507024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5814945422908995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.709166275871844,
          -7,
          -7,
          -7,
          -7,
          -2.726002327603283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2278353057755873,
          -3.3389542523776075,
          -7,
          -2.5493098589194982,
          -3.375108963026137,
          -7,
          -7,
          -7,
          -2.6143698395482886,
          -7,
          -7,
          -4.2635887314599445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.016824493667488,
          -7,
          -3.6470698522337863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.046701692585523,
          -2.965828614858199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8887409606828927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -2.1383026981662816,
          -7,
          -7,
          -7,
          -7,
          -2.848189116991399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.224235143716918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0689276116820716,
          -7,
          -7,
          -2.0005425290922942,
          -7,
          -3.075911761482778,
          -7,
          -2.353467413965482,
          -7,
          -7,
          -2.6620309788225325,
          -2.0345711656177965,
          -2.6242820958356683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.114711040558363,
          -7,
          -7,
          -7,
          -3.8953278149927018,
          -7,
          -7,
          -3.205745540942662,
          -7,
          -7,
          -7,
          -2.9360107957152097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8169038393756605,
          -7,
          -7,
          -2.8852198251151067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0265332645232967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.137775961313472,
          -7,
          -7,
          -7,
          -2.9786369483844743,
          -7,
          -7,
          -2.1264561134318045,
          -7,
          -7,
          -7,
          -3.0409976924234905,
          -7,
          -7,
          -1.9129494697951093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3350565194390915,
          -7,
          -7,
          -7,
          -7,
          -2.787350048968867,
          -7,
          -3.030194785356751,
          -7,
          -2.743901550485179,
          -2.48572142648158,
          -7,
          -2.6725596277632757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.811712462583848,
          -7,
          -7,
          -1.8530895298518655,
          -2.385606273598312,
          -2.3371263410122576,
          -2.835056101720116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9410142437055695,
          -2.8095597146352675,
          -2.8254261177678233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6738285029024995,
          -7,
          -7,
          -7,
          -2.7501225267834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1566356727947436,
          -7,
          -7,
          -7,
          -2.8444771757456815,
          -1.907291901419713,
          -2.576341350205793,
          -7,
          -2.932980821923198,
          -2.7103994661168005,
          -7,
          -3.4634450317704277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.028571252692538,
          -2.8243699338659654,
          -7,
          -3.901785145303599,
          -7,
          -7,
          -2.850033257689769,
          -2.6195676066178586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.900913067737669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0613267969905547,
          -7,
          -7,
          -2.651278013998144,
          -3.1119342763326814,
          -1.6302429114439048,
          -1.631781872947651,
          -4.134952320751409,
          -7,
          -7,
          -3.488762172066694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0161973535124393,
          -7,
          -7,
          -7,
          -7,
          -4.196580297209667,
          -2.8721562727482928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.392410739305955,
          -7,
          -7,
          -3.249271753073101,
          -3.1775364999298623,
          -7,
          -2.7155855518931964,
          -7,
          -3.140193678578631,
          -3.2000292665537704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9751253198007745,
          -7,
          -7,
          -4.622928621352165,
          -7,
          -7,
          -7,
          -4.435876204588752,
          -3.403635189790548,
          -7,
          -7,
          -3.736890281242343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4983794839511457,
          -7,
          -7,
          -3.5771182378818316,
          -7,
          -7,
          -7,
          -4.802058431469606,
          -7,
          -3.943077404269343,
          -7,
          -7,
          -4.629969946292171,
          -7,
          -7,
          -4.708250888591378,
          -7,
          -4.109094603121803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576836417070687,
          -3.5351041538013934,
          -2.9242792860618816,
          -7,
          -7,
          -7,
          -3.6455327940379245,
          -3.814580516010319,
          -2.470452494407648,
          -3.307923703611882,
          -3.8529067587969537,
          -3.7409150764812824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5175352052581,
          -3.4501947501639734,
          -7,
          -2.8976270912904414,
          -3.374565060722765,
          -2.6159500516564007,
          -4.13916516599753,
          -7,
          -7,
          -3.1730890999406967,
          -7,
          -7,
          -3.3966351669836934,
          -7,
          -7,
          -7,
          -3.689486448364248,
          -7,
          -2.9143137682186073,
          -7,
          -7,
          -3.7646990637983677,
          -7,
          -7,
          -3.358816175464692,
          -7,
          -7,
          -3.1712387562612694,
          -7,
          -7,
          -7,
          -7,
          -3.0277572046905536,
          -7,
          -3.1063609088067503,
          -7,
          -2.3628054903717945,
          -7,
          -7,
          -2.8046930263961647,
          -7,
          -7,
          -7,
          -2.908417992953383,
          -7,
          -2.4227875693463337,
          -2.5490032620257876,
          -7,
          -7,
          -7,
          -2.5438611881987567,
          -7,
          -7,
          -3.0718820073061255,
          -7,
          -7,
          -3.1920095926536702,
          -3.0461047872460387,
          -7,
          -2.848189116991399,
          -3.1600481395528757,
          -7,
          -7,
          -7,
          -3.469232742506612,
          -4.444068228441408,
          -7,
          -3.443888546777372,
          -3.0051805125037805,
          -2.1103491705634387,
          -7,
          -7,
          -7,
          -3.0101585617234066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3760291817281805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5363690286780414,
          -7,
          -7,
          -7,
          -7,
          -3.0609746934997224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8000293592441343,
          -2.9444826721501687,
          -7,
          -7,
          -7,
          -7,
          -2.6462076122066853,
          -2.0117818305481068,
          -7,
          -2.1071328508548213,
          -7,
          -7,
          -3.143327129992046,
          -2.6480596170682786,
          -7,
          -2.6428600525844916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0432174545734725,
          -7,
          -3.3766681858105296,
          -3.9911595969595175,
          -3.7940695839816327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.978940969735289,
          -7,
          -7,
          -7,
          -7,
          -3.050290502385774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7126497016272113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.406114192678464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6867032848448513,
          -7,
          -7,
          -7,
          -7,
          -2.671481400086431,
          -7,
          -7,
          -7,
          -7,
          -3.305028753746333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3271545124094315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.178412861128507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.143014800254095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.414973347970818,
          -7,
          -7,
          -7,
          -7,
          -2.3626709297256667,
          -7,
          -4.058236168942767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.435071564357987,
          -7,
          -7,
          -2.4170562991191105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.200303182981585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4487713900601857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2062860444124324,
          -7,
          -3.8522969658269255,
          -7,
          -7,
          -2.719089096287673,
          -7,
          -2.7134905430939424,
          -7,
          -7,
          -2.34960126544933,
          -7,
          -2.5888317255942073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.531265975394496,
          -7,
          -1.8530895298518655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.672122498058382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5060086700150377,
          -7,
          -7,
          -7,
          -7,
          -2.2741578492636796,
          -2.303196057420489,
          -7,
          -7,
          -2.5163149757779495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.607025878434786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8107364373885813,
          -7,
          -7,
          -7,
          -4.30513631894364,
          -7,
          -7,
          -3.748962861256161,
          -7,
          -7,
          -7,
          -7,
          -2.7810369386211318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7246853882373596,
          -3.844862216137521,
          -7,
          -7,
          -7,
          -7,
          -2.916980047320382,
          -3.417803722639881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2648178230095364,
          -3.358315640082196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5704028222869075,
          -7,
          -3.4261044280965076,
          -7,
          -7,
          -7,
          -7,
          -3.775974331129369,
          -2.8816699076720615,
          -4.066214075471244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.352279017274498,
          -4.979452764766347,
          -7,
          -2.3710678622717363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5930644316587173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8529067587969537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.632345920346211,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5085746049701796,
          -7,
          -7,
          -7,
          -3.773640193260026,
          -7,
          -4.025090713297739,
          -2.9380190974762104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.443262987458695,
          -2.5185139398778875,
          -7,
          -3.8248414717537007,
          -7,
          -7,
          -7,
          -4.640113571929359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3263358609287517,
          -3.401400540781544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3961993470957363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0016544021263485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8506462351830666,
          -7,
          -2.6464037262230695,
          -7,
          -7,
          -2.2624510897304293,
          -2.890197386210029,
          -2.3654879848909,
          -7,
          -2.933824603968112,
          -7,
          -7,
          -7,
          -3.4189638307036225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.010024193899956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.311753861055754,
          -7,
          -7,
          -2.3502480183341627,
          -7,
          -7,
          -7,
          -7,
          -4.14813973650122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276323911020188,
          -7,
          -7,
          -7,
          -7,
          -2.932980821923198,
          -7,
          -7,
          -7,
          -7,
          -3.5420781463356255,
          -7,
          -7,
          -7,
          -7,
          -2.0863598306747484,
          -7,
          -1.9637878273455553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658316727178102,
          -7,
          -7,
          -7,
          -7,
          -3.15106325335375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.103803720955957,
          -7,
          -7,
          -3.923105796324239,
          -7,
          -7,
          -7,
          -2.4345689040341987,
          -7,
          -7,
          -4.256994202073168,
          -7,
          -7,
          -7,
          -2.4502491083193614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.034167049413581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.137354111370733,
          -3.3980268588836866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9159008580770402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9159272116971158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.279780976996965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.095866453478543,
          -7,
          -7,
          -7,
          -4.258980305302306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.595459477929287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2993983300681498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6484738560346033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.20682587603185,
          -7,
          -7,
          -7,
          -7,
          -3.555968299533478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.60422605308447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3081373786380386,
          -7,
          -2.385606273598312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.093421685162235,
          -7,
          -7,
          -2.298853076409707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7589118923979736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983400738180538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9960736544852753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.380030247967831,
          -7,
          -4.496334505996817,
          -7,
          -7,
          -7,
          -2.907411360774586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.798650645445269,
          -2.6334684555795866,
          -7,
          -7,
          -7,
          -2.2041199826559246,
          -7,
          -7,
          -7,
          -3.414137362184477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7491176623563223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.552668216112193,
          -2.940516484932567,
          -7,
          -5.0978054730215385,
          -2.670709595223797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9483640559883693,
          -3.378942698613437,
          -7,
          -7,
          -7,
          -3.941821886920197,
          -2.9786369483844743,
          -7,
          -7,
          -7,
          -7,
          -2.7178368674869255,
          -2.976808337338066,
          -7,
          -7,
          -7,
          -7,
          -2.1958996524092336,
          -7,
          -7,
          -7,
          -7,
          -2.8808135922807914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732610852795199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1736232576980816,
          -2.402834330403087,
          -7,
          -4.136815657726849,
          -3.694956002249818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1829849670035815,
          -7,
          -7,
          -4.352317610936827,
          -4.979461871381611,
          -7,
          -7,
          -3.2591158441850663,
          -2.1351326513767748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.199328471994455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.155204413132518,
          -7,
          -7,
          -3.5911759503117913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6848004941944112,
          -7,
          -2.7287594751678745,
          -7,
          -7,
          -3.207365037469072,
          -7,
          -2.5352941200427703,
          -7,
          -3.7737864449811935,
          -7,
          -4.025111208554085,
          -2.636989101812229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0013009330204183,
          -2.747411807886423,
          -7,
          -7,
          -3.824971461123693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.100370545117563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7190356989651443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7026889681591335,
          -7,
          -7,
          -2.6483600109809315,
          -7,
          -7,
          -7,
          -3.1127166884277973,
          -2.5440680443502757,
          -7,
          -2.7114697818743276,
          -7,
          -3.4207806195485655,
          -7,
          -3.7203247174174416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.010066630335587,
          -7,
          -3.6519076720869994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6522463410033232,
          -2.4771212547196626,
          -7,
          -7,
          -7,
          -7,
          -3.8471097408372383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8027737252919755,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.177980667073867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333689041703905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9242792860618816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.311753861055754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.733999286538387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3891660843645326,
          -7,
          -7,
          -4.0553783313750005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5808679779090298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067303385087657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3371263410122576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5910646070264993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.414973347970818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.05307844348342,
          -2.100370545117563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1082266563749283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.5070844780971057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.61066016308988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.343802333161655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.770483809431108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151706857022576,
          -7,
          -7,
          -4.603155202771475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325392500017263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639366942225054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.177504034843219,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.03342375548695,
          -2.802317533567358,
          -2.091315159697223,
          -7,
          -3.006808208492579,
          -7,
          -7,
          -7,
          -3.2364532830524073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008429826797229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.312283165791478,
          -7,
          -7,
          -7,
          -7,
          -4.145817714491828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657849102464169,
          -7,
          -7,
          -7,
          -7,
          -3.0208789778835277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576116657013627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.220108088040055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7553411838115474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.735742576309504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8773713458697743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.125326713949941,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1925209923060756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.395326393069351,
          -7,
          -2.835056101720116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.300704152596124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4058583993176366,
          -2.360467183515849,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.745309059940828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097635547004261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -7,
          -4.066176785772006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3492775274679554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.300573746885434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1696744340588068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8514723847971446,
          -7,
          -7,
          -4.126293790693266,
          -7,
          -7,
          -4.330819466495837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6826413871962154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626730338579967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7075701760979367,
          -7,
          -7,
          -3.8217754671834636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779708296872661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.814913181275074,
          -7,
          -3.407645797062556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3100982718562,
          -7,
          -3.9506568825045107,
          -7,
          -3.749890841271422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6299190355035416,
          -7,
          -7,
          -7,
          -7,
          -4.146686055647526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659925703127408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.429698460746883,
          -7,
          -7,
          -3.0166155475571776,
          -3.8369050117306402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4458436158937196,
          -7,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7364363439795194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1215598441875008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.15896526038341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.043113289762588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3517963068970236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3654131000761778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0384452964007185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.490192663567421,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.078891619840223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.285107029566812,
          -7,
          -7,
          -2.378397900948138,
          -7,
          -7,
          -7,
          -3.406661814514544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.250175948083925,
          -7,
          -7,
          -7,
          -7,
          -3.630122642859312,
          -7,
          -2.837588438235511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6522463410033232,
          -2.756636108245848,
          -7,
          -7,
          -3.1690863574870227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3463529744506384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.9012139819931883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4885507165004443,
          -7,
          -2.4002500911501117,
          -7,
          -3.525044807036845,
          -4.371600393412442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6898414091375047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.762678563727436,
          -7,
          -7,
          -3.2127201544178425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6962689967455327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8458212616333527,
          -7,
          -3.024895960107485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4415380387021606,
          -7,
          -7,
          -2.6242820958356683,
          -4.130858893597252,
          -7,
          -7,
          -3.2845811128217504,
          -7,
          -7,
          -7,
          -7,
          -3.140193678578631,
          -2.815577748324267,
          -2.621868384681515,
          -7,
          -2.7155855518931964,
          -7,
          -5.098391034810722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -7,
          -2.754348335711019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.956093159053612,
          -7,
          -2.6127838567197355,
          -3.5044090720010512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4452927694259716,
          -3.048053173115609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4803663095328092,
          -7,
          -3.3896975482063856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.652816642878804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.544055635759241,
          -3.4870676377163163,
          -7,
          -7,
          -7,
          -3.106955425644155,
          -7,
          -7,
          -7,
          -2.6711728427150834,
          -7,
          -3.710540447933297,
          -7,
          -7,
          -3.8783685781837227,
          -4.077077066845761,
          -5.172696317831423,
          -7,
          -2.450029045237934,
          -7,
          -4.612275116542189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605811248305117,
          -7,
          -7,
          -4.031953515152245,
          -7,
          -7,
          -3.60959440922522,
          -4.014646524684032,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5161385767170743,
          -2.6444385894678386,
          -3.0941215958405612,
          -7,
          -3.3895204658463776,
          -3.9934803190699966,
          -7,
          -7,
          -7,
          -7,
          -2.457124626303409,
          -4.32791039358105,
          -7,
          -2.161368002234975,
          -7,
          -3.750970984437319,
          -7,
          -7,
          -7,
          -7,
          -3.4913616938342726,
          -7,
          -7,
          -2.5599066250361124,
          -7,
          -7,
          -3.835817354293473,
          -7,
          -7,
          -3.8680857845717336,
          -4.164650215934297,
          -3.83890416082117,
          -7,
          -3.077912702949456,
          -7,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -2.582874673593952,
          -7,
          -7,
          -3.0024900412432993,
          -7,
          -7,
          -2.9273703630390235,
          -2.519171463821659,
          -7,
          -3.0111473607757975,
          -2.6232492903979003,
          -7,
          -3.7313671298249993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6744937172963503,
          -2.8095597146352675,
          -3.549814370675745,
          -7,
          -7,
          -2.46014581749175,
          -7,
          -7,
          -7,
          -3.7170044070405472,
          -7,
          -7,
          -7,
          -2.788168371141168,
          -7,
          -7,
          -3.608739919068788,
          -2.9400181550076634,
          -2.8976270912904414,
          -3.124422705456867,
          -7,
          -2.970036776622557,
          -2.3005954838899636,
          -3.7340794072805945,
          -7,
          -3.26030994579492,
          -7,
          -7,
          -7,
          -4.271632537487123,
          -3.4089180208467798,
          -7,
          -3.2835273648616936,
          -3.7125234348776948,
          -7,
          -3.9611362173872253,
          -4.283640388800368,
          -2.158513262616432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.030599721965951,
          -3.4705574852172743,
          -7,
          -7,
          -7,
          -3.0064660422492318,
          -7,
          -7,
          -7,
          -7,
          -2.846337112129805,
          -2.649334858712142,
          -7,
          -7,
          -2.7399676967595092,
          -7,
          -7,
          -2.677150521273433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.28023680960969,
          -7,
          -7,
          -7,
          -3.470410490975931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.877083256650651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557302638328947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3944516808262164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5172486965011185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3384564936046046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.9012139819931883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7218106152125467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9180303367848803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7323937598229684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.242131288530818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.280173021838674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.330687657787511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.004751155591001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626596966780973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.466823151065687,
          -7,
          -4.740283719681879,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788875115775417,
          -3.2460059040760294,
          -7,
          -7,
          -2.2764618041732443,
          -7,
          -4.328868673852926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.617000341120899,
          -4.302511306010539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2081725266671217,
          -7,
          -7,
          -7,
          -2.806179973983887,
          -7,
          -3.7077404542737713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278387725209282,
          -2.70594142445768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9253120914996495,
          -7,
          -7,
          -7,
          -7,
          -4.146283113159587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295127085252191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274942566083686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8770025574116485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3138672203691537,
          -7,
          -1.4771212547196626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9637878273455553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590042627883181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.611723308007342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9360107957152097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432828242457897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7242758696007892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.260468911566059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.126001456787675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5826314394896364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.583198773968623,
          -7,
          -7,
          -7,
          -7,
          -3.3884564527002667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.462397997898956,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.478566495593843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.56702636615906,
          -7,
          -7,
          -7,
          -3.104145550554008,
          -2.7965743332104296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1583624920952498,
          -7,
          -2.1172712956557644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145848756590544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6747325778893765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985695859689842,
          -7,
          -7,
          -3.12057393120585,
          -3.6320634252958612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8309092995464433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.261334253799131,
          -7,
          -3.3126004392612596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.239749810446363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.448992149239026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.036708721569886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6330642726914992,
          -7,
          -7,
          -7,
          -3.897791981939225,
          -7,
          -7,
          -7,
          -3.627263416568221,
          -7,
          -7,
          -7,
          -7,
          -4.133379211923518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.150339140453838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4716339254486073,
          -7,
          -7,
          -3.343480209334696,
          -7,
          -7,
          -7,
          -7,
          -3.388988785124714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2811470420244278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.842609239610562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.915839360077133,
          -5.154685627462485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2322643587752227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.31722734917642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3592661646067485,
          -3.5165353738957994,
          -7,
          -3.2644898803209164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.323808795527016,
          -7,
          -7,
          -3.8682916880178557,
          -7,
          -7,
          -7,
          -7,
          -2.9970950093565927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6413168032733307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.356564405427492,
          -7,
          -7,
          -4.264357321211541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6351820486562674,
          -4.158211669214101,
          -4.005244879445366,
          -7,
          -3.375343489545472,
          -2.22695122879284,
          -7,
          -4.426153268215979,
          -3.5703171726079854,
          -7,
          -3.1914160794625115,
          -4.593917107968336,
          -3.630455612769106,
          -3.8595852430479183,
          -3.0234829244540182,
          -7,
          -3.115627150990863,
          -3.0545009496306323,
          -3.461085645778676,
          -7,
          -3.9865478134147243,
          -3.615685384838915,
          -7,
          -4.018575683467251,
          -3.8292394281413893,
          -7,
          -7,
          -4.174219766183947,
          -7,
          -3.286697594339884,
          -3.149361247980459,
          -3.4855685558706275,
          -2.9335102949995018,
          -3.922050402167174,
          -3.5962671263955155,
          -3.6754575416412085,
          -4.111464151586654,
          -3.778458766742468,
          -3.4631959668545558,
          -7,
          -7,
          -4.590641242012281,
          -3.296665190261531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.826690157228338,
          -3.49043608119321,
          -3.827756862978617,
          -7,
          -3.5453071164658243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.084165022655899,
          -4.084303641312077,
          -5.177348890367912,
          -7,
          -7,
          -7,
          -3.5147622417727225,
          -7,
          -7,
          -3.1527468640264606,
          -4.1169396465507555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.727703883685354,
          -7,
          -7,
          -3.8444771757456815,
          -3.3520803191505655,
          -7,
          -4.649947891142217,
          -7,
          -7,
          -7,
          -4.077222510411053,
          -7,
          -7,
          -7,
          -7,
          -3.652922887567942,
          -2.714901024547078,
          -7,
          -3.1527468640264606,
          -3.0427723374976736,
          -2.7616057013194175,
          -3.016805502720029,
          -3.4446692309385245,
          -7,
          -7,
          -3.1084522639030685,
          -7,
          -2.4778048789297906,
          -3.1204093945560682,
          -3.394976719554564,
          -3.2631624649622166,
          -1.8848322900885788,
          -2.7427251313046983,
          -2.7968715576878025,
          -3.444513206334043,
          -3.0786380383696725,
          -2.7166524440808852,
          -2.813247300897605,
          -3.1419198739138805,
          -7,
          -3.3230457354817013,
          -3.284205067701794,
          -3.1484484035233837,
          -3.3422252293607904,
          -3.286456469746983,
          -2.3893208102588974,
          -2.401140510148946,
          -3.013342904345347,
          -3.2819419334408244,
          -3.3005954838899636,
          -7,
          -3.484299839346786,
          -7,
          -7,
          -7,
          -3.155336037465062,
          -7,
          -7,
          -2.6025250577460293,
          -7,
          -2.9221413362079565,
          -3.388988785124714,
          -2.953034457250357,
          -7,
          -3.118430077122089,
          -7,
          -7,
          -2.7504143122960287,
          -3.0346284566253203,
          -7,
          -3.306425027550687,
          -3.430478187932044,
          -3.004536317851323,
          -3.1008872548535935,
          -2.908306260085468,
          -1.8447453851171665,
          -7,
          -2.603669484764532,
          -7,
          -7,
          -2.8609366207000937,
          -2.7645497190644672,
          -3.525821952156663,
          -7,
          -2.6009728956867484,
          -3.394976719554564,
          -7,
          -3.345765693114488,
          -3.0600679715239822,
          -7,
          -7,
          -3.452016565962548,
          -7,
          -3.378942698613437,
          -3.5399538416563967,
          -3.4207806195485655,
          -2.688320927665063,
          -7,
          -3.0007438674075004,
          -3.3209766773428235,
          -3.5345337560051155,
          -3.2166935991697545,
          -7,
          -2.97657921864011,
          -3.0513669359209556,
          -3.619823500457278,
          -3.3059958827708047,
          -2.94423584379348,
          -2.6551188256238,
          -2.519827993775719,
          -3.0305592452911556,
          -3.276628888711961,
          -2.526867723387192,
          -7,
          -3.1020905255118367,
          -7,
          -7,
          -7,
          -7,
          -2.8796692056320534,
          -7,
          -2.9995654882259823,
          -7,
          -2.751086554886017,
          -7,
          -7,
          -7,
          -7,
          -3.362670929725667,
          -7,
          -7,
          -3.0239722565010565,
          -3.5805828768143675,
          -3.0800850850458694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3220124385824006,
          -7,
          -2.8963884118460372,
          -3.214578953570499,
          -2.813008795492136,
          -3.004751155591001,
          -7,
          -3.291701770729981,
          -3.286231854028553,
          -7,
          -3.31492005599242,
          -7,
          -7,
          -3.1983821300082944,
          -3.1811763955885275,
          -7,
          -7,
          -7,
          -3.037625669914719,
          -7,
          -3.243368813730389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.881403679327327,
          -7,
          -7,
          -7,
          -7,
          -3.642662331442035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0043213737826426,
          -4.276151482986834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5597271274175615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.338037934903125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1119342763326814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0322157032979815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.845098040014257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8208317472884548,
          -2.781755374652469,
          -7,
          -7,
          -7,
          -7,
          -2.4742162640762553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7624910040260096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100715086573081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6843964784190204,
          -3.4255342204982635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6541765418779604,
          -7,
          -2.5877109650189114,
          -7,
          -3.406426624548381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.467034339643714,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0392157659039505,
          -7,
          -2.9410142437055695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.842609239610562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.219977256744623,
          -3.718169405391307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.236564251109213,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2997251539756367,
          -7,
          -7,
          -7,
          -4.19721161702191,
          -7,
          -7,
          -7,
          -3.622006673006805,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30666087655063,
          -7,
          -7,
          -3.7598188773748262,
          -7,
          -7,
          -7,
          -7,
          -2.829303772831025,
          -7,
          -3.090258052931316,
          -2.3935752032695876,
          -7,
          -7,
          -4.195152133593287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.734191551493303,
          -7,
          -7,
          -4.545690512112002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0831441431430524,
          -7,
          -7,
          -4.317582839780199,
          -4.446785619301188,
          -7,
          -7,
          -4.429251503330693,
          -2.723044991643445,
          -7,
          -7,
          -3.692181714500473,
          -7,
          -4.033946202990361,
          -7,
          -7,
          -7,
          -3.3942239667723677,
          -7,
          -7,
          -3.6981392252174574,
          -7,
          -7,
          -7,
          -7,
          -3.873436863222037,
          -3.882140162435669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.102613766771564,
          -3.92236209678479,
          -4.581585603670256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.350073489951687,
          -7,
          -3.485863329597335,
          -7,
          -4.271004725785696,
          -3.5262961904825314,
          -3.73870130043471,
          -7,
          -7,
          -7,
          -4.242640797817615,
          -3.7861833455676335,
          -7,
          -4.071476967698918,
          -7,
          -3.707058940627596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.053942329354995,
          -4.134946257916835,
          -7,
          -7,
          -7,
          -7,
          -4.009843792773555,
          -7,
          -7,
          -3.6085260335771943,
          -7,
          -7,
          -3.359076226059263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.158302169228023,
          -7,
          -7,
          -3.605305046141109,
          -3.609535123922841,
          -7,
          -4.031660887671635,
          -7,
          -7,
          -3.128937494690652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3898303126080624,
          -7,
          -7,
          -7,
          -3.384353414137506,
          -3.9921999297955852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5870677698578,
          -7,
          -7,
          -7,
          -2.793246982819348,
          -3.229425847920695,
          -3.441695135640717,
          -7,
          -2.8847953639489807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4695422107716865,
          -3.1093899325453607,
          -4.139768925279731,
          -7,
          -3.3740147402919116,
          -7,
          -3.151676230847048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.300812794118117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7528164311882715,
          -3.5546102852261643,
          -7,
          -7,
          -7,
          -7,
          -3.3332456989619628,
          -7,
          -7,
          -3.1943292994928325,
          -7,
          -3.4900881970129864,
          -7,
          -3.40705081480425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1280760126687155,
          -7,
          -2.8813846567705728,
          -3.7246035153967165,
          -3.0013009330204183,
          -2.9655152710625696,
          -7,
          -3.7317498835272636,
          -7,
          -7,
          -7,
          -7,
          -2.423245873936808,
          -4.2709581850920975,
          -7,
          -7,
          -3.276921132065774,
          -3.410713982002206,
          -7,
          -3.6586313746095143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7701152947871015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8514112423949736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.415140352195873,
          -2.734199560686231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5170638734826545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.466125870418199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.55942779975949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333467426905371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.123851640967086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6434526764861874,
          -1.8016323462331667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426071864965211,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.182414652434554,
          -7,
          -7,
          -7,
          -7,
          -4.192158425582441,
          -7,
          -7,
          -7,
          -7,
          -2.7701152947871015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8095597146352675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.1139433523068367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.060697840353612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3991543339582164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4190465771041594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639257328519408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.622006673006805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.906335041805091,
          -4.399927418378985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9867717342662448,
          -7,
          -7,
          -2.638156336676239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1958996524092336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5185139398778875,
          -1.255272505103306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6589648426644352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9945371042984978,
          -7,
          -4.055875039146097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8009918612601714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5910646070264993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8613352388849425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6479531777128638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5854607295085006,
          -7,
          -7,
          -7,
          -7,
          -3.2376926476186703,
          -7,
          -7,
          -7,
          -7,
          -2.787460474518415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8254261177678233,
          -7,
          -7,
          -1.5910646070264993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.1139433523068367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149065080207621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.436162647040756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6793824659429104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6532125137753437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5418911250960012,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7520484478194387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9242792860618816,
          -7,
          -7,
          -3.4032921451582543,
          -7,
          -2.2576785748691846,
          -1.787696568289874,
          -4.605520523437469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0599418880619544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097583515541089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.945222316635341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.395186557446505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.10097675539313,
          -7,
          -4.7838750063274365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.300247561194085,
          -2.8761353300030206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1652443261253107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.17201588684082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.152104800892868,
          -7,
          -7,
          -4.603295970166954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9830847727377883,
          -7,
          -7,
          -7,
          -3.769081787118219,
          -7,
          -4.626576444406813,
          -7,
          -7,
          -7,
          -3.732634967539196,
          -7,
          -7,
          -7,
          -7,
          -3.1560946306394277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.940446753156396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603555728624722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2076343673889616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8887409606828927,
          -3.7149999674120426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30977916448048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14622108881188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.894758994371892,
          -7,
          -7,
          -2.910624404889201,
          -3.9739471576440217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.354108439147401,
          -7,
          -7,
          -2.359835482339888,
          -7,
          -7,
          -7,
          -4.033041569076784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0492180226701815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517327882294373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4479328655921804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05618042334214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5021538928713607,
          -7,
          -7,
          -7,
          -7,
          -4.735686707719744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9568404901592333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.949145952419944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8898617212581885,
          -7,
          -7,
          -7,
          -7,
          -3.3905260793492746,
          -7,
          -7,
          -2.6273658565927325,
          -2.7007037171450192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.093421685162235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.041392685158225,
          -7,
          -2.155336037465062,
          -7,
          -7,
          -2.4240645254174877,
          -2.833784374656479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.167317334748176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6699364163086976,
          -7,
          -7,
          -7,
          -7,
          -2.661812685537261,
          -3.6761446803562063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6011905326153335,
          -7,
          -7,
          -3.1152775913959014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.75815462196739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0629578340845103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.616580530085886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.245430407281296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.609882420608204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983400738180538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626658528085447,
          -7,
          -7,
          -7,
          -3.733277533932582,
          -7,
          -7,
          -7,
          -7,
          -3.4586378490256493,
          -7,
          -7,
          -2.7015679850559273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.639396832071146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2900346113625183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9045280136121536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9812521606551154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5943925503754266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368277585134854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.041392685158225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7007037171450192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1386184338994925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9819997141298784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1621061743506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6034727671155,
          -7,
          -7,
          -2.509202522331103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.279210512601395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.558708570533166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145507171409663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313445370426414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.399864008046825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6232492903979006,
          -7,
          -7,
          -7,
          -3.692670699156369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6857417386022635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.499549625905149,
          -7,
          -7,
          -7,
          -2.413299764081252,
          -4.735535028166055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6263403673750423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.250070148646245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6694377594224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3222192947339195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.911157608739977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.550228353055094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.344195715871435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.609679765845366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9825425823029432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626463554010928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639386869017684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6035160533584065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7972675408307164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3292961591399655,
          -7,
          -7,
          -7,
          -2.8887409606828927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8360420147017673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4983105537896004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335618349377605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.700876708376904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.515873843711679,
          -2.8744818176994666,
          -7,
          -7,
          -7,
          -4.518316488416471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1760912590556813,
          -2.44870631990508,
          -7,
          -7,
          -7,
          -7,
          -2.3820170425748683,
          -7,
          -3.155411956437706,
          -7,
          -7,
          -7,
          -2.669316880566112,
          -7,
          -7,
          -3.5122840632818537,
          -7,
          -7,
          -2.368286884902131,
          -2.5477747053878224,
          -3.833083334178343,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7234556720351857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7723217067229196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.88279278907293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.910357557272878,
          -7,
          -7,
          -7,
          -7,
          -3.493959674554181,
          -7,
          -7,
          -7,
          -7,
          -2.842609239610562,
          -7,
          -7,
          -2.4756711883244296,
          -2.6242820958356683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.298853076409707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.155336037465062,
          -7,
          -7,
          -7,
          -1.7103994661168005,
          -7,
          -1.6887163699704657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.05307844348342,
          -7,
          -2.1789769472931693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0043213737826426,
          -7,
          -7,
          -2.8692317197309762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6829569263012085,
          -2.621176281775035,
          -7,
          -7,
          -7,
          -7,
          -2.8300537573206825,
          -7,
          -7,
          -2.535610545908793,
          -7,
          -7,
          -7,
          -7,
          -1.9344984512435677,
          -7,
          -2.6522463410033232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -3.27315566043433,
          -7,
          -7,
          -7,
          -7,
          -3.090258052931316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097871344817271,
          -7,
          -7,
          -7,
          -7,
          -3.0523090996473234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1818435879447726,
          -7,
          -7,
          -3.9492924014120256,
          -3.3823773034681137,
          -7,
          -7,
          -7,
          -3.4299509394978513,
          -2.5083052193633395,
          -7,
          -7,
          -7,
          -2.44870631990508,
          -3.119915410257991,
          -2.9854264740830017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.362293937964231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.553883026643874,
          -7,
          -4.302049390376251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.777499319590365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8754856994168585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4638929889859074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.558708570533166,
          -7,
          -7,
          -7,
          -4.627427309011094,
          -7,
          -7,
          -7,
          -7,
          -3.197280558125619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.009450895798694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.505149978319906,
          -7,
          -2.367355921026019,
          -3.4050046650503694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.130333768495006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.001730108092166,
          -2.733999286538387,
          -7,
          -2.3293978793610424,
          -7,
          -7,
          -7,
          -3.7043221408222355,
          -2.863322860120456,
          -7,
          -7,
          -7,
          -2.103803720955957,
          -7,
          -7,
          -2.857935264719429,
          -7,
          -7,
          -7,
          -3.1225435240687545,
          -2.6309361190641916,
          -7,
          -7,
          -7,
          -3.188365926063148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1487876840563125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.815577748324267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6757783416740852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576162757403178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.55755532051209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0068937079479006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.611723308007342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071219018399975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.57978359661681,
          -2.6599162000698504,
          -7,
          -7,
          -2.7032913781186614,
          -7,
          -7,
          -4.727500590847347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.849910558301496,
          -7,
          -7,
          -4.067638008337918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5575072019056577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.303196057420489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4885507165004443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7103994661168005,
          -7,
          -7,
          -2.1319392952104246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.745933158459443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432884346746606,
          -7,
          -7,
          -3.7651716502632686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -7,
          -4.300747612466259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.135514280998787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351525754547836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9180303367848803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080774352724805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3961993470957363,
          -7,
          -2.8692317197309762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6218856731304694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8577344348976292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3967222785037734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.724808168565719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7363965022766426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6522463410033232,
          -7,
          -4.517868599139189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7944880466591697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1958996524092336,
          -2.6364878963533656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6384892569546374,
          -2.5037906830571814,
          -7,
          -7,
          -2.9429995933660407,
          -7,
          -7,
          -7,
          -7,
          -2.469822015978163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7710727832211948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8965262174895554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.250558238849045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9709509343454243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0073209529227447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9046382755548041,
          -7,
          -3.5005109105263372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.462896900288001,
          -2.6503075231319366,
          -7,
          -7,
          -7,
          -7,
          -2.05307844348342,
          -7,
          -2.6180480967120925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.606047991425154,
          -7,
          -7,
          -3.446770095200388,
          -7,
          -7,
          -2.3263358609287517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.932980821923198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6465017500316117,
          -7,
          -5.432926019526862,
          -7,
          -3.0211892990699383,
          -3.8447007891455773,
          -2.971739590887778,
          -7,
          -7,
          -7,
          -7,
          -3.1142772965615864,
          -2.9698816437465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.054421524462536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.539912084579118,
          -7,
          -3.6991219808103533,
          -3.425044874551389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.050959459771651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.562126253796315,
          -7,
          -4.331164007951355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.024485667699167,
          -7,
          -7,
          -3.985291718592888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.627078963610722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6572471298837166,
          -7,
          -4.381869249183214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.147738141119988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.792391689498254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.707806655538521,
          -7,
          -7,
          -7,
          -7,
          -3.6684791029325856,
          -7,
          -7,
          -7,
          -2.1056993786226297,
          -7,
          -3.4424275042491854,
          -3.625621081424908,
          -7,
          -2.805160901599434,
          -3.3609088282656576,
          -7,
          -7,
          -7,
          -2.5308397786165204,
          -7,
          -7,
          -4.261881149383667,
          -7,
          -7,
          -7,
          -2.8394780473741985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3888114134735234,
          -7,
          -2.8948696567452528,
          -7,
          -2.2487903775753857,
          -2.7708520116421442,
          -7,
          -2.7558748556724915,
          -7,
          -7,
          -7,
          -2.7319109421168726,
          -2.767897616018091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7993405494535817,
          -2.9786369483844743,
          -2.864511081058392,
          -7,
          -7,
          -7,
          -3.5656510827780115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9863237770507656,
          -7,
          -7,
          -4.227629649571009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7489628612561616,
          -2.7134905430939424,
          -7,
          -2.8561244442423,
          -2.7547304690237535,
          -7,
          -2.9410142437055695,
          -3.0141003215196207,
          -3.9212832006133365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.011993114659257,
          -7,
          -7,
          -7,
          -7,
          -2.7180862947830917,
          -7,
          -7,
          -2.639486489268586,
          -7,
          -3.2950537061049516,
          -7,
          -7,
          -2.157607853361668,
          -1.6355895561666118,
          -3.124178055474675,
          -7,
          -2.479647278769387,
          -7,
          -7,
          -2.230959555748569,
          -1.7427855380760457,
          -3.8361816488163294,
          -7,
          -3.1142772965615864,
          -2.863322860120456,
          -2.3483048630481607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7558748556724915,
          -7,
          -2.6613393400060397,
          -3.458788881710845,
          -7,
          -7,
          -7,
          -7,
          -3.086857915659847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8169038393756605,
          -7,
          -2.8787563722006486,
          -7,
          -7,
          -7,
          -2.7701152947871015,
          -7,
          -7,
          -7,
          -2.8271537957574657,
          -7,
          -7,
          -7,
          -7,
          -2.5283524591538877,
          -7,
          -7,
          -2.9489017609702137,
          -2.6834973176798114,
          -3.035829825252828,
          -7,
          -2.2972131959896416,
          -7,
          -2.125481265700594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4002500911501117,
          -2.7218106152125467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4240645254174877,
          -2.7007037171450192,
          -2.2304489213782737,
          -1.6887163699704657,
          -2.1319392952104246,
          -1.9046382755548041,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2405492482826,
          -2.088726563953855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7015679850559273,
          -7,
          -2.841359470454855,
          -3.302157695941016,
          -7,
          -7,
          -7,
          -2.7442929831226763,
          -7,
          -2.786751422145561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6188990588803125,
          -7,
          -7,
          -7,
          -7,
          -2.486666572625893,
          -2.8124955649012526,
          -7,
          -7,
          -7,
          -7,
          -2.751279103983342,
          -2.9492924014120256,
          -7,
          -7,
          -3.2477278329097232,
          -7,
          -7,
          -7,
          -7,
          -2.5118833609788744,
          -2.714329759745233,
          -2.6216954623292787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6308635491781667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.933704163998982,
          -2.7267272090265724,
          -7,
          -2.226342087163631,
          -2.7774268223893115,
          -1.9975501969906566,
          -2.0413926851582254,
          -3.1760912590556813,
          -7,
          -7,
          -7,
          -4.4971405201458134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2536610209467267,
          -2.9390197764486667,
          -7,
          -3.666798683666174,
          -7,
          -4.655437789832168,
          -7,
          -7,
          -2.8153071215317156,
          -2.174479774899102,
          -7,
          -2.169772369448083,
          -7,
          -2.2430380486862944,
          -2.3312826522290138,
          -2.4310419453358856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8432327780980096,
          -7,
          -2.4614985267830187,
          -7,
          -2.061354122279638,
          -7,
          -7,
          -3.6212490044269763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4348402532975735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.098158983460533,
          -7,
          -4.394031192348731,
          -4.655128826420096,
          -7,
          -4.134740071165334,
          -7,
          -5.102601765021186,
          -7,
          -4.787240792066473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.707024836855785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.394469192347434,
          -7,
          -1.6152690965883847,
          -7,
          -3.3100344691359895,
          -2.43426466970869,
          -7,
          -7,
          -7,
          -3.9448896324940845,
          -3.2024201977780304,
          -2.6834973176798114,
          -7,
          -3.6723441962757897,
          -3.4282158115613255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.514813294999285,
          -4.680281109863301,
          -7,
          -7,
          -3.3473300153169503,
          -2.835056101720116,
          -4.313761796292436,
          -7,
          -7,
          -7,
          -4.06918692515191,
          -2.791690649020118,
          -7,
          -7,
          -4.283685590141156,
          -7,
          -7,
          -7,
          -4.166341291983498,
          -7,
          -1.6471383660631504,
          -4.6083869514996945,
          -4.567144045195657,
          -7,
          -3.858236335429513,
          -7,
          -7,
          -3.6344772701607315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7984779980639836,
          -2.833147111912785,
          -2.8692317197309762,
          -7,
          -2.9523080096621253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02928229515597,
          -7,
          -7,
          -7,
          -3.4679039465228003,
          -7,
          -3.0043213737826426,
          -7,
          -7,
          -2.5674185056727485,
          -7,
          -7,
          -2.3811150807098507,
          -2.017629488303718,
          -7,
          -3.85076872692888,
          -7,
          -7,
          -4.172690481755848,
          -2.9530393949118094,
          -7,
          -7,
          -7,
          -2.9385197251764916,
          -7,
          -2.3716834463321415,
          -7,
          -2.492061604512599,
          -3.4670158184384356,
          -7,
          -7,
          -3.329092647195331,
          -7,
          -7,
          -2.733999286538387,
          -2.568788212315347,
          -7,
          -7,
          -7,
          -2.8454081396217936,
          -4.338356873353703,
          -7,
          -2.79309160017658,
          -2.341104638894293,
          -7,
          -3.8283376000590046,
          -7,
          -7,
          -7,
          -7,
          -3.0402174245188593,
          -2.364550995353972,
          -7,
          -1.8222770753484876,
          -7,
          -7,
          -2.8041394323353503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7873592521704675,
          -3.0457140589408676,
          -7,
          -7,
          -2.8027737252919755,
          -2.5269133613887105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.674975896844148,
          -7,
          -7,
          -7,
          -4.018658897585517,
          -7,
          -3.972387999107473,
          -3.686837284994604,
          -3.7839035792727347,
          -2.798650645445269,
          -7,
          -2.3096301674258988,
          -7,
          -2.9334872878487053,
          -7,
          -7,
          -7,
          -2.5017437296279943,
          -7,
          -3.257138370205915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.968907271481587,
          -2.8041394323353503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.866877814337499,
          -7,
          -3.092281919036219,
          -7,
          -7,
          -7,
          -7,
          -2.3242824552976926,
          -7,
          -7,
          -3.6834748147920684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.611723308007342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.832508912706236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.320788091434305,
          -7,
          -7,
          -7,
          -3.6585837154070626,
          -3.682145076373832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.624488362513449,
          -7,
          -7,
          -7,
          -2.8000981801747757,
          -7,
          -7,
          -2.824125833916549,
          -2.067655263657066,
          -2.5899496013257077,
          -7,
          -3.360226455806278,
          -2.89707700320942,
          -7,
          -7,
          -7,
          -2.993876914941211,
          -7,
          -2.9258275746247424,
          -7,
          -7,
          -7,
          -3.869094758435343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.807535028068853,
          -2.6642501190990586,
          -7,
          -7,
          -2.5324995860946626,
          -7,
          -2.8530895298518657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.446459496594692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7792356316758635,
          -3.5322701446090563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -7,
          -2.404833716619938,
          -7,
          -3.7470750149405774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0707764628434346,
          -7,
          -2.8382192219076257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.00987563371216,
          -7,
          -3.3004867879860287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5788683286660286,
          -7,
          -7,
          -2.7015679850559273,
          -7,
          -4.138452701260987,
          -7,
          -2.4599952560473914,
          -7,
          -7,
          -7,
          -7,
          -2.459392487759231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.020775488193558,
          -3.0111473607757975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6896048008603892,
          -7,
          -7,
          -7,
          -3.3142535565153644,
          -7,
          -7,
          -7,
          -7,
          -2.8273692730538253,
          -7,
          -7,
          -7,
          -2.687974620034556,
          -7,
          -2.741151598851785,
          -7,
          -7,
          -3.7322006971472383,
          -7,
          -7,
          -7,
          -2.8680563618230415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8227388533320608,
          -7,
          -7,
          -7,
          -7,
          -2.78993308093175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.833784374656479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.57275546515422,
          -4.372795439374628,
          -2.520483532740792,
          -2.2380461031287955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9258275746247424,
          -4.007875743767586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9355072658247128,
          -7,
          -7,
          -7,
          -2.4578818967339924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.42781057267599,
          -2.678973375919765,
          -4.202937636552238,
          -7,
          -7,
          -7,
          -3.060697840353612,
          -7,
          -2.859138297294531,
          -2.0450927670230357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.074450718954591,
          -2.6928469192772297,
          -7,
          -7,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -7,
          -2.5937013287080988,
          -2.6351485136976085,
          -7,
          -2.9084850188786495,
          -3.49797104570027,
          -7,
          -7,
          -7,
          -2.833784374656479,
          -7,
          -2.9995654882259823,
          -7,
          -7,
          -7,
          -2.7390446475663306,
          -2.961421094066448,
          -7,
          -7,
          -4.058274146685951,
          -7,
          -7,
          -7,
          -7,
          -2.7437709944998567,
          -2.285557309007774,
          -7,
          -7,
          -1.7356928113607588,
          -2.824776462475546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.00774777800074,
          -7,
          -3.673711908836969,
          -3.4699692094999595,
          -4.229675444296448,
          -7,
          -2.908753019184534,
          -7,
          -2.575187844927661,
          -7,
          -7,
          -7,
          -2.663386788318517,
          -7,
          -2.876217840591642,
          -7,
          -7,
          -7,
          -3.0572856444182146,
          -7,
          -7,
          -7,
          -2.7269987279362624,
          -2.8715729355458786,
          -2.753429841575423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4359557908892375,
          -7,
          -7,
          -4.104862518141077,
          -4.2599202335673745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.924606606934837,
          -7,
          -7,
          -4.656558137964639,
          -7,
          -7,
          -7,
          -5.103112403420998,
          -7,
          -4.089269093046149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.106182394938962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096005739715113,
          -7,
          -2.6050355490912556,
          -3.1961531473781424,
          -3.2717571463102697,
          -2.866508861395503,
          -2.586212104232087,
          -7,
          -2.6769982707961844,
          -3.6455941844910615,
          -3.1154107901339194,
          -3.3191060593097763,
          -7,
          -3.0742982439742996,
          -2.837114748515506,
          -7,
          -3.7640266076920375,
          -7,
          -7,
          -7,
          -3.499412125672275,
          -7,
          -7,
          -2.899499746196925,
          -3.680793140101235,
          -7,
          -7,
          -2.595496221825574,
          -7,
          -3.3855957604117104,
          -7,
          -3.9901167660679047,
          -3.6510840892430116,
          -7,
          -7,
          -7,
          -3.1786070026077806,
          -3.6848453616444123,
          -7,
          -2.9108910886445285,
          -3.292477593667784,
          -2.868585666558766,
          -2.7964355588101744,
          -7,
          -2.8233673153857817,
          -3.6656396121264856,
          -3.1740598077250253,
          -3.9389298097006464,
          -7,
          -2.89726044333122,
          -3.6492374723496073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.231681928224919,
          -2.9190780923760737,
          -2.6087933739869307,
          -7,
          -3.453471233722936,
          -4.010299956639812,
          -7,
          -2.954724790979063,
          -7,
          -3.812779707008964,
          -7,
          -4.3318623853290035,
          -2.8527848686805477,
          -7,
          -7,
          -3.7799570512469063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.746244871720198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1536968735859676,
          -4.4441072798376,
          -7,
          -7,
          -3.0073209529227447,
          -7,
          -2.6319508262592173,
          -7,
          -7,
          -3.187238619831479,
          -7,
          -7,
          -7,
          -2.852479993636856,
          -3.039731296098691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.341315794596473,
          -7,
          -7,
          -7,
          -7,
          -3.837840861655523,
          -7,
          -7,
          -7,
          -2.7126497016272113,
          -3.326652014564429,
          -3.0338256939533106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6994040818153375,
          -7,
          -7,
          -7,
          -2.948706308904852,
          -7,
          -2.592916611888093,
          -3.757547853469244,
          -7,
          -3.504198918539445,
          -7,
          -3.7641761323903307,
          -7,
          -7,
          -7,
          -2.5308397786165204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.322818621007395,
          -7,
          -7,
          -3.8151348166368138,
          -3.794418330874141,
          -7,
          -7,
          -7,
          -7,
          -2.1527250407314686,
          -3.1649473726218416,
          -7,
          -2.8506462351830666,
          -7,
          -7,
          -3.5628576747729945,
          -2.164352855784437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.479863113023098,
          -7,
          -3.076640443670342,
          -2.895422546039408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.406540180433955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8117983509420643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.952693805985888,
          -7,
          -7,
          -7,
          -3.5438818782481594,
          -3.3831568450325724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6935270987144677,
          -3.356089625562946,
          -7,
          -2.985089506926381,
          -3.1948749479303777,
          -7,
          -7,
          -7,
          -7,
          -3.5082603055123345,
          -7,
          -2.6128730479675517,
          -7,
          -7,
          -7,
          -7,
          -3.535167485114944,
          -7,
          -3.215373152783422,
          -7,
          -7,
          -7,
          -3.3120715213029315,
          -7,
          -7,
          -3.526339277389844,
          -7,
          -3.2013971243204513,
          -7,
          -7,
          -7,
          -7,
          -3.3395508108256715,
          -3.1246128935404425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.608312042697327,
          -7,
          -7,
          -7,
          -3.179775136236658,
          -7,
          -7,
          -7,
          -7,
          -3.3941013020400446,
          -2.705007959333336,
          -7,
          -7,
          -4.289633539009645,
          -3.4959603948817053,
          -3.5162708827293403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5466660250701842,
          -3.519827993775719,
          -7,
          -2.9143431571194407,
          -7,
          -7,
          -3.1080936541800073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.558708570533166,
          -7,
          -7,
          -7,
          -3.4988616889928843,
          -2.9582054065347525,
          -7,
          -7,
          -3.539828558377898,
          -7,
          -3.6822654462420923,
          -7,
          -7,
          -7,
          -7,
          -3.593618308129536,
          -7,
          -2.9489017609702137,
          -3.0426598769592315,
          -3.49996186559619,
          -7,
          -7,
          -4.28227459870558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.509336958017644,
          -7,
          -7,
          -7,
          -1.2377501940906657,
          -7,
          -7,
          -3.190611797813605,
          -7,
          -7,
          -2.3641244218181514,
          -3.2648964924204757,
          -3.446614823664267,
          -2.216045881701589,
          -7,
          -7,
          -7,
          -7,
          -3.244153372551425,
          -3.0382226383687185,
          -3.1151665612324684,
          -7,
          -7,
          -7,
          -3.325515663363148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5802405082653763,
          -3.5439439424829065,
          -7,
          -7,
          -3.549861188471943,
          -7,
          -7,
          -3.002528594136107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4028629579685634,
          -7,
          -7,
          -2.7317551363799857,
          -7,
          -7,
          -7,
          -3.551327988003846,
          -3.565611724902059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.634275694625944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40226138245468,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.525044807036845,
          -7,
          -7,
          -7,
          -2.915839360077133,
          -3.219977256744623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5005109105263372,
          -7,
          -3.57275546515422,
          -7,
          -3.300646803056269,
          -7,
          -7,
          -7,
          -3.0756685954731195,
          -7,
          -7,
          -3.523486332343228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.516667559099043,
          -3.322770429937203,
          -7,
          -7,
          -7,
          -3.49789674291322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7287594751678745,
          -2.9499751778296535,
          -7,
          -7,
          -7,
          -7,
          -3.5460488664017342,
          -2.686356926304246,
          -7,
          -3.6907781255710885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5900612308037427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4466924663715273,
          -7,
          -7,
          -3.5122840632818537,
          -3.6829368988867754,
          -7,
          -7,
          -2.340240674395174,
          -7,
          -7,
          -7,
          -7,
          -3.323355245756284,
          -3.5423273827739745,
          -7,
          -7,
          -7,
          -7,
          -3.7462110006796334,
          -3.2942457161381182,
          -7,
          -7,
          -7,
          -7,
          -3.2563568863955257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2379205663503803,
          -7,
          -3.5975489342043447,
          -3.0322963447394726,
          -3.7473848529183247,
          -7,
          -3.60916737430202,
          -2.3227504288805587,
          -3.5969268143429707,
          -7,
          -7,
          -7,
          -7,
          -2.9708116108725178,
          -7,
          -7,
          -7,
          -7,
          -2.64957822912025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.245594912768832,
          -7,
          -7,
          -3.8693001841848957,
          -3.8151274306134306,
          -4.331912948773648,
          -7,
          -3.569900362684715,
          -7,
          -3.898176483497677,
          -4.144652031188698,
          -3.551739634346346,
          -7,
          -4.135895575564019,
          -3.7040646794085674,
          -3.603865792191225,
          -3.7427251313046983,
          -3.596659918493907,
          -4.0389974726186795,
          -3.835087847232495,
          -3.5999649037760753,
          -3.027281637748496,
          -3.7933612645639485,
          -7,
          -3.768836471411452,
          -7,
          -4.106211302163002,
          -3.690934048739477,
          -4.235402180158032,
          -3.8759578791368297,
          -3.714497408649806,
          -7,
          -3.6492212391658385,
          -3.9909379276601444,
          -3.2903420614839938,
          -3.827024458044125,
          -3.9528650614677883,
          -3.960232873128512,
          -3.60580048418724,
          -4.150909873701122,
          -3.8001325865508604,
          -3.9604549212944278,
          -3.4786386315431668,
          -3.130976691605617,
          -3.2234202205399374,
          -2.747979909234419,
          -3.318793504793297,
          -3.2555137128195333,
          -2.8490199494984036,
          -7,
          -3.4014350072298702,
          -3.9529376677509807,
          -3.655906418180215,
          -3.864748335629659,
          -3.2681617816431308,
          -3.5995009867887746,
          -7,
          -7,
          -7,
          -7,
          -2.9995654882259823,
          -3.2606198751723716,
          -7,
          -7,
          -2.9585980084317365,
          -3.44854732180148,
          -3.7828050260346147,
          -7,
          -7,
          -7,
          -3.2791509426840255,
          -3.879841055986563,
          -3.91484299810463,
          -3.1406965525464146,
          -7,
          -3.5066403055665023,
          -3.871280972857973,
          -3.210920174711518,
          -3.435266886361759,
          -7,
          -7,
          -3.803934849863842,
          -2.730302712943313,
          -3.7466341989375787,
          -7,
          -3.172310968521954,
          -3.3658182050172414,
          -7,
          -3.9626912667546974,
          -7,
          -7,
          -3.236537261488694,
          -3.4205168312286167,
          -7,
          -7,
          -7,
          -7,
          -3.8669368177316397,
          -2.6388677870923787,
          -7,
          -3.3087777736647213,
          -2.7568895628675167,
          -3.4217684012069243,
          -3.625963747121952,
          -3.6034691597338386,
          -7,
          -7,
          -3.951386094880293,
          -7,
          -3.542767989462867,
          -3.1101405949728718,
          -7,
          -7,
          -3.149116430427238,
          -3.6586790285824486,
          -3.750199727829182,
          -7,
          -7,
          -2.771881320190099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.508754102588731,
          -7,
          -3.500099191915723,
          -3.3957429438643922,
          -3.2060811050336295,
          -3.231851723743416,
          -7,
          -7,
          -2.5368108659915416,
          -7,
          -7,
          -7,
          -7,
          -2.837982785381378,
          -7,
          -3.250420002308894,
          -7,
          -7,
          -3.4219328132785085,
          -3.565611724902059,
          -3.2060158767633444,
          -7,
          -7,
          -7,
          -7,
          -4.086092764263604,
          -7,
          -7,
          -7,
          -7,
          -3.3674025166466746,
          -7,
          -7,
          -1.8005274714328756,
          -3.5412046906832586,
          -3.1989706073934725,
          -3.54703589974001,
          -3.4323277922616042,
          -3.5328817194073974,
          -7,
          -3.5758418740358406,
          -7,
          -7,
          -7,
          -7,
          -3.53731527311201,
          -3.3688445068258215,
          -7,
          -7,
          -2.9926166282706546,
          -7,
          -7,
          -3.4346221231362692,
          -3.285782273779395,
          -7,
          -7,
          -7,
          -3.875928984922927,
          -7,
          -3.655618583541222,
          -7,
          -7,
          -3.00987563371216,
          -3.7320719409998664,
          -7,
          -3.0743592403903977,
          -3.416011443521709,
          -3.1481911962420113,
          -3.777209258145685,
          -3.7411713032360767,
          -3.460797647928118,
          -7,
          -7,
          -7,
          -7,
          -3.5378190950732744,
          -7,
          -3.762453482363547,
          -7,
          -7,
          -7,
          -3.117628173221579,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.227372442289636,
          -3.436162647040756,
          -7,
          -7,
          -7,
          -3.5780658838360915,
          -7,
          -7,
          -7,
          -7,
          -3.5221833176186865,
          -7,
          -3.8776592441116087,
          -3.4877038631637265,
          -2.9839268369509955,
          -7,
          -7,
          -2.807196660710947,
          -7,
          -7,
          -3.7382056096443677,
          -7,
          -7,
          -7,
          -3.461198288622493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5108799847561176,
          -7,
          -7,
          -7,
          -5.149354616033284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149105133899851,
          -7,
          -2.7933043927733774,
          -4.373279893277496,
          -7,
          -7,
          -2.931969120319917,
          -3.027277639180358,
          -7,
          -5.150292740338675,
          -7,
          -4.0370125409780915,
          -7,
          -2.807464739663779,
          -3.069674111945659,
          -7,
          -4.850345984314136,
          -1.9898918994693524,
          -7,
          -4.848281510243934,
          -7,
          -4.672411914830631,
          -4.848355410696216,
          -5.149619341533153,
          -2.808829255943203,
          -7,
          -7,
          -7,
          -5.149576257678986,
          -4.848989206251168,
          -5.14903426716125,
          -4.371403463765366,
          -7,
          -5.153394080644413,
          -5.149160586760595,
          -2.266591201940714,
          -7,
          -7,
          -4.672679607538666,
          -7,
          -5.149265311738653,
          -7,
          -7,
          -5.1492868696291,
          -5.149265311738653,
          -4.0389012666222,
          -3.1218253591650096,
          -7,
          -4.371187969667537,
          -3.8968751295426642,
          -4.672304175802286,
          -4.848149073810197,
          -7,
          -5.14938848527283,
          -7,
          -4.67482135154191,
          -7,
          -7,
          -7,
          -2.524514399128848,
          -7,
          -7,
          -7,
          -7,
          -4.15464608517337,
          -4.548352559894337,
          -7,
          -3.8718339990495183,
          -2.5372058865181337,
          -7,
          -7,
          -7,
          -5.149200631645913,
          -7,
          -7,
          -7,
          -7,
          -4.451313518411642,
          -4.195367600199167,
          -4.305817969913129,
          -4.547519343910926,
          -4.305001089817488,
          -4.548549101029368,
          -1.9514668045128307,
          -3.672839529029401,
          -5.149240672839162,
          -5.149028104289625,
          -7,
          -7,
          -5.1491944711346544,
          -4.672119418119499,
          -7,
          -5.149018859818209,
          -3.447197566155191,
          -7,
          -7,
          -7,
          -5.150612162606934,
          -7,
          -7,
          -5.149514701900688,
          -7,
          -5.15067049322578,
          -7,
          -7,
          -5.15013908827447,
          -4.67268268350736,
          -3.290083149124708,
          -5.149376169491331,
          -7,
          -7,
          -7,
          -3.365843818161034,
          -7,
          -3.180276823857626,
          -2.1982728443452566,
          -7,
          -7,
          -7,
          -2.077761476485917,
          -7,
          -3.9209025391581,
          -4.151887507509935,
          -7,
          -4.848303065841533,
          -4.67228262478892,
          -5.149662421113644,
          -7,
          -7,
          -2.924482559869432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2033706558529422,
          -3.8775592589857277,
          -3.2811243094492752,
          -4.071486177340895,
          -4.304275050477128,
          -3.7198962835797453,
          -7,
          -7,
          -4.451282791695256,
          -4.378067663160357,
          -4.306382132150198,
          -7,
          -7,
          -7,
          -3.41253457748711,
          -7,
          -7,
          -7,
          -4.304801242437977,
          -7,
          -7,
          -3.7893139474454895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5785538211080494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1492868696291,
          -7,
          -4.153589277403475,
          -7,
          -2.8593002162054635,
          -7,
          -3.7894335518935525,
          -2.5817098278976522,
          -4.672125577975422,
          -4.5482266039717745,
          -7,
          -4.849388698815317,
          -4.849754066288477,
          -3.607439703915141,
          -4.371726504556958,
          -7,
          -7,
          -7,
          -7,
          -3.7211966936121548,
          -7,
          -4.547023575658172,
          -7,
          -3.1432425020627006,
          -7,
          -3.5865660181861325,
          -7,
          -4.6738285029024995,
          -4.672122498058382,
          -7,
          -7,
          -7,
          -4.371600393412442,
          -7,
          -7,
          -7,
          -5.154685627462485,
          -3.718169405391307,
          -7,
          -5.149065080207621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.372795439374628,
          -3.300646803056269,
          -7,
          -7,
          -7,
          -5.1491174573697025,
          -4.451479405124862,
          -7,
          -7,
          -7,
          -5.149188310536008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0304869561303556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149333061505514,
          -7,
          -5.149643958959544,
          -3.1969648714132997,
          -7,
          -3.532408552392377,
          -5.153195744095671,
          -7,
          -7,
          -7,
          -3.8755242639493086,
          -7,
          -3.3567068974160033,
          -5.14993618427544,
          -2.6286728307087173,
          -7,
          -4.8480227595874315,
          -7,
          -5.161014432494907,
          -3.4432537813307675,
          -4.4524488813344085,
          -4.249748522900275,
          -3.8303411630372226,
          -4.848047409150086,
          -4.848081300014507,
          -7,
          -7,
          -5.150642863909234,
          -7,
          -7,
          -5.1496962663578945,
          -7,
          -7,
          -7,
          -7,
          -5.149274550965593,
          -3.7585515963427407,
          -4.150931350113742,
          -4.848989206251168,
          -5.149483920739446,
          -2.116804385513106,
          -4.848490862207165,
          -7,
          -2.4172984115998495,
          -3.9185422038449507,
          -7,
          -5.150065315969936,
          -7,
          -5.1524290085454965,
          -5.150200555623702,
          -7,
          -7,
          -7,
          -7,
          -1.7741780084420744,
          -4.197302004237172,
          -7,
          -7,
          -7,
          -3.720591085320366,
          -4.548506115255735,
          -5.149065080207621,
          -7,
          -5.14993618427544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1491174573697025,
          -4.849087576982787,
          -4.450310706005005,
          -2.9213725507652892,
          -4.1559703121583915,
          -1.930604544490573,
          -4.246578587998662,
          -4.306844566247316,
          -2.449620212881275,
          -4.85059722880952,
          -7,
          -4.548131344747943,
          -7,
          -4.248120459883603,
          -4.457715410495883,
          -7,
          -7,
          -7,
          -7,
          -4.849465482196628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.456699977383792,
          -7,
          -7,
          -2.823206621070081,
          -2.819623688454021,
          -3.5585476707260986,
          -4.071003943554348,
          -2.980237184494648,
          -3.9505595616118,
          -3.510112883771509,
          -2.6434316192735525,
          -2.9012505800321833,
          -4.848062814416318,
          -2.5905031402619314,
          -2.362084192831113,
          -2.872282676291554,
          -2.5778275760908556,
          -2.840972784367111,
          -3.3900814326936954,
          -3.0440475554523125,
          -2.9001912510847543,
          -3.1241953803612605,
          -2.6260252699140123,
          -3.7251616989168106,
          -2.7366250525486784,
          -3.6520469834853126,
          -2.5764885701434403,
          -3.021257753888522,
          -2.890446296648246,
          -2.8444224209905213,
          -2.971525815752038,
          -3.948819315356727,
          -2.3958563241394613,
          -2.859412255610798,
          -2.954870831225884,
          -3.482321023291508,
          -3.366063161378102,
          -3.5759039703862934,
          -3.474133763936972,
          -3.750296924443472,
          -3.190670462474224,
          -3.0559527218697293,
          -2.596064481371864,
          -4.110507067122859,
          -2.5623689099317946,
          -3.4986132244051467,
          -2.990800554937705,
          -3.946350925999629,
          -2.329607016300816,
          -4.6742547252584545,
          -1.8093214507765927,
          -3.513270884465516,
          -3.9772143441653935,
          -2.8767235900989143,
          -2.754542969597536,
          -3.8848609218813404,
          -3.737452603142504,
          -3.8220550910247537,
          -3.948556606440763,
          -7,
          -3.514158198043977,
          -2.8081718973340783,
          -5.1552388418104504,
          -5.1505906704038935,
          -3.000045292154698,
          -1.6859897129364445,
          -2.1517212641187347,
          -7,
          -7,
          -5.149554714149009,
          -2.774831384045746,
          -2.560351291091242,
          -2.472436699106128,
          -3.881768950998944,
          -3.232385003072715,
          -7,
          -3.656834583726364,
          -2.0972084650238587,
          -2.823452401213676,
          -4.374901024683465,
          -3.362174189572871,
          -3.0246124170224853,
          -3.034457362461151,
          -3.3500268159642492,
          -5.149727032473089,
          -3.110911824815142,
          -2.551762876952401,
          -4.1101273185900435,
          -2.4618437822769756,
          -4.851108460676247,
          -4.0402492600992455,
          -3.444264050864443,
          -2.9324795300180524,
          -5.149705496421304,
          -5.149394643032612,
          -7,
          -7,
          -3.651765295390196,
          -3.1277207308231225,
          -7,
          -3.2650476611516357,
          -5.150053019367417,
          -4.456696942683218,
          -3.406395824613479,
          -4.110363169253384,
          -5.149763948934585,
          -7,
          -3.6893562233554094,
          -3.7880945575640985,
          -2.828724089405057,
          -3.6888093829536683,
          -4.8498584005624314,
          -4.45552091861866,
          -4.210957286602528,
          -4.55140119809846,
          -3.7763772790230172,
          -4.6746805297242355,
          -4.451642158270915,
          -4.31251887678985,
          -4.373095987078727,
          -4.452795036470653,
          -5.1504279092018646,
          -5.149730108964738,
          -7,
          -3.6123334399272435,
          -4.003814298596238,
          -7,
          -2.290001099692923,
          -3.116115307828765,
          -2.650583755051115,
          -7,
          -4.155463573759529,
          -4.849084503234671,
          -4.111176942004578,
          -4.450640105302473,
          -7,
          -7,
          -3.263854480804389,
          -4.672565781378651,
          -3.6731346140810803,
          -4.461456505933693,
          -7,
          -3.1763031311338112,
          -5.1507901999565835,
          -3.5858751617487856,
          -7,
          -4.306207442837337,
          -4.547402381300456,
          -4.1103080468020226,
          -2.7372302618724946,
          -4.3717449567751165,
          -5.149360774273305,
          -4.672353431245972,
          -4.118273746860196,
          -3.5547697644770895,
          -5.151023379854834,
          -7,
          -4.317403637191061,
          -3.9739955751309255,
          -2.4833757317425307,
          -7,
          -2.6435775608419076,
          -7,
          -4.8493948419854185,
          -2.999527557175333,
          -7,
          -3.2140725258594047,
          -4.8498584005624314,
          -4.1954229886237,
          -4.0038696446688835,
          -3.7557620768491304,
          -7,
          -5.149277630664228,
          -3.5370541354192144,
          -4.196575310462342,
          -7,
          -3.357791963471643,
          -3.4267659138622935,
          -5.156758071220854,
          -3.872420052218972,
          -3.70204408731056,
          -2.8452059258630054,
          -4.112318545682975,
          -3.4048581419444237,
          -7,
          -4.547014332367282,
          -2.902434777692052,
          -3.5223077273031205,
          -4.848444690301653,
          -4.074828626065748,
          -3.4219947885604296,
          -4.675329155248394,
          -3.485063432960738,
          -3.00428327132953,
          -3.7032884126289742,
          -5.149385406360198,
          -4.673911327036779,
          -5.149345378509518,
          -7,
          -5.150089908130527,
          -4.037469404238489,
          -4.680081571848349,
          -7,
          -5.1494100370500995,
          -7,
          -2.4900290301077472,
          -4.848226076651172,
          -4.849241236657997,
          -7,
          -7,
          -3.718824498690825,
          -3.751473107116081,
          -4.108414329015705,
          -3.7581455266997557,
          -4.309803485676787,
          -7,
          -7,
          -4.037101498348468,
          -7,
          -5.149028104289625,
          -7,
          -4.848798549528324,
          -4.149659344142463,
          -4.37168959776849,
          -4.208208380252703,
          -3.504833189750311,
          -2.983147802415998,
          -7,
          -7,
          -3.7401470072175327,
          -7,
          -5.14903426716125,
          -2.977168136967076,
          -7,
          -7,
          -3.584545139959466,
          -3.4409000039084243,
          -4.03733147605049,
          -7,
          -7,
          -5.14997308296338,
          -7,
          -3.4430161248818374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.621072371143626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.893817223967463,
          -7,
          -7,
          -7,
          -3.6215513077550128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8565677869842427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517103485037208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.302330928684399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6648299411430907,
          -3.389343311252078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.924795995797912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6127838567197355,
          -7,
          -2.863322860120456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8479426388452236,
          -7,
          -7,
          -4.368407763758419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.520483532740792,
          -7,
          -7,
          -7,
          -7,
          -1.7781512503836436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.807873132003332,
          -7,
          -7,
          -1.7781512503836436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7075701760979363,
          -7,
          -2.5658478186735176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7299742856995555,
          -7,
          -7,
          -2.513217600067939,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6419695977020594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.350906715537863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9974737588029803,
          -7,
          -7,
          -7,
          -7,
          -4.151829340131871,
          -7,
          -7,
          -4.302146866599888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278136006715478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6504046698680317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274688842237558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2932520331478248,
          -7,
          -1.8920946026904806,
          -7,
          -3.6729171619800405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557567349330712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -7,
          -4.33443364445948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6957442751973235,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.762678563727436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.094471128641644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9304395947667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6679196853173615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.125399929529946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.76654296723122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5440680443502757,
          -7,
          -7,
          -7,
          -7,
          -3.1027766148834415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.001949941084268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2380461031287955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.929418925714293,
          -3.12057393120585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.287801729930226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4073909044707316,
          -7,
          -7,
          -7,
          -4.605778955151077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097666762890238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7558748556724915,
          -7,
          -2.12057393120585,
          -2.5550944485783194,
          -7,
          -7,
          -7,
          -7,
          -2.2576785748691846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0025979807199086,
          -7,
          -2.8731267636145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.39137623916965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784046415808113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -7,
          -4.300769340770549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6582976503081897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.050476427265063,
          -4.979279702785111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.152838509892218,
          -7,
          -7,
          -4.603555728624722,
          -7,
          -7,
          -4.631960961368071,
          -7,
          -3.2489536154957075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.060697840353612,
          -2.5352941200427703,
          -7,
          -7,
          -7,
          -7,
          -1.87069645798925,
          -7,
          -3.7708520116421442,
          -7,
          -4.149660369801945,
          -2.6164755138885654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.861733491532661,
          -2.1409268419924303,
          -7,
          -7,
          -7,
          -7,
          -2.694429690957083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0232524596337114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3364597338485296,
          -3.8253828376360515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2741578492636796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.28454352295875,
          -2.8208579894397,
          -2.284054558436069,
          -3.107040290223204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.310289623796099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4573771965239053,
          -7,
          -7,
          -7,
          -7,
          -3.845872874264218,
          -1.8388490907372554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2741578492636796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4578818967339924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.623766000133931,
          -7,
          -2.6702458530741238,
          -7,
          -7,
          -7,
          -3.8952567531448947,
          -7,
          -7,
          -7,
          -3.9228349834772342,
          -7,
          -7,
          -7,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.695131297704026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0043213737826426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.818371074186973,
          -7,
          -7,
          -1.7558748556724915,
          -7,
          -7,
          -7,
          -7,
          -1.968482948553935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7554174628109362,
          -7,
          -7,
          -1.7888751157754168,
          -2.603144372620182,
          -2.6399842480415883,
          -7,
          -3.5033820634737327,
          -7,
          -7,
          -7,
          -7,
          -3.957527475522261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8260748027008264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4264055213720175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.192539577314719,
          -7,
          -7,
          -2.6364878963533656,
          -7,
          -7,
          -2.9694159123539814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1491174573697025,
          -1.7781512503836436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.376576957056512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8698182079793284,
          -2.9258275746247424,
          -2.8165726960261033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.406199423663313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2922560713564764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097642484061715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.546542663478131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9344984512435677,
          -7,
          -7,
          -3.9460590603851236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6546577546495245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.954724790979063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.34966598409663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.54136703675979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.97924781542311,
          -7,
          -7,
          -2.946206553842783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9838066419784153,
          -7,
          -2.709269960975831,
          -7,
          -7,
          -3.9838517189914717,
          -7,
          -2.4712917110589387,
          -7,
          -3.770336441095149,
          -7,
          -4.02462931413766,
          -2.9148718175400505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4065401804339555,
          -1.7435097647284297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639665748155174,
          -7,
          -7,
          -7,
          -2.1335389083702174,
          -7,
          -7,
          -7,
          -1.9164539485499252,
          -3.3935752032695876,
          -7,
          -7,
          -7,
          -1.720159303405957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3096301674258988,
          -2.9763499790032735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3293978793610424,
          -3.7188661858175696,
          -2.677606952720493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5998830720736876,
          -7,
          -7,
          -2.1398790864012365,
          -3.1074361058060123,
          -7,
          -7,
          -7,
          -2.9116901587538613,
          -3.4129642719966626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2041199826559246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.669502834104343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.289291592392737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9630129593770773,
          -7,
          -7,
          -7,
          -3.34143452457814,
          -2.46014581749175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9180303367848803,
          -7,
          -7,
          -1.6692453387684207,
          -3.464443687404161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.562756657400079,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2528530309798933,
          -3.497738996902168,
          -7,
          -2.886490725172482,
          -7,
          -7,
          -7,
          -7,
          -2.7442929831226763,
          -7,
          -7,
          -1.6731233471534077,
          -7,
          -2.756636108245848,
          -7,
          -3.189770956346874,
          -7,
          -7,
          -7,
          -7,
          -2.6697816152085365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.227243781503063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9609461957338317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2675106848795448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.595753342091326,
          -2.0007232216190958,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -3.5596672783880576,
          -2.785804214612169,
          -7,
          -2.926342446625655,
          -7,
          -7,
          -7,
          -7,
          -2.682145076373832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.897718704935313,
          -7,
          -7,
          -7,
          -2.696356388733332,
          -7,
          -3.7066324508732946,
          -7,
          -3.4753805931433615,
          -2.720572720364261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9787889856630807,
          -3.1166077439882485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.55252221023356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.698535492562001,
          -7,
          -3.5746677663162267,
          -7,
          -7,
          -3.104911380171239,
          -2.75815462196739,
          -2.960470777534299,
          -2.941511432634403,
          -2.3738311450738303,
          -2.5510431647048075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7501225267834,
          -7,
          -2.7589118923979736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0756685954731195,
          -4.451479405124862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.045887759365902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8438554226231614,
          -7,
          -7,
          -2.8360074591255313,
          -7,
          -7,
          -2.3988077302032647,
          -7,
          -7,
          -7,
          -2.7599195366595284,
          -7,
          -7,
          -7,
          -7,
          -2.739572344450092,
          -7,
          -7,
          -3.1085650237328344,
          -2.543074235033532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.775391971696612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7566015347886865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6660965854124314,
          -2.9673919516143807,
          -4.25744496879504,
          -7,
          -7,
          -3.9466855619314516,
          -7,
          -7,
          -7,
          -2.786041210242554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.621280167550415,
          -4.448752683389127,
          -7,
          -7,
          -7,
          -7,
          -3.4233278085624455,
          -4.403120521175818,
          -3.589430945413185,
          -7,
          -4.044029909946466,
          -7,
          -7,
          -7,
          -4.097899077321453,
          -7,
          -4.092703104165027,
          -4.353935455571521,
          -7,
          -7,
          -7,
          -4.625415352154408,
          -3.887954703808801,
          -4.3099848383169075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.007858683843716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.39420644536023,
          -3.1293675957229854,
          -7,
          -3.8759405428391736,
          -4.00902574208691,
          -3.155867191785367,
          -7,
          -3.7617775375081783,
          -7,
          -3.546616684638195,
          -7,
          -7,
          -4.080734686353143,
          -4.149126699742614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.379164961302967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.575187844927661,
          -7,
          -3.1718726561396826,
          -2.8603380065709936,
          -4.307175012040345,
          -7,
          -7,
          -4.636337421853309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.722936853279324,
          -7,
          -2.6881230714056485,
          -7,
          -3.4276483711869328,
          -4.003288158826075,
          -3.147985320683805,
          -7,
          -7,
          -3.1992064791616577,
          -7,
          -3.932199707406741,
          -3.101403350555331,
          -3.0433622780211294,
          -2.8819549713396007,
          -7,
          -2.9885589568786157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.473530762258132,
          -3.5298546483723983,
          -3.6297388416996674,
          -7,
          -3.116939646550756,
          -7,
          -3.2232362731029975,
          -7,
          -7,
          -7,
          -2.987070115921337,
          -7,
          -2.9800033715837464,
          -7,
          -7,
          -7,
          -7,
          -2.7427251313046983,
          -7,
          -2.7955324427101544,
          -7,
          -2.4409090820652177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.526210003841664,
          -7,
          -7,
          -7,
          -7,
          -3.7599770457776187,
          -7,
          -3.448242412634439,
          -2.603144372620182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6216954623292787,
          -7,
          -7,
          -7,
          -2.727642905825253,
          -3.0398105541483504,
          -7,
          -3.4437322414015967,
          -3.0993352776859577,
          -7,
          -7,
          -3.7517408738109004,
          -7,
          -3.009450895798694,
          -7,
          -7,
          -7,
          -7,
          -3.44544851426605,
          -2.8095597146352675,
          -7,
          -3.8422138683580256,
          -7,
          -3.272352240906794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0247592390353963,
          -7,
          -7,
          -7,
          -3.3147397510568504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7693773260761385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5888317255942073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.876967967432585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333588321723421,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023170121121397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9796849238270258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.43281862385205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9790883434844915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639317121243033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603490803574361,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40705081480425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.747334109615905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5949447366950835,
          -3.6221103603612193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2728854447575695,
          -7,
          -2.90687353472207,
          -4.399933182495568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9912260756924949,
          -7,
          -7,
          -7,
          -3.693726948923647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.681241237375587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.21532025132993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.354108439147401,
          -7,
          -7,
          -4.517235497465091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.093666782227903,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028286509426278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.192390874971884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2405492482826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146128035678238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8603380065709936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.307496037913213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.011993114659257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0195316845312554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8836614351536176,
          -3.4075608494863623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.998259338423699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.609807769328702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603306796538514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.429752280002408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080695016358215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4290521089243864,
          -3.598899887063883,
          -7,
          -2.406965750758948,
          -3.3464852909784732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.781659651821598,
          -7,
          -2.444044795918076,
          -2.575187844927661,
          -7,
          -7,
          -7,
          -2.164352855784437,
          -7,
          -7,
          -7,
          -4.338376799232071,
          -7,
          -2.7267272090265724,
          -7,
          -7,
          -7,
          -2.5276299008713385,
          -1.8920946026904806,
          -7,
          -7,
          -3.18440748541232,
          -3.235191653961703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5774917998372255,
          -2.5428254269591797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3251049829714074,
          -2.8555191556678,
          -7,
          -7,
          -4.221101119961506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2190734450070035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8898617212581885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7937903846908188,
          -7,
          -3.763128376799137,
          -7,
          -7,
          -7,
          -2.47928731647617,
          -7,
          -7,
          -2.8303319934519617,
          -7,
          -7,
          -2.7831886910752575,
          -7,
          -4.0383498855076025,
          -7,
          -3.020775488193558,
          -3.08278537031645,
          -2.330413773349191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.824125833916549,
          -2.639154332860882,
          -7,
          -7,
          -7,
          -7,
          -4.078456818053293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3774883833761327,
          -2.816241299991783,
          -2.760422483423212,
          -2.6702458530741238,
          -7,
          -7,
          -7,
          -2.330634661374436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9457147140598603,
          -7,
          -7,
          -7,
          -7,
          -3.4160021857814553,
          -7,
          -2.829946695941636,
          -7,
          -7,
          -2.921166050637739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3439990690571615,
          -7,
          -7,
          -7,
          -7,
          -2.414973347970818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.436162647040756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.088726563953855,
          -7,
          -3.523486332343228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.510723695451636,
          -7,
          -7,
          -7,
          -7,
          -2.5403294747908736,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -3.098470665650629,
          -3.2095150145426308,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.394013663157313,
          -7,
          -4.498503530678758,
          -7,
          -7,
          -2.494154594018443,
          -3.623766000133931,
          -7,
          -2.7180862947830917,
          -3.1809855807867304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.484299839346786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.130333768495006,
          -4.306843035820824,
          -7,
          -7,
          -3.7611005389581424,
          -7,
          -7,
          -2.4742162640762553,
          -7,
          -7,
          -7,
          -2.3145693943004555,
          -7,
          -3.012415374762433,
          -7,
          -4.797312561051118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.478662674197249,
          -7,
          -7,
          -7,
          -7,
          -3.43166061617458,
          -3.04493154614916,
          -7,
          -2.8095597146352675,
          -7,
          -2.9934362304976116,
          -2.663700925389648,
          -2.438937701095528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7785130117389247,
          -7,
          -3.3875677794171883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5722557216594995,
          -4.305028753746333,
          -3.262609273845055,
          -7,
          -7,
          -7,
          -4.543906705006407,
          -7,
          -7,
          -7,
          -7,
          -3.4073059070182823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.355336561512381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6103407114521566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.158814646724227,
          -7,
          -2.688419822002711,
          -4.304630530707381,
          -4.263115076181341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.014142361545006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9929509605704463,
          -7,
          -7,
          -2.5352941200427703,
          -7,
          -7,
          -4.628838319987492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6893088591236203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4927603890268375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.673389578188305,
          -7,
          -3.683374887886742,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6074550232146683,
          -7,
          -7,
          -3.7259932589247224,
          -3.0086001717619175,
          -2.666205875272384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3144571227346775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153021743626138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8987251815894934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2979792441593623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.896526217489555,
          -7,
          -7,
          -7,
          -4.400157923390449,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5171694962671247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.51774996285426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.312811826212088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.376576957056512,
          -2.110589710299249,
          -2.788168371141168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7939300067726847,
          -7,
          -2.629409599102719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.456366033129043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067795935294864,
          -7,
          -7,
          -2.6589648426644352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149188310536008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.143014800254095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6790643181213127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4101020766428607,
          -7,
          -7,
          -7,
          -4.605951157564873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.143424253450913,
          -7,
          -7,
          -7,
          -7,
          -3.0354297381845483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.955783928916912,
          -7,
          -7,
          -4.242603536912276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.354108439147401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.240599164319883,
          -7,
          -7,
          -7,
          -4.136054349551055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9793525793934315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4073909044707316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.020775488193558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080835648173974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2821687783046416,
          -7,
          -7,
          -3.9232094671777817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.558264451377498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2938185388802057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.296665190261531,
          -7,
          -7,
          -7,
          -7,
          -3.700790221374347,
          -7,
          -7,
          -3.0689276116820716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8739015978644615,
          -7,
          -7,
          -7,
          -4.217246991685393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7578892650549034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.034494765849475,
          -7,
          -7,
          -7,
          -7,
          -4.7362769552331105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.103803720955957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.374124860179727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.159366641633703,
          -2.5171958979499744,
          -7,
          -7,
          -7,
          -3.4724313785820478,
          -7,
          -1.3187587626244128,
          -7,
          -7,
          -2.1986570869544226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.391213768955675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1492191126553797,
          -7,
          -2.060697840353612,
          -2.1775364999298623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4804491980685899,
          -7,
          -7,
          -7,
          -7,
          -3.307923703611882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.651278013998144,
          -7,
          -2.530199698203082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8140810398403664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4405155211122285,
          -2.574031267727719,
          -2.6473829701146196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0519239160461065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.555900189963248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9273703630390235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7752462597402365,
          -1.9800033715837464,
          -2.066118773208383,
          -7,
          -2.8842287696326037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.73275552117825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1826365304361923,
          -3.696531119969607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1020905255118367,
          -1.8364215020692862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.639187559935754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2629254693318317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.678518379040114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5886078047426864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779949842979917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3909351071033793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.814913181275074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2922560713564764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8937617620579434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9344984512435677,
          -7,
          -1.9867717342662448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7695988483874463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6020599913279623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.571941635074462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9956351945975501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.224014811372864,
          -2.359835482339888,
          -7,
          -2.2174839442139063,
          -7,
          -4.727166984450405,
          -7,
          -7,
          -7,
          -7,
          -1.7634279935629373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368324081979958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6127838567197355,
          -7,
          -7,
          -7,
          -3.9796849238270258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.400192488592576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097521069555645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0170333392987803,
          -3.3428173146357327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.989894563718773,
          -7,
          -4.299855814704268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.29269900304393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.35073245171613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151553704542976,
          -7,
          -7,
          -7,
          -4.56132801668009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080626486921806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.795416522655575,
          -7,
          -7,
          -4.576064788225377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.55735077960453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.694166295933198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8273692730538253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5018804937550585,
          -7,
          -7,
          -7,
          -7,
          -4.7356707439453665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.401400540781544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5575072019056577,
          -7,
          -2.688419822002711,
          -1.9708116108725178,
          -7,
          -4.72736229734141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067480023931482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.558308483464886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2671717284030137,
          -7,
          -2.5705429398818973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1029479680053735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1271047983648077,
          -7,
          -4.796567395543485,
          -7,
          -7,
          -7,
          -1.7075701760979363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.13182389536808,
          -7,
          -7,
          -7,
          -2.951337518795918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5759571887637573,
          -2.9947569445876283,
          -7,
          -3.3475251599986895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1693804953119495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.383815365980431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.97919770198058,
          -7,
          -7,
          -2.7669083343103593,
          -2.3364597338485296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.60336092434838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.0807130486232985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657772707735521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.273579945676206,
          -1.7853298350107671,
          -7,
          -4.399967765588587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557362814089654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6901960800285138,
          -7,
          -7,
          -7,
          -7,
          -4.334091688202155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.0791812460476249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.123851640967086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7641761323903307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.998259338423699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6663307443019684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7695250201710504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8727388274726686,
          -7,
          -2.255272505103306,
          -2.404833716619938,
          -7,
          -7,
          -7,
          -4.125261623070691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4102146756795046,
          -7,
          -7,
          -7,
          -7,
          -3.177685412596826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0556331242728354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1492191126553797,
          -7,
          -1.6127838567197355,
          -7,
          -7,
          -7,
          -1.6020599913279623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495544337546448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5573353062050552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.062581984228163,
          -2.6314437690131722,
          -7,
          -7,
          -2.911157608739977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.716003343634799,
          -7,
          -2.7427251313046983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7015679850559273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8870543780509568,
          -7,
          -7,
          -1.8573324964312685,
          -7,
          -1.5314789170422551,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.874261825555464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.99932632131709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.771954748963949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351216345339342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.609871756925298,
          -7,
          -4.9413921591914685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.971948113409703,
          -7,
          -7,
          -7,
          -4.152318927424645,
          -7,
          -7,
          -4.126207193752344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.456366033129043,
          -7,
          -7,
          -7,
          -4.6266482684740105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.439332693830263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.63956616901964,
          -7,
          -7,
          -7,
          -2.60422605308447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080716654986472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2329961103921536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.05307844348342,
          -7,
          -7,
          -2.7015679850559273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1958996524092336,
          -7,
          -2.53655844257153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097507191450545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.350654978678079,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626350634262713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1072099696478683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.591064607026499,
          -5.080612058294023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145538235712233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.571825249040829,
          -1.5440680443502757,
          -7,
          -4.876962202168221,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333568174923988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8109042806687006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7442929831226763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.526339277389844,
          -7,
          -7,
          -7,
          -7,
          -4.727158844506786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1838390370564214,
          -7,
          -7,
          -7,
          -7,
          -3.7661431884987495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.060697840353612,
          -7,
          -7,
          -7,
          -1.6020599913279623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3404441148401185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.60422605308447,
          -7,
          -7,
          -2.89707700320942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0128372247051725,
          -2.4367587960456936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.540917314258837,
          -7,
          -7,
          -7,
          -4.134177107576766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7049222912234017,
          -7,
          -7,
          -7,
          -7,
          -3.639187559935754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.893317811616112,
          -7,
          -7,
          -4.179028714410914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.603144372620182,
          -4.082138831393448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.036269495742816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40705081480425,
          -7,
          -7,
          -3.1000257301078626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.343080204765978,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.921686475483602,
          -2.595496221825574,
          -7,
          -7,
          -4.218391066469307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2540644529143377,
          -7,
          -7,
          -7,
          -7,
          -2.8709888137605755,
          -7,
          -7,
          -1.9700367766225568,
          -7,
          -4.062281069972644,
          -7,
          -7,
          -7,
          -7,
          -3.0115704435972783,
          -7,
          -2.61870166264718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6180480967120925,
          -7,
          -7,
          -3.964495339555093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9352192721258945,
          -7,
          -3.0081741840064264,
          -7,
          -7,
          -7,
          -3.5993007126409307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.780317312140151,
          -2.416640507338281,
          -2.6190933306267428,
          -2.8135809885681917,
          -2.2430380486862944,
          -7,
          -3.8254829163960453,
          -7,
          -2.346352974450639,
          -7,
          -1.661181443446619,
          -1.675778341674085,
          -7,
          -7,
          -3.2342641243787895,
          -7,
          -7,
          -7,
          -7,
          -3.0368609076345705,
          -7,
          -7,
          -7,
          -2.821513528404773,
          -7,
          -7,
          -7,
          -2.5854607295085006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3222192947339195,
          -2.1789769472931693,
          -7,
          -7,
          -2.841359470454855,
          -2.9258275746247424,
          -3.516667559099043,
          -7,
          -7,
          -7,
          -2.376576957056512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1775364999298623,
          -2.2922560713564764,
          -7,
          -1.558308483464886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.469822015978163,
          -2.184691430817599,
          -7,
          -7,
          -7,
          -7,
          -3.390758528738717,
          -2.494154594018443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1658376246901283,
          -7,
          -7,
          -7,
          -2.330413773349191,
          -2.2380461031287955,
          -1.7732987475892317,
          -2.0228406108765276,
          -7,
          -1.9222062774390165,
          -7,
          -2.1189257528257768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7571681922142726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0284808782292205,
          -7,
          -4.79713245216118,
          -1.930269649751069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -7,
          -7,
          -2.311753861055754,
          -7,
          -2.6138418218760693,
          -7,
          -7,
          -7,
          -7,
          -3.476155081947642,
          -7,
          -5.433118303634996,
          -7,
          -2.7664128471123997,
          -4.545257621396889,
          -3.024074987307426,
          -7,
          -7,
          -7,
          -2.9698816437465,
          -3.4352071032407476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9344984512435677,
          -2.5943925503754266,
          -1.2253092817258628,
          -2.279134394034571,
          -1.9807606420143298,
          -3.378216149749878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2242524199585794,
          -3.2584776449785178,
          -7,
          -7,
          -7,
          -7,
          -2.124141799308865,
          -2.73453314583352,
          -7,
          -7,
          -3.4028629579685634,
          -7,
          -7,
          -7,
          -1.8998205024270962,
          -7,
          -7,
          -7,
          -7,
          -3.3539931244194845,
          -4.9799397007098865,
          -7,
          -7,
          -2.582744965691277,
          -7,
          -4.009472142562814,
          -7,
          -7,
          -3.6047658847038875,
          -7,
          -7,
          -7,
          -4.00518051250378,
          -7,
          -7,
          -7,
          -7,
          -4.1572451604751945,
          -7,
          -7,
          -4.605121806343587,
          -4.563552275376031,
          -7,
          -7,
          -7,
          -7,
          -3.6027109449575576,
          -7,
          -7,
          -2.515873843711679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9906495883188544,
          -7,
          -2.651278013998144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.640481436970422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.44870631990508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.553883026643874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.127000353468564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4205333226934997,
          -7,
          -3.13640344813399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.583039995006035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.040074643230312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.366142676814887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.579623563905115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9807757739626215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3313316316749564,
          -3.713448539662225,
          -7,
          -7,
          -7,
          -3.1360543495510553,
          -7,
          -3.998259338423699,
          -7,
          -7,
          -7,
          -2.7754723435777815,
          -3.64525847734945,
          -7,
          -2.2685354252766956,
          -2.701665621471304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.941893498711568,
          -3.985695859689842,
          -3.2813970218487563,
          -3.285827252753274,
          -3.987978915875482,
          -3.6933311562440196,
          -7,
          -3.988112840268352,
          -7,
          -7,
          -3.5046067706419537,
          -3.714245911017894,
          -7,
          -7,
          -7,
          -7,
          -3.98344585734134,
          -7,
          -7,
          -7,
          -7,
          -2.130170852059858,
          -2.47573170452071,
          -7,
          -7,
          -3.246703697921374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1881926846818818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8529589869476504,
          -3.6804714924842656,
          -7,
          -4.1126720171171325,
          -3.9812294874200007,
          -3.5106790310322102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9891827512555476,
          -7,
          -3.9882913419074875,
          -7,
          -7,
          -2.855437017653531,
          -3.9960736544852753,
          -7,
          -7,
          -7,
          -7,
          -2.940108802990022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1571544399062814,
          -7,
          -7,
          -7,
          -7,
          -4.00358976718914,
          -3.6811054991397882,
          -3.981048058913173,
          -3.694956002249818,
          -7,
          -2.418888402527995,
          -3.0813473078041325,
          -2.9875768947269874,
          -7,
          -3.9953280090774097,
          -7,
          -7,
          -3.5008194435414155,
          -2.5903680640032447,
          -3.9825425823029432,
          -3.9954157985424152,
          -7,
          -3.072467759719054,
          -3.204933522354145,
          -3.713280485299326,
          -3.0203612826477078,
          -7,
          -7,
          -3.207050607980928,
          -3.688108228551808,
          -7,
          -7,
          -3.0123919266355528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.849357981661299,
          -3.4757801114070315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.679836558918098,
          -3.696924008405422,
          -2.7126497016272113,
          -3.4130062226831868,
          -7,
          -3.9826329943948497,
          -7,
          -2.8213087787513165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.311329952303793,
          -3.151894941876449,
          -3.2947306904843314,
          -3.989271791641693,
          -3.522313795156667,
          -7,
          -7,
          -1.7315565343446218,
          -7,
          -7,
          -7,
          -7,
          -3.9815921172140816,
          -7,
          -7,
          -2.283261543549604,
          -7,
          -3.014257950635828,
          -7,
          -3.711174300366762,
          -1.8030605934580088,
          -3.2840244503226454,
          -2.674467460866252,
          -3.695612995691491,
          -2.3733061592354647,
          -2.7026028413404273,
          -7,
          -7,
          -3.686770290087891,
          -3.9933039379194746,
          -7,
          -7,
          -4.03148925570975,
          -7,
          -7,
          -7,
          -3.9451976821033337,
          -7,
          -2.5669124528516787,
          -7,
          -2.1566356727947436,
          -3.5060086700150377,
          -3.983400738180538,
          -7,
          -7,
          -3.6898414091375047,
          -7,
          -7,
          -7,
          -2.2322643587752227,
          -2.236564251109213,
          -7,
          -3.6793824659429104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.302157695941016,
          -4.007875743767586,
          -3.322770429937203,
          -3.0304869561303556,
          -7,
          -7,
          -7,
          -3.045887759365902,
          -3.9796849238270258,
          -7,
          -2.510723695451636,
          -7,
          -7,
          -7,
          -3.9796849238270258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6827315646221837,
          -3.6833172619218826,
          -7,
          -7,
          -3.2399664702073565,
          -7,
          -4.071845201129409,
          -3.082865123228602,
          -7,
          -7,
          -7,
          -3.751933133091522,
          -3.6971421262754594,
          -2.5716169014188077,
          -3.993171605030765,
          -2.838592983118509,
          -3.9821354948037695,
          -7,
          -7,
          -2.651116416049525,
          -7,
          -3.315004172684897,
          -3.255071396286606,
          -7,
          -3.6796549786993333,
          -7,
          -7,
          -7,
          -3.702085721435825,
          -7,
          -7,
          -7,
          -3.988870966064645,
          -7,
          -3.9819544444699737,
          -7,
          -7,
          -2.8754230247469814,
          -7,
          -2.952175797631502,
          -3.0829199448613176,
          -2.9111051914786596,
          -7,
          -7,
          -2.854363886031574,
          -7,
          -7,
          -7,
          -3.9838517189914717,
          -2.411578647633547,
          -3.1513260639408345,
          -3.0677732303783953,
          -3.388988785124714,
          -3.536263763030023,
          -3.9878002857518724,
          -2.7661702832117463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5250880182683524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9890491564382202,
          -7,
          -3.981274832706589,
          -7,
          -7,
          -3.359598357309753,
          -7,
          -3.2405073887976155,
          -7,
          -3.4192947217534604,
          -2.5662213715228304,
          -3.7157944980035067,
          -7,
          -3.9970804354717306,
          -7,
          -3.312388949370592,
          -3.1266724494173004,
          -4.01674092728626,
          -7,
          -7,
          -7,
          -3.7000977046130537,
          -7,
          -7,
          -7,
          -4.020816887028907,
          -3.6825511910418096,
          -2.8376255685293743,
          -7,
          -7,
          -2.3764306067663643,
          -2.879009148031945,
          -3.4456042032735974,
          -3.9976921179417264,
          -2.9777236052888476,
          -1.8978609601608767,
          -2.8547916940539855,
          -3.4942937686653326,
          -2.4358112844425377,
          -7,
          -2.6582716350441484,
          -3.5572850469162516,
          -3.0467578737546326,
          -2.9921831989050203,
          -2.0978941621746445,
          -3.753077236473406,
          -2.587336734507256,
          -1.8615739051907794,
          -3.0794978037097187,
          -3.5844095155942375,
          -3.9386698010226793,
          -3.3918233302705025,
          -2.9934362304976116,
          -2.563599107795837,
          -2.575332200748137,
          -3.8964343519192703,
          -3.2968085816258053,
          -3.370096544531531,
          -7,
          -2.5152477338444026,
          -2.8231898900874377,
          -2.97648753730519,
          -3.008960296866488,
          -3.345445022795782,
          -3.288780028452779,
          -3.310954610877564,
          -3.2342008115305245,
          -3.2964732247752924,
          -2.676332889201492,
          -3.225121234750895,
          -3.720242018287057,
          -3.66854432140747,
          -2.216233017981978,
          -2.7882273104751665,
          -4.002079626393121,
          -3.7118704712055,
          -7,
          -3.3670517004498173,
          -3.0111191405943716,
          -3.73917663191073,
          -3.2097211833012635,
          -2.983438337806717,
          -4.158332331708981,
          -4.029627239047413,
          -3.467963090535135,
          -7,
          -3.6876627068858356,
          -7,
          -3.350688434639935,
          -3.586399744970328,
          -7,
          -2.73206648438781,
          -2.312113774786506,
          -3.721673245455936,
          -7,
          -3.273039874302055,
          -3.9876662649262746,
          -2.4212207821763405,
          -7,
          -3.8100083659994484,
          -2.8695902233197508,
          -3.4719409903840868,
          -7,
          -3.141794563523657,
          -3.8119323028729784,
          -3.304536687573914,
          -7,
          -4.139375264439972,
          -4.1075830311913215,
          -2.58726921598461,
          -3.4777722083492573,
          -7,
          -2.87499984366751,
          -2.327788480037824,
          -7,
          -2.9115737192268285,
          -7,
          -7,
          -2.8230827965328036,
          -2.9299739347123883,
          -7,
          -3.508035666557394,
          -7,
          -3.6970548922725746,
          -3.023869501388332,
          -2.078581487279682,
          -7,
          -3.0211892990699383,
          -3.994844849553398,
          -2.4429274953741063,
          -2.493583739705195,
          -2.9044658550752316,
          -3.6895752157599384,
          -7,
          -2.8055858057345935,
          -3.9934803190699966,
          -2.023414699392505,
          -3.4111144185509046,
          -3.307410454213674,
          -2.6212917088805394,
          -1.5771546503583544,
          -2.926540311899433,
          -2.699837725867246,
          -3.5420781463356255,
          -3.525821952156663,
          -2.0124082212308045,
          -3.1664301138432824,
          -3.541745608431244,
          -3.397853141088609,
          -7,
          -7,
          -2.808346035740395,
          -2.879404687616423,
          -7,
          -2.143366864941437,
          -1.4821003029929867,
          -2.379431142858117,
          -7,
          -2.52050224789375,
          -3.5185139398778875,
          -2.4961560487352887,
          -3.9888264070452757,
          -7,
          -7,
          -3.0773315611289904,
          -3.989761187718778,
          -3.699143687394484,
          -2.2743887955503785,
          -7,
          -2.340779583365695,
          -3.7041505168397992,
          -3.0097212316193764,
          -7,
          -2.732647658971915,
          -3.6854730197227594,
          -3.063750228327108,
          -2.780006516518213,
          -7,
          -7,
          -7,
          -2.667119265219367,
          -2.616033061656062,
          -7,
          -3.40226138245468,
          -2.0486501936741845,
          -3.695437894597736,
          -1.831817817997653,
          -3.29928933408768,
          -3.2284736882906677,
          -3.148029445091453,
          -3.5229221725572004,
          -3.0178432012520418,
          -3.6844413876256064,
          -3.0463450608244513,
          -3.0517954455579925,
          -3.5126843962171637,
          -3.295874845217379,
          -2.8990384123869903,
          -7,
          -3.9836262871245345,
          -2.422917980767662,
          -3.3070251187186726,
          -2.6586183771638874,
          -2.1631191920347383,
          -2.3371830263196416,
          -2.0054591837669906,
          -3.4098063651997617,
          -2.492403703373851,
          -2.7454183419434295,
          -2.462516210796815,
          -3.0394537789617364,
          -3.5035183127240748,
          -7,
          -2.68902830712297,
          -3.294833494244287,
          -7,
          -3.0942381380341772,
          -2.1392609992026075,
          -2.6459950553715124,
          -2.3985582892632116,
          -2.7720312240705764,
          -2.1871135061025466,
          -3.985201858364572,
          -2.9286944977199605,
          -7,
          -7,
          -3.5180750368775167,
          -3.1692964762592784,
          -2.705614291809137,
          -7,
          -3.985561187773345,
          -3.979821430030225,
          -2.259362396535251,
          -7,
          -3.152419399400468,
          -7,
          -7,
          -2.821731821690044,
          -3.6866362692622934,
          -3.2928760493088776,
          -2.712430083679723,
          -2.3154741615241607,
          -3.157845166862068,
          -3.985561187773345,
          -4.009833178608563,
          -7,
          -7,
          -7,
          -3.5144149205803688,
          -3.688864568054792,
          -7,
          -2.652558244551564,
          -2.5794371311162627,
          -3.485366465708323,
          -3.3843086022423106,
          -7,
          -2.8324337687520904,
          -7,
          -7,
          -2.76973109256287,
          -7,
          -7,
          -7,
          -3.086786795626624,
          -3.4106928961632534,
          -7,
          -7,
          -3.99370069482035,
          -7,
          -2.9646299732016494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2748503200166645,
          -7,
          -7,
          -7,
          -7,
          -2.1335389083702174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.735447189468635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8920946026904806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727134423760488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368286884902131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1051694279993316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4955443375464483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9375178920173464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.616265405281708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.134081437462512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.628695382714023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333507728917455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023005397249935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6636067081245205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669335479503264,
          -7,
          -7,
          -7,
          -7,
          -2.7715874808812555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0867156639448825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7204074008031087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657992306370206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275150048123735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.17435059747938,
          -7,
          -3.635423423947685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9965992227001665,
          -2.155336037465062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7209857441537393,
          -7,
          -7,
          -3.7388598020722004,
          -0.6690067809585756,
          -2.089905111439398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216561735047927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7810369386211318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071476967698918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.405012803773642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1975562131535367,
          -7,
          -7,
          -7,
          -7,
          -3.5234491575534,
          -7,
          -7,
          -7,
          -2.7193312869837265,
          -7,
          -7,
          -7,
          -7,
          -2.5658478186735176,
          -2.3263358609287517,
          -7,
          -3.1048284036536553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8444771757456815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7442929831226763,
          -7,
          -3.49789674291322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4712917110589387,
          -1.7403626894942439,
          -1.9030899869919435,
          -7,
          -7,
          -7,
          -7,
          -3.1550322287909704,
          -7,
          -7,
          -7,
          -7,
          -2.682145076373832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.08278537031645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.294466226161593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40840957846843,
          -7,
          -7,
          -2.3384564936046046,
          -7,
          -2.3654879848909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6455696293511517,
          -7,
          -5.131862365389385,
          -7,
          -7,
          -4.242479310801046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9609461957338317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5720967679505193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2689755810978065,
          -4.300899687772249,
          -2.9457147140598603,
          -7,
          -7,
          -7,
          -4.541529322171493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.050592404072384,
          -7,
          -5.1721035557986665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.94150646356156,
          -3.589502796263764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.851930678640268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9843922785242656,
          -7,
          -7,
          -7,
          -7,
          -3.6833172619218826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325833673769085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080799593075126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5864747785713966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3244882333076564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.037426497940624,
          -7,
          -7,
          -4.658412098960092,
          -7,
          -7,
          -7,
          -7,
          -3.629613445378183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.898396045930009,
          -7,
          -7,
          -2.9444826721501687,
          -4.400353756504531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1658376246901283,
          -7,
          -7,
          -7,
          -4.03436772148161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9268567089496924,
          -7,
          -7,
          -3.1405080430381793,
          -3.0975176000709466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.217246991685393,
          -1.26884531229258,
          -1.184524426592544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.724275869600789,
          -7,
          -2.8692317197309762,
          -7,
          -7,
          -7,
          -4.518197974435138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9451871240189849,
          -7,
          -7,
          -7,
          -7,
          -2.3317646126401494,
          -2.214843848047698,
          -1.8325089127062362,
          -2.069112851387121,
          -7,
          -3.7575858013465804,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0265332645232967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.05307844348342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2355284469075487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073094864515745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7219656140431185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9079485216122722,
          -7,
          -7,
          -7,
          -7,
          -2.928861184436562,
          -7,
          -7,
          -2.690196080028514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6148972160331345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5338144099847226,
          -7,
          -1.907291901419713,
          -2.2741578492636796,
          -7,
          -2.05307844348342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5403294747908736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.469822015978163,
          -3.6827315646221837,
          -7,
          -7,
          -7,
          -1.4712917110589387,
          -7,
          -1.1257135708582608,
          -7,
          -7,
          -7,
          -7,
          -3.3736474722092176,
          -3.168202746842631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3809344633307017,
          -7,
          -7,
          -7,
          -7,
          -2.2174839442139063,
          -3.608312042697327,
          -7,
          -7,
          -3.1367205671564067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1993437186893927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4771212547196626,
          -7,
          -1.9822712330395684,
          -2.9380190974762104,
          -7,
          -1.9344984512435677,
          -1.806179973983887,
          -4.606316861140107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0870712059065353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097840143633142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.792391689498254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.544080452586784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4197905861063624,
          -7,
          -7,
          -7,
          -7,
          -2.7730546933642626,
          -7,
          -7,
          -7,
          -3.0236639181977933,
          -7,
          -2.660106221723244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431645160139889,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6512780139981444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3014640731432996,
          -2.549901999869041,
          -7,
          -7,
          -7,
          -4.241023219159143,
          -3.7768464086952993,
          -7,
          -3.7655568008067135,
          -7,
          -7,
          -7,
          -3.720985744153739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3521632157054433,
          -4.377420092711333,
          -7,
          -7,
          -7,
          -7,
          -4.30953435660478,
          -7,
          -4.941725048999923,
          -2.8151348166368138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.977418730245156,
          -7,
          -7,
          -3.5624875232080653,
          -7,
          -7,
          -4.632467415481234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7327956982893293,
          -7,
          -7,
          -2.871393289428776,
          -7,
          -7,
          -7,
          -3.1720188094245563,
          -7,
          -3.348212602828127,
          -7,
          -7,
          -7,
          -3.7385427409287852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8256208250035,
          -7,
          -7,
          -7,
          -3.7370036914610756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.825563143070667,
          -2.7267272090265724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.686747956155516,
          -2.852479993636856,
          -7,
          -3.0141843975012796,
          -7,
          -7,
          -2.9283958522567137,
          -3.721150843749684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5329878079053483,
          -7,
          -7,
          -4.280031744138702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4819201376014313,
          -7,
          -7,
          -7,
          -7,
          -3.8474184078594025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.658393026279124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276599653557644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05641885542015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8991088581933995,
          -7,
          -7,
          -2.9508514588885464,
          -3.836065050225192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.404833716619938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4885507165004443,
          -7,
          -7,
          -7,
          -4.03462845662532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2648178230095364,
          -7,
          -7,
          -2.8429211207599825,
          -3.001560652642573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.08278537031645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4251672627392926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.765668554759014,
          -7,
          -7,
          -7,
          -1.7018556925735069,
          -0.7991541969590241,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.254467510467076,
          -2.0387525889920166,
          -2.8767949762007006,
          -7,
          -7,
          -7,
          -3.740086232305504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5826314394896364,
          -7,
          -7,
          -7,
          -7,
          -2.3404441148401185,
          -2.2479732663618064,
          -7,
          -1.9822712330395684,
          -7,
          -3.581911750244118,
          -1.8957907482504441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096666739975382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0318122713303706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.100370545117563,
          -1.7708520116421442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8717396832852677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2280335249267362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9417150342629825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.364684974834258,
          -7,
          -7,
          -7,
          -7,
          -2.611341248488478,
          -7,
          -7,
          -2.7015679850559273,
          -7,
          -2.3654879848909,
          -7,
          -7,
          -7,
          -2.6283889300503116,
          -7,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0153597554092144,
          -7,
          -2.576341350205793,
          -2.303196057420489,
          -7,
          -2.100370545117563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.060697840353612,
          -1.6532125137753437,
          -2.167317334748176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.786751422145561,
          -7,
          -7,
          -5.149333061505514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.184691430817599,
          -3.6833172619218826,
          -7,
          -7,
          -7,
          -1.7403626894942439,
          -1.1257135708582608,
          -7,
          -2.1367205671564067,
          -2.514547752660286,
          -7,
          -7,
          -7,
          -2.870403905279027,
          -7,
          -7,
          -7,
          -7,
          -2.7307822756663893,
          -3.382107135819026,
          -7,
          -7,
          -7,
          -7,
          -2.250420002308894,
          -3.6097011023793995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.424881636631067,
          -1.6840162914303594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2329961103921536,
          -7,
          -7,
          -2.638156336676239,
          -7,
          -2.351216345339342,
          -1.323939275128193,
          -4.129292358783856,
          -7,
          -7,
          -7,
          -2.167317334748176,
          -7,
          -7,
          -7,
          -2.613136798211654,
          -7,
          -2.7450747915820575,
          -7,
          -7,
          -7,
          -4.495804420086552,
          -2.983175072037813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -7,
          -7,
          -7,
          -4.955859253948511,
          -7,
          -3.036628895362161,
          -4.544241727408741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4219328132785085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7271344237604884,
          -7,
          -2.5830097448113825,
          -7,
          -7,
          -4.316358309697511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.09564001802453,
          -4.732795698289329,
          -7,
          -4.029221394253928,
          -7,
          -7,
          -4.802116657300177,
          -7,
          -7,
          -4.387211800313731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9685646629459224,
          -3.301745991025256,
          -2.277772882850179,
          -7,
          -7,
          -2.951823035315912,
          -7,
          -3.4766142820325037,
          -2.7120882348626436,
          -7,
          -7,
          -3.696967640744023,
          -7,
          -3.722057771331464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4494012529962212,
          -4.979566583734596,
          -7,
          -7,
          -7,
          -7,
          -4.3096727432292665,
          -7,
          -4.941789610012567,
          -2.8165726960261033,
          -7,
          -7,
          -7,
          -4.001647191346038,
          -7,
          -7,
          -7,
          -7,
          -3.154210882206974,
          -7,
          -2.5490032620257876,
          -4.3031852539407955,
          -4.562578334108671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5403294747908736,
          -7,
          -7,
          -7,
          -7,
          -3.208351765003097,
          -7,
          -7,
          -7,
          -3.061452479087193,
          -2.9861892997368242,
          -7,
          -7,
          -7,
          -3.7754648093457392,
          -7,
          -3.9284163373623473,
          -2.950364854376123,
          -7,
          -7,
          -3.739572344450092,
          -7,
          -7,
          -7,
          -2.510545010206612,
          -3.470410490975931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2671717284030137,
          -7,
          -3.463992472317439,
          -4.439908738851784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.845098040014257,
          -2.7884040804994115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.802705327074352,
          -7,
          -7,
          -7,
          -7,
          -3.7798380995398886,
          -2.7371926427047373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6702458530741238,
          -3.2304489213782737,
          -7,
          -7,
          -3.1152775913959014,
          -2.5581083016305497,
          -2.808885867359812,
          -3.4137187650610787,
          -7,
          -7,
          -2.935003151453655,
          -3.72222246396973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.268226837664629,
          -7,
          -7,
          -7,
          -3.4082399653118496,
          -7,
          -7,
          -3.6781312565441797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.37045140442245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2405492482826,
          -7,
          -3.182129214052998,
          -7,
          -7,
          -7,
          -7,
          -3.0346284566253203,
          -7,
          -7,
          -3.674700431229815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9141579738331505,
          -7,
          -2.334453751150931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517195897949974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727297202803587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368472838440362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9030899869919435,
          -7,
          -2.1367205671564067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1451964061141817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.569654763999852,
          -7,
          -3.722057771331464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351042205739445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5859117103194342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.004665233247877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8812514755383583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5010592622177517,
          -7,
          -7,
          -7,
          -7,
          -3.1259148015308593,
          -7,
          -7,
          -7,
          -3.2442023004929483,
          -7,
          -2.2041199826559246,
          -7,
          -2.294466226161593,
          -2.5390760987927767,
          -7,
          -3.860469772491684,
          -7,
          -7,
          -7,
          -7,
          -2.741939077729199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6385890832927172,
          -7,
          -2.6989700043360187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.180412632838324,
          -2.873320601815399,
          -2.863747598033922,
          -7,
          -7,
          -2.8048206787211623,
          -7,
          -7,
          -2.161368002234975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7304592600457687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -2.4082399653118496,
          -2.6085260335771943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.808885867359812,
          -7,
          -2.629409599102719,
          -7,
          -2.0644579892269186,
          -7,
          -4.042523010689413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -2.8819549713396007,
          -7,
          -7,
          -7,
          -7,
          -3.761890268068682,
          -7,
          -7,
          -7,
          -2.7573960287930244,
          -7,
          -7,
          -3.5260806918020298,
          -3.799064719351008,
          -7,
          -2.7589118923979736,
          -7,
          -4.436075143000658,
          -2.4871383754771865,
          -2.705007959333336,
          -2.7690078709437738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.422917980767662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3779979478618998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6651117370750512,
          -2.7937903846908188,
          -2.4321672694425884,
          -7,
          -2.346352974450639,
          -2.569373909615046,
          -7,
          -3.582501658910611,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6354837468149124,
          -7,
          -7,
          -7,
          -7,
          -3.0370371541027277,
          -7,
          -7,
          -7,
          -2.833784374656479,
          -7,
          -3.0425755124401905,
          -7,
          -2.606381365110605,
          -2.7209857441537393,
          -2.568201724066995,
          -7,
          -3.1556396337597765,
          -7,
          -7,
          -7,
          -3.9196010237841112,
          -2.3710678622717363,
          -3.0360297306565434,
          -7,
          -2.932980821923198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.31722734917642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9355072658247128,
          -7,
          -5.149643958959544,
          -7,
          -7,
          -7,
          -2.8438554226231614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.514547752660286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.898999270889789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6203442997544935,
          -7,
          -7,
          -2.8698182079793284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -7,
          -7,
          -2.3263358609287517,
          -7,
          -7,
          -7,
          -7,
          -2.3516997004052667,
          -2.6349808000512285,
          -2.741939077729199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1258064581395266,
          -7,
          -3.084576277934331,
          -2.379305517750582,
          -7,
          -7,
          -4.253095585849032,
          -3.0265332645232967,
          -7,
          -7,
          -7,
          -7,
          -2.2600713879850747,
          -7,
          -7,
          -2.718501688867274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -3.6532607660371457,
          -7,
          -4.530036326633662,
          -7,
          -2.7734207232906103,
          -4.244437940830307,
          -3.0318122713303706,
          -7,
          -2.484299839346786,
          -7,
          -7,
          -3.4382258076045296,
          -2.7283537820212285,
          -7,
          -7,
          -7,
          -2.8494194137968996,
          -7,
          -7,
          -7,
          -2.5895772957033327,
          -7,
          -2.4245186658770486,
          -7,
          -7,
          -4.61846649219908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.733606481099323,
          -7,
          -7,
          -7,
          -4.656529406233498,
          -4.802807920361628,
          -4.093193971108387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9056340013269546,
          -4.624488362513449,
          -7,
          -4.785215906761976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.704588024033806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.827110687466011,
          -3.436242180871562,
          -7,
          -7,
          -7,
          -4.242442036037531,
          -3.0855046394264978,
          -7,
          -7,
          -4.140727962844183,
          -3.7056926965377035,
          -7,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -7,
          -7,
          -7,
          -3.8775057221332867,
          -4.377938832645777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3055663135153037,
          -7,
          -7,
          -7,
          -7,
          -3.9761206182998157,
          -7,
          -7,
          -7,
          -3.8567288903828825,
          -7,
          -7,
          -3.4589182965065093,
          -4.563777633362166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.991447598003803,
          -7,
          -7,
          -7,
          -7,
          -3.9914918889101596,
          -7,
          -2.669316880566112,
          -7,
          -7,
          -7,
          -4.3274508928931175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8344207036815328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.469571672441998,
          -7,
          -4.44070447487986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8554383867477418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6703386411274423,
          -7,
          -4.236227660561736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.546542663478131,
          -3.7132384615456617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3026555539507187,
          -2.916980047320382,
          -7,
          -7,
          -7,
          -7,
          -2.983175072037813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.282622112878062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.674769314015426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6691308473733324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.279210512601395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7115916680435577,
          -7,
          -7,
          -7,
          -7,
          -2.925398047854587,
          -7,
          -3.1225435240687545,
          -7,
          -7,
          -7,
          -3.940267391446012,
          -3.1876147137990425,
          -7,
          -7,
          -3.4838724542226736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.567473376960255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1745830891776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.339053735709139,
          -3.287054877670668,
          -7,
          -3.0111473607757975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.581190866388724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8353734524700087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0492180226701815,
          -7,
          -7,
          -2.627024295834346,
          -7,
          -3.8295481957452853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6088824508987196,
          -7,
          -7,
          -7,
          -7,
          -3.238798562713917,
          -7,
          -7,
          -3.645978700535912,
          -7,
          -7,
          -7,
          -3.4412236742426123,
          -7,
          -7,
          -7,
          -3.113943352306837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.996555449633365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.532117116248804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8004421213362565,
          -7,
          -7,
          -7,
          -3.08278537031645,
          -7,
          -7,
          -1.854029860881183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6202401898458314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.598133645813238,
          -7,
          -3.2182728535714475,
          -3.5634354446522214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.037824750588342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.972665592266111,
          -7,
          -7,
          -7,
          -2.2479732663618064,
          -7,
          -2.7103994661168005,
          -2.5163149757779495,
          -2.9960736544852753,
          -7,
          -7,
          -2.762678563727436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0043213737826426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1969648714132997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2399664702073565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.507424060094855,
          -7,
          -7,
          -7,
          -2.643362936950399,
          -7,
          -7,
          -2.8587376566001557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.532244643626582,
          -3.1908917169221698,
          -7,
          -7,
          -4.012721256813116,
          -7,
          -7,
          -2.200371635102761,
          -7,
          -7,
          -7,
          -7,
          -3.3059958827708047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.954390695763905,
          -7,
          -7,
          -7,
          -7,
          -3.2833012287035497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.509023209990858,
          -7,
          -4.1119646410441515,
          -7,
          -3.2732328340430454,
          -2.542849826210958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9324737646771535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1484278325456465,
          -4.7530082150208885,
          -7,
          -7,
          -7,
          -3.445759836488631,
          -3.7573960287930244,
          -7,
          -7,
          -7,
          -7,
          -4.583153414473892,
          -4.66305984454625,
          -4.330332589222979,
          -4.4061312402136235,
          -7,
          -7,
          -7,
          -7,
          -4.616149802205346,
          -7,
          -5.1039780876687395,
          -7,
          -4.790080990601768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.240524288112364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.401452239428341,
          -7,
          -7,
          -4.1026280541372,
          -7,
          -7,
          -7,
          -4.078275522086601,
          -7,
          -4.250895513938375,
          -7,
          -3.3688445068258215,
          -2.536768805608776,
          -3.860697274052039,
          -3.459618623917375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.728272597895017,
          -7,
          -7,
          -4.066624050983426,
          -3.8690872318374687,
          -4.060552567068463,
          -7,
          -7,
          -7,
          -4.619030687481902,
          -3.7318304202881625,
          -4.468544244712472,
          -7,
          -4.083824996053337,
          -7,
          -7,
          -7,
          -4.292676867185116,
          -7,
          -7,
          -3.620864475265121,
          -3.575851484766047,
          -7,
          -7,
          -3.8344101058342694,
          -3.872785398110417,
          -7,
          -3.3848907965305544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0962145853464054,
          -7,
          -3.4185912766763797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2199873220898207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2347702951609167,
          -7,
          -7,
          -7,
          -2.915135906622012,
          -3.2586372827240764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1172136357403977,
          -4.64812572155865,
          -4.048092051812373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8356905714924254,
          -7,
          -7,
          -3.7589118923979736,
          -7,
          -3.4207806195485655,
          -7,
          -7,
          -7,
          -7,
          -3.647167725824425,
          -2.779957051246906,
          -7,
          -7,
          -3.6464037262230695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6065067620786353,
          -7,
          -3.508395033133053,
          -7,
          -7,
          -7,
          -7,
          -3.290034611362518,
          -7,
          -7,
          -7,
          -3.3958503760187813,
          -7,
          -7,
          -3.6724673130680823,
          -2.878234468675044,
          -7,
          -3.2989258164621176,
          -2.9222062774390163,
          -3.236033147117636,
          -7,
          -7,
          -3.7263196121107756,
          -7,
          -7,
          -7,
          -2.971275848738105,
          -7,
          -3.505963518018126,
          -7,
          -7,
          -4.0269416279590295,
          -7,
          -7,
          -4.297913635807866,
          -2.9658062406544436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2342641243787895,
          -7,
          -7,
          -7,
          -7,
          -3.1720188094245563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9765028188717886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7287594751678745,
          -2.994976673649691,
          -3.255272505103306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.294620516587421,
          -7,
          -7,
          -7,
          -3.0782150732756044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.33193317250328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.657982760912062,
          -7,
          -7,
          -7,
          -3.599992177584098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.798034555379355,
          -7,
          -2.2576785748691846,
          -7,
          -2.4065401804339555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.428134794028789,
          -7,
          -3.1792644643390253,
          -7,
          -4.334895863011881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6977522741677546,
          -2.2041199826559246,
          -7,
          -7,
          -7,
          -7,
          -1.872156272748293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.423245873936808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7015679850559273,
          -7,
          -7,
          -7,
          -2.6503075231319366,
          -7,
          -4.517842238320856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7795964912578244,
          -7,
          -7,
          -7,
          -2.1335389083702174,
          -2.1868151244474543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3314272965207428,
          -7,
          -7,
          -3.20615098159626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.313023110323238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.37283838749711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0286607048897425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.799387125085768,
          -7,
          -7,
          -2.665580991017953,
          -7,
          -2.8195439355418688,
          -7,
          -7,
          -7,
          -7,
          -2.0549958615291413,
          -1.792391689498254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.143014800254095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.858537197569639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1280760126687155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.808210972924222,
          -7,
          -7,
          -7,
          -4.304974961155454,
          -7,
          -7,
          -7,
          -7,
          -2.03342375548695,
          -7,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -7,
          -7,
          -7,
          -5.097746526628908,
          -2.9647309210536292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4608978427565478,
          -7,
          -7,
          -7,
          -7,
          -3.947531745695593,
          -7,
          -5.432922814070343,
          -7,
          -3.0203612826477078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7528164311882715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5753803086941183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8018425852969475,
          -7,
          -7,
          -7,
          -7,
          -3.9904276584852636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.000195388557727,
          -7,
          -7,
          -7,
          -7,
          -4.064570292244026,
          -7,
          -7,
          -7,
          -7,
          -3.693463127219531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.050920836935403,
          -4.502244987676499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05311687492293,
          -7,
          -7,
          -7,
          -4.273949892550008,
          -7,
          -7,
          -7,
          -3.8524494943579435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2880255353883627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0236639181977933,
          -7,
          -7,
          -3.985201858364572,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9304395947667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639964348640366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3988077302032647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.989894563718773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.47877926219127,
          -2.7041505168397992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1108140939166935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1476763242410986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.201415333350953,
          -2.6403394410620447,
          -7,
          -7,
          -2.4653828514484184,
          -2.962030915578165,
          -7,
          -7,
          -3.3872118003137306,
          -3.4667193716815987,
          -7,
          -2.7007037171450192,
          -3.2998703301367427,
          -7,
          -2.8805277781988052,
          -3.0695111297549458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.392696953259666,
          -3.8051495651298395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3656751404559175,
          -2.9133935997862364,
          -7,
          -7,
          -2.142493751023144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8497878242376853,
          -2.6500037994452423,
          -7,
          -7,
          -3.044539760392411,
          -7,
          -7,
          -7,
          -3.379305517750582,
          -7,
          -3.2080380493531804,
          -7,
          -7,
          -7,
          -3.20378055748671,
          -7,
          -7,
          -7,
          -7,
          -3.6160551949765862,
          -7,
          -7,
          -3.450403086155366,
          -2.947643745820492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3914644118391033,
          -7,
          -7,
          -2.570369028299623,
          -3.120080134129453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5122943328400638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3866772839608377,
          -7,
          -3.1476763242410986,
          -7,
          -7,
          -7,
          -3.4038066105474227,
          -3.8327962184124127,
          -7,
          -3.391816923613249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1964405298523033,
          -7,
          -7,
          -2.796227314029439,
          -4.275978986467148,
          -7,
          -3.4865721505183562,
          -2.9059307334917293,
          -7,
          -7,
          -7,
          -2.917330426106554,
          -7,
          -7,
          -3.575187844927661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.991036109451118,
          -7,
          -2.722633922533812,
          -3.1509098737011216,
          -3.0791812460476247,
          -3.6182050422592695,
          -7,
          -7,
          -7,
          -3.66661156841903,
          -3.188365926063148,
          -7,
          -7,
          -7,
          -3.3675733244970245,
          -7,
          -7,
          -7,
          -3.4104397862103464,
          -7,
          -7,
          -3.473778834646725,
          -3.4268364538035083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.393366632040518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9752019622578523,
          -7,
          -3.49084770815903,
          -7,
          -7,
          -2.9565241471648407,
          -7,
          -3.4302363534115106,
          -3.4239009185284166,
          -3.436480695009495,
          -3.1536624535754956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2404244330836076,
          -7,
          -7,
          -7,
          -2.2178234357159727,
          -7,
          -7,
          -7,
          -3.4634450317704277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7287594751678745,
          -3.532408552392377,
          -7,
          -7,
          -7,
          -2.8360074591255313,
          -7,
          -7,
          -3.098470665650629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.390758528738717,
          -4.071845201129409,
          -7,
          -7,
          -7,
          -7,
          -3.3736474722092176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4295908022233017,
          -1.5381155755594067,
          -7,
          -4.0482734397251114,
          -7,
          -7,
          -7,
          -7,
          -3.1702617153949575,
          -3.0086001717619175,
          -3.5482665451707454,
          -3.2389238459924155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.397070549959409,
          -7,
          -7,
          -7,
          -3.0860037056183818,
          -7,
          -3.6784273224338673,
          -7,
          -7,
          -7,
          -3.8507279001855457,
          -3.3873898263387296,
          -7,
          -3.4139699717480614,
          -7,
          -7,
          -7,
          -2.895790748250444,
          -3.5296869537729165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5487373695237934,
          -3.493179120682515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.139839746351216,
          -7,
          -3.680367325199071,
          -7,
          -7,
          -3.871070638121196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3793961751941644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3479151865016914,
          -7,
          -7,
          -4.162225759798416,
          -4.763338130235672,
          -7,
          -7,
          -7,
          -7,
          -3.2477892042772956,
          -7,
          -3.670392758338277,
          -7,
          -7,
          -4.297289861640372,
          -4.675732527603479,
          -4.816605821725513,
          -2.9507055347738613,
          -7,
          -4.122854558785159,
          -4.069649600159877,
          -7,
          -4.153082804361832,
          -7,
          -5.108612374132366,
          -3.6768764319731373,
          -3.8452221064290137,
          -7,
          -7,
          -4.646168378774083,
          -7,
          -7,
          -3.1301275018172254,
          -7,
          -7,
          -4.28602960050819,
          -3.631240780235509,
          -3.6178387477170033,
          -3.985695859689842,
          -7,
          -3.609505478236499,
          -4.123263475902825,
          -3.0493343359722838,
          -7,
          -3.3159482602535313,
          -7,
          -2.760480478279665,
          -3.4435758797502576,
          -3.52283531366053,
          -3.4837298990000236,
          -2.561573648247468,
          -3.433609843323718,
          -3.5683190850951116,
          -4.140602308020332,
          -3.297295337240443,
          -2.8977492385228323,
          -7,
          -3.569490954348783,
          -3.5436956323092446,
          -7,
          -3.412880358464974,
          -7,
          -7,
          -7,
          -7,
          -3.2484057839901737,
          -4.400327842485654,
          -7,
          -7,
          -7,
          -4.030913288350967,
          -3.8296896408989713,
          -3.2275617228280855,
          -7,
          -7,
          -7,
          -3.8200700343123257,
          -4.085968077046074,
          -7,
          -7,
          -3.5126176996829153,
          -7,
          -7,
          -2.7725967217074574,
          -7,
          -3.304244259277009,
          -3.508001960690125,
          -7,
          -7,
          -7,
          -3.600755149639618,
          -7,
          -4.091596620810058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.959078102052902,
          -7,
          -7,
          -7,
          -3.3478177127089124,
          -7,
          -3.20194306340165,
          -7,
          -7,
          -3.9092350033683076,
          -7,
          -4.171794687605212,
          -7,
          -7,
          -7,
          -3.5820065143636985,
          -7,
          -3.681150749932421,
          -7,
          -7,
          -3.4067955726682504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9472866446777983,
          -7,
          -7,
          -7,
          -3.29909022733675,
          -3.414851850003344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1536624535754956,
          -3.3005954838899636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7663278496599504,
          -7,
          -3.184028602525124,
          -7,
          -7,
          -7,
          -7,
          -3.557206339765532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0041063232796583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.87075494489014,
          -3.22284647997415,
          -7,
          -3.567966906823154,
          -7,
          -7,
          -3.537525269964369,
          -3.659821158055705,
          -7,
          -3.5939502952639875,
          -3.877774349991398,
          -7,
          -3.4449421391905433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5114287843162253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6959192528313998,
          -7,
          -7,
          -3.3341520529922866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1740598077250253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3192548157701802,
          -2.9974328623333713,
          -7,
          -7,
          -7,
          -3.4215216663369774,
          -3.4419306745501714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6827149543979574,
          -3.707314633588708,
          -7,
          -2.3293978793610424,
          -2.752913044000912,
          -7,
          -3.1705550585212086,
          -7,
          -2.490520309363349,
          -2.875928984922927,
          -3.1983821300082944,
          -4.096028949745415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7171154940041666,
          -7,
          -3.147521743537597,
          -7,
          -2.96140210810033,
          -3.1436392352745433,
          -7,
          -7,
          -7,
          -7,
          -3.1652443261253107,
          -3.1595671932336202,
          -7,
          -3.165541076722373,
          -7,
          -2.275416066894797,
          -2.8627275283179747,
          -3.1755118133634475,
          -2.5396137029240258,
          -7,
          -2.553883026643874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1724204775324703,
          -2.8407332346118066,
          -2.8388490907372557,
          -7,
          -7,
          -7,
          -2.2193939834967513,
          -7,
          -7,
          -3.471144965160633,
          -7,
          -2.1894903136993675,
          -7,
          -7,
          -7,
          -7,
          -2.855216194733363,
          -2.441852175773292,
          -2.044588752944993,
          -1.7087041048932998,
          -2.3977228071261734,
          -2.718224803628757,
          -2.4616485680634552,
          -7,
          -3.0868045767268297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1586639808139894,
          -7,
          -3.153204900084284,
          -7,
          -3.526597709103452,
          -7,
          -7,
          -7,
          -1.585580716933467,
          -7,
          -3.1504494094608804,
          -7,
          -3.1571544399062814,
          -2.1010593549081156,
          -3.157456768134226,
          -7,
          -1.5984257066728684,
          -7,
          -3.258979166140853,
          -7,
          -7,
          -2.86123561863404,
          -1.7936869319790616,
          -3.0419845014867866,
          -7,
          -1.6732012744666738,
          -3.837304286407038,
          -7,
          -7,
          -3.208710019906401,
          -3.599914247873701,
          -2.864511081058392,
          -3.337459261290656,
          -1.7747090039726263,
          -2.946943270697825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.715627349158221,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.776555910703262,
          -2.9778378782751416,
          -2.9857631799909927,
          -2.8102325179950842,
          -7,
          -7,
          -7,
          -3.1489109931093564,
          -1.6799827766807411,
          -2.424881636631067,
          -3.3418300569205104,
          -7,
          -7,
          -7,
          -2.583798674353646,
          -7,
          -7,
          -7,
          -3.2258259914618934,
          -7,
          -7,
          -7,
          -3.2506639194632436,
          -2.929418925714293,
          -3.2024883170600935,
          -7,
          -7,
          -7,
          -2.378509956288727,
          -2.372298159077237,
          -7,
          -7,
          -3.1652443261253107,
          -3.153204900084284,
          -2.865991800126275,
          -7,
          -1.8703114792547921,
          -7,
          -3.924382677201973,
          -7,
          -7,
          -1.5183510800440148,
          -2.863322860120456,
          -7,
          -2.0346785800579923,
          -3.2650537885040145,
          -2.1403284340687447,
          -7,
          -3.2234959409623944,
          -7,
          -3.2265999052073573,
          -3.18440748541232,
          -2.3921104650113136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2216749970707688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2127201544178425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5418911250960012,
          -2.6699364163086976,
          -3.1386184338994925,
          -7,
          -2.8692317197309762,
          -7,
          -7,
          -1.6188990588803125,
          -2.4578818967339924,
          -2.9499751778296535,
          -5.153195744095671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146128035678238,
          -3.2095150145426308,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.494154594018443,
          -3.082865123228602,
          -7,
          -7,
          -7,
          -3.1550322287909704,
          -3.168202746842631,
          -2.870403905279027,
          -3.1451964061141817,
          -2.898999270889789,
          -7,
          -2.858537197569639,
          -7,
          -7,
          -7,
          -3.1436392352745433,
          -7,
          -3.496514518697745,
          -2.651278013998144,
          -2.6361295379850636,
          -2.4450850227193537,
          -4.212693542421026,
          -7,
          -7,
          -3.1577588860468637,
          -3.4256157245769305,
          -3.3161800988934527,
          -7,
          -2.3392857748989755,
          -3.4112829130173843,
          -7,
          -2.8494194137968996,
          -2.6652682113991735,
          -2.7052933977148914,
          -2.018423082826786,
          -2.1872642729507104,
          -7,
          -7,
          -3.2000292665537704,
          -7,
          -3.1556396337597765,
          -3.190051417759206,
          -2.1190758459608126,
          -1.9254266961927287,
          -3.3062105081677613,
          -7,
          -2.7078539359785987,
          -3.774569098791682,
          -7,
          -7,
          -2.934561570854449,
          -7,
          -2.1893967258352185,
          -7,
          -3.168202746842631,
          -2.0893751608160995,
          -1.9153244434089554,
          -3.3754807146185724,
          -7,
          -3.3334472744967503,
          -7,
          -4.324045689986502,
          -2.4992942336708537,
          -7,
          -7,
          -7,
          -2.900913067737669,
          -2.2730012720637376,
          -7,
          -7,
          -3.2258259914618934,
          -7,
          -7,
          -7,
          -3.2011238972073794,
          -3.1772478362556233,
          -7,
          -2.93976877545335,
          -7,
          -3.5296869537729165,
          -3.2641091563058082,
          -4.073203361152041,
          -7,
          -1.8401821596959231,
          -3.559379888183303,
          -2.087347537450042,
          -7,
          -2.467608105583633,
          -2.8744818176994666,
          -1.7926039027846181,
          -2.744851561311451,
          -2.56839730816483,
          -3.149834696715785,
          -7,
          -7,
          -2.1513462735539934,
          -7,
          -2.4152516526787737,
          -7,
          -1.810232517995084,
          -2.8654001181793016,
          -1.8882419149722454,
          -7,
          -7,
          -4.15325576317293,
          -7,
          -4.29569901748951,
          -7,
          -4.447344117675954,
          -7,
          -3.791830947674836,
          -7,
          -4.043770833537528,
          -7,
          -7,
          -7,
          -7,
          -4.810662565790494,
          -3.7149999674120426,
          -7,
          -7,
          -3.8182353223974452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015171073002388,
          -3.637055885524786,
          -7,
          -4.637339601787825,
          -7,
          -7,
          -4.237258806492558,
          -3.9510702531688118,
          -4.59440360098501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.710405106268253,
          -4.014100321519621,
          -3.369586890736344,
          -3.3059958827708047,
          -2.5267289171353124,
          -1.7989348563069356,
          -2.7974983643715756,
          -7,
          -7,
          -3.4434314959344703,
          -2.956708560488622,
          -7,
          -7,
          -3.476483821914464,
          -3.095448326538122,
          -7,
          -7,
          -3.114610984232173,
          -7,
          -7,
          -3.615871177457818,
          -7,
          -7,
          -2.4814793786171485,
          -3.2858542379017495,
          -7,
          -7,
          -3.4912215762392833,
          -7,
          -3.0669054262816697,
          -7,
          -4.248992783468489,
          -2.483125616393796,
          -7,
          -7,
          -3.2797429693408864,
          -7,
          -3.700811844739728,
          -7,
          -2.970966411972679,
          -7,
          -2.7275132117938496,
          -3.586812269443376,
          -3.2079035303860515,
          -2.9354127889420147,
          -3.21507405981132,
          -7,
          -3.741939077729199,
          -7,
          -3.490941205356787,
          -3.2372085050255706,
          -7,
          -3.2060158767633444,
          -3.177824971864682,
          -7,
          -7,
          -7,
          -2.56054423863114,
          -7,
          -2.5248595673317964,
          -7,
          -2.705619383455026,
          -3.136363791969793,
          -2.8829038344697353,
          -3.2111205412580492,
          -7,
          -3.159266331093494,
          -7,
          -4.038063526997859,
          -3.031408464251624,
          -7,
          -7,
          -2.9253120914996495,
          -7,
          -2.8920946026904804,
          -7,
          -7,
          -2.2217792569396897,
          -7,
          -3.359076226059263,
          -7,
          -2.427323786357247,
          -7,
          -3.6001012556913907,
          -7,
          -7,
          -7,
          -2.6131918182858205,
          -4.273626206272959,
          -7,
          -7,
          -2.9395192526186187,
          -7,
          -7,
          -7,
          -2.8736111969964675,
          -2.977609302226758,
          -7,
          -7,
          -3.71121652432109,
          -3.157456768134226,
          -7,
          -2.81424759573192,
          -2.53585649562398,
          -7,
          -7,
          -3.185825359612962,
          -2.754157142891773,
          -7,
          -7,
          -3.1746411926604483,
          -3.1863912156954934,
          -7,
          -3.8813275841005512,
          -7,
          -7,
          -2.862280493299705,
          -7,
          -2.9877270261586526,
          -2.3502480183341627,
          -7,
          -1.7674209222282797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7594160067690314,
          -7,
          -7,
          -2.688419822002711,
          -2.2036107453704106,
          -7,
          -7,
          -3.5081929260254405,
          -7,
          -7,
          -3.3265406685165617,
          -3.8152455919165633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5976293787457663,
          -7,
          -7,
          -3.1808424146466825,
          -3.8603380065709936,
          -2.6190933306267428,
          -4.011062694729735,
          -4.308116015865615,
          -3.84223468634724,
          -7,
          -7,
          -3.173186268412274,
          -7,
          -3.238547887681328,
          -7,
          -3.6094876898532853,
          -7,
          -2.5754765086019,
          -7,
          -3.1063042456868444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.282848602834645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.76544501809015,
          -7,
          -7,
          -7,
          -7,
          -2.355387657986574,
          -7,
          -7,
          -4.304899640332865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.214896807560221,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517024258314842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0931063569779065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.184975190698261,
          -7,
          -7,
          -7,
          -7,
          -3.970356175798233,
          -7,
          -2.6434526764861874,
          -2.603144372620182,
          -7,
          -2.776701183988411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.674034000431255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097531477843443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.118430077122089,
          -7,
          -7,
          -7,
          -4.540967306429246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9791020148025416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603133542198807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3998870674206625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333809874855226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1142772965615864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1987945001755986,
          -4.093386660001371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4259171567401974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368426357519688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3988077302032647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1436392352745433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.674769314015426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9132839017604186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.402089350572097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.783824999149303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603220178008266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7685641095135733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639426719860243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080666163176663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5822906827189938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8961954104542107,
          -3.5779511277297553,
          -7,
          -7,
          -4.40012335543708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02530586526477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7902851640332416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216614485501277,
          -2.6384892569546374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5947607525864629,
          -7,
          -4.0948203803548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.00987563371216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7854010249923875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426543791568096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8834100830783638,
          -7,
          -7,
          -2.6532125137753435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1061908972634154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495918807079969,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304835069229006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495620644569206,
          -7,
          -7,
          -7,
          -7,
          -3.0330214446829107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4093694704528195,
          -7,
          -7,
          -5.131868776728313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.027064062151045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703265577680112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.946042669130686,
          -7,
          -7,
          -7,
          -4.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.473194909204938,
          -7,
          -7,
          -7,
          -7,
          -4.678286146953918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.333144876098619,
          -7,
          -7,
          -3.1049989492996337,
          -7,
          -7,
          -4.561947671417096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9845723156216324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639834980302741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2585636110560623,
          -7,
          -7,
          -7,
          -3.452553063228925,
          -3.772761647144032,
          -7,
          -3.3402457615679317,
          -7,
          -7,
          -7,
          -2.9804578922761,
          -7,
          -7,
          -7,
          -3.682686478249768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9755811433675645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505421327583281,
          -7,
          -3.5892605847872807,
          -7,
          -7,
          -7,
          -7,
          -2.9668454236549167,
          -7,
          -7,
          -7,
          -7,
          -3.4837298990000236,
          -3.824581376233483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4363217001397333,
          -7,
          -7,
          -7,
          -3.3907938501556703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7817793020639456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4979343783811503,
          -3.330210784571528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5743785644130823,
          -7,
          -7,
          -7,
          -3.058995093525416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.515377033954657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6909045540549665,
          -4.150572247668998,
          -7,
          -7,
          -7,
          -3.749140877763003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5788683286660286,
          -7,
          -7,
          -7,
          -3.5554975061310574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4129642719966626,
          -7,
          -7,
          -7,
          -4.130237247885229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.86844850133673,
          -7,
          -7,
          -3.896037794686384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0387525889920166,
          -7,
          -3.466818209752554,
          -7,
          -2.922898380345496,
          -3.22250119856757,
          -3.2678754193188975,
          -7,
          -7,
          -3.348694190265541,
          -3.3712526291249394,
          -2.9459607035775686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5711262770843115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2997251539756367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8755242639493086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.751933133091522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.496514518697745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5100085129402347,
          -7,
          -3.263201951663331,
          -7,
          -7,
          -7,
          -7,
          -3.3912880485952974,
          -7,
          -3.1806992012960347,
          -7,
          -7,
          -7,
          -7,
          -3.2826221128780624,
          -3.362293937964231,
          -3.3230457354817013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6303261548039467,
          -7,
          -7,
          -7,
          -3.4194187409295647,
          -7,
          -7,
          -3.5613399414589013,
          -7,
          -7,
          -7,
          -7,
          -3.4602963267574753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.158492706081757,
          -3.4171394097273255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.405903034554918,
          -7,
          -3.1362448017461424,
          -4.087083052293845,
          -7,
          -7,
          -3.3348556896172914,
          -7,
          -3.398287305357401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0521165505499983,
          -7,
          -7,
          -7,
          -7,
          -3.269512944217916,
          -7,
          -7,
          -7,
          -2.9344176447530743,
          -3.528886466403724,
          -3.458853593929194,
          -7,
          -7,
          -7,
          -3.215967850531294,
          -3.82239693934044,
          -3.365292945375382,
          -7,
          -4.091561448144972,
          -3.160890737208172,
          -4.193968239905537,
          -3.968102524143074,
          -3.575303333422399,
          -3.166218603352615,
          -3.7165542140372105,
          -3.3243011664190374,
          -3.582404298019028,
          -3.1932276949678604,
          -7,
          -3.463173317505048,
          -7,
          -3.0244578372293143,
          -3.649918718735419,
          -4.200522191802113,
          -4.641236075704003,
          -4.473851770154815,
          -7,
          -3.638314505630271,
          -3.5623880418581058,
          -3.9965773367182584,
          -3.4962606330422306,
          -4.22057875463283,
          -7,
          -3.974327435423617,
          -3.505895781219751,
          -4.378851946448881,
          -3.114410802397837,
          -4.030235296012245,
          -7,
          -3.987420452611655,
          -2.9932357714670954,
          -3.3685348052638817,
          -7,
          -7,
          -7,
          -3.8632752635965546,
          -3.281033367247727,
          -7,
          -3.6473503641998253,
          -3.885785128783473,
          -3.52022143588196,
          -7,
          -3.8403570592033565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.002436061443105,
          -3.384608753685633,
          -3.585781667754338,
          -7,
          -7,
          -7,
          -3.4515715370380673,
          -7,
          -4.10475529215573,
          -7,
          -3.8125791554090465,
          -7,
          -3.3084932702271614,
          -3.4654943853655413,
          -4.010299956639812,
          -7,
          -3.3016809492935764,
          -3.7024305364455254,
          -3.247591421035026,
          -3.628695382714023,
          -7,
          -3.4753182974419126,
          -3.5815742220419535,
          -7,
          -3.116871334402459,
          -7,
          -3.5425764762605296,
          -7,
          -3.295127085252191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.577912868954951,
          -2.6857417386022635,
          -2.356185260565036,
          -7,
          -7,
          -3.2096681778247347,
          -7,
          -2.6040099324122306,
          -3.269512944217916,
          -3.102890857809762,
          -7,
          -3.2456409631411085,
          -2.6254839394069043,
          -7,
          -7,
          -3.853759033074769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.302330928684399,
          -7,
          -3.922050402167174,
          -7,
          -7,
          -3.3775444087229904,
          -3.542298632022125,
          -3.6074550232146683,
          -7,
          -7,
          -2.7257074985747667,
          -7,
          -3.295567099962479,
          -7,
          -7,
          -3.0201540316383326,
          -7,
          -7,
          -7,
          -7,
          -3.8197412972730103,
          -7,
          -7,
          -7,
          -7,
          -2.9829492885744986,
          -2.948412965778601,
          -3.408315357115164,
          -7,
          -7,
          -7,
          -3.4225077658680756,
          -3.9030899869919438,
          -7,
          -7,
          -7,
          -3.3324384599156054,
          -3.1725246190207876,
          -2.8639173769578603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9231792324017825,
          -7,
          -7,
          -2.722839505724351,
          -3.5251744278352715,
          -7,
          -3.2692793897718984,
          -2.790128717892536,
          -2.8979934299725625,
          -3.36078268987328,
          -2.8796692056320534,
          -7,
          -3.0317113547545933,
          -7,
          -3.840482487213442,
          -3.79155030502733,
          -3.5219222448835,
          -3.203576774977973,
          -7,
          -7,
          -3.401874214845746,
          -7,
          -7,
          -7,
          -3.7430980089414754,
          -7,
          -3.726197258403274,
          -3.538028848509809,
          -7,
          -7,
          -3.386320573894046,
          -7,
          -7,
          -2.849009701991132,
          -2.710963118995276,
          -3.649334858712142,
          -7,
          -7,
          -3.249198357391113,
          -2.8340888222552794,
          -7,
          -7,
          -7,
          -7,
          -3.343802333161655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9777236052888476,
          -7,
          -7,
          -7,
          -7,
          -3.3096301674258988,
          -7,
          -7,
          -3.4924810101288766,
          -3.6833172619218826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5348718599395945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.816288657767513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9158745028576916,
          -7,
          -7,
          -2.231542403656085,
          -3.5569167422407153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.451530591934032,
          -3.426185825244511,
          -7,
          -7,
          -2.871280972857973,
          -7,
          -7,
          -7,
          -7,
          -2.160368474792848,
          -2.6652682113991735,
          -2.433769833924866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4727564493172123,
          -7,
          -7,
          -3.924641047417163,
          -2.3664229572259727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.808885867359812,
          -7,
          -7,
          -7,
          -7,
          -3.8233829264392476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -7,
          -7,
          -7,
          -2.688419822002711,
          -2.988112840268352,
          -7,
          -7,
          -7,
          -7,
          -4.070850253427573,
          -2.2616593037647066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.074938279468222,
          -3.630122642859312,
          -7,
          -7,
          -7,
          -4.738796408358713,
          -7,
          -7,
          -2.5384480517102173,
          -2.4366925976640545,
          -7,
          -7,
          -2.5071809772602407,
          -7,
          -7,
          -3.9752019622578523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.385606273598312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.056142262059052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0942184429580704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8109042806687006,
          -7,
          -7,
          -7,
          -7,
          -2.845939884498351,
          -7,
          -2.931457870689005,
          -7,
          -2.6488477083728936,
          -2.7032913781186614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.377670439334323,
          -7,
          -3.028571252692538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3592661646067485,
          -7,
          -7,
          -7,
          -2.661812685537261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.486666572625893,
          -7,
          -3.5460488664017342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6971421262754594,
          -7,
          -7,
          -7,
          -2.682145076373832,
          -7,
          -2.7307822756663893,
          -7,
          -7,
          -7,
          -7,
          -3.4295908022233017,
          -2.651278013998144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2284859086849425,
          -7,
          -4.500949647254549,
          -7,
          -7,
          -2.3873898263387296,
          -7,
          -7,
          -3.0881360887005513,
          -2.927626962444954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.108057373783854,
          -2.766710207262259,
          -7,
          -7,
          -2.7686381012476144,
          -7,
          -7,
          -7,
          -3.296884475538547,
          -7,
          -7,
          -2.8898617212581885,
          -7,
          -2.1424463518981964,
          -2.2105860249051563,
          -7,
          -7,
          -7,
          -7,
          -4.320779603142665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9644482079166607,
          -7,
          -4.655319353156804,
          -7,
          -7,
          -3.9459607035775686,
          -2.807873132003332,
          -7,
          -7,
          -7,
          -3.0655797147284485,
          -2.8674674878590514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.335290703581678,
          -7,
          -7,
          -4.620666881958084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.036261505705524,
          -7,
          -4.041708420891436,
          -7,
          -7,
          -4.804248503594015,
          -4.3979400086720375,
          -7,
          -7,
          -4.353367970314268,
          -7,
          -4.611117634384384,
          -7,
          -7,
          -7,
          -4.087689155914309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.229238022747195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0921063046052355,
          -7,
          -7,
          -4.574320700915308,
          -3.6097011023793995,
          -2.907871825014827,
          -7,
          -7,
          -7,
          -7,
          -3.7998228309933197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.756560043006683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.628899564420607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.164144582470177,
          -7,
          -7,
          -4.306542968060749,
          -4.089104047230036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -3.0969968632197054,
          -7,
          -2.367355921026019,
          -7,
          -2.638156336676239,
          -3.699620957965614,
          -7,
          -7,
          -7,
          -3.1951382785109965,
          -7,
          -3.7274192470595273,
          -2.6020599913279625,
          -7,
          -7,
          -3.064008486531724,
          -7,
          -2.993583175003126,
          -7,
          -7,
          -2.667319508586583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.846213363879387,
          -7,
          -7,
          -7,
          -2.8941775538387726,
          -4.141300802092444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.622731965164719,
          -7,
          -7,
          -2.7032913781186614,
          -2.4283373095287994,
          -7,
          -7,
          -7,
          -3.123524980942732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3461573022320086,
          -7,
          -7,
          -3.689486448364248,
          -7,
          -3.318290070795012,
          -2.9334872878487053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.412740466538526,
          -7,
          -7,
          -7,
          -2.5826830459874577,
          -7,
          -7,
          -3.7402837196818792,
          -7,
          -7,
          -7,
          -3.269746373130767,
          -7,
          -2.9967305154351527,
          -7,
          -7,
          -7,
          -3.974396541077658,
          -7,
          -7,
          -7,
          -3.2763782377920156,
          -2.5888317255942073,
          -7,
          -3.9863013670565963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.078577639999239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.507855871695831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -7,
          -3.387122759927585,
          -7,
          -7,
          -7,
          -7,
          -2.3114006325028105,
          -7,
          -7,
          -3.9829267037708376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3575017219202703,
          -2.74020473550745,
          -7,
          -7,
          -2.9344984512435675,
          -2.2442276257329077,
          -3.6824158616773586,
          -7,
          -7,
          -3.2529338976558373,
          -2.82865989653532,
          -2.17827488687209,
          -7,
          -7,
          -2.153895059060278,
          -2.6178845514336007,
          -7,
          -3.6828667956623247,
          -7,
          -7,
          -7,
          -7,
          -3.496088332375765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.200759326791928,
          -3.038305485793075,
          -7,
          -7,
          -2.3927848582254354,
          -7,
          -7,
          -3.681241237375587,
          -7,
          -7,
          -3.681331705969166,
          -2.394013663157313,
          -2.7265008135244413,
          -3.680969718465897,
          -3.6843964784190204,
          -3.284054558436069,
          -3.208889036595623,
          -3.678973375919765,
          -7,
          -3.6849350826408895,
          -2.866793509866322,
          -7,
          -7,
          -7,
          -7,
          -3.484071952954621,
          -7,
          -7,
          -3.3790334318179673,
          -7,
          -2.816837630902035,
          -3.111766433052562,
          -7,
          -2.9425867266347816,
          -2.5738451016256025,
          -7,
          -3.690373306916059,
          -7,
          -7,
          -7,
          -2.827553882825746,
          -3.2012149920125177,
          -3.674677467873199,
          -7,
          -7,
          -3.4271614029259654,
          -3.690993032099869,
          -3.7062055418819706,
          -7,
          -2.559825308445932,
          -3.2288279401906332,
          -7,
          -3.373095987078727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.04720994556899,
          -3.6797911709803546,
          -7,
          -7,
          -3.1166907434117026,
          -7,
          -7,
          -3.6885977750811696,
          -7,
          -3.419625360887743,
          -3.6788824146707357,
          -7,
          -3.4050901140387224,
          -3.3960248966085933,
          -2.672396706235079,
          -7,
          -3.6911699341316035,
          -7,
          -7,
          -3.4424797690644486,
          -7,
          -3.1956782994574984,
          -2.6746570549812816,
          -3.6795187436957892,
          -3.705007959333336,
          -2.9952841076892596,
          -3.5671513990768036,
          -7,
          -3.4401216031878037,
          -2.6380282224294906,
          -3.7083359026822635,
          -7,
          -3.6857417386022635,
          -2.3467085164122916,
          -7,
          -7,
          -2.2350807535650064,
          -7,
          -7,
          -7,
          -3.196728722623287,
          -3.673665876245702,
          -3.366843038975866,
          -3.85394144588049,
          -3.158724253450531,
          -2.0066757349199578,
          -7,
          -4.031448861859383,
          -7,
          -7,
          -7,
          -3.373095987078727,
          -3.043440876244474,
          -7,
          -7,
          -7,
          -3.1740598077250253,
          -7,
          -3.674952948048565,
          -2.681874122128647,
          -3.700617195682057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.692935002531138,
          -7,
          -7,
          -3.6820547770738075,
          -1.8316472780798594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5368389039838624,
          -7,
          -3.592361839214949,
          -7,
          -3.436162647040756,
          -2.2215638729371334,
          -7,
          -2.709354775834396,
          -2.8614490626261007,
          -3.111598524880394,
          -2.8779469516291885,
          -3.7481104674949837,
          -7,
          -7,
          -7,
          -3.6871721045948,
          -7,
          -3.772834927239018,
          -7,
          -7,
          -7,
          -2.850986404764101,
          -7,
          -2.7814942626759254,
          -3.674125982742708,
          -2.8243699338659654,
          -7,
          -3.380030247967831,
          -7,
          -7,
          -3.6962689967455327,
          -7,
          -7,
          -7,
          -3.5165353738957994,
          -7,
          -7,
          -7,
          -3.6761446803562063,
          -7,
          -7,
          -3.6829569263012085,
          -7,
          -7,
          -2.8124955649012526,
          -3.42781057267599,
          -2.686356926304246,
          -3.3567068974160033,
          -7,
          -7,
          -7,
          -2.7599195366595284,
          -7,
          -7,
          -3.394013663157313,
          -3.6790643181213127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5716169014188077,
          -7,
          -7,
          -7,
          -7,
          -3.3809344633307017,
          -3.382107135819026,
          -7,
          -7,
          -7,
          -7,
          -1.5381155755594067,
          -2.6361295379850636,
          -3.674034000431255,
          -3.674769314015426,
          -7,
          -3.5100085129402347,
          -2.2284859086849425,
          -7,
          -7,
          -3.4095829393867487,
          -2.979001748474721,
          -7,
          -3.377761438702263,
          -2.488046836084362,
          -3.4318460456987254,
          -2.7856461456452184,
          -2.661011336773302,
          -2.8678356276470556,
          -7,
          -7,
          -7,
          -7,
          -3.7200765727681406,
          -7,
          -7,
          -3.6938148538894167,
          -3.6921416093667836,
          -7,
          -3.6783362467321803,
          -3.2114765203615074,
          -3.3803921600570273,
          -2.625856945055025,
          -3.126699483839912,
          -7,
          -3.386498965550653,
          -3.221385254927856,
          -3.688953462637418,
          -7,
          -2.9298444960392853,
          -7,
          -7,
          -3.704236337308788,
          -7,
          -2.5080057059156724,
          -2.6648982721005385,
          -7,
          -7,
          -7,
          -7,
          -2.9278264349968235,
          -3.267562808557224,
          -7,
          -7,
          -7,
          -3.456897187449348,
          -2.9395192526186187,
          -7,
          -7,
          -3.3994141053637703,
          -7,
          -7,
          -3.0711452904510828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.953308577080214,
          -2.803270843082014,
          -2.9784853842188284,
          -3.6942541120252788,
          -7,
          -2.9155427295901104,
          -3.04641711698399,
          -7,
          -7,
          -7,
          -7,
          -3.1602283571978584,
          -3.444513206334043,
          -7,
          -7,
          -7,
          -3.415056858110851,
          -7,
          -7,
          -7,
          -3.7532765701844184,
          -7,
          -2.254637107064722,
          -7,
          -7,
          -3.1711694902913683,
          -4.0030582213054675,
          -4.3634803555596005,
          -3.709439574132411,
          -3.7179338840140583,
          -3.8195439355418688,
          -3.024074987307426,
          -3.5157267000606347,
          -1.9442479613427892,
          -7,
          -2.5486322043143623,
          -3.582734646353692,
          -3.7432047979332004,
          -3.9293358908906413,
          -2.638608449924449,
          -7,
          -3.420510834177029,
          -3.0803272587424058,
          -7,
          -3.7512213482173284,
          -7,
          -4.075347850294719,
          -4.077440584471324,
          -2.781263241134869,
          -3.514282047860378,
          -7,
          -4.067405658437824,
          -3.7365425706549265,
          -7,
          -2.656842345127794,
          -4.025428761407241,
          -3.5882003798974735,
          -4.33779857726225,
          -7,
          -7,
          -4.037386652582377,
          -4.197941836490006,
          -3.65097092646721,
          -3.1832848320171543,
          -2.1036423871445606,
          -3.754271868683459,
          -2.8070351926151433,
          -3.54647215540396,
          -2.6159938644667187,
          -1.9604877657203366,
          -2.835276892005453,
          -3.0401274417814563,
          -2.639840509652488,
          -4.024977972095624,
          -3.7886632131208575,
          -3.609140670672294,
          -2.705031753031844,
          -3.0261245167454502,
          -7,
          -3.2949949938591003,
          -3.7740057302582093,
          -7,
          -2.8395923053285284,
          -3.996905510695666,
          -7,
          -7,
          -3.73430366675543,
          -2.837383780552244,
          -4.231206147302349,
          -7,
          -3.808616035426992,
          -7,
          -3.878837635606425,
          -7,
          -4.060881904438374,
          -3.454133151696751,
          -7,
          -7,
          -7,
          -3.6881527555915663,
          -4.0686681432859,
          -3.781468142841798,
          -3.6511325785504813,
          -3.299942900022767,
          -2.9325660009484786,
          -3.3799095435529614,
          -7,
          -2.879280592584869,
          -3.0692768548844684,
          -3.7446840632768863,
          -3.9777510335478743,
          -7,
          -3.0296542818869807,
          -3.2311126290563523,
          -3.47088069752548,
          -7,
          -7,
          -7,
          -7,
          -4.213331780706593,
          -1.979089800538877,
          -7,
          -2.548926578970604,
          -3.101317377184387,
          -2.6065710271626346,
          -2.5509617522981762,
          -2.4927603890268375,
          -3.3945392313722045,
          -7,
          -2.5159565901122156,
          -7,
          -3.140073420241109,
          -3.739493230781615,
          -3.124259620782813,
          -3.813981075636472,
          -2.747023177451628,
          -3.489536629482095,
          -2.5791214245707335,
          -7,
          -3.4187154968655955,
          -2.4772949377781273,
          -7,
          -3.749968083509403,
          -2.8099803388636957,
          -7,
          -7,
          -2.426782271970501,
          -3.225567713439471,
          -3.679609571779756,
          -3.3267070035930515,
          -2.460725807287314,
          -2.17340020840208,
          -7,
          -3.8354368948018585,
          -3.7057782128285974,
          -3.469527479187014,
          -3.089463530840192,
          -7,
          -7,
          -3.0750600841196736,
          -7,
          -3.714413592287121,
          -3.22901594276341,
          -7,
          -2.579829309419537,
          -3.1214777702040943,
          -2.853833358651982,
          -7,
          -3.7385427409287852,
          -3.68761812957177,
          -2.1196328810393728,
          -3.414772858093331,
          -7,
          -3.684126925613075,
          -7,
          -7,
          -1.5080244315589613,
          -3.730216840568694,
          -7,
          -2.9618480590183243,
          -7,
          -2.5288608316878944,
          -3.4100176082030527,
          -2.614711156273672,
          -3.0989896394011773,
          -7,
          -3.8101652845431495,
          -7,
          -2.9843022319799033,
          -3.726808682524964,
          -7,
          -3.2271150825891253,
          -2.8950770727239954,
          -7,
          -7,
          -1.7695355678275353,
          -2.879996481067212,
          -3.7194141597025934,
          -2.6268311208610227,
          -7,
          -3.1611882569822596,
          -3.1344958558346736,
          -2.411353838503502,
          -2.6578204560156973,
          -3.3200077330768902,
          -3.009592521262823,
          -7,
          -7,
          -2.932060168758189,
          -3.0001860863337346,
          -7,
          -2.546679729750976,
          -2.212415419531334,
          -2.9206450014067875,
          -2.283850212395074,
          -3.1430883098145115,
          -2.755747850412951,
          -3.6848453616444123,
          -7,
          -7,
          -7,
          -7,
          -2.9633155113861114,
          -7,
          -7,
          -7,
          -7,
          -2.6162770806491906,
          -7,
          -7,
          -7,
          -7,
          -3.712060142461075,
          -3.689930104018218,
          -7,
          -1.5774014253739082,
          -3.823148059810694,
          -3.4193774051391275,
          -7,
          -2.9537596917332287,
          -7,
          -7,
          -7,
          -3.6977522741677546,
          -3.694341910364181,
          -7,
          -3.183459657707637,
          -3.413020205344915,
          -3.8698768132667665,
          -7,
          -7,
          -2.429235339626655,
          -3.378307034856813,
          -7,
          -3.1947547791802955,
          -7,
          -7,
          -2.999855211039865,
          -3.392169149489736,
          -3.73870130043471,
          -7,
          -7,
          -7,
          -7,
          -3.2094077680963755,
          -7,
          -7,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.183241364422366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.759236033088654,
          -2.224014811372864,
          -7,
          -3.73242248205319,
          -7,
          -7,
          -7,
          -2.6910814921229687,
          -7,
          -7,
          -2.887473644846725,
          -2.6532125137753435,
          -7,
          -7,
          -2.699837725867246,
          -2.5085297189712867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0836618478730786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7178368674869255,
          -7,
          -7,
          -3.137670537236755,
          -7,
          -2.5728716022004803,
          -2.5877109650189114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.035389709198677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8915374576725643,
          -7,
          -7,
          -3.9216344610537055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.977266212427293,
          -7,
          -7,
          -7,
          -4.043768215815501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9232440186302764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -4.066549538761934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0605719396477284,
          -4.1034273973827675,
          -7,
          -7,
          -7,
          -4.737876158125802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.960470777534299,
          -7,
          -7,
          -7,
          -3.8027737252919755,
          -7,
          -7,
          -2.8627275283179747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.381440002819618,
          -7,
          -2.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5814945422908995,
          -7,
          -7,
          -3.5252473225368557,
          -7,
          -7,
          -7,
          -1.9923325590474643,
          -2.5550944485783194,
          -7,
          -7,
          -2.9607085516885565,
          -7,
          -7,
          -7,
          -7,
          -3.0279145829217957,
          -7,
          -7,
          -7,
          -7,
          -2.9523080096621253,
          -7,
          -7,
          -7,
          -2.79309160017658,
          -7,
          -2.629409599102719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.621176281775035,
          -7,
          -7,
          -7,
          -2.678973375919765,
          -7,
          -5.14993618427544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4804491980685899,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -7,
          -3.993171605030765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4450850227193537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.897214590564255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.04493154614916,
          -3.1983821300082944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7180862947830915,
          -7,
          -7,
          -2.414137362184477,
          -7,
          -7,
          -7,
          -7,
          -2.331660850966761,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7657430414210444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9624369880545964,
          -2.055378331375,
          -2.735997884091794,
          -7,
          -4.797527208690113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9589459324939362,
          -7,
          -4.734318079475221,
          -7,
          -3.1085650237328344,
          -4.546666025070184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9182051383496885,
          -2.113943352306837,
          -1.8349855478280104,
          -2.12602311790052,
          -2.7953585510233854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.572976098995143,
          -7,
          -3.4437322414015967,
          -7,
          -7,
          -7,
          -4.544675631413166,
          -2.88768761434575,
          -3.2420442393695508,
          -7,
          -3.541454428747589,
          -7,
          -7,
          -7,
          -7,
          -2.7151673578484576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9804578922761005,
          -5.172842194238305,
          -2.3560258571931225,
          -2.189468718289905,
          -7,
          -7,
          -7,
          -4.94276183005964,
          -7,
          -4.062092892630169,
          -7,
          -7,
          -7,
          -4.279370318179108,
          -7,
          -7,
          -7,
          -4.160678574400385,
          -7,
          -7,
          -4.60634911432292,
          -4.564902672529205,
          -7,
          -4.333527878521092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6910814921229687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.143014800254095,
          -2.6074550232146687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.741151598851785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.225309281725863,
          -7,
          -7,
          -7,
          -7,
          -3.4379090355394983,
          -7,
          -7,
          -7,
          -2.571708831808688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.127410785330337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731024379815688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5856186260679217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.050379756261458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.629409599102719,
          -2.6503075231319366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0752731600919394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.582222499269305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.496749807394558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5205177076292187,
          -7,
          -7,
          -7,
          -3.6429712311818627,
          -2.7554691280706067,
          -7,
          -4.500949647254549,
          -4.0203336548935145,
          -7,
          -7,
          -2.3475543120201428,
          -3.39750549689802,
          -7,
          -4.204730280256104,
          -2.503868588928999,
          -7,
          -4.496583734489095,
          -7,
          -4.497606840516214,
          -7,
          -4.49793814174857,
          -3.1114951644986593,
          -4.497040282255931,
          -7,
          -7,
          -4.497744913411731,
          -4.499755794663781,
          -7,
          -7,
          -7,
          -2.284846834042906,
          -7,
          -2.8350231169115405,
          -7,
          -7,
          -4.021630263171184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.667279467298674,
          -3.1106618462485724,
          -7,
          -7,
          -4.509619137576773,
          -7,
          -7,
          -4.1951105670203095,
          -7,
          -4.501333178645567,
          -7,
          -4.496749807394558,
          -7,
          -7,
          -2.543243510293341,
          -7,
          -7,
          -4.496182129257268,
          -7,
          -4.0431001811622975,
          -4.501565871851012,
          -7,
          -4.50275476578036,
          -3.086378085628699,
          -7,
          -4.020568434801363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.501018159848659,
          -4.49811749111387,
          -3.725598588011667,
          -7,
          -4.199192752823317,
          -4.201383467046534,
          -2.539846263642648,
          -4.500263926200883,
          -7,
          -4.495280628260573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.521870011498159,
          -7,
          -7,
          -7,
          -4.502372488311689,
          -7,
          -7,
          -4.497468723709966,
          -7,
          -4.502631927572243,
          -7,
          -7,
          -7,
          -4.49882037810471,
          -2.3982277298043977,
          -7,
          -4.497869141497094,
          -7,
          -7,
          -4.205434446574788,
          -7,
          -3.390240992999803,
          -2.9065046393767022,
          -4.496071276220637,
          -4.500057998579122,
          -7,
          -3.023399816762231,
          -7,
          -3.8070070597740875,
          -3.6630005371638217,
          -4.500593207431217,
          -4.195622943586937,
          -7,
          -4.498131284151583,
          -7,
          -7,
          -3.242962512642639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2990712600274095,
          -3.7493626513079716,
          -3.625273856727731,
          -3.9007766472930405,
          -7,
          -3.079741264799503,
          -7,
          -7,
          -4.500881123850455,
          -3.924770174906564,
          -3.904242052299247,
          -7,
          -7,
          -7,
          -3.2906213728473426,
          -7,
          -7,
          -7,
          -7,
          -4.495419442581866,
          -7,
          -4.027702880532386,
          -4.500716623555479,
          -7,
          -7,
          -7,
          -4.497261466106855,
          -7,
          -2.6952498398147355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.894302213787551,
          -7,
          -3.561247184547739,
          -7,
          -2.94873131349413,
          -7,
          -3.6601469298342457,
          -2.5490200674618704,
          -4.496320655774951,
          -7,
          -4.199412322193509,
          -4.024362504353283,
          -3.5029184960299538,
          -3.427783543301038,
          -4.022057020601165,
          -7,
          -4.198340871447986,
          -7,
          -7,
          -4.210612766352898,
          -7,
          -7,
          -7,
          -3.4486732001001474,
          -7,
          -3.198761786685379,
          -4.495252860071183,
          -3.901785145303599,
          -7,
          -4.496334505996817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2644898803209164,
          -4.19721161702191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.202937636552238,
          -3.6907781255710885,
          -2.6286728307087173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.498503530678758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495544337546448,
          -7,
          -7,
          -7,
          -2.838592983118509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.507424060094855,
          -7,
          -4.0482734397251114,
          -4.212693542421026,
          -7,
          -7,
          -4.495918807079969,
          -3.263201951663331,
          -4.500949647254549,
          -3.4095829393867487,
          -3.897214590564255,
          -7,
          -7,
          -7,
          -7,
          -3.7685764423447066,
          -4.027499104398127,
          -4.028882900306921,
          -3.6091006121488234,
          -4.21045229296202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499783276438258,
          -7,
          -7,
          -7,
          -7,
          -4.495891079666188,
          -7,
          -7,
          -3.2728468287897403,
          -3.8049567998574916,
          -4.499755794663781,
          -4.497330562965051,
          -1.580058363422686,
          -7,
          -7,
          -3.243026230988586,
          -7,
          -7,
          -7,
          -7,
          -3.8113202523041845,
          -3.898396045930009,
          -4.207715133805567,
          -4.021602716028243,
          -4.204757384698596,
          -7,
          -2.287333578528713,
          -4.029546100423748,
          -7,
          -7,
          -4.495350040967404,
          -4.207957342972937,
          -4.025073633178575,
          -7,
          -7,
          -4.499357113387459,
          -7,
          -7,
          -7,
          -7,
          -3.6516379303968227,
          -7,
          -3.5457330907430338,
          -7,
          -3.221957309667391,
          -4.525951341248012,
          -2.3489462973533097,
          -4.498351913199365,
          -4.207365037469072,
          -3.027454830703138,
          -3.603617939358176,
          -7,
          -3.7222910674738463,
          -7,
          -4.204160695855202,
          -3.926728200446934,
          -3.8077649673797778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.497827736083504,
          -7,
          -4.20710901924425,
          -7,
          -3.2453178149811928,
          -7,
          -7,
          -2.568532660960909,
          -2.5286807375109595,
          -2.2713556554038865,
          -7,
          -2.7568995976299173,
          -4.043401578910881,
          -2.6747161423005723,
          -1.7059554726320614,
          -2.4788898586149566,
          -7,
          -2.9580026583126315,
          -2.281986672793383,
          -2.46013723174059,
          -2.7163631071361705,
          -2.5773667285287103,
          -3.0755035123922543,
          -2.3736380105588673,
          -2.6639134136854725,
          -2.968164434068149,
          -2.8952950186616295,
          -3.269512944217916,
          -2.6548088037201225,
          -1.439853147684109,
          -2.285552541544157,
          -2.883205003706557,
          -2.993158177701961,
          -2.5681838490463007,
          -2.143460916864359,
          -4.035856484623753,
          -2.148734210507529,
          -2.6861162052190437,
          -2.3281705933368784,
          -2.602837406048462,
          -2.537553998479111,
          -2.937272906875669,
          -2.6179308015164584,
          -2.7058946115604905,
          -2.6885830844691663,
          -2.3910848271399927,
          -3.562876579157752,
          -3.906200314184372,
          -2.8992668191298856,
          -2.902062412283037,
          -3.41604582768641,
          -4.502153892871361,
          -2.9726450358936027,
          -4.204757384698596,
          -2.776760599965476,
          -3.247259956560877,
          -3.611324933588425,
          -3.309082392097567,
          -3.017770780394343,
          -3.327046250042698,
          -7,
          -3.004285539426262,
          -4.511883360978874,
          -4.196935743115919,
          -3.7554937284151193,
          -2.7255455311635712,
          -3.9204494466649153,
          -7,
          -2.7239025063511586,
          -2.208779157348013,
          -2.7606260839609345,
          -4.019946681678842,
          -3.615147495697204,
          -7,
          -2.4561351579216315,
          -4.252331078830706,
          -3.450571665931902,
          -3.590829455194586,
          -3.5867407023828584,
          -7,
          -3.949450998777855,
          -3.1228181332982032,
          -3.744458148811997,
          -3.1324331378141674,
          -3.647162832668712,
          -3.693111115462141,
          -2.9321194300820244,
          -4.051178257654162,
          -7,
          -2.9439644754792935,
          -2.410457246805854,
          -7,
          -2.1284278322668913,
          -7,
          -3.916256497088509,
          -3.9429005411402938,
          -2.467428389499807,
          -4.498324340697171,
          -7,
          -7,
          -7,
          -2.8249998911127463,
          -2.8542101251778975,
          -7,
          -3.8094519693064504,
          -4.198821977603206,
          -3.4102709642521845,
          -3.179370903847892,
          -3.729421293380923,
          -4.197528655522771,
          -4.019240950395851,
          -3.2266584788782136,
          -4.198395881990749,
          -2.916235045643907,
          -3.9036325160842376,
          -4.503627281356413,
          -4.042299807413626,
          -2.8467889696388013,
          -3.9128462051453377,
          -2.925879089301501,
          -3.3934267011372112,
          -3.4608158668890816,
          -2.868950945128882,
          -3.6020464194133406,
          -4.030410798533004,
          -7,
          -4.498434620204358,
          -7,
          -3.3473644589859757,
          -7,
          -7,
          -2.3752622911871337,
          -2.0509222543479053,
          -1.9422270456024011,
          -7,
          -3.7455041870869885,
          -4.199124114623325,
          -3.5110406808136645,
          -7,
          -7,
          -4.496805150920314,
          -3.5273849773654584,
          -4.4982967664443425,
          -3.5471180513494303,
          -3.0386077448439592,
          -7,
          -3.0945072711564916,
          -3.5487032689653533,
          -3.175551345592731,
          -7,
          -3.9034698285071703,
          -4.196259110505376,
          -4.206407565044267,
          -2.403412075058249,
          -4.1982583425666515,
          -7,
          -7,
          -3.462073403738634,
          -3.6196381767656955,
          -3.056305786810995,
          -4.201888500365973,
          -3.1908187119380673,
          -4.023238737632354,
          -2.3361535020288478,
          -4.501059262217751,
          -3.571760576653489,
          -4.198450885566405,
          -3.6563035907524855,
          -1.8469915299921025,
          -7,
          -2.7941513842532384,
          -3.804548308388056,
          -4.197308131503102,
          -4.022813140401051,
          -3.154278394368455,
          -7,
          -4.195346058348419,
          -3.7666606613741327,
          -3.725217185813792,
          -3.8033205235787544,
          -2.991333857417245,
          -3.90355117991359,
          -4.051898224988576,
          -3.660092651504926,
          -3.3850220555965733,
          -2.66421447824638,
          -3.436785272573282,
          -3.036668810300097,
          -7,
          -7,
          -2.11808822309481,
          -3.062854183849674,
          -4.497316744472857,
          -3.4381070451548847,
          -3.132647219307249,
          -3.46888415925913,
          -3.489504162507767,
          -2.9924668807264574,
          -3.361940210731115,
          -7,
          -4.203236924830023,
          -7,
          -7,
          -4.198986805670933,
          -3.5060041550265835,
          -1.6781215307589266,
          -7,
          -7,
          -7,
          -2.6282346582199416,
          -4.496334505996817,
          -4.500881123850455,
          -7,
          -4.196328202966489,
          -4.0240202005681205,
          -7,
          -4.197996897597136,
          -4.049657265126183,
          -3.822220400852558,
          -7,
          -7,
          -3.7263332048395883,
          -7,
          -7,
          -7,
          -7,
          -4.197308131503102,
          -4.4990681845107945,
          -3.7076796483033396,
          -2.9325752234982905,
          -3.3265662626752697,
          -7,
          -7,
          -3.2670151976815847,
          -7,
          -7,
          -2.942756266786523,
          -7,
          -7,
          -3.9106110664017573,
          -2.9279346817411795,
          -3.8065598154991136,
          -7,
          -7,
          -7,
          -7,
          -2.915588257481659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.87727917811011,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557711669173163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.069430221462924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0948901970066505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9474337218870508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.569373909615046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426560055756167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8129133566428557,
          -7,
          -7,
          -7,
          -4.669874502489803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9821354948037695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.979001748474721,
          -7,
          -7,
          -7,
          -0.8325089127062363,
          -7,
          -7,
          -7,
          -2.9355072658247128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.09770838058163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.845098040014257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.799586678381622,
          -7,
          -4.2567690438832475,
          -7,
          -7,
          -4.543608690196552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4022355820161305,
          -4.219060332448861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.570099078991958,
          -7,
          -7,
          -7,
          -4.046729222266487,
          -2.6242820958356683,
          -4.5416042026823655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.810568529216413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.502194887898237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.99943504987633,
          -7,
          -7,
          -3.031913164461711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.957607287060095,
          -4.331032303786008,
          -7,
          -3.2518814545525276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.984707294482673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080821226493627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.147336174036738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.877060201255311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557254491716343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3698252448806407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669521425079791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8480227595874315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.8325089127062363,
          -7,
          -7,
          -7,
          -7,
          -2.9159272116971158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.620441446490588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6439952055784817,
          -7,
          -4.733861444276489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7029558528042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.569654763999852,
          -7,
          -7,
          -7,
          -4.045244720478147,
          -2.906335041805091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0993352776859577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9791612522081605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941347423203868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.329499575762843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2425414282983844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.982994454658664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.08068419663977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1461590556048185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.578524605274993,
          -7,
          -2.624797578960761,
          -4.275201903149397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557747741641468,
          -2.3138672203691537,
          -7,
          -7,
          -7,
          -7,
          -1.9084850188786497,
          -7,
          -7,
          -7,
          -7,
          -4.334735147131833,
          -7,
          -7,
          -2.5237464668115646,
          -7,
          -7,
          -7,
          -2.1335389083702174,
          -7,
          -7,
          -3.1293675957229854,
          -3.6970548922725746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9614210940664483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2860071220794747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517736779044113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7737864449811935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.110589710299249,
          -1.3847117429382825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.205068964264459,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0043213737826426,
          -7,
          -7,
          -7,
          -7,
          -2.1398790864012365,
          -7,
          -4.0718083918331285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6748611407378116,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -7,
          -2.9070284317165918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2000292665537704,
          -7,
          -7,
          -7,
          -7,
          -3.493550987970057,
          -7,
          -7,
          -2.6580113966571126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.850033257689769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.751279103983342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.739572344450092,
          -7,
          -7,
          -2.494154594018443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.08278537031645,
          -2.2174839442139063,
          -2.250420002308894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1577588860468637,
          -7,
          -7,
          -7,
          -7,
          -2.3873898263387296,
          -3.377761438702263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9370161074648142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.089905111439398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.947139517642829,
          -7,
          -5.1318767907688745,
          -7,
          -3.0170333392987803,
          -4.543645953233247,
          -7,
          -7,
          -7,
          -7,
          -2.6026025204202563,
          -7,
          -2.965201701025912,
          -7,
          -7,
          -7,
          -2.7466341989375787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7507012003958686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.570134137138968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.541641638096808,
          -7,
          -7,
          -7,
          -7,
          -3.391552566610928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979348024963666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590507462008583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6348801407665263,
          -7,
          -4.153296449355305,
          -7,
          -7,
          -3.9046614579155245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.984842231405276,
          -7,
          -7,
          -7,
          -3.771954748963949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4149733479708178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639884741916304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.381833194383693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.286231854028553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.267101296559969,
          -7,
          -7,
          -7,
          -4.310608356458523,
          -3.0784568180532927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3711558562912662,
          -7,
          -7,
          -7,
          -3.895753942073728,
          -1.9311187105921872,
          -1.6349248811067227,
          -2.942008053022313,
          -3.616265405281708,
          -7,
          -7,
          -2.8392191755333216,
          -7,
          -7,
          -3.1981069988734014,
          -2.4600107006492493,
          -7,
          -7,
          -3.59955559098598,
          -7,
          -2.495224021995183,
          -7,
          -3.203739808633858,
          -3.311435968289161,
          -7,
          -3.310162065204453,
          -3.316808752053022,
          -7,
          -7,
          -7,
          -7,
          -3.1295287738587763,
          -7,
          -3.3649260337899753,
          -7,
          -3.0251009610468134,
          -7,
          -3.60151678365001,
          -3.6073477767684134,
          -7,
          -7,
          -7,
          -3.6073477767684134,
          -7,
          -2.7705083659594516,
          -7,
          -2.831763159702354,
          -3.399673721481038,
          -7,
          -7,
          -7,
          -3.3103746420476123,
          -3.3433101031623416,
          -7,
          -7,
          -7,
          -7,
          -3.1607685618611283,
          -7,
          -7,
          -7,
          -7,
          -3.7652959296980564,
          -2.946452265013073,
          -7,
          -7,
          -3.7063550077687095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6422666189026733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.787979711502274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.601951404133522,
          -7,
          -3.604334073102911,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.6128725059078792,
          -7,
          -7,
          -7,
          -7,
          -3.680335513414563,
          -7,
          -3.3740147402919116,
          -4.213198891723608,
          -7,
          -3.635282637998212,
          -3.1459211795267192,
          -1.8620778387246808,
          -7,
          -7,
          -3.6920533650340808,
          -7,
          -7,
          -3.311329952303793,
          -3.018284308426531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1539672216454786,
          -3.328243652746783,
          -7,
          -7,
          -7,
          -3.9999565683801928,
          -7,
          -7,
          -7,
          -7,
          -2.5984257066728684,
          -7,
          -7,
          -2.5619682391901555,
          -3.240965040063429,
          -7,
          -7,
          -7,
          -3.630122642859312,
          -3.2988530764097064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8705407076999516,
          -7,
          -7,
          -7,
          -3.6072405038317426,
          -7,
          -3.6080979463252794,
          -7,
          -3.1360860973840974,
          -7,
          -2.8937221420714265,
          -7,
          -7,
          -2.3664748411615104,
          -7,
          -7,
          -7,
          -7,
          -3.0549001914148866,
          -3.384263785722803,
          -3.6292056571023035,
          -3.6178387477170033,
          -3.0277572046905536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.198731369770289,
          -7,
          -2.6195676066178586,
          -3.607025878434786,
          -2.907411360774586,
          -7,
          -3.300704152596124,
          -2.8458212616333527,
          -7,
          -7,
          -7,
          -7,
          -3.622006673006805,
          -7,
          -7,
          -3.6011905326153335,
          -7,
          -7,
          -2.8300537573206825,
          -7,
          -7,
          -2.9492924014120256,
          -3.060697840353612,
          -7,
          -5.161014432494907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.623766000133931,
          -7,
          -3.307923703611882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.651116416049525,
          -7,
          -7,
          -7,
          -7,
          -3.608312042697327,
          -3.6097011023793995,
          -7,
          -3.6203442997544935,
          -2.643362936950399,
          -7,
          -7,
          -3.4256157245769305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.488046836084362,
          -7,
          -3.7685764423447066,
          -7,
          -7,
          -7,
          -7,
          -3.668012971641832,
          -2.89835945989891,
          -2.7168377232995247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.652922887567942,
          -3.6332664111554247,
          -7,
          -7,
          -7,
          -7,
          -3.3025473724874854,
          -7,
          -7,
          -2.577829588204494,
          -2.884512159190394,
          -7,
          -7,
          -2.8966639794199422,
          -7,
          -7,
          -3.277471685042826,
          -7,
          -7,
          -2.2315715255284156,
          -7,
          -2.5575072019056577,
          -2.5953960038761497,
          -7,
          -7,
          -3.675778341674085,
          -3.1400888398377713,
          -3.9969896179397217,
          -2.9028184680822537,
          -7,
          -7,
          -3.59955559098598,
          -7,
          -2.871961914059928,
          -7,
          -7,
          -3.15259407792747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3350565194390915,
          -3.608739919068788,
          -2.990646174872535,
          -7,
          -3.4344677170621885,
          -7,
          -3.3919050068671566,
          -2.2584136227948823,
          -1.8317677956630702,
          -3.597804842404293,
          -2.6372895476781744,
          -2.911370707116138,
          -2.590507462008583,
          -2.5084623812733606,
          -2.0415762803763062,
          -3.601734148260105,
          -3.1212314551496214,
          -7,
          -2.499785239355606,
          -7,
          -3.0159881053841304,
          -7,
          -2.991757539534348,
          -7,
          -2.307781195166992,
          -7,
          -7,
          -3.8107316409130148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9818186071706636,
          -3.315077761428482,
          -7,
          -7,
          -7,
          -4.6909841851064815,
          -7,
          -2.7294857138983044,
          -7,
          -4.450787792072898,
          -3.841949095456571,
          -7,
          -4.34609858337099,
          -7,
          -4.813267329389584,
          -4.049218022670182,
          -4.112068504268197,
          -7,
          -7,
          -4.1853154580036565,
          -4.504729051621258,
          -7,
          -3.890365121448124,
          -7,
          -7,
          -7,
          -3.5752802381801962,
          -3.30033456800233,
          -7,
          -7,
          -4.4169565453903425,
          -7,
          -4.111094410509336,
          -3.692582562274909,
          -3.7681728007939364,
          -3.263945453485738,
          -3.3617750393741854,
          -3.6504046698680317,
          -3.875928984922927,
          -7,
          -3.4112829130173843,
          -3.3906702126261803,
          -2.134765383294081,
          -2.0764299345734836,
          -3.098025336873187,
          -3.3432115901797474,
          -7,
          -3.1812717715594614,
          -7,
          -3.619927710291468,
          -7,
          -3.3266089162548815,
          -3.778295991088834,
          -3.651278013998144,
          -2.888625423907928,
          -3.3943247011763185,
          -4.484365334559296,
          -3.6133131614554594,
          -2.303350363509127,
          -3.1397741716810974,
          -3.3272226637602036,
          -7,
          -4.057318947932813,
          -2.396705419573164,
          -3.5792117802314993,
          -7,
          -2.9182400902214147,
          -3.6652369210441833,
          -2.646076820312336,
          -3.7237839369653294,
          -2.79896919886926,
          -3.256958152560932,
          -2.548329190632523,
          -3.206893307827949,
          -3.6231458746379395,
          -2.4505272220763104,
          -3.459640154554527,
          -7,
          -3.590479585986756,
          -7,
          -3.151982395457474,
          -3.1909476791001867,
          -3.5451833682154064,
          -7,
          -3.6118294794983736,
          -7,
          -1.7515870050823101,
          -7,
          -3.529654887137106,
          -2.5735045308749096,
          -2.7381637253943056,
          -7,
          -7,
          -2.35735333232053,
          -7,
          -7,
          -7,
          -2.5579080274827057,
          -3.630834517828051,
          -2.1170140037193885,
          -2.829303772831025,
          -3.660770643527697,
          -3.2833012287035497,
          -7,
          -2.3885210126055294,
          -1.9977548758799546,
          -7,
          -3.0500896140736904,
          -7,
          -3.3712526291249394,
          -1.9887772958912515,
          -1.2348502205820062,
          -3.3220124385824006,
          -3.0015173768235046,
          -3.244730562948387,
          -7,
          -7,
          -3.2657740008324536,
          -3.635419767747034,
          -3.9920377723523495,
          -7,
          -3.0853619436861295,
          -3.1586639808139894,
          -2.5631419252975927,
          -2.4127754437448354,
          -7,
          -3.3096301674258988,
          -2.9014583213961123,
          -2.0346917694735853,
          -3.0436569480416416,
          -2.210768061785912,
          -3.126888677692568,
          -3.4670158184384356,
          -7,
          -2.851105401197895,
          -3.5991185650553628,
          -7,
          -2.658859007527588,
          -7,
          -3.079422453763852,
          -7,
          -2.8314431588415765,
          -7,
          -7,
          -3.229767140261955,
          -3.664735968518705,
          -2.118147969798274,
          -7,
          -3.33665982345442,
          -2.508770502066406,
          -3.341335585180992,
          -2.6500992783512007,
          -7,
          -7,
          -7,
          -3.612359947967774,
          -2.322662226421373,
          -2.4820155764507117,
          -7,
          -2.855620095698912,
          -3.0443045191759146,
          -3.5994463757252757,
          -2.7031838661780445,
          -2.0498448336824775,
          -2.4811558708280352,
          -7,
          -2.252075943799801,
          -7,
          -2.2400767855157726,
          -2.414230329001037,
          -2.9591368311703743,
          -2.443210816819927,
          -2.563639269509036,
          -2.112474209640226,
          -7,
          -7,
          -4.35005409357903,
          -7,
          -3.3135508713335047,
          -7,
          -3.0431299728634627,
          -7,
          -2.3808594680117827,
          -3.2134798091189682,
          -1.3853156915992284,
          -3.0088130090520893,
          -3.3641756327706194,
          -2.7637487823121547,
          -7,
          -3.6351820486562674,
          -2.1678709288089903,
          -7,
          -3.604118006192035,
          -7,
          -7,
          -2.6284619145865564,
          -7,
          -7,
          -7,
          -3.6153186566114788,
          -3.643551368562945,
          -7,
          -3.6278776945799716,
          -3.8013350956745464,
          -1.928591626251906,
          -2.504859058705207,
          -7,
          -2.586399744970328,
          -7,
          -7,
          -7,
          -3.6267508536833932,
          -7,
          -3.62797998982998,
          -3.0791812460476247,
          -3.243719975783927,
          -3.5222485612876895,
          -3.6148972160331345,
          -7,
          -3.7790912038454993,
          -7,
          -3.2979792441593623,
          -3.180622801527713,
          -7,
          -7,
          -2.87456464300379,
          -3.3456350782317283,
          -2.9748799730069306,
          -7,
          -7,
          -3.6313422864839326,
          -7,
          -2.823948220466359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4221519325979415,
          -3.7096844540272005,
          -2.8756399370041685,
          -7,
          -7,
          -1.2235402589870163,
          -3.2091574233475386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5660530133297814,
          -3.1681044568157537,
          -7,
          -7,
          -3.3892232622307072,
          -7,
          -2.906335041805091,
          -7,
          -7,
          -7,
          -7,
          -3.866228247379647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9508514588885464,
          -7,
          -7,
          -7,
          -3.232859333958687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5943925503754266,
          -7,
          -7,
          -7,
          -7,
          -3.271609301378832,
          -7,
          -7,
          -7,
          -2.926856708949692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4483971034577676,
          -7,
          -7,
          -7,
          -7,
          -3.107718610520263,
          -3.0674428427763805,
          -7,
          -2.796921075330169,
          -3.387313538406589,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.0351437358812237,
          -3.030194785356751,
          -7,
          -2.01949214030342,
          -1.8738186460006043,
          -2.413299764081252,
          -7,
          -7,
          -7,
          -2.582063362911709,
          -2.1914510144648953,
          -2.021779774323242,
          -7,
          -2.2202715717543526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.095518042323151,
          -2.8819549713396007,
          -7,
          -7,
          -7,
          -4.080806804334363,
          -7,
          -7,
          -2.8920946026904804,
          -7,
          -1.7219283261448037,
          -7,
          -7,
          -1.9017306917292187,
          -7,
          -7,
          -7,
          -4.740954505822805,
          -7,
          -3.1760912590556813,
          -3.2203696324513946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6864575104691117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.121969981607635,
          -7,
          -1.3660182950222062,
          -2.401055725771844,
          -2.9222062774390163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.617245043616472,
          -7,
          -7,
          -7,
          -3.003029470553618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.778376381752652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.888010912245029,
          -7,
          -7,
          -3.277361630267923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2005769267548483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2821687783046416,
          -7,
          -7,
          -7,
          -3.3418300569205104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4432537813307675,
          -7,
          -7,
          -2.8698182079793284,
          -7,
          -7,
          -2.8603380065709936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1702617153949575,
          -3.3161800988934527,
          -7,
          -7,
          -7,
          -3.3912880485952974,
          -7,
          -3.4318460456987254,
          -7,
          -4.027499104398127,
          -7,
          -7,
          -7,
          -3.668012971641832,
          -7,
          -2.8739015978644615,
          -3.2940250940953226,
          -7,
          -7,
          -2.8698182079793284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1649685903213305,
          -7,
          -7,
          -3.191311257590993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.230193378869046,
          -7,
          -3.1702617153949575,
          -7,
          -3.4093809808881947,
          -3.1894903136993675,
          -2.8698182079793284,
          -7,
          -7,
          -1.4256972133625911,
          -7,
          -7,
          -7,
          -3.003029470553618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4998244958395794,
          -2.474653253362063,
          -4.203423275608664,
          -7,
          -7,
          -3.6481769831710005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.508798965403905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.959566046637928,
          -7,
          -7,
          -3.5614762013962973,
          -7,
          -7,
          -7,
          -7,
          -4.661140380936254,
          -4.806105323204325,
          -7,
          -7,
          -4.39750549689802,
          -4.657036720520181,
          -7,
          -7,
          -7,
          -4.626148674240376,
          -3.8998205024270964,
          -4.186546696952168,
          -4.091174360706882,
          -7,
          -4.630529571426824,
          -3.9808362964839756,
          -7,
          -3.667155679972336,
          -4.2354274364449696,
          -4.285827252753274,
          -4.249320676637634,
          -3.890700397698875,
          -3.8281441073037863,
          -7,
          -7,
          -7,
          -7,
          -3.9847522781154137,
          -2.7437709944998567,
          -3.6742179455767,
          -3.6154871183986583,
          -3.7742979384992776,
          -2.1231253958448315,
          -3.225309281725863,
          -3.1702617153949575,
          -2.3845573271208678,
          -3.5170638734826545,
          -3.329397879361043,
          -7,
          -3.456457134303779,
          -3.1427022457376155,
          -7,
          -3.1652443261253107,
          -3.285782273779395,
          -7,
          -3.2563568863955257,
          -7,
          -7,
          -7,
          -3.1079821158913807,
          -2.6358338724756276,
          -4.328842487609549,
          -7,
          -7,
          -7,
          -4.139742692322187,
          -7,
          -3.990363524302897,
          -3.3546845539547285,
          -7,
          -7,
          -7,
          -3.725135413175271,
          -3.6859655440604007,
          -7,
          -2.7900211284701975,
          -3.2979792441593623,
          -3.569958818096594,
          -2.803320523578754,
          -7,
          -3.2676409823459154,
          -4.092311181205276,
          -2.8867726430544383,
          -3.793261408387223,
          -7,
          -7,
          -7,
          -3.3334069668739175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2337996156757547,
          -7,
          -2.5245259366263757,
          -7,
          -7,
          -4.0124153747624325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.855165680690631,
          -2.8677620246502005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.044020099261835,
          -4.745543201998024,
          -7,
          -7,
          -3.0281644194244697,
          -7,
          -7,
          -7,
          -7,
          -2.8926510338773004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7264555202583103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8788806869206085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.752125307297898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.748866082541131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.767897616018091,
          -3.709439574132411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.981501488148247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6201360549737576,
          -7,
          -3.467371287647479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7618151176130694,
          -3.205745540942662,
          -2.919601023784111,
          -7,
          -2.7684530982706304,
          -3.0930713063760633,
          -7,
          -2.386320573894046,
          -7,
          -7,
          -7,
          -2.8549130223078554,
          -2.751086554886017,
          -7,
          -2.4974825373673704,
          -2.9311148982994553,
          -7,
          -7,
          -7,
          -2.99211148778695,
          -2.667452952889954,
          -7,
          -3.5662842540845943,
          -7,
          -2.919601023784111,
          -7,
          -7,
          -3.056142262059052,
          -7,
          -2.5189523997656127,
          -7,
          -3.3498600821923312,
          -2.932980821923198,
          -3.172622388412072,
          -7,
          -3.035829825252828,
          -3.028977705208778,
          -7,
          -2.949877704036875,
          -7,
          -2.3349561161368517,
          -7,
          -7,
          -2.7151673578484576,
          -2.7554937284151193,
          -7,
          -7,
          -2.792391689498254,
          -2.497390438017666,
          -7,
          -2.9434945159061026,
          -7,
          -7,
          -3.247236549506764,
          -7,
          -7,
          -7,
          -3.209055200331437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1555637545804265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -7,
          -2.394889257167419,
          -3.0696680969115957,
          -7,
          -2.924253434430462,
          -3.070037866607755,
          -2.9459607035775686,
          -2.910624404889201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1441069730493227,
          -7,
          -7,
          -7,
          -2.8218409272004545,
          -7,
          -7,
          -7,
          -7,
          -3.129689892199301,
          -2.936513742478893,
          -7,
          -7,
          -7,
          -3.0045005012266763,
          -7,
          -3.000434077479319,
          -2.9454685851318194,
          -3.0637085593914173,
          -3.2127201544178425,
          -7,
          -3.2946866242794433,
          -2.8884107740313127,
          -7,
          -7,
          -3.0187004986662433,
          -3.9635281171363457,
          -7,
          -7,
          -2.944729360303296,
          -2.7770641547424293,
          -7,
          -7,
          -3.0086001717619175,
          -7,
          -7,
          -2.6893976628212823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.208441356438567,
          -2.6723617865259754,
          -2.3550682063488506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5020172148271476,
          -7,
          -7,
          -2.461898521729004,
          -7,
          -3.7969557343208025,
          -7,
          -7,
          -2.961421094066448,
          -7,
          -7,
          -7,
          -3.179838928023187,
          -2.6035052322021435,
          -3.052693941924968,
          -7,
          -3.0989896394011773,
          -7,
          -7,
          -2.9129784850676734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.064083435963596,
          -7,
          -3.8937062930647133,
          -7,
          -7,
          -3.0324355992428838,
          -7,
          -7,
          -7,
          -3.1031192535457137,
          -3.1420764610732848,
          -7,
          -3.041392685158225,
          -2.693726948923647,
          -7,
          -2.9804578922761,
          -2.962369335670021,
          -7,
          -7,
          -7,
          -7,
          -3.1035105098621796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.024895960107485,
          -2.9180303367848803,
          -7,
          -7,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -2.911157608739977,
          -7,
          -7,
          -2.462896900288001,
          -7,
          -2.859138297294531,
          -3.5900612308037427,
          -4.4524488813344085,
          -7,
          -2.929418925714293,
          -2.9258275746247424,
          -3.1085650237328344,
          -7,
          -7,
          -2.7180862947830917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.315004172684897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0086001717619175,
          -7,
          -7,
          -2.9132839017604186,
          -7,
          -7,
          -3.0881360887005513,
          -2.7856461456452184,
          -3.04493154614916,
          -4.028882900306921,
          -2.9355072658247128,
          -2.9159272116971158,
          -2.9370161074648142,
          -2.89835945989891,
          -2.8739015978644615,
          -7,
          -2.53571596998551,
          -3.302114376956201,
          -7,
          -2.9258275746247424,
          -7,
          -2.979092900638326,
          -2.8251014115980033,
          -3.0569048513364727,
          -7,
          -3.0132586652835167,
          -7,
          -7,
          -7,
          -2.9894498176666917,
          -7,
          -3.0415242696106493,
          -7,
          -7,
          -7,
          -3.9147238574785934,
          -2.9894498176666917,
          -7,
          -3.02201573981772,
          -7,
          -2.921686475483602,
          -2.359076226059263,
          -7,
          -2.680335513414563,
          -3.0773679052841567,
          -2.7774268223893115,
          -7,
          -7,
          -7,
          -3.738380674663982,
          -2.9156636035057732,
          -7,
          -7,
          -7,
          -2.958324931644053,
          -2.6421346345582744,
          -7,
          -7,
          -3.04493154614916,
          -7,
          -7,
          -7,
          -3.0068937079479006,
          -2.3640817414110704,
          -2.9258275746247424,
          -7,
          -7,
          -3.1361314474057442,
          -2.6450009650490482,
          -3.9288373482799925,
          -7,
          -7,
          -3.2969940766702086,
          -2.9190780923760737,
          -7,
          -7,
          -7,
          -7,
          -3.2210228052048415,
          -2.261130643344097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7664128471123997,
          -7,
          -2.873320601815399,
          -7,
          -7,
          -7,
          -4.752232887721093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6241471761742603,
          -7,
          -7,
          -7,
          -4.662105900888295,
          -4.806797047853278,
          -3.9272163305912646,
          -7,
          -7,
          -4.658011396657113,
          -7,
          -7,
          -7,
          -5.1036327052097405,
          -7,
          -4.7893691535914815,
          -7,
          -7,
          -4.631565516754539,
          -7,
          -7,
          -4.408536744878563,
          -7,
          -4.588025069632833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5120169694961265,
          -3.2477278329097232,
          -3.73340364069255,
          -3.617629297757842,
          -3.4805099729419604,
          -2.6398183918310933,
          -3.597329464234929,
          -7,
          -3.319877289829984,
          -3.5237464668115646,
          -7,
          -7,
          -3.681512586638962,
          -3.2756951764686093,
          -7,
          -3.7752462597402365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6666864241923705,
          -3.6602825959861374,
          -7,
          -7,
          -3.402433346219312,
          -7,
          -4.617974836042385,
          -7,
          -3.831126207699967,
          -7,
          -7,
          -7,
          -3.7113009599161657,
          -7,
          -7,
          -7,
          -3.7032053706954864,
          -3.13268651460904,
          -4.175163774491954,
          -7,
          -7,
          -3.569990699550751,
          -4.570671341310066,
          -7,
          -4.63949645003697,
          -7,
          -7,
          -3.663795122219408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1710574719371976,
          -7,
          -2.7730546933642626,
          -7,
          -3.4761067168401913,
          -7,
          -7,
          -7,
          -7,
          -3.8228216453031045,
          -7,
          -4.333396889383647,
          -3.1983821300082944,
          -7,
          -7,
          -3.489606966267722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.103461622094705,
          -3.0178677189635055,
          -7,
          -7,
          -7,
          -2.940516484932567,
          -7,
          -3.7439113406021054,
          -4.144231618090547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9656719712201065,
          -3.2081725266671217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.929929560084588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1478617484872387,
          -7,
          -7,
          -7,
          -7,
          -3.7030978374585235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1855421548543754,
          -7,
          -3.124178055474675,
          -7,
          -7,
          -2.8243862023187742,
          -2.711526041280055,
          -3.775391971696612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6268123931797867,
          -7,
          -7,
          -4.29569901748951,
          -3.5037226064864795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.692347443107278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.501196242027089,
          -7,
          -2.6503075231319366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5864747785713966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292388998301932,
          -7,
          -7,
          -7,
          -3.5434471800817002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.62283547952152,
          -7,
          -7,
          -7,
          -7,
          -3.114610984232173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1917676303072247,
          -7,
          -7,
          -3.1152775913959014,
          -3.111598524880394,
          -2.5867480056844685,
          -7,
          -3.229169702539101,
          -7,
          -3.28668096935493,
          -7,
          -2.2373697070918968,
          -3.698448538015329,
          -7,
          -2.833784374656479,
          -1.7653912419080031,
          -7,
          -2.437750562820388,
          -7,
          -2.2029119304669567,
          -2.187520720836463,
          -7,
          -3.173500945013356,
          -1.7549214096651689,
          -7,
          -7,
          -2.6866362692622934,
          -3.2062860444124324,
          -7,
          -7,
          -7,
          -2.8296253533580495,
          -7,
          -3.181672122068266,
          -7,
          -2.8904210188009145,
          -2.885643871835764,
          -7,
          -7,
          -7,
          -2.8257505813480277,
          -7,
          -2.6554585929400747,
          -3.105510184769974,
          -2.445816416559962,
          -3.132579847659737,
          -2.5406422544096534,
          -2.8902346663063563,
          -7,
          -3.125481265700594,
          -3.129689892199301,
          -7,
          -2.934750874663579,
          -2.8717674683517753,
          -7,
          -7,
          -7,
          -2.9251646981563364,
          -7,
          -7,
          -7,
          -3.1075491297446862,
          -7,
          -2.236033147117636,
          -7,
          -7,
          -3.343580898698759,
          -7,
          -2.561101383649056,
          -7,
          -7,
          -7,
          -7,
          -3.1245042248342823,
          -7,
          -2.928907690243953,
          -3.172894697752176,
          -2.677606952720493,
          -3.1670217957902564,
          -1.5814528920040938,
          -7,
          -3.0274005783143263,
          -3.2161659022859928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1075491297446862,
          -7,
          -7,
          -7,
          -7,
          -2.6515202982342205,
          -7,
          -2.2098499890921364,
          -7,
          -3.1248301494138593,
          -2.41161970596323,
          -7,
          -7,
          -2.612518962242537,
          -7,
          -2.684258267110064,
          -7,
          -7,
          -3.130976691605617,
          -3.2116544005531824,
          -7,
          -7,
          -2.94507448847873,
          -3.3566631199368167,
          -3.127428777851599,
          -3.2121876044039577,
          -3.180125875164054,
          -3.364871360852042,
          -3.1344958558346736,
          -1.9650733570910066,
          -2.7456602257060756,
          -2.920905604164024,
          -7,
          -7,
          -2.4718781993072905,
          -7,
          -7,
          -3.4101020766428607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9230218541705404,
          -2.965906915495192,
          -2.9740509027928774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.926342446625655,
          -7,
          -2.5407464642438433,
          -7,
          -7,
          -2.524396122103842,
          -2.834085909892286,
          -7,
          -7,
          -7,
          -3.1983821300082944,
          -2.507855871695831,
          -7,
          -3.2973227142053023,
          -7,
          -3.2038484637462346,
          -3.1734776434529945,
          -2.7589118923979736,
          -7,
          -7,
          -2.722857464681718,
          -7,
          -7,
          -7,
          -3.1335389083702174,
          -7,
          -2.8344207036815328,
          -7,
          -2.665893545534433,
          -7,
          -3.91902576458736,
          -7,
          -3.3057811512549824,
          -2.4224256763712044,
          -7,
          -7,
          -2.741939077729199,
          -2.9385197251764916,
          -2.567966906823154,
          -2.856326019777088,
          -2.717670503002262,
          -7,
          -3.1992064791616577,
          -7,
          -7,
          -3.395675785269936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8092903011763157,
          -3.1078880251827985,
          -7,
          -7,
          -7,
          -3.1082266563749283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1152775913959014,
          -7,
          -7,
          -2.535610545908793,
          -7,
          -2.6503075231319366,
          -3.2477278329097232,
          -2.0450927670230357,
          -7,
          -4.249748522900275,
          -2.807873132003332,
          -3.12057393120585,
          -2.8165726960261033,
          -2.543074235033532,
          -7,
          -7,
          -3.1809855807867304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1658376246901283,
          -3.255071396286606,
          -7,
          -3.1051694279993316,
          -7,
          -7,
          -3.1367205671564067,
          -7,
          -7,
          -2.8698182079793284,
          -2.8587376566001557,
          -3.1280760126687155,
          -3.5482665451707454,
          -2.3392857748989755,
          -7,
          -7,
          -7,
          -3.1806992012960347,
          -2.927626962444954,
          -2.661011336773302,
          -3.1983821300082944,
          -3.6091006121488234,
          -7,
          -7,
          -7,
          -2.7168377232995247,
          -3.2940250940953226,
          -2.53571596998551,
          -7,
          -3.3935752032695876,
          -7,
          -7,
          -7,
          -7,
          -2.6539357353944397,
          -2.358478734963716,
          -7,
          -7,
          -2.6925531793391446,
          -7,
          -3.1231980750319988,
          -7,
          -2.353467413965482,
          -2.191381141649701,
          -2.582744965691277,
          -3.2062860444124324,
          -7,
          -3.577115624428775,
          -3.1601682929585118,
          -7,
          -3.1325158349126387,
          -3.1152775913959014,
          -7,
          -1.6343092970463176,
          -7,
          -2.900913067737669,
          -2.919862253555538,
          -2.576149311961716,
          -2.582915199370299,
          -7,
          -7,
          -3.7593106494104322,
          -1.5308289376514321,
          -3.118264726089479,
          -7,
          -7,
          -2.65915528094063,
          -1.7323937598229684,
          -7,
          -7,
          -1.9336559786575473,
          -3.110589710299249,
          -7,
          -7,
          -3.1720188094245563,
          -2.8447877188278463,
          -2.8165726960261033,
          -2.7366620446156418,
          -7,
          -3.0988599540923243,
          -3.55303301620244,
          -4.092347357161475,
          -7,
          -2.393867559040913,
          -3.1598438024418076,
          -1.5182981413731227,
          -7,
          -3.22219604630172,
          -3.1451964061141817,
          -3.3027637084729817,
          -2.3455466988249936,
          -1.5819346385669724,
          -7,
          -7,
          -7,
          -2.4656306657101514,
          -7,
          -2.688419822002711,
          -7,
          -2.500079576528447,
          -2.6570558528571038,
          -2.1722982700385423,
          -7,
          -7,
          -3.6749631476629787,
          -7,
          -7,
          -7,
          -3.9685607721330167,
          -7,
          -3.3071393278464214,
          -3.513084360465144,
          -3.3102211247655564,
          -7,
          -4.073828284401109,
          -4.587318014514068,
          -4.666527340248891,
          -4.809970248652032,
          -3.9351880613401717,
          -7,
          -4.407339907995509,
          -4.6624745037503095,
          -7,
          -7,
          -7,
          -4.804200788288911,
          -3.930031614950973,
          -3.3943956392128856,
          -4.110858956731867,
          -7,
          -4.335257256434532,
          -4.466585904594887,
          -7,
          -3.634183274561929,
          -3.948559662108962,
          -3.8942052591420837,
          -4.263091379851672,
          -7,
          -7,
          -7,
          -4.091103944090286,
          -4.369790824030776,
          -3.8056027932561345,
          -7,
          -7,
          -3.6295681544737826,
          -2.9105012648245125,
          -2.8588712445685736,
          -3.2511513431753545,
          -7,
          -3.3121773564397787,
          -3.1756567472816637,
          -3.854427505787861,
          -3.4324882557705063,
          -4.108192805135042,
          -2.7562556487542333,
          -2.832366963209335,
          -7,
          -3.330819466495837,
          -7,
          -7,
          -3.6214878645806303,
          -3.73814608871206,
          -7,
          -7,
          -3.0727827856185654,
          -3.4793728345396158,
          -4.874600667081689,
          -7,
          -2.629700778786374,
          -7,
          -3.719631625379967,
          -7,
          -7,
          -7,
          -4.09684052033139,
          -7,
          -3.448087666692341,
          -4.049024097915049,
          -7,
          -7,
          -2.837667336315827,
          -3.657629431388952,
          -2.95724097214691,
          -2.97231857308512,
          -7,
          -2.5931805404783503,
          -4.275069372441866,
          -7,
          -4.16699223083011,
          -7,
          -7,
          -3.705949194910296,
          -7,
          -3.1772478362556233,
          -7,
          -7,
          -7,
          -7,
          -3.5585885831081994,
          -7,
          -2.1160996371702,
          -7,
          -2.8394780473741985,
          -3.2573585347059146,
          -7,
          -2.481442628502305,
          -7,
          -3.250053869521799,
          -7,
          -3.8609067095817995,
          -2.6108730003800518,
          -7,
          -7,
          -7,
          -7,
          -3.5803546611065915,
          -7,
          -3.256958152560932,
          -3.61394747678035,
          -7,
          -7,
          -2.9387698227831174,
          -2.272421826371504,
          -7,
          -3.5944478006117335,
          -7,
          -7,
          -7,
          -3.2362561929560214,
          -4.050951735479182,
          -7,
          -3.230959555748569,
          -2.433769833924866,
          -7,
          -2.5667320289862197,
          -7,
          -3.144262773761991,
          -2.9656719712201065,
          -7,
          -3.240798771117331,
          -3.7024305364455254,
          -2.823474229170301,
          -2.7431532888962975,
          -7,
          -3,
          -7,
          -7,
          -3.1556396337597765,
          -3.3372595397502756,
          -7,
          -7,
          -2.8419848045901137,
          -3.1562461903973444,
          -7,
          -3.096678327496078,
          -7,
          -7,
          -3.457503426573305,
          -3.219060332448861,
          -2.9506511583497743,
          -2.929674317948588,
          -7,
          -7,
          -7,
          -7,
          -3.1486026548060932,
          -3.7939998009844706,
          -7,
          -2.876506504265881,
          -3.210853365314893,
          -7,
          -7,
          -2.8334658601706924,
          -2.3592316365035417,
          -2.7965743332104296,
          -2.7774268223893115,
          -3.3249680031620703,
          -3.0088130090520893,
          -2.802203410722948,
          -2.8269382114979367,
          -3.507180977260241,
          -7,
          -7,
          -3.130655349022031,
          -7,
          -7,
          -3.8173008783933216,
          -7,
          -2.854002233126989,
          -7,
          -3.733297598821213,
          -7,
          -3.5293875730556277,
          -3.828702851333031,
          -3.358379073147656,
          -2.8444771757456815,
          -7,
          -3.1420764610732848,
          -7,
          -2.510813010512496,
          -3.017450729510536,
          -7,
          -2.822494985278751,
          -7,
          -7,
          -3.1412216625781246,
          -2.8318697742805017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.259952059922254,
          -7,
          -1.971422347131096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4565178578052627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7004873811595234,
          -7,
          -7,
          -7,
          -7,
          -3.30941722577814,
          -7,
          -7,
          -7,
          -7,
          -3.668944734457734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1152775913959014,
          -4.367775101747835,
          -7,
          -7,
          -7,
          -2.929674317948588,
          -3.7297315952870354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1765253365349997,
          -2.993083360698062,
          -7,
          -2.9962927185413215,
          -3.158948212402123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6679896519391977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4220971631317103,
          -7,
          -2.95820062484609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.00774777800074,
          -7,
          -7,
          -3.355834495884936,
          -7,
          -3.103803720955957,
          -7,
          -7,
          -3.2195845262142546,
          -7,
          -7,
          -7,
          -7,
          -3.0691869251519095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2460059040760294,
          -3.203527358754229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.040385381112445,
          -3.1986570869544226,
          -3.1099158630237933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9014583213961123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.660549282517093,
          -7,
          -2.765668554759014,
          -3.103461622094705,
          -7,
          -7,
          -7,
          -4.0987129305788805,
          -7,
          -7,
          -7,
          -7,
          -3.3089910290001643,
          -7,
          -7,
          -3.4338338136659807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3025473724874854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4073484078239042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.918180171004722,
          -7,
          -2.869349080759093,
          -7,
          -7,
          -3.5589484459780394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4126285205443754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.185825359612962,
          -7,
          -2.9188163903603797,
          -7,
          -7,
          -3.2177789568624706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6881972780665557,
          -3.0775949873713713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0195316845312554,
          -2.875928984922927,
          -7,
          -7,
          -7,
          -3.1212314551496214,
          -7,
          -7,
          -3.094471128641645,
          -7,
          -3.9685296443748395,
          -7,
          -3.5005109105263372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8303411630372226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2389238459924155,
          -3.4112829130173843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8678356276470556,
          -7,
          -4.21045229296202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.302114376956201,
          -3.3935752032695876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2415464805965484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.714801107435411,
          -3.140193678578631,
          -7,
          -2.8725447293769673,
          -7,
          -7,
          -7,
          -7,
          -3.36679638328673,
          -7,
          -3.042181594515766,
          -7,
          -2.5974757898703773,
          -7,
          -3.5829203569251127,
          -3.3126004392612596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.698622429702098,
          -7,
          -3.5423928634933244,
          -7,
          -3.3384564936046046,
          -3.4781334281005174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.229937685907934,
          -7,
          -7,
          -3.110589710299249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.114260605446002,
          -7,
          -7,
          -7,
          -4.2855348061200305,
          -7,
          -4.809532780808976,
          -7,
          -3.4555626483622643,
          -4.406233511374323,
          -4.66185999172781,
          -7,
          -7,
          -7,
          -2.6215087658759972,
          -7,
          -4.491172524399044,
          -7,
          -7,
          -4.635654616118119,
          -7,
          -7,
          -4.235848158468363,
          -7,
          -4.592543142904612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.006979190574277,
          -3.3372595397502756,
          -3.9811274432111134,
          -4.325166609792962,
          -7,
          -3.2350231594952237,
          -3.6119002460753435,
          -7,
          -2.9865659734610817,
          -3.004628404182071,
          -7,
          -7,
          -3.5685537120494426,
          -3.3057095504829292,
          -7,
          -3.803798407989674,
          -7,
          -7,
          -2.6127838567197355,
          -3.611431202502372,
          -7,
          -7,
          -3.7711463488149852,
          -3.507126940370548,
          -2.5157571700194685,
          -7,
          -7,
          -7,
          -4.321142565229448,
          -7,
          -4.345089336334675,
          -7,
          -7,
          -7,
          -7,
          -3.267953536862395,
          -7,
          -7,
          -3.25927524755698,
          -2.8722534194843883,
          -3.8856721269011203,
          -3.089905111439398,
          -7,
          -3.5742733523184973,
          -3.973243342094437,
          -7,
          -4.166351161976156,
          -7,
          -3.4667193716815987,
          -3.0977777345392834,
          -7,
          -7,
          -3.1264561134318045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0333031013725735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.638509224058013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.560743301054712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1354506993455136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.385924282316242,
          -3.2143138974243994,
          -7,
          -7,
          -7,
          -7,
          -3.1280760126687155,
          -7,
          -7,
          -7,
          -3.1931245983544616,
          -7,
          -7,
          -7,
          -3.3984608496082234,
          -3.2593549273080344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.831613855309099,
          -7,
          -7,
          -7,
          -7,
          -3.1942367487238292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.88024177589548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576064788225377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3929606147967957,
          -7,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4218506150229584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040127441781456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2005769267548483,
          -4.093841766912128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6662370958958044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.769488101355888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426316028957644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.88930170250631,
          -7,
          -7,
          -7,
          -7,
          -3.766375662773843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.909983694939844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.848047409150086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6796549786993333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.796567395543485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.368286884902131,
          -5.432857096997329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.720159303405957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3475251599986895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.395291438384484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.240174695019277,
          -7,
          -7,
          -7,
          -7,
          -3.6898414091375047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.134044986160437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.100198171834132,
          -7,
          -4.126196367920531,
          -7,
          -2.9429995933660407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.928907690243953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.850033257689769,
          -7,
          -3.41791434273266,
          -7,
          -7,
          -7,
          -4.400025397957946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03322264667025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.217659381292399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024608796126557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.215743282637605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040272604708435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.307923703611882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.621176281775035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7931265661185423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.926856708949692,
          -2.7007037171450192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.406028944963615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.665580991017953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0709977969934235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4264055213720175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.715306800611545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.848081300014507,
          -1.7781512503836436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8494194137968996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8698182079793284,
          -2.9258275746247424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097642484061715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.569876978316741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5411422337216347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.502108338302493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6326597132939136,
          -3.521007252408604,
          -7,
          -3.4034637013453173,
          -7,
          -7,
          -7,
          -2.948412965778601,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.16345955176999,
          -7,
          -4.0327396052094935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2151085810530935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.03342375548695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9542425094393248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3738311450738303,
          -7,
          -7,
          -4.250102705064626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.187238619831479,
          -7,
          -7,
          -7,
          -7,
          -3.669307580798836,
          -7,
          -7,
          -2.3085644135612386,
          -7,
          -7,
          -7,
          -7,
          -2.3201462861110542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.330413773349191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6652682113991735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9606293081007256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6201360549737576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9947569445876283,
          -7,
          -3.999021736456061,
          -3.721645766289746,
          -7,
          -7,
          -7,
          -7,
          -3.2935098730581442,
          -3.1631613749770184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.241795431295199,
          -7,
          -4.609722437865238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9978230807457253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.255272505103306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3816673037420495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0569048513364727,
          -3.5822906827189938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357868173870295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.912753303671323,
          -7,
          -3.9012948171655673,
          -7,
          -2.2576785748691846,
          -7,
          -3.9234685360935613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5378190950732744,
          -7,
          -7,
          -1.9319661147281728,
          -7,
          -7,
          -7,
          -4.035429738184548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3873898263387296,
          -7,
          -3.005008820672367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1492191126553797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3654879848909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.218640521413849,
          -7,
          -2.5378190950732744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.217839130778947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6394864892685859,
          -7,
          -7,
          -7,
          -7,
          -2.5434471800817002,
          -2.3364597338485296,
          -7,
          -2.2422100322640643,
          -7,
          -3.759592308645975,
          -7,
          -7,
          -2.3710678622717363,
          -2.2278867046136734,
          -7,
          -7,
          -2.8180938691466357,
          -7,
          -7,
          -7,
          -2.598790506763115,
          -7,
          -7,
          -7,
          -2.568983532526376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9708116108725178,
          -2.05307844348342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.597768293321006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6830470382388496,
          -7,
          -2.7846172926328756,
          -2.187520720836463,
          -7,
          -3.4727970660562555,
          -1.4382031886892928,
          -7,
          -7,
          -2.385606273598312,
          -2.002166061756508,
          -7,
          -7,
          -2.6198756085000428,
          -7,
          -7,
          -7,
          -7,
          -2.818160816145953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.900913067737669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9344984512435677,
          -7,
          -2.05307844348342,
          -2.5118833609788744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2671717284030137,
          -7,
          -2.1958996524092336,
          -7,
          -2.2380461031287955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.424881636631067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7052933977148914,
          -7,
          -7,
          -7,
          -3.2826221128780624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.979092900638326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.2511165453321484,
          -1.6334684555795866,
          -7,
          -7,
          -1.8536982117761742,
          -7,
          -7,
          -7,
          -7,
          -2.821513528404773,
          -7,
          -7,
          -2.015639134307175,
          -4.30583484408832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.796986925047644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2922560713564764,
          -7,
          -7,
          -7,
          -7,
          -5.4330510138807,
          -7,
          -2.7505083948513462,
          -4.544737582325772,
          -7,
          -7,
          -2.741151598851785,
          -7,
          -7,
          -7,
          -3.004751155591001,
          -7,
          -7,
          -7,
          -2.8102325179950842,
          -1.7283537820212285,
          -7,
          -1.7634279935629373,
          -7,
          -7,
          -2.8926510338773004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.704064679408567,
          -4.221440320811741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3479151865016914,
          -4.093993363295885,
          -2.6576858792288287,
          -2.499525364321282,
          -7,
          -7,
          -7,
          -7,
          -2.66500337566178,
          -7,
          -7,
          -7,
          -3.7004441010277516,
          -7,
          -7,
          -7,
          -2.5599066250361124,
          -7,
          -7,
          -7,
          -7,
          -2.77232170672292,
          -7,
          -7,
          -7,
          -2.9724342769573653,
          -7,
          -4.133985746268579,
          -7,
          -7,
          -2.644219691034826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.553731361029655,
          -7,
          -2.113943352306837,
          -4.002544014335011,
          -4.563053700270299,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.456366033129043,
          -7,
          -7,
          -7,
          -3.9887372752888,
          -2.525044807036845,
          -7,
          -7,
          -3.3703280077795106,
          -3.6876627068858356,
          -7,
          -2.6085260335771943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1280760126687155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.59659709562646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163598630910796,
          -7,
          -7,
          -7,
          -2.0119931146592567,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7315887651867388,
          -3.93492748380264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -7,
          -7,
          -7,
          -2.994537104298498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.269162565431745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4065401804339555,
          -7,
          -7,
          -7,
          -1.9807606420143298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1598678470925665,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -2.756636108245848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2819324789996647,
          -7,
          -7,
          -7,
          -7,
          -3.3709754493589705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9667672920577095,
          -7,
          -7,
          -7,
          -3.1804871588298704,
          -7,
          -7,
          -7,
          -2.5556988947189017,
          -7,
          -7,
          -4.262356151598692,
          -7,
          -7,
          -7,
          -7,
          -2.9429995933660407,
          -7,
          -1.6434526764861874,
          -2.7371926427047373,
          -2.818005830532529,
          -7,
          -3.3023702901274774,
          -2.444044795918076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7993405494535817,
          -7,
          -2.454925054724259,
          -2.7965743332104296,
          -2.8221680793680175,
          -3.204933522354145,
          -7,
          -7,
          -2.7902851640332416,
          -2.346352974450639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4422053085873574,
          -7,
          -7,
          -7,
          -7,
          -3.381295623003826,
          -3.0038911662369103,
          -7,
          -7,
          -4.228656958108935,
          -2.4616485680634552,
          -2.011630850368626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2837533833325265,
          -2.5774917998372255,
          -1.9841521129041246,
          -7,
          -2.658488381309017,
          -7,
          -3.678687433531933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.9289177202554291,
          -2.4409090820652177,
          -7,
          -7,
          -2.7795964912578244,
          -1.9481683617271317,
          -7,
          -7,
          -1.835446654338076,
          -7,
          -3.375773316604984,
          -7,
          -7,
          -2.79309160017658,
          -2.3478177127089124,
          -7,
          -7,
          -2.416996924659806,
          -7,
          -2.482873583608754,
          -7,
          -7,
          -7,
          -7,
          -3.127428777851599,
          -2.328088228398017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7113009599161657,
          -7,
          -7,
          -3.044539760392411,
          -7,
          -7,
          -7,
          -7,
          -1.7928584219256614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9741218253833677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9978230807457256,
          -2.3629848397370954,
          -7,
          -2.838130320707927,
          -1.916829798406272,
          -7,
          -7,
          -2.496237545166735,
          -7,
          -2.197969367916172,
          -7,
          -1.888006588777431,
          -7,
          -7,
          -7,
          -7,
          -1.9318626317634804,
          -7,
          -7,
          -1.8095597146352678,
          -2.7011360660925265,
          -2.749736315569061,
          -3.1547282074401557,
          -2.9237619608287004,
          -7,
          -2.929929560084588,
          -2.8419848045901137,
          -2.514547752660286,
          -3.244524511570084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3979400086720375,
          -7,
          -7,
          -7,
          -2.798650645445269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7520484478194387,
          -2.75815462196739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.714329759745233,
          -3.074450718954591,
          -7,
          -5.150642863909234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7732987475892317,
          -3.702085721435825,
          -7,
          -7,
          -7,
          -2.294466226161593,
          -2.1993437186893927,
          -1.6840162914303594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.018423082826786,
          -7,
          -7,
          -7,
          -3.362293937964231,
          -7,
          -3.7200765727681406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.652922887567942,
          -7,
          -2.8251014115980033,
          -2.6539357353944397,
          -3.2415464805965484,
          -7,
          -7,
          -1.9606293081007256,
          -1.2511165453321484,
          -7,
          -1.6974344889524329,
          -2.7315887651867388,
          -2.886490725172482,
          -2.5734518220354854,
          -7,
          -7,
          -2.5520595341878844,
          -7,
          -2.223293990490537,
          -3.0755469613925306,
          -2.9429995933660407,
          -2.5434471800817002,
          -3.610819800835439,
          -7,
          -2.7535830588929064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2203696324513946,
          -7,
          -7,
          -7,
          -3.1209028176145273,
          -7,
          -4.622224387866044,
          -2.2935203938852355,
          -7,
          -7,
          -7,
          -3.1925674533365456,
          -2.242624237809914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.255754786643044,
          -7,
          -7,
          -7,
          -4.5885518064856425,
          -7,
          -1.9403992822650356,
          -3.8504256629406837,
          -7,
          -7,
          -2.4927603890268375,
          -7,
          -2.3246253644997976,
          -3.1855421548543754,
          -2.666829861704301,
          -7,
          -7,
          -7,
          -2.409087369447835,
          -1.7265049308598654,
          -2.8674674878590514,
          -2.1889284837608534,
          -2.570834706424214,
          -2.500373714353374,
          -2.087491016941548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9268738405440184,
          -4.435159270818,
          -7,
          -7,
          -7,
          -4.659631011607001,
          -4.202924027637802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.625603941040815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.58508831746747,
          -7,
          -4.187323269375047,
          -3.817763632280368,
          -7,
          -7,
          -7,
          -4.395169074827421,
          -7,
          -2.219526313697325,
          -3.575430335305532,
          -2.2381319193582705,
          -1.8703114792547921,
          -7,
          -7,
          -7,
          -3.769241895684789,
          -2.4826694498884723,
          -2.389609016051986,
          -7,
          -4.1508178199016665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.384235177015444,
          -3.83525560640304,
          -4.872476774544123,
          -2.534026106056135,
          -2.5749952958303357,
          -2.859738566197147,
          -3.573631005995515,
          -7,
          -4.943899931943058,
          -2.596996722507111,
          -4.070665753453728,
          -2.81888541459401,
          -7,
          -4.019697730980192,
          -3.6823933026828906,
          -7,
          -7,
          -3.5814945422908995,
          -3.0876927048111944,
          -7,
          -2.412740466538526,
          -3.2659428694809183,
          -4.090446171178625,
          -3.1411360901207392,
          -4.335838869579954,
          -7,
          -7,
          -3.3372595397502756,
          -4.026247181477774,
          -7,
          -2.8273692730538253,
          -7,
          -7,
          -7,
          -3.5283166683311595,
          -2.2522460504731185,
          -3.182414652434554,
          -7,
          -3.436480695009495,
          -3.704536575469313,
          -7,
          -2.59659709562646,
          -7,
          -7,
          -7,
          -4.330758636678257,
          -2.8182258936139557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0318122713303706,
          -3.227629649571009,
          -7,
          -7,
          -7,
          -2.8926510338773004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.212700441984192,
          -7,
          -7,
          -7,
          -2.255272505103306,
          -7,
          -2.8750612633917,
          -7,
          -2.821513528404773,
          -3.1715802019320636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.749736315569061,
          -3.356599435724971,
          -7,
          -7,
          -2.5428254269591797,
          -2.857633985150008,
          -7,
          -7,
          -2.82020145948564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9661417327390325,
          -3.605208046467365,
          -2.382917135087531,
          -3.4566696294237573,
          -2.9339931638312424,
          -7,
          -3.9419584165308135,
          -2.8305886686851442,
          -7,
          -7,
          -7,
          -2.649334858712142,
          -7,
          -7,
          -2.499687082618404,
          -2.5563025007672873,
          -3.0610753236297916,
          -7,
          -3.2717641852898542,
          -7,
          -3.4891143693789193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.845098040014257,
          -7,
          -7,
          -7,
          -7,
          -3.9888486871264353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.250420002308894,
          -2.8296253533580495,
          -7,
          -7,
          -2.8305886686851442,
          -2.437750562820388,
          -3.3163897510731957,
          -2.798650645445269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3508938095043144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3971575742021414,
          -7,
          -7,
          -7,
          -7,
          -2.9361785093615893,
          -7,
          -7,
          -3.985493836151524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9614210940664483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8824486388840995,
          -7,
          -7,
          -7,
          -7,
          -3.3521825181113627,
          -7,
          -7,
          -7,
          -3.002166061756508,
          -7,
          -3.911370707116138,
          -3.6089536992758626,
          -7,
          -7,
          -3.322173335214124,
          -7,
          -7,
          -7,
          -2.717670503002262,
          -2.673941998634088,
          -7,
          -4.0838727351483755,
          -7,
          -7,
          -7,
          -7,
          -2.8312296938670634,
          -7,
          -7,
          -7,
          -2.948412965778601,
          -7,
          -3.385665843515682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6344772701607315,
          -7,
          -2.764840064462161,
          -7,
          -2.667452952889954,
          -3.1473671077937864,
          -7,
          -2.304275050477128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.922439985497939,
          -7,
          -2.7259116322950483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.747411807886423,
          -7,
          -7,
          -2.8536982117761744,
          -7,
          -3.67609236517432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.236033147117636,
          -7,
          -2.5809249756756194,
          -7,
          -7,
          -2.6464037262230695,
          -7,
          -7,
          -1.761551988564182,
          -7,
          -3.5904331219738412,
          -7,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -2.60422605308447,
          -2.6372394877989302,
          -7,
          -7,
          -7,
          -7,
          -4.136014661495803,
          -7,
          -3.0576661039098294,
          -2.813247300897605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.694166295933198,
          -7,
          -7,
          -7,
          -7,
          -3.8048887446223913,
          -7,
          -2.575187844927661,
          -2.0969100130080562,
          -7,
          -2.7641761323903307,
          -7,
          -7,
          -7,
          -3.4795393214049737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8739015978644615,
          -1.972467329545524,
          -7,
          -1.7092699609758308,
          -2.3935752032695876,
          -7,
          -3.331532567271932,
          -7,
          -7,
          -7,
          -1.5713911715615105,
          -2.591064607026499,
          -2.6414741105040997,
          -7,
          -2.968015713993642,
          -7,
          -7,
          -7,
          -7,
          -2.7214308130498446,
          -7,
          -7,
          -2.2576785748691846,
          -7,
          -2.967079734144497,
          -7,
          -7,
          -2.724275869600789,
          -2.81424759573192,
          -7,
          -7,
          -2.5885518064856425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6334684555795866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.550228353055094,
          -2.6522463410033232,
          -7,
          -2.6180480967120925,
          -2.6216954623292787,
          -2.6928469192772297,
          -7,
          -7,
          -7,
          -2.287801729930226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.651278013998144,
          -7,
          -7,
          -2.5705429398818973,
          -7,
          -2.53655844257153,
          -7,
          -2.0228406108765276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -7,
          -7,
          -7,
          -2.1872642729507104,
          -7,
          -7,
          -7,
          -3.3230457354817013,
          -7,
          -7,
          -1.7180862947830915,
          -4.499783276438258,
          -7,
          -7,
          -7,
          -3.6332664111554247,
          -7,
          -3.0569048513364727,
          -2.358478734963716,
          -7,
          -7,
          -7,
          -7,
          -1.6334684555795866,
          -1.6974344889524329,
          -7,
          -7,
          -7,
          -2.2616593037647066,
          -7,
          -7,
          -2.7126497016272113,
          -2.6374897295125104,
          -2.5488498823731596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8394780473741985,
          -2.6434526764861874,
          -7,
          -7,
          -3.127428777851599,
          -2.7831886910752575,
          -2.4456042032735974,
          -7,
          -4.621536312932009,
          -2.2933625547114453,
          -7,
          -7,
          -2.251638220448212,
          -2.831549851995756,
          -2.9344984512435675,
          -7,
          -2.3222192947339195,
          -2.812244696800369,
          -2.5563025007672873,
          -2.5440680443502757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.655183271160184,
          -7,
          -2.8172347304254983,
          -4.547048223472135,
          -2.7781512503836434,
          -7,
          -7,
          -7,
          -7,
          -3.4577305482459986,
          -7,
          -7,
          -2.546542663478131,
          -7,
          -2.9206450014067875,
          -2.3064250275506875,
          -2.0253058652647704,
          -2.6283889300503116,
          -1.8712981525680923,
          -2.3364597338485296,
          -2.800717078282385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.734615835313205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.391675953237296,
          -7,
          -2.6384892569546374,
          -4.096168183884541,
          -2.9443539096403843,
          -2.901302604477304,
          -7,
          -7,
          -7,
          -4.2440048280914535,
          -2.3127413753267194,
          -7,
          -7,
          -3.8435753430507633,
          -3.415140352195873,
          -7,
          -7,
          -7,
          -2.740362689494244,
          -7,
          -7,
          -7,
          -7,
          -3.1524221292928356,
          -4.202402030831502,
          -7,
          -2.6875289612146345,
          -2.3575113516164294,
          -7,
          -4.135969677314899,
          -7,
          -4.942915400414438,
          -3.6201360549737576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.68436653636779,
          -3.451632947456991,
          -7,
          -3.4924810101288766,
          -7,
          -7,
          -3.789671348585748,
          -7,
          -7,
          -3.6181527333785195,
          -7,
          -7,
          -2.6748611407378116,
          -7,
          -7,
          -7,
          -3.695875515031685,
          -2.0119931146592567,
          -2.2725046516758276,
          -7,
          -7,
          -7,
          -7,
          -1.8595885767354927,
          -7,
          -3.490520309363349,
          -7,
          -3.930735140659794,
          -2.747023177451628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8512583487190755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.341563112106319,
          -7,
          -7,
          -7,
          -1.6570558528571038,
          -7,
          -2.4385423487861106,
          -7,
          -2.1856365769619117,
          -2.965044831065058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0948203803548,
          -7,
          -7,
          -2.361727836017593,
          -1.9146956688935866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8609366207000937,
          -3.382499724125919,
          -2.888179493918325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6384892569546374,
          -2.5358213684769635,
          -2.9786369483844743,
          -7,
          -3.7335182514344876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.316410710725809,
          -7,
          -7,
          -4.2854672904600575,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -2.1405080430381798,
          -3.0622058088197126,
          -7,
          -2.603144372620182,
          -2.376576957056512,
          -7,
          -3.8547613566936363,
          -2.6334684555795866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2440295890300215,
          -1.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7611758131557314,
          -7,
          -3.680698029697635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.282078054577154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.82020145948564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.574031267727719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669298280832415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7315887651867388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3412366232386925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7200765727681406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.08059762918686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5801263254115825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.057542491129928,
          -7,
          -7,
          -7,
          -3.315655525231531,
          -3.1652443261253107,
          -7,
          -7,
          -7,
          -2.101354224998816,
          -7,
          -3.604388073038561,
          -7,
          -7,
          -7,
          -3.975081244262648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.559739096233808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.383496207794542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1122697684172707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.032256025890453,
          -7,
          -7,
          -7,
          -7,
          -3.0203612826477078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.478566495593843,
          -7,
          -7,
          -7,
          -7,
          -2.82020145948564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5654673821665757,
          -2.782472624166286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.86844850133673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8915374576725643,
          -7,
          -7,
          -7,
          -7,
          -4.063633545230784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5282737771670436,
          -3.7996506490611184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5352941200427703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.12434117077496,
          -3.4369573306694496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8135809885681917,
          -7,
          -7,
          -7,
          -2.482873583608754,
          -7,
          -2.9630609744865137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7481880270062007,
          -2.655138434811382,
          -2.8369567370595505,
          -2.5888317255942073,
          -7,
          -3.95074607416863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3961993470957363,
          -7,
          -3.495090843570958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.734799829588847,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -3.0166677935099506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1496962663578945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.530199698203082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9222062774390165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.397070549959409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6938148538894167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0132586652835167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.886490725172482,
          -7,
          -7,
          -7,
          -2.3434085938038574,
          -7,
          -7,
          -7,
          -7,
          -3.4371160930480786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.424881636631067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.098231729314952,
          -3.0334237554869494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6540802353065707,
          -7,
          -5.132142772994083,
          -7,
          -3.0813473078041325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4742162640762553,
          -7,
          -7,
          -3.074450718954591,
          -7,
          -2.90687353472207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9632209865229884,
          -7,
          -7,
          -4.304684365974386,
          -7,
          -7,
          -7,
          -3.0056094453602804,
          -3.698460961159398,
          -2.7849737099544005,
          -3.22219604630172,
          -7,
          -4.14126159062209,
          -7,
          -7,
          -7,
          -2.8639173769578603,
          -2.34143452457814,
          -7,
          -7,
          -7,
          -7,
          -4.0539615073145,
          -4.201906688806218,
          -5.172614605635793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.942375186846578,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.158332331708981,
          -7,
          -7,
          -3.8272507737711705,
          -4.563979170379509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0842186867392387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0043213737826426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7781512503836434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7902851640332416,
          -4.60429446888234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1525329484345255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.90449915539782,
          -3.595055089759304,
          -7,
          -7,
          -3.974971994298069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.714269869449075,
          -7,
          -7,
          -7,
          -2.606381365110605,
          -2.740362689494244,
          -7,
          -7,
          -7,
          -3.2174839442139063,
          -7,
          -4.33767884895367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0100454126360985,
          -7,
          -2.5276299008713385,
          -3.1058506743851435,
          -7,
          -7,
          -2.462397997898956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2278867046136734,
          -7,
          -7,
          -4.2201865679032755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4512745975370516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8808135922807914,
          -7,
          -7,
          -7,
          -7,
          -3.460634782014431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.259952059922254,
          -7,
          -3.0060379549973173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7960884286806684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.077186154085896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.635986111800833,
          -7,
          -1.6949425150529753,
          -2.56702636615906,
          -7,
          -3.950592004332609,
          -7,
          -7,
          -7,
          -2.4800069429571505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9713871920233976,
          -7,
          -7,
          -7,
          -7,
          -2.9025467793139916,
          -7,
          -2.709269960975831,
          -2.60422605308447,
          -2.7193312869837265,
          -2.2624510897304293,
          -7,
          -2.853393977450666,
          -7,
          -7,
          -7,
          -7,
          -2.367355921026019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3404441148401185,
          -7,
          -3.988870966064645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3263358609287517,
          -7,
          -7,
          -7,
          -3.2000292665537704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6921416093667836,
          -2.414137362184477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6925531793391446,
          -7,
          -7,
          -7,
          -7,
          -1.8536982117761742,
          -2.5734518220354854,
          -2.2616593037647066,
          -7,
          -2.3434085938038574,
          -7,
          -1.7387805584843692,
          -7,
          -7,
          -7,
          -2.3162930011046736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -7,
          -4.496147490722734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.1878523699414716,
          -7,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.132112337499659,
          -7,
          -2.595863489908268,
          -4.244413203163297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4379090355394983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9622114391106,
          -2.6127838567197355,
          -7,
          -2.4631461367263494,
          -2.184691430817599,
          -2.0959947450572747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.733590440675243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3496875548360436,
          -3.7372721765355434,
          -7,
          -7,
          -7,
          -7,
          -2.020971553022808,
          -7,
          -7,
          -7,
          -3.228057990154014,
          -7,
          -7,
          -7,
          -1.4515671502472742,
          -7,
          -7,
          -7,
          -7,
          -3.4001156732959967,
          -7,
          -7,
          -2.5550944485783194,
          -2.9858753573083936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277150613963797,
          -7,
          -3.6494322232416168,
          -7,
          -3.2542458751053367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.934548947666147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8286598965353198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5141048209728325,
          -7,
          -2.059752694209299,
          -7,
          -3.7826159320316033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.641345191182597,
          -7,
          -7,
          -7,
          -1.9100142263808144,
          -7,
          -7,
          -7,
          -2.526339277389844,
          -3.4222614508136027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2706788361447066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.002101236846782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7535830588929064,
          -7,
          -7,
          -2.4871383754771865,
          -3.3024391640698574,
          -7,
          -2.8709888137605755,
          -3.7231271587956916,
          -7,
          -7,
          -7,
          -3.4291060083326967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.282576800709218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45408227073109,
          -3.0111473607757975,
          -7,
          -7,
          -2.5440680443502757,
          -7,
          -7,
          -2.4800069429571505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.061954844073114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.668944734457734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.27916484306227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9763499790032735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5578078557646045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1784013415337555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.697490887171057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7774268223893115,
          -7,
          -7,
          -7,
          -7,
          -2.790988475088816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071992407124176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1598678470925665,
          -2.7209857441537393,
          -1.4873404199013485,
          -7,
          -4.125562586641175,
          -7,
          -7,
          -7,
          -7,
          -2.079181246047625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.192790397120652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2041199826559246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1189257528257768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7387805584843692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.325310371711061,
          -7,
          -5.09773612349375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.693140460675295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7505083948513462,
          -7,
          -7,
          -1.8836614351536176,
          -3.0111473607757975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3910822009174537,
          -2.699837725867246,
          -4.065542370519139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7355988996981797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.644832328825636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153448988600982,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.287689783936075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.509202522331103,
          -7,
          -7,
          -7,
          -4.627027712771981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658011396657113,
          -7,
          -7,
          -7,
          -7,
          -3.625312450961674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.621176281775035,
          -3.877152415493926,
          -7,
          -7,
          -7,
          -2.380211241711606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.033524274983268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.110589710299249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3979400086720375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.688419822002711,
          -7,
          -7,
          -7,
          -2.6354837468149124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7686381012476144,
          -7,
          -7,
          -7,
          -7,
          -2.782472624166286,
          -1.271066772286538,
          -1.24551266781415,
          -2.6364878963533656,
          -7,
          -3.755989128658785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.735878227256237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.444044795918076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.662757831681574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9557774090066586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.555671015714629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0613267969905547,
          -7,
          -7,
          -0.5070844780971057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9242792860618816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.484299839346786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9819544444699737,
          -7,
          -7,
          -7,
          -7,
          -1.4771212547196626,
          -2.2329961103921536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1556396337597765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6783362467321803,
          -7,
          -4.495891079666188,
          -7,
          -7,
          -2.089905111439398,
          -3.3025473724874854,
          -7,
          -7,
          -3.1231980750319988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1073795828044486,
          -7,
          -7,
          -2.342422680822206,
          -4.304813543394108,
          -7,
          -7,
          -3.7466341989375787,
          -7,
          -7,
          -2.611723308007342,
          -7,
          -7,
          -2.656098202012832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -7,
          -7,
          -7,
          -5.432898772392294,
          -7,
          -3.0141003215196207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4127964287165433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0511525224473814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.391517306849448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.10108688458908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4236553925733784,
          -7,
          -7,
          -7,
          -7,
          -3.472610197596045,
          -3.1746411926604483,
          -7,
          -4.135800283302111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.172109399766667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6341748717626,
          -7,
          -3.4538685055562,
          -7,
          -7,
          -4.126477751880373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.683407299132095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.848650886818957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03769535853163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.934585012945061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8779469516291882,
          -2.630653834698125,
          -2.121887985103681,
          -7,
          -2.806010294559223,
          -7,
          -7,
          -7,
          -3.1151110355043476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.266936911159173,
          -7,
          -7,
          -7,
          -3.6113196194600805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1573560154410694,
          -7,
          -7,
          -7,
          -7,
          -3.846120529546089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8139239429018104,
          -7,
          -7,
          -7,
          -7,
          -2.9375178920173464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.902546779313991,
          -7,
          -7,
          -7,
          -4.099726668821858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.559080321020141,
          -2.5010592622177517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7066324508732946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4712917110589387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1760912590556813,
          -2.59659709562646,
          -2.432434774521513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5575072019056577,
          -7,
          -7,
          -2.741151598851785,
          -7,
          -3.760460180960834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.736818638473778,
          -7,
          -7,
          -2.7547304690237535,
          -2.7596678446896306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.428134794028789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.075875295259833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.477693393952372,
          -7,
          -7,
          -7,
          -2.424881636631067,
          -7,
          -7,
          -7,
          -2.927883410330707,
          -7,
          -7,
          -7,
          -7,
          -3.1139804699071245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.307496037913213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0860037056183818,
          -3.190051417759206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2114765203615074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9894498176666917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5520595341878844,
          -2.7126497016272113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7280289544205183,
          -2.9175055095525466,
          -7,
          -7,
          -4.306081745657977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.797066624507168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7371926427047373,
          -7,
          -7,
          -7,
          -4.9559602010555945,
          -7,
          -7,
          -4.545022442756734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4321672694425884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0538464268522527,
          -7,
          -2.7715874808812555,
          -7,
          -7,
          -4.317018101048111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7333016116877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9035782936630543,
          -4.800455873318712,
          -7,
          -4.78494520733039,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.57142930306149,
          -4.3034984457923136,
          -7,
          -7,
          -7,
          -7,
          -3.7647488339659567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7517985605323645,
          -4.979853275304856,
          -4.871418219767973,
          -7,
          -3.279210512601395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8555797225017177,
          -7,
          -7,
          -4.127752515832973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.640987983975901,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604096393587492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5997739391463885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.330413773349191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.181195472458439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4207256768599095,
          -7,
          -7,
          -2.3364597338485296,
          -3.0843686801856824,
          -7,
          -2.305351369446624,
          -7,
          -7,
          -7,
          -2.4771212547196626,
          -7,
          -2.3710678622717363,
          -7,
          -7,
          -7,
          -7,
          -2.0413926851582254,
          -7,
          -7,
          -7,
          -7,
          -4.33531745944485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7805573201495222,
          -7,
          -2.7439450604267974,
          -2.2576785748691846,
          -2.3404441148401185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.217088951479171,
          -7,
          -7,
          -7,
          -2.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -2.416640507338281,
          -7,
          -7,
          -7,
          -2.367355921026019,
          -7,
          -4.217062605852551,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7944880466591697,
          -7,
          -7,
          -7,
          -1.8893017025063104,
          -1.554880913632493,
          -7,
          -7,
          -2.6711728427150834,
          -7,
          -4.058463985602251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.271841606536499,
          -7,
          -3.024074987307426,
          -7,
          -7,
          -7,
          -2.496929648073215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0293837776852097,
          -7,
          -7,
          -3.402777069610347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4705942260050717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.095169351431755,
          -7,
          -3.3657808883706317,
          -2.161368002234975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2079035303860515,
          -7,
          -7,
          -7,
          -7,
          -2.913255991700841,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6085260335771943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0113589537066106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149274550965593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9822712330395684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1190758459608126,
          -7,
          -7,
          -7,
          -7,
          -2.108057373783854,
          -3.3803921600570273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.353467413965482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6374897295125104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9370161074648142,
          -2.8721562727482928,
          -7,
          -7,
          -4.606252347587676,
          -7,
          -7,
          -3.749427099121749,
          -7,
          -7,
          -2.3453737305590883,
          -2.287801729930226,
          -2.7831886910752575,
          -1.2661924845114636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6725596277632757,
          -7,
          -7,
          -7,
          -3.0464951643347082,
          -1.9344984512435677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4913616938342726,
          -7,
          -7,
          -2.3636119798921444,
          -7,
          -3.948559662108962,
          -7,
          -5.131923269288103,
          -7,
          -2.550228353055094,
          -4.544005997849434,
          -2.678518379040114,
          -7,
          -7,
          -7,
          -2.06871581236946,
          -3.1174370252826193,
          -2.9786369483844743,
          -7,
          -7,
          -7,
          -1.6028348255779234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8423751816787837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8294404736513274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784360490921301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.956696564894651,
          -7,
          -4.269419537511049,
          -3.398330697921948,
          -3.426592582305156,
          -7,
          -4.047975405279086,
          -7,
          -4.542003347503985,
          -3.7764105888073423,
          -7,
          -7,
          -4.136942412775367,
          -3.3941013020400446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.330007700872759,
          -7,
          -3.147695642960966,
          -3.979398121064359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.640655318711145,
          -3.116164812300795,
          -7,
          -7,
          -3.6471872978959894,
          -7,
          -4.274434970074042,
          -7,
          -2.9380190974762104,
          -3.5276299008713385,
          -2.6471383660631504,
          -7,
          -7,
          -4.001906704040885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.68497993618928,
          -7,
          -2.730378468587643,
          -7,
          -7,
          -3.031183964643677,
          -7,
          -7,
          -7,
          -3.074523887934952,
          -7,
          -4.326223175572686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.524071415934022,
          -7,
          -7,
          -7,
          -4.33912336048452,
          -7,
          -7,
          -7,
          -2.057856208741888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1986570869544226,
          -3.693111115462141,
          -7,
          -3.261976191397813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.334453751150931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8255415103705555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4115074706655637,
          -2.8488047010518036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4194600727860704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.709036634671606,
          -7,
          -3.953227971559854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5460797451732575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7188337183038622,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1142772965615864,
          -2.963833215283299,
          -7,
          -7,
          -7,
          -3.1075491297446862,
          -2.520418023353549,
          -3.4163075870598827,
          -7,
          -7,
          -7,
          -7,
          -2.5058703771963513,
          -2.4694011879588946,
          -2.446640706109038,
          -2.611590557133038,
          -2.3369330363913186,
          -3.1024337056813365,
          -3.1157768761589635,
          -7,
          -2.8262368226549173,
          -3.1197506238845842,
          -2.830107278114626,
          -2.97245120664604,
          -2.944811558558846,
          -3.404149249209695,
          -7,
          -2.195248291984317,
          -2.4970832990501948,
          -7,
          -2.9535986331436197,
          -7,
          -3.5958267770732233,
          -3.4085791254086675,
          -3.1017832395359197,
          -3.1007150865730817,
          -2.842765208181785,
          -3.443106456737266,
          -7,
          -7,
          -7,
          -3.4109458586877746,
          -7,
          -2.2335037603411343,
          -2.673596818209052,
          -2.192769056392809,
          -7,
          -7,
          -2.852601969338235,
          -7,
          -3.4099331233312946,
          -3.1107580088798876,
          -3.119585774961784,
          -2.624134702492355,
          -3.540579716504454,
          -3.4191293077419758,
          -7,
          -7,
          -3.211887757793364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6266336114657944,
          -7,
          -7,
          -3.3729580063049203,
          -7,
          -2.651116416049525,
          -7,
          -7,
          -7,
          -7,
          -2.4063698354692677,
          -3.1005428500124648,
          -2.1394292733295357,
          -2.7349597612724454,
          -1.5552838836565568,
          -7,
          -2.376728994335118,
          -7,
          -3.0038665700721023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.65263306808311,
          -7,
          -7,
          -7,
          -2.332149796241367,
          -7,
          -7,
          -7,
          -3.4095950193968156,
          -2.2497018038950065,
          -7,
          -7,
          -2.8564267724702446,
          -7,
          -2.708515322242249,
          -7,
          -3.130976691605617,
          -3.4127964287165433,
          -3.1554878621412814,
          -3.2220658425885866,
          -7,
          -2.709038563501977,
          -3.172223341427753,
          -7,
          -7,
          -7,
          -3.499442685041947,
          -2.8115750058705933,
          -3.041787318971752,
          -1.906437663375016,
          -7,
          -7,
          -3.4224256763712044,
          -2.530039530588542,
          -7,
          -7,
          -2.9467922511424818,
          -7,
          -7,
          -7,
          -3.09968064110925,
          -3.4000196350651586,
          -2.9479236198317262,
          -2.9146075677710805,
          -3.222282827095675,
          -3.4877038631637265,
          -7,
          -7,
          -2.710625015060797,
          -7,
          -2.6864873087113894,
          -7,
          -3.2210228052048415,
          -7,
          -7,
          -7,
          -2.169952718952251,
          -7,
          -7,
          -7,
          -3.449324093098727,
          -7,
          -7,
          -2.357934847000454,
          -2.861385040442465,
          -2.605458969404072,
          -3.1341771075767664,
          -2.468790262099611,
          -3.123851640967086,
          -7,
          -2.132160282103326,
          -3.4075608494863623,
          -3.4034637013453173,
          -7,
          -7,
          -3.4073909044707316,
          -2.635651266385708,
          -7,
          -1.0909969190427458,
          -7,
          -3.9792751475910233,
          -7,
          -3.512817758564873,
          -1.246372417574952,
          -3.4139699717480614,
          -2.258876629372131,
          -2.2012453527019566,
          -2.0508554673866186,
          -1.834536299764702,
          -2.5284024379536176,
          -2.8449429071382,
          -7,
          -2.8468008542794783,
          -3.425044874551389,
          -2.7183355789085066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.745465168670727,
          -7,
          -2.651278013998144,
          -2.8107364373885813,
          -3.414137362184477,
          -7,
          -3.4058583993176366,
          -3.4415380387021606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3991543339582164,
          -3.4032921451582543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6308635491781667,
          -2.5937013287080988,
          -3.4466924663715273,
          -3.7585515963427407,
          -7,
          -3.4073909044707316,
          -3.406199423663313,
          -2.775391971696612,
          -7,
          -7,
          -7,
          -3.4101020766428607,
          -2.8140810398403664,
          -7,
          -3.400192488592576,
          -3.1029479680053735,
          -2.5573353062050552,
          -7,
          -7,
          -7,
          -2.8754230247469814,
          -7,
          -7,
          -7,
          -3.40840957846843,
          -2.9380190974762104,
          -2.638156336676239,
          -7,
          -2.3516997004052667,
          -3.532244643626582,
          -2.808210972924222,
          -3.6784273224338673,
          -1.9254266961927287,
          -7,
          -3.402089350572097,
          -7,
          -3.6303261548039467,
          -2.766710207262259,
          -2.625856945055025,
          -2.331660850966761,
          -3.2728468287897403,
          -7,
          -7,
          -7,
          -2.577829588204494,
          -7,
          -3.0415242696106493,
          -2.191381141649701,
          -7,
          -7,
          -7,
          -7,
          -2.821513528404773,
          -2.223293990490537,
          -2.5488498823731596,
          -7,
          -3.4371160930480786,
          -2.3162930011046736,
          -7,
          -3.1073795828044486,
          -2.7280289544205183,
          -2.9370161074648142,
          -7,
          -2.094541001456839,
          -3.152441238058955,
          -7,
          -2.958401207070927,
          -7,
          -7,
          -3.6034150454129286,
          -7,
          -3.404833716619938,
          -2.9780282664601656,
          -3.1144441724452543,
          -2.105874984860221,
          -2.2820931765145813,
          -2.588582917519855,
          -3.442793225939769,
          -3.0391496280096777,
          -7,
          -3.5617996475103078,
          -2.620656479819621,
          -7,
          -7,
          -3.1007150865730817,
          -7,
          -2.1742052269401473,
          -7,
          -2.8097280132159064,
          -2.846337112129805,
          -7,
          -3.400537989391946,
          -7,
          -7,
          -2.8178957571617955,
          -3.406199423663313,
          -2.455910240382743,
          -7,
          -3.450557009418329,
          -7,
          -3.8238923221840366,
          -7,
          -1.7794418738651383,
          -3.0280830070178384,
          -2.5709319183959467,
          -7,
          -2.762678563727436,
          -2.9425041061680806,
          -1.8765752054416793,
          -2.4686947660162097,
          -2.524396122103842,
          -2.8024316264307236,
          -3.4008832155483626,
          -3.398981066658131,
          -2.6972293427597176,
          -3.4102709642521845,
          -7,
          -3.1119342763326814,
          -2.5369370227046737,
          -2.7148325124333326,
          -1.537086602941622,
          -7,
          -7,
          -3.386171858184651,
          -4.464094419087544,
          -4.3198968588148885,
          -3.163608563431052,
          -4.163489358192699,
          -7,
          -3.864748335629659,
          -3.4819996714322374,
          -3.5752956351447946,
          -7,
          -3.6396192807332817,
          -4.299921130330193,
          -4.3768870566640485,
          -4.517156294823795,
          -3.3183202379468297,
          -7,
          -4.126780577012009,
          -3.3949030681890893,
          -3.785756799962643,
          -4.030569364813529,
          -7,
          -4.331241660919753,
          -3.3865435520177014,
          -3.624948671355888,
          -3.6732974397596356,
          -7,
          -4.34747638204818,
          -4.007349420982268,
          -7,
          -3.4930888401537827,
          -4.278822168352688,
          -3.9076800242424197,
          -4.291413254570215,
          -3.7623033632877685,
          -3.630275285757692,
          -3.991070942816438,
          -7,
          -3.914907038697517,
          -3.386531392526096,
          -3.75815462196739,
          -2.9380190974762104,
          -3.1347375088987737,
          -2.5779783607363376,
          -1.8317026370805913,
          -3.479719235439571,
          -4.132867788319085,
          -7,
          -2.8374364459801273,
          -2.1939117917581363,
          -2.8958643512472992,
          -3.0334237554869494,
          -2.9759991429882495,
          -3.1679668133956205,
          -7,
          -3.8845121591903937,
          -7,
          -3.1324197980976147,
          -7,
          -3.468470412312344,
          -7,
          -7,
          -2.4962287772975196,
          -3.007205282237773,
          -4.137751045204818,
          -2.945796726048,
          -2.321494866739587,
          -3.429752280002408,
          -3.011389172854374,
          -7,
          -4.175308824585785,
          -2.846405845924663,
          -3.359297812956692,
          -7,
          -7,
          -4.094471128641644,
          -3.1220724554718475,
          -3.283188116453424,
          -3.528402437953617,
          -3.2845811128217504,
          -2.789293385338263,
          -3.0958664534785427,
          -3.4387005329007363,
          -2.9656617533678844,
          -3.0095179873019924,
          -7,
          -3.479795976082418,
          -7,
          -7,
          -3.4992745818922173,
          -3.2544790209024517,
          -7,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -2.7589839445726563,
          -2.9514994179522764,
          -2.5863372070651294,
          -7,
          -2.8257042442466873,
          -3.1790847884927227,
          -2.9320930828571,
          -2.740362689494244,
          -7,
          -3.143275090631622,
          -7,
          -3.3498988914039116,
          -3.0387525889920166,
          -7,
          -7,
          -2.9927743642553555,
          -7,
          -3.2249644667161625,
          -7,
          -3.4831592097169795,
          -2.57978359661681,
          -7,
          -3.533772058384718,
          -2.870403905279027,
          -3.438858659420562,
          -7,
          -3.055187138555754,
          -7,
          -7,
          -4.502071891206661,
          -2.5437837891976143,
          -3.613093956327272,
          -7,
          -3.66661156841903,
          -2.9807606420143298,
          -7,
          -3.433929765608464,
          -7,
          -7,
          -2.9144313118912653,
          -7,
          -7,
          -3.797613730153076,
          -7,
          -3.388574805196408,
          -2.8873359303991672,
          -2.848086434763257,
          -7,
          -7,
          -3.4258601450778405,
          -2.929801957767847,
          -4.376595204340475,
          -7,
          -7,
          -3.426185825244511,
          -3.7806053058389697,
          -3.1629127378362583,
          -7,
          -7,
          -3.5422027824340283,
          -3.461048091670658,
          -2.809449842484887,
          -3.166726055580052,
          -7,
          -3.4510184521554574,
          -7,
          -7,
          -7,
          -3.8726223790252883,
          -7,
          -3.438067450453494,
          -7,
          -7,
          -7,
          -7,
          -2.0683959195407784,
          -2.7141900028713306,
          -3.1809855807867304,
          -2.975718945367262,
          -7,
          -3.2258259914618934,
          -7,
          -3.4072775708370235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3663399300342265,
          -7,
          -3.1245042248342823,
          -3.619823500457278,
          -3.2799709653992704,
          -3.083263668252353,
          -3.7554174628109362,
          -3.4282765647938374,
          -3.606596309179285,
          -3.119420863442087,
          -7,
          -7,
          -7,
          -2.9792447784093805,
          -3.219715475855501,
          -3.716086853774832,
          -7,
          -3.4220971631317103,
          -7,
          -2.985716980907719,
          -3.11277252110537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6880636969463443,
          -7,
          -3.1829849670035815,
          -2.9443181355003873,
          -7,
          -7,
          -7,
          -3.401745082237063,
          -7,
          -7,
          -7,
          -2.938582263081691,
          -7,
          -7,
          -7,
          -7,
          -2.8798601462734688,
          -7,
          -7,
          -3.4252284439018794,
          -7,
          -7,
          -3.5801263254115825,
          -7,
          -7,
          -7,
          -7,
          -3.149834696715785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5494654330043325,
          -7,
          -7,
          -7,
          -3.0562376589802276,
          -2.400401640330525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7219651042692194,
          -3.640978057358332,
          -7,
          -3.1556396337597765,
          -2.8419962702029213,
          -7,
          -2.88024177589548,
          -7,
          -2.441433275830611,
          -2.591621038213319,
          -7,
          -3.719497016610582,
          -2.8987251815894934,
          -7,
          -7,
          -2.623766000133931,
          -2.9951962915971793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.045283851395136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.286231854028553,
          -3.0457922327295592,
          -2.8680563618230415,
          -2.8898617212581885,
          -7,
          -7,
          -7,
          -2.5605044151950564,
          -7,
          -2.741151598851785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.049605612594973,
          -7,
          -7,
          -3.754297359188641,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0338256939533106,
          -7,
          -1.6965311199696071,
          -7,
          -2.228314791865588,
          -7,
          -4.048221622337202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.593286067020457,
          -7,
          -7,
          -7,
          -7,
          -3.0788191830988487,
          -7,
          -7,
          -3.0111473607757975,
          -7,
          -3.036991623589965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5792117802314993,
          -4.114977744785308,
          -7,
          -7,
          -7,
          -3.7862149248791837,
          -7,
          -3.1622656142980214,
          -3.2079035303860515,
          -7,
          -7,
          -7,
          -2.637989780784685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1879435290625273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.727947709544797,
          -7,
          -2.564961804462294,
          -7,
          -7,
          -2.1565491513317814,
          -3.189279712637177,
          -7,
          -7,
          -7,
          -2.9822712330395684,
          -7,
          -7,
          -3.13481437032046,
          -7,
          -7,
          -7,
          -3.044147620878723,
          -7,
          -7,
          -3.300587433274399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8587376566001557,
          -7,
          -3.885361220031512,
          -7,
          -3.1470576710283598,
          -2.765355755262699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.583765368285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8139144200486035,
          -7,
          -3.1119342763326814,
          -7,
          -7,
          -7,
          -2.360467183515849,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6351485136976085,
          -7,
          -4.150931350113742,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6349808000512285,
          -3.1908917169221698,
          -7,
          -7,
          -3.3062105081677613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.126699483839912,
          -7,
          -3.8049567998574916,
          -7,
          -7,
          -7,
          -2.884512159190394,
          -7,
          -7,
          -2.582744965691277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0755469613925306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9175055095525466,
          -2.8721562727482928,
          -2.094541001456839,
          -7,
          -7,
          -7,
          -3.356567590116751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3961993470957363,
          -7,
          -3.2487087356009177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145448488330583,
          -2.474798818800631,
          -7,
          -7,
          -7,
          -7,
          -1.945620065594431,
          -7,
          -7,
          -2.680335513414563,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.707144188342445,
          -7,
          -2.8276461582923424,
          -7,
          -4.053563391020801,
          -7,
          -2.7329295951554746,
          -3.509226968278699,
          -2.478566495593843,
          -7,
          -7,
          -7,
          -2.538762188781348,
          -2.899546931090867,
          -2.877083256650651,
          -7,
          -7,
          -7,
          -3.058426024457005,
          -7,
          -7,
          -7,
          -2.6023313405913373,
          -7,
          -2.9763499790032735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9287883153242555,
          -3.65774087263201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9246582666341787,
          -7,
          -7,
          -4.6565868677950935,
          -7,
          -4.613514128230588,
          -7,
          -4.802085832832881,
          -3.596102047718113,
          -4.487272745488699,
          -7,
          -7,
          -7,
          -3.980124623621081,
          -3.294466226161593,
          -4.708318901195369,
          -7,
          -4.285298455375746,
          -7,
          -4.190471770573345,
          -3.8251014115980033,
          -4.248978095892654,
          -4.068742292932981,
          -7,
          -4.397122766597578,
          -3.681512586638962,
          -7,
          -4.576928460302419,
          -3.711448682718111,
          -2.991964044403458,
          -7,
          -7,
          -7,
          -3.344404555595206,
          -3.337725413884801,
          -3.3197304943302246,
          -3.785614524946824,
          -4.154241330167298,
          -3.2641091563058082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.198684573077143,
          -7,
          -7,
          -3.5176859234556574,
          -3.583851425939607,
          -4.696705780933917,
          -7,
          -7,
          -7,
          -3.838156184752148,
          -7,
          -7,
          -3.3501510667807066,
          -4.074779882331932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6504252739580907,
          -7,
          -7,
          -3.308575084056243,
          -4.267875419318898,
          -7,
          -4.035889806536247,
          -7,
          -7,
          -3.649529565947819,
          -3.729691133696481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7350663496842955,
          -7,
          -7,
          -2.930312142239915,
          -7,
          -7,
          -7,
          -3.8129801660394804,
          -2.9854264740830017,
          -3.5913479701696387,
          -7,
          -7,
          -7,
          -7,
          -3.0242803760470798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.01416037745305,
          -7,
          -7,
          -4.475961589192424,
          -4.645677661583387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.739572344450092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8901414600645774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5913626556153853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0461047872460387,
          -2.7996850909091004,
          -7,
          -2.4762823328149426,
          -7,
          -7,
          -3.1458177144918276,
          -3.2869801217565664,
          -7,
          -2.8670744611517724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5445227813677804,
          -7,
          -3.678245151927042,
          -3.4470472277998647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6875289612146345,
          -7,
          -7,
          -7,
          -7,
          -3.6879449236700936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.008344629252689,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5107013638161044,
          -7,
          -7,
          -7,
          -7,
          -3.1522883443830563,
          -7,
          -7,
          -2.9876662649262746,
          -7,
          -3.6071332043915665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.183516585741525,
          -7,
          -7,
          -7,
          -7,
          -2.9534697432534016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6101276130759956,
          -7,
          -7,
          -2.7466341989375787,
          -3.648233694151396,
          -7,
          -7,
          -7,
          -2.716003343634799,
          -7,
          -7,
          -4.561017857447836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7267272090265724,
          -7,
          -2.7713424628313694,
          -7,
          -4.340186237916345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.731320101718905,
          -3.2427898094786767,
          -2.6283889300503116,
          -2.665580991017953,
          -2.845098040014257,
          -2.6857417386022635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.036549054479152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2230024392104095,
          -7,
          -2.1172712956557644,
          -7,
          -2.61066016308988,
          -7,
          -7,
          -7,
          -7,
          -2.885361220031512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.521321181329137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.36679638328673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.60422605308447,
          -2.575187844927661,
          -2.373524980463404,
          -7,
          -3.766524381029522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5418287667813124,
          -7,
          -7,
          -7,
          -7,
          -4.738106403558114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5774917998372255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7806412916269427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7197454925295768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6827384693289797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.269045709657623,
          -7,
          -7,
          -7,
          -7,
          -3.2247734691895307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8129133566428557,
          -2.693726948923647,
          -7,
          -7,
          -7,
          -2.575187844927661,
          -7,
          -3.926033596678845,
          -7,
          -2.4042634020509106,
          -7,
          -1.6302429114439048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2576785748691846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.848989206251168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.952175797631502,
          -7,
          -7,
          -7,
          -7,
          -1.9344984512435677,
          -2.351216345339342,
          -7,
          -2.741939077729199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499755794663781,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2062860444124324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9429995933660407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.152441238058955,
          -7,
          -7,
          -1.4978507395784066,
          -4.608868199820542,
          -7,
          -7,
          -3.767897616018091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8651039746411278,
          -7,
          -7,
          -3.0492180226701815,
          -7,
          -4.39966680039829,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9603280505301433,
          -7,
          -4.530234927152524,
          -7,
          -2.6398183918310933,
          -3.6437610147894506,
          -7,
          -7,
          -2.866877814337499,
          -7,
          -3.0318122713303706,
          -3.4574276929464847,
          -3.077731179652392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4265112613645754,
          -7,
          -2.6334684555795866,
          -7,
          -3.1020905255118367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.734599832126458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.102049325662146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.667125941485989,
          -7,
          -4.573312639954846,
          -3.8297753428197034,
          -3.445993181787647,
          -7,
          -7,
          -7,
          -3.9429005411402938,
          -7,
          -2.9476787399369364,
          -7,
          -4.144605338714745,
          -3.4149733479708178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.189995339964319,
          -7,
          -7,
          -7,
          -4.980589614348293,
          -5.172926780108456,
          -7,
          -2.836745965649491,
          -2.718501688867274,
          -4.31206093637058,
          -7,
          -4.942905494288165,
          -7,
          -7,
          -7,
          -7,
          -4.011274328904725,
          -7,
          -7,
          -7,
          -7,
          -3.4623380910801975,
          -7,
          -7,
          -3.761433797113758,
          -7,
          -7,
          -4.157708547654237,
          -7,
          -7,
          -2.9181352261663593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.519653016141642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6753607458971653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.178674849395301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6757783416740852,
          -2.9390197764486667,
          -3.130816050034744,
          -3.0457140589408676,
          -7,
          -3.035829825252828,
          -3.740362689494244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015296870381437,
          -7,
          -7,
          -3.984347257585864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7596678446896306,
          -7,
          -7,
          -7,
          -7,
          -3.854700675614607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.379305517750582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9809573162296203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.181843587944773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.901785145303599,
          -7,
          -7,
          -7,
          -3.836347136272441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7344997988467563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.367355921026019,
          -7,
          -7,
          -2.857935264719429,
          -3.1028622998954396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7283537820212285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.218876715052756,
          -1.8239087409443189,
          -1.4419568376564116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7291647896927698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3729120029701067,
          -7,
          -7,
          -2.537189226243645,
          -7,
          -7,
          -7,
          -7,
          -2.8512583487190755,
          -2.354108439147401,
          -1.9956351945975501,
          -1.4728424567403875,
          -7,
          -7,
          -2.4608978427565478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.736707170670822,
          -7,
          -2.984077033902831,
          -3.0511525224473814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.296665190261531,
          -1.5378190950732742,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.598097124391873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.942008053022313,
          -2.7558748556724915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.51359339336404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.747670701773019,
          -7,
          -7,
          -7,
          -7,
          -2.9138881796955367,
          -7,
          -7,
          -2.439332693830263,
          -7,
          -2.5722906061514177,
          -7,
          -7,
          -2.546542663478131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6263403673750423,
          -7,
          -1.631781872947651,
          -7,
          -7,
          -2.2430380486862944,
          -7,
          -2.6242820958356683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.787696568289874,
          -7,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -2.9084850188786495,
          -3.5122840632818537,
          -5.149483920739446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.130333768495006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0829199448613176,
          -7,
          -7,
          -7,
          -2.3384564936046046,
          -1.806179973983887,
          -1.323939275128193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7078539359785987,
          -7,
          -7,
          -7,
          -7,
          -2.7686381012476144,
          -3.386498965550653,
          -7,
          -4.497330562965051,
          -7,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.015639134307175,
          -2.5434471800817002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.342422680822206,
          -7,
          -7,
          -7,
          -7,
          -1.4978507395784066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1085650237328344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.0980550396692434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.830995829309531,
          -7,
          -7,
          -4.243794303095747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0086001717619175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -3.0484418035504044,
          -7,
          -2.7690078709437738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.733189237407942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784845433412646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.704141933860088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0940982836485,
          -3.2235392038485093,
          -2.3142724592544885,
          -7,
          -7,
          -7,
          -4.241795431295198,
          -7,
          -2.7256394326735376,
          -7,
          -4.139091607523823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3119271590844845,
          -4.678750487010251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6965747917964733,
          -7,
          -7,
          -7,
          -4.003762020828246,
          -7,
          -7,
          -3.6445370577784075,
          -7,
          -3.252731702726023,
          -7,
          -7,
          -4.00264114900004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.210541452166173,
          -7,
          -3.0588054866759067,
          -7,
          -7,
          -3.143550085221494,
          -7,
          -7,
          -7,
          -3.7790189719148706,
          -7,
          -3.3053411313607923,
          -7,
          -7,
          -7,
          -7,
          -2.910090545594068,
          -7,
          -7,
          -7,
          -3.1762359997608716,
          -7,
          -3.031408464251624,
          -7,
          -7,
          -7,
          -3.8296253533580495,
          -7,
          -7,
          -7,
          -3.5992576664691955,
          -4.741340724046487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6654871807828107,
          -7,
          -3.719295250433741,
          -7,
          -7,
          -2.6830470382388496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.598243191653623,
          -2.586587304671755,
          -7,
          -2.8729051282527607,
          -7,
          -7,
          -7,
          -3.7262380468026377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.710477011779341,
          -7,
          -3.9565045903166975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9894498176666917,
          -7,
          -7,
          -7,
          -7,
          -3.849327262334538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.345765693114488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305480348653206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304608994731877,
          -7,
          -2.3842957067946604,
          -4.613841821876069,
          -7,
          -7,
          -2.76315203827082,
          -3.1158062279831116,
          -7,
          -4.308745776330676,
          -4.607122472989352,
          -4.010225730048655,
          -7,
          -1.4464814546640163,
          -3.740402169016284,
          -7,
          -4.13640344813399,
          -2.1753078349067776,
          -7,
          -4.305351369446623,
          -7,
          -7,
          -4.6066607716609465,
          -3.6530409067467735,
          -2.6230721544503495,
          -4.305705970134437,
          -7,
          -7,
          -4.130140705819276,
          -4.006744072853106,
          -7,
          -4.607337050667031,
          -7,
          -3.9214159323948645,
          -7,
          -2.553353730509349,
          -7,
          -7,
          -3.9090744014009045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.773619296135908,
          -2.6576834670780443,
          -7,
          -4.305534078686048,
          -3.574956775764507,
          -4.606821886016697,
          -4.304888879148899,
          -4.128915978453837,
          -7,
          -7,
          -4.314488702046227,
          -7,
          -7,
          -7,
          -2.174052881785803,
          -7,
          -7,
          -7,
          -4.60535892548885,
          -3.721676680229461,
          -4.610276792917653,
          -7,
          -4.611202692182174,
          -3.221483277582076,
          -7,
          -3.8290463368531826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.706611115387456,
          -4.607594404013138,
          -3.381295623003826,
          -4.607379953483188,
          -3.286606149046036,
          -7,
          -2.00959373153784,
          -4.007139425162523,
          -4.004009515801031,
          -4.605391249889289,
          -7,
          -7,
          -4.605972678066446,
          -7,
          -7,
          -4.60535892548885,
          -3.9271136119337604,
          -7,
          -7,
          -7,
          -4.008781090107339,
          -7,
          -7,
          -7,
          -4.60591887481288,
          -3.569501593215114,
          -7,
          -4.605649758517102,
          -4.132099521916504,
          -4.608140774044056,
          -1.1212463653081923,
          -7,
          -7,
          -7,
          -7,
          -3.437729428754742,
          -7,
          -3.558468562523795,
          -2.633236593363552,
          -7,
          -3.910047808486978,
          -4.6078623183483565,
          -3.2198280150476593,
          -7,
          -3.8355426114309683,
          -3.5738943775920253,
          -7,
          -4.3054266119721705,
          -4.305695228911858,
          -7,
          -7,
          -7,
          -3.1012357969686812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.237322669869924,
          -3.5165252041365958,
          -3.1995317172630013,
          -3.8330727036452936,
          -4.305673745669693,
          -3.188243942455559,
          -4.606004956819436,
          -7,
          -4.132579847659737,
          -3.7849126306122294,
          -3.1985302053792193,
          -7,
          -7,
          -7,
          -2.9158519113966404,
          -7,
          -7,
          -7,
          -4.131394081817373,
          -7,
          -7,
          -3.709619715559004,
          -4.308564413561239,
          -4.307720614914806,
          -4.306564408349157,
          -4.610127613075996,
          -4.6069292623911515,
          -4.004181603069199,
          -2.347449358810914,
          -4.605789719802564,
          -7,
          -7,
          -4.606209333228022,
          -7,
          -3.4299029384459896,
          -4.605628222007619,
          -3.222882875472395,
          -7,
          -2.7002340851124638,
          -7,
          -3.1502799204175456,
          -2.0761361797273654,
          -7,
          -3.229137673741424,
          -3.910368234326188,
          -3.655842471411064,
          -3.2493259940843204,
          -3.383931471978156,
          -3.830203598925704,
          -4.607283416186098,
          -7,
          -4.606918525948291,
          -4.6064995975128875,
          -3.8399073111296422,
          -7,
          -4.605649758517102,
          -7,
          -3.9065146136422175,
          -7,
          -3.263697804915245,
          -7,
          -4.134952320751409,
          -4.30513631894364,
          -7,
          -7,
          -7,
          -4.130858893597252,
          -7,
          -7,
          -7,
          -4.323808795527016,
          -4.30666087655063,
          -7,
          -4.605520523437469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.606047991425154,
          -7,
          -3.49797104570027,
          -3.6829368988867754,
          -2.116804385513106,
          -7,
          -4.605778955151077,
          -7,
          -7,
          -7,
          -7,
          -4.306843035820824,
          -4.605951157564873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9111051914786596,
          -7,
          -7,
          -7,
          -7,
          -4.606316861140107,
          -4.129292358783856,
          -7,
          -7,
          -4.012721256813116,
          -4.304974961155454,
          -3.8507279001855457,
          -3.774569098791682,
          -7,
          -7,
          -4.304835069229006,
          -3.4194187409295647,
          -7,
          -3.221385254927856,
          -7,
          -1.580058363422686,
          -7,
          -7,
          -7,
          -2.8966639794199422,
          -3.1649685903213305,
          -3.9147238574785934,
          -3.577115624428775,
          -3.714801107435411,
          -7,
          -7,
          -7,
          -4.30583484408832,
          -3.610819800835439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304813543394108,
          -4.306081745657977,
          -4.606252347587676,
          -2.958401207070927,
          -3.356567590116751,
          -4.608868199820542,
          -7,
          -7,
          -7,
          -7,
          -3.116304068086073,
          -7,
          -7,
          -4.307955761568559,
          -7,
          -3.5029730590656314,
          -4.609477016473619,
          -4.615897470449012,
          -7,
          -4.136424596607705,
          -7,
          -2.1298838478853956,
          -3.6141059109580307,
          -7,
          -7,
          -7,
          -4.013963663325294,
          -3.496610353010258,
          -7,
          -7,
          -4.608558123116898,
          -7,
          -7,
          -7,
          -7,
          -4.606650028578438,
          -7,
          -3.3535743172231056,
          -4.305308367864144,
          -3.066955652692866,
          -4.629379013907319,
          -2.434855787991721,
          -7,
          -3.7123866044592306,
          -2.925781264081862,
          -3.7111954128570748,
          -7,
          -3.405068753367744,
          -7,
          -3.5337085232398597,
          -3.552272669914343,
          -3.7111531868500505,
          -7,
          -7,
          -7,
          -4.133357914626442,
          -7,
          -7,
          -4.606155559286679,
          -4.138260582719981,
          -7,
          -3.372646110468112,
          -7,
          -7,
          -2.591524783818118,
          -2.894896864485349,
          -3.077560700952694,
          -3.463252908572469,
          -3.1622981016733482,
          -4.147985320683805,
          -2.6935240233774413,
          -2.086441189701195,
          -2.3187758238582155,
          -4.605638990395859,
          -3.1037951717678367,
          -2.6306638191535563,
          -2.976436594866021,
          -3.0144659335044777,
          -2.354912894977539,
          -3.2796669440484556,
          -3.0769302271770527,
          -2.8417901249167743,
          -3.166943531213748,
          -2.822859424823976,
          -2.7463535562900727,
          -2.7227020245606064,
          -1.8681633440829502,
          -2.287497933400103,
          -3.1707979642445716,
          -3.6214479305574576,
          -2.9321565530043676,
          -2.2897007312907953,
          -7,
          -2.0536292292032847,
          -2.757150543316607,
          -2.6508543881639977,
          -2.906221190213982,
          -2.543166115347827,
          -2.7893926651894576,
          -2.9003823029015727,
          -3.1301982948974314,
          -2.4809669269555825,
          -2.733069074034461,
          -2.858722920116735,
          -3.6611498572447867,
          -2.6242088081307733,
          -2.59009456910925,
          -2.5353420781776848,
          -3.1788171333145847,
          -2.6919141740681636,
          -4.312537003107304,
          -1.78497131886655,
          -2.9230366686707856,
          -3.54104853143455,
          -2.6335946856289865,
          -2.625806478248694,
          -2.7288560129418293,
          -4.015558831279868,
          -2.6689620060235493,
          -3.6181422708462816,
          -7,
          -3.129780495005279,
          -2.648501656974582,
          -3.325310371711061,
          -4.30977916448048,
          -2.2918854502530666,
          -1.6406181228166998,
          -2.7819676747631523,
          -7,
          -4.322405381067654,
          -3.8289712226057087,
          -1.8098832547271022,
          -3.7479165080965102,
          -3.19694681550591,
          -3.264010638853782,
          -2.8657298689917874,
          -7,
          -3.2512974636775698,
          -2.601808027451869,
          -2.9248255035083397,
          -1.684862742461716,
          -2.8918112322610328,
          -2.7080908169076845,
          -2.44973545423003,
          -2.743234794886994,
          -4.3067787530377135,
          -2.3282378357250217,
          -1.8332496962960916,
          -3.61406366749503,
          -2.5190242649545627,
          -4.616191843248132,
          -3.020568434801363,
          -3.26382339410336,
          -2.523573061146692,
          -4.607755172446473,
          -7,
          -7,
          -3.9107204299073945,
          -3.061444101412217,
          -2.5751090851604386,
          -4.6071975872368265,
          -3.3600777430711926,
          -4.608964385524357,
          -3.180545705995641,
          -2.8454998168095504,
          -3.5734623643151497,
          -4.130794626668426,
          -7,
          -2.7935072291713214,
          -3.6542193379444026,
          -2.4652716859508375,
          -3.613366056465805,
          -4.611882555512116,
          -3.846027675364379,
          -2.9866669346232935,
          -3.541350388672851,
          -3.0995892481040115,
          -3.8367986680925994,
          -4.133826214076394,
          -3.115671015224398,
          -3.7679823068299627,
          -3.8367143411134936,
          -4.309214834458301,
          -4.306789467495679,
          -7,
          -3.348462489920785,
          -7,
          -7,
          -3.285638559729586,
          -2.1656723176143293,
          -2.0453183375247277,
          -4.304748959487096,
          -3.326253910842292,
          -4.132035438327499,
          -3.6634496339132876,
          -4.130344491683163,
          -7,
          -4.606574819558959,
          -3.676287061987499,
          -4.130569617494949,
          -3.405847737990737,
          -2.6334882587980255,
          -7,
          -2.305847233799526,
          -4.310470267690811,
          -3.447158031342219,
          -4.605402024154815,
          -3.571825249040829,
          -4.606972205508573,
          -3.915821787620399,
          -2.5750319221719042,
          -4.608526033577194,
          -7,
          -4.606993675475054,
          -3.641523684670229,
          -3.1107767046969292,
          -3.8340708381017388,
          -4.009227741996455,
          -3.1061714631343613,
          -4.007256892965124,
          -2.2089790645019827,
          -4.007758443254898,
          -3.21409969545611,
          -4.608675764480902,
          -4.133112920614726,
          -2.67966172189638,
          -7,
          -2.3825108726800726,
          -3.1963781552840014,
          -4.130623201682595,
          -3.830791762380773,
          -3.144293927198531,
          -7,
          -4.129098832497685,
          -3.196718862042681,
          -4.009663316679379,
          -4.008802369664495,
          -2.983770193312903,
          -3.83523596228257,
          -3.677434579437062,
          -3.709990359852276,
          -3.3147670747986746,
          -2.3589155946326024,
          -3.4173263504642257,
          -2.761614652799469,
          -7,
          -4.605617453352368,
          -2.9417783440288416,
          -3.32798182779077,
          -7,
          -3.543385044809843,
          -2.8733780187455484,
          -3.5756810811895403,
          -2.9349146499694263,
          -3.000985245323685,
          -3.3601861899515217,
          -4.129475054459623,
          -4.31135115757134,
          -7,
          -7,
          -4.609092600000719,
          -4.011802963585356,
          -2.555429791511689,
          -4.605897351644974,
          -4.60672522457584,
          -7,
          -2.2067772700461354,
          -7,
          -7,
          -4.606617797736322,
          -4.6070258784347855,
          -3.655575925143535,
          -4.607251232317852,
          -4.608322744745895,
          -3.2678957991631954,
          -3.324292746514193,
          -4.310023834437932,
          -4.60672522457584,
          -3.658244654605687,
          -7,
          -7,
          -7,
          -4.608205007704326,
          -4.607787318992725,
          -4.307282047033346,
          -3.1588292245226572,
          -3.2748503200166645,
          -3.6332360963830093,
          -4.129818743848935,
          -7,
          -3.4804484087285745,
          -7,
          -7,
          -3.0384140840327856,
          -7,
          -7,
          -3.7157736079156267,
          -3.252681139281379,
          -4.136287113116408,
          -7,
          -7,
          -7,
          -7,
          -3.1484235191525474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659136240870398,
          -2.99211148778695,
          -7,
          -7,
          -3.6110857334148725,
          -3.6372895476781744,
          -7,
          -7,
          -7,
          -2.2216749970707688,
          -7,
          -3.601408060534684,
          -7,
          -7,
          -7,
          -3.8778318914928938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.559080321020141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2079035303860515,
          -7,
          -3.734779833986647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.42753011836615,
          -7,
          -2.478566495593843,
          -2.4892551683692603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.507855871695831,
          -7,
          -2.8651039746411278,
          -3.7420177471401384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.217668151286279,
          -7,
          -2.413299764081252,
          -7,
          -7,
          -7,
          -7,
          -2.419955748489758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -2.859738566197147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0034605321095067,
          -7,
          -3.5211380837040362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9635989625972416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.569958818096594,
          -7,
          -3.4924111373136824,
          -7,
          -7,
          -2.7752462597402365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.29735921414077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7032913781186614,
          -7,
          -7,
          -2.5224442335063197,
          -2.439332693830263,
          -3.774159975774139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4945812550135593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2600713879850747,
          -7,
          -2.2174839442139063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.01378489154674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.848490862207165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3654879848909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.688953462637418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9894498176666917,
          -3.1601682929585118,
          -3.140193678578631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4409090820652177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.496022769118216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.803912112528065,
          -7,
          -7,
          -7,
          -7,
          -3.952550293898202,
          -7,
          -5.132054664397105,
          -7,
          -7,
          -4.545022442756734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.388775930448715,
          -7,
          -7,
          -4.57142930306149,
          -7,
          -3.734399742520567,
          -7,
          -7,
          -2.9813655090785445,
          -4.241969611913073,
          -7,
          -7,
          -7,
          -3.66228551572213,
          -2.7008767083769034,
          -7,
          -7,
          -3.1489109931093564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.353973902321006,
          -4.280846876178632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.641062426376377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.156670276554126,
          -7,
          -7,
          -3.563308455169777,
          -4.563326800389584,
          -7,
          -4.1560744186748915,
          -7,
          -7,
          -3.1230890516896657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.688642251959892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.62811293764317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7363965022766426,
          -7,
          -7,
          -7,
          -2.4771212547196626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.530199698203082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604096393587492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5997739391463885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.877083256650651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333991061569507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6938148538894167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023992804606471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7671558660821804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5172486965011185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3047058982127653,
          -7,
          -7,
          -7,
          -2.745855195173729,
          -7,
          -7,
          -7,
          -7,
          -2.760422483423212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.08278537031645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.605973420133687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.192400170360129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9097699147327694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7535830588929064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0013009330204183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.300291066777081,
          -3.7223870941771238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2120099425148356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.050050913799034,
          -4.678140369274087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603317622640193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9831299247347003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080698622871129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5833121519830775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5877109650189114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.215390216393895,
          -3.323870606540509,
          -7,
          -7,
          -3.1288606460924466,
          -3.031094132296288,
          -7,
          -7,
          -3.75564621945668,
          -7,
          -7,
          -2.6919651027673606,
          -3.6648299411430907,
          -7,
          -3.020637463567606,
          -2.8457234051996587,
          -7,
          -3.7505083948513462,
          -7,
          -7,
          -7,
          -3.758003009299799,
          -2.587249250978184,
          -3.753046561626529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.541454428747589,
          -7,
          -2.758927990197405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.747644819328248,
          -7,
          -7,
          -3.133283365860989,
          -3.1148194089047454,
          -7,
          -7,
          -3.3412366232386925,
          -7,
          -7,
          -7,
          -7,
          -3.7763379096201755,
          -3.3347887257004363,
          -3.7514330818193473,
          -7,
          -7,
          -3.058968011900246,
          -7,
          -7,
          -7,
          -7,
          -3.0898462599613077,
          -2.3264821619178067,
          -7,
          -3.482659240683335,
          -3.0176890582210874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7746629225378223,
          -3.7589875468676195,
          -7,
          -7,
          -3.770557474850995,
          -3.7821858664920165,
          -2.647883126093151,
          -3.4694538137671267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6979844861673534,
          -7,
          -7,
          -7,
          -3.781827152932428,
          -7,
          -7,
          -7,
          -7,
          -3.4820155764507117,
          -7,
          -7,
          -3.770631127777807,
          -2.6819945671081067,
          -3.0802914129703645,
          -7,
          -7,
          -7,
          -7,
          -2.957128197676813,
          -7,
          -3.0921188508484487,
          -2.7600818411990895,
          -7,
          -3.4683473304121573,
          -7,
          -3.0954962573424885,
          -7,
          -3.8009918612601714,
          -7,
          -2.468568852723465,
          -3.751048034820188,
          -3.752969865029084,
          -7,
          -7,
          -7,
          -2.3882939162119032,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.890507000682388,
          -3.59955559098598,
          -3.4271614029259654,
          -3.483515978390541,
          -7,
          -3.1594543943545212,
          -7,
          -7,
          -3.4727564493172123,
          -3.4202308796246506,
          -3.2000292665537704,
          -7,
          -7,
          -3.74787770581979,
          -3.0056598802090075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2992752680974307,
          -7,
          -7,
          -7,
          -3.776555910703262,
          -7,
          -7,
          -2.591583964972279,
          -7,
          -7,
          -7,
          -3.7491176623563223,
          -7,
          -7,
          -7,
          -3.245265839457461,
          -7,
          -2.9516496988610452,
          -7,
          -2.8934843462184863,
          -2.7921748216786346,
          -7,
          -7,
          -3.7717344253867693,
          -3.7774268223893115,
          -3.3085644135612386,
          -3.8069257768837317,
          -3.765072201102792,
          -3.7567881987681178,
          -3.4647875196459372,
          -7,
          -7,
          -3.828595456371702,
          -7,
          -3.7450747915820575,
          -7,
          -3.2886324266102918,
          -7,
          -3.0953437318725254,
          -7,
          -3.488762172066694,
          -3.748962861256161,
          -3.7491176623563223,
          -7,
          -3.745309059940828,
          -3.2845811128217504,
          -7,
          -7,
          -7,
          -3.8682916880178557,
          -3.7598188773748262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.27315566043433,
          -3.745933158459443,
          -3.446770095200388,
          -2.933704163998982,
          -7,
          -2.340240674395174,
          -2.4172984115998495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7611005389581424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7571681922142726,
          -2.854363886031574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.200371635102761,
          -7,
          -3.4139699717480614,
          -2.934561570854449,
          -7,
          -7,
          -7,
          -3.5613399414589013,
          -3.296884475538547,
          -2.9298444960392853,
          -3.7657430414210444,
          -3.243026230988586,
          -7,
          -7,
          -7,
          -3.277471685042826,
          -3.191311257590993,
          -3.02201573981772,
          -3.1325158349126387,
          -2.8725447293769673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7466341989375787,
          -7,
          -3.749427099121749,
          -3.6034150454129286,
          -7,
          -3.767897616018091,
          -7,
          -3.116304068086073,
          -7,
          -7,
          -7,
          -3.142232991794714,
          -7,
          -3.291442854793911,
          -7,
          -3.345046824648355,
          -3.2946866242794433,
          -3.5132842045434782,
          -7,
          -7,
          -7,
          -3.2406889987319323,
          -7,
          -7,
          -7,
          -7,
          -3.338257230246256,
          -3.781180720937262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.377215156263061,
          -7,
          -3.1809289492744997,
          -3.4590907896005865,
          -7,
          -2.2594744195310756,
          -3.02626080875407,
          -7,
          -3.2949069106051923,
          -7,
          -3.319175485332129,
          -2.2678263615859806,
          -7,
          -7,
          -7,
          -7,
          -3.7792356316758635,
          -7,
          -3.7573960287930244,
          -7,
          -3.510276844417355,
          -7,
          -2.9835135272947686,
          -7,
          -7,
          -3.6705241577820797,
          -3.786950073527685,
          -4.378488748031808,
          -7,
          -3.905188522590824,
          -3.86993541064686,
          -4.01456253812761,
          -3.879841055986563,
          -3.4517060437782163,
          -7,
          -3.4285397306379886,
          -3.678224906041909,
          -3.859404233025727,
          -3.6333611311829688,
          -3.302027726021775,
          -7,
          -4.474201690191393,
          -3.5245605472800365,
          -4.182728418124268,
          -3.5828017176654714,
          -7,
          -3.8406210760399038,
          -4.105986795521472,
          -3.6171445574903074,
          -3.5353447636766573,
          -4.292831794508626,
          -3.5976220662213403,
          -3.379007509979479,
          -7,
          -3.4253401015808675,
          -4.342817314635733,
          -4.160828543144547,
          -4.353704703572165,
          -7,
          -7,
          -4.354338976788081,
          -4.219741661046302,
          -3.7431176252147416,
          -3.571271989040687,
          -3.3822872662579013,
          -2.8111056070179306,
          -3.675228253593064,
          -3.2592866312736266,
          -3.731145381297382,
          -7,
          -3.3745912490715475,
          -7,
          -2.777394357033012,
          -3.0563711794755286,
          -2.9966992588600987,
          -2.8162668009742573,
          -3.1673400601861292,
          -3.0156949885265183,
          -3.8256208250035,
          -7,
          -7,
          -7,
          -3.323716062508784,
          -3.8381771981539616,
          -3.878866336956725,
          -7,
          -3.2696841376874044,
          -3.278792414018181,
          -3.284253031569433,
          -7,
          -3.559068334034537,
          -7,
          -3.3219654120767506,
          -3.2220224326748212,
          -3.3339905934841787,
          -3.9709044981537835,
          -3.4456042032735974,
          -3.274003816815921,
          -3.693023067923694,
          -4.188844146546897,
          -3.481191725893641,
          -3.8361974807789254,
          -3.2906132849749863,
          -3.6432552250247716,
          -3.4488829162201706,
          -3.602548297999073,
          -3.760648619581356,
          -3.57966929355472,
          -3.321132199092705,
          -3.5027684123256932,
          -2.91225809382997,
          -7,
          -7,
          -7,
          -3.494098911669254,
          -7,
          -3.752432609261474,
          -7,
          -7,
          -3.7571681922142726,
          -3.3339076675505632,
          -7,
          -3.335858911319818,
          -7,
          -7,
          -3.275886960301226,
          -7,
          -7,
          -7,
          -3.3565612207148794,
          -3.2888451700660513,
          -3.0353660539727025,
          -7,
          -7,
          -7,
          -4.037386652582377,
          -3.241919853150198,
          -3.428836444372765,
          -7,
          -7,
          -3.6212282277689853,
          -7,
          -3.8085485512404054,
          -7,
          -7,
          -7,
          -3.304813543394108,
          -3.466645228363979,
          -3.7477224620355085,
          -2.670408845938452,
          -3.514715948325943,
          -3.577305059024824,
          -7,
          -3.8841153620116686,
          -2.991299929018394,
          -3.2242740142942576,
          -3.155867191785367,
          -7,
          -3.7517408738109004,
          -2.9454685851318194,
          -7,
          -3.777644277696485,
          -3.6669857183296606,
          -7,
          -3.413090111901509,
          -7,
          -3.5595475555804343,
          -7,
          -3.4974134646862063,
          -3.7545776560447304,
          -7,
          -2.996219709466273,
          -3.7655195430979527,
          -7,
          -3.2773035345575963,
          -3.956696564894651,
          -4.070333455853063,
          -7,
          -7,
          -7,
          -3.4702634469650784,
          -2.858329728745217,
          -7,
          -3.1951798424319033,
          -2.9876662649262746,
          -7,
          -3.836640541572774,
          -7,
          -3.3208522198317545,
          -7,
          -2.8562000460323604,
          -3.467977875279793,
          -3.374442827543826,
          -7,
          -7,
          -3.2703060911529134,
          -2.7864674767402824,
          -7,
          -2.76847365804917,
          -2.397731497273984,
          -7,
          -3.496098992132571,
          -3.183147776558217,
          -3.3953263930693507,
          -3.1508178199016665,
          -3.2399248132621516,
          -7,
          -3.744840396785379,
          -3.9021842630309194,
          -3.893595333819883,
          -7,
          -3.856366323659248,
          -3.333799806709918,
          -7,
          -3.5563326590591577,
          -3.184123354239671,
          -3.3461573022320086,
          -3.752202153176521,
          -7,
          -3.7512020945883533,
          -3.746011107751926,
          -7,
          -2.9558938212459145,
          -7,
          -7,
          -7,
          -7,
          -2.4742386844826463,
          -7,
          -7,
          -7,
          -7,
          -3.076057595762826,
          -3.279134394034571,
          -2.985201858364572,
          -3.8972421028053654,
          -3.8731461513282555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7641761323903307,
          -2.9188163903603797,
          -3.3311741373868458,
          -2.8346855658486145,
          -3.754654069255432,
          -7,
          -3.8794972872494284,
          -7,
          -3.743352951409556,
          -3.155085857531935,
          -7,
          -7,
          -3.3564083270389813,
          -3.0108827245590275,
          -3.4975515990645665,
          -7,
          -7,
          -3.766635886310268,
          -7,
          -3.171628957978357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.62283547952152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03195063308439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557374848241307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.856910060300786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7231271587956916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7024305364455254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216271492970176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.365207100231823,
          -3.392345155361204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426332301677428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368565785360332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7267272090265724,
          -2.833784374656479,
          -7,
          -3.9185422038449507,
          -1.7075701760979363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.167317334748176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1152775913959014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.142232991794714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0149403497929366,
          -7,
          -7,
          -7,
          -4.79657433321043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5352941200427703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8864907251724818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.066089764020343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.026001817357177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.650637733412055,
          -7,
          -4.606939998568596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.541254649786259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979206813945709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3544926005894364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.330748497546924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6232492903979003,
          -4.381721405479332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.90687353472207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14646913307187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1271047983648077,
          -4.180632352233786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576082078509781,
          -7,
          -7,
          -7,
          -2.3364597338485296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.694429690957083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02428037604708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.611723308007342,
          -7,
          -4.517341078522992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.271066772286538,
          -7,
          -7,
          -7,
          -7,
          -2.765668554759014,
          -7,
          -7,
          -2.6127838567197355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2009872191631663,
          -7,
          -7,
          -7,
          -7,
          -4.73569468938689,
          -7,
          -7,
          -2.999130541287371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.125277896705118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1917303933628562,
          -7,
          -7,
          -7,
          -7,
          -3.1126701557128023,
          -7,
          -7,
          -2.325310371711061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.03342375548695,
          -7,
          -2.1893967258352185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.921686475483602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.424881636631067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.404833716619938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.946452265013073,
          -7,
          -7,
          -7,
          -3.022840610876528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0043213737826426,
          -4.543273178913283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2422100322640643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3481100684802376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.300443302006029,
          -3.24551266781415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.135069013823448,
          -3.6901074394563307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.181414796254284,
          -7,
          -7,
          -4.351255033547635,
          -4.979211369856581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5871494982543437,
          -7,
          -7,
          -7,
          -7,
          -4.2730707536224655,
          -7,
          -7,
          -7,
          -3.851288931760664,
          -7,
          -7,
          -4.60339339779644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.585009279902461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9834909718151668,
          -7,
          -7,
          -7,
          -3.7697464671794534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.606381365110605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779686659322491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.282848602834645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8155872347755277,
          -7,
          -7,
          -7,
          -7,
          -3.176958980586908,
          -7,
          -2.410496045616074,
          -7,
          -2.705007959333336,
          -7,
          -3.2125604579711435,
          -7,
          -2.5786392099680726,
          -3.053462604925455,
          -2.328350640239603,
          -2.57978359661681,
          -7,
          -7,
          -2.1197506238845842,
          -1.4819201376014313,
          -2.745855195173729,
          -3.657915936829955,
          -1.904895787855206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.252610340567373,
          -7,
          -3.4951080400257655,
          -7,
          -2.8041394323353503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -3.212986184736668,
          -2.8752266774031847,
          -7,
          -2.677606952720493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5597869682005565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9515533709285438,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.552668216112193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9960736544852753,
          -7,
          -2.076154791417437,
          -7,
          -4.04431759147577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.593286067020457,
          -7,
          -7,
          -2.651762447380111,
          -7,
          -7,
          -7,
          -7,
          -2.5341754764727074,
          -7,
          -7,
          -7,
          -2.8506462351830666,
          -7,
          -7,
          -7,
          -7,
          -2.625312450961674,
          -2.851869600729766,
          -2.1680553034591394,
          -3.056221760948491,
          -7,
          -2.0549958615291413,
          -7,
          -2.8750612633917,
          -7,
          -7,
          -2.756636108245848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4448251995097476,
          -7,
          -7,
          -7,
          -7,
          -2.625312450961674,
          -7,
          -7,
          -7,
          -2.591435640352701,
          -7,
          -7,
          -2.325310371711061,
          -4.082210716601243,
          -7,
          -7,
          -7,
          -7,
          -2.574031267727719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6158125181252205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5669086552268032,
          -7,
          -7,
          -3.0485435302695847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8135809885681917,
          -2.7331972651065692,
          -2.3417641598743475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3263358609287517,
          -2.226342087163631,
          -2.9995654882259823,
          -7,
          -5.150065315969936,
          -2.5658478186735176,
          -7,
          -2.2922560713564764,
          -7,
          -7,
          -7,
          -2.4742162640762553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8898617212581885,
          -3.704236337308788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2315715255284156,
          -7,
          -2.359076226059263,
          -1.6343092970463176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8394780473741985,
          -7,
          -7,
          -7,
          -7,
          -2.611723308007342,
          -7,
          -2.3453737305590883,
          -2.9780282664601656,
          -2.3961993470957363,
          -7,
          -7,
          -4.307955761568559,
          -7,
          -7,
          -3.291442854793911,
          -7,
          -7,
          -7,
          -2.351216345339342,
          -2.5643701225153204,
          -2.3932826505593647,
          -2.829303772831025,
          -7,
          -7,
          -7,
          -7,
          -2.7774268223893115,
          -7,
          -7,
          -7,
          -7,
          -2.3349561161368517,
          -7,
          -7,
          -1.8075350280688534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.857935264719429,
          -7,
          -3.4836348361821106,
          -7,
          -4.655200884173701,
          -7,
          -2.8208579894397,
          -3.166405442926589,
          -1.408471239559919,
          -7,
          -2.5722906061514177,
          -7,
          -2.7351995484223135,
          -3.158060793936605,
          -1.6319695947927622,
          -2.591064607026499,
          -2.256477206241677,
          -7,
          -2.926342446625655,
          -7,
          -7,
          -7,
          -2.414639146737009,
          -7,
          -2.360868697296455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.350441856535061,
          -7,
          -7,
          -4.433657846692988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.396652590685603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -3.7050721993278177,
          -7,
          -2.936513742478893,
          -7,
          -7,
          -4.068024982143691,
          -3.7946971268919985,
          -3.2523675144598987,
          -4.075911761482778,
          -3.3665474682594816,
          -3.416057729263038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.755150427678159,
          -4.980648649207456,
          -7,
          -7,
          -3.0159881053841304,
          -7,
          -7,
          -7,
          -4.641929979522693,
          -7,
          -7,
          -7,
          -7,
          -4.011824095594308,
          -7,
          -7,
          -7,
          -7,
          -4.161936705245781,
          -7,
          -7,
          -4.004675974470456,
          -7,
          -7,
          -3.4886111428830153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7267272090265724,
          -2.4235735197327357,
          -7,
          -3.4055171069763763,
          -3.395195298492141,
          -7,
          -7,
          -7,
          -3.3150602414300163,
          -7,
          -3.5883022719472812,
          -2.44870631990508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9041743682841634,
          -2.4705574852172743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6427216572370735,
          -7,
          -7,
          -7,
          -2.8573324964312685,
          -7,
          -2.143014800254095,
          -7,
          -2.6766936096248664,
          -2.9667672920577095,
          -7,
          -7,
          -3.3137617962924364,
          -2.6180480967120925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.709269960975831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8674674878590514,
          -3.2300997622960104,
          -2.8943160626844384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8488047010518036,
          -3.287353772714747,
          -2.56702636615906,
          -2.346352974450639,
          -2.662547976890391,
          -2.0221074695639487,
          -7,
          -3.034788831251184,
          -2.7489628612561616,
          -2.682145076373832,
          -2.338854746252323,
          -3.263951517653659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.01556930642988,
          -7,
          -7,
          -7,
          -2.8690849738326705,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -2.8512583487190755,
          -2.3643633546157306,
          -7,
          -7,
          -7,
          -7,
          -3.31072364970371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6802347607214068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.217220655644519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.181252698040852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.898396045930009,
          -7,
          -7,
          -2.9444826721501687,
          -3.974327435423617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.08099906042334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335437840434784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2810333672477277,
          -3.1405080430381793,
          -1.678094487894716,
          -7,
          -7,
          -2.587336734507256,
          -7,
          -7,
          -7,
          -1.7501225267834002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.217246991685393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5037906830571814,
          -2.8692317197309762,
          -7,
          -7,
          -7,
          -4.518197974435138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1072099696478683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.660865478003869,
          -2.9694159123539814,
          -7,
          -3.5110808455391185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4038066105474227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7719914586957577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -7,
          -7,
          -2.4424797690644486,
          -7,
          -7,
          -3.385151106409871,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2095150145426308,
          -7,
          -7,
          -7,
          -7,
          -3.1132746924643504,
          -2.2764618041732443,
          -2.7234556720351857,
          -7,
          -7,
          -7,
          -7,
          -2.6020599913279625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7774268223893115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9838517189914717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.895790748250444,
          -3.168202746842631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6434526764861874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.287801729930226,
          -3.1144441724452543,
          -7,
          -7,
          -7,
          -7,
          -2.4409090820652177,
          -7,
          -7,
          -7,
          -7,
          -2.351216345339342,
          -7,
          -1.9645134657464558,
          -2.391816923613249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.031408464251624,
          -3.7658051038819447,
          -2.983175072037813,
          -7,
          -2.2166056942039845,
          -7,
          -2.444044795918076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -7,
          -7,
          -4.140109809610688,
          -7,
          -7,
          -7,
          -4.126082680390729,
          -7,
          -7,
          -4.396478322202103,
          -7,
          -7,
          -7,
          -7,
          -4.655436189551822,
          -4.324878943111994,
          -7,
          -7,
          -7,
          -4.350228629754866,
          -7,
          -4.6076480001038265,
          -7,
          -7,
          -7,
          -4.483359036280687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9779749661809207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.387425422788231,
          -7,
          -2.7271344237604884,
          -4.570542939881897,
          -4.000781027353495,
          -3.728272597895017,
          -7,
          -7,
          -7,
          -7,
          -3.7768464086952993,
          -7,
          -7,
          -4.137132476008993,
          -3.695831772826692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.172232104932835,
          -7,
          -3.2615007731982804,
          -7,
          -7,
          -7,
          -7,
          -3.5943925503754266,
          -4.054153240345694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.638389407665336,
          -7,
          -7,
          -7,
          -7,
          -4.604096393587492,
          -7,
          -7,
          -4.632467415481234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.986368593570273,
          -7,
          -7,
          -7,
          -3.3604040547299387,
          -3.9864134054654685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.627335127122439,
          -7,
          -7,
          -7,
          -3.4373541278481747,
          -7,
          -3.4207806195485655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.177277706914103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.500648063371912,
          -7,
          -7,
          -7,
          -7,
          -3.8503939374562877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.29014595464781,
          -2.852479993636856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.010278750336827,
          -3.0909630765957314,
          -7,
          -4.280031744138702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8474184078594025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.658393026279124,
          -7,
          -7,
          -7,
          -7,
          -3.032014034159506,
          -7,
          -7,
          -4.276599653557644,
          -7,
          -7,
          -3.1455071714096627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8154842088373986,
          -7,
          -7,
          -7,
          -7,
          -3.7229628089424898,
          -2.7863964613723042,
          -7,
          -7,
          -7,
          -7,
          -2.9502674680135885,
          -3.2079035303860515,
          -2.582063362911709,
          -2.49876988168213,
          -3.083297812242457,
          -7,
          -7,
          -3.0572856444182146,
          -2.8135809885681917,
          -3.0982975364946976,
          -7,
          -4.269220981530011,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8782727899035083,
          -7,
          -7,
          -2.841672250073634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.479647278769387,
          -7,
          -2.1620979090990606,
          -2.780677274433368,
          -7,
          -2.861733491532661,
          -7,
          -7,
          -7,
          -2.18998131938412,
          -3.197280558125619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7539658658651605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0689276116820716,
          -7,
          -7,
          -7,
          -2.269512944217916,
          -7,
          -7,
          -7,
          -7,
          -2.594760752586463,
          -3.0569048513364727,
          -2.4896772916636984,
          -2.8257505813480277,
          -2.2415464805965484,
          -7,
          -7,
          -7,
          -3.4898051268519477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0755469613925306,
          -7,
          -7,
          -7,
          -3.4929000111087034,
          -7,
          -7,
          -7,
          -2.4369573306694496,
          -7,
          -7,
          -7,
          -7,
          -2.218010042984363,
          -7,
          -7,
          -2.571417652125032,
          -7,
          -2.9487970654459246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1524921906585206,
          -3.1756406459012965,
          -7,
          -7,
          -7,
          -3.7441442802773826,
          -3.084576277934331,
          -7,
          -2.235317981925527,
          -7,
          -7,
          -2.7993405494535817,
          -7,
          -7,
          -7,
          -3.5288310321677203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188084373714938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.962064769456804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.263636068588108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1789931049835896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0637085593914173,
          -2.0529113107194163,
          -7,
          -7,
          -7,
          -7,
          -1.6083564501871657,
          -2.0766404436703416,
          -2.5868684924328913,
          -2.398518682284506,
          -2.3530089588591445,
          -2.384583802303419,
          -7,
          -3.1528995963937474,
          -3.1179338350396413,
          -2.8549130223078554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1876617026529592,
          -7,
          -7,
          -2.7810369386211318,
          -7,
          -7,
          -7,
          -3.140193678578631,
          -7,
          -7,
          -7,
          -2.9970950093565927,
          -2.829303772831025,
          -7,
          -3.0599418880619544,
          -3.0629578340845103,
          -7,
          -7,
          -3.090258052931316,
          -7,
          -7,
          -1.9975501969906566,
          -7,
          -3.323355245756284,
          -5.1524290085454965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.062581984228163,
          -7,
          -7,
          -7,
          -2.411578647633547,
          -7,
          -7,
          -7,
          -7,
          -3.0870712059065353,
          -2.613136798211654,
          -7,
          -3.1258064581395266,
          -3.3059958827708047,
          -7,
          -3.5296869537729165,
          -2.0893751608160995,
          -7,
          -7,
          -7,
          -3.4602963267574753,
          -2.1424463518981964,
          -2.5080057059156724,
          -7,
          -3.8113202523041845,
          -7,
          -7,
          -7,
          -2.5575072019056577,
          -7,
          -2.680335513414563,
          -2.900913067737669,
          -3.36679638328673,
          -7,
          -7,
          -7,
          -7,
          -3.2203696324513946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7831886910752575,
          -2.105874984860221,
          -3.2487087356009177,
          -7,
          -3.1085650237328344,
          -3.5029730590656314,
          -7,
          -7,
          -3.345046824648355,
          -7,
          -7,
          -2.5643701225153204,
          -1.9645134657464558,
          -7,
          -1.3371471560081591,
          -7,
          -7,
          -7,
          -7,
          -3.5213308159082533,
          -3.2946866242794433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1264561134318045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.534660575828444,
          -4.531488496961931,
          -7,
          -1.7762310063625517,
          -3.85751341477669,
          -2.9960736544852753,
          -7,
          -3.1818435879447726,
          -7,
          -2.1851642610024675,
          -7,
          -3.296665190261531,
          -7,
          -7,
          -7,
          -3.2081725266671217,
          -3.0751818546186915,
          -7,
          -7,
          -2.714329759745233,
          -7,
          -1.2549817153489515,
          -7,
          -7,
          -2.9835237793982574,
          -4.277548095564673,
          -3.9890714250951618,
          -3.185825359612962,
          -4.443435106114942,
          -2.522299299588104,
          -3.773859552376687,
          -4.413936485917295,
          -3.5364716381249224,
          -7,
          -7,
          -4.585652453577532,
          -3.664970861964803,
          -3.9057891366123747,
          -3.205255127948347,
          -7,
          -3.228246326255246,
          -3.229217148268312,
          -7,
          -4.317415586331099,
          -7,
          -4.803696048445993,
          -7,
          -3.51262823139563,
          -7,
          -7,
          -4.634819733995179,
          -4.464385208841898,
          -7,
          -3.2969097705624963,
          -3.643798000679235,
          -3.8925620527814804,
          -4.25956998964356,
          -3.9023836844324715,
          -3.377306251068199,
          -4.260357641636152,
          -7,
          -4.06597163517446,
          -3.501914678058426,
          -3.7023012628973455,
          -7,
          -3.883252494933286,
          -2.730823670555798,
          -2.2079311274173823,
          -7,
          -7,
          -7,
          -3.440400412823879,
          -3.242913946818925,
          -2.804990823476288,
          -3.625895235608653,
          -3.6911109747937583,
          -3.4759615891924236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9236325331770483,
          -3.870084122344106,
          -4.874171496513056,
          -7,
          -3.153204900084284,
          -7,
          -3.2058391377710587,
          -7,
          -4.9467714818461905,
          -3.3935752032695876,
          -7,
          -7,
          -7,
          -7,
          -4.29754166781816,
          -7,
          -3.252610340567373,
          -7,
          -3.1838959153856106,
          -3.5576274884268266,
          -3.1344958558346736,
          -3.4686004895460547,
          -3.1266299633528254,
          -7,
          -4.040572674177254,
          -7,
          -7,
          -2.257145043497534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.580558430866771,
          -3.1152775913959014,
          -2.719952447254438,
          -7,
          -1.8555864516285612,
          -3.029221394253928,
          -3.0090257420869104,
          -7,
          -7,
          -3.5422027824340283,
          -7,
          -3.433259658266407,
          -2.977494969073036,
          -7,
          -7,
          -2.0899730070827633,
          -3.111598524880394,
          -2.1961401255504294,
          -7,
          -7,
          -2.0860259719918854,
          -7,
          -3.3085644135612386,
          -2.2947417063369593,
          -3.13481437032046,
          -7,
          -3.1879153546499897,
          -7,
          -3.0770043267933502,
          -4.48274499054841,
          -2.005313299120557,
          -3.5444866265309787,
          -7,
          -7,
          -2.871864702088195,
          -7,
          -3.1248301494138593,
          -7,
          -2.7937903846908188,
          -3.249442961442582,
          -7,
          -3.2022157758011316,
          -7,
          -3.074084689028244,
          -3.2979063453791824,
          -2.2744144486696105,
          -2.5505340865995074,
          -7,
          -7,
          -3.1082266563749283,
          -2.82865989653532,
          -4.350596864828633,
          -7,
          -3.0948203803548,
          -7,
          -7,
          -3.389402370813181,
          -7,
          -7,
          -3.2699019227319654,
          -7,
          -2.765080808180291,
          -2.7134905430939424,
          -7,
          -2.5550944485783194,
          -7,
          -7,
          -7,
          -3.482373285458582,
          -2.93976877545335,
          -7,
          -2.8677620246502005,
          -3.1314582601065255,
          -3.0569048513364727,
          -3.085290578230065,
          -2.2250417766469384,
          -2.9375178920173464,
          -7,
          -3.0925803006913113,
          -7,
          -7,
          -2.970346876230093,
          -7,
          -3.442793225939769,
          -7,
          -3.1061908972634154,
          -7,
          -7,
          -2.607901598556746,
          -3.534914104429867,
          -7,
          -3.4446692309385245,
          -2.8542047958554297,
          -2.30788484230973,
          -3.3979834359489,
          -3.8255126650941165,
          -3.5251096222719336,
          -7,
          -7,
          -2.7913397039651393,
          -7,
          -7,
          -2.808885867359812,
          -7,
          -7,
          -7,
          -7,
          -2.89915787514118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2219355998280053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1455071714096627,
          -2.654818040490762,
          -3.1492191126553797,
          -3.445136968713304,
          -7,
          -7,
          -7,
          -7,
          -1.9119981789673555,
          -7,
          -7,
          -3.69727294443456,
          -7,
          -7,
          -2.9059756752294317,
          -7,
          -3.27669152884504,
          -7,
          -7,
          -7,
          -7,
          -3.6549462265843444,
          -7,
          -7,
          -7,
          -2.711807229041191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5818264448534065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3944516808262164,
          -7,
          -7,
          -7,
          -7,
          -3.1356096360286796,
          -7,
          -2.6263403673750423,
          -2.288174674978394,
          -3.1382108046537596,
          -2.6273658565927325,
          -2.7015679850559273,
          -7,
          -7,
          -2.4191293077419758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0402462150577065,
          -7,
          -2.833147111912785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.079181246047625,
          -7,
          -2.4918558654960536,
          -2.6830470382388496,
          -2.716003343634799,
          -3.1640552918934515,
          -7,
          -7,
          -7,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.038818787373656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9370161074648142,
          -7,
          -7,
          -4.2249472187770865,
          -7,
          -7,
          -7,
          -2.667452952889954,
          -7,
          -7,
          -7,
          -2.6159500516564007,
          -2.916453948549925,
          -7,
          -2.410355383434471,
          -7,
          -7,
          -7,
          -4.221009751372294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3607826898732798,
          -7,
          -7,
          -2.7535830588929064,
          -7,
          -1.6788536861072663,
          -7,
          -7,
          -2.584331224367531,
          -7,
          -3.0690758097663977,
          -7,
          -7,
          -7,
          -2.8767949762007006,
          -7,
          -7,
          -3.548880562637515,
          -7,
          -7,
          -7,
          -7,
          -4.039525157450326,
          -2.688419822002711,
          -7,
          -2.5289167002776547,
          -7,
          -7,
          -2.7283537820212285,
          -2.486430478854434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.61066016308988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1801975823353392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.859738566197147,
          -7,
          -2.929929560084588,
          -7,
          -7,
          -2.733083728305306,
          -2.649334858712142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.019116290447073,
          -7,
          -7,
          -7,
          -7,
          -2.067913944212041,
          -7,
          -2.6138418218760693,
          -2.8948696567452528,
          -2.6339731557896737,
          -2.99211148778695,
          -3.1085650237328344,
          -2.8419848045901137,
          -2.7671558660821804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0707764628434346,
          -7,
          -3.0161973535124393,
          -7,
          -7,
          -2.61066016308988,
          -7,
          -2.815577748324267,
          -7,
          -7,
          -2.611723308007342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0413926851582254,
          -7,
          -3.5423273827739745,
          -5.150200555623702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -7,
          -2.60422605308447,
          -7,
          -3.1513260639408345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -1.9153244434089554,
          -7,
          -7,
          -7,
          -7,
          -2.2105860249051563,
          -2.6648982721005385,
          -7,
          -3.898396045930009,
          -7,
          -7,
          -7,
          -2.5953960038761497,
          -7,
          -3.0773679052841567,
          -2.919862253555538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.656098202012832,
          -7,
          -1.2661924845114636,
          -2.2820931765145813,
          -7,
          -2.8651039746411278,
          -7,
          -4.609477016473619,
          -7,
          -7,
          -3.2946866242794433,
          -7,
          -7,
          -2.3932826505593647,
          -2.391816923613249,
          -1.3371471560081591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.098799421026242,
          -3.0948203803548,
          -7,
          -7,
          -7,
          -7,
          -2.356503891894005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.956310929988667,
          -7,
          -2.835056101720116,
          -4.246670885690703,
          -2.797613730153076,
          -7,
          -2.8992731873176036,
          -7,
          -2.1457400995364067,
          -2.988261596728756,
          -7,
          -1.780214410947417,
          -7,
          -7,
          -2.1653432655224587,
          -7,
          -7,
          -7,
          -3.130655349022031,
          -7,
          -0.657335977420039,
          -7,
          -7,
          -3.4439718866479825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3729760062834497,
          -7,
          -4.040523226445596,
          -7,
          -4.658259494054264,
          -4.20194306340165,
          -3.6190933306267428,
          -7,
          -4.392204356370863,
          -4.0520106121467645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8833135764397375,
          -7,
          -7,
          -4.150275329169186,
          -4.453410082711584,
          -7,
          -3.927900501473422,
          -7,
          -4.282406837957956,
          -7,
          -7,
          -7,
          -4.242665636645263,
          -7,
          -7,
          -4.3926442017384275,
          -7,
          -7,
          -4.272920196193132,
          -3.161517733138683,
          -2.5451524256424958,
          -2.958085848521085,
          -7,
          -7,
          -3.5912996316026833,
          -7,
          -7,
          -3.600246650564494,
          -3.3679147387937527,
          -3.419707981354444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.153471864867516,
          -4.378761175316373,
          -7,
          -7,
          -3.3265406685165617,
          -7,
          -4.61371500205274,
          -7,
          -4.943187730378209,
          -3.3245910857609267,
          -7,
          -7,
          -7,
          -7,
          -3.8041167057081755,
          -7,
          -3.1893967258352185,
          -3.564784384503987,
          -2.8398370426266326,
          -7,
          -7,
          -3.3058348440883205,
          -3.963787827345555,
          -7,
          -4.635443532501082,
          -7,
          -7,
          -3.3226327116922234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1537713238680873,
          -7,
          -2.357934847000454,
          -7,
          -2.4560284548128597,
          -2.9192960569888813,
          -7,
          -2.8115750058705933,
          -7,
          -3.3181329278612206,
          -7,
          -3.483953893345673,
          -3.0696680969115957,
          -7,
          -7,
          -2.8058782758252425,
          -3.269746373130767,
          -2.6872316010647745,
          -7,
          -7,
          -2.809963521714014,
          -7,
          -7,
          -2.4573771965239053,
          -7,
          -7,
          -3.366982975977851,
          -7,
          -7,
          -7,
          -2.677567282066718,
          -4.743172546066673,
          -7,
          -7,
          -2.5809249756756194,
          -7,
          -2.782472624166286,
          -7,
          -7,
          -3.4513258084895195,
          -7,
          -7,
          -7,
          -7,
          -3.7188337183038622,
          -2.3873898263387296,
          -2.8502376796666677,
          -7,
          -7,
          -2.7450747915820575,
          -2.811909980420099,
          -7,
          -7,
          -2.2329961103921536,
          -7,
          -7,
          -3.520418023353549,
          -7,
          -7,
          -3.6868149545073168,
          -7,
          -3.035905475957212,
          -7,
          -7,
          -2.5520595341878844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.800717078282385,
          -2.8750612633917,
          -7,
          -7,
          -2.3873898263387296,
          -1.8476577398519354,
          -2.3005954838899636,
          -7,
          -3.13537120918662,
          -7,
          -3.4683473304121573,
          -7,
          -3.443654067612905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1280529137413957,
          -7,
          -2.7450747915820575,
          -7,
          -3.5392015992941275,
          -2.7058637122839193,
          -3.967547976218862,
          -4.286703412934269,
          -7,
          -2.720159303405957,
          -7,
          -2.4065401804339555,
          -7,
          -7,
          -2.3805730030668872,
          -7,
          -7,
          -7,
          -7,
          -2.980579017498445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1405080430381793,
          -7,
          -2.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.800717078282385,
          -7,
          -3.6856521841155243,
          -7,
          -7,
          -7,
          -7,
          -2.2080828797513523,
          -7,
          -7,
          -4.283323847618786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7122286696195355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7151673578484576,
          -7,
          -3.712528112078682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2216749970707688,
          -7,
          -3.945222316635341,
          -1.9159836783557305,
          -7,
          -7,
          -3.2193851792311725,
          -7,
          -7,
          -7,
          -3.0729847446279304,
          -7,
          -3.081707270097349,
          -1.983613128335068,
          -3.0576661039098294,
          -3.0136796972911926,
          -2.751279103983342,
          -2.472390727626629,
          -1.7913898563391086,
          -7,
          -7,
          -7,
          -3.085825533520743,
          -7,
          -3.273541391414393,
          -7,
          -2.807873132003332,
          -7,
          -7,
          -7,
          -1.9497964591611532,
          -7,
          -7,
          -7,
          -7,
          -2.992995098431342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2940250940953226,
          -7,
          -7,
          -7,
          -4.062243441026478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.318957251879195,
          -7,
          -7,
          -3.9392695863387313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9135489579065177,
          -7,
          -2.6599162000698504,
          -7,
          -3.4882557883675878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.734799829588847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.79049627696711,
          -7,
          -7,
          -2.7327956982893293,
          -3.1332194567324945,
          -3.2631624649622166,
          -7,
          -3.1399839757827155,
          -7,
          -3.030194785356751,
          -2.6554585929400747,
          -7,
          -4.442291586286071,
          -7,
          -2.6524880857810116,
          -3.2931414834509307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146128035678238,
          -2.9331074937869817,
          -3.2434101416537113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.15259407792747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3264724100516823,
          -7,
          -3.009450895798694,
          -7,
          -7,
          -3.0107238653917734,
          -7,
          -7,
          -2.3000983660999252,
          -2.645422269349092,
          -2.305351369446624,
          -2.158060793936605,
          -7,
          -7,
          -3.0019339278663946,
          -7,
          -7,
          -7,
          -3.037824750588342,
          -7,
          -7,
          -7,
          -3.100198171834132,
          -7,
          -3.904715545278681,
          -7,
          -7,
          -2.996411332117376,
          -7,
          -7,
          -7,
          -3.1670217957902564,
          -7,
          -7,
          -7,
          -2.7741518589547103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1702617153949575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.621868384681515,
          -7,
          -7,
          -7,
          -7,
          -3.090258052931316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1760912590556813,
          -2.7390446475663306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.011993114659257,
          -2.3145693943004555,
          -7,
          -2.4405155211122285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0677732303783953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7450747915820575,
          -7,
          -3.084576277934331,
          -7,
          -7,
          -7,
          -3.3754807146185724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9624369880545964,
          -4.207715133805567,
          -7,
          -7,
          -7,
          -7,
          -3.230193378869046,
          -2.7774268223893115,
          -2.576149311961716,
          -3.042181594515766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.127428777851599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.588582917519855,
          -7,
          -7,
          -7,
          -4.615897470449012,
          -7,
          -7,
          -3.5132842045434782,
          -3.0149403497929366,
          -7,
          -2.829303772831025,
          -7,
          -7,
          -7,
          -7,
          -1.3328123682313433,
          -1.4131425344354496,
          -7,
          -3.822075124343057,
          -3.2671717284030137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1172712956557644,
          -7,
          -7,
          -7,
          -7,
          -2.449478399187365,
          -2.7168377232995247,
          -2.65864725984816,
          -7,
          -3.2121876044039577,
          -7,
          -4.112124420332844,
          -7,
          -2.595055089759304,
          -3.3242824552976926,
          -2.968716377466786,
          -7,
          -7,
          -7,
          -7,
          -2.7011977951071855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.028571252692538,
          -1.9915952167958098,
          -3.035829825252828,
          -1.5523405703162654,
          -3.0402066275747113,
          -2.804412059137714,
          -7,
          -7,
          -4.6266174881854045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7398728450231316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.407832623263632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.992995098431342,
          -7,
          -4.32095593690098,
          -7,
          -7,
          -7,
          -7,
          -4.553166699496046,
          -2.757206173278786,
          -3.387033701282363,
          -7,
          -3.863679667875898,
          -7,
          -7,
          -7,
          -7,
          -3.0831441431430524,
          -7,
          -7,
          -7,
          -7,
          -4.068482713761754,
          -4.983590207164233,
          -5.174856107981183,
          -7,
          -2.4788870081411605,
          -7,
          -4.3190227334304145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2948848870000305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.534311732164361,
          -4.573010925673387,
          -7,
          -4.3404441148401185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7528164311882715,
          -7,
          -7,
          -7,
          -7,
          -3.0729847446279304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7965743332104296,
          -7,
          -7,
          -7,
          -4.3354177792535475,
          -7,
          -7,
          -2.8452531174956057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.63574217852852,
          -7,
          -7,
          -7,
          -7,
          -2.835056101720116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2474822606770544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.06595298031387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8287994840969963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7547304690237535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6816029987308685,
          -3.2076343673889616,
          -3.185258765296585,
          -3.7835462822703496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0145205387579237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8228869478341507,
          -7,
          -7,
          -3.2229764498933915,
          -7,
          -7,
          -2.8318697742805017,
          -3.258876629372131,
          -7,
          -7,
          -7,
          -7,
          -3.874365835730049,
          -2.735997884091794,
          -3.15259407792747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.43560550202284,
          -7,
          -3.5684364144168854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.819609732751585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.171726453653231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.756778694670736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4845188481673137,
          -7,
          -7,
          -3.836950990105,
          -7,
          -2.574031267727719,
          -7,
          -7,
          -7,
          -7,
          -2.639126308050443,
          -7,
          -7,
          -7,
          -7,
          -2.47928731647617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.037705313135537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.92054071650248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.504470862494419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.795880017344075,
          -7,
          -7,
          -7,
          -7,
          -2.5289167002776547,
          -2.494850021680094,
          -2.708420900134713,
          -4.436496591295506,
          -7,
          -2.7271344237604884,
          -2.788168371141168,
          -7,
          -7,
          -2.60959440922522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6019152023678274,
          -7,
          -2.459392487759231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.829303772831025,
          -2.2952004520032574,
          -2.080987046910887,
          -2.074938279468222,
          -2.6273658565927325,
          -7,
          -3.7748979720461997,
          -7,
          -7,
          -7,
          -2.552668216112193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5254057973664397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3479151865016914,
          -7,
          -7,
          -7,
          -2.552668216112193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3935752032695876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.961421094066448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.574031267727719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388988785124714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.379305517750582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.055378331375,
          -4.021602716028243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.582915199370299,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7831886910752575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.442793225939769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3328123682313433,
          -7,
          -1.971022689604208,
          -7,
          -4.496337968483268,
          -2.568983532526376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5998830720736876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530121223452704,
          -7,
          -2.792391689498254,
          -4.245092976101281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.446537167073644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.667452952889954,
          -7,
          -2.2380461031287955,
          -1.9506082247842307,
          -2.9132839017604186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.395186557446505,
          -7,
          -7,
          -4.652893914321198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.572488232028253,
          -7,
          -3.741624257503812,
          -7,
          -7,
          -7,
          -7,
          -2.942858083269675,
          -3.2314695904306814,
          -7,
          -7,
          -3.4090027034017725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6961378757818526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278410601475816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605897351644974,
          -7,
          -7,
          -4.634154704380864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6020599913279625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.993832866613986,
          -7,
          -2.1089031276673134,
          -7,
          -7,
          -7,
          -4.629042434519568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.169292274879936,
          -7,
          -7,
          -7,
          -3.3807537708039,
          -2.803457115648414,
          -7,
          -7,
          -7,
          -7,
          -3.431202884556517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.814913181275074,
          -3.9353380926686246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.304275050477128,
          -3.717670503002262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3083509485867255,
          -7,
          -2.422699247707434,
          -3.426429925193928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4771212547196626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.982745983047542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.494154594018443,
          -2.7319914490189294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.249198357391113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6074550232146687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7024305364455254,
          -7,
          -3.674034000431255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.979343470486138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7616459815267613,
          -7,
          -7,
          -7,
          -3.369957607346053,
          -2.4121509531021377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.456973013635818,
          -1.7240759641970738,
          -7,
          -7,
          -3.7351310513165665,
          -7,
          -2.6473829701146196,
          -7,
          -2.682145076373832,
          -7,
          -7,
          -2.5468154354551418,
          -7,
          -7,
          -7,
          -7,
          -2.4448251995097476,
          -7,
          -7,
          -7,
          -3.3463529744506384,
          -7,
          -3.445545826436101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.97657921864011,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.053923150548575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.097604328874411,
          -7,
          -7,
          -3.9337655925566613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8512583487190755,
          -7,
          -7,
          -7,
          -3.5268559871258747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.677606952720493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.02201573981772,
          -3.606560492554639,
          -7,
          -7,
          -7,
          -3.0569048513364727,
          -2.906335041805091,
          -7,
          -3.29269900304393,
          -3.642068627341504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.940267391446012,
          -7,
          -7,
          -7,
          -3.000867721531227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731346975545955,
          -3.0296542818869807,
          -2.9138138523837167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4951626011919386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.873029812061044,
          -2.167317334748176,
          -2.1958996524092336,
          -2.3966351669836934,
          -2.3909351071033793,
          -2.010959191586587,
          -7,
          -3.390662182998049,
          -7,
          -7,
          -7,
          -7,
          -2.4409090820652177,
          -7,
          -7,
          -3.060697840353612,
          -7,
          -7,
          -7,
          -7,
          -3.2610797766810538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.300812794118117,
          -7,
          -7,
          -7,
          -7,
          -2.904715545278681,
          -1.9372589788376664,
          -7,
          -7,
          -7,
          -2.940516484932567,
          -7,
          -7,
          -2.7155855518931964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.932980821923198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.012415374762433,
          -7,
          -2.6473829701146196,
          -2.8937617620579434,
          -7,
          -2.1271047983648077,
          -2.911157608739977,
          -7,
          -2.89707700320942,
          -2.0284808782292205,
          -3.536263763030023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3334472744967503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.735997884091794,
          -4.204757384698596,
          -7,
          -7,
          -7,
          -3.675778341674085,
          -3.1702617153949575,
          -7,
          -7,
          -2.5974757898703773,
          -7,
          -7,
          -7,
          -7,
          -3.1209028176145273,
          -2.4456042032735974,
          -7,
          -7,
          -2.5185139398778875,
          -2.325310371711061,
          -7,
          -7,
          -7,
          -3.0391496280096777,
          -7,
          -3.0492180226701815,
          -7,
          -4.136424596607705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4131425344354496,
          -1.971022689604208,
          -7,
          -7,
          -3.6686550668554445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.936513742478893,
          -7,
          -7,
          -2.8987251815894934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4892551683692608,
          -4.287888068556725,
          -7,
          -2.943247125137862,
          -3.9503283370492603,
          -7,
          -7,
          -7,
          -7,
          -3.1818435879447726,
          -3.0423129401940403,
          -7,
          -7,
          -7,
          -7,
          -3.105510184769974,
          -7,
          -2.9912260756924947,
          -2.0278590441755795,
          -2.761927838420529,
          -2.4643901779147406,
          -2.7734938922709707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.738138151971374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9417598138146954,
          -7,
          -3.839184647626194,
          -7,
          -7,
          -7,
          -7,
          -3.8514295860194783,
          -2.037824750588342,
          -2.1361257789120067,
          -3.7902499685648565,
          -3.8571213297287215,
          -3.052155067199565,
          -7,
          -7,
          -7,
          -2.146128035678238,
          -7,
          -7,
          -7,
          -7,
          -3.5201465220033143,
          -4.505462015353893,
          -7,
          -2.968015713993642,
          -2.6989700043360187,
          -2.506505032404872,
          -3.6633763131685053,
          -7,
          -7,
          -3.6638892986226614,
          -4.079543007402906,
          -7,
          -3.2323183194127485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.174117981254267,
          -7,
          -7,
          -3.766179064078007,
          -3.616031831994069,
          -3.2113875529368587,
          -3.736087605088271,
          -7,
          -3.398981066658131,
          -3.3608772971020398,
          -3.5587885437369464,
          -7,
          -2.659440781870318,
          -7,
          -7,
          -7,
          -7,
          -2.984077033902831,
          -2.945222316635341,
          -7,
          -7,
          -3.1122697684172707,
          -7,
          -1.8908078032841642,
          -7,
          -3.821644517542217,
          -7,
          -3.487875383480801,
          -3.1934029030624176,
          -7,
          -3.4129642719966626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4650852875574327,
          -2.359076226059263,
          -7,
          -7,
          -7,
          -7,
          -3.205745540942662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9745116927373285,
          -7,
          -7,
          -7,
          -2.9561684304753633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5888317255942073,
          -3.7215238812040106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0587106521997347,
          -2.665893545534433,
          -7,
          -2.7662640906519957,
          -7,
          -7,
          -3.184691430817599,
          -3.472902651803664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.283617786365643,
          -7,
          -7,
          -7,
          -4.325577231940418,
          -7,
          -3.985291718592888,
          -3.693111115462141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.724821808681988,
          -7,
          -7,
          -7,
          -7,
          -3.5668203510856804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.358886204405869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.417803722639881,
          -7,
          -7,
          -7,
          -7,
          -3.4528593357958526,
          -7,
          -7,
          -3.6897970549034977,
          -7,
          -7,
          -3.3180633349627615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659250468772661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0328374069729644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6599162000698504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7609122963641055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7369141595391175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4186326873540653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0051805125037805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.42758347362526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.671043183218105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0308020487722676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9878002857518724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1400888398377713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.953131225183445,
          -7,
          -5.433107089399942,
          -7,
          -7,
          -4.545170991450791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.141031478658857,
          -4.747505027465768,
          -7,
          -7,
          -3.951386094880293,
          -3.3176455432211585,
          -3.699577591398909,
          -4.398009490230765,
          -4.131289771865652,
          -7,
          -4.032256025890453,
          -7,
          -4.656280318241814,
          -7,
          -4.393803257655081,
          -7,
          -4.388545220095957,
          -4.050012210075463,
          -7,
          -7,
          -7,
          -4.800497126653524,
          -3.8709888137605755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7043650362227245,
          -7,
          -4.581107318275928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8720591042767154,
          -4.388988785124714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4406887318721586,
          -3.7034633418832934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.172489089107628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3400721281091075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.072654217333034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.783014897628913,
          -7,
          -7,
          -7,
          -3.745465168670727,
          -3.218535505216528,
          -7,
          -7,
          -7,
          -3.481299273332856,
          -7,
          -7,
          -2.8175653695597807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.168129031408031,
          -4.641107085692552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5974757898703773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.382276460538189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9079485216122722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721150843749684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.313213178178013,
          -7,
          -7,
          -4.2820326856053805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.000867721531227,
          -7,
          -7,
          -7,
          -7,
          -3.850125259486936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.666705136119899,
          -7,
          -7,
          -7,
          -7,
          -3.350829273582968,
          -7,
          -7,
          -4.278616433667833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495828686511949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097628609835998,
          -7,
          -2.003901031014158,
          -3.844891183862738,
          -7,
          -4.79657433321043,
          -2.433722385233559,
          -2.6642239827597556,
          -7,
          -4.797928522794656,
          -7,
          -4.1966562421307065,
          -4.49548189455384,
          -2.262959805400504,
          -3.165156610994007,
          -7,
          -3.821313521414233,
          -1.9785670656068557,
          -7,
          -4.620732756383168,
          -7,
          -4.496043558539809,
          -7,
          -4.320021590369593,
          -2.7713956218704094,
          -5.097982264210186,
          -7,
          -7,
          -5.098158983460533,
          -4.496583734489095,
          -5.09754882443547,
          -4.31998348175068,
          -7,
          -3.9262669702523056,
          -5.097691040361552,
          -2.4423754319047664,
          -7,
          -7,
          -3.7558575389603575,
          -7,
          -4.620673816578646,
          -7,
          -7,
          -5.0978332097322445,
          -5.097808940207254,
          -3.4783878216585498,
          -3.023493360732307,
          -4.796758141013766,
          -4.05646479274284,
          -3.8706104335298415,
          -4.319817150451569,
          -4.62058365787334,
          -4.620628739565589,
          -4.796910677093591,
          -4.496981511355553,
          -4.401838061585477,
          -5.097909476553979,
          -7,
          -7,
          -2.7967734227159236,
          -7,
          -7,
          -4.796730401424177,
          -7,
          -3.598561402497095,
          -4.798084105211312,
          -7,
          -3.756853857758851,
          -2.6493132876666134,
          -7,
          -3.984132478110988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.195844324747282,
          -5.098252511606886,
          -4.099646117123231,
          -4.797146309343345,
          -4.399791363015452,
          -4.099279994042449,
          -1.4915811312752698,
          -3.7764348125004576,
          -4.1946426687347085,
          -4.796504951553296,
          -4.796491073891664,
          -7,
          -4.097666762890238,
          -3.9216067174769838,
          -7,
          -4.495450669690435,
          -3.277814400881507,
          -5.097749994285252,
          -7,
          -7,
          -5.099324912538834,
          -7,
          -7,
          -4.620954575698162,
          -5.097711848542565,
          -4.254251057483062,
          -4.620580189857018,
          -5.097625141210313,
          -4.195654082132311,
          -4.496348355776995,
          -2.955247987438747,
          -4.620798620817837,
          -7,
          -7,
          -4.621598595728911,
          -3.924182765452105,
          -4.495627580906491,
          -3.288283107975391,
          -2.2335970419994844,
          -7,
          -4.621605515488349,
          -5.098339093786907,
          -2.217537806855908,
          -5.0978158744956446,
          -3.66872405285837,
          -3.8965985479517316,
          -4.621740428764866,
          -5.097892144361428,
          -7,
          -5.098255975225523,
          -7,
          -7,
          -3.269921362515407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.139433582260135,
          -3.525821952156663,
          -3.236367018022369,
          -3.7375832559402493,
          -4.252832234257769,
          -3.1086943298492145,
          -7,
          -7,
          -4.253808605250558,
          -3.7075599572840225,
          -3.9241551841945124,
          -7,
          -4.796709595569177,
          -7,
          -3.025004034678297,
          -7,
          -7,
          -4.620757023389678,
          -4.253424550927697,
          -7,
          -7,
          -4.099898079134955,
          -4.320720809309493,
          -4.3204474864238644,
          -5.098259438816537,
          -4.621937534348392,
          -5.098037713285091,
          -5.097836676696532,
          -2.2333728424577397,
          -7,
          -7,
          -7,
          -4.796768542903085,
          -7,
          -4.7967962800566575,
          -5.097618203875831,
          -3.7223665188137702,
          -7,
          -3.034066020351715,
          -7,
          -3.0311079538669303,
          -2.2778454830341475,
          -4.796765075634327,
          -3.92279117659816,
          -4.195705974747098,
          -3.894890402801413,
          -4.099463094164411,
          -2.464132404475205,
          -3.984506541488811,
          -5.098152054648372,
          -7,
          -7,
          -5.097899077321453,
          -3.871136636456436,
          -7,
          -3.983598533574965,
          -7,
          -3.1509784117298585,
          -4.796529236394143,
          -3.781888667731667,
          -7,
          -4.196580297209667,
          -7,
          -5.0978054730215385,
          -7,
          -5.097635547004261,
          -5.098391034810722,
          -7,
          -7,
          -7,
          -3.6413168032733307,
          -4.195152133593287,
          -7,
          -5.097583515541089,
          -7,
          -7,
          -7,
          -5.097871344817271,
          -7,
          -7,
          -4.4971405201458134,
          -4.058274146685951,
          -3.7462110006796334,
          -1.7741780084420744,
          -7,
          -5.097666762890238,
          -5.097642484061715,
          -3.7566015347886865,
          -7,
          -7,
          -4.797312561051118,
          -4.143424253450913,
          -7,
          -7,
          -5.097521069555645,
          -4.796567395543485,
          -7,
          -5.097507191450545,
          -7,
          -4.79713245216118,
          -2.7661702832117463,
          -7,
          -7,
          -7,
          -7,
          -5.097840143633142,
          -4.495804420086552,
          -7,
          -4.253095585849032,
          -3.954390695763905,
          -5.097746526628908,
          -3.5487373695237934,
          -4.324045689986502,
          -5.097531477843443,
          -7,
          -4.495620644569206,
          -3.158492706081757,
          -4.320779603142665,
          -2.9278264349968235,
          -4.797527208690113,
          -2.287333578528713,
          -5.09770838058163,
          -4.620441446490588,
          -7,
          -3.9969896179397217,
          -3.4093809808881947,
          -3.738380674663982,
          -3.7593106494104322,
          -3.5829203569251127,
          -4.796567395543485,
          -5.097642484061715,
          -7,
          -4.796986925047644,
          -4.622224387866044,
          -4.621536312932009,
          -7,
          -4.098231729314952,
          -4.496147490722734,
          -5.09773612349375,
          -7,
          -4.797066624507168,
          -7,
          -3.5617996475103078,
          -4.145448488330583,
          -4.39966680039829,
          -5.0980550396692434,
          -2.1298838478853956,
          -4.496022769118216,
          -7,
          -3.2406889987319323,
          -4.79657433321043,
          -7,
          -7,
          -7,
          -3.5213308159082533,
          -4.098799421026242,
          -3.822075124343057,
          -4.496337968483268,
          -3.6686550668554445,
          -7,
          -7,
          -3.00968230860832,
          -7,
          -7,
          -7,
          -4.059553091366152,
          -3.95307593186189,
          -7,
          -7,
          -4.797527208690113,
          -7,
          -7,
          -7,
          -7,
          -5.097947604942953,
          -5.097642484061715,
          -4.1956367832160675,
          -3.529402604807416,
          -2.715369182682153,
          -3.74353362266181,
          -1.902546329729361,
          -4.39931367884421,
          -3.845473576797768,
          -2.8209859108312103,
          -4.401476363357558,
          -7,
          -3.984845690775141,
          -5.0979337404615395,
          -4.321860681427759,
          -3.827304641089735,
          -4.197321917535383,
          -7,
          -7,
          -7,
          -4.6220654322136685,
          -7,
          -4.399182050312353,
          -4.495707340823701,
          -3.799636871557091,
          -5.097826275720638,
          -3.502713823571336,
          -7,
          -7,
          -2.553400657766973,
          -2.330137607834728,
          -2.507919802775988,
          -4.621785390545154,
          -2.750003397874441,
          -3.4602552839485896,
          -2.0516492556611436,
          -1.6871170615951079,
          -2.025145309578206,
          -7,
          -2.688493710291997,
          -1.8570936807822036,
          -2.5585778133847756,
          -2.4389243543919146,
          -2.5486213518850827,
          -2.563699534230925,
          -1.9435533693981495,
          -2.3306564089493405,
          -3.1655636472734026,
          -2.3894252872859263,
          -2.9991403569240753,
          -2.063180094011885,
          -2.762494295245261,
          -1.7735402503935993,
          -2.550474234050802,
          -3.193924634469308,
          -2.554254122485101,
          -2.126452084878187,
          -4.4030484188737224,
          -2.1804201501602662,
          -2.8256937024148434,
          -2.4049034996171,
          -2.696393180099337,
          -2.7329794067090094,
          -3.056487250895864,
          -2.693445042976239,
          -2.782606976675294,
          -2.7654053845042528,
          -2.181661112505638,
          -2.8858386969884844,
          -5.100842497666186,
          -2.465334349505298,
          -2.394777641646316,
          -3.12792263183849,
          -3.3665094270086184,
          -2.788513892301845,
          -3.6086295397104116,
          -1.6141130308781895,
          -3.5489966305126153,
          -3.988425170006303,
          -3.063228371987673,
          -2.6811375522716006,
          -3.1996949881491026,
          -4.499456818023205,
          -3.1699748475961473,
          -3.316008177334867,
          -4.797184414314642,
          -3.3512299205417593,
          -3.035730613217524,
          -4.201390295737178,
          -5.099300726233463,
          -2.5998446272877014,
          -1.595422951718882,
          -2.085481870600912,
          -5.098003058442917,
          -4.149143814728642,
          -4.496053952877427,
          -2.7742464484398566,
          -3.882249899076638,
          -2.461068669666279,
          -3.362024457636707,
          -3.4813088318164627,
          -7,
          -3.07018568637838,
          -2.7398951080054355,
          -3.0173116440067362,
          -3.955886953789943,
          -2.9938466532119907,
          -2.795578236741683,
          -2.5297891748700816,
          -1.7410930796679323,
          -4.621193597796724,
          -2.4018192554030393,
          -2.568561278550861,
          -3.351848051536318,
          -2.128563561760865,
          -5.101049030827831,
          -3.6408445394191995,
          -3.1556767254229467,
          -2.605253418938421,
          -5.098304462986223,
          -7,
          -7,
          -7,
          -2.4978603240083523,
          -2.413575895419909,
          -4.620989224734163,
          -3.739011358223984,
          -4.496614877996609,
          -3.8038768673049046,
          -2.995151085215237,
          -3.4771488280971456,
          -4.797333338040433,
          -7,
          -3.297355896091576,
          -4.79755143643729,
          -2.5411021991707288,
          -3.9240000069741874,
          -3.953424852971817,
          -4.325529346023533,
          -2.916057288417842,
          -4.32436477820229,
          -3.9300146074718962,
          -4.021420172059839,
          -3.737472675456183,
          -3.5629416965348217,
          -4.401076422394576,
          -4.100587638089793,
          -5.099117557629357,
          -4.797295246134027,
          -7,
          -3.5513477757329275,
          -5.098661028041393,
          -7,
          -2.847079426081227,
          -2.0291321571086742,
          -1.708462991770448,
          -5.097673699449098,
          -3.928655258893143,
          -4.2536321900321274,
          -4.499515254927971,
          -4.143926867032187,
          -7,
          -5.097923341810007,
          -3.4523385438459995,
          -7,
          -4.320938652442784,
          -4.33219599532464,
          -5.097715316475808,
          -2.6191302542928296,
          -4.321339474830754,
          -3.598106255035145,
          -7,
          -4.197008176980776,
          -4.620916458565429,
          -3.078712230584682,
          -2.394350064207708,
          -5.098553743137019,
          -4.796879480889998,
          -4.319872601296413,
          -3.071412410230531,
          -2.719019543968662,
          -4.1454899125036295,
          -4.798433098500429,
          -3.404816953347451,
          -4.253691003067721,
          -1.9694903473303493,
          -4.621858011281787,
          -3.2789548377038624,
          -4.797565280257441,
          -4.019863713967843,
          -2.885916546299353,
          -5.097971866720445,
          -3.105072497338436,
          -4.321456887184841,
          -7,
          -4.057261422076152,
          -3.5345166153504253,
          -7,
          -7,
          -2.741570864062097,
          -7,
          -5.099331822664403,
          -3.772188303409967,
          -4.498086455177259,
          -4.6291002495336295,
          -5.1000809189101615,
          -3.239489675978027,
          -3.0289877777129104,
          -3.8723208379738385,
          -4.324255010861404,
          -7,
          -7,
          -2.604779561858258,
          -3.4716634728471267,
          -4.79701464825772,
          -3.163113373376317,
          -2.468104066031306,
          -3.897183637209576,
          -2.7400994009248563,
          -2.852171882663223,
          -4.002415298194856,
          -5.0979441388640945,
          -4.798774909075712,
          -7,
          -7,
          -4.621602055622412,
          -7,
          -3.4832203908795663,
          -5.097704912593001,
          -4.620836748293895,
          -7,
          -2.879878922786258,
          -7,
          -4.7979112324184685,
          -7,
          -5.098068900278887,
          -4.797990762449812,
          -7,
          -4.253348391708968,
          -3.196612816217494,
          -4.024933550857837,
          -7,
          -7,
          -4.145596906666468,
          -7,
          -7,
          -7,
          -7,
          -4.144016929377213,
          -7,
          -3.7508034364302163,
          -3.4642354323751117,
          -4.106704129255459,
          -4.620919923897559,
          -7,
          -3.612999071304003,
          -4.495658793053397,
          -7,
          -2.869316416441605,
          -7,
          -7,
          -4.10191196459515,
          -3.5044198859720406,
          -4.32196760676029,
          -7,
          -7,
          -5.098605658496943,
          -7,
          -3.4185988830152456,
          -7,
          -4.496396826529734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.461095033798302,
          -3.2187979981117376,
          -7,
          -7,
          -2.8311381767490547,
          -3.097344090487375,
          -2.9786369483844743,
          -7,
          -7,
          -3.180125875164054,
          -7,
          -2.5931349642708077,
          -3.3589812256253495,
          -2.9429995933660407,
          -7,
          -2.536862479985503,
          -7,
          -2.678973375919765,
          -7,
          -2.1630761439921695,
          -2.6897526961391565,
          -2.54448146130858,
          -3.66381866823486,
          -2.99563519459755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0187004986662433,
          -7,
          -2.149411576421837,
          -7,
          -3.270601207315846,
          -2.9385197251764916,
          -7,
          -7,
          -7,
          -2.9731278535996988,
          -7,
          -7,
          -7,
          -2.9731278535996988,
          -7,
          -2.325272344086861,
          -2.669316880566112,
          -2.6866362692622934,
          -7,
          -7,
          -2.9609461957338317,
          -2.6651117370750512,
          -7,
          -3.114610984232173,
          -7,
          -7,
          -7,
          -7,
          -3.3572104190061216,
          -2.936513742478893,
          -7,
          -7,
          -7,
          -3.433929765608464,
          -2.338788396167112,
          -7,
          -7,
          -3.9354568807116097,
          -7,
          -2.5386575016693786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.325310371711061,
          -7,
          -1.9599353092375267,
          -3.0203612826477078,
          -2.6088824508987196,
          -7,
          -2.681073174258163,
          -3.087781417809542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.971275848738105,
          -7,
          -7,
          -3.4530123911214554,
          -7,
          -7,
          -7,
          -3.139249217571607,
          -7,
          -2.6473829701146196,
          -7,
          -2.2571984261393445,
          -1.8321894610685132,
          -7,
          -7,
          -2.786041210242554,
          -7,
          -3.307709923404807,
          -7,
          -7,
          -7,
          -3.081707270097349,
          -7,
          -7,
          -3.601299310194338,
          -3.1667589255503157,
          -7,
          -7,
          -7,
          -4.043110668074183,
          -7,
          -2.516667559099043,
          -3.2581581933407944,
          -3.0962145853464054,
          -7,
          -2.9951962915971793,
          -3.028977705208778,
          -7,
          -7,
          -3.693155132538336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1341771075767664,
          -3.038620161949703,
          -2.922595721029815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.401745082237063,
          -7,
          -2.4427409988358755,
          -7,
          -7,
          -2.965201701025912,
          -2.7179477417489277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0711452904510828,
          -7,
          -2.5115491597450657,
          -7,
          -7,
          -3.1651801371648745,
          -2.9542425094393248,
          -7,
          -2.929929560084588,
          -7,
          -7,
          -2.273695587930092,
          -7,
          -2.7714037303044066,
          -7,
          -3.896415976473123,
          -7,
          -7,
          -2.557470466556451,
          -7,
          -7,
          -3.0930713063760633,
          -7,
          -3.1571544399062814,
          -1.7791840558214114,
          -7,
          -7,
          -3.064832219738574,
          -7,
          -2.9849771264154934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.44870631990508,
          -7,
          -2.8721562727482928,
          -7,
          -2.670709595223797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9360107957152097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2942457161381182,
          -4.197302004237172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.930269649751069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.983175072037813,
          -7,
          -3.0265332645232967,
          -7,
          -2.9647309210536292,
          -3.493179120682515,
          -2.4992942336708537,
          -7,
          -7,
          -7,
          -3.4171394097273255,
          -7,
          -3.267562808557224,
          -7,
          -4.029546100423748,
          -7,
          -7,
          -7,
          -2.9028184680822537,
          -3.1894903136993675,
          -2.9156636035057732,
          -1.5308289376514321,
          -3.3126004392612596,
          -7,
          -7,
          -7,
          -7,
          -2.2935203938852355,
          -2.2933625547114453,
          -7,
          -3.0334237554869494,
          -7,
          -7,
          -7,
          -7,
          -2.6725596277632757,
          -2.620656479819621,
          -2.474798818800631,
          -7,
          -7,
          -3.6141059109580307,
          -7,
          -7,
          -7,
          -7,
          -2.946452265013073,
          -2.7774268223893115,
          -7,
          -3.2946866242794433,
          -3.0948203803548,
          -3.2671717284030137,
          -2.568983532526376,
          -7,
          -7,
          -3.00968230860832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.088619264513679,
          -7,
          -7,
          -2.5850845541000504,
          -2.9390197764486667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5581833806318435,
          -7,
          -3.9839869219651898,
          -2.5421335445730757,
          -4.053879995137211,
          -7,
          -2.354588587877241,
          -4.252221753598687,
          -2.452553063228925,
          -7,
          -7,
          -7,
          -2.419680442945259,
          -3.227372442289636,
          -2.531223374533027,
          -7,
          -7,
          -7,
          -1.5356019968889618,
          -7,
          -3.0199466816788423,
          -7,
          -2.298367831128048,
          -2.975431808509263,
          -2.1152486297419344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.262773046675905,
          -4.1365620365899805,
          -7,
          -7,
          -3.104782913501534,
          -3.9635233936946834,
          -4.205028336126359,
          -4.4052438798633045,
          -3.8159096508867747,
          -7,
          -7,
          -7,
          -4.138439545167638,
          -7,
          -4.200662436310718,
          -7,
          -3.3121844111986243,
          -7,
          -7,
          -4.63206229944999,
          -4.460296326757476,
          -7,
          -4.107888025182799,
          -4.239224378487128,
          -3.986447011352735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0608488730388075,
          -4.099490725214397,
          -3.9914918889101596,
          -7,
          -4.27814745163087,
          -3.539431589396556,
          -3.006323393378873,
          -3.1341771075767664,
          -3.034263748439709,
          -7,
          -2.61984189224511,
          -3.225632297346483,
          -7,
          -7,
          -3.0803859471859956,
          -3.2794387882870204,
          -7,
          -7,
          -7,
          -7,
          -2.3678216524185376,
          -4.204092838402539,
          -7,
          -7,
          -3.3249555483094935,
          -3.2581581933407944,
          -4.475421288176064,
          -7,
          -3.1094097905463656,
          -7,
          -3.576885578951076,
          -7,
          -4.24641979006955,
          -3.192660360488874,
          -7,
          -7,
          -3.414221033214868,
          -3.731266349075492,
          -3.8143142002074595,
          -3.3394514413064407,
          -2.6263403673750423,
          -2.659493631822546,
          -2.874452825110791,
          -2.3739622924346047,
          -7,
          -2.825511246424534,
          -3.6679896519391977,
          -2.625312450961674,
          -3.598392527828595,
          -7,
          -7,
          -3.367169488534681,
          -4.038739348104749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5414128157085205,
          -7,
          -2.0248235837250323,
          -7,
          -7,
          -3.541454428747589,
          -7,
          -3.042181594515766,
          -7,
          -3.5248503032721983,
          -7,
          -4.3338904116161245,
          -2.510545010206612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.871689665685515,
          -7,
          -7,
          -7,
          -4.045499008437883,
          -7,
          -7,
          -7,
          -3.0856472882968564,
          -7,
          -3.0253058652647704,
          -7,
          -7,
          -2.9131513129998394,
          -7,
          -7,
          -7,
          -2.960470777534299,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5036007586148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9749719942980692,
          -2.4091814234778517,
          -3.1646502159342966,
          -7,
          -3.7725417326409434,
          -7,
          -3.530711837981657,
          -7,
          -3.4777722083492573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.849746905174019,
          -7,
          -7,
          -3.5184042557045796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.780317312140151,
          -3.2208922492195193,
          -7,
          -7,
          -7,
          -7,
          -3.4718195861103727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0557604646877348,
          -3.121969981607635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5943262408124452,
          -7,
          -7,
          -3.331832044436249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3384564936046046,
          -7,
          -7,
          -3.8952567531448947,
          -7,
          -7,
          -7,
          -4.877169703484078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7321121813966434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.695131297704026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7234967187231707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9153074784494066,
          -2.621176281775035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6399842480415883,
          -7,
          -7,
          -4.09422648522204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.665580991017953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3686494205837585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8698182079793284,
          -7,
          -3.118264726089479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.543372616688624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1058506743851435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3024283417450855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.740402169016284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7797155091498285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14674801363064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.885078384149224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6693912715361305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.130333768495006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.000997730357794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.893928126542607,
          -3.2719577125342236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557194300943595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.693023067923694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7545012293869173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.665017825412473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0701117827822,
          -7,
          -1.6020599913279623,
          -7,
          -7,
          -7,
          -7,
          -2.5622928644564746,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.187238619831479,
          -7,
          -7,
          -7,
          -7,
          -3.891230722978062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7075701760979363,
          -1.716003343634799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495350040967404,
          -7,
          -7,
          -7,
          -3.59955559098598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.251638220448212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1007150865730817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.130333768495006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432836257800043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6201360549737576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732039745997672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.308671106715418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.997561115633588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.302168525012116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.303196057420489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4345689040341987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2600713879850747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080666163176663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8000293592441343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.751279103983342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7466341989375787,
          -3.82187832849502,
          -7,
          -7,
          -7,
          -1.7866968316757637,
          -2.935423287388426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.903731084963894,
          -7,
          -7,
          -7,
          -3.405306509594342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5274424120197287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3117153409899256,
          -7,
          -7,
          -7,
          -3.0236639181977933,
          -7,
          -2.566241023301467,
          -7,
          -7,
          -7,
          -7,
          -3.4720246977002813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0402066275747113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5856486950954656,
          -7,
          -7,
          -7,
          -7,
          -3.4602963267574753,
          -7,
          -7,
          -3.1975562131535367,
          -3.462397997898956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.859438535455056,
          -7,
          -7,
          -1.2320426643848312,
          -7,
          -7,
          -2.514676676986443,
          -2.442793225939769,
          -7,
          -7,
          -7,
          -7,
          -3.0362295440862943,
          -3.0437551269686796,
          -2.1789769472931693,
          -7,
          -3.4782778319196046,
          -7,
          -7,
          -7,
          -3.189770956346874,
          -7,
          -7,
          -7,
          -3.034227260770551,
          -3.19506899646859,
          -7,
          -7,
          -7,
          -7,
          -4.0922292421628566,
          -7,
          -7,
          -3.041787318971752,
          -3.1389339402569236,
          -1.9356991555801393,
          -7,
          -3.318167720128966,
          -2.2299573599427696,
          -7,
          -7,
          -7,
          -4.442432731013761,
          -7,
          -3.26030994579492,
          -3.2971036501492565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.001690454232153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7500453120117676,
          -7,
          -1.7392149424344683,
          -2.597146487833695,
          -7,
          -3.070037866607755,
          -7,
          -7,
          -7,
          -3.229681842317676,
          -7,
          -7,
          -7,
          -7,
          -3.406335758457056,
          -7,
          -7,
          -7,
          -3.1231980750319988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.588983606160755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4046627008737222,
          -7,
          -3.9056879677118523,
          -7,
          -7,
          -3.146593102096305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.048053173115609,
          -7,
          -7,
          -7,
          -3.181128699747295,
          -7,
          -3.4742162640762553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0523090996473234,
          -7,
          -7,
          -7,
          -2.7437709944998567,
          -7,
          -3.720591085320366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0195316845312554,
          -7,
          -3.0354297381845483,
          -3.0519239160461065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2833012287035497,
          -7,
          -7,
          -2.900913067737669,
          -7,
          -7,
          -3.0330214446829107,
          -7,
          -7,
          -3.456897187449348,
          -7,
          -4.207957342972937,
          -7,
          -7,
          -7,
          -7,
          -1.4256972133625911,
          -2.958324931644053,
          -2.65915528094063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1925674533365456,
          -2.831549851995756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0464951643347082,
          -7,
          -7,
          -7,
          -7,
          -4.013963663325294,
          -7,
          -7,
          -3.338257230246256,
          -7,
          -3.022840610876528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.059553091366152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.78993308093175,
          -7,
          -7,
          -7,
          -7,
          -3.0878701126902555,
          -3.521399628115376,
          -4.002989535796033,
          -7,
          -3.2997251539756367,
          -3.7100931764971508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5499836111596887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295567099962479,
          -7,
          -3.506910725551518,
          -7,
          -7,
          -7,
          -4.7539122931976445,
          -7,
          -7,
          -3.7427251313046983,
          -3.463743721247059,
          -7,
          -7,
          -4.438969313737987,
          -7,
          -4.064532861131578,
          -7,
          -4.062055247375354,
          -4.109254476760142,
          -3.930949031167523,
          -7,
          -4.403051852588134,
          -4.359047728111032,
          -7,
          -7,
          -7,
          -4.405383930232088,
          -7,
          -4.790911166601595,
          -7,
          -4.179637952157813,
          -4.332731257471133,
          -7,
          -7,
          -4.410389146513233,
          -7,
          -4.113308149918387,
          -3.9560242822806773,
          -7,
          -7,
          -7,
          -7,
          -4.0640459628644825,
          -4.40348085323734,
          -7,
          -7,
          -4.5811414989920385,
          -4.020257669505882,
          -3.194653071952934,
          -7,
          -7,
          -7,
          -3.511749711344983,
          -3.5377561492826133,
          -7,
          -3.622352201294506,
          -3.6880636969463443,
          -2.9907087504593135,
          -3.3404441148401185,
          -3.4897476056737124,
          -7,
          -7,
          -7,
          -3.9075994426517067,
          -7,
          -7,
          -3.524563019364041,
          -3.6824699984835996,
          -4.0608953340692775,
          -7,
          -7,
          -7,
          -3.7750380149595006,
          -7,
          -3.9047745419933935,
          -3.6856521841155243,
          -7,
          -7,
          -7,
          -7,
          -3.6930891052509565,
          -7,
          -7,
          -7,
          -3.579240388938858,
          -3.545059584694003,
          -7,
          -3.835658870008277,
          -3.7949525327803477,
          -7,
          -4.039552912583547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.025715383901341,
          -7,
          -7,
          -7,
          -7,
          -3.5484713141320112,
          -7,
          -7,
          -7,
          -3.836893516376434,
          -7,
          -4.159486983706769,
          -7,
          -7,
          -3.4510184521554574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5803546611065915,
          -7,
          -7,
          -4.004091982792546,
          -3.8710277796645003,
          -4.7480406520901814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6802448370426077,
          -7,
          -3.76774936734558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.28397928423848,
          -7,
          -7,
          -7,
          -7,
          -3.6578204560156973,
          -3.8606374167737547,
          -7,
          -7,
          -3.739255803268511,
          -7,
          -3.938036986977661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6832272060414346,
          -7,
          -7,
          -7,
          -7,
          -2.851991747962157,
          -7,
          -3.489888199550597,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.029343187519107,
          -7,
          -7,
          -4.300486787986029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.569958818096594,
          -7,
          -7,
          -7,
          -4.175975431749513,
          -7,
          -3.158060793936605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7382254481425052,
          -7,
          -3.5705429398818973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.297213195989642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.747411807886423,
          -2.791690649020118,
          -3.708005198806338,
          -7,
          -7,
          -7,
          -3.6462076122066853,
          -3.0678145111618402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.538238500689552,
          -3.6277753752293034,
          -7,
          -3.113943352306837,
          -2.1570754865616193,
          -7,
          -1.7853298350107671,
          -7,
          -2.2405492482826,
          -2.5118833609788744,
          -2.381415942849977,
          -4.563184334797349,
          -2.517855418930029,
          -7,
          -7,
          -2.852479993636856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7416045736602705,
          -2.7315887651867388,
          -2.906335041805091,
          -2.5949447366950835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.786041210242554,
          -7,
          -2.733598460961339,
          -7,
          -7,
          -7,
          -7,
          -2.7671558660821804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7426465899387362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.516755660221549,
          -7,
          -7,
          -3.6259551837738253,
          -7,
          -2.550228353055094,
          -7,
          -7,
          -7,
          -7,
          -2.7649229846498886,
          -7,
          -2.49876988168213,
          -7,
          -2.214843848047698,
          -7,
          -1.7323937598229684,
          -7,
          -3.5234603103244715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5419950357274104,
          -7,
          -7,
          -7,
          -7,
          -1.9789685974894828,
          -7,
          -7,
          -7,
          -7,
          -3.295823569483015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0863598306747484,
          -7,
          -7,
          -7,
          -2.8830933585756897,
          -3.894355628528032,
          -7,
          -2.213517756996305,
          -3.1711411510283822,
          -7,
          -7,
          -7,
          -2.165541076722373,
          -7,
          -7,
          -3.979548374704095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2322335211147335,
          -7,
          -3.480581786829169,
          -3.037027879755775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.080495299945456,
          -7,
          -7,
          -7,
          -2.623855025918205,
          -7,
          -2.7331972651065692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.928907690243953,
          -7,
          -2.9894498176666917,
          -2.8305886686851442,
          -7,
          -2.9900804134622208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0863598306747484,
          -7,
          -2.6089536992758626,
          -7,
          -7,
          -7,
          -3.104487111312395,
          -2.5478209546538007,
          -7,
          -7,
          -2.9590413923210934,
          -7,
          -3.044147620878723,
          -3.1489109931093564,
          -7,
          -7,
          -2.920123326290724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9353056902899253,
          -7,
          -3.09324653110384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.285557309007774,
          -3.2563568863955257,
          -4.548506115255735,
          -2.7299742856995555,
          -2.7558748556724915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7427251313046983,
          -7,
          -7,
          -7,
          -3.5250880182683524,
          -7,
          -7,
          -7,
          -7,
          -2.792391689498254,
          -7,
          -7,
          -2.2600713879850747,
          -7,
          -7,
          -7,
          -2.2730012720637376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9395192526186187,
          -7,
          -4.025073633178575,
          -7,
          -7,
          -7,
          -2.871961914059928,
          -7,
          -2.6421346345582744,
          -1.7323937598229684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.242624237809914,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9344984512435677,
          -2.1742052269401473,
          -1.945620065594431,
          -7,
          -7,
          -3.496610353010258,
          -7,
          -7,
          -3.781180720937262,
          -7,
          -7,
          -2.3349561161368517,
          -7,
          -7,
          -2.356503891894005,
          -7,
          -7,
          -7,
          -7,
          -3.95307593186189,
          -2.088619264513679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1351326513767748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6473829701146196,
          -2.795184589682424,
          -3.667779718248877,
          -3.4507108781469196,
          -4.588521404407797,
          -7,
          -2.127399335155957,
          -3.770986940942376,
          -1.7846821175426015,
          -7,
          -2.9628426812012423,
          -7,
          -2.621176281775035,
          -3.484157424365381,
          -2.437750562820388,
          -7,
          -7,
          -7,
          -2.2231496826367745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0844137729813017,
          -7,
          -7,
          -3.9226009112525433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.403738050363856,
          -3.7359101389693814,
          -7,
          -7,
          -4.277758155206577,
          -4.358401272531884,
          -4.804895550625822,
          -3.922396715715211,
          -7,
          -7,
          -4.655330558009341,
          -7,
          -4.61212662166355,
          -7,
          -5.102673770548927,
          -3.8899736384039962,
          -4.185287112575202,
          -7,
          -7,
          -7,
          -4.154256553346994,
          -7,
          -4.406156810261728,
          -7,
          -7,
          -3.9438653380278805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.976670880624811,
          -7,
          -7,
          -3.4074758852912557,
          -3.0615278708905076,
          -3.0141003215196207,
          -3.763128376799137,
          -7,
          -3.3427926605253178,
          -3.8063156698081135,
          -3.291590825658001,
          -3.7809290706364975,
          -2.4753001814119373,
          -3.1285608065593205,
          -7,
          -3.754348335711019,
          -7,
          -7,
          -3.5356738034257504,
          -4.19506899646859,
          -7,
          -7,
          -3.280938615533181,
          -3.7259887245144285,
          -5.173457253562059,
          -7,
          -3.0499928569201424,
          -7,
          -3.6606230820578123,
          -7,
          -4.642766146265666,
          -3.3372595397502756,
          -4.069963937850763,
          -7,
          -7,
          -7,
          -3.681964458994683,
          -2.967079734144497,
          -3.075820590183628,
          -7,
          -3.467756051244033,
          -3.177103432436536,
          -7,
          -2.9173876039727284,
          -3.7891222049334066,
          -7,
          -3.858446960810253,
          -7,
          -3.3510228525841237,
          -2.634779458145952,
          -4.025469719061056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2180684590826294,
          -7,
          -3.433449793761596,
          -3.4025193025742495,
          -7,
          -7,
          -7,
          -3.5029730590656314,
          -7,
          -4.154454406139564,
          -2.811909980420099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5264685124694775,
          -7,
          -7,
          -7,
          -2.8819549713396007,
          -7,
          -3.8520528086978505,
          -7,
          -7,
          -7,
          -3.8661395947446504,
          -4.744152108012428,
          -7,
          -7,
          -2.646893624167745,
          -7,
          -2.3844131561393755,
          -7,
          -2.808885867359812,
          -7,
          -7,
          -7,
          -7,
          -2.7664128471123997,
          -3.729083757043612,
          -7,
          -7,
          -7,
          -7,
          -2.5308397786165204,
          -2.851869600729766,
          -7,
          -7,
          -2.3276994240014997,
          -2.532117116248804,
          -7,
          -3.5285310606354114,
          -7,
          -7,
          -7,
          -7,
          -3.4911317334850387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.942008053022313,
          -7,
          -7,
          -2.788875115775417,
          -2.3533998825578037,
          -7,
          -7,
          -3.446537167073644,
          -7,
          -7,
          -7,
          -3.7545012293869173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019095510309654,
          -7,
          -7,
          -4.289499765873857,
          -7,
          -2.8129133566428557,
          -7,
          -2.8041394323353503,
          -7,
          -7,
          -3.12515582958053,
          -7,
          -7,
          -7,
          -7,
          -3.382827209736365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.696705780933917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985067033150501,
          -7,
          -7,
          -7,
          -7,
          -3.110252917353403,
          -7,
          -7,
          -2.924795995797912,
          -7,
          -3.5928426831311002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8582122574519104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0881360887005513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.655330558009341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3644571851188294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8686444383948255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669540015259445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.392696953259666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -1.7323937598229684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149065080207621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432847479030527,
          -7,
          -7,
          -4.242106419122238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.72222246396973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658240414670103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5763528698005445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6232492903979003,
          -7,
          -7,
          -7,
          -3.1818435879447726,
          -7,
          -4.335076597314406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3973315703911284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2616593037647066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.858537197569639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7569022317166274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.736069662371753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -1.6957005197711714,
          -7,
          -1.5631419252975927,
          -1.893946607552074,
          -7,
          -4.426722664145779,
          -7,
          -7,
          -7,
          -1.9294189257142926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4937089351985215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0128372247051725,
          -3.3102683666324477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.12057393120585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3222192947339195,
          -7,
          -7,
          -1.1878523699414716,
          -1.693140460675295,
          -7,
          -7,
          -7,
          -2.8097280132159064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.936513742478893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432937238438368,
          -7,
          -3.024074987307426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.173186268412274,
          -7,
          -7,
          -2.3138672203691537,
          -7,
          -2.399865929708076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.824256037629682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4300457222310743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6020599913279623,
          -7,
          -7,
          -7,
          -7,
          -3.874964742781923,
          -4.979425443774774,
          -7,
          -7,
          -3.2571984261393445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153814864344529,
          -7,
          -7,
          -4.126737329204574,
          -4.56220956711611,
          -7,
          -4.331234909038874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8471612005780302,
          -7,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -7,
          -7,
          -3.9856060830524367,
          -7,
          -1.7337321105952306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6541765418779604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3027060294129456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5893910231369333,
          -7,
          -7,
          -3.4111144185509046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6503075231319366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.037426497940624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7571776877918075,
          -7,
          -7,
          -7,
          -3.6250036010148636,
          -3.349180358996378,
          -2.6148972160331345,
          -2.5634810853944106,
          -7,
          -7,
          -7,
          -3.131030225594209,
          -7,
          -7,
          -7,
          -2.899895344556287,
          -2.225309281725863,
          -2.3170181010481117,
          -7,
          -2.388278863459639,
          -1.7273378880330803,
          -7,
          -4.259617766814334,
          -2.1722136039924793,
          -7,
          -7,
          -2.699837725867246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7374312005145827,
          -7,
          -2.294466226161593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2403828200445397,
          -7,
          -2.6374897295125104,
          -7,
          -7,
          -7,
          -2.5877109650189114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.222716471147583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9816244801547354,
          -7,
          -4.21988565138146,
          -2.835056101720116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.597695185925512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2210041567525165,
          -7,
          -7,
          -2.2889196056617265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5071730310804767,
          -7,
          -2.343605508104172,
          -7,
          -7,
          -7,
          -7,
          -2.1164416975393117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.691435152144062,
          -3.4382258076045296,
          -3.449169732165201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.752432609261474,
          -7,
          -7,
          -2.1015179552484096,
          -3.7795964912578244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8836614351536176,
          -7,
          -7,
          -3.951377999243531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5644293269979834,
          -7,
          -7,
          -3.3707813182108777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0784568180532927,
          -7,
          -7,
          -2.79309160017658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.754348335711019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7356928113607588,
          -7,
          -5.14993618427544,
          -2.513217600067939,
          -2.5550944485783194,
          -2.546542663478131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4955443375464483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.718501688867274,
          -7,
          -7,
          -7,
          -3.2258259914618934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3994141053637703,
          -7,
          -4.499357113387459,
          -7,
          -7,
          -7,
          -3.15259407792747,
          -3.003029470553618,
          -3.04493154614916,
          -1.9336559786575473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.812244696800369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.846337112129805,
          -2.680335513414563,
          -7,
          -7,
          -4.608558123116898,
          -7,
          -7,
          -7,
          -2.5352941200427703,
          -7,
          -1.8075350280688534,
          -7,
          -7,
          -7,
          -3.1172712956557644,
          -7,
          -7,
          -7,
          -4.797527208690113,
          -2.5850845541000504,
          -7,
          -7,
          -7,
          -7,
          -2.1351326513767748,
          -7,
          -7,
          -7,
          -2.5171958979499744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.356599435724971,
          -3.4169731726030363,
          -4.831231295244944,
          -7,
          -7,
          -3.4324265460524686,
          -1.912677450997669,
          -7,
          -7,
          -7,
          -7,
          -2.6060741174982827,
          -1.7297046213121872,
          -7,
          -2.506505032404872,
          -7,
          -2.9041743682841634,
          -7,
          -2.705007959333336,
          -7,
          -3.1020905255118367,
          -7,
          -3.0970836960665213,
          -7,
          -7,
          -4.619458568994316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.734367719627033,
          -7,
          -7,
          -4.576387426751579,
          -7,
          -7,
          -4.0948552900836805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.785891918069435,
          -7,
          -4.158754386632288,
          -7,
          -7,
          -7,
          -4.705401815129262,
          -7,
          -7,
          -4.2396997966866605,
          -7,
          -7,
          -4.240524288112364,
          -7,
          -7,
          -7,
          -7,
          -3.1065308538223815,
          -4.572976098995143,
          -4.306360682861051,
          -7,
          -2.9148718175400505,
          -7,
          -7,
          -4.243620852909535,
          -7,
          -7,
          -7,
          -4.14370162942477,
          -3.2362852774480286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.754348335711019,
          -4.5033184658590395,
          -7,
          -7,
          -3.3085644135612386,
          -7,
          -3.9137502924428413,
          -7,
          -4.641721924765832,
          -7,
          -7,
          -7,
          -7,
          -4.0100454126360985,
          -4.279370318179108,
          -7,
          -7,
          -3.2532168125021292,
          -3.8595885767354927,
          -3.446847710155809,
          -7,
          -3.492147669460123,
          -7,
          -7,
          -4.333527878521092,
          -7,
          -7,
          -3.6148972160331345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.694517453811156,
          -7,
          -3.111262513659065,
          -7,
          -7,
          -3.9956790605116224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.328420380348951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9432570234747906,
          -7,
          -7,
          -3.388278863459639,
          -7,
          -7,
          -7,
          -7,
          -2.6364878963533656,
          -3.4379090355394983,
          -7,
          -7,
          -3.3093107157881754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -3.7593476255559497,
          -7,
          -3.4202858849419178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8221680793680175,
          -7,
          -7,
          -2.606381365110605,
          -3.614053105987219,
          -7,
          -2.9242792860618816,
          -7,
          -7,
          -3.1541195255158465,
          -7,
          -3.7380667147774695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.315760490665735,
          -7,
          -7,
          -4.2847690133490195,
          -3.4689378056654614,
          -7,
          -7,
          -2.629409599102719,
          -7,
          -2.3450468246483553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8538198458567634,
          -2.6009728956867484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.629409599102719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6778805815115905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9802988641377226,
          -7,
          -7,
          -7,
          -7,
          -3.03261876085072,
          -7,
          -7,
          -7,
          -7,
          -3.568788212315347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8769333746983357,
          -1.6901960800285138,
          -7,
          -7,
          -2.305351369446624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8750612633917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7853298350107671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.735574948974428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.824776462475546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.110589710299249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5563025007672873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9390197764486667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5171958979499744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.643798000679235,
          -7,
          -5.43283786085072,
          -7,
          -7,
          -7,
          -2.6434526764861874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6875289612146345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.134591434710877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603231006269363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779632560730201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.582404298019028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657552998005808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.575937971768604,
          -1.5910646070264993,
          -2.0718820073061255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6922298357727557,
          -1.9867717342662448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.681241237375587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7315887651867388,
          -7,
          -7,
          -7,
          -1.361727836017593,
          -2.7466341989375787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.919078092376074,
          -7,
          -4.0697790608815145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.72718326387996,
          -7,
          -7,
          -7,
          -7,
          -1.7781512503836436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0672754881753015,
          -7,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.311753861055754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5440680443502757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.400537989391946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8987251815894934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432821830077669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0253058652647704,
          -3.3432115901797474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6743711737058353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080633701055939,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657533887557986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9137344010040573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0711452904510828,
          -7,
          -7,
          -1.845098040014257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.654651341985247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.952550293898202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3364597338485296,
          -7,
          -7,
          -7,
          -7,
          -4.659516883764218,
          -7,
          -7,
          -7,
          -7,
          -3.641275757231913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.904715545278681,
          -7,
          -7,
          -2.696356388733332,
          -3.5992048550135713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2585055858202585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6138418218760693,
          -7,
          -7,
          -7,
          -3.2959667268431296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4282200752233494,
          -7,
          -7,
          -2.503109436671369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4293484729236616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.534026106056135,
          -7,
          -2.2827353726210187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1767487829994527,
          -2.7715874808812555,
          -7,
          -7,
          -7,
          -7,
          -2.4533183400470375,
          -2.481442628502305,
          -1.7126497016272113,
          -7,
          -3.0419845014867866,
          -7,
          -7,
          -7,
          -2.569958818096594,
          -7,
          -7,
          -7,
          -1.9622114391106,
          -1.7912226592314022,
          -2.447158031342219,
          -7,
          -7,
          -2.6866362692622934,
          -7,
          -7,
          -7,
          -2.4742162640762553,
          -7,
          -2.718501688867274,
          -7,
          -3.526339277389844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.683137131483007,
          -7,
          -7,
          -7,
          -7,
          -3.7963661549775214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.930257508276295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1889284837608534,
          -2.7363965022766426,
          -7,
          -7,
          -7,
          -7,
          -3.6147187910628036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3699205499219165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2,
          -2.722633922533812,
          -7,
          -7,
          -2.8546096380957953,
          -7,
          -7,
          -2.342422680822206,
          -3.919705534549121,
          -7,
          -7,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6138418218760693,
          -3.9890491564382202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4608978427565478,
          -7,
          -3.2011238972073794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0068937079479006,
          -3.1720188094245563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -7,
          -7,
          -7,
          -2.4913616938342726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.803912112528065,
          -2.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1264561134318045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.78993308093175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6533572544805337,
          -3.0998532198843813,
          -4.831082341835677,
          -7,
          -2.597329464234929,
          -4.2444626770883245,
          -2.7307822756663893,
          -7,
          -2.48572142648158,
          -7,
          -2.979548374704095,
          -3.1371958119405483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9041743682841634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.733622520930981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7375901662857216,
          -7,
          -7,
          -7,
          -4.543521730675292,
          -7,
          -7,
          -7,
          -3.839697967180202,
          -1.7462448717201984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6509331989884437,
          -7,
          -7,
          -4.63364011946669,
          -7,
          -3.287801729930226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3636119798921444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.303188855130554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.756636108245848,
          -7,
          -7,
          -7,
          -3.1265642948950374,
          -2.9180303367848803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7596678446896306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -4.3576585630856135,
          -7,
          -7,
          -7,
          -7,
          -3.6327608884794387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1084522639030685,
          -7,
          -7,
          -4.03250939649661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6552825351772134,
          -7,
          -7,
          -7,
          -2.509202522331103,
          -2.6711728427150834,
          -2.167317334748176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0394141191761372,
          -7,
          -7,
          -7,
          -3.1501421618485588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.400537989391946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.326335860928751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7041505168397992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9123549292524067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6754116937148633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6627578316815743,
          -7,
          -7,
          -7,
          -7,
          -4.427120797579584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2177470732627937,
          -7,
          -7,
          -7,
          -7,
          -3.494163873715923,
          -7,
          -7,
          -7,
          -7,
          -2.8561244442423,
          -7,
          -2.6344772701607315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2576785748691846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1772478362556233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6516379303968227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3640817414110704,
          -2.8447877188278463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8178957571617955,
          -7,
          -7,
          -7,
          -4.606650028578438,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.449478399187365,
          -2.5998830720736876,
          -7,
          -7,
          -5.097947604942953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.830946156923676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3664229572259727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.041392685158225,
          -7,
          -4.302525732960741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3016809492935764,
          -7,
          -7,
          -4.138113146487167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.184151775723396,
          -7,
          -7,
          -4.052039507001472,
          -4.979648514925287,
          -7,
          -7,
          -7,
          -7,
          -4.610915555324175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1553056661596255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.584331224367531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.287129620719111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6989700043360187,
          -7,
          -7,
          -7,
          -7,
          -3.4087486061842442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.302882647346662,
          -7,
          -7,
          -7,
          -7,
          -3.9212181211949506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.354108439147401,
          -7,
          -7,
          -2.5185139398778875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.280737673504682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.27731117917403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.65786819904679,
          -7,
          -7,
          -7,
          -7,
          -3.623766000133931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8952567531448947,
          -7,
          -7,
          -7,
          -3.9228349834772342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2648178230095364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7234967187231707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517446633919386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.716003343634799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0969100130080562,
          -2.603144372620182,
          -7,
          -7,
          -3.0257153839013404,
          -7,
          -7,
          -7,
          -2.4578818967339924,
          -4.258605359868985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3660492098002353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.395326393069351,
          -7,
          -7,
          -4.250297992339864,
          -7,
          -7,
          -7,
          -2.123851640967086,
          -7,
          -7,
          -7,
          -3.193958978019187,
          -7,
          -7,
          -7,
          -7,
          -3.824488447213163,
          -7,
          -7,
          -2.6364878963533656,
          -7,
          -7,
          -7,
          -2.2317243833285163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1818435879447726,
          -7,
          -7,
          -2.2536610209467267,
          -7,
          -7,
          -5.1491174573697025,
          -7,
          -7,
          -1.9344984512435677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.981274832706589,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9258275746247424,
          -2.8165726960261033,
          -7,
          -7,
          -7,
          -7,
          -2.2922560713564764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.406199423663313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8864907251724818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7168377232995247,
          -7,
          -7,
          -7,
          -5.097642484061715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9460590603851236,
          -7,
          -7,
          -7,
          -7,
          -4.242317763715195,
          -7,
          -7,
          -2.34143452457814,
          -7,
          -7,
          -2.9324737646771535,
          -2.954724790979063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.520701826026063,
          -7,
          -3.34966598409663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7726883546821415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2477278329097232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3024283417450855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0111473607757975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9148718175400505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6148972160331345,
          -7,
          -2.404833716619938,
          -7,
          -7,
          -3.3935752032695876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3096301674258988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -4.080687803242536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5998830720736876,
          -7,
          -7,
          -2.1398790864012365,
          -3.2837533833325265,
          -7,
          -7,
          -7,
          -2.9116901587538613,
          -3.4129642719966626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278730742746982,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14674801363064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7693773260761385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.652922887567942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275288314435602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7065850372590567,
          -7,
          -7,
          -7,
          -3.330007700872759,
          -7,
          -2.6748611407378116,
          -7,
          -7,
          -3.0149403497929366,
          -7,
          -3.4356320489516605,
          -3.6121478383264867,
          -7,
          -2.7589118923979736,
          -3.0859577327195216,
          -7,
          -2.6794278966121188,
          -7,
          -2.741939077729199,
          -7,
          -2.4578818967339924,
          -4.561399560442028,
          -2.708420900134713,
          -7,
          -7,
          -2.749736315569061,
          -2.850033257689769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039751111967191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6798406848590526,
          -7,
          -2.694605198933569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2121876044039577,
          -7,
          -7,
          -7,
          -7,
          -3.56054423863114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9400735532451134,
          -2.7701152947871015,
          -1.290744823265525,
          -7,
          -2.3921104650113136,
          -7,
          -3.6184664921990803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4747017805962495,
          -7,
          -7,
          -7,
          -2.3334472744967503,
          -1.7169848005087767,
          -7,
          -7,
          -7,
          -7,
          -3.3695498016648924,
          -7,
          -7,
          -7,
          -2.862131379313037,
          -7,
          -7,
          -3.545801757159276,
          -4.105510184769974,
          -7,
          -7,
          -7,
          -4.738360325902248,
          -2.665580991017953,
          -3.0689276116820716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146438135285775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7752462597402365,
          -7,
          -7,
          -7,
          -2.3386375628096054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6711728427150834,
          -2.9810253750197253,
          -2.6242820958356683,
          -7,
          -7,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -2.496006598880036,
          -7,
          -7,
          -7,
          -7,
          -2.6061403530336102,
          -7,
          -7,
          -7,
          -7,
          -2.9809119377768436,
          -2.7983052820219765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0661394928706995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9390197764486667,
          -3.00774777800074,
          -3.2379205663503803,
          -4.849087576982787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.93976877545335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5457330907430338,
          -7,
          -7,
          -7,
          -3.3350565194390915,
          -7,
          -7,
          -2.7366620446156418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.255754786643044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -2.7371926427047373,
          -2.3636119798921444,
          -2.455910240382743,
          -2.707144188342445,
          -7,
          -7,
          -3.3535743172231056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.857935264719429,
          -7,
          -7,
          -7,
          -2.65864725984816,
          -7,
          -7,
          -7,
          -4.1956367832160675,
          -1.5581833806318435,
          -7,
          -7,
          -7,
          -7,
          -2.6473829701146196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530286164160012,
          -7,
          -2.1692824715034074,
          -3.8483492528054675,
          -2.308919955522892,
          -7,
          -7,
          -7,
          -2.0839801289293933,
          -2.9845273133437926,
          -2.2398355349224595,
          -7,
          -7,
          -7,
          -1.3562990843061946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.451956914223988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100094715014989,
          -4.734855812377757,
          -7,
          -7,
          -4.099922232196922,
          -4.356971855954572,
          -4.32672491280211,
          -7,
          -4.282395504742525,
          -7,
          -4.653887558070977,
          -7,
          -7,
          -7,
          -3.9559418903973125,
          -7,
          -4.78632543439007,
          -7,
          -7,
          -7,
          -4.453027693687722,
          -7,
          -7,
          -7,
          -4.282123418809911,
          -4.241222631195891,
          -4.182528775278964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.668618844816744,
          -3.126780577012009,
          -3.6704314093606056,
          -3.228015175101788,
          -3.448474428212161,
          -2.9459607035775686,
          -7,
          -7,
          -3.129838563786958,
          -3.3186197661495815,
          -2.9554472105776957,
          -3.775501223589831,
          -3.446381812222442,
          -3.2413804341476116,
          -7,
          -3.7427251313046983,
          -7,
          -7,
          -7,
          -3.5886637957802043,
          -7,
          -7,
          -2.743375903237164,
          -3.2990667156532036,
          -4.0268162428984065,
          -7,
          -7,
          -7,
          -4.312399526311494,
          -7,
          -3.8637737766125007,
          -3.145714224801858,
          -4.0643831044121965,
          -7,
          -3.673389578188305,
          -4.01262635095405,
          -3.6785639001849493,
          -2.9304395947667,
          -3.36332987888716,
          -7,
          -3.258996253248911,
          -3.456214155357989,
          -7,
          -3.0499498468203896,
          -4.264569921179731,
          -7,
          -3.635010993287761,
          -7,
          -3.0195316845312554,
          -2.6653724963034815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.998302940098541,
          -7,
          -3.131297796597623,
          -7,
          -7,
          -3.3960248966085933,
          -7,
          -7,
          -7,
          -3.7937903846908188,
          -7,
          -4.630092107840592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.84279639517558,
          -7,
          -7,
          -7,
          -4.165748681559414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.382931521415937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.31921019418185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.742882171437273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.286141975203335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.855670556918036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.000650953629595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2962262872611605,
          -7,
          -7,
          -7,
          -4.03235393660285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.079181246047625,
          -2.171726453653231,
          -7,
          -7,
          -7,
          -3.8583165857151207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7004441010277516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.181516927920419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.217352319881362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7275412570285567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1559430179718366,
          -2.680335513414563,
          -2.271841606536499,
          -7,
          -7,
          -7,
          -1.9294189257142926,
          -7,
          -7,
          -7,
          -3.3207692283386865,
          -7,
          -7,
          -7,
          -2.801403710017355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3774883833761327,
          -7,
          -2.9788269866677775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.220108088040055,
          -7,
          -3.6190933306267428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7263196121107756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.371714202642618,
          -7,
          -3.4163075870598827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.416640507338281,
          -7,
          -2.967547976218862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9122220565324155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7735751766826517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6471406962754473,
          -7,
          -2.7267272090265724,
          -2.3909351071033793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6424645202421213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.450310706005005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4093694704528195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.608739919068788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305308367864144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.529402604807416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.795184589682424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.38147609027503,
          -5.432972495987906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.617314933298294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.396548037987132,
          -4.732723376813052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3870515144724935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.387496606935564,
          -3.957176130404846,
          -7,
          -7,
          -7,
          -2.8243699338659654,
          -7,
          -7,
          -7,
          -3.541903595684562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.126131407261984,
          -7,
          -7,
          -4.183383742052695,
          -7,
          -7,
          -7,
          -4.3774383046052785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8711263248776597,
          -7,
          -4.604139617721083,
          -4.5624713049774686,
          -7,
          -7,
          -7,
          -7,
          -3.1151665612324684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9865478134147243,
          -7,
          -2.734399742520567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9459607035775686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6402726869436295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8020892578817325,
          -7,
          -7,
          -7,
          -7,
          -4.6038369584054015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7141620460988536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9498289589353135,
          -3.9455178220778397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9458623244896174,
          -7,
          -3.052252948311862,
          -3.13640344813399,
          -7,
          -7,
          -2.72191361402292,
          -2.5786055058446684,
          -7,
          -3.9644482079166607,
          -7,
          -3.975615597966895,
          -7,
          -2.9404902712924867,
          -3.6201013378002385,
          -7,
          -3.980866554582079,
          -2.4359702501023976,
          -7,
          -3.6481159567559627,
          -7,
          -7,
          -3.950413539369381,
          -7,
          -2.934712049839496,
          -3.9508514588885464,
          -7,
          -3.649140064144219,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.708633321015398,
          -7,
          -2.5501563844606956,
          -7,
          -3.480533912223829,
          -7,
          -7,
          -7,
          -3.471047107007469,
          -3.9474337218870508,
          -3.94875518016827,
          -7,
          -3.7019563451928037,
          -2.880432465023419,
          -3.9482172935599706,
          -7,
          -3.6924503234060153,
          -7,
          -7,
          -3.947776708464738,
          -7,
          -7,
          -3.989271791641693,
          -7,
          -7,
          -7,
          -3.0066461633496013,
          -7,
          -7,
          -7,
          -7,
          -3.1820068258650944,
          -3.4892551683692608,
          -7,
          -3.4933186082321015,
          -1.8397016936749504,
          -7,
          -3.9533246963891853,
          -3.6431070774941166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3596932228588203,
          -3.492248057013865,
          -2.3962098539237355,
          -3.96208508051736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.952469547503639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9459607035775686,
          -3.9523564773237907,
          -7,
          -3.6690843266211157,
          -7,
          -7,
          -7,
          -7,
          -2.980890327323183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7743344507093037,
          -2.129003424907397,
          -7,
          -3.660248683421062,
          -7,
          -3.25594754939894,
          -3.9485107688376573,
          -3.1362221332448503,
          -3.9890936926103255,
          -3.6620964454179235,
          -3.4722687519252506,
          -7,
          -3.47736246243589,
          -7,
          -7,
          -3.4722443526734725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4276808163314625,
          -7,
          -3.2742733377584177,
          -7,
          -3.473389638266334,
          -3.471936804594729,
          -3.9474337218870508,
          -7,
          -7,
          -3.7467898321526123,
          -3.6817385815870307,
          -3.643847310299714,
          -3.947531745695593,
          -7,
          -2.766710207262259,
          -7,
          -7,
          -3.949585151326652,
          -7,
          -7,
          -7,
          -3.977815026083187,
          -7,
          -3.9598995878659435,
          -7,
          -7,
          -7,
          -7,
          -2.72352583496175,
          -7,
          -7,
          -7,
          -7,
          -3.9464031338990546,
          -7,
          -7,
          -3.4109037084978153,
          -3.9440876794154343,
          -3.0845487813702075,
          -7,
          -7,
          -2.873815282752997,
          -7,
          -7,
          -7,
          -7,
          -3.9720175986740154,
          -3.684665864025861,
          -7,
          -3.652101229519464,
          -3.6579636693663447,
          -3.951580344903392,
          -7,
          -2.920123326290724,
          -7,
          -7,
          -7,
          -2.424959376626245,
          -7,
          -3.7302976620971497,
          -7,
          -7,
          -7,
          -3.9483640559883693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.945222316635341,
          -7,
          -7,
          -7,
          -3.9492924014120256,
          -7,
          -3.6465017500316117,
          -3.666798683666174,
          -3.673711908836969,
          -3.5975489342043447,
          -2.9213725507652892,
          -7,
          -7,
          -3.9460590603851236,
          -3.6660965854124314,
          -7,
          -7,
          -3.478662674197249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.476155081947642,
          -3.359598357309753,
          -7,
          -7,
          -7,
          -3.6455696293511517,
          -7,
          -7,
          -7,
          -3.6532607660371457,
          -3.509023209990858,
          -3.947531745695593,
          -3.139839746351216,
          -3.5296869537729165,
          -7,
          -7,
          -7,
          -7,
          -3.9644482079166607,
          -2.953308577080214,
          -3.9589459324939362,
          -3.221957309667391,
          -2.799586678381622,
          -3.6439952055784817,
          -3.947139517642829,
          -2.990646174872535,
          -3.4998244958395794,
          -3.1361314474057442,
          -3.0988599540923243,
          -3.698622429702098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6540802353065707,
          -7,
          -7,
          -7,
          -7,
          -3.948559662108962,
          -3.450557009418329,
          -2.8276461582923424,
          -3.9603280505301433,
          -7,
          -3.066955652692866,
          -3.952550293898202,
          -7,
          -3.377215156263061,
          -7,
          -7,
          -3.4836348361821106,
          -7,
          -7,
          -7,
          -3.2121876044039577,
          -7,
          -7,
          -3.953131225183445,
          -2.715369182682153,
          -3.9839869219651898,
          -7,
          -7,
          -7,
          -3.0878701126902555,
          -3.667779718248877,
          -7,
          -7,
          -3.356599435724971,
          -3.643798000679235,
          -7,
          -7,
          -3.6533572544805337,
          -7,
          -3.9460590603851236,
          -7,
          -7,
          -7,
          -3.567731962548069,
          -2.5727857511946253,
          -7,
          -3.6885088076565213,
          -2.781635717816913,
          -3.2059708324774667,
          -7,
          -7,
          -3.9501700598082,
          -3.6778349886836756,
          -3.275234549433838,
          -3.3820620915331476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.98878184345364,
          -7,
          -3.4384236728783075,
          -7,
          -7,
          -3.6205957957123824,
          -3.508361355145994,
          -3.5888317255942073,
          -7,
          -3.5949079461082594,
          -7,
          -7,
          -3.270691772933909,
          -3.7559164129647007,
          -7,
          -7,
          -3.7612698875591977,
          -3.731604879710846,
          -3.2238399127102326,
          -3.6780238421039844,
          -4.13951702345246,
          -3.741099049455883,
          -3.5239008479609306,
          -3.789909598573103,
          -3.6918679935514755,
          -4.220683277974345,
          -3.467089898520816,
          -7,
          -3.5198842216180046,
          -3.832998282627148,
          -3.4563470513120462,
          -3.450308995076148,
          -3.5242190397438335,
          -7,
          -3.8181525516426755,
          -3.8007342573129406,
          -3.627896295508615,
          -3.412090777733802,
          -3.8965078459300058,
          -4.170936108609079,
          -3.2986011898012517,
          -4.297826142585328,
          -3.411170590636853,
          -3.820634880594385,
          -3.3456677356353532,
          -7,
          -3.430956718067923,
          -3.0596239952953614,
          -3.243781916093795,
          -7,
          -3.3434523602537487,
          -7,
          -2.3702937992424595,
          -3.6892200372638357,
          -7,
          -3.463167493195676,
          -2.592235212807746,
          -3.4360035356698964,
          -3.998259338423699,
          -3.2990712600274095,
          -3.699837725867246,
          -7,
          -3.465977368285823,
          -3.2025064803976218,
          -3.2561964080632047,
          -7,
          -2.830225931135402,
          -2.84294413666749,
          -3.3391752955084275,
          -7,
          -4.0218092770223395,
          -7,
          -3.2468150066618233,
          -3.645978700535912,
          -2.7560471605673933,
          -3.0210858833099774,
          -3.3468092004059016,
          -7,
          -3.641110393607365,
          -3.2303095531954753,
          -2.9069210167624506,
          -4.005395031886706,
          -3.2116544005531824,
          -3.604262062742623,
          -3.0814799602050034,
          -3.273695587930092,
          -7,
          -3.0448870428359847,
          -3.1631998609074703,
          -7,
          -2.8421030098272815,
          -7,
          -7,
          -3.2548586942269258,
          -3.233987782369209,
          -7,
          -7,
          -7,
          -7,
          -4.3100982718562,
          -3.787129727467307,
          -7,
          -3.989983458301399,
          -3.9607560909017727,
          -7,
          -3.66216735642827,
          -7,
          -7,
          -7,
          -3.5632733812690205,
          -3.959279950130939,
          -3.406948735950354,
          -7,
          -7,
          -7,
          -4.15124723746237,
          -7,
          -7,
          -7,
          -7,
          -4.0655797147284485,
          -7,
          -7,
          -3.966517176446792,
          -7,
          -7,
          -3.885926339801431,
          -7,
          -7,
          -3.6260208317947957,
          -3.4399805351710797,
          -3.4819951270342555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.050031562368401,
          -7,
          -7,
          -7,
          -7,
          -4.13443212489584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.700054385628239,
          -3.9588027033995026,
          -7,
          -7,
          -7,
          -3.699577591398909,
          -7,
          -7,
          -3.8213169705910977,
          -7,
          -3.3704727148375038,
          -7,
          -7,
          -7,
          -3.9665640840973104,
          -3.9293422787484373,
          -7,
          -3.8369567370595505,
          -7,
          -3.955495329184127,
          -7,
          -7,
          -7,
          -7,
          -3.4978277360835044,
          -7,
          -7,
          -3.2963830892565467,
          -3.9805487393597705,
          -3.3551065529544917,
          -7,
          -3.8435130786088068,
          -4.12100143498964,
          -3.7138683912822246,
          -7,
          -7,
          -7,
          -3.5315906696251984,
          -7,
          -7,
          -7,
          -3.8627870982353443,
          -7,
          -3.7701152947871015,
          -3.8410308092337435,
          -3.856366323659248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.060130999531045,
          -7,
          -7,
          -7,
          -3.5789446747120905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9573678084315276,
          -7,
          -7,
          -3.8208907898990563,
          -4.073645045513152,
          -4.0603200286882855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8386759678553695,
          -7,
          -7,
          -3.702645906884803,
          -4.060093183824469,
          -3.980367026184775,
          -7,
          -7,
          -7,
          -7,
          -3.7847242485457184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0681858617461617,
          -3.0791812460476247,
          -4.076813326169952,
          -7,
          -3.368100851709351,
          -7,
          -2.677536763713164,
          -3.2081052932151874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2762883465645865,
          -7,
          -7,
          -3.488973524726508,
          -3.2460675192399124,
          -7,
          -3.382197210377454,
          -7,
          -2.9175055095525466,
          -7,
          -7,
          -4.583855954817508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7944880466591697,
          -7,
          -7,
          -3.071513805095089,
          -3.2979427962988312,
          -7,
          -2.935339292710299,
          -7,
          -7,
          -3.379124146070392,
          -7,
          -7,
          -7,
          -7,
          -3.554489160003819,
          -3.158844773634988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.440279213235588,
          -3.514547752660286,
          -7,
          -7,
          -7,
          -4.108666482553972,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4429498695778618,
          -7,
          -7,
          -3.9706257766882946,
          -7,
          -3.397070549959409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6979264448065052,
          -7,
          -7,
          -2.3635870776856063,
          -2.5224442335063197,
          -7,
          -7,
          -7,
          -7,
          -3.3749315539781883,
          -2.5984257066728684,
          -7,
          -7,
          -3.6326597132939136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.072801149409849,
          -7,
          -2.9500401482063032,
          -7,
          -3.8340390181594666,
          -7,
          -7,
          -7,
          -3.123688341667586,
          -2.2613328542058917,
          -7,
          -3.736157375273132,
          -2.9618065669531717,
          -7,
          -7,
          -7,
          -3.8502325702897666,
          -7,
          -7,
          -3.5140161804006493,
          -7,
          -7,
          -7,
          -3.4019172505175748,
          -7,
          -7,
          -3.5766868052009952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.361979527987491,
          -3.1980152497483316,
          -2.229809782952539,
          -2.249504090935526,
          -7,
          -3.6202401898458314,
          -7,
          -7,
          -3.1336985461157765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4169731726030363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.422925790625542,
          -7,
          -3.367355921026019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.582404298019028,
          -7,
          -2.9276502821475883,
          -7,
          -7,
          -3.14553379809076,
          -7,
          -7,
          -3.1288837020997735,
          -7,
          -7,
          -7,
          -3.4154741681092355,
          -3.3967222785037734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5397032389478253,
          -7,
          -3.629817196018516,
          -7,
          -7,
          -7,
          -3.378942698613437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3823773034681137,
          -7,
          -7,
          -7,
          -3.4699692094999595,
          -3.0322963447394726,
          -4.1559703121583915,
          -7,
          -7,
          -7,
          -2.9673919516143807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2641091563058082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.803270843082014,
          -7,
          -4.525951341248012,
          -7,
          -7,
          -7,
          -7,
          -2.474653253362063,
          -2.6450009650490482,
          -3.55303301620244,
          -7,
          -3.368286884902131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.629379013907319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.534660575828444,
          -7,
          -7,
          -7,
          -3.4892551683692608,
          -7,
          -3.74353362266181,
          -2.5421335445730757,
          -7,
          -7,
          -7,
          -3.521399628115376,
          -3.4507108781469196,
          -7,
          -7,
          -3.4169731726030363,
          -7,
          -7,
          -7,
          -3.0998532198843813,
          -7,
          -7,
          -7,
          -3.38147609027503,
          -3.567731962548069,
          -7,
          -3.436167419481368,
          -7,
          -7,
          -4.269536292755967,
          -3.0227032411199173,
          -7,
          -3.431524584187451,
          -3.385606273598312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.096736260462469,
          -7,
          -7,
          -7,
          -3.652922887567942,
          -7,
          -7,
          -3.940725613108034,
          -3.918442256565788,
          -4.315676520348013,
          -7,
          -3.984347257585864,
          -7,
          -7,
          -3.8311175827395134,
          -3.9048545961465555,
          -7,
          -4.1101181270103275,
          -4.598768627396784,
          -4.676089749249794,
          -4.81686411550272,
          -4.128334636753716,
          -7,
          -7,
          -3.9730816496013674,
          -4.0796153235269434,
          -4.028520419371018,
          -4.005866601875385,
          -4.263605638169458,
          -7,
          -4.322694690306876,
          -4.144293927198531,
          -7,
          -4.646550753640342,
          -4.481643246275584,
          -7,
          -4.120030723527898,
          -7,
          -4.127396390776607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4851888764676953,
          -4.123900618785896,
          -4.0515383905153275,
          -3.514813294999285,
          -3.9934031611308507,
          -4.046085259177423,
          -3.5769169559652068,
          -7,
          -3.8252637950292847,
          -7,
          -3.2460176409716963,
          -3.611882555512116,
          -7,
          -7,
          -3.7246035153967165,
          -3.8553374044695405,
          -7,
          -7,
          -3.0708994401858685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.915856931822878,
          -3.627499437712944,
          -7,
          -7,
          -7,
          -7,
          -3.9343772358689417,
          -7,
          -4.651491231261623,
          -3.787672964687493,
          -7,
          -7,
          -3.5214649896147696,
          -4.0873554300540516,
          -3.845449469511614,
          -7,
          -3.3389874160202413,
          -3.2691236170005356,
          -3.5175389738505816,
          -3.680516809381255,
          -3.4055171069763763,
          -3.6728672017718136,
          -3.8888082879416745,
          -2.895146189375992,
          -4.052097290944154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9953426418873272,
          -7,
          -2.8166389448984614,
          -7,
          -7,
          -3.7742614232193215,
          -7,
          -3.4075608494863623,
          -7,
          -7,
          -7,
          -4.172174652067981,
          -3.4888326343824008,
          -7,
          -7,
          -7,
          -3.2749656245392864,
          -7,
          -7,
          -7,
          -3.7113009599161657,
          -7,
          -3.2060158767633444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499302094133328,
          -4.059487684274447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.385069776331935,
          -3.374106508804013,
          -7,
          -7,
          -7,
          -3.374198257929083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.204798038190855,
          -7,
          -7,
          -3.3847117429382823,
          -7,
          -7,
          -3.45408227073109,
          -7,
          -7,
          -3.8305886686851442,
          -7,
          -3.8099458187476407,
          -3.4371160930480786,
          -3.6652056284346006,
          -3.4187982905903533,
          -7,
          -4.0217266644137775,
          -7,
          -3.860697274052039,
          -3.465977368285823,
          -7,
          -7,
          -7,
          -3.3656751404559175,
          -3.37984917876283,
          -2.8816699076720615,
          -3.464638559095033,
          -7,
          -3.8678797834583794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5871494982543437,
          -3.5725230978496376,
          -7,
          -7,
          -4.316704039700037,
          -7,
          -7,
          -7,
          -4.054651350441742,
          -7,
          -4.048752457699489,
          -4.026471976876103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.49373680227684,
          -7,
          -7,
          -7,
          -7,
          -3.734426426461585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.669688708056208,
          -7,
          -3.153204900084284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.829753918924975,
          -7,
          -7,
          -7,
          -7,
          -3.6392872259102367,
          -7,
          -7,
          -4.023396514477751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.131964935456146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.512971799832511,
          -3.8319113468728965,
          -7,
          -5.131827101333347,
          -3.6192767787643367,
          -3.349136902644719,
          -5.1319376926448035,
          -4.588369362086652,
          -5.433086262195134,
          -4.392445926608398,
          -7,
          -3.221921559353994,
          -3.587255520806597,
          -7,
          -4.053769689599309,
          -2.100510739194386,
          -7,
          -5.432978906143947,
          -7,
          -5.132064277112742,
          -5.433017365093436,
          -4.433107089399942,
          -2.5089605755382696,
          -5.433031786321499,
          -7,
          -4.955884893531976,
          -4.95598583468028,
          -4.588230076620279,
          -7,
          -4.734135483006706,
          -7,
          -3.6714952268360177,
          -7,
          -2.648525621044213,
          -5.432836257800043,
          -4.8311944620597,
          -4.831167235523549,
          -7,
          -4.733968836780335,
          -5.131916858753586,
          -5.432919608590166,
          -4.955835215464196,
          -7,
          -4.036839604795666,
          -3.3433108911761096,
          -4.830875644426505,
          -5.1319729477225025,
          -4.07271012126439,
          -4.9559137362541525,
          -5.432909992007674,
          -4.830861220005249,
          -4.830946156923676,
          -4.354314968159569,
          -4.13326259642578,
          -4.955870471452533,
          -7,
          -7,
          -2.811559527360728,
          -7,
          -5.432820226967818,
          -5.131899229295741,
          -5.4328234331816025,
          -3.812408772969734,
          -4.58844138876869,
          -7,
          -4.178370941136013,
          -2.3551696329233685,
          -5.432873126468675,
          -5.433113497569717,
          -7,
          -5.1318848046615555,
          -7,
          -4.830749013705206,
          -5.131871982362283,
          -7,
          -4.479226493384303,
          -4.433127915606001,
          -4.155019432182956,
          -4.831055108269423,
          -4.5302925683609425,
          -3.9564469813917054,
          -2.6070916851790966,
          -4.433377752211042,
          -5.4329388411163535,
          -7,
          -7,
          -7,
          -5.432914800325537,
          -7,
          -7,
          -7,
          -3.616231969538357,
          -4.955796751121542,
          -7,
          -7,
          -4.956525391661737,
          -7,
          -5.432871523548164,
          -4.433052616138876,
          -5.131873585170395,
          -4.319701694006469,
          -5.131875187972593,
          -7,
          -7,
          -4.530126028436784,
          -2.968253249161065,
          -5.131976152587657,
          -7,
          -7,
          -4.734396540337467,
          -4.434108819200736,
          -7,
          -3.4462834977916423,
          -3.050042006104736,
          -4.955791942839168,
          -4.17805561153123,
          -4.95606913351297,
          -2.3500284998172463,
          -5.4329548675709285,
          -3.9568756646371357,
          -4.288177337719967,
          -4.956317333363374,
          -4.830920517340211,
          -4.955902519867588,
          -4.734175532664321,
          -5.4328122113298,
          -7,
          -3.0733890027618425,
          -5.432810608184443,
          -7,
          -7,
          -7,
          -7,
          -3.5590762202465087,
          -3.9314419784748638,
          -3.604079865575918,
          -3.607431015117042,
          -4.478758831505713,
          -3.153976644053331,
          -5.432919608590166,
          -5.4328635088568635,
          -4.9563509495317035,
          -3.905016084650832,
          -4.229956868102761,
          -5.432839463895481,
          -5.131889612926185,
          -5.1318912156692305,
          -3.104187106078922,
          -7,
          -5.432839463895481,
          -4.529877701316842,
          -4.391876181587,
          -7,
          -7,
          -4.354730929958319,
          -4.588342148897704,
          -4.9562052606727915,
          -5.132126754578685,
          -4.8314666335845295,
          -4.955929759161037,
          -5.432964483159803,
          -2.4176620338083574,
          -7,
          -5.432849082039786,
          -7,
          -5.432950059696654,
          -5.43288594961979,
          -5.131929679727997,
          -7,
          -4.1564248034664555,
          -4.955682940824174,
          -3.0165873673554606,
          -7,
          -4.091519876777007,
          -2.6323899806850464,
          -5.131915256105172,
          -4.956365355664486,
          -4.831360987247442,
          -4.73457262535556,
          -4.354529398223967,
          -3.902644287189708,
          -4.831216882631442,
          -5.132077093735961,
          -7,
          -4.734072998165133,
          -5.432993328649117,
          -4.003305718493799,
          -7,
          -5.432866714751133,
          -7,
          -2.8087672119302907,
          -7,
          -3.904354304879218,
          -7,
          -4.392410739305955,
          -7,
          -7,
          -7,
          -7,
          -4.956093159053612,
          -7,
          -7,
          -5.432828242457897,
          -4.356564405427492,
          -4.734191551493303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432884346746606,
          -5.432926019526862,
          -4.655437789832168,
          -4.229675444296448,
          -3.7473848529183247,
          -1.930604544490573,
          -7,
          -7,
          -7,
          -4.25744496879504,
          -5.43281862385205,
          -7,
          -7,
          -4.955783928916912,
          -7,
          -7,
          -7,
          -5.13182389536808,
          -7,
          -7,
          -7,
          -5.433118303634996,
          -3.2405073887976155,
          -7,
          -7,
          -7,
          -5.131862365389385,
          -7,
          -4.955859253948511,
          -7,
          -4.530036326633662,
          -4.1119646410441515,
          -5.432922814070343,
          -3.680367325199071,
          -4.073203361152041,
          -7,
          -7,
          -5.131868776728313,
          -3.405903034554918,
          -4.655319353156804,
          -2.9784853842188284,
          -4.734318079475221,
          -2.3489462973533097,
          -4.2567690438832475,
          -4.733861444276489,
          -5.1318767907688745,
          -3.4344677170621885,
          -4.203423275608664,
          -3.9288373482799925,
          -4.092347357161475,
          -3.5423928634933244,
          -5.432857096997329,
          -7,
          -7,
          -5.4330510138807,
          -4.5885518064856425,
          -4.655183271160184,
          -7,
          -5.132142772994083,
          -5.132112337499659,
          -7,
          -5.432898772392294,
          -4.9559602010555945,
          -5.131923269288103,
          -3.8238923221840366,
          -4.053563391020801,
          -4.530234927152524,
          -4.830995829309531,
          -2.434855787991721,
          -5.132054664397105,
          -7,
          -3.1809289492744997,
          -7,
          -7,
          -4.655200884173701,
          -7,
          -4.531488496961931,
          -4.956310929988667,
          -4.112124420332844,
          -4.530121223452704,
          -4.287888068556725,
          -5.433107089399942,
          -1.902546329729361,
          -4.053879995137211,
          -7,
          -7,
          -5.432836257800043,
          -4.002989535796033,
          -4.588521404407797,
          -5.432847479030527,
          -5.432937238438368,
          -4.831231295244944,
          -5.43283786085072,
          -5.432821830077669,
          -4.654651341985247,
          -4.831082341835677,
          -4.830946156923676,
          -7,
          -4.530286164160012,
          -5.432972495987906,
          -2.5727857511946253,
          -3.436167419481368,
          -7,
          -4.5880667195099605,
          -4.155554967713714,
          -2.532533014758181,
          -4.479917454374542,
          -7,
          -4.530330991583461,
          -5.131976152587657,
          -4.32000560114646,
          -3.9052576374727983,
          -4.230011213054175,
          -5.432868317689393,
          -7,
          -7,
          -4.655428188061645,
          -7,
          -5.132089909980955,
          -5.432942046454581,
          -4.155524611715298,
          -5.131926474519878,
          -4.004862511111595,
          -7,
          -7,
          -2.399707371851248,
          -2.1770840312500357,
          -2.699167503092759,
          -4.111182472655152,
          -2.571949559344863,
          -4.3566089889521,
          -3.343162719448533,
          -2.451196709825884,
          -2.3524888120884007,
          -7,
          -3.0237489456041193,
          -2.436191028312803,
          -2.3218407230624645,
          -2.181047732071891,
          -2.6734979339537297,
          -2.6960118329538734,
          -2.687264596421026,
          -2.354808681214491,
          -3.0256797214930673,
          -2.3844656697933324,
          -3.1917771990622015,
          -1.9546295403204343,
          -3.210736131009443,
          -2.233722657037703,
          -3.0156709638787342,
          -2.6859085515648258,
          -2.2965418374290882,
          -2.5684866678419978,
          -4.258779310981983,
          -2.4073595772172585,
          -2.7383985318837345,
          -2.4174801954167795,
          -2.647142153553563,
          -2.648544774585949,
          -3.0761600276347485,
          -2.547903632190475,
          -2.6709176923704128,
          -2.5861897606478075,
          -2.6710029687975694,
          -3.3259523628369316,
          -4.288186923454454,
          -2.5127638510577164,
          -2.8248633390471047,
          -3.4279821568454762,
          -4.154816235509648,
          -3.097332906380686,
          -4.3548412529584,
          -2.618613863442435,
          -3.544262765666502,
          -4.20460350467072,
          -3.1927198927453326,
          -2.54910919481154,
          -3.553804245922432,
          -3.5956128231697226,
          -3.5376617134872417,
          -4.003331258561327,
          -4.831072730183766,
          -3.7840987774360624,
          -2.6123416404291726,
          -3.867754066822242,
          -4.319660090166736,
          -2.629613445378183,
          -2.0525609515701713,
          -1.9281786549499058,
          -4.9559137362541525,
          -4.356347791752488,
          -4.955974620155648,
          -2.469878149039962,
          -3.5476106349355865,
          -2.246955636469541,
          -3.5521718487949716,
          -2.88464876873764,
          -5.432998136044408,
          -3.504947933895744,
          -3.1600335826302413,
          -2.711176934779885,
          -4.1338517431655255,
          -3.594248866857383,
          -3.7054645707376306,
          -2.942073717201575,
          -3.7645338283040592,
          -5.4331919899766925,
          -2.6916399187247166,
          -2.4752289628972193,
          -4.479890284548756,
          -2.153802931760111,
          -4.179125521533452,
          -4.113277878999596,
          -3.3081152246316403,
          -3.1075599661112743,
          -4.588063515815065,
          -7,
          -7,
          -4.734500599204428,
          -3.0755916158353096,
          -3.2627534503405666,
          -4.58798021145153,
          -4.434350105015772,
          -4.956234082127034,
          -3.9890634721344744,
          -3.059774409166059,
          -4.355065010645541,
          -4.655043943063447,
          -4.830890068368691,
          -3.2832729534027876,
          -4.956184443988461,
          -2.4969868665452117,
          -4.354836456888931,
          -4.588682991045723,
          -3.891515156998247,
          -3.6349635008969448,
          -4.288980208081459,
          -4.158040143768389,
          -4.355063412785068,
          -4.7346830422588,
          -4.094847356300792,
          -5.132966923692817,
          -4.392842386388172,
          -4.831487439682331,
          -5.433193591714845,
          -7,
          -3.4054842160241834,
          -5.433345729907803,
          -4.65475393325293,
          -2.8029798713080614,
          -2.5788475046876065,
          -2.5174078045308987,
          -7,
          -3.8026146430623937,
          -4.734414152052344,
          -4.288536658044671,
          -4.734161115213043,
          -7,
          -5.131971345281056,
          -3.746338659979659,
          -5.433177574067476,
          -4.956432577966348,
          -3.815429100194955,
          -7,
          -3.7327673383614615,
          -4.734763036969308,
          -4.43554815511796,
          -7,
          -4.320051968271859,
          -5.4330638317805935,
          -4.2037525929992885,
          -2.8169694414205235,
          -5.132262892280901,
          -4.830931734844233,
          -4.734084214055121,
          -3.7661833610329696,
          -3.4601207275421837,
          -7,
          -4.530607858456049,
          -3.715468813697298,
          -4.4791560560027355,
          -2.171040824173655,
          -4.655332158678962,
          -4.021461244518642,
          -5.132285310868588,
          -4.831489040110107,
          -3.278000357605805,
          -4.955899315132505,
          -3.364755888417643,
          -5.43380022547713,
          -4.956057921139135,
          -4.655207288728793,
          -4.435313909967652,
          -7,
          -5.432958072790875,
          -3.599796084276918,
          -4.530673448440382,
          -4.2874866082211796,
          -3.4720924168132257,
          -4.392618622936648,
          -3.6963325562988216,
          -4.433974535927756,
          -3.354262774332554,
          -3.7584513768787224,
          -4.17997604864288,
          -4.2889291750270715,
          -5.432858699971087,
          -7,
          -2.7338848026885336,
          -3.9592720003147788,
          -5.4330638317805935,
          -4.35624581850903,
          -2.7501210305035375,
          -4.355402027786844,
          -3.335834053210056,
          -2.738789581254155,
          -3.596347284832664,
          -7,
          -4.588761362909286,
          -7,
          -5.43288594961979,
          -4.734398141431968,
          -4.434080047708787,
          -4.039090359899945,
          -7,
          -5.433026979298686,
          -7,
          -3.075530164051766,
          -5.432950059696654,
          -4.9563509495317035,
          -5.433010955505026,
          -7,
          -4.831445826489906,
          -4.9559778243350925,
          -5.433265663818217,
          -4.0563060138858935,
          -4.037896397296606,
          -4.530566259674217,
          -4.734044155975036,
          -4.530804598699046,
          -4.830761838749707,
          -5.432828242457897,
          -7,
          -4.8311784466569145,
          -4.53007317068778,
          -4.433238437984877,
          -3.5000976136989457,
          -3.8247717053170036,
          -3.7648705879895643,
          -4.830995829309531,
          -7,
          -3.8919116195854024,
          -5.131886407422347,
          -7,
          -2.734447892803061,
          -5.432852288040553,
          -7,
          -3.943424303172156,
          -3.931856574894348,
          -4.229868942751505,
          -7,
          -7,
          -4.734337295690939,
          -7,
          -3.794627444664508,
          -7,
          -4.956133198668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.182547792837783,
          -7,
          -7,
          -7,
          -7,
          -3.6432552250247716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.401136207098224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.08262981000055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731346975545955,
          -7,
          -7,
          -7,
          -7,
          -3.322839272686321,
          -7,
          -7,
          -7,
          -4.220813896785491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.218929185088087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100921680320846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4279727136082085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.671487568998327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.593286067020457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6196150057428067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.246578587998662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6942541120252788,
          -7,
          -4.498351913199365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4590907896005865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.39931367884421,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5880667195099605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.097777734539283,
          -7,
          -7,
          -4.034187120793453,
          -4.575545759343288,
          -7,
          -4.802958346690387,
          -7,
          -4.279347492410732,
          -4.389396465218475,
          -7,
          -7,
          -7,
          -7,
          -4.624563969089531,
          -7,
          -7,
          -7,
          -4.156549151331781,
          -4.625806154480438,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.237870341476738,
          -4.17868923977559,
          -7,
          -7,
          -7,
          -7,
          -3.912647106218317,
          -7,
          -7,
          -4.5721277878771,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.543770140269609,
          -7,
          -7,
          -7,
          -3.8403256965399084,
          -7,
          -7,
          -7,
          -3.1670217957902564,
          -7,
          -7,
          -3.8860392755664424,
          -7,
          -7,
          -7,
          -4.502986698753511,
          -4.69549626947358,
          -7,
          -7,
          -7,
          -4.6120311338515405,
          -7,
          -4.641360068442172,
          -7,
          -4.059336177389288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.564038428178439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7419233421368165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1248301494138593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4349678884278125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1609466070925256,
          -7,
          -7,
          -7,
          -7,
          -3.710709565724337,
          -7,
          -7,
          -7,
          -3.214843848047698,
          -7,
          -3.2445739728174354,
          -3.194514341882467,
          -2.6994040818153375,
          -2.9427519204298136,
          -2.588025756201648,
          -7,
          -2.7327956982893293,
          -7,
          -2.5847080525750368,
          -3.044147620878723,
          -2.770483809431108,
          -3.8694898721419673,
          -2.0871501757189,
          -7,
          -7,
          -2.588458460008786,
          -3.118264726089479,
          -2.9960736544852753,
          -2.4638929889859074,
          -7,
          -3.382557321908786,
          -7,
          -3.574301411369372,
          -2.6954816764901977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7259116322950483,
          -7,
          -2.0910305188634193,
          -2.724275869600789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.288249225571986,
          -7,
          -7,
          -7,
          -3.3619921087578137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1598678470925665,
          -3.0107238653917734,
          -7,
          -7,
          -7,
          -2.4627722284106115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4767921190601778,
          -2.1687920203141817,
          -1.6454222693490919,
          -7,
          -2.2810333672477277,
          -7,
          -3.2068387209907216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0261245167454502,
          -3.0107238653917734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8879724546272227,
          -7,
          -7,
          -7,
          -3.0161973535124393,
          -1.593465688370741,
          -7,
          -7,
          -2.4287825114969546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1248301494138593,
          -7,
          -7,
          -3.137248584828626,
          -7,
          -7,
          -7,
          -3.0860037056183818,
          -4.442087629550761,
          -2.7267272090265724,
          -3.2496874278053016,
          -2.1049421081920463,
          -7,
          -7,
          -3.0472748673841794,
          -3.0773679052841567,
          -7,
          -7,
          -3.999782798454136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9677039447900855,
          -2.753199914199416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.363298523016824,
          -7,
          -2.7769431981946755,
          -7,
          -2.718501688867274,
          -7,
          -2.158639730841915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.511214701136388,
          -2.473486970064568,
          -2.4542348957482654,
          -2.575187844927661,
          -7,
          -2.40113470291114,
          -2.5323296410790315,
          -3.000867721531227,
          -7,
          -3.0273496077747564,
          -7,
          -3.030599721965951,
          -7,
          -1.8042111928249227,
          -7,
          -3.903307079964174,
          -7,
          -7,
          -1.6706849001349,
          -7,
          -2.6690067809585756,
          -7,
          -3.159266331093494,
          -2.715446198616883,
          -7,
          -2.5014016307667424,
          -7,
          -2.631105401655266,
          -3.053462604925455,
          -2.7363965022766426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1664301138432824,
          -7,
          -7,
          -2.7246853882373596,
          -7,
          -7,
          -7,
          -2.6127838567197355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0211892990699383,
          -7,
          -2.908753019184534,
          -3.60916737430202,
          -4.306844566247316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.555900189963248,
          -7,
          -7,
          -7,
          -2.7015679850559273,
          -7,
          -7,
          -2.7664128471123997,
          -3.4192947217534604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.036628895362161,
          -7,
          -2.7734207232906103,
          -3.2732328340430454,
          -3.0203612826477078,
          -7,
          -1.8401821596959231,
          -7,
          -7,
          -7,
          -3.1362448017461424,
          -7,
          -7,
          -3.1085650237328344,
          -4.207365037469072,
          -7,
          -7,
          -3.0170333392987803,
          -3.3919050068671566,
          -7,
          -7,
          -2.393867559040913,
          -3.3384564936046046,
          -7,
          -7,
          -7,
          -2.7505083948513462,
          -1.9403992822650356,
          -2.8172347304254983,
          -7,
          -3.0813473078041325,
          -2.595863489908268,
          -7,
          -3.0141003215196207,
          -7,
          -2.550228353055094,
          -1.7794418738651383,
          -2.7329295951554746,
          -2.6398183918310933,
          -7,
          -3.7123866044592306,
          -7,
          -3.0013009330204183,
          -7,
          -7,
          -3.0043213737826426,
          -2.8208579894397,
          -3.031408464251624,
          -1.7762310063625517,
          -2.835056101720116,
          -2.595055089759304,
          -2.792391689498254,
          -2.943247125137862,
          -7,
          -3.845473576797768,
          -2.354588587877241,
          -7,
          -7,
          -7,
          -3.2997251539756367,
          -2.127399335155957,
          -7,
          -3.024074987307426,
          -7,
          -7,
          -7,
          -7,
          -2.597329464234929,
          -7,
          -7,
          -2.1692824715034074,
          -7,
          -3.6885088076565213,
          -7,
          -4.155554967713714,
          -7,
          -7,
          -4.077634336195216,
          -2.4835872969688944,
          -7,
          -2.5337085232398597,
          -7,
          -1.128736828938368,
          -2.9417598138146954,
          -2.961658348637715,
          -7,
          -7,
          -7,
          -1.9267055185280078,
          -3.0178677189635055,
          -2.767526899408382,
          -2.546542663478131,
          -2.3279262688653164,
          -3.029789470831856,
          -1.9871912749350684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.441129320514776,
          -7,
          -7,
          -3.411164973755188,
          -4.040633981546597,
          -7,
          -7,
          -4.282939165754773,
          -3.8855119905526943,
          -3.4652746699851855,
          -7,
          -7,
          -3.8001325865508604,
          -4.358629543218151,
          -3.5514499979728753,
          -4.616926903478089,
          -7,
          -4.326045551412314,
          -7,
          -4.313452404617617,
          -4.100818395731537,
          -7,
          -3.9342863021303813,
          -4.4621882878701635,
          -7,
          -4.012026910580204,
          -7,
          -3.811720193231691,
          -7,
          -7,
          -7,
          -4.256837965904041,
          -7,
          -4.063220735581995,
          -3.925535542646001,
          -3.9970367108825267,
          -2.6852937813867843,
          -3.3498258358900697,
          -2.4851157303738223,
          -1.9859892855571855,
          -7,
          -7,
          -7,
          -3.251358332713241,
          -2.2402291373505103,
          -2.425244304277949,
          -3.7969903905456865,
          -2.9325931255359237,
          -3.163831985102053,
          -7,
          -3.310410061407572,
          -7,
          -7,
          -7,
          -3.165568043997485,
          -7,
          -7,
          -2.3398450362288328,
          -3.0482068592753193,
          -4.572703193349392,
          -2.3479151865016914,
          -2.3487914675605843,
          -2.762678563727436,
          -2.617734035364018,
          -7,
          -3.5478731179153007,
          -2.726002327603283,
          -3.4841930324891988,
          -3.0394141191761372,
          -3.7258299903205803,
          -4.037426497940624,
          -3.117602691690084,
          -7,
          -2.8719063670262903,
          -3.628491104967123,
          -2.7162048924416333,
          -3.061954844073114,
          -2.4807253789884878,
          -2.736821292120416,
          -2.785982944618427,
          -7,
          -3.4104695715094544,
          -7,
          -7,
          -2.598790506763115,
          -4.043715858061207,
          -2.780677274433368,
          -2.7427251313046983,
          -7,
          -7,
          -4.10064620014548,
          -2.7000440709473397,
          -3.0633333589517497,
          -2.385606273598312,
          -7,
          -3.500785172917456,
          -3.1783601976294182,
          -7,
          -2.61066016308988,
          -7,
          -3.055314609787049,
          -7,
          -3.594613509160098,
          -2.463395230212905,
          -7,
          -7,
          -3.200440076436431,
          -7,
          -7,
          -7,
          -2.5757649805367193,
          -3.5816083660320572,
          -7,
          -7,
          -7,
          -3.085290578230065,
          -7,
          -3.577836341292744,
          -7,
          -7,
          -7,
          -2.749697186414885,
          -3.969470273425397,
          -7,
          -7,
          -2.649983543645145,
          -7,
          -2.77232170672292,
          -7,
          -3.0409976924234905,
          -2.832381160247041,
          -7,
          -7,
          -7,
          -3.0166155475571776,
          -7,
          -2.8920946026904804,
          -2.653051634172873,
          -2.99563519459755,
          -7,
          -2.7535830588929064,
          -7,
          -4.347739717920052,
          -7,
          -3.0402066275747113,
          -2.754348335711019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.298341166700119,
          -1.9943800073599416,
          -7,
          -2.810568529216413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -7,
          -2.695043658821294,
          -2.2471546148811266,
          -2.598060599899029,
          -3.2005769267548483,
          -7,
          -3.4805099729419604,
          -7,
          -7,
          -3.2362852774480286,
          -3.787956123283932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4211101297934343,
          -4.028449242723508,
          -3.323870606540509,
          -7,
          -3.6003847306224874,
          -7,
          -3.0433622780211294,
          -7,
          -3.0382226383687185,
          -7,
          -2.2761334151353645,
          -3.252610340567373,
          -7,
          -7,
          -7,
          -7,
          -2.710671665738311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1818435879447726,
          -2.7446840632768863,
          -7,
          -7,
          -7,
          -7,
          -3.0972573096934197,
          -3.0835026198302673,
          -3.101403350555331,
          -3.0351094029445753,
          -7,
          -7,
          -7,
          -7,
          -2.6346211954253143,
          -7,
          -2.694166295933198,
          -3.5971025620238164,
          -7,
          -7,
          -2.509202522331103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2422680448276875,
          -4.544068044350276,
          -2.454763218034042,
          -3.7744804688604328,
          -4.543223451486436,
          -7,
          -3.4747204434733674,
          -3.011158499816333,
          -4.544117675169358,
          -3.0031896290810205,
          -3.2020670448127246,
          -3.9489017609702137,
          -7,
          -3.0169824105995837,
          -3.285411019391177,
          -7,
          -3.774164034126966,
          -2.218837876764699,
          -7,
          -4.067008827268302,
          -7,
          -3.9429624514287713,
          -3.942342951035721,
          -4.06822297934645,
          -1.8600833612246932,
          -4.243534101832062,
          -7,
          -3.5027994256068076,
          -4.244165748963329,
          -4.245968930781295,
          -7,
          -4.545257621396889,
          -7,
          -4.259319073229125,
          -7,
          -2.4475611176714263,
          -4.543074235033532,
          -3.4669293757018003,
          -7,
          -3.6980508096542675,
          -7,
          -4.242901534681515,
          -7,
          -7,
          -7,
          -3.558288469433135,
          -2.7007037171450192,
          -7,
          -4.544390543337748,
          -3.555662651664352,
          -7,
          -7,
          -4.0666364684442025,
          -4.067294086315977,
          -2.4279615760912017,
          -2.1102947233754246,
          -7,
          -7,
          -7,
          -2.5117872143143454,
          -7,
          -7,
          -7,
          -7,
          -3.2427779850240452,
          -2.776368707370917,
          -4.543459606069367,
          -4.072543985643648,
          -2.805619780113231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.543608690196552,
          -7,
          -7,
          -4.244499778833843,
          -3.7054849439852404,
          -4.545307116465824,
          -4.070296518197765,
          -3.2267226219309495,
          -2.6444385894678386,
          -4.547479333931025,
          -7,
          -7,
          -7,
          -4.542987168420799,
          -7,
          -4.066748209617138,
          -4.242404758074511,
          -7,
          -3.5252804524478916,
          -4.242702892223277,
          -7,
          -7,
          -4.24831664034178,
          -7,
          -4.543347759379176,
          -4.067802127338805,
          -4.5436211115640335,
          -4.248549489593387,
          -4.543633532576258,
          -7,
          -4.547479333931025,
          -3.7679099677901626,
          -1.9142950651552806,
          -7,
          -7,
          -3.765581637503615,
          -3.4678176803976513,
          -3.552850654460561,
          -7,
          -3.117259863694777,
          -2.8473976833632433,
          -3.76544501809015,
          -3.547072869887322,
          -3.000954398406458,
          -2.163800920094078,
          -7,
          -3.5524857010929476,
          -3.952526071556139,
          -3.0284726614362905,
          -4.2432117317447595,
          -4.243521707406287,
          -4.244512145378027,
          -7,
          -7,
          -2.58737317819709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6757783416740852,
          -3.2098761935936153,
          -3.2106906559695236,
          -4.549861188471943,
          -7,
          -2.9035368248903057,
          -4.242665636645263,
          -4.543285609880379,
          -7,
          -3.7262147396149374,
          -3.4065280151520345,
          -4.543099108002921,
          -4.543745305703089,
          -4.242702892223277,
          -2.590952299169162,
          -7,
          -7,
          -7,
          -3.944532020991981,
          -7,
          -7,
          -2.809939059242838,
          -4.070714961111136,
          -7,
          -4.244524511570083,
          -3.946341712189376,
          -7,
          -7,
          -2.2015017826004426,
          -7,
          -4.543173718365064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.21842807601491,
          -7,
          -2.978180516937414,
          -7,
          -4.2510417205264535,
          -2.3883298406118683,
          -7,
          -7,
          -4.547663964631684,
          -7,
          -3.85101360682367,
          -3.8546946070403574,
          -3.504915494713347,
          -4.244140995786811,
          -4.069532435768039,
          -7,
          -7,
          -3.326889823407641,
          -7,
          -4.543310470747173,
          -4.542887642342412,
          -2.7869439937109552,
          -7,
          -3.021708959667232,
          -7,
          -3.249271753073101,
          -3.844862216137521,
          -3.941821886920197,
          -7,
          -4.066176785772006,
          -3.5044090720010512,
          -4.242131288530818,
          -7,
          -7,
          -4.264357321211541,
          -4.545690512112002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4299509394978513,
          -3.7651716502632686,
          -3.8447007891455773,
          -2.8153071215317156,
          -7,
          -2.3227504288805587,
          -2.449620212881275,
          -7,
          -7,
          -7,
          -3.9466855619314516,
          -7,
          -7,
          -3.43166061617458,
          -4.242603536912276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.545257621396889,
          -2.5662213715228304,
          -7,
          -7,
          -7,
          -4.242479310801046,
          -4.544080452586784,
          -4.544241727408741,
          -7,
          -4.244437940830307,
          -2.542849826210958,
          -7,
          -3.871070638121196,
          -3.559379888183303,
          -7,
          -7,
          -7,
          -4.087083052293845,
          -3.9459607035775686,
          -2.9155427295901104,
          -4.546666025070184,
          -3.027454830703138,
          -4.543608690196552,
          -7,
          -4.543645953233247,
          -2.2584136227948823,
          -3.6481769831710005,
          -3.2969940766702086,
          -3.1598438024418076,
          -3.4781334281005174,
          -7,
          -7,
          -7,
          -4.544737582325772,
          -3.8504256629406837,
          -4.547048223472135,
          -7,
          -7,
          -4.244413203163297,
          -7,
          -7,
          -4.545022442756734,
          -4.544005997849434,
          -3.0280830070178384,
          -3.509226968278699,
          -3.6437610147894506,
          -4.243794303095747,
          -2.925781264081862,
          -4.545022442756734,
          -7,
          -2.2594744195310756,
          -4.066089764020343,
          -4.543273178913283,
          -3.166405442926589,
          -3.7658051038819447,
          -3.85751341477669,
          -4.246670885690703,
          -3.3242824552976926,
          -4.245092976101281,
          -3.9503283370492603,
          -4.545170991450791,
          -2.8209859108312103,
          -4.252221753598687,
          -4.543372616688624,
          -7,
          -7,
          -3.7100931764971508,
          -3.770986940942376,
          -4.242106419122238,
          -7,
          -3.4324265460524686,
          -7,
          -7,
          -7,
          -4.2444626770883245,
          -7,
          -4.242317763715195,
          -3.8483492528054675,
          -7,
          -2.781635717816913,
          -4.269536292755967,
          -2.532533014758181,
          -7,
          -4.077634336195216,
          -7,
          -2.8278932903105773,
          -4.542875199978764,
          -3.0999394835616743,
          -3.589974410356128,
          -3.2089907177589394,
          -2.1117340347757962,
          -2.759509447553341,
          -3.941188324583631,
          -7,
          -7,
          -4.548929646552791,
          -7,
          -3.943160505065108,
          -7,
          -3.192312866699809,
          -4.544030817513511,
          -3.3928961789790506,
          -7,
          -7,
          -3.4193916593043943,
          -3.84318963888085,
          -4.425550522537713,
          -4.246880021200512,
          -4.187055155865771,
          -4.565741592358979,
          -4.2979573758101095,
          -3.5717597681877002,
          -3.1556102627468885,
          -4.543298040491669,
          -4.055741366005619,
          -3.4274380197942302,
          -3.823963024361914,
          -3.3014552187546453,
          -3.2553602325012214,
          -3.6883470019945825,
          -3.658040764690793,
          -3.438214888275288,
          -4.172272025329505,
          -3.514922928167204,
          -3.9317222318174236,
          -2.9387982031410798,
          -3.3020937473494185,
          -3.461975751039211,
          -3.764596394810861,
          -4.088127225457418,
          -3.8066942630765674,
          -3.0656073750355657,
          -7,
          -3.3509821062800262,
          -3.756576947544535,
          -3.6316645608153735,
          -3.4365978118886917,
          -3.5826838398856826,
          -3.8338374377003355,
          -3.601784293878116,
          -4.361378371630884,
          -3.978119623151293,
          -3.6582242699211025,
          -3.465680211598278,
          -2.789920935042697,
          -2.981383642081278,
          -3.005855493321154,
          -3.281033367247727,
          -4.248120459883603,
          -3.300378064870703,
          -7,
          -2.8081046439393478,
          -3.0534306044478297,
          -3.237663401572365,
          -2.4599764321962345,
          -2.6711998127813477,
          -3.0076055495789995,
          -3.955037987024298,
          -4.000596744744559,
          -7,
          -7,
          -3.8785907256627516,
          -2.892138099558853,
          -3.789286852973362,
          -4.54928533913167,
          -2.7355228610948337,
          -2.7132394661449837,
          -2.2623458143395654,
          -3.942528893958499,
          -2.846586880971535,
          -4.545133859040489,
          -2.7698156462193806,
          -3.147665284586758,
          -2.8504823840745614,
          -3.8889989918461803,
          -2.770427135219635,
          -3.942194139356048,
          -4.116618811494573,
          -2.746906520474098,
          -2.478484971625684,
          -4.081983039279172,
          -4.592731766393962,
          -3.9796735463731157,
          -2.897334389207353,
          -4.095587746918743,
          -3.1835545336188615,
          -3.0680872527130307,
          -2.5120549607425273,
          -4.252173155771533,
          -2.80630333557594,
          -4.078287610839212,
          -4.086608944572948,
          -3.3833889379388244,
          -3.611481912591253,
          -4.545739957873238,
          -7,
          -7,
          -4.070899440185869,
          -3.55360298720468,
          -3.129142823317654,
          -3.544873843234801,
          -3.855834011006842,
          -4.547134479806692,
          -3.9671734229555398,
          -3.170603929784626,
          -4.25310771003719,
          -4.54597474839116,
          -3.589589711034215,
          -3.706899056046803,
          -3.8476836861516825,
          -2.5778312515364696,
          -4.0752549005329,
          -3.8514295860194783,
          -4.087580308992842,
          -4.304016336520766,
          -3.7154661089656273,
          -3.4590675733665495,
          -4.554149829550869,
          -7,
          -3.974695871909683,
          -7,
          -3.9519200735202937,
          -3.247138226100887,
          -3.3694014136966244,
          -4.543608690196552,
          -3.71474876072506,
          -7,
          -7,
          -2.307543880874639,
          -3.2508079879608007,
          -2.9889126149271394,
          -4.543484456978157,
          -3.6142056361665484,
          -4.246350836456256,
          -4.08020545491413,
          -3.7671806115015145,
          -7,
          -4.067207288178004,
          -3.571883445956414,
          -4.5457152356963135,
          -4.24760506415077,
          -2.3769508166030784,
          -4.066462591676076,
          -3.997102296115629,
          -7,
          -3.9617650709235295,
          -7,
          -4.0751087964165,
          -3.9427023688886678,
          -7,
          -3.3021375840925624,
          -4.546629020271727,
          -4.54435334413586,
          -3.9427271453659487,
          -3.8064061101420315,
          -3.71099480274821,
          -4.551010601573511,
          -3.6466242486875178,
          -3.448728398371921,
          -3.702368982412129,
          -2.175522015573569,
          -3.6449307079135873,
          -4.093655114075085,
          -3.9446677014003875,
          -4.548647338252487,
          -3.2027001754129008,
          -4.544551703070268,
          -3.1685411312096927,
          -3.596059239297757,
          -4.5457770385001215,
          -7,
          -4.2610962581323335,
          -4.242006927244273,
          -4.0668475109739,
          -3.265087487396905,
          -3.7721138020629263,
          -4.248341156669196,
          -3.3709917589490144,
          -3.9502187666418633,
          -2.1714150956351084,
          -3.153522188412702,
          -3.561133921976699,
          -3.9925424725624366,
          -3.8627870982353443,
          -3.715083670694927,
          -4.543248315911594,
          -7,
          -3.0541483460871173,
          -4.269559640038821,
          -4.544836685408386,
          -4.261988070187269,
          -3.7424423158873648,
          -4.556712474209863,
          -3.738106403558114,
          -3.0144155225606033,
          -2.439786761936646,
          -7,
          -4.073925980204891,
          -4.067120472689078,
          -7,
          -4.0701117827822,
          -3.9507176969896345,
          -3.6207258227036743,
          -4.242541428298384,
          -3.942417337758467,
          -7,
          -2.8245091988420703,
          -4.543956354265588,
          -7,
          -7,
          -4.54489861335298,
          -4.54831569852736,
          -4.545158614333448,
          -4.245339902695324,
          -7,
          -3.524761863664937,
          -2.748704736742231,
          -4.544551703070268,
          -3.8523213739920474,
          -7,
          -4.543012046377036,
          -7,
          -4.546258798765529,
          -7,
          -7,
          -3.0501808225071074,
          -3.62490060220449,
          -2.920980860300983,
          -4.544849071703771,
          -7,
          -3.4534594745817477,
          -7,
          -7,
          -3.0132019567134645,
          -7,
          -7,
          -3.9565645914886343,
          -3.729904959419274,
          -4.075133150516151,
          -7,
          -7,
          -3.643551368562945,
          -7,
          -3.7379306114157003,
          -7,
          -3.546135321429913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9400181550076634,
          -7,
          -2.9827233876685453,
          -3.5862308719545637,
          -7,
          -7,
          -7,
          -7,
          -2.8549130223078554,
          -2.201852121200103,
          -2.5054891384167237,
          -7,
          -7,
          -7,
          -2.790888071786576,
          -3.66143405039392,
          -7,
          -2.9138138523837167,
          -1.935912236167164,
          -2.470802365112064,
          -2.0253058652647704,
          -2.642958879409791,
          -2.1685816572769356,
          -1.6573290799701759,
          -2.0211892990699383,
          -3.4207923920775887,
          -1.5641195526675085,
          -7,
          -7,
          -3.022840610876528,
          -7,
          -7,
          -7,
          -7,
          -3.060320028688285,
          -7,
          -3.23605254695602,
          -7,
          -3.0599418880619544,
          -7,
          -7,
          -2.677150521273433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5833499380780163,
          -7,
          -2.6924062348336304,
          -2.504244254358882,
          -7,
          -7,
          -2.6711728427150834,
          -7,
          -2.8172347304254983,
          -3.262213705476417,
          -2.99211148778695,
          -7,
          -7,
          -3.3577062107846425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.422917980767662,
          -7,
          -7,
          -3.4584615778161254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9444826721501687,
          -7,
          -3.0338256939533106,
          -2.5728716022004803,
          -7,
          -1.9695592675234308,
          -7,
          -3.6828667956623247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9556877503135057,
          -7,
          -7,
          -2.847572659142112,
          -7,
          -7,
          -7,
          -2.575187844927661,
          -2.1724659855008337,
          -7,
          -7,
          -2.673020907128896,
          -3.0863598306747484,
          -7,
          -7,
          -3,
          -4.121953583545299,
          -2.9698816437465,
          -2.6085260335771943,
          -3.0437551269686796,
          -2.732054581246163,
          -7,
          -2.314393957221963,
          -7,
          -3.1007150865730817,
          -7,
          -7,
          -3.034227260770551,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2166935991697545,
          -7,
          -3.1556396337597765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2684739617082585,
          -7,
          -7,
          -1.9628426812012423,
          -2.7978558985883404,
          -7,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -7,
          -3.197280558125619,
          -2.625312450961674,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -7,
          -3.0801452741502415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.680335513414563,
          -7,
          -3.3769417571467586,
          -7,
          -3.4197905861063624,
          -7,
          -7,
          -2.7165536640656525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.243286146083446,
          -3.065206128054312,
          -7,
          -3.0696680969115957,
          -7,
          -7,
          -2.3140779917792127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4507108781469196,
          -2.941511432634403,
          -3.1775364999298623,
          -7,
          -2.9786369483844743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5083052193633395,
          -7,
          -2.971739590887778,
          -2.174479774899102,
          -2.575187844927661,
          -3.5969268143429707,
          -4.85059722880952,
          -2.6419695977020594,
          -7,
          -2.6546577546495245,
          -7,
          -7,
          -7,
          -3.04493154614916,
          -7,
          -7,
          -7,
          -7,
          -2.951337518795918,
          -7,
          -7,
          -7,
          -3.024074987307426,
          -3.7157944980035067,
          -7,
          -2.9375178920173464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0318122713303706,
          -7,
          -7,
          -7,
          -2.087347537450042,
          -7,
          -7,
          -7,
          -7,
          -2.807873132003332,
          -3.04641711698399,
          -7,
          -3.603617939358176,
          -7,
          -7,
          -7,
          -1.8317677956630702,
          -7,
          -2.9190780923760737,
          -1.5182981413731227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7781512503836434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.678518379040114,
          -2.5709319183959467,
          -2.478566495593843,
          -7,
          -7,
          -3.7111954128570748,
          -7,
          -7,
          -3.02626080875407,
          -7,
          -7,
          -1.408471239559919,
          -2.983175072037813,
          -2.9960736544852753,
          -2.797613730153076,
          -2.968716377466786,
          -7,
          -7,
          -7,
          -4.401476363357558,
          -2.452553063228925,
          -7,
          -7,
          -7,
          -7,
          -1.7846821175426015,
          -7,
          -7,
          -1.912677450997669,
          -2.6434526764861874,
          -7,
          -7,
          -2.7307822756663893,
          -7,
          -7,
          -2.308919955522892,
          -7,
          -3.2059708324774667,
          -3.0227032411199173,
          -4.479917454374542,
          -7,
          -2.4835872969688944,
          -2.8278932903105773,
          -7,
          -7,
          -3.100370545117563,
          -2.6932871570056554,
          -2.3557524580768203,
          -2.5280163411892014,
          -1.5803148437557177,
          -7,
          -2.639486489268586,
          -7,
          -2.8302678009336417,
          -7,
          -3.0253058652647704,
          -7,
          -2.958085848521085,
          -7,
          -2.580069222725036,
          -7,
          -7,
          -4.324138352655017,
          -7,
          -7,
          -7,
          -4.439348486069748,
          -7,
          -7,
          -7,
          -4.2616196765479355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.803303446549009,
          -7,
          -7,
          -7,
          -4.024116072826771,
          -7,
          -7,
          -5.103844754716462,
          -7,
          -4.488762172066695,
          -4.096910013008056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.099715162351024,
          -7,
          -7,
          -4.278296208091274,
          -3.0385574192539826,
          -7,
          -7,
          -7,
          -7,
          -3.5970366649776535,
          -3.5277587525209717,
          -2.8836614351536176,
          -3.315655525231531,
          -3.0459545487272597,
          -2.7564839644426096,
          -7,
          -3.08019341942848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1359179942343682,
          -4.204766419136863,
          -5.174452327912134,
          -3.0038911662369103,
          -2.6331316626337404,
          -7,
          -3.8403675129212234,
          -7,
          -4.644453361137774,
          -3.0687422929329817,
          -7,
          -7,
          -3.716504163773217,
          -4.032900678732676,
          -4.291812687467119,
          -7,
          -3.4073059070182823,
          -3.616790486329716,
          -3.0971415749873645,
          -3.5251744278352715,
          -7,
          -3.1645228008000683,
          -4.27034104958934,
          -7,
          -3.6857118891584975,
          -7,
          -2.934834983210739,
          -3.6695957810243134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096736260462469,
          -3.718127852075301,
          -2.539912084579118,
          -2.2617385473525378,
          -7,
          -2.784902449886655,
          -3.17368564886044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.680667831562386,
          -2.736927424692279,
          -7,
          -3.426185825244511,
          -7,
          -7,
          -3.229809782952539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.037758400503131,
          -2.5642714304385623,
          -7,
          -3.395093308677923,
          -7,
          -7,
          -4.177954721748205,
          -4.647744731469901,
          -4.445775396743086,
          -7,
          -3.4768316285122607,
          -2.788521887222473,
          -3.311753861055754,
          -2.1218059731155416,
          -7,
          -7,
          -3.216429830876251,
          -3.039017321997412,
          -3.1248301494138593,
          -2.886678690759447,
          -2.6646419755561257,
          -3.2785249647370174,
          -7,
          -3.4143046881283317,
          -7,
          -7,
          -3.00987563371216,
          -3.24699069924155,
          -4.345530558034622,
          -7,
          -2.992995098431342,
          -3.0107238653917734,
          -7,
          -7,
          -7,
          -3.1562461903973444,
          -7,
          -7,
          -2.989392397889798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7645497190644672,
          -3.1711411510283822,
          -3.0409976924234905,
          -2.78354628227035,
          -7,
          -7,
          -2.501971645918664,
          -2.5876174376185492,
          -2.690196080028514,
          -3.1439511164239637,
          -3.1709947020363,
          -3.2135177569963047,
          -2.2727438360858954,
          -2.2482458076207688,
          -3.7798849631926443,
          -7,
          -3.3845326154942486,
          -3.3609718837259357,
          -2.951823035315912,
          -7,
          -4.285422274188247,
          -7,
          -7,
          -7,
          -4.327215849106363,
          -7,
          -7,
          -3.8198509039368695,
          -2.7284214238688698,
          -7,
          -7,
          -2.3860528489403894,
          -7,
          -7,
          -2.7461150183833354,
          -7,
          -7,
          -7,
          -7,
          -3.2166935991697545,
          -2.9786369483844743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7927099705545686,
          -3,
          -3.1920095926536702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4243915544102776,
          -3.5933968423002067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.992686039162128,
          -7,
          -7,
          -7,
          -3.55108386518578,
          -7,
          -7,
          -7,
          -3.0729847446279304,
          -7,
          -3.6292056571023035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.296665190261531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7259116322950483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.054995861529141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.434393234712605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1921677259471775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.597804842404293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542875199978764,
          -7,
          -7,
          -2.603144372620182,
          -7,
          -2.5676144427308447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3418300569205104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9876662649262746,
          -7,
          -7,
          -3.7203247174174416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.640481436970422,
          -2.3935752032695876,
          -7,
          -7,
          -7,
          -7,
          -3.3328422669943514,
          -3.658964842664435,
          -7,
          -7,
          -2.75815462196739,
          -2.422014995979464,
          -7,
          -3.0106179269885396,
          -7,
          -7,
          -3.0711452904510828,
          -3.4987354489364773,
          -7,
          -7,
          -7,
          -2.7634279935629373,
          -7,
          -7,
          -3.7164922461934813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.292994040067439,
          -2.304275050477128,
          -7,
          -7,
          -3.864174748390403,
          -2.6201360549737576,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6893088591236203,
          -7,
          -2.8790958795000727,
          -7,
          -7,
          -2.863322860120456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6567368704836722,
          -7,
          -7,
          -7,
          -3.0840596627601995,
          -7,
          -7,
          -7,
          -7,
          -2.7518562395924007,
          -2.6364878963533656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9180303367848803,
          -7,
          -3.0161973535124393,
          -7,
          -2.887617300335736,
          -7,
          -3.442636525782232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3621996388688866,
          -2.6159500516564007,
          -7,
          -7,
          -2.663700925389648,
          -2.975891136401793,
          -7,
          -7,
          -7,
          -7,
          -2.7897662050480823,
          -7,
          -7,
          -7,
          -2.8785217955012063,
          -3.089905111439398,
          -7,
          -7,
          -3.504198918539445,
          -7,
          -7,
          -2.807535028068853,
          -4.261429415559447,
          -7,
          -3.0791812460476247,
          -2.832189461068513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6181352956847586,
          -3.150756439860309,
          -3.161368002234975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.912753303671323,
          -7,
          -3.0870712059065353,
          -7,
          -7,
          -7,
          -3.7827950003893553,
          -7,
          -7,
          -7,
          -2.243658026638696,
          -7,
          -7,
          -2.743901550485179,
          -7,
          -7,
          -7,
          -2.629409599102719,
          -7,
          -7,
          -3.2674792279092797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5024271199844326,
          -7,
          -3.8708134239155974,
          -7,
          -7,
          -2.747171268150613,
          -7,
          -7,
          -2.2911467617318855,
          -7,
          -7,
          -7,
          -1.1903316981702914,
          -1.9837765880368856,
          -1.9395192526186187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3727279408855955,
          -7,
          -2.7155855518931964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.169772369448083,
          -7,
          -7,
          -4.548131344747943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8095597146352675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9970804354717306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.484299839346786,
          -7,
          -7,
          -7,
          -2.467608105583633,
          -7,
          -7,
          -7,
          -3.3348556896172914,
          -7,
          -7,
          -7,
          -3.7222910674738463,
          -7,
          -7,
          -7,
          -2.6372895476781744,
          -7,
          -7,
          -3.22219604630172,
          -7,
          -7,
          -7,
          -2.6201360549737576,
          -2.741151598851785,
          -2.4927603890268375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.762678563727436,
          -7,
          -2.866877814337499,
          -7,
          -3.405068753367744,
          -7,
          -7,
          -3.2949069106051923,
          -7,
          -7,
          -2.5722906061514177,
          -2.2166056942039845,
          -3.1818435879447726,
          -2.8992731873176036,
          -7,
          -7,
          -7,
          -7,
          -3.984845690775141,
          -7,
          -7,
          -7,
          -2.6201360549737576,
          -7,
          -2.9628426812012423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.48572142648158,
          -7,
          -2.34143452457814,
          -7,
          -7,
          -7,
          -3.431524584187451,
          -4.530330991583461,
          -7,
          -2.5337085232398597,
          -3.0999394835616743,
          -3.100370545117563,
          -2.603144372620182,
          -7,
          -7,
          -1.932161434939202,
          -2.098116806370615,
          -3.0989896394011773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.810568529216413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.735079671396599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8830933585756897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9710437918360286,
          -1.9220114246060596,
          -4.09684052033139,
          -4.308265533209933,
          -3.0522320902523346,
          -7,
          -7,
          -7,
          -3.431536952492574,
          -3.3205616801952367,
          -2.6601537141484544,
          -7,
          -4.14646913307187,
          -3.721150843749684,
          -7,
          -7,
          -7,
          -7,
          -3.5199591807520685,
          -7,
          -7,
          -7,
          -3.6590981582255195,
          -4.202665377206015,
          -7,
          -7,
          -7,
          -7,
          -4.1365831773426445,
          -7,
          -7,
          -3.3248994970523134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.239049093140191,
          -7,
          -7,
          -3.862250674597925,
          -2.760271660542063,
          -2.3256524705723134,
          -3.9082490417283884,
          -4.565954019011971,
          -7,
          -4.158312223621103,
          -7,
          -7,
          -3.6241789257480224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9995220131289035,
          -2.4608978427565478,
          -2.536242706838319,
          -7,
          -7,
          -3.698448538015329,
          -7,
          -2.8135809885681917,
          -2.693726948923647,
          -3.795741020869244,
          -7,
          -7,
          -2.5921767573958667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9380190974762104,
          -2.5037906830571814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.166025333724231,
          -7,
          -7,
          -7,
          -2.405403283235218,
          -7,
          -2.7846172926328756,
          -7,
          -7,
          -3.45178643552429,
          -7,
          -7,
          -3.318689269947746,
          -2.6646419755561257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.747411807886423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5904535067980072,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.728434950974255,
          -7,
          -2.500373714353374,
          -2.8767949762007006,
          -7,
          -7,
          -1.7242758696007892,
          -2.9235548580675492,
          -3.0043213737826426,
          -7,
          -3.4369573306694496,
          -7,
          -2.563629384689655,
          -3.059184617631371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.317624643080059,
          -7,
          -7,
          -3.8095597146352675,
          -7,
          -7,
          -7,
          -2.409087369447835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4583960874262516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9745116927373285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8027737252919755,
          -2.8363241157067516,
          -3.208441356438567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.806179973983887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357620441162185,
          -7,
          -7,
          -7,
          -7,
          -3.3311234878466514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.974482907684665,
          -1.8864907251724818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.558492569294311,
          -7,
          -7,
          -7,
          -2.5037906830571814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.034909073367748,
          -7,
          -1.1449332770652945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7269308641214662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.518553419399928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3604419331026376,
          -7,
          -7,
          -7,
          -2.6857417386022635,
          -7,
          -7,
          -3.5146805441249818,
          -4.09715314984596,
          -2.296665190261531,
          -7,
          -7,
          -4.25927524755698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40840957846843,
          -7,
          -7,
          -7,
          -7,
          -1.6812412373755874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7729814503449637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.250980807096349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.628899564420607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.786041210242554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8744818176994666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.911370707116138,
          -7,
          -7,
          -3.1451964061141817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9425041061680806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.0979337404615395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9501700598082,
          -3.385606273598312,
          -5.131976152587657,
          -7,
          -7,
          -3.589974410356128,
          -2.6932871570056554,
          -7,
          -7,
          -7,
          -2.6349808000512285,
          -2.5188428262865648,
          -2.9934362304976116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0346284566253203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.392732117381129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.570858039282002,
          -4.001365877488586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.137986732723531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.353030975765281,
          -7,
          -7,
          -7,
          -3.2678754193188975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2751961417856235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.649972740165452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5907304057926903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.967025673712249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.823800153749878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.620656479819621,
          -3.302312102385248,
          -7,
          -7,
          -7,
          -7,
          -3.388988785124714,
          -2.924795995797912,
          -3.0655797147284485,
          -7,
          -2.8454081396217936,
          -7,
          -3.630936119064191,
          -3.649529565947819,
          -2.582063362911709,
          -2.5774917998372255,
          -2.7525300290346935,
          -7,
          -7,
          -7,
          -7,
          -2.9395192526186187,
          -2.2723058444020863,
          -3.866700756042499,
          -2.0339261204728705,
          -7,
          -7,
          -1.649334858712142,
          -2.7299742856995555,
          -2.8773713458697743,
          -2.6679196853173615,
          -7,
          -3.3376588910261424,
          -7,
          -3.7458746873072974,
          -2.576916955965207,
          -3.010299956639812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.918554530550274,
          -3.3053513694466234,
          -2.2854020929654126,
          -2.6143698395482886,
          -7,
          -2.7776684326775474,
          -7,
          -7,
          -7,
          -2.636989101812229,
          -2.7741518589547103,
          -3.2317243833285163,
          -7,
          -7,
          -7,
          -3.574956775764507,
          -7,
          -7,
          -7,
          -7,
          -3.4158077276355434,
          -2.780317312140151,
          -2.8965262174895554,
          -7,
          -3.7565093254448008,
          -7,
          -2.489489731962272,
          -7,
          -7,
          -7,
          -7,
          -2.1997551772534747,
          -7,
          -1.7993405494535817,
          -2.0714217057453848,
          -1.691179759909767,
          -7,
          -3.0461047872460387,
          -7,
          -3.247301223820282,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8965262174895554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0544737683203174,
          -7,
          -7,
          -7,
          -2.9036325160842376,
          -1.8948696567452525,
          -7,
          -7,
          -2.4420876295507603,
          -7,
          -3.3829890619644596,
          -7,
          -7,
          -7,
          -2.1899312421881114,
          -7,
          -7,
          -2.9863237770507656,
          -7,
          -7,
          -7,
          -2.513217600067939,
          -3.6619151757715462,
          -2.919601023784111,
          -2.709269960975831,
          -2.3240250955971815,
          -3.0557604646877348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9893608137762473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1252372114756253,
          -2.7218106152125467,
          -3.510813010512496,
          -7,
          -7,
          -7,
          -2.428674625648206,
          -7,
          -2.5850845541000504,
          -7,
          -3.1936810295412816,
          -7,
          -7,
          -7,
          -2.1928073248846807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.683347276399375,
          -7,
          -2.7263196121107756,
          -7,
          -7,
          -7,
          -2.92272545799326,
          -2.634162771445941,
          -2.89707700320942,
          -7,
          -7,
          -7,
          -7,
          -2.3170181010481117,
          -7,
          -2.0453229787866576,
          -7,
          -7,
          -7,
          -7,
          -1.793735581621422,
          -2.9175055095525466,
          -7,
          -2.3502480183341627,
          -3.0813473078041325,
          -2.2145127046981408,
          -7,
          -2.0552083863593693,
          -7,
          -2.542410429811593,
          -2.951337518795918,
          -2.931966114728173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.12985095078891,
          -7,
          -3.140193678578631,
          -2.916980047320382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.44870631990508,
          -7,
          -7,
          -2.2430380486862944,
          -2.663386788318517,
          -7,
          -4.248120459883603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8836614351536176,
          -2.9934362304976116,
          -7,
          -2.9273703630390235,
          -7,
          -7,
          -7,
          -2.8870543780509568,
          -7,
          -7,
          -2.9698816437465,
          -3.312388949370592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7926039027846181,
          -7,
          -7,
          -7,
          -3.398287305357401,
          -3.0655797147284485,
          -7,
          -7,
          -4.204160695855202,
          -7,
          -7,
          -2.6026025204202563,
          -2.590507462008583,
          -7,
          -7,
          -3.3027637084729817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3246253644997976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.06871581236946,
          -1.8765752054416793,
          -2.538762188781348,
          -3.0318122713303706,
          -7,
          -3.5337085232398597,
          -7,
          -7,
          -3.319175485332129,
          -7,
          -7,
          -2.7351995484223135,
          -2.444044795918076,
          -2.1851642610024675,
          -2.1457400995364067,
          -7,
          -7,
          -3.1818435879447726,
          -7,
          -4.321860681427759,
          -2.419680442945259,
          -7,
          -7,
          -7,
          -7,
          -2.621176281775035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -7,
          -7,
          -2.0839801289293933,
          -7,
          -3.6778349886836756,
          -7,
          -4.32000560114646,
          -7,
          -1.128736828938368,
          -3.2089907177589394,
          -2.3557524580768203,
          -2.5676144427308447,
          -1.932161434939202,
          -2.6349808000512285,
          -7,
          -2.25433319950825,
          -2.5018804937550585,
          -2.4110582391986624,
          -7,
          -7,
          -2.1822005912381215,
          -7,
          -2.971275848738105,
          -7,
          -2.625312450961674,
          -7,
          -1.9390652071178751,
          -7,
          -7,
          -4.322859923383261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.930269649751069,
          -4.2606357630261105,
          -7,
          -7,
          -7,
          -4.059402468155198,
          -3.8520256716529677,
          -4.4033436191304505,
          -7,
          -4.398200507219428,
          -4.657419207208257,
          -4.018991594705612,
          -4.614433158550452,
          -7,
          -4.501340024343219,
          -3.9020028913507296,
          -7,
          -4.092580300691311,
          -7,
          -4.630936119064192,
          -7,
          -7,
          -4.231902649456643,
          -7,
          -3.888269377393971,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.35981651710126,
          -4.097569639431371,
          -3.9865478134147243,
          -2.1121407636689873,
          -3.9757993096794073,
          -2.8371252805687592,
          -2.358593700955241,
          -3.0972573096934197,
          -4.072323438293041,
          -7,
          -3.508321550521236,
          -2.7402310651617,
          -2.4899584794248346,
          -4.089799173036164,
          -3.37842818542093,
          -2.902313767872166,
          -7,
          -3.168202746842631,
          -7,
          -7,
          -7,
          -3.723838623672183,
          -7,
          -7,
          -2.6384139011253755,
          -3.379989513978221,
          -4.696958914626985,
          -2.3419288837458097,
          -2.788521887222473,
          -7,
          -3.0851541116211387,
          -7,
          -4.099725025058975,
          -3.3585059114902354,
          -4.077948998506027,
          -7,
          -3.404833716619938,
          -4.027879409207207,
          -3.3856509518023437,
          -3.0153597554092144,
          -2.7422012536996743,
          -3.302330928684399,
          -2.9683661870310103,
          -3.031139050792672,
          -2.081437326351849,
          -3.1479427135532005,
          -3.247259956560877,
          -3.199480914862356,
          -3.638698865768533,
          -7,
          -3.089905111439398,
          -3.055282745486664,
          -4.034307529596563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9339510299983784,
          -2.358886204405869,
          -2.632204133050827,
          -7,
          -3.1656893760176175,
          -3.1684974835230326,
          -2.918554530550274,
          -7,
          -7,
          -3.341368567484551,
          -7,
          -3.730590514118412,
          -2.577204473011063,
          -3.1332194567324945,
          -7,
          -7,
          -7,
          -3.5149460053080044,
          -7,
          -2.803798407989674,
          -2.774395297572017,
          -7,
          -7,
          -7,
          -2.386498965550653,
          -7,
          -3.865163219506086,
          -7,
          -7,
          -7,
          -3.10179615508807,
          -4.444809605172975,
          -7,
          -7,
          -3.044147620878723,
          -7,
          -2.977266212427293,
          -7,
          -2.456366033129043,
          -7,
          -7,
          -3.0824263008607717,
          -3.653983907374069,
          -2.424881636631067,
          -7,
          -3.1222158782728267,
          -2.78993308093175,
          -7,
          -7,
          -2.9537596917332287,
          -7,
          -4.343093345096137,
          -7,
          -7,
          -2.954724790979063,
          -7,
          -3.843481943039958,
          -7,
          -7,
          -7,
          -7,
          -3.225409801222181,
          -2.218985395949339,
          -7,
          -2.2422100322640643,
          -7,
          -7,
          -7,
          -3.755188585608325,
          -7,
          -7,
          -3.038620161949703,
          -7,
          -7,
          -2.9206450014067875,
          -2.7527205075033088,
          -2.82865989653532,
          -7,
          -3.764325605625984,
          -7,
          -3.2149762347220667,
          -2.870403905279027,
          -3.7708520116421442,
          -7,
          -3.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023602224258929,
          -3.27207378750001,
          -7,
          -3.448971187456634,
          -3.800648355363988,
          -7,
          -7,
          -2.6299190355035416,
          -7,
          -2.738384123512156,
          -3.1908917169221698,
          -7,
          -7,
          -2.463395230212905,
          -7,
          -3.2130452804616065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.806519134080705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0060379549973173,
          -7,
          -7,
          -2.9363461582661623,
          -7,
          -7,
          -7,
          -7,
          -2.843076977385342,
          -7,
          -7,
          -3.3876122562959106,
          -2.8847953639489807,
          -7,
          -7,
          -7,
          -3.1781132523146316,
          -7,
          -7,
          -2.420368379857524,
          -7,
          -3.6163704722912695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.118264726089479,
          -3.1752671276454327,
          -7,
          -7,
          -7,
          -3.8086835091289695,
          -3.3481100684802376,
          -7,
          -2.6235446283772546,
          -2.6522463410033232,
          -2.9014583213961123,
          -7,
          -3.236075179005586,
          -3.7960884286806684,
          -7,
          -3.2184041992497217,
          -2.6719466265655902,
          -7,
          -3.4211101297934343,
          -3.406199423663313,
          -7,
          -7,
          -3.4369573306694496,
          -2.39259484773975,
          -7,
          -7,
          -7,
          -2.7344797894255772,
          -2.454692449239477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.949317708578839,
          -7,
          -2.5442231218316245,
          -7,
          -3.1078880251827985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.581038948772167,
          -2.406011305416004,
          -3.4176377396522297,
          -7,
          -2.776095557782467,
          -7,
          -7,
          -7,
          -3.424881636631067,
          -3.474507639116976,
          -2.1396272484806373,
          -7,
          -7,
          -7,
          -3.0741845459702977,
          -7,
          -7,
          -7,
          -7,
          -3.643057683751453,
          -2.7768464086952993,
          -7,
          -7,
          -3.1001866778489813,
          -7,
          -3.4347285417797577,
          -7,
          -7,
          -7,
          -7,
          -3.413467412985825,
          -7,
          -3.471144965160633,
          -3.137670537236755,
          -2.721398375521505,
          -7,
          -3.4628470358316736,
          -3.4861469968065726,
          -2.979978789341033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4114513421379375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.708562525598842,
          -3.4138025167693513,
          -7,
          -3.462996612028056,
          -3.4470028984661623,
          -2.144923510396036,
          -7,
          -7,
          -3.4168068718229443,
          -2.9827233876685453,
          -2.9236325331770483,
          -7,
          -2.752432609261474,
          -3.872360255801214,
          -3.4149733479708178,
          -7,
          -2.1823195271506552,
          -3.1635130490182313,
          -7,
          -2.822560336942692,
          -3.543074235033532,
          -1.7181632495953605,
          -7,
          -7,
          -3.4391747398434687,
          -7,
          -7,
          -3.4602587043308133,
          -7,
          -7,
          -7,
          -3.4051755462179893,
          -7,
          -2.3443922736851106,
          -2.7400994009248563,
          -7,
          -7,
          -7,
          -7,
          -3.4149733479708178,
          -3.107718610520263,
          -7,
          -2.9116901587538613,
          -2.7459851262089248,
          -7,
          -3.113943352306837,
          -7,
          -2.2986378584396854,
          -7,
          -7,
          -7,
          -3.4530123911214554,
          -7,
          -7,
          -2.3309546133716443,
          -3.4679039465228003,
          -7,
          -3.439332693830263,
          -3.4749443354653877,
          -3.1277525158329733,
          -7,
          -2.3954478504814185,
          -7,
          -7,
          -7,
          -3.418135498425232,
          -7,
          -7,
          -7,
          -2.7609607093960578,
          -7,
          -3.5030639822276726,
          -7,
          -3.5160062303860475,
          -2.446084263545658,
          -7,
          -7,
          -7,
          -7,
          -3.1922886125681202,
          -3.533772058384718,
          -2.271221849767887,
          -2.734159513244467,
          -7,
          -7,
          -7,
          -3.2723058444020863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7478000908643687,
          -7,
          -3.2000292665537704,
          -3.417803722639881,
          -2.7178368674869255,
          -7,
          -7,
          -3.4452927694259716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.119915410257991,
          -7,
          -3.1142772965615864,
          -2.3312826522290138,
          -7,
          -2.9708116108725178,
          -4.457715410495883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4075608494863623,
          -2.663700925389648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4352071032407476,
          -3.1266724494173004,
          -7,
          -7,
          -7,
          -7,
          -3.4197905861063624,
          -3.4219328132785085,
          -7,
          -3.4382258076045296,
          -2.9324737646771535,
          -7,
          -3.3793961751941644,
          -2.744851561311451,
          -7,
          -7,
          -7,
          -7,
          -2.8674674878590514,
          -3.1602283571978584,
          -7,
          -3.926728200446934,
          -7,
          -7,
          -7,
          -2.5084623812733606,
          -3.508798965403905,
          -3.2210228052048415,
          -2.3455466988249936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1855421548543754,
          -3.4577305482459986,
          -7,
          -7,
          -3.4379090355394983,
          -7,
          -3.4127964287165433,
          -3.4321672694425884,
          -3.1174370252826193,
          -2.4686947660162097,
          -2.899546931090867,
          -3.4574276929464847,
          -7,
          -3.552272669914343,
          -7,
          -7,
          -2.2678263615859806,
          -7,
          -7,
          -3.158060793936605,
          -7,
          -7,
          -2.988261596728756,
          -2.7011977951071855,
          -3.446537167073644,
          -3.0423129401940403,
          -7,
          -3.827304641089735,
          -3.227372442289636,
          -7,
          -7,
          -7,
          -3.5499836111596887,
          -3.484157424365381,
          -7,
          -7,
          -2.6060741174982827,
          -7,
          -7,
          -7,
          -3.1371958119405483,
          -7,
          -2.9324737646771535,
          -2.9845273133437926,
          -7,
          -3.275234549433838,
          -7,
          -3.9052576374727983,
          -7,
          -2.9417598138146954,
          -2.1117340347757962,
          -2.5280163411892014,
          -7,
          -2.098116806370615,
          -2.5188428262865648,
          -2.25433319950825,
          -7,
          -2.2952436031267367,
          -2.9317967661271176,
          -7,
          -7,
          -7,
          -7,
          -3.43568513794163,
          -7,
          -2.5399538416563967,
          -7,
          -2.6725596277632757,
          -7,
          -7,
          -4.340969313301004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.973558854042434,
          -7,
          -4.117668940562442,
          -4.601234046916447,
          -7,
          -4.51731468566477,
          -3.733935179300555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015443587951102,
          -4.632372922202545,
          -3.9899390132845354,
          -4.801396849070872,
          -7,
          -7,
          -7,
          -4.484869032720402,
          -7,
          -4.723997176191744,
          -7,
          -7,
          -7,
          -4.240124730168566,
          -3.9326259440217823,
          -7,
          -7,
          -7,
          -7,
          -4.060168811945148,
          -2.1059515089530225,
          -3.8989554282244407,
          -3.3969931804349707,
          -2.986995539724382,
          -7,
          -7,
          -7,
          -3.2284353584597953,
          -2.7773750312638663,
          -2.693726948923647,
          -3.3703897104835856,
          -3.5087720482709264,
          -2.964907523353008,
          -7,
          -3.4085226171161014,
          -7,
          -7,
          -7,
          -4.247457695814812,
          -7,
          -7,
          -3.1923583395461788,
          -3.6892289202673214,
          -4.702137461143438,
          -7,
          -2.346455924429052,
          -2.9558480361547432,
          -3.38009058759723,
          -7,
          -7,
          -7,
          -3.43930110762843,
          -7,
          -7,
          -3.7942091163464964,
          -3.548941916664869,
          -7,
          -3.8311015645013593,
          -7,
          -3.142884596540962,
          -7,
          -2.359835482339888,
          -2.8802724280098246,
          -3.6871497913170237,
          -7,
          -3.4256301060619636,
          -7,
          -7,
          -3.5009222391903005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4812275779993205,
          -7,
          -3.0679383299743406,
          -7,
          -7,
          -3.3842817128855844,
          -7,
          -2.841359470454855,
          -7,
          -3.4458635609892205,
          -3.45408227073109,
          -3.475167366363165,
          -3.2182728535714475,
          -7,
          -3.636989101812229,
          -7,
          -3.60151678365001,
          -7,
          -7,
          -7,
          -3.729974285699556,
          -7,
          -7,
          -3.4768316285122607,
          -2.9648879044212895,
          -7,
          -3.9600900679049196,
          -7,
          -7,
          -3.223154240460178,
          -4.061622092243773,
          -3.9144111638066694,
          -7,
          -7,
          -3.4620983811351556,
          -3.570192561095726,
          -3.437750562820388,
          -7,
          -7,
          -3.6955692270361853,
          -3.4410664066392633,
          -7,
          -2.566610773321697,
          -3.1124374173218436,
          -3.8673496171887924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.075966455076692,
          -7,
          -3.4234097277330933,
          -7,
          -7,
          -3.9427519204298136,
          -7,
          -7,
          -3.8448498008066387,
          -3.464638559095033,
          -2.8871110573475165,
          -7,
          -7,
          -2.9769610160114275,
          -7,
          -7,
          -7,
          -3.874017703862186,
          -3.4983105537896004,
          -7,
          -7,
          -3.6144753660903954,
          -7,
          -3.117602691690084,
          -3.500373714353374,
          -3.019393263978083,
          -7,
          -3.102262149494273,
          -7,
          -2.168185403160118,
          -2.668785145596836,
          -3.8859828113549733,
          -3.842172229385616,
          -3.134283382991931,
          -3.59802407233419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3600250891893975,
          -7,
          -3.5801643896985524,
          -3.217706602245906,
          -2.7614982691650285,
          -7,
          -7,
          -7,
          -7,
          -3.4605971888976015,
          -3.22284647997415,
          -3.4168900301730125,
          -7,
          -3.4260230156898763,
          -7,
          -2.937939998216925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.690196080028514,
          -3.173186268412274,
          -2.8847953639489807,
          -7,
          -3.5082603055123345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.763490387713164,
          -7,
          -7,
          -7,
          -7,
          -3.6612446089593336,
          -7,
          -7,
          -3.2146604767734983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.675167089663394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3864895783427094,
          -7,
          -7,
          -2.950364854376123,
          -7,
          -3.0010410579860936,
          -7,
          -2.504130905935453,
          -7,
          -7,
          -7,
          -3.15946692901018,
          -7,
          -7,
          -3.2143138974243994,
          -2.419163774190302,
          -7,
          -2.6830470382388496,
          -2.9429995933660407,
          -2.166895074645,
          -2.2130748253088512,
          -3.0269416279590295,
          -4.090011024007147,
          -2.394889257167419,
          -7,
          -7,
          -3.0211892990699383,
          -7,
          -7,
          -7,
          -7,
          -2.8830933585756897,
          -7,
          -3.5050530267664497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8058028185264856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5135505203463375,
          -3.2612628687924934,
          -2.9903388547876015,
          -7,
          -7,
          -4.056828652637812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6345528368718063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.963787827345555,
          -7,
          -7,
          -7,
          -2.571708831808688,
          -7,
          -1.9352192721258945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9537596917332287,
          -3.0128372247051725,
          -2.9642596301968487,
          -7,
          -2.9647309210536292,
          -7,
          -7,
          -7,
          -2.121043692724776,
          -7,
          -7,
          -2.9731278535996988,
          -3.0849335749367164,
          -7,
          -7,
          -2.7558748556724915,
          -7,
          -2.3631417096979495,
          -2.481442628502305,
          -2.437750562820388,
          -3.0010016694117185,
          -7,
          -2.215373152783422,
          -7,
          -2.4951973183654577,
          -7,
          -7,
          -2.7307822756663893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7374312005145827,
          -7,
          -7,
          -3.154423973114647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4450850227193537,
          -7,
          -7,
          -2.118689787331298,
          -3.32156391196738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.043065401325682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.678518379040114,
          -7,
          -2.89835945989891,
          -7,
          -3.2945213361777705,
          -7,
          -7,
          -2.7070387720538625,
          -7,
          -7,
          -7,
          -3.1225435240687545,
          -2.6815427260943268,
          -3.2422929049829308,
          -7,
          -7,
          -2.366236123718293,
          -2.7041505168397992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4500950758716025,
          -7,
          -7,
          -7,
          -2.976808337338066,
          -7,
          -7,
          -3.048053173115609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9854264740830017,
          -7,
          -2.9698816437465,
          -2.4310419453358856,
          -2.876217840591642,
          -7,
          -7,
          -7,
          -7,
          -2.954724790979063,
          -7,
          -7,
          -7,
          -2.438937701095528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.01674092728626,
          -7,
          -7,
          -7,
          -2.9609461957338317,
          -7,
          -7,
          -7,
          -2.7283537820212285,
          -7,
          -7,
          -7,
          -2.56839730816483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.444513206334043,
          -7,
          -3.8077649673797778,
          -7,
          -7,
          -2.965201701025912,
          -2.0415762803763062,
          -7,
          -2.261130643344097,
          -1.5819346385669724,
          -7,
          -7,
          -7,
          -7,
          -3.004751155591001,
          -2.666829861704301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9786369483844743,
          -2.524396122103842,
          -2.877083256650651,
          -3.077731179652392,
          -3.0086001717619175,
          -3.7111531868500505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6319695947927622,
          -7,
          -3.296665190261531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.197321917535383,
          -2.531223374533027,
          -7,
          -7,
          -7,
          -7,
          -2.437750562820388,
          -7,
          -7,
          -1.7297046213121872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.954724790979063,
          -2.2398355349224595,
          -7,
          -3.3820620915331476,
          -7,
          -4.230011213054175,
          -7,
          -2.961658348637715,
          -2.759509447553341,
          -1.5803148437557177,
          -7,
          -3.0989896394011773,
          -2.9934362304976116,
          -2.5018804937550585,
          -2.2952436031267367,
          -7,
          -7,
          -7,
          -7,
          -2.828981954007923,
          -7,
          -7,
          -7,
          -2.655138434811382,
          -7,
          -2.440336511801791,
          -7,
          -7,
          -7,
          -4.7526782943689865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.261587972170946,
          -7,
          -7,
          -4.582665500466235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.10383107722707,
          -3.9084850188786495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.25321681250213,
          -7,
          -7,
          -4.254016060861037,
          -7,
          -7,
          -4.400710636773232,
          -7,
          -2.9602328731285126,
          -4.278250442299367,
          -3.3176037419331044,
          -3.308422115236931,
          -3.1370374547895126,
          -7,
          -7,
          -4.250371202434478,
          -7,
          -7,
          -4.094016681120422,
          -3.382047075732925,
          -3.456366033129043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3251236586893103,
          -4.505805449051175,
          -5.174440702782961,
          -7,
          -2.506843136339351,
          -7,
          -4.618581480328452,
          -7,
          -4.945473509077624,
          -3.670987603010034,
          -7,
          -7,
          -7,
          -4.0327396052094935,
          -7,
          -7,
          -7,
          -7,
          -3.33139837151611,
          -7,
          -3.0409976924234905,
          -3.381423019450003,
          -7,
          -7,
          -3.68567208670853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019116290447073,
          -7,
          -7,
          -7,
          -3.8265930539340482,
          -7,
          -4.6350311209460076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.530583859645118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.215174739097536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3466560922695425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.028977705208778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.665393350279712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6685292718594495,
          -3.1109262422664203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.752432609261474,
          -3.205745540942662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.327134064918578,
          -7,
          -7,
          -3.819763220818885,
          -3.206353560072406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2982290899777897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2478096594727353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8164622587764545,
          -2.9479236198317262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8260748027008264,
          -7,
          -4.57610513115158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7403626894942439,
          -7,
          -7,
          -7,
          -7,
          -4.334212409393176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.113943352306837,
          -7,
          -3.2173084362374205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0244446171313495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0043213737826426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7686381012476144,
          -7,
          -7,
          -7,
          -7,
          -4.056371179475529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.735726614588647,
          -7,
          -7,
          -3.000867721531227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426372980809529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.589111464400596,
          -7,
          -7,
          -7,
          -7,
          -3.066875435390042,
          -7,
          -7,
          -7,
          -2.705007959333336,
          -2.7965743332104296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7242758696007892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8573324964312685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.149834696715785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.601734148260105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8024316264307236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.591064607026499,
          -7,
          -7,
          -1.780214410947417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432868317689393,
          -7,
          -7,
          -3.941188324583631,
          -7,
          -7,
          -7,
          -7,
          -2.4110582391986624,
          -2.9317967661271176,
          -7,
          -7,
          -7,
          -7,
          -2.7259116322950483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.731387283168788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4311546090522445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.300530269612207,
          -3.723291446477584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351332399626383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.308884414422017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6752588323279403,
          -7,
          -7,
          -4.126272143076777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.009450895798694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.292625212459791,
          -7,
          -4.325659309801641,
          -2.912753303671323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.307496037913213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9003671286564703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9667083835601757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.628502456251952,
          -2.511214701136388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008983203815472,
          -7,
          -7,
          -4.278639297890739,
          -7,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -2.5998830720736876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.146624088824005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4638929889859074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.652536418593025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2751961417856235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657572107612741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9738203243526837,
          -7,
          -7,
          -7,
          -7,
          -1.8512583487190755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055340099544181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.133403170134419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9344984512435677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727199542699307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067294086315977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1212314551496214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.546542663478131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4008832155483626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.256477206241677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.506505032404872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.639486489268586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.343605508104172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.430937302851301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.783774986212391,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721068301797159,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.350809910936365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603144372620182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325382234828304,
          -2.8981764834976764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.682145076373832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1335389083702174,
          -3.3881012015705165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3816420539580045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.103917694052505,
          -2.795184589682424,
          -7,
          -3.4051755462179893,
          -7,
          -7,
          -7,
          -3.7138264243805246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.916980047320382,
          -7,
          -7,
          -7,
          -7,
          -4.145786670174155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.462397997898956,
          -7,
          -4.876927608974731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6532125137753437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.739572344450092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -7,
          -7,
          -7,
          -7,
          -4.7271100016409155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368258985002859,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5314789170422551,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.398981066658131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0400086360135417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.29970337336519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979056442068636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.485011214578573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.77232170672292,
          -3.620561903494791,
          -7,
          -7,
          -7,
          -7,
          -3.6679196853173615,
          -1.8618329976579449,
          -7,
          -7,
          -7,
          -7,
          -3.919444210465237,
          -7,
          -7,
          -2.500716623555479,
          -2.891882167768502,
          -7,
          -2.7788744720027396,
          -2.709269960975831,
          -2.5269850685599957,
          -7,
          -7,
          -7,
          -2.8020892578817325,
          -7,
          -7,
          -2.8356905714924254,
          -7,
          -2.403977963669355,
          -7,
          -7,
          -3.285782273779395,
          -7,
          -3.564902672529205,
          -7,
          -2.188084373714938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.061452479087193,
          -7,
          -2.5545295388316016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.042693618178643,
          -2.7058637122839193,
          -7,
          -7,
          -7,
          -3.3729120029701067,
          -7,
          -7,
          -7,
          -3.9263939002696824,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -2.7442929831226763,
          -7,
          -2.360309344342059,
          -7,
          -1.761453026621882,
          -7,
          -7,
          -7,
          -3.6200709579966586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7634279935629373,
          -2.734799829588847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7075701760979367,
          -7,
          -7,
          -2.8228216453031045,
          -2.7450747915820575,
          -1.3258803868629827,
          -7,
          -7,
          -2.459392487759231,
          -7,
          -2.8681299149575903,
          -7,
          -7,
          -7,
          -2.929929560084588,
          -7,
          -7,
          -3.560743301054712,
          -7,
          -7,
          -7,
          -7,
          -4.2621820444366785,
          -2.767897616018091,
          -2.6338049875467577,
          -2.461798557525109,
          -7,
          -7,
          -7,
          -2.5508396050657853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7041505168397992,
          -7,
          -3.1048284036536553,
          -3.165095874754218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.417969642214737,
          -7,
          -7,
          -7,
          -2.269800223528476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6127838567197355,
          -7,
          -2.977266212427293,
          -2.8129133566428557,
          -7,
          -2.9238994354584613,
          -2.255272505103306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0023820749327608,
          -7,
          -7,
          -7,
          -7,
          -2.522055578229381,
          -7,
          -7,
          -2.9459607035775686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.482873583608754,
          -3.2329961103921536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0884904701823963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0572856444182146,
          -2.64957822912025,
          -4.849465482196628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -3.7000977046130537,
          -7,
          -7,
          -7,
          -7,
          -2.7730546933642626,
          -7,
          -7,
          -2.8494194137968996,
          -7,
          -2.7528164311882715,
          -7,
          -2.1513462735539934,
          -7,
          -7,
          -7,
          -3.0521165505499983,
          -7,
          -3.415056858110851,
          -7,
          -7,
          -7,
          -7,
          -2.7466341989375787,
          -2.499785239355606,
          -7,
          -7,
          -2.4656306657101514,
          -3.229937685907934,
          -2.720159303405957,
          -7,
          -7,
          -2.8102325179950842,
          -2.409087369447835,
          -2.9206450014067875,
          -7,
          -7,
          -7,
          -2.7505083948513462,
          -7,
          -7,
          -1.6028348255779234,
          -2.6972293427597176,
          -3.058426024457005,
          -7,
          -7,
          -4.133357914626442,
          -7,
          -7,
          -3.7792356316758635,
          -7,
          -2.2422100322640643,
          -2.926342446625655,
          -7,
          -3.2081725266671217,
          -2.1653432655224587,
          -7,
          -7,
          -3.105510184769974,
          -7,
          -4.6220654322136685,
          -1.5356019968889618,
          -7,
          -7,
          -7,
          -7,
          -2.2231496826367745,
          -7,
          -7,
          -2.9041743682841634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3562990843061946,
          -7,
          -7,
          -7,
          -4.655428188061645,
          -7,
          -1.9267055185280078,
          -4.548929646552791,
          -2.8302678009336417,
          -7,
          -7,
          -7,
          -2.1822005912381215,
          -7,
          -2.828981954007923,
          -2.7259116322950483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.859438535455056,
          -7,
          -1.957722850186747,
          -7,
          -7,
          -4.6213736435061765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.403274985811686,
          -3.6942860407476794,
          -7,
          -7,
          -7,
          -4.659193358577049,
          -4.804711751085301,
          -7,
          -7,
          -7,
          -4.655071171607829,
          -4.008685319195168,
          -7,
          -7,
          -7,
          -7,
          -4.310048648328322,
          -7,
          -7,
          -4.628440020513509,
          -4.153845340080965,
          -7,
          -4.405926625612947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4608862829944553,
          -3.230640479632605,
          -2.552668216112193,
          -2.3001605369513523,
          -7,
          -3.105510184769974,
          -3.643687033559034,
          -3.327086350362379,
          -3.285557309007774,
          -3.7799570512469063,
          -3.0024746191278555,
          -2.88284966953054,
          -7,
          -3.2748503200166645,
          -3.237040791379191,
          -7,
          -7,
          -3.2908412041830033,
          -3.404320467221731,
          -7,
          -2.881802960668849,
          -3.4369164966752686,
          -7,
          -7,
          -3.3461573022320086,
          -7,
          -3.5353363234811113,
          -7,
          -4.466531517353593,
          -2.9360107957152097,
          -7,
          -7,
          -3.207095540419218,
          -4.017784353096679,
          -3.283142863303242,
          -7,
          -2.5598145842427398,
          -7,
          -2.5841823863380733,
          -3.474507639116976,
          -7,
          -2.3301438206546727,
          -3.868009281278586,
          -7,
          -3.937377450772812,
          -7,
          -3.0443437348951075,
          -2.6780122672453888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7025166974381505,
          -7,
          -2.467756051244033,
          -7,
          -3.4291060083326967,
          -2.923546226642205,
          -7,
          -7,
          -7,
          -3.023458237643675,
          -7,
          -3.589746565098586,
          -2.8027737252919755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8504011479971583,
          -7,
          -7,
          -7,
          -3.439707604467424,
          -7,
          -7,
          -7,
          -1.8839194063414246,
          -7,
          -2.3679767852945943,
          -7,
          -7,
          -3.466125870418199,
          -7,
          -7,
          -7,
          -2.745855195173729,
          -3.726890140741822,
          -3.0334237554869494,
          -3.347720217034038,
          -7,
          -7,
          -7,
          -2.8435442119456353,
          -4.338237298881058,
          -7,
          -2.486430478854434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1132279196600905,
          -2.6646419755561257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7427774843253034,
          -7,
          -7,
          -7,
          -7,
          -3.4825877695267677,
          -7,
          -3.0528477834008605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277035888172111,
          -7,
          -7,
          -7,
          -3.3650301536825658,
          -7,
          -7,
          -3.6867032848448513,
          -7,
          -2.7944880466591697,
          -7,
          -7,
          -7,
          -2.6283889300503116,
          -7,
          -7,
          -7,
          -2.8000293592441343,
          -7,
          -3.5582284218033258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2168693557411143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808323528187753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9956351945975501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357048210389756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5787537844264343,
          -7,
          -7,
          -4.576266465391071,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7795002913500433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6972293427597176,
          -2.187520720836463,
          -7,
          -3.053462604925455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.04058915550344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313023110323238,
          -7,
          -7,
          -7,
          -2.2952004520032574,
          -7,
          -7,
          -7,
          -7,
          -2.788875115775417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.205339721431523,
          -7,
          -7,
          -7,
          -7,
          -4.735950025313642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.669502834104343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071882007306125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.718501688867274,
          -7,
          -7,
          -3.8824513497936164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2005769267548483,
          -7,
          -7,
          -7,
          -7,
          -3.41433256951902,
          -7,
          -7,
          -7,
          -7,
          -2.815577748324267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1958996524092336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9344984512435677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7283537820212285,
          -1.7265049308598654,
          -2.3064250275506875,
          -7,
          -2.4742162640762553,
          -1.9622114391106,
          -7,
          -7,
          -7,
          -7,
          -3.4102709642521845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0751818546186915,
          -7,
          -3.028571252692538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.173186268412274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0178677189635055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.423245873936808,
          -1.693140460675295,
          -3.00987563371216,
          -1.4913616938342726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703325776319297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0153597554092144,
          -7,
          -4.000065139286961,
          -3.7255849722706946,
          -7,
          -7,
          -7,
          -7,
          -2.428944290035574,
          -3.1772478362556233,
          -7,
          -7,
          -3.692935002531138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.39732190576478,
          -4.678318029299685,
          -7,
          -2.330413773349191,
          -2.4055658794489867,
          -7,
          -4.610234175334389,
          -7,
          -7,
          -7,
          -4.0528862352563815,
          -2.271841606536499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5620310189991775,
          -7,
          -4.0300124406298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.505149978319906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4899584794248346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.639486489268586,
          -7,
          -7,
          -7,
          -2.2810333672477277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0569048513364727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.656098202012832,
          -4.235697947386347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.286456469746983,
          -7,
          -7,
          -3.4098486220211917,
          -7,
          -7,
          -7,
          -3.7184186418296554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1481911962420113,
          -2.465878338646378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8260748027008264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0572285467366145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9907826918031377,
          -7,
          -7,
          -3.836554266470963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9456006716552943,
          -7,
          -7,
          -7,
          -2.591064607026499,
          -2.7291647896927698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3828372023616065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.459392487759231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.315970345456918,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9232440186302764,
          -7,
          -2.45484486000851,
          -7,
          -3.741204141890008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0092080017868237,
          -7,
          -2.378397900948138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8443218208944798,
          -7,
          -3.2838663484734685,
          -7,
          -7,
          -7,
          -2.7450747915820575,
          -7,
          -7,
          -3.2227164711475833,
          -7,
          -7,
          -7,
          -7,
          -4.037960073338272,
          -7,
          -7,
          -3.064832219738574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.681512586638962,
          -7,
          -3.4316853446860116,
          -7,
          -7,
          -3.7951149856303634,
          -7,
          -7,
          -1.5111403420090934,
          -7,
          -3.009450895798694,
          -7,
          -7,
          -7,
          -3.77557404291963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.649351087649641,
          -7,
          -1.8672710189654482,
          -7,
          -2.155336037465062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0576104477254815,
          -7,
          -7,
          -2.7693773260761385,
          -7,
          -2.2894774663446023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8432327780980096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7752462597402365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5943925503754266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4152516526787737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9182051383496885,
          -4.497827736083504,
          -7,
          -7,
          -7,
          -3.0159881053841304,
          -7,
          -7,
          -2.688419822002711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8674674878590514,
          -2.0253058652647704,
          -7,
          -7,
          -2.6127838567197355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4265112613645754,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -3.7573960287930244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9915952167958098,
          -2.667452952889954,
          -2.9912260756924947,
          -7,
          -4.399182050312353,
          -3.0199466816788423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.705007959333336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.096736260462469,
          -5.132089909980955,
          -7,
          -2.767526899408382,
          -3.943160505065108,
          -3.0253058652647704,
          -7,
          -7,
          -7,
          -2.971275848738105,
          -3.43568513794163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.423245873936808,
          -7,
          -2.45178643552429,
          -1.6279957254223623,
          -2.164352855784437,
          -3.3787611753163733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274053883354042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.484057706083955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0670708560453703,
          -4.27063226051252,
          -4.303973202540306,
          -2.8901015084080566,
          -7,
          -7,
          -7,
          -4.543298040491669,
          -3.7839035792727347,
          -7,
          -7,
          -3.8391322339496554,
          -7,
          -7,
          -3.7290027092721902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05332818707134,
          -4.979953345254416,
          -7,
          -7,
          -2.4363898479258244,
          -7,
          -4.611627731468287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1573358620972805,
          -7,
          -2.6424645202421213,
          -3.906097893232545,
          -7,
          -7,
          -4.633458355590473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9907826918031377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.327287397639064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.08131129515998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8709888137605755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658269033432031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.103233406386929,
          -7,
          -7,
          -4.275317114377382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.182699903336043,
          -7,
          -3.857935264719429,
          -7,
          -7,
          -7,
          -7,
          -2.24551266781415,
          -7,
          -7,
          -7,
          -2.24551266781415,
          -7,
          -3.2213272832956665,
          -7,
          -2.3222192947339195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0408264172755874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6627578316815743,
          -7,
          -4.058122215782914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6711728427150834,
          -3.401228167498113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7032913781186614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.771440486639912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2121876044039577,
          -2.617000341120899,
          -7,
          -2.4305587695227575,
          -2.079181246047625,
          -7,
          -3.9495607630362115,
          -1.8260748027008264,
          -7,
          -7,
          -7,
          -2.130333768495006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5237186027131404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0253058652647704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9800033715837464,
          -1.9344984512435677,
          -7,
          -1.5759571887637573,
          -7,
          -7,
          -7,
          -1.2253092817258628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.113943352306837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.110589710299249,
          -7,
          -7,
          -7,
          -1.7634279935629373,
          -2.1889284837608534,
          -2.6283889300503116,
          -7,
          -7,
          -7,
          -1.8836614351536176,
          -7,
          -7,
          -7,
          -3.1119342763326814,
          -7,
          -7,
          -7,
          -4.606155559286679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.035829825252828,
          -7,
          -2.0278590441755795,
          -7,
          -4.495707340823701,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432942046454581,
          -7,
          -2.546542663478131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.693140460675295,
          -2.45178643552429,
          -7,
          -2.7155855518931964,
          -1.9518230353159118,
          -3.0563330349511615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.396216788290972,
          -4.732570658579406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.579932145636578,
          -7,
          -7,
          -7,
          -7,
          -4.047235915459681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.602385590105105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.569447066270134,
          -2.7041505168397992,
          -3.7649975992848805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.469822015978163,
          -7,
          -7,
          -7,
          -7,
          -3.5068914154213755,
          -4.678400001728747,
          -7,
          -7,
          -7,
          -2.4313637641589874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6463056802847587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.454692449239477,
          -7,
          -7,
          -3.758706478093696,
          -7,
          -7,
          -4.3312652916762255,
          -7,
          -7,
          -3.590618948206578,
          -7,
          -7,
          -2.3384564936046046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.028571252692538,
          -7,
          -7,
          -3.9857407410500745,
          -7,
          -2.225309281725863,
          -7,
          -7,
          -7,
          -4.627181447147527,
          -2.936513742478893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6570558528571038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.673020907128896,
          -4.302716844820226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2884728005997825,
          -2.8432327780980096,
          -7,
          -3.4113671357427338,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9786141382013285,
          -7,
          -2.3324384599156054,
          -7,
          -7,
          -7,
          -2.6473829701146196,
          -2.9537596917332287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.975178970940877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.552331205374715,
          -7,
          -7,
          -7,
          -3.6869935662646784,
          -3.7091002815511667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.164352855784437,
          -2.589018238151037,
          -7,
          -3.239549720840473,
          -3.0303431158216347,
          -7,
          -7,
          -2.989004615698537,
          -3.056142262059052,
          -7,
          -3.065206128054312,
          -2.3364834179016465,
          -3.0402066275747113,
          -7,
          -7,
          -3.0599418880619544,
          -2.330413773349191,
          -7,
          -3.0610753236297916,
          -7,
          -2.5318437171325017,
          -7,
          -3.029287128195125,
          -7,
          -3.0941215958405612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7672300981107183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7126497016272113,
          -7,
          -3.1489109931093564,
          -7,
          -7,
          -7,
          -7,
          -4.060546755126169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.246744709723841,
          -7,
          -7,
          -3.3938258059781585,
          -7,
          -3.0599418880619544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.141763230275788,
          -7,
          -2.9014583213961123,
          -7,
          -2.519827993775719,
          -7,
          -3.449863924718144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0179272562152137,
          -7,
          -7,
          -7,
          -7,
          -3.1772478362556233,
          -7,
          -7,
          -2.520155886944864,
          -7,
          -2.833536661357987,
          -7,
          -7,
          -7,
          -1.9637878273455553,
          -7,
          -7,
          -2.3302000983230338,
          -7,
          -3.0115704435972783,
          -2.8175653695597807,
          -3.0791812460476247,
          -3.40023176389234,
          -7,
          -3.245018870737753,
          -3.2830749747354715,
          -7,
          -7,
          -3.0398105541483504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.443966678374579,
          -2.7507654498940113,
          -3.5390760987927767,
          -7,
          -7,
          -3.8449118739121406,
          -3.0115704435972783,
          -7,
          -2.132899769944483,
          -7,
          -3.250420002308894,
          -7,
          -7,
          -7,
          -2.8718818587232695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.222456336679247,
          -3.13481437032046,
          -2.3273589343863303,
          -7,
          -2.1022465501163183,
          -3.0464951643347082,
          -7,
          -2.907684032886376,
          -7,
          -2.5136614370834756,
          -2.9813655090785445,
          -1.9697546756175726,
          -2.7007037171450192,
          -2.7209857441537393,
          -7,
          -2.6138418218760693,
          -7,
          -7,
          -2.9885589568786157,
          -7,
          -2.499283752832909,
          -7,
          -7,
          -2.4274861090957858,
          -7,
          -2.7101173651118162,
          -7,
          -7,
          -2.7573960287930244,
          -2.624625819226704,
          -3.0461047872460387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.989894563718773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4803663095328092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4614985267830187,
          -2.7269987279362624,
          -7,
          -7,
          -7,
          -3.0025979807199086,
          -7,
          -7,
          -7,
          -7,
          -2.7785130117389247,
          -7,
          -2.066118773208383,
          -7,
          -7,
          -2.9947569445876283,
          -7,
          -7,
          -7,
          -2.279134394034571,
          -4.020816887028907,
          -7,
          -7,
          -7,
          -7,
          -3.0236639181977933,
          -2.7271344237604884,
          -7,
          -2.5895772957033327,
          -7,
          -7,
          -7,
          -1.810232517995084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7532765701844184,
          -1.8349855478280104,
          -4.20710901924425,
          -7,
          -7,
          -7,
          -2.991757539534348,
          -7,
          -2.7664128471123997,
          -2.500079576528447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.570834706424214,
          -1.8712981525680923,
          -7,
          -3.074450718954591,
          -2.4631461367263494,
          -3.0111473607757975,
          -7,
          -3.0538464268522527,
          -7,
          -2.5369370227046737,
          -2.6023313405913373,
          -2.6334684555795866,
          -3.0484418035504044,
          -4.138260582719981,
          -7,
          -7,
          -3.510276844417355,
          -7,
          -7,
          -2.414639146737009,
          -7,
          -2.714329759745233,
          -3.130655349022031,
          -1.5523405703162654,
          -2.2380461031287955,
          -2.761927838420529,
          -7,
          -3.799636871557091,
          -2.298367831128048,
          -7,
          -7,
          -7,
          -3.295567099962479,
          -7,
          -7,
          -2.3138672203691537,
          -3.1020905255118367,
          -2.6875289612146345,
          -7,
          -7,
          -7,
          -7,
          -2.520701826026063,
          -7,
          -7,
          -3.98878184345364,
          -7,
          -4.155524611715298,
          -7,
          -2.3279262688653164,
          -3.192312866699809,
          -2.958085848521085,
          -7,
          -7,
          -3.0346284566253203,
          -2.625312450961674,
          -2.5399538416563967,
          -2.655138434811382,
          -7,
          -7,
          -7,
          -2.859438535455056,
          -3.00987563371216,
          -1.6279957254223623,
          -2.7155855518931964,
          -7,
          -2.417471693203293,
          -2.651554899236661,
          -7,
          -7,
          -4.626155521880912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.583776692634928,
          -7,
          -7,
          -3.9298785236567833,
          -7,
          -7,
          -4.659497859540902,
          -7,
          -7,
          -7,
          -5.104166051776575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.363931473001837,
          -7,
          -7,
          -2.8064061101420315,
          -7,
          -3.064041798987206,
          -2.64479015953634,
          -7,
          -7,
          -7,
          -4.552619552939762,
          -2.719458776925022,
          -7,
          -7,
          -3.686189234244024,
          -3.463743721247059,
          -7,
          -7,
          -7,
          -2.462397997898956,
          -7,
          -4.206987694756409,
          -7,
          -7,
          -3.1640366873790486,
          -3.9041066737190038,
          -4.873689624369535,
          -3.0425755124401905,
          -1.7811706911574223,
          -7,
          -3.716368582002373,
          -7,
          -7,
          -3.3787611753163733,
          -3.7846885995014214,
          -7,
          -3.724275869600789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7024305364455254,
          -7,
          -2.7763379096201755,
          -3.5716453183444794,
          -3.7272507007309033,
          -7,
          -4.038927992647938,
          -7,
          -7,
          -3.200759326791928,
          -7,
          -7,
          -3.037027879755775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8095597146352675,
          -7,
          -7,
          -4.023170121121397,
          -7,
          -3.0824263008607717,
          -7,
          -3.8328919447597904,
          -7,
          -3.9369658971078705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4742162640762553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.870413660211742,
          -7,
          -7,
          -7,
          -2.6437815628948647,
          -7,
          -7,
          -7,
          -3.0334237554869494,
          -3.0523090996473234,
          -7,
          -7,
          -7,
          -3.0086001717619175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.570153612664517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.761670147858042,
          -3.1427022457376155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.117602691690084,
          -7,
          -7,
          -7,
          -3.074907822966796,
          -3.1953460583484197,
          -3.172310968521954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.696924008405422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5148796552227934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5719125414899997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1763806922432702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7331972651065697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.693639026161548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.334453751150931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357324882740209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.898176483497677,
          -3.280805928393667,
          -7,
          -7,
          -4.032307863723146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.955988237755026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4983105537896004,
          -2.3873898263387296,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.315970345456918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1921956258464497,
          -7,
          -4.058539897939781,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.510545010206612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0681858617461617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1017470739463664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2321487062561682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.072948031792886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7024305364455254,
          -2.6283889300503116,
          -7,
          -2.1351326513767748,
          -2.403120521175818,
          -7,
          -4.125773949850886,
          -7,
          -7,
          -7,
          -7,
          -2.164352855784437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2225306767139887,
          -7,
          -7,
          -2.383815365980431,
          -7,
          -2.8344207036815328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2648178230095364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8715729355458786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9867717342662448,
          -2.0170333392987803,
          -7,
          -7,
          -7,
          -2.0128372247051725,
          -1.9807606420143298,
          -3.6825511910418096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8654001181793016,
          -7,
          -7,
          -7,
          -3.269512944217916,
          -7,
          -7,
          -2.12602311790052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6570558528571038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.500373714353374,
          -2.3364597338485296,
          -7,
          -7,
          -2.184691430817599,
          -7,
          -7,
          -7,
          -7,
          -2.7148325124333326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0402066275747113,
          -1.9506082247842307,
          -2.4643901779147406,
          -7,
          -5.097826275720638,
          -2.975431808509263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0253058652647704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.131926474519878,
          -7,
          -3.029789470831856,
          -4.544030817513511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4913616938342726,
          -2.164352855784437,
          -1.9518230353159118,
          -2.417471693203293,
          -7,
          -3.058426024457005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.000694315866355,
          -3.7279477095447966,
          -7,
          -7,
          -7,
          -7,
          -2.628534886859584,
          -7,
          -7,
          -4.137005776429098,
          -7,
          -7,
          -7,
          -7,
          -2.1818435879447726,
          -7,
          -7,
          -7,
          -7,
          -3.875234946450165,
          -7,
          -7,
          -7,
          -3.2605483726369795,
          -7,
          -4.133379211923518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.64738297011462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9049966910328284,
          -4.5623761458235395,
          -7,
          -4.030306180567886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.359835482339888,
          -7,
          -7,
          -7,
          -3.6850696293911485,
          -7,
          -2.2508264548251344,
          -7,
          -7,
          -7,
          -7,
          -1.8337843746564788,
          -7,
          -7,
          -7,
          -3.8490404437875823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.640193136723481,
          -7,
          -7,
          -7,
          -1.811000161998575,
          -7,
          -7,
          -7,
          -7,
          -2.7996850909091004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -7,
          -7,
          -2.1089031276673134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.380211241711606,
          -3.7383697008739407,
          -2.7234556720351857,
          -7,
          -7,
          -7,
          -7,
          -2.0644579892269186,
          -7,
          -7,
          -7,
          -2.6541765418779604,
          -7,
          -7,
          -2.2810333672477277,
          -2.9882244123901995,
          -2.850033257689769,
          -7,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -3.243368813730389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.978864984347657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9513375187959177,
          -2.1760912590556813,
          -7,
          -7,
          -7,
          -7,
          -4.148386687666821,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8068580295188172,
          -2.369215857410143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -7,
          -3.356790460351716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.975431808509263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3643633546157306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.348888723071438,
          -7,
          -2.6894095629680157,
          -7,
          -3.3473300153169503,
          -3.3479151865016914,
          -7,
          -2.8478467484424077,
          -2.757965097861435,
          -7,
          -7,
          -3.456214155357989,
          -7,
          -2.656098202012832,
          -2.59402403573142,
          -2.0382226383687185,
          -2.3233994435087757,
          -2.364528392331072,
          -3.0455185628844927,
          -2.514737442325631,
          -7,
          -2.139508685967779,
          -2.519265314601474,
          -3.3802112417116064,
          -3.3269613588176865,
          -2.8904210188009145,
          -7,
          -7,
          -2.5303826746043154,
          -3.1020905255118367,
          -2.1627634871966417,
          -2.9003671286564705,
          -7,
          -3.258876629372131,
          -7,
          -3.052584021782163,
          -2.8670744611517724,
          -2.916629385628418,
          -2.7883451651521183,
          -7,
          -3.358886204405869,
          -7,
          -7,
          -7,
          -1.5069692271226607,
          -7,
          -1.7967634995939228,
          -2.5780658838360915,
          -2.8874297406343095,
          -2.666250475475956,
          -7,
          -2.876025291494317,
          -3.0549958615291417,
          -2.6659560294539566,
          -3.422753941301348,
          -7,
          -7,
          -7,
          -7,
          -2.9279175919435616,
          -2.8662873390841948,
          -7,
          -7,
          -7,
          -7,
          -2.822494985278751,
          -7,
          -7,
          -3.1894669186239772,
          -2.8715729355458786,
          -2.4720246977002813,
          -7,
          -2.8769871844277386,
          -7,
          -7,
          -2.234750837958704,
          -2.866877814337499,
          -2.3010299956639813,
          -2.682145076373832,
          -1.73814608871206,
          -7,
          -2.0403615145545038,
          -7,
          -3.0670956650757906,
          -3.4097641042663462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3581252852766488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9953101238623854,
          -7,
          -3.3492775274679554,
          -3.0726174765452368,
          -2.3961993470957363,
          -1.5208696693061823,
          -7,
          -3.0472748673841794,
          -2.2005427182177972,
          -3.3916407034923877,
          -2.5980498568165213,
          -3.3656751404559175,
          -7,
          -3.3571722577230334,
          -3.105510184769974,
          -7,
          -7,
          -2.6464037262230695,
          -3.862489166905897,
          -7,
          -7,
          -7,
          -3.430067373207018,
          -2.579211780231499,
          -2.696938553005363,
          -2.192985379093163,
          -7,
          -7,
          -2.8902346663063563,
          -2.2995799292687487,
          -7,
          -7,
          -3.3504806137955305,
          -7,
          -7,
          -7,
          -3.343802333161655,
          -7,
          -3.0536545582907473,
          -7,
          -3.671913012441587,
          -3.4413808849165113,
          -7,
          -7,
          -7,
          -3.04688519083771,
          -2.334453751150931,
          -7,
          -2.8767949762007006,
          -7,
          -3.3554515201265174,
          -3.355643050220869,
          -2.518043669683693,
          -7,
          -3.0439514182632768,
          -7,
          -7,
          -7,
          -7,
          -2.9857257811120115,
          -3.4153072922255676,
          -2.357068164449998,
          -2.6825060859390115,
          -2.2425414282983844,
          -3.0698530211136243,
          -3.3604040547299387,
          -2.1013088384840706,
          -3.0497992779189866,
          -3.346548558548474,
          -7,
          -2.8808135922807914,
          -3.3510228525841237,
          -2.6597260952377915,
          -3.3483048630481607,
          -1.5460488664017342,
          -7,
          -3.663748026358395,
          -7,
          -3.469232742506612,
          -1.3069645223546313,
          -3.0570952896126675,
          -2.9410142437055695,
          -2.1764317486708507,
          -2.189506827111484,
          -2.3615704544315608,
          -2.486430478854434,
          -2.39375064034808,
          -3.377306251068199,
          -2.354108439147401,
          -2.767897616018091,
          -3.3637999454791094,
          -3.5328817194073974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4395432098217347,
          -7,
          -2.9751253198007745,
          -3.358315640082196,
          -2.8808135922807914,
          -3.343802333161655,
          -3.3492775274679554,
          -3.3896975482063856,
          -7,
          -7,
          -2.260468911566059,
          -7,
          -3.0831441431430524,
          -7,
          -7,
          -7,
          -7,
          -3.344195715871435,
          -3.362293937964231,
          -7,
          -3.054421524462536,
          -2.061354122279638,
          -2.753429841575423,
          -3.245594912768832,
          -4.456699977383792,
          -7,
          -2.8731267636145,
          -3.34966598409663,
          -7,
          -7,
          -7,
          -3.3875677794171883,
          -3.354108439147401,
          -2.8842287696326037,
          -7,
          -3.3428173146357327,
          -3.3475251599986895,
          -1.874261825555464,
          -7,
          -2.4367587960456936,
          -3.378216149749878,
          -2.8376255685293743,
          -7,
          -7,
          -7,
          -2.5720967679505193,
          -2.660106221723244,
          -2.5830097448113825,
          -7,
          -2.4245186658770486,
          -7,
          -2.5753803086941183,
          -3.3479151865016914,
          -1.8882419149722454,
          -7,
          -7,
          -7,
          -7,
          -2.335290703581678,
          -2.254637107064722,
          -2.7953585510233854,
          -3.2453178149811928,
          -7,
          -7,
          -2.7507012003958686,
          -2.307781195166992,
          -7,
          -2.873320601815399,
          -2.1722982700385423,
          -7,
          -3.3475251599986895,
          -7,
          -7,
          -2.8926510338773004,
          -2.087491016941548,
          -2.800717078282385,
          -3.3412366232386925,
          -2.90687353472207,
          -2.0959947450572747,
          -7,
          -3.0511525224473814,
          -2.7715874808812555,
          -1.8423751816787837,
          -1.537086602941622,
          -2.9763499790032735,
          -3.1020905255118367,
          -2.7690078709437738,
          -3.372646110468112,
          -7,
          -7,
          -2.9835135272947686,
          -7,
          -3.3481100684802376,
          -2.360868697296455,
          -2.45484486000851,
          -1.2549817153489515,
          -0.657335977420039,
          -2.804412059137714,
          -2.9132839017604186,
          -2.7734938922709707,
          -7,
          -3.502713823571336,
          -2.1152486297419344,
          -7,
          -7,
          -7,
          -3.506910725551518,
          -2.0844137729813017,
          -7,
          -2.399865929708076,
          -3.0970836960665213,
          -7,
          -3.3432115901797474,
          -7,
          -2.9041743682841634,
          -3.3664229572259727,
          -3.34966598409663,
          -2.451956914223988,
          -7,
          -3.4384236728783075,
          -3.652922887567942,
          -4.004862511111595,
          -7,
          -1.9871912749350684,
          -3.3928961789790506,
          -2.580069222725036,
          -3.3418300569205104,
          -2.810568529216413,
          -7,
          -1.9390652071178751,
          -2.6725596277632757,
          -2.440336511801791,
          -1.731387283168788,
          -3.343605508104172,
          -3.0400086360135417,
          -1.957722850186747,
          -7,
          -3.3787611753163733,
          -3.0563330349511615,
          -2.651554899236661,
          -3.058426024457005,
          -7,
          -3.3412366232386925,
          -2.7385823862327427,
          -2.8816949207450295,
          -3.917625525991019,
          -7,
          -3.114610984232173,
          -7,
          -3.3098430047160705,
          -7,
          -3.95433900860246,
          -2.7792938551187123,
          -7,
          -4.106428894793411,
          -4.296522595433707,
          -3.7207012587514545,
          -3.639864837955078,
          -3.0289126983633317,
          -7,
          -3.94558346265713,
          -3.2082003443615728,
          -4.075656433597934,
          -7,
          -7,
          -4.409378494659984,
          -3.974787932213558,
          -3.24230671556541,
          -4.1408849802658665,
          -7,
          -4.04336227802113,
          -4.179020086986456,
          -7,
          -3.2736377706522455,
          -3.9705793057148506,
          -4.126218019314304,
          -7,
          -7,
          -7,
          -3.8079857748471495,
          -7,
          -4.386588133907789,
          -3.5198607942350755,
          -4.0473138158153885,
          -3.0224283711854865,
          -3.5527124506286203,
          -2.444321555122064,
          -2.109288363833595,
          -2.954724790979063,
          -3.8217099972983766,
          -7,
          -2.975467158676708,
          -2.8647267723873364,
          -3.560026248912892,
          -3.234865136540417,
          -2.6785735555720014,
          -2.847572659142112,
          -7,
          -3.5653755027140734,
          -7,
          -3.3809344633307017,
          -7,
          -4.239149264858293,
          -7,
          -7,
          -2.5759512759327388,
          -3.3451018214939543,
          -4.576229018141046,
          -3.3694014136966244,
          -2.9905608299940196,
          -7,
          -3.251648357922843,
          -7,
          -4.048844640389108,
          -3.080337823247567,
          -7,
          -7,
          -3.81544491624435,
          -7,
          -3.205953506508051,
          -7,
          -2.963180469568511,
          -3.737987326333431,
          -2.4549785096424017,
          -3.369308645463461,
          -3.386498965550653,
          -2.5163287539376213,
          -3.4102371919840464,
          -7,
          -3.476802655265517,
          -7,
          -3.5930644316587173,
          -2.630500517741912,
          -7,
          -3.083860800866573,
          -7,
          -7,
          -7,
          -7,
          -2.6068629883857906,
          -2.7726883546821415,
          -1.9883080726752824,
          -7,
          -1.9608653102315436,
          -2.500503495624946,
          -3.1922886125681202,
          -2.2704100618306695,
          -7,
          -2.7579380162362646,
          -3.399673721481038,
          -3.0242217034609458,
          -2.4705574852172743,
          -7,
          -7,
          -2.3068016295330462,
          -3.262213705476417,
          -2.4163630914988237,
          -7,
          -7,
          -2.2501585103901642,
          -7,
          -3.4923412532549745,
          -2.307496037913213,
          -3.085290578230065,
          -7,
          -2.942950070077099,
          -7,
          -7,
          -4.196742527060023,
          -2.0541999775313315,
          -3.911872597102229,
          -7,
          -3.6364878963533656,
          -2.05915016485424,
          -7,
          -2.475489589123831,
          -7,
          -3.3651134316275773,
          -2.5839540689101295,
          -7,
          -7,
          -7,
          -3.353723937588949,
          -3.2447099622092566,
          -2.5389191721490083,
          -2.5921767573958667,
          -3.344195715871435,
          -3.471438407389299,
          -2.671543085262574,
          -2.3737605108568895,
          -7,
          -7,
          -2.3195791985677108,
          -2.894500672456359,
          -7,
          -2.8455114569725612,
          -7,
          -7,
          -3.5223790192285636,
          -2.8085485512404054,
          -2.3806973336208213,
          -3.4194600727860704,
          -7,
          -2.6204830741547482,
          -7,
          -7,
          -3.066325925362038,
          -7,
          -7,
          -3.3857849588433355,
          -2.559222427207474,
          -3.5776066773625357,
          -7,
          -2.65915528094063,
          -1.3442422978540296,
          -2.1637261681116198,
          -2.8323492162595376,
          -2.4784462423792015,
          -3.472317546316842,
          -3.1981987286196296,
          -2.9909305367345755,
          -3.020834628178929,
          -3.8207267628238344,
          -7,
          -3.258397804095509,
          -7,
          -7,
          -2.659345635746177,
          -7,
          -3.371990911464915,
          -3.586137025230793,
          -2.808249566586551,
          -2.478041509755478,
          -3.567222480175445,
          -3.4219328132785085,
          -3.890700397698875,
          -2.586212104232087,
          -7,
          -2.663323933628212,
          -7,
          -2.627195109792065,
          -2.3608554664937946,
          -7,
          -7,
          -7,
          -7,
          -2.5531545481696254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.95970902424643,
          -7,
          -2.7373516958037145,
          -2.8898617212581885,
          -7,
          -7,
          -7,
          -3.344588742578714,
          -7,
          -2.9079485216122722,
          -7,
          -3.1231980750319988,
          -7,
          -7,
          -7,
          -7,
          -1.8932486652855034,
          -7,
          -7,
          -3.4768730155120444,
          -7,
          -7,
          -3.241795431295199,
          -7,
          -7,
          -7,
          -7,
          -3.400537989391946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669298280832415,
          -7,
          -7,
          -2.591064607026499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3412366232386925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067210388410234,
          -7,
          -7,
          -7,
          -2.0653929615619915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7385823862327427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779571240844613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.279210512601395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.61655952887783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.420536096425766,
          -7,
          -7,
          -7,
          -4.655464993695882,
          -3.6577249542051082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7260358406419276,
          -7,
          -7,
          -3.925291459442737,
          -2.837737818927626,
          -7,
          -7,
          -7,
          -7,
          -4.617608347205152,
          -4.618382845341753,
          -3.6580057819539546,
          -7,
          -7,
          -7,
          -7,
          -4.142598010892065,
          -7,
          -7,
          -7,
          -2.897606730077943,
          -4.616821971013603,
          -3.7983536494378956,
          -7,
          -7,
          -3.919987588054925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9304395947667,
          -2.676429606544869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3923283959700776,
          -7,
          -7,
          -4.617052788978206,
          -7,
          -7,
          -4.621134720505861,
          -7,
          -7,
          -4.159198608378712,
          -7,
          -4.618236424563806,
          -7,
          -7,
          -7,
          -7,
          -4.315823457751156,
          -7,
          -4.319668091214678,
          -7,
          -7,
          -7,
          -4.3190852293386985,
          -3.922746212311292,
          -3.1455306163719823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.320696597770426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.62014646958466,
          -7,
          -2.9143679524576918,
          -4.14039280248941,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.347017601324948,
          -3.5537050669363817,
          -4.616968869365974,
          -7,
          -7,
          -3.05074358222705,
          -4.617199609291268,
          -4.0224489924661775,
          -4.325176880079742,
          -7,
          -7,
          -4.617692143352612,
          -4.618529216771113,
          -7,
          -7,
          -3.224343108953842,
          -4.616254897182604,
          -7,
          -7,
          -7,
          -7,
          -3.707712079213691,
          -4.0389577711393665,
          -7,
          -7,
          -7,
          -3.4447334600751223,
          -7,
          -7,
          -4.620614868774087,
          -3.8622606143926705,
          -7,
          -7,
          -7,
          -7,
          -4.423712694379625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.38836211745815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3304949423022174,
          -7,
          -3.269018738474736,
          -7,
          -4.624055089282426,
          -2.1830749482495064,
          -3.838901538594562,
          -3.666299530410274,
          -3.7170668969538765,
          -3.390332367662027,
          -3.8440938665398194,
          -4.324416222094499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.693920316367327,
          -7,
          -3.4899685184785194,
          -7,
          -4.622928621352165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6351820486562674,
          -4.317582839780199,
          -7,
          -7,
          -4.616580530085886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6212490044269763,
          -7,
          -3.8693001841848957,
          -2.823206621070081,
          -7,
          -7,
          -7,
          -4.621280167550415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3764306067663643,
          -7,
          -4.616265405281708,
          -7,
          -7,
          -7,
          -4.316358309697511,
          -7,
          -4.61846649219908,
          -4.1484278325456465,
          -7,
          -4.162225759798416,
          -4.15325576317293,
          -7,
          -7,
          -7,
          -2.9344176447530743,
          -4.620666881958084,
          -3.1711694902913683,
          -7,
          -2.568532660960909,
          -7,
          -7,
          -7,
          -3.8107316409130148,
          -7,
          -7,
          -3.6749631476629787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.317018101048111,
          -7,
          -3.386171858184651,
          -7,
          -7,
          -7,
          -2.591524783818118,
          -7,
          -7,
          -3.6705241577820797,
          -7,
          -7,
          -7,
          -4.140109809610688,
          -2.9835237793982574,
          -3.4439718866479825,
          -4.6266174881854045,
          -7,
          -7,
          -4.141031478658857,
          -2.553400657766973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9226009112525433,
          -7,
          -7,
          -4.619458568994316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.617314933298294,
          -3.6205957957123824,
          -3.940725613108034,
          -2.399707371851248,
          -7,
          -7,
          -3.4193916593043943,
          -4.324138352655017,
          -7,
          -7,
          -7,
          -4.322859923383261,
          -4.340969313301004,
          -7,
          -7,
          -7,
          -7,
          -4.6213736435061765,
          -7,
          -7,
          -7,
          -4.626155521880912,
          -7,
          -2.8816949207450295,
          -7,
          -7,
          -7,
          -1.7940019717695033,
          -3.076356403030099,
          -3.5063384844973986,
          -3.3133622304450867,
          -3.2201684584243107,
          -2.830352759588388,
          -2.968298747062242,
          -1.6733066117118942,
          -4.616612029993923,
          -2.2047218097709047,
          -1.6956711079089126,
          -2.8825950517530385,
          -2.7955053743286897,
          -1.6734325831718475,
          -2.6980860398874245,
          -2.8712876105538077,
          -1.8357841033689075,
          -3.1632210267155783,
          -1.4368256494961977,
          -3.788389352411851,
          -2.5267777372775697,
          -2.9144596969074215,
          -1.333050212822552,
          -2.3700601605169713,
          -3.400993002709646,
          -2.9608626434200027,
          -2.920858518855485,
          -4.629868118746123,
          -1.4660437125923544,
          -2.197942749161937,
          -3.3304247430131744,
          -3.174656089737317,
          -2.803751883915081,
          -2.776351710401327,
          -3.1861977163087007,
          -3.3764774129184203,
          -2.7111073515371458,
          -2.3036039178951855,
          -3.3788562684105763,
          -7,
          -3.1778915151088025,
          -2.093637827346512,
          -2.7690686889664704,
          -7,
          -4.020294973084726,
          -7,
          -3.267949726576494,
          -4.674015601630943,
          -4.631068165146266,
          -3.2457346934565856,
          -3.148214944835215,
          -3.9655027326071046,
          -7,
          -3.968277427274059,
          -7,
          -7,
          -4.645805301402646,
          -3.5755573000600256,
          -4.6371894221487615,
          -7,
          -2.4395729484199693,
          -2.234503776841132,
          -2.6471647853430955,
          -7,
          -4.633993331603568,
          -4.6181631956587115,
          -2.7362424132931857,
          -4.661036127893079,
          -3.8789169817717633,
          -3.2228512943685397,
          -4.419559253195721,
          -7,
          -3.1149158459000446,
          -3.5053280703957066,
          -3.346729576432997,
          -3.4536648218070845,
          -4.181567304029932,
          -4.047235915459681,
          -2.6183234022565913,
          -4.340572995903572,
          -7,
          -2.914017096150432,
          -2.6506555784991606,
          -7,
          -2.8706990460717736,
          -7,
          -3.730741911850021,
          -3.2923812935028804,
          -3.312701917838379,
          -4.317624643080059,
          -7,
          -7,
          -4.319595276245265,
          -2.9671454827935495,
          -2.516724197586558,
          -7,
          -3.626247954462277,
          -3.920801381825654,
          -2.2761896045517336,
          -2.513904639138496,
          -3.346682328514696,
          -7,
          -7,
          -2.358194936957607,
          -4.14236860613267,
          -2.3194023977668876,
          -3.8460792634718106,
          -4.020578789815774,
          -3.2029119304669567,
          -2.8229615672766832,
          -3.6311798650966334,
          -2.59852191098963,
          -3.3466720399800094,
          -3.7766077995980156,
          -2.972094463035642,
          -3.7787712283360455,
          -3.584115257228258,
          -7,
          -4.6187591293929335,
          -7,
          -2.8597840073240657,
          -4.318699694558155,
          -4.315928382610187,
          -1.7319155356220892,
          -1.69422218095535,
          -2.2036635512088645,
          -7,
          -3.4617385679564108,
          -4.319033150039682,
          -3.929480233548934,
          -4.618435126515527,
          -7,
          -4.617524534886292,
          -3.436639631692661,
          -4.61865463874404,
          -4.320094333903096,
          -2.874848889727198,
          -7,
          -2.73846910433268,
          -3.923295840655504,
          -3.4577002722181076,
          -7,
          -3.9251573271758984,
          -7,
          -3.4792255786863295,
          -2.154205326806114,
          -4.619427274881493,
          -4.617503579279065,
          -4.6179329672532745,
          -3.2534058585380095,
          -2.464794874398846,
          -3.3440094211096474,
          -3.8439280063704695,
          -2.8743297038713655,
          -7,
          -1.8459163788095763,
          -4.319699293893277,
          -3.3385660494937994,
          -4.6195732947860035,
          -4.621134720505861,
          -3.217290881538176,
          -7,
          -2.6635218951063355,
          -3.5432918252304986,
          -4.618706887211025,
          -4.01781561717208,
          -3.3311741373868458,
          -7,
          -7,
          -2.8336589271377535,
          -3.9235548580675492,
          -4.01964584828431,
          -3.0322625896790933,
          -3.5448635219352487,
          -3.2615106830542264,
          -3.778791879032985,
          -2.6971355608850085,
          -2.8598718466898005,
          -3.5907405368822554,
          -3.32962158001926,
          -4.616570029608803,
          -7,
          -2.3982038036681437,
          -3.1768393978830747,
          -7,
          -3.4869564550939383,
          -1.7515604805317466,
          -3.513780854205835,
          -2.507794956556955,
          -2.4113584238044,
          -2.673783970267478,
          -7,
          -3.509016311883662,
          -7,
          -7,
          -4.6199798058330535,
          -7,
          -3.211792701460719,
          -7,
          -7,
          -7,
          -2.356945754549756,
          -7,
          -3.666205875272384,
          -4.617566443067537,
          -4.015841571684366,
          -3.7756312495430016,
          -4.618184119463009,
          -4.318178157265793,
          -2.986363614185373,
          -3.1732365194371384,
          -7,
          -4.617671195831475,
          -3.66904814036834,
          -7,
          -7,
          -7,
          -4.619114209667246,
          -4.317655992914544,
          -7,
          -3.7062814674908884,
          -3.1025023091854522,
          -3.602129078136506,
          -4.316871567348347,
          -7,
          -2.8803020025606587,
          -7,
          -4.616391482643317,
          -2.4335080004270413,
          -7,
          -7,
          -3.629470763032389,
          -3.074747273672198,
          -4.624230513855454,
          -7,
          -7,
          -7,
          -7,
          -3.016236272275966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.68940369736512,
          -7,
          -7,
          -7,
          -4.775479375409764,
          -3.9991015293309222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.246252312299322,
          -7,
          -7,
          -4.14997308296338,
          -3.0832902249210807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.547533311024088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.992812429876849,
          -7,
          -4.042862284965543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.454875335744946,
          -3.8795474371414054,
          -7,
          -7,
          -4.754256573662172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590618948206578,
          -7,
          -7,
          -4.746657547475629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.012855294834725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.971955834543654,
          -3.8333727117977894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.748955119752549,
          -7,
          -3.4460255809433114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.769879281205094,
          -3.9299933471863993,
          -7,
          -7,
          -7,
          -2.858754796828139,
          -7,
          -4.752248254177775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.305633461726069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.780526126607946,
          -4.463564532213337,
          -7,
          -7,
          -7,
          -3.1669161974037845,
          -7,
          -7,
          -4.7493033508713305,
          -4.287032452247534,
          -7,
          -7,
          -7,
          -7,
          -4.1300055108623965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.179807033301188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.912540882790638,
          -7,
          -3.518631675212612,
          -7,
          -7,
          -3.013926173025573,
          -4.746735366871247,
          -4.050341081834084,
          -4.74907122781966,
          -4.74967448988999,
          -4.750593239836581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.503913193999621,
          -7,
          -4.062032658656056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.158211669214101,
          -4.446785619301188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8151274306134306,
          -2.819623688454021,
          -7,
          -7,
          -7,
          -4.448752683389127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.879009148031945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7530082150208885,
          -7,
          -4.763338130235672,
          -7,
          -7,
          -7,
          -7,
          -3.528886466403724,
          -7,
          -4.0030582213054675,
          -7,
          -2.5286807375109595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752232887721093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464094419087544,
          -7,
          -7,
          -7,
          -2.894896864485349,
          -7,
          -7,
          -3.786950073527685,
          -7,
          -7,
          -7,
          -7,
          -4.277548095564673,
          -7,
          -7,
          -7,
          -7,
          -4.747505027465768,
          -2.330137607834728,
          -7,
          -7,
          -7,
          -7,
          -4.7539122931976445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.508361355145994,
          -3.918442256565788,
          -2.1770840312500357,
          -7,
          -7,
          -3.84318963888085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7526782943689865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.917625525991019,
          -7,
          -7,
          -1.7940019717695033,
          -7,
          -2.761158171936227,
          -4.050209563013909,
          -2.94162242901577,
          -3.982301391331439,
          -3.0570414004594033,
          -2.8255451158954044,
          -2.080104209578498,
          -4.746330553658598,
          -2.7990055901015256,
          -1.8039393715334233,
          -2.4705769939872124,
          -2.645513917019889,
          -2.3016148599756447,
          -2.1262302051431767,
          -2.533213285085639,
          -2.0153615186155944,
          -2.860371284566635,
          -1.9136473000407377,
          -3.169120569796846,
          -2.146409072851802,
          -2.97211990499589,
          -1.732888876318965,
          -2.8449170462704814,
          -2.011539376573685,
          -2.4162019299772806,
          -2.701083998656677,
          -3.340848170016427,
          -1.9458360528338758,
          -2.4719460063595164,
          -2.639123277221592,
          -2.556428521510324,
          -2.399630307847778,
          -2.990479804575254,
          -2.6589289015478585,
          -2.670572483616967,
          -2.6668821312373145,
          -2.095610685225035,
          -3.96559810533305,
          -7,
          -3.1677391846909155,
          -3.206251564282058,
          -3.881947847027854,
          -4.44897670381325,
          -3.6484901171778015,
          -7,
          -3.4510280603341705,
          -4.4885789165252525,
          -7,
          -3.3651457334284163,
          -3.054882937183978,
          -4.180283615315395,
          -4.7550741017584714,
          -3.3527683310263616,
          -7,
          -7,
          -7,
          -3.281843801655201,
          -7,
          -7,
          -3.3610330758599813,
          -2.281859415013462,
          -2.5473879297857804,
          -7,
          -7,
          -7,
          -2.949764859826652,
          -4.001488523881566,
          -2.939704886918824,
          -3.5705721253583307,
          -3.7464395789558753,
          -7,
          -4.176539798314922,
          -3.354459496605008,
          -3.5928543569294185,
          -4.279180066775598,
          -4.300805552195441,
          -3.992627145785504,
          -3.13623546780067,
          -4.463975064379387,
          -7,
          -3.1884748650838253,
          -2.53868278690593,
          -7,
          -2.6297950538396533,
          -4.452943522899956,
          -4.157169561317188,
          -3.695430597186528,
          -3.1842555313968237,
          -7,
          -7,
          -7,
          -4.749326556354335,
          -2.6194886947365785,
          -3.0900449904924545,
          -7,
          -4.151530727012073,
          -4.271586064027271,
          -4.063776061059595,
          -2.8948496596085533,
          -4.452123918449042,
          -7,
          -7,
          -2.9823277781189925,
          -7,
          -2.3759652965954845,
          -4.752071507091245,
          -4.449809971741877,
          -3.9816676269911824,
          -2.999864706876925,
          -3.979092900638326,
          -4.163258304891918,
          -4.151055585657497,
          -4.449162012678147,
          -3.813276972408157,
          -3.973589623427257,
          -4.150994239213408,
          -7,
          -7,
          -7,
          -3.1920026148585094,
          -7,
          -7,
          -2.506741604257435,
          -2.0066645422071834,
          -2.553126141145082,
          -7,
          -4.160273399926485,
          -7,
          -4.0561727913537755,
          -7,
          -7,
          -7,
          -4.162489727736505,
          -7,
          -7,
          -3.7329344633546433,
          -7,
          -3.1905974381230235,
          -4.449547819044489,
          -4.4583053921180165,
          -7,
          -4.450933891015594,
          -7,
          -4.7530312233905745,
          -2.383349427409276,
          -4.271268362216237,
          -7,
          -7,
          -3.429979715014304,
          -2.877160567640068,
          -4.274026925166107,
          -7,
          -3.234972598405242,
          -7,
          -2.1398740830950502,
          -4.749403899010527,
          -4.064749916689788,
          -4.748529124399832,
          -7,
          -2.9787594900540326,
          -7,
          -3.3054875130416663,
          -4.449809971741877,
          -7,
          -4.748800260694086,
          -3.6788899955025243,
          -7,
          -7,
          -3.9964897817596627,
          -7,
          -7,
          -3.938705525724461,
          -7,
          -4.163332851646521,
          -7,
          -2.9142430678512703,
          -3.824863139350777,
          -4.75804849865779,
          -3.9118877968391073,
          -4.74629939854591,
          -7,
          -3.0564826596487484,
          -3.462330602146786,
          -4.747295255267241,
          -4.2816544264128105,
          -2.214341623289299,
          -4.055752825315675,
          -3.053664658749656,
          -2.6699656178768523,
          -3.0707693669341825,
          -4.747054280687472,
          -4.274080839868691,
          -7,
          -7,
          -7,
          -7,
          -3.487540245067744,
          -7,
          -7,
          -7,
          -2.9446388201696494,
          -7,
          -4.7493033508713305,
          -7,
          -7,
          -4.272329043274018,
          -7,
          -4.447227823061555,
          -3.6178163114809454,
          -3.8577469894826386,
          -7,
          -7,
          -4.751417686492172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.44723557700476,
          -3.603144372620182,
          -3.1251632285648294,
          -4.766598721064264,
          -4.446257488316375,
          -7,
          -4.284618699431484,
          -7,
          -7,
          -2.6802009545811027,
          -7,
          -7,
          -4.153936754460935,
          -3.1126869080645676,
          -4.751994638090036,
          -7,
          -7,
          -7,
          -7,
          -3.1276495344679027,
          -7,
          -4.748250064643889,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8795805260758676,
          -7,
          -7,
          -7,
          -7,
          -3.8758519242862692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3039101528616395,
          -7,
          -7,
          -7,
          -3.178805273804607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.434856209740375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9022640425804287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.682941905826968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.541254649786259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4790500017126824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7741080255082182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.010850957373923,
          -7,
          -7,
          -7,
          -3.907554668639903,
          -7,
          -4.282961803534335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0390967104414504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318418142209945,
          -7,
          -4.277655047714709,
          -7,
          -3.5425053212702986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9525200157595273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.024040746405299,
          -7,
          -3.9807530758424656,
          -3.6091339945083023,
          -7,
          -7,
          -4.2735336801512975,
          -4.2753343934257675,
          -7,
          -3.439558242774259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.308436347167652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.005244879445366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.331912948773648,
          -3.5585476707260986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4456042032735974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.29569901748951,
          -7,
          -7,
          -7,
          -3.458853593929194,
          -7,
          -4.3634803555596005,
          -7,
          -2.2713556554038865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3198968588148885,
          -7,
          -7,
          -7,
          -3.077560700952694,
          -7,
          -7,
          -4.378488748031808,
          -7,
          -7,
          -7,
          -7,
          -3.9890714250951618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.507919802775988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5888317255942073,
          -4.315676520348013,
          -2.699167503092759,
          -7,
          -7,
          -4.425550522537713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.076356403030099,
          -2.761158171936227,
          -7,
          -7,
          -2.337717301886588,
          -4.3069180203772985,
          -2.7010796971545665,
          -1.2379149026031688,
          -2.1649498074924685,
          -7,
          -3.0297444125258646,
          -1.9450404100170748,
          -2.1655466215325143,
          -2.443595160256843,
          -3.9339931638312424,
          -2.6187765029283483,
          -1.541695519187481,
          -3.7997884000675555,
          -3.4068806700491248,
          -3.1890542193679265,
          -2.6102941051163335,
          -2.365964057019836,
          -3.085766126574217,
          -1.7787469321412472,
          -2.7434952473550966,
          -2.459513646772962,
          -1.9095103513348428,
          -2.115810141409786,
          -7,
          -2.686724987438468,
          -2.9080733475736693,
          -2.1412346783573293,
          -2.574080546575145,
          -2.74925142902884,
          -3.345943741035112,
          -2.494068357258403,
          -2.5860095587848955,
          -3.4315353034055756,
          -1.4530461540732107,
          -4.135736743509474,
          -4.286725855353823,
          -3.0109356647043852,
          -4.282384171231339,
          -7,
          -7,
          -3.106811486925355,
          -7,
          -3.5489623660813248,
          -7,
          -7,
          -4.476280806025541,
          -3.300568312464303,
          -7,
          -7,
          -3.257475499803275,
          -7,
          -7,
          -4.3282980381306,
          -3.525239223729745,
          -7,
          -7,
          -7,
          -3.054904018624125,
          -2.585881903537832,
          -7,
          -7,
          -7,
          -3.926224815400152,
          -7,
          -4.069873563387445,
          -4.346607216606133,
          -3.693155132538336,
          -7,
          -4.356542111948761,
          -3.5486043622015986,
          -4.09221753532326,
          -7,
          -7,
          -7,
          -3.813487581861325,
          -7,
          -7,
          -3.8125791554090465,
          -4.0396995888283325,
          -7,
          -2.538633705624185,
          -7,
          -7,
          -3.7440581658788354,
          -3.977159418076437,
          -7,
          -7,
          -7,
          -7,
          -2.712272243588091,
          -3.0145827585978444,
          -7,
          -7,
          -7,
          -7,
          -4.446770095200388,
          -7,
          -7,
          -7,
          -4.384407182308992,
          -7,
          -3.2384905702096987,
          -3.9813655090785445,
          -7,
          -7,
          -3.0528953899583056,
          -7,
          -4.019448637493637,
          -7,
          -4.276921132065774,
          -7,
          -7,
          -7,
          -7,
          -4.27009628142033,
          -7,
          -4.397522885718343,
          -7,
          -7,
          -3.6365061321444245,
          -2.6631240515498513,
          -2.432432786244021,
          -4.265643141942135,
          -4.312156191475623,
          -7,
          -4.29161301693988,
          -7,
          -7,
          -7,
          -4.017304688562155,
          -7,
          -7,
          -7,
          -7,
          -3.5875613115088494,
          -7,
          -4.303563215917248,
          -7,
          -7,
          -7,
          -4.285264680481154,
          -2.3020149037518745,
          -7,
          -7,
          -7,
          -2.9780812292019267,
          -3.545960629240598,
          -7,
          -7,
          -4.057818194432099,
          -4.273441134312813,
          -2.0256407807690597,
          -7,
          -4.015024263324626,
          -7,
          -3.6731822392279376,
          -2.8324597815922177,
          -7,
          -3.668907502301862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.045009860905824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.769728017574238,
          -3.6589457942431114,
          -7,
          -7,
          -7,
          -7,
          -3.118229285533303,
          -4.315718507536319,
          -7,
          -3.3986126439612017,
          -3.4742162640762553,
          -4.290390809440229,
          -3.833497722133357,
          -3.492725476491596,
          -4.379559310918327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8466463285771173,
          -7,
          -7,
          -7,
          -3.555551218886293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.317101812398005,
          -4.00702192557868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.057571020279038,
          -3.552911450216509,
          -4.32395300754292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4909762616172006,
          -7,
          -7,
          -7,
          -3.478484039834738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5596872289809776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.661377226639747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9151887051731564,
          -7,
          -7,
          -7,
          -4.277196495795956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2488720042050603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070370390367003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5509617522981762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1383026981662816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9916690073799486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.253289532254802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.468716471515472,
          -7,
          -2.4456042032735974,
          -7,
          -7,
          -2.6976651626476746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071003943554348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9976921179417264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.709439574132411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.163608563431052,
          -7,
          -7,
          -7,
          -3.463252908572469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.185825359612962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.621785390545154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.111182472655152,
          -7,
          -7,
          -4.246880021200512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.114610984232173,
          -7,
          -7,
          -3.5063384844973986,
          -4.050209563013909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.401882822321282,
          -3.5588764972551363,
          -1.1674267426041278,
          -3.740086232305504,
          -7,
          -4.658421634986483,
          -4.80415988528302,
          -3.4431934252142176,
          -7,
          -7,
          -3.5401176191224257,
          -4.005223424858136,
          -4.309928110434921,
          -7,
          -5.102303329160087,
          -7,
          -3.8834342936830093,
          -7,
          -7,
          -4.627611614110506,
          -3.4119715286436114,
          -7,
          -4.007244079839634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.971693238949861,
          -7,
          -7,
          -4.308564413561239,
          -3.752893154884594,
          -7,
          -7,
          -7,
          -3.943815913368455,
          -7,
          -7,
          -3.6008640363098396,
          -7,
          -7,
          -7,
          -3.746011107751926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.281919242436253,
          -7,
          -7,
          -7,
          -7,
          -4.312843525382345,
          -7,
          -4.642231976894675,
          -7,
          -7,
          -7,
          -7,
          -4.014394516273535,
          -3.980639567443737,
          -7,
          -3.6684791029325856,
          -7,
          -7,
          -7,
          -7,
          -4.005330687197071,
          -4.265065583413968,
          -7,
          -4.635614417623872,
          -7,
          -3.3296012483565187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4785304231255387,
          -3.2215446370271956,
          -7,
          -7,
          -7,
          -7,
          -3.3008562431183934,
          -2.646730386247423,
          -7,
          -7,
          -3.7967130632808965,
          -7,
          -3.215037322655668,
          -7,
          -7,
          -7,
          -3.7626035495668035,
          -3.273695587930092,
          -3.469380135849925,
          -7,
          -7,
          -7,
          -7,
          -2.82052984852352,
          -7,
          -7,
          -7,
          -3.2429760021854523,
          -7,
          -7,
          -3.5691836446191725,
          -3.195632829081318,
          -3.6291742729079046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.637489729512511,
          -7,
          -7,
          -7,
          -7,
          -3.220238879934404,
          -7,
          -7,
          -3.387122759927585,
          -7,
          -3.9680516729654616,
          -7,
          -3.1356096360286796,
          -7,
          -7,
          -7,
          -7,
          -3.72956972630197,
          -7,
          -7,
          -7,
          -3.300812794118117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1436392352745433,
          -7,
          -3.295347148333618,
          -7,
          -7,
          -7,
          -3.9740970037941312,
          -7,
          -7,
          -3.316808752053022,
          -3.086799347067046,
          -7,
          -3.4910346824303082,
          -4.287084776433677,
          -3.777644277696485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.555789489124939,
          -7,
          -7,
          -7,
          -7,
          -2.931966114728173,
          -7,
          -7,
          -3.444513206334043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6871721045948,
          -7,
          -7,
          -7,
          -7,
          -3.392169149489736,
          -7,
          -7,
          -4.2837081890474655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.377081515976082,
          -7,
          -7,
          -7,
          -3.639699884317628,
          -3.4883109423296537,
          -7,
          -7,
          -7,
          -4.436226275270583,
          -7,
          -2.9923009843277657,
          -7,
          -7,
          -4.4380516115621225,
          -2.811203458094404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.428863408299256,
          -4.320077015119296,
          -7,
          -4.426023015689876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3401375306780454,
          -7,
          -7,
          -4.12881914219451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.243286146083446,
          -7,
          -7,
          -4.14146545161862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.968167620369607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.934720591598597,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2058989954366655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.155730671278588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278570701610516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9967888550237687,
          -3.4148731146014684,
          -7,
          -7,
          -7,
          -3.629624171479566,
          -7,
          -3.7393032991563406,
          -7,
          -7,
          -7,
          -7,
          -4.4290898392125735,
          -7,
          -7,
          -4.074999186064199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.764400322956388,
          -4.464534256300944,
          -4.434696618924666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6614370567346723,
          -7,
          -7,
          -7,
          -7,
          -3.504584122237375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.429106008332696,
          -7,
          -7,
          -7,
          -3.311531088810858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.427112676054709,
          -7,
          -4.1485563851735865,
          -7,
          -3.3807537708039,
          -7,
          -7,
          -3.4178452084766517,
          -7,
          -7,
          -7,
          -4.132019415952632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.063596033291059,
          -7,
          -4.456366033129043,
          -7,
          -4.435876204588752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.375343489545472,
          -4.429251503330693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4359557908892375,
          -3.569900362684715,
          -2.980237184494648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9777236052888476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.447344117675954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7179338840140583,
          -7,
          -2.7568995976299173,
          -7,
          -7,
          -7,
          -7,
          -3.959566046637928,
          -7,
          -3.9685607721330167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163489358192699,
          -7,
          -7,
          -7,
          -3.1622981016733482,
          -7,
          -7,
          -3.905188522590824,
          -7,
          -7,
          -7,
          -4.126082680390729,
          -4.443435106114942,
          -7,
          -7,
          -7,
          -7,
          -3.951386094880293,
          -2.750003397874441,
          -7,
          -7,
          -7,
          -7,
          -3.7427251313046983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5949079461082594,
          -3.984347257585864,
          -2.571949559344863,
          -7,
          -4.441129320514776,
          -4.187055155865771,
          -4.439348486069748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3133622304450867,
          -2.94162242901577,
          -2.337717301886588,
          -7,
          -7,
          -3.97810439837059,
          -2.905616011041668,
          -1.7084480887903148,
          -2.836767587938306,
          -7,
          -3.6163704722912695,
          -3.0981617006115987,
          -1.217931901429386,
          -1.1158241306554086,
          -3.1903316981702914,
          -3.2418815732989663,
          -1.674344029296868,
          -3.2846867533932405,
          -1.7401646189215598,
          -3.3636832867606903,
          -2.729696191601458,
          -2.215048167079102,
          -2.7153990227625053,
          -2.8685099487418886,
          -2.9287257725066422,
          -3.0410831267035316,
          -1.3612329996313997,
          -1.7981696015670017,
          -3.4920149788770503,
          -2.936536333156518,
          -2.7582960793867843,
          -0.6587639854612518,
          -2.2536275242685075,
          -2.7413617328739823,
          -3.1156105116742996,
          -2.597206379506389,
          -2.7359574241167413,
          -3.3263002323564437,
          -2.920713371359016,
          -3.8523335775602088,
          -7,
          -3.096153170585375,
          -3.554004321011903,
          -4.503627281356413,
          -4.132739838260885,
          -3.2750232653226883,
          -4.137021615898141,
          -3.2962333698623643,
          -4.51216389140557,
          -4.448335233740176,
          -3.502609175942623,
          -2.9316958462012455,
          -4.498351913199365,
          -7,
          -3.9002715187187222,
          -7,
          -7,
          -3.868438702162959,
          -4.621061978712945,
          -7,
          -7,
          -4.088579020388005,
          -2.854456080613144,
          -2.8141034167340453,
          -7,
          -7,
          -7,
          -3.3092945756319394,
          -4.493193071453686,
          -3.3752367289481646,
          -3.8817126791523484,
          -4.27720796549665,
          -7,
          -3.235374115894248,
          -3.386629739543263,
          -3.7534202636980663,
          -7,
          -4.012612289062748,
          -7,
          -4.1335708406140395,
          -7,
          -7,
          -3.5688077482898857,
          -3.4771901848812075,
          -4.439079939868871,
          -3.5626309001629304,
          -7,
          -3.607470341973842,
          -4.0064089883235185,
          -4.263884503895953,
          -7,
          -7,
          -7,
          -7,
          -2.2579884368367824,
          -2.2467022836522106,
          -7,
          -4.1401936785786315,
          -7,
          -3.982693258667742,
          -3.5588645046423837,
          -3.4858002672700152,
          -7,
          -7,
          -4.210679612769305,
          -7,
          -3.20444810450135,
          -4.438035772093079,
          -4.435525851498655,
          -4.1529454056319,
          -3.7270801505184905,
          -3.749689947134912,
          -3.5616975326539935,
          -7,
          -3.5308717578869526,
          -7,
          -3.7384158516303687,
          -3.96296881959362,
          -7,
          -7,
          -7,
          -3.919418069406337,
          -7,
          -7,
          -3.2699019227319654,
          -3.0260749454085736,
          -1.8176997483689172,
          -4.426364845287927,
          -4.45901533230183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.463459971124135,
          -7,
          -4.433129517580485,
          -7,
          -7,
          -3.6527434983124007,
          -7,
          -3.411206332727312,
          -7,
          -4.437845653390831,
          -7,
          -4.440011242111454,
          -2.972175602200704,
          -4.430478187932044,
          -7,
          -7,
          -3.47928731647617,
          -3.671609166801616,
          -4.135132651376775,
          -4.434728541779758,
          -3.378565603800744,
          -7,
          -2.316910755195275,
          -7,
          -4.160768561861128,
          -7,
          -3.0521646958282362,
          -2.8084735565101373,
          -7,
          -3.8004971266535237,
          -4.435525851498655,
          -7,
          -7,
          -3.37112945995738,
          -7,
          -7,
          -3.8813275841005512,
          -7,
          -7,
          -4.200179941968094,
          -7,
          -7,
          -7,
          -4.025264892154508,
          -3.4505709997374705,
          -4.149203711868772,
          -4.448288825667122,
          -7,
          -7,
          -2.738519532242188,
          -3.984377272063356,
          -7,
          -2.4899893680793217,
          -3.028034892512139,
          -3.966423345943693,
          -3.7722483399718536,
          -2.1287802856493667,
          -3.6628657175303223,
          -7,
          -4.436305797450854,
          -7,
          -7,
          -7,
          -7,
          -3.2364631637113215,
          -7,
          -7,
          -7,
          -3.377905927931074,
          -7,
          -7,
          -4.427599698924868,
          -7,
          -7,
          -7,
          -7,
          -3.9853665879160696,
          -4.155062619223921,
          -7,
          -7,
          -3.9595024859218646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5381965783494542,
          -3.870579460552685,
          -3.4671935894118153,
          -7,
          -7,
          -4.156730826499419,
          -7,
          -7,
          -2.127327923920255,
          -7,
          -7,
          -4.44617976779828,
          -3.865222456290179,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.875480878609511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3737760513703203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9869507878585164,
          -7,
          -7,
          -7,
          -3.6570558528571038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4649364291217326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3553237864544485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.261999948651827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8206939499733856,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.148147455851064,
          -7,
          -3.128722284338427,
          -7,
          -7,
          -7,
          -3.307496037913213,
          -7,
          -7,
          -7,
          -2.8606174625142047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.108092810484286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.532754378992498,
          -7,
          -7,
          -7,
          -7,
          -2.9866821797795056,
          -7,
          -3.063896038125994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.403635189790548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.22695122879284,
          -2.723044991643445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9505595616118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8978609601608767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.445759836488631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8195439355418688,
          -7,
          -4.043401578910881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.147985320683805,
          -7,
          -7,
          -3.86993541064686,
          -7,
          -7,
          -3.350441856535061,
          -7,
          -2.522299299588104,
          -7,
          -7,
          -7,
          -7,
          -3.3176455432211585,
          -3.4602552839485896,
          -7,
          -7,
          -7,
          -7,
          -3.463743721247059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3566089889521,
          -7,
          -7,
          -4.565741592358979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3098430047160705,
          -7,
          -7,
          -3.2201684584243107,
          -3.982301391331439,
          -4.3069180203772985,
          -7,
          -3.97810439837059,
          -7,
          -3.5254983106766704,
          -7,
          -2.749681672112621,
          -7,
          -3.0538813029399567,
          -4.1170612806313445,
          -3.894048239048872,
          -3.814001070318085,
          -2.7134575995695465,
          -7,
          -3.1384024289877326,
          -2.541973161871005,
          -4.064420548433594,
          -4.325371969396705,
          -7,
          -3.3007381059912815,
          -3.659440781870318,
          -3.592662429045383,
          -3.830139387425343,
          -7,
          -4.1653234794461484,
          -7,
          -7,
          -3.1866987985351756,
          -2.8483786204227477,
          -4.600079442261521,
          -3.277127671229863,
          -3.6216435721945732,
          -3.898944466866509,
          -3.977220446635385,
          -3.5101426994025733,
          -3.426601617025341,
          -3.6398515681407924,
          -3.433009353093142,
          -7,
          -7,
          -2.620976431565856,
          -3.8536373819585945,
          -7,
          -7,
          -7,
          -4.563836918664545,
          -7,
          -7,
          -3.3502157035544387,
          -3.588187641710234,
          -7,
          -7,
          -3.8481891169913984,
          -7,
          -7,
          -7,
          -3.6292566515815383,
          -7,
          -7,
          -3.686618396693641,
          -3.5102008339963153,
          -3.9732231338246757,
          -7,
          -7,
          -7,
          -3.1372622025975456,
          -7,
          -4.1053690465448724,
          -2.9113859244283526,
          -7,
          -7,
          -2.3438304437465964,
          -4.072433725968388,
          -3.836830286488879,
          -7,
          -7,
          -7,
          -2.4785937181144218,
          -7,
          -7,
          -3.6686136699931597,
          -2.66755544932639,
          -7,
          -3.8050054042112746,
          -3.4652340949880145,
          -7,
          -2.7545776560447304,
          -7,
          -7,
          -7,
          -7,
          -3.062769949815128,
          -3.4318460456987254,
          -2.6107741960383892,
          -7,
          -7,
          -2.8717674683517753,
          -2.4318995994914934,
          -3.0178677189635055,
          -2.7488080049586023,
          -7,
          -7,
          -3.411395206355283,
          -7,
          -2.552984591554074,
          -7,
          -2.494328555359404,
          -2.867820908045573,
          -1.782929561800477,
          -3.2245330626060857,
          -2.564567439411901,
          -3.4488608456074408,
          -7,
          -2.192474526304651,
          -2.5738657906893656,
          -3.447623097760286,
          -7,
          -7,
          -7,
          -3.024742145874638,
          -2.7444885672205115,
          -7,
          -2.115943176939055,
          -2.006763212270037,
          -3.2629254693318317,
          -7,
          -3.30362797638389,
          -7,
          -3.48826861549546,
          -7,
          -7,
          -7,
          -3.6356847625472226,
          -7,
          -7,
          -2.973897197435795,
          -7,
          -2.7473470602930266,
          -7,
          -2.9564085711958326,
          -7,
          -7,
          -3.3119656603683665,
          -7,
          -3.4106835243506506,
          -2.6410773133253747,
          -7,
          -7,
          -7,
          -3.307496037913213,
          -3.40705081480425,
          -7,
          -2.522032189374934,
          -7,
          -2.5470930503307074,
          -3.3660492098002353,
          -2.924795995797912,
          -2.866484253384509,
          -3.3729120029701067,
          -4.004321373782642,
          -7,
          -3.3578713490133674,
          -2.922033079238554,
          -7,
          -7,
          -3.0635835285910997,
          -7,
          -7,
          -3.4541585899443437,
          -3.398287305357401,
          -3.383994789441733,
          -3.064083435963596,
          -3.1240148788874076,
          -2.6910814921229687,
          -7,
          -2.847202363980924,
          -2.62228311762588,
          -2.7586596156078977,
          -3.5216610151120733,
          -7,
          -7,
          -2.7265985355333875,
          -3.622731965164719,
          -2.708633321015398,
          -3.249198357391113,
          -2.286405251825869,
          -2.877515318847026,
          -2.188051718153,
          -3.619886029358387,
          -2.5090855878980047,
          -7,
          -3.106870544478654,
          -7,
          -7,
          -7,
          -7,
          -3.183933830133716,
          -7,
          -7,
          -7,
          -2.969169146329657,
          -7,
          -3.0622058088197126,
          -7,
          -7,
          -3.3679147387937527,
          -7,
          -3.3378584290410944,
          -2.450557009418329,
          -2.6790870506964652,
          -7,
          -7,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.501196242027089,
          -3.217045041213536,
          -3.360688062030678,
          -3.3121773564397787,
          -7,
          -2.7496259063954898,
          -7,
          -7,
          -3.6167485032003,
          -7,
          -7,
          -3.2022157758011316,
          -3.66133934000604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7231271587956916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0772727117618524,
          -7,
          -7,
          -7,
          -3.9408649759667216,
          -2.9109637921655658,
          -7,
          -7,
          -7,
          -7,
          -3.6847556221086237,
          -2.4170216650043423,
          -7,
          -7,
          -3.7481104674949837,
          -3.488610368239004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.310395894010226,
          -7,
          -7,
          -7,
          -7,
          -3.712397131406715,
          -7,
          -7,
          -7,
          -7,
          -3.6880636969463443,
          -3.943890048248473,
          -7,
          -7,
          -3.103974669386388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.48422863769372,
          -3.2888749458352793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7091285660594253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.326540668516562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7552394576339077,
          -7,
          -3.3891660843645326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7297315952870354,
          -7,
          -7,
          -7,
          -7,
          -3.0617754947078137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5999084478943093,
          -7,
          -7,
          -7,
          -4.170188348643891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2375751529847925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731427587050948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9177680024477564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.232689740335693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.471365065418019,
          -7,
          -3.745933158459443,
          -3.155057554299442,
          -7,
          -2.8739015978644615,
          -3.716754357432697,
          -3.723209310405111,
          -7,
          -3.1539672216454786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8312296938670634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.898176483497677,
          -3.510112883771509,
          -7,
          -7,
          -7,
          -3.4233278085624455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8547916940539855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7573960287930244,
          -7,
          -3.2477892042772956,
          -3.791830947674836,
          -7,
          -7,
          -7,
          -3.215967850531294,
          -7,
          -3.024074987307426,
          -7,
          -2.6747161423005723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3071393278464214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.864748335629659,
          -7,
          -7,
          -7,
          -2.6935240233774413,
          -7,
          -7,
          -4.01456253812761,
          -7,
          -7,
          -7,
          -7,
          -3.773859552376687,
          -7,
          -7,
          -7,
          -7,
          -3.699577591398909,
          -2.0516492556611436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.343162719448533,
          -7,
          -7,
          -4.2979573758101095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.830352759588388,
          -3.0570414004594033,
          -2.7010796971545665,
          -7,
          -2.905616011041668,
          -3.5254983106766704,
          -7,
          -1.5480968800198602,
          -2.5234342867464368,
          -7,
          -2.1165848448038345,
          -2.589825534910951,
          -2.8648599400071073,
          -2.968968851039916,
          -2.4831711067291815,
          -2.7182432681376736,
          -1.7100584417711244,
          -2.915584489837296,
          -2.087028677751426,
          -3.0014356218422553,
          -2.897008193182832,
          -2.86557305244909,
          -2.904282657645628,
          -2.3786583674477253,
          -1.8745468407664116,
          -3.577836341292744,
          -2.953583143592621,
          -2.4056877866727775,
          -3.3106225169268044,
          -2.49410713792028,
          -1.8979614050769982,
          -2.8515538946121692,
          -3.03818286599066,
          -2.053303140550675,
          -1.847366978587994,
          -3.061154752002178,
          -3.0540929905136385,
          -3.1752218003430523,
          -1.517455397407657,
          -3.3606565148340706,
          -3.762528522447,
          -3.260226984027309,
          -2.7293585021344358,
          -7,
          -3.726890140741822,
          -2.237217718184282,
          -7,
          -2.487237830963865,
          -7,
          -7,
          -3.5150786750759226,
          -3.4871855275842742,
          -3.9860099318532614,
          -7,
          -3.299768711919799,
          -7,
          -7,
          -2.8457743357365493,
          -3.6981658154401953,
          -7,
          -7,
          -2.854178148262086,
          -2.5619484129365397,
          -3.532340972815915,
          -7,
          -7,
          -7,
          -3.453719571202035,
          -7,
          -4.119397299540836,
          -3.033172354911534,
          -7,
          -7,
          -3.660912887477406,
          -3.469409608516755,
          -3.5264315920850375,
          -7,
          -3.0025020358433663,
          -2.7024843890690557,
          -3.1987716009911846,
          -3.017986785306103,
          -7,
          -3.421555540208102,
          -2.932980821923198,
          -7,
          -3.9787464205898777,
          -7,
          -3.514614153467984,
          -3.9360107957152097,
          -3.327825823614288,
          -7,
          -7,
          -7,
          -3.719497016610582,
          -1.4509619291538933,
          -1.6975930787551952,
          -7,
          -3.462397997898956,
          -3.4119562379304016,
          -2.844725627973226,
          -3.1581513253927027,
          -2.4550733759211245,
          -7,
          -7,
          -2.9480460080196305,
          -3.710540447933297,
          -2.7029861134458204,
          -3.446847710155809,
          -3.1330596427539095,
          -3.8211858826088454,
          -2.6084404498776554,
          -2.9523772475230774,
          -2.823948220466359,
          -2.716003343634799,
          -2.5222811794469977,
          -3.038449839253787,
          -7,
          -2.756940236046724,
          -7,
          -3.704236337308788,
          -7,
          -3.211806811322216,
          -7,
          -7,
          -3.2098723115450163,
          -2.3715024827552478,
          -1.4376211862677986,
          -7,
          -2.8870543780509568,
          -7,
          -2.572363273177757,
          -7,
          -7,
          -7,
          -3.160948480864697,
          -3.7033773685123497,
          -7,
          -3.456619044777273,
          -7,
          -1.7833837773173207,
          -3.130333768495006,
          -2.45178643552429,
          -7,
          -3.2696685774329497,
          -7,
          -2.8534700560147392,
          -2.4135847287244094,
          -3.40849436021236,
          -7,
          -7,
          -2.0507027915758727,
          -2.4494981780548124,
          -2.9599948383284165,
          -3.4303975913869666,
          -2.35128711383822,
          -3.716420733846555,
          -2.5985361084603706,
          -7,
          -2.6478717653062325,
          -7,
          -2.44165379985028,
          -3.1143106768684246,
          -7,
          -2.6262957259110666,
          -7,
          -7,
          -3.7138264243805246,
          -2.2103391029908557,
          -7,
          -7,
          -2.6113692154627337,
          -3.7348798027926278,
          -3.7283537820212285,
          -3.5180311221717915,
          -3.446381812222442,
          -3.5659658174466666,
          -7,
          -2.8519132286851905,
          -2.3825383761127745,
          -3.3274951622675926,
          -3.0965624383741357,
          -7,
          -7,
          -2.6320634252958612,
          -2.2570012883774924,
          -7,
          -1.811809860462303,
          -2.700738320904402,
          -2.8705502062680823,
          -3.0948203803548,
          -3.3757915976851924,
          -2.974804668354214,
          -7,
          -3.039889797736181,
          -7,
          -7,
          -7,
          -7,
          -2.353700623519698,
          -7,
          -7,
          -7,
          -2.6489173347428867,
          -7,
          -3.719248398447946,
          -3.3931363002692168,
          -3.3964608915070755,
          -7,
          -7,
          -3.4068806700491248,
          -2.855640280890145,
          -2.8749325644777626,
          -7,
          -7,
          -2.8953436049355092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5516717465004923,
          -7,
          -7,
          -7,
          -2.721747219185589,
          -7,
          -7,
          -3.4188350827355722,
          -7,
          -7,
          -3.7865384804978026,
          -2.5310141823998307,
          -3.446070935701005,
          -7,
          -7,
          -7,
          -7,
          -2.531957654348021,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5610268074521003,
          -7,
          -7,
          -7,
          -2.900882755786381,
          -2.770431183622876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3797015850547303,
          -7,
          -7,
          -7,
          -2.8658874442230333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.006187833539161,
          -7,
          -7,
          -7,
          -7,
          -4.099542528695332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.109231587666042,
          -4.093999192869392,
          -7,
          -3.554108260657051,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.416607226792504,
          -3.1715948293206875,
          -4.396251668580277,
          -7,
          -4.111900712865614,
          -7,
          -4.395867831233988,
          -4.396094685212617,
          -7,
          -7,
          -4.411333448612567,
          -7,
          -7,
          -7,
          -3.1164601502801488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.711733434874681,
          -7,
          -3.39776625612645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9250025076809774,
          -7,
          -3.706683651763288,
          -7,
          -4.100163688966044,
          -7,
          -2.4357382204426923,
          -3.9240551874495404,
          -3.918990875891816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1271534106979635,
          -7,
          -7,
          -7,
          -4.102828027919261,
          -7,
          -7,
          -7,
          -7,
          -4.4042177445149235,
          -7,
          -7,
          -4.100180930742329,
          -7,
          -2.601878997584187,
          -7,
          -7,
          -7,
          -7,
          -4.409053505010069,
          -7,
          -3.543229667726184,
          -2.8133117167318837,
          -7,
          -7,
          -7,
          -3.8193848844515053,
          -4.396356292642913,
          -4.107481318911243,
          -4.411266066512139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.352928220652557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.623382217343356,
          -7,
          -3.834325313744794,
          -4.404577167740624,
          -7,
          -3.6440867345657413,
          -7,
          -7,
          -7,
          -3.656146134740865,
          -3.9317290081923666,
          -7,
          -7,
          -7,
          -3.6084428274303924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.407033803328038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4613428736466783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.943362591700379,
          -7,
          -3.1600454084072833,
          -7,
          -3.1518463489431174,
          -2.9039309228438346,
          -7,
          -4.402175375031505,
          -7,
          -4.402845781655725,
          -7,
          -2.683981060007928,
          -4.399950474386311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517354274350649,
          -7,
          -3.950575783275147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426153268215979,
          -7,
          -7,
          -4.395186557446505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.104862518141077,
          -4.144652031188698,
          -2.6434316192735525,
          -7,
          -7,
          -7,
          -4.403120521175818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4942937686653326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.09564001802453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.82239693934044,
          -7,
          -3.5157267000606347,
          -7,
          -1.7059554726320614,
          -7,
          -7,
          -7,
          -3.9818186071706636,
          -3.5614762013962973,
          -7,
          -3.513084360465144,
          -4.114260605446002,
          -4.395291438384484,
          -7,
          -7,
          -7,
          -3.9268738405440184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4819996714322374,
          -3.9287883153242555,
          -7,
          -7,
          -2.086441189701195,
          -7,
          -7,
          -3.879841055986563,
          -7,
          -7,
          -7,
          -4.396478322202103,
          -4.413936485917295,
          -7,
          -7,
          -7,
          -7,
          -4.398009490230765,
          -1.6871170615951079,
          -3.262773046675905,
          -7,
          -7,
          -7,
          -7,
          -4.403738050363856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100094715014989,
          -4.396548037987132,
          -3.270691772933909,
          -3.8311175827395134,
          -2.451196709825884,
          -4.097777734539283,
          -3.411164973755188,
          -3.5717597681877002,
          -7,
          -7,
          -7,
          -7,
          -3.930269649751069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.403274985811686,
          -7,
          -7,
          -4.396216788290972,
          -7,
          -7,
          -3.95433900860246,
          -7,
          -7,
          -2.968298747062242,
          -2.8255451158954044,
          -1.2379149026031688,
          -4.401882822321282,
          -1.7084480887903148,
          -7,
          -1.5480968800198602,
          -7,
          -2.2459534824845075,
          -7,
          -2.6721101781717973,
          -1.6143017679111997,
          -1.6180546047026807,
          -1.9892637435437004,
          -2.859959044875594,
          -1.6685292718594495,
          -1.2261354849433992,
          -3.077943992402701,
          -2.319169559153719,
          -2.7447408575982504,
          -2.138410667831999,
          -1.6666884526570873,
          -2.0250850890094454,
          -1.752061582665237,
          -2.4030124712965577,
          -2.508327674547125,
          -1.5353058117916345,
          -1.3253166704439294,
          -4.116159272795033,
          -2.251559446395231,
          -2.245725338344771,
          -1.435836639979589,
          -1.9941457669893958,
          -1.8025366557361748,
          -2.1507493020831574,
          -1.7405023288426078,
          -1.86465533932495,
          -2.4959538825135468,
          -1.769874929688702,
          -3.3521181734217267,
          -7,
          -2.6499976347365273,
          -2.72493870639439,
          -3.574768941501752,
          -3.6252952983922326,
          -2.2977910670286694,
          -3.5629043555363977,
          -2.16371760904402,
          -7,
          -7,
          -3.4813590104042285,
          -3.0040383904652064,
          -3.472200430565602,
          -4.414756146424954,
          -3.0288325872597874,
          -3.4154908521714686,
          -7,
          -2.751231956995085,
          -2.8370221280830727,
          -4.429106008332696,
          -7,
          -2.7432791373097536,
          -1.8459505141455332,
          -2.3492307781211794,
          -7,
          -7,
          -7,
          -2.9958943380318903,
          -7,
          -3.0534393320846642,
          -3.678761103362153,
          -3.7115903288209764,
          -4.396826789268784,
          -4.163727735958904,
          -3.0349165873947777,
          -3.191131504072038,
          -3.7184020305163026,
          -2.7058187146688035,
          -2.4679428579636253,
          -3.3864320772662224,
          -2.7357106522811234,
          -7,
          -2.478997784566411,
          -2.861484626428204,
          -3.505946584808965,
          -2.9205420041231145,
          -7,
          -3.821742733474618,
          -3.1774757445725914,
          -3.0649818216973053,
          -4.398807730203265,
          -7,
          -7,
          -7,
          -2.013031599703814,
          -3.10462618871794,
          -7,
          -4.411602872517545,
          -7,
          -7,
          -3.9345237001887745,
          -4.109511052229932,
          -7,
          -7,
          -3.708364237014807,
          -7,
          -3.364046122136441,
          -3.8059933229700182,
          -7,
          -7,
          -3.7016111533360587,
          -7,
          -7,
          -7,
          -4.404029356425098,
          -4.441805069695703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4970541095473315,
          -7,
          -7,
          -3.8298744145878594,
          -2.6599289558040393,
          -1.5460343682984186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4350476413399647,
          -7,
          -7,
          -7,
          -7,
          -3.3578029561814304,
          -4.404885008214813,
          -4.123001813306024,
          -7,
          -7,
          -7,
          -7,
          -2.597184351345655,
          -7,
          -7,
          -7,
          -2.7979135378417332,
          -4.492089577491379,
          -7,
          -7,
          -4.466615567492372,
          -7,
          -2.14725185319735,
          -7,
          -3.9564085711958326,
          -7,
          -7,
          -2.9994996151681876,
          -7,
          -4.172705071797739,
          -7,
          -7,
          -7,
          -3.8194945810919148,
          -7,
          -7,
          -3.9794724955247456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.175743684421761,
          -3.5114971497645353,
          -7,
          -7,
          -7,
          -7,
          -3.4595935034915413,
          -4.132243675427468,
          -7,
          -4.121822376752185,
          -3.540935581295993,
          -4.113057156163552,
          -3.925505469379759,
          -2.8691919291329455,
          -4.181772152056479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.160199906751567,
          -7,
          -7,
          -7,
          -3.474541246737956,
          -7,
          -7,
          -7,
          -4.397627204021875,
          -7,
          -4.397992120883196,
          -7,
          -4.434361287200313,
          -4.4275023380332845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.399742926242862,
          -3.6881230714056485,
          -4.144153719132131,
          -4.138539521483194,
          -7,
          -7,
          -4.128221507666712,
          -4.395972547794993,
          -7,
          -2.867697143868812,
          -7,
          -7,
          -3.939685617103282,
          -4.138444807652802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.149373090491385,
          -7,
          -7,
          -7,
          -4.732851940001292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.731959248048951,
          -7,
          -4.7326831930105575,
          -2.3127610850765197,
          -4.738328593727102,
          -7,
          -7,
          -3.917077681247535,
          -3.0391146831688234,
          -4.431669271313745,
          -7,
          -7,
          -7,
          -4.033013394664247,
          -2.425683042498169,
          -4.45983711033396,
          -7,
          -3.1812638243618423,
          -2.3525148327209098,
          -7,
          -7,
          -7,
          -4.256196408063205,
          -4.431902277007789,
          -4.4324962773898475,
          -3.840144713858491,
          -7,
          -4.732136323845126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.044280988044567,
          -4.130237247885229,
          -3.415146109816988,
          -7,
          -4.734183542152668,
          -3.779676641573066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4315728185856536,
          -3.3800145058160997,
          -2.8141883831772025,
          -7,
          -4.033857832966269,
          -4.263217745338578,
          -7,
          -7,
          -7,
          -7,
          -4.258365863632017,
          -4.438558169790535,
          -7,
          -7,
          -7,
          -3.023265956261281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.434608818972134,
          -7,
          -7,
          -3.9439518176496353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.258182160366098,
          -7,
          -3.9587788272906477,
          -7,
          -4.433841810470936,
          -7,
          -2.532935563607061,
          -4.7348957956663345,
          -4.431508504864177,
          -4.731999498888382,
          -7,
          -7,
          -4.431387890960021,
          -7,
          -7,
          -7,
          -4.446568231376214,
          -7,
          -7,
          -7,
          -4.258972331109386,
          -7,
          -7,
          -7,
          -4.732393759822968,
          -3.4807333549387898,
          -7,
          -7,
          -7,
          -4.4330093530931425,
          -2.869165023196728,
          -4.732908174430821,
          -4.733502207751304,
          -7,
          -7,
          -4.136427240094511,
          -7,
          -4.27933988355467,
          -2.891104357461312,
          -7,
          -4.433729841799795,
          -7,
          -3.1532691472062484,
          -7,
          -3.8931036018217346,
          -3.7852032462226073,
          -7,
          -7,
          -4.431966532447148,
          -4.256501266211318,
          -7,
          -7,
          -2.91150349477443,
          -4.731910942116873,
          -7,
          -7,
          -4.731991449018929,
          -7,
          -2.600957985056156,
          -4.148949520009529,
          -4.75159469981361,
          -3.3558663952923395,
          -7,
          -3.286195614804735,
          -7,
          -7,
          -7,
          -3.796250457270067,
          -3.323101304852948,
          -7,
          -7,
          -7,
          -3.7032649161102507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.436544276662768,
          -7,
          -7,
          -7,
          -4.434497047900033,
          -4.7331490966888365,
          -7,
          -2.2945643764286494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5676457844583123,
          -7,
          -3.1717335866238385,
          -7,
          -4.7378999822802434,
          -2.336011372536,
          -4.13049458852347,
          -3.354748519560839,
          -3.620880470789483,
          -3.589303181209229,
          -3.4140496895261268,
          -4.1368790398755175,
          -7,
          -4.733413956897983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.315473525026916,
          -7,
          -2.9830816586339246,
          -7,
          -3.736890281242343,
          -7,
          -4.732610852795199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5703171726079854,
          -3.692181714500473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4348402532975735,
          -4.2599202335673745,
          -3.551739634346346,
          -2.9012505800321833,
          -7,
          -7,
          -7,
          -3.589430945413185,
          -7,
          -7,
          -7,
          -7,
          -4.73275552117825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4358112844425377,
          -7,
          -7,
          -7,
          -7,
          -4.431645160139889,
          -4.732795698289329,
          -7,
          -4.733606481099323,
          -7,
          -7,
          -3.670392758338277,
          -4.043770833537528,
          -7,
          -7,
          -7,
          -3.365292945375382,
          -4.036261505705524,
          -1.9442479613427892,
          -7,
          -2.4788898586149566,
          -7,
          -7,
          -7,
          -3.315077761428482,
          -7,
          -3.6241471761742603,
          -3.3102211247655564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.435159270818,
          -4.734615835313205,
          -7,
          -7,
          -4.733590440675243,
          -7,
          -7,
          -4.7333016116877,
          -3.8294404736513274,
          -3.5752956351447946,
          -3.65774087263201,
          -4.734599832126458,
          -4.733189237407942,
          -2.3187758238582155,
          -7,
          -7,
          -3.4517060437782163,
          -7,
          -7,
          -4.433657846692988,
          -7,
          -3.5364716381249224,
          -3.3729760062834497,
          -4.7398728450231316,
          -7,
          -4.738138151971374,
          -4.131289771865652,
          -2.025145309578206,
          -4.1365620365899805,
          -7,
          -7,
          -4.732039745997672,
          -4.438969313737987,
          -3.7359101389693814,
          -7,
          -7,
          -4.734367719627033,
          -7,
          -7,
          -7,
          -4.733622520930981,
          -7,
          -7,
          -4.734855812377757,
          -4.732723376813052,
          -3.7559164129647007,
          -3.9048545961465555,
          -2.3524888120884007,
          -7,
          -4.040633981546597,
          -3.1556102627468885,
          -4.2616196765479355,
          -7,
          -4.735079671396599,
          -7,
          -4.2606357630261105,
          -3.973558854042434,
          -4.261587972170946,
          -4.4311546090522445,
          -4.430937302851301,
          -7,
          -3.6942860407476794,
          -7,
          -7,
          -4.732570658579406,
          -7,
          -7,
          -2.7792938551187123,
          -7,
          -7,
          -1.6733066117118942,
          -2.080104209578498,
          -2.1649498074924685,
          -3.5588764972551363,
          -2.836767587938306,
          -2.749681672112621,
          -2.5234342867464368,
          -2.2459534824845075,
          -7,
          -4.431138516024918,
          -1.9595438289602904,
          -1.3763213526893203,
          -2.130418300968995,
          -2.2212418109995706,
          -1.5462364444869212,
          -2.626664467749713,
          -2.607856961681029,
          -1.7386774334906772,
          -2.3920370982602477,
          -2.0771409968833208,
          -3.091118028327024,
          -2.5311273253818536,
          -2.3595920918742195,
          -0.9082622277483057,
          -2.5196681185140672,
          -3.061177635447784,
          -2.381861901549193,
          -1.4218571139257665,
          -4.265226748420167,
          -1.029734020966166,
          -2.0982023330127793,
          -2.4495402967153828,
          -2.6972047765079417,
          -2.1098658593045085,
          -2.1733771154648243,
          -2.812674229639345,
          -2.903364685186985,
          -2.0797269661897304,
          -2.2391198446200864,
          -2.4007329088562077,
          -7,
          -2.444232220713578,
          -2.498405219017697,
          -2.926107152304904,
          -2.956904441636584,
          -2.6262598343477097,
          -3.834937035377519,
          -2.4464138741235977,
          -4.077811059250664,
          -3.8401060944567575,
          -2.8020227472483574,
          -2.5109980542805,
          -2.948879554937643,
          -7,
          -2.7406209017049608,
          -4.0426699996003075,
          -7,
          -3.6084037659857606,
          -2.860489313314953,
          -4.7480406520901814,
          -4.736069662371753,
          -2.4682786183667798,
          -2.0329793553070608,
          -2.8251465839459926,
          -7,
          -7,
          -7,
          -2.6395971516419463,
          -4.465583591880342,
          -3.7185570447378358,
          -2.448986546550028,
          -3.4713117180220143,
          -7,
          -3.5100010569209736,
          -2.9592049889385117,
          -3.6850068460949137,
          -3.1291001439415806,
          -2.877191780219873,
          -3.501964050635706,
          -1.3425548681430048,
          -3.575172444141053,
          -7,
          -1.6359740309170805,
          -2.3349294350274246,
          -4.039604453125454,
          -2.5190924328316933,
          -7,
          -2.5729892769856284,
          -3.346187411389113,
          -3.483831728933643,
          -4.4327208225983075,
          -7,
          -7,
          -4.434233473644771,
          -1.861943596297561,
          -1.9676457541126968,
          -7,
          -2.774501097901883,
          -3.479127237417261,
          -2.722261297472855,
          -1.5595677521030744,
          -2.899320807326632,
          -4.733919151012391,
          -7,
          -1.5843082985891896,
          -3.956192450523593,
          -1.9223060969787602,
          -3.290527486484116,
          -3.338536173355659,
          -3.5998596887549335,
          -2.817609435764669,
          -3.1747667952445253,
          -2.8160253712016736,
          -3.1704678690973567,
          -3.0193719645920116,
          -2.599729355835965,
          -3.783482732017722,
          -3.3586010159430195,
          -4.434600836278021,
          -4.131722895345994,
          -7,
          -2.0003367588821965,
          -4.4335458305766196,
          -4.732466136205421,
          -2.0389758684485395,
          -1.7090164350751587,
          -1.4005481065017522,
          -4.4312591991966865,
          -3.4060056926824207,
          -4.257694570688118,
          -3.5950156811695013,
          -4.733582420241032,
          -7,
          -4.732884074852628,
          -3.0259624536056147,
          -4.432704787504453,
          -3.6215277949321476,
          -3.298408846961862,
          -7,
          -1.9769622734382644,
          -3.4575472663217233,
          -2.7664363303175405,
          -4.73200754860863,
          -4.1359114555750605,
          -4.256027841969174,
          -2.113388887581343,
          -1.879222692401706,
          -4.257190419161368,
          -4.431821944337311,
          -4.256043898702031,
          -2.685756915498769,
          -1.1683168621903026,
          -3.6230583497564854,
          -3.736316807904109,
          -2.4452897737854538,
          -7,
          -1.5742845569137742,
          -3.957128197676813,
          -2.9362971598951773,
          -3.692902974323973,
          -2.9788849817912846,
          -2.7584983620147856,
          -7,
          -2.347873520992558,
          -3.782488549597868,
          -4.733790903406896,
          -3.620600464021688,
          -2.7517345945216576,
          -4.732031696874192,
          -4.7326510432913365,
          -1.73331505003569,
          -3.782416880556456,
          -4.258988279348813,
          -2.7399861623675457,
          -4.03903320084723,
          -3.575603459860452,
          -4.135760572021129,
          -1.5644135192609991,
          -2.1681024455343647,
          -3.2967043564681595,
          -3.280444918828487,
          -4.732152418065214,
          -7,
          -2.3967017120816574,
          -2.7801546506773587,
          -4.034146977106046,
          -2.77514438901695,
          -0.8208455107670904,
          -3.149250702303481,
          -1.2523921106247071,
          -1.9050790087053022,
          -2.675924914230962,
          -4.431886211662398,
          -3.623114049449181,
          -4.431781772429124,
          -4.732289194860667,
          -3.9565365919733257,
          -3.5076892305931007,
          -2.7060562169997526,
          -7,
          -4.033962268335752,
          -7,
          -2.1292125228753833,
          -7,
          -4.258102265137589,
          -4.7329162073263795,
          -4.733221347312165,
          -4.434393234712605,
          -4.1312817469854,
          -3.5878552249378273,
          -1.6475990265972849,
          -3.516574256073354,
          -7,
          -4.732996528111129,
          -2.781779302063946,
          -4.032981193097368,
          -7,
          -7,
          -3.8309012866592043,
          -4.43274487412905,
          -4.734199560686231,
          -3.3187860602767865,
          -2.78129693567756,
          -3.9079178445986336,
          -4.256035870409809,
          -7,
          -3.2424948410083423,
          -4.130349853177955,
          -4.732015598179676,
          -1.9741594396760127,
          -7,
          -7,
          -3.223196915940392,
          -2.7603455395182035,
          -3.737892041040643,
          -7,
          -7,
          -4.43341777677003,
          -7,
          -2.707501741954049,
          -4.431033896809084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.877135126815562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.694605198933569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669642247025738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.848062814416318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605638990395859,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.543298040491669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.616612029993923,
          -4.746330553658598,
          -7,
          -1.1674267426041278,
          -7,
          -7,
          -7,
          -7,
          -4.431138516024918,
          -7,
          -4.02612451674545,
          -7,
          -7,
          -7,
          -4.391146906415991,
          -7,
          -7,
          -4.650666857562813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.783953577404038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.54129211534237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.273117068486742,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603415045412929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.06707085604537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626689305465622,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165896909992507,
          -7,
          -4.740354793159152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.080731080139699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008940661377087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.104262021903205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.883448493505859,
          -7,
          -7,
          -3.7543865641765075,
          -3.4566038682343416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8904955374150134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.079940597152362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.074267742553358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5463986973189114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.275911969341105,
          -4.039731296098691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7388598020722004,
          -7,
          -7,
          -7,
          -7,
          -3.7563698216020813,
          -7,
          -7,
          -3.515703572953595,
          -7,
          -7,
          -7,
          -3.4321271294654903,
          -7,
          -7,
          -4.062431553162612,
          -7,
          -7,
          -4.030316305988586,
          -7,
          -7,
          -7,
          -2.969216160193203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.18150058846776,
          -7,
          -7,
          -3.746244871720198,
          -7,
          -3.521556479191024,
          -7,
          -7,
          -7,
          -3.811507979945327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.106061643964693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.605628222007619,
          -7,
          -3.2039225311945088,
          -7,
          -7,
          -3.0329454951737977,
          -7,
          -3.5645871661717736,
          -3.7392162193937257,
          -3.5661230992888213,
          -3.348772013844623,
          -3.7585334222372864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.097812407365289,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1914160794625115,
          -4.033946202990361,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.135895575564019,
          -2.5905031402619314,
          -7,
          -7,
          -7,
          -4.044029909946466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6582716350441484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.029221394253928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.027064062151045,
          -4.091561448144972,
          -4.041708420891436,
          -2.5486322043143623,
          -7,
          -2.9580026583126315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073828284401109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6396192807332817,
          -7,
          -7,
          -7,
          -3.1037951717678367,
          -7,
          -7,
          -3.4285397306379886,
          -4.026001817357177,
          -7,
          -7,
          -7,
          -7,
          -4.040523226445596,
          -7,
          -7,
          -7,
          -4.032256025890453,
          -2.688493710291997,
          -7,
          -7,
          -7,
          -7,
          -4.064532861131578,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1101181270103275,
          -3.0237489456041193,
          -4.034187120793453,
          -7,
          -4.055741366005619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.117668940562442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.106428894793411,
          -7,
          -7,
          -2.2047218097709047,
          -2.7990055901015256,
          -3.0297444125258646,
          -3.740086232305504,
          -3.6163704722912695,
          -3.0538813029399567,
          -2.1165848448038345,
          -2.6721101781717973,
          -1.9595438289602904,
          -4.02612451674545,
          -7,
          -2.4034855972580953,
          -3.0462297460965346,
          -3.1043929144826357,
          -1.9857140145065368,
          -2.350173442137207,
          -2.7774768217540804,
          -2.356787290504102,
          -2.4784157250726615,
          -2.7716302024333626,
          -3.4868081673068962,
          -2.9173463457004742,
          -2.9949278545756846,
          -2.1765046760139852,
          -2.1951679674318276,
          -3.2458826475172615,
          -3.097017539281824,
          -2.3760779765022546,
          -4.075619945928776,
          -2.051105441902926,
          -1.5020080105202644,
          -3.180134839207975,
          -3.3272174217282786,
          -2.267292540746008,
          -2.096432358024415,
          -3.596769836649545,
          -3.5570457946939182,
          -3.0372405216509115,
          -2.136695307197003,
          -2.7579762486280295,
          -7,
          -3.376987335620002,
          -3.2536942589200692,
          -2.9197935241116775,
          -3.5678886061861617,
          -3.6364678360987646,
          -7,
          -3.7019227969115684,
          -7,
          -7,
          -3.6460899012744283,
          -3.4292137870854282,
          -3.5866154316418695,
          -7,
          -3.5948619534914963,
          -7,
          -7,
          -7,
          -4.410490420003448,
          -7,
          -7,
          -3.372043597924024,
          -2.722123655881506,
          -3.375387870556721,
          -7,
          -7,
          -7,
          -3.096452173674266,
          -7,
          -3.9116191898049486,
          -2.483875486804185,
          -7,
          -7,
          -3.5717379390424977,
          -3.1974714148555217,
          -3.9897018963460247,
          -7,
          -3.8701111553644005,
          -7,
          -2.6434703017162744,
          -3.8152455919165633,
          -7,
          -3.1990777777050927,
          -2.5457441400572276,
          -7,
          -3.6480508524599364,
          -7,
          -3.612889769287485,
          -3.4589700516287487,
          -3.5369159991305725,
          -7,
          -7,
          -7,
          -4.041629508475138,
          -2.4037711497348146,
          -1.9609813912022167,
          -7,
          -3.217634323191137,
          -3.5613399414589013,
          -2.762542164705617,
          -1.9929204347492253,
          -2.855632711553374,
          -7,
          -7,
          -2.0717476631092104,
          -3.4350875123045923,
          -2.5332502999681688,
          -7,
          -3.1457400995364067,
          -3.1382325034866554,
          -2.3067273749127253,
          -3.3024391640698574,
          -2.584198148073582,
          -2.6788975762019875,
          -2.868918601850143,
          -2.5573445996041952,
          -3.0993352776859577,
          -3.214995143810212,
          -7,
          -4.034427905025403,
          -7,
          -1.8242039608286242,
          -3.737113094305961,
          -7,
          -2.0111629144226377,
          -2.0606081092457327,
          -1.8977493894870296,
          -7,
          -3.0623768380354477,
          -7,
          -3.292292999589303,
          -7,
          -7,
          -7,
          -2.96744768112233,
          -7,
          -3.264975147583582,
          -3.010027225211449,
          -7,
          -2.1209742817146546,
          -3.7469454096151047,
          -2.5831633372681906,
          -7,
          -3.577721524509021,
          -4.031165999660659,
          -3.214654654195042,
          -1.7696844959347846,
          -3.337698805964078,
          -4.029586671630457,
          -7,
          -2.269948576750441,
          -1.8148067561120336,
          -2.9361269120606015,
          -3.746322765089953,
          -2.5027756709516997,
          -7,
          -2.3468919571765694,
          -7,
          -1.8383646573552883,
          -3.4352469595691293,
          -2.9285927844153066,
          -3.159497782005977,
          -7,
          -2.23700120905058,
          -3.1457400995364067,
          -7,
          -3.7378285058957847,
          -2.514511856104337,
          -7,
          -7,
          -2.81424759573192,
          -7,
          -7,
          -3.3492775274679554,
          -3.452935870201179,
          -4.118198568045036,
          -4.054268239547188,
          -1.9418670254250672,
          -2.022045226491996,
          -3.3058885302843097,
          -2.4332241692194554,
          -7,
          -7,
          -2.482075842814299,
          -2.1548238775544104,
          -3.7300551523755,
          -2.2637794829316564,
          -1.569934431839561,
          -2.705417442867802,
          -1.8575159365530678,
          -2.508699866624639,
          -2.5728175888328457,
          -7,
          -2.9712371811975107,
          -7,
          -3.7255441224863532,
          -7,
          -7,
          -2.7065536684845606,
          -7,
          -4.030235296012245,
          -7,
          -2.169581255505934,
          -7,
          -3.040800061256529,
          -4.029830019310658,
          -4.0313680628857735,
          -3.7413092088995694,
          -4.0322157032979815,
          -2.9561684304753633,
          -2.079999897528305,
          -2.841428996506697,
          -7,
          -7,
          -3.051499819132745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.222456336679247,
          -2.2550794424275757,
          -3.4240972394005476,
          -4.031206419827462,
          -7,
          -3.1010593549081156,
          -4.027512692448811,
          -7,
          -2.5573289383908295,
          -7,
          -7,
          -3.472573626968942,
          -2.2316416747484227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.259977184344511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6859997629642085,
          -7,
          -7,
          -7,
          -3.7127443776037308,
          -3.203147997054803,
          -7,
          -7,
          -4.574841195063384,
          -4.580468783951002,
          -7,
          -2.596143564636393,
          -7,
          -7,
          -4.581779045728458,
          -2.9611431678226436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.865885356849177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.706706555470474,
          -7,
          -2.871661594213514,
          -7,
          -7,
          -4.5759264411633405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.110286608403566,
          -3.9273703630390235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9895860127950473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.031634642470658,
          -7,
          -4.097870189257832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.619397717259811,
          -4.099979734081352,
          -7,
          -7,
          -7,
          -7,
          -4.573602552304502,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.578914137904182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.541543586121371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.829614637842637,
          -3.0528075800932757,
          -7,
          -7,
          -7,
          -3.2379418864745153,
          -7,
          -4.280976518699718,
          -4.282803314291728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3652726562364186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.924196555424065,
          -7,
          -4.2999102450746784,
          -7,
          -7,
          -2.5942719800021083,
          -7,
          -7,
          -7,
          -4.122412495411281,
          -4.281226596668253,
          -7,
          -7,
          -7,
          -3.9922883537970923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.581016156545554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.241311761772201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.987990077819066,
          -7,
          -3.1028843304520466,
          -7,
          -3.882399297374088,
          -2.866686256844357,
          -7,
          -3.7325316092073675,
          -7,
          -3.276748941031243,
          -4.278524964737017,
          -2.6727134419961223,
          -4.576283747648257,
          -7,
          -7,
          -7,
          -7,
          -4.586722297518069,
          -7,
          -7,
          -7,
          -4.657925483756938,
          -7,
          -4.595010951898408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.593917107968336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7040646794085674,
          -2.362084192831113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5572850469162516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.583153414473892,
          -7,
          -4.297289861640372,
          -7,
          -7,
          -7,
          -7,
          -3.160890737208172,
          -7,
          -3.582734646353692,
          -7,
          -2.281986672793383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.587318014514068,
          -4.2855348061200305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.299921130330193,
          -7,
          -7,
          -7,
          -2.6306638191535563,
          -7,
          -7,
          -3.678224906041909,
          -7,
          -7,
          -7,
          -7,
          -4.585652453577532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8570936807822036,
          -3.104782913501534,
          -7,
          -7,
          -7,
          -7,
          -4.277758155206577,
          -7,
          -7,
          -4.576387426751579,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.099922232196922,
          -7,
          -3.7612698875591977,
          -4.598768627396784,
          -2.436191028312803,
          -4.575545759343288,
          -4.282939165754773,
          -3.4274380197942302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.601234046916447,
          -4.582665500466235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274053883354042,
          -7,
          -4.583776692634928,
          -7,
          -4.296522595433707,
          -7,
          -7,
          -1.6956711079089126,
          -1.8039393715334233,
          -1.9450404100170748,
          -7,
          -3.0981617006115987,
          -4.1170612806313445,
          -2.589825534910951,
          -1.6143017679111997,
          -1.3763213526893203,
          -7,
          -2.4034855972580953,
          -7,
          -2.6245095125320517,
          -2.8085052866303437,
          -2.6472281288748,
          -1.524095582761675,
          -2.2986184244854564,
          -2.751422464410734,
          -3.038814169209334,
          -1.812689050285849,
          -2.7092506825613607,
          -1.7272531802324826,
          -2.761722869731802,
          -0.696236093792431,
          -2.390319447159678,
          -2.616297605937538,
          -2.6144632758080677,
          -2.299410066465394,
          -3.6846209780269676,
          -1.6863367526203503,
          -2.242305130766777,
          -2.6655520394035577,
          -2.4754544644931236,
          -2.6087516128943555,
          -2.873210325172087,
          -2.341418438405759,
          -2.4032198906950484,
          -2.6976541809638137,
          -1.7773155443668243,
          -3.6658997943309437,
          -7,
          -3.0324844498918937,
          -3.343052406603564,
          -3.2491779675001773,
          -4.578730871952774,
          -3.1407862902279273,
          -7,
          -2.5460646087948833,
          -7,
          -7,
          -3.4854019748438567,
          -2.943238591907711,
          -3.6257341909969014,
          -7,
          -3.6287668572312906,
          -7,
          -7,
          -4.304339704892339,
          -2.8620236540286195,
          -4.595925894606198,
          -7,
          -3.5724504575628,
          -2.3571035853767603,
          -2.3303996308647994,
          -7,
          -7,
          -7,
          -3.360738161692183,
          -4.0199570515283405,
          -4.250858954599295,
          -3.916106373916004,
          -4.385793891176033,
          -7,
          -4.620542039849599,
          -3.0308020487722676,
          -3.7946971268919985,
          -3.9859314351032813,
          -3.841296887490282,
          -3.193777262607969,
          -3.0039249234108576,
          -3.521377838762743,
          -7,
          -2.8272287565088057,
          -2.9921586590995553,
          -3.980389744490009,
          -2.3463857600530322,
          -7,
          -4.291335544382936,
          -3.614770704069749,
          -3.144418518602069,
          -7,
          -7,
          -7,
          -7,
          -2.701968350796342,
          -2.8855280531785423,
          -7,
          -3.9819544444699737,
          -4.5768249102949845,
          -3.8985057855343586,
          -3.2243202842554037,
          -3.9812634968287997,
          -7,
          -7,
          -3.0441073814140625,
          -4.576468048945627,
          -2.8832573030914483,
          -4.2807149194910075,
          -4.579966418965081,
          -7,
          -4.029038640290407,
          -7,
          -3.6011034909311253,
          -3.1514266037049206,
          -3.624580005156098,
          -3.905558437120276,
          -3.8823309691042955,
          -3.9811614606115753,
          -7,
          -7,
          -7,
          -3.643156465619706,
          -4.5767098257666845,
          -7,
          -2.3607432641111994,
          -2.8315095089267874,
          -1.9759362742204192,
          -7,
          -3.9948118872762843,
          -7,
          -3.8081321668795662,
          -4.575257141709752,
          -7,
          -7,
          -3.6457605771884154,
          -7,
          -7,
          -4.0124048232620035,
          -7,
          -2.602328757112121,
          -3.977449227382341,
          -3.6892533475901,
          -7,
          -4.104464348950593,
          -7,
          -7,
          -1.5777084362726672,
          -7,
          -7,
          -7,
          -2.948264092763587,
          -3.3841841004893225,
          -3.6260208317947957,
          -4.278341969060907,
          -3.342692732167322,
          -4.577273448787888,
          -2.3165348356252076,
          -7,
          -3.519565500880509,
          -4.576514112051963,
          -3.9761091470843497,
          -2.9504889426054746,
          -7,
          -2.812604872328782,
          -4.278913574715962,
          -7,
          -7,
          -3.2681989577058395,
          -7,
          -7,
          -4.0127528874912155,
          -7,
          -7,
          -4.327021586507191,
          -4.58169940355087,
          -7,
          -4.581414847918365,
          -3.452593912052705,
          -3.02951905084684,
          -4.590585505352095,
          -3.4749443354653877,
          -7,
          -7,
          -2.997799697426971,
          -2.7844746437625165,
          -7,
          -3.415296164886454,
          -2.8110324767782995,
          -4.585776465241712,
          -3.073614968155805,
          -2.9575686704055344,
          -4.031105362355941,
          -7,
          -4.279473019293323,
          -7,
          -7,
          -7,
          -7,
          -3.8247872980310382,
          -7,
          -7,
          -7,
          -3.130316836606199,
          -7,
          -4.1004969087243035,
          -7,
          -7,
          -7,
          -7,
          -4.5761339452331775,
          -3.5200903281128424,
          -4.117668940562442,
          -7,
          -7,
          -3.7355646839741787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.576145470330555,
          -4.621685084798318,
          -2.660606789731412,
          -4.603101049314056,
          -7,
          -7,
          -3.81778565588553,
          -7,
          -4.5729993170909475,
          -2.9564085711958326,
          -7,
          -7,
          -4.28657995889235,
          -2.6517352463427852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.664225170809302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4235455007027262,
          -7,
          -7,
          -7,
          -4.389493897263608,
          -3.914545886349628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1669478796158117,
          -4.688909017620555,
          -7,
          -4.360867837306531,
          -2.924456409691413,
          -7,
          -7,
          -7,
          -4.656222816103602,
          -7,
          -7,
          -4.307389055653304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3670482644844935,
          -7,
          -3.7098958959608153,
          -4.6546577546495245,
          -7,
          -4.05493846198963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5230176972834117,
          -7,
          -7,
          -4.664594971445261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.655234507034295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.010808597512207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9595469793998377,
          -7,
          -4.058473475370126,
          -7,
          -7,
          -4.659583461983928,
          -3.2103686895810273,
          -4.658068662483436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657065418709505,
          -4.274727294773987,
          -7,
          -7,
          -7,
          -7,
          -4.662408367294865,
          -7,
          -4.382674293893472,
          -3.3976906898536563,
          -7,
          -7,
          -7,
          -3.2570236949030695,
          -7,
          -4.361075905224315,
          -3.709251110979869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3182319446859947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.696670854360099,
          -3.9782444462250335,
          -4.3768779392470645,
          -7,
          -7,
          -4.106921475168692,
          -7,
          -7,
          -7,
          -3.157667357356373,
          -7,
          -7,
          -7,
          -7,
          -3.8004726807059277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658383489624529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.252495566964527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.655416985727724,
          -7,
          -4.191702463559194,
          -7,
          -3.512967742271094,
          -7,
          -7,
          -3.075769668011446,
          -4.655330558009341,
          -7,
          -7,
          -4.181795965324855,
          -4.359038228379384,
          -4.185787609647107,
          -7,
          -7,
          -4.657466994367546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.880936026472807,
          -7,
          -4.6729471353465035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.630455612769106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.603865792191225,
          -2.872282676291554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0467578737546326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.656529406233498,
          -4.66305984454625,
          -7,
          -4.675732527603479,
          -7,
          -7,
          -7,
          -7,
          -4.193968239905537,
          -7,
          -3.7432047979332004,
          -7,
          -2.46013723174059,
          -7,
          -7,
          -7,
          -4.6909841851064815,
          -4.661140380936254,
          -4.662105900888295,
          -4.666527340248891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659631011607001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3768870566640485,
          -7,
          -7,
          -7,
          -2.976436594866021,
          -7,
          -7,
          -3.859404233025727,
          -7,
          -7,
          -7,
          -4.655436189551822,
          -3.664970861964803,
          -4.658259494054264,
          -7,
          -7,
          -7,
          -4.656280318241814,
          -2.5585778133847756,
          -3.9635233936946834,
          -7,
          -7,
          -7,
          -4.062055247375354,
          -4.358401272531884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.356971855954572,
          -7,
          -3.731604879710846,
          -4.676089749249794,
          -2.3218407230624645,
          -7,
          -3.8855119905526943,
          -3.823963024361914,
          -7,
          -7,
          -7,
          -7,
          -4.059402468155198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659193358577049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7207012587514545,
          -7,
          -7,
          -2.8825950517530385,
          -2.4705769939872124,
          -2.1655466215325143,
          -4.658421634986483,
          -1.217931901429386,
          -3.894048239048872,
          -2.8648599400071073,
          -1.6180546047026807,
          -2.130418300968995,
          -7,
          -3.0462297460965346,
          -2.6245095125320517,
          -7,
          -0.5850697397728666,
          -2.6954066191149084,
          -2.8649541239714815,
          -1.9139805312038227,
          -2.809075037968811,
          -1.4943973409520923,
          -2.8237136038871316,
          -2.456151407732086,
          -1.9670038464124309,
          -2.419162729792661,
          -2.320941902387436,
          -2.0447937214805347,
          -2.486467376967633,
          -0.6105273838866435,
          -1.2922979507438739,
          -2.505940940259191,
          -2.504857425609683,
          -2.684201936106831,
          -0.8317798231285242,
          -2.266600329981704,
          -2.262795212964954,
          -2.480819371951067,
          -2.1743336224075307,
          -2.3157831192937968,
          -2.981973846330603,
          -2.6013628035857117,
          -3.887906519358385,
          -7,
          -2.8886191946371276,
          -3.1406617980802882,
          -7,
          -7,
          -2.739611120396931,
          -7,
          -3.1775473891428585,
          -4.707680864506185,
          -7,
          -4.151400498035618,
          -2.961851022585581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.450900876048348,
          -4.780180448202641,
          -7,
          -7,
          -3.7155148088947807,
          -2.5745912864795972,
          -2.7125911868423653,
          -7,
          -7,
          -7,
          -3.0755570988671614,
          -7,
          -3.7240332524737676,
          -4.689850279440748,
          -3.9727349628407977,
          -7,
          -4.6943858028784335,
          -2.933629625037472,
          -3.691047471169451,
          -7,
          -3.9945107159839948,
          -4.684908168288119,
          -4.074018770866754,
          -7,
          -7,
          -3.568584306222322,
          -3.132601183145576,
          -7,
          -3.013897483044927,
          -7,
          -4.670755942215133,
          -3.7352972015395354,
          -3.7876887005649507,
          -7,
          -7,
          -7,
          -7,
          -1.793387832594586,
          -2.2418676805830136,
          -7,
          -4.186673867499745,
          -4.6578013573335815,
          -3.896838415155804,
          -3.2753272435580905,
          -3.4076646720454744,
          -7,
          -7,
          -3.384848171418199,
          -7,
          -3.001276047508862,
          -7,
          -4.660410083538616,
          -7,
          -3.2114822595695567,
          -4.668357956917772,
          -3.0646953435415623,
          -4.362199638868886,
          -3.513236630960425,
          -3.534624345371937,
          -4.1844358883083705,
          -7,
          -7,
          -7,
          -7,
          -3.7135409418501917,
          -7,
          -7,
          -3.269057396650046,
          -2.5355059169532805,
          -1.4606571321955282,
          -4.654975063241963,
          -7,
          -7,
          -7,
          -4.656500672601419,
          -7,
          -7,
          -4.07515445923309,
          -7,
          -7,
          -4.6893177403105595,
          -7,
          -3.4196427559764406,
          -4.057970231710706,
          -3.4664505419101532,
          -7,
          -7,
          -7,
          -4.362039283400967,
          -2.902193001921932,
          -7,
          -7,
          -7,
          -3.0429511919940255,
          -3.153789466263765,
          -4.359759616415701,
          -7,
          -3.3148499463011056,
          -7,
          -2.4168996802699305,
          -7,
          -3.6346970640915686,
          -4.356494336354738,
          -3.056170883335728,
          -2.7083473456160125,
          -7,
          -3.5233648829137834,
          -7,
          -7,
          -7,
          -3.1918234797380713,
          -7,
          -7,
          -3.911370707116138,
          -7,
          -7,
          -4.399699674559056,
          -4.661850530901924,
          -7,
          -7,
          -3.3393995873126787,
          -3.1262542976085608,
          -4.368203179826712,
          -4.367010957968254,
          -7,
          -7,
          -2.7011223473421095,
          -3.8309001419489586,
          -4.178861887156875,
          -2.5780052441433385,
          -2.650041256312705,
          -3.966198069990564,
          -3.284930006263787,
          -1.7819409234599481,
          -3.663546741039115,
          -7,
          -4.359825999824098,
          -7,
          -7,
          -7,
          -7,
          -2.8333201757088684,
          -7,
          -7,
          -7,
          -3.214829135925814,
          -7,
          -7,
          -4.354655766358007,
          -7,
          -7,
          -7,
          -4.055110637854146,
          -3.3976290339439115,
          -4.6727995541771605,
          -7,
          -7,
          -3.405507622803944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7028420403429068,
          -4.093237771546323,
          -3.6035773681514667,
          -4.378670385207983,
          -7,
          -7,
          -3.4974641190598588,
          -7,
          -7,
          -1.7804520698080468,
          -7,
          -7,
          -4.666789329818256,
          -3.6002829916784354,
          -4.661812685537261,
          -7,
          -7,
          -7,
          -7,
          -3.5396226573571123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5009770535891995,
          -2.279007948555511,
          -7,
          -7,
          -7,
          -4.128341100382978,
          -3.714903366650505,
          -7,
          -7,
          -7,
          -4.805881293844513,
          -7,
          -3.420218655274665,
          -4.826172021926372,
          -7,
          -4.204560839154543,
          -2.4965860992984648,
          -7,
          -7,
          -7,
          -4.802589025376433,
          -7,
          -4.802753206957748,
          -3.766561552637531,
          -4.802308404843316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.811098897643041,
          -7,
          -3.041331151474711,
          -4.500428598023598,
          -7,
          -4.104159218143249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.810050963782019,
          -3.0772212348020416,
          -7,
          -7,
          -4.331434045411302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8267284040809275,
          -7,
          -7,
          -7,
          -7,
          -4.8139677453372975,
          -7,
          -7,
          -4.80514729780041,
          -3.26743370009934,
          -7,
          -4.501613763802906,
          -7,
          -7,
          -4.801383126852731,
          -7,
          -7,
          -7,
          -4.105258050483448,
          -4.802842112739074,
          -4.027492310213354,
          -7,
          -7,
          -4.804990823476288,
          -2.867916010514917,
          -4.502863926138332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.513736844287251,
          -4.801849439205396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8050860754309666,
          -7,
          -7,
          -4.803907564918058,
          -7,
          -3.918624375272506,
          -4.5011688495213615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.977220446635385,
          -3.0030179697199246,
          -7,
          -7,
          -7,
          -3.0091182022183838,
          -7,
          -3.692704593194761,
          -3.6316196159084075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6037276129072717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354697347829673,
          -4.340582908247528,
          -4.34104523285067,
          -4.504185316870708,
          -7,
          -4.0627198336125625,
          -7,
          -7,
          -7,
          -3.1635588985580028,
          -7,
          -7,
          -7,
          -7,
          -3.5739501918571133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8041326144720715,
          -7,
          -7,
          -7,
          -7,
          -4.802020751771976,
          -3.1854638683319636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.80201390056662,
          -7,
          -4.112625107295181,
          -7,
          -3.355346451621734,
          -7,
          -7,
          -2.8583115705066877,
          -4.801952234854282,
          -7,
          -7,
          -4.804541496940634,
          -7,
          -3.9042149799590122,
          -7,
          -4.802643759466887,
          -4.803477600754047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8535096116017584,
          -7,
          -4.814593827514569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8595852430479183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7427251313046983,
          -2.5778275760908556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9921831989050203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.802116657300177,
          -7,
          -4.802807920361628,
          -4.330332589222979,
          -4.8018425852969475,
          -4.816605821725513,
          -4.810662565790494,
          -7,
          -7,
          -7,
          -3.968102524143074,
          -4.804248503594015,
          -3.9293358908906413,
          -7,
          -2.7163631071361705,
          -7,
          -7,
          -7,
          -7,
          -4.806105323204325,
          -4.806797047853278,
          -4.809970248652032,
          -4.809532780808976,
          -7,
          -7,
          -7,
          -7,
          -4.202924027637802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517156294823795,
          -7,
          -7,
          -7,
          -3.0144659335044777,
          -7,
          -7,
          -3.6333611311829688,
          -7,
          -7,
          -7,
          -4.324878943111994,
          -3.9057891366123747,
          -4.20194306340165,
          -7,
          -7,
          -7,
          -7,
          -2.4389243543919146,
          -4.205028336126359,
          -7,
          -7,
          -7,
          -4.109254476760142,
          -4.804895550625822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.32672491280211,
          -7,
          -3.2238399127102326,
          -4.81686411550272,
          -2.181047732071891,
          -4.802958346690387,
          -3.4652746699851855,
          -3.3014552187546453,
          -7,
          -7,
          -7,
          -7,
          -3.8520256716529677,
          -4.51731468566477,
          -7,
          -7,
          -7,
          -7,
          -4.804711751085301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.639864837955078,
          -7,
          -7,
          -2.7955053743286897,
          -2.645513917019889,
          -2.443595160256843,
          -4.80415988528302,
          -1.1158241306554086,
          -3.814001070318085,
          -2.968968851039916,
          -1.9892637435437004,
          -2.2212418109995706,
          -7,
          -3.1043929144826357,
          -2.8085052866303437,
          -0.5850697397728666,
          -7,
          -2.7662541717427485,
          -3.15777478116927,
          -1.8470303083432993,
          -2.839014481702124,
          -1.833317997418344,
          -2.862345583352883,
          -2.7432524631136483,
          -2.0808367528530765,
          -2.719646613671655,
          -2.419173400790585,
          -2.168099365491275,
          -2.4096843767942002,
          -0.7765305929618449,
          -1.525750993485581,
          -2.590605436252191,
          -2.5837941584262274,
          -2.800209581421612,
          -1.2671336945344718,
          -2.2005769267548483,
          -2.515521733423875,
          -2.786405888859511,
          -2.3911039883571332,
          -2.6626112046901063,
          -3.0014486357757595,
          -2.643846314201172,
          -3.9556516778452013,
          -7,
          -2.8832972577942737,
          -2.569646790072784,
          -4.835944100093848,
          -7,
          -2.714370798675753,
          -7,
          -2.945064720281746,
          -4.3627902422598535,
          -4.811092188164497,
          -3.83268306006481,
          -2.6434413311320966,
          -4.833497722133357,
          -4.809303775819338,
          -3.7560589473513573,
          -4.809721282524744,
          -7,
          -3.7067834105169974,
          -4.116336501942694,
          -7,
          -7,
          -2.8711666731384202,
          -2.4188093285612,
          -2.3952086266982553,
          -7,
          -7,
          -7,
          -3.052417893995362,
          -4.530077976203537,
          -3.5055598235459433,
          -4.525815481690079,
          -3.8721621021653023,
          -7,
          -4.353024554282955,
          -2.6896603915706647,
          -3.5519006071983443,
          -7,
          -4.051345499336539,
          -4.045042487886878,
          -3.3973736557725545,
          -7,
          -7,
          -3.2077227048870984,
          -3.1592619692400405,
          -7,
          -2.600269964081599,
          -4.808346035740395,
          -4.335865591694248,
          -3.8723893884178207,
          -3.8240370362712772,
          -7,
          -7,
          -7,
          -7,
          -1.9802756676681168,
          -2.3232310470421824,
          -7,
          -3.962856197781499,
          -4.5026728775022065,
          -3.5606371457834687,
          -3.293995271707848,
          -3.464916126290365,
          -7,
          -7,
          -3.7256415271680376,
          -7,
          -3.093504086164646,
          -4.204554060135243,
          -4.504538821884575,
          -4.512517635672204,
          -3.5354840032266903,
          -4.334138639319558,
          -3.1365356092018986,
          -4.506572674252514,
          -3.628729419665481,
          -3.497929599454888,
          -4.028211902948119,
          -4.205461507107036,
          -7,
          -7,
          -7,
          -3.698088112165083,
          -4.803648272401481,
          -7,
          -3.2938936063940814,
          -2.6412618772743763,
          -1.575071049300453,
          -4.801698628227434,
          -7,
          -7,
          -7,
          -4.501743729627995,
          -7,
          -7,
          -3.817598419632618,
          -7,
          -4.804561930962418,
          -4.826470025252119,
          -7,
          -3.3858359982701076,
          -4.027132066235224,
          -3.4905938285395868,
          -7,
          -4.806573375125132,
          -7,
          -4.330352886677328,
          -3.0126572169237327,
          -4.803436629576479,
          -7,
          -7,
          -3.1711216273491813,
          -3.297660482139467,
          -4.805867712592634,
          -7,
          -3.286456469746983,
          -7,
          -2.296868235981207,
          -4.804303028952768,
          -3.4742957493856745,
          -4.502488572402794,
          -3.079570297920983,
          -2.8894174177364684,
          -4.802287864512625,
          -3.6577949909195624,
          -7,
          -4.8029651830129545,
          -7,
          -3.243413492394054,
          -7,
          -4.801993346302042,
          -3.872337595748262,
          -7,
          -7,
          -4.135812990145166,
          -4.806614051463206,
          -7,
          -7,
          -3.3436499602697234,
          -3.2620211364576672,
          -4.811930070679321,
          -4.112048372722411,
          -7,
          -7,
          -2.685256430754045,
          -3.5155957002684515,
          -4.501401630766742,
          -2.5501006203716683,
          -2.747854787410412,
          -3.767520156176435,
          -3.426716040549097,
          -2.0158562649538196,
          -3.992868978354398,
          -4.802233085547551,
          -4.504871669262045,
          -7,
          -7,
          -7,
          -7,
          -2.9434219625521845,
          -7,
          -7,
          -7,
          -3.155009715988005,
          -7,
          -4.804214421768175,
          -7,
          -4.8024795364967785,
          -7,
          -7,
          -3.900121231991279,
          -3.402009928252042,
          -4.337339439388419,
          -7,
          -7,
          -3.6297968252555064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.502270035398499,
          -4.05266188475707,
          -3.6455663552275963,
          -3.9743142711950683,
          -4.5014084753854915,
          -7,
          -3.6689181403863924,
          -7,
          -7,
          -2.0144795598484855,
          -7,
          -7,
          -4.208058223605032,
          -3.6431762192974477,
          -4.806586934327803,
          -7,
          -7,
          -7,
          -7,
          -3.5685471963453623,
          -7,
          -7,
          -7,
          -7,
          -4.089993373706118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7364151785299615,
          -7,
          -7,
          -7,
          -7,
          -3.3789275745695604,
          -4.392309959892819,
          -4.3979400086720375,
          -7,
          -7,
          -7,
          -2.5944060266909417,
          -4.451771089158385,
          -7,
          -3.4495469620768637,
          -2.8429799822823734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5783526415103615,
          -7,
          -7,
          -7,
          -4.092808336654493,
          -4.3964260280181024,
          -7,
          -7,
          -7,
          -3.9380023999433105,
          -4.090434416175122,
          -3.5175540478934977,
          -7,
          -7,
          -3.5499136595638374,
          -4.391146906415991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5092529405903825,
          -2.924574624041236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.398426146305484,
          -4.40725490056078,
          -7,
          -7,
          -7,
          -3.0395752145302946,
          -7,
          -7,
          -4.391887391645515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.612423560664503,
          -7,
          -4.393873404149383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.398026858883687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7083981345910604,
          -7,
          -4.391957848245589,
          -7,
          -7,
          -7,
          -4.090628333058493,
          -7,
          -7,
          -7,
          -4.4242934715668065,
          -7,
          -7,
          -7,
          -3.922552466761376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.584647295942839,
          -4.0916669575956846,
          -7,
          -7,
          -7,
          -4.404953387586245,
          -7,
          -4.442777558468063,
          -2.867549978297747,
          -4.39174644414508,
          -7,
          -4.3947842790470375,
          -2.9773819838616995,
          -7,
          -7,
          -3.6288655408018107,
          -7,
          -7,
          -4.091895473508298,
          -4.3943641126271284,
          -7,
          -7,
          -2.9232051480529364,
          -4.390546539888802,
          -7,
          -7,
          -7,
          -7,
          -3.2341598394744815,
          -3.95432292689755,
          -4.432632622254583,
          -3.7013261633598793,
          -7,
          -3.883803338269372,
          -7,
          -7,
          -7,
          -3.254048322829027,
          -4.404816618075401,
          -7,
          -7,
          -7,
          -4.082833223821198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4671089777077575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.392221958741192,
          -7,
          -3.302214337325348,
          -7,
          -3.220493466955287,
          -7,
          -4.403583750366688,
          -2.3397805350094547,
          -3.6137361412618714,
          -3.167004404880978,
          -3.795167189715199,
          -3.3983740861513563,
          -3.001975881244265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.411485020124997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0428707165856252,
          -7,
          -3.4983794839511457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0234829244540182,
          -3.3942239667723677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.098158983460533,
          -3.924606606934837,
          -3.596659918493907,
          -2.840972784367111,
          -7,
          -4.39137623916965,
          -7,
          -4.097899077321453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0978941621746445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.093193971108387,
          -4.4061312402136235,
          -7,
          -2.9507055347738613,
          -3.7149999674120426,
          -7,
          -7,
          -7,
          -3.575303333422399,
          -4.3979400086720375,
          -2.638608449924449,
          -7,
          -2.5773667285287103,
          -7,
          -7,
          -7,
          -2.7294857138983044,
          -7,
          -3.9272163305912646,
          -3.9351880613401717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.391517306849448,
          -7,
          -7,
          -3.3183202379468297,
          -3.9246582666341787,
          -7,
          -7,
          -2.354912894977539,
          -7,
          -7,
          -3.302027726021775,
          -7,
          -7,
          -4.396652590685603,
          -7,
          -3.205255127948347,
          -3.6190933306267428,
          -4.407832623263632,
          -4.395186557446505,
          -7,
          -4.393803257655081,
          -2.5486213518850827,
          -4.4052438798633045,
          -7,
          -7,
          -7,
          -3.930949031167523,
          -3.922396715715211,
          -7,
          -7,
          -4.0948552900836805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6780238421039844,
          -4.128334636753716,
          -2.6734979339537297,
          -7,
          -7,
          -3.2553602325012214,
          -3.803303446549009,
          -7,
          -7,
          -4.392732117381129,
          -4.4033436191304505,
          -3.733935179300555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9298785236567833,
          -7,
          -3.0289126983633317,
          -7,
          -7,
          -1.6734325831718475,
          -2.3016148599756447,
          -3.9339931638312424,
          -3.4431934252142176,
          -3.1903316981702914,
          -2.7134575995695465,
          -2.4831711067291815,
          -2.859959044875594,
          -1.5462364444869212,
          -4.391146906415991,
          -1.9857140145065368,
          -2.6472281288748,
          -2.6954066191149084,
          -2.7662541717427485,
          -7,
          -2.964119146768021,
          -2.9244397100550508,
          -1.019155129159485,
          -2.5071172538023325,
          -2.337614386939072,
          -3.4689914454459165,
          -2.924305280564163,
          -2.5974072058672815,
          -1.8597919065431519,
          -2.687878300113581,
          -4.286422784794196,
          -2.3983412166786438,
          -2.4209387490986507,
          -4.413199143665641,
          -1.677122166906849,
          -2.0107939376664237,
          -3.0169289290369714,
          -3.3637999454791094,
          -2.6494123095453936,
          -2.602902048623008,
          -3.276910698188711,
          -3.4376895963737515,
          -2.560074836702499,
          -2.5728626696840635,
          -2.9334094084470976,
          -7,
          -2.674345246591718,
          -2.5970974632045323,
          -2.6032029107631343,
          -3.9222755373836495,
          -3.1364644505475163,
          -4.404097870640489,
          -2.2127957562079024,
          -4.483687123306974,
          -4.415173745335861,
          -2.4147311988249274,
          -2.6113463608656016,
          -3.565626484523529,
          -7,
          -3.1504640348791213,
          -7,
          -7,
          -7,
          -2.716607331253602,
          -3.7260911906333236,
          -7,
          -2.8133770987925284,
          -2.112532898581015,
          -3.288585800358648,
          -7,
          -4.419972261273999,
          -7,
          -1.7994092050146753,
          -4.1623403316284255,
          -4.349898891403912,
          -2.2335377888069625,
          -4.0767496406240005,
          -7,
          -3.256612526235748,
          -3.2821183785735992,
          -3.1444536790632514,
          -3.7143800612122204,
          -3.7606636911394395,
          -2.841562802829042,
          -2.485011214578573,
          -4.432391984779924,
          -7,
          -2.548146339077636,
          -1.5520219332595657,
          -7,
          -3.0796075759467434,
          -7,
          -3.8177801500889426,
          -3.4986168263565274,
          -3.36337377330266,
          -3.792444221943763,
          -7,
          -7,
          -3.4945719842301988,
          -2.556423121371285,
          -1.9223833109680446,
          -7,
          -2.944176243511598,
          -3.6974734557764086,
          -2.4753609954591043,
          -1.893256289727396,
          -2.7058466137393826,
          -7,
          -7,
          -2.094307274845359,
          -3.492708019171449,
          -1.5343616725084905,
          -3.5587428465666395,
          -3.4980002326031903,
          -2.431347181387955,
          -1.948264737345508,
          -2.681492492506635,
          -2.4170119131533196,
          -3.201840752085797,
          -3.0567316531360103,
          -2.3775043562510274,
          -3.256906648066348,
          -2.8252894289691803,
          -3.6995949385452396,
          -3.917558020825436,
          -4.3915878235099495,
          -1.8837400773686257,
          -3.69729910333844,
          -4.0906988268267614,
          -1.820592172832555,
          -1.3603581917080152,
          -1.791597655058112,
          -7,
          -2.163118526130661,
          -7,
          -2.6381845601587646,
          -7,
          -7,
          -4.091614206074446,
          -2.9992755720056676,
          -3.3942590074761068,
          -3.194097885578952,
          -2.1796294144440775,
          -7,
          -2.2382851204611374,
          -3.1961070683879766,
          -2.5543978789552284,
          -7,
          -2.9257245269360626,
          -3.791164125033335,
          -2.6884369360445195,
          -1.9900008485916754,
          -3.617541997119941,
          -4.3926442017384275,
          -7,
          -2.916268114365702,
          -1.9772489428837123,
          -3.1710550105433617,
          -3.2538915993869204,
          -2.088675910869215,
          -4.397261980280511,
          -1.5575024593102262,
          -4.097014231178033,
          -2.3540432933463484,
          -3.6177863946963984,
          -3.6203963453512844,
          -2.9018302967482485,
          -7,
          -2.352479370126955,
          -3.038844688341721,
          -3.9174704985096076,
          -3.7945577512547617,
          -2.7348664749479745,
          -7,
          -7,
          -2.287183736966603,
          -3.4466579602153113,
          -3.3202155460556875,
          -2.3679620131222126,
          -2.759015054316643,
          -2.3689252622290744,
          -3.226943424688905,
          -2.1686218349748922,
          -2.121441287898854,
          -2.6089770751029318,
          -2.2835543583265596,
          -3.913884463632048,
          -7,
          -2.3697967307610486,
          -2.4262183798325783,
          -7,
          -2.794305433965554,
          -1.5244718860824604,
          -2.7959308586000873,
          -1.5337102405281544,
          -2.2611721081987155,
          -1.9790193923221266,
          -3.5474758163938844,
          -2.767259442157535,
          -7,
          -4.39137623916965,
          -4.09572712255598,
          -7,
          -2.454973164446654,
          -4.3915701954182165,
          -4.39292546917228,
          -7,
          -1.8454921471858483,
          -7,
          -2.828398593415644,
          -4.091684540012315,
          -3.438893790829892,
          -2.87862623087069,
          -3.439262499150636,
          -3.617210094557434,
          -2.3226099351757314,
          -2.3825952979193326,
          -3.554714079964416,
          -7,
          -2.799185416577525,
          -4.0897108712889345,
          -7,
          -7,
          -3.4920091503206274,
          -7,
          -4.094488597899382,
          -3.140013939525097,
          -2.3268120088570554,
          -3.532467726469376,
          -3.5480382602549603,
          -7,
          -2.905812228431408,
          -7,
          -4.3907761898062825,
          -2.4060360075402034,
          -7,
          -7,
          -3.0899555492168083,
          -2.317613388741308,
          -3.7047680460278367,
          -7,
          -7,
          -7,
          -7,
          -2.3121930335260323,
          -4.390917452497312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.949457775152798,
          -7,
          -7,
          -7,
          -4.355987591676388,
          -3.661699129651687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.470443160662778,
          -7,
          -7,
          -7,
          -3.1949488814069302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040103683227775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40256227437282,
          -7,
          -3.0486683441400135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.302590648306554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2115358218543153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.546308179871572,
          -7,
          -3.977266212427293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2884728005997825,
          -7,
          -7,
          -7,
          -4.014167583607013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.479100018108288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040048241547462,
          -3.891593204348965,
          -7,
          -7,
          -7,
          -3.563059639055887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188397198393092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.369123049528199,
          -7,
          -7,
          -4.2868829198267875,
          -7,
          -4.0939292328222185,
          -7,
          -7,
          -7,
          -4.325659309801641,
          -7,
          -7,
          -7,
          -7,
          -4.484627216681783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.159133885693975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5666394818031004,
          -7,
          -4.290969008948517,
          -3.8618130982567225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9929288899577164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0389974726186795,
          -3.3900814326936954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.753077236473406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.166218603352615,
          -7,
          -7,
          -7,
          -3.0755035123922543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4555626483622643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2796669440484556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.563699534230925,
          -3.8159096508867747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.282395504742525,
          -7,
          -4.13951702345246,
          -7,
          -2.6960118329538734,
          -4.279347492410732,
          -7,
          -3.6883470019945825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6980860398874245,
          -2.1262302051431767,
          -2.6187765029283483,
          -7,
          -3.2418815732989663,
          -7,
          -2.7182432681376736,
          -1.6685292718594495,
          -2.626664467749713,
          -7,
          -2.350173442137207,
          -1.524095582761675,
          -2.8649541239714815,
          -3.15777478116927,
          -2.964119146768021,
          -7,
          -2.1613475571506147,
          -2.6018950380505843,
          -3.07391682215682,
          -2.6304868323618735,
          -2.1568270934567235,
          -1.0811420100434221,
          -3.512183922360945,
          -1.9306385248238294,
          -2.516880120476239,
          -2.21079991039675,
          -2.9836907081706965,
          -2.283760884003622,
          -3.5250231998087056,
          -2.3818526137441314,
          -1.06325296821847,
          -2.907564903106715,
          -2.330328187240235,
          -2.3648375122504968,
          -2.6941838605722133,
          -2.341422311057268,
          -2.1637634223580404,
          -2.5378937646885324,
          -1.9378727145318462,
          -4.142154733486203,
          -7,
          -2.894986523001123,
          -4.110858956731867,
          -7,
          -7,
          -2.8110793523514945,
          -7,
          -3.552278757969826,
          -7,
          -7,
          -3.7830598861333127,
          -3.334118518033627,
          -7,
          -7,
          -4.379305517750582,
          -7,
          -7,
          -3.7343396976581213,
          -2.6366421750341718,
          -7,
          -7,
          -4.313919922812262,
          -2.9844395836343924,
          -1.7309884791846206,
          -7,
          -7,
          -7,
          -3.628074956706411,
          -7,
          -4.247658268207367,
          -4.053424204069344,
          -4.477381753267053,
          -7,
          -4.364250731245976,
          -3.855958073963892,
          -4.2730707536224655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292802288802934,
          -3.294363860431569,
          -7,
          -3.374191200992188,
          -7,
          -7,
          -4.053059226488266,
          -3.983325529161058,
          -7,
          -7,
          -7,
          -7,
          -2.541220482974948,
          -3.3065016159437794,
          -7,
          -7,
          -4.281873856870123,
          -4.020796188104522,
          -3.9758605296515843,
          -7,
          -7,
          -7,
          -4.090575455222202,
          -4.281169773409736,
          -3.4846485588079306,
          -7,
          -7,
          -7,
          -4.082156803810918,
          -7,
          -7,
          -3.5955623530058514,
          -3.683969609180228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.103478733439318,
          -7,
          -7,
          -3.124839199383788,
          -3.3966665291438467,
          -2.322088535059173,
          -7,
          -4.019614715691417,
          -7,
          -3.99947853367931,
          -7,
          -7,
          -7,
          -2.437173810435618,
          -7,
          -7,
          -7,
          -7,
          -4.373445342297979,
          -7,
          -3.613122686057697,
          -7,
          -7,
          -7,
          -7,
          -2.600842261159698,
          -4.280942405998698,
          -7,
          -7,
          -3.202040480346924,
          -3.796227314029439,
          -3.51061202578917,
          -4.286927784959255,
          -3.4120123012470613,
          -7,
          -3.0424317425409426,
          -7,
          -4.023478810083077,
          -7,
          -3.807444822547311,
          -3.653051634172873,
          -7,
          -3.7733658384643807,
          -7,
          -7,
          -7,
          -4.309140245453068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7635777244666455,
          -4.007534417897258,
          -4.305867056602291,
          -7,
          -7,
          -3.7255616300072774,
          -3.119441480806942,
          -4.27763213161403,
          -3.708548365130561,
          -4.1157990532759525,
          -3.9982811398083022,
          -3.7429920657525093,
          -3.178378301427545,
          -4.085807712290026,
          -7,
          -4.289142835932333,
          -7,
          -7,
          -7,
          -7,
          -3.4287825114969546,
          -7,
          -7,
          -7,
          -3.3109188957449325,
          -7,
          -7,
          -7,
          -4.277746700027364,
          -7,
          -7,
          -7,
          -4.325536187192074,
          -4.316704039700037,
          -7,
          -7,
          -4.289678120899732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.366310866766735,
          -3.5610814979153176,
          -7,
          -7,
          -7,
          -4.017930232863559,
          -7,
          -7,
          -3.1766468005217803,
          -7,
          -7,
          -7,
          -3.5537819221196365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.567731962548069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4883689390699706,
          -7,
          -7,
          -7,
          -3.97283514522388,
          -3.4122161068666275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0432267304289233,
          -7,
          -7,
          -4.3989290729854345,
          -2.9144218415753604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6664315738532856,
          -7,
          -7,
          -7,
          -7,
          -4.090134556033146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1981829145283434,
          -7,
          -7,
          -3.9127886970523704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1424192643611137,
          -4.3867485908293835,
          -7,
          -7,
          -7,
          -4.38635625808797,
          -4.386588133907789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4275485247671114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.910197369966001,
          -7,
          -3.4852776801653578,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.392820015230385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9707963815537974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.118330874057302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.394889257167419,
          -7,
          -7,
          -4.090786927949267,
          -7,
          -3.4052975630428595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.333328711983892,
          -7,
          -7,
          -7,
          -3.4975156883526086,
          -7,
          -4.09824558428674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3178936555380973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.15956719323362,
          -7,
          -7,
          -7,
          -7,
          -3.0337682969424686,
          -7,
          -7,
          -4.3926442017384275,
          -2.919601023784111,
          -4.399691023705375,
          -7,
          -7,
          -7,
          -4.079253622430078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0631764626789213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4112660665121393,
          -7,
          -3.2647345104508063,
          -7,
          -7,
          -2.7890101881385543,
          -7,
          -3.6144753660903954,
          -3.9149246482051483,
          -3.351743615110992,
          -7,
          -4.400814192267559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.510182947257836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.115627150990863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.394031192348731,
          -7,
          -3.835087847232495,
          -3.0440475554523125,
          -7,
          -7,
          -7,
          -4.092703104165027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.587336734507256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.387211800313731,
          -7,
          -7,
          -7,
          -7,
          -4.122854558785159,
          -7,
          -7,
          -7,
          -7,
          -3.7165542140372105,
          -7,
          -3.420510834177029,
          -7,
          -2.3736380105588673,
          -7,
          -7,
          -7,
          -4.450787792072898,
          -4.39750549689802,
          -7,
          -4.407339907995509,
          -4.406233511374323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.126780577012009,
          -7,
          -7,
          -7,
          -3.0769302271770527,
          -7,
          -7,
          -4.474201690191393,
          -7,
          -7,
          -7,
          -7,
          -3.228246326255246,
          -4.392204356370863,
          -7,
          -7,
          -7,
          -4.388545220095957,
          -1.9435533693981495,
          -7,
          -7,
          -7,
          -7,
          -4.403051852588134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3870515144724935,
          -3.741099049455883,
          -7,
          -2.687264596421026,
          -4.389396465218475,
          -3.8001325865508604,
          -3.658040764690793,
          -7,
          -7,
          -7,
          -7,
          -4.398200507219428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.94558346265713,
          -7,
          -7,
          -2.8712876105538077,
          -2.533213285085639,
          -1.541695519187481,
          -7,
          -1.674344029296868,
          -3.1384024289877326,
          -1.7100584417711244,
          -1.2261354849433992,
          -2.607856961681029,
          -7,
          -2.7774768217540804,
          -2.2986184244854564,
          -1.9139805312038227,
          -1.8470303083432993,
          -2.9244397100550508,
          -2.1613475571506147,
          -7,
          -2.7231334787020036,
          -2.7444340690293507,
          -2.515988671209838,
          -2.595985843615769,
          -1.9954555630977564,
          -2.8345727312834774,
          -2.4309164433481816,
          -2.7904671640422904,
          -2.3902854006591365,
          -1.6488737217779532,
          -2.109662900499272,
          -3.709066337709506,
          -2.5264445396360236,
          -2.43995535374684,
          -1.9497756399458581,
          -1.891836055588394,
          -2.40444240490541,
          -2.5396095858813386,
          -2.2796987702089755,
          -2.2250979492320373,
          -2.534026106056135,
          -2.091780526547107,
          -3.567130971321703,
          -7,
          -3.1641757589822834,
          -2.8885932766328066,
          -3.8680563618230415,
          -4.394276526767821,
          -2.683306160151271,
          -7,
          -3.0542225383825152,
          -4.479416937274596,
          -7,
          -3.407876285333665,
          -3.2162921490146195,
          -4.4645044509010345,
          -4.405653656099307,
          -3.8667450273840727,
          -4.4067104586097905,
          -7,
          -7,
          -3.233580959426479,
          -4.42030238517869,
          -7,
          -3.0774890305065017,
          -2.5102819608455094,
          -2.623890979325472,
          -7,
          -7,
          -7,
          -3.6083923016340576,
          -3.613645537405791,
          -3.0557604646877348,
          -4.4488144936695235,
          -3.772015930126536,
          -7,
          -3.757593390524166,
          -3.931915317081246,
          -3.052886235256382,
          -7,
          -4.455240877870955,
          -3.7410727723733213,
          -3.8065756350216424,
          -3.3132505321629835,
          -7,
          -3.6623462708433094,
          -2.969272509849161,
          -7,
          -3.062413394164839,
          -7,
          -4.414990051283522,
          -4.448520816457295,
          -3.6908160579809155,
          -7,
          -7,
          -7,
          -7,
          -1.941180036600083,
          -2.429687696095396,
          -7,
          -4.402433346219312,
          -4.391358602487403,
          -3.8205954965444904,
          -3.4881531577034988,
          -3.254806940132614,
          -7,
          -7,
          -3.6336848274923423,
          -7,
          -2.772635995349761,
          -4.097847077423337,
          -4.396164462603818,
          -4.416357541374134,
          -2.3715259398882167,
          -3.9334704151634567,
          -3.9511431601075526,
          -4.4013660715976775,
          -3.7925317619013077,
          -3.2022959527507755,
          -4.398339375914612,
          -4.401228167498113,
          -7,
          -4.389502753638463,
          -7,
          -4.188478495913935,
          -4.391182196261369,
          -7,
          -3.05588235138324,
          -1.8772018661195997,
          -1.6892501029585778,
          -4.3861242584003115,
          -4.421817731364133,
          -7,
          -4.405943680512197,
          -7,
          -7,
          -7,
          -3.523339938201984,
          -7,
          -7,
          -7,
          -7,
          -2.8294084996129136,
          -4.39557099712082,
          -3.9379690029514527,
          -7,
          -4.3987036951130785,
          -7,
          -3.6227492192709927,
          -2.360489612854706,
          -7,
          -4.38737202701981,
          -7,
          -3.0632082200712114,
          -3.161695916932489,
          -7,
          -7,
          -3.2539737133906796,
          -7,
          -2.0813564630850223,
          -7,
          -3.82272367309186,
          -7,
          -3.5482138746859433,
          -3.1687250976725663,
          -7,
          -3.2612628687924934,
          -7,
          -7,
          -4.391499675895142,
          -3.4581844355702627,
          -7,
          -7,
          -3.334082400566609,
          -7,
          -7,
          -4.467622902417825,
          -7,
          -7,
          -7,
          -3.468657430019694,
          -3.0421664366887087,
          -4.4122757019358305,
          -7,
          -7,
          -7,
          -2.851166586670228,
          -3.7254869263323838,
          -7,
          -3.05148807933632,
          -2.8424922264125208,
          -3.2584320234141178,
          -3.4789860278193347,
          -3.188114548770146,
          -3.5205854165951167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2263259684529233,
          -7,
          -7,
          -7,
          -3.220449201670816,
          -7,
          -4.3926442017384275,
          -7,
          -7,
          -7,
          -7,
          -3.9131071077494677,
          -3.4711612727092858,
          -3.7195632907571934,
          -7,
          -7,
          -4.096371153688629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.458350742139663,
          -3.2057773538923087,
          -7,
          -7,
          -7,
          -3.575187844927661,
          -7,
          -7,
          -3.202417674636456,
          -7,
          -7,
          -4.407815642384198,
          -3.226309849143952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1627372975844534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.651268319816693,
          -2.5425202730917387,
          -7,
          -7,
          -7,
          -7,
          -3.785756799962643,
          -7,
          -4.654417214913714,
          -7,
          -7,
          -7,
          -3.0663342093933186,
          -7,
          -7,
          -3.481461738950127,
          -2.86589928955951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.429736134926033,
          -7,
          -7,
          -7,
          -4.351119609737672,
          -4.352529814796726,
          -7,
          -7,
          -7,
          -4.664058764701992,
          -3.951813330302852,
          -3.8668319172660026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.548417768495678,
          -2.931168431656111,
          -7,
          -7,
          -4.660523976930213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.651471852199043,
          -7,
          -7,
          -3.595921175236594,
          -7,
          -7,
          -4.65107439073182,
          -7,
          -4.668078260148475,
          -7,
          -7,
          -7,
          -4.78597723416667,
          -7,
          -4.175009000975738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.353416091053356,
          -7,
          -7,
          -4.6522366684127165,
          -7,
          -7,
          -3.173152635632317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9519200735202937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.655416985727724,
          -7,
          -7,
          -7,
          -7,
          -4.3545501955078825,
          -7,
          -7,
          -7,
          -7,
          -3.203957091681244,
          -4.651539675135214,
          -4.652256013378507,
          -7,
          -7,
          -4.357267654644208,
          -7,
          -7,
          -3.224502594352818,
          -4.650996794844283,
          -7,
          -7,
          -2.535576378609283,
          -7,
          -4.180871051650544,
          -3.960518342780708,
          -7,
          -7,
          -3.952618109269662,
          -4.65243974758942,
          -7,
          -7,
          -2.566433428221703,
          -4.650336669434548,
          -7,
          -7,
          -4.650433809651895,
          -7,
          -3.6135158906856466,
          -4.071219018399975,
          -4.372930404888793,
          -4.35475171759385,
          -7,
          -3.7509795462660587,
          -7,
          -7,
          -7,
          -3.4964591381210437,
          -7,
          -7,
          -7,
          -7,
          -3.429005904106777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2845202514129914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.363442741279142,
          -7,
          -3.509362160076662,
          -7,
          -7,
          -2.2137294343074028,
          -4.049053192149191,
          -3.375355528567644,
          -4.353030975765281,
          -3.5084527607498646,
          -3.7015775783778904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5895679839722483,
          -7,
          -3.5771182378818316,
          -7,
          -7,
          -7,
          -7,
          -4.652816642878804,
          -7,
          -7,
          -7,
          -3.0545009496306323,
          -3.6981392252174574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.655128826420096,
          -4.656558137964639,
          -3.5999649037760753,
          -2.9001912510847543,
          -7,
          -7,
          -7,
          -4.353935455571521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8615739051907794,
          -7,
          -7,
          -7,
          -7,
          -4.6512780139981444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.069649600159877,
          -3.8182353223974452,
          -7,
          -7,
          -7,
          -3.3243011664190374,
          -4.353367970314268,
          -3.0803272587424058,
          -7,
          -2.6639134136854725,
          -7,
          -7,
          -7,
          -3.841949095456571,
          -4.657036720520181,
          -4.658011396657113,
          -4.6624745037503095,
          -4.66185999172781,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3949030681890893,
          -4.6565868677950935,
          -7,
          -7,
          -2.8417901249167743,
          -7,
          -7,
          -3.5245605472800365,
          -4.650637733412055,
          -7,
          -7,
          -4.350228629754866,
          -3.229217148268312,
          -4.0520106121467645,
          -7,
          -4.652893914321198,
          -7,
          -4.050012210075463,
          -2.3306564089493405,
          -7,
          -7,
          -7,
          -7,
          -4.359047728111032,
          -4.655330558009341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.653887558070977,
          -7,
          -3.5239008479609306,
          -3.9730816496013674,
          -2.354808681214491,
          -7,
          -4.358629543218151,
          -3.438214888275288,
          -7,
          -7,
          -7,
          -7,
          -4.657419207208257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.655071171607829,
          -7,
          -7,
          -7,
          -4.659497859540902,
          -7,
          -3.2082003443615728,
          -7,
          -7,
          -1.8357841033689075,
          -2.0153615186155944,
          -3.7997884000675555,
          -3.5401176191224257,
          -3.2846867533932405,
          -2.541973161871005,
          -2.915584489837296,
          -3.077943992402701,
          -1.7386774334906772,
          -4.650666857562813,
          -2.356787290504102,
          -2.751422464410734,
          -2.809075037968811,
          -2.839014481702124,
          -1.019155129159485,
          -2.6018950380505843,
          -2.7231334787020036,
          -7,
          -2.6925344800721915,
          -2.5659504281203986,
          -3.2575710014738584,
          -2.2123857790043826,
          -2.7745589123632373,
          -2.065363643234313,
          -2.809954243007838,
          -3.426673888021373,
          -2.9414612373659264,
          -2.8736800724992526,
          -4.66293717714878,
          -1.96691887785885,
          -2.321732417461062,
          -3.024222455723751,
          -2.976871764227438,
          -2.9046132121511077,
          -2.9640109253001876,
          -3.0577787686700186,
          -3.214360683794701,
          -2.029688248483908,
          -2.5862078866547544,
          -3.386863629502398,
          -4.6596215020988625,
          -2.858483962811246,
          -2.1997470131327894,
          -2.86485122194783,
          -7,
          -3.445105801862532,
          -7,
          -3.246345363478317,
          -4.402948829344405,
          -7,
          -2.7151131180137207,
          -2.8725223278596834,
          -3.740783619483002,
          -7,
          -3.493370904515132,
          -7,
          -7,
          -7,
          -2.6046638058499907,
          -3.4933743907101054,
          -7,
          -2.559639953262714,
          -2.195629541422008,
          -2.416572585148292,
          -7,
          -7,
          -4.652101229519464,
          -2.070410425073812,
          -7,
          -2.9293694776072994,
          -2.3663372223585455,
          -3.5432762866884153,
          -4.651471852199043,
          -2.3816600539542963,
          -3.180532059343106,
          -3.1784013415337555,
          -4.362048717714715,
          -3.78652960566293,
          -4.379975935132622,
          -2.292733285312222,
          -4.372792371489067,
          -7,
          -2.517474255510426,
          -1.8786372226067107,
          -7,
          -2.4202208779093466,
          -4.660191704349621,
          -3.8215322435577312,
          -2.8094519693064504,
          -2.918078016916882,
          -3.953527748437723,
          -7,
          -7,
          -3.809184414431453,
          -2.8200468375055814,
          -2.1964995291548655,
          -7,
          -3.3169324704744563,
          -3.5072871015801907,
          -2.58609420577366,
          -2.138534043739593,
          -3.114458473109267,
          -4.65275868027325,
          -7,
          -2.379986070579087,
          -3.808153075999404,
          -1.5537955387832671,
          -3.75458720843136,
          -3.6147151038234466,
          -2.547802879191111,
          -1.944828705873858,
          -3.083841956595991,
          -2.7135643854323326,
          -3.0902771226811176,
          -3.5413199722505695,
          -2.4065217679829454,
          -3.481136746915929,
          -3.403492287455705,
          -4.177680759848778,
          -4.175492485186052,
          -7,
          -2.255024314814158,
          -7,
          -4.04888829904528,
          -2.037032065055308,
          -1.2598672111551346,
          -1.926156913205765,
          -7,
          -2.668739918089131,
          -7,
          -2.9283010012108646,
          -7,
          -7,
          -4.17435059747938,
          -3.210401556278205,
          -3.953508414237079,
          -3.4504511930355624,
          -2.654185541400976,
          -4.650928887067893,
          -2.4060103914302835,
          -3.5417999830005087,
          -3.0127997435208993,
          -7,
          -3.295547978155418,
          -4.174708970233648,
          -2.851621383349694,
          -2.0334103511294153,
          -3.6530966864691754,
          -7,
          -7,
          -3.220405695184753,
          -2.148243082243774,
          -3.1245905227942092,
          -3.701424059791345,
          -2.3413988733390205,
          -4.352992445447028,
          -1.5790475932029566,
          -3.7000977046130537,
          -2.6210371101014225,
          -3.6118198286171186,
          -3.6546769920742537,
          -3.120837060254737,
          -7,
          -2.5632612896096174,
          -3.178622080587683,
          -4.652604075494435,
          -3.6993462298794717,
          -2.974361284464857,
          -7,
          -7,
          -2.4787918806639824,
          -3.8779661253552415,
          -4.178276526334763,
          -2.615739688619155,
          -3.242302466202193,
          -2.9329992492179184,
          -3.5781232505202647,
          -2.320744609167914,
          -2.527372082827612,
          -2.9082968496894392,
          -2.7228796657889593,
          -4.650628024927767,
          -4.650647441679319,
          -2.521193450160244,
          -2.360899198300868,
          -4.350819592367575,
          -2.9932016415641796,
          -1.5817755344763664,
          -2.8210385989122053,
          -2.0011505154097025,
          -2.393819419861694,
          -2.3414563143680662,
          -4.174408732073123,
          -3.076276255404218,
          -7,
          -4.349743633744951,
          -4.176621739306073,
          -4.3570959250957335,
          -2.4714393298509454,
          -7,
          -4.1744862327616,
          -7,
          -2.1105220719631896,
          -7,
          -3.1914317403283383,
          -7,
          -4.049799277918987,
          -3.2924390761642086,
          -3.7488951184201675,
          -3.807873132003332,
          -2.6753060861382254,
          -2.7588278164163147,
          -4.178410941217267,
          -7,
          -3.124887640134107,
          -4.04834467854007,
          -7,
          -7,
          -3.87473300575909,
          -7,
          -4.653096686469175,
          -3.06758446824051,
          -2.2395294860605826,
          -3.976744196285903,
          -4.049760551762476,
          -4.650414383346564,
          -3.035578650851512,
          -4.650996794844283,
          -4.650462947480702,
          -2.583081929290774,
          -7,
          -7,
          -3.5163653623524644,
          -2.242676758047947,
          -3.9586689802800628,
          -7,
          -7,
          -7,
          -7,
          -2.2393999584530446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9016320265580866,
          -7,
          -7,
          -7,
          -4.134081437462512,
          -4.142107771731307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2889692223054343,
          -7,
          -7,
          -7,
          -3.3271187286686343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058407042640009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.892817824309576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8639173769578603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.416640507338281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.629073043426928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3233758719338615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8079069279242788,
          -3.8669761488747474,
          -7,
          -7,
          -7,
          -3.806641166905534,
          -7,
          -4.0216440360874435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9714382148239724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.155761012877924,
          -4.084325995016827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6050175766737853,
          -7,
          -7,
          -7,
          -7,
          -4.030194785356751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0214993986774745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.050341081834084,
          -7,
          -3.6214878645806303,
          -7,
          -7,
          -3.575026109423261,
          -7,
          -7,
          -7,
          -4.007619774517403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.250541978010273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.461085645778676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.027281637748496,
          -3.1241953803612605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0794978037097187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9904276584852636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.582404298019028,
          -7,
          -7,
          -7,
          -2.968164434068149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.785756799962643,
          -7,
          -7,
          -7,
          -3.166943531213748,
          -7,
          -7,
          -4.182728418124268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1655636472734026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.789909598573103,
          -4.0796153235269434,
          -3.0256797214930673,
          -7,
          -3.5514499979728753,
          -4.172272025329505,
          -4.024116072826771,
          -7,
          -7,
          -7,
          -4.018991594705612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008685319195168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.075656433597934,
          -7,
          -7,
          -3.1632210267155783,
          -2.860371284566635,
          -3.4068806700491248,
          -4.005223424858136,
          -1.7401646189215598,
          -4.064420548433594,
          -2.087028677751426,
          -2.319169559153719,
          -2.3920370982602477,
          -7,
          -2.4784157250726615,
          -3.038814169209334,
          -1.4943973409520923,
          -1.833317997418344,
          -2.5071172538023325,
          -3.07391682215682,
          -2.7444340690293507,
          -2.6925344800721915,
          -7,
          -2.991634283960961,
          -2.8278661207020015,
          -2.7423595527399964,
          -2.285246821429292,
          -2.566970612326016,
          -2.396486524640049,
          -3.120921081780979,
          -1.6727723848149636,
          -1.728138849772079,
          -3.565217949843888,
          -2.8334658601706924,
          -2.0747389401070246,
          -1.4864562142914062,
          -2.744814345108343,
          -1.7289777684531455,
          -1.5899061015528484,
          -2.6480508524599364,
          -2.8850469465668223,
          -2.7859865304210274,
          -2.4795573161627673,
          -4.271051261492347,
          -7,
          -3.62875107815486,
          -3.994800899294604,
          -4.174873528887417,
          -7,
          -2.6436836227728864,
          -7,
          -3.647686087933524,
          -7,
          -7,
          -3.7255441224863532,
          -2.649858871767756,
          -7,
          -7,
          -3.695043658821294,
          -7,
          -7,
          -3.4018828223212823,
          -3.69637386502081,
          -7,
          -7,
          -4.205799621570576,
          -3.194568182694128,
          -3.3729943935509152,
          -7,
          -7,
          -7,
          -3.4010902195951336,
          -7,
          -4.1418527478442595,
          -3.654337005386863,
          -3.843710218725583,
          -7,
          -4.147769046260147,
          -3.3384122207586615,
          -4.453731029504294,
          -7,
          -7,
          -4.113441953965322,
          -4.377979759421654,
          -7,
          -7,
          -3.852000471450028,
          -3.4875342941571197,
          -7,
          -4.2430876795053765,
          -7,
          -3.7570542290869438,
          -3.4317496322269334,
          -4.296511624661299,
          -7,
          -7,
          -7,
          -7,
          -1.5027776034972864,
          -2.5757310526056134,
          -7,
          -7,
          -3.5251312252008757,
          -7,
          -3.683384791579453,
          -3.1809855807867304,
          -7,
          -7,
          -3.41355121317555,
          -7,
          -3.2384475771411187,
          -4.020692678682027,
          -4.014100321519621,
          -7,
          -3.479373734640201,
          -3.747139803102036,
          -2.0039237178426834,
          -4.026533264523296,
          -3.311245120878208,
          -4.098643725817057,
          -7,
          -3.5489214662854756,
          -7,
          -7,
          -7,
          -3.4338231510303165,
          -7,
          -7,
          -2.6109961743112087,
          -2.9933382398649977,
          -1.395068880768949,
          -3.512195050270289,
          -4.073535065058784,
          -7,
          -7,
          -3.9965116721541785,
          -7,
          -7,
          -4.0842544591112295,
          -7,
          -7,
          -4.129657673312688,
          -7,
          -2.9858753573083936,
          -2.86544240791904,
          -3.154918245723459,
          -7,
          -7,
          -7,
          -7,
          -2.9992287931945603,
          -4.000650953629595,
          -7,
          -7,
          -2.6012037192276076,
          -3.0880269900422115,
          -7,
          -7,
          -2.1543432221004943,
          -7,
          -3.159443530693639,
          -7,
          -3.0796876276113365,
          -7,
          -2.7050507870521128,
          -2.760495443437143,
          -7,
          -3.3207395846758714,
          -7,
          -7,
          -7,
          -2.6709412807357755,
          -7,
          -7,
          -4.130719636562953,
          -7,
          -7,
          -7,
          -4.020444155366574,
          -7,
          -7,
          -3.695102086708091,
          -3.2467139512350784,
          -3.7508553832258906,
          -7,
          -7,
          -7,
          -2.381317407516167,
          -3.234155582415821,
          -3.9943171526696366,
          -2.4848382845757517,
          -3.6331509149824406,
          -3.4328090050331683,
          -3.6671726724788685,
          -2.240227565671911,
          -2.9530486891810788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.467467158083198,
          -7,
          -7,
          -7,
          -2.8049678348367264,
          -7,
          -7,
          -3.089154157054828,
          -7,
          -7,
          -7,
          -3.698709349442587,
          -3.3828092224315145,
          -3.589204670642375,
          -7,
          -7,
          -3.4148480526441123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.999869692108268,
          -3.3726972562858792,
          -3.2025564256592927,
          -3.7926717891415676,
          -3.994361151908001,
          -7,
          -3.3712895730645562,
          -7,
          -7,
          -2.2379228771710533,
          -7,
          -7,
          -4.04166896647561,
          -3.18998131938412,
          -7,
          -7,
          -7,
          -4.001300933020418,
          -7,
          -3.213882835868511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.607637281414817,
          -3.0818238136507157,
          -7,
          -7,
          -7,
          -4.345608950540594,
          -3.950092117510449,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.94199902862763,
          -4.6448520064261425,
          -7,
          -4.6148761332650095,
          -2.9870500630767345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.608782683529647,
          -3.521530341278711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1740390295759937,
          -7,
          -3.6158729303734223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3190852293386985,
          -3.7531711647163974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5930644316587173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9761894392304566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.610574998959417,
          -7,
          -3.3733510618714013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.713885176907469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.338057875419756,
          -3.768243332915101,
          -7,
          -7,
          -7,
          -2.9546421521708908,
          -7,
          -4.615107987443194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2311706772347133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808220621661337,
          -4.631971096240407,
          -4.632679950216724,
          -7,
          -7,
          -3.411479407308512,
          -7,
          -7,
          -7,
          -3.728160944936087,
          -7,
          -7,
          -7,
          -7,
          -4.2401080739408314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6100956392991375,
          -7,
          -7,
          -7,
          -7,
          -3.33817842648472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.62260771535978,
          -7,
          -3.445466833516987,
          -7,
          -7,
          -3.133289356859643,
          -7,
          -4.133996379664722,
          -4.008621460185338,
          -4.611574624300936,
          -4.3117856375382315,
          -4.616023654653256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6271507046257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.134740071165334,
          -7,
          -3.7933612645639485,
          -2.6260252699140123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5844095155942375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.616149802205346,
          -7,
          -4.153082804361832,
          -7,
          -7,
          -7,
          -7,
          -3.1932276949678604,
          -4.611117634384384,
          -3.7512213482173284,
          -7,
          -2.8952950186616295,
          -7,
          -7,
          -7,
          -4.34609858337099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.030569364813529,
          -4.613514128230588,
          -7,
          -7,
          -2.822859424823976,
          -7,
          -7,
          -3.5828017176654714,
          -4.606939998568596,
          -7,
          -7,
          -4.6076480001038265,
          -4.317415586331099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3894252872859263,
          -4.138439545167638,
          -7,
          -7,
          -7,
          -7,
          -4.61212662166355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6918679935514755,
          -4.028520419371018,
          -2.3844656697933324,
          -7,
          -4.616926903478089,
          -3.514922928167204,
          -7,
          -7,
          -7,
          -7,
          -4.614433158550452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4368256494961977,
          -1.9136473000407377,
          -3.1890542193679265,
          -4.309928110434921,
          -3.3636832867606903,
          -4.325371969396705,
          -3.0014356218422553,
          -2.7447408575982504,
          -2.0771409968833208,
          -7,
          -2.7716302024333626,
          -1.812689050285849,
          -2.8237136038871316,
          -2.862345583352883,
          -2.337614386939072,
          -2.6304868323618735,
          -2.515988671209838,
          -2.5659504281203986,
          -2.991634283960961,
          -7,
          -3.7802903029370016,
          -2.6174459461448945,
          -3.4225716025288726,
          -1.681420099237966,
          -2.6500897014770786,
          -3.0114667067087155,
          -2.9466318368502,
          -2.6780979584052456,
          -3.717285540869072,
          -1.3370327400260669,
          -2.209592265024327,
          -3.041981724889763,
          -3.2966576267250685,
          -2.921938578371734,
          -2.9759098741639316,
          -3.1358592762153634,
          -3.507282278310011,
          -2.9694367766828114,
          -2.3760494820288316,
          -3.7391238429861597,
          -7,
          -3.2356967454881875,
          -3.317919314241195,
          -3.6180195550634915,
          -4.612052355179759,
          -3.3891829662320165,
          -7,
          -3.2126970136435244,
          -7,
          -7,
          -3.7156607840741795,
          -3.2006332643543884,
          -4.178765980418437,
          -3.7737551094725466,
          -3.95970902424643,
          -7,
          -7,
          -4.335748670303386,
          -3.540470253496464,
          -4.628000445988902,
          -7,
          -3.5426940540960583,
          -2.609346857296908,
          -3.0401260605057816,
          -7,
          -7,
          -7,
          -3.4035976824789262,
          -3.697945792788684,
          -3.7445208726381987,
          -3.800677809374912,
          -7,
          -7,
          -4.349860082192332,
          -2.556536769126058,
          -3.3401061253096755,
          -4.319647288183423,
          -4.649986784636648,
          -4.163260789989906,
          -3.33875919891799,
          -7,
          -7,
          -3.041727876544049,
          -3.0154673753195924,
          -7,
          -3.171460029734501,
          -7,
          -7,
          -7,
          -3.447743589284149,
          -7,
          -7,
          -7,
          -7,
          -3.0924950697064624,
          -3.016989838073532,
          -7,
          -4.139847614646311,
          -4.61028744666005,
          -3.930470177808289,
          -3.356269286063917,
          -4.014247443807829,
          -7,
          -7,
          -3.233428590374369,
          -4.6099570590580345,
          -2.7036921696255547,
          -7,
          -4.613196769750614,
          -4.023437664229715,
          -3.5466470486443358,
          -4.320997416794221,
          -3.933942602741261,
          -4.315308959193267,
          -4.311255725712636,
          -3.85782481981019,
          -7,
          -4.315224901518623,
          -7,
          -7,
          -7,
          -3.5580343650072894,
          -7,
          -7,
          -2.5019820979257474,
          -2.5755986777665982,
          -2.1599163201638714,
          -7,
          -4.628940389245031,
          -7,
          -4.141992954947583,
          -4.608836133184731,
          -7,
          -7,
          -4.029830019310658,
          -7,
          -7,
          -3.7420767398479198,
          -7,
          -3.424929654153577,
          -3.4986391993469956,
          -3.721583931807987,
          -7,
          -7,
          -7,
          -7,
          -2.6210066189222463,
          -4.308799103911129,
          -7,
          -7,
          -3.2110512892020617,
          -3.1000164069826135,
          -7,
          -7,
          -3.4213425748284356,
          -7,
          -2.4001013067225925,
          -4.611202692182174,
          -3.5514398317845557,
          -7,
          -4.310544628636955,
          -3.2092468487533736,
          -7,
          -3.1376513664730057,
          -4.613196769750614,
          -4.609113965400532,
          -7,
          -2.8662666060683937,
          -7,
          -7,
          -3.94657997990354,
          -4.135937920969854,
          -7,
          -3.958888646524424,
          -7,
          -7,
          -4.614538669710055,
          -3.3573821032961106,
          -3.3725825735902633,
          -4.623042434246382,
          -4.144553452299717,
          -7,
          -7,
          -3.292196979651928,
          -3.6762565555673197,
          -4.307249939305207,
          -3.7208412305035896,
          -2.668106237932731,
          -4.016458771976905,
          -3.1871768858027356,
          -2.674868486036911,
          -3.548578385603278,
          -7,
          -7,
          -7,
          -7,
          -4.610415271187788,
          -4.61523440120683,
          -3.520433141781531,
          -7,
          -4.608055114382654,
          -7,
          -2.8099523099190993,
          -7,
          -7,
          -4.3068965975393665,
          -4.608354849309348,
          -7,
          -4.608579514826188,
          -4.609647759078724,
          -4.3302818414364435,
          -3.3713655035168926,
          -4.612391755480837,
          -7,
          -3.914914082586252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.174815456482182,
          -4.161098356450925,
          -4.63466868029747,
          -7,
          -7,
          -3.9290611240847655,
          -7,
          -4.606746706755346,
          -2.666842135908416,
          -7,
          -7,
          -4.319251841140254,
          -4.03248780817215,
          -4.137596725153168,
          -7,
          -7,
          -7,
          -7,
          -3.863362519906055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.899382705533265,
          -3.102605194126567,
          -7,
          -7,
          -7,
          -7,
          -3.4767229688690007,
          -7,
          -7,
          -7,
          -3.9293167267534956,
          -7,
          -3.893345571818231,
          -7,
          -7,
          -7,
          -3.597460114481666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040226421767277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.865932668193186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2641800750358305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4954909680247956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6806527317073043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.828423569175315,
          -7,
          -7,
          -7,
          -3.492564842670765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.011443562022075,
          -7,
          -7,
          -7,
          -3.5399538416563967,
          -7,
          -7,
          -7,
          -3.5317343092765503,
          -7,
          -7,
          -7,
          -7,
          -3.592354437456401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.309452723304164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5698418994037615,
          -7,
          -7,
          -4.2594903493437135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7249581862877257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9865478134147243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7251616989168106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9386698010226793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9056340013269546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.269512944217916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9035782936630543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7463535562900727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9991403569240753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.220683277974345,
          -4.005866601875385,
          -3.1917771990622015,
          -7,
          -7,
          -3.9317222318174236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015443587951102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.788389352411851,
          -3.169120569796846,
          -2.6102941051163335,
          -7,
          -2.729696191601458,
          -7,
          -2.897008193182832,
          -2.138410667831999,
          -3.091118028327024,
          -7,
          -3.4868081673068962,
          -2.7092506825613607,
          -2.456151407732086,
          -2.7432524631136483,
          -3.4689914454459165,
          -2.1568270934567235,
          -2.595985843615769,
          -3.2575710014738584,
          -2.8278661207020015,
          -3.7802903029370016,
          -7,
          -1.970174748629278,
          -3.2747638215303567,
          -2.996632208183235,
          -3.0098309440144564,
          -2.6316227980017204,
          -2.62740962701253,
          -1.7018263005471468,
          -3.3591712057167005,
          -3.2464538150912925,
          -2.056414769115683,
          -2.3827736283347782,
          -2.3838857369571556,
          -1.9608053853307488,
          -2.374969449427609,
          -2.2182252419733373,
          -2.2380228583148147,
          -2.9445987781478937,
          -2.8430024442385116,
          -7,
          -3.9445813642269263,
          -3.6109793799229974,
          -3.9664077055553992,
          -7,
          -7,
          -3.099887727411467,
          -7,
          -3.4527572689371206,
          -4.137195811940549,
          -7,
          -3.2457817752162765,
          -3.8541440369565634,
          -7,
          -7,
          -4.113709438449504,
          -7,
          -7,
          -7,
          -3.516081861799344,
          -2.257545253461567,
          -7,
          -3.7816405047233714,
          -3.2420189433633753,
          -2.7745002499864304,
          -7,
          -7,
          -7,
          -3.9077337369976552,
          -7,
          -3.3060095854337113,
          -3.7657057996869474,
          -3.979070114390943,
          -7,
          -3.7844389742226907,
          -3.9483151406893477,
          -3.9468941951023266,
          -7,
          -7,
          -3.56839730816483,
          -3.8652422000895097,
          -7,
          -7,
          -3.60114520058165,
          -3.94680584505315,
          -7,
          -4.005403610458412,
          -7,
          -7,
          -3.4638183615294293,
          -3.9521868168381484,
          -7,
          -7,
          -7,
          -7,
          -2.0162155442381913,
          -3.638938294887355,
          -7,
          -7,
          -7,
          -3.7000110623221123,
          -3.1992813424620823,
          -7,
          -7,
          -7,
          -3.835087847232495,
          -3.9111043178040363,
          -3.398738376245611,
          -7,
          -7,
          -7,
          -7,
          -3.9684362477117046,
          -3.41338359662314,
          -7,
          -3.92272545799326,
          -4.028327198467569,
          -7,
          -3.6406801532776654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0922292421628566,
          -3.564682969118945,
          -2.379354335648669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9007493580610793,
          -3.534068432890329,
          -7,
          -7,
          -7,
          -7,
          -4.1028451642454185,
          -3.6241789257480224,
          -3.6796549786993333,
          -7,
          -7,
          -7,
          -7,
          -3.5610268074521003,
          -7,
          -7,
          -7,
          -3.1006002697893584,
          -4.148263229636879,
          -3.929214503737394,
          -7,
          -4.089905111439398,
          -7,
          -2.999901594008469,
          -7,
          -7,
          -7,
          -2.964154829404375,
          -2.949091699517699,
          -7,
          -7,
          -3.9270622434930003,
          -7,
          -7,
          -3.6729286904427223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.113776283837032,
          -4.088384186097703,
          -7,
          -3.966939163021113,
          -7,
          -7,
          -3.8172181918591903,
          -4.005952286887383,
          -7,
          -7,
          -3.848312303627284,
          -7,
          -4.22318432089504,
          -3.2514110789776036,
          -4.1275583020046325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5451008497880436,
          -7,
          -7,
          -7,
          -3.4352868122401277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9307962629833004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.089445858273834,
          -4.037107632667927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.248969935913661,
          -7,
          -7,
          -7,
          -4.02234587626988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.050341081834084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.307519041408115,
          -7,
          -7,
          -7,
          -3.835263241125063,
          -3.51266438833237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5356770471526247,
          -4.812485532959049,
          -7,
          -5.103564280050957,
          -2.5035434751067442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.260202745013895,
          -4.800335528704904,
          -7,
          -7,
          -7,
          -5.102049325662146,
          -7,
          -7,
          -7,
          -4.804773026242165,
          -7,
          -2.798789303893418,
          -5.100952660908403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.10122450682362,
          -7,
          -4.327093167048512,
          -3.913260701649197,
          -5.101186665056354,
          -7,
          -4.5024544332438925,
          -7,
          -7,
          -7,
          -7,
          -4.257304790554309,
          -5.104203634837933,
          -7,
          -7,
          -7,
          -3.171370276441817,
          -7,
          -7,
          -5.101159141699892,
          -7,
          -7,
          -7,
          -7,
          -5.102800608390914,
          -3.4909076706335322,
          -7,
          -4.800510876894368,
          -7,
          -7,
          -7,
          -7,
          -5.10110064877518,
          -7,
          -7,
          -5.10164054878698,
          -4.199947057925218,
          -7,
          -7,
          -4.500641206758236,
          -2.9309435565337925,
          -4.801139485303378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.80664455621679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.801732908048583,
          -7,
          -7,
          -7,
          -7,
          -3.7067651814617064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.208441356438567,
          -3.3487695036242493,
          -7,
          -5.102124855734526,
          -7,
          -3.1731790417536367,
          -7,
          -4.325454086056255,
          -4.627055047305291,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.143491254545802,
          -7,
          -7,
          -4.79989512705351,
          -7,
          -7,
          -4.162162649359897,
          -5.109186931698511,
          -4.410426282868454,
          -4.023585085498241,
          -7,
          -3.576910381921401,
          -5.101131616599028,
          -7,
          -7,
          -2.6856094356904237,
          -4.802677964770796,
          -7,
          -7,
          -7,
          -3.5264748156360772,
          -7,
          -7,
          -7,
          -5.101949743219734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.129563910021561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.10122450682362,
          -7,
          -4.106027623544182,
          -7,
          -3.1893825770776196,
          -7,
          -4.325282992157282,
          -2.946653770402097,
          -7,
          -7,
          -4.801190970259465,
          -4.500414877756268,
          -7,
          -3.9277500763288153,
          -7,
          -5.101540872558349,
          -7,
          -7,
          -7,
          -5.10505691956627,
          -7,
          -7,
          -7,
          -4.650767159135146,
          -7,
          -4.630451606315535,
          -7,
          -4.802058431469606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.615685384838915,
          -7,
          -7,
          -5.10097675539313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.102601765021186,
          -5.103112403420998,
          -3.768836471411452,
          -2.7366250525486784,
          -7,
          -7,
          -7,
          -4.625415352154408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3918233302705025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.624488362513449,
          -5.1039780876687395,
          -7,
          -5.108612374132366,
          -7,
          -7,
          -7,
          -7,
          -3.463173317505048,
          -7,
          -4.075347850294719,
          -7,
          -2.6548088037201225,
          -7,
          -7,
          -7,
          -4.813267329389584,
          -4.626148674240376,
          -5.1036327052097405,
          -4.804200788288911,
          -2.6215087658759972,
          -7,
          -7,
          -7,
          -7,
          -4.625603941040815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.10108688458908,
          -4.800455873318712,
          -7,
          -4.331241660919753,
          -4.802085832832881,
          -5.102049325662146,
          -7,
          -2.7227020245606064,
          -7,
          -7,
          -3.8406210760399038,
          -7,
          -7,
          -7,
          -7,
          -4.803696048445993,
          -7,
          -7,
          -7,
          -7,
          -4.800497126653524,
          -2.063180094011885,
          -4.200662436310718,
          -7,
          -7,
          -7,
          -4.405383930232088,
          -5.102673770548927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9559418903973125,
          -7,
          -3.467089898520816,
          -4.263605638169458,
          -1.9546295403204343,
          -4.624563969089531,
          -4.326045551412314,
          -2.9387982031410798,
          -5.103844754716462,
          -7,
          -7,
          -7,
          -4.501340024343219,
          -4.632372922202545,
          -5.10383107722707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.104166051776575,
          -7,
          -4.409378494659984,
          -7,
          -7,
          -2.5267777372775697,
          -2.146409072851802,
          -2.365964057019836,
          -5.102303329160087,
          -2.215048167079102,
          -3.3007381059912815,
          -2.86557305244909,
          -1.6666884526570873,
          -2.5311273253818536,
          -7,
          -2.9173463457004742,
          -1.7272531802324826,
          -1.9670038464124309,
          -2.0808367528530765,
          -2.924305280564163,
          -1.0811420100434221,
          -1.9954555630977564,
          -2.2123857790043826,
          -2.7423595527399964,
          -2.6174459461448945,
          -1.970174748629278,
          -7,
          -3.2613378390379486,
          -1.9088946947321648,
          -2.6645850002222424,
          -2.373887355935082,
          -2.0936316718609898,
          -1.8946530416508809,
          -2.88155548819778,
          -2.494454185160028,
          -1.5763666781634307,
          -2.0245083220671165,
          -2.2126606051311555,
          -2.306117205810236,
          -2.7045002939710105,
          -2.157067143420605,
          -2.1568823890800446,
          -2.6600809295199155,
          -2.2796587768571377,
          -3.6833462044894683,
          -7,
          -2.754968130603507,
          -3.209842548019534,
          -4.273454356354353,
          -7,
          -2.696359566292455,
          -4.802534284386976,
          -2.945479406917248,
          -4.342495057204659,
          -5.105806425828049,
          -3.306030608776958,
          -2.983128367847432,
          -4.272179886040999,
          -4.502819583051974,
          -3.61294271588699,
          -7,
          -7,
          -3.33955923092641,
          -2.1712034547730594,
          -4.806830927613483,
          -5.102680627595637,
          -3.3202545608791008,
          -2.440666173142421,
          -0.6355151074541456,
          -7,
          -4.504708673848843,
          -7,
          -3.1803474772636906,
          -4.417086220770336,
          -3.2682217466752914,
          -3.9376917087542616,
          -4.023897959084491,
          -7,
          -3.4525330814266306,
          -3.718645386607124,
          -3.1647492907566503,
          -4.406465236880978,
          -4.416277611713044,
          -4.413024679701589,
          -3.578688759389185,
          -7,
          -7,
          -2.6541476783893043,
          -3.008774197448603,
          -5.103786622411421,
          -2.5458736297858944,
          -4.62728049158373,
          -4.629647410457143,
          -3.8126560444689828,
          -3.590000635504518,
          -7,
          -7,
          -7,
          -5.10234107375727,
          -2.5445533197545602,
          -3.442207709868362,
          -7,
          -4.803221467457776,
          -4.8010433637188035,
          -4.330187096366115,
          -3.564282100933567,
          -4.4050525185551175,
          -7,
          -7,
          -3.9163552340406005,
          -7,
          -2.8051544359686225,
          -4.62642591735698,
          -5.10301991616068,
          -4.629925823953525,
          -3.428501732235372,
          -4.503824717341271,
          -4.410530922787965,
          -3.7614801984190636,
          -3.801571769357205,
          -4.1562630271060215,
          -4.501367406054805,
          -5.104019104958513,
          -7,
          -7,
          -7,
          -4.043758399217367,
          -4.624910903184837,
          -5.101135057332041,
          -2.9975123995683486,
          -2.8219038108655123,
          -1.9010202559024967,
          -7,
          -4.5060989599284405,
          -7,
          -4.063497122643505,
          -5.1016130541812235,
          -7,
          -7,
          -2.7078143789900295,
          -5.101685223809193,
          -7,
          -5.1136760118971,
          -7,
          -3.7746728723524074,
          -4.801866573503306,
          -3.902594337119436,
          -7,
          -4.626384855468794,
          -7,
          -5.103988342354368,
          -2.599433350934423,
          -7,
          -7,
          -7,
          -3.2928901294360298,
          -3.9456589370603736,
          -4.148866468878797,
          -4.801811741370298,
          -3.2521977882265785,
          -7,
          -2.4433073453168954,
          -5.10237538418105,
          -4.409814816892981,
          -7,
          -4.0610410205231116,
          -3.484539250183401,
          -7,
          -3.670275679967574,
          -4.801983068804944,
          -7,
          -4.801070829199609,
          -3.992291754360717,
          -7,
          -5.1012141866686385,
          -4.812749630172364,
          -7,
          -7,
          -4.163717806163838,
          -7,
          -5.109561674219138,
          -7,
          -3.942120541404521,
          -4.074397497406827,
          -4.3280464486194905,
          -4.628661343094779,
          -7,
          -7,
          -3.381608385295533,
          -3.932565078682726,
          -5.101441173447477,
          -4.152274751228799,
          -3.206354301944434,
          -4.326585030766405,
          -3.7153121629007257,
          -2.9512055563264705,
          -4.2745503849095305,
          -7,
          -4.6260527959344335,
          -7,
          -7,
          -7,
          -7,
          -3.5535324302784037,
          -7,
          -7,
          -7,
          -3.326574793726331,
          -7,
          -4.801293921864864,
          -7,
          -5.10145836458231,
          -7,
          -7,
          -4.323688582255868,
          -4.1089132667197426,
          -4.408535049571333,
          -7,
          -7,
          -4.103208295336138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.212819934885117,
          -3.83241814508691,
          -4.030832389665022,
          -7,
          -7,
          -4.408907857830475,
          -7,
          -7,
          -2.9534505265771154,
          -7,
          -7,
          -5.105333024616749,
          -3.8089094696794237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.833549702423101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.501482514820539,
          -7,
          -7,
          -7,
          -4.047274867384179,
          -3.153433737087157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.72899112978433,
          -7,
          -7,
          -7,
          -3.2728854447575695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.159296426688385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7601660533515986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9306434410421645,
          -3.3854990271520573,
          -7,
          -7,
          -3.442061474322838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2499806059095295,
          -7,
          -7,
          -3.86457040685343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.222629776969852,
          -3.881783955593385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7235963873885836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.016448318259037,
          -3.690550461510359,
          -7,
          -7,
          -7,
          -4.187612364222886,
          -7,
          -7,
          -3.9140785853891122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.910090545594068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.374345016224609,
          -3.985695859689842,
          -7,
          -7,
          -7,
          -3.0812490844673115,
          -7,
          -7,
          -7,
          -3.9831299247347003,
          -7,
          -7,
          -7,
          -7,
          -4.278181784567518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.703047646167912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8656960599160706,
          -7,
          -3.6414741105040997,
          -7,
          -3.2509381626112535,
          -7,
          -3.601625479553945,
          -3.2843179154306097,
          -7,
          -7,
          -3.8826383616960385,
          -3.8870543780509568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.862131379313037,
          -7,
          -7,
          -7,
          -3.361586195156881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.873436863222037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6520469834853126,
          -7,
          -7,
          -7,
          -3.887954703808801,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9934362304976116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6768764319731373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.077440584471324,
          -7,
          -1.439853147684109,
          -7,
          -7,
          -7,
          -4.049218022670182,
          -3.8998205024270964,
          -7,
          -3.930031614950973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3865435520177014,
          -3.596102047718113,
          -7,
          -7,
          -1.8681633440829502,
          -7,
          -7,
          -4.105986795521472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8709888137605755,
          -2.762494295245261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8899736384039962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.210736131009443,
          -7,
          -7,
          -3.3020937473494185,
          -7,
          -7,
          -3.8830933585756897,
          -7,
          -3.9020028913507296,
          -3.9899390132845354,
          -3.9084850188786495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.974787932213558,
          -7,
          -7,
          -2.9144596969074215,
          -2.97211990499589,
          -3.085766126574217,
          -7,
          -2.7153990227625053,
          -3.659440781870318,
          -2.904282657645628,
          -2.0250850890094454,
          -2.3595920918742195,
          -7,
          -2.9949278545756846,
          -2.761722869731802,
          -2.419162729792661,
          -2.719646613671655,
          -2.5974072058672815,
          -3.512183922360945,
          -2.8345727312834774,
          -2.7745589123632373,
          -2.285246821429292,
          -3.4225716025288726,
          -3.2747638215303567,
          -3.2613378390379486,
          -7,
          -2.218856164715301,
          -2.583591999539007,
          -3.483974250740474,
          -2.49938550769493,
          -1.8857582713800698,
          -3.9325244970505424,
          -1.7649961974579178,
          -2.869195037904703,
          -2.266375552376499,
          -2.525710502874475,
          -2.4115800968171492,
          -2.7235541775696275,
          -2.4385783047808247,
          -2.6479075092177413,
          -2.1357775059548194,
          -2.616033061656062,
          -3.6072673245501026,
          -7,
          -3.416052828653338,
          -2.799436728056987,
          -3.7954976699424585,
          -7,
          -2.881527305640932,
          -7,
          -3.078291064706725,
          -7,
          -3.9384696883676455,
          -3.575026109423261,
          -3.318835191727664,
          -3.0408899047542124,
          -7,
          -2.730220354860967,
          -7,
          -7,
          -3.005909446494559,
          -4.049024097915049,
          -7,
          -7,
          -3.1291183845233452,
          -2.5154691970223673,
          -3.7300551523755,
          -7,
          -3.952695599586917,
          -7,
          -3.026642198989762,
          -7,
          -4.27681552966027,
          -3.4419306745501714,
          -3.3630475945210936,
          -7,
          -7,
          -3.1549562434033382,
          -2.950968833510342,
          -3.0876800300462937,
          -3.281828466560518,
          -3.0670295045117135,
          -2.7162069987296933,
          -7,
          -7,
          -2.9666477694787634,
          -2.9229947879131495,
          -3.606650028578439,
          -3.4949629235687794,
          -7,
          -3.173962834523349,
          -3.4411843626805214,
          -3.6364878963533656,
          -3.8736692927067944,
          -7,
          -7,
          -7,
          -2.3691462533580823,
          -2.9700109249911373,
          -7,
          -7,
          -7,
          -7,
          -3.271531838704605,
          -7,
          -7,
          -7,
          -3.5147469246343817,
          -7,
          -2.836368077532691,
          -3.9042285163400785,
          -7,
          -7,
          -3.623766000133931,
          -3.939918420369057,
          -3.2116099373351346,
          -7,
          -3.5897821032911432,
          -3.5262961904825314,
          -7,
          -3.9114239653762946,
          -7,
          -7,
          -7,
          -3.66373232660306,
          -3.879611907065851,
          -7,
          -2.775664154857271,
          -2.8355277555128513,
          -2.0072213000164245,
          -3.8629657589777624,
          -3.3697722885969625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9856060830524367,
          -7,
          -7,
          -3.3425805773816273,
          -7,
          -3.1785093257409924,
          -3.8937062930647133,
          -3.475768010191268,
          -7,
          -3.9035782936630543,
          -7,
          -7,
          -2.852174904420303,
          -7,
          -7,
          -7,
          -2.855034316675884,
          -2.98265882296436,
          -7,
          -3.5916766421416844,
          -3.3692529750104305,
          -7,
          -2.937654331748257,
          -7,
          -3.9806849743633146,
          -7,
          -3.887167020894774,
          -0.8739585862819435,
          -7,
          -2.8296967833716815,
          -7,
          -7,
          -7,
          -3.6447831309233574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.090469680231161,
          -7,
          -3.9906495883188544,
          -7,
          -3.4912916406875922,
          -2.8103818884116567,
          -3.0408988880818284,
          -7,
          -7,
          -7,
          -3.5061666650469663,
          -3.6787459370657043,
          -3.5682604085454175,
          -3.347232410084063,
          -2.7236608666914495,
          -3.2235997646496934,
          -3.5083680909523376,
          -2.8041560608213065,
          -2.643690860483486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4706391271917423,
          -7,
          -7,
          -7,
          -2.863179234041462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8767372971406644,
          -3.9828589423120753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5907675519657363,
          -3.5355894580221245,
          -3.69640007813349,
          -7,
          -7,
          -3.6672193984439363,
          -7,
          -7,
          -2.801654645762421,
          -7,
          -7,
          -7,
          -3.5199591807520685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5495754012584975,
          -7,
          -3.8765642139838454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3653972637477167,
          -4.789411473551423,
          -7,
          -7,
          -3.3332456989619628,
          -3.3206955935760587,
          -7,
          -7,
          -7,
          -4.7884158626098525,
          -7,
          -2.412936196270033,
          -7,
          -7,
          -3.642916527809786,
          -2.6145382207807,
          -7,
          -4.483416112701048,
          -7,
          -4.784987960564955,
          -4.784631554943246,
          -4.785158931428092,
          -4.082834719158263,
          -4.784695729544385,
          -7,
          -7,
          -7,
          -4.786098069954851,
          -7,
          -7,
          -7,
          -3.0076778354173825,
          -3.8809064413723564,
          -3.3588281256465544,
          -7,
          -7,
          -3.8824178010972825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.678644425908479,
          -3.2606873945370265,
          -7,
          -7,
          -4.79122734162645,
          -7,
          -7,
          -7,
          -7,
          -4.786914606730178,
          -7,
          -7,
          -7,
          -7,
          -3.296421410023919,
          -7,
          -7,
          -4.784253445375443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.410254078446397,
          -7,
          -4.182956469055351,
          -7,
          -4.784189205380961,
          -7,
          -7,
          -7,
          -4.482773570074737,
          -7,
          -7,
          -7,
          -4.7851090718786775,
          -4.786353846576917,
          -4.088462130302983,
          -2.494509447937863,
          -4.485316748040482,
          -4.784281993434279,
          -7,
          -7,
          -7,
          -4.78417492853611,
          -7,
          -7,
          -7,
          -4.797676014934945,
          -7,
          -7,
          -7,
          -4.787453389721934,
          -7,
          -7,
          -7,
          -7,
          -4.486543819882519,
          -7,
          -7,
          -7,
          -7,
          -2.9706306045562396,
          -4.483551639143684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.027376792806965,
          -2.938948375793857,
          -7,
          -4.48521019101124,
          -7,
          -3.0392781152661854,
          -7,
          -4.187280946665672,
          -4.091491094267951,
          -7,
          -7,
          -4.48364434340033,
          -4.785258633357701,
          -7,
          -7,
          -3.1804749464164352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.383702357611819,
          -7,
          -4.801225290173022,
          -4.4866925351069185,
          -7,
          -3.0682444670336,
          -7,
          -7,
          -7,
          -4.101327694887568,
          -4.011316643366872,
          -7,
          -7,
          -7,
          -3.906017616655766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.78875505029906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4958815048717864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590089133690572,
          -7,
          -2.9381410984255703,
          -7,
          -4.010808597512207,
          -2.4589044615454947,
          -4.78432481200424,
          -3.507735178133635,
          -3.8321113371375928,
          -3.582688206299978,
          -3.78773669147004,
          -2.7673396555398124,
          -4.7858279199958655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.536962249650276,
          -7,
          -3.6833726716448614,
          -7,
          -3.943077404269343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.018575683467251,
          -3.882140162435669,
          -7,
          -4.7838750063274365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.787240792066473,
          -4.089269093046149,
          -4.106211302163002,
          -2.5764885701434403,
          -7,
          -4.784046415808113,
          -7,
          -4.3099848383169075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.563599107795837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.785215906761976,
          -4.790080990601768,
          -7,
          -3.8452221064290137,
          -4.015171073002388,
          -7,
          -4.783824999149303,
          -7,
          -3.0244578372293143,
          -4.087689155914309,
          -2.781263241134869,
          -7,
          -2.285552541544157,
          -7,
          -7,
          -7,
          -4.112068504268197,
          -4.186546696952168,
          -4.7893691535914815,
          -3.3943956392128856,
          -4.491172524399044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.78494520733039,
          -4.784360490921301,
          -3.624948671355888,
          -4.487272745488699,
          -7,
          -4.784845433412646,
          -2.287497933400103,
          -7,
          -7,
          -3.6171445574903074,
          -7,
          -7,
          -7,
          -4.483359036280687,
          -3.51262823139563,
          -3.8833135764397375,
          -7,
          -7,
          -7,
          -7,
          -1.7735402503935993,
          -3.3121844111986243,
          -7,
          -7,
          -7,
          -4.790911166601595,
          -4.185287112575202,
          -7,
          -7,
          -4.785891918069435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.78632543439007,
          -7,
          -3.5198842216180046,
          -4.322694690306876,
          -2.233722657037703,
          -7,
          -4.313452404617617,
          -3.461975751039211,
          -4.488762172066695,
          -7,
          -7,
          -7,
          -7,
          -4.801396849070872,
          -7,
          -7,
          -4.783774986212391,
          -7,
          -4.310048648328322,
          -7,
          -4.484057706083955,
          -7,
          -7,
          -7,
          -3.24230671556541,
          -7,
          -7,
          -1.333050212822552,
          -1.732888876318965,
          -1.7787469321412472,
          -3.8834342936830093,
          -2.8685099487418886,
          -3.592662429045383,
          -2.3786583674477253,
          -1.752061582665237,
          -0.9082622277483057,
          -4.783953577404038,
          -2.1765046760139852,
          -0.696236093792431,
          -2.320941902387436,
          -2.419173400790585,
          -1.8597919065431519,
          -1.9306385248238294,
          -2.4309164433481816,
          -2.065363643234313,
          -2.566970612326016,
          -1.681420099237966,
          -2.996632208183235,
          -1.9088946947321648,
          -2.218856164715301,
          -7,
          -2.387910164180042,
          -2.769063163755874,
          -2.42319904720951,
          -2.1386055309629564,
          -3.792888742179074,
          -1.039208860811914,
          -2.2814310988609674,
          -2.4689324896507245,
          -2.428522865815281,
          -2.4329982170349678,
          -2.632463823370773,
          -2.4152432218225366,
          -2.4553687449617696,
          -2.2315151568930105,
          -1.6457745688215348,
          -3.3959064795712126,
          -7,
          -2.837108073138243,
          -2.7655605803956953,
          -3.048053173115609,
          -3.94215692846749,
          -2.7685653225944606,
          -7,
          -2.3656714715140623,
          -4.221714097454803,
          -4.492795298755718,
          -3.1344116809154454,
          -2.8490682559189415,
          -3.4018245530016085,
          -7,
          -3.205771922578067,
          -7,
          -7,
          -3.4613143143363385,
          -2.955126283548938,
          -7,
          -7,
          -2.858165668009299,
          -1.9123537888869968,
          -2.313199520872477,
          -7,
          -7,
          -7,
          -2.766786662945696,
          -4.5136170737878745,
          -3.9663852215103717,
          -3.5089469798218746,
          -3.743232287238435,
          -7,
          -3.6673728912283936,
          -2.88924011792284,
          -3.6960176467785573,
          -3.537623233756723,
          -3.199721739891994,
          -3.020347695447247,
          -2.5027771598856288,
          -3.3535934043217672,
          -7,
          -2.5211034302444606,
          -2.4595410083588636,
          -3.8353311524327784,
          -2.189466104551766,
          -7,
          -3.4338046066925614,
          -3.4295840726793774,
          -3.1421808211559457,
          -4.3082085802911045,
          -7,
          -7,
          -7,
          -2.595116585856597,
          -2.2178339146037684,
          -7,
          -3.375332931974451,
          -4.007939712514268,
          -3.0579771412316132,
          -2.4551495211798278,
          -3.488931262422253,
          -7,
          -7,
          -2.3712322494503155,
          -4.484897472816146,
          -2.0652001274811633,
          -3.5585462266892547,
          -4.186002268850776,
          -3.5920795578567235,
          -2.777683803329668,
          -3.714706878813469,
          -2.9876456426663927,
          -3.245674792956368,
          -3.163679503398851,
          -3.13080579429975,
          -3.7096514974674624,
          -3.8869769191447054,
          -4.787028090288343,
          -4.785415261588475,
          -7,
          -2.9950477386687933,
          -4.786090962897912,
          -4.784203481756495,
          -2.017264452938816,
          -1.7341710790487073,
          -1.4238031121981767,
          -4.306910879548736,
          -3.4559793306455244,
          -4.786318331052916,
          -3.791971201020768,
          -7,
          -7,
          -7,
          -3.4024608541039107,
          -7,
          -4.088015533093001,
          -3.207243784491376,
          -7,
          -1.6840836382549131,
          -3.583531737692542,
          -3.105044184864794,
          -7,
          -4.010914489420639,
          -7,
          -2.8297913511939936,
          -1.6527263796754403,
          -4.0868436925849005,
          -7,
          -7,
          -2.974789285895967,
          -2.2941062855654346,
          -3.7882744561838897,
          -4.185648378282055,
          -2.642270631311907,
          -7,
          -1.6912451854953618,
          -4.184670141350603,
          -3.0067489005964645,
          -4.7859701251320095,
          -3.508026205525405,
          -2.270621570318383,
          -7,
          -2.2398880538155255,
          -3.9429217685191538,
          -7,
          -4.309069196393278,
          -2.9305582840293467,
          -7,
          -7,
          -2.4607150375092623,
          -4.486996888431823,
          -4.787467559199322,
          -3.3557486858509193,
          -4.010956838955719,
          -3.5460008283927995,
          -4.311852713589172,
          -2.6774085632045024,
          -2.3116933279896723,
          -3.5903820058174034,
          -3.202222766175473,
          -4.482880726551359,
          -7,
          -2.549952733015442,
          -2.745233748499208,
          -4.483794054640928,
          -3.016434379577117,
          -1.795590161015244,
          -3.750178674359477,
          -2.3270097863841452,
          -2.3808158408475273,
          -3.1980611267337333,
          -4.483573034190131,
          -3.9432683355836136,
          -4.784524576197029,
          -4.483002138604418,
          -4.7862472912906115,
          -4.312318429847517,
          -2.950323707873046,
          -7,
          -4.784674339064312,
          -7,
          -2.3929840436331347,
          -7,
          -3.9414972351325823,
          -7,
          -4.784873942585328,
          -4.08781689793553,
          -4.30787383097522,
          -4.484691239914095,
          -2.745689562989966,
          -3.5183684580315613,
          -7,
          -4.784674339064312,
          -3.445901272848216,
          -4.783803565738718,
          -7,
          -7,
          -7,
          -4.308229938510919,
          -7,
          -3.7728815535896785,
          -2.5377027750519026,
          -4.10355059372542,
          -4.784845433412646,
          -7,
          -3.2294327686725683,
          -7,
          -4.783803565738718,
          -2.388050584882719,
          -7,
          -7,
          -4.315718507536319,
          -2.5304820004707973,
          -4.3120009502137435,
          -7,
          -7,
          -7,
          -7,
          -2.521410522381751,
          -4.482816435838172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2118982321165546,
          -7,
          -7,
          -7,
          -4.191618663369469,
          -3.499467130989543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7191520486477514,
          -7,
          -7,
          -3.792951708250132,
          -3.182884965971133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.116474911908331,
          -7,
          -3.742685862397225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1112625136590655,
          -3.7415980121808308,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6467956887784694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.081635301502951,
          -4.073974819866659,
          -7,
          -7,
          -7,
          -7,
          -2.8839549765516828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.767304317453273,
          -7,
          -7,
          -7,
          -4.134400255918984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.095866453478543,
          -7,
          -4.169733197942518,
          -3.037354049115382,
          -7,
          -7,
          -7,
          -3.372129199790205,
          -7,
          -4.0948203803548,
          -4.100405011565889,
          -7,
          -7,
          -4.07107154998365,
          -7,
          -7,
          -7,
          -3.3605092642757195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3011230487976233,
          -7,
          -7,
          -7,
          -7,
          -4.067610132912504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1219683083643344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.641936582803575,
          -7,
          -3.229216285664953,
          -7,
          -3.791971201020768,
          -2.7309167946335178,
          -7,
          -3.0016255582867375,
          -3.6029277128591892,
          -3.6057358938767465,
          -4.087248867795658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.295215123866298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8292394281413893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.690934048739477,
          -3.021257753888522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.575332200748137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.637055885524786,
          -7,
          -7,
          -7,
          -3.649918718735419,
          -7,
          -3.514282047860378,
          -7,
          -2.883205003706557,
          -7,
          -7,
          -7,
          -7,
          -4.091174360706882,
          -7,
          -4.110858956731867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6732974397596356,
          -7,
          -7,
          -7,
          -3.1707979642445716,
          -7,
          -7,
          -3.5353447636766573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.550474234050802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.832998282627148,
          -4.144293927198531,
          -3.0156709638787342,
          -7,
          -4.100818395731537,
          -3.764596394810861,
          -4.096910013008056,
          -7,
          -7,
          -7,
          -4.092580300691311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1408849802658665,
          -7,
          -7,
          -2.3700601605169713,
          -2.8449170462704814,
          -2.7434952473550966,
          -7,
          -2.9287257725066422,
          -3.830139387425343,
          -1.8745468407664116,
          -2.4030124712965577,
          -2.5196681185140672,
          -7,
          -2.1951679674318276,
          -2.390319447159678,
          -2.0447937214805347,
          -2.168099365491275,
          -2.687878300113581,
          -2.516880120476239,
          -2.7904671640422904,
          -2.809954243007838,
          -2.396486524640049,
          -2.6500897014770786,
          -3.0098309440144564,
          -2.6645850002222424,
          -2.583591999539007,
          -2.387910164180042,
          -7,
          -2.9948245653712453,
          -1.8246764291958442,
          -2.0135747566806343,
          -2.1058166374336857,
          -2.443460333175155,
          -2.164634570474998,
          -2.684810171879624,
          -3.0256547388348216,
          -2.39435254569581,
          -2.3402953583797146,
          -2.995059990083075,
          -3.452706226511029,
          -3.528672501601294,
          -0.9328829155012494,
          -3.4103764856662915,
          -7,
          -3.9888264070452757,
          -3.3850835409542803,
          -3.0507405516030395,
          -7,
          -3.151561363449798,
          -7,
          -3.2344610386791035,
          -7,
          -7,
          -3.7632594845682545,
          -3.4989477407243084,
          -3.2170626058525507,
          -7,
          -3.9241758703019207,
          -7,
          -7,
          -3.6856521841155243,
          -4.427940290264142,
          -7,
          -4.084933574936716,
          -3.8331088463960503,
          -3.130834353972563,
          -2.929519470369024,
          -7,
          -7,
          -7,
          -3.873561394487116,
          -7,
          -4.39346551909628,
          -3.587205677606586,
          -3.7570162347313003,
          -7,
          -3.7264011621029223,
          -7,
          -3.783160071056011,
          -4.1130738935942075,
          -3.1212588303888062,
          -7,
          -3.5664206554863935,
          -3.848958460827495,
          -7,
          -3.59956399102238,
          -3.149608480460239,
          -7,
          -3.735766517790886,
          -7,
          -4.1258714674176815,
          -7,
          -4.035829825252828,
          -7,
          -7,
          -7,
          -7,
          -2.1940137903903576,
          -2.2465275443812533,
          -7,
          -7,
          -3.175040443810621,
          -3.2373237705991307,
          -3.6278163058623765,
          -3.3997429262428613,
          -7,
          -7,
          -3.128200370394246,
          -4.077513251497662,
          -3.476324317420228,
          -3.792916728226602,
          -3.787354190433722,
          -3.8274338954007794,
          -3.2761808644533152,
          -7,
          -2.895146189375992,
          -2.565187822933127,
          -3.0433622780211294,
          -3.8596485787364037,
          -3.490590487028833,
          -7,
          -7,
          -7,
          -7,
          -3.218941109212078,
          -4.078275522086601,
          -7,
          -2.948083249753727,
          -2.5436806026151135,
          -1.6174777148654325,
          -7,
          -3.6618126855372615,
          -7,
          -4.10809123558122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.083108279194735,
          -4.187746269780459,
          -7,
          -2.7841416140728312,
          -3.484975673477698,
          -2.9792230848365144,
          -7,
          -7,
          -7,
          -7,
          -2.4174517633625174,
          -4.077149794716969,
          -7,
          -7,
          -1.3484858437877367,
          -2.8531138935152702,
          -3.311435968289161,
          -7,
          -2.8634039785371357,
          -7,
          -2.964401400808145,
          -7,
          -3.1443562273681835,
          -4.0776585490841315,
          -2.8514741829727863,
          -2.59659709562646,
          -7,
          -3.2194011303575603,
          -7,
          -7,
          -4.078927833680719,
          -2.324979051522652,
          -7,
          -7,
          -3.8875891715438677,
          -7,
          -4.085254891103877,
          -3.9219464542294102,
          -4.093806775615175,
          -7,
          -7,
          -3.0785086030032023,
          -2.882497432666564,
          -3.643321052153644,
          -3.417106167392593,
          -7,
          -7,
          -2.399164523999909,
          -2.3625138895930924,
          -7,
          -2.1540797992204612,
          -3.143082717133099,
          -2.803900743413759,
          -3.081114231941639,
          -2.0465674178963407,
          -3.75878577232103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.182273491306374,
          -7,
          -7,
          -7,
          -2.960419808988687,
          -7,
          -3.780173243642594,
          -4.070628844051428,
          -7,
          -7,
          -7,
          -3.377196935008914,
          -2.9149650437896093,
          -4.132995700692265,
          -7,
          -7,
          -2.859456190061124,
          -7,
          -7,
          -7,
          -7,
          -4.074633618296904,
          -7,
          -3.9055260484350485,
          -2.4741865209346554,
          -3.855428289576475,
          -7,
          -7,
          -2.6432297408766043,
          -7,
          -7,
          -2.0443945648168875,
          -7,
          -7,
          -3.634544441219856,
          -2.4632224050091973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4840963750741945,
          -7,
          -7,
          -7,
          -4.153021743626138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.679633008202028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039731296098691,
          -7,
          -7,
          -7,
          -3.1247474752869913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8551469168353636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.191506904624152,
          -7,
          -3.5518767631329724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.279142006491639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4371866354801193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.007050413245592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.893669309799605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.104640726057345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.236738743506645,
          -4.121920785563038,
          -7,
          -7,
          -7,
          -3.5565881268755133,
          -7,
          -4.173361116894232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.886866575028829,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.970974150579461,
          -7,
          -7,
          -7,
          -7,
          -3.605024765730024,
          -7,
          -7,
          -7,
          -3.5178026940930205,
          -7,
          -7,
          -7,
          -7,
          -3.935053589231065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.129960436522729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.28315726254433,
          -7,
          -7,
          -3.8295610562993927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.346352974450639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.235402180158032,
          -2.890446296648246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8964343519192703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.200522191802113,
          -7,
          -7,
          -7,
          -2.993158177701961,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6214479305574576,
          -7,
          -7,
          -4.292831794508626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.193924634469308,
          -7,
          -7,
          -7,
          -7,
          -4.179637952157813,
          -7,
          -7,
          -7,
          -4.158754386632288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4563470513120462,
          -7,
          -2.6859085515648258,
          -4.156549151331781,
          -7,
          -4.088127225457418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.400993002709646,
          -2.011539376573685,
          -2.459513646772962,
          -7,
          -3.0410831267035316,
          -7,
          -3.577836341292744,
          -2.508327674547125,
          -3.061177635447784,
          -7,
          -3.2458826475172615,
          -2.616297605937538,
          -2.486467376967633,
          -2.4096843767942002,
          -4.286422784794196,
          -2.21079991039675,
          -2.3902854006591365,
          -3.426673888021373,
          -3.120921081780979,
          -3.0114667067087155,
          -2.6316227980017204,
          -2.373887355935082,
          -3.483974250740474,
          -2.769063163755874,
          -2.9948245653712453,
          -7,
          -2.977336015364056,
          -2.43659912394373,
          -4.188168858586696,
          -3.3180700702467916,
          -2.684645915265751,
          -2.677037386105213,
          -2.532054039419485,
          -2.509730962204628,
          -3.1573272246636446,
          -2.4340083069744263,
          -2.643036884705358,
          -3.4452568203759215,
          -2.1914785023272993,
          -7,
          -7,
          -3.1288921961097267,
          -4.054842779228683,
          -4.2867482966137125,
          -7,
          -2.937656213375918,
          -7,
          -3.989770080726568,
          -4.30072588307482,
          -7,
          -3.505980450567084,
          -3.266216012243372,
          -7,
          -7,
          -3.3301431005564446,
          -7,
          -7,
          -7,
          -3.4244955574683114,
          -7,
          -7,
          -3.099478220000061,
          -3.1352797775136847,
          -2.8777435688491266,
          -7,
          -7,
          -7,
          -3.275914728871076,
          -7,
          -3.892193100130382,
          -7,
          -4.4036694793552815,
          -7,
          -3.420568659438226,
          -3.9035421416209206,
          -4.2151085810530935,
          -7,
          -4.2637070646074315,
          -7,
          -3.9741738279230225,
          -7,
          -7,
          -4.43288915534841,
          -3.1345991834276594,
          -7,
          -3.5508014270092443,
          -7,
          -7,
          -3.952138330237461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1547113111232354,
          -4.07359005876739,
          -7,
          -7,
          -7,
          -7,
          -2.9423571865178624,
          -3.8757555792580543,
          -7,
          -7,
          -4.300029967882302,
          -7,
          -3.3359282794322196,
          -7,
          -7,
          -4.201670179646581,
          -7,
          -3.4138583422700264,
          -7,
          -7,
          -4.165570740632901,
          -4.229041573173397,
          -7,
          -4.176583180765493,
          -7,
          -7,
          -7,
          -4.014835435072798,
          -7,
          -7,
          -3.9381693463903202,
          -3.8066547239918607,
          -3.1665875547656306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277448759264485,
          -7,
          -4.199700338629511,
          -7,
          -7,
          -7,
          -7,
          -2.9459852948678504,
          -4.158663980813989,
          -7,
          -7,
          -3.6441184131829005,
          -7,
          -7,
          -7,
          -4.268835289996586,
          -4.161068385471174,
          -2.7636094789320236,
          -7,
          -7,
          -7,
          -7,
          -3.0053365371082617,
          -7,
          -7,
          -4.168055303459139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.284791555950147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.60908725848653,
          -7,
          -7,
          -7,
          -3.8385594645298533,
          -7,
          -7,
          -4.042129045119864,
          -7,
          -7,
          -4.169498094684968,
          -7,
          -7,
          -7,
          -7,
          -3.74808461124624,
          -7,
          -7,
          -7,
          -3.971229447276241,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.205447977051676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9151887051731564,
          -7,
          -7,
          -3.886490725172482,
          -7,
          -4.172398577939305,
          -7,
          -7,
          -7,
          -7,
          -4.243038048686294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.640955609396501,
          -7,
          -7,
          -7,
          -4.360952968049115,
          -3.622816660564442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.191765303091737,
          -4.660258179206216,
          -7,
          -4.63136258488696,
          -2.8560353749424916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.59142636838178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.33693979412059,
          -7,
          -3.404922618201421,
          -7,
          -7,
          -4.325094710984229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7681847038928176,
          -7,
          -7,
          -4.634235368289326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.243434936520088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6523132991844616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.627795841028035,
          -4.625631365330661,
          -4.62993940053517,
          -7,
          -7,
          -7,
          -3.157816961558364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5508884680813524,
          -7,
          -7,
          -7,
          -7,
          -4.330839741208471,
          -7,
          -3.9556685120366013,
          -3.559220144744601,
          -7,
          -7,
          -7,
          -3.198156625567903,
          -7,
          -4.3305355210905585,
          -3.934165027520354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.503467224264229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6485161337405545,
          -4.62921585647718,
          -7,
          -3.9826781933834843,
          -7,
          -7,
          -7,
          -3.744048379071207,
          -7,
          -7,
          -7,
          -7,
          -3.688783739005256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.410827372065674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.036688766393468,
          -7,
          -3.4114867925782897,
          -7,
          -7,
          -3.275424086374576,
          -7,
          -7,
          -7,
          -4.628184508073413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.921669138032477,
          -7,
          -7,
          -7,
          -4.629969946292171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8759578791368297,
          -2.8444224209905213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2968085816258053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.646168378774083,
          -4.637339601787825,
          -7,
          -7,
          -7,
          -4.641236075704003,
          -7,
          -4.067405658437824,
          -7,
          -2.5681838490463007,
          -7,
          -7,
          -7,
          -4.1853154580036565,
          -4.630529571426824,
          -4.631565516754539,
          -4.335257256434532,
          -4.635654616118119,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.34747638204818,
          -7,
          -7,
          -7,
          -2.9321565530043676,
          -7,
          -7,
          -3.5976220662213403,
          -7,
          -7,
          -7,
          -7,
          -4.634819733995179,
          -4.150275329169186,
          -7,
          -7,
          -7,
          -7,
          -2.554254122485101,
          -4.63206229944999,
          -7,
          -7,
          -7,
          -4.332731257471133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.450308995076148,
          -4.646550753640342,
          -2.2965418374290882,
          -4.625806154480438,
          -3.9342863021303813,
          -3.8066942630765674,
          -7,
          -7,
          -7,
          -7,
          -4.630936119064192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.628440020513509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.04336227802113,
          -7,
          -7,
          -2.9608626434200027,
          -2.4162019299772806,
          -1.9095103513348428,
          -4.627611614110506,
          -1.3612329996313997,
          -4.1653234794461484,
          -2.953583143592621,
          -1.5353058117916345,
          -2.381861901549193,
          -7,
          -3.097017539281824,
          -2.6144632758080677,
          -0.6105273838866435,
          -0.7765305929618449,
          -2.3983412166786438,
          -2.9836907081706965,
          -1.6488737217779532,
          -2.9414612373659264,
          -1.6727723848149636,
          -2.9466318368502,
          -2.62740962701253,
          -2.0936316718609898,
          -2.49938550769493,
          -2.42319904720951,
          -1.8246764291958442,
          -2.977336015364056,
          -7,
          -1.3912061101745812,
          -2.213233791698999,
          -2.5239875432589938,
          -3.1331376987883193,
          -1.1452718670818902,
          -2.48296979991094,
          -2.5167044408135446,
          -2.7610941899352284,
          -2.4547116884997537,
          -2.582771286369577,
          -3.058419245331889,
          -2.637779303052618,
          -4.008267937169863,
          -7,
          -3.4208025946779483,
          -3.6157537159921604,
          -4.072387776173931,
          -7,
          -3.1803552964487887,
          -7,
          -2.9811047634637635,
          -7,
          -7,
          -4.029894889003178,
          -2.9962223171445928,
          -4.670950545585898,
          -4.635312810258236,
          -3.7704653911235964,
          -7,
          -7,
          -3.8072740250669654,
          -4.757107415601235,
          -7,
          -7,
          -3.9639024551700692,
          -2.661580842457,
          -2.891590005962673,
          -7,
          -7,
          -7,
          -2.972134435189285,
          -4.667490309948332,
          -3.555245639000004,
          -7,
          -4.249084161669954,
          -7,
          -7,
          -2.9903304761428657,
          -3.8802131653034277,
          -7,
          -4.188056208438369,
          -4.354933966559146,
          -4.272429557401614,
          -7,
          -7,
          -3.768077564256461,
          -2.9392140854464,
          -4.63202176705472,
          -3.3840460396756726,
          -7,
          -7,
          -3.8158717320006788,
          -3.6374396927036643,
          -7,
          -7,
          -7,
          -7,
          -2.111149081998313,
          -2.583325687678573,
          -7,
          -4.633417953284989,
          -4.626945698847907,
          -3.86722188785143,
          -3.369907073710945,
          -3.678396965988749,
          -7,
          -7,
          -3.7256031264971328,
          -7,
          -3.0385995203317187,
          -4.631352435804037,
          -7,
          -7,
          -3.471282540892828,
          -7,
          -3.216947446947529,
          -7,
          -3.6744835066510486,
          -3.873543408844003,
          -4.631017382942784,
          -4.632710303832954,
          -7,
          -7,
          -7,
          -4.385633081072282,
          -7,
          -7,
          -3.3612463733898506,
          -2.672898626627781,
          -1.704064865625262,
          -4.6239105687622875,
          -4.644911033878752,
          -7,
          -4.635483746814912,
          -4.625549087265309,
          -7,
          -7,
          -4.045694513294837,
          -7,
          -7,
          -4.359645792674543,
          -7,
          -3.8255095744151486,
          -3.9303478327178527,
          -3.5615386395828335,
          -7,
          -7,
          -7,
          -4.632619236619118,
          -2.9876662649262746,
          -7,
          -7,
          -7,
          -3.126293790693266,
          -3.5071359469857537,
          -7,
          -7,
          -3.2866155022896026,
          -7,
          -2.361118647856173,
          -4.6278265379179295,
          -4.044627943008132,
          -7,
          -3.2127201544178425,
          -3.027999846677336,
          -7,
          -3.7173838369155834,
          -7,
          -7,
          -7,
          -3.597884575183753,
          -7,
          -4.624354300317013,
          -3.961961845481778,
          -7,
          -7,
          -4.672891798284876,
          -7,
          -7,
          -7,
          -3.6321258539987804,
          -3.387764379602052,
          -7,
          -4.336899809359534,
          -7,
          -7,
          -2.9543289276033557,
          -4.1694098981407,
          -4.625034495895203,
          -2.883232955012356,
          -3.0161624858249008,
          -4.032810082226799,
          -3.6273231761856515,
          -1.3570647125607291,
          -4.2003853242323865,
          -7,
          -4.630244761469706,
          -7,
          -7,
          -7,
          -7,
          -2.9682299255667552,
          -7,
          -7,
          -7,
          -3.2852701156989976,
          -7,
          -7,
          -7,
          -4.625085982478932,
          -7,
          -7,
          -4.3252795695916895,
          -3.368110644916976,
          -7,
          -7,
          -7,
          -3.426063723800878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7811191057733784,
          -4.065019214136254,
          -3.8756495750348585,
          -4.650433809651895,
          -4.323994202181974,
          -7,
          -3.6439360535105743,
          -7,
          -7,
          -1.3559007787531197,
          -7,
          -7,
          -4.636588183729843,
          -3.872127124489488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8788854701365376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.448860845607441,
          -2.562619949426298,
          -7,
          -7,
          -7,
          -3.503804297090878,
          -3.251759854528801,
          -7,
          -7,
          -7,
          -7,
          -4.447638591400498,
          -2.7893740181644615,
          -7,
          -7,
          -4.158196584044788,
          -2.9093749020813826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.20452694299984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5487753641351265,
          -7,
          -7,
          -4.451479405124862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5630589791948317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.462068408086943,
          -7,
          -7,
          -7,
          -3.4096288416375478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.647402532488529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1528843255738686,
          -7,
          -4.457139784659526,
          -7,
          -7,
          -7,
          -2.791912529111286,
          -4.453104198432209,
          -7,
          -7,
          -7,
          -7,
          -4.448381636854661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.455453968778628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9708779609577287,
          -7,
          -7,
          -7,
          -7,
          -4.460040429961608,
          -7,
          -4.49352775559078,
          -3.1743613637320154,
          -7,
          -7,
          -7,
          -3.4241858713584445,
          -7,
          -4.158528336790152,
          -4.160948480864697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8695016026972224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3669563247869063,
          -4.483515978390542,
          -4.484513374292612,
          -7,
          -7,
          -3.9300061034825893,
          -7,
          -7,
          -7,
          -3.637432544117484,
          -4.4599199557469165,
          -7,
          -7,
          -7,
          -3.7540423867854362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.679775150575617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.470278153606753,
          -7,
          -3.502923456589202,
          -7,
          -3.680531913962837,
          -3.316663311410181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9837164739137494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557591405968501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.174219766183947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.714497408649806,
          -2.971525815752038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.370096544531531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.473851770154815,
          -7,
          -3.7365425706549265,
          -7,
          -2.143460916864359,
          -7,
          -7,
          -7,
          -4.504729051621258,
          -3.9808362964839756,
          -7,
          -4.466585904594887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.007349420982268,
          -3.980124623621081,
          -7,
          -7,
          -2.2897007312907953,
          -7,
          -7,
          -3.379007509979479,
          -7,
          -7,
          -7,
          -7,
          -4.464385208841898,
          -4.453410082711584,
          -7,
          -7,
          -7,
          -7,
          -2.126452084878187,
          -4.460296326757476,
          -7,
          -7,
          -7,
          -7,
          -4.154256553346994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.453027693687722,
          -7,
          -3.5242190397438335,
          -4.481643246275584,
          -2.5684866678419978,
          -7,
          -4.4621882878701635,
          -3.0656073750355657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.484869032720402,
          -7,
          -7,
          -7,
          -7,
          -4.153845340080965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.179020086986456,
          -7,
          -7,
          -2.920858518855485,
          -2.701083998656677,
          -2.115810141409786,
          -3.4119715286436114,
          -1.7981696015670017,
          -7,
          -2.4056877866727775,
          -1.3253166704439294,
          -1.4218571139257665,
          -7,
          -2.3760779765022546,
          -2.299410066465394,
          -1.2922979507438739,
          -1.525750993485581,
          -2.4209387490986507,
          -2.283760884003622,
          -2.109662900499272,
          -2.8736800724992526,
          -1.728138849772079,
          -2.6780979584052456,
          -1.7018263005471468,
          -1.8946530416508809,
          -1.8857582713800698,
          -2.1386055309629564,
          -2.0135747566806343,
          -2.43659912394373,
          -1.3912061101745812,
          -7,
          -2.7174921845920776,
          -1.935735031066966,
          -1.9795404055227785,
          -1.3880986365523587,
          -1.9496363869101598,
          -1.222367170185466,
          -1.357887675311113,
          -1.8038128089007281,
          -1.9602925034159957,
          -2.4372451537473085,
          -2.0872973851301997,
          -3.421392368296887,
          -7,
          -2.7256773723606216,
          -3.233132146252907,
          -4.044748756778496,
          -4.455210427775805,
          -2.621477817010842,
          -3.680984807303974,
          -2.599556286536565,
          -7,
          -7,
          -3.366565775695184,
          -2.9849980366194937,
          -3.5624118329497274,
          -7,
          -3.1980152497483316,
          -3.620760489994206,
          -7,
          -3.074619551851069,
          -3.355975507128502,
          -4.477916732304635,
          -7,
          -3.380107825951645,
          -2.2775309162337645,
          -2.6840607460515464,
          -7,
          -7,
          -7,
          -2.7017330170879843,
          -4.511923447850146,
          -3.7194518238931606,
          -3.247250203774978,
          -3.5521038307411423,
          -7,
          -3.7316559050928637,
          -2.915262153350638,
          -3.3469952774377774,
          -3.990383258906234,
          -2.8640523809944796,
          -3.0796959696157464,
          -2.891609720508594,
          -3.639030895749854,
          -7,
          -2.2281642565150674,
          -2.5973430149761865,
          -4.15917603179347,
          -3.4881090860079356,
          -7,
          -3.5699734307202693,
          -3.5024817447857,
          -3.5806627239884357,
          -7,
          -7,
          -7,
          -7,
          -1.1807785634456034,
          -2.643847310299714,
          -7,
          -4.462308134571691,
          -4.151614972016013,
          -4.480064461595988,
          -3.097430853944242,
          -3.6161152654468784,
          -7,
          -7,
          -3.081848602267315,
          -7,
          -3.1743382274128167,
          -4.459241664878082,
          -7,
          -7,
          -4.04641711698399,
          -4.168423818103146,
          -3.3384564936046046,
          -4.461378456425079,
          -3.199785640163872,
          -4.489283322690485,
          -7,
          -4.46125835286184,
          -7,
          -7,
          -7,
          -3.840055884099814,
          -7,
          -7,
          -3.3262448043225046,
          -3.008892036344074,
          -1.3733789136471066,
          -7,
          -4.002065218826583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.881341852971215,
          -7,
          -7,
          -7,
          -7,
          -3.3120185940611497,
          -3.75724415102197,
          -3.1718288005614204,
          -7,
          -7,
          -4.449817679720294,
          -7,
          -2.840415361234832,
          -4.452047240809425,
          -7,
          -7,
          -2.333509813402564,
          -2.817323773419625,
          -7,
          -7,
          -3.307067950661298,
          -7,
          -2.6998964917388424,
          -4.45399066996823,
          -3.636659803394231,
          -7,
          -3.1987639676613915,
          -2.3734806492785756,
          -7,
          -3.4385687168066346,
          -7,
          -7,
          -7,
          -3.1088884329683015,
          -7,
          -7,
          -3.657356393229636,
          -7,
          -7,
          -4.2185748892664225,
          -4.459151146001476,
          -7,
          -7,
          -3.2650668939397445,
          -3.0188480832550355,
          -4.470895383280216,
          -4.469011558655687,
          -7,
          -7,
          -3.1892563062138293,
          -3.7033773685123497,
          -4.449817679720294,
          -3.0737183503461227,
          -2.491668890310033,
          -7,
          -2.9863237770507656,
          -2.091967735086787,
          -3.74795530690673,
          -4.449339526174968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.587398338914126,
          -7,
          -7,
          -7,
          -3.145403607683906,
          -7,
          -7,
          -4.449308659474037,
          -4.449894751981211,
          -7,
          -7,
          -3.9745730944738797,
          -3.7835319842742696,
          -4.4764838219144645,
          -7,
          -7,
          -3.2814424572708725,
          -7,
          -7,
          -7,
          -7,
          -4.450987704555041,
          -4.150710399135644,
          -3.733130363083499,
          -3.7932594110294806,
          -4.1862498207790875,
          -7,
          -7,
          -3.523601966899433,
          -7,
          -7,
          -2.0905560367890903,
          -7,
          -7,
          -7,
          -3.7881400774194143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7979458124824967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5904981702001146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.407317240973132,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1439511164239637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.444778414819479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.681395022773371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.948819315356727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.035856484623753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.294466226161593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4030484188737224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.258779310981983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.629868118746123,
          -3.340848170016427,
          -7,
          -7,
          -3.4920149788770503,
          -7,
          -3.3106225169268044,
          -4.116159272795033,
          -4.265226748420167,
          -7,
          -4.075619945928776,
          -3.6846209780269676,
          -2.505940940259191,
          -2.590605436252191,
          -4.413199143665641,
          -3.5250231998087056,
          -3.709066337709506,
          -4.66293717714878,
          -3.565217949843888,
          -3.717285540869072,
          -3.3591712057167005,
          -2.88155548819778,
          -3.9325244970505424,
          -3.792888742179074,
          -2.1058166374336857,
          -4.188168858586696,
          -2.213233791698999,
          -2.7174921845920776,
          -7,
          -4.014923565140791,
          -3.5516695295755802,
          -3.5143817062113496,
          -7,
          -7,
          -7,
          -3.963953016652479,
          -7,
          -3.592361839214949,
          -2.9304905653062696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.174117981254267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216667229548209,
          -7,
          -7,
          -7,
          -4.081869155842856,
          -4.330645644407504,
          -7,
          -7,
          -7,
          -4.623373356812658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5100756113539493,
          -4.037824750588342,
          -7,
          -7,
          -3.2216749970707688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.63964583415458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351138958581849,
          -3.5460102648496363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.752221362521766,
          -7,
          -7,
          -7,
          -3.384353414137506,
          -7,
          -7,
          -7,
          -3.762378429311964,
          -7,
          -4.386331279460089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.797406049676382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.222651452136772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.184577874932025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.641275757231913,
          -7,
          -7,
          -7,
          -3.226857570288723,
          -7,
          -7,
          -2.219388027689568,
          -7,
          -7,
          -7,
          -3.6035773681514667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6734816970733473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703600863886312,
          -2.5560793781615727,
          -7,
          -7,
          -7,
          -3.1217359506263405,
          -3.305407105902434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5349043560660567,
          -4.432640641207875,
          -7,
          -3.4303551661442375,
          -2.53712497340571,
          -7,
          -4.703678200880355,
          -7,
          -7,
          -7,
          -4.227363866089596,
          -3.857684212927998,
          -4.703961652091485,
          -7,
          -7,
          -4.403352197532708,
          -7,
          -7,
          -7,
          -7,
          -4.112847883836081,
          -4.226084115975824,
          -3.39451206240183,
          -7,
          -7,
          -3.3067080309848262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.281849481182487,
          -2.922552466761376,
          -7,
          -7,
          -4.410768800392774,
          -7,
          -7,
          -7,
          -4.703875777319706,
          -7,
          -4.7109969149162225,
          -7,
          -7,
          -7,
          -3.3223690256376273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.706777504386875,
          -7,
          -7,
          -3.9797824326358735,
          -7,
          -4.7043993494928875,
          -7,
          -7,
          -7,
          -7,
          -4.703282778142782,
          -4.40185699938287,
          -4.405389053169786,
          -4.704630893182262,
          -7,
          -7,
          -4.40491065174079,
          -7,
          -2.5921715180832483,
          -7,
          -4.703463341883293,
          -7,
          -7,
          -7,
          -4.402287181360576,
          -7,
          -7,
          -7,
          -4.242392331375743,
          -7,
          -7,
          -7,
          -4.406233511374323,
          -7,
          -7,
          -7,
          -7,
          -4.008404269288749,
          -7,
          -7,
          -7,
          -4.404020791388131,
          -2.665164685826289,
          -4.402794248640903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.883815499236417,
          -2.7838272880918025,
          -7,
          -4.404790968996309,
          -7,
          -3.0752150588300236,
          -7,
          -4.010562828804489,
          -4.233808065724531,
          -7,
          -7,
          -7,
          -4.227483917481322,
          -7,
          -7,
          -2.853925332171701,
          -4.702775077901044,
          -7,
          -7,
          -7,
          -7,
          -2.900770714997175,
          -4.4221711002794475,
          -4.246638070980783,
          -4.008583140271812,
          -7,
          -3.496345278086235,
          -7,
          -7,
          -7,
          -3.4671968807807247,
          -4.107676246526482,
          -7,
          -7,
          -7,
          -3.7520484478194387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.704099016416958,
          -7,
          -2.41400876822251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703592270036801,
          -7,
          -3.4365894474446383,
          -7,
          -3.179067762715081,
          -7,
          -4.408129681227052,
          -2.399606128061048,
          -4.226359279795683,
          -3.7062738755272857,
          -3.802884849425611,
          -3.803550997782215,
          -3.7533957859406746,
          -7,
          -4.705324784486743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4663559484189665,
          -7,
          -3.200269990190228,
          -7,
          -4.708250888591378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.286697594339884,
          -4.102613766771564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.707024836855785,
          -4.106182394938962,
          -3.6492212391658385,
          -2.3958563241394613,
          -7,
          -7,
          -7,
          -4.007858683843716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5152477338444026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.704588024033806,
          -7,
          -7,
          -3.1301275018172254,
          -4.237258806492558,
          -7,
          -7,
          -4.703265577680112,
          -3.638314505630271,
          -4.229238022747195,
          -2.656842345127794,
          -7,
          -2.148734210507529,
          -4.4022355820161305,
          -4.7029558528042,
          -7,
          -3.890365121448124,
          -3.667155679972336,
          -4.408536744878563,
          -3.634183274561929,
          -4.235848158468363,
          -7,
          -7,
          -7,
          -4.704064679408567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4930888401537827,
          -4.708318901195369,
          -7,
          -4.704141933860088,
          -2.0536292292032847,
          -7,
          -7,
          -3.4253401015808675,
          -7,
          -7,
          -7,
          -7,
          -3.2969097705624963,
          -3.927900501473422,
          -7,
          -7,
          -7,
          -4.7043650362227245,
          -2.1804201501602662,
          -4.107888025182799,
          -7,
          -7,
          -7,
          -4.410389146513233,
          -4.406156810261728,
          -7,
          -7,
          -4.705401815129262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8181525516426755,
          -4.120030723527898,
          -2.4073595772172585,
          -7,
          -4.012026910580204,
          -3.3509821062800262,
          -7,
          -7,
          -7,
          -7,
          -4.231902649456643,
          -4.723997176191744,
          -7,
          -7,
          -7,
          -7,
          -4.405926625612947,
          -4.703325776319297,
          -7,
          -7,
          -7,
          -7,
          -3.2736377706522455,
          -7,
          -7,
          -1.4660437125923544,
          -1.9458360528338758,
          -2.686724987438468,
          -4.007244079839634,
          -2.936536333156518,
          -3.1866987985351756,
          -2.49410713792028,
          -2.251559446395231,
          -1.029734020966166,
          -7,
          -2.051105441902926,
          -1.6863367526203503,
          -2.504857425609683,
          -2.5837941584262274,
          -1.677122166906849,
          -2.3818526137441314,
          -2.5264445396360236,
          -1.96691887785885,
          -2.8334658601706924,
          -1.3370327400260669,
          -3.2464538150912925,
          -2.494454185160028,
          -1.7649961974579178,
          -1.039208860811914,
          -2.443460333175155,
          -3.3180700702467916,
          -2.5239875432589938,
          -1.935735031066966,
          -4.014923565140791,
          -7,
          -1.9176650178191754,
          -2.5938347213980166,
          -2.947485316123156,
          -2.3137396338363545,
          -2.3379368216171166,
          -2.919962188820542,
          -3.1755330262265606,
          -1.3807688691855144,
          -2.1455802603499063,
          -2.874973296107238,
          -7,
          -2.514672557816041,
          -2.5082845223131955,
          -3.020658300284545,
          -3.451581772710935,
          -2.360312905256625,
          -3.4787107555127594,
          -1.9551346223165285,
          -4.148548673088884,
          -4.237794993273923,
          -2.9462978342205512,
          -2.6679503290207967,
          -2.5443761695015814,
          -7,
          -2.7306176618021176,
          -3.314894817807367,
          -7,
          -2.6879460134808286,
          -3.016655354567462,
          -4.242847744653152,
          -4.406173856124117,
          -2.5723445457257155,
          -1.640458686908127,
          -2.7749792130712096,
          -7,
          -4.416315913177959,
          -7,
          -2.6313097304603423,
          -4.438755883731937,
          -3.607499175819488,
          -3.0525416492983686,
          -3.6137502334963427,
          -4.703781295454297,
          -3.784260582566084,
          -2.018178732002881,
          -3.2953282901525034,
          -3.333506049741619,
          -2.0169685917053837,
          -2.4044671718110897,
          -2.4286565668208406,
          -3.218010042984363,
          -7,
          -2.1080732087659397,
          -2.3471711118641507,
          -2.9531405612996258,
          -2.7453272910995308,
          -4.7115204156674295,
          -2.8528224411993004,
          -3.620248199186466,
          -3.1091475495168543,
          -4.102648055659481,
          -7,
          -7,
          -4.229220943702738,
          -2.6032146934613314,
          -2.151101406384551,
          -7,
          -3.179095359718127,
          -3.475004239923217,
          -2.8567206159793326,
          -2.2304708807665583,
          -3.263001660603791,
          -7,
          -7,
          -2.176474521057038,
          -4.006423252507643,
          -2.0746336182969043,
          -3.4080533142979808,
          -3.2604462057323165,
          -3.5417040232842885,
          -2.6514030808044518,
          -3.3530963019716764,
          -2.808902315104778,
          -3.2187387393887366,
          -3.1046236604353257,
          -2.733737564808792,
          -3.2937279257888608,
          -3.596394067309122,
          -7,
          -4.7048280367803335,
          -7,
          -2.6173065165235503,
          -4.2284859086849425,
          -4.703368770239115,
          -2.0223401021493177,
          -1.5688887641010931,
          -1.5084400205733615,
          -4.703196769016287,
          -3.465209297290123,
          -4.006876609403363,
          -3.2071881988941064,
          -7,
          -7,
          -4.703815654874549,
          -3.2456031364077282,
          -4.70474233316836,
          -3.7066324508732946,
          -2.829697676172511,
          -7,
          -2.1137040935650018,
          -3.5033990969678186,
          -2.8353651041047767,
          -4.702878387059499,
          -3.709151192339796,
          -4.40308618823917,
          -2.655486914153674,
          -1.9798488744665137,
          -3.750996669417183,
          -4.226642860005068,
          -4.704150516839799,
          -3.1517407044935295,
          -1.9155992462576952,
          -3.4776999283321306,
          -3.7532595366903325,
          -2.7251501016282584,
          -4.706060297176204,
          -1.6569337735489773,
          -4.007423429204934,
          -2.5155592635276585,
          -4.006457484638183,
          -3.451214843792629,
          -2.0164676404572313,
          -7,
          -2.2346251685731877,
          -3.804854713005252,
          -4.403738050363856,
          -3.5014187421113556,
          -2.937066312017428,
          -7,
          -7,
          -2.249465632986819,
          -4.230831953431828,
          -3.8040882957516735,
          -2.9440672930585112,
          -3.430295763840919,
          -3.308744955855214,
          -4.107031804511505,
          -2.2603320571010896,
          -1.4881782505045555,
          -3.3006038439866345,
          -2.935784279507291,
          -4.401986098723474,
          -7,
          -2.4404456585152707,
          -2.901540875900876,
          -4.226977761697296,
          -3.062882690130364,
          -1.5197512654844683,
          -3.1435886388415737,
          -2.0128297618954236,
          -2.419735097623596,
          -2.575780568156982,
          -4.22671157884568,
          -4.009442396801993,
          -4.226599905207357,
          -4.402132364931751,
          -4.705829514521635,
          -4.4086553999424645,
          -2.328627177542981,
          -7,
          -4.226780286814562,
          -7,
          -2.2514848516286277,
          -4.7035235131180295,
          -4.405303662984316,
          -4.7038500115766535,
          -4.704176264761226,
          -3.9283104872477113,
          -3.801146350316844,
          -3.860012698749663,
          -2.4693586096046616,
          -3.2563195389747777,
          -4.7074168686367095,
          -4.703935891442843,
          -3.2310701141047367,
          -4.225731307354037,
          -7,
          -7,
          -4.404072179076356,
          -3.5004080174600545,
          -4.705222055705383,
          -3.483959548273282,
          -2.726710912492605,
          -3.6838490294450406,
          -4.22698634552522,
          -7,
          -3.0661519241936213,
          -7,
          -4.7028869950468515,
          -2.43930110762843,
          -7,
          -7,
          -3.935549248954129,
          -2.6861605098427175,
          -4.010282991680263,
          -7,
          -7,
          -7,
          -7,
          -2.6918760125660888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7411938214377605,
          -7,
          -7,
          -7,
          -7,
          -4.315130317183602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.306246268757506,
          -7,
          -7,
          -7,
          -3.0814136390692934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.419550989026631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.253725595250898,
          -7,
          -3.8812590869948047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.183981218914592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9547890547379705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.914911441141365,
          -7,
          -4.2224563366792465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5471415203838537,
          -7,
          -4.219610719301437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.231138136029719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3652227097019267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7614767795447017,
          -7,
          -7,
          -7,
          -3.435213235221657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3272908044180514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.32434419893904,
          -7,
          -7,
          -7,
          -7,
          -3.875736307687334,
          -7,
          -7,
          -7,
          -4.275886960301226,
          -7,
          -7,
          -7,
          -7,
          -4.450726262021876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.226006694729179,
          -7,
          -7,
          -7,
          -7,
          -3.144549301118705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.166892434227915,
          -7,
          -7,
          -2.9131530351912573,
          -4.219767844658398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.664006990415448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.149361247980459,
          -3.92236209678479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9909379276601444,
          -2.859412255610798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8231898900874377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.240524288112364,
          -7,
          -7,
          -3.9510702531688118,
          -7,
          -7,
          -7,
          -3.5623880418581058,
          -7,
          -4.025428761407241,
          -7,
          -2.6861162052190437,
          -4.219060332448861,
          -7,
          -7,
          -7,
          -4.2354274364449696,
          -7,
          -3.948559662108962,
          -7,
          -7,
          -7,
          -7,
          -4.221440320811741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278822168352688,
          -7,
          -7,
          -7,
          -2.757150543316607,
          -7,
          -7,
          -4.342817314635733,
          -7,
          -7,
          -7,
          -7,
          -3.643798000679235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8256937024148434,
          -4.239224378487128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8007342573129406,
          -7,
          -2.7383985318837345,
          -7,
          -7,
          -3.756576947544535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9705793057148506,
          -7,
          -7,
          -2.197942749161937,
          -2.4719460063595164,
          -2.9080733475736693,
          -7,
          -2.7582960793867843,
          -2.8483786204227477,
          -1.8979614050769982,
          -2.245725338344771,
          -2.0982023330127793,
          -7,
          -1.5020080105202644,
          -2.242305130766777,
          -2.684201936106831,
          -2.800209581421612,
          -2.0107939376664237,
          -1.06325296821847,
          -2.43995535374684,
          -2.321732417461062,
          -2.0747389401070246,
          -2.209592265024327,
          -2.056414769115683,
          -1.5763666781634307,
          -2.869195037904703,
          -2.2814310988609674,
          -2.164634570474998,
          -2.684645915265751,
          -3.1331376987883193,
          -1.9795404055227785,
          -3.5516695295755802,
          -1.9176650178191754,
          -7,
          -2.7850097358756543,
          -2.44714499709855,
          -1.7734801471798123,
          -1.7653058970960558,
          -2.685572997375497,
          -2.6826674931136196,
          -2.904952098322955,
          -1.981576361720284,
          -3.803610730393364,
          -4.242218320247613,
          -3.0849985064583896,
          -2.221921125998809,
          -3.2229764498933915,
          -7,
          -2.9481604689796845,
          -4.237543738142874,
          -3.4082399653118496,
          -4.048791273848409,
          -4.253701381011985,
          -3.493550987970057,
          -3.13569630425525,
          -7,
          -7,
          -4.335618349377605,
          -7,
          -7,
          -3.8108371511404884,
          -3.4208630205509762,
          -7,
          -7,
          -2.399167832403589,
          -2.8980908084740675,
          -2.256239193305345,
          -7,
          -7,
          -4.222274149796563,
          -2.7874452382539627,
          -7,
          -3.6359651915242375,
          -2.4298598985091915,
          -3.442605178964801,
          -7,
          -3.716754357432697,
          -3.643666480980489,
          -3.203799078428703,
          -4.251248762305845,
          -3.5385946772872883,
          -3.596948786692873,
          -2.6522463410033232,
          -4.278456350394209,
          -7,
          -3.150049945162385,
          -2.5658560713786627,
          -7,
          -3.8698548372107338,
          -7,
          -7,
          -4.307688539595161,
          -3.7254869263323838,
          -7,
          -7,
          -7,
          -7,
          -1.7500945520027595,
          -2.115416198356651,
          -7,
          -3.4641665133315516,
          -3.1845623877377895,
          -2.5208810563217763,
          -2.499955165640437,
          -2.6829969783596055,
          -7,
          -7,
          -2.694312646223346,
          -3.7484464587198087,
          -2.560144354449341,
          -3.5382971851679743,
          -2.9538105399339547,
          -3.1828424585586923,
          -2.1914188442053857,
          -3.1746896062920578,
          -2.91677425847629,
          -3.0097757327440036,
          -3.2308829988575924,
          -2.528036670631238,
          -3.634426885047629,
          -3.1262813018154407,
          -7,
          -4.223755453657241,
          -7,
          -2.6989888862943228,
          -3.9251315277591385,
          -7,
          -2.09738265416373,
          -2.0152757593060646,
          -1.5682914132996109,
          -4.218797998111738,
          -3.1558030208239303,
          -7,
          -3.645422269349092,
          -7,
          -7,
          -3.9196010237841112,
          -2.6625274978220763,
          -7,
          -4.2296562496672125,
          -3.306425027550687,
          -7,
          -2.4689009244729716,
          -3.7553920379663954,
          -2.8617494140448767,
          -7,
          -4.237166582685473,
          -4.221648928192229,
          -3.9395192526186187,
          -2.415761415240735,
          -4.2254126728659545,
          -7,
          -4.221701064384597,
          -2.543305455072855,
          -2.541310366621995,
          -3.0577421558287528,
          -7,
          -2.828888478052161,
          -7,
          -2.1902931382032444,
          -4.2286826097129655,
          -2.8933687039646,
          -3.7485497883614816,
          -2.092382702652577,
          -2.944729360303296,
          -7,
          -2.988173701342641,
          -4.233478391931892,
          -3.922543815390706,
          -3.7494528755696246,
          -2.6533813732422042,
          -7,
          -7,
          -3.35293250260102,
          -7,
          -3.930108140365738,
          -3.5555377913202615,
          -3.6351065913575105,
          -3.2793246654426103,
          -4.2366883817646155,
          -2.4754694067467145,
          -2.6374063316280676,
          -3.955639653023252,
          -2.9975319986424003,
          -7,
          -7,
          -2.7154794810755183,
          -2.65959158058081,
          -3.744423382307533,
          -2.5491475698795507,
          -2.0796244220539357,
          -2.7005306569785916,
          -2.509805434070105,
          -2.6338624181709775,
          -2.94509420180716,
          -7,
          -3.456315413106618,
          -4.22050034561473,
          -4.2187455122234745,
          -4.226780286814562,
          -7,
          -2.502336063378186,
          -7,
          -3.7438232216037504,
          -7,
          -2.5369742892668388,
          -7,
          -3.3829428246253754,
          -3.61857102812013,
          -3.92069713446992,
          -7,
          -7,
          -3.5257443001943787,
          -3.2338956292773764,
          -3.3624117830472824,
          -3.930465080784248,
          -7,
          -3.120776352315039,
          -7,
          -7,
          -7,
          -4.2246366386814405,
          -3.922543815390706,
          -7,
          -3.844021310509786,
          -2.6985466393218007,
          -7,
          -4.221674997070769,
          -7,
          -3.0635913440707676,
          -7,
          -7,
          -2.648273526438782,
          -7,
          -7,
          -3.6481159567559627,
          -2.690355133127491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6841883019367963,
          -4.218062617826375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.245871057494562,
          -4.5880923482183755,
          -7,
          -7,
          -3.507357589416977,
          -3.4197492856943774,
          -7,
          -7,
          -7,
          -4.586508539462949,
          -7,
          -2.6808029121706944,
          -4.619635859719037,
          -7,
          -7,
          -2.8915643707545753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.581312362231848,
          -3.72285125039637,
          -7,
          -7,
          -7,
          -7,
          -4.582813067170428,
          -7,
          -7,
          -7,
          -4.2940692274708905,
          -7,
          -3.695007137399929,
          -4.579177447294851,
          -7,
          -3.736794754924361,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.593396842300207,
          -3.3527409004337323,
          -7,
          -7,
          -4.113809702672945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.08334134193701,
          -7,
          -7,
          -4.579863590864233,
          -4.579085879525616,
          -4.59982850903801,
          -7,
          -7,
          -7,
          -4.035917794967079,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.106689409193445,
          -7,
          -4.10906081946941,
          -7,
          -7,
          -7,
          -2.9979398687097745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.123993117376059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.613251442466525,
          -7,
          -7,
          -7,
          -7,
          -4.588383768378728,
          -7,
          -3.768320905020316,
          -3.4225725624070504,
          -7,
          -7,
          -7,
          -3.4735811413625797,
          -4.278970693925059,
          -4.2869950739688525,
          -7,
          -7,
          -7,
          -7,
          -4.581471773962398,
          -7,
          -7,
          -3.208700758415077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0489163245115374,
          -4.305673745669693,
          -4.5854268870614865,
          -7,
          -4.041027329343209,
          -4.579772167664273,
          -7,
          -7,
          -2.6951464433728933,
          -4.588294121462958,
          -7,
          -7,
          -7,
          -3.28060463314932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.581483158275855,
          -7,
          -7,
          -4.580092064700632,
          -3.0404879542618537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.580080643863007,
          -7,
          -3.8969669019331548,
          -7,
          -3.47643549340525,
          -7,
          -4.110320296840297,
          -3.171053801432508,
          -7,
          -7,
          -7,
          -4.584285983002637,
          -4.108463541203595,
          -4.287969594835454,
          -7,
          -7,
          -4.281465173199528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.963938860030751,
          -7,
          -4.299801377511212,
          -7,
          -4.109094603121803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4855685558706275,
          -4.581585603670256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2903420614839938,
          -2.954870831225884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.97648753730519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.59440360098501,
          -7,
          -7,
          -7,
          -3.9965773367182584,
          -7,
          -3.5882003798974735,
          -7,
          -2.3281705933368784,
          -7,
          -7,
          -7,
          -7,
          -4.285827252753274,
          -4.588025069632833,
          -3.8942052591420837,
          -4.592543142904612,
          -7,
          -7,
          -7,
          -7,
          -4.58508831746747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9076800242424197,
          -4.285298455375746,
          -7,
          -7,
          -2.6508543881639977,
          -7,
          -7,
          -4.160828543144547,
          -7,
          -7,
          -7,
          -3.9779749661809207,
          -3.8925620527814804,
          -4.282406837957956,
          -7,
          -7,
          -7,
          -4.581107318275928,
          -2.4049034996171,
          -3.986447011352735,
          -7,
          -7,
          -7,
          -4.113308149918387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.282123418809911,
          -7,
          -3.627896295508615,
          -4.127396390776607,
          -2.4174801954167795,
          -7,
          -3.811720193231691,
          -3.6316645608153735,
          -7,
          -7,
          -7,
          -7,
          -3.888269377393971,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.579932145636578,
          -7,
          -7,
          -4.126218019314304,
          -7,
          -7,
          -3.3304247430131744,
          -2.639123277221592,
          -2.1412346783573293,
          -7,
          -0.6587639854612518,
          -4.600079442261521,
          -2.8515538946121692,
          -1.435836639979589,
          -2.4495402967153828,
          -7,
          -3.180134839207975,
          -2.6655520394035577,
          -0.8317798231285242,
          -1.2671336945344718,
          -3.0169289290369714,
          -2.907564903106715,
          -1.9497756399458581,
          -3.024222455723751,
          -1.4864562142914062,
          -3.041981724889763,
          -2.3827736283347782,
          -2.0245083220671165,
          -2.266375552376499,
          -2.4689324896507245,
          -2.684810171879624,
          -2.677037386105213,
          -1.1452718670818902,
          -1.3880986365523587,
          -3.5143817062113496,
          -2.5938347213980166,
          -2.7850097358756543,
          -7,
          -2.1831498341535824,
          -2.223182988705421,
          -2.6411170093614063,
          -1.985781911791651,
          -2.2427243654065663,
          -3.0791160969890377,
          -2.5313946888721164,
          -3.391946724279145,
          -7,
          -2.5897053117637743,
          -3.6482999488182797,
          -4.334202350575516,
          -4.584794676832955,
          -2.925774277148833,
          -3.8887634042622317,
          -3.0154196374474895,
          -7,
          -4.595110255778039,
          -3.791278259413112,
          -3.012356283057885,
          -4.154200732412475,
          -7,
          -3.9353056902899253,
          -7,
          -7,
          -3.7658707031269545,
          -3.946681470082918,
          -7,
          -7,
          -3.6665251803374077,
          -2.5895893105452106,
          -2.5945400247532024,
          -7,
          -3.695043658821294,
          -7,
          -3.0687339932285886,
          -7,
          -3.00357517805747,
          -4.620739689951964,
          -3.9925358452657775,
          -7,
          -4.023931157373373,
          -3.475516833845267,
          -4.054137904817809,
          -7,
          -3.926023297896978,
          -4.614939378499252,
          -3.938569756221061,
          -4.305512587470589,
          -7,
          -3.1756121573812774,
          -3.1302226216788993,
          -4.588529405160941,
          -3.3881711982636977,
          -7,
          -4.121100029976307,
          -3.4741433897608056,
          -3.9823074227385105,
          -7,
          -7,
          -7,
          -7,
          -2.0242625200121336,
          -2.2977835894049323,
          -7,
          -4.112906490253314,
          -4.281862509737461,
          -4.3023201036621055,
          -3.4724821869260936,
          -3.5891897589878594,
          -7,
          -7,
          -3.7960388160046143,
          -7,
          -3.084061470177998,
          -4.587789512472801,
          -4.58601311649554,
          -4.599162287443591,
          -3.557136108599234,
          -4.294378035587241,
          -3.327917913524882,
          -4.589379844241917,
          -3.806801565307348,
          -3.765104169387963,
          -3.6841718627005906,
          -3.987163318162591,
          -7,
          -7,
          -7,
          -3.694166295933198,
          -7,
          -7,
          -3.0272071821786755,
          -2.8454883017723622,
          -1.5651070109504064,
          -4.579554960400999,
          -7,
          -4.583164754791726,
          -7,
          -7,
          -7,
          -7,
          -3.7607239721419514,
          -7,
          -7,
          -7,
          -7,
          -3.6309259600101225,
          -4.585629902197222,
          -3.753145151639366,
          -7,
          -4.587654850995718,
          -7,
          -7,
          -2.9263865501223236,
          -7,
          -7,
          -7,
          -3.3161696136272876,
          -3.5308889765187996,
          -4.586486032493526,
          -4.585449448985846,
          -3.149598825945172,
          -7,
          -2.380360629254868,
          -7,
          -4.127612259002789,
          -7,
          -3.1212767649547644,
          -2.5443331814048498,
          -4.103370350201992,
          -3.5528607876775875,
          -7,
          -7,
          -7,
          -3.2345502933923744,
          -7,
          -7,
          -4.143295907124072,
          -4.585911710319434,
          -7,
          -4.0313680628857735,
          -4.587722186953561,
          -4.607165397007267,
          -7,
          -3.5201911837557343,
          -3.5474670224263853,
          -3.994361151908001,
          -7,
          -7,
          -7,
          -2.6521457355293707,
          -4.303530832062248,
          -7,
          -2.4875802256342365,
          -2.866945032758351,
          -4.114577627000166,
          -3.628788204481048,
          -2.2170128461158742,
          -3.5591782023538547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0517311960598494,
          -7,
          -7,
          -7,
          -3.2233451849791965,
          -7,
          -7,
          -4.580423138411845,
          -7,
          -4.5840031176456115,
          -7,
          -4.582233863920993,
          -3.8270352376582064,
          -4.123514088042597,
          -7,
          -7,
          -3.984707294482673,
          -7,
          -7,
          -7,
          -4.582108836392919,
          -7,
          -4.2811925036053236,
          -3.422753941301348,
          -3.834388909363871,
          -3.9097806062427685,
          -7,
          -7,
          -3.7566469736211103,
          -7,
          -7,
          -2.2158522301944057,
          -7,
          -7,
          -4.292521884574141,
          -3.9097164532343447,
          -7,
          -7,
          -7,
          -4.105453410538649,
          -7,
          -3.9171482644162796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6868945016279873,
          -7,
          -7,
          -7,
          -7,
          -3.8495217813829723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.617367343179719,
          -4.317666442356502,
          -7,
          -7,
          -2.8640258120883804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.237116270535057,
          -3.2195354099174534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9659773740003734,
          -7,
          -3.410248449698567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5634810853944106,
          -7,
          -7,
          -7,
          -7,
          -4.233554492714523,
          -4.233884108765886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2643297543348835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.524370154542358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.24789965088881,
          -7,
          -7,
          -4.245290528606833,
          -3.3000299678823013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.453104198432209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7031838661780445,
          -4.468893547858615,
          -7,
          -7,
          -7,
          -3.376430951177879,
          -7,
          -3.7746385998091383,
          -4.2557547866430445,
          -7,
          -7,
          -7,
          -4.237468333249569,
          -7,
          -7,
          -3.8140976983042227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335698551498222,
          -7,
          -7,
          -7,
          -7,
          -4.062506775208683,
          -7,
          -7,
          -7,
          -3.4431959097719598,
          -4.252391803181244,
          -7,
          -7,
          -7,
          -3.096849585224196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.290856641538179,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.536450216176842,
          -7,
          -7,
          -3.2599827474128915,
          -7,
          -7,
          -7,
          -7,
          -3.9455178220778397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.261833620575751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9335102949995018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.827024458044125,
          -3.482321023291508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.008960296866488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.28602960050819,
          -7,
          -7,
          -7,
          -7,
          -3.4962606330422306,
          -7,
          -4.33779857726225,
          -7,
          -2.602837406048462,
          -7,
          -7,
          -7,
          -7,
          -4.249320676637634,
          -7,
          -4.263091379851672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.291413254570215,
          -7,
          -7,
          -7,
          -2.906221190213982,
          -7,
          -7,
          -4.353704703572165,
          -7,
          -7,
          -7,
          -7,
          -4.25956998964356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.696393180099337,
          -7,
          -7,
          -7,
          -7,
          -3.9560242822806773,
          -3.9438653380278805,
          -7,
          -7,
          -4.2396997966866605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.241222631195891,
          -7,
          -3.412090777733802,
          -7,
          -2.647142153553563,
          -4.237870341476738,
          -7,
          -3.4365978118886917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.25321681250213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.174656089737317,
          -2.556428521510324,
          -2.574080546575145,
          -7,
          -2.2536275242685075,
          -3.277127671229863,
          -3.03818286599066,
          -1.9941457669893958,
          -2.6972047765079417,
          -7,
          -3.3272174217282786,
          -2.4754544644931236,
          -2.266600329981704,
          -2.2005769267548483,
          -3.3637999454791094,
          -2.330328187240235,
          -1.891836055588394,
          -2.976871764227438,
          -2.744814345108343,
          -3.2966576267250685,
          -2.3838857369571556,
          -2.2126606051311555,
          -2.525710502874475,
          -2.428522865815281,
          -3.0256547388348216,
          -2.532054039419485,
          -2.48296979991094,
          -1.9496363869101598,
          -7,
          -2.947485316123156,
          -2.44714499709855,
          -2.1831498341535824,
          -7,
          -1.1405712936568675,
          -1.6694973429466924,
          -0.7789146439391479,
          -0.7124645792659058,
          -2.920367592655386,
          -2.77629050359667,
          -3.9380190974762104,
          -7,
          -3.079735823647553,
          -3.6137126531882093,
          -4.047352760753935,
          -7,
          -2.814417958920844,
          -4.251370505496702,
          -3.2514368201863437,
          -7,
          -7,
          -3.456335661823607,
          -3.0235220799647475,
          -4.34086036206488,
          -7,
          -2.898470515114087,
          -4.262213705476417,
          -7,
          -3.522009286567709,
          -2.834610068414402,
          -4.281056104583504,
          -7,
          -3.3655100073792745,
          -2.591990301559195,
          -2.734673526117867,
          -7,
          -7,
          -7,
          -3.0364933078027514,
          -7,
          -3.638297858979117,
          -4.018804483937159,
          -3.974373507081423,
          -7,
          -3.6313016868314865,
          -4.130011949671904,
          -3.8545125103702715,
          -7,
          -3.7263196121107756,
          -3.529836566775372,
          -3.795421160051872,
          -4.291057894434276,
          -7,
          -3.414236244397732,
          -3.2652408424311914,
          -7,
          -3.36178593172792,
          -4.257342526505176,
          -7,
          -3.4741329781460157,
          -3.8314698345875327,
          -7,
          -7,
          -7,
          -7,
          -2.014878638321159,
          -3.1240148788874076,
          -7,
          -3.9551583869257936,
          -7,
          -4.28443073384452,
          -3.38396217250729,
          -4.2547655324161475,
          -7,
          -7,
          -3.581627333755595,
          -7,
          -2.4965469189520992,
          -4.251297463677569,
          -7,
          -7,
          -3.049140463158965,
          -3.4893255507504053,
          -3.991004440330755,
          -7,
          -3.2449200439124537,
          -3.9977357765978985,
          -7,
          -3.9534697432534016,
          -7,
          -7,
          -7,
          -4.37383114507383,
          -7,
          -7,
          -3.2503824644306647,
          -2.760020172619173,
          -2.024550799858992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2479509599604097,
          -7,
          -7,
          -3.8414220444023592,
          -7,
          -3.2259451449169103,
          -4.24659704910637,
          -3.2735336801512975,
          -7,
          -4.251005173493635,
          -7,
          -7,
          -2.9596205198487553,
          -3.938544741419228,
          -7,
          -7,
          -3.313192063634804,
          -3.765053551849675,
          -4.248463717551032,
          -7,
          -3.076963910388137,
          -7,
          -2.586901841614534,
          -4.242789809478676,
          -7,
          -4.239974801116937,
          -3.641498898294518,
          -2.8331126386247925,
          -7,
          -3.6434921560082274,
          -7,
          -7,
          -4.240848658485361,
          -3.315923719821369,
          -7,
          -7,
          -3.84210976344061,
          -7,
          -3.944137073158098,
          -3.867801281134174,
          -7,
          -7,
          -7,
          -3.5013918525528274,
          -3.553701021549961,
          -7,
          -3.9658834267863567,
          -7,
          -7,
          -3.3736597194838454,
          -7,
          -7,
          -4.272282644290865,
          -3.028455053499362,
          -4.259832699063484,
          -3.5106790310322102,
          -3.4100176082030527,
          -3.877640056831926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5172618951360146,
          -7,
          -7,
          -7,
          -3.1488269225528294,
          -4.234188147853202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.239149264858293,
          -3.811217414675501,
          -7,
          -7,
          -7,
          -4.249222823996674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6335290505821596,
          -7,
          -3.8185337947129234,
          -7,
          -7,
          -3.804093977891654,
          -7,
          -7,
          -3.408203611015591,
          -7,
          -7,
          -4.263754388840006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7745241924673554,
          -7,
          -7,
          -7,
          -4.273279131626577,
          -3.6769221255374807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8490737449449446,
          -4.2689989585426735,
          -7,
          -7,
          -3.1415607147757774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5926464265465854,
          -7,
          -7,
          -7,
          -7,
          -4.181614951728961,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4146988443936896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.994866823015008,
          -7,
          -7,
          -4.201888500365973,
          -7,
          -4.173739713951887,
          -4.174117981254267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.023732456741596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8926371317827746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.184237029016371,
          -7,
          -3.7129301630395437,
          -7,
          -7,
          -7,
          -3.2469542651406975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.187041040042328,
          -4.172281761455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.138967138122855,
          -7,
          -7,
          -7,
          -7,
          -4.195512210674072,
          -7,
          -4.255224247479844,
          -3.957926386620302,
          -7,
          -7,
          -7,
          -3.442059381836555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.532608801355367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9880458832342387,
          -7,
          -4.239499684031626,
          -7,
          -7,
          -4.018970808600747,
          -7,
          -7,
          -7,
          -3.0050542751160636,
          -7,
          -7,
          -7,
          -7,
          -3.220059030922857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2422355332465385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9130717403092508,
          -7,
          -3.561757102571363,
          -7,
          -4.193291602579516,
          -3.145182275133918,
          -7,
          -7,
          -4.1830989401001295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.924615217311472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.922050402167174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9528650614677883,
          -3.366063161378102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.345445022795782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.631240780235509,
          -7,
          -7,
          -7,
          -7,
          -4.22057875463283,
          -7,
          -7,
          -7,
          -2.537553998479111,
          -7,
          -7,
          -7,
          -3.5752802381801962,
          -3.890700397698875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.187323269375047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7623033632877685,
          -4.190471770573345,
          -7,
          -7,
          -2.543166115347827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9023836844324715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7329794067090094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.182528775278964,
          -7,
          -3.8965078459300058,
          -7,
          -2.648544774585949,
          -4.17868923977559,
          -7,
          -3.5826838398856826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.240124730168566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.803751883915081,
          -2.399630307847778,
          -2.74925142902884,
          -7,
          -2.7413617328739823,
          -3.6216435721945732,
          -2.053303140550675,
          -1.8025366557361748,
          -2.1098658593045085,
          -7,
          -2.267292540746008,
          -2.6087516128943555,
          -2.262795212964954,
          -2.515521733423875,
          -2.6494123095453936,
          -2.3648375122504968,
          -2.40444240490541,
          -2.9046132121511077,
          -1.7289777684531455,
          -2.921938578371734,
          -1.9608053853307488,
          -2.306117205810236,
          -2.4115800968171492,
          -2.4329982170349678,
          -2.39435254569581,
          -2.509730962204628,
          -2.5167044408135446,
          -1.222367170185466,
          -7,
          -2.3137396338363545,
          -1.7734801471798123,
          -2.223182988705421,
          -1.1405712936568675,
          -7,
          -0.21937830136385722,
          -0.9752514664795041,
          -1.0716821704400683,
          -3.023511136233352,
          -2.2259606842620747,
          -4.075711159354416,
          -7,
          -2.901634334061141,
          -3.1606935736054114,
          -3.223604090098074,
          -4.186589091272407,
          -2.6484273121560085,
          -7,
          -3.1149970393952513,
          -7,
          -7,
          -2.8408156856746296,
          -3.175038534391645,
          -3.8176534974987812,
          -7,
          -2.885274213223267,
          -3.303006957714623,
          -7,
          -3.1698947576359866,
          -3.114813973009836,
          -7,
          -7,
          -3.0142521135405436,
          -2.3832551832908417,
          -2.892070625520591,
          -7,
          -7,
          -7,
          -2.886216462781363,
          -7,
          -3.778853217960016,
          -3.6692703797381965,
          -4.115277591395902,
          -7,
          -2.647883126093151,
          -3.7919186113238093,
          -3.747696582675378,
          -3.510062192500516,
          -3.678905156769131,
          -3.2579664095081773,
          -3.2581581933407944,
          -3.4607224866342263,
          -7,
          -2.906335041805091,
          -2.78413311507613,
          -7,
          -3.4595206460387544,
          -7,
          -4.219532135300155,
          -2.667149307610973,
          -3.3551204963352967,
          -7,
          -7,
          -7,
          -7,
          -1.4610328412341147,
          -2.4164257492763435,
          -7,
          -7,
          -4.181872159010333,
          -3.4532418730194783,
          -3.0652773122016446,
          -3.3525683861793083,
          -7,
          -7,
          -2.9000308247140794,
          -7,
          -2.7260260578286495,
          -7,
          -7,
          -7,
          -2.8899693344316466,
          -3.9116369331294423,
          -3.063483478027528,
          -2.6776898887432607,
          -2.8436574052692456,
          -3.2932151863754866,
          -3.7158919717962857,
          -4.197749067622612,
          -7,
          -7,
          -7,
          -3.4279929769690853,
          -4.181586363736856,
          -7,
          -3.152712368637574,
          -2.6247079736616548,
          -1.597781449602805,
          -4.173361116894232,
          -3.531018832208792,
          -7,
          -3.359835482339888,
          -7,
          -7,
          -7,
          -3.9366142619752114,
          -7,
          -7,
          -3.7928584219256614,
          -7,
          -3.0895297965599102,
          -3.410242820877784,
          -2.8383767747778115,
          -7,
          -7,
          -7,
          -7,
          -2.5385930662861886,
          -7,
          -7,
          -4.176583180765493,
          -2.6392255306230408,
          -2.4518279094757043,
          -3.287325760041347,
          -7,
          -2.753064605916495,
          -7,
          -2.729842160327929,
          -7,
          -3.088161411255697,
          -3.4026625253707534,
          -3.1434122718610147,
          -2.8302111525957407,
          -7,
          -2.8041394323353503,
          -3.712397131406715,
          -7,
          -7,
          -2.834500179293778,
          -7,
          -7,
          -3.7936274355090864,
          -7,
          -7,
          -3.600319329751661,
          -7,
          -7,
          -7,
          -3.3009865640441736,
          -2.469255421661786,
          -7,
          -3.0972840133231454,
          -7,
          -7,
          -2.742568034366142,
          -2.954826255726187,
          -7,
          -3.4394905903896835,
          -2.531615310222658,
          -3.60154396017653,
          -3.2610797766810538,
          -2.9047412987985335,
          -3.3557919596966648,
          -7,
          -4.191003634067977,
          -7,
          -4.173302841888186,
          -7,
          -7,
          -2.862926062941731,
          -7,
          -7,
          -7,
          -2.8458690979382313,
          -7,
          -7,
          -7,
          -4.176669932668149,
          -7,
          -7,
          -4.1801545594533485,
          -3.536987475130602,
          -3.7480587534580208,
          -7,
          -7,
          -4.191674531959229,
          -7,
          -7,
          -7,
          -4.1798389280231865,
          -7,
          -7,
          -3.683542319957651,
          -3.252731702726023,
          -3.545232871746966,
          -7,
          -7,
          -3.750893920382125,
          -7,
          -7,
          -2.9028055343752106,
          -7,
          -7,
          -3.4298060925892933,
          -3.243806689744405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.260834312172319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2059314148945273,
          -7,
          -7,
          -7,
          -3.9974737588029803,
          -4.008429826797229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7083894215363657,
          -3.9893608137762473,
          -7,
          -7,
          -3.65493554585486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.624168607391142,
          -7,
          -7,
          -7,
          -7,
          -3.8042757671290937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9634572601167077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03929511808431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8759027157874644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8105013477665297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2886068903909687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1981820519249844,
          -7,
          -7,
          -7,
          -7,
          -3.535547279176668,
          -7,
          -7,
          -3.7879325337843524,
          -7,
          -7,
          -7,
          -3.8267584761637057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.47845105314715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7257891635772458,
          -7,
          -7,
          -7,
          -7,
          -4.08188713942355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7723950610820003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2680365213593214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8781769804915065,
          -7,
          -3.8149464337908365,
          -7,
          -7,
          -3.1532791307030545,
          -7,
          -7,
          -3.8078055322706246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6016798173058957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5962671263955155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.960232873128512,
          -3.5759039703862934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.288780028452779,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6178387477170033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.937272906875669,
          -7,
          -7,
          -7,
          -3.30033456800233,
          -3.8281441073037863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.817763632280368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.630275285757692,
          -3.8251014115980033,
          -7,
          -7,
          -2.7893926651894576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.377306251068199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.056487250895864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.170936108609079,
          -7,
          -3.0761600276347485,
          -7,
          -7,
          -3.8338374377003355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9326259440217823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.776351710401327,
          -2.990479804575254,
          -3.345943741035112,
          -7,
          -3.1156105116742996,
          -3.898944466866509,
          -1.847366978587994,
          -2.1507493020831574,
          -2.1733771154648243,
          -7,
          -2.096432358024415,
          -2.873210325172087,
          -2.480819371951067,
          -2.786405888859511,
          -2.602902048623008,
          -2.6941838605722133,
          -2.5396095858813386,
          -2.9640109253001876,
          -1.5899061015528484,
          -2.9759098741639316,
          -2.374969449427609,
          -2.7045002939710105,
          -2.7235541775696275,
          -2.632463823370773,
          -2.3402953583797146,
          -3.1573272246636446,
          -2.7610941899352284,
          -1.357887675311113,
          -7,
          -2.3379368216171166,
          -1.7653058970960558,
          -2.6411170093614063,
          -1.6694973429466924,
          -0.21937830136385722,
          -7,
          -1.6160248753575683,
          -1.548220391758879,
          -3.018006626523271,
          -2.281568898995792,
          -3.8747426639375546,
          -7,
          -2.90135740013014,
          -3.1835210503697873,
          -2.972395712424915,
          -3.816042340921997,
          -2.6515330462926907,
          -7,
          -3.2877377643241155,
          -7,
          -7,
          -2.663725716009965,
          -3.5149238897392205,
          -4.03734680356809,
          -7,
          -3.0482863931061255,
          -2.9574276904698027,
          -7,
          -3.0479073469968614,
          -3.325638791790539,
          -7,
          -7,
          -3.0731835519016713,
          -2.526024644625345,
          -3.3195871224577425,
          -7,
          -7,
          -7,
          -2.996614123163156,
          -7,
          -4.4931000578465925,
          -3.516755660221549,
          -7,
          -7,
          -2.379115708334564,
          -3.60078237386667,
          -3.916418852628301,
          -3.2650537885040145,
          -3.534829611339736,
          -3.013960158703525,
          -3.225739915853267,
          -3.4532673635246596,
          -7,
          -3.009866199603352,
          -2.813601514822185,
          -7,
          -3.3661560276036155,
          -7,
          -3.8897497752640375,
          -2.9924209560520243,
          -3.5081255360831993,
          -7,
          -7,
          -7,
          -7,
          -1.5622280530904329,
          -2.24447392037623,
          -7,
          -7,
          -3.8048887446223913,
          -3.215848976111454,
          -2.9625086085063823,
          -2.9383946223434494,
          -7,
          -7,
          -2.693067093924229,
          -7,
          -2.7235639186612075,
          -7,
          -7,
          -7,
          -2.6753581983493837,
          -3.5739154404215507,
          -2.785482370684724,
          -2.319768310036801,
          -2.5140826625258312,
          -2.993142192245416,
          -3.353852142602988,
          -3.841797298874355,
          -7,
          -7,
          -7,
          -3.197728408739593,
          -3.8042076050820413,
          -7,
          -3.1670341139296614,
          -2.572686824116956,
          -1.7036282801644569,
          -3.7843319480221482,
          -3.212826586101233,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -7,
          -3.6265456590271294,
          -7,
          -7,
          -3.5141048209728325,
          -7,
          -2.9562885174336575,
          -3.1214285183679626,
          -2.5455320229865954,
          -7,
          -7,
          -7,
          -7,
          -2.4605459930373628,
          -7,
          -7,
          -3.792181496149679,
          -2.6168634908024817,
          -2.22645669185671,
          -2.9218814741317494,
          -7,
          -2.500061743589364,
          -7,
          -2.808238540175844,
          -7,
          -2.8417243581163993,
          -3.0242119239259035,
          -2.909154709808426,
          -2.948596328450484,
          -7,
          -2.5471392492424014,
          -3.345765693114488,
          -7,
          -7,
          -2.6012019841699203,
          -7,
          -7,
          -3.6917443685913742,
          -7,
          -7,
          -3.4433412316678793,
          -7,
          -7,
          -7,
          -3.0941992941110796,
          -2.2149279077560613,
          -7,
          -2.757863012151893,
          -7,
          -7,
          -2.615646953908509,
          -2.618100418196633,
          -7,
          -3.1868433703244703,
          -2.418582994066992,
          -3.2529136823984546,
          -3.131764434995244,
          -2.9053605846695008,
          -3.1101780389942686,
          -7,
          -3.82633400562222,
          -7,
          -3.7841892053809607,
          -7,
          -7,
          -2.7089704819510434,
          -7,
          -7,
          -7,
          -2.6762362167633116,
          -7,
          -7,
          -7,
          -3.792391689498254,
          -7,
          -7,
          -3.8007857903277626,
          -3.225154148849806,
          -3.4246094370095563,
          -7,
          -7,
          -3.827885982789856,
          -7,
          -7,
          -7,
          -3.8000293592441343,
          -7,
          -7,
          -3.5434057575549005,
          -2.916358225719054,
          -3.338904502164837,
          -7,
          -7,
          -3.4305587695227575,
          -7,
          -7,
          -2.902739608205772,
          -7,
          -7,
          -3.16577833129364,
          -2.8985756053931113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9321969382690316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.733818089486326,
          -7,
          -7,
          -7,
          -4.322177931384976,
          -3.850196802968261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.354527507512407,
          -7,
          -7,
          -7,
          -3.072909432901749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3448751004890465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.966751664051378,
          -7,
          -3.4728126868675537,
          -7,
          -7,
          -4.239524703156667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2641564367458855,
          -3.74030346348121,
          -7,
          -7,
          -3.7817553746524686,
          -7,
          -4.234390722392193,
          -4.234719704621876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.486886811075451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9226605943560844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.248708735600918,
          -7,
          -7,
          -7,
          -3.4942937686653326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2459812555626195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4993968451810296,
          -7,
          -7,
          -7,
          -7,
          -4.2533864729877715,
          -7,
          -4.0050088206723675,
          -4.168320665518865,
          -7,
          -7,
          -7,
          -3.511427568232574,
          -7,
          -3.951580344903392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.462298148609655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.290568798984483,
          -7,
          -4.246966106558744,
          -7,
          -4.063126860458549,
          -7,
          -7,
          -7,
          -3.288897276322566,
          -4.253192569878443,
          -7,
          -7,
          -7,
          -3.0117667348918755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.449558616691692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.382359297519319,
          -7,
          -7,
          -3.4620302575790087,
          -7,
          -7,
          -4.242541428298384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.262617181538574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6754575416412085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.60580048418724,
          -3.474133763936972,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.310954610877564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985695859689842,
          -7,
          -7,
          -7,
          -7,
          -3.974327435423617,
          -7,
          -4.037386652582377,
          -7,
          -2.6179308015164584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.991070942816438,
          -4.248978095892654,
          -7,
          -7,
          -2.9003823029015727,
          -7,
          -7,
          -4.354338976788081,
          -7,
          -7,
          -7,
          -7,
          -4.260357641636152,
          -4.242665636645263,
          -7,
          -7,
          -7,
          -7,
          -2.693445042976239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.240524288112364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2986011898012517,
          -7,
          -2.547903632190475,
          -7,
          -4.256837965904041,
          -3.601784293878116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.254016060861037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8079857748471495,
          -7,
          -7,
          -3.1861977163087007,
          -2.6589289015478585,
          -2.494068357258403,
          -7,
          -2.597206379506389,
          -3.977220446635385,
          -3.061154752002178,
          -1.7405023288426078,
          -2.812674229639345,
          -7,
          -3.596769836649545,
          -2.341418438405759,
          -2.1743336224075307,
          -2.3911039883571332,
          -3.276910698188711,
          -2.341422311057268,
          -2.2796987702089755,
          -3.0577787686700186,
          -2.6480508524599364,
          -3.1358592762153634,
          -2.2182252419733373,
          -2.157067143420605,
          -2.4385783047808247,
          -2.4152432218225366,
          -2.995059990083075,
          -2.4340083069744263,
          -2.4547116884997537,
          -1.8038128089007281,
          -3.963953016652479,
          -2.919962188820542,
          -2.685572997375497,
          -1.985781911791651,
          -0.7789146439391479,
          -0.9752514664795041,
          -1.6160248753575683,
          -7,
          -0.52937342075733,
          -2.8001070595005255,
          -2.6464985883185874,
          -3.813597666223458,
          -7,
          -3.189305792594432,
          -3.966399885150024,
          -7,
          -7,
          -2.8251787446137353,
          -7,
          -3.371806458507416,
          -7,
          -7,
          -3.456836516966673,
          -3.3406848506563924,
          -4.341513659870251,
          -7,
          -2.9313796264798206,
          -7,
          -7,
          -3.6989048552774317,
          -2.894532183356678,
          -7,
          -7,
          -3.4824667915374334,
          -2.6156317506865383,
          -2.8270039497469024,
          -7,
          -7,
          -7,
          -3.079851773445166,
          -7,
          -3.763423833634184,
          -4.019490162997508,
          -3.849910558301496,
          -7,
          -3.8539009163221665,
          -4.431604971875214,
          -4.553980064848256,
          -3.9643539292921934,
          -4.028103361550306,
          -3.8316991783902976,
          -4.494961186838928,
          -3.5926430126038604,
          -7,
          -3.325470051381601,
          -3.2227083443035465,
          -7,
          -3.415314549032263,
          -7,
          -7,
          -3.08905271767822,
          -3.8319976772358966,
          -7,
          -7,
          -7,
          -7,
          -2.085699540165808,
          -3.425909012675203,
          -7,
          -7,
          -7,
          -4.28517460125202,
          -3.949032013496317,
          -7,
          -7,
          -7,
          -4.05952555273869,
          -7,
          -2.6964151297660224,
          -7,
          -7,
          -7,
          -4.050476427265063,
          -7,
          -4.29280966541729,
          -7,
          -3.7689585865041044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.374436714981712,
          -7,
          -7,
          -3.303993832369804,
          -3.191329177652473,
          -2.1187055223535607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.688330818112266,
          -7,
          -7,
          -7,
          -7,
          -3.73883999253075,
          -4.24740856192157,
          -4.274711914167965,
          -7,
          -7,
          -7,
          -7,
          -3.121140821355396,
          -7,
          -7,
          -7,
          -3.137586179545643,
          -3.8906445362952473,
          -7,
          -7,
          -3.430216194454889,
          -4.242442036037531,
          -2.7620039203165594,
          -7,
          -7,
          -7,
          -7,
          -2.7202626945460486,
          -7,
          -3.564922384068158,
          -7,
          -7,
          -7,
          -3.794092842489171,
          -7,
          -7,
          -4.320000804264728,
          -7,
          -7,
          -4.044578954876613,
          -7,
          -7,
          -7,
          -3.648242882068844,
          -3.633589637131385,
          -7,
          -3.9666578842017577,
          -7,
          -7,
          -3.3460104901909786,
          -7,
          -7,
          -7,
          -3.211457181167326,
          -4.260619875172372,
          -3.9373674175172897,
          -3.35237549500052,
          -4.054402366806568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.694166295933198,
          -7,
          -7,
          -7,
          -3.492047617347526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.032256025890453,
          -4.003180390771252,
          -4.296467738800115,
          -7,
          -7,
          -4.282055370683707,
          -7,
          -7,
          -3.3505629614916206,
          -7,
          -7,
          -4.264534495078272,
          -4.296336054602047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.311457168381031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9059345858229104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7987426959928587,
          -7,
          -7,
          -7,
          -3.254729297425354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.769977021138206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.795880017344075,
          -7,
          -3.513150985376206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7262652369408156,
          -7,
          -7,
          -7,
          -7,
          -4.046456142412592,
          -4.046963154123424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6354033144631863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8364665358773564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0643831044121965,
          -3.496474961863589,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7482849569210996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1525329484345255,
          -4.0689646659444465,
          -7,
          -7,
          -7,
          -3.453829990084514,
          -7,
          -4.074304344001435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.302850212702309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.932042300059813,
          -7,
          -7,
          -7,
          -3.4292030104137097,
          -7,
          -7,
          -7,
          -7,
          -3.658755264064613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7674257399338993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.257510583190615,
          -7,
          -7,
          -3.858446960810253,
          -7,
          -7,
          -4.058957178777311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.111464151586654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.150909873701122,
          -3.750296924443472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2342008115305245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505895781219751,
          -7,
          -4.197941836490006,
          -7,
          -2.7058946115604905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.091103944090286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.068742292932981,
          -7,
          -7,
          -3.1301982948974314,
          -7,
          -7,
          -4.219741661046302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.782606976675294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.297826142585328,
          -7,
          -2.6709176923704128,
          -7,
          -7,
          -4.361378371630884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.047235915459681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3764774129184203,
          -2.670572483616967,
          -2.5860095587848955,
          -7,
          -2.7359574241167413,
          -3.5101426994025733,
          -3.0540929905136385,
          -1.86465533932495,
          -2.903364685186985,
          -7,
          -3.5570457946939182,
          -2.4032198906950484,
          -2.3157831192937968,
          -2.6626112046901063,
          -3.4376895963737515,
          -2.1637634223580404,
          -2.2250979492320373,
          -3.214360683794701,
          -2.8850469465668223,
          -3.507282278310011,
          -2.2380228583148147,
          -2.1568823890800446,
          -2.6479075092177413,
          -2.4553687449617696,
          -3.452706226511029,
          -2.643036884705358,
          -2.582771286369577,
          -1.9602925034159957,
          -7,
          -3.1755330262265606,
          -2.6826674931136196,
          -2.2427243654065663,
          -0.7124645792659058,
          -1.0716821704400683,
          -1.548220391758879,
          -0.52937342075733,
          -7,
          -2.9076341666338137,
          -2.8397860270784148,
          -4.000412383906452,
          -7,
          -3.1257883982795844,
          -4.0142124192119,
          -4.212533836186607,
          -7,
          -2.6620491649778457,
          -7,
          -3.660732703938095,
          -7,
          -7,
          -3.87735214586615,
          -3.391975460609762,
          -3.724930914192398,
          -7,
          -3.0633333589517497,
          -7,
          -7,
          -3.030724241924342,
          -2.8262077466008173,
          -7,
          -7,
          -3.825724633180373,
          -2.7262847745317265,
          -2.9233503834761776,
          -7,
          -7,
          -7,
          -3.2821687783046416,
          -7,
          -4.038712865119077,
          -7,
          -4.3481490343841624,
          -7,
          -3.4093130649092758,
          -7,
          -7,
          -7,
          -3.7078255683322316,
          -3.6793067375983877,
          -7,
          -3.4328090050331683,
          -7,
          -3.3105148857863513,
          -3.500117498811224,
          -7,
          -3.2684569231845684,
          -7,
          -7,
          -3.268958047188312,
          -3.7230860771627894,
          -7,
          -7,
          -7,
          -7,
          -2.2076401784239836,
          -3.3146465641692635,
          -7,
          -7,
          -7,
          -4.122445256281956,
          -3.7128600646644574,
          -7,
          -7,
          -7,
          -3.626032247829019,
          -7,
          -2.881001310598059,
          -7,
          -7,
          -7,
          -3.516746850913505,
          -7,
          -7,
          -7,
          -3.7633905527696125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.702419765119444,
          -3.245663880400659,
          -2.3130975003830856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8291107101552946,
          -7,
          -7,
          -7,
          -7,
          -3.5022905279147727,
          -4.066363202258494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1291794789307543,
          -7,
          -7,
          -7,
          -3.3856956254105612,
          -3.7608244218895726,
          -7,
          -7,
          -3.5889716175206554,
          -7,
          -2.85991086583364,
          -7,
          -7,
          -7,
          -4.061979947074879,
          -3.1382575743175316,
          -7,
          -3.3591576384658945,
          -7,
          -7,
          -7,
          -3.402880133602107,
          -7,
          -7,
          -4.1722233414277525,
          -7,
          -7,
          -4.207849711130526,
          -7,
          -7,
          -7,
          -3.9091279419892606,
          -4.189995339964319,
          -7,
          -4.09684052033139,
          -7,
          -7,
          -3.9925829705113984,
          -7,
          -7,
          -7,
          -3.241809257706174,
          -7,
          -3.998847592007072,
          -3.5741181179393675,
          -4.221283799492686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5363690286780414,
          -7,
          -7,
          -7,
          -3.699542895027404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8897497752640375,
          -4.14992695911359,
          -7,
          -7,
          -7,
          -3.816804522879766,
          -7,
          -7,
          -3.571941635074462,
          -7,
          -7,
          -4.092088739255806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.837491808816075,
          -7,
          -7,
          -7,
          -3.7170210718966303,
          -4.119272389514709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.362467974826899,
          -7,
          -7,
          -4.360612344908592,
          -3.033892647546583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.463997445885867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.372893600271661,
          -7,
          -4.038461196178564,
          -7,
          -7,
          -4.049760551762476,
          -7,
          -7,
          -7,
          -7,
          -4.347505649475902,
          -7,
          -7,
          -3.830396176483469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3481490343841624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4350875123045923,
          -7,
          -7,
          -4.34713478291002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.284994386722994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.353935455571521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.378579576115775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055129764292919,
          -7,
          -7,
          -7,
          -7,
          -3.2459280618983324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.403206341644807,
          -3.583891177811344,
          -7,
          -7,
          -7,
          -3.2601622826027996,
          -7,
          -3.8838317133294527,
          -7,
          -7,
          -7,
          -7,
          -4.048810680621964,
          -7,
          -7,
          -3.001691849737373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4272913145278627,
          -4.39084682689535,
          -4.39208111979816,
          -7,
          -7,
          -3.3707597427257125,
          -7,
          -7,
          -7,
          -3.787672964687493,
          -7,
          -7,
          -7,
          -7,
          -4.052950314117716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.348655273245765,
          -7,
          -3.178453177304058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073333361861047,
          -7,
          -3.350933519151349,
          -7,
          -7,
          -3.165282220472543,
          -7,
          -4.353916230920363,
          -4.353165804965758,
          -7,
          -4.35694321958013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.480825865259064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.778458766742468,
          -4.350073489951687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8001325865508604,
          -3.190670462474224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2964732247752924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.609505478236499,
          -7,
          -7,
          -7,
          -7,
          -4.378851946448881,
          -7,
          -3.65097092646721,
          -7,
          -2.6885830844691663,
          -7,
          -7,
          -7,
          -4.4169565453903425,
          -7,
          -7,
          -4.369790824030776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.914907038697517,
          -7,
          -7,
          -7,
          -2.4809669269555825,
          -7,
          -7,
          -3.7431176252147416,
          -7,
          -7,
          -7,
          -7,
          -4.06597163517446,
          -7,
          -7,
          -7,
          -7,
          -3.8720591042767154,
          -2.7654053845042528,
          -4.0608488730388075,
          -7,
          -7,
          -7,
          -4.0640459628644825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.411170590636853,
          -3.4851888764676953,
          -2.5861897606478075,
          -7,
          -4.063220735581995,
          -3.978119623151293,
          -7,
          -7,
          -7,
          -7,
          -4.35981651710126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.363931473001837,
          -7,
          -4.386588133907789,
          -7,
          -7,
          -2.7111073515371458,
          -2.6668821312373145,
          -3.4315353034055756,
          -7,
          -3.3263002323564437,
          -3.426601617025341,
          -3.1752218003430523,
          -2.4959538825135468,
          -2.0797269661897304,
          -7,
          -3.0372405216509115,
          -2.6976541809638137,
          -2.981973846330603,
          -3.0014486357757595,
          -2.560074836702499,
          -2.5378937646885324,
          -2.534026106056135,
          -2.029688248483908,
          -2.7859865304210274,
          -2.9694367766828114,
          -2.9445987781478937,
          -2.6600809295199155,
          -2.1357775059548194,
          -2.2315151568930105,
          -3.528672501601294,
          -3.4452568203759215,
          -3.058419245331889,
          -2.4372451537473085,
          -3.592361839214949,
          -1.3807688691855144,
          -2.904952098322955,
          -3.0791160969890377,
          -2.920367592655386,
          -3.023511136233352,
          -3.018006626523271,
          -2.8001070595005255,
          -2.9076341666338137,
          -7,
          -3.4363591159343594,
          -3.7939300067726847,
          -7,
          -2.9024659741903083,
          -3.132290682892835,
          -3.6595993124367445,
          -7,
          -2.6563870314854445,
          -3.8834532266769703,
          -2.8454119666286792,
          -4.447824471981958,
          -7,
          -2.9706825677927085,
          -3.155044385219346,
          -3.050814606421516,
          -7,
          -2.944180088937908,
          -4.369104485571629,
          -7,
          -2.951129274015182,
          -2.7780228109816956,
          -7,
          -4.355700492781882,
          -3.0048292520634114,
          -2.290191529906219,
          -2.9908897569526816,
          -7,
          -7,
          -4.048130927028968,
          -2.867751632633979,
          -7,
          -3.0893413967336993,
          -2.895238327804661,
          -4.046430125849839,
          -7,
          -3.946141007378952,
          -3.125481265700594,
          -3.2888558045037004,
          -7,
          -2.91559767644957,
          -3.2008334049303198,
          -3.015371732477427,
          -4.3918169236132485,
          -7,
          -2.6651677940598373,
          -2.821915301608853,
          -4.361841115455327,
          -3.81253903397321,
          -7,
          -3.17345943823902,
          -4.414505394200718,
          -3.165473651207667,
          -4.350151066780707,
          -7,
          -7,
          -7,
          -3.273129932850311,
          -3.0386064602955156,
          -7,
          -3.665318271278418,
          -7,
          -3.306996561743261,
          -2.9209878672938134,
          -4.363292251571082,
          -7,
          -7,
          -2.7214372827791666,
          -7,
          -2.758560466760875,
          -3.7584198168439795,
          -7,
          -7,
          -3.66162340922923,
          -3.896213795234906,
          -3.9154350135754097,
          -7,
          -3.510659887731922,
          -3.4434542262000387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4170034022680262,
          -7,
          -4.045929003009548,
          -3.2958207519595093,
          -2.4764699889823,
          -2.337916965537088,
          -7,
          -4.084486907735044,
          -4.352761191723831,
          -4.067201087647148,
          -7,
          -7,
          -4.348012638422195,
          -4.390811509786938,
          -7,
          -4.354722934448935,
          -3.8116587737331162,
          -7,
          -2.953308577080214,
          -4.055875039146097,
          -3.423773626101113,
          -7,
          -3.8831691450660495,
          -7,
          -3.5846138761717827,
          -2.7333878793499453,
          -7,
          -4.347973660278038,
          -7,
          -3.932575223498291,
          -2.9900171721769127,
          -7,
          -7,
          -3.580044747846509,
          -7,
          -2.584701927901414,
          -7,
          -3.43435596238644,
          -7,
          -3.7525285965492787,
          -2.407218010802163,
          -7,
          -2.78836123376675,
          -7,
          -7,
          -4.352491239988165,
          -3.8984326288792706,
          -7,
          -7,
          -3.1127055210308923,
          -7,
          -7,
          -3.7360297870141546,
          -7,
          -4.0917372829916605,
          -7,
          -3.0207595645137237,
          -2.156198160789173,
          -3.8979751203757345,
          -4.372819981678968,
          -4.3462355816990375,
          -7,
          -3.4040100848543777,
          -4.087497472404264,
          -4.348733103798286,
          -4.376996450740673,
          -2.2346412260026556,
          -4.367244071135225,
          -2.75812654954038,
          -3.0948309593568566,
          -3.4014318740294134,
          -7,
          -4.358524934046989,
          -7,
          -7,
          -7,
          -4.361255520058149,
          -3.3951341074778125,
          -7,
          -4.348285387522612,
          -7,
          -3.0386803610657083,
          -4.347349533731457,
          -7,
          -7,
          -7,
          -4.354185298625861,
          -7,
          -7,
          -3.3894141817616843,
          -4.3821251522253215,
          -7,
          -7,
          -3.881783955593385,
          -7,
          -7,
          -7,
          -7,
          -4.049140463158965,
          -7,
          -7,
          -4.1006806447251,
          -7,
          -7,
          -7,
          -3.906909410520852,
          -7,
          -7,
          -3.067644645080264,
          -7,
          -7,
          -4.370309495258699,
          -3.7932664017413886,
          -4.059336177389288,
          -7,
          -7,
          -7,
          -7,
          -3.708403901974985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.731320101718905,
          -7,
          -7,
          -7,
          -4.450403086155366,
          -3.675992076790947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.69207373070237,
          -7,
          -7,
          -4.098297536494698,
          -2.893460309733855,
          -7,
          -7,
          -7,
          -4.38888237082715,
          -7,
          -7,
          -4.178624479308948,
          -4.388154507768882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.933419793174251,
          -7,
          -3.5819591348886286,
          -7,
          -7,
          -3.9132308711135604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9307792854229726,
          -3.1640106397198697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.402588055411201,
          -4.387781226906038,
          -7,
          -7,
          -2.950090118806048,
          -7,
          -7,
          -4.3870515144724935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.132355761753956,
          -7,
          -4.087994255099714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.393259237826838,
          -4.389538177331949,
          -7,
          -7,
          -4.392274761571942,
          -7,
          -2.8421828934051807,
          -7,
          -4.3871227599275855,
          -7,
          -7,
          -7,
          -4.085789890327987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.386766415717314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4725980077291743,
          -7,
          -7,
          -7,
          -7,
          -4.400261610744863,
          -7,
          -3.9612945052782886,
          -3.183696808634681,
          -7,
          -7,
          -7,
          -3.1170557525484806,
          -7,
          -4.399742926242862,
          -3.4991885949036172,
          -7,
          -7,
          -4.388136739763074,
          -7,
          -7,
          -7,
          -3.160429381388825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.159942978047153,
          -7,
          -7,
          -4.395693247503584,
          -7,
          -3.3677715207203325,
          -7,
          -7,
          -7,
          -3.522851601026952,
          -7,
          -7,
          -7,
          -7,
          -4.556724526395461,
          -7,
          -7,
          -7,
          -4.391129260417903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5846911866607476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.235427436444969,
          -7,
          -3.1336360861599792,
          -7,
          -4.097812407365289,
          -2.237749208835019,
          -7,
          -2.8736023939381226,
          -3.2159722526627705,
          -3.6948157149250407,
          -3.4926731024258193,
          -3.9240551874495404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.94215692846749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4631959668545558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.394469192347434,
          -4.096005739715113,
          -3.9604549212944278,
          -3.0559527218697293,
          -7,
          -7,
          -7,
          -4.39420644536023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.676332889201492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.401452239428341,
          -7,
          -4.123263475902825,
          -3.710405106268253,
          -7,
          -7,
          -7,
          -3.114410802397837,
          -4.0921063046052355,
          -3.1832848320171543,
          -7,
          -2.3910848271399927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8056027932561345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.395169074827421,
          -4.391675953237296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.386531392526096,
          -4.397122766597578,
          -7,
          -7,
          -2.733069074034461,
          -4.388775930448715,
          -7,
          -3.571271989040687,
          -7,
          -7,
          -7,
          -4.387425422788231,
          -3.501914678058426,
          -4.3926442017384275,
          -7,
          -7,
          -7,
          -4.388988785124714,
          -2.181661112505638,
          -4.099490725214397,
          -7,
          -7,
          -7,
          -4.40348085323734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.387496606935564,
          -3.820634880594385,
          -4.123900618785896,
          -2.6710029687975694,
          -3.912647106218317,
          -3.925535542646001,
          -3.6582242699211025,
          -4.099715162351024,
          -7,
          -7,
          -7,
          -4.097569639431371,
          -7,
          -4.400710636773232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5198607942350755,
          -7,
          -7,
          -2.3036039178951855,
          -2.095610685225035,
          -1.4530461540732107,
          -7,
          -2.920713371359016,
          -3.6398515681407924,
          -1.517455397407657,
          -1.769874929688702,
          -2.2391198446200864,
          -7,
          -2.136695307197003,
          -1.7773155443668243,
          -2.6013628035857117,
          -2.643846314201172,
          -2.5728626696840635,
          -1.9378727145318462,
          -2.091780526547107,
          -2.5862078866547544,
          -2.4795573161627673,
          -2.3760494820288316,
          -2.8430024442385116,
          -2.2796587768571377,
          -2.616033061656062,
          -1.6457745688215348,
          -0.9328829155012494,
          -2.1914785023272993,
          -2.637779303052618,
          -2.0872973851301997,
          -2.9304905653062696,
          -2.1455802603499063,
          -1.981576361720284,
          -2.5313946888721164,
          -2.77629050359667,
          -2.2259606842620747,
          -2.281568898995792,
          -2.6464985883185874,
          -2.8397860270784148,
          -3.4363591159343594,
          -7,
          -3.6766544233925074,
          -7,
          -2.9298444960392853,
          -2.8383964648683504,
          -2.65577359512805,
          -7,
          -2.934941634040361,
          -7,
          -3.179537061079481,
          -4.479776792192939,
          -7,
          -3.378191910508821,
          -3.115771140513356,
          -3.619600109432393,
          -7,
          -3.2927580264854317,
          -4.407135862191559,
          -7,
          -3.5895187615052655,
          -2.8389594999108265,
          -4.420714687488031,
          -7,
          -2.8975618630201563,
          -2.6460026549925924,
          -2.033876869603903,
          -7,
          -7,
          -7,
          -3.2561094575340532,
          -3.4590304248104546,
          -4.047769253139,
          -3.545894439602858,
          -3.044686721472795,
          -7,
          -3.4153679817843448,
          -3.4549083487129435,
          -3.332256624164205,
          -4.40888414320084,
          -3.5011353674456522,
          -3.8384082784941866,
          -3.283662990058831,
          -4.126926506574775,
          -7,
          -3.0086407202407206,
          -2.7247571938130504,
          -7,
          -2.7044690074905664,
          -7,
          -4.4154074254501365,
          -3.846754502341561,
          -3.359936616294331,
          -4.389803762974429,
          -7,
          -7,
          -7,
          -1.8267847498158771,
          -2.131062516186049,
          -7,
          -4.402862957968563,
          -3.6926883243864563,
          -3.1438198253427676,
          -3.4158718443377936,
          -3.6234904981141276,
          -7,
          -7,
          -3.0806841966397704,
          -4.391252767350556,
          -2.849125244980034,
          -3.7002362963352886,
          -7,
          -3.8146137940059597,
          -3.040323913328225,
          -3.3315285188686907,
          -2.804155664912373,
          -3.039310641815175,
          -3.014117838691425,
          -3.7345598215794764,
          -3.620448384711709,
          -3.1970219725378053,
          -7,
          -7,
          -7,
          -3.2589892174623056,
          -4.391623077546977,
          -7,
          -2.550415895149083,
          -2.289479082290999,
          -1.3758611680711457,
          -7,
          -4.121165747534411,
          -7,
          -3.8042076050820413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092913543651593,
          -3.447994792653729,
          -7,
          -2.4443901474007856,
          -3.5506999661491356,
          -2.9675145470935016,
          -7,
          -7,
          -7,
          -7,
          -1.8752177377158223,
          -7,
          -7,
          -7,
          -1.4033613482029006,
          -3.0691555877932926,
          -3.552024726583321,
          -7,
          -2.9528378309818355,
          -7,
          -2.448102176466944,
          -4.3933119147002,
          -3.0265659477323656,
          -4.391323326974091,
          -2.9458552965590736,
          -2.658911183001439,
          -7,
          -2.9337402994969355,
          -7,
          -7,
          -7,
          -2.384272242023868,
          -7,
          -7,
          -4.448783589628957,
          -7,
          -4.395029188533373,
          -4.166933094871154,
          -4.0981763050073265,
          -7,
          -7,
          -3.469026307750861,
          -2.775610448006361,
          -4.1116321117086,
          -3.565240460896473,
          -7,
          -7,
          -2.212197891476426,
          -2.364386402582388,
          -4.388509715314879,
          -2.2021598921798446,
          -2.9960736544852753,
          -3.1495783093880108,
          -3.1401543670165406,
          -2.871492413717169,
          -3.630151721833672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8462907933844055,
          -7,
          -7,
          -7,
          -2.7553855866496852,
          -7,
          -3.9158920731816305,
          -4.086857915659847,
          -7,
          -7,
          -7,
          -3.545430829465351,
          -3.221463142125021,
          -3.640762924911052,
          -7,
          -7,
          -3.283509973952415,
          -7,
          -7,
          -7,
          -7,
          -4.3898568606187425,
          -7,
          -3.3444225054544248,
          -2.3804833911645416,
          -3.8292555152075627,
          -7,
          -7,
          -3.07778069353109,
          -4.386908988489542,
          -7,
          -2.877553198541244,
          -7,
          -7,
          -3.806078174284573,
          -2.37461859451139,
          -7,
          -7,
          -7,
          -4.3913409650889035,
          -7,
          -2.385843450427921,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.456549814132931,
          -3.989583289311005,
          -7,
          -7,
          -2.765566961445306,
          -3.163128231581581,
          -7,
          -7,
          -7,
          -3.983265352566545,
          -7,
          -2.881047300339714,
          -3.8020550061776333,
          -7,
          -3.3860974812287905,
          -2.6404452028433893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9620376865650124,
          -3.954281111677642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.961516011448949,
          -7,
          -3.7157109316222785,
          -7,
          -2.595725204619729,
          -7,
          -7,
          -3.965013450272248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4079429827990975,
          -3.0622058088197126,
          -7,
          -7,
          -4.000911062131223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0851790462224917,
          -7,
          -7,
          -7,
          -7,
          -3.432086985778083,
          -7,
          -7,
          -3.2790278056227207,
          -3.1245728608647534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.952550293898202,
          -7,
          -7,
          -7,
          -7,
          -3.9821354948037695,
          -7,
          -3.969928189428116,
          -7,
          -2.472495250968145,
          -3.3676354197905107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.084377652510378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9604232070778296,
          -7,
          -3.977952121201462,
          -7,
          -7,
          -7,
          -7,
          -4.00650882777529,
          -7,
          -7,
          -7,
          -7,
          -3.9907383285075375,
          -7,
          -3.383564048536695,
          -2.406704305139731,
          -7,
          -7,
          -7,
          -4.023417089841105,
          -7,
          -3.989405318001516,
          -7,
          -7,
          -3.4803902567348173,
          -7,
          -7,
          -7,
          -7,
          -2.9527682342042683,
          -7,
          -7,
          -7,
          -3.952792443044092,
          -7,
          -2.7506369413912526,
          -7,
          -3.359949256382866,
          -3.1332651070696262,
          -7,
          -3.5737995822157407,
          -7,
          -7,
          -3.972063916008022,
          -3.4520932490177314,
          -3.990383258906234,
          -7,
          -7,
          -7,
          -3.470410490975931,
          -7,
          -7,
          -7,
          -3.66576855071938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.839023892302064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5429498488141786,
          -7,
          -3.60151678365001,
          -7,
          -3.686055033960141,
          -3.012282485301065,
          -3.9564565834098997,
          -7,
          -3.9706722426897194,
          -3.9742813588778305,
          -7,
          -7,
          -7,
          -3.961278679085043,
          -7,
          -7,
          -7,
          -3.103803720955957,
          -7,
          -7,
          -7,
          -2.815552206848569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.485863329597335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4786386315431668,
          -2.596064481371864,
          -7,
          -7,
          -7,
          -3.1293675957229854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.225121234750895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0493343359722838,
          -4.014100321519621,
          -7,
          -7,
          -7,
          -4.030235296012245,
          -7,
          -2.1036423871445606,
          -7,
          -3.562876579157752,
          -7,
          -7,
          -7,
          -4.111094410509336,
          -3.9847522781154137,
          -3.5120169694961265,
          -7,
          -4.006979190574277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9632209865229884,
          -7,
          -7,
          -7,
          -7,
          -3.956696564894651,
          -3.75815462196739,
          -3.681512586638962,
          -3.667125941485989,
          -7,
          -2.858722920116735,
          -7,
          -7,
          -3.3822872662579013,
          -7,
          -7,
          -7,
          -7,
          -3.7023012628973455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8858386969884844,
          -3.9914918889101596,
          -7,
          -7,
          -7,
          -7,
          -3.976670880624811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.952550293898202,
          -7,
          -7,
          -7,
          -3.668618844816744,
          -3.957176130404846,
          -3.3456677356353532,
          -4.0515383905153275,
          -3.3259523628369316,
          -7,
          -3.9970367108825267,
          -3.465680211598278,
          -7,
          -7,
          -3.9710437918360286,
          -7,
          -3.9865478134147243,
          -4.060168811945148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0473138158153885,
          -7,
          -7,
          -3.3788562684105763,
          -3.96559810533305,
          -4.135736743509474,
          -3.971693238949861,
          -3.8523335775602088,
          -3.433009353093142,
          -3.3606565148340706,
          -3.3521181734217267,
          -2.4007329088562077,
          -7,
          -2.7579762486280295,
          -3.6658997943309437,
          -3.887906519358385,
          -3.9556516778452013,
          -2.9334094084470976,
          -4.142154733486203,
          -3.567130971321703,
          -3.386863629502398,
          -4.271051261492347,
          -3.7391238429861597,
          -7,
          -3.6833462044894683,
          -3.6072673245501026,
          -3.3959064795712126,
          -3.4103764856662915,
          -7,
          -4.008267937169863,
          -3.421392368296887,
          -7,
          -2.874973296107238,
          -3.803610730393364,
          -3.391946724279145,
          -3.9380190974762104,
          -4.075711159354416,
          -3.8747426639375546,
          -3.813597666223458,
          -4.000412383906452,
          -3.7939300067726847,
          -3.6766544233925074,
          -7,
          -7,
          -1.7990876794565267,
          -3.557522239542885,
          -3.307006760878611,
          -2.8961586385578335,
          -2.756157762417882,
          -2.4671370338130614,
          -2.357924821619692,
          -4.17140463483013,
          -7,
          -3.3575113516164294,
          -2.7839421883745876,
          -3.0258413119868632,
          -7,
          -2.918307929943518,
          -3.104487111312395,
          -7,
          -2.772028165324855,
          -3.1774823901037768,
          -7,
          -7,
          -3.4549002688478176,
          -2.4889282435288567,
          -3.4895173193519526,
          -7,
          -7,
          -7,
          -3.0617154169664507,
          -3.8275954092119693,
          -2.311967937219121,
          -3.5045048435188018,
          -4.003955724542691,
          -7,
          -7,
          -3.0448624331635377,
          -7,
          -3.4102287485066443,
          -2.671833768853756,
          -3.3090265613775127,
          -2.8858698609039064,
          -2.9437988035219163,
          -7,
          -2.554658369696338,
          -3.1648131980042757,
          -3.9913146981766108,
          -3.4349217089943167,
          -7,
          -3.027879409207207,
          -4.106122874006655,
          -3.434317926102869,
          -7,
          -7,
          -7,
          -7,
          -3.7114697818743276,
          -2.835714052581448,
          -7,
          -3.6962689967455327,
          -7,
          -4.047274867384179,
          -3.1886238554663477,
          -7,
          -7,
          -7,
          -3.4712623658457846,
          -7,
          -3.294330540936119,
          -3.289053557592641,
          -3.981274832706589,
          -7,
          -3.679124935677682,
          -7,
          -4.06039561731991,
          -3.9946690218255294,
          -7,
          -4.0718083918331285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1912273818740102,
          -7,
          -7,
          -3.737124459255048,
          -3.3398322343881826,
          -3.1329065742417876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.755379324985937,
          -7,
          -3.9744195738522863,
          -7,
          -7,
          -2.8375253094496014,
          -3.9797304306622854,
          -7,
          -7,
          -7,
          -7,
          -3.215329068686353,
          -3.8786223149975245,
          -7,
          -7,
          -7,
          -4.096423330595271,
          -2.189348476789841,
          -7,
          -7,
          -3.826787238816292,
          -7,
          -3.213611891844391,
          -3.972665592266111,
          -4.052309099647323,
          -7,
          -7,
          -4.234694407142218,
          -7,
          -7,
          -7,
          -7,
          -3.969042967305813,
          -7,
          -7,
          -7,
          -2.7822678165784755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.304336626328912,
          -3.4272588402704054,
          -7,
          -4.016657344822202,
          -7,
          -7,
          -3.659266331383175,
          -7,
          -7,
          -4.026083620800987,
          -2.6593813179855252,
          -7,
          -3.136915602292458,
          -3.7467120225166606,
          -4.162504664521149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0664377464539925,
          -7,
          -7,
          -7,
          -2.9793966030856,
          -7,
          -7,
          -7,
          -3.9601376748637946,
          -7,
          -3.9611362173872253,
          -7,
          -2.589602982202344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9635044994142907,
          -7,
          -7,
          -4.079759919660093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7443712273318606,
          -7,
          -7,
          -7,
          -4.066400475955629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.091772441419683,
          -7,
          -7,
          -7,
          -2.7351995484223135,
          -3.000434077479319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3263358609287517,
          -4.365572214876125,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -3.7102020146553847,
          -7,
          -7,
          -7,
          -1.6638671413061645,
          -7,
          -3.4663237943053677,
          -3.193958978019187,
          -7,
          -7,
          -3.450813427021517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.591435640352701,
          -3.0113589537066106,
          -7,
          -7,
          -7,
          -3.064832219738574,
          -2.8145805160103183,
          -7,
          -3.06595298031387,
          -7,
          -7,
          -7,
          -3.1214632849497366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7266531289441915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1528995963937474,
          -2.6834973176798114,
          -7,
          -7,
          -7,
          -2.780923392631927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8564267724702446,
          -7,
          -7,
          -4.239549720840473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8441664104502005,
          -7,
          -2.7283537820212285,
          -7,
          -7,
          -7,
          -3.2279766379455532,
          -7,
          -7,
          -7,
          -2.9907826918031377,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6972293427597176,
          -7,
          -7,
          -7,
          -7,
          -2.399962001930988,
          -7,
          -7,
          -7,
          -7,
          -3.244948282443099,
          -7,
          -7,
          -7,
          -2.001001063405748,
          -3.2555137128195333,
          -7,
          -2.834950266583269,
          -4.125448733060263,
          -3.0170333392987803,
          -7,
          -2.605305046141109,
          -4.0440534546854,
          -7,
          -7,
          -3.2860071220794747,
          -2.657693115600798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.522226814487059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.44216608578472,
          -2.8318697742805017,
          -2.761301241165817,
          -7,
          -7,
          -7,
          -7,
          -3.002166061756508,
          -7,
          -7,
          -2.4055658794489867,
          -7,
          -7,
          -7,
          -2.6548638255819332,
          -7,
          -7,
          -7,
          -2.8048206787211623,
          -7,
          -7,
          -2.622214022966295,
          -2.660549282517093,
          -2.41161970596323,
          -7,
          -3.153814864344529,
          -3.0515383905153275,
          -7,
          -3.504214919957298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6956567599361905,
          -7,
          -3.9029813997975027,
          -7,
          -7,
          -2.5585711775988758,
          -7,
          -7,
          -3.1332194567324945,
          -7,
          -7,
          -7,
          -2.1955537388251134,
          -7,
          -2.4058583993176366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.98915306706963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.553883026643874,
          -2.7058637122839193,
          -2.539912084579118,
          -1.6152690965883847,
          -2.6050355490912556,
          -3.130976691605617,
          -4.110507067122859,
          -7,
          -3.0081741840064264,
          -7,
          -7,
          -7,
          -2.998259338423699,
          -7,
          -7,
          -7,
          -7,
          -2.989894563718773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.720242018287057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.369586890736344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.754271868683459,
          -7,
          -3.906200314184372,
          -7,
          -7,
          -7,
          -3.692582562274909,
          -2.7437709944998567,
          -3.2477278329097232,
          -7,
          -3.3372595397502756,
          -7,
          -7,
          -2.9947569445876283,
          -2.3479151865016914,
          -2.219526313697325,
          -2.6384892569546374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9380190974762104,
          -7,
          -7,
          -7,
          -3.6611498572447867,
          -7,
          -7,
          -2.8111056070179306,
          -7,
          -7,
          -2.81888541459401,
          -2.7271344237604884,
          -7,
          -7,
          -2.992995098431342,
          -7,
          -2.9417598138146954,
          -7,
          -5.100842497666186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1065308538223815,
          -7,
          -7,
          -7,
          -7,
          -3.041392685158225,
          -7,
          -3.126780577012009,
          -7,
          -7,
          -3.514813294999285,
          -4.288186923454454,
          -7,
          -2.6852937813867843,
          -2.789920935042697,
          -7,
          -2.9876662649262746,
          -1.9220114246060596,
          -7,
          -2.1121407636689873,
          -2.1059515089530225,
          -2.9602328731285126,
          -7,
          -7,
          -7,
          -7,
          -3.0153597554092144,
          -3.0670708560453703,
          -7,
          -2.8064061101420315,
          -7,
          -3.0224283711854865,
          -7,
          -7,
          -7,
          -7,
          -4.286725855353823,
          -7,
          -7,
          -7,
          -3.762528522447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6596215020988625,
          -7,
          -7,
          -3.9445813642269263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.242218320247613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.602164376494167,
          -2.284148632839535,
          -7,
          -7,
          -7,
          -3.6495173993026695,
          -1.504141007490718,
          -1.1001615990072522,
          -2.841428996506697,
          -7,
          -2.810456554359043,
          -7,
          -7,
          -7,
          -2.7697464671794534,
          -3.589055531052344,
          -3.9062542102482167,
          -2.6994040818153375,
          -7,
          -2.397042473902774,
          -4.080292702211703,
          -4.873727380646679,
          -1.9598360759497873,
          -2.583522632657682,
          -2.101899752619728,
          -3.113943352306837,
          -3.43608309864198,
          -4.46887879425401,
          -2.9814561665221264,
          -3.240727493506486,
          -1.9134062554679199,
          -7,
          -4.037187370937113,
          -3.515807635238054,
          -7,
          -2.87140612375896,
          -7,
          -3.0031444621427994,
          -7,
          -1.1644343445700975,
          -3.3577549119189194,
          -3.1741412484842906,
          -7,
          -3.1492191126553797,
          -7,
          -7,
          -3.6794278966121188,
          -7,
          -7,
          -2.192328457926367,
          -7,
          -7,
          -7,
          -4.023663918197793,
          -1.7685212664313505,
          -2.8124676978229344,
          -7,
          -3.022290870952613,
          -2.908773627744193,
          -7,
          -7,
          -3.0273496077747564,
          -3.231278397611435,
          -7,
          -3.681743602361508,
          -2.9410142437055695,
          -3.2013971243204513,
          -7,
          -7,
          -3.386498965550653,
          -3.243286146083446,
          -3.2764618041732443,
          -7,
          -7,
          -7,
          -7,
          -3.1577588860468637,
          -2.301391757019262,
          -7,
          -3.2762319579218335,
          -7,
          -7,
          -4.480553062699267,
          -3.6943906795506427,
          -7,
          -7,
          -3.492061604512599,
          -3.1264561134318045,
          -7,
          -3.0718820073061255,
          -7,
          -3.038620161949703,
          -2.831613855309099,
          -7,
          -7,
          -3.1981987286196296,
          -2.409510452269316,
          -3.7640266076920375,
          -7,
          -7,
          -7,
          -7,
          -2.751279103983342,
          -7,
          -4.347622699467242,
          -7,
          -2.559108289366632,
          -2.449478399187365,
          -7,
          -7,
          -7,
          -7,
          -3.7352794480604565,
          -3.1319392952104246,
          -3.026364792307931,
          -2.5428254269591797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1699681739968923,
          -7,
          -2.7795964912578244,
          -3.121887985103681,
          -7,
          -2.9943171526696366,
          -3.0269416279590295,
          -7,
          -7,
          -2.5722906061514177,
          -7,
          -2.9395192526186187,
          -2.5435714239623657,
          -3.2347702951609167,
          -3.4863596256881286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2942898271007177,
          -3.019859346807118,
          -3.816241299991783,
          -3.0409976924234905,
          -7,
          -3.035829825252828,
          -7,
          -2.6447667303840188,
          -7,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -3.0947039943211667,
          -2.723044991643445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -2.742332282357148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0993352776859577,
          -2.5277104376322375,
          -7,
          -2.864748335629659,
          -3.053462604925455,
          -7,
          -7,
          -7,
          -7,
          -3.0400966434067005,
          -2.6972293427597176,
          -7,
          -2.877563299235066,
          -7,
          -3.2400497721126476,
          -7,
          -7,
          -2.062411035797732,
          -7,
          -3.6399842480415883,
          -7,
          -3.0979510709941502,
          -7,
          -3.968646361965884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.570531265142131,
          -2.6844440291990255,
          -3.97657921864011,
          -4.569736645661217,
          -4.569771733076458,
          -3.093676328665223,
          -3.4111144185509046,
          -7,
          -4.574320700915308,
          -7,
          -3.6226629418839154,
          -7,
          -3.1746992883707756,
          -4.13375174566039,
          -7,
          -3.976281183510049,
          -2.3350545700813736,
          -7,
          -4.57063632650346,
          -7,
          -4.0943313492770965,
          -7,
          -3.793511005792858,
          -3.4015134379172833,
          -7,
          -7,
          -7,
          -7,
          -4.573312639954846,
          -7,
          -4.270597325510137,
          -7,
          -4.10872283832555,
          -7,
          -2.601754985726854,
          -7,
          -3.9705793057148506,
          -3.970381748583891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6808791744268112,
          -3.091221989003633,
          -7,
          -4.269781376648798,
          -7,
          -3.9689613428677815,
          -7,
          -7,
          -7,
          -3.8755821043278855,
          -3.978420203258263,
          -7,
          -7,
          -7,
          -2.7125216046549006,
          -4.092381402367751,
          -4.569479251294796,
          -7,
          -7,
          -3.8916377965385367,
          -4.27378807956752,
          -7,
          -4.575845718353445,
          -3.3129012281886356,
          -7,
          -4.094447835204867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7961115793233833,
          -4.2708767268752394,
          -3.6735507734166104,
          -4.094529356768286,
          -3.728492919511281,
          -7,
          -2.4267489259439063,
          -4.272688467413575,
          -7,
          -7,
          -7,
          -7,
          -4.57016919245616,
          -4.570391143779831,
          -7,
          -7,
          -3.688808999699281,
          -4.570239294602916,
          -7,
          -4.569409026347427,
          -3.5753148805829507,
          -4.569549464888704,
          -7,
          -7,
          -7,
          -3.8766796104192007,
          -7,
          -7,
          -3.7954744865504764,
          -7,
          -3.1933670027973036,
          -4.570858039282002,
          -7,
          -7,
          -4.573544585314933,
          -3.800739983505454,
          -7,
          -3.4002572909326387,
          -2.961104552884867,
          -7,
          -7,
          -4.572220834365276,
          -3.0160023755050576,
          -4.570461210112099,
          -3.800396278249509,
          -3.434078220883039,
          -4.272966527115369,
          -7,
          -7,
          -3.7936739986571855,
          -7,
          -7,
          -2.7703421100328383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5313008910172563,
          -3.5967729767595324,
          -3.4513258084895195,
          -4.098816717048941,
          -4.269933025967809,
          -3.731659261815723,
          -4.570204244943991,
          -7,
          -3.795995813767079,
          -4.295292143016351,
          -3.733678655677088,
          -7,
          -7,
          -7,
          -2.812333910950622,
          -7,
          -7,
          -7,
          -4.572976098995143,
          -7,
          -7,
          -4.1004739362576546,
          -7,
          -7,
          -7,
          -4.273626206272959,
          -7,
          -4.570531265142131,
          -2.5508420193755015,
          -4.268917131979661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5866098063935756,
          -7,
          -3.3891168418357758,
          -7,
          -4.100921680320846,
          -2.3656343704164615,
          -7,
          -4.273313851575582,
          -7,
          -4.097650577155367,
          -3.877129363769828,
          -4.579657861593733,
          -4.572871602200481,
          -4.571592383361307,
          -7,
          -7,
          -7,
          -3.9812634968287997,
          -7,
          -7,
          -7,
          -3.0746047445737625,
          -7,
          -4.114577627000166,
          -7,
          -4.576836417070687,
          -4.5704028222869075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.590641242012281,
          -4.271004725785696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1961531473781424,
          -3.2234202205399374,
          -2.5623689099317946,
          -7,
          -7,
          -7,
          -3.8759405428391736,
          -7,
          -7,
          -4.5722557216594995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.66854432140747,
          -7,
          -7,
          -7,
          -4.2689755810978065,
          -7,
          -3.9685646629459224,
          -4.569654763999852,
          -7,
          -4.1026280541372,
          -7,
          -3.3159482602535313,
          -3.3059958827708047,
          -7,
          -7,
          -7,
          -3.987420452611655,
          -4.574320700915308,
          -2.8070351926151433,
          -4.572976098995143,
          -2.8992668191298856,
          -4.570099078991958,
          -4.569654763999852,
          -4.570134137138968,
          -3.7681728007939364,
          -3.6742179455767,
          -3.73340364069255,
          -3.6295681544737826,
          -3.9811274432111134,
          -7,
          -4.569876978316741,
          -7,
          -4.093993363295885,
          -3.575430335305532,
          -4.096168183884541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.57142930306149,
          -4.269419537511049,
          -3.1347375088987737,
          -4.576928460302419,
          -4.573312639954846,
          -4.0940982836485,
          -2.6242088081307733,
          -4.57142930306149,
          -7,
          -3.675228253593064,
          -7,
          -7,
          -7,
          -4.570542939881897,
          -3.883252494933286,
          -4.272920196193132,
          -7,
          -4.572488232028253,
          -7,
          -7,
          -2.465334349505298,
          -4.27814745163087,
          -7,
          -7,
          -7,
          -4.5811414989920385,
          -7,
          -7,
          -7,
          -4.572976098995143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6704314093606056,
          -7,
          -3.430956718067923,
          -3.9934031611308507,
          -2.5127638510577164,
          -4.5721277878771,
          -3.3498258358900697,
          -2.981383642081278,
          -4.278296208091274,
          -7,
          -4.09684052033139,
          -4.570858039282002,
          -3.9757993096794073,
          -3.8989554282244407,
          -4.278250442299367,
          -7,
          -7,
          -7,
          -3.4608862829944553,
          -7,
          -4.27063226051252,
          -7,
          -7,
          -7,
          -3.5527124506286203,
          -7,
          -7,
          -3.1778915151088025,
          -3.1677391846909155,
          -3.0109356647043852,
          -7,
          -3.096153170585375,
          -7,
          -3.260226984027309,
          -2.6499976347365273,
          -2.444232220713578,
          -7,
          -3.376987335620002,
          -3.0324844498918937,
          -2.8886191946371276,
          -2.8832972577942737,
          -2.674345246591718,
          -2.894986523001123,
          -3.1641757589822834,
          -2.858483962811246,
          -3.62875107815486,
          -3.2356967454881875,
          -3.6109793799229974,
          -2.754968130603507,
          -3.416052828653338,
          -2.837108073138243,
          -3.9888264070452757,
          -3.1288921961097267,
          -3.4208025946779483,
          -2.7256773723606216,
          -7,
          -2.514672557816041,
          -3.0849985064583896,
          -2.5897053117637743,
          -3.079735823647553,
          -2.901634334061141,
          -2.90135740013014,
          -3.189305792594432,
          -3.1257883982795844,
          -2.9024659741903083,
          -2.9298444960392853,
          -1.7990876794565267,
          -7,
          -7,
          -2.750317413906191,
          -2.424953964798759,
          -3.6720863073969623,
          -2.6988252153758836,
          -2.2076157982730913,
          -2.0927833055510514,
          -3.7880673136696466,
          -3.8076139425335747,
          -2.721747908322589,
          -2.739770065592548,
          -3.581277159547442,
          -7,
          -2.5406706777534835,
          -3.105793944650636,
          -4.571825249040829,
          -2.8606646256502417,
          -2.4408086323175966,
          -4.592665202751882,
          -7,
          -2.378339042491099,
          -1.9776834142348059,
          -2.325649322444365,
          -7,
          -4.589122650205851,
          -4.270480855202127,
          -2.411929234954811,
          -4.016887157902775,
          -2.8870263877196316,
          -3.10623340638907,
          -3.3616199233615767,
          -7,
          -3.617273000838871,
          -3.370947721650145,
          -3.331411721757633,
          -3.739504533616649,
          -2.837072617748184,
          -2.664750011697359,
          -3.0188363111861225,
          -3.149823711791301,
          -7,
          -2.1048164029455747,
          -2.494374636005587,
          -3.1471952256995244,
          -2.7772632504185997,
          -7,
          -3.634678752178682,
          -3.833582675940881,
          -3.104929817244617,
          -2.556887724520987,
          -7,
          -7,
          -7,
          -3.7334380270910614,
          -3.4928813974244086,
          -7,
          -3.978602732660473,
          -7,
          -3.5148907142742933,
          -3.177322348477116,
          -4.278982116865444,
          -4.0951577235791214,
          -7,
          -3.2174839442139063,
          -7,
          -2.531781628412806,
          -3.6239725120169965,
          -7,
          -4.59001658245561,
          -4.327103391877102,
          -3.807940721215499,
          -4.297026951616813,
          -7,
          -4.274561924706311,
          -4.601418934071117,
          -7,
          -3.97780359953627,
          -7,
          -7,
          -7,
          -3.7371826999516857,
          -7,
          -7,
          -3.6176489379831436,
          -2.932608678125612,
          -2.683539951532966,
          -7,
          -4.292632592082427,
          -7,
          -4.282009999342054,
          -7,
          -7,
          -7,
          -3.6937049699018094,
          -7,
          -4.574852754517795,
          -4.3103533890449945,
          -7,
          -3.777395748455203,
          -3.1284108091278755,
          -3.6347906462565187,
          -7,
          -7,
          -7,
          -4.278776457955645,
          -3.590083553256622,
          -7,
          -4.269746373130767,
          -4.571277816502185,
          -4.608836133184731,
          -3.1891492893536912,
          -7,
          -7,
          -4.1415856324913625,
          -4.573869100848107,
          -2.695830665371915,
          -4.097245737610607,
          -3.896691526562884,
          -4.573103783163991,
          -7,
          -3.752969865029084,
          -7,
          -3.208306962353663,
          -4.09941588705348,
          -7,
          -4.272456614923269,
          -4.587565053475168,
          -7,
          -7,
          -3.332619156864805,
          -7,
          -4.575545759343288,
          -3.394266221387696,
          -7,
          -7,
          -4.276989989368231,
          -3.3468263424137072,
          -3.773075617672614,
          -4.587284316492772,
          -4.585844093045212,
          -7,
          -7,
          -3.4220110828701387,
          -7,
          -7,
          -4.58840617721658,
          -3.2149421962885567,
          -4.281385662250469,
          -3.516242534833948,
          -2.9695556842208437,
          -7,
          -3.7256549915343533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.599839422193567,
          -7,
          -4.570986347596933,
          -7,
          -2.943826991798443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.554665330979803,
          -7,
          -7,
          -4.269933025967809,
          -4.577422858733517,
          -7,
          -7,
          -7,
          -7,
          -4.572139419778374,
          -7,
          -2.99450568945658,
          -4.6037828898966975,
          -3.696651206927901,
          -7,
          -7,
          -4.291735048725623,
          -4.570204244943991,
          -7,
          -2.9611953874821224,
          -7,
          -7,
          -4.283255987338656,
          -4.29877668624019,
          -4.101116706440969,
          -7,
          -7,
          -3.874052529609521,
          -7,
          -4.130247973456816,
          -7,
          -4.572685768016257,
          -7,
          -3.603144372620182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.629708726347577,
          -4.316892503761295,
          -7,
          -7,
          -3.0148856148402015,
          -3.2676409823459154,
          -4.301919388035856,
          -4.308841761261316,
          -7,
          -4.012858306449886,
          -7,
          -2.950992629105126,
          -3.771881320190099,
          -4.300291066777081,
          -3.315970345456918,
          -2.308150269457855,
          -7,
          -4.302027726021775,
          -7,
          -3.525260820213098,
          -3.8253395531907173,
          -3.6050031982042876,
          -3.349821269512391,
          -4.001668823327807,
          -7,
          -7,
          -3.8266362136341487,
          -7,
          -7,
          -3.6047658847038875,
          -7,
          -4.329926440795451,
          -7,
          -2.8242413391651398,
          -4.300095257323717,
          -3.4024763265233604,
          -7,
          -7,
          -7,
          -7,
          -4.301225384221708,
          -7,
          -3.39826560744918,
          -3.047254366806777,
          -1.8363564880287062,
          -3.6024289848375455,
          -7,
          -3.7200765727681406,
          -7,
          -4.000021714181245,
          -4.301377292349344,
          -3.8253179093501952,
          -3.464084829296133,
          -4.019178624894263,
          -7,
          -7,
          -7,
          -3.0060379549973173,
          -7,
          -7,
          -4.301398989173564,
          -7,
          -3.7363765800544826,
          -3.4644469632811794,
          -4.300769340770549,
          -7,
          -2.9795843128465216,
          -3.9995220131289035,
          -3.349255936352989,
          -7,
          -7,
          -7,
          -7,
          -3.9999565683801928,
          -7,
          -2.566276751530018,
          -3.157737313164466,
          -2.767897616018091,
          -7,
          -3.462397997898956,
          -7,
          -2.5384149714282267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.000086850211649,
          -7,
          -7,
          -7,
          -3.8637787291390504,
          -7,
          -7,
          -3.822538554147357,
          -2.4693096496224327,
          -4.300008202553813,
          -7,
          -7,
          -3.397657625474316,
          -2.6192211457496266,
          -7,
          -4.300508529343292,
          -2.81512766887421,
          -4.004450352989225,
          -2.962940070683585,
          -3.347850206404031,
          -7,
          -7,
          -3.1929532452325295,
          -3.5390760987927767,
          -7,
          -3.1073607401690504,
          -3.147124958647896,
          -4.301225384221708,
          -7,
          -3.827756862978617,
          -3.1984406460667385,
          -3.824494643099857,
          -3.7146231028714842,
          -2.762407618151054,
          -7,
          -7,
          -3.7005306569785916,
          -7,
          -7,
          -7,
          -3.3152504207468403,
          -7,
          -7,
          -7,
          -4.299964668624155,
          -7,
          -2.245172795269417,
          -3.203071758751761,
          -3.873862888966365,
          -7,
          -7,
          -3.812462124192689,
          -4.301225384221708,
          -7,
          -2.8022604758937684,
          -3.6494711629423424,
          -3.618131808061986,
          -7,
          -4.301268791966063,
          -4.301290494211371,
          -2.5203525040833177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.306403580380042,
          -7,
          -4.309502414966703,
          -3.6039450752328426,
          -7,
          -2.122116633990356,
          -3.044779227016736,
          -7,
          -7,
          -3.8244295818805045,
          -3.698578963307436,
          -4.000737673774033,
          -7,
          -2.7066771503975513,
          -7,
          -3.47633237460754,
          -7,
          -4.315760490665735,
          -1.5025532094804224,
          -3.523247738789921,
          -3.7067391125831666,
          -3.7059064557003114,
          -3.3551747163388153,
          -3.3577019756452953,
          -4.318626717029967,
          -7,
          -4.3038006237651745,
          -3.704236337308788,
          -4.30306639792351,
          -4.00114935814922,
          -3.848209650524033,
          -7,
          -7,
          -7,
          -3.602401088721594,
          -7,
          -4.0393546227061625,
          -7,
          -3.5351041538013934,
          -7,
          -7,
          -7,
          -4.300573746885434,
          -7,
          -7,
          -7,
          -7,
          -3.296665190261531,
          -3.5262961904825314,
          -7,
          -4.300247561194085,
          -7,
          -7,
          -7,
          -4.302049390376251,
          -4.300747612466259,
          -3.6991219808103533,
          -3.3100344691359895,
          -3.2717571463102697,
          -2.747979909234419,
          -3.4986132244051467,
          -7,
          -4.300769340770549,
          -7,
          -4.00902574208691,
          -7,
          -7,
          -4.305028753746333,
          -7,
          -7,
          -7,
          -4.299855814704268,
          -7,
          -3.99932632131709,
          -7,
          -7,
          -3.2242524199585794,
          -2.216233017981978,
          -7,
          -7,
          -7,
          -4.300899687772249,
          -3.3014640731432996,
          -3.301745991025256,
          -7,
          -3.827110687466011,
          -7,
          -4.000195388557727,
          -7,
          -2.5267289171353124,
          -7,
          -7,
          -7,
          -2.9932357714670954,
          -3.6097011023793995,
          -3.54647215540396,
          -7,
          -2.902062412283037,
          -7,
          -7,
          -7,
          -3.263945453485738,
          -3.6154871183986583,
          -3.617629297757842,
          -2.9105012648245125,
          -4.325166609792962,
          -7,
          -7,
          -3.999021736456061,
          -2.6576858792288287,
          -2.2381319193582705,
          -2.9443539096403843,
          -7,
          -4.304684365974386,
          -3.3496875548360436,
          -7,
          -7,
          -4.3034984457923136,
          -3.398330697921948,
          -2.5779783607363376,
          -3.711448682718111,
          -3.8297753428197034,
          -3.2235392038485093,
          -2.59009456910925,
          -7,
          -4.300291066777081,
          -3.2592866312736266,
          -7,
          -4.300443302006029,
          -3.7050721993278177,
          -4.000781027353495,
          -2.730823670555798,
          -3.161517733138683,
          -4.32095593690098,
          -7,
          -3.839184647626194,
          -7,
          -2.394777641646316,
          -3.539431589396556,
          -7,
          -7,
          -7,
          -4.020257669505882,
          -3.4074758852912557,
          -7,
          -3.824256037629682,
          -4.306360682861051,
          -7,
          -7,
          -7,
          -7,
          -4.302525732960741,
          -7,
          -3.228015175101788,
          -7,
          -3.0596239952953614,
          -4.046085259177423,
          -2.8248633390471047,
          -7,
          -2.4851157303738223,
          -3.005855493321154,
          -3.0385574192539826,
          -7,
          -4.308265533209933,
          -4.001365877488586,
          -2.8371252805687592,
          -3.3969931804349707,
          -3.3176037419331044,
          -4.300530269612207,
          -7,
          -4.29970337336519,
          -3.230640479632605,
          -4.000065139286961,
          -4.303973202540306,
          -3.602385590105105,
          -3.064041798987206,
          -4.000694315866355,
          -2.444321555122064,
          -7,
          -7,
          -2.093637827346512,
          -3.206251564282058,
          -4.282384171231339,
          -4.308564413561239,
          -3.554004321011903,
          -2.620976431565856,
          -2.7293585021344358,
          -2.72493870639439,
          -2.498405219017697,
          -7,
          -3.2536942589200692,
          -3.343052406603564,
          -3.1406617980802882,
          -2.569646790072784,
          -2.5970974632045323,
          -4.110858956731867,
          -2.8885932766328066,
          -2.1997470131327894,
          -3.994800899294604,
          -3.317919314241195,
          -3.9664077055553992,
          -3.209842548019534,
          -2.799436728056987,
          -2.7655605803956953,
          -3.3850835409542803,
          -4.054842779228683,
          -3.6157537159921604,
          -3.233132146252907,
          -7,
          -2.5082845223131955,
          -2.221921125998809,
          -3.6482999488182797,
          -3.6137126531882093,
          -3.1606935736054114,
          -3.1835210503697873,
          -3.966399885150024,
          -4.0142124192119,
          -3.132290682892835,
          -2.8383964648683504,
          -3.557522239542885,
          -2.602164376494167,
          -2.750317413906191,
          -7,
          -2.247102308100418,
          -4.0096420792661425,
          -3.189967298351272,
          -7,
          -2.6053449574108987,
          -2.2107767559059837,
          -2.3258644366153463,
          -2.718487848797103,
          -2.86178108426316,
          -3.1898410886816086,
          -7,
          -3.037149237069725,
          -4.3257413721537965,
          -4.003158833950862,
          -3.7567311710637616,
          -3.2894650772224656,
          -2.1719467399789805,
          -7,
          -0.7071420466449847,
          -2.1463918829342066,
          -2.977746849688124,
          -3.7006820883952,
          -3.5573868820595074,
          -3.400300487121445,
          -2.508180313730055,
          -3.9107310980433807,
          -3.121389599386456,
          -1.7647529287258061,
          -2.567082407772391,
          -3.456929686007518,
          -1.9458381834644687,
          -3.3956321266137643,
          -2.3607543603462675,
          -3.5494937132150133,
          -3.206987694756408,
          -3.462397997898956,
          -1.3932312730031822,
          -4.350771183053166,
          -3.702710497195296,
          -2.2925046365073523,
          -2.666247158263108,
          -7,
          -2.1560455027012795,
          -3.6224005533247965,
          -3.221273764150597,
          -2.9945920748044763,
          -3.175859573543703,
          -3.190288589878837,
          -3.457211238355728,
          -7,
          -7,
          -3.4576204434805464,
          -2.066692567004262,
          -3.2618033722622637,
          -3.0187628928164694,
          -3.3067894674956784,
          -1.7258668430871862,
          -2.1314843764626303,
          -2.9203738085519615,
          -3.606015715870653,
          -4.000694315866355,
          -2.378448845578422,
          -3.829303772831025,
          -2.0732821674750395,
          -2.7834621696507282,
          -3.271186609747914,
          -3.6382096210738157,
          -2.073927724573103,
          -3.0074632745631806,
          -2.4915756751290963,
          -3.62015688394582,
          -3.8340178035693295,
          -1.8103072096251425,
          -4.315634529100032,
          -3.841922311679451,
          -4.30977916448048,
          -3.4015297758611776,
          -7,
          -2.496748489605601,
          -4.005888024713317,
          -7,
          -2.8713340715842777,
          -1.4715151312274832,
          -2.5355099562291943,
          -3.999739345106568,
          -3.6447536095066053,
          -3.2279937659927205,
          -3.722633922533812,
          -2.960924597102376,
          -7,
          -2.9792881623045173,
          -2.9014583213961123,
          -7,
          -4.30982172568023,
          -3.772725002459211,
          -4.301073422940844,
          -2.262256231598923,
          -3.1355990420591975,
          -3.104808335056258,
          -7,
          -3.537714180353135,
          -3.3997818490757465,
          -4.31893939156067,
          -3.1375229005224505,
          -4.005223424858136,
          -3.1256330524746545,
          -3.0013658774885856,
          -3.8932622858879915,
          -2.872672289326085,
          -7,
          -3.834738518903841,
          -2.6531946412066914,
          -4.308009186238258,
          -1.7284436834387493,
          -2.3708744173977294,
          -3.8703453710809597,
          -3.226943424688905,
          -4.309800445601733,
          -3.3351337369564797,
          -4.302677187010019,
          -2.980195726856603,
          -3.4096161586059464,
          -3.5264469759599937,
          -2.8437481337859585,
          -3.4295706132786914,
          -4.300073495267144,
          -3.699555906491557,
          -2.560237810473034,
          -3.5344491888776157,
          -3.7089093129228483,
          -2.7338250600018092,
          -4.015129132443987,
          -2.806470698851535,
          -4.014604533436051,
          -2.233293770257954,
          -2.6859923929665883,
          -3.218010042984363,
          -3.5514906603465675,
          -7,
          -7,
          -2.6134212196672615,
          -4.0461243144366135,
          -3.4578170395546044,
          -3.2200275811379977,
          -2.2201189888691593,
          -2.269867206668517,
          -2.1332790851606114,
          -2.789155251553628,
          -3.6285421834125686,
          -3.0229707105775065,
          -4.314035845679718,
          -3.4568646864591064,
          -7,
          -2.9641095666974007,
          -4.01598810538413,
          -3.0988359340440947,
          -7,
          -3.09790774336585,
          -4.299921130330193,
          -2.3276951156740915,
          -4.301637582726872,
          -7,
          -4.001387523486641,
          -7,
          -7,
          -4.303735889039906,
          -4.30588853028431,
          -3.2340692861153584,
          -3.7379277754753852,
          -4.311393565000522,
          -7,
          -3.712355022085704,
          -7,
          -7,
          -7,
          -4.305652261364764,
          -3.827606174663971,
          -4.305910002904616,
          -2.794827527685904,
          -3.75949787011256,
          -4.0537888751837405,
          -3.8259883673374397,
          -7,
          -2.749716500604673,
          -7,
          -7,
          -2.8627612481426667,
          -7,
          -7,
          -3.8498696508006978,
          -3.877544107715944,
          -4.316117183498905,
          -7,
          -7,
          -3.4612626428467945,
          -7,
          -3.6688702669537956,
          -7,
          -7,
          -7,
          -3.428701599623054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.426998958756537,
          -3.148028219473996,
          -3.782114147479071,
          -7,
          -7,
          -3.359408564022824,
          -2.972804322336578,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4138025167693513,
          -3.9529376677509807,
          -7,
          -2.7374095188550136,
          -2.630000273287136,
          -7,
          -3.7289216463728594,
          -3.721645766289746,
          -3.4336898459916987,
          -7,
          -7,
          -3.6615813366225707,
          -7,
          -7,
          -7,
          -3.7356787259059048,
          -3.269746373130767,
          -7,
          -2.0117005400505548,
          -7,
          -3.8252313231999002,
          -3.1222158782728267,
          -2.5870436333497824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8216772586543666,
          -7,
          -3.7275412570285567,
          -2.734333025494258,
          -2.1374581672330395,
          -3.7272158209084925,
          -7,
          -3.4990681845107945,
          -7,
          -7,
          -3.4252896164467943,
          -3.2533380053261065,
          -3.2786011901837955,
          -3.793511005792858,
          -7,
          -7,
          -7,
          -1.8952364476239492,
          -3.2438644894340767,
          -3.7208205817703437,
          -7,
          -7,
          -3.8522359394118872,
          -3.4561381965502913,
          -7,
          -3.4626974081017172,
          -4.034187120793453,
          -2.7679799545304054,
          -2.020052401871201,
          -7,
          -7,
          -7,
          -7,
          -3.4239827296771757,
          -7,
          -2.1805288320314995,
          -2.958882280950234,
          -2.3864246445986614,
          -3.4350476413399647,
          -2.9710437918360286,
          -7,
          -2.506654059799193,
          -3.2726150608493985,
          -3.726890140741822,
          -7,
          -7,
          -7,
          -3.248218561190075,
          -3.4260230156898763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7744393091379262,
          -3.2438644894340767,
          -7,
          -7,
          -3.725258066359961,
          -2.530350390252444,
          -3.0257153839013404,
          -3.245759355967277,
          -1.970141919942742,
          -3.7418603940652635,
          -2.9638402752028625,
          -3.0308425028249166,
          -7,
          -7,
          -3.049140463158965,
          -3.48280214772046,
          -3.122625396909397,
          -2.5234863323432277,
          -2.4168887891206565,
          -7,
          -7,
          -7,
          -3.4133872411492066,
          -7,
          -3.781827152932428,
          -1.6678905292311565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.675503384727957,
          -7,
          -3.7203247174174416,
          -7,
          -3.118595365223762,
          -3.1180993120779945,
          -2.299164733747734,
          -3.4081834128693056,
          -3.5883277412249504,
          -3.7647737169110402,
          -7,
          -4.052693941924968,
          -3.424718337331567,
          -3.120491670672996,
          -1.8729433234927009,
          -3.1828709639889086,
          -2.782114147479071,
          -7,
          -7,
          -7,
          -2.413789632942366,
          -3.4191293077419758,
          -7,
          -7,
          -3.7449185424413534,
          -7,
          -7,
          -3.4742162640762553,
          -7,
          -3.269045709657623,
          -3.737987326333431,
          -3.4550733759211245,
          -3.4316853446860116,
          -7,
          -1.8251445416738838,
          -3.246826721711981,
          -7,
          -7,
          -3.426267207139606,
          -3.7241939195143297,
          -3.7281101841003403,
          -7,
          -1.567188673731501,
          -7,
          -3.2436049203372175,
          -7,
          -7,
          -1.3242559139073553,
          -2.6464037262230695,
          -1.8064954803413185,
          -2.269590767796998,
          -2.1382641781004526,
          -1.873993263073632,
          -3.7880268840958036,
          -3.2667802957655163,
          -7,
          -3.7451528950769006,
          -3.7327956982893293,
          -3.030032704936171,
          -3.5094713521025485,
          -7,
          -7,
          -7,
          -4.125318578123527,
          -7,
          -3.3805730030668872,
          -7,
          -2.9242792860618816,
          -3.4261044280965076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.73870130043471,
          -3.4190465771041594,
          -2.8761353300030206,
          -3.245430407281296,
          -7,
          -7,
          -7,
          -7,
          -3.425044874551389,
          -2.43426466970869,
          -2.866508861395503,
          -3.318793504793297,
          -2.990800554937705,
          -7,
          -7,
          -7,
          -3.155867191785367,
          -7,
          -7,
          -3.262609273845055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2584776449785178,
          -2.7882273104751665,
          -7,
          -7,
          -3.7204074008031087,
          -2.9457147140598603,
          -2.549901999869041,
          -2.277772882850179,
          -3.722057771331464,
          -3.436242180871562,
          -7,
          -7,
          -2.760480478279665,
          -1.7989348563069356,
          -3.118430077122089,
          -7,
          -2.946042669130686,
          -3.3685348052638817,
          -2.907871825014827,
          -2.6159938644667187,
          -3.4437322414015967,
          -3.41604582768641,
          -7,
          -7,
          -7,
          -3.3617750393741854,
          -3.7742979384992776,
          -3.4805099729419604,
          -2.8588712445685736,
          -7,
          -7,
          -7,
          -3.721645766289746,
          -2.499525364321282,
          -1.8703114792547921,
          -2.901302604477304,
          -3.7200765727681406,
          -7,
          -3.7372721765355434,
          -7,
          -3.4236553925733784,
          -7,
          -3.426592582305156,
          -1.8317026370805913,
          -2.991964044403458,
          -3.445993181787647,
          -2.3142724592544885,
          -2.5353420781776848,
          -3.734399742520567,
          -3.7223870941771238,
          -3.731145381297382,
          -7,
          -3.24551266781415,
          -7,
          -3.728272597895017,
          -2.2079311274173823,
          -2.5451524256424958,
          -7,
          -3.741624257503812,
          -7,
          -7,
          -3.12792263183849,
          -3.006323393378873,
          -7,
          -7,
          -7,
          -3.194653071952934,
          -3.0615278708905076,
          -3.72222246396973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7375901662857216,
          -7,
          -7,
          -3.448474428212161,
          -2.8243699338659654,
          -3.243781916093795,
          -3.5769169559652068,
          -3.4279821568454762,
          -7,
          -1.9859892855571855,
          -3.281033367247727,
          -7,
          -3.7203247174174416,
          -3.0522320902523346,
          -7,
          -2.358593700955241,
          -2.986995539724382,
          -3.308422115236931,
          -3.723291446477584,
          -3.721068301797159,
          -7,
          -2.552668216112193,
          -3.7255849722706946,
          -2.8901015084080566,
          -7,
          -2.64479015953634,
          -3.7279477095447966,
          -2.109288363833595,
          -7,
          -7,
          -2.7690686889664704,
          -3.881947847027854,
          -7,
          -3.752893154884594,
          -4.503627281356413,
          -3.8536373819585945,
          -7,
          -3.574768941501752,
          -2.926107152304904,
          -7,
          -2.9197935241116775,
          -3.2491779675001773,
          -7,
          -4.835944100093848,
          -2.6032029107631343,
          -7,
          -3.8680563618230415,
          -2.86485122194783,
          -4.174873528887417,
          -3.6180195550634915,
          -7,
          -4.273454356354353,
          -3.7954976699424585,
          -3.048053173115609,
          -3.0507405516030395,
          -4.2867482966137125,
          -4.072387776173931,
          -4.044748756778496,
          -7,
          -3.020658300284545,
          -3.2229764498933915,
          -4.334202350575516,
          -4.047352760753935,
          -3.223604090098074,
          -2.972395712424915,
          -7,
          -4.212533836186607,
          -3.6595993124367445,
          -2.65577359512805,
          -3.307006760878611,
          -2.284148632839535,
          -2.424953964798759,
          -2.247102308100418,
          -7,
          -3.760573253944394,
          -3.91171676912009,
          -3.7803893284709527,
          -2.350127510310411,
          -2.0614127939332474,
          -2.264292995777203,
          -2.5798355426107604,
          -3.372175286115064,
          -3.226299102605581,
          -7,
          -4.017409008536211,
          -3.811709026696191,
          -3.2596735002046984,
          -3.61066016308988,
          -2.2364554365485083,
          -3.16345955176999,
          -7,
          -2.1618775133441885,
          -2.6974115296424017,
          -3.9828137621318627,
          -3.4308809464528913,
          -3.3661738280168447,
          -3.735119634081872,
          -2.401114801918744,
          -3.988603543345664,
          -4.188375307998576,
          -2.557795833605628,
          -3.1371166405827675,
          -2.774354733944107,
          -3.6808338953273694,
          -2.3076694666603705,
          -3.4250811413139908,
          -3.1190578375232376,
          -3.6765107102825536,
          -3.0849845933781146,
          -2.9448190303561415,
          -2.470840026689671,
          -2.73814608871206,
          -3.064659538033753,
          -2.3278748299030187,
          -7,
          -2.847971643535726,
          -7,
          -3.843419665204918,
          -2.180679778900204,
          -2.905852665734307,
          -2.3737912227975784,
          -3.7309436934277356,
          -7,
          -3.7537362221750104,
          -4.227423895933663,
          -2.056726239579111,
          -3.7348798027926278,
          -3.015778756389041,
          -7,
          -2.547129786025174,
          -2.915194571282631,
          -2.7475530418655225,
          -7,
          -7,
          -2.8981372642370817,
          -3.745465168670727,
          -2.9950132843541937,
          -2.934209787569329,
          -7,
          -7,
          -2.70251259492133,
          -7,
          -2.7759183689513516,
          -7,
          -2.6815427260943268,
          -2.3241741119063604,
          -3.7777891874348675,
          -3.312318429847517,
          -3.75724415102197,
          -3.739651443709377,
          -7,
          -2.868203455637116,
          -7,
          -3.7259932589247224,
          -4.060874040047298,
          -1.9824710381122468,
          -3.007986327869048,
          -7,
          -7,
          -3.749581734865559,
          -7,
          -7,
          -7,
          -3.730216840568694,
          -3.283018392821262,
          -3.7388598020722004,
          -2.8019370074044843,
          -7,
          -7,
          -3.526511582284746,
          -2.216957207361097,
          -2.3215293907256065,
          -7,
          -7,
          -3.255754786643044,
          -7,
          -3.821824563121178,
          -7,
          -3.7300551523755,
          -3.7333577879255855,
          -3.9433955765089546,
          -3.1565112927708103,
          -7,
          -7,
          -3.51018741901152,
          -7,
          -2.6707772914123376,
          -2.5215995264411646,
          -7,
          -2.6648769198312108,
          -7,
          -4.129012793126035,
          -7,
          -3.7075701760979363,
          -7,
          -3.739255803268511,
          -3.271066772286538,
          -3.5336449787987627,
          -3.721563318357481,
          -3.426673888021373,
          -2.876506504265881,
          -7,
          -7,
          -3.4114934392137135,
          -7,
          -7,
          -3.07838430874819,
          -3.062581984228163,
          -3.2069607291557105,
          -7,
          -7,
          -7,
          -7,
          -2.9755788462970836,
          -3.5770319856260313,
          -3.7331972651065697,
          -3.2371036915866878,
          -2.7540423867854362,
          -2.900913067737669,
          -3.3047981671445035,
          -3.128022113260405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7826875682349663,
          -3.5989545668854097,
          -7,
          -3.2539031250960253,
          -7,
          -2.188436857621509,
          -7,
          -7,
          -7,
          -3.2561562792129193,
          -3.7552648914122466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731346975545955,
          -3.4728295567127057,
          -7,
          -7,
          -7,
          -7,
          -3.438067450453494,
          -7,
          -2.7814412051174204,
          -3.9194964878630616,
          -3.9003671286564705,
          -7,
          -7,
          -2.0638537112918005,
          -7,
          -3.721398375521505,
          -3.1253185781235264,
          -7,
          -7,
          -2.860737174321432,
          -3.900039235487325,
          -7,
          -3.720985744153739,
          -7,
          -2.7444494574467986,
          -7,
          -3.9367649976099415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.786751422145561,
          -7,
          -7,
          -7,
          -7,
          -2.799242058812066,
          -3.368565785360332,
          -2.7895807121644256,
          -7,
          -7,
          -7,
          -2.7267272090265724,
          -2.742934505531679,
          -7,
          -7,
          -2.809896246602439,
          -3.1632818171729102,
          -7,
          -7,
          -7,
          -2.5397032389478253,
          -7,
          -2.8567288903828825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.866444877666462,
          -7,
          -2.423245873936808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.955527405293444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7423715832469,
          -7,
          -7,
          -7,
          -7,
          -3.376576957056512,
          -7,
          -7,
          -7,
          -3.9269081017054357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.061829307294699,
          -2.852479993636856,
          -7,
          -7,
          -2.889040982413291,
          -2.3434085938038574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9204711793184543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0257153839013404,
          -7,
          -7,
          -7,
          -7,
          -3.295567099962479,
          -7,
          -7,
          -7,
          -7,
          -2.8270460170047342,
          -7,
          -7,
          -4.1103539826640025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.133584525142688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4272810597615218,
          -3.469380135849925,
          -3.4795753101749884,
          -1.5487493628768414,
          -7,
          -3.8165064370463573,
          -7,
          -7,
          -7,
          -7,
          -2.4245549766067134,
          -7,
          -7,
          -7,
          -3.610731120443506,
          -7,
          -7,
          -7,
          -2.9148718175400505,
          -7,
          -7,
          -7,
          -7,
          -2.9253120914996495,
          -7,
          -7,
          -7,
          -7,
          -3.8860634722671143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5276759237063207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.63382180730168,
          -7,
          -3.393399695293102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.586212104232087,
          -3.2555137128195333,
          -3.946350925999629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.002079626393121,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4435758797502576,
          -2.7974983643715756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9604877657203366,
          -7,
          -4.502153892871361,
          -7,
          -7,
          -7,
          -3.6504046698680317,
          -2.1231253958448315,
          -2.6398183918310933,
          -3.2511513431753545,
          -3.2350231594952237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.479719235439571,
          -7,
          -7,
          -7,
          -3.1788171333145847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.936513742478893,
          -7,
          -7,
          -2.958085848521085,
          -7,
          -7,
          -7,
          -7,
          -3.3665094270086184,
          -3.1341771075767664,
          -7,
          -7,
          -7,
          -7,
          -3.0141003215196207,
          -7,
          -7,
          -2.9148718175400505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9459607035775686,
          -7,
          -7,
          -7,
          -4.154816235509648,
          -7,
          -7,
          -4.248120459883603,
          -7,
          -7,
          -7,
          -7,
          -3.0972573096934197,
          -7,
          -3.1370374547895126,
          -7,
          -7,
          -7,
          -2.3001605369513523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.954724790979063,
          -7,
          -7,
          -7,
          -4.44897670381325,
          -7,
          -7,
          -4.132739838260885,
          -7,
          -3.726890140741822,
          -3.6252952983922326,
          -2.956904441636584,
          -7,
          -3.5678886061861617,
          -4.578730871952774,
          -7,
          -7,
          -3.9222755373836495,
          -7,
          -4.394276526767821,
          -7,
          -7,
          -4.612052355179759,
          -7,
          -7,
          -7,
          -3.94215692846749,
          -7,
          -7,
          -7,
          -4.455210427775805,
          -7,
          -3.451581772710935,
          -7,
          -4.584794676832955,
          -7,
          -4.186589091272407,
          -3.816042340921997,
          -7,
          -7,
          -7,
          -7,
          -2.8961586385578335,
          -7,
          -3.6720863073969623,
          -4.0096420792661425,
          -3.760573253944394,
          -7,
          -2.9839643910590135,
          -3.1122697684172707,
          -2.6820955996306606,
          -7,
          -7,
          -4.081779226767534,
          -3.6727749524390982,
          -7,
          -7,
          -2.907795114870337,
          -2.6384892569546374,
          -7,
          -3.5347873586294916,
          -7,
          -7,
          -7,
          -3.5150786750759226,
          -2.610050179649368,
          -5.173436862713784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.642731544081733,
          -7,
          -7,
          -7,
          -7,
          -3.717504074764202,
          -7,
          -7,
          -3.677789391068861,
          -3.578524605274993,
          -3.467548913204926,
          -3.1760912590556813,
          -7,
          -2.412083448112903,
          -4.567308742295084,
          -3.132899769944483,
          -4.636628292196984,
          -7,
          -7,
          -7,
          -3.179592822341174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.004493337547275,
          -7,
          -7,
          -7,
          -7,
          -3.527243116388089,
          -7,
          -7,
          -7,
          -3.8036619232362243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5504729571065634,
          -7,
          -7,
          -7,
          -4.343270700650801,
          -4.141990345122414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7285161047597666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5257572431523108,
          -7,
          -7,
          -7,
          -7,
          -4.040979729669609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9353056902899253,
          -7,
          -7,
          -3.7471786713601642,
          -7,
          -7,
          -7,
          -3.7539658658651605,
          -3.3922571613416745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4746740514121064,
          -7,
          -3.671913012441587,
          -3.988269033214435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.940516484932567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6130863955560057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.394889257167419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9849096841478056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1718187977917682,
          -4.074816440645175,
          -7,
          -7,
          -2.9986661172549796,
          -3.3374307352647072,
          -7,
          -7,
          -7,
          -4.069631102620343,
          -4.045088161542816,
          -3.129459704839323,
          -3.6929643596462265,
          -7,
          -7,
          -2.679417801318545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.593904201112881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0973267357157725,
          -7,
          -2.6482797891073147,
          -7,
          -7,
          -3.7536213547777604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5045795924147223,
          -7,
          -7,
          -4.084147133154448,
          -7,
          -4.0468462039458215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7311050512159203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.764512374855157,
          -3.4384948823144637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0687052196919415,
          -4.052039507001472,
          -7,
          -7,
          -2.5577954361732025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0477031081343045,
          -7,
          -7,
          -3.036129648862875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0587675553704194,
          -4.054766217838991,
          -3.4472937271664454,
          -7,
          -7,
          -7,
          -7,
          -4.075765878215734,
          -7,
          -3.6755950563867463,
          -2.4428529063688726,
          -7,
          -7,
          -7,
          -3.639639195951458,
          -7,
          -4.074670188924007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2900782787982696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.990366607893781,
          -7,
          -3.8317418336456384,
          -3.1112251630263263,
          -4.049683089088249,
          -3.756154136574281,
          -7,
          -7,
          -4.060471192797679,
          -7,
          -4.075473964588946,
          -7,
          -7,
          -7,
          -3.1533765391396362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3614984895639037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0457140589408676,
          -3.799064719351008,
          -7,
          -3.4793593328069714,
          -7,
          -7,
          -3.1378512485602417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7505855273410087,
          -7,
          -7,
          -7,
          -3.3903344475118518,
          -7,
          -7,
          -7,
          -3.328016973644657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8490199494984036,
          -2.329607016300816,
          -7,
          -7,
          -7,
          -3.7617775375081783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7118704712055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.078275522086601,
          -7,
          -3.52283531366053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.835276892005453,
          -7,
          -2.9726450358936027,
          -4.046729222266487,
          -4.045244720478147,
          -7,
          -3.875928984922927,
          -3.225309281725863,
          -3.597329464234929,
          -7,
          -3.6119002460753435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.047975405279086,
          -4.132867788319085,
          -7,
          -7,
          -7,
          -2.6919141740681636,
          -7,
          -7,
          -3.3745912490715475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788513892301845,
          -3.034263748439709,
          -7,
          -7,
          -7,
          -7,
          -3.763128376799137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3434523602537487,
          -3.8252637950292847,
          -3.097332906380686,
          -7,
          -7,
          -3.300378064870703,
          -7,
          -7,
          -7,
          -7,
          -4.072323438293041,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8217099972983766,
          -7,
          -7,
          -4.020294973084726,
          -3.6484901171778015,
          -3.106811486925355,
          -7,
          -3.2750232653226883,
          -7,
          -2.237217718184282,
          -2.2977910670286694,
          -2.6262598343477097,
          -7,
          -3.6364678360987646,
          -3.1407862902279273,
          -2.739611120396931,
          -2.714370798675753,
          -3.1364644505475163,
          -2.8110793523514945,
          -2.683306160151271,
          -3.445105801862532,
          -2.6436836227728864,
          -3.3891829662320165,
          -3.099887727411467,
          -2.696359566292455,
          -2.881527305640932,
          -2.7685653225944606,
          -3.151561363449798,
          -2.937656213375918,
          -3.1803552964487887,
          -2.621477817010842,
          -7,
          -2.360312905256625,
          -2.9481604689796845,
          -2.925774277148833,
          -2.814417958920844,
          -2.6484273121560085,
          -2.6515330462926907,
          -2.8251787446137353,
          -2.6620491649778457,
          -2.6563870314854445,
          -2.934941634040361,
          -2.756157762417882,
          -7,
          -2.6988252153758836,
          -3.189967298351272,
          -3.91171676912009,
          -2.9839643910590135,
          -7,
          -3.374675041177133,
          -2.3124147930253374,
          -3.627109711211139,
          -3.79619259685592,
          -2.454111254290318,
          -2.8349326248860227,
          -2.8209673146717194,
          -7,
          -2.9307077936771586,
          -2.596668024008441,
          -7,
          -0.952877875223359,
          -2.709469498990783,
          -4.117867626566016,
          -7,
          -3.0055834614855628,
          -2.0544809452212145,
          -2.925674902660467,
          -7,
          -4.107209969647869,
          -7,
          -3.0698782319505344,
          -3.191674531959229,
          -2.9921955081228835,
          -3.5710679786102455,
          -3.6492179924562715,
          -4.048985302570711,
          -3.4888326343824008,
          -2.9595598291522704,
          -3.519623846347367,
          -3.394521722674913,
          -2.0920703092729895,
          -2.979912410334717,
          -3.171123924298172,
          -3.530103604722902,
          -7,
          -2.6777604106572355,
          -2.783051077562302,
          -3.297724044876189,
          -3.3886259019870084,
          -7,
          -2.9020028913507296,
          -3.6955108619666306,
          -3.245841554222827,
          -3.57611089412084,
          -7,
          -7,
          -4.060584531360865,
          -2.9573007307447923,
          -3.035724574911353,
          -7,
          -4.081239260911698,
          -7,
          -7,
          -3.1685816572769356,
          -7,
          -4.054114900510586,
          -7,
          -3.529327672138844,
          -7,
          -3.0733761552166086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.133826214076394,
          -4.0790002523038495,
          -4.064869625059806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5479961022227244,
          -7,
          -7,
          -3.4593601729795065,
          -3.180723073467645,
          -2.0826984719813044,
          -7,
          -7,
          -3.7574339899382694,
          -7,
          -4.052501563413781,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.171550945676746,
          -7,
          -3.5995282897455563,
          -7,
          -3.8063835018241674,
          -7,
          -4.073388381115178,
          -4.050573076755148,
          -4.07838430874819,
          -3.1293138563822125,
          -7,
          -7,
          -7,
          -3.1639064334577514,
          -3.0915162219609544,
          -7,
          -7,
          -3.714245911017894,
          -7,
          -3.209799552659082,
          -7,
          -4.127007557371327,
          -7,
          -7,
          -3.6830019846071993,
          -7,
          -3.162917259782312,
          -4.0680002261451715,
          -7,
          -4.058008232715403,
          -3.8013694042010013,
          -7,
          -7,
          -3.871426978736606,
          -7,
          -7,
          -3.6058973516449746,
          -7,
          -7,
          -7,
          -3.733250779305627,
          -3.235584553681337,
          -7,
          -7,
          -7,
          -7,
          -3.5666142382391173,
          -3.5241688532784616,
          -7,
          -3.2595256204210687,
          -3.174917769318039,
          -7,
          -3.454779547656796,
          -3.3010589476643855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05816020349183,
          -3.7740057302582093,
          -4.138933940256924,
          -7,
          -4.049683089088249,
          -7,
          -3.284465441307329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2830749747354715,
          -3.512317438458193,
          -7,
          -4.049683089088249,
          -3.593433761115369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05545478494124,
          -7,
          -3.6729901704091192,
          -3.6618442235701645,
          -7,
          -7,
          -3.640978057358332,
          -7,
          -7,
          -3.2988821738926766,
          -7,
          -7,
          -4.092439911331141,
          -3.5366531185480494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6832272060414346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4924810101288766,
          -7,
          -7,
          -7,
          -7,
          -3.1604685311190375,
          -7,
          -3.633165353683903,
          -7,
          -7,
          -7,
          -3.148408403505286,
          -7,
          -2.949390006644913,
          -7,
          -7,
          -7,
          -2.6928469192772297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8717091176588196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7554937284151193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.053923150548575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.126780577012009,
          -4.234846169921364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2962262872611605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.442636525782232,
          -7,
          -7,
          -7,
          -3.117602691690084,
          -7,
          -7,
          -7,
          -7,
          -3.123851640967086,
          -7,
          -7,
          -7,
          -7,
          -3.7827233819060297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.119321886463977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6020599913279625,
          -7,
          -7,
          -7,
          -2.8922685640314416,
          -7,
          -7,
          -7,
          -3.037824750588342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.733277533932582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1932916025795164,
          -7,
          -7,
          -3.9774675246367477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9483151406893477,
          -7,
          -3.136879039875517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6769982707961844,
          -7,
          -4.6742547252584545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.951823035315912,
          -7,
          -7,
          -7,
          -7,
          -3.4837298990000236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0401274417814563,
          -7,
          -4.204757384698596,
          -2.6242820958356683,
          -2.906335041805091,
          -7,
          -7,
          -3.1702617153949575,
          -7,
          -3.3121773564397787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0056094453602804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.312537003107304,
          -2.9813655090785445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6086295397104116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3548412529584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.105510184769974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.137021615898141,
          -7,
          -7,
          -3.5629043555363977,
          -3.834937035377519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.404097870640489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.802534284386976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.680984807303974,
          -7,
          -3.4787107555127594,
          -4.237543738142874,
          -3.8887634042622317,
          -4.251370505496702,
          -7,
          -7,
          -7,
          -7,
          -3.8834532266769703,
          -7,
          -2.4671370338130614,
          -7,
          -2.2076157982730913,
          -7,
          -3.7803893284709527,
          -3.1122697684172707,
          -3.374675041177133,
          -7,
          -2.4757450374642254,
          -7,
          -7,
          -7,
          -2.5222015261402246,
          -3.450557009418329,
          -7,
          -2.5957900611344176,
          -1.5317069530054377,
          -7,
          -2.964848663898841,
          -4.20227029773729,
          -7,
          -7,
          -4.064401826826439,
          -2.632284751300133,
          -4.873183954880855,
          -2.968015713993642,
          -3.399327532158679,
          -7,
          -4.140623253015846,
          -7,
          -3.6226826639407017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.290034611362518,
          -7,
          -2.4197818916091722,
          -2.349385466944565,
          -4.174641192660449,
          -2.4706242843379016,
          -7,
          -2.6905803358869598,
          -3.9683311524518685,
          -2.4305587695227575,
          -7,
          -7,
          -3.398981066658131,
          -7,
          -7,
          -3.0068937079479006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015946243657567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.63426561339283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7461981289915505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.384410766617083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.66133934000604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325577231940418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.963787827345555,
          -7,
          -4.169056932744852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.94019263553191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0641458839444216,
          -7,
          -2.7009648094994096,
          -3.346304064660407,
          -7,
          -4.541254649786259,
          -1.7228205553179063,
          -2.030522403689804,
          -4.2410606158912,
          -7,
          -7,
          -3.16828873237199,
          -4.541079767776629,
          -1.873993814550635,
          -3.470840026689671,
          -4.240124730168566,
          -3.6472117617451385,
          -1.8568379988483543,
          -7,
          -4.24112293662285,
          -7,
          -3.764823478524604,
          -4.542476856009627,
          -3.94126290931895,
          -2.8575847767956573,
          -4.542588927185314,
          -7,
          -7,
          -4.242168589973666,
          -4.24398006574108,
          -7,
          -3.6980135039391815,
          -4.540917314258837,
          -4.257390549337304,
          -4.064370622354286,
          -2.1432653081007023,
          -7,
          -4.067219688974141,
          -2.7793352090989942,
          -7,
          -7,
          -7,
          -7,
          -4.542053214823124,
          -7,
          -2.9994205543077666,
          -2.292864986031581,
          -7,
          -3.843320002089389,
          -3.210999118023019,
          -3.5424394925233997,
          -3.939506772712817,
          -7,
          -4.2414094968594185,
          -7,
          -4.075583455193813,
          -4.065156292208035,
          -7,
          -7,
          -2.389949983431617,
          -7,
          -7,
          -7,
          -7,
          -2.899737259826841,
          -4.546666025070184,
          -4.541454428747589,
          -3.4334990460631887,
          -2.5018548537616296,
          -4.5413545507544155,
          -4.242168589973666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4319325523895805,
          -4.242504158866157,
          -2.9457393192824894,
          -3.338817425576695,
          -3.6422171294738805,
          -7,
          -1.3388058084949108,
          -3.026186472960786,
          -3.6386015599717445,
          -3.841934810980999,
          -4.5409548089261325,
          -7,
          -3.842609239610562,
          -4.0647449281249015,
          -4.541454428747589,
          -3.938832324687507,
          -2.6600468488873688,
          -7,
          -7,
          -7,
          -3.9452592658135237,
          -7,
          -7,
          -7,
          -7,
          -3.4011789054198043,
          -4.541629159983864,
          -4.240249631518799,
          -3.2897994595306046,
          -3.464737871805711,
          -2.7325734959401977,
          -7,
          -3.5016939865380676,
          -7,
          -4.244227625732908,
          -3.2496141023445815,
          -4.5416042026823655,
          -2.9755007386708083,
          -1.3251953821249525,
          -7,
          -7,
          -4.543869464336801,
          -3.431134614595152,
          -4.0648197505822,
          -3.2280335249267362,
          -3.5524857010929476,
          -3.9436552443683515,
          -7,
          -4.542576476260529,
          -4.242516582365605,
          -7,
          -7,
          -2.899641457036817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2186248823129056,
          -3.3657686880021926,
          -2.551614188051973,
          -3.4684334914047827,
          -3.5009097804074516,
          -2.956307194643153,
          -4.240661551299707,
          -7,
          -3.341558167136101,
          -3.6151431060686856,
          -2.9819287487799087,
          -7,
          -4.5417414500957305,
          -7,
          -2.2734501064563295,
          -7,
          -7,
          -4.065093989357153,
          -3.265475722826399,
          -7,
          -7,
          -3.6463914716912074,
          -4.244845909032436,
          -4.544923382058467,
          -4.543583846395738,
          -7,
          -7,
          -4.241010752866155,
          -1.990160790410788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8429834701222174,
          -7,
          -3.3037478776800056,
          -7,
          -3.3417260043823003,
          -7,
          -2.735648025254694,
          -1.986032139177172,
          -7,
          -3.767885263894712,
          -3.846609234225857,
          -3.9445073472720127,
          -4.070936326599144,
          -2.8101224941992746,
          -3.502923456589202,
          -4.066027594948862,
          -4.067541985450457,
          -4.0656046090841285,
          -3.7640141449764357,
          -3.351300971319075,
          -7,
          -3.7630284585928058,
          -7,
          -2.7791288410764556,
          -7,
          -3.78640829807341,
          -7,
          -3.6455327940379245,
          -7,
          -7,
          -7,
          -7,
          -4.544055635759241,
          -7,
          -7,
          -7,
          -7,
          -4.242640797817615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9448896324940845,
          -3.6455941844910615,
          -3.4014350072298702,
          -1.8093214507765927,
          -7,
          -7,
          -4.54136703675979,
          -3.546616684638195,
          -7,
          -7,
          -4.543906705006407,
          -4.240599164319883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.540917314258837,
          -7,
          -3.3670517004498173,
          -7,
          -7,
          -7,
          -4.541529322171493,
          -4.241023219159143,
          -7,
          -7,
          -4.242442036037531,
          -4.250895513938375,
          -4.064570292244026,
          -2.561573648247468,
          -3.4434314959344703,
          -4.540967306429246,
          -7,
          -4.541579243946581,
          -3.8632752635965546,
          -7,
          -2.639840509652488,
          -4.544675631413166,
          -2.776760599965476,
          -4.5416042026823655,
          -7,
          -4.541641638096808,
          -3.4112829130173843,
          -2.3845573271208678,
          -3.319877289829984,
          -3.1756567472816637,
          -2.9865659734610817,
          -4.240174695019277,
          -3.5411422337216347,
          -7,
          -7,
          -3.769241895684789,
          -4.2440048280914535,
          -7,
          -3.698460961159398,
          -7,
          -7,
          -7,
          -3.7647488339659567,
          -4.542003347503985,
          -2.8374364459801273,
          -3.344404555595206,
          -3.9429005411402938,
          -4.241795431295198,
          -1.78497131886655,
          -4.241969611913073,
          -7,
          -2.777394357033012,
          -4.541254649786259,
          -7,
          -4.068024982143691,
          -7,
          -3.440400412823879,
          -3.5912996316026833,
          -4.553166699496046,
          -7,
          -3.8514295860194783,
          -7,
          -1.6141130308781895,
          -2.61984189224511,
          -7,
          -7,
          -7,
          -3.511749711344983,
          -3.3427926605253178,
          -7,
          -7,
          -4.243620852909535,
          -7,
          -7,
          -7,
          -4.543521730675292,
          -7,
          -7,
          -3.129838563786958,
          -3.541903595684562,
          -2.3702937992424595,
          -3.2460176409716963,
          -2.618613863442435,
          -4.543770140269609,
          -3.251358332713241,
          -2.8081046439393478,
          -3.5970366649776535,
          -7,
          -3.431536952492574,
          -7,
          -3.508321550521236,
          -3.2284353584597953,
          -4.250371202434478,
          -7,
          -7,
          -7,
          -3.643687033559034,
          -7,
          -4.543298040491669,
          -7,
          -4.552619552939762,
          -7,
          -2.975467158676708,
          -7,
          -7,
          -3.267949726576494,
          -3.4510280603341705,
          -3.5489623660813248,
          -3.943815913368455,
          -3.2962333698623643,
          -4.563836918664545,
          -2.487237830963865,
          -2.16371760904402,
          -2.4464138741235977,
          -4.54129211534237,
          -3.7019227969115684,
          -2.5460646087948833,
          -3.1775473891428585,
          -2.945064720281746,
          -2.2127957562079024,
          -3.552278757969826,
          -3.0542225383825152,
          -3.246345363478317,
          -3.647686087933524,
          -3.2126970136435244,
          -3.4527572689371206,
          -2.945479406917248,
          -3.078291064706725,
          -2.3656714715140623,
          -3.2344610386791035,
          -3.989770080726568,
          -2.9811047634637635,
          -2.599556286536565,
          -7,
          -1.9551346223165285,
          -3.4082399653118496,
          -3.0154196374474895,
          -3.2514368201863437,
          -3.1149970393952513,
          -3.2877377643241155,
          -3.371806458507416,
          -3.660732703938095,
          -2.8454119666286792,
          -3.179537061079481,
          -2.357924821619692,
          -3.6495173993026695,
          -2.0927833055510514,
          -2.6053449574108987,
          -2.350127510310411,
          -2.6820955996306606,
          -2.3124147930253374,
          -2.4757450374642254,
          -7,
          -3.3296226500804065,
          -3.655174464385555,
          -2.8936301291765147,
          -2.17626421402828,
          -2.661372380859304,
          -4.555227498928218,
          -2.302218818934974,
          -2.6349141007233494,
          -7,
          -2.2973064047319234,
          -3.0740498129405394,
          -3.8665944864062345,
          -7,
          -2.2243032322201834,
          -1.000773975679654,
          -2.760634118061711,
          -4.542663625238801,
          -3.5616737023990064,
          -4.06596541697663,
          -2.388313690603355,
          -4.292588312465555,
          -2.5193772952596425,
          -3.1084748182112922,
          -3.66228551572213,
          -4.5423273827739745,
          -3.9898723372297638,
          -2.3887741660237527,
          -2.9489017609702137,
          -3.3527370957112907,
          -1.645939469700875,
          -1.3548575254232875,
          -2.700899887533364,
          -1.8886500259978922,
          -4.54383222047354,
          -1.8504177381054372,
          -2.358446191254353,
          -1.829341470368647,
          -2.7176199065692925,
          -3.553288194064595,
          -2.812364175873973,
          -2.994114021477017,
          -2.596256415228722,
          -4.543745305703089,
          -7,
          -7,
          -7,
          -3.5868778622235498,
          -2.3266820975646683,
          -3.9409644934927996,
          -3.2514557054289663,
          -7,
          -3.7891457299039937,
          -3.0226639846359435,
          -3.229499004575783,
          -4.242926358601607,
          -7,
          -3.4942188340129245,
          -7,
          -3.010802949218461,
          -3.471010404514505,
          -3.7702504531336944,
          -4.562839849885065,
          -3.4569188534250026,
          -4.0816113093209765,
          -4.270364353650405,
          -7,
          -4.246437026762404,
          -3.7297315952870354,
          -7,
          -4.074926097123956,
          -4.546653690487702,
          -7,
          -7,
          -3.5368844618610713,
          -7,
          -7,
          -3.851889960987706,
          -2.464373428003822,
          -2.4404704155029875,
          -7,
          -4.566743806304003,
          -3.6421552597562883,
          -7,
          -4.543459606069367,
          -7,
          -7,
          -3.3657453030046423,
          -7,
          -7,
          -3.8865132853388156,
          -7,
          -2.676583438522829,
          -3.593667507425168,
          -4.0848145085941185,
          -7,
          -4.073143797726908,
          -4.5428378707488655,
          -3.1897221619552822,
          -3.4694344260533714,
          -7,
          -7,
          -7,
          -4.105680462945809,
          -2.9884103022538873,
          -7,
          -7,
          -3.74813262876875,
          -4.244573972817435,
          -2.6783441182258394,
          -3.847140617413406,
          -2.819461675009015,
          -4.067641105496968,
          -7,
          -3.7877437716464666,
          -7,
          -3.5192919019689546,
          -7,
          -4.543782557020339,
          -3.5450224427567334,
          -4.259175627306078,
          -7,
          -7,
          -2.828806829568114,
          -4.548413988554237,
          -7,
          -3.754806855354423,
          -4.550387361358583,
          -4.571534147426671,
          -4.550081524469066,
          -3.6977522741677546,
          -2.785307585748132,
          -4.5599305524475895,
          -4.558396534248996,
          -7,
          -7,
          -3.0259118157686538,
          -4.267676155960548,
          -4.2417829871489525,
          -3.3054469132775894,
          -2.934143232399106,
          -7,
          -3.4633653465369476,
          -3.428604485471956,
          -4.128366953938082,
          -7,
          -7,
          -7,
          -7,
          -4.545294743227404,
          -3.94875518016827,
          -3.795022162871388,
          -7,
          -4.24149667332751,
          -4.540967306429246,
          -3.0959378878980806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7242641633922977,
          -4.564488523410793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0666116331675966,
          -4.54441534103564,
          -3.814957517396995,
          -4.2764273349893775,
          -4.272294244501396,
          -7,
          -7,
          -4.088620337639316,
          -4.064545338527522,
          -7,
          -3.473178677841271,
          -7,
          -7,
          -3.778488903688076,
          -4.272224638590053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.280282366567866,
          -7,
          -7,
          -7,
          -3.300885206703846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2474483777449596,
          -7,
          -7,
          -7,
          -3.14515199291356,
          -2.9596483728278686,
          -7,
          -7,
          -7,
          -3.037227234582274,
          -7,
          -3.291115025498768,
          -2.1990234256365437,
          -3.294172187909397,
          -3.3462225361009863,
          -2.8255065858864694,
          -7,
          -2.931457870689005,
          -7,
          -7,
          -3.7791634237644987,
          -3.7844746437625165,
          -2.586951772374066,
          -3.7798128631705805,
          -7,
          -7,
          -3.4823017672234426,
          -2.8897217842562033,
          -7,
          -7,
          -7,
          -3.864511081058392,
          -7,
          -3.0951534951918838,
          -3.7709256146389993,
          -7,
          -7,
          -7,
          -7,
          -3.776119799052988,
          -7,
          -7,
          -3.776192514747072,
          -7,
          -2.4504516993954346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7790912038454993,
          -7,
          -3.8356271662098975,
          -7,
          -7,
          -7,
          -2.031381530425332,
          -7,
          -7,
          -7,
          -7,
          -3.1898270631206618,
          -3.200440076436431,
          -7,
          -7,
          -3.5694324359249388,
          -7,
          -3.7834747875822465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.322770429937203,
          -7,
          -2.910357557272878,
          -7,
          -3.096771016533225,
          -7,
          -2.7058637122839193,
          -3.4951973183654577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.293638735631343,
          -7,
          -7,
          -7,
          -2.7641761323903307,
          -3.770631127777807,
          -7,
          -3.782042416620554,
          -3.4729757345942285,
          -2.630224410752432,
          -7,
          -3.7723217067229196,
          -7,
          -3.7890163267933747,
          -3.005003769884945,
          -7,
          -7,
          -3.4743619760326307,
          -2.949250563881826,
          -3.525821952156663,
          -7,
          -2.8752542402808574,
          -3.306925161088451,
          -7,
          -7,
          -3.787176992470554,
          -3.779892172536556,
          -3.7763379096201755,
          -3.523876475638131,
          -3.135895575564019,
          -3.496860487394368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.173244559061566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.541121412738247,
          -2.1429618407415725,
          -3.321184027302314,
          -7,
          -7,
          -4.076385543954533,
          -7,
          -3.7721749608246142,
          -7,
          -7,
          -2.745855195173729,
          -7,
          -7,
          -7,
          -2.282380559390902,
          -7,
          -3.293657141449485,
          -7,
          -3.3143588613003385,
          -7,
          -7,
          -3.040404528914159,
          -2.650723713371649,
          -1.9320018841538737,
          -3.3081373786380386,
          -2.070490928340032,
          -2.2852668595858776,
          -7,
          -2.7624431817322277,
          -3.773274348337454,
          -3.7715139899796664,
          -7,
          -2.8207121796408137,
          -2.6924062348336304,
          -7,
          -7,
          -2.5884781135660653,
          -7,
          -3.8098626051382367,
          -7,
          -7,
          -2.1561071928505533,
          -3.7760470711817797,
          -7,
          -7,
          -3.8027737252919755,
          -7,
          -7,
          -3.791129000727286,
          -3.1808424146466825,
          -7,
          -7,
          -3.778078861937455,
          -3.1517374810385186,
          -7,
          -7,
          -7,
          -3.6681994841986616,
          -3.469895618975018,
          -2.9393528243805584,
          -7,
          -3.814580516010319,
          -3.775974331129369,
          -3.1736232576980816,
          -3.770483809431108,
          -7,
          -3.4870676377163163,
          -7,
          -7,
          -7,
          -7,
          -3.7861833455676335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.777499319590365,
          -7,
          -7,
          -3.2024201977780304,
          -3.1154107901339194,
          -3.9529376677509807,
          -3.513270884465516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7695988483874463,
          -3.29269900304393,
          -3.1693804953119495,
          -3.771954748963949,
          -7,
          -7,
          -2.124141799308865,
          -3.0111191405943716,
          -7,
          -7,
          -7,
          -7,
          -3.7768464086952993,
          -3.4766142820325037,
          -7,
          -3.0855046394264978,
          -7,
          -7,
          -3.433609843323718,
          -2.956708560488622,
          -7,
          -7,
          -7,
          -3.281033367247727,
          -3.7998228309933197,
          -4.024977972095624,
          -2.88768761434575,
          -3.247259956560877,
          -7,
          -7,
          -7,
          -3.3906702126261803,
          -3.5170638734826545,
          -3.5237464668115646,
          -3.854427505787861,
          -3.004628404182071,
          -7,
          -7,
          -3.2935098730581442,
          -2.66500337566178,
          -2.4826694498884723,
          -2.3127413753267194,
          -7,
          -2.7849737099544005,
          -2.020971553022808,
          -2.3910822009174537,
          -3.472610197596045,
          -7,
          -3.7764105888073423,
          -2.1939117917581363,
          -3.337725413884801,
          -7,
          -7,
          -2.9230366686707856,
          -7,
          -7,
          -3.0563711794755286,
          -7,
          -7,
          -3.7946971268919985,
          -3.7768464086952993,
          -3.242913946818925,
          -7,
          -2.757206173278786,
          -2.942858083269675,
          -2.037824750588342,
          -7,
          -3.5489966305126153,
          -3.225632297346483,
          -7,
          -7,
          -7,
          -3.5377561492826133,
          -3.8063156698081135,
          -7,
          -2.4300457222310743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3016809492935764,
          -3.7726883546821415,
          -3.3186197661495815,
          -7,
          -3.6892200372638357,
          -3.611882555512116,
          -3.544262765666502,
          -7,
          -2.2402291373505103,
          -3.0534306044478297,
          -3.5277587525209717,
          -7,
          -3.3205616801952367,
          -7,
          -2.7402310651617,
          -2.7773750312638663,
          -7,
          -7,
          -7,
          -7,
          -3.327086350362379,
          -2.428944290035574,
          -3.7839035792727347,
          -2.569447066270134,
          -2.719458776925022,
          -2.628534886859584,
          -2.8647267723873364,
          -7,
          -7,
          -4.674015601630943,
          -4.4885789165252525,
          -7,
          -7,
          -4.51216389140557,
          -7,
          -7,
          -7,
          -4.077811059250664,
          -7,
          -7,
          -7,
          -4.707680864506185,
          -4.3627902422598535,
          -4.483687123306974,
          -7,
          -4.479416937274596,
          -4.402948829344405,
          -7,
          -7,
          -4.137195811940549,
          -4.342495057204659,
          -7,
          -4.221714097454803,
          -7,
          -4.30072588307482,
          -7,
          -7,
          -7,
          -4.148548673088884,
          -4.048791273848409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.447824471981958,
          -4.479776792192939,
          -4.17140463483013,
          -1.504141007490718,
          -3.7880673136696466,
          -2.2107767559059837,
          -2.0614127939332474,
          -7,
          -3.627109711211139,
          -7,
          -3.3296226500804065,
          -7,
          -1.246186925353108,
          -2.490635595254875,
          -3.3353241481530937,
          -2.5665797073098218,
          -7,
          -3.0881754787039255,
          -7,
          -1.4294537668773173,
          -7,
          -2.46260594354904,
          -2.5959369062691735,
          -3.8064513232472623,
          -1.8590231903699448,
          -2.9587962505265497,
          -3.6323026013613955,
          -2.4551350183502896,
          -2.17666993266815,
          -2.6673092419416196,
          -2.2432833168740873,
          -3.0610333972425505,
          -3.668325334908289,
          -2.8400164290322825,
          -2.72652345838624,
          -2.6626125583964253,
          -3.1640978135052644,
          -2.766054643351031,
          -3.047770314206707,
          -7,
          -4.005652315355074,
          -3.9618006391916785,
          -2.666822611197495,
          -7,
          -2.6713152810508642,
          -2.93721499711337,
          -2.2214298254626015,
          -7,
          -1.9235765957120772,
          -7,
          -3.5800121125294244,
          -2.8391636829146503,
          -3.357771547700954,
          -7,
          -1.6324875102811671,
          -7,
          -7,
          -7,
          -3.411142505502048,
          -2.2596373105057563,
          -3.3592661646067485,
          -7,
          -3.4298060925892933,
          -2.235244649941361,
          -7,
          -1.9657442753044998,
          -7,
          -2.725391830339634,
          -3.3148499463011056,
          -2.783822195683155,
          -2.868252475839426,
          -3.8131137540078983,
          -7,
          -4.0514998191327445,
          -3.2637543888400056,
          -2.6681269610554104,
          -7,
          -3.330075405991285,
          -3.4633454229438665,
          -7,
          -3.832189461068513,
          -3.501675331410371,
          -2.9410853055533765,
          -7,
          -2.981260880814982,
          -7,
          -7,
          -3.76766286557764,
          -3.1751514649813335,
          -4.085190646885893,
          -7,
          -7,
          -2.2109940047208836,
          -7,
          -2.9388769633984144,
          -7,
          -2.999710373792598,
          -2.3979400086720375,
          -3.7863254343900703,
          -3.3255840723546894,
          -3.6834973176798114,
          -3.296811392747983,
          -4.030235296012245,
          -7,
          -3.4043775248953203,
          -7,
          -7,
          -3.7812525942484565,
          -7,
          -4.1331555381979905,
          -7,
          -2.6627578316815743,
          -2.523674222865311,
          -3.9736357734174077,
          -7,
          -7,
          -3.809761665107125,
          -7,
          -2.378677369736355,
          -2.581855976646831,
          -3.0215338405254566,
          -7,
          -7,
          -7,
          -4.148972634509205,
          -3.3021865728639233,
          -2.9199225150410633,
          -7,
          -2.9407298799816086,
          -3.794975744051132,
          -3.395908557341382,
          -7,
          -3.0769315745556556,
          -2.943809173206347,
          -2.7318572625565913,
          -3.3296690168644045,
          -2.3546685610810214,
          -3.521987527782068,
          -7,
          -2.9175055095525466,
          -2.4720840748654966,
          -7,
          -7,
          -3.5631249603380444,
          -7,
          -7,
          -3.686743489231213,
          -7,
          -3.7812525942484565,
          -3.877601679729272,
          -3.3397991351974112,
          -3.544873843234801,
          -3.0223989105144513,
          -2.760176931025949,
          -4.059298292408071,
          -2.823619114736917,
          -7,
          -3.1755842863685224,
          -7,
          -2.376787456042087,
          -2.3305446835180503,
          -7,
          -3.4728295567127057,
          -3.7795964912578244,
          -7,
          -2.339804651904391,
          -2.9301482197259796,
          -7,
          -7,
          -7,
          -3.8010605298478555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0078654490661223,
          -7,
          -7,
          -7,
          -2.655064518636937,
          -3.3120362371917773,
          -7,
          -2.7890163267933747,
          -2.5347873586294916,
          -3.951386094880293,
          -2.932727367301529,
          -3.303915683901469,
          -3.770336441095149,
          -7,
          -3.774735882551753,
          -3.7707047682157793,
          -2.767791729273228,
          -3.7716609593488872,
          -7,
          -2.1600824724895236,
          -7,
          -3.3455044240544782,
          -3.770336441095149,
          -7,
          -2.9466627639986482,
          -3.469527479187014,
          -3.6663307443019684,
          -7,
          -3.4888326343824008,
          -7,
          -2.890700397698875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7165875776756923,
          -7,
          -7,
          -7,
          -3.7279477095447966,
          -3.048519487922654,
          -3.187520720836463,
          -7,
          -7,
          -3.3226327116922234,
          -7,
          -3.3638469241672295,
          -2.276972138523276,
          -3.1658376246901283,
          -7,
          -3.2125106115949857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.611988688083979,
          -3.573730052453567,
          -3.1981069988734014,
          -7,
          -7,
          -3.2119210843085093,
          -2.7710973064704123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.281866292147957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6548638255819332,
          -7,
          -7,
          -3.096736260462469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3809344633307017,
          -7,
          -7,
          -7,
          -2.8218409272004545,
          -7,
          -7,
          -7,
          -7,
          -3.2177470732627937,
          -3.2803506930460054,
          -7,
          -7,
          -3.7738839187739726,
          -7,
          -2.910357557272878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.79309160017658,
          -7,
          -3.0159881053841304,
          -7,
          -7,
          -7,
          -3.2127328262241575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5347873586294916,
          -7,
          -7,
          -7,
          -3.2935835134961167,
          -7,
          -7,
          -7,
          -7,
          -2.2938043599193367,
          -7,
          -7,
          -7,
          -7,
          -2.47033526537637,
          -7,
          -7,
          -7,
          -3.254064452914338,
          -2.655330558009341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.225567713439471,
          -3.792376123108822,
          -7,
          -7,
          -3.3802112417116064,
          -2.6603910984024672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019407108018883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.523457418892806,
          -2.32871929409501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2688119037397803,
          -7,
          -2.309049171376836,
          -7,
          -7,
          -7,
          -2.6553371814315407,
          -7,
          -3.163757523981956,
          -7,
          -7,
          -7,
          -7,
          -2.552262522965547,
          -3.2659963704950794,
          -2.768884649356367,
          -7,
          -7,
          -2.900913067737669,
          -7,
          -3.18178802771381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4708513245261177,
          -7,
          -3.6265456590271294,
          -3.162862993321926,
          -7,
          -2.483737164091958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3666097103924297,
          -2.9382694834629115,
          -3.2113875529368587,
          -2.94126290931895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.163835222252474,
          -7,
          -2.470452494407648,
          -2.8816699076720615,
          -2.402834330403087,
          -7,
          -3.1696744340588068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1652443261253107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6834973176798114,
          -3.3191060593097763,
          -3.655906418180215,
          -3.9772143441653935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.73453314583352,
          -3.73917663191073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7120882348626436,
          -7,
          -7,
          -3.3688445068258215,
          -7,
          -3.5683190850951116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7886632131208575,
          -3.2420442393695508,
          -3.611324933588425,
          -7,
          -7,
          -7,
          -2.134765383294081,
          -3.329397879361043,
          -7,
          -3.4324882557705063,
          -7,
          -7,
          -7,
          -3.1631613749770184,
          -7,
          -2.389609016051986,
          -7,
          -7,
          -3.22219604630172,
          -7,
          -2.699837725867246,
          -3.1746411926604483,
          -7,
          -7,
          -2.8958643512472992,
          -3.3197304943302246,
          -2.9476787399369364,
          -2.7256394326735376,
          -3.54104853143455,
          -7,
          -7,
          -2.9966992588600987,
          -7,
          -7,
          -3.2523675144598987,
          -7,
          -2.804990823476288,
          -7,
          -3.387033701282363,
          -3.2314695904306814,
          -2.1361257789120067,
          -7,
          -3.988425170006303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.291590825658001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9554472105776957,
          -7,
          -7,
          -7,
          -4.20460350467072,
          -7,
          -2.425244304277949,
          -3.237663401572365,
          -2.8836614351536176,
          -7,
          -2.6601537141484544,
          -7,
          -2.4899584794248346,
          -2.693726948923647,
          -7,
          -7,
          -7,
          -7,
          -3.285557309007774,
          -3.1772478362556233,
          -7,
          -2.7041505168397992,
          -7,
          -7,
          -3.560026248912892,
          -7,
          -7,
          -4.631068165146266,
          -7,
          -7,
          -7,
          -4.448335233740176,
          -7,
          -7,
          -7,
          -3.8401060944567575,
          -7,
          -7,
          -7,
          -7,
          -4.811092188164497,
          -4.415173745335861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.105806425828049,
          -3.9384696883676455,
          -4.492795298755718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.237794993273923,
          -4.253701381011985,
          -4.595110255778039,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.1001615990072522,
          -3.8076139425335747,
          -2.3258644366153463,
          -2.264292995777203,
          -7,
          -3.79619259685592,
          -7,
          -3.655174464385555,
          -1.246186925353108,
          -7,
          -2.1892162585640143,
          -3.876448786878341,
          -2.593216818119425,
          -7,
          -3.5181848042184027,
          -7,
          -2.0331555896976927,
          -7,
          -3.014861666129001,
          -2.695106259827803,
          -3.2920344359947364,
          -2.0210965506484637,
          -3.453776859690442,
          -4.2729896907231355,
          -2.114499783493657,
          -2.720572720364261,
          -1.8987251815894937,
          -3.1468719030857386,
          -7,
          -4.103158395042915,
          -2.7659995088477323,
          -2.739365930719066,
          -2.890700397698875,
          -3.460822698802402,
          -3.754348335711019,
          -3.1576941641846092,
          -7,
          -3.453624073591451,
          -7,
          -2.482901594475409,
          -7,
          -2.2663885100087673,
          -3.663899761406957,
          -2.914251150449555,
          -3.358315640082196,
          -2.6571347401888503,
          -7,
          -7,
          -3.1174370252826193,
          -4.061490176624815,
          -7,
          -2.2889196056617265,
          -7,
          -7,
          -7,
          -3.3432115901797474,
          -1.9701280053765742,
          -2.780677274433368,
          -7,
          -3.0823065450398275,
          -2.3858445042581002,
          -3.3727279408855955,
          -2.321184027302314,
          -7,
          -2.9073516352045403,
          -7,
          -2.840245537219845,
          -2.742332282357148,
          -3.313445370426414,
          -7,
          -7,
          -2.6159500516564007,
          -2.8197632208188845,
          -3.3725438007590705,
          -7,
          -3.330007700872759,
          -7,
          -7,
          -2.6766936096248664,
          -3.225050696138049,
          -7,
          -2.8622398309260126,
          -7,
          -7,
          -4.186164961727415,
          -3.4769668114456653,
          -4.149165207512734,
          -7,
          -7,
          -2.298610521540568,
          -3.4191293077419758,
          -2.6133131614554594,
          -7,
          -7,
          -2.682934395395032,
          -3.222456336679247,
          -7,
          -7,
          -2.69810054562339,
          -3.0981589834605336,
          -7,
          -7,
          -3.161966616364075,
          -7,
          -2.9020028913507296,
          -3.3694014136966244,
          -3.8794590739205956,
          -7,
          -2.7146091386431936,
          -2.7259116322950483,
          -7,
          -7,
          -3.322219294733919,
          -3.3027637084729817,
          -7,
          -2.256477206241677,
          -2.8697431530747894,
          -2.5710096723093048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.105986795521473,
          -7,
          -2.52270499273475,
          -2.951823035315912,
          -3.480581786829169,
          -7,
          -2.707002099520009,
          -3.241878383159056,
          -2.1598678470925665,
          -7,
          -2.347498248703483,
          -3.3443922736851106,
          -3.2988530764097064,
          -3.3394514413064407,
          -2.7388465958116313,
          -3.7679717213816186,
          -3.4769764657595275,
          -7,
          -7,
          -7,
          -4.298176009766551,
          -3.573103783163991,
          -3.203576774977973,
          -7,
          -3.7366354976868212,
          -3.1085650237328344,
          -2.711132072306842,
          -2.52880961249955,
          -3.545059584694003,
          -2.7168377232995247,
          -7,
          -2.410496045616074,
          -7,
          -2.952792443044092,
          -2.268928822432613,
          -7,
          -3.1755118133634475,
          -3.197280558125619,
          -2.859138297294531,
          -2.641927149514438,
          -2.8822398480188234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.529173603261723,
          -3.2971036501492565,
          -2.8956987269593055,
          -7,
          -7,
          -7,
          -2.6842467475153122,
          -3.2337573629655108,
          -7,
          -2.63321588535909,
          -2.0299096034648,
          -7,
          -2.6148972160331345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.555720466529754,
          -7,
          -7,
          -2.2280472867866634,
          -7,
          -7,
          -3.1607685618611283,
          -7,
          -2.1251057408333547,
          -7,
          -7,
          -3.1646502159342966,
          -7,
          -7,
          -4.067405658437824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.08308309635478,
          -7,
          -7,
          -7,
          -3.888319928675217,
          -2.161200018291969,
          -4.066773037085025,
          -7,
          -7,
          -7,
          -7,
          -2.9640799562089097,
          -3.0073209529227447,
          -7,
          -4.091279964228837,
          -2.8373027824636576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5933229952532844,
          -2.2597027012768227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3434742418248278,
          -7,
          -7,
          -4.07291131585408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8004526998229493,
          -7,
          -4.067591548301512,
          -3.255651485675603,
          -7,
          -7,
          -7,
          -7,
          -4.0796153235269434,
          -7,
          -7,
          -7,
          -7,
          -2.094441179707738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145320738918325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.07107154998365,
          -4.086324231307385,
          -7,
          -4.0767496406240005,
          -7,
          -2.9565898139962505,
          -7,
          -7,
          -4.063445953123033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.605771778568517,
          -7,
          -7,
          -7,
          -3.7718446011470075,
          -2.0809966834445737,
          -3.4653828514484184,
          -7,
          -7,
          -7,
          -3.6158448828747023,
          -7,
          -3.8663168819216542,
          -3.679990842434873,
          -7,
          -7,
          -7,
          -3.1108932604638193,
          -7,
          -4.092053606425475,
          -7,
          -7,
          -7,
          -4.068148740973294,
          -7,
          -7,
          -7,
          -3.271609301378832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3854979437195007,
          -7,
          -2.9711211579147765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0642707529740063,
          -3.138021851349023,
          -7,
          -7,
          -7,
          -2.594186470553561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.134106242849204,
          -4.077985291029502,
          -3.7740057302582093,
          -7,
          -7,
          -7,
          -7,
          -2.9853192094259917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1165745397769165,
          -7,
          -3.1224967326576327,
          -7,
          -7,
          -2.5958485054524854,
          -4.066251361968962,
          -4.078746734273607,
          -4.07733156112899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0744873049856905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.992398858487621,
          -7,
          -2.7143942477521676,
          -7,
          -3.307923703611882,
          -4.066214075471244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.826690157228338,
          -4.071476967698918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.864748335629659,
          -2.8767235900989143,
          -7,
          -7,
          -7,
          -4.080734686353143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2097211833012635,
          -7,
          -7,
          -7,
          -7,
          -3.7655568008067135,
          -7,
          -7,
          -7,
          -2.536768805608776,
          -7,
          -4.140602308020332,
          -7,
          -7,
          -7,
          -7,
          -3.6473503641998253,
          -7,
          -3.609140670672294,
          -7,
          -3.309082392097567,
          -7,
          -7,
          -7,
          -2.0764299345734836,
          -7,
          -7,
          -4.108192805135042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.065542370519139,
          -7,
          -7,
          -7,
          -3.0334237554869494,
          -3.785614524946824,
          -7,
          -7,
          -2.6335946856289865,
          -7,
          -7,
          -2.8162668009742573,
          -7,
          -7,
          -4.075911761482778,
          -7,
          -3.625895235608653,
          -3.600246650564494,
          -7,
          -7,
          -3.7902499685648565,
          -7,
          -3.063228371987673,
          -7,
          -7,
          -7,
          -7,
          -3.622352201294506,
          -3.7809290706364975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.775501223589831,
          -7,
          -3.463167493195676,
          -7,
          -3.1927198927453326,
          -7,
          -3.7969903905456865,
          -2.4599764321962345,
          -3.315655525231531,
          -7,
          -7,
          -7,
          -4.089799173036164,
          -3.3703897104835856,
          -4.094016681120422,
          -7,
          -7,
          -7,
          -3.7799570512469063,
          -7,
          -7,
          -3.7649975992848805,
          -7,
          -7,
          -3.234865136540417,
          -7,
          -7,
          -3.2457346934565856,
          -3.3651457334284163,
          -4.476280806025541,
          -3.6008640363098396,
          -3.502609175942623,
          -3.3502157035544387,
          -3.5150786750759226,
          -3.4813590104042285,
          -2.8020227472483574,
          -7,
          -3.6460899012744283,
          -3.4854019748438567,
          -4.151400498035618,
          -3.83268306006481,
          -2.4147311988249274,
          -3.7830598861333127,
          -3.407876285333665,
          -2.7151131180137207,
          -3.7255441224863532,
          -3.7156607840741795,
          -3.2457817752162765,
          -3.306030608776958,
          -3.575026109423261,
          -3.1344116809154454,
          -3.7632594845682545,
          -3.505980450567084,
          -4.029894889003178,
          -3.366565775695184,
          -7,
          -2.9462978342205512,
          -3.493550987970057,
          -3.791278259413112,
          -3.456335661823607,
          -2.8408156856746296,
          -2.663725716009965,
          -3.456836516966673,
          -3.87735214586615,
          -2.9706825677927085,
          -3.378191910508821,
          -3.3575113516164294,
          -2.841428996506697,
          -2.721747908322589,
          -2.718487848797103,
          -2.5798355426107604,
          -4.081779226767534,
          -2.454111254290318,
          -7,
          -2.8936301291765147,
          -2.490635595254875,
          -2.1892162585640143,
          -7,
          -2.77625137091671,
          -2.569719632560632,
          -3.4055853869044945,
          -3.222742476026601,
          -7,
          -4.070739562849198,
          -7,
          -2.2038073097049544,
          -2.1228806438077106,
          -3.0814553278225736,
          -1.8319566260711162,
          -2.6150606136353867,
          -2.9629894767010017,
          -3.591138839055037,
          -3.6461095219788477,
          -3.7687120803776635,
          -2.03252734362003,
          -3.0909088846213786,
          -3.351374593497417,
          -2.168577571549112,
          -2.178822497153501,
          -7,
          -2.517663162081145,
          -2.4368962527589484,
          -2.2062599065001196,
          -3.5081592323614412,
          -7,
          -3.2677875202836364,
          -2.5567610204106916,
          -7,
          -3.594613509160098,
          -3.0046332186164886,
          -1.79996678529663,
          -7,
          -2.428875883579378,
          -3.0200158093322957,
          -3.521039963927612,
          -3.283188116453424,
          -3.079362164393046,
          -2.769192637796977,
          -4.067888806685398,
          -7,
          -3.7774268223893115,
          -3.6662183637910806,
          -2.81888541459401,
          -3.467423102606649,
          -7,
          -7,
          -3.359898693821246,
          -2.151976149357102,
          -7,
          -7,
          -4.066512277856596,
          -2.859413523534532,
          -3.7735304721389142,
          -1.1759541927828367,
          -3.488973524726508,
          -4.085647288296856,
          -3.523713958522923,
          -3.5296356460190728,
          -2.1448786552084167,
          -2.767403256850421,
          -3.6189541113654435,
          -4.082641778157131,
          -4.158362492095249,
          -3.612819163778972,
          -3.1411360901207392,
          -3.4779167323046356,
          -4.071918810363806,
          -7,
          -2.548955148750172,
          -3.1717995610487244,
          -7,
          -2.645229985477441,
          -2.6676903371439664,
          -2.9586947598580036,
          -7,
          -2.9595819353635555,
          -7,
          -2.394417342460363,
          -3.468495024507069,
          -7,
          -7,
          -3.543602479379584,
          -7,
          -4.080265627339845,
          -3.407079165783919,
          -7,
          -2.8333596367430127,
          -3.2389059505937725,
          -3.4243915544102776,
          -7,
          -3.7897216939809217,
          -7,
          -4.095622595021622,
          -2.456698912578988,
          -3.5970000511866353,
          -4.067480023931482,
          -3.767897616018091,
          -3.5763989451242386,
          -3.0735228432889,
          -3.4848690327204026,
          -3.1802692776688746,
          -3.4264028097516,
          -7,
          -2.4871715039561493,
          -7,
          -3.187708686423428,
          -7,
          -7,
          -3.3413905542954354,
          -7,
          -2.0611529213699096,
          -2.7832602328729488,
          -3.4694538137671267,
          -7,
          -3.6415402081348343,
          -7,
          -4.066475013754132,
          -3.885361220031512,
          -3.483052121938875,
          -7,
          -2.772400300205005,
          -4.091033516054471,
          -4.149342299291265,
          -3.4878804271706723,
          -2.6191716218534493,
          -3.1617218284861597,
          -2.7013354666845983,
          -7,
          -7,
          -7,
          -3.2212258143152708,
          -3.539640565669428,
          -7,
          -7,
          -2.670000141903834,
          -4.103530063428375,
          -2.4816778851648396,
          -2.5578650995755288,
          -3.154271775993095,
          -7,
          -4.087390944997188,
          -3.465010864717408,
          -7,
          -4.076203381088768,
          -3.4902043694603857,
          -4.153967221645479,
          -7,
          -7,
          -7,
          -2.1709171502194033,
          -7,
          -7,
          -7,
          -7,
          -3.778151250383644,
          -7,
          -7,
          -3.2984787921447394,
          -2.6815642529962074,
          -4.08292891501513,
          -7,
          -3.787141544200371,
          -7,
          -7,
          -7,
          -3.2946498990262056,
          -4.0717347638797605,
          -2.5943557129792554,
          -2.485694132104429,
          -2.8018509291711813,
          -2.2144125418657885,
          -7,
          -7,
          -7,
          -4.0655797147284485,
          -7,
          -2.6169859707394836,
          -7,
          -7,
          -2.2469838680804592,
          -3.3084729414195233,
          -2.7672619079535177,
          -7,
          -7,
          -3.1712143570094913,
          -7,
          -2.8726514940644776,
          -7,
          -4.073461729279835,
          -7,
          -3.836672171482981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.840600504023395,
          -4.158935141829918,
          -4.13494171073536,
          -4.135037191549618,
          -2.736869386655646,
          -3.0730336902474913,
          -4.137227476442907,
          -7,
          -7,
          -3.4554539687786283,
          -7,
          -2.6569947892596133,
          -3.159241249837855,
          -7,
          -3.6809093578706777,
          -1.4763353612855514,
          -7,
          -3.660137883917105,
          -4.134559577422625,
          -3.6624745037503095,
          -3.837051550831765,
          -2.9354127889420147,
          -2.8956505175479332,
          -3.292951904190633,
          -7,
          -7,
          -4.140036410975282,
          -7,
          -4.134463991534289,
          -7,
          -7,
          -3.8764776465309354,
          -7,
          -2.5264883913765117,
          -7,
          -3.6657372963937283,
          -3.187708686423428,
          -7,
          -4.1368473499574545,
          -7,
          -7,
          -7,
          -4.1368473499574545,
          -3.6958026089088825,
          -2.612501296864678,
          -4.136720567156407,
          -3.4387005329007363,
          -3.124652402693,
          -4.1386184338994925,
          -7,
          -3.835341727828342,
          -3.837019948540908,
          -7,
          -3.862667950228588,
          -7,
          -7,
          -7,
          -3.0019319261726443,
          -7,
          -7,
          -7,
          -4.134304634954544,
          -3.344336123386771,
          -7,
          -7,
          -7,
          -2.599970358674706,
          -7,
          -4.140036410975282,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8463680436836736,
          -7,
          -3.308442446423766,
          -4.140256569677416,
          -4.145724574880668,
          -7,
          -2.4235565785971245,
          -4.145755623637207,
          -4.136593747333078,
          -4.134400255918984,
          -7,
          -7,
          -7,
          -4.136720567156407,
          -3.8344524956717305,
          -7,
          -3.347748075174585,
          -7,
          -7,
          -7,
          -3.5482665451707454,
          -7,
          -4.135259898515659,
          -4.139406770441792,
          -3.5337085232398597,
          -2.5466351879571025,
          -4.135990846921625,
          -4.135164466656955,
          -7,
          -4.142483323659504,
          -2.8048555856441326,
          -4.137986732723531,
          -7,
          -7,
          -7,
          -3.682476013267746,
          -7,
          -2.992917205061587,
          -2.723053376758989,
          -3.83511959042455,
          -3.8441974969884125,
          -4.141669216966209,
          -2.974204553769857,
          -7,
          -3.2553026633951765,
          -3.686397907850216,
          -3.6692548783557273,
          -7,
          -7,
          -3.441695135640717,
          -7,
          -7,
          -2.9558800862253753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1459848380679163,
          -2.949200198545658,
          -3.252610340567373,
          -3.5494937132150133,
          -4.138334282071019,
          -3.448087666692341,
          -7,
          -7,
          -4.147150525210071,
          -3.726618553914196,
          -1.8908315357418142,
          -7,
          -3.8351830698490437,
          -7,
          -2.4716023034943726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.855034316675884,
          -4.146778989307833,
          -4.144325078400488,
          -3.839854984601885,
          -3.369803180547177,
          -7,
          -3.659852841038167,
          -2.1716508690254384,
          -7,
          -7,
          -7,
          -4.136815657726849,
          -7,
          -3.659821158055705,
          -4.13510083376572,
          -3.4807253789884878,
          -7,
          -3.235107414899873,
          -7,
          -3.8562151648112137,
          -2.505867886525835,
          -7,
          -4.147428968698656,
          -3.845129059940837,
          -3.6713888558913363,
          -7,
          -3.5591881890047756,
          -4.143420785129937,
          -7,
          -7,
          -3.8378093167503406,
          -4.1376705372367555,
          -3.2676409823459154,
          -7,
          -7,
          -7,
          -2.9206650533255254,
          -7,
          -2.9361785093615893,
          -7,
          -3.8529067587969537,
          -7,
          -4.136815657726849,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.49043608119321,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.135514280998787,
          -7,
          -3.6723441962757897,
          -3.0742982439742996,
          -3.2681617816431308,
          -2.754542969597536,
          -7,
          -3.6582976503081897,
          -7,
          -4.149126699742614,
          -7,
          -7,
          -7,
          -4.136054349551055,
          -3.1826365304361923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.134177107576766,
          -7,
          -2.983438337806717,
          -7,
          -4.134081437462512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.140727962844183,
          -3.860697274052039,
          -7,
          -3.297295337240443,
          -3.476483821914464,
          -7,
          -7,
          -7,
          -3.885785128783473,
          -7,
          -2.705031753031844,
          -3.541454428747589,
          -3.017770780394343,
          -7,
          -7,
          -7,
          -3.098025336873187,
          -3.456457134303779,
          -3.681512586638962,
          -2.7562556487542333,
          -3.5685537120494426,
          -7,
          -7,
          -7,
          -7,
          -4.1508178199016665,
          -3.8435753430507633,
          -7,
          -4.14126159062209,
          -7,
          -7,
          -4.135800283302111,
          -7,
          -4.136942412775367,
          -2.9759991429882495,
          -4.154241330167298,
          -4.144605338714745,
          -4.139091607523823,
          -2.625806478248694,
          -3.66228551572213,
          -7,
          -3.1673400601861292,
          -7,
          -4.135069013823448,
          -3.3665474682594816,
          -4.137132476008993,
          -3.6911109747937583,
          -3.3679147387937527,
          -3.863679667875898,
          -7,
          -3.8571213297287215,
          -3.4406887318721586,
          -2.6811375522716006,
          -3.0803859471859956,
          -7,
          -7,
          -7,
          -3.6880636969463443,
          -2.4753001814119373,
          -7,
          -7,
          -4.14370162942477,
          -4.134591434710877,
          -7,
          -7,
          -3.839697967180202,
          -4.138113146487167,
          -7,
          -3.446381812222442,
          -7,
          -2.592235212807746,
          -3.7246035153967165,
          -2.54910919481154,
          -3.8403256965399084,
          -2.9325931255359237,
          -2.6711998127813477,
          -3.0459545487272597,
          -7,
          -4.14646913307187,
          -4.137986732723531,
          -3.37842818542093,
          -3.5087720482709264,
          -3.382047075732925,
          -7,
          -7,
          -7,
          -3.0024746191278555,
          -7,
          -3.8391322339496554,
          -7,
          -3.686189234244024,
          -4.137005776429098,
          -2.6785735555720014,
          -7,
          -7,
          -3.148214944835215,
          -3.054882937183978,
          -3.300568312464303,
          -7,
          -2.9316958462012455,
          -3.588187641710234,
          -3.4871855275842742,
          -3.0040383904652064,
          -2.5109980542805,
          -7,
          -3.4292137870854282,
          -2.943238591907711,
          -2.961851022585581,
          -2.6434413311320966,
          -2.6113463608656016,
          -3.334118518033627,
          -3.2162921490146195,
          -2.8725223278596834,
          -2.649858871767756,
          -3.2006332643543884,
          -3.8541440369565634,
          -2.983128367847432,
          -3.318835191727664,
          -2.8490682559189415,
          -3.4989477407243084,
          -3.266216012243372,
          -2.9962223171445928,
          -2.9849980366194937,
          -4.174117981254267,
          -2.6679503290207967,
          -3.13569630425525,
          -3.012356283057885,
          -3.0235220799647475,
          -3.175038534391645,
          -3.5149238897392205,
          -3.3406848506563924,
          -3.391975460609762,
          -3.155044385219346,
          -3.115771140513356,
          -2.7839421883745876,
          -7,
          -2.739770065592548,
          -2.86178108426316,
          -3.372175286115064,
          -3.6727749524390982,
          -2.8349326248860227,
          -2.5222015261402246,
          -2.17626421402828,
          -3.3353241481530937,
          -3.876448786878341,
          -2.77625137091671,
          -7,
          -2.2798712318513092,
          -3.8687032022785366,
          -2.286844593855551,
          -2.8482184503122636,
          -7,
          -2.8948960007737647,
          -2.9263575806831863,
          -3.8936230762889528,
          -3.6730516416734686,
          -2.791859969324879,
          -2.364933273834648,
          -2.9442143738269984,
          -3.8375253094496014,
          -2.5602198558336093,
          -7,
          -2.151283895176477,
          -4.25779852915303,
          -2.752186612410317,
          -3.5424519473759766,
          -3.072249897613515,
          -7,
          -3.6520286555911117,
          -2.8022373422687794,
          -3.0464682530395018,
          -3.2711152399482035,
          -2.159646073401281,
          -2.7637635255241637,
          -2.819214799882384,
          -2.9755669553850708,
          -4.14157518330082,
          -2.507197252114352,
          -2.049041329359675,
          -3.045443348654918,
          -2.841668389969892,
          -7,
          -1.9152954430762743,
          -2.939169679625177,
          -3.2280885697501356,
          -7,
          -7,
          -7,
          -7,
          -3.3226327116922234,
          -2.740776106452548,
          -7,
          -3.6869935662646784,
          -3.843793198325913,
          -3.7215908027407387,
          -2.7730922490960315,
          -3.463205932194144,
          -7,
          -7,
          -2.92649902572,
          -7,
          -2.975735486453204,
          -3.857030798272624,
          -4.153326961490906,
          -3.8869698767408543,
          -3.278113115979834,
          -3.8772849391681783,
          -3.5089335260500327,
          -3.6851443595783593,
          -3.849665055478733,
          -3.9151887051731564,
          -4.15712419550487,
          -3.5599066250361124,
          -4.148664339982236,
          -7,
          -7,
          -2.9065074321941373,
          -7,
          -7,
          -3.0294243640580163,
          -2.801708531564807,
          -2.8759829615659807,
          -7,
          -3.7200214102529,
          -3.8444771757456815,
          -4.170291058625393,
          -3.839540892968969,
          -7,
          -7,
          -3.426917713880816,
          -7,
          -7,
          -3.4617235692693926,
          -7,
          -2.9864417053328878,
          -3.675044735955893,
          -3.8849368971038603,
          -7,
          -4.157758886046864,
          -7,
          -3.559637350780155,
          -3.241434406207398,
          -4.143608034837595,
          -4.137828663756581,
          -7,
          -3.932980821923198,
          -2.805062154669504,
          -7,
          -7,
          -3.5580362135762877,
          -7,
          -2.8731126826094333,
          -3.8464608251293324,
          -3.600155784473169,
          -3.666798683666174,
          -7,
          -3.63978521298682,
          -3.837241116300468,
          -3.268297087223767,
          -7,
          -7,
          -7,
          -4.181843587944773,
          -7,
          -7,
          -2.659315585270557,
          -4.153052275067108,
          -3.8494808372439864,
          -3.572383617766466,
          -7,
          -3.6061663146076204,
          -4.157184682201611,
          -2.7951149856303634,
          -3.1764530204109622,
          -7,
          -4.177449920971824,
          -7,
          -7,
          -3.057869784474744,
          -3.35646293810248,
          -4.139060078649301,
          -3.8828943560930194,
          -2.8674931076851453,
          -3.691435152144062,
          -3.1474444325481796,
          -2.878214415521801,
          -3.50478791537113,
          -7,
          -3.8537286234901957,
          -7,
          -7,
          -4.14525857696561,
          -7,
          -4.212427332726591,
          -7,
          -7,
          -7,
          -3.0783307071320714,
          -4.136815657726849,
          -3.8460586289641854,
          -7,
          -7,
          -3.8467699535372186,
          -7,
          -4.143014800254095,
          -3.425262429712809,
          -4.191953767152995,
          -4.151001907992831,
          -7,
          -4.15554857715353,
          -7,
          -7,
          -7,
          -7,
          -3.6642030725557553,
          -7,
          -2.8940992466856414,
          -3.267328202727136,
          -3.9114772171061025,
          -7,
          -7,
          -3.7177814197394,
          -4.136213065513025,
          -7,
          -2.918715693733087,
          -7,
          -7,
          -4.173506770208104,
          -3.366982975977851,
          -3.680577224555854,
          -7,
          -7,
          -3.666829861704301,
          -7,
          -3.230218939887381,
          -7,
          -7,
          -7,
          -3.094994900944612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6957442751973235,
          -4.701619786477204,
          -7,
          -7,
          -7,
          -2.7956814373306003,
          -2.9546283775072713,
          -3.6960941599952233,
          -7,
          -7,
          -3.265211027637486,
          -7,
          -2.846611982064236,
          -3.2345172835126865,
          -7,
          -7,
          -2.365083934123616,
          -7,
          -7,
          -7,
          -7,
          -3.0960405542954277,
          -2.556647042222806,
          -2.765359830990325,
          -3.6994040818153375,
          -7,
          -7,
          -3.4026052419199146,
          -3.716170347859854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7671558660821804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.695043658821294,
          -7,
          -2.2371036915866878,
          -7,
          -3.6980135039391815,
          -2.4690852991231202,
          -7,
          -7,
          -7,
          -7,
          -3.7256666603141784,
          -3.7657430414210444,
          -7,
          -7,
          -7,
          -3.342197014679481,
          -7,
          -7,
          -7,
          -7,
          -2.982206601075478,
          -2.948086796418994,
          -7,
          -3.0344680227550427,
          -4.02639024655699,
          -7,
          -3.7038070652743285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1381447441794874,
          -3.704407927386841,
          -3.417969642214737,
          -7,
          -2.363565556109962,
          -3.418052578237505,
          -7,
          -7,
          -7,
          -7,
          -3.693023067923694,
          -2.995020606124758,
          -2.78710609303657,
          -7,
          -2.720413760411568,
          -7,
          -7,
          -7,
          -3.7318304202881625,
          -7,
          -7,
          -7,
          -3.3913762391696496,
          -2.237154410925494,
          -7,
          -7,
          -7,
          -2.1481911962420113,
          -3.130038777017368,
          -7,
          -7,
          -3.6942541120252788,
          -3.018201022496291,
          -2.7126497016272113,
          -7,
          -2.823148059810694,
          -3.1569023388474213,
          -3.693287157005656,
          -7,
          -3.708250888591378,
          -4.0735937247670435,
          -7,
          -3.2758486103094215,
          -3.76544501809015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.142514604999374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.559031448926597,
          -2.4287345655395307,
          -2.78686967796165,
          -3.7350397050337207,
          -3.699143687394484,
          -3.3383369465610726,
          -7,
          -7,
          -7,
          -3.2573785441270937,
          -2.976044137806195,
          -7,
          -7,
          -7,
          -2.0571977987215453,
          -7,
          -7,
          -7,
          -3.7137424784090824,
          -7,
          -7,
          -3.746400644491561,
          -2.417803722639881,
          -2.634393291724445,
          -2.8601668223031473,
          -3.248463717551032,
          -3.0982109460284746,
          -7,
          -2.3686143205822265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388988785124714,
          -3.5039268041935103,
          -7,
          -3.3760291817281805,
          -3.6885977750811696,
          -7,
          -2.7614548059120496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.703635237583896,
          -7,
          -3.3995006613146104,
          -3.697316541732383,
          -3.306567981627654,
          -7,
          -7,
          -7,
          -4.1126050015345745,
          -7,
          -2.930120893290665,
          -2.8418955262504215,
          -3.7409150764812824,
          -7,
          -3.694956002249818,
          -7,
          -7,
          -3.106955425644155,
          -7,
          -7,
          -7,
          -3.827756862978617,
          -3.707058940627596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4282158115613255,
          -2.837114748515506,
          -3.5995009867887746,
          -3.8848609218813404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4073059070182823,
          -7,
          -3.696531119969607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4028629579685634,
          -4.158332331708981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.696967640744023,
          -7,
          -3.7056926965377035,
          -3.459618623917375,
          -3.693463127219531,
          -2.8977492385228323,
          -3.095448326538122,
          -7,
          -7,
          -7,
          -3.52022143588196,
          -7,
          -3.0261245167454502,
          -7,
          -3.327046250042698,
          -7,
          -7,
          -3.391552566610928,
          -3.3432115901797474,
          -3.1427022457376155,
          -3.2756951764686093,
          -2.832366963209335,
          -3.3057095504829292,
          -3.6898414091375047,
          -7,
          -7,
          -3.7004441010277516,
          -7,
          -3.415140352195873,
          -7,
          -7,
          -3.228057990154014,
          -7,
          -7,
          -7,
          -3.3941013020400446,
          -3.1679668133956205,
          -3.2641091563058082,
          -3.4149733479708178,
          -7,
          -2.7288560129418293,
          -2.7008767083769034,
          -3.2120099425148356,
          -3.0156949885265183,
          -7,
          -3.6901074394563307,
          -3.416057729263038,
          -3.695831772826692,
          -3.4759615891924236,
          -3.419707981354444,
          -7,
          -3.4090027034017725,
          -3.052155067199565,
          -3.7034633418832934,
          -3.1996949881491026,
          -3.2794387882870204,
          -7,
          -7,
          -7,
          -2.9907087504593135,
          -3.1285608065593205,
          -7,
          -7,
          -3.2362852774480286,
          -7,
          -7,
          -7,
          -1.7462448717201984,
          -7,
          -7,
          -3.2413804341476116,
          -7,
          -3.4360035356698964,
          -3.8553374044695405,
          -3.553804245922432,
          -7,
          -3.163831985102053,
          -3.0076055495789995,
          -2.7564839644426096,
          -7,
          -3.721150843749684,
          -7,
          -2.902313767872166,
          -2.964907523353008,
          -3.456366033129043,
          -7,
          -7,
          -7,
          -2.88284966953054,
          -3.692935002531138,
          -7,
          -7,
          -3.463743721247059,
          -7,
          -2.847572659142112,
          -7,
          -7,
          -3.9655027326071046,
          -4.180283615315395,
          -7,
          -7,
          -4.498351913199365,
          -7,
          -3.9860099318532614,
          -3.472200430565602,
          -2.948879554937643,
          -7,
          -3.5866154316418695,
          -3.6257341909969014,
          -7,
          -4.833497722133357,
          -3.565626484523529,
          -7,
          -4.4645044509010345,
          -3.740783619483002,
          -7,
          -4.178765980418437,
          -7,
          -4.272179886040999,
          -3.0408899047542124,
          -3.4018245530016085,
          -3.2170626058525507,
          -7,
          -4.670950545585898,
          -3.5624118329497274,
          -7,
          -2.5443761695015814,
          -7,
          -4.154200732412475,
          -4.34086036206488,
          -3.8176534974987812,
          -4.03734680356809,
          -4.341513659870251,
          -3.724930914192398,
          -3.050814606421516,
          -3.619600109432393,
          -3.0258413119868632,
          -2.810456554359043,
          -3.581277159547442,
          -3.1898410886816086,
          -3.226299102605581,
          -7,
          -2.8209673146717194,
          -3.450557009418329,
          -2.661372380859304,
          -2.5665797073098218,
          -2.593216818119425,
          -2.569719632560632,
          -2.2798712318513092,
          -7,
          -3.780677274433368,
          -2.507072025030196,
          -3.182628608173459,
          -7,
          -3.413467412985825,
          -3.824125833916549,
          -7,
          -7,
          -2.6706136891913346,
          -2.966319935150028,
          -4.340798091941712,
          -3.699924402742477,
          -2.3840811520853626,
          -3.225739915853267,
          -2.369321624595056,
          -7,
          -4.186565539383188,
          -3.336859820916809,
          -3.3031420373343563,
          -3.094994900944612,
          -3.9641653106217354,
          -3.127958405334193,
          -4.071513805095089,
          -7,
          -2.2831568248844625,
          -3.3082441767406063,
          -3.5011049269548633,
          -3.1670217957902564,
          -3.4067955726682504,
          -2.0761662517354678,
          -2.371481885568941,
          -3.0569810366681134,
          -3.7238112811795303,
          -7,
          -2.0554319844088447,
          -3.3359090116234906,
          -3.697345604166356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9830847727377883,
          -7,
          -3.289514631590605,
          -7,
          -7,
          -3.08020545491413,
          -7,
          -3.407815642384198,
          -7,
          -3.029221394253928,
          -7,
          -2.6422425686696984,
          -3.4503261040614124,
          -7,
          -7,
          -3.70922754733432,
          -3.500236474825639,
          -7,
          -3.7623033632877685,
          -7,
          -3.284374328300976,
          -3.447778009294621,
          -3.761702367541413,
          -7,
          -7,
          -7,
          -3.757965097861435,
          -7,
          -7,
          -4.232119017142043,
          -3.2868245882246527,
          -3.6627723563377486,
          -7,
          -3.5439439424829065,
          -3.417554724363455,
          -3.4807253789884878,
          -7,
          -7,
          -3.3967222785037734,
          -3.86308482532036,
          -7,
          -3.7271344237604884,
          -7,
          -7,
          -3.6857865089215553,
          -3.7364761820276966,
          -7,
          -3.688330818112266,
          -7,
          -7,
          -3.7610252517113727,
          -3.8154781280733654,
          -3.7134905430939424,
          -7,
          -3.7013088852280753,
          -7,
          -4.045322978786658,
          -7,
          -7,
          -7,
          -3.720159303405957,
          -3.277803625816607,
          -7,
          -7,
          -7,
          -7,
          -4.116408480629899,
          -3.3979400086720375,
          -2.814647069451856,
          -3.4379882502194996,
          -7,
          -3.71758729685546,
          -7,
          -7,
          -7,
          -2.9369658971078705,
          -7,
          -3.7319914490189294,
          -3.6961815871685237,
          -7,
          -3.86975959478241,
          -7,
          -3.3018110230174766,
          -3.9679222067305173,
          -7,
          -3.7992026563005252,
          -7,
          -7,
          -4.367281357632943,
          -7,
          -3.7011360660925265,
          -7,
          -3.703067723380233,
          -3.476759191770886,
          -3.837177937004182,
          -3.0975312952440524,
          -4.018908444316327,
          -3.698448538015329,
          -3.2656038765850357,
          -7,
          -7,
          -3.1153608453944126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.128376186977645,
          -7,
          -3.7229628089424898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.859438535455056,
          -3.833083334178343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7638022240745928,
          -7,
          -3.577664104732127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0947836302399567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.98045221370234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.064972473084506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.754233630120203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.76748981033693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.244573972817435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2310233428503805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.796435558810175,
          -7,
          -7,
          -7,
          -7,
          -2.8236915393984545,
          -7,
          -3.3337494624819706,
          -7,
          -7,
          -7,
          -7,
          -4.04563587107822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8932494712502037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9138138523837167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.737452603142504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.029627239047413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015558831279868,
          -7,
          -7,
          -3.8256208250035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499456818023205,
          -7,
          -7,
          -7,
          -7,
          -3.3404441148401185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.998259338423699,
          -7,
          -3.5956128231697226,
          -7,
          -7,
          -3.955037987024298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7550741017584714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.414756146424954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.809303775819338,
          -7,
          -7,
          -4.405653656099307,
          -7,
          -7,
          -3.7737551094725466,
          -7,
          -4.502819583051974,
          -7,
          -7,
          -7,
          -7,
          -4.635312810258236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.555227498928218,
          -7,
          -7,
          -3.4055853869044945,
          -3.8687032022785366,
          -3.780677274433368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.911663546757045,
          -7,
          -7,
          -3.895496211459295,
          -4.382269256575679,
          -3.573063160454811,
          -7,
          -7,
          -7,
          -4.320789977698806,
          -2.12346273211876,
          -3.7427447644270044,
          -7,
          -4.093386660001371,
          -7,
          -3.4403579968152878,
          -3.266623623872799,
          -3.151916806922742,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.273926780100526,
          -7,
          -3.944127194858972,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.859918485200716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6792006957270504,
          -7,
          -7,
          -7,
          -7,
          -3.8900855267163252,
          -7,
          -7,
          -2.8802703846028392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.043337266512166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1845494813206976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.096005739715113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.353882302989257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7159198174335795,
          -3.7209031708134575,
          -3.5900182997846484,
          -3.29827071697695,
          -7,
          -7,
          -2.7255273008700516,
          -2.8544461895402313,
          -3.243781916093795,
          -7,
          -7,
          -3.464116794444044,
          -7,
          -3.0331555896976927,
          -3.647480773173676,
          -7,
          -7,
          -2.7397781891936,
          -7,
          -7,
          -7,
          -7,
          -3.7236198355154633,
          -7,
          -3.916000993326847,
          -3.7243578042264267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3123238548327696,
          -7,
          -3.736077637003946,
          -3.73471984165568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.855908366581291,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9645646414975544,
          -7,
          -7,
          -7,
          -7,
          -2.565785701176179,
          -7,
          -7,
          -7,
          -3.856265556939869,
          -7,
          -3.427323786357247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7634279935629373,
          -7,
          -3.7430391548049333,
          -7,
          -2.6698790890013155,
          -3.4419306745501714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.553093786437186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7179200258369938,
          -3.0569048513364727,
          -7,
          -7,
          -7,
          -7,
          -2.937966366237449,
          -7,
          -7,
          -7,
          -7,
          -3.77757180469141,
          -7,
          -3.6181527333785195,
          -3.289390735066813,
          -7,
          -7,
          -7,
          -4.297636513446362,
          -7,
          -3.775391971696612,
          -7,
          -3.74499667403856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8505849763520317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3042301459140004,
          -3.034685740076159,
          -3.5833121519830775,
          -3.456897187449348,
          -7,
          -3.5719804234888946,
          -7,
          -7,
          -7,
          -3.399846712712922,
          -3.776991584856405,
          -7,
          -7,
          -7,
          -2.9256987611930096,
          -7,
          -7,
          -7,
          -3.737907923374639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5116754437726105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.824776462475546,
          -7,
          -3.784866815467607,
          -7,
          -7,
          -3.090879205198259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7816835845073506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8213169705910977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5453071164658243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7640266076920375,
          -7,
          -3.8220550910247537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.467963090535135,
          -7,
          -7,
          -7,
          -7,
          -3.720985744153739,
          -3.722057771331464,
          -7,
          -7,
          -7,
          -7,
          -3.569490954348783,
          -7,
          -7,
          -7,
          -7,
          -3.8403570592033565,
          -7,
          -3.2949949938591003,
          -7,
          -3.004285539426262,
          -7,
          -7,
          -7,
          -3.1812717715594614,
          -3.1652443261253107,
          -3.7752462597402365,
          -3.330819466495837,
          -3.803798407989674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8845121591903937,
          -7,
          -7,
          -7,
          -2.6689620060235493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1699748475961473,
          -7,
          -7,
          -7,
          -7,
          -3.4897476056737124,
          -3.754348335711019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7427251313046983,
          -7,
          -3.2990712600274095,
          -7,
          -3.5376617134872417,
          -7,
          -3.310410061407572,
          -4.000596744744559,
          -3.08019341942848,
          -7,
          -7,
          -7,
          -3.168202746842631,
          -3.4085226171161014,
          -7,
          -7,
          -7,
          -7,
          -3.2748503200166645,
          -7,
          -3.7290027092721902,
          -7,
          -7,
          -7,
          -3.5653755027140734,
          -7,
          -7,
          -3.968277427274059,
          -3.3527683310263616,
          -3.257475499803275,
          -3.746011107751926,
          -3.9002715187187222,
          -3.8481891169913984,
          -3.299768711919799,
          -3.0288325872597874,
          -2.7406209017049608,
          -7,
          -3.5948619534914963,
          -3.6287668572312906,
          -7,
          -3.7560589473513573,
          -3.1504640348791213,
          -4.379305517750582,
          -3.8667450273840727,
          -3.493370904515132,
          -3.695043658821294,
          -3.95970902424643,
          -4.113709438449504,
          -3.61294271588699,
          -2.730220354860967,
          -3.205771922578067,
          -3.9241758703019207,
          -3.3301431005564446,
          -3.7704653911235964,
          -3.1980152497483316,
          -7,
          -2.7306176618021176,
          -4.335618349377605,
          -3.9353056902899253,
          -2.898470515114087,
          -2.885274213223267,
          -3.0482863931061255,
          -2.9313796264798206,
          -3.0633333589517497,
          -2.944180088937908,
          -3.2927580264854317,
          -2.918307929943518,
          -7,
          -2.5406706777534835,
          -3.037149237069725,
          -4.017409008536211,
          -2.907795114870337,
          -2.9307077936771586,
          -2.5957900611344176,
          -2.302218818934974,
          -3.0881754787039255,
          -3.5181848042184027,
          -3.222742476026601,
          -2.286844593855551,
          -2.507072025030196,
          -7,
          -7,
          -2.4223572566023504,
          -7,
          -2.6748611407378116,
          -3.1932530688425755,
          -3.857573704147496,
          -7,
          -2.639249260616867,
          -1.351966010973972,
          -3.533305917997387,
          -7,
          -3.5368108659915416,
          -7,
          -2.68185985669508,
          -7,
          -4.011838183029051,
          -2.95288926491093,
          -3.913442954859396,
          -7,
          -3.9779064276371185,
          -3.223841923439887,
          -3.0985890826880103,
          -3.3352572564345317,
          -2.0209542276260914,
          -2.3785536271729235,
          -3.206511055806463,
          -2.6028022288404826,
          -7,
          -1.5596980647057543,
          -3.086621501154378,
          -2.7356714695842044,
          -3.7776714519557197,
          -7,
          -2.7572694676725296,
          -3.475525915039281,
          -3.279609916344099,
          -7,
          -7,
          -7,
          -7,
          -4.225128287982088,
          -3.168291188851266,
          -7,
          -3.4872091017181868,
          -7,
          -3.8664645659717403,
          -2.7694954853699985,
          -7,
          -7,
          -7,
          -3.4394905903896835,
          -7,
          -3.119356714269176,
          -3.4725370532620774,
          -7,
          -7,
          -7,
          -3.5200903281128424,
          -7,
          -7,
          -7,
          -3.602005701124516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070148736152306,
          -7,
          -7,
          -7,
          -3.0850853371959324,
          -3.260056925723567,
          -7,
          -7,
          -7,
          -3.802636918082811,
          -3.7300551523755,
          -7,
          -7,
          -3.880356199419236,
          -7,
          -7,
          -7,
          -7,
          -3.6988396964442867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.75564621945668,
          -7,
          -7,
          -7,
          -7,
          -3.093809893765957,
          -7,
          -7,
          -7,
          -7,
          -3.523876475638131,
          -7,
          -7,
          -7,
          -3.7321524180652137,
          -7,
          -7,
          -7,
          -7,
          -2.775003297785982,
          -7,
          -7,
          -7,
          -7,
          -3.886772643054438,
          -7,
          -3.536474268817627,
          -3.6804261708581456,
          -3.8274985081334587,
          -7,
          -7,
          -7,
          -3.8955698643861068,
          -7,
          -7,
          -7,
          -3.406931720475127,
          -3.7988577317474856,
          -3.6702767846279922,
          -3.603973901841678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.042260406689452,
          -7,
          -3.417859036208306,
          -7,
          -7,
          -7,
          -3.327268092053331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3805730030668872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.417388646165674,
          -7,
          -3.6012630540285273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669084326621116,
          -7,
          -7,
          -7,
          -2.070424498052958,
          -3.7319914490189294,
          -7,
          -7,
          -7,
          -2.976808337338066,
          -7,
          -3.479191276121532,
          -3.6952189189051508,
          -7,
          -7,
          -3.2021987362922757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.158060793936605,
          -4.571569089924529,
          -3.137986732723532,
          -7,
          -7,
          -3.153814864344529,
          -7,
          -7,
          -3.1547282074401557,
          -3.093421685162235,
          -7,
          -7,
          -3.3158177338478967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.311188557387388,
          -7,
          -7,
          -3.361160995195026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.371621927176021,
          -7,
          -7,
          -7,
          -7,
          -3.4913616938342726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.746008552259242,
          -2.904715545278681,
          -2.515211304327802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.299942900022767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2506639194632436,
          -7,
          -7,
          -3.2062860444124324,
          -7,
          -3.6224212739756703,
          -7,
          -7,
          -7,
          -7,
          -3.31492005599242,
          -3.1122697684172707,
          -3.3399480616943507,
          -2.986995539724382,
          -7,
          -7,
          -7,
          -4.745152895076901,
          -7,
          -7,
          -3.3416323357780544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6181975699477458,
          -7,
          -7,
          -7,
          -3.1370374547895126,
          -7,
          -7,
          -7,
          -3.2182728535714475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.413567971273289,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.782655731381152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9170851906405675,
          -7,
          -7,
          -3.449877525251001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.911335197980604,
          -7,
          -3.104145550554008,
          -7,
          -3.9698350930757975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.948556606440763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5436956323092446,
          -3.114610984232173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7740057302582093,
          -7,
          -4.511883360978874,
          -2.810568529216413,
          -3.0993352776859577,
          -7,
          -7,
          -3.285782273779395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8639173769578603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6181422708462816,
          -3.1489109931093564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.316008177334867,
          -7,
          -3.1058506743851435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.126131407261984,
          -3.699837725867246,
          -3.0708994401858685,
          -4.003331258561327,
          -3.1670217957902564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.237040791379191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4154908521714686,
          -4.0426699996003075,
          -7,
          -7,
          -7,
          -7,
          -4.809721282524744,
          -7,
          -7,
          -4.4067104586097905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.620760489994206,
          -7,
          -3.314894817807367,
          -7,
          -7,
          -4.262213705476417,
          -3.303006957714623,
          -2.9574276904698027,
          -7,
          -7,
          -4.369104485571629,
          -4.407135862191559,
          -3.104487111312395,
          -7,
          -3.105793944650636,
          -4.3257413721537965,
          -3.811709026696191,
          -2.6384892569546374,
          -2.596668024008441,
          -1.5317069530054377,
          -2.6349141007233494,
          -7,
          -7,
          -7,
          -2.8482184503122636,
          -3.182628608173459,
          -7,
          -2.4223572566023504,
          -7,
          -7,
          -1.9264281993126555,
          -7,
          -7,
          -7,
          -3.595496221825574,
          -2.549229553718974,
          -7,
          -7,
          -7,
          -7,
          -3.6680751513945196,
          -7,
          -4.248306833423288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2874818076454804,
          -2.395520534548625,
          -4.187548920861271,
          -2.101794462727242,
          -7,
          -2.3952257583370415,
          -3.4962606330422306,
          -2.2338418642756133,
          -7,
          -7,
          -3.169527489553293,
          -3.225309281725863,
          -4.053731315887608,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5571060060508883,
          -7,
          -7,
          -7,
          -7,
          -4.034427905025403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.174195533840527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.482158695411276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.482941436820657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.182129214052998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.513217600067939,
          -2.376576957056512,
          -7,
          -4.179114979230523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.559487681797765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7095243558763413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.317436496535099,
          -2.530199698203082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.519644265409076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.582063362911709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.585573518622731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.737089226944776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9444826721501687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.965201701025912,
          -2.790988475088816,
          -1.9453044216515423,
          -7,
          -1.9704797083100105,
          -1.7745169657285496,
          -7,
          -4.1266994838399125,
          -7,
          -7,
          -7,
          -1.7664128471123997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.716856246874708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6020599913279625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.33665982345442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6711728427150834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.383815365980431,
          -7,
          -7,
          -7,
          -1.8998205024270962,
          -3.6876627068858356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7151673578484576,
          -4.196935743115919,
          -7,
          -7,
          -7,
          -3.619927710291468,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5599066250361124,
          -7,
          -2.740362689494244,
          -7,
          -2.34143452457814,
          -1.4515671502472742,
          -1.7355988996981797,
          -7,
          -7,
          -7,
          -3.1324197980976147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0831441431430524,
          -7,
          -2.146128035678238,
          -7,
          -4.797184414314642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6020599913279623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.831072730183766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.469822015978163,
          -2.462397997898956,
          -2.1818435879447726,
          -3.3809344633307017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7697464671794534,
          -4.571825249040829,
          -4.003158833950862,
          -3.2596735002046984,
          -7,
          -7,
          -7,
          -7,
          -1.4294537668773173,
          -2.0331555896976927,
          -4.070739562849198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3529539117100877,
          -7,
          -3.7524518084163105,
          -7,
          -7,
          -2.552668216112193,
          -2.5861370252307934,
          -2.59659709562646,
          -4.134591434710877,
          -7,
          -7,
          -3.305136318943639,
          -4.058350092210653,
          -7,
          -7,
          -7,
          -4.277104727283855,
          -7,
          -7,
          -7,
          -3.4584867637982066,
          -7,
          -7,
          -7,
          -4.262676484650911,
          -7,
          -3.3779635912797032,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.9110008520221934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.076640443670342,
          -7,
          -7,
          -3.5140161804006493,
          -7,
          -1.4943534012921837,
          -7,
          -3.782472624166286,
          -7,
          -3.7832397935618616,
          -2.3904935265041733,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -3.1371958119405483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8318697742805017,
          -7,
          -7,
          -3.8327004709605674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1560946306394277,
          -7,
          -7,
          -7,
          -7,
          -2.944153536490684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.332559641467404,
          -7,
          -2.5211380837040362,
          -2.571708831808688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4727564493172123,
          -3.6832416162372654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1259148015308593,
          -7,
          -7,
          -2.8768773615716965,
          -7,
          -7,
          -7,
          -3.730136003996678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.531478917042255,
          -7,
          -7,
          -7,
          -2.7551122663950713,
          -2.4056877866727775,
          -7,
          -7,
          -7,
          -7,
          -3.8507993444678896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5668955742647115,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -2.6972293427597176,
          -7,
          -7,
          -7,
          -2.5705429398818973,
          -2.3443922736851106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.700126581535961,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.354108439147401,
          -7,
          -7,
          -7,
          -7,
          -3.4818724103106633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.570426178358973,
          -7,
          -7,
          -2.6278137478108206,
          -3.548573662418466,
          -7,
          -7,
          -7,
          -3.5536403362313544,
          -7,
          -3.428175304684282,
          -7,
          -7,
          -7,
          -2.9479514383577072,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4924810101288766,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -7,
          -7,
          -3.502700175310563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4161965568964496,
          -7,
          -3.4825877695267677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0867803295915035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5403294747908736,
          -3.9845723156216324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.659782160442492,
          -3.516931808868013,
          -3.4765418090274287,
          -7,
          -7,
          -7,
          -7,
          -3.1758016328482794,
          -7,
          -7,
          -2.9906939606797516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5518767631329724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7822575736633017,
          -2.519171463821659,
          -7,
          -7,
          -7,
          -4.758078822249613,
          -7,
          -3.2686949535621777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.796683860632784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.574956775764507,
          -7,
          -7,
          -2.695231434776617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4665117384861452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6708408988553822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.469674772551798,
          -7,
          -7,
          -3.5201777376898518,
          -7,
          -7,
          -3.4648488414960115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5800121125294244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0132586652835167,
          -7,
          -7,
          -7,
          -3.5644687921697042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9995654882259823,
          -3.514158198043977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.412880358464974,
          -7,
          -7,
          -7,
          -3.473194909204938,
          -7,
          -7,
          -2.8395923053285284,
          -7,
          -3.7554937284151193,
          -7,
          -7,
          -7,
          -7,
          -3.2563568863955257,
          -7,
          -3.6214878645806303,
          -2.6127838567197355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.129780495005279,
          -7,
          -7,
          -3.323716062508784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3512299205417593,
          -2.3678216524185376,
          -7,
          -7,
          -7,
          -7,
          -3.5356738034257504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.465977368285823,
          -7,
          -3.7840987774360624,
          -7,
          -7,
          -3.8785907256627516,
          -7,
          -7,
          -3.5199591807520685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.645805301402646,
          -7,
          -4.3282980381306,
          -7,
          -3.868438702162959,
          -7,
          -2.8457743357365493,
          -2.751231956995085,
          -3.6084037659857606,
          -7,
          -7,
          -4.304339704892339,
          -3.450900876048348,
          -3.7067834105169974,
          -7,
          -3.7343396976581213,
          -7,
          -7,
          -3.4018828223212823,
          -4.335748670303386,
          -7,
          -3.33955923092641,
          -3.005909446494559,
          -3.4613143143363385,
          -3.6856521841155243,
          -7,
          -3.8072740250669654,
          -3.074619551851069,
          -7,
          -2.6879460134808286,
          -3.8108371511404884,
          -3.7658707031269545,
          -3.522009286567709,
          -3.1698947576359866,
          -3.0479073469968614,
          -3.6989048552774317,
          -3.030724241924342,
          -2.951129274015182,
          -3.5895187615052655,
          -2.772028165324855,
          -3.589055531052344,
          -2.8606646256502417,
          -3.7567311710637616,
          -3.61066016308988,
          -3.5347873586294916,
          -0.952877875223359,
          -2.964848663898841,
          -2.2973064047319234,
          -7,
          -7,
          -7,
          -2.8948960007737647,
          -3.413467412985825,
          -7,
          -2.6748611407378116,
          -1.9264281993126555,
          -7,
          -7,
          -3.7795724432785334,
          -7,
          -7,
          -4.1025709018543,
          -2.2931325489131047,
          -3.3738311450738303,
          -7,
          -7,
          -7,
          -3.7943286798459863,
          -7,
          -4.353387219249733,
          -3.82885315967664,
          -3.849388698815317,
          -2.6350526852590237,
          -7,
          -2.9033613362553186,
          -4.335076597314406,
          -3.6282867310895144,
          -1.870478618324812,
          -2.195189788763281,
          -3.5333398359919688,
          -3.0329409377808534,
          -7,
          -3.0306300769965593,
          -3.816395982944207,
          -2.4258135993962244,
          -3.961003210960297,
          -7,
          -3.188741045483493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.619823500457278,
          -7,
          -7,
          -7,
          -3.641523684670229,
          -7,
          -4.354185298625861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.97799780995874,
          -7,
          -7,
          -4.507613030501773,
          -4.366292182210539,
          -3.0057748851496804,
          -7,
          -7,
          -3.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4840624550927735,
          -7,
          -7,
          -7,
          -7,
          -4.312794214562137,
          -7,
          -7,
          -7,
          -7,
          -4.046221937221636,
          -7,
          -3.895753942073728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5259513412480126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9071425310031405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.717504074764202,
          -7,
          -7,
          -4.066176785772006,
          -7,
          -7,
          -4.339828924582621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.748885440009517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4983105537896004,
          -7,
          -3.867290669854884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.33683982531461,
          -7,
          -7,
          -7,
          -7,
          -3.5660837841679958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6682998808693528,
          -7,
          -7,
          -7,
          -3.979001748474721,
          -3.50745106090197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5593555501202285,
          -4.275863950712521,
          -7,
          -4.202215775801132,
          -2.685221486931221,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7090437070077527,
          -3.0272731407471967,
          -7,
          -7,
          -7,
          -4.185881978409979,
          -7,
          -7,
          -7,
          -7,
          -4.2197940266919804,
          -7,
          -2.6542716385214287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8387839742393597,
          -7,
          -7,
          -3.4314709841279067,
          -7,
          -7,
          -7,
          -7,
          -4.1932081084944945,
          -7,
          -7,
          -7,
          -7,
          -1.3226638131779507,
          -7,
          -7,
          -7,
          -7,
          -4.2308829988575924,
          -7,
          -7,
          -7,
          -2.719096395032266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5903401790321667,
          -3.885559095608426,
          -3.8972971220594963,
          -7,
          -7,
          -7,
          -2.948123049558286,
          -7,
          -4.1827854420846835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.233985478780212,
          -4.182528775278964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.496652939250918,
          -7,
          -7,
          -7,
          -7,
          -2.5230051670436797,
          -7,
          -7,
          -7,
          -7,
          -4.203631126330513,
          -7,
          -3.7850924507567543,
          -3.3980979052314586,
          -7,
          -4.190611797813605,
          -7,
          -3.1981632898780257,
          -7,
          -3.9017306917292185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.082210716601243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4936018736013543,
          -7,
          -4.246843122251319,
          -7,
          -7,
          -3.627017461878423,
          -7,
          -7,
          -7,
          -7,
          -3.9023293058583186,
          -7,
          -7,
          -7,
          -2.884309756948811,
          -7,
          -7,
          -7,
          -4.189181397180737,
          -7,
          -7,
          -7,
          -4.191953767152995,
          -7,
          -7,
          -4.193291602579516,
          -7,
          -7,
          -3.2118956929098874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9208534961212593,
          -7,
          -3.231528402060794,
          -7,
          -7,
          -2.590458060239311,
          -7,
          -7,
          -7,
          -3.8925398046586355,
          -4.196921944819459,
          -4.205177287388274,
          -4.188928483760853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0869215395030887,
          -7,
          -4.233275391293944,
          -7,
          -7,
          -7,
          -4.1829849670035815,
          -7,
          -7,
          -3.710540447933297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.499412125672275,
          -3.2606198751723716,
          -2.8081718973340783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.350688434639935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.728272597895017,
          -7,
          -7,
          -3.615871177457818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.996905510695666,
          -7,
          -2.7255455311635712,
          -7,
          -7,
          -7,
          -3.3266089162548815,
          -7,
          -7,
          -3.73814608871206,
          -3.611431202502372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.468470412312344,
          -4.198684573077143,
          -4.189995339964319,
          -7,
          -2.648501656974582,
          -7,
          -7,
          -3.8381771981539616,
          -7,
          -4.181414796254284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.035730613217524,
          -4.204092838402539,
          -7,
          -7,
          -7,
          -3.9075994426517067,
          -4.19506899646859,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.184151775723396,
          -7,
          -3.5886637957802043,
          -4.183383742052695,
          -3.2025064803976218,
          -7,
          -2.6123416404291726,
          -3.8860392755664424,
          -3.165568043997485,
          -2.892138099558853,
          -7,
          -7,
          -7,
          -7,
          -3.723838623672183,
          -4.247457695814812,
          -7,
          -7,
          -7,
          -7,
          -3.2908412041830033,
          -7,
          -7,
          -7,
          -4.206987694756409,
          -7,
          -4.239149264858293,
          -7,
          -7,
          -3.5755573000600256,
          -3.281843801655201,
          -3.525239223729745,
          -7,
          -4.621061978712945,
          -3.6292566515815383,
          -3.6981658154401953,
          -2.8370221280830727,
          -2.860489313314953,
          -7,
          -4.410490420003448,
          -2.8620236540286195,
          -4.780180448202641,
          -4.116336501942694,
          -2.716607331253602,
          -2.6366421750341718,
          -3.233580959426479,
          -2.6046638058499907,
          -3.69637386502081,
          -3.540470253496464,
          -3.516081861799344,
          -2.1712034547730594,
          -4.049024097915049,
          -2.955126283548938,
          -4.427940290264142,
          -3.4244955574683114,
          -4.757107415601235,
          -3.355975507128502,
          -4.216667229548209,
          -3.016655354567462,
          -3.4208630205509762,
          -3.946681470082918,
          -2.834610068414402,
          -3.114813973009836,
          -3.325638791790539,
          -2.894532183356678,
          -2.8262077466008173,
          -2.7780228109816956,
          -2.8389594999108265,
          -3.1774823901037768,
          -3.9062542102482167,
          -2.4408086323175966,
          -3.2894650772224656,
          -2.2364554365485083,
          -7,
          -2.709469498990783,
          -4.20227029773729,
          -3.0740498129405394,
          -2.46260594354904,
          -3.014861666129001,
          -2.2038073097049544,
          -2.9263575806831863,
          -3.824125833916549,
          -3.911663546757045,
          -3.1932530688425755,
          -7,
          -7,
          -3.7795724432785334,
          -7,
          -3.33193317250328,
          -4.19512442298668,
          -2.559604515206681,
          -2.5875805480347904,
          -1.9251627584367712,
          -7,
          -3.926188049107206,
          -7,
          -2.4173384968683047,
          -3.8159760009719856,
          -3.4663379282749043,
          -3.977220446635385,
          -2.261204620583918,
          -3.706604003325916,
          -3.590752693877779,
          -2.9358719492185936,
          -3.0666728624046575,
          -3.6148972160331345,
          -3.5094041602586916,
          -7,
          -3.236211136661891,
          -3.769254209283846,
          -7,
          -2.6065710271626346,
          -1.8028997166794674,
          -7,
          -2.3008710783668844,
          -7,
          -3.7499938278694627,
          -1.9632032023186512,
          -1.882937978459839,
          -3.3416323357780544,
          -7,
          -7,
          -4.1923722835985116,
          -3.313526527244975,
          -3.438893790829892,
          -7,
          -4.207715133805567,
          -7,
          -3.9380441425719126,
          -2.35623838202335,
          -7,
          -4.187605315418148,
          -7,
          -2.843896900535604,
          -4.1893780058420305,
          -2.330360364447703,
          -3.5999649037760753,
          -7,
          -3.7520996889830758,
          -3.232678527575879,
          -3.521347331832345,
          -3.469208172085293,
          -7,
          -4.1955398965493185,
          -3.953977026127774,
          -4.201287854101759,
          -4.205826659359341,
          -7,
          -7,
          -7,
          -2.873801481567676,
          -7,
          -7,
          -3.4712036694702526,
          -2.9165280855391633,
          -2.9471978777896175,
          -7,
          -3.4592919449918176,
          -4.1908637331287455,
          -4.213198891723608,
          -7,
          -7,
          -7,
          -3.399673721481038,
          -4.187012807018954,
          -3.8926232292432177,
          -3.975845225467567,
          -7,
          -3.601647215470563,
          -3.418494636403444,
          -3.7502511875699738,
          -7,
          -4.201861216277263,
          -7,
          -7,
          -3.0293837776852097,
          -7,
          -4.183895915385611,
          -4.185060282521393,
          -3.9702771231209835,
          -4.3301295624875245,
          -7,
          -3.719248398447946,
          -7,
          -3.7141061271543476,
          -2.70713293016933,
          -3.715418322595056,
          -3.5431985856376467,
          -7,
          -7,
          -3.669354077643939,
          -7,
          -2.474325008970507,
          -4.197859231738088,
          -4.187153953785416,
          -7,
          -3.922595721029815,
          -7,
          -7,
          -3.8004650410651006,
          -4.197611323169714,
          -4.195373754817413,
          -3.1591803321859055,
          -4.202024895104038,
          -7,
          -3.9002578584377776,
          -2.891708963048237,
          -3.5925320448535816,
          -3.620812485741877,
          -7,
          -7,
          -7,
          -3.2245848537315305,
          -4.241919853150198,
          -3.8839168273879126,
          -7,
          -3.102788856634514,
          -3.734506468448954,
          -3.4263124127148887,
          -2.7182844553673173,
          -3.8394151926838935,
          -4.184123354239671,
          -7,
          -7,
          -7,
          -4.190583795977179,
          -7,
          -4.251540888649978,
          -7,
          -4.184350674046956,
          -7,
          -2.4701673913428643,
          -4.1829849670035815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.24355888962248,
          -3.9317882969633793,
          -7,
          -7,
          -7,
          -7,
          -4.180813775754397,
          -7,
          -3.409820451263753,
          -7,
          -3.7113572411942726,
          -2.565758741761729,
          -3.481896274611678,
          -2.819031838898129,
          -7,
          -7,
          -3.2810081021450763,
          -7,
          -7,
          -2.7163629652763714,
          -7,
          -7,
          -3.0692980121155293,
          -3.64931051416874,
          -3.502727471403209,
          -7,
          -7,
          -3.587289933011235,
          -7,
          -3.4898647703982753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.773347541980823,
          -7,
          -7,
          -7,
          -3.7746629225378223,
          -3.315410507181645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3914644118391033,
          -7,
          -7,
          -7,
          -3.3567005768760696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.103746723189368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.258397804095509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8424220033576497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.321322205630525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9645660274236105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.242019364975552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2813256137230815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7149999674120426,
          -3.6818440056637476,
          -7,
          -7,
          -7,
          -3.797075094121358,
          -7,
          -3.1528995963937474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.976873777627786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.743431365146684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5737460987713385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.513350798805957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1552388418104504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.586399744970328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9204494466649153,
          -7,
          -7,
          -7,
          -3.778295991088834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.330007700872759,
          -7,
          -7,
          -7,
          -7,
          -3.325310371711061,
          -7,
          -7,
          -3.878866336956725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.201390295737178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2561964080632047,
          -7,
          -3.867754066822242,
          -7,
          -7,
          -3.789286852973362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.404320467221731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6371894221487615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.429106008332696,
          -4.7480406520901814,
          -7,
          -7,
          -4.595925894606198,
          -7,
          -7,
          -3.7260911906333236,
          -7,
          -4.42030238517869,
          -3.4933743907101054,
          -7,
          -4.628000445988902,
          -2.257545253461567,
          -4.806830927613483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.477916732304635,
          -7,
          -4.242847744653152,
          -7,
          -7,
          -4.281056104583504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.420714687488031,
          -7,
          -2.6994040818153375,
          -4.592665202751882,
          -2.1719467399789805,
          -3.16345955176999,
          -7,
          -4.117867626566016,
          -7,
          -3.8665944864062345,
          -2.5959369062691735,
          -2.695106259827803,
          -2.1228806438077106,
          -3.8936230762889528,
          -7,
          -7,
          -3.857573704147496,
          -7,
          -3.3529539117100877,
          -7,
          -3.33193317250328,
          -7,
          -7,
          -1.9187691217956822,
          -3.87421858322649,
          -7,
          -7,
          -7,
          -7,
          -3.5166167233974357,
          -3.8153120435243593,
          -3.6086475723466056,
          -2.620879328271566,
          -3.219388027689568,
          -3.3352572564345317,
          -2.5017437296279943,
          -7,
          -3.061284894874462,
          -7,
          -3.7988577317474856,
          -7,
          -2.846928464489655,
          -7,
          -3.358886204405869,
          -3.779390322499192,
          -3.438531047715789,
          -7,
          -3.8734659237113185,
          -3.4875625602563782,
          -7,
          -7,
          -3.3845326154942486,
          -3.357553719743082,
          -3.3378584290410944,
          -7,
          -7,
          -4.135990846921625,
          -3.463482379191176,
          -7,
          -7,
          -7,
          -3.0243830340033324,
          -2.3459766034400795,
          -7,
          -7,
          -7,
          -2.8169038393756605,
          -7,
          -2.47071034590996,
          -3.149373090491385,
          -3.425697213362591,
          -7,
          -3.393107024292132,
          -2.698721765128401,
          -7,
          -7,
          -7,
          -2.9891827512555476,
          -7,
          -7,
          -3.400192488592576,
          -7,
          -7,
          -3.6352323462394964,
          -3.37675939540488,
          -7,
          -3.6504601725336117,
          -3.211473343267295,
          -4.056889612666252,
          -7,
          -7,
          -3.0811672147134725,
          -3.5094713521025485,
          -7,
          -7,
          -3.336059277866349,
          -3.048247531803974,
          -7,
          -7,
          -3.064907027159636,
          -7,
          -3.536621562182411,
          -2.942338818066408,
          -3.27600198996205,
          -7,
          -7,
          -3.3434085938038574,
          -7,
          -3.765929202203141,
          -7,
          -7,
          -7,
          -7,
          -3.9180303367848803,
          -7,
          -7,
          -7,
          -7,
          -2.9078667452917313,
          -2.916102861641635,
          -3.3389542523776075,
          -7,
          -7,
          -4.010893313104381,
          -7,
          -3.543757723163865,
          -3.425697213362591,
          -3.3581252852766488,
          -7,
          -3.560026248912892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5512059437479064,
          -3.4497868469857735,
          -3.6617180576946593,
          -2.9681715147063095,
          -2.9024863809435577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0074956138870546,
          -3.200713733964013,
          -3.1349337530532146,
          -3.6230838133595475,
          -3.404890706906996,
          -3.3372595397502756,
          -7,
          -7,
          -7,
          -3.3807537708039,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.579211780231499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.413132050434872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.812779707008964,
          -7,
          -3.6762362167633116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7169210731667612,
          -7,
          -7,
          -3.2227164711475833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.180905413562809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.086039331268039,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.042752659005548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.043833654133147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5971464878336956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2629254693318317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.389059713506695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.731330851449278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.878004470268025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.394976719554564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1505906704038935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.651278013998144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30977916448048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.099300726233463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.319660090166736,
          -7,
          -7,
          -4.54928533913167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.736069662371753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.102680627595637,
          -7,
          -7,
          -4.084933574936716,
          -7,
          -7,
          -7,
          -7,
          -4.406173856124117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.355700492781882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8064513232472623,
          -3.2920344359947364,
          -3.0814553278225736,
          -3.6730516416734686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.19512442298668,
          -7,
          -7,
          -4.3605744813966325,
          -4.680385377350414,
          -4.474469771414706,
          -7,
          -7,
          -7,
          -3.7698307982522015,
          -7,
          -7,
          -7,
          -1.9533367854783008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.608632989490037,
          -3.2244977469336202,
          -7,
          -4.636718522707071,
          -7,
          -3.351409751925439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7038070652743285,
          -7,
          -7,
          -7,
          -3.8042757671290937,
          -7,
          -2.564839453627283,
          -7,
          -7,
          -7,
          -7,
          -3.2984163800612945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.996905510695666,
          -4.644409044620594,
          -4.142060804897724,
          -7,
          -7,
          -7,
          -3.2329961103921536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7292458072253067,
          -3.04493154614916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0377451292695925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304289418956787,
          -7,
          -7,
          -7,
          -7,
          -3.9411137270371017,
          -7,
          -2.959438915902078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.74787770581979,
          -7,
          -7,
          -7,
          -7,
          -3.3930484664167784,
          -7,
          -7,
          -7,
          -7,
          -3.323091602776659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.388424986483075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1258064581395266,
          -7,
          -7,
          -7,
          -7,
          -3.5590983008782198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7911326033509545,
          -7,
          -3.5082603055123345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3850403290293087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.121830095896224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.051422666089034,
          -1.7038472506330558,
          -4.0648509228019005,
          -4.351177653684284,
          -7,
          -2.900797319812092,
          -2.7999474153427037,
          -3.875369985268502,
          -7,
          -7,
          -3.664152883958131,
          -7,
          -2.8772705363797146,
          -3.3029799367482493,
          -3.873920951019782,
          -3.410889657525366,
          -2.101876182215234,
          -7,
          -3.653540523484712,
          -7,
          -3.575745755034518,
          -3.654003174669913,
          -3.4000004248702242,
          -2.631399000232247,
          -4.0522320902523346,
          -7,
          -7,
          -4.053212938645568,
          -4.357076839842412,
          -7,
          -3.239934426758005,
          -7,
          -7,
          -7,
          -2.54725846811543,
          -4.049876719873882,
          -3.8788854701365376,
          -7,
          -7,
          -4.0512683188703855,
          -7,
          -7,
          -7,
          -3.39778556539804,
          -3.6756133883967066,
          -1.7709177292002485,
          -3.175627764367181,
          -7,
          -3.8935213452372426,
          -4.353416091053356,
          -4.351834943477441,
          -7,
          -7,
          -3.7570922201189325,
          -4.36891880234938,
          -7,
          -7,
          -7,
          -2.3808361546624934,
          -7,
          -7,
          -4.35210530333973,
          -7,
          -3.6069900972210145,
          -3.757415009780414,
          -3.8743465023900985,
          -4.361236616731331,
          -2.591087102920519,
          -7,
          -3.450922358675277,
          -7,
          -4.351931519893126,
          -7,
          -7,
          -4.351776987317764,
          -7,
          -2.54347585490142,
          -3.2403956244812444,
          -2.575206779572527,
          -4.053347392169267,
          -3.357420246145415,
          -4.360801612967852,
          -2.239398798651167,
          -3.88058495606498,
          -4.051113916777601,
          -7,
          -7,
          -7,
          -4.351892891903961,
          -4.352259719157145,
          -7,
          -7,
          -3.2409056656041253,
          -7,
          -7,
          -3.873436863222037,
          -2.482835485930594,
          -4.350867996286564,
          -7,
          -7,
          -3.3514484229091166,
          -2.471691675306919,
          -7,
          -3.874114435154633,
          -2.941855307225644,
          -3.7536022072574475,
          -2.5623187299448182,
          -4.051962449783047,
          -7,
          -7,
          -3.402910666384635,
          -3.2197902864981054,
          -7,
          -3.15172727327314,
          -2.8970144490903236,
          -4.3519508325993845,
          -7,
          -3.753104075187242,
          -3.241387983090901,
          -3.4490153163477864,
          -3.462491585763105,
          -2.7237913946490377,
          -7,
          -7,
          -3.5749375144503044,
          -4.354818870847722,
          -7,
          -7,
          -3.6521772463437383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9375343341579927,
          -3.2809808919291505,
          -3.3548241031327466,
          -7,
          -4.35324283143373,
          -3.8520528086978505,
          -7,
          -7,
          -2.9960736544852753,
          -7,
          -3.1103464971511974,
          -7,
          -4.351989455435632,
          -4.352008765565775,
          -2.115184637844681,
          -7,
          -4.350984143686028,
          -7,
          -4.356523002341826,
          -7,
          -7,
          -7,
          -4.358410786206337,
          -3.315130317183602,
          -4.354838055584639,
          -4.058255158229489,
          -3.7514330818193473,
          -7,
          -2.1532484973821076,
          -2.952695599586917,
          -7,
          -7,
          -4.051249021610516,
          -4.050476427265063,
          -3.8752735332544463,
          -7,
          -2.6447485068361107,
          -7,
          -3.3225146327132733,
          -7,
          -4.063839803002981,
          -1.4447201491172896,
          -3.397746945996307,
          -3.8816128724783483,
          -4.057000080912976,
          -3.4561951669015265,
          -3.6626822956379184,
          -4.066400475955629,
          -4.356350978030569,
          -7,
          -3.657457437356336,
          -4.3535892815794845,
          -3.6537140754412487,
          -3.4701899062855524,
          -7,
          -7,
          -7,
          -3.068799322509493,
          -7,
          -3.272626949394092,
          -7,
          -3.5175352052581,
          -4.352279017274498,
          -4.352317610936827,
          -7,
          -7,
          -3.8783685781837227,
          -7,
          -7,
          -7,
          -4.084165022655899,
          -4.053942329354995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8754856994168585,
          -4.351525754547836,
          -4.050959459771651,
          -3.514813294999285,
          -2.899499746196925,
          -2.9585980084317365,
          -3.000045292154698,
          -4.350906715537863,
          -4.050476427265063,
          -7,
          -7,
          -7,
          -7,
          -4.355336561512381,
          -7,
          -7,
          -7,
          -4.35073245171613,
          -7,
          -4.351216345339342,
          -4.350654978678079,
          -7,
          -3.3539931244194845,
          -2.73206648438781,
          -7,
          -7,
          -7,
          -4.050592404072384,
          -3.3521632157054433,
          -3.4494012529962212,
          -4.351042205739445,
          -3.8775057221332867,
          -4.066624050983426,
          -4.050920836935403,
          -7,
          -2.4814793786171485,
          -7,
          -7,
          -7,
          -3.002436061443105,
          -3.756560043006683,
          -3.73430366675543,
          -7,
          -2.7239025063511586,
          -7,
          -7,
          -7,
          -2.888625423907928,
          -3.1079821158913807,
          -3.6666864241923705,
          -3.0727827856185654,
          -3.7711463488149852,
          -7,
          -7,
          -7,
          -2.77232170672292,
          -2.384235177015444,
          -3.1524221292928356,
          -7,
          -4.0539615073145,
          -3.4001156732959967,
          -7,
          -7,
          -3.7517985605323645,
          -3.147695642960966,
          -2.4962287772975196,
          -3.5176859234556574,
          -7,
          -3.3119271590844845,
          -2.2918854502530666,
          -4.353973902321006,
          -4.050050913799034,
          -3.2696841376874044,
          -7,
          -4.351255033547635,
          -3.755150427678159,
          -7,
          -2.9236325331770483,
          -3.153471864867516,
          -4.068482713761754,
          -7,
          -3.5201465220033143,
          -7,
          -2.5998446272877014,
          -3.3249555483094935,
          -7,
          -7,
          -7,
          -3.524563019364041,
          -3.280938615533181,
          -7,
          -3.874964742781923,
          -3.754348335711019,
          -7,
          -7,
          -7,
          -7,
          -4.052039507001472,
          -7,
          -2.743375903237164,
          -7,
          -2.830225931135402,
          -3.915856931822878,
          -2.629613445378183,
          -7,
          -2.3398450362288328,
          -2.7355228610948337,
          -3.1359179942343682,
          -7,
          -3.6590981582255195,
          -4.353030975765281,
          -2.6384139011253755,
          -3.1923583395461788,
          -3.3251236586893103,
          -4.351332399626383,
          -4.350809910936365,
          -7,
          -2.881802960668849,
          -3.39732190576478,
          -4.05332818707134,
          -3.5068914154213755,
          -3.1640366873790486,
          -3.875234946450165,
          -2.5759512759327388,
          -7,
          -7,
          -2.4395729484199693,
          -3.3610330758599813,
          -7,
          -7,
          -4.088579020388005,
          -3.686618396693641,
          -2.854178148262086,
          -2.7432791373097536,
          -2.4682786183667798,
          -7,
          -3.372043597924024,
          -3.5724504575628,
          -3.7155148088947807,
          -2.8711666731384202,
          -2.8133770987925284,
          -4.313919922812262,
          -3.0774890305065017,
          -2.559639953262714,
          -4.205799621570576,
          -3.5426940540960583,
          -3.7816405047233714,
          -3.3202545608791008,
          -3.1291183845233452,
          -2.858165668009299,
          -3.8331088463960503,
          -3.099478220000061,
          -3.9639024551700692,
          -3.380107825951645,
          -7,
          -2.5723445457257155,
          -2.399167832403589,
          -3.6665251803374077,
          -3.3655100073792745,
          -3.0142521135405436,
          -3.0731835519016713,
          -3.4824667915374334,
          -3.825724633180373,
          -3.0048292520634114,
          -2.8975618630201563,
          -3.4549002688478176,
          -2.397042473902774,
          -2.378339042491099,
          -0.7071420466449847,
          -2.1618775133441885,
          -3.5150786750759226,
          -3.0055834614855628,
          -4.064401826826439,
          -2.2243032322201834,
          -1.8590231903699448,
          -2.0210965506484637,
          -1.8319566260711162,
          -2.791859969324879,
          -2.6706136891913346,
          -3.895496211459295,
          -2.639249260616867,
          -3.595496221825574,
          -3.7524518084163105,
          -4.1025709018543,
          -2.559604515206681,
          -1.9187691217956822,
          -4.3605744813966325,
          -7,
          -1.747630450848589,
          -2.8251383512033783,
          -3.5080870228492893,
          -3.2361952477037432,
          -3.149450058942079,
          -2.143608523452319,
          -3.2252931246365586,
          -2.073179528365288,
          -1.871019397759376,
          -1.9587908314652507,
          -3.0969679150789244,
          -1.8954857836801475,
          -2.66908769785759,
          -2.3527153948431287,
          -3.5973843421258556,
          -3.0272354120535976,
          -3.5645138908321785,
          -1.4345612582962384,
          -3.4417823871692685,
          -3.4518631592206126,
          -1.9199113500563203,
          -2.1348892809686673,
          -4.0655797147284485,
          -1.8575104719484488,
          -3.2234588550581065,
          -3.6044240692658422,
          -3.0958830375160398,
          -2.7622363290860354,
          -2.9925150982919564,
          -3.507817334539596,
          -7,
          -7,
          -3.628848527992802,
          -2.2475481260755785,
          -3.353743170753935,
          -3.1133118672541786,
          -3.755074101758472,
          -2.0656802408725516,
          -1.8600035372297603,
          -3.2536920674836742,
          -3.2758486103094215,
          -4.352433371350281,
          -2.3401496516240496,
          -4.05558854630511,
          -1.9673259155379277,
          -2.784241800233638,
          -3.3206749005691742,
          -7,
          -2.6426686096873704,
          -2.6051223545340476,
          -3.0539510467143005,
          -3.668944734457734,
          -3.758684849882441,
          -2.187311774726153,
          -7,
          -4.367914738793752,
          -7,
          -3.4006914571198217,
          -7,
          -2.3654275949190438,
          -4.055989583385691,
          -7,
          -3.0594203544061824,
          -1.814272014037218,
          -2.664039261993672,
          -7,
          -4.390104563825434,
          -3.078227800040302,
          -3.331243195423496,
          -3.877448137397143,
          -7,
          -3.311194985427823,
          -2.8029139956252727,
          -7,
          -3.882410684373968,
          -3.6397686226140973,
          -7,
          -2.3106933123433606,
          -3.3614634023667214,
          -3.127050778278675,
          -4.350867996286564,
          -7,
          -4.052617000746292,
          -3.890551417985771,
          -3.121460358577064,
          -7,
          -3.3983837273914785,
          -3.450364596814099,
          -7,
          -3.041438238134359,
          -4.0621681733517825,
          -3.406956298169804,
          -3.198527717134609,
          -4.056923898922357,
          -1.9094208172150455,
          -2.5858238440164927,
          -3.5480909520409916,
          -3.7545585506411285,
          -7,
          -3.640836223757495,
          -4.35324283143373,
          -2.7545394443970084,
          -3.4590907896005865,
          -3.3547996852632904,
          -3.101479757044251,
          -3.6811688489293988,
          -7,
          -3.8752156517622924,
          -2.71803642078278,
          -3.516950677700458,
          -4.360744841210403,
          -2.7943771299220317,
          -4.365300748637988,
          -3.1414149308891646,
          -3.4614797679776728,
          -2.271634765541776,
          -2.8962505624616384,
          -3.3002511868257978,
          -3.9003124969837266,
          -7,
          -7,
          -3.0541340708512235,
          -7,
          -3.6545615547417434,
          -3.90444504107691,
          -2.400113741375228,
          -2.584442453586196,
          -2.080197932774685,
          -2.513714244622591,
          -3.4054239806799105,
          -3.311310673889323,
          -7,
          -3.6537140754412487,
          -7,
          -3.2430762267428355,
          -3.6669483178403244,
          -3.399587200018076,
          -7,
          -3.449883192013988,
          -7,
          -2.1364542995951337,
          -4.051249021610516,
          -7,
          -4.051981715369472,
          -7,
          -7,
          -4.354185298625861,
          -7,
          -3.4909061462664024,
          -3.6876002973649102,
          -4.361009712608143,
          -4.35324283143373,
          -4.062751156916884,
          -7,
          -7,
          -7,
          -3.878694100396108,
          -4.355144896174567,
          -3.577778936695224,
          -2.5236326771538353,
          -3.2295623970436256,
          -2.830536652178616,
          -4.353704703572165,
          -7,
          -3.086964573877051,
          -4.3519508325993845,
          -4.049818639702361,
          -2.621864856342066,
          -7,
          -7,
          -2.976203202107988,
          -4.399881302691986,
          -3.666105954192445,
          -7,
          -7,
          -3.2423502691413284,
          -7,
          -3.712733859069952,
          -7,
          -7,
          -7,
          -4.076444730438234,
          -4.97919770198058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979229593022155,
          -4.502363382364717,
          -2.303370621853087,
          -3.7784542460202473,
          -7,
          -7,
          -2.058551657819114,
          -2.872611870862621,
          -4.377433751703389,
          -4.679945470619215,
          -7,
          -3.6596717642835825,
          -4.678103917207136,
          -2.398105624862588,
          -3.716789460800791,
          -4.979179477476769,
          -3.86854045204139,
          -1.9092655725827472,
          -7,
          -4.201347045549598,
          -7,
          -4.2808741725572155,
          -4.678613967933965,
          -4.025674449410344,
          -2.7551719956158522,
          -4.201497264541644,
          -7,
          -7,
          -4.3778387731760615,
          -4.37850237345544,
          -7,
          -3.4883050259234247,
          -4.678044676072082,
          -3.0353757656518012,
          -7,
          -2.395734989139622,
          -7,
          -4.37826613891235,
          -3.679073411294163,
          -7,
          -7,
          -7,
          -4.67833624673218,
          -4.377410986477962,
          -4.502326956667444,
          -3.7059401975314,
          -2.357611434806292,
          -4.5023087426730655,
          -4.201424437579911,
          -3.603455631785735,
          -4.678682232836399,
          -4.20115122765526,
          -4.502267758392556,
          -4.979648514925287,
          -4.503972168426268,
          -4.28443073384452,
          -7,
          -7,
          -7,
          -2.4593222480023207,
          -4.979120242557178,
          -7,
          -4.67837267930482,
          -7,
          -3.2880702826432477,
          -4.379101469283612,
          -4.377192379575923,
          -3.8353371955474906,
          -2.7746925762144707,
          -7,
          -3.979844176893234,
          -7,
          -4.9793707966348855,
          -7,
          -7,
          -4.9793343613877905,
          -7,
          -3.4366305511632125,
          -4.281042462324887,
          -3.273935843952804,
          -3.7757014473743005,
          -3.866700756042499,
          -4.078325386022452,
          -1.5707693706090062,
          -3.461953037961793,
          -4.076276255404218,
          -4.678076576148942,
          -4.979097457744342,
          -7,
          -4.377274370059828,
          -4.2804417782984165,
          -4.134126997288191,
          -4.3770146804081005,
          -3.167898869393933,
          -4.979389013112218,
          -7,
          -4.979065556997999,
          -3.6590555379726695,
          -4.979120242557178,
          -7,
          -7,
          -4.377251596478043,
          -3.248667908857583,
          -7,
          -4.67818593005568,
          -3.701840554823391,
          -4.378193425501022,
          -2.386880986817247,
          -4.3775430081774,
          -4.979966989370279,
          -7,
          -4.503541016777294,
          -3.4510501018233475,
          -4.678295256434399,
          -3.5015230515328484,
          -2.197975494850741,
          -7,
          -7,
          -4.980162507941342,
          -2.870770656446694,
          -3.979393567112165,
          -3.6207650116107004,
          -3.3597993573621676,
          -4.503727145256533,
          -4.678536588070615,
          -4.3776021772931735,
          -4.5029139488008685,
          -7,
          -7,
          -2.988062779908248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2739733552614925,
          -3.609589963108257,
          -2.755808015428896,
          -3.358016473630128,
          -3.7007629061106853,
          -3.2810247868116487,
          -4.67833624673218,
          -7,
          -3.5828039875901907,
          -3.785498892166861,
          -3.463987950842169,
          -7,
          -4.502244987676499,
          -7,
          -2.578496459283649,
          -7,
          -7,
          -7,
          -3.7250309035037272,
          -7,
          -7,
          -4.681250285083047,
          -7,
          -4.503409316743605,
          -7,
          -4.680086107821505,
          -4.50262737734167,
          -7,
          -2.2361703147138603,
          -4.979284257931421,
          -7,
          -7,
          -4.979461871381611,
          -7,
          -4.502358829319633,
          -4.979215925719661,
          -3.2530551694438183,
          -7,
          -3.2460483982279698,
          -4.979133912871117,
          -3.5508667518642625,
          -1.8903131072361514,
          -4.678418215723125,
          -4.077849178425541,
          -4.135673194419237,
          -4.078026116493543,
          -3.867666888451123,
          -3.535682839461785,
          -4.503277576759695,
          -7,
          -4.980471520550195,
          -4.280755875857311,
          -3.657183380234882,
          -3.72913778048962,
          -7,
          -4.024909629847714,
          -7,
          -3.2146041885781704,
          -7,
          -3.5563025007672873,
          -7,
          -3.4501947501639734,
          -4.979452764766347,
          -4.979461871381611,
          -7,
          -7,
          -4.077077066845761,
          -4.280173021838674,
          -7,
          -7,
          -4.084303641312077,
          -4.134946257916835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.680281109863301,
          -3.680793140101235,
          -3.44854732180148,
          -1.6859897129364445,
          -7,
          -4.979279702785111,
          -4.97924781542311,
          -4.379164961302967,
          -4.9790883434844915,
          -7,
          -7,
          -4.9793525793934315,
          -7,
          -7,
          -7,
          -4.97919770198058,
          -7,
          -7,
          -7,
          -4.9799397007098865,
          -2.312113774786506,
          -7,
          -7,
          -7,
          -7,
          -4.377420092711333,
          -4.979566583734596,
          -7,
          -4.377938832645777,
          -3.8690872318374687,
          -4.502244987676499,
          -3.2484057839901737,
          -3.2858542379017495,
          -4.9791020148025416,
          -7,
          -4.678286146953918,
          -3.384608753685633,
          -7,
          -2.837383780552244,
          -4.9804578922761005,
          -2.208779157348013,
          -4.502194887898237,
          -4.9791612522081605,
          -4.979348024963666,
          -3.3943247011763185,
          -2.6358338724756276,
          -3.6602825959861374,
          -3.4793728345396158,
          -3.507126940370548,
          -4.134044986160437,
          -4.502108338302493,
          -7,
          -7,
          -3.83525560640304,
          -4.202402030831502,
          -7,
          -4.201906688806218,
          -7,
          -7,
          -7,
          -4.979853275304856,
          -3.979398121064359,
          -3.007205282237773,
          -3.583851425939607,
          -4.980589614348293,
          -4.678750487010251,
          -1.6406181228166998,
          -4.280846876178632,
          -4.678140369274087,
          -3.278792414018181,
          -4.979206813945709,
          -4.979211369856581,
          -4.980648649207456,
          -7,
          -3.870084122344106,
          -4.378761175316373,
          -4.983590207164233,
          -7,
          -4.505462015353893,
          -7,
          -1.595422951718882,
          -3.2581581933407944,
          -7,
          -7,
          -7,
          -3.6824699984835996,
          -3.7259887245144285,
          -7,
          -4.979425443774774,
          -4.5033184658590395,
          -7,
          -7,
          -7,
          -7,
          -4.979648514925287,
          -7,
          -3.2990667156532036,
          -4.3774383046052785,
          -2.84294413666749,
          -3.627499437712944,
          -2.0525609515701713,
          -4.502986698753511,
          -3.0482068592753193,
          -2.7132394661449837,
          -4.204766419136863,
          -7,
          -4.202665377206015,
          -7,
          -3.379989513978221,
          -3.6892289202673214,
          -4.505805449051175,
          -7,
          -7,
          -4.979056442068636,
          -3.4369164966752686,
          -4.678318029299685,
          -4.979953345254416,
          -4.678400001728747,
          -3.9041066737190038,
          -7,
          -3.3451018214939543,
          -7,
          -7,
          -2.234503776841132,
          -2.281859415013462,
          -3.054904018624125,
          -4.281919242436253,
          -2.854456080613144,
          -3.5102008339963153,
          -2.5619484129365397,
          -1.8459505141455332,
          -2.0329793553070608,
          -7,
          -2.722123655881506,
          -2.3571035853767603,
          -2.5745912864795972,
          -2.4188093285612,
          -2.112532898581015,
          -2.9844395836343924,
          -2.5102819608455094,
          -2.195629541422008,
          -3.194568182694128,
          -2.609346857296908,
          -3.2420189433633753,
          -2.440666173142421,
          -2.5154691970223673,
          -1.9123537888869968,
          -3.130834353972563,
          -3.1352797775136847,
          -2.661580842457,
          -2.2775309162337645,
          -4.081869155842856,
          -1.640458686908127,
          -2.8980908084740675,
          -2.5895893105452106,
          -2.591990301559195,
          -2.3832551832908417,
          -2.526024644625345,
          -2.6156317506865383,
          -2.7262847745317265,
          -2.290191529906219,
          -2.6460026549925924,
          -2.4889282435288567,
          -4.080292702211703,
          -1.9776834142348059,
          -2.1463918829342066,
          -2.6974115296424017,
          -2.610050179649368,
          -2.0544809452212145,
          -2.632284751300133,
          -1.000773975679654,
          -2.9587962505265497,
          -3.453776859690442,
          -2.6150606136353867,
          -2.364933273834648,
          -2.966319935150028,
          -4.382269256575679,
          -1.351966010973972,
          -2.549229553718974,
          -7,
          -2.2931325489131047,
          -2.5875805480347904,
          -3.87421858322649,
          -4.680385377350414,
          -1.747630450848589,
          -7,
          -2.341424640638167,
          -7,
          -3.9453656171122073,
          -4.134741587601687,
          -2.238647399728776,
          -3.493636646629202,
          -2.421350030521526,
          -2.9382694834629115,
          -3.2787903348347553,
          -4.979598447701,
          -3.61800012981326,
          -2.330522106345977,
          -2.546630782476486,
          -3.228719959339479,
          -1.9940933059313122,
          -1.995603730660035,
          -2.2279710176578824,
          -2.244982936312322,
          -4.980148869966749,
          -1.4938986418652622,
          -2.064907698019913,
          -2.5638900641249864,
          -2.0251841199184506,
          -4.506577183334457,
          -3.1228709228644354,
          -2.8946149153826797,
          -2.512227672063213,
          -4.679077957809192,
          -4.979657617436882,
          -7,
          -7,
          -3.0741091006233097,
          -2.7115288124910117,
          -4.678841475892305,
          -3.2348244927709917,
          -4.378543247161644,
          -3.608517119395359,
          -2.6421609791755407,
          -3.9831524989729203,
          -4.980203419295704,
          -7,
          -2.954754915800072,
          -4.07733610431472,
          -2.3415571717649177,
          -3.5509888914628096,
          -4.282866716929532,
          -3.987125294063701,
          -2.6665786416553043,
          -3.8394376418318696,
          -3.8142387143633596,
          -4.080076055960704,
          -4.504353041020471,
          -3.250969731009272,
          -4.283432402016652,
          -4.138040914556538,
          -4.5040447413439955,
          -4.980153416005866,
          -7,
          -3.208236548850757,
          -4.679545994115586,
          -4.979379904969063,
          -2.638548805251015,
          -1.9117170735037696,
          -2.052593350948046,
          -7,
          -3.5734830426589057,
          -3.701813305543457,
          -3.5528348912085557,
          -4.502873021596449,
          -7,
          -7,
          -3.5748011791913576,
          -4.679068864731537,
          -4.136040742626403,
          -3.4273852129070925,
          -7,
          -2.7066132925258684,
          -4.282712723035266,
          -3.840639221302228,
          -4.678081133111508,
          -4.079380252083097,
          -4.377697741146842,
          -3.414625592612454,
          -2.703212850278049,
          -4.679405181871566,
          -4.50246808922949,
          -7,
          -3.6936478192387985,
          -2.8750998656300175,
          -3.8680110921631368,
          -4.282640236421941,
          -3.385815458734226,
          -4.3787203221163375,
          -1.9598446499148852,
          -4.282014536689525,
          -3.264773286837431,
          -4.202311184698005,
          -4.504049276748714,
          -2.9495203932009812,
          -7,
          -3.1616196942048727,
          -4.282866716929532,
          -4.5029912452209455,
          -4.135514280998787,
          -3.7308002139362295,
          -7,
          -7,
          -2.7797724115753364,
          -4.680793140101235,
          -4.504325846909658,
          -3.032302413919488,
          -3.836315071579222,
          -3.4587266981425513,
          -4.137295321174881,
          -3.071817053124699,
          -2.8272164116669023,
          -3.605695520054009,
          -3.466737343913133,
          -7,
          -7,
          -2.9757572159420054,
          -3.365817681057219,
          -4.377697741146842,
          -4.032247065637881,
          -2.5103335129592623,
          -3.9427023688886678,
          -2.843345672544991,
          -3.015622630549385,
          -3.239851544802794,
          -4.377556663304251,
          -4.0789414130924255,
          -4.678545692299574,
          -7,
          -4.50354555744551,
          -4.681706949373032,
          -3.6107532922391736,
          -7,
          -4.678641275182585,
          -4.9791020148025416,
          -2.628221247239599,
          -7,
          -4.135809359656516,
          -7,
          -4.50266832770066,
          -3.8048479063618035,
          -4.67886422013453,
          -4.980357938529916,
          -3.484299839346786,
          -3.4312118238758584,
          -4.504389297186282,
          -4.678641275182585,
          -4.380116229401339,
          -7,
          -7,
          -4.979129356147615,
          -4.378220694456968,
          -4.5029912452209455,
          -4.503223051971403,
          -3.3752846655239948,
          -3.1596733301284265,
          -3.9497092886669005,
          -4.502650128017808,
          -7,
          -3.7840642670723494,
          -4.502235879055773,
          -7,
          -3.05219091130959,
          -7,
          -7,
          -3.754334842507978,
          -3.1517117392567644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1548119446999063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.17205387889541,
          -5.172229183784123,
          -2.230840899270554,
          -4.87325373741082,
          -7,
          -7,
          -3.7206582057950017,
          -3.5402412871049003,
          -7,
          -7,
          -7,
          -4.696746525053621,
          -7,
          -3.5407436856394208,
          -4.4045115809285225,
          -7,
          -5.174213950544837,
          -2.2665525867583787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.871505801505925,
          -2.7555775342988365,
          -4.871316018745736,
          -7,
          -7,
          -7,
          -5.172926780108456,
          -7,
          -7,
          -7,
          -4.477129940522443,
          -7,
          -2.5389528728350346,
          -5.1719954282039575,
          -4.871739266495737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.871190424556114,
          -7,
          -4.874635446114873,
          -3.6176632694789093,
          -4.695061188012712,
          -5.172305127265699,
          -4.174986747747709,
          -7,
          -7,
          -7,
          -7,
          -3.89440351920064,
          -4.475764137731008,
          -7,
          -7,
          -7,
          -2.9128490780700087,
          -7,
          -7,
          -5.172170756683376,
          -7,
          -4.87632755539097,
          -7,
          -7,
          -4.8725291977811604,
          -3.0895835270087257,
          -5.17206264582066,
          -4.695367834387965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.173195012508446,
          -4.87154374810799,
          -4.270675925314027,
          -5.172521201440062,
          -5.173031760343499,
          -4.219208918263775,
          -2.6440084295323794,
          -4.69590175824009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.332582719834521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.172442376021389,
          -7,
          -4.474545503517712,
          -5.172126931198854,
          -7,
          -7,
          -7,
          -3.672244590979858,
          -7,
          -7,
          -7,
          -7,
          -4.697232249674232,
          -7,
          -3.6895007669133824,
          -3.1933110552062804,
          -7,
          -4.871955109930143,
          -7,
          -3.1394464176042884,
          -7,
          -4.219988887789219,
          -4.475752520143048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2102357529251764,
          -7,
          -7,
          -4.870942050060529,
          -7,
          -7,
          -4.10595276923698,
          -4.48000406682523,
          -4.032995569091898,
          -4.2193108595141835,
          -7,
          -3.17583819826466,
          -7,
          -7,
          -7,
          -3.731519696167285,
          -5.174341876619092,
          -7,
          -7,
          -7,
          -3.2906968195221182,
          -7,
          -7,
          -5.172275919805895,
          -4.69570927120908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8678429063865183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.172226262615762,
          -7,
          -4.477367285224013,
          -7,
          -3.060932757396147,
          -7,
          -4.696999635006528,
          -2.840684167333266,
          -7,
          -4.571114618015548,
          -5.173078410081454,
          -7,
          -7,
          -4.174478483315079,
          -5.1728159401009215,
          -4.871459093443646,
          -7,
          -7,
          -7,
          -4.330349987099072,
          -7,
          -7,
          -7,
          -3.8524439488043782,
          -7,
          -4.478641516731935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.172696317831423,
          -7,
          -7,
          -7,
          -5.177348890367912,
          -7,
          -7,
          -5.17201588684082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7828050260346147,
          -2.1517212641187347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721673245455936,
          -7,
          -7,
          -7,
          -5.1721035557986665,
          -7,
          -7,
          -7,
          -7,
          -4.060552567068463,
          -7,
          -4.400327842485654,
          -7,
          -7,
          -7,
          -7,
          -3.585781667754338,
          -7,
          -4.231206147302349,
          -5.172842194238305,
          -2.7606260839609345,
          -7,
          -7,
          -7,
          -4.484365334559296,
          -4.328842487609549,
          -7,
          -4.874600667081689,
          -2.5157571700194685,
          -7,
          -7,
          -7,
          -7,
          -4.872476774544123,
          -7,
          -7,
          -5.172614605635793,
          -7,
          -7,
          -5.172109399766667,
          -4.871418219767973,
          -7,
          -4.137751045204818,
          -4.696705780933917,
          -5.172926780108456,
          -7,
          -2.7819676747631523,
          -7,
          -7,
          -3.284253031569433,
          -7,
          -7,
          -7,
          -5.172232104932835,
          -4.874171496513056,
          -7,
          -5.174856107981183,
          -7,
          -7,
          -5.172489089107628,
          -2.085481870600912,
          -4.475421288176064,
          -7,
          -7,
          -7,
          -4.0608953340692775,
          -5.173457253562059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0268162428984065,
          -7,
          -3.3391752955084275,
          -7,
          -1.9281786549499058,
          -4.69549626947358,
          -4.572703193349392,
          -2.2623458143395654,
          -5.174452327912134,
          -7,
          -7,
          -7,
          -4.696958914626985,
          -4.702137461143438,
          -5.174440702782961,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.873689624369535,
          -7,
          -4.576229018141046,
          -7,
          -7,
          -2.6471647853430955,
          -2.5473879297857804,
          -2.585881903537832,
          -7,
          -2.8141034167340453,
          -3.9732231338246757,
          -3.532340972815915,
          -2.3492307781211794,
          -2.8251465839459926,
          -7,
          -3.375387870556721,
          -2.3303996308647994,
          -2.7125911868423653,
          -2.3952086266982553,
          -3.288585800358648,
          -1.7309884791846206,
          -2.623890979325472,
          -2.416572585148292,
          -3.3729943935509152,
          -3.0401260605057816,
          -2.7745002499864304,
          -0.6355151074541456,
          -3.7300551523755,
          -2.313199520872477,
          -2.929519470369024,
          -2.8777435688491266,
          -2.891590005962673,
          -2.6840607460515464,
          -4.330645644407504,
          -2.7749792130712096,
          -2.256239193305345,
          -2.5945400247532024,
          -2.734673526117867,
          -2.892070625520591,
          -3.3195871224577425,
          -2.8270039497469024,
          -2.9233503834761776,
          -2.9908897569526816,
          -2.033876869603903,
          -3.4895173193519526,
          -4.873727380646679,
          -2.325649322444365,
          -2.977746849688124,
          -3.9828137621318627,
          -5.173436862713784,
          -2.925674902660467,
          -4.873183954880855,
          -2.760634118061711,
          -3.6323026013613955,
          -4.2729896907231355,
          -2.9629894767010017,
          -2.9442143738269984,
          -4.340798091941712,
          -3.573063160454811,
          -3.533305917997387,
          -7,
          -7,
          -3.3738311450738303,
          -1.9251627584367712,
          -7,
          -4.474469771414706,
          -2.8251383512033783,
          -2.341424640638167,
          -7,
          -7,
          -4.5748787621653415,
          -7,
          -2.7731882494590696,
          -3.5511690398945315,
          -2.854352194733876,
          -3.9524533964230333,
          -3.3223580508773014,
          -7,
          -3.4681626421329956,
          -3.0231152201059763,
          -2.827736554353427,
          -3.920456691003599,
          -4.18413472305636,
          -4.4032320844788675,
          -3.1139246438338923,
          -4.878119484697168,
          -7,
          -3.185214973180491,
          -2.850942982561628,
          -4.69727003779242,
          -1.960728263701163,
          -4.572859989893312,
          -4.3318175956470295,
          -3.904083156295295,
          -3.436719078227576,
          -4.327490297721857,
          -5.172328491819344,
          -7,
          -7,
          -2.778358008055677,
          -3.783996977708136,
          -5.1724715722890915,
          -4.873768037582299,
          -7,
          -4.576226137449605,
          -3.323642548936354,
          -5.174626667518491,
          -7,
          -7,
          -3.9333438491251504,
          -7,
          -2.916077773141475,
          -4.697078156386674,
          -4.872715540280947,
          -7,
          -4.342247799786142,
          -4.062191334025707,
          -4.401107465479456,
          -4.475630516702674,
          -4.872470949349374,
          -5.180166032638616,
          -7,
          -7,
          -5.173308669740682,
          -7,
          -7,
          -4.014626929273559,
          -4.570846373009805,
          -7,
          -2.954609777522019,
          -3.3589812256253495,
          -2.1881025299472006,
          -7,
          -4.576061906444384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.934951266485025,
          -4.695484595126102,
          -7,
          -4.279692604072538,
          -7,
          -4.144410024868985,
          -4.872616555783219,
          -4.875943432270175,
          -7,
          -7,
          -7,
          -7,
          -2.8138144174810424,
          -7,
          -7,
          -7,
          -2.784517042296126,
          -4.2866669415288365,
          -7,
          -4.571528323403687,
          -4.143355512469716,
          -5.173066748116727,
          -2.4828622066657835,
          -4.872167931504066,
          -4.5766004672102065,
          -7,
          -4.571234108634844,
          -3.6510425226700334,
          -7,
          -3.4455136273681837,
          -7,
          -5.172632116686294,
          -4.87194052929306,
          -4.135103726372142,
          -7,
          -7,
          -4.705783913315986,
          -7,
          -7,
          -4.283394524137035,
          -7,
          -5.17931619719864,
          -5.174120889726191,
          -3.824920600351519,
          -4.4856902015728215,
          -5.176481948305591,
          -5.176111525658619,
          -7,
          -7,
          -3.114858477397568,
          -4.333493335771041,
          -7,
          -4.699638303379863,
          -3.5647792408154557,
          -7,
          -4.083155177608267,
          -3.0772406874323766,
          -4.886919168061725,
          -5.17231973025903,
          -7,
          -7,
          -7,
          -5.1729880216628,
          -4.572235371078456,
          -3.9243798055581998,
          -7,
          -7,
          -7,
          -3.462504953811799,
          -7,
          -7,
          -4.394133431866444,
          -7,
          -4.696099989021025,
          -5.172486169686935,
          -7,
          -4.701683090935717,
          -4.8765526726537205,
          -7,
          -5.1723430940270845,
          -7,
          -7,
          -7,
          -5.1719895827021185,
          -4.871710090234615,
          -7,
          -4.327647881293372,
          -3.9293990555775653,
          -4.101546601696882,
          -3.32202393317598,
          -4.871377342245107,
          -7,
          -4.478912638929306,
          -7,
          -7,
          -3.0831103583450727,
          -7,
          -7,
          -3.9451759445910755,
          -4.138296955391362,
          -4.697049076049325,
          -7,
          -7,
          -7,
          -7,
          -4.102510883861542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658860066006634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5878231713189552,
          -7,
          -7,
          -3.974598036449844,
          -7,
          -7,
          -7,
          -2.5171958979499744,
          -7,
          -7,
          -4.2576785748691846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.859178341043755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7041505168397992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028855809390444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8959747323590643,
          -7,
          -7,
          -7,
          -3.916677618403313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.829946695941636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.060471192797679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7371926427047373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6768764319731373,
          -2.9339931638312424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.987219229908005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9344984512435675,
          -7,
          -2.677606952720493,
          -7,
          -2.780317312140151,
          -7,
          -7,
          -3.523933342263851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2219355998280053,
          -7,
          -7,
          -7,
          -7,
          -3.391575762261328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8976270912904414,
          -2.3710678622717363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1020905255118367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -4.019946681678842,
          -7,
          -7,
          -7,
          -3.6133131614554594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.534026106056135,
          -2.6875289612146345,
          -7,
          -7,
          -2.5550944485783194,
          -7,
          -7,
          -7,
          -7,
          -2.945796726048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.968015713993642,
          -7,
          -5.098003058442917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9559137362541525,
          -7,
          -2.3479151865016914,
          -3.942528893958499,
          -3.0038911662369103,
          -7,
          -7,
          -7,
          -2.3419288837458097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.330413773349191,
          -7,
          -7,
          -3.0425755124401905,
          -7,
          -3.3694014136966244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9598360759497873,
          -7,
          -3.7006820883952,
          -3.4308809464528913,
          -7,
          -7,
          -2.968015713993642,
          -4.542663625238801,
          -2.4551350183502896,
          -2.114499783493657,
          -3.591138839055037,
          -3.8375253094496014,
          -3.699924402742477,
          -7,
          -7,
          -7,
          -2.552668216112193,
          -7,
          -7,
          -7,
          -7,
          -3.5080870228492893,
          -7,
          -7,
          -7,
          -1.5502283530550942,
          -2.2174839442139063,
          -3.9120306483690306,
          -3.6664243725187595,
          -7,
          -3.298307137328508,
          -4.05595140532915,
          -7,
          -7,
          -7,
          -4.275656809537014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5888317255942073,
          -4.604604005662973,
          -4.261928672990642,
          -7,
          -3.5913479701696387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.447158031342219,
          -7,
          -7,
          -7,
          -7,
          -1.9071425310031405,
          -7,
          -7,
          -7,
          -3.988514365833666,
          -7,
          -7,
          -7,
          -3.476759191770886,
          -7,
          -4.025694917138129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6407000199084365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0810627264918615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5780658838360915,
          -7,
          -3.4165573011914794,
          -7,
          -7,
          -2.951823035315912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.435730637625475,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -7,
          -2.9827233876685453,
          -7,
          -7,
          -7,
          -7,
          -4.149957708891059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9631264410819047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.43230486406257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1986570869544226,
          -7,
          -2.1893967258352185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.196489375975232,
          -7,
          -7,
          -7,
          -7,
          -2.923983747103962,
          -3.262213705476417,
          -3.3326404103874627,
          -2.977494969073036,
          -7,
          -7,
          -3.2802140293383997,
          -2.780877124642547,
          -7,
          -7,
          -2.821005006647399,
          -3.244277120801843,
          -7,
          -7,
          -3.2805783703680764,
          -7,
          -2.9845273133437926,
          -3.196533112615811,
          -3.2711443179490782,
          -7,
          -7,
          -2.9813655090785445,
          -2.836745965649491,
          -7,
          -7,
          -7,
          -2.7207104386092404,
          -7,
          -2.6489789179974625,
          -7,
          -3.002166061756508,
          -7,
          -7,
          -7,
          -3.2591158441850663,
          -7,
          -7,
          -7,
          -7,
          -2.8209235878813175,
          -7,
          -7,
          -3.144262773761991,
          -7,
          -7,
          -7,
          -7,
          -3.338257230246256,
          -7,
          -7,
          -7,
          -7,
          -4.088702960351474,
          -7,
          -7,
          -7,
          -7,
          -3.0778522036135776,
          -3.0402066275747113,
          -7,
          -7,
          -3.780869132399668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3336487565147013,
          -7,
          -2.4683473304121573,
          -7,
          -7,
          -7,
          -3.1405583202415124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0517311960598494,
          -7,
          -7,
          -3.278296208091274,
          -7,
          -7,
          -3.2528530309798933,
          -7,
          -7,
          -3.3001605369513523,
          -2.327040530515065,
          -7,
          -7,
          -7,
          -2.840942080243099,
          -7,
          -7,
          -3.386320573894046,
          -4.149403879508583,
          -3.2545480771089736,
          -7,
          -7,
          -3.3869175103792855,
          -7,
          -7,
          -7,
          -3.0259199985020175,
          -7,
          -3.270911639410481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.801472313521471,
          -1.8838220767244906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2460059040760294,
          -7,
          -3.6131015169669127,
          -3.1051694279993316,
          -7,
          -7,
          -7,
          -2.285752937156083,
          -7,
          -7,
          -7,
          -3.3085644135612386,
          -7,
          -7,
          -3.085825533520743,
          -2.7259116322950483,
          -2.5325420619597168,
          -3.2893659515200318,
          -2.2934630044590665,
          -7,
          -7,
          -2.4154026577248313,
          -7,
          -3.243781916093795,
          -7,
          -2.957607287060095,
          -2.401400540781544,
          -7,
          -7,
          -2.6646419755561257,
          -7,
          -3.4649364291217326,
          -7,
          -7,
          -2.6876640576421096,
          -7,
          -3.3334472744967503,
          -3.325515663363148,
          -3.3412366232386925,
          -7,
          -7,
          -3.3066394410242617,
          -3.2823955047425257,
          -7,
          -2.9731278535996988,
          -7,
          -3.4687902620996107,
          -7,
          -7,
          -7,
          -3.9921999297955852,
          -3.2422929049829308,
          -2.9639058261187046,
          -7,
          -3.374565060722765,
          -7,
          -3.2591158441850663,
          -7,
          -7,
          -2.450029045237934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3473300153169503,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -7,
          -2.946206553842783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8364215020692862,
          -7,
          -7,
          -2.7669083343103593,
          -7,
          -7,
          -7,
          -2.582744965691277,
          -3.273039874302055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4912215762392833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808616035426992,
          -2.189468718289905,
          -3.615147495697204,
          -7,
          -7,
          -7,
          -2.303350363509127,
          -7,
          -3.402433346219312,
          -2.629700778786374,
          -7,
          -7,
          -7,
          -3.241795431295199,
          -2.9724342769573653,
          -2.5749952958303357,
          -2.3575113516164294,
          -7,
          -7,
          -2.9858753573083936,
          -7,
          -7,
          -3.279210512601395,
          -7,
          -2.321494866739587,
          -7,
          -2.836745965649491,
          -7,
          -4.322405381067654,
          -7,
          -7,
          -3.559068334034537,
          -7,
          -7,
          -3.0159881053841304,
          -3.2615007731982804,
          -3.153204900084284,
          -3.3265406685165617,
          -2.4788870081411605,
          -2.6961378757818526,
          -2.6989700043360187,
          -7,
          -4.149143814728642,
          -3.1094097905463656,
          -7,
          -7,
          -7,
          -7,
          -3.0499928569201424,
          -7,
          -3.2571984261393445,
          -3.3085644135612386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2477278329097232,
          -7,
          -7,
          -4.0218092770223395,
          -7,
          -4.356347791752488,
          -7,
          -2.3487914675605843,
          -2.846586880971535,
          -2.6331316626337404,
          -7,
          -7,
          -3.2678754193188975,
          -2.788521887222473,
          -2.346455924429052,
          -2.506843136339351,
          -7,
          -7,
          -7,
          -3.3461573022320086,
          -2.4055658794489867,
          -2.4363898479258244,
          -7,
          -1.7811706911574223,
          -3.2605483726369795,
          -2.9905608299940196,
          -7,
          -7,
          -4.633993331603568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.419972261273999,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.504708673848843,
          -3.952695599586917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.416315913177959,
          -7,
          -3.695043658821294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.583522632657682,
          -4.589122650205851,
          -3.5573868820595074,
          -3.3661738280168447,
          -7,
          -4.107209969647869,
          -3.399327532158679,
          -3.5616737023990064,
          -2.17666993266815,
          -2.720572720364261,
          -3.6461095219788477,
          -2.5602198558336093,
          -2.3840811520853626,
          -7,
          -3.5368108659915416,
          -7,
          -2.5861370252307934,
          -7,
          -3.926188049107206,
          -7,
          -7,
          -3.2361952477037432,
          -3.9453656171122073,
          -4.5748787621653415,
          -1.5502283530550942,
          -7,
          -2.803229438326343,
          -3.212074865862435,
          -7,
          -4.949726576410017,
          -3.744762237065578,
          -4.112403892717874,
          -3.266231696689893,
          -7,
          -3.220817628174335,
          -3.8333596367430127,
          -7,
          -3.076786033508079,
          -3.699143687394484,
          -4.201233208680875,
          -7,
          -2.9923325590474645,
          -3.240632438491053,
          -3.3505330445844037,
          -7,
          -3.7453968780059266,
          -7,
          -2.7584071921878865,
          -3.7432745235119333,
          -7,
          -7,
          -2.7912226592314022,
          -7,
          -7,
          -7,
          -7,
          -2.1963604423536847,
          -7,
          -7,
          -7,
          -4.053769689599309,
          -7,
          -2.5160944657544744,
          -7,
          -7,
          -3.3100557377508917,
          -3.529499453738052,
          -3.3988077302032647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.355058619168376,
          -7,
          -7,
          -7,
          -2.620552444729435,
          -7,
          -7,
          -7,
          -7,
          -3.0161973535124393,
          -7,
          -7,
          -2.961104552884867,
          -3.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -2.9189036418889307,
          -3.2757719001649312,
          -7,
          -7,
          -7,
          -7,
          -3.2762319579218335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0232524596337114,
          -3.2170284253606174,
          -7,
          -7,
          -7,
          -7,
          -3.997211582832505,
          -1.7795964912578246,
          -7,
          -7,
          -7,
          -7,
          -3.52022143588196,
          -7,
          -7,
          -3.7426465899387362,
          -3.3688445068258215,
          -7,
          -3.2300655512060468,
          -7,
          -2.8513602838168097,
          -2.915575698540003,
          -7,
          -7,
          -7,
          -3.499687082618404,
          -7,
          -7,
          -4.304447440866175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.138912913629216,
          -7,
          -7,
          -7,
          -3.265525335219074,
          -7,
          -2.8411508254919644,
          -3.404833716619938,
          -7,
          -3.252124552505644,
          -7,
          -3.2397998184470986,
          -3.417554724363455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.753008215020888,
          -2.5696079675468244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7102584385195545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.135747334120506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9382694834629115,
          -7,
          -2.6104472214421213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3369597851207042,
          -7,
          -7,
          -7,
          -2.929418925714293,
          -7,
          -7,
          -2.6874174750166397,
          -7,
          -7,
          -4.099778444168306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7139463190564657,
          -7,
          -7,
          -7,
          -7,
          -2.2380461031287955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.859938471600862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7073998311332486,
          -7,
          -7,
          -3.0965624383741357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0303973008567615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.218259716818564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3372595397502756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7607993116307177,
          -7,
          -7,
          -7,
          -2.734799829588847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.379124146070392,
          -3.418135498425232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0038911662369103,
          -7,
          -7,
          -7,
          -3.1213774364894507,
          -7,
          -2.0086001717619175,
          -7,
          -7,
          -7,
          -7,
          -2.651278013998144,
          -2.7730546933642626,
          -7,
          -2.6085260335771943,
          -7,
          -7,
          -7,
          -3.49789674291322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2317243833285163,
          -7,
          -7,
          -7,
          -7,
          -3.629437401956792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7283537820212285,
          -7,
          -2.6159500516564007,
          -7,
          -2.1351326513767748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.835056101720116,
          -7,
          -7,
          -5.149554714149009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3364597338485296,
          -7,
          -7,
          -7,
          -7,
          -3.9876662649262746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1397741716810974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.859738566197147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.429752280002408,
          -7,
          -2.718501688867274,
          -7,
          -3.8289712226057087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.506505032404872,
          -7,
          -4.496053952877427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.955974620155648,
          -7,
          -2.762678563727436,
          -4.545133859040489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9558480361547432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4313637641589874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6181631956587115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.652101229519464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.222274149796563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.048130927028968,
          -7,
          -7,
          -2.101899752619728,
          -4.270480855202127,
          -3.400300487121445,
          -3.735119634081872,
          -7,
          -7,
          -7,
          -4.06596541697663,
          -2.6673092419416196,
          -1.8987251815894937,
          -3.7687120803776635,
          -7,
          -3.225739915853267,
          -7,
          -7,
          -7,
          -2.59659709562646,
          -7,
          -7,
          -7,
          -7,
          -3.149450058942079,
          -4.134741587601687,
          -7,
          -2.2174839442139063,
          -2.803229438326343,
          -7,
          -3.3807006116325176,
          -7,
          -4.9421470050253875,
          -3.6036855496146996,
          -4.057399817266062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4577305482459986,
          -7,
          -7,
          -4.605013982101039,
          -3.416996924659806,
          -7,
          -3.855074740604978,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.072543985643648,
          -7,
          -7,
          -7,
          -7,
          -3.376211850282673,
          -3.3878790219565733,
          -7,
          -7,
          -7,
          -3.780677274433368,
          -7,
          -4.151042805862897,
          -2.682145076373832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0437551269686796,
          -7,
          -7,
          -7,
          -7,
          -2.815577748324267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.340027468282661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.417803722639881,
          -7,
          -7,
          -7,
          -7,
          -3.399846712712922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.332054495108195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.756636108245848,
          -4.002003981335927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.419707981354444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2422929049829308,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6564815157904986,
          -3.0023934410715984,
          -7,
          -7,
          -7,
          -2.4800069429571505,
          -7,
          -7,
          -2.9995654882259823,
          -7,
          -7,
          -7,
          -7,
          -4.151124590050682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -3.4602963267574753,
          -7,
          -7,
          -7,
          -2.4082399653118496,
          -7,
          -3.0224971049803444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9982593384236988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.309747240843205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.609615749953064,
          -7,
          -7,
          -2.975229752334916,
          -7,
          -7,
          -7,
          -3.4185839684998247,
          -3.132676818696156,
          -7,
          -4.6140319822010385,
          -7,
          -4.13939626869514,
          -7,
          -2.634594213071113,
          -7,
          -7,
          -4.0156426254063415,
          -2.3105572539897095,
          -7,
          -7,
          -7,
          -7,
          -4.610926193408706,
          -3.708474015096181,
          -2.64759901722542,
          -7,
          -7,
          -4.610894278373339,
          -4.00944027202683,
          -4.6131121016412875,
          -7,
          -4.310544628636955,
          -7,
          -4.624601767442247,
          -7,
          -2.633720878999598,
          -7,
          -7,
          -4.612381153235321,
          -7,
          -4.309438524641924,
          -4.610479169346105,
          -7,
          -7,
          -4.610489818125192,
          -4.6229907048100864,
          -2.581221817873486,
          -7,
          -7,
          -3.2585435894214507,
          -7,
          -4.610212864974371,
          -4.610351363626693,
          -4.610915555324175,
          -7,
          -4.017596721365986,
          -7,
          -7,
          -7,
          -1.976211511558734,
          -7,
          -7,
          -7,
          -7,
          -4.1518395454985555,
          -4.313455921670493,
          -7,
          -7,
          -3.0397343447526954,
          -7,
          -3.9125090106953726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.291442854793911,
          -3.912795775382462,
          -3.469895618975018,
          -4.611638352122505,
          -4.613492978211986,
          -7,
          -2.2665337307243667,
          -4.6135035533500375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.931193348542249,
          -7,
          -7,
          -7,
          -3.500932780958173,
          -7,
          -7,
          -7,
          -7,
          -3.770104761201152,
          -4.61020220940222,
          -7,
          -4.136339996533044,
          -4.612391755480837,
          -2.627953160620053,
          -7,
          -4.611659592651788,
          -7,
          -4.13616016663698,
          -3.4138757862674542,
          -4.610180897473572,
          -3.2990018498562894,
          -2.788981849269942,
          -7,
          -4.1361813269606005,
          -4.3110647990615965,
          -3.138572689317992,
          -4.610511114900085,
          -4.015872975925313,
          -3.7164415928308245,
          -7,
          -7,
          -4.133847488421549,
          -4.611861325884996,
          -7,
          -7,
          -3.5501147400413813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.274933652403,
          -2.9261708904385917,
          -3.254779622985036,
          -4.314499227973151,
          -7,
          -4.067517201903676,
          -7,
          -7,
          -4.312928045193233,
          -3.5547717329908126,
          -3.538814522875754,
          -7,
          -7,
          -7,
          -2.194216614222509,
          -7,
          -7,
          -7,
          -4.311753861055754,
          -7,
          -7,
          -4.014940349792936,
          -4.011728993455529,
          -3.767791729273228,
          -4.6118719408282765,
          -3.4679567540619156,
          -3.9121369966522233,
          -7,
          -2.309159412716156,
          -4.6100636631681216,
          -7,
          -7,
          -7,
          -4.610053003934577,
          -4.61056435226876,
          -7,
          -3.1334667946657992,
          -7,
          -3.502372488311689,
          -7,
          -4.015349275203567,
          -1.999376963319447,
          -7,
          -3.710836360863743,
          -4.011538726678542,
          -4.137322456100344,
          -3.7125023868498763,
          -3.539494292837515,
          -4.612709702550948,
          -7,
          -4.612836816232258,
          -7,
          -4.6107665947732706,
          -4.622317660833844,
          -7,
          -7,
          -7,
          -3.4839348074213596,
          -7,
          -3.3508394641028696,
          -7,
          -4.13916516599753,
          -7,
          -7,
          -7,
          -7,
          -4.612275116542189,
          -7,
          -7,
          -7,
          -3.5147622417727225,
          -4.009843792773555,
          -7,
          -7,
          -4.609882420608204,
          -7,
          -4.609679765845366,
          -7,
          -7,
          -7,
          -4.313761796292436,
          -3.3855957604117104,
          -3.2791509426840255,
          -2.774831384045746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.609807769328702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.609871756925298,
          -7,
          -7,
          -4.009472142562814,
          -2.4212207821763405,
          -7,
          -7,
          -7,
          -7,
          -4.30953435660478,
          -4.3096727432292665,
          -7,
          -7,
          -4.619030687481902,
          -7,
          -4.030913288350967,
          -3.0669054262816697,
          -7,
          -7,
          -7,
          -3.4515715370380673,
          -7,
          -3.878837635606425,
          -7,
          -2.4561351579216315,
          -7,
          -7,
          -7,
          -3.3272226637602036,
          -4.139742692322187,
          -4.617974836042385,
          -3.719631625379967,
          -4.321142565229448,
          -7,
          -7,
          -4.609722437865238,
          -4.133985746268579,
          -3.573631005995515,
          -4.135969677314899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.011389172854374,
          -3.838156184752148,
          -4.31206093637058,
          -7,
          -1.8098832547271022,
          -7,
          -7,
          -3.3219654120767506,
          -7,
          -7,
          -7,
          -7,
          -3.2058391377710587,
          -4.61371500205274,
          -4.3190227334304145,
          -7,
          -3.6633763131685053,
          -7,
          -2.7742464484398566,
          -3.576885578951076,
          -7,
          -7,
          -4.308671106715418,
          -3.7750380149595006,
          -3.6606230820578123,
          -7,
          -7,
          -3.9137502924428413,
          -7,
          -7,
          -7,
          -7,
          -4.610915555324175,
          -7,
          -4.312399526311494,
          -7,
          -3.2468150066618233,
          -3.9343772358689417,
          -2.469878149039962,
          -4.6120311338515405,
          -2.617734035364018,
          -2.7698156462193806,
          -3.8403675129212234,
          -7,
          -4.1365831773426445,
          -7,
          -3.0851541116211387,
          -3.38009058759723,
          -4.618581480328452,
          -4.308884414422017,
          -7,
          -7,
          -3.5353363234811113,
          -4.610234175334389,
          -4.611627731468287,
          -7,
          -3.716368582002373,
          -4.133379211923518,
          -3.251648357922843,
          -7,
          -7,
          -2.7362424132931857,
          -2.949764859826652,
          -3.926224815400152,
          -4.312843525382345,
          -3.3092945756319394,
          -3.1372622025975456,
          -3.453719571202035,
          -2.9958943380318903,
          -2.6395971516419463,
          -7,
          -3.096452173674266,
          -3.360738161692183,
          -3.0755570988671614,
          -3.052417893995362,
          -1.7994092050146753,
          -3.628074956706411,
          -3.6083923016340576,
          -2.070410425073812,
          -3.4010902195951336,
          -3.4035976824789262,
          -3.9077337369976552,
          -3.1803474772636906,
          -3.026642198989762,
          -2.766786662945696,
          -3.873561394487116,
          -3.275914728871076,
          -2.972134435189285,
          -2.7017330170879843,
          -4.623373356812658,
          -2.6313097304603423,
          -2.7874452382539627,
          -3.0687339932285886,
          -3.0364933078027514,
          -2.886216462781363,
          -2.996614123163156,
          -3.079851773445166,
          -3.2821687783046416,
          -2.867751632633979,
          -3.2561094575340532,
          -3.0617154169664507,
          -3.113943352306837,
          -2.411929234954811,
          -2.508180313730055,
          -2.401114801918744,
          -7,
          -3.0698782319505344,
          -4.140623253015846,
          -2.388313690603355,
          -2.2432833168740873,
          -3.1468719030857386,
          -2.03252734362003,
          -2.151283895176477,
          -2.369321624595056,
          -4.320789977698806,
          -2.68185985669508,
          -3.6680751513945196,
          -4.134591434710877,
          -3.7943286798459863,
          -2.4173384968683047,
          -3.5166167233974357,
          -3.7698307982522015,
          -2.143608523452319,
          -2.238647399728776,
          -2.7731882494590696,
          -3.9120306483690306,
          -3.212074865862435,
          -3.3807006116325176,
          -7,
          -4.177834584296637,
          -3.4635876137370167,
          -2.7331874752103325,
          -2.3593969628545057,
          -3.832540844950058,
          -2.9805835268278567,
          -2.0355258626011894,
          -2.463407497136473,
          -2.890058593275497,
          -2.9615276325601068,
          -3.1654520728319286,
          -2.5245036399592644,
          -3.936252282852836,
          -4.134920489925607,
          -2.124140950466047,
          -0.5737700405534676,
          -7,
          -2.1852503345221805,
          -3.9213118324682164,
          -3.2653613770351475,
          -3.0348338037447746,
          -2.790465388800819,
          -4.13484620892477,
          -4.610936831232662,
          -4.6096584282630335,
          -7,
          -3.8735198880329156,
          -1.8277856781648085,
          -4.310406519601563,
          -3.4734869700645685,
          -4.312156191475623,
          -3.4015424438972985,
          -2.4148254260236968,
          -3.2966129631576377,
          -3.1802958284928002,
          -4.610543058104407,
          -2.688372980123584,
          -3.8346220136585734,
          -2.0198368367089063,
          -3.025893771247669,
          -3.837840861655523,
          -3.7831580266967495,
          -2.0799293848750184,
          -2.9707703212585392,
          -3.594171479114912,
          -7,
          -4.314162271709985,
          -2.4597542491145123,
          -4.61740926653153,
          -3.9201024462463967,
          -3.5350830413110805,
          -3.532680079837371,
          -7,
          -2.8606420214726844,
          -4.312050351180238,
          -7,
          -3.172192885318626,
          -1.5121870816038474,
          -2.5141733450977126,
          -7,
          -2.7216274458796317,
          -3.334305574736688,
          -3.776794548303097,
          -4.310714548718119,
          -7,
          -3.4344517990487256,
          -2.9806294763724175,
          -7,
          -3.711279852556345,
          -3.1850534366695835,
          -4.008078279150566,
          -2.8577918243237983,
          -3.615550274725666,
          -3.673236003278857,
          -4.609679765845366,
          -3.5760270615789516,
          -3.766008960973985,
          -7,
          -3.1582572723535107,
          -7,
          -4.309768523528787,
          -3.497057300398213,
          -4.043519460245756,
          -3.2560049909796183,
          -7,
          -4.138407968917471,
          -3.256352072908259,
          -3.232922028504549,
          -1.7682696892308192,
          -2.922905436938399,
          -3.3110066962547022,
          -3.3114889665785556,
          -7,
          -3.4102620770678205,
          -3.911934912643038,
          -2.977266212427293,
          -4.315046224922345,
          -3.3106083564585234,
          -3.6588801766183723,
          -3.722901161709392,
          -4.132547842465581,
          -4.3094811192361036,
          -3.3257110890434034,
          -3.501806856884548,
          -4.314099063295284,
          -2.3099848383169075,
          -3.7724684030532805,
          -3.489476331740672,
          -3.7141934973413555,
          -3.047844496253999,
          -3.574947145214187,
          -3.3467543414336545,
          -3.1468409340350676,
          -7,
          -7,
          -2.992752284666042,
          -3.9343974407809883,
          -4.134070806148772,
          -3.848650886818957,
          -2.6471972978840603,
          -2.987104798161707,
          -2.5561792042169356,
          -2.2713047640541584,
          -3.0625443813464646,
          -4.008781090107339,
          -4.315561034645111,
          -4.309715314859149,
          -7,
          -3.181420092560748,
          -2.926919638018857,
          -4.160218347068163,
          -7,
          -3.3553557233947067,
          -7,
          -2.175705047841342,
          -4.008355279859826,
          -7,
          -4.133719826715639,
          -4.611287733324417,
          -4.614222059298785,
          -4.31045964365906,
          -4.612571954065176,
          -3.8558622560965636,
          -3.7845765405936316,
          -4.138134211870816,
          -3.610798519192768,
          -3.8386077489795007,
          -7,
          -7,
          -4.6097011023793995,
          -3.8341980945620744,
          -3.912986846699656,
          -4.612582551653833,
          -2.292304660484183,
          -3.7377689332546584,
          -3.358315640082196,
          -4.134081437462512,
          -7,
          -3.1251354817237127,
          -7,
          -7,
          -2.284312753102662,
          -4.60982909957511,
          -7,
          -3.622970011310206,
          -4.035249578686349,
          -4.617650247299917,
          -7,
          -7,
          -3.40849436021236,
          -7,
          -3.9452814338116067,
          -7,
          -4.612540159747515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.419329537729261,
          -7,
          -7,
          -7,
          -7,
          -3.937216890862705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.788005112766247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0887587486171286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.461148228743249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6997799316716846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.572499854279727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.199727758807056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5817221599490985,
          -4.22716656673143,
          -7,
          -7,
          -7,
          -3.2780821008003054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.285235728480749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6577727077355213,
          -3.840482487213442,
          -7,
          -7,
          -7,
          -3.2439883200147483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.762213266928569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.061490176624815,
          -7,
          -7,
          -3.805976350717563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.879841055986563,
          -2.560351291091242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7318304202881625,
          -7,
          -3.8296896408989713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.252331078830706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7479165080965102,
          -7,
          -7,
          -3.2220224326748212,
          -3.3544926005894364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.882249899076638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.645978700535912,
          -7,
          -3.5476106349355865,
          -7,
          -7,
          -3.147665284586758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.661036127893079,
          -4.001488523881566,
          -7,
          -7,
          -4.493193071453686,
          -7,
          -7,
          -7,
          -4.465583591880342,
          -7,
          -7,
          -4.0199570515283405,
          -7,
          -4.530077976203537,
          -4.1623403316284255,
          -7,
          -3.613645537405791,
          -7,
          -7,
          -3.697945792788684,
          -7,
          -4.417086220770336,
          -7,
          -4.5136170737878745,
          -7,
          -7,
          -4.667490309948332,
          -4.511923447850146,
          -7,
          -4.438755883731937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4590304248104546,
          -3.8275954092119693,
          -3.43608309864198,
          -4.016887157902775,
          -3.9107310980433807,
          -3.988603543345664,
          -7,
          -3.191674531959229,
          -7,
          -4.292588312465555,
          -3.0610333972425505,
          -7,
          -3.0909088846213786,
          -4.25779852915303,
          -7,
          -2.12346273211876,
          -7,
          -7,
          -7,
          -7,
          -3.8159760009719856,
          -3.8153120435243593,
          -7,
          -3.2252931246365586,
          -3.493636646629202,
          -3.5511690398945315,
          -3.6664243725187595,
          -7,
          -7,
          -4.177834584296637,
          -7,
          -2.5540590113117894,
          -7,
          -3.4180249346563296,
          -7,
          -3.4689378056654614,
          -3.8577846510602454,
          -2.9175055095525466,
          -7,
          -7,
          -7,
          -4.270911639410481,
          -7,
          -7,
          -4.3480905842171556,
          -3.7085165023886946,
          -7,
          -3.6746315375170773,
          -7,
          -7,
          -3.618100418196633,
          -3.686397907850216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.370266296307733,
          -7,
          -7,
          -7,
          -4.014604533436051,
          -3.681964458994683,
          -3.391055882526162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.743627337570885,
          -7,
          -7,
          -2.6287768084463567,
          -7,
          -4.7741810787947205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8403570592033565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.633097968969741,
          -3.681060243631812,
          -7,
          -7,
          -3.9042285163400785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.774148380271373,
          -7,
          -3.8334658601706924,
          -7,
          -7,
          -7,
          -7,
          -3.3728659947618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721398375521505,
          -7,
          -3.719331286983727,
          -3.984707294482673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8929104579899185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7892280572673354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.67015304519218,
          -7,
          -7,
          -3.8086835091289695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.951628893836638,
          -7,
          -2.2612323588004264,
          -7,
          -7,
          -7,
          -3.659250468772661,
          -7,
          -3.8901228164155626,
          -7,
          -7,
          -3.06310808299862,
          -3.856547644856748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464578960565791,
          -3.2361608677864693,
          -3.547040829274825,
          -7,
          -7,
          -3.0844714150301855,
          -3.370019362693744,
          -4.6407000199084365,
          -7,
          -7,
          -7,
          -7,
          -3.7230130335521174,
          -4.181162087386154,
          -7,
          -7,
          -2.1256628615011692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.465110092336941,
          -3.077752331902897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0662955011492445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.339625323047164,
          -4.941680347291402,
          -7,
          -3.2743463860506234,
          -7,
          -7,
          -4.101329660136574,
          -7,
          -7,
          -7,
          -7,
          -4.6424348407896066,
          -7,
          -7,
          -7,
          -7,
          -3.2913022357598494,
          -7,
          -7,
          -4.941620737855168,
          -7,
          -3.908923478766375,
          -7,
          -7,
          -4.040829711665509,
          -2.5205572453155787,
          -7,
          -7,
          -7,
          -4.941576025408112,
          -7,
          -7,
          -7,
          -7,
          -4.943360942394186,
          -4.34022592125719,
          -4.166198151877356,
          -4.942216464358906,
          -4.6420438720485455,
          -7,
          -2.3055885681982082,
          -4.6420488232200245,
          -4.941640608576343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4192071574778993,
          -4.941595898175119,
          -7,
          -7,
          -4.341760864759556,
          -7,
          -7,
          -7,
          -7,
          -3.943855453545965,
          -7,
          -7,
          -7,
          -4.24355888962248,
          -3.8180586558425884,
          -7,
          -7,
          -7,
          -7,
          -4.945345468339527,
          -7,
          -3.4121916552415694,
          -2.136994597878688,
          -7,
          -7,
          -7,
          -3.11735109929666,
          -7,
          -3.5647597371096733,
          -3.9459016787990917,
          -7,
          -4.640759614348585,
          -4.941923667610981,
          -7,
          -7,
          -7,
          -3.5065275808580276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7592805835202423,
          -4.174965460984311,
          -3.7772769564795263,
          -4.944048160376151,
          -4.163712841181165,
          -3.367849580426129,
          -7,
          -7,
          -7,
          -4.475748647544665,
          -4.468165105160079,
          -7,
          -7,
          -7,
          -3.464200143469367,
          -7,
          -7,
          -4.94179954162426,
          -4.94276183005964,
          -7,
          -7,
          -7,
          -4.642212180220815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6480066689858415,
          -7,
          -7,
          -7,
          -7,
          -4.941476647930497,
          -4.941715115684539,
          -7,
          -4.471580166756362,
          -7,
          -3.6524397475894204,
          -7,
          -3.7986950293949935,
          -2.4215353775078543,
          -7,
          -4.943355994438028,
          -4.943162980164098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.640963167006545,
          -4.6407695459602785,
          -3.6683074285531756,
          -7,
          -7,
          -7,
          -2.6725413491836623,
          -7,
          -4.047712835972715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9901167660679047,
          -3.91484299810463,
          -2.472436699106128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9413921591914685,
          -7,
          -7,
          -7,
          -3.8100083659994484,
          -7,
          -7,
          -7,
          -4.94150646356156,
          -4.941725048999923,
          -4.941789610012567,
          -7,
          -7,
          -4.468544244712472,
          -7,
          -3.2275617228280855,
          -4.248992783468489,
          -7,
          -7,
          -7,
          -4.10475529215573,
          -7,
          -4.060881904438374,
          -4.94276183005964,
          -3.450571665931902,
          -7,
          -4.941347423203868,
          -7,
          -4.057318947932813,
          -3.990363524302897,
          -3.831126207699967,
          -7,
          -4.345089336334675,
          -7,
          -7,
          -7,
          -7,
          -4.943899931943058,
          -4.942915400414438,
          -7,
          -4.942375186846578,
          -7,
          -7,
          -7,
          -7,
          -4.640655318711145,
          -4.175308824585785,
          -7,
          -4.942905494288165,
          -7,
          -3.19694681550591,
          -4.641062426376377,
          -7,
          -3.3339905934841787,
          -7,
          -7,
          -4.641929979522693,
          -7,
          -4.9467714818461905,
          -4.943187730378209,
          -7,
          -7,
          -7,
          -4.3400721281091075,
          -2.461068669666279,
          -4.24641979006955,
          -7,
          -7,
          -7,
          -3.9047745419933935,
          -4.642766146265666,
          -7,
          -7,
          -4.641721924765832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8637737766125007,
          -7,
          -2.7560471605673933,
          -4.651491231261623,
          -2.246955636469541,
          -4.641360068442172,
          -3.5478731179153007,
          -2.8504823840745614,
          -4.644453361137774,
          -7,
          -7,
          -7,
          -4.099725025058975,
          -7,
          -4.945473509077624,
          -7,
          -7,
          -7,
          -4.466531517353593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.048844640389108,
          -7,
          -7,
          -3.8789169817717633,
          -2.939704886918824,
          -4.069873563387445,
          -4.642231976894675,
          -3.3752367289481646,
          -4.1053690465448724,
          -4.119397299540836,
          -3.0534393320846642,
          -3.7185570447378358,
          -7,
          -3.9116191898049486,
          -4.250858954599295,
          -3.7240332524737676,
          -3.5055598235459433,
          -4.349898891403912,
          -4.247658268207367,
          -3.0557604646877348,
          -2.9293694776072994,
          -4.1418527478442595,
          -3.7445208726381987,
          -3.3060095854337113,
          -3.2682217466752914,
          -4.27681552966027,
          -3.9663852215103717,
          -4.39346551909628,
          -3.892193100130382,
          -3.555245639000004,
          -3.7194518238931606,
          -7,
          -3.607499175819488,
          -3.6359651915242375,
          -3.00357517805747,
          -3.638297858979117,
          -3.778853217960016,
          -4.4931000578465925,
          -3.763423833634184,
          -4.038712865119077,
          -3.0893413967336993,
          -4.047769253139,
          -2.311967937219121,
          -4.46887879425401,
          -2.8870263877196316,
          -3.121389599386456,
          -4.188375307998576,
          -4.642731544081733,
          -2.9921955081228835,
          -3.6226826639407017,
          -2.5193772952596425,
          -3.668325334908289,
          -4.103158395042915,
          -3.351374593497417,
          -2.752186612410317,
          -4.186565539383188,
          -3.7427447644270044,
          -4.011838183029051,
          -4.248306833423288,
          -7,
          -4.353387219249733,
          -3.4663379282749043,
          -3.6086475723466056,
          -7,
          -2.073179528365288,
          -2.421350030521526,
          -2.854352194733876,
          -7,
          -4.949726576410017,
          -4.9421470050253875,
          -3.4635876137370167,
          -2.5540590113117894,
          -7,
          -3.6586552022495993,
          -3.671353595772017,
          -7,
          -3.706874179820924,
          -3.8417258468257574,
          -2.8845532148030903,
          -7,
          -4.007539160371849,
          -4.480078840065485,
          -3.462154039880011,
          -3.8071773174683865,
          -7,
          -3.3055117346226393,
          -2.9392801385228218,
          -4.64436964836413,
          -3.1693604467873184,
          -4.946314683884897,
          -7,
          -4.260767609784481,
          -3.842435380053072,
          -4.942390064106153,
          -7,
          -7,
          -7,
          -4.217334766955894,
          -4.509336958017644,
          -7,
          -7,
          -7,
          -4.474857031317561,
          -2.8298703143525383,
          -7,
          -7,
          -7,
          -3.9278973940429562,
          -7,
          -3.0745883201315842,
          -4.945084345254798,
          -4.944304969875082,
          -7,
          -4.3650853271063745,
          -4.24944785211867,
          -4.953653399765918,
          -7,
          -7,
          -7,
          -4.9449216798358355,
          -7,
          -7,
          -7,
          -7,
          -2.6166381388054543,
          -4.942900541140294,
          -7,
          -3.4329618370306085,
          -3.1526073658091818,
          -3.445344690578751,
          -7,
          -4.95172112186057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.254146707031936,
          -7,
          -7,
          -4.959580346517151,
          -7,
          -4.964646126434858,
          -4.944137073158098,
          -4.949765582122831,
          -7,
          -7,
          -7,
          -7,
          -3.7805773148311355,
          -7,
          -7,
          -7,
          -4.657390532388537,
          -7,
          -4.9445122821281515,
          -4.9440580404731085,
          -4.962889987391791,
          -7,
          -3.09150156431672,
          -7,
          -7,
          -7,
          -7,
          -4.3781570642294785,
          -7,
          -4.186984572160061,
          -7,
          -4.942404940856107,
          -7,
          -7,
          -7,
          -7,
          -4.658698088707615,
          -7,
          -7,
          -4.488611814240041,
          -7,
          -7,
          -7,
          -4.063009488011954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070074826267528,
          -7,
          -7,
          -7,
          -3.7769028718580566,
          -4.946825479950723,
          -4.983301459523824,
          -3.747628471726236,
          -7,
          -4.339784239738522,
          -7,
          -4.6407695459602785,
          -7,
          -4.943009497346199,
          -7,
          -4.653391020371839,
          -7,
          -7,
          -7,
          -3.6075493781848884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.641558383219824,
          -7,
          -7,
          -3.962743321425236,
          -4.111022346378763,
          -3.8082013239727357,
          -7,
          -7,
          -4.173127969938208,
          -7,
          -7,
          -3.7705042733011505,
          -7,
          -7,
          -3.993313738751798,
          -4.954425839520279,
          -4.945035059137207,
          -7,
          -7,
          -4.641781379153336,
          -7,
          -4.9577939887621,
          -7,
          -4.942637943431793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9756968646553625,
          -7,
          -7,
          -7,
          -3.1099158630237933,
          -2.2963360546020466,
          -3.293473048156108,
          -7,
          -7,
          -7,
          -7,
          -3.3668337082390027,
          -7,
          -7,
          -3.18620267890855,
          -3.016824493667488,
          -7,
          -3.5952757118020995,
          -7,
          -3.302114376956201,
          -3.5979144712025284,
          -3.605951157564873,
          -4.299757822843316,
          -7,
          -7,
          -7,
          -3.604442066260723,
          -7,
          -7,
          -7,
          -7,
          -3.721645766289746,
          -7,
          -3.3249166245928636,
          -7,
          -7,
          -7,
          -7,
          -3.2921452678141216,
          -7,
          -3.5911759503117913,
          -7,
          -7,
          -3.7085908451503435,
          -2.4764718236140304,
          -7,
          -3.5971464878336956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3305152321703284,
          -3.680969718465897,
          -7,
          -7,
          -7,
          -4.157456768134225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.642167634404945,
          -3.191343513169289,
          -7,
          -2.825209673964737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.026737494238748,
          -3.3061032087275857,
          -3.34908316877959,
          -2.9053640687668922,
          -3.146128035678238,
          -7,
          -3.0324765479535576,
          -3.623766000133931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.287577809078705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.939619078956698,
          -3.5848963441374497,
          -7,
          -7,
          -3.590284403718162,
          -2.5249450723982387,
          -7,
          -7,
          -2.719227673841901,
          -7,
          -2.67425817319393,
          -7,
          -7,
          -3.592398846115564,
          -7,
          -3.367355921026019,
          -3.5901728315963144,
          -3.843481943039958,
          -3.2551116255008354,
          -7,
          -7,
          -7,
          -3.723433281297394,
          -7,
          -3.364550995353972,
          -2.8344207036815328,
          -7,
          -7,
          -7,
          -3.6074550232146683,
          -7,
          -7,
          -3.8078055322706246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1474186591597326,
          -3.796851749049887,
          -3.5005109105263372,
          -7,
          -7,
          -3.994361151908001,
          -7,
          -7,
          -3.0257153839013404,
          -2.946943270697825,
          -7,
          -7,
          -7,
          -7,
          -2.810596518420296,
          -7,
          -7,
          -7,
          -7,
          -3.5859117103194342,
          -7,
          -7,
          -7,
          -3.3177500288422337,
          -7,
          -7,
          -3.29939833006815,
          -7,
          -2.8584001216829997,
          -2.742500689706988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.949390006644913,
          -7,
          -3.7346798421638807,
          -7,
          -7,
          -2.470168274303783,
          -3.2919235758838847,
          -7,
          -3.625312450961674,
          -3.332034277027518,
          -7,
          -7,
          -7,
          -3.60422605308447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2979792441593623,
          -7,
          -2.4812917270129815,
          -7,
          -3.1730890999406967,
          -3.5930644316587173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1527468640264606,
          -3.6085260335771943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6510840892430116,
          -3.1406965525464146,
          -3.881768950998944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6103407114521566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6047658847038875,
          -2.8695902233197508,
          -7,
          -7,
          -7,
          -3.589502796263764,
          -2.8151348166368138,
          -2.8165726960261033,
          -3.5859117103194342,
          -3.3055663135153037,
          -7,
          -7,
          -7,
          -2.483125616393796,
          -7,
          -7,
          -7,
          -7,
          -3.628899564420607,
          -3.454133151696751,
          -7,
          -3.590829455194586,
          -7,
          -7,
          -3.590507462008583,
          -2.396705419573164,
          -3.3546845539547285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.644219691034826,
          -2.596996722507111,
          -3.6201360549737576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.116164812300795,
          -2.846405845924663,
          -3.3501510667807066,
          -7,
          -2.6965747917964733,
          -3.264010638853782,
          -7,
          -7,
          -3.9709044981537835,
          -7,
          -3.5871494982543437,
          -7,
          -3.5943925503754266,
          -3.3935752032695876,
          -3.3245910857609267,
          -7,
          -7,
          -3.6638892986226614,
          -7,
          -3.362024457636707,
          -3.192660360488874,
          -7,
          -7,
          -7,
          -3.6856521841155243,
          -3.3372595397502756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.145714224801858,
          -7,
          -3.0210858833099774,
          -3.787672964687493,
          -3.5521718487949716,
          -7,
          -2.726002327603283,
          -3.8889989918461803,
          -3.0687422929329817,
          -7,
          -3.3248994970523134,
          -7,
          -3.3585059114902354,
          -7,
          -3.670987603010034,
          -7,
          -7,
          -7,
          -2.9360107957152097,
          -7,
          -7,
          -7,
          -3.3787611753163733,
          -7,
          -3.080337823247567,
          -7,
          -7,
          -3.2228512943685397,
          -3.5705721253583307,
          -4.346607216606133,
          -7,
          -3.8817126791523484,
          -2.9113859244283526,
          -3.033172354911534,
          -3.678761103362153,
          -2.448986546550028,
          -7,
          -2.483875486804185,
          -3.916106373916004,
          -4.689850279440748,
          -4.525815481690079,
          -2.2335377888069625,
          -4.053424204069344,
          -4.4488144936695235,
          -2.3663372223585455,
          -3.654337005386863,
          -3.800677809374912,
          -3.7657057996869474,
          -3.9376917087542616,
          -3.4419306745501714,
          -3.5089469798218746,
          -3.587205677606586,
          -7,
          -7,
          -3.247250203774978,
          -7,
          -3.0525416492983686,
          -2.4298598985091915,
          -4.620739689951964,
          -4.018804483937159,
          -3.6692703797381965,
          -3.516755660221549,
          -4.019490162997508,
          -7,
          -2.895238327804661,
          -3.545894439602858,
          -3.5045048435188018,
          -2.9814561665221264,
          -3.10623340638907,
          -1.7647529287258061,
          -2.557795833605628,
          -7,
          -3.5710679786102455,
          -7,
          -3.1084748182112922,
          -2.8400164290322825,
          -2.7659995088477323,
          -2.168577571549112,
          -3.5424519473759766,
          -3.336859820916809,
          -7,
          -2.95288926491093,
          -7,
          -3.305136318943639,
          -3.82885315967664,
          -3.977220446635385,
          -2.620879328271566,
          -7,
          -1.871019397759376,
          -2.9382694834629115,
          -3.9524533964230333,
          -3.298307137328508,
          -3.744762237065578,
          -3.6036855496146996,
          -2.7331874752103325,
          -7,
          -3.6586552022495993,
          -7,
          -2.972781203735422,
          -3.59659709562646,
          -2.0353756440844717,
          -3.6612130273513563,
          -2.6351356149470493,
          -3.4119562379304016,
          -2.7598296634141892,
          -7,
          -1.535171570689024,
          -3.4994808812303866,
          -3.6097011023793995,
          -2.44086924401704,
          -2.970292805028701,
          -7,
          -3.014641859190304,
          -2.986861270290045,
          -2.1148967983141596,
          -3.2807490500644776,
          -3.8423595733306746,
          -3.6089536992758626,
          -7,
          -7,
          -7,
          -3.4900990050633047,
          -2.6635709651936,
          -3.6033609243483804,
          -2.9827233876685453,
          -3.620864475265121,
          -2.699042380718472,
          -1.6400823780113092,
          -3.3756636139608855,
          -3.6109793799229974,
          -7,
          -1.7092513181271274,
          -7,
          -2.59357951244709,
          -3.6636067081245205,
          -2.948706308904852,
          -7,
          -3.1184536935598395,
          -2.7683914130944873,
          -3.201328833655651,
          -7,
          -7,
          -2.8230175234460493,
          -7,
          -3.6760531246518715,
          -3.633367445117007,
          -3.3085644135612386,
          -7,
          -1.900068277686376,
          -7,
          -7,
          -3.5195786292939832,
          -2.7199478493318203,
          -3.1154551806365287,
          -7,
          -7,
          -7,
          -3.7005306569785916,
          -7,
          -7,
          -7,
          -2.8926510338773004,
          -7,
          -3.332337449453026,
          -3.57966929355472,
          -3.590395947184013,
          -3.2385980342643643,
          -7,
          -3.0457922327295592,
          -7,
          -7,
          -3.601081727784023,
          -7,
          -3.399812119978673,
          -7,
          -7,
          -7,
          -7,
          -2.468521082957745,
          -7,
          -7,
          -3.4415904106626587,
          -7,
          -2.6237976154612452,
          -3.1521863853540864,
          -7,
          -7,
          -3.6334684555795866,
          -7,
          -7,
          -3.3412861070286284,
          -2.948706308904852,
          -7,
          -3.320457868916649,
          -3.733758835587203,
          -7,
          -7,
          -2.8022604758937684,
          -3.3463529744506384,
          -7,
          -2.6926511147284202,
          -7,
          -3.5033139228158845,
          -7,
          -1.6175169423917877,
          -3.439332693830263,
          -3.4305587695227575,
          -3.721315880605899,
          -7,
          -3.5871494982543437,
          -3.8703648833569106,
          -7,
          -7,
          -3.1371958119405483,
          -1.7276008070360236,
          -3.2182728535714475,
          -1.9988519464694439,
          -2.712573180706935,
          -3.6725134728685087,
          -7,
          -3.6532125137753435,
          -7,
          -7,
          -3.6221103603612193,
          -3.0642707529740063,
          -3.814647069451856,
          -7,
          -7,
          -7,
          -2.4552133746525167,
          -7,
          -7,
          -3.5974757898703773,
          -3.300378064870703,
          -3.329499575762843,
          -7,
          -7,
          -3.4912916406875922,
          -7,
          -7,
          -7,
          -3.6555225962534177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0144155225606033,
          -3.537000087321339,
          -7,
          -7,
          -7,
          -3.7697464671794534,
          -3.5911759503117913,
          -7,
          -2.9066043717249803,
          -7,
          -7,
          -2.9309490311675233,
          -3.814580516010319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8588979572320037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.355045196760146,
          -7,
          -7,
          -7,
          -4.180011119057717,
          -3.8861521819707967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6775157047987577,
          -3.873611196996467,
          -7,
          -7,
          -2.7835613852761036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058198187878253,
          -2.738642308311227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1026394836913,
          -7,
          -3.0676950810079404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0933408536053615,
          -7,
          -7,
          -3.0096633166793794,
          -7,
          -7,
          -7,
          -4.055340099544181,
          -7,
          -4.086181804649749,
          -7,
          -7,
          -7,
          -2.0827650918170697,
          -7,
          -7,
          -7,
          -7,
          -4.117105502761251,
          -7,
          -7,
          -7,
          -3.5378977644842133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7655195430979527,
          -7,
          -4.074377537644804,
          -7,
          -4.064532861131578,
          -7,
          -3.181528196150299,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1211328899984085,
          -7,
          -7,
          -7,
          -4.070296518197765,
          -7,
          -7,
          -7,
          -7,
          -4.0709977969934235,
          -7,
          -7,
          -7,
          -7,
          -3.010396335877664,
          -7,
          -7,
          -7,
          -4.063933524163039,
          -3.4790711958039306,
          -7,
          -3.555275870769318,
          -3.5277403474828533,
          -7,
          -7,
          -3.7585334222372864,
          -3.3251778739655737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.306382132150198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.354135890522645,
          -3.8344207036815328,
          -7,
          -7,
          -7,
          -4.237267189503993,
          -7,
          -7,
          -7,
          -4.1336985461157765,
          -3.7799570512469063,
          -7,
          -7,
          -7,
          -2.4033684007191196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.065803712575022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146694137624876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6281845080734128,
          -7,
          -3.146914779664304,
          -7,
          -7,
          -2.731897397433134,
          -4.053731315887608,
          -7,
          -7,
          -7,
          -4.072433725968388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808885867359812,
          -7,
          -3.8191160105241306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1169396465507555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.06918692515191,
          -7,
          -7,
          -3.232385003072715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4719409903840868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.083824996053337,
          -4.05311687492293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8125791554090465,
          -7,
          -7,
          -4.062092892630169,
          -3.5867407023828584,
          -7,
          -7,
          -7,
          -3.5792117802314993,
          -7,
          -7,
          -4.09684052033139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070665753453728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.359297812956692,
          -4.074779882331932,
          -7,
          -7,
          -2.8657298689917874,
          -7,
          -7,
          -3.4456042032735974,
          -7,
          -7,
          -7,
          -4.054153240345694,
          -7,
          -7,
          -7,
          -7,
          -4.079543007402906,
          -7,
          -3.4813088318164627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.069963937850763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0643831044121965,
          -7,
          -3.3468092004059016,
          -7,
          -2.88464876873764,
          -4.059336177389288,
          -3.4841930324891988,
          -2.770427135219635,
          -7,
          -7,
          -7,
          -7,
          -4.077948998506027,
          -3.43930110762843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0528862352563815,
          -7,
          -7,
          -3.7846885995014214,
          -7,
          -7,
          -7,
          -7,
          -4.419559253195721,
          -3.7464395789558753,
          -3.693155132538336,
          -7,
          -4.27720796549665,
          -7,
          -7,
          -3.7115903288209764,
          -3.4713117180220143,
          -7,
          -7,
          -4.385793891176033,
          -3.9727349628407977,
          -3.8721621021653023,
          -4.0767496406240005,
          -4.477381753267053,
          -3.772015930126536,
          -3.5432762866884153,
          -3.843710218725583,
          -7,
          -3.979070114390943,
          -4.023897959084491,
          -3.3630475945210936,
          -3.743232287238435,
          -3.7570162347313003,
          -4.4036694793552815,
          -4.249084161669954,
          -3.5521038307411423,
          -7,
          -3.6137502334963427,
          -3.442605178964801,
          -3.9925358452657775,
          -3.974373507081423,
          -4.115277591395902,
          -7,
          -3.849910558301496,
          -4.3481490343841624,
          -4.046430125849839,
          -3.044686721472795,
          -4.003955724542691,
          -3.240727493506486,
          -3.3616199233615767,
          -2.567082407772391,
          -3.1371166405827675,
          -7,
          -3.6492179924562715,
          -7,
          -3.66228551572213,
          -2.72652345838624,
          -2.739365930719066,
          -2.178822497153501,
          -3.072249897613515,
          -3.3031420373343563,
          -4.093386660001371,
          -3.913442954859396,
          -7,
          -4.058350092210653,
          -3.849388698815317,
          -2.261204620583918,
          -3.219388027689568,
          -1.9533367854783008,
          -1.9587908314652507,
          -3.2787903348347553,
          -3.3223580508773014,
          -4.05595140532915,
          -4.112403892717874,
          -4.057399817266062,
          -2.3593969628545057,
          -3.4180249346563296,
          -3.671353595772017,
          -2.972781203735422,
          -7,
          -4.054919327123815,
          -3.7151115682046143,
          -2.962739823876104,
          -2.8623932040412763,
          -3.496860487394368,
          -4.189686782592971,
          -7,
          -2.8472641017707647,
          -7,
          -7,
          -3.479532970135968,
          -2.1053713216250967,
          -7,
          -2.7626624327434466,
          -7,
          -7,
          -3.1352483321344415,
          -3.1238924561996617,
          -4.059260404121731,
          -7,
          -4.05080494781346,
          -7,
          -3.659973215296316,
          -3.7162746928981742,
          -7,
          -7,
          -7,
          -3.349309912127894,
          -2.4012744207046004,
          -7,
          -7,
          -4.053999860693065,
          -2.8161902935342806,
          -4.062356318085437,
          -1.9719940652558725,
          -4.079434510633743,
          -4.073681699476284,
          -7,
          -3.9191565722392943,
          -3.3251049829714074,
          -3.837619999187664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.648725835359072,
          -7,
          -7,
          -3.3517855739035376,
          -3.104669696391788,
          -2.7982361763679355,
          -7,
          -3.4267064060463146,
          -7,
          -4.093981703914113,
          -7,
          -7,
          -4.055072382449418,
          -3.5331999071876963,
          -4.059184617631371,
          -7,
          -3.698796251790431,
          -7,
          -3.6037125907704572,
          -3.3731695589037214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7625446007781327,
          -7,
          -3.753889331459834,
          -7,
          -4.168998077278994,
          -7,
          -4.0752183791115355,
          -3.5945766905019516,
          -3.5935352716775633,
          -7,
          -2.8062196942237123,
          -3.589465541751032,
          -2.6989378331828577,
          -7,
          -7,
          -2.663566323038686,
          -7,
          -2.4987428758380212,
          -4.073681699476284,
          -7,
          -7,
          -4.107718610520263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5130577076386054,
          -7,
          -7,
          -7,
          -3.436162647040756,
          -3.893484346218486,
          -4.106870544478654,
          -7,
          -7,
          -7,
          -2.5613369970995135,
          -7,
          -7,
          -7,
          -3.545348358048107,
          -7,
          -3.826269219393726,
          -2.186385385887224,
          -3.748317262085834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.080698622871129,
          -4.143764014612251,
          -7,
          -3.7545012293869173,
          -7,
          -2.5666627441806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.057475915826254,
          -7,
          -4.13350697377835,
          -3.8185887540885934,
          -7,
          -7,
          -4.076349117493459,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.061301656206044,
          -1.8990773475784999,
          -3.2002118967002393,
          -2.487954954870889,
          -4.0565237240791,
          -4.0507276712150535,
          -3.0812490844673115,
          -7,
          -7,
          -2.179680733238253,
          -7,
          -7,
          -3.0557257391864248,
          -3.6664867801179333,
          -3.601806578961057,
          -7,
          -7,
          -3.2840169229681395,
          -4.050920836935403,
          -3.386617852625555,
          -7,
          -4.061150780928549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.899492196138132,
          -7,
          -7,
          -7,
          -4.576571684065291,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.558408539791075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335838869579954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7018269303971394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5504729571065634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4683473304121573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2392336020722494,
          -2.694605198933569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.812244696800369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6794278966121188,
          -7,
          -7,
          -7,
          -3.7958105246674085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.125968963092556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8542452970661185,
          -7,
          -7,
          -3.327600400007021,
          -7,
          -2.739572344450092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.791690649020118,
          -7,
          -3.5066403055665023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.274003816815921,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432998136044408,
          -7,
          -3.0394141191761372,
          -3.942194139356048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.271841606536499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.396826789268784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.651471852199043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703781295454297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9134062554679199,
          -7,
          -3.456929686007518,
          -2.774354733944107,
          -7,
          -4.048985302570711,
          -7,
          -4.5423273827739745,
          -2.6626125583964253,
          -2.890700397698875,
          -7,
          -7,
          -3.094994900944612,
          -7,
          -7,
          -7,
          -7,
          -2.6350526852590237,
          -3.706604003325916,
          -3.3352572564345317,
          -7,
          -3.0969679150789244,
          -4.979598447701,
          -7,
          -7,
          -3.266231696689893,
          -7,
          -3.832540844950058,
          -7,
          -7,
          -3.59659709562646,
          -4.054919327123815,
          -7,
          -3.348499570283838,
          -7,
          -7,
          -3.1631613749770184,
          -7,
          -7,
          -4.154971441544471,
          -7,
          -2.075546961392531,
          -4.303260872655577,
          -3.960530233278372,
          -7,
          -4.030549125532981,
          -7,
          -7,
          -3.594503043820089,
          -7,
          -7,
          -2.403120521175818,
          -7,
          -7,
          -7,
          -2.9864582127373067,
          -7,
          -3.0425755124401905,
          -7,
          -3.3641756327706194,
          -3.686189234244024,
          -3.0178677189635055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4747017805962495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1701149694966517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.862181089664136,
          -4.439963935920905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9290781689436507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.383815365980431,
          -2.45178643552429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03956552796684,
          -2.7427251313046983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6766936096248664,
          -7,
          -7,
          -7,
          -3.593618308129536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3117750456357395,
          -3.0979510709941502,
          -3.4771695069814648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.41161970596323,
          -7,
          -4.149126699742614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.925242148353079,
          -3.711807229041191,
          -7,
          -7,
          -3.6154239528859438,
          -3.6285932558512592,
          -3.648067129448935,
          -7,
          -7,
          -7,
          -7,
          -4.084862139048422,
          -3.207365037469072,
          -7,
          -7,
          -3.2673463937576654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.907314601225792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.762078087334639,
          -7,
          -3.50985750359542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.011476460804896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6954816764901977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2022577163595325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.377670439334323,
          -7,
          -3.697578033651113,
          -7,
          -7,
          -7,
          -3.291602505421389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6877964113812944,
          -7,
          -7,
          -7,
          -7,
          -3.388278863459639,
          -7,
          -7,
          -7,
          -7,
          -3.018783688874697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.874365835730049,
          -3.9222582234329666,
          -7,
          -7,
          -7,
          -3.689449456593836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6506474416793195,
          -7,
          -3.835563751669097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7133225049870275,
          -7,
          -7,
          -7,
          -3.6039829097645595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6817536437363345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7547686638684996,
          -7,
          -7,
          -3.245052943739646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.718750734739665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.617559458651492,
          -7,
          -3.498517311461634,
          -7,
          -3.3966351669836934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.359076226059263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.871280972857973,
          -3.656834583726364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.141794563523657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8200700343123257,
          -3.2797429693408864,
          -7,
          -7,
          -7,
          -3.3084932702271614,
          -7,
          -7,
          -7,
          -3.949450998777855,
          -7,
          -7,
          -7,
          -2.9182400902214147,
          -7,
          -3.7113009599161657,
          -3.448087666692341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.644832328825636,
          -7,
          -7,
          -3.6471872978959894,
          -7,
          -7,
          -7,
          -7,
          -3.2512974636775698,
          -7,
          -7,
          -3.693023067923694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2323183194127485,
          -7,
          -3.07018568637838,
          -3.414221033214868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.673389578188305,
          -7,
          -3.641110393607365,
          -3.5214649896147696,
          -3.504947933895744,
          -7,
          -3.7258299903205803,
          -4.116618811494573,
          -3.716504163773217,
          -7,
          -7,
          -7,
          -3.404833716619938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.207095540419218,
          -7,
          -3.3560258571931225,
          -3.6463056802847587,
          -3.724275869600789,
          -3.64738297011462,
          -3.81544491624435,
          -7,
          -7,
          -3.1149158459000446,
          -4.176539798314922,
          -4.356542111948761,
          -7,
          -3.235374115894248,
          -2.3438304437465964,
          -3.660912887477406,
          -4.163727735958904,
          -3.5100010569209736,
          -7,
          -3.5717379390424977,
          -4.620542039849599,
          -4.6943858028784335,
          -4.353024554282955,
          -3.256612526235748,
          -4.364250731245976,
          -3.757593390524166,
          -2.3816600539542963,
          -4.147769046260147,
          -4.349860082192332,
          -3.7844389742226907,
          -3.4525330814266306,
          -7,
          -3.6673728912283936,
          -3.7264011621029223,
          -3.420568659438226,
          -7,
          -3.7316559050928637,
          -7,
          -3.784260582566084,
          -3.716754357432697,
          -4.023931157373373,
          -3.6313016868314865,
          -2.647883126093151,
          -2.379115708334564,
          -3.8539009163221665,
          -3.4093130649092758,
          -3.946141007378952,
          -3.4153679817843448,
          -7,
          -7,
          -3.617273000838871,
          -1.9458381834644687,
          -3.6808338953273694,
          -7,
          -3.4888326343824008,
          -7,
          -3.9898723372297638,
          -3.1640978135052644,
          -3.460822698802402,
          -2.517663162081145,
          -3.6520286555911117,
          -3.9641653106217354,
          -3.4403579968152878,
          -3.9779064276371185,
          -7,
          -7,
          -7,
          -3.590752693877779,
          -2.5017437296279943,
          -7,
          -1.8954857836801475,
          -3.61800012981326,
          -3.4681626421329956,
          -7,
          -7,
          -7,
          -2.9805835268278567,
          -3.4689378056654614,
          -3.706874179820924,
          -2.0353756440844717,
          -3.7151115682046143,
          -3.348499570283838,
          -7,
          -3.455179975545529,
          -2.1183239920793673,
          -3.754348335711019,
          -7,
          -7,
          -1.9106051781102933,
          -3.834611420722687,
          -7,
          -3.32508541707219,
          -3.4057411103246222,
          -7,
          -2.956491665902276,
          -3.1276716039590733,
          -3.783045572114693,
          -3.212027711974624,
          -3.858115932190066,
          -3.660675788338524,
          -7,
          -7,
          -2.899181901036258,
          -7,
          -3.1020905255118367,
          -7,
          -3.12393326759676,
          -3.6712654329471586,
          -2.814180981040187,
          -2.939082242393672,
          -3.4202858849419178,
          -7,
          -7,
          -3.3090336675041403,
          -7,
          -2.7923263069129183,
          -3.232063874830583,
          -7,
          -7,
          -3.3853828136078388,
          -2.721285878569211,
          -3.05874226599279,
          -3.2439470470774965,
          -7,
          -2.9524897355097743,
          -3.104145550554008,
          -7,
          -7,
          -3.66143405039392,
          -7,
          -2.782273506982521,
          -7,
          -7,
          -3.2249860256767717,
          -2.9012857317920555,
          -3.7315594645200223,
          -7,
          -7,
          -7,
          -3.441695135640717,
          -3.658488381309017,
          -7,
          -7,
          -2.875704186502311,
          -7,
          -7,
          -3.9092350033683076,
          -7,
          -3.00798472191076,
          -3.3917288224907427,
          -7,
          -7,
          -7,
          -3.6536947953150816,
          -3.4187982905903533,
          -3.027926923900929,
          -3.667452952889954,
          -7,
          -7,
          -3.8961402514420196,
          -3.42217931474113,
          -3.0969968632197054,
          -2.689930104018218,
          -3.6438966143222347,
          -7,
          -2.712300326291085,
          -2.7234556720351857,
          -3.8239304551255637,
          -7,
          -7,
          -3.7976829349148993,
          -7,
          -2.8881326722394585,
          -7,
          -3.183459657707637,
          -7,
          -7,
          -7,
          -3.6472851450253665,
          -3.21160104414524,
          -3.217659381292399,
          -7,
          -1.8619040595057519,
          -7,
          -7,
          -7,
          -2.935690435157628,
          -7,
          -2.9924062244673513,
          -7,
          -7,
          -7,
          -3.8802799204198477,
          -7,
          -7,
          -7,
          -3.1884890478416423,
          -3.03893791903862,
          -2.354340301363435,
          -3.1907424491833214,
          -3.9967305154351527,
          -3.6506959797606107,
          -7,
          -3.171921379366514,
          -7,
          -3.6723749787460793,
          -3.1099158630237933,
          -7,
          -7,
          -7,
          -7,
          -3.0317410385347316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8270460170047342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3634239329171765,
          -7,
          -3.1882720955600496,
          -3.098693158915045,
          -2.062731169926413,
          -2.6700602174731345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.21793492502484,
          -7,
          -7,
          -2.4474681309497557,
          -3.370142847051102,
          -3.1061058665275776,
          -7,
          -7,
          -7,
          -7,
          -3.189321841020497,
          -3.640282629696681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6638971457345137,
          -7,
          -7,
          -7,
          -3.0610438792188233,
          -3.6715739245654024,
          -7,
          -7,
          -7,
          -4.024895960107485,
          -7,
          -2.8675902357985654,
          -3.8340071958856363,
          -7,
          -7,
          -2.73877544549828,
          -7,
          -4.001430812246398,
          -3.997561115633588,
          -7,
          -7,
          -4.005652315355074,
          -3.1056047919987337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1549493349815436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.325925955771466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.735997884091794,
          -7,
          -7,
          -7,
          -2.4756498276534518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8180608567577408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6165417892021465,
          -4.012837224705172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.598790506763115,
          -7,
          -7,
          -7,
          -4.019282495761732,
          -7,
          -7,
          -7,
          -7,
          -4.020071103533841,
          -7,
          -7,
          -4.012837224705172,
          -7,
          -3.2481776883387057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1614678285730546,
          -3.143697730052988,
          -7,
          -7,
          -7,
          -3.9630453857472343,
          -7,
          -7,
          -3.5596672783880576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.046311501179504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.469190620933241,
          -3.0120283186865047,
          -3.6171751426857073,
          -7,
          -7,
          -3.9021117234480043,
          -7,
          -7,
          -4.0147304950017535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.255995726722402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0268599859845615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3384221443751882,
          -3.998956440470486,
          -7,
          -7,
          -7,
          -7,
          -4.000997730357794,
          -7,
          -3.7575099022757996,
          -7,
          -3.928190948038757,
          -7,
          -3.7273378880330803,
          -3.1088800834859853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0332628758844793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.046963154123424,
          -7,
          -7,
          -7,
          -4.255778886667017,
          -7,
          -4.0750357259221905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1786070026077806,
          -3.210920174711518,
          -2.0972084650238587,
          -3.9974737588029803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.00518051250378,
          -3.8119323028729784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.001647191346038,
          -7,
          -7,
          -7,
          -7,
          -4.085968077046074,
          -7,
          -7,
          -7,
          -7,
          -3.4654943853655413,
          -7,
          -3.6881527555915663,
          -7,
          -3.1228181332982032,
          -3.99943504987633,
          -7,
          -7,
          -3.6652369210441833,
          -3.725135413175271,
          -7,
          -4.049024097915049,
          -3.267953536862395,
          -7,
          -7,
          -7,
          -7,
          -4.019697730980192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.094471128641644,
          -7,
          -4.011274328904725,
          -4.003762020828246,
          -2.601808027451869,
          -7,
          -7,
          -4.188844146546897,
          -7,
          -7,
          -4.011824095594308,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7398951080054355,
          -3.731266349075492,
          -7,
          -7,
          -3.997561115633588,
          -7,
          -7,
          -7,
          -7,
          -4.0100454126360985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.01262635095405,
          -7,
          -3.2303095531954753,
          -4.0873554300540516,
          -3.1600335826302413,
          -7,
          -4.037426497940624,
          -2.746906520474098,
          -4.032900678732676,
          -7,
          -7,
          -7,
          -4.027879409207207,
          -3.7942091163464964,
          -4.0327396052094935,
          -7,
          -7,
          -7,
          -4.017784353096679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5053280703957066,
          -3.354459496605008,
          -3.5486043622015986,
          -4.014394516273535,
          -3.386629739543263,
          -4.072433725968388,
          -3.469409608516755,
          -3.0349165873947777,
          -2.9592049889385117,
          -7,
          -3.1974714148555217,
          -3.0308020487722676,
          -2.933629625037472,
          -2.6896603915706647,
          -3.2821183785735992,
          -3.855958073963892,
          -3.931915317081246,
          -3.180532059343106,
          -3.3384122207586615,
          -2.556536769126058,
          -3.9483151406893477,
          -3.718645386607124,
          -3.1549562434033382,
          -2.88924011792284,
          -7,
          -3.9035421416209206,
          -2.9903304761428657,
          -2.915262153350638,
          -7,
          -2.018178732002881,
          -3.643666480980489,
          -3.475516833845267,
          -4.130011949671904,
          -3.7919186113238093,
          -3.60078237386667,
          -4.431604971875214,
          -7,
          -3.125481265700594,
          -3.4549083487129435,
          -3.0448624331635377,
          -4.037187370937113,
          -3.370947721650145,
          -3.3956321266137643,
          -2.3076694666603705,
          -3.717504074764202,
          -2.9595598291522704,
          -7,
          -2.3887741660237527,
          -2.766054643351031,
          -3.754348335711019,
          -2.4368962527589484,
          -2.8022373422687794,
          -3.127958405334193,
          -3.266623623872799,
          -3.223841923439887,
          -7,
          -7,
          -2.9033613362553186,
          -2.9358719492185936,
          -7,
          -7,
          -2.66908769785759,
          -2.330522106345977,
          -3.0231152201059763,
          -7,
          -3.220817628174335,
          -7,
          -2.0355258626011894,
          -3.8577846510602454,
          -3.8417258468257574,
          -3.6612130273513563,
          -2.962739823876104,
          -7,
          -3.455179975545529,
          -7,
          -2.715015187390733,
          -3.0094122626552355,
          -2.946452265013073,
          -2.6875289612146345,
          -2.9037228717450034,
          -4.093911741049379,
          -3.7060346607143506,
          -3.0451055597673964,
          -2.270366342963542,
          -3.7311050512159203,
          -2.1245042248342823,
          -7,
          -2.919190202125499,
          -3.292382669369879,
          -2.676192630404192,
          -7,
          -7,
          -7,
          -7,
          -4.032538179260007,
          -3.9893163049899516,
          -7,
          -4.0377451292695925,
          -7,
          -7,
          -2.9673027695242467,
          -7,
          -7,
          -7,
          -3.7207379770184255,
          -7,
          -2.78193896987055,
          -7,
          -4.023087766995445,
          -7,
          -7,
          -4.05656185185946,
          -7,
          -4.035269600099436,
          -7,
          -4.106054840093787,
          -4.028205119905443,
          -7,
          -4.01678271248684,
          -4.007192823557041,
          -7,
          -3.740731025540231,
          -7,
          -7,
          -2.7282981780928632,
          -3.3300239510638483,
          -2.978750981332984,
          -7,
          -7,
          -7,
          -4.045831314347755,
          -7,
          -7,
          -7,
          -3.6146511867000206,
          -7,
          -7,
          -3.65931391573872,
          -7,
          -3.0545541312161957,
          -7,
          -4.066661302300677,
          -7,
          -7,
          -7,
          -7,
          -3.5399816774775767,
          -7,
          -7,
          -4.003805073565025,
          -3.827756862978617,
          -3.9073844852845,
          -7,
          -7,
          -7,
          -7,
          -2.9587175448355043,
          -4.015275906681875,
          -3.610802066205635,
          -7,
          -7,
          -3.6563138576401566,
          -7,
          -3.5703093854358796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6988252153758836,
          -7,
          -3.1922886125681202,
          -7,
          -3.4794025368739816,
          -3.076974014842062,
          -4.0602066210673495,
          -7,
          -7,
          -7,
          -3.7535677395933793,
          -3.388172275047789,
          -7,
          -7,
          -3.782443956917726,
          -3.742568034366142,
          -3.4290136052510922,
          -3.506129052395325,
          -4.190499779633488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.799994944688714,
          -7,
          -7,
          -7,
          -3.2988530764097064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.00483706093831,
          -7,
          -7,
          -3.773347541980823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5554874342498453,
          -3.2679088999866783,
          -3.322770429937203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5038663111778603,
          -7,
          -7,
          -3.572832893302384,
          -3.255548160131223,
          -3.7280289544205187,
          -7,
          -7,
          -7,
          -7,
          -3.279047385047397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.344487131834023,
          -7,
          -7,
          -7,
          -3.5092793478189916,
          -3.8822588331549723,
          -7,
          -7,
          -4.276300924570774,
          -7,
          -7,
          -3.5204507792823576,
          -3.748885440009517,
          -4.272908612690247,
          -7,
          -2.6596704390534436,
          -7,
          -4.2747580543520085,
          -7,
          -4.276461804173244,
          -7,
          -4.277012939376528,
          -2.6722810323070783,
          -3.7983052820219765,
          -7,
          -7,
          -4.276691528845039,
          -3.9789561652175918,
          -7,
          -4.2767604225577776,
          -7,
          -7,
          -7,
          -3.1572084425277938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274527304396044,
          -4.274365706447425,
          -4.301029995663981,
          -2.8952936014803914,
          -7,
          -7,
          -7,
          -7,
          -3.9726887170222147,
          -4.274065436350914,
          -7,
          -3.80543288813214,
          -3.993061296812981,
          -7,
          -7,
          -7,
          -3.0853500502578064,
          -7,
          -7,
          -7,
          -7,
          -4.313550871333505,
          -7,
          -7,
          -7,
          -3.3689807055782293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.43675312229406,
          -7,
          -3.4414931434230693,
          -7,
          -4.280851425694206,
          -3.983400738180538,
          -2.646200848074611,
          -4.2808741725572155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015045239174416,
          -7,
          -7,
          -7,
          -3.9832879197666284,
          -7,
          -7,
          -7,
          -7,
          -3.3301882244051946,
          -7,
          -7,
          -4.2808741725572155,
          -4.278479223046323,
          -2.6372431155203353,
          -7,
          -7,
          -7,
          -3.9794117826344353,
          -3.990072334692153,
          -7,
          -3.6405609344046366,
          -3.7144415328720637,
          -7,
          -7,
          -7,
          -3.0305818650744536,
          -7,
          -3.8132695547205664,
          -3.6918547497031398,
          -4.28141974015399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.401369205272897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.024578950016235,
          -7,
          -3.5484303680628813,
          -7,
          -7,
          -4.092668021001432,
          -7,
          -7,
          -4.281896550246061,
          -4.3241795297179,
          -4.290969008948517,
          -7,
          -7,
          -7,
          -2.95118032364108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.288495151773556,
          -4.281624151440202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0716647453946364,
          -4.273441134312813,
          -7,
          -7,
          -4.274342616116883,
          -7,
          -7,
          -7,
          -3.159481253887955,
          -7,
          -3.632406672162299,
          -7,
          -4.289365951520032,
          -2.462464848431206,
          -4.274319524558622,
          -7,
          -4.281215232611316,
          -4.282984440133955,
          -4.285669805960068,
          -4.292411148837825,
          -7,
          -7,
          -7,
          -4.275863950712521,
          -3.7977521286507105,
          -4.2996162399984135,
          -7,
          -7,
          -7,
          -4.1272992150577075,
          -4.272746411201189,
          -3.3609508662563887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.283685590141156,
          -3.6848453616444123,
          -3.435266886361759,
          -2.823452401213676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.971948113409703,
          -7,
          -7,
          -7,
          -3.304536687573914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9761206182998157,
          -4.292676867185116,
          -4.273949892550008,
          -7,
          -3.700811844739728,
          -7,
          -7,
          -7,
          -4.010299956639812,
          -7,
          -4.0686681432859,
          -4.279370318179108,
          -3.744458148811997,
          -7,
          -7,
          -7,
          -2.646076820312336,
          -3.6859655440604007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6823933026828906,
          -7,
          -7,
          -7,
          -4.277150613963797,
          -7,
          -7,
          -7,
          -4.274434970074042,
          -3.1220724554718475,
          -7,
          -7,
          -7,
          -2.9248255035083397,
          -7,
          -7,
          -3.481191725893641,
          -7,
          -4.2730707536224655,
          -7,
          -7,
          -4.29754166781816,
          -3.8041167057081755,
          -4.2948848870000305,
          -4.278410601475816,
          -7,
          -7,
          -3.0173116440067362,
          -3.8143142002074595,
          -7,
          -7,
          -7,
          -3.6930891052509565,
          -3.681964458994683,
          -7,
          -7,
          -4.279370318179108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6785639001849493,
          -7,
          -2.9069210167624506,
          -3.845449469511614,
          -2.711176934779885,
          -7,
          -3.117602691690084,
          -2.478484971625684,
          -4.291812687467119,
          -7,
          -7,
          -4.2751961417856235,
          -3.3856509518023437,
          -3.548941916664869,
          -7,
          -7,
          -7,
          -7,
          -3.283142863303242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.205953506508051,
          -7,
          -7,
          -3.346729576432997,
          -3.5928543569294185,
          -4.09221753532326,
          -3.980639567443737,
          -3.7534202636980663,
          -3.836830286488879,
          -3.5264315920850375,
          -3.191131504072038,
          -3.6850068460949137,
          -4.273117068486742,
          -3.9897018963460247,
          -3.7946971268919985,
          -3.691047471169451,
          -3.5519006071983443,
          -3.1444536790632514,
          -4.2730707536224655,
          -3.052886235256382,
          -3.1784013415337555,
          -4.453731029504294,
          -3.3401061253096755,
          -3.9468941951023266,
          -3.1647492907566503,
          -2.950968833510342,
          -3.6960176467785573,
          -3.783160071056011,
          -4.2151085810530935,
          -3.8802131653034277,
          -3.3469952774377774,
          -7,
          -3.2953282901525034,
          -3.203799078428703,
          -4.054137904817809,
          -3.8545125103702715,
          -3.747696582675378,
          -3.916418852628301,
          -4.553980064848256,
          -7,
          -3.2888558045037004,
          -3.332256624164205,
          -7,
          -3.515807635238054,
          -3.331411721757633,
          -2.3607543603462675,
          -3.4250811413139908,
          -7,
          -3.519623846347367,
          -4.290034611362518,
          -2.9489017609702137,
          -3.047770314206707,
          -3.1576941641846092,
          -2.2062599065001196,
          -3.0464682530395018,
          -4.071513805095089,
          -3.151916806922742,
          -3.0985890826880103,
          -7,
          -4.277104727283855,
          -4.335076597314406,
          -3.0666728624046575,
          -3.061284894874462,
          -7,
          -2.3527153948431287,
          -2.546630782476486,
          -2.827736554353427,
          -4.275656809537014,
          -3.8333596367430127,
          -7,
          -2.463407497136473,
          -2.9175055095525466,
          -2.8845532148030903,
          -2.6351356149470493,
          -2.8623932040412763,
          -7,
          -2.1183239920793673,
          -2.715015187390733,
          -7,
          -2.7957062647984876,
          -3.4577494696916786,
          -3.7401257369657306,
          -2.249726155748044,
          -4.326479236380961,
          -7,
          -2.859753377160808,
          -2.5629349075011825,
          -7,
          -2.4895536818701456,
          -4.295501126169623,
          -3.5321596295356965,
          -2.9368036393469454,
          -3.3799095435529614,
          -3.8004421213362565,
          -7,
          -7,
          -3.6797684752325557,
          -4.482173004713658,
          -3.9747419045009504,
          -7,
          -3.993414184532892,
          -7,
          -4.320374802023668,
          -2.7514638708365453,
          -7,
          -7,
          -4.274481139688916,
          -3.6120417446452695,
          -7,
          -2.242692633759777,
          -3.9888932438600233,
          -7,
          -3.835056101720116,
          -7,
          -3.702818126370317,
          -3.0256130404386536,
          -7,
          -7,
          -4.333628612518691,
          -3.988157472556753,
          -4.292942423054936,
          -7,
          -7,
          -7,
          -3.403000344021163,
          -7,
          -7,
          -3.189218551259706,
          -3.5154345883966154,
          -3.1108140939166935,
          -7,
          -4.319189369204891,
          -3.9796621686211364,
          -3.8217754671834636,
          -4.277127671229863,
          -7,
          -7,
          -3.4219328132785085,
          -4.277609214304091,
          -7,
          -3.8747523219012376,
          -7,
          -7,
          -4.285669805960068,
          -7,
          -7,
          -7,
          -7,
          -4.292743271377071,
          -2.938476215234873,
          -7,
          -7,
          -4.276024992238579,
          -7,
          -7,
          -7,
          -4.2853097130902675,
          -4.365207100231824,
          -4.281124309449275,
          -2.9663357525135394,
          -4.282191456275556,
          -4.021995097954464,
          -7,
          -7,
          -2.966901992934652,
          -7,
          -2.5265792547944046,
          -4.286434013402093,
          -7,
          -7,
          -4.307602993826055,
          -7,
          -7,
          -3.653463367014262,
          -4.286231854028553,
          -3.983333050649128,
          -2.928286094162898,
          -4.289834121485031,
          -3.4242485095261084,
          -7,
          -3.377706841369624,
          -7,
          -3.528702498309365,
          -7,
          -7,
          -7,
          -4.268905441212015,
          -4.322694690306876,
          -4.275978986467148,
          -7,
          -3.8139033097892776,
          -7,
          -3.486461965440535,
          -2.705123700208126,
          -4.084522658021688,
          -4.275265273107007,
          -4.287533011050722,
          -7,
          -7,
          -7,
          -4.2907467156120855,
          -7,
          -7,
          -7,
          -7,
          -2.9224060357250012,
          -7,
          -3.8046845149069406,
          -7,
          -4.276093991759217,
          -4.282418170877648,
          -7,
          -7,
          -7,
          -4.014121342041001,
          -4.2847239246361575,
          -7,
          -3.9869955397243815,
          -7,
          -7,
          -4.272653697429817,
          -3.801403710017355,
          -7,
          -3.2784792230463227,
          -2.5496445099116336,
          -3.16134803421355,
          -3.0997009480543785,
          -3.9749259860897626,
          -7,
          -3.715313771574569,
          -4.273903666420971,
          -7,
          -2.7033843399602757,
          -7,
          -7,
          -2.958042364718105,
          -3.552323401102493,
          -3.8125345758070877,
          -7,
          -7,
          -3.4342722781648516,
          -4.27263051589404,
          -3.4413022866931673,
          -4.272815933543096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067925949681522,
          -7,
          -7,
          -7,
          -3.7196626830180466,
          -3.4390167283875126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4141134532146724,
          -7,
          -7,
          -7,
          -3.3527044930956182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.271713854077303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7573770469760275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7958105246674085,
          -7,
          -7,
          -7,
          -7,
          -3.146438135285775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.959848290501177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2486352446993285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.24699069924155,
          -7,
          -2.81778565588553,
          -7,
          -3.2329961103921536,
          -7,
          -2.931127192823453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5217916496391233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.963612955395577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.651278013998144,
          -3.5349774634615505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8014564829054331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3344537511509307,
          -7,
          -7,
          -7,
          -4.116242357963335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7834747875822465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1565491513317814,
          -7,
          -7,
          -7,
          -3.3200943339030964,
          -7,
          -7,
          -3.425968732272281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1622656142980214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2168254232660476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.374901024683465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.781468142841798,
          -7,
          -3.1324331378141674,
          -7,
          -7,
          -7,
          -3.7237839369653294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.283188116453424,
          -7,
          -7,
          -7,
          -1.684862742461716,
          -7,
          -7,
          -3.8361974807789254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.955886953789943,
          -3.3394514413064407,
          -7,
          -7,
          -7,
          -7,
          -2.967079734144497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9304395947667,
          -7,
          -4.005395031886706,
          -7,
          -4.1338517431655255,
          -7,
          -7,
          -4.081983039279172,
          -7,
          -7,
          -3.239049093140191,
          -7,
          -3.0153597554092144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4536648218070845,
          -4.279180066775598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7184020305163026,
          -3.1291001439415806,
          -7,
          -7,
          -3.9859314351032813,
          -7,
          -7,
          -3.7143800612122204,
          -7,
          -7,
          -4.362048717714715,
          -7,
          -4.319647288183423,
          -7,
          -4.406465236880978,
          -3.0876800300462937,
          -3.537623233756723,
          -4.1130738935942075,
          -7,
          -7,
          -3.990383258906234,
          -7,
          -3.333506049741619,
          -4.251248762305845,
          -7,
          -7,
          -3.510062192500516,
          -3.2650537885040145,
          -3.9643539292921934,
          -7,
          -7,
          -4.40888414320084,
          -3.4102287485066443,
          -7,
          -3.739504533616649,
          -3.5494937132150133,
          -3.1190578375232376,
          -7,
          -3.394521722674913,
          -7,
          -3.3527370957112907,
          -7,
          -7,
          -3.5081592323614412,
          -3.2711152399482035,
          -7,
          -7,
          -3.3352572564345317,
          -7,
          -7,
          -3.6282867310895144,
          -3.6148972160331345,
          -7,
          -7,
          -3.5973843421258556,
          -3.228719959339479,
          -3.920456691003599,
          -7,
          -7,
          -7,
          -2.890058593275497,
          -7,
          -7,
          -3.4119562379304016,
          -3.496860487394368,
          -3.1631613749770184,
          -3.754348335711019,
          -3.0094122626552355,
          -2.7957062647984876,
          -7,
          -3.747023177451628,
          -3.1863912156954934,
          -3.075827604040037,
          -3.5826314394896364,
          -7,
          -3.274388795550379,
          -3.113839662201766,
          -7,
          -4.644802810753064,
          -7,
          -3.18440748541232,
          -7,
          -3.35839175864902,
          -7,
          -7,
          -7,
          -7,
          -3.811809515181134,
          -2.8913383039652625,
          -7,
          -3.365300748637987,
          -7,
          -3.2463754640035085,
          -3.1348939624551835,
          -3.0523090996473234,
          -7,
          -7,
          -3.010663332325691,
          -7,
          -3.6396358768118477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5878231713189552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.296829664598624,
          -7,
          -7,
          -4.184734006620967,
          -4.050234709397242,
          -3.494958099302044,
          -7,
          -7,
          -7,
          -3.402089350572097,
          -3.1894903136993675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.886561221801466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6555993877807866,
          -7,
          -7,
          -7,
          -7,
          -3.5780658838360915,
          -7,
          -7,
          -7,
          -7,
          -3.829996661202949,
          -7,
          -7,
          -7,
          -7,
          -3.3774883833761327,
          -7,
          -2.620552444729435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.710878617685173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8574665172568663,
          -3.0608488730388075,
          -7,
          -3.4424797690644486,
          -7,
          -7,
          -4.295962732394023,
          -7,
          -7,
          -7,
          -3.491461750160462,
          -7,
          -3.3101833275716896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6055205234374688,
          -3.1451964061141817,
          -7,
          -7,
          -3.7078255683322316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9662590937671496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6429588794097905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.420615770625765,
          -3.605412798153051,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3738311450738303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.219121520999956,
          -3.4025193025742495,
          -3.6314437690131722,
          -7,
          -2.63085590953734,
          -2.9697781910347425,
          -3.0360297306565434,
          -7,
          -7,
          -3.213960237403306,
          -7,
          -2.849852805415638,
          -3.901621764093357,
          -7,
          -3.7014816356209272,
          -2.514300718383189,
          -7,
          -7,
          -7,
          -7,
          -3.340344949528144,
          -3.6488477083728936,
          -4.304296603018355,
          -7,
          -7,
          -7,
          -7,
          -3.6615287401319825,
          -7,
          -3.64777405026883,
          -7,
          -3.7548832282521674,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -3.1774403000220808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.441616594274755,
          -2.756445920162273,
          -7,
          -3.640878778701618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3244882333076564,
          -7,
          -7,
          -7,
          -7,
          -3.485295438726089,
          -7,
          -7,
          -3.6817837664678814,
          -3.314330782520869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.67015304519218,
          -3.6501131644435714,
          -7,
          -2.948412965778601,
          -7,
          -7,
          -2.5418970074937137,
          -3.062393937253195,
          -7,
          -7,
          -7,
          -7,
          -3.6351820486562674,
          -7,
          -3.633367445117007,
          -7,
          -3.1925674533365456,
          -7,
          -7,
          -7,
          -3.679246145413859,
          -7,
          -7,
          -7,
          -7,
          -2.7766103938800204,
          -7,
          -7,
          -3.187520720836463,
          -7,
          -2.8494194137968996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3914644118391033,
          -2.3419222959903934,
          -7,
          -7,
          -7,
          -3.864896553945115,
          -7,
          -3.0037189638231143,
          -3.7170044070405472,
          -7,
          -7,
          -3.6423655808449733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.438937701095528,
          -2.7822771281099112,
          -3.227050718827332,
          -7,
          -7,
          -4.0124153747624325,
          -7,
          -7,
          -3.3680078052211746,
          -3.343867921696387,
          -2.70372115992702,
          -7,
          -7,
          -3.635785235533652,
          -2.8600656362378873,
          -7,
          -7,
          -7,
          -3.658774320844357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.096947776103763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.638189640190837,
          -7,
          -7,
          -7,
          -3.574956775764507,
          -7,
          -3.699056854547668,
          -2.830793899704099,
          -3.6372895476781744,
          -7,
          -3.6664243725187595,
          -7,
          -3.6844862921887342,
          -7,
          -3.180412632838324,
          -3.6472851450253665,
          -7,
          -7,
          -7,
          -3.737669627356642,
          -7,
          -3.6321534835106326,
          -7,
          -3.3922395603981106,
          -7,
          -3.3156905165284845,
          -7,
          -3.689486448364248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9108910886445285,
          -7,
          -3.362174189572871,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.639187559935754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.139375264439972,
          -7,
          -3.628695382714023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5126176996829153,
          -2.970966411972679,
          -7,
          -7,
          -3.333144876098619,
          -3.3016809492935764,
          -7,
          -3.6511325785504813,
          -7,
          -3.647162832668712,
          -3.031913164461711,
          -3.329499575762843,
          -3.6348801407665263,
          -2.79896919886926,
          -2.7900211284701975,
          -3.7032053706954864,
          -2.837667336315827,
          -3.25927524755698,
          -7,
          -3.6326597132939136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6494322232416168,
          -7,
          -3.6341748717626,
          -7,
          -2.9380190974762104,
          -3.528402437953617,
          -7,
          -7,
          -3.6445370577784075,
          -2.8918112322610328,
          -7,
          -7,
          -3.2906132849749863,
          -7,
          -7,
          -7,
          -3.638389407665336,
          -3.252610340567373,
          -3.1893967258352185,
          -7,
          -7,
          -7,
          -7,
          -2.9938466532119907,
          -2.6263403673750423,
          -7,
          -7,
          -7,
          -7,
          -3.075820590183628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.36332987888716,
          -7,
          -3.2116544005531824,
          -3.3389874160202413,
          -3.594248866857383,
          -7,
          -2.8719063670262903,
          -4.592731766393962,
          -3.4073059070182823,
          -7,
          -7,
          -7,
          -2.7422012536996743,
          -3.8311015645013593,
          -7,
          -7,
          -7,
          -7,
          -2.5598145842427398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.963180469568511,
          -7,
          -7,
          -4.181567304029932,
          -4.300805552195441,
          -7,
          -3.6684791029325856,
          -4.012612289062748,
          -7,
          -3.0025020358433663,
          -2.7058187146688035,
          -2.877191780219873,
          -7,
          -3.8701111553644005,
          -3.841296887490282,
          -3.9945107159839948,
          -4.051345499336539,
          -3.7606636911394395,
          -7,
          -4.455240877870955,
          -3.78652960566293,
          -7,
          -4.649986784636648,
          -7,
          -4.416277611713044,
          -3.281828466560518,
          -3.199721739891994,
          -3.1212588303888062,
          -4.2637070646074315,
          -4.188056208438369,
          -2.8640523809944796,
          -7,
          -2.0169685917053837,
          -3.5385946772872883,
          -3.926023297896978,
          -3.7263196121107756,
          -3.678905156769131,
          -3.534829611339736,
          -4.028103361550306,
          -3.7078255683322316,
          -2.91559767644957,
          -3.5011353674456522,
          -2.671833768853756,
          -2.87140612375896,
          -2.837072617748184,
          -3.206987694756408,
          -3.6765107102825536,
          -3.677789391068861,
          -2.0920703092729895,
          -2.4197818916091722,
          -1.645939469700875,
          -4.005652315355074,
          -3.453624073591451,
          -7,
          -2.159646073401281,
          -2.2831568248844625,
          -7,
          -2.0209542276260914,
          -2.2874818076454804,
          -7,
          -1.870478618324812,
          -3.5094041602586916,
          -3.7988577317474856,
          -7,
          -3.0272354120535976,
          -1.9940933059313122,
          -4.18413472305636,
          -7,
          -3.076786033508079,
          -7,
          -2.9615276325601068,
          -7,
          -4.007539160371849,
          -2.7598296634141892,
          -4.189686782592971,
          -7,
          -7,
          -2.946452265013073,
          -3.4577494696916786,
          -3.747023177451628,
          -7,
          -1.381024468922903,
          -3.0884668537446456,
          -2.1504624790069746,
          -7,
          -2.2133690616540425,
          -3.089969303957718,
          -1.5705429398818975,
          -4.0704442499729465,
          -7,
          -1.2679374313022551,
          -3.3039516339434503,
          -4.15633710087081,
          -7,
          -7,
          -7,
          -7,
          -4.200905191684992,
          -3.0264389722525658,
          -7,
          -2.4144719496293026,
          -7,
          -3.2065560440990297,
          -2.088886014145426,
          -7,
          -7,
          -7,
          -2.3472649475991116,
          -7,
          -3.58849580100721,
          -2.6582716350441484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8506462351830666,
          -7,
          -3.71281800020785,
          -3.6737579365495767,
          -3.652343055062715,
          -7,
          -2.7112848782112553,
          -7,
          -7,
          -4.224222186084649,
          -3.600264821501586,
          -3.471093592379599,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -7,
          -7,
          -7,
          -3.1253511205147526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4108615542165976,
          -7,
          -7,
          -3.6405808064896528,
          -7,
          -3.890867938811441,
          -3.3212669395747887,
          -7,
          -7,
          -7,
          -3.666049738480516,
          -3.0379678925594034,
          -7,
          -3.8176975547630243,
          -7,
          -7,
          -3.7943834687844653,
          -3.642167634404945,
          -3.963882228928777,
          -7,
          -7,
          -3.3619166186686433,
          -7,
          -7,
          -7,
          -2.411293781383653,
          -7,
          -7,
          -3.3672161041609696,
          -7,
          -7,
          -7,
          -2.716791410904716,
          -3.335808805235897,
          -3.764250875438773,
          -7,
          -7,
          -7,
          -4.054593905348044,
          -7,
          -3.6444385894678386,
          -7,
          -2.858820171667875,
          -7,
          -3.5161385767170743,
          -3.365244562017571,
          -7,
          -3.6413749451921253,
          -7,
          -7,
          -7,
          -7,
          -3.4032063416448066,
          -7,
          -7,
          -7,
          -3.629409599102719,
          -2.767897616018091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.651859269246949,
          -7,
          -3.0358798102309463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.334252642334231,
          -7,
          -3.3624259223086304,
          -7,
          -7,
          -2.8980195852004846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.085575969718504,
          -3.6108730003800513,
          -7,
          -7,
          -2.4733653019080357,
          -1.9876662649262746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.378634853476651,
          -7,
          -7,
          -7,
          -2.8488711984461923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.594734988590292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.540454613671412,
          -7,
          -3.673389578188305,
          -7,
          -3.0517311960598494,
          -7,
          -7,
          -2.5057664361691927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9590413923210934,
          -3.00939777434038,
          -7,
          -3.2303211689190787,
          -7,
          -7,
          -7,
          -7,
          -3.5323721335678773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.839289456006147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.293738117783524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5928426831311002,
          -3.540954808926133,
          -7,
          -7,
          -2.5827642863448856,
          -2.862489166905897,
          -3.2249213455840313,
          -3.215901813204032,
          -7,
          -7,
          -3.524266268766979,
          -7,
          -7,
          -7,
          -3.4202033743532962,
          -7,
          -7,
          -7,
          -3.5803546611065915,
          -7,
          -7,
          -7,
          -7,
          -3.5825178836040625,
          -7,
          -7,
          -2.959637541326031,
          -7,
          -3.123049400051291,
          -7,
          -7,
          -7,
          -3.5603849229720157,
          -7,
          -7,
          -3.3301431005564446,
          -1.837908225908228,
          -7,
          -7,
          -7,
          -4.760821910929019,
          -7,
          -3.6104472214421213,
          -3.3260284683370087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7886632131208575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.050821505295759,
          -3.4554539687786283,
          -3.761927838420529,
          -3.5848963441374497,
          -7,
          -3.969276095488932,
          -7,
          -7,
          -2.7212215815105543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4516636494104094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7119337041617966,
          -7,
          -3.3038437748886547,
          -3.1183169490065796,
          -7,
          -7,
          -7,
          -7,
          -3.5869247081448203,
          -3.0169289290369714,
          -3.55339751012388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5203525040833177,
          -7,
          -7,
          -7,
          -3.719082573901486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.292477593667784,
          -3.803934849863842,
          -3.0246124170224853,
          -7,
          -7,
          -7,
          -3.575187844927661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1075830311913215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.620864475265121,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7024305364455254,
          -7,
          -3.299942900022767,
          -7,
          -3.693111115462141,
          -7,
          -7,
          -7,
          -3.256958152560932,
          -3.2979792441593623,
          -3.13268651460904,
          -3.657629431388952,
          -2.8722534194843883,
          -7,
          -3.521007252408604,
          -7,
          -7,
          -3.5814945422908995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5276299008713385,
          -3.2845811128217504,
          -7,
          -7,
          -7,
          -2.7080908169076845,
          -7,
          -7,
          -3.6432552250247716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.564784384503987,
          -7,
          -7,
          -7,
          -7,
          -2.795578236741683,
          -2.659493631822546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2532168125021292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.604262062742623,
          -3.2691236170005356,
          -3.7054645707376306,
          -7,
          -3.628491104967123,
          -3.9796735463731157,
          -3.616790486329716,
          -7,
          -7,
          -7,
          -3.302330928684399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.737987326333431,
          -7,
          -7,
          -4.047235915459681,
          -3.992627145785504,
          -7,
          -7,
          -7,
          -7,
          -2.7024843890690557,
          -2.4679428579636253,
          -3.501964050635706,
          -7,
          -7,
          -3.193777262607969,
          -4.684908168288119,
          -4.045042487886878,
          -2.841562802829042,
          -7,
          -3.7410727723733213,
          -4.379975935132622,
          -4.113441953965322,
          -4.163260789989906,
          -3.56839730816483,
          -4.413024679701589,
          -3.0670295045117135,
          -3.020347695447247,
          -7,
          -7,
          -4.354933966559146,
          -3.0796959696157464,
          -7,
          -2.4044671718110897,
          -3.596948786692873,
          -4.614939378499252,
          -3.529836566775372,
          -3.2579664095081773,
          -3.013960158703525,
          -3.8316991783902976,
          -3.6793067375983877,
          -3.2008334049303198,
          -3.8384082784941866,
          -3.3090265613775127,
          -7,
          -2.664750011697359,
          -3.462397997898956,
          -3.0849845933781146,
          -3.578524605274993,
          -2.979912410334717,
          -2.349385466944565,
          -1.3548575254232875,
          -3.9618006391916785,
          -7,
          -3.2677875202836364,
          -2.7637635255241637,
          -3.3082441767406063,
          -7,
          -2.3785536271729235,
          -2.395520534548625,
          -7,
          -2.195189788763281,
          -7,
          -7,
          -7,
          -3.5645138908321785,
          -1.995603730660035,
          -4.4032320844788675,
          -7,
          -3.699143687394484,
          -7,
          -3.1654520728319286,
          -7,
          -4.480078840065485,
          -7,
          -7,
          -7,
          -7,
          -2.6875289612146345,
          -3.7401257369657306,
          -3.1863912156954934,
          -1.381024468922903,
          -7,
          -3.5424768560096274,
          -1.8744431604844423,
          -7,
          -2.6308003100834934,
          -3.006751199503011,
          -1.189499829979621,
          -3.818273035484493,
          -7,
          -2.6974037232004875,
          -3.151001907992831,
          -3.3473300153169503,
          -7,
          -7,
          -7,
          -7,
          -3.872360255801214,
          -3.154694414148935,
          -7,
          -3.3280736545131555,
          -7,
          -3.737907923374639,
          -4.109511052229932,
          -3.623042434246382,
          -7,
          -7,
          -3.482968813185257,
          -7,
          -4.3576585630856135,
          -7,
          -3.5907304057926903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5565529830285247,
          -3.184870669153574,
          -7,
          -7,
          -3.084099424214281,
          -7,
          -3.5424519473759766,
          -7,
          -7,
          -2.9775711945198147,
          -7,
          -7,
          -7,
          -7,
          -2.703560041586495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.390440506647526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.660710922305739,
          -3.5692568333286103,
          -2.9020806313459078,
          -7,
          -7,
          -4.060168811945148,
          -7,
          -3.614211501642213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0712067312776554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9262395210458623,
          -3.1077750894177876,
          -7,
          -7,
          -7,
          -7,
          -4.336619812907439,
          -7,
          -7,
          -7,
          -4.072892956720603,
          -7,
          -7,
          -7,
          -3.9472866446777983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6346535720376747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8538806501245424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151584339359897,
          -7,
          -7,
          -2.290903952080366,
          -7,
          -7,
          -7,
          -3.4787107555127594,
          -2.7051982724309926,
          -3.3089910290001643,
          -7,
          -7,
          -7,
          -7,
          -2.926104889240625,
          -2.996560313525334,
          -3.851074805228887,
          -3.0599418880619544,
          -2.3823499028148887,
          -7,
          -3.8535156967569284,
          -4.151890568735089,
          -2.979912410334717,
          -3.8542452970661185,
          -4.157577640520729,
          -3.5245691995124906,
          -3.854518581489548,
          -7,
          -7,
          -7,
          -4.161547673125727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0897955195268247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8523884893737295,
          -7,
          -3.308625384287424,
          -3.48973354378241,
          -2.1959688020761106,
          -7,
          -3.85403262355994,
          -4.182756931040399,
          -7,
          -4.153296449355305,
          -3.852601969338235,
          -7,
          -3.2614710422736133,
          -3.7027463765507442,
          -7,
          -7,
          -7,
          -2.9004199914746116,
          -4.151768102895178,
          -7,
          -7,
          -7,
          -3.9039847969050228,
          -4.165481742822164,
          -7,
          -7,
          -3.7068457481036043,
          -3.4533795039767075,
          -3.0424846400112133,
          -7,
          -3.676205706771244,
          -7,
          -7,
          -7,
          -7,
          -3.084457113581298,
          -3.5557290949540867,
          -3.215784388711792,
          -3.856275634663985,
          -3.6853834098014873,
          -7,
          -2.662035257986414,
          -3.8615642787784408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153967221645479,
          -7,
          -7,
          -3.9072769666896816,
          -7,
          -7,
          -7,
          -3.1252446090735795,
          -7,
          -7,
          -4.156549151331781,
          -3.5509922837391463,
          -2.5023677374066544,
          -7,
          -3.851380667965597,
          -3.120663652202327,
          -7,
          -2.5916980263724967,
          -3.8540933980467313,
          -7,
          -4.153814864344529,
          -7,
          -2.7945461345990545,
          -7,
          -4.2383472434264755,
          -3.3096956669331346,
          -7,
          -7,
          -3.857633985150008,
          -3.317056153661989,
          -7,
          -3.2205148668713357,
          -3.4806679478217943,
          -7,
          -7,
          -4.155578931476932,
          -3.680758419669491,
          -7,
          -7,
          -3.5199404421814484,
          -7,
          -7,
          -7,
          -4.151706857022576,
          -7,
          -2.0148460455784836,
          -3.5209810814192983,
          -3.619771386161673,
          -3.8673201445219627,
          -7,
          -7,
          -7,
          -7,
          -3.2604887781968306,
          -7,
          -3.397418542351348,
          -7,
          -4.153540486438023,
          -7,
          -2.739673319684656,
          -7,
          -7,
          -7,
          -4.160678574400385,
          -7,
          -7,
          -3.2179224041016314,
          -7,
          -3.6840370374865197,
          -7,
          -3.863976783904387,
          -3.4568820206232487,
          -7,
          -2.5214488119418825,
          -3.374412263872896,
          -7,
          -7,
          -4.154058610376971,
          -4.152838509892218,
          -7,
          -7,
          -3.1157768761589635,
          -7,
          -3.070304726837112,
          -7,
          -7,
          -2.1140592839654127,
          -4.154028149603197,
          -7,
          -3.6858611158657704,
          -3.688182437748698,
          -4.168939213835978,
          -7,
          -7,
          -7,
          -3.4615585495157384,
          -7,
          -3.853789440530192,
          -4.187097500583477,
          -7,
          -7,
          -7,
          -3.2679925903655827,
          -7,
          -2.229442192497785,
          -7,
          -2.9143137682186073,
          -3.8529067587969537,
          -3.199328471994455,
          -4.151706857022576,
          -3.8514723847971446,
          -7,
          -7,
          -7,
          -7,
          -3.727703883685354,
          -4.158302169228023,
          -7,
          -4.152104800892868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.166341291983498,
          -2.868585666558766,
          -2.730302712943313,
          -3.034457362461151,
          -4.151829340131871,
          -4.152838509892218,
          -7,
          -7,
          -7,
          -7,
          -4.158814646724227,
          -7,
          -7,
          -7,
          -4.151553704542976,
          -7,
          -4.152318927424645,
          -7,
          -7,
          -4.1572451604751945,
          -2.58726921598461,
          -7,
          -7,
          -7,
          -3.851930678640268,
          -2.977418730245156,
          -3.154210882206974,
          -7,
          -3.8567288903828825,
          -3.575851484766047,
          -3.8524494943579435,
          -7,
          -2.7275132117938496,
          -7,
          -7,
          -7,
          -3.247591421035026,
          -4.164144582470177,
          -2.9325660009484786,
          -4.160678574400385,
          -2.9321194300820244,
          -7,
          -7,
          -4.153296449355305,
          -2.548329190632523,
          -3.569958818096594,
          -4.175163774491954,
          -2.95724097214691,
          -3.8856721269011203,
          -7,
          -7,
          -7,
          -3.553731361029655,
          -3.0876927048111944,
          -3.68436653636779,
          -7,
          -4.158332331708981,
          -3.2542458751053367,
          -4.153448988600982,
          -3.4538685055562,
          -3.8555797225017177,
          -2.6471383660631504,
          -2.789293385338263,
          -2.6504252739580907,
          -3.4623380910801975,
          -3.252731702726023,
          -2.44973545423003,
          -4.156670276554126,
          -7,
          -3.4488829162201706,
          -7,
          -3.851288931760664,
          -4.161936705245781,
          -7,
          -3.1838959153856106,
          -2.8398370426266326,
          -7,
          -7,
          -3.174117981254267,
          -7,
          -2.5297891748700816,
          -2.874452825110791,
          -7,
          -7,
          -7,
          -3.579240388938858,
          -3.467756051244033,
          -7,
          -4.153814864344529,
          -3.8595885767354927,
          -7,
          -3.6743711737058353,
          -7,
          -7,
          -4.1553056661596255,
          -7,
          -3.258996253248911,
          -7,
          -3.0814799602050034,
          -3.5175389738505816,
          -2.942073717201575,
          -7,
          -2.7162048924416333,
          -2.897334389207353,
          -3.0971415749873645,
          -7,
          -3.862250674597925,
          -7,
          -2.9683661870310103,
          -3.142884596540962,
          -3.33139837151611,
          -3.6752588323279403,
          -7,
          -7,
          -2.5841823863380733,
          -7,
          -4.1573358620972805,
          -3.454692449239477,
          -3.7024305364455254,
          -7,
          -2.4549785096424017,
          -7,
          -7,
          -2.6183234022565913,
          -3.13623546780067,
          -3.813487581861325,
          -7,
          -4.1335708406140395,
          -2.4785937181144218,
          -3.1987716009911846,
          -3.3864320772662224,
          -1.3425548681430048,
          -7,
          -2.6434703017162744,
          -3.0039249234108576,
          -4.074018770866754,
          -3.3973736557725545,
          -2.485011214578573,
          -7,
          -3.8065756350216424,
          -2.292733285312222,
          -4.377979759421654,
          -3.33875919891799,
          -3.8652422000895097,
          -3.578688759389185,
          -2.7162069987296933,
          -2.5027771598856288,
          -3.5664206554863935,
          -3.9741738279230225,
          -4.272429557401614,
          -2.891609720508594,
          -7,
          -2.4286565668208406,
          -2.6522463410033232,
          -3.938569756221061,
          -3.795421160051872,
          -3.2581581933407944,
          -3.225739915853267,
          -4.494961186838928,
          -7,
          -3.015371732477427,
          -3.283662990058831,
          -2.8858698609039064,
          -3.0031444621427994,
          -3.0188363111861225,
          -1.3932312730031822,
          -2.9448190303561415,
          -3.467548913204926,
          -3.171123924298172,
          -4.174641192660449,
          -2.700899887533364,
          -2.666822611197495,
          -2.482901594475409,
          -2.5567610204106916,
          -2.819214799882384,
          -3.5011049269548633,
          -7,
          -3.206511055806463,
          -4.187548920861271,
          -3.4584867637982066,
          -3.5333398359919688,
          -3.236211136661891,
          -2.846928464489655,
          -7,
          -1.4345612582962384,
          -2.2279710176578824,
          -3.1139246438338923,
          -7,
          -4.201233208680875,
          -3.4577305482459986,
          -2.5245036399592644,
          -4.270911639410481,
          -3.462154039880011,
          -1.535171570689024,
          -2.8472641017707647,
          -4.154971441544471,
          -1.9106051781102933,
          -2.9037228717450034,
          -2.249726155748044,
          -3.075827604040037,
          -3.0884668537446456,
          -3.5424768560096274,
          -7,
          -3.9205146413632144,
          -7,
          -2.2859456643213187,
          -2.8833086265318304,
          -3.8753796292918614,
          -2.415873026123643,
          -7,
          -2.6310047550946627,
          -3.1402420571552554,
          -3.5394345754799916,
          -3.8573324964312685,
          -7,
          -7,
          -7,
          -3.369907073710945,
          -2.625624754276346,
          -3.855761372339948,
          -3.1384749461121815,
          -3.559577489376628,
          -2.3176080294298718,
          -1.4142259545382132,
          -3.5764565324056203,
          -3.8579051461659373,
          -7,
          -1.7563016807504868,
          -3.558648580964467,
          -2.2268451186946043,
          -3.132579847659737,
          -3.470733812658553,
          -7,
          -3.2906355262615454,
          -2.989115958983829,
          -3.0759898930799845,
          -3.0640257837025393,
          -7,
          -2.737782385855657,
          -7,
          -4.1784301399477375,
          -3.5632140189832664,
          -3.857573704147496,
          -7,
          -1.7369932022994319,
          -7,
          -7,
          -3.0242753677211147,
          -2.385037929389288,
          -2.6856029843554237,
          -7,
          -4.2122941666623515,
          -3.5602355114447897,
          -3.885191540606848,
          -3.8566382770747882,
          -7,
          -3.854002233126989,
          -3.043283665570575,
          -7,
          -3.688271472050148,
          -3.776555910703262,
          -4.1532659350758685,
          -2.13593313027341,
          -4.168939213835978,
          -3.502263204344856,
          -7,
          -7,
          -7,
          -3.7009343568115676,
          -2.43605164525564,
          -7,
          -7,
          -7,
          -7,
          -2.3233810283251954,
          -4.1711704349016205,
          -3.566231197523304,
          -3.228470355396186,
          -7,
          -2.281167099190864,
          -3.385933807075215,
          -3.175327282032053,
          -7,
          -4.165481742822164,
          -3.2354118942883665,
          -7,
          -3.0019385633322884,
          -3.8688500772104053,
          -3.857422965024847,
          -3.684815450526118,
          -3.418991414588919,
          -7,
          -3.8531199842175665,
          -2.431875257677071,
          -3.022781743444123,
          -7,
          -2.2541785637644396,
          -4.174379665748987,
          -3.444643230730063,
          -7,
          -1.5688414901761636,
          -2.776560597696845,
          -2.8531448998375213,
          -3.347748075174585,
          -7,
          -4.152380087047603,
          -3.282342167993069,
          -4.216772698429039,
          -4.156215882676762,
          -3.722249906671828,
          -1.4622099218397608,
          -3.707485011967474,
          -1.2179593624134388,
          -2.2205063163424663,
          -3.015999120957349,
          -3.678032523045486,
          -7,
          -7,
          -4.152838509892218,
          -4.162175936530162,
          -2.4737496570134776,
          -3.925879089301501,
          -7,
          -7,
          -7,
          -2.061750828376922,
          -7,
          -7,
          -4.155214539497588,
          -4.156367400133521,
          -7,
          -7,
          -7,
          -2.204572137284902,
          -3.9060925019869828,
          -4.167701234971368,
          -7,
          -4.17207725696948,
          -7,
          -7,
          -7,
          -3.8585973449946924,
          -7,
          -4.160048139552876,
          -3.269606330839479,
          -3.0594119374386564,
          -3.323638769865047,
          -4.156246190397344,
          -7,
          -3.4317121323179034,
          -7,
          -7,
          -2.8008227846190157,
          -7,
          -7,
          -2.826412862771272,
          -3.381527638581548,
          -3.572028904135723,
          -7,
          -7,
          -7,
          -7,
          -3.097852030062842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504271453579076,
          -3.517855418930029,
          -7,
          -7,
          -2.034739066153002,
          -2.8675984177611293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.004536317851323,
          -3.793301353613115,
          -7,
          -7,
          -2.8524072395241404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983829181069782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3988077302032647,
          -2.7285161047597666,
          -7,
          -7,
          -7,
          -2.848225351982192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4127964287165433,
          -7,
          -3.0988743654836055,
          -2.914166793875635,
          -7,
          -7,
          -3.2493206766376344,
          -7,
          -7,
          -7,
          -3.4183012913197457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8126125871077585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.182414652434554,
          -3.7987887139512493,
          -7,
          -3.1269427179442277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9875173043753707,
          -3.4326486600131068,
          -7,
          -7,
          -7,
          -7,
          -2.217024327282991,
          -3.1556396337597765,
          -3.1089031276673134,
          -3.3984608496082234,
          -7,
          -7,
          -2.929929560084588,
          -3.4109458586877746,
          -7,
          -7,
          -2.951337518795918,
          -7,
          -7,
          -7,
          -3.479719235439571,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5517548730165664,
          -7,
          -2.447790652695018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1053398398052865,
          -3.27330999394054,
          -2.323134189499164,
          -7,
          -7,
          -7,
          -4.152746864026461,
          -7,
          -7,
          -2.8380931384455983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.061037590063418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7031685051564884,
          -3.214755567839669,
          -7,
          -7,
          -3.4194600727860704,
          -3.629817196018516,
          -7,
          -7,
          -2.616850455189505,
          -3.6871721045948,
          -3.52022143588196,
          -7,
          -7,
          -7,
          -3.0731070983354316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505421327583281,
          -7,
          -3.4499409887733377,
          -7,
          -7,
          -7,
          -7,
          -3.299328264363879,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4931871179946894,
          -7,
          -2.987368292714309,
          -7,
          -7,
          -7,
          -3.051023823533444,
          -2.8424532150060804,
          -7,
          -7,
          -7,
          -7,
          -2.9661417327390325,
          -7,
          -7,
          -7,
          -3.5474054596674898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7964355588101744,
          -3.7466341989375787,
          -3.3500268159642492,
          -7,
          -7,
          -7,
          -3.1718726561396826,
          -7,
          -7,
          -7,
          -3.4073909044707316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4777722083492573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7725967217074574,
          -3.586812269443376,
          -7,
          -7,
          -3.1049989492996337,
          -3.628695382714023,
          -7,
          -3.3799095435529614,
          -7,
          -4.051178257654162,
          -7,
          -7,
          -7,
          -3.206893307827949,
          -2.803320523578754,
          -7,
          -2.97231857308512,
          -3.089905111439398,
          -3.100198171834132,
          -3.4034637013453173,
          -7,
          -7,
          -7,
          -3.451632947456991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0958664534785427,
          -7,
          -7,
          -7,
          -2.743234794886994,
          -7,
          -7,
          -3.602548297999073,
          -7,
          -7,
          -7,
          -7,
          -3.5576274884268266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7410930796679323,
          -2.3739622924346047,
          -7,
          -7,
          -7,
          -3.545059584694003,
          -3.177103432436536,
          -7,
          -7,
          -3.446847710155809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.456214155357989,
          -1.8711263248776597,
          -3.273695587930092,
          -3.680516809381255,
          -3.7645338283040592,
          -7,
          -3.061954844073114,
          -4.095587746918743,
          -3.5251744278352715,
          -7,
          -2.760271660542063,
          -7,
          -3.031139050792672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.474507639116976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.369308645463461,
          -7,
          -7,
          -4.340572995903572,
          -4.463975064379387,
          -7,
          -7,
          -7,
          -7,
          -3.017986785306103,
          -2.7357106522811234,
          -3.575172444141053,
          -7,
          -3.8152455919165633,
          -3.521377838762743,
          -7,
          -7,
          -4.432391984779924,
          -7,
          -3.3132505321629835,
          -4.372792371489067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3535934043217672,
          -3.848958460827495,
          -7,
          -7,
          -3.639030895749854,
          -7,
          -3.218010042984363,
          -4.278456350394209,
          -4.305512587470589,
          -4.291057894434276,
          -3.4607224866342263,
          -3.4532673635246596,
          -3.5926430126038604,
          -3.4328090050331683,
          -4.3918169236132485,
          -4.126926506574775,
          -2.9437988035219163,
          -7,
          -3.149823711791301,
          -4.350771183053166,
          -2.470840026689671,
          -3.1760912590556813,
          -3.530103604722902,
          -2.4706242843379016,
          -1.8886500259978922,
          -7,
          -7,
          -7,
          -2.9755669553850708,
          -3.1670217957902564,
          -7,
          -2.6028022288404826,
          -2.101794462727242,
          -7,
          -3.0329409377808534,
          -3.769254209283846,
          -7,
          -7,
          -3.4417823871692685,
          -2.244982936312322,
          -4.878119484697168,
          -7,
          -7,
          -7,
          -3.936252282852836,
          -7,
          -3.8071773174683865,
          -3.4994808812303866,
          -7,
          -7,
          -3.834611420722687,
          -4.093911741049379,
          -4.326479236380961,
          -3.5826314394896364,
          -2.1504624790069746,
          -1.8744431604844423,
          -3.9205146413632144,
          -7,
          -7,
          -2.8798635551649716,
          -3.6355284250189435,
          -2.1367205671564067,
          -3.8777551677965714,
          -7,
          -3.323355245756284,
          -2.518098148097058,
          -3.4971716237529193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.935003151453655,
          -7,
          -2.69397805877852,
          -7,
          -7,
          -7,
          -7,
          -3.438067450453494,
          -7,
          -3.619979805833053,
          -7,
          -4.651142275762345,
          -2.81424759573192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.264968855694732,
          -3.296476062321468,
          -7,
          -7,
          -3.1547282074401557,
          -7,
          -7,
          -7,
          -3.4171394097273255,
          -3.6920533650340808,
          -7,
          -7,
          -7,
          -3.40705081480425,
          -3.0191756567901225,
          -7,
          -7,
          -7,
          -7,
          -3.423245873936808,
          -2.8305886686851442,
          -7,
          -7,
          -3.4168068718229443,
          -7,
          -7,
          -3.6396358768118477,
          -7,
          -7,
          -7,
          -7,
          -3.834092050101445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.871689665685515,
          -7,
          -7,
          -3.15259407792747,
          -7,
          -7,
          -7,
          -2.952861603722939,
          -7,
          -7,
          -3.5775492423982382,
          -7,
          -7,
          -7,
          -7,
          -3.8396665568824333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1406127806443553,
          -7,
          -7,
          -7,
          -4.331326050575092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4194600727860704,
          -7,
          -3.9155053617543767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.841547165256553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.328277644409767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.531478917042255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0472748673841794,
          -7,
          -3.906065544755237,
          -7,
          -7,
          -7,
          -3.764227878947755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.639486489268586,
          -7,
          -7,
          -7,
          -3.296465743882869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2346859743215286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.841359470454855,
          -2.6035052322021435,
          -7,
          -7,
          -7,
          -3.2541047755068098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.851869600729766,
          -7,
          -7,
          -4.220944476323413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.944975908412048,
          -7,
          -7,
          -7,
          -3.3435923832614898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.886490725172482,
          -7,
          -7,
          -7,
          -7,
          -2.89707700320942,
          -2.484299839346786,
          -7,
          -2.7895807121644256,
          -7,
          -3.762903528499057,
          -7,
          -7,
          -1.6476623490125806,
          -0.9905303695254535,
          -2.4261044280965076,
          -7,
          -2.3215725418490862,
          -7,
          -7,
          -7,
          -2.6857417386022635,
          -4.260182731270367,
          -7,
          -7,
          -3.0806264869218056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.906335041805091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -2.82020145948564,
          -7,
          -3.0273496077747564,
          -7,
          -7,
          -7,
          -3.7771367125041726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4983511022684035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8850922984181877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -2.7427251313046983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3428173146357327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6471383660631504,
          -7,
          -7,
          -5.149727032473089,
          -7,
          -7,
          -7,
          -2.8603380065709936,
          -7,
          -7,
          -2.688419822002711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5490032620257876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2079035303860515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6231458746379395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.113943352306837,
          -2.412740466538526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4387005329007363,
          -7,
          -7,
          -7,
          -4.3067787530377135,
          -7,
          -7,
          -3.760648619581356,
          -7,
          -7,
          -7,
          -7,
          -3.1344958558346736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.621193597796724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4055171069763763,
          -5.4331919899766925,
          -7,
          -2.4807253789884878,
          -3.1835545336188615,
          -7,
          -2.3873898263387296,
          -2.3256524705723134,
          -7,
          -2.081437326351849,
          -2.359835482339888,
          -3.0409976924234905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6424645202421213,
          -7,
          -2.7763379096201755,
          -7,
          -3.386498965550653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.1644343445700975,
          -7,
          -3.702710497195296,
          -2.73814608871206,
          -7,
          -7,
          -7,
          -4.54383222047354,
          -2.6713152810508642,
          -2.2663885100087673,
          -3.594613509160098,
          -4.14157518330082,
          -3.4067955726682504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.358886204405869,
          -7,
          -3.4518631592206126,
          -4.980148869966749,
          -7,
          -2.5888317255942073,
          -2.9923325590474645,
          -7,
          -4.134920489925607,
          -7,
          -7,
          -3.6097011023793995,
          -7,
          -2.075546961392531,
          -7,
          -3.7060346607143506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1284531213413365,
          -4.263043983313166,
          -7,
          -3.6794884634460368,
          -7,
          -7,
          -3.306425027550687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9926418698783976,
          -2.323252100171687,
          -7,
          -7,
          -3.386320573894046,
          -7,
          -7,
          -7,
          -2.224014811372864,
          -3.7846885995014214,
          -7,
          -4.628777066916437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.840419777736486,
          -7,
          -7,
          -3.4888326343824008,
          -7,
          -7,
          -2.8512583487190755,
          -1.667452952889954,
          -7,
          -3.834674974462744,
          -7,
          -7,
          -7,
          -4.340582908247528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5622928644564746,
          -7,
          -7,
          -7,
          -7,
          -1.8736111969964673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.549749537701614,
          -2.1245042248342823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.526339277389844,
          -3.6068111469189637,
          -7,
          -7,
          -7,
          -7,
          -3.1436392352745433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.584082338518372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5786392099680726,
          -7,
          -4.152838509892218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1920095926536702,
          -2.5786392099680726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9719249491841913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.580674129529291,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.044539760392411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.325169853067657,
          -4.60336092434838,
          -7,
          -7,
          -4.603025223127586,
          -7,
          -7,
          -3.9043800949900676,
          -3.281433803271223,
          -2.800421747228451,
          -3.8334021292318585,
          -7,
          -7,
          -2.816033430174598,
          -2.6617732597751806,
          -3.1121182879546594,
          -4.1304302676581415,
          -7,
          -3.029586671630457,
          -7,
          -2.4572433221712098,
          -3.5621936991445007,
          -7,
          -3.5319682869631666,
          -1.8985153536370132,
          -7,
          -3.7009415623278796,
          -4.001095211443513,
          -3.525563058270067,
          -3.8261828227192676,
          -3.760012985109646,
          -2.977637880812752,
          -3.4903367141452675,
          -7,
          -4.6044096711329505,
          -4.127925077465084,
          -4.12949654301666,
          -4.12602311790052,
          -4.30407024797259,
          -7,
          -4.3172691867066195,
          -7,
          -2.605864781665245,
          -4.603220178008266,
          -2.880705760006643,
          -4.60591887481288,
          -7,
          -4.126834630715719,
          -4.603988314428608,
          -4.302731264944306,
          -7,
          -3.7587713562655973,
          -4.01456253812761,
          -2.296694434696538,
          -7,
          -3.649951132399792,
          -3.6142009437289793,
          -4.604604005662973,
          -7,
          -4.302806962741421,
          -7,
          -7,
          -3.835109009618324,
          -7,
          -7,
          -7,
          -2.5002744574000397,
          -4.126012287479145,
          -7,
          -7,
          -7,
          -2.96865932865102,
          -3.5664696331901315,
          -7,
          -3.9099516346165966,
          -3.0979972823670283,
          -7,
          -3.701848502207992,
          -7,
          -4.3027204498961344,
          -7,
          -7,
          -4.302633919813779,
          -7,
          -3.4032063416448066,
          -4.128216119832209,
          -3.0528435107623086,
          -3.906108675522897,
          -3.5276299008713385,
          -7,
          -1.8664891445287781,
          -3.264184372768502,
          -7,
          -7,
          -7,
          -7,
          -4.603750445560116,
          -3.3995114795956187,
          -3.6033609243483804,
          -7,
          -3.1048697542030097,
          -7,
          -7,
          -7,
          -3.462301715051026,
          -7,
          -4.126293790693266,
          -4.303822199862847,
          -4.12653184328548,
          -2.756153779095104,
          -7,
          -4.603425868816548,
          -3.5276406399690727,
          -3.7026889681591335,
          -2.1476292279157922,
          -4.604388073038561,
          -4.60518648804185,
          -4.603901831731672,
          -3.4926744454294854,
          -3.031365936393981,
          -4.302633919813779,
          -3.237382858540404,
          -2.745224339164012,
          -7,
          -7,
          -4.3045982263436375,
          -3.050227801195228,
          -4.604020741000524,
          -3.407178379640504,
          -3.533909685986936,
          -3.527898298680946,
          -4.604258461911163,
          -3.458119623559412,
          -4.128226895434375,
          -7,
          -7,
          -3.6495826527746433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.618700389595784,
          -2.518801729103482,
          -3.166358649407166,
          -3.4627294755267726,
          -4.303455260341883,
          -3.433223740977953,
          -4.302731264944306,
          -7,
          -3.6073477767684134,
          -3.627847001305857,
          -3.1641190727500446,
          -7,
          -4.302752894232717,
          -4.001690454232153,
          -2.1944591769417783,
          -7,
          -4.603241834260485,
          -4.604258461911163,
          -4.129184854827195,
          -4.3022226663176655,
          -7,
          -3.707431775903971,
          -4.607412127814179,
          -3.9075080987704354,
          -7,
          -3.2650537885040145,
          -3.65029672770863,
          -4.604085586881876,
          -2.3082523908915555,
          -4.302514912793019,
          -4.30225514786152,
          -7,
          -7,
          -4.603555728624722,
          -3.9050183100925886,
          -4.001279282706004,
          -3.127188429114518,
          -7,
          -3.5590130051978,
          -4.302157695941016,
          -4.008961933117199,
          -2.0499724842459552,
          -4.603977505033251,
          -4.130473149293476,
          -3.7619922371773242,
          -4.130891023495683,
          -3.910272131395313,
          -3.7673149191811577,
          -3.827993553315733,
          -4.127903511010362,
          -7,
          -3.905644795140426,
          -7,
          -3.3852171160984486,
          -7,
          -7,
          -7,
          -3.1910000242876015,
          -7,
          -3.3223330236343784,
          -7,
          -3.7646990637983677,
          -7,
          -7,
          -4.603155202771475,
          -4.126293790693266,
          -4.605811248305117,
          -7,
          -7,
          -4.126001456787675,
          -3.8444771757456815,
          -3.605305046141109,
          -7,
          -4.603295970166954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6083869514996945,
          -2.8233673153857817,
          -3.172310968521954,
          -3.110911824815142,
          -4.302146866599888,
          -4.603555728624722,
          -7,
          -4.307175012040345,
          -7,
          -4.603306796538514,
          -4.304630530707381,
          -7,
          -7,
          -7,
          -7,
          -4.60336092434838,
          -4.126207193752344,
          -7,
          -7,
          -4.605121806343587,
          -2.87499984366751,
          -7,
          -7,
          -7,
          -7,
          -3.5624875232080653,
          -4.3031852539407955,
          -7,
          -3.4589182965065093,
          -3.8344101058342694,
          -7,
          -3.304244259277009,
          -2.9354127889420147,
          -4.603133542198807,
          -4.603220178008266,
          -7,
          -3.4753182974419126,
          -4.306542968060749,
          -2.879280592584869,
          -4.60634911432292,
          -2.9439644754792935,
          -7,
          -7,
          -3.9046614579155245,
          -2.4505272220763104,
          -3.2676409823459154,
          -3.569990699550751,
          -2.5931805404783503,
          -3.5742733523184973,
          -4.126196367920531,
          -7,
          -7,
          -4.002544014335011,
          -3.2659428694809183,
          -3.4924810101288766,
          -7,
          -3.8272507737711705,
          -7,
          -7,
          -4.126477751880373,
          -4.127752515832973,
          -4.001906704040885,
          -2.9656617533678844,
          -3.308575084056243,
          -3.761433797113758,
          -4.00264114900004,
          -2.3282378357250217,
          -3.563308455169777,
          -4.603317622640193,
          -3.57966929355472,
          -7,
          -4.60339339779644,
          -4.004675974470456,
          -4.604096393587492,
          -3.4686004895460547,
          -3.3058348440883205,
          -3.534311732164361,
          -4.605897351644974,
          -3.766179064078007,
          -7,
          -2.4018192554030393,
          -2.825511246424534,
          -4.3024283417450855,
          -4.000997730357794,
          -4.302168525012116,
          -3.835658870008277,
          -2.9173876039727284,
          -7,
          -4.126737329204574,
          -3.492147669460123,
          -4.603231006269363,
          -7,
          -7,
          -3.6509331989884437,
          -7,
          -4.3024283417450855,
          -3.0499498468203896,
          -4.604139617721083,
          -3.0448870428359847,
          -3.6728672017718136,
          -2.6916399187247166,
          -7,
          -2.736821292120416,
          -3.0680872527130307,
          -3.1645228008000683,
          -7,
          -3.9082490417283884,
          -3.649972740165452,
          -3.1479427135532005,
          -2.8802724280098246,
          -3.381423019450003,
          -4.126272143076777,
          -4.603144372620182,
          -7,
          -2.3301438206546727,
          -7,
          -3.906097893232545,
          -3.758706478093696,
          -3.5716453183444794,
          -3.9049966910328284,
          -2.5163287539376213,
          -7,
          -7,
          -2.914017096150432,
          -3.1884748650838253,
          -3.8125791554090465,
          -4.005330687197071,
          -3.5688077482898857,
          -3.6686136699931597,
          -3.421555540208102,
          -2.478997784566411,
          -1.6359740309170805,
          -4.603415045412929,
          -3.1990777777050927,
          -2.8272287565088057,
          -3.568584306222322,
          -3.2077227048870984,
          -2.548146339077636,
          -4.292802288802934,
          -3.6623462708433094,
          -2.517474255510426,
          -3.852000471450028,
          -3.041727876544049,
          -3.60114520058165,
          -2.6541476783893043,
          -2.9666477694787634,
          -2.5211034302444606,
          -3.59956399102238,
          -4.43288915534841,
          -3.768077564256461,
          -2.2281642565150674,
          -7,
          -2.1080732087659397,
          -3.150049945162385,
          -3.1756121573812774,
          -3.414236244397732,
          -2.906335041805091,
          -3.009866199603352,
          -3.325470051381601,
          -3.3105148857863513,
          -2.6651677940598373,
          -3.0086407202407206,
          -2.554658369696338,
          -3.3577549119189194,
          -2.1048164029455747,
          -2.2925046365073523,
          -3.064659538033753,
          -2.412083448112903,
          -2.6777604106572355,
          -2.6905803358869598,
          -1.8504177381054372,
          -2.93721499711337,
          -3.663899761406957,
          -3.0046332186164886,
          -2.507197252114352,
          -2.0761662517354678,
          -7,
          -1.5596980647057543,
          -2.3952257583370415,
          -7,
          -3.0306300769965593,
          -2.6065710271626346,
          -3.779390322499192,
          -4.608632989490037,
          -1.9199113500563203,
          -1.4938986418652622,
          -3.185214973180491,
          -4.604604005662973,
          -3.240632438491053,
          -4.605013982101039,
          -2.124140950466047,
          -4.3480905842171556,
          -3.3055117346226393,
          -2.44086924401704,
          -3.479532970135968,
          -4.303260872655577,
          -3.32508541707219,
          -3.0451055597673964,
          -2.859753377160808,
          -3.274388795550379,
          -2.2133690616540425,
          -2.6308003100834934,
          -2.2859456643213187,
          -2.8798635551649716,
          -4.1284531213413365,
          -7,
          -2.4846313880499444,
          -3.2894296777830814,
          -3.2648230680803016,
          -3.835764532624219,
          -2.7624910040260096,
          -3.6880538004138907,
          -3.0464864930994575,
          -4.3044905277734875,
          -4.6044528640996845,
          -7,
          -7,
          -3.2660552139992545,
          -2.541412229580903,
          -4.303930064275368,
          -2.6525863391471938,
          -4.606757447446635,
          -3.4217170096674763,
          -2.239436555168604,
          -3.6126991080645925,
          -4.00362206995102,
          -7,
          -2.542435784521191,
          -4.305372868641297,
          -2.5955968983040805,
          -2.9476574395062145,
          -7,
          -7,
          -3.1129591096853653,
          -3.919559212435094,
          -3.851390859681218,
          -7,
          -4.608793373986931,
          -2.7504170360248934,
          -7,
          -4.311743268378236,
          -3.493865396394858,
          -3.8273692730538253,
          -7,
          -2.810484550780126,
          -7,
          -7,
          -3.610440956871625,
          -2.2308324786210756,
          -2.7283675405386587,
          -7,
          -4.6255593728759745,
          -3.4306017402583806,
          -4.314646564169264,
          -4.128129905388509,
          -7,
          -4.30330407743893,
          -3.3494717992143856,
          -7,
          -4.608087238735641,
          -4.340999022531442,
          -4.126542660758098,
          -3.3096785486972573,
          -3.6549141836078363,
          -3.2785457548220838,
          -4.302125207107494,
          -4.611245214834831,
          -3.826495928923713,
          -2.904068176024568,
          -3.5573798033833013,
          -7,
          -3.759106405842074,
          -3.905720344324213,
          -3.940606123624698,
          -2.2921992525584747,
          -7,
          -7,
          -4.171736202017041,
          -4.607176127348896,
          -2.113498426251389,
          -2.9345951413783444,
          -3.8492248488826877,
          -4.606467355504293,
          -4.608076530882,
          -3.2062860444124324,
          -3.172581311073855,
          -3.374507165084317,
          -4.308639101521262,
          -4.605574376060999,
          -3.5274258075430835,
          -4.1427126678463475,
          -4.603209349477183,
          -4.604042357370141,
          -2.023585287134652,
          -4.308543071784684,
          -3.9096736792967133,
          -3.110050716147654,
          -7,
          -3.629562492778617,
          -4.611043195143434,
          -2.4884734467765677,
          -3.472112573021507,
          -4.017492446477275,
          -4.016155511951455,
          -4.603371749100861,
          -4.60339339779644,
          -3.1232129397311224,
          -4.326243665994105,
          -4.604755094644832,
          -3.7754335947062185,
          -2.301559831150869,
          -3.1231242235002017,
          -2.7590453913944355,
          -2.6724377682208376,
          -3.9605754142007257,
          -3.650005149798325,
          -4.1330489863973865,
          -7,
          -7,
          -2.8422325328084246,
          -3.4975462870162044,
          -3.9322301667562654,
          -7,
          -4.00238207493276,
          -7,
          -2.518118139018857,
          -3.75876054390998,
          -7,
          -4.604398872220019,
          -7,
          -4.607787318992725,
          -7,
          -7,
          -2.9279961994449373,
          -4.623590387791532,
          -7,
          -4.127342406950523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.827315413751728,
          -7,
          -2.6468348655844047,
          -4.157789086282048,
          -7,
          -7,
          -7,
          -3.6245399138793952,
          -4.302731264944306,
          -7,
          -2.696460051338408,
          -7,
          -7,
          -4.1396902216529226,
          -4.154109373586023,
          -7,
          -7,
          -7,
          -3.828219364730503,
          -7,
          -4.0362095668797355,
          -7,
          -7,
          -7,
          -4.261607787677791,
          -4.5616141210401855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9435742893274437,
          -7,
          -7,
          -7,
          -3.3747160071678457,
          -3.306800181689314,
          -7,
          -7,
          -4.5633149300417255,
          -7,
          -7,
          -2.4968011980452105,
          -3.700281762108918,
          -7,
          -4.269384504815968,
          -2.285557309007774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4494546633573377,
          -2.4370267586220122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.563552275376031,
          -7,
          -4.1008872548535935,
          -7,
          -2.61491227452664,
          -7,
          -7,
          -4.263375650509443,
          -7,
          -4.0851478121269045,
          -7,
          -7,
          -7,
          -7,
          -4.0990933597731,
          -2.596998642902258,
          -7,
          -7,
          -3.067872555625634,
          -7,
          -4.562007207036461,
          -4.5621619614618565,
          -7,
          -7,
          -4.271562825432305,
          -7,
          -7,
          -7,
          -1.7507143703221413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.266772463513072,
          -3.0142569205658902,
          -7,
          -4.086347964543191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.524702893919724,
          -3.9617057840025054,
          -3.7905314524809914,
          -4.26254600711293,
          -7,
          -7,
          -2.3525241236469903,
          -4.2646289582612225,
          -7,
          -7,
          -7,
          -7,
          -4.562042924490958,
          -7,
          -7,
          -7,
          -4.107164728282974,
          -4.562114350588686,
          -7,
          -7,
          -4.090328606823422,
          -7,
          -7,
          -7,
          -7,
          -3.965589710687253,
          -7,
          -7,
          -4.2646289582612225,
          -3.786171502733773,
          -2.5798750174111493,
          -7,
          -4.563623453690032,
          -4.56220956711611,
          -3.963350952906355,
          -3.5294186871545548,
          -4.56197148664423,
          -3.3664009809846007,
          -2.747286769372282,
          -7,
          -4.264451822935162,
          -4.564133223842105,
          -3.179312365346288,
          -7,
          -4.093526743699675,
          -3.5723603667301402,
          -7,
          -7,
          -4.5628992633333025,
          -7,
          -7,
          -7,
          -3.2419007136463427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1551535630443066,
          -3.208609290581607,
          -3.174585324070688,
          -7,
          -7,
          -3.849644590644391,
          -7,
          -7,
          -7,
          -3.3330440298234874,
          -3.570741362455255,
          -7,
          -7,
          -7,
          -2.2783344944909594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.569654763999852,
          -3.611640712232615,
          -3.963008230329139,
          -7,
          -3.9645071216655343,
          -4.5631012082812745,
          -7,
          -2.268999741029523,
          -4.5618404867309605,
          -7,
          -7,
          -7,
          -7,
          -4.562399937566829,
          -7,
          -3.0099674143453172,
          -7,
          -3.433469803182775,
          -7,
          -4.09294276329501,
          -1.9982710654658589,
          -4.261239071182586,
          -3.611888452446593,
          -4.264806021368701,
          -3.721539758930226,
          -3.8691143269793753,
          -3.7934411329776636,
          -4.087627637093355,
          -7,
          -4.564938152655192,
          -7,
          -4.56262589414616,
          -4.575511135352897,
          -7,
          -7,
          -7,
          -3.6068404347418768,
          -7,
          -3.504584122237375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3520803191505655,
          -3.609535123922841,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.562126253796315,
          -4.567144045195657,
          -3.6656396121264856,
          -3.3658182050172414,
          -2.551762876952401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.263115076181341,
          -7,
          -7,
          -7,
          -4.56132801668009,
          -7,
          -7,
          -7,
          -7,
          -4.563552275376031,
          -2.327788480037824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.562578334108671,
          -7,
          -4.563777633362166,
          -3.872785398110417,
          -7,
          -3.508001960690125,
          -3.21507405981132,
          -7,
          -7,
          -4.561947671417096,
          -3.5815742220419535,
          -4.089104047230036,
          -3.0692768548844684,
          -4.564902672529205,
          -2.410457246805854,
          -7,
          -7,
          -7,
          -3.459640154554527,
          -4.092311181205276,
          -4.570671341310066,
          -4.275069372441866,
          -3.973243342094437,
          -7,
          -7,
          -7,
          -4.563053700270299,
          -4.090446171178625,
          -7,
          -7,
          -4.563979170379509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0095179873019924,
          -4.267875419318898,
          -7,
          -7,
          -1.8332496962960916,
          -4.563326800389584,
          -7,
          -3.321132199092705,
          -7,
          -7,
          -7,
          -7,
          -3.1266299633528254,
          -3.963787827345555,
          -4.573010925673387,
          -7,
          -3.616031831994069,
          -7,
          -2.568561278550861,
          -3.6679896519391977,
          -7,
          -7,
          -7,
          -3.7949525327803477,
          -3.7891222049334066,
          -7,
          -4.56220956711611,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.264569921179731,
          -4.5624713049774686,
          -3.1631998609074703,
          -3.8888082879416745,
          -2.4752289628972193,
          -4.564038428178439,
          -2.785982944618427,
          -2.5120549607425273,
          -4.27034104958934,
          -7,
          -4.565954019011971,
          -7,
          -3.247259956560877,
          -3.6871497913170237,
          -7,
          -7,
          -7,
          -7,
          -3.868009281278586,
          -4.5620310189991775,
          -7,
          -7,
          -3.7272507007309033,
          -4.5623761458235395,
          -3.4102371919840464,
          -7,
          -7,
          -2.6506555784991606,
          -2.53868278690593,
          -4.0396995888283325,
          -4.265065583413968,
          -3.4771901848812075,
          -2.66755544932639,
          -2.932980821923198,
          -2.861484626428204,
          -2.3349294350274246,
          -7,
          -2.5457441400572276,
          -2.9921586590995553,
          -3.132601183145576,
          -3.1592619692400405,
          -1.5520219332595657,
          -3.294363860431569,
          -2.969272509849161,
          -1.8786372226067107,
          -3.4875342941571197,
          -3.0154673753195924,
          -3.94680584505315,
          -3.008774197448603,
          -2.9229947879131495,
          -2.4595410083588636,
          -3.149608480460239,
          -3.1345991834276594,
          -2.9392140854464,
          -2.5973430149761865,
          -7,
          -2.3471711118641507,
          -2.5658560713786627,
          -3.1302226216788993,
          -3.2652408424311914,
          -2.78413311507613,
          -2.813601514822185,
          -3.2227083443035465,
          -3.500117498811224,
          -2.821915301608853,
          -2.7247571938130504,
          -3.1648131980042757,
          -3.1741412484842906,
          -2.494374636005587,
          -2.666247158263108,
          -2.3278748299030187,
          -4.567308742295084,
          -2.783051077562302,
          -3.9683311524518685,
          -2.358446191254353,
          -2.2214298254626015,
          -2.914251150449555,
          -1.79996678529663,
          -2.049041329359675,
          -2.371481885568941,
          -4.273926780100526,
          -3.086621501154378,
          -3.4962606330422306,
          -4.262676484650911,
          -3.816395982944207,
          -1.8028997166794674,
          -3.438531047715789,
          -3.2244977469336202,
          -2.1348892809686673,
          -2.064907698019913,
          -2.850942982561628,
          -4.261928672990642,
          -3.3505330445844037,
          -3.416996924659806,
          -0.5737700405534676,
          -3.7085165023886946,
          -2.9392801385228218,
          -2.970292805028701,
          -2.1053713216250967,
          -3.960530233278372,
          -3.4057411103246222,
          -2.270366342963542,
          -2.5629349075011825,
          -3.113839662201766,
          -3.089969303957718,
          -3.006751199503011,
          -2.8833086265318304,
          -3.6355284250189435,
          -4.263043983313166,
          -2.4846313880499444,
          -7,
          -3.7929283885474976,
          -2.064000901642323,
          -3.670083426263088,
          -3.2005883290017714,
          -2.8473778063091553,
          -2.8954693687278734,
          -3.86494990015796,
          -4.562816082229735,
          -7,
          -7,
          -3.450900876048348,
          -1.5044884175991484,
          -4.262344282872842,
          -3.3683333807516376,
          -3.6109202833939147,
          -3.1388663510447565,
          -2.150196735710199,
          -2.880778604742453,
          -3.333411709141367,
          -7,
          -2.492843133456706,
          -3.5233562066547925,
          -1.8427318620121902,
          -3.025563322053369,
          -3.245888517670497,
          -3.5406365695176527,
          -1.7965078471454785,
          -2.964673473933623,
          -3.386008212064673,
          -4.094913466730015,
          -3.868526886768204,
          -2.13268651460904,
          -3.967910516906905,
          -3.7267504887286442,
          -3.867726690780445,
          -3.4846675287062974,
          -7,
          -2.6358897433686486,
          -4.2641800750358305,
          -4.56209054319465,
          -2.941392159191468,
          -1.3049624593163323,
          -2.3062498686537425,
          -4.561852397446954,
          -2.3755443405179504,
          -3.5239828175558485,
          -3.398761495462114,
          -4.262688344301696,
          -7,
          -3.7844389742226907,
          -2.8171618438797363,
          -7,
          -3.612383509312248,
          -3.0350401101934903,
          -4.0848264166974335,
          -2.62215055900234,
          -3.225262277614999,
          -3.3022739518555517,
          -7,
          -3.339463133018275,
          -3.7179081470475372,
          -3.726645720240912,
          -2.7960687999951257,
          -7,
          -4.261631565092629,
          -3.5629586686546233,
          -3.601212290310882,
          -2.783382848542842,
          -7,
          -4.5679903942616775,
          -2.7587413551231554,
          -3.3349856489294853,
          -1.649593059957502,
          -2.866240066363793,
          -3.019082592425777,
          -2.9620495355379868,
          -7,
          -3.287383001404188,
          -7,
          -2.5974209235343935,
          -4.091409000337585,
          -3.449822423023631,
          -3.662190990859007,
          -3.5795549604009986,
          -4.084278305722365,
          -4.562364249463112,
          -3.188863610434584,
          -3.5268442505473905,
          -7,
          -2.257107413023032,
          -3.5287297662461867,
          -3.548958648077225,
          -3.72482570577938,
          -2.682533359351777,
          -3.179115405187117,
          -3.278010092736105,
          -2.9538171981860746,
          -7,
          -7,
          -2.6066599758861706,
          -3.6334684555795866,
          -3.8640836959342795,
          -3.3249565862275174,
          -2.197373495100488,
          -2.72784322950962,
          -2.1039887903218193,
          -2.171607230416448,
          -2.7643629658980102,
          -3.9606491203532737,
          -3.967021168372457,
          -7,
          -7,
          -3.389071533777558,
          -2.978882520617143,
          -4.115088823225195,
          -7,
          -3.4486468722994976,
          -7,
          -1.9621879551647274,
          -7,
          -7,
          -3.784486532958129,
          -4.086039331268039,
          -3.4522583665480764,
          -3.961326155934711,
          -4.087473801905176,
          -3.547013492058355,
          -3.5422141112149736,
          -4.266631458809917,
          -3.8638104239716684,
          -3.6661785553856663,
          -4.561423405743846,
          -7,
          -4.260381487592611,
          -3.5228826933940454,
          -3.8649854606597938,
          -4.087485637315985,
          -2.1874668989130193,
          -3.3171172311500428,
          -3.1767811277123865,
          -4.085991829752375,
          -7,
          -3.0528523073252756,
          -3.9599472157084987,
          -7,
          -2.183768127867326,
          -7,
          -7,
          -3.214210135751011,
          -3.6889979031063134,
          -4.269256027417773,
          -4.26030994579492,
          -7,
          -3.5234153595283777,
          -7,
          -3.453547660380749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2177470732627937,
          -7,
          -7,
          -3.3757550347552243,
          -2.698013503939182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2380963076814093,
          -7,
          -7,
          -7,
          -3.173626112391373,
          -7,
          -7,
          -7,
          -3.0115704435972783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0170333392987803,
          -7,
          -7,
          -7,
          -3.395578760073066,
          -7,
          -7,
          -2.0863598306747484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.327767489902729,
          -3.1577588860468637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.579059168622478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2364364854163306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7168377232995247,
          -7,
          -7,
          -3.050031562368402,
          -3.0863598306747484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7846172926328756,
          -3.0472748673841794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2245330626060857,
          -7,
          -3.6008640363098396,
          -2.1282726609921685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.738516308715399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.515741416669365,
          -3.223625716693796,
          -7,
          -2.2900346113625183,
          -3.837967018368655,
          -7,
          -7,
          -3.1020905255118367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.099611590392529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8307249657259144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203304916138483,
          -3.773868689935876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1740598077250253,
          -7,
          -4.1101273185900435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7446840632768863,
          -7,
          -7,
          -2.957607287060095,
          -7,
          -7,
          -7,
          -2.8867726430544383,
          -7,
          -7,
          -7,
          -2.9429995933660407,
          -2.948412965778601,
          -7,
          -7,
          -3.1411360901207392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.61406366749503,
          -7,
          -7,
          -3.5027684123256932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2113875529368587,
          -7,
          -3.351848051536318,
          -2.625312450961674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.895146189375992,
          -4.479890284548756,
          -7,
          -7,
          -4.252173155771533,
          -7,
          -7,
          -7,
          -7,
          -3.199480914862356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.439079939868871,
          -7,
          -7,
          -3.505946584808965,
          -4.039604453125454,
          -7,
          -7,
          -3.980389744490009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.103786622411421,
          -3.606650028578439,
          -3.8353311524327784,
          -7,
          -7,
          -4.63202176705472,
          -4.15917603179347,
          -7,
          -2.9531405612996258,
          -7,
          -4.588529405160941,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.361841115455327,
          -7,
          -3.9913146981766108,
          -7,
          -3.1471952256995244,
          -7,
          -7,
          -3.132899769944483,
          -3.297724044876189,
          -2.4305587695227575,
          -1.829341470368647,
          -7,
          -3.358315640082196,
          -7,
          -3.045443348654918,
          -3.0569810366681134,
          -7,
          -2.7356714695842044,
          -2.2338418642756133,
          -7,
          -2.4258135993962244,
          -7,
          -7,
          -7,
          -4.0655797147284485,
          -2.5638900641249864,
          -4.69727003779242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.64436964836413,
          -7,
          -7,
          -7,
          -7,
          -3.7311050512159203,
          -7,
          -7,
          -1.5705429398818975,
          -1.189499829979621,
          -3.8753796292918614,
          -2.1367205671564067,
          -7,
          -3.2894296777830814,
          -3.7929283885474976,
          -7,
          -7,
          -7,
          -2.709439574132411,
          -3.668012971641832,
          -4.0385804259615785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.018534070428183,
          -7,
          -3.261976191397813,
          -7,
          -7,
          -3.7174624577374917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.63490027448999,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.647578554212455,
          -3.9684595987605533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5154764413823756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7786576319473553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.296687123772402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7241939195143297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.293384655649437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.331619598814896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.325655782561224,
          -4.639556209850188,
          -7,
          -7,
          -3.16367373995895,
          -3.3491664760112605,
          -4.632497783955012,
          -4.635745049128339,
          -4.633225990988621,
          -4.638149675666846,
          -7,
          -3.101549466237807,
          -3.6261069635526333,
          -7,
          -7,
          -2.239349687763895,
          -4.631748074396569,
          -4.030427670038405,
          -7,
          -7,
          -4.331741009037769,
          -4.156377499418026,
          -2.846392345502033,
          -4.632882267597585,
          -7,
          -7,
          -4.633397750722679,
          -3.7896512087934098,
          -7,
          -4.633428054213735,
          -7,
          -3.8005894413487176,
          -7,
          -2.5295417018298836,
          -4.63164666295842,
          -4.333296101617611,
          -7,
          -7,
          -4.632376297316548,
          -7,
          -7,
          -7,
          -7,
          -3.945222316635341,
          -2.6946417541696412,
          -4.6323357942172505,
          -4.6327204212336115,
          -4.642118133694582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039037170468973,
          -7,
          -7,
          -7,
          -2.1600081910853546,
          -7,
          -7,
          -4.6322547766847135,
          -7,
          -4.649996507466041,
          -4.335146862569169,
          -4.631960961368071,
          -4.637069241035025,
          -2.7751873723527694,
          -7,
          -4.332347551556558,
          -7,
          -4.632163613891242,
          -7,
          -7,
          -7,
          -7,
          -3.936744902547847,
          -4.156508768749401,
          -3.5584985707795957,
          -4.633468455579586,
          -4.334182232241241,
          -4.034718674639405,
          -2.459328928945867,
          -4.334192291524873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6323357942172505,
          -7,
          -7,
          -3.872932838859368,
          -7,
          -7,
          -7,
          -4.159627340658673,
          -7,
          -7,
          -4.633195673394554,
          -4.154930911986147,
          -3.522795219079118,
          -7,
          -7,
          -7,
          -4.15702336561913,
          -3.0003376533044324,
          -7,
          -7,
          -7,
          -4.334021252007486,
          -4.03769535853163,
          -7,
          -3.5158643859762524,
          -3.1849357906889892,
          -4.632173744035556,
          -4.635091498324376,
          -4.332872537394924,
          -3.2311922774468314,
          -4.632396547449762,
          -3.7362869187437133,
          -4.163956058605712,
          -4.635483746814912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5681598017268974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.051832155289801,
          -3.257073500468536,
          -3.701750221946291,
          -7,
          -7,
          -4.2116366158122185,
          -7,
          -7,
          -7,
          -4.654927001082143,
          -2.957557406567787,
          -7,
          -7,
          -7,
          -3.082753465050354,
          -7,
          -7,
          -7,
          -4.634578022853888,
          -7,
          -7,
          -3.7934111840437565,
          -4.158412754751622,
          -3.7895605681684152,
          -7,
          -3.6816532195389895,
          -4.633044053669549,
          -7,
          -2.753528668400722,
          -4.330920830595236,
          -7,
          -7,
          -4.632366171895849,
          -7,
          -7,
          -7,
          -3.801393908632056,
          -7,
          -3.053288028212929,
          -7,
          -7,
          -2.444930287804152,
          -7,
          -7,
          -4.635393259371746,
          -7,
          -4.637369631484764,
          -3.1484235191525474,
          -4.15732578507467,
          -4.633377547220539,
          -4.157446693916665,
          -7,
          -4.331589240955137,
          -3.9445813642269263,
          -7,
          -7,
          -7,
          -3.6273231761856515,
          -7,
          -2.8863740159456666,
          -7,
          -3.358816175464692,
          -4.632345920346211,
          -4.155204413132518,
          -7,
          -4.330819466495837,
          -4.031953515152245,
          -4.330687657787511,
          -7,
          -7,
          -4.649947891142217,
          -4.031660887671635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.331164007951355,
          -3.858236335429513,
          -3.9389298097006464,
          -3.9626912667546974,
          -2.4618437822769756,
          -7,
          -4.631960961368071,
          -7,
          -4.636337421853309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9115737192268285,
          -7,
          -7,
          -7,
          -7,
          -4.632467415481234,
          -7,
          -7,
          -7,
          -3.3848907965305544,
          -7,
          -7,
          -3.741939077729199,
          -7,
          -7,
          -7,
          -3.116871334402459,
          -7,
          -3.9777510335478743,
          -4.333527878521092,
          -2.1284278322668913,
          -4.331032303786008,
          -7,
          -7,
          -3.590479585986756,
          -3.793261408387223,
          -4.63949645003697,
          -4.16699223083011,
          -4.166351161976156,
          -7,
          -7,
          -7,
          -7,
          -4.335838869579954,
          -3.789671348585748,
          -7,
          -7,
          -3.934548947666147,
          -7,
          -7,
          -7,
          -7,
          -3.479795976082418,
          -4.035889806536247,
          -4.157708547654237,
          -7,
          -2.5190242649545627,
          -4.1560744186748915,
          -7,
          -2.91225809382997,
          -4.330748497546924,
          -7,
          -3.4886111428830153,
          -4.632467415481234,
          -4.040572674177254,
          -4.635443532501082,
          -4.3404441148401185,
          -4.634154704380864,
          -3.736087605088271,
          -7,
          -2.128563561760865,
          -3.598392527828595,
          -7,
          -7,
          -7,
          -4.039552912583547,
          -3.858446960810253,
          -7,
          -4.331234909038874,
          -4.333527878521092,
          -7,
          -7,
          -7,
          -4.63364011946669,
          -7,
          -7,
          -3.635010993287761,
          -7,
          -2.8421030098272815,
          -4.052097290944154,
          -2.153802931760111,
          -7,
          -3.4104695715094544,
          -2.80630333557594,
          -3.6857118891584975,
          -7,
          -4.158312223621103,
          -7,
          -3.638698865768533,
          -3.4256301060619636,
          -3.68567208670853,
          -7,
          -7,
          -7,
          -3.937377450772812,
          -4.0300124406298,
          -4.633458355590473,
          -4.3312652916762255,
          -4.038927992647938,
          -4.030306180567886,
          -3.476802655265517,
          -7,
          -7,
          -2.8706990460717736,
          -2.6297950538396533,
          -2.538633705624185,
          -4.635614417623872,
          -3.5626309001629304,
          -3.8050054042112746,
          -3.9787464205898777,
          -2.9205420041231145,
          -2.5190924328316933,
          -7,
          -3.6480508524599364,
          -2.3463857600530322,
          -3.013897483044927,
          -2.600269964081599,
          -3.0796075759467434,
          -3.374191200992188,
          -3.062413394164839,
          -2.4202208779093466,
          -4.2430876795053765,
          -3.171460029734501,
          -4.005403610458412,
          -2.5458736297858944,
          -3.4949629235687794,
          -2.189466104551766,
          -3.735766517790886,
          -3.5508014270092443,
          -3.3840460396756726,
          -3.4881090860079356,
          -7,
          -2.7453272910995308,
          -3.8698548372107338,
          -3.3881711982636977,
          -3.36178593172792,
          -3.4595206460387544,
          -3.3661560276036155,
          -3.415314549032263,
          -3.2684569231845684,
          -3.81253903397321,
          -2.7044690074905664,
          -3.4349217089943167,
          -3.1492191126553797,
          -2.7772632504185997,
          -2.1560455027012795,
          -2.847971643535726,
          -4.636628292196984,
          -3.3886259019870084,
          -7,
          -2.7176199065692925,
          -1.9235765957120772,
          -2.6571347401888503,
          -2.428875883579378,
          -2.841668389969892,
          -3.7238112811795303,
          -3.944127194858972,
          -3.7776714519557197,
          -7,
          -3.3779635912797032,
          -3.961003210960297,
          -2.3008710783668844,
          -3.8734659237113185,
          -4.636718522707071,
          -1.8575104719484488,
          -2.0251841199184506,
          -1.960728263701163,
          -3.5913479701696387,
          -3.7453968780059266,
          -3.855074740604978,
          -2.1852503345221805,
          -3.6746315375170773,
          -3.1693604467873184,
          -3.014641859190304,
          -2.7626624327434466,
          -4.030549125532981,
          -2.956491665902276,
          -2.1245042248342823,
          -2.4895536818701456,
          -4.644802810753064,
          -4.0704442499729465,
          -3.818273035484493,
          -2.415873026123643,
          -3.8777551677965714,
          -3.6794884634460368,
          -3.2648230680803016,
          -2.064000901642323,
          -7,
          -7,
          -7,
          -3.9495558852137727,
          -2.6710325168610387,
          -2.9442111532404787,
          -4.332771627853622,
          -3.3536834439309335,
          -7,
          -4.635724954531139,
          -4.133762384787346,
          -3.3386722591208517,
          -4.031176105055047,
          -3.56191591574931,
          -4.6349606700606385,
          -4.175994738445905,
          -2.2721936013114594,
          -4.16354896490181,
          -3.592419030368671,
          -7,
          -3.023529789754866,
          -4.157486989384848,
          -2.2068982162472084,
          -3.5598866845194808,
          -4.33665982345442,
          -7,
          -3.4037705275894505,
          -3.742852730737543,
          -3.4008448706355794,
          -4.6407000199084365,
          -3.9378186846983563,
          -3.8811182534521094,
          -4.638958241356926,
          -4.339570682001439,
          -3.937136588642368,
          -4.031781998819799,
          -7,
          -3.414603952694696,
          -7,
          -7,
          -3.0056517115817107,
          -2.517130143653564,
          -2.932264542286491,
          -7,
          -4.050486093182022,
          -3.680778547794163,
          -3.9442950953941773,
          -3.7883704155653297,
          -7,
          -7,
          -2.750845748402496,
          -4.633801623517603,
          -4.335156899534743,
          -3.889871048788647,
          -4.02998204239725,
          -3.5985899046347534,
          -4.160208336707736,
          -3.8034863797892493,
          -7,
          -4.639167623995889,
          -4.155922798949886,
          -4.64053112457209,
          -2.784236791474462,
          -7,
          -4.632690068324521,
          -3.9340538293702187,
          -4.364813556261336,
          -4.08841075955748,
          -7,
          -4.035089374144706,
          -3.720177685852126,
          -3.4889634626461374,
          -2.2870790764685953,
          -4.158663980813989,
          -4.052289848578728,
          -4.634688823826319,
          -7,
          -4.008625717744802,
          -4.331801701423656,
          -2.6904883743107986,
          -7,
          -3.8555999095694653,
          -3.8567892887533164,
          -3.8690164754407816,
          -7,
          -4.632416796638804,
          -3.4920709290390546,
          -3.2391993420543015,
          -4.159647387949369,
          -2.75432102760387,
          -3.794009770670591,
          -3.878291949249796,
          -3.735748561803585,
          -2.804502896720539,
          -3.975128385758762,
          -3.868771750094851,
          -4.3447163997142635,
          -7,
          -7,
          -2.4702006168679937,
          -3.8090207204836726,
          -7,
          -4.647998761995242,
          -2.7498466966808266,
          -4.642800745692909,
          -3.3908173961711223,
          -2.9572339246004073,
          -3.9064427938170323,
          -7,
          -7,
          -4.155477742147295,
          -7,
          -3.5934874556083014,
          -3.2241643703992757,
          -4.055865492428976,
          -4.632072431957763,
          -4.632851925998251,
          -4.154403683246536,
          -2.3352263798583643,
          -4.3313159246822295,
          -4.635694810891918,
          -7,
          -4.332084820464514,
          -3.8576741678371116,
          -4.6333472402049605,
          -4.634356336067436,
          -7,
          -4.349704810656211,
          -4.159787693079161,
          -3.518665764554107,
          -4.638439335179549,
          -7,
          -7,
          -4.154464550007314,
          -3.935194783852778,
          -7,
          -2.9802660415584765,
          -3.1967931395743268,
          -3.1985054080977675,
          -3.0552253838538195,
          -3.678690322780319,
          -7,
          -4.350771183053166,
          -7,
          -3.932565078682726,
          -3.02539768750682,
          -4.631748074396569,
          -7,
          -2.501842838364596,
          -3.5785819114018698,
          -3.8609366207000937,
          -7,
          -7,
          -4.032578471924312,
          -4.33056595269382,
          -3.55044474059212,
          -4.631697371637548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.366133331018571,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.183799217793253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092018470752797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8764872659889766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9399682905513362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.229208133978611,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092580300691311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.127396390776607,
          -7,
          -7,
          -7,
          -4.74355679768502,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.105918740286373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.258246065968053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.377715941401723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.960232873128512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.851108460676247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.616191843248132,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.101049030827831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.179125521533452,
          -7,
          -7,
          -4.078287610839212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.452943522899956,
          -7,
          -7,
          -7,
          -3.4652340949880145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.808346035740395,
          -7,
          -7,
          -7,
          -4.660191704349621,
          -7,
          -7,
          -7,
          -4.62728049158373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7115204156674295,
          -7,
          -7,
          -4.257342526505176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6224005533247965,
          -7,
          -7,
          -7,
          -7,
          -3.553288194064595,
          -7,
          -7,
          -3.0200158093322957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4875625602563782,
          -7,
          -3.2234588550581065,
          -4.506577183334457,
          -4.572859989893312,
          -7,
          -7,
          -7,
          -3.9213118324682164,
          -7,
          -4.946314683884897,
          -2.986861270290045,
          -7,
          -7,
          -3.1276716039590733,
          -7,
          -4.295501126169623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.835764532624219,
          -3.670083426263088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.74472315193016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.725012725341157,
          -7,
          -7,
          -7,
          -7,
          -3.548880562637515,
          -7,
          -7,
          -7,
          -3.8375253094496014,
          -7,
          -3.405978791431299,
          -7,
          -7,
          -7,
          -7,
          -3.397070549959409,
          -7,
          -7,
          -7,
          -3.5877109650189114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8820689444361483,
          -3.1354506993455136,
          -7,
          -3.4811558708280352,
          -4.649373807143351,
          -4.447072715118013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.348791467560584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.438858659420562,
          -7,
          -3.783127871279766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.413467412985825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.330616667294438,
          -7,
          -3.996248914569132,
          -3.9996306927125405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.699027906406887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.297432204810169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.196470959229819,
          -7,
          -7,
          -7,
          -3.449478399187365,
          -3.4686426683915115,
          -2.783665413935314,
          -7,
          -7,
          -3.378216149749878,
          -7,
          -2.8644197947770462,
          -7,
          -7,
          -7,
          -2.505660746145801,
          -7,
          -7,
          -3.2412973871099933,
          -3.2801228963023075,
          -3.268577971882843,
          -2.807535028068853,
          -4.577250458079471,
          -3.2706788361447066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1358058893081124,
          -7,
          -7,
          -3.2995072987004876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9179647680549445,
          -7,
          -7,
          -3.4452927694259716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6113692154627337,
          -7,
          -7,
          -7,
          -7,
          -3.555215405126073,
          -7,
          -7,
          -7,
          -4.258038338370556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3736474722092176,
          -3.28397928423848,
          -7,
          -7,
          -3.0759746270911994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -7,
          -7,
          -7,
          -7,
          -3.270811881862804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5470975149038937,
          -7,
          -7,
          -7,
          -4.146864161030103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.031165999660659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.198863190485256,
          -2.662967585118109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9130717403092508,
          -2.500716623555479,
          -7,
          -7,
          -7,
          -3.429719989249435,
          -7,
          -7,
          -7,
          -3.3081373786380386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.961832252984734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.24551266781415,
          -7,
          -7,
          -3.94215692846749,
          -7,
          -7,
          -3.6056641155967877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1157768761589635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9636697965031646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.89726044333122,
          -7,
          -4.0402492600992455,
          -7,
          -3.2489536154957075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2629254693318317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.600755149639618,
          -3.490941205356787,
          -7,
          -7,
          -7,
          -3.5425764762605296,
          -7,
          -3.0296542818869807,
          -7,
          -3.916256497088509,
          -3.2518814545525276,
          -3.2425414282983844,
          -7,
          -3.151982395457474,
          -7,
          -7,
          -7,
          -3.4667193716815987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.020568434801363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.398981066658131,
          -7,
          -3.6408445394191995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3510228525841237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.287801729930226,
          -7,
          -7,
          -3.0195316845312554,
          -7,
          -7,
          -7,
          -4.113277878999596,
          -7,
          -7,
          -4.086608944572948,
          -2.934834983210739,
          -7,
          -7,
          -7,
          -3.089905111439398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0443437348951075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5930644316587173,
          -7,
          -7,
          -3.730741911850021,
          -4.157169561317188,
          -7,
          -3.3296012483565187,
          -3.607470341973842,
          -7,
          -3.514614153467984,
          -3.821742733474618,
          -2.5729892769856284,
          -7,
          -3.612889769287485,
          -4.291335544382936,
          -4.670755942215133,
          -4.335865591694248,
          -3.8177801500889426,
          -7,
          -4.414990051283522,
          -3.8215322435577312,
          -3.7570542290869438,
          -7,
          -7,
          -4.629647410457143,
          -3.173962834523349,
          -3.4338046066925614,
          -4.1258714674176815,
          -7,
          -7,
          -3.5699734307202693,
          -7,
          -2.8528224411993004,
          -7,
          -4.121100029976307,
          -7,
          -4.219532135300155,
          -3.8897497752640375,
          -7,
          -7,
          -3.17345943823902,
          -4.4154074254501365,
          -3.027879409207207,
          -7,
          -3.634678752178682,
          -3.221273764150597,
          -3.843419665204918,
          -7,
          -2.9020028913507296,
          -3.398981066658131,
          -2.812364175873973,
          -3.5800121125294244,
          -7,
          -3.521039963927612,
          -1.9152954430762743,
          -2.0554319844088447,
          -7,
          -2.7572694676725296,
          -3.169527489553293,
          -7,
          -3.188741045483493,
          -3.7499938278694627,
          -7,
          -3.351409751925439,
          -3.6044240692658422,
          -3.1228709228644354,
          -4.3318175956470295,
          -7,
          -2.7584071921878865,
          -7,
          -3.2653613770351475,
          -7,
          -7,
          -2.1148967983141596,
          -7,
          -7,
          -3.783045572114693,
          -2.919190202125499,
          -3.5321596295356965,
          -3.18440748541232,
          -1.2679374313022551,
          -2.6974037232004875,
          -2.6310047550946627,
          -3.323355245756284,
          -7,
          -2.7624910040260096,
          -3.2005883290017714,
          -2.709439574132411,
          -3.9495558852137727,
          -7,
          -7,
          -3.4419306745501714,
          -3.7710727832211948,
          -7,
          -7,
          -7,
          -7,
          -4.125708925972653,
          -3.7525477914613012,
          -7,
          -3.131137273778607,
          -7,
          -7,
          -2.1336167877718255,
          -7,
          -7,
          -7,
          -2.798880735242388,
          -7,
          -3.8654099861535784,
          -3.3984608496082234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8047683130754844,
          -7,
          -7,
          -4.190205594369269,
          -4.355039444172483,
          -3.6071485345061802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0159881053841304,
          -7,
          -7,
          -7,
          -7,
          -3.5159400420933182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5997739391463885,
          -7,
          -7,
          -7,
          -7,
          -3.639422450302014,
          -3.333850145102545,
          -3.3058885302843097,
          -7,
          -7,
          -3.3948017771627113,
          -3.269979676645324,
          -3.824581376233483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2650537885040145,
          -7,
          -7,
          -3.229937685907934,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -3.7887338588277077,
          -3.516667559099043,
          -7,
          -7,
          -7,
          -4.003331258561327,
          -7,
          -3.2753113545418118,
          -7,
          -3.0427132993461132,
          -7,
          -3.4233687700792785,
          -3.4702004128593673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.92668535582776,
          -7,
          -7,
          -7,
          -7,
          -3.1954291424570624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.091315159697223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4670369854657044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3106933123433606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.116939646550756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6130574113800384,
          -7,
          -7,
          -7,
          -2.886547123391106,
          -3.2992348258376047,
          -3.592620821321982,
          -7,
          -7,
          -7,
          -7,
          -2.833746914486369,
          -3.877083256650651,
          -7,
          -7,
          -2.763334385526816,
          -7,
          -3.1156105116742996,
          -7,
          -3.3000517321200418,
          -3.5958267770732233,
          -3.1263479050141765,
          -3.7553738764518165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3014640731432996,
          -7,
          -3.7200765727681406,
          -7,
          -2.8715385971800256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.591287265058499,
          -7,
          -2.345851073918755,
          -7,
          -7,
          -3.2104968748521077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3976046343494333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.350807759477898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6256210814249075,
          -3.605305046141109,
          -3.0458117739782704,
          -7,
          -2.9218944709291024,
          -7,
          -2.627996640264847,
          -7,
          -3.590395947184013,
          -7,
          -7,
          -7,
          -7,
          -3.5908418347816027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3362595520141936,
          -7,
          -7,
          -3.600210306409328,
          -3.286905352972375,
          -2.2732529640336354,
          -7,
          -7,
          -3.3205616801952367,
          -7,
          -3.2771506139637965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3649260337899753,
          -3.5100890297927787,
          -7,
          -7,
          -7,
          -4.162728654665835,
          -7,
          -3.0613582209247174,
          -3.6788824146707357,
          -7,
          -7,
          -7,
          -3.304167271724397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.02129269021003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.589055531052344,
          -7,
          -3.325207689482919,
          -7,
          -3.1885535262742306,
          -7,
          -7,
          -7,
          -2.6097067170825574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6555225962534177,
          -7,
          -3.3157604906657347,
          -7,
          -3.630122642859312,
          -3.2973227142053023,
          -7,
          -2.7688363674494263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.249361442065167,
          -7,
          -3.4327288399232216,
          -7,
          -7,
          -2.3135808237099367,
          -3.591064607026499,
          -7,
          -7,
          -7,
          -7,
          -3.6720978579357175,
          -7,
          -7,
          -7,
          -3.1209028176145273,
          -3.594171479114912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1588146467242266,
          -7,
          -3.1712387562612694,
          -7,
          -3.5911759503117913,
          -7,
          -7,
          -3.60959440922522,
          -7,
          -7,
          -3.5826314394896364,
          -7,
          -3.128937494690652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6344772701607315,
          -3.6492374723496073,
          -3.236537261488694,
          -3.444264050864443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6027109449575576,
          -2.8230827965328036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2880255353883627,
          -7,
          -3.2372085050255706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2311126290563523,
          -7,
          -3.9429005411402938,
          -7,
          -7,
          -7,
          -3.1909476791001867,
          -7,
          -3.663795122219408,
          -3.705949194910296,
          -3.0977777345392834,
          -7,
          -7,
          -7,
          -7,
          -3.3372595397502756,
          -3.6181527333785195,
          -7,
          -7,
          -7,
          -3.287689783936075,
          -7,
          -7,
          -7,
          -3.4992745818922173,
          -3.649529565947819,
          -2.9181352261663593,
          -7,
          -3.26382339410336,
          -3.1230890516896657,
          -7,
          -7,
          -7,
          -3.585009279902461,
          -7,
          -7,
          -2.257145043497534,
          -3.3226327116922234,
          -7,
          -7,
          -3.3608772971020398,
          -7,
          -3.1556767254229467,
          -3.367169488534681,
          -7,
          -7,
          -7,
          -7,
          -2.634779458145952,
          -7,
          -7,
          -3.6148972160331345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6653724963034815,
          -3.1151665612324684,
          -3.2548586942269258,
          -7,
          -3.3081152246316403,
          -7,
          -2.598790506763115,
          -3.3833889379388244,
          -3.6695957810243134,
          -7,
          -3.6241789257480224,
          -7,
          -3.055282745486664,
          -3.5009222391903005,
          -7,
          -7,
          -7,
          -7,
          -2.6780122672453888,
          -7,
          -7,
          -3.590618948206578,
          -3.200759326791928,
          -7,
          -2.630500517741912,
          -7,
          -7,
          -3.2923812935028804,
          -3.695430597186528,
          -3.7440581658788354,
          -7,
          -4.0064089883235185,
          -2.7545776560447304,
          -3.9360107957152097,
          -3.1774757445725914,
          -3.346187411389113,
          -7,
          -3.4589700516287487,
          -3.614770704069749,
          -3.7352972015395354,
          -3.8723893884178207,
          -3.4986168263565274,
          -4.053059226488266,
          -4.448520816457295,
          -2.8094519693064504,
          -3.4317496322269334,
          -7,
          -3.4638183615294293,
          -3.8126560444689828,
          -3.4411843626805214,
          -3.4295840726793774,
          -7,
          -3.952138330237461,
          -3.8158717320006788,
          -3.5024817447857,
          -7,
          -3.620248199186466,
          -4.307688539595161,
          -3.4741433897608056,
          -3.4741329781460157,
          -2.667149307610973,
          -2.9924209560520243,
          -3.08905271767822,
          -3.268958047188312,
          -4.414505394200718,
          -3.846754502341561,
          -4.106122874006655,
          -3.6794278966121188,
          -3.833582675940881,
          -2.9945920748044763,
          -2.180679778900204,
          -7,
          -3.6955108619666306,
          -7,
          -2.994114021477017,
          -2.8391636829146503,
          -3.1174370252826193,
          -3.283188116453424,
          -2.939169679625177,
          -3.3359090116234906,
          -7,
          -3.475525915039281,
          -3.225309281725863,
          -7,
          -7,
          -1.9632032023186512,
          -7,
          -7,
          -3.0958830375160398,
          -2.8946149153826797,
          -3.904083156295295,
          -7,
          -3.7432745235119333,
          -7,
          -3.0348338037447746,
          -3.618100418196633,
          -4.260767609784481,
          -3.2807490500644776,
          -3.1352483321344415,
          -3.594503043820089,
          -3.212027711974624,
          -3.292382669369879,
          -2.9368036393469454,
          -7,
          -3.3039516339434503,
          -3.151001907992831,
          -3.1402420571552554,
          -2.518098148097058,
          -3.306425027550687,
          -3.6880538004138907,
          -2.8473778063091553,
          -3.668012971641832,
          -2.6710325168610387,
          -7,
          -3.4419306745501714,
          -7,
          -2.609311859583047,
          -7,
          -7,
          -7,
          -7,
          -3.4103272455302913,
          -3.223625716693796,
          -7,
          -3.680698029697635,
          -7,
          -3.175946470095546,
          -2.870826418185298,
          -7,
          -7,
          -7,
          -3.382692286787451,
          -7,
          -3.106813947817089,
          -3.360593413565249,
          -7,
          -7,
          -2.4833495228146365,
          -7,
          -3.102982230518263,
          -3.675044735955893,
          -7,
          -2.675123395867703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.017200343523835,
          -7,
          -7,
          -3.9174267307364943,
          -2.3865590291510017,
          -3.513654043515571,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7953933349312896,
          -7,
          -3.6316466629584196,
          -3.5785819114018698,
          -7,
          -3.6358856852812727,
          -7,
          -7,
          -7,
          -3.660675788338524,
          -7,
          -3.6734816970733473,
          -3.496462599613991,
          -7,
          -7,
          -7,
          -3.564547711755948,
          -4.002036402259529,
          -7,
          -7,
          -3.616790486329716,
          -7,
          -2.6790242918538194,
          -3.6277753752293034,
          -7,
          -7,
          -7,
          -3.778838339511192,
          -7,
          -3.4653828514484184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5917322389518356,
          -3.102890857809762,
          -7,
          -7,
          -3.6475296664449806,
          -3.6612446089593336,
          -7,
          -7,
          -3.1743021460393894,
          -7,
          -3.730216840568694,
          -7,
          -7,
          -7,
          -3.568846817602785,
          -7,
          -7,
          -7,
          -3.0819590663004783,
          -3.6940784620807596,
          -4.103666913746792,
          -2.9413776300597516,
          -3.9727580839035395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5757772516888866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.458939861890326,
          -3.639087871083737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.611404637711593,
          -3.6072405038317426,
          -3.6126779183165016,
          -2.534607738735867,
          -3.8369567370595505,
          -3.813714391881145,
          -2.819872821950546,
          -7,
          -3.1658376246901283,
          -7,
          -7,
          -2.938500480932248,
          -7,
          -7,
          -2.92933376158383,
          -7,
          -7,
          -7,
          -7,
          -3.616160312847583,
          -7,
          -3.8577545220594422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0905950403567006,
          -7,
          -7,
          -7,
          -3.668634368917545,
          -3.5514499979728753,
          -7,
          -7,
          -7,
          -4.0313680628857735,
          -7,
          -2.6598918323053944,
          -3.839037873388306,
          -7,
          -3.7348798027926278,
          -2.9812024817976854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.433317943937392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8267776004800336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.578333530221577,
          -3.0613654722789483,
          -7,
          -7,
          -4.0471969600412665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7422929779105942,
          -7,
          -7,
          -7,
          -2.181630311663954,
          -7,
          -7,
          -4.00702192557868,
          -7,
          -4.077404246398098,
          -7,
          -7,
          -7,
          -2.9304889211886853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3765973450330384,
          -3.718377112354902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.08181520063228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015108160645837,
          -2.898623623119816,
          -7,
          -7,
          -7,
          -7,
          -4.038063526997859,
          -7,
          -3.820398522703982,
          -2.9703856231170267,
          -7,
          -7,
          -7,
          -2.770412835511627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5027456678452404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9619843621856914,
          -3.4952667443878105,
          -3.622697454895568,
          -7,
          -7,
          -3.9064158583202704,
          -7,
          -7,
          -3.720242018287057,
          -7,
          -3.7366354976868212,
          -7,
          -7,
          -7,
          -3.6396657481551746,
          -7,
          -7,
          -7,
          -7,
          -4.004665233247877,
          -7,
          -3.7321926510062684,
          -7,
          -4.0175758683910745,
          -7,
          -7,
          -7,
          -7,
          -3.2577608328052667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.064607720130627,
          -7,
          -3.1535862281287175,
          -7,
          -7,
          -3.063279732418138,
          -7,
          -7,
          -7,
          -4.023334782538309,
          -7,
          -7,
          -3.5390760987927767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.896813671100868,
          -7,
          -3.4785304231255387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.014646524684032,
          -7,
          -7,
          -7,
          -4.077222510411053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4205168312286167,
          -2.9324795300180524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.014142361545006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9299739347123883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.004665233247877,
          -7,
          -7,
          -7,
          -4.091596620810058,
          -7,
          -7,
          -7,
          -7,
          -3.295127085252191,
          -7,
          -3.47088069752548,
          -7,
          -2.467428389499807,
          -7,
          -7,
          -7,
          -3.5451833682154064,
          -3.3334069668739175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.026247181477774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2544790209024517,
          -3.729691133696481,
          -7,
          -7,
          -2.523573061146692,
          -7,
          -7,
          -3.494098911669254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5587885437369464,
          -7,
          -2.605253418938421,
          -4.038739348104749,
          -7,
          -7,
          -7,
          -7,
          -4.025469719061056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.233987782369209,
          -7,
          -3.1075599661112743,
          -7,
          -4.043715858061207,
          -3.611481912591253,
          -7,
          -7,
          -7,
          -7,
          -4.034307529596563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.312701917838379,
          -3.1842555313968237,
          -3.977159418076437,
          -7,
          -4.263884503895953,
          -7,
          -3.327825823614288,
          -3.0649818216973053,
          -3.483831728933643,
          -7,
          -3.5369159991305725,
          -3.144418518602069,
          -3.7876887005649507,
          -3.8240370362712772,
          -3.36337377330266,
          -3.983325529161058,
          -3.6908160579809155,
          -2.918078016916882,
          -4.296511624661299,
          -3.447743589284149,
          -3.9521868168381484,
          -3.590000635504518,
          -3.6364878963533656,
          -3.1421808211559457,
          -4.035829825252828,
          -7,
          -3.6374396927036643,
          -3.5806627239884357,
          -7,
          -3.1091475495168543,
          -3.7254869263323838,
          -3.9823074227385105,
          -3.8314698345875327,
          -3.3551204963352967,
          -3.5081255360831993,
          -3.8319976772358966,
          -3.7230860771627894,
          -3.165473651207667,
          -3.359936616294331,
          -3.434317926102869,
          -7,
          -3.104929817244617,
          -3.175859573543703,
          -2.905852665734307,
          -3.179592822341174,
          -3.245841554222827,
          -7,
          -2.596256415228722,
          -3.357771547700954,
          -4.061490176624815,
          -3.079362164393046,
          -3.2280885697501356,
          -3.697345604166356,
          -7,
          -3.279609916344099,
          -4.053731315887608,
          -7,
          -7,
          -1.882937978459839,
          -3.3845326154942486,
          -7,
          -2.7622363290860354,
          -2.512227672063213,
          -3.436719078227576,
          -7,
          -7,
          -7,
          -2.790465388800819,
          -3.686397907850216,
          -3.842435380053072,
          -3.8423595733306746,
          -3.1238924561996617,
          -7,
          -3.858115932190066,
          -2.676192630404192,
          -3.3799095435529614,
          -3.35839175864902,
          -4.15633710087081,
          -3.3473300153169503,
          -3.5394345754799916,
          -3.4971716237529193,
          -7,
          -3.0464864930994575,
          -2.8954693687278734,
          -4.0385804259615785,
          -2.9442111532404787,
          -3.74472315193016,
          -3.7710727832211948,
          -2.609311859583047,
          -7,
          -3.712481337801919,
          -7,
          -7,
          -7,
          -3.85959857764468,
          -3.2142476081039772,
          -7,
          -3.7429214225992955,
          -4.018325945402921,
          -3.4868199647800893,
          -2.787416192644107,
          -4.041629508475138,
          -7,
          -7,
          -3.2476459909266477,
          -4.017033339298781,
          -3.0850083208438113,
          -3.5586685784080947,
          -7,
          -4.075181854618692,
          -7,
          -7,
          -4.101024940352695,
          -3.7404811172953423,
          -7,
          -4.11143055176598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8988557218778017,
          -7,
          -7,
          -2.8695527265119622,
          -3.160857720233285,
          -2.6499254252092936,
          -7,
          -3.6098077693287025,
          -4.019240950395851,
          -4.0520009801013,
          -7,
          -7,
          -7,
          -3.4951973183654577,
          -7,
          -4.023458237643675,
          -7,
          -7,
          -3.1733319803686495,
          -3.550921040371087,
          -3.5952757118020995,
          -7,
          -7,
          -7,
          -7,
          -3.350164918327805,
          -7,
          -7,
          -7,
          -7,
          -4.212720154417842,
          -4.031287248876998,
          -7,
          -3.861803148214179,
          -4.019946681678842,
          -2.9103508839812586,
          -3.7207792813583587,
          -3.7925667729442467,
          -7,
          -7,
          -3.7850924507567543,
          -7,
          -3.097344090487375,
          -7,
          -7,
          -3.416349216054106,
          -3.367840271289815,
          -7,
          -4.00770511436478,
          -3.841515888422295,
          -3.7281101841003403,
          -7,
          -3.2771506139637965,
          -7,
          -4.101368963249251,
          -3.733598460961339,
          -3.5809249756756194,
          -3.206885815923174,
          -3.588906340229199,
          -3.760271660542063,
          -7,
          -7,
          -2.7052220557053834,
          -3.2475173509272977,
          -7,
          -4.069889996506938,
          -3.529330524750806,
          -4.049876719873882,
          -3.2361936106265383,
          -3.207215337532426,
          -3.7176982348423726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.106530853822381,
          -7,
          -7,
          -7,
          -2.875043167411285,
          -4.0074917332953355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.794243992434201,
          -3.779127315306203,
          -7,
          -4.009535876619219,
          -7,
          -7,
          -7,
          -7,
          -3.714245911017894,
          -4.013721778051063,
          -3.71474876072506,
          -3.258996253248911,
          -3.641441057915941,
          -3.4074588904573924,
          -7,
          -7,
          -3.606918525948291,
          -4.006679927740826,
          -7,
          -3.2049636242070005,
          -7,
          -7,
          -3.7551122663950713,
          -3.6292396540870877,
          -4.035549803010057,
          -7,
          -7,
          -7,
          -7,
          -3.527436551688697,
          -7,
          -2.783903579272735,
          -7,
          -2.5490032620257876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100060223931153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.860916680183462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7115541682501694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1867949476962183,
          -2.3961993470957363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5199591807520685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8825245379548803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7626410582667367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.52865964523499,
          -7,
          -7,
          -7,
          -7,
          -4.4362342281438885,
          -7,
          -7,
          -3.0780941504064105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9663294951638783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2072752236993582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.815577748324267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6007188480153314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.88380739196289,
          -7,
          -7,
          -7,
          -2.510545010206612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0797006039934045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149705496421304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5403294747908736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2060158767633444,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -4.498324340697171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1772478362556233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.607755172446473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.098304462986223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.588063515815065,
          -7,
          -2.780677274433368,
          -4.545739957873238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.083860800866573,
          -7,
          -7,
          -4.317624643080059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.398807730203265,
          -4.4327208225983075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.792444221943763,
          -7,
          -7,
          -3.953527748437723,
          -7,
          -7,
          -7,
          -7,
          -3.8736692927067944,
          -4.3082085802911045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.102648055659481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.350151066780707,
          -4.389803762974429,
          -7,
          -7,
          -2.556887724520987,
          -3.190288589878837,
          -2.3737912227975784,
          -7,
          -3.57611089412084,
          -3.0068937079479006,
          -4.543745305703089,
          -7,
          -7,
          -2.769192637796977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3416323357780544,
          -3.357553719743082,
          -7,
          -2.9925150982919564,
          -4.679077957809192,
          -4.327490297721857,
          -7,
          -7,
          -7,
          -4.13484620892477,
          -7,
          -4.942390064106153,
          -3.6089536992758626,
          -4.059260404121731,
          -7,
          -3.660675788338524,
          -7,
          -3.8004421213362565,
          -7,
          -7,
          -7,
          -3.8573324964312685,
          -7,
          -7,
          -4.3044905277734875,
          -3.86494990015796,
          -7,
          -4.332771627853622,
          -7,
          -7,
          -7,
          -3.712481337801919,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5150344563229545,
          -7,
          -7,
          -7,
          -2.6051254000240065,
          -3.14674801363064,
          -3.0629578340845103,
          -7,
          -7,
          -3.483016420144132,
          -7,
          -3.2665282306934134,
          -7,
          -7,
          -7,
          -7,
          -3.2304489213782737,
          -3.4423229557455746,
          -7,
          -2.8870543780509568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8342299028516775,
          -7,
          -7,
          -7,
          -3.4951774803204194,
          -3.7875391867038415,
          -7,
          -2.594760752586463,
          -7,
          -2.8512583487190755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1026909129627085,
          -1.7542390929782323,
          -2.446270810437326,
          -7,
          -3.000434077479319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8109042806687006,
          -7,
          -7,
          -3.6721902511882525,
          -7,
          -3.8772129204488945,
          -7,
          -3.1063609088067503,
          -2.74350976472843,
          -7,
          -3.926548224635619,
          -7,
          -3.4137187650610787,
          -2.6299190355035416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4308809464528913,
          -3.0655797147284485,
          -2.952792443044092,
          -3.22219604630172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.314183339137378,
          -7,
          -3.6588219591356244,
          -3.9819997141298784,
          -3.7645497190644672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.896311834256591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8603380065709936,
          -7,
          -1.9614210940664483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.670987603010034,
          -7,
          -3.467608105583633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9785913268200748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357677622792537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9020028913507296,
          -7,
          -7,
          -2.9835135272947686,
          -7,
          -7,
          -4.576646516274588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.257510583190615,
          -7,
          -7,
          -7,
          -2.5118833609788744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028286509426278,
          -7,
          -7,
          -7,
          -7,
          -2.9995654882259823,
          -2.780317312140151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.518632367678986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.059941888061955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.736476182027697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6755950563867463,
          -2.7091002815511667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5970366649776535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9273703630390235,
          -7,
          -1.8081144737610868,
          -7,
          -1.9160777731414746,
          -1.8512583487190755,
          -7,
          -4.7281832778243835,
          -7,
          -7,
          -7,
          -2.3483048630481607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6289552336843007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149394643032612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.515873843711679,
          -3.508035666557394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.177824971864682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6118294794983736,
          -7,
          -7,
          -7,
          -3.1264561134318045,
          -7,
          -7,
          -7,
          -2.456366033129043,
          -2.8273692730538253,
          -2.6748611407378116,
          -7,
          -7,
          -1.8286598965353198,
          -7,
          -7,
          -7,
          -7,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.752432609261474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7528164311882715,
          -2.6020599913279625,
          -2.659440781870318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8471612005780302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7427251313046983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3384564936046046,
          -3.037027879755775,
          -2.359835482339888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.192328457926367,
          -7,
          -3.457211238355728,
          -3.7309436934277356,
          -7,
          -7,
          -7,
          -7,
          -1.6324875102811671,
          -2.2889196056617265,
          -4.067888806685398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.9110008520221934,
          -7,
          -7,
          -3.3378584290410944,
          -7,
          -3.507817334539596,
          -4.979657617436882,
          -5.172328491819344,
          -2.447158031342219,
          -2.7912226592314022,
          -7,
          -4.610936831232662,
          -7,
          -7,
          -7,
          -7,
          -2.403120521175818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6044528640996845,
          -4.562816082229735,
          -7,
          -3.3536834439309335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.194514341882467,
          -7,
          -7,
          -7,
          -3.987889609997745,
          -7,
          -1.9777236052888478,
          -7,
          -7,
          -7,
          -4.326622564515655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.426185825244511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.220108088040055,
          -7,
          -7,
          -7,
          -7,
          -3.409087369447835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9882615967287558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.001816613039424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.568201724066995,
          -7,
          -7,
          -7,
          -2.357934847000454,
          -3.595055089759304,
          -2.8721562727482928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.268694953562178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.280783177955887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.904895787855206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3483048630481607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.2430380486862944,
          -7,
          -7,
          -7,
          -2.1760912590556813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4523998459114416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277357044047016,
          -7,
          -7,
          -3.1556396337597765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6096584282630335,
          -7,
          -7,
          -7,
          -4.05080494781346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.661481397843616,
          -7,
          -7,
          -7,
          -7,
          -3.66133934000604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.578312506832515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.084862139048422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3250536206057983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039929414108561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0253058652647704,
          -7,
          -7,
          -7,
          -7,
          -3.098643725817057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5080779604155277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7505083948513462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.253378395419779,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1728363601227105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.075911761482778,
          -7,
          -3.0277572046905536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6970548922725746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7515870050823101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9107204299073945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.734500599204428,
          -7,
          -7,
          -4.070899440185869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.319595276245265,
          -4.749326556354335,
          -7,
          -7,
          -7,
          -3.062769949815128,
          -3.719497016610582,
          -7,
          -4.434233473644771,
          -7,
          -4.041629508475138,
          -7,
          -7,
          -7,
          -3.4945719842301988,
          -7,
          -7,
          -3.809184414431453,
          -7,
          -7,
          -7,
          -5.10234107375727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.229220943702738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7537362221750104,
          -7,
          -4.060584531360865,
          -7,
          -7,
          -7,
          -7,
          -3.7774268223893115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1923722835985116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.899181901036258,
          -7,
          -3.6797684752325557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.635724954531139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.00060758706289,
          -7,
          -7,
          -2.886490725172482,
          -2.9398519178833737,
          -4.000650953629595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8440797640919517,
          -7,
          -7,
          -2.5680060518483647,
          -7,
          -2.093655114075086,
          -1.5736450565133797,
          -2.4268364538035083,
          -2.9822712330395684,
          -7,
          -1.5535698523148875,
          -1.8122446968003691,
          -2.167317334748176,
          -7,
          -7,
          -3.3687206527020948,
          -2.5786392099680726,
          -7,
          -3.2417222253140894,
          -3.944383957640844,
          -3.8982000133541193,
          -7,
          -2.502597799680834,
          -7,
          -2.0539012308755322,
          -7,
          -7,
          -7,
          -7,
          -1.5640391252808956,
          -2.649334858712142,
          -2.776182127536158,
          -7,
          -3.021520064114033,
          -3.0043213737826426,
          -2.330210784571528,
          -7,
          -2.5969634343085812,
          -7,
          -7,
          -2.9379389434628047,
          -2.15896526038341,
          -7,
          -7,
          -7,
          -3.823409014892545,
          -2.2536610209467267,
          -0.9229848157088828,
          -3.3881012015705165,
          -7,
          -3.851556891005012,
          -7,
          -2.4358443659844413,
          -7,
          -7,
          -3.9361617409111576,
          -7,
          -2.263513634396092,
          -1.8308024488922192,
          -7,
          -7,
          -2.6024940688072813,
          -7,
          -7,
          -3.6259294927162946,
          -3.0149403497929366,
          -7,
          -3.7401257369657306,
          -7,
          -7,
          -2.766784515497859,
          -3.747023177451628,
          -2.2180281729591895,
          -2.178534241360947,
          -1.841984804590114,
          -7,
          -7,
          -4.275426536741639,
          -2.958085848521085,
          -7,
          -7,
          -3.715961582542224,
          -7,
          -2.8886474332825305,
          -3.588182036789483,
          -2.17070165581607,
          -7,
          -1.9150343529019414,
          -7,
          -2.371990911464915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0785172332278914,
          -7,
          -2.446640706109038,
          -7,
          -7,
          -7,
          -7,
          -2.8512583487190755,
          -2.8432327780980096,
          -1.360732888315757,
          -7,
          -7,
          -2.139485525448247,
          -7,
          -7,
          -7,
          -2.5422027824340283,
          -7,
          -7,
          -7,
          -2.9390197764486667,
          -2.377418341527436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505579536394238,
          -7,
          -7,
          -3.2357808703275603,
          -2.7937903846908188,
          -2.4720246977002813,
          -7,
          -7,
          -7,
          -7,
          -2.6258838159722577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.830901668228616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.247013055017526,
          -7,
          -7,
          -7,
          -3.4766167808859505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073315020560628,
          -4.6784091088214215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.520902558987522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6164755138885654,
          -7,
          -7,
          -7,
          -7,
          -4.068111617027303,
          -4.068593980976652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5674772960726626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.086003705618382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.305615149607283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.884153167842544,
          -7,
          -7,
          -7,
          -7,
          -4.095692282839792,
          -7,
          -4.169586273321913,
          -7,
          -7,
          -7,
          -7,
          -3.185588270541374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.314983145039124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9094490469812664,
          -7,
          -7,
          -7,
          -7,
          -4.247334850657456,
          -7,
          -7,
          -7,
          -3.3679767852945943,
          -7,
          -7,
          -7,
          -7,
          -3.8913887648758014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9675947726718896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3675422735205767,
          -7,
          -4.092896010921856,
          -3.765765384928689,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.652922887567942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8669368177316397,
          -3.651765295390196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.023869501388332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.213331780706593,
          -7,
          -2.8249998911127463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.061444101412217,
          -7,
          -7,
          -3.7571681922142726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.072654217333034,
          -2.4978603240083523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3100982718562,
          -7,
          -3.0755916158353096,
          -7,
          -4.10064620014548,
          -3.55360298720468,
          -4.096736260462469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9671454827935495,
          -2.6194886947365785,
          -2.712272243588091,
          -3.4785304231255387,
          -2.2579884368367824,
          -3.4318460456987254,
          -1.4509619291538933,
          -2.013031599703814,
          -1.861943596297561,
          -4.06707085604537,
          -2.4037711497348146,
          -2.701968350796342,
          -1.793387832594586,
          -1.9802756676681168,
          -2.556423121371285,
          -2.541220482974948,
          -1.941180036600083,
          -2.8200468375055814,
          -1.5027776034972864,
          -3.0924950697064624,
          -2.0162155442381913,
          -2.5445533197545602,
          -2.3691462533580823,
          -2.595116585856597,
          -2.1940137903903576,
          -3.1547113111232354,
          -2.111149081998313,
          -1.1807785634456034,
          -3.5100756113539493,
          -2.6032146934613314,
          -1.7500945520027595,
          -2.0242625200121336,
          -2.014878638321159,
          -1.4610328412341147,
          -1.5622280530904329,
          -2.085699540165808,
          -2.2076401784239836,
          -3.273129932850311,
          -1.8267847498158771,
          -3.7114697818743276,
          -7,
          -3.7334380270910614,
          -3.4576204434805464,
          -4.227423895933663,
          -7,
          -2.9573007307447923,
          -7,
          -3.5868778622235498,
          -7,
          -7,
          -3.6662183637910806,
          -3.3226327116922234,
          -7,
          -7,
          -4.225128287982088,
          -7,
          -7,
          -7,
          -3.313526527244975,
          -4.135990846921625,
          -7,
          -3.628848527992802,
          -3.0741091006233097,
          -2.778358008055677,
          -7,
          -7,
          -4.072543985643648,
          -3.8735198880329156,
          -7,
          -4.217334766955894,
          -3.4900990050633047,
          -3.659973215296316,
          -7,
          -7,
          -4.032538179260007,
          -4.482173004713658,
          -3.811809515181134,
          -4.200905191684992,
          -3.872360255801214,
          -3.369907073710945,
          -7,
          -7,
          -3.2660552139992545,
          -3.450900876048348,
          -7,
          -4.133762384787346,
          -7,
          -4.125708925972653,
          -3.4103272455302913,
          -3.85959857764468,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2143884608174753,
          -7,
          -7,
          -4.078456818053293,
          -3.6634496339132876,
          -2.894418633356818,
          -2.9517883735590873,
          -7,
          -7,
          -2.9406409781201486,
          -4.07733156112899,
          -2.602578242561184,
          -4.093841766912128,
          -3.389024250763695,
          -4.128366953938082,
          -2.737808008704828,
          -3.2136837399839564,
          -3.0714524076988035,
          -3.496514518697745,
          -2.9081989694812487,
          -3.8594985581877763,
          -4.092685562937491,
          -3.143708561554825,
          -7,
          -4.074633618296904,
          -7,
          -3.1809855807867304,
          -7,
          -7,
          -2.957596646369117,
          -2.455685333041747,
          -1.3590553766801345,
          -3.766524381029522,
          -3.439679990515626,
          -7,
          -3.630665129596291,
          -7,
          -7,
          -7,
          -3.369679599559816,
          -7,
          -4.08292891501513,
          -7,
          -7,
          -2.6965417074824223,
          -3.1322596895310446,
          -2.7822445368764037,
          -7,
          -3.394171400415131,
          -4.071661123441788,
          -3.7970943426302544,
          -2.280074923864183,
          -7,
          -7,
          -4.0717347638797605,
          -1.4858740086009528,
          -2.8359099798631497,
          -4.0897638544916886,
          -7,
          -2.6486310215868576,
          -4.079868335175173,
          -2.411444049316433,
          -7,
          -3.0300701134793617,
          -4.077476919504343,
          -2.58937299251887,
          -2.354307185767559,
          -7,
          -2.7558748556724915,
          -3.787176992470554,
          -7,
          -7,
          -2.465118360281959,
          -7,
          -7,
          -3.2850507117969214,
          -7,
          -7,
          -4.222898472609422,
          -3.7925317619013077,
          -7,
          -7,
          -2.9454945000097643,
          -2.9259360194675317,
          -3.5181518769291116,
          -3.815079418399363,
          -7,
          -7,
          -2.6186726361479105,
          -2.912753303671323,
          -3.770557474850995,
          -2.5773933091957093,
          -2.5070376829046563,
          -3.2024883170600935,
          -2.9309490311675233,
          -2.6641717053619307,
          -3.156145156435762,
          -7,
          -4.090011024007147,
          -7,
          -7,
          -7,
          -7,
          -2.3893188704635238,
          -7,
          -7,
          -7,
          -2.699140282511854,
          -7,
          -4.08109515656134,
          -3.166836981760529,
          -4.071845201129409,
          -7,
          -7,
          -3.297760511099134,
          -3.300781756456363,
          -3.530583859645118,
          -7,
          -7,
          -3.245336376160865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.126699483839912,
          -3.2123651936445854,
          -3.3779130619562214,
          -7,
          -7,
          -3.2328055885720755,
          -4.068334313117254,
          -7,
          -2.689294534245845,
          -7,
          -7,
          -3.810534939790517,
          -3.2014578181199917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.222224975159809,
          -7,
          -7,
          -7,
          -3.9872639541222354,
          -3.682190218984122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9863237770507656,
          -2.8417632701717763,
          -7,
          -7,
          -7,
          -2.953308577080214,
          -3.0236955527159197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.19380739181105,
          -7,
          -7,
          -2.432927116124977,
          -2.8137092617421473,
          -7,
          -7,
          -7,
          -7,
          -3.9878002857518724,
          -7,
          -3.6592314328752287,
          -7,
          -7,
          -7,
          -3.6893532632422525,
          -7,
          -7,
          -3.9906052114239197,
          -7,
          -7,
          -3.205835671581546,
          -3.3790404105101395,
          -7,
          -3.5173278822943734,
          -3.391552566610928,
          -3.9835360816029923,
          -3.985965078304871,
          -7,
          -7,
          -7,
          -7,
          -2.5152715769643432,
          -2.557085936526085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.510455640007325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.099097680917744,
          -7,
          -7,
          -7,
          -7,
          -4.059108817913594,
          -3.001863462692524,
          -7,
          -7,
          -3.8125122842899826,
          -3.5064599319861283,
          -2.8431882693117134,
          -7,
          -7,
          -7,
          -7,
          -3.5073610516826004,
          -3.9826781933834843,
          -3.6997943809416243,
          -3.9916690073799486,
          -7,
          -3.14515199291356,
          -7,
          -4.005395031886706,
          -1.9755258014718424,
          -3.1528995963937474,
          -3.5083052193633395,
          -3.6813769331998136,
          -7,
          -7,
          -2.551224026542675,
          -3.985785617772605,
          -3.5068206042642256,
          -7,
          -3.7626035495668035,
          -7,
          -7,
          -7,
          -3.1014893069102683,
          -7,
          -7,
          -7,
          -3.984707294482673,
          -3.2274153207496505,
          -3.9847522781154137,
          -7,
          -3.0948203803548,
          -3.993920958801287,
          -2.801091739253345,
          -3.6864575104691117,
          -7,
          -3.6844413876256064,
          -3.1521572498058466,
          -2.937893850328434,
          -3.9846623061901068,
          -2.990236366413815,
          -1.7954416809560518,
          -3.985067033150501,
          -3.696749435201623,
          -7,
          -3.4076967576338975,
          -7,
          -4.01674092728626,
          -3.546131204914049,
          -7,
          -7,
          -3.2095596927466623,
          -7,
          -7,
          -7,
          -2.184998828988206,
          -3.6808791744268112,
          -3.6808791744268112,
          -7,
          -7,
          -7,
          -2.770545198148703,
          -3.301572524756275,
          -2.905508053677255,
          -3.0519667310983327,
          -7,
          -7,
          -7,
          -7,
          -3.301160264469208,
          -3.1231980750319988,
          -3.7165458727270932,
          -7,
          -7,
          -7,
          -3.328501922685259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.013005850015737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0816644831892415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5520398850766086,
          -7,
          -2.9409356881329756,
          -7,
          -7,
          -1.919244045161112,
          -3.383546091724474,
          -2.5212252826767023,
          -3.2205874658721743,
          -2.326466600325224,
          -2.683732992153464,
          -3.719248398447946,
          -3.517943279436479,
          -7,
          -7,
          -7,
          -3.9871297676598974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.857407888234583,
          -7,
          -3.1063609088067503,
          -7,
          -3.6848004941944112,
          -7,
          -7,
          -3.5161385767170743,
          -7,
          -7,
          -7,
          -2.714901024547078,
          -3.3898303126080624,
          -7,
          -7,
          -3.983400738180538,
          -3.9819997141298784,
          -3.9825425823029432,
          -7,
          -7,
          -7,
          -2.7984779980639836,
          -3.231681928224919,
          -2.6388677870923787,
          -3.1277207308231225,
          -7,
          -7,
          -3.9838066419784153,
          -2.722936853279324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.078581487279682,
          -7,
          -7,
          -7,
          -3.9843922785242656,
          -7,
          -3.208351765003097,
          -7,
          -3.991447598003803,
          -7,
          -7,
          -2.959078102052902,
          -2.56054423863114,
          -7,
          -7,
          -3.9845723156216324,
          -3.577912868954951,
          -3.0969968632197054,
          -1.979089800538877,
          -7,
          -2.8542101251778975,
          -7,
          -7,
          -7,
          -3.529654887137106,
          -3.2337996156757547,
          -3.1710574719371976,
          -3.5585885831081994,
          -7,
          -7,
          -7,
          -7,
          -3.9887372752888,
          -3.5283166683311595,
          -3.695875515031685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.68497993618928,
          -2.7589839445726563,
          -7,
          -7,
          -3.210541452166173,
          -2.5751090851604386,
          -3.688642251959892,
          -3.9831299247347003,
          -3.3339076675505632,
          -7,
          -7,
          -7,
          -3.986368593570273,
          -2.580558430866771,
          -3.1537713238680873,
          -7,
          -7,
          -7,
          -7,
          -2.413575895419909,
          -3.5414128157085205,
          -7,
          -7,
          -7,
          -4.025715383901341,
          -7,
          -7,
          -7,
          -3.694517453811156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.998302940098541,
          -3.9865478134147243,
          -3.787129727467307,
          -2.9953426418873272,
          -3.2627534503405666,
          -7,
          -2.7000440709473397,
          -3.129142823317654,
          -3.718127852075301,
          -7,
          -3.9995220131289035,
          -7,
          -2.9339510299983784,
          -3.4812275779993205,
          -7,
          -7,
          -7,
          -7,
          -3.7025166974381505,
          -7,
          -7,
          -7,
          -7,
          -3.6850696293911485,
          -2.6068629883857906,
          -7,
          -7,
          -2.516724197586558,
          -3.0900449904924545,
          -3.0145827585978444,
          -3.2215446370271956,
          -2.2467022836522106,
          -2.6107741960383892,
          -1.6975930787551952,
          -3.10462618871794,
          -1.9676457541126968,
          -7,
          -1.9609813912022167,
          -2.8855280531785423,
          -2.2418676805830136,
          -2.3232310470421824,
          -1.9223833109680446,
          -3.3065016159437794,
          -2.429687696095396,
          -2.1964995291548655,
          -2.5757310526056134,
          -3.016989838073532,
          -3.638938294887355,
          -3.442207709868362,
          -2.9700109249911373,
          -2.2178339146037684,
          -2.2465275443812533,
          -4.07359005876739,
          -2.583325687678573,
          -2.643847310299714,
          -4.037824750588342,
          -2.151101406384551,
          -2.115416198356651,
          -2.2977835894049323,
          -3.1240148788874076,
          -2.4164257492763435,
          -2.24447392037623,
          -3.425909012675203,
          -3.3146465641692635,
          -3.0386064602955156,
          -2.131062516186049,
          -2.835714052581448,
          -4.023663918197793,
          -3.4928813974244086,
          -2.066692567004262,
          -2.056726239579111,
          -4.004493337547275,
          -3.035724574911353,
          -7,
          -2.3266820975646683,
          -3.411142505502048,
          -3.3432115901797474,
          -2.81888541459401,
          -2.740776106452548,
          -2.9830847727377883,
          -7,
          -3.168291188851266,
          -3.5571060060508883,
          -7,
          -7,
          -3.438893790829892,
          -3.463482379191176,
          -7,
          -2.2475481260755785,
          -2.7115288124910117,
          -3.783996977708136,
          -7,
          -7,
          -7,
          -1.8277856781648085,
          -7,
          -4.509336958017644,
          -2.6635709651936,
          -3.7162746928981742,
          -2.9864582127373067,
          -3.1020905255118367,
          -3.9893163049899516,
          -3.9747419045009504,
          -2.8913383039652625,
          -3.0264389722525658,
          -3.154694414148935,
          -2.625624754276346,
          -2.935003151453655,
          -3.9926418698783976,
          -2.541412229580903,
          -1.5044884175991484,
          -4.018534070428183,
          -3.3386722591208517,
          -3.725012725341157,
          -3.7525477914613012,
          -3.223625716693796,
          -3.2142476081039772,
          -3.5150344563229545,
          -7,
          -7,
          -4.00060758706289,
          -2.2143884608174753,
          -7,
          -3.6889090176205546,
          -1.9351712546033841,
          -1.8929917203032336,
          -1.394212816864615,
          -1.6306340876669476,
          -0.9756270071664029,
          -3.1475438298641407,
          -7,
          -1.5979729679705894,
          -2.401533089075539,
          -1.8219474187922904,
          -1.9815878426831302,
          -1.7459036485794046,
          -2.4858364866178744,
          -1.5290888052036686,
          -1.9976428464804807,
          -1.5938584784075553,
          -2.134629995670311,
          -1.9969492484953812,
          -1.3601736010625614,
          -2.7117650624814313,
          -2.0043213737826426,
          -3.098903186831587,
          -2.6104383466072485,
          -7,
          -1.485258562995629,
          -3.0419187839286823,
          -2.6407975338258964,
          -2.063572160369598,
          -1.1276063051325063,
          -1.282364597847086,
          -3.0292484623758416,
          -1.9665580317819267,
          -3.1526377365836415,
          -2.5679183080896295,
          -3.145684651788881,
          -3.9825877907016625,
          -2.986637395610154,
          -1.6529485393502215,
          -3.5149460053080044,
          -2.308324802806524,
          -2.3365909505522704,
          -3.9847522781154137,
          -1.4669544236323824,
          -2.065848845441796,
          -1.4957483370250002,
          -7,
          -2.094615974413513,
          -2.5554079701072574,
          -2.026191965559533,
          -1.8620822651944848,
          -2.9532323686103794,
          -2.907187347522648,
          -2.8418955262504215,
          -2.4245483075166123,
          -1.2149977822221742,
          -2.4055171069763763,
          -3.1032904715577496,
          -1.4925138875642157,
          -2.9188600183158036,
          -1.5384947096017696,
          -2.0341302127096714,
          -1.633125305538721,
          -1.9101040122984183,
          -2.1270609988103453,
          -2.5669037499121905,
          -3.9880682033926353,
          -1.7166238530729816,
          -2.4378362309303223,
          -3.2931414834509307,
          -2.3504242384550236,
          -1.6379613380280913,
          -3.2833464653560465,
          -3.2868156134365862,
          -1.620945335488336,
          -2.8614917388391654,
          -3.159653115576744,
          -2.2216390395875636,
          -3.060613910605181,
          -2.906981153228854,
          -2.455225653090252,
          -1.3873070326139714,
          -1.5122123719657488,
          -2.2795017397802226,
          -2.16144786514103,
          -7,
          -3.98344585734134,
          -1.4452522466870956,
          -1.6106448470319037,
          -2.3946312526633426,
          -0.9982889935990089,
          -1.4357087770442,
          -1.6844576212664344,
          -1.4170531363008534,
          -2.069859983248331,
          -1.8099139515895757,
          -3.209112703738592,
          -2.5776194396564844,
          -3.6860102913152857,
          -3.284791555950146,
          -2.532973908129206,
          -3.0623312368297984,
          -1.930215397978364,
          -3.984617313236748,
          -2.58798021145153,
          -3.9823617016331467,
          -1.2349774943255392,
          -3.9859202201235675,
          -3.045540289014811,
          -3.3852933974078314,
          -2.811976944336954,
          -2.9213395948885608,
          -2.9479681286180224,
          -2.156228362582564,
          -1.601831355112151,
          -2.3593800878746345,
          -3.403549454032318,
          -3.686948920211501,
          -1.9155036320177758,
          -3.681467373533731,
          -7,
          -7,
          -3.039237809630672,
          -2.628788608010636,
          -3.3923891456860735,
          -2.178069395892812,
          -1.9216161842344557,
          -2.858041548804122,
          -2.6448412733000293,
          -7,
          -2.0907774555677956,
          -3.1394292733295357,
          -3.681467373533731,
          -2.1949404664294887,
          -3.9831750720378127,
          -7,
          -2.370625709491545,
          -1.9146836013030524,
          -3.169758380030249,
          -3.681241237375587,
          -7,
          -3.150537154583293,
          -3.9825877907016625,
          -1.887624160740319,
          -3.681828946648094,
          -7,
          -3.9820449790714902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659193358577049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -2.7831886910752575,
          -7,
          -7,
          -7,
          -3.9028727854460796,
          -7,
          -7,
          -7,
          -3.701717616751476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.258098269990316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.337079711800931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.104572459545332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8027737252919755,
          -7,
          -7,
          -7,
          -7,
          -3.5529924979879306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5728716022004803,
          -7,
          -7,
          -7,
          -7,
          -2.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8549130223078554,
          -4.042102768037303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.851869600729766,
          -7,
          -7,
          -7,
          -7,
          -2.863322860120456,
          -7,
          -7,
          -7,
          -2.655138434811382,
          -3.1581739553083064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0442783733957133,
          -4.099058789068055,
          -7,
          -7,
          -7,
          -3.958635543065691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.507855871695831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.378851946448881,
          -3.4176377396522297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0025979807199086,
          -7,
          -7,
          -7,
          -3.5988269699243727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4727564493172123,
          -2.7708520116421442,
          -7,
          -7,
          -2.1986570869544226,
          -7,
          -7,
          -3.8253774273163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.929418925714293,
          -7,
          -7,
          -7,
          -7,
          -3.2391418455233265,
          -7,
          -7,
          -2.7573960287930244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3909351071033793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6444385894678386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4638929889859074,
          -7,
          -7,
          -2.833147111912785,
          -2.9190780923760737,
          -7,
          -7,
          -7,
          -2.060697840353612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6857417386022635,
          -7,
          -7,
          -2.6910814921229687,
          -7,
          -7,
          -7,
          -7,
          -2.5735045308749096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9978230807457253,
          -2.525044807036845,
          -2.2522460504731185,
          -2.0119931146592567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9514994179522764,
          -7,
          -7,
          -7,
          -4.6071975872368265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7267272090265724,
          -7,
          -3.1152775913959014,
          -7,
          -3.0729847446279304,
          -7,
          -2.984077033902831,
          -7,
          -4.620989224734163,
          -7,
          -7,
          -7,
          -2.303196057420489,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.58798021145153,
          -7,
          -3.0633333589517497,
          -3.544873843234801,
          -2.539912084579118,
          -7,
          -2.4608978427565478,
          -7,
          -2.358886204405869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7726883546821415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7685212664313505,
          -7,
          -3.2618033722622637,
          -3.7348798027926278,
          -7,
          -7,
          -7,
          -3.9409644934927996,
          -2.2596373105057563,
          -1.9701280053765742,
          -3.467423102606649,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.353743170753935,
          -4.678841475892305,
          -5.1724715722890915,
          -1.9071425310031405,
          -2.1963604423536847,
          -7,
          -4.310406519601563,
          -7,
          -7,
          -3.6033609243483804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.855761372339948,
          -7,
          -2.323252100171687,
          -4.303930064275368,
          -4.262344282872842,
          -7,
          -4.031176105055047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.194514341882467,
          -7,
          -7,
          -7,
          -3.6889090176205546,
          -7,
          -2.3643633546157306,
          -7,
          -3.3756636139608855,
          -3.2114765203615074,
          -7,
          -1.4998984695692326,
          -7,
          -3.177969136009376,
          -7,
          -3.673768164267726,
          -1.893484346218486,
          -2.6026025204202563,
          -7,
          -7,
          -3.216957207361097,
          -2.956328539041934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.028706779135174,
          -1.656417653650555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6408688495876156,
          -4.74149826548613,
          -7,
          -7,
          -1.7741112725819037,
          -7,
          -1.327058280527384,
          -7,
          -1.6232492903979006,
          -2.4143046881283317,
          -7,
          -2.814913181275074,
          -3.1192558892779365,
          -1.906694111260769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.1832698436828046,
          -2.5571060060508883,
          -7,
          -7,
          -2,
          -1.4300212762834783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.968482948553935,
          -2.852155039111322,
          -2.0842186867392387,
          -7,
          -7,
          -7,
          -7,
          -1.8948696567452525,
          -3.710540447933297,
          -2.904715545278681,
          -2.1409268419924303,
          -1.8750612633917,
          -7,
          -2.3010299956639813,
          -1.413299764081252,
          -2.483861490097456,
          -2.048108713045591,
          -7,
          -2.941677035870691,
          -2.6780629049743454,
          -2.7354392032514814,
          -2.3636119798921444,
          -3.426673888021373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2317243833285163,
          -7,
          -4.313086475517802,
          -7,
          -3.6563378127675463,
          -3.2814878879400813,
          -3.283225823810244,
          -2.1903316981702914,
          -7,
          -1.290034611362518,
          -7,
          -1.6754450381412995,
          -2.2157256645575676,
          -7,
          -2.080987046910887,
          -2.2013971243204513,
          -2.285557309007774,
          -3.247512964801066,
          -2.130333768495006,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.949999542859922,
          -1.4800069429571505,
          -2.9425041061680806,
          -7,
          -7,
          -1.9934362304976116,
          -7,
          -7,
          -2.369215857410143,
          -2.6644539285811577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2780673308886628,
          -2.3242824552976926,
          -7,
          -3.1702617153949575,
          -7,
          -2.978180516937414,
          -7,
          -7,
          -1.8459834521087115,
          -7,
          -7,
          -7,
          -2.66838591669,
          -7,
          -3.0425755124401905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7635309391043776,
          -7,
          -7,
          -7,
          -3.2119210843085093,
          -2.532924157916436,
          -2.733999286538387,
          -3.1486026548060932,
          -7,
          -7,
          -7,
          -2.71230299905154,
          -3.0701302598602904,
          -7,
          -2.339699822486733,
          -2.7983994992871044,
          -7,
          -7,
          -7,
          -2.7645497190644672,
          -7,
          -7,
          -4.568647527350753,
          -2.4463818122224423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0711452904510828,
          -7,
          -3.383994789441733,
          -3.0170333392987803,
          -3.39824873054884,
          -7,
          -7,
          -2.795880017344075,
          -7,
          -3.0310042813635367,
          -7,
          -3.022840610876528,
          -7,
          -7,
          -2.8771793076256973,
          -2.4891440150652615,
          -3.0293837776852097,
          -2.5658478186735176,
          -7,
          -7,
          -7,
          -3.0257153839013404,
          -7,
          -7,
          -7,
          -7,
          -2.992553517832136,
          -7,
          -3.0194184346331205,
          -7,
          -7,
          -3.0261245167454502,
          -7,
          -7,
          -2.8606374167737547,
          -7,
          -7,
          -3.637689819118401,
          -7,
          -3.070037866607755,
          -7,
          -7,
          -7,
          -7,
          -3.0191162904470725,
          -7,
          -7,
          -3.079904467666721,
          -2.908753019184534,
          -2.59402403573142,
          -2.28362424432417,
          -7,
          -2.630041469090016,
          -2.654497409629463,
          -7,
          -2.998695158311656,
          -2.996949248495381,
          -7,
          -7,
          -7,
          -3.0141003215196207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0940050223646494,
          -7,
          -7,
          -2.7607993116307177,
          -2.5407464642438433,
          -2.1378717791808004,
          -3.0199466816788423,
          -7,
          -2.8312296938670634,
          -7,
          -2.7091285660594253,
          -7,
          -7,
          -7,
          -7,
          -2.9573678084315276,
          -7,
          -2.7110687225172314,
          -3.083860800866573,
          -7,
          -3.1280760126687155,
          -7,
          -3.5124960502155544,
          -7,
          -2.9501213475113732,
          -3.289142835932333,
          -7,
          -7,
          -2.445993181787647,
          -2.298489193286698,
          -7,
          -7,
          -3.3978097007803054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7043065414442804,
          -3.0560150335589764,
          -2.84248442441157,
          -3.1908917169221698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.256958152560932,
          -7,
          -7,
          -7,
          -3.5020855592260456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.901450307917467,
          -7,
          -7,
          -7,
          -3.030599721965951,
          -7,
          -7,
          -7,
          -2.9206450014067875,
          -7,
          -3.301355594441124,
          -7,
          -3.2392994791268923,
          -2.6232218372873692,
          -7,
          -3.149834696715785,
          -2.288760085189078,
          -7,
          -2.8943160626844384,
          -7,
          -2.806519134080705,
          -3.0692980121155293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2337424492627256,
          -7,
          -2.3628054903717945,
          -7,
          -2.7287594751678745,
          -7,
          -7,
          -3.0941215958405612,
          -3.004751155591001,
          -7,
          -7,
          -3.1527468640264606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.024485667699167,
          -2.8692317197309762,
          -2.6087933739869307,
          -3.3087777736647213,
          -3.2650476611516357,
          -7,
          -2.5352941200427703,
          -2.709269960975831,
          -2.6881230714056485,
          -7,
          -7,
          -7,
          -3.020775488193558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0211892990699383,
          -7,
          -7,
          -7,
          -7,
          -2.7327956982893293,
          -7,
          -7,
          -7,
          -7,
          -3.0236639181977933,
          -7,
          -2.5248595673317964,
          -7,
          -7,
          -7,
          -2.356185260565036,
          -2.367355921026019,
          -2.548926578970604,
          -7,
          -3.8094519693064504,
          -7,
          -7,
          -7,
          -2.7381637253943056,
          -2.5245259366263757,
          -2.7730546933642626,
          -2.1160996371702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.182414652434554,
          -2.2725046516758276,
          -7,
          -3.0842186867392387,
          -7,
          -7,
          -7,
          -7,
          -2.730378468587643,
          -2.5863372070651294,
          -2.7350663496842955,
          -7,
          -3.0588054866759067,
          -3.3600777430711926,
          -7,
          -7,
          -3.335858911319818,
          -7,
          -7,
          -2.4235735197327357,
          -7,
          -2.719952447254438,
          -2.357934847000454,
          -7,
          -7,
          -2.945222316635341,
          -7,
          -3.739011358223984,
          -2.0248235837250323,
          -7,
          -7,
          -7,
          -7,
          -2.2180684590826294,
          -7,
          -7,
          -3.111262513659065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0111473607757975,
          -3.131297796597623,
          -2.734399742520567,
          -3.989983458301399,
          -2.8166389448984614,
          -4.434350105015772,
          -7,
          -2.385606273598312,
          -3.855834011006842,
          -2.2617385473525378,
          -7,
          -2.536242706838319,
          -7,
          -2.632204133050827,
          -3.0679383299743406,
          -7,
          -3.009450895798694,
          -7,
          -7,
          -2.467756051244033,
          -7,
          -7,
          -3.028571252692538,
          -2.8095597146352675,
          -2.2508264548251344,
          -1.9883080726752824,
          -7,
          -7,
          -3.626247954462277,
          -4.151530727012073,
          -7,
          -7,
          -4.1401936785786315,
          -7,
          -3.462397997898956,
          -4.411602872517545,
          -2.774501097901883,
          -7,
          -3.217634323191137,
          -3.9819544444699737,
          -4.186673867499745,
          -3.962856197781499,
          -2.944176243511598,
          -7,
          -4.402433346219312,
          -3.3169324704744563,
          -7,
          -4.139847614646311,
          -7,
          -4.803221467457776,
          -7,
          -3.375332931974451,
          -7,
          -7,
          -4.633417953284989,
          -4.462308134571691,
          -7,
          -3.179095359718127,
          -3.4641665133315516,
          -4.112906490253314,
          -3.9551583869257936,
          -7,
          -7,
          -7,
          -7,
          -3.665318271278418,
          -4.402862957968563,
          -3.6962689967455327,
          -2.8124676978229344,
          -3.978602732660473,
          -3.0187628928164694,
          -3.015778756389041,
          -7,
          -4.081239260911698,
          -7,
          -3.2514557054289663,
          -3.3592661646067485,
          -2.780677274433368,
          -7,
          -3.6869935662646784,
          -3.289514631590605,
          -7,
          -3.4872091017181868,
          -7,
          -3.076640443670342,
          -7,
          -4.207715133805567,
          -7,
          -7,
          -3.1133118672541786,
          -3.2348244927709917,
          -4.873768037582299,
          -7,
          -7,
          -7,
          -3.4734869700645685,
          -7,
          -7,
          -2.9827233876685453,
          -7,
          -3.0425755124401905,
          -3.12393326759676,
          -4.0377451292695925,
          -3.993414184532892,
          -3.365300748637987,
          -2.4144719496293026,
          -3.3280736545131555,
          -3.1384749461121815,
          -2.69397805877852,
          -7,
          -2.6525863391471938,
          -3.3683333807516376,
          -3.261976191397813,
          -3.56191591574931,
          -7,
          -3.131137273778607,
          -3.680698029697635,
          -3.7429214225992955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9351712546033841,
          -2.3643633546157306,
          -7,
          -2.645422269349092,
          -2.134093917368313,
          -2.3040677598990422,
          -1.7746346766608063,
          -1.6953357196809247,
          -7,
          -2.112076246921947,
          -2.6351485136976085,
          -2.6706692894713875,
          -0.7333389059672814,
          -1.8512583487190755,
          -3.1441069730493227,
          -2.655550023357655,
          -2.6090605499300867,
          -2.2405492482826,
          -3.2796669440484556,
          -2.480581786829169,
          -1.8904675944331004,
          -7,
          -2.7997998773461115,
          -2.0407848551333188,
          -1.9326911474206108,
          -7,
          -2.2953934631978936,
          -7,
          -2.721398375521505,
          -3.179178229209794,
          -2.5159719117897525,
          -2.838032418536004,
          -3.0149403497929366,
          -2.714469471659548,
          -1.371938715745616,
          -3.33665982345442,
          -1.761927838420529,
          -7,
          -2.1943160791618803,
          -1.3337598790079583,
          -3.084576277934331,
          -2.1151564661735565,
          -3.3757550347552243,
          -2.1698423097786796,
          -2.43985879260072,
          -2.494711025205263,
          -1.7102335465419447,
          -2.296665190261531,
          -3.2430380486862944,
          -1.7207497786592607,
          -1.461906714495997,
          -3.268285379752997,
          -2.6317818729476508,
          -1.8001508005876772,
          -1.9360495046133057,
          -7,
          -2.004996554372444,
          -2.7382518980637593,
          -7,
          -3.133858125203335,
          -1.870208760597288,
          -2.1343129127724483,
          -1.996886764575857,
          -1.9922990706346086,
          -1.9600628615851772,
          -3.1622656142980214,
          -7,
          -3.049605612594973,
          -2.7721749608246142,
          -2.7269987279362624,
          -2.3046341199328064,
          -1.0937228602657776,
          -2.148876744106389,
          -3.000434077479319,
          -1.716003343634799,
          -1.2642147757264757,
          -1.4762517960070336,
          -2.576341350205793,
          -1.7048962149658333,
          -2.124604535374491,
          -2.264320634080703,
          -2.1918573243828754,
          -2.0568329661286775,
          -2.3139482984020416,
          -2.8026027095457597,
          -2.7801372190494913,
          -7,
          -3.00774777800074,
          -2.925424205107909,
          -2.611988688083979,
          -2.149988456491476,
          -2.1615343667196383,
          -2.4574727253433495,
          -2.0393097340099327,
          -2.367355921026019,
          -2.7541516790028147,
          -2.669316880566112,
          -1.8305084739693955,
          -3.2182728535714475,
          -2.25927524755698,
          -7,
          -1.9138138523837167,
          -1.3549499934509917,
          -3.264463634204881,
          -7,
          -2.0003946338135266,
          -7,
          -1.909139839001463,
          -2.3283796034387376,
          -7,
          -7,
          -2.5816842319562445,
          -2.852479993636856,
          -7,
          -2.8020892578817325,
          -2.0408659483054157,
          -3.1652443261253107,
          -2.2770358881721102,
          -2.3475251599986895,
          -2.3178022622275756,
          -2.9995654882259823,
          -7,
          -3,
          -3.1000257301078626,
          -2.236968894270856,
          -3.104145550554008,
          -2.268464994147538,
          -2.906765889540728,
          -7,
          -2.356790460351716,
          -2.6954816764901977,
          -2.6357708836729112,
          -2.2405492482826,
          -2.9995654882259823,
          -2.8180278418592564,
          -7,
          -7,
          -2.4523615331345736,
          -3.2643455070500926,
          -7,
          -7,
          -7,
          -2.6368220975871743,
          -2.6976651626476746,
          -3.6413749451921253,
          -3.003029470553618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058644255742717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2119210843085093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0442652999153195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7668588110214176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.104726044109975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6947806360120614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.884722557505038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.867820908045573,
          -7,
          -7,
          -3.827304641089735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0427723374976736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7568895628675167,
          -5.150053019367417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.994844849553398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0962145853464054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.101317377184387,
          -7,
          -4.198821977603206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.608964385524357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.496614877996609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9607560909017727,
          -7,
          -4.956234082127034,
          -7,
          -7,
          -4.547134479806692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.920801381825654,
          -4.271586064027271,
          -7,
          -7,
          -7,
          -2.8717674683517753,
          -3.4119562379304016,
          -7,
          -3.479127237417261,
          -7,
          -3.5613399414589013,
          -4.5768249102949845,
          -4.6578013573335815,
          -4.5026728775022065,
          -3.6974734557764086,
          -4.281873856870123,
          -4.391358602487403,
          -3.5072871015801907,
          -3.5251312252008757,
          -4.61028744666005,
          -7,
          -4.8010433637188035,
          -7,
          -4.007939712514268,
          -3.175040443810621,
          -7,
          -4.626945698847907,
          -4.151614972016013,
          -3.2216749970707688,
          -3.475004239923217,
          -3.1845623877377895,
          -4.281862509737461,
          -7,
          -4.181872159010333,
          -3.8048887446223913,
          -7,
          -7,
          -7,
          -3.6926883243864563,
          -7,
          -7,
          -7,
          -3.3067894674956784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.843793198325913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.755074101758472,
          -4.378543247161644,
          -7,
          -7,
          -7,
          -7,
          -4.312156191475623,
          -7,
          -7,
          -3.620864475265121,
          -7,
          -7,
          -3.6712654329471586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.559577489376628,
          -7,
          -7,
          -4.606757447446635,
          -3.6109202833939147,
          -7,
          -4.6349606700606385,
          -7,
          -7,
          -7,
          -4.018325945402921,
          -7,
          -7,
          -7,
          -2.886490725172482,
          -4.078456818053293,
          -1.8929917203032336,
          -7,
          -2.645422269349092,
          -7,
          -2.254237237671701,
          -2.917199067185785,
          -1.6374182465921117,
          -7,
          -7,
          -2.8881092595069315,
          -2.519171463821659,
          -2.9386830705406757,
          -3.0515383905153275,
          -1.5658478186735176,
          -2.2875981702912034,
          -2.107672395049396,
          -1.9949034429806192,
          -1.6866049133919572,
          -2.05482190018818,
          -2.946452265013073,
          -1.6457354385455876,
          -2.5599066250361124,
          -1.9145194487727255,
          -7,
          -2.2900346113625183,
          -7,
          -2.3188219281371274,
          -2.835056101720116,
          -2.622214022966295,
          -2.8793458839494313,
          -2.484528800490016,
          -2.695741910151855,
          -2.119475840906798,
          -2.158894389873804,
          -7,
          -2.065321112032189,
          -7,
          -7,
          -7,
          -2.1594722066517003,
          -7,
          -2.61066016308988,
          -2.768215121441203,
          -7,
          -2.1405589996233214,
          -2.66838591669,
          -1.8142046196810313,
          -7,
          -2.4424797690644486,
          -2.403120521175818,
          -2.4931093601037926,
          -3.2556945307314797,
          -2.814913181275074,
          -7,
          -7,
          -3.1108140939166935,
          -1.9641248816751649,
          -2.7024305364455254,
          -2.660865478003869,
          -1.3936726770623664,
          -7,
          -2.735869743544286,
          -2.28668096935493,
          -2.381853188778583,
          -1.9118231942831303,
          -2.128722284338427,
          -3.232945312745227,
          -7,
          -2.820037171803748,
          -2.0764583877121514,
          -7,
          -2.3667341679034988,
          -1.999542607138445,
          -7,
          -7,
          -2.616160312847583,
          -7,
          -7,
          -3.2566375808675403,
          -7,
          -7,
          -7,
          -2.00851982868854,
          -2.0805709895756306,
          -2.677378796959058,
          -2.4026297928954663,
          -7,
          -7,
          -2.4855585296880656,
          -2.074217826516075,
          -1.7906369619317033,
          -1.6203171430538974,
          -2.66149717917983,
          -1.5929166118880926,
          -2.2705600108732593,
          -2.807196660710947,
          -2.3893137784594445,
          -7,
          -2.528488190640618,
          -7,
          -7,
          -7,
          -7,
          -2.6364878963533656,
          -7,
          -2.6857417386022635,
          -7,
          -2.3599578188144723,
          -7,
          -2.5826314394896364,
          -7,
          -2.4073909044707316,
          -7,
          -2.12057393120585,
          -2.0170333392987803,
          -2.0285712526925375,
          -2.4029297482837086,
          -7,
          -7,
          -2.235107414899873,
          -2.5599066250361124,
          -7,
          -7,
          -7,
          -2.2863067388432747,
          -7,
          -2.565211888976517,
          -2.6273658565927325,
          -3.4840149626675627,
          -2.226170123398999,
          -7,
          -2.533299860933881,
          -2.3180633349627615,
          -7,
          -3.0261926680962223,
          -7,
          -7,
          -2.737987326333431,
          -2.526626414247843,
          -3.04766419460156,
          -2.553883026643874,
          -7,
          -7,
          -7,
          -2.6685023963693637,
          -2.569373909615046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7172405854118513,
          -7,
          -7,
          -7,
          -7,
          -3.325720858019412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5831551591574486,
          -7,
          -7,
          -3.1718726561396826,
          -3.110572876853564,
          -7,
          -7,
          -7,
          -7,
          -3.3664229572259727,
          -7,
          -4.105442054801695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3780343224573315,
          -7,
          -7,
          -7,
          -4.375517300649672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.761551988564182,
          -2.401154272285065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.422589839851482,
          -7,
          -7,
          -7,
          -7,
          -3.6276730317666157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.269139196792179,
          -7,
          -3.3774883833761327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8666810784419927,
          -7,
          -7,
          -7,
          -7,
          -3.1080573737838537,
          -7,
          -3.2657237281336005,
          -3.4095950193968156,
          -7,
          -7,
          -7,
          -7,
          -3.052886235256382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8318697742805017,
          -7,
          -7,
          -7,
          -7,
          -3.4379090355394983,
          -3.353531559077762,
          -7,
          -3.4095950193968156,
          -7,
          -3.4323919847799242,
          -3.3654879848909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0166454031569487,
          -7,
          -7,
          -7,
          -4.275434214468909,
          -7,
          -7,
          -3.4991369945373827,
          -7,
          -7,
          -3.3679147387937527,
          -3.0811672147134725,
          -7,
          -7,
          -2.8725447293769673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0535905832619945,
          -7,
          -7,
          -3.4412236742426123,
          -7,
          -7,
          -7,
          -7,
          -3.4171394097273255,
          -7,
          -3.4795753101749884,
          -7,
          -7,
          -7,
          -4.143826390839561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.467505773250982,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8698182079793284,
          -7,
          -2.9224895437705523,
          -7,
          -7,
          -2.182519056204964,
          -2.880432465023419,
          -2.815577748324267,
          -2.711807229041191,
          -2.8220045340895257,
          -3.1427022457376155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1409268419924303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3895204658463776,
          -7,
          -7,
          -7,
          -2.7616057013194175,
          -3.384353414137506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9523080096621253,
          -3.453471233722936,
          -3.4217684012069243,
          -4.456696942683218,
          -7,
          -7,
          -7,
          -3.4276483711869328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4429274953741063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.061452479087193,
          -7,
          -7,
          -7,
          -7,
          -3.3478177127089124,
          -2.705619383455026,
          -7,
          -7,
          -7,
          -7,
          -2.638156336676239,
          -2.6065710271626346,
          -7,
          -3.4102709642521845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4761067168401913,
          -2.8394780473741985,
          -7,
          -7,
          -7,
          -7,
          -3.3703280077795106,
          -3.436480695009495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8257042442466873,
          -7,
          -7,
          -7,
          -3.180545705995641,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4055171069763763,
          -3.3604040547299387,
          -1.8555864516285612,
          -2.4560284548128597,
          -7,
          -7,
          -7,
          -7,
          -3.8038768673049046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.433449793761596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9890634721344744,
          -7,
          -3.500785172917456,
          -3.9671734229555398,
          -2.784902449886655,
          -7,
          -7,
          -7,
          -3.1656893760176175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4291060083326967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9608653102315436,
          -7,
          -7,
          -2.2761896045517336,
          -4.063776061059595,
          -7,
          -7,
          -3.982693258667742,
          -2.4318995994914934,
          -2.844725627973226,
          -7,
          -2.722261297472855,
          -7,
          -2.762542164705617,
          -3.8985057855343586,
          -3.896838415155804,
          -3.5606371457834687,
          -2.4753609954591043,
          -4.020796188104522,
          -3.8205954965444904,
          -2.58609420577366,
          -7,
          -3.930470177808289,
          -3.7000110623221123,
          -4.330187096366115,
          -7,
          -3.0579771412316132,
          -3.2373237705991307,
          -7,
          -3.86722188785143,
          -4.480064461595988,
          -7,
          -2.8567206159793326,
          -2.5208810563217763,
          -4.3023201036621055,
          -4.28443073384452,
          -3.4532418730194783,
          -3.215848976111454,
          -4.28517460125202,
          -4.122445256281956,
          -3.306996561743261,
          -3.1438198253427676,
          -4.047274867384179,
          -3.022290870952613,
          -3.5148907142742933,
          -1.7258668430871862,
          -2.547129786025174,
          -7,
          -7,
          -7,
          -3.7891457299039937,
          -3.4298060925892933,
          -3.0823065450398275,
          -3.359898693821246,
          -3.7215908027407387,
          -7,
          -7,
          -3.8664645659717403,
          -7,
          -7,
          -7,
          -3.9380441425719126,
          -3.0243830340033324,
          -7,
          -2.0656802408725516,
          -3.608517119395359,
          -4.576226137449605,
          -7,
          -7,
          -3.376211850282673,
          -3.4015424438972985,
          -7,
          -4.474857031317561,
          -2.699042380718472,
          -3.349309912127894,
          -3.3641756327706194,
          -2.814180981040187,
          -7,
          -4.320374802023668,
          -3.2463754640035085,
          -3.2065560440990297,
          -3.737907923374639,
          -2.3176080294298718,
          -7,
          -3.386320573894046,
          -3.4217170096674763,
          -3.1388663510447565,
          -7,
          -4.175994738445905,
          -7,
          -7,
          -3.175946470095546,
          -3.4868199647800893,
          -2.6051254000240065,
          -7,
          -7,
          -2.9398519178833737,
          -3.6634496339132876,
          -1.394212816864615,
          -3.3756636139608855,
          -2.134093917368313,
          -2.254237237671701,
          -7,
          -1.5934332447899435,
          -1.1330596427539097,
          -3.3884564527002667,
          -7,
          -1.961641800198452,
          -2.3963737275365067,
          -2.5385658797413004,
          -2.1890024502912038,
          -1.6919651027673603,
          -2.755548195648138,
          -2.174466858886018,
          -2.1097472377132287,
          -1.080468045453941,
          -2.2332782113971383,
          -2.2858786515913603,
          -1.802107049908688,
          -2.8652520716525895,
          -2.2838663484734685,
          -3.123851640967086,
          -2.606560492554639,
          -7,
          -1.4664823852680764,
          -3.403120521175818,
          -3.3550682063488506,
          -2.6507791752811687,
          -1.9682891363042425,
          -2.272448705188279,
          -7,
          -2.6805369487066266,
          -3.1072099696478683,
          -2.7496075021373283,
          -2.7777891874348675,
          -7,
          -2.5848963441374497,
          -1.8400095309250863,
          -2.90687353472207,
          -2.1182647260894796,
          -2.659769972970185,
          -7,
          -1.6200260717887942,
          -2.664328518680805,
          -1.7334265652607361,
          -7,
          -2.7711463488149852,
          -2.5244888507220873,
          -2.585883537734565,
          -2.6614414777862088,
          -2.550577745255679,
          -3.063145637106638,
          -2.8943160626844384,
          -2.9786369483844743,
          -1.7650828574593154,
          -2.6088315520434717,
          -2.358886204405869,
          -2.1093336632777238,
          -2.8083797948823843,
          -2.0870769671078984,
          -2.2101847054724066,
          -2.1575834883314,
          -2.2820815443017564,
          -2.578311687718837,
          -3.5398703234865425,
          -7,
          -2.2697586553882063,
          -2.5440680443502757,
          -2.9077695418108918,
          -2.4492211919059925,
          -1.832745392146821,
          -7,
          -7,
          -2.148632029792198,
          -2.5426698494966873,
          -2.588191645180769,
          -2.60404595999381,
          -2.772028165324855,
          -2.8293956772820934,
          -2.2332947998687853,
          -1.70372115992702,
          -1.7107859199198063,
          -2.367006294428387,
          -1.9592860652751163,
          -7,
          -7,
          -1.9687411114278788,
          -2.1558256040617167,
          -2.5244888507220873,
          -1.3877066784034473,
          -1.9477603819114044,
          -2.0086001717619175,
          -1.743582870756548,
          -2.4964959215304496,
          -2.2524578842218443,
          -2.888179493918325,
          -2.979092900638326,
          -3.3636119798921444,
          -3.04941186087108,
          -2.627024295834346,
          -2.8752060040968903,
          -2.5407762338899396,
          -7,
          -2.5202027086237306,
          -7,
          -1.8306329077074808,
          -7,
          -2.9393528243805584,
          -3.3656751404559175,
          -2.8948696567452528,
          -2.8178957571617955,
          -2.8987251815894934,
          -2.3114006325028105,
          -1.7581447785956712,
          -2.6148972160331345,
          -3.437433443797971,
          -7,
          -1.8693861355483907,
          -7,
          -7,
          -7,
          -2.6126072783550733,
          -2.3823773034681137,
          -2.9168047518661746,
          -2.6165411519876707,
          -2.513716884831001,
          -2.910624404889201,
          -2.1623029745700477,
          -7,
          -2.116649245682762,
          -3.053462604925455,
          -7,
          -2.7767219333485307,
          -7,
          -7,
          -2.1389970140326358,
          -2.4308272668926096,
          -3.47158505418519,
          -7,
          -7,
          -3.400365273349939,
          -7,
          -2.382173714467586,
          -7,
          -7,
          -3.3418300569205104,
          -3.9873086737311825,
          -7,
          -7,
          -3.9819997141298784,
          -7,
          -7,
          -3.505014240084107,
          -7,
          -7,
          -2.6819391031748543,
          -7,
          -3.9833104857941155,
          -7,
          -3.6530838148614064,
          -2.7567628540462232,
          -3.3842189645780287,
          -7,
          -7,
          -4.011020355516257,
          -7,
          -2.659065083745527,
          -3.2788841961972057,
          -7,
          -3.0609495323235096,
          -2.586299508635064,
          -3.983220214648103,
          -7,
          -7,
          -3.2114765203615074,
          -3.510545010206612,
          -3.991137435120312,
          -3.26101530988617,
          -3.9882467233753784,
          -3.9833104857941155,
          -7,
          -7,
          -7,
          -7,
          -3.9906495883188544,
          -7,
          -4.042575512440191,
          -7,
          -3.130990657630152,
          -7,
          -7,
          -3.993920958801287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.257838506552783,
          -2.387178600948196,
          -3.985830489858392,
          -3.3852039627942734,
          -3.7264826967848297,
          -7,
          -7,
          -7,
          -3.9878002857518724,
          -3.7008334670285428,
          -7,
          -7,
          -7,
          -7,
          -2.177623935903965,
          -7,
          -7,
          -3.9854713832895876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.113625867244077,
          -3.682686478249768,
          -2.9897167199481047,
          -7,
          -7,
          -7,
          -7,
          -3.683587317572767,
          -7,
          -3.3016375827268716,
          -3.9917132757130895,
          -3.708845638048179,
          -3.513528333599192,
          -3.998520882835038,
          -7,
          -2.702081614845795,
          -3.5212688755983854,
          -7,
          -7,
          -7,
          -7,
          -3.9849771264154934,
          -3.985830489858392,
          -3.9841671271469883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5279304952743336,
          -7,
          -7,
          -3.989627770745151,
          -7,
          -2.572441309406038,
          -7,
          -3.9836262871245345,
          -3.219977256744623,
          -7,
          -2.377854510283913,
          -3.9876215821254837,
          -7,
          -7,
          -7,
          -3.1143607425185924,
          -7,
          -3.803934849863842,
          -3.3000814088684325,
          -7,
          -7,
          -3.9928185200666797,
          -3.2491915608671667,
          -3.9860996250551297,
          -3.71566914240099,
          -4.023458237643675,
          -7,
          -7,
          -3.510902307208997,
          -3.6906390117159673,
          -7,
          -7,
          -3.792578442664711,
          -7,
          -7,
          -7,
          -3.6813769331998136,
          -7,
          -2.516150885953567,
          -3.1253004979635812,
          -7,
          -4.006936451364293,
          -7,
          -4.194042327886423,
          -7,
          -7,
          -3.301203678722446,
          -3.600791448229794,
          -3.0169498130975607,
          -7,
          -7,
          -7,
          -2.822474560866872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313740708405768,
          -7,
          -3.5192590585137475,
          -7,
          -3.2234959409623944,
          -3.988960070390338,
          -7,
          -2.581813728522774,
          -3.683092087197129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0036171757475993,
          -7,
          -2.8973914245675183,
          -7,
          -4.014688511872338,
          -2.341675935576924,
          -3.6848004941944112,
          -4.000911062131223,
          -3.69810054562339,
          -4.002597980719909,
          -3.5304131631775952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9871745010875417,
          -4.033785516842231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0920108321869253,
          -7,
          -2.8046930263961647,
          -3.5085746049701796,
          -3.207365037469072,
          -7,
          -3.6826413871962154,
          -3.9934803190699966,
          -7,
          -7,
          -7,
          -3.016805502720029,
          -3.9921999297955852,
          -7,
          -3.9830847727377883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985291718592888,
          -7,
          -4.010299956639812,
          -3.625963747121952,
          -3.406395824613479,
          -7,
          -7,
          -3.9838517189914717,
          -4.003288158826075,
          -7,
          -7,
          -3.9929509605704463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9906495883188544,
          -2.493583739705195,
          -7,
          -7,
          -7,
          -3.6833172619218826,
          -2.871393289428776,
          -2.9861892997368242,
          -7,
          -3.9914918889101596,
          -3.4185912766763797,
          -3.985201858364572,
          -7,
          -3.136363791969793,
          -7,
          -7,
          -7,
          -3.2096681778247347,
          -3.699620957965614,
          -2.5509617522981762,
          -7,
          -3.179370903847892,
          -3.984707294482673,
          -3.982994454658664,
          -3.984842231405276,
          -2.35735333232053,
          -4.0124153747624325,
          -7,
          -3.2573585347059146,
          -4.0333031013725735,
          -7,
          -7,
          -7,
          -3.6876627068858356,
          -3.704536575469313,
          -7,
          -7,
          -7,
          -3.5141048209728325,
          -7,
          -3.683407299132095,
          -7,
          -3.031183964643677,
          -3.1790847884927227,
          -2.930312142239915,
          -3.519653016141642,
          -3.143550085221494,
          -2.8454998168095504,
          -7,
          -7,
          -3.275886960301226,
          -7,
          -3.9834909718151668,
          -3.395195298492141,
          -3.9864134054654685,
          -3.029221394253928,
          -2.9192960569888813,
          -7,
          -3.993832866613986,
          -3.1122697684172707,
          -7,
          -2.995151085215237,
          -3.541454428747589,
          -7,
          -7,
          -7,
          -3.5484713141320112,
          -3.4025193025742495,
          -7,
          -3.9856060830524367,
          -3.9956790605116224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3960248966085933,
          -7,
          -3.66216735642827,
          -3.7742614232193215,
          -3.059774409166059,
          -7,
          -3.1783601976294182,
          -3.170603929784626,
          -3.17368564886044,
          -7,
          -3.698448538015329,
          -7,
          -3.1684974835230326,
          -3.3842817128855844,
          -4.019116290447073,
          -7,
          -7,
          -7,
          -2.923546226642205,
          -7,
          -3.9907826918031377,
          -3.9857407410500745,
          -4.023170121121397,
          -7,
          -2.500503495624946,
          -7,
          -7,
          -2.513904639138496,
          -2.8948496596085533,
          -4.446770095200388,
          -3.3008562431183934,
          -3.5588645046423837,
          -3.0178677189635055,
          -3.1581513253927027,
          -3.9345237001887745,
          -1.5595677521030744,
          -7,
          -1.9929204347492253,
          -3.2243202842554037,
          -3.2753272435580905,
          -3.293995271707848,
          -1.893256289727396,
          -3.9758605296515843,
          -3.4881531577034988,
          -2.138534043739593,
          -3.683384791579453,
          -3.356269286063917,
          -3.1992813424620823,
          -3.564282100933567,
          -3.271531838704605,
          -2.4551495211798278,
          -3.6278163058623765,
          -2.9423571865178624,
          -3.369907073710945,
          -3.097430853944242,
          -7,
          -2.2304708807665583,
          -2.499955165640437,
          -3.4724821869260936,
          -3.38396217250729,
          -3.0652773122016446,
          -2.9625086085063823,
          -3.949032013496317,
          -3.7128600646644574,
          -2.9209878672938134,
          -3.4158718443377936,
          -3.1886238554663477,
          -2.908773627744193,
          -3.177322348477116,
          -2.1314843764626303,
          -2.915194571282631,
          -3.527243116388089,
          -3.1685816572769356,
          -4.015946243657567,
          -3.0226639846359435,
          -2.235244649941361,
          -2.3858445042581002,
          -2.151976149357102,
          -2.7730922490960315,
          -3.08020545491413,
          -7,
          -2.7694954853699985,
          -4.034427905025403,
          -3.5140161804006493,
          -3.619823500457278,
          -2.35623838202335,
          -2.3459766034400795,
          -3.7038070652743285,
          -1.8600035372297603,
          -2.6421609791755407,
          -3.323642548936354,
          -3.988514365833666,
          -4.053769689599309,
          -3.3878790219565733,
          -2.4148254260236968,
          -3.370266296307733,
          -2.8298703143525383,
          -1.6400823780113092,
          -2.4012744207046004,
          -3.686189234244024,
          -2.939082242393672,
          -2.9673027695242467,
          -2.7514638708365453,
          -3.1348939624551835,
          -2.088886014145426,
          -4.109511052229932,
          -1.4142259545382132,
          -7,
          -7,
          -2.239436555168604,
          -2.150196735710199,
          -3.7174624577374917,
          -2.2721936013114594,
          -3.548880562637515,
          -2.1336167877718255,
          -2.870826418185298,
          -2.787416192644107,
          -3.14674801363064,
          -3.987889609997745,
          -7,
          -4.000650953629595,
          -2.894418633356818,
          -1.6306340876669476,
          -3.2114765203615074,
          -2.3040677598990422,
          -2.917199067185785,
          -1.5934332447899435,
          -7,
          -1.8331896251996778,
          -3.089507709110095,
          -7,
          -1.4231551533678946,
          -2.739220617780206,
          -1.5131376612116403,
          -2.3492775274679554,
          -2.3148556699654823,
          -3.278296208091274,
          -2.215755027627245,
          -1.8617119736967596,
          -2.3640817414110704,
          -3.2431621151010512,
          -2.925441019653158,
          -2.383498555402076,
          -3.1107580088798876,
          -2.42717806043141,
          -2.825339553190717,
          -2.991934549718948,
          -7,
          -1.1381797817338746,
          -3.6957880262155345,
          -3.985156921277057,
          -2.4660021221677813,
          -1.750996697610618,
          -1.954049996921635,
          -3.9842572017054163,
          -2.5352941200427703,
          -2.7415455167762097,
          -2.599155000684555,
          -3.9913590026379504,
          -7,
          -3.51018741901152,
          -2.1096372294004264,
          -3.292964545382929,
          -2.5087685749709543,
          -2.823604628355158,
          -3.1391591616911594,
          -2.157722276885424,
          -2.6634867656723524,
          -2.1733028418881863,
          -7,
          -3.060404015244707,
          -3.143505503331407,
          -2.5875030989919194,
          -2.0524350335421793,
          -3.1499225661105013,
          -3.2880702826432477,
          -3.3869000790623756,
          -3.038056896092195,
          -1.5580431623435886,
          -3.3116267318705064,
          -2.9647737403272063,
          -2.2133145855992264,
          -3.2997251539756367,
          -1.7049214924545777,
          -2.677128774472802,
          -2.4006298316495482,
          -3.092457462483194,
          -3.303368876556038,
          -2.801991388702298,
          -3.6869935662646784,
          -1.751446065406006,
          -2.501358849455384,
          -3.3901841527188092,
          -2.917549269387528,
          -2.4657349662676826,
          -7,
          -3.6850696293911485,
          -1.9041212102514586,
          -2.305609289566193,
          -4.005309236848516,
          -1.8488899607206744,
          -3.111892321593538,
          -3.0420024227314255,
          -2.867299091392458,
          -1.2346093048038251,
          -2.158425319506846,
          -2.2161856039886256,
          -2.3140263025987355,
          -7,
          -3.682370742516557,
          -2.3538271299621987,
          -2.6935437564115863,
          -3.0854243788417226,
          -2.2910882984509326,
          -0.9875831142025345,
          -2.447606788068159,
          -1.1866026905786375,
          -1.0812433931844716,
          -2.0596799053912447,
          -3.2091574233475386,
          -3.4089180208467798,
          -3.5098742850047193,
          -3.9841671271469883,
          -2.955600296732481,
          -2.065477859320429,
          -3.0095217143038493,
          -3.9846623061901068,
          -3.3857849588433355,
          -3.982406928863795,
          -1.1636368510098085,
          -3.985965078304871,
          -3.6994040818153375,
          -7,
          -2.757485343853885,
          -3.2229331309085762,
          -3.512995511348242,
          -2.8797132763086255,
          -2.0750305588561777,
          -2.7819820024964894,
          -3.4035923240271115,
          -3.6869935662646784,
          -2.612275116542189,
          -7,
          -7,
          -7,
          -2.594171479114912,
          -3.691390960388043,
          -2.5775801698613177,
          -1.9418973906489527,
          -2.6086985300968797,
          -2.809630585144874,
          -2.732393759822968,
          -7,
          -2.7861160241069776,
          -3.683992086445554,
          -3.505330896665327,
          -1.1517477758067503,
          -7,
          -7,
          -1.7622744882848056,
          -2.8578643942098227,
          -2.8681824452850693,
          -7,
          -7,
          -2.8489364984779035,
          -7,
          -2.5798508196618952,
          -3.982994454658664,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9671359498564263,
          -7,
          -7,
          -7,
          -7,
          -3.7062055418819706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.162663958267158,
          -7,
          -7,
          -2.3242824552976926,
          -3.84069905030844,
          -7,
          -7,
          -7,
          -7,
          -3.022840610876528,
          -7,
          -4.567931673283491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351622399736366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3432115901797474,
          -3.0664750137541312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.059260404121731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2383723290283255,
          -7,
          -3.04688519083771,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.948155484012653,
          -3.11293997608408,
          -7,
          -2.971275848738105,
          -7,
          -7,
          -2.516755660221549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4865367369347835,
          -7,
          -7,
          -7,
          -7,
          -3.2440295890300215,
          -7,
          -7,
          -2.630591889711026,
          -7,
          -7,
          -7,
          -4.742717277807254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0261245167454502,
          -7,
          -7,
          -7,
          -2.6532125137753435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7424894645817752,
          -7,
          -7,
          -3.1734776434529945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1022621494942735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.110637802263409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0863598306747484,
          -7,
          -3.298033910215436,
          -7,
          -7,
          -2.928597003413005,
          -7,
          -2.5266622930104643,
          -7,
          -2.137354111370733,
          -3.17868923977559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.158513262616432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4446692309385245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6034691597338386,
          -4.110363169253384,
          -7,
          -7,
          -7,
          -3.147985320683805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9044658550752316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.20194306340165,
          -2.8829038344697353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4927603890268375,
          -7,
          -3.729421293380923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9320930828571,
          -7,
          -7,
          -7,
          -3.5734623643151497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0090257420869104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4771488280971456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.355065010645541,
          -7,
          -7,
          -4.25310771003719,
          -7,
          -7,
          -7,
          -7,
          -2.918554530550274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1922886125681202,
          -7,
          -7,
          -3.346682328514696,
          -4.452123918449042,
          -7,
          -2.646730386247423,
          -3.4858002672700152,
          -2.7488080049586023,
          -2.4550733759211245,
          -4.109511052229932,
          -2.899320807326632,
          -7,
          -2.855632711553374,
          -3.9812634968287997,
          -3.4076646720454744,
          -3.464916126290365,
          -2.7058466137393826,
          -7,
          -3.254806940132614,
          -3.114458473109267,
          -3.1809855807867304,
          -4.014247443807829,
          -7,
          -4.4050525185551175,
          -7,
          -3.488931262422253,
          -3.3997429262428613,
          -3.8757555792580543,
          -3.678396965988749,
          -3.6161152654468784,
          -7,
          -3.263001660603791,
          -2.6829969783596055,
          -3.5891897589878594,
          -4.2547655324161475,
          -3.3525683861793083,
          -2.9383946223434494,
          -7,
          -7,
          -4.363292251571082,
          -3.6234904981141276,
          -7,
          -7,
          -4.278982116865444,
          -2.9203738085519615,
          -2.7475530418655225,
          -7,
          -7,
          -7,
          -3.229499004575783,
          -7,
          -3.3727279408855955,
          -7,
          -3.463205932194144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2536920674836742,
          -3.9831524989729203,
          -5.174626667518491,
          -7,
          -7,
          -7,
          -3.2966129631576377,
          -7,
          -7,
          -3.3756636139608855,
          -7,
          -3.0178677189635055,
          -3.4202858849419178,
          -7,
          -7,
          -3.0523090996473234,
          -7,
          -3.623042434246382,
          -3.5764565324056203,
          -7,
          -7,
          -3.6126991080645925,
          -2.880778604742453,
          -7,
          -4.16354896490181,
          -7,
          -7,
          -7,
          -4.041629508475138,
          -3.0629578340845103,
          -7,
          -7,
          -7,
          -2.9517883735590873,
          -0.9756270071664029,
          -7,
          -1.7746346766608063,
          -1.6374182465921117,
          -1.1330596427539097,
          -1.8331896251996778,
          -7,
          -3.070037866607755,
          -7,
          -2.2127720755706215,
          -1.906694111260769,
          -2.7045643180994903,
          -1.9426606368895096,
          -1.4702724510905236,
          -2.530519856331775,
          -1.9138844636320478,
          -2.070037866607755,
          -1.68241978486113,
          -2.145889346756647,
          -1.7339376451385384,
          -1.5755524408482517,
          -2.7440320672350427,
          -1.8913677498314387,
          -3.143327129992046,
          -2.587336734507256,
          -7,
          -1.8383143550055454,
          -3.1000257301078626,
          -2.2949069106051923,
          -2.678749548136708,
          -2.1638683451957634,
          -2.2249634182287825,
          -2.509650479546582,
          -2.305351369446624,
          -3.1109262422664203,
          -2.3205616801952367,
          -7,
          -7,
          -2.414973347970818,
          -1.5579444478342641,
          -3.0622058088197126,
          -2.09627785207853,
          -2.628110148946118,
          -7,
          -1.8623947148370348,
          -2.131502012593951,
          -1.354321904121914,
          -7,
          -2.0442783733957133,
          -2.7327956982893293,
          -1.6882220108027965,
          -2.721849855734995,
          -2.61066016308988,
          -2.7168377232995247,
          -2.556704439233648,
          -3.1709458747292723,
          -1.657220533485756,
          -2.7218106152125467,
          -3.1740598077250253,
          -2.024567757196038,
          -2.814913181275074,
          -2.4235994898822537,
          -2.653534094302368,
          -1.9454412288607073,
          -1.581255782710964,
          -2.44216608578472,
          -3.3582204731086795,
          -7,
          -2.404015205403452,
          -2.2813174984203766,
          -2.7623033632877685,
          -1.891746470822618,
          -1.6237931783611625,
          -7,
          -7,
          -1.8164307001177258,
          -2.484584529282843,
          -3.1622656142980214,
          -2.599737555408931,
          -2.7510223528780795,
          -3.0623312368297984,
          -2.137775961313472,
          -1.8271048087310866,
          -1.7691758440581877,
          -2.2769917547965424,
          -2.221227885347781,
          -7,
          -7,
          -2.3141391643241276,
          -1.9073837961475004,
          -1.9109526078006482,
          -1.1700329989066187,
          -2.2407348574378876,
          -1.5167257974365613,
          -1.9485306889830238,
          -2.7405381265727367,
          -2.228359829144681,
          -3.02201573981772,
          -2.4210552287780143,
          -7,
          -7,
          -2.5034501934420117,
          -2.9380190974762104,
          -2.172700208504903,
          -7,
          -2.1164416975393117,
          -7,
          -1.883242924469617,
          -7,
          -3.1277525158329733,
          -7,
          -2.4321672694425884,
          -2.6567368704836722,
          -2.3428173146357327,
          -1.7905444111627002,
          -1.6805552563738542,
          -2.374901024683465,
          -3.1664301138432824,
          -7,
          -1.7628729845648419,
          -7,
          -7,
          -7,
          -7,
          -2.0572856444182146,
          -3.08278537031645,
          -2.649497120803289,
          -2.59802407233419,
          -3.0814673283885368,
          -2.1850967453424945,
          -7,
          -2.4294586393678927,
          -2.695043658821294,
          -7,
          -3.03906142848015,
          -2.978180516937414,
          -7,
          -2.3428173146357327,
          -2.556181846652911,
          -3.2281436075977417,
          -7,
          -7,
          -7,
          -7,
          -2.6334684555795866,
          -2.975891136401793,
          -7,
          -7,
          -2.571708831808688,
          -2.45484486000851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4653828514484184,
          -7,
          -4.358819677179949,
          -7,
          -7,
          -7,
          -7,
          -3.343703931783211,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5179652417860705,
          -2.44870631990508,
          -7,
          -3.702125963963316,
          -7,
          -7,
          -7,
          -2.6384892569546374,
          -7,
          -7,
          -3.5183703477185686,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.037426497940624,
          -7,
          -7,
          -7,
          -7,
          -2.2329961103921536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.757564719601866,
          -7,
          -2.5774917998372255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7320316968741922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.494850021680094,
          -7,
          -3.674952948048565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4138583422700264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4955443375464483,
          -7,
          -4.064457989226918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.229809782952539,
          -4.101506496139928,
          -2.510545010206612,
          -7,
          -7,
          -4.737431200514583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2911467617318855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6864575104691117,
          -2.649497120803289,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.078674273360466,
          -7,
          -2.437750562820388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.82020145948564,
          -1.9107768156582345,
          -7,
          -1.721747219185589,
          -1.8239087409443189,
          -7,
          -3.729010814729995,
          -7,
          -7,
          -7,
          -7,
          -2.481442628502305,
          -7,
          -7,
          -3.2487087356009177,
          -7,
          -3.862250674597925,
          -7,
          -7,
          -3.114694366104735,
          -7,
          -7,
          -2.3283796034387376,
          -2.857935264719429,
          -7,
          -7,
          -2.4401216031878037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -2.4977192746214762,
          -7,
          -7,
          -7,
          -2.5352941200427703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.558708570533166,
          -7,
          -7,
          -7,
          -2.954724790979063,
          -7,
          -5.149763948934585,
          -7,
          -1.87069645798925,
          -2.4712917110589387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.456366033129043,
          -7,
          -7,
          -2.651278013998144,
          -3.6895752157599384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.669316880566112,
          -7,
          -7,
          -7,
          -3.2111205412580492,
          -7,
          -7,
          -7,
          -2.6040099324122306,
          -7,
          -3.3945392313722045,
          -2.143014800254095,
          -4.197528655522771,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.481442628502305,
          -7,
          -7,
          -7,
          -7,
          -2.6085260335771943,
          -2.59659709562646,
          -1.8595885767354927,
          -7,
          -7,
          -2.059752694209299,
          -2.509202522331103,
          -7,
          -7,
          -7,
          -2.740362689494244,
          -7,
          -7,
          -7,
          -4.130794626668426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8115750058705933,
          -2.7965743332104296,
          -2.1089031276673134,
          -1.8908078032841642,
          -7,
          -4.797333338040433,
          -3.042181594515766,
          -7,
          -7,
          -2.4345689040341987,
          -7,
          -7,
          -7,
          -1.7337321105952306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.584331224367531,
          -7,
          -7,
          -7,
          -7,
          -3.4075608494863623,
          -4.655043943063447,
          -7,
          -2.61066016308988,
          -4.54597474839116,
          -7,
          -7,
          -2.8135809885681917,
          -7,
          -7,
          -2.841359470454855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.505149978319906,
          -7,
          -2.225309281725863,
          -3.0824263008607717,
          -1.8337843746564788,
          -2.2704100618306695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.733919151012391,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.65275868027325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0951577235791214,
          -3.606015715870653,
          -7,
          -7,
          -4.054114900510586,
          -7,
          -4.242926358601607,
          -1.9657442753044998,
          -2.321184027302314,
          -7,
          -7,
          -3.407815642384198,
          -7,
          -7,
          -7,
          -1.4943534012921837,
          -7,
          -4.187605315418148,
          -7,
          -7,
          -3.2758486103094215,
          -4.980203419295704,
          -7,
          -7,
          -2.5160944657544744,
          -7,
          -3.1802958284928002,
          -7,
          -7,
          -3.6109793799229974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8579051461659373,
          -3.438067450453494,
          -7,
          -4.00362206995102,
          -3.333411709141367,
          -7,
          -3.592419030368671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9777236052888478,
          -7,
          -7,
          -7,
          -3.1475438298641407,
          -1.4998984695692326,
          -1.6953357196809247,
          -7,
          -3.3884564527002667,
          -3.089507709110095,
          -3.070037866607755,
          -7,
          -7,
          -2.9395905594871645,
          -2.7551122663950713,
          -3.230469358284793,
          -1.8895171798026698,
          -2.462397997898956,
          -7,
          -7,
          -2.9337402994969355,
          -2.665580991017953,
          -7,
          -7,
          -3.490520309363349,
          -7,
          -7,
          -2.5563025007672873,
          -1.9885589568786155,
          -7,
          -3.3580618151293815,
          -7,
          -7,
          -4.470145775899696,
          -3.600160741295671,
          -4.441011349520877,
          -7,
          -7,
          -1.2430380486862944,
          -7,
          -7,
          -7,
          -1.9673139182870836,
          -2.0412281485084436,
          -7,
          -7,
          -7,
          -2.018423082826786,
          -3.706888394981618,
          -7,
          -3.298197867109815,
          -2.123851640967086,
          -7,
          -2.0086001717619175,
          -7,
          -7,
          -7,
          -2.0922526548953835,
          -1.7612833250963482,
          -7,
          -3.8121777741587537,
          -2.6599162000698504,
          -7,
          -7,
          -1.4778444763387584,
          -2.8130108588032003,
          -7,
          -3.4109458586877746,
          -7,
          -7,
          -7,
          -1.9834007381805383,
          -3.716504163773217,
          -2.941511432634403,
          -1.9840770339028309,
          -2.303915683901469,
          -3.2648178230095364,
          -7,
          -2.059437187851868,
          -2.1877375969867394,
          -1.6164755138885656,
          -1.9311187105921872,
          -2.037509497364078,
          -7,
          -3.1455071714096627,
          -7,
          -2.7321524180652137,
          -7,
          -7,
          -3.2271150825891253,
          -7,
          -7,
          -3.9704166181377833,
          -7,
          -7,
          -7,
          -4.0135113334659,
          -7,
          -3.4835397525513194,
          -3.50512735822657,
          -7,
          -1.9742813588778305,
          -7,
          -2.568201724066995,
          -7,
          -1.6217695803398526,
          -1.5116677767193454,
          -7,
          -2.496929648073215,
          -2.2889196056617265,
          -2.4216039268698313,
          -3.0385284580292,
          -1.7442929831226763,
          -7,
          -7,
          -2.622214022966295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5998830720736876,
          -0.7678976160180906,
          -7,
          -7,
          -7,
          -2.1271047983648077,
          -2.7234556720351857,
          -2.690196080028514,
          -7,
          -3.0701302598602904,
          -3.2187979981117376,
          -7,
          -7,
          -7,
          -3.061829307294699,
          -2.510545010206612,
          -7,
          -3.5809477726878765,
          -2.4502491083193614,
          -7,
          -2.4893959217271293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.125481265700594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357324882740209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.898176483497677,
          -7,
          -7,
          -7,
          -4.877475011224193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6997510316895146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.739572344450092,
          -7,
          -7,
          -7,
          -7,
          -4.026778328659529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.518145291171665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7574339899382694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.403120521175818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.072948031792886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.72788270269935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8527848686805477,
          -7,
          -7,
          -4.670190170724935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5352941200427703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.269512944217916,
          -7,
          -7,
          -2.6074550232146687,
          -4.019240950395851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.830890068368691,
          -7,
          -7,
          -3.589589711034215,
          -7,
          -7,
          -2.693726948923647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0273496077747564,
          -7,
          -4.000694315866355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.066512277856596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.352433371350281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.610543058104407,
          -7,
          -7,
          -7,
          -4.053999860693065,
          -7,
          -7,
          -7,
          -4.274481139688916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.224014811372864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6148972160331345,
          -4.025172688520482,
          -2.6399842480415883,
          -7,
          -7,
          -3.7382254481425052,
          -7,
          -7,
          -7,
          -7,
          -3.4679039465228003,
          -7,
          -7,
          -7,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -7,
          -4.467830005178976,
          -3.9411435675933406,
          -7,
          -7,
          -7,
          -2.667452952889954,
          -7,
          -7,
          -7,
          -2.342422680822206,
          -2.9249680958524342,
          -7,
          -2.4510184521554574,
          -2.8079857748471495,
          -1.3979400086720375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2023066418924566,
          -3.2291805286407804,
          -2.7234556720351857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8555191556678,
          -2.5224442335063197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4122925093230463,
          -7,
          -1.9204263107095962,
          -2.321184027302314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1172712956557644,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -3.089551882886454,
          -7,
          -3.5015613104372822,
          -3.452935870201179,
          -7,
          -7,
          -7,
          -7,
          -2.6580113966571126,
          -7,
          -7,
          -7,
          -2.0644579892269186,
          -7,
          -3.3699267263788624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8941775538387728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -7,
          -3.356790460351716,
          -7,
          -7,
          -7,
          -7,
          -3.031206419827462,
          -7,
          -7,
          -3.4981266865210188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6201360549737576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9166237274738633,
          -7,
          -3.7694511794020378,
          -7,
          -3.9893608137762473,
          -3.398200507219428,
          -3.4735599546008133,
          -7,
          -7,
          -7,
          -7,
          -2.8792233507313676,
          -3.6799726942774185,
          -7,
          -2.9756287228095775,
          -2.9947247797882426,
          -7,
          -7,
          -7,
          -3.47928731647617,
          -3.7768464086952993,
          -7,
          -4.020143666491209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.781396305196791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7866804531966487,
          -7,
          -7,
          -7,
          -3.7723950610820003,
          -7,
          -3.773859552376687,
          -3.074450718954591,
          -2.9170204900714385,
          -7,
          -7,
          -3.839729375206388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7982787042255786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.800717078282385,
          -7,
          -7,
          -3.869954941350072,
          -7,
          -3.081635301502951,
          -7,
          -7,
          -7,
          -7,
          -3.7717344253867693,
          -7,
          -3.4967913157000425,
          -7,
          -3.812244696800369,
          -7,
          -3.316669129971156,
          -3.805092878342673,
          -3.082156803810918,
          -7,
          -7,
          -3.7681939616330715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8047526021504607,
          -7,
          -7,
          -3.7797407511767407,
          -7,
          -2.8048206787211623,
          -7,
          -7,
          -3.4929698053204894,
          -7,
          -2.771638157016891,
          -7,
          -7,
          -7,
          -3.792951708250132,
          -3.5237464668115646,
          -7,
          -3.652826302561005,
          -3.783570111217814,
          -7,
          -7,
          -3.4837298990000236,
          -3.3815049580804746,
          -7,
          -3.5217916496391233,
          -7,
          -7,
          -7,
          -3.7774268223893115,
          -3.4820155764507117,
          -7,
          -7,
          -3.473107252633462,
          -7,
          -7,
          -7,
          -3.466941725717638,
          -7,
          -3.0185756834672515,
          -3.13956426617585,
          -3.9218944709291024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.824386202318774,
          -7,
          -7,
          -7,
          -3.290455091857383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5159400420933182,
          -7,
          -3.7909181952145783,
          -7,
          -3.7997539664118856,
          -3.7786576319473553,
          -7,
          -2.7332782702751555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.088726563953855,
          -7,
          -2.904749346460307,
          -7,
          -7,
          -2.594517165016293,
          -3.7737133252770216,
          -3.3204924754334133,
          -3.0956574403284893,
          -3.3231833228365364,
          -7,
          -7,
          -7,
          -7,
          -3.7897216939809217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6355395938518185,
          -7,
          -2.908417992953383,
          -3.773640193260026,
          -3.7737864449811935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1084522639030685,
          -7,
          -7,
          -3.769081787118219,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.812779707008964,
          -3.951386094880293,
          -3.6893562233554094,
          -7,
          -3.7708520116421442,
          -3.770336441095149,
          -3.1992064791616577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8055858057345935,
          -7,
          -7,
          -7,
          -7,
          -3.1720188094245563,
          -3.7754648093457392,
          -7,
          -7,
          -7,
          -7,
          -3.9092350033683076,
          -3.159266331093494,
          -7,
          -3.7685641095135733,
          -7,
          -3.102890857809762,
          -3.1951382785109965,
          -2.5159565901122156,
          -7,
          -3.2266584788782136,
          -7,
          -7,
          -3.771954748963949,
          -2.5579080274827057,
          -7,
          -3.8228216453031045,
          -3.250053869521799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.490520309363349,
          -7,
          -7,
          -3.7826159320316033,
          -7,
          -7,
          -7,
          -3.074523887934952,
          -3.143275090631622,
          -3.8129801660394804,
          -7,
          -3.7790189719148706,
          -2.7935072291713214,
          -7,
          -7,
          -3.3565612207148794,
          -7,
          -3.7697464671794534,
          -3.3150602414300163,
          -7,
          -3.5422027824340283,
          -3.3181329278612206,
          -7,
          -7,
          -3.821644517542217,
          -7,
          -3.297355896091576,
          -3.5248503032721983,
          -7,
          -7,
          -7,
          -3.836893516376434,
          -3.5029730590656314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7937903846908188,
          -7,
          -3.5632733812690205,
          -7,
          -3.2832729534027876,
          -7,
          -3.055314609787049,
          -3.706899056046803,
          -7,
          -7,
          -3.795741020869244,
          -7,
          -3.341368567484551,
          -3.4458635609892205,
          -3.8265930539340482,
          -3.292625212459791,
          -7,
          -7,
          -3.023458237643675,
          -7,
          -7,
          -7,
          -3.8328919447597904,
          -7,
          -2.7579380162362646,
          -7,
          -7,
          -2.358194936957607,
          -2.9823277781189925,
          -4.384407182308992,
          -3.7967130632808965,
          -4.210679612769305,
          -3.411395206355283,
          -2.9480460080196305,
          -3.708364237014807,
          -1.5843082985891896,
          -7,
          -2.0717476631092104,
          -3.0441073814140625,
          -3.384848171418199,
          -3.7256415271680376,
          -2.094307274845359,
          -4.090575455222202,
          -3.6336848274923423,
          -2.379986070579087,
          -3.41355121317555,
          -3.233428590374369,
          -3.835087847232495,
          -3.9163552340406005,
          -3.5147469246343817,
          -2.3712322494503155,
          -3.128200370394246,
          -4.300029967882302,
          -3.7256031264971328,
          -3.081848602267315,
          -7,
          -2.176474521057038,
          -2.694312646223346,
          -3.7960388160046143,
          -3.581627333755595,
          -2.9000308247140794,
          -2.693067093924229,
          -4.05952555273869,
          -3.626032247829019,
          -2.7214372827791666,
          -3.0806841966397704,
          -3.4712623658457846,
          -3.231278397611435,
          -3.2174839442139063,
          -2.378448845578422,
          -2.8981372642370817,
          -3.8036619232362243,
          -3.529327672138844,
          -7,
          -3.4942188340129245,
          -2.725391830339634,
          -2.9073516352045403,
          -2.859413523534532,
          -2.92649902572,
          -3.029221394253928,
          -7,
          -3.4394905903896835,
          -7,
          -3.782472624166286,
          -3.641523684670229,
          -2.843896900535604,
          -2.8169038393756605,
          -3.8042757671290937,
          -2.3401496516240496,
          -2.954754915800072,
          -3.9333438491251504,
          -3.476759191770886,
          -7,
          -3.780677274433368,
          -2.688372980123584,
          -4.014604533436051,
          -3.9278973940429562,
          -1.7092513181271274,
          -2.8161902935342806,
          -7,
          -3.3090336675041403,
          -3.7207379770184255,
          -3.6120417446452695,
          -3.010663332325691,
          -2.3472649475991116,
          -3.482968813185257,
          -1.7563016807504868,
          -3.619979805833053,
          -3.7846885995014214,
          -2.542435784521191,
          -2.492843133456706,
          -7,
          -3.023529789754866,
          -3.8375253094496014,
          -2.798880735242388,
          -3.382692286787451,
          -3.2476459909266477,
          -3.483016420144132,
          -7,
          -7,
          -7,
          -2.9406409781201486,
          -1.5979729679705894,
          -3.177969136009376,
          -2.112076246921947,
          -2.8881092595069315,
          -1.961641800198452,
          -1.4231551533678946,
          -2.2127720755706215,
          -2.9395905594871645,
          -7,
          -7,
          -2.253850917968512,
          -1.9131952057475696,
          -2.0903046464095296,
          -1.9962516524468363,
          -3.281601443825655,
          -2.2460997903611926,
          -1.9803367332623687,
          -2.193806915041398,
          -2.750058182093764,
          -2.480349203580037,
          -2.2912981981773917,
          -3.341895943969397,
          -2.245577599335823,
          -2.799409479615127,
          -3.085219201044942,
          -7,
          -1.3475107078437523,
          -3.3140779917792127,
          -7,
          -2.608936302494925,
          -1.7948926855002934,
          -2.017586859089031,
          -3.469822015978163,
          -2.4220423867575565,
          -2.7924617313469504,
          -2.6414741105040997,
          -3.305136318943639,
          -7,
          -3.4750898033890065,
          -2.126466755426485,
          -3.482873583608754,
          -2.1223204729384233,
          -2.5182415695447813,
          -3.1693804953119495,
          -2.1249249928945724,
          -2.4074928794601025,
          -1.9846149758131035,
          -7,
          -2.539538289847167,
          -2.73610663443214,
          -2.348694190265541,
          -2.160606408821159,
          -3.488127496247458,
          -2.6953357196809247,
          -2.8236915393984545,
          -2.891955383429181,
          -1.2859896776998598,
          -3.211320815405893,
          -3.0287745265000883,
          -2.310438394815848,
          -3.016057865962853,
          -1.8469843374489812,
          -2.650238119299283,
          -2.2953256836728166,
          -3.0114294617807817,
          -2.8966639794199422,
          -2.942937688372435,
          -7,
          -1.930118836392619,
          -2.5297949502875765,
          -3.4832305869021027,
          -2.64479015953634,
          -2.037545417569489,
          -7,
          -3.171653333949059,
          -1.7688102344864032,
          -2.359564471733962,
          -3.026056354698398,
          -1.9386661412531396,
          -3.218601143315633,
          -2.8436998451606685,
          -2.296665190261531,
          -0.8790425431179267,
          -1.8936577518833586,
          -2.201871892863938,
          -2.444405156454783,
          -3.7695988483874463,
          -7,
          -2.3360087436712353,
          -2.5870692294283315,
          -2.8235466779955427,
          -2.179973641107927,
          -1.461425610653809,
          -2.696293967679412,
          -1.2172361865017254,
          -2.015217024496122,
          -2.1434774309043974,
          -3.077149794716969,
          -2.9683495042505643,
          -3.4745804523423796,
          -3.7708520116421442,
          -2.8889513237201387,
          -2.4989010290429046,
          -2.8893526431528884,
          -3.7716609593488872,
          -3.077731179652392,
          -3.7679717213816186,
          -1.398839659577722,
          -7,
          -3.7972675408307164,
          -3.776555910703262,
          -2.573016729848248,
          -2.952930753389816,
          -3.17832933714299,
          -2.7866804531966487,
          -1.9979039022741811,
          -2.714162046098853,
          -2.901798757630448,
          -3.777281791671015,
          -2.4147060075610813,
          -7,
          -3.7681939616330715,
          -7,
          -3.008316226356639,
          -3.4832305869021027,
          -2.7072862306926577,
          -1.9958071924144132,
          -2.532411353713923,
          -3.3296520757287933,
          -2.874916474431565,
          -7,
          -2.59477915450515,
          -3.2949803145573493,
          -3.4671639659690903,
          -2.1352220142203384,
          -7,
          -7,
          -1.6940683505690908,
          -2.3968657182226067,
          -2.974906266794061,
          -7,
          -7,
          -3.187873089603788,
          -3.0687793630095612,
          -2.406350904125924,
          -3.7689339421867816,
          -3.7877437716464666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6510840892430116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.210692980817999,
          -7,
          -7,
          -7,
          -3.9244056496686226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203576774977973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.558388530369896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.219977256744623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7657057996869474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.436885868659852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9701608430373136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.252513226416275,
          -7,
          -7,
          -7,
          -7,
          -2.5634810853944106,
          -7,
          -7,
          -7,
          -7,
          -3.865991800126275,
          -7,
          -7,
          -4.371178731816287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.457124626303409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7880945575640985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9934803190699966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.198395881990749,
          -7,
          -7,
          -7,
          -3.630834517828051,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9854264740830017,
          -7,
          -7,
          -3.6542193379444026,
          -7,
          -7,
          -3.2888451700660513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.79755143643729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.959279950130939,
          -7,
          -4.956184443988461,
          -7,
          -7,
          -3.8476836861516825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.45408227073109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.399673721481038,
          -7,
          -7,
          -4.14236860613267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.710540447933297,
          -7,
          -3.956192450523593,
          -7,
          -3.4350875123045923,
          -4.576468048945627,
          -7,
          -7,
          -3.492708019171449,
          -4.281169773409736,
          -7,
          -3.808153075999404,
          -7,
          -4.6099570590580345,
          -3.9111043178040363,
          -7,
          -7,
          -4.484897472816146,
          -4.077513251497662,
          -7,
          -7,
          -7,
          -7,
          -4.006423252507643,
          -3.7484464587198087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.391252767350556,
          -7,
          -7,
          -7,
          -3.829303772831025,
          -3.745465168670727,
          -7,
          -7,
          -7,
          -7,
          -3.3148499463011056,
          -7,
          -3.7735304721389142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1893780058420305,
          -7,
          -7,
          -4.05558854630511,
          -4.07733610431472,
          -7,
          -7,
          -3.3100557377508917,
          -7,
          -3.8346220136585734,
          -3.681964458994683,
          -7,
          -7,
          -4.062356318085437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.558648580964467,
          -7,
          -7,
          -4.305372868641297,
          -3.5233562066547925,
          -7,
          -4.157486989384848,
          -7,
          -7,
          -7,
          -4.017033339298781,
          -7,
          -7,
          -7,
          -7,
          -4.07733156112899,
          -2.401533089075539,
          -7,
          -2.6351485136976085,
          -2.519171463821659,
          -2.3963737275365067,
          -2.739220617780206,
          -1.906694111260769,
          -2.7551122663950713,
          -2.6148972160331345,
          -2.253850917968512,
          -7,
          -3.267365612149139,
          -3.0394141191761372,
          -2.010017120757524,
          -2.8488047010518036,
          -3.0557604646877348,
          -2.40287522634755,
          -2.015639134307175,
          -2.488198061603354,
          -2.0796979557836552,
          -2.652522609767031,
          -2.4216039268698313,
          -2.2401925382158083,
          -2.415529779157638,
          -2.2663885100087673,
          -2.5774917998372255,
          -2.3734827339184386,
          -2.814913181275074,
          -7,
          -3.1917891870789785,
          -3.16467994075426,
          -2.942236465326841,
          -7,
          -2.3064250275506875,
          -7,
          -2.5734518220354854,
          -2.4191293077419758,
          -7,
          -7,
          -2.288760085189078,
          -1.9526310252827455,
          -1.260804993703267,
          -2.208226305935583,
          -7,
          -2.38662634331426,
          -2.476638437013566,
          -1.3738311450738303,
          -7,
          -1.67502804868833,
          -7,
          -3.0863598306747484,
          -3.1299717055462297,
          -2.4913616938342726,
          -7,
          -7,
          -3.2836403888003676,
          -2.735731935227449,
          -2.9907826918031377,
          -2.6459132750338443,
          -2.5312051157416637,
          -2.3667341679034988,
          -3.047541666264042,
          -7,
          -2.1367205671564067,
          -2.803457115648414,
          -2.416085498340186,
          -7,
          -7,
          -2.488633652523212,
          -2.062111714033968,
          -2.4401216031878037,
          -7,
          -1.7460677893601901,
          -7,
          -7,
          -2.9149774724443307,
          -2.665580991017953,
          -2.927883410330707,
          -2.4499247658980847,
          -2.432568465297358,
          -2.9787889856630807,
          -1.4814860601221125,
          -2.45700493649091,
          -2.193310154640943,
          -2.1541663775016415,
          -1.89006518553078,
          -7,
          -2.241795431295199,
          -3.231098715530343,
          -2.335625033453388,
          -2.0709609158009337,
          -2.113943352306837,
          -2.809454494893529,
          -2.6827465923729044,
          -2.4696320151080635,
          -2.8523896191735396,
          -2.247378036552128,
          -7,
          -2.5149902330672873,
          -7,
          -7,
          -2.5269850685599957,
          -2.574417135795665,
          -2.522299299588104,
          -7,
          -7,
          -7,
          -1.8032754011625363,
          -7,
          -7,
          -2.6473829701146196,
          -1.3705812577593128,
          -1.9167463043212505,
          -1.7862188721316767,
          -1.4748294579400776,
          -2.4724313785820478,
          -2.4485130854271855,
          -7,
          -7,
          -1.6645524395323255,
          -7,
          -7,
          -7,
          -7,
          -2.4401216031878037,
          -7,
          -3.678518379040114,
          -3.22698634552522,
          -7,
          -2.6794278966121188,
          -7,
          -3.3749315539781883,
          -2.5877109650189114,
          -7,
          -3.3781252456193727,
          -7,
          -7,
          -2.4270531135645013,
          -2.699114745041209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9668454236549167,
          -7,
          -7,
          -7,
          -4.326489475673702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626401965060686,
          -7,
          -7,
          -2.3003855638904804,
          -7,
          -7,
          -7,
          -4.66468897458024,
          -2.7063425737932336,
          -4.025244404149697,
          -7,
          -7,
          -7,
          -7,
          -2.9586333717289905,
          -3.2000292665537704,
          -7,
          -3.1150857941900143,
          -2.53137864938941,
          -7,
          -7,
          -7,
          -4.628174284448325,
          -3.782441909184704,
          -4.628419585049459,
          -2.370548307718535,
          -4.627754908466091,
          -7,
          -7,
          -4.327226071047025,
          -4.629766267319319,
          -7,
          -4.6283071728057354,
          -7,
          -7,
          -4.325843928293292,
          -3.1710934753828313,
          -7,
          -7,
          -3.9300112058961556,
          -4.626689305465622,
          -3.7820219199132845,
          -7,
          -7,
          -7,
          -7,
          -2.5613720064670162,
          -2.764074608884626,
          -4.627201940953156,
          -4.150428933047859,
          -3.595506242348686,
          -7,
          -4.626976455884445,
          -7,
          -7,
          -4.1537742267023265,
          -4.636126669925523,
          -7,
          -7,
          -7,
          -2.240873600020581,
          -7,
          -7,
          -4.326069466588894,
          -7,
          -7,
          -4.028987861649464,
          -7,
          -7,
          -3.7270085981532355,
          -4.024619055253279,
          -3.7250434005491395,
          -7,
          -4.627027712771981,
          -7,
          -7,
          -7,
          -7,
          -4.028581418642887,
          -7,
          -4.331781471570759,
          -4.628348053351905,
          -4.3290824690943,
          -7,
          -2.8255594089315244,
          -7,
          -7,
          -4.325402764963596,
          -7,
          -7,
          -4.627007210742902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.400933960963036,
          -7,
          -7,
          -4.025950682379089,
          -7,
          -3.552495842828762,
          -4.626966203780956,
          -4.149537273365785,
          -3.9310915663388015,
          -7,
          -1.9408213367147171,
          -2.945407031098423,
          -3.2661907795538254,
          -7,
          -4.629969946292171,
          -4.333719253143685,
          -4.626945698847907,
          -3.5780563219853025,
          -3.395048266590487,
          -4.627037963423587,
          -4.32893995062819,
          -7,
          -2.5158105730293747,
          -7,
          -3.935416568411959,
          -4.636086515103073,
          -7,
          -7,
          -3.7245113899980535,
          -7,
          -7,
          -7,
          -3.218391490113583,
          -7,
          -7,
          -7,
          -4.6264430253312945,
          -7,
          -2.971312966338393,
          -3.5364321758220134,
          -4.174127676084932,
          -7,
          -7,
          -4.207131483023054,
          -7,
          -7,
          -4.1534388209846105,
          -3.649879819144556,
          -4.0325683991086905,
          -7,
          -7,
          -7,
          -2.8175169990655613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.855317205195943,
          -4.329428390782099,
          -3.93062306071968,
          -7,
          -4.028845649861069,
          -4.326868159893682,
          -7,
          -2.1374213769188546,
          -4.325782397515805,
          -7,
          -7,
          -7,
          -4.32577214153862,
          -7,
          -7,
          -3.4108764326654217,
          -7,
          -2.828483325349808,
          -7,
          -4.633963067531229,
          -2.2133103433761163,
          -4.3261719452891745,
          -4.0285712526925375,
          -3.550890503921033,
          -3.5169013267145064,
          -3.2701216261422252,
          -4.03322264667025,
          -4.629379013907319,
          -7,
          -4.6295013417672655,
          -7,
          -7,
          -4.337579050143133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.425277259051414,
          -7,
          -2.4227875693463337,
          -4.025090713297739,
          -4.025111208554085,
          -4.325392500017263,
          -4.626730338579967,
          -4.32791039358105,
          -4.626596966780973,
          -7,
          -7,
          -2.4778048789297906,
          -3.5870677698578,
          -7,
          -4.626576444406813,
          -4.626658528085447,
          -7,
          -4.626463554010928,
          -4.627427309011094,
          -7,
          -4.627078963610722,
          -4.02928229515597,
          -4.3318623853290035,
          -3.542767989462867,
          -2.828724089405057,
          -7,
          -4.149660369801945,
          -4.02462931413766,
          -3.932199707406741,
          -7,
          -7,
          -4.628838319987492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6266482684740105,
          -4.626350634262713,
          -7,
          -7,
          -2.023414699392505,
          -7,
          -7,
          -7,
          -4.325833673769085,
          -3.348212602828127,
          -3.9284163373623473,
          -7,
          -4.3274508928931175,
          -3.2199873220898207,
          -7,
          -4.171794687605212,
          -4.038063526997859,
          -7,
          -7,
          -7,
          -3.2456409631411085,
          -3.7274192470595273,
          -3.140073420241109,
          -7,
          -2.916235045643907,
          -7,
          -7,
          -7,
          -2.1170140037193885,
          -3.855165680690631,
          -4.333396889383647,
          -3.8609067095817995,
          -4.638509224058013,
          -7,
          -7,
          -7,
          -7,
          -4.330758636678257,
          -3.930735140659794,
          -7,
          -7,
          -7,
          -4.627027712771981,
          -3.848650886818957,
          -7,
          -4.326223175572686,
          -3.3498988914039116,
          -3.5913479701696387,
          -3.6753607458971653,
          -3.3053411313607923,
          -2.4652716859508375,
          -4.62811293764317,
          -7,
          -3.0353660539727025,
          -7,
          -7,
          -3.5883022719472812,
          -4.627335127122439,
          -3.433259658266407,
          -3.483953893345673,
          -4.3354177792535475,
          -4.629042434519568,
          -3.487875383480801,
          -3.783014897628913,
          -2.5411021991707288,
          -4.3338904116161245,
          -7,
          -7,
          -7,
          -4.159486983706769,
          -4.154454406139564,
          -7,
          -7,
          -4.328420380348951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.630092107840592,
          -7,
          -3.406948735950354,
          -4.172174652067981,
          -2.4969868665452117,
          -7,
          -3.594613509160098,
          -2.5778312515364696,
          -3.680667831562386,
          -7,
          -7,
          -7,
          -3.730590514118412,
          -3.475167366363165,
          -4.6350311209460076,
          -4.325659309801641,
          -4.325382234828304,
          -7,
          -3.589746565098586,
          -7,
          -4.327287397639064,
          -4.627181447147527,
          -3.9369658971078705,
          -3.8490404437875823,
          -3.0242217034609458,
          -7,
          -7,
          -2.3194023977668876,
          -2.3759652965954845,
          -3.2384905702096987,
          -3.215037322655668,
          -3.20444810450135,
          -2.552984591554074,
          -2.7029861134458204,
          -3.364046122136441,
          -1.9223060969787602,
          -4.626689305465622,
          -2.5332502999681688,
          -2.8832573030914483,
          -3.001276047508862,
          -3.093504086164646,
          -1.5343616725084905,
          -3.4846485588079306,
          -2.772635995349761,
          -1.5537955387832671,
          -3.2384475771411187,
          -2.7036921696255547,
          -3.398738376245611,
          -2.8051544359686225,
          -2.836368077532691,
          -2.0652001274811633,
          -3.476324317420228,
          -3.3359282794322196,
          -3.0385995203317187,
          -3.1743382274128167,
          -4.63964583415458,
          -2.0746336182969043,
          -2.560144354449341,
          -3.084061470177998,
          -2.4965469189520992,
          -2.7260260578286495,
          -2.7235639186612075,
          -2.6964151297660224,
          -2.881001310598059,
          -2.758560466760875,
          -2.849125244980034,
          -3.294330540936119,
          -3.681743602361508,
          -2.531781628412806,
          -2.0732821674750395,
          -2.9950132843541937,
          -7,
          -3.0733761552166086,
          -4.63426561339283,
          -3.010802949218461,
          -2.783822195683155,
          -2.840245537219845,
          -1.1759541927828367,
          -2.975735486453204,
          -2.6422425686696984,
          -3.859918485200716,
          -3.119356714269176,
          -7,
          -3.7832397935618616,
          -4.354185298625861,
          -2.330360364447703,
          -2.47071034590996,
          -2.564839453627283,
          -1.9673259155379277,
          -2.3415571717649177,
          -2.916077773141475,
          -4.025694917138129,
          -3.529499453738052,
          -4.151042805862897,
          -2.0198368367089063,
          -3.391055882526162,
          -3.0745883201315842,
          -2.59357951244709,
          -1.9719940652558725,
          -7,
          -2.7923263069129183,
          -2.78193896987055,
          -2.242692633759777,
          -3.6396358768118477,
          -3.58849580100721,
          -4.3576585630856135,
          -2.2268451186946043,
          -4.651142275762345,
          -4.628777066916437,
          -2.5955968983040805,
          -1.8427318620121902,
          -4.63490027448999,
          -2.2068982162472084,
          -3.405978791431299,
          -3.8654099861535784,
          -3.106813947817089,
          -3.0850083208438113,
          -3.2665282306934134,
          -4.326622564515655,
          -7,
          -2.8440797640919517,
          -2.602578242561184,
          -1.8219474187922904,
          -3.673768164267726,
          -2.6706692894713875,
          -2.9386830705406757,
          -2.5385658797413004,
          -1.5131376612116403,
          -2.7045643180994903,
          -3.230469358284793,
          -4.025172688520482,
          -1.9131952057475696,
          -3.267365612149139,
          -7,
          -2.7877437716464666,
          -2.7678570049761775,
          -2.4237422105415773,
          -1.919787632510354,
          -1.5146351616014173,
          -2.283497024424779,
          -2.927088432084736,
          -3.233361678159449,
          -2.4260075068343268,
          -2.7631952011483123,
          -1.7066415383751545,
          -3.074084689028244,
          -3.3731675154102025,
          -2.8333013741535655,
          -1.9406109939725837,
          -3.0056706869146232,
          -4.627048213833253,
          -2.0379458854634454,
          -1.1749632431151515,
          -1.573530615642056,
          -3.8485893458691725,
          -2.170608552457273,
          -2.9759727438585846,
          -1.7907349194108384,
          -3.180760584229199,
          -7,
          -3.6273965838888484,
          -2.5144207816759283,
          -2.946482969137085,
          -3.139147540217198,
          -2.6159879440749574,
          -3.585368425713485,
          -1.9425832713408406,
          -2.706331625343998,
          -2.4705872752836098,
          -4.325413029667313,
          -2.854771469382554,
          -3.2657813960273496,
          -3.2926486926420218,
          -1.4718679935980048,
          -2.956403463201103,
          -3.3967837584701703,
          -3.3488580131576775,
          -2.874643380285549,
          -2.14457874581053,
          -3.076053545471786,
          -2.6525008054635846,
          -1.7129082987055229,
          -3.307628455637662,
          -1.108702641586889,
          -3.3081068600700276,
          -2.506975366260944,
          -3.784362529628032,
          -3.329692733344092,
          -2.5131916475068894,
          -4.627724206512672,
          -1.432332135228138,
          -2.1100967539672038,
          -3.3731164249470056,
          -3.152227171838142,
          -2.5429349200735434,
          -4.325443822322886,
          -3.2844307338445193,
          -2.361101134642786,
          -2.681373376172547,
          -3.6315452278343097,
          -1.974449907837994,
          -3.1712118328707235,
          -3.0711840961949233,
          -3.2020339865636913,
          -1.7674303855279894,
          -2.1435053686359833,
          -1.9411631563074063,
          -2.28025136025892,
          -4.325597752860019,
          -4.325618272810029,
          -2.1478649397608756,
          -2.4791844152834357,
          -3.1960635448521066,
          -2.6968426818935267,
          -1.3795811117693013,
          -2.5902612875245725,
          -1.712142298806098,
          -1.7887104335455841,
          -1.8902377676676874,
          -3.423215144466514,
          -2.8395084576685545,
          -3.4511311747360724,
          -4.62682264891478,
          -3.267804082331647,
          -2.4856504575326674,
          -2.845747057728752,
          -4.626935446018323,
          -3.7244909150330834,
          -7,
          -1.3004700206746918,
          -3.8489789580184515,
          -3.027747019428486,
          -4.02550043476675,
          -3.0590719375910913,
          -3.1831274287013995,
          -3.4237986329154935,
          -3.0374060648802375,
          -2.598614659259323,
          -1.9068685051676264,
          -3.4554945456712955,
          -4.025602804765786,
          -2.6270310620213944,
          -4.626473817986867,
          -4.6264532897924076,
          -7,
          -2.956096873522117,
          -3.783515643130903,
          -3.0264004636880624,
          -1.9804825499397798,
          -2.5047262575624543,
          -2.2382902341806235,
          -3.7247365509259858,
          -4.626422495681244,
          -2.8899402626241506,
          -4.024916464556482,
          -7,
          -1.7353587434987676,
          -3.7813860417059795,
          -7,
          -2.3929179375969776,
          -2.53334702057068,
          -2.2620740670103863,
          -4.626422495681244,
          -4.626473817986867,
          -3.2867421763851072,
          -7,
          -1.973118147285219,
          -4.149393616745378,
          -7,
          -4.149188310536008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6646701755809334,
          -7,
          -7,
          -7,
          -3.369679599559816,
          -3.392609030497567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.088439861957448,
          -3.653501946962933,
          -7,
          -7,
          -3.181860730809662,
          -7,
          -7,
          -7,
          -7,
          -2.9595183769729982,
          -7,
          -4.265195306285716,
          -2.661812685537261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.047780924741197,
          -7,
          -7,
          -3.0203612826477078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3140779917792127,
          -3.2778383330020473,
          -2.9375178920173464,
          -2.9561684304753633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0906107078284064,
          -3.2420442393695508,
          -7,
          -7,
          -7,
          -3.0116473234845214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7948364578145615,
          -7,
          -7,
          -4.234770295160916,
          -7,
          -2.6852937813867843,
          -7,
          -2.6268534146667255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.999130541287371,
          -3.151982395457474,
          -2.9903388547876015,
          -2.583198773968623,
          -7,
          -2.8727000147927284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.918554530550274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2675069615203176,
          -7,
          -7,
          -7,
          -7,
          -2.6444385894678386,
          -7,
          -7,
          -7,
          -7,
          -2.8272256334024735,
          -7,
          -7,
          -7,
          -7,
          -3.207095540419218,
          -7,
          -2.8937617620579434,
          -3.077169627477378,
          -7,
          -7,
          -7,
          -3.963362766103736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388855763178122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.582874673593952,
          -3.205610309902521,
          -3.2149762347220667,
          -2.828015064223977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9033613362553186,
          -7,
          -2.9304395947667,
          -7,
          -3.3188282441831407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.17376882313665,
          -7,
          -7,
          -7,
          -2.78993308093175,
          -7,
          -7,
          -3.2858063702375837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9429995933660407,
          -7,
          -2.5814945422908995,
          -7,
          -3.8925398046586355,
          -7,
          -3.184975190698261,
          -2.7665321827419165,
          -7,
          -7,
          -7,
          -3.0958664534785427,
          -3.1354506993455136,
          -7,
          -2.7311857076340007,
          -2.9863237770507656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.532435864506711,
          -7,
          -2.5490032620257876,
          -2.9380190974762104,
          -2.636989101812229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1204093945560682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9180303367848803,
          -7,
          -7,
          -2.8527848686805477,
          -3.1101405949728718,
          -3.6888093829536683,
          -7,
          -2.6164755138885654,
          -2.9148718175400505,
          -3.101403350555331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4111144185509046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.950364854376123,
          -7,
          -7,
          -7,
          -2.9304395947667,
          -7,
          -3.031408464251624,
          -7,
          -7,
          -7,
          -2.6254839394069043,
          -2.6020599913279625,
          -3.739493230781615,
          -7,
          -3.9036325160842376,
          -7,
          -7,
          -7,
          -2.829303772831025,
          -2.8677620246502005,
          -3.1983821300082944,
          -2.6108730003800518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8182258936139557,
          -2.747023177451628,
          -7,
          -3.0043213737826426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0387525889920166,
          -7,
          -7,
          -7,
          -3.613366056465805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.44870631990508,
          -7,
          -2.977494969073036,
          -3.0696680969115957,
          -7,
          -7,
          -3.1934029030624176,
          -7,
          -3.9240000069741874,
          -2.510545010206612,
          -7,
          -7,
          -7,
          -7,
          -2.811909980420099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9148718175400505,
          -7,
          -2.9459607035775686,
          -7,
          -3.4888326343824008,
          -4.354836456888931,
          -7,
          -2.463395230212905,
          -4.0752549005329,
          -2.736927424692279,
          -7,
          -2.5921767573958667,
          -7,
          -2.577204473011063,
          -3.2182728535714475,
          -7,
          -2.912753303671323,
          -2.8981764834976764,
          -7,
          -2.8027737252919755,
          -7,
          -7,
          -2.936513742478893,
          -7,
          -7,
          -2.4705574852172743,
          -7,
          -7,
          -3.8460792634718106,
          -4.752071507091245,
          -3.9813655090785445,
          -7,
          -4.438035772093079,
          -7,
          -3.446847710155809,
          -3.8059933229700182,
          -3.290527486484116,
          -7,
          -7,
          -4.2807149194910075,
          -7,
          -4.204554060135243,
          -3.5587428465666395,
          -7,
          -4.097847077423337,
          -3.75458720843136,
          -4.020692678682027,
          -7,
          -7,
          -4.62642591735698,
          -3.9042285163400785,
          -3.5585462266892547,
          -3.792916728226602,
          -7,
          -4.631352435804037,
          -4.459241664878082,
          -7,
          -3.4080533142979808,
          -3.5382971851679743,
          -4.587789512472801,
          -4.251297463677569,
          -7,
          -7,
          -7,
          -7,
          -3.7584198168439795,
          -3.7002362963352886,
          -3.289053557592641,
          -2.9410142437055695,
          -3.6239725120169965,
          -2.7834621696507282,
          -2.934209787569329,
          -7,
          -7,
          -7,
          -3.471010404514505,
          -2.868252475839426,
          -2.742332282357148,
          -3.488973524726508,
          -3.857030798272624,
          -3.4503261040614124,
          -7,
          -3.4725370532620774,
          -7,
          -2.3904935265041733,
          -7,
          -3.5999649037760753,
          -3.149373090491385,
          -7,
          -2.784241800233638,
          -3.5509888914628096,
          -4.697078156386674,
          -7,
          -3.3988077302032647,
          -2.682145076373832,
          -3.025893771247669,
          -7,
          -4.945084345254798,
          -3.6636067081245205,
          -4.079434510633743,
          -2.4747017805962495,
          -3.232063874830583,
          -7,
          -3.9888932438600233,
          -7,
          -2.6582716350441484,
          -7,
          -3.132579847659737,
          -2.81424759573192,
          -7,
          -2.9476574395062145,
          -3.025563322053369,
          -7,
          -3.5598866845194808,
          -7,
          -3.3984608496082234,
          -3.360593413565249,
          -3.5586685784080947,
          -7,
          -7,
          -7,
          -7,
          -4.093841766912128,
          -1.9815878426831302,
          -1.893484346218486,
          -0.7333389059672814,
          -3.0515383905153275,
          -2.1890024502912038,
          -2.3492775274679554,
          -1.9426606368895096,
          -1.8895171798026698,
          -2.6399842480415883,
          -2.0903046464095296,
          -3.0394141191761372,
          -2.7877437716464666,
          -7,
          -1.8331471119127851,
          -3.412460547429961,
          -2.507997821192732,
          -2.747994102251068,
          -2.312283165791478,
          -3.2304489213782737,
          -2.4176377396522297,
          -1.993925852287807,
          -2.8816699076720615,
          -2.624797578960761,
          -1.8289461816359327,
          -1.8208579894397,
          -7,
          -2.48465567261692,
          -7,
          -2.929929560084588,
          -3.574523189437531,
          -2.4004738457372032,
          -2.780966592974337,
          -2.4403842548328845,
          -3.163310488963686,
          -1.4763162600834328,
          -3.2938043599193367,
          -1.725185387172794,
          -7,
          -1.865794662364423,
          -1.512529472402638,
          -7,
          -2.0485124262811727,
          -2.958181497564948,
          -2.142493751023144,
          -2.5431364147862197,
          -2.0492180226701815,
          -1.8704748452468267,
          -2.294466226161593,
          -2.887617300335736,
          -1.3217145945238322,
          -1.872685900230887,
          -3.302114376956201,
          -3.0354297381845483,
          -1.591570483009036,
          -1.6551384348113822,
          -3.3330440298234874,
          -2.7305959498221712,
          -2.8573324964312685,
          -7,
          -3.2423757618909193,
          -1.978864984347657,
          -2.2148184542099716,
          -1.616550528049198,
          -2.4891143693789193,
          -2.258876629372131,
          -7,
          -3.9537113804275554,
          -2.6603910984024672,
          -2.6102037316428195,
          -2.2386732432838445,
          -2.0457574905606752,
          -1.0205069823830017,
          -2.290776361298428,
          -2.5993371329924893,
          -1.6948631701213757,
          -1.6747722764708364,
          -1.8531856942575955,
          -2.6388219222193925,
          -1.8200792048011627,
          -2.4099331233312946,
          -2.5653229914411844,
          -1.8947240425001657,
          -2.212409579610376,
          -2.8119936837029837,
          -2.668944734457734,
          -2.8670744611517724,
          -7,
          -7,
          -2.8845234909272777,
          -3.4891143693789193,
          -1.6320232147054057,
          -2.481979789339991,
          -3.0237050426220375,
          -2.197280558125619,
          -2.62144723602022,
          -2.45338482217222,
          -3.103940485083021,
          -1.595596416654004,
          -2.859438535455056,
          -1.8623301865867783,
          -7,
          -1.7403626894942439,
          -1.4486188281513872,
          -3.239674787646781,
          -2.622214022966295,
          -1.7438036371758014,
          -2.8976270912904414,
          -1.9990404978546072,
          -2.3339508043872472,
          -7,
          -2.957607287060095,
          -2.3706056009381484,
          -2.6085260335771943,
          -7,
          -2.5490032620257876,
          -2.7187783976895714,
          -2.9574476493145365,
          -2.272835795025385,
          -2.4833495228146365,
          -2.866582677063549,
          -7,
          -7,
          -7,
          -3.0232524596337114,
          -1.9568666532654737,
          -7,
          -1.8882816327903629,
          -2.8048206787211623,
          -3.541579243946581,
          -2.973589623427257,
          -2.8976270912904414,
          -2.217019209571482,
          -2.6273658565927325,
          -2.9003671286564705,
          -2.456433021146642,
          -7,
          -7,
          -2.537189226243645,
          -2.8408585540418794,
          -3.189770956346874,
          -7,
          -7,
          -2.4369573306694496,
          -2.295017011881458,
          -2.841463755359163,
          -7,
          -3.0265332645232967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.061235654721493,
          -7,
          -7,
          -7,
          -7,
          -3.378488748031808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4487578345818384,
          -3.6379897807846855,
          -7,
          -3.146438135285775,
          -4.181471992946307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.564381964057547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.977952121201462,
          -3.7430391548049333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.559108289366632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6797522632579414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4757438067481257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6367218642178245,
          -7,
          -7,
          -7,
          -4.740346896680485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6830019846071993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.033093888137047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.184237029016371,
          -7,
          -7,
          -3.633459273781007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2643455070500926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9341616582977217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.161368002234975,
          -7,
          -7,
          -7,
          -3.394976719554564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8498584005624314,
          -7,
          -7,
          -7,
          -3.0433622780211294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.307410454213674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.124259620782813,
          -7,
          -4.503627281356413,
          -7,
          -7,
          -7,
          -3.660770643527697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.611882555512116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.953424852971817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.588682991045723,
          -7,
          -7,
          -3.8514295860194783,
          -7,
          -7,
          -7,
          -7,
          -3.1332194567324945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.020578789815774,
          -4.449809971741877,
          -7,
          -7,
          -4.435525851498655,
          -2.494328555359404,
          -3.1330596427539095,
          -7,
          -3.338536173355659,
          -7,
          -3.1457400995364067,
          -4.579966418965081,
          -4.660410083538616,
          -4.504538821884575,
          -3.4980002326031903,
          -7,
          -4.396164462603818,
          -3.6147151038234466,
          -4.014100321519621,
          -4.613196769750614,
          -7,
          -5.10301991616068,
          -7,
          -4.186002268850776,
          -3.787354190433722,
          -7,
          -7,
          -7,
          -7,
          -3.2604462057323165,
          -2.9538105399339547,
          -4.58601311649554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.981274832706589,
          -3.2013971243204513,
          -7,
          -3.271186609747914,
          -7,
          -7,
          -7,
          -7,
          -3.7702504531336944,
          -3.8131137540078983,
          -3.313445370426414,
          -4.085647288296856,
          -4.153326961490906,
          -7,
          -7,
          -7,
          -7,
          -2.919601023784111,
          -7,
          -7,
          -3.425697213362591,
          -7,
          -3.3206749005691742,
          -4.282866716929532,
          -4.872715540280947,
          -7,
          -7,
          -7,
          -3.837840861655523,
          -7,
          -4.944304969875082,
          -2.948706308904852,
          -4.073681699476284,
          -7,
          -7,
          -4.023087766995445,
          -7,
          -7,
          -7,
          -3.5907304057926903,
          -3.470733812658553,
          -7,
          -7,
          -7,
          -3.245888517670497,
          -7,
          -4.33665982345442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.389024250763695,
          -1.7459036485794046,
          -2.6026025204202563,
          -1.8512583487190755,
          -1.5658478186735176,
          -1.6919651027673603,
          -2.3148556699654823,
          -1.4702724510905236,
          -2.462397997898956,
          -7,
          -1.9962516524468363,
          -2.010017120757524,
          -2.7678570049761775,
          -1.8331471119127851,
          -7,
          -2.5378190950732744,
          -1.9912260756924949,
          -2.361937589454128,
          -1.7603086596820539,
          -2.4071075149129415,
          -2.281790637678311,
          -1.8461308454520247,
          -2.8341026557127935,
          -2.100370545117563,
          -1.9493900066449128,
          -2.084831520070331,
          -7,
          -1.9800648211037504,
          -2.5024271199844326,
          -7,
          -2.8615781193128953,
          -2.460561571363903,
          -2.57831729805555,
          -7,
          -2.1118703436839716,
          -2.693726948923647,
          -2.5565437084835145,
          -2.216957207361097,
          -7,
          -2.8721562727482928,
          -1.5416694494681231,
          -7,
          -1.5690393221702197,
          -2.0671814799805035,
          -7,
          -1.9495526333017104,
          -2.300305567669649,
          -1.6112403829248851,
          -7,
          -2.1367205671564067,
          -1.88309335857569,
          -2.579497782534824,
          -3.164134662201509,
          -2.6651117370750512,
          -2.3915231836751634,
          -2.8943160626844384,
          -3.1405080430381793,
          -1.8058536085353702,
          -2.327018177615688,
          -2.7745169657285493,
          -2.132155803755665,
          -1.878610165525299,
          -2.433244135631517,
          -2.3205616801952367,
          -2.0465251788122005,
          -1.7281149618436935,
          -2.433369746856586,
          -3.644881521155292,
          -7,
          -2.464599350456727,
          -1.6975199379407861,
          -2.6314437690131722,
          -1.9003671286564703,
          -1.7737052001054718,
          -7,
          -2.8549130223078554,
          -2.1933234056282025,
          -2.0039628970954273,
          -2.5828206333422923,
          -2.245589772915445,
          -2.442793225939769,
          -2.1327050627088058,
          -1.4974690606336676,
          -1.5817632448704808,
          -1.9219068065125802,
          -2.187722109424307,
          -1.9227686950366432,
          -7,
          -7,
          -2.537131920116768,
          -2.2860071220794747,
          -1.8016323462331667,
          -1.7193707521554475,
          -2.4213956421399727,
          -1.6958935252473812,
          -2.0460675901682115,
          -2.608414593151163,
          -2.013479936380004,
          -7,
          -2.809222921689422,
          -2.388574805196408,
          -7,
          -2.288696260590256,
          -2.1513698502474603,
          -2.5644030148909867,
          -2.833784374656479,
          -2.096330567315823,
          -7,
          -1.9942716315248012,
          -7,
          -3.017450729510536,
          -2.8744818176994666,
          -1.9850895069263812,
          -3.0269416279590295,
          -2.428134794028789,
          -1.907020280620376,
          -1.8853016909406226,
          -2.7089305358066165,
          -2.3647385550553985,
          -7,
          -1.7232503803830987,
          -7,
          -7,
          -2.8048206787211623,
          -2.952792443044092,
          -2.3283796034387376,
          -7,
          -2.3797801801557177,
          -2.786514813868446,
          -3.521399628115376,
          -1.672674993544776,
          -1.8878984880968723,
          -3.4274861090957858,
          -2.5378190950732744,
          -2.8041394323353503,
          -2.824754043226546,
          -7,
          -7,
          -2.072111975265909,
          -2.8205954965444904,
          -7,
          -7,
          -7,
          -2.9740509027928774,
          -7,
          -2.9040660519145027,
          -7,
          -7,
          -2.795880017344075,
          -7,
          -2.660865478003869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4436402707776104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.079452595311,
          -7,
          -7,
          -3.111262513659065,
          -3.845706753536257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3139482984020416,
          -7,
          -3.2641091563058082,
          -7,
          -7,
          -2.6306312440205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3205616801952367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188365926063148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.540104133899875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5167666716053274,
          -3.286231854028553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.306394388411241,
          -3.2734642726213465,
          -7,
          -7,
          -4.1474985516858025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7333577879255855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.345177616542704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5652494649908055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.343851525491311,
          -7,
          -7,
          -4.083663837854232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5759956202032677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2631624649622166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.45552091861866,
          -7,
          -7,
          -7,
          -2.8819549713396007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6212917088805394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.813981075636472,
          -7,
          -4.042299807413626,
          -7,
          -7,
          -7,
          -3.2833012287035497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.846027675364379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8452531174956057,
          -7,
          -3.4129642719966626,
          -7,
          -4.325529346023533,
          -7,
          -7,
          -7,
          -7,
          -3.4510184521554574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.287129620719111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.891515156998247,
          -7,
          -7,
          -4.087580308992842,
          -3.426185825244511,
          -7,
          -7,
          -7,
          -7,
          -3.636989101812229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2029119304669567,
          -3.9816676269911824,
          -7,
          -7,
          -4.1529454056319,
          -2.867820908045573,
          -3.8211858826088454,
          -7,
          -3.5998596887549335,
          -7,
          -3.1382325034866554,
          -7,
          -7,
          -4.512517635672204,
          -2.431347181387955,
          -7,
          -4.416357541374134,
          -2.547802879191111,
          -7,
          -4.023437664229715,
          -7,
          -4.629925823953525,
          -7,
          -3.5920795578567235,
          -3.8274338954007794,
          -4.201670179646581,
          -7,
          -7,
          -7,
          -3.5417040232842885,
          -3.1828424585586923,
          -4.599162287443591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8146137940059597,
          -7,
          -7,
          -4.59001658245561,
          -3.6382096210738157,
          -7,
          -7,
          -7,
          -7,
          -4.562839849885065,
          -7,
          -7,
          -3.523713958522923,
          -3.8869698767408543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7520996889830758,
          -7,
          -7,
          -7,
          -3.987125294063701,
          -7,
          -7,
          -7,
          -7,
          -3.7831580266967495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.835056101720116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5406365695176527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.075181854618692,
          -7,
          -7,
          -7,
          -2.5680060518483647,
          -4.128366953938082,
          -2.4858364866178744,
          -7,
          -3.1441069730493227,
          -2.2875981702912034,
          -2.755548195648138,
          -3.278296208091274,
          -2.530519856331775,
          -7,
          -7,
          -3.281601443825655,
          -2.8488047010518036,
          -2.4237422105415773,
          -3.412460547429961,
          -2.5378190950732744,
          -7,
          -2.552972237463008,
          -1.8912790259589563,
          -2.234820879807401,
          -2.3179026933918885,
          -3.068371418032643,
          -2.820951698466259,
          -2.018769824946525,
          -2.01137522581669,
          -7,
          -7,
          -7,
          -2.7185535852026295,
          -2.3273589343863303,
          -7,
          -2.374847006058018,
          -2.8427340189482697,
          -3.0050732130636044,
          -3.269045709657623,
          -0.973074438129254,
          -7,
          -2.1922445687080447,
          -7,
          -3.2605483726369795,
          -7,
          -7,
          -3.3092041796704077,
          -3.05595140532915,
          -2.1969258872346105,
          -7,
          -2.183501582177713,
          -2.901094895030216,
          -2.314610663315729,
          -7,
          -1.5547028876074942,
          -2.9923325590474645,
          -3.432969290874406,
          -2.7493591928622245,
          -2.721398375521505,
          -3.285107029566812,
          -7,
          -3.4259415880188953,
          -2.580979252309059,
          -2.4869615094670436,
          -2.6755950563867463,
          -2.3311828694692,
          -7,
          -2.800139895326366,
          -7,
          -2.408557935660577,
          -3.327563260187278,
          -3.0557604646877348,
          -3.5233995862165233,
          -7,
          -2.3951645421816643,
          -1.9784544333652287,
          -3.3102683666324477,
          -3.3346547668832414,
          -2.751150747404337,
          -7,
          -7,
          -3.748885440009517,
          -7,
          -2.4114326310165928,
          -3.138113146487167,
          -3.1100844228869238,
          -7,
          -7,
          -2.498059806391236,
          -2.165484568429807,
          -2.105903033717524,
          -2.124123670090858,
          -7,
          -7,
          -2.983089073130224,
          -2.088619264513679,
          -2.815799044880344,
          -2.3321858896951086,
          -3.141390975041025,
          -2.563035883426256,
          -2.5078967407008865,
          -3.1705969485122614,
          -2.181664976187411,
          -7,
          -0.9572480195790501,
          -7,
          -2.967079734144497,
          -7,
          -7,
          -3.175898196379951,
          -7,
          -7,
          -7,
          -2.487858966359126,
          -3.2778383330020473,
          -1.0132330645412966,
          -7,
          -7,
          -7,
          -7,
          -3.3207692283386865,
          -2.4720246977002813,
          -1.6248278824518179,
          -7,
          -7,
          -2.3530589956679915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0177287669604316,
          -2.6059332229989143,
          -2.954145988829548,
          -7,
          -7,
          -7,
          -3.2734642726213465,
          -7,
          -3.0122887398346068,
          -7,
          -7,
          -2.889021422095225,
          -2.571999816397063,
          -2.7104558643354246,
          -7,
          -7,
          -7,
          -7,
          -2.567866231982406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6069915285261684,
          -7,
          -7,
          -7,
          -7,
          -3.9795028487874013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1196846918240504,
          -7,
          -7,
          -2.8339965879428433,
          -3.375033901249075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015213009510909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.430639336164655,
          -7,
          -7,
          -7,
          -7,
          -4.430171841456267,
          -7,
          -7,
          -3.052155067199565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7078975748936176,
          -2.780613773351461,
          -7,
          -7,
          -3.808953299155911,
          -7,
          -7,
          -7,
          -3.4398062113933303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0461828907408814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7319914490189294,
          -3.763951826033324,
          -7,
          -3.779380011491656,
          -7,
          -7,
          -7,
          -3.303502991379405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.735997884091794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7712934426290596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4586378490256493,
          -7,
          -3.444929147447511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6293586225803405,
          -3.248929133718768,
          -7,
          -7,
          -7,
          -3.662249162440235,
          -7,
          -7,
          -3.0232524596337114,
          -7,
          -7,
          -3.74170298395774,
          -3.74795530690673,
          -7,
          -7,
          -3.8571816735501194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5883837683787276,
          -3.792461731346951,
          -7,
          -7,
          -7,
          -3.932169245920792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2271465125877086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5812414937873656,
          -7,
          -3.315130317183602,
          -7,
          -7,
          -2.119027360004553,
          -3.436480695009495,
          -2.615799802742291,
          -3.2835273648616936,
          -2.9207939364157585,
          -3.0759846847441197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.750970984437319,
          -7,
          -7,
          -7,
          -1.8848322900885788,
          -2.793246982819348,
          -7,
          -3.732634967539196,
          -3.733277533932582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4679039465228003,
          -3.7799570512469063,
          -3.149116430427238,
          -4.210957286602528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5771546503583544,
          -7,
          -7,
          -7,
          -7,
          -3.7385427409287852,
          -3.739572344450092,
          -7,
          -7,
          -7,
          -7,
          -3.5820065143636985,
          -2.9253120914996495,
          -7,
          -7,
          -7,
          -3.853759033074769,
          -3.064008486531724,
          -2.747023177451628,
          -7,
          -2.8467889696388013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.489606966267722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9927743642553555,
          -7,
          -7,
          -7,
          -2.9866669346232935,
          -7,
          -7,
          -4.037386652582377,
          -7,
          -7,
          -7,
          -3.4373541278481747,
          -2.0899730070827633,
          -2.8058782758252425,
          -7,
          -7,
          -7,
          -3.745465168670727,
          -2.916057288417842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.15124723746237,
          -7,
          -3.6349635008969448,
          -7,
          -3.200440076436431,
          -4.304016336520766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3068016295330462,
          -7,
          -7,
          -2.8229615672766832,
          -2.999864706876925,
          -3.0528953899583056,
          -3.7626035495668035,
          -3.7270801505184905,
          -1.782929561800477,
          -2.6084404498776554,
          -3.7016111533360587,
          -2.817609435764669,
          -7,
          -2.3067273749127253,
          -4.029038640290407,
          -3.2114822595695567,
          -3.5354840032266903,
          -1.948264737345508,
          -4.082156803810918,
          -2.3715259398882167,
          -1.944828705873858,
          -3.479373734640201,
          -3.5466470486443358,
          -7,
          -3.428501732235372,
          -3.623766000133931,
          -2.777683803329668,
          -3.2761808644533152,
          -7,
          -3.471282540892828,
          -4.04641711698399,
          -7,
          -2.6514030808044518,
          -2.1914188442053857,
          -3.557136108599234,
          -3.049140463158965,
          -2.8899693344316466,
          -2.6753581983493837,
          -4.050476427265063,
          -3.516746850913505,
          -3.66162340922923,
          -3.040323913328225,
          -3.679124935677682,
          -7,
          -4.327103391877102,
          -2.073927724573103,
          -2.70251259492133,
          -7,
          -7,
          -7,
          -3.4569188534250026,
          -4.0514998191327445,
          -7,
          -3.5296356460190728,
          -3.278113115979834,
          -3.70922754733432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.232678527575879,
          -3.393107024292132,
          -7,
          -2.6426686096873704,
          -2.6665786416553043,
          -4.342247799786142,
          -7,
          -7,
          -7,
          -2.0799293848750184,
          -7,
          -4.3650853271063745,
          -3.1184536935598395,
          -3.9191565722392943,
          -7,
          -3.3853828136078388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2906355262615454,
          -7,
          -7,
          -3.1129591096853653,
          -1.7965078471454785,
          -7,
          -3.4037705275894505,
          -7,
          -7,
          -2.4833495228146365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.737808008704828,
          -1.5290888052036686,
          -7,
          -2.655550023357655,
          -2.107672395049396,
          -2.174466858886018,
          -2.215755027627245,
          -1.9138844636320478,
          -7,
          -3.7382254481425052,
          -2.2460997903611926,
          -3.0557604646877348,
          -1.919787632510354,
          -2.507997821192732,
          -1.9912260756924949,
          -2.552972237463008,
          -7,
          -2.027964091636153,
          -1.8828456471121318,
          -2.718501688867274,
          -2.6910814921229687,
          -0.8720557532519746,
          -2.638988159343682,
          -2.0349730482929402,
          -3.7668588110214176,
          -2.491750672348322,
          -7,
          -1.9581155093926923,
          -3.455758203104137,
          -3.736316807904109,
          -2.429247462461082,
          -0.9602761381695825,
          -2.2035009923023567,
          -2.653775123528,
          -2.1538734696319675,
          -7,
          -2.7017007968251283,
          -7,
          -7,
          -3.137907705431547,
          -2.491977674764168,
          -3.748885440009517,
          -3.1645015613095686,
          -2.6808124456850986,
          -7,
          -1.9426606368895096,
          -2.324429449539036,
          -2.1296527163487453,
          -7,
          -2.4847268042986617,
          -2.324440754727877,
          -3.1955537388251134,
          -2.708404555762662,
          -3.4533947936132776,
          -2.697308615276485,
          -2.662600450095542,
          -3.103999085098659,
          -1.851566004435052,
          -2.876939140345395,
          -3.296957546032856,
          -1.643544912757513,
          -3.760648619581356,
          -1.3654797333403765,
          -2.057818194432099,
          -2.4521841151090564,
          -2.095672926234173,
          -2.6512034378011884,
          -2.8096238360707755,
          -7,
          -2.4198287060778814,
          -2.282278499425753,
          -3.448087666692341,
          -2.476816379675971,
          -2.362105319293773,
          -7,
          -3.73814608871206,
          -2.61842847289748,
          -3.174859011514084,
          -7,
          -2.554426495768532,
          -3.788875115775417,
          -2.7835737770936886,
          -3.309701124779525,
          -1.6938984542993198,
          -1.9565580257265802,
          -2.375379771654777,
          -2.4150375879653,
          -3.7331972651065697,
          -7,
          -1.974975719445768,
          -2.3502480183341627,
          -1.9708916872960696,
          -1.993813987391742,
          -1.9939870162174769,
          -1.1685080872847577,
          -1.8002524377062963,
          -2.480276495763096,
          -2.1358770816547334,
          -3.7409150764812824,
          -2.700775805199281,
          -7,
          -7,
          -3.1560946306394277,
          -3.791760804012905,
          -2.3985367534165967,
          -7,
          -3.0419450721452637,
          -7,
          -1.776993439828789,
          -7,
          -3.063633545230785,
          -3.7407573233077707,
          -3.7437448785924614,
          -3.2875031431313193,
          -7,
          -2.5466968599938298,
          -2.2827353726210187,
          -2.6322786069397006,
          -7,
          -7,
          -2.3818728544985426,
          -7,
          -7,
          -7,
          -3.752278985460119,
          -2.5428254269591797,
          -7,
          -2.32584571166409,
          -2.4316749748365134,
          -3.6061663146076204,
          -3.14090067888619,
          -7,
          -1.792995127808348,
          -7,
          -7,
          -2.649208612936733,
          -7,
          -7,
          -2.9785717732538797,
          -2.4267280833770184,
          -7,
          -7,
          -7,
          -3.153204900084284,
          -7,
          -2.4349180354194466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6710802327388494,
          -7,
          -7,
          -7,
          -7,
          -3.750354088762708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6664243725187595,
          -7,
          -7,
          -3.0499928569201424,
          -3.7090437070077527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9721449594582214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.48223818557017,
          -3.503586421323274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.078746734273607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2518084986240465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.933689708957895,
          -7,
          -7,
          -3.1702617153949575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.184691430817599,
          -7,
          -7,
          -7,
          -2.492146882358005,
          -2.9006401839826004,
          -3.2219355998280053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.968739713458941,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.020609853377705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.305852740224386,
          -3.591064607026499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.359835482339888,
          -7,
          -7,
          -7,
          -3.643288139836406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.210318519826232,
          -7,
          -3.307099675302965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4750898033890065,
          -7,
          -3.150500596270051,
          -7,
          -7,
          -3.235077325560345,
          -7,
          -7,
          -7,
          -3.286456469746983,
          -3.0109356647043852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.326975564214103,
          -7,
          -2.5438611881987567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7427251313046983,
          -3.229425847920695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.197280558125619,
          -7,
          -7,
          -7,
          -7,
          -3.6586790285824486,
          -4.55140119809846,
          -7,
          -7,
          -7,
          -2.9885589568786157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.926540311899433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.489536629482095,
          -7,
          -3.9128462051453377,
          -7,
          -7,
          -7,
          -2.3885210126055294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0242803760470798,
          -7,
          -2.910090545594068,
          -3.541350388672851,
          -7,
          -7,
          -3.241919853150198,
          -7,
          -7,
          -7,
          -7,
          -3.111598524880394,
          -3.269746373130767,
          -7,
          -7,
          -7,
          -3.218535505216528,
          -4.32436477820229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2749656245392864,
          -4.288980208081459,
          -7,
          -7,
          -3.7154661089656273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.60151678365001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.262213705476417,
          -7,
          -7,
          -3.6311798650966334,
          -3.979092900638326,
          -7,
          -3.273695587930092,
          -3.749689947134912,
          -3.2245330626060857,
          -2.9523772475230774,
          -7,
          -3.1747667952445253,
          -7,
          -3.3024391640698574,
          -7,
          -4.668357956917772,
          -4.334138639319558,
          -2.681492492506635,
          -7,
          -3.9334704151634567,
          -3.083841956595991,
          -3.747139803102036,
          -4.320997416794221,
          -3.9684362477117046,
          -4.503824717341271,
          -3.939918420369057,
          -3.714706878813469,
          -7,
          -3.4138583422700264,
          -7,
          -4.168423818103146,
          -7,
          -3.3530963019716764,
          -3.1746896062920578,
          -4.294378035587241,
          -3.4893255507504053,
          -3.9116369331294423,
          -3.5739154404215507,
          -7,
          -7,
          -3.896213795234906,
          -3.3315285188686907,
          -7,
          -3.386498965550653,
          -3.807940721215499,
          -3.0074632745631806,
          -7,
          -7,
          -7,
          -7,
          -4.0816113093209765,
          -3.2637543888400056,
          -2.6159500516564007,
          -2.1448786552084167,
          -3.8772849391681783,
          -3.500236474825639,
          -7,
          -3.5200903281128424,
          -7,
          -7,
          -7,
          -3.521347331832345,
          -2.698721765128401,
          -3.2984163800612945,
          -2.6051223545340476,
          -3.8394376418318696,
          -4.062191334025707,
          -7,
          -7,
          -7,
          -2.9707703212585392,
          -7,
          -4.24944785211867,
          -2.7683914130944873,
          -3.3251049829714074,
          -7,
          -2.721285878569211,
          -4.05656185185946,
          -3.702818126370317,
          -7,
          -7,
          -7,
          -2.989115958983829,
          -7,
          -7,
          -3.919559212435094,
          -2.964673473933623,
          -7,
          -3.742852730737543,
          -3.397070549959409,
          -7,
          -7,
          -7,
          -3.2304489213782737,
          -7,
          -7,
          -2.093655114075086,
          -3.2136837399839564,
          -1.9976428464804807,
          -3.216957207361097,
          -2.6090605499300867,
          -1.9949034429806192,
          -2.1097472377132287,
          -1.8617119736967596,
          -2.070037866607755,
          -2.9337402994969355,
          -7,
          -1.9803367332623687,
          -2.40287522634755,
          -1.5146351616014173,
          -2.747994102251068,
          -2.361937589454128,
          -1.8912790259589563,
          -2.027964091636153,
          -7,
          -1.8036138077292478,
          -2.374565060722765,
          -2.2559300290470774,
          -2.166093107068167,
          -2.1631613749770184,
          -0.6067195539755574,
          -2.5859117103194342,
          -7,
          -1.7547010860879888,
          -1.6932339035574901,
          -1.9240330175654028,
          -3.1869563354654122,
          -2.516542481650632,
          -2.2912734051814825,
          -2.45178643552429,
          -2.8796692056320534,
          -1.882796675552491,
          -2.785567089582034,
          -1.280563918213139,
          -3.2245330626060857,
          -7,
          -2.8998205024270964,
          -2.383366482755039,
          -2.046625212091902,
          -2.506730464271809,
          -1.930949031167523,
          -7,
          -1.7994826615235353,
          -2.130333768495006,
          -1.718262357736775,
          -7,
          -2.0869527242574843,
          -2.6077230235205526,
          -3.374748346010104,
          -2.248571774044563,
          -2.1638568026386698,
          -7,
          -7,
          -2.8523928471568003,
          -2.04001724621947,
          -2.3706569876129886,
          -1.819324539486734,
          -1.8640752762509714,
          -7,
          -2.319035902573456,
          -3.2785249647370174,
          -2.0265916256712586,
          -2.7737864449811935,
          -2.3806633963405828,
          -2.9434045719310675,
          -7,
          -1.7983646063869205,
          -1.326563418954342,
          -2.929674317948588,
          -2.958802703399502,
          -1.7369863760269566,
          -3.171433900943008,
          -3.1934029030624176,
          -2.6786838876099157,
          -2.2338418642756133,
          -2.998912904358786,
          -1.9425855949537412,
          -2.649529565947819,
          -3.1256980877130376,
          -2.741939077729199,
          -1.7613995242895237,
          -1.7206186312984866,
          -1.317686397735075,
          -1.7138326419551946,
          -3.1758016328482794,
          -7,
          -2.4147095262667024,
          -1.922984815708883,
          -2.363074486652865,
          -1.8822398480188236,
          -2.3815963601406294,
          -2.0858509911532663,
          -1.6727105265930131,
          -2.305867056602291,
          -1.78890692406502,
          -3.203032887014711,
          -2.020775488193558,
          -3.199480914862356,
          -7,
          -2.959756672990995,
          -2.1480625354554377,
          -2.470452494407648,
          -3.1838390370564214,
          -7,
          -7,
          -1.7160325448102618,
          -7,
          -2.0376608084302044,
          -3.2024883170600935,
          -2.30588853028431,
          -2.3745192273121476,
          -2.7400994009248563,
          -2.0053319489492862,
          -2.0075632564697243,
          -1.3332039819952237,
          -3.303412070596742,
          -7,
          -1.845511456972561,
          -7,
          -7,
          -7,
          -2.460396637297684,
          -3.231214647962601,
          -3.2440295890300215,
          -2.447158031342219,
          -2.373396004448824,
          -2.314814887210721,
          -7,
          -7,
          -2.846708145456007,
          -7,
          -7,
          -2.3537196154121895,
          -2.873029812061044,
          -7,
          -2.0019259210360385,
          -2.182372377102884,
          -1.8460975674563835,
          -7,
          -7,
          -3.252124552505644,
          -7,
          -1.7163743769610007,
          -3.173186268412274,
          -7,
          -2.8656960599160706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.036801229045618,
          -7,
          -7,
          -7,
          -7,
          -3.8258802989361795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6909972448905215,
          -3.7965049515532963,
          -7,
          -7,
          -3.399601156258678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.984347257585864,
          -7,
          -7,
          -7,
          -3.43568513794163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.38172861853511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8709888137605755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2709448868349495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4144719496293026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.434900393753358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0086001717619175,
          -7,
          -7,
          -7,
          -7,
          -3.488973524726508,
          -7,
          -7,
          -7,
          -7,
          -2.1105261844479104,
          -7,
          -7,
          -7,
          -3.160018096006677,
          -7,
          -7,
          -3.15175279223674,
          -3.8725350221946804,
          -7,
          -7,
          -7,
          -3.800839225514776,
          -7,
          -7,
          -3.2425414282983844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2842426868695513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3763335866484043,
          -7,
          -7,
          -7,
          -7,
          -3.933284772348695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.456973013635818,
          -7,
          -3.475816413031318,
          -3.4300750555519395,
          -7,
          -2.8165376190019558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.130440988463926,
          -7,
          -2.6363054963162855,
          -7,
          -7,
          -2.6037564736529744,
          -7,
          -3.1705550585212086,
          -3.466125870418199,
          -3.1762359997608716,
          -3.494432898726399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8737080188633053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7968715576878025,
          -3.441695135640717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0043213737826426,
          -7,
          -3.750199727829182,
          -3.7763772790230172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.699837725867246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2347702951609167,
          -7,
          -3.681150749932421,
          -2.8920946026904804,
          -7,
          -7,
          -7,
          -7,
          -2.993583175003126,
          -2.5791214245707335,
          -7,
          -2.925879089301501,
          -7,
          -7,
          -3.4149733479708178,
          -1.9977548758799546,
          -7,
          -7,
          -3.5803546611065915,
          -7,
          -7,
          -7,
          -7,
          -3.1280760126687155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2249644667161625,
          -7,
          -7,
          -7,
          -3.0995892481040115,
          -7,
          -7,
          -3.428836444372765,
          -7,
          -7,
          -7,
          -3.4207806195485655,
          -2.1961401255504294,
          -2.6872316010647745,
          -7,
          -7,
          -7,
          -7,
          -3.9300146074718962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.158040143768389,
          -7,
          -7,
          -3.4590675733665495,
          -3.229809782952539,
          -7,
          -7,
          -7,
          -3.5149460053080044,
          -7,
          -3.530583859645118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4163630914988237,
          -7,
          -7,
          -2.59852191098963,
          -4.163258304891918,
          -4.019448637493637,
          -3.469380135849925,
          -3.5616975326539935,
          -2.564567439411901,
          -2.823948220466359,
          -7,
          -2.8160253712016736,
          -7,
          -2.584198148073582,
          -3.6011034909311253,
          -3.0646953435415623,
          -3.1365356092018986,
          -2.4170119131533196,
          -7,
          -3.9511431601075526,
          -2.7135643854323326,
          -2.0039237178426834,
          -3.933942602741261,
          -3.41338359662314,
          -4.410530922787965,
          -3.2116099373351346,
          -2.9876456426663927,
          -2.895146189375992,
          -7,
          -3.216947446947529,
          -3.3384564936046046,
          -7,
          -2.808902315104778,
          -2.91677425847629,
          -3.327917913524882,
          -3.991004440330755,
          -3.063483478027528,
          -2.785482370684724,
          -4.29280966541729,
          -7,
          -3.9154350135754097,
          -2.804155664912373,
          -4.06039561731991,
          -3.243286146083446,
          -4.297026951616813,
          -2.4915756751290963,
          -2.7759183689513516,
          -7,
          -4.133826214076394,
          -7,
          -4.270364353650405,
          -2.6681269610554104,
          -2.8197632208188845,
          -2.767403256850421,
          -3.5089335260500327,
          -7,
          -7,
          -7,
          -7,
          -3.1371958119405483,
          -7,
          -3.469208172085293,
          -7,
          -7,
          -3.0539510467143005,
          -3.8142387143633596,
          -4.401107465479456,
          -7,
          -7,
          -7,
          -3.594171479114912,
          -7,
          -4.953653399765918,
          -3.201328833655651,
          -3.837619999187664,
          -7,
          -3.05874226599279,
          -7,
          -3.0256130404386536,
          -3.5878231713189552,
          -7,
          -7,
          -3.0759898930799845,
          -7,
          -2.840419777736486,
          -3.851390859681218,
          -3.386008212064673,
          -7,
          -3.4008448706355794,
          -7,
          -7,
          -3.102982230518263,
          -4.101024940352695,
          -3.4423229557455746,
          -3.426185825244511,
          -7,
          -1.5736450565133797,
          -3.0714524076988035,
          -1.5938584784075553,
          -2.956328539041934,
          -2.2405492482826,
          -1.6866049133919572,
          -1.080468045453941,
          -2.3640817414110704,
          -1.68241978486113,
          -2.665580991017953,
          -7,
          -2.193806915041398,
          -2.015639134307175,
          -2.283497024424779,
          -2.312283165791478,
          -1.7603086596820539,
          -2.234820879807401,
          -1.8828456471121318,
          -1.8036138077292478,
          -7,
          -2.0119419037067887,
          -1.9734165172739373,
          -1.7872520498458428,
          -2.3988744062580363,
          -1.5864549179973864,
          -2.5725812013324862,
          -2.7433529514095554,
          -3.1131073665204956,
          -1.660875407117872,
          -1.8670641135389987,
          -7,
          -2.0686443960596153,
          -1.8962867793220939,
          -1.9672039793497955,
          -2.632963168167261,
          -2.1584567298046142,
          -7,
          -1.9275136000066488,
          -2.6589648426644352,
          -3.40671045860979,
          -7,
          -2.0762584823084365,
          -1.6374241062905812,
          -2.0910804693473324,
          -2.263636068588108,
          -3.4148062795010126,
          -1.6249795495865822,
          -2.0724478633886565,
          -1.4418478143140785,
          -7,
          -2.3389874160202413,
          -2.5253687865236367,
          -2.631570588836501,
          -2.245162645730847,
          -2.27307847310952,
          -3.4243915544102776,
          -3.129689892199301,
          -2.781468142841798,
          -1.687626890792445,
          -2.1371338529752912,
          -1.5959369062691735,
          -1.6382947241487407,
          -2.98781517440207,
          -2.3198467849581808,
          -2.9947569445876283,
          -1.7524649928865,
          -2.3379965170582664,
          -2.055584137246456,
          -3.2526507983886237,
          -3.426998958756537,
          -1.9247544441857607,
          -1.9584795623825795,
          -3.442793225939769,
          -2.4164892115757675,
          -1.513955834871233,
          -7,
          -3.419955748489758,
          -2.2170681524330766,
          -2.6511395051524786,
          -7,
          -2.6754919244099264,
          -2.8195439355418688,
          -3.1032904715577496,
          -2.6113249335884254,
          -1.8164738850726685,
          -1.4142348088269365,
          -1.6811308843113666,
          -1.6667690244306506,
          -3.4095950193968156,
          -7,
          -1.4909429692613971,
          -1.7617608341954742,
          -2.3479801568783407,
          -1.3006887927013713,
          -2.115523938469208,
          -1.8627153701879953,
          -1.8554605345592676,
          -2.3326424498122176,
          -1.844108633096734,
          -7,
          -2.2710211507221385,
          -3.4235735197327357,
          -7,
          -2.7613263224214566,
          -2.745465168670727,
          -2.0482897721854596,
          -7,
          -2.9492273190678455,
          -7,
          -1.7430413347300022,
          -3.4191293077419758,
          -2.6236922220853542,
          -2.5199919713052874,
          -2.428620672671939,
          -2.694312646223346,
          -2.4320066872695985,
          -2.1221378309221084,
          -1.522566190763858,
          -1.5370508399960496,
          -3.4885507165004443,
          -2.9492273190678455,
          -1.6648664026559605,
          -7,
          -7,
          -2.145783220668538,
          -2.2684219472783616,
          -2.09373996621855,
          -2.671018481781557,
          -2.166562368053224,
          -1.8321894610685132,
          -2.4148062795010126,
          -2.280545852343135,
          -3.4058583993176366,
          -1.5371191843949479,
          -2.8129133566428557,
          -7,
          -2.4339748638984138,
          -2.039672704763951,
          -7,
          -1.9202393082601417,
          -1.8430534957192342,
          -2.8190171986890595,
          -7,
          -7,
          -2.8527848686805477,
          -2.288661889613078,
          -1.745089958408157,
          -2.0019067040408847,
          -3.1487568513217923,
          -2.704322140822235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7061201097027037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6401334644944923,
          -7,
          -7,
          -3.230704313612569,
          -4.103991760529103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.343014497150768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05922251252969,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.574429992161969,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.088773767310448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.822788990355016,
          -7,
          -7,
          -7,
          -3.964479629577269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.218841731507062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7424108805804925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2132520521963968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.433489811682095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9452496866988067,
          -7,
          -7,
          -4.200622533946479,
          -7,
          -7,
          -3.117602691690084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.981969534880924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.444513206334043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6746805297242355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5420781463356255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3934267011372112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8367986680925994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021420172059839,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.355063412785068,
          -7,
          -7,
          -4.554149829550869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3466720399800094,
          -4.151055585657497,
          -7,
          -7,
          -7,
          -3.4488608456074408,
          -2.716003343634799,
          -7,
          -3.1704678690973567,
          -7,
          -2.6788975762019875,
          -3.1514266037049206,
          -4.362199638868886,
          -4.506572674252514,
          -3.201840752085797,
          -3.5955623530058514,
          -4.4013660715976775,
          -3.0902771226811176,
          -4.026533264523296,
          -4.315308959193267,
          -7,
          -3.7614801984190636,
          -7,
          -3.245674792956368,
          -2.565187822933127,
          -7,
          -7,
          -4.461378456425079,
          -7,
          -3.2187387393887366,
          -3.0097757327440036,
          -4.589379844241917,
          -7,
          -2.6776898887432607,
          -2.319768310036801,
          -7,
          -7,
          -7,
          -3.039310641815175,
          -3.9946690218255294,
          -3.2764618041732443,
          -7,
          -3.62015688394582,
          -7,
          -7,
          -4.0790002523038495,
          -7,
          -7,
          -7,
          -3.3725438007590705,
          -3.6189541113654435,
          -3.6851443595783593,
          -3.7623033632877685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.668944734457734,
          -4.080076055960704,
          -4.475630516702674,
          -7,
          -7,
          -3.0437551269686796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2439470470774965,
          -4.035269600099436,
          -7,
          -7,
          -7,
          -7,
          -3.0640257837025393,
          -7,
          -7,
          -7,
          -4.094913466730015,
          -7,
          -4.6407000199084365,
          -7,
          -7,
          -3.675044735955893,
          -3.7404811172953423,
          -7,
          -7,
          -7,
          -2.4268364538035083,
          -3.496514518697745,
          -2.134629995670311,
          -7,
          -3.2796669440484556,
          -2.05482190018818,
          -2.2332782113971383,
          -3.2431621151010512,
          -2.145889346756647,
          -7,
          -7,
          -2.750058182093764,
          -2.488198061603354,
          -2.927088432084736,
          -3.2304489213782737,
          -2.4071075149129415,
          -2.3179026933918885,
          -2.718501688867274,
          -2.374565060722765,
          -2.0119419037067887,
          -7,
          -2.2047227509440854,
          -2.531711098005766,
          -1.744697542520262,
          -2.305351369446624,
          -7,
          -7,
          -7,
          -2.572639297042813,
          -2.093421685162235,
          -7,
          -2.4353230387678386,
          -2.9571868900861062,
          -2.486794348864476,
          -7,
          -2.0148679975258963,
          -7,
          -1.7170727716115393,
          -7,
          -2.36688968965338,
          -7,
          -2.443393386643552,
          -2.760045327965811,
          -3.1436392352745433,
          -3.193773698800548,
          -7,
          -1.6901176379652818,
          -3.1784013415337555,
          -1.8949534731079374,
          -7,
          -2.446640706109038,
          -7,
          -2.959756672990995,
          -1.9079845757798979,
          -2.1807708138746293,
          -3.018284308426531,
          -7,
          -2.9486085498764365,
          -2.648786776141029,
          -0.8585931489330124,
          -2.3251636753807006,
          -2.4059721038560276,
          -7,
          -3.1802513549450664,
          -3.1316186643491255,
          -1.9975501969906566,
          -3.09377178149873,
          -2.294466226161593,
          -3.6593932114138483,
          -7,
          -2.1091659155366207,
          -2.1829849670035815,
          -7,
          -7,
          -2.1633017189698065,
          -7,
          -7,
          -2.8281072417647883,
          -3.1855421548543754,
          -7,
          -3.7777891874348675,
          -2.625312450961674,
          -3.539828558377898,
          -3.222456336679247,
          -2.419237193590724,
          -1.707064005315809,
          -2.0066442874731183,
          -2.190705124231049,
          -7,
          -7,
          -2.854216046570607,
          -0.9478593213085527,
          -7,
          -1.7856769928884877,
          -3.2139874522473995,
          -2.1609399149830604,
          -2.1530073751464793,
          -2.8500113496270156,
          -2.394721010746106,
          -7,
          -2.154783499881748,
          -7,
          -7,
          -7,
          -7,
          -2.409087369447835,
          -7,
          -7,
          -7,
          -2.517342544745865,
          -7,
          -2.005642422654947,
          -3.020775488193558,
          -7,
          -2.833147111912785,
          -7,
          -1.9949034429806192,
          -2.079181246047625,
          -1.915679114299964,
          -7,
          -7,
          -2.427323786357247,
          -7,
          -7,
          -7,
          -3.0780941504064105,
          -3.0637085593914173,
          -7,
          -3.730378468587643,
          -1.2411575891607545,
          -2.2533380053261065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9719602465585666,
          -7,
          -7,
          -3.3461573022320086,
          -1.1944804985563715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.2529312892884035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8843138059182074,
          -7,
          -7,
          -7,
          -7,
          -3.672005445022952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.44440915878158,
          -7,
          -7,
          -7,
          -3.97683696867815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5633861472626736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.34411706783031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2598326990634834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.824776462475546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4421268594394014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.523681447800753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0277572046905536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.773859552376687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5659658174466666,
          -3.8100644148453546,
          -7,
          -7,
          -7,
          -4.4386372661686115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.980321586008756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.711132072306842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1631613749770184,
          -3.133858125203335,
          -7,
          -7,
          -7,
          -4.0888445627270045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6173149332982937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313234291694724,
          -7,
          -3.878866336956725,
          -7,
          -7,
          -3.3516766956918618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.815577748324267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.397592434038117,
          -7,
          -3.0718820073061255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0786380383696725,
          -2.8847953639489807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.451642158270915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.525821952156663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.510545010206612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4187154968655955,
          -7,
          -3.4608158668890816,
          -7,
          -7,
          -7,
          -3.0500896140736904,
          -7,
          -7,
          -3.256958152560932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0318122713303706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4831592097169795,
          -7,
          -7,
          -7,
          -4.133826214076394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.737472675456183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7346830422588,
          -7,
          -2.5757649805367193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.803798407989674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7766077995980156,
          -4.449162012678147,
          -4.276921132065774,
          -7,
          -3.5308717578869526,
          -7,
          -2.5222811794469977,
          -4.404029356425098,
          -3.0193719645920116,
          -7,
          -2.868918601850143,
          -3.624580005156098,
          -3.513236630960425,
          -3.628729419665481,
          -3.0567316531360103,
          -3.683969609180228,
          -3.7925317619013077,
          -3.5413199722505695,
          -3.311245120878208,
          -4.311255725712636,
          -3.92272545799326,
          -3.801571769357205,
          -3.5897821032911432,
          -3.163679503398851,
          -3.0433622780211294,
          -4.165570740632901,
          -3.6744835066510486,
          -3.199785640163872,
          -7,
          -3.1046236604353257,
          -3.2308829988575924,
          -3.806801565307348,
          -3.2449200439124537,
          -2.8436574052692456,
          -2.5140826625258312,
          -3.7689585865041044,
          -3.7633905527696125,
          -3.510659887731922,
          -3.014117838691425,
          -7,
          -7,
          -4.274561924706311,
          -3.8340178035693295,
          -2.6815427260943268,
          -7,
          -4.064869625059806,
          -7,
          -4.246437026762404,
          -3.330075405991285,
          -7,
          -4.082641778157131,
          -3.849665055478733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1955398965493185,
          -7,
          -7,
          -3.758684849882441,
          -4.504353041020471,
          -4.872470949349374,
          -7,
          -7,
          -7,
          -4.314162271709985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.608793373986931,
          -3.868526886768204,
          -7,
          -3.9378186846983563,
          -7,
          -7,
          -7,
          -7,
          -2.8870543780509568,
          -7,
          -7,
          -2.9822712330395684,
          -2.9081989694812487,
          -1.9969492484953812,
          -7,
          -2.480581786829169,
          -2.946452265013073,
          -2.2858786515913603,
          -2.925441019653158,
          -1.7339376451385384,
          -7,
          -7,
          -2.480349203580037,
          -2.0796979557836552,
          -3.233361678159449,
          -2.4176377396522297,
          -2.281790637678311,
          -3.068371418032643,
          -2.6910814921229687,
          -2.2559300290470774,
          -1.9734165172739373,
          -2.2047227509440854,
          -7,
          -2.623766000133931,
          -2.504130905935453,
          -2.2023066418924566,
          -3.0025979807199086,
          -2.8915374576725643,
          -7,
          -2.572137583183095,
          -2.941511432634403,
          -7,
          -3.026358134008697,
          -2.880004941816317,
          -2.1261290246570215,
          -2.7701152947871015,
          -2.309138605990394,
          -7,
          -2.9352552817840474,
          -7,
          -7,
          -7,
          -2.6257532845118607,
          -2.583765368285,
          -2.09429639740537,
          -2.6783160050933468,
          -7,
          -2.263513634396092,
          -1.8348973393414871,
          -0.5661427555146684,
          -7,
          -2.6368220975871743,
          -2.541579243946581,
          -2.4572761860613257,
          -2.7465344047134894,
          -2.623766000133931,
          -2.5165353738957994,
          -2.845098040014257,
          -2.9093420383613084,
          -2.2128369682837645,
          -2.1709947020363,
          -2.5658478186735176,
          -2.5832859904528807,
          -2.965201701025912,
          -3.021013027860414,
          -2.9867717342662448,
          -1.941697731835903,
          -2.932980821923198,
          -1.548639607424759,
          -3.640729818150714,
          -7,
          -2.78406228363478,
          -2.761927838420529,
          -7,
          -2.6483600109809315,
          -1.4732145313868534,
          -2.7442929831226763,
          -7,
          -2.488752105088288,
          -7,
          -7,
          -3.1465156256030298,
          -7,
          -3.4888326343824008,
          -2.060697840353612,
          -2.3541852986258607,
          -2.034583897605951,
          -2.364446760508421,
          -2.112381541544101,
          -7,
          -7,
          -2.70819113900254,
          -1.8864907251724818,
          -2.3642382157351927,
          -1.5401208298279834,
          -3.064541179435372,
          -2.315970345456918,
          -2.6103823923852376,
          -3.1131631489984994,
          -2.5803546611065915,
          -7,
          -2.4774830160749435,
          -7,
          -7,
          -2.9523080096621253,
          -7,
          -1.6861612792710872,
          -7,
          -2.829303772831025,
          -7,
          -2.0609414155040815,
          -7,
          -2.9809119377768436,
          -2.2168254232660476,
          -2.367355921026019,
          -2.9912260756924947,
          -2.859738566197147,
          -1.6957005197711714,
          -2.3811150807098507,
          -2.6148972160331345,
          -7,
          -7,
          -1.6401500409361018,
          -7,
          -7,
          -7,
          -7,
          -2.586587304671755,
          -7,
          -7,
          -2.3214887739865633,
          -3.510276844417355,
          -7,
          -7,
          -2.5081929260254405,
          -7,
          -2.7427251313046983,
          -3.5081480005591854,
          -7,
          -7,
          -2.562768543016519,
          -2.225853169689125,
          -2.81424759573192,
          -7,
          -7,
          -7,
          -2.7427251313046983,
          -2.33568073008468,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7959341597745686,
          -7,
          -7,
          -7,
          -7,
          -3.8452841263479915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1819660221367885,
          -7,
          -7,
          -2.7122888420452504,
          -3.5705596175371634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5899049414992605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4559102403827433,
          -7,
          -7,
          -7,
          -7,
          -4.086146190685901,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8360074591255313,
          -2.525326542033364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.126488570700374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5199591807520685,
          -7,
          -7,
          -7,
          -7,
          -2.47928731647617,
          -7,
          -7,
          -7,
          -7,
          -3.4628470358316736,
          -7,
          -3.5146805441249818,
          -3.18440748541232,
          -7,
          -7,
          -7,
          -7,
          -3.0469704624639555,
          -3.2060158767633444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.924795995797912,
          -7,
          -7,
          -7,
          -7,
          -3.2287852009806493,
          -7,
          -7,
          -3.5073160400764136,
          -7,
          -3.549677489710556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9981866592365316,
          -3.1819292955032332,
          -7,
          -3.5052856741441323,
          -7,
          -4.058501943429649,
          -7,
          -7,
          -2.733770288651772,
          -7,
          -7,
          -3.4743619760326307,
          -3.485863329597335,
          -7,
          -7,
          -3.119292555619459,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.394568410965853,
          -3.421027775667483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.717504074764202,
          -7,
          -7,
          -7,
          -7,
          -4.163578765188774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.449914523871852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3347552398696707,
          -7,
          -3.2157256645575676,
          -7,
          -7,
          -2.1640064186301355,
          -3.4668676203541096,
          -2.3649528098608803,
          -7,
          -2.7402310651617,
          -2.4911069009364373,
          -7,
          -3.497067936398505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4913616938342726,
          -7,
          -7,
          -7,
          -2.7166524440808852,
          -7,
          -7,
          -3.1560946306394277,
          -3.4586378490256493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5674185056727485,
          -7,
          -2.771881320190099,
          -4.31251887678985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0124082212308045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.470410490975931,
          -7,
          -7,
          -7,
          -7,
          -3.4067955726682504,
          -2.2217792569396897,
          -7,
          -7,
          -7,
          -7,
          -2.667319508586583,
          -2.4772949377781273,
          -7,
          -2.868950945128882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.61394747678035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.227629649571009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.57978359661681,
          -7,
          -7,
          -3.1762359997608716,
          -3.115671015224398,
          -7,
          -7,
          -3.6212282277689853,
          -7,
          -7,
          -7,
          -7,
          -2.0860259719918854,
          -2.809963521714014,
          -7,
          -7,
          -7,
          -3.481299273332856,
          -3.5629416965348217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5264685124694775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0655797147284485,
          -3.7113009599161657,
          -4.094847356300792,
          -7,
          -3.5816083660320572,
          -3.974695871909683,
          -7,
          -7,
          -7,
          -7,
          -2.774395297572017,
          -3.729974285699556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2501585103901642,
          -7,
          -7,
          -2.972094463035642,
          -3.813276972408157,
          -7,
          -7,
          -7,
          -2.192474526304651,
          -3.038449839253787,
          -4.441805069695703,
          -2.599729355835965,
          -7,
          -2.5573445996041952,
          -3.905558437120276,
          -3.534624345371937,
          -3.497929599454888,
          -2.3775043562510274,
          -7,
          -3.2022959527507755,
          -2.4065217679829454,
          -4.098643725817057,
          -3.85782481981019,
          -4.028327198467569,
          -4.1562630271060215,
          -3.5262961904825314,
          -3.13080579429975,
          -3.8596485787364037,
          -4.229041573173397,
          -3.873543408844003,
          -4.489283322690485,
          -7,
          -2.733737564808792,
          -2.528036670631238,
          -3.765104169387963,
          -3.9977357765978985,
          -3.2932151863754866,
          -2.993142192245416,
          -7,
          -7,
          -3.4434542262000387,
          -3.7345598215794764,
          -4.0718083918331285,
          -7,
          -4.601418934071117,
          -1.8103072096251425,
          -2.3241741119063604,
          -7,
          -7,
          -7,
          -3.7297315952870354,
          -3.4633454229438665,
          -3.330007700872759,
          -4.158362492095249,
          -3.9151887051731564,
          -3.284374328300976,
          -7,
          -3.602005701124516,
          -7,
          -7,
          -7,
          -3.953977026127774,
          -2.9891827512555476,
          -7,
          -2.187311774726153,
          -3.250969731009272,
          -5.180166032638616,
          -7,
          -7,
          -7,
          -2.4597542491145123,
          -7,
          -7,
          -2.8230175234460493,
          -7,
          -3.1701149694966517,
          -2.9524897355097743,
          -4.106054840093787,
          -4.333628612518691,
          -7,
          -3.8506462351830666,
          -7,
          -2.737782385855657,
          -7,
          -3.4888326343824008,
          -2.7504170360248934,
          -2.13268651460904,
          -7,
          -3.8811182534521094,
          -3.5877109650189114,
          -7,
          -2.675123395867703,
          -4.11143055176598,
          -7,
          -7,
          -7,
          -7,
          -3.8594985581877763,
          -1.3601736010625614,
          -7,
          -1.8904675944331004,
          -1.6457354385455876,
          -1.802107049908688,
          -2.383498555402076,
          -1.5755524408482517,
          -3.490520309363349,
          -3.4679039465228003,
          -2.2912981981773917,
          -2.652522609767031,
          -2.4260075068343268,
          -1.993925852287807,
          -1.8461308454520247,
          -2.820951698466259,
          -0.8720557532519746,
          -2.166093107068167,
          -1.7872520498458428,
          -2.531711098005766,
          -2.623766000133931,
          -7,
          -3.2534591643398376,
          -2.2915557844830508,
          -3.042181594515766,
          -3.0112884341835358,
          -7,
          -2.098690486999541,
          -3.5021538928713607,
          -2.986622466527397,
          -2.71968440507334,
          -1.3363544940555752,
          -2.389219108536737,
          -2.681693392004564,
          -2.3712438324856118,
          -3.506505032404872,
          -2.523638096385075,
          -2.8816699076720615,
          -7,
          -2.6251654069508215,
          -1.6115765241815292,
          -7,
          -2.4380146519023493,
          -2.7396382614999117,
          -7,
          -1.9901888852467187,
          -2.2077241069247497,
          -1.8084360542881113,
          -7,
          -2.6524880857810116,
          -2.3950350180286306,
          -2.365838835440669,
          -2.934552554328816,
          -3.1965906541173066,
          -2.7715874808812555,
          -2.5725812013324862,
          -3.326745379565322,
          -1.7825714622372415,
          -2.9417598138146954,
          -7,
          -1.6577013855925506,
          -3.031139050792672,
          -1.6753495516750914,
          -1.7061945193192638,
          -2.2772270809913566,
          -1.2807300889659174,
          -2.9171114724936964,
          -3.4411057288794913,
          -7,
          -2.508978370335467,
          -2.3899251194809668,
          -7,
          -2.1769176998034636,
          -2.1213708020384168,
          -2.756027212973441,
          -7,
          -1.8818879143670435,
          -2.5359267413955693,
          -2.9250541203118425,
          -2.2120210485124043,
          -2.8580557180503643,
          -2.6503075231319366,
          -2.855034316675884,
          -1.8147063437620037,
          -1.8231911528255964,
          -2.6879251249656204,
          -2.397224110388342,
          -2.9807606420143298,
          -7,
          -1.9991055550292,
          -2.4533183400470375,
          -2.3950350180286306,
          -1.8564416356431923,
          -2.1239275732134377,
          -0.9727835222753004,
          -1.9222366116209038,
          -2.6834273048663455,
          -2.3193143040905118,
          -3.1715802019320636,
          -2.9426280309747153,
          -3.4709981696608736,
          -7,
          -2.4610344348262077,
          -3.085290578230065,
          -2.700310298799515,
          -3.4626974081017172,
          -2.32413541128684,
          -7,
          -1.9055313408689762,
          -3.4670158184384356,
          -3.0356965038452106,
          -7,
          -3.4781334281005174,
          -7,
          -2.878234468675044,
          -2.5902286212401577,
          -1.975687050645263,
          -2.833784374656479,
          -3.228400358703005,
          -3.4740705032150436,
          -2.466496903744401,
          -3.4559102403827433,
          -7,
          -7,
          -7,
          -2.444044795918076,
          -7,
          -2.4126405161383464,
          -2.991964044403458,
          -3.4424797690644486,
          -2.7774268223893115,
          -3.4551495211798278,
          -1.755966643579819,
          -3.4641913706409997,
          -7,
          -2.789963270670173,
          -7,
          -7,
          -2.6609708253620337,
          -2.9642596301968487,
          -3.5575072019056577,
          -3.4551495211798278,
          -7,
          -2.89707700320942,
          -7,
          -2.839617691903345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.187370289770912,
          -7,
          -7,
          -7,
          -7,
          -3.6909045540549665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4551495211798278,
          -7,
          -7,
          -7,
          -4.1821863167395446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.088691158069201,
          -7,
          -7,
          -2.942008053022313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.829089253448099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.04945061813155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.304023525101023,
          -2.335959106148248,
          -7,
          -7,
          -7,
          -2.7198834733033834,
          -7,
          -7,
          -4.1181323999209045,
          -7,
          -7,
          -7,
          -4.7413328454741555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9849771264154934,
          -7,
          -7,
          -3.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1640552918934515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.255979668208399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.288305130120162,
          -7,
          -7,
          -4.199023425636544,
          -7,
          -7,
          -7,
          -7,
          -3.1248301494138593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5854607295085006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.813247300897605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.373095987078727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1664301138432824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.915135906622012,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6020464194133406,
          -7,
          -7,
          -7,
          -3.3712526291249394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7679823068299627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.401076422394576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.132966923692817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7787712283360455,
          -3.973589623427257,
          -7,
          -7,
          -3.7384158516303687,
          -2.5738657906893656,
          -7,
          -7,
          -3.783482732017722,
          -7,
          -3.0993352776859577,
          -3.8823309691042955,
          -4.1844358883083705,
          -4.028211902948119,
          -3.256906648066348,
          -7,
          -4.398339375914612,
          -3.481136746915929,
          -7,
          -7,
          -7,
          -4.501367406054805,
          -7,
          -3.7096514974674624,
          -3.490590487028833,
          -7,
          -4.631017382942784,
          -7,
          -7,
          -3.2937279257888608,
          -3.634426885047629,
          -3.6841718627005906,
          -7,
          -3.7158919717962857,
          -3.353852142602988,
          -7,
          -7,
          -7,
          -3.620448384711709,
          -7,
          -7,
          -7,
          -4.315634529100032,
          -3.7777891874348675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.612819163778972,
          -4.15712419550487,
          -3.447778009294621,
          -2.6792006957270504,
          -7,
          -7,
          -7,
          -7,
          -4.201287854101759,
          -7,
          -7,
          -7,
          -4.283432402016652,
          -7,
          -7,
          -7,
          -7,
          -4.61740926653153,
          -7,
          -4.9449216798358355,
          -7,
          -7,
          -7,
          -3.104145550554008,
          -4.028205119905443,
          -3.988157472556753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.967910516906905,
          -7,
          -4.638958241356926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5535698523148875,
          -4.092685562937491,
          -2.7117650624814313,
          -7,
          -7,
          -2.5599066250361124,
          -2.8652520716525895,
          -3.1107580088798876,
          -2.7440320672350427,
          -7,
          -7,
          -3.341895943969397,
          -2.4216039268698313,
          -2.7631952011483123,
          -2.8816699076720615,
          -2.8341026557127935,
          -2.018769824946525,
          -2.638988159343682,
          -2.1631613749770184,
          -2.3988744062580363,
          -1.744697542520262,
          -2.504130905935453,
          -3.2534591643398376,
          -7,
          -2.0078011016525847,
          -7,
          -7,
          -2.907411360774586,
          -2.86457040685343,
          -2.3324384599156054,
          -7,
          -2.896482704641704,
          -3.1018746733792106,
          -3.0824575360795645,
          -2.9020028913507296,
          -2.1108956592248314,
          -7,
          -1.7961115793233833,
          -7,
          -2.402547950912391,
          -7,
          -3.5021538928713607,
          -1.9012766462284751,
          -2.78354628227035,
          -2.8756399370041685,
          -7,
          -2.28024859203978,
          -3.1248301494138593,
          -2.2762850101622933,
          -7,
          -2.478566495593843,
          -2.957607287060095,
          -3.2174839442139063,
          -2.285736493934199,
          -1.8980497623524202,
          -7,
          -7,
          -7,
          -2.8013413337900444,
          -1.5221180641467127,
          -1.7055216134226672,
          -2.7615102073835347,
          -3.0538464268522527,
          -3.23151984311686,
          -3.071513805095089,
          -1.92067396499224,
          -7,
          -2.606381365110605,
          -7,
          -7,
          -2.031951963271931,
          -1.9506893179563278,
          -7,
          -7,
          -2.520577100441661,
          -7,
          -7,
          -3.657915936829955,
          -3.132899769944483,
          -7,
          -2.722035308404712,
          -7,
          -3.5173278822943734,
          -2.696065013692612,
          -2.593286067020457,
          -1.896595103917157,
          -1.7462448717201984,
          -2.029789470831856,
          -7,
          -7,
          -3.6806074289917876,
          -1.8601187950839286,
          -2.957607287060095,
          -2.4245186658770486,
          -3.2830338249835074,
          -2.6704777860472753,
          -2.4757165762621733,
          -3.391111613702803,
          -2.193750533339446,
          -7,
          -1.547968919216163,
          -7,
          -1.9378520932511556,
          -7,
          -3.1931245983544616,
          -2.9339931638312424,
          -7,
          -2.946452265013073,
          -7,
          -2.719242477232849,
          -7,
          -1.9107768156582345,
          -7,
          -7,
          -3.0751818546186915,
          -7,
          -2.7122286696195355,
          -2.588691788592222,
          -1.8380201260230709,
          -7,
          -7,
          -2.3096301674258988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.716003343634799,
          -2.2135754974048063,
          -2.535167485114944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5920434496293616,
          -7,
          -7,
          -3.3104808914626753,
          -2.1153544418072685,
          -2.8788089323592057,
          -7,
          -7,
          -7,
          -7,
          -2.1339644786952103,
          -2.886490725172482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.188937853551512,
          -7,
          -7,
          -7,
          -7,
          -3.7054360465852505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.24149667332751,
          -7,
          -7,
          -3.2286569581089353,
          -4.103946182653774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.266772463513072,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.863521122841043,
          -3.4641913706409997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7504955381044454,
          -7,
          -7,
          -2.967079734144497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.989894563718773,
          -7,
          -7,
          -7,
          -2.352325472188329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8974542815321183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0224283711854865,
          -7,
          -7,
          -7,
          -3.9970804354717306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.101953177477199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6203362921859834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0847549631793543,
          -7,
          -3.054175147303347,
          -7,
          -7,
          -3.563544974376491,
          -7,
          -7,
          -7,
          -3.140193678578631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5018197150156265,
          -7,
          -3.1920095926536702,
          -7,
          -3.0013009330204183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1419198739138805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.009450895798694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.452795036470653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.541745608431244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2586372827240764,
          -7,
          -7,
          -3.359076226059263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.749968083509403,
          -7,
          -4.030410798533004,
          -7,
          -7,
          -7,
          -1.9887772958912515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.533772058384718,
          -7,
          -7,
          -3.031408464251624,
          -3.8367143411134936,
          -7,
          -7,
          -3.8085485512404054,
          -7,
          -7,
          -7,
          -7,
          -3.3085644135612386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100587638089793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2060158767633444,
          -4.392842386388172,
          -7,
          -7,
          -3.9519200735202937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4923412532549745,
          -7,
          -7,
          -3.584115257228258,
          -4.150994239213408,
          -7,
          -2.82052984852352,
          -3.96296881959362,
          -3.447623097760286,
          -2.756940236046724,
          -7,
          -3.3586010159430195,
          -7,
          -3.214995143810212,
          -3.9811614606115753,
          -7,
          -4.205461507107036,
          -2.8252894289691803,
          -7,
          -4.401228167498113,
          -3.403492287455705,
          -3.5489214662854756,
          -4.315224901518623,
          -3.6406801532776654,
          -5.104019104958513,
          -3.9114239653762946,
          -3.8869769191447054,
          -7,
          -4.176583180765493,
          -4.632710303832954,
          -4.46125835286184,
          -7,
          -3.596394067309122,
          -3.1262813018154407,
          -3.987163318162591,
          -3.9534697432534016,
          -4.197749067622612,
          -3.841797298874355,
          -7,
          -7,
          -7,
          -3.1970219725378053,
          -7,
          -7,
          -3.97780359953627,
          -3.841922311679451,
          -3.312318429847517,
          -7,
          -7,
          -7,
          -4.074926097123956,
          -3.832189461068513,
          -7,
          -3.1411360901207392,
          -3.5599066250361124,
          -3.761702367541413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.205826659359341,
          -7,
          -7,
          -4.367914738793752,
          -4.138040914556538,
          -7,
          -7,
          -7,
          -7,
          -3.9201024462463967,
          -7,
          -7,
          -3.6760531246518715,
          -7,
          -7,
          -7,
          -7,
          -4.292942423054936,
          -7,
          -3.71281800020785,
          -7,
          -4.1784301399477375,
          -7,
          -7,
          -4.311743268378236,
          -3.7267504887286442,
          -7,
          -4.339570682001439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8122446968003691,
          -3.143708561554825,
          -2.0043213737826426,
          -7,
          -2.7997998773461115,
          -1.9145194487727255,
          -2.2838663484734685,
          -2.42717806043141,
          -1.8913677498314387,
          -7,
          -7,
          -2.245577599335823,
          -2.2401925382158083,
          -1.7066415383751545,
          -2.624797578960761,
          -2.100370545117563,
          -2.01137522581669,
          -2.0349730482929402,
          -0.6067195539755574,
          -1.5864549179973864,
          -2.305351369446624,
          -2.2023066418924566,
          -2.2915557844830508,
          -2.0078011016525847,
          -7,
          -2.0543576623225928,
          -7,
          -1.4852480809503588,
          -2.0977924267526817,
          -1.9109799468508541,
          -2.9934362304976116,
          -2.513333427374107,
          -2.4302048853621963,
          -2.5090226886261187,
          -7,
          -1.8598263408763092,
          -3.1078880251827985,
          -1.4033211139451396,
          -7,
          -7,
          -3.015778756389041,
          -2.374879216730366,
          -1.8160462429564344,
          -2.1818435879447726,
          -2.3659557226656793,
          -7,
          -1.8559382914396632,
          -2.170848203643309,
          -1.4815125406856344,
          -7,
          -1.7481880270062005,
          -2.3287872003545345,
          -2.7812765493758462,
          -2.4403383022601792,
          -2.037426497940624,
          -2.7130703258556395,
          -3.0318122713303706,
          -3.04493154614916,
          -1.994397711264469,
          -2.0442036624920537,
          -1.7966346560776567,
          -1.900615367864088,
          -7,
          -2.521372256190692,
          -2.8273692730538253,
          -1.94420840975905,
          -2.789228057267335,
          -2.233313461142046,
          -3.114468006623671,
          -7,
          -2.053304461954253,
          -1.4053219622946371,
          -7,
          -2.801403710017355,
          -1.7821141474790712,
          -2.9689496809813427,
          -3.0034605321095067,
          -2.557414651136655,
          -2.579497782534824,
          -7,
          -2.3107299261343788,
          -2.4461227639106142,
          -3.538824988937904,
          -7,
          -1.9348642345397662,
          -1.7533557390856211,
          -1.5719120796713575,
          -1.519298927858262,
          -7,
          -2.976808337338066,
          -2.438361496362737,
          -1.8325089127062362,
          -2.070243158259842,
          -1.7133855268966218,
          -2.570092108028933,
          -2.0244424564676597,
          -1.9912260756924949,
          -2.7054470176347998,
          -1.841263185235105,
          -7,
          -2.078902762882005,
          -7,
          -7,
          -3.104487111312395,
          -2.456619044777273,
          -2.4755501306283416,
          -7,
          -7,
          -7,
          -1.9792447784093805,
          -7,
          -2.076872040931254,
          -7,
          -2.330819466495837,
          -2.2833012287035497,
          -2.562689299428688,
          -1.864065879090237,
          -2.002975557763293,
          -1.3047175819263184,
          -3.163757523981956,
          -7,
          -1.728213799914649,
          -7,
          -7,
          -7,
          -3.0751818546186915,
          -7,
          -3.079543007402906,
          -2.6867174989421154,
          -2.272394214426179,
          -2.778633531923382,
          -7,
          -7,
          -2.8695250628572273,
          -7,
          -7,
          -2.499797903125245,
          -2.6720978579357175,
          -7,
          -2.2992496924024803,
          -1.968482948553935,
          -1.7977468064470243,
          -7,
          -7,
          -3.091315159697223,
          -7,
          -1.815307890596743,
          -2.971739590887778,
          -7,
          -2.6603910984024672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.661916752355482,
          -7,
          -2.6989700043360187,
          -7,
          -7,
          -2.5171015988546297,
          -1.5910646070264993,
          -2.649334858712142,
          -2.808885867359812,
          -7,
          -7,
          -3.9181876613589255,
          -7,
          -7,
          -7,
          -3.1466160554402265,
          -7,
          -7,
          -7,
          -2.8135809885681917,
          -2.298853076409707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7405995128111567,
          -7,
          -7,
          -7,
          -7,
          -2.7481880270062007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2534995431676204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9208925777394548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7054360465852505,
          -7,
          -7,
          -2.926342446625655,
          -7,
          -1.6743252109433453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.886776612422209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7846172926328756,
          -2.8382192219076257,
          -7,
          -7,
          -3.977220446635385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.404149249209695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -2.734799829588847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.952671385348004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2725377773752373,
          -7,
          -7,
          -3.0393956715301442,
          -7,
          -7,
          -7,
          -7,
          -2.7218106152125467,
          -7,
          -2.583765368285,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9077695418108918,
          -7,
          -3.0461047872460387,
          -2.443262987458695,
          -2.747411807886423,
          -7,
          -2.7075701760979367,
          -2.5599066250361124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7015679850559273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3811150807098507,
          -2.746244871720198,
          -7,
          -5.1504279092018646,
          -7,
          -7,
          -2.4065401804339555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.397853141088609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8344207036815328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8099803388636957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.2348502205820062,
          -7,
          -3.103461622094705,
          -2.9387698227831174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.870403905279027,
          -7,
          -7,
          -7,
          -4.309214834458301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9041743682841634,
          -7,
          -2.2947417063369593,
          -2.4573771965239053,
          -7,
          -7,
          -7,
          -2.8175653695597807,
          -5.099117557629357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.966517176446792,
          -7,
          -4.831487439682331,
          -7,
          -7,
          -3.247138226100887,
          -2.037758400503131,
          -7,
          -2.9380190974762104,
          -7,
          -7,
          -3.4768316285122607,
          -2.215174739097536,
          -7,
          -2.682145076373832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.307496037913213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.434600836278021,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6995949385452396,
          -7,
          -7,
          -4.177680759848778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.787028090288343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1577588860468637,
          -7,
          -4.30977916448048,
          -3.75724415102197,
          -7,
          -7,
          -7,
          -4.546653690487702,
          -3.501675331410371,
          -2.6766936096248664,
          -3.4779167323046356,
          -4.148664339982236,
          -7,
          -7,
          -7,
          -7,
          -2.8318697742805017,
          -7,
          -7,
          -3.400192488592576,
          -7,
          -7,
          -4.5040447413439955,
          -5.173308669740682,
          -7,
          -7,
          -2.815577748324267,
          -3.5350830413110805,
          -7,
          -7,
          -3.633367445117007,
          -7,
          -7,
          -7,
          -4.01678271248684,
          -7,
          -7,
          -3.6737579365495767,
          -7,
          -3.5632140189832664,
          -7,
          -2.8512583487190755,
          -3.493865396394858,
          -3.867726690780445,
          -7,
          -3.937136588642368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.167317334748176,
          -7,
          -3.098903186831587,
          -2.028706779135174,
          -2.0407848551333188,
          -7,
          -3.123851640967086,
          -2.825339553190717,
          -3.143327129992046,
          -2.5563025007672873,
          -7,
          -2.799409479615127,
          -2.415529779157638,
          -3.074084689028244,
          -1.8289461816359327,
          -1.9493900066449128,
          -7,
          -3.7668588110214176,
          -2.5859117103194342,
          -2.5725812013324862,
          -7,
          -3.0025979807199086,
          -3.042181594515766,
          -7,
          -2.0543576623225928,
          -7,
          -2.2461291256634364,
          -2.725094521081469,
          -3.2464985807958007,
          -7,
          -7,
          -4.4733117571189815,
          -3.798670372205142,
          -7,
          -7,
          -7,
          -2.0718820073061255,
          -2.9177680024477564,
          -1.5811260844923194,
          -7,
          -2.292994040067439,
          -2.1137914745357826,
          -1.8344207036815325,
          -2.1903316981702914,
          -2.780934207814762,
          -2.7267272090265724,
          -3.724930914192398,
          -7,
          -2.3394514413064407,
          -2.6848453616444123,
          -7,
          -1.6685292718594495,
          -7,
          -4.337758671493417,
          -7,
          -1.715243423087623,
          -2.0962145853464054,
          -7,
          -3.525239223729745,
          -7,
          -2.2346859743215286,
          -3.6933751510251853,
          -2.3268476989159903,
          -2.6554958892506404,
          -2.476155081947642,
          -2.7456992266025058,
          -2.89707700320942,
          -7,
          -7,
          -7,
          -2.691161894693207,
          -2.432969290874406,
          -2.8488047010518036,
          -2.0644579892269186,
          -2.835056101720116,
          -7,
          -1.7371926427047373,
          -1.8114493237739548,
          -1.5030242056865204,
          -7,
          -1.900608068735828,
          -3.0941215958405612,
          -2.1951710924633283,
          -2.0788191830988487,
          -2.7076475835452323,
          -2.91053547390048,
          -2.460038278929382,
          -2.159983427793689,
          -2.7007037171450192,
          -7,
          -7,
          -3.141763230275788,
          -2.3194530784907674,
          -7,
          -3.204662511748219,
          -3.204662511748219,
          -2.9701608430373136,
          -3.2879584058601505,
          -1.809596708926521,
          -2.0726174765452363,
          -7,
          -1.6720978579357175,
          -7,
          -2.214843848047698,
          -1.4241553915088128,
          -7,
          -2.724275869600789,
          -7,
          -7,
          -2.6808791744268112,
          -7,
          -7,
          -7,
          -2.1965906541173066,
          -7,
          -7,
          -2.39909658587198,
          -3.4533183400470375,
          -2.6027832129470583,
          -1.8177856558855299,
          -2.4807253789884878,
          -2.5869621812439334,
          -7,
          -7,
          -7,
          -2.8721562727482928,
          -7,
          -7,
          -2.913195513751178,
          -7,
          -3.5010592622177517,
          -2.8000293592441343,
          -7,
          -7,
          -7,
          -2.6857417386022635,
          -3.4396258846219,
          -7,
          -7,
          -2.5462958351214424,
          -3.500236474825639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659764122861992,
          -7,
          -7,
          -7,
          -3.618048096712093,
          -3.643847310299714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4287825114969546,
          -7,
          -7,
          -3.009450895798694,
          -3.5770664885839754,
          -7,
          -7,
          -2.416640507338281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6374897295125104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4456042032735974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.411030146797094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5397032389478253,
          -2.174277918292213,
          -7,
          -7,
          -7,
          -3.7315887651867388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.220970587520289,
          -7,
          -2.334453751150931,
          -7,
          -7,
          -7,
          -7,
          -2.1789769472931693,
          -7,
          -2.8273692730538253,
          -2.3607826898732798,
          -7,
          -2.6444385894678386,
          -2.7895807121644256,
          -7,
          -3.7417816961431667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4653828514484184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4076741092293186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4878451201114355,
          -2.709269960975831,
          -3.3647760572774246,
          -2.56702636615906,
          -7,
          -1.7187783976895714,
          -1.9242792860618816,
          -7,
          -7,
          -2.7502511875699738,
          -4.101128175838757,
          -7,
          -7,
          -7,
          -3.6232095180198423,
          -7,
          -3.0187004986662433,
          -7,
          -2.8068580295188172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6854730197227594,
          -3.4274861090957858,
          -3.137354111370733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8208579894397,
          -7,
          -7,
          -7,
          -7,
          -2.499687082618404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9800033715837464,
          -2.8129133566428557,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -3.7746953507239045,
          -7,
          -7,
          -7,
          -7,
          -2.4653828514484184,
          -7,
          -7,
          -2.767897616018091,
          -7,
          -3.3842339054735975,
          -7,
          -7,
          -3.15243660570801,
          -7,
          -7,
          -2.194514341882467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3230457354817013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.017629488303718,
          -7,
          -7,
          -5.149730108964738,
          -7,
          -7,
          -1.7435097647284297,
          -7,
          -7,
          -2.429752280002408,
          -2.6893088591236203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.439332693830263,
          -7,
          -7,
          -2.640481436970422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.427323786357247,
          -7,
          -7,
          -7,
          -3.302330928684399,
          -7,
          -7,
          -2.741151598851785,
          -4.498434620204358,
          -7,
          -7,
          -7,
          -3.3220124385824006,
          -7,
          -3.0178677189635055,
          -2.272421826371504,
          -7,
          -7,
          -7,
          -7,
          -2.59659709562646,
          -2.8926510338773004,
          -1.8512583487190755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.438858659420562,
          -7,
          -7,
          -7,
          -4.306789467495679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4705574852172743,
          -7,
          -3.13481437032046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.797295246134027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8819549713396007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.433193591714845,
          -7,
          -3.085290578230065,
          -3.3694014136966244,
          -2.5642714304385623,
          -7,
          -2.5037906830571814,
          -7,
          -2.386498965550653,
          -2.9648879044212895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4899584794248346,
          -7,
          -7,
          -2.4742162640762553,
          -7,
          -3.085290578230065,
          -7,
          -7,
          -4.6187591293929335,
          -7,
          -4.27009628142033,
          -7,
          -7,
          -7,
          -3.704236337308788,
          -7,
          -4.131722895345994,
          -7,
          -4.034427905025403,
          -7,
          -7,
          -7,
          -3.917558020825436,
          -7,
          -4.389502753638463,
          -4.175492485186052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.785415261588475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7048280367803335,
          -4.223755453657241,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.301391757019262,
          -7,
          -3.4015297758611776,
          -3.739651443709377,
          -7,
          -7,
          -7,
          -7,
          -2.9410853055533765,
          -3.225050696138049,
          -4.071918810363806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4006914571198217,
          -4.980153416005866,
          -7,
          -7,
          -7,
          -7,
          -3.532680079837371,
          -7,
          -7,
          -3.3085644135612386,
          -7,
          -7,
          -3.66143405039392,
          -4.007192823557041,
          -7,
          -7,
          -3.652343055062715,
          -7,
          -3.857573704147496,
          -7,
          -1.667452952889954,
          -3.8273692730538253,
          -3.4846675287062974,
          -7,
          -4.031781998819799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.074633618296904,
          -2.6104383466072485,
          -1.656417653650555,
          -1.9326911474206108,
          -2.2900346113625183,
          -2.606560492554639,
          -2.991934549718948,
          -2.587336734507256,
          -1.9885589568786155,
          -1.8195439355418688,
          -3.085219201044942,
          -2.2663885100087673,
          -3.3731675154102025,
          -1.8208579894397,
          -2.084831520070331,
          -7,
          -2.491750672348322,
          -7,
          -2.7433529514095554,
          -7,
          -2.8915374576725643,
          -3.0112884341835358,
          -7,
          -7,
          -2.2461291256634364,
          -7,
          -7,
          -2.7920731750124674,
          -7,
          -7,
          -3.8678356276470556,
          -2.9002081810665623,
          -3.5656589539252037,
          -2.4683473304121573,
          -3.074816440645175,
          -1.5895772957033327,
          -7,
          -1.6384892569546374,
          -7,
          -1.2397603389250587,
          -2.166331421766525,
          -7,
          -2.8530895298518657,
          -2.903524064471262,
          -1.0565734553021526,
          -2.9269423601642295,
          -2.6164755138885654,
          -2.338013561917151,
          -7,
          -2.7019994748896368,
          -1.816241299991783,
          -7,
          -4.333205372625344,
          -7,
          -2.561101383649056,
          -1.3141014045117398,
          -7,
          -3.334051440346892,
          -2.6546577546495245,
          -2.910090545594068,
          -3.0703149874181173,
          -2.093421685162235,
          -2.7161985370430206,
          -1.418439403733663,
          -2.9312883237487672,
          -7,
          -2.550228353055094,
          -7,
          -2.57978359661681,
          -3.4143883269310753,
          -2.6339731557896737,
          -1.7643629658980102,
          -1.8625785677670705,
          -2.7841416140728312,
          -7,
          -1.7363965022766423,
          -2.5253687865236367,
          -2.1481911962420113,
          -2.888179493918325,
          -2.7700333601614644,
          -7,
          -2.264660441423504,
          -2.0343164474392905,
          -2.651762447380111,
          -2.9692294798626433,
          -7,
          -2.7461150183833354,
          -7,
          -7,
          -3.572081257156328,
          -3.406028944963615,
          -1.74707871738161,
          -2.8016323462331667,
          -3.41096693224878,
          -2.4367985102318035,
          -2.880098704083314,
          -3.437886400119698,
          -2.9191528354245166,
          -2.2671717284030137,
          -2.9599948383284165,
          -1.6952314347766169,
          -7,
          -1.9250172547728448,
          -2.7218106152125467,
          -7,
          -7,
          -1.8715729355458788,
          -7,
          -2.559476934347587,
          -7,
          -7,
          -7,
          -2.002166061756508,
          -7,
          -2.632457292184724,
          -2.1164416975393117,
          -2.8140810398403664,
          -3.3398487830376373,
          -1.5968863360513395,
          -2.0980665902079987,
          -2.971275848738105,
          -7,
          -7,
          -7,
          -7,
          -2.3774883833761327,
          -7,
          -3.069112851387121,
          -2.9157954276020663,
          -7,
          -2.606381365110605,
          -7,
          -3.059752694209299,
          -2.4955443375464483,
          -7,
          -3.501470072100412,
          -7,
          -7,
          -2.885926339801431,
          -2.864955827110473,
          -7,
          -2.403120521175818,
          -7,
          -2.0453229787866576,
          -7,
          -2.958085848521085,
          -2.424881636631067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658049574713654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.278715503274669,
          -2.2764618041732443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426560055756167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.848189116991399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.284205067701794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0015173768235046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.543608690196552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3915878235099495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5774917998372255,
          -2.8333013741535655,
          -7,
          -7,
          -7,
          -7,
          -1.7547010860879888,
          -3.1131073665204956,
          -7,
          -7,
          -7,
          -2.907411360774586,
          -1.4852480809503588,
          -2.725094521081469,
          -7,
          -7,
          -7,
          -2.6009728956867484,
          -7,
          -7,
          -4.639854885632376,
          -7,
          -7,
          -7,
          -7,
          -2.2476226046698424,
          -7,
          -7,
          -7,
          -7,
          -2.4683473304121573,
          -2.7267272090265724,
          -3.2821687783046416,
          -7,
          -7,
          -7,
          -2.952792443044092,
          -7,
          -7,
          -7,
          -7,
          -4.32956058217531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.801403710017355,
          -7,
          -7,
          -3.8254261177678233,
          -7,
          -2.7743344507093037,
          -7,
          -7,
          -7,
          -7,
          -3.2228031480228143,
          -2.3547485195608395,
          -7,
          -7,
          -3.217220655644519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.710625015060797,
          -2.921686475483602,
          -7,
          -7,
          -7,
          -3.0492180226701815,
          -2.429752280002408,
          -2.3263358609287517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.27916484306227,
          -2.7501225267834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.448118620292148,
          -7,
          -7,
          -7,
          -7,
          -2.7032913781186614,
          -2.3961993470957363,
          -2.5428254269591797,
          -7,
          -2.298634783124436,
          -7,
          -7,
          -2.576341350205793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5765716840652906,
          -7,
          -7,
          -7,
          -7,
          -2.4403842548328845,
          -7,
          -7,
          -7,
          -7,
          -2.692217233097753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.819214799882384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.062347957827833,
          -7,
          -7,
          -7,
          -7,
          -3.2530551694438183,
          -3.8258154449852038,
          -7,
          -7,
          -7,
          -7,
          -2.9535482900828445,
          -3.712439236645189,
          -7,
          -3.390287301803129,
          -3.0492764487705313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8516455748718625,
          -3.8282731120520697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8317418336456384,
          -7,
          -7,
          -7,
          -3.4490770892633167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2938595539820534,
          -2.855670556918036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8785217955012063,
          -7,
          -7,
          -7,
          -2.834674974462744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.823148059810694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8430458105345693,
          -7,
          -3.1643198031962783,
          -7,
          -7,
          -3.820004306808318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5514499979728753,
          -7,
          -7,
          -7,
          -7,
          -3.3763944420372662,
          -7,
          -7,
          -3.8431081419996067,
          -7,
          -2.930633736245974,
          -7,
          -7,
          -7,
          -7,
          -3.569549464888704,
          -7,
          -7,
          -3.8009231818132183,
          -7,
          -7,
          -7,
          -2.880899299839252,
          -7,
          -7,
          -3.878291949249796,
          -7,
          -7,
          -3.8282086144679455,
          -7,
          -7,
          -7,
          -3.0466344997274475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203576774977973,
          -3.109867691044164,
          -7,
          -7,
          -7,
          -3.4022957806553165,
          -7,
          -7,
          -7,
          -3.1741567592784814,
          -3.8702282790117946,
          -7,
          -7,
          -7,
          -3.5639080503462868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.386320573894046,
          -7,
          -3.8402315949581087,
          -7,
          -7,
          -3.829303772831025,
          -7,
          -2.8522257675089486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.608044405736923,
          -7,
          -2.7525605875980133,
          -7,
          -7,
          -2.6914826123553053,
          -7,
          -3.369092109159725,
          -3.8440420420410164,
          -3.547713186231703,
          -3.8561244442423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3973264538510293,
          -7,
          -3.1600481395528757,
          -3.8248414717537007,
          -3.824971461123693,
          -7,
          -3.8217754671834636,
          -3.835817354293473,
          -7,
          -7,
          -7,
          -3.1484484035233837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.85076872692888,
          -7,
          -3.508754102588731,
          -3.6123334399272435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.808346035740395,
          -7,
          -7,
          -7,
          -7,
          -3.8256208250035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9472866446777983,
          -3.6001012556913907,
          -7,
          -7,
          -7,
          -3.922050402167174,
          -3.846213363879387,
          -2.426782271970501,
          -7,
          -3.3473644589859757,
          -7,
          -7,
          -7,
          -3.244730562948387,
          -7,
          -7,
          -3.5944478006117335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.524071415934022,
          -3.055187138555754,
          -3.01416037745305,
          -7,
          -3.8296253533580495,
          -3.348462489920785,
          -7,
          -7,
          -3.304813543394108,
          -7,
          -7,
          -7,
          -7,
          -3.1879153546499897,
          -3.366982975977851,
          -7,
          -7,
          -7,
          -7,
          -3.5513477757329275,
          -3.871689665685515,
          -7,
          -7,
          -7,
          -3.5803546611065915,
          -3.8520528086978505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.84279639517558,
          -7,
          -3.885926339801431,
          -7,
          -3.4054842160241834,
          -7,
          -3.577836341292744,
          -3.71474876072506,
          -3.395093308677923,
          -7,
          -7,
          -7,
          -3.865163219506086,
          -3.9600900679049196,
          -7,
          -7,
          -7,
          -7,
          -3.8504011479971583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.942950070077099,
          -7,
          -7,
          -2.8597840073240657,
          -3.1920026148585094,
          -4.397522885718343,
          -3.2429760021854523,
          -3.919418069406337,
          -3.024742145874638,
          -3.211806811322216,
          -4.4970541095473315,
          -2.0003367588821965,
          -7,
          -1.8242039608286242,
          -3.643156465619706,
          -3.7135409418501917,
          -3.698088112165083,
          -1.8837400773686257,
          -4.103478733439318,
          -4.188478495913935,
          -2.255024314814158,
          -3.4338231510303165,
          -3.5580343650072894,
          -7,
          -4.043758399217367,
          -3.66373232660306,
          -2.9950477386687933,
          -3.218941109212078,
          -4.014835435072798,
          -4.385633081072282,
          -3.840055884099814,
          -7,
          -2.6173065165235503,
          -2.6989888862943228,
          -3.694166295933198,
          -4.37383114507383,
          -3.4279929769690853,
          -3.197728408739593,
          -4.374436714981712,
          -7,
          -3.4170034022680262,
          -3.2589892174623056,
          -3.1912273818740102,
          -3.2762319579218335,
          -3.7371826999516857,
          -2.496748489605601,
          -2.868203455637116,
          -3.5504729571065634,
          -3.5479961022227244,
          -7,
          -3.5368844618610713,
          -2.981260880814982,
          -2.8622398309260126,
          -2.548955148750172,
          -2.9065074321941373,
          -3.757965097861435,
          -3.8900855267163252,
          -4.070148736152306,
          -7,
          -3.8327004709605674,
          -3.97799780995874,
          -2.873801481567676,
          -3.6352323462394964,
          -7,
          -2.3654275949190438,
          -3.208236548850757,
          -4.014626929273559,
          -7,
          -7,
          -7,
          -2.8606420214726844,
          -3.743627337570885,
          -2.6166381388054543,
          -1.900068277686376,
          -3.648725835359072,
          -7,
          -2.782273506982521,
          -3.740731025540231,
          -3.403000344021163,
          -3.296829664598624,
          -2.7112848782112553,
          -7,
          -1.7369932022994319,
          -7,
          -3.834674974462744,
          -2.810484550780126,
          -2.6358897433686486,
          -7,
          -3.414603952694696,
          -3.8820689444361483,
          -2.8047683130754844,
          -4.017200343523835,
          -2.8988557218778017,
          -3.8342299028516775,
          -7,
          -7,
          -3.3687206527020948,
          -3.1809855807867304,
          -1.485258562995629,
          -7,
          -2.2953934631978936,
          -2.3188219281371274,
          -1.4664823852680764,
          -1.1381797817338746,
          -1.8383143550055454,
          -3.3580618151293815,
          -7,
          -1.3475107078437523,
          -2.3734827339184386,
          -1.9406109939725837,
          -2.48465567261692,
          -1.9800648211037504,
          -2.7185535852026295,
          -1.9581155093926923,
          -1.6932339035574901,
          -1.660875407117872,
          -2.572639297042813,
          -2.572137583183095,
          -2.098690486999541,
          -2.86457040685343,
          -2.0977924267526817,
          -3.2464985807958007,
          -2.7920731750124674,
          -7,
          -7,
          -2.994882517664086,
          -7,
          -2.330511565396869,
          -1.9073510438211967,
          -2.0378793560502615,
          -3.3451122255191814,
          -2.142460113467407,
          -3.1432646820112207,
          -2.382411062610103,
          -3.531606631932722,
          -7,
          -3.349795392465258,
          -2.186498450104975,
          -3.055314609787049,
          -2.340072128109108,
          -2.671299097228857,
          -3.3458962687263867,
          -1.9174860593215874,
          -2.4056877866727775,
          -1.7596138917133635,
          -7,
          -2.4839437142904197,
          -3.130076332517164,
          -2.5940434390367693,
          -2.513389967131988,
          -2.8835352601144084,
          -3.127558302004633,
          -3.3523111788979363,
          -2.858021306221821,
          -1.3368036386957756,
          -2.818105873029551,
          -2.7397548594693375,
          -1.9740108109874572,
          -3.3664229572259727,
          -2.0382107975861454,
          -2.9427519204298136,
          -2.0920382658475796,
          -2.935696157954651,
          -2.7684530982706304,
          -3.471144965160633,
          -7,
          -2.1163939712975304,
          -2.377549077175673,
          -2.9304395947667,
          -2.761301241165817,
          -1.9795700520347994,
          -7,
          -7,
          -2.0085150076314546,
          -2.3918472991671624,
          -3.5515719736742537,
          -1.9788269866677775,
          -3.0884904701823963,
          -3.2615007731982804,
          -2.6334090405056987,
          -0.9972133578212427,
          -1.8423092984741956,
          -1.8011017257894453,
          -2.009759837289156,
          -7,
          -3.821382499747299,
          -2.1153375006452233,
          -2.2116939195924656,
          -2.6817579471116177,
          -1.7493334197103008,
          -1.352208814286594,
          -2.0746336182969043,
          -0.9777575677116924,
          -1.643008639801591,
          -1.8956200972968704,
          -3.1280760126687155,
          -2.683347276399375,
          -3.525563058270067,
          -7,
          -3.239674787646781,
          -2.389106992659985,
          -2.6651586852921563,
          -7,
          -3.526920532638649,
          -3.8198070645907563,
          -1.3576593668250876,
          -3.824971461123693,
          -3.0671328759643477,
          -3.5262746454257536,
          -2.505085346355816,
          -2.9433708381373886,
          -3.131746945100879,
          -2.454463732751138,
          -1.667124678416392,
          -2.4661002702247345,
          -3.5524248457040857,
          -7,
          -2.028534835394969,
          -7,
          -7,
          -7,
          -2.756319081819694,
          -3.0556331242728354,
          -2.882398032133449,
          -2.2119489373443315,
          -2.4632140854837288,
          -2.9258744064015607,
          -2.5721613902974734,
          -3.8198070645907563,
          -2.6339731557896737,
          -3.1242433089466486,
          -3.82013575187043,
          -2.2354765609057865,
          -7,
          -7,
          -1.6808402002950058,
          -2.4333462008411337,
          -2.8244216950097427,
          -7,
          -7,
          -3.237292337567459,
          -7,
          -2.3424665467362784,
          -3.5194998528595387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8154544055975217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.878860596838407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.521308105487026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.738098466092143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.678518379040114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5660837841679958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3422252293607904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.003814298596238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.879404687616423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.225567713439471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.466645228363979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.098661028041393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.433345729907803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318699694558155,
          -7,
          -7,
          -7,
          -7,
          -2.7444885672205115,
          -7,
          -7,
          -4.4335458305766196,
          -7,
          -3.737113094305961,
          -4.5767098257666845,
          -7,
          -4.803648272401481,
          -3.69729910333844,
          -7,
          -4.391182196261369,
          -7,
          -7,
          -7,
          -7,
          -4.624910903184837,
          -3.879611907065851,
          -4.786090962897912,
          -4.078275522086601,
          -7,
          -7,
          -7,
          -7,
          -4.2284859086849425,
          -3.9251315277591385,
          -7,
          -7,
          -4.181586363736856,
          -3.8042076050820413,
          -7,
          -7,
          -7,
          -4.391623077546977,
          -7,
          -7,
          -7,
          -4.005888024713317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1717995610487244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.37675939540488,
          -7,
          -4.055989583385691,
          -4.679545994115586,
          -4.570846373009805,
          -7,
          -7,
          -7,
          -4.312050351180238,
          -7,
          -4.942900541140294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2641800750358305,
          -7,
          -7,
          -3.1354506993455136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5786392099680726,
          -7,
          -3.0419187839286823,
          -7,
          -7,
          -2.835056101720116,
          -3.403120521175818,
          -3.6957880262155345,
          -3.1000257301078626,
          -7,
          -7,
          -3.3140779917792127,
          -2.814913181275074,
          -3.0056706869146232,
          -7,
          -2.5024271199844326,
          -2.3273589343863303,
          -3.455758203104137,
          -1.9240330175654028,
          -1.8670641135389987,
          -2.093421685162235,
          -2.941511432634403,
          -3.5021538928713607,
          -2.3324384599156054,
          -1.9109799468508541,
          -7,
          -7,
          -2.6009728956867484,
          -2.994882517664086,
          -7,
          -7,
          -2.9519259539267946,
          -3.6009926853694614,
          -3.5963850013313894,
          -7,
          -2.0433622780211294,
          -7,
          -1.9182051383496885,
          -7,
          -7,
          -7,
          -3.4423229557455746,
          -2.7551122663950713,
          -2.907411360774586,
          -2.5700119525533682,
          -7,
          -2.598032502044919,
          -7,
          -2.1341771075767664,
          -7,
          -2.3408405498123317,
          -7,
          -7,
          -2.5263998611218113,
          -2.808210972924222,
          -7,
          -7,
          -7,
          -3.118264726089479,
          -2.0907869279492677,
          -2.656098202012832,
          -2.9819091700907925,
          -7,
          -3.400232091171582,
          -7,
          -2.468018941374278,
          -7,
          -2.6047658847038875,
          -7,
          -7,
          -2.6424645202421213,
          -2.130793096387536,
          -7,
          -7,
          -2.6807886115066824,
          -7,
          -7,
          -3.617000341120899,
          -7,
          -7,
          -3.130735706961367,
          -2.4409090820652177,
          -7,
          -7,
          -2.8942369201818225,
          -2.311938040228109,
          -2.159057919756901,
          -2.644684718395879,
          -7,
          -7,
          -3.671242287239694,
          -1.9819359999222645,
          -7,
          -2.453099827095558,
          -3.7141620460988536,
          -2.8656960599160706,
          -2.9224895437705523,
          -3.6832046891531913,
          -2.4683473304121573,
          -7,
          -2.1527250407314686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6766936096248664,
          -7,
          -2.480862816368531,
          -7,
          -2.095169351431755,
          -7,
          -7,
          -2.1083394747888384,
          -1.6215224710973946,
          -2.1889284837608534,
          -2.6528906949522417,
          -2.0965238017937176,
          -7,
          -7,
          -2.052223532809907,
          -7,
          -7,
          -7,
          -2.485011214578573,
          -7,
          -7,
          -3.6804261708581456,
          -2.381501865193101,
          -3.004894321731049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6798138655421604,
          -7,
          -7,
          -2.911956189072687,
          -2.1977882080746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.569958818096594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.325515663363148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.896856772737204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.057628072955568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.095239112010478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2377563480984297,
          -1.8750612633917,
          -1.5622928644564746,
          -7,
          -7,
          -7,
          -3.669967369908504,
          -3.398981066658131,
          -7,
          -2.504470862494419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5813481536324794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590581789320403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.286456469746983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.500099191915723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2671717284030137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.679609571779756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.940516484932567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7477224620355085,
          -7,
          -7,
          -7,
          -7,
          -3.0770043267933502,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.65475393325293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.315928382610187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732466136205421,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0906988268267614,
          -7,
          -7,
          -4.04888829904528,
          -7,
          -7,
          -7,
          -5.101135057332041,
          -7,
          -4.784203481756495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703368770239115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.045929003009548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7259932589247224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979379904969063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.56209054319465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6407975338258964,
          -7,
          -2.721398375521505,
          -2.622214022966295,
          -3.3550682063488506,
          -3.985156921277057,
          -2.2949069106051923,
          -7,
          -7,
          -7,
          -7,
          -4.627048213833253,
          -2.929929560084588,
          -7,
          -7,
          -3.736316807904109,
          -3.1869563354654122,
          -7,
          -7,
          -7,
          -2.986622466527397,
          -7,
          -2.9934362304976116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.794736940288484,
          -3.626498292642929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9922883537970923,
          -7,
          -2.734799829588847,
          -7,
          -7,
          -3.6911699341316035,
          -7,
          -2.6532125137753435,
          -7,
          -2.9237619608287004,
          -7,
          -2.6875289612146345,
          -4.329763875013317,
          -7,
          -7,
          -2.3710678622717363,
          -7,
          -7,
          -7,
          -7,
          -3.656960182742849,
          -1.7442929831226763,
          -3.2810694577020554,
          -2.7032913781186614,
          -7,
          -2.593286067020457,
          -7,
          -7,
          -7,
          -3.2236689666546843,
          -7,
          -7,
          -2.6304278750250236,
          -7,
          -7,
          -7,
          -2.9855387383932825,
          -2.5327543789924976,
          -7,
          -3.0118240955943087,
          -2.624797578960761,
          -7,
          -7,
          -3.7188337183038622,
          -3.652826302561005,
          -7,
          -3.177824971864682,
          -7,
          -7,
          -4.267265619762563,
          -2.596047007545439,
          -7,
          -2.6354837468149124,
          -4.3107570183526045,
          -3.080987046910887,
          -7,
          -4.279393142747864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6344772701607315,
          -2.9474337218870508,
          -7,
          -7,
          -7,
          -7,
          -3.0677835509421225,
          -7,
          -7,
          -7,
          -7,
          -2.711807229041191,
          -7,
          -2.0731070983354316,
          -7,
          -3.003245054813147,
          -7,
          -7,
          -2.582063362911709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.65571454961871,
          -3.4956830676169153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275955981753744,
          -7,
          -7,
          -7,
          -3.442009159140952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.238798562713917,
          -7,
          -7,
          -7,
          -4.468184808873887,
          -4.466882442438441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6926601937121126,
          -7,
          -7,
          -7,
          -4.520837112780868,
          -3.8250754246136784,
          -7,
          -3.6943711725332387,
          -7,
          -7,
          -7,
          -2.95545307898588,
          -3.7401389043873006,
          -7,
          -3.398330697921948,
          -2.8912835950189386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3354209998400677,
          -7,
          -7,
          -7,
          -7,
          -4.471394403692833,
          -7,
          -7,
          -7,
          -3.6419695977020594,
          -7,
          -3.6266482684740105,
          -7,
          -7,
          -3.993201015824255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5305554148925595,
          -3.57935162711144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.35878385060598,
          -3.8783781558498545,
          -7,
          -7,
          -7,
          -3.320834749256372,
          -7,
          -7,
          -4.467578510402737,
          -7,
          -7,
          -4.473326360897987,
          -7,
          -7,
          -3.960489804258006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8721125496264306,
          -3.190800763000039,
          -4.471936804594729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.935614448747319,
          -7,
          -7,
          -7,
          -7,
          -4.478580923742277,
          -7,
          -4.033544376090948,
          -4.142441611701165,
          -7,
          -7,
          -7,
          -2.6281594701971898,
          -7,
          -4.478147870643273,
          -7,
          -3.9951084577447404,
          -7,
          -3.8663316525868,
          -7,
          -7,
          -7,
          -2.718114759110934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.830793899704099,
          -7,
          -7,
          -4.4747697096158685,
          -7,
          -2.990733398972723,
          -4.467460109507264,
          -7,
          -7,
          -4.500318823746387,
          -7,
          -7,
          -7,
          -7,
          -4.612805041299721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9996814005458545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.952313278148243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.011217903207838,
          -7,
          -2.5575072019056577,
          -7,
          -7,
          -3.1318076361798615,
          -7,
          -4.472727202912817,
          -7,
          -4.172237947171315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3480822335510885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8680857845717336,
          -4.466823151065687,
          -7,
          -7,
          -2.3893208102588974,
          -3.4695422107716865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.172690481755848,
          -7,
          -3.3957429438643922,
          -2.290001099692923,
          -7,
          -7,
          -7,
          -4.473530762258132,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.143366864941437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.469571672441998,
          -3.1172136357403977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3775444087229904,
          -7,
          -3.3267070035930515,
          -7,
          -2.3752622911871337,
          -7,
          -7,
          -7,
          -3.2657740008324536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.502071891206661,
          -4.475961589192424,
          -7,
          -7,
          -3.285638559729586,
          -7,
          -7,
          -2.670408845938452,
          -7,
          -7,
          -7,
          -7,
          -4.48274499054841,
          -7,
          -3.63574217852852,
          -4.169292274879936,
          -7,
          -4.168129031408031,
          -2.847079426081227,
          -7,
          -7,
          -7,
          -7,
          -4.004091982792546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6260208317947957,
          -4.499302094133328,
          -2.8029798713080614,
          -7,
          -7,
          -2.307543880874639,
          -4.177954721748205,
          -7,
          -7,
          -7,
          -7,
          -3.223154240460178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.196742527060023,
          -7,
          -7,
          -1.7319155356220892,
          -2.506741604257435,
          -3.6365061321444245,
          -3.5691836446191725,
          -3.2699019227319654,
          -2.115943176939055,
          -3.2098723115450163,
          -3.8298744145878594,
          -2.0389758684485395,
          -4.165896909992507,
          -2.0111629144226377,
          -2.3607432641111994,
          -3.269057396650046,
          -3.2938936063940814,
          -1.820592172832555,
          -3.124839199383788,
          -3.05588235138324,
          -2.037032065055308,
          -2.6109961743112087,
          -2.5019820979257474,
          -4.0922292421628566,
          -2.9975123995683486,
          -2.775664154857271,
          -2.017264452938816,
          -2.948083249753727,
          -3.9381693463903202,
          -3.3612463733898506,
          -3.3262448043225046,
          -7,
          -2.0223401021493177,
          -2.09738265416373,
          -3.0272071821786755,
          -3.2503824644306647,
          -3.152712368637574,
          -3.1670341139296614,
          -3.303993832369804,
          -3.702419765119444,
          -3.2958207519595093,
          -2.550415895149083,
          -3.737124459255048,
          -4.480553062699267,
          -3.6176489379831436,
          -2.8713340715842777,
          -4.060874040047298,
          -7,
          -3.4593601729795065,
          -7,
          -3.851889960987706,
          -3.76766286557764,
          -4.186164961727415,
          -2.645229985477441,
          -3.0294243640580163,
          -4.232119017142043,
          -2.8802703846028392,
          -7,
          -7,
          -7,
          -4.507613030501773,
          -3.4712036694702526,
          -3.6504601725336117,
          -3.996905510695666,
          -3.0594203544061824,
          -2.638548805251015,
          -2.954609777522019,
          -7,
          -7,
          -7,
          -3.172192885318626,
          -2.6287768084463567,
          -3.4329618370306085,
          -3.5195786292939832,
          -3.3517855739035376,
          -7,
          -3.2249860256767717,
          -2.7282981780928632,
          -3.189218551259706,
          -4.184734006620967,
          -4.224222186084649,
          -7,
          -3.0242753677211147,
          -7,
          -7,
          -3.610440956871625,
          -2.941392159191468,
          -7,
          -3.0056517115817107,
          -3.4811558708280352,
          -4.190205594369269,
          -3.9174267307364943,
          -2.8695527265119622,
          -7,
          -7,
          -7,
          -3.2417222253140894,
          -2.957596646369117,
          -2.063572160369598,
          -7,
          -3.179178229209794,
          -2.8793458839494313,
          -2.6507791752811687,
          -2.4660021221677813,
          -2.678749548136708,
          -4.470145775899696,
          -4.467830005178976,
          -2.608936302494925,
          -3.1917891870789785,
          -2.0379458854634454,
          -3.574523189437531,
          -2.8615781193128953,
          -2.374847006058018,
          -2.429247462461082,
          -2.516542481650632,
          -2.0686443960596153,
          -2.4353230387678386,
          -3.026358134008697,
          -2.71968440507334,
          -2.896482704641704,
          -2.513333427374107,
          -4.4733117571189815,
          -3.8678356276470556,
          -7,
          -2.330511565396869,
          -2.9519259539267946,
          -7,
          -7,
          -2.0416720015579313,
          -2.0102063993570085,
          -4.166119157825976,
          -2.6084009867767737,
          -4.170789590446391,
          -2.8292179777928355,
          -7,
          -4.466645228363979,
          -7,
          -3.120231076145884,
          -3.4281495256134615,
          -3.150537154583293,
          -1.8469539732166491,
          -7,
          -2.246957221948706,
          -2.8941702626757158,
          -2.360556678753837,
          -7,
          -2.9996814005458545,
          -3.7697021868101284,
          -3.3331160652665863,
          -1.9848474035913466,
          -2.6910372643636857,
          -7,
          -7,
          -2.8915109091209223,
          -2.295517682332988,
          -2.7422012536996743,
          -2.871602121022312,
          -2.162347835278798,
          -3.9949180901023182,
          -2.1103834814013,
          -4.472785693752219,
          -2.463201503182557,
          -3.772042847107852,
          -3.0101097941798534,
          -2.2425343965748334,
          -7,
          -2.6027492059794075,
          -3.043405945456881,
          -4.168850903709554,
          -3.693345821666275,
          -2.403163078899993,
          -7,
          -4.166755638665237,
          -3.0134955460104056,
          -4.174336062614943,
          -3.6959192528313998,
          -3.45637868721281,
          -3.5232549708237904,
          -2.6255319440395173,
          -3.4771067779956524,
          -2.390439489416729,
          -2.1213727844547217,
          -2.7632442908167834,
          -2.7001502497130585,
          -7,
          -7,
          -2.2373835216281015,
          -2.241552045299787,
          -3.237868864186639,
          -2.3159845211780983,
          -2.357687858215853,
          -2.809488078431905,
          -2.124846323695534,
          -2.3808382244074395,
          -1.6361099826579604,
          -7,
          -2.9840043644446514,
          -7,
          -3.387641905018062,
          -4.17064302283611,
          -4.478321143704149,
          -2.3393760423636945,
          -7,
          -4.167391188074075,
          -7,
          -1.900913067737669,
          -7,
          -3.1933150366306564,
          -3.8661543714405875,
          -3.189578957286946,
          -3.4726687041948,
          -3.7700858001025916,
          -2.925577273524723,
          -2.3379304619107932,
          -2.572983512136525,
          -3.62914737036461,
          -7,
          -2.5711991391735527,
          -7,
          -7,
          -7,
          -4.169424598808618,
          -3.390405156480081,
          -7,
          -2.81060728301842,
          -2.295716386359503,
          -2.4603784007408818,
          -3.9916247345340055,
          -7,
          -2.8318697742805017,
          -3.8653112963195166,
          -7,
          -2.536404010604367,
          -4.466837974667767,
          -7,
          -3.0866302905453735,
          -2.3129627539223483,
          -3.5231971111804987,
          -7,
          -7,
          -4.471144965160633,
          -7,
          -2.2895647772430805,
          -4.466763851597166,
          -3.6253271526248803,
          -7,
          -4.640431743683348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639327085896673,
          -7,
          -7,
          -1.923894846387566,
          -7,
          -7,
          -7,
          -3.9774949690730366,
          -3.3774792785745746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2558453684520914,
          -7,
          -7,
          -2.7315396318493663,
          -2.4355155492092426,
          -7,
          -7,
          -7,
          -7,
          -4.3395011289081085,
          -4.1641247417062335,
          -3.520614521878236,
          -4.3395905522680405,
          -7,
          -7,
          -4.340096937139528,
          -4.3415433318876095,
          -4.338346910071675,
          -3.862926062941731,
          -7,
          -7,
          -4.338755217322839,
          -3.3662227753916363,
          -7,
          -4.341028729729668,
          -3.31929447555578,
          -7,
          -7,
          -7,
          -4.1627833902457,
          -7,
          -4.33909352266184,
          -2.499891724766401,
          -2.295671153476217,
          -4.037983949447127,
          -7,
          -3.8044996528482944,
          -4.6407000199084365,
          -7,
          -7,
          -2.9235229873366637,
          -4.643728957803573,
          -4.648769713584033,
          -7,
          -7,
          -7,
          -2.8933757439385097,
          -7,
          -7,
          -7,
          -7,
          -4.055340099544181,
          -3.9448477208632444,
          -7,
          -4.644753609506606,
          -3.6985644735424197,
          -4.338605881147866,
          -2.833714719570962,
          -7,
          -7,
          -7,
          -7,
          -3.5256726091346264,
          -3.6850148190800835,
          -3.1958107295133327,
          -3.796197556622054,
          -3.8003537053355636,
          -4.641216233580327,
          -4.642948997739193,
          -4.644527211951955,
          -2.339104758662789,
          -4.165798096658618,
          -4.1629027893892045,
          -7,
          -7,
          -7,
          -3.8616638236770844,
          -4.640103625305096,
          -4.639735439967236,
          -7,
          -4.357572784051678,
          -7,
          -7,
          -7,
          -2.708302294449341,
          -7,
          -7,
          -4.640948276144205,
          -7,
          -3.4402496657082047,
          -7,
          -4.639615961441463,
          -3.051142623884847,
          -4.641920074413117,
          -2.6734658159009137,
          -3.0835026198302673,
          -4.039116555285152,
          -4.037934206072325,
          -3.642612887088148,
          -4.170291058625393,
          -4.639854885632376,
          -3.1503842538862474,
          -2.5045958370768617,
          -7,
          -4.040691325767884,
          -7,
          -2.790961787868363,
          -7,
          -4.045039225299072,
          -2.9234395410907656,
          -4.643195972076743,
          -7,
          -3.5264486326524866,
          -3.5998334695972587,
          -7,
          -7,
          -3.0670046917014813,
          -7,
          -4.639267294545039,
          -7,
          -4.16220583117701,
          -4.162146039825377,
          -3.0486405033272277,
          -3.361453955329276,
          -4.663503045519445,
          -4.6448716831351105,
          -7,
          -7,
          -7,
          -7,
          -3.2449892250514107,
          -3.3397069170049827,
          -3.9483249241899148,
          -7,
          -7,
          -4.639974298454951,
          -3.1188942981663943,
          -7,
          -7,
          -7,
          -7,
          -4.639476528271741,
          -7,
          -4.34523646004688,
          -7,
          -4.642504089690639,
          -4.641434447096437,
          -7,
          -7,
          -7,
          -1.5125997457466591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.381037405021494,
          -7,
          -3.2413059789193195,
          -7,
          -7,
          -1.3300330586491649,
          -3.2779578252250885,
          -2.6371923965070563,
          -3.074193540963896,
          -2.6552077674159724,
          -2.740402169016284,
          -4.3469589986735295,
          -4.64221712947388,
          -4.641126932803509,
          -7,
          -7,
          -4.6404019249815684,
          -4.651200454486927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3792577957042833,
          -7,
          -3.469232742506612,
          -4.640113571929359,
          -7,
          -4.639366942225054,
          -7,
          -4.164650215934297,
          -7,
          -7,
          -7,
          -2.401140510148946,
          -3.1093899325453607,
          -4.639257328519408,
          -3.940446753156396,
          -3.639396832071146,
          -4.1621061743506,
          -4.639386869017684,
          -7,
          -7,
          -7,
          -2.9530393949118094,
          -3.1536968735859676,
          -3.2060811050336295,
          -3.116115307828765,
          -7,
          -7,
          -4.639665748155174,
          -3.5298546483723983,
          -4.639317121243033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.63956616901964,
          -7,
          -7,
          -7,
          -1.4821003029929867,
          -7,
          -7,
          -7,
          -7,
          -3.7370036914610756,
          -3.463992472317439,
          -7,
          -7,
          -4.64812572155865,
          -4.639964348640366,
          -3.29909022733675,
          -2.6131918182858205,
          -7,
          -4.639426719860243,
          -4.639834980302741,
          -3.542298632022125,
          -2.8941775538387726,
          -2.460725807287314,
          -7,
          -2.0509222543479053,
          -7,
          -7,
          -4.639884741916304,
          -3.635419767747034,
          -4.044020099261835,
          -3.7439113406021054,
          -3.2362561929560214,
          -7,
          -7,
          -7,
          -7,
          -4.163598630910796,
          -3.212700441984192,
          -4.341563112106319,
          -7,
          -7,
          -4.641345191182597,
          -7,
          -4.03769535853163,
          -4.640987983975901,
          -4.33912336048452,
          -2.5437837891976143,
          -4.645677661583387,
          -7,
          -3.5992576664691955,
          -2.1656723176143293,
          -7,
          -7,
          -3.514715948325943,
          -7,
          -7,
          -4.6427216572370735,
          -3.177277706914103,
          -2.005313299120557,
          -2.677567282066718,
          -7,
          -7,
          -7,
          -4.641107085692552,
          -2.0291321571086742,
          -4.045499008437883,
          -7,
          -7,
          -7,
          -3.8710277796645003,
          -3.8661395947446504,
          -7,
          -7,
          -3.9432570234747906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165748681559414,
          -4.6402726869436295,
          -3.4399805351710797,
          -4.059487684274447,
          -2.5788475046876065,
          -7,
          -2.749697186414885,
          -3.2508079879608007,
          -4.647744731469901,
          -7,
          -4.166025333724231,
          -7,
          -3.10179615508807,
          -4.061622092243773,
          -4.3466560922695425,
          -7,
          -7,
          -7,
          -3.439707604467424,
          -7,
          -7,
          -7,
          -3.870413660211742,
          -4.640193136723481,
          -2.0541999775313315,
          -7,
          -7,
          -1.69422218095535,
          -2.0066645422071834,
          -2.6631240515498513,
          -3.195632829081318,
          -3.0260749454085736,
          -2.006763212270037,
          -2.3715024827552478,
          -2.6599289558040393,
          -1.7090164350751587,
          -7,
          -2.0606081092457327,
          -2.8315095089267874,
          -2.5355059169532805,
          -2.6412618772743763,
          -1.3603581917080152,
          -3.3966665291438467,
          -1.8772018661195997,
          -1.2598672111551346,
          -2.9933382398649977,
          -2.5755986777665982,
          -3.564682969118945,
          -2.8219038108655123,
          -2.8355277555128513,
          -1.7341710790487073,
          -2.5436806026151135,
          -3.8066547239918607,
          -2.672898626627781,
          -3.008892036344074,
          -4.351138958581849,
          -1.5688887641010931,
          -2.0152757593060646,
          -2.8454883017723622,
          -2.760020172619173,
          -2.6247079736616548,
          -2.572686824116956,
          -3.191329177652473,
          -3.245663880400659,
          -2.4764699889823,
          -2.289479082290999,
          -3.3398322343881826,
          -3.6943906795506427,
          -2.932608678125612,
          -1.4715151312274832,
          -1.9824710381122468,
          -4.343270700650801,
          -3.180723073467645,
          -7,
          -2.464373428003822,
          -3.1751514649813335,
          -3.4769668114456653,
          -2.6676903371439664,
          -2.801708531564807,
          -3.2868245882246527,
          -7,
          -3.0850853371959324,
          -4.174195533840527,
          -7,
          -4.366292182210539,
          -2.9165280855391633,
          -3.211473343267295,
          -4.644409044620594,
          -1.814272014037218,
          -1.9117170735037696,
          -3.3589812256253495,
          -4.6407000199084365,
          -4.355058619168376,
          -4.340027468282661,
          -1.5121870816038474,
          -7,
          -3.1526073658091818,
          -2.7199478493318203,
          -3.104669696391788,
          -3.862181089664136,
          -2.9012857317920555,
          -3.3300239510638483,
          -3.5154345883966154,
          -4.050234709397242,
          -3.600264821501586,
          -3.5565529830285247,
          -2.385037929389288,
          -3.264968855694732,
          -4.340582908247528,
          -2.2308324786210756,
          -1.3049624593163323,
          -4.647578554212455,
          -2.517130143653564,
          -4.649373807143351,
          -4.355039444172483,
          -2.3865590291510017,
          -3.160857720233285,
          -3.4951774803204194,
          -7,
          -7,
          -3.944383957640844,
          -2.455685333041747,
          -1.1276063051325063,
          -3.6408688495876156,
          -2.5159719117897525,
          -2.484528800490016,
          -1.9682891363042425,
          -1.750996697610618,
          -2.1638683451957634,
          -3.600160741295671,
          -3.9411435675933406,
          -1.7948926855002934,
          -3.16467994075426,
          -1.1749632431151515,
          -2.4004738457372032,
          -2.460561571363903,
          -2.8427340189482697,
          -0.9602761381695825,
          -2.2912734051814825,
          -1.8962867793220939,
          -2.9571868900861062,
          -2.880004941816317,
          -1.3363544940555752,
          -3.1018746733792106,
          -2.4302048853621963,
          -3.798670372205142,
          -2.9002081810665623,
          -4.639854885632376,
          -1.9073510438211967,
          -3.6009926853694614,
          -3.794736940288484,
          -2.0416720015579313,
          -7,
          -1.3033865345896802,
          -3.0827554591981556,
          -2.273419146976954,
          -3.3202847949567196,
          -2.8435150245077465,
          -3.225865712912683,
          -7,
          -3.2085906344388353,
          -2.4090493193344034,
          -4.340493689006248,
          -3.1117763079825163,
          -2.604954897808633,
          -3.639695617444053,
          -1.8233301165436868,
          -2.398574855225215,
          -2.301640293264161,
          -4.639386869017684,
          -2.7703020479535585,
          -2.977186616645736,
          -2.646217420011067,
          -1.822845781490173,
          -3.5280955685137827,
          -3.2249810506270045,
          -3.071941686368387,
          -2.908577451460015,
          -1.6795459941155866,
          -3.213920924061928,
          -3.322278378399326,
          -1.6462582551354332,
          -3.8648175104719082,
          -0.9296970878207105,
          -2.1648933592542074,
          -2.4438542406599173,
          -2.4662902598594676,
          -2.980250452708863,
          -2.6830386173544434,
          -4.163449615841143,
          -1.782032802306157,
          -2.6704235149632467,
          -3.5274117571054364,
          -2.654087185980357,
          -2.4034016775512366,
          -3.6850148190800835,
          -3.685781534669542,
          -2.0111118516402637,
          -3.2646309260257307,
          -3.9454488887903163,
          -2.389094093401577,
          -3.5674772960726626,
          -2.9146642062585957,
          -3.231165603402702,
          -1.6769815571269187,
          -1.8226585789992689,
          -2.5482975085635067,
          -2.5574974999278877,
          -4.1624050762518,
          -4.338536173355659,
          -1.488432885906485,
          -2.459983818868003,
          -2.8266528123767847,
          -2.1511119339812774,
          -1.127118845348021,
          -1.6629808743505723,
          -1.6226079582053459,
          -1.887367994404441,
          -2.133807926868157,
          -3.4941446512653913,
          -3.00156655355653,
          -3.8621512641362776,
          -7,
          -2.951654652291387,
          -3.6056869554272506,
          -2.562585506193841,
          -7,
          -2.996302673373406,
          -4.338297090232691,
          -1.3084020041048854,
          -3.941083884430365,
          -3.320788989656518,
          -4.339461379281565,
          -3.7376596955178236,
          -3.412865548511456,
          -3.8628466599829387,
          -2.9599154643938257,
          -2.22903583515332,
          -2.727177518268621,
          -3.7414076861413017,
          -4.163449615841143,
          -2.715029511589328,
          -4.338346910071675,
          -4.639376905735657,
          -7,
          -3.687578501451031,
          -2.7535930062006386,
          -3.9430491110084067,
          -2.0655907518109906,
          -2.605876295339839,
          -3.2024319432441346,
          -3.2786840287587213,
          -7,
          -1.7631524010078345,
          -3.7947269872815297,
          -7,
          -1.932557840382941,
          -4.639526330971463,
          -7,
          -2.736600530962847,
          -2.610113465677473,
          -4.044716107722188,
          -4.162185901641091,
          -7,
          -3.1947323263866414,
          -7,
          -2.612830312780314,
          -7,
          -4.64205872539365,
          -4.639277260341978,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.158818812869884,
          -7,
          -7,
          -7,
          -3.7697612262993307,
          -3.127678960206914,
          -7,
          -7,
          -7,
          -7,
          -4.439174739843469,
          -2.260309246403442,
          -7,
          -7,
          -3.8429834701222174,
          -2.6257078337736153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4964572283200215,
          -7,
          -7,
          -7,
          -7,
          -4.742725131304698,
          -7,
          -7,
          -7,
          -4.450233707532753,
          -7,
          -3.3648465072411535,
          -7,
          -7,
          -3.4631461367263494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4073290897914963,
          -3.185629314451658,
          -4.74074943414471,
          -7,
          -4.447344117675954,
          -7,
          -4.740575836289971,
          -4.740678425227455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9013652777557017,
          -4.740181037453737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.154393537956997,
          -7,
          -4.13946977558943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7434470461953,
          -4.741789566577141,
          -7,
          -7,
          -4.743007762670625,
          -7,
          -2.127707357576145,
          -4.743015610916935,
          -4.740717876059285,
          -4.7401731378151295,
          -7,
          -7,
          -4.439553732943139,
          -7,
          -4.740457434318508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.744222551279631,
          -7,
          -7,
          -7,
          -7,
          -4.744371227331861,
          -7,
          -7,
          -4.743015610916935,
          -4.742190769699096,
          -2.719561449945234,
          -4.440019125975593,
          -7,
          -7,
          -7,
          -4.44554193436792,
          -7,
          -3.7640864237491396,
          -2.683487604346112,
          -7,
          -7,
          -7,
          -3.033658596404163,
          -7,
          -4.047321605082491,
          -7,
          -7,
          -7,
          -4.042134300345594,
          -7,
          -7,
          -7,
          -2.616455053232196,
          -7,
          -4.7400862323055035,
          -7,
          -7,
          -7,
          -3.6608873599424494,
          -4.156776233418996,
          -7,
          -3.465500254778325,
          -7,
          -4.086324231307385,
          -7,
          -7,
          -7,
          -3.3778903218424934,
          -4.144418518602069,
          -7,
          -7,
          -7,
          -3.7099936168613983,
          -7,
          -7,
          -7,
          -4.742497322199888,
          -7,
          -7,
          -4.4446146287028,
          -7,
          -4.742654444714546,
          -7,
          -7,
          -7,
          -7,
          -2.452979280821311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7975445143617264,
          -7,
          -2.9340001857393228,
          -7,
          -4.444918753773256,
          -2.4575980750387347,
          -4.439719438480728,
          -4.0444064726812945,
          -4.743133317595437,
          -4.044712189670485,
          -3.7031271673456327,
          -3.8438320895564417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.307717560224521,
          -7,
          -4.444068228441408,
          -7,
          -7,
          -7,
          -7,
          -3.83890416082117,
          -4.740283719681879,
          -7,
          -7,
          -3.013342904345347,
          -4.139768925279731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4441072798376,
          -3.231851723743416,
          -2.650583755051115,
          -7,
          -7,
          -7,
          -3.6297388416996674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.379431142858117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.439908738851784,
          -7,
          -4.44070447487986,
          -4.048092051812373,
          -7,
          -3.414851850003344,
          -4.273626206272959,
          -7,
          -7,
          -7,
          -3.6074550232146683,
          -4.141300802092444,
          -2.17340020840208,
          -7,
          -1.9422270456024011,
          -7,
          -7,
          -7,
          -3.9920377723523495,
          -4.745543201998024,
          -4.144231618090547,
          -4.050951735479182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.613093956327272,
          -7,
          -7,
          -4.741340724046487,
          -2.0453183375247277,
          -7,
          -7,
          -3.577305059024824,
          -7,
          -7,
          -7,
          -7,
          -3.5444866265309787,
          -4.743172546066673,
          -7,
          -7,
          -7,
          -7,
          -1.708462991770448,
          -7,
          -4.740402169016284,
          -7,
          -7,
          -4.7480406520901814,
          -4.744152108012428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4819951270342555,
          -7,
          -2.5174078045308987,
          -4.7419233421368165,
          -3.969470273425397,
          -2.9889126149271394,
          -4.445775396743086,
          -7,
          -7,
          -7,
          -4.444809605172975,
          -3.9144111638066694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.911872597102229,
          -7,
          -7,
          -2.2036635512088645,
          -2.553126141145082,
          -2.432432786244021,
          -3.6291742729079046,
          -1.8176997483689172,
          -3.2629254693318317,
          -1.4376211862677986,
          -1.5460343682984186,
          -1.4005481065017522,
          -4.740354793159152,
          -1.8977493894870296,
          -1.9759362742204192,
          -1.4606571321955282,
          -1.575071049300453,
          -1.791597655058112,
          -2.322088535059173,
          -1.6892501029585778,
          -1.926156913205765,
          -1.395068880768949,
          -2.1599163201638714,
          -2.379354335648669,
          -1.9010202559024967,
          -2.0072213000164245,
          -1.4238031121981767,
          -1.6174777148654325,
          -3.1665875547656306,
          -1.704064865625262,
          -1.3733789136471066,
          -3.5460102648496363,
          -1.5084400205733615,
          -1.5682914132996109,
          -1.5651070109504064,
          -2.024550799858992,
          -1.597781449602805,
          -1.7036282801644569,
          -2.1187055223535607,
          -2.3130975003830856,
          -2.337916965537088,
          -1.3758611680711457,
          -3.1329065742417876,
          -7,
          -2.683539951532966,
          -2.5355099562291943,
          -3.007986327869048,
          -4.141990345122414,
          -2.0826984719813044,
          -4.7461981289915505,
          -2.4404704155029875,
          -4.085190646885893,
          -4.149165207512734,
          -2.9586947598580036,
          -2.8759829615659807,
          -3.6627723563377486,
          -7,
          -3.260056925723567,
          -7,
          -7,
          -3.0057748851496804,
          -2.9471978777896175,
          -4.056889612666252,
          -4.142060804897724,
          -2.664039261993672,
          -2.052593350948046,
          -2.1881025299472006,
          -7,
          -7,
          -7,
          -2.5141733450977126,
          -4.7741810787947205,
          -3.445344690578751,
          -3.1154551806365287,
          -2.7982361763679355,
          -4.439963935920905,
          -3.7315594645200223,
          -2.978750981332984,
          -3.1108140939166935,
          -3.494958099302044,
          -3.471093592379599,
          -3.184870669153574,
          -2.6856029843554237,
          -3.296476062321468,
          -7,
          -2.7283675405386587,
          -2.3062498686537425,
          -3.9684595987605533,
          -2.932264542286491,
          -4.447072715118013,
          -3.6071485345061802,
          -3.513654043515571,
          -2.6499254252092936,
          -3.7875391867038415,
          -7,
          -7,
          -3.8982000133541193,
          -1.3590553766801345,
          -1.282364597847086,
          -4.74149826548613,
          -2.838032418536004,
          -2.695741910151855,
          -2.272448705188279,
          -1.954049996921635,
          -2.2249634182287825,
          -4.441011349520877,
          -7,
          -2.017586859089031,
          -2.942236465326841,
          -1.573530615642056,
          -2.780966592974337,
          -2.57831729805555,
          -3.0050732130636044,
          -2.2035009923023567,
          -2.45178643552429,
          -1.9672039793497955,
          -2.486794348864476,
          -2.1261290246570215,
          -2.389219108536737,
          -3.0824575360795645,
          -2.5090226886261187,
          -7,
          -3.5656589539252037,
          -7,
          -2.0378793560502615,
          -3.5963850013313894,
          -3.626498292642929,
          -2.0102063993570085,
          -1.3033865345896802,
          -7,
          -3.6263403673750423,
          -2.513431922845268,
          -4.441922825310942,
          -2.808498125175687,
          -4.1396193761920275,
          -7,
          -4.263888446167958,
          -2.5106973033953603,
          -3.3798176807586167,
          -2.929851040018942,
          -2.5282774962218273,
          -7,
          -1.7285760749719628,
          -2.3889769626014203,
          -1.9008031495820312,
          -7,
          -2.8472367506682015,
          -3.699782558847431,
          -2.882703835811221,
          -1.5223035926343103,
          -3.279635481413465,
          -4.138918170381583,
          -4.741348602475895,
          -1.7587889737912472,
          -1.8210378678511736,
          -2.851971392475668,
          -3.131141189675311,
          -1.899887931896617,
          -3.897909722656368,
          -1.4013941251332214,
          -3.487931421189317,
          -1.993451700681844,
          -3.1509216740592922,
          -2.1443040992652644,
          -2.1080765740961467,
          -4.741151598851785,
          -1.7260996890413132,
          -2.9050289625668273,
          -3.8967387461717196,
          -3.441530182363339,
          -1.6458109443377589,
          -7,
          -4.138705220999562,
          -2.372770423675649,
          -3.5985403911521976,
          -4.74423820378745,
          -2.7354392032514814,
          -3.4033779317228596,
          -3.613396279293765,
          -3.165572301835224,
          -1.9733492103121666,
          -1.7525711876624266,
          -2.5166165450160767,
          -2.4859850346729226,
          -7,
          -4.74033900005824,
          -1.700399862860919,
          -1.9727949511256364,
          -2.9550565426273643,
          -1.7280396161849396,
          -1.4532159285446646,
          -2.4982170716858327,
          -1.7763343948443986,
          -1.9925469236750626,
          -2.065400258114976,
          -4.44004277670934,
          -3.111199971250849,
          -4.439940280893153,
          -3.9622272313500853,
          -3.964660260021084,
          -3.8432483550956227,
          -1.588261806023172,
          -7,
          -3.7867829601784644,
          -7,
          -1.3981917992387312,
          -7,
          -3.3627965209590185,
          -2.836735424393361,
          -3.3792976336001965,
          -3.345232537394635,
          -3.6274052501690583,
          -2.6002861516315914,
          -2.0474098222772072,
          -2.652883029692004,
          -4.744347755549232,
          -4.44010583903666,
          -2.1371799788235775,
          -7,
          -4.7401731378151295,
          -7,
          -3.2504042610130406,
          -3.310158127614801,
          -4.265179584364818,
          -2.622632832548614,
          -2.1065490989982276,
          -3.019720368759754,
          -3.786972140295542,
          -4.740149438037123,
          -2.441131622069119,
          -4.041590046889366,
          -4.740188936948656,
          -2.0534080878779726,
          -3.962061384187691,
          -7,
          -2.829853802037627,
          -2.088254758332001,
          -3.599766142887816,
          -7,
          -4.740188936948656,
          -4.2654389233076575,
          -7,
          -2.0804389076211174,
          -3.785883227526406,
          -4.74230083908448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.356905034810079,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517565353082339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426478728724244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8500945943867007,
          -7,
          -7,
          -4.192623200012946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2819419334408244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304748959487096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097673699449098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.543484456978157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.265643141942135,
          -7,
          -4.426364845287927,
          -7,
          -7,
          -7,
          -4.4312591991966865,
          -7,
          -7,
          -7,
          -4.654975063241963,
          -4.801698628227434,
          -7,
          -7,
          -4.3861242584003115,
          -7,
          -3.512195050270289,
          -7,
          -7,
          -7,
          -3.8629657589777624,
          -4.306910879548736,
          -7,
          -7,
          -4.6239105687622875,
          -7,
          -7,
          -4.703196769016287,
          -4.218797998111738,
          -4.579554960400999,
          -7,
          -4.173361116894232,
          -3.7843319480221482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.999739345106568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.561852397446954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.766524381029522,
          -3.0292484623758416,
          -7,
          -3.0149403497929366,
          -2.119475840906798,
          -7,
          -3.9842572017054163,
          -2.509650479546582,
          -7,
          -7,
          -3.469822015978163,
          -7,
          -3.8485893458691725,
          -2.4403842548328845,
          -7,
          -3.269045709657623,
          -2.653775123528,
          -2.8796692056320534,
          -2.632963168167261,
          -7,
          -2.7701152947871015,
          -2.681693392004564,
          -2.9020028913507296,
          -7,
          -7,
          -2.4683473304121573,
          -7,
          -3.3451122255191814,
          -7,
          -7,
          -4.166119157825976,
          -3.0827554591981556,
          -3.6263403673750423,
          -7,
          -3.3400473176613934,
          -7,
          -2.791690649020118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2119210843085093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9804578922761,
          -4.028286509426278,
          -7,
          -7,
          -7,
          -7,
          -3.1960379407345236,
          -7,
          -7,
          -2.8087895180567206,
          -7,
          -3.5892070756999934,
          -2.6857417386022635,
          -3.0742677425533578,
          -7,
          -7,
          -3.9170851906405675,
          -7,
          -3.398200507219428,
          -2.828015064223977,
          -7,
          -2.60959440922522,
          -2.7363965022766426,
          -7,
          -7,
          -3.2847690133490195,
          -7,
          -7,
          -3.709778601848225,
          -7,
          -7,
          -7,
          -3.239716468579862,
          -3.048247531803974,
          -7,
          -7,
          -7,
          -7,
          -3.2663728312246034,
          -7,
          -2.3283796034387376,
          -2.9324737646771535,
          -3.6111920608684343,
          -2.2241999721012724,
          -3.4738760792691425,
          -3.57978359661681,
          -3.7507397512353506,
          -7,
          -2.858537197569639,
          -7,
          -7,
          -7,
          -7,
          -2.9612628523150515,
          -7,
          -1.9731278535996988,
          -7,
          -3.6697816152085365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.530199698203082,
          -3.0829647937777516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9540494467635945,
          -7,
          -7,
          -7,
          -7,
          -3.022222104507706,
          -7,
          -7,
          -3.576341350205793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.268343913951065,
          -7,
          -7,
          -7,
          -2.526339277389844,
          -7,
          -7,
          -2.8581360017148696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.337459261290656,
          -7,
          -3.2790278056227207,
          -7,
          -7,
          -7,
          -7,
          -3.7992026563005252,
          -7,
          -3.40840957846843,
          -7,
          -7,
          -7,
          -2.9970367108825267,
          -7,
          -7,
          -2.7646243978509815,
          -3.610110785065819,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3852968368328855,
          -3.05595140532915,
          -7,
          -2.7518562395924007,
          -7,
          -2.7902851640332416,
          -3.3328422669943514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9309490311675233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.625723909525756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.415974411376566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.464762696435282,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.041787318971752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0877491606340604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3163897510731957,
          -7,
          -7,
          -7,
          -3.797782877883888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3571722577230334,
          -7,
          -7,
          -7,
          -4.0475085055940125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5275654607077214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1699681739968923,
          -7,
          -7,
          -7,
          -4.142045148157744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3820797181144515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.058378568358843,
          -7,
          -7,
          -3.7343374736148895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9126471062183175,
          -7,
          -3.443888546777372,
          -7,
          -7,
          -7,
          -7,
          -3.077912702949456,
          -7,
          -7,
          -7,
          -3.3005954838899636,
          -3.3740147402919116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.155463573759529,
          -7,
          -2.861733491532661,
          -7,
          -3.116939646550756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.52050224789375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8354368948018585,
          -7,
          -3.7455041870869885,
          -7,
          -7,
          -7,
          -3.0853619436861295,
          -7,
          -7,
          -3.230959555748569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.66661156841903,
          -7,
          -7,
          -7,
          -3.326253910842292,
          -7,
          -7,
          -3.8841153620116686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3807537708039,
          -3.4650852875574327,
          -7,
          -3.928655258893143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388278863459639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8026146430623937,
          -7,
          -7,
          -3.6142056361665484,
          -3.4768316285122607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6364878963533656,
          -7,
          -7,
          -3.4617385679564108,
          -4.160273399926485,
          -4.312156191475623,
          -7,
          -4.45901533230183,
          -3.30362797638389,
          -2.8870543780509568,
          -7,
          -3.4060056926824207,
          -7,
          -3.0623768380354477,
          -3.9948118872762843,
          -7,
          -7,
          -2.163118526130661,
          -4.019614715691417,
          -4.421817731364133,
          -2.668739918089131,
          -4.073535065058784,
          -4.628940389245031,
          -7,
          -4.5060989599284405,
          -3.3697722885969625,
          -3.4559793306455244,
          -3.6618126855372615,
          -7,
          -4.644911033878752,
          -4.002065218826583,
          -7,
          -3.465209297290123,
          -3.1558030208239303,
          -7,
          -7,
          -3.531018832208792,
          -3.212826586101233,
          -7,
          -7,
          -4.084486907735044,
          -4.121165747534411,
          -7,
          -3.492061604512599,
          -4.292632592082427,
          -3.6447536095066053,
          -7,
          -7,
          -7,
          -7,
          -4.566743806304003,
          -7,
          -7,
          -2.9595819353635555,
          -3.7200214102529,
          -3.5439439424829065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4592919449918176,
          -7,
          -7,
          -4.390104563825434,
          -3.5734830426589057,
          -4.576061906444384,
          -7,
          -7,
          -7,
          -2.7216274458796317,
          -7,
          -4.95172112186057,
          -7,
          -3.4267064060463146,
          -7,
          -7,
          -7,
          -4.319189369204891,
          -7,
          -7,
          -7,
          -4.2122941666623515,
          -7,
          -7,
          -4.6255593728759745,
          -2.3755443405179504,
          -7,
          -4.050486093182022,
          -7,
          -7,
          -7,
          -3.6098077693287025,
          -2.594760752586463,
          -7,
          -7,
          -2.502597799680834,
          -3.439679990515626,
          -1.9665580317819267,
          -7,
          -2.714469471659548,
          -2.158894389873804,
          -2.6805369487066266,
          -2.5352941200427703,
          -2.305351369446624,
          -7,
          -7,
          -2.4220423867575565,
          -2.3064250275506875,
          -2.170608552457273,
          -3.163310488963686,
          -2.1118703436839716,
          -0.973074438129254,
          -2.1538734696319675,
          -1.882796675552491,
          -2.1584567298046142,
          -2.0148679975258963,
          -2.309138605990394,
          -2.3712438324856118,
          -2.1108956592248314,
          -1.8598263408763092,
          -7,
          -3.074816440645175,
          -7,
          -2.142460113467407,
          -2.0433622780211294,
          -7,
          -2.6084009867767737,
          -2.273419146976954,
          -2.513431922845268,
          -3.3400473176613934,
          -7,
          -7,
          -1.9439488128550355,
          -7,
          -7,
          -7,
          -2.70395974394769,
          -3.374381698050882,
          -2.636320699245659,
          -1.8972503938239382,
          -7,
          -2.0026106777183132,
          -2.0293837776852097,
          -1.788701432716952,
          -7,
          -1.0493942427910425,
          -3.059752694209299,
          -3.1815577738627865,
          -2.432148600147286,
          -2.206646006705649,
          -7,
          -7,
          -3.753199914199416,
          -1.8823063810686513,
          -2.211560237762678,
          -2.3497630439879496,
          -1.9231363167215678,
          -3.401745082237063,
          -2.327539647757217,
          -7,
          -1.730479455562148,
          -2.6898414091375047,
          -2.5688719317338045,
          -3.0598578120802955,
          -7,
          -1.8038489470153505,
          -1.6994613803815402,
          -7,
          -2.918554530550274,
          -2.04484846960872,
          -7,
          -7,
          -3.2962994685709477,
          -7,
          -1.9106577493156374,
          -2.9540011676815703,
          -2.7635777244666455,
          -2.7659478138932125,
          -2.680335513414563,
          -1.9675722866939394,
          -1.8922303833643714,
          -1.8755435449314382,
          -1.9410142437055697,
          -2.8583366459697217,
          -7,
          -2.504343409967634,
          -1.8651341001586887,
          -2.757965097861435,
          -2.015173402914656,
          -2.375780317960666,
          -2.1868487502832425,
          -1.8035465276645812,
          -2.4699671366981004,
          -1.4299155111056692,
          -7,
          -1.0730769651536745,
          -7,
          -7,
          -3.397070549959409,
          -7,
          -2.779776808670381,
          -7,
          -3.356790460351716,
          -7,
          -1.801011879135689,
          -3.3475251599986895,
          -1.3021517211655111,
          -3.354876422516234,
          -3.060697840353612,
          -2.5643278286571864,
          -2.888179493918325,
          -2.537099170363197,
          -2.1711411510283822,
          -1.798025500812446,
          -7,
          -7,
          -1.765335585862254,
          -7,
          -7,
          -7,
          -2.6819644589946834,
          -3.073901558314207,
          -3.3845326154942486,
          -2.36815401218214,
          -2.3696374616388685,
          -3.383366482755039,
          -3.3613500243522663,
          -7,
          -2.775974331129369,
          -2.6432552250247716,
          -7,
          -2.5331926071304895,
          -3.3354579006893843,
          -7,
          -2.5335178620169674,
          -2.2479732663618064,
          -3.4631461367263494,
          -7,
          -7,
          -7,
          -7,
          -2.1689909186377423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.568201724066995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0588528961494434,
          -7,
          -7,
          -7,
          -3.631139250256811,
          -3.3549723250189762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.435578953471198,
          -2.9122220565324155,
          -2.598790506763115,
          -7,
          -3.3873381488811636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.716146494044897,
          -2.7075701760979367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8636004025933444,
          -7,
          -7,
          -7,
          -2.6085260335771943,
          -2.6627578316815743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7672383453307243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4354860207578644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.622058519778418,
          -7,
          -2.4463818122224423,
          -7,
          -2.3394514413064407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7693773260761385,
          -2.7019994748896368,
          -7,
          -2.8709888137605755,
          -7,
          -3.4800723044565447,
          -2.8715729355458786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3191060593097763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9444826721501685,
          -2.584331224367531,
          -7,
          -7,
          -7,
          -2.962369335670021,
          -7,
          -7,
          -7,
          -7,
          -3.2902572693945182,
          -7,
          -7,
          -7,
          -2.8615344108590377,
          -3.079543007402906,
          -7,
          -3.0680621134957438,
          -7,
          -7,
          -7,
          -7,
          -3.69680102095226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7067177823367587,
          -2.467608105583633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.21923513401367,
          -2.4448251995097476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -7,
          -3.383599959933904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1398790864012365,
          -7,
          -2.005930867219212,
          -2.7209857441537393,
          -7,
          -3.428758239517558,
          -7,
          -7,
          -7,
          -2.358886204405869,
          -2.622214022966295,
          -2.669316880566112,
          -7,
          -2.798190099822149,
          -7,
          -7,
          -7,
          -7,
          -2.8862780102586014,
          -7,
          -7,
          -2.2747349848727385,
          -2.92272545799326,
          -7,
          -3.09968064110925,
          -2.523095838252568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.666892211066536,
          -7,
          -3.0051805125037805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.583198773968623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9385197251764916,
          -3.0073209529227447,
          -2.5368108659915416,
          -4.849084503234671,
          -7,
          -2.1409268419924303,
          -2.1335389083702174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.678518379040114,
          -7,
          -7,
          -7,
          -2.60422605308447,
          -7,
          -7,
          -2.44870631990508,
          -3.5185139398778875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9395192526186187,
          -7,
          -7,
          -7,
          -2.7257074985747667,
          -7,
          -3.7057782128285974,
          -2.225309281725863,
          -4.199124114623325,
          -7,
          -7,
          -7,
          -3.1586639808139894,
          -3.0281644194244697,
          -7,
          -2.433769833924866,
          -7,
          -7,
          -7,
          -7,
          -2.0119931146592567,
          -2.255272505103306,
          -1.6570558528571038,
          -7,
          -2.7781512503836434,
          -1.9100142263808144,
          -7,
          -7,
          -7,
          -2.057856208741888,
          -2.9807606420143298,
          -7,
          -7,
          -7,
          -4.132035438327499,
          -2.7363965022766426,
          -7,
          -2.991299929018394,
          -7,
          -2.606381365110605,
          -2.8573324964312685,
          -7,
          -2.871864702088195,
          -2.5809249756756194,
          -2.835056101720116,
          -2.803457115648414,
          -2.359076226059263,
          -7,
          -4.2536321900321274,
          -3.0856472882968564,
          -7,
          -7,
          -7,
          -7,
          -2.646893624167745,
          -7,
          -2.6541765418779604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6989700043360187,
          -2.6148972160331345,
          -7,
          -7,
          -7,
          -7,
          -4.734414152052344,
          -7,
          -2.649983543645145,
          -4.246350836456256,
          -2.788521887222473,
          -7,
          -2.405403283235218,
          -7,
          -3.044147620878723,
          -3.4620983811351556,
          -7,
          -2.307496037913213,
          -7,
          -7,
          -1.8839194063414246,
          -2.639486489268586,
          -7,
          -2.6570558528571038,
          -2.6437815628948647,
          -1.811000161998575,
          -2.05915016485424,
          -7,
          -7,
          -4.319033150039682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.257694570688118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.786318331052916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.006876609403363,
          -7,
          -4.583164754791726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.352761191723831,
          -7,
          -7,
          -3.1264561134318045,
          -7,
          -3.2279937659927205,
          -3.749581734865559,
          -7,
          -3.7574339899382694,
          -7,
          -3.6421552597562883,
          -2.2109940047208836,
          -2.298610521540568,
          -7,
          -3.8444771757456815,
          -3.417554724363455,
          -7,
          -7,
          -7,
          -2.1560946306394277,
          -3.214843848047698,
          -4.1908637331287455,
          -3.0811672147134725,
          -7,
          -3.078227800040302,
          -3.701813305543457,
          -7,
          -7,
          -2.620552444729435,
          -7,
          -3.334305574736688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9796621686211364,
          -7,
          -2.9647309210536292,
          -3.084099424214281,
          -3.5602355114447897,
          -3.1547282074401557,
          -7,
          -3.4306017402583806,
          -3.5239828175558485,
          -7,
          -3.680778547794163,
          -7,
          -7,
          -7,
          -4.019240950395851,
          -7,
          -2.220108088040055,
          -7,
          -7,
          -7,
          -3.1526377365836415,
          -1.7741112725819037,
          -1.371938715745616,
          -7,
          -3.1072099696478683,
          -2.7415455167762097,
          -3.1109262422664203,
          -1.2430380486862944,
          -2.667452952889954,
          -2.7924617313469504,
          -7,
          -2.9759727438585846,
          -1.4763162600834328,
          -2.693726948923647,
          -7,
          -7,
          -2.785567089582034,
          -7,
          -7,
          -7,
          -3.506505032404872,
          -7,
          -3.1078880251827985,
          -2.0718820073061255,
          -1.5895772957033327,
          -7,
          -3.1432646820112207,
          -7,
          -7,
          -4.170789590446391,
          -3.3202847949567196,
          -4.441922825310942,
          -7,
          -7,
          -7,
          -7,
          -1.667452952889954,
          -7,
          -1.7772455264226197,
          -1.9917006280783427,
          -7,
          -7,
          -7,
          -1.6658935455344326,
          -3.7166709755601355,
          -7,
          -3.322839272686321,
          -1.7254448998676408,
          -7,
          -1.5902071645329623,
          -2.6263403673750423,
          -7,
          -7,
          -1.3319572471440413,
          -1.3064250275506872,
          -7,
          -3.819872821950546,
          -7,
          -7,
          -7,
          -1.6854431518033566,
          -2.650242505743437,
          -1.9934362304976116,
          -3.128722284338427,
          -7,
          -7,
          -7,
          -2.0977777345392834,
          -3.424881636631067,
          -7,
          -2.1760912590556813,
          -1.8488047010518036,
          -7,
          -7,
          -1.649334858712142,
          -1.8372459346831354,
          -1.696678207556434,
          -2.4751867549424627,
          -2.2257130137265877,
          -2.7558748556724915,
          -2.9867717342662448,
          -2.569373909615046,
          -2.8967623540510066,
          -7,
          -7,
          -7,
          -7,
          -2.606381365110605,
          -7,
          -7,
          -2.0187004986662433,
          -7,
          -3.413634997198556,
          -7,
          -3.3639878297484915,
          -3.586969675475768,
          -3.4733409641859354,
          -1.4670528600591584,
          -7,
          -1.7178553484963925,
          -7,
          -1.3985829317826486,
          -1.6947958880615075,
          -7,
          -2.6334684555795866,
          -1.7368389826836437,
          -2.57978359661681,
          -2.5863439683539147,
          -2.18089014193745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0511525224473814,
          -1.646136276056409,
          -3.0265332645232967,
          -7,
          -7,
          -7,
          -7,
          -2.782472624166286,
          -7,
          -2.9836262871245345,
          -7,
          -7,
          -2.725094521081469,
          -7,
          -7,
          -2.6434526764861874,
          -7,
          -3.583584138515784,
          -7,
          -7,
          -7,
          -7,
          -3.056142262059052,
          -7,
          -7,
          -2.53655844257153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8904210188009145,
          -7,
          -7,
          -7,
          -7,
          -3.4271614029259654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.351989455435632,
          -7,
          -7,
          -2.6906390117159673,
          -3.804412059137714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.571044657029212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.241973165892279,
          -3.48422863769372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9135489579065177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.244994166139669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05512338890692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5643527078960786,
          -2.640481436970422,
          -2.538762188781348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8416018942970567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.406625327867206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.285482294847141,
          -7,
          -7,
          -7,
          -7,
          -3.8590782247469693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.278982116865443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1920574373719934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4326486600131068,
          -7,
          -3.0108827245590275,
          -7,
          -7,
          -3.638634451316608,
          -7,
          -7,
          -7,
          -2.9175055095525466,
          -2.9476787399369364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4159466351953087,
          -7,
          -2.1103491705634387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.484299839346786,
          -3.151676230847048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.111176942004578,
          -7,
          -7,
          -7,
          -3.2232362731029975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4961560487352887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.469527479187014,
          -7,
          -3.5110406808136645,
          -7,
          -7,
          -7,
          -2.5631419252975927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6634496339132876,
          -7,
          -7,
          -3.2242740142942576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499515254927971,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.288536658044671,
          -7,
          -7,
          -4.08020545491413,
          -3.311753861055754,
          -7,
          -7,
          -7,
          -7,
          -3.570192561095726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.929480233548934,
          -4.0561727913537755,
          -4.29161301693988,
          -7,
          -7,
          -3.48826861549546,
          -2.572363273177757,
          -7,
          -3.5950156811695013,
          -7,
          -3.292292999589303,
          -3.8081321668795662,
          -7,
          -7,
          -2.6381845601587646,
          -3.99947853367931,
          -4.405943680512197,
          -2.9283010012108646,
          -7,
          -4.141992954947583,
          -7,
          -4.063497122643505,
          -7,
          -3.791971201020768,
          -4.10809123558122,
          -7,
          -4.635483746814912,
          -7,
          -7,
          -3.2071881988941064,
          -3.645422269349092,
          -7,
          -7,
          -3.359835482339888,
          -3.0128372247051725,
          -7,
          -7,
          -4.067201087647148,
          -3.8042076050820413,
          -7,
          -7,
          -4.282009999342054,
          -3.722633922533812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4191293077419758,
          -2.394417342460363,
          -4.170291058625393,
          -3.4807253789884878,
          -7,
          -3.802636918082811,
          -7,
          -7,
          -7,
          -4.213198891723608,
          -3.5094713521025485,
          -3.2329961103921536,
          -3.331243195423496,
          -3.5528348912085557,
          -7,
          -7,
          -7,
          -7,
          -3.776794548303097,
          -7,
          -7,
          -3.7005306569785916,
          -4.093981703914113,
          -7,
          -3.441695135640717,
          -4.045831314347755,
          -3.8217754671834636,
          -3.402089350572097,
          -7,
          -7,
          -3.885191540606848,
          -7,
          -7,
          -4.314646564169264,
          -3.398761495462114,
          -7,
          -3.9442950953941773,
          -7,
          -7,
          -7,
          -4.0520009801013,
          -2.8512583487190755,
          -7,
          -7,
          -2.0539012308755322,
          -3.630665129596291,
          -2.5679183080896295,
          -7,
          -3.33665982345442,
          -2.065321112032189,
          -2.7496075021373283,
          -2.599155000684555,
          -2.3205616801952367,
          -7,
          -7,
          -2.6414741105040997,
          -2.5734518220354854,
          -1.7907349194108384,
          -3.2938043599193367,
          -2.5565437084835145,
          -2.1922445687080447,
          -2.7017007968251283,
          -1.280563918213139,
          -1.9275136000066488,
          -1.7170727716115393,
          -2.9352552817840474,
          -2.523638096385075,
          -1.7961115793233833,
          -1.4033211139451396,
          -2.9177680024477564,
          -7,
          -2.2476226046698424,
          -2.382411062610103,
          -1.9182051383496885,
          -7,
          -2.8292179777928355,
          -2.8435150245077465,
          -2.808498125175687,
          -2.791690649020118,
          -1.9439488128550355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8587777373054495,
          -1.7394141026986953,
          -2.518777068926775,
          -2.5792557928468804,
          -7,
          -1.8883420984336072,
          -2.4685934593401977,
          -2.137474681744051,
          -7,
          -1.9392922892050897,
          -3.1300119496719043,
          -7,
          -2.172931888794524,
          -2.2671717284030137,
          -7,
          -7,
          -3.0710531129102714,
          -2.4527297852992795,
          -1.9150158860376074,
          -1.9815165943059867,
          -2.3336022689601736,
          -3.1970047280230456,
          -2.556122943778785,
          -7,
          -2.032543216047485,
          -3.1784013415337555,
          -2.9180303367848803,
          -3.370698092575577,
          -7,
          -1.987132653826536,
          -1.3453083690596945,
          -7,
          -7,
          -2.2077768862262555,
          -7,
          -7,
          -3.3969835082752007,
          -2.9537596917332287,
          -7,
          -2.5154555153936675,
          -2.991004440330755,
          -3.5720579899263045,
          -2.5861370252307934,
          -2.2540298877122105,
          -1.7759183689513516,
          -1.3975992519013951,
          -1.5633414633125446,
          -7,
          -7,
          -2.876617477687183,
          -1.5923727239248306,
          -2.8283376000590046,
          -2.304736656701528,
          -2.8555393455509726,
          -2.6652056284346006,
          -2.152069831431577,
          -2.6490318071748162,
          -1.8901908070372926,
          -7,
          -1.9590413923210934,
          -7,
          -7,
          -7,
          -3,
          -2.5456444325852305,
          -7,
          -7,
          -7,
          -2.175134758658844,
          -7,
          -2.2993983300681498,
          -2.8175653695597807,
          -2.6532125137753435,
          -2.7342662982171966,
          -2.836640541572774,
          -2.564961804462294,
          -2.4020156017566077,
          -1.4629906891979096,
          -3.238798562713917,
          -7,
          -1.9874780957370641,
          -7,
          -7,
          -7,
          -2.8639173769578603,
          -2.852174904420303,
          -3.1690863574870227,
          -2.7500453120117676,
          -2.191368201005732,
          -2.6851817198503856,
          -3.130333768495006,
          -7,
          -2.8109042806687006,
          -7,
          -7,
          -2.5743589135236467,
          -2.48108415181509,
          -7,
          -3.0941215958405612,
          -2.0770270593685027,
          -1.919987134009703,
          -7,
          -7,
          -7,
          -7,
          -1.7902460577811867,
          -7,
          -7,
          -3.076276255404218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.358420299672387,
          -7,
          -7,
          -7,
          -7,
          -3.640779477344857,
          -2.496929648073215,
          -2.803457115648414,
          -7,
          -7,
          -7,
          -3.6033067965385137,
          -7,
          -7,
          -7,
          -3.3864299194080996,
          -7,
          -7,
          -7,
          -2.5943925503754266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.337658891026142,
          -7,
          -7,
          -7,
          -7,
          -2.1760912590556813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7096091210726487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0711452904510828,
          -7,
          -7,
          -7,
          -3.730338067221792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2201604095245955,
          -7,
          -7,
          -7,
          -2.44870631990508,
          -7,
          -7,
          -2.436162647040756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.287054877670668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.767897616018091,
          -7,
          -2.885738048239018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.622962847945896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.965248750967121,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.121067167467729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2325726150081295,
          -7,
          -7,
          -7,
          -3.7760470711817797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3443922736851106,
          -7,
          -7,
          -4.251662549989795,
          -7,
          -7,
          -7,
          -2.478566495593843,
          -7,
          -2.4899584794248346,
          -7,
          -3.238297067875394,
          -7,
          -3.5585885831081994,
          -7,
          -2.9836262871245345,
          -3.3698742236946972,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.718501688867274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.336859820916809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.505149978319906,
          -7,
          -7,
          -2.3716834463321415,
          -2.6319508262592173,
          -7,
          -4.450640105302473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9888264070452757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295567099962479,
          -7,
          -3.089463530840192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4127754437448354,
          -7,
          -7,
          -2.5667320289862197,
          -7,
          -7,
          -7,
          -2.361727836017593,
          -7,
          -2.8750612633917,
          -2.4385423487861106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.433929765608464,
          -7,
          -7,
          -7,
          -4.130344491683163,
          -7,
          -7,
          -3.155867191785367,
          -7,
          -7,
          -2.143014800254095,
          -7,
          -3.1248301494138593,
          -2.782472624166286,
          -7,
          -7,
          -7,
          -7,
          -4.143926867032187,
          -3.0253058652647704,
          -7,
          -7,
          -7,
          -7,
          -2.3844131561393755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.404833716619938,
          -7,
          -7,
          -7,
          -7,
          -4.734161115213043,
          -7,
          -2.77232170672292,
          -3.7671806115015145,
          -2.1218059731155416,
          -7,
          -2.7846172926328756,
          -7,
          -2.977266212427293,
          -3.437750562820388,
          -3.028977705208778,
          -7,
          -7,
          -7,
          -2.3679767852945943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.475489589123831,
          -7,
          -7,
          -4.618435126515527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.733582420241032,
          -7,
          -7,
          -4.575257141709752,
          -4.656500672601419,
          -4.501743729627995,
          -7,
          -7,
          -7,
          -7,
          -3.9965116721541785,
          -4.608836133184731,
          -7,
          -5.1016130541812235,
          -7,
          -7,
          -7,
          -7,
          -4.625549087265309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0718820073061255,
          -7,
          -2.960924597102376,
          -7,
          -7,
          -4.052501563413781,
          -7,
          -4.543459606069367,
          -2.9388769633984144,
          -2.6133131614554594,
          -3.468495024507069,
          -3.839540892968969,
          -7,
          -7,
          -3.7300551523755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.877448137397143,
          -4.502873021596449,
          -7,
          -7,
          -7,
          -7,
          -4.310714548718119,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.658488381309017,
          -7,
          -4.277127671229863,
          -3.1894903136993675,
          -7,
          -3.5424519473759766,
          -3.8566382770747882,
          -7,
          -7,
          -4.128129905388509,
          -4.262688344301696,
          -7,
          -3.7883704155653297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.145684651788881,
          -1.327058280527384,
          -1.761927838420529,
          -7,
          -2.7777891874348675,
          -3.9913590026379504,
          -7,
          -7,
          -7,
          -3.305136318943639,
          -2.4191293077419758,
          -3.180760584229199,
          -1.725185387172794,
          -2.216957207361097,
          -7,
          -7,
          -3.2245330626060857,
          -2.6589648426644352,
          -7,
          -7,
          -2.8816699076720615,
          -7,
          -7,
          -1.5811260844923194,
          -1.6384892569546374,
          -7,
          -3.531606631932722,
          -7,
          -7,
          -7,
          -3.225865712912683,
          -4.1396193761920275,
          -7,
          -7,
          -1.667452952889954,
          -7,
          -7,
          -7,
          -1.4569178686313755,
          -2.05307844348342,
          -2.6464037262230695,
          -2.354108439147401,
          -3.2987439434824073,
          -1.645094623553164,
          -3.0036328370044085,
          -7,
          -2.588159616383092,
          -2.0492180226701815,
          -2.9903388547876015,
          -1.0372890847194476,
          -2.4428715548211977,
          -7,
          -7,
          -1.2203986832211235,
          -1.2501630993248258,
          -7,
          -3.5081929260254405,
          -7,
          -2.893206753059848,
          -7,
          -1.809933622951006,
          -2.8706820155665653,
          -1.678448337191417,
          -7,
          -2.244689360492884,
          -7,
          -7,
          -1.933234128714808,
          -3.1104213464739563,
          -2.4409090820652177,
          -1.590051083854947,
          -1.656417653650555,
          -3.25478968739721,
          -1.8750612633917,
          -1.6232492903979006,
          -2.064898226955344,
          -1.6418044981061142,
          -2.568201724066995,
          -2.3576863236850003,
          -2.992995098431342,
          -2.437433443797971,
          -1.736630812766223,
          -2.825993770051668,
          -3.063427189454848,
          -2.9471885655260937,
          -7,
          -7,
          -7,
          -4.270515799574357,
          -7,
          -2.5705429398818973,
          -7,
          -3.8364929048584697,
          -3.1283992687178066,
          -3.9588504516796785,
          -3.6803581795496854,
          -2.8586875505162346,
          -1.6114577656683426,
          -7,
          -0.9197316583111611,
          -7,
          -1.3802112417116061,
          -1.8226038992559745,
          -7,
          -2.130333768495006,
          -2.060697840353612,
          -7,
          -2.788844411651405,
          -7,
          -7,
          -7,
          -1.9673139182870836,
          -2.815577748324267,
          -2.5998830720736876,
          -2.6972293427597176,
          -7,
          -7,
          -1.9149892102916513,
          -2.2392994791268928,
          -2.9566485792052033,
          -7,
          -7,
          -7,
          -2.6875289612146345,
          -2.3483048630481607,
          -2.69810054562339,
          -3.0662327191202587,
          -7,
          -7,
          -7,
          -7,
          -3.3552599055273786,
          -7,
          -7,
          -3.6769449705169395,
          -7,
          -7,
          -3.17868923977559,
          -7,
          -7,
          -7,
          -7,
          -2.7259116322950483,
          -2.3560258571931225,
          -7,
          -2.3710678622717363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.654850090561394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9825877907016625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2605483726369795,
          -7,
          -7,
          -3.40671045860979,
          -2.36688968965338,
          -7,
          -7,
          -2.402547950912391,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.466645228363979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.686189234244024,
          -7,
          -3.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -3.550269129965307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9197316583111612,
          -7,
          -3.651568738865792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.395064164331242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1981069988734014,
          -7,
          -7,
          -7,
          -4.2659492899506235,
          -2.5856486950954656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278113115979834,
          -3.74795530690673,
          -7,
          -7,
          -7,
          -1.3152704347785915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145910834132374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.186532564592397,
          -3.1327398382608846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2746657690813885,
          -7,
          -7,
          -7,
          -3.131779009369187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2317243833285163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.63205216670581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.178620161601131,
          -7,
          -7,
          -2.155336037465062,
          -7,
          -2.4082399653118496,
          -7,
          -4.55845655864088,
          -7,
          -7,
          -7,
          -2.499687082618404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6127838567197355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.702171950857711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.037824750588342,
          -7,
          -7,
          -7,
          -4.027920136405803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.287801729930226,
          -7,
          -7,
          -1.7829501332654125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.041340040212176,
          -7,
          -7,
          -2.1398790864012365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.595496221825574,
          -4.059601279762754,
          -7,
          -7,
          -2.3138672203691537,
          -2.075546961392531,
          -2.678518379040114,
          -7,
          -3.212986184736668,
          -4.097048965011131,
          -7,
          -2.6848453616444123,
          -7,
          -4.736404470909626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1065308538223815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.596707029681446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.92272545799326,
          -7,
          -2.656098202012832,
          -7,
          -1.9777236052888478,
          -7,
          -7,
          -4.250956439331893,
          -7,
          -7,
          -7,
          -7,
          -2.2405492482826,
          -2.346352974450639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.39136231553266,
          -7,
          -7,
          -7,
          -7,
          -2.851869600729766,
          -7,
          -2.6273658565927325,
          -7,
          -7,
          -7,
          -7,
          -3.127428777851599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3191060593097763,
          -7,
          -7,
          -2.3263358609287517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.367355921026019,
          -7,
          -7,
          -2.492061604512599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9164539485499252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1072099696478683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8736111969964675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.496805150920314,
          -7,
          -7,
          -7,
          -3.3096301674258988,
          -7,
          -2.9656719712201065,
          -3.144262773761991,
          -7,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -2.821513528404773,
          -2.1856365769619117,
          -7,
          -7,
          -2.526339277389844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.606574819558959,
          -2.4771212547196626,
          -7,
          -3.7517408738109004,
          -7,
          -7,
          -2.6766936096248664,
          -7,
          -2.7937903846908188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097923341810007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.808885867359812,
          -7,
          -7,
          -2.6364878963533656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.385069776331935,
          -5.131971345281056,
          -7,
          -3.0409976924234905,
          -4.067207288178004,
          -7,
          -7,
          -7,
          -7,
          -2.456366033129043,
          -7,
          -7,
          -7,
          -2.1335389083702174,
          -7,
          -7,
          -2.2810333672477277,
          -7,
          -7,
          -3.0334237554869494,
          -7,
          -3.3651134316275773,
          -7,
          -7,
          -4.617524534886292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732884074852628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.091614206074446,
          -7,
          -7,
          -4.17435059747938,
          -7,
          -7,
          -3.9007493580610793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703815654874549,
          -3.9196010237841112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.348012638422195,
          -7,
          -7,
          -3.038620161949703,
          -7,
          -2.9792881623045173,
          -3.730216840568694,
          -7,
          -7,
          -7,
          -7,
          -2.999710373792598,
          -7,
          -7,
          -7,
          -3.3967222785037734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.336059277866349,
          -7,
          -3.311194985427823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4344517990487256,
          -7,
          -7,
          -7,
          -4.055072382449418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.854002233126989,
          -3.4171394097273255,
          -2.5622928644564746,
          -4.30330407743893,
          -3.7844389742226907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.986637395610154,
          -1.6232492903979006,
          -2.1943160791618803,
          -7,
          -2.5848963441374497,
          -3.51018741901152,
          -2.414973347970818,
          -1.9673139182870836,
          -2.342422680822206,
          -3.4750898033890065,
          -7,
          -3.6273965838888484,
          -1.865794662364423,
          -2.8721562727482928,
          -7,
          -3.137907705431547,
          -2.8998205024270964,
          -7,
          -7,
          -7,
          -2.6251654069508215,
          -7,
          -3.015778756389041,
          -2.292994040067439,
          -1.2397603389250587,
          -7,
          -3.349795392465258,
          -7,
          -7,
          -7,
          -3.2085906344388353,
          -4.263888446167958,
          -7,
          -7,
          -1.7772455264226197,
          -7,
          -1.4569178686313755,
          -7,
          -7,
          -2.36275656405147,
          -7,
          -7,
          -3.590395947184013,
          -1.787696568289874,
          -2.9960736544852753,
          -2.851869600729766,
          -2.967547976218862,
          -2.143014800254095,
          -2.949877704036875,
          -1.529879303882462,
          -2.7101173651118162,
          -7,
          -7,
          -1.5947607525864629,
          -1.1760912590556813,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -3.360688062030678,
          -2.7075701760979367,
          -3.0349282079313338,
          -1.5473644129795046,
          -3.388633969351789,
          -1.9405164849325671,
          -7,
          -7,
          -1.9344984512435677,
          -3.4044060509212692,
          -2.392696953259666,
          -2.075546961392531,
          -1.6637009253896482,
          -3.2332500095411003,
          -1.845098040014257,
          -1.6253124509616739,
          -2.6380453065128058,
          -2.866877814337499,
          -2.5138831856110926,
          -2.936848717028399,
          -7,
          -2.9485759586429285,
          -2.940516484932567,
          -3.12057393120585,
          -3.356599435724971,
          -3.226857570288723,
          -3.1925674533365456,
          -7,
          -7,
          -7,
          -7,
          -2.150756439860309,
          -7,
          -4.311859773623503,
          -2.317715203094899,
          -3.352327258816553,
          -4.280578370368076,
          -3.7562556487542333,
          -2.100370545117563,
          -7,
          -1.4529358702011792,
          -7,
          -1.5478693332304245,
          -2.493225621510431,
          -7,
          -7,
          -1.4913616938342726,
          -2.130333768495006,
          -3.303782129113973,
          -1.845098040014257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3157604906657347,
          -2.2194535370768107,
          -1.806179973983887,
          -7,
          -2.146128035678238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.660675788338524,
          -7,
          -7,
          -7,
          -7,
          -3.338257230246256,
          -7,
          -7,
          -4.277150613963797,
          -7,
          -7,
          -7,
          -7,
          -2.9508514588885464,
          -2.130333768495006,
          -7,
          -2.6483600109809315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3372958595898874,
          -7,
          -7,
          -7,
          -3.8020892578817325,
          -2.703622017252944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8955925243123817,
          -2.833925861701843,
          -7,
          -2.727270077199637,
          -3.157736514148242,
          -7,
          -7,
          -7,
          -3.4173055832445254,
          -2.931118710592187,
          -7,
          -3.8070499529448028,
          -3.4104397862103464,
          -7,
          -7,
          -7,
          -3.1411360901207392,
          -7,
          -3.1180993120779945,
          -7,
          -3.5877109650189114,
          -3.3960248966085933,
          -3.4253349238884816,
          -3.389343311252078,
          -7,
          -7,
          -7,
          -2.7988232242204005,
          -7,
          -7,
          -7,
          -7,
          -2.967079734144497,
          -2.688241795977712,
          -7,
          -3.4077307280263356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2300655512060468,
          -7,
          -7,
          -7,
          -3.1124038927178743,
          -7,
          -7,
          -3.399846712712922,
          -7,
          -7,
          -2.9849771264154934,
          -7,
          -7,
          -3.3712757194554817,
          -7,
          -3.4189638307036225,
          -7,
          -7,
          -7,
          -7,
          -3.396896449142524,
          -7,
          -3.4566696294237573,
          -7,
          -3.4874212113594747,
          -2.719828286254335,
          -2.970346876230093,
          -7,
          -2.7201716499108235,
          -3.146902869928199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.093421685162235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8684974938893117,
          -7,
          -7,
          -7,
          -7,
          -2.9965116721541785,
          -7,
          -7,
          -7,
          -7,
          -3.2356862287374053,
          -3.4080702858871854,
          -7,
          -7,
          -7,
          -3.212453961040276,
          -7,
          -3.445136968713304,
          -2.8684680990209865,
          -7,
          -7,
          -7,
          -3.6402902778133663,
          -7,
          -7,
          -7,
          -3.451939869365103,
          -7,
          -2.9324737646771535,
          -2.945796726048,
          -7,
          -7,
          -2.0557488898291396,
          -3.386498965550653,
          -7,
          -7,
          -7,
          -7,
          -3.1479235389806064,
          -2.68556261115823,
          -2.99370069482035,
          -2.9995654882259823,
          -7,
          -3.928037206406883,
          -7,
          -7,
          -7,
          -7,
          -3.2113875529368587,
          -7,
          -7,
          -7,
          -3.850125259486936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0199466816788423,
          -7,
          -7,
          -7,
          -2.982874001327729,
          -3.413132050434872,
          -7,
          -2.939300802474012,
          -3.394976719554564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8969669019331548,
          -7,
          -2.9751099896861612,
          -7,
          -7,
          -2.7453232539625274,
          -7,
          -7,
          -2.847572659142112,
          -3.462397997898956,
          -3.479863113023098,
          -7,
          -3.436480695009495,
          -7,
          -3.438384107034714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02234587626988,
          -7,
          -2.6869340371737893,
          -7,
          -3.0101585617234066,
          -3.401400540781544,
          -3.100370545117563,
          -7,
          -7,
          -2.582874673593952,
          -7,
          -7,
          -3.3884564527002667,
          -3.155336037465062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4050046650503694,
          -7,
          -7,
          -3.4670158184384356,
          -3.187238619831479,
          -2.837982785381378,
          -3.263854480804389,
          -7,
          -2.694429690957083,
          -3.3935752032695876,
          -2.987070115921337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0773315611289904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3988077302032647,
          -7,
          -2.977609302226758,
          -7,
          -7,
          -7,
          -3.0201540316383326,
          -7,
          -3.0750600841196736,
          -3.4379090355394983,
          -3.5273849773654584,
          -7,
          -7,
          -7,
          -2.9014583213961123,
          -2.8926510338773004,
          -3.2081725266671217,
          -2.9656719712201065,
          -3.560743301054712,
          -7,
          -7,
          -7,
          -7,
          -3.1715802019320636,
          -2.965044831065058,
          -7,
          -7,
          -3.4222614508136027,
          -7,
          -7,
          -7,
          -7,
          -2.9144313118912653,
          -7,
          -7,
          -7,
          -3.676287061987499,
          -7,
          -7,
          -2.9454685851318194,
          -7,
          -7,
          -2.9667672920577095,
          -7,
          -3.249442961442582,
          -3.4513258084895195,
          -7,
          -3.431202884556517,
          -3.205745540942662,
          -7,
          -3.4523385438459995,
          -2.9131513129998394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4379090355394983,
          -7,
          -7,
          -7,
          -7,
          -3.4087486061842442,
          -3.3935752032695876,
          -7,
          -7,
          -4.050031562368401,
          -3.374106508804013,
          -3.746338659979659,
          -3.1248301494138593,
          -2.832381160247041,
          -3.571883445956414,
          -3.216429830876251,
          -7,
          -3.45178643552429,
          -7,
          -7,
          -3.6955692270361853,
          -7,
          -7,
          -3.3881012015705165,
          -7,
          -3.466125870418199,
          -7,
          -7,
          -7,
          -3.0523090996473234,
          -2.7996850909091004,
          -2.5839540689101295,
          -7,
          -7,
          -3.436639631692661,
          -4.162489727736505,
          -4.017304688562155,
          -7,
          -4.463459971124135,
          -3.6356847625472226,
          -3.160948480864697,
          -3.4350476413399647,
          -3.0259624536056147,
          -7,
          -2.96744768112233,
          -3.6457605771884154,
          -4.07515445923309,
          -3.817598419632618,
          -2.9992755720056676,
          -2.437173810435618,
          -3.523339938201984,
          -3.210401556278205,
          -4.0842544591112295,
          -4.029830019310658,
          -3.534068432890329,
          -2.7078143789900295,
          -3.9856060830524367,
          -3.4024608541039107,
          -7,
          -7,
          -4.045694513294837,
          -3.881341852971215,
          -7,
          -3.2456031364077282,
          -2.6625274978220763,
          -3.7607239721419514,
          -3.2479509599604097,
          -3.9366142619752114,
          -3.6265456590271294,
          -3.688330818112266,
          -3.8291107101552946,
          -4.390811509786938,
          -7,
          -3.755379324985937,
          -2.831613855309099,
          -3.6937049699018094,
          -2.9014583213961123,
          -3.283018392821262,
          -7,
          -7,
          -7,
          -3.3657453030046423,
          -2.3979400086720375,
          -2.682934395395032,
          -3.543602479379584,
          -3.426917713880816,
          -3.86308482532036,
          -7,
          -3.880356199419236,
          -7,
          -2.944153536490684,
          -7,
          -3.399673721481038,
          -3.048247531803974,
          -7,
          -2.8029139956252727,
          -3.5748011791913576,
          -2.934951266485025,
          -7,
          -3.0161973535124393,
          -3.417803722639881,
          -2.9806294763724175,
          -3.8403570592033565,
          -4.254146707031936,
          -2.8926510338773004,
          -3.5331999071876963,
          -2.9290781689436507,
          -2.875704186502311,
          -3.6146511867000206,
          -3.4219328132785085,
          -7,
          -3.1253511205147526,
          -2.9775711945198147,
          -3.043283665570575,
          -3.6920533650340808,
          -7,
          -3.3494717992143856,
          -2.8171618438797363,
          -3.5154764413823756,
          -2.750845748402496,
          -7,
          -3.0159881053841304,
          -3.7953933349312896,
          -3.4951973183654577,
          -7,
          -3.409087369447835,
          -7,
          -7,
          -3.369679599559816,
          -1.6529485393502215,
          -2.4143046881283317,
          -1.3337598790079583,
          -2.1594722066517003,
          -1.8400095309250863,
          -2.1096372294004264,
          -1.5579444478342641,
          -2.0412281485084436,
          -2.9249680958524342,
          -2.126466755426485,
          -2.288760085189078,
          -2.5144207816759283,
          -1.512529472402638,
          -1.5416694494681231,
          -7,
          -2.491977674764168,
          -2.383366482755039,
          -2.0762584823084365,
          -2.443393386643552,
          -2.6257532845118607,
          -1.6115765241815292,
          -3.5021538928713607,
          -2.374879216730366,
          -2.1137914745357826,
          -2.166331421766525,
          -7,
          -2.186498450104975,
          -3.4423229557455746,
          -1.9922883537970923,
          -3.120231076145884,
          -2.4090493193344034,
          -2.5106973033953603,
          -7,
          -2.70395974394769,
          -1.9917006280783427,
          -2.8587777373054495,
          -2.05307844348342,
          -7,
          -2.36275656405147,
          -7,
          -3.4255342204982635,
          -2.075698998671137,
          -2.676904551658595,
          -2.5500535514902856,
          -2.1934270950455956,
          -2.876939140345395,
          -1.6124561285075514,
          -2.9108022122537744,
          -2.4608978427565478,
          -1.8981421668383482,
          -1.878682081342444,
          -2.6833043979393607,
          -3.437433443797971,
          -2.404149249209695,
          -2.233334609615762,
          -3.7753191218294777,
          -2.079588842963422,
          -2.711103917985617,
          -3.1762359997608716,
          -2.4206538182390798,
          -1.5638385428055097,
          -2.037242898156917,
          -2.0886752501377734,
          -2.0679073785805415,
          -1.6657290711973398,
          -3.4626974081017172,
          -4.027023254588704,
          -2.9321353973192474,
          -2.5040273880538586,
          -2.367355921026019,
          -2.308482324064368,
          -1.648197323403864,
          -2.040184632969257,
          -7,
          -2.2519856560522644,
          -1.5138831856110926,
          -1.7273933617497892,
          -2.4690852991231202,
          -1.829422904495989,
          -1.915899471000105,
          -2.518426194755475,
          -2.1542302584287114,
          -1.8601617864501327,
          -2.139750615913122,
          -2.645422269349092,
          -2.379758615842701,
          -2.91399035898314,
          -2.5449534564447305,
          -2.786542656827931,
          -1.994887860393943,
          -2.263297832993205,
          -1.8364550785107507,
          -2.415376352092442,
          -1.987144679314413,
          -2.209631556736247,
          -2.7488813648247152,
          -2.286653597566442,
          -2.451615889878312,
          -3.4916417934775863,
          -2.32342399587229,
          -7,
          -1.9308535573499908,
          -1.7246923259043043,
          -3.4087486061842442,
          -2.3935752032695876,
          -1.9864271928107262,
          -3.086537783753207,
          -1.7793286090293619,
          -2.4447385572188063,
          -7,
          -3.106870544478654,
          -2.5675304805301185,
          -2.611723308007342,
          -2.815079418399363,
          -2.3898101993982914,
          -2.245421266260218,
          -2.639386869017684,
          -2.356320094658242,
          -2.5628025001283783,
          -2.146691688556713,
          -3.3888114134735234,
          -7,
          -7,
          -2.954885432549936,
          -2.5792935143960207,
          -2.734319680859007,
          -2.4369890877885383,
          -2.2882013016594915,
          -3.0107238653917734,
          -2.5668581979161447,
          -2.6875289612146345,
          -2.6086232673136136,
          -2.69810054562339,
          -3.3888114134735234,
          -2.820693949973386,
          -7,
          -7,
          -2.1508744707026994,
          -2.3638682764365573,
          -3.0276213815520254,
          -7,
          -7,
          -3.1384605947257023,
          -7,
          -2.4005004482688816,
          -7,
          -7,
          -3.3866772839608377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276162980319142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7311857076340007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.33547682460851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9590334381368626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.015180059737978,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.341038631677523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.672565781378651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.989761187718778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4982967664443425,
          -7,
          -7,
          -7,
          -2.0346917694735853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.130569617494949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.433177574067476,
          -7,
          -7,
          -4.5457152356963135,
          -3.039017321997412,
          -7,
          -7,
          -7,
          -7,
          -3.4410664066392633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.61865463874404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7033773685123497,
          -7,
          -4.432704787504453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3942590074761068,
          -7,
          -7,
          -3.953508414237079,
          -7,
          -7,
          -7,
          -5.101685223809193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.70474233316836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7388598020722004,
          -7,
          -7,
          -7,
          -7,
          -3.7863254343900703,
          -3.222456336679247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.187012807018954,
          -7,
          -7,
          -7,
          -4.679068864731537,
          -4.695484595126102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.059184617631371,
          -7,
          -7,
          -7,
          -4.277609214304091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.633801623517603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5640391252808956,
          -7,
          -3.5149460053080044,
          -7,
          -3.084576277934331,
          -7,
          -2.90687353472207,
          -3.292964545382929,
          -3.0622058088197126,
          -7,
          -7,
          -3.482873583608754,
          -1.9526310252827455,
          -2.946482969137085,
          -7,
          -7,
          -3.3092041796704077,
          -3.748885440009517,
          -2.046625212091902,
          -1.6374241062905812,
          -2.760045327965811,
          -2.583765368285,
          -7,
          -1.9012766462284751,
          -1.8160462429564344,
          -1.8344207036815325,
          -7,
          -2.4683473304121573,
          -3.055314609787049,
          -2.7551122663950713,
          -7,
          -3.4281495256134615,
          -4.340493689006248,
          -3.3798176807586167,
          -7,
          -3.374381698050882,
          -7,
          -1.7394141026986953,
          -2.6464037262230695,
          -7,
          -7,
          -3.4255342204982635,
          -7,
          -2.367355921026019,
          -2.646294784925144,
          -7,
          -2.6240241246478613,
          -2.9132839017604186,
          -2.2095150145426308,
          -7,
          -2.520701826026063,
          -7,
          -7,
          -3.077044739437673,
          -1.9444826721501685,
          -7,
          -7,
          -3.575303333422399,
          -3.3333800930468676,
          -2.4727564493172123,
          -1.0925452076056064,
          -3.194514341882467,
          -7,
          -3.719547443511741,
          -7,
          -1.8267749954875694,
          -7,
          -7,
          -7,
          -7,
          -2.5363058723510337,
          -2.2278867046136734,
          -7,
          -7,
          -2.353387219249733,
          -7,
          -7,
          -3.6058435390580894,
          -2.926342446625655,
          -7,
          -3.2473184686774124,
          -3.002166061756508,
          -7,
          -2.6893088591236203,
          -3.254467510467076,
          -2.1434879395120294,
          -1.4949786824666678,
          -1.8889012465241302,
          -7,
          -7,
          -3.7937903846908188,
          -2.801232153830292,
          -7,
          -3.2773799746672547,
          -4.314141203260571,
          -3.1351326513767748,
          -2.844763838780448,
          -3.5046520639080847,
          -2.0669721121857587,
          -7,
          -2.6532125137753435,
          -2.5428254269591797,
          -7,
          -7,
          -7,
          -3.4665710723863543,
          -7,
          -7,
          -7,
          -2.753153914113024,
          -7,
          -7,
          -7,
          -2.1183749671059116,
          -2.5269850685599957,
          -2.1409268419924303,
          -2.7151673578484576,
          -2.4585539192772186,
          -1.4986286017583395,
          -7,
          -7,
          -1.670636405692084,
          -7,
          -7,
          -7,
          -2.403120521175818,
          -7,
          -7,
          -3.670802284260944,
          -2.817300878393321,
          -3.1659858227744544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6774244377012475,
          -7,
          -7,
          -3.184691430817599,
          -2.7662640906519957,
          -2.698535492562001,
          -7,
          -7,
          -7,
          -7,
          -2.380211241711606,
          -7,
          -7,
          -2.3729120029701067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9632104824903385,
          -7,
          -7,
          -3.0972573096934197,
          -3.557180541881304,
          -7,
          -7,
          -7,
          -7,
          -2.780317312140151,
          -7,
          -4.562602114778459,
          -2.786751422145561,
          -7,
          -7,
          -2.821513528404773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4974825373673704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.243781916093795,
          -3.7311050512159203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0869527242574843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.973589623427257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.568605834163208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -7,
          -7,
          -7,
          -7,
          -3.168939213835978,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.10893692358826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1048284036536553,
          -7,
          -7,
          -7,
          -7,
          -2.8394780473741985,
          -7,
          -7,
          -3.977311973396926,
          -7,
          -7,
          -2.6848453616444123,
          -7,
          -7,
          -3.404320467221731,
          -7,
          -7,
          -3.0170333392987803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.810568529216413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.952687528323953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.175627764367181,
          -7,
          -7,
          -3.4692603825691135,
          -7,
          -7,
          -7,
          -7,
          -3.024485667699167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.250420002308894,
          -3.6731346140810803,
          -7,
          -7,
          -7,
          -2.9800033715837464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.699143687394484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8356905714924254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.714413592287121,
          -7,
          -3.5471180513494303,
          -7,
          -7,
          -7,
          -3.0436569480416416,
          -7,
          -7,
          -3.240798771117331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.405847737990737,
          -7,
          -7,
          -3.777644277696485,
          -7,
          -7,
          -7,
          -7,
          -3.2022157758011316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.320938652442784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.956432577966348,
          -7,
          -7,
          -4.24760506415077,
          -3.1248301494138593,
          -7,
          -7,
          -7,
          -3.0824263008607717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.320094333903096,
          -7,
          -7,
          -7,
          -4.433129517580485,
          -7,
          -7,
          -7,
          -3.6215277949321476,
          -7,
          -3.264975147583582,
          -7,
          -7,
          -4.804561930962418,
          -3.194097885578952,
          -7,
          -7,
          -3.4504511930355624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.088015533093001,
          -4.083108279194735,
          -7,
          -7,
          -7,
          -7,
          -3.7066324508732946,
          -4.2296562496672125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354722934448935,
          -4.092913543651593,
          -3.9744195738522863,
          -7,
          -4.574852754517795,
          -4.30982172568023,
          -2.8019370074044843,
          -7,
          -7,
          -7,
          -7,
          -3.3255840723546894,
          -7,
          -4.080265627339845,
          -7,
          -3.7271344237604884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8926232292432177,
          -7,
          -7,
          -3.882410684373968,
          -4.136040742626403,
          -7,
          -7,
          -7,
          -7,
          -3.711279852556345,
          -7,
          -7,
          -3.332337449453026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.688271472050148,
          -7,
          -7,
          -4.608087238735641,
          -3.612383509312248,
          -7,
          -4.335156899534743,
          -7,
          -7,
          -3.6316466629584196,
          -4.023458237643675,
          -7,
          -7,
          -7,
          -2.649334858712142,
          -4.08292891501513,
          -2.308324802806524,
          -2.814913181275074,
          -2.1151564661735565,
          -2.61066016308988,
          -2.1182647260894796,
          -2.5087685749709543,
          -2.09627785207853,
          -7,
          -2.4510184521554574,
          -2.1223204729384233,
          -1.260804993703267,
          -3.139147540217198,
          -2.0485124262811727,
          -1.5690393221702197,
          -3.05595140532915,
          -3.1645015613095686,
          -2.506730464271809,
          -2.0910804693473324,
          -3.1436392352745433,
          -2.09429639740537,
          -2.4380146519023493,
          -2.78354628227035,
          -2.1818435879447726,
          -2.1903316981702914,
          -2.8530895298518657,
          -2.7267272090265724,
          -2.340072128109108,
          -2.907411360774586,
          -2.734799829588847,
          -3.150537154583293,
          -3.1117763079825163,
          -2.929851040018942,
          -7,
          -2.636320699245659,
          -7,
          -2.518777068926775,
          -2.354108439147401,
          -7,
          -7,
          -2.075698998671137,
          -2.367355921026019,
          -7,
          -1.9751183516339423,
          -7,
          -2.492020464505757,
          -2.2422100322640643,
          -1.261208285183812,
          -7,
          -1.677606952720493,
          -2.0962145853464054,
          -2.4367985102318035,
          -3.492461047614479,
          -2.4110582391986624,
          -2.7730546933642626,
          -2.8020892578817325,
          -7,
          -2.3917842956517066,
          -2.5759571887637573,
          -2.716003343634799,
          -3.0909630765957314,
          -2.4538277764478607,
          -2.758569481227834,
          -2.6541765418779604,
          -2.1177446411869854,
          -2.2928096654172903,
          -2.3687516195445553,
          -3.6374396927036643,
          -7,
          -2.6184504075161317,
          -2.077569761891046,
          -7,
          -2.311753861055754,
          -1.602502923015416,
          -7,
          -7,
          -2.1627085775045116,
          -2.3324384599156054,
          -2.6989700043360187,
          -2.3249943487886915,
          -2.490660653356137,
          -2.632601888317874,
          -1.421527405949555,
          -2.34908316877959,
          -2.2223576242096676,
          -2.4604682735010472,
          -1.6061424135326907,
          -7,
          -2.401400540781544,
          -3.234678307978809,
          -2.538133687250669,
          -2.194514341882467,
          -2.118719290030396,
          -2.4968877338250617,
          -2.42433706667645,
          -2.333704967375953,
          -2.8558779470193607,
          -2.3467874862246565,
          -7,
          -7,
          -2.7693773260761385,
          -7,
          -2.9190780923760737,
          -2.5048105531506915,
          -3.500648063371912,
          -2.7259116322950483,
          -2.7846172926328756,
          -7,
          -1.7394913617805503,
          -7,
          -2.949877704036875,
          -7,
          -1.4113268573466697,
          -1.4710892899497494,
          -2.113943352306837,
          -2.0957503474808177,
          -2.2182573985268057,
          -2.603144372620182,
          -2.304490527773488,
          -7,
          -1.5095187753812356,
          -7,
          -7,
          -7,
          -2.873320601815399,
          -2.37045140442245,
          -7,
          -2.846248724120565,
          -2.642958879409791,
          -3.501333178645566,
          -2.801403710017355,
          -7,
          -2.9246238275174004,
          -2.733999286538387,
          -7,
          -3.28463373316459,
          -7,
          -7,
          -2.28953940665447,
          -2.498034723687027,
          -3.093421685162235,
          -7,
          -2.6875289612146345,
          -7,
          -7,
          -2.470727032157512,
          -7,
          -7,
          -7,
          -7,
          -3.5800121125294244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5457134697726813,
          -7,
          -7,
          -7,
          -7,
          -3.899382705533265,
          -7,
          -3.622731965164719,
          -3.596047007545439,
          -3.646893624167745,
          -7,
          -2.5702415557741025,
          -7,
          -7,
          -7,
          -3.254207397942776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.696913099635797,
          -7,
          -7,
          -7,
          -7,
          -3.613630434925241,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9262566770031975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2259980915164155,
          -3.63753976055708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1480882706622184,
          -3.374289987675311,
          -7,
          -7,
          -7,
          -3.854548935812951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.149834696715785,
          -7,
          -7,
          -4.304512069624235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7187863010659177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2400555832772624,
          -7,
          -3.598899887063883,
          -7,
          -7,
          -7,
          -7,
          -3.839729375206388,
          -3.36275167111627,
          -3.584444307165176,
          -3.615950051656401,
          -3.12602311790052,
          -3.485504748083348,
          -7,
          -7,
          -7,
          -3.318793504793297,
          -7,
          -3.2909245593827543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.320613576530592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.19041574703329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6259294927162946,
          -7,
          -7,
          -3.434234234551041,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.599923484718011,
          -7,
          -7,
          -3.588866164710985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4570488265856314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0024900412432993,
          -7,
          -7,
          -7,
          -2.6025250577460293,
          -3.300812794118117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.329092647195331,
          -7,
          -7,
          -4.461456505933693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5886078047426864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2743887955503785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.71121652432109,
          -7,
          -7,
          -7,
          -7,
          -3.622731965164719,
          -3.22901594276341,
          -7,
          -3.0386077448439592,
          -7,
          -7,
          -7,
          -2.210768061785912,
          -7,
          -7,
          -3.7024305364455254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.797613730153076,
          -7,
          -7,
          -7,
          -2.6334882587980255,
          -7,
          -7,
          -3.6669857183296606,
          -7,
          -7,
          -3.3137617962924364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5974757898703773,
          -4.33219599532464,
          -7,
          -7,
          -7,
          -7,
          -3.6802448370426077,
          -7,
          -7,
          -7,
          -3.3093107157881754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.815429100194955,
          -7,
          -7,
          -2.3769508166030784,
          -2.886678690759447,
          -7,
          -3.318689269947746,
          -3.5907304057926903,
          -3.653983907374069,
          -2.566610773321697,
          -3.665393350279712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.874848889727198,
          -3.7329344633546433,
          -7,
          -7,
          -7,
          -2.973897197435795,
          -3.456619044777273,
          -7,
          -3.298408846961862,
          -7,
          -3.010027225211449,
          -4.0124048232620035,
          -4.6893177403105595,
          -4.826470025252119,
          -2.1796294144440775,
          -7,
          -7,
          -2.654185541400976,
          -4.129657673312688,
          -3.7420767398479198,
          -7,
          -5.1136760118971,
          -3.3425805773816273,
          -3.207243784491376,
          -4.187746269780459,
          -7,
          -4.359645792674543,
          -7,
          -7,
          -2.829697676172511,
          -3.306425027550687,
          -7,
          -3.8414220444023592,
          -3.7928584219256614,
          -3.5141048209728325,
          -7,
          -7,
          -3.8116587737331162,
          -3.447994792653729,
          -7,
          -3.1981987286196296,
          -4.3103533890449945,
          -3.772725002459211,
          -7,
          -7,
          -4.171550945676746,
          -7,
          -3.8865132853388156,
          -3.6834973176798114,
          -7,
          -3.407079165783919,
          -3.4617235692693926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.975845225467567,
          -3.064907027159636,
          -7,
          -3.6397686226140973,
          -3.4273852129070925,
          -4.279692604072538,
          -7,
          -2.961104552884867,
          -7,
          -3.1850534366695835,
          -7,
          -4.959580346517151,
          -3.57966929355472,
          -3.698796251790431,
          -7,
          -3.9092350033683076,
          -3.65931391573872,
          -3.8747523219012376,
          -7,
          -7,
          -7,
          -3.776555910703262,
          -7,
          -7,
          -4.340999022531442,
          -3.0350401101934903,
          -7,
          -3.889871048788647,
          -7,
          -7,
          -3.5785819114018698,
          -7,
          -7,
          -7,
          -7,
          -2.776182127536158,
          -7,
          -2.3365909505522704,
          -3.1192558892779365,
          -3.3757550347552243,
          -2.768215121441203,
          -2.659769972970185,
          -2.823604628355158,
          -2.628110148946118,
          -7,
          -2.8079857748471495,
          -2.5182415695447813,
          -2.208226305935583,
          -2.6159879440749574,
          -2.958181497564948,
          -2.0671814799805035,
          -2.1969258872346105,
          -2.6808124456850986,
          -1.930949031167523,
          -2.263636068588108,
          -3.193773698800548,
          -2.6783160050933468,
          -2.7396382614999117,
          -2.8756399370041685,
          -2.3659557226656793,
          -2.780934207814762,
          -2.903524064471262,
          -3.2821687783046416,
          -2.671299097228857,
          -2.5700119525533682,
          -7,
          -1.8469539732166491,
          -2.604954897808633,
          -2.5282774962218273,
          -7,
          -1.8972503938239382,
          -7,
          -2.5792557928468804,
          -3.2987439434824073,
          -7,
          -3.590395947184013,
          -2.676904551658595,
          -2.646294784925144,
          -1.9751183516339423,
          -7,
          -3.2823955047425257,
          -2.102167380456483,
          -2.4320669125427994,
          -1.5434847071478615,
          -7,
          -1.6066023341156235,
          -2.991779669753309,
          -3.669688708056208,
          -3.018076063645795,
          -2.9104109399146885,
          -3.5901728315963144,
          -3.5947239464097467,
          -3.5621143505886863,
          -2.4659074673550583,
          -2.946943270697825,
          -2.556201957999874,
          -2.6127308907483417,
          -2.9188687433809846,
          -1.9647609404708088,
          -2.7772196208195874,
          -2.333806998266098,
          -2.707144188342445,
          -2.671481400086431,
          -3.0363384944941667,
          -3.2907022432878543,
          -2.368864587950433,
          -2.079281765543943,
          -3.6028193424326997,
          -7,
          -1.5695703901023565,
          -3.578409970331236,
          -3.5871494982543437,
          -3.1005428500124648,
          -3.6416723732246865,
          -2.854407264149028,
          -2.831525232824983,
          -3.3561215062369856,
          -1.2012655633156346,
          -1.4279696159410684,
          -2.4858192956610146,
          -2.001949941084268,
          -2.164848342982397,
          -1.6817629124916509,
          -3.5801263254115825,
          -3.1027766148834415,
          -2.853855152597072,
          -2.8794542970180665,
          -3.2932520331478248,
          -2.299418511507402,
          -2.825372016929148,
          -2.8442996228070254,
          -2.210523506005551,
          -2.4137043234788376,
          -1.099284687397692,
          -3.2898118391176214,
          -2.2447223227699977,
          -7,
          -3.5820633629117085,
          -3.1383026981662816,
          -7,
          -1.7003686995285836,
          -3.5833121519830775,
          -3.591954555046735,
          -7,
          -1.5222652921803954,
          -7,
          -2.443210816819927,
          -7,
          -2.748630958693654,
          -2.0144155225606033,
          -2.5157634906474584,
          -2.3492775274679554,
          -2.5305554148925595,
          -2.3057351235423744,
          -1.9172274028628247,
          -7,
          -1.824175916887475,
          -7,
          -3.5779511277297553,
          -7,
          -2.6510625367017844,
          -3.6028193424326997,
          -3.608312042697327,
          -2.6580113966571126,
          -2.451210575353416,
          -3.333581606227454,
          -7,
          -7,
          -3.065729059462349,
          -7,
          -7,
          -2.4642223595797477,
          -3.278410601475816,
          -7,
          -2.285557309007774,
          -2.3443922736851106,
          -3.3557387836020354,
          -7,
          -7,
          -3.0091320695404717,
          -7,
          -2.346352974450639,
          -7,
          -3.3066394410242617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8627275283179747,
          -7,
          -7,
          -3.578409970331236,
          -7,
          -2.926342446625655,
          -4.032123523311559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7134905430939424,
          -2.5344491888776157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45178643552429,
          -7,
          -7,
          -2.3384564936046046,
          -7,
          -4.0405495992697675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.756217584467264,
          -2.2810333672477277,
          -7,
          -7,
          -2.625312450961674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.133818235928276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.958277125547698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3680078052211746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0717715794167555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.716003343634799,
          -7,
          -7,
          -3.949390006644913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7666730483760844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0049658871068234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.852479993636856,
          -7,
          -7,
          -7,
          -7,
          -1.720159303405957,
          -7,
          -7,
          -7,
          -2.4927603890268375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.157456768134226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.571708831808688,
          -7,
          -7,
          -7,
          -7,
          -3.126888677692568,
          -7,
          -7,
          -2.823474229170301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1986570869544226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6180480967120925,
          -7,
          -3.074084689028244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097715316475808,
          -2.960470777534299,
          -7,
          -7,
          -7,
          -7,
          -2.7664128471123997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.374198257929083,
          -7,
          -7,
          -3.0166155475571776,
          -4.066462591676076,
          -2.6646419755561257,
          -7,
          -2.6646419755561257,
          -7,
          -2.424881636631067,
          -3.1124374173218436,
          -7,
          -7,
          -7,
          -7,
          -2.745855195173729,
          -7,
          -7,
          -7,
          -3.0086001717619175,
          -7,
          -3.353723937588949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.650928887067893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.409510452269316,
          -7,
          -4.301073422940844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.296811392747983,
          -2.69810054562339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2528530309798933,
          -7,
          -4.008078279150566,
          -7,
          -7,
          -3.590395947184013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1532659350758685,
          -3.40705081480425,
          -1.8736111969964673,
          -4.126542660758098,
          -4.0848264166974335,
          -7,
          -4.02998204239725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9847522781154137,
          -1.906694111260769,
          -2.1698423097786796,
          -7,
          -7,
          -3.1391591616911594,
          -7,
          -2.018423082826786,
          -1.3979400086720375,
          -3.1693804953119495,
          -7,
          -3.585368425713485,
          -2.142493751023144,
          -7,
          -7,
          -7,
          -7,
          -3.4148062795010126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7267272090265724,
          -1.0565734553021526,
          -7,
          -3.3458962687263867,
          -7,
          -7,
          -7,
          -3.639695617444053,
          -7,
          -7,
          -7,
          -1.6658935455344326,
          -7,
          -1.645094623553164,
          -7,
          -1.787696568289874,
          -2.5500535514902856,
          -7,
          -7,
          -3.2823955047425257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.738384123512156,
          -2.9858753573083936,
          -7,
          -7,
          -1.7829501332654125,
          -1.7423322823571483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3502480183341627,
          -3.3169892313236793,
          -1.6803355134145632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.399240941692456,
          -7,
          -2.478566495593843,
          -2.1409268419924303,
          -7,
          -7,
          -1.8948696567452525,
          -2.740926342372719,
          -2.0453229787866576,
          -2.7745169657285493,
          -2.709269960975831,
          -7,
          -2.636655029117369,
          -2.6074550232146687,
          -2.8720729868180532,
          -7,
          -3.2111205412580492,
          -7,
          -7,
          -1.9956351945975501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.580057801286702,
          -7,
          -1.8016323462331667,
          -7,
          -1.5390760987927767,
          -7,
          -2.018076063645795,
          -2.03342375548695,
          -7,
          -7,
          -7,
          -7,
          -2.970439862951764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1782573208121887,
          -2.305351369446624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0523090996473234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.576617736181542,
          -1.968482948553935,
          -7,
          -3.1341771075767664,
          -7,
          -7,
          -1.8750612633917,
          -7,
          -1.8773713458697743,
          -7,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -3.68761812957177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8873835596662767,
          -7,
          -7,
          -7,
          -3.46453922366873,
          -3.3519411763536078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.065471512398471,
          -7,
          -7,
          -3.14713505089171,
          -2.973633058847854,
          -7,
          -7,
          -7,
          -7,
          -3.3952390010815514,
          -7,
          -4.611659592651788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388633969351789,
          -4.120343562438025,
          -7,
          -7,
          -3.40705081480425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.940872085117753,
          -2.9089315942207272,
          -7,
          -3.695831772826692,
          -3.7710727832211948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2322335211147335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8193476390283543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.533136288278639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731346975545955,
          -7,
          -7,
          -7,
          -7,
          -2.5075320532526666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6010273151444854,
          -2.757421336591866,
          -7,
          -7,
          -7,
          -3.4934213598717854,
          -7,
          -3.148833929054163,
          -3.064008486531724,
          -7,
          -7,
          -3.395937645080042,
          -7,
          -7,
          -7,
          -3.442511124934785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9328425922848016,
          -7,
          -7,
          -3.7330366829335797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8582965245338854,
          -3.753046561626529,
          -7,
          -7,
          -7,
          -3.742148831165734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7949525327803473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295860195625301,
          -7,
          -7,
          -2.746794906209887,
          -7,
          -3.1190908524217216,
          -3.1158600345090313,
          -3.724849087629386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9866437936313814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9221413362079565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.039731296098691,
          -3.4219328132785085,
          -3.1763031311338112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.340779583365695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7589118923979736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8197412972730103,
          -7,
          -2.579829309419537,
          -7,
          -3.0945072711564916,
          -7,
          -7,
          -7,
          -3.4670158184384356,
          -7,
          -7,
          -2.7431532888962975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.693111115462141,
          -3.388574805196408,
          -3.739572344450092,
          -7,
          -7,
          -2.305847233799526,
          -7,
          -7,
          -3.413090111901509,
          -7,
          -7,
          -7,
          -7,
          -3.2979063453791824,
          -3.7188337183038622,
          -7,
          -7,
          -7,
          -7,
          -2.6191302542928296,
          -7,
          -7,
          -7,
          -7,
          -3.76774936734558,
          -3.729083757043612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.13443212489584,
          -7,
          -3.7327673383614615,
          -7,
          -7,
          -3.997102296115629,
          -3.2785249647370174,
          -7,
          -7,
          -7,
          -7,
          -3.8673496171887924,
          -7,
          -7,
          -7,
          -7,
          -3.726890140741822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2447099622092566,
          -7,
          -7,
          -2.73846910433268,
          -3.1905974381230235,
          -3.5875613115088494,
          -7,
          -3.6527434983124007,
          -2.7473470602930266,
          -1.7833837773173207,
          -3.3578029561814304,
          -1.9769622734382644,
          -7,
          -2.1209742817146546,
          -2.602328757112121,
          -3.4196427559764406,
          -3.3858359982701076,
          -2.2382851204611374,
          -4.373445342297979,
          -2.8294084996129136,
          -2.4060103914302835,
          -2.9858753573083936,
          -3.424929654153577,
          -4.1028451642454185,
          -3.7746728723524074,
          -3.1785093257409924,
          -1.6840836382549131,
          -2.7841416140728312,
          -4.277448759264485,
          -3.8255095744151486,
          -3.3120185940611497,
          -7,
          -2.1137040935650018,
          -2.4689009244729716,
          -3.6309259600101225,
          -3.2259451449169103,
          -3.0895297965599102,
          -2.9562885174336575,
          -3.73883999253075,
          -3.5022905279147727,
          -2.953308577080214,
          -2.4443901474007856,
          -2.8375253094496014,
          -3.7640266076920375,
          -3.777395748455203,
          -2.262256231598923,
          -3.526511582284746,
          -3.7285161047597666,
          -3.5995282897455563,
          -7,
          -2.676583438522829,
          -4.030235296012245,
          -3.0981589834605336,
          -2.8333596367430127,
          -2.9864417053328878,
          -3.6857865089215553,
          -7,
          -3.6988396964442867,
          -3.482158695411276,
          -7,
          -7,
          -3.601647215470563,
          -3.536621562182411,
          -3.7292458072253067,
          -2.3106933123433606,
          -2.7066132925258684,
          -4.144410024868985,
          -7,
          -7,
          -3.399846712712922,
          -2.8577918243237983,
          -7,
          -4.964646126434858,
          -3.2385980342643643,
          -3.6037125907704572,
          -7,
          -3.00798472191076,
          -3.0545541312161957,
          -7,
          -2.886561221801466,
          -7,
          -2.703560041586495,
          -2.13593313027341,
          -3.0191756567901225,
          -7,
          -3.3096785486972573,
          -2.62215055900234,
          -7,
          -3.5985899046347534,
          -7,
          -3.5159400420933182,
          -3.6358856852812727,
          -3.1733319803686495,
          -3.1026909129627085,
          -7,
          -7,
          -3.021520064114033,
          -2.6965417074824223,
          -1.4669544236323824,
          -7,
          -2.43985879260072,
          -2.1405589996233214,
          -1.6200260717887942,
          -2.157722276885424,
          -1.8623947148370348,
          -3.706888394981618,
          -7,
          -2.1249249928945724,
          -2.38662634331426,
          -1.9425832713408406,
          -2.5431364147862197,
          -1.9495526333017104,
          -2.183501582177713,
          -1.9426606368895096,
          -1.7994826615235353,
          -1.6249795495865822,
          -1.6901176379652818,
          -2.263513634396092,
          -1.9901888852467187,
          -2.28024859203978,
          -1.8559382914396632,
          -3.724930914192398,
          -2.9269423601642295,
          -7,
          -1.9174860593215874,
          -2.598032502044919,
          -3.6911699341316035,
          -2.246957221948706,
          -1.8233301165436868,
          -1.7285760749719628,
          -3.2119210843085093,
          -2.0026106777183132,
          -3.7166709755601355,
          -1.8883420984336072,
          -3.0036328370044085,
          -3.686189234244024,
          -2.9960736544852753,
          -2.1934270950455956,
          -2.6240241246478613,
          -2.492020464505757,
          -2.102167380456483,
          -7,
          -7,
          -2.332680789215245,
          -1.6154932128305772,
          -7,
          -2.4671015942209,
          -2.9993045723383487,
          -2.209897821514885,
          -1.7682138941023071,
          -2.453233375851931,
          -7,
          -7,
          -2.967547976218862,
          -1.7162884340349953,
          -2.061099407170852,
          -2.5266622930104643,
          -1.7467405382251568,
          -3.240632438491053,
          -2.0450265248027604,
          -2.640978057358332,
          -1.433320930526303,
          -2.669485932526948,
          -2.0744673493508063,
          -2.8132806812044433,
          -7,
          -1.4925905178698389,
          -1.9349868799532348,
          -3.005866601875385,
          -3.11293997608408,
          -1.6591059160721733,
          -7,
          -7,
          -1.9832981771972058,
          -3.1339378927638313,
          -3.4287825114969546,
          -2.5625571946422996,
          -2.9701918541039056,
          -2.825721094673752,
          -2.4892551683692603,
          -1.8416722500736344,
          -0.9613839667026424,
          -1.8397572915451457,
          -1.7616415061326538,
          -7,
          -3.6878855248487055,
          -2.095112473102566,
          -1.327907800587444,
          -2.520439860913926,
          -1.5205012362844792,
          -2.0059045301136,
          -1.9747641765839266,
          -1.2402247952415473,
          -2.390732771727705,
          -1.7974954977507929,
          -3.395064164331242,
          -2.2896367235821415,
          -3.217659381292399,
          -3.3880123433641907,
          -3.715836275164994,
          -3.2748503200166645,
          -2.2187688400680257,
          -7,
          -3.696967640744023,
          -7,
          -1.6792740381044218,
          -7,
          -2.4878035787194768,
          -3.394889257167419,
          -2.697839368218363,
          -2.87671257519829,
          -2.6996643202023733,
          -2.15991078065811,
          -1.4178348373889769,
          -1.8322454644228146,
          -3.7311050512159203,
          -7,
          -1.8502107875348965,
          -7,
          -7,
          -7,
          -3.407645797062556,
          -2.801232153830292,
          -7,
          -2.644063267433544,
          -1.5582794773214852,
          -2.645075342571035,
          -3.397853141088609,
          -7,
          -2.455352509957491,
          -3.2136062891507047,
          -7,
          -2.631388417846043,
          -2.9876662649262746,
          -7,
          -2.7866804531966487,
          -1.5344166586740948,
          -3.0492180226701815,
          -7,
          -7,
          -7,
          -7,
          -1.4999674716021913,
          -2.907859040931642,
          -7,
          -3.6851144690465394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.759809439370634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8341026557127935,
          -4.035126569752172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.563979170379509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.271609301378832,
          -3.2629254693318317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5691006825019738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5893910231369333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0073209529227447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.482912543686698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.745855195173729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.983175072037813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.975431808509263,
          -7,
          -7,
          -3.571825249040829,
          -7,
          -7,
          -7,
          -7,
          -4.262925469331831,
          -7,
          -7,
          -2.8887409606828927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.414137362184477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4883391579275007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.300071883219573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5434471800817002,
          -7,
          -3.10300507069192,
          -7,
          -7,
          -2.770179807426844,
          -7,
          -2.705007959333336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1048284036536553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9273703630390235,
          -2.788875115775417,
          -7,
          -7,
          -3.388988785124714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.733999286538387,
          -7,
          -3.565611724902059,
          -5.1507901999565835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7041505168397992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.845098040014257,
          -7,
          -7,
          -7,
          -7,
          -3.1536624535754956,
          -2.81424759573192,
          -7,
          -7,
          -7,
          -7,
          -2.7032913781186614,
          -3.1214777702040943,
          -7,
          -3.5487032689653533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.749736315569061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8873359303991672,
          -7,
          -7,
          -7,
          -4.310470267690811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2744144486696105,
          -2.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -4.321339474830754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.734763036969308,
          -7,
          -2.8920946026904804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1222158782728267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0334237554869494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5389191721490083,
          -7,
          -7,
          -3.923295840655504,
          -4.449547819044489,
          -7,
          -7,
          -7,
          -7,
          -3.130333768495006,
          -4.404885008214813,
          -3.4575472663217233,
          -7,
          -3.7469454096151047,
          -3.977449227382341,
          -4.057970231710706,
          -4.027132066235224,
          -3.1961070683879766,
          -7,
          -4.39557099712082,
          -3.5417999830005087,
          -2.86544240791904,
          -3.4986391993469956,
          -3.6241789257480224,
          -4.801866573503306,
          -3.8937062930647133,
          -3.583531737692542,
          -3.484975673477698,
          -7,
          -3.9303478327178527,
          -3.75724415102197,
          -7,
          -3.5033990969678186,
          -3.7553920379663954,
          -4.585629902197222,
          -4.24659704910637,
          -3.410242820877784,
          -3.1214285183679626,
          -4.24740856192157,
          -4.066363202258494,
          -4.055875039146097,
          -3.5506999661491356,
          -3.9797304306622854,
          -7,
          -3.1284108091278755,
          -3.1355990420591975,
          -2.216957207361097,
          -7,
          -7,
          -7,
          -3.593667507425168,
          -7,
          -7,
          -3.2389059505937725,
          -3.675044735955893,
          -3.7364761820276966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.418494636403444,
          -2.942338818066408,
          -3.04493154614916,
          -3.3614634023667214,
          -4.282712723035266,
          -4.872616555783219,
          -7,
          -7,
          -7,
          -3.615550274725666,
          -7,
          -4.944137073158098,
          -7,
          -3.3731695589037214,
          -7,
          -3.3917288224907427,
          -7,
          -4.285669805960068,
          -7,
          -7,
          -7,
          -4.168939213835978,
          -7,
          -7,
          -3.6549141836078363,
          -3.225262277614999,
          -7,
          -4.160208336707736,
          -7,
          -7,
          -7,
          -3.550921040371087,
          -1.7542390929782323,
          -7,
          -7,
          -3.0043213737826426,
          -3.1322596895310446,
          -2.065848845441796,
          -7,
          -2.494711025205263,
          -2.66838591669,
          -2.664328518680805,
          -2.6634867656723524,
          -2.131502012593951,
          -7,
          -7,
          -2.4074928794601025,
          -2.476638437013566,
          -2.706331625343998,
          -2.0492180226701815,
          -2.300305567669649,
          -2.901094895030216,
          -2.324429449539036,
          -2.130333768495006,
          -2.0724478633886565,
          -3.1784013415337555,
          -1.8348973393414871,
          -2.2077241069247497,
          -3.1248301494138593,
          -2.170848203643309,
          -7,
          -2.6164755138885654,
          -7,
          -2.4056877866727775,
          -7,
          -7,
          -2.8941702626757158,
          -2.398574855225215,
          -2.3889769626014203,
          -7,
          -2.0293837776852097,
          -7,
          -2.4685934593401977,
          -7,
          -7,
          -2.851869600729766,
          -2.876939140345395,
          -2.9132839017604186,
          -2.2422100322640643,
          -2.4320669125427994,
          -7,
          -2.332680789215245,
          -7,
          -1.7376579998153256,
          -7,
          -2.0453229787866576,
          -2.8739015978644615,
          -2.871864702088195,
          -3.0606382077267607,
          -7,
          -7,
          -2.5728716022004803,
          -2.5709672628095492,
          -2.2380461031287955,
          -3.0969100130080562,
          -3.0637085593914173,
          -2.399327532158679,
          -7,
          -2.8261504195347094,
          -2.529772453228238,
          -2.255272505103306,
          -7,
          -2.241795431295199,
          -2.8640658790902367,
          -7,
          -2.2920977719262914,
          -2.300305567669649,
          -2.6138418218760693,
          -2.1912646619703375,
          -1.6368220975871743,
          -7,
          -2.833784374656479,
          -2.737987326333431,
          -7,
          -7,
          -3.2754649240207465,
          -7,
          -3.495821753385906,
          -2.2764618041732443,
          -2.2780673308886628,
          -2.2177470732627937,
          -2.0952719366411383,
          -2.702215059149166,
          -7,
          -7,
          -2.505678722692645,
          -2.50454637227152,
          -7,
          -1.9816807577862645,
          -3.0197392326747052,
          -1.8077431231767653,
          -2.255736247252979,
          -2.5643980501637254,
          -2.3888114134735234,
          -2.5532760461370994,
          -2.620829816274487,
          -7,
          -7,
          -2.3710678622717363,
          -7,
          -2.2327286876731725,
          -7,
          -2.8603380065709936,
          -7,
          -1.9811768322540424,
          -7,
          -3.003029470553618,
          -2.150449409460881,
          -7,
          -3.0128372247051725,
          -7,
          -2.3364597338485296,
          -2.2624510897304293,
          -2.3204924754334133,
          -7,
          -7,
          -2.1996866278914977,
          -7,
          -2.7788744720027396,
          -7,
          -2.45687190911158,
          -2.3106933123433606,
          -7,
          -2.659397536216122,
          -2.5180351146012647,
          -3.215637563435062,
          -7,
          -7,
          -1.6472456655033265,
          -2.515873843711679,
          -7,
          -2.6228669789943773,
          -7,
          -7,
          -2.317366791939507,
          -2.472091271546032,
          -2.5282737771670436,
          -7,
          -7,
          -2.958085848521085,
          -7,
          -2.4512380145877897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071605884917739,
          -7,
          -7,
          -7,
          -7,
          -3.770557474850995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.937609063316496,
          -7,
          -7,
          -2.922552466761376,
          -3.295313299732073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100198171834132,
          -3.2730012720637376,
          -7,
          -7,
          -3.2846562827885157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8898430655962555,
          -7,
          -7,
          -3.3016809492935764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.876506504265881,
          -3.822625678774141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2706788361447066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0883487522885287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3432115901797474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.982019832464153,
          -3.3240765797394864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0532705666813786,
          -7,
          -7,
          -7,
          -7,
          -3.358315640082196,
          -7,
          -7,
          -3.022634539944119,
          -7,
          -3.1618669046240195,
          -2.9682493941079175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.210764270129043,
          -3.450433875172564,
          -7,
          -7,
          -7,
          -4.050016080603039,
          -7,
          -3.404149249209695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9893689057927917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3246253644997976,
          -7,
          -7,
          -3.362293937964231,
          -7,
          -7,
          -7,
          -7,
          -3.3332456989619628,
          -3.31270614559789,
          -3.407900540142635,
          -7,
          -7,
          -7,
          -3.5270173329247743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388633969351789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0241855933138573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.909556029241175,
          -7,
          -2.9002677932301673,
          -7,
          -7,
          -2.7103334589000303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.267406418752904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.611487278391802,
          -7,
          -3.3760291817281805,
          -7,
          -7,
          -7,
          -7,
          -2.519171463821659,
          -3.2460059040760294,
          -7,
          -7,
          -2.953034457250357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.568788212315347,
          -7,
          -3.2060158767633444,
          -3.5858751617487856,
          -7,
          -7,
          -7,
          -2.7427251313046983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0097212316193764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7884040804994115,
          -7,
          -7,
          -3.4207806195485655,
          -7,
          -3.3005954838899636,
          -2.53585649562398,
          -7,
          -7,
          -7,
          -7,
          -2.4283373095287994,
          -2.853833358651982,
          -7,
          -3.175551345592731,
          -7,
          -7,
          -7,
          -2.851105401197895,
          -7,
          -7,
          -3,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.356599435724971,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.261976191397813,
          -2.848086434763257,
          -7,
          -7,
          -7,
          -3.447158031342219,
          -7,
          -7,
          -3.5595475555804343,
          -7,
          -7,
          -7,
          -7,
          -2.5505340865995074,
          -2.8502376796666677,
          -7,
          -7,
          -7,
          -7,
          -3.598106255035145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.43554815511796,
          -7,
          -2.653051634172873,
          -3.9617650709235295,
          -3.4143046881283317,
          -7,
          -7,
          -7,
          -2.78993308093175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.347720217034038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5921767573958667,
          -7,
          -7,
          -3.4577002722181076,
          -4.4583053921180165,
          -4.303563215917248,
          -7,
          -3.411206332727312,
          -2.9564085711958326,
          -2.45178643552429,
          -4.123001813306024,
          -2.7664363303175405,
          -7,
          -2.5831633372681906,
          -3.6892533475901,
          -3.4664505419101532,
          -3.4905938285395868,
          -2.5543978789552284,
          -3.613122686057697,
          -3.9379690029514527,
          -3.0127997435208993,
          -3.154918245723459,
          -3.721583931807987,
          -3.6796549786993333,
          -3.902594337119436,
          -3.475768010191268,
          -3.105044184864794,
          -2.9792230848365144,
          -4.199700338629511,
          -3.5615386395828335,
          -3.1718288005614204,
          -7,
          -2.8353651041047767,
          -2.8617494140448767,
          -3.753145151639366,
          -3.2735336801512975,
          -2.8383767747778115,
          -2.5455320229865954,
          -4.274711914167965,
          -7,
          -3.423773626101113,
          -2.9675145470935016,
          -7,
          -7,
          -3.6347906462565187,
          -3.104808335056258,
          -2.3215293907256065,
          -7,
          -3.8063835018241674,
          -7,
          -4.0848145085941185,
          -3.4043775248953203,
          -7,
          -3.4243915544102776,
          -3.8849368971038603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7502511875699738,
          -3.27600198996205,
          -7,
          -3.127050778278675,
          -3.840639221302228,
          -4.875943432270175,
          -7,
          -7,
          -7,
          -3.673236003278857,
          -7,
          -4.949765582122831,
          -3.0457922327295592,
          -7,
          -7,
          -7,
          -4.066661302300677,
          -7,
          -7,
          -7,
          -7,
          -3.502263204344856,
          -7,
          -7,
          -3.2785457548220838,
          -3.3022739518555517,
          -7,
          -3.8034863797892493,
          -7,
          -7,
          -7,
          -3.5952757118020995,
          -2.446270810437326,
          -7,
          -7,
          -2.330210784571528,
          -2.7822445368764037,
          -1.4957483370250002,
          -7,
          -1.7102335465419447,
          -1.8142046196810313,
          -1.7334265652607361,
          -2.1733028418881863,
          -1.354321904121914,
          -3.298197867109815,
          -7,
          -1.9846149758131035,
          -1.3738311450738303,
          -2.4705872752836098,
          -1.8704748452468267,
          -1.6112403829248851,
          -2.314610663315729,
          -2.1296527163487453,
          -1.718262357736775,
          -1.4418478143140785,
          -1.8949534731079374,
          -0.5661427555146684,
          -1.8084360542881113,
          -2.2762850101622933,
          -1.4815125406856344,
          -2.3394514413064407,
          -2.338013561917151,
          -2.952792443044092,
          -1.7596138917133635,
          -2.1341771075767664,
          -2.6532125137753435,
          -2.360556678753837,
          -2.301640293264161,
          -1.9008031495820312,
          -7,
          -1.788701432716952,
          -3.322839272686321,
          -2.137474681744051,
          -2.588159616383092,
          -3.2430380486862944,
          -2.967547976218862,
          -1.6124561285075514,
          -2.2095150145426308,
          -1.261208285183812,
          -1.5434847071478615,
          -7,
          -1.6154932128305772,
          -1.7376579998153256,
          -7,
          -7,
          -1.3766521986509315,
          -2.1933565313276127,
          -1.7533276666586115,
          -2.371886334353305,
          -2.263958684288399,
          -2.567731962548069,
          -2.577261953585815,
          -2.6402329136549687,
          -1.6657230891384838,
          -2.1433822236955566,
          -2.456935102197454,
          -1.9189347135428458,
          -2.848394408643486,
          -2.2164665449283945,
          -2.732594775555279,
          -1.5729617843078287,
          -1.853871964321762,
          -1.624488362513449,
          -2.917417976652542,
          -7,
          -2.0698398148530557,
          -1.8840397404753637,
          -2.6913025633834833,
          -2.057539321108782,
          -1.135912354426246,
          -3.243534101832062,
          -7,
          -1.4338119269204794,
          -2.413113411586694,
          -2.397746945996307,
          -2.204507572580716,
          -2.316145147021726,
          -2.5499224041295117,
          -1.451674132507183,
          -1.7914827158151627,
          -1.4456495390930346,
          -1.8630523559186847,
          -1.4076494900585457,
          -3.247236549506764,
          -2.4671145890738178,
          -2.165226863891662,
          -1.6858536557480714,
          -1.8685268867682039,
          -1.3311130078939017,
          -2.168612933906424,
          -1.7433529514095556,
          -1.771148039831543,
          -2.4260674243490388,
          -1.621325570893433,
          -3.2704459080179626,
          -2.3359135659099737,
          -3.267406418752904,
          -3.2513948500401044,
          -2.4147645023395254,
          -2.323252100171687,
          -1.7001945196638903,
          -3.254064452914338,
          -2.4244149042036596,
          -7,
          -1.0958209128367133,
          -7,
          -2.553073530637089,
          -2.3636119798921444,
          -1.6937744673308175,
          -1.5923234324930717,
          -1.7502979638618927,
          -1.3329079675093363,
          -1.5120517683287142,
          -2.0672268892739267,
          -2.5103534801122604,
          -7,
          -1.2817248404685946,
          -7,
          -7,
          -7,
          -3.303196057420489,
          -2.5143263432841403,
          -3.3057811512549824,
          -2.5853197019112546,
          -2.029291521820412,
          -2.8677620246502005,
          -2.5770319856260313,
          -3.241795431295199,
          -2.0947039943211667,
          -2.7783924580998707,
          -2.941511432634403,
          -2.7428736842330848,
          -7,
          -7,
          -2.011234928974885,
          -1.7939117977421835,
          -2.9206450014067875,
          -7,
          -7,
          -7,
          -3.2430380486862944,
          -1.9293323179800537,
          -3.245018870737753,
          -7,
          -3.2400497721126476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9294189257142926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517077077735613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.73559889969818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.754348335711019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388988785124714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9444826721501685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.53655844257153,
          -7,
          -2.673020907128896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067321982033744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.462397997898956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5991185650553628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605402024154815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3636119798921444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.99563519459755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.344195715871435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.73200754860863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.702878387059499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.161966616364075,
          -7,
          -7,
          -3.688330818112266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.350867996286564,
          -4.678081133111508,
          -7,
          -7,
          -7,
          -7,
          -4.609679765845366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.302125207107494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.296665190261531,
          -7,
          -7,
          -7,
          -7,
          -2.123851640967086,
          -7,
          -7,
          -7,
          -4.325413029667313,
          -2.294466226161593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6848453616444123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639386869017684,
          -7,
          -7,
          -7,
          -1.7254448998676408,
          -7,
          -2.0492180226701815,
          -7,
          -2.143014800254095,
          -2.9108022122537744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.369745808033441,
          -2.9633155113861114,
          -7,
          -7,
          -1.8293037728310249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9044594722217942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.184691430817599,
          -3.6961815871685237,
          -7,
          -7,
          -2.2648178230095364,
          -7,
          -7,
          -1.7323937598229684,
          -3.2805783703680764,
          -7,
          -7,
          -3.7066324508732946,
          -7,
          -3.4082399653118496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.24551266781415,
          -7,
          -4.309545003295436,
          -7,
          -7,
          -3.977014440868899,
          -7,
          -1.5409548089261327,
          -7,
          -1.8129133566428557,
          -7,
          -2.269512944217916,
          -7,
          -7,
          -7,
          -2.184691430817599,
          -7,
          -3.8447877188278463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3489859568078573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9735665465930157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.526339277389844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.423245873936808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.692758818154724,
          -7,
          -7,
          -2.9740509027928774,
          -7,
          -7,
          -3.154880244718762,
          -3.652343055062715,
          -7,
          -2.711244671343486,
          -4.036155338400719,
          -7,
          -7,
          -2.895422546039408,
          -7,
          -7,
          -7,
          -3.4518808627642996,
          -7,
          -7,
          -2.9523080096621253,
          -2.6798819421128623,
          -2.7415455167762097,
          -2.8937617620579434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2276725026453836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.053347392169267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0923696996291206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1645985157488954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.218535505216528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0832875693272825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8388822164366654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.478566495593843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0874264570362855,
          -7,
          -7,
          -3.3527210309601645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.192455938511975,
          -7,
          -7,
          -3.5300074899760445,
          -7,
          -7,
          -7,
          -7,
          -3.1316186643491255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0111473607757975,
          -7,
          -7,
          -7,
          -3.118430077122089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.306207442837337,
          -7,
          -7,
          -7,
          -2.7955324427101544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.732647658971915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7385427409287852,
          -7,
          -3.9034698285071703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.571825249040829,
          -7,
          -7,
          -3.4974134646862063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2474822606770544,
          -7,
          -7,
          -7,
          -4.197008176980776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.320051968271859,
          -7,
          -7,
          -4.0751087964165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.471438407389299,
          -7,
          -7,
          -3.9251573271758984,
          -4.450933891015594,
          -7,
          -7,
          -4.437845653390831,
          -7,
          -3.2696685774329497,
          -7,
          -4.1359114555750605,
          -7,
          -3.577721524509021,
          -4.104464348950593,
          -7,
          -4.806573375125132,
          -2.9257245269360626,
          -7,
          -4.3987036951130785,
          -3.295547978155418,
          -7,
          -7,
          -7,
          -4.626384855468794,
          -3.9035782936630543,
          -4.010914489420639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.709151192339796,
          -4.237166582685473,
          -4.587654850995718,
          -4.251005173493635,
          -7,
          -7,
          -7,
          -7,
          -3.8831691450660495,
          -7,
          -7,
          -7,
          -7,
          -3.537714180353135,
          -7,
          -7,
          -4.073388381115178,
          -7,
          -4.073143797726908,
          -7,
          -7,
          -3.7897216939809217,
          -4.157758886046864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.201861216277263,
          -7,
          -7,
          -7,
          -4.079380252083097,
          -7,
          -7,
          -2.9189036418889307,
          -7,
          -3.5760270615789516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.611245214834831,
          -3.339463133018275,
          -7,
          -4.639167623995889,
          -7,
          -7,
          -3.660675788338524,
          -7,
          -3.000434077479319,
          -7,
          -7,
          -2.5969634343085812,
          -3.394171400415131,
          -2.094615974413513,
          -7,
          -3.2430380486862944,
          -2.4424797690644486,
          -2.7711463488149852,
          -3.060404015244707,
          -2.0442783733957133,
          -7,
          -7,
          -2.539538289847167,
          -1.67502804868833,
          -2.854771469382554,
          -2.887617300335736,
          -2.1367205671564067,
          -1.5547028876074942,
          -2.4847268042986617,
          -2.0869527242574843,
          -2.3389874160202413,
          -2.446640706109038,
          -2.6368220975871743,
          -2.6524880857810116,
          -2.478566495593843,
          -1.7481880270062005,
          -7,
          -2.7019994748896368,
          -7,
          -2.4839437142904197,
          -2.3408405498123317,
          -2.9237619608287004,
          -2.9996814005458545,
          -2.7703020479535585,
          -2.8472367506682015,
          -7,
          -1.0493942427910425,
          -7,
          -1.9392922892050897,
          -2.9903388547876015,
          -7,
          -2.949877704036875,
          -2.4608978427565478,
          -2.520701826026063,
          -1.677606952720493,
          -1.6066023341156235,
          -7,
          -2.4671015942209,
          -2.0453229787866576,
          -1.3766521986509315,
          -7,
          -7,
          -2.2648178230095364,
          -7,
          -3.2292485325945703,
          -2.7287594751678745,
          -7,
          -2.6665179805548807,
          -3.155538458574251,
          -2.3947642803372315,
          -2.8536982117761744,
          -2.5224442335063197,
          -2.6028943709926877,
          -3.061829307294699,
          -2.5256871158248355,
          -7,
          -2.2061154317675733,
          -2.028977705208778,
          -2.6138418218760693,
          -3.2537740196788794,
          -7,
          -2.6092894271326985,
          -1.957447649314536,
          -3.0017337128090005,
          -7,
          -1.6728672017718136,
          -7,
          -7,
          -3.182414652434554,
          -7,
          -1.2858154554403158,
          -2.987591791037401,
          -2.486288760960566,
          -3.2187979981117376,
          -1.6715012994876535,
          -2.2239036770313434,
          -2.508613876414027,
          -2.157418988613354,
          -2.1058106306359194,
          -2.6009728956867484,
          -2.2008504980910777,
          -2.9813881752136666,
          -2.307353389042854,
          -2.2648178230095364,
          -2.1001890976606084,
          -2.7326411505912094,
          -2.430903949947793,
          -2.299125788809188,
          -2.7251829315824416,
          -1.8886006620281743,
          -7,
          -1.6936641487670914,
          -7,
          -7,
          -2.3494717992143856,
          -7,
          -2.422488823515177,
          -2.214843848047698,
          -2.6546577546495245,
          -7,
          -1.77222428759243,
          -7,
          -1.759290033024304,
          -2.951823035315912,
          -2.3650197428165347,
          -1.7250201619541745,
          -2.1968207439144254,
          -2.061954844073114,
          -2.4144162029529017,
          -2.1487325081429565,
          -7,
          -7,
          -1.7896420142298675,
          -7,
          -7,
          -7,
          -2.315970345456918,
          -7,
          -7,
          -2.76217822440723,
          -2.580696939712437,
          -3.5400790888041724,
          -2.666049738480516,
          -7,
          -3.1492191126553797,
          -2.9232440186302764,
          -7,
          -2.8755732063094888,
          -7,
          -7,
          -2.614264287358705,
          -2.3899251194809668,
          -2.8847953639489807,
          -7,
          -7,
          -7,
          -7,
          -2.4705574852172743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658993413729996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -3.9017306917292185,
          -7,
          -7,
          -7,
          -3.8363413812454157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5477747053878224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.404149249209695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788168371141168,
          -3.0523090996473234,
          -7,
          -7,
          -7,
          -4.029424364058016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.244277120801843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.425697213362591,
          -7,
          -3.819925420670676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.53655844257153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2824710539263124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.217878578027433,
          -7,
          -7,
          -7,
          -7,
          -4.134591434710877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.485579476984679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.11277252110537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7641761323903307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -7,
          -2.7902851640332416,
          -7,
          -7,
          -3.8832151518408686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.225567713439471,
          -7,
          -7,
          -7,
          -7,
          -3.2231342182366127,
          -2.3979400086720375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5453071164658243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3961993470957363,
          -7,
          -7,
          -7,
          -2.6232492903979003,
          -2.2764618041732443,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -2.2900346113625183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.547402381300456,
          -7,
          -7,
          -2.3096301674258988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6854730197227594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.185825359612962,
          -7,
          -7,
          -7,
          -2.9829492885744986,
          -7,
          -3.68761812957177,
          -7,
          -4.196259110505376,
          -7,
          -7,
          -7,
          -2.658859007527588,
          -7,
          -7,
          -3.1556396337597765,
          -3.1354506993455136,
          -7,
          -7,
          -2.255272505103306,
          -7,
          -2.5428254269591797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4258601450778405,
          -7,
          -7,
          -7,
          -4.606972205508573,
          -7,
          -7,
          -3.7545776560447304,
          -7,
          -7,
          -2.709269960975831,
          -7,
          -3.1082266563749283,
          -2.7450747915820575,
          -7,
          -7,
          -2.9745116927373285,
          -7,
          -4.620916458565429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5308397786165204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3096301674258988,
          -7,
          -7,
          -7,
          -7,
          -5.4330638317805935,
          -7,
          -2.7535830588929064,
          -3.9427023688886678,
          -3.00987563371216,
          -7,
          -2.747411807886423,
          -7,
          -2.9537596917332287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -2.671543085262574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3119656603683665,
          -7,
          -7,
          -4.256027841969174,
          -7,
          -4.031165999660659,
          -7,
          -7,
          -7,
          -3.791164125033335,
          -7,
          -7,
          -4.174708970233648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.449817679720294,
          -7,
          -4.40308618823917,
          -4.221648928192229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.751279103983342,
          -7,
          -3.3997818490757465,
          -3.255754786643044,
          -7,
          -4.050573076755148,
          -7,
          -4.5428378707488655,
          -3.7812525942484565,
          -2.9020028913507296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3434085938038574,
          -7,
          -4.052617000746292,
          -4.377697741146842,
          -7,
          -7,
          -3.2757719001649312,
          -7,
          -3.766008960973985,
          -7,
          -7,
          -3.601081727784023,
          -7,
          -7,
          -3.6536947953150816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.423245873936808,
          -7,
          -3.826495928923713,
          -3.7179081470475372,
          -7,
          -4.155922798949886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071661123441788,
          -2.5554079701072574,
          -1.1832698436828046,
          -1.7207497786592607,
          -2.403120521175818,
          -2.5244888507220873,
          -3.143505503331407,
          -2.7327956982893293,
          -2.0086001717619175,
          -7,
          -2.73610663443214,
          -7,
          -3.2657813960273496,
          -1.3217145945238322,
          -1.88309335857569,
          -2.9923325590474645,
          -2.324440754727877,
          -2.6077230235205526,
          -2.5253687865236367,
          -7,
          -2.541579243946581,
          -2.3950350180286306,
          -2.957607287060095,
          -2.3287872003545345,
          -1.6685292718594495,
          -1.816241299991783,
          -7,
          -3.130076332517164,
          -7,
          -7,
          -3.7697021868101284,
          -2.977186616645736,
          -3.699782558847431,
          -7,
          -3.059752694209299,
          -1.5902071645329623,
          -3.1300119496719043,
          -1.0372890847194476,
          -7,
          -1.529879303882462,
          -1.8981421668383482,
          -7,
          -2.0962145853464054,
          -2.991779669753309,
          -1.738384123512156,
          -2.9993045723383487,
          -2.8739015978644615,
          -2.1933565313276127,
          -1.369745808033441,
          -2.2648178230095364,
          -7,
          -2.066532978754233,
          -3.8543667780408697,
          -7,
          -1.2993564117744152,
          -1.588271706842329,
          -7,
          -2.7632237318290302,
          -7,
          -7,
          -3.3641756327706194,
          -1.7708520116421442,
          -2.881388268712521,
          -1.3026355223793997,
          -2.917330426106554,
          -1.9758911364017928,
          -2.497620649781288,
          -3.922777341928798,
          -2.4756711883244296,
          -2.804480189105993,
          -2.591064607026499,
          -1.7414892646574982,
          -1.2918866162241114,
          -2.541579243946581,
          -1.5340261060561349,
          -1.5422917863244727,
          -1.9986616492277378,
          -1.924853370060748,
          -2.5378190950732744,
          -2.393366257159277,
          -2.66838591669,
          -2.7320719409998664,
          -1.6867355479190071,
          -2.6102505672074927,
          -2.8822398480188234,
          -3.2362852774480286,
          -2.9011857801371503,
          -7,
          -7,
          -3.2274893735743424,
          -3.3919930722597127,
          -1.5314789170422551,
          -2.657294935980072,
          -3.5342800052050816,
          -2.330413773349191,
          -3.2571023326591644,
          -3.239572462938868,
          -2.980154931341663,
          -1.5393897820725049,
          -2.6175245348862926,
          -1.1050617650276022,
          -7,
          -1.4060917606915835,
          -1.8311381767490547,
          -3.4559102403827433,
          -1.7323937598229684,
          -1.4975439260849654,
          -7,
          -2.61687690940715,
          -2.399673721481038,
          -7,
          -7,
          -2.0320812676114404,
          -2.478566495593843,
          -2.541579243946581,
          -2.3483048630481607,
          -3.4034637013453173,
          -3.3234583668494677,
          -2.0644579892269186,
          -7,
          -2.6299190355035416,
          -7,
          -7,
          -7,
          -2.640481436970422,
          -2.1183749671059116,
          -7,
          -2.6208928305639048,
          -3.2065560440990297,
          -7,
          -2.509202522331103,
          -7,
          -3.044147620878723,
          -7,
          -7,
          -3.198313363563387,
          -7,
          -7,
          -3.1640552918934515,
          -3.455758203104137,
          -2.9684829485539352,
          -7,
          -7,
          -2.6830470382388496,
          -7,
          -3.249809609401804,
          -7,
          -7,
          -2.2174839442139063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8877672897973903,
          -7,
          -7,
          -7,
          -7,
          -3.1020905255118367,
          -7,
          -7,
          -7,
          -7,
          -2.9656719712201065,
          -3.161767169985413,
          -7,
          -7,
          -2.924795995797912,
          -3.580856577457996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6807886115066824,
          -7,
          -7,
          -7,
          -2.5906932564421776,
          -2.973589623427257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5595076406424986,
          -3.463519723400486,
          -7,
          -7,
          -7,
          -7,
          -2.9863237770507656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058577849133225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.23792056635038,
          -7,
          -3.0398105541483504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0425755124401905,
          -2.8048206787211623,
          -7,
          -3.0093221052868215,
          -7,
          -2.9943171526696366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1562461903973444,
          -7,
          -7,
          -7,
          -7,
          -3.161966616364075,
          -7,
          -7,
          -7,
          -7,
          -4.088171539864352,
          -3.0132586652835167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.129689892199301,
          -2.6590961883427093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.231979026831504,
          -7,
          -7,
          -7,
          -7,
          -2.7489628612561616,
          -7,
          -7,
          -3.0417434884744745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4398850808173016,
          -3.22219604630172,
          -3.5324995860946626,
          -3.168202746842631,
          -7,
          -7,
          -7,
          -7,
          -3.121887985103681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.208710019906401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.189786987593324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.936276058415254,
          -7,
          -7,
          -2.8102325179950842,
          -7,
          -3.1734776434529945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9793966030856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7528164311882715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8454081396217936,
          -7,
          -7,
          -4.1103080468020226,
          -7,
          -7,
          -2.9763499790032735,
          -2.4409090820652177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.063750228327108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.989894563718773,
          -7,
          -2.754157142891773,
          -7,
          -7,
          -7,
          -2.948412965778601,
          -3.123524980942732,
          -2.1196328810393728,
          -7,
          -4.206407565044267,
          -7,
          -7,
          -7,
          -7,
          -2.7264555202583103,
          -2.929929560084588,
          -3.3372595397502756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.857633985150008,
          -3.0948203803548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.929801957767847,
          -2.8901414600645774,
          -7,
          -7,
          -3.915821787620399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.82865989653532,
          -2.811909980420099,
          -7,
          -7,
          -7,
          -7,
          -3.078712230584682,
          -7,
          -7,
          -7,
          -7,
          -3.28397928423848,
          -2.851869600729766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.204798038190855,
          -4.2037525929992885,
          -7,
          -7,
          -7,
          -3.24699069924155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8435442119456353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3737605108568895,
          -7,
          -7,
          -3.4792255786863295,
          -4.7530312233905745,
          -4.285264680481154,
          -7,
          -4.440011242111454,
          -7,
          -2.8534700560147392,
          -7,
          -2.113388887581343,
          -7,
          -3.214654654195042,
          -7,
          -4.362039283400967,
          -4.330352886677328,
          -2.6884369360445195,
          -7,
          -3.6227492192709927,
          -2.851621383349694,
          -7,
          -7,
          -7,
          -5.103988342354368,
          -7,
          -2.8297913511939936,
          -7,
          -7,
          -4.632619236619118,
          -7,
          -7,
          -2.655486914153674,
          -3.9395192526186187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5846138761717827,
          -7,
          -3.215329068686353,
          -7,
          -4.278776457955645,
          -4.31893939156067,
          -7,
          -7,
          -4.07838430874819,
          -7,
          -3.1897221619552822,
          -7,
          -3.3694014136966244,
          -4.095622595021622,
          -3.559637350780155,
          -3.7610252517113727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.890551417985771,
          -3.414625592612454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4187982905903533,
          -7,
          -4.292743271377071,
          -7,
          -3.4108615542165976,
          -7,
          -3.7009343568115676,
          -2.8305886686851442,
          -7,
          -2.904068176024568,
          -3.726645720240912,
          -7,
          -4.64053112457209,
          -7,
          -7,
          -3.6734816970733473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7970943426302544,
          -2.026191965559533,
          -2.5571060060508883,
          -1.461906714495997,
          -2.4931093601037926,
          -2.585883537734565,
          -2.5875030989919194,
          -1.6882220108027965,
          -7,
          -7,
          -2.348694190265541,
          -3.0863598306747484,
          -3.2926486926420218,
          -1.872685900230887,
          -2.579497782534824,
          -3.432969290874406,
          -3.1955537388251134,
          -3.374748346010104,
          -2.631570588836501,
          -2.959756672990995,
          -2.4572761860613257,
          -2.365838835440669,
          -3.2174839442139063,
          -2.7812765493758462,
          -7,
          -7,
          -7,
          -2.5940434390367693,
          -7,
          -2.6875289612146345,
          -3.3331160652665863,
          -2.646217420011067,
          -2.882703835811221,
          -2.9804578922761,
          -3.1815577738627865,
          -2.6263403673750423,
          -7,
          -2.4428715548211977,
          -7,
          -2.7101173651118162,
          -1.878682081342444,
          -7,
          -2.4367985102318035,
          -3.669688708056208,
          -2.9858753573083936,
          -2.209897821514885,
          -2.871864702088195,
          -1.7533276666586115,
          -2.9633155113861114,
          -7,
          -2.066532978754233,
          -7,
          -3.3460007009567505,
          -3.08278537031645,
          -2.5323296410790315,
          -2.7263196121107756,
          -7,
          -1.386574644667463,
          -7,
          -3.1687920203141817,
          -3.7300551523755,
          -7,
          -2.1226285770080024,
          -2.1666603081752025,
          -2.274021941116145,
          -2.306067436355595,
          -3.137986732723532,
          -7,
          -7,
          -2.98878184345364,
          -2.8816699076720615,
          -7,
          -2.0516786212178384,
          -2.278225797182899,
          -7,
          -2.6976651626476746,
          -0.5055996361497943,
          -2.1335389083702174,
          -3.156851901070011,
          -2.4951790465148163,
          -2.922984815708883,
          -3.2364112877439664,
          -2.6143698395482886,
          -2.0681130729281074,
          -2.1769176998034636,
          -2.914166793875635,
          -3.3688445068258215,
          -7,
          -7,
          -2.923649417232252,
          -2.601380875502475,
          -2.7255032688593155,
          -2.3263358609287517,
          -2.103845169179113,
          -2.225093804429503,
          -2.3336039908101927,
          -3.121275254704084,
          -2.9660075670036736,
          -7,
          -7,
          -3.0090257420869104,
          -7,
          -2.4972752863579952,
          -2.386880986817247,
          -3.5563025007672873,
          -7,
          -2.315550534421905,
          -7,
          -2.3426877729215305,
          -7,
          -7,
          -3.0136796972911926,
          -2.7275412570285567,
          -2.8276922886744456,
          -7,
          -3.075911761482778,
          -1.483523746328793,
          -3.454692449239477,
          -7,
          -7,
          -2.422699247707434,
          -2.2610248339923973,
          -7,
          -7,
          -3.0718820073061255,
          -2.452935870201179,
          -7,
          -3.1264561134318045,
          -2.9953060589380653,
          -3.5569052690554477,
          -3.0277572046905536,
          -7,
          -2.7709992051639407,
          -7,
          -7,
          -3.1802141284628545,
          -7,
          -7,
          -3.041392685158225,
          -3.25491044215453,
          -3.2234959409623944,
          -7,
          -7,
          -3.0881360887005513,
          -7,
          -3.1559430179718366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7328773476313475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7724115266843383,
          -3.699178415672612,
          -7,
          -3.8667204327514666,
          -3.0019319261726443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2809803088344367,
          -7,
          -7,
          -4.330920830595236,
          -7,
          -4.335136825371625,
          -7,
          -7,
          -7,
          -3.7545012293869173,
          -7,
          -3.853647520853222,
          -7,
          -7,
          -4.33374946248197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8764872659889766,
          -4.418450450829583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.347583686308583,
          -7,
          -7,
          -7,
          -2.996921912886755,
          -7,
          -7,
          -4.028835490094027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275138523943827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9474819330823383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.630976218273112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3881012015705165,
          -3.248102386173046,
          -7,
          -7,
          -7,
          -2.840273036699264,
          -7,
          -7,
          -4.347505649475902,
          -7,
          -7,
          -3.4277700279826964,
          -7,
          -7,
          -7,
          -2.867740479949696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.714212366993632,
          -7,
          -7,
          -7,
          -7,
          -3.959566046637928,
          -7,
          -7,
          -7,
          -4.0731866097643925,
          -4.34478512263266,
          -7,
          -7,
          -7,
          -3.916756533209448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.04153084778685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.191194759164397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3582395081717715,
          -7,
          -2.7786591702013523,
          -7,
          -7,
          -3.1691375262036536,
          -7,
          -4.035889806536247,
          -7,
          -3.86053763630648,
          -4.039037170468973,
          -4.346059433052574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.468229138961733,
          -7,
          -3.219939869134243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7313671298249993,
          -4.328868673852926,
          -7,
          -7,
          -2.7504143122960287,
          -3.5546102852261643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.338356873353703,
          -4.341315794596473,
          -4.086092764263604,
          -2.7372302618724946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.780006516518213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8554383867477418,
          -3.647167725824425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.408315357115164,
          -7,
          -3.414772858093331,
          -7,
          -2.403412075058249,
          -7,
          -7,
          -7,
          -3.079422453763852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.376595204340475,
          -7,
          -7,
          -7,
          -2.5750319221719042,
          -7,
          -7,
          -2.996219709466273,
          -7,
          -7,
          -7,
          -7,
          -4.350596864828633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.394350064207708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.700054385628239,
          -7,
          -2.8169694414205235,
          -7,
          -4.347739717920052,
          -3.3021375840925624,
          -4.345530558034622,
          -7,
          -7,
          -7,
          -4.343093345096137,
          -4.075966455076692,
          -7,
          -7,
          -7,
          -7,
          -4.338237298881058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.154205326806114,
          -2.383349427409276,
          -2.3020149037518745,
          -3.637489729512511,
          -2.972175602200704,
          -3.4106835243506506,
          -2.4135847287244094,
          -2.597184351345655,
          -1.879222692401706,
          -7,
          -1.7696844959347846,
          -1.5777084362726672,
          -2.902193001921932,
          -3.0126572169237327,
          -1.9900008485916754,
          -2.600842261159698,
          -2.360489612854706,
          -2.0334103511294153,
          -2.9992287931945603,
          -2.6210066189222463,
          -3.5610268074521003,
          -2.599433350934423,
          -2.852174904420303,
          -1.6527263796754403,
          -2.4174517633625174,
          -2.9459852948678504,
          -2.9876662649262746,
          -2.840415361234832,
          -3.752221362521766,
          -1.9798488744665137,
          -2.415761415240735,
          -2.9263865501223236,
          -2.9596205198487553,
          -2.5385930662861886,
          -2.4605459930373628,
          -3.121140821355396,
          -3.1291794789307543,
          -2.7333878793499453,
          -1.8752177377158223,
          -3.8786223149975245,
          -4.347622699467242,
          -3.590083553256622,
          -3.1375229005224505,
          -3.821824563121178,
          -7,
          -3.1293138563822125,
          -7,
          -3.4694344260533714,
          -4.1331555381979905,
          -3.8794590739205956,
          -2.456698912578988,
          -3.241434406207398,
          -3.8154781280733654,
          -7,
          -7,
          -7,
          -4.332559641467404,
          -7,
          -3.0293837776852097,
          -3.765929202203141,
          -4.0377451292695925,
          -3.121460358577064,
          -2.703212850278049,
          -2.8138144174810424,
          -7,
          -7,
          -4.332054495108195,
          -3.1582572723535107,
          -3.633097968969741,
          -3.7805773148311355,
          -3.399812119978673,
          -2.7625446007781327,
          -7,
          -3.027926923900929,
          -3.5399816774775767,
          -2.938476215234873,
          -3.6555993877807866,
          -7,
          -4.390440506647526,
          -2.43605164525564,
          -7,
          -7,
          -3.5573798033833013,
          -2.7960687999951257,
          -7,
          -2.784236791474462,
          -4.348791467560584,
          -7,
          -3.496462599613991,
          -3.350164918327805,
          -7,
          -7,
          -7,
          -2.9379389434628047,
          -2.280074923864183,
          -1.8620822651944848,
          -7,
          -3.268285379752997,
          -3.2556945307314797,
          -2.6614414777862088,
          -2.0524350335421793,
          -2.721849855734995,
          -7,
          -7,
          -2.160606408821159,
          -3.1299717055462297,
          -1.4718679935980048,
          -3.302114376956201,
          -3.164134662201509,
          -2.7493591928622245,
          -2.708404555762662,
          -2.248571774044563,
          -2.245162645730847,
          -1.9079845757798979,
          -2.7465344047134894,
          -2.934552554328816,
          -2.285736493934199,
          -2.4403383022601792,
          -4.337758671493417,
          -4.333205372625344,
          -4.32956058217531,
          -2.513389967131988,
          -2.5263998611218113,
          -4.329763875013317,
          -1.9848474035913466,
          -1.822845781490173,
          -1.5223035926343103,
          -4.028286509426278,
          -2.432148600147286,
          -7,
          -2.172931888794524,
          -7,
          -3.550269129965307,
          -7,
          -2.6833043979393607,
          -3.077044739437673,
          -3.492461047614479,
          -3.018076063645795,
          -7,
          -1.7682138941023071,
          -3.0606382077267607,
          -2.371886334353305,
          -7,
          -3.2292485325945703,
          -3.8543667780408697,
          -3.3460007009567505,
          -7,
          -3.011469746969986,
          -4.330778914230818,
          -7,
          -2.4326874301696493,
          -2.4684426226740652,
          -2.0026907670493985,
          -3.0167747537109664,
          -2.0944677032145895,
          -3.8588979572320037,
          -1.3914371383869562,
          -4.035969768696547,
          -1.8790996538569065,
          -4.033705151467852,
          -2.994517113298384,
          -2.604462774208763,
          -7,
          -0.9859959393208597,
          -2.5904078965706305,
          -3.730923519488264,
          -3.858276462425929,
          -2.3060610481219515,
          -7,
          -7,
          -3.0371665710609026,
          -3.738423783297755,
          -4.338994048444886,
          -2.8070067293866274,
          -3.1971426649725627,
          -4.377324467736556,
          -4.343290402353433,
          -2.321557007938544,
          -1.665195412347772,
          -2.416238675127561,
          -2.043498454033951,
          -7,
          -7,
          -2.38067441862354,
          -1.5187677020832215,
          -3.486228010560835,
          -2.3316373543153595,
          -1.6831881398524553,
          -3.236401595942225,
          -2.047157708190914,
          -2.197936592210945,
          -2.1444758842037395,
          -4.330941100576426,
          -2.65864725984816,
          -7,
          -3.483974250740474,
          -4.335558188065861,
          -3.6454615702388433,
          -2.9319298313009488,
          -7,
          -4.3311032263764995,
          -7,
          -1.6553518997858951,
          -7,
          -2.7118875349737244,
          -4.330900559667934,
          -4.331670190532614,
          -3.1905917966861046,
          -3.8548928032859053,
          -3.0546332107067022,
          -2.552207171798418,
          -2.20251480500679,
          -7,
          -7,
          -2.7609776951458618,
          -7,
          -7,
          -7,
          -3.187238619831479,
          -3.855902603038427,
          -3.488792371601868,
          -2.6607299938405795,
          -1.5380360795803627,
          -2.2787353144843996,
          -3.729407796963068,
          -7,
          -3.0251009610468134,
          -7,
          -7,
          -2.1842418562440282,
          -4.32888903983956,
          -7,
          -3.0310042813635367,
          -1.5401610352777684,
          -3.138993072190013,
          -7,
          -7,
          -4.334795422556774,
          -7,
          -1.5540799038901723,
          -4.02771646220899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.660372112436349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.909556029241175,
          -7,
          -7,
          -7,
          -4.87868261552967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.737852332664364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9696954111184732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.865400118179301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.877563299235066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0346284566253203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3717449567751165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.779957051246906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1982583425666515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.608526033577194,
          -7,
          -7,
          -3.7655195430979527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.098553743137019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9588027033995026,
          -7,
          -5.132262892280901,
          -7,
          -7,
          -4.546629020271727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.619427274881493,
          -4.271268362216237,
          -7,
          -7,
          -4.430478187932044,
          -2.6410773133253747,
          -3.40849436021236,
          -7,
          -4.257190419161368,
          -7,
          -3.337698805964078,
          -7,
          -7,
          -4.803436629576479,
          -3.617541997119941,
          -4.280942405998698,
          -7,
          -3.6530966864691754,
          -4.000650953629595,
          -4.308799103911129,
          -7,
          -7,
          -7,
          -4.0868436925849005,
          -4.077149794716969,
          -4.158663980813989,
          -7,
          -4.452047240809425,
          -7,
          -3.750996669417183,
          -4.2254126728659545,
          -7,
          -3.938544741419228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.005223424858136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5970000511866353,
          -4.143608034837595,
          -3.7134905430939424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.679405181871566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.681060243631812,
          -7,
          -7,
          -7,
          -7,
          -3.667452952889954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.15896526038341,
          -7,
          -2.9532323686103794,
          -7,
          -2.6317818729476508,
          -2.814913181275074,
          -2.550577745255679,
          -3.1499225661105013,
          -2.61066016308988,
          -7,
          -7,
          -3.488127496247458,
          -2.4913616938342726,
          -2.956403463201103,
          -3.0354297381845483,
          -2.6651117370750512,
          -2.721398375521505,
          -3.4533947936132776,
          -2.1638568026386698,
          -2.27307847310952,
          -2.1807708138746293,
          -2.623766000133931,
          -3.1965906541173066,
          -1.8980497623524202,
          -2.037426497940624,
          -7,
          -7,
          -7,
          -2.8835352601144084,
          -2.808210972924222,
          -7,
          -2.6910372643636857,
          -3.5280955685137827,
          -3.279635481413465,
          -7,
          -2.206646006705649,
          -7,
          -2.2671717284030137,
          -7,
          -7,
          -7,
          -3.437433443797971,
          -1.9444826721501685,
          -2.4110582391986624,
          -2.9104109399146885,
          -7,
          -2.453233375851931,
          -7,
          -2.263958684288399,
          -7,
          -2.7287594751678745,
          -7,
          -3.08278537031645,
          -3.011469746969986,
          -7,
          -7,
          -7,
          -3.5837653682849995,
          -2.8145139523682383,
          -2.0769133845918026,
          -2.032920808723266,
          -2.8997293311279466,
          -7,
          -3.5499836111596887,
          -7,
          -2.3369597851207042,
          -7,
          -7,
          -3.9302356527662847,
          -7,
          -2.514298659173731,
          -2.0573807905423553,
          -7,
          -2.82020145948564,
          -2.496699069633021,
          -7,
          -7,
          -3.6137361412618714,
          -2.9628426812012423,
          -7,
          -3.4295908022233017,
          -3.0330214446829107,
          -3.45499721730946,
          -3.022840610876528,
          -2.782313337723311,
          -2.2904056446887195,
          -1.9397568966638934,
          -2.194135761749324,
          -7,
          -7,
          -3.6705241577820797,
          -2.3339508043872472,
          -7,
          -2.446270810437326,
          -3.3153194652587508,
          -2.554186199069382,
          -2.618950946772595,
          -3.2842953482305264,
          -2.2207803128431354,
          -7,
          -2.20682587603185,
          -7,
          -2.5514499979728753,
          -2.8228216453031045,
          -7,
          -3.4774106879072515,
          -7,
          -2.6473829701146196,
          -7,
          -2.8526324579115143,
          -7,
          -2.381415942849977,
          -7,
          -2.673941998634088,
          -2.3950350180286306,
          -2.6928469192772297,
          -2.0681858617461617,
          -2.470802365112064,
          -2.2012019796387126,
          -7,
          -7,
          -1.9498333905342697,
          -7,
          -7,
          -7,
          -2.7649229846498886,
          -7,
          -7,
          -7,
          -2.570672638100542,
          -2.6312987867110733,
          -2.6702458530741238,
          -7,
          -7,
          -7,
          -7,
          -3.4359353272334707,
          -7,
          -7,
          -2.7269987279362624,
          -2.520701826026063,
          -2.426917713880816,
          -7,
          -7,
          -7,
          -7,
          -2.451668372595222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658621843187422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.585009279902461,
          -7,
          -7,
          -4.032457582714929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0232524596337114,
          -7,
          -7,
          -7,
          -2.3283796034387376,
          -7,
          -3.7019994748896368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9167433817375144,
          -7,
          -7,
          -7,
          -2.2833012287035497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.392696953259666,
          -7,
          -3.9163486522754605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3602525081936707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4353425998364004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1061908972634154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.761927838420529,
          -7,
          -7,
          -4.728093939379775,
          -7,
          -7,
          -7,
          -7,
          -2.2355284469075487,
          -2.342422680822206,
          -7,
          -3.215373152783422,
          -7,
          -3.8543667780408697,
          -7,
          -7,
          -3.3690487889403373,
          -7,
          -2.741151598851785,
          -7,
          -7,
          -7,
          -7,
          -2.625312450961674,
          -7,
          -2.6374897295125104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0172420845476458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.79309160017658,
          -7,
          -7,
          -5.149360774273305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1746411926604483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.684126925613075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8314431588415765,
          -7,
          -7,
          -2.8419848045901137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.82020145948564,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.334453751150931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0948203803548,
          -2.2329961103921536,
          -7,
          -7,
          -2.9561684304753633,
          -7,
          -4.796879480889998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3276994240014997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3847117429382823,
          -4.830931734844233,
          -7,
          -3.0402066275747113,
          -4.54435334413586,
          -2.992995098431342,
          -7,
          -7,
          -7,
          -7,
          -3.4234097277330933,
          -7,
          -1.9003671286564703,
          -7,
          -7,
          -2.486430478854434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3195791985677108,
          -7,
          -7,
          -4.617503579279065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431821944337311,
          -7,
          -4.029586671630457,
          -7,
          -7,
          -7,
          -4.3926442017384275,
          -7,
          -4.38737202701981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.226642860005068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.347973660278038,
          -7,
          -7,
          -2.559108289366632,
          -4.269746373130767,
          -3.1256330524746545,
          -3.7300551523755,
          -7,
          -7,
          -7,
          -7,
          -2.6627578316815743,
          -2.7146091386431936,
          -4.067480023931482,
          -4.137828663756581,
          -7,
          -7,
          -7,
          -7,
          -2.5211380837040362,
          -7,
          -4.183895915385611,
          -7,
          -7,
          -3.3983837273914785,
          -4.50246808922949,
          -7,
          -7,
          -7,
          -7,
          -4.309768523528787,
          -7,
          -7,
          -7,
          -3.753889331459834,
          -2.383815365980431,
          -7,
          -7,
          -7,
          -7,
          -3.6405808064896528,
          -7,
          -7,
          -3.4168068718229443,
          -7,
          -3.759106405842074,
          -4.261631565092629,
          -7,
          -4.632690068324521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.907187347522648,
          -2,
          -1.8001508005876772,
          -7,
          -3.063145637106638,
          -3.2880702826432477,
          -2.7168377232995247,
          -2.0922526548953835,
          -7,
          -2.6953357196809247,
          -7,
          -3.3967837584701703,
          -1.591570483009036,
          -2.3915231836751634,
          -3.285107029566812,
          -2.697308615276485,
          -7,
          -3.4243915544102776,
          -3.018284308426531,
          -2.5165353738957994,
          -2.7715874808812555,
          -7,
          -2.7130703258556395,
          -1.715243423087623,
          -2.561101383649056,
          -7,
          -3.127558302004633,
          -7,
          -7,
          -7,
          -3.2249810506270045,
          -4.138918170381583,
          -7,
          -7,
          -1.3319572471440413,
          -7,
          -1.2203986832211235,
          -7,
          -1.5947607525864629,
          -2.404149249209695,
          -7,
          -2.7730546933642626,
          -3.5901728315963144,
          -1.7829501332654125,
          -7,
          -7,
          -2.567731962548069,
          -1.8293037728310249,
          -7,
          -1.2993564117744152,
          -2.5323296410790315,
          -4.330778914230818,
          -7,
          -7,
          -1.0669467896306133,
          -7,
          -2.9574020277501365,
          -7,
          -7,
          -3.6617180576946593,
          -1.919078092376074,
          -3.0009977303577937,
          -1.9582452518929987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1028622998954396,
          -7,
          -1.94571471405986,
          -1.7624910040260096,
          -2.9312035254507522,
          -2.146128035678238,
          -2.031408464251624,
          -2.1566837328270956,
          -1.9542425094393248,
          -7,
          -2.672601582502419,
          -2.951823035315912,
          -3.4260230156898763,
          -2.460396637297684,
          -2.679923195447674,
          -7,
          -3.226342087163631,
          -7,
          -7,
          -7,
          -4.268437552261454,
          -3.0836817472743014,
          -1.8404197777364861,
          -3.2513948500401044,
          -3.6126779183165016,
          -2.396896449142524,
          -3.352230770373165,
          -3.6783362467321803,
          -3.2786774022541683,
          -1.4186694935307818,
          -7,
          -1.7652959296980566,
          -7,
          -1.7662268935741685,
          -2.1884597362982907,
          -7,
          -2.2624510897304293,
          -7,
          -7,
          -3.069328864563374,
          -2.3263358609287517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3153404766272883,
          -2.824125833916549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1829849670035815,
          -3.5025636691073636,
          -7,
          -7,
          -7,
          -3.036429265626675,
          -7,
          -7,
          -3.6749070468191296,
          -7,
          -7,
          -3.1522883443830563,
          -3.4497868469857735,
          -2.949877704036875,
          -7,
          -7,
          -2.3434085938038574,
          -7,
          -3.245018870737753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7693773260761385,
          -7,
          -7,
          -7,
          -3.9018395920512297,
          -3.5896145406312665,
          -7,
          -2.9745116927373285,
          -3.9235260859825862,
          -7,
          -7,
          -2.2600713879850747,
          -7,
          -7,
          -7,
          -4.081755242535474,
          -7,
          -7,
          -7,
          -2.246744709723841,
          -2.699837725867246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3010299956639813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.404320467221731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7895807121644256,
          -7,
          -7,
          -7,
          -7,
          -4.029505525426577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.801403710017355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.367355921026019,
          -7,
          -7,
          -1.8672710189654482,
          -7,
          -2.7730546933642626,
          -7,
          -7,
          -7,
          -2.7299742856995555,
          -7,
          -3.6737710864286717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.303196057420489,
          -7,
          -2.6364878963533656,
          -7,
          -7,
          -7,
          -2.084576277934331,
          -7,
          -2.9978230807457256,
          -7,
          -3.519434194913703,
          -4.0984014222700775,
          -7,
          -7,
          -7,
          -4.259562026270737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0757293997408985,
          -7,
          -3.4260230156898763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0754009555138975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4892551683692603,
          -7,
          -7,
          -4.1263181429721,
          -7,
          -7,
          -7,
          -2.403120521175818,
          -7,
          -2.416640507338281,
          -7,
          -3.226084115975824,
          -7,
          -3.8568496787251725,
          -7,
          -7,
          -3.391724185094446,
          -7,
          -7,
          -7,
          -7,
          -2.8750612633917,
          -7,
          -2.665580991017953,
          -7,
          -7,
          -7,
          -7,
          -3.1398790864012365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0257153839013404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.306425027550687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.130333768495006,
          -7,
          -7,
          -2.341104638894293,
          -7,
          -7,
          -4.672353431245972,
          -7,
          -2.0232524596337114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.553883026643874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1863912156954934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1562461903973444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9146956688935866,
          -7,
          -2.595496221825574,
          -2.2706788361447066,
          -7,
          -7,
          -7,
          -7,
          -3.426185825244511,
          -7,
          -7,
          -7,
          -4.606993675475054,
          -2.530199698203082,
          -7,
          -3.2773035345575963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.06595298031387,
          -7,
          -7,
          -7,
          -4.319872601296413,
          -7,
          -7,
          -7,
          -2.2600713879850747,
          -7,
          -2.532117116248804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.734084214055121,
          -7,
          -2.754348335711019,
          -3.9427271453659487,
          -3.0107238653917734,
          -7,
          -7,
          -7,
          -2.954724790979063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0569048513364727,
          -7,
          -7,
          -2.570153612664517,
          -2.1089031276673134,
          -2.894500672456359,
          -7,
          -7,
          -4.6179329672532745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.256043898702031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.704150516839799,
          -4.221701064384597,
          -7,
          -7,
          -4.176583180765493,
          -3.792181496149679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.449478399187365,
          -4.571277816502185,
          -3.0013658774885856,
          -3.7333577879255855,
          -7,
          -7,
          -7,
          -7,
          -2.523674222865311,
          -2.7259116322950483,
          -3.767897616018091,
          -7,
          -3.7013088852280753,
          -7,
          -7,
          -7,
          -2.571708831808688,
          -7,
          -4.185060282521393,
          -7,
          -7,
          -3.450364596814099,
          -7,
          -7,
          -7,
          -3.2762319579218335,
          -7,
          -3.497057300398213,
          -7,
          -7,
          -7,
          -7,
          -2.45178643552429,
          -7,
          -4.003805073565025,
          -4.276024992238579,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.905720344324213,
          -3.5629586686546233,
          -7,
          -3.9340538293702187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9882615967287558,
          -7,
          -7,
          -4.0717347638797605,
          -2.8418955262504215,
          -1.4300212762834783,
          -1.9360495046133057,
          -7,
          -2.8943160626844384,
          -3.3869000790623756,
          -2.556704439233648,
          -1.7612833250963482,
          -7,
          -2.8236915393984545,
          -7,
          -3.3488580131576775,
          -1.6551384348113822,
          -2.8943160626844384,
          -7,
          -2.662600450095542,
          -7,
          -3.129689892199301,
          -7,
          -2.845098040014257,
          -2.5725812013324862,
          -7,
          -3.0318122713303706,
          -2.0962145853464054,
          -1.3141014045117398,
          -7,
          -3.3523111788979363,
          -7,
          -2.3710678622717363,
          -7,
          -3.071941686368387,
          -4.741348602475895,
          -7,
          -7,
          -1.3064250275506872,
          -7,
          -1.2501630993248258,
          -7,
          -1.1760912590556813,
          -2.233334609615762,
          -7,
          -2.8020892578817325,
          -3.5947239464097467,
          -1.7423322823571483,
          -7,
          -2.5728716022004803,
          -2.577261953585815,
          -7,
          -2.6665179805548807,
          -1.588271706842329,
          -2.7263196121107756,
          -7,
          -7,
          -1.0669467896306133,
          -7,
          -7,
          -3.106598813212537,
          -7,
          -7,
          -3.3643633546157306,
          -2.1327398382608846,
          -2.9069313197859845,
          -1.5782570766553377,
          -3.395501124305626,
          -2.2032142586949006,
          -7,
          -7,
          -1.9956351945975501,
          -3.2314695904306814,
          -2.5921767573958667,
          -2.6020599913279625,
          -1.7464612077056945,
          -7,
          -2.2576785748691846,
          -1.7993405494535817,
          -2.516755660221549,
          -1.8790958795000727,
          -2.5390760987927767,
          -3.0194486374936367,
          -7,
          -2.954885432549936,
          -2.480486032340433,
          -3.0266966559781596,
          -7,
          -3.236789099409293,
          -7,
          -7,
          -7,
          -3.968319473630739,
          -7,
          -2.0280287236002437,
          -3.2612628687924934,
          -3.835479184541597,
          -2.5085297189712867,
          -3.6554265877459184,
          -3.8042530476353846,
          -3.458033192496506,
          -1.9837765880368856,
          -7,
          -1.4673614174305063,
          -7,
          -1.2778383330020473,
          -2.2873537727147464,
          -7,
          -2.3502480183341627,
          -1.7678976160180906,
          -7,
          -3.0705919315120402,
          -2.098643725817057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6532125137753435,
          -7,
          -7,
          -1.997511199596305,
          -1.615799802742291,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6541765418779604,
          -3.186862199888604,
          -7,
          -7,
          -7,
          -7,
          -3.3459615418131414,
          -7,
          -2.2528530309798933,
          -3.8008315923191467,
          -7,
          -7,
          -3.1646502159342966,
          -7,
          -7,
          -7,
          -7,
          -2.2041199826559246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3673647967677733,
          -7,
          -7,
          -7,
          -7,
          -3.8859828113549733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3554515201265174,
          -7,
          -7,
          -7,
          -3.5541531359965925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6960941599952233,
          -7,
          -4.39929289804391,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.625312450961674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.148263229636879,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5195296940992455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5559404378185113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9005582854095375,
          -7,
          -7,
          -7,
          -3.3821671876003583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7975099023288803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.910304168068569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.851724506256658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.119915410257991,
          -7,
          -7,
          -3.3995785469236655,
          -7,
          -7,
          -3.5931752634781025,
          -7,
          -3.6144753660903954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.430478187932044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.118273746860196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.667119265219367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6464037262230695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4225077658680756,
          -7,
          -7,
          -7,
          -3.462073403738634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7806053058389697,
          -7,
          -7,
          -7,
          -3.641523684670229,
          -7,
          -7,
          -3.956696564894651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.071412410230531,
          -7,
          -7,
          -7,
          -7,
          -3.6578204560156973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7661833610329696,
          -7,
          -7,
          -3.8064061101420315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2534058585380095,
          -3.429979715014304,
          -2.9780812292019267,
          -7,
          -3.47928731647617,
          -7,
          -2.0507027915758727,
          -2.7979135378417332,
          -2.685756915498769,
          -7,
          -2.269948576750441,
          -2.948264092763587,
          -3.0429511919940255,
          -3.1711216273491813,
          -2.916268114365702,
          -3.202040480346924,
          -3.0632082200712114,
          -3.220405695184753,
          -2.6012037192276076,
          -3.2110512892020617,
          -3.1006002697893584,
          -3.2928901294360298,
          -2.855034316675884,
          -2.974789285895967,
          -1.3484858437877367,
          -3.6441184131829005,
          -3.126293790693266,
          -2.333509813402564,
          -3.384353414137506,
          -3.1517407044935295,
          -2.543305455072855,
          -3.3161696136272876,
          -3.313192063634804,
          -2.6392255306230408,
          -2.6168634908024817,
          -3.137586179545643,
          -3.3856956254105612,
          -3.932575223498291,
          -1.4033613482029006,
          -4.096423330595271,
          -7,
          -4.608836133184731,
          -3.8932622858879915,
          -3.9433955765089546,
          -7,
          -3.1639064334577514,
          -7,
          -4.105680462945809,
          -3.9736357734174077,
          -7,
          -3.5763989451242386,
          -3.932980821923198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9702771231209835,
          -7,
          -7,
          -7,
          -3.6936478192387985,
          -2.784517042296126,
          -7,
          -7,
          -7,
          -4.043519460245756,
          -3.9042285163400785,
          -4.657390532388537,
          -7,
          -4.168998077278994,
          -7,
          -3.8961402514420196,
          -3.827756862978617,
          -7,
          -7,
          -3.890867938811441,
          -7,
          -7,
          -7,
          -7,
          -3.940606123624698,
          -3.601212290310882,
          -7,
          -4.364813556261336,
          -7,
          -7,
          -3.564547711755948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4858740086009528,
          -2.4245483075166123,
          -7,
          -7,
          -3.1108140939166935,
          -2.9786369483844743,
          -3.038056896092195,
          -3.1709458747292723,
          -7,
          -7,
          -2.891955383429181,
          -3.2836403888003676,
          -2.874643380285549,
          -3.3330440298234874,
          -3.1405080430381793,
          -3.4259415880188953,
          -3.103999085098659,
          -2.8523928471568003,
          -2.781468142841798,
          -2.9486085498764365,
          -2.9093420383613084,
          -3.326745379565322,
          -7,
          -3.04493154614916,
          -7,
          -7,
          -7,
          -2.858021306221821,
          -7,
          -7,
          -2.8915109091209223,
          -2.908577451460015,
          -1.7587889737912472,
          -7,
          -3.753199914199416,
          -7,
          -3.0710531129102714,
          -7,
          -7,
          -7,
          -3.7753191218294777,
          -3.575303333422399,
          -7,
          -3.5621143505886863,
          -7,
          -2.967547976218862,
          -2.5709672628095492,
          -2.6402329136549687,
          -7,
          -3.155538458574251,
          -7,
          -7,
          -2.4326874301696493,
          -3.5837653682849995,
          -7,
          -7,
          -7,
          -2.909511456502192,
          -3.6224212739756703,
          -3.6127838567197355,
          -2.725258066359961,
          -7,
          -3.0023838306972106,
          -7,
          -2.9213148070981427,
          -7,
          -2.6973383387401877,
          -2.3583454920906557,
          -7,
          -2.60422605308447,
          -7,
          -3.5758803156806462,
          -7,
          -1.6052783266298942,
          -7,
          -7,
          -3.5640739789771465,
          -7,
          -7,
          -3.6335189520021656,
          -3.633670406051444,
          -7,
          -3.631139250256811,
          -3.0352796104598627,
          -2.785275065544536,
          -3.706803097037338,
          -3.3945392313722045,
          -7,
          -7,
          -2.6677310666469034,
          -2.420405872366884,
          -3.2657609167176105,
          -2.3498263322325768,
          -2.845900196115185,
          -3.06595298031387,
          -2.916839816617871,
          -3.0289003150037526,
          -3.1138478924796797,
          -7,
          -3.6231458746379395,
          -7,
          -7,
          -7,
          -7,
          -2.1547706418025814,
          -7,
          -7,
          -7,
          -2.6284138529783205,
          -7,
          -7,
          -2.658369184249972,
          -3.0900227904759947,
          -7,
          -3.2688119037397803,
          -2.881726935376418,
          -3.168350140185944,
          -3.4371160930480786,
          -7,
          -7,
          -3.022943609686901,
          -7,
          -7,
          -7,
          -3.5803546611065915,
          -3.5758803156806462,
          -7,
          -2.9011857801371503,
          -2.515211304327802,
          -3.1920095926536702,
          -7,
          -7,
          -2.745543201998024,
          -3.5563025007672873,
          -7,
          -3.025988181951707,
          -7,
          -7,
          -3.38246732201583,
          -2.490379920003179,
          -7,
          -7,
          -7,
          -3.5854607295085006,
          -7,
          -2.537000087321339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.004894321731049,
          -7,
          -7,
          -7,
          -7,
          -2.7366899869982735,
          -7,
          -7,
          -7,
          -7,
          -3.3188977146274867,
          -2.472725336054176,
          -7,
          -7,
          -2.890855530574932,
          -3.0021287152533693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8090207204836726,
          -4.325197419924709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808278509582768,
          -7,
          -7,
          -7,
          -3.966626619751244,
          -7,
          -7,
          -3.512083758343917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0303105200628067,
          -2.8155386842826937,
          -7,
          -7,
          -3.863322860120456,
          -7,
          -7,
          -7,
          -3.803934849863842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6224730712781232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808075868091307,
          -7,
          -7,
          -7,
          -7,
          -3.7992026563005252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5190400386483445,
          -7,
          -2.6508766945653943,
          -3.8202671571609645,
          -7,
          -3.795880017344075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8302678009336417,
          -7,
          -7,
          -7,
          -7,
          -3.5303277897780863,
          -7,
          -7,
          -7,
          -7,
          -3.1653679968502697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7368649969088095,
          -3.7998228309933197,
          -7,
          -7,
          -3.879375470539603,
          -7,
          -3.8474492624991727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7347426968541853,
          -7,
          -7,
          -7,
          -3.7958105246674085,
          -7,
          -3.1894903136993675,
          -7,
          -7,
          -2.877563299235066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.371437317404101,
          -7,
          -7,
          -7,
          -4.2545239086857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8057047044338645,
          -7,
          -2.732130471253581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.122117536313263,
          -7,
          -7,
          -2.7828019969642233,
          -7,
          -3.3464181789371965,
          -3.8212514315459414,
          -3.82633400562222,
          -3.532818053867167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.736077637003946,
          -7,
          -3.5363690286780414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.004536317851323,
          -3.3332456989619628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8283376000590046,
          -3.837840861655523,
          -3.3674025166466746,
          -3.5547697644770895,
          -7,
          -7,
          -7,
          -3.526210003841664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.616033061656062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.802705327074352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8813275841005512,
          -7,
          -7,
          -7,
          -3.9030899869919438,
          -3.3461573022320086,
          -1.5080244315589613,
          -7,
          -3.6196381767656955,
          -7,
          -7,
          -7,
          -3.229767140261955,
          -7,
          -3.1478617484872387,
          -3.096678327496078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1629127378362583,
          -7,
          -7,
          -7,
          -3.1107767046969292,
          -7,
          -7,
          -4.070333455853063,
          -7,
          -7,
          -7,
          -3.500648063371912,
          -3.389402370813181,
          -3.520418023353549,
          -7,
          -7,
          -7,
          -7,
          -2.719019543968662,
          -7,
          -7,
          -7,
          -7,
          -3.8606374167737547,
          -3.5285310606354114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8020892578817325,
          -3.699577591398909,
          -3.45408227073109,
          -3.4601207275421837,
          -7,
          -7,
          -3.71099480274821,
          -7,
          -7,
          -7,
          -7,
          -3.843481943039958,
          -3.9427519204298136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8455114569725612,
          -7,
          -7,
          -2.464794874398846,
          -2.877160567640068,
          -3.545960629240598,
          -3.220238879934404,
          -3.671609166801616,
          -3.307496037913213,
          -2.4494981780548124,
          -4.492089577491379,
          -1.1683168621903026,
          -7,
          -1.8148067561120336,
          -3.3841841004893225,
          -3.153789466263765,
          -3.297660482139467,
          -1.9772489428837123,
          -3.796227314029439,
          -3.161695916932489,
          -2.148243082243774,
          -3.0880269900422115,
          -3.1000164069826135,
          -4.148263229636879,
          -3.9456589370603736,
          -2.98265882296436,
          -2.2941062855654346,
          -2.8531138935152702,
          -7,
          -3.5071359469857537,
          -2.817323773419625,
          -7,
          -1.9155992462576952,
          -2.541310366621995,
          -3.5308889765187996,
          -3.765053551849675,
          -2.4518279094757043,
          -2.22645669185671,
          -3.8906445362952473,
          -3.7608244218895726,
          -2.9900171721769127,
          -3.0691555877932926,
          -2.189348476789841,
          -7,
          -3.1891492893536912,
          -2.872672289326085,
          -3.1565112927708103,
          -2.5257572431523108,
          -3.0915162219609544,
          -7,
          -2.9884103022538873,
          -7,
          -7,
          -3.0735228432889,
          -2.805062154669504,
          -4.045322978786658,
          -7,
          -3.75564621945668,
          -7,
          -7,
          -3.4840624550927735,
          -4.3301295624875245,
          -3.9180303367848803,
          -7,
          -3.041438238134359,
          -2.8750998656300175,
          -4.2866669415288365,
          -7,
          -7,
          -7,
          -3.2560049909796183,
          -7,
          -7,
          -2.468521082957745,
          -7,
          -7,
          -3.42217931474113,
          -3.9073844852845,
          -7,
          -3.5780658838360915,
          -3.3212669395747887,
          -7,
          -2.3233810283251954,
          -3.6396358768118477,
          -7,
          -2.2921992525584747,
          -2.783382848542842,
          -7,
          -4.08841075955748,
          -7,
          -3.5997739391463885,
          -4.002036402259529,
          -4.212720154417842,
          -3.8109042806687006,
          -7,
          -7,
          -3.823409014892545,
          -2.8359099798631497,
          -1.2149977822221742,
          -7,
          -2.004996554372444,
          -1.9641248816751649,
          -1.7650828574593154,
          -1.5580431623435886,
          -1.657220533485756,
          -3.8121777741587537,
          -7,
          -1.2859896776998598,
          -2.735731935227449,
          -2.14457874581053,
          -2.7305959498221712,
          -1.8058536085353702,
          -2.580979252309059,
          -1.851566004435052,
          -2.04001724621947,
          -1.687626890792445,
          -2.648786776141029,
          -2.2128369682837645,
          -1.7825714622372415,
          -2.8013413337900444,
          -1.994397711264469,
          -3.525239223729745,
          -3.334051440346892,
          -7,
          -1.3368036386957756,
          -3.118264726089479,
          -7,
          -2.295517682332988,
          -1.6795459941155866,
          -1.8210378678511736,
          -3.1960379407345236,
          -1.8823063810686513,
          -3.819872821950546,
          -2.4527297852992795,
          -3.5081929260254405,
          -7,
          -7,
          -2.079588842963422,
          -3.3333800930468676,
          -2.3917842956517066,
          -2.4659074673550583,
          -7,
          -1.7162884340349953,
          -2.2380461031287955,
          -1.6657230891384838,
          -7,
          -2.3947642803372315,
          -2.7632237318290302,
          -1.386574644667463,
          -2.4684426226740652,
          -2.8145139523682383,
          -2.9574020277501365,
          -3.106598813212537,
          -2.909511456502192,
          -7,
          -2.6609286894852273,
          -3.2305127835182175,
          -1.7695535461969993,
          -3.519827993775719,
          -1.829798413524477,
          -2.92005807281875,
          -1.8156404895092801,
          -2.4917617809025523,
          -2.425403782148611,
          -2.9828137621318627,
          -7,
          -2.1679471464882516,
          -2.251638220448212,
          -3.8111056070179306,
          -2.7383180158201332,
          -1.7445805763269497,
          -7,
          -3.3240765797394864,
          -1.1892827655559177,
          -2.989704014034442,
          -3.5292378052696605,
          -2.482487303691886,
          -3.5445021218295945,
          -3.1648978606247633,
          -2.479631634437262,
          -0.9035663438258191,
          -1.5773031290220334,
          -2.2437143444085867,
          -2.2568780318187245,
          -7,
          -7,
          -1.7848573609472842,
          -1.963216831111873,
          -2.599814867207917,
          -1.4979598920976362,
          -1.0152733372451836,
          -1.7815119701445403,
          -1.1830993299225638,
          -1.9928825468140339,
          -1.721955569498987,
          -3.8038666342849843,
          -2.63321588535909,
          -7,
          -7,
          -3.5180530800797216,
          -3.54703589974001,
          -2.221586454888828,
          -7,
          -2.9584956247570875,
          -7,
          -1.6187466999262725,
          -7,
          -2.919208884270423,
          -3.8037301709745437,
          -2.850986404764101,
          -3.1252209363165644,
          -3.3303461209646152,
          -2.4895567268689844,
          -0.9539959263343879,
          -2.4786733593940635,
          -3.353916230920363,
          -7,
          -2.0625501175897143,
          -3.7960189693471493,
          -7,
          -7,
          -3.512550992904211,
          -3.111598524880394,
          -3.8145139523682383,
          -2.4348144762668675,
          -2.25598155747616,
          -3.1725542843902175,
          -3.1065308538223815,
          -7,
          -2.2607601977756273,
          -3.498655095245119,
          -7,
          -2.1675283109397934,
          -7,
          -7,
          -2.4113874629192447,
          -2.2215372569865495,
          -3.3680388229322835,
          -3.7956715059460215,
          -7,
          -3.816705183666515,
          -7,
          -2.2076024217230845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.663748026358395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.627109711211139,
          -7,
          -7,
          -7,
          -4.403583750366688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.049334335972284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8264765013148656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.079543007402906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.50870923513873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8850217948622974,
          -7,
          -7,
          -4.675420863687349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.639154332860882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1008872548535935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.151023379854834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.730216840568694,
          -7,
          -3.056305786810995,
          -7,
          -7,
          -7,
          -3.664735968518705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8340708381017388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1454899125036295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.551010601573511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3440094211096474,
          -4.274026925166107,
          -7,
          -7,
          -4.135132651376775,
          -3.40705081480425,
          -2.9599948383284165,
          -7,
          -3.6230583497564854,
          -7,
          -2.9361269120606015,
          -3.6260208317947957,
          -4.359759616415701,
          -4.805867712592634,
          -3.1710550105433617,
          -3.51061202578917,
          -7,
          -3.1245905227942092,
          -7,
          -7,
          -3.929214503737394,
          -4.148866468878797,
          -7,
          -3.7882744561838897,
          -3.311435968289161,
          -7,
          -7,
          -7,
          -7,
          -3.4776999283321306,
          -3.0577421558287528,
          -4.586486032493526,
          -4.248463717551032,
          -3.287325760041347,
          -2.9218814741317494,
          -7,
          -7,
          -7,
          -3.552024726583321,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.322219294733919,
          -3.4848690327204026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0621681733517825,
          -3.8680110921631368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9445122821281515,
          -7,
          -4.0752183791115355,
          -7,
          -3.0969968632197054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1711704349016205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.031287248876998,
          -7,
          -7,
          -7,
          -2.2536610209467267,
          -4.0897638544916886,
          -2.4055171069763763,
          -7,
          -2.7382518980637593,
          -2.7024305364455254,
          -2.6088315520434717,
          -3.3116267318705064,
          -2.7218106152125467,
          -2.6599162000698504,
          -7,
          -3.211320815405893,
          -2.9907826918031377,
          -3.076053545471786,
          -2.8573324964312685,
          -2.327018177615688,
          -2.4869615094670436,
          -2.876939140345395,
          -2.3706569876129886,
          -2.1371338529752912,
          -0.8585931489330124,
          -2.1709947020363,
          -2.9417598138146954,
          -1.5221180641467127,
          -2.0442036624920537,
          -7,
          -2.6546577546495245,
          -7,
          -2.818105873029551,
          -2.0907869279492677,
          -7,
          -2.7422012536996743,
          -3.213920924061928,
          -2.851971392475668,
          -7,
          -2.211560237762678,
          -7,
          -1.9150158860376074,
          -7,
          -1.9197316583111612,
          -7,
          -2.711103917985617,
          -2.4727564493172123,
          -2.5759571887637573,
          -2.946943270697825,
          -7,
          -2.061099407170852,
          -3.0969100130080562,
          -2.1433822236955566,
          -7,
          -2.8536982117761744,
          -7,
          -7,
          -2.0026907670493985,
          -2.0769133845918026,
          -7,
          -7,
          -3.6224212739756703,
          -2.6609286894852273,
          -7,
          -2.241973165892279,
          -3.1075491297446862,
          -2.718916686014861,
          -3.469911774060926,
          -7,
          -2.0360963453482763,
          -2.992553517832136,
          -2.3521825181113627,
          -7,
          -7,
          -2.212814066080421,
          -2.2007137339640135,
          -2.9542425094393248,
          -7,
          -2.2687339404540663,
          -7,
          -7,
          -3.649918718735419,
          -7,
          -7,
          -3.758684849882441,
          -2.6788217632521745,
          -7,
          -7,
          -2.507481059830068,
          -1.8893892530522984,
          -2.110589710299249,
          -2.1396692316100534,
          -7,
          -7,
          -3.2390718614686933,
          -1.2802101517264077,
          -2.4366925976640545,
          -2.016083230668029,
          -3.720944459446079,
          -2.55339751012388,
          -2.7230906419805767,
          -3.5143041961369925,
          -2.514198107297303,
          -7,
          -2.1653432655224587,
          -7,
          -2.5508396050657853,
          -3.009450895798694,
          -7,
          -2.8262044234992527,
          -7,
          -7,
          -7,
          -2.909258791202125,
          -7,
          -2.3324384599156054,
          -7,
          -2.918554530550274,
          -7,
          -7,
          -2.3729120029701067,
          -2.6351964199887496,
          -2.155336037465062,
          -7,
          -7,
          -2.28362424432417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2315545380068746,
          -1.4328691191563043,
          -2.34713478291002,
          -7,
          -7,
          -3.4342494523964753,
          -2.8656960599160706,
          -7,
          -3.3859412481478177,
          -7,
          -7,
          -2.991004440330755,
          -1.3847117429382825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4695366151123335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.662880549738856,
          -7,
          -7,
          -7,
          -7,
          -3.675136504467994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9235030669421045,
          -7,
          -7,
          -3.130655349022031,
          -4.579160279808659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.086620803576045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2678754193188975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.744644971105124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.13037074388832,
          -2.8438554226231614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8367512361816107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9818638909913506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.430679613881531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1813861950832174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.908306260085468,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40226138245468,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.201888500365973,
          -7,
          -7,
          -7,
          -2.118147969798274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.009227741996455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.798433098500429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530607858456049,
          -7,
          -7,
          -3.6466242486875178,
          -3.1562461903973444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8439280063704695,
          -7,
          -7,
          -7,
          -4.434728541779758,
          -7,
          -3.4303975913869666,
          -7,
          -3.736316807904109,
          -7,
          -3.746322765089953,
          -4.278341969060907,
          -7,
          -7,
          -3.2538915993869204,
          -4.286927784959255,
          -7,
          -3.701424059791345,
          -7,
          -7,
          -7,
          -4.801811741370298,
          -3.5916766421416844,
          -4.185648378282055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7532595366903325,
          -7,
          -4.585449448985846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.834738518903841,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.809761665107125,
          -3.3027637084729817,
          -3.1802692776688746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.719248398447946,
          -7,
          -7,
          -3.406956298169804,
          -4.282640236421941,
          -4.571528323403687,
          -7,
          -7,
          -7,
          -4.138407968917471,
          -7,
          -4.9440580404731085,
          -7,
          -3.5945766905019516,
          -7,
          -2.689930104018218,
          -7,
          -4.2853097130902675,
          -7,
          -7,
          -7,
          -3.566231197523304,
          -7,
          -7,
          -7,
          -4.5679903942616775,
          -7,
          -4.035089374144706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.9229848157088828,
          -7,
          -3.1032904715577496,
          -7,
          -7,
          -2.660865478003869,
          -2.358886204405869,
          -2.9647737403272063,
          -3.1740598077250253,
          -7,
          -7,
          -3.0287745265000883,
          -2.6459132750338443,
          -2.6525008054635846,
          -7,
          -2.7745169657285493,
          -2.6755950563867463,
          -3.296957546032856,
          -1.819324539486734,
          -1.5959369062691735,
          -2.3251636753807006,
          -2.5658478186735176,
          -7,
          -1.7055216134226672,
          -1.7966346560776567,
          -2.2346859743215286,
          -2.910090545594068,
          -2.801403710017355,
          -2.7397548594693375,
          -2.656098202012832,
          -7,
          -2.871602121022312,
          -3.322278378399326,
          -3.131141189675311,
          -7,
          -2.3497630439879496,
          -7,
          -1.9815165943059867,
          -2.893206753059848,
          -7,
          -2.8419848045901137,
          -3.1762359997608716,
          -1.0925452076056064,
          -2.716003343634799,
          -2.556201957999874,
          -7,
          -2.5266622930104643,
          -3.0637085593914173,
          -2.456935102197454,
          -7,
          -2.5224442335063197,
          -7,
          -3.1687920203141817,
          -3.0167747537109664,
          -2.032920808723266,
          -7,
          -7,
          -3.6127838567197355,
          -3.2305127835182175,
          -2.241973165892279,
          -7,
          -2.9232440186302764,
          -7,
          -3.3040774356605502,
          -3.0017337128090005,
          -1.8049444269715802,
          -7,
          -7,
          -7,
          -7,
          -2.5940766998292117,
          -1.953499490469544,
          -7,
          -7,
          -2.250420002308894,
          -7,
          -7,
          -3.640878778701618,
          -2.5943925503754266,
          -7,
          -2.8474955403490654,
          -3.1283992687178066,
          -3.1922886125681202,
          -2.641804498106114,
          -2.802925682774948,
          -2.1122697684172707,
          -1.5660623380564436,
          -2.0646781638739173,
          -7,
          -7,
          -3.5004423178574897,
          -2.758609142659744,
          -2.385010124593375,
          -2.8709888137605755,
          -3.241587982291062,
          -2.929929560084588,
          -2.3925118319943293,
          -3.0594743181457305,
          -1.9469432706978254,
          -2.8457180179666586,
          -2.2444538428721974,
          -7,
          -2.79309160017658,
          -7,
          -7,
          -2.911290807477995,
          -7,
          -7,
          -7,
          -2.5476246433698466,
          -7,
          -2.5171958979499744,
          -7,
          -2.3879827199214656,
          -3.0060379549973173,
          -2.5774917998372255,
          -7,
          -2.424287526440053,
          -1.4094314461192683,
          -7,
          -7,
          -1.88754697493976,
          -7,
          -7,
          -7,
          -2.927883410330707,
          -7,
          -7,
          -3.3999331824955683,
          -2.713370522509538,
          -2.6681195600536824,
          -7,
          -7,
          -3.4192947217534604,
          -7,
          -7,
          -3.245445364900788,
          -2.298125005020574,
          -7,
          -3.271609301378832,
          -2.5576408515395497,
          -2.8254261177678233,
          -7,
          -7,
          -7,
          -7,
          -2.2932520331478248,
          -2.4720246977002813,
          -7,
          -2.457124626303409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0539771977423924,
          -7,
          -7,
          -7,
          -7,
          -3.9359604689891663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.76559760320161,
          -3.913336925932623,
          -7,
          -2.9409313235178423,
          -3.4544909672215263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8294324336175984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.35430056234536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7582304084577496,
          -3.6710802327388494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.176293882538767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.425778686860983,
          -3.685024785105714,
          -3.6580113966571126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7218106152125467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.58029758843657,
          -3.925441019653158,
          -3.6568644915489172,
          -7,
          -7,
          -3.593404226314317,
          -7,
          -7,
          -3.734799829588847,
          -7,
          -7,
          -3.6634182122526795,
          -3.67089495352021,
          -7,
          -7,
          -2.85000097173786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9577030415488315,
          -7,
          -7,
          -3.702085721435825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9894498176666917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.714329759745233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6920933411840697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4760341590784485,
          -7,
          -2.883396425218766,
          -7,
          -7,
          -2.7342634585311685,
          -7,
          -3.6898414091375047,
          -7,
          -3.39208111979816,
          -3.703635237583896,
          -3.7288405683399715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808075868091307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6744937172963503,
          -7,
          -7,
          -7,
          -1.8447453851171665,
          -3.1943292994928325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6572471298837166,
          -7,
          -7,
          -1.8005274714328756,
          -4.317403637191061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.673389578188305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0486501936741845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6703386411274423,
          -7,
          -7,
          -7,
          -2.862280493299705,
          -7,
          -7,
          -7,
          -7,
          -3.689486448364248,
          -2.9618480590183243,
          -7,
          -3.1908187119380673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.457503426573305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5422027824340283,
          -7,
          -7,
          -3.6654871807828107,
          -3.1061714631343613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2699019227319654,
          -3.6868149545073168,
          -7,
          -7,
          -7,
          -7,
          -3.404816953347451,
          -7,
          -7,
          -7,
          -7,
          -3.739255803268511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8213169705910977,
          -3.8305886686851442,
          -3.715468813697298,
          -7,
          -7,
          -3.448728398371921,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8448498008066387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5223790192285636,
          -7,
          -7,
          -2.8743297038713655,
          -3.234972598405242,
          -4.057818194432099,
          -3.387122759927585,
          -3.378565603800744,
          -2.522032189374934,
          -2.35128711383822,
          -4.466615567492372,
          -2.4452897737854538,
          -7,
          -2.5027756709516997,
          -3.342692732167322,
          -3.3148499463011056,
          -3.286456469746983,
          -2.088675910869215,
          -3.4120123012470613,
          -3.2539737133906796,
          -2.3413988733390205,
          -2.1543432221004943,
          -3.4213425748284356,
          -4.089905111439398,
          -3.2521977882265785,
          -3.3692529750104305,
          -2.642270631311907,
          -2.8634039785371357,
          -4.268835289996586,
          -3.2866155022896026,
          -3.307067950661298,
          -3.762378429311964,
          -2.7251501016282584,
          -2.828888478052161,
          -3.149598825945172,
          -3.076963910388137,
          -2.753064605916495,
          -2.500061743589364,
          -3.430216194454889,
          -3.5889716175206554,
          -3.580044747846509,
          -2.9528378309818355,
          -3.826787238816292,
          -3.7352794480604565,
          -4.1415856324913625,
          -2.6531946412066914,
          -3.51018741901152,
          -7,
          -3.714245911017894,
          -7,
          -3.74813262876875,
          -7,
          -7,
          -3.4264028097516,
          -3.5580362135762877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.198527717134609,
          -3.385815458734226,
          -4.143355512469716,
          -7,
          -7,
          -7,
          -3.256352072908259,
          -7,
          -4.962889987391791,
          -3.4415904106626587,
          -3.5935352716775633,
          -7,
          -3.6438966143222347,
          -7,
          -4.365207100231824,
          -7,
          -7,
          -7,
          -3.228470355396186,
          -7,
          -7,
          -4.171736202017041,
          -2.7587413551231554,
          -7,
          -3.720177685852126,
          -3.438858659420562,
          -7,
          -3.616790486329716,
          -3.861803148214179,
          -3.6721902511882525,
          -7,
          -7,
          -3.3881012015705165,
          -2.6486310215868576,
          -1.4925138875642157,
          -7,
          -3.133858125203335,
          -1.3936726770623664,
          -2.1093336632777238,
          -2.2133145855992264,
          -2.024567757196038,
          -7,
          -7,
          -2.310438394815848,
          -2.5312051157416637,
          -1.7129082987055229,
          -3.2423757618909193,
          -2.132155803755665,
          -2.3311828694692,
          -1.643544912757513,
          -1.8640752762509714,
          -1.6382947241487407,
          -2.4059721038560276,
          -2.5832859904528807,
          -1.6577013855925506,
          -2.7615102073835347,
          -1.900615367864088,
          -3.6933751510251853,
          -3.0703149874181173,
          -7,
          -1.9740108109874572,
          -2.9819091700907925,
          -3.656960182742849,
          -2.162347835278798,
          -1.6462582551354332,
          -1.899887931896617,
          -2.8087895180567206,
          -1.9231363167215678,
          -7,
          -2.3336022689601736,
          -7,
          -3.651568738865792,
          -3.360688062030678,
          -2.4206538182390798,
          -3.194514341882467,
          -3.0909630765957314,
          -2.6127308907483417,
          -7,
          -1.7467405382251568,
          -2.399327532158679,
          -1.9189347135428458,
          -7,
          -2.6028943709926877,
          -3.3641756327706194,
          -3.7300551523755,
          -2.0944677032145895,
          -2.8997293311279466,
          -3.6617180576946593,
          -3.3643633546157306,
          -2.725258066359961,
          -1.7695535461969993,
          -3.1075491297446862,
          -2.9232440186302764,
          -7,
          -7,
          -1.9562701198834112,
          -3.2127201544178425,
          -2.1828813291360327,
          -2.724366907119601,
          -2.545041898453366,
          -2.4566075474449653,
          -7,
          -1.8584708836673578,
          -2.1693977913346485,
          -7,
          -3.205745540942662,
          -1.914401928955501,
          -7,
          -7,
          -2.7399413511328885,
          -7,
          -7,
          -3.2009872191631663,
          -3.418135498425232,
          -3.368472838440362,
          -3.7172543127625497,
          -1.7168939159781895,
          -1.83265975304879,
          -2.270606059524192,
          -2.335717857204335,
          -7,
          -7,
          -1.9523273973758806,
          -1.900991941936252,
          -2.549191962650917,
          -1.722148948187599,
          -1.8152068688114962,
          -2.0688960736491686,
          -1.7605436424369434,
          -2.3281925043138796,
          -1.8159074241980515,
          -7,
          -2.5040458751996155,
          -7,
          -3.654850090561394,
          -7,
          -7,
          -2.2268453039888003,
          -7,
          -3.663229634532868,
          -7,
          -1.6411935346546915,
          -7,
          -2.733375620132445,
          -7,
          -7,
          -3.2136062891507047,
          -3.1903316981702914,
          -2.3725438007590705,
          -1.9746867944847728,
          -2.3720933514894265,
          -7,
          -7,
          -2.1505005962700507,
          -7,
          -7,
          -7,
          -3.6760531246518715,
          -2.826259963429235,
          -3.677150521273433,
          -2.221044971191486,
          -2.426278831879818,
          -2.7076918101785252,
          -3.062863902110119,
          -7,
          -2.489489731962272,
          -3.179360261070836,
          -7,
          -2.4141655677036877,
          -7,
          -7,
          -2.456897187449348,
          -2.389227205254353,
          -7,
          -7,
          -7,
          -3.680154141734373,
          -7,
          -2.4613428736466783,
          -3.652343055062715,
          -3.1992979769986976,
          -7,
          -2.7041505168397992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6578204560156973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9138138523837167,
          -2.834632606336092,
          -7,
          -7,
          -3.879038505237237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9594587825328493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.341137638740964,
          -7,
          -7,
          -7,
          -7,
          -2.678518379040114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4229999772716164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7373516958037145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9324737646771535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6186755388851397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.961421094066448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.592139731565084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8049567998574916,
          -7,
          -7,
          -7,
          -4.136379654870003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7209857441537393,
          -7,
          -7,
          -7,
          -2.7960189693471493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.998520882835038,
          -2.6032990634435107,
          -7,
          -2.9800033715837464,
          -7,
          -3.506843136339351,
          -7,
          -7,
          -7,
          -7,
          -3.08278537031645,
          -7,
          -7,
          -7,
          -4.083466785473887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5622928644564746,
          -7,
          -2.8543060418010806,
          -7,
          -2.6232492903979003,
          -2.734799829588847,
          -7,
          -4.429186844904713,
          -2.640481436970422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.170672340315576,
          -7,
          -7,
          -3.5934891334542405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.760422483423212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8926510338773004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8095597146352675,
          -2.617000341120899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7126497016272113,
          -3.5412046906832586,
          -3.9739955751309255,
          -7,
          -2.3364597338485296,
          -2.3293978793610424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.591064607026499,
          -7,
          -7,
          -3.695437894597736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3324384599156054,
          -7,
          -7,
          -7,
          -4.023238737632354,
          -7,
          -7,
          -7,
          -3.33665982345442,
          -7,
          -7,
          -3.219060332448861,
          -7,
          -7,
          -7,
          -7,
          -2.7315887651867388,
          -2.9661417327390325,
          -2.8609366207000937,
          -7,
          -2.7902851640332416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.461048091670658,
          -7,
          -7,
          -7,
          -4.007256892965124,
          -7,
          -7,
          -3.4702634469650784,
          -2.6232492903979003,
          -7,
          -2.8674674878590514,
          -7,
          -7,
          -7,
          -7,
          -2.814913181275074,
          -2.5888317255942073,
          -7,
          -4.253691003067721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -7,
          -7,
          -7,
          -7,
          -4.4791560560027355,
          -7,
          -7,
          -3.702368982412129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.464638559095033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.656098202012832,
          -7,
          -2.673020907128896,
          -7,
          -2.380211241711606,
          -2.8085485512404054,
          -7,
          -7,
          -7,
          -7,
          -4.273441134312813,
          -7,
          -7,
          -7,
          -3.716420733846555,
          -7,
          -7,
          -7,
          -7,
          -4.577273448787888,
          -7,
          -7,
          -4.397261980280511,
          -7,
          -7,
          -4.352992445447028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.161068385471174,
          -7,
          -7,
          -7,
          -4.706060297176204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.242442036037531,
          -7,
          -7,
          -7,
          -7,
          -3.1319392952104246,
          -4.573869100848107,
          -4.308009186238258,
          -7,
          -7,
          -7,
          -7,
          -4.244573972817435,
          -2.378677369736355,
          -2.256477206241677,
          -7,
          -7,
          -3.720159303405957,
          -7,
          -7,
          -7,
          -2.4727564493172123,
          -7,
          -3.7141061271543476,
          -7,
          -7,
          -4.056923898922357,
          -4.3787203221163375,
          -5.173066748116727,
          -7,
          -3.0232524596337114,
          -2.756636108245848,
          -3.232922028504549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.281124309449275,
          -7,
          -3.666049738480516,
          -7,
          -7,
          -7,
          -7,
          -4.607176127348896,
          -3.3349856489294853,
          -7,
          -3.4889634626461374,
          -7,
          -7,
          -7,
          -4.019946681678842,
          -7,
          -7,
          -7,
          -7,
          -4.079868335175173,
          -2.9188600183158036,
          -1.968482948553935,
          -1.870208760597288,
          -7,
          -2.8083797948823843,
          -3.2997251539756367,
          -2.814913181275074,
          -1.4778444763387584,
          -2.2023066418924566,
          -3.016057865962853,
          -2.3667341679034988,
          -3.307628455637662,
          -1.978864984347657,
          -1.878610165525299,
          -7,
          -3.760648619581356,
          -7,
          -2.98781517440207,
          -7,
          -2.965201701025912,
          -3.031139050792672,
          -3.0538464268522527,
          -7,
          -2.3268476989159903,
          -2.093421685162235,
          -7,
          -3.3664229572259727,
          -7,
          -1.7442929831226763,
          -3.9949180901023182,
          -3.8648175104719082,
          -3.897909722656368,
          -7,
          -3.401745082237063,
          -1.6854431518033566,
          -3.1970047280230456,
          -1.809933622951006,
          -7,
          -2.7075701760979367,
          -1.5638385428055097,
          -7,
          -2.4538277764478607,
          -2.9188687433809846,
          -2.3502480183341627,
          -3.240632438491053,
          -7,
          -2.848394408643486,
          -7,
          -3.061829307294699,
          -1.7708520116421442,
          -7,
          -3.8588979572320037,
          -7,
          -1.919078092376074,
          -2.1327398382608846,
          -7,
          -3.519827993775719,
          -2.718916686014861,
          -7,
          -7,
          -7,
          -2.896201899289207,
          -2.2100508498751372,
          -2.955046014722926,
          -2.144885418287142,
          -7,
          -7,
          -1.804480189105993,
          -3.1249115923549144,
          -3.003029470553618,
          -1.8815273056409318,
          -1.9584444238670942,
          -2.8171244614184556,
          -7,
          -2.0746336182969043,
          -2.443106456737266,
          -1.7817553746524688,
          -7,
          -2.2135580011219793,
          -1.9410525092223048,
          -2.687380306589906,
          -2.2726150608493985,
          -2.701175349207917,
          -3.682145076373832,
          -3.2895889525425965,
          -2.9585638832219674,
          -2.622214022966295,
          -2.6242820958356683,
          -3.973497308732063,
          -3.4299136977637543,
          -2.131137273778607,
          -3.311329952303793,
          -4.016301939781916,
          -2.879955585122749,
          -3.267781659715359,
          -3.5873517099208505,
          -3.076203381088768,
          -2.2321487062561682,
          -7,
          -2.3988077302032647,
          -7,
          -2.020005934626871,
          -1.7012299980669174,
          -7,
          -1.3350882209232402,
          -2.416640507338281,
          -7,
          -2.7578513436855796,
          -2.1968207439144254,
          -7,
          -7,
          -2.439332693830263,
          -2.918554530550274,
          -2.75815462196739,
          -2.3483048630481607,
          -3.1390916075238224,
          -7,
          -2.4899584794248346,
          -2.416640507338281,
          -3.0334237554869494,
          -7,
          -7,
          -7,
          -7,
          -2.3145693943004555,
          -2.526339277389844,
          -3.082246654743669,
          -3.0595634179012676,
          -3.0118522700068455,
          -2.738780558484369,
          -2.598790506763115,
          -7,
          -2.356981400993131,
          -7,
          -3.6809244488059925,
          -7,
          -7,
          -2.924795995797912,
          -7,
          -3.062581984228163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.591064607026499,
          -4.177889851651956,
          -4.381714192303751,
          -5.080601236508595,
          -7,
          -7,
          -4.779564026171181,
          -4.779592884145819,
          -4.779701084475718,
          -5.080954608767231,
          -2.025167138603114,
          -7,
          -7,
          -7,
          -3.751901678305574,
          -2.9805138004226635,
          -3.6658154279909354,
          -3.7597649431594515,
          -4.604092791382165,
          -4.041525465650097,
          -4.779632560730201,
          -2.4745847150335125,
          -3.4702914591867704,
          -5.080698622871129,
          -3.087064026120594,
          -2.088702509314734,
          -7,
          -4.779949842979917,
          -5.080666163176663,
          -4.00199317382353,
          -3.9670436946040506,
          -4.604204445856331,
          -2.575067860586362,
          -3.758742522719065,
          -4.478627811914573,
          -4.177922287911278,
          -3.9050975707722384,
          -3.7014384544643515,
          -4.302468022284192,
          -4.236159230579664,
          -7,
          -5.085754244209699,
          -4.302615890543056,
          -2.966485288615243,
          -7,
          -3.9675983721901957,
          -3.719680686428995,
          -4.235589763228279,
          -3.399345569666288,
          -4.126621980658712,
          -4.77981646845598,
          -7,
          -3.9668959012123954,
          -2.9839339903647955,
          -2.6173173711074478,
          -4.478829733882481,
          -4.3028610245195775,
          -3.880191706122409,
          -7,
          -4.603696366279048,
          -4.603743235378374,
          -4.235928650226638,
          -3.68411614002016,
          -3.5787000814126397,
          -7,
          -5.08059762918686,
          -7,
          -2.700350867630475,
          -5.080651735867012,
          -7,
          -4.779845309661779,
          -5.080637308078068,
          -4.485199533870229,
          -3.391748601849537,
          -7,
          -7,
          -3.387494700369401,
          -4.779711903026216,
          -3.512828569933557,
          -7,
          -4.4787684460657005,
          -5.080619272667835,
          -7,
          -3.6334684555795866,
          -4.2355212326535785,
          -4.040681439373358,
          -4.178246517332496,
          -4.003640014891705,
          -4.081250066810652,
          -3.619345252023765,
          -4.30433252154373,
          -2.3523111788979363,
          -3.935726732763876,
          -4.603761260608287,
          -4.779610919406259,
          -5.080633701055939,
          -7,
          -4.235701553060869,
          -5.080911354139791,
          -4.779740751176741,
          -5.080637308078068,
          -5.087713997583522,
          -5.080864490098036,
          -7,
          -7,
          -3.1133574320107926,
          -7,
          -4.779708296872661,
          -4.303030374525659,
          -4.001564258766185,
          -3.2495795919611683,
          -4.3026411313125035,
          -4.2355933698010935,
          -3.6838356205451257,
          -4.604434867552265,
          -2.2839979374679777,
          -3.7586920594058713,
          -4.236180841212548,
          -3.802009934029908,
          -3.576514112051963,
          -3.8793611369153265,
          -7,
          -3.2652544343851564,
          -2.8078961003912637,
          -4.03938887924493,
          -3.9678646537908753,
          -3.850912790647412,
          -2.216030105101232,
          -4.779895777163634,
          -3.5919043645847664,
          -3.5653146367896102,
          -3.780867933550551,
          -7,
          -3.364731342718344,
          -3.3175518450809616,
          -7,
          -7,
          -2.780128801657813,
          -5.080608451062176,
          -4.779571240844613,
          -5.080644522032454,
          -5.080644522032454,
          -7,
          -2.8704282921999926,
          -3.0973777355179872,
          -3.8341450755684536,
          -3.906453567547994,
          -7,
          -3.4483455459718755,
          -7,
          -4.478645844479148,
          -3.905918148971727,
          -3.7272052047543145,
          -3.5919832327066707,
          -7,
          -5.080860884962276,
          -4.779827284132608,
          -3.0671696446545726,
          -7,
          -5.080673376651764,
          -7,
          -4.780673676286881,
          -4.381685338403339,
          -7,
          -3.358513089911424,
          -4.303879730883368,
          -3.8263879867643107,
          -4.604258461911163,
          -3.469168017429083,
          -4.126863456607053,
          -5.080954608767231,
          -1.8251823856386462,
          -4.381782712635187,
          -7,
          -7,
          -4.381923325770788,
          -4.603642280263075,
          -4.779913799850263,
          -7,
          -2.917687664328476,
          -7,
          -2.7963658130592655,
          -7,
          -4.129002037005967,
          -1.7091014698616578,
          -4.001658007471607,
          -3.5136818186999896,
          -3.282215572818346,
          -3.4692111685525626,
          -3.179052438944499,
          -4.042328460240732,
          -3.513217600067939,
          -4.081217648307154,
          -3.802838513668216,
          -4.780122808375505,
          -4.603883812335287,
          -4.482884297978607,
          -7,
          -7,
          -4.478530423125539,
          -4.409865523598587,
          -7,
          -2.759778274692473,
          -5.08064091507024,
          -3.0609746934997224,
          -4.0016544021263485,
          -3.7190356989651443,
          -4.177504034843219,
          -4.779708296872661,
          -3.549814370675745,
          -4.302511306010539,
          -7,
          -4.478566495593843,
          -2.603669484764532,
          -3.4900881970129864,
          -7,
          -4.603555728624722,
          -3.9045280136121536,
          -4.6034727671155,
          -4.6035160533584065,
          -4.001730108092166,
          -5.080774352724805,
          -4.381869249183214,
          -3.0402174245188593,
          -3.326652014564429,
          -3.1989706073934725,
          -2.4833757317425307,
          -7,
          -3.8253828376360515,
          -3.7188661858175696,
          -3.7599770457776187,
          -4.603490803574361,
          -5.080695016358215,
          -3.683374887886742,
          -5.080835648173974,
          -4.779949842979917,
          -7,
          -5.080626486921806,
          -5.0807130486232985,
          -5.080716654986472,
          -5.080612058294023,
          -7,
          -4.127000353468564,
          -1.831817817997653,
          -7,
          -7,
          -7,
          -5.080799593075126,
          -3.825563143070667,
          -3.7798380995398886,
          -7,
          -4.236227660561736,
          -3.6065067620786353,
          -4.47877926219127,
          -3.7663278496599504,
          -2.9877270261586526,
          -7,
          -5.080666163176663,
          -7,
          -3.1725246190207876,
          -3.318290070795012,
          -2.5288608316878944,
          -4.127410785330337,
          -2.3361535020288478,
          -5.080821226493627,
          -5.08068419663977,
          -4.381833194383693,
          -2.508770502066406,
          -3.8788806869206085,
          -3.7030978374585235,
          -2.9506511583497743,
          -4.385924282316242,
          -7,
          -7,
          -4.3816673037420495,
          -3.93492748380264,
          -3.605208046467365,
          -3.382499724125919,
          -5.08059762918686,
          -4.60429446888234,
          -4.002101236846782,
          -7,
          -3.934585012945061,
          -4.604096393587492,
          -3.8255415103705555,
          -2.809449842484887,
          -3.5913626556153853,
          -4.178674849395301,
          -3.719295250433741,
          -2.2089790645019827,
          -4.604096393587492,
          -5.080698622871129,
          -2.858329728745217,
          -4.381721405479332,
          -4.779686659322491,
          -3.2300997622960104,
          -3.8503939374562877,
          -2.765080808180291,
          -3.035905475957212,
          -3.8287994840969963,
          -3.9353380926686246,
          -3.7215238812040106,
          -4.382276460538189,
          -1.9694903473303493,
          -3.5036007586148,
          -4.7797155091498285,
          -7,
          -5.080666163176663,
          -3.938036986977661,
          -3.4911317334850387,
          -7,
          -4.3027060294129456,
          -3.7593476255559497,
          -4.779632560730201,
          -5.080633701055939,
          -7,
          -4.303188855130554,
          -4.302882647346662,
          -4.080687803242536,
          -4.382931521415937,
          -4.6038369584054015,
          -3.3704727148375038,
          -3.8099458187476407,
          -2.171040824173655,
          -7,
          -3.298341166700119,
          -2.175522015573569,
          -2.989392397889798,
          -7,
          -3.5904535067980072,
          -3.967025673712249,
          -3.225409801222181,
          -2.8871110573475165,
          -3.6685292718594495,
          -3.9667083835601757,
          -4.3816420539580045,
          -7,
          -3.1132279196600905,
          -4.235697947386347,
          -5.08131129515998,
          -4.302716844820226,
          -3.761670147858042,
          -3.7383697008739407,
          -2.3806973336208213,
          -7,
          -4.779571240844613,
          -1.8459163788095763,
          -2.1398740830950502,
          -2.0256407807690597,
          -3.9680516729654616,
          -2.316910755195275,
          -2.5470930503307074,
          -2.5985361084603706,
          -2.14725185319735,
          -1.5742845569137742,
          -5.080731080139699,
          -2.3468919571765694,
          -2.3165348356252076,
          -2.4168996802699305,
          -2.296868235981207,
          -1.5575024593102262,
          -3.0424317425409426,
          -2.0813564630850223,
          -1.5790475932029566,
          -3.159443530693639,
          -2.4001013067225925,
          -2.999901594008469,
          -2.4433073453168954,
          -2.937654331748257,
          -1.6912451854953618,
          -2.964401400808145,
          -2.7636094789320236,
          -2.361118647856173,
          -2.6998964917388424,
          -4.386331279460089,
          -1.6569337735489773,
          -2.1902931382032444,
          -2.380360629254868,
          -2.586901841614534,
          -2.729842160327929,
          -2.808238540175844,
          -2.7620039203165594,
          -2.85991086583364,
          -2.584701927901414,
          -2.448102176466944,
          -3.213611891844391,
          -3.026364792307931,
          -2.695830665371915,
          -1.7284436834387493,
          -2.6707772914123376,
          -4.040979729669609,
          -3.209799552659082,
          -4.384410766617083,
          -2.6783441182258394,
          -2.581855976646831,
          -2.8697431530747894,
          -2.4871715039561493,
          -2.8731126826094333,
          -3.277803625816607,
          -4.043337266512166,
          -3.093809893765957,
          -4.482941436820657,
          -3.6832416162372654,
          -4.312794214562137,
          -2.70713293016933,
          -2.9078667452917313,
          -4.304289418956787,
          -1.9094208172150455,
          -1.9598446499148852,
          -2.4828622066657835,
          -4.0810627264918615,
          -3.2170284253606174,
          -4.002003981335927,
          -1.7682696892308192,
          -3.774148380271373,
          -3.09150156431672,
          -2.6237976154612452,
          -2.8062196942237123,
          -4.03956552796684,
          -2.712300326291085,
          -2.9587175448355043,
          -2.9663357525135394,
          -3.829996661202949,
          -3.0379678925594034,
          -3.660710922305739,
          -2.281167099190864,
          -3.834092050101445,
          -3.549749537701614,
          -2.113498426251389,
          -1.649593059957502,
          -7,
          -2.2870790764685953,
          -3.783127871279766,
          -3.639422450302014,
          -2.6790242918538194,
          -2.9103508839812586,
          -3.8772129204488945,
          -4.001816613039424,
          -7,
          -3.851556891005012,
          -2.411444049316433,
          -1.5384947096017696,
          -2.852155039111322,
          -2.1343129127724483,
          -2.735869743544286,
          -2.0870769671078984,
          -1.7049214924545777,
          -2.4235994898822537,
          -2.8130108588032003,
          -3.2291805286407804,
          -1.8469843374489812,
          -3.047541666264042,
          -1.108702641586889,
          -2.2148184542099716,
          -2.433244135631517,
          -2.800139895326366,
          -1.3654797333403765,
          -2.319035902573456,
          -2.3198467849581808,
          -3.1802513549450664,
          -3.021013027860414,
          -1.6753495516750914,
          -3.23151984311686,
          -2.521372256190692,
          -2.6554958892506404,
          -2.7161985370430206,
          -3.8254261177678233,
          -2.0382107975861454,
          -3.400232091171582,
          -3.2810694577020554,
          -2.1103834814013,
          -0.9296970878207105,
          -1.4013941251332214,
          -3.5892070756999934,
          -2.327539647757217,
          -2.650242505743437,
          -2.556122943778785,
          -2.8706820155665653,
          -7,
          -3.0349282079313338,
          -2.037242898156917,
          -3.719547443511741,
          -2.758569481227834,
          -1.9647609404708088,
          -3.3169892313236793,
          -2.0450265248027604,
          -2.8261504195347094,
          -2.2164665449283945,
          -3.9044594722217942,
          -2.5256871158248355,
          -2.881388268712521,
          -2.1226285770080024,
          -1.3914371383869562,
          -3.5499836111596887,
          -3.0009977303577937,
          -2.9069313197859845,
          -3.0023838306972106,
          -1.829798413524477,
          -3.469911774060926,
          -3.3040774356605502,
          -1.9562701198834112,
          -2.896201899289207,
          -7,
          -2.45692741092907,
          -2.5423522985527542,
          -2.588159616383092,
          -3.2894594820192005,
          -2.682572554981882,
          -3.2293320657344258,
          -1.9355597367167139,
          -2.597778152258259,
          -2.723795501248387,
          -2.5570372957219885,
          -2.4781079822536873,
          -3.801779091318613,
          -3.182750434591266,
          -1.4909375199577073,
          -2.3321487612593845,
          -2.3678451975502317,
          -1.3990477506093277,
          -2.238924389835243,
          -1.6661724659825865,
          -2.5868973219120925,
          -1.8032145727317173,
          -2.1367064465138674,
          -2.4704893721204355,
          -2.5293041493281634,
          -3.7003394895658697,
          -3.633371053038101,
          -2.0102170388877076,
          -2.6588048952737338,
          -2.878641007432556,
          -2.455135188974629,
          -1.3061208875878187,
          -2.211309420168281,
          -1.8029383499157559,
          -1.870828498512569,
          -1.9911381386881442,
          -2.9729401192703837,
          -3.158132645843839,
          -3.1213289151698236,
          -4.478696331677028,
          -2.545404787551787,
          -2.3258659195428875,
          -2.798809951364486,
          -3.4272877063969456,
          -3.131070522108716,
          -4.381638446726156,
          -1.3207734774351287,
          -3.1772622739970817,
          -3.419028590097298,
          -4.126758953646628,
          -3.2611835383544423,
          -2.8184314255975202,
          -3.223427432577566,
          -2.9701197319309296,
          -2.3260823938064945,
          -2.644691850487941,
          -2.4212747912103465,
          -3.205500290929755,
          -2.765643363141901,
          -3.966625417227429,
          -4.779610919406259,
          -4.177518464070232,
          -3.194553983567667,
          -3.098495907887131,
          -3.4000556518905416,
          -2.1023538547952634,
          -2.4976843791614503,
          -3.1451363462723716,
          -3.3099115233405927,
          -4.235495981820906,
          -2.5592259935316983,
          -3.70047656153093,
          -4.381656482585787,
          -1.8959507388515917,
          -4.080637308078068,
          -7,
          -2.491404797847201,
          -2.692259240592287,
          -3.0256471576060306,
          -4.478555674167947,
          -7,
          -3.1568771206909294,
          -4.177514856808423,
          -2.5785157882765883,
          -4.47860256506622,
          -4.303433666006204,
          -4.779574848136385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2994314973289582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.782114147479071,
          -3.976241047772464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6665179805548807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.34206720353101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4268364538035083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146128035678238,
          -7,
          -7,
          -7,
          -3.5630457817631846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1896306576921556,
          -7,
          -7,
          -7,
          -7,
          -2.391816923613249,
          -7,
          -2.45687190911158,
          -2.5118833609788744,
          -7,
          -7,
          -2.90687353472207,
          -7,
          -3.568110421335942,
          -2.907411360774586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.378397900948138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.907411360774586,
          -7,
          -3.468864040148188,
          -7,
          -7,
          -7,
          -2.2928096654172903,
          -7,
          -7,
          -3.2522460504731185,
          -3.8065530355273407,
          -7,
          -7,
          -7,
          -4.261706851652487,
          -7,
          -7,
          -3.144885418287142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9755696578936623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.797959643737196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9309490311675233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.482873583608754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.924795995797912,
          -7,
          -7,
          -2.9489017609702137,
          -7,
          -7,
          -3.3152354096177272,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.812690584397959,
          -7,
          -7,
          -7,
          -7,
          -2.7222918382381724,
          -2.717670503002262,
          -7,
          -2.91539983521227,
          -7,
          -7,
          -3.1212314551496214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.733999286538387,
          -7,
          -7,
          -2.364550995353972,
          -3.0338256939533106,
          -3.54703589974001,
          -7,
          -7,
          -7,
          -2.677606952720493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.29928933408768,
          -7,
          -7,
          -7,
          -7,
          -2.7267272090265724,
          -2.7371926427047373,
          -7,
          -7,
          -7,
          -2.7041505168397992,
          -7,
          -2.3502480183341627,
          -7,
          -7,
          -7,
          -2.8639173769578603,
          -2.9334872878487053,
          -3.4100176082030527,
          -7,
          -4.501059262217751,
          -7,
          -7,
          -7,
          -3.341335585180992,
          -7,
          -7,
          -2.929674317948588,
          -3.2143138974243994,
          -7,
          -7,
          -7,
          -7,
          -2.382917135087531,
          -2.888179493918325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.166726055580052,
          -7,
          -7,
          -7,
          -4.007758443254898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8943160626844384,
          -7,
          -2.7134905430939424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.621858011281787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4371160930480786,
          -4.655332158678962,
          -7,
          -1.9943800073599416,
          -3.6449307079135873,
          -7,
          -7,
          -2.919601023784111,
          -7,
          -2.218985395949339,
          -7,
          -3.1109262422664203,
          -7,
          -7,
          -7,
          -2.6646419755561257,
          -7,
          -7,
          -7,
          -3.1427022457376155,
          -2.7234556720351857,
          -3.4194600727860704,
          -7,
          -7,
          -4.319699293893277,
          -4.749403899010527,
          -7,
          -7,
          -7,
          -3.3660492098002353,
          -7,
          -7,
          -3.957128197676813,
          -7,
          -7,
          -7,
          -7,
          -4.804303028952768,
          -4.097014231178033,
          -7,
          -7,
          -3.7000977046130537,
          -7,
          -4.611202692182174,
          -7,
          -5.10237538418105,
          -7,
          -4.184670141350603,
          -7,
          -7,
          -4.6278265379179295,
          -4.45399066996823,
          -7,
          -4.007423429204934,
          -4.2286826097129655,
          -7,
          -4.242789809478676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3933119147002,
          -3.972665592266111,
          -2.5428254269591797,
          -4.097245737610607,
          -2.3708744173977294,
          -2.5215995264411646,
          -7,
          -7,
          -7,
          -3.847140617413406,
          -3.0215338405254566,
          -2.5710096723093048,
          -7,
          -3.8464608251293324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.715418322595056,
          -2.916102861641635,
          -7,
          -2.5858238440164927,
          -4.282014536689525,
          -4.872167931504066,
          -7,
          -7,
          -7,
          -2.922905436938399,
          -7,
          -7,
          -3.1521863853540864,
          -3.589465541751032,
          -2.7427251313046983,
          -2.7234556720351857,
          -4.015275906681875,
          -4.282191456275556,
          -7,
          -7,
          -3.5692568333286103,
          -3.385933807075215,
          -7,
          -2.1245042248342823,
          -2.9345951413783444,
          -2.866240066363793,
          -7,
          -4.158663980813989,
          -7,
          -3.333850145102545,
          -3.6277753752293034,
          -3.7207792813583587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0341302127096714,
          -2.0842186867392387,
          -1.996886764575857,
          -2.28668096935493,
          -2.2101847054724066,
          -2.677128774472802,
          -2.653534094302368,
          -7,
          -2.7234556720351857,
          -2.650238119299283,
          -7,
          -3.3081068600700276,
          -1.616550528049198,
          -2.3205616801952367,
          -7,
          -2.057818194432099,
          -3.2785249647370174,
          -2.9947569445876283,
          -3.1316186643491255,
          -2.9867717342662448,
          -1.7061945193192638,
          -3.071513805095089,
          -2.8273692730538253,
          -2.476155081947642,
          -1.418439403733663,
          -7,
          -2.9427519204298136,
          -7,
          -2.7032913781186614,
          -4.472785693752219,
          -2.1648933592542074,
          -3.487931421189317,
          -2.6857417386022635,
          -7,
          -1.9934362304976116,
          -7,
          -1.678448337191417,
          -7,
          -1.5473644129795046,
          -2.0886752501377734,
          -7,
          -2.6541765418779604,
          -2.7772196208195874,
          -1.6803355134145632,
          -2.640978057358332,
          -2.529772453228238,
          -2.732594775555279,
          -7,
          -7,
          -1.3026355223793997,
          -2.1666603081752025,
          -4.035969768696547,
          -7,
          -1.9582452518929987,
          -1.5782570766553377,
          -7,
          -2.92005807281875,
          -7,
          -3.0017337128090005,
          -3.2127201544178425,
          -2.2100508498751372,
          -2.45692741092907,
          -7,
          -3.1389339402569236,
          -1.8237112894829028,
          -2.9556877503135057,
          -7,
          -2.756636108245848,
          -2.7757317762602307,
          -2.4183012913197457,
          -2.346352974450639,
          -1.769150006268853,
          -3.0038911662369103,
          -1.3392944957592638,
          -2.1156105116742996,
          -2.101830359876606,
          -2.5403294747908736,
          -7,
          -2.785408934270052,
          -7,
          -2.694312646223346,
          -2.2227164711475833,
          -2.7923138519710444,
          -2.9073217693391156,
          -2.9984773030365064,
          -3.2711443179490782,
          -7,
          -7,
          -3.7984434603501875,
          -7,
          -1.9198249446356317,
          -3.321184027302314,
          -3.363779064430861,
          -1.5373797480637228,
          -2.712462626680574,
          -3.007994695660883,
          -3.301753217283077,
          -1.9645738809210547,
          -3.0425755124401905,
          -1.8856842356521324,
          -7,
          -1.5763413502057928,
          -2.4917117901707675,
          -7,
          -2.693726948923647,
          -1.69975891369356,
          -7,
          -2.694574943997341,
          -2.718501688867274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146438135285775,
          -7,
          -2.028932562598488,
          -7,
          -7,
          -2.6522463410033232,
          -7,
          -7,
          -2.5483894181329183,
          -2.121887985103681,
          -2.857935264719429,
          -2.4822481208171117,
          -3.543074235033532,
          -7,
          -7,
          -7,
          -2.350952470202979,
          -7,
          -7,
          -3.0793847738879054,
          -7,
          -7,
          -2.9367649976099415,
          -7,
          -7,
          -2.6473829701146196,
          -7,
          -2.093421685162235,
          -7,
          -7,
          -2.6599162000698504,
          -2.8555191556678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.378061601404729,
          -7,
          -7,
          -7,
          -7,
          -3.3345207667334886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.774087396473049,
          -7,
          -7,
          -3.0141003215196207,
          -3.5281394817829104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8850217948622974,
          -7,
          -7,
          -7,
          -7,
          -3.425044874551389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.076822423342773,
          -7,
          -7,
          -2.7133225049870275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.954121855324949,
          -3.55834850876162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.154559214682701,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2721666251407875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4308809464528913,
          -7,
          -2.8551481540375985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.458033192496506,
          -7,
          -7,
          -7,
          -7,
          -2.8558696887096082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4159565554639775,
          -7,
          -7,
          -7,
          -4.276431165033798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3554515201265174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.539452491549461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4235735197327357,
          -7,
          -7,
          -3.3944516808262164,
          -7,
          -3.423081958297231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.584670384464349,
          -7,
          -3.0671638826028436,
          -7,
          -7,
          -3.4113095114320773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9320676922007216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40705081480425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4323277922616042,
          -2.6435775608419076,
          -7,
          -7,
          -7,
          -3.448242412634439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2284736882906677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.508395033133053,
          -7,
          -3.184028602525124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.614711156273672,
          -7,
          -3.571760576653489,
          -7,
          -7,
          -7,
          -2.6500992783512007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4566696294237573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.21409969545611,
          -7,
          -7,
          -3.1951798424319033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2789548377038624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4202858849419178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6652056284346006,
          -4.021461244518642,
          -7,
          -7,
          -4.093655114075085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3385660494937994,
          -4.064749916689788,
          -4.015024263324626,
          -3.1356096360286796,
          -4.160768561861128,
          -2.924795995797912,
          -2.6478717653062325,
          -3.9564085711958326,
          -2.9362971598951773,
          -7,
          -1.8383646573552883,
          -3.519565500880509,
          -3.6346970640915686,
          -3.4742957493856745,
          -2.3540432933463484,
          -4.023478810083077,
          -3.82272367309186,
          -2.6210371101014225,
          -3.0796876276113365,
          -3.5514398317845557,
          -7,
          -4.409814816892981,
          -3.9806849743633146,
          -3.0067489005964645,
          -3.1443562273681835,
          -7,
          -4.044627943008132,
          -3.636659803394231,
          -7,
          -2.5155592635276585,
          -2.8933687039646,
          -4.127612259002789,
          -7,
          -3.088161411255697,
          -2.8417243581163993,
          -7,
          -7,
          -3.43435596238644,
          -3.0265659477323656,
          -4.052309099647323,
          -7,
          -3.896691526562884,
          -3.8703453710809597,
          -7,
          -7,
          -4.127007557371327,
          -7,
          -2.819461675009015,
          -7,
          -7,
          -3.187708686423428,
          -3.600155784473169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5431985856376467,
          -3.3389542523776075,
          -7,
          -3.5480909520409916,
          -3.264773286837431,
          -4.5766004672102065,
          -7,
          -7,
          -7,
          -3.3110066962547022,
          -3.8334658601706924,
          -7,
          -7,
          -2.6989378331828577,
          -7,
          -3.8239304551255637,
          -3.610802066205635,
          -4.021995097954464,
          -7,
          -3.8176975547630243,
          -2.9020806313459078,
          -3.175327282032053,
          -7,
          -7,
          -3.8492248488826877,
          -3.019082592425777,
          -7,
          -4.052289848578728,
          -7,
          -3.3058885302843097,
          -7,
          -3.7925667729442467,
          -3.1063609088067503,
          -7,
          -7,
          -2.4358443659844413,
          -3.0300701134793617,
          -1.633125305538721,
          -7,
          -1.9922990706346086,
          -2.381853188778583,
          -2.1575834883314,
          -2.4006298316495482,
          -1.9454412288607073,
          -3.4109458586877746,
          -7,
          -2.2953256836728166,
          -2.1367205671564067,
          -2.506975366260944,
          -2.4891143693789193,
          -2.0465251788122005,
          -2.408557935660577,
          -2.4521841151090564,
          -2.0265916256712586,
          -1.7524649928865,
          -1.9975501969906566,
          -1.941697731835903,
          -2.2772270809913566,
          -1.92067396499224,
          -1.94420840975905,
          -2.7456992266025058,
          -2.9312883237487672,
          -2.7743344507093037,
          -2.0920382658475796,
          -2.468018941374278,
          -7,
          -2.463201503182557,
          -2.4438542406599173,
          -1.993451700681844,
          -3.0742677425533578,
          -1.730479455562148,
          -3.128722284338427,
          -2.032543216047485,
          -7,
          -7,
          -3.388633969351789,
          -2.0679073785805415,
          -1.8267749954875694,
          -2.1177446411869854,
          -2.333806998266098,
          -7,
          -1.433320930526303,
          -2.255272505103306,
          -1.5729617843078287,
          -7,
          -2.2061154317675733,
          -2.917330426106554,
          -2.274021941116145,
          -1.8790996538569065,
          -2.3369597851207042,
          -7,
          -3.395501124305626,
          -2.9213148070981427,
          -1.8156404895092801,
          -2.0360963453482763,
          -1.8049444269715802,
          -2.1828813291360327,
          -2.955046014722926,
          -2.5423522985527542,
          -3.1389339402569236,
          -7,
          -2.3774056054321284,
          -2.2656038765850357,
          -3.1188844681181167,
          -7,
          -1.8238677678340565,
          -1.9545439981580643,
          -3.4082399653118496,
          -2.7275412570285567,
          -1.7314736440510339,
          -7,
          -7,
          -2.1795517911651876,
          -2.7674527180977733,
          -7,
          -2.54448146130858,
          -2.711244671343486,
          -3.2098723115450163,
          -2.707712079213691,
          -1.9674176304026578,
          -1.0995657990900722,
          -1.6855672647538227,
          -1.5467624914031377,
          -7,
          -3.0711452904510828,
          -2.3591395481388244,
          -1.5409052121143498,
          -2.3919930722597127,
          -1.5430327769186705,
          -2.4391785930633114,
          -2.2112985672830483,
          -1.7022855541434265,
          -2.7466546801789185,
          -1.5883005914475676,
          -7,
          -2.326189510638604,
          -7,
          -7,
          -3.1271047983648077,
          -2.7964355588101744,
          -2.493893521283257,
          -7,
          -3.391111613702803,
          -7,
          -1.7729500566978358,
          -7,
          -2.2293298111056714,
          -2.911512714632127,
          -2.9182051383496885,
          -2.4850901843909377,
          -2.55249439402386,
          -2.131854941615539,
          -1.613657591302388,
          -1.825237608259588,
          -7,
          -7,
          -1.5417922601981502,
          -7,
          -7,
          -7,
          -2.509370560438018,
          -2.805160901599434,
          -7,
          -2.653148169085708,
          -1.9358210087389172,
          -3.0013875234866414,
          -3.3953263930693507,
          -3.368100851709351,
          -2.5599066250361124,
          -3.077731179652392,
          -3.3690302218091532,
          -2.9259511995848437,
          -7,
          -7,
          -2.2994588715726607,
          -1.8369834472586366,
          -3.1889284837608534,
          -7,
          -7,
          -7,
          -7,
          -1.7943548719475486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8152930583882103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4369573306694496,
          -4.276668561845278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6541765418779604,
          -2.888179493918325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8976270912904414,
          -7,
          -7,
          -7,
          -7,
          -2.2287424575642567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5289167002776547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.67583069469469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5888317255942073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1456107104450566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0669591978671225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5833247477133505,
          -2.989038878211426,
          -7,
          -2.832508912706236,
          -7,
          -4.43691763100473,
          -7,
          -7,
          -2.806519134080705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6692238739308056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1609144478506357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4168781513835556,
          -7,
          -3.388870545406613,
          -7,
          -7,
          -2.726171300154445,
          -2.611723308007342,
          -2.8744818176994666,
          -2.8512583487190755,
          -2.8965262174895554,
          -2.655618583541222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3581252852766488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.46014581749175,
          -7,
          -7,
          -7,
          -2.8609366207000937,
          -7,
          -7,
          -7,
          -7,
          -2.509202522331103,
          -7,
          -2.3293978793610424,
          -7,
          -7,
          -1.8222770753484876,
          -7,
          -3.5328817194073974,
          -7,
          -7,
          -7,
          -7,
          -2.603144372620182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.148029445091453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7674209222282797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0989896394011773,
          -7,
          -4.198450885566405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9339931638312424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4510184521554574,
          -7,
          -7,
          -2.6830470382388496,
          -4.608675764480902,
          -7,
          -7,
          -2.9876662649262746,
          -7,
          -7,
          -7,
          -7,
          -2.5550944485783194,
          -2.5520595341878844,
          -7,
          -7,
          -7,
          -7,
          -4.797565280257441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4187982905903533,
          -5.132285310868588,
          -7,
          -2.810568529216413,
          -3.9446677014003875,
          -7,
          -7,
          -7,
          -7,
          -2.2422100322640643,
          -2.9769610160114275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6204830741547482,
          -7,
          -7,
          -4.6195732947860035,
          -4.748529124399832,
          -7,
          -7,
          -7,
          -2.866484253384509,
          -7,
          -7,
          -3.692902974323973,
          -7,
          -3.4352469595691293,
          -4.576514112051963,
          -4.356494336354738,
          -4.502488572402794,
          -3.6177863946963984,
          -7,
          -7,
          -3.6118198286171186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7859701251320095,
          -4.0776585490841315,
          -7,
          -7,
          -7,
          -7,
          -4.006457484638183,
          -3.7485497883614816,
          -7,
          -4.239974801116937,
          -3.4026625253707534,
          -3.0242119239259035,
          -7,
          -7,
          -7,
          -4.391323326974091,
          -7,
          -7,
          -4.573103783163991,
          -3.226943424688905,
          -2.6648769198312108,
          -7,
          -7,
          -7,
          -4.067641105496968,
          -7,
          -7,
          -7,
          -3.666798683666174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7545585506411285,
          -4.202311184698005,
          -7,
          -7,
          -7,
          -7,
          -3.3114889665785556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.606467355504293,
          -2.9620495355379868,
          -7,
          -4.634688823826319,
          -7,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -7,
          -7,
          -7,
          -4.077476919504343,
          -1.9101040122984183,
          -7,
          -1.9600628615851772,
          -1.9118231942831303,
          -2.2820815443017564,
          -3.092457462483194,
          -1.581255782710964,
          -7,
          -7,
          -3.0114294617807817,
          -2.803457115648414,
          -3.784362529628032,
          -2.258876629372131,
          -1.7281149618436935,
          -3.327563260187278,
          -2.095672926234173,
          -2.7737864449811935,
          -2.3379965170582664,
          -3.09377178149873,
          -2.932980821923198,
          -1.2807300889659174,
          -7,
          -2.789228057267335,
          -2.89707700320942,
          -7,
          -7,
          -2.935696157954651,
          -7,
          -2.593286067020457,
          -3.772042847107852,
          -2.4662902598594676,
          -3.1509216740592922,
          -7,
          -2.6898414091375047,
          -7,
          -3.1784013415337555,
          -2.244689360492884,
          -7,
          -1.9405164849325671,
          -1.6657290711973398,
          -7,
          -2.2928096654172903,
          -2.707144188342445,
          -7,
          -2.669485932526948,
          -7,
          -1.853871964321762,
          -7,
          -2.028977705208778,
          -1.9758911364017928,
          -2.306067436355595,
          -4.033705151467852,
          -7,
          -7,
          -2.2032142586949006,
          -7,
          -2.4917617809025523,
          -2.992553517832136,
          -7,
          -2.724366907119601,
          -2.144885418287142,
          -2.588159616383092,
          -1.8237112894829028,
          -2.3774056054321284,
          -7,
          -7,
          -3.930949031167523,
          -7,
          -3.0224283711854865,
          -2.270911639410481,
          -2.745855195173729,
          -2.5269850685599957,
          -2.0172652722719313,
          -7,
          -7,
          -2.3326510367587643,
          -2.2667019668840878,
          -2.1466447454142683,
          -2.4502491083193614,
          -2.7367947549243605,
          -2.6102037316428195,
          -7,
          -2.56062387454993,
          -2.5949447366950835,
          -3.274619619091238,
          -2.640481436970422,
          -2.5477747053878224,
          -7,
          -3.096307373399723,
          -3.1177682949263725,
          -2.682145076373832,
          -2.114833300327073,
          -3.1693174825463464,
          -1.5029349925544035,
          -3.118359220102451,
          -3.5066403055665023,
          -2.690122214141457,
          -7,
          -7,
          -2.337459261290656,
          -7,
          -1.8672710189654482,
          -3.0546130545568877,
          -3.1781132523146316,
          -2.2776092143040914,
          -1.8731267636145004,
          -7,
          -2.4361320532270767,
          -7,
          -7,
          -7,
          -7,
          -2.8825245379548803,
          -2.40226138245468,
          -2.303196057420489,
          -2.4730812769179225,
          -3.3550682063488506,
          -2.9370161074648142,
          -7,
          -2.223582462425357,
          -7,
          -7,
          -7,
          -2.7752462597402365,
          -2.745855195173729,
          -7,
          -3.076276255404218,
          -3.2275010649714306,
          -7,
          -2.2023066418924566,
          -7,
          -2.2573092768181025,
          -7,
          -7,
          -3.5824724529348537,
          -7,
          -7,
          -2.907411360774586,
          -3.177969136009376,
          -7,
          -7,
          -7,
          -2.8068580295188172,
          -7,
          -3.5700757053216043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.360877297102039,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9182400902214147,
          -7,
          -7,
          -7,
          -4.034456560924718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.438107045154885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6761446803562063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7645497190644672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8493948419854185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5229221725572004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6563035907524855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.133112920614726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019863713967843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9665640840973104,
          -7,
          -4.831489040110107,
          -7,
          -7,
          -4.548647338252487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.621134720505861,
          -7,
          -3.6731822392279376,
          -7,
          -3.0521646958282362,
          -3.3729120029701067,
          -2.44165379985028,
          -7,
          -2.9788849817912846,
          -7,
          -2.9285927844153066,
          -3.9761091470843497,
          -3.056170883335728,
          -3.079570297920983,
          -3.6203963453512844,
          -3.807444822547311,
          -3.5482138746859433,
          -3.6546769920742537,
          -2.7050507870521128,
          -4.310544628636955,
          -2.964154829404375,
          -4.0610410205231116,
          -3.887167020894774,
          -3.508026205525405,
          -2.8514741829727863,
          -7,
          -3.2127201544178425,
          -3.1987639676613915,
          -7,
          -3.451214843792629,
          -2.092382702652577,
          -3.1212767649547644,
          -3.641498898294518,
          -3.1434122718610147,
          -2.909154709808426,
          -7,
          -4.061979947074879,
          -3.7525285965492787,
          -2.9458552965590736,
          -7,
          -7,
          -7,
          -4.309800445601733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.504049276748714,
          -4.571234108634844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6334684555795866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165481742822164,
          -7,
          -7,
          -4.608076530882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.58937299251887,
          -2.1270609988103453,
          -7,
          -3.1622656142980214,
          -2.128722284338427,
          -2.578311687718837,
          -3.303368876556038,
          -2.44216608578472,
          -7,
          -7,
          -2.8966639794199422,
          -2.416085498340186,
          -3.329692733344092,
          -7,
          -2.433369746856586,
          -3.0557604646877348,
          -2.6512034378011884,
          -2.3806633963405828,
          -2.055584137246456,
          -2.294466226161593,
          -1.548639607424759,
          -2.9171114724936964,
          -2.606381365110605,
          -2.233313461142046,
          -7,
          -2.550228353055094,
          -7,
          -2.7684530982706304,
          -2.6047658847038875,
          -7,
          -3.0101097941798534,
          -2.980250452708863,
          -2.1443040992652644,
          -7,
          -2.5688719317338045,
          -7,
          -2.9180303367848803,
          -7,
          -7,
          -7,
          -3.4626974081017172,
          -7,
          -2.3687516195445553,
          -2.671481400086431,
          -7,
          -2.0744673493508063,
          -2.241795431295199,
          -1.624488362513449,
          -7,
          -2.6138418218760693,
          -2.497620649781288,
          -3.137986732723532,
          -2.994517113298384,
          -7,
          -7,
          -7,
          -2.6973383387401877,
          -2.425403782148611,
          -2.3521825181113627,
          -7,
          -2.545041898453366,
          -7,
          -3.2894594820192005,
          -2.9556877503135057,
          -2.2656038765850357,
          -7,
          -7,
          -3.461198288622493,
          -7,
          -2.691242282380971,
          -2.735997884091794,
          -7,
          -2.916453948549925,
          -1.5494491496233778,
          -7,
          -7,
          -3.6307328928171967,
          -7,
          -7,
          -3.442636525782232,
          -7,
          -7,
          -3.0856472882968564,
          -2.5724068675580556,
          -2.1654331908736246,
          -2.5276299008713385,
          -2.499228724283611,
          -7,
          -7,
          -2.6116771383924675,
          -1.942408140090593,
          -2.497620649781288,
          -1.4162900578684652,
          -2.9758285293789934,
          -2.7267272090265724,
          -2.5213716130326205,
          -3.208710019906401,
          -2.7010640378177277,
          -7,
          -2.5782570766553374,
          -7,
          -7,
          -7,
          -7,
          -1.6984000639892567,
          -7,
          -7,
          -7,
          -2.385424484360872,
          -7,
          -2.949390006644913,
          -2.296665190261531,
          -7,
          -2.960470777534299,
          -2.8175653695597807,
          -1.6574144282031131,
          -2.27307847310952,
          -3.081527326244805,
          -7,
          -7,
          -1.6147410230870514,
          -7,
          -7,
          -7,
          -2.8727388274726686,
          -2.3698340703001612,
          -7,
          -3.214843848047698,
          -2.368100851709351,
          -7,
          -2.800717078282385,
          -7,
          -2.496756725720979,
          -7,
          -7,
          -3.381611391532234,
          -7,
          -7,
          -2.9459607035775686,
          -2.2921175625108106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.379758615842701,
          -2.693726948923647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6824784516700206,
          -7,
          -7,
          -7,
          -7,
          -4.092439911331141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4263485737875077,
          -3.121960871649443,
          -7,
          -7,
          -3.1150173197373445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.043941605805343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5191422616644465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.118033128828567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2725841491100423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.913760886412323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8354368948018585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.94146173934733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5921545422761962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055148889889394,
          -4.012584163914151,
          -7,
          -7,
          -7,
          -2.381283029465036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.236285277448029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8066208304825055,
          -4.027104865879351,
          -4.02995164203684,
          -7,
          -7,
          -3.6766021695820186,
          -7,
          -7,
          -7,
          -3.5474875414068956,
          -3.9558800862253753,
          -7,
          -7,
          -7,
          -4.299790489253733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.789270390978015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0683286043873492,
          -7,
          -3.9524049395770247,
          -3.739493230781615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.974373507081423,
          -7,
          -7,
          -7,
          -4.2123474379880115,
          -7,
          -4.007363654312278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.525821952156663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5758418740358406,
          -2.999527557175333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0178432012520418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8101652845431495,
          -7,
          -1.8469915299921025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9419584165308135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.67966172189638,
          -7,
          -7,
          -3.836640541572774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.885916546299353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9212181211949506,
          -7,
          -7,
          -7,
          -3.9293422787484373,
          -4.0217266644137775,
          -3.278000357605805,
          -7,
          -7,
          -3.2027001754129008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.217290881538176,
          -2.9787594900540326,
          -2.8324597815922177,
          -7,
          -2.8084735565101373,
          -4.004321373782642,
          -3.1143106768684246,
          -2.9994996151681876,
          -2.7584983620147856,
          -7,
          -3.159497782005977,
          -2.9504889426054746,
          -2.7083473456160125,
          -2.8894174177364684,
          -2.9018302967482485,
          -3.653051634172873,
          -3.1687250976725663,
          -3.120837060254737,
          -2.760495443437143,
          -3.2092468487533736,
          -2.949091699517699,
          -3.484539250183401,
          -0.8739585862819435,
          -2.270621570318383,
          -2.59659709562646,
          -3.0053365371082617,
          -3.027999846677336,
          -2.3734806492785756,
          -7,
          -2.0164676404572313,
          -2.944729360303296,
          -2.5443331814048498,
          -2.8331126386247925,
          -2.8302111525957407,
          -2.948596328450484,
          -2.7202626945460486,
          -3.1382575743175316,
          -2.407218010802163,
          -2.658911183001439,
          -4.234694407142218,
          -7,
          -3.752969865029084,
          -3.3351337369564797,
          -4.129012793126035,
          -7,
          -3.6830019846071993,
          -7,
          -3.7877437716464666,
          -4.148972634509205,
          -7,
          -3.3413905542954354,
          -3.63978521298682,
          -4.116408480629899,
          -7,
          -3.523876475638131,
          -7,
          -7,
          -4.046221937221636,
          -3.669354077643939,
          -4.010893313104381,
          -3.9411137270371017,
          -3.640836223757495,
          -2.9495203932009812,
          -3.6510425226700334,
          -7,
          -3.997211582832505,
          -7,
          -3.4102620770678205,
          -7,
          -4.3781570642294785,
          -7,
          -2.663566323038686,
          -7,
          -3.7976829349148993,
          -3.6563138576401566,
          -2.966901992934652,
          -3.3774883833761327,
          -3.7943834687844653,
          -4.060168811945148,
          -3.2354118942883665,
          -7,
          -7,
          -3.2062860444124324,
          -3.287383001404188,
          -7,
          -4.008625717744802,
          -7,
          -3.3948017771627113,
          -3.778838339511192,
          -3.7850924507567543,
          -3.926548224635619,
          -7,
          -7,
          -3.9361617409111576,
          -2.354307185767559,
          -2.5669037499121905,
          -7,
          -7,
          -3.232945312745227,
          -3.5398703234865425,
          -2.801991388702298,
          -3.3582204731086795,
          -7,
          -7,
          -2.942937688372435,
          -7,
          -2.5131916475068894,
          -3.9537113804275554,
          -3.644881521155292,
          -3.5233995862165233,
          -2.8096238360707755,
          -2.9434045719310675,
          -3.2526507983886237,
          -3.6593932114138483,
          -3.640729818150714,
          -3.4411057288794913,
          -7,
          -3.114468006623671,
          -7,
          -7,
          -7,
          -3.471144965160633,
          -7,
          -7,
          -2.2425343965748334,
          -2.6830386173544434,
          -2.1080765740961467,
          -3.9170851906405675,
          -3.0598578120802955,
          -7,
          -3.370698092575577,
          -7,
          -7,
          -7,
          -4.027023254588704,
          -7,
          -3.6374396927036643,
          -3.0363384944941667,
          -7,
          -2.8132806812044433,
          -2.8640658790902367,
          -2.917417976652542,
          -7,
          -3.2537740196788794,
          -3.922777341928798,
          -7,
          -2.604462774208763,
          -3.9302356527662847,
          -7,
          -7,
          -2.3583454920906557,
          -2.9828137621318627,
          -7,
          -7,
          -2.4566075474449653,
          -7,
          -2.682572554981882,
          -7,
          -3.1188844681181167,
          -3.930949031167523,
          -3.461198288622493,
          -7,
          -7,
          -2.775544254669561,
          -3.246646274890713,
          -3.926702494182645,
          -7,
          -2.734310784207699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1233288669263475,
          -7,
          -7,
          -3.6510840892430116,
          -2.7630371480451195,
          -2.5942543940256364,
          -3.290657766409132,
          -3.5069557791831683,
          -7,
          -7,
          -2.8681217430022246,
          -3.118140671487759,
          -3.6216435721945732,
          -2.7140649191138504,
          -2.792102266462476,
          -3.0667451060838538,
          -2.8514876690527866,
          -2.7698266737436468,
          -2.7958484311422427,
          -7,
          -7,
          -7,
          -3.6158448828747023,
          -7,
          -7,
          -1.861608054071942,
          -7,
          -7,
          -7,
          -2.4982908574480973,
          -7,
          -7,
          -3.9210618907902783,
          -7,
          -7,
          -7,
          -3.6281333875410833,
          -3.32522822787085,
          -4.006679927740826,
          -7,
          -7,
          -3.347232410084063,
          -7,
          -3.9150831016512004,
          -7,
          -7,
          -7,
          -3.9293167267534956,
          -2.822580972267351,
          -3.2063246260747778,
          -3.338576007749808,
          -3.922829219666649,
          -7,
          -3.165752917359666,
          -7,
          -7,
          -2.7674140097746927,
          -7,
          -7,
          -3.6769678142947586,
          -3.1339777710506143,
          -3.652101229519464,
          -7,
          -7,
          -3.6298681187461233,
          -7,
          -3.064008486531724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.032549691831266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.081455327822574,
          -2.4456042032735974,
          -7,
          -7,
          -7,
          -2.677606952720493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.336199479466631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -7,
          -3.2259120500140233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.51869814695026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.060130999531045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.736516016421845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3748399596549756,
          -1.9538976944296247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4722077512253953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7371926427047373,
          -2.3664229572259727,
          -7,
          -2.167317334748176,
          -7,
          -7,
          -3.949991421335047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3779736964389593,
          -7,
          -7,
          -3.971535605346295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8041394323353503,
          -7,
          -7,
          -7,
          -7,
          -2.2741578492636796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3909351071033793,
          -7,
          -7,
          -7,
          -2.2329961103921536,
          -7,
          -7,
          -7,
          -3.6844413876256064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.546542663478131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.612359947967774,
          -7,
          -7,
          -3.1486026548060932,
          -3.1280760126687155,
          -7,
          -7,
          -7,
          -7,
          -2.8305886686851442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7547304690237535,
          -2.304275050477128,
          -7,
          -7,
          -5.097971866720445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.955899315132505,
          -7,
          -7,
          -4.544551703070268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0644579892269186,
          -3.066325925362038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.802287864512625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.103370350201992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.302677187010019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3021865728639233,
          -7,
          -7,
          -3.837241116300468,
          -3.3979400086720375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.35324283143373,
          -7,
          -7,
          -7,
          -1.7795964912578246,
          -7,
          -3.911934912643038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.642167634404945,
          -7,
          -7,
          -7,
          -7,
          -3.172581311073855,
          -7,
          -7,
          -4.331801701423656,
          -7,
          -3.269979676645324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9880682033926353,
          -1.8948696567452525,
          -3.049605612594973,
          -7,
          -7,
          -3.6869935662646784,
          -7,
          -1.9834007381805383,
          -7,
          -7,
          -7,
          -4.627724206512672,
          -2.6603910984024672,
          -7,
          -7,
          -7,
          -7,
          -3.426998958756537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.57978359661681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163449615841143,
          -4.741151598851785,
          -7,
          -7,
          -2.0977777345392834,
          -7,
          -1.933234128714808,
          -7,
          -1.9344984512435677,
          -2.9321353973192474,
          -7,
          -7,
          -3.2907022432878543,
          -7,
          -7,
          -7,
          -7,
          -2.184691430817599,
          -7,
          -2.4756711883244296,
          -7,
          -7,
          -7,
          -7,
          -1.9956351945975501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.804480189105993,
          -3.2293320657344258,
          -2.756636108245848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4056024552093134,
          -7,
          -7,
          -7,
          -3.236789099409293,
          -7,
          -2.367355921026019,
          -3.595606434865603,
          -7,
          -2.1212314551496214,
          -3.7170044070405472,
          -7,
          -3.428620672671939,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2329961103921536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.502518157503245,
          -7,
          -2.428134794028789,
          -7,
          -7,
          -7,
          -1.3155887158349062,
          -2.9786369483844743,
          -7,
          -2.298853076409707,
          -2.1367205671564067,
          -1.6842467475153124,
          -7,
          -0.9270902633957101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.72916478969277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.574031267727719,
          -7,
          -2.8829038344697353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4990911223977146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1522883443830563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7034633418832934,
          -2.9772144017362656,
          -7,
          -7,
          -7,
          -7,
          -3.6586313746095143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.641781720821696,
          -3.461048091670658,
          -7,
          -3.4572004127937683,
          -3.385719990896485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.912859475162355,
          -7,
          -7,
          -7,
          -7,
          -3.723537761532057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.946091841038187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0953088613853814,
          -3.5168437434754565,
          -7,
          -7,
          -3.779380011491656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.387305061142422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731024379815688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.032975442566309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.055443399092839,
          -3.228400358703005,
          -7,
          -7,
          -7,
          -3.284881714655453,
          -7,
          -7,
          -3.636663384067435,
          -7,
          -3.725339815909737,
          -7,
          -3.325720858019412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2295111961536325,
          -7,
          -7,
          -7,
          -2.6663619559503995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8330559979961802,
          -3.8684680990209865,
          -3.8725641430906514,
          -3.4409090820652177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8651039746411278,
          -7,
          -7,
          -7,
          -7,
          -3.3769417571467586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7532765701844184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.246670139929375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.798468909458224,
          -7,
          -3.7562556487542333,
          -3.1810445178354394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.362356792654536,
          -7,
          -7,
          -7,
          -3.7026889681591335,
          -7,
          -7,
          -3.7170044070405472,
          -7,
          -7,
          -7,
          -2.6009728956867484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7043221408222355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2140725258594047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0463450608244513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7132384615456617,
          -3.290034611362518,
          -7,
          -3.557206339765532,
          -7,
          -7,
          -7,
          -7,
          -2.9231792324017825,
          -7,
          -2.9843022319799033,
          -7,
          -2.7941513842532384,
          -7,
          -7,
          -7,
          -2.322662226421373,
          -3.752125307297898,
          -7,
          -3.7939998009844706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8726223790252883,
          -7,
          -7,
          -7,
          -2.3825108726800726,
          -7,
          -7,
          -3.3208522198317545,
          -7,
          -7,
          -7,
          -7,
          -3.482373285458582,
          -7,
          -7,
          -3.717670503002262,
          -7,
          -7,
          -3.105072497338436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8369567370595505,
          -3.860697274052039,
          -3.364755888417643,
          -7,
          -7,
          -3.1685411312096927,
          -3.7645497190644672,
          -7,
          -3.728434950974255,
          -7,
          -3.755188585608325,
          -3.874017703862186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6635218951063355,
          -3.3054875130416663,
          -3.668907502301862,
          -3.72956972630197,
          -3.8004971266535237,
          -3.3578713490133674,
          -2.6262957259110666,
          -4.172705071797739,
          -2.347873520992558,
          -7,
          -2.23700120905058,
          -2.812604872328782,
          -3.5233648829137834,
          -3.6577949909195624,
          -2.352479370126955,
          -3.7733658384643807,
          -3.2612628687924934,
          -2.5632612896096174,
          -3.3207395846758714,
          -3.1376513664730057,
          -7,
          -3.670275679967574,
          -2.8296967833716815,
          -2.2398880538155255,
          -3.2194011303575603,
          -7,
          -3.7173838369155834,
          -3.4385687168066346,
          -3.797406049676382,
          -2.2346251685731877,
          -2.988173701342641,
          -3.5528607876775875,
          -3.6434921560082274,
          -2.8041394323353503,
          -2.5471392492424014,
          -3.564922384068158,
          -3.3591576384658945,
          -2.78836123376675,
          -2.9337402994969355,
          -7,
          -3.1699681739968923,
          -3.208306962353663,
          -2.980195726856603,
          -3.7075701760979363,
          -7,
          -3.162917259782312,
          -7,
          -3.5192919019689546,
          -2.9199225150410633,
          -3.105986795521473,
          -2.0611529213699096,
          -3.268297087223767,
          -2.814647069451856,
          -3.1845494813206976,
          -7,
          -7,
          -7,
          -3.895753942073728,
          -2.474325008970507,
          -3.543757723163865,
          -2.959438915902078,
          -2.7545394443970084,
          -3.1616196942048727,
          -3.4455136273681837,
          -7,
          -7,
          -7,
          -2.977266212427293,
          -3.3728659947618,
          -4.186984572160061,
          -3.3412861070286284,
          -2.4987428758380212,
          -7,
          -2.8881326722394585,
          -3.5703093854358796,
          -2.5265792547944046,
          -2.620552444729435,
          -3.963882228928777,
          -3.614211501642213,
          -3.0019385633322884,
          -3.871689665685515,
          -7,
          -3.374507165084317,
          -2.5974209235343935,
          -7,
          -2.6904883743107986,
          -7,
          -3.824581376233483,
          -3.4653828514484184,
          -3.097344090487375,
          -3.4137187650610787,
          -7,
          -7,
          -2.263513634396092,
          -2.7558748556724915,
          -1.7166238530729816,
          -3.710540447933297,
          -2.7721749608246142,
          -2.820037171803748,
          -2.2697586553882063,
          -1.751446065406006,
          -2.404015205403452,
          -3.716504163773217,
          -7,
          -1.930118836392619,
          -2.488633652523212,
          -1.432332135228138,
          -2.6102037316428195,
          -2.464599350456727,
          -2.3951645421816643,
          -2.4198287060778814,
          -1.7983646063869205,
          -1.9247544441857607,
          -2.1091659155366207,
          -2.78406228363478,
          -2.508978370335467,
          -2.031951963271931,
          -2.053304461954253,
          -2.691161894693207,
          -3.4143883269310753,
          -3.2228031480228143,
          -2.1163939712975304,
          -2.6424645202421213,
          -3.2236689666546843,
          -2.6027492059794075,
          -1.782032802306157,
          -1.7260996890413132,
          -3.398200507219428,
          -1.8038489470153505,
          -3.424881636631067,
          -1.987132653826536,
          -3.1104213464739563,
          -3.395064164331242,
          -3.4044060509212692,
          -2.5040273880538586,
          -2.5363058723510337,
          -2.6184504075161317,
          -2.368864587950433,
          -3.399240941692456,
          -1.4925905178698389,
          -2.2920977719262914,
          -2.0698398148530557,
          -3.6961815871685237,
          -2.6092894271326985,
          -2.804480189105993,
          -2.98878184345364,
          -0.9859959393208597,
          -2.514298659173731,
          -3.1028622998954396,
          -3.2314695904306814,
          -2.60422605308447,
          -2.1679471464882516,
          -2.212814066080421,
          -2.5940766998292117,
          -1.8584708836673578,
          -3.1249115923549144,
          -1.9355597367167139,
          -2.7757317762602307,
          -1.8238677678340565,
          -3.0224283711854865,
          -2.691242282380971,
          -2.775544254669561,
          -3.4056024552093134,
          -7,
          -1.6673311140669067,
          -2.9361785093615893,
          -3.2474822606770544,
          -2.0600229459180217,
          -3.3952390010815514,
          -3.7031193462360776,
          -2.5783900307301257,
          -2.8412812403399172,
          -3.4379090355394983,
          -2.3957194395376415,
          -3.0582741466859513,
          -2.7944880466591697,
          -2.7130321041190335,
          -1.8596768121039193,
          -1.6193360481661199,
          -1.9408847449615854,
          -1.9083457326420796,
          -3.6977522741677546,
          -7,
          -2.315576784503928,
          -1.6913181275414544,
          -3.0091108061322127,
          -2.2024617351968274,
          -1.6168278651528245,
          -2.8289461816359327,
          -1.8502914589351291,
          -2.068038098556065,
          -1.8616742004490006,
          -3.1035471720766425,
          -2.331115695085382,
          -3.705007959333336,
          -2.9995654882259823,
          -3.2478096594727353,
          -3.1584378838985643,
          -2.8410749297371463,
          -3.398981066658131,
          -3.229340482911692,
          -7,
          -1.394065108209559,
          -7,
          -2.4971736565908635,
          -3.2284859086849425,
          -3.4079854213081364,
          -2.7765397662270646,
          -3.011316643366872,
          -2.603394230417027,
          -2.216165902285993,
          -1.9976946862194678,
          -3.2627674003648806,
          -7,
          -2.1548685514329433,
          -7,
          -7,
          -7,
          -2.1814232080049676,
          -3.1126050015345745,
          -2.437667132893726,
          -2.0208601634104535,
          -1.8884408608331742,
          -2.106404121471442,
          -2.9298444960392853,
          -7,
          -2.697851808799922,
          -3.399846712712922,
          -3.6962689967455327,
          -2.0587125118983254,
          -7,
          -7,
          -1.9879073308783721,
          -1.854656326386735,
          -1.985380011395665,
          -7,
          -7,
          -3.420945405921972,
          -7,
          -1.8188479077451358,
          -3.696967640744023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.66335221936459,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6249521046631217,
          -3.6379897807846855,
          -7,
          -3.146438135285775,
          -4.03532107949519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.564381964057547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.195207549502754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0478327947340205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4623249396967646,
          -2.571708831808688,
          -2.3096301674258988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.812879948090056,
          -7,
          -7,
          -7,
          -3.8951540877215907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.091807597001675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.12515582958053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5558116315501107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8836614351536176,
          -7,
          -7,
          -3.771817059827186,
          -7,
          -7,
          -7,
          -7,
          -3.082066934285113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9341616582977217,
          -7,
          -2.8000293592441343,
          -2.8506462351830666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.394976719554564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.863322860120456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8498584005624314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0517954455579925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.726808682524964,
          -7,
          -3.804548308388056,
          -7,
          -7,
          -7,
          -2.4820155764507117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1963781552840014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.93976877545335,
          -7,
          -7,
          -7,
          -7,
          -2.9079485216122722,
          -4.321456887184841,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.465977368285823,
          -5.43380022547713,
          -7,
          -7,
          -3.596059239297757,
          -3.1711411510283822,
          -7,
          -7,
          -7,
          -7,
          -3.4983105537896004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5432918252304986,
          -4.449809971741877,
          -7,
          -7,
          -4.435525851498655,
          -2.922033079238554,
          -7,
          -7,
          -3.782488549597868,
          -7,
          -3.1457400995364067,
          -4.278913574715962,
          -7,
          -7,
          -3.038844688341721,
          -7,
          -7,
          -3.178622080587683,
          -7,
          -4.613196769750614,
          -3.9270622434930003,
          -4.801983068804944,
          -7,
          -3.9429217685191538,
          -7,
          -4.168055303459139,
          -7,
          -7,
          -7,
          -3.804854713005252,
          -4.233478391931892,
          -7,
          -7,
          -3.712397131406715,
          -3.345765693114488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.09941588705348,
          -3.4096161586059464,
          -7,
          -7,
          -4.0680002261451715,
          -7,
          -7,
          -7,
          -7,
          -2.7832602328729488,
          -7,
          -3.4379882502194996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.197859231738088,
          -3.425697213362591,
          -7,
          -3.4590907896005865,
          -4.282866716929532,
          -7,
          -7,
          -7,
          -7,
          -4.315046224922345,
          -7,
          -7,
          -2.948706308904852,
          -4.073681699476284,
          -7,
          -7,
          -7,
          -4.286434013402093,
          -7,
          -7,
          -7,
          -3.8688500772104053,
          -7,
          -7,
          -4.308639101521262,
          -4.091409000337585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6299190355035416,
          -7,
          -7,
          -1.8308024488922192,
          -3.787176992470554,
          -2.4378362309303223,
          -2.904715545278681,
          -2.7269987279362624,
          -2.0764583877121514,
          -2.5440680443502757,
          -2.501358849455384,
          -2.2813174984203766,
          -2.941511432634403,
          -2.8555191556678,
          -2.5297949502875765,
          -2.062111714033968,
          -2.1100967539672038,
          -2.2386732432838445,
          -1.6975199379407861,
          -1.9784544333652287,
          -2.282278499425753,
          -1.326563418954342,
          -1.9584795623825795,
          -2.1829849670035815,
          -2.761927838420529,
          -2.3899251194809668,
          -1.9506893179563278,
          -1.4053219622946371,
          -2.432969290874406,
          -2.6339731557896737,
          -2.3547485195608395,
          -2.377549077175673,
          -2.130793096387536,
          -7,
          -3.043405945456881,
          -2.6704235149632467,
          -2.9050289625668273,
          -2.828015064223977,
          -1.6994613803815402,
          -7,
          -1.3453083690596945,
          -2.4409090820652177,
          -7,
          -2.392696953259666,
          -2.367355921026019,
          -2.2278867046136734,
          -2.077569761891046,
          -2.079281765543943,
          -7,
          -1.9349868799532348,
          -2.300305567669649,
          -1.8840397404753637,
          -7,
          -1.957447649314536,
          -2.591064607026499,
          -2.8816699076720615,
          -2.5904078965706305,
          -2.0573807905423553,
          -7,
          -2.5921767573958667,
          -7,
          -2.251638220448212,
          -2.2007137339640135,
          -1.953499490469544,
          -2.1693977913346485,
          -3.003029470553618,
          -2.597778152258259,
          -2.4183012913197457,
          -1.9545439981580643,
          -2.270911639410481,
          -2.735997884091794,
          -3.246646274890713,
          -7,
          -1.6673311140669067,
          -7,
          -7,
          -2.510545010206612,
          -1.8860876676197436,
          -2.8055008581584002,
          -7,
          -3.043165720207454,
          -2.6124306281667917,
          -3.061452479087193,
          -2.3538777790648417,
          -2.665893545534433,
          -2.383262828397118,
          -1.9819479769904773,
          -1.9977847916135072,
          -1.839380662996892,
          -1.5291693929623844,
          -1.3633367615800802,
          -2.815577748324267,
          -7,
          -2.97806633408362,
          -2.0110264042280437,
          -2.1094660499520925,
          -2.275119316297735,
          -2.7525675042716915,
          -2.1976564079819663,
          -2.132890500150523,
          -2.8433885229380875,
          -1.7695510786217261,
          -7,
          -1.8440627725826517,
          -2.5658478186735176,
          -7,
          -2.6893088591236203,
          -2.552972237463008,
          -2.6740734238074024,
          -2.833784374656479,
          -7,
          -7,
          -2.1950569462894327,
          -7,
          -2.315130317183602,
          -2.8744818176994666,
          -2.416640507338281,
          -2.244689360492884,
          -2.302114376956201,
          -2.1072099696478683,
          -2.2157256645575676,
          -1.6502191890561915,
          -2.284806583700867,
          -7,
          -1.592801092674244,
          -7,
          -7,
          -7,
          -2.1018452306835687,
          -7,
          -2.9585638832219674,
          -2.859309887372584,
          -2.35817288180055,
          -2.674729953761462,
          -2.8937617620579434,
          -2.800717078282385,
          -3.126131407261984,
          -2.840106094456758,
          -7,
          -2.7305355492917256,
          -2.8129133566428557,
          -7,
          -2.435252653031749,
          -2.2608660716137683,
          -1.5642714304385625,
          -2.800717078282385,
          -7,
          -2.9740509027928774,
          -7,
          -1.9510503673339017,
          -7,
          -2.9566485792052033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05759954755417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6148972160331345,
          -7,
          -7,
          -3.905849826642319,
          -3.2965555060882235,
          -7,
          -7,
          -4.276191722318338,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731387283168788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8494194137968996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.786041210242554,
          -7,
          -4.519998529118848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.737303985990029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.364128689628175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.685024785105714,
          -7,
          -7,
          -2.906335041805091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.078094150406411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9777236052888476,
          -7,
          -7,
          -7,
          -2.8407332346118066,
          -7,
          -7,
          -4.251873348943444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.244771761495295,
          -7,
          -3.5601458398490475,
          -7,
          -7,
          -3.89325303090974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7299742856995555,
          -2.6304278750250236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.040602340114073,
          -7,
          -2.9444826721501687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1954229886237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5126843962171637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.197308131503102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.876506504265881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.438067450453494,
          -7,
          -7,
          -7,
          -4.130623201682595,
          -7,
          -7,
          -2.8562000460323604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.800717078282385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.955495329184127,
          -7,
          -4.956057921139135,
          -7,
          -7,
          -4.5457770385001215,
          -3.0409976924234905,
          -7,
          -2.500373714353374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3857849588433355,
          -7,
          -7,
          -4.618706887211025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.733790903406896,
          -7,
          -7,
          -7,
          -7,
          -4.8029651830129545,
          -3.9174704985096076,
          -7,
          -7,
          -4.652604075494435,
          -7,
          -4.609113965400532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.403738050363856,
          -3.922543815390706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7795964912578244,
          -7,
          -3.5264469759599937,
          -3.739255803268511,
          -7,
          -7,
          -7,
          -4.543782557020339,
          -2.9407298799816086,
          -2.52270499273475,
          -3.4694538137671267,
          -7,
          -7,
          -7,
          -3.7321524180652137,
          -7,
          -7,
          -7,
          -4.187153953785416,
          -3.3581252852766488,
          -7,
          -3.3547996852632904,
          -4.5029912452209455,
          -5.172632116686294,
          -7,
          -7,
          -7,
          -3.3106083564585234,
          -7,
          -4.942404940856107,
          -7,
          -7,
          -7,
          -3.183459657707637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.857422965024847,
          -7,
          -7,
          -4.605574376060999,
          -3.449822423023631,
          -7,
          -3.8555999095694653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.568201724066995,
          -7,
          -7,
          -7,
          -3.2931414834509307,
          -2.1409268419924303,
          -2.3046341199328064,
          -7,
          -2.9077695418108918,
          -3.3901841527188092,
          -2.7623033632877685,
          -1.9840770339028309,
          -2.5224442335063197,
          -3.4832305869021027,
          -2.4401216031878037,
          -3.3731164249470056,
          -2.0457574905606752,
          -2.6314437690131722,
          -3.3102683666324477,
          -3.448087666692341,
          -2.929674317948588,
          -3.442793225939769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8488047010518036,
          -1.7643629658980102,
          -7,
          -2.9304395947667,
          -7,
          -7,
          -4.168850903709554,
          -3.5274117571054364,
          -3.8967387461717196,
          -7,
          -7,
          -2.1760912590556813,
          -7,
          -1.590051083854947,
          -7,
          -2.075546961392531,
          -2.308482324064368,
          -7,
          -7,
          -3.6028193424326997,
          -2.478566495593843,
          -3.005866601875385,
          -2.6138418218760693,
          -2.6913025633834833,
          -7,
          -3.0017337128090005,
          -1.7414892646574982,
          -7,
          -3.730923519488264,
          -7,
          -1.94571471405986,
          -2.6020599913279625,
          -3.5758803156806462,
          -3.8111056070179306,
          -2.9542425094393248,
          -7,
          -7,
          -1.8815273056409318,
          -2.723795501248387,
          -2.346352974450639,
          -3.4082399653118496,
          -2.745855195173729,
          -7,
          -3.926702494182645,
          -7,
          -2.9361785093615893,
          -7,
          -7,
          -2.2922560713564764,
          -2.5601458398490475,
          -7,
          -2.5211380837040362,
          -2.90655051910145,
          -2.32376758329678,
          -7,
          -2.116690743411703,
          -1.603865792191225,
          -2.966610986681934,
          -2.6915235221681546,
          -2.953356933212382,
          -3.6684791029325856,
          -3.2550311633455515,
          -3.2229764498933915,
          -7,
          -7,
          -7,
          -3.4051755462179893,
          -1.8920946026904806,
          -2.9770373352246815,
          -3.712060142461075,
          -3.1367205671564067,
          -3.357744325180376,
          -3.4377732053209487,
          -3.7647737169110402,
          -1.5910646070264993,
          -2.957607287060095,
          -1.6283889300503114,
          -7,
          -1.989746365634447,
          -2.1715175075429207,
          -7,
          -7,
          -2.2706788361447066,
          -7,
          -2.6595174974349662,
          -2.514547752660286,
          -7,
          -7,
          -2.123851640967086,
          -2.530199698203082,
          -2.6273658565927325,
          -2.416640507338281,
          -7,
          -3.338854746252323,
          -7,
          -2.2706788361447066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3729120029701067,
          -2.720159303405957,
          -2.971554153446061,
          -3.0403385718205698,
          -3.166726055580052,
          -2.6009728956867484,
          -7,
          -3.3602146132953523,
          -7,
          -7,
          -3.501355997218113,
          -7,
          -7,
          -2.4051185932991612,
          -2.9894498176666917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.258996253248911,
          -7,
          -7,
          -7,
          -2.6766936096248664,
          -2.5877109650189114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8825909387625783,
          -7,
          -7,
          -7,
          -3.629715332647132,
          -3.353627758985543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.309789805171458,
          -7,
          -7,
          -2.753199914199416,
          -3.536300130411311,
          -7,
          -7,
          -7,
          -7,
          -2.6875289612146345,
          -7,
          -4.084051710032526,
          -7,
          -7,
          -7,
          -2.737987326333431,
          -7,
          -7,
          -2.740362689494244,
          -7,
          -7,
          -7,
          -4.039453778961736,
          -7,
          -7,
          -2.795184589682424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.735864930017006,
          -3.02201573981772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2586771829934693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4353665066126613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.74350976472843,
          -2.8627275283179747,
          -7,
          -3.2906760809696594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6074550232146687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.09541844491831,
          -7,
          -7,
          -7,
          -7,
          -2.9556877503135057,
          -7,
          -7,
          -2.863322860120456,
          -7,
          -3.113423372534924,
          -2.6830470382388496,
          -7,
          -2.640481436970422,
          -2.8530895298518657,
          -3.074450718954591,
          -7,
          -3.066325925362038,
          -3.6277412634214152,
          -7,
          -2.8543060418010806,
          -7,
          -3.960010711374667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.694605198933569,
          -2.7596678446896306,
          -7,
          -7,
          -3.971971276399757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6954816764901977,
          -3.44544851426605,
          -3.456214155357989,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7812525942484565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.909020854211156,
          -7,
          -7,
          -3.1383026981662816,
          -7,
          -7,
          -7,
          -7,
          -2.6074550232146687,
          -7,
          -7,
          -2.971507781711256,
          -7,
          -3.8682916880178557,
          -7,
          -7,
          -2.9081058394817405,
          -7,
          -2.8943160626844384,
          -2.2665844470668635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.196452541703389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.886866575028829,
          -7,
          -7,
          -2.6464037262230695,
          -2.6483600109809315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.56702636615906,
          -3.345765693114488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6994040818153375,
          -3.53731527311201,
          -4.0038696446688835,
          -7,
          -7,
          -2.5998830720736876,
          -2.6216954623292787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295874845217379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7594160067690314,
          -7,
          -7,
          -7,
          -2.722839505724351,
          -2.412740466538526,
          -3.2271150825891253,
          -7,
          -4.022813140401051,
          -7,
          -7,
          -7,
          -2.855620095698912,
          -7,
          -7,
          -3.210853365314893,
          -3.1931245983544616,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -2.649334858712142,
          -7,
          -7,
          -7,
          -2.7535830588929064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.830791762380773,
          -7,
          -7,
          -3.467977875279793,
          -7,
          -7,
          -2.8488047010518036,
          -7,
          -2.8677620246502005,
          -2.8750612633917,
          -7,
          -7,
          -7,
          -7,
          -4.057261422076152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.942008053022313,
          -7,
          -7,
          -2.8221680793680175,
          -7,
          -7,
          -7,
          -2.756636108245848,
          -7,
          -2.5998830720736876,
          -7,
          -7,
          -7,
          -7,
          -4.655207288728793,
          -7,
          -2.645422269349092,
          -7,
          -2.78354628227035,
          -7,
          -2.8767949762007006,
          -7,
          -3.038620161949703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.117602691690084,
          -2.6541765418779604,
          -2.559222427207474,
          -7,
          -7,
          -4.01781561717208,
          -4.748800260694086,
          -7,
          -7,
          -7,
          -7,
          -3.7138264243805246,
          -7,
          -3.620600464021688,
          -7,
          -3.7378285058957847,
          -7,
          -7,
          -7,
          -3.7945577512547617,
          -7,
          -4.391499675895142,
          -3.6993462298794717,
          -7,
          -7,
          -7,
          -4.801070829199609,
          -7,
          -4.309069196393278,
          -4.078927833680719,
          -7,
          -7,
          -7,
          -7,
          -3.5014187421113556,
          -3.7494528755696246,
          -7,
          -4.240848658485361,
          -7,
          -7,
          -7,
          -7,
          -4.352491239988165,
          -7,
          -3.969042967305813,
          -3.121887985103681,
          -4.272456614923269,
          -2.8437481337859585,
          -3.271066772286538,
          -7,
          -4.058008232715403,
          -7,
          -3.5450224427567334,
          -3.794975744051132,
          -2.951823035315912,
          -7,
          -7,
          -3.71758729685546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.101479757044251,
          -4.135514280998787,
          -4.87194052929306,
          -7,
          -7,
          -7,
          -3.6588801766183723,
          -7,
          -7,
          -3.320457868916649,
          -7,
          -2.6766936096248664,
          -7,
          -7,
          -7,
          -7,
          -3.3619166186686433,
          -7,
          -3.684815450526118,
          -3.15259407792747,
          -7,
          -3.5274258075430835,
          -3.662190990859007,
          -7,
          -3.8567892887533164,
          -7,
          -7,
          -7,
          -3.416349216054106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3504242384550236,
          -1.8750612633917,
          -1.0937228602657776,
          -2.3667341679034988,
          -2.4492211919059925,
          -2.917549269387528,
          -1.891746470822618,
          -2.303915683901469,
          -7,
          -2.64479015953634,
          -7,
          -3.152227171838142,
          -1.0205069823830017,
          -1.9003671286564703,
          -3.3346547668832414,
          -2.476816379675971,
          -2.958802703399502,
          -2.4164892115757675,
          -7,
          -2.6483600109809315,
          -2.1769176998034636,
          -7,
          -2.801403710017355,
          -2.0644579892269186,
          -1.8625785677670705,
          -7,
          -2.761301241165817,
          -7,
          -2.6304278750250236,
          -3.693345821666275,
          -2.654087185980357,
          -3.441530182363339,
          -2.60959440922522,
          -2.918554530550274,
          -1.8488047010518036,
          -7,
          -1.656417653650555,
          -7,
          -1.6637009253896482,
          -1.648197323403864,
          -7,
          -2.311753861055754,
          -7,
          -2.1409268419924303,
          -3.11293997608408,
          -2.1912646619703375,
          -2.057539321108782,
          -2.2648178230095364,
          -7,
          -1.2918866162241114,
          -2.0516786212178384,
          -3.858276462425929,
          -2.82020145948564,
          -1.7624910040260096,
          -1.7464612077056945,
          -7,
          -2.7383180158201332,
          -7,
          -7,
          -3.205745540942662,
          -1.9584444238670942,
          -2.5570372957219885,
          -1.769150006268853,
          -2.7275412570285567,
          -2.5269850685599957,
          -2.916453948549925,
          -7,
          -7,
          -3.2474822606770544,
          -2.510545010206612,
          -2.2922560713564764,
          -7,
          -2.2842050677017944,
          -2.089905111439398,
          -1.3138672203691535,
          -1.8670923337204246,
          -1.7676196082318536,
          -2.4683473304121573,
          -2.3157281963110274,
          -2.5736450565133797,
          -2.984677302805447,
          -1.9932357714670954,
          -2.5352149775401545,
          -2.6776981814745104,
          -3.2826221128780624,
          -2.7745169657285493,
          -2.5888317255942073,
          -2.591064607026499,
          -3.370443693159354,
          -3.424881636631067,
          -1.8573324964312685,
          -3.003245054813147,
          -3.111976227019206,
          -1.9882615967287558,
          -3.1870504506422686,
          -3.171321328174317,
          -3.073938190635253,
          -2.2050238216541693,
          -3.0107238653917734,
          -1.8864907251724818,
          -7,
          -1.9420080530223132,
          -1.980382171853643,
          -7,
          -7,
          -1.837047036359575,
          -2.5634810853944106,
          -2.288598319679449,
          -2.6483600109809315,
          -7,
          -7,
          -2.1097472377132287,
          -2.9020028913507296,
          -7,
          -2.807535028068853,
          -2.832508912706236,
          -3.361727836017593,
          -2.4751867549424627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9183299535486804,
          -7,
          -2.680426170858145,
          -3.5332635167787148,
          -7,
          -7,
          -7,
          -2.7788744720027396,
          -2.3263358609287517,
          -7,
          -3.282009999342054,
          -7,
          -7,
          -3.2182728535714475,
          -3.484299839346786,
          -7,
          -7,
          -7,
          -2.5276299008713385,
          -7,
          -3.574147064150723,
          -7,
          -7,
          -7,
          -7,
          -3.2092468487533736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.769146453452604,
          -7,
          -7,
          -7,
          -7,
          -3.4584112014697164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5081813078158945,
          -7,
          -7,
          -3.374198257929083,
          -3.7097277645597693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.575672690363307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.511749711344983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.606488850442648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.250175948083925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3065007149823713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.266231696689893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145103133146382,
          -7,
          -3.2893659515200318,
          -7,
          -3.9696798881274287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5483075066875784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3025473724874854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.124504224834283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8838506290062735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.593499679766006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8550141033002596,
          -7,
          -7,
          -3.4047347157118026,
          -7,
          -3.3044905277734875,
          -3.2960066693136723,
          -3.312811826212088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5499836111596887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788168371141168,
          -3.2081725266671217,
          -7,
          -7,
          -3.0600679715239822,
          -7,
          -7,
          -3.2076343673889616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3688445068258215,
          -3.7557620768491304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8990384123869903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2304489213782737,
          -7,
          -7,
          -3.3958503760187813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5251744278352715,
          -7,
          -2.8950770727239954,
          -7,
          -3.154278394368455,
          -7,
          -7,
          -7,
          -3.0443045191759146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.144293927198531,
          -7,
          -7,
          -3.374442827543826,
          -7,
          -7,
          -3.287353772714747,
          -7,
          -3.1314582601065255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5345166153504253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.435313909967652,
          -7,
          -7,
          -4.2610962581323335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6144753660903954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5776066773625357,
          -7,
          -7,
          -3.3311741373868458,
          -3.6788899955025243,
          -7,
          -3.300812794118117,
          -3.37112945995738,
          -3.0635835285910997,
          -2.2103391029908557,
          -3.8194945810919148,
          -2.7517345945216576,
          -7,
          -2.514511856104337,
          -3.2681989577058395,
          -3.1918234797380713,
          -3.243413492394054,
          -2.7348664749479745,
          -4.309140245453068,
          -3.4581844355702627,
          -2.974361284464857,
          -2.6709412807357755,
          -2.8662666060683937,
          -3.6729286904427223,
          -3.992291754360717,
          -3.6447831309233574,
          -2.9305582840293467,
          -2.324979051522652,
          -7,
          -3.597884575183753,
          -3.1088884329683015,
          -7,
          -2.937066312017428,
          -2.6533813732422042,
          -3.2345502933923744,
          -3.315923719821369,
          -2.834500179293778,
          -2.6012019841699203,
          -3.794092842489171,
          -3.402880133602107,
          -3.8984326288792706,
          -2.384272242023868,
          -7,
          -7,
          -4.587565053475168,
          -3.4295706132786914,
          -3.5336449787987627,
          -7,
          -3.8013694042010013,
          -7,
          -4.259175627306078,
          -3.395908557341382,
          -3.480581786829169,
          -3.6415402081348343,
          -4.181843587944773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.922595721029815,
          -3.560026248912892,
          -7,
          -3.6811688489293988,
          -3.7308002139362295,
          -4.135103726372142,
          -7,
          -3.52022143588196,
          -7,
          -3.722901161709392,
          -7,
          -7,
          -3.733758835587203,
          -4.107718610520263,
          -7,
          -7,
          -7,
          -4.307602993826055,
          -7,
          -7,
          -7,
          -3.418991414588919,
          -7,
          -7,
          -4.1427126678463475,
          -3.5795549604009986,
          -7,
          -3.8690164754407816,
          -7,
          -7,
          -7,
          -3.367840271289815,
          -7,
          -7,
          -7,
          -2.6024940688072813,
          -2.465118360281959,
          -1.6379613380280913,
          -7,
          -2.148876744106389,
          -1.999542607138445,
          -1.832745392146821,
          -2.4657349662676826,
          -1.6237931783611625,
          -3.2648178230095364,
          -7,
          -2.037545417569489,
          -1.7460677893601901,
          -2.5429349200735434,
          -2.290776361298428,
          -1.7737052001054718,
          -2.751150747404337,
          -2.362105319293773,
          -1.7369863760269566,
          -1.513955834871233,
          -2.1633017189698065,
          -1.4732145313868534,
          -2.1213708020384168,
          -2.520577100441661,
          -1.7821141474790712,
          -2.835056101720116,
          -2.7841416140728312,
          -3.217220655644519,
          -1.9795700520347994,
          -2.6807886115066824,
          -7,
          -2.403163078899993,
          -2.4034016775512366,
          -1.6458109443377589,
          -2.7363965022766426,
          -2.04484846960872,
          -7,
          -2.2077768862262555,
          -3.25478968739721,
          -7,
          -3.2332500095411003,
          -2.040184632969257,
          -2.353387219249733,
          -1.602502923015416,
          -1.5695703901023565,
          -7,
          -1.6591059160721733,
          -1.6368220975871743,
          -1.135912354426246,
          -7,
          -1.6728672017718136,
          -2.541579243946581,
          -2.278225797182899,
          -2.3060610481219515,
          -2.496699069633021,
          -2.9312035254507522,
          -7,
          -1.6052783266298942,
          -1.7445805763269497,
          -2.2687339404540663,
          -2.250420002308894,
          -1.914401928955501,
          -2.8171244614184556,
          -2.4781079822536873,
          -3.0038911662369103,
          -1.7314736440510339,
          -2.0172652722719313,
          -1.5494491496233778,
          -2.734310784207699,
          -3.236789099409293,
          -2.0600229459180217,
          -1.8860876676197436,
          -2.5601458398490475,
          -2.2842050677017944,
          -7,
          -7,
          -7,
          -2.2960148052925016,
          -2.864313269858478,
          -3.325925955771466,
          -2.422458514031944,
          -2.52560005256132,
          -2.1958996524092336,
          -1.3744058821756568,
          -1.932855758907971,
          -1.5260791612514868,
          -1.970741228491373,
          -1.749230751353215,
          -3.2095150145426308,
          -2.606381365110605,
          -2.2026508811976,
          -1.669084326621116,
          -2.059437187851868,
          -1.3035339897779414,
          -2.4301308196119487,
          -1.9194049982868073,
          -1.9421140948936504,
          -2.5700119525533682,
          -1.5388454931448834,
          -3.2347702951609167,
          -2.506118305325085,
          -7,
          -7,
          -2.811127970852324,
          -2.9025467793139916,
          -1.6297705116057013,
          -3.216957207361097,
          -2.7586596156078977,
          -7,
          -1.4930277111525112,
          -7,
          -2.6991870973082492,
          -2.3276143266206253,
          -2.123851640967086,
          -1.4522214053904476,
          -2.164352855784437,
          -1.6193845754003067,
          -1.5938396610812713,
          -1.9955098389950334,
          -2.4228359687795225,
          -7,
          -1.3092543175695517,
          -7,
          -3.2043913319193,
          -7,
          -2.18587254245639,
          -2.5601458398490475,
          -7,
          -2.7798128631705805,
          -1.9500592552910156,
          -2.8530895298518657,
          -2.6392373957820308,
          -3.203576774977973,
          -2.077246746270425,
          -3.2195845262142546,
          -7,
          -2.789602075987727,
          -7,
          -7,
          -2.1533574714829737,
          -1.8564997167285306,
          -3.372175286115064,
          -7,
          -3.204933522354145,
          -7,
          -7,
          -1.9089315942207272,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.399881302691986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517116688085895,
          -2.5943925503754266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.42620210284358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.192307207523569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.103803720955957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5994463757252757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.56702636615906,
          -7,
          -3.0569048513364727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3656751404559175,
          -7,
          -7,
          -2.695043658821294,
          -4.242006927244273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732031696874192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9943171526696366,
          -7,
          -4.300073495267144,
          -3.721563318357481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.132547842465581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603209349477183,
          -4.084278305722365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2833464653560465,
          -2.3010299956639813,
          -3.000434077479319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325443822322886,
          -2.5993371329924893,
          -7,
          -7,
          -7,
          -3.171433900943008,
          -7,
          -7,
          -2.7442929831226763,
          -2.756027212973441,
          -7,
          -2.9689496809813427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6850148190800835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8750612633917,
          -7,
          -1.845098040014257,
          -7,
          -7,
          -7,
          -3.578409970331236,
          -7,
          -7,
          -7,
          -3.243534101832062,
          -7,
          -7,
          -1.5340261060561349,
          -7,
          -7,
          -7,
          -2.146128035678238,
          -2.2576785748691846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.801779091318613,
          -1.3392944957592638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3952390010815514,
          -2.8055008581584002,
          -7,
          -2.089905111439398,
          -7,
          -7,
          -7,
          -3.2809196627093367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.582063362911709,
          -7,
          -7,
          -7,
          -3.161966616364075,
          -7,
          -7,
          -4.265996370495079,
          -7,
          -7,
          -7,
          -7,
          -3.0610753236297916,
          -7,
          -3.9770831203158528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -7,
          -7,
          -7,
          -1.8864907251724818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4479328655921804,
          -7,
          -7,
          -1.5314789170422551,
          -7,
          -7,
          -2.4683473304121573,
          -7,
          -7,
          -3.3492775274679554,
          -7,
          -7,
          -7,
          -7,
          -3.0151501032294714,
          -7,
          -7,
          -3.9736357734174077,
          -7,
          -7,
          -3.1192558892779365,
          -7,
          -7,
          -1.462397997898956,
          -7,
          -2.530199698203082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357315345247881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.716003343634799,
          -7,
          -7,
          -7,
          -3.4207806195485655,
          -7,
          -7,
          -2.942008053022313,
          -3.7311914682335705,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -1.871183608328498,
          -7,
          -4.55810830163055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.462397997898956,
          -7,
          -7,
          -7,
          -4.034267397038025,
          -7,
          -7,
          -7,
          -7,
          -2.269512944217916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3984608496082234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2380461031287955,
          -7,
          -2.738780558484369,
          -7,
          -7,
          -7,
          -7,
          -3.424432415724877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9746651808046278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.496929648073215,
          -7,
          -7,
          -2.6711728427150834,
          -7,
          -4.217075778865637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.664207898076807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.123851640967086,
          -7,
          -7,
          -3.2799709653992704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.510410948010177,
          -7,
          -7,
          -7,
          -7,
          -3.890979596989689,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.07291131585408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -2.741151598851785,
          -7,
          -7,
          -3.7735020213967823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9066043717249803,
          -7,
          -3.5515719736742537,
          -7,
          -7,
          -3.089709941701364,
          -7,
          -7,
          -1.8297631007235549,
          -7,
          -7,
          -7,
          -2.2933625547114453,
          -7,
          -7,
          -7,
          -7,
          -3.1179338350396413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2624510897304293,
          -7,
          -2.03342375548695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149277630664228,
          -7,
          -7,
          -2.1398790864012365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9836262871245345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.688419822002711,
          -7,
          -7,
          -7,
          -3.2692793897718984,
          -7,
          -7,
          -7,
          -4.195346058348419,
          -7,
          -7,
          -7,
          -2.7031838661780445,
          -7,
          -7,
          -2.8334658601706924,
          -7,
          -7,
          -7,
          -2.0569048513364727,
          -7,
          -2.499687082618404,
          -2.6384892569546374,
          -7,
          -7,
          -2.4871383754771865,
          -7,
          -1.8779469516291882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.129098832497685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.346352974450639,
          -7,
          -3.085290578230065,
          -2.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9749719942980692,
          -7,
          -7,
          -7,
          -7,
          -2.788875115775417,
          -7,
          -7,
          -2.606381365110605,
          -7,
          -7,
          -7,
          -7,
          -2.354108439147401,
          -2.1398790864012365,
          -7,
          -7,
          -7,
          -3.37984917876283,
          -5.432958072790875,
          -7,
          -2.2471546148811266,
          -4.0668475109739,
          -2.501971645918664,
          -7,
          -1.7242758696007892,
          -7,
          -2.9206450014067875,
          -3.117602691690084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2810333672477277,
          -2.65915528094063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7326510432913365,
          -7,
          -7,
          -7,
          -7,
          -4.801993346302042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1012141866686385,
          -7,
          -7,
          -7,
          -7,
          -4.624354300317013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0269416279590295,
          -7,
          -3.699555906491557,
          -3.426673888021373,
          -7,
          -7,
          -7,
          -7,
          -3.0769315745556556,
          -2.707002099520009,
          -4.066475013754132,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8752156517622924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3094811192361036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6472851450253665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8531199842175665,
          -7,
          -2.526339277389844,
          -4.604042357370141,
          -4.562364249463112,
          -7,
          -4.632416796638804,
          -7,
          -7,
          -3.5917322389518356,
          -4.00770511436478,
          -7,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -3.2868156134365862,
          -1.413299764081252,
          -1.716003343634799,
          -7,
          -7,
          -3.6850696293911485,
          -7,
          -2.059437187851868,
          -7,
          -3.171653333949059,
          -7,
          -3.2844307338445193,
          -1.6948631701213757,
          -2.8549130223078554,
          -7,
          -3.73814608871206,
          -3.1934029030624176,
          -3.419955748489758,
          -7,
          -7,
          -7,
          -7,
          -3.0034605321095067,
          -1.7371926427047373,
          -1.7363965022766423,
          -7,
          -7,
          -7,
          -7,
          -4.166755638665237,
          -3.685781534669542,
          -4.138705220999562,
          -7,
          -7,
          -1.649334858712142,
          -7,
          -1.6232492903979006,
          -7,
          -1.6253124509616739,
          -2.2519856560522644,
          -7,
          -7,
          -3.5871494982543437,
          -1.8948696567452525,
          -7,
          -2.833784374656479,
          -7,
          -1.7323937598229684,
          -7,
          -1.5422917863244727,
          -2.6976651626476746,
          -7,
          -7,
          -2.031408464251624,
          -1.7993405494535817,
          -7,
          -3.3240765797394864,
          -7,
          -7,
          -7,
          -2.0746336182969043,
          -3.182750434591266,
          -2.1156105116742996,
          -7,
          -7,
          -7,
          -7,
          -2.367355921026019,
          -3.7031193462360776,
          -7,
          -2.5211380837040362,
          -1.3138672203691535,
          -7,
          -7,
          -7,
          -2.0651381686641566,
          -1.8382192219076259,
          -7,
          -2.480260644346063,
          -7,
          -3.4216039268698313,
          -2.623766000133931,
          -3.021106568432122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.267805101513972,
          -7,
          -7,
          -7,
          -3.7090578513345434,
          -7,
          -3.9532763366673045,
          -3.802705327074352,
          -7,
          -1.738384123512156,
          -7,
          -1.3380135619171512,
          -7,
          -1.8692317197309762,
          -1.7688846493563668,
          -7,
          -7,
          -1.8827142276202256,
          -7,
          -2.824900281288046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2000292665537704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5211380837040362,
          -7,
          -3.180412632838324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.674286904925071,
          -7,
          -7,
          -7,
          -7,
          -2.6344772701607315,
          -7,
          -7,
          -2.315970345456918,
          -7,
          -3.5429498488141786,
          -7,
          -7,
          -7,
          -3.593618308129536,
          -3.5837653682849995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9131689938402077,
          -7,
          -7,
          -7,
          -3.5859680500071183,
          -2.3791681219185326,
          -2.442703689915969,
          -7,
          -7,
          -7,
          -3.582404298019028,
          -2.6831596518740986,
          -3.5754765086019,
          -7,
          -2.2586372827240764,
          -2.475472322889589,
          -7,
          -7,
          -7,
          -2.8211858826088454,
          -2.9922220374838435,
          -7,
          -3.9014583213961123,
          -3.1183749671059116,
          -7,
          -7,
          -3.123960473064361,
          -3.617105230502378,
          -3.2806921642851177,
          -2.999130541287371,
          -7,
          -7,
          -2.9838517189914717,
          -3.362276794197056,
          -7,
          -7,
          -2.566276751530018,
          -3.584331224367531,
          -7,
          -7,
          -3.5881596163830918,
          -7,
          -2.6343652953033616,
          -2.5278016945768633,
          -2.134753718901899,
          -2.987219229908005,
          -3.1166077439882485,
          -3.209783014848515,
          -7,
          -3.286231854028553,
          -3.287689783936075,
          -7,
          -3.1514720011315966,
          -3.678518379040114,
          -7,
          -7,
          -7,
          -3.04196933677907,
          -7,
          -7,
          -7,
          -7,
          -3.7535830588929064,
          -2.9309490311675233,
          -7,
          -7,
          -3.074084689028244,
          -3.5848963441374497,
          -2.7551122663950713,
          -7,
          -3.588047496986083,
          -7,
          -7,
          -2.682483531630788,
          -7,
          -7,
          -7,
          -3.1701638903057043,
          -3.6022770843001926,
          -2.6649552063536226,
          -7,
          -2.464561079412046,
          -3.3197304943302246,
          -3.589502796263764,
          -7,
          -7,
          -7,
          -3.286568734057264,
          -7,
          -3.5857990090130007,
          -7,
          -3.7628285531890904,
          -7,
          -7,
          -7,
          -1.9367598714069336,
          -7,
          -3.2835273648616936,
          -3.5993371329924893,
          -2.8079857748471495,
          -2.0631405624169377,
          -3.5873741720730656,
          -2.9817053769570374,
          -2.665059566436283,
          -7,
          -2.3706056009381484,
          -2.8945375849957466,
          -7,
          -3.5893910231369333,
          -3.6191977157929474,
          -3.666049738480516,
          -7,
          -2.886553389407769,
          -2.50745106090197,
          -7,
          -7,
          -7,
          -3.091988565813422,
          -3.590618948206578,
          -2.8169984054036665,
          -3.3769417571467586,
          -7,
          -7,
          -2.6398183918310933,
          -2.1675361229048957,
          -7,
          -7,
          -2.9309490311675233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.64407561871382,
          -2.890909813992527,
          -2.895767744755542,
          -3.3394514413064407,
          -7,
          -7,
          -7,
          -7,
          -3.022943609686901,
          -3.3135860326080175,
          -3.1878026387184195,
          -7,
          -7,
          -3.58849580100721,
          -2.8892456608929797,
          -7,
          -3.5825178836040625,
          -7,
          -7,
          -7,
          -7,
          -3.1772478362556233,
          -7,
          -7,
          -7,
          -2.929521100631104,
          -3.296445794206396,
          -7,
          -2.4172535172774223,
          -3.5859117103194342,
          -7,
          -7,
          -3.1127166884277973,
          -7,
          -3.5911759503117913,
          -7,
          -2.3421758524655174,
          -7,
          -3.557426992378806,
          -7,
          -7,
          -1.9275041833607214,
          -7,
          -3.6265456590271294,
          -2.058910834034071,
          -3.0278590441755795,
          -3.0398105541483504,
          -7,
          -2.833890494261626,
          -3.601299310194338,
          -3.313128713845194,
          -3.5975855017522043,
          -3.1157214284114376,
          -3.7007037171450192,
          -7,
          -7,
          -7,
          -3.774407465921632,
          -7,
          -2.4792494083469703,
          -3.5814945422908995,
          -2.6462076122066853,
          -2.890197386210029,
          -3.1127166884277973,
          -2.802317533567358,
          -7,
          -3.608739919068788,
          -7,
          -7,
          -3.104145550554008,
          -3.452016565962548,
          -3.1280760126687155,
          -7,
          -7,
          -2.9812521606551154,
          -3.279210512601395,
          -7,
          -7,
          -7,
          -7,
          -2.7873592521704675,
          -2.948706308904852,
          -2.9926166282706546,
          -3.5370541354192144,
          -7,
          -3.28454352295875,
          -3.1074361058060123,
          -2.727642905825253,
          -7,
          -7,
          -3.6074550232146683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.422917980767662,
          -7,
          -7,
          -7,
          -3.5864747785713966,
          -2.686747956155516,
          -3.1152775913959014,
          -7,
          -3.3026555539507187,
          -3.6724673130680823,
          -3.1108140939166935,
          -3.0041063232796583,
          -2.2036107453704106,
          -7,
          -3.5822906827189938,
          -7,
          -2.790128717892536,
          -2.5826830459874577,
          -1.7695355678275353,
          -7,
          -3.7666606613741327,
          -7,
          -7,
          -3.286231854028553,
          -2.0498448336824775,
          -2.748866082541131,
          -3.1855421548543754,
          -2.3592316365035417,
          -3.3984608496082234,
          -7,
          -7,
          -3.5822906827189938,
          -2.994537104298498,
          -2.5563025007672873,
          -2.5358213684769635,
          -3.5801263254115825,
          -7,
          -3.3024391640698574,
          -7,
          -2.630653834698125,
          -3.5997739391463885,
          -2.4115074706655637,
          -2.0683959195407784,
          -3.0461047872460387,
          -7,
          -3.598243191653623,
          -3.196718862042681,
          -3.5997739391463885,
          -3.5833121519830775,
          -3.2703060911529134,
          -7,
          -3.282848602834645,
          -2.662547976890391,
          -3.29014595464781,
          -2.2250417766469384,
          -1.8476577398519354,
          -3.6816029987308685,
          -3.3083509485867255,
          -3.0587106521997347,
          -7,
          -2.741570864062097,
          -2.4091814234778517,
          -7,
          -7,
          -7,
          -3.6832272060414346,
          -2.3533998825578037,
          -7,
          -3.5893910231369333,
          -3.614053105987219,
          -3.582404298019028,
          -7,
          -7,
          -3.1265642948950374,
          -7,
          -3.2837533833325265,
          -3.31921019418185,
          -7,
          -3.4978277360835044,
          -2.8816699076720615,
          -3.599796084276918,
          -7,
          -2.598060599899029,
          -3.265087487396905,
          -2.5876174376185492,
          -7,
          -2.9235548580675492,
          -7,
          -2.7527205075033088,
          -3.500373714353374,
          -7,
          -2.628502456251952,
          -3.103917694052505,
          -7,
          -1.7427774843253034,
          -3.286456469746983,
          -7,
          -3.2884728005997825,
          -3.074907822966796,
          -2.9882244123901995,
          -1.3442422978540296,
          -7,
          -3.279210512601395,
          -2.8336589271377535,
          -3.9964897817596627,
          -4.045009860905824,
          -7,
          -3.8813275841005512,
          -3.4541585899443437,
          -2.6113692154627337,
          -3.9794724955247456,
          -1.73331505003569,
          -7,
          -2.81424759573192,
          -4.0127528874912155,
          -3.911370707116138,
          -3.872337595748262,
          -2.287183736966603,
          -7,
          -3.334082400566609,
          -2.4787918806639824,
          -4.130719636562953,
          -3.94657997990354,
          -7,
          -4.812749630172364,
          -7,
          -2.4607150375092623,
          -3.8875891715438677,
          -7,
          -3.961961845481778,
          -3.657356393229636,
          -7,
          -2.249465632986819,
          -3.35293250260102,
          -4.143295907124072,
          -3.84210976344061,
          -3.7936274355090864,
          -3.6917443685913742,
          -4.320000804264728,
          -4.1722233414277525,
          -3.1127055210308923,
          -4.448783589628957,
          -2.7822678165784755,
          -7,
          -3.332619156864805,
          -2.560237810473034,
          -2.876506504265881,
          -2.9353056902899253,
          -3.871426978736606,
          -3.66133934000604,
          -2.828806829568114,
          -2.943809173206347,
          -3.241878383159056,
          -3.885361220031512,
          -2.659315585270557,
          -2.9369658971078705,
          -7,
          -2.775003297785982,
          -7,
          -3.1259148015308593,
          -3.5259513412480126,
          -3.8004650410651006,
          -7,
          -7,
          -2.71803642078278,
          -2.7797724115753364,
          -4.705783913315986,
          -7,
          -3.7426465899387362,
          -7,
          -3.3257110890434034,
          -7,
          -4.658698088707615,
          -2.8022604758937684,
          -7,
          -3.593618308129536,
          -3.21160104414524,
          -7,
          -3.653463367014262,
          -3.710878617685173,
          -2.411293781383653,
          -3.0712067312776554,
          -2.431875257677071,
          -2.952861603722939,
          -3.6068111469189637,
          -2.023585287134652,
          -3.188863610434584,
          -7,
          -3.4920709290390546,
          -7,
          -3.2650537885040145,
          -3.102890857809762,
          -3.841515888422295,
          -7,
          -3.595055089759304,
          -7,
          -3.6259294927162946,
          -3.2850507117969214,
          -1.620945335488336,
          -2.483861490097456,
          -1.2642147757264757,
          -2.616160312847583,
          -2.148632029792198,
          -1.9041212102514586,
          -1.8164307001177258,
          -2.1877375969867394,
          -7,
          -1.7688102344864032,
          -2.9149774724443307,
          -2.361101134642786,
          -1.6747722764708364,
          -2.1933234056282025,
          -3.748885440009517,
          -2.61842847289748,
          -2.6786838876099157,
          -2.2170681524330766,
          -2.8281072417647883,
          -2.488752105088288,
          -1.8818879143670435,
          -3.657915936829955,
          -2.557414651136655,
          -1.8114493237739548,
          -2.5253687865236367,
          -7,
          -2.0085150076314546,
          -3.617000341120899,
          -2.9855387383932825,
          -3.0134955460104056,
          -2.0111118516402637,
          -2.372770423675649,
          -3.2847690133490195,
          -3.2962994685709477,
          -1.8372459346831354,
          -3.3969835082752007,
          -2.064898226955344,
          -7,
          -2.6380453065128058,
          -1.5138831856110926,
          -3.6058435390580894,
          -2.1627085775045116,
          -3.1005428500124648,
          -2.740926342372719,
          -1.9832981771972058,
          -2.737987326333431,
          -1.4338119269204794,
          -3.2805783703680764,
          -3.182414652434554,
          -1.9986616492277378,
          -0.5055996361497943,
          -3.0371665710609026,
          -3.6137361412618714,
          -2.1566837328270956,
          -2.516755660221549,
          -3.5640739789771465,
          -1.1892827655559177,
          -3.649918718735419,
          -3.640878778701618,
          -2.7399413511328885,
          -2.443106456737266,
          -1.4909375199577073,
          -2.101830359876606,
          -2.1795517911651876,
          -2.3326510367587643,
          -3.6307328928171967,
          -7,
          -3.595606434865603,
          -2.5783900307301257,
          -3.043165720207454,
          -2.90655051910145,
          -1.8670923337204246,
          -2.2960148052925016,
          -3.2809196627093367,
          -2.0651381686641566,
          -7,
          -1.585719376697316,
          -2.732393759822968,
          -1.6458621545015149,
          -2.6587743208443566,
          -2.2177609177449162,
          -2.2734835536034756,
          -1.6647329368051549,
          -1.9417382210894931,
          -2.686555024386572,
          -2.3536904865774635,
          -3.2826221128780624,
          -3.282848602834645,
          -2.469075467784182,
          -2.6379183801298756,
          -2.481552869518737,
          -2.302074262932074,
          -1.629650292979936,
          -2.052452336614949,
          -1.9476437458204918,
          -2.535121426893738,
          -2.277726126702004,
          -2.551117162742455,
          -7,
          -2.414081572540633,
          -7,
          -2.0202337552699294,
          -1.6318967027420204,
          -3.3354579006893843,
          -3.285782273779395,
          -2.4164185888449987,
          -3.2801228963023075,
          -1.7289115124464807,
          -2.987554549303304,
          -7,
          -3.594503043820089,
          -2.694056500841752,
          -3.326745379565322,
          -3.2997251539756367,
          -2.911902996044033,
          -1.403591185940338,
          -3.0599418880619544,
          -2.521942332974436,
          -2.690970914278475,
          -2.504276634189794,
          -2.677264674114648,
          -3.5817221599490985,
          -7,
          -3.610553705317095,
          -2.5248286863646054,
          -7,
          -2.4992110854524285,
          -2.8811943853625333,
          -3.8131805325860118,
          -3.2969940766702086,
          -7,
          -2.509948861201675,
          -2.6834973176798114,
          -7,
          -2.6804126698850133,
          -7,
          -7,
          -2.664556509752071,
          -2.908753019184534,
          -3.660106221723244,
          -3.581380688709987,
          -7,
          -2.9155053617543767,
          -3.2806921642851177,
          -2.7095727951571993,
          -3.5828584622244994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.787460474518415,
          -7,
          -7,
          -7,
          -4.362218500326052,
          -7,
          -7,
          -7,
          -7,
          -2.7745169657285493,
          -2.8543060418010806,
          -7,
          -7,
          -7,
          -7,
          -3.925621454790829,
          -2.9373172477624943,
          -7,
          -3.1436392352745433,
          -3.3118225640429104,
          -7,
          -7,
          -7,
          -2.8998205024270964,
          -2.8715729355458786,
          -7,
          -4.263221693667648,
          -2.5746099413401873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7434117630396684,
          -7,
          -7,
          -7,
          -7,
          -2.367355921026019,
          -2.846337112129805,
          -7,
          -7,
          -2.367355921026019,
          -2.975891136401793,
          -3.042732979621721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8388490907372557,
          -2.8709888137605755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5700757053216043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5554975061310574,
          -7,
          -7,
          -3.753302119172978,
          -7,
          -2.905256048748451,
          -7,
          -2.833784374656479,
          -7,
          -7,
          -2.82865989653532,
          -7,
          -7,
          -7,
          -3.097604328874411,
          -7,
          -7,
          -7,
          -3.5246557123577773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7554937284151193,
          -7,
          -7,
          -2.8943160626844384,
          -2.829303772831025,
          -3.0644579892269186,
          -7,
          -2.510545010206612,
          -7,
          -7,
          -2.6958099000719393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1136760118971,
          -7,
          -7,
          -7,
          -3.308501175617602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.876217840591642,
          -2.31492005599242,
          -7,
          -7,
          -3.9837164739137494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.182414652434554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0136796972911926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5181848042184027,
          -7,
          -2.973589623427257,
          -7,
          -3.028571252692538,
          -7,
          -7,
          -3.163274222705834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0373695748811147,
          -7,
          -7,
          -2.992847954780297,
          -7,
          -7,
          -3.000867721531227,
          -7,
          -7,
          -3.1763806922432702,
          -2.6580113966571126,
          -2.9041743682841634,
          -2.663700925389648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1832698436828046,
          -7,
          -7,
          -2.060869464336048,
          -7,
          -2.0117818305481068,
          -2.3654879848909,
          -2.5440680443502757,
          -2.091315159697223,
          -2.814913181275074,
          -2.9400181550076634,
          -2.806179973983887,
          -7,
          -2.7965743332104296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7972675408307164,
          -2.857935264719429,
          -7,
          -7,
          -3.0457140589408676,
          -7,
          -7,
          -4.196575310462342,
          -7,
          -2.8208579894397,
          -7,
          -3.0398105541483504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3070251187186726,
          -7,
          -7,
          -7,
          -7,
          -2.852479993636856,
          -2.5581083016305497,
          -7,
          -2.916980047320382,
          -2.878234468675044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8979934299725625,
          -7,
          -2.879996481067212,
          -7,
          -3.725217185813792,
          -7,
          -7,
          -7,
          -2.4811558708280352,
          -7,
          -7,
          -2.7965743332104296,
          -3.2593549273080344,
          -7,
          -7,
          -7,
          -7,
          -3.0610753236297916,
          -2.9786369483844743,
          -7,
          -7,
          -7,
          -7,
          -2.121887985103681,
          -7,
          -2.8488047010518036,
          -2.7141900028713306,
          -2.7996850909091004,
          -2.6757783416740852,
          -2.586587304671755,
          -4.009663316679379,
          -7,
          -7,
          -2.7864674767402824,
          -7,
          -7,
          -2.0221074695639487,
          -2.852479993636856,
          -2.9375178920173464,
          -2.3005954838899636,
          -3.2076343673889616,
          -7,
          -2.665893545534433,
          -7,
          -7,
          -3.1646502159342966,
          -7,
          -7,
          -2.8000293592441343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9180303367848803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.464638559095033,
          -4.530673448440382,
          -7,
          -3.2005769267548483,
          -3.7721138020629263,
          -2.690196080028514,
          -7,
          -3.0043213737826426,
          -7,
          -2.82865989653532,
          -3.019393263978083,
          -7,
          -2.511214701136388,
          -2.795184589682424,
          -7,
          -7,
          -7,
          -7,
          -2.8432327780980096,
          -3.1953460583484197,
          -2.850033257689769,
          -2.1637261681116198,
          -7,
          -7,
          -3.9235548580675492,
          -7,
          -7,
          -7,
          -7,
          -3.398287305357401,
          -3.7348798027926278,
          -7,
          -3.782416880556456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4466579602153113,
          -7,
          -7,
          -3.8779661253552415,
          -7,
          -4.135937920969854,
          -7,
          -7,
          -7,
          -4.486996888431823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.230831953431828,
          -7,
          -4.585911710319434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5344491888776157,
          -7,
          -7,
          -7,
          -7,
          -4.548413988554237,
          -2.7318572625565913,
          -2.1598678470925665,
          -3.483052121938875,
          -4.153052275067108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.197611323169714,
          -7,
          -7,
          -3.516950677700458,
          -4.680793140101235,
          -7,
          -2.5780658838360915,
          -3.3688445068258215,
          -7,
          -3.501806856884548,
          -7,
          -7,
          -3.3463529744506384,
          -7,
          -7,
          -3.217659381292399,
          -7,
          -4.286231854028553,
          -7,
          -7,
          -7,
          -3.022781743444123,
          -7,
          -7,
          -4.308543071784684,
          -3.5268442505473905,
          -7,
          -3.2391993420543015,
          -7,
          -7,
          -7,
          -3.7281101841003403,
          -7,
          -2.8721562727482928,
          -7,
          -3.0149403497929366,
          -7,
          -2.8614917388391654,
          -2.048108713045591,
          -1.4762517960070336,
          -7,
          -2.5426698494966873,
          -2.305609289566193,
          -2.484584529282843,
          -1.6164755138885656,
          -7,
          -2.359564471733962,
          -2.665580991017953,
          -2.681373376172547,
          -1.8531856942575955,
          -2.0039628970954273,
          -7,
          -3.174859011514084,
          -2.2338418642756133,
          -2.6511395051524786,
          -3.1855421548543754,
          -7,
          -2.5359267413955693,
          -3.132899769944483,
          -2.579497782534824,
          -1.5030242056865204,
          -2.1481911962420113,
          -7,
          -2.3918472991671624,
          -7,
          -2.5327543789924976,
          -4.174336062614943,
          -3.2646309260257307,
          -3.5985403911521976,
          -7,
          -7,
          -1.696678207556434,
          -2.9537596917332287,
          -1.6418044981061142,
          -7,
          -2.866877814337499,
          -1.7273933617497892,
          -2.926342446625655,
          -2.3324384599156054,
          -3.6416723732246865,
          -2.0453229787866576,
          -3.1339378927638313,
          -7,
          -2.413113411586694,
          -7,
          -7,
          -1.924853370060748,
          -2.1335389083702174,
          -3.738423783297755,
          -2.9628426812012423,
          -1.9542425094393248,
          -1.8790958795000727,
          -7,
          -2.989704014034442,
          -7,
          -2.5943925503754266,
          -7,
          -1.7817553746524688,
          -2.3321487612593845,
          -2.5403294747908736,
          -2.7674527180977733,
          -2.2667019668840878,
          -7,
          -7,
          -7,
          -2.8412812403399172,
          -2.6124306281667917,
          -2.32376758329678,
          -1.7676196082318536,
          -2.864313269858478,
          -7,
          -1.8382192219076259,
          -1.585719376697316,
          -7,
          -3.0580462303952816,
          -1.2627899851685418,
          -2.182160938694665,
          -2.7197454925295768,
          -2.655138434811382,
          -2.091896237573858,
          -3.099507993727965,
          -2.4313637641589874,
          -2.5306265232810774,
          -2.5071809772602407,
          -2.8109042806687006,
          -4.279758172802473,
          -3.163608563431052,
          -2.586024382386976,
          -7,
          -2.8896336526352338,
          -2.33520708088345,
          -2.8002128574963217,
          -3.1448409732702785,
          -2.6762714179371425,
          -7,
          -7,
          -1.4945340562373441,
          -7,
          -2.204572137284902,
          -0.8369292509368298,
          -7,
          -7,
          -2.3956175727530065,
          -7,
          -2.2562064396964416,
          -7,
          -7,
          -7,
          -2.187520720836463,
          -2.54448146130858,
          -2.9025467793139916,
          -2.1028255798174698,
          -2.996949248495381,
          -2.929929560084588,
          -2.1549562434033382,
          -2.5728716022004803,
          -2.5118833609788744,
          -7,
          -7,
          -7,
          -2.4693310102934105,
          -2.928907690243953,
          -2.9542425094393248,
          -2.8003733548913496,
          -3.263517716091967,
          -7,
          -7,
          -7,
          -7,
          -2.532117116248804,
          -7,
          -3.3336039908101927,
          -7,
          -7,
          -2.374748346010104,
          -7,
          -3.140193678578631,
          -7,
          -7,
          -2.4908944592739792,
          -7,
          -3.3016809492935764,
          -2.803457115648414,
          -7,
          -7,
          -7,
          -2.7505083948513462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6714505542124947,
          -7,
          -2.9804578922761,
          -7,
          -7,
          -7,
          -3.1427543537803806,
          -3.327665387050042,
          -7,
          -3.117602691690084,
          -3.7336958383326047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0184389399350797,
          -2.525044807036845,
          -2.749736315569061,
          -2.8195439355418688,
          -2.859138297294531,
          -2.3339508043872472,
          -2.4353665066126613,
          -7,
          -7,
          -7,
          -7,
          -4.0429297333431595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3131639093135794,
          -7,
          -7,
          -7,
          -2.4104156728052764,
          -3.4347285417797577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.743078391782139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.698535492562001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7730546933642626,
          -7,
          -7,
          -7,
          -3.068556895072363,
          -7,
          -7,
          -7,
          -4.222781480425739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7745169657285493,
          -7,
          -2.957128197676813,
          -7,
          -3.773640193260026,
          -2.8182258936139557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5652573434202135,
          -3.8098626051382367,
          -7,
          -2.949877704036875,
          -7,
          -4.739635625010004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.710625015060797,
          -3.1707016558160697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.978180516937414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9344984512435675,
          -7,
          -2.9943171526696366,
          -7,
          -7,
          -3.6172665493319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3119656603683665,
          -7,
          -3.4011706945301334,
          -7,
          -7,
          -3.35162147940743,
          -7,
          -7,
          -7,
          -2.9995654882259823,
          -3.0484418035504044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3965480379871322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8976270912904414,
          -7,
          -7,
          -7,
          -3.378942698613437,
          -2.8813846567705728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.592916611888093,
          -7,
          -7,
          -7,
          -2.284054558436069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6586183771638874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.808885867359812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.36078268987328,
          -7,
          -3.7194141597025934,
          -7,
          -3.8033205235787544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.124178055474675,
          -2.7774268223893115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8709888137605755,
          -7,
          -7,
          -7,
          -7,
          -3.1809855807867304,
          -7,
          -2.9390197764486667,
          -7,
          -4.008802369664495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.185258765296585,
          -2.422699247707434,
          -7,
          -7,
          -5.099331822664403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9242792860618816,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2874866082211796,
          -7,
          -7,
          -4.248341156669196,
          -3.1439511164239637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.172310968521954,
          -7,
          -2.8323492162595376,
          -7,
          -7,
          -4.01964584828431,
          -7,
          -7,
          -7,
          -7,
          -3.383994789441733,
          -3.7283537820212285,
          -7,
          -4.258988279348813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3202155460556875,
          -7,
          -7,
          -4.178276526334763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.787467559199322,
          -4.085254891103877,
          -7,
          -7,
          -7,
          -7,
          -3.8040882957516735,
          -3.930108140365738,
          -7,
          -3.944137073158098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.395029188533373,
          -7,
          -2.5722906061514177,
          -4.575545759343288,
          -3.7089093129228483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3296690168644045,
          -7,
          -7,
          -3.8494808372439864,
          -3.7319914490189294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.195373754817413,
          -7,
          -7,
          -4.360744841210403,
          -4.504325846909658,
          -7,
          -7,
          -7,
          -7,
          -4.314099063295284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983333050649128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9096736792967133,
          -7,
          -7,
          -4.159647387949369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.159653115576744,
          -7,
          -2.576341350205793,
          -7,
          -2.588191645180769,
          -4.005309236848516,
          -3.1622656142980214,
          -1.9311187105921872,
          -7,
          -3.026056354698398,
          -2.927883410330707,
          -3.6315452278343097,
          -2.6388219222193925,
          -2.5828206333422923,
          -2.4114326310165928,
          -7,
          -2.998912904358786,
          -7,
          -7,
          -7,
          -2.9250541203118425,
          -7,
          -7,
          -7,
          -2.888179493918325,
          -7,
          -3.5515719736742537,
          -7,
          -7,
          -3.6959192528313998,
          -3.9454488887903163,
          -4.74423820378745,
          -7,
          -1.9106577493156374,
          -2.4751867549424627,
          -7,
          -2.568201724066995,
          -7,
          -2.5138831856110926,
          -2.4690852991231202,
          -7,
          -2.6989700043360187,
          -2.854407264149028,
          -2.7745169657285493,
          -3.4287825114969546,
          -7,
          -2.397746945996307,
          -7,
          -1.2858154554403158,
          -2.5378190950732744,
          -3.156851901070011,
          -4.338994048444886,
          -7,
          -7,
          -2.5390760987927767,
          -7,
          -3.5292378052696605,
          -7,
          -7,
          -7,
          -7,
          -2.3678451975502317,
          -7,
          -7,
          -2.1466447454142683,
          -7,
          -7,
          -2.1212314551496214,
          -3.4379090355394983,
          -3.061452479087193,
          -7,
          -2.4683473304121573,
          -3.325925955771466,
          -7,
          -7,
          -2.732393759822968,
          -3.0580462303952816,
          -7,
          -2.7471786713601642,
          -2.333783025949038,
          -2.485437481076301,
          -2.502768412325693,
          -2.8511818816915158,
          -3.2175716716118217,
          -3.3207692283386865,
          -2.8153563389481215,
          -1.8372727025023003,
          -2.7528164311882715,
          -7,
          -7,
          -2.840106094456758,
          -7,
          -3.71821095473187,
          -3.2211533219547053,
          -3.9738664498353784,
          -3.5113708138745223,
          -3.3087777736647213,
          -2.82020145948564,
          -2.7777891874348675,
          -7,
          -7,
          -1.5859731714345076,
          -2.8270460170047342,
          -3.508798965403905,
          -1.575187844927661,
          -7,
          -2.4313637641589874,
          -2.6154991488833446,
          -1.4884022651293516,
          -2.978180516937414,
          -7,
          -2.8432327780980096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1212314551496214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.918641834698101,
          -7,
          -7,
          -2.8407332346118066,
          -2.733999286538387,
          -7,
          -2.7795964912578244,
          -7,
          -3.5080131962698764,
          -7,
          -7,
          -3.262213705476417,
          -7,
          -7,
          -7,
          -7,
          -2.9304395947667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7080808104682315,
          -7,
          -7,
          -7,
          -3.404234866653423,
          -3.7061201097027037,
          -7,
          -7,
          -3.3606450425580268,
          -7,
          -7,
          -7,
          -3.953373050726696,
          -2.548153093111087,
          -2.9350872111620183,
          -7,
          -7,
          -7,
          -7,
          -2.6167972574221303,
          -2.86411536851903,
          -7,
          -3.466274321789292,
          -2.990544591752271,
          -7,
          -7,
          -7,
          -3.7206553565517244,
          -3.239049093140191,
          -7,
          -3.768923379908386,
          -3.7172543127625497,
          -7,
          -7,
          -7,
          -7,
          -3.7067177823367587,
          -7,
          -7,
          -7,
          -3.7102020146553847,
          -3.5799631549550854,
          -7,
          -7,
          -7,
          -7,
          -2.4312790981129244,
          -7,
          -7,
          -7,
          -7,
          -2.9572651342952905,
          -2.9571717731027167,
          -7,
          -3.7159198174335795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7424894645817752,
          -7,
          -7,
          -7,
          -7,
          -2.9372949482332396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.442636525782232,
          -7,
          -7,
          -3.428357555885853,
          -3.4077307280263356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.710625015060797,
          -7,
          -3.740678425227455,
          -3.723701893991268,
          -3.756940236046724,
          -7,
          -3.736237098904729,
          -7,
          -3.1984738016670837,
          -3.435127379609151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4472355770047596,
          -7,
          -7,
          -3.7198282862543346,
          -7,
          -3.272460480145897,
          -3.233334609615762,
          -3.106020819140269,
          -7,
          -7,
          -2.3924038081375647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9147661369258526,
          -3.6396856612426816,
          -7,
          -3.2576785748691846,
          -7,
          -3.2173450062486335,
          -7,
          -3.166578109919652,
          -3.4796472787693866,
          -7,
          -7,
          -2.938186037505905,
          -2.8195439355418688,
          -7,
          -7,
          -3.3035662999679793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.082111871372628,
          -2.618280588410313,
          -7,
          -3.7515100502700416,
          -7,
          -7,
          -7,
          -3.4072208929273966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.748265572668741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.681618065583093,
          -3.7389390312034796,
          -3.732634967539196,
          -7,
          -3.26528962586083,
          -3.7185847200274362,
          -7,
          -2.5413699526015563,
          -3.40849436021236,
          -7,
          -7,
          -3.712986233594383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8028457117801073,
          -7,
          -7,
          -2.6439585524687246,
          -7,
          -3.7405995128111567,
          -3.4363217001397333,
          -7,
          -3.752893154884594,
          -3.7754648093457392,
          -3.1277525158329733,
          -2.8752266774031847,
          -3.128722284338427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8045915935946966,
          -7,
          -2.1071328508548213,
          -2.933824603968112,
          -2.7114697818743276,
          -3.006808208492579,
          -3.407645797062556,
          -3.124422705456867,
          -3.7077404542737713,
          -7,
          -7,
          -3.5399538416563967,
          -3.7246035153967165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.757547853469244,
          -3.4346221231362692,
          -3.357791963471643,
          -7,
          -3.107040290223204,
          -7,
          -3.4437322414015967,
          -7,
          -7,
          -3.7259932589247224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4205333226934997,
          -2.1631191920347383,
          -7,
          -7,
          -7,
          -7,
          -3.0141843975012796,
          -3.4137187650610787,
          -7,
          -7,
          -3.2989258164621176,
          -7,
          -7,
          -3.5081929260254405,
          -7,
          -7,
          -7,
          -2.8796692056320534,
          -3.7402837196818792,
          -2.6268311208610227,
          -3.731024379815688,
          -2.991333857417245,
          -7,
          -7,
          -7,
          -2.252075943799801,
          -7,
          -7,
          -3.3249680031620703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2717641852898542,
          -3.7335182514344876,
          -7,
          -7,
          -3.7231271587956916,
          -7,
          -2.806010294559223,
          -7,
          -7,
          -2.975718945367262,
          -2.4762823328149426,
          -3.130816050034744,
          -2.8729051282527607,
          -2.983770193312903,
          -7,
          -7,
          -2.76847365804917,
          -7,
          -7,
          -3.034788831251184,
          -7,
          -3.0925803006913113,
          -3.13537120918662,
          -3.7835462822703496,
          -3.426429925193928,
          -2.7662640906519957,
          -3.721150843749684,
          -3.772188303409967,
          -3.7725417326409434,
          -7,
          -7,
          -7,
          -7,
          -3.446537167073644,
          -7,
          -3.4111144185509046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7141620460988536,
          -3.2963830892565467,
          -3.8678797834583794,
          -3.4720924168132257,
          -7,
          -3.4805099729419604,
          -3.3709917589490144,
          -3.1709947020363,
          -7,
          -3.4369573306694496,
          -7,
          -3.764325605625984,
          -3.102262149494273,
          -7,
          -7,
          -3.4051755462179893,
          -7,
          -7,
          -3.4098486220211917,
          -7,
          -3.4113671357427338,
          -7,
          -2.9344984512435675,
          -2.4784462423792015,
          -7,
          -7,
          -3.0322625896790933,
          -3.938705525724461,
          -7,
          -7,
          -4.200179941968094,
          -3.064083435963596,
          -3.5180311221717915,
          -7,
          -2.7399861623675457,
          -7,
          -3.3492775274679554,
          -4.327021586507191,
          -4.399699674559056,
          -4.135812990145166,
          -2.3679620131222126,
          -7,
          -4.467622902417825,
          -2.615739688619155,
          -7,
          -3.958888646524424,
          -7,
          -4.163717806163838,
          -4.090469680231161,
          -3.3557486858509193,
          -3.9219464542294102,
          -7,
          -4.672891798284876,
          -4.2185748892664225,
          -7,
          -2.9440672930585112,
          -3.5555377913202615,
          -4.0313680628857735,
          -3.867801281134174,
          -3.600319329751661,
          -3.4433412316678793,
          -4.044578954876613,
          -4.207849711130526,
          -3.7360297870141546,
          -4.166933094871154,
          -7,
          -7,
          -3.394266221387696,
          -2.7338250600018092,
          -3.4114934392137135,
          -3.7471786713601642,
          -3.6058973516449746,
          -7,
          -3.754806855354423,
          -2.3546685610810214,
          -2.347498248703483,
          -2.772400300205005,
          -3.572383617766466,
          -3.6961815871685237,
          -3.096005739715113,
          -7,
          -7,
          -2.8768773615716965,
          -7,
          -3.1591803321859055,
          -3.5512059437479064,
          -3.74787770581979,
          -2.7943771299220317,
          -3.032302413919488,
          -4.283394524137035,
          -3.4165573011914794,
          -3.2300655512060468,
          -3.419707981354444,
          -2.3099848383169075,
          -7,
          -4.488611814240041,
          -2.6926511147284202,
          -3.5130577076386054,
          -7,
          -1.8619040595057519,
          -3.6988252153758836,
          -2.928286094162898,
          -7,
          -3.3672161041609696,
          -7,
          -2.2541785637644396,
          -3.5775492423982382,
          -7,
          -3.110050716147654,
          -2.257107413023032,
          -7,
          -2.75432102760387,
          -7,
          -3.229937685907934,
          -3.6475296664449806,
          -3.2771506139637965,
          -7,
          -7,
          -7,
          -3.7401257369657306,
          -4.222898472609422,
          -2.2216390395875636,
          -2.941677035870691,
          -1.7048962149658333,
          -3.2566375808675403,
          -2.60404595999381,
          -1.8488899607206744,
          -2.599737555408931,
          -2.037509497364078,
          -3.4122925093230463,
          -1.9386661412531396,
          -2.4499247658980847,
          -1.974449907837994,
          -1.8200792048011627,
          -2.245589772915445,
          -3.138113146487167,
          -2.554426495768532,
          -1.9425855949537412,
          -2.6754919244099264,
          -3.7777891874348675,
          -3.1465156256030298,
          -2.2120210485124043,
          -2.722035308404712,
          -2.3107299261343788,
          -1.900608068735828,
          -2.7700333601614644,
          -3.710625015060797,
          -1.9788269866677775,
          -3.130735706961367,
          -3.0118240955943087,
          -3.45637868721281,
          -2.389094093401577,
          -2.7354392032514814,
          -3.709778601848225,
          -2.9540011676815703,
          -2.2257130137265877,
          -2.5154555153936675,
          -2.3576863236850003,
          -7,
          -2.936848717028399,
          -1.829422904495989,
          -3.2473184686774124,
          -2.3249943487886915,
          -2.831525232824983,
          -2.709269960975831,
          -2.5625571946422996,
          -3.2754649240207465,
          -2.204507572580716,
          -3.7066324508732946,
          -2.987591791037401,
          -2.393366257159277,
          -2.4951790465148163,
          -2.8070067293866274,
          -3.4295908022233017,
          -2.672601582502419,
          -3.0194486374936367,
          -3.6335189520021656,
          -2.482487303691886,
          -3.758684849882441,
          -2.8474955403490654,
          -3.2009872191631663,
          -2.2135580011219793,
          -1.3990477506093277,
          -2.785408934270052,
          -2.54448146130858,
          -2.4502491083193614,
          -3.442636525782232,
          -4.1233288669263475,
          -3.7170044070405472,
          -2.3957194395376415,
          -2.3538777790648417,
          -2.116690743411703,
          -2.3157281963110274,
          -2.422458514031944,
          -7,
          -2.480260644346063,
          -1.6458621545015149,
          -1.2627899851685418,
          -2.7471786713601642,
          -7,
          -1.7610529097676237,
          -2.286479500689445,
          -2.6842467475153122,
          -1.8649819744648206,
          -2.543884177081694,
          -1.8132506727622622,
          -2.468213019453331,
          -2.9291633832050645,
          -3.2308744917032666,
          -3.0086371944363277,
          -2.9640827641867062,
          -2.814663706218772,
          -3.1289159784538367,
          -2.242503468661323,
          -2.614826936158897,
          -2.073180915795838,
          -2.252104451820851,
          -2.244565729667386,
          -2.332270096090313,
          -3.281790637678311,
          -2.3498263322325768,
          -7,
          -2.5020252559029195,
          -0.7512351573632999,
          -3.4130761314903664,
          -3.4093412685967817,
          -2.9380190974762104,
          -7,
          -1.653641234917665,
          -3.013342904345347,
          -7,
          -7,
          -2.39378404890088,
          -2.357855473065863,
          -2.6780214745443685,
          -2.5508803246271956,
          -2.756519079282083,
          -2.4818163759280423,
          -3.0500702643674384,
          -2.715501945293284,
          -2.554640561254055,
          -7,
          -7,
          -7,
          -2.470312467167388,
          -2.8790958795000727,
          -2.950364854376123,
          -2.0523833126485127,
          -1.8490133618429152,
          -2.848189116991399,
          -3.7189996378787185,
          -3.7062909572587635,
          -3.2506029530166067,
          -3.0117395613883184,
          -3.4055171069763763,
          -2.365744844462691,
          -7,
          -7,
          -2.0485250362746963,
          -2.7427812235852933,
          -2.765295929698057,
          -7,
          -7,
          -3.430800424624181,
          -3.4055171069763763,
          -2.5274752284122086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.909556029241175,
          -7,
          -4.363734166777149,
          -7,
          -7,
          -7,
          -7,
          -2.9936125579388904,
          -7,
          -3.0784568180532927,
          -7,
          -7,
          -7,
          -3.1551841596940076,
          -3.652922887567942,
          -7,
          -7,
          -3.62588952582799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.348733103798286,
          -7,
          -7,
          -7,
          -7,
          -2.936513742478893,
          -7,
          -7,
          -7,
          -7,
          -3.0113589537066106,
          -3.453624073591451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.094471128641645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0595634179012676,
          -3.1162755875805446,
          -3.623701445026877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.119024820114783,
          -7,
          -3.0542299098633974,
          -7,
          -4.74154551677621,
          -7,
          -3.197280558125619,
          -7,
          -7,
          -7,
          -2.658488381309017,
          -7,
          -7,
          -7,
          -3.513617073787875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5060989599284405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2648178230095364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6917965522497167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4148619761323045,
          -7,
          -7,
          -4.074313493881491,
          -7,
          -7,
          -7,
          -7,
          -3.1335389083702174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.589790080853059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4207806195485655,
          -3.0013009330204183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8027737252919755,
          -7,
          -3.285782273779395,
          -3.4267659138622935,
          -7,
          -7,
          -2.9116901587538613,
          -3.0993352776859577,
          -7,
          -7,
          -3.0086001717619175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3371830263196416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9222062774390163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.90355117991359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0088130090520893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0457140589408676,
          -7,
          -3.83523596228257,
          -7,
          -7,
          -2.397731497273984,
          -2.90687353472207,
          -7,
          -2.7489628612561616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.498086455177259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9116901587538613,
          -7,
          -7,
          -3.9805487393597705,
          -7,
          -4.392618622936648,
          -7,
          -7,
          -3.9502187666418633,
          -3.2135177569963047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.472317546316842,
          -7,
          -7,
          -3.5448635219352487,
          -7,
          -7,
          -7,
          -7,
          -3.1240148788874076,
          -3.446381812222442,
          -7,
          -4.03903320084723,
          -7,
          -3.452935870201179,
          -4.58169940355087,
          -4.661850530901924,
          -4.806614051463206,
          -2.759015054316643,
          -7,
          -7,
          -3.242302466202193,
          -4.020444155366574,
          -7,
          -7,
          -7,
          -7,
          -4.010956838955719,
          -4.093806775615175,
          -7,
          -7,
          -4.459151146001476,
          -7,
          -3.430295763840919,
          -3.6351065913575105,
          -4.587722186953561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0981763050073265,
          -7,
          -2.9395192526186187,
          -7,
          -4.015129132443987,
          -7,
          -7,
          -7,
          -7,
          -4.550387361358583,
          -3.521987527782068,
          -3.3443922736851106,
          -4.091033516054471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.202024895104038,
          -3.4497868469857735,
          -7,
          -4.365300748637988,
          -3.836315071579222,
          -7,
          -7,
          -7,
          -7,
          -3.7724684030532805,
          -3.721398375521505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.289834121485031,
          -7,
          -7,
          -7,
          -4.174379665748987,
          -7,
          -7,
          -7,
          -3.5287297662461867,
          -7,
          -3.794009770670591,
          -7,
          -7,
          -3.6612446089593336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7925317619013077,
          -3.060613910605181,
          -2.6780629049743454,
          -2.124604535374491,
          -7,
          -2.772028165324855,
          -3.111892321593538,
          -2.7510223528780795,
          -7,
          -7,
          -3.218601143315633,
          -2.432568465297358,
          -3.1712118328707235,
          -2.4099331233312946,
          -2.442793225939769,
          -3.1100844228869238,
          -3.788875115775417,
          -2.649529565947819,
          -2.8195439355418688,
          -2.625312450961674,
          -7,
          -2.8580557180503643,
          -7,
          -2.4461227639106142,
          -3.0941215958405612,
          -7,
          -2.921686475483602,
          -3.0884904701823963,
          -2.4409090820652177,
          -2.624797578960761,
          -3.5232549708237904,
          -3.5674772960726626,
          -3.4033779317228596,
          -7,
          -2.7635777244666455,
          -2.7558748556724915,
          -2.991004440330755,
          -2.992995098431342,
          -7,
          -7,
          -1.915899471000105,
          -3.002166061756508,
          -2.490660653356137,
          -3.3561215062369856,
          -7,
          -2.9701918541039056,
          -7,
          -2.316145147021726,
          -7,
          -2.486288760960566,
          -2.66838591669,
          -2.922984815708883,
          -3.1971426649725627,
          -3.0330214446829107,
          -2.951823035315912,
          -7,
          -3.633670406051444,
          -3.5445021218295945,
          -2.6788217632521745,
          -3.1283992687178066,
          -3.418135498425232,
          -1.9410525092223048,
          -2.238924389835243,
          -7,
          -2.711244671343486,
          -2.7367947549243605,
          -7,
          -7,
          -7,
          -3.0582741466859513,
          -2.665893545534433,
          -1.603865792191225,
          -2.5736450565133797,
          -2.52560005256132,
          -7,
          -7,
          -2.6587743208443566,
          -2.182160938694665,
          -2.333783025949038,
          -1.7610529097676237,
          -7,
          -2.5185139398778875,
          -2.5783526415103615,
          -2.730562063805724,
          -2.869650720710803,
          -2.7651094972067183,
          -2.865893242431105,
          -2.906335041805091,
          -2.123851640967086,
          -4.283414311501195,
          -2.788168371141168,
          -2.970346876230093,
          -3.386498965550653,
          -3.3708213841255614,
          -3.2801228963023075,
          -3.5075860397630105,
          -3.180633086894785,
          -2.760285373877668,
          -2.653694795315082,
          -3.159266331093494,
          -2.6473829701146196,
          -7,
          -7,
          -2.0800156257123503,
          -7,
          -7,
          -2.9595183769729982,
          -7,
          -2.116942635511364,
          -7,
          -3.076640443670342,
          -7,
          -2.670709595223797,
          -1.9623329030973808,
          -1.8930215923314397,
          -1.9370161074648142,
          -7,
          -2.8312296938670634,
          -2.515873843711679,
          -2.9595183769729982,
          -2.317764953307669,
          -7,
          -7,
          -7,
          -2.718916686014861,
          -7,
          -7,
          -2.762678563727436,
          -2.6273658565927325,
          -3.0632082200712114,
          -2.9708116108725178,
          -7,
          -7,
          -7,
          -7,
          -3.2121209897122247,
          -7,
          -7,
          -2.8382192219076257,
          -2.360467183515849,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.84083766998129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504778859928894,
          -7,
          -7,
          -7,
          -7,
          -3.3491479646740636,
          -3.1215598441875008,
          -2.693140460675295,
          -7,
          -3.0288422632984635,
          -7,
          -2.9730858501679815,
          -7,
          -7,
          -3.5217916496391233,
          -3.0097024355116977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.586587304671755,
          -3.4291060083326967,
          -7,
          -3.4271614029259654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0387285143512552,
          -7,
          -3.15060295179301,
          -7,
          -7,
          -2.9431646302222556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.173186268412274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.776701183988411,
          -2.6989700043360187,
          -7,
          -7,
          -7,
          -3.4175381194013275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.699693225955115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.416141031168329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.770986940942376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4653828514484184,
          -7,
          -2.325831307306037,
          -7,
          -7,
          -3.1180993120779945,
          -3.4628470358316736,
          -7,
          -7,
          -7,
          -3.6966766756507976,
          -7,
          -3.1618170401676924,
          -2.5984778397360007,
          -3.0140926774414027,
          -7,
          -7,
          -3.545059584694003,
          -2.6893088591236203,
          -7,
          -2.5819009187422806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2518814545525276,
          -3.6971421262754594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6921416093667836,
          -7,
          -7,
          -7,
          -7,
          -4.154667377622576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1234549503883753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6090605499300867,
          -7,
          -2.833784374656479,
          -7,
          -7,
          -3.1732657537216933,
          -7,
          -7,
          -7,
          -3.478999131673357,
          -3.194514341882467,
          -7,
          -2.7538893314598334,
          -3.4369573306694496,
          -3.4559102403827433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3525683861793083,
          -7,
          -7,
          -7,
          -3.4207806195485655,
          -7,
          -7,
          -2.970036776622557,
          -7,
          -7,
          -7,
          -2.688320927665063,
          -2.9655152710625696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1225435240687545,
          -7,
          -7,
          -2.5269133613887105,
          -3.504198918539445,
          -7,
          -5.156758071220854,
          -7,
          -7,
          -3.4129642719966626,
          -7,
          -3.40705081480425,
          -7,
          -2.666205875272384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.13640344813399,
          -2.0054591837669906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.236033147117636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0317113547545933,
          -7,
          -3.1611882569822596,
          -7,
          -4.051898224988576,
          -7,
          -7,
          -7,
          -2.2400767855157726,
          -7,
          -2.8243862023187742,
          -2.802203410722948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4891143693789193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2258259914618934,
          -7,
          -7,
          -7,
          -3.677434579437062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.682145076373832,
          -7,
          -7,
          -3.4683473304121573,
          -7,
          -7,
          -7,
          -7,
          -4.6291002495336295,
          -3.530711837981657,
          -7,
          -7,
          -7,
          -2.851991747962157,
          -7,
          -7,
          -7,
          -3.1541195255158465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4129642719966626,
          -7,
          -7,
          -3.3551065529544917,
          -7,
          -3.6963325562988216,
          -7,
          -7,
          -2.1714150956351084,
          -2.2727438360858954,
          -7,
          -2.563629384689655,
          -2.823800153749878,
          -3.2149762347220667,
          -2.168185403160118,
          -2.752432609261474,
          -7,
          -7,
          -7,
          -3.4825877695267677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1981987286196296,
          -7,
          -7,
          -3.2615106830542264,
          -4.163332851646521,
          -7,
          -7,
          -7,
          -2.6910814921229687,
          -3.5659658174466666,
          -7,
          -3.575603459860452,
          -7,
          -4.118198568045036,
          -7,
          -7,
          -7,
          -2.3689252622290744,
          -7,
          -7,
          -2.9329992492179184,
          -7,
          -7,
          -7,
          -5.109561674219138,
          -3.9906495883188544,
          -3.5460008283927995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.308744955855214,
          -3.2793246654426103,
          -4.607165397007267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0917372829916605,
          -7,
          -7,
          -2.5435714239623657,
          -7,
          -2.806470698851535,
          -7,
          -7,
          -7,
          -7,
          -4.571534147426671,
          -7,
          -3.2988530764097064,
          -4.149342299291265,
          -3.6061663146076204,
          -3.86975959478241,
          -7,
          -3.886772643054438,
          -7,
          -7,
          -7,
          -7,
          -3.6617180576946593,
          -7,
          -3.1414149308891646,
          -3.4587266981425513,
          -5.17931619719864,
          -7,
          -2.8513602838168097,
          -7,
          -3.489476331740672,
          -7,
          -7,
          -3.5033139228158845,
          -7,
          -7,
          -7,
          -3.1922886125681202,
          -3.4242485095261084,
          -7,
          -7,
          -7,
          -3.444643230730063,
          -7,
          -3.1436392352745433,
          -3.629562492778617,
          -3.548958648077225,
          -7,
          -3.878291949249796,
          -7,
          -7,
          -7,
          -4.101368963249251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.906981153228854,
          -2.7354392032514814,
          -2.264320634080703,
          -7,
          -2.8293956772820934,
          -3.0420024227314255,
          -3.0623312368297984,
          -3.1455071714096627,
          -1.9204263107095962,
          -2.8436998451606685,
          -2.9787889856630807,
          -3.0711840961949233,
          -2.5653229914411844,
          -2.1327050627088058,
          -7,
          -2.7835737770936886,
          -3.1256980877130376,
          -3.1032904715577496,
          -3.539828558377898,
          -3.4888326343824008,
          -2.6503075231319366,
          -3.5173278822943734,
          -3.538824988937904,
          -2.1951710924633283,
          -2.264660441423504,
          -7,
          -3.2615007731982804,
          -7,
          -7,
          -2.6255319440395173,
          -2.9146642062585957,
          -3.613396279293765,
          -7,
          -2.7659478138932125,
          -2.9867717342662448,
          -3.5720579899263045,
          -2.437433443797971,
          -7,
          -2.9485759586429285,
          -2.518426194755475,
          -7,
          -2.632601888317874,
          -1.2012655633156346,
          -2.636655029117369,
          -2.825721094673752,
          -3.495821753385906,
          -2.5499224041295117,
          -3.4082399653118496,
          -3.2187979981117376,
          -2.7320719409998664,
          -3.2364112877439664,
          -4.377324467736556,
          -3.45499721730946,
          -3.4260230156898763,
          -2.954885432549936,
          -7,
          -3.1648978606247633,
          -7,
          -3.1922886125681202,
          -3.368472838440362,
          -2.687380306589906,
          -1.6661724659825865,
          -2.694312646223346,
          -3.2098723115450163,
          -2.6102037316428195,
          -7,
          -7,
          -3.428620672671939,
          -2.7944880466591697,
          -2.383262828397118,
          -2.966610986681934,
          -2.984677302805447,
          -2.1958996524092336,
          -7,
          -3.4216039268698313,
          -2.2177609177449162,
          -2.7197454925295768,
          -2.485437481076301,
          -2.286479500689445,
          -2.5185139398778875,
          -7,
          -1.7311652031850036,
          -2.6296926930974265,
          -2.9392071473361217,
          -3.3122831657914786,
          -2.420615770625765,
          -7,
          -7,
          -7,
          -3.6857417386022635,
          -2.9545640899663494,
          -3.32273600446995,
          -3.245930058025906,
          -2.719094420611941,
          -3.154423973114647,
          -2.8541642908673475,
          -1.7454291911381372,
          -2.824288582459545,
          -7,
          -2.9474337218870508,
          -7,
          -2.8600383898071935,
          -2.746763897156223,
          -3.418218402783965,
          -7,
          -3.1272668183188985,
          -7,
          -2.240017871143136,
          -3.4207806195485655,
          -7,
          -7,
          -3.4331295175804857,
          -2.997677564080969,
          -2.9587231112647787,
          -3.4520932490177314,
          -3.390405156480081,
          -3.1747380145272865,
          -1.260289681270346,
          -3.1272668183188985,
          -3.209112703738592,
          -7,
          -7,
          -7,
          -2.972665592266111,
          -3.143014800254095,
          -7,
          -2.410433534715368,
          -3.4473131088235682,
          -3.4186326873540653,
          -7,
          -7,
          -3.361538971269279,
          -7,
          -7,
          -2.851115599375254,
          -3.109240968588203,
          -7,
          -3.1070968573977424,
          -3.418135498425232,
          -7,
          -3.4075608494863623,
          -7,
          -2.8543060418010806,
          -7,
          -3.4726833296130404,
          -7,
          -3.451632947456991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.187389096503919,
          -7,
          -7,
          -7,
          -7,
          -3.691081492122968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.086868074713916,
          -3.650501794878367,
          -7,
          -7,
          -3.1994351876202076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9637524214609017,
          -7,
          -7,
          -7,
          -2.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7460695605412515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9410142437055695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.079543007402906,
          -7,
          -7,
          -7,
          -7,
          -3.2740808398686907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0856472882968564,
          -7,
          -7,
          -7,
          -7,
          -2.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -2.9084850188786495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6813963148569364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.050379756261458,
          -7,
          -2.5360892666199084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5901728315963144,
          -3.6409449669943474,
          -2.9132839017604186,
          -2.7427251313046983,
          -7,
          -3.7869800210123445,
          -7,
          -7,
          -7,
          -3.0595634179012676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2511513431753545,
          -7,
          -3.5121505369220305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.765668554759014,
          -7,
          -3.196452541703389,
          -7,
          -7,
          -7,
          -4.096249383189612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1646502159342966,
          -7,
          -7,
          -7,
          -3.0806264869218056,
          -7,
          -7,
          -3.653791187387812,
          -7,
          -7,
          -7,
          -7,
          -2.9020028913507296,
          -7,
          -7,
          -3.0542299098633974,
          -7,
          -2.8483011062859602,
          -7,
          -7,
          -3.244359600050387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1314582601065255,
          -7,
          -3.143327129992046,
          -7,
          -7,
          -7,
          -7,
          -2.3005954838899636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8887409606828927,
          -7,
          -7,
          -7,
          -2.6309361190641916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.872420052218972,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4098063651997617,
          -7,
          -7,
          -7,
          -7,
          -2.9283958522567137,
          -2.935003151453655,
          -7,
          -2.983175072037813,
          -7,
          -7,
          -7,
          -3.3265406685165617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1344958558346736,
          -7,
          -3.660092651504926,
          -7,
          -7,
          -7,
          -2.414230329001037,
          -7,
          -2.711526041280055,
          -2.8269382114979367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1458177144918276,
          -3.035829825252828,
          -7,
          -3.709990359852276,
          -7,
          -7,
          -3.496098992132571,
          -7,
          -7,
          -2.338854746252323,
          -7,
          -2.970346876230093,
          -7,
          -7,
          -7,
          -3.184691430817599,
          -7,
          -5.1000809189101615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.433974535927756,
          -7,
          -3.2362852774480286,
          -3.153522188412702,
          -2.2482458076207688,
          -7,
          -3.059184617631371,
          -7,
          -2.870403905279027,
          -2.668785145596836,
          -3.205745540942662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9909305367345755,
          -7,
          -7,
          -3.778791879032985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.135760572021129,
          -7,
          -4.054268239547188,
          -4.581414847918365,
          -7,
          -7,
          -3.226943424688905,
          -7,
          -7,
          -3.5781232505202647,
          -7,
          -4.614538669710055,
          -7,
          -7,
          -7,
          -4.311852713589172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.107031804511505,
          -4.2366883817646155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2347702951609167,
          -4.276989989368231,
          -4.014604533436051,
          -3.07838430874819,
          -7,
          -7,
          -7,
          -4.550081524469066,
          -2.9175055095525466,
          -3.3394514413064407,
          -3.4878804271706723,
          -4.157184682201611,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9002578584377776,
          -2.9681715147063095,
          -7,
          -3.4614797679776728,
          -4.137295321174881,
          -5.174120889726191,
          -2.951823035315912,
          -2.915575698540003,
          -7,
          -3.7141934973413555,
          -3.719331286983727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.611043195143434,
          -3.72482570577938,
          -7,
          -3.735748561803585,
          -7,
          -7,
          -7,
          -3.733598460961339,
          -7,
          -7,
          -7,
          -2.766784515497859,
          -7,
          -2.455225653090252,
          -2.3636119798921444,
          -2.1918573243828754,
          -7,
          -2.2332947998687853,
          -2.867299091392458,
          -2.137775961313472,
          -7,
          -2.321184027302314,
          -2.296665190261531,
          -1.4814860601221125,
          -3.2020339865636913,
          -1.8947240425001657,
          -1.4974690606336676,
          -7,
          -3.309701124779525,
          -2.741939077729199,
          -2.6113249335884254,
          -3.222456336679247,
          -2.060697840353612,
          -2.855034316675884,
          -2.696065013692612,
          -7,
          -2.0788191830988487,
          -2.0343164474392905,
          -7,
          -2.6334090405056987,
          -7,
          -7,
          -3.4771067779956524,
          -3.231165603402702,
          -3.165572301835224,
          -7,
          -2.680335513414563,
          -2.569373909615046,
          -2.5861370252307934,
          -1.736630812766223,
          -7,
          -2.940516484932567,
          -2.1542302584287114,
          -2.6893088591236203,
          -1.421527405949555,
          -1.4279696159410684,
          -2.6074550232146687,
          -2.4892551683692603,
          -2.2764618041732443,
          -1.451674132507183,
          -7,
          -1.6715012994876535,
          -1.6867355479190071,
          -2.6143698395482886,
          -4.343290402353433,
          -3.022840610876528,
          -2.460396637297684,
          -2.480486032340433,
          -3.631139250256811,
          -2.479631634437262,
          -7,
          -2.641804498106114,
          -3.7172543127625497,
          -2.2726150608493985,
          -2.5868973219120925,
          -2.2227164711475833,
          -2.707712079213691,
          -7,
          -3.0856472882968564,
          -3.6510840892430116,
          -7,
          -2.7130321041190335,
          -1.9819479769904773,
          -2.6915235221681546,
          -1.9932357714670954,
          -1.3744058821756568,
          -2.582063362911709,
          -2.623766000133931,
          -2.2734835536034756,
          -2.655138434811382,
          -2.502768412325693,
          -2.6842467475153122,
          -2.5783526415103615,
          -1.7311652031850036,
          -7,
          -2.3363856031865926,
          -2.56534174619609,
          -2.4578818967339924,
          -1.7323937598229684,
          -7,
          -2.8937617620579434,
          -4.282848602834645,
          -3.4847268042986617,
          -2.353627758985543,
          -2.6020599913279625,
          -3.1201418894771438,
          -3.274388795550379,
          -2.726953486571369,
          -3.1478529205561894,
          -1.598257603523139,
          -2.9434945159061026,
          -7,
          -2.2340108175871793,
          -7,
          -2.037027879755775,
          -2.412740466538526,
          -2.8370831508231857,
          -2.3026555539507187,
          -2.244524511570084,
          -7,
          -1.7445068987146113,
          -2.9232440186302764,
          -7,
          -7,
          -1.9099448336376925,
          -2.1676864758514913,
          -2.187990482355389,
          -2.1647775936979032,
          -2.8911191293545526,
          -3.1288837020997735,
          -1.5710379430085666,
          -7,
          -1.8245287188967205,
          -7,
          -7,
          -7,
          -2.4056877866727775,
          -2.514547752660286,
          -7,
          -3.016531940957265,
          -3.5805828768143675,
          -7,
          -2.9590413923210934,
          -7,
          -2.8446324750435648,
          -7,
          -2.8830933585756897,
          -3.290835646600807,
          -7,
          -7,
          -2.3532535284738882,
          -3.059310921102351,
          -2.7027176733035243,
          -7,
          -7,
          -2.7271344237604884,
          -7,
          -3.0147304950017535,
          -7,
          -7,
          -7,
          -3.722798396870905,
          -3.715501945293284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.660917197172924,
          -7,
          -7,
          -7,
          -3.957607287060095,
          -3.969602264848539,
          -3.4202033743532962,
          -7,
          -7,
          -7,
          -7,
          -2.9661417327390325,
          -3.4713895141179947,
          -7,
          -3.171433900943008,
          -3.029848940638572,
          -7,
          -7,
          -7,
          -7,
          -3.422589839851482,
          -7,
          -3.916022071490407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6483762763872707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7203247174174416,
          -7,
          -7,
          -3.7204074008031087,
          -2.963247995726138,
          -2.7978299584283435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7029305877176997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7506626461340558,
          -7,
          -7,
          -4.03243743124139,
          -3.716337287889549,
          -3.251232527301566,
          -7,
          -7,
          -7,
          -7,
          -3.7180031682670176,
          -7,
          -3.747567162737625,
          -7,
          -7,
          -3.4280537613796307,
          -7,
          -7,
          -3.164673081360996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7170044070405472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.45400593810379,
          -7,
          -7,
          -3.7270530113538576,
          -7,
          -2.9777236052888476,
          -3.718169405391307,
          -3.716003343634799,
          -7,
          -3.7349597612724454,
          -2.818516206243704,
          -3.7233735670189843,
          -7,
          -7,
          -7,
          -3.7777167386096258,
          -7,
          -3.9193919267738595,
          -3.465680211598278,
          -7,
          -7,
          -3.7328760413627067,
          -3.5192809544265256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7244397233970745,
          -3.7309436934277356,
          -7,
          -7,
          -3.6744937172963503,
          -7,
          -7,
          -7,
          -3.2364532830524073,
          -7,
          -3.0860482372238454,
          -3.034800284315753,
          -3.8845688149183335,
          -7,
          -7,
          -3.748226801568246,
          -7,
          -7,
          -7,
          -3.8773137433122384,
          -3.7771367125041726,
          -7,
          -7,
          -7,
          -3.7505341072033804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.739651443709377,
          -7,
          -3.749581734865559,
          -7,
          -7,
          -2.8795947904433206,
          -3.717087724927019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3475251599986895,
          -7,
          -3.0060736450562517,
          -7,
          -7,
          -2.7264499166393055,
          -7,
          -3.446304113951924,
          -3.7444494574467986,
          -3.449324093098727,
          -3.759592308645975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.40219995031908,
          -7,
          -2.6480596170682786,
          -3.4189638307036225,
          -3.7203247174174416,
          -3.2364532830524073,
          -7,
          -3.7340794072805945,
          -7,
          -7,
          -7,
          -3.0007438674075004,
          -3.7317498835272636,
          -7,
          -3.7149999674120426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7641761323903307,
          -7,
          -3.70204408731056,
          -7,
          -7,
          -7,
          -3.7517408738109004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.492403703373851,
          -7,
          -7,
          -7,
          -7,
          -3.721150843749684,
          -3.72222246396973,
          -7,
          -7,
          -7,
          -7,
          -3.87075494489014,
          -3.8152455919165633,
          -7,
          -7,
          -7,
          -3.840482487213442,
          -3.269746373130767,
          -2.411353838503502,
          -7,
          -3.3850220555965733,
          -7,
          -7,
          -7,
          -2.9591368311703743,
          -3.767897616018091,
          -3.775391971696612,
          -3.507180977260241,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4291060083326967,
          -7,
          -3.1151110355043476,
          -7,
          -3.4194600727860704,
          -3.4072775708370235,
          -3.2869801217565664,
          -3.740362689494244,
          -3.7262380468026377,
          -3.3147670747986746,
          -7,
          -7,
          -3.183147776558217,
          -7,
          -7,
          -3.263951517653659,
          -7,
          -7,
          -3.443654067612905,
          -7,
          -7,
          -3.472902651803664,
          -7,
          -3.239489675978027,
          -3.4777722083492573,
          -7,
          -7,
          -7,
          -3.489888199550597,
          -3.7545012293869173,
          -7,
          -7,
          -3.7380667147774695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.742882171437273,
          -7,
          -3.8435130786088068,
          -7,
          -3.354262774332554,
          -7,
          -3.787956123283932,
          -3.561133921976699,
          -3.7798849631926443,
          -7,
          -7,
          -7,
          -3.7708520116421442,
          -3.8859828113549733,
          -7,
          -7,
          -3.7138264243805246,
          -7,
          -3.0528477834008605,
          -3.7184186418296554,
          -7,
          -7,
          -7,
          -3.243368813730389,
          -3.020834628178929,
          -7,
          -7,
          -2.6971355608850085,
          -2.9142430678512703,
          -3.769728017574238,
          -3.1436392352745433,
          -4.025264892154508,
          -2.847202363980924,
          -2.8519132286851905,
          -4.175743684421761,
          -1.5644135192609991,
          -7,
          -1.9418670254250672,
          -3.452593912052705,
          -3.3393995873126787,
          -3.3436499602697234,
          -2.1686218349748922,
          -7,
          -3.468657430019694,
          -2.320744609167914,
          -3.695102086708091,
          -3.3573821032961106,
          -4.113776283837032,
          -3.942120541404521,
          -3.4912916406875922,
          -2.6774085632045024,
          -3.0785086030032023,
          -4.284791555950147,
          -3.6321258539987804,
          -3.2650668939397445,
          -7,
          -2.2603320571010896,
          -2.4754694067467145,
          -3.5201911837557343,
          -3.5013918525528274,
          -3.3009865640441736,
          -3.0941992941110796,
          -3.648242882068844,
          -3.9091279419892606,
          -3.0207595645137237,
          -3.469026307750861,
          -3.304336626328912,
          -3.4863596256881286,
          -3.3468263424137072,
          -2.233293770257954,
          -3.062581984228163,
          -3.7539658658651605,
          -3.733250779305627,
          -7,
          -3.6977522741677546,
          -2.4720840748654966,
          -2.7388465958116313,
          -2.6191716218534493,
          -2.7951149856303634,
          -3.3018110230174766,
          -7,
          -3.536474268817627,
          -7,
          -3.730136003996678,
          -3.9071425310031405,
          -2.891708963048237,
          -2.9024863809435577,
          -7,
          -2.271634765541776,
          -3.071817053124699,
          -3.824920600351519,
          -7,
          -7,
          -7,
          -3.047844496253999,
          -3.984707294482673,
          -4.063009488011954,
          -1.6175169423917877,
          -3.436162647040756,
          -7,
          -2.935690435157628,
          -3.4794025368739816,
          -3.377706841369624,
          -2.8574665172568663,
          -2.716791410904716,
          -3.9262395210458623,
          -1.5688414901761636,
          -7,
          -7,
          -2.4884734467765677,
          -2.682533359351777,
          -3.7786576319473553,
          -2.804502896720539,
          -7,
          -2.690196080028514,
          -3.1743021460393894,
          -3.5809249756756194,
          -3.4308809464528913,
          -7,
          -7,
          -3.747023177451628,
          -2.9454945000097643,
          -1.3873070326139714,
          -3.426673888021373,
          -2.0568329661286775,
          -2.00851982868854,
          -1.70372115992702,
          -1.2346093048038251,
          -1.8271048087310866,
          -2.7321524180652137,
          -7,
          -0.8790425431179267,
          -2.45700493649091,
          -1.7674303855279894,
          -2.212409579610376,
          -1.5817632448704808,
          -2.498059806391236,
          -1.6938984542993198,
          -1.7613995242895237,
          -1.8164738850726685,
          -2.419237193590724,
          -2.3541852986258607,
          -1.8147063437620037,
          -2.593286067020457,
          -1.9348642345397662,
          -2.7076475835452323,
          -2.651762447380111,
          -7,
          -0.9972133578212427,
          -2.8942369201818225,
          -3.7188337183038622,
          -2.390439489416729,
          -1.6769815571269187,
          -1.9733492103121666,
          -3.239716468579862,
          -1.9675722866939394,
          -2.8967623540510066,
          -2.2540298877122105,
          -2.825993770051668,
          -7,
          -3.12057393120585,
          -1.8601617864501327,
          -3.254467510467076,
          -2.34908316877959,
          -2.4858192956610146,
          -2.8720729868180532,
          -1.8416722500736344,
          -2.2780673308886628,
          -1.7914827158151627,
          -7,
          -2.2239036770313434,
          -2.6102505672074927,
          -2.0681130729281074,
          -2.321557007938544,
          -2.782313337723311,
          -2.679923195447674,
          -3.0266966559781596,
          -3.0352796104598627,
          -0.9035663438258191,
          -2.507481059830068,
          -2.802925682774948,
          -1.7168939159781895,
          -2.701175349207917,
          -1.8032145727317173,
          -2.7923138519710444,
          -1.9674176304026578,
          -2.56062387454993,
          -2.5724068675580556,
          -2.7630371480451195,
          -7,
          -1.8596768121039193,
          -1.9977847916135072,
          -2.953356933212382,
          -2.5352149775401545,
          -1.932855758907971,
          -7,
          -3.021106568432122,
          -1.6647329368051549,
          -2.091896237573858,
          -2.8511818816915158,
          -1.8649819744648206,
          -2.730562063805724,
          -2.6296926930974265,
          -2.3363856031865926,
          -7,
          -1.8227283389364544,
          -1.903222373666312,
          -2.1701283120820047,
          -3.4143883269310753,
          -3.7157527168228595,
          -2.0665974676878682,
          -2.1684385521867724,
          -2.3802934866662886,
          -1.7174591546280427,
          -1.2625944386738668,
          -1.963717365029849,
          -1.0474498890910078,
          -1.9002933004400744,
          -1.8964681993902235,
          -2.7221401254574156,
          -2.587636144710017,
          -2.876465278343224,
          -7,
          -2.6261823846588936,
          -2.044510177307225,
          -2.2372085050255706,
          -3.7179200258369938,
          -2.9453044216515423,
          -3.7137424784090824,
          -1.3177898262770587,
          -3.4191293077419758,
          -2.900757155159472,
          -7,
          -2.725094521081469,
          -3.048985302570711,
          -3.2508264548251344,
          -2.4546844261382326,
          -1.5734548577967027,
          -2.2790623777037693,
          -3.1538910496761696,
          -7,
          -1.9880598807558294,
          -3.4129642719966626,
          -7,
          -7,
          -2.8312296938670634,
          -2.886248935531698,
          -2.6205364371187407,
          -1.9966959685634385,
          -2.406486954809536,
          -2.9404611431699053,
          -2.342258144172425,
          -3.4125445421080887,
          -2.5133992245838237,
          -3.718750734739665,
          -3.111598524880394,
          -2.1561635279953113,
          -7,
          -7,
          -1.6682597681200826,
          -2.3601142873067102,
          -2.771807878999106,
          -3.7137424784090824,
          -7,
          -3.1364827496008227,
          -7,
          -2.3155095555124667,
          -3.7148325124333326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.521469346698325,
          -7,
          -7,
          -7,
          -3.9207492612757084,
          -3.4564672554769906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.472078282328687,
          -7,
          -7,
          -3.415140352195873,
          -3.288489155230087,
          -7,
          -7,
          -7,
          -7,
          -3.6585837154070626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.677789391068861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4145221155206515,
          -7,
          -7,
          -2.8923729073984363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9103194227966793,
          -3.1245508004664684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.396606125927017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9579925120750126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3814066886605665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.881903155497279,
          -7,
          -7,
          -7,
          -3.623064602118739,
          -7,
          -7,
          -3.731346975545955,
          -7,
          -7,
          -3.659345635746177,
          -7,
          -7,
          -7,
          -3.2249860256767717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1099640296607753,
          -7,
          -3.84060787900929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.83257277484618,
          -7,
          -7,
          -7,
          -7,
          -4.208360724978379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.710709565724337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.137836192154967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8817649496862066,
          -7,
          -7,
          -3.105884708669233,
          -7,
          -3.3848012789620823,
          -3.682506085939011,
          -3.689486448364248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6572607893053752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3209766773428235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.875928984922927,
          -2.8452059258630054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7454183419434295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7263196121107756,
          -7,
          -3.22284647997415,
          -7,
          -7,
          -7,
          -7,
          -3.79155030502733,
          -7,
          -2.6578204560156973,
          -7,
          -2.66421447824638,
          -7,
          -7,
          -7,
          -2.443210816819927,
          -3.709439574132411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3589155946326024,
          -7,
          -7,
          -3.3953263930693507,
          -7,
          -7,
          -7,
          -7,
          -3.442793225939769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0289877777129104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.12100143498964,
          -7,
          -3.7584513768787224,
          -7,
          -7,
          -3.9925424725624366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.842172229385616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8207267628238344,
          -7,
          -7,
          -2.8598718466898005,
          -3.824863139350777,
          -3.6589457942431114,
          -7,
          -3.4505709997374705,
          -2.62228311762588,
          -2.3825383761127745,
          -3.5114971497645353,
          -2.1681024455343647,
          -7,
          -2.022045226491996,
          -3.02951905084684,
          -3.1262542976085608,
          -3.2620211364576672,
          -2.121441287898854,
          -3.7635777244666455,
          -3.0421664366887087,
          -2.527372082827612,
          -3.2467139512350784,
          -3.3725825735902633,
          -4.088384186097703,
          -4.074397497406827,
          -2.8103818884116567,
          -2.3116933279896723,
          -2.882497432666564,
          -7,
          -3.387764379602052,
          -3.0188480832550355,
          -7,
          -1.4881782505045555,
          -2.6374063316280676,
          -3.5474670224263853,
          -3.553701021549961,
          -2.469255421661786,
          -2.2149279077560613,
          -3.633589637131385,
          -4.189995339964319,
          -2.156198160789173,
          -2.775610448006361,
          -3.4272588402704054,
          -7,
          -3.773075617672614,
          -2.6859923929665883,
          -3.2069607291557105,
          -3.3922571613416745,
          -3.235584553681337,
          -7,
          -2.785307585748132,
          -7,
          -3.7679717213816186,
          -3.1617218284861597,
          -3.1764530204109622,
          -3.9679222067305173,
          -7,
          -3.6804261708581456,
          -7,
          -7,
          -7,
          -3.5925320448535816,
          -7,
          -3.3930484664167784,
          -2.8962505624616384,
          -2.8272164116669023,
          -4.4856902015728215,
          -7,
          -7,
          -7,
          -3.574947145214187,
          -7,
          -7,
          -3.439332693830263,
          -3.893484346218486,
          -7,
          -7,
          -3.076974014842062,
          -7,
          -3.0608488730388075,
          -3.335808805235897,
          -3.1077750894177876,
          -2.776560597696845,
          -3.8396665568824333,
          -7,
          -3.472112573021507,
          -3.179115405187117,
          -7,
          -3.975128385758762,
          -7,
          -3.7887338588277077,
          -7,
          -3.206885815923174,
          -3.0655797147284485,
          -7,
          -7,
          -2.2180281729591895,
          -2.9259360194675317,
          -1.5122123719657488,
          -7,
          -2.3139482984020416,
          -2.0805709895756306,
          -1.7107859199198063,
          -2.158425319506846,
          -1.7691758440581877,
          -7,
          -7,
          -1.8936577518833586,
          -2.193310154640943,
          -2.1435053686359833,
          -2.8119936837029837,
          -1.9219068065125802,
          -2.165484568429807,
          -1.9565580257265802,
          -1.7206186312984866,
          -1.4142348088269365,
          -1.707064005315809,
          -2.034583897605951,
          -1.8231911528255964,
          -1.896595103917157,
          -1.7533557390856211,
          -2.91053547390048,
          -2.9692294798626433,
          -3.0492180226701815,
          -1.8423092984741956,
          -2.311938040228109,
          -3.652826302561005,
          -2.1213727844547217,
          -1.8226585789992689,
          -1.7525711876624266,
          -3.048247531803974,
          -1.8922303833643714,
          -7,
          -1.7759183689513516,
          -3.063427189454848,
          -7,
          -3.356599435724971,
          -2.139750615913122,
          -2.1434879395120294,
          -2.2223576242096676,
          -2.001949941084268,
          -7,
          -0.9613839667026424,
          -2.2177470732627937,
          -1.4456495390930346,
          -7,
          -2.508613876414027,
          -2.8822398480188234,
          -2.1769176998034636,
          -1.665195412347772,
          -2.2904056446887195,
          -7,
          -7,
          -2.785275065544536,
          -1.5773031290220334,
          -1.8893892530522984,
          -2.1122697684172707,
          -1.83265975304879,
          -3.682145076373832,
          -2.1367064465138674,
          -2.9073217693391156,
          -1.0995657990900722,
          -2.5949447366950835,
          -2.1654331908736246,
          -2.5942543940256364,
          -7,
          -1.6193360481661199,
          -1.839380662996892,
          -3.6684791029325856,
          -2.6776981814745104,
          -1.5260791612514868,
          -7,
          -7,
          -1.9417382210894931,
          -3.099507993727965,
          -3.2175716716118217,
          -2.543884177081694,
          -2.869650720710803,
          -2.9392071473361217,
          -2.56534174619609,
          -1.8227283389364544,
          -7,
          -1.6582385975421807,
          -1.3369537150762545,
          -7,
          -3.6492374723496073,
          -1.9808382361688874,
          -1.3818214270144333,
          -2.4543683986530924,
          -1.5157224952236852,
          -1.8822712898280836,
          -1.9500294979909438,
          -1.3577006743372015,
          -2.4261184631759893,
          -1.6383530931404153,
          -3.658393026279124,
          -2.287801729930226,
          -3.355930187078868,
          -3.3494717992143856,
          -7,
          -3.417969642214737,
          -1.7401731378151295,
          -7,
          -3.357934847000454,
          -7,
          -1.6550152341972675,
          -7,
          -2.359383703996949,
          -3.3569814009931314,
          -2.815577748324267,
          -2.7315887651867388,
          -2.515211304327802,
          -2.0749851314540164,
          -1.3495107823567656,
          -1.5922125858397185,
          -7,
          -7,
          -1.6488033948702887,
          -7,
          -7,
          -7,
          -3.1946068335198956,
          -2.489771041147474,
          -3.6732052817790453,
          -2.7708520116421442,
          -1.683361376444474,
          -2.488366758369108,
          -3.3602146132953523,
          -3.646893624167745,
          -2.41033850091073,
          -3.6527296960692475,
          -7,
          -2.5930230972988877,
          -3.1711411510283822,
          -7,
          -2.551144908756322,
          -1.5955090387324764,
          -2.6723497932508575,
          -7,
          -3.64738297011462,
          -7,
          -7,
          -1.5977651826186936,
          -2.869036047512346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6305573026766758,
          -7,
          -7,
          -7,
          -7,
          -3.7576996250877386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.67089495352021,
          -3.7231271587956916,
          -7,
          -2.6691308473733324,
          -3.73956104337977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.575384157099592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.363818737564178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.125558714560702,
          -3.5100756113539493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8262908158770794,
          -7,
          -7,
          -7,
          -7,
          -3.480581786829169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05986622041094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6466065096424285,
          -2.526597709103452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.144325078400488,
          -7,
          -7,
          -7,
          -3.9694858039103753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7900739484263046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.646436403284287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0555694400609896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0955021988092257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4888326343824008,
          -7,
          -3.331680308168973,
          -7,
          -7,
          -3.3822152230475337,
          -7,
          -3.2990712600274095,
          -7,
          -3.307496037913213,
          -2.728962179713866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0930462684998408,
          -7,
          -2.6428600525844916,
          -7,
          -7,
          -7,
          -7,
          -3.26030994579492,
          -7,
          -7,
          -7,
          -3.5345337560051155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.112318545682975,
          -7,
          -7,
          -7,
          -3.009450895798694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.462516210796815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5219222448835,
          -2.9967305154351527,
          -3.3200077330768902,
          -7,
          -3.436785272573282,
          -7,
          -7,
          -7,
          -2.563639269509036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8670744611517724,
          -7,
          -7,
          -3.4173263504642257,
          -7,
          -7,
          -3.1508178199016665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8723208379738385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7138683912822246,
          -3.5871494982543437,
          -4.17997604864288,
          -7,
          -7,
          -3.8627870982353443,
          -3.3845326154942486,
          -7,
          -7,
          -7,
          -3.361727836017593,
          -3.134283382991931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5907405368822554,
          -4.75804849865779,
          -7,
          -3.295347148333618,
          -4.149203711868772,
          -2.7586596156078977,
          -3.3274951622675926,
          -7,
          -3.2967043564681595,
          -7,
          -3.3058885302843097,
          -4.590585505352095,
          -4.368203179826712,
          -4.811930070679321,
          -2.6089770751029318,
          -4.007534417897258,
          -4.4122757019358305,
          -2.9082968496894392,
          -3.7508553832258906,
          -4.623042434246382,
          -7,
          -4.3280464486194905,
          -3.0408988880818284,
          -3.5903820058174034,
          -3.643321052153644,
          -7,
          -7,
          -4.470895383280216,
          -7,
          -3.3006038439866345,
          -3.955639653023252,
          -3.994361151908001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8979751203757345,
          -4.1116321117086,
          -7,
          -7,
          -4.587284316492772,
          -3.218010042984363,
          -7,
          -7,
          -7,
          -7,
          -4.5599305524475895,
          -7,
          -3.4769764657595275,
          -2.7013354666845983,
          -7,
          -7,
          -7,
          -3.8274985081334587,
          -7,
          -7,
          -7,
          -3.620812485741877,
          -7,
          -7,
          -3.3002511868257978,
          -3.605695520054009,
          -5.176481948305591,
          -7,
          -7,
          -3.2422929049829308,
          -3.3467543414336545,
          -7,
          -7,
          -3.4305587695227575,
          -4.106870544478654,
          -7,
          -2.9924062244673513,
          -4.0602066210673495,
          -3.528702498309365,
          -7,
          -3.764250875438773,
          -7,
          -2.8531448998375213,
          -7,
          -7,
          -4.017492446477275,
          -3.278010092736105,
          -7,
          -3.868771750094851,
          -3.413467412985825,
          -3.516667559099043,
          -3.730216840568694,
          -3.588906340229199,
          -2.952792443044092,
          -7,
          -7,
          -2.178534241360947,
          -3.5181518769291116,
          -2.2795017397802226,
          -7,
          -2.8026027095457597,
          -2.677378796959058,
          -2.367006294428387,
          -2.2161856039886256,
          -2.2769917547965424,
          -7,
          -7,
          -2.201871892863938,
          -2.1541663775016415,
          -1.9411631563074063,
          -2.668944734457734,
          -2.187722109424307,
          -2.105903033717524,
          -2.375379771654777,
          -1.317686397735075,
          -1.6811308843113666,
          -2.0066442874731183,
          -2.364446760508421,
          -2.6879251249656204,
          -1.7462448717201984,
          -1.5719120796713575,
          -2.460038278929382,
          -7,
          -2.429752280002408,
          -1.8011017257894453,
          -2.159057919756901,
          -7,
          -2.7632442908167834,
          -2.5482975085635067,
          -2.5166165450160767,
          -7,
          -1.8755435449314382,
          -7,
          -1.3975992519013951,
          -2.9471885655260937,
          -3.1981069988734014,
          -3.226857570288723,
          -2.645422269349092,
          -1.4949786824666678,
          -2.4604682735010472,
          -2.164848342982397,
          -3.2111205412580492,
          -1.8397572915451457,
          -2.0952719366411383,
          -1.8630523559186847,
          -7,
          -2.157418988613354,
          -3.2362852774480286,
          -2.914166793875635,
          -2.416238675127561,
          -1.9397568966638934,
          -3.226342087163631,
          -3.236789099409293,
          -3.706803097037338,
          -2.2437143444085867,
          -2.110589710299249,
          -1.5660623380564436,
          -2.270606059524192,
          -3.2895889525425965,
          -2.4704893721204355,
          -2.9984773030365064,
          -1.6855672647538227,
          -3.274619619091238,
          -2.5276299008713385,
          -3.290657766409132,
          -7,
          -1.9408847449615854,
          -1.5291693929623844,
          -3.2550311633455515,
          -3.2826221128780624,
          -1.970741228491373,
          -7,
          -7,
          -2.686555024386572,
          -2.4313637641589874,
          -3.3207692283386865,
          -1.8132506727622622,
          -2.7651094972067183,
          -3.3122831657914786,
          -2.4578818967339924,
          -1.903222373666312,
          -1.6582385975421807,
          -7,
          -1.6809395392169428,
          -7,
          -7,
          -2.8372835937633987,
          -2.035601249204445,
          -2.6327103038329542,
          -2.273613961300418,
          -2.408539237965408,
          -2.650793039651931,
          -1.6184403542867676,
          -2.330413773349191,
          -1.5788248182115736,
          -7,
          -2.0867551829841657,
          -3.225050696138049,
          -3.207365037469072,
          -7,
          -2.3725438007590705,
          -2.5477747053878224,
          -7,
          -3.2304489213782737,
          -7,
          -1.7617254981477537,
          -7,
          -2.0863598306747484,
          -7,
          -2.0543576623225928,
          -2.4544092586862307,
          -2.284556053274592,
          -2.182557301304913,
          -2.126097803108254,
          -1.4510184521554574,
          -3.3236645356081,
          -7,
          -1.7248750343064068,
          -7,
          -7,
          -7,
          -1.8920946026904806,
          -2.953518081444993,
          -7,
          -2.698535492562001,
          -1.9745692571196651,
          -2.5133200642613844,
          -7,
          -7,
          -2.955567497098864,
          -3.212986184736668,
          -7,
          -2.663658101893888,
          -2.3532840899940375,
          -7,
          -2.306271810233204,
          -2.04170426796382,
          -2.322407260320884,
          -7,
          -7,
          -7,
          -7,
          -1.7152764907757574,
          -2.59659709562646,
          -7,
          -2.893206753059848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.193792230279798,
          -7,
          -7,
          -7,
          -7,
          -3.4466924663715273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6856003283393646,
          -7,
          -7,
          -3.345177616542704,
          -3.340659367297437,
          -7,
          -7,
          -7,
          -7,
          -3.1947917577219247,
          -7,
          -4.573903855991725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8842098704188714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8309092995464433,
          -3.3251734566778013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7771367125041726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.535420718056173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.31713817377725,
          -7,
          -3.2135177569963047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0982975364946976,
          -7,
          -7,
          -7,
          -3.667367330842684,
          -7,
          -3.3494717992143856,
          -7,
          -7,
          -7,
          -7,
          -3.218535505216528,
          -7,
          -7,
          -4.019282495761732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3016809492935764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.659266331383175,
          -7,
          -7,
          -7,
          -7,
          -3.171433900943008,
          -7,
          -7,
          -7,
          -7,
          -2.8851041041149954,
          -7,
          -7,
          -3.7280470067735045,
          -7,
          -7,
          -7,
          -3.279210512601395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7514074226375196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2166935991697545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188365926063148,
          -7,
          -7,
          -7,
          -7,
          -3.655618583541222,
          -3.4048581419444237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0394537789617364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.567966906823154,
          -7,
          -7,
          -7,
          -7,
          -3.203576774977973,
          -7,
          -3.009592521262823,
          -7,
          -3.036668810300097,
          -7,
          -7,
          -7,
          -2.112474209640226,
          -7,
          -7,
          -3.130655349022031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.761614652799469,
          -7,
          -7,
          -3.2399248132621516,
          -7,
          -7,
          -7,
          -7,
          -3.1061908972634154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.324255010861404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5725230978496376,
          -4.2889291750270715,
          -7,
          -7,
          -3.715083670694927,
          -3.3609718837259357,
          -7,
          -7,
          -7,
          -7,
          -3.59802407233419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.258397804095509,
          -7,
          -7,
          -3.32962158001926,
          -3.9118877968391073,
          -7,
          -7,
          -4.448288825667122,
          -3.5216610151120733,
          -3.0965624383741357,
          -7,
          -3.280444918828487,
          -7,
          -2.4332241692194554,
          -3.4749443354653877,
          -4.367010957968254,
          -4.112048372722411,
          -2.2835543583265596,
          -4.305867056602291,
          -7,
          -2.7228796657889593,
          -7,
          -4.144553452299717,
          -3.966939163021113,
          -4.628661343094779,
          -7,
          -3.202222766175473,
          -3.417106167392593,
          -7,
          -4.336899809359534,
          -4.469011558655687,
          -7,
          -2.935784279507291,
          -2.9975319986424003,
          -7,
          -3.9658834267863567,
          -3.0972840133231454,
          -2.757863012151893,
          -3.9666578842017577,
          -4.09684052033139,
          -4.372819981678968,
          -3.565240460896473,
          -4.016657344822202,
          -7,
          -4.585844093045212,
          -3.5514906603465675,
          -7,
          -7,
          -7,
          -7,
          -4.558396534248996,
          -3.5631249603380444,
          -7,
          -7,
          -4.177449920971824,
          -3.7992026563005252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9003124969837266,
          -3.466737343913133,
          -5.176111525658619,
          -7,
          -3.499687082618404,
          -7,
          -3.1468409340350676,
          -7,
          -7,
          -3.721315880605899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4424797690644486,
          -7,
          -7,
          -3.347748075174585,
          -7,
          -7,
          -4.016155511951455,
          -2.9538171981860746,
          -7,
          -4.3447163997142635,
          -7,
          -7,
          -7,
          -3.760271660542063,
          -3.22219604630172,
          -7,
          -7,
          -1.841984804590114,
          -3.815079418399363,
          -2.16144786514103,
          -7,
          -2.7801372190494913,
          -2.4026297928954663,
          -1.9592860652751163,
          -2.3140263025987355,
          -2.221227885347781,
          -3.2271150825891253,
          -7,
          -2.444405156454783,
          -1.89006518553078,
          -2.28025136025892,
          -2.8670744611517724,
          -1.9227686950366432,
          -2.124123670090858,
          -2.4150375879653,
          -1.7138326419551946,
          -1.6667690244306506,
          -2.190705124231049,
          -2.112381541544101,
          -2.397224110388342,
          -2.029789470831856,
          -1.519298927858262,
          -2.159983427793689,
          -2.7461150183833354,
          -2.3263358609287517,
          -2.009759837289156,
          -2.644684718395879,
          -3.177824971864682,
          -2.7001502497130585,
          -2.5574974999278877,
          -2.4859850346729226,
          -7,
          -1.9410142437055697,
          -7,
          -1.5633414633125446,
          -7,
          -7,
          -3.1925674533365456,
          -2.379758615842701,
          -1.8889012465241302,
          -1.6061424135326907,
          -1.6817629124916509,
          -7,
          -1.7616415061326538,
          -2.702215059149166,
          -1.4076494900585457,
          -7,
          -2.1058106306359194,
          -2.9011857801371503,
          -3.3688445068258215,
          -2.043498454033951,
          -2.194135761749324,
          -7,
          -7,
          -3.3945392313722045,
          -2.2568780318187245,
          -2.1396692316100534,
          -2.0646781638739173,
          -2.335717857204335,
          -2.9585638832219674,
          -2.5293041493281634,
          -3.2711443179490782,
          -1.5467624914031377,
          -2.640481436970422,
          -2.499228724283611,
          -3.5069557791831683,
          -7,
          -1.9083457326420796,
          -1.3633367615800802,
          -3.2229764498933915,
          -2.7745169657285493,
          -1.749230751353215,
          -3.161966616364075,
          -7,
          -2.3536904865774635,
          -2.5306265232810774,
          -2.8153563389481215,
          -2.468213019453331,
          -2.865893242431105,
          -2.420615770625765,
          -1.7323937598229684,
          -2.1701283120820047,
          -1.3369537150762545,
          -1.6809395392169428,
          -7,
          -7,
          -7,
          -2.7053811871798974,
          -1.8898379053780638,
          -2.9011857801371503,
          -2.0860749539955252,
          -2.484700757429173,
          -2.4063698354692677,
          -1.975238488015573,
          -2.7056926965377035,
          -1.6855806561176072,
          -7,
          -2.0141003215196207,
          -7,
          -3.171433900943008,
          -3.253580289562183,
          -3.050379756261458,
          -2.916137983107175,
          -7,
          -3.196452541703389,
          -7,
          -1.515772210307093,
          -7,
          -2.3101029976107674,
          -7,
          -1.9395192526186187,
          -1.5699101057997673,
          -2.162998646761075,
          -2.052565699053254,
          -2.0412765481119646,
          -1.5613453617046675,
          -2.44870631990508,
          -7,
          -1.45375503639545,
          -7,
          -7,
          -7,
          -2.1864940194554485,
          -3.2229764498933915,
          -3.236033147117636,
          -3.0704073217401198,
          -1.834003217937453,
          -2.8372727025023003,
          -7,
          -3.1598678470925665,
          -3.5427009694481106,
          -2.875928984922927,
          -7,
          -2.9072393288920026,
          -2.384114363914378,
          -7,
          -1.9967710298698016,
          -1.743313739231126,
          -2.3394514413064407,
          -7,
          -7,
          -7,
          -7,
          -1.7664128471123997,
          -2.3826173114774845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.89470365260923,
          -7,
          -7,
          -7,
          -4.2750175015885965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557362814089654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028335335818388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.669605074622326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5308397786165204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5035183127240748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0145205387579237,
          -2.4771212547196626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432858699971087,
          -7,
          -7,
          -4.543248315911594,
          -2.951823035315912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.616570029608803,
          -4.74629939854591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732152418065214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.913884463632048,
          -7,
          -7,
          -4.650628024927767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.482880726551359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.401986098723474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3462355816990375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603371749100861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7695988483874463,
          -7,
          -4.325597752860019,
          -7,
          -7,
          -7,
          -3.7331972651065697,
          -3.1758016328482794,
          -3.4095950193968156,
          -7,
          -7,
          -2.9807606420143298,
          -7,
          -7,
          -2.7007037171450192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1624050762518,
          -7,
          -7,
          -2.8583366459697217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.91399035898314,
          -7,
          -7,
          -3.5801263254115825,
          -7,
          -7,
          -7,
          -3.247236549506764,
          -7,
          -2.6009728956867484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.622214022966295,
          -3.7003394895658697,
          -7,
          -7,
          -2.5477747053878224,
          -7,
          -7,
          -2.2329961103921536,
          -3.6977522741677546,
          -2.815577748324267,
          -7,
          -2.5888317255942073,
          -3.2095150145426308,
          -7,
          -7,
          -3.2826221128780624,
          -2.5071809772602407,
          -1.8372727025023003,
          -2.9291633832050645,
          -2.906335041805091,
          -7,
          -7,
          -3.4143883269310753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2785020944938825,
          -3.448087666692341,
          -7,
          -7,
          -7,
          -7,
          -2.1117104708745447,
          -7,
          -7,
          -1.4771212547196626,
          -7,
          -7,
          -3.66919286729231,
          -1.7817553746524688,
          -7,
          -7,
          -2.298853076409707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.651956069533074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275057846120968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.894814329083301,
          -7,
          -7,
          -7,
          -4.877123600647619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02428037604708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.056218581272306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6665179805548807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2833012287035497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3716834463321415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3001605369513523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.97657921864011,
          -2.423245873936808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.547014332367282,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.971275848738105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605617453352368,
          -7,
          -7,
          -3.744840396785379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.650647441679319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5871494982543437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.152380087047603,
          -7,
          -7,
          -4.60339339779644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.98344585734134,
          -7,
          -3.00774777800074,
          -7,
          -7,
          -3.682370742516557,
          -7,
          -7,
          -2.1172712956557644,
          -7,
          -2.241795431295199,
          -4.325618272810029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.976808337338066,
          -7,
          -7,
          -7,
          -3.821382499747299,
          -7,
          -7,
          -7,
          -4.338536173355659,
          -4.74033900005824,
          -7,
          -7,
          -2.606381365110605,
          -7,
          -7,
          -7,
          -7,
          -2.5449534564447305,
          -7,
          -2.401400540781544,
          -3.1027766148834415,
          -1.9956351945975501,
          -3.6878855248487055,
          -7,
          -2.4671145890738178,
          -7,
          -2.2008504980910777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6242820958356683,
          -3.633371053038101,
          -7,
          -3.0711452904510828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.591064607026499,
          -2.606381365110605,
          -7,
          -7,
          -3.282848602834645,
          -2.8109042806687006,
          -2.7528164311882715,
          -3.2308744917032666,
          -2.123851640967086,
          -7,
          -2.8937617620579434,
          -3.7157527168228595,
          -3.6492374723496073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2922560713564764,
          -7,
          -4.3099706570410685,
          -7,
          -7,
          -4.278547833775853,
          -3.146902869928199,
          -7,
          -7,
          -7,
          -7,
          -2.595496221825574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.145941869576122,
          -7,
          -7,
          -7,
          -7,
          -2.0718820073061255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.652149605401653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275103949569196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.696383695123476,
          -7,
          -7,
          -7,
          -4.349083168779591,
          -3.7518177877368792,
          -7,
          -4.275472601069419,
          -4.269676357629865,
          -7,
          -7,
          -2.7944548500620274,
          -4.044422155711843,
          -7,
          -3.9824973691977124,
          -2.7887450123625794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2587091005698268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.270142914565645,
          -7,
          -3.093421685162235,
          -7,
          -3.371056991184941,
          -7,
          -7,
          -3.7946506733159673,
          -7,
          -4.267711326726692,
          -7,
          -7,
          -7,
          -7,
          -3.11806622171401,
          -3.221581886746912,
          -7,
          -7,
          -4.289945516176668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.029834524463506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6386015599717445,
          -7,
          -3.968996326648312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.265996370495079,
          -7,
          -4.270702122087818,
          -7,
          -7,
          -7,
          -3.675778341674085,
          -3.0373077988643398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.675663797434491,
          -7,
          -7,
          -7,
          -7,
          -3.977220446635385,
          -7,
          -7,
          -7,
          -7,
          -3.8717626060934567,
          -7,
          -4.2702827839652135,
          -7,
          -7,
          -3.9836713828601966,
          -7,
          -4.333970933444835,
          -2.9693029325193425,
          -7,
          -7,
          -7,
          -2.8274829540948496,
          -7,
          -7,
          -4.2876897839360755,
          -7,
          -7,
          -4.268858674994137,
          -7,
          -7,
          -7,
          -3.4840782847471243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.319439203046049,
          -7,
          -3.977700747083,
          -7,
          -4.38868721020124,
          -7,
          -7,
          -7,
          -3.7160659777452225,
          -3.9834909718151668,
          -7,
          -7,
          -7,
          -3.4000052274986206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.282055370683707,
          -4.275080898456858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5681044059002835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.822778104826663,
          -7,
          -2.8996666397554955,
          -7,
          -7,
          -2.385350881364017,
          -7,
          -3.1288375888610482,
          -4.2746657690813885,
          -3.7992486255497773,
          -3.8019750750279386,
          -4.28602960050819,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6103407114521566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.271632537487123,
          -7,
          -7,
          -7,
          -3.0513669359209556,
          -4.2709581850920975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.674975896844148,
          -7,
          -3.00987563371216,
          -2.902434777692052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.68902830712297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.268226837664629,
          -7,
          -7,
          -7,
          -7,
          -3.537525269964369,
          -3.5976293787457663,
          -7,
          -7,
          -7,
          -3.401874214845746,
          -3.974396541077658,
          -2.932060168758189,
          -7,
          -2.11808822309481,
          -7,
          -7,
          -4.267101296559969,
          -4.35005409357903,
          -7,
          -7,
          -3.8173008783933216,
          -7,
          -7,
          -7,
          -7,
          -4.269162565431745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.266936911159173,
          -7,
          -7,
          -3.3663399300342265,
          -7,
          -7,
          -7,
          -2.9417783440288416,
          -7,
          -7,
          -3.9021842630309194,
          -7,
          -7,
          -7,
          -7,
          -2.607901598556746,
          -3.1280529137413957,
          -7,
          -7,
          -4.283617786365643,
          -7,
          -2.604779561858258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5315906696251984,
          -4.316704039700037,
          -2.7338848026885336,
          -7,
          -7,
          -3.0541483460871173,
          -4.285422274188247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277035888172111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.659345635746177,
          -7,
          -7,
          -2.3982038036681437,
          -3.0564826596487484,
          -3.118229285533303,
          -3.9740970037941312,
          -2.738519532242188,
          -2.7265985355333875,
          -2.6320634252958612,
          -3.4595935034915413,
          -2.3967017120816574,
          -7,
          -2.482075842814299,
          -2.997799697426971,
          -2.7011223473421095,
          -2.685256430754045,
          -2.3697967307610486,
          -3.7255616300072774,
          -2.851166586670228,
          -2.521193450160244,
          -2.381317407516167,
          -3.292196979651928,
          -3.8172181918591903,
          -3.381608385295533,
          -3.5061666650469663,
          -2.549952733015442,
          -2.399164523999909,
          -3.60908725848653,
          -2.9543289276033557,
          -3.1892563062138293,
          -7,
          -2.4404456585152707,
          -2.7154794810755183,
          -2.6521457355293707,
          -3.3736597194838454,
          -2.742568034366142,
          -2.615646953908509,
          -3.3460104901909786,
          -3.9925829705113984,
          -3.4040100848543777,
          -2.212197891476426,
          -3.659266331383175,
          -7,
          -3.4220110828701387,
          -2.6134212196672615,
          -2.9755788462970836,
          -7,
          -3.5666142382391173,
          -7,
          -3.0259118157686538,
          -3.686743489231213,
          -4.298176009766551,
          -3.2212258143152708,
          -3.057869784474744,
          -4.367281357632943,
          -7,
          -3.8955698643861068,
          -7,
          -7,
          -7,
          -3.2245848537315305,
          -7,
          -3.323091602776659,
          -3.0541340708512235,
          -2.9757572159420054,
          -3.114858477397568,
          -7,
          -4.304447440866175,
          -7,
          -2.992752284666042,
          -7,
          -4.070074826267528,
          -3.8703648833569106,
          -2.5613369970995135,
          -7,
          -3.8802799204198477,
          -3.7535677395933793,
          -4.268905441212015,
          -4.295962732394023,
          -4.054593905348044,
          -4.336619812907439,
          -3.282342167993069,
          -7,
          -7,
          -3.1232129397311224,
          -2.6066599758861706,
          -7,
          -2.4702006168679937,
          -7,
          -4.003331258561327,
          -3.568846817602785,
          -2.7052220557053834,
          -7,
          -4.268694953562178,
          -7,
          -4.275426536741639,
          -2.6186726361479105,
          -1.4452522466870956,
          -7,
          -2.925424205107909,
          -2.4855585296880656,
          -1.9687411114278788,
          -2.3538271299621987,
          -2.3141391643241276,
          -3.9704166181377833,
          -7,
          -2.3360087436712353,
          -3.231098715530343,
          -2.1478649397608756,
          -2.8845234909272777,
          -2.537131920116768,
          -2.983089073130224,
          -1.974975719445768,
          -2.4147095262667024,
          -1.4909429692613971,
          -2.854216046570607,
          -2.70819113900254,
          -1.9991055550292,
          -3.6806074289917876,
          -2.438361496362737,
          -7,
          -3.572081257156328,
          -7,
          -2.1153375006452233,
          -3.671242287239694,
          -4.267265619762563,
          -2.2373835216281015,
          -1.488432885906485,
          -1.700399862860919,
          -3.2663728312246034,
          -2.504343409967634,
          -7,
          -2.876617477687183,
          -4.270515799574357,
          -4.2659492899506235,
          -7,
          -2.786542656827931,
          -3.7937903846908188,
          -3.234678307978809,
          -2.853855152597072,
          -7,
          -2.095112473102566,
          -2.505678722692645,
          -2.165226863891662,
          -7,
          -2.9813881752136666,
          -3.2274893735743424,
          -2.923649417232252,
          -2.38067441862354,
          -3.6705241577820797,
          -4.268437552261454,
          -3.968319473630739,
          -2.6677310666469034,
          -1.7848573609472842,
          -3.2390718614686933,
          -3.5004423178574897,
          -1.9523273973758806,
          -3.973497308732063,
          -2.0102170388877076,
          -3.7984434603501875,
          -2.3591395481388244,
          -3.096307373399723,
          -2.6116771383924675,
          -2.8681217430022246,
          -7,
          -2.315576784503928,
          -2.97806633408362,
          -7,
          -3.370443693159354,
          -2.2026508811976,
          -4.265996370495079,
          -4.267805101513972,
          -2.469075467784182,
          -4.279758172802473,
          -7,
          -3.0086371944363277,
          -4.283414311501195,
          -7,
          -4.282848602834645,
          -2.0665974676878682,
          -1.9808382361688874,
          -2.8372835937633987,
          -2.7053811871798974,
          -7,
          -7,
          -7,
          -2.2512466447310087,
          -2.9674309630208207,
          -1.7347303731220607,
          -1.7964635019802966,
          -2.241245755270606,
          -2.008065595596292,
          -2.1551005453858165,
          -2.335093023976551,
          -7,
          -3.2392312063546864,
          -7,
          -4.266748965908202,
          -4.273949892550008,
          -3.983265352566545,
          -2.407701729076816,
          -7,
          -3.66661156841903,
          -7,
          -1.7719755284385301,
          -7,
          -3.576203091230177,
          -3.79136310912706,
          -3.9683895418470683,
          -3.6736888931512324,
          -3.6677563860178615,
          -2.7656918332132796,
          -2.1476763242410986,
          -3.007299600653417,
          -4.278227557594742,
          -7,
          -2.44606178890428,
          -4.2659492899506235,
          -3.964825117883389,
          -7,
          -3.9709509343454243,
          -3.066302625676853,
          -4.272305844402086,
          -2.0925741306838965,
          -2.5304030005576528,
          -3.28315726254433,
          -3.570215928477933,
          -7,
          -1.8905536646547345,
          -3.568084331315394,
          -7,
          -2.181512876873766,
          -7,
          -7,
          -2.95177891987254,
          -2.5229407829180266,
          -3.2829165267951463,
          -4.265831566255261,
          -3.9648722086377752,
          -3.494687854800482,
          -3.9648722086377752,
          -2.460998014474649,
          -4.266137581513037,
          -4.272213036520142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.07683152032504,
          -7,
          -7,
          -7,
          -7,
          -3.8107028609471167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.962885687041937,
          -7,
          -7,
          -7,
          -3.93568076981809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.583878598498626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2534591643398376,
          -3.858416877723488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3154640523400225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.532945375615925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.166873950858819,
          -7,
          -7,
          -7,
          -3.908255172627239,
          -7,
          -7,
          -3.514282047860378,
          -7,
          -7,
          -2.910446524697526,
          -7,
          -7,
          -7,
          -1.893946607552074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1571544399062814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.422941409919984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.12441105858231,
          -7,
          -7,
          -3.4858367262946746,
          -7,
          -3.1354506993455136,
          -7,
          -2.965201701025912,
          -7,
          -3.5043349118024643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0273496077747564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4089180208467798,
          -7,
          -7,
          -7,
          -3.619823500457278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7320719409998664,
          -3.5223077273031205,
          -7,
          -7,
          -7,
          -3.44544851426605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.294833494244287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505963518018126,
          -7,
          -3.659821158055705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0001860863337346,
          -7,
          -3.062854183849674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.32798182779077,
          -7,
          -7,
          -3.893595333819883,
          -7,
          -7,
          -7,
          -7,
          -3.534914104429867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4716634728471267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9592720003147788,
          -7,
          -7,
          -4.269559640038821,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1768393978830747,
          -3.462330602146786,
          -4.315718507536319,
          -7,
          -3.984377272063356,
          -3.622731965164719,
          -2.2570012883774924,
          -4.132243675427468,
          -2.7801546506773587,
          -7,
          -2.1548238775544104,
          -2.7844746437625165,
          -3.8309001419489586,
          -3.5155957002684515,
          -2.4262183798325783,
          -3.119441480806942,
          -3.7254869263323838,
          -2.360899198300868,
          -3.234155582415821,
          -3.6762565555673197,
          -4.005952286887383,
          -3.932565078682726,
          -3.6787459370657043,
          -2.745233748499208,
          -2.3625138895930924,
          -7,
          -4.1694098981407,
          -3.7033773685123497,
          -7,
          -2.901540875900876,
          -2.65959158058081,
          -4.303530832062248,
          -7,
          -2.954826255726187,
          -2.618100418196633,
          -7,
          -7,
          -4.087497472404264,
          -2.364386402582388,
          -7,
          -7,
          -7,
          -4.0461243144366135,
          -3.5770319856260313,
          -7,
          -3.5241688532784616,
          -7,
          -4.267676155960548,
          -7,
          -3.573103783163991,
          -3.539640565669428,
          -3.35646293810248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.717504074764202,
          -4.241919853150198,
          -7,
          -7,
          -7,
          -3.365817681057219,
          -4.333493335771041,
          -7,
          -7,
          -7,
          -3.9343974407809883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388172275047789,
          -4.322694690306876,
          -7,
          -7,
          -7,
          -4.216772698429039,
          -7,
          -7,
          -4.326243665994105,
          -3.6334684555795866,
          -7,
          -3.8090207204836726,
          -7,
          -7,
          -7,
          -3.2475173509272977,
          -7,
          -7,
          -7,
          -2.958085848521085,
          -2.912753303671323,
          -1.6106448470319037,
          -7,
          -2.611988688083979,
          -2.074217826516075,
          -2.1558256040617167,
          -2.6935437564115863,
          -1.9073837961475004,
          -7,
          -7,
          -2.5870692294283315,
          -2.335625033453388,
          -2.4791844152834357,
          -3.4891143693789193,
          -2.2860071220794747,
          -2.088619264513679,
          -2.3502480183341627,
          -1.922984815708883,
          -1.7617608341954742,
          -0.9478593213085527,
          -1.8864907251724818,
          -2.4533183400470375,
          -1.8601187950839286,
          -1.8325089127062362,
          -3.141763230275788,
          -3.406028944963615,
          -7,
          -2.2116939195924656,
          -1.9819359999222645,
          -2.596047007545439,
          -2.241552045299787,
          -2.459983818868003,
          -1.9727949511256364,
          -7,
          -1.8651341001586887,
          -7,
          -1.5923727239248306,
          -7,
          -2.5856486950954656,
          -7,
          -1.994887860393943,
          -2.801232153830292,
          -2.538133687250669,
          -2.8794542970180665,
          -7,
          -1.327907800587444,
          -2.50454637227152,
          -1.6858536557480714,
          -7,
          -2.307353389042854,
          -3.3919930722597127,
          -2.601380875502475,
          -1.5187677020832215,
          -2.3339508043872472,
          -3.0836817472743014,
          -7,
          -2.420405872366884,
          -1.963216831111873,
          -1.2802101517264077,
          -2.758609142659744,
          -1.900991941936252,
          -3.4299136977637543,
          -2.6588048952737338,
          -7,
          -1.5409052121143498,
          -3.1177682949263725,
          -1.942408140090593,
          -3.118140671487759,
          -7,
          -1.6913181275414544,
          -2.0110264042280437,
          -3.4051755462179893,
          -3.424881636631067,
          -1.669084326621116,
          -7,
          -7,
          -2.6379183801298756,
          -3.163608563431052,
          -7,
          -2.9640827641867062,
          -2.788168371141168,
          -3.6857417386022635,
          -3.4847268042986617,
          -2.1684385521867724,
          -1.3818214270144333,
          -2.035601249204445,
          -1.8898379053780638,
          -7,
          -7,
          -2.2512466447310087,
          -7,
          -2.788875115775417,
          -1.3521825181113625,
          -2.5403872356778745,
          -2.168984001964064,
          -1.888605637932962,
          -2.782124393777497,
          -2.050452611769055,
          -7,
          -2.0344650511984494,
          -7,
          -2.671543085262574,
          -7,
          -7,
          -2.058231752710575,
          -7,
          -7,
          -7,
          -2.0365311289980585,
          -7,
          -2.317581231880614,
          -3.3861421089308186,
          -2.9150478947700735,
          -2.738780558484369,
          -7,
          -2.064117499611749,
          -1.7929670410709038,
          -1.750096084914117,
          -7,
          -7,
          -1.8747642083309373,
          -7,
          -7,
          -7,
          -3.411788004543869,
          -3.103803720955957,
          -7,
          -2.6820805787897077,
          -0.657428998176507,
          -2.175388801188173,
          -3.0907869279492677,
          -3.3647385550553985,
          -2.8603380065709936,
          -3.074450718954591,
          -7,
          -2.8609572478573275,
          -2.667639706056411,
          -7,
          -2.953880446490549,
          -0.6127838567197355,
          -3.1863912156954934,
          -7,
          -7,
          -7,
          -7,
          -0.6817376109771551,
          -2.88930170250631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357944370897822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -3.9017306917292185,
          -7,
          -7,
          -7,
          -4.032682064470379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.159266331093494,
          -3.705350462885712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4271207975795845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.217944315480356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8506462351830666,
          -7,
          -7,
          -7,
          -7,
          -4.060999853218289,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.259546099087022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.962889987391791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.728410601881194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.225567713439471,
          -7,
          -3.8567288903828825,
          -7,
          -7,
          -3.670626158173298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3059958827708047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.848444690301653,
          -7,
          -7,
          -7,
          -2.8095597146352675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.497316744472857,
          -7,
          -7,
          -7,
          -3.3135508713335047,
          -7,
          -7,
          -2.854002233126989,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.845098040014257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1245042248342823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7450747915820575,
          -7,
          -7,
          -7,
          -7,
          -4.79701464825772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.4330638317805935,
          -7,
          -7,
          -4.544836685408386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.371990911464915,
          -7,
          -7,
          -7,
          -4.747295255267241,
          -7,
          -7,
          -7,
          -2.708633321015398,
          -7,
          -7,
          -4.034146977106046,
          -7,
          -3.7300551523755,
          -7,
          -4.178861887156875,
          -4.501401630766742,
          -7,
          -4.27763213161403,
          -7,
          -4.350819592367575,
          -3.9943171526696366,
          -4.307249939305207,
          -7,
          -5.101441173447477,
          -3.5682604085454175,
          -4.483794054640928,
          -7,
          -7,
          -4.625034495895203,
          -4.449817679720294,
          -7,
          -4.226977761697296,
          -3.744423382307533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.348733103798286,
          -4.388509715314879,
          -7,
          -7,
          -7,
          -3.4578170395546044,
          -3.7331972651065697,
          -7,
          -7,
          -7,
          -4.2417829871489525,
          -3.7812525942484565,
          -3.203576774977973,
          -7,
          -4.139060078649301,
          -3.7011360660925265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8839168273879126,
          -7,
          -7,
          -3.6545615547417434,
          -4.377697741146842,
          -7,
          -7,
          -7,
          -7,
          -4.134070806148772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275978986467148,
          -7,
          -3.6444385894678386,
          -7,
          -4.156215882676762,
          -7,
          -7,
          -4.604755094644832,
          -3.8640836959342795,
          -7,
          -7,
          -7,
          -3.2753113545418118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.770557474850995,
          -2.3946312526633426,
          -2.2317243833285163,
          -2.149988456491476,
          -1.7906369619317033,
          -2.5244888507220873,
          -3.0854243788417226,
          -1.9109526078006482,
          -7,
          -2.4099331233312946,
          -2.8235466779955427,
          -2.0709609158009337,
          -3.1960635448521066,
          -1.6320232147054057,
          -1.8016323462331667,
          -2.815799044880344,
          -1.9708916872960696,
          -2.363074486652865,
          -2.3479801568783407,
          -7,
          -2.3642382157351927,
          -2.3950350180286306,
          -2.957607287060095,
          -2.070243158259842,
          -2.3194530784907674,
          -1.74707871738161,
          -7,
          -2.6817579471116177,
          -7,
          -7,
          -3.237868864186639,
          -2.8266528123767847,
          -2.9550565426273643,
          -2.3283796034387376,
          -2.757965097861435,
          -2.0187004986662433,
          -2.8283376000590046,
          -2.5705429398818973,
          -7,
          -2.150756439860309,
          -2.263297832993205,
          -7,
          -2.194514341882467,
          -3.2932520331478248,
          -7,
          -2.520439860913926,
          -7,
          -1.8685268867682039,
          -2.24551266781415,
          -2.2648178230095364,
          -1.5314789170422551,
          -2.7255032688593155,
          -3.486228010560835,
          -7,
          -1.8404197777364861,
          -2.0280287236002437,
          -3.2657609167176105,
          -2.599814867207917,
          -2.4366925976640545,
          -2.385010124593375,
          -2.549191962650917,
          -2.131137273778607,
          -2.878641007432556,
          -1.9198249446356317,
          -2.3919930722597127,
          -2.682145076373832,
          -2.497620649781288,
          -3.6216435721945732,
          -7,
          -3.0091108061322127,
          -2.1094660499520925,
          -1.8920946026904806,
          -1.8573324964312685,
          -2.059437187851868,
          -7,
          -7,
          -2.481552869518737,
          -2.586024382386976,
          -2.840106094456758,
          -2.814663706218772,
          -2.970346876230093,
          -2.9545640899663494,
          -2.353627758985543,
          -2.3802934866662886,
          -2.4543683986530924,
          -2.6327103038329542,
          -2.9011857801371503,
          -7,
          -2.2922560713564764,
          -2.9674309630208207,
          -2.788875115775417,
          -7,
          -1.997337835464067,
          -2.949983652777832,
          -1.9569912178674758,
          -2.65359838184329,
          -3.239572462938868,
          -2.6782147827453997,
          -1.852784868680548,
          -2.6175245348862926,
          -2.444044795918076,
          -7,
          -2.010299956639812,
          -2.384263785722803,
          -2.755722444903458,
          -2.346352974450639,
          -2.171726453653231,
          -7,
          -2.5143314936216132,
          -2.399673721481038,
          -2.7641761323903307,
          -2.156851901070011,
          -1.9044450410769096,
          -2.7810369386211318,
          -2.2380461031287955,
          -2.0433622780211294,
          -2.5563025007672873,
          -2.720159303405957,
          -2.546542663478131,
          -7,
          -2.1487054585660488,
          -7,
          -7,
          -7,
          -7,
          -2.296665190261531,
          -7,
          -2.885078384149224,
          -2.661136319597869,
          -7,
          -2.205475036740891,
          -2.2355284469075487,
          -2.742332282357148,
          -2.060697840353612,
          -7,
          -3.3233896221747057,
          -7,
          -7,
          -2.4626974081017172,
          -2.6088315520434717,
          -2.9684829485539352,
          -7,
          -7,
          -7,
          -7,
          -2.5948834173187865,
          -2.2671717284030137,
          -2.6483600109809315,
          -2.2174839442139063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.718667735316211,
          -7,
          -7,
          -7,
          -7,
          -3.7652213663049805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.829303772831025,
          -7,
          -7,
          -7,
          -3.6557709903483695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.877475011224193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4689378056654614,
          -3.0390834800418545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2681097298084785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0323668937196664,
          -7,
          -7,
          -3.2242740142942576,
          -7,
          -7,
          -3.2380461031287955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8131471445804674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7309064484998022,
          -7,
          -7,
          -7,
          -4.049458369168608,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9485759586429285,
          -7,
          -3.2214142378423385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0470800728162564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6062738531699883,
          -7,
          -7,
          -7,
          -7,
          -4.126942717944228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4613879368708793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2013971243204513,
          -7,
          -3.0933716483533886,
          -7,
          -7,
          -3.0304827790555695,
          -7,
          -2.717046067981814,
          -7,
          -2.548184610545108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.559068334034537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2835273648616936,
          -7,
          -7,
          -7,
          -2.94423584379348,
          -3.276921132065774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0743592403903977,
          -4.074828626065748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0942381380341772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5939502952639875,
          -3.1808424146466825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.546679729750976,
          -7,
          -3.4381070451548847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.619823500457278,
          -7,
          -7,
          -7,
          -3.543385044809843,
          -7,
          -7,
          -3.856366323659248,
          -7,
          -7,
          -7,
          -7,
          -3.4446692309385245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.163113373376317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.35624581850903,
          -7,
          -3.4211101297934343,
          -4.261988070187269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.586137025230793,
          -7,
          -7,
          -3.4869564550939383,
          -4.2816544264128105,
          -3.3986126439612017,
          -3.316808752053022,
          -2.4899893680793217,
          -3.249198357391113,
          -1.811809860462303,
          -4.121822376752185,
          -2.77514438901695,
          -7,
          -2.2637794829316564,
          -3.415296164886454,
          -2.5780052441433385,
          -2.5501006203716683,
          -2.794305433965554,
          -3.708548365130561,
          -3.05148807933632,
          -2.9932016415641796,
          -2.4848382845757517,
          -3.7208412305035896,
          -7,
          -4.152274751228799,
          -3.347232410084063,
          -3.016434379577117,
          -2.1540797992204612,
          -7,
          -2.883232955012356,
          -3.0737183503461227,
          -7,
          -3.062882690130364,
          -2.5491475698795507,
          -2.4875802256342365,
          -4.272282644290865,
          -3.4394905903896835,
          -3.1868433703244703,
          -7,
          -7,
          -4.376996450740673,
          -2.2021598921798446,
          -4.026083620800987,
          -7,
          -4.58840617721658,
          -3.2200275811379977,
          -3.2371036915866878,
          -7,
          -3.2595256204210687,
          -7,
          -3.3054469132775894,
          -3.877601679729272,
          -7,
          -7,
          -3.8828943560930194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.90444504107691,
          -4.032247065637881,
          -4.699638303379863,
          -7,
          -7,
          -7,
          -3.848650886818957,
          -7,
          -7,
          -3.1371958119405483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.722249906671828,
          -3.1406127806443553,
          -7,
          -3.7754335947062185,
          -3.3249565862275174,
          -7,
          -4.647998761995242,
          -7,
          -7,
          -7,
          -4.069889996506938,
          -7,
          -7,
          -7,
          -7,
          -2.5773933091957093,
          -0.9982889935990089,
          -7,
          -2.1615343667196383,
          -1.6203171430538974,
          -1.3877066784034473,
          -2.2910882984509326,
          -1.1700329989066187,
          -7,
          -7,
          -2.179973641107927,
          -2.113943352306837,
          -2.6968426818935267,
          -2.481979789339991,
          -1.7193707521554475,
          -2.3321858896951086,
          -1.993813987391742,
          -1.8822398480188236,
          -1.3006887927013713,
          -1.7856769928884877,
          -1.5401208298279834,
          -1.8564416356431923,
          -2.4245186658770486,
          -1.7133855268966218,
          -7,
          -2.8016323462331667,
          -7,
          -1.7493334197103008,
          -2.453099827095558,
          -2.6354837468149124,
          -2.3159845211780983,
          -2.1511119339812774,
          -1.7280396161849396,
          -2.9324737646771535,
          -2.015173402914656,
          -7,
          -2.304736656701528,
          -7,
          -7,
          -7,
          -1.8364550785107507,
          -3.2773799746672547,
          -2.118719290030396,
          -2.299418511507402,
          -7,
          -1.5205012362844792,
          -1.9816807577862645,
          -1.3311130078939017,
          -7,
          -2.1001890976606084,
          -2.657294935980072,
          -2.3263358609287517,
          -2.3316373543153595,
          -2.446270810437326,
          -3.2513948500401044,
          -3.2612628687924934,
          -2.3498263322325768,
          -1.4979598920976362,
          -2.016083230668029,
          -2.8709888137605755,
          -1.722148948187599,
          -3.311329952303793,
          -2.455135188974629,
          -3.321184027302314,
          -1.5430327769186705,
          -2.114833300327073,
          -1.4162900578684652,
          -2.7140649191138504,
          -7,
          -2.2024617351968274,
          -2.275119316297735,
          -2.9770373352246815,
          -3.003245054813147,
          -1.3035339897779414,
          -7,
          -7,
          -2.302074262932074,
          -7,
          -7,
          -3.1289159784538367,
          -3.386498965550653,
          -3.32273600446995,
          -2.6020599913279625,
          -1.7174591546280427,
          -1.5157224952236852,
          -2.273613961300418,
          -2.0860749539955252,
          -7,
          -7,
          -1.7347303731220607,
          -1.3521825181113625,
          -1.997337835464067,
          -7,
          -2.285756398807677,
          -1.5858692465943118,
          -1.937753825464357,
          -2.571602970874123,
          -2.1550322287909704,
          -7,
          -2.216731267280442,
          -7,
          -2.931966114728173,
          -7,
          -3.39375064034808,
          -1.5512816993922365,
          -7,
          -7,
          -7,
          -1.8374227413143636,
          -7,
          -2.538238500689552,
          -2.346352974450639,
          -2.960470777534299,
          -2.719952447254438,
          -2.96543689977626,
          -1.6267601784100552,
          -1.4923939537516864,
          -2.251516552291679,
          -7,
          -7,
          -1.3786174987050486,
          -7,
          -7,
          -7,
          -2.8093352150273203,
          -2.32060781057734,
          -7,
          -2.4410521067600404,
          -1.849183088775068,
          -2.8606374167737547,
          -2.480486032340433,
          -7,
          -1.8170241925652633,
          -2.9372670722114127,
          -3.2247919564926817,
          -2.765562123075623,
          -7,
          -7,
          -2.103059683628344,
          -1.7931121687186715,
          -3.0843975191411492,
          -7,
          -7,
          -2.995854479874566,
          -7,
          -1.8342793777831479,
          -7,
          -7,
          -7,
          -7,
          -4.008834287045376,
          -7,
          -4.309268104477122,
          -7,
          -7,
          -4.30941722577814,
          -7,
          -7,
          -2.2266800247178287,
          -7,
          -7,
          -7,
          -7,
          -3.18527648256255,
          -4.010342366139568,
          -7,
          -7,
          -7,
          -7,
          -2.7002864012059606,
          -3.904913807999268,
          -7,
          -3.1488698939816735,
          -2.7338216935736406,
          -7,
          -7,
          -7,
          -7,
          -4.010956838955719,
          -7,
          -3.973328014143002,
          -7,
          -4.309885559660194,
          -7,
          -4.313297626086869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.009365898346244,
          -3.719289844693328,
          -7,
          -7,
          -4.31492005599242,
          -7,
          -7,
          -7,
          -4.009663316679379,
          -7,
          -7,
          -3.189069009399324,
          -2.788857891778036,
          -7,
          -3.834674974462744,
          -4.331326050575092,
          -7,
          -7,
          -7,
          -7,
          -3.8415680152280833,
          -7,
          -7,
          -7,
          -7,
          -3.167472060642541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.963386391534554,
          -4.0090470096602795,
          -3.358717226442781,
          -7,
          -7,
          -7,
          -7,
          -4.310544628636955,
          -7,
          -4.017221214537218,
          -7,
          -4.322653372213238,
          -4.313445370426414,
          -4.317122737714539,
          -7,
          -2.7247590605996757,
          -4.016071816734024,
          -4.310990527134579,
          -7,
          -7,
          -7,
          -4.310672074930124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.84314969134017,
          -7,
          -7,
          -4.312875222239046,
          -7,
          -3.320374802023668,
          -4.009514632972974,
          -7,
          -4.31714366202289,
          -7,
          -2.9820518369844335,
          -3.8347173384565254,
          -4.313487573864755,
          -7,
          -7,
          -4.025531148300212,
          -7,
          -4.3715296320992945,
          -3.099720473067752,
          -7,
          -4.316829691494307,
          -4.314393957221963,
          -3.1326671225668004,
          -7,
          -3.8487841956346793,
          -3.8520731603687888,
          -7,
          -7,
          -3.83499260373303,
          -3.711701804964474,
          -7,
          -7,
          -3.1667704294521917,
          -7,
          -7,
          -7,
          -3.8322959710584774,
          -4.3093746249166704,
          -3.2511165453321484,
          -4.05715240481542,
          -7,
          -3.84397984447816,
          -7,
          -4.421965688225113,
          -7,
          -7,
          -4.318084214003265,
          -2.8373971106488654,
          -3.5480821705205963,
          -7,
          -7,
          -7,
          -4.205637359479429,
          -7,
          -7,
          -7,
          -4.315760490665735,
          -7,
          -7,
          -4.324158941674477,
          -7,
          -7,
          -7,
          -4.318835191727664,
          -4.312558149521521,
          -7,
          -2.216977478288399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1638170938993255,
          -7,
          -3.2613739070666825,
          -7,
          -7,
          -2.2868412551961677,
          -4.311117842662505,
          -3.2764618041732443,
          -4.0163855906671175,
          -3.473737151713407,
          -3.6224212739756703,
          -7,
          -7,
          -7,
          -4.315823457751156,
          -7,
          -7,
          -4.334413536837101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5473644129795048,
          -7,
          -3.0432174545734725,
          -4.010024193899956,
          -4.010066630335587,
          -4.008429826797229,
          -4.3100982718562,
          -3.7125234348776948,
          -7,
          -7,
          -7,
          -2.6551188256238,
          -3.410713982002206,
          -7,
          -4.30977916448048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.018658897585517,
          -4.322818621007395,
          -3.416011443521709,
          -3.4219947885604296,
          -7,
          -4.310289623796099,
          -7,
          -3.8422138683580256,
          -7,
          -7,
          -4.3144571227346775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1392609992026075,
          -7,
          -7,
          -7,
          -7,
          -3.5329878079053483,
          -3.4082399653118496,
          -7,
          -7,
          -4.0269416279590295,
          -7,
          -3.877774349991398,
          -3.8603380065709936,
          -7,
          -7,
          -7,
          -3.7430980089414754,
          -3.2763782377920156,
          -2.212415419531334,
          -7,
          -3.132647219307249,
          -7,
          -7,
          -4.310608356458523,
          -3.0431299728634627,
          -7,
          -3.6268123931797867,
          -3.733297598821213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.316410710725809,
          -7,
          -7,
          -7,
          -7,
          -3.6113196194600805,
          -7,
          -3.709036634671606,
          -3.2799709653992704,
          -3.5445227813677804,
          -4.015296870381437,
          -3.710477011779341,
          -2.8733780187455484,
          -7,
          -7,
          -3.333799806709918,
          -7,
          -7,
          -4.01556930642988,
          -4.010278750336827,
          -2.8542047958554297,
          -3.5392015992941275,
          -7,
          -7,
          -4.325577231940418,
          -4.313213178178013,
          -2.468104066031306,
          -3.849746905174019,
          -7,
          -7,
          -7,
          -4.029343187519107,
          -4.019095510309654,
          -7,
          -7,
          -4.315760490665735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8627870982353443,
          -4.054651350441742,
          -2.7501210305035375,
          -7,
          -4.028449242723508,
          -3.7424423158873648,
          -4.327215849106363,
          -7,
          -4.317624643080059,
          -7,
          -4.023602224258929,
          -4.3600250891893975,
          -4.327134064918578,
          -4.008983203815472,
          -7,
          -7,
          -3.3650301536825658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.808249566586551,
          -7,
          -7,
          -1.7515604805317466,
          -2.214341623289299,
          -3.4742162640762553,
          -3.086799347067046,
          -3.028034892512139,
          -2.286405251825869,
          -2.700738320904402,
          -3.540935581295993,
          -0.8208455107670904,
          -4.008940661377087,
          -1.569934431839561,
          -2.8110324767782995,
          -2.650041256312705,
          -2.747854787410412,
          -1.5244718860824604,
          -4.1157990532759525,
          -2.8424922264125208,
          -1.5817755344763664,
          -3.6331509149824406,
          -2.668106237932731,
          -3.848312303627284,
          -3.206354301944434,
          -2.7236608666914495,
          -1.795590161015244,
          -3.143082717133099,
          -3.8385594645298533,
          -3.0161624858249008,
          -2.491668890310033,
          -7,
          -1.5197512654844683,
          -2.0796244220539357,
          -2.866945032758351,
          -3.028455053499362,
          -2.531615310222658,
          -2.418582994066992,
          -3.211457181167326,
          -3.241809257706174,
          -2.2346412260026556,
          -2.9960736544852753,
          -2.6593813179855252,
          -7,
          -3.2149421962885567,
          -2.2201189888691593,
          -2.7540423867854362,
          -3.4746740514121064,
          -3.174917769318039,
          -4.325577231940418,
          -2.934143232399106,
          -3.3397991351974112,
          -3.7366354976868212,
          -2.670000141903834,
          -2.8674931076851453,
          -3.703067723380233,
          -7,
          -3.406931720475127,
          -7,
          -7,
          -4.066176785772006,
          -3.102788856634514,
          -3.0074956138870546,
          -7,
          -2.400113741375228,
          -2.5103335129592623,
          -3.5647792408154557,
          -7,
          -7,
          -7,
          -2.6471972978840603,
          -7,
          -3.7769028718580566,
          -1.7276008070360236,
          -3.545348358048107,
          -4.3117750456357395,
          -3.1884890478416423,
          -3.782443956917726,
          -3.8139033097892776,
          -3.491461750160462,
          -2.858820171667875,
          -4.072892956720603,
          -1.4622099218397608,
          -7,
          -7,
          -2.301559831150869,
          -2.197373495100488,
          -7,
          -2.7498466966808266,
          -4.330616667294438,
          -3.0427132993461132,
          -3.0819590663004783,
          -3.529330524750806,
          -4.314183339137378,
          -7,
          -7,
          -3.715961582542224,
          -2.5070376829046563,
          -1.4357087770442,
          -4.313086475517802,
          -2.4574727253433495,
          -2.66149717917983,
          -1.9477603819114044,
          -0.9875831142025345,
          -2.2407348574378876,
          -4.0135113334659,
          -7,
          -1.461425610653809,
          -2.809454494893529,
          -1.3795811117693013,
          -3.0237050426220375,
          -2.4213956421399727,
          -3.141390975041025,
          -1.9939870162174769,
          -2.3815963601406294,
          -2.115523938469208,
          -3.2139874522473995,
          -3.064541179435372,
          -2.1239275732134377,
          -3.2830338249835074,
          -2.570092108028933,
          -3.204662511748219,
          -3.41096693224878,
          -7,
          -1.352208814286594,
          -3.7141620460988536,
          -4.3107570183526045,
          -2.357687858215853,
          -1.127118845348021,
          -1.4532159285446646,
          -3.6111920608684343,
          -2.375780317960666,
          -3.413634997198556,
          -2.8555393455509726,
          -3.8364929048584697,
          -7,
          -4.311859773623503,
          -2.415376352092442,
          -4.314141203260571,
          -2.4968877338250617,
          -2.825372016929148,
          -7,
          -2.0059045301136,
          -3.0197392326747052,
          -2.168612933906424,
          -4.309545003295436,
          -2.7326411505912094,
          -3.5342800052050816,
          -2.103845169179113,
          -1.6831881398524553,
          -3.3153194652587508,
          -3.6126779183165016,
          -3.835479184541597,
          -2.845900196115185,
          -1.0152733372451836,
          -3.720944459446079,
          -3.241587982291062,
          -1.8152068688114962,
          -4.016301939781916,
          -1.3061208875878187,
          -3.363779064430861,
          -2.4391785930633114,
          -3.1693174825463464,
          -2.9758285293789934,
          -2.792102266462476,
          -7,
          -1.6168278651528245,
          -2.7525675042716915,
          -3.712060142461075,
          -3.111976227019206,
          -2.4301308196119487,
          -7,
          -3.7090578513345434,
          -1.629650292979936,
          -2.8896336526352338,
          -3.71821095473187,
          -2.242503468661323,
          -3.3708213841255614,
          -3.245930058025906,
          -3.1201418894771438,
          -1.2625944386738668,
          -1.8822712898280836,
          -2.408539237965408,
          -2.484700757429173,
          -7,
          -4.3099706570410685,
          -1.7964635019802966,
          -2.5403872356778745,
          -2.949983652777832,
          -2.285756398807677,
          -7,
          -2.3947773609928875,
          -0.9630223341964602,
          -1.2636660648733542,
          -2.0044578585360924,
          -3.8347808766998273,
          -3.20883396239637,
          -4.311711488795424,
          -4.310289623796099,
          -3.5384480517102173,
          -2.8779674948747114,
          -2.6801654796837506,
          -4.310523383951521,
          -3.613016830283682,
          -4.309459822461211,
          -1.3037341520877823,
          -4.010066630335587,
          -3.3177082376103013,
          -4.31194448508462,
          -2.913792666770312,
          -3.318188594151796,
          -3.4098063651997617,
          -3.035787728177052,
          -1.7417097086716051,
          -2.8705599579152383,
          -3.6215501543254702,
          -7,
          -2.6141317934028017,
          -3.832359864516441,
          -7,
          -7,
          -3.1103160859286136,
          -3.359666873395946,
          -3.8381141548980646,
          -2.253560841073256,
          -2.7349300109996633,
          -3.1585886282533937,
          -2.8966321920836497,
          -4.309459822461211,
          -2.6246517495776027,
          -3.8335295817586434,
          -4.309566295893774,
          -1.3103144813116823,
          -7,
          -7,
          -2.2862865009774356,
          -2.6987055706851475,
          -3.2835068118940884,
          -4.309459822461211,
          -7,
          -4.316012304249464,
          -4.309566295893774,
          -2.5745456823355712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3060145500599503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.951677437343301,
          -7,
          -7,
          -2.6782907017180433,
          -3.929072487398351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.96827275520536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.845098040014257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.081527326244805,
          -3.1789769472931693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6232492903979003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1222158782728267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.193958978019187,
          -7,
          -3.2487087356009177,
          -7,
          -7,
          -7,
          -3.385133679818153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.617000341120899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.32990612340021,
          -3.829657498318051,
          -7,
          -3.1740598077250253,
          -7,
          -4.267218676620119,
          -7,
          -7,
          -3.0199466816788423,
          -7,
          -7,
          -2.803115554890027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.109443547064349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9794605133896948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9459607035775686,
          -7,
          -3.4344624462614135,
          -7,
          -7,
          -2.7238477374538714,
          -7,
          -3.1936810295412816,
          -7,
          -3.2043913319193,
          -2.7573960287930244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.519827993775719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1481911962420113,
          -4.675329155248394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6459950553715124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6190933306267428,
          -7,
          -7,
          -7,
          -7,
          -2.5888317255942073,
          -2.9206450014067875,
          -7,
          -3.46888415925913,
          -7,
          -7,
          -3.0784568180532927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.083263668252353,
          -7,
          -7,
          -7,
          -3.5756810811895403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0909630765957314,
          -2.30788484230973,
          -2.7058637122839193,
          -7,
          -7,
          -7,
          -7,
          -3.897183637209576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.355402027786844,
          -7,
          -3.323870606540509,
          -4.556712474209863,
          -7,
          -7,
          -7,
          -7,
          -3.27207378750001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.478041509755478,
          -7,
          -7,
          -3.513780854205835,
          -4.055752825315675,
          -4.290390809440229,
          -7,
          -3.966423345943693,
          -2.877515318847026,
          -2.8705502062680823,
          -4.113057156163552,
          -3.149250702303481,
          -7,
          -2.705417442867802,
          -4.585776465241712,
          -3.966198069990564,
          -3.767520156176435,
          -2.7959308586000873,
          -3.9982811398083022,
          -3.2584320234141178,
          -2.8210385989122053,
          -3.4328090050331683,
          -4.016458771976905,
          -7,
          -4.326585030766405,
          -3.2235997646496934,
          -3.750178674359477,
          -2.803900743413759,
          -7,
          -4.032810082226799,
          -7,
          -7,
          -3.1435886388415737,
          -2.7005306569785916,
          -4.114577627000166,
          -4.259832699063484,
          -3.60154396017653,
          -3.2529136823984546,
          -4.260619875172372,
          -7,
          -4.367244071135225,
          -3.1495783093880108,
          -7,
          -7,
          -4.281385662250469,
          -2.269867206668517,
          -2.900913067737669,
          -7,
          -7,
          -7,
          -7,
          -3.544873843234801,
          -3.1085650237328344,
          -4.103530063428375,
          -3.691435152144062,
          -3.476759191770886,
          -7,
          -3.7988577317474856,
          -7,
          -7,
          -7,
          -3.734506468448954,
          -3.200713733964013,
          -7,
          -2.584442453586196,
          -3.9427023688886678,
          -7,
          -7,
          -7,
          -7,
          -2.987104798161707,
          -7,
          -4.946825479950723,
          -3.2182728535714475,
          -7,
          -3.0979510709941502,
          -3.03893791903862,
          -3.742568034366142,
          -7,
          -7,
          -7,
          -7,
          -3.707485011967474,
          -7,
          -7,
          -3.1231242235002017,
          -2.72784322950962,
          -7,
          -4.642800745692909,
          -7,
          -7,
          -3.6940784620807596,
          -4.049876719873882,
          -7,
          -7,
          -7,
          -7,
          -3.2024883170600935,
          -1.6844576212664344,
          -7,
          -2.0393097340099327,
          -1.5929166118880926,
          -2.0086001717619175,
          -2.447606788068159,
          -1.5167257974365613,
          -7,
          -3.089551882886454,
          -2.696293967679412,
          -2.6827465923729044,
          -2.5902612875245725,
          -2.197280558125619,
          -1.6958935252473812,
          -2.563035883426256,
          -1.1685080872847577,
          -2.0858509911532663,
          -1.8627153701879953,
          -2.1609399149830604,
          -2.315970345456918,
          -0.9727835222753004,
          -2.6704777860472753,
          -2.0244424564676597,
          -3.204662511748219,
          -2.4367985102318035,
          -7,
          -2.0746336182969043,
          -2.8656960599160706,
          -3.080987046910887,
          -2.809488078431905,
          -1.6629808743505723,
          -2.4982170716858327,
          -2.2241999721012724,
          -2.1868487502832425,
          -7,
          -2.6652056284346006,
          -3.1283992687178066,
          -7,
          -2.317715203094899,
          -1.987144679314413,
          -3.1351326513767748,
          -2.42433706667645,
          -2.8442996228070254,
          -7,
          -1.9747641765839266,
          -1.8077431231767653,
          -1.7433529514095556,
          -7,
          -2.430903949947793,
          -2.330413773349191,
          -2.225093804429503,
          -3.236401595942225,
          -2.554186199069382,
          -2.396896449142524,
          -2.5085297189712867,
          -3.06595298031387,
          -1.7815119701445403,
          -2.55339751012388,
          -2.929929560084588,
          -2.0688960736491686,
          -2.879955585122749,
          -2.211309420168281,
          -1.5373797480637228,
          -2.2112985672830483,
          -1.5029349925544035,
          -2.7267272090265724,
          -3.0667451060838538,
          -7,
          -2.8289461816359327,
          -2.1976564079819663,
          -3.1367205671564067,
          -1.9882615967287558,
          -1.9194049982868073,
          -3.0610753236297916,
          -7,
          -2.052452336614949,
          -2.33520708088345,
          -3.2211533219547053,
          -2.614826936158897,
          -3.2801228963023075,
          -2.719094420611941,
          -3.274388795550379,
          -1.963717365029849,
          -1.9500294979909438,
          -2.650793039651931,
          -2.4063698354692677,
          -7,
          -7,
          -2.241245755270606,
          -2.168984001964064,
          -1.9569912178674758,
          -1.5858692465943118,
          -2.3947773609928875,
          -7,
          -2.0692451171051838,
          -2.783058584878388,
          -2.346092058563005,
          -3.101403350555331,
          -3.255995726722402,
          -2.795184589682424,
          -7,
          -3.17376882313665,
          -3.2893659515200318,
          -2.2777237887624535,
          -7,
          -2.196245290694014,
          -7,
          -2.021922038373002,
          -3.0874264570362855,
          -2.889581802149624,
          -3.1007150865730817,
          -7,
          -7,
          -2.81888541459401,
          -2.1931245983544616,
          -1.8332746392905634,
          -2.583198773968623,
          -7,
          -7,
          -2.215565467402707,
          -7,
          -7,
          -7,
          -7,
          -2.088941083336781,
          -7,
          -2.4218388711449164,
          -2.578951614596268,
          -3.1060775192489603,
          -2.810568529216413,
          -7,
          -1.6263974025687553,
          -2.7788744720027396,
          -7,
          -2.9370161074648142,
          -7,
          -7,
          -2.6058435390580894,
          -2.5393042545542115,
          -7,
          -7,
          -7,
          -2.381415942849977,
          -7,
          -2.6126875501483457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5394058622888096,
          -7,
          -7,
          -7,
          -7,
          -3.337026415142606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8235003121397035,
          -7,
          -7,
          -3.6840819838753727,
          -3.0553628323897706,
          -7,
          -7,
          -7,
          -7,
          -3.9550620696750323,
          -7,
          -4.175473156148423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.006180697638505,
          -7,
          -7,
          -3.6604860157849677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.706077387310076,
          -2.837588438235511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1116433067408074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.951677437343301,
          -7,
          -7,
          -3.959232249050996,
          -3.978864984347657,
          -7,
          -7,
          -7,
          -3.1730509206636928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9522595365908204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1960379407345236,
          -7,
          -7,
          -7,
          -7,
          -2.43961383958441,
          -7,
          -7,
          -7,
          -7,
          -3.9875322027298394,
          -7,
          -7,
          -3.4823222022067144,
          -7,
          -7,
          -7,
          -3.2566078014860538,
          -7,
          -3.5088886771335988,
          -7,
          -7,
          -7,
          -3.9554472105776957,
          -3.6581545470672103,
          -7,
          -7,
          -3.65076877671263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6811119638274077,
          -4.053808059920658,
          -7,
          -3.975615597966895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05161552300499,
          -3.5098742850047193,
          -7,
          -7,
          -7,
          -3.712060142461075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8952896369361607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.716128602823834,
          -7,
          -3.087180544900543,
          -7,
          -7,
          -2.743392160047862,
          -3.9529860651970554,
          -3.2697930438612297,
          -3.9673139182870836,
          -3.669828061332521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.51418538761473,
          -7,
          -3.3766681858105296,
          -7,
          -3.6519076720869994,
          -7,
          -3.9506568825045107,
          -3.9611362173872253,
          -7,
          -7,
          -7,
          -3.0305592452911556,
          -3.6586313746095143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.972387999107473,
          -7,
          -3.777209258145685,
          -3.485063432960738,
          -7,
          -7,
          -7,
          -3.272352240906794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3985582892632116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4449421391905433,
          -4.011062694729735,
          -7,
          -7,
          -7,
          -3.726197258403274,
          -7,
          -2.283850212395074,
          -7,
          -3.489504162507767,
          -7,
          -7,
          -7,
          -2.3808594680117827,
          -3.981501488148247,
          -7,
          -3.5293875730556277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.953227971559854,
          -3.7554174628109362,
          -3.678245151927042,
          -7,
          -3.9565045903166975,
          -2.9349146499694263,
          -7,
          -7,
          -3.5563326590591577,
          -7,
          -7,
          -7,
          -7,
          -3.3979834359489,
          -3.967547976218862,
          -7,
          -7,
          -3.985291718592888,
          -7,
          -2.7400994009248563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7701152947871015,
          -4.048752457699489,
          -3.335834053210056,
          -7,
          -7,
          -3.738106403558114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5801643896985524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.567222480175445,
          -7,
          -7,
          -2.507794956556955,
          -3.053664658749656,
          -3.833497722133357,
          -3.4910346824303082,
          -3.7722483399718536,
          -2.188051718153,
          -3.0948203803548,
          -3.925505469379759,
          -1.2523921106247071,
          -7,
          -1.8575159365530678,
          -3.073614968155805,
          -3.284930006263787,
          -3.426716040549097,
          -1.5337102405281544,
          -3.7429920657525093,
          -3.4789860278193347,
          -2.0011505154097025,
          -3.6671726724788685,
          -3.1871768858027356,
          -4.22318432089504,
          -3.7153121629007257,
          -3.5083680909523376,
          -2.3270097863841452,
          -3.081114231941639,
          -7,
          -3.6273231761856515,
          -2.9863237770507656,
          -7,
          -2.0128297618954236,
          -2.509805434070105,
          -3.628788204481048,
          -3.5106790310322102,
          -3.2610797766810538,
          -3.131764434995244,
          -3.9373674175172897,
          -3.998847592007072,
          -2.75812654954038,
          -3.1401543670165406,
          -3.136915602292458,
          -3.2942898271007177,
          -3.516242534833948,
          -2.1332790851606114,
          -3.3047981671445035,
          -3.671913012441587,
          -3.454779547656796,
          -7,
          -3.4633653465369476,
          -3.0223989105144513,
          -2.711132072306842,
          -2.4816778851648396,
          -3.1474444325481796,
          -3.837177937004182,
          -7,
          -3.6702767846279922,
          -7,
          -7,
          -7,
          -3.4263124127148887,
          -3.1349337530532146,
          -7,
          -2.080197932774685,
          -2.843345672544991,
          -4.083155177608267,
          -7,
          -7,
          -3.6564815157904986,
          -2.5561792042169356,
          -7,
          -4.983301459523824,
          -1.9988519464694439,
          -3.826269219393726,
          -3.4771695069814648,
          -2.354340301363435,
          -3.4290136052510922,
          -3.486461965440535,
          -3.3101833275716896,
          -3.5161385767170743,
          -7,
          -1.2179593624134388,
          -7,
          -7,
          -2.7590453913944355,
          -2.1039887903218193,
          -7,
          -3.3908173961711223,
          -3.996248914569132,
          -3.4233687700792785,
          -4.103666913746792,
          -3.2361936106265383,
          -3.6588219591356244,
          -7,
          -7,
          -2.8886474332825305,
          -2.9309490311675233,
          -1.4170531363008534,
          -3.6563378127675463,
          -2.367355921026019,
          -2.2705600108732593,
          -1.743582870756548,
          -1.1866026905786375,
          -1.9485306889830238,
          -3.4835397525513194,
          -7,
          -1.2172361865017254,
          -2.4696320151080635,
          -1.712142298806098,
          -2.62144723602022,
          -2.0460675901682115,
          -2.5078967407008865,
          -1.8002524377062963,
          -1.6727105265930131,
          -1.8554605345592676,
          -2.1530073751464793,
          -2.6103823923852376,
          -1.9222366116209038,
          -2.4757165762621733,
          -1.9912260756924949,
          -2.9701608430373136,
          -2.880098704083314,
          -7,
          -0.9777575677116924,
          -2.9224895437705523,
          -7,
          -2.124846323695534,
          -1.6226079582053459,
          -1.7763343948443986,
          -3.4738760792691425,
          -1.8035465276645812,
          -3.3639878297484915,
          -2.152069831431577,
          -3.9588504516796785,
          -7,
          -3.352327258816553,
          -2.209631556736247,
          -2.844763838780448,
          -2.333704967375953,
          -2.210523506005551,
          -7,
          -1.2402247952415473,
          -2.255736247252979,
          -1.771148039831543,
          -7,
          -2.299125788809188,
          -3.2571023326591644,
          -2.3336039908101927,
          -2.047157708190914,
          -2.618950946772595,
          -3.352230770373165,
          -3.6554265877459184,
          -2.916839816617871,
          -1.1830993299225638,
          -2.7230906419805767,
          -2.3925118319943293,
          -1.7605436424369434,
          -3.267781659715359,
          -1.8029383499157559,
          -2.712462626680574,
          -1.7022855541434265,
          -3.118359220102451,
          -2.5213716130326205,
          -2.8514876690527866,
          -7,
          -1.8502914589351291,
          -2.132890500150523,
          -3.357744325180376,
          -3.1870504506422686,
          -1.9421140948936504,
          -7,
          -3.9532763366673045,
          -1.9476437458204918,
          -2.8002128574963217,
          -3.9738664498353784,
          -2.073180915795838,
          -3.5075860397630105,
          -3.154423973114647,
          -2.726953486571369,
          -1.0474498890910078,
          -1.3577006743372015,
          -1.6184403542867676,
          -1.975238488015573,
          -7,
          -7,
          -2.008065595596292,
          -1.888605637932962,
          -2.65359838184329,
          -1.937753825464357,
          -0.9630223341964602,
          -2.0692451171051838,
          -7,
          -1.6252634418229994,
          -1.4542188324826077,
          -3.4776517349700544,
          -2.486133275238764,
          -3.95433900860246,
          -7,
          -3.4885507165004443,
          -2.90655949500245,
          -2.469822015978163,
          -7,
          -7,
          -7,
          -1.34424936903324,
          -3.953034457250357,
          -2.736771338404693,
          -3.6537429940257358,
          -2.5228304876568752,
          -2.9274636894564674,
          -3.1790728074595234,
          -2.5451167199341014,
          -0.9112368843262032,
          -2.1142691546341217,
          -3.9745116927373285,
          -7,
          -1.740597633769329,
          -7,
          -7,
          -7,
          -2.314393957221963,
          -3.260739019910411,
          -3.66138669778177,
          -2.211397439106333,
          -2.2025766721021527,
          -2.6641905259500858,
          -3.1108301168826937,
          -3.949194774237982,
          -2.7823929882474965,
          -3.252755971088573,
          -7,
          -2.009064118906962,
          -3.4727564493172123,
          -7,
          -2.163187311522274,
          -2.0788763710039335,
          -2.660684823058709,
          -7,
          -7,
          -3.486760974209115,
          -7,
          -2.016565097224415,
          -3.4725126690795998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277792518931442,
          -7,
          -7,
          -4.277952847038809,
          -7,
          -7,
          -2.706812575414054,
          -7,
          -7,
          -7,
          -4.3591522114468955,
          -3.4605971888976015,
          -7,
          -7,
          -7,
          -3.9916468715211346,
          -7,
          -3.0845437818078687,
          -3.3552982352111687,
          -7,
          -3.994185128202317,
          -2.7715551279285786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.28244083582987,
          -3.2628701517374172,
          -7,
          -7,
          -4.280692164285117,
          -7,
          -3.6832272060414346,
          -7,
          -7,
          -7,
          -4.309502414966703,
          -7,
          -3.2453087762064916,
          -7,
          -7,
          -3.982791170279078,
          -7,
          -4.279826581794015,
          -7,
          -7,
          -7,
          -7,
          -4.306167591572845,
          -3.015305073292771,
          -7,
          -7,
          -3.4561056387081894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9982811398083022,
          -7,
          -7,
          -7,
          -2.8152529759306737,
          -7,
          -7,
          -7,
          -7,
          -3.7163581508819816,
          -4.288383384399775,
          -7,
          -7,
          -3.849284251626279,
          -7,
          -4.282123418809911,
          -7,
          -7,
          -7,
          -7,
          -4.27916484306227,
          -7,
          -3.9864134054654685,
          -4.282735372621018,
          -3.689974444666774,
          -7,
          -3.6840370374865197,
          -4.289811839117621,
          -3.1118839301593266,
          -4.286254320828791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.988625834862769,
          -7,
          -7,
          -4.281669563107719,
          -4.279187678432147,
          -3.687930074726357,
          -4.279210512601395,
          -7,
          -7,
          -7,
          -2.962053485123806,
          -7,
          -7,
          -7,
          -3.8086610190597323,
          -4.2964019016921435,
          -7,
          -3.566044465487791,
          -3.893900403553743,
          -7,
          -4.285917196728309,
          -3.8060894865407215,
          -2.961272744113886,
          -7,
          -3.8185337947129234,
          -3.8220590560256844,
          -3.809582158214607,
          -7,
          -4.280942405998698,
          -7,
          -7,
          -7,
          -3.300253776544204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2578077550334497,
          -2.6562409647638097,
          -4.030559245291156,
          -4.290591042549338,
          -7,
          -3.92069713446992,
          -7,
          -7,
          -7,
          -4.0279812200433875,
          -3.8190171986890595,
          -7,
          -7,
          -7,
          -2.8730652846523115,
          -7,
          -4.278227557594742,
          -7,
          -7,
          -7,
          -7,
          -3.4484191976496126,
          -4.2869950739688525,
          -4.285219643202061,
          -7,
          -3.509695249865874,
          -4.281328859801704,
          -7,
          -2.7207928476202827,
          -7,
          -7,
          -7,
          -4.279803779994103,
          -4.2788907249286785,
          -7,
          -7,
          -3.5328817194073974,
          -7,
          -2.9085352815350225,
          -7,
          -7,
          -2.592343002156279,
          -7,
          -4.287465805343229,
          -3.8093801242339063,
          -4.288338669395164,
          -3.5126176996829153,
          -7,
          -4.284566077266973,
          -4.282078054577154,
          -4.284836637642396,
          -7,
          -7,
          -3.7025813069667075,
          -7,
          -7,
          -7,
          -3.7331009229280614,
          -7,
          -2.9393320163657064,
          -7,
          -3.9911595969595175,
          -7,
          -7,
          -7,
          -7,
          -4.283640388800368,
          -4.278387725209282,
          -7,
          -7,
          -3.276628888711961,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.686837284994604,
          -3.8151348166368138,
          -3.7411713032360767,
          -3.00428327132953,
          -4.278136006715478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.583039995006035,
          -2.7720312240705764,
          -7,
          -7,
          -7,
          -7,
          -4.280031744138702,
          -3.6781312565441797,
          -7,
          -4.282622112878062,
          -4.297913635807866,
          -7,
          -7,
          -4.308116015865615,
          -7,
          -7,
          -7,
          -3.538028848509809,
          -3.9863013670565963,
          -3.1430883098145115,
          -3.5856186260679217,
          -2.9924668807264574,
          -7,
          -7,
          -7,
          -3.2134798091189682,
          -7,
          -4.29569901748951,
          -3.828702851333031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9888486871264353,
          -4.2854672904600575,
          -7,
          -7,
          -4.282576800709218,
          -7,
          -7,
          -7,
          -7,
          -3.4282765647938374,
          -3.4470472277998647,
          -3.984347257585864,
          -7,
          -3.000985245323685,
          -7,
          -7,
          -3.184123354239671,
          -7,
          -7,
          -7,
          -4.280031744138702,
          -3.8255126650941165,
          -4.286703412934269,
          -3.8228869478341507,
          -3.982745983047542,
          -3.693111115462141,
          -4.2820326856053805,
          -2.852171882663223,
          -3.5184042557045796,
          -7,
          -7,
          -7,
          -4.300486787986029,
          -4.289499765873857,
          -7,
          -7,
          -4.2847690133490195,
          -7,
          -7,
          -7,
          -7,
          -4.280737673504682,
          -4.278730742746982,
          -4.286141975203335,
          -7,
          -3.8410308092337435,
          -4.026471976876103,
          -2.738789581254155,
          -7,
          -3.6003847306224874,
          -3.0144155225606033,
          -3.8198509039368695,
          -7,
          -3.8095597146352675,
          -7,
          -3.448971187456634,
          -3.217706602245906,
          -3.819763220818885,
          -4.278639297890739,
          -7,
          -7,
          -3.6867032848448513,
          -7,
          -7,
          -3.9786141382013285,
          -3.696924008405422,
          -3.978864984347657,
          -3.4219328132785085,
          -7,
          -7,
          -2.4113584238044,
          -2.6699656178768523,
          -3.492725476491596,
          -4.287084776433677,
          -2.1287802856493667,
          -3.619886029358387,
          -3.3757915976851924,
          -2.8691919291329455,
          -1.9050790087053022,
          -7,
          -2.508699866624639,
          -2.9575686704055344,
          -1.7819409234599481,
          -2.0158562649538196,
          -2.2611721081987155,
          -3.178378301427545,
          -3.188114548770146,
          -2.393819419861694,
          -2.240227565671911,
          -2.674868486036911,
          -3.2514110789776036,
          -2.9512055563264705,
          -2.8041560608213065,
          -2.3808158408475273,
          -2.0465674178963407,
          -4.042129045119864,
          -1.3570647125607291,
          -2.091967735086787,
          -2.222651452136772,
          -2.419735097623596,
          -2.6338624181709775,
          -2.2170128461158742,
          -3.4100176082030527,
          -2.9047412987985335,
          -2.9053605846695008,
          -3.35237549500052,
          -3.5741181179393675,
          -3.0948309593568566,
          -2.871492413717169,
          -3.7467120225166606,
          -3.019859346807118,
          -2.9695556842208437,
          -2.789155251553628,
          -3.128022113260405,
          -3.988269033214435,
          -3.3010589476643855,
          -7,
          -3.428604485471956,
          -2.760176931025949,
          -2.52880961249955,
          -2.5578650995755288,
          -2.878214415521801,
          -3.0975312952440524,
          -7,
          -3.603973901841678,
          -7,
          -7,
          -4.339828924582621,
          -2.7182844553673173,
          -3.6230838133595475,
          -2.388424986483075,
          -2.513714244622591,
          -3.015622630549385,
          -3.0772406874323766,
          -3.435730637625475,
          -3.138912913629216,
          -3.0023934410715984,
          -2.2713047640541584,
          -3.8929104579899185,
          -3.747628471726236,
          -2.712573180706935,
          -2.186385385887224,
          -7,
          -3.1907424491833214,
          -3.506129052395325,
          -2.705123700208126,
          -7,
          -3.365244562017571,
          -7,
          -2.2205063163424663,
          -4.331326050575092,
          -3.584082338518372,
          -2.6724377682208376,
          -2.171607230416448,
          -4.296687123772402,
          -2.9572339246004073,
          -3.9996306927125405,
          -3.4702004128593673,
          -2.9413776300597516,
          -3.207215337532426,
          -3.9819997141298784,
          -4.280783177955887,
          -7,
          -3.588182036789483,
          -2.6641717053619307,
          -2.069859983248331,
          -3.2814878879400813,
          -2.7541516790028147,
          -2.807196660710947,
          -2.4964959215304496,
          -1.0812433931844716,
          -2.7405381265727367,
          -3.50512735822657,
          -3.5015613104372822,
          -2.015217024496122,
          -2.8523896191735396,
          -1.7887104335455841,
          -2.45338482217222,
          -2.608414593151163,
          -3.1705969485122614,
          -2.480276495763096,
          -2.305867056602291,
          -2.3326424498122176,
          -2.8500113496270156,
          -3.1131631489984994,
          -2.6834273048663455,
          -3.391111613702803,
          -2.7054470176347998,
          -3.2879584058601505,
          -3.437886400119698,
          -4.27916484306227,
          -1.643008639801591,
          -3.6832046891531913,
          -4.279393142747864,
          -2.3808382244074395,
          -1.887367994404441,
          -1.9925469236750626,
          -3.57978359661681,
          -2.4699671366981004,
          -3.586969675475768,
          -2.6490318071748162,
          -3.6803581795496854,
          -4.278113115979834,
          -4.280578370368076,
          -2.7488813648247152,
          -3.5046520639080847,
          -2.8558779470193607,
          -2.4137043234788376,
          -3.580057801286702,
          -2.390732771727705,
          -2.5643980501637254,
          -2.4260674243490388,
          -3.977014440868899,
          -2.7251829315824416,
          -3.239572462938868,
          -3.121275254704084,
          -2.197936592210945,
          -3.2842953482305264,
          -3.6783362467321803,
          -3.8042530476353846,
          -3.0289003150037526,
          -1.9928825468140339,
          -3.5143041961369925,
          -3.0594743181457305,
          -2.3281925043138796,
          -3.5873517099208505,
          -1.870828498512569,
          -3.007994695660883,
          -2.7466546801789185,
          -3.5066403055665023,
          -3.208710019906401,
          -2.7698266737436468,
          -3.502518157503245,
          -2.068038098556065,
          -2.8433885229380875,
          -3.4377732053209487,
          -3.171321328174317,
          -2.5700119525533682,
          -3.9770831203158528,
          -3.802705327074352,
          -2.535121426893738,
          -3.1448409732702785,
          -3.5113708138745223,
          -2.252104451820851,
          -3.180633086894785,
          -2.8541642908673475,
          -3.1478529205561894,
          -1.9002933004400744,
          -2.4261184631759893,
          -2.330413773349191,
          -2.7056926965377035,
          -4.2785020944938825,
          -4.278547833775853,
          -2.1551005453858165,
          -2.782124393777497,
          -3.239572462938868,
          -2.571602970874123,
          -1.2636660648733542,
          -2.783058584878388,
          -1.6252634418229994,
          -7,
          -2.2113642631514434,
          -3.3261081836066806,
          -3.4474681309497557,
          -3.678222375239904,
          -7,
          -3.1714113887235333,
          -2.8033249304451706,
          -3.079543007402906,
          -3.97806633408362,
          -3.678700434998304,
          -3.976922851374828,
          -1.713722071471778,
          -7,
          -3.1105448196607366,
          -3.803457115648414,
          -2.9796394122229075,
          -3.2081052932151874,
          -3.5036318211228035,
          -3.169787434471045,
          -2.4873023607462903,
          -2.9389989524702442,
          -3.3866549981631726,
          -3.678700434998304,
          -2.4578818967339924,
          -3.8009002862504695,
          -4.278067330888662,
          -4.278136006715478,
          -2.8203600231266415,
          -2.627934528249084,
          -3.004728546096142,
          -0.5125801924184004,
          -2.600220218753284,
          -3.1308762975873003,
          -2.711602055927109,
          -3.8007857903277626,
          -2.1736892394459417,
          -2.4187844927322755,
          -3.9770373352246815,
          -3.5792575532587234,
          -7,
          -2.05594595104709,
          -2.7105807200477456,
          -2.7750916633149307,
          -3.2775862957847632,
          -7,
          -1.8299420573070557,
          -3.5789599423109,
          -2.51419604972685,
          -3.8010834169645062,
          -3.5850544459866267,
          -4.277838333002047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.477044607753807,
          -7,
          -7,
          -7,
          -7,
          -3.0337364064361574,
          -3.0550723824494175,
          -3.4774106879072515,
          -3.458939861890326,
          -7,
          -7,
          -2.803424597623472,
          -7,
          -7,
          -3.3261309567107946,
          -2.943198706108668,
          -7,
          -7,
          -7,
          -7,
          -3.4556821645007902,
          -7,
          -3.540058216787737,
          -7,
          -7,
          -2.9777236052888476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.734351707294765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.057729481433751,
          -3.4186326873540653,
          -7,
          -7,
          -3.822494985278751,
          -7,
          -7,
          -7,
          -7,
          -3.0810591230013196,
          -7,
          -7,
          -7,
          -7,
          -3.7301629511925354,
          -7,
          -7,
          -3.7528164311882715,
          -7,
          -7,
          -3.002957585345823,
          -7,
          -7,
          -3.8646692651730175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5433567985654086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.708183718356779,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2538950571317695,
          -3.4510184521554574,
          -3.4726833296130404,
          -3.7652959296980564,
          -2.6423481186113245,
          -7,
          -7,
          -3.8158432906632664,
          -3.475525915039281,
          -7,
          -3.456290100882691,
          -3.763502865467597,
          -7,
          -7,
          -3.5621441079960707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.706888394981618,
          -7,
          -7,
          -7,
          -7,
          -3.5880101174205477,
          -7,
          -7,
          -7,
          -3.90080393481037,
          -3.204052118841129,
          -7,
          -7,
          -3.752432609261474,
          -3.9373172477624943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7989267385772014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0291549471648436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5419950357274104,
          -7,
          -7,
          -3.126630854711548,
          -7,
          -3.4776999283321306,
          -7,
          -3.7816835845073506,
          -3.7901443650429005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5529577650807846,
          -7,
          -3.7940695839816327,
          -7,
          -7,
          -7,
          -3.749890841271422,
          -2.158513262616432,
          -2.70594142445768,
          -7,
          -7,
          -2.526867723387192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7839035792727347,
          -3.794418330874141,
          -3.460797647928118,
          -3.7032884126289742,
          -7,
          -7,
          -7,
          -7,
          -3.747334109615905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1871135061025466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9658062406544436,
          -7,
          -7,
          -3.84223468634724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.755747850412951,
          -7,
          -3.361940210731115,
          -7,
          -7,
          -7,
          -1.3853156915992284,
          -7,
          -3.5037226064864795,
          -3.358379073147656,
          -3.831613855309099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.606596309179285,
          -7,
          -7,
          -7,
          -3.3601861899515217,
          -7,
          -7,
          -3.3461573022320086,
          -7,
          -7,
          -2.8690849738326705,
          -7,
          -3.5251096222719336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.002415298194856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4689378056654614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.856366323659248,
          -7,
          -3.596347284832664,
          -7,
          -7,
          -2.439786761936646,
          -2.7284214238688698,
          -7,
          -7,
          -7,
          -3.800648355363988,
          -2.7614982691650285,
          -3.206353560072406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.890700397698875,
          -7,
          -7,
          -2.673783970267478,
          -3.0707693669341825,
          -4.379559310918327,
          -3.777644277696485,
          -3.6628657175303223,
          -2.5090855878980047,
          -2.974804668354214,
          -4.181772152056479,
          -2.675924914230962,
          -7,
          -2.5728175888328457,
          -4.031105362355941,
          -3.663546741039115,
          -3.992868978354398,
          -1.9790193923221266,
          -4.085807712290026,
          -3.5205854165951167,
          -2.3414563143680662,
          -2.9530486891810788,
          -3.548578385603278,
          -4.1275583020046325,
          -4.2745503849095305,
          -2.643690860483486,
          -3.1980611267337333,
          -3.75878577232103,
          -7,
          -4.2003853242323865,
          -3.74795530690673,
          -7,
          -2.575780568156982,
          -2.94509420180716,
          -3.5591782023538547,
          -3.877640056831926,
          -3.3557919596966648,
          -3.1101780389942686,
          -4.054402366806568,
          -4.221283799492686,
          -3.4014318740294134,
          -3.630151721833672,
          -4.162504664521149,
          -3.816241299991783,
          -7,
          -3.6285421834125686,
          -7,
          -7,
          -7,
          -7,
          -4.128366953938082,
          -4.059298292408071,
          -3.545059584694003,
          -3.154271775993095,
          -3.50478791537113,
          -4.018908444316327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8394151926838935,
          -3.404890706906996,
          -7,
          -3.4054239806799105,
          -3.239851544802794,
          -4.886919168061725,
          -7,
          -7,
          -7,
          -3.0625443813464646,
          -7,
          -7,
          -3.6725134728685087,
          -3.748317262085834,
          -7,
          -3.9967305154351527,
          -4.190499779633488,
          -4.084522658021688,
          -7,
          -7,
          -3.9472866446777983,
          -3.015999120957349,
          -7,
          -7,
          -3.9605754142007257,
          -2.7643629658980102,
          -7,
          -3.9064427938170323,
          -7,
          -7,
          -3.9727580839035395,
          -3.7176982348423726,
          -3.7645497190644672,
          -7,
          -7,
          -2.17070165581607,
          -3.156145156435762,
          -1.8099139515895757,
          -3.283225823810244,
          -2.669316880566112,
          -2.3893137784594445,
          -2.2524578842218443,
          -2.0596799053912447,
          -2.228359829144681,
          -7,
          -3.452935870201179,
          -2.1434774309043974,
          -2.247378036552128,
          -1.8902377676676874,
          -3.103940485083021,
          -2.013479936380004,
          -2.181664976187411,
          -2.1358770816547334,
          -1.78890692406502,
          -1.844108633096734,
          -2.394721010746106,
          -2.5803546611065915,
          -2.3193143040905118,
          -2.193750533339446,
          -1.841263185235105,
          -1.809596708926521,
          -2.9191528354245166,
          -2.7501225267834,
          -1.8956200972968704,
          -2.4683473304121573,
          -7,
          -1.6361099826579604,
          -2.133807926868157,
          -2.065400258114976,
          -3.7507397512353506,
          -1.4299155111056692,
          -3.4733409641859354,
          -1.8901908070372926,
          -2.8586875505162346,
          -3.74795530690673,
          -3.7562556487542333,
          -2.286653597566442,
          -2.0669721121857587,
          -2.3467874862246565,
          -1.099284687397692,
          -7,
          -1.7974954977507929,
          -2.3888114134735234,
          -1.621325570893433,
          -7,
          -1.8886006620281743,
          -2.980154931341663,
          -2.9660075670036736,
          -2.1444758842037395,
          -2.2207803128431354,
          -3.2786774022541683,
          -3.458033192496506,
          -3.1138478924796797,
          -1.721955569498987,
          -2.514198107297303,
          -1.9469432706978254,
          -1.8159074241980515,
          -3.076203381088768,
          -1.9911381386881442,
          -3.301753217283077,
          -1.5883005914475676,
          -2.690122214141457,
          -2.7010640378177277,
          -2.7958484311422427,
          -7,
          -1.8616742004490006,
          -1.7695510786217261,
          -3.7647737169110402,
          -3.073938190635253,
          -1.5388454931448834,
          -7,
          -7,
          -2.277726126702004,
          -2.6762714179371425,
          -3.3087777736647213,
          -2.244565729667386,
          -2.760285373877668,
          -1.7454291911381372,
          -1.598257603523139,
          -1.8964681993902235,
          -1.6383530931404153,
          -1.5788248182115736,
          -1.6855806561176072,
          -3.448087666692341,
          -3.146902869928199,
          -2.335093023976551,
          -2.050452611769055,
          -2.6782147827453997,
          -2.1550322287909704,
          -2.0044578585360924,
          -2.346092058563005,
          -1.4542188324826077,
          -2.2113642631514434,
          -7,
          -3.4555300473427017,
          -2.2109940047208836,
          -3.153204900084284,
          -3.4494012529962212,
          -3.7737864449811935,
          -2.8505100927111355,
          -1.9209082899761751,
          -7,
          -3.279894980011638,
          -7,
          -1.4386662328043016,
          -7,
          -2.571927088525855,
          -7,
          -2.501591718957243,
          -2.3447560348940004,
          -2.645271078927407,
          -2.443300248364033,
          -2.01725599733078,
          -1.8878541021310815,
          -2.264101992153716,
          -7,
          -1.665436659184819,
          -7,
          -7,
          -7,
          -2.384039633727167,
          -3.287353772714747,
          -7,
          -2.48022477637793,
          -2.1379459462394763,
          -2.740573205485716,
          -3.4579575512036382,
          -7,
          -2.9277124619002755,
          -3.4510184521554574,
          -7,
          -2.3749459199625567,
          -3.447778009294621,
          -7,
          -2.5127733089991104,
          -2.0847629622918573,
          -2.59659709562646,
          -7,
          -7,
          -3.2935835134961167,
          -7,
          -1.9524168070596342,
          -3.2711443179490782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357649032918467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5859117103194342,
          -7,
          -7,
          -4.275576227946301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.558528576962073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02816441942447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3010299956639813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5825557388650933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5150786750759226,
          -7,
          -7,
          -7,
          -7,
          -4.435406348315538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4089180208467798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.307496037913213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.251005173493635,
          -7,
          -7,
          -7,
          -2.342422680822206,
          -7,
          -7,
          -7,
          -3.2174839442139063,
          -7,
          -7,
          -7,
          -7,
          -3.6703386411274423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0189084443163274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1583624920952498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.798650645445269,
          -7,
          -7,
          -5.149385406360198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985201858364572,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6848453616444123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0088130090520893,
          -7,
          -7,
          -2.8444771757456815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.119420863442087,
          -7,
          -7,
          -7,
          -4.129475054459623,
          -7,
          -7,
          -3.752202153176521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.720159303405957,
          -7,
          -7,
          -7,
          -7,
          -5.0979441388640945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8129133566428557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0433622780211294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7944880466591697,
          -7,
          -7,
          -2.3324384599156054,
          -7,
          -7,
          -2.586212104232087,
          -7,
          -7,
          -7,
          -4.747054280687472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431886211662398,
          -7,
          -7,
          -7,
          -7,
          -4.802233085547551,
          -3.5474758163938844,
          -7,
          -7,
          -4.174408732073123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.483573034190131,
          -7,
          -7,
          -7,
          -4.449339526174968,
          -7,
          -4.22671157884568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0409976924234905,
          -3.7256549915343533,
          -3.0229707105775065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.823619114736917,
          -2.7168377232995247,
          -7,
          -7,
          -3.698448538015329,
          -7,
          -7,
          -7,
          -2.531478917042255,
          -7,
          -4.184123354239671,
          -3.3372595397502756,
          -7,
          -3.311310673889323,
          -4.377556663304251,
          -5.17231973025903,
          -7,
          -7,
          -7,
          -4.008781090107339,
          -7,
          -4.339784239738522,
          -7,
          -7,
          -7,
          -3.6506959797606107,
          -7,
          -4.275265273107007,
          -7,
          -3.6413749451921253,
          -7,
          -3.678032523045486,
          -7,
          -7,
          -3.650005149798325,
          -3.9606491203532737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.209112703738592,
          -2.1903316981702914,
          -1.8305084739693955,
          -7,
          -2.888179493918325,
          -3.2091574233475386,
          -3.02201573981772,
          -1.9742813588778305,
          -7,
          -3.077149794716969,
          -7,
          -3.423215144466514,
          -1.595596416654004,
          -7,
          -7,
          -3.7409150764812824,
          -3.203032887014711,
          -7,
          -7,
          -7,
          -3.1715802019320636,
          -7,
          -7,
          -2.0726174765452363,
          -2.2671717284030137,
          -7,
          -3.1280760126687155,
          -7,
          -7,
          -7,
          -3.4941446512653913,
          -4.44004277670934,
          -7,
          -7,
          -1.4670528600591584,
          -7,
          -1.6114577656683426,
          -7,
          -2.100370545117563,
          -2.451615889878312,
          -7,
          -7,
          -3.2898118391176214,
          -1.8016323462331667,
          -3.395064164331242,
          -2.5532760461370994,
          -3.2704459080179626,
          -1.5409548089261327,
          -7,
          -1.5393897820725049,
          -7,
          -4.330941100576426,
          -7,
          -1.4186694935307818,
          -1.9837765880368856,
          -7,
          -3.8038666342849843,
          -7,
          -2.8457180179666586,
          -7,
          -2.2321487062561682,
          -2.9729401192703837,
          -1.9645738809210547,
          -7,
          -7,
          -7,
          -7,
          -2.428134794028789,
          -3.1035471720766425,
          -7,
          -1.5910646070264993,
          -2.2050238216541693,
          -3.2347702951609167,
          -7,
          -1.738384123512156,
          -2.551117162742455,
          -7,
          -2.82020145948564,
          -2.332270096090313,
          -2.653694795315082,
          -2.824288582459545,
          -2.9434945159061026,
          -2.7221401254574156,
          -3.658393026279124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.852784868680548,
          -7,
          -3.8347808766998273,
          -3.101403350555331,
          -3.4776517349700544,
          -3.3261081836066806,
          -3.4555300473427017,
          -7,
          -7,
          -1.5259698222574796,
          -7,
          -1.833420339025857,
          -1.8498444750387184,
          -7,
          -7,
          -2.123851640967086,
          -7,
          -3.1488801691282298,
          -1.8573324964312685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.428134794028789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8150081817089876,
          -7,
          -3.451939869365103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.431914899362271,
          -7,
          -7,
          -3.1547282074401557,
          -7,
          -7,
          -7,
          -7,
          -2.6541765418779604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.846337112129805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8506462351830666,
          -7,
          -4.362765126555426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.035601249204444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9512308693093825,
          -7,
          -7,
          -2.600428325732131,
          -7,
          -3.0034605321095067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4775191756421684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.740733655388644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.72222246396973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732522420609542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.409087369447835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.420120848085703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1020905255118367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.673911327036779,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9286944977199605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.386320573894046,
          -7,
          -7,
          -7,
          -4.203236924830023,
          -7,
          -7,
          -7,
          -3.3641756327706194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.31135115757134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2229764498933915,
          -7,
          -7,
          -7,
          -4.798774909075712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.588761362909286,
          -7,
          -7,
          -4.073925980204891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.509016311883662,
          -4.274080839868691,
          -7,
          -7,
          -4.436305797450854,
          -3.106870544478654,
          -3.039889797736181,
          -7,
          -3.623114049449181,
          -7,
          -2.9712371811975107,
          -4.279473019293323,
          -4.359825999824098,
          -4.504871669262045,
          -2.767259442157535,
          -4.289142835932333,
          -7,
          -3.076276255404218,
          -7,
          -7,
          -7,
          -4.6260527959344335,
          -7,
          -3.9432683355836136,
          -7,
          -4.169498094684968,
          -4.630244761469706,
          -7,
          -7,
          -4.009442396801993,
          -3.456315413106618,
          -7,
          -7,
          -4.191003634067977,
          -3.82633400562222,
          -7,
          -7,
          -4.358524934046989,
          -7,
          -7,
          -7,
          -7,
          -4.314035845679718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.087390944997188,
          -3.8537286234901957,
          -3.2656038765850357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0789414130924255,
          -7,
          -7,
          -7,
          -7,
          -4.315561034645111,
          -7,
          -7,
          -3.6532125137753435,
          -7,
          -7,
          -7,
          -7,
          -4.287533011050722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1330489863973865,
          -3.967021168372457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9150343529019414,
          -4.090011024007147,
          -2.5776194396564844,
          -7,
          -3.2182728535714475,
          -2.528488190640618,
          -2.979092900638326,
          -3.4089180208467798,
          -2.4210552287780143,
          -7,
          -7,
          -2.9683495042505643,
          -2.5149902330672873,
          -2.8395084576685545,
          -2.859438535455056,
          -2.809222921689422,
          -0.9572480195790501,
          -2.700775805199281,
          -2.020775488193558,
          -2.2710211507221385,
          -2.154783499881748,
          -2.4774830160749435,
          -2.9426280309747153,
          -1.547968919216163,
          -2.078902762882005,
          -7,
          -2.9599948383284165,
          -7,
          -2.683347276399375,
          -2.1527250407314686,
          -7,
          -2.9840043644446514,
          -3.00156655355653,
          -3.111199971250849,
          -2.858537197569639,
          -1.0730769651536745,
          -7,
          -1.9590413923210934,
          -7,
          -7,
          -7,
          -3.4916417934775863,
          -2.6532125137753435,
          -7,
          -2.2447223227699977,
          -7,
          -2.2896367235821415,
          -2.620829816274487,
          -2.3359135659099737,
          -7,
          -1.6936641487670914,
          -2.6175245348862926,
          -7,
          -2.65864725984816,
          -2.20682587603185,
          -7,
          -7,
          -3.6231458746379395,
          -2.63321588535909,
          -2.1653432655224587,
          -2.2444538428721974,
          -2.5040458751996155,
          -7,
          -3.158132645843839,
          -3.0425755124401905,
          -2.326189510638604,
          -7,
          -2.5782570766553374,
          -7,
          -7,
          -2.331115695085382,
          -1.8440627725826517,
          -2.957607287060095,
          -3.0107238653917734,
          -2.506118305325085,
          -7,
          -7,
          -7,
          -7,
          -2.7777891874348675,
          -3.281790637678311,
          -3.159266331093494,
          -7,
          -7,
          -2.587636144710017,
          -2.287801729930226,
          -2.0867551829841657,
          -2.0141003215196207,
          -7,
          -7,
          -3.2392312063546864,
          -2.0344650511984494,
          -2.6175245348862926,
          -2.216731267280442,
          -3.20883396239637,
          -3.255995726722402,
          -2.486133275238764,
          -3.4474681309497557,
          -2.2109940047208836,
          -7,
          -7,
          -7,
          -2.377791767588193,
          -7,
          -7,
          -3.0494764543837896,
          -7,
          -7,
          -7,
          -2.6323083929197475,
          -7,
          -0.6128430289361774,
          -7,
          -7,
          -3.0464951643347082,
          -2.932980821923198,
          -2.501971645918664,
          -2.480438147177817,
          -1.8881965187319025,
          -7,
          -7,
          -2.1754473827599763,
          -7,
          -7,
          -7,
          -2.975891136401793,
          -2.957607287060095,
          -7,
          -3.2321487062561682,
          -2.4224256763712044,
          -3.5277587525209717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.247660872434416,
          -7,
          -7,
          -7,
          -2.318975855596643,
          -3.158060793936605,
          -7,
          -7,
          -7,
          -7,
          -2.375286972498473,
          -2.841359470454855,
          -7,
          -7,
          -7,
          -7,
          -2.0718820073061255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4313637641589874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.952792443044092,
          -3.877492286377779,
          -7,
          -7,
          -7,
          -7,
          -2.0916669575956846,
          -7,
          -4.558372522169157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.33577873881047,
          -7,
          -7,
          -7,
          -2.187520720836463,
          -2.3180633349627615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2900346113625183,
          -7,
          -2.7558748556724915,
          -7,
          -7,
          -7,
          -7,
          -4.027634965777544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7686381012476144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.271841606536499,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.280805928393667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9581177338764024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.973589623427257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9190780923760737,
          -7,
          -7,
          -7,
          -2.75815462196739,
          -7,
          -7,
          -3.8828577947020895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3324384599156054,
          -7,
          -2.912487761332324,
          -7,
          -7,
          -7,
          -7,
          -3.4659866511569004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.83968749733336,
          -7,
          -7,
          -2.311753861055754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1172712956557644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3096301674258988,
          -7,
          -7,
          -5.149345378509518,
          -7,
          -7,
          -2.2041199826559246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.173186268412274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7637487823121547,
          -7,
          -7,
          -3.1420764610732848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7512020945883533,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -2.7913397039651393,
          -2.4065401804339555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8041394323353503,
          -7,
          -7,
          -2.629409599102719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0382226383687185,
          -4.067120472689078,
          -2.3860528489403894,
          -7,
          -2.409087369447835,
          -7,
          -2.6299190355035416,
          -7,
          -7,
          -2.1931245983544616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.663323933628212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431781772429124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784524576197029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.226599905207357,
          -4.22050034561473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.035829825252828,
          -7,
          -3.4568646864591064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1755842863685224,
          -2.410496045616074,
          -3.465010864717408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6537140754412487,
          -4.678545692299574,
          -7,
          -2.4216039268698313,
          -3.265525335219074,
          -2.4800069429571505,
          -4.309715314859149,
          -7,
          -4.6407695459602785,
          -7,
          -7,
          -7,
          -3.171921379366514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.155477742147295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6860102913152857,
          -1.290034611362518,
          -2.25927524755698,
          -7,
          -3.3636119798921444,
          -3.5098742850047193,
          -7,
          -2.568201724066995,
          -7,
          -3.4745804523423796,
          -7,
          -3.4511311747360724,
          -1.8623301865867783,
          -2.388574805196408,
          -7,
          -7,
          -3.199480914862356,
          -3.4235735197327357,
          -7,
          -7,
          -3.4709981696608736,
          -7,
          -7,
          -1.6720978579357175,
          -1.6952314347766169,
          -7,
          -3.525563058270067,
          -7,
          -7,
          -7,
          -3.8621512641362776,
          -4.439940280893153,
          -7,
          -7,
          -1.7178553484963925,
          -7,
          -0.9197316583111611,
          -7,
          -1.4529358702011792,
          -2.32342399587229,
          -2.5428254269591797,
          -2.7693773260761385,
          -7,
          -1.5390760987927767,
          -3.217659381292399,
          -7,
          -3.267406418752904,
          -1.8129133566428557,
          -7,
          -1.1050617650276022,
          -3.0090257420869104,
          -7,
          -7,
          -1.7652959296980566,
          -1.4673614174305063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3988077302032647,
          -3.1213289151698236,
          -1.8856842356521324,
          -7,
          -2.337459261290656,
          -7,
          -7,
          -7,
          -3.705007959333336,
          -2.5658478186735176,
          -1.6283889300503114,
          -1.8864907251724818,
          -7,
          -7,
          -1.3380135619171512,
          -2.414081572540633,
          -1.4945340562373441,
          -7,
          -2.3498263322325768,
          -2.6473829701146196,
          -2.9474337218870508,
          -2.2340108175871793,
          -2.876465278343224,
          -3.355930187078868,
          -3.225050696138049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.444044795918076,
          -7,
          -4.311711488795424,
          -2.795184589682424,
          -3.95433900860246,
          -3.678222375239904,
          -3.153204900084284,
          -1.5259698222574796,
          -7,
          -7,
          -7,
          -1.761551988564182,
          -1.8105205435269653,
          -7,
          -7,
          -1.9225524667613758,
          -7,
          -3.1942984514279047,
          -7,
          -7,
          -7,
          -7,
          -2.7481880270062007,
          -2.482873583608754,
          -2.606381365110605,
          -7,
          -7,
          -2.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.24551266781415,
          -2.6074550232146687,
          -3.0573807905423553,
          -3.5018804937550585,
          -7,
          -7,
          -7,
          -7,
          -2.2741578492636796,
          -7,
          -3.577836341292744,
          -7,
          -7,
          -7,
          -7,
          -2.9474337218870508,
          -7,
          -7,
          -2.6414741105040997,
          -7,
          -3.5456781497920256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.877210039451698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517538973850582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3552599055273786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8499719123288503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.746011107751926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.43288594961979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732289194860667,
          -7,
          -3.7255441224863532,
          -7,
          -7,
          -7,
          -4.39137623916965,
          -7,
          -7,
          -4.349743633744951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.483002138604418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.402132364931751,
          -4.2187455122234745,
          -7,
          -7,
          -4.173302841888186,
          -3.7841892053809607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.152838509892218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.371990911464915,
          -7,
          -3.284791555950146,
          -7,
          -7,
          -7,
          -3.04941186087108,
          -3.9841671271469883,
          -7,
          -7,
          -7,
          -3.7708520116421442,
          -7,
          -4.62682264891478,
          -7,
          -7,
          -2.967079734144497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9378520932511556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.387641905018062,
          -7,
          -3.9622272313500853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3152704347785915,
          -7,
          -7,
          -7,
          -7,
          -3.5820633629117085,
          -7,
          -3.3880123433641907,
          -7,
          -3.2513948500401044,
          -7,
          -7,
          -7,
          -7,
          -3.483974250740474,
          -2.5514499979728753,
          -7,
          -7,
          -7,
          -7,
          -2.5508396050657853,
          -2.79309160017658,
          -3.654850090561394,
          -7,
          -4.478696331677028,
          -7,
          -7,
          -7,
          -7,
          -3.6158448828747023,
          -7,
          -2.9995654882259823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3494717992143856,
          -3.207365037469072,
          -3.171433900943008,
          -7,
          -7,
          -4.266748965908202,
          -2.671543085262574,
          -7,
          -2.931966114728173,
          -4.310289623796099,
          -7,
          -7,
          -7,
          -3.4494012529962212,
          -7,
          -2.377791767588193,
          -7,
          -7,
          -7,
          -7,
          -3.137354111370733,
          -7,
          -7,
          -7,
          -4.146964796989748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.299942900022767,
          -7,
          -7,
          -2.8715729355458786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0149403497929366,
          -3.4394905903896835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.960787780819836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.059689611271879,
          -7,
          -7,
          -7,
          -7,
          -2.5921767573958667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7576522021542784,
          -7,
          -7,
          -7,
          -3.630122642859312,
          -3.655234507034294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9123814989188004,
          -3.6109793799229974,
          -7,
          -3.0565237240791006,
          -3.5170064590194547,
          -7,
          -7,
          -7,
          -7,
          -2.6910814921229687,
          -7,
          -3.199015465037119,
          -2.6989700043360187,
          -7,
          -7,
          -2.2608660716137683,
          -2.5409548089261325,
          -2.574031267727719,
          -2.74350976472843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6532125137753435,
          -2.6522463410033232,
          -7,
          -7,
          -7,
          -7,
          -3.119420863442087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.037386652582377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.918554530550274,
          -7,
          -7,
          -4.224014811372864,
          -7,
          -2.741151598851785,
          -7,
          -2.632457292184724,
          -7,
          -7,
          -7,
          -7,
          -2.89707700320942,
          -7,
          -2.9995654882259823,
          -2.7466341989375787,
          -2.385606273598312,
          -7,
          -4.044422155711843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6464037262230695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.767304317453273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5444401373176926,
          -3.804037153146142,
          -7,
          -2.8567288903828825,
          -7,
          -4.136165456814543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.762678563727436,
          -7,
          -7,
          -3.9721565358594937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6526857769225343,
          -2.745855195173729,
          -3.456821348021599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.383240712265224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8847953639489807,
          -2.357934847000454,
          -7,
          -2.0596175052644243,
          -2.7126497016272113,
          -7,
          -4.030980018424236,
          -2.6127838567197355,
          -7,
          -7,
          -7,
          -7,
          -2.6599162000698504,
          -7,
          -3.273926780100526,
          -7,
          -3.391170433298193,
          -7,
          -7,
          -3.1037575071243726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5165353738957994,
          -7,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3654879848909,
          -7,
          -7,
          -7,
          -2.6522463410033232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7701152947871015,
          -7,
          -7,
          -2.5943925503754266,
          -2.558708570533166,
          -7,
          -7,
          -7,
          -7,
          -2.9334872878487053,
          -2.1527250407314686,
          -3.5378190950732744,
          -5.150089908130527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5180750368775167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.238547887681328,
          -7,
          -7,
          -7,
          -2.849009701991132,
          -7,
          -7,
          -7,
          -4.198986805670933,
          -7,
          -7,
          -7,
          -3.6351820486562674,
          -7,
          -7,
          -2.510813010512496,
          -3.1942367487238292,
          -7,
          -7,
          -7,
          -2.4065401804339555,
          -2.250420002308894,
          -2.1405080430381798,
          -7,
          -7,
          -2.45408227073109,
          -7,
          -7,
          -7,
          -7,
          -2.9792447784093805,
          -7,
          -7,
          -7,
          -4.609092600000719,
          -7,
          -2.5877109650189114,
          -7,
          -7,
          -7,
          -2.8512583487190755,
          -7,
          -7,
          -7,
          -2.8318697742805017,
          -2.494154594018443,
          -7,
          -7,
          -4.621602055622412,
          -2.780317312140151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3450468246483553,
          -7,
          -7,
          -7,
          -2.7596678446896306,
          -2.690196080028514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.734398141431968,
          -7,
          -2.2761334151353645,
          -4.0701117827822,
          -7,
          -7,
          -7,
          -7,
          -2.738384123512156,
          -3.4605971888976015,
          -7,
          -2.5998830720736876,
          -7,
          -7,
          -2.6283889300503116,
          -2.1481911962420113,
          -7,
          -2.6473829701146196,
          -2.5148796552227934,
          -1.9513375187959177,
          -2.627195109792065,
          -7,
          -7,
          -4.6199798058330535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9565365919733257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.09572712255598,
          -7,
          -7,
          -4.176621739306073,
          -7,
          -4.610415271187788,
          -7,
          -7,
          -7,
          -4.7862472912906115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.705829514521635,
          -4.226780286814562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6447667303840188,
          -7,
          -2.9641095666974007,
          -7,
          -2.940516484932567,
          -4.05816020349183,
          -7,
          -4.545294743227404,
          -2.376787456042087,
          -2.952792443044092,
          -4.076203381088768,
          -4.14525857696561,
          -3.1153608453944126,
          -7,
          -3.042260406689452,
          -7,
          -2.7551122663950713,
          -7,
          -4.190583795977179,
          -3.3807537708039,
          -7,
          -3.2430762267428355,
          -4.50354555744551,
          -5.1729880216628,
          -7,
          -2.8411508254919644,
          -7,
          -3.181420092560748,
          -7,
          -4.943009497346199,
          -3.6221103603612193,
          -7,
          -7,
          -3.6723749787460793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.162175936530162,
          -7,
          -7,
          -2.8422325328084246,
          -3.389071533777558,
          -7,
          -3.5934874556083014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.904895787855206,
          -7,
          -7,
          -7,
          -2.532973908129206,
          -1.6754450381412995,
          -1.9138138523837167,
          -7,
          -2.627024295834346,
          -2.955600296732481,
          -2.5034501934420117,
          -1.6217695803398526,
          -2.6580113966571126,
          -2.8889513237201387,
          -2.5269850685599957,
          -3.267804082331647,
          -1.7403626894942439,
          -2.288696260590256,
          -7,
          -3.1560946306394277,
          -2.959756672990995,
          -2.7613263224214566,
          -7,
          -2.9523080096621253,
          -2.4610344348262077,
          -7,
          -3.104487111312395,
          -2.214843848047698,
          -1.9250172547728448,
          -7,
          -3.239674787646781,
          -7,
          -2.6344772701607315,
          -4.17064302283611,
          -2.951654652291387,
          -3.964660260021084,
          -7,
          -3.397070549959409,
          -1.3985829317826486,
          -7,
          -1.3802112417116061,
          -7,
          -1.5478693332304245,
          -1.9308535573499908,
          -7,
          -2.9190780923760737,
          -3.1383026981662816,
          -2.018076063645795,
          -3.715836275164994,
          -2.3710678622717363,
          -2.4147645023395254,
          -2.269512944217916,
          -2.3494717992143856,
          -1.4060917606915835,
          -2.4972752863579952,
          -4.335558188065861,
          -2.8228216453031045,
          -1.7662268935741685,
          -1.2778383330020473,
          -7,
          -3.5180530800797216,
          -3.009450895798694,
          -7,
          -7,
          -2.020005934626871,
          -2.545404787551787,
          -1.5763413502057928,
          -3.1271047983648077,
          -1.8672710189654482,
          -7,
          -7,
          -1.3155887158349062,
          -3.2478096594727353,
          -2.6893088591236203,
          -1.989746365634447,
          -1.9420080530223132,
          -2.811127970852324,
          -2.576341350205793,
          -1.8692317197309762,
          -2.0202337552699294,
          -2.204572137284902,
          -1.5859731714345076,
          -2.5020252559029195,
          -7,
          -2.8600383898071935,
          -2.037027879755775,
          -2.6261823846588936,
          -7,
          -7,
          -3.253580289562183,
          -2.1117104708745447,
          -2.595496221825574,
          -4.273949892550008,
          -7,
          -2.010299956639812,
          -7,
          -3.5384480517102173,
          -3.17376882313665,
          -3.4885507165004443,
          -3.1714113887235333,
          -3.7737864449811935,
          -1.833420339025857,
          -7,
          -1.761551988564182,
          -7,
          -7,
          -1.9134353822230297,
          -7,
          -1.417194807964776,
          -1.5975123635772417,
          -2.2648178230095364,
          -2.812731096942942,
          -1.312811826212088,
          -7,
          -7,
          -2.720159303405957,
          -7,
          -7,
          -2.8102325179950842,
          -7,
          -7,
          -2.2533380053261065,
          -1.410308485914647,
          -3.0224283711854865,
          -7,
          -7,
          -2.271841606536499,
          -7,
          -2.4727564493172123,
          -2.8109042806687006,
          -2.566301484735771,
          -3.533772058384718,
          -7,
          -2.414137362184477,
          -2.2648178230095364,
          -7,
          -2.330413773349191,
          -7,
          -3.168021270953063,
          -7,
          -7,
          -7,
          -3.4848690327204026,
          -7,
          -7,
          -7,
          -2.832508912706236,
          -7,
          -3.5746099413401873,
          -7,
          -7,
          -2.5599066250361124,
          -7,
          -2.9273703630390235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.364119300390762,
          -7,
          -7,
          -7,
          -7,
          -2.5484771632553307,
          -2.2595938788859486,
          -7,
          -7,
          -7,
          -7,
          -3.9359101364305076,
          -2.701088048570016,
          -7,
          -7,
          -3.3497344992127642,
          -7,
          -7,
          -7,
          -2.998259338423699,
          -2.673941998634088,
          -7,
          -3.964530684927539,
          -2.9800033715837464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.747353535486769,
          -7,
          -7,
          -7,
          -7,
          -2.173671784932268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.155411956437706,
          -7,
          -2.972665592266111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3558727748926644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1085650237328344,
          -7,
          -7,
          -3.633443205166375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.074816440645175,
          -7,
          -3.682248252589059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.826398782187618,
          -7,
          -7,
          -2.993876914941211,
          -7,
          -3.1341771075767664,
          -7,
          -2.6283889300503116,
          -7,
          -7,
          -2.5511269556556435,
          -7,
          -7,
          -7,
          -7,
          -3.216429830876251,
          -7,
          -3.5974757898703773,
          -4.120376479744434,
          -7,
          -7,
          -7,
          -3.5111674626951785,
          -7,
          -3.208441356438567,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -2.7126497016272113,
          -7,
          -7,
          -3.5154322631124733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.131378035763099,
          -3.033959590819456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.098539897992862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.70557864861638,
          -7,
          -7,
          -7,
          -2.625312450961674,
          -2.987219229908005,
          -7,
          -3.1648991988610664,
          -7,
          -7,
          -7,
          -2.9561684304753633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1157768761589635,
          -7,
          -7,
          -3.013222034507356,
          -7,
          -7,
          -3.0806264869218056,
          -7,
          -7,
          -7,
          -7,
          -3.0017337128090005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.796445242184168,
          -7,
          -1.978940969735289,
          -2.3502480183341627,
          -2.4771212547196626,
          -2.312283165791478,
          -2.6299190355035416,
          -3.030599721965951,
          -2.9253120914996495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1649473726218416,
          -7,
          -4.037469404238489,
          -7,
          -2.4573771965239053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1692964762592784,
          -7,
          -7,
          -7,
          -7,
          -2.4819201376014313,
          -7,
          -7,
          -7,
          -3.2342641243787895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.710963118995276,
          -7,
          -2.9633155113861114,
          -3.050379756261458,
          -3.5060041550265835,
          -7,
          -7,
          -7,
          -2.1678709288089903,
          -7,
          -7,
          -3.017450729510536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8296253533580495,
          -3.0622058088197126,
          -7,
          -7,
          -3.0111473607757975,
          -7,
          -2.1573560154410694,
          -7,
          -7,
          -3.219715475855501,
          -2.6875289612146345,
          -2.7596678446896306,
          -2.9894498176666917,
          -4.011802963585356,
          -7,
          -7,
          -2.9558938212459145,
          -7,
          -7,
          -2.3643633546157306,
          -7,
          -2.808885867359812,
          -2.3805730030668872,
          -3.258876629372131,
          -2.7319914490189294,
          -2.724821808681988,
          -3.000867721531227,
          -7,
          -3.2208922492195193,
          -7,
          -7,
          -7,
          -7,
          -3.12515582958053,
          -7,
          -2.6503075231319366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.49373680227684,
          -4.434080047708787,
          -7,
          -3.252610340567373,
          -3.9507176969896345,
          -2.7461150183833354,
          -7,
          -7,
          -7,
          -3.1908917169221698,
          -3.22284647997415,
          -7,
          -7,
          -2.916980047320382,
          -7,
          -7,
          -2.465878338646378,
          -7,
          -2.9537596917332287,
          -7,
          -2.1760912590556813,
          -2.3608554664937946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5076892305931007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3570959250957335,
          -7,
          -4.61523440120683,
          -7,
          -7,
          -7,
          -4.312318429847517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4086553999424645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.361255520058149,
          -7,
          -7,
          -7,
          -7,
          -4.01598810538413,
          -3.7826875682349663,
          -7,
          -3.7740057302582093,
          -7,
          -3.94875518016827,
          -2.3305446835180503,
          -2.268928822432613,
          -3.4902043694603857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4056877866727775,
          -7,
          -7,
          -7,
          -3.1258064581395266,
          -3.6669483178403244,
          -4.681706949373032,
          -4.572235371078456,
          -2.9827233876685453,
          -3.404833716619938,
          -2.9995654882259823,
          -2.926919638018857,
          -7,
          -7,
          -3.0642707529740063,
          -4.080698622871129,
          -7,
          -3.1099158630237933,
          -7,
          -4.2907467156120855,
          -7,
          -3.4032063416448066,
          -7,
          -2.4737496570134776,
          -7,
          -7,
          -3.4975462870162044,
          -2.978882520617143,
          -7,
          -3.2241643703992757,
          -7,
          -2.92668535582776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0623312368297984,
          -2.2157256645575676,
          -1.3549499934509917,
          -7,
          -2.8752060040968903,
          -2.065477859320429,
          -2.9380190974762104,
          -1.5116677767193454,
          -7,
          -2.4989010290429046,
          -2.574417135795665,
          -2.4856504575326674,
          -1.4486188281513872,
          -2.1513698502474603,
          -7,
          -3.791760804012905,
          -2.1480625354554377,
          -2.745465168670727,
          -7,
          -7,
          -3.085290578230065,
          -3.1931245983544616,
          -2.456619044777273,
          -1.4241553915088128,
          -2.7218106152125467,
          -7,
          -2.389106992659985,
          -7,
          -2.9474337218870508,
          -4.478321143704149,
          -3.6056869554272506,
          -3.8432483550956227,
          -7,
          -7,
          -1.6947958880615075,
          -3,
          -1.8226038992559745,
          -7,
          -2.493225621510431,
          -1.7246923259043043,
          -7,
          -2.5048105531506915,
          -7,
          -2.03342375548695,
          -3.2748503200166645,
          -7,
          -2.323252100171687,
          -7,
          -7,
          -1.8311381767490547,
          -2.386880986817247,
          -3.6454615702388433,
          -7,
          -2.1884597362982907,
          -2.2873537727147464,
          -7,
          -3.54703589974001,
          -7,
          -7,
          -7,
          -1.7012299980669174,
          -2.3258659195428875,
          -2.4917117901707675,
          -2.7964355588101744,
          -3.0546130545568877,
          -7,
          -7,
          -2.9786369483844743,
          -3.1584378838985643,
          -2.552972237463008,
          -2.1715175075429207,
          -1.980382171853643,
          -2.9025467793139916,
          -7,
          -1.7688846493563668,
          -1.6318967027420204,
          -0.8369292509368298,
          -2.8270460170047342,
          -0.7512351573632999,
          -2.0800156257123503,
          -2.746763897156223,
          -2.412740466538526,
          -2.044510177307225,
          -3.417969642214737,
          -2.3725438007590705,
          -3.050379756261458,
          -7,
          -7,
          -3.983265352566545,
          -7,
          -2.384263785722803,
          -3.39375064034808,
          -2.8779674948747114,
          -3.2893659515200318,
          -2.90655949500245,
          -2.8033249304451706,
          -2.8505100927111355,
          -1.8498444750387184,
          -7,
          -1.8105205435269653,
          -7,
          -1.9134353822230297,
          -7,
          -7,
          -2.942008053022313,
          -2.6766936096248664,
          -7,
          -2.1597636836762164,
          -2.1052668143618662,
          -7,
          -7,
          -2.288696260590256,
          -2.397592434038117,
          -3.000434077479319,
          -2.339650157613684,
          -3.201806642957022,
          -7,
          -2.831549851995756,
          -2.27600198996205,
          -2.8767949762007006,
          -7,
          -7,
          -7,
          -7,
          -2.7197454925295768,
          -7,
          -2.4399141343633817,
          -2.808773457761177,
          -3.5459253293558426,
          -2.9894498176666917,
          -2.916453948549925,
          -3.4577305482459986,
          -2.946943270697825,
          -7,
          -3.0131477995126383,
          -7,
          -7,
          -2.3671487688723643,
          -3.243905770217521,
          -7,
          -7,
          -7,
          -3.0549958615291417,
          -2.617000341120899,
          -3.6242820958356683,
          -2.9232440186302764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.949136910740208,
          -7,
          -7,
          -7,
          -7,
          -2.401528180600803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.697727386944923,
          -7,
          -7,
          -3.2397998184470986,
          -3.71594766128561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3846221884515435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.403977963669355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5508884680813524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.067597743260208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8771985152717896,
          -7,
          -7,
          -7,
          -3.610104774904159,
          -7,
          -3.543819805142658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.863382348440788,
          -7,
          -7,
          -7,
          -7,
          -3.9413623357117613,
          -7,
          -7,
          -7,
          -3.404063614883892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7941471074965745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9077247853330963,
          -7,
          -7,
          -3.3711030620190323,
          -7,
          -7,
          -3.4893959217271293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.668106237932731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4705574852172743,
          -7,
          -7,
          -7,
          -2.8796692056320534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.762453482363547,
          -4.680081571848349,
          -7,
          -7,
          -7,
          -3.0247592390353963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.705614291809137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6094876898532853,
          -7,
          -7,
          -7,
          -3.649334858712142,
          -7,
          -7,
          -7,
          -1.6781215307589266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.716086853774832,
          -7,
          -7,
          -7,
          -2.555429791511689,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4832203908795663,
          -7,
          -7,
          -7,
          -7,
          -3.569958818096594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.060130999531045,
          -7,
          -4.039090359899945,
          -7,
          -7,
          -3.6207258227036743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4168900301730125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.211792701460719,
          -3.487540245067744,
          -3.8466463285771173,
          -7,
          -3.2364631637113215,
          -3.183933830133716,
          -2.353700623519698,
          -3.160199906751567,
          -2.7060562169997526,
          -7,
          -2.7065536684845606,
          -3.8247872980310382,
          -2.8333201757088684,
          -2.9434219625521845,
          -2.454973164446654,
          -3.4287825114969546,
          -3.2263259684529233,
          -2.4714393298509454,
          -2.467467158083198,
          -3.520433141781531,
          -3.5451008497880436,
          -3.5535324302784037,
          -1.4706391271917423,
          -2.950323707873046,
          -2.182273491306374,
          -3.74808461124624,
          -2.9682299255667552,
          -2.587398338914126,
          -7,
          -2.328627177542981,
          -2.502336063378186,
          -3.0517311960598494,
          -3.5172618951360146,
          -2.862926062941731,
          -2.7089704819510434,
          -3.694166295933198,
          -3.5363690286780414,
          -3.3951341074778125,
          -1.8462907933844055,
          -4.0664377464539925,
          -7,
          -4.599839422193567,
          -3.0988359340440947,
          -3.5989545668854097,
          -7,
          -4.138933940256924,
          -7,
          -3.795022162871388,
          -7,
          -7,
          -4.153967221645479,
          -4.212427332726591,
          -7,
          -7,
          -3.417859036208306,
          -7,
          -7,
          -3.748885440009517,
          -4.251540888649978,
          -7,
          -7,
          -3.399587200018076,
          -3.6107532922391736,
          -3.9243798055581998,
          -7,
          -7,
          -7,
          -4.160218347068163,
          -7,
          -4.653391020371839,
          -3.814647069451856,
          -4.143764014612251,
          -7,
          -7,
          -3.799994944688714,
          -7,
          -3.6055205234374688,
          -7,
          -7,
          -3.925879089301501,
          -7,
          -7,
          -3.9322301667562654,
          -4.115088823225195,
          -7,
          -4.055865492428976,
          -7,
          -7,
          -7,
          -4.106530853822381,
          -7,
          -7,
          -7,
          -7,
          -2.3893188704635238,
          -1.930215397978364,
          -7,
          -3.264463634204881,
          -2.6364878963533656,
          -2.5407762338899396,
          -3.0095217143038493,
          -2.172700208504903,
          -7,
          -7,
          -2.8893526431528884,
          -2.522299299588104,
          -2.845747057728752,
          -3.239674787646781,
          -2.5644030148909867,
          -3.175898196379951,
          -2.3985367534165967,
          -2.470452494407648,
          -2.0482897721854596,
          -2.409087369447835,
          -1.6861612792710872,
          -2.700310298799515,
          -2.9339931638312424,
          -2.4755501306283416,
          -7,
          -7,
          -7,
          -2.6651586852921563,
          -7,
          -7,
          -2.3393760423636945,
          -2.562585506193841,
          -1.588261806023172,
          -2.9612628523150515,
          -2.779776808670381,
          -7,
          -2.5456444325852305,
          -7,
          -7,
          -7,
          -3.4087486061842442,
          -3.4665710723863543,
          -3.500648063371912,
          -1.7003686995285836,
          -7,
          -2.2187688400680257,
          -2.2327286876731725,
          -1.7001945196638903,
          -7,
          -2.422488823515177,
          -3.4559102403827433,
          -3.5563025007672873,
          -2.9319298313009488,
          -3.4774106879072515,
          -7,
          -7,
          -2.1547706418025814,
          -2.221586454888828,
          -2.8262044234992527,
          -2.911290807477995,
          -2.2268453039888003,
          -7,
          -2.798809951364486,
          -7,
          -2.493893521283257,
          -3.1781132523146316,
          -1.6984000639892567,
          -1.861608054071942,
          -7,
          -2.8410749297371463,
          -2.6740734238074024,
          -7,
          -7,
          -1.6297705116057013,
          -7,
          -7,
          -3.3354579006893843,
          -7,
          -3.508798965403905,
          -3.4130761314903664,
          -7,
          -3.418218402783965,
          -2.8370831508231857,
          -2.2372085050255706,
          -1.7401731378151295,
          -2.5477747053878224,
          -2.916137983107175,
          -7,
          -7,
          -2.407701729076816,
          -2.058231752710575,
          -2.755722444903458,
          -1.5512816993922365,
          -2.6801654796837506,
          -2.2777237887624535,
          -2.469822015978163,
          -3.079543007402906,
          -1.9209082899761751,
          -7,
          -3.0494764543837896,
          -7,
          -3.137354111370733,
          -7,
          -7,
          -7,
          -7,
          -3.4523998459114416,
          -7,
          -1.9985942145760733,
          -7,
          -3.493597449000527,
          -2.7506626461340558,
          -3.4566696294237573,
          -3.0191162904470725,
          -7,
          -2.087692704811194,
          -2.471550553511363,
          -2.7622095125079533,
          -7,
          -7,
          -2.1087731188407464,
          -7,
          -7,
          -7,
          -3.171726453653231,
          -7,
          -7,
          -3.0755469613925306,
          -2.553655508356001,
          -3.430961453354948,
          -3.4560622244549513,
          -7,
          -2.5606422499960773,
          -7,
          -7,
          -3.2528530309798933,
          -7,
          -7,
          -2.998695158311656,
          -2.498634835665338,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5784959493756787,
          -3.4345689040341987,
          -3.4742162640762553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275178857235708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.305351369446624,
          -7,
          -7,
          -2.403120521175818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517684039800974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7561033715851053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.668944734457734,
          -7,
          -3.409087369447835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8506462351830666,
          -7,
          -7,
          -4.067749492151028,
          -7,
          -7,
          -7,
          -7,
          -2.509202522331103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8506462351830666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.604118006192035,
          -7,
          -7,
          -2.822494985278751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.603144372620182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605897351644974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097704912593001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.242541428298384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3915701954182165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4728295567127057,
          -3.1755118133634475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.252124552505644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1451964061141817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.632072431957763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.984617313236748,
          -2.080987046910887,
          -7,
          -7,
          -7,
          -3.9846623061901068,
          -7,
          -2.496929648073215,
          -7,
          -3.7716609593488872,
          -7,
          -4.626935446018323,
          -2.622214022966295,
          -2.833784374656479,
          -7,
          -7,
          -3.1838390370564214,
          -7,
          -7,
          -7,
          -3.4626974081017172,
          -7,
          -7,
          -2.724275869600789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6334684555795866,
          -7,
          -2.130333768495006,
          -7,
          -7,
          -2.3935752032695876,
          -7,
          -2.7259116322950483,
          -3.5833121519830775,
          -7,
          -7,
          -7,
          -3.254064452914338,
          -7,
          -2.214843848047698,
          -1.7323937598229684,
          -7,
          -7,
          -7,
          -2.2624510897304293,
          -2.3502480183341627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3350882209232402,
          -3.4272877063969456,
          -2.693726948923647,
          -7,
          -2.2776092143040914,
          -7,
          -7,
          -2.298853076409707,
          -3.398981066658131,
          -2.833784374656479,
          -7,
          -7,
          -3.216957207361097,
          -7,
          -7,
          -3.285782273779395,
          -7,
          -1.575187844927661,
          -3.4093412685967817,
          -7,
          -7,
          -2.3026555539507187,
          -3.7179200258369938,
          -7,
          -7,
          -7,
          -1.4771212547196626,
          -7,
          -7,
          -7,
          -2.346352974450639,
          -7,
          -4.310523383951521,
          -7,
          -7,
          -3.97806633408362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.417194807964776,
          -2.942008053022313,
          -7,
          -7,
          -2.298853076409707,
          -7,
          -3.670060217473134,
          -1.6901960800285138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.782472624166286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3534353378561645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.974626813873033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.582063362911709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.056657156668353,
          -7,
          -7,
          -7,
          -3.3057811512549824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.400572524359314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.558624582816597,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.402175375031505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02848991652189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.214843848047698,
          -7,
          -7,
          -7,
          -7,
          -2.3010299956639813,
          -7,
          -7,
          -2.552668216112193,
          -7,
          -2.5276299008713385,
          -7,
          -7,
          -3.7404153280594743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.824125833916549,
          -7,
          -7,
          -7,
          -7,
          -2.8363241157067516,
          -7,
          -7,
          -7,
          -7,
          -3.7590253691608635,
          -7,
          -7,
          -7,
          -2.6954816764901977,
          -2.9867717342662448,
          -7,
          -3.5161385767170743,
          -3.796435558810175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9618006391916785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1089031276673134,
          -3.4219328132785085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0744873049856905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3664229572259727,
          -7,
          -2.7737864449811935,
          -7,
          -7,
          -4.029188910280547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2899418034805743,
          -7,
          -7,
          -2.722633922533812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1319392952104246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9995654882259823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5017437296279943,
          -7,
          -7,
          -5.1494100370500995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985561187773345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5754765086019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6201360549737576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9807606420143298,
          -2.8305886686851442,
          -2.376576957056512,
          -7,
          -7,
          -2.5440680443502757,
          -7,
          -7,
          -7,
          -7,
          -3.4220971631317103,
          -7,
          -7,
          -7,
          -4.60672522457584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.620836748293895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.433026979298686,
          -7,
          -7,
          -3.942417337758467,
          -7,
          -7,
          -7,
          -7,
          -2.463395230212905,
          -3.4260230156898763,
          -7,
          -7,
          -7,
          -7,
          -2.8000293592441343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.033962268335752,
          -7,
          -4.030235296012245,
          -7,
          -7,
          -7,
          -4.39292546917228,
          -7,
          -7,
          -4.1744862327616,
          -7,
          -4.608055114382654,
          -7,
          -7,
          -7,
          -4.784674339064312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.226780286814562,
          -3.7438232216037504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.348285387522612,
          -7,
          -7,
          -7,
          -4.570986347596933,
          -3.09790774336585,
          -3.2539031250960253,
          -7,
          -4.049683089088249,
          -2.963787827345555,
          -4.24149667332751,
          -3.7795964912578244,
          -3.197280558125619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.184350674046956,
          -7,
          -7,
          -3.449883192013988,
          -4.678641275182585,
          -7,
          -7,
          -7,
          -7,
          -3.3553557233947067,
          -7,
          -7,
          -7,
          -3.7545012293869173,
          -2.41161970596323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4194600727860704,
          -2.5786392099680726,
          -4.00238207493276,
          -3.4486468722994976,
          -7,
          -4.632851925998251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.58798021145153,
          -2.2013971243204513,
          -2.0003946338135266,
          -2.6857417386022635,
          -2.5202027086237306,
          -3.3857849588433355,
          -2.1164416975393117,
          -2.2889196056617265,
          -2.0644579892269186,
          -3.077731179652392,
          -7,
          -3.7244909150330834,
          -1.7438036371758014,
          -2.096330567315823,
          -7,
          -3.0419450721452637,
          -7,
          -2.9492273190678455,
          -7,
          -2.829303772831025,
          -2.32413541128684,
          -2.946452265013073,
          -7,
          -7,
          -1.8715729355458788,
          -7,
          -3.526920532638649,
          -2.6766936096248664,
          -7,
          -4.167391188074075,
          -2.996302673373406,
          -3.7867829601784644,
          -1.9731278535996988,
          -3.356790460351716,
          -1.7368389826836437,
          -7,
          -2.060697840353612,
          -7,
          -1.4913616938342726,
          -1.9864271928107262,
          -7,
          -2.7846172926328756,
          -3.591954555046735,
          -7,
          -3.696967640744023,
          -2.8603380065709936,
          -2.4244149042036596,
          -2.184691430817599,
          -2.6546577546495245,
          -1.4975439260849654,
          -2.315550534421905,
          -4.3311032263764995,
          -2.6473829701146196,
          -7,
          -1.7678976160180906,
          -7,
          -2.9584956247570875,
          -7,
          -7,
          -3.663229634532868,
          -2.416640507338281,
          -3.131070522108716,
          -1.69975891369356,
          -3.391111613702803,
          -1.8731267636145004,
          -7,
          -7,
          -2.1367205671564067,
          -3.229340482911692,
          -7,
          -2.2706788361447066,
          -1.837047036359575,
          -2.7586596156078977,
          -1.8864907251724818,
          -1.8827142276202256,
          -2.4164185888449987,
          -2.3956175727530065,
          -7,
          -2.9380190974762104,
          -2.9595183769729982,
          -3.1272668183188985,
          -2.244524511570084,
          -2.9453044216515423,
          -3.357934847000454,
          -3.2304489213782737,
          -3.196452541703389,
          -7,
          -7,
          -3.66661156841903,
          -7,
          -2.171726453653231,
          -7,
          -3.613016830283682,
          -2.196245290694014,
          -7,
          -3.678700434998304,
          -3.279894980011638,
          -2.123851640967086,
          -7,
          -1.9225524667613758,
          -7,
          -1.5975123635772417,
          -2.6766936096248664,
          -3.4523998459114416,
          -2.298853076409707,
          -7,
          -7,
          -3.0027521334499916,
          -7,
          -7,
          -7,
          -7,
          -2.7641761323903307,
          -7,
          -2.6283889300503116,
          -3.3995006613146104,
          -7,
          -2.8344207036815328,
          -2.4409090820652177,
          -2.6180480967120925,
          -2.187520720836463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1845021545095675,
          -3.504742636271688,
          -7,
          -2.4771212547196626,
          -7,
          -2.737788791709675,
          -7,
          -7,
          -3.6752741208880217,
          -7,
          -7,
          -2.8555191556678,
          -3.452246574520437,
          -7,
          -2.173186268412274,
          -7,
          -2.661812685537261,
          -7,
          -3.24699069924155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.893484346218486,
          -7,
          -7,
          -7,
          -4.876985262766487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5428254269591797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6923180442592787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6665179805548807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517024258314842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.716003343634799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.73550308887706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368351977697725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2949069106051923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.979821430030225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.249198357391113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.437750562820388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.299921130330193,
          -7,
          -7,
          -7,
          -7,
          -4.540967306429246,
          -7,
          -2.859138297294531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9791020148025416,
          -7,
          -7,
          -3.2397998184470986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.629409599102719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.154403683246536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9823617016331467,
          -2.285557309007774,
          -7,
          -7,
          -7,
          -3.982406928863795,
          -7,
          -2.4216039268698313,
          -7,
          -3.7679717213816186,
          -7,
          -7,
          -2.8976270912904414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8198070645907563,
          -7,
          -7,
          -7,
          -4.338297090232691,
          -7,
          -7,
          -7,
          -2.57978359661681,
          -7,
          -7,
          -7,
          -2.130333768495006,
          -3.086537783753207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.381638446726156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6842467475153124,
          -7,
          -7,
          -7,
          -2.5634810853944106,
          -7,
          -7,
          -7,
          -3.2801228963023075,
          -7,
          -2.4313637641589874,
          -7,
          -7,
          -7,
          -7,
          -3.7137424784090824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.309459822461211,
          -7,
          -7,
          -3.976922851374828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2648178230095364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6685101605706656,
          -1.6946051989335686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.173186268412274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.649821463224565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9734742269919017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.149126699742614,
          -3.845315132986487,
          -7,
          -7,
          -7,
          -7,
          -4.14569352390422,
          -7,
          -7,
          -2.8040954442382904,
          -7,
          -7,
          -7,
          -3.775270548461582,
          -3.1118623514410926,
          -3.847510965203248,
          -7,
          -7,
          -7,
          -7,
          -2.1222968014541115,
          -3.293362554711446,
          -7,
          -3.127016398361401,
          -2.5384162586458476,
          -7,
          -7,
          -7,
          -3.5487885153415606,
          -3.5472515145799526,
          -7,
          -3.107523049907903,
          -4.149773177559665,
          -7,
          -4.149403879508583,
          -3.6740953241367937,
          -4.1557913523576175,
          -4.145910834132374,
          -4.1514311436611395,
          -7,
          -7,
          -7,
          -3.1185463975292795,
          -7,
          -4.154210882206974,
          -3.852601969338235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.148232359644905,
          -2.952165426358076,
          -2.541394319744552,
          -7,
          -4.149280710341023,
          -3.575043441108574,
          -7,
          -7,
          -4.1478308499434595,
          -3.6722210445716033,
          -4.1592663310934945,
          -3.6972293427597176,
          -7,
          -7,
          -7,
          -2.2511191040920613,
          -7,
          -7,
          -4.147861748487239,
          -7,
          -4.1998648337322555,
          -3.3813257060905904,
          -7,
          -7,
          -3.783331762887424,
          -7,
          -4.151339200296363,
          -7,
          -7,
          -7,
          -7,
          -4.147336174036738,
          -4.145972902802181,
          -3.3801207542684404,
          -7,
          -4.164858246962555,
          -4.151553704542976,
          -3.554640561254055,
          -7,
          -2.4947987194361336,
          -3.85582190540603,
          -4.147985320683805,
          -7,
          -7,
          -7,
          -3.3690611665868144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.984617313236748,
          -7,
          -4.146686055647526,
          -3.84963435786558,
          -7,
          -3.3166591552474705,
          -7,
          -4.146593102096305,
          -3.6796701132842666,
          -7,
          -2.338906665336077,
          -3.450125886731954,
          -7,
          -7,
          -3.8553071052068284,
          -3.693287157005656,
          -7,
          -3.2788805690817564,
          -2.851506257287449,
          -4.147614498562027,
          -3.855367701618522,
          -7,
          -3.135170829433316,
          -7,
          -3.868556277657932,
          -3.395908557341382,
          -4.157638064100917,
          -7,
          -3.2462215189159713,
          -3.3737393183514452,
          -7,
          -7,
          -2.472300437219242,
          -7,
          -4.145507171409663,
          -3.844725627973226,
          -7,
          -7,
          -2.676247950804945,
          -3.311674409676095,
          -3.7397568869831948,
          -3.463534660185131,
          -7,
          -4.301420684913891,
          -7,
          -7,
          -3.68103007067304,
          -3.514441490246763,
          -3.324840768927558,
          -7,
          -7,
          -7,
          -3.066969349796947,
          -7,
          -7,
          -7,
          -7,
          -4.1461590556048185,
          -7,
          -2.887202586250158,
          -7,
          -7,
          -7,
          -3.3809043531298437,
          -3.8491736330988267,
          -7,
          -2.368104755322076,
          -7,
          -7,
          -7,
          -7,
          -3.845872874264218,
          -7,
          -7,
          -2.866905912191609,
          -7,
          -2.7410271294508175,
          -7,
          -4.168173262170234,
          -2.147473108182756,
          -4.148170613077387,
          -3.8574531170352664,
          -3.5551246908736487,
          -3.5574771250690587,
          -3.464072042578179,
          -7,
          -4.15463695951842,
          -7,
          -7,
          -7,
          -4.14903426716125,
          -4.181672122068266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.459118225368112,
          -7,
          -3.050290502385774,
          -4.14813973650122,
          -3.8471097408372383,
          -4.145817714491828,
          -4.146686055647526,
          -3.0064660422492318,
          -4.146283113159587,
          -7,
          -4.145848756590544,
          -2.751086554886017,
          -3.8514112423949736,
          -7,
          -4.14622108881188,
          -7,
          -4.145507171409663,
          -7,
          -4.1487876840563125,
          -7,
          -4.147738141119988,
          -3.257138370205915,
          -3.5628576747729945,
          -3.117628173221579,
          -2.4900290301077472,
          -7,
          -3.845872874264218,
          -3.669502834104343,
          -3.3147397510568504,
          -7,
          -7,
          -4.153021743626138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145538235712233,
          -7,
          -7,
          -2.259362396535251,
          -7,
          -7,
          -7,
          -7,
          -3.8474184078594025,
          -3.37045140442245,
          -7,
          -3.674769314015426,
          -3.1720188094245563,
          -4.1476763242410986,
          -3.5114287843162253,
          -3.1063042456868444,
          -7,
          -7,
          -7,
          -2.8340888222552794,
          -3.078577639999239,
          -2.6162770806491906,
          -7,
          -2.6282346582199416,
          -4.147336174036738,
          -4.1461590556048185,
          -7,
          -2.6284619145865564,
          -3.467371287647479,
          -3.692347443107278,
          -3.1412216625781246,
          -3.88024177589548,
          -7,
          -7,
          -7,
          -7,
          -3.3163897510731957,
          -3.8547613566936363,
          -7,
          -4.1525329484345255,
          -7,
          -7,
          -3.846120529546089,
          -7,
          -3.5460797451732575,
          -2.985716980907719,
          -3.6879449236700936,
          -3.854700675614607,
          -3.849327262334538,
          -2.2067772700461354,
          -7,
          -7,
          -2.4742386844826463,
          -4.14646913307187,
          -7,
          -3.31072364970371,
          -3.8474184078594025,
          -2.89915787514118,
          -2.980579017498445,
          -3.874365835730049,
          -7,
          -3.5668203510856804,
          -3.850125259486936,
          -2.879878922786258,
          -3.4718195861103727,
          -4.14674801363064,
          -7,
          -7,
          -4.175975431749513,
          -3.382827209736365,
          -7,
          -7,
          -3.8538198458567634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14674801363064,
          -3.855670556918036,
          -7,
          -3.5789446747120905,
          -3.734426426461585,
          -3.075530164051766,
          -7,
          -2.710671665738311,
          -2.8245091988420703,
          -3.2166935991697545,
          -7,
          -3.4583960874262516,
          -7,
          -3.2130452804616065,
          -2.937939998216925,
          -7,
          -4.146624088824005,
          -4.145786670174155,
          -7,
          -3.5582284218033258,
          -7,
          -7,
          -7,
          -3.5719125414899997,
          -4.148386687666821,
          -2.5531545481696254,
          -7,
          -7,
          -2.356945754549756,
          -2.9446388201696494,
          -3.555551218886293,
          -3.555789489124939,
          -3.377905927931074,
          -2.969169146329657,
          -2.6489173347428867,
          -3.474541246737956,
          -2.1292125228753833,
          -7,
          -2.169581255505934,
          -3.130316836606199,
          -3.214829135925814,
          -3.155009715988005,
          -1.8454921471858483,
          -3.3109188957449325,
          -3.220449201670816,
          -2.1105220719631896,
          -2.8049678348367264,
          -2.8099523099190993,
          -3.4352868122401277,
          -3.326574793726331,
          -2.863179234041462,
          -2.3929840436331347,
          -2.960419808988687,
          -3.971229447276241,
          -3.2852701156989976,
          -3.145403607683906,
          -4.184577874932025,
          -2.2514848516286277,
          -2.5369742892668388,
          -3.2233451849791965,
          -3.1488269225528294,
          -2.8458690979382313,
          -2.6762362167633116,
          -3.492047617347526,
          -3.699542895027404,
          -3.0386803610657083,
          -2.7553855866496852,
          -2.9793966030856,
          -3.0947039943211667,
          -2.943826991798443,
          -2.3276951156740915,
          -2.188436857621509,
          -7,
          -3.284465441307329,
          -4.169056932744852,
          -3.0959378878980806,
          -2.339804651904391,
          -2.641927149514438,
          -2.1709171502194033,
          -3.0783307071320714,
          -3.128376186977645,
          -7,
          -3.327268092053331,
          -4.182129214052998,
          -3.8507993444678896,
          -7,
          -2.4701673913428643,
          -2.579211780231499,
          -3.5590983008782198,
          -2.1364542995951337,
          -2.628221247239599,
          -3.462504953811799,
          -4.149957708891059,
          -3.417554724363455,
          -4.151124590050682,
          -2.175705047841342,
          -3.7892280572673354,
          -3.6075493781848884,
          -2.4552133746525167,
          -2.5666627441806,
          -4.149126699742614,
          -3.0317410385347316,
          -3.2988530764097064,
          -2.9224060357250012,
          -3.7078255683322316,
          -2.767897616018091,
          -3.6346535720376747,
          -2.061750828376922,
          -3.9155053617543767,
          -4.152838509892218,
          -2.518118139018857,
          -1.9621879551647274,
          -7,
          -2.3352263798583643,
          -3.699027906406887,
          -3.1954291424570624,
          -2.5757772516888866,
          -2.875043167411285,
          -2.896311834256591,
          -7,
          -7,
          -3.0785172332278914,
          -2.699140282511854,
          -1.2349774943255392,
          -3.247512964801066,
          -1.909139839001463,
          -2.3599578188144723,
          -1.8306329077074808,
          -1.1636368510098085,
          -1.883242924469617,
          -3.0385284580292,
          -3.3699267263788624,
          -1.398839659577722,
          -1.8032754011625363,
          -1.3004700206746918,
          -1.9990404978546072,
          -1.9942716315248012,
          -2.487858966359126,
          -1.776993439828789,
          -1.7160325448102618,
          -1.7430413347300022,
          -2.517342544745865,
          -2.0609414155040815,
          -1.9055313408689762,
          -2.719242477232849,
          -1.9792447784093805,
          -2.6808791744268112,
          -2.559476934347587,
          -3.448118620292148,
          -1.3576593668250876,
          -2.480862816368531,
          -3.0677835509421225,
          -1.900913067737669,
          -1.3084020041048854,
          -1.3981917992387312,
          -3.6697816152085365,
          -1.801011879135689,
          -2.5863439683539147,
          -2.175134758658844,
          -2.788844411651405,
          -4.145910834132374,
          -3.303782129113973,
          -1.7793286090293619,
          -2.753153914113024,
          -1.7394913617805503,
          -1.5222652921803954,
          -2.970439862951764,
          -1.6792740381044218,
          -1.9811768322540424,
          -1.0958209128367133,
          -3.8447877188278463,
          -1.77222428759243,
          -2.61687690940715,
          -2.3426877729215305,
          -1.6553518997858951,
          -2.8526324579115143,
          -3.069328864563374,
          -3.0705919315120402,
          -2.6284138529783205,
          -1.6187466999262725,
          -2.909258791202125,
          -2.5476246433698466,
          -1.6411935346546915,
          -2.7578513436855796,
          -1.3207734774351287,
          -2.694574943997341,
          -1.7729500566978358,
          -2.4361320532270767,
          -2.385424484360872,
          -2.4982908574480973,
          -7,
          -1.394065108209559,
          -2.1950569462894327,
          -2.6595174974349662,
          -2.288598319679449,
          -1.4930277111525112,
          -7,
          -2.824900281288046,
          -1.7289115124464807,
          -2.2562064396964416,
          -2.6154991488833446,
          -1.653641234917665,
          -2.116942635511364,
          -2.240017871143136,
          -1.7445068987146113,
          -1.3177898262770587,
          -1.6550152341972675,
          -1.7617254981477537,
          -1.515772210307093,
          -3.66919286729231,
          -3.145941869576122,
          -1.7719755284385301,
          -2.0365311289980585,
          -2.5143314936216132,
          -1.8374227413143636,
          -1.3037341520877823,
          -2.021922038373002,
          -1.34424936903324,
          -1.713722071471778,
          -1.4386662328043016,
          -3.1488801691282298,
          -2.6323083929197475,
          -3.1942984514279047,
          -4.146964796989748,
          -2.812731096942942,
          -2.1597636836762164,
          -1.9985942145760733,
          -3.670060217473134,
          -3.0027521334499916,
          -3.6685101605706656,
          -7,
          -3.6709567220428436,
          -3.0113589537066106,
          -3.4501566954065956,
          -2.0494993723533796,
          -1.6634496339132876,
          -1.9964491252422965,
          -1.7197486528851442,
          -1.9107223893805891,
          -2.1921864181570534,
          -2.53631790283572,
          -3.8485893458691725,
          -1.8468366233290923,
          -4.145910834132374,
          -4.145848756590544,
          -7,
          -2.538677930404596,
          -2.8292731336915784,
          -2.5285188124972784,
          -1.857502033916249,
          -2.1040627074755904,
          -2.7894240120068883,
          -2.717454750443031,
          -7,
          -2.1739555149123078,
          -3.1928770665826405,
          -3.543664583552706,
          -1.8624390834955207,
          -3.8452221064290137,
          -7,
          -1.6603020945120228,
          -1.9171881743915895,
          -2.8888590717747014,
          -7,
          -7,
          -2.9502431180103916,
          -3.8448187609265627,
          -1.9586328608246595,
          -3.3676975062069,
          -7,
          -4.145538235712233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.27534591240944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5578318990842086,
          -2.0588054866759067,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335237186909729,
          -7,
          -7,
          -7,
          -7,
          -2.2576785748691846,
          -2.255272505103306,
          -7,
          -7,
          -7,
          -7,
          -3.699230502883409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.725421550074259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.217009909804205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7361334553295675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6716355966021297,
          -3.1007150865730817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4345689040341987,
          -7,
          -7,
          -4.727833941178848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3750536497006407,
          -7,
          -7,
          -3.9710902131371153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0105119627372137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.164352855784437,
          -7,
          -4.848226076651172,
          -7,
          -1.8388490907372554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.496334505996817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8318697742805017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.798650645445269,
          -2.6334684555795866,
          -7,
          -7,
          -2.4800069429571505,
          -7,
          -7,
          -7,
          -7,
          -3.11277252110537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.735997884091794,
          -2.249198357391113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6009728956867484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432950059696654,
          -7,
          -7,
          -4.543956354265588,
          -2.9786369483844743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7035235131180295,
          -7,
          -7,
          -4.234188147853202,
          -7,
          -7,
          -7,
          -7,
          -4.347349533731457,
          -7,
          -7,
          -2.723044991643445,
          -7,
          -4.301637582726872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9301482197259796,
          -2.8822398480188234,
          -7,
          -4.136815657726849,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1829849670035815,
          -7,
          -7,
          -4.051249021610516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008355279859826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.75876054390998,
          -7,
          -7,
          -4.3313159246822295,
          -7,
          -7,
          -7,
          -4.0074917332953355,
          -7,
          -2.3483048630481607,
          -7,
          -7,
          -7,
          -3.9859202201235675,
          -2.130333768495006,
          -2.3283796034387376,
          -7,
          -7,
          -3.985965078304871,
          -7,
          -1.7442929831226763,
          -7,
          -7,
          -7,
          -3.8489789580184515,
          -2.3339508043872472,
          -7,
          -3.2778383330020473,
          -7,
          -7,
          -3.4191293077419758,
          -7,
          -7,
          -3.4670158184384356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.824971461123693,
          -7,
          -7,
          -7,
          -3.941083884430365,
          -7,
          -7,
          -3.3475251599986895,
          -2.18089014193745,
          -7,
          -7,
          -7,
          -1.845098040014257,
          -2.4447385572188063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.399673721481038,
          -7,
          -7,
          -7,
          -2.3263358609287517,
          -2.098643725817057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1968207439144254,
          -3.1772622739970817,
          -2.718501688867274,
          -7,
          -7,
          -7,
          -7,
          -0.9270902633957101,
          -7,
          -7,
          -2.514547752660286,
          -2.6483600109809315,
          -7,
          -7,
          -7,
          -2.987554549303304,
          -7,
          -1.4884022651293516,
          -3.013342904345347,
          -7,
          -3.4207806195485655,
          -2.9232440186302764,
          -3.4191293077419758,
          -7,
          -7,
          -7,
          -1.7817553746524688,
          -7,
          -7,
          -7,
          -2.399673721481038,
          -7,
          -4.010066630335587,
          -3.0874264570362855,
          -3.953034457250357,
          -7,
          -7,
          -1.8573324964312685,
          -7,
          -7,
          -7,
          -1.312811826212088,
          -2.1052668143618662,
          -7,
          -1.6901960800285138,
          -7,
          -1.6946051989335686,
          -3.6709567220428436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.05307844348342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.514547752660286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.142389466118836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9731278535996988,
          -7,
          -2.655138434811382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9624072223037277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.915610862661467,
          -7,
          -7,
          -7,
          -4.578295305120826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.114193834568074,
          -7,
          -7,
          -2.739572344450092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2255935481548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7011360660925265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.730507727707434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5709513581793884,
          -7,
          -7,
          -4.673186847835966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.849241236657997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.152419399400468,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.500881123850455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.15259407792747,
          -7,
          -7,
          -7,
          -4.7979112324184685,
          -7,
          -7,
          -7,
          -7,
          -3.158060793936605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9563509495317035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.666205875272384,
          -4.7493033508713305,
          -7,
          -7,
          -7,
          -3.0622058088197126,
          -3.719248398447946,
          -7,
          -4.258102265137589,
          -7,
          -3.040800061256529,
          -4.1004969087243035,
          -7,
          -4.804214421768175,
          -2.828398593415644,
          -7,
          -4.3926442017384275,
          -3.1914317403283383,
          -7,
          -7,
          -7,
          -4.801293921864864,
          -7,
          -3.9414972351325823,
          -3.780173243642594,
          -7,
          -7,
          -7,
          -7,
          -4.405303662984316,
          -3.3829428246253754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9158920731816305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8460586289641854,
          -3.7229628089424898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.135809359656516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8046845149069406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.635694810891918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.446640706109038,
          -4.08109515656134,
          -3.045540289014811,
          -7,
          -7,
          -2.5826314394896364,
          -2.9393528243805584,
          -3.6994040818153375,
          -3.1277525158329733,
          -7,
          -7,
          -3.7972675408307164,
          -7,
          -3.027747019428486,
          -7,
          -3.017450729510536,
          -1.0132330645412966,
          -3.063633545230785,
          -2.0376608084302044,
          -2.6236922220853542,
          -2.005642422654947,
          -2.9809119377768436,
          -3.0356965038452106,
          -1.9107768156582345,
          -2.076872040931254,
          -7,
          -7,
          -7,
          -3.0671328759643477,
          -2.095169351431755,
          -7,
          -3.1933150366306564,
          -3.320788989656518,
          -3.3627965209590185,
          -7,
          -1.3021517211655111,
          -7,
          -2.2993983300681498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.949877704036875,
          -2.443210816819927,
          -7,
          -2.4878035787194768,
          -3.003029470553618,
          -2.553073530637089,
          -7,
          -1.759290033024304,
          -7,
          -7,
          -2.7118875349737244,
          -2.381415942849977,
          -7,
          -7,
          -7,
          -2.919208884270423,
          -2.3324384599156054,
          -2.5171958979499744,
          -2.733375620132445,
          -7,
          -3.419028590097298,
          -7,
          -2.2293298111056714,
          -7,
          -2.949390006644913,
          -7,
          -7,
          -2.4971736565908635,
          -2.315130317183602,
          -7,
          -7,
          -2.6991870973082492,
          -7,
          -7,
          -7,
          -7,
          -2.978180516937414,
          -7,
          -3.076640443670342,
          -7,
          -7,
          -2.900757155159472,
          -2.359383703996949,
          -2.0863598306747484,
          -2.3101029976107674,
          -7,
          -7,
          -3.576203091230177,
          -2.317581231880614,
          -2.7641761323903307,
          -2.538238500689552,
          -3.3177082376103013,
          -2.889581802149624,
          -2.736771338404693,
          -3.1105448196607366,
          -2.571927088525855,
          -7,
          -0.6128430289361774,
          -7,
          -7,
          -7,
          -7,
          -3.493597449000527,
          -7,
          -7,
          -7,
          -3.0113589537066106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.745543201998024,
          -2.0442036624920537,
          -7,
          -7,
          -2.3447851226326604,
          -7,
          -7,
          -7,
          -2.842609239610562,
          -7,
          -7,
          -3.6878855248487055,
          -2.7620530494584163,
          -3.1929853790931624,
          -7,
          -7,
          -3.3935752032695876,
          -7,
          -7,
          -3.1371731930253115,
          -7,
          -7,
          -2.9334872878487053,
          -2.7933712489189557,
          -3.0751818546186915,
          -7,
          -7,
          -7,
          -7,
          -2.53793351859703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.877659244111609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.736436343979519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8547310172139424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.606617797736322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.433010955505026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.617566443067537,
          -7,
          -7,
          -7,
          -4.427599698924868,
          -7,
          -3.3931363002692168,
          -7,
          -4.7329162073263795,
          -7,
          -4.029830019310658,
          -7,
          -4.354655766358007,
          -7,
          -4.091684540012315,
          -7,
          -7,
          -7,
          -3.089154157054828,
          -4.3068965975393665,
          -7,
          -7,
          -7,
          -7,
          -4.070628844051428,
          -7,
          -7,
          -4.449308659474037,
          -7,
          -4.7038500115766535,
          -3.61857102812013,
          -4.580423138411845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.086857915659847,
          -7,
          -7,
          -7,
          -4.001387523486641,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.051981715369472,
          -7,
          -4.394133431866444,
          -7,
          -7,
          -7,
          -4.133719826715639,
          -7,
          -7,
          -3.5974757898703773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.155214539497588,
          -7,
          -7,
          -4.604398872220019,
          -3.784486532958129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.166836981760529,
          -3.3852933974078314,
          -7,
          -7,
          -7,
          -3.3656751404559175,
          -7,
          -7,
          -7,
          -7,
          -3.776555910703262,
          -2.6473829701146196,
          -4.02550043476675,
          -2.957607287060095,
          -2.8744818176994666,
          -7,
          -3.7407573233077707,
          -3.2024883170600935,
          -2.5199919713052874,
          -3.020775488193558,
          -2.2168254232660476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5262746454257536,
          -7,
          -7,
          -3.8661543714405875,
          -4.339461379281565,
          -2.836735424393361,
          -7,
          -3.354876422516234,
          -7,
          -2.8175653695597807,
          -7,
          -7,
          -7,
          -3.106870544478654,
          -7,
          -7,
          -7,
          -7,
          -3.394889257167419,
          -2.150449409460881,
          -2.3636119798921444,
          -7,
          -2.951823035315912,
          -7,
          -3.0136796972911926,
          -4.330900559667934,
          -7,
          -7,
          -7,
          -2.658369184249972,
          -3.8037301709745437,
          -7,
          -7,
          -7,
          -7,
          -4.126758953646628,
          -7,
          -2.911512714632127,
          -7,
          -2.296665190261531,
          -3.9210618907902783,
          -7,
          -3.2284859086849425,
          -2.8744818176994666,
          -7,
          -7,
          -2.3276143266206253,
          -7,
          -7,
          -3.594503043820089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3569814009931314,
          -7,
          -7,
          -7,
          -7,
          -3.79136310912706,
          -3.3861421089308186,
          -2.156851901070011,
          -2.346352974450639,
          -4.31194448508462,
          -3.1007150865730817,
          -3.6537429940257358,
          -3.803457115648414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7506626461340558,
          -7,
          -7,
          -7,
          -3.4501566954065956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1367205671564067,
          -3.0963885466873666,
          -7,
          -7,
          -7,
          -2.4356320489516605,
          -7,
          -7,
          -7,
          -2.606381365110605,
          -7,
          -7,
          -3.1835545336188615,
          -3.5033820634737327,
          -3.451632947456991,
          -7,
          -7,
          -2.6384892569546374,
          -7,
          -7,
          -3.8000293592441343,
          -7,
          -7,
          -7,
          -3.4507108781469196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.54703589974001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9020028913507296,
          -7,
          -7,
          -7,
          -4.400733651239303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.558960436273091,
          -2.4871383754771865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.029627239047413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.519066326864926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.45890212176587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.728451182944577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.226857570288723,
          -7,
          -3.857030798272624,
          -7,
          -7,
          -4.068723756708053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.196328202966489,
          -7,
          -7,
          -7,
          -3.6153186566114788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6070258784347855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.098068900278887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.54489861335298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015841571684366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3964608915070755,
          -4.397627204021875,
          -4.733221347312165,
          -7,
          -4.0313680628857735,
          -7,
          -7,
          -4.8024795364967785,
          -3.438893790829892,
          -4.277746700027364,
          -7,
          -4.049799277918987,
          -7,
          -4.608354849309348,
          -7,
          -5.10145836458231,
          -7,
          -4.784873942585328,
          -7,
          -7,
          -4.625085982478932,
          -4.449894751981211,
          -7,
          -4.704176264761226,
          -3.92069713446992,
          -7,
          -7,
          -4.176669932668149,
          -3.792391689498254,
          -7,
          -7,
          -7,
          -7,
          -3.9601376748637946,
          -7,
          -7,
          -7,
          -3.2561562792129193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.50266832770066,
          -7,
          -7,
          -7,
          -7,
          -4.611287733324417,
          -7,
          -7,
          -3.300378064870703,
          -7,
          -7,
          -7,
          -7,
          -4.276093991759217,
          -7,
          -7,
          -7,
          -4.156367400133521,
          -7,
          -7,
          -7,
          -4.086039331268039,
          -7,
          -4.332084820464514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071845201129409,
          -2.811976944336954,
          -2.541579243946581,
          -2.5816842319562445,
          -2.4073909044707316,
          -2.8948696567452528,
          -2.757485343853885,
          -2.4321672694425884,
          -2.622214022966295,
          -7,
          -2.573016729848248,
          -1.3705812577593128,
          -3.0590719375910913,
          -2.3706056009381484,
          -1.9850895069263812,
          -7,
          -3.7437448785924614,
          -2.30588853028431,
          -2.428620672671939,
          -7,
          -2.367355921026019,
          -3.4781334281005174,
          -7,
          -2.330819466495837,
          -2.1965906541173066,
          -2.002166061756508,
          -7,
          -2.505085346355816,
          -7,
          -7,
          -3.189578957286946,
          -3.7376596955178236,
          -3.3792976336001965,
          -7,
          -3.060697840353612,
          -7,
          -2.6532125137753435,
          -1.9673139182870836,
          -7,
          -7,
          -2.5675304805301185,
          -2.1183749671059116,
          -1.4113268573466697,
          -2.748630958693654,
          -7,
          -2.697839368218363,
          -7,
          -1.6937744673308175,
          -7,
          -2.3650197428165347,
          -2.0320812676114404,
          -2.7275412570285567,
          -4.331670190532614,
          -2.673941998634088,
          -7,
          -7,
          -3.0900227904759947,
          -2.850986404764101,
          -2.918554530550274,
          -2.3879827199214656,
          -7,
          -2.439332693830263,
          -3.2611835383544423,
          -7,
          -2.9182051383496885,
          -7,
          -7,
          -7,
          -7,
          -3.4079854213081364,
          -2.416640507338281,
          -2.123851640967086,
          -2.1097472377132287,
          -2.123851640967086,
          -7,
          -7,
          -2.694056500841752,
          -2.187520720836463,
          -2.8432327780980096,
          -2.39378404890088,
          -2.670709595223797,
          -3.4331295175804857,
          -1.9099448336376925,
          -2.725094521081469,
          -2.815577748324267,
          -2.0543576623225928,
          -1.9395192526186187,
          -2.298853076409707,
          -7,
          -3.9683895418470683,
          -2.9150478947700735,
          -1.9044450410769096,
          -2.960470777534299,
          -2.913792666770312,
          -7,
          -2.5228304876568752,
          -2.9796394122229075,
          -2.501591718957243,
          -7,
          -7,
          -7,
          -7,
          -2.720159303405957,
          -2.288696260590256,
          -3.4566696294237573,
          -7,
          -7,
          -7,
          -2.0494993723533796,
          -7,
          -7,
          -7,
          -7,
          -1.9308762911151123,
          -1.4032525456431375,
          -1.5185139398778875,
          -2.9265139350708855,
          -2.846543280888438,
          -2.851869600729766,
          -7,
          -2.151267675330649,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -2.605305046141109,
          -7,
          -3.6646419755561257,
          -2.552127207656179,
          -7,
          -2.515873843711679,
          -7,
          -3.045127306568027,
          -2.374748346010104,
          -2.2600713879850747,
          -3.432740292987791,
          -7,
          -7,
          -2.6872316010647745,
          -2.4120785485647107,
          -2.9708116108725178,
          -7,
          -7,
          -7,
          -7,
          -2.3173257840095487,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.217431299267857,
          -7,
          -7,
          -3.0874264570362855,
          -3.925134394436687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7288405683399715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.221635893166133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7704101315139065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.765668554759014,
          -7,
          -7,
          -7,
          -3.373693397708325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0051805125037805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7611758131557314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.253539918241502,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1740016264024247,
          -7,
          -7,
          -4.1962406839924995,
          -7,
          -7,
          -2.9206450014067875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3809344633307017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.846337112129805,
          -7,
          -7,
          -7,
          -3.362670929725667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.718824498690825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.821731821690044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.343802333161655,
          -7,
          -3.712060142461075,
          -7,
          -4.0240202005681205,
          -7,
          -7,
          -7,
          -3.643551368562945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.655575925143535,
          -7,
          -7,
          -3.076057595762826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.797990762449812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.831445826489906,
          -7,
          -7,
          -4.54831569852736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7756312495430016,
          -4.272329043274018,
          -7,
          -2.931966114728173,
          -7,
          -3.3679147387937527,
          -7,
          -7,
          -4.434393234712605,
          -7,
          -3.7413092088995694,
          -7,
          -7,
          -7,
          -2.87862623087069,
          -7,
          -7,
          -3.2924390761642086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.08781689793553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9283104872477113,
          -7,
          -4.5840031176456115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354185298625861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7552648914122466,
          -7,
          -7,
          -7,
          -7,
          -3.8010605298478555,
          -7,
          -3.778151250383644,
          -3.8467699535372186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8048479063618035,
          -4.696099989021025,
          -7,
          -7,
          -7,
          -4.614222059298785,
          -7,
          -7,
          -3.329499575762843,
          -7,
          -7,
          -7,
          -7,
          -4.282418170877648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.607787318992725,
          -3.4522583665480764,
          -7,
          -3.8576741678371116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9213395948885608,
          -7,
          -2.852479993636856,
          -7,
          -2.8178957571617955,
          -3.2229331309085762,
          -2.6567368704836722,
          -7,
          -7,
          -2.952930753389816,
          -1.9167463043212505,
          -3.1831274287013995,
          -2.6085260335771943,
          -3.0269416279590295,
          -7,
          -3.2875031431313193,
          -2.3745192273121476,
          -2.694312646223346,
          -2.833147111912785,
          -2.9912260756924947,
          -7,
          -3.0751818546186915,
          -2.2833012287035497,
          -7,
          -7,
          -2.7032913781186614,
          -2.9433708381373886,
          -2.1083394747888384,
          -2.711807229041191,
          -3.4726687041948,
          -3.412865548511456,
          -3.345232537394635,
          -7,
          -2.5643278286571864,
          -7,
          -2.7342662982171966,
          -2.815577748324267,
          -7,
          -7,
          -2.611723308007342,
          -2.5269850685599957,
          -1.4710892899497494,
          -2.0144155225606033,
          -7,
          -2.87671257519829,
          -3.0128372247051725,
          -1.5923234324930717,
          -7,
          -1.7250201619541745,
          -2.478566495593843,
          -2.8276922886744456,
          -3.1905917966861046,
          -2.3950350180286306,
          -7,
          -7,
          -7,
          -3.1252209363165644,
          -7,
          -3.0060379549973173,
          -3.2136062891507047,
          -2.918554530550274,
          -2.8184314255975202,
          -7,
          -2.4850901843909377,
          -2.8825245379548803,
          -2.960470777534299,
          -7,
          -7,
          -2.7765397662270646,
          -2.244689360492884,
          -2.530199698203082,
          -2.9020028913507296,
          -1.4522214053904476,
          -7,
          -7,
          -3.326745379565322,
          -2.54448146130858,
          -7,
          -2.357855473065863,
          -1.9623329030973808,
          -2.997677564080969,
          -2.1676864758514913,
          -3.048985302570711,
          -2.7315887651867388,
          -2.4544092586862307,
          -1.5699101057997673,
          -7,
          -2.0718820073061255,
          -3.6736888931512324,
          -2.738780558484369,
          -2.7810369386211318,
          -2.719952447254438,
          -3.318188594151796,
          -7,
          -2.9274636894564674,
          -3.2081052932151874,
          -2.3447560348940004,
          -7,
          -3.0464951643347082,
          -2.7481880270062007,
          -7,
          -7,
          -2.397592434038117,
          -3.0191162904470725,
          -7,
          -2.7641761323903307,
          -7,
          -1.6634496339132876,
          -7,
          -7,
          -7,
          -1.9308762911151123,
          -7,
          -1.70472233322511,
          -1.587336734507256,
          -3.147985320683805,
          -2.677606952720493,
          -7,
          -7,
          -1.7630337180189228,
          -7,
          -7,
          -7,
          -2.377184787081418,
          -7,
          -7,
          -3.212453961040276,
          -3.5443161417474274,
          -7,
          -7,
          -7,
          -3.397592434038117,
          -7,
          -7,
          -3.682212788529763,
          -7,
          -7,
          -2.0291300268851757,
          -2.3793752559252646,
          -3.0835026198302673,
          -7,
          -2.661812685537261,
          -7,
          -7,
          -2.9814788279263897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6592409509282415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.400854457181176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.760874638052189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.736906200252733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5571461423183632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.332034277027518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.649334858712142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.751473107116081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6866362692622934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.689930104018218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.607251232317852,
          -7,
          -7,
          -3.279134394034571,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9559778243350925,
          -7,
          -7,
          -4.545158614333448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.618184119463009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.397992120883196,
          -4.1312817469854,
          -7,
          -4.0322157032979815,
          -7,
          -7,
          -7,
          -3.439262499150636,
          -7,
          -7,
          -3.7488951184201675,
          -7,
          -4.608579514826188,
          -7,
          -7,
          -7,
          -4.30787383097522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.801146350316844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9611362173872253,
          -7,
          -7,
          -4.303735889039906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354185298625861,
          -4.67886422013453,
          -5.172486169686935,
          -7,
          -7,
          -7,
          -4.31045964365906,
          -3.67015304519218,
          -7,
          -7,
          -4.057475915826254,
          -7,
          -7,
          -4.00483706093831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.961326155934711,
          -7,
          -4.6333472402049605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9479681286180224,
          -7,
          -7,
          -2.12057393120585,
          -2.8987251815894934,
          -3.512995511348242,
          -2.3428173146357327,
          -7,
          -7,
          -3.17832933714299,
          -1.7862188721316767,
          -3.4237986329154935,
          -7,
          -2.428134794028789,
          -7,
          -7,
          -2.7400994009248563,
          -2.4320066872695985,
          -7,
          -2.859738566197147,
          -2.878234468675044,
          -7,
          -2.562689299428688,
          -7,
          -2.632457292184724,
          -2.3961993470957363,
          -3.131746945100879,
          -1.6215224710973946,
          -7,
          -3.7700858001025916,
          -3.8628466599829387,
          -3.6274052501690583,
          -7,
          -2.888179493918325,
          -7,
          -2.836640541572774,
          -2.5998830720736876,
          -7,
          -7,
          -2.815079418399363,
          -2.1409268419924303,
          -2.113943352306837,
          -2.5157634906474584,
          -7,
          -2.6996643202023733,
          -7,
          -1.7502979638618927,
          -7,
          -2.1968207439144254,
          -2.541579243946581,
          -7,
          -3.8548928032859053,
          -2.6928469192772297,
          -7,
          -7,
          -3.2688119037397803,
          -3.3303461209646152,
          -7,
          -2.5774917998372255,
          -3.1903316981702914,
          -2.75815462196739,
          -3.223427432577566,
          -7,
          -2.55249439402386,
          -2.40226138245468,
          -2.8175653695597807,
          -7,
          -7,
          -3.011316643366872,
          -2.302114376956201,
          -2.6273658565927325,
          -7,
          -2.164352855784437,
          -7,
          -7,
          -3.2997251539756367,
          -2.9025467793139916,
          -7,
          -2.6780214745443685,
          -1.8930215923314397,
          -2.9587231112647787,
          -2.187990482355389,
          -3.2508264548251344,
          -2.515211304327802,
          -2.284556053274592,
          -2.162998646761075,
          -7,
          -7,
          -3.6677563860178615,
          -7,
          -2.2380461031287955,
          -2.96543689977626,
          -3.4098063651997617,
          -2.81888541459401,
          -3.1790728074595234,
          -3.5036318211228035,
          -2.645271078927407,
          -7,
          -2.932980821923198,
          -2.482873583608754,
          -7,
          -7,
          -3.000434077479319,
          -7,
          -7,
          -7,
          -7,
          -1.9964491252422965,
          -7,
          -7,
          -7,
          -1.4032525456431375,
          -1.70472233322511,
          -7,
          -0.9827123651058386,
          -3.1065308538223815,
          -2.7255032688593155,
          -2.864511081058392,
          -7,
          -2.1618669046240195,
          -7,
          -7,
          -7,
          -2.3626709297256667,
          -2.6273658565927325,
          -2.3738311450738303,
          -3.66661156841903,
          -2.9084850188786495,
          -7,
          -2.5428254269591797,
          -7,
          -7,
          -2.41161970596323,
          -7,
          -3.579440597139797,
          -7,
          -7,
          -2.693433803801546,
          -2.377184787081418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6494565609637166,
          -7,
          -7,
          -2.2810333672477277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9085386321719593,
          -7,
          -7,
          -7,
          -4.276479037739323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5206538109166265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7646243978509815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.73770140771463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0138199506371244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.428385899200131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8642736968043794,
          -7,
          -7,
          -4.370910748617717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.227372442289636,
          -4.108414329015705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2928760493088776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.197996897597136,
          -7,
          -7,
          -7,
          -3.6278776945799716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.608322744745895,
          -7,
          -7,
          -2.985201858364572,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.253348391708968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.433265663818217,
          -7,
          -7,
          -4.245339902695324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318178157265793,
          -4.447227823061555,
          -7,
          -7,
          -7,
          -3.3378584290410944,
          -3.4068806700491248,
          -7,
          -3.5878552249378273,
          -7,
          -2.9561684304753633,
          -4.5761339452331775,
          -4.055110637854146,
          -3.900121231991279,
          -3.617210094557434,
          -7,
          -3.9131071077494677,
          -3.807873132003332,
          -3.698709349442587,
          -4.609647759078724,
          -7,
          -4.323688582255868,
          -3.8767372971406644,
          -4.484691239914095,
          -3.377196935008914,
          -7,
          -4.3252795695916895,
          -3.9745730944738797,
          -7,
          -3.860012698749663,
          -3.5257443001943787,
          -4.582233863920993,
          -4.239149264858293,
          -4.1801545594533485,
          -3.8007857903277626,
          -7,
          -7,
          -7,
          -3.545430829465351,
          -7,
          -7,
          -7,
          -4.30588853028431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.143014800254095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.980357938529916,
          -7,
          -7,
          -7,
          -7,
          -4.612571954065176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.087473801905176,
          -7,
          -4.634356336067436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8512583487190755,
          -3.297760511099134,
          -2.156228362582564,
          -7,
          -2.8020892578817325,
          -2.0170333392987803,
          -2.3114006325028105,
          -2.8797132763086255,
          -1.7905444111627002,
          -7,
          -7,
          -2.7866804531966487,
          -1.4748294579400776,
          -3.0374060648802375,
          -2.5490032620257876,
          -1.907020280620376,
          -3.3207692283386865,
          -2.5466968599938298,
          -2.0053319489492862,
          -2.1221378309221084,
          -1.9949034429806192,
          -1.6957005197711714,
          -2.5902286212401577,
          -2.7122286696195355,
          -1.864065879090237,
          -2.39909658587198,
          -2.1164416975393117,
          -2.5428254269591797,
          -2.454463732751138,
          -2.1889284837608534,
          -2.0731070983354316,
          -2.925577273524723,
          -2.9599154643938257,
          -2.6002861516315914,
          -2.530199698203082,
          -2.537099170363197,
          -7,
          -2.564961804462294,
          -2.6972293427597176,
          -7,
          -7,
          -2.3898101993982914,
          -2.7151673578484576,
          -2.0957503474808177,
          -2.3492775274679554,
          -7,
          -2.15991078065811,
          -2.3364597338485296,
          -1.3329079675093363,
          -7,
          -2.061954844073114,
          -2.3483048630481607,
          -3.075911761482778,
          -3.0546332107067022,
          -2.0681858617461617,
          -7,
          -2.6532125137753435,
          -2.881726935376418,
          -2.4895567268689844,
          -2.3729120029701067,
          -7,
          -2.3725438007590705,
          -2.3483048630481607,
          -2.9701197319309296,
          -7,
          -2.131854941615539,
          -2.303196057420489,
          -1.6574144282031131,
          -3.6281333875410833,
          -7,
          -2.603394230417027,
          -2.1072099696478683,
          -2.416640507338281,
          -2.807535028068853,
          -1.6193845754003067,
          -7,
          -7,
          -2.911902996044033,
          -2.1028255798174698,
          -7,
          -2.5508803246271956,
          -1.9370161074648142,
          -3.4520932490177314,
          -2.1647775936979032,
          -2.4546844261382326,
          -2.0749851314540164,
          -2.182557301304913,
          -2.052565699053254,
          -7,
          -7,
          -2.7656918332132796,
          -2.064117499611749,
          -2.0433622780211294,
          -1.6267601784100552,
          -3.035787728177052,
          -2.1931245983544616,
          -2.5451167199341014,
          -3.169787434471045,
          -2.443300248364033,
          -7,
          -2.501971645918664,
          -2.606381365110605,
          -7,
          -2.8102325179950842,
          -2.339650157613684,
          -2.087692704811194,
          -7,
          -2.6283889300503116,
          -7,
          -1.7197486528851442,
          -7,
          -7,
          -2.1367205671564067,
          -1.5185139398778875,
          -1.587336734507256,
          -0.9827123651058386,
          -7,
          -2.1398790864012365,
          -2.870793931782029,
          -2.920123326290724,
          -7,
          -1.6302429114439048,
          -7,
          -7,
          -7,
          -7,
          -2.7193312869837265,
          -2.7596678446896306,
          -2.9761665001319755,
          -2.375010048025798,
          -3.4753805931433615,
          -2.3492775274679554,
          -7,
          -2.891723252106159,
          -2.553883026643874,
          -7,
          -3.2390263236179746,
          -7,
          -7,
          -2.498861688992884,
          -2.035503856195122,
          -3.0236639181977933,
          -7,
          -7,
          -7,
          -7,
          -2.3585296895559917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5653845905590975,
          -7,
          -7,
          -7,
          -7,
          -3.337725413884801,
          -7,
          -7,
          -7,
          -7,
          -3.378579576115775,
          -2.751236322671984,
          -7,
          -7,
          -3.1971426649725627,
          -3.5679389439305034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.584625178418518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0850526086449856,
          -3.0165558301996542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8098626051382367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.273279131626577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.413299764081252,
          -7,
          -7,
          -7,
          -7,
          -3.148590316719418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.438067450453494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.963817330044653,
          -7,
          -7,
          -7,
          -3.9757227725765003,
          -7,
          -2.8985880720439496,
          -3.5229655954919865,
          -7,
          -7,
          -3.399846712712922,
          -7,
          -7,
          -7,
          -3.2110060574081962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.241172786770047,
          -7,
          -7,
          -2.6887163699704657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504470862494419,
          -7,
          -7,
          -7,
          -4.149342299291265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.254158099637722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2737880795675203,
          -7,
          -7,
          -3.389440755221461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3354579006893843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0239722565010565,
          -3.415140352195873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.479863113023098,
          -3.436162647040756,
          -3.7581455266997557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.712430083679723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5774014253739082,
          -7,
          -4.049657265126183,
          -7,
          -7,
          -7,
          -3.8013350956745464,
          -7,
          -3.501196242027089,
          -3.259952059922254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6880636969463443,
          -7,
          -7,
          -7,
          -3.2678957991631954,
          -7,
          -7,
          -3.8972421028053654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1405080430381793,
          -7,
          -7,
          -7,
          -7,
          -3.196612816217494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.669688708056208,
          -4.0563060138858935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.690196080028514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.95970902424643,
          -7,
          -7,
          -2.986363614185373,
          -3.6178163114809454,
          -4.317101812398005,
          -3.444513206334043,
          -3.9853665879160696,
          -2.450557009418329,
          -2.855640280890145,
          -4.434361287200313,
          -1.6475990265972849,
          -7,
          -2.079999897528305,
          -3.5200903281128424,
          -3.3976290339439115,
          -3.402009928252042,
          -2.3226099351757314,
          -4.325536187192074,
          -3.4711612727092858,
          -2.6753060861382254,
          -3.3828092224315145,
          -4.3302818414364435,
          -7,
          -4.1089132667197426,
          -3.9828589423120753,
          -2.745689562989966,
          -2.9149650437896093,
          -7,
          -3.368110644916976,
          -3.7835319842742696,
          -7,
          -2.4693586096046616,
          -3.2338956292773764,
          -3.8270352376582064,
          -3.811217414675501,
          -3.536987475130602,
          -3.225154148849806,
          -7,
          -7,
          -3.3894141817616843,
          -3.221463142125021,
          -2.589602982202344,
          -7,
          -3.554665330979803,
          -3.2340692861153584,
          -7,
          -2.6130863955560057,
          -3.2830749747354715,
          -7,
          -3.7242641633922977,
          -7,
          -7,
          -3.2984787921447394,
          -3.425262429712809,
          -3.859438535455056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.24355888962248,
          -7,
          -7,
          -3.4909061462664024,
          -3.484299839346786,
          -4.701683090935717,
          -7,
          -7,
          -7,
          -3.8558622560965636,
          -7,
          -7,
          -3.4912916406875922,
          -4.13350697377835,
          -7,
          -3.8270460170047342,
          -7,
          -7,
          -2.9662590937671496,
          -7,
          -7,
          -2.204572137284902,
          -7,
          -7,
          -2.9279961994449373,
          -3.547013492058355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.794243992434201,
          -7,
          -7,
          -7,
          -2.8432327780980096,
          -3.300781756456363,
          -1.601831355112151,
          -7,
          -2.0408659483054157,
          -2.0285712526925375,
          -1.7581447785956712,
          -2.0750305588561777,
          -1.6805552563738542,
          -7,
          -7,
          -1.9979039022741811,
          -2.4724313785820478,
          -2.598614659259323,
          -2.7187783976895714,
          -1.8853016909406226,
          -2.4720246977002813,
          -2.2827353726210187,
          -2.0075632564697243,
          -1.522566190763858,
          -2.079181246047625,
          -2.3811150807098507,
          -1.975687050645263,
          -2.588691788592222,
          -2.002975557763293,
          -3.4533183400470375,
          -2.8140810398403664,
          -7,
          -1.667124678416392,
          -2.6528906949522417,
          -7,
          -2.3379304619107932,
          -2.22903583515332,
          -2.0474098222772072,
          -3.0829647937777516,
          -2.1711411510283822,
          -7,
          -2.4020156017566077,
          -7,
          -7,
          -7,
          -2.245421266260218,
          -2.4585539192772186,
          -2.2182573985268057,
          -2.5305554148925595,
          -7,
          -1.4178348373889769,
          -2.2624510897304293,
          -1.5120517683287142,
          -7,
          -2.4144162029529017,
          -3.4034637013453173,
          -1.483523746328793,
          -2.552207171798418,
          -2.470802365112064,
          -7,
          -7,
          -3.168350140185944,
          -0.9539959263343879,
          -2.6351964199887496,
          -2.424287526440053,
          -1.9746867944847728,
          -3.1390916075238224,
          -2.3260823938064945,
          -3.146438135285775,
          -1.613657591302388,
          -2.4730812769179225,
          -2.27307847310952,
          -3.32522822787085,
          -7,
          -2.216165902285993,
          -2.2157256645575676,
          -7,
          -2.832508912706236,
          -1.5938396610812713,
          -7,
          -7,
          -1.403591185940338,
          -2.996949248495381,
          -7,
          -2.756519079282083,
          -7,
          -3.390405156480081,
          -2.8911191293545526,
          -1.5734548577967027,
          -1.3495107823567656,
          -2.126097803108254,
          -2.0412765481119646,
          -7,
          -7,
          -2.1476763242410986,
          -1.7929670410709038,
          -2.5563025007672873,
          -1.4923939537516864,
          -1.7417097086716051,
          -1.8332746392905634,
          -0.9112368843262032,
          -2.4873023607462903,
          -2.01725599733078,
          -7,
          -2.480438147177817,
          -7,
          -7,
          -7,
          -3.201806642957022,
          -2.471550553511363,
          -7,
          -3.3995006613146104,
          -7,
          -1.9107223893805891,
          -7,
          -2.745543201998024,
          -3.0963885466873666,
          -2.9265139350708855,
          -3.147985320683805,
          -3.1065308538223815,
          -2.1398790864012365,
          -7,
          -2.167011601203763,
          -3.4647875196459372,
          -7,
          -1.608496318926168,
          -7,
          -7,
          -7,
          -2.5173608721141245,
          -2.6364878963533656,
          -7,
          -2.7914354443811287,
          -2.2833012287035497,
          -3.2277153514917414,
          -2.800545250591952,
          -3.3769417571467586,
          -2.5297066859104924,
          -3.0863598306747484,
          -7,
          -2.9825795713428316,
          -3.3802112417116064,
          -7,
          -2.3568620729303107,
          -2.1070359385968906,
          -3.1956229435869368,
          -7,
          -7,
          -7,
          -7,
          -2.1211092004651437,
          -3.077912702949456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.77244090126548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6882863093259703,
          -7,
          -7,
          -7,
          -3.984825366582568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7345483893175566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.508798965403905,
          -3.8361974807789254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7952889748486287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.54184123916057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9006853974365008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.156094630639427,
          -7,
          -7,
          -7,
          -3.303103447444255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3191060593097763,
          -7,
          -7,
          -7,
          -3.2614611315130806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.816241299991783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4423229557455746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4245549766067134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4413258676537932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2536287301937543,
          -7,
          -7,
          -3.987978915875482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6870828446043706,
          -7,
          -2.7126497016272113,
          -7,
          -7,
          -7,
          -7,
          -2.7399676967595092,
          -3.295127085252191,
          -7,
          -7,
          -3.5805828768143675,
          -2.734199560686231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.309803485676787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3154741615241607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9765028188717886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.823148059810694,
          -7,
          -3.822220400852558,
          -7,
          -7,
          -7,
          -1.928591626251906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.324292746514193,
          -7,
          -7,
          -3.8731461513282555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024933550857837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.037896397296606,
          -7,
          -7,
          -3.524761863664937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.173186268412274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1732365194371384,
          -3.8577469894826386,
          -4.00702192557868,
          -7,
          -4.155062619223921,
          -2.6790870506964652,
          -2.8749325644777626,
          -4.4275023380332845,
          -3.516574256073354,
          -7,
          -2.841428996506697,
          -4.117668940562442,
          -4.6727995541771605,
          -4.337339439388419,
          -2.3825952979193326,
          -4.316704039700037,
          -3.7195632907571934,
          -2.7588278164163147,
          -3.589204670642375,
          -3.3713655035168926,
          -7,
          -4.408535049571333,
          -7,
          -3.5183684580315613,
          -4.132995700692265,
          -4.205447977051676,
          -7,
          -4.4764838219144645,
          -7,
          -3.2563195389747777,
          -3.3624117830472824,
          -4.123514088042597,
          -7,
          -3.7480587534580208,
          -3.4246094370095563,
          -7,
          -7,
          -4.3821251522253215,
          -3.640762924911052,
          -7,
          -7,
          -7,
          -3.7379277754753852,
          -7,
          -7,
          -3.512317438458193,
          -7,
          -4.564488523410793,
          -7,
          -3.529173603261723,
          -2.6815642529962074,
          -4.191953767152995,
          -3.833083334178343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9317882969633793,
          -7,
          -7,
          -3.6876002973649102,
          -3.4312118238758584,
          -4.8765526726537205,
          -7,
          -7,
          -7,
          -3.7845765405936316,
          -3.8086835091289695,
          -7,
          -7,
          -3.8185887540885934,
          -7,
          -7,
          -3.773347541980823,
          -4.014121342041001,
          -7,
          -7,
          -7,
          -3.9060925019869828,
          -7,
          -7,
          -4.623590387791532,
          -3.5422141112149736,
          -7,
          -4.349704810656211,
          -7,
          -7,
          -3.458939861890326,
          -3.779127315306203,
          -2.8603380065709936,
          -7,
          -7,
          -1.360732888315757,
          -3.530583859645118,
          -2.3593800878746345,
          -7,
          -3.1652443261253107,
          -2.4029297482837086,
          -2.6148972160331345,
          -2.7819820024964894,
          -2.374901024683465,
          -7,
          -7,
          -2.714162046098853,
          -2.4485130854271855,
          -1.9068685051676264,
          -2.9574476493145365,
          -2.7089305358066165,
          -1.6248278824518179,
          -2.6322786069397006,
          -1.3332039819952237,
          -1.5370508399960496,
          -1.915679114299964,
          -2.6148972160331345,
          -2.833784374656479,
          -1.8380201260230709,
          -1.3047175819263184,
          -2.6027832129470583,
          -3.3398487830376373,
          -2.298634783124436,
          -2.4661002702247345,
          -2.0965238017937176,
          -3.003245054813147,
          -2.572983512136525,
          -2.727177518268621,
          -2.652883029692004,
          -7,
          -1.798025500812446,
          -7,
          -1.4629906891979096,
          -7,
          -7,
          -3.3157604906657347,
          -2.639386869017684,
          -1.4986286017583395,
          -2.603144372620182,
          -2.3057351235423744,
          -7,
          -1.8322454644228146,
          -2.3204924754334133,
          -2.0672268892739267,
          -7,
          -2.1487325081429565,
          -3.3234583668494677,
          -3.454692449239477,
          -2.20251480500679,
          -2.2012019796387126,
          -3.3153404766272883,
          -7,
          -3.4371160930480786,
          -2.4786733593940635,
          -2.155336037465062,
          -1.4094314461192683,
          -2.3720933514894265,
          -7,
          -2.644691850487941,
          -7,
          -1.825237608259588,
          -3.3550682063488506,
          -3.081527326244805,
          -4.006679927740826,
          -7,
          -1.9976946862194678,
          -1.6502191890561915,
          -3.338854746252323,
          -3.361727836017593,
          -1.9955098389950334,
          -7,
          -7,
          -3.0599418880619544,
          -2.929929560084588,
          -7,
          -2.4818163759280423,
          -2.8312296938670634,
          -3.1747380145272865,
          -3.1288837020997735,
          -2.2790623777037693,
          -1.5922125858397185,
          -1.4510184521554574,
          -1.5613453617046675,
          -7,
          -7,
          -3.007299600653417,
          -1.750096084914117,
          -2.720159303405957,
          -2.251516552291679,
          -2.8705599579152383,
          -2.583198773968623,
          -2.1142691546341217,
          -2.9389989524702442,
          -1.8878541021310815,
          -7,
          -1.8881965187319025,
          -7,
          -3.299942900022767,
          -7,
          -7,
          -2.7622095125079533,
          -7,
          -7,
          -7,
          -2.1921864181570534,
          -7,
          -2.0442036624920537,
          -7,
          -2.846543280888438,
          -2.677606952720493,
          -2.7255032688593155,
          -2.870793931782029,
          -2.167011601203763,
          -7,
          -7,
          -7,
          -1.920089648303665,
          -7,
          -7,
          -7,
          -3.045127306568027,
          -7,
          -3.348888723071438,
          -3.106598813212537,
          -2.048335847916511,
          -2.665393350279712,
          -3.3236645356081,
          -7,
          -3.6020599913279625,
          -7,
          -7,
          -2.724380911198085,
          -2.5149902330672873,
          -7,
          -2.8109042806687006,
          -1.9952535649755383,
          -2.2530147492770154,
          -7,
          -7,
          -7,
          -7,
          -1.768755789395493,
          -2.6908603082720437,
          -7,
          -3.2898118391176214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.662635078938201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.507855871695831,
          -7,
          -7,
          -7,
          -3.4448251995097476,
          -7,
          -7,
          -3.1222158782728267,
          -3.027992403440902,
          -7,
          -7,
          -7,
          -2.5593080109070123,
          -7,
          -7,
          -4.563481085394411,
          -7,
          -7,
          -7,
          -2.8674674878590514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4409090820652177,
          -7,
          -2.919601023784111,
          -7,
          -7,
          -2.5010592622177517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4358443659844413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6972293427597176,
          -3.1795517911651876,
          -7,
          -7,
          -7,
          -3.5674577001569503,
          -7,
          -7,
          -2.795184589682424,
          -7,
          -7,
          -2.704579449696299,
          -7,
          -7,
          -4.228810845011355,
          -7,
          -2.8674674878590514,
          -7,
          -7,
          -7,
          -7,
          -2.4807253789884878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2605483726369795,
          -7,
          -4.222963454651633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0310042813635367,
          -7,
          -2.767897616018091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.963787827345555,
          -7,
          -2.5960103102213306,
          -7,
          -7,
          -2.494850021680094,
          -2.9556877503135057,
          -7,
          -7,
          -7,
          -4.11143055176598,
          -7,
          -2.6546577546495245,
          -2.41774840202559,
          -3.4172106347347677,
          -7,
          -2.650954757949053,
          -7,
          -2.2723058444020863,
          -7,
          -2.8356905714924254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.711807229041191,
          -7,
          -3.484157424365381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9845273133437926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.089127629044278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.09968064110925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5851786285035163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5781806096277777,
          -7,
          -7,
          -3.3517503064858096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.926856708949692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.398981066658131,
          -7,
          -7,
          -7,
          -2.8027737252919755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0800850850458694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.815577748324267,
          -7,
          -2.792391689498254,
          -1.968907271481587,
          -3.076640443670342,
          -7,
          -7,
          -7,
          -7,
          -2.289291592392737,
          -7,
          -7,
          -7,
          -2.8987251815894934,
          -7,
          -2.814913181275074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.157845166862068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.282848602834645,
          -7,
          -7,
          -7,
          -7,
          -2.507855871695831,
          -3.4193774051391275,
          -2.629409599102719,
          -7,
          -7,
          -7,
          -7,
          -2.504859058705207,
          -7,
          -2.6503075231319366,
          -1.971422347131096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2440295890300215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1829849670035815,
          -2.775974331129369,
          -7,
          -7,
          -4.310023834437932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6802347607214068,
          -7,
          -3.2219355998280053,
          -2.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.751279103983342,
          -7,
          -7,
          -7,
          -7,
          -2.629409599102719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7693773260761385,
          -7,
          -7,
          -7,
          -3.153204900084284,
          -4.530566259674217,
          -7,
          -3.1818435879447726,
          -2.748704736742231,
          -1.7927099705545686,
          -7,
          -2.9745116927373285,
          -7,
          -2.806519134080705,
          -2.8847953639489807,
          -2.2982290899777897,
          -2.4638929889859074,
          -7,
          -7,
          -7,
          -7,
          -2.8709888137605755,
          -7,
          -3.1763806922432702,
          -2.8068580295188172,
          -2.7373516958037145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.554714079964416,
          -7,
          -7,
          -4.178410941217267,
          -7,
          -4.612391755480837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7074168686367095,
          -3.930465080784248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -7,
          -4.311393565000522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2971036501492565,
          -4.08292891501513,
          -4.151001907992831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.413132050434872,
          -7,
          -4.361009712608143,
          -4.504389297186282,
          -7,
          -7,
          -2.753008215020888,
          -7,
          -4.138134211870816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2847239246361575,
          -7,
          -7,
          -7,
          -4.167701234971368,
          -7,
          -2.1920095926536702,
          -7,
          -4.266631458809917,
          -7,
          -4.159787693079161,
          -7,
          -7,
          -3.639087871083737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.403549454032318,
          -1.949999542859922,
          -2.2770358881721102,
          -7,
          -3.437433443797971,
          -3.4035923240271115,
          -3.1664301138432824,
          -2.5998830720736876,
          -1.8941775538387728,
          -2.901798757630448,
          -7,
          -3.4554945456712955,
          -2.272835795025385,
          -2.3647385550553985,
          -7,
          -7,
          -3.303412070596742,
          -3.4885507165004443,
          -7,
          -7,
          -3.228400358703005,
          -7,
          -3.163757523981956,
          -1.8177856558855299,
          -1.5968863360513395,
          -7,
          -3.5524248457040857,
          -7,
          -7,
          -3.62914737036461,
          -3.7414076861413017,
          -4.744347755549232,
          -7,
          -7,
          -2.0511525224473814,
          -3.238798562713917,
          -1.9149892102916513,
          -7,
          -2.2194535370768107,
          -2.356320094658242,
          -7,
          -2.304490527773488,
          -1.9172274028628247,
          -2.1782573208121887,
          -3.7311050512159203,
          -7,
          -2.5103534801122604,
          -7,
          -7,
          -2.0644579892269186,
          -7,
          -7,
          -7,
          -2.824125833916549,
          -1.997511199596305,
          -7,
          -3.353916230920363,
          -7,
          -7,
          -7,
          -2.4899584794248346,
          -2.4212747912103465,
          -2.028932562598488,
          -7,
          -2.9370161074648142,
          -7,
          -7,
          -7,
          -3.2627674003648806,
          -2.284806583700867,
          -7,
          -2.4751867549424627,
          -2.4228359687795225,
          -2.4479328655921804,
          -2.2000292665537704,
          -2.521942332974436,
          -2.1549562434033382,
          -7,
          -3.0500702643674384,
          -2.515873843711679,
          -1.260289681270346,
          -1.5710379430085666,
          -3.1538910496761696,
          -7,
          -3.3236645356081,
          -2.44870631990508,
          -7,
          -7,
          -4.278227557594742,
          -7,
          -2.546542663478131,
          -7,
          -3.6215501543254702,
          -7,
          -3.9745116927373285,
          -3.3866549981631726,
          -2.264101992153716,
          -7,
          -7,
          -2.214843848047698,
          -7,
          -2.2533380053261065,
          -2.831549851995756,
          -7,
          -2.782472624166286,
          -2.8344207036815328,
          -7,
          -2.53631790283572,
          -7,
          -7,
          -7,
          -2.851869600729766,
          -7,
          -2.864511081058392,
          -2.920123326290724,
          -3.4647875196459372,
          -7,
          -7,
          -2.532117116248804,
          -2.7913397039651393,
          -7,
          -7,
          -7,
          -7,
          -2.893206753059848,
          -7,
          -2.794575175655731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.332101666969759,
          -7,
          -7,
          -3.265525335219074,
          -7,
          -3.118595365223762,
          -7,
          -7,
          -2.3324384599156054,
          -7,
          -3.595606434865603,
          -7,
          -2.918554530550274,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357725268400632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.285557309007774,
          -7,
          -7,
          -4.178700751736516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.655366571648936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0351294308208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.402175375031505,
          -2.3521825181113627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02848991652189,
          -7,
          -7,
          -7,
          -7,
          -3.302114376956201,
          -2.783903579272735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.217641840773327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.824125833916549,
          -7,
          -7,
          -7,
          -7,
          -2.534026106056135,
          -7,
          -2.24551266781415,
          -2.7101173651118162,
          -7,
          -4.060130999531045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.435470087438645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1398790864012365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6760531246518715,
          -2.807196660710947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7733841341771543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7371926427047373,
          -1.9628426812012423,
          -7,
          -1.8603380065709938,
          -1.9867717342662448,
          -7,
          -4.029188910280547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.524210605449204,
          -7,
          -7,
          -7,
          -2.782472624166286,
          -7,
          -7,
          -2.6414741105040997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3220124385824006,
          -7,
          -7,
          -7,
          -2.357934847000454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8041394323353503,
          -2.895422546039408,
          -7,
          -7,
          -7,
          -2.2741578492636796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -2.040074643230312,
          -3.985561187773345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9777236052888476,
          -7,
          -7,
          -2.6503075231319366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1598678470925665,
          -2.3508938095043144,
          -1.9731278535996988,
          -7,
          -7,
          -2.061954844073114,
          -7,
          -7,
          -7,
          -7,
          -2.9443181355003873,
          -7,
          -7,
          -7,
          -4.60672522457584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6074550232146687,
          -2.358886204405869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.037426497940624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.734044155975036,
          -7,
          -2.7446840632768863,
          -4.544551703070268,
          -3,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8260748027008264,
          -7,
          -7,
          -7,
          -2.369215857410143,
          -2.8898617212581885,
          -7,
          -7,
          -4.617671195831475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732996528111129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784674339064312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.703935891442843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.742332282357148,
          -4.269933025967809,
          -7,
          -3.731346975545955,
          -7,
          -4.049683089088249,
          -7,
          -7,
          -2.0078654490661223,
          -2.8956987269593055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5668955742647115,
          -7,
          -7,
          -7,
          -7,
          -4.35324283143373,
          -4.678641275182585,
          -5.1723430940270845,
          -7,
          -2.5696079675468244,
          -7,
          -3.610798519192768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5786392099680726,
          -4.127342406950523,
          -3.8638104239716684,
          -7,
          -3.518665764554107,
          -7,
          -7,
          -7,
          -4.009535876619219,
          -1.9614210940664483,
          -1.2430380486862944,
          -7,
          -7,
          -7,
          -3.686948920211501,
          -1.4800069429571505,
          -2.3475251599986895,
          -7,
          -7,
          -3.6869935662646784,
          -7,
          -0.7678976160180906,
          -7,
          -3.777281791671015,
          -7,
          -4.025602804765786,
          -2.4833495228146365,
          -7,
          -7,
          -7,
          -7,
          -2.9492273190678455,
          -7,
          -7,
          -3.4740705032150436,
          -7,
          -7,
          -2.4807253789884878,
          -2.0980665902079987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163449615841143,
          -4.44010583903666,
          -7,
          -7,
          -1.646136276056409,
          -7,
          -2.2392994791268928,
          -7,
          -1.806179973983887,
          -2.5628025001283783,
          -7,
          -7,
          -7,
          -2.305351369446624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.615799802742291,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.416640507338281,
          -3.205500290929755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.72916478969277,
          -7,
          -7,
          -2.2706788361447066,
          -7,
          -7,
          -7,
          -7,
          -2.690970914278475,
          -2.5728716022004803,
          -2.1212314551496214,
          -2.715501945293284,
          -2.9595183769729982,
          -3.1272668183188985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.678700434998304,
          -7,
          -2.428134794028789,
          -7,
          -7,
          -7,
          -1.410308485914647,
          -2.27600198996205,
          -7,
          -7,
          -2.4409090820652177,
          -2.173186268412274,
          -3.8485893458691725,
          -2.05307844348342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.532117116248804,
          -7,
          -7,
          -7,
          -7,
          -1.8836614351536176,
          -7,
          -7,
          -7,
          -3.0593740590659575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.578318240585008,
          -7,
          -7,
          -3.1571544399062814,
          -7,
          -2.957607287060095,
          -7,
          -7,
          -2.661812685537261,
          -2.187520720836463,
          -3.5482665451707454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.186881028636386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7523045932010324,
          -7,
          -7,
          -3.1684974835230326,
          -3.880802163328254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.347193361847937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8268778287230028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9035602180181637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.116408480629899,
          -7,
          -7,
          -7,
          -4.138815652231705,
          -7,
          -3.174931593528443,
          -7,
          -7,
          -7,
          -2.921166050637739,
          -7,
          -7,
          -7,
          -3.385069776331935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8466463285771173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.778344227272801,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8867726430544383,
          -7,
          -7,
          -3.721315880605899,
          -7,
          -3.050379756261458,
          -7,
          -7,
          -2.6290696425437527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1227072543183483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.677150521273433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5780658838360915,
          -4.037101498348468,
          -7,
          -7,
          -7,
          -2.7693773260761385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.009833178608563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9537596917332287,
          -7,
          -3.7263332048395883,
          -7,
          -7,
          -7,
          -2.586399744970328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.658244654605687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145596906666468,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530804598699046,
          -7,
          -7,
          -3.8523213739920474,
          -3.1920095926536702,
          -7,
          -7,
          -7,
          -7,
          -3.5082603055123345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.66904814036834,
          -4.751417686492172,
          -7,
          -7,
          -3.9595024859218646,
          -2.9344984512435675,
          -2.8953436049355092,
          -7,
          -2.781779302063946,
          -7,
          -3.051499819132745,
          -3.7355646839741787,
          -3.405507622803944,
          -3.6297968252555064,
          -2.799185416577525,
          -4.289678120899732,
          -4.096371153688629,
          -3.124887640134107,
          -3.4148480526441123,
          -3.914914082586252,
          -3.9307962629833004,
          -4.103208295336138,
          -7,
          -3.445901272848216,
          -2.859456190061124,
          -7,
          -3.426063723800878,
          -3.2814424572708725,
          -7,
          -3.2310701141047367,
          -3.120776352315039,
          -3.984707294482673,
          -4.249222823996674,
          -4.191674531959229,
          -3.827885982789856,
          -7,
          -7,
          -3.881783955593385,
          -3.283509973952415,
          -7,
          -7,
          -4.577422858733517,
          -3.712355022085704,
          -3.4728295567127057,
          -7,
          -3.593433761115369,
          -7,
          -7,
          -7,
          -7,
          -3.787141544200371,
          -4.15554857715353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062751156916884,
          -4.380116229401339,
          -7,
          -7,
          -7,
          -7,
          -3.8386077489795007,
          -7,
          -7,
          -3.6555225962534177,
          -4.076349117493459,
          -7,
          -7,
          -7,
          -3.9869955397243815,
          -7,
          -7,
          -7,
          -4.17207725696948,
          -7,
          -7,
          -7,
          -3.6661785553856663,
          -7,
          -4.638439335179549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.139485525448247,
          -3.245336376160865,
          -1.9155036320177758,
          -2.9425041061680806,
          -2.3178022622275756,
          -2.235107414899873,
          -1.8693861355483907,
          -2.612275116542189,
          -1.7628729845648419,
          -7,
          -7,
          -2.4147060075610813,
          -1.6645524395323255,
          -2.6270310620213944,
          -2.866582677063549,
          -1.7232503803830987,
          -2.3530589956679915,
          -2.3818728544985426,
          -1.845511456972561,
          -1.6648664026559605,
          -2.427323786357247,
          -1.6401500409361018,
          -2.466496903744401,
          -2.3096301674258988,
          -1.728213799914649,
          -2.5869621812439334,
          -2.971275848738105,
          -2.576341350205793,
          -2.028534835394969,
          -2.052223532809907,
          -2.582063362911709,
          -2.5711991391735527,
          -2.715029511589328,
          -2.1371799788235775,
          -7,
          -1.765335585862254,
          -3.0265332645232967,
          -1.9874780957370641,
          -2.9566485792052033,
          -7,
          -7,
          -2.146691688556713,
          -1.670636405692084,
          -1.5095187753812356,
          -1.824175916887475,
          -7,
          -1.8502107875348965,
          -2.1996866278914977,
          -1.2817248404685946,
          -7,
          -1.7896420142298675,
          -2.6299190355035416,
          -2.422699247707434,
          -2.7609776951458618,
          -1.9498333905342697,
          -7,
          -7,
          -3.022943609686901,
          -2.0625501175897143,
          -2.28362424432417,
          -1.88754697493976,
          -2.1505005962700507,
          -3.0334237554869494,
          -2.765643363141901,
          -7,
          -1.5417922601981502,
          -2.223582462425357,
          -1.6147410230870514,
          -3.347232410084063,
          -7,
          -2.1548685514329433,
          -1.592801092674244,
          -7,
          -7,
          -1.3092543175695517,
          -7,
          -7,
          -2.504276634189794,
          -2.5118833609788744,
          -7,
          -2.554640561254055,
          -2.317764953307669,
          -3.209112703738592,
          -1.8245287188967205,
          -1.9880598807558294,
          -1.6488033948702887,
          -1.7248750343064068,
          -1.45375503639545,
          -7,
          -7,
          -2.44606178890428,
          -1.8747642083309373,
          -2.1487054585660488,
          -1.3786174987050486,
          -2.6141317934028017,
          -2.215565467402707,
          -1.740597633769329,
          -2.4578818967339924,
          -1.665436659184819,
          -7,
          -2.1754473827599763,
          -7,
          -2.8715729355458786,
          -3.0224283711854865,
          -2.8767949762007006,
          -2.1087731188407464,
          -7,
          -2.6180480967120925,
          -7,
          -1.8468366233290923,
          -7,
          -2.3447851226326604,
          -2.4356320489516605,
          -2.151267675330649,
          -1.7630337180189228,
          -2.1618669046240195,
          -1.6302429114439048,
          -1.608496318926168,
          -1.920089648303665,
          -2.7913397039651393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8288439586198308,
          -2.9689496809813427,
          -7,
          -3.234179705196503,
          -2.2475056544922394,
          -3.2295538639811365,
          -2.9324737646771535,
          -7,
          -2.4823971222533356,
          -7,
          -7,
          -3.1133193018303085,
          -7,
          -7,
          -2.0126152494987535,
          -1.917899189424106,
          -2.384114363914378,
          -7,
          -7,
          -7,
          -7,
          -2.113943352306837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6576103243042395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.751279103983342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.499687082618404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727232098507561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.830761838749707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.032981193097368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0897108712889345,
          -7,
          -7,
          -4.04834467854007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.783803565738718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.225731307354037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.561423405743846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.681467373533731,
          -7,
          -2.9995654882259823,
          -2.5599066250361124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626473817986867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4559102403827433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.338346910071675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.146128035678238,
          -3.3888114134735234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2610248339923973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7960189693471493,
          -7,
          -7,
          -7,
          -7,
          -3.966625417227429,
          -2.6522463410033232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5314789170422551,
          -7,
          -2.677264674114648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4129642719966626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2659492899506235,
          -7,
          -7,
          -7,
          -3.832359864516441,
          -7,
          -7,
          -3.8009002862504695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.187520720836463,
          -7,
          -4.145910834132374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1727974640157566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7974522094768086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.8846065812979305,
          -7,
          -2.5276299008713385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.149028104289625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432828242457897,
          -7,
          -7,
          -4.543012046377036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.180813775754397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7681939616330715,
          -7,
          -4.6264532897924076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639376905735657,
          -4.7401731378151295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5779511277297553,
          -7,
          -7,
          -2.7788744720027396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779610919406259,
          -7,
          -7,
          -7,
          -7,
          -3.9150831016512004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2043913319193,
          -7,
          -7,
          -3.5817221599490985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.964825117883389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278067330888662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145848756590544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274619619091238,
          -7,
          -7,
          -3.1179338350396413,
          -7,
          -7,
          -7,
          -0.9378520932511555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3201462861110542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5390760987927767,
          -7,
          -2.6748611407378116,
          -2.2405492482826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067340578183524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.401745082237063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.344588742578714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.655064518636937,
          -2.6842467475153122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.979129356147615,
          -5.1719895827021185,
          -7,
          -7,
          -7,
          -4.6097011023793995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.272653697429817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.260381487592611,
          -7,
          -4.154464550007314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1760912590556813,
          -7,
          -7,
          -7,
          -7,
          -1.9934362304976116,
          -3,
          -7,
          -7,
          -7,
          -7,
          -2.1271047983648077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8048206787211623,
          -7,
          -7,
          -7,
          -2.145783220668538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.177518464070232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278136006715478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.271841606536499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8836614351536176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6504046698680317,
          -7,
          -7,
          -2.2528530309798933,
          -1.4471580313422192,
          -7,
          -7,
          -7,
          -4.274688842237558,
          -7,
          -7,
          -3.1189257528257768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.359038228379384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9079485216122722,
          -3.6020599913279625,
          -7,
          -7,
          -4.276415844653449,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.560277351854042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.338954252377607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4913616938342726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0791812460476247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.918371134693579,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.588047496986083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6671726724788685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6885088076565213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9951962915971793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.72934300831835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2612033723225187,
          -7,
          -7,
          -4.370809056545495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.048247531803974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.848798549528324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5144149205803688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3096301674258988,
          -7,
          -3.6977522741677546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6267508536833932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.608205007704326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1455071714096627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9573678084315276,
          -7,
          -4.8311784466569145,
          -7,
          -3.0972573096934197,
          -4.546258798765529,
          -7,
          -7,
          -7,
          -7,
          -3.0060379549973173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.619114209667246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8309012866592043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4920091503206274,
          -7,
          -7,
          -3.87473300575909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.404072179076356,
          -4.2246366386814405,
          -4.582108836392919,
          -7,
          -4.1798389280231865,
          -3.8000293592441343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305652261364764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3120362371917773,
          -3.2337573629655108,
          -3.2946498990262056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.409820451263753,
          -7,
          -7,
          -3.878694100396108,
          -4.378220694456968,
          -4.871710090234615,
          -7,
          -7,
          -7,
          -3.8341980945620744,
          -7,
          -4.641558383219824,
          -7,
          -7,
          -7,
          -3.3634239329171765,
          -7,
          -3.801403710017355,
          -7,
          -7,
          -7,
          -3.8585973449946924,
          -7,
          -7,
          -7,
          -3.5228826933940454,
          -7,
          -3.935194783852778,
          -7,
          -7,
          -3.611404637711593,
          -3.714245911017894,
          -7,
          -7,
          -7,
          -2.5422027824340283,
          -7,
          -3.039237809630672,
          -7,
          -3.1000257301078626,
          -7,
          -2.6126072783550733,
          -2.594171479114912,
          -7,
          -2.7234556720351857,
          -7,
          -3.008316226356639,
          -7,
          -2.956096873522117,
          -3.0232524596337114,
          -2.952792443044092,
          -7,
          -3.752278985460119,
          -2.460396637297684,
          -2.2684219472783616,
          -3.0780941504064105,
          -7,
          -7,
          -7,
          -3.0751818546186915,
          -2.8721562727482928,
          -7,
          -7,
          -2.756319081819694,
          -2.485011214578573,
          -7,
          -4.169424598808618,
          -3.687578501451031,
          -3.2504042610130406,
          -7,
          -2.6819644589946834,
          -7,
          -2.8639173769578603,
          -2.6875289612146345,
          -7,
          -7,
          -2.954885432549936,
          -2.403120521175818,
          -2.873320601815399,
          -2.6510625367017844,
          -7,
          -3.407645797062556,
          -2.45687190911158,
          -3.303196057420489,
          -7,
          -2.315970345456918,
          -2.640481436970422,
          -3.0718820073061255,
          -3.187238619831479,
          -2.7649229846498886,
          -7,
          -7,
          -3.5803546611065915,
          -3.512550992904211,
          -7,
          -2.927883410330707,
          -3.6760531246518715,
          -7,
          -3.194553983567667,
          -2.5483894181329183,
          -2.509370560438018,
          -2.7752462597402365,
          -2.8727388274726686,
          -7,
          -7,
          -2.1814232080049676,
          -2.1018452306835687,
          -7,
          -7,
          -2.18587254245639,
          -2.4683473304121573,
          -7,
          -3.610553705317095,
          -2.4693310102934105,
          -7,
          -2.470312467167388,
          -2.718916686014861,
          -2.972665592266111,
          -2.4056877866727775,
          -2.8312296938670634,
          -3.1946068335198956,
          -1.8920946026904806,
          -2.1864940194554485,
          -7,
          -7,
          -3.9709509343454243,
          -3.411788004543869,
          -7,
          -2.8093352150273203,
          -3.1103160859286136,
          -7,
          -2.314393957221963,
          -2.8203600231266415,
          -2.384039633727167,
          -7,
          -2.975891136401793,
          -7,
          -7,
          -7,
          -7,
          -3.171726453653231,
          -7,
          -7,
          -7,
          -2.538677930404596,
          -7,
          -2.842609239610562,
          -2.606381365110605,
          -2.645422269349092,
          -2.377184787081418,
          -2.3626709297256667,
          -7,
          -2.5173608721141245,
          -3.045127306568027,
          -7,
          -7,
          -1.8288439586198308,
          -7,
          -7,
          -7,
          -7,
          -2.7101173651118162,
          -1.6548180404907622,
          -2.6316282219706713,
          -2.1956361241961093,
          -3.1724569744005873,
          -7,
          -7,
          -3.3675422735205767,
          -7,
          -2.4653828514484184,
          -3.001050179041275,
          -7,
          -7,
          -1.470116353151004,
          -2.4285765243417345,
          -2.169002281505364,
          -2.4578818967339924,
          -7,
          -2.775974331129369,
          -7,
          -2.562768543016519,
          -2.4771212547196626,
          -2.7481880270062007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659716587811443,
          -7,
          -7,
          -7,
          -7,
          -3.643353961976863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100077469815475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.338177499296536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1815577738627865,
          -7,
          -7,
          -2.558708570533166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03249788285711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.824125833916549,
          -2.6589648426644352,
          -7,
          -7,
          -7,
          -7,
          -4.218942301606471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6414741105040997,
          -7,
          -7,
          -7,
          -7,
          -3.529045170765769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.383815365980431,
          -3.426673888021373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.078094150406411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8407332346118066,
          -7,
          -7,
          -3.8838317133294527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.244771761495295,
          -7,
          -7,
          -7,
          -7,
          -3.4670991576426897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3220124385824006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.866877814337499,
          -7,
          -3.5221833176186865,
          -4.149659344142463,
          -7,
          -2.4578818967339924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.688864568054792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2405492482826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5185139398778875,
          -3.694341910364181,
          -7,
          -4.197308131503102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7611758131557314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.607787318992725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.654818040490762,
          -2.800717078282385,
          -7,
          -2.7024305364455254,
          -7,
          -7,
          -4.144016929377213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.53007317068778,
          -7,
          -3.0835026198302673,
          -7,
          -7,
          -7,
          -2.8027737252919755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -2.9079485216122722,
          -7,
          -7,
          -4.317655992914544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.43274487412905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.308229938510919,
          -4.074633618296904,
          -7,
          -7,
          -4.450987704555041,
          -7,
          -3.5004080174600545,
          -3.922543815390706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.049140463158965,
          -4.3898568606187425,
          -3.9635044994142907,
          -7,
          -4.572139419778374,
          -3.827606174663971,
          -3.438067450453494,
          -7,
          -7,
          -7,
          -4.0666116331675966,
          -7,
          -7,
          -4.0717347638797605,
          -3.6642030725557553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4983105537896004,
          -7,
          -7,
          -7,
          -4.355144896174567,
          -4.5029912452209455,
          -7,
          -7,
          -7,
          -7,
          -3.912986846699656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.651859269246949,
          -7,
          -7,
          -7,
          -7,
          -3.827315413751728,
          -3.8649854606597938,
          -7,
          -7,
          -7,
          -7,
          -3.6072405038317426,
          -4.013721778051063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.628788608010636,
          -7,
          -2.236968894270856,
          -2.2863067388432747,
          -2.3823773034681137,
          -3.691390960388043,
          -2.0572856444182146,
          -2.690196080028514,
          -2.5224442335063197,
          -3.4832305869021027,
          -2.4401216031878037,
          -3.783515643130903,
          -1.9568666532654737,
          -2.3283796034387376,
          -7,
          -2.5428254269591797,
          -3.231214647962601,
          -2.09373996621855,
          -3.0637085593914173,
          -2.586587304671755,
          -2.444044795918076,
          -7,
          -7,
          -7,
          -2.3774883833761327,
          -7,
          -3.0556331242728354,
          -7,
          -7,
          -3.390405156480081,
          -2.7535930062006386,
          -3.310158127614801,
          -7,
          -3.073901558314207,
          -2.782472624166286,
          -2.852174904420303,
          -2.3483048630481607,
          -7,
          -7,
          -2.5792935143960207,
          -7,
          -2.37045140442245,
          -3.6028193424326997,
          -7,
          -2.801232153830292,
          -2.3106933123433606,
          -2.5143263432841403,
          -7,
          -7,
          -2.1183749671059116,
          -2.452935870201179,
          -3.855902603038427,
          -7,
          -7,
          -7,
          -3.5758803156806462,
          -3.111598524880394,
          -7,
          -7,
          -2.826259963429235,
          -2.3145693943004555,
          -3.098495907887131,
          -2.121887985103681,
          -2.805160901599434,
          -2.745855195173729,
          -2.3698340703001612,
          -7,
          -2.574031267727719,
          -3.1126050015345745,
          -7,
          -2.3729120029701067,
          -1.9183299535486804,
          -2.5601458398490475,
          -7,
          -2.5211380837040362,
          -2.5248286863646054,
          -2.928907690243953,
          -7,
          -2.8790958795000727,
          -7,
          -3.143014800254095,
          -2.514547752660286,
          -2.886248935531698,
          -2.489771041147474,
          -2.953518081444993,
          -3.2229764498933915,
          -7,
          -7,
          -3.066302625676853,
          -3.103803720955957,
          -2.296665190261531,
          -2.32060781057734,
          -3.359666873395946,
          -2.088941083336781,
          -3.260739019910411,
          -2.627934528249084,
          -3.287353772714747,
          -7,
          -2.957607287060095,
          -2.24551266781415,
          -7,
          -2.4727564493172123,
          -2.7197454925295768,
          -7,
          -7,
          -7,
          -7,
          -2.8292731336915784,
          -2.514547752660286,
          -7,
          -7,
          -2.605305046141109,
          -7,
          -2.6273658565927325,
          -2.7193312869837265,
          -2.6364878963533656,
          -7,
          -2.893206753059848,
          -7,
          -2.9689496809813427,
          -7,
          -7,
          -7,
          -2.7101173651118162,
          -7,
          -2.239716468579862,
          -2.051011265499672,
          -2.915135906622012,
          -7,
          -1.682370742516557,
          -7,
          -1.689999076404404,
          -2.184691430817599,
          -7,
          -2.6245112749871096,
          -2.424881636631067,
          -7,
          -1.9465100592086342,
          -2.9894498176666917,
          -3.0025979807199086,
          -7,
          -7,
          -2.7466341989375787,
          -1.6901960800285138,
          -2.957487564252472,
          -2.1122697684172707,
          -7,
          -2.0773679052841567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3591522114468955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1258064581395266,
          -7,
          -7,
          -4.276484782109383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.861992160051738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.716086853774832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4322475382686006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.553883026643874,
          -7,
          -2.967547976218862,
          -7,
          -7,
          -7,
          -3.918528335883243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.535547279176668,
          -7,
          -7,
          -7,
          -7,
          -4.135601690575795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0461047872460387,
          -7,
          -7,
          -7,
          -4.079940597152362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.864333055033393,
          -7,
          -7,
          -3.9729245192283265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.351989455435632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.37168959776849,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4990681845107945,
          -7,
          -7,
          -7,
          -3.62797998982998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.307282047033346,
          -7,
          -7,
          -3.7641761323903307,
          -7,
          -7,
          -7,
          -7,
          -3.1492191126553797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0557604646877348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.433238437984877,
          -7,
          -3.101403350555331,
          -7,
          -7,
          -7,
          -2.8363241157067516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.44723557700476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.399742926242862,
          -4.734199560686231,
          -7,
          -7,
          -4.576145470330555,
          -3.7028420403429068,
          -4.502270035398499,
          -4.094488597899382,
          -7,
          -7,
          -4.653096686469175,
          -3.999869692108268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7811191057733784,
          -4.150710399135644,
          -7,
          -4.705222055705383,
          -7,
          -4.2811925036053236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0993352776859577,
          -7,
          -4.305910002904616,
          -7,
          -7,
          -4.05545478494124,
          -7,
          -4.54441534103564,
          -2.7890163267933747,
          -2.63321588535909,
          -2.5943557129792554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6972293427597176,
          -7,
          -3.7113572411942726,
          -7,
          -7,
          -3.577778936695224,
          -4.503223051971403,
          -4.327647881293372,
          -7,
          -7,
          -7,
          -4.612582551653833,
          -7,
          -7,
          -7,
          -4.061301656206044,
          -7,
          -3.1882720955600496,
          -7,
          -3.2784792230463227,
          -7,
          -7,
          -7,
          -4.160048139552876,
          -7,
          -7,
          -7,
          -4.087485637315985,
          -7,
          -2.9802660415584765,
          -7,
          -7,
          -3.6126779183165016,
          -3.71474876072506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3923891456860735,
          -2.369215857410143,
          -3.104145550554008,
          -7,
          -2.9168047518661746,
          -2.5775801698613177,
          -3.08278537031645,
          -7,
          -7,
          -2.7072862306926577,
          -7,
          -3.0264004636880624,
          -7,
          -7,
          -7,
          -7,
          -3.2440295890300215,
          -2.671018481781557,
          -7,
          -7,
          -7,
          -7,
          -3.079543007402906,
          -7,
          -7,
          -7,
          -2.882398032133449,
          -7,
          -7,
          -7,
          -3.9430491110084067,
          -4.265179584364818,
          -7,
          -3.3845326154942486,
          -7,
          -3.1690863574870227,
          -2.69810054562339,
          -7,
          -7,
          -2.734319680859007,
          -7,
          -7,
          -3.608312042697327,
          -7,
          -7,
          -7,
          -3.3057811512549824,
          -7,
          -7,
          -7,
          -7,
          -3.488792371601868,
          -7,
          -7,
          -2.6541765418779604,
          -7,
          -3.8145139523682383,
          -7,
          -7,
          -3.677150521273433,
          -2.526339277389844,
          -3.4000556518905416,
          -2.857935264719429,
          -7,
          -7,
          -7,
          -3.9293167267534956,
          -7,
          -2.437667132893726,
          -2.9585638832219674,
          -2.720159303405957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9542425094393248,
          -7,
          -2.950364854376123,
          -7,
          -7,
          -7,
          -2.6205364371187407,
          -3.6732052817790453,
          -7,
          -3.236033147117636,
          -7,
          -7,
          -4.272305844402086,
          -7,
          -7,
          -7,
          -3.8381141548980646,
          -7,
          -3.66138669778177,
          -3.004728546096142,
          -7,
          -7,
          -7,
          -2.6074550232146687,
          -7,
          -2.8109042806687006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5285188124972784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3738311450738303,
          -2.7596678446896306,
          -7,
          -3.348888723071438,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6548180404907622,
          -2.239716468579862,
          -7,
          -2.4690852991231202,
          -2.4806601157105974,
          -7,
          -2.1722136039924793,
          -7,
          -2.8919089670894906,
          -7,
          -1.872156272748293,
          -2.979001748474721,
          -7,
          -7,
          -1.2338215040176737,
          -2.996949248495381,
          -3.024074987307426,
          -2.4756711883244296,
          -7,
          -2.1782573208121887,
          -2.1789769472931693,
          -3.2650537885040145,
          -2.1903316981702914,
          -2.7573960287930244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.084584995993608,
          -7,
          -7,
          -7,
          -3.9223101632143957,
          -3.9353056902899253,
          -7,
          -7,
          -7,
          -3.4079854213081364,
          -7,
          -3.3895204658463776,
          -7,
          -7,
          -3.7188337183038622,
          -3.003395081957638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.306113939864634,
          -7,
          -7,
          -3.6611498572447867,
          -7,
          -3.077912702949456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.335474616860434,
          -7,
          -7,
          -3.6742179455767,
          -7,
          -3.657533887557986,
          -7,
          -7,
          -7,
          -7,
          -3.758609142659744,
          -2.7660873761509297,
          -7,
          -7,
          -2.9628426812012423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.43288915534841,
          -7,
          -7,
          -7,
          -2.629875392934101,
          -7,
          -7,
          -7,
          -7,
          -3.3233896221747057,
          -3.6923180442592787,
          -7,
          -7,
          -7,
          -7,
          -3.6670792054642165,
          -7,
          -7,
          -7,
          -7,
          -3.6547539332529304,
          -7,
          -3.6887756552728446,
          -3.6695957810243134,
          -3.104487111312395,
          -7,
          -3.2062860444124324,
          -3.6979264448065052,
          -3.249373088627388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.396286546068402,
          -7,
          -7,
          -7,
          -3.654850090561394,
          -3.2216749970707688,
          -3.6549462265843444,
          -7,
          -7,
          -7,
          -2.9424765625193063,
          -7,
          -7,
          -7,
          -3.3811150807098507,
          -7,
          -7,
          -3.1812717715594614,
          -4.22618732283988,
          -7,
          -3.682506085939011,
          -3.370698092575577,
          -3.3378584290410944,
          -7,
          -3.243203462697779,
          -3.432568465297358,
          -3.208530929395862,
          -7,
          -3.662190990859007,
          -7,
          -7,
          -7,
          -4.12949654301666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0020700214018694,
          -2.199295849360945,
          -3.5413295776666933,
          -3.700963178159549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4212747912103465,
          -7,
          -7,
          -7,
          -2.627392810478352,
          -7,
          -3.650793039651931,
          -7,
          -7,
          -7,
          -7,
          -2.934245881023071,
          -7,
          -3.679700380871964,
          -7,
          -3.691081492122968,
          -7,
          -7,
          -2.7737110636466,
          -7,
          -7,
          -7,
          -3.6574383227029625,
          -7,
          -7,
          -7,
          -2.997386384397313,
          -7,
          -3.4577683903130203,
          -7,
          -7,
          -2.6063643015001317,
          -7,
          -7,
          -3.2077241069247497,
          -3.6921416093667836,
          -2.9235030669421045,
          -7,
          -7,
          -7,
          -3.678154038010437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.764447863656448,
          -7,
          -3.406114192678464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8963884118460372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.092281919036219,
          -3.406540180433955,
          -3.8776592441116087,
          -4.208208380252703,
          -3.6504046698680317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.366142676814887,
          -2.652558244551564,
          -7,
          -7,
          -7,
          -7,
          -3.658393026279124,
          -3.182129214052998,
          -7,
          -3.6691308473733324,
          -3.7287594751678745,
          -7,
          -7,
          -3.76544501809015,
          -7,
          -7,
          -7,
          -3.4924810101288766,
          -3.387122759927585,
          -3.183459657707637,
          -3.0752731600919394,
          -3.7076796483033396,
          -7,
          -7,
          -7,
          -3.0791812460476247,
          -7,
          -7,
          -3.4565178578052627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3971575742021414,
          -3.680698029697635,
          -7,
          -7,
          -3.668944734457734,
          -7,
          -7,
          -7,
          -7,
          -2.938582263081691,
          -3.008344629252689,
          -3.379305517750582,
          -7,
          -3.1588292245226572,
          -7,
          -7,
          -2.9188163903603797,
          -7,
          -7,
          -7,
          -3.658393026279124,
          -3.445136968713304,
          -3.6856521841155243,
          -3.43560550202284,
          -3.674034000431255,
          -3.417803722639881,
          -3.666705136119899,
          -3.7508034364302163,
          -3.121969981607635,
          -7,
          -7,
          -7,
          -3.7382254481425052,
          -3.696705780933917,
          -7,
          -7,
          -3.6778805815115905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.652922887567942,
          -7,
          -7,
          -3.8208907898990563,
          -3.829753918924975,
          -3.5000976136989457,
          -7,
          -3.0351094029445753,
          -3.0501808225071074,
          -3.4243915544102776,
          -7,
          -3.208441356438567,
          -7,
          -2.9363461582661623,
          -2.763490387713164,
          -3.2478096594727353,
          -3.652536418593025,
          -7,
          -7,
          -3.2168693557411143,
          -7,
          -7,
          -7,
          -3.7331972651065697,
          -3.356790460351716,
          -3.1231980750319988,
          -7,
          -7,
          -3.7062814674908884,
          -3.603144372620182,
          -4.057571020279038,
          -3.6871721045948,
          -3.5381965783494542,
          -3.501196242027089,
          -7,
          -3.6881230714056485,
          -3.3187860602767865,
          -7,
          -3.222456336679247,
          -4.621685084798318,
          -4.093237771546323,
          -4.05266188475707,
          -3.140013939525097,
          -4.366310866766735,
          -4.458350742139663,
          -3.06758446824051,
          -3.3726972562858792,
          -4.174815456482182,
          -4.089445858273834,
          -4.212819934885117,
          -3.5907675519657363,
          -3.7728815535896785,
          -3.9055260484350485,
          -7,
          -4.065019214136254,
          -3.733130363083499,
          -7,
          -3.483959548273282,
          -3.844021310509786,
          -3.422753941301348,
          -3.6335290505821596,
          -3.683542319957651,
          -3.5434057575549005,
          -4.032256025890453,
          -3.8897497752640375,
          -7,
          -3.3444225054544248,
          -7,
          -2.5277104376322375,
          -2.99450568945658,
          -2.794827527685904,
          -2.7814412051174204,
          -3.394889257167419,
          -7,
          -7,
          -3.814957517396995,
          -2.5347873586294916,
          -2.0299096034648,
          -2.485694132104429,
          -2.8940992466856414,
          -2.7638022240745928,
          -7,
          -3.3805730030668872,
          -7,
          -7,
          -3.867290669854884,
          -2.565758741761729,
          -3.812779707008964,
          -1.7911326033509545,
          -2.5236326771538353,
          -3.3752846655239948,
          -3.9293990555775653,
          -2.9631264410819047,
          -2.7102584385195545,
          -2.432969290874406,
          -2.292304660484183,
          -3.951628893836638,
          -3.962743321425236,
          -3.0144155225606033,
          -1.8990773475784999,
          -7,
          -3.098693158915045,
          -3.5554874342498453,
          -2.5496445099116336,
          -7,
          -3.0358798102309463,
          -7,
          -3.269606330839479,
          -3.841547165256553,
          -2.9719249491841913,
          -2.6468348655844047,
          -2.1874668989130193,
          -3.7241939195143297,
          -3.1967931395743268,
          -7,
          -3.091315159697223,
          -2.534607738735867,
          -3.258996253248911,
          -3.670987603010034,
          -7,
          -7,
          -7,
          -3.126699483839912,
          -2.178069395892812,
          -2.6644539285811577,
          -2.268464994147538,
          -2.565211888976517,
          -2.6165411519876707,
          -1.9418973906489527,
          -2.649497120803289,
          -3.0701302598602904,
          -3.356790460351716,
          -1.9958071924144132,
          -3.678518379040114,
          -1.9804825499397798,
          -1.8882816327903629,
          -2.3797801801557177,
          -3.0177287669604316,
          -2.32584571166409,
          -2.447158031342219,
          -2.166562368053224,
          -3.730378468587643,
          -7,
          -2.4126405161383464,
          -3.716003343634799,
          -2.6867174989421154,
          -2.913195513751178,
          -3.069112851387121,
          -7,
          -2.2119489373443315,
          -3.6804261708581456,
          -3.65571454961871,
          -2.81060728301842,
          -2.0655907518109906,
          -2.622632832548614,
          -2.9540494467635945,
          -2.36815401218214,
          -2.9836262871245345,
          -2.7500453120117676,
          -3.0662327191202587,
          -7,
          -3.660675788338524,
          -2.4369890877885383,
          -3.670802284260944,
          -2.846248724120565,
          -2.6580113966571126,
          -3.0523090996473234,
          -2.644063267433544,
          -2.659397536216122,
          -2.5853197019112546,
          -3.3489859568078573,
          -2.76217822440723,
          -2.6208928305639048,
          -3.1264561134318045,
          -2.6607299938405795,
          -7,
          -3.1829849670035815,
          -3.186862199888604,
          -2.9011857801371503,
          -2.4348144762668675,
          -3.2315545380068746,
          -3.3999331824955683,
          -2.221044971191486,
          -3.082246654743669,
          -2.1023538547952634,
          -2.4822481208171117,
          -2.653148169085708,
          -3.076276255404218,
          -3.214843848047698,
          -2.822580972267351,
          -2.8829038344697353,
          -2.0208601634104535,
          -2.859309887372584,
          -2.971554153446061,
          -2.680426170858145,
          -2.7798128631705805,
          -3.3492775274679554,
          -3.180412632838324,
          -2.4992110854524285,
          -2.8003733548913496,
          -2.918641834698101,
          -2.0523833126485127,
          -2.762678563727436,
          -2.410433534715368,
          -3.016531940957265,
          -1.9966959685634385,
          -2.7708520116421442,
          -2.698535492562001,
          -3.0704073217401198,
          -3.651956069533074,
          -3.652149605401653,
          -2.0925741306838965,
          -2.6820805787897077,
          -2.885078384149224,
          -2.4410521067600404,
          -2.253560841073256,
          -2.4218388711449164,
          -2.211397439106333,
          -0.5125801924184004,
          -2.48022477637793,
          -2.8150081817089876,
          -3.2321487062561682,
          -3.0573807905423553,
          -7,
          -2.566301484735771,
          -2.4399141343633817,
          -3.0755469613925306,
          -3.3534353378561645,
          -3.1845021545095675,
          -3.649821463224565,
          -1.857502033916249,
          -7,
          -3.6878855248487055,
          -3.1835545336188615,
          -3.6646419755561257,
          -3.212453961040276,
          -3.66661156841903,
          -2.9761665001319755,
          -2.7914354443811287,
          -3.106598813212537,
          -2.794575175655731,
          -3.0593740590659575,
          -3.234179705196503,
          -3.1727974640157566,
          -7,
          -3.6504046698680317,
          -2.6316282219706713,
          -2.051011265499672,
          -2.4690852991231202,
          -7,
          -2.4929349096166495,
          -3.0758509827433453,
          -2.1816530661246945,
          -3.172310968521954,
          -1.7144128995225087,
          -1.7844389742226907,
          -3.6503075231319366,
          -0.5080647173271233,
          -3.1740598077250253,
          -7,
          -1.58892697605668,
          -2.738841516373711,
          -2.6019764651267425,
          -2.648067129448935,
          -7,
          -1.1920793644398116,
          -2.9505595616118003,
          -2.637712045607411,
          -3.3498600821923312,
          -2.975891136401793,
          -3.649140064144219,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.986709048064589,
          -7,
          -7,
          -7,
          -7,
          -3.8585973449946924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3370597263205246,
          -7,
          -7,
          -3.2829618035343353,
          -3.496004750814479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9902056151848067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.090011024007147,
          -7,
          -7,
          -3.5221833176186865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6004283257321315,
          -7,
          -7,
          -3.6152133348013584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.531255325570886,
          -7,
          -7,
          -7,
          -7,
          -3.6924944075030846,
          -7,
          -7,
          -7,
          -4.288919605661727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.409075275308904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2550311633455515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7113853790984517,
          -7,
          -7,
          -7,
          -3.913995400974908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0273496077747564,
          -7,
          -7,
          -7,
          -2.3883694792886034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.137274968868117,
          -7,
          -3.258397804095509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.868938178332911,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5765716840652906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7511789891068097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8565562773114914,
          -7,
          -7,
          -3.7936419870291562,
          -7,
          -7,
          -7,
          -3.2461291256634364,
          -7,
          -3.596377143997599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.552320502337091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.214578953570499,
          -3.5170638734826545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4877038631637265,
          -3.504833189750311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5794371311162627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.994976673649691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6833172619218826,
          -7,
          -3.413020205344915,
          -7,
          -2.9325752234982905,
          -7,
          -7,
          -7,
          -3.243719975783927,
          -7,
          -3.5864747785713966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2748503200166645,
          -7,
          -7,
          -3.3311741373868458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4642354323751117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073645045513152,
          -7,
          -3.8247717053170036,
          -7,
          -7,
          -3.62490060220449,
          -3.5933968423002067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1025023091854522,
          -3.1251632285648294,
          -3.552911450216509,
          -7,
          -3.870579460552685,
          -3.217045041213536,
          -2.5516717465004923,
          -4.144153719132131,
          -2.78129693567756,
          -7,
          -2.2550794424275757,
          -2.660606789731412,
          -3.6035773681514667,
          -3.6455663552275963,
          -2.3268120088570554,
          -3.5610814979153176,
          -3.2057773538923087,
          -2.2395294860605826,
          -3.2025564256592927,
          -4.161098356450925,
          -4.037107632667927,
          -3.83241814508691,
          -3.5355894580221245,
          -2.5377027750519026,
          -2.4741865209346554,
          -7,
          -3.8756495750348585,
          -3.7932594110294806,
          -3.641275757231913,
          -2.726710912492605,
          -2.6985466393218007,
          -3.834388909363871,
          -7,
          -3.252731702726023,
          -2.916358225719054,
          -4.003180390771252,
          -4.14992695911359,
          -4.1006806447251,
          -2.3804833911645416,
          -4.079759919660093,
          -7,
          -4.6037828898966975,
          -3.75949787011256,
          -3.9194964878630616,
          -7,
          -3.6729901704091192,
          -7,
          -4.2764273349893775,
          -3.951386094880293,
          -7,
          -2.8018509291711813,
          -3.267328202727136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.481896274611678,
          -7,
          -7,
          -3.2295623970436256,
          -3.1596733301284265,
          -4.101546601696882,
          -7,
          -7,
          -7,
          -3.7377689332546584,
          -7,
          -4.111022346378763,
          -3.537000087321339,
          -3.2002118967002393,
          -7,
          -2.062731169926413,
          -3.2679088999866783,
          -3.16134803421355,
          -3.6429588794097905,
          -7,
          -7,
          -3.0594119374386564,
          -7,
          -7,
          -4.157789086282048,
          -3.3171172311500428,
          -7,
          -3.1985054080977675,
          -7,
          -7,
          -3.8369567370595505,
          -3.641441057915941,
          -7,
          -7,
          -7,
          -2.9390197764486667,
          -3.2123651936445854,
          -1.9216161842344557,
          -7,
          -2.906765889540728,
          -2.6273658565927325,
          -2.513716884831001,
          -2.6086985300968797,
          -2.59802407233419,
          -3.2187979981117376,
          -7,
          -2.532411353713923,
          -3.22698634552522,
          -2.5047262575624543,
          -2.8048206787211623,
          -2.786514813868446,
          -2.6059332229989143,
          -2.4316749748365134,
          -2.373396004448824,
          -1.8321894610685132,
          -1.2411575891607545,
          -2.3214887739865633,
          -2.991964044403458,
          -2.2135754974048063,
          -2.272394214426179,
          -7,
          -2.9157954276020663,
          -7,
          -2.4632140854837288,
          -2.381501865193101,
          -3.4956830676169153,
          -2.295716386359503,
          -2.605876295339839,
          -2.1065490989982276,
          -7,
          -2.3696374616388685,
          -7,
          -2.191368201005732,
          -7,
          -3.186532564592397,
          -7,
          -2.2882013016594915,
          -2.817300878393321,
          -2.642958879409791,
          -2.451210575353416,
          -7,
          -1.5582794773214852,
          -2.5180351146012647,
          -2.029291521820412,
          -7,
          -2.580696939712437,
          -3.2065560440990297,
          -2.9953060589380653,
          -1.5380360795803627,
          -2.570672638100542,
          -3.5025636691073636,
          -7,
          -2.515211304327802,
          -2.25598155747616,
          -1.4328691191563043,
          -2.713370522509538,
          -2.426278831879818,
          -3.0595634179012676,
          -2.4976843791614503,
          -3.543074235033532,
          -1.9358210087389172,
          -3.2275010649714306,
          -2.368100851709351,
          -3.2063246260747778,
          -7,
          -1.8884408608331742,
          -2.35817288180055,
          -3.0403385718205698,
          -3.5332635167787148,
          -1.9500592552910156,
          -7,
          -7,
          -2.8811943853625333,
          -3.263517716091967,
          -7,
          -1.8490133618429152,
          -2.6273658565927325,
          -3.4473131088235682,
          -3.5805828768143675,
          -2.406486954809536,
          -1.683361376444474,
          -1.9745692571196651,
          -1.834003217937453,
          -7,
          -7,
          -2.5304030005576528,
          -0.657428998176507,
          -2.661136319597869,
          -1.849183088775068,
          -2.7349300109996633,
          -2.578951614596268,
          -2.2025766721021527,
          -2.600220218753284,
          -2.1379459462394763,
          -7,
          -2.4224256763712044,
          -3.5018804937550585,
          -3.0149403497929366,
          -3.533772058384718,
          -2.808773457761177,
          -2.553655508356001,
          -7,
          -3.504742636271688,
          -7,
          -2.1040627074755904,
          -7,
          -2.7620530494584163,
          -3.5033820634737327,
          -2.552127207656179,
          -3.5443161417474274,
          -2.9084850188786495,
          -2.375010048025798,
          -2.2833012287035497,
          -2.048335847916511,
          -7,
          -7,
          -2.2475056544922394,
          -7,
          -7,
          -7,
          -2.1956361241961093,
          -2.915135906622012,
          -2.4806601157105974,
          -2.4929349096166495,
          -7,
          -2.414821470199764,
          -3.5079907248196913,
          -3.4871383754771865,
          -2.804480189105993,
          -7,
          -3.4878451201114355,
          -2.6134029793528817,
          -2.7101173651118162,
          -7,
          -2.1010795974904166,
          -3.281714970027296,
          -7,
          -7,
          -3.227629649571009,
          -3.4878451201114355,
          -2.788875115775417,
          -3.5241363765925686,
          -7,
          -3.450403086155366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.837326844932794,
          -7,
          -7,
          -7,
          -3.82013575187043,
          -3.53535742366243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.720696668749796,
          -3.5067079263501197,
          -7,
          -7,
          -3.3733523197972075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4549915753995015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.384389260324799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.600210306409328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4988616889928843,
          -7,
          -7,
          -7,
          -7,
          -2.5283562564155875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9797759327296856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.596731455692808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8038914411897666,
          -7,
          -7,
          -7,
          -7,
          -2.5919298588776174,
          -7,
          -2.9207939364157585,
          -3.877342545546019,
          -7,
          -3.485863329597335,
          -7,
          -3.911279392043913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.575374101516656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.959756672990995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.271400120441062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2095150145426308,
          -7,
          -7,
          -3.4893343477460994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.668572269184558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.813008795492136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9839268369509955,
          -2.983147802415998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.485366465708323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.255272505103306,
          -7,
          -3.6959192528313998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8698768132667665,
          -7,
          -3.3265662626752697,
          -7,
          -7,
          -7,
          -3.5222485612876895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6332360963830093,
          -7,
          -7,
          -2.8346855658486145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5684364144168854,
          -7,
          -7,
          -7,
          -4.106704129255459,
          -7,
          -7,
          -7,
          -7,
          -3.5705429398818973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0603200286882855,
          -7,
          -3.7648705879895643,
          -7,
          -7,
          -2.920980860300983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.602129078136506,
          -4.766598721064264,
          -4.32395300754292,
          -7,
          -3.4671935894118153,
          -3.360688062030678,
          -7,
          -4.138539521483194,
          -3.9079178445986336,
          -7,
          -3.4240972394005476,
          -4.603101049314056,
          -4.378670385207983,
          -3.9743142711950683,
          -3.532467726469376,
          -7,
          -7,
          -3.976744196285903,
          -3.7926717891415676,
          -4.63466868029747,
          -7,
          -4.030832389665022,
          -3.69640007813349,
          -4.10355059372542,
          -3.855428289576475,
          -7,
          -4.650433809651895,
          -4.1862498207790875,
          -7,
          -3.6838490294450406,
          -7,
          -3.9097806062427685,
          -3.8185337947129234,
          -3.545232871746966,
          -3.338904502164837,
          -4.296467738800115,
          -7,
          -7,
          -3.8292555152075627,
          -7,
          -2.864748335629659,
          -3.696651206927901,
          -4.0537888751837405,
          -3.9003671286564705,
          -7,
          -3.6618442235701645,
          -7,
          -4.272294244501396,
          -2.932727367301529,
          -2.6148972160331345,
          -2.2144125418657885,
          -3.9114772171061025,
          -3.577664104732127,
          -2.353882302989257,
          -7,
          -7,
          -7,
          -7,
          -2.819031838898129,
          -3.6762362167633116,
          -3.5082603055123345,
          -2.830536652178616,
          -3.9497092886669005,
          -3.32202393317598,
          -7,
          -7,
          -3.4602963267574753,
          -3.358315640082196,
          -2.2612323588004264,
          -3.8082013239727357,
          -7,
          -2.487954954870889,
          -7,
          -2.6700602174731345,
          -3.322770429937203,
          -3.0997009480543785,
          -7,
          -7,
          -7,
          -3.323638769865047,
          -7,
          -7,
          -7,
          -3.1767811277123865,
          -7,
          -3.0552253838538195,
          -7,
          -7,
          -3.813714391881145,
          -3.4074588904573924,
          -3.467608105583633,
          -3.4523998459114416,
          -7,
          -2.377418341527436,
          -3.3779130619562214,
          -2.858041548804122,
          -7,
          -7,
          -3.4840149626675627,
          -2.910624404889201,
          -2.809630585144874,
          -3.0814673283885368,
          -7,
          -7,
          -3.3296520757287933,
          -7,
          -2.2382902341806235,
          -3.541579243946581,
          -3.521399628115376,
          -2.954145988829548,
          -3.6061663146076204,
          -2.314814887210721,
          -2.4148062795010126,
          -2.2533380053261065,
          -3.510276844417355,
          -3.4424797690644486,
          -2.535167485114944,
          -2.778633531923382,
          -3.5010592622177517,
          -7,
          -7,
          -2.9258744064015607,
          -3.004894321731049,
          -7,
          -2.4603784007408818,
          -3.2024319432441346,
          -3.019720368759754,
          -7,
          -3.383366482755039,
          -7,
          -2.6851817198503856,
          -7,
          -3.1327398382608846,
          -7,
          -3.0107238653917734,
          -3.1659858227744544,
          -3.501333178645566,
          -3.333581606227454,
          -7,
          -2.645075342571035,
          -3.215637563435062,
          -2.8677620246502005,
          -7,
          -3.5400790888041724,
          -7,
          -3.5569052690554477,
          -2.2787353144843996,
          -2.6312987867110733,
          -7,
          -7,
          -3.1920095926536702,
          -3.1725542843902175,
          -2.34713478291002,
          -2.6681195600536824,
          -2.7076918101785252,
          -3.0118522700068455,
          -3.1451363462723716,
          -7,
          -3.0013875234866414,
          -7,
          -7,
          -3.338576007749808,
          -7,
          -2.106404121471442,
          -2.674729953761462,
          -3.166726055580052,
          -7,
          -2.8530895298518657,
          -7,
          -7,
          -3.8131805325860118,
          -7,
          -7,
          -2.848189116991399,
          -3.0632082200712114,
          -3.4186326873540653,
          -7,
          -2.9404611431699053,
          -2.488366758369108,
          -2.5133200642613844,
          -2.8372727025023003,
          -7,
          -7,
          -3.28315726254433,
          -2.175388801188173,
          -7,
          -2.8606374167737547,
          -3.1585886282533937,
          -3.1060775192489603,
          -2.6641905259500858,
          -3.1308762975873003,
          -2.740573205485716,
          -3.451939869365103,
          -3.5277587525209717,
          -7,
          -3.4394905903896835,
          -7,
          -3.5459253293558426,
          -3.430961453354948,
          -7,
          -7,
          -7,
          -2.7894240120068883,
          -7,
          -3.1929853790931624,
          -3.451632947456991,
          -7,
          -7,
          -7,
          -3.4753805931433615,
          -3.2277153514917414,
          -2.665393350279712,
          -7,
          -7,
          -3.2295538639811365,
          -7,
          -7,
          -7,
          -3.1724569744005873,
          -7,
          -7,
          -3.0758509827433453,
          -2.414821470199764,
          -7,
          -7,
          -7,
          -3.3760291817281805,
          -7,
          -7,
          -3.2907830986721986,
          -7,
          -7,
          -3.1243955289303478,
          -2.4066212736060524,
          -2.8403570592033565,
          -7,
          -7,
          -7,
          -7,
          -2.460038278929382,
          -3.4353665066126613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.65900293700084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9175055095525466,
          -7,
          -3.901785145303599,
          -3.589502796263764,
          -7,
          -2.9740509027928774,
          -4.576813403214398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.558912473106539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.336679827345716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5521813388393357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.519013748840418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.061037590063418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7972675408307164,
          -7,
          -7,
          -7,
          -4.736707170670822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7649229846498886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.728418718397232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.555638487947554,
          -7,
          -7,
          -4.369753752372034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.004751155591001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3843086022423106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6148972160331345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.129818743848935,
          -7,
          -7,
          -3.754654069255432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.620919923897559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.830995829309531,
          -7,
          -7,
          -4.544849071703771,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.316871567348347,
          -4.446257488316375,
          -7,
          -7,
          -7,
          -3.3121773564397787,
          -7,
          -7,
          -4.256035870409809,
          -7,
          -4.031206419827462,
          -7,
          -7,
          -4.5014084753854915,
          -3.5480382602549603,
          -7,
          -7,
          -4.049760551762476,
          -3.994361151908001,
          -7,
          -7,
          -7,
          -7,
          -4.784845433412646,
          -7,
          -7,
          -4.323994202181974,
          -7,
          -7,
          -4.22698634552522,
          -4.221674997070769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.053462604925455,
          -7,
          -3.8259883673374397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.303915683901469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5705429398818973,
          -7,
          -7,
          -7,
          -7,
          -4.353704703572165,
          -4.502650128017808,
          -4.871377342245107,
          -7,
          -7,
          -7,
          -4.134081437462512,
          -7,
          -7,
          -7,
          -4.0565237240791,
          -7,
          -7,
          -7,
          -3.9749259860897626,
          -7,
          -7,
          -7,
          -4.156246190397344,
          -7,
          -7,
          -7,
          -4.085991829752375,
          -7,
          -3.678690322780319,
          -7,
          -7,
          -2.819872821950546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6448412733000293,
          -7,
          -2.356790460351716,
          -2.226170123398999,
          -2.1623029745700477,
          -2.732393759822968,
          -2.1850967453424945,
          -7,
          -7,
          -2.874916474431565,
          -2.6794278966121188,
          -3.7247365509259858,
          -2.973589623427257,
          -1.672674993544776,
          -7,
          -3.14090067888619,
          -7,
          -2.280545852343135,
          -7,
          -7,
          -2.7774268223893115,
          -7,
          -7,
          -2.8000293592441343,
          -2.606381365110605,
          -7,
          -2.5721613902974734,
          -7,
          -7,
          -3.9916247345340055,
          -3.2786840287587213,
          -3.786972140295542,
          -7,
          -3.3613500243522663,
          -2.725094521081469,
          -3.130333768495006,
          -7,
          -7,
          -7,
          -2.5668581979161447,
          -7,
          -2.801403710017355,
          -7,
          -7,
          -3.397853141088609,
          -7,
          -2.5770319856260313,
          -7,
          -2.666049738480516,
          -2.509202522331103,
          -3.0277572046905536,
          -3.729407796963068,
          -2.6702458530741238,
          -7,
          -7,
          -7,
          -3.1065308538223815,
          -7,
          -7,
          -3.062863902110119,
          -2.738780558484369,
          -3.3099115233405927,
          -7,
          -3.3953263930693507,
          -2.2023066418924566,
          -2.800717078282385,
          -3.922829219666649,
          -7,
          -2.9298444960392853,
          -2.8937617620579434,
          -2.6009728956867484,
          -7,
          -2.6392373957820308,
          -7,
          -7,
          -3.2969940766702086,
          -7,
          -2.8407332346118066,
          -3.7189996378787185,
          -2.9708116108725178,
          -7,
          -2.9590413923210934,
          -2.342258144172425,
          -3.3602146132953523,
          -7,
          -7,
          -7,
          -7,
          -3.570215928477933,
          -3.0907869279492677,
          -2.205475036740891,
          -2.480486032340433,
          -2.8966321920836497,
          -2.810568529216413,
          -3.1108301168826937,
          -2.711602055927109,
          -3.4579575512036382,
          -7,
          -7,
          -7,
          -7,
          -2.414137362184477,
          -2.9894498176666917,
          -3.4560622244549513,
          -7,
          -2.4771212547196626,
          -7,
          -2.717454750443031,
          -7,
          -7,
          -7,
          -2.515873843711679,
          -7,
          -2.5428254269591797,
          -2.3492775274679554,
          -2.800545250591952,
          -3.3236645356081,
          -7,
          -7,
          -2.9324737646771535,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -1.682370742516557,
          -2.1722136039924793,
          -2.1816530661246945,
          -3.5079907248196913,
          -7,
          -7,
          -1.6206564798196208,
          -2.388377533114023,
          -2.367355921026019,
          -2.250420002308894,
          -2.7201133438861613,
          -7,
          -7,
          -1.505149978319906,
          -3.4559102403827433,
          -7,
          -7,
          -7,
          -2.683947130751512,
          -7,
          -3.5512059437479064,
          -7,
          -7,
          -2.220108088040055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5722906061514177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.650414383346564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.770336441095149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3443922736851106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0507276712150535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6954816764901977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626422495681244,
          -2.8976270912904414,
          -1.8878984880968723,
          -7,
          -7,
          -7,
          -3.4058583993176366,
          -7,
          -7,
          -3.4551495211798278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8198070645907563,
          -7,
          -7,
          -7,
          -7,
          -4.740149438037123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6875289612146345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.241795431295199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.598790506763115,
          -4.235495981820906,
          -7,
          -3.368100851709351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.800717078282385,
          -7,
          -7,
          -3.203576774977973,
          -7,
          -7,
          -7,
          -7,
          -2.733999286538387,
          -3.7062909572587635,
          -7,
          -7,
          -7,
          -3.4125445421080887,
          -3.646893624167745,
          -7,
          -3.1598678470925665,
          -7,
          -7,
          -7,
          -3.3647385550553985,
          -2.2355284469075487,
          -7,
          -4.309459822461211,
          -7,
          -3.949194774237982,
          -3.8007857903277626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2648178230095364,
          -2.916453948549925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3769417571467586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4471580313422192,
          -7,
          -7,
          -7,
          -3.172310968521954,
          -3.4871383754771865,
          -7,
          -1.6206564798196208,
          -7,
          -7,
          -1.9138138523837167,
          -7,
          -3.7973368007753496,
          -7,
          -7,
          -2.8152455919165633,
          -3.4323277922616042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5323721335678773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4459245638311797,
          -7,
          -7,
          -7,
          -7,
          -3.793580867368156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5169758348685476,
          -7,
          -7,
          -2.6728672017718136,
          -3.5266370221906365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.581038948772167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3521825181113627,
          -7,
          -7,
          -7,
          -4.071918810363806,
          -7,
          -7,
          -3.366236123718293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.743901550485179,
          -3.1436392352745433,
          -7,
          -7,
          -3.4940153747571436,
          -7,
          -7,
          -7,
          -2.7363965022766426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100198171834132,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40226138245468,
          -7,
          -7,
          -4.2659022043017565,
          -3.321598430465344,
          -3.351603072419129,
          -7,
          -7,
          -7,
          -7,
          -3.0242803760470798,
          -7,
          -3.0939467238905833,
          -7,
          -7,
          -7,
          -3.3854275148051305,
          -7,
          -3.463756162184995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.367525335688555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0842186867392387,
          -7,
          -3.649918718735419,
          -7,
          -3.3533390953113047,
          -7,
          -3.382557321908786,
          -7,
          -7,
          -3.113358331267094,
          -3.460206027457451,
          -7,
          -7,
          -7,
          -3.7099788120776522,
          -7,
          -7,
          -2.6328909362366324,
          -7,
          -7,
          -7,
          -3.0555694400609896,
          -7,
          -7,
          -4.044343734895107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.823474229170301,
          -7,
          -7,
          -7,
          -7,
          -3.3058885302843097,
          -7,
          -7,
          -3.3935752032695876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8384082784941866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.44216608578472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5709450534801004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.50944691990756,
          -7,
          -3.355930187078868,
          -7,
          -7,
          -2.316492290815025,
          -2.8532925186295284,
          -3.09377178149873,
          -3.388278863459639,
          -3.4019172505175748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.291701770729981,
          -7,
          -7,
          -7,
          -7,
          -3.313445370426414,
          -7,
          -7,
          -7,
          -7,
          -2.3242824552976926,
          -7,
          -2.807196660710947,
          -3.7401470072175327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8324337687520904,
          -7,
          -7,
          -7,
          -3.3244882333076564,
          -7,
          -3.0346284566253203,
          -7,
          -7,
          -7,
          -7,
          -3.3341520529922866,
          -2.355387657986574,
          -7,
          -7,
          -7,
          -7,
          -2.3114006325028105,
          -2.429235339626655,
          -7,
          -3.2670151976815847,
          -7,
          -7,
          -7,
          -3.7790912038454993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9361785093615893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8798601462734688,
          -7,
          -7,
          -3.345765693114488,
          -3.4804484087285745,
          -7,
          -7,
          -3.8794972872494284,
          -7,
          -7,
          -7,
          -3.032014034159506,
          -1.9119981789673555,
          -2.2080828797513523,
          -7,
          -7,
          -3.4528593357958526,
          -3.350829273582968,
          -3.612999071304003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6392872259102367,
          -3.8919116195854024,
          -7,
          -2.6346211954253143,
          -3.4534594745817477,
          -7,
          -7,
          -7,
          -7,
          -2.843076977385342,
          -3.6612446089593336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8932486652855034,
          -7,
          -7,
          -2.8803020025606587,
          -4.284618699431484,
          -7,
          -3.392169149489736,
          -4.156730826499419,
          -2.7496259063954898,
          -2.721747219185589,
          -4.128221507666712,
          -3.2424948410083423,
          -7,
          -3.1010593549081156,
          -3.81778565588553,
          -3.4974641190598588,
          -3.6689181403863924,
          -2.905812228431408,
          -4.017930232863559,
          -3.575187844927661,
          -3.035578650851512,
          -3.3712895730645562,
          -3.9290611240847655,
          -7,
          -4.408907857830475,
          -3.6672193984439363,
          -3.2294327686725683,
          -2.6432297408766043,
          -7,
          -3.6439360535105743,
          -3.523601966899433,
          -3.226857570288723,
          -3.0661519241936213,
          -3.0635913440707676,
          -3.7566469736211103,
          -3.804093977891654,
          -3.750893920382125,
          -3.4305587695227575,
          -4.282055370683707,
          -3.816804522879766,
          -3.906909410520852,
          -3.07778069353109,
          -7,
          -7,
          -4.291735048725623,
          -2.749716500604673,
          -2.0638537112918005,
          -7,
          -3.640978057358332,
          -7,
          -4.088620337639316,
          -7,
          -7,
          -7,
          -3.7177814197394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2810081021450763,
          -7,
          -7,
          -3.086964573877051,
          -3.7840642670723494,
          -4.478912638929306,
          -7,
          -7,
          -7,
          -3.1251354817237127,
          -7,
          -4.173127969938208,
          -3.7697464671794534,
          -3.0812490844673115,
          -7,
          -7,
          -7,
          -3.715313771574569,
          -7,
          -7,
          -7,
          -3.4317121323179034,
          -7,
          -7,
          -3.6245399138793952,
          -3.0528523073252756,
          -7,
          -4.350771183053166,
          -7,
          -7,
          -3.1658376246901283,
          -3.606918525948291,
          -7,
          -7,
          -7,
          -7,
          -3.2328055885720755,
          -2.0907774555677956,
          -7,
          -2.6357708836729112,
          -2.533299860933881,
          -2.116649245682762,
          -2.7861160241069776,
          -2.4294586393678927,
          -3.061829307294699,
          -3.031206419827462,
          -2.59477915450515,
          -3.3749315539781883,
          -2.8899402626241506,
          -2.217019209571482,
          -3.4274861090957858,
          -7,
          -1.792995127808348,
          -2.846708145456007,
          -1.5371191843949479,
          -7,
          -2.5081929260254405,
          -1.755966643579819,
          -7,
          -2.8695250628572273,
          -7,
          -3.059752694209299,
          -7,
          -2.6339731557896737,
          -7,
          -7,
          -2.8318697742805017,
          -1.7631524010078345,
          -2.441131622069119,
          -3.022222104507706,
          -2.775974331129369,
          -7,
          -2.8109042806687006,
          -3.3552599055273786,
          -7,
          -3.338257230246256,
          -2.6086232673136136,
          -7,
          -2.9246238275174004,
          -3.065729059462349,
          -7,
          -2.455352509957491,
          -1.6472456655033265,
          -2.0947039943211667,
          -7,
          -3.1492191126553797,
          -3.044147620878723,
          -2.7709992051639407,
          -3.0251009610468134,
          -7,
          -3.036429265626675,
          -3.3459615418131414,
          -2.745543201998024,
          -2.2607601977756273,
          -3.4342494523964753,
          -3.4192947217534604,
          -2.489489731962272,
          -7,
          -2.5592259935316983,
          -2.350952470202979,
          -2.5599066250361124,
          -2.2573092768181025,
          -2.496756725720979,
          -3.165752917359666,
          -7,
          -2.697851808799922,
          -3.126131407261984,
          -3.3602146132953523,
          -2.7788744720027396,
          -2.077246746270425,
          -3.0151501032294714,
          -7,
          -2.509948861201675,
          -7,
          -7,
          -3.2506029530166067,
          -7,
          -3.361538971269279,
          -2.8446324750435648,
          -2.5133992245838237,
          -2.41033850091073,
          -2.955567497098864,
          -3.5427009694481106,
          -7,
          -7,
          -1.8905536646547345,
          -2.8603380065709936,
          -2.742332282357148,
          -1.8170241925652633,
          -2.6246517495776027,
          -1.6263974025687553,
          -2.7823929882474965,
          -2.1736892394459417,
          -2.9277124619002755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4577305482459986,
          -2.5606422499960773,
          -7,
          -2.737788791709675,
          -7,
          -2.1739555149123078,
          -7,
          -3.3935752032695876,
          -2.6384892569546374,
          -3.045127306568027,
          -3.397592434038117,
          -7,
          -2.891723252106159,
          -2.5297066859104924,
          -3.6020599913279625,
          -7,
          -7,
          -2.4823971222533356,
          -7,
          -7,
          -7,
          -3.3675422735205767,
          -1.689999076404404,
          -2.8919089670894906,
          -1.7144128995225087,
          -2.804480189105993,
          -3.3760291817281805,
          -2.388377533114023,
          -7,
          -7,
          -2.5473644129795048,
          -7,
          -2.161135922786136,
          -3.3188977146274867,
          -7,
          -1.9853207870393694,
          -2.8304970163724894,
          -2.7506626461340558,
          -3.315130317183602,
          -7,
          -2.1662080251235856,
          -2.8382192219076257,
          -2.655538595608055,
          -3.016406500871118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.877331024881724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.697578033651113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9156767877161505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.806179973983887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368909516103976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.307923703611882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.286231854028553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.378307034856813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495658793053397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.131886407422347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.395972547794993,
          -4.130349853177955,
          -7,
          -4.027512692448811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.650996794844283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.386908988489542,
          -7,
          -7,
          -4.570204244943991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.064545338527522,
          -3.774735882551753,
          -7,
          -4.0655797147284485,
          -4.136213065513025,
          -7,
          -7,
          -3.417388646165674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3519508325993845,
          -4.502235879055773,
          -7,
          -7,
          -7,
          -2.4082399653118496,
          -7,
          -3.659250468772661,
          -7,
          -3.5911759503117913,
          -7,
          -7,
          -7,
          -7,
          -4.273903666420971,
          -7,
          -3.334252642334231,
          -7,
          -7,
          -7,
          -7,
          -4.302731264944306,
          -3.9599472157084987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.006679927740826,
          -7,
          -7,
          -7,
          -7,
          -4.068334313117254,
          -3.1394292733295357,
          -7,
          -2.2405492482826,
          -2.3180633349627615,
          -3.053462604925455,
          -3.683992086445554,
          -2.695043658821294,
          -2.510545010206612,
          -7,
          -3.2949803145573493,
          -2.5877109650189114,
          -4.024916464556482,
          -2.6273658565927325,
          -2.5378190950732744,
          -3.2734642726213465,
          -7,
          -7,
          -2.8129133566428557,
          -7,
          -7,
          -3.4641913706409997,
          -7,
          -7,
          -7,
          -2.4955443375464483,
          -7,
          -3.1242433089466486,
          -7,
          -7,
          -3.8653112963195166,
          -3.7947269872815297,
          -4.041590046889366,
          -7,
          -2.6432552250247716,
          -2.6434526764861874,
          -7,
          -7,
          -7,
          -7,
          -2.69810054562339,
          -7,
          -2.733999286538387,
          -7,
          -7,
          -3.2136062891507047,
          -2.515873843711679,
          -2.7783924580998707,
          -7,
          -2.9232440186302764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5563025007672873,
          -3.498655095245119,
          -2.8656960599160706,
          -7,
          -3.179360261070836,
          -2.356981400993131,
          -3.70047656153093,
          -7,
          -3.077731179652392,
          -7,
          -7,
          -7,
          -7,
          -3.399846712712922,
          -2.840106094456758,
          -7,
          -2.3263358609287517,
          -3.2195845262142546,
          -7,
          -7,
          -2.6834973176798114,
          -2.532117116248804,
          -2.7795964912578244,
          -3.0117395613883184,
          -7,
          -7,
          -7,
          -3.718750734739665,
          -3.6527296960692475,
          -3.212986184736668,
          -2.875928984922927,
          -7,
          -7,
          -3.568084331315394,
          -3.074450718954591,
          -2.060697840353612,
          -2.9372670722114127,
          -3.8335295817586434,
          -2.7788744720027396,
          -3.252755971088573,
          -2.4187844927322755,
          -3.4510184521554574,
          -7,
          -7,
          -2.2741578492636796,
          -7,
          -2.330413773349191,
          -2.946943270697825,
          -7,
          -7,
          -7,
          -7,
          -3.1928770665826405,
          -7,
          -7,
          -7,
          -2.374748346010104,
          -7,
          -2.41161970596323,
          -2.553883026643874,
          -3.0863598306747484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.184691430817599,
          -7,
          -1.7844389742226907,
          -7,
          -7,
          -2.367355921026019,
          -1.9138138523837167,
          -2.5473644129795048,
          -7,
          -7,
          -2.415321200998548,
          -7,
          -7,
          -2.3550682063488506,
          -7,
          -2.622214022966295,
          -7,
          -7,
          -1.5291502547236724,
          -7,
          -3.5399538416563967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5728716022004803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.517090281587123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055493006677845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.622214022966295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727232098507561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.36839846657925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.14903426716125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2979792441593623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.743352951409556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.694166295933198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.616391482643317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.732015598179676,
          -7,
          -7,
          -4.5729993170909475,
          -7,
          -7,
          -4.3907761898062825,
          -7,
          -7,
          -4.650462947480702,
          -7,
          -4.606746706755346,
          -7,
          -7,
          -7,
          -4.783803565738718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7028869950468515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721398375521505,
          -7,
          -7,
          -7,
          -7,
          -3.7707047682157793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.049818639702361,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.932565078682726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.681467373533731,
          -7,
          -2.9995654882259823,
          -7,
          -7,
          -3.505330896665327,
          -7,
          -7,
          -7,
          -3.4671639659690903,
          -7,
          -7,
          -2.9003671286564705,
          -2.8041394323353503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7427251313046983,
          -7,
          -7,
          -7,
          -2.6857417386022635,
          -7,
          -7,
          -3.82013575187043,
          -7,
          -7,
          -7,
          -7,
          -4.740188936948656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3888114134735234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.941511432634403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.381656482585787,
          -7,
          -3.3690302218091532,
          -7,
          -7,
          -7,
          -7,
          -3.6962689967455327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4055171069763763,
          -7,
          -7,
          -2.8830933585756897,
          -3.111598524880394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2247919564926817,
          -4.309566295893774,
          -7,
          -7,
          -3.9770373352246815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.543664583552706,
          -7,
          -7,
          -7,
          -2.2600713879850747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4653828514484184,
          -7,
          -1.872156272748293,
          -3.6503075231319366,
          -3.4878451201114355,
          -7,
          -2.250420002308894,
          -7,
          -7,
          -7,
          -7,
          -4.2746657690813885,
          -7,
          -7,
          -1.8774391038045248,
          -3.4331295175804857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5330090224954853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274342616116883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.705795856951702,
          -7,
          -7,
          -7,
          -4.356293621448165,
          -3.7589497212801803,
          -7,
          -7,
          -7,
          -3.9883136494546534,
          -7,
          -3.0820996162644265,
          -3.27315566043433,
          -7,
          -4.291945750170066,
          -2.768129153306671,
          -7,
          -7,
          -7,
          -7,
          -4.277334112215984,
          -4.279027805622721,
          -2.998045230323877,
          -7,
          -7,
          -4.277265309456845,
          -7,
          -3.679836558918098,
          -7,
          -7,
          -7,
          -4.30629632863675,
          -7,
          -3.24369573586642,
          -7,
          -7,
          -3.9793890131122187,
          -7,
          -4.276392863069535,
          -7,
          -7,
          -7,
          -7,
          -4.001863462692524,
          -3.1192008839606693,
          -7,
          -7,
          -3.3948017771627113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.994998640442741,
          -7,
          -7,
          -7,
          -2.864333055033393,
          -7,
          -7,
          -7,
          -7,
          -3.7132174481438476,
          -4.285016917629171,
          -7,
          -7,
          -3.8474369209063135,
          -7,
          -4.278707883337975,
          -7,
          -7,
          -7,
          -7,
          -4.275725867573664,
          -7,
          -3.983039616046102,
          -4.27932466544261,
          -3.6866362692622934,
          -7,
          -3.805636766305935,
          -4.286456469746983,
          -3.0998826777007147,
          -4.282871245335206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9852692552788476,
          -7,
          -7,
          -4.278250442299367,
          -4.275748884479195,
          -3.8095597146352675,
          -4.275771900164932,
          -7,
          -7,
          -7,
          -2.934281971477399,
          -7,
          -7,
          -7,
          -3.805274250022863,
          -7,
          -7,
          -3.5630853728550487,
          -3.7948782483762575,
          -7,
          -4.282531483812228,
          -3.802682525274441,
          -2.8419848045901137,
          -7,
          -3.8152234391209294,
          -3.818775563959327,
          -3.806202592899124,
          -7,
          -4.2775175329691715,
          -7,
          -7,
          -7,
          -3.3649260337899753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3276561037821124,
          -2.6531714437973566,
          -4.027512692448811,
          -4.287241711178348,
          -7,
          -3.9180827846421873,
          -7,
          -7,
          -7,
          -4.024916464556482,
          -3.9918460536448968,
          -7,
          -7,
          -7,
          -2.892708063453812,
          -7,
          -4.274781122605907,
          -7,
          -7,
          -7,
          -7,
          -3.4450924439560473,
          -4.283617786365643,
          -4.281828466560518,
          -7,
          -3.5063246026216772,
          -4.277907045047425,
          -7,
          -2.736094552405685,
          -7,
          -7,
          -7,
          -4.276369880269439,
          -4.275449569516267,
          -7,
          -7,
          -3.5296869537729165,
          -7,
          -2.934111116821407,
          -7,
          -7,
          -2.6100343496463325,
          -7,
          -4.284092190642834,
          -3.805998980240112,
          -4.2849718546478694,
          -3.5092697453761876,
          -7,
          -4.281169773409736,
          -4.278662160909981,
          -4.281442457270873,
          -7,
          -7,
          -3.699338997845602,
          -7,
          -7,
          -7,
          -3.730685396203913,
          -7,
          -3.061389642585325,
          -7,
          -3.6867032848448513,
          -4.276323911020188,
          -7,
          -7,
          -7,
          -4.28023680960969,
          -4.274942566083686,
          -7,
          -7,
          -3.31492005599242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6834748147920684,
          -3.8117983509420643,
          -3.7382056096443677,
          -2.977168136967076,
          -4.274688842237558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.579623563905115,
          -2.76973109256287,
          -7,
          -7,
          -7,
          -7,
          -4.276599653557644,
          -3.674700431229815,
          -7,
          -4.279210512601395,
          -4.294620516587421,
          -7,
          -7,
          -4.304899640332865,
          -7,
          -7,
          -7,
          -3.5348718599395945,
          -3.9829267037708376,
          -3.1947547791802955,
          -3.582222499269305,
          -2.942756266786523,
          -7,
          -7,
          -7,
          -3.180622801527713,
          -7,
          -4.292388998301932,
          -3.7004873811595234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985493836151524,
          -4.282078054577154,
          -7,
          -7,
          -4.27916484306227,
          -7,
          -7,
          -7,
          -7,
          -3.4252284439018794,
          -3.5107013638161044,
          -3.9809573162296203,
          -7,
          -3.0384140840327856,
          -7,
          -7,
          -3.155085857531935,
          -7,
          -7,
          -7,
          -4.276599653557644,
          -3.69727294443456,
          -4.283323847618786,
          -3.819609732751585,
          -3.979343470486138,
          -3.6897970549034977,
          -4.278616433667833,
          -2.869316416441605,
          -3.5943262408124452,
          -7,
          -7,
          -7,
          -4.297213195989642,
          -3.985067033150501,
          -7,
          -7,
          -3.9802988641377226,
          -7,
          -7,
          -7,
          -7,
          -4.27731117917403,
          -4.275288314435602,
          -7,
          -7,
          -3.8386759678553695,
          -4.023396514477751,
          -2.734447892803061,
          -7,
          -3.5971025620238164,
          -3.0132019567134645,
          -3.992686039162128,
          -7,
          -3.806179973983887,
          -7,
          -3.3876122562959106,
          -3.2146604767734983,
          -3.8164622587764545,
          -4.2751961417856235,
          -7,
          -7,
          -3.808323528187753,
          -7,
          -7,
          -3.975178970940877,
          -3.693639026161548,
          -3.975431808509263,
          -3.4768730155120444,
          -7,
          -7,
          -2.4335080004270413,
          -2.6802009545811027,
          -3.4909762616172006,
          -4.2837081890474655,
          -2.127327923920255,
          -3.6167485032003,
          -3.4188350827355722,
          -2.867697143868812,
          -1.9741594396760127,
          -7,
          -2.5573289383908295,
          -2.9564085711958326,
          -1.7804520698080468,
          -2.0144795598484855,
          -2.4060360075402034,
          -3.1766468005217803,
          -3.202417674636456,
          -2.583081929290774,
          -2.2379228771710533,
          -2.666842135908416,
          -3.248969935913661,
          -2.9534505265771154,
          -2.801654645762421,
          -2.388050584882719,
          -2.0443945648168875,
          -3.9151887051731564,
          -1.3559007787531197,
          -2.0905560367890903,
          -2.219388027689568,
          -2.43930110762843,
          -2.648273526438782,
          -2.2158522301944057,
          -3.408203611015591,
          -2.9028055343752106,
          -2.902739608205772,
          -3.3505629614916206,
          -3.571941635074462,
          -3.067644645080264,
          -2.877553198541244,
          -3.7443712273318606,
          -3.0400966434067005,
          -2.9611953874821224,
          -2.8627612481426667,
          -3.1253185781235264,
          -3.9849096841478056,
          -3.2988821738926766,
          -7,
          -3.473178677841271,
          -2.767791729273228,
          -2.555720466529754,
          -2.6169859707394836,
          -2.918715693733087,
          -3.0947836302399567,
          -7,
          -3.6012630540285273,
          -7,
          -7,
          -4.33683982531461,
          -2.7163629652763714,
          -3.7169210731667612,
          -2.3850403290293087,
          -2.621864856342066,
          -3.05219091130959,
          -3.0831103583450727,
          -3.43230486406257,
          -3.135747334120506,
          -3.0224971049803444,
          -2.284312753102662,
          -3.8901228164155626,
          -3.7705042733011505,
          -2.9066043717249803,
          -2.179680733238253,
          -7,
          -3.21793492502484,
          -3.5038663111778603,
          -2.7033843399602757,
          -7,
          -3.3624259223086304,
          -7,
          -2.8008227846190157,
          -4.328277644409767,
          -3.580674129529291,
          -2.696460051338408,
          -2.183768127867326,
          -4.293384655649437,
          -3.02539768750682,
          -4.297432204810169,
          -3.4670369854657044,
          -2.938500480932248,
          -3.2049636242070005,
          -3.9785913268200748,
          -4.277357044047016,
          -7,
          -3.505579536394238,
          -2.689294534245845,
          -2.1949404664294887,
          -3.2780673308886628,
          -2.8180278418592564,
          -3.0261926680962223,
          -2.7767219333485307,
          -1.1517477758067503,
          -3.03906142848015,
          -3.5809477726878765,
          -3.4981266865210188,
          -2.1352220142203384,
          -3.3781252456193727,
          -1.7353587434987676,
          -2.456433021146642,
          -2.824754043226546,
          -3.0122887398346068,
          -2.649208612936733,
          -2.3537196154121895,
          -2.4339748638984138,
          -2.9719602465585666,
          -3.5081480005591854,
          -2.789963270670173,
          -3.5920434496293616,
          -2.499797903125245,
          -3.4396258846219,
          -3.501470072100412,
          -3.5765716840652906,
          -2.2354765609057865,
          -3.6798138655421604,
          -4.275955981753744,
          -2.536404010604367,
          -1.932557840382941,
          -2.0534080878779726,
          -3.576341350205793,
          -2.5331926071304895,
          -3.583584138515784,
          -2.5743589135236467,
          -3.6769449705169395,
          -4.2746657690813885,
          -4.277150613963797,
          -2.820693949973386,
          -3.6774244377012475,
          -3.28463373316459,
          -2.4642223595797477,
          -3.576617736181542,
          -2.631388417846043,
          -2.6228669789943773,
          -2.7428736842330848,
          -3.9735665465930157,
          -2.8755732063094888,
          -3.198313363563387,
          -3.1802141284628545,
          -2.1842418562440282,
          -3.4359353272334707,
          -3.6749070468191296,
          -3.8008315923191467,
          -3.025988181951707,
          -2.1675283109397934,
          -3.3859412481478177,
          -3.245445364900788,
          -2.4141655677036877,
          -3.6809244488059925,
          -1.8959507388515917,
          -3.0793847738879054,
          -2.9259511995848437,
          -3.5824724529348537,
          -3.381611391532234,
          -2.7674140097746927,
          -3.4990911223977146,
          -2.0587125118983254,
          -2.7305355492917256,
          -3.501355997218113,
          -3.282009999342054,
          -2.789602075987727,
          -3.9736357734174077,
          -3.674286904925071,
          -2.6804126698850133,
          -3.3336039908101927,
          -3.5080131962698764,
          -2.365744844462691,
          -3.2121209897122247,
          -2.851115599375254,
          -3.290835646600807,
          -2.1561635279953113,
          -2.5930230972988877,
          -2.663658101893888,
          -2.9072393288920026,
          -4.275057846120968,
          -4.275103949569196,
          -2.181512876873766,
          -2.8609572478573275,
          -3.3233896221747057,
          -2.765562123075623,
          -1.3103144813116823,
          -2.9370161074648142,
          -2.009064118906962,
          -2.3749459199625567,
          -3.431914899362271,
          -3.247660872434416,
          -3.577836341292744,
          -7,
          -3.168021270953063,
          -3.0131477995126383,
          -3.2528530309798933,
          -3.974626813873033,
          -3.6752741208880217,
          -3.9734742269919017,
          -1.8624390834955207,
          -7,
          -3.1371731930253115,
          -3.8000293592441343,
          -3.432740292987791,
          -3.682212788529763,
          -3.579440597139797,
          -3.2390263236179746,
          -2.9825795713428316,
          -2.724380911198085,
          -3.332101666969759,
          -3.578318240585008,
          -3.1133193018303085,
          -3.7974522094768086,
          -4.274619619091238,
          -4.274688842237558,
          -3.001050179041275,
          -2.6245112749871096,
          -2.979001748474721,
          -0.5080647173271233,
          -2.6134029793528817,
          -3.2907830986721986,
          -2.7201133438861613,
          -3.7973368007753496,
          -2.161135922786136,
          -2.415321200998548,
          -4.2746657690813885,
          -7,
          -3.5758111182698875,
          -7,
          -2.0680760277803496,
          -2.707549900438748,
          -1.4307208410483763,
          -3.274134747878962,
          -7,
          -1.824837262814491,
          -3.575511135352897,
          -1.465817739756417,
          -3.7976367996323463,
          -3.5816538871768926,
          -3.973312620452902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2844307338445193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.547528576459782,
          -7,
          -7,
          -4.368519314386888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.432852288040553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8847953639489807,
          -7,
          -2.9479236198317262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6972293427597176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7716609593488872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.60982909957511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8195439355418688,
          -7,
          -7,
          -7,
          -4.631748074396569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9831750720378127,
          -2.3242824552976926,
          -7,
          -7,
          -7,
          -7,
          -2.978180516937414,
          -2.4502491083193614,
          -7,
          -7,
          -7,
          -3.7813860417059795,
          -7,
          -7,
          -7,
          -7,
          -2.873029812061044,
          -2.039672704763951,
          -7,
          -7,
          -7,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.466837974667767,
          -4.639526330971463,
          -3.962061384187691,
          -7,
          -3.3354579006893843,
          -7,
          -2.48108415181509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.278410601475816,
          -1.968482948553935,
          -2.9876662649262746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.32888903983956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.298125005020574,
          -7,
          -7,
          -4.080637308078068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8129133566428557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.109240968588203,
          -7,
          -7,
          -3.1711411510283822,
          -2.3532840899940375,
          -2.384114363914378,
          -7,
          -7,
          -7,
          -2.667639706056411,
          -7,
          -7,
          -7,
          -7,
          -3.4727564493172123,
          -3.5792575532587234,
          -3.447778009294621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8452221064290137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3802112417116064,
          -2.5149902330672873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.424881636631067,
          -7,
          -3.1740598077250253,
          -2.7101173651118162,
          -7,
          -7,
          -7,
          -3.3188977146274867,
          -7,
          -7,
          -3.5758111182698875,
          -7,
          -7,
          -3.1228709228644354,
          -2.7349597612724454,
          -7,
          -7,
          -7,
          -2.5440680443502757,
          -1.6532125137753437,
          -2.7552394576339077,
          -0.5440680443502757,
          -2.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.970644363685447,
          -7,
          -7,
          -7,
          -3.716504163773217,
          -3.7371926427047373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.260262244714977,
          -3.2234094022589295,
          -7,
          -7,
          -3.5618960672777495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1740598077250253,
          -7,
          -7,
          -7,
          -4.3588291816933245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3157604906657347,
          -7,
          -7,
          -3.373279893277496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.59402403573142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.247703281934172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9360107957152097,
          -7,
          -3.287353772714747,
          -7,
          -7,
          -7,
          -3.4194473557107146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -7,
          -7,
          -7,
          -3.198347748146906,
          -7,
          -7,
          -7,
          -7,
          -3.3283796034387376,
          -7,
          -3.6475785542124552,
          -4.136022599397011,
          -7,
          -7,
          -7,
          -4.143553428678768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0135955235372895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7710727832211948,
          -3.571941635074462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8488047010518036,
          -7,
          -7,
          -7,
          -3.4157410362223435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.001949941084268,
          -7,
          -3.2113875529368587,
          -7,
          -2.9425041061680806,
          -7,
          -7,
          -3.6959908142764144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1486026548060932,
          -7,
          -3.221101119961505,
          -7,
          -7,
          -3.1123513354275403,
          -7,
          -7,
          -3.227372442289636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.910224071953891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1983821300082944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.584545139959466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.999855211039865,
          -7,
          -3.9106110664017573,
          -7,
          -7,
          -7,
          -2.87456464300379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5801263254115825,
          -7,
          -7,
          -7,
          -3.7157736079156267,
          -7,
          -7,
          -3.3564083270389813,
          -7,
          -7,
          -3.217220655644519,
          -3.1455071714096627,
          -2.9059756752294317,
          -7,
          -7,
          -7,
          -3.3180633349627615,
          -7,
          -4.10191196459515,
          -3.331832044436249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.702645906884803,
          -7,
          -3.943424303172156,
          -7,
          -2.509202522331103,
          -3.9565645914886343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.241795431295199,
          -7,
          -7,
          -3.629470763032389,
          -4.153936754460935,
          -7,
          -7,
          -4.44617976779828,
          -3.2022157758011316,
          -3.7865384804978026,
          -3.939685617103282,
          -3.223196915940392,
          -7,
          -3.472573626968942,
          -4.28657995889235,
          -4.666789329818256,
          -4.208058223605032,
          -3.0899555492168083,
          -7,
          -4.407815642384198,
          -3.5163653623524644,
          -4.04166896647561,
          -4.319251841140254,
          -7,
          -5.105333024616749,
          -7,
          -4.315718507536319,
          -3.634544441219856,
          -3.886490725172482,
          -4.636588183729843,
          -7,
          -7,
          -3.935549248954129,
          -3.6481159567559627,
          -4.292521884574141,
          -4.263754388840006,
          -3.4298060925892933,
          -3.16577833129364,
          -4.264534495078272,
          -4.092088739255806,
          -4.370309495258699,
          -3.806078174284573,
          -7,
          -2.877563299235066,
          -4.283255987338656,
          -3.8498696508006978,
          -2.860737174321432,
          -7,
          -4.092439911331141,
          -7,
          -3.778488903688076,
          -2.1600824724895236,
          -2.2280472867866634,
          -2.2469838680804592,
          -4.173506770208104,
          -7,
          -7,
          -7,
          -7,
          -2.700126581535961,
          -7,
          -3.0692980121155293,
          -3.2227164711475833,
          -7,
          -2.976203202107988,
          -3.754334842507978,
          -3.9451759445910755,
          -7,
          -7,
          -7,
          -3.622970011310206,
          -3.06310808299862,
          -3.993313738751798,
          -2.9309490311675233,
          -3.0557257391864248,
          -7,
          -2.4474681309497557,
          -3.572832893302384,
          -2.958042364718105,
          -3.420615770625765,
          -2.8980195852004846,
          -7,
          -2.826412862771272,
          -7,
          -7,
          -4.1396902216529226,
          -3.214210135751011,
          -7,
          -2.501842838364596,
          -7,
          -7,
          -2.92933376158383,
          -3.7551122663950713,
          -7,
          -3.1556396337597765,
          -7,
          -3.2357808703275603,
          -3.810534939790517,
          -2.370625709491545,
          -3.1702617153949575,
          -2.4523615331345736,
          -2.737987326333431,
          -2.1389970140326358,
          -1.7622744882848056,
          -2.3428173146357327,
          -2.4893959217271293,
          -7,
          -1.6940683505690908,
          -2.4270531135645013,
          -2.3929179375969776,
          -2.537189226243645,
          -2.072111975265909,
          -2.889021422095225,
          -2.9785717732538797,
          -2.0019259210360385,
          -1.9202393082601417,
          -3.3461573022320086,
          -2.562768543016519,
          -2.6609708253620337,
          -3.3104808914626753,
          -2.2992496924024803,
          -2.5462958351214424,
          -2.885926339801431,
          -7,
          -1.6808402002950058,
          -2.911956189072687,
          -7,
          -3.0866302905453735,
          -2.736600530962847,
          -2.829853802037627,
          -7,
          -2.5335178620169674,
          -7,
          -3.0941215958405612,
          -3.17868923977559,
          -7,
          -7,
          -2.1508744707026994,
          -3.184691430817599,
          -2.28953940665447,
          -2.285557309007774,
          -3.1341771075767664,
          -2.7866804531966487,
          -2.317366791939507,
          -2.011234928974885,
          -7,
          -2.614264287358705,
          -3.1640552918934515,
          -3.041392685158225,
          -3.0310042813635367,
          -2.7269987279362624,
          -3.1522883443830563,
          -3.1646502159342966,
          -3.38246732201583,
          -2.4113874629192447,
          -2.991004440330755,
          -3.271609301378832,
          -2.456897187449348,
          -2.924795995797912,
          -2.491404797847201,
          -2.9367649976099415,
          -2.2994588715726607,
          -2.907411360774586,
          -2.9459607035775686,
          -3.6769678142947586,
          -7,
          -1.9879073308783721,
          -2.435252653031749,
          -2.4051185932991612,
          -3.2182728535714475,
          -2.1533574714829737,
          -3.1192558892779365,
          -7,
          -2.664556509752071,
          -2.374748346010104,
          -3.262213705476417,
          -2.0485250362746963,
          -2.8382192219076257,
          -3.1070968573977424,
          -2.3532535284738882,
          -1.6682597681200826,
          -2.551144908756322,
          -2.306271810233204,
          -1.9967710298698016,
          -7,
          -7,
          -2.95177891987254,
          -2.953880446490549,
          -2.4626974081017172,
          -2.103059683628344,
          -2.2862865009774356,
          -2.6058435390580894,
          -2.163187311522274,
          -2.05594595104709,
          -2.5127733089991104,
          -3.1547282074401557,
          -7,
          -7,
          -7,
          -7,
          -2.3671487688723643,
          -2.998695158311656,
          -7,
          -2.8555191556678,
          -7,
          -1.6603020945120228,
          -3.142389466118836,
          -2.9334872878487053,
          -7,
          -2.6872316010647745,
          -2.0291300268851757,
          -2.693433803801546,
          -2.498861688992884,
          -2.3568620729303107,
          -2.8109042806687006,
          -3.265525335219074,
          -3.1571544399062814,
          -2.0126152494987535,
          -7,
          -3.1179338350396413,
          -3.1189257528257768,
          -1.470116353151004,
          -1.9465100592086342,
          -1.2338215040176737,
          -1.58892697605668,
          -2.1010795974904166,
          -3.1243955289303478,
          -1.505149978319906,
          -2.8152455919165633,
          -1.9853207870393694,
          -2.3550682063488506,
          -1.8774391038045248,
          -2.0680760277803496,
          -3.1228709228644354,
          -7,
          -7,
          -2.4221519325979415,
          -1.9071963102716016,
          -7,
          -7,
          -2.2043913319193,
          -2.640150040936102,
          -2.3252170252342044,
          -2.5171958979499744,
          -3.1992064791616577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9042375403597336,
          -7,
          -7,
          -7,
          -7,
          -3.8361341494653747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3222606541436837,
          -7,
          -7,
          -3.540954808926133,
          -3.687902231588367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.111105619410548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.083538451230139,
          -7,
          -3.4743619760326307,
          -3.4718781993072905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5801263254115825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5194670251274163,
          -7,
          -7,
          -7,
          -7,
          -3.6591552809406296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.509459136176865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.192691325123439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7010208151180817,
          -7,
          -7,
          -7,
          -3.9112337273068007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9748186146454407,
          -7,
          -7,
          -7,
          -2.3405937554590173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.212453961040276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.159206133646325,
          -7,
          -7,
          -7,
          -3.4776999283321306,
          -7,
          -7,
          -3.054868296692888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.794139355767774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7559644840871944,
          -7,
          -7,
          -3.848461840439585,
          -7,
          -7,
          -7,
          -3.1987945001755986,
          -7,
          -3.5543680009900878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0653929615619915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.470410490975931,
          -7,
          -7,
          -7,
          -3.1811763955885275,
          -3.466125870418199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.461198288622493,
          -3.4409000039084243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.086786795626624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0782150732756044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.392169149489736,
          -7,
          -2.9279346817411795,
          -7,
          -7,
          -7,
          -3.3456350782317283,
          -7,
          -3.5434471800817002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.252681139281379,
          -7,
          -7,
          -3.0108827245590275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5044198859720406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.060093183824469,
          -7,
          -3.931856574894348,
          -7,
          -7,
          -3.729904959419274,
          -3.55108386518578,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.074747273672198,
          -3.1126869080645676,
          -3.478484039834738,
          -7,
          -3.865222456290179,
          -3.66133934000604,
          -2.5310141823998307,
          -4.138444807652802,
          -2.7603455395182035,
          -7,
          -2.2316416747484227,
          -2.6517352463427852,
          -3.6002829916784354,
          -3.6431762192974477,
          -2.317613388741308,
          -3.5537819221196365,
          -3.226309849143952,
          -2.242676758047947,
          -3.18998131938412,
          -4.03248780817215,
          -4.02234587626988,
          -3.8089094696794237,
          -3.5199591807520685,
          -2.5304820004707973,
          -2.4632224050091973,
          -7,
          -3.872127124489488,
          -3.7881400774194143,
          -3.6035773681514667,
          -2.6861605098427175,
          -2.690355133127491,
          -3.9097164532343447,
          -7,
          -3.243806689744405,
          -2.8985756053931113,
          -4.296336054602047,
          -7,
          -3.7932664017413886,
          -2.37461859451139,
          -4.066400475955629,
          -7,
          -4.29877668624019,
          -3.877544107715944,
          -3.900039235487325,
          -7,
          -3.5366531185480494,
          -7,
          -4.272224638590053,
          -7,
          -7,
          -3.3084729414195233,
          -3.366982975977851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.64931051416874,
          -7,
          -7,
          -4.399881302691986,
          -3.1517117392567644,
          -4.138296955391362,
          -7,
          -7,
          -7,
          -4.035249578686349,
          -3.856547644856748,
          -4.954425839520279,
          -3.814580516010319,
          -3.6664867801179333,
          -7,
          -3.370142847051102,
          -3.255548160131223,
          -3.552323401102493,
          -3.605412798153051,
          -7,
          -7,
          -3.381527638581548,
          -7,
          -7,
          -4.154109373586023,
          -3.6889979031063134,
          -7,
          -3.5785819114018698,
          -7,
          -7,
          -7,
          -3.6292396540870877,
          -7,
          -7,
          -7,
          -2.7937903846908188,
          -3.2014578181199917,
          -1.9146836013030524,
          -7,
          -3.2643455070500926,
          -2.526626414247843,
          -2.4308272668926096,
          -2.8578643942098227,
          -2.556181846652911,
          -7,
          -7,
          -2.3968657182226067,
          -2.699114745041209,
          -2.53334702057068,
          -2.8408585540418794,
          -2.8205954965444904,
          -2.571999816397063,
          -2.4267280833770184,
          -2.182372377102884,
          -1.8430534957192342,
          -1.1944804985563715,
          -2.225853169689125,
          -2.9642596301968487,
          -2.1153544418072685,
          -1.968482948553935,
          -3.500236474825639,
          -2.864955827110473,
          -7,
          -2.4333462008411337,
          -2.1977882080746,
          -3.442009159140952,
          -2.3129627539223483,
          -2.610113465677473,
          -2.088254758332001,
          -7,
          -2.2479732663618064,
          -7,
          -2.0770270593685027,
          -7,
          -3.131779009369187,
          -7,
          -2.3638682764365573,
          -2.7662640906519957,
          -2.498034723687027,
          -2.3443922736851106,
          -7,
          -1.5344166586740948,
          -2.472091271546032,
          -1.7939117977421835,
          -7,
          -2.3899251194809668,
          -3.455758203104137,
          -3.25491044215453,
          -1.5401610352777684,
          -2.520701826026063,
          -3.4497868469857735,
          -7,
          -2.490379920003179,
          -2.2215372569865495,
          -1.3847117429382825,
          -2.5576408515395497,
          -2.389227205254353,
          -7,
          -2.692259240592287,
          -7,
          -1.8369834472586366,
          -3.177969136009376,
          -2.2921175625108106,
          -3.1339777710506143,
          -7,
          -1.854656326386735,
          -2.2608660716137683,
          -2.9894498176666917,
          -3.484299839346786,
          -1.8564997167285306,
          -7,
          -7,
          -2.908753019184534,
          -7,
          -7,
          -2.7427812235852933,
          -2.360467183515849,
          -3.418135498425232,
          -3.059310921102351,
          -2.3601142873067102,
          -1.5955090387324764,
          -2.04170426796382,
          -1.743313739231126,
          -7,
          -7,
          -2.5229407829180266,
          -0.6127838567197355,
          -2.6088315520434717,
          -1.7931121687186715,
          -2.6987055706851475,
          -2.5393042545542115,
          -2.0788763710039335,
          -2.7105807200477456,
          -2.0847629622918573,
          -7,
          -2.318975855596643,
          -7,
          -2.960787780819836,
          -3.4848690327204026,
          -3.243905770217521,
          -2.498634835665338,
          -7,
          -3.452246574520437,
          -7,
          -1.9171881743915895,
          -7,
          -2.7933712489189557,
          -3.4507108781469196,
          -2.4120785485647107,
          -2.3793752559252646,
          -2.377184787081418,
          -2.035503856195122,
          -2.1070359385968906,
          -1.9952535649755383,
          -7,
          -7,
          -1.917899189424106,
          -7,
          -7,
          -7,
          -2.4285765243417345,
          -2.9894498176666917,
          -2.996949248495381,
          -2.738841516373711,
          -2.4066212736060524,
          -3.4559102403827433,
          -3.4323277922616042,
          -2.8304970163724894,
          -7,
          -3.4331295175804857,
          -2.707549900438748,
          -2.7349597612724454,
          -7,
          -2.4221519325979415,
          -7,
          -3.061954844073114,
          -7,
          -7,
          -3.4794313371977363,
          -7,
          -2.734159513244467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.36369657447383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1750283506819907,
          -7,
          -7,
          -3.8020264610272116,
          -7,
          -7,
          -7,
          -7,
          -2.954724790979063,
          -7,
          -3.1183355985266434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8339965879428433,
          -7,
          -7,
          -7,
          -3.2631624649622166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.924783085544135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0412490929989064,
          -7,
          -2.9867717342662448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.118892725373621,
          -7,
          -7,
          -7,
          -3.263935750640936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9550861509904007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1925674533365456,
          -7,
          -7,
          -3.8981490303871453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.436162647040756,
          -7,
          -2.671481400086431,
          -2.932980821923198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03733147605049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4106928961632534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.73870130043471,
          -7,
          -3.8065598154991136,
          -7,
          -7,
          -7,
          -2.9748799730069306,
          -7,
          -7,
          -3.30941722577814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1522883443830563,
          -7,
          -7,
          -4.136287113116408,
          -7,
          -7,
          -3.4975515990645665,
          -7,
          -7,
          -7,
          -7,
          -3.27669152884504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.32196760676029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.110252917353403,
          -7,
          -7,
          -3.03261876085072,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.980367026184775,
          -7,
          -4.229868942751505,
          -7,
          -7,
          -4.075133150516151,
          -7,
          -7,
          -7,
          -7,
          -3.1781132523146316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.624230513855454,
          -4.751994638090036,
          -7,
          -7,
          -7,
          -7,
          -3.446070935701005,
          -7,
          -3.737892041040643,
          -7,
          -7,
          -7,
          -4.661812685537261,
          -4.806586934327803,
          -3.7047680460278367,
          -7,
          -7,
          -3.9586689802800628,
          -7,
          -4.137596725153168,
          -7,
          -7,
          -7,
          -4.3120009502137435,
          -7,
          -4.172398577939305,
          -7,
          -7,
          -7,
          -4.010282991680263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.059336177389288,
          -7,
          -7,
          -3.2400497721126476,
          -4.101116706440969,
          -4.316117183498905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3455044240544782,
          -7,
          -2.7672619079535177,
          -3.680577224555854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5660837841679958,
          -3.502727471403209,
          -7,
          -7,
          -3.666105954192445,
          -7,
          -4.697049076049325,
          -7,
          -7,
          -7,
          -4.617650247299917,
          -7,
          -4.945035059137207,
          -7,
          -3.601806578961057,
          -7,
          -3.1061058665275776,
          -3.7280289544205187,
          -3.8125345758070877,
          -7,
          -7,
          -7,
          -3.572028904135723,
          -7,
          -7,
          -7,
          -4.269256027417773,
          -7,
          -3.8609366207000937,
          -7,
          -7,
          -7,
          -4.035549803010057,
          -7,
          -7,
          -7,
          -2.4720246977002813,
          -7,
          -3.169758380030249,
          -2.978180516937414,
          -7,
          -3.04766419460156,
          -3.47158505418519,
          -2.8681824452850693,
          -3.2281436075977417,
          -7,
          -7,
          -2.974906266794061,
          -7,
          -2.2620740670103863,
          -3.189770956346874,
          -7,
          -2.7104558643354246,
          -7,
          -1.8460975674563835,
          -2.8190171986890595,
          -7,
          -2.81424759573192,
          -3.5575072019056577,
          -2.8788089323592057,
          -1.7977468064470243,
          -7,
          -7,
          -2.4403842548328845,
          -2.8244216950097427,
          -7,
          -7,
          -3.5231971111804987,
          -4.044716107722188,
          -3.599766142887816,
          -7,
          -3.4631461367263494,
          -3.056142262059052,
          -1.919987134009703,
          -7,
          -7,
          -2.9508514588885464,
          -3.0276213815520254,
          -2.698535492562001,
          -3.093421685162235,
          -3.3557387836020354,
          -7,
          -3.0492180226701815,
          -2.5282737771670436,
          -2.9206450014067875,
          -7,
          -2.8847953639489807,
          -2.9684829485539352,
          -3.2234959409623944,
          -3.138993072190013,
          -2.426917713880816,
          -2.949877704036875,
          -7,
          -7,
          -3.3680388229322835,
          -7,
          -2.8254261177678233,
          -7,
          -3.062581984228163,
          -3.0256471576060306,
          -7,
          -3.1889284837608534,
          -7,
          -7,
          -3.652101229519464,
          -7,
          -1.985380011395665,
          -1.5642714304385625,
          -7,
          -7,
          -3.372175286115064,
          -7,
          -2.6344772701607315,
          -3.660106221723244,
          -3.140193678578631,
          -7,
          -2.765295929698057,
          -7,
          -7,
          -2.7027176733035243,
          -2.771807878999106,
          -2.6723497932508575,
          -2.322407260320884,
          -2.3394514413064407,
          -7,
          -7,
          -3.2829165267951463,
          -3.1863912156954934,
          -2.9684829485539352,
          -3.0843975191411492,
          -3.2835068118940884,
          -7,
          -2.660684823058709,
          -2.7750916633149307,
          -2.59659709562646,
          -7,
          -3.158060793936605,
          -2.9474337218870508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8888590717747014,
          -7,
          -3.0751818546186915,
          -7,
          -2.9708116108725178,
          -3.0835026198302673,
          -7,
          -3.0236639181977933,
          -3.1956229435869368,
          -2.2530147492770154,
          -3.118595365223762,
          -2.957607287060095,
          -2.384114363914378,
          -7,
          -7,
          -7,
          -2.169002281505364,
          -3.0025979807199086,
          -3.024074987307426,
          -2.6019764651267425,
          -3.281714970027296,
          -2.8403570592033565,
          -7,
          -7,
          -2.7506626461340558,
          -2.622214022966295,
          -7,
          -1.4307208410483763,
          -7,
          -7,
          -1.9071963102716016,
          -3.061954844073114,
          -7,
          -7,
          -7,
          -2.73559889969818,
          -7,
          -0.6300376904927476,
          -7,
          -7,
          -2.888179493918325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.657562552914381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.876985262766487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055301864347441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727191403365907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.720985744153739,
          -7,
          -7,
          -7,
          -7,
          -3.770336441095149,
          -3.1607685618611283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1986570869544226,
          -2.9382694834629115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.26030994579492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.681241237375587,
          -7,
          -7,
          -2.553883026643874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626422495681244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4551495211798278,
          -7,
          -7,
          -7,
          -2.403120521175818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.162185901641091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.130333768495006,
          -7,
          -7,
          -7,
          -7,
          -1.8750612633917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7956715059460215,
          -7,
          -7,
          -7,
          -7,
          -4.478555674167947,
          -2.6473829701146196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.800717078282385,
          -7,
          -7,
          -7,
          -1.462397997898956,
          -7,
          -3.581380688709987,
          -7,
          -7,
          -7,
          -7,
          -3.4075608494863623,
          -7,
          -3.7137424784090824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.265831566255261,
          -7,
          -7,
          -7,
          -4.309459822461211,
          -7,
          -7,
          -3.2775862957847632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.173186268412274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.8846065812979305,
          -7,
          -7,
          -2.4578818967339924,
          -7,
          -2.4756711883244296,
          -2.648067129448935,
          -7,
          -7,
          -7,
          -7,
          -3.315130317183602,
          -7,
          -7,
          -3.274134747878962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7297046213121872,
          -7,
          -7,
          -7,
          -2.469822015978163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626473817986867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.740188936948656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6875289612146345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.204933522354145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.64738297011462,
          -7,
          -7,
          -7,
          -7,
          -3.9648722086377752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.661812685537261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.9378520932511555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.359465510718378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6919651027673606,
          -7,
          -7,
          -7,
          -7,
          -3.041787318971752,
          -3.732491407656525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5608149411970516,
          -7,
          -7,
          -7,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8626480890490678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4176377396522297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4335698364624765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.583198773968623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5210988384536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7658919764300154,
          -7,
          -7,
          -7,
          -2.529558673021163,
          -7,
          -7,
          -3.2384224958854797,
          -7,
          -7,
          -7,
          -2.7520484478194387,
          -4.13586381379987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.837114748515506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0588054866759067,
          -7,
          -7,
          -7,
          -3.603865792191225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.030672570475327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9635517335740964,
          -7,
          -3.8662873390841948,
          -7,
          -7,
          -3.180357146127899,
          -7,
          -7,
          -2.851869600729766,
          -7,
          -2.656098202012832,
          -7,
          -7,
          -7,
          -2.801403710017355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.358315640082196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.037625669914719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.611723308007342,
          -7,
          -7,
          -5.14997308296338,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -3.99370069482035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6313422864839326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -2.82020145948564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.149834696715785,
          -2.9876662649262746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.766635886310268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.098605658496943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.924795995797912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.734337295690939,
          -7,
          -7,
          -3.643551368562945,
          -3.0729847446279304,
          -7,
          -7,
          -7,
          -2.420368379857524,
          -2.675167089663394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.400537989391946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.43341777677003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.001300933020418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.105453410538649,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3913409650889035,
          -7,
          -2.062411035797732,
          -3.874052529609521,
          -3.4612626428467945,
          -2.7444494574467986,
          -7,
          -7,
          -7,
          -7,
          -2.9466627639986482,
          -2.1251057408333547,
          -3.1712143570094913,
          -3.666829861704301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.587289933011235,
          -7,
          -7,
          -3.2423502691413284,
          -7,
          -7,
          -2.1893967258352185,
          -2.6104472214421213,
          -1.9982593384236988,
          -3.40849436021236,
          -7,
          -4.641781379153336,
          -7,
          -3.2840169229681395,
          -7,
          -7,
          -7,
          -3.4342722781648516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.044539760392411,
          -3.828219364730503,
          -3.5234153595283777,
          -7,
          -4.032578471924312,
          -7,
          -3.3106933123433606,
          -3.616160312847583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.150537154583293,
          -1.8459834521087115,
          -2.6368220975871743,
          -7,
          -3.400365273349939,
          -2.8489364984779035,
          -7,
          -7,
          -2.6201360549737576,
          -3.187873089603788,
          -7,
          -3.2867421763851072,
          -2.4369573306694496,
          -2.9740509027928774,
          -7,
          -3.153204900084284,
          -3.252124552505644,
          -2.8527848686805477,
          -7,
          -7,
          -2.89707700320942,
          -7,
          -3.091315159697223,
          -7,
          -2.0453229787866576,
          -7,
          -3.237292337567459,
          -7,
          -7,
          -4.471144965160633,
          -3.1947323263866414,
          -4.2654389233076575,
          -2.268343913951065,
          -7,
          -2.53655844257153,
          -7,
          -2.7259116322950483,
          -7,
          -2.6483600109809315,
          -3.1384605947257023,
          -7,
          -7,
          -3.0091320695404717,
          -1.8773713458697743,
          -7,
          -2.958085848521085,
          -7,
          -2.526339277389844,
          -7,
          -2.6830470382388496,
          -3.0881360887005513,
          -4.334795422556774,
          -7,
          -2.3434085938038574,
          -2.2041199826559246,
          -3.5854607295085006,
          -3.816705183666515,
          -7,
          -7,
          -3.680154141734373,
          -7,
          -3.1568771206909294,
          -2.093421685162235,
          -7,
          -2.8068580295188172,
          -7,
          -3.6298681187461233,
          -7,
          -3.420945405921972,
          -2.9740509027928774,
          -7,
          -2.5276299008713385,
          -7,
          -2.530199698203082,
          -2.315970345456918,
          -2.9155053617543767,
          -2.4908944592739792,
          -2.9304395947667,
          -3.430800424624181,
          -7,
          -2.8543060418010806,
          -2.7271344237604884,
          -3.1364827496008227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.494687854800482,
          -7,
          -7,
          -2.995854479874566,
          -4.316012304249464,
          -2.381415942849977,
          -3.486760974209115,
          -1.8299420573070557,
          -3.2935835134961167,
          -2.6541765418779604,
          -7,
          -2.6414741105040997,
          -7,
          -2.832508912706236,
          -3.0549958615291417,
          -7,
          -2.582063362911709,
          -2.661812685537261,
          -7,
          -2.9502431180103916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3324384599156054,
          -2.661812685537261,
          -7,
          -2.5276299008713385,
          -7,
          -7,
          -2.775974331129369,
          -2.7466341989375787,
          -2.1782573208121887,
          -1.1920793644398116,
          -3.227629649571009,
          -7,
          -2.683947130751512,
          -7,
          -2.1662080251235856,
          -1.5291502547236724,
          -7,
          -1.824837262814491,
          -2.5440680443502757,
          -7,
          -2.2043913319193,
          -3.4794313371977363,
          -2.73559889969818,
          -1.7297046213121872,
          -7,
          -7,
          -2.5276299008713385,
          -3.570192561095726,
          -7,
          -2.47928731647617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.469527479187014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.354108439147401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.050920836935403,
          -7,
          -7,
          -7,
          -4.27263051589404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.33056595269382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9825877907016625,
          -7,
          -2.6976651626476746,
          -7,
          -7,
          -7,
          -7,
          -2.125481265700594,
          -7,
          -3.0687793630095612,
          -7,
          -7,
          -2.295017011881458,
          -7,
          -7,
          -7,
          -7,
          -2.288661889613078,
          -7,
          -2.7427251313046983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2430380486862944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.177514856808423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2806921642851177,
          -7,
          -7,
          -3.4055171069763763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9648722086377752,
          -7,
          -7,
          -7,
          -4.309566295893774,
          -7,
          -7,
          -3.5789599423109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.617000341120899,
          -7,
          -7,
          -7,
          -7,
          -3.8448187609265627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.187520720836463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6901960800285138,
          -2.1789769472931693,
          -2.9505595616118003,
          -3.4878451201114355,
          -7,
          -7,
          -7,
          -2.8382192219076257,
          -7,
          -7,
          -3.575511135352897,
          -1.6532125137753437,
          -7,
          -2.640150040936102,
          -7,
          -7,
          -7,
          -7,
          -2.5276299008713385,
          -7,
          -7,
          -1.6020599913279623,
          -2.4771212547196626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8435531067748108,
          -7,
          -7,
          -7,
          -7,
          -3.878406887580996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.204042423144708,
          -3.375114684692225,
          -7,
          -3.319522449065454,
          -3.4808247611406684,
          -7,
          -7,
          -7,
          -7,
          -3.547528576459782,
          -7,
          -3.180533896417463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3969835082752,
          -7,
          -7,
          -3.5640739789771465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0674428427763805,
          -3.618414214801256,
          -7,
          -7,
          -3.649334858712142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.444918753773256,
          -7,
          -7,
          -7,
          -7,
          -3.7212333700172775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.413132050434872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.735687594578893,
          -3.5469126431812423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5957717020009405,
          -7,
          -7,
          -7,
          -3.1929816157909645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.848558572123763,
          -7,
          -7,
          -7,
          -2.349824798081177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.602005701124516,
          -7,
          -7,
          -3.2969940766702086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.179810222878796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6137361412618714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4983718255845533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6941872061371988,
          -7,
          -7,
          -3.620413692497615,
          -7,
          -7,
          -7,
          -3.1094660499520925,
          -3.2989621819201167,
          -3.631950826259217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.88284966953054,
          -7,
          -3.305028753746333,
          -3.5420781463356255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.243368813730389,
          -3.55942779975949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5108799847561176,
          -3.4430161248818374,
          -7,
          -7,
          -7,
          -3.5888317255942073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9646299732016494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.33193317250328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2094077680963755,
          -7,
          -2.915588257481659,
          -7,
          -7,
          -7,
          -2.823948220466359,
          -7,
          -3.62283547952152,
          -3.668944734457734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6071332043915665,
          -7,
          -7,
          -3.1484235191525474,
          -7,
          -7,
          -3.171628957978357,
          -7,
          -7,
          -7,
          -7,
          -3.6549462265843444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4185988830152456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5928426831311002,
          -7,
          -7,
          -3.568788212315347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7847242485457184,
          -7,
          -3.794627444664508,
          -7,
          -7,
          -3.7379306114157003,
          -3.6292056571023035,
          -7,
          -7,
          -7,
          -3.6163704722912695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.016236272275966,
          -3.1276495344679027,
          -3.5596872289809776,
          -7,
          -3.875480878609511,
          -3.7231271587956916,
          -2.531957654348021,
          -4.149373090491385,
          -2.707501741954049,
          -7,
          -2.259977184344511,
          -2.664225170809302,
          -3.5396226573571123,
          -3.5685471963453623,
          -2.3121930335260323,
          -3.567731962548069,
          -3.1627372975844534,
          -2.2393999584530446,
          -3.213882835868511,
          -3.863362519906055,
          -4.050341081834084,
          -3.833549702423101,
          -3.5495754012584975,
          -2.521410522381751,
          -2.4840963750741945,
          -4.243038048686294,
          -3.8788854701365376,
          -3.7979458124824967,
          -3.6734816970733473,
          -2.6918760125660888,
          -2.6841883019367963,
          -3.9171482644162796,
          -7,
          -3.260834312172319,
          -2.9321969382690316,
          -4.311457168381031,
          -7,
          -3.708403901974985,
          -2.385843450427921,
          -4.091772441419683,
          -3.6399842480415883,
          -4.130247973456816,
          -3.6688702669537956,
          -3.9367649976099415,
          -7,
          -3.6832272060414346,
          -7,
          -4.280282366567866,
          -3.6663307443019684,
          -7,
          -2.8726514940644776,
          -3.230218939887381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4898647703982753,
          -7,
          -7,
          -3.712733859069952,
          -3.1548119446999063,
          -4.102510883861542,
          -7,
          -7,
          -7,
          -3.9452814338116067,
          -7,
          -4.9577939887621,
          -3.8588979572320037,
          -3.386617852625555,
          -7,
          -3.189321841020497,
          -3.279047385047397,
          -3.4413022866931673,
          -3.3738311450738303,
          -7,
          -7,
          -3.097852030062842,
          -7,
          -7,
          -4.0362095668797355,
          -3.453547660380749,
          -7,
          -3.55044474059212,
          -7,
          -7,
          -3.8577545220594422,
          -3.527436551688697,
          -7,
          -7,
          -7,
          -2.6258838159722577,
          -3.222224975159809,
          -1.887624160740319,
          -7,
          -3.6413749451921253,
          -2.6685023963693637,
          -2.382173714467586,
          -2.5798508196618952,
          -2.6334684555795866,
          -7,
          -7,
          -2.406350904125924,
          -2.9668454236549167,
          -1.973118147285219,
          -2.841463755359163,
          -2.9040660519145027,
          -2.567866231982406,
          -2.4349180354194466,
          -1.7163743769610007,
          -1.745089958408157,
          -1.2529312892884035,
          -2.33568073008468,
          -2.839617691903345,
          -2.1339644786952103,
          -1.815307890596743,
          -7,
          -2.958085848521085,
          -2.692217233097753,
          -2.3424665467362784,
          -2.569958818096594,
          -3.238798562713917,
          -2.2895647772430805,
          -2.612830312780314,
          -2.0804389076211174,
          -7,
          -2.1689909186377423,
          -7,
          -1.7902460577811867,
          -7,
          -3.2317243833285163,
          -7,
          -2.4005004482688816,
          -2.380211241711606,
          -2.470727032157512,
          -2.346352974450639,
          -7,
          -1.4999674716021913,
          -2.4512380145877897,
          -1.9293323179800537,
          -7,
          -2.4705574852172743,
          -3.249809609401804,
          -3.1559430179718366,
          -1.5540799038901723,
          -2.451668372595222,
          -3.245018870737753,
          -7,
          -2.537000087321339,
          -2.2076024217230845,
          -1.4695366151123335,
          -2.2932520331478248,
          -2.4613428736466783,
          -7,
          -2.5785157882765883,
          -7,
          -1.7943548719475486,
          -3.5700757053216043,
          -2.379758615842701,
          -3.064008486531724,
          -7,
          -1.8188479077451358,
          -1.9510503673339017,
          -3.258996253248911,
          -3.574147064150723,
          -1.9089315942207272,
          -7,
          -3.5429498488141786,
          -2.7095727951571993,
          -3.3016809492935764,
          -7,
          -2.5274752284122086,
          -2.84083766998129,
          -3.4726833296130404,
          -3.0147304950017535,
          -2.3155095555124667,
          -1.5977651826186936,
          -1.7152764907757574,
          -1.7664128471123997,
          -7,
          -7,
          -2.460998014474649,
          -0.6817376109771551,
          -2.5948834173187865,
          -1.8342793777831479,
          -2.5745456823355712,
          -2.6126875501483457,
          -2.016565097224415,
          -2.51419604972685,
          -1.9524168070596342,
          -7,
          -2.375286972498473,
          -3.5456781497920256,
          -3.059689611271879,
          -3.5746099413401873,
          -3.6242820958356683,
          -2.5784959493756787,
          -7,
          -3.24699069924155,
          -7,
          -1.9586328608246595,
          -7,
          -2.53793351859703,
          -3.54703589974001,
          -2.3173257840095487,
          -2.9814788279263897,
          -2.6494565609637166,
          -2.3585296895559917,
          -2.1211092004651437,
          -1.768755789395493,
          -3.595606434865603,
          -3.5482665451707454,
          -2.113943352306837,
          -7,
          -7,
          -7,
          -2.562768543016519,
          -2.957487564252472,
          -3.2650537885040145,
          -2.637712045607411,
          -2.460038278929382,
          -3.5512059437479064,
          -3.5323721335678773,
          -2.655538595608055,
          -3.5399538416563967,
          -3.5330090224954853,
          -1.465817739756417,
          -2.7552394576339077,
          -7,
          -2.3252170252342044,
          -0.6300376904927476,
          -7,
          -7,
          -3.570192561095726,
          -7,
          -7,
          -2.754603128608854,
          -7,
          -3.230193378869046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8483738838446016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.297760511099134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431033896809084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.390917452497312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.482816435838172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.218062617826375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1646502159342966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.640282629696681,
          -7,
          -4.272815933543096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.631697371637548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.681828946648094,
          -7,
          -3.003029470553618,
          -2.569373909615046,
          -7,
          -3.982994454658664,
          -2.975891136401793,
          -7,
          -7,
          -3.7689339421867816,
          -7,
          -4.149393616745378,
          -7,
          -7,
          -7,
          -7,
          -3.173186268412274,
          -2.0019067040408847,
          -7,
          -7,
          -7,
          -2.886490725172482,
          -2.971739590887778,
          -7,
          -2.424881636631067,
          -7,
          -3.5194998528595387,
          -7,
          -7,
          -4.466763851597166,
          -7,
          -3.785883227526406,
          -7,
          -7,
          -7,
          -7,
          -2.3710678622717363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.907859040931642,
          -7,
          -3.245018870737753,
          -7,
          -7,
          -7,
          -7,
          -4.02771646220899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4720246977002813,
          -3.652343055062715,
          -7,
          -4.47860256506622,
          -2.6599162000698504,
          -7,
          -7,
          -2.693726948923647,
          -7,
          -7,
          -3.696967640744023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5828584622244994,
          -2.803457115648414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7148325124333326,
          -2.869036047512346,
          -2.59659709562646,
          -2.3826173114774845,
          -7,
          -7,
          -4.266137581513037,
          -2.88930170250631,
          -2.2671717284030137,
          -7,
          -7,
          -7,
          -3.4725126690795998,
          -3.8010834169645062,
          -3.2711443179490782,
          -7,
          -2.841359470454855,
          -7,
          -7,
          -7,
          -2.9232440186302764,
          -3.4345689040341987,
          -7,
          -7,
          -7,
          -3.3676975062069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.077912702949456,
          -2.6908603082720437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4771212547196626,
          -2.1122697684172707,
          -2.1903316981702914,
          -3.3498600821923312,
          -2.788875115775417,
          -3.4353665066126613,
          -7,
          -7,
          -3.016406500871118,
          -7,
          -7,
          -3.7976367996323463,
          -0.5440680443502757,
          -7,
          -2.5171958979499744,
          -2.734159513244467,
          -7,
          -7,
          -7,
          -7,
          -1.6020599913279623,
          -2.754603128608854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6601632120103025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.878556261949533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.588346417745989,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.260524535842226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5629467882404056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.496396826529734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.956133198668,
          -7,
          -7,
          -3.546135321429913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.748250064643889,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8765642139838454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0979510709941502,
          -4.572685768016257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4888326343824008,
          -7,
          -4.073461729279835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.612540159747515,
          -7,
          -4.942637943431793,
          -7,
          -4.061150780928549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.783903579272735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.66838591669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7877437716464666,
          -7,
          -7,
          -3.0265332645232967,
          -7,
          -7,
          -7,
          -7,
          -3.1487568513217923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6253271526248803,
          -4.64205872539365,
          -4.74230083908448,
          -2.526339277389844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3066394410242617,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1992979769986976,
          -7,
          -4.303433666006204,
          -2.8555191556678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9566485792052033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.451632947456991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.272213036520142,
          -7,
          -2.6483600109809315,
          -7,
          -7,
          -7,
          -7,
          -3.5850544459866267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4742162640762553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.918554530550274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7481880270062007,
          -7,
          -2.7573960287930244,
          -2.975891136401793,
          -3.5241363765925686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5816538871768926,
          -2.0128372247051725,
          -7,
          -3.1992064791616577,
          -7,
          -7,
          -2.469822015978163,
          -7,
          -2.47928731647617,
          -2.4771212547196626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9820449790714902,
          -7,
          -7,
          -7,
          -3.3418300569205104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.149188310536008,
          -7,
          -2.795880017344075,
          -7,
          -7,
          -2.8656960599160706,
          -2.704322140822235,
          -7,
          -7,
          -7,
          -7,
          -2.6603910984024672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.639277260341978,
          -7,
          -7,
          -7,
          -7,
          -3.076276255404218,
          -7,
          -7,
          -7,
          -3.3866772839608377,
          -2.3729120029701067,
          -7,
          -7,
          -7,
          -3.6851144690465394,
          -7,
          -3.2400497721126476,
          -7,
          -7,
          -2.2174839442139063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.457124626303409,
          -7,
          -2.591064607026499,
          -4.779574848136385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1522883443830563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.893206753059848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2174839442139063,
          -7,
          -7,
          -7,
          -7,
          -4.277838333002047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5599066250361124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145538235712233,
          -1.9731278535996988,
          -7,
          -7,
          -2.2304489213782737,
          -7,
          -2.2810333672477277,
          -7,
          -7,
          -3.2898118391176214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0773679052841567,
          -7,
          -3.649140064144219,
          -7,
          -7,
          -2.220108088040055,
          -7,
          -7,
          -7,
          -7,
          -3.973312620452902,
          -7,
          -7,
          -7,
          -7,
          -2.888179493918325,
          -7,
          -7,
          -7,
          -7,
          -3.230193378869046,
          -7,
          -7,
          -7
         ],
         "xaxis": "x",
         "yaxis": "y"
        },
        {
         "alignmentgroup": "True",
         "bingroup": "x",
         "hovertemplate": "series=post-2000 mean:0.001<br>data=%{x}<br>count=%{y}<extra></extra>",
         "legendgroup": "post-2000 mean:0.001",
         "marker": {
          "color": "#EF553B",
          "opacity": 0.5
         },
         "name": "post-2000 mean:0.001",
         "nbinsx": 100,
         "offsetgroup": "post-2000 mean:0.001",
         "orientation": "v",
         "showlegend": true,
         "type": "histogram",
         "x": [
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.090713737503893,
          -7,
          -7,
          -2.329058719264225,
          -4.196231470442875,
          -7,
          -7,
          -7,
          -7,
          -2.7774268223893115,
          -7,
          -4.038023740045158,
          -7,
          -7,
          -3.6679196853173615,
          -3.647458652980616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.388870545406613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1856837803185045,
          -7,
          -7,
          -7,
          -4.363248348914939,
          -7,
          -7,
          -3.3364597338485296,
          -7,
          -3.643156465619706,
          -7,
          -7,
          -7,
          -3.128722284338427,
          -7,
          -3.1445312644921954,
          -2.844010944373043,
          -3.4280267471363537,
          -3.3176455432211585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.672667303446025,
          -7,
          -7,
          -7,
          -7,
          -3.2567978962927286,
          -7,
          -2.4616485680634552,
          -7,
          -4.171186702866917,
          -7,
          -7,
          -7,
          -2.8603380065709936,
          -3.031581570404944,
          -7,
          -7,
          -7,
          -2.9683272595463874,
          -7,
          -2.716142518281689,
          -7,
          -7,
          -7,
          -3.767910393707072,
          -7,
          -3.418135498425232,
          -7,
          -7,
          -3.124993020025895,
          -7,
          -7,
          -3.585686278452497,
          -7,
          -3.8492350913147226,
          -7,
          -7,
          -7,
          -3.19566907396904,
          -7,
          -7,
          -7,
          -7,
          -2.723674542888705,
          -7,
          -7,
          -3.121887985103681,
          -3.165541076722373,
          -4.385212907084455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.872709718287906,
          -4.754592939762488,
          -7,
          -7,
          -7,
          -4.99402664584492,
          -3.124178055474675,
          -3.4479328655921804,
          -7,
          -7,
          -3.004751155591001,
          -3.8228434139044927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9497151990838457,
          -7,
          -7,
          -7,
          -7,
          -3.880127322216625,
          -7,
          -7,
          -3.1451964061141817,
          -4.056714329516394,
          -3.827304641089735,
          -7,
          -7,
          -7,
          -3.110015758247213,
          -7,
          -2.6148972160331345,
          -7,
          -3.1789769472931693,
          -7,
          -7,
          -3.229681842317676,
          -3.4000196350651586,
          -3.0775495804517936,
          -2.968716377466786,
          -3.275886960301226,
          -7,
          -2.9508514588885464,
          -3.839476514441198,
          -2.9041743682841634,
          -7,
          -7,
          -7,
          -7,
          -2.840106094456758,
          -7,
          -3.078042316010944,
          -7,
          -7,
          -7,
          -3.721728198572788,
          -3.2666827035194554,
          -7,
          -7,
          -3.285557309007774,
          -7,
          -7,
          -3.2132520521963968,
          -7,
          -7,
          -7,
          -2.9322707758994904,
          -2.935003151453655,
          -2.8202953102654553,
          -7,
          -3.9518715571283645,
          -7,
          -3.564014726029118,
          -7,
          -4.0751087964165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.743666521446213,
          -3.350829273582968,
          -7,
          -3.385606273598312,
          -4.055550332976277,
          -3.376455288899979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.967547976218862,
          -7,
          -7,
          -7,
          -4.93482405002071,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.331427296520743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.340558126963426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.273926780100526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.713280485299326,
          -3.3140779917792127,
          -7,
          -3.029789470831856,
          -4.233960138494771,
          -7,
          -7,
          -7,
          -3.69121414838279,
          -7,
          -3.4837298990000236,
          -7,
          -3.538824988937904,
          -2.8976270912904414,
          -7,
          -7,
          -2.857633985150008,
          -2.85582190540603,
          -2.9526310252827455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.737391449978478,
          -2.8136836101381175,
          -7,
          -7,
          -7,
          -4.3537559923907425,
          -3.1143885542749916,
          -7,
          -4.286052077773516,
          -7,
          -7,
          -7,
          -7,
          -3.2566215460697054,
          -3.0277572046905536,
          -7,
          -7,
          -7,
          -7,
          -5.129438521472354,
          -3.268168287683832,
          -7,
          -7,
          -7,
          -7,
          -3.0149403497929366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.096736260462469,
          -7,
          -7,
          -3.1416587697865523,
          -7,
          -4.3799216155042044,
          -4.387300822448285,
          -4.875299770323185,
          -7,
          -2.946452265013073,
          -7,
          -3.775537634780957,
          -7,
          -2.59659709562646,
          -7,
          -2.580544849190167,
          -3.084576277934331,
          -3.721315880605899,
          -7,
          -7,
          -7,
          -2.696356388733332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1223524273957572,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.712616034083344,
          -3.895790748250444,
          -7,
          -7,
          -4.579251831894143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.922533433518409,
          -7,
          -7,
          -3.5732198271144218,
          -5.38794657658479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.774202992384649,
          -4.158060793936605,
          -4.677123120126264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.011802963585356,
          -2.767526899408382,
          -4.670171608355266,
          -3.534328527851568,
          -7,
          -3.353531559077762,
          -4.328399992372424,
          -3.350441856535061,
          -3.8039626383243994,
          -3.037205088564478,
          -2.7918309476748364,
          -3.963976609996606,
          -4.0595160859321835,
          -3.9814108401658883,
          -7,
          -4.437052595060992,
          -3.8207923810882036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3099183595839303,
          -3.8750443149836546,
          -4.928262675512426,
          -7,
          -3.6872613462435067,
          -2.8965262174895554,
          -4.654431651055449,
          -7,
          -4.803289784441723,
          -4.076385543954533,
          -4.217325990227112,
          -7,
          -7,
          -4.432119101024855,
          -4.481643246275584,
          -7,
          -3.912753303671323,
          -7,
          -3.9950260973716762,
          -4.18613667169178,
          -7,
          -3.1505484752433546,
          -4.654883740590171,
          -3.5569052690554477,
          -4.569360252341128,
          -7,
          -7,
          -4.130730350227968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.991654250266102,
          -3.05307844348342,
          -3.7062624873330328,
          -7,
          -7,
          -3.8649854606597938,
          -7,
          -7,
          -2.8254261177678233,
          -7,
          -7,
          -4.1950551387337205,
          -3.6127838567197355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.617363849384386,
          -7,
          -7,
          -7,
          -3.458889540995547,
          -7,
          -3.4619484952037616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1961761850399735,
          -7,
          -7,
          -7,
          -3.114610984232173,
          -7,
          -3.269512944217916,
          -7,
          -7,
          -7,
          -3.539452491549461,
          -3.513483956704257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9855045740664705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7718078789991054,
          -7,
          -3.329397879361043,
          -3.8013350956745464,
          -7,
          -7,
          -3.491081413423187,
          -3.675992076790947,
          -7,
          -7,
          -4.305243857506007,
          -7,
          -7,
          -7,
          -3.554489160003819,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.22816928953985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.24699069924155,
          -7,
          -3.642068627341504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9176805224430487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333406966873917,
          -3.871689665685515,
          -7,
          -7,
          -4.617339392030039,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6600349733461006,
          -2.9552065375419416,
          -7,
          -7,
          -7,
          -2.6364878963533656,
          -2.6201360549737576,
          -7,
          -7,
          -7,
          -7,
          -4.839503186703423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.085468969886672,
          -7,
          -7,
          -7,
          -7,
          -4.606004956819436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.604657972047871,
          -7,
          -7,
          -5.124556389206683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.454387467146955,
          -7,
          -7,
          -7,
          -5.229725346362544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5101426994025733,
          -7,
          -7,
          -4.165452072831928,
          -7,
          -7,
          -3.8232785569516707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.018117720591,
          -3.706888394981618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0464951643347082,
          -7,
          -3.1983821300082944,
          -3.5605044151950564,
          -3.1550322287909704,
          -7,
          -4.606831090746259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.908806599405674,
          -7,
          -7,
          -7,
          -7,
          -4.398688280387376,
          -7,
          -7,
          -7,
          -7,
          -3.3197304943302246,
          -7,
          -7,
          -3.0346284566253203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.419625360887743,
          -2.9905608299940196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.849910558301496,
          -7,
          -7,
          -7,
          -2.2227164711475833,
          -7,
          -7,
          -7,
          -7,
          -3.269746373130767,
          -7,
          -2.842609239610562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3391482237708905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530583859645118,
          -7,
          -4.4076627845840965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.94733567594874,
          -3.6921416093667836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9140785853891122,
          -7,
          -7,
          -7,
          -5.13102808436136,
          -3.877025615867249,
          -7,
          -4.279621322484056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6847705799856993,
          -2.311223910432456,
          -3.1851170011425913,
          -7,
          -5.527199259073056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8721562727482928,
          -7,
          -7,
          -7,
          -7,
          -4.382215223047534,
          -7,
          -7,
          -7,
          -5.017492446477275,
          -3.754348335711019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2605483726369795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.895422546039408,
          -7,
          -2.6928469192772297,
          -4.1982445862282365,
          -7,
          -7,
          -4.5920545601729215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.996472268649586,
          -4.276875221131548,
          -7,
          -7,
          -4.921056682142087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9489017609702137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.961326155934711,
          -4.376823230725233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1865071251858526,
          -7,
          -7,
          -3.183649388808035,
          -7,
          -4.653062897685104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.954556053354576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163563865300896,
          -7,
          -3.874249822778403,
          -7,
          -7,
          -7,
          -7,
          -2.6301735297867714,
          -7,
          -7,
          -7,
          -4.795184589682424,
          -3.5816083660320572,
          -7,
          -2.662521737910115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.59315309937685,
          -4.616370472291269,
          -7,
          -7,
          -2.5449534564447305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.766239292954104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.53655844257153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.996219709466273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8552846237426173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.780317312140151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3264485170542,
          -3.2837533833325265,
          -2.3448287505880847,
          -4.299093072361705,
          -3.416640507338281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354050785610767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542750756732575,
          -7,
          -7,
          -2.7972675408307164,
          -3.170848203643309,
          -7,
          -3.010299956639812,
          -7,
          -7,
          -7,
          -3.1734776434529945,
          -7,
          -4.389874558390986,
          -2.295017011881458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4456042032735974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.097812407365289,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.494265937303735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7862574846662123,
          -3.0595634179012676,
          -7,
          -7,
          -5.203921790582551,
          -7,
          -7,
          -7,
          -3.886913533398546,
          -3.903524064471262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.639486489268586,
          -4.7934248277031015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.864267760535243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5246124580893383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.952657932409665,
          -7,
          -7,
          -3.7740057302582093,
          -7,
          -7,
          -3.394976719554564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.124520526873732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5079907248196913,
          -7,
          -7,
          -4.5307067195722155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.55108386518578,
          -7,
          -3.663920686219387,
          -2.8926510338773004,
          -7,
          -7,
          -3.960470777534299,
          -7,
          -7,
          -7,
          -7,
          -3.7709256146389993,
          -7,
          -7,
          -7,
          -3.0678145111618402,
          -4.379903507451503,
          -7,
          -7,
          -7,
          -7,
          -3.301897717195208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.992725787677043,
          -7,
          -3.399673721481038,
          -7,
          -7,
          -7,
          -4.293583513496117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145724574880668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0203612826477078,
          -7,
          -3.860996436757196,
          -3.151676230847048,
          -7,
          -4.05391701315164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9082168530893924,
          -7,
          -7,
          -7,
          -7,
          -4.574769904961649,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.030194785356751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0170333392987803,
          -7,
          -7,
          -3.4619110156367996,
          -1.6782147827453995,
          -3.1332194567324945,
          -7,
          -3.130333768495006,
          -7,
          -7,
          -3.719911064198339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6589648426644352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530443039902961,
          -7,
          -4.7086163311678915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0786380383696725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.176958980586908,
          -7,
          -3.978294669778629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.832508912706236,
          -7,
          -7,
          -7,
          -7,
          -3.6729286904427223,
          -2.8656960599160706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.574108275787997,
          -7,
          -7,
          -7,
          -3.452323216977515,
          -7,
          -7,
          -7,
          -3.49789674291322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499150755234518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.09429639740537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.668851648082519,
          -7,
          -4.961273931114606,
          -3.677606952720493,
          -7,
          -7,
          -3.8009918612601714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9902677987531,
          -5.487524400587733,
          -7,
          -7,
          -7,
          -2.6928469192772297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.89657030606194,
          -7,
          -7,
          -4.339992729686746,
          -7,
          -7,
          -5.346955091548924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5930644316587177,
          -7,
          -7,
          -7,
          -4.035249578686349,
          -7,
          -2.7528164311882715,
          -7,
          -7,
          -7,
          -4.317958924700952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9986515959983735,
          -7,
          -7,
          -7,
          -7,
          -4.785714122351664,
          -7,
          -7,
          -2.878678439139299,
          -7,
          -2.714999967412042,
          -7,
          -3.118264726089479,
          -3.9421073089893555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.472317546316842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9487082638609827,
          -3.41077723337721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7806053058389697,
          -7,
          -7,
          -3.7710727832211948,
          -4.025264892154508,
          -2.804480189105993,
          -7,
          -3.821644517542217,
          -3.4148062795010126,
          -7,
          -7,
          -4.019697730980192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.563777633362166,
          -7,
          -3.134283382991931,
          -3.63558426631123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8943160626844384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1609934489716522,
          -7,
          -7,
          -4.902956963936665,
          -7,
          -7,
          -7,
          -7,
          -3.4268906288777257,
          -2.720572720364261,
          -7,
          -7,
          -7,
          -7,
          -4.333709182897272,
          -7,
          -7,
          -3.642068627341504,
          -4.96955102588328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.441591458037452,
          -7,
          -7,
          -3.278982116865443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.208113361779008,
          -7,
          -3.8905886677054875,
          -7,
          -7,
          -7,
          -3.3995006613146104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9203875026352017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4515868904569045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6039018317316716,
          -4.072507235528804,
          -7,
          -7,
          -7,
          -7,
          -3.903180455585522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165896909992507,
          -7,
          -7,
          -7,
          -7,
          -4.992840596288919,
          -7,
          -7,
          -7,
          -7,
          -2.568201724066995,
          -4.294157480769691,
          -3.4345689040341987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1903316981702914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.797959643737196,
          -7,
          -7,
          -7,
          -7,
          -3.862548769524793,
          -7,
          -7,
          -4.275836337596789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.875861557613656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2196219444266507,
          -7,
          -3.436639631692661,
          -7,
          -3.1386184338994925,
          -7,
          -2.792391689498254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.83714634390906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.551693915127225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.971739590887778,
          -3.157456768134226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6402726869436295,
          -7,
          -7,
          -7,
          -7,
          -2.88930170250631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.762753564933374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2999172885064594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.377943380255784,
          -7,
          -3.948070481518941,
          -3.693463127219531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.416141031168329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5674185056727485,
          -7,
          -3.126780577012009,
          -7,
          -7,
          -7,
          -4.279963367458737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.830802448892219,
          -7,
          -3.854548935812951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.5741233283997955,
          -7,
          -3.773127924033335,
          -4.71651667687998,
          -7,
          -7,
          -7,
          -7,
          -3.501470072100412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499508380406101,
          -7,
          -7,
          -7,
          -4.769894035812169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7024994666070703,
          -3.963976609996606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.921134805306461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.310023834437932,
          -7,
          -4.667667712106219,
          -4.764011652390399,
          -3.8698182079793284,
          -7,
          -7,
          -7,
          -5.234777883233506,
          -7,
          -7,
          -7,
          -4.660357872417049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.689344382781724,
          -4.709395763745806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.896614390159009,
          -7,
          -7,
          -4.340121744752816,
          -7,
          -7,
          -5.045971979060437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.573538788190414,
          -7,
          -7,
          -3.222416302158394,
          -7,
          -7,
          -7,
          -3.7243578042264267,
          -7,
          -4.494245062612022,
          -3.5833121519830775,
          -7,
          -7,
          -7,
          -7,
          -3.6370892735303304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6986658917468582,
          -7,
          -7,
          -4.5933193025713,
          -4.792521258038025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.419625360887743,
          -7,
          -7,
          -3.7666111098329864,
          -7,
          -7,
          -7,
          -3.114610984232173,
          -7,
          -7,
          -3.1610683854711747,
          -7,
          -7,
          -7,
          -3.495775529716882,
          -7,
          -7,
          -3.5043349118024643,
          -7,
          -7,
          -3.534819048547555,
          -7,
          -7,
          -7,
          -3.2659963704950794,
          -4.024495441072,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7824316703747614,
          -3.1091283841463793,
          -7,
          -3.5210508672197784,
          -7,
          -7,
          -7,
          -4.020775488193558,
          -7,
          -7,
          -7,
          -2.374748346010104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.246537452532851,
          -7,
          -3.5503812467309923,
          -4.24188253033637,
          -7,
          -3.3984608496082234,
          -7,
          -7,
          -7,
          -7,
          -3.3369597851207042,
          -7,
          -7,
          -7,
          -7,
          -3.912947931581974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4807253789884878,
          -7,
          -7,
          -7,
          -2.832508912706236,
          -7,
          -7,
          -2.895422546039408,
          -7,
          -3.0334237554869494,
          -7,
          -4.098332167847684,
          -3.7402837196818792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.494474629054753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1300119496719043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6122539060964374,
          -2.4258601450778405,
          -7,
          -7,
          -5.20444829373088,
          -3.7075701760979363,
          -7,
          -7,
          -4.193430723726846,
          -3.732608173296543,
          -2.7849737099544005,
          -7,
          -7,
          -7,
          -7,
          -3.6379497978642092,
          -7,
          -7,
          -7,
          -3.980660525073463,
          -7,
          -7,
          -7,
          -3.3005954838899636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4724638966069894,
          -7,
          -7,
          -7,
          -3.86224753566811,
          -7,
          -7,
          -3.3157604906657347,
          -3.079904467666721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5855949989428377,
          -7,
          -2.4195702718432215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.907020280620376,
          -7,
          -3.6711111049252425,
          -7,
          -7,
          -3.3873898263387296,
          -7,
          -7,
          -3.6239725120169965,
          -7,
          -7,
          -3.9489701484173123,
          -7,
          -7,
          -7,
          -7,
          -3.570367785823503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9996626521208603,
          -7,
          -3.7151255162874732,
          -7,
          -7,
          -7,
          -7,
          -3.3666097103924297,
          -7,
          -7,
          -3.846120529546089,
          -7,
          -7,
          -7,
          -3.492294657634319,
          -7,
          -1.7130801029688874,
          -1.6216305986921031,
          -2.9218944709291024,
          -3.422115420387915,
          -7,
          -7,
          -7,
          -7,
          -4.082336487091058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.028571252692538,
          -7,
          -4.452775132369085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6570558528571038,
          -3.598702982683435,
          -2.982874001327729,
          -7,
          -2.574031267727719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4233687700792785,
          -3.72222246396973,
          -4.151706857022576,
          -3.6763277338813203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.239712300666562,
          -7,
          -7,
          -3.2615007731982804,
          -7,
          -7,
          -3.1541195255158465,
          -3.203032887014711,
          -7,
          -7,
          -7,
          -7,
          -3.207365037469072,
          -7,
          -3.989744321169322,
          -7,
          -7,
          -7,
          -7,
          -2.816241299991783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.906052065511861,
          -7,
          -3.6695957810243134,
          -3.274042330049831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1866738674997452,
          -2.619823500457278,
          -7,
          -7,
          -7,
          -7,
          -2.9745116927373285,
          -7,
          -7,
          -3.029273068295503,
          -7,
          -3.4497868469857735,
          -7,
          -2.7103994661168005,
          -7,
          -7,
          -3.4344890631511897,
          -7,
          -7,
          -3.367169488534681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0941215958405612,
          -7,
          -5.411867082352383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3104808914626753,
          -1.8126348734772357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.219322508419337,
          -4.641107085692552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3730040047672736,
          -7,
          -3.4739976044348633,
          -3.5085297189712863,
          -7,
          -7,
          -7,
          -4.313339843884307,
          -2.81424759573192,
          -3.3020634079121143,
          -2.9867717342662448,
          -4.4092143375767625,
          -7,
          -7,
          -7,
          -3.686725621074542,
          -3.732956369575625,
          -3.353868165568988,
          -3.707995746422929,
          -2.627557866535542,
          -7,
          -2.9647309210536292,
          -7,
          -7,
          -3.443262987458695,
          -7,
          -7,
          -7,
          -3.1332194567324945,
          -7,
          -3.204662511748219,
          -7,
          -3.320146286111054,
          -7,
          -7,
          -7,
          -3.1781132523146316,
          -4.432619791621332,
          -2.932304613951781,
          -7,
          -3.9827007911139,
          -7,
          -2.400537989391946,
          -3.576341350205793,
          -7,
          -7,
          -3.4915017662373264,
          -7,
          -7,
          -7,
          -2.5630853728550487,
          -5.129373399173946,
          -3.0858849323421316,
          -7,
          -7,
          -7,
          -3.747567162737625,
          -3.606918525948291,
          -7,
          -7,
          -3.3932241163612975,
          -7,
          -2.82303928223169,
          -7,
          -3.0878701126902555,
          -7,
          -7,
          -7,
          -7,
          -4.078245298732825,
          -3.783331762887424,
          -4.920999961706768,
          -7,
          -7,
          -4.319251841140254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7768464086952993,
          -7,
          -3.302114376956201,
          -7,
          -7,
          -3.3787611753163733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4223298856764006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.180699201296035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278970693925059,
          -7,
          -4.672605777753426,
          -4.922008825977601,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.229528263787672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.472419996698072,
          -7,
          -7,
          -4.3210596292066805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.13569437848255,
          -7,
          -4.368184576507716,
          -4.764639332067447,
          -7,
          -3.6449307079135873,
          -4.326335860928752,
          -7,
          -4.059040586854335,
          -3.9876662649262746,
          -2.8746267516176824,
          -4.439569517147175,
          -4.117039167877679,
          -3.6793733792387515,
          -7,
          -3.9582611890127564,
          -3.5129510799724906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.991128570067966,
          -4.341633748391168,
          -5.7063362205981605,
          -7,
          -7,
          -7,
          -4.477844476338758,
          -7,
          -7,
          -4.0726909550128685,
          -7,
          -7,
          -4.319564066092164,
          -7,
          -7,
          -7,
          -2.9091011725201548,
          -7,
          -4.1194318594918125,
          -4.184705623215826,
          -7,
          -3.6206267580510696,
          -7,
          -7,
          -4.870204856809119,
          -7,
          -2.8793253007848074,
          -4.3057596722628215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.865192838908103,
          -3.3346547668832414,
          -2.453347192030566,
          -7,
          -7,
          -3.561836516419704,
          -7,
          -7,
          -7,
          -3.737907923374639,
          -7,
          -3.9512750558456595,
          -3.300704152596124,
          -7,
          -7,
          -7,
          -7,
          -3.6535983818432896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7059064557003114,
          -7,
          -7,
          -7,
          -4.617010831199084,
          -4.787091911760731,
          -7,
          -7,
          -3.2317243833285163,
          -7,
          -2.968794159231461,
          -7,
          -7,
          -3.2060895755188294,
          -7,
          -7,
          -7,
          -3.167317334748176,
          -3.369679599559816,
          -7,
          -7,
          -7,
          -7,
          -3.245265839457461,
          -2.7752917999785107,
          -7,
          -7,
          -3.225309281725863,
          -3.198519630241168,
          -7,
          -3.3638938977741004,
          -7,
          -7,
          -7,
          -3.3038437748886547,
          -3.338126291801089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3083509485867255,
          -3.0154994673235294,
          -3.1370374547895126,
          -7,
          -3.182628608173459,
          -3.1373949534718495,
          -3.0024900412432993,
          -7,
          -3.261241234655554,
          -7,
          -7,
          -7,
          -3.7265642161622448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.749646150178696,
          -7,
          -7,
          -3.942888158023463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.631950826259217,
          -2.750219025946535,
          -7,
          -7,
          -3.2237554536572413,
          -3.0644579892269186,
          -4.0920360389444586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -7,
          -7,
          -7,
          -3.803013034258028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019628552674895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1809855807867304,
          -7,
          -7,
          -7,
          -7,
          -1.7862574846662123,
          -7,
          -2.6122539060964374,
          -7,
          -2.6871721045948,
          -7,
          -3.286231854028553,
          -4.429243421553872,
          -7,
          -7,
          -7,
          -3.745777217889759,
          -2.5197775266927613,
          -7,
          -3.2973227142053023,
          -7,
          -7,
          -7,
          -3.659402725922002,
          -7,
          -7,
          -3.0527708694748816,
          -3.590600369160912,
          -7,
          -7,
          -7,
          -3.189770956346874,
          -7,
          -7,
          -4.0267141585600665,
          -7,
          -7,
          -7,
          -7,
          -2.877227325148208,
          -3.2304489213782737,
          -7,
          -7,
          -3.2166935991697545,
          -7,
          -4.103097457319296,
          -7,
          -7,
          -7,
          -1.768131589884881,
          -2.7765397662270646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8444771757456815,
          -7,
          -3.256862005896403,
          -3.257138370205915,
          -7,
          -2.8363241157067516,
          -2.7978443698196243,
          -7,
          -3.3392526340327,
          -7,
          -7,
          -7,
          -7,
          -4.466066475658547,
          -7,
          -7,
          -3.071391001621373,
          -7,
          -7,
          -2.8206119069993245,
          -7,
          -3.267406418752904,
          -4.350535513994461,
          -7,
          -7,
          -7,
          -7,
          -3.1527468640264606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6546577546495245,
          -7,
          -7,
          -3.461849389656668,
          -7,
          -4.059979716944162,
          -7,
          -7,
          -7,
          -7,
          -2.834802054048699,
          -2.9861444647105206,
          -7,
          -2.6596281299598568,
          -3.0155693064298794,
          -7,
          -7,
          -3.5407464642438433,
          -3.176958980586908,
          -7,
          -2.7950105586314464,
          -3.245594912768832,
          -3.697159570973576,
          -3.2884728005997825,
          -7,
          -7,
          -2.9136372740190546,
          -2.8332849777071742,
          -7,
          -7,
          -3.5020172148271476,
          -7,
          -2.945632686581686,
          -3.336059277866349,
          -2.945742053110066,
          -4.160055650114694,
          -7,
          -7,
          -7,
          -3.91912605397765,
          -7,
          -7,
          -3.4026052419199146,
          -7,
          -7,
          -2.7515703673593683,
          -3.600755149639618,
          -7,
          -3.1687920203141817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8491463155442887,
          -3.5819212275866295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3794868137172736,
          -7,
          -7,
          -7,
          -7,
          -2.707144188342445,
          -3.95217469569546,
          -7,
          -7,
          -3.1649473726218416,
          -3.3995006613146104,
          -7,
          -7,
          -2.3479801568783407,
          -7,
          -2.6838186602633978,
          -3.4566696294237573,
          -2.851920499585014,
          -3.1319392952104246,
          -7,
          -3.1331292340592887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6714968222018745,
          -7,
          -3.825728957982647,
          -7,
          -3.4959603948817053,
          -3.6309514530353697,
          -7,
          -3.4602210786446816,
          -3.686725621074542,
          -7,
          -3.226471015317139,
          -7,
          -2.677454862198223,
          -2.526708418493159,
          -2.8180608567577408,
          -3.723044991643445,
          -7,
          -3.4500180391562068,
          -7,
          -3.9978230807457256,
          -0.830481425491196,
          -3.7594789799413166,
          -7,
          -2.34286491861272,
          -2.680335513414563,
          -1.8725535538998603,
          -2.132625565274591,
          -2.137553986107054,
          -7,
          -2.797959643737196,
          -2.7001043686887627,
          -3.0331555896976927,
          -7,
          -7,
          -7,
          -2.868216825331944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9834007381805385,
          -3.360072477970273,
          -7,
          -4.16301220977483,
          -4.2224110069938146,
          -7,
          -2.9508514588885464,
          -2.6778349886836756,
          -7,
          -7,
          -7,
          -3.1961761850399735,
          -2.7319109421168726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9626849566736677,
          -3.1835839736533478,
          -7,
          -7,
          -7,
          -7,
          -3.3102683666324477,
          -7,
          -7,
          -7,
          -3.0655797147284485,
          -7,
          -3.5475901217701526,
          -7,
          -7,
          -7,
          -7,
          -2.9370562715711874,
          -7,
          -3.546480969539267,
          -7,
          -2.8317202295593877,
          -7,
          -7,
          -7,
          -3.188807997012431,
          -3.8133808067338557,
          -3.403763761701065,
          -3.190261645023611,
          -3.898560644939712,
          -2.9339931638312424,
          -7,
          -7,
          -3.0863598306747484,
          -3.2870175013221017,
          -2.5236282431870687,
          -7,
          -7,
          -3.390758528738717,
          -7,
          -2.387066088357355,
          -7,
          -7,
          -3.9771746760201876,
          -3.376576957056512,
          -2.5282152823885995,
          -2.235360083082256,
          -5.135129469720565,
          -2.1468778968404774,
          -7,
          -3.1031834682108403,
          -7,
          -2.721398375521505,
          -3.2100508498751372,
          -7,
          -7,
          -7,
          -3.2495652118253466,
          -7,
          -2.9385197251764916,
          -3.5190400386483445,
          -5.528025997792825,
          -7,
          -7,
          -7,
          -7,
          -3.825555932290357,
          -7,
          -7,
          -3.295347148333618,
          -3.55303301620244,
          -7,
          -7,
          -7,
          -2.3948163583872386,
          -7,
          -2.8785217955012063,
          -7,
          -7,
          -4.084844278240215,
          -3.450214883607424,
          -4.553645538162373,
          -7,
          -3.8572721735640414,
          -3.5174062290248944,
          -2.841672250073634,
          -7,
          -2.862131379313037,
          -7,
          -7,
          -2.5691890378923947,
          -7,
          -7,
          -7,
          -7,
          -3.543074235033532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6713447802948647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.913796197777649,
          -7,
          -7,
          -4.885971517631692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.592409947570861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.137322456100344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.336859820916809,
          -7,
          -5.0697642673235235,
          -7,
          -7,
          -7,
          -7,
          -5.2379732962172065,
          -2.7316693318286362,
          -2.4340363540203143,
          -4.456593750244408,
          -4.189176714937135,
          -2.989574392477443,
          -7,
          -4.452629651622018,
          -3.8818409683249273,
          -3.1975562131535367,
          -7,
          -4.3908291687001455,
          -7,
          -7,
          -4.217782145093702,
          -4.586239786338633,
          -7,
          -7,
          -7,
          -3.252124552505644,
          -4.659212396143382,
          -7,
          -5.407062722441135,
          -7,
          -7,
          -7,
          -4.341869590349321,
          -7,
          -3.886596465825174,
          -7,
          -7,
          -7,
          -3.301160264469208,
          -7,
          -7,
          -3.7722287734114994,
          -4.960699043221426,
          -7,
          -3.2122264987691906,
          -7,
          -3.6897526961391565,
          -4.317415586331099,
          -4.01556930642988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3068394648047046,
          -2.3961993470957363,
          -3.0964554363454075,
          -7,
          -7,
          -3.1567951515677546,
          -3.5338991007965945,
          -2.1699681739968923,
          -3.22219604630172,
          -3.2150424129289608,
          -7,
          -3.2124403056987485,
          -3.1049136848482157,
          -2.9894498176666917,
          -7,
          -7,
          -3.48826861549546,
          -3.748498126613737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.446226401778163,
          -2.732393759822968,
          -7,
          -4.051654084113286,
          -7,
          -7,
          -4.607143935528615,
          -4.056513325012579,
          -4.493778599541865,
          -7,
          -7,
          -2.006902900435532,
          -7,
          -1.7844102063306588,
          -7,
          -2.8130803608679105,
          -2.8415911806891856,
          -7,
          -7,
          -7,
          -2.8068580295188172,
          -7,
          -7,
          -7,
          -2.8840397404753637,
          -7,
          -2.6765411988558334,
          -2.913120709844209,
          -4.221231613181412,
          -7,
          -2.533243945589153,
          -2.2445863372491552,
          -7,
          -4.175482820774772,
          -7,
          -7,
          -7,
          -2.713630525200522,
          -2.6405673372975262,
          -2.8877297972880305,
          -7,
          -7,
          -7,
          -7,
          -3.2755416884013093,
          -3.839603729470837,
          -7,
          -2.716559774821619,
          -3.086241154766945,
          -7,
          -7,
          -2.901942417287845,
          -2.8990042527308097,
          -1.5141347630240631,
          -7,
          -1.9647518554481722,
          -2.588271706842329,
          -3.205407384356316,
          -7,
          -3.3710678622717363,
          -7,
          -3.3941013020400446,
          -7,
          -7,
          -3.1541195255158465,
          -7,
          -7,
          -2.6283889300503116,
          -7,
          -3.9397313561662894,
          -7,
          -4.18974290024157,
          -3.7801612357769154,
          -7,
          -2.7299742856995555,
          -7,
          -2.113147211878742,
          -7,
          -2.688177041143745,
          -2.1999901215285598,
          -7,
          -7,
          -3.443106456737266,
          -2.396780343144799,
          -3.3702775172275845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7748088303107057,
          -3.265525335219074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2340108175871793,
          -7,
          -4.140162229613637,
          -3.051602668541331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.909622879773425,
          -7,
          -7,
          -7,
          -7,
          -3.246867721899116,
          -7,
          -7,
          -7,
          -7,
          -3.438463235117634,
          -3.417803722639881,
          -7,
          -7,
          -7,
          -7,
          -3.0595634179012676,
          -2.1609934489716522,
          -2.4258601450778405,
          -2.6871721045948,
          -7,
          -7,
          -7,
          -4.2523189329416535,
          -3.770631127777807,
          -7,
          -7,
          -3.612836816232258,
          -2.737782385855657,
          -2.8269382114979367,
          -3.225309281725863,
          -7,
          -7,
          -7,
          -3.5073931999739076,
          -3.925415237084246,
          -7,
          -2.4703941552108724,
          -3.4932825782400987,
          -7,
          -7,
          -7,
          -2.8433885229380875,
          -2.473591229933489,
          -3.1869563354654122,
          -4.392966472124374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -2.875928984922927,
          -3.8882294314791817,
          -7,
          -7,
          -3.4572761860613257,
          -7,
          -3.2295111961536325,
          -3.168202746842631,
          -2.970579305714851,
          -3.5913985512812485,
          -7,
          -3.0907869279492677,
          -3.148251520587879,
          -7,
          -2.203717671851886,
          -3.539828558377898,
          -7,
          -2.7671558660821804,
          -3.54082981411108,
          -2.9540011676815703,
          -7,
          -7,
          -7,
          -2.6281333875410833,
          -3.0416886941315635,
          -3.419850652422548,
          -7,
          -7,
          -2.810098040681143,
          -7,
          -7,
          -3.2218487496163566,
          -7,
          -3.531606631932722,
          -2.701139315206785,
          -7,
          -2.9966575799270623,
          -7,
          -7,
          -3.438384107034714,
          -2.8399491678129896,
          -2.6913762288033705,
          -7,
          -7,
          -7,
          -7,
          -3.624488362513449,
          -3.404833716619938,
          -7,
          -3.5692390146048285,
          -3.619927710291468,
          -3.5710874123044833,
          -7,
          -7,
          -7,
          -7,
          -3.4945719842301988,
          -3.356599435724971,
          -7,
          -4.171199716800422,
          -2.946943270697825,
          -7,
          -7,
          -3.7041076002448827,
          -7,
          -2.3418582954511553,
          -3.040602340114073,
          -2.4641562775552948,
          -3.244365490825935,
          -2.9132839017604186,
          -3.1513698502474603,
          -7,
          -7,
          -3.0349944424861803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7163651049900803,
          -3.9816525260860227,
          -3.212453961040276,
          -3.8829227906025987,
          -7,
          -4.29807545181653,
          -7,
          -3.5441921107650325,
          -3.6769678142947586,
          -7,
          -2.754093393242939,
          -2.9918797685613647,
          -2.4172343738083697,
          -7,
          -2.5903215880567183,
          -4.079976723632598,
          -7,
          -7,
          -7,
          -2.25699248549758,
          -7,
          -7,
          -3.1808424146466825,
          -3.6982165740723576,
          -3.266310110427021,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6473585159080253,
          -7,
          -7,
          -2.718501688867274,
          -3.042181594515766,
          -7,
          -7,
          -3.0775495804517936,
          -7,
          -3.1885066338181143,
          -7,
          -3.916559219301114,
          -7,
          -7,
          -2.928682494549992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2590201740708116,
          -7,
          -3.9952621553308805,
          -7,
          -7,
          -3.3130346319553867,
          -7,
          -3.4367985102318035,
          -3.357553719743082,
          -3.344981413927258,
          -3.4868553552769432,
          -7,
          -3.1072099696478683,
          -7,
          -3.368100851709351,
          -2.654264074777965,
          -7,
          -7,
          -7,
          -7,
          -2.951175559263217,
          -4.054823640146561,
          -7,
          -2.3557126765908625,
          -7,
          -2.6605266883136225,
          -2.509202522331103,
          -2.1077750894177876,
          -2.8573324964312685,
          -2.498861688992884,
          -2.890979596989689,
          -2.8652520716525895,
          -7,
          -3.494988973683168,
          -7,
          -3.1947917577219247,
          -7,
          -7,
          -3.1604685311190375,
          -2.78354628227035,
          -7,
          -7,
          -2.6173498739219823,
          -2.909020854211156,
          -3.9478256844424506,
          -3.655810494495252,
          -3.3754197310501364,
          -4.86846054001897,
          -7,
          -7,
          -2.904715545278681,
          -2.8305886686851442,
          -7,
          -3.1061908972634154,
          -3.152135396861876,
          -2.3355490719885337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.255415276870857,
          -7,
          -7,
          -7,
          -7,
          -2.636989101812229,
          -2.5224442335063197,
          -7,
          -3.2420442393695508,
          -3.4407517004791854,
          -2.932980821923198,
          -2.394970241463233,
          -3.860278099752235,
          -7,
          -7,
          -7,
          -3.484503208342262,
          -2.4375920322539613,
          -2.124888234313702,
          -7,
          -3.9387198147823823,
          -2.9696488404807253,
          -2.6646419755561257,
          -7,
          -2.5425349705996863,
          -3.7926717891415676,
          -2.6292322636646066,
          -2.866877814337499,
          -3.8816128724783483,
          -3.357553719743082,
          -3.2352758766870524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -2.8574832669524506,
          -3.4857687326721285,
          -2.8394780473741985,
          -2.9323469078099147,
          -2.662001879389917,
          -4.833127979575862,
          -3.2307553740419857,
          -7,
          -3.699230502883409,
          -7,
          -7,
          -2.8805277781988052,
          -3.413467412985825,
          -3.6870828446043706,
          -3.2895889525425965,
          -3.833083334178343,
          -7,
          -3.305673745669693,
          -2.432969290874406,
          -4.714903366650505,
          -3.00566303219259,
          -7,
          -7,
          -7,
          -3.3280396468797715,
          -3.383815365980431,
          -7,
          -7,
          -2.9116901587538613,
          -7,
          -2.329006517271025,
          -7,
          -3.7558748556724915,
          -7,
          -3.2942457161381182,
          -7,
          -7,
          -3.2697284215142757,
          -2.9672532160042393,
          -3.6349634466665375,
          -7,
          -7,
          -3.9075188461066293,
          -2.919470349950749,
          -7,
          -7,
          -7,
          -7,
          -3.2287210842783987,
          -3.1727488389827436,
          -7,
          -7,
          -7,
          -3.2023520678097515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9318056808578947,
          -3.0409976924234905,
          -7,
          -3.4264136561316882,
          -7,
          -7,
          -7,
          -7,
          -3.9084135241905464,
          -3.9159272116971158,
          -4.297147471801269,
          -2.724270179122184,
          -3.7061628278930594,
          -3.1902382914634244,
          -7,
          -7,
          -5.000742009326735,
          -3.3098766010711036,
          -7,
          -4.378851946448881,
          -4.0229693555731405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8415972035066765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8760662153210648,
          -3.576341350205793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.46304147484323,
          -7,
          -3.1893135196884166,
          -7,
          -4.19942604159399,
          -5.068642187918206,
          -7,
          -3.4158077276355434,
          -3.6432354749403233,
          -7,
          -3.9583677010595633,
          -7,
          -2.87989832433001,
          -4.150909873701122,
          -3.8866692944119765,
          -3.8415114201192337,
          -7,
          -4.146902869928199,
          -3.8642143304613294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.51750819605495,
          -4.057485779478209,
          -5.707016310494369,
          -7,
          -7,
          -7,
          -4.481667123172043,
          -7,
          -7,
          -3.0210858833099774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2314695904306814,
          -7,
          -3.043891449779881,
          -4.496929648073215,
          -7,
          -3.5487971072480162,
          -7,
          -7,
          -4.445769561712997,
          -7,
          -3.0593740590659575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0803522609890255,
          -2.8680563618230415,
          -2.5986810989071634,
          -7,
          -7,
          -2.0109093174202606,
          -2.793511005792858,
          -7,
          -3.1351326513767748,
          -2.7542092947359547,
          -3.0884904701823963,
          -3.439922795914063,
          -3.379668034033654,
          -3.2177470732627937,
          -7,
          -3.8469862125758914,
          -7,
          -3.246908718215935,
          -7,
          -7,
          -3.8243211248507714,
          -7,
          -7,
          -2.6164755138885654,
          -3.605412798153051,
          -7,
          -2.590507462008583,
          -7,
          -7,
          -3.7006388276638265,
          -3.8180452184344693,
          -3.9475247447286654,
          -7,
          -3.5374412834079476,
          -2.7130236099429497,
          -7,
          -2.7089062809976463,
          -7,
          -7,
          -2.868032822188796,
          -7,
          -2.4202858849419178,
          -7,
          -3.3554515201265174,
          -3.4379090355394983,
          -7,
          -2.9048957878552057,
          -2.8226038992559745,
          -7,
          -3.4075608494863623,
          -2.521644156181464,
          -7,
          -7,
          -7,
          -2.9947569445876283,
          -7,
          -2.620522715839948,
          -7,
          -7,
          -3.932220013877119,
          -3.1473671077937864,
          -2.8069966367379076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.82013575187043,
          -7,
          -3.15060295179301,
          -3.067876424980735,
          -7,
          -7,
          -2.9926166282706546,
          -2.4822997524547086,
          -2.0744507189545915,
          -3.475235222604128,
          -2.4360160992135165,
          -7,
          -3.7868933252613157,
          -7,
          -2.853736226085963,
          -3.420698202908807,
          -3.337459261290656,
          -3.004536317851323,
          -7,
          -7,
          -7,
          -7,
          -2.9609461957338317,
          -3.0684332525144025,
          -2.2545353570538538,
          -7,
          -2.976177969832669,
          -2.9410263770393295,
          -2.874895786353347,
          -3.0624566286256467,
          -7,
          -2.913460623830773,
          -7,
          -3.7060346607143506,
          -2.341269613058443,
          -7,
          -7,
          -7,
          -2.8135809885681917,
          -2.837451932032312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.243719975783927,
          -7,
          -7,
          -7,
          -3.2161659022859928,
          -7,
          -7,
          -7,
          -7,
          -3.193820026016113,
          -7,
          -4.130526745384164,
          -3.8105013477665297,
          -7,
          -7,
          -7,
          -7,
          -3.1997551772534747,
          -7,
          -4.030518764843543,
          -7,
          -7,
          -3.6060587494103142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0629578340845103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8724211672254916,
          -4.9034318593018815,
          -7,
          -7,
          -7,
          -2.8915374576725643,
          -3.5108398014493605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4338498071286465,
          -3.5814945422908995,
          -7,
          -7,
          -4.0402660074460846,
          -2.7363965022766426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7513738660351916,
          -7,
          -7,
          -7,
          -7,
          -2.807083812982132,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1410796030609935,
          -7,
          -2.3026555539507187,
          -3.31722734917642,
          -7,
          -3.1562461903973444,
          -2.2285286773571817,
          -7,
          -7,
          -7,
          -7,
          -3.351388266557641,
          -7,
          -7,
          -3.7884512070234555,
          -7,
          -7,
          -3.4287825114969546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1484638311172795,
          -7,
          -7,
          -7,
          -7,
          -3.4254527011208484,
          -3.02201573981772,
          -7,
          -3.4168068718229443,
          -4.34699155667835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.53198955141255,
          -7,
          -7,
          -3.3433318497708067,
          -3.227372442289636,
          -3.414221033214868,
          -7,
          -7,
          -3.41077723337721,
          -3.232487866352986,
          -1.9790549228951424,
          -2.367355921026019,
          -7,
          -3.301959631014103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5984439539568314,
          -7,
          -7,
          -7,
          -7,
          -3.480186663415707,
          -7,
          -7,
          -2.6182573448404014,
          -2.9320930828571,
          -2.7198489822195464,
          -7,
          -4.171053287559376,
          -3.5775683882303175,
          -7,
          -7,
          -7,
          -4.516473673696325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.298001111407518,
          -3.4616485680634552,
          -7,
          -7,
          -3.889339059564688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.025960909856379,
          -7,
          -2.895606686165933,
          -3.6769678142947586,
          -7,
          -3.874713688757779,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.841784795614428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2477278329097232,
          -3.5717088318086874,
          -7,
          -7,
          -4.452211314447793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9775635725771523,
          -7,
          -3.4127124827451016,
          -3.906065544755237,
          -7,
          -7,
          -3.57611089412084,
          -7,
          -7,
          -7,
          -2.946943270697825,
          -7,
          -3.188647295999717,
          -3.6224212739756703,
          -7,
          -7,
          -7,
          -3.9472866446777983,
          -3.2776092143040914,
          -4.039433949521653,
          -7,
          -7,
          -7,
          -3.7515100502700416,
          -7,
          -7,
          -7,
          -2.9003671286564705,
          -2.8901814080462,
          -3.0308020487722676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6599162000698504,
          -2.6190933306267428,
          -3.6061663146076204,
          -7,
          -3.4298814190107647,
          -4.4118426875430234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.641141817541527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6748611407378116,
          -7,
          -3.7756832490260437,
          -3.8101652845431495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.231953569198981,
          -7,
          -4.108209731084804,
          -7,
          -7,
          -7,
          -3.1425235421112268,
          -2.887456539837175,
          -7,
          -3.4073909044707316,
          -7,
          -2.8709888137605755,
          -7,
          -7,
          -3.1300119496719043,
          -2.966610986681934,
          -2.811909980420099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.321598430465344,
          -3.9240207004740677,
          -7,
          -7,
          -7,
          -4.654503824567048,
          -2.630653834698125,
          -7,
          -3.6817385815870307,
          -7,
          -7,
          -3.275886960301226,
          -3.2555137128195333,
          -7,
          -7,
          -2.8754230247469814,
          -3.26528962586083,
          -3.2112540676178725,
          -7,
          -4.983247297962127,
          -3.865044721693099,
          -7,
          -7,
          -7,
          -3.7481104674949837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.786751422145561,
          -2.668851648082519,
          -2.7697464671794534,
          -7,
          -7,
          -4.379353870742188,
          -3.2712516660130433,
          -5.2731923196083965,
          -7,
          -3.484584529282843,
          -3.9390114469771156,
          -3.166133970305109,
          -7,
          -7,
          -2.741151598851785,
          -3.047145014047316,
          -2.629336773667501,
          -3.7134905430939424,
          -3.30362797638389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.63558426631123,
          -7,
          -3.7236198355154633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.800166990201364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.311880953037904,
          -7,
          -4.192139824255448,
          -7,
          -7,
          -3.3443922736851106,
          -4.326479236380961,
          -7,
          -4.4570437728006915,
          -7,
          -7,
          -7,
          -4.661187760411323,
          -3.9805578230230227,
          -7,
          -3.6572471298837166,
          -3.814580516010319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.389073011288796,
          -4.2090039452634525,
          -5.405310494817033,
          -7,
          -3.6787914343662442,
          -7,
          -4.477878197285531,
          -7,
          -5.405199464216897,
          -7,
          -7,
          -7,
          -7,
          -4.4306071113013985,
          -7,
          -7,
          -3.7341061109103197,
          -3.797821311364024,
          -7,
          -7,
          -2.9818186071706636,
          -3.451419954806697,
          -4.654431651055449,
          -7,
          -4.7452758796054475,
          -7,
          -7,
          -3.9078304032196507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.689146005168144,
          -7,
          -3.8797264966395772,
          -7,
          -7,
          -4.340325113748292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6027109449575576,
          -7,
          -3.3085644135612386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5106790310322102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4243915544102776,
          -3.329092647195331,
          -7,
          -7,
          -7,
          -7,
          -3.548978724921236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2105860249051563,
          -7,
          -7,
          -7,
          -3.6799726942774185,
          -7,
          -7,
          -3.52750101098112,
          -2.897901874268228,
          -7,
          -4.142577160920535,
          -7,
          -7,
          -7,
          -7,
          -3.949101031499502,
          -7,
          -3.5814945422908995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3098430047160705,
          -7,
          -7,
          -7,
          -3.484442207642407,
          -4.0273190225793565,
          -7,
          -7,
          -4.002144454528368,
          -3.447158031342219,
          -3.726890140741822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0508435809569185,
          -7,
          -4.157940055964767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.331427296520743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9160326101885694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7942788657214,
          -7,
          -3.276921132065774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.286231854028553,
          -7,
          -1.8724211672254916,
          -7,
          -4.506239774721532,
          -7,
          -7,
          -7,
          -2.2521355991800753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1961761850399735,
          -3.898396045930009,
          -7,
          -3.2076343673889616,
          -3.5896576010978456,
          -3.137986732723532,
          -7,
          -7,
          -3.3592661646067485,
          -3.2005769267548483,
          -7,
          -4.088915346604906,
          -3.137986732723532,
          -7,
          -7,
          -7,
          -3.0429690733931802,
          -2.9489017609702137,
          -3.512817758564873,
          -7,
          -7,
          -2.998695158311656,
          -3.9114709525356064,
          -7,
          -7,
          -3.3725438007590705,
          -2.6951897138022916,
          -3.3601198615808054,
          -7,
          -3.1344958558346736,
          -7,
          -7,
          -7,
          -2.7778079684909334,
          -3.475235222604128,
          -3.313023110323238,
          -3.807940721215499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4538532325881866,
          -7,
          -7,
          -3.4360035356698964,
          -7,
          -7,
          -3.0501863496753607,
          -7,
          -7,
          -4.17179793657363,
          -7,
          -3.091842749738098,
          -7,
          -7,
          -3.8880671134074367,
          -7,
          -7,
          -7,
          -7,
          -3.0824263008607717,
          -7,
          -1.9252401149535792,
          -7,
          -7,
          -2.7351867426264027,
          -2.6587266773270137,
          -3.1245042248342823,
          -7,
          -7,
          -2.852937225981498,
          -3.2988530764097064,
          -1.994114021477017,
          -1.4673614174305063,
          -7,
          -2.739572344450092,
          -7,
          -7,
          -7,
          -3.5055569386638217,
          -7,
          -7,
          -7,
          -3.6506959797606107,
          -2.9337583661184787,
          -7,
          -7,
          -2.701280086814093,
          -3.218010042984363,
          -3.68945093632515,
          -7,
          -7,
          -2.6735737964230517,
          -2.361609805175202,
          -2.0212877673805068,
          -7,
          -3.1787180191057685,
          -2.9289458629313847,
          -7,
          -3.5518767631329724,
          -3.0674428427763805,
          -4.091702121717148,
          -3.1815577738627865,
          -3.4761067168401913,
          -3.6278776945799716,
          -7,
          -7,
          -3.400732212870903,
          -3.5020172148271476,
          -7,
          -7,
          -4.371769558513179,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.338057875419756,
          -3.7453871213200087,
          -2.1959908364698766,
          -3.7019994748896368,
          -7,
          -3.890756251918218,
          -7,
          -7,
          -3.2000292665537704,
          -7,
          -3.3619166186686433,
          -7,
          -7,
          -7,
          -3.1635837317044717,
          -7,
          -7,
          -7,
          -3.229937685907934,
          -7,
          -3.2342641243787895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.771285782722611,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3310221710418286,
          -7,
          -7,
          -7,
          -7,
          -3.385033216560905,
          -7,
          -3.6956567599361905,
          -3.3062105081677613,
          -7,
          -7,
          -7,
          -3.3126004392612596,
          -7,
          -3.2615007731982804,
          -2.746244871720198,
          -7,
          -7,
          -7,
          -7,
          -3.3378584290410944,
          -4.346059433052574,
          -7,
          -4.08192310435106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.456973013635818,
          -7,
          -7,
          -2.940184328524863,
          -7,
          -3.8651039746411278,
          -7,
          -7,
          -2.972665592266111,
          -7,
          -7,
          -7,
          -7,
          -3.04766419460156,
          -2.64157847058676,
          -3.3028718360676903,
          -3.4388902778168413,
          -5.111076755903269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0665122778565954,
          -7,
          -3.270911639410481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.289142835932333,
          -4.165377888987069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0927206446840994,
          -7,
          -7,
          -7,
          -2.347850206404031,
          -3.296445794206396,
          -7,
          -7,
          -3.8421930493708496,
          -7,
          -4.536583691516737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.699447465710474,
          -2.040307529721854,
          -3.270539094260548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.486288760960566,
          -3.4596939764779706,
          -7,
          -7,
          -7,
          -7,
          -3.27669152884504,
          -7,
          -2.7732377468893765,
          -3.159717546180216,
          -7,
          -7,
          -7,
          -4.530462245283984,
          -1.8459914205954857,
          -2.904715545278681,
          -7,
          -2.8656960599160706,
          -7,
          -7,
          -7,
          -3.663795122219408,
          -3.228913405994688,
          -3.4982416126858915,
          -7,
          -7,
          -7,
          -4.506289796825186,
          -3.58029758843657,
          -7,
          -7,
          -7,
          -2.3858296186697827,
          -2.937116510767054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.852204993164218,
          -7,
          -3.1646502159342966,
          -3.638389407665336,
          -7,
          -4.858200217962495,
          -3.1859845811695098,
          -5.030313991627524,
          -7,
          -2.90132207214577,
          -4.718418641829656,
          -2.8849368971038603,
          -7,
          -7,
          -7,
          -2.780557320149522,
          -2.9514069115390393,
          -3.4353665066126613,
          -7,
          -7,
          -7,
          -3.1269427179442277,
          -7,
          -7,
          -7,
          -3.6630409748939745,
          -7,
          -3.073677626966478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.642662331442035,
          -7,
          -3.8992366751075775,
          -7,
          -4.592598628906131,
          -4.404223451969429,
          -3.985022082109535,
          -7,
          -7,
          -4.720349524086064,
          -4.521395270332305,
          -7,
          -7,
          -7,
          -4.92350824633259,
          -4.0385804259615785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2072976788831435,
          -7,
          -4.659906696804346,
          -7,
          -7,
          -4.474529484366441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4553778768849766,
          -3.712256751122368,
          -4.138744663948892,
          -7,
          -7,
          -4.765716972542505,
          -3.895809150169131,
          -3.194976603216055,
          -3.8550141033002596,
          -2.782293422809544,
          -3.855604956189789,
          -7,
          -7,
          -4.4441072798376,
          -3.5483516147701626,
          -3.037924256713626,
          -7,
          -3.209073241435683,
          -3.054166019538618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.089255832753279,
          -3.944042514505542,
          -7,
          -7,
          -7,
          -7,
          -4.479234496909399,
          -7,
          -4.8036107303933635,
          -4.083180004129977,
          -7,
          -7,
          -4.325536187192074,
          -7,
          -3.7839035792727347,
          -7,
          -3.3153404766272883,
          -3.515741416669365,
          -4.4220807309448755,
          -3.7115541682501694,
          -3.09377178149873,
          -2.76401274186685,
          -4.354737326259845,
          -3.2777237887624535,
          -5.046863748480282,
          -7,
          -7,
          -3.0070112422218074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.902341063964813,
          -7,
          -3.1883096301940044,
          -7,
          -7,
          -4.0448140475286385,
          -7,
          -3.3394514413064407,
          -2.932980821923198,
          -3.760271660542063,
          -7,
          -4.099432007131712,
          -3.1547282074401557,
          -7,
          -7,
          -4.132099521916504,
          -7,
          -3.203123582322945,
          -7,
          -7,
          -3.7899330809317506,
          -7,
          -7,
          -7,
          -2.4300005901760695,
          -7,
          -4.019199401055288,
          -7,
          -7,
          -7,
          -3.9489366538703976,
          -4.789136320068675,
          -7,
          -7,
          -3.246203041837881,
          -7,
          -7,
          -7,
          -7,
          -3.4096191784089713,
          -7,
          -7,
          -7,
          -3.245265839457461,
          -7,
          -7,
          -7,
          -3.173186268412274,
          -7,
          -3.00987563371216,
          -3.3913762391696496,
          -7,
          -7,
          -3.261143867700667,
          -3.236537261488694,
          -7,
          -7,
          -7,
          -7,
          -3.9056340013269546,
          -7,
          -3.576606809002626,
          -3.485437481076301,
          -7,
          -2.9506082247842307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5128844243846222,
          -7,
          -7,
          -3.504062882678692,
          -3.2338790396440125,
          -7,
          -7,
          -4.309268104477122,
          -7,
          -7,
          -7,
          -3.562015144502433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.054459837239404,
          -7,
          -7,
          -4.07141556509424,
          -7,
          -3.1699681739968923,
          -7,
          -3.2909245593827543,
          -7,
          -3.66029616027073,
          -7,
          -7,
          -7,
          -3.292920299600006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3372595397502756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02360907957383,
          -3.0906107078284064,
          -3.077731179652392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.090713737503893,
          -7,
          -5.203921790582551,
          -4.902956963936665,
          -5.20444829373088,
          -4.429243421553872,
          -4.2523189329416535,
          -4.9034318593018815,
          -4.506239774721532,
          -7,
          -3.544292393875673,
          -7,
          -4.903410161122643,
          -3.0331903612722177,
          -2.897545365515436,
          -3.674623431655849,
          -4.506375130517445,
          -7,
          -7,
          -7,
          -2.7813158040856756,
          -3.506973106258592,
          -5.203766974960574,
          -3.2279105473700067,
          -1.9301914949867172,
          -4.36078268987328,
          -3.824451270036613,
          -5.20390278111006,
          -3.3271572027970855,
          -3.808418952199765,
          -4.163535418640821,
          -2.1209033854240165,
          -3.8440663777932302,
          -4.359108792853317,
          -5.2042773858780045,
          -4.204971450346999,
          -3.63977176138187,
          -4.09059172601141,
          -3.161162037916258,
          -4.726871135191101,
          -3.8285712888450414,
          -4.90385746681675,
          -2.323634080004334,
          -3.8063590835188696,
          -4.5061558329372735,
          -4.363434680652326,
          -4.206180699019942,
          -3.1383345474722515,
          -4.30167823901002,
          -4.029716474028271,
          -3.910210721165163,
          -3.649851182496973,
          -3.8094223346541747,
          -1.5602144349254363,
          -1.811998408129183,
          -2.7131861538560007,
          -3.326860815038242,
          -4.7279124987113805,
          -3.843733671089443,
          -3.285471577480692,
          -4.164247379186236,
          -4.205861805968412,
          -4.0919346742141665,
          -4.903231109767353,
          -4.3023065720047935,
          -3.162881648182516,
          -3.1236501138139117,
          -3.824028155508092,
          -7,
          -3.295312267721071,
          -5.203967952980513,
          -3.371756379183961,
          -3.387846514512132,
          -3.6130038000973417,
          -4.130759811444055,
          -2.391440502375696,
          -5.204201405238153,
          -3.136363119800208,
          -7,
          -7,
          -2.5810034007407334,
          -3.9777800733459263,
          -3.757515324077912,
          -4.902810319891709,
          -2.750820065686126,
          -3.648974961461483,
          -2.9500999337839797,
          -3.6098984156416383,
          -3.211525040366984,
          -4.165883436770777,
          -2.1393966074651254,
          -3.471398404213118,
          -2.952917948726597,
          -4.602065419975057,
          -7,
          -4.06370588053735,
          -3.436410636647131,
          -3.596256391478613,
          -3.3866347071139713,
          -4.505491850629844,
          -3.2946615846709246,
          -5.205615719952685,
          -4.504968079417868,
          -4.2496303979613295,
          -2.098553612524514,
          -4.204016825466072,
          -3.3395749783523323,
          -3.9762312662322707,
          -2.830921268729203,
          -2.003927878459433,
          -4.302130622081864,
          -4.02848720505384,
          -3.44255004631423,
          -4.206615421510249,
          -2.737610329426487,
          -3.649329448931539,
          -7,
          -3.564902672529205,
          -3.4410184153526147,
          -3.428615365459734,
          -3.498026608384322,
          -2.8406183683153254,
          -2.5345878810965172,
          -5.205234146214356,
          -3.6412209331126,
          -4.427177644001561,
          -2.7418512752940463,
          -3.137492068939977,
          -3.5665847855598543,
          -3.123051817937765,
          -5.2042502514611515,
          -4.728307779546336,
          -2.3524341039128713,
          -3.462277641003384,
          -7,
          -4.601913392200325,
          -2.7762914362240805,
          -7,
          -7,
          -5.203948945528531,
          -7,
          -7,
          -3.385473488379908,
          -3.6606072689262064,
          -2.8056237289922086,
          -3.4519689627723857,
          -4.603406927683195,
          -3.2011525290622598,
          -4.902989544778925,
          -4.727424670452742,
          -3.4280132393845557,
          -3.3291766074285367,
          -3.7433451092571,
          -7,
          -3.925843843077551,
          -4.001330700440545,
          -2.510585490654225,
          -4.601916107448749,
          -7,
          -3.977376568911182,
          -4.165341466825498,
          -4.602211967802297,
          -3.8642979806968483,
          -3.792184191580062,
          -4.063285095369489,
          -3.527670171118658,
          -3.906607064180874,
          -3.3591022499491756,
          -3.627352379022576,
          -4.125879592893269,
          -1.9437381050109197,
          -3.571177790153091,
          -5.203932652764692,
          -7,
          -4.16418245777542,
          -3.903616250068696,
          -4.3014478030652405,
          -4.726887425714068,
          -2.736238137552537,
          -4.505749433669425,
          -3.4126163507626406,
          -5.204014110472264,
          -3.1055471500473315,
          -1.4865801018867653,
          -3.7142729607632785,
          -3.0215603323961395,
          -3.082040302705653,
          -3.638410998646127,
          -3.4928302056786884,
          -3.845276037295602,
          -3.928896920921119,
          -4.030235296012245,
          -3.8090638646411574,
          -3.2894933946966205,
          -3.53268662951388,
          -3.6467586263847607,
          -7,
          -3.161360256128763,
          -4.429900248574898,
          -3.197568194186736,
          -7,
          -2.7381857702399692,
          -7,
          -2.9970677926694376,
          -3.727934167254398,
          -3.675495295123093,
          -3.7896132504920685,
          -4.205060838940893,
          -3.0995752157529437,
          -3.3571265672692596,
          -7,
          -3.0946269833383124,
          -2.2024603224747716,
          -2.724548052819,
          -7,
          -4.726770663461099,
          -4.301607765700107,
          -4.162664863178352,
          -4.3592661646067485,
          -4.72783935939594,
          -5.204193263666834,
          -4.360084662821042,
          -2.742829137742972,
          -3.2347809450498164,
          -2.721939123715305,
          -2.3822341420260598,
          -7,
          -4.602762437131735,
          -4.091163528124366,
          -4.6042503599312194,
          -4.601880807895053,
          -7,
          -3.6285153007690827,
          -3.8647806784858236,
          -4.90620570409175,
          -7,
          -5.203783273940963,
          -4.903244676848627,
          -4.426400098114251,
          -4.4256564708810275,
          -4.7270910057095,
          -3.62747366209953,
          -1.9912386295516902,
          -7,
          -4.726835836961581,
          -7,
          -4.727402976473511,
          -3.926678139475995,
          -3.7427982432584783,
          -5.203813153816388,
          -3.7740409138827307,
          -3.1856930439264346,
          -3.057809027363004,
          -3.8763595721890662,
          -2.6270794892290175,
          -4.207497029999842,
          -4.505133691971464,
          -7,
          -2.347039444540915,
          -3.3505575797661513,
          -2.8529254216064333,
          -4.427423892550001,
          -2.3695233431351217,
          -3.883545175194561,
          -4.359450596829359,
          -4.4265193941438925,
          -3.148867325157049,
          -3.2257047780485264,
          -3.0385943597739256,
          -2.970209473041643,
          -3.5306909461351617,
          -3.7297046213121874,
          -3.974936811989041,
          -4.249967037217522,
          -3.516152079177331,
          -2.8235547271190224,
          -3.3707570624663736,
          -5.203731658404463,
          -4.204616423121799,
          -3.7441040596897293,
          -4.505584055799225,
          -3.4076336627117665,
          -4.726751652680992,
          -3.3569867783872587,
          -2.8419588750133014,
          -3.6151701184636975,
          -3.5970768472929735,
          -3.5255576630059604,
          -2.0820854933794593,
          -3.319980017164956,
          -4.6022906490084505,
          -2.9332925631528446,
          -4.426001303137032,
          -3.2461873390876783,
          -3.4968365445930845,
          -3.4151053405015874,
          -2.41373889291492,
          -3.04028151976861,
          -2.982605136861189,
          -3.4672824476181416,
          -3.655231838648391,
          -3.6405324674013486,
          -1.6382611162285612,
          -2.735142095153427,
          -7,
          -7,
          -7,
          -3.3424779511482297,
          -3.1879780800921296,
          -4.6027976651019955,
          -4.2052937046204155,
          -3.6909635414210205,
          -4.204559483359148,
          -3.135868120615886,
          -4.125649312197302,
          -3.370650527907993,
          -5.205488565953269,
          -4.2518625412293325,
          -2.720876530902644,
          -4.603412339519877,
          -2.7437697389633215,
          -2.956061921646337,
          -2.2555795436938713,
          -4.506521267409151,
          -2.626150781218194,
          -2.2798193139542193,
          -3.09737827210023,
          -7,
          -4.302793446245299,
          -4.903412873454334,
          -3.1394628347923637,
          -3.289092947357841,
          -3.2034237103517693,
          -3.4087190190682533,
          -4.358935075058239,
          -7,
          -3.460948825893139,
          -5.204638112496441,
          -4.059165668942177,
          -4.001398346081105,
          -3.305645895440672,
          -4.5058144831135785,
          -2.0227185065721027,
          -4.601715133199268,
          -4.902905372603798,
          -2.419594993091023,
          -2.528231814320313,
          -2.8993636396151685,
          -4.368865735415223,
          -2.169999038533825,
          -2.408622637362252,
          -3.523543575296752,
          -2.536932840085164,
          -2.366764563371726,
          -3.3885567971144153,
          -4.213291918281081,
          -3.2807526808187015,
          -2.2392673332458615,
          -2.0688106133725332,
          -2.704124039236082,
          -3.068961297505777,
          -2.581341392791031,
          -2.415454189586277,
          -3.090424194174312,
          -3.3517842322607008,
          -3.4800948155844096,
          -1.8799368743581009,
          -2.3457069458605324,
          -2.727570543332238,
          -3.3783322773448266,
          -2.7890510200852203,
          -2.73148245387053,
          -3.043110966748345,
          -3.82833491324989,
          -2.687256167541895,
          -3.2143839279787567,
          -1.9673058820223024,
          -2.899413095561151,
          -3.05207305990422,
          -4.093887520508484,
          -3.140411729722199,
          -3.3358276770370354,
          -2.7937927043611674,
          -3.124519158023724,
          -3.1141125249955577,
          -4.251592260928416,
          -2.695688893192003,
          -1.3727607434870837,
          -3.09532291400805,
          -3.601826892720257,
          -2.9359963484480627,
          -4.606679571415898,
          -2.2745287875181255,
          -3.3590428498964116,
          -3.932217342027368,
          -2.753333878586034,
          -2.5149218317456623,
          -2.914332661311729,
          -4.4288526229295515,
          -3.0010773939545063,
          -4.178911575955362,
          -7,
          -4.617210094557434,
          -3.317723909793547,
          -3.800016123199396,
          -5.205902356214027,
          -1.4218568548007218,
          -1.8792359176358457,
          -1.8493349356858948,
          -7,
          -4.101744430958274,
          -5.2048359780172,
          -2.7962063793826166,
          -3.320687797220125,
          -2.2394401715727943,
          -2.577545294261374,
          -3.2718514891065444,
          -7,
          -2.5497663234514962,
          -3.3727419230221223,
          -2.6416882303329805,
          -3.912323043506921,
          -3.676733145302988,
          -4.178265177719533,
          -1.929307150190183,
          -2.8978606679033883,
          -7,
          -2.5813718616043118,
          -2.9282686696920193,
          -4.610327395866563,
          -2.0426176388850696,
          -5.204903719464446,
          -4.3680476847285785,
          -2.689705825691564,
          -3.3721825624561594,
          -4.602282510234337,
          -7,
          -7,
          -4.903165981876918,
          -3.4380436918998125,
          -2.61519069651607,
          -3.595813344772756,
          -2.714369682021485,
          -4.426272632057094,
          -3.243544879306084,
          -2.6864680842729807,
          -3.866700756042499,
          -3.8462537204442393,
          -4.602437120867181,
          -3.0495186327171995,
          -5.204136268393641,
          -2.3263950637972677,
          -3.1267167672610237,
          -4.4271099688460005,
          -3.595455892992471,
          -2.40236142856909,
          -3.8657848031269304,
          -3.026726887267514,
          -4.164517780650602,
          -4.426966462630075,
          -2.605872556477404,
          -4.506239774721532,
          -4.205504800451809,
          -4.093548291027968,
          -3.440522194608935,
          -7,
          -3.121923860479097,
          -4.425941588018896,
          -5.204366917427087,
          -2.638741521002334,
          -1.6682477198295125,
          -2.262693712352328,
          -7,
          -3.4104505028495264,
          -2.9235341423585184,
          -4.728781101494365,
          -3.384085811808576,
          -7,
          -3.6157828483192556,
          -2.764291683647891,
          -7,
          -5.2044021823641895,
          -3.828839741403645,
          -3.70163543360813,
          -3.1214698267373375,
          -4.163651902679467,
          -4.128108349103107,
          -3.844379916604807,
          -3.883012144086084,
          -3.5353857052762576,
          -3.0152362915297055,
          -3.0578897480168896,
          -7,
          -3.1986437435491863,
          -3.3477816552152717,
          -4.2538439565439745,
          -3.238693296822902,
          -4.603019806464783,
          -4.903366761511649,
          -3.007896027561071,
          -3.9778795468239343,
          -1.8005233458116274,
          -3.2055848656934796,
          -4.037046490078626,
          -3.458543426918113,
          -4.091266426750714,
          -2.8858714298613544,
          -4.125863341790067,
          -3.3316165762659744,
          -4.505838874143429,
          -3.536125759194601,
          -2.6967220860533225,
          -4.252399899119838,
          -4.902832048060113,
          -2.825265766924533,
          -2.186162785636252,
          -3.4975250381729923,
          -3.7316129367486814,
          -2.746423205073747,
          -3.7479579825589826,
          -3.324725548379901,
          -4.303352677683149,
          -2.7717052452427855,
          -3.63499934000661,
          -3.7594007119061725,
          -4.905258749576383,
          -7,
          -5.203856611783906,
          -3.0195483874768687,
          -4.210364007315791,
          -4.12653184328548,
          -3.8677727313159287,
          -2.453241420511788,
          -3.207844328838135,
          -2.515994425243755,
          -2.543278923231109,
          -3.6707016495286346,
          -3.3232815728385168,
          -4.426990834952875,
          -3.7021611731162283,
          -7,
          -3.259763720056213,
          -3.333876636650032,
          -2.9336224223562404,
          -7,
          -3.5082683903483165,
          -4.164669131964212,
          -2.6465741881944087,
          -4.029456830425565,
          -4.727698463777806,
          -7,
          -4.726784242080268,
          -7,
          -5.204084694795681,
          -4.903345060079677,
          -3.433932386948738,
          -3.976705922742223,
          -3.9775353253878825,
          -4.602911459019037,
          -7,
          -4.125188384168597,
          -4.00061029760018,
          -4.1263181429721,
          -4.904068760153015,
          -3.0879883443610066,
          -3.516654072656089,
          -2.6793469026880157,
          -3.510292623460062,
          -4.13552752600499,
          -4.0913747147621224,
          -7,
          -3.2336372538662697,
          -3.561421238043235,
          -7,
          -2.531785552707462,
          -3.862992822376717,
          -3.9265807069892746,
          -3.5487017862716375,
          -4.209871418668929,
          -3.746993680946003,
          -4.204152553520675,
          -4.125112419666765,
          -3.3052304166418587,
          -4.601967693943614,
          -3.6124924639062823,
          -3.4509024629823473,
          -4.3607205081851985,
          -5.203764258404371,
          -7,
          -7,
          -7,
          -7,
          -3.7075701760979363,
          -7,
          -3.770631127777807,
          -7,
          -7,
          -3.544292393875673,
          -7,
          -7,
          -3.707485011967474,
          -2.569958818096594,
          -2.97409281299623,
          -7,
          -7,
          -7,
          -7,
          -3.69539410829111,
          -3.215125121509055,
          -3.7845816348076653,
          -7,
          -3.3571722577230334,
          -3.232186318508937,
          -7,
          -7,
          -7,
          -7,
          -3.466274321789292,
          -7,
          -4.192573028326205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.876448786878341,
          -7,
          -7,
          -7,
          -2.952822892498763,
          -7,
          -7,
          -7,
          -7,
          -3.6459132750338443,
          -7,
          -7,
          -7,
          -3.4622482153549976,
          -3.7942091163464964,
          -3.0015453793164784,
          -7,
          -3.2512905066731097,
          -3.3298045221640695,
          -3.7259116322950483,
          -7,
          -3.859318465097116,
          -7,
          -7,
          -7,
          -7,
          -3.4363217001397333,
          -3.9121157290788537,
          -3.171593499578443,
          -7,
          -7,
          -7,
          -7,
          -2.8173449714419307,
          -7,
          -7,
          -2.853819845856763,
          -2.652091427213589,
          -7,
          -7,
          -7,
          -7,
          -4.0790002523038495,
          -2.9691495557176637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.997659371069136,
          -7,
          -7,
          -2.638726900999912,
          -3.1204093945560682,
          -2.872127124489488,
          -7,
          -7,
          -2.7721994219179718,
          -7,
          -3.360340916766332,
          -3.317070422532652,
          -3.4074758852912557,
          -1.7901067466271179,
          -3.7428036584691657,
          -7,
          -7,
          -4.1423894661188365,
          -7,
          -7,
          -7,
          -3.941561120236071,
          -3.753613695870938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8217099972983766,
          -3.901785145303599,
          -2.9874676395023214,
          -7,
          -2.92454895044925,
          -2.651911942666843,
          -7,
          -7,
          -7,
          -3.757796562527997,
          -7,
          -7,
          -3.930031614950973,
          -7,
          -2.8916170935913543,
          -3.387247411357324,
          -7,
          -7,
          -7,
          -3.966939163021113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3354005832177553,
          -3.992597696102038,
          -2.580273126424684,
          -2.711713520014632,
          -7,
          -3.0007593511047372,
          -7,
          -7,
          -7,
          -3.500840004617788,
          -3.747100931364986,
          -7,
          -7,
          -7,
          -3.0494727635847134,
          -7,
          -7,
          -2.6893771712719174,
          -3.1731133940968244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7281913985899466,
          -3.1937867917754756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.330118485571775,
          -7,
          -2.707480529182167,
          -3.7086191628552996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7845459740545224,
          -7,
          -3.765072201102792,
          -7,
          -3.6404317436833487,
          -7,
          -2.8114313662192414,
          -7,
          -2.950299932560933,
          -3.109646031090973,
          -1.8706163838969008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.763240757310025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.653333134379342,
          -3.7122261672192907,
          -7,
          -7,
          -7,
          -3.762978490867743,
          -7,
          -7,
          -7,
          -3.7896512087934098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6629749246538044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8016780590358934,
          -1.759048659216874,
          -3.7405995128111567,
          -7,
          -7,
          -7,
          -3.9230193850380344,
          -7,
          -2.382402216128515,
          -7,
          -4.446156448930393,
          -2.971275848738105,
          -7,
          -7,
          -7,
          -2.918248827749846,
          -3.0535585922132595,
          -7,
          -3.5786010117639133,
          -3.0812752795293337,
          -3.039017321997412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.822560336942692,
          -4.112068504268197,
          -7,
          -7,
          -7,
          -4.145932559175869,
          -2.4424441346454007,
          -2.9259992664561554,
          -3.334398912526967,
          -7,
          -3.2682658666003466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.829946695941636,
          -3.5615264639255204,
          -3.4724638966069894,
          -3.690373306916059,
          -7,
          -7,
          -3.7052648623174043,
          -7,
          -3.7207379770184255,
          -7,
          -7,
          -7,
          -3.8166389448984614,
          -2.942256150419465,
          -2.5262007685441783,
          -7,
          -7,
          -7,
          -3.739097446117475,
          -3.1665724186953366,
          -3.2555739938220456,
          -3.326022133992245,
          -3.739809599021359,
          -4.027553454050221,
          -3.781416261290161,
          -4.0178260380304245,
          -7,
          -7,
          -7,
          -7,
          -4.022758194236769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.860972511322973,
          -7,
          -7,
          -4.641751652976988,
          -7,
          -4.363499161478234,
          -7,
          -4.2714311165678955,
          -7,
          -4.079145053332749,
          -3.3819269306372273,
          -3.5826260327397415,
          -7,
          -7,
          -7,
          -7,
          -4.238547887681328,
          -4.629175057540406,
          -7,
          -4.712742273917355,
          -7,
          -4.181729284882683,
          -7,
          -7,
          -4.550675524721961,
          -7,
          -4.1081363805377995,
          -2.524790536255634,
          -7,
          -4.397627204021875,
          -7,
          -7,
          -3.9023972780121996,
          -7,
          -3.485303795444586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.090500533931496,
          -3.5122363800088334,
          -7,
          -4.1075576053544465,
          -4.04089709143117,
          -7,
          -3.9528408566757016,
          -3.8087172420492474,
          -3.5246557123577773,
          -3.2166590965381316,
          -3.8535156967569284,
          -7,
          -7,
          -3.6608609625459816,
          -3.3965148413899895,
          -7,
          -3.657315422696258,
          -3.3450206615421147,
          -7,
          -7,
          -4.146871903085739,
          -3.958277125547698,
          -7,
          -3.5054552343235024,
          -3.383240433663356,
          -4.1660840290700145,
          -7,
          -3.969509098596567,
          -7,
          -4.131242766886208,
          -7,
          -3.242146747175157,
          -3.5150786750759226,
          -7,
          -7,
          -3.928122625143642,
          -4.19728055812562,
          -3.968302789055736,
          -3.9271136119337604,
          -3.36384170456394,
          -3.557226403727186,
          -3.9218944709291024,
          -3.504396712847337,
          -7,
          -3.5334283871579544,
          -4.976826661613164,
          -3.428998202825899,
          -4.40186369436619,
          -7,
          -3.9217384836845985,
          -4.051056001837605,
          -3.6844862921887342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.207313717589319,
          -7,
          -2.8163517934364455,
          -7,
          -7,
          -4.121247880500199,
          -7,
          -7,
          -7,
          -3.398764385277643,
          -7,
          -4.826974868372878,
          -3.454895651714539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.018367578387845,
          -7,
          -7,
          -7,
          -3.8915374576725643,
          -7,
          -3.5656412436434057,
          -7,
          -7,
          -7,
          -4.632656340381764,
          -3.81813348070119,
          -7,
          -7,
          -3.2714100837230893,
          -7,
          -3.8664054983780547,
          -7,
          -7,
          -2.7023130166283007,
          -7,
          -7,
          -7,
          -3.7800291273373383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8003733548913496,
          -2.9184928935246375,
          -7,
          -7,
          -3.8986154974161855,
          -3.8874485002499535,
          -7,
          -3.2237790380327067,
          -7,
          -7,
          -7,
          -7,
          -3.441804303701005,
          -7,
          -3.445085022719354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.430478187932044,
          -7,
          -7,
          -3.4251672627392926,
          -2.991392228018147,
          -7,
          -7,
          -3.7896512087934098,
          -7,
          -7,
          -7,
          -3.705007959333336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4367349657907065,
          -7,
          -3.446148675696183,
          -3.560683591907453,
          -3.40655153438964,
          -7,
          -7,
          -4.29700503526225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9465013905695874,
          -3.355307817103565,
          -7,
          -7,
          -3.7944880466591697,
          -2.64132153910541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4301557119700194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.254608492283572,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.1447156946549801,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.726475708697577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.563225892089558,
          -7,
          -7,
          -7,
          -7,
          -3.237292337567459,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.140504900519705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.906889679198268,
          -7,
          -3.5879914264312434,
          -3.296592070557359,
          -7,
          -2.885361220031512,
          -3.394976719554564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.232487866352986,
          -7,
          -7,
          -7,
          -4.823484010467402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.373095987078727,
          -2.812244696800369,
          -7,
          -7,
          -7,
          -4.078837293416897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.639486489268586,
          -4.165125569088229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7134905430939424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6444385894678386,
          -7,
          -3.6930859608440105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.14674801363064,
          -7,
          -7,
          -7,
          -3.5598468007393165,
          -7,
          -7,
          -4.150842369489412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.148762632626255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.030194785356751,
          -7,
          -3.601081727784023,
          -7,
          -3.336759833698248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3636119798921444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.67797175281074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0599418880619544,
          -3.411788004543869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1309927524950965,
          -7,
          -2.505149978319906,
          -3.978294669778629,
          -7,
          -7,
          -7,
          -3.2041199826559246,
          -7,
          -3.4634450317704277,
          -7,
          -7,
          -7,
          -7,
          -5.828223449760503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.855282864274575,
          -7,
          -5.176164793362221,
          -7,
          -7,
          -5.017446557593457,
          -7,
          -7,
          -2.951337518795918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.897008193182832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.064951905427961,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.961273931114606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.487524400587733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604722722859099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9211139738366807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.045708195339422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.326335860928752,
          -7,
          -7,
          -4.298853076409706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.329058719264225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.903410161122643,
          -3.707485011967474,
          -1.1447156946549801,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.357076839842412,
          -4.425654142623775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3882670215945305,
          -7,
          -7,
          -7,
          -7,
          -3.2833012287035497,
          -7,
          -3.472317546316842,
          -7,
          -7,
          -7,
          -5.1411109856678925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2543385727441954,
          -7,
          -3.054065601462962,
          -2.7866094726486597,
          -7,
          -2.9827233876685453,
          -3.4274861090957858,
          -7,
          -7,
          -7,
          -2.374748346010104,
          -7,
          -7,
          -4.449401252996221,
          -7,
          -7,
          -2.9093777108309906,
          -7,
          -2.6450126734667045,
          -7,
          -7,
          -7,
          -4.280012209042916,
          -7,
          -7,
          -7,
          -2.7944880466591697,
          -3.3941013020400446,
          -3.295567099962479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5312003683301665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3664229572259727,
          -3.574031267727719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3672161041609696,
          -7,
          -7,
          -3.146128035678238,
          -3.144055027055373,
          -3.2000292665537704,
          -7,
          -2.791690649020118,
          -3.0870712059065353,
          -7,
          -3.9061913308567564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5494120098036346,
          -3.5685830315081475,
          -4.753812783564702,
          -7,
          -7,
          -7,
          -7,
          -2.3078524552347384,
          -7,
          -7,
          -7,
          -7,
          -3.9967523936992766,
          -3.4604467838807205,
          -7,
          -7,
          -4.065318237803737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1122697684172707,
          -7,
          -7,
          -7,
          -2.097604328874411,
          -7,
          -3.12515582958053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2027606873931997,
          -3.0806264869218056,
          -3.3600250891893975,
          -2.94423584379348,
          -3.571242850560224,
          -3.207095540419218,
          -2.8981764834976764,
          -3.719670351228767,
          -7,
          -7,
          -7,
          -7,
          -2.815577748324267,
          -7,
          -7,
          -3.6173149332982937,
          -7,
          -7,
          -7,
          -7,
          -3.645549406428706,
          -7,
          -7,
          -2.875292825371008,
          -7,
          -7,
          -3.185258765296585,
          -7,
          -7,
          -7,
          -3.3203540328176717,
          -7,
          -2.701088048570016,
          -7,
          -7,
          -7,
          -3.6412162335803266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9068735347220707,
          -7,
          -7,
          -5.712897919192247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1975562131535367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.942142043219304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.976808337338066,
          -7,
          -7,
          -3.473924693416157,
          -3.3322364154914434,
          -7,
          -2.146128035678238,
          -7,
          -7,
          -3.2920344359947364,
          -3.833835315303057,
          -7,
          -7,
          -7,
          -7,
          -2.3229081045244717,
          -3.6866809474663245,
          -7,
          -3.9561684304753633,
          -7,
          -7,
          -3.1702617153949575,
          -7,
          -2.1921956258464497,
          -2.649010152542322,
          -2.965358514344786,
          -3.1122697684172707,
          -7,
          -7,
          -7,
          -2.7708520116421442,
          -2.9028184680822537,
          -7,
          -7,
          -3.923606643017459,
          -7,
          -3.420120848085703,
          -3.177824971864682,
          -7,
          -3.1879717016473963,
          -7,
          -4.2837533833325265,
          -7,
          -2.5259082158339554,
          -3.576226137449605,
          -3.253580289562183,
          -7,
          -3.4913616938342726,
          -7,
          -7,
          -7,
          -7,
          -5.527316631951896,
          -3.563421751494202,
          -7,
          -7,
          -7,
          -3.747489492258673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9906939606797516,
          -7,
          -7,
          -7,
          -7,
          -4.555408865558874,
          -4.08441539833186,
          -4.875240734689373,
          -7,
          -7,
          -7,
          -3.7680458141024165,
          -7,
          -7,
          -7,
          -3.5237464668115646,
          -3.475598557756169,
          -7,
          -3.301897717195208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.103201446615745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.371104821931509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530571059737016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.764635598561476,
          -7,
          -7,
          -7,
          -7,
          -4.758068714620923,
          -7,
          -7,
          -7,
          -4.962189329010532,
          -3.8343207708442053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.186764277238947,
          -7,
          -7,
          -7,
          -7,
          -4.954980183213358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.340949506018236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.60680040755567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.703348706939536,
          -7,
          -7,
          -4.340166394886077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.653501946962933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.208306962353663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6170073345345095,
          -7,
          -7,
          -7,
          -3.453725936962835,
          -7,
          -3.446381812222442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1670217957902564,
          -3.670802284260944,
          -7,
          -7,
          -3.0791812460476247,
          -7,
          -3.245018870737753,
          -3.9807303765359454,
          -7,
          -7,
          -3.225180008177683,
          -3.499687082618404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.855640280890145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.327941009681113,
          -7,
          -7,
          -4.303044784243365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.243955301978741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6318494621598183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.393083602089456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.979092900638326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.195733648273212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.196231470442875,
          -7,
          -3.886913533398546,
          -7,
          -4.193430723726846,
          -3.745777217889759,
          -3.612836816232258,
          -2.8915374576725643,
          -2.2521355991800753,
          -3.0331903612722177,
          -2.569958818096594,
          -7,
          -7,
          -7,
          -2.6608794225039234,
          -3.169941478574325,
          -3.901676231326376,
          -4.187266838179294,
          -4.192149125018534,
          -3.712256751122368,
          -1.8066426759737768,
          -3.2092468487533736,
          -7,
          -3.3381243371969007,
          -2.3662277730015964,
          -2.952038646332828,
          -3.7196626830180466,
          -7,
          -2.650435343270571,
          -2.83248230070942,
          -3.596652066132439,
          -2.97716286346543,
          -7,
          -3.890197386210029,
          -7,
          -4.199261380177078,
          -3.9290611240847655,
          -7,
          -2.7494705959901213,
          -3.1883377790407526,
          -3.005861561054057,
          -3.7207379770184255,
          -2.601769985902066,
          -7,
          -2.8190775863707995,
          -2.5502793235946637,
          -2.82991992647253,
          -2.794263116841679,
          -2.873763335954439,
          -3.906846625927991,
          -4.259426626587052,
          -7,
          -3.4452668065216505,
          -2.2640044259790937,
          -3.772346159552627,
          -2.3669753615187523,
          -3.2119826034646293,
          -3.59728372736143,
          -3.426484151000204,
          -2.9694159123539814,
          -7,
          -7,
          -3.731293226228819,
          -7,
          -3.1236611191470076,
          -3.2294956795406073,
          -2.714884975155155,
          -4.192567453336546,
          -3.8891615849113204,
          -3.2427649777520964,
          -7,
          -3.0075557586251014,
          -2.6703816337480153,
          -7,
          -3.132727533383866,
          -2.8010458579848145,
          -4.190891716922169,
          -3.759592308645975,
          -7,
          -7,
          -2.971198510213833,
          -4.2315460439969215,
          -3.5949999167322457,
          -7,
          -3.7721994219179718,
          -7,
          -3.2157336728643675,
          -1.150115877528334,
          -3.924486043733915,
          -7,
          -1.3374695167229265,
          -1.8315401537011429,
          -1.6027772408417797,
          -3.0434184210606885,
          -7,
          -2.5538087480629397,
          -2.9012247250756964,
          -1.6942935974982078,
          -1.3299849899596918,
          -2.830839617318953,
          -1.8453436816960902,
          -7,
          -7,
          -7,
          -3.2728587109917084,
          -3.8884041677370464,
          -2.983726493512128,
          -7,
          -2.9613532832330054,
          -2.5874078631232282,
          -4.201670179646581,
          -4.1955398965493185,
          -4.211921084308509,
          -2.7369804812535694,
          -2.5305449022298983,
          -4.2073111514361345,
          -7,
          -2.1637883370283273,
          -2.394191291136409,
          -1.335997257806787,
          -4.207768969739924,
          -2.710394603858482,
          -1.419974623911139,
          -4.201424437579911,
          -3.3860230915330054,
          -4.202651759757338,
          -3.1053149523630434,
          -3.512924418964968,
          -3.072935793491505,
          -3.19959521190802,
          -3.8903092168999485,
          -7,
          -2.4645947374430204,
          -2.6186803992389205,
          -7,
          -7,
          -3.1678397191996104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8769306614261745,
          -3.266573761870049,
          -0.8831353250428914,
          -2.6516083680914355,
          -2.493635707293855,
          -2.7496590320949,
          -7,
          -7,
          -4.213862930386819,
          -7,
          -2.6622151268225136,
          -7,
          -7,
          -3.425995874829204,
          -2.558147760826049,
          -4.188731671445743,
          -7,
          -3.449298370086198,
          -3.371437317404101,
          -4.1917862475822,
          -3.1753800132708143,
          -4.221753194318869,
          -4.242491735011311,
          -3.7623033632877685,
          -7,
          -3.2382005601347457,
          -4.222170008681765,
          -3.598051468295839,
          -2.8492267708776566,
          -7,
          -7,
          -7,
          -3.9043097257675417,
          -7,
          -3.8936508169859634,
          -4.1890128046002415,
          -3.5230772345351196,
          -7,
          -3.3857211511236223,
          -7,
          -2.37824644689886,
          -2.631182766011284,
          -7,
          -3.5169758348685476,
          -3.3713911526969724,
          -4.217036258627626,
          -3.3355581880658614,
          -2.627050579278049,
          -3.3807279514476365,
          -3.61084640142234,
          -7,
          -2.921754311031378,
          -4.199398602359617,
          -2.929685418552622,
          -7,
          -2.317678541396253,
          -2.90605270739008,
          -2.206397870813696,
          -7,
          -3.5837168320118957,
          -3.8866598978612026,
          -7,
          -7,
          -3.743169930945493,
          -7,
          -4.200166246363107,
          -3.010087846998524,
          -3.2353011403199905,
          -7,
          -2.917230346723255,
          -4.099139449766182,
          -3.499215621220299,
          -7,
          -4.187802638718419,
          -7,
          -4.189967298351272,
          -7,
          -7,
          -7,
          -7,
          -3.6652056284346006,
          -2.741082046819302,
          -3.0565084720296545,
          -2.8584954008567345,
          -7,
          -3.498227823151784,
          -2.784452693623172,
          -3.9112375328849565,
          -7,
          -4.1916465985627305,
          -3.631063087193119,
          -3.920905604164024,
          -4.22125770712091,
          -7,
          -7,
          -4.191702463559194,
          -7,
          -7,
          -7,
          -7,
          -3.8648880856896426,
          -7,
          -7,
          -7,
          -4.194320045303423,
          -3.903307079964174,
          -7,
          -7,
          -3.3591305026927025,
          -7,
          -7,
          -2.341132428405558,
          -2.9702053364856873,
          -7,
          -7,
          -7,
          -3.007064656378332,
          -3.3857339134175715,
          -2.4931249127957797,
          -7,
          -3.277550278524911,
          -3.304355866992308,
          -3.291313338918062,
          -3.894897317933243,
          -2.96201837643487,
          -0.9223282460529392,
          -2.3530556915282013,
          -2.414973347970818,
          -3.2983369335263792,
          -3.0719345821481365,
          -2.9240887642418034,
          -4.191423066687808,
          -3.612863293566935,
          -3.6492374723496073,
          -3.1672680922194196,
          -7,
          -4.195650622404186,
          -4.2155318184912955,
          -7,
          -7,
          -7,
          -3.2339854787802116,
          -3.06850126027733,
          -3.4350210586631755,
          -3.7707293122538714,
          -4.219427334507682,
          -2.5265077110153857,
          -1.9572528896889112,
          -4.192595327569212,
          -2.9320930828571,
          -7,
          -3.905175016099293,
          -2.8113207147872394,
          -7,
          -3.778078861937455,
          -3.4139221340565546,
          -3.282045059431361,
          -3.2274753434823706,
          -3.417424239697793,
          -3.2368646223173876,
          -2.49895398466317,
          -2.4493709766959877,
          -3.7106532004443227,
          -7,
          -7,
          -1.573212741349853,
          -2.699837725867246,
          -4.197776611271387,
          -7,
          -3.039166163427521,
          -3.893983567211847,
          -3.386753683729159,
          -4.197941836490006,
          -2.4220862084095693,
          -3.5047969706245556,
          -3.36514019614747,
          -3.37823887280976,
          -3.2493070873114163,
          -2.767396572466008,
          -1.8217659201065737,
          -3.2580957138341553,
          -3.9031442704095385,
          -3.7234556720351857,
          -3.2130116859330546,
          -2.4665961406123937,
          -7,
          -3.509121840939676,
          -3.7161981756548146,
          -3.419625360887743,
          -2.859676507874828,
          -2.3430729846351075,
          -3.0854944484283413,
          -4.189490313699367,
          -7,
          -3.2001288925178257,
          -3.8942883644490323,
          -7,
          -4.2050960475784835,
          -3.588226874130211,
          -4.197087495449889,
          -2.5474390404359823,
          -7,
          -7,
          -4.434065661248002,
          -3.91551122358829,
          -4.225348056287909,
          -3.6804261708581456,
          -3.3314730127606,
          -3.4720359647608183,
          -3.4490153163477864,
          -2.3193500861082983,
          -3.088514404450885,
          -3.68897123937068,
          -4.276989989368231,
          -3.067467630566799,
          -3.5725295541760693,
          -3.7362105259869303,
          -3.4942855831558868,
          -7,
          -3.67913426070467,
          -3.8477620928900054,
          -3.7109462200485273,
          -4.24896585586667,
          -7,
          -3.8338597780951167,
          -3.625042219271894,
          -2.8828712516830937,
          -2.4391431421511482,
          -4.560408824046945,
          -3.4010485392138086,
          -3.1383170547713606,
          -7,
          -2.6216749415481964,
          -4.467696879027591,
          -2.745207280286089,
          -3.7781633139517035,
          -3.70661822733253,
          -7,
          -3.5291093917613616,
          -3.57362573693412,
          -3.079613314908311,
          -3.4390167283875126,
          -2.6328153576642506,
          -3.508691286860763,
          -2.944623653966665,
          -3.2730178163003028,
          -3.0755277528968996,
          -2.675062643529782,
          -2.7872683035008583,
          -2.484731884687293,
          -1.7277239847974963,
          -3.247640144480507,
          -4.256958152560932,
          -4.027104865879351,
          -2.5315935346979557,
          -2.3901629165142837,
          -4.219217657022907,
          -2.3926348919812734,
          -1.7606681875250838,
          -7,
          -2.5452658709667757,
          -3.8078843976025314,
          -7,
          -7,
          -2.870245998917889,
          -1.9471842971207132,
          -3.5514566369878167,
          -7,
          -3.996314618870713,
          -7,
          -2.9311890460376633,
          -7,
          -3.2255612545205037,
          -2.8602084679303394,
          -4.497758718287268,
          -3.3437742207570813,
          -3.5553484184305875,
          -3.104207672494023,
          -3.3596170445871087,
          -3.323366704864766,
          -2.3920825172342264,
          -2.6195434403670323,
          -3.09770144457668,
          -1.8531491656109444,
          -3.6024127123210015,
          -2.5095342818699766,
          -3.000442341412527,
          -2.396175776800113,
          -3.362579456941744,
          -7,
          -2.8118984338735538,
          -2.605493791188096,
          -3.4260731174384857,
          -7,
          -4.1886754229698315,
          -7,
          -7,
          -4.303606390634642,
          -1.8580870827174711,
          -3.3327918116376987,
          -2.1938236640698334,
          -7,
          -3.749633267880381,
          -3.010535512583051,
          -3.939119717648487,
          -3.2748503200166645,
          -3.893012332222442,
          -3.409129696282029,
          -7,
          -3.2986515788116426,
          -2.787529031094406,
          -3.9008857870767155,
          -7,
          -4.452292561617729,
          -3.9305160483329398,
          -3.060453411515471,
          -7,
          -7,
          -4.321038892726055,
          -3.9003124969837266,
          -4.204635401383848,
          -3.525122584158249,
          -2.389764533517935,
          -7,
          -3.225343748174189,
          -7,
          -7,
          -4.133794300604513,
          -3.147623242121687,
          -2.9084222715130106,
          -7,
          -7,
          -2.4010297608718005,
          -7,
          -3.020726778628466,
          -7,
          -3.4410139714466967,
          -2.183471294547756,
          -7,
          -7,
          -4.239624765246138,
          -3.138697331979808,
          -3.2952591364816795,
          -4.200056665972214,
          -3.9212181211949506,
          -3.1694072252385252,
          -4.2024883170600935,
          -3.1840716740489867,
          -2.5138565817652143,
          -4.008685319195168,
          -7,
          -2.832910851172597,
          -2.861653870213911,
          -7,
          -3.507105924208658,
          -7,
          -7,
          -4.358410786206337,
          -3.630275285757692,
          -2.4931434135012362,
          -2.971666401356065,
          -3.0447011267454616,
          -7,
          -7,
          -4.041412425367856,
          -7,
          -3.8425052294359774,
          -7,
          -3.056218581272306,
          -2.8356905714924254,
          -4.215848976111454,
          -7,
          -2.7801320724351024,
          -2.252289842346699,
          -2.9375634800593664,
          -3.9358849679635246,
          -3.14752792782225,
          -3.5527168738324733,
          -3.531095546870028,
          -3.171912521004568,
          -3.087460275326437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0299786646845117,
          -4.250078287979645,
          -2.9549924939289824,
          -7,
          -3.866877814337499,
          -3.119793994782099,
          -3.989627770745151,
          -3.017671538505329,
          -7,
          -3.181635741814027,
          -7,
          -2.621943546842604,
          -3.2500205694119897,
          -4.29664325564288,
          -4.188112537165025,
          -3.1092149901535073,
          -3.033396946358147,
          -2.8582308632790943,
          -4.205339721431523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6289812102321743,
          -7,
          -3.1873155746437476,
          -7,
          -7,
          -7,
          -4.197142664972563,
          -4.2046896204203605,
          -7,
          -3.3370347431766225,
          -4.219977256744623,
          -3.744574596327337,
          -7,
          -7,
          -7,
          -7,
          -3.962984584316997,
          -4.20013885385738,
          -7,
          -3.286419041860382,
          -3.425968732272281,
          -3.5042261205990135,
          -3.9615397375535686,
          -7,
          -3.9419584165308135,
          -7,
          -7,
          -4.2356041893398375,
          -7,
          -3.9880235619286597,
          -3.7424632714945925,
          -7,
          -7,
          -7,
          -7,
          -3.903524064471262,
          -3.4268906288777257,
          -3.732608173296543,
          -2.5197775266927613,
          -2.737782385855657,
          -3.5108398014493605,
          -7,
          -2.897545365515436,
          -2.97409281299623,
          -7,
          -7,
          -2.6608794225039234,
          -7,
          -2.7489886652716113,
          -3.440410511262982,
          -7,
          -7,
          -3.205556205693917,
          -2.0630074503233264,
          -2.847516574105306,
          -7,
          -2.4160566473150036,
          -2.4416658812045307,
          -3.4456820268526793,
          -3.9120891431474747,
          -4.20441845752325,
          -2.6655316197359236,
          -2.906335041805091,
          -7,
          -2.9848158340017705,
          -3.524915147539867,
          -4.207768969739924,
          -7,
          -4.215452492883251,
          -3.341805346699918,
          -4.21133416373255,
          -3.315737167205999,
          -4.205420915676343,
          -3.2973470478364564,
          -3.2137302038548414,
          -2.6366946782993006,
          -3.9085654363368745,
          -3.915610862661467,
          -2.7287963375777684,
          -3.022222104507706,
          -2.377587097885457,
          -3.9122752104988123,
          -3.746582308802873,
          -4.2735568135298365,
          -3.4497868469857735,
          -2.465231573252902,
          -2.4714411235207603,
          -3.7867987283361098,
          -2.128656953740491,
          -2.832169487537022,
          -3.7384634394619525,
          -3.044069150468914,
          -2.7997919620140497,
          -3.619771386161673,
          -3.6218510955443124,
          -4.224377652161807,
          -7,
          -3.1049071253508416,
          -4.285107029566812,
          -2.8770534434074846,
          -3.7317767307737038,
          -3.7295427422712732,
          -2.9346907871554375,
          -7,
          -3.145341457592178,
          -2.8993169979180546,
          -7,
          -2.7689959478018795,
          -2.3710561097335447,
          -4.207391977978488,
          -3.074913914437954,
          -7,
          -7,
          -2.6629277397598625,
          -2.923392065156988,
          -3.5143086256567755,
          -7,
          -4.2638726768652235,
          -3.617576919481001,
          -3.229937685907934,
          -2.917916297847717,
          -3.094046659341039,
          -7,
          -2.171377928374108,
          -2.65452031968575,
          -2.3707485342584267,
          -3.9057149483897664,
          -7,
          -3.783713057452657,
          -3.197881761865032,
          -3.4097399533150314,
          -3.3336263742392354,
          -3.732956369575625,
          -2.7230009671305515,
          -3.6190150252837587,
          -7,
          -7,
          -2.7731244371386063,
          -7,
          -2.776095557782467,
          -3.190306225606168,
          -2.6832887096400997,
          -2.5072584774547875,
          -3.103198285631444,
          -3.2571984261393445,
          -3.528479616133823,
          -3.532066094810552,
          -2.0087668938960634,
          -3.4447992086373675,
          -7,
          -3.6468691423908055,
          -4.280760426326267,
          -2.954900033383096,
          -4.22365166718718,
          -2.7116213795637347,
          -2.081756055581979,
          -3.916453948549925,
          -3.7501611290217176,
          -4.218719266900493,
          -2.929552358303545,
          -3.3824287449229447,
          -2.9622272313500853,
          -3.0616298507383837,
          -4.207876621591972,
          -3.9184497424011577,
          -2.4168746316798377,
          -2.54176757633544,
          -7,
          -3.9042014431560217,
          -2.658841573383887,
          -7,
          -4.2028968085295295,
          -7,
          -3.5089335260500327,
          -4.204608289327036,
          -3.0966948805607766,
          -3.0899258806453944,
          -2.7023867192148066,
          -2.145438131669925,
          -4.219951085755317,
          -3.1599617587551454,
          -7,
          -3.5117229764819804,
          -3.928447063209182,
          -3.087652374729733,
          -3.0047902055826565,
          -7,
          -4.212267528548938,
          -3.5212427203704633,
          -2.826118013932333,
          -7,
          -7,
          -3.1631613749770184,
          -3.387008252600401,
          -7,
          -2.6398439122942654,
          -3.2366883817646155,
          -3.3537479789120974,
          -2.7085908451503435,
          -4.241297387109993,
          -2.5836709872171713,
          -3.1956481062209656,
          -3.915347062324192,
          -2.437419981594704,
          -4.214022148700433,
          -7,
          -7,
          -3.9202798946329485,
          -4.212799980625567,
          -4.211093831058964,
          -7,
          -2.724621710695205,
          -3.309257450996068,
          -3.1412364934229786,
          -7,
          -3.0876979237245203,
          -2.493208108796074,
          -3.9218944709291024,
          -3.2665523906877056,
          -3.173970294769197,
          -3.5334161417958905,
          -3.2119210843085093,
          -2.9335632068213493,
          -2.961720762515049,
          -3.2282976764748628,
          -3.332211153328047,
          -2.9747309448027197,
          -3.9145018228273143,
          -3.1588146467242266,
          -7,
          -2.8319408361283087,
          -2.8816079125422824,
          -2.810023828472548,
          -4.2095418220166,
          -2.0507824102259415,
          -7,
          -2.5335752742031707,
          -4.217325990227112,
          -2.3999280965143184,
          -3.212054364801163,
          -2.7835859964564595,
          -2.7789983320136287,
          -3.0458117739782704,
          -7,
          -2.9532521547868504,
          -3.679927320565639,
          -3.2095724571036435,
          -7,
          -7,
          -3.9115837009810757,
          -3.905418068702542,
          -7,
          -3.9138932892309164,
          -3.906227263052359,
          -4.217352319881362,
          -3.4721162341073866,
          -2.824103381054613,
          -2.7907641378340196,
          -2.811792891551971,
          -4.203168922875464,
          -3.7364496237349565,
          -3.5177499628542592,
          -2.562964867002593,
          -4.204960614115603,
          -3.907034952483417,
          -3.168546586862098,
          -2.935381292079985,
          -3.9355828325357876,
          -7,
          -7,
          -3.5089873386369184,
          -7,
          -7,
          -7,
          -3.761451706976967,
          -2.872629130512553,
          -4.203957091681244,
          -3.9039847969050228,
          -7,
          -7,
          -3.6181788886064417,
          -3.7414142504968653,
          -4.203522416822585,
          -3.743326810350656,
          -2.8458461788416503,
          -3.199805024539831,
          -2.2330773742707466,
          -2.9459016787990913,
          -3.336059277866349,
          -7,
          -7,
          -2.772453976103078,
          -2.94423584379348,
          -1.5055301535015506,
          -3.743875442427706,
          -2.4444825170747544,
          -3.5245259366263757,
          -3.131378035763099,
          -3.513111011656089,
          -2.0567308621182074,
          -2.6785390710610772,
          -2.1914367737841034,
          -2.574872720123483,
          -3.4485324127444223,
          -3.087451821000778,
          -3.441433275830611,
          -4.2079035303860515,
          -3.628491104967123,
          -3.487444772703948,
          -3.0566905084110543,
          -7,
          -3.512791089371343,
          -2.8148876006841723,
          -4.211093831058964,
          -2.6672762205459564,
          -3.7269987279362624,
          -3.2947600654704363,
          -2.9824159737447586,
          -2.812861957804769,
          -3.057618564696613,
          -3.1551588415675598,
          -2.7643838804771876,
          -2.7339061042946105,
          -3.7318035763606017,
          -2.611173299091653,
          -3.7299473267944347,
          -3.7449706317345974,
          -2.3712030652454543,
          -3.9410142437055695,
          -3.1863381979963608,
          -3.0422511354113118,
          -2.9927944356352274,
          -3.2884728005997825,
          -2.7983743766815614,
          -2.5253626759396286,
          -2.814993463420426,
          -2.7164586585273547,
          -4.204499824171151,
          -7,
          -4.2028968085295295,
          -2.7131420990517308,
          -2.8311192397649134,
          -7,
          -3.6163704722912695,
          -3.0818991280636494,
          -2.955233285577666,
          -2.563629384689655,
          -3.368764890372562,
          -2.57861798915832,
          -3.918921090091336,
          -2.995067118019622,
          -3.2532498684446467,
          -4.220003426156936,
          -2.4505140363342623,
          -2.276956275912762,
          -3.0483957996741426,
          -3.9191565722392943,
          -3.3374392932692314,
          -2.7044231927112703,
          -2.4434966621063214,
          -7,
          -3.3207173506008356,
          -4.209836595069655,
          -3.5005794923633378,
          -2.625877098398814,
          -2.523767438609714,
          -3.0705304036403067,
          -3.427621331714776,
          -7,
          -3.302090308986348,
          -4.211707750406687,
          -3.9177155165594932,
          -3.6188583722285905,
          -3.0446268544430195,
          -7,
          -2.3823865369984354,
          -7,
          -4.204798038190855,
          -3.3971338420470936,
          -3.572104523139882,
          -3.755824058025565,
          -3.2163638637641165,
          -3.4118333045591585,
          -3.362160803877537,
          -2.964975790327557,
          -2.324210088295366,
          -2.402800038634579,
          -2.9827929081556324,
          -3.989494312772709,
          -3.273488627403873,
          -3.4001860878367687,
          -3.458501874686394,
          -2.988648125235751,
          -3.1514523585967154,
          -3.0642984967722686,
          -3.2801930003350512,
          -4.119024820114783,
          -3.477868562996478,
          -4.285782273779395,
          -3.274435639233948,
          -3.0166535452370566,
          -3.0714962638675525,
          -2.9454839722770996,
          -3.8684680990209865,
          -3.463381000147473,
          -3.313389092794885,
          -3.94875518016827,
          -2.787437245245736,
          -3.476237290271068,
          -3.0918668725187803,
          -3.387199929316944,
          -3.590089133690572,
          -4.242740144605627,
          -3.742866469979114,
          -3.58508455410005,
          -3.4662347397183657,
          -3.187675798317812,
          -2.393888158192224,
          -3.9226735678585545,
          -3.0952460874520806,
          -3.2940448558627553,
          -3.2867557767759927,
          -1.9735918316724699,
          -2.719922888331037,
          -3.5514499979728753,
          -2.1651070250386395,
          -3.450112193286101,
          -3.1566656185163415,
          -2.5055245577766834,
          -2.65590723100227,
          -2.693685737345204,
          -7,
          -2.7334816953436976,
          -3.1694392989789413,
          -4.208011148892835,
          -3.0585259150851116,
          -3.4786552765992944,
          -3.828058082844378,
          -4.223988882570092,
          -2.930692472486093,
          -2.6543763807785092,
          -3.4291582429146765,
          -3.9103308634911365,
          -3.465000231841943,
          -3.7364230638180045,
          -2.9029254503421624,
          -4.032638903912429,
          -3.3777235917236528,
          -2.8043771978112435,
          -3.602697393370634,
          -7,
          -3.0305044767258296,
          -3.1237699989926178,
          -3.1409591869267732,
          -3.446159780273893,
          -2.7703473589832392,
          -2.2289494568369124,
          -2.631775727952187,
          -2.8006323498354555,
          -4.220631019448092,
          -2.502507448197351,
          -2.839021836222007,
          -2.5992916070757954,
          -3.140734536805062,
          -7,
          -3.2095373542191825,
          -3.085569767549475,
          -3.4013266748944875,
          -7,
          -4.205258512004059,
          -4.203168922875464,
          -7,
          -4.015317833069116,
          -2.0874794254002533,
          -3.0462756204011914,
          -1.961018183415195,
          -7,
          -3.7648483571934106,
          -2.4221985394696524,
          -3.213082882645646,
          -3.545455567836917,
          -4.210479042645248,
          -2.5824559315131506,
          -7,
          -2.487563118856403,
          -2.8153341918009738,
          -3.5188822759238745,
          -7,
          -3.9842271789283203,
          -3.4012527964419994,
          -3.526382360022874,
          -7,
          -2.9369632542966944,
          -3.4299540428315436,
          -7,
          -3.375219296154107,
          -2.6695932692069277,
          -2.9533684457836418,
          -7,
          -2.787511076846687,
          -7,
          -3.1671024172716122,
          -3.418135498425232,
          -2.841300312661918,
          -2.398270231684452,
          -7,
          -3.9618006391916785,
          -2.3759079631553948,
          -4.224092588494267,
          -2.8501747908446484,
          -7,
          -3.75767433350098,
          -1.8582697748506578,
          -7,
          -4.209380952346196,
          -4.254403046390677,
          -3.2793119832751985,
          -3.308286888629105,
          -4.216218700837137,
          -3.1231226002485672,
          -3.0802914129703645,
          -7,
          -3.0944461713401465,
          -2.2448344222145216,
          -3.649042634086176,
          -7,
          -2.7338160978899246,
          -3.128099110367532,
          -4.244895333691861,
          -2.094393478993324,
          -7,
          -7,
          -3.223087821731905,
          -2.8313035974632434,
          -2.189266777664425,
          -2.8666181041282894,
          -2.6856969636672376,
          -3.7574466429160234,
          -4.217931168785781,
          -3.8769871844277386,
          -7,
          -3.4286611380324996,
          -3.7363699391106717,
          -3.133489777256199,
          -2.439632448459834,
          -3.5322701446090563,
          -7,
          -2.603244641473375,
          -2.0183876337299034,
          -2.649047063199393,
          -3.2972010255940374,
          -2.1996912391745638,
          -2.8178249809742413,
          -2.978782076032242,
          -3.5303277897780863,
          -2.3300143608606736,
          -3.2244467303362647,
          -4.2316224841065795,
          -4.227732489846626,
          -3.728867596032789,
          -7,
          -3.329217026937669,
          -3.4200500988012092,
          -3.180829397202488,
          -2.706551844648906,
          -1.9893726580880053,
          -3.644955299203869,
          -2.9085574677038912,
          -3.0325073142652674,
          -3.1894039256177455,
          -2.8307787007318903,
          -7,
          -3.393474921682372,
          -7,
          -3.2203478430987618,
          -2.387671913248881,
          -2.232737755546996,
          -7,
          -3.124554383000522,
          -3.2713768718940743,
          -2.4448360285808475,
          -7,
          -7,
          -7,
          -3.9034698285071703,
          -7,
          -7,
          -7,
          -2.439472605071242,
          -3.9355828325357876,
          -3.0394884783034315,
          -7,
          -7,
          -4.209649035368229,
          -3.6111920608684343,
          -4.220683277974345,
          -7,
          -3.5560611590095323,
          -3.7582051477637246,
          -3.607684747886464,
          -3.3287260851987845,
          -4.001300933020418,
          -3.917899189424106,
          -7,
          -7,
          -7,
          -7,
          -3.2249860256767717,
          -7,
          -4.219453537076811,
          -3.9755696578936623,
          -4.261072451390823,
          -3.4793113232466855,
          -7,
          -7,
          -7,
          -7,
          -3.4569513503619937,
          -3.7579271831133294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.720572720364261,
          -2.7849737099544005,
          -7,
          -2.8269382114979367,
          -7,
          -7,
          -3.674623431655849,
          -7,
          -7,
          -7,
          -3.169941478574325,
          -2.7489886652716113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.270795253376848,
          -7,
          -7,
          -3.417388646165674,
          -3.197303826913918,
          -2.9444826721501687,
          -3.1290450598879582,
          -7,
          -2.6475459629789473,
          -2.515211304327802,
          -7,
          -4.869407749382202,
          -3.2460059040760294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.980609293526336,
          -7,
          -4.029215147524665,
          -7,
          -3.1699681739968923,
          -2.4358443659844413,
          -7,
          -2.653475642824231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.195100974169237,
          -3.5282737771670436,
          -1.8788528915152634,
          -3.3560258571931225,
          -7,
          -2.7363965022766426,
          -2.678908405543116,
          -7,
          -7,
          -7,
          -7,
          -3.2000292665537704,
          -7,
          -3.9825576522920807,
          -7,
          -7,
          -2.588691788592222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7469907758787473,
          -7,
          -3.4565178578052627,
          -7,
          -7,
          -3.130655349022031,
          -7,
          -3.132899769944483,
          -7,
          -3.226213120724107,
          -7,
          -7,
          -3.6119356250401227,
          -3.0824263008607717,
          -7,
          -3.524095618099355,
          -7,
          -4.043676585602717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1686938635769795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5227484373886053,
          -7,
          -2.239373094599889,
          -2.537399284038261,
          -2.149400257384556,
          -2.436305618765648,
          -7,
          -7,
          -7,
          -3.3096301674258988,
          -1.7870835398996032,
          -7,
          -7,
          -7,
          -3.6124659639531425,
          -3.211031500871904,
          -7,
          -3.8891615849113204,
          -3.9137835869053323,
          -7,
          -7,
          -7,
          -2.9581823749816007,
          -2.978864984347657,
          -3.529045170765769,
          -7,
          -7,
          -7,
          -3.107655062979815,
          -2.204489962359036,
          -7,
          -2.417471693203293,
          -4.077803798076088,
          -7,
          -7,
          -7,
          -3.0633333589517497,
          -7,
          -3.450249108319361,
          -7,
          -2.995049891972701,
          -3.734239604435455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9591010440596532,
          -7,
          -7,
          -2.361458004084773,
          -3.46969931658989,
          -7,
          -7,
          -7,
          -7,
          -3.065206128054312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.910197369966001,
          -7,
          -7,
          -3.948020003415398,
          -3.139249217571607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.952598734529773,
          -7,
          -7,
          -7,
          -3.766784515497859,
          -3.1365014914682803,
          -7,
          -7,
          -3.6471872978959894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0437551269686796,
          -7,
          -7,
          -3.717337582723864,
          -7,
          -3.9789561652175918,
          -3.409087369447835,
          -7,
          -7,
          -2.8640920800785654,
          -7,
          -3.800235789327354,
          -2.875350696579289,
          -2.743313739231126,
          -7,
          -2.86421433046133,
          -7,
          -7,
          -7,
          -2.777861624176242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0414913772349825,
          -4.150203628762808,
          -5.4124361859343715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.354876422516234,
          -3.3529539117100877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.368100851709351,
          -3.7692640599117246,
          -7,
          -7,
          -7,
          -7,
          -3.2095150145426308,
          -7,
          -7,
          -7,
          -3.732393759822968,
          -7,
          -3.3445232628225545,
          -7,
          -7,
          -7,
          -7,
          -3.3270318130211587,
          -7,
          -2.9384196457931933,
          -7,
          -4.715953229841805,
          -7,
          -7,
          -7,
          -1.1578397323559333,
          -3.7841892053809607,
          -2.9452894946212806,
          -2.983175072037813,
          -3.397360562979804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.357744325180376,
          -7,
          -3.140665139976736,
          -3.480054875685184,
          -7,
          -7,
          -7,
          -4.019761578098389,
          -3.9239689648754714,
          -7,
          -4.298809426529585,
          -7,
          -7,
          -2.499392479227636,
          -3.3928727454020793,
          -3.380482590974981,
          -2.2943501822111623,
          -7,
          -7,
          -7,
          -2.2242435278612027,
          -5.129809725477716,
          -2.319215674272979,
          -7,
          -7,
          -7,
          -3.797198269838959,
          -2.895054031395402,
          -7,
          -7,
          -3.1970047280230456,
          -3.1072099696478683,
          -1.7700147364996375,
          -7,
          -3.7466341989375787,
          -7,
          -2.96543689977626,
          -3.072892956720603,
          -7,
          -4.015359755409214,
          -3.552129141028904,
          -4.729500335406759,
          -7,
          -3.5298151966446305,
          -4.0667564855974705,
          -2.700037723329635,
          -7,
          -7,
          -7,
          -3.3027637084729817,
          -3.123916943498132,
          -2.9875173043753707,
          -3.42845877351558,
          -7,
          -7,
          -2.7868933252613157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4953961302668386,
          -7,
          -7,
          -3.6982637017765465,
          -4.776083436639779,
          -7,
          -7,
          -4.717437485607079,
          -7,
          -7,
          -4.295830894958585,
          -3.6281106653728488,
          -7,
          -3.656385719058688,
          -7,
          -4.723545969628407,
          -7,
          -3.8886287253852263,
          -7,
          -4.678809631951962,
          -4.323422277252024,
          -7,
          -7,
          -7,
          -7,
          -4.286972645457374,
          -4.539163952951567,
          -4.123721006440036,
          -7,
          -7,
          -7,
          -7,
          -4.778390046685725,
          -7,
          -4.6823526935396655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7167335134653343,
          -7,
          -4.374436714981712,
          -3.892001794808537,
          -7,
          -3.4056877866727775,
          -4.038918066030369,
          -7,
          -3.668526947558438,
          -3.7157944980035067,
          -3.0882542479944113,
          -3.495636829183877,
          -3.421001889716546,
          -3.4812544651364226,
          -7,
          -3.241515351722801,
          -3.857030798272624,
          -7,
          -7,
          -4.383294618363712,
          -7,
          -7,
          -3.6137053129046692,
          -4.090746051250861,
          -5.405882279740203,
          -7,
          -2.889781762778371,
          -7,
          -4.180035029080566,
          -7,
          -5.105309170614622,
          -3.2513600717031963,
          -7,
          -7,
          -4.03235681599555,
          -4.441270843420499,
          -3.7866662580150985,
          -7,
          -2.9975919432613582,
          -7,
          -3.3098648282852214,
          -4.495266744387811,
          -7,
          -2.632620223899974,
          -4.356594659032601,
          -3.621280167550415,
          -4.871524288726237,
          -7,
          -2.9507541815935037,
          -3.613831254971802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8751046906685627,
          -7,
          -2.5953859808091417,
          -7,
          -7,
          -2.708304990392847,
          -7,
          -7,
          -7,
          -2.6729499729544792,
          -7,
          -3.3536002754719343,
          -3.192381579384681,
          -7,
          -7,
          -7,
          -3.4240645254174877,
          -3.714413592287121,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4135955714364747,
          -3.5922878159521305,
          -7,
          -3.2564772062416765,
          -7,
          -7,
          -7,
          -4.494425943281818,
          -7,
          -7,
          -7,
          -3.118595365223762,
          -7,
          -2.937893850328434,
          -7,
          -7,
          -3.263849021837472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.273695587930092,
          -7,
          -3.085290578230065,
          -4.010469569796392,
          -7,
          -7,
          -3.0035682306796563,
          -3.282848602834645,
          -7,
          -3.8619523749214517,
          -7,
          -7,
          -7,
          -7,
          -3.027484215567386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3347887257004363,
          -7,
          -3.131779009369187,
          -3.060383020128225,
          -7,
          -7,
          -2.9849771264154934,
          -2.5510162532011527,
          -3.6726519228400023,
          -7,
          -3.317080886073193,
          -7,
          -7,
          -3.2949069106051923,
          -3.208863467300243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.370272467849528,
          -7,
          -3.2329961103921536,
          -7,
          -3.155766069605062,
          -7,
          -3.5754765086019,
          -3.4390896638956034,
          -2.1134290899827994,
          -3.2234959409623944,
          -7,
          -7,
          -7,
          -3.21818526771214,
          -3.11277252110537,
          -7,
          -7,
          -7,
          -7,
          -3.148979483013599,
          -7,
          -7,
          -7,
          -3.0107238653917734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.176814480674777,
          -7,
          -3.524396122103842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.165541076722373,
          -7,
          -3.8069935136821074,
          -3.2095150145426308,
          -7,
          -3.291701770729981,
          -7,
          -3.4927603890268375,
          -7,
          -7,
          -3.1478308499434595,
          -7,
          -3.7048366062114035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2973227142053023,
          -3.225309281725863,
          -7,
          -7,
          -4.506375130517445,
          -7,
          -7,
          -7,
          -3.901676231326376,
          -3.440410511262982,
          -7,
          -7,
          -1.8566617712293756,
          -7,
          -7,
          -4.042732979621721,
          -7,
          -7,
          -3.6895752157599384,
          -3.632488708541651,
          -7,
          -7,
          -7,
          -7,
          -2.6103939697123133,
          -7,
          -3.691164038557998,
          -7,
          -7,
          -2.9138138523837167,
          -7,
          -3.354108439147401,
          -7,
          -7,
          -7,
          -3.403977963669355,
          -7,
          -3.9116275396950106,
          -7,
          -2.7554937284151193,
          -7,
          -2.182699903336043,
          -3.063427189454848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.955516713520234,
          -7,
          -7,
          -7,
          -7,
          -3.1142772965615864,
          -3.4794313371977363,
          -7,
          -3.153204900084284,
          -7,
          -7,
          -7,
          -7,
          -3.551312734347314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.026474895531622,
          -7,
          -7,
          -4.649120579881137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.532068646024828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.680335513414563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4222614508136027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.929418925714293,
          -2.7752462597402365,
          -7,
          -7,
          -3.081707270097349,
          -3.5750723257138124,
          -3.054708787938054,
          -7,
          -7,
          -7,
          -3.0692980121155293,
          -3.8560639533331,
          -2.481442628502305,
          -3.739651443709377,
          -7,
          -3.181986424480151,
          -3.632963168167261,
          -2.4292137870854282,
          -7,
          -3.459844642388208,
          -3.508798965403905,
          -7,
          -7,
          -4.071624298539752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7382254481425052,
          -7,
          -3.8608767964032977,
          -7,
          -7,
          -7,
          -2.8615344108590377,
          -2.965201701025912,
          -7,
          -7,
          -3.8424220033576497,
          -7,
          -7,
          -7,
          -4.5449852976427225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.28668096935493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.452720008557285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.28616444665352,
          -7,
          -7,
          -4.575795739570101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3230457354817013,
          -3.2054750367408906,
          -2.971739590887778,
          -7,
          -7,
          -3.688241795977712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.481442628502305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.396881306642151,
          -2.4890791624977924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0318122713303706,
          -7,
          -2.7649229846498886,
          -3.4474681309497557,
          -7,
          -4.1396902216529226,
          -5.412152147675782,
          -7,
          -7,
          -2.7589118923979736,
          -7,
          -7,
          -7,
          -3.3771240423464564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.341736150601685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.226857570288723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.320437103682865,
          -7,
          -4.537214438544131,
          -7,
          -4.111010334527677,
          -7,
          -7,
          -7,
          -2.620526432062427,
          -7,
          -3.0684641664541177,
          -3.036309443724438,
          -7,
          -7,
          -7,
          -7,
          -3.225567713439471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9408649759667216,
          -7,
          -7,
          -7,
          -5.132701445891525,
          -3.906119457545562,
          -7,
          -3.1446631477045215,
          -7,
          -7,
          -2.8345266679328582,
          -7,
          -7,
          -7,
          -3.200371635102761,
          -7,
          -7,
          -7,
          -5.527535815021379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7151673578484576,
          -7,
          -2.6020599913279625,
          -7,
          -7,
          -7,
          -3.4183012913197457,
          -7,
          -2.5754765086019,
          -7,
          -7,
          -4.381355787093678,
          -4.391517306849448,
          -4.796253928649793,
          -7,
          -7,
          -3.132542438758517,
          -3.093001196684749,
          -7,
          -2.8527848686805477,
          -2.4668676203541096,
          -7,
          -2.2647483969871836,
          -3.137986732723532,
          -3.369957607346053,
          -2.870403905279027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5064238482786605,
          -7,
          -7,
          -4.296763882338289,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.805614117901356,
          -7,
          -7,
          -4.622726788799164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.935023327267549,
          -7,
          -7,
          -7,
          -4.662757831681574,
          -4.080491199713847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.187244263647723,
          -7,
          -7,
          -3.4067955726682504,
          -7,
          -4.956614986067625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.899497669943841,
          -7,
          -7,
          -4.1665189175409445,
          -7,
          -7,
          -4.56982435888469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7640266076920375,
          -7,
          -4.798802518387985,
          -3.6372895476781744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0754252932359982,
          -7,
          -7,
          -7,
          -7,
          -3.6956567599361905,
          -7,
          -7,
          -7,
          -2.9978230807457256,
          -3.470704429722788,
          -7,
          -3.018561812897253,
          -7,
          -3.266231696689893,
          -3.7789948919347194,
          -7,
          -7,
          -3.119420863442087,
          -3.257438566859814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.995898323646437,
          -7,
          -7,
          -3.5683190850951116,
          -3.2427898094786767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3980493004965044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808616035426992,
          -4.331761240775492,
          -3.339053735709139,
          -7,
          -3.5319682869631666,
          -3.495821753385906,
          -2.5202137247557816,
          -3.2132520521963968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.248144987287778,
          -3.2039389889121495,
          -3.478566495593843,
          -7,
          -3.301897717195208,
          -7,
          -7,
          -3.686099771995916,
          -7,
          -7,
          -7,
          -3.1758016328482794,
          -4.3990157256487645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9334872878487053,
          -7,
          -3.2823955047425257,
          -2.1958996524092336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8144473785224875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.200412701197246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.187266838179294,
          -7,
          -7,
          -1.8566617712293756,
          -7,
          -7,
          -7,
          -4.332660600270635,
          -7,
          -7,
          -7,
          -5.094431529055729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.563071516383439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.513217600067939,
          -3.610234175334389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.429703842972572,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.446008733684012,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6006462356623947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.2296306555085055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0580462303952816,
          -4.078366179530183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752132992497674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2930087866585644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1449165270928505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1508577122770784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.352890323568416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7083954026456265,
          -7,
          -7,
          -7,
          -3.6767850304192056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8748875108461127,
          -7,
          -4.278776457955645,
          -7,
          -7,
          -3.550228353055094,
          -7,
          -7,
          -7,
          -7,
          -3.2081725266671217,
          -7,
          -7,
          -5.527175393673305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6705241577820797,
          -7,
          -7,
          -7,
          -7,
          -4.8551252652257055,
          -7,
          -5.273060911077467,
          -7,
          -7,
          -4.7162997319773545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.459392487759231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426933964071905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.04587039244936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2242740142942576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1684974835230326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9197577805018944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.185343801582189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.647705636658856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.580810972660946,
          -7,
          -3.997211582832505,
          -7,
          -3.707995746422929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6276730317666157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.632963168167261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8796692056320534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.718501688867274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7774268223893115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.192149125018534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.33615942648478,
          -7,
          -7,
          -7,
          -4.3956362016073784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.388000494229575,
          -7,
          -7,
          -7,
          -7,
          -3.2730012720637376,
          -7,
          -3.164352855784437,
          -2.5237464668115646,
          -7,
          -7,
          -4.186677007042231,
          -7,
          -7,
          -3.004536317851323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.476138960843614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9813655090785445,
          -7,
          -3.0211892990699383,
          -7,
          -7,
          -7,
          -3.6704004888179345,
          -7,
          -7,
          -7,
          -7,
          -3.7223047868743278,
          -7,
          -7,
          -7,
          -5.1250027903205355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8027737252919755,
          -7,
          -7,
          -2.941511432634403,
          -7,
          -7,
          -7,
          -7,
          -3.6984280755915644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.568788212315347,
          -7,
          -3.668541215987884,
          -7,
          -7,
          -7,
          -3.9674543681827408,
          -7,
          -7,
          -7,
          -7,
          -3.676693609624867,
          -7,
          -7,
          -7,
          -7,
          -4.382575319649486,
          -7,
          -7,
          -2.607025878434786,
          -2.571838182362705,
          -3.3176455432211585,
          -7,
          -3.4702928597504274,
          -3.908278162727131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023787279789847,
          -7,
          -4.150295812825538,
          -7,
          -7,
          -3.8716313045375537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.539966367996713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1903316981702914,
          -7,
          -7,
          -7,
          -3.86975959478241,
          -7,
          -7,
          -4.673991068684635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7363965022766426,
          -7,
          -3.6149499184762433,
          -7,
          -7,
          -7,
          -7,
          -3.9729256748062145,
          -7,
          -7,
          -3.569958818096594,
          -7,
          -7,
          -3.172310968521954,
          -3.2352758766870524,
          -2.607812320217054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7372721765355434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.537189226243645,
          -7,
          -2.8926510338773004,
          -3.000596744744559,
          -7,
          -3.82630161371604,
          -5.411828386500435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941918703252601,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.806586934327803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.408824850960789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9540011676815703,
          -7,
          -7,
          -3.156851901070011,
          -7,
          -2.629409599102719,
          -2.634141258939403,
          -2.832987650012002,
          -2.802944673722407,
          -7,
          -2.761927838420529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9212701855098127,
          -7,
          -7,
          -7,
          -4.654333796697641,
          -2.581665266717616,
          -2.6702458530741238,
          -3.981660076604237,
          -7,
          -7,
          -3.571009672309305,
          -7,
          -3.9488529061997135,
          -7,
          -3.474507639116976,
          -3.252610340567373,
          -7,
          -7,
          -4.925219884397581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6863681034730362,
          -2.9454685851318194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.176250471178607,
          -7,
          -7,
          -4.239870653259158,
          -3.7646990637983677,
          -7,
          -7,
          -7,
          -3.517855418930029,
          -3.073938190635253,
          -7,
          -7,
          -7,
          -7,
          -3.3703280077795106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5011825459901935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4507923159973133,
          -7,
          -4.287316422082007,
          -3.8769103113446275,
          -7,
          -4.325392500017263,
          -3.3209766773428235,
          -4.058924316651292,
          -3.207005670893413,
          -2.6912288854662814,
          -3.9616583486377155,
          -4.262968138090902,
          -4.07700432679335,
          -7,
          -4.133650660953161,
          -3.5098742850047193,
          -7,
          -3.7826875682349663,
          -7,
          -7,
          -7,
          -3.99084479280467,
          -4.341568763431911,
          -7,
          -2.745855195173729,
          -3.3727279408855955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.48058896756481,
          -7,
          -3.9088333870375656,
          -7,
          -7,
          -4.184052292391864,
          -1.57377942980712,
          -3.9427271453659487,
          -7,
          -7,
          -5.046210223646017,
          -7,
          -7,
          -4.606316861140107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9894794815772188,
          -7,
          -4.179293205577373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5969268143429707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.724002642487717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1646502159342966,
          -3.644635503768153,
          -7,
          -7,
          -7,
          -2.851869600729766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6775613311560935,
          -7,
          -7,
          -3.520614521878236,
          -3.192149125018534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.045927049451639,
          -3.1336985461157765,
          -7,
          -7,
          -7,
          -7,
          -2.8692317197309762,
          -7,
          -7,
          -7,
          -3.4899584794248346,
          -7,
          -7,
          -3.781827152932428,
          -4.151737481038518,
          -7,
          -7,
          -7,
          -7,
          -3.245101209250068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067281687644021,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1497321599470633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9694159123539814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2645817292380777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6252781451453204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.018991594705612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.69539410829111,
          -7,
          -7,
          -3.712256751122368,
          -3.205556205693917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.635121683866136,
          -7,
          -7,
          -3.16721884410666,
          -4.425491133590951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4510184521554574,
          -4.839635144312755,
          -7,
          -2.82020145948564,
          -2.378851946448881,
          -7,
          -3.61857102812013,
          -7,
          -7,
          -7,
          -7,
          -3.18440748541232,
          -4.129066569730805,
          -7,
          -3.4147505757259213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5705429398818973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.425697213362591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.263636068588108,
          -7,
          -7,
          -3.40671045860979,
          -7,
          -7,
          -3.5150786750759226,
          -7,
          -7,
          -3.928705586311121,
          -7,
          -3.7091851295502454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.66185999172781,
          -7,
          -7,
          -7,
          -7,
          -4.374069803726075,
          -7,
          -7,
          -7,
          -7,
          -4.3808621953412015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9745116927373285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5814945422908995,
          -7,
          -7,
          -4.294752721910178,
          -7,
          -7,
          -7,
          -3.7615895881903603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6701221048237063,
          -2.5146426078494595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03696191916769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.609914410085998,
          -7,
          -7,
          -7,
          -3.7013088852280753,
          -4.097704527259222,
          -7,
          -3.3550682063488506,
          -3.558708570533166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7399676967595092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8992731873176036,
          -7,
          -7,
          -5.411748460239424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464305695943203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.918778991481398,
          -3.3227015762736576,
          -7,
          -7,
          -7,
          -4.3103533890449945,
          -2.958324931644053,
          -2.7165683297355256,
          -7,
          -7,
          -7,
          -7,
          -2.694605198933569,
          -7,
          -7,
          -3.3470371337849536,
          -3.695831772826692,
          -7,
          -7,
          -2.8926510338773004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.916295994563131,
          -7,
          -7,
          -7,
          -4.654028863068111,
          -7,
          -7,
          -3.9795028487874013,
          -7,
          -7,
          -7,
          -7,
          -3.643057683751453,
          -3.4712917110589387,
          -7,
          -7,
          -7,
          -7,
          -4.874004804728517,
          -3.85618492672717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.382647303154711,
          -4.875159692319408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499879448956432,
          -7,
          -7,
          -4.115355295624343,
          -7,
          -7,
          -3.5979144712025284,
          -4.710574276760383,
          -7,
          -3.8634418286137087,
          -7,
          -3.401452239428341,
          -3.664124650322944,
          -3.569958818096594,
          -7,
          -4.716779368873068,
          -7,
          -4.277357044047016,
          -3.8468729474623116,
          -7,
          -4.076114874405903,
          -7,
          -7,
          -7,
          -5.387516180530774,
          -7,
          -7,
          -3.6188844849954505,
          -7,
          -4.655800900961374,
          -7,
          -7,
          -4.073403051739167,
          -7,
          -4.674907046819129,
          -7,
          -4.185683780318504,
          -3.225050696138049,
          -7,
          -7,
          -7,
          -4.177247836255623,
          -3.4069232124875093,
          -7,
          -7,
          -4.764112590683704,
          -7,
          -3.630834517828051,
          -3.6243027269124592,
          -7,
          -4.193402903062418,
          -7,
          -7,
          -7,
          -4.35943703830399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1733319803686495,
          -7,
          -7,
          -7,
          -4.990503127353854,
          -4.446178354569201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.419718996229201,
          -7,
          -7,
          -4.46520433758063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3187339450877964,
          -7,
          -3.4773528166989705,
          -7,
          -7,
          -3.8601782366871342,
          -3.036628895362161,
          -7,
          -7,
          -3.7265642161622448,
          -7,
          -4.795476804945366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7585334222372864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.523659772633833,
          -7,
          -7,
          -4.593618308129535,
          -4.2485127322209,
          -3.5817577144343704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6422913615024184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6732052817790453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.721366648562226,
          -7,
          -7,
          -7,
          -3.2723058444020863,
          -3.9665445398586376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7844033017530085,
          -3.089905111439398,
          -7,
          -3.7749546890801384,
          -3.5137399148914126,
          -7,
          -7,
          -3.998934672960174,
          -7,
          -7,
          -7,
          -3.544605409694115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.950364854376123,
          -7,
          -3.295243603126737,
          -7,
          -3.8523579836678272,
          -4.543273178913283,
          -7,
          -3.403120521175818,
          -7,
          -7,
          -7,
          -7,
          -3.640878778701618,
          -7,
          -7,
          -7,
          -7,
          -4.089551882886454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7825442840100103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.038023740045158,
          -4.333406966873917,
          -7,
          -4.333709182897272,
          -3.6379497978642092,
          -3.659402725922002,
          -3.5073931999739076,
          -3.4338498071286465,
          -3.1961761850399735,
          -2.7813158040856756,
          -3.215125121509055,
          -7,
          -7,
          -1.8066426759737768,
          -2.0630074503233264,
          -3.270795253376848,
          -4.042732979621721,
          -4.332660600270635,
          -4.33615942648478,
          -3.635121683866136,
          -7,
          -3.4178791484866298,
          -7,
          -2.7099988280251885,
          -2.1354082318967595,
          -3.0683030644136933,
          -3.2977804004756983,
          -3.6339126227235914,
          -2.563537586335348,
          -3.050128310900046,
          -4.340999022531442,
          -2.966086493043982,
          -3.4443961510846295,
          -3.7333577879255855,
          -7,
          -3.864075777427166,
          -3.3634239329171765,
          -3.860996436757196,
          -2.682271463859843,
          -3.85658792817761,
          -3.523579255398529,
          -3.1092608334015583,
          -2.470891876279444,
          -4.035869813695553,
          -3.3876468462749743,
          -2.66573104525868,
          -3.7478583033812987,
          -2.6260836162697796,
          -3.494373277015027,
          -7,
          -4.385481150169245,
          -3.3090685504394175,
          -2.70413144332119,
          -2.069225341615083,
          -3.4235917150312236,
          -2.1940012589364937,
          -3.1807310305665903,
          -3.4380872482554214,
          -2.812579155409047,
          -2.668349367606713,
          -3.500843920902923,
          -4.347739717920052,
          -7,
          -4.3357386470050505,
          -3.2646801172410136,
          -3.1150496567022525,
          -1.9817592997882345,
          -4.035389709198677,
          -4.334795422556774,
          -3.0939927496520165,
          -7,
          -2.945320840792275,
          -2.847229804082146,
          -7,
          -3.0138809162279236,
          -2.645636799886457,
          -4.335257256434532,
          -2.81107205910691,
          -7,
          -3.8614746688571686,
          -2.4450850227193537,
          -3.1337454872286643,
          -3.862608363964942,
          -7,
          -3.231414972499162,
          -3.389972866217175,
          -2.9853186730361374,
          -2.050910057856416,
          -2.88218288763027,
          -3.8806802357832058,
          -1.5241725325718243,
          -1.917451180863874,
          -1.815957854947194,
          -3.0330214446829107,
          -3.855317205195943,
          -3.2291514006582367,
          -2.057639077178137,
          -2.3140723973996593,
          -2.170968230081282,
          -3.132619850835918,
          -2.2029729677980177,
          -7,
          -7,
          -7,
          -2.4205010561979434,
          -3.635121683866136,
          -2.8784476648392694,
          -3.312100387989085,
          -2.6465584905468207,
          -2.4168350793636244,
          -3.7408362070573116,
          -3.73641642358496,
          -2.98786048454487,
          -2.6982359091337726,
          -1.6561511826139075,
          -3.392540633818798,
          -7,
          -3.0234769399015815,
          -3.111669230970648,
          -2.3000120029278657,
          -3.0679709080059894,
          -2.362324352659981,
          -1.8297631007235549,
          -4.342837036916425,
          -3.048892179602324,
          -3.4983893302240454,
          -3.214321161392318,
          -3.873378736409141,
          -2.763993778305563,
          -2.85517289734218,
          -4.335618349377605,
          -4.344333315681277,
          -2.215283195057249,
          -2.7780969601801973,
          -7,
          -4.333689041703905,
          -2.8203681357006727,
          -7,
          -7,
          -4.3333868116595315,
          -3.7336185110286038,
          -3.3328220855550996,
          -2.6195052314655953,
          -3.246071626606709,
          -1.9490260709475087,
          -2.2693606403475486,
          -3.265034129608875,
          -3.114429004559742,
          -7,
          -7,
          -3.095924494839391,
          -4.034454650590254,
          -2.544052337213367,
          -7,
          -4.338894551438355,
          -3.867801281134174,
          -2.901411612182605,
          -4.032638903912429,
          -7,
          -3.3202029541600093,
          -3.098105089785339,
          -3.6367686426690313,
          -2.921994581367604,
          -4.056542788387697,
          -4.37287519679339,
          -3.6715615891070583,
          -3.582423231012989,
          -2.979001748474721,
          -4.35791579857913,
          -3.4386412206093957,
          -2.46480733889576,
          -7,
          -7,
          -7,
          -3.6465801531517243,
          -4.339292402768765,
          -3.8608169638645378,
          -7,
          -2.3904304068932922,
          -3.2248118650160023,
          -3.0120689351723082,
          -4.032800014781665,
          -2.435449506036116,
          -2.0863884511655177,
          -3.5685732585751744,
          -2.186942726764195,
          -2.5955312131225274,
          -3.0524053421921833,
          -2.989227273730537,
          -2.5759956202032677,
          -2.9284717181809006,
          -3.350926073869093,
          -3.511157339503544,
          -2.940997089103553,
          -3.563025984863721,
          -3.368641818047141,
          -7,
          -2.3121043694503958,
          -3.1320900984523248,
          -2.7351034471081364,
          -7,
          -2.5865343548445856,
          -3.855801728654794,
          -3.1975400029942715,
          -4.041609778130455,
          -3.2770167642600043,
          -3.861892690391446,
          -7,
          -2.905779531688919,
          -3.522574632691177,
          -7,
          -3.0484048061076168,
          -3.3190267016919766,
          -2.958394318227855,
          -7,
          -4.333044029823487,
          -3.640063836529813,
          -3.8573928109209015,
          -7,
          -7,
          -7,
          -7,
          -2.7836058521877196,
          -2.3930308975144152,
          -2.5979220307893294,
          -2.548075466728869,
          -4.031044716583705,
          -3.436580037252512,
          -2.894157763254254,
          -2.9183604584754095,
          -7,
          -4.335798783325366,
          -3.2864751824807645,
          -3.1267233363447597,
          -4.357248576936287,
          -7,
          -7,
          -4.335838869579954,
          -7,
          -7,
          -7,
          -3.6596500299986263,
          -2.590025897957538,
          -4.33270097722138,
          -3.856326019777088,
          -7,
          -7,
          -3.867781653335743,
          -3.565316427085621,
          -7,
          -3.4417344009978166,
          -3.2991215945305745,
          -3.2466689926017556,
          -2.544776518376729,
          -2.297316366077287,
          -2.9270470220473492,
          -4.334694958867158,
          -4.332620219565641,
          -2.178924267863949,
          -3.159811490345912,
          -1.8968065290910827,
          -4.34551095769695,
          -2.31334740394485,
          -3.6483404916891735,
          -3.735878227256238,
          -7,
          -2.7326617601288525,
          -2.011607069177962,
          -2.093275728352962,
          -2.386923809374673,
          -3.145600357652248,
          -2.956552591917399,
          -3.0651077623358094,
          -7,
          -4.352741915020753,
          -3.2029240276378017,
          -3.2296087164576104,
          -7,
          -3.8614746688571686,
          -4.353069502665453,
          -3.8608169638645378,
          -3.7555509188304823,
          -4.332902805685792,
          -3.2525356393017573,
          -2.636443644559298,
          -3.0497799152723837,
          -3.531606631932722,
          -3.6567879234101603,
          -1.4720704405603522,
          -2.566543246335169,
          -4.336479746957996,
          -2.5956906965576407,
          -4.03402652377511,
          -3.169694022903532,
          -2.804803224207489,
          -3.3610286258136726,
          -2.8867220558827404,
          -3.0422174200040857,
          -3.434265430560304,
          -3.884946331007737,
          -3.3084399050774618,
          -2.8363427353762822,
          -2.339534093100576,
          -2.3045982263436375,
          -4.3331045403985895,
          -7,
          -7,
          -2.4610448259425755,
          -2.2478862490937077,
          -3.863005451385769,
          -3.866425188468594,
          -2.9751927658771193,
          -3.5599066250361124,
          -3.218629270892973,
          -3.73814608871206,
          -2.938386280873121,
          -3.441321937582603,
          -3.144749291055609,
          -3.322649928861323,
          -2.741092480334294,
          -2.899408910925728,
          -1.269276111291898,
          -3.034675266873209,
          -7,
          -3.0201699775354873,
          -2.9938977236207234,
          -2.451414739478241,
          -7,
          -3.444454682653069,
          -4.337079711800931,
          -3.1102706498108663,
          -2.7892440932493145,
          -2.863322860120456,
          -3.5200153916133203,
          -7,
          -7,
          -3.417988073810789,
          -4.037406575718464,
          -4.042713299346113,
          -3.646364510503877,
          -2.9584785584644475,
          -4.038640028580474,
          -2.241745652570644,
          -7,
          -7,
          -2.3494732486769028,
          -2.7443962190392654,
          -3.4848580937261096,
          -3.198313363563387,
          -2.723077980324159,
          -2.9865770270305676,
          -2.291062491464624,
          -2.0901845471034233,
          -2.2358864186637226,
          -2.759382734236651,
          -3.119307993152975,
          -2.583484811154959,
          -2.708801104616171,
          -2.7658601693581533,
          -2.265277762889534,
          -3.6273658565927325,
          -2.7184633614386025,
          -2.56447851894988,
          -3.326322203654834,
          -2.3387199291037737,
          -3.7927942759520783,
          -3.3553336134554423,
          -2.6301872080515634,
          -1.930508951944087,
          -2.4359427216196234,
          -4.326949994165998,
          -2.971282383756981,
          -2.634992781745514,
          -2.742481981003778,
          -2.2568180678516794,
          -3.270740112262184,
          -2.3985208083390748,
          -3.2624201339243,
          -2.972262193363085,
          -2.945941786252861,
          -3.742672771972318,
          -3.6781995973581743,
          -3.0304677189005575,
          -2.788479959678761,
          -2.3395571527890606,
          -3.7453285766010675,
          -3.0113525433140276,
          -2.947038239970433,
          -2.5019260722283025,
          -2.1959855509600987,
          -2.9635517335740964,
          -3.1119529215825246,
          -1.895847650950953,
          -3.167275127208233,
          -3.9064427938170323,
          -3.4319709942774352,
          -2.396793274079153,
          -2.4122607967275096,
          -7,
          -2.719799490227212,
          -2.57103173507351,
          -7,
          -3.1132428258259015,
          -2.3769986069777973,
          -4.109122754158086,
          -4.046612209068446,
          -2.8708682408513573,
          -2.2425211132791127,
          -3.3852503234021976,
          -4.037187370937113,
          -3.81202716049957,
          -4.339928207778514,
          -2.501106366166521,
          -7,
          -3.5258850736023364,
          -3.4769764657595275,
          -3.574748708350177,
          -4.032981193097368,
          -3.3682352170082024,
          -2.933261259967396,
          -3.09207170551119,
          -2.0335648288946877,
          -2.6171168833145146,
          -2.3139311012962236,
          -2.729700270514178,
          -1.7198329870017677,
          -4.345158000269438,
          -2.557499181619563,
          -2.563218623279188,
          -2.718819594561594,
          -3.1051248065332584,
          -7,
          -3.166621628581135,
          -2.5806841888260506,
          -2.6044078535129347,
          -4.336419704862658,
          -7,
          -7,
          -7,
          -3.3394017480193674,
          -1.7072040483297801,
          -3.413709458318653,
          -1.9520735304976586,
          -4.036029730656543,
          -2.6351042182738458,
          -2.5383061088410503,
          -2.7067548777441615,
          -3.459938782046067,
          -7,
          -2.7430195349869044,
          -3.3344135368371,
          -2.6832553179742296,
          -2.5413711986818104,
          -3.1965906541173066,
          -3.3240016916965534,
          -3.0593740590659575,
          -3.5195092317558236,
          -2.7956426794216003,
          -3.3477787170653643,
          -2.9795879585788803,
          -3.051425881072855,
          -7,
          -3.646031033842023,
          -3.2128531899471113,
          -2.723402127046082,
          -7,
          -2.716448545602954,
          -3.8574531170352664,
          -3.7342996631372682,
          -2.955149043650492,
          -2.388904173729535,
          -1.8047641753770183,
          -7,
          -2.9784361776439243,
          -2.483462297921356,
          -3.8705599579152383,
          -3.0173781687181025,
          -7,
          -3.2415081678196804,
          -1.9284255736341038,
          -4.3338904116161245,
          -2.8039388622112926,
          -2.9073186796496047,
          -3.124139666498967,
          -1.761625795377137,
          -3.5635008615598887,
          -2.631749987592334,
          -3.070562787817278,
          -3.440239816085663,
          -3.15601883092165,
          -2.2500774312148915,
          -2.6336110186015156,
          -3.7320518194031846,
          -2.8447611095485645,
          -2.908306260085468,
          -3.7613263224214566,
          -2.3000304682218546,
          -3.387271150430926,
          -4.336739833491843,
          -2.998334510992717,
          -3.1095785469043866,
          -2.096902767158549,
          -2.696465603994037,
          -2.4168506413604782,
          -3.753563909684063,
          -3.7409545058228053,
          -3.6707559422151332,
          -4.341889355714299,
          -2.494106034228388,
          -3.436520434633616,
          -3.0864534992789943,
          -2.4809167613786745,
          -2.580209546390239,
          -4.031711354754593,
          -2.5886078047426864,
          -1.9576587855573357,
          -3.0999912335446846,
          -3.1641111006552047,
          -2.6007614933013325,
          -3.1751855350946574,
          -2.865991800126275,
          -3.0500702643674384,
          -2.6032814432190676,
          -2.18620267890855,
          -4.3534353378561645,
          -2.746925965479895,
          -4.03322264667025,
          -4.031630604606654,
          -2.7783792447073528,
          -2.7867696174440493,
          -3.067286255616976,
          -2.669116253163979,
          -2.442073689143087,
          -3.160543558238841,
          -2.778764227876941,
          -2.7946119582066142,
          -2.902886363725619,
          -2.9294919102505377,
          -3.865163219506086,
          -3.2793246654426103,
          -7,
          -2.836631992552943,
          -2.7958291701355673,
          -2.360664401848062,
          -7,
          -3.2794958384653494,
          -3.3946656621210396,
          -1.9283455066819617,
          -3.646540953360931,
          -4.038818787373656,
          -7,
          -4.333144876098619,
          -4.335498018419024,
          -4.334393428283704,
          -3.3820170425748683,
          -2.3335112471695822,
          -3.3154741615241607,
          -3.459731647856049,
          -4.03996902686746,
          -2.879609931118383,
          -7,
          -7,
          -4.34519723192998,
          -7,
          -3.1947732688446826,
          -4.356312741150645,
          -3.4884994390363193,
          -3.030292004582297,
          -3.930728348759478,
          -3.8667204327514666,
          -7,
          -3.4856149687087945,
          -4.341909120179768,
          -7,
          -2.893637567918888,
          -4.344981413927258,
          -7,
          -3.6095410528172773,
          -2.959976522554131,
          -3.896085085423285,
          -7,
          -7,
          -4.3677844122811535,
          -7,
          -2.9597907046081344,
          -7,
          -7,
          -7,
          -7,
          -3.871689665685515,
          -7,
          -7,
          -7,
          -7,
          -3.925415237084246,
          -3.5814945422908995,
          -3.898396045930009,
          -3.506973106258592,
          -3.7845816348076653,
          -7,
          -7,
          -3.2092468487533736,
          -2.847516574105306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4178791484866298,
          -7,
          -3.1682617101828754,
          -3.7646617324292895,
          -3.1431944458978824,
          -7,
          -3.5881596163830918,
          -7,
          -3.1794081515138357,
          -7,
          -3.893317811616112,
          -2.356336435340471,
          -3.6108730003800513,
          -7,
          -7,
          -3.0483308017652884,
          -2.5540770813753886,
          -3.584274671924987,
          -3.701006406595548,
          -7,
          -3.6662839226231023,
          -7,
          -3.0828930332881797,
          -3.4044916177586857,
          -7,
          -7,
          -3.1395117739437315,
          -3.5787537844264343,
          -2.7744046578712123,
          -3.9114239653762946,
          -3.530754489047923,
          -3.619249898968967,
          -7,
          -3.137660652417374,
          -7,
          -3.3312826522290138,
          -3.2756732529227346,
          -3.8945929479229555,
          -3.6042800664521044,
          -3.0344056157964263,
          -7,
          -7,
          -3.6114577656683426,
          -7,
          -3.3001061379430885,
          -3.7279883338825006,
          -3.245376929578351,
          -7,
          -7,
          -3.6775613311560935,
          -7,
          -3.092896010921856,
          -2.9377492894912,
          -7,
          -3.68497993618928,
          -3.160248789529974,
          -7,
          -3.6657216683873965,
          -7,
          -7,
          -3.6847257048088564,
          -7,
          -3.8899736384039962,
          -7,
          -3.6889090176205546,
          -3.9031442704095385,
          -2.8898186685214093,
          -3.719911064198339,
          -7,
          -3.939069749923424,
          -3.1333497230802343,
          -3.1736024586519864,
          -3.7648732344371183,
          -7,
          -7,
          -3.9844823064022625,
          -7,
          -3.6723288042224165,
          -3.557426992378806,
          -7,
          -3.2828074316271527,
          -7,
          -3.871864702088195,
          -7,
          -3.9138932892309164,
          -7,
          -7,
          -3.3261309567107946,
          -3.206208870803717,
          -3.3754666422474324,
          -3.898944466866509,
          -7,
          -7,
          -3.4492211919059925,
          -3.2157071184379977,
          -7,
          -7,
          -3.9618006391916785,
          -7,
          -2.8753314070333533,
          -7,
          -3.0609958807280466,
          -3.462193736165049,
          -3.8984509191983747,
          -3.541423219342099,
          -3.4235735197327357,
          -2.616802055770164,
          -7,
          -3.99056082999402,
          -3.3435661323861248,
          -7,
          -7,
          -3.0316023385073954,
          -3.6975344625969604,
          -7,
          -7,
          -3.1590799785989363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.344294005898312,
          -3.246357873040835,
          -3.1509405539654773,
          -3.771771153745868,
          -7,
          -3.8623103099542706,
          -7,
          -3.583368829892705,
          -3.621954820044902,
          -3.787011542449596,
          -3.659440781870318,
          -7,
          -7,
          -7,
          -3.0407896571244835,
          -7,
          -3.5676144427308447,
          -7,
          -3.928907690243953,
          -7,
          -7,
          -2.9374677396433775,
          -2.527721941664711,
          -2.6478019710944465,
          -2.7410037874661946,
          -2.516415170606379,
          -2.119814010658674,
          -3.8961402514420196,
          -2.8718384586230377,
          -3.4137466840917785,
          -3.3939260065858368,
          -7,
          -3.206987694756408,
          -2.740926342372719,
          -7,
          -7,
          -3.1861649617274153,
          -7,
          -3.3017810094618794,
          -7,
          -3.7869997221787326,
          -2.982020663780229,
          -7,
          -4.07018568637838,
          -3.335818826915165,
          -3.9292656182530656,
          -3.1252488362158366,
          -3.9352048674265814,
          -3.3443922736851106,
          -7,
          -7,
          -3.2732328340430454,
          -7,
          -2.9181052603565147,
          -7,
          -7,
          -3.3503934050950708,
          -2.736216041254522,
          -3.40426340205091,
          -2.322265765707363,
          -7,
          -2.8479494873496183,
          -7,
          -2.455707512181184,
          -7,
          -3.895919545310016,
          -2.920610242554322,
          -3.11920874228968,
          -7,
          -3.973589623427257,
          -4.472917269345676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.893095666096228,
          -7,
          -3.8980666606416348,
          -3.335027835149797,
          -2.8866921137603256,
          -3.835310000869063,
          -3.0440902657234554,
          -7,
          -2.98649181515768,
          -7,
          -7,
          -3.8718063644587293,
          -7,
          -3.2608819504635864,
          -3.9388198250262105,
          -2.320602185183319,
          -3.56643749219507,
          -3.2656431419421352,
          -2.4284240729856665,
          -2.7072862306926577,
          -3.869173027321683,
          -2.9223217045445207,
          -2.0769639103881374,
          -3.5285264676240913,
          -7,
          -7,
          -7,
          -3.8840586470939384,
          -3.3020060605865402,
          -3.9007493580610793,
          -7,
          -3.904715545278681,
          -3.4697484005051664,
          -7,
          -3.814180981040187,
          -3.830299898378829,
          -3.6419200744131177,
          -7,
          -7,
          -3.4415066124941145,
          -7,
          -4.012710712741787,
          -2.6487393784940823,
          -3.093615390353539,
          -7,
          -7,
          -7,
          -3.4470287577940395,
          -3.054404108446577,
          -3.165487137148075,
          -3.60859734044574,
          -2.996011044453897,
          -7,
          -7,
          -3.8781194846971676,
          -3.925466800691538,
          -3.294378035587241,
          -2.661587347244496,
          -7,
          -3.284374328300976,
          -3.2269605935324526,
          -2.804480189105993,
          -3.336309606123844,
          -7,
          -7,
          -2.4877321182290824,
          -7,
          -3.3850250382961597,
          -3.933892035764211,
          -3.622073767651025,
          -3.8691143269793753,
          -3.8805277781988052,
          -3.215373152783422,
          -7,
          -7,
          -4.035469763481283,
          -7,
          -4.204554060135243,
          -4.007833092701319,
          -1.793728772440664,
          -2.220798618877941,
          -1.3735599382065473,
          -3.9677819080757994,
          -3.5083401254993674,
          -3.3800000750090593,
          -7,
          -3.8669368177316397,
          -3.566201718854913,
          -3.625621081424908,
          -7,
          -3.8910912264677235,
          -2.945523292505061,
          -7,
          -7,
          -3.9581336756762355,
          -7,
          -3.777499319590365,
          -2.823202438384847,
          -3.916611845109346,
          -3.7458162082818403,
          -7,
          -3.36543292378377,
          -3.3823080457324823,
          -3.513578060938442,
          -7,
          -2.9148057701698518,
          -3.176982408475351,
          -3.412830002562326,
          -7,
          -3.912168896059627,
          -7,
          -3.540663098377016,
          -3.11544408343624,
          -3.7868223794991875,
          -3.9583727324786073,
          -7,
          -7,
          -3.97648753730519,
          -3.186786876733249,
          -3.2016701796465816,
          -2.228706076874652,
          -2.5773768919170146,
          -2.5068994614132776,
          -2.6579327842065577,
          -7,
          -3.8714561740229536,
          -4.365029112607194,
          -4.343178747552447,
          -7,
          -7,
          -4.290568798984483,
          -4.008316226356639,
          -4.162086240240854,
          -7,
          -4.07333598198359,
          -4.216245097705822,
          -7,
          -7,
          -4.7731645347378375,
          -4.550028490833373,
          -4.654195800629739,
          -4.451970549629459,
          -4.733486163475413,
          -4.957334270883196,
          -7,
          -4.439285313665999,
          -7,
          -4.497066208066182,
          -7,
          -7,
          -7,
          -4.452644967679994,
          -4.720084846541146,
          -4.348441167278361,
          -7,
          -4.822410013411183,
          -7,
          -4.259458489134114,
          -4.146484631135281,
          -4.3532813395452905,
          -3.9494388010365045,
          -4.280578370368076,
          -7,
          -4.2470521748566155,
          -7,
          -3.681874122128647,
          -3.3089377249826804,
          -3.885361220031512,
          -4.049876719873882,
          -3.8650150921872437,
          -7,
          -3.8493426222695306,
          -3.9647780220223763,
          -3.661487467656179,
          -2.151110436197178,
          -1.9994732631471908,
          -2.9359856330811804,
          -3.23814298390106,
          -3.039770926931579,
          -7,
          -4.234694407142218,
          -3.8324131018851166,
          -2.9744541207240007,
          -7,
          -4.184308060645372,
          -7,
          -7,
          -3.5740519479249517,
          -3.816315886150352,
          -4.297326083558631,
          -7,
          -2.4171578765916593,
          -2.7750219919935004,
          -3.431207354239188,
          -4.113140836867081,
          -3.8984991354385503,
          -3.6743328717415724,
          -4.370587100246676,
          -7,
          -3.103352715920879,
          -4.054651350441742,
          -3.449504111539399,
          -7,
          -3.4135977618504896,
          -7,
          -2.819670459790951,
          -4.098989639401177,
          -7,
          -3.485125843470917,
          -3.687042671622682,
          -4.024690862355431,
          -3.3605650150028246,
          -7,
          -7,
          -3.4461441031404796,
          -4.125660151674213,
          -7,
          -3.5713011255662694,
          -7,
          -7,
          -7,
          -3.9591249024611264,
          -2.9649192942866427,
          -3.346744054604849,
          -7,
          -7,
          -3.0297744519159444,
          -7,
          -2.0767781650347885,
          -7,
          -3.399396792103312,
          -7,
          -2.773373813613427,
          -3.2659963704950794,
          -7,
          -7,
          -7,
          -3.655954372078779,
          -3.021752951948413,
          -7,
          -7,
          -4.112504458767161,
          -7,
          -7,
          -7,
          -3.1097894001793462,
          -7,
          -3.3912376459396496,
          -7,
          -7,
          -3.6668360970433427,
          -4.273087295212427,
          -4.135584210067757,
          -7,
          -3.3858296186697827,
          -2.370339227105049,
          -3.9120093755869783,
          -3.039678449361962,
          -7,
          -3.4565684542382322,
          -2.720405641746029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9181352261663593,
          -3.9005855866499615,
          -3.6453240015622934,
          -3.7441364524012473,
          -3.7523942084053634,
          -7,
          -3.416515692139289,
          -2.863152848577121,
          -7,
          -4.3213912783116895,
          -7,
          -7,
          -7,
          -2.726775136464893,
          -2.9235400612333575,
          -3.9934362304976116,
          -7,
          -3.9334366678262804,
          -7,
          -3.1046422774442766,
          -3.0500481493617353,
          -3.4111144185509046,
          -7,
          -3.181128699747295,
          -3.521889599753865,
          -7,
          -7,
          -3.216297886630392,
          -3.394793028193001,
          -2.4746886656622498,
          -3.012133913649598,
          -2.5995138354528406,
          -3.994493122883512,
          -3.6163704722912695,
          -3.923036668670786,
          -3.2942947280422334,
          -7,
          -3.927319024959656,
          -7,
          -3.396896449142524,
          -7,
          -3.5206290737883683,
          -7,
          -7,
          -7,
          -3.76547695894516,
          -7,
          -4.030559245291156,
          -2.790988475088816,
          -7,
          -3.9890936926103255,
          -7,
          -3.4644895474339714,
          -7,
          -2.3799801725484517,
          -2.6309925539264505,
          -7,
          -3.3939260065858368,
          -3.6411269328035094,
          -3.6148445071937103,
          -3.548020694905531,
          -3.002436061443105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8509245755642554,
          -3.4218780161701265,
          -7,
          -7,
          -3.0011385293481347,
          -7,
          -7,
          -3.63382180730168,
          -3.9953719060281623,
          -3.8043439184798657,
          -3.281222808682314,
          -7,
          -3.3939260065858368,
          -7,
          -7,
          -7,
          -2.9213697694196323,
          -3.6032526619816467,
          -3.601299310194338,
          -3.3144150134136665,
          -7,
          -3.5010592622177517,
          -7,
          -7,
          -3.9645895874899035,
          -7,
          -3.5823664295547846,
          -3.457074094628222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.203766974960574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1682617101828754,
          -7,
          -7,
          -5.571521334473009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.863929258997284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1403257393686665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.518075036877517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.443888546777372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292322539914916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.537617636420976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3344537511509307,
          -7,
          -7,
          -3.857573704147496,
          -7,
          -7,
          -5.451843212363449,
          -7,
          -7,
          -7,
          -2.8627275283179747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.273606931623152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1078880251827985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062055247375354,
          -7,
          -7,
          -7,
          -3.111598524880394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1225435240687545,
          -7,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -4.940899809694886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.554489160003819,
          -4.407084835757768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.369586890736344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.131779009369187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.760497875226527,
          -3.1997551772534747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5563025007672873,
          -7,
          -7,
          -7,
          -2.7944880466591697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5950826736446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.961003210960297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6546577546495245,
          -7,
          -4.953774184077026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.173361116894232,
          -7,
          -7,
          -7,
          -7,
          -3.2161659022859928,
          -7,
          -7,
          -7,
          -7,
          -3.5737995822157407,
          -7,
          -7,
          -7,
          -7,
          -3.628695382714023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4408041673450787,
          -7,
          -7,
          -7,
          -7,
          -3.940690765404612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1784013415337555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2460059040760294,
          -4.501509176591876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626802137202601,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.017325554561722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6057358938767465,
          -7,
          -7,
          -7,
          -7,
          -2.9585638832219674,
          -4.388669463976623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.846955325019824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6679196853173615,
          -7,
          -3.639486489268586,
          -3.642068627341504,
          -7,
          -3.0527708694748816,
          -2.4703941552108724,
          -7,
          -3.2076343673889616,
          -3.2279105473700067,
          -3.3571722577230334,
          -7,
          -3.357076839842412,
          -3.3381243371969007,
          -2.4160566473150036,
          -3.417388646165674,
          -3.6895752157599384,
          -7,
          -7,
          -3.16721884410666,
          -2.7099988280251885,
          -3.7646617324292895,
          -7,
          -7,
          -2.903277062933446,
          -3.405943680512197,
          -7,
          -3.6387886671573986,
          -3.0791812460476247,
          -3.122379732069112,
          -7,
          -3.3318376632800164,
          -3.229681842317676,
          -2.804723423210308,
          -3.652343055062715,
          -2.978363147083883,
          -3.0735717283049246,
          -3.663700925389648,
          -3.144262773761991,
          -7,
          -2.8887409606828927,
          -2.002635518598138,
          -3.2609546193291172,
          -7,
          -3.6823256186678073,
          -2.4800788400654854,
          -7,
          -2.74183416300906,
          -3.369586890736344,
          -2.286939863241526,
          -3.152777414797245,
          -3.4192947217534604,
          -1.3581676859271297,
          -2.427501565240489,
          -2.980717404970947,
          -2.4511648394432353,
          -2.9640881248211763,
          -7,
          -3.696531119969607,
          -3.1257414391287157,
          -2.921166050637739,
          -2.7514501870983787,
          -3.7080808104682315,
          -2.8728358439998014,
          -2.912753303671323,
          -3.103347529231339,
          -3.3307924320732254,
          -2.9556877503135057,
          -7,
          -3.207095540419218,
          -7,
          -3.4926672826952765,
          -2.2377255117151944,
          -3.1747380145272865,
          -3.519302849235429,
          -3.0508898095462333,
          -3.046982642758214,
          -2.2824521678624317,
          -3.6338722626583326,
          -3.1884597362982907,
          -2.978750981332984,
          -3.2997251539756367,
          -2.7668773829165607,
          -7,
          -2.7835137861438874,
          -3.3916407034923877,
          -2.943618158464063,
          -3.569549464888704,
          -3.2824710539263124,
          -7,
          -2.8831684774014112,
          -3.0893751608160995,
          -2.9811539014195136,
          -3.1699681739968923,
          -7,
          -7,
          -2.5238229473051854,
          -3.801815168581437,
          -3.889917683436206,
          -7,
          -3.255923458732901,
          -3.220195287012721,
          -7,
          -3.6392872259102367,
          -2.301161580116405,
          -7,
          -3.0215338405254566,
          -3.2558351148559623,
          -2.5688947615018245,
          -2.6790517755015113,
          -2.9069632186628955,
          -2.584331224367531,
          -2.512133843240112,
          -7,
          -3.0020580148640725,
          -1.372372610623625,
          -2.489355711136674,
          -3.7844033017530085,
          -3.3936336901704776,
          -3.437221902399778,
          -3.4044916177586857,
          -2.9952656215665012,
          -2.152107121041876,
          -3.383994789441733,
          -7,
          -3.6892200372638357,
          -3.8968610089919475,
          -3.418135498425232,
          -7,
          -2.392696953259666,
          -7,
          -7,
          -2.752999084377616,
          -2.72326617549437,
          -7,
          -7,
          -2.2756254158898863,
          -3.6322547766847135,
          -3.633165353683903,
          -3.3392526340327,
          -2.9525018478630236,
          -7,
          -3.261411574317625,
          -3.365441183394879,
          -3.217986143224739,
          -2.492461047614479,
          -7,
          -7,
          -7,
          -3.3609718837259357,
          -2.6088550445640686,
          -3.3393662493327336,
          -3.2478914706214947,
          -7,
          -3.3657686880021926,
          -3.39375064034808,
          -3.007601806096716,
          -7,
          -7,
          -3.766115283221414,
          -3.131378035763099,
          -7,
          -3.257838506552783,
          -3.271221849767887,
          -2.550024411054679,
          -3.4983105537896004,
          -2.5034880388066734,
          -3.1557534276768173,
          -7,
          -7,
          -1.8134418728304351,
          -7,
          -7,
          -7,
          -3.220631019448092,
          -7,
          -2.758438753140039,
          -3.643057683751453,
          -1.8885237048094758,
          -7,
          -3.5163653623524644,
          -7,
          -3.66162340922923,
          -2.159651197852776,
          -2.3192796035605983,
          -2.0276044006725917,
          -2.284035741109785,
          -2.350571033954783,
          -2.0043213737826426,
          -3.4425581544959227,
          -3.0619799470748785,
          -3.7223047868743278,
          -3.7440581658788354,
          -2.6105004666431815,
          -3.377306251068199,
          -3.454590812337093,
          -7,
          -3.506978304246419,
          -2.289291592392737,
          -3.7142962221969014,
          -7,
          -2.8170968897914963,
          -3.6385890832927172,
          -2.231178215389961,
          -3.207005670893413,
          -3.2671717284030137,
          -3.190425084791854,
          -3.37984917876283,
          -2.4674693607397176,
          -2.8336428415015997,
          -7,
          -3.1995494966993565,
          -2.8114442139762446,
          -2.8962505624616384,
          -7,
          -3.1612681529456736,
          -2.88930170250631,
          -7,
          -3.656577291396114,
          -7,
          -7,
          -3.383366482755039,
          -2.425715319905376,
          -3.587598729721245,
          -2.3034221151068124,
          -3.781618462251087,
          -7,
          -3.671913012441587,
          -3.683137131483007,
          -1.6400058767914076,
          -3.640779477344857,
          -3.6522463410033232,
          -2.3309932190414244,
          -3.2719190139837946,
          -3.144652031188698,
          -7,
          -7,
          -3.6524397475894204,
          -3.6629466143326246,
          -7,
          -7,
          -3.753353212641496,
          -2.2175992028350455,
          -3.6370892735303304,
          -3.641176546613114,
          -7,
          -3.66143405039392,
          -2.613753756483513,
          -2.6873505695580273,
          -3.635483746814912,
          -3.69539410829111,
          -7,
          -3.461348433647983,
          -2.2781817845675176,
          -2.291000037081086,
          -2.4743696437288834,
          -2.6035380227553624,
          -7,
          -3.2440826434308088,
          -1.9271173340484586,
          -1.8338594232497616,
          -7,
          -3.463900843761717,
          -3.4046627008737222,
          -3.6630409748939745,
          -2.711338481578628,
          -2.932727367301529,
          -7,
          -2.0139578976422134,
          -2.3881108067741996,
          -4.03450813677917,
          -3.262213705476417,
          -3.391816923613249,
          -3.6514718521990424,
          -2.824288582459545,
          -2.927562826805481,
          -3.2172864927524905,
          -7,
          -7,
          -7,
          -7,
          -2.2125009481995876,
          -3.336859820916809,
          -2.6072405038317426,
          -2.2626281576506475,
          -3.7234556720351857,
          -2.9182925127553556,
          -2.6987330518075057,
          -3.4115667095759865,
          -2.745483749306146,
          -3.6555225962534177,
          -2.9501588189938732,
          -7,
          -3.399673721481038,
          -2.8484690360999636,
          -3.064158372463118,
          -2.446314249297305,
          -2.3712526291249394,
          -3.222369590552542,
          -3.4656058906462865,
          -3.5596672783880576,
          -3.0145205387579237,
          -3.521036115641491,
          -2.7518177877368792,
          -3.3378584290410944,
          -7,
          -7,
          -2.6186391901671824,
          -2.7908262735997584,
          -2.6714505542124947,
          -7,
          -3.2093139057259306,
          -7,
          -2.546106989324988,
          -3.673665876245702,
          -3.1713851229924988,
          -3.392345155361204,
          -2.9355072658247128,
          -3.061129223038102,
          -3.216077890434055,
          -3.1085248922338677,
          -2.5518204510649163,
          -3.5062291748696355,
          -7,
          -2.7728823371830527,
          -3.344059276518739,
          -2.789007502449785,
          -7,
          -7,
          -7,
          -2.6604504241975055,
          -2.919513912264031,
          -2.5286786915678543,
          -2.933270303341617,
          -3.6447339274471924,
          -7,
          -2.9604028181441433,
          -7,
          -3.689486448364248,
          -7,
          -3.1416587697865523,
          -3.670802284260944,
          -2.407078961826646,
          -7,
          -7,
          -2.835720761230848,
          -3.653364145691976,
          -7,
          -3.4318460456987254,
          -4.443286462201648,
          -2.8821290848472056,
          -2.9789029787033003,
          -3.352923487923558,
          -2.4518960366559517,
          -2.89503234432232,
          -3.293362554711446,
          -4.079922532785249,
          -3.846878096517459,
          -4.1113045292815915,
          -2.7708623790161773,
          -4.402106556827201,
          -3.593975822227341,
          -2.9285151693915554,
          -7,
          -3.9106599721863757,
          -7,
          -3.9968162719234086,
          -7,
          -3.1013116450211458,
          -3.044042990514571,
          -7,
          -4.392855169389535,
          -4.2841147684017695,
          -7,
          -3.0376462686996453,
          -3.5632674454055637,
          -4.012398492238693,
          -3.9199492952397463,
          -4.289722698213798,
          -7,
          -4.2043642046210055,
          -7,
          -3.6633508724665367,
          -3.680901812206373,
          -2.520449566143865,
          -3.7060346607143506,
          -3.324411077979487,
          -3.0502460076216558,
          -2.517384434736918,
          -2.9705018430406236,
          -3.4012626476284873,
          -3.788875115775417,
          -2.928230055583499,
          -3.5354207180561734,
          -7,
          -3.498407052952736,
          -3.2479141932058226,
          -3.014722098700544,
          -7,
          -3.453387843845202,
          -3.7212333700172775,
          -7,
          -3.5278446323871613,
          -4.439395859342977,
          -7,
          -7,
          -3.317944006899941,
          -3.328668590032598,
          -4.864639045160562,
          -7,
          -2.9424049408561066,
          -7,
          -3.4295031177076867,
          -7,
          -4.934856848765115,
          -3.2960615842131453,
          -4.309694029565843,
          -7,
          -4.0948203803548,
          -4.013567461993526,
          -4.332674059671321,
          -3.5969817431335205,
          -3.1601897454261945,
          -3.057116444267286,
          -3.305938282296858,
          -2.8849211734753255,
          -7,
          -2.7820595190929014,
          -3.5938949816955623,
          -7,
          -4.355056701706884,
          -7,
          -3.1929575298846564,
          -3.744644971105124,
          -3.8964894735932685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0108367493541595,
          -3.0908221633946567,
          -2.5642334659748904,
          -3.658488381309017,
          -2.4384293248474367,
          -2.5849553440962674,
          -2.3202155460556875,
          -3.7712934426290596,
          -3.660675788338524,
          -2.594438592727116,
          -7,
          -2.521985231565218,
          -3.301192825565996,
          -3.2095150145426308,
          -3.479719235439571,
          -2.486481081182706,
          -2.9984046603196184,
          -2.849828739446336,
          -7,
          -7,
          -2.4006044003534495,
          -3.082516096060493,
          -2.7913397039651393,
          -3.278753600952829,
          -2.779476238043183,
          -3.3329431601256925,
          -2.895146189375992,
          -7,
          -2.751086554886017,
          -3.294456205407271,
          -2.331601685199343,
          -3.1608352072202557,
          -7,
          -3.2210228052048415,
          -2.9513722165534486,
          -2.705607163404605,
          -2.928907690243953,
          -7,
          -3.74170298395774,
          -2.4644976034256225,
          -7,
          -3.6567687792660166,
          -3.498586208817518,
          -7,
          -3.0355798140307355,
          -3.3794868137172736,
          -2.7947977592641324,
          -3.23946632295603,
          -3.6886867242841235,
          -3.0615278708905076,
          -2.203181876449656,
          -7,
          -7,
          -3.2651717231909316,
          -3.0097543224035777,
          -7,
          -2.261127916622565,
          -7,
          -3.6567687792660166,
          -2.4240645254174877,
          -3.1773200201636933,
          -2.458668755128016,
          -2.6532768489331393,
          -2.9379634365364478,
          -2.534502045262018,
          -7,
          -4.0392554438064865,
          -3.379668034033654,
          -3.2928760493088776,
          -2.669967369908504,
          -3.781324455666988,
          -2.930099638207734,
          -3.730862992046494,
          -7,
          -3.100930286261298,
          -2.2435755711032357,
          -2.7576671070627974,
          -2.5596954436646264,
          -2.8494194137968996,
          -2.7521124983293848,
          -2.9277901740740364,
          -3.7246853882373596,
          -2.673229066355951,
          -3.9286006598445242,
          -2.775893494557353,
          -3.2415464805965484,
          -3.167415803058745,
          -7,
          -3.3484346775706944,
          -3.228015175101788,
          -3.4014867017741692,
          -3.225503119926761,
          -2.3744350901089546,
          -3.1763083520279114,
          -3.0084818837366996,
          -3.550417377372692,
          -3.0242290379677126,
          -3.1253511205147526,
          -7,
          -3.2765383925663363,
          -7,
          -3.0730896213446686,
          -2.929776432804902,
          -3.4642907856538874,
          -7,
          -3.2772270809913566,
          -3.7134905430939424,
          -2.766731439484117,
          -3.6979264448065052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3831311681517926,
          -3.269746373130767,
          -3.469306445431168,
          -7,
          -3.38524868240322,
          -3.6577249542051082,
          -3.670987603010034,
          -3.394626764272209,
          -7,
          -3.8020892578817325,
          -7,
          -3.9221283467963626,
          -3.9857407410500745,
          -3.924486043733915,
          -3.6901074394563307,
          -7,
          -2.7834867041809632,
          -7,
          -7,
          -3.3725806350309133,
          -7,
          -7,
          -7,
          -3.8184898222042136,
          -2.7663452368558756,
          -7,
          -7,
          -3.7885925559203595,
          -7,
          -2.844010944373043,
          -3.7424894645817752,
          -7,
          -7,
          -3.647458652980616,
          -4.617339392030039,
          -4.7934248277031015,
          -4.96955102588328,
          -3.980660525073463,
          -3.590600369160912,
          -3.4932825782400987,
          -4.0402660074460846,
          -3.5896576010978456,
          -1.9301914949867172,
          -3.232186318508937,
          -4.726475708697577,
          -4.425654142623775,
          -2.3662277730015964,
          -2.4416658812045307,
          -3.197303826913918,
          -3.632488708541651,
          -5.094431529055729,
          -4.3956362016073784,
          -4.425491133590951,
          -2.1354082318967595,
          -3.1431944458978824,
          -5.571521334473009,
          -2.903277062933446,
          -7,
          -2.659924372244891,
          -2.9711510898354603,
          -3.714081660351876,
          -2.332189254363364,
          -2.558729597047761,
          -2.8988523338812024,
          -2.223795076826903,
          -2.659924372244891,
          -4.109260764903763,
          -4.530324296872574,
          -3.5589845322727145,
          -3.2486437205878,
          -3.663207512026945,
          -3.3811428613330228,
          -4.6685163718317675,
          -3.003500015009609,
          -4.249738631896562,
          -1.7514842196121183,
          -3.8008183956305728,
          -3.542483373920922,
          -3.038767687756788,
          -3.448420360470679,
          -3.0275725056114244,
          -4.003681721889419,
          -3.381740252243611,
          -3.498965816652076,
          -3.1140806845145326,
          -3.613872011614492,
          -1.5637051692895014,
          -3.0936095202736458,
          -2.244605096802466,
          -2.7321946654332323,
          -4.191804864059126,
          -3.3678100152186308,
          -2.7976636608710947,
          -4.080917284464512,
          -3.808881216505161,
          -3.8164506321689897,
          -4.229264028184002,
          -3.2976441188271366,
          -3.187419000615386,
          -2.33541961695756,
          -4.173781630559868,
          -4.3163687904089905,
          -2.8191189727893615,
          -4.3411213332477665,
          -3.007114868333033,
          -2.649838831877486,
          -4.109275902653879,
          -3.4947480952818424,
          -1.8998609842691896,
          -4.571686709006209,
          -3.2268529290267938,
          -5.094396585245832,
          -4.395782875918288,
          -2.3314613283186794,
          -3.2466518472694537,
          -3.652704085925939,
          -5.571555113262753,
          -2.886546427161451,
          -3.697017667097719,
          -2.6281775374460494,
          -3.0611736932801077,
          -2.4018721097306575,
          -4.317740742249334,
          -1.4881048331027253,
          -3.101651043953959,
          -2.433802967467473,
          -3.9183670583503423,
          -5.270516964338342,
          -3.2157024817843536,
          -3.365960949185637,
          -3.187715646549746,
          -2.899578750566868,
          -4.457857451703719,
          -2.5815114822370697,
          -4.125094201713969,
          -4.109140808689869,
          -4.270511140487177,
          -2.471445162701238,
          -4.27057519855504,
          -2.6533812859632135,
          -3.4969889198903217,
          -2.4198430917891574,
          -1.6524612191775423,
          -3.8818537660727794,
          -3.9920323401937745,
          -3.4859621691237974,
          -3.121863557620311,
          -2.045177012990046,
          -4.095214697082543,
          -5.571571419324428,
          -3.161378450252407,
          -3.1480223392162925,
          -2.8750612633917,
          -3.882115455473136,
          -2.6729995155027915,
          -2.099023146708665,
          -3.864464545351741,
          -3.1266487570908934,
          -3.5074778272865688,
          -2.124292607563691,
          -3.3392200721221386,
          -2.1825124537506366,
          -3.096508140805399,
          -4.27065438456062,
          -4.17424360949013,
          -2.175000237996708,
          -2.7259511122393145,
          -5.571512015723816,
          -4.156585259499548,
          -2.8072456440124998,
          -7,
          -7,
          -5.571599371148725,
          -4.316427011978534,
          -4.872608403113143,
          -2.728667900158172,
          -3.031173600321091,
          -2.3927331815438966,
          -3.178163969876514,
          -3.9287053536862415,
          -3.424160601435651,
          -3.839114761318349,
          -4.094671400641696,
          -3.3792032148334132,
          -3.1521773211707567,
          -1.953528853758455,
          -4.668488420457219,
          -4.156887984076337,
          -2.876523409926936,
          -2.0257917657984317,
          -4.209838924494543,
          -4.969475320893933,
          -3.501149813033742,
          -3.438966756918613,
          -3.240834905063529,
          -3.3906446440834803,
          -3.6978033714617387,
          -3.325600303415046,
          -3.2153824330757863,
          -3.385353203788192,
          -2.873618645598776,
          -3.497234056576676,
          -3.647629764067007,
          -1.534229556862382,
          -3.7329889622941375,
          -4.3954685131443085,
          -5.094390761004154,
          -3.702919331637138,
          -4.293147302557646,
          -4.01548433403675,
          -4.395505782843064,
          -2.6337492352334286,
          -4.066717173286226,
          -3.0249259662899615,
          -4.530211344452983,
          -2.640684773505455,
          -1.2930938683856652,
          -4.0538045718497075,
          -3.210573345194991,
          -3.0136022302861525,
          -3.563992649334369,
          -3.2811110868939424,
          -3.452085116608264,
          -3.382543387661794,
          -3.543023089872846,
          -3.535290635171898,
          -2.887380430182775,
          -4.003779475154853,
          -3.0928671726557817,
          -7,
          -2.4267694615865496,
          -3.49391789471334,
          -2.4907548557145915,
          -4.492593947407737,
          -2.639226611744344,
          -4.457605937214085,
          -3.014571167632066,
          -4.140717492997341,
          -3.355111200797834,
          -4.3414449991947865,
          -3.779563909804499,
          -2.7289053858471353,
          -3.1321227382746497,
          -7,
          -2.851682597830192,
          -2.8583983640189112,
          -3.0021087457977718,
          -7,
          -5.094453658681188,
          -3.8159317687081695,
          -3.8555471106407366,
          -4.173795601863544,
          -3.8395211092255126,
          -4.341217992586227,
          -3.585147789861776,
          -2.834929096460576,
          -2.5268295160483825,
          -2.9162216765638913,
          -1.8907155584821451,
          -4.156494400963499,
          -3.567427043386484,
          -3.381434181981451,
          -3.7662943109320315,
          -4.316290761266813,
          -4.19147430290536,
          -3.0971934465290087,
          -3.376784953893288,
          -3.4899503484509338,
          -5.270486679459426,
          -5.571528323403687,
          -4.492534571675094,
          -3.9485247389054314,
          -4.969483474373034,
          -4.080285424186225,
          -3.590615464696057,
          -2.2184336737060644,
          -3.8554376100505943,
          -3.6171576656949442,
          -7,
          -4.395727005831184,
          -3.6530089813929942,
          -3.7727151136811594,
          -5.270508810924844,
          -3.425833381920453,
          -3.3587894341625666,
          -3.0358925961617778,
          -2.9466650639704843,
          -2.724524387649076,
          -3.8570238335327254,
          -4.5302590908126295,
          -5.094429199555873,
          -2.2219937387619706,
          -3.1595602258120605,
          -2.1205424924463205,
          -3.928756528158202,
          -2.452447312946995,
          -4.040869823702905,
          -4.156839096701946,
          -4.040364955860061,
          -2.2774330193339303,
          -2.9605398778739156,
          -2.264080969652978,
          -1.8815234700203676,
          -3.1519342490354973,
          -3.256453958628053,
          -3.4785455506544474,
          -4.316417697051899,
          -3.653472896115473,
          -3.1793791861511895,
          -3.1007498735457943,
          -5.270473865990263,
          -4.015522748273542,
          -3.7275029147317134,
          -4.124647428970661,
          -3.5045881874226055,
          -4.872592097313848,
          -2.6182484922851024,
          -2.3665471616259084,
          -3.16724754053639,
          -3.4500800171371098,
          -3.643319116204025,
          -1.872077702725696,
          -2.5357768572479262,
          -4.2707044506134615,
          -2.606810478501612,
          -4.249432481236935,
          -3.7333508099061934,
          -2.0234588844056782,
          -3.3273473220791625,
          -2.866805903812722,
          -2.745208243729944,
          -2.9884118350354,
          -3.3249320097737254,
          -3.474290282608044,
          -2.938266579580553,
          -1.7846605609911599,
          -2.1789433545523966,
          -4.270508810924844,
          -5.57150619140403,
          -5.094388431285613,
          -3.0145205387579237,
          -1.9902774298426702,
          -4.027849152244213,
          -4.040641891544537,
          -2.7267109357405928,
          -3.2747582873708003,
          -2.948247974842369,
          -3.823687271851491,
          -2.863866615070336,
          -3.7867909735760246,
          -3.1437882213761426,
          -2.577965039175915,
          -4.191995636951234,
          -2.2428196610285163,
          -2.3959346665263,
          -1.8671743601343673,
          -4.368115969880938,
          -2.331915518756035,
          -2.031074609133305,
          -1.8173674420354016,
          -5.09437911228647,
          -3.7210252807581212,
          -3.739148685632311,
          -2.5802286615929395,
          -2.5294363557246826,
          -2.1466146192720306,
          -2.7530969482246705,
          -3.5460989704691377,
          -5.270472701110684,
          -2.867777704440707,
          -4.080463555206556,
          -3.720785680270854,
          -3.808747483129663,
          -3.084105580501069,
          -4.140542958380234,
          -1.5961402421300699,
          -4.726419799951237,
          -4.066373685809159,
          -2.5573110687395006,
          -2.765523178137077,
          -3.2376616015703434,
          -3.724517013234964,
          -2.7399055130335364,
          -2.7991063030442995,
          -3.4302317784112404,
          -2.5967085150862332,
          -2.0367966219629032,
          -3.154853485461981,
          -4.031505412197983,
          -3.185122539673452,
          -2.866564224322712,
          -2.490660190249227,
          -2.689407646790484,
          -3.166526206590297,
          -2.7514837724270707,
          -2.468038753976699,
          -3.5703411380770893,
          -3.049510408263689,
          -3.98425258295172,
          -2.2509900212015888,
          -2.923950049247113,
          -2.448803173921036,
          -2.9815994616341035,
          -3.2255688175185697,
          -2.9388927346460196,
          -3.2078295271901087,
          -4.294835039979782,
          -2.334279232192053,
          -3.3670470284765495,
          -2.7644190002806313,
          -2.985512748745352,
          -3.1938514061610848,
          -4.251030698729345,
          -3.2133504384571974,
          -3.4621784516532577,
          -2.933524217189809,
          -3.190027865967299,
          -2.2066781165037477,
          -3.7334205850552626,
          -2.535360810015817,
          -2.0350499109066176,
          -3.0108795765633274,
          -3.183032267162237,
          -2.7214155369241313,
          -3.1597691998503703,
          -1.5946023431755172,
          -2.9252392145091695,
          -3.4129654293113334,
          -2.8337005490492997,
          -1.1542108054016846,
          -1.822649805614788,
          -4.271849734966777,
          -2.209663496366329,
          -2.89186034424264,
          -4.726622434922055,
          -3.079212265974205,
          -2.892479561925183,
          -3.6367091893856673,
          -4.250172460601185,
          -1.9694607920772684,
          -1.572719571751327,
          -1.9535562765024543,
          -4.027735087817683,
          -2.667967660341314,
          -3.7936914585507266,
          -2.1332646988911512,
          -3.697012416744354,
          -2.065997950804967,
          -2.9753050118273934,
          -3.037637975298863,
          -4.872658481383454,
          -2.9435609055482006,
          -2.702714399048319,
          -2.4024357720287437,
          -3.140506887703148,
          -2.3455343675432965,
          -3.021303027970397,
          -2.1571977400586926,
          -2.338098971306541,
          -3.864601811346698,
          -1.807053650433598,
          -2.2413054552329488,
          -3.0278914426406773,
          -2.067252249586692,
          -5.094883215846508,
          -2.6401117866545993,
          -2.2896969042724162,
          -3.0742400121298266,
          -4.668668908051015,
          -4.96954869669576,
          -5.270493668465084,
          -5.571707667478758,
          -3.895680320361074,
          -2.361788883265569,
          -3.1258865574656323,
          -2.2851670183537824,
          -4.668708488848728,
          -3.399735263171256,
          -2.488678178460122,
          -3.670601819347056,
          -3.539712523108797,
          -4.156809994461382,
          -3.046531995970811,
          -4.4255214113236825,
          -2.2974027680604534,
          -2.970664845450082,
          -3.7867048864389106,
          -4.054949478651154,
          -3.263685654331817,
          -3.9106174457294722,
          -3.0928267958659172,
          -4.873485683733355,
          -4.367957784495365,
          -3.4377827213819003,
          -7,
          -4.341802148803916,
          -2.864397059718746,
          -3.026344570437043,
          -7,
          -3.096454474606331,
          -5.270640411608736,
          -4.425620381490889,
          -3.003290482940511,
          -2.173289056021275,
          -2.500372706879035,
          -7,
          -3.6990255904722655,
          -2.5628684747750716,
          -4.794280028116081,
          -2.981346957908639,
          -7,
          -3.5949912045608907,
          -2.370965741214641,
          -7,
          -3.928241018789919,
          -3.586854002667875,
          -3.4454764029676785,
          -2.9994017131904993,
          -4.668986616818102,
          -3.618611674183966,
          -3.5470277612346184,
          -3.9810434059034163,
          -3.2205229985629567,
          -2.6487906292519825,
          -3.4010680453089526,
          -5.270615957861121,
          -2.9306133334104154,
          -3.16095264798927,
          -4.211618443694198,
          -2.8817780961533748,
          -5.094965819049405,
          -5.270761495592153,
          -3.5670606448979316,
          -3.391326344070833,
          -1.5869527633672311,
          -3.2537679958814194,
          -3.606901208545657,
          -3.9817698346980532,
          -4.727056500770033,
          -3.5182323296424447,
          -3.847698347974595,
          -3.564831473888491,
          -4.367822816121378,
          -3.340154094072924,
          -2.702762185550534,
          -4.054186930134149,
          -4.872585108926733,
          -2.7284228629426615,
          -1.9160871107025628,
          -3.1142888471310615,
          -3.433528666134524,
          -2.6109625965853214,
          -3.3950994847121656,
          -2.9449171643218968,
          -3.3495845998050275,
          -2.848202755608424,
          -3.593874237290987,
          -4.110320296840297,
          -3.500452781846228,
          -4.229180184178066,
          -4.872580449939517,
          -3.044724692093926,
          -4.069161463720277,
          -3.7397177364027008,
          -3.858216656412867,
          -2.444336669547818,
          -3.8744203511135016,
          -3.0872320042826615,
          -2.5964964499907106,
          -3.0415392723231385,
          -3.1172562261895367,
          -4.617862013700557,
          -3.108549913289516,
          -7,
          -2.972079277025493,
          -2.9811151224266053,
          -3.770336441095149,
          -4.726480367434906,
          -3.59063520421957,
          -3.2065048501589817,
          -2.4342353567673647,
          -3.8240025694369812,
          -4.969910735382101,
          -5.571598206525296,
          -4.668479102932586,
          -5.270689314973614,
          -7,
          -5.571784506559266,
          -3.1798595945524055,
          -4.2942190152208815,
          -3.0567387302695983,
          -4.425886906586064,
          -4.271093139365375,
          -4.191540668110219,
          -4.109506397038123,
          -4.0407349395278604,
          -4.1918304604119605,
          -3.3279693044605367,
          -3.7666312408284446,
          -2.887396965867297,
          -3.5862875532129364,
          -3.790804110222411,
          -4.0669929309681,
          -4.969525404133492,
          -3.736004819709059,
          -4.210317356400843,
          -7,
          -2.630698004360275,
          -3.948933164706531,
          -3.89088538729425,
          -3.499120804923696,
          -4.159138980494756,
          -3.6100082786464394,
          -4.341221485894443,
          -4.2706986292759455,
          -3.5911713115781194,
          -4.726528116611382,
          -3.542598380426847,
          -3.4023415632229432,
          -4.531000232674238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7363965022766426,
          -3.137986732723532,
          -4.36078268987328,
          -7,
          -7,
          -7,
          -2.952038646332828,
          -3.4456820268526793,
          -2.9444826721501687,
          -7,
          -7,
          -7,
          -7,
          -3.0683030644136933,
          -7,
          -7,
          -3.405943680512197,
          -2.659924372244891,
          -7,
          -2.3010299956639813,
          -7,
          -1.5159826576301263,
          -2.26030994579492,
          -7,
          -3.8685033726242364,
          -2.6074550232146687,
          -7,
          -7,
          -3.1126050015345745,
          -3.3912880485952974,
          -7,
          -7,
          -7,
          -2.8342617088117708,
          -3.0965624383741357,
          -3.2232174959136897,
          -7,
          -1.7718546157393802,
          -7,
          -7,
          -7,
          -3.085290578230065,
          -3.2081725266671217,
          -3.5619357633137816,
          -2.9501213475113732,
          -3.344588742578714,
          -3.4054424135111656,
          -3.209112703738592,
          -2.750970984437319,
          -7,
          -7,
          -7,
          -3.5075860397630105,
          -7,
          -3.210853365314893,
          -7,
          -7,
          -3.1610683854711747,
          -3.6183619311098782,
          -2.7078286078115443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3944516808262164,
          -7,
          -7,
          -4.42791434984591,
          -7,
          -3.4353665066126613,
          -7,
          -7,
          -3.424663890583937,
          -7,
          -2.785329835010767,
          -7,
          -7,
          -7,
          -3.552789850192782,
          -2.818005830532529,
          -2.5786392099680726,
          -7,
          -3.193596844909757,
          -3.592398846115564,
          -3.7371926427047373,
          -2.9876662649262746,
          -7,
          -7,
          -3.0492180226701815,
          -3.4574276929464847,
          -3.331427296520743,
          -3.040602340114073,
          -3.686397907850216,
          -7,
          -7,
          -7,
          -3.692979037459632,
          -7,
          -2.6073018058971846,
          -7,
          -2.895422546039408,
          -3.6080801001958815,
          -7,
          -7,
          -7,
          -7,
          -3.6939027410660605,
          -7,
          -7,
          -3.417969642214737,
          -3.2965555060882235,
          -2.6745856023029138,
          -7,
          -3.2317243833285163,
          -3.6116171105543358,
          -3.1383026981662816,
          -7,
          -7,
          -3.7917081888307824,
          -2.7701152947871015,
          -2.554825535577837,
          -3.351699700405266,
          -7,
          -7,
          -3.610383318582761,
          -3.535167485114944,
          -7,
          -7,
          -4.376394442037267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.865814380167968,
          -7,
          -7,
          -7,
          -2.3631417096979495,
          -7,
          -7,
          -7,
          -3.076094046682475,
          -7,
          -7,
          -2.56790818266893,
          -3.5058403523436374,
          -2.962369335670021,
          -7,
          -7,
          -7,
          -3.0111473607757975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.091261600243427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.644832328825636,
          -7,
          -7,
          -7,
          -2.8524037414231755,
          -3.1388839362423897,
          -7,
          -2.459057254641927,
          -3.633670406051444,
          -7,
          -3.1476763242410986,
          -7,
          -7,
          -7,
          -7,
          -3.1970047280230456,
          -7,
          -3.7058637122839193,
          -7,
          -3.9727118405470665,
          -7,
          -7,
          -7,
          -3.7897921677306754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8727388274726686,
          -2.9508514588885464,
          -7,
          -3.4578818967339924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0277572046905536,
          -3.1065308538223815,
          -7,
          -2.532117116248804,
          -3.4577810036026517,
          -3.3292961591399655,
          -3.8449118739121406,
          -5.412321920685612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.412460547429961,
          -3.3316297176299323,
          -3.024485667699167,
          -7,
          -7,
          -3.00987563371216,
          -7,
          -7,
          -7,
          -7,
          -4.467682084713682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4718781993072905,
          -7,
          -7,
          -3.511749711344983,
          -3.1451964061141817,
          -7,
          -7,
          -7,
          -3.8474081224923307,
          -7,
          -3.6364878963533656,
          -7,
          -4.015778756389041,
          -7,
          -7,
          -7,
          -3.2327844143207414,
          -3.296957546032856,
          -2.6177294820802555,
          -2.0725080174785213,
          -7,
          -7,
          -2.8636202202703154,
          -7,
          -3.2748503200166645,
          -7,
          -2.716559774821619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.420120848085703,
          -2.718794669189991,
          -7,
          -3.501470072100412,
          -7,
          -4.656213231673656,
          -3.9168748785386835,
          -7,
          -3.693639026161548,
          -7,
          -7,
          -2.109568321112792,
          -7,
          -3.9766250520507276,
          -3.2600713879850747,
          -7,
          -7,
          -7,
          -2.960787780819836,
          -4.652587967664366,
          -2.9404611431699053,
          -2.9479236198317262,
          -7,
          -7,
          -3.1851878890039917,
          -2.8823347654013243,
          -7,
          -3.150756439860309,
          -1.9790487971416582,
          -1.765786159439582,
          -2.1957267300569976,
          -7,
          -7,
          -7,
          -7,
          -3.6628522332647964,
          -7,
          -3.9053760693328554,
          -3.1156805676460455,
          -4.761607519173373,
          -7,
          -7,
          -3.5288918306317196,
          -1.9037854146535949,
          -7,
          -7,
          -1.911772031594504,
          -2.889189612047073,
          -2.3334472744967503,
          -2.1824609220670608,
          -2.2249644667161625,
          -7,
          -7,
          -7,
          -7,
          -2.6748611407378116,
          -7,
          -3.3849802956513044,
          -3.085290578230065,
          -2.468807861671502,
          -7,
          -7,
          -4.298973090963759,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.118220621846332,
          -3.8827009520401465,
          -7,
          -7,
          -7,
          -4.245274069329869,
          -7,
          -4.108993244279538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4958091474186204,
          -7,
          -7,
          -4.361246068497589,
          -7,
          -7,
          -4.300254812427243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.016427410068392,
          -7,
          -7,
          -4.465609606995967,
          -3.608365550303124,
          -7,
          -7,
          -7,
          -3.8747288064840673,
          -7,
          -7,
          -4.448025752873446,
          -3.709317082386597,
          -3.7812076748228813,
          -7,
          -4.443982303007413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.692481182743817,
          -4.534296926538465,
          -7,
          -7,
          -2.5464604029452773,
          -7,
          -7,
          -7,
          -7,
          -4.092123869244251,
          -7,
          -7,
          -7,
          -7,
          -4.7858279199958655,
          -7,
          -3.7481363222044366,
          -7,
          -4.423458871819513,
          -3.590089133690572,
          -7,
          -3.866425188468594,
          -7,
          -7,
          -5.348388597857494,
          -7,
          -7,
          -4.612582551653833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.433595295800582,
          -7,
          -3.593618308129536,
          -7,
          -7,
          -4.350790547426457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.897008193182832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3492775274679554,
          -3.5769169559652068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.794996633134222,
          -7,
          -7,
          -7,
          -3.957798774929998,
          -7,
          -7,
          -7,
          -7,
          -4.261048643344225,
          -7,
          -7,
          -3.4528593357958526,
          -7,
          -2.8140810398403664,
          -3.1222158782728267,
          -7,
          -7,
          -7,
          -7,
          -4.004665233247877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6577931719269867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5554471443890283,
          -7,
          -7,
          -4.314604473213435,
          -7,
          -3.0687793630095612,
          -2.962369335670021,
          -7,
          -7,
          -7,
          -7,
          -2.975891136401793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8357666456143447,
          -7,
          -7,
          -4.074499499644511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9291633832050645,
          -4.402502112664219,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0835026198302673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.122215878272827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.027050460056304,
          -7,
          -7,
          -7,
          -7,
          -3.4733409641859354,
          -7,
          -7,
          -7,
          -7,
          -3.693023067923694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.824451270036613,
          -7,
          -7,
          -7,
          -3.7196626830180466,
          -3.9120891431474747,
          -3.1290450598879582,
          -7,
          -7,
          -7,
          -7,
          -3.2977804004756983,
          -3.5881596163830918,
          -7,
          -7,
          -2.9711510898354603,
          -2.3010299956639813,
          -7,
          -7,
          -1.8377988012727573,
          -2.6748611407378116,
          -2.45838601110505,
          -4.020988354461687,
          -2.233358778039036,
          -2.77232170672292,
          -7,
          -7,
          -3.3109056293761414,
          -2.8603380065709936,
          -7,
          -7,
          -2.5183258929029195,
          -7,
          -3.965327156210406,
          -2.5185139398778875,
          -7,
          -2.737987326333431,
          -7,
          -3.344294005898312,
          -7,
          -7,
          -7,
          -2.4348881208673157,
          -7,
          -3.3285190875421873,
          -2.7505083948513462,
          -3.127968207161918,
          -3.7967130632808965,
          -7,
          -2.734399742520567,
          -2.4446692309385245,
          -7,
          -7,
          -7,
          -7,
          -3.0141003215196207,
          -3.5725230978496376,
          -3.849188998468175,
          -7,
          -7,
          -3.107718610520263,
          -7,
          -3.736157375273132,
          -2.790385706800655,
          -7,
          -7,
          -4.084101592916174,
          -7,
          -3.3634239329171765,
          -7,
          -7,
          -3.401400540781544,
          -3.3224260524059526,
          -7,
          -7,
          -3.1484484035233837,
          -3.0191162904470725,
          -2.496514518697745,
          -7,
          -2.008126826230696,
          -7,
          -3.850184028210951,
          -3.5435714239623652,
          -4.02143739646709,
          -7,
          -7,
          -7,
          -3.2615007731982804,
          -7,
          -3.5883837683787276,
          -7,
          -3.8499719123288503,
          -7,
          -2.6893088591236203,
          -7,
          -3.1967747357061187,
          -7,
          -2.9077695418108918,
          -2.8819549713396007,
          -2.788168371141168,
          -2.9801124999406077,
          -7,
          -7,
          -7,
          -7,
          -3.686529022816038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1744959193753,
          -4.754776302434371,
          -2.9818186071706636,
          -7,
          -7,
          -4.215937034361498,
          -2.8302678009336417,
          -2.6719438254879586,
          -7,
          -7,
          -7,
          -3.698383310678066,
          -3.478999131673357,
          -7,
          -7,
          -4.067665881974249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.732393759822968,
          -3.5532760461371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7482526493531543,
          -7,
          -7,
          -7,
          -3.428084929572462,
          -7,
          -7,
          -7,
          -7,
          -2.482873583608754,
          -2.889021422095225,
          -7,
          -7,
          -3.0818871394235496,
          -3.2757719001649312,
          -3.578524605274993,
          -3.2397998184470986,
          -7,
          -3.884107698266393,
          -2.916980047320382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146334793350271,
          -7,
          -7,
          -7,
          -3.121149319077149,
          -3.34456563320384,
          -7,
          -7,
          -7,
          -2.4865721505183567,
          -7,
          -3.2195845262142546,
          -7,
          -7,
          -7,
          -3.156952770767806,
          -7,
          -7,
          -7,
          -3.2536771654229244,
          -7,
          -7,
          -7,
          -3.473705886887772,
          -7,
          -3.760497875226527,
          -7,
          -7,
          -7,
          -2.960470777534299,
          -3.045948538105334,
          -2.6549462265843444,
          -7,
          -2.91204482964487,
          -7,
          -3.554125581513013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6334684555795866,
          -7,
          -7,
          -3.6124659639531425,
          -3.1084522639030685,
          -3.831805808674391,
          -4.7587479291548584,
          -7,
          -2.910090545594068,
          -7,
          -7,
          -7,
          -7,
          -3.3362595520141936,
          -7,
          -2.929418925714293,
          -7,
          -7,
          -7,
          -2.5532760461370994,
          -7,
          -7,
          -7,
          -3.942677590997809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1222158782728267,
          -3.68556261115823,
          -3.2794387882870204,
          -3.7841892053809607,
          -3.3406423775607053,
          -7,
          -7,
          -7,
          -3.838765160988825,
          -7,
          -3.932372282147914,
          -7,
          -4.711317845065442,
          -7,
          -7,
          -7,
          -3.516094465754475,
          -3.742882171437273,
          -3.359835482339888,
          -2.22212884925967,
          -7,
          -7,
          -3.0199466816788423,
          -7,
          -7,
          -3.1610683854711747,
          -7,
          -7,
          -7,
          -3.171433900943008,
          -7,
          -7,
          -7,
          -7,
          -2.673072130161556,
          -7,
          -7,
          -3.2127201544178425,
          -3.927800081376748,
          -3.894426837964188,
          -7,
          -3.587441551559959,
          -7,
          -7,
          -2.441470694043007,
          -3.2830749747354715,
          -3.957128197676813,
          -2.7291647896927698,
          -3.486784571399042,
          -7,
          -7,
          -3.367169488534681,
          -4.68228435847426,
          -2.791515211941625,
          -2.673020907128896,
          -7,
          -7,
          -7,
          -2.1224801280417966,
          -7,
          -7,
          -2.8115750058705933,
          -2.5599066250361124,
          -7,
          -2.920123326290724,
          -3.7013952690139202,
          -7,
          -3.11293997608408,
          -2.7171502028538876,
          -7,
          -4.556169779397686,
          -3.7855611597971244,
          -5.030219092203501,
          -7,
          -3.1915907263792107,
          -3.8145305942352303,
          -2.1586566299201766,
          -7,
          -7,
          -7,
          -2.9370161074648142,
          -2.743010616594783,
          -2.4902064351734503,
          -3.0269416279590295,
          -7,
          -7,
          -3.4008832155483626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.820994641680185,
          -7,
          -2.380211241711606,
          -4.595463152458813,
          -4.77205018781323,
          -7,
          -7,
          -7,
          -4.373426962185743,
          -7,
          -4.289722698213798,
          -7,
          -3.977586438003851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.621617624802069,
          -7,
          -4.312621582586981,
          -7,
          -5.3879892372522376,
          -4.274411883425874,
          -4.532180884618628,
          -3.8042076050820413,
          -7,
          -7,
          -7,
          -7,
          -4.297227800014187,
          -7,
          -4.677342280911539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.452874643755949,
          -7,
          -4.01205647985382,
          -7,
          -4.193235941639753,
          -4.066076087588171,
          -3.8866598978612026,
          -7,
          -4.0278183112472155,
          -7,
          -4.281235435173627,
          -3.692097489441729,
          -3.193958978019187,
          -4.441538038702161,
          -3.707352501227481,
          -3.777454010257933,
          -7,
          -4.136371723492323,
          -7,
          -7,
          -3.794766797940821,
          -7,
          -7,
          -7,
          -4.292676867185116,
          -4.232654522990873,
          -7,
          -7,
          -3.0868045767268297,
          -7,
          -4.65454712291749,
          -7,
          -5.405401006456081,
          -7,
          -7,
          -7,
          -7,
          -4.432504298861027,
          -4.004636588688825,
          -3.604657972047871,
          -3.9133899436317554,
          -7,
          -4.296231776287164,
          -4.186476030554059,
          -7,
          -4.040503445776426,
          -4.4788982217971025,
          -7,
          -4.171431949930172,
          -7,
          -7,
          -4.130987398931264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.469188514747329,
          -7,
          -4.184180195347259,
          -7,
          -7,
          -4.342659504139119,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.496279102458945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2598326990634834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.636287252098513,
          -7,
          -3.46553155697355,
          -7,
          -7,
          -3.9499508114323683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1225435240687545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.241172786770047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.870130678165955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.334252642334231,
          -3.8029788553352617,
          -7,
          -7,
          -3.4927603890268375,
          -3.5890453605786625,
          -7,
          -7,
          -4.0046867154273835,
          -7,
          -3.4352071032407476,
          -7,
          -4.0327396052094935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.529533012323238,
          -7,
          -7,
          -4.069396732234589,
          -7,
          -3.446537167073644,
          -7,
          -3.2528530309798933,
          -7,
          -3.3432115901797474,
          -3.6665179805548807,
          -7,
          -7,
          -7,
          -3.1089031276673134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.303196057420489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.108362034955172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.197473535014777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.20390278111006,
          -7,
          -7,
          -7,
          -7,
          -4.20441845752325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6339126227235914,
          -7,
          -7,
          -3.6387886671573986,
          -3.714081660351876,
          -7,
          -7,
          -7,
          -2.4739733021220007,
          -7,
          -7,
          -4.864226204379169,
          -2.946452265013073,
          -2.424881636631067,
          -7,
          -7,
          -7,
          -2.6009728956867484,
          -7,
          -7,
          -3.299942900022767,
          -7,
          -4.839446621166152,
          -7,
          -2.7788744720027396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.128743810173325,
          -7,
          -3.189321841020497,
          -7,
          -7,
          -2.8813846567705728,
          -2.9159272116971158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3500540935790304,
          -7,
          -3.709354775834396,
          -7,
          -7,
          -7,
          -4.82346118709814,
          -7,
          -7,
          -7,
          -7,
          -3.8596185787721806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.584331224367531,
          -7,
          -4.451502439935573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.140947771342662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.021602716028242,
          -3.0791812460476247,
          -7,
          -3.8957723455519986,
          -7,
          -7,
          -7,
          -7,
          -4.379776729937588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1649176661009575,
          -7,
          -7,
          -7,
          -7,
          -4.515555950945086,
          -7,
          -3.3984608496082234,
          -7,
          -7,
          -7,
          -3.6912362538205015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.082066934285113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8605775512444156,
          -7,
          -7,
          -4.673753333997826,
          -7,
          -7,
          -7,
          -2.8915374576725643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.394889257167419,
          -4.27370329631894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1245042248342823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.459643742890279,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6875289612146345,
          -2.785329835010767,
          -7,
          -7,
          -7,
          -3.265525335219074,
          -3.1473671077937864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.760271660542063,
          -7,
          -7,
          -7,
          -7,
          -3.8318697742805017,
          -7,
          -3.575905941553608,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9787737843301225,
          -7,
          -3.946452265013073,
          -3.0879587894607328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3787611753163733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.913124790389559,
          -3.0330214446829107,
          -7,
          -7,
          -4.8299338468023905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.251273113674373,
          -7,
          -3.9412131875853214,
          -7,
          -3.764250875438773,
          -7,
          -7,
          -7,
          -5.351095099964148,
          -3.852540985769799,
          -7,
          -7,
          -7,
          -7,
          -2.582744965691277,
          -7,
          -7,
          -3.0549958615291417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3818908806262575,
          -5.273071911554271,
          -7,
          -7,
          -5.01741735305172,
          -3.45178643552429,
          -7,
          -2.9479236198317262,
          -7,
          -7,
          -3.7620029693751156,
          -3.21818526771214,
          -2.7781512503836434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.544591639398066,
          -7,
          -7,
          -3.989727837317633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.587127024478463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.528003465383692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.610724025229824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.933659351805472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.010387598375084,
          -7,
          -7,
          -3.659440781870318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0968901590922195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6046471793073565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5725812013324862,
          -7,
          -7,
          -7,
          -7,
          -3.229169702539101,
          -7,
          -3.721645766289746,
          -7,
          -4.494015374757144,
          -3.278296208091274,
          -7,
          -7,
          -7,
          -7,
          -3.6337713460825554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6196150057428067,
          -7,
          -3.414137362184477,
          -7,
          -7,
          -4.2430132311496775,
          -7,
          -7,
          -7,
          -7,
          -3.3506356082589543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.971554153446061,
          -7,
          -7,
          -3.4998244958395794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.267504168979949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9282626755124257,
          -3.281714970027296,
          -7,
          -4.298700282631671,
          -7,
          -7,
          -7,
          -4.019407108018883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.920123326290724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.629613445378183,
          -7,
          -7,
          -3.165541076722373,
          -7,
          -3.6110857334148725,
          -3.6348801407665263,
          -3.656194062179186,
          -7,
          -7,
          -7,
          -3.912363785988484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.226342087163631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3005954838899636,
          -3.189770956346874,
          -2.8433885229380875,
          -7,
          -3.3592661646067485,
          -3.3271572027970855,
          -7,
          -7,
          -7,
          -2.650435343270571,
          -2.6655316197359236,
          -2.6475459629789473,
          -7,
          -7,
          -7,
          -7,
          -2.563537586335348,
          -3.1794081515138357,
          -7,
          -3.0791812460476247,
          -2.332189254363364,
          -1.5159826576301263,
          -1.8377988012727573,
          -2.4739733021220007,
          -7,
          -2.0521165505499983,
          -3.0400086360135417,
          -3.3684321679068323,
          -2.2237554536572413,
          -7,
          -7,
          -3.344195715871435,
          -3.0506374978013096,
          -2.709269960975831,
          -3.3443922736851106,
          -7,
          -2.010057537162737,
          -3.3348556896172914,
          -3.3063815104465792,
          -3.2990712600274095,
          -2.7501225267834,
          -2.94411237698898,
          -3.42422807069598,
          -3.282244366936266,
          -7,
          -3.101403350555331,
          -3.658964842664435,
          -2.1954112236995664,
          -7,
          -2.8852607947341835,
          -2.83905884417379,
          -2.127714993360055,
          -3.1015752462559334,
          -3.3459615418131414,
          -2.682686478249768,
          -1.9634658494621036,
          -7,
          -2.92668535582776,
          -7,
          -7,
          -2.672836454171397,
          -3.4034637013453173,
          -3.2667313418701927,
          -3.2938043599193367,
          -3.2750808984568587,
          -2.9876662649262746,
          -7,
          -3.5298151966446305,
          -2.271299367747906,
          -7,
          -3.608312042697327,
          -3.57333261790251,
          -3.2803506930460054,
          -2.958085848521085,
          -7,
          -7,
          -2.7715874808812555,
          -7,
          -2.6287974855667104,
          -7,
          -3.617629297757842,
          -3.3754807146185724,
          -2.8725447293769673,
          -3.0848442782402152,
          -1.5683448430275597,
          -7,
          -2.8346902259765696,
          -3.080896934973246,
          -2.896048304184059,
          -2.5744942682853273,
          -7,
          -7,
          -7,
          -2.877601679729272,
          -3.0167827124868407,
          -7,
          -3.5877951224616518,
          -7,
          -2.958085848521085,
          -7,
          -2.4983916469616974,
          -7,
          -1.9984714135391215,
          -3.154271775993095,
          -2.0535487985639476,
          -2.6763311869799007,
          -3.361160995195026,
          -2.616160312847583,
          -2.8246138966934105,
          -2.9720484774455382,
          -2.6665690309808827,
          -7,
          -7,
          -2.7013212268209346,
          -2.732215001029787,
          -2.42736244013164,
          -3.100370545117563,
          -3.0065729981620746,
          -3.301994853902822,
          -3.0580462303952816,
          -7,
          -7,
          -3.3093302808059466,
          -7,
          -2.3138672203691537,
          -2.5266622930104643,
          -3.2844307338445193,
          -7,
          -2.9473928721027094,
          -2.29104577475738,
          -7,
          -3.262213705476417,
          -4.091684540012315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.081455327822574,
          -3.3505710339547834,
          -2.4669235501007294,
          -3.792391689498254,
          -7,
          -3.951386094880293,
          -3.26528962586083,
          -7,
          -2.534026106056135,
          -7,
          -2.9518769481062366,
          -7,
          -7,
          -2.6794278966121188,
          -3.780305308257236,
          -2.4144958388716917,
          -7,
          -3.515873843711679,
          -2.853850249054781,
          -2.586812269443376,
          -3.459392487759231,
          -3.484299839346786,
          -3.1095785469043866,
          -2.668851648082519,
          -2.90444504107691,
          -2.8024316264307236,
          -2.707002099520009,
          -3.351409751925439,
          -3.3401144934431914,
          -3.3334472744967503,
          -7,
          -3.2412973871099933,
          -2.9084850188786495,
          -3.3240765797394864,
          -7,
          -7,
          -2.81135154588012,
          -7,
          -4.310523383951521,
          -7,
          -2.588436493215736,
          -2.7333297583119047,
          -7,
          -3.184762388171225,
          -2.7616773079942547,
          -2.6782147827453997,
          -2.615014323889285,
          -2.570104922212994,
          -2.8076703012304836,
          -3.4345689040341987,
          -3.1744959193752993,
          -2.9051788751397356,
          -7,
          -3.4764693239263837,
          -7,
          -2.732732259046577,
          -7,
          -4.067219688974141,
          -7,
          -2.9749391317894913,
          -7,
          -3.004812518287239,
          -3.0565237240791006,
          -2.8739015978644615,
          -3.3220124385824006,
          -2.5705429398818973,
          -2.3879615590823304,
          -2.4739733021220007,
          -7,
          -2.343698142772449,
          -4.38172861853511,
          -3.4518375861611674,
          -7,
          -7,
          -3.021602716028242,
          -2.669316880566112,
          -3.296445794206396,
          -3.3406423775607053,
          -7,
          -3.0567143295163945,
          -2.978043493909963,
          -1.8578492061672989,
          -4.173448514744314,
          -4.266916778057951,
          -7,
          -2.8528864461530965,
          -2.6545615547417434,
          -3.4300750555519395,
          -3.2593549273080344,
          -7,
          -2.6972293427597176,
          -2.785472203306388,
          -7,
          -7,
          -7,
          -3.286905352972375,
          -3.3109056293761414,
          -7,
          -3.2821687783046416,
          -2.6461235362250264,
          -3.7450357345667062,
          -2.77232170672292,
          -2.782233672588372,
          -7,
          -7,
          -7,
          -3.06595298031387,
          -7,
          -2.3774883833761327,
          -3.7907776013376937,
          -1.8858023520977822,
          -3.392638340062748,
          -2.6657464890759366,
          -7,
          -7,
          -7,
          -3.342639773794436,
          -7,
          -3.1032293300163634,
          -7,
          -3.643032984773319,
          -7,
          -7,
          -7,
          -2.3544220657953714,
          -3.136910727481376,
          -2.2761274421265845,
          -1.8312160648801672,
          -3.917558020825436,
          -2.4649364291217326,
          -2.3725438007590705,
          -7,
          -3.1451964061141817,
          -3.0235610900969454,
          -2.324499061028818,
          -7,
          -3.3176455432211585,
          -2.6694718473766423,
          -7,
          -2.4825877695267677,
          -3.2528530309798933,
          -2.849542252005017,
          -2.528207213524963,
          -2.6570558528571038,
          -2.832082924950745,
          -7,
          -3.9057038389018577,
          -2.8821923815471764,
          -7,
          -3.7132594739307883,
          -3.2785249647370174,
          -2.914166793875635,
          -1.7850724244637253,
          -3.210318519826232,
          -3.5392852461514557,
          -2.754061514909023,
          -2.8305303467241485,
          -2.817036226050029,
          -3.3710678622717363,
          -2.7167186243047006,
          -4.157128056609563,
          -2.2394496414571745,
          -2.777185077611623,
          -7,
          -7,
          -2.9439888750737717,
          -2.1211352942926553,
          -7,
          -2.7638022240745928,
          -2.208732401028409,
          -2.709905669040404,
          -2.4944076056666726,
          -7,
          -3.5020855592260456,
          -7,
          -2.5722075432302685,
          -2.895422546039408,
          -7,
          -3.5427009694481106,
          -2.6305973558006004,
          -4.263262426772131,
          -7,
          -3.0993928573323,
          -3.184860064113035,
          -1.7977515163651112,
          -7,
          -7,
          -7,
          -2.98109342314593,
          -2.6390174887025926,
          -2.0131048534191742,
          -2.233123078521081,
          -2.6653464274249417,
          -3.238798562713917,
          -3.2837533833325265,
          -7,
          -2.890607291367314,
          -2.781216659079688,
          -2.718124074303963,
          -7,
          -2.2686546414005466,
          -7,
          -2.9564085711958326,
          -3.831613855309099,
          -7,
          -7,
          -7,
          -7,
          -3.9200015118779157,
          -7,
          -3.827078353439126,
          -3.586722297518069,
          -7,
          -7,
          -7,
          -4.4288310513865685,
          -4.702542542403012,
          -4.596322138680332,
          -7,
          -4.685822321854299,
          -4.929500667570718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7705329210993614,
          -3.3029181682256157,
          -7,
          -7,
          -7,
          -7,
          -4.783975003412671,
          -7,
          -7,
          -4.350209240309948,
          -4.228656958108935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5138013224159392,
          -7,
          -4.205393852614679,
          -4.071005172856093,
          -3.6546577546495245,
          -7,
          -4.355144896174567,
          -7,
          -3.3141657830188542,
          -3.348927619178392,
          -7,
          -7,
          -3.3666050425418725,
          -3.6923885981513846,
          -7,
          -3.9808362964839756,
          -3.90156729002845,
          -7,
          -3.878694100396108,
          -4.397035735379094,
          -7,
          -7,
          -3.8213126016291095,
          -3.9456837798020445,
          -5.707576136961682,
          -7,
          -2.5125158799574394,
          -7,
          -4.183734740768417,
          -7,
          -5.407664483299706,
          -3.5208109315364733,
          -7,
          -7,
          -4.348810920405178,
          -3.9761359127824605,
          -4.315123310117041,
          -7,
          -3.771121828334957,
          -3.887898488096872,
          -3.413872747686039,
          -3.6606622359058285,
          -2.9034517483472246,
          -3.47278081981647,
          -4.485238608775484,
          -3.6953065224318027,
          -4.17401714218392,
          -7,
          -3.117519866385761,
          -3.667743423125636,
          -4.323994202181974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9823277781189925,
          -3.080506233707164,
          -2.6745462253948187,
          -7,
          -7,
          -3.253729320398597,
          -7,
          -3.525044807036845,
          -7,
          -3.5391388535767745,
          -7,
          -3.444404634409438,
          -2.7811168235623858,
          -3.363235804483694,
          -7,
          -7,
          -7,
          -3.775100498879025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.651278013998144,
          -2.7665987210642644,
          -7,
          -4.065093989357153,
          -7,
          -7,
          -7,
          -3.952982608415478,
          -4.0190608745376055,
          -7,
          -7,
          -2.696749435201623,
          -7,
          -2.849214606209089,
          -7,
          -3.471438407389299,
          -2.866150961478457,
          -7,
          -7,
          -7,
          -2.988261596728756,
          -3.1857545757350607,
          -7,
          -7,
          -2.946288473013431,
          -3.36679638328673,
          -2.904038968600478,
          -3.087347537450042,
          -7,
          -7,
          -2.7269987279362624,
          -2.9644482079166607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.839980557678343,
          -3.031083981800209,
          -7,
          -3.721150843749684,
          -7,
          -7,
          -7,
          -3.0488300865283504,
          -7,
          -7,
          -7,
          -2.805047523584979,
          -7,
          -7,
          -2.7975560510930397,
          -2.7674230420253365,
          -3.1364827496008227,
          -3.26030994579492,
          -3.1286819205220584,
          -3.3268476989159903,
          -3.353788044826781,
          -2.961421094066448,
          -4.083215862155997,
          -7,
          -7,
          -3.126780577012009,
          -3.2692793897718984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504619123819373,
          -7,
          -3.898478353232805,
          -3.659405104516471,
          -3.169600968020925,
          -3.314183339137377,
          -7,
          -2.4915017662373264,
          -7,
          -2.854685504019982,
          -2.8204933731124284,
          -7,
          -7,
          -3.193958978019187,
          -3.115943176939055,
          -3.241363826010479,
          -3.385963570600697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8850217948622974,
          -7,
          -2.61870166264718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.67391132703678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7381857702399692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.473591229933489,
          -7,
          -3.2005769267548483,
          -3.808418952199765,
          -3.466274321789292,
          -7,
          -7,
          -2.83248230070942,
          -2.906335041805091,
          -2.515211304327802,
          -2.6103939697123133,
          -7,
          -7,
          -7,
          -3.050128310900046,
          -7,
          -7,
          -3.122379732069112,
          -2.558729597047761,
          -2.26030994579492,
          -2.6748611407378116,
          -7,
          -2.0521165505499983,
          -7,
          -2.696356388733332,
          -3.6392227387738147,
          -2.0012047011383705,
          -7,
          -3.0916669575956846,
          -3.17868923977559,
          -3.427323786357247,
          -7,
          -3.570776368794748,
          -7,
          -2.5646660642520893,
          -7,
          -3.728344415396529,
          -7,
          -2.8904210188009145,
          -2.847726855657811,
          -2.813358558611011,
          -3.2258259914618934,
          -7,
          -2.355547295732133,
          -7,
          -2.8226038992559745,
          -7,
          -3.15558638660026,
          -3.538070787043172,
          -2.556754655396264,
          -2.934309037350079,
          -7,
          -2.6309361190641916,
          -3.234137489450963,
          -2.9434945159061026,
          -7,
          -7,
          -7,
          -3.220631019448092,
          -7,
          -3.6825962914605532,
          -3.1027766148834415,
          -7,
          -2.9014583213961123,
          -7,
          -7,
          -2.243658026638696,
          -7,
          -3.0484418035504044,
          -3.8487302293839014,
          -7,
          -7,
          -7,
          -7,
          -3.009610221198917,
          -7,
          -7,
          -7,
          -3.53731527311201,
          -7,
          -3.100370545117563,
          -2.773681984491958,
          -2.3942765267678214,
          -7,
          -3.2971851752651826,
          -3.6154239528859438,
          -2.899546931090867,
          -7,
          -7,
          -7,
          -3.3900514964589874,
          -7,
          -7,
          -7,
          -3.692700074142474,
          -7,
          -7,
          -7,
          -3.2247919564926817,
          -7,
          -2.5804973099769506,
          -7,
          -2.4868730494439446,
          -2.5683439757819593,
          -7,
          -7,
          -7,
          -7,
          -2.2649763214333523,
          -7,
          -7,
          -3.15060295179301,
          -3.6205524447294355,
          -2.849156072011022,
          -7,
          -3.891314399382143,
          -3.5288637896169446,
          -7,
          -3.8804705928037784,
          -2.9114239653762946,
          -3.13893832067623,
          -2.9960736544852753,
          -2.45687190911158,
          -7,
          -7,
          -3.2211533219547053,
          -3.1995864208954536,
          -2.5591881890047756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.091315159697223,
          -7,
          -3.4532036344562216,
          -3.4790711958039306,
          -2.8720688221022472,
          -7,
          -7,
          -7,
          -3.0576661039098294,
          -7,
          -7,
          -7,
          -2.912399211126715,
          -7,
          -7,
          -1.876637651626655,
          -3.435856611877713,
          -7,
          -7,
          -7,
          -2.7317901537745826,
          -1.778513011738925,
          -2.86053763630648,
          -3.3710678622717363,
          -2.8974896345771866,
          -2.7836177651907485,
          -2.922898380345496,
          -3.613154437759265,
          -3.3740147402919116,
          -7,
          -3.572339562116119,
          -7,
          -7,
          -7,
          -3.239049093140191,
          -7,
          -7,
          -7,
          -3.0013009330204183,
          -7,
          -4.295391147571982,
          -7,
          -3.4712917110589387,
          -3.1473229160377674,
          -7,
          -3.7345598215794764,
          -3.0520202439786086,
          -7,
          -3.003029470553618,
          -2.2081725266671217,
          -3.0998532198843813,
          -3.0038911662369103,
          -3.0586157970105616,
          -3.0910511241341787,
          -7,
          -3.723701893991268,
          -7,
          -3.1368111300765356,
          -3.4219328132785085,
          -3.8778702482588185,
          -7,
          -3.31983447960114,
          -7,
          -3.8055008581584002,
          -3.1986570869544226,
          -2.8834721588455867,
          -7,
          -2.584331224367531,
          -2.6440867345657413,
          -2.8588378514285857,
          -7,
          -3.0112884341835358,
          -4.36891880234938,
          -3.8918161195248606,
          -7,
          -7,
          -3.1473671077937864,
          -3.0696680969115957,
          -7,
          -3.1734776434529945,
          -2.7788744720027396,
          -2.897352134344313,
          -3.9457147140598603,
          -2.5030120284659807,
          -7,
          -4.599569030966235,
          -7,
          -7,
          -2.4933186082321015,
          -7,
          -7,
          -7,
          -2.8438554226231614,
          -7,
          -3.0661394928706995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.782830805202592,
          -3.382197210377454,
          -4.042713299346113,
          -2.428944290035574,
          -2.445214876056217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1020905255118367,
          -3.5257572431523108,
          -3.1582418379808734,
          -7,
          -7,
          -7,
          -3.374402075504582,
          -2.3890049062287417,
          -3.2196967711811264,
          -7,
          -4.239441300467461,
          -7,
          -7,
          -3.143014800254095,
          -1.9237704465403997,
          -3.187168065939373,
          -2.646715543393583,
          -2.0114042816397744,
          -3.401802479247905,
          -2.871378315564175,
          -3.2242740142942576,
          -7,
          -7,
          -3.5476516583599693,
          -2.824646414718352,
          -7,
          -7,
          -3.3248994970523134,
          -7,
          -7,
          -7,
          -1.9255308560401887,
          -2.7041505168397992,
          -3.0068937079479006,
          -3.5296869537729165,
          -7,
          -4.355844065953179,
          -2.927010868975651,
          -7,
          -3.3458962687263867,
          -7,
          -7,
          -1.385855581574104,
          -2.9283958522567137,
          -3.140642701035818,
          -2.2388441244514645,
          -3.8303319934519617,
          -3.413132050434872,
          -7,
          -2.8680563618230415,
          -4.573540076446994,
          -2.701460045579318,
          -7,
          -7,
          -7,
          -3.0236639181977933,
          -2.355296410064838,
          -7,
          -3.2116544005531824,
          -2.104350519242735,
          -2.5285953576940683,
          -2.4371160930480786,
          -7,
          -2.709655349661963,
          -7,
          -2.504244254358882,
          -2.8363241157067516,
          -7,
          -4.258894575054327,
          -3.3984608496082234,
          -4.495450091431051,
          -7,
          -3.0570952896126675,
          -3.2650455111829446,
          -1.7218310466708049,
          -7,
          -2.963787827345555,
          -7,
          -2.912434633375575,
          -2.7129085955138073,
          -1.9852018583645716,
          -2.5354523617941673,
          -2.281412167517624,
          -7,
          -2.4952667443878105,
          -7,
          -3.2137832993353044,
          -3.2362852774480286,
          -3.102262149494273,
          -3.155336037465062,
          -2.5093503992977833,
          -7,
          -7,
          -3.8240824240027838,
          -7,
          -7,
          -7,
          -7,
          -4.3848370882036845,
          -7,
          -3.89867034296553,
          -3.8047072118408556,
          -7,
          -7,
          -4.317791816053072,
          -7,
          -7,
          -4.5885518064856425,
          -7,
          -4.378461495902037,
          -4.6248696977974015,
          -7,
          -7,
          -7,
          -5.38910581074388,
          -7,
          -4.239074138235893,
          -3.426998958756537,
          -7,
          -7,
          -7,
          -7,
          -3.9337619793526004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8602481432437283,
          -7,
          -4.018648496692656,
          -3.2615007731982804,
          -4.199032580145495,
          -4.068415939746929,
          -3.9207492612757084,
          -3.7134065321676912,
          -7,
          -7,
          -3.574119376510415,
          -4.020112569565467,
          -7,
          -4.150249723240066,
          -3.4883579673077088,
          -3.2879628814848645,
          -7,
          -3.8451445690733057,
          -3.861653870213911,
          -3.089905111439398,
          -7,
          -7,
          -7,
          -7,
          -4.040145039872181,
          -3.9446983557777644,
          -5.70697964523269,
          -7,
          -2.3961993470957363,
          -7,
          -4.356513447223032,
          -7,
          -5.105440351415542,
          -3.7984434603501875,
          -4.234188147853202,
          -7,
          -7,
          -7,
          -4.185237503623307,
          -7,
          -3.6286187898185123,
          -7,
          -3.82246230575867,
          -4.496334505996817,
          -7,
          -3.7161556147759103,
          -4.481910592562872,
          -3.0265332645232967,
          -4.394529504405298,
          -7,
          -3.657915936829955,
          -4.1376705372367555,
          -4.309332019875982,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.331860940572651,
          -2.861683729919097,
          -2.8783849969106328,
          -7,
          -7,
          -3.2082685564036995,
          -7,
          -7,
          -7,
          -3.7939998009844706,
          -7,
          -3.687549540152836,
          -3.199480914862356,
          -7,
          -7,
          -4.14674801363064,
          -7,
          -3.7208205817703437,
          -7,
          -7,
          -3.821513528404773,
          -7,
          -7,
          -1.8587923111903113,
          -3.1231980750319988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0175167795241205,
          -7,
          -7,
          -7,
          -2.8876641776072915,
          -7,
          -2.59402403573142,
          -7,
          -7,
          -3.034887856589644,
          -7,
          -3.1075491297446862,
          -3.1829849670035815,
          -7,
          -3.036069700697702,
          -7,
          -3.3749315539781883,
          -3.291146761731886,
          -7,
          -2.922379406594948,
          -3.4114092409812082,
          -7,
          -7,
          -2.768109312089503,
          -3.291479852236699,
          -7,
          -3.8642440146472476,
          -7,
          -7,
          -7,
          -7,
          -3.0878145586758183,
          -3.245636029406203,
          -7,
          -3.3525683861793083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2415464805965484,
          -7,
          -7,
          -2.931775592908094,
          -2.903532098852894,
          -2.9800033715837464,
          -3.4689378056654614,
          -3.4156826728335363,
          -7,
          -2.9378759549297913,
          -3.010087846998524,
          -3.4550733759211245,
          -7,
          -3.328787200354535,
          -3.296665190261531,
          -7,
          -7,
          -7,
          -7,
          -3.252124552505644,
          -3.5407047833107623,
          -3.8384586796874895,
          -7,
          -3.577692815569536,
          -3.7759864553175277,
          -2.6743600316646345,
          -3.534660575828444,
          -7,
          -2.174096167093953,
          -7,
          -3.0026843129897296,
          -2.9427519204298136,
          -7,
          -7,
          -7,
          -2.324053698651949,
          -3.8039860045173377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.366111523378347,
          -7,
          -2.5743620327718135,
          -7,
          -7,
          -3.1109262422664203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5268882610813685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8080353284442587,
          -7,
          -7,
          -7,
          -3.5221833176186865,
          -3.202079441007388,
          -7,
          -7,
          -3.4608978427565478,
          -7,
          -3.7113853790984517,
          -3.3562171342197353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1869563354654122,
          -7,
          -7,
          -4.163535418640821,
          -7,
          -7,
          -7,
          -3.596652066132439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.340999022531442,
          -3.893317811616112,
          -7,
          -7,
          -2.8988523338812024,
          -7,
          -2.45838601110505,
          -7,
          -3.0400086360135417,
          -2.696356388733332,
          -7,
          -3.8664763785264977,
          -1.9528616037229394,
          -7,
          -7,
          -2.9786369483844743,
          -7,
          -7,
          -3.500373714353374,
          -7,
          -7,
          -7,
          -3.779866155645193,
          -7,
          -7,
          -3.0538464268522527,
          -7,
          -7,
          -2.638988159343682,
          -7,
          -7,
          -3.1586639808139894,
          -7,
          -3.3772526682027864,
          -3.4616485680634552,
          -3.6093809442507068,
          -3.1992064791616577,
          -7,
          -7,
          -3.4584867637982066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.580810972660946,
          -3.850293878845634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4267974435651265,
          -7,
          -3.075364446373285,
          -7,
          -7,
          -3.8828659197216293,
          -7,
          -7,
          -7,
          -2.343181273996572,
          -3.048053173115609,
          -2.160686755849163,
          -3.5577477416414682,
          -2.2419085435453248,
          -7,
          -3.783400727102669,
          -7,
          -4.0244035626829655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.596377143997599,
          -7,
          -4.1532659350758685,
          -7,
          -7,
          -7,
          -3.0749535069180194,
          -7,
          -3.398287305357401,
          -7,
          -3.6416723732246865,
          -2.860555779914859,
          -7,
          -7,
          -7,
          -2.5893910231369333,
          -3.483587296968894,
          -7,
          -7,
          -7,
          -7,
          -3.643551368562945,
          -7,
          -3.8754953408710184,
          -4.153220159636364,
          -7,
          -7,
          -7,
          -4.392362752025857,
          -7,
          -2.9848272404840994,
          -3.3171227377145382,
          -7,
          -7,
          -7,
          -3.1879435290625273,
          -7,
          -2.7573960287930244,
          -4.370068760650052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188084373714938,
          -3.4369573306694496,
          -3.4584867637982066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4580710082030826,
          -2.7179903781599086,
          -7,
          -7,
          -7,
          -3.02391309743574,
          -7,
          -2.7058637122839193,
          -7,
          -7,
          -7,
          -3.210318519826232,
          -7,
          -3.1149444157125847,
          -3.0946457896059547,
          -7,
          -7,
          -7,
          -7,
          -3.527996414185576,
          -7,
          -7,
          -7,
          -7,
          -2.9304395947667,
          -7,
          -7,
          -3.024895960107485,
          -7,
          -7,
          -7,
          -3.252124552505644,
          -3.226076412987496,
          -7,
          -3.6875289612146345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6754116937148633,
          -7,
          -3.9565045903166975,
          -7,
          -4.344254692556935,
          -2.863322860120456,
          -7,
          -7,
          -7,
          -7,
          -3.240798771117331,
          -7,
          -7,
          -3.7511250715355837,
          -7,
          -7,
          -3.1010593549081156,
          -7,
          -3.8596185787721806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.594060901270418,
          -3.8341026557127935,
          -4.867956309564652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4683473304121573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2681097298084785,
          -4.2441137656630215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.030599721965951,
          -7,
          -7,
          -3.6919651027673606,
          -7,
          -7,
          -3.2203042611135873,
          -7,
          -7,
          -7,
          -3.840273420400613,
          -7,
          -7,
          -3.0670708560453703,
          -4.711925273632879,
          -7,
          -7,
          -7,
          -3.5192590585137475,
          -7,
          -3.965577957910528,
          -3.0248139326293106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4730488050885375,
          -3.4456042032735974,
          -7,
          -7,
          -3.1920095926536702,
          -7,
          -7,
          -7,
          -2.8813846567705728,
          -2.756230272933612,
          -7,
          -7,
          -7,
          -3.6849158582733965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2972131959896416,
          -7,
          -7,
          -3.5182506513085,
          -3.793021659845983,
          -3.307923703611882,
          -7,
          -7,
          -4.573181149242739,
          -2.9722607095873457,
          -7,
          -7,
          -7,
          -7,
          -2.2246884174572874,
          -7,
          -7,
          -3.4265112613645754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6732257630203846,
          -7,
          -7,
          -7,
          -4.833961483448347,
          -7,
          -2.5178207322576007,
          -4.115926549726361,
          -2.018496104177425,
          -7,
          -7,
          -7,
          -2.8488047010518036,
          -7,
          -3.1266183755229515,
          -7,
          -7,
          -7,
          -2.810064414845355,
          -7,
          -3.0330214446829107,
          -7,
          -3.3530502396425894,
          -7,
          -2.9595047561076266,
          -7,
          -7,
          -4.5962561231022905,
          -7,
          -7,
          -7,
          -4.713423335653093,
          -7,
          -7,
          -7,
          -4.181826444403178,
          -7,
          -7,
          -7,
          -4.242433752322269,
          -4.697094149742253,
          -4.105101244549642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.584218112117405,
          -5.388117194117044,
          -7,
          -4.5330981124594105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9966794618656425,
          -7,
          -4.677999100468688,
          -4.325125526216931,
          -7,
          -7,
          -4.086217415693343,
          -7,
          -4.453975401295882,
          -7,
          -4.012816141937047,
          -7,
          -7,
          -4.024944423608711,
          -3.5895586720415062,
          -3.6638892986226614,
          -4.02928229515597,
          -3.368658712392227,
          -3.820600545981254,
          -3.297059824075058,
          -3.505149978319906,
          -3.3631417096979495,
          -3.1917256596242463,
          -3.265896771013757,
          -7,
          -3.9613894503284546,
          -3.8270460170047342,
          -7,
          -7,
          -3.772413397736013,
          -7,
          -7,
          -3.736577973773599,
          -4.0108735476108945,
          -5.007527588642865,
          -7,
          -2.1851347241927237,
          -7,
          -3.508515290343504,
          -7,
          -4.706540274057084,
          -4.079868335175173,
          -3.617629297757842,
          -7,
          -4.32364392313595,
          -4.433657846692988,
          -4.084347453490981,
          -3.612359947967774,
          -4.216377057988173,
          -7,
          -4.053555850013714,
          -4.1874925189804255,
          -7,
          -3.829956579636221,
          -3.5089671596982126,
          -7,
          -4.444600977071155,
          -7,
          -7,
          -3.43253103602832,
          -3.820091941269979,
          -7,
          -7,
          -7,
          -7,
          -3.7200765727681406,
          -4.470248739825372,
          -7,
          -3.5839917991983166,
          -7,
          -7,
          -4.043008409879952,
          -7,
          -7,
          -7,
          -3.7532765701844184,
          -7,
          -3.756290249756674,
          -3.62283547952152,
          -7,
          -7,
          -7,
          -7,
          -3.1946993054635864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015359755409214,
          -7,
          -7,
          -7,
          -4.4927534067443124,
          -4.788486548560839,
          -7,
          -7,
          -3.6398847419163043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.148479258163154,
          -7,
          -7,
          -7,
          -7,
          -4.201326882336002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7788022040132385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7989267385772014,
          -4.029251845772462,
          -7,
          -7,
          -4.307303450866765,
          -7,
          -7,
          -7,
          -3.734519807346076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530455843584676,
          -7,
          -4.163638359628923,
          -4.246400090154285,
          -7,
          -7,
          -7,
          -2.7919244549379605,
          -7,
          -3.3502480183341627,
          -3.6732052817790453,
          -7,
          -7,
          -7,
          -7,
          -4.095483185829541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8073320392911905,
          -7,
          -3.0170333392987803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.809694358716924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1984646353719155,
          -7,
          -7,
          -7,
          -7,
          -3.419955748489758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2340108175871793,
          -7,
          -7,
          -4.388870545406613,
          -3.6600349733461006,
          -4.864267760535243,
          -7,
          -7,
          -4.0267141585600665,
          -4.392966472124374,
          -3.7513738660351916,
          -4.088915346604906,
          -2.1209033854240165,
          -4.192573028326205,
          -4.563225892089558,
          -4.3882670215945305,
          -2.97716286346543,
          -2.9848158340017705,
          -4.869407749382202,
          -3.691164038557998,
          -4.563071516383439,
          -4.388000494229575,
          -7,
          -2.966086493043982,
          -2.356336435340471,
          -4.863929258997284,
          -3.3318376632800164,
          -2.223795076826903,
          -3.8685033726242364,
          -4.020988354461687,
          -4.864226204379169,
          -3.3684321679068323,
          -3.6392227387738147,
          -3.8664763785264977,
          -7,
          -2.693679744284389,
          -3.2016701796465816,
          -2.9502698435505628,
          -3.0084937139891323,
          -2.1599680188106682,
          -3.202458701293772,
          -3.55708880365784,
          -7,
          -3.9719191579347575,
          -7,
          -2.211852607386131,
          -3.751290950370651,
          -3.4516742765040034,
          -4.272259442940222,
          -4.170279321571128,
          -3.4096344784215926,
          -3.3887345299220177,
          -4.023375938139562,
          -3.8010204744912124,
          -4.091332756361876,
          -3.917698019853736,
          -2.1784276781301344,
          -3.28648525823423,
          -3.263227077694896,
          -2.6941911513458114,
          -7,
          -3.63724832231457,
          -3.057573901907062,
          -4.390988066615901,
          -3.8684974938893117,
          -3.965501557108345,
          -4.563979170379509,
          -4.867567652782026,
          -3.8417063578630106,
          -2.737732667645749,
          -7,
          -4.56370055036805,
          -3.700247843649352,
          -7,
          -3.6621965517146178,
          -2.1863683671103558,
          -4.262943248490909,
          -4.0992373747636766,
          -2.586151421082641,
          -7,
          -4.096811561767263,
          -7,
          -7,
          -3.204933522354145,
          -7,
          -4.088017897250127,
          -7,
          -3.555503261386879,
          -4.168621213306193,
          -2.9813712474524343,
          -3.5394296891509516,
          -3.366947995954321,
          -7,
          -2.2342360669286863,
          -3.6512095798542563,
          -3.6646210854682453,
          -4.864748335629659,
          -7,
          -4.0320716634698215,
          -4.872214563397586,
          -3.295630749386032,
          -3.1844756492424127,
          -7,
          -3.1319292790782756,
          -4.867962195629719,
          -4.5633089947461265,
          -4.864255887753539,
          -3.499279872843174,
          -7,
          -3.699467710045164,
          -4.171445606835973,
          -3.4389941506285777,
          -2.682212788529763,
          -4.3900397028302365,
          -7,
          -4.09120956473413,
          -3.7561560889553665,
          -2.640342011536324,
          -4.86840930331496,
          -7,
          -4.0961913852351834,
          -3.735844033532741,
          -3.354712775236435,
          -3.7891986564290945,
          -2.767992110572119,
          -2.7007508422080138,
          -4.088921244740673,
          -3.4384768764335347,
          -3.4691737711599395,
          -2.5501875723158833,
          -3.7901502325789487,
          -3.4305530141906666,
          -3.68087351479754,
          -4.864985460659794,
          -4.566537657118045,
          -2.769541950043048,
          -3.387372601202775,
          -7,
          -7,
          -2.5266486493232416,
          -7,
          -7,
          -7,
          -4.865038795953643,
          -7,
          -2.2623721514962294,
          -3.312366681284554,
          -2.8448177596031714,
          -3.935277686286775,
          -4.867673684585095,
          -3.9045965441868544,
          -7,
          -4.263559143134499,
          -3.8697420092806674,
          -3.6941972918756796,
          -3.368128214530098,
          -4.864303376933002,
          -7,
          -4.022610982753226,
          -2.3885720910509756,
          -7,
          -4.864036182725775,
          -4.173925979028537,
          -4.025340981997151,
          -3.785756799962643,
          -4.870608712866837,
          -3.7253222994444557,
          -2.409078641752536,
          -2.7950859806492927,
          -2.858543037490597,
          -2.6932599947567177,
          -3.085664823858279,
          -4.565841917893188,
          -2.203948373797962,
          -4.866346422749602,
          -7,
          -4.863905494593343,
          -3.54553684113762,
          -4.020905585532556,
          -4.166678718451888,
          -7,
          -3.075783043496683,
          -7,
          -3.2811423061693956,
          -4.563427685249018,
          -3.8504624327615167,
          -2.227639369195755,
          -4.567314623179351,
          -3.8476960207341655,
          -3.7078085468549555,
          -3.9673782967941977,
          -3.4773065141793995,
          -4.093024567839438,
          -3.550135134309459,
          -3.8281617011169873,
          -4.02608946331455,
          -3.6309925539264505,
          -4.565653050578184,
          -3.5457905215795247,
          -7,
          -3.496764708268367,
          -3.441636958215057,
          -3.396249832845416,
          -4.8653527487813975,
          -3.0515281051482557,
          -7,
          -3.5721244644195123,
          -4.389939444053016,
          -3.7572149376681385,
          -4.564973629882831,
          -4.86686011175598,
          -2.294718581133095,
          -2.820399103879156,
          -4.863822308937582,
          -3.6996065029245266,
          -3.166229669531838,
          -2.8596949382417227,
          -7,
          -7,
          -3.7519597469003356,
          -4.864683103542188,
          -4.388160430275948,
          -4.021390150745712,
          -7,
          -3.9639176242328817,
          -3.3889834112903867,
          -2.748809143809384,
          -2.3041835419294423,
          -2.6036833269790702,
          -4.863953022100917,
          -3.202979643989544,
          -4.2649004255169745,
          -4.8695074678560335,
          -4.165327436733526,
          -4.086828283728044,
          -2.918932721836841,
          -4.570612981730594,
          -2.8328017810711708,
          -7,
          -4.018795571889457,
          -3.910713317671148,
          -3.962529147470517,
          -7,
          -3.6342875546005997,
          -3.291742638086838,
          -2.2602768129942987,
          -7,
          -4.864368666076987,
          -4.863804481366742,
          -7,
          -3.9646013670437754,
          -4.566337304164903,
          -4.864030243209204,
          -3.788498328434222,
          -2.871292205822265,
          -4.270568210861315,
          -3.782274119790817,
          -3.451605533164384,
          -4.571108788363788,
          -7,
          -7,
          -2.8419288412102115,
          -4.572679959416505,
          -3.1960135401118857,
          -3.0346343538000164,
          -2.759924217918967,
          -4.868521008351567,
          -7,
          -4.263866763229076,
          -2.9663105116413515,
          -3.3366042522547557,
          -2.92973814254741,
          -2.69675950864028,
          -3.599817595608217,
          -4.02576216145282,
          -3.9644776657900826,
          -7,
          -3.6938617292635936,
          -3.7321524180652137,
          -3.2858802988894116,
          -7,
          -4.388746359046655,
          -3.091373812473584,
          -4.5646542304537565,
          -3.6410014137444193,
          -7,
          -4.397331570391128,
          -2.6902981285842693,
          -3.790443508353784,
          -3.7982995236374486,
          -4.570040642457214,
          -2.4780334926983727,
          -3.3144614414085494,
          -7,
          -2.2088657877076616,
          -4.387686374306485,
          -4.2660846327618,
          -2.9486460646637145,
          -3.457491776105673,
          -3.435026375328703,
          -3.624831922757537,
          -1.4426505265509397,
          -2.304048889849097,
          -2.4532205978433916,
          -4.1761202110560856,
          -2.684179751046336,
          -3.2220495643794016,
          -7,
          -4.863852019929494,
          -4.8638936119037135,
          -3.532349964092412,
          -3.39396559561541,
          -3.3218764508736407,
          -3.788056364365024,
          -3.4962144560637816,
          -4.388622137165492,
          -3.794644866269577,
          -7,
          -2.96528011476304,
          -2.729359915776269,
          -3.1695745172047043,
          -3.3055493481139395,
          -4.390540649832289,
          -2.7841928196976142,
          -3.230856581359965,
          -2.5332689299307587,
          -4.1687213496997,
          -3.3652787155355575,
          -1.7125376361476683,
          -2.818968476456068,
          -7,
          -3.789316247841687,
          -7,
          -3.559222427207474,
          -3.103411940177142,
          -3.3600919894948293,
          -3.669688708056208,
          -7,
          -7,
          -4.399079259948645,
          -3.6895752157599384,
          -2.952644807190157,
          -3.5059399585908717,
          -1.8912002859464372,
          -3.450929751236355,
          -2.2347644128428783,
          -7,
          -4.563267445405564,
          -3.0710793127277585,
          -3.2274680884279663,
          -3.3692682018262334,
          -4.584952815690992,
          -3.7933223233860316,
          -2.8210117908556285,
          -4.001290107998124,
          -3.234478345557588,
          -3.2795236294273167,
          -3.684153359757077,
          -4.185581814639974,
          -3.6888224537429393,
          -3.3977488770479587,
          -3.0799373127778655,
          -2.8475333646529832,
          -4.195115185724885,
          -2.761223080137496,
          -2.7139201123494434,
          -3.6908056454924374,
          -3.8554772198341833,
          -4.105175109470305,
          -3.0454643571683375,
          -3.4047624682427946,
          -3.6131462965186256,
          -3.97727638194836,
          -3.6308991759102316,
          -3.7715176648201174,
          -3.6434378707401143,
          -7,
          -3.3883742444866853,
          -3.559567511673805,
          -3.3985222965710804,
          -2.910229876516631,
          -3.3120050534980376,
          -7,
          -3.3259772150789204,
          -3.790268920325332,
          -3.858318018621179,
          -3.5292131133128692,
          -3.6943075566062507,
          -3.2883139564962867,
          -3.6147663409308692,
          -2.925498564509372,
          -3.8258857029949604,
          -4.109544800878346,
          -3.49578015230518,
          -4.57372425780422,
          -2.4655151160777895,
          -2.882055227035669,
          -3.5177579875862306,
          -2.137802313334469,
          -2.5979606503538215,
          -2.3805998688962626,
          -3.1714924272529013,
          -3.537636744269928,
          -3.8993224739323775,
          -4.56397324415489,
          -4.42003280277851,
          -3.090850169017244,
          -4.189372389686722,
          -3.6379486218402337,
          -2.385667809098233,
          -2.4276495217654266,
          -2.622502345281835,
          -4.263671568048523,
          -2.9393453429619147,
          -4.2641682560516845,
          -2.426379720020594,
          -3.3158046790494526,
          -2.9609541815104348,
          -4.082369848659487,
          -2.5535111069782914,
          -4.864522946865742,
          -3.556446313801048,
          -2.57835482977221,
          -2.9170845376550236,
          -3.6058831910843505,
          -3.518114068443985,
          -4.199052719385967,
          -3.1807364413106,
          -3.0051216062891455,
          -4.390681989145567,
          -2.7311626256773534,
          -2.3451158088439428,
          -4.183582992351017,
          -2.698431410789216,
          -4.389266521813607,
          -4.185236086141411,
          -2.8710311121124183,
          -3.48847080648477,
          -7,
          -4.387265215784176,
          -7,
          -4.563836918664545,
          -3.548662964853018,
          -3.054200095548161,
          -3.5322214596157986,
          -3.1513204137732407,
          -7,
          -4.173733891880797,
          -2.9500615985548566,
          -4.398657449294496,
          -3.0530493264922316,
          -4.020390881862707,
          -3.614686342282013,
          -7,
          -2.1566356727947436,
          -3.470150302299499,
          -4.566207614748667,
          -2.159735490902105,
          -4.031716401140356,
          -3.9194906795740487,
          -3.410805342142755,
          -7,
          -4.86693681773164,
          -3.8543888618404702,
          -4.088915346604906,
          -4.168809686171092,
          -4.093964214254529,
          -3.4036066130850333,
          -7,
          -3.2557023906723335,
          -7,
          -4.865240225749968,
          -1.8774881971522934,
          -3.0149138474140975,
          -3.1773289409373007,
          -7,
          -2.1872701029937605,
          -2.815577748324267,
          -4.567567425898288,
          -3.3218457327785256,
          -7,
          -3.615611083250255,
          -2.955740651181192,
          -7,
          -4.865317218342029,
          -3.79636037082412,
          -3.8293564113962555,
          -3.9349471026077483,
          -7,
          -3.9685529904026318,
          -3.7899800418403067,
          -2.8839688333242246,
          -3.6682577529497595,
          -3.6145703180599975,
          -3.283015932570804,
          -7,
          -3.3131772257740724,
          -3.1396615986156613,
          -4.396269107674459,
          -3.6590249900894882,
          -4.866830605849827,
          -7,
          -3.374322358254613,
          -3.2825233495096477,
          -2.161629083938574,
          -3.49791974275339,
          -3.8842230999548395,
          -4.393885094130324,
          -7,
          -3.787629385435588,
          -3.213116184718616,
          -2.9451752606966317,
          -4.2641564367458855,
          -3.66985708763779,
          -3.365988720422906,
          -4.092077028628151,
          -7,
          -3.2338565584774353,
          -2.993164817641717,
          -3.3667002284829333,
          -2.388658488974814,
          -3.064200518562613,
          -4.033366305327212,
          -3.550183864786063,
          -4.267746494644809,
          -3.5788735345046243,
          -4.587042737459709,
          -4.0921180144435105,
          -4.392292361088971,
          -3.7505083948513462,
          -7,
          -3.2475322959136936,
          -4.401187937219147,
          -3.9139668289142224,
          -3.7988002176790006,
          -3.5358737182193245,
          -4.396803566827695,
          -3.8263937997178976,
          -2.581998623763598,
          -3.319415576268741,
          -3.4796156140571486,
          -2.7039196051869374,
          -3.5100201829742788,
          -7,
          -2.6865910208269637,
          -3.4408528809028094,
          -4.588490200062119,
          -4.262195896425577,
          -3.570805538589023,
          -3.754965460970997,
          -2.8030999214991477,
          -2.8937558614379575,
          -2.901387240163748,
          -7,
          -7,
          -4.86494990015796,
          -7,
          -7,
          -3.943456042152199,
          -3.3147798252899086,
          -3.7939765374934558,
          -3.7872833199241156,
          -4.566172238185459,
          -4.865376434126184,
          -4.264115066642318,
          -3.91350184863534,
          -4.167831093602893,
          -4.030698006758963,
          -3.9680332443643405,
          -2.6653770298617583,
          -3.89463723318385,
          -2.3913719860159928,
          -4.566413920620156,
          -7,
          -4.036275202822311,
          -4.264758811598086,
          -7,
          -2.484841345882423,
          -4.168756686444427,
          -3.826051231125912,
          -3.8809907025954717,
          -4.576231898813378,
          -2.9947800791984687,
          -4.38773380319581,
          -4.564168766882124,
          -3.8332340664594575,
          -7,
          -3.131111922645758,
          -3.9168047518661746,
          -4.868473978153819,
          -7,
          -7,
          -2.9552065375419416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.137986732723532,
          -3.8440663777932302,
          -7,
          -7,
          -7,
          -7,
          -3.524915147539867,
          -3.2460059040760294,
          -7,
          -7,
          -7,
          -7,
          -3.4443961510846295,
          -3.6108730003800513,
          -7,
          -3.229681842317676,
          -2.659924372244891,
          -2.6074550232146687,
          -2.233358778039036,
          -2.946452265013073,
          -2.2237554536572413,
          -2.0012047011383705,
          -1.9528616037229394,
          -2.693679744284389,
          -7,
          -7,
          -3.009450895798694,
          -2.1529674602085436,
          -1.8480078966750186,
          -2.2753113545418118,
          -3.5451833682154064,
          -7,
          -2.9595183769729982,
          -7,
          -3.8639423913994935,
          -3.03261876085072,
          -2.6496593222923464,
          -3.416640507338281,
          -7,
          -3.6845760873884554,
          -2.6067395461469105,
          -7,
          -7,
          -2.9501213475113732,
          -3.344588742578714,
          -3.1321422390564218,
          -3.0327530302850567,
          -2.671481400086431,
          -2.9787672693102545,
          -7,
          -7,
          -2.551178818143956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1408221801093106,
          -3.75859399963138,
          -7,
          -7,
          -2.774224904868919,
          -7,
          -7,
          -2.1389524923183503,
          -7,
          -7,
          -4.42791434984591,
          -7,
          -3.4353665066126613,
          -7,
          -7,
          -3.2996162399984135,
          -7,
          -7,
          -7,
          -2.730109055128691,
          -3.1646502159342966,
          -2.2933625547114453,
          -7,
          -2.207595901910711,
          -7,
          -3.7128970270359547,
          -3.592398846115564,
          -4.038302172199525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6326597132939136,
          -7,
          -7,
          -7,
          -7,
          -2.646893624167745,
          -3.215505378231818,
          -2.9749719942980692,
          -7,
          -7,
          -2.672836454171397,
          -2.6685830178507195,
          -7,
          -7,
          -7,
          -7,
          -3.438489607941805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.186419489155475,
          -4.7579423494097774,
          -7,
          -3.390758528738717,
          -2.8506462351830666,
          -4.29695462344912,
          -2.946697837245742,
          -2.42907905946471,
          -3.652922887567942,
          -7,
          -7,
          -3.19506899646859,
          -3.233884108765886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1436392352745433,
          -3.162116141062368,
          -3.866877814337499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2641091563058082,
          -7,
          -2.5975123635772417,
          -7,
          -7,
          -2.323104706828374,
          -3.115474908292482,
          -7,
          -7,
          -7,
          -7,
          -2.1609399149830604,
          -7,
          -3.3298045221640695,
          -3.1687920203141817,
          -2.9745116927373285,
          -3.362293937964231,
          -3.124178055474675,
          -7,
          -7,
          -3.595506938209761,
          -7,
          -7,
          -7,
          -7,
          -3.077731179652392,
          -7,
          -7,
          -3.343605508104172,
          -7,
          -7,
          -7,
          -3.756560043006683,
          -3.1008170492152898,
          -3.199480914862356,
          -7,
          -3.633670406051444,
          -7,
          -3.1476763242410986,
          -7,
          -2.7596678446896306,
          -3.256958152560932,
          -3.3176455432211585,
          -3.373279893277496,
          -7,
          -3.4046627008737222,
          -7,
          -3.9727118405470665,
          -7,
          -7,
          -7,
          -3.7897921677306754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.733999286538387,
          -3.1272668183188985,
          -7,
          -3.4578818967339924,
          -7,
          -3.8797837800904156,
          -7,
          -7,
          -2.7741518589547103,
          -2.6807886115066824,
          -7,
          -3.1065308538223815,
          -7,
          -7,
          -3.6339731557896737,
          -2.0794913456551614,
          -7,
          -5.111288563823859,
          -7,
          -2.0831441431430524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3683902022528986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.522009286567709,
          -7,
          -3.8655333169173196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721315880605899,
          -7,
          -7,
          -3.1451964061141817,
          -7,
          -7,
          -7,
          -3.4212336317086427,
          -7,
          -3.7614767795447017,
          -7,
          -3.714664992862537,
          -7,
          -7,
          -7,
          -3.1076762465264816,
          -7,
          -2.8341481053996023,
          -1.5676347070372152,
          -3.866759783495108,
          -7,
          -3.1652443261253107,
          -7,
          -3.2748503200166645,
          -3.219322508419337,
          -3.018423082826786,
          -7,
          -7,
          -7,
          -3.0538464268522527,
          -7,
          -7,
          -2.8170693164140133,
          -2.6063324993460637,
          -7,
          -7,
          -7,
          -3.9027961001341844,
          -7,
          -7,
          -3.596685045096567,
          -7,
          -3.1911714557285586,
          -1.8672710189654482,
          -7,
          -3.6755033847279566,
          -3.5613399414589013,
          -2.2936638342808666,
          -2.139508685967779,
          -3.578524605274993,
          -7,
          -4.749501846606125,
          -3.5944478006117335,
          -7,
          -7,
          -7,
          -7,
          -2.1787851634605526,
          -7,
          -7,
          -2.4765418090274287,
          -2.57978359661681,
          -2.4480188730153554,
          -7,
          -3.735918116531297,
          -2.5631843347973486,
          -2.7556208080010745,
          -3.0602255243941676,
          -7,
          -4.558672577786327,
          -3.7928992371582373,
          -4.761607519173373,
          -7,
          -2.3873898263387296,
          -3.543140559786548,
          -1.7624471699896267,
          -7,
          -2.910357557272878,
          -7,
          -2.587037117743456,
          -3.0356298277904386,
          -3.1536624535754956,
          -2.7055216134226674,
          -2.9749719942980692,
          -7,
          -3.467312062980552,
          -7,
          -7,
          -7,
          -2.781845095648946,
          -3.085290578230065,
          -2.5673103646159388,
          -7,
          -7,
          -3.754795943844005,
          -4.775093209551623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.104595216241666,
          -7,
          -7,
          -7,
          -4.421381787662514,
          -4.698592003682626,
          -4.108993244279538,
          -7,
          -4.6775704558523765,
          -4.4476695770227925,
          -7,
          -4.32132911339302,
          -7,
          -7,
          -7,
          -3.9353182915022433,
          -7,
          -7,
          -4.361246068497589,
          -7,
          -7,
          -4.078377057151801,
          -7,
          -7,
          -7,
          -4.204581175577571,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2076343673889616,
          -7,
          -4.2895034823507485,
          -3.9095025414054154,
          -7,
          -4.337279516037941,
          -7,
          -4.0903739568450685,
          -3.5338991007965945,
          -7,
          -4.448025752873446,
          -3.362322223700609,
          -3.5380618005555218,
          -7,
          -3.744887285866299,
          -7,
          -7,
          -7,
          -4.380844126464666,
          -7,
          -7,
          -4.215324660030519,
          -4.209757632436364,
          -5.405766276814029,
          -7,
          -2.769295252092732,
          -7,
          -3.67865732337852,
          -7,
          -4.707127140138086,
          -7,
          -7,
          -7,
          -4.330677516998936,
          -4.1380657456377685,
          -4.183725258045579,
          -7,
          -3.9242792860618816,
          -7,
          -4.201588281073518,
          -4.192316504702737,
          -7,
          -3.440259515107366,
          -3.7537697194437687,
          -7,
          -4.3069569682845685,
          -7,
          -3.6370892735303304,
          -3.767357323504857,
          -4.003697433719652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8731316106240805,
          -2.953920690616223,
          -2.7794854894727083,
          -7,
          -7,
          -3.748614356905319,
          -7,
          -2.6864575104691117,
          -7,
          -3.7788744720027396,
          -7,
          -3.5695253732681067,
          -2.8779469516291885,
          -7,
          -7,
          -7,
          -7,
          -3.4016589724951523,
          -7,
          -7,
          -7,
          -7,
          -3.1740598077250253,
          -2.2658001678796333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.250893773087252,
          -4.790911166601595,
          -7,
          -2.598927227835204,
          -2.6549462265843444,
          -7,
          -3.0457140589408676,
          -7,
          -3.00987563371216,
          -3.0049658871068234,
          -7,
          -7,
          -3.151523067564944,
          -7,
          -3.7183355789085066,
          -3.1222158782728267,
          -7,
          -3.241048150671644,
          -2.301649973616383,
          -2.7585334222372864,
          -3.527372082827612,
          -7,
          -7,
          -2.812133153334518,
          -7,
          -7,
          -4.15896526038341,
          -7,
          -7,
          -7,
          -3.1058506743851435,
          -3.146163152410619,
          -3.519827993775719,
          -7,
          -7,
          -7,
          -7,
          -2.34143452457814,
          -7,
          -7,
          -7,
          -2.9846558789107185,
          -7,
          -7,
          -3.0432312493636555,
          -3.157144358673168,
          -3.182414652434554,
          -2.1076944030298352,
          -3.314225470926497,
          -3.5229655954919865,
          -3.4671639659690903,
          -7,
          -3.5719028431953865,
          -7,
          -7,
          -2.9457147140598603,
          -2.975891136401793,
          -7,
          -7,
          -7,
          -3.1970047280230456,
          -7,
          -4.057666103909829,
          -7,
          -7,
          -3.9495363733761426,
          -3.3981136917305026,
          -3.0291131048924633,
          -7,
          -2.5634810853944106,
          -7,
          -2.5049689845761307,
          -3.004149341900059,
          -7,
          -2.649821463224565,
          -7,
          -2.5296869537729165,
          -3.255926900338438,
          -2.4802944600030066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8068580295188172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.458033192496506,
          -7,
          -3.8211203237768236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1231980750319988,
          -7,
          -3.8051472978004104,
          -7,
          -7,
          -3.5776066773625357,
          -7,
          -3.1720188094245563,
          -7,
          -3.0211892990699383,
          -7,
          -7,
          -3.693023067923694,
          -3.313445370426414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.359108792853317,
          -7,
          -7,
          -7,
          -3.890197386210029,
          -4.207768969739924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7333577879255855,
          -7,
          -7,
          -2.804723423210308,
          -4.109260764903763,
          -7,
          -2.77232170672292,
          -2.424881636631067,
          -7,
          -7,
          -7,
          -3.2016701796465816,
          -7,
          -7,
          -2.606381365110605,
          -1.919078092376074,
          -2.66228551572213,
          -2.2380461031287955,
          -7,
          -7,
          -3.3261309567107946,
          -7,
          -4.6637386065732995,
          -7,
          -2.8603380065709936,
          -7,
          -7,
          -7,
          -7,
          -2.394013663157313,
          -7,
          -7,
          -2.9006401839826004,
          -3.8283161051206496,
          -3.4184670209466006,
          -3.594503043820089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.448226940521222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.13840796891747,
          -7,
          -7,
          -5.12490182000836,
          -7,
          -3.3236645356081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.814414087772258,
          -7,
          -3.168939213835978,
          -3.523486332343228,
          -2.920123326290724,
          -7,
          -4.531006045114355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.966000857628784,
          -7,
          -7,
          -7,
          -7,
          -3.676126370759378,
          -7,
          -7,
          -3.059184617631371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9960736544852753,
          -3.566349092191664,
          -4.2760786594797535,
          -7,
          -7,
          -2.9041743682841634,
          -7,
          -7,
          -3.4194600727860704,
          -7,
          -7,
          -7,
          -3.995086496505733,
          -2.9711211579147765,
          -7,
          -7,
          -4.36496351982702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.715836275164994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.049876719873882,
          -7,
          -7,
          -7,
          -7,
          -4.5398034973846775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5777789366952244,
          -2.5880848733346493,
          -3.3453737305590887,
          -2.378397900948138,
          -3.265525335219074,
          -7,
          -7,
          -3.1592555821612995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3120715213029315,
          -7,
          -4.2767144946302915,
          -7,
          -7,
          -3.5333714390119844,
          -7,
          -3.361160995195026,
          -3.566319621524811,
          -7,
          -2.737987326333431,
          -7,
          -3.227372442289636,
          -7,
          -7,
          -3.613630434925241,
          -7,
          -7,
          -7,
          -7,
          -3.2579184503140586,
          -7,
          -7,
          -4.068556895072363,
          -7,
          -2.966063474430522,
          -7,
          -7,
          -7,
          -7,
          -3.2520435349731076,
          -3.31492005599242,
          -7,
          -2.874675052177361,
          -4.0521358093017765,
          -2.9388948175981704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.902764143924086,
          -2.8627275283179747,
          -4.126391191616615,
          -5.4118023069162495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9626624199215337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.584331224367531,
          -7,
          -3.288115025288103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7695250201710504,
          -3.804480189105993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8328664197968454,
          -7,
          -4.107498272612255,
          -7,
          -7,
          -7,
          -7,
          -3.7267272090265724,
          -3.9525018478630236,
          -3.400192488592576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1832698436828046,
          -7,
          -7,
          -3.9196532823103643,
          -7,
          -3.4073909044707316,
          -2.6769982707961844,
          -4.529289160043351,
          -7,
          -7,
          -3.9809573162296203,
          -7,
          -7,
          -7,
          -7,
          -3.94733567594874,
          -7,
          -2.730562063805724,
          -2.3384564936046046,
          -7,
          -7,
          -5.129323744920132,
          -3.5588884895367348,
          -7,
          -7,
          -7,
          -3.4403579968152878,
          -2.995854479874566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.929929560084588,
          -7,
          -2.997495599658018,
          -7,
          -7,
          -4.384120341773882,
          -5.574176008432909,
          -7,
          -3.000867721531227,
          -4.318931056493988,
          -3.762378429311964,
          -7,
          -7,
          -7,
          -2.9108910886445285,
          -3.7712199019495336,
          -7,
          -7,
          -7,
          -7,
          -3.364550995353972,
          -7,
          -7,
          -7,
          -3.6270584640009895,
          -7,
          -3.4212747912103465,
          -7,
          -7,
          -3.894172012566013,
          -7,
          -7,
          -7,
          -7,
          -4.369698138949881,
          -7,
          -7,
          -4.578232226348149,
          -7,
          -7,
          -7,
          -4.416265954074959,
          -7,
          -4.278090224037604,
          -7,
          -7,
          -4.921608451502453,
          -7,
          -7,
          -7,
          -5.086596492271168,
          -7,
          -4.529597161225425,
          -4.098366796439331,
          -7,
          -4.355365304018832,
          -7,
          -7,
          -7,
          -7,
          -4.374445883792621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6120417446452695,
          -7,
          -7,
          -5.065389225679412,
          -3.8751191654625683,
          -7,
          -7,
          -7,
          -4.933972940101611,
          -7,
          -7,
          -7,
          -4.359740647863716,
          -4.678836926900922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.689748260013518,
          -4.584579967666666,
          -5.706270459100365,
          -7,
          -7,
          -7,
          -4.653574275130625,
          -7,
          -7,
          -7,
          -4.212613696645057,
          -7,
          -7,
          -7,
          -4.78141067367645,
          -7,
          -7,
          -7,
          -4.897214590564255,
          -4.484669899885333,
          -7,
          -4.465521644855828,
          -4.95506688604493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.932980821923198,
          -4.3386556655787,
          -7,
          -3.2598326990634834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6461095219788477,
          -7,
          -7,
          -3.7633531087482153,
          -7,
          -7,
          -7,
          -3.4992745818922173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.190737783739713,
          -7,
          -7,
          -3.4104397862103464,
          -3.626032247829019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.663700925389648,
          -7,
          -7,
          -7,
          -2.900913067737669,
          -7,
          -3.977266212427293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7033500097793364,
          -7,
          -3.571825249040829,
          -3.15259407792747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1514209286929065,
          -7,
          -2.241172786770047,
          -4.301398989173564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.356083249147294,
          -7,
          -7,
          -7,
          -3.924795995797912,
          -7,
          -4.155396773704851,
          -4.544068044350276,
          -3.642068627341504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4424797690644486,
          -3.203304916138483,
          -7,
          -3.7895807121644256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.310976378660635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.747411807886423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495738547239104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.2042773858780045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9138138523837167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.652343055062715,
          -4.530324296872574,
          -7,
          -7,
          -7,
          -7,
          -3.0916669575956846,
          -7,
          -2.9502698435505628,
          -3.009450895798694,
          -2.606381365110605,
          -7,
          -7,
          -2.568201724066995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.14091637693907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0056094453602804,
          -7,
          -7,
          -4.208677789064284,
          -7,
          -3.896415976473123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.147382573846098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2323607123535703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.627956975499418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.536955042101058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.294298648755626,
          -7,
          -3.4217684012069243,
          -7,
          -7,
          -7,
          -3.995393852839795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7170044070405472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8165726960261033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.370698092575577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.090336275034143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9151887051731564,
          -7,
          -7,
          -7,
          -7,
          -4.3117615646589496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7460890430562004,
          -7,
          -7,
          -7,
          -7,
          -2.2487903775753857,
          -2.166260913692354,
          -7,
          -3.3552599055273786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.649594448966077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4771212547196626,
          -7,
          -2.81888541459401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5613945925060193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.66838591669,
          -7,
          -7,
          -3.80543288813214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8330450630415167,
          -7,
          -4.709727764559769,
          -7,
          -7,
          -7,
          -3.139384266388006,
          -7,
          -3.475864810477393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.318011132969562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.680154141734373,
          -7,
          -7,
          -3.09143245732978,
          -2.7601710828477963,
          -3.9480215331411035,
          -3.4825877695267677,
          -3.297030604235048,
          -3.248463717551032,
          -7,
          -7,
          -5.82830793676512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3820170425748683,
          -7,
          -3.287129620719111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.378930599420471,
          -7,
          -5.273151801393888,
          -7,
          -7,
          -3.4992120475889656,
          -3.4622482153549976,
          -7,
          -7,
          -7,
          -7,
          -3.4710715736130306,
          -3.2301081646076315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023773574676574,
          -7,
          -7,
          -4.593385766043638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278250442299367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6789642806521305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.068723756708053,
          -7,
          -7,
          -7,
          -5.487709514323861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9427321004917895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305082539675178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2380461031287955,
          -7,
          -7,
          -7,
          -2.400537989391946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.212453961040276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.632963168167261,
          -3.6267508536833932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.148294097434746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.899734541432098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.628726016090374,
          -7,
          -2.7244806771885997,
          -7,
          -7,
          -3.2436993270506815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.797168578888417,
          -7,
          -7,
          -7,
          -7,
          -3.6255182289716377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.961421094066448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.782472624166286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.204971450346999,
          -7,
          -7,
          -7,
          -4.199261380177078,
          -4.215452492883251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.864075777427166,
          -3.0483308017652884,
          -7,
          -2.978363147083883,
          -3.5589845322727145,
          -3.1126050015345745,
          -7,
          -7,
          -3.344195715871435,
          -3.17868923977559,
          -2.9786369483844743,
          -3.0084937139891323,
          -2.1529674602085436,
          -1.919078092376074,
          -7,
          -7,
          -2.3712731539238234,
          -1.3996737214810382,
          -3.2009872191631663,
          -7,
          -3.0800850850458694,
          -7,
          -4.141719359930591,
          -2.571708831808688,
          -2.70372115992702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.86123561863404,
          -3.274388795550379,
          -3.3176884121580343,
          -7,
          -3.91126417099837,
          -3.2001662463631075,
          -7,
          -7,
          -3.159266331093494,
          -7,
          -7,
          -7,
          -2.837588438235511,
          -7,
          -7,
          -3.9754777631658746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9454685851318194,
          -7,
          -7,
          -5.125838963995005,
          -7,
          -2.9014583213961123,
          -7,
          -7,
          -7,
          -7,
          -2.2474822606770544,
          -7,
          -2.6831971832643395,
          -2.7516639462609866,
          -2.143014800254095,
          -7,
          -3.2909245593827543,
          -7,
          -3.868892214759676,
          -7,
          -4.024977972095624,
          -7,
          -7,
          -7,
          -2.6780629049743454,
          -7,
          -3.5979144712025284,
          -7,
          -4.1536929400085505,
          -7,
          -7,
          -7,
          -2.9370161074648142,
          -7,
          -7,
          -7,
          -3.643057683751453,
          -3.1010774667367107,
          -7,
          -7,
          -3.1565491513317814,
          -7,
          -3.785009335604058,
          -7,
          -7,
          -7,
          -3.560026248912892,
          -7,
          -2.805160901599434,
          -3.6997510316895146,
          -3.9102431437972904,
          -7,
          -3.848250714677042,
          -3.037426497940624,
          -4.6934719238588585,
          -7,
          -7,
          -2.715271944117935,
          -7,
          -7,
          -3.7002492870420225,
          -3.1899112096928057,
          -7,
          -7,
          -4.37032800777951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.334936032690669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.397070549959409,
          -4.060886623004662,
          -3.3569814009931314,
          -7,
          -7,
          -7,
          -2.9626932593928177,
          -7,
          -7,
          -3.3089910290001643,
          -7,
          -2.5403294747908736,
          -3.2140486794119414,
          -7,
          -2.7183355789085066,
          -2.69810054562339,
          -2.8171244614184556,
          -3.4072208929273966,
          -7,
          -7,
          -3.3730055379654496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -2.546851001781394,
          -7,
          -7,
          -7,
          -7,
          -2.6670127621315003,
          -3.0979510709941502,
          -3.0861818046497493,
          -2.643013773485817,
          -3.2113875529368587,
          -1.8649423566468655,
          -7,
          -2.9943171526696366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6018427897820984,
          -7,
          -3.289514631590605,
          -7,
          -2.766164891363784,
          -7,
          -7,
          -3.752202153176521,
          -7,
          -7,
          -3.404833716619938,
          -4.057647088848993,
          -3.3830969299490943,
          -7,
          -7,
          -7,
          -2.8000293592441343,
          -7,
          -7,
          -7,
          -7,
          -3.9181352261663593,
          -2.6395971516419463,
          -4.135641416386669,
          -5.111011175368067,
          -7,
          -2.9537596917332287,
          -7,
          -7,
          -7,
          -7,
          -3.0517311960598494,
          -7,
          -2.4043449214283257,
          -7,
          -7,
          -7,
          -2.6026025204202563,
          -7,
          -7,
          -7,
          -3.4957672749725406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0362295440862943,
          -7,
          -3.0644579892269186,
          -7,
          -7,
          -3.7902851640332416,
          -2.4988354603129688,
          -3.278982116865443,
          -2.803457115648414,
          -7,
          -4.016699138064971,
          -7,
          -4.234542591311529,
          -7,
          -3.6704820018641366,
          -7,
          -7,
          -2.625826713285711,
          -7,
          -7,
          -3.4889265663567914,
          -2.946615995262667,
          -7,
          -7,
          -7,
          -7,
          -2.889581802149624,
          -7,
          -3.146438135285775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.060508975605298,
          -2.350910791047725,
          -3.1734776434529945,
          -7,
          -7,
          -3.956110776938729,
          -7,
          -7,
          -4.288517501797074,
          -7,
          -3.0874264570362855,
          -3.599992177584098,
          -3.302114376956201,
          -3.1826048405181293,
          -3.5200903281128424,
          -2.6159500516564007,
          -2.610234175334389,
          -3.0613267969905547,
          -7,
          -4.787079019289936,
          -3.8769679674325848,
          -7,
          -7,
          -7,
          -3.7636525705645303,
          -2.782677335215046,
          -7,
          -3.0354297381845483,
          -7,
          -7,
          -7,
          -7,
          -3.708760723690317,
          -2.096137246822133,
          -7,
          -3.0278590441755795,
          -3.0565237240791006,
          -7,
          -7,
          -5.03026885912154,
          -7,
          -2.416640507338281,
          -4.0190581035565085,
          -3.4823017672234426,
          -7,
          -3.113609151073028,
          -7,
          -1.8132913875518861,
          -3.4907308083489235,
          -3.2528530309798933,
          -2.2620553771910674,
          -7,
          -7,
          -3.4154741681092355,
          -7,
          -2.5599066250361124,
          -7,
          -2.809367293505889,
          -2.6459132750338443,
          -2.59402403573142,
          -7,
          -2.754348335711019,
          -3.897352134344313,
          -7,
          -7,
          -7,
          -7,
          -3.772834927239018,
          -7,
          -7,
          -4.880922152331826,
          -7,
          -7,
          -7,
          -4.242549709960113,
          -4.52105522846,
          -3.9802988641377226,
          -7,
          -7,
          -4.62206370411517,
          -7,
          -7,
          -7,
          -7,
          -4.276392863069535,
          -4.533276237578995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.775005728078465,
          -7,
          -7,
          -7,
          -3.8944545273697826,
          -7,
          -4.086715663944882,
          -7,
          -4.454189113874769,
          -7,
          -7,
          -7,
          -4.671191362340761,
          -4.367464015212066,
          -3.8914817038395197,
          -7,
          -7,
          -7,
          -4.3906071186911975,
          -7,
          -7,
          -7,
          -3.963107529523544,
          -4.079335031445408,
          -7,
          -3.7396988963507187,
          -3.82795052830263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.213867353906041,
          -4.257602351404392,
          -5.706516373170063,
          -2.910624404889201,
          -2.548564890653246,
          -7,
          -3.75173606623822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.306324931691518,
          -7,
          -4.216746333609975,
          -3.811709026696191,
          -4.199782593968986,
          -4.011570443597278,
          -7,
          -4.098930359493644,
          -4.111296126482262,
          -7,
          -5.046711672296513,
          -7,
          -7,
          -4.006947136561108,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -7,
          -3.7212333700172775,
          -3.771366970857781,
          -7,
          -3.7093830437734763,
          -7,
          -2.6011905326153335,
          -3.6452257115354163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019697730980192,
          -3.3230457354817013,
          -7,
          -7,
          -4.129593228367933,
          -7,
          -7,
          -7,
          -7,
          -3.0848621390484223,
          -7,
          -7,
          -7,
          -3.2359070270406924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7330017659072214,
          -7,
          -7,
          -3.4565178578052627,
          -3.242342621024643,
          -7,
          -3.4781334281005174,
          -7,
          -2.6314437690131722,
          -3.952041340793274,
          -7,
          -7,
          -7,
          -3.225567713439471,
          -7,
          -7,
          -2.960470777534299,
          -7,
          -7,
          -7,
          -3.9902500329278165,
          -7,
          -7,
          -7,
          -3.2265999052073573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.455137807393583,
          -3.4742162640762553,
          -7,
          -2.754603128608854,
          -7,
          -7,
          -2.6967930850817443,
          -7,
          -7,
          -3.351216345339342,
          -3.507653513464988,
          -7,
          -7,
          -3.799891684656865,
          -3.786294990698501,
          -7,
          -2.2620858294213435,
          -3.830396176483469,
          -7,
          -7,
          -3.177824971864682,
          -7,
          -7,
          -7,
          -7,
          -2.1832698436828046,
          -7,
          -7,
          -7,
          -3.0948203803548,
          -7,
          -4.229579462665645,
          -3.3443922736851106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.651084089243011,
          -3.6744937172963503,
          -7,
          -2.7520484478194387,
          -2.6718667887725633,
          -3.1370374547895126,
          -4.09572712255598,
          -7,
          -7,
          -7,
          -2.747411807886423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4050046650503694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499714568741124,
          -7,
          -7,
          -7,
          -7,
          -3.4222614508136027,
          -7,
          -7,
          -7,
          -7,
          -3.6629466143326246,
          -7,
          -7,
          -7,
          -7,
          -2.6364878963533656,
          -7,
          -7,
          -7,
          -2.877227325148208,
          -7,
          -2.807083812982132,
          -3.0429690733931802,
          -3.63977176138187,
          -7,
          -3.237292337567459,
          -3.2833012287035497,
          -3.9290611240847655,
          -3.341805346699918,
          -7,
          -3.354108439147401,
          -7,
          -3.2730012720637376,
          -7,
          -3.3634239329171765,
          -2.5540770813753886,
          -7,
          -3.0735717283049246,
          -3.2486437205878,
          -3.3912880485952974,
          -3.3109056293761414,
          -7,
          -3.0506374978013096,
          -3.427323786357247,
          -7,
          -2.1599680188106682,
          -1.8480078966750186,
          -2.66228551572213,
          -2.568201724066995,
          -2.3712731539238234,
          -7,
          -2.3898303126080624,
          -7,
          -7,
          -7,
          -7,
          -3.4549194906710476,
          -7,
          -2.637689819118401,
          -7,
          -3.1100844228869238,
          -3.1512932213135336,
          -2.4647449647018136,
          -3.0879587894607328,
          -7,
          -3.4184670209466006,
          -3.182557301304913,
          -2.9366407106078207,
          -7,
          -3.366982975977851,
          -2.9719712763997563,
          -7,
          -3.3690302218091532,
          -3.6078837443569896,
          -3.37675939540488,
          -7,
          -7,
          -3.2681097298084785,
          -3.358886204405869,
          -7,
          -3.3236498125135348,
          -7,
          -7,
          -7,
          -7,
          -3.8260099777911005,
          -2.1731074848325744,
          -7,
          -7,
          -3.953431068826028,
          -7,
          -7,
          -7,
          -7,
          -3.0995819938670537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.797860839395534,
          -7,
          -3.016476194280864,
          -7,
          -3.341213782664629,
          -3.1990234256365437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8686444383948255,
          -3.1073795828044486,
          -7,
          -3.886772643054438,
          -7,
          -7,
          -7,
          -3.7283131918551256,
          -7,
          -7,
          -3.4437322414015967,
          -2.8410464654093035,
          -3.4007624176069355,
          -7,
          -7,
          -3.4149733479708178,
          -3.437750562820388,
          -3.805296916157985,
          -7,
          -7,
          -3.237040791379191,
          -3.2034861742721255,
          -3.7467120225166606,
          -7,
          -3.305969047136854,
          -3.8098738192491894,
          -3.344588742578714,
          -3.2153202513299304,
          -3.0519239160461065,
          -4.397522885718343,
          -7,
          -3.1332194567324945,
          -7,
          -7,
          -7,
          -2.9109731122496454,
          -2.850748314036963,
          -7,
          -7,
          -4.391393875135699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.629555213347806,
          -2.9770700393537606,
          -3.413523281575585,
          -3.786964259435733,
          -7,
          -7,
          -7,
          -2.6890867704039234,
          -3.1256438923573917,
          -7,
          -3.300432429830641,
          -7,
          -7,
          -7,
          -3.353170619520263,
          -7,
          -7,
          -3.5055569386638217,
          -3.4449811120879446,
          -2.9684829485539352,
          -7,
          -2.8702575549888794,
          -2.4617062624483825,
          -2.6597973943019357,
          -2.190471770573345,
          -2.6015661942515655,
          -2.9978230807457256,
          -7,
          -3.238992583655289,
          -7,
          -7,
          -7,
          -3.0709609158009337,
          -3.0064660422492318,
          -7,
          -7,
          -3.139609254468416,
          -7,
          -7,
          -7,
          -7,
          -3.1851323292282134,
          -7,
          -7,
          -3.1082266563749283,
          -7,
          -3.2607866686549762,
          -3.4638929889859074,
          -2.5921767573958667,
          -3.120738405542943,
          -7,
          -7,
          -7,
          -3.772028165324855,
          -7,
          -7,
          -2.8138477542288545,
          -7,
          -7,
          -2.9423718807196844,
          -7,
          -3.000062037637689,
          -3.343014497150768,
          -2.7653704802916486,
          -7,
          -3.3354579006893843,
          -2.1463864673918462,
          -2.21923513401367,
          -7,
          -7,
          -7,
          -2.747670701773019,
          -7,
          -7,
          -3.3068537486930083,
          -7,
          -7,
          -2.8471612005780305,
          -7,
          -2.865301426102544,
          -3.196728722623287,
          -2.2563912668960113,
          -3.3257501636290527,
          -4.567905665742008,
          -7,
          -2.35729944896187,
          -7,
          -7,
          -2.9390197764486667,
          -2.6653464274249417,
          -2.3847117429382827,
          -7,
          -2.4260674243490388,
          -7,
          -2.92272545799326,
          -2.9677819080757994,
          -3.2942457161381182,
          -7,
          -2.78627807661434,
          -2.8790958795000727,
          -3.067379236051902,
          -7,
          -7,
          -7,
          -3.2907022432878543,
          -7,
          -7,
          -7,
          -3.3666097103924297,
          -7,
          -7,
          -7,
          -3.592565338155902,
          -7,
          -7,
          -7,
          -3.0620076908098435,
          -7,
          -3.549885675770413,
          -2.767341422368662,
          -2.980507447586642,
          -7,
          -7,
          -2.8258586820285867,
          -3.7442538557311544,
          -3.5303277897780863,
          -2.8705711023867333,
          -2.4868014257497535,
          -3.436162647040756,
          -3.4560622244549513,
          -7,
          -7,
          -7,
          -3.6182573448404014,
          -2.8989444668665096,
          -7,
          -7,
          -3.1357685145678222,
          -7,
          -3.4740705032150436,
          -7,
          -7,
          -2.686948920211501,
          -7,
          -3.6030360562505215,
          -7,
          -3.98979929932723,
          -2.9578944872128985,
          -7,
          -3.1090720809788794,
          -2.9590413923210934,
          -3.0768224233427732,
          -3.011908613349154,
          -2.721673245455936,
          -7,
          -3.6510840892430116,
          -1.5574823964177655,
          -1.9053114469859016,
          -1.9749528248035986,
          -7,
          -4.448994723423251,
          -3.6383394744106785,
          -7,
          -7,
          -3.2211533219547053,
          -7,
          -3.256717745977487,
          -3.3176455432211585,
          -2.8744818176994666,
          -2.885587356189656,
          -7,
          -3.5285310606354114,
          -7,
          -3.4967913157000425,
          -1.9381731982431614,
          -2.449392680351223,
          -3.7353593330017105,
          -7,
          -4.262605319944301,
          -3.50611588719763,
          -4.319705071921085,
          -7,
          -2.969765257712867,
          -3.324578744752569,
          -3.0139201038746375,
          -7,
          -3.090434416175122,
          -7,
          -2.827553882825746,
          -2.1987168371755947,
          -7,
          -3.2278867046136734,
          -7,
          -7,
          -7,
          -2.9976047874604546,
          -2.6534054906645013,
          -3.3703280077795106,
          -2.497313673637103,
          -7,
          -2.770615346059276,
          -7,
          -7,
          -4.609049866047581,
          -4.4801004068772015,
          -7,
          -7,
          -4.723225738862373,
          -3.918659293421823,
          -7,
          -7,
          -4.10932538777049,
          -4.0313680628857735,
          -7,
          -7,
          -4.030219092203501,
          -4.401163509874326,
          -3.5952757118020995,
          -7,
          -4.384084473382559,
          -3.849813396694806,
          -7,
          -7,
          -7,
          -5.089175378296633,
          -7,
          -4.246806220166817,
          -4.146003933810869,
          -7,
          -7,
          -7,
          -7,
          -4.482380436634382,
          -7,
          -4.688624461754994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.21900787825689,
          -4.627201940953156,
          -2.6885977750811696,
          -7,
          -4.468705401846396,
          -7,
          -3.2854072677273374,
          -7,
          -7,
          -3.7913748112350265,
          -3.2666627971449946,
          -3.6414741105040997,
          -3.8586274155837232,
          -3.8224202856192337,
          -3.0783772340214464,
          -7,
          -3.9796697538222423,
          -7,
          -7,
          -7,
          -4.395693247503584,
          -7,
          -3.390581878550435,
          -3.9179123059424894,
          -4.210934941717513,
          -5.105445461553958,
          -3.296665190261531,
          -2.404904953310314,
          -7,
          -3.706134349566367,
          -3.861653870213911,
          -5.106500268626982,
          -7,
          -3.9486085498764365,
          -7,
          -7,
          -3.9749566587701834,
          -4.490688716713189,
          -3.7223047868743278,
          -3.9453700944903036,
          -3.883547879268044,
          -4.4279997312126165,
          -4.20382130251655,
          -3.367169488534681,
          -3.2681097298084785,
          -4.007695632987596,
          -7,
          -4.3957398100276555,
          -7,
          -7,
          -4.621352872810209,
          -4.0213340397751285,
          -7,
          -2.9417598138146954,
          -7,
          -7,
          -7,
          -3.5839776507243726,
          -3.5487578285737045,
          -3.372964577812118,
          -7,
          -3.5010592622177517,
          -3.463332970234029,
          -7,
          -2.231389098449744,
          -7,
          -3.5342800052050816,
          -7,
          -3.5046203591177894,
          -3.4292676664331685,
          -7,
          -2.35243980157973,
          -7,
          -7,
          -3.4682734645251005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0611696432049054,
          -7,
          -3.7611005389581424,
          -7,
          -7,
          -3.495907076467104,
          -4.253794771352397,
          -4.796747738875302,
          -7,
          -2.258005644909925,
          -2.46169268798851,
          -7,
          -3.0177635091293156,
          -7,
          -3.1586639808139894,
          -2.917779411584164,
          -7,
          -7,
          -3.0874264570362855,
          -3.454387467146955,
          -3.782759192623997,
          -7,
          -3.4762517960070336,
          -2.808210972924222,
          -2.4463818122224423,
          -2.7962967400517917,
          -7,
          -7,
          -7,
          -3.0730765131400317,
          -2.3521825181113627,
          -7,
          -3.882353746388714,
          -7,
          -7,
          -7,
          -3.052565699053254,
          -2.851655565747637,
          -3.3163897510731957,
          -7,
          -7,
          -7,
          -7,
          -2.2896294858836037,
          -3.8566684836115352,
          -7,
          -3.055250878848215,
          -3.278696453182248,
          -7,
          -7,
          -3.3961993470957363,
          -3.49680119804521,
          -2.777346255747414,
          -1.8236998953130263,
          -3.030052968297048,
          -7,
          -3.1267157036857394,
          -3.125481265700594,
          -3.4781695335569047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6420438720485455,
          -7,
          -7,
          -3.862679866500334,
          -3.1639064334577514,
          -2.907411360774586,
          -3.3398487830376373,
          -3.1818435879447726,
          -7,
          -2.369215857410143,
          -2.814839277678894,
          -7,
          -7,
          -3.484442207642407,
          -3.1029479680053735,
          -3.054179909539224,
          -2.0865471476851583,
          -3.3142886609474975,
          -7,
          -7,
          -7,
          -7,
          -3.2778383330020473,
          -3.8806421264042847,
          -7,
          -3.513483956704257,
          -3.024895960107485,
          -7,
          -7,
          -7,
          -3.0661394928706995,
          -7,
          -3.5690225860295635,
          -7,
          -3.8476960207341655,
          -7,
          -3.460070543294161,
          -3.3552599055273786,
          -7,
          -7,
          -7,
          -7,
          -3.7371661281907387,
          -7,
          -7,
          -7,
          -7,
          -3.5809249756756194,
          -7,
          -7,
          -7,
          -7,
          -3.7610252517113727,
          -7,
          -7,
          -7,
          -7,
          -2.6201360549737576,
          -7,
          -7,
          -7,
          -3.2304489213782737,
          -7,
          -7,
          -2.9489017609702137,
          -4.09059172601141,
          -7,
          -7,
          -7,
          -7,
          -4.21133416373255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.860996436757196,
          -3.584274671924987,
          -7,
          -3.663700925389648,
          -3.663207512026945,
          -7,
          -2.8603380065709936,
          -2.6009728956867484,
          -2.709269960975831,
          -7,
          -7,
          -3.202458701293772,
          -2.2753113545418118,
          -2.2380461031287955,
          -7,
          -1.3996737214810382,
          -2.3898303126080624,
          -7,
          -3.0028856882374884,
          -7,
          -7,
          -2.8830933585756897,
          -4.099834396441161,
          -2.292994040067439,
          -7,
          -7,
          -7,
          -3.6386888866901237,
          -7,
          -2.751279103983342,
          -7,
          -2.812244696800369,
          -7,
          -3.2744102726836912,
          -3.439963935920905,
          -2.9990761422791077,
          -3.1894201246920386,
          -7,
          -7,
          -2.5313192205955564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5644293269979834,
          -4.14921911265538,
          -2.7551122663950713,
          -7,
          -7,
          -7,
          -7,
          -3.0270436588491743,
          -7,
          -7,
          -5.125334849623946,
          -7,
          -2.872350544494723,
          -7,
          -7,
          -3.397418542351348,
          -7,
          -2.163757523981956,
          -7,
          -3.4390167283875126,
          -2.6875289612146345,
          -2.1829849670035815,
          -7,
          -2.7769431981946755,
          -7,
          -3.868496215892929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.396697391280942,
          -3.3769417571467586,
          -3.2793246654426103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.494896343954353,
          -7,
          -7,
          -7,
          -3.62746827245971,
          -2.996621107579201,
          -7,
          -7,
          -7,
          -7,
          -3.5390940296563826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7489628612561616,
          -3.871397781487484,
          -3.851051856837514,
          -7,
          -3.8385972528166565,
          -7,
          -4.391742038798527,
          -2.807535028068853,
          -7,
          -2.903524064471262,
          -7,
          -7,
          -3.344479604166383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.073066317596221,
          -3.726808682524964,
          -4.153418485037711,
          -7,
          -7,
          -3.877544107715944,
          -7,
          -7,
          -3.130976691605617,
          -7,
          -3.2219355998280053,
          -7,
          -7,
          -7,
          -3.262263691892828,
          -2.3324384599156054,
          -2.5646660642520893,
          -7,
          -7,
          -7,
          -3.170848203643309,
          -7,
          -3.0907869279492677,
          -3.370698092575577,
          -2.958085848521085,
          -3.1762649421141465,
          -7,
          -7,
          -3.7894182198306012,
          -7,
          -7,
          -7,
          -3.0153597554092144,
          -2.851869600729766,
          -7,
          -7,
          -2.8062321697031862,
          -7,
          -7,
          -7,
          -7,
          -2.8349615268663984,
          -7,
          -3.373555606638933,
          -3.104145550554008,
          -2.8662873390841948,
          -2.586774783406332,
          -7,
          -7,
          -3.1212314551496214,
          -7,
          -3.62746827245971,
          -7,
          -7,
          -7,
          -3.9496826907952043,
          -3.288696260590256,
          -7,
          -7,
          -4.073461729279835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1411730057977474,
          -4.355757927746179,
          -3.1516149720160125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8992731873176036,
          -7,
          -7,
          -3.6087933739869307,
          -2.6734816970733473,
          -7,
          -7,
          -7,
          -2.16790781000148,
          -7,
          -7,
          -7,
          -7,
          -2.844270023592027,
          -3.2203696324513946,
          -2.4321672694425884,
          -7,
          -7,
          -7,
          -2.205475036740891,
          -7,
          -2.1063609088067503,
          -7,
          -3.863134426663756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9694159123539814,
          -7,
          -3.002166061756508,
          -3.6793370305207937,
          -7,
          -7,
          -3.336059277866349,
          -7,
          -7,
          -7,
          -3.7123339658940004,
          -7,
          -4.056460170339044,
          -2.709269960975831,
          -3.534406899137877,
          -7,
          -7,
          -7,
          -3.6892200372638357,
          -7,
          -3.9588981947107715,
          -2.808464181258226,
          -7,
          -7,
          -7,
          -7,
          -3.1455071714096627,
          -3.451939869365103,
          -3.121723945637367,
          -7,
          -7,
          -2.8491121661845775,
          -7,
          -7,
          -7,
          -3.030194785356751,
          -2.6944503426360096,
          -7,
          -3.429429264381788,
          -7,
          -4.432799386001243,
          -3.5894469132961895,
          -7,
          -3.8078280666840114,
          -7,
          -3.028571252692538,
          -3.2814878879400813,
          -7,
          -3.2544513953450163,
          -2.652522609767031,
          -2.740219097334925,
          -2.428828740086269,
          -3.5190400386483445,
          -7,
          -4.714425843380274,
          -3.390581878550435,
          -7,
          -7,
          -2.5352941200427703,
          -7,
          -2.569373909615046,
          -7,
          -2.6665179805548807,
          -2.7998572591896123,
          -7,
          -7,
          -7,
          -3.69539410829111,
          -2.210407706494972,
          -7,
          -3.136931851267557,
          -7,
          -7,
          -4.08543329741699,
          -5.1763095095662175,
          -7,
          -2.582986110380645,
          -4.240295419681809,
          -2.993362739596023,
          -7,
          -7,
          -7,
          -2.5748026613264443,
          -3.0813473078041325,
          -3.1150277335990566,
          -1.888438722625924,
          -7,
          -7,
          -2.9109799468508544,
          -7,
          -7,
          -3.0107238653917734,
          -2.735997884091794,
          -2.5622928644564746,
          -1.9817558986997879,
          -2.553883026643874,
          -7,
          -4.59470186120636,
          -7,
          -7,
          -7,
          -4.712237094261041,
          -7,
          -7,
          -4.590005419651329,
          -4.578994292445924,
          -7,
          -7,
          -7,
          -4.718418641829656,
          -4.997517439414725,
          -7,
          -7,
          -4.673122322872762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.531300053075186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.312399526311494,
          -7,
          -4.192595327569212,
          -4.220742994305462,
          -3.8827521556130797,
          -7,
          -7,
          -7,
          -4.934309037350079,
          -3.290835646600807,
          -3.485579476984679,
          -4.139391017726584,
          -4.008141034105658,
          -3.834838355672986,
          -7,
          -4.1352758017868725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.213181170119872,
          -4.885809137896048,
          -7,
          -7,
          -2.7275412570285567,
          -7,
          -4.353165804965758,
          -7,
          -5.405283166841318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.782365112225669,
          -7,
          -7,
          -7,
          -4.198931869932209,
          -3.7082650587622488,
          -7,
          -3.5281005197417086,
          -4.478566495593843,
          -3.5514499979728753,
          -4.444325902788053,
          -7,
          -7,
          -4.130247973456816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5648731035431913,
          -3.345765693114488,
          -3.2787250280075306,
          -7,
          -7,
          -3.7391172439194027,
          -3.3756636139608855,
          -3.290479813330673,
          -7,
          -7,
          -7,
          -4.018624226973913,
          -3.130440988463926,
          -7,
          -7,
          -7,
          -7,
          -3.357744325180376,
          -7,
          -7,
          -3.4720246977002813,
          -7,
          -7,
          -3.2430380486862944,
          -3.517195897949974,
          -7,
          -7,
          -7,
          -7,
          -4.294741706336959,
          -4.094278920414607,
          -7,
          -7,
          -7,
          -2.8187840149946926,
          -7,
          -2.977418730245156,
          -7,
          -7,
          -3.403953488790828,
          -7,
          -2.765668554759014,
          -7,
          -3.1835545336188615,
          -7,
          -7,
          -3.2234959409623944,
          -3.0993352776859577,
          -7,
          -7,
          -3.682190218984122,
          -7,
          -7,
          -2.833784374656479,
          -3.029789470831856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.014310480963307,
          -3.4718801529442906,
          -3.1496808824829383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.320146286111054,
          -3.798236176367936,
          -7,
          -7,
          -3.186603221792895,
          -3.1379663399603084,
          -3.309949384259016,
          -2.8735143535392917,
          -4.304275050477128,
          -7,
          -7,
          -2.828981954007923,
          -3.7288405683399715,
          -7,
          -7,
          -7,
          -2.3607826898732798,
          -7,
          -7,
          -7,
          -3.037027879755775,
          -7,
          -7,
          -7,
          -7,
          -4.244660516448021,
          -3.655042341331202,
          -2.832668550451795,
          -7,
          -2.934245881023071,
          -7,
          -2.594191581153005,
          -7,
          -7,
          -7,
          -3.2380461031287955,
          -7,
          -3.7919186113238093,
          -2.7126497016272113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8656960599160706,
          -3.0043213737826426,
          -7,
          -7,
          -7,
          -4.106020819140269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.196521603400585,
          -2.9995654882259823,
          -2.9836262871245345,
          -7,
          -7,
          -3.3960248966085933,
          -7,
          -7,
          -7,
          -7,
          -3.648067129448935,
          -7,
          -7,
          -7,
          -3.1856837803185045,
          -7,
          -7,
          -7,
          -3.4724638966069894,
          -7,
          -7,
          -7,
          -3.512817758564873,
          -3.161162037916258,
          -3.876448786878341,
          -7,
          -3.472317546316842,
          -2.7494705959901213,
          -3.315737167205999,
          -7,
          -7,
          -7,
          -3.164352855784437,
          -7,
          -2.682271463859843,
          -3.701006406595548,
          -7,
          -3.144262773761991,
          -3.3811428613330228,
          -7,
          -7,
          -7,
          -3.3443922736851106,
          -3.570776368794748,
          -3.500373714353374,
          -3.55708880365784,
          -3.5451833682154064,
          -7,
          -7,
          -3.2009872191631663,
          -7,
          -3.0028856882374884,
          -7,
          -1.587336734507256,
          -3.3634239329171765,
          -7,
          -3.179604292729292,
          -3.471438407389299,
          -3.207365037469072,
          -3.652536418593025,
          -7,
          -2.8720914961828954,
          -7,
          -7,
          -7,
          -2.717908147047537,
          -7,
          -2.6963982469295167,
          -2.530967681571915,
          -2.735304676471507,
          -3.455200277269631,
          -7,
          -3.228400358703005,
          -2.8615344108590377,
          -3.0574125012854534,
          -7,
          -7,
          -7,
          -7,
          -3.0812032393065754,
          -2.5095170937932436,
          -3.4679039465228003,
          -7,
          -2.6853834098014873,
          -7,
          -3.28668096935493,
          -3.520418023353549,
          -7,
          -2.922379406594948,
          -3.5886877897295424,
          -7,
          -2.3375068005038724,
          -7,
          -7,
          -2.083905552732438,
          -2.9436923271060165,
          -7,
          -7,
          -2.6278776945799716,
          -7,
          -2.6557785152248203,
          -3.0667730370850257,
          -7,
          -7,
          -2.352844087054004,
          -2.2265999052073573,
          -2.1722250597760207,
          -3.455606112581867,
          -7,
          -3.397070549959409,
          -1.8398246684187096,
          -3.1992064791616577,
          -3.091103944090286,
          -2.9966575799270623,
          -2.985109335762888,
          -7,
          -2.967547976218862,
          -2.742568034366142,
          -1.459993675072905,
          -2.3687516195445553,
          -7,
          -3.5826314394896364,
          -2.2842980032561075,
          -2.486555485662273,
          -3.0364958190682128,
          -7,
          -2.6571754108707712,
          -7,
          -2.9615847317782196,
          -7,
          -7,
          -3.653309012938479,
          -3.0671452788853952,
          -2.9754974565302335,
          -2.0586790361052354,
          -2.5910139870040743,
          -3.203260814881101,
          -7,
          -3.966798546383361,
          -7,
          -4.305132016847225,
          -3.2615007731982804,
          -3.010299956639812,
          -1.9078578787236007,
          -7,
          -7,
          -2.532460373916233,
          -7,
          -7,
          -3.4470028984661623,
          -3.4549633647502485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1144441724452543,
          -3.409087369447835,
          -2.417643009928512,
          -3.0096936540397285,
          -3.525044807036845,
          -3.6949998327470954,
          -7,
          -3.176958980586908,
          -2.5684364144168854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.10701102844847,
          -2.9694159123539814,
          -3.4369573306694496,
          -7,
          -2.5018577027245423,
          -7,
          -7,
          -7,
          -7,
          -3.6735737964230517,
          -7,
          -3.2161218985895266,
          -3.1283992687178066,
          -3.5073160400764136,
          -3.3586413339445613,
          -3.01717251394567,
          -7,
          -7,
          -3.53198955141255,
          -3.1870975005834774,
          -7,
          -3.44870631990508,
          -2.269471978837336,
          -7,
          -3.8534548413680665,
          -7,
          -3.180928319993991,
          -1.9166812811245006,
          -3.539828558377898,
          -2.2784446045101223,
          -1.2929837274684335,
          -7,
          -2.36707624226875,
          -7,
          -2.000952284542136,
          -2.6108966425304647,
          -3.597804842404293,
          -2.495279967133839,
          -2.900093901543398,
          -3.2403620120296877,
          -7,
          -2.820394659578645,
          -3.032014034159506,
          -3.084254459111229,
          -7,
          -4.152624639447619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2933072974453994,
          -3.358315640082196,
          -7,
          -3.6769678142947586,
          -3.7967130632808965,
          -3.9761206182998157,
          -7,
          -7,
          -3.4877038631637265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.020982442918419,
          -7,
          -2.7680348382006295,
          -4.299917781049863,
          -7,
          -3.4930395883176515,
          -3.5098742850047193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4794313371977363,
          -7,
          -7,
          -7,
          -3.91252156664849,
          -7,
          -7,
          -7,
          -3.4771212547196626,
          -3.527243116388089,
          -2.8184898222042136,
          -7,
          -7,
          -7,
          -2.507025083337453,
          -3.9233994661587164,
          -2.5657494618659626,
          -2.5707551531682618,
          -7,
          -2.9609461957338317,
          -2.6114387921441513,
          -3.6418705454763125,
          -3.3319034313985325,
          -7,
          -4.031271084270531,
          -7,
          -7,
          -7,
          -3.1809140036160857,
          -2.4595600073300266,
          -2.610165674027065,
          -3.1773055843418603,
          -3.9657189702442213,
          -1.6997799316716846,
          -1.8403196906651225,
          -7,
          -1.912399211126715,
          -1.4348737790778903,
          -2.657316664284362,
          -7,
          -2.3341664243247684,
          -7,
          -3.47928731647617,
          -3.30362797638389,
          -7,
          -3.3533390953113047,
          -3.3346145711793946,
          -7,
          -7,
          -7,
          -3.63397630832238,
          -2.703420357325243,
          -3.4680517914542377,
          -3.7331771955817663,
          -7,
          -2.419065670188649,
          -3.490800952010855,
          -3.147573276552419,
          -2.9404781721556996,
          -7,
          -7,
          -7,
          -3.27630858685576,
          -3.665393350279712,
          -3.4030555820599213,
          -2.8738122644316864,
          -7,
          -7,
          -7,
          -2.8614801002878543,
          -3.2083741645947104,
          -3.494850021680094,
          -7,
          -7,
          -7,
          -3.344588742578714,
          -2.716142518281689,
          -2.2064660628531048,
          -7,
          -7,
          -3.5106790310322102,
          -2.0871501757189,
          -4.1718492670490575,
          -2.121465808378882,
          -4.120713017079302,
          -7,
          -2.4222717167305126,
          -3.881999750051845,
          -3.316022793314225,
          -7,
          -1.8082237164938735,
          -7,
          -2.5825935908267597,
          -7,
          -3.1806419027298323,
          -3.345079526314867,
          -7,
          -7,
          -3.38147609027503,
          -3.1812717715594614,
          -7,
          -7,
          -3.8285310066451013,
          -7,
          -2.5676527679046632,
          -7,
          -7,
          -4.620094394032491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2534749651978156,
          -4.41624097236815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6942628926579433,
          -4.6333876490890935,
          -7,
          -7,
          -7,
          -5.392056468286671,
          -7,
          -3.9584205280525184,
          -3.3988944070784957,
          -7,
          -7,
          -7,
          -7,
          -3.9456654994321343,
          -4.2230544131791055,
          -7,
          -4.067554376693503,
          -7,
          -7,
          -7,
          -7,
          -3.8845688149183335,
          -4.245636029406203,
          -3.6833972959193733,
          -3.06595298031387,
          -3.9921733990840766,
          -2.874826644359406,
          -1.6300281227436775,
          -3.2325514293947246,
          -3.4700060000867836,
          -3.659345635746177,
          -3.0282892554324534,
          -3.1295466788486532,
          -7,
          -7,
          -3.797309098122926,
          -3.1441069730493227,
          -7,
          -2.994478461422008,
          -2.501646014590592,
          -7,
          -3.629969946292171,
          -3.635282637998212,
          -3.540954808926133,
          -7,
          -2.910780532325959,
          -2.7352684767977125,
          -5.407369656667116,
          -7,
          -7,
          -3.1915907263792107,
          -3.090751689644903,
          -7,
          -4.807238971050686,
          -3.852601969338235,
          -7,
          -3.4497868469857735,
          -4.367281357632943,
          -4.4679039465228,
          -3.65270899188202,
          -7,
          -3.1569915605680214,
          -2.984227178928321,
          -4.308671106715418,
          -2.2813789526405572,
          -2.925569909543376,
          -3.0095619469467327,
          -3.34331479369941,
          -2.7715874808812555,
          -4.448922640496831,
          -7,
          -3.7937205568135233,
          -3.251415136117222,
          -3.741348602475895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.570103203626733,
          -2.379162335877126,
          -2.5349960967118763,
          -7,
          -7,
          -4.084737097962795,
          -7,
          -3.635483746814912,
          -7,
          -3.419900701340701,
          -7,
          -3.4702567619633173,
          -3.1082266563749283,
          -7,
          -7,
          -3.5933968423002067,
          -7,
          -3.539452491549461,
          -7,
          -7,
          -2.713385526896622,
          -7,
          -7,
          -7,
          -3.05307844348342,
          -7,
          -3.6226629418839154,
          -7,
          -7,
          -7,
          -2.6503591996329794,
          -4.201847573590095,
          -7,
          -7,
          -2.5903879807436074,
          -7,
          -2.636655029117369,
          -7,
          -2.991779669753309,
          -2.6296264535946183,
          -7,
          -3.4699692094999595,
          -7,
          -2.508754102588731,
          -7,
          -7,
          -3.606488850442648,
          -3.081707270097349,
          -7,
          -2.505045568058097,
          -2.2479732663618064,
          -7,
          -7,
          -2.8069333037164066,
          -2.5405640806209617,
          -7,
          -4.212267528548938,
          -7,
          -7,
          -7,
          -3.345863628503764,
          -2.829410346975762,
          -2.411198673955554,
          -3.794627444664508,
          -2.81424759573192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3479151865016914,
          -2.1245653543272263,
          -7,
          -3.439963935920905,
          -2.0419637496480063,
          -2.4045032846576886,
          -3.5085970462300686,
          -3.664077590185075,
          -3.6534054906645013,
          -7,
          -7,
          -3.2691625654317447,
          -3.5144149205803688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.838723190031372,
          -3.4100176082030527,
          -3.443840458807008,
          -3.0430674079304287,
          -3.924305136154559,
          -4.096875268059688,
          -7,
          -3.007491733295336,
          -7,
          -3.008919388595035,
          -7,
          -3.0478587274074567,
          -3.540141698835551,
          -7,
          -7,
          -2.531052929286764,
          -2.707813410202252,
          -3.17790506896417,
          -3.2304489213782737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3343532083835172,
          -7,
          -7,
          -7,
          -7,
          -3.471438407389299,
          -7,
          -7,
          -7,
          -3.375846436309156,
          -7,
          -7,
          -7,
          -7,
          -3.52022143588196,
          -3.4437322414015967,
          -2.911766184046292,
          -7,
          -7,
          -3.8300366292735153,
          -3.527243116388089,
          -7,
          -3.7531232446817127,
          -7,
          -3.3851592385800426,
          -7,
          -7,
          -7,
          -7,
          -3.5323083932754162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.726871135191101,
          -7,
          -7,
          -7,
          -3.1883377790407526,
          -4.205420915676343,
          -7,
          -7,
          -7,
          -2.5237464668115646,
          -7,
          -3.85658792817761,
          -7,
          -7,
          -7,
          -4.6685163718317675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.587336734507256,
          -7,
          -7,
          -7,
          -4.663465343891112,
          -7,
          -7,
          -7,
          -7,
          -3.31492005599242,
          -7,
          -7,
          -7,
          -3.0334237554869494,
          -7,
          -4.128942873583301,
          -7,
          -3.8908120989551245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7477845662086304,
          -7,
          -7,
          -7,
          -7,
          -3.712481337801919,
          -7,
          -7,
          -7,
          -4.823581811323984,
          -7,
          -7,
          -7,
          -7,
          -2.906634286963973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4572761860613257,
          -3.2107197156810017,
          -7,
          -7,
          -3.661387977649986,
          -3.204798038190855,
          -3.5320320771880462,
          -7,
          -7,
          -7,
          -7,
          -3.0334237554869494,
          -7,
          -7,
          -3.841015152493763,
          -2.909020854211156,
          -7,
          -7,
          -3.0068937079479006,
          -7,
          -7,
          -7,
          -7,
          -3.771477239864823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6063813651106047,
          -7,
          -4.166015456323775,
          -4.752563146780113,
          -7,
          -7,
          -7,
          -4.69181943079963,
          -7,
          -7,
          -3.2776092143040914,
          -7,
          -7,
          -3.817036226050029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1046422774442766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.538711942116912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8627870982353443,
          -7,
          -7,
          -4.8499074903725905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6086864575703634,
          -7,
          -7,
          -7,
          -7,
          -3.444204844769567,
          -7,
          -3.3528575624069963,
          -2.776580126292323,
          -7,
          -7,
          -7,
          -2.9028184680822537,
          -7,
          -7,
          -3.303088010528054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.337099696361683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3354579006893843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5521813388393357,
          -7,
          -5.411729107459061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7630534402996147,
          -3.7985125330313516,
          -7,
          -7,
          -7,
          -3.832657909760817,
          -7,
          -4.530826986248976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7180862947830917,
          -3.3459125879178178,
          -7,
          -7,
          -2.641143471369817,
          -2.4002500911501117,
          -7,
          -2.7693773260761385,
          -2.4598948527451516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.653955004827485,
          -3.576974474604044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6419200744131177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.351118964761353,
          -7,
          -7,
          -7,
          -7,
          -3.7346398389876994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8830933585756897,
          -7,
          -3.5372432508097047,
          -5.398033227215721,
          -7,
          -3.2960066693136723,
          -7,
          -7,
          -7,
          -2.3607826898732798,
          -7,
          -3.5020172148271476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.022387125686438,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.387475252916437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.958085848521085,
          -7,
          -4.023596615284432,
          -3.170613703377405,
          -7,
          -7,
          -7,
          -4.331662602150657,
          -7,
          -7,
          -7,
          -4.961416347652731,
          -7,
          -7,
          -4.131762977530949,
          -3.3256524705723134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.388314387117743,
          -4.0403324467250155,
          -5.405164440985005,
          -7,
          -7,
          -7,
          -4.477053692545283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.182371848635196,
          -7,
          -4.465090248626674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605046332184747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.987725834843644,
          -3.300378064870703,
          -3.573654715980733,
          -7,
          -7,
          -4.336919802200228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.79531680665612,
          -3.5837653682849995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4871383754771865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.052109547155785,
          -4.785927468480128,
          -7,
          -7,
          -3.621539773321731,
          -7,
          -7,
          -7,
          -7,
          -3.54476236021663,
          -7,
          -7,
          -7,
          -2.6374897295125104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9732664361085286,
          -7,
          -7,
          -3.504878459410216,
          -2.8737564217033555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.266936911159173,
          -3.984986899788327,
          -3.4158077276355434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0832158621559973,
          -7,
          -7,
          -3.295860195625301,
          -3.782472624166286,
          -7,
          -7,
          -4.299507298700488,
          -7,
          -3.712733859069952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.52580901112709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7880445724974723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2166935991697545,
          -2.775974331129369,
          -7,
          -7,
          -3.8285712888450414,
          -7,
          -7,
          -7,
          -3.005861561054057,
          -3.2973470478364564,
          -2.980609293526336,
          -3.403977963669355,
          -7,
          -7,
          -7,
          -3.523579255398529,
          -3.6662839226231023,
          -7,
          -2.8887409606828927,
          -3.003500015009609,
          -2.8342617088117708,
          -2.5183258929029195,
          -3.299942900022767,
          -2.010057537162737,
          -2.5646660642520893,
          -7,
          -3.9719191579347575,
          -2.9595183769729982,
          -3.3261309567107946,
          -7,
          -3.0800850850458694,
          -7,
          -7,
          -3.3634239329171765,
          -7,
          -7,
          -7,
          -3.242687369454165,
          -3.3402457615679317,
          -2.786751422145561,
          -3.269396182694991,
          -3.4554539687786283,
          -3.1718726561396826,
          -7,
          -2.4787267814350806,
          -7,
          -3.1604685311190375,
          -3.220108088040055,
          -2.9714076440310557,
          -7,
          -2.1433363127613307,
          -3.5903401790321667,
          -3.3830969299490943,
          -2.7170044070405472,
          -2.1997754860978236,
          -7,
          -3.1357685145678222,
          -3.4390167283875126,
          -7,
          -2.707910665713106,
          -7,
          -3.1118175226571605,
          -7,
          -7,
          -3.134389632406994,
          -3.305136318943639,
          -3.366111523378347,
          -2.56147407266352,
          -7,
          -3.6290016192869916,
          -3.750138611466349,
          -7,
          -3.1063042456868444,
          -7,
          -7,
          -3.11293997608408,
          -3.5596672783880576,
          -7,
          -7,
          -7,
          -7,
          -3.6704314093606056,
          -3.0050946750725487,
          -2.928011577509416,
          -3.513483956704257,
          -3.2426783089692313,
          -3.3997602257103656,
          -3.1255535517330353,
          -7,
          -7,
          -3.625312450961674,
          -3.52543355342882,
          -3.1221066080541338,
          -3.0330214446829107,
          -7,
          -3.195041280556656,
          -7,
          -7,
          -7,
          -3.194870986853204,
          -3.312811826212088,
          -2.750948967531182,
          -7,
          -2.4623231130842345,
          -2.8731837838314673,
          -2.793964905280631,
          -2.8785217955012063,
          -2.611723308007342,
          -7,
          -3.068978139437872,
          -7,
          -7,
          -2.96883304489043,
          -7,
          -2.8634715656455874,
          -3.1332194567324945,
          -3.102169745008345,
          -3.561943205916616,
          -3.0941215958405612,
          -7,
          -7,
          -3.88675529954508,
          -3.4596939764779706,
          -2.939319531078238,
          -3.146283113159587,
          -7,
          -3.4085791254086675,
          -3.2907628862373217,
          -2.8108083781659583,
          -7,
          -7,
          -3.91902576458736,
          -7,
          -7,
          -7,
          -2.7255032688593155,
          -3.3014640731432996,
          -3.787425049380184,
          -7,
          -3.0227032411199173,
          -3.806044235748088,
          -7,
          -7,
          -7,
          -3.3494717992143856,
          -2.5643701225153204,
          -7,
          -3.440174146226027,
          -7,
          -7,
          -2.936513742478893,
          -3.7826756296882844,
          -7,
          -7,
          -3.2400497721126476,
          -3.0081741840064264,
          -3.0283678836970616,
          -7,
          -3.210318519826232,
          -3.307602993826056,
          -2.5523363135496857,
          -2.8332746392905634,
          -2.6149451276093214,
          -7,
          -3.3881012015705165,
          -3.1077262432329404,
          -3.371621927176021,
          -7,
          -7,
          -2.463395230212905,
          -3.061640934061686,
          -7,
          -7,
          -3.151807470681409,
          -7,
          -4.314709692955174,
          -7,
          -3.3564083270389813,
          -3.1544813921323813,
          -7,
          -3.499893186149237,
          -2.777909908625889,
          -7,
          -2.9908935802199035,
          -3.025442414387701,
          -3.0560150335589764,
          -3.163757523981956,
          -3.5036545192429593,
          -3.2887707217103532,
          -7,
          -3.0922292421628566,
          -7,
          -2.9790514702083497,
          -2.8490506905695123,
          -3.593618308129536,
          -7,
          -2.6212087487493636,
          -7,
          -2.517675648876312,
          -2.916278440573439,
          -2.804548308388056,
          -2.757965097861435,
          -2.909556029241175,
          -2.808210972924222,
          -2.9763499790032735,
          -7,
          -3.122434336266318,
          -7,
          -3.2397998184470986,
          -7,
          -7,
          -3.362105319293773,
          -3.3163897510731957,
          -7,
          -3.378216149749878,
          -7,
          -3.3942765267678214,
          -3.5105003274058215,
          -2.6879341244886357,
          -7,
          -4.483810406523914,
          -7,
          -3.0678145111618402,
          -3.3914644118391033,
          -3.1595671932336202,
          -7,
          -2.850850368903348,
          -2.867820908045573,
          -3.512817758564873,
          -2.359428902985584,
          -7,
          -7,
          -7,
          -3.3510228525841237,
          -7,
          -7,
          -7,
          -3.6278533350162383,
          -7,
          -7,
          -7,
          -3.0464951643347082,
          -2.508698017551925,
          -2.9249680958524342,
          -7,
          -2.8120773708565143,
          -3.804480189105993,
          -2.9324737646771535,
          -3.58029758843657,
          -3.209300495159705,
          -3.5240064455573727,
          -7,
          -7,
          -3.869681431545861,
          -3.5577477416414682,
          -3.0756321088257814,
          -3.1172712956557644,
          -2.688839871885674,
          -7,
          -7,
          -7,
          -2.8507227965727586,
          -3.0029062314830117,
          -2.9868938242680527,
          -2.334518605101907,
          -3.2284516907144,
          -3.4959603948817053,
          -2.932811868611632,
          -7,
          -2.9985499336047674,
          -7,
          -2.261624845520399,
          -7,
          -7,
          -2.875784485010796,
          -7,
          -2.3325731039972615,
          -7,
          -2.970346876230093,
          -3.2231496826367745,
          -3.4671639659690903,
          -2.26563802057514,
          -2.319591808561234,
          -3.8815019492659513,
          -2.5893444425092373,
          -7,
          -3.31921019418185,
          -7,
          -7,
          -2.5276299008713385,
          -3.236033147117636,
          -4.024772913079632,
          -7,
          -3.0386769213410014,
          -2.6376147963188186,
          -2.911157608739977,
          -2.8862650590297565,
          -4.105069722166873,
          -1.9614210940664483,
          -2.8226038992559745,
          -7,
          -7,
          -3.5588285248170117,
          -3.1531285942803624,
          -2.4144162029529017,
          -2.6225593863895877,
          -3.012731800628455,
          -3.0517311960598494,
          -2.6577727077355213,
          -7,
          -2.912554162140022,
          -7,
          -2.847880997445375,
          -3.154271775993095,
          -7,
          -3.7522435260951665,
          -3.134713812032996,
          -4.194911338636273,
          -7,
          -3.4120123012470613,
          -4.025006672633036,
          -2.551391902262548,
          -7,
          -3.13640344813399,
          -3.3416323357780544,
          -7,
          -2.978864984347657,
          -2.7179903781599086,
          -2.8632038590286295,
          -3.312811826212088,
          -7,
          -7,
          -2.8773713458697743,
          -2.800717078282385,
          -3.117105502761251,
          -2.4718781993072905,
          -3.366982975977851,
          -2.7820685019399147,
          -7,
          -7,
          -3.435589573086606,
          -3.3513811045321633,
          -4.30513631894364,
          -7,
          -7,
          -7,
          -7,
          -4.607465746402825,
          -3.8889765604386084,
          -7,
          -7,
          -3.5578078557646045,
          -4.254322452836917,
          -4.226238917075984,
          -4.598495042273587,
          -4.058445005444395,
          -7,
          -4.4533693105866075,
          -7,
          -7,
          -7,
          -5.0896614144671775,
          -7,
          -3.374797209025671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.308237057684112,
          -7,
          -7,
          -4.052963128755503,
          -4.233706654286382,
          -7,
          -4.135164466656955,
          -3.957798774929998,
          -4.475642137554701,
          -7,
          -3.3743918868972482,
          -3.4352071032407476,
          -3.985291718592888,
          -4.469718950821701,
          -7,
          -7,
          -7,
          -7,
          -3.682879314925225,
          -3.7547304690237535,
          -3.3667030568692864,
          -4.163831985102053,
          -3.5717879989217423,
          -3.995248983383211,
          -7,
          -3.9838216681692966,
          -3.6110857334148725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.396303983762163,
          -4.234805424012735,
          -4.707729388220862,
          -3.3531465462139796,
          -2.2845332706132413,
          -7,
          -4.263863215008734,
          -7,
          -5.408000698156257,
          -3.6522463410033232,
          -7,
          -7,
          -4.352645518668972,
          -7,
          -7,
          -7,
          -3.554004321011903,
          -7,
          -3.2248782201699746,
          -4.031421930538409,
          -7,
          -4.172948167029386,
          -4.486175353339631,
          -7,
          -3.888039982719819,
          -7,
          -7,
          -4.14703703406944,
          -4.328053250252685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1683571576689884,
          -3.2800089531081857,
          -3.2708857785427625,
          -7,
          -7,
          -2.908355580205547,
          -7,
          -7,
          -7,
          -3.0067104742139805,
          -7,
          -3.263243690843952,
          -3.752125307297898,
          -7,
          -7,
          -7,
          -3.0823065450398275,
          -3.488127496247458,
          -7,
          -7,
          -7,
          -3.3953263930693507,
          -7,
          -3.5245259366263757,
          -3.688953462637418,
          -7,
          -3.3731695589037214,
          -7,
          -7,
          -4.613027417022225,
          -4.497803581102442,
          -4.798650645445269,
          -7,
          -7,
          -3.0530357378949193,
          -7,
          -3.3469394626989906,
          -7,
          -7,
          -3.207050607980928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1539672216454786,
          -7,
          -3.5328817194073974,
          -3.271415618781008,
          -3.934321667513431,
          -7,
          -3.2227164711475833,
          -3.381205361238583,
          -7,
          -3.5889716175206554,
          -7,
          -7,
          -7,
          -3.0864784741618685,
          -3.3499512783389576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.387033701282363,
          -3.571825249040829,
          -7,
          -7,
          -3.419184452746418,
          -7,
          -7,
          -2.985370331043443,
          -3.032323877412346,
          -2.711500469726369,
          -3.10698371567979,
          -3.1326598503277174,
          -7,
          -7,
          -7,
          -3.1866738674997452,
          -7,
          -7,
          -7,
          -3.313234291694724,
          -7,
          -3.785792361435081,
          -7,
          -7,
          -7,
          -3.2695006550094687,
          -7,
          -3.903876433238587,
          -4.087840549742632,
          -3.7863964613723042,
          -3.635785235533652,
          -7,
          -7,
          -7,
          -2.9946836768553746,
          -2.709340641174848,
          -7,
          -7,
          -7,
          -3.4490153163477864,
          -3.72209071485586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3142886609474975,
          -3.33665982345442,
          -7,
          -7,
          -3.247359422468937,
          -7,
          -7,
          -7,
          -7,
          -3.415974411376566,
          -7,
          -7,
          -7,
          -4.157184682201611,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9169406120116785,
          -7,
          -7,
          -7,
          -7,
          -3.309949384259016,
          -7,
          -7,
          -7,
          -7,
          -3.4800788400654854,
          -3.199618067707931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.875928984922927,
          -7,
          -2.998695158311656,
          -4.90385746681675,
          -7,
          -7,
          -7,
          -3.7207379770184255,
          -3.2137302038548414,
          -7,
          -7,
          -7,
          -7,
          -2.4510184521554574,
          -3.1092608334015583,
          -7,
          -7,
          -2.002635518598138,
          -4.249738631896562,
          -3.0965624383741357,
          -7,
          -7,
          -3.3348556896172914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8830933585756897,
          -7,
          -7,
          -7,
          -7,
          -4.442633391202302,
          -7,
          -2.9849771264154934,
          -3.0474695746198566,
          -7,
          -2.949585151326652,
          -7,
          -7,
          -7,
          -7,
          -1.9316031439741541,
          -4.005743400045622,
          -3.4566696294237573,
          -3.6076158432431322,
          -7,
          -7,
          -7,
          -3.453471233722936,
          -2.765668554759014,
          -3.0962145853464054,
          -7,
          -7,
          -3.030194785356751,
          -7,
          -7,
          -2.3508938095043144,
          -7,
          -7,
          -7,
          -7,
          -3.6405808064896528,
          -7,
          -3.44216608578472,
          -4.046433378005417,
          -7,
          -3.0692980121155293,
          -7,
          -7,
          -3.8809849904867533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9509730248744774,
          -7,
          -7,
          -3.3729171146923997,
          -2.945591667032007,
          -3.4207394131837257,
          -2.4720246977002813,
          -7,
          -7,
          -2.224603685336854,
          -2.9183798695859635,
          -7,
          -7,
          -3.851166586670228,
          -7,
          -7,
          -7,
          -3.4998702905864882,
          -7,
          -7,
          -7,
          -3.638389407665336,
          -7,
          -7,
          -7,
          -2.840419777736486,
          -7,
          -4.3863384163575105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.87453979707101,
          -2.642525866686211,
          -7,
          -7,
          -7,
          -4.693265155714742,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4560622244549513,
          -7,
          -7,
          -7,
          -2.953555261008572,
          -2.645422269349092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.156700552582017,
          -2.91204482964487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.810659983822341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.544429805705557,
          -7,
          -7,
          -7,
          -7,
          -3.0326823673363323,
          -2.074816440645175,
          -2.3801207542684404,
          -2.550228353055094,
          -2.720434958433874,
          -2.606560492554639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.077404246398098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.380271556201239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.136984656238368,
          -7,
          -3.092114288620125,
          -4.298021295582452,
          -7,
          -7,
          -7,
          -2.099115357879955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2704062482323635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3205759970450925,
          -2.9747090245764993,
          -2.6646419755561257,
          -7,
          -7,
          -4.015715932006951,
          -2.4795958738475177,
          -2.6881527555915663,
          -7,
          -7,
          -7,
          -7,
          -2.9030899869919438,
          -7,
          -7,
          -3.2646761821488246,
          -3.721728198572788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9770118969770887,
          -7,
          -7,
          -7,
          -4.65500710172715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.356647199759322,
          -3.5138831856110926,
          -7,
          -7,
          -7,
          -7,
          -4.120819652228079,
          -3.874249822778403,
          -7,
          -7,
          -7,
          -3.2826976226551636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5595076406424986,
          -4.012276677439264,
          -3.0654907946646865,
          -4.428157364717315,
          -7,
          -7,
          -4.717899237742219,
          -3.478927055582925,
          -7,
          -7,
          -7,
          -3.5446880223026773,
          -3.4874212113594747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6587879323179417,
          -7,
          -7,
          -3.896834743546406,
          -4.471291711058939,
          -7,
          -7,
          -7,
          -3.771973104217725,
          -3.1817864401741915,
          -4.114043562548077,
          -3.0538235216291834,
          -3.1337213467185854,
          -7,
          -4.305286865476126,
          -4.7193147105421165,
          -7,
          -3.4676763944587523,
          -7,
          -3.673951199690897,
          -3.881363903940163,
          -7,
          -4.313445370426414,
          -7,
          -4.7859878975004735,
          -7,
          -3.3018212232307826,
          -3.805534839182783,
          -7,
          -7,
          -7,
          -7,
          -3.5191422616644465,
          -4.159958002678519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.453471233722936,
          -7,
          -3.4101548610762307,
          -7,
          -4.670755942215133,
          -4.464206284343785,
          -3.043081453904068,
          -7,
          -7,
          -7,
          -3.2439007156385253,
          -7,
          -7,
          -7,
          -4.962970396091709,
          -4.681024035829723,
          -7,
          -4.4380516115621225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.186946452188543,
          -7,
          -7,
          -7,
          -7,
          -4.955774312014999,
          -7,
          -7,
          -4.078674273360466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6088468223264116,
          -4.215505378231819,
          -7,
          -4.421395503250161,
          -3.408593251333042,
          -7,
          -4.040696268880752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4712324257565594,
          -7,
          -3.0706629143802995,
          -7,
          -3.291590825658001,
          -3.388870545406613,
          -2.391816923613249,
          -7,
          -2.864511081058392,
          -3.7507397512353506,
          -7,
          -4.195491445109328,
          -7,
          -3.00774777800074,
          -7,
          -3.650825388129239,
          -3.330819466495837,
          -7,
          -7,
          -7,
          -3.7810369386211318,
          -7,
          -7,
          -7,
          -3.229937685907934,
          -7,
          -3.314667608117513,
          -7,
          -7,
          -3.897923849397611,
          -3.3539791447958756,
          -3.833897567980089,
          -7,
          -7,
          -3.9393694700746598,
          -3.0965624383741357,
          -7,
          -7,
          -7,
          -2.9085337585096873,
          -7,
          -7,
          -7,
          -7,
          -2.7814861003965117,
          -7,
          -7,
          -7,
          -3.015778756389041,
          -7,
          -2.907993255039917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.730937486161556,
          -7,
          -7,
          -3.05307844348342,
          -7,
          -3.4550460384689026,
          -3.467312062980552,
          -3.297760511099134,
          -3.220631019448092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.805636766305935,
          -7,
          -7,
          -3.495474955889315,
          -3.0740236540366594,
          -7,
          -7,
          -4.00552369267328,
          -7,
          -3.739493230781615,
          -7,
          -3.557025722386383,
          -3.3651134316275773,
          -7,
          -7,
          -7,
          -7,
          -4.360669133987706,
          -7,
          -7,
          -2.7596678446896306,
          -3.325528490869888,
          -3.3350565194390915,
          -3.4634450317704277,
          -7,
          -7,
          -3.452553063228925,
          -7,
          -7,
          -7,
          -3.6482624057480444,
          -7,
          -7,
          -7,
          -3.2643455070500926,
          -7,
          -4.094907649416061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.657192487900516,
          -3.240798771117331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4990681845107945,
          -7,
          -7,
          -7,
          -7,
          -3.4144719496293026,
          -7,
          -7,
          -7,
          -7,
          -3.658488381309017,
          -7,
          -7,
          -7,
          -4.363248348914939,
          -4.839503186703423,
          -7,
          -4.441591458037452,
          -3.86224753566811,
          -4.103097457319296,
          -3.8882294314791817,
          -4.1410796030609935,
          -3.9114709525356064,
          -2.323634080004334,
          -2.952822892498763,
          -5.140504900519705,
          -5.1411109856678925,
          -2.601769985902066,
          -2.6366946782993006,
          -4.029215147524665,
          -3.9116275396950106,
          -7,
          -4.186677007042231,
          -4.839635144312755,
          -2.470891876279444,
          -3.0828930332881797,
          -5.1403257393686665,
          -3.2609546193291172,
          -1.7514842196121183,
          -3.2232174959136897,
          -3.965327156210406,
          -4.839446621166152,
          -3.3063815104465792,
          -3.728344415396529,
          -3.779866155645193,
          -2.211852607386131,
          -3.8639423913994935,
          -4.6637386065732995,
          -5.14091637693907,
          -4.141719359930591,
          -3.4549194906710476,
          -4.099834396441161,
          -3.179604292729292,
          -4.663465343891112,
          -3.242687369454165,
          -4.442633391202302,
          -7,
          -5.141092156375883,
          -3.1284463247764815,
          -3.999664843536983,
          -4.101718961339596,
          -3.4042073486014837,
          -3.9373141119603785,
          -4.188481622437761,
          -4.107626174659984,
          -3.6807323905389078,
          -3.4453581890617757,
          -2.1341678416523453,
          -4.033804060586124,
          -2.940021140721579,
          -3.2440175106997633,
          -3.779938246821107,
          -3.9382100298607625,
          -3.431437996187525,
          -4.364372738578348,
          -5.14280541359723,
          -4.364660415023539,
          -4.538824988937904,
          -4.028236425372406,
          -3.9200895492469097,
          -1.8299493896333177,
          -7,
          -4.237622270987323,
          -3.555723674553692,
          -5.140558320241512,
          -3.0151440248451427,
          -3.1928675433117966,
          -5.140913237373888,
          -3.340961266701331,
          -1.841009074133296,
          -4.026809737140006,
          -3.5125013439997756,
          -5.140328883183799,
          -4.099909685319397,
          -2.9107502760558157,
          -4.242451355028342,
          -4.6644100392352845,
          -7,
          -3.8254601205601073,
          -3.6797191665895896,
          -3.5688344803047265,
          -3.2803506930460054,
          -3.6975344625969604,
          -5.144446546742706,
          -1.6996029808111621,
          -2.879243907103876,
          -2.4476953966860586,
          -4.839723093782862,
          -7,
          -2.8791082837495585,
          -3.968551434039823,
          -3.211645094674914,
          -3.125112829214528,
          -4.027136250754157,
          -2.2689179845696863,
          -4.665330785346678,
          -4.5384700487028695,
          -4.839462334554431,
          -3.023998126259445,
          -4.4416762870082565,
          -3.6023266903176827,
          -3.2800230025149686,
          -3.2488189486409467,
          -2.5893586197509038,
          -3.315563071972445,
          -3.6498026370614305,
          -3.213295826523789,
          -3.4444008339004135,
          -2.686668567219539,
          -3.762347153378673,
          -7,
          -3.446624141522082,
          -3.4421691622109902,
          -3.197663365097873,
          -3.9665765919484968,
          -2.2137481718156677,
          -1.9177588590210453,
          -4.840986968939329,
          -3.8178867499239346,
          -3.9959546877072425,
          -2.7509031392906147,
          -4.188969084727143,
          -3.0571804179280635,
          -3.142472282648642,
          -4.2957492612474155,
          -3.518755147594115,
          -2.7399013690520677,
          -3.3998806850379464,
          -5.140300588028295,
          -4.663449633913287,
          -2.77751338480969,
          -7,
          -7,
          -7,
          -4.538834408178194,
          -4.66337107549875,
          -2.812338605924589,
          -3.7083905458113104,
          -2.6536718416678737,
          -3.397888195011566,
          -3.7271813855153857,
          -3.421687667043168,
          -4.1405677465691895,
          -3.6225248624035684,
          -3.160602945517803,
          -3.8512670869507213,
          -2.946605952239178,
          -5.140523755289476,
          -4.1413431465043224,
          -4.540288796889755,
          -2.363441954440918,
          -5.140586598610774,
          -5.140382324559402,
          -3.5428160938829234,
          -3.0224283711854865,
          -4.362746288823878,
          -3.7123472236152164,
          -3.344676033565773,
          -3.474551018678706,
          -3.533533366055707,
          -3.388696238703874,
          -3.2427090263694494,
          -4.241319188494597,
          -4.363709105603158,
          -1.8333472526374732,
          -4.3634239329171765,
          -3.6632139160261286,
          -7,
          -4.063230121978396,
          -4.296326647059846,
          -4.363078968512937,
          -4.441622878106768,
          -3.358208575770563,
          -4.442457818608127,
          -3.2359084131746507,
          -4.663477911464217,
          -2.412474318162643,
          -2.0820062011030047,
          -4.665540342403951,
          -3.662337343204088,
          -3.538064649949787,
          -4.240708335653984,
          -3.683928527034064,
          -3.9399932234951613,
          -3.428608221033195,
          -3.6380303846709308,
          -3.99801010198535,
          -2.3999912817517215,
          -3.321839983161041,
          -3.0920795744436336,
          -7,
          -1.9991522838842721,
          -3.5768858616369985,
          -2.3717428547789363,
          -3.88570038012833,
          -3.0439237974450255,
          -4.839440335651648,
          -3.293047569823077,
          -4.363815605606467,
          -3.7461513812314826,
          -3.9108816790640555,
          -4.442884086131316,
          -2.9047216220895655,
          -3.226512947551635,
          -7,
          -4.067430448350606,
          -3.9500536824781434,
          -3.498010730179554,
          -7,
          -4.295347148333618,
          -4.664312839896641,
          -7,
          -4.538975672273216,
          -4.1874267075268845,
          -7,
          -3.9377873618458636,
          -3.530396288371289,
          -3.5274979417079395,
          -2.9614239706555763,
          -1.994044257851974,
          -7,
          -4.23843190152609,
          -4.187658570220862,
          -3.8209423284734454,
          -4.839509471308361,
          -4.538834408178194,
          -3.6542479813426088,
          -3.251856513733483,
          -2.020193712151071,
          -7,
          -4.538265748040704,
          -4.839883241709907,
          -4.099809297247691,
          -4.839368045695636,
          -3.79829900014416,
          -3.968414452266617,
          -3.027817056380705,
          -4.83939319139298,
          -4.839522040245412,
          -7,
          -4.238080619382148,
          -3.9381505681184805,
          -3.9379408222417998,
          -7,
          -4.142326883154263,
          -3.0563681280368664,
          -3.491483092526961,
          -3.0139339361755866,
          -3.224258948591907,
          -4.144639580353153,
          -4.6636067081245205,
          -5.140416900769118,
          -2.8164860899367334,
          -4.191242915636388,
          -2.7286682272461387,
          -3.041295537721137,
          -2.754182486538021,
          -3.91221267574534,
          -4.539189050875863,
          -5.1414027353497795,
          -3.1555689118377597,
          -3.076209454415462,
          -2.7197410408069143,
          -3.0938052541904826,
          -2.6217437266564927,
          -3.139099411347294,
          -3.5187927263441137,
          -4.36270547093555,
          -3.80105740878395,
          -3.5043410923027154,
          -3.503778306292567,
          -7,
          -4.238231203666038,
          -3.939450608698325,
          -4.840225320794298,
          -3.209393424994102,
          -7,
          -3.9417256698245913,
          -2.8761076811963155,
          -4.298282163702267,
          -3.5676051634959993,
          -3.8429772355887812,
          -2.14941258386112,
          -2.6755147698424953,
          -4.061769664610581,
          -2.6718091758115627,
          -3.9945936452881283,
          -3.9963709289328424,
          -3.010401363772612,
          -3.9408058766441276,
          -3.7685966674296387,
          -3.7339376451385387,
          -3.0708520677922007,
          -3.6008671469564506,
          -3.356750413762137,
          -3.942079395541365,
          -2.262528475475419,
          -3.156959760868904,
          -3.6931645641885575,
          -7,
          -5.140306875999945,
          -3.164859459679298,
          -3.222030604284222,
          -4.238472656948356,
          -4.443153421877831,
          -3.5906065622644463,
          -4.141242767858726,
          -4.031641475693449,
          -4.664491544490574,
          -2.8228704705516168,
          -4.100862216436054,
          -3.65153123691363,
          -3.528509626166987,
          -3.8869385757864556,
          -2.2756379736210595,
          -2.9013187157134652,
          -2.197559184222238,
          -4.364163115095428,
          -3.2826976226551636,
          -2.122540975250118,
          -2.87303587216726,
          -7,
          -3.912268957428651,
          -3.321162040332412,
          -3.4252080511386565,
          -2.8121296198154386,
          -3.1016132670886187,
          -3.64033234004778,
          -4.839635144312755,
          -7,
          -3.7317467856612594,
          -4.840297468206219,
          -3.451676806726055,
          -4.4434507498835405,
          -3.0216333238569884,
          -3.995318602010679,
          -2.4878451201114355,
          -7,
          -5.140526897671522,
          -3.6046064588259554,
          -3.5086224292083905,
          -3.3876706252875857,
          -4.373959669875467,
          -2.9953457062877002,
          -3.792666404313239,
          -4.259109865420318,
          -2.979154479109356,
          -3.0025226295727028,
          -3.845632454617127,
          -7,
          -2.9117177342322664,
          -3.421286223713023,
          -2.8883171754889676,
          -3.3471792739642363,
          -3.381716596708923,
          -2.8874289556954906,
          -3.3858045901019573,
          -3.709132467226349,
          -3.527034493844401,
          -3.974551604853553,
          -2.5913560510793734,
          -3.504148951133771,
          -3.2802773049196117,
          -3.3777455512976413,
          -3.247007093589786,
          -3.1690602549929996,
          -3.436404044035392,
          -4.668860957617935,
          -2.894141677812021,
          -3.558754271310005,
          -3.0939831124466552,
          -3.308315360887939,
          -3.352724338457504,
          -4.844063809083758,
          -3.419451371669478,
          -3.957969247759722,
          -3.919227191992776,
          -3.4135952373045524,
          -2.3674122514997986,
          -3.624053838228878,
          -2.6743108342734345,
          -2.507019396581007,
          -2.858252805913937,
          -3.7057721050805066,
          -2.694635357225439,
          -3.844946010338845,
          -1.9451744228401158,
          -3.0008175943550923,
          -3.4494907413063243,
          -2.884876998002835,
          -2.3011102715552583,
          -2.322103599668317,
          -4.240967118022486,
          -2.7644850574458855,
          -3.101882679381091,
          -4.839864403842175,
          -2.909199319174384,
          -2.5864168811897237,
          -3.48106126027507,
          -5.142796035713555,
          -2.145536311770067,
          -2.000189042149084,
          -2.044118073016288,
          -4.2381653294663355,
          -2.4521453857623565,
          -3.965383599222163,
          -2.2811719675702458,
          -3.243286146083446,
          -1.9413530558205947,
          -3.389459486355433,
          -3.1422597796874947,
          -7,
          -3.222396072786465,
          -2.79560515242787,
          -2.709217217996484,
          -3.2372064601272545,
          -2.9196207980200626,
          -3.3659647706873033,
          -2.7081274579060466,
          -2.504439732505021,
          -3.8870136942873503,
          -2.2816739211328607,
          -2.2334933588947083,
          -3.4687748900951387,
          -2.159286004048917,
          -4.363458414291912,
          -3.4519275966524705,
          -2.4250559185103264,
          -2.7213706944108016,
          -4.186717819029356,
          -7,
          -7,
          -4.839792184445329,
          -4.113581795950651,
          -2.7358779665299697,
          -3.5438570500705913,
          -2.704435569281117,
          -7,
          -4.5429374082326195,
          -3.017884063335557,
          -4.845612684135473,
          -3.8664707831458736,
          -4.442194326559684,
          -3.775950081737593,
          -4.839716812268482,
          -2.751431342261705,
          -3.498341190767632,
          -4.23895202975007,
          -4.24261285243832,
          -4.334175046895992,
          -4.104136231496542,
          -3.389590696801049,
          -7,
          -4.840883613589037,
          -4.043516438047088,
          -5.142020096199679,
          -4.841356341520803,
          -3.889329720601343,
          -3.4087794137661467,
          -7,
          -3.3247937807091326,
          -7,
          -4.839983696540098,
          -3.308571772551367,
          -2.8657658594694206,
          -3.031089518782224,
          -7,
          -4.244539968815006,
          -3.018534070428183,
          -4.443813527217629,
          -3.407427989055528,
          -7,
          -3.8015720810951765,
          -2.4305067377450893,
          -7,
          -4.237926844051205,
          -3.891199727625491,
          -3.9134616631596444,
          -3.792062646197921,
          -4.539787833529511,
          -4.241334760242145,
          -3.8643049389888486,
          -4.841109084468154,
          -3.8437620828337336,
          -3.1426196465966703,
          -3.6173970865153198,
          -7,
          -3.4335513705142096,
          -3.5579511712575087,
          -4.103915622081331,
          -3.8799269556700935,
          -7,
          -7,
          -4.385001176125872,
          -3.6983739916872556,
          -2.273237707705318,
          -3.5567415224990464,
          -3.753150847267354,
          -4.102642600790214,
          -4.841033940514008,
          -3.5170128532784437,
          -5.141872886754569,
          -3.5773315251569056,
          -7,
          -3.6684635732806234,
          -3.027452297858026,
          -4.666567896592164,
          -7,
          -2.992970913857653,
          -2.596142567343199,
          -3.4440386695597027,
          -3.8451011421066204,
          -3.1223040090061507,
          -3.7165906667718334,
          -3.0547346171400873,
          -3.5750379762374167,
          -3.4724902344224757,
          -4.198983753867747,
          -5.143723465259768,
          -4.1431928557306,
          -4.53859886586218,
          -5.140429473253813,
          -3.2608705827096878,
          -4.670873332461625,
          -3.9964366147788897,
          -4.4488917441512195,
          -3.2995174339276034,
          -4.4466614109543094,
          -4.036292323610829,
          -3.0091289241314882,
          -3.5967253493187594,
          -3.603459883471974,
          -4.840911803851301,
          -3.6972916295266804,
          -5.140438902378489,
          -3.3461328370047307,
          -3.4810215787471606,
          -4.19977040897577,
          -5.140517470457171,
          -3.6973196556576204,
          -3.680469929748303,
          -2.859604649512901,
          -4.841437686480623,
          -5.141556374124269,
          -7,
          -5.140498615414539,
          -7,
          -7,
          -7,
          -4.1585162774930335,
          -4.667210053653095,
          -3.3667839409230824,
          -4.442743088040626,
          -5.142067067435677,
          -4.663958348341331,
          -5.14153442905532,
          -3.8870199535759746,
          -4.840836625751898,
          -4.105228305092498,
          -4.299055679117874,
          -3.296457344130786,
          -3.9807243231871605,
          -3.5846092940960688,
          -4.239061615868581,
          -5.140517470457171,
          -3.9735034636555957,
          -4.442880953337685,
          -7,
          -2.984571029906977,
          -4.239230637369824,
          -3.9960423505978575,
          -4.149437744906596,
          -4.670304621143013,
          -4.032984289505631,
          -5.14082846053363,
          -4.663870464975706,
          -3.8035284989545763,
          -4.5385674505657745,
          -3.9768449851151355,
          -3.6668548025233454,
          -7,
          -5.140322595530777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8063590835188696,
          -7,
          -7,
          -7,
          -7,
          -3.9085654363368745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.035869813695553,
          -3.4044916177586857,
          -7,
          -7,
          -3.8008183956305728,
          -7,
          -2.5185139398778875,
          -7,
          -3.2990712600274095,
          -7,
          -7,
          -3.751290950370651,
          -3.03261876085072,
          -7,
          -7,
          -2.571708831808688,
          -7,
          -2.292994040067439,
          -3.471438407389299,
          -7,
          -3.3402457615679317,
          -7,
          -5.141092156375883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1324731545055577,
          -7,
          -3.094390492191114,
          -2.826884298707612,
          -3.0537367980540173,
          -3.486288760960566,
          -7,
          -7,
          -3.12515582958053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.449308659474037,
          -7,
          -7,
          -3.0847549631793543,
          -7,
          -7,
          -7,
          -2.6748611407378116,
          -7,
          -4.647995506133741,
          -7,
          -3.036429265626675,
          -7,
          -7,
          -3.871105700985585,
          -2.9927743642553555,
          -7,
          -7,
          -2.523583901029429,
          -2.658488381309017,
          -0.9718406418727065,
          -7,
          -2.7614266329616655,
          -7,
          -4.27589207337761,
          -7,
          -7,
          -7,
          -7,
          -3.40840957846843,
          -7,
          -7,
          -7,
          -7,
          -4.146995757209465,
          -7,
          -7,
          -7,
          -2.7373329866975253,
          -7,
          -3.3613500243522663,
          -7,
          -3.143431190009773,
          -2.642189632909757,
          -7,
          -7,
          -3.0849335749367164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.69340447840352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0874264570362855,
          -3.4308809464528913,
          -3.5964871337365443,
          -7,
          -7,
          -3.8204860776625775,
          -2.9818186071706636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0253877998904075,
          -3.721645766289746,
          -4.151492428425498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5191057562064487,
          -7,
          -7,
          -2.971739590887778,
          -3.1784013415337555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.673635185140647,
          -7,
          -3.3809344633307017,
          -7,
          -7,
          -3.872039667973286,
          -7,
          -7,
          -3.8393109258210014,
          -1.988686334642222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4408041673450787,
          -7,
          -7,
          -7,
          -7,
          -3.0830747263681317,
          -7,
          -7,
          -3.5744942682853273,
          -3.1489109931093564,
          -7,
          -7,
          -3.245018870737753,
          -7,
          -2.8830933585756897,
          -7,
          -7,
          -7,
          -7,
          -3.6454713949056066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1866738674997452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4086167935193554,
          -7,
          -3.847202363980924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.269629674357553,
          -7,
          -5.411861194075582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1958996524092336,
          -7,
          -7,
          -2.6766936096248664,
          -1.9815165943059867,
          -7,
          -7,
          -7,
          -4.464971167320695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9740509027928774,
          -3.6735737964230517,
          -3.248218561190075,
          -7,
          -3.1097135047929503,
          -7,
          -7,
          -7,
          -4.012119835804513,
          -7,
          -7,
          -7,
          -4.710202014655385,
          -7,
          -7,
          -7,
          -3.9875322027298394,
          -7,
          -3.6547539332529304,
          -3.406199423663313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8391636829146503,
          -3.4126285205443754,
          -7,
          -2.4878451201114355,
          -2.6525686374796384,
          -7,
          -3.2027606873931997,
          -7,
          -2.7153765052071366,
          -2.505723786499102,
          -3.1048284036536553,
          -7,
          -7,
          -4.286456469746983,
          -3.8870543780509568,
          -2.705007959333336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9507541815935037,
          -2.7904259173911106,
          -2.999637937051224,
          -3.261976191397813,
          -3.5106790310322102,
          -7,
          -4.749148615956129,
          -2.3160902169680027,
          -7,
          -7,
          -7,
          -7,
          -2.759775730538379,
          -7,
          -7,
          -3.3919930722597127,
          -7,
          -7,
          -7,
          -3.6898414091375047,
          -7,
          -7,
          -2.056360281381856,
          -7,
          -7,
          -3.908181085136654,
          -5.273184216267906,
          -7,
          -2.3833844469949503,
          -5.018226009952465,
          -3.466422722433792,
          -7,
          -7,
          -7,
          -2.8229522405474814,
          -3.475162519083091,
          -3.7123129086813655,
          -2.6972293427597176,
          -7,
          -7,
          -2.294282475584744,
          -2.7831886910752575,
          -7,
          -7,
          -2.8550141033002596,
          -1.9131513129998394,
          -2.3742382627571037,
          -7,
          -7,
          -4.594005601788341,
          -4.77108014034136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.112135602681912,
          -4.879674935072914,
          -7,
          -7,
          -7,
          -4.7178950800038555,
          -4.696203441212152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.182386117037066,
          -7,
          -7,
          -7,
          -4.3750872200075035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.181100079728049,
          -7,
          -3.0273496077747564,
          -4.368119458615029,
          -3.919425538440869,
          -7,
          -7,
          -7,
          -7,
          -4.193741688019228,
          -3.6862339584582546,
          -3.1752218003430523,
          -3.962274604623315,
          -4.059004571695273,
          -4.0773588195305,
          -7,
          -3.5900452854920486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5929447015163736,
          -4.089780807751493,
          -5.40529853903925,
          -7,
          -2.7218106152125467,
          -7,
          -4.176751849112052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.319418389047728,
          -7,
          -4.480868923687168,
          -7,
          -7,
          -7,
          -3.9944326411643747,
          -3.8835194856567163,
          -7,
          -3.738740931267598,
          -4.353315031342222,
          -7,
          -4.30588853028431,
          -7,
          -7,
          -4.305684487423615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7299742856995555,
          -3.8793253007848074,
          -7,
          -7,
          -4.340047317661393,
          -7,
          -3.2762319579218335,
          -7,
          -3.7373516958037145,
          -7,
          -4.194306163649559,
          -3.299942900022767,
          -7,
          -7,
          -7,
          -3.2946866242794433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2271150825891253,
          -7,
          -7,
          -4.006722692201684,
          -7,
          -7,
          -7,
          -4.139823135037863,
          -7,
          -7,
          -7,
          -3.3283796034387376,
          -7,
          -3.44544851426605,
          -7,
          -3.1760912590556813,
          -3.6455941844910615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4988616889928843,
          -7,
          -4.142139080132135,
          -7,
          -7,
          -7,
          -7,
          -3.8998439433821988,
          -3.1398790864012365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.784617292632875,
          -3.5151092854215533,
          -3.604442066260723,
          -7,
          -4.302915079568861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.527836045164708,
          -7,
          -7,
          -3.9428014663179405,
          -7,
          -3.4255342204982635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.061829307294699,
          -4.392978186542541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -7,
          -4.103872108403055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.195650622404186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3026555539507187,
          -7,
          -4.5061558329372735,
          -7,
          -7,
          -7,
          -2.8190775863707995,
          -3.915610862661467,
          -3.1699681739968923,
          -2.7554937284151193,
          -7,
          -7,
          -2.82020145948564,
          -3.3876468462749743,
          -7,
          -7,
          -3.6823256186678073,
          -3.542483373920922,
          -1.7718546157393802,
          -7,
          -2.7788744720027396,
          -2.7501225267834,
          -2.8904210188009145,
          -7,
          -3.4516742765040034,
          -2.6496593222923464,
          -2.8603380065709936,
          -7,
          -2.70372115992702,
          -2.637689819118401,
          -7,
          -3.207365037469072,
          -7,
          -2.786751422145561,
          -2.9849771264154934,
          -3.1284463247764815,
          -7,
          -7,
          -3.36679638328673,
          -3.164352855784437,
          -2.9586594270529334,
          -2.970346876230093,
          -3.1245042248342823,
          -7,
          -7,
          -7,
          -3.431979917800492,
          -7,
          -3.2143669215966044,
          -3.8058405488146727,
          -7,
          -7,
          -3.166282067316571,
          -7,
          -3.1277525158329733,
          -7,
          -7,
          -7,
          -7,
          -2.850125259486936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0471774810216448,
          -7,
          -7,
          -4.52391222124351,
          -7,
          -7,
          -7,
          -7,
          -3.88632148655948,
          -7,
          -2.972665592266111,
          -7,
          -7,
          -7,
          -2.914078585389112,
          -2.9622509186326402,
          -3.3012470886362113,
          -7,
          -3.3166248501806437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2920344359947364,
          -2.506843136339351,
          -3.0003255987771427,
          -7,
          -4.155123393710713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.561612418595533,
          -7,
          -3.647676313240871,
          -3.904138265829186,
          -7,
          -2.9434945159061026,
          -7,
          -7,
          -3.3084399050774618,
          -7,
          -7,
          -2.323158310195747,
          -3.565611724902059,
          -2.4159548048447954,
          -7,
          -3.57611089412084,
          -3.3082212936437174,
          -7,
          -7,
          -2.5771086551437348,
          -3.915439410670454,
          -2.8709888137605755,
          -3.1702617153949575,
          -7,
          -2.3832167518513314,
          -3.0674428427763805,
          -3.4000628548971994,
          -3.497758718287268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.734999734992562,
          -7,
          -2.5235347412529383,
          -7,
          -7,
          -7,
          -2.507855871695831,
          -7,
          -7,
          -7,
          -3.837335868015015,
          -7,
          -7,
          -3.079904467666721,
          -3.4645268051427323,
          -7,
          -7,
          -7,
          -3.2219355998280053,
          -2.3915231836751634,
          -7,
          -3.2681097298084785,
          -7,
          -7,
          -2.8273692730538253,
          -3.5860807074609022,
          -7,
          -7,
          -4.037573587603141,
          -2.9818186071706636,
          -7,
          -7,
          -3.0927206446840994,
          -2.960470777534299,
          -7,
          -7,
          -3.9318137039591394,
          -7,
          -7,
          -7,
          -7,
          -3.663429755167688,
          -7,
          -7,
          -7,
          -7,
          -3.1015752462559334,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -3.1701638903057043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.080806804334363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4546162237926987,
          -3.0788191830988487,
          -7,
          -3.4127964287165433,
          -7,
          -3.5621143505886863,
          -7,
          -7,
          -2.958085848521085,
          -7,
          -2.591621038213319,
          -2.9978230807457256,
          -7,
          -2.733598460961339,
          -2.7731070022450126,
          -2.998041264363428,
          -4.137132476008993,
          -5.713115728907259,
          -7,
          -7,
          -2.550228353055094,
          -7,
          -7,
          -2.8680563618230415,
          -2.514737442325631,
          -3.2702128548962426,
          -2.785567089582034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8567288903828825,
          -7,
          -4.466284216743369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.793580867368156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6909424754242903,
          -7,
          -4.7124392366451895,
          -7,
          -7,
          -7,
          -2.8519568522583176,
          -3.452016565962548,
          -3.122777405533776,
          -3.029789470831856,
          -7,
          -7,
          -3.0718820073061255,
          -7,
          -7,
          -7,
          -2.8520222794031276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.370698092575577,
          -3.1581613832785496,
          -2.7087041048933,
          -7,
          -7,
          -4.831405810044329,
          -3.2993438354972895,
          -7,
          -3.8123562116249397,
          -7,
          -7,
          -2.6491184149090556,
          -7,
          -7,
          -3.2249213455840313,
          -3.018423082826786,
          -3.3207692283386865,
          -3.243534101832062,
          -7,
          -5.050357196597368,
          -3.1802406009557402,
          -2.478566495593843,
          -7,
          -7,
          -3.7671558660821804,
          -3.031105362355941,
          -7,
          -7,
          -2.656577291396114,
          -2.632963168167261,
          -2.7505083948513462,
          -7,
          -3.712733859069952,
          -7,
          -3.155336037465062,
          -3.635282637998212,
          -3.074084689028244,
          -3.9036746843986587,
          -3.2135000483995153,
          -4.92114927101706,
          -7,
          -3.5020855592260456,
          -3.3561963473189524,
          -3.1843364700443417,
          -7,
          -7,
          -1.1387669360318688,
          -3.5561818466529114,
          -2.17679685544469,
          -2.955126283548938,
          -3.0532705666813786,
          -7,
          -7,
          -2.517855418930029,
          -7,
          -3.0569048513364727,
          -7,
          -2.960375631410158,
          -7,
          -3.226084115975824,
          -7,
          -7,
          -4.596926814342971,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.592254501367159,
          -4.279096329747602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.281907896489367,
          -7,
          -7,
          -4.923347656497826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.109814695694399,
          -7,
          -7,
          -7,
          -7,
          -4.076319974124645,
          -7,
          -4.678554796337683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.454905809342959,
          -7,
          -4.138418494589286,
          -3.123851640967086,
          -4.19446808867598,
          -7,
          -7,
          -3.3683798716238016,
          -7,
          -7,
          -3.980495747537131,
          -7,
          -7,
          -7,
          -4.118260000849086,
          -3.9036325160842376,
          -7,
          -3.325215588977838,
          -3.353595694717235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9922706704370094,
          -4.187079151712716,
          -7,
          -7,
          -2.796747738875302,
          -7,
          -4.956226076359381,
          -7,
          -7,
          -4.082066934285113,
          -7,
          -7,
          -7,
          -4.4346327661741425,
          -4.482766425369471,
          -7,
          -4.217983753176437,
          -3.337459261290656,
          -4.598013113465622,
          -4.012232445789756,
          -3.08278537031645,
          -3.051464211738796,
          -4.956677371255107,
          -3.57541879121436,
          -5.3478372092177215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8166389448984614,
          -7,
          -3.011062694729735,
          -7,
          -7,
          -4.044206464382898,
          -7,
          -7,
          -2.916980047320382,
          -7,
          -7,
          -4.0992177915305135,
          -3.151574127994361,
          -7,
          -7,
          -7,
          -7,
          -3.677789391068861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.989004615698537,
          -2.940267391446012,
          -7,
          -4.017909395896689,
          -7,
          -7,
          -7,
          -4.191908403649229,
          -7,
          -7,
          -3.1622656142980214,
          -3.1653927267698108,
          -7,
          -3.4848690327204026,
          -7,
          -2.945222316635341,
          -3.253822438708073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.862429556106009,
          -7,
          -7,
          -3.9923325590474645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.849265817161557,
          -7,
          -7,
          -7,
          -3.3562171342197353,
          -3.444226364912892,
          -3.0033168924581544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3345877719765284,
          -7,
          -7,
          -3.5019488596712804,
          -3.4855997583250473,
          -3.3309208305952356,
          -7,
          -3.8314004742396546,
          -7,
          -2.7913787118676137,
          -2.7129301630395437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.809222921689422,
          -7,
          -3.8321638947835877,
          -7,
          -7,
          -7,
          -3.372819981678968,
          -3.4667193716815987,
          -7,
          -7,
          -7,
          -3.657342736814626,
          -3.6787914343662442,
          -7,
          -7,
          -7,
          -7,
          -3.4430890609518037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8530895298518657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3364597338485296,
          -7,
          -7,
          -3.278982116865443,
          -3.3157604906657347,
          -7,
          -3.4572761860613257,
          -3.31722734917642,
          -3.3725438007590705,
          -4.363434680652326,
          -7,
          -7,
          -7,
          -2.5502793235946637,
          -2.7287963375777684,
          -2.4358443659844413,
          -7,
          -7,
          -3.004536317851323,
          -2.378851946448881,
          -2.66573104525868,
          -7,
          -7,
          -2.4800788400654854,
          -3.038767687756788,
          -7,
          -2.737987326333431,
          -7,
          -2.94411237698898,
          -2.847726855657811,
          -3.0538464268522527,
          -4.272259442940222,
          -3.416640507338281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.652536418593025,
          -7,
          -3.269396182694991,
          -3.0474695746198566,
          -3.999664843536983,
          -7,
          -3.36679638328673,
          -7,
          -3.43568513794163,
          -3.0654303186203693,
          -7,
          -7,
          -7,
          -2.7420964023032446,
          -2.657738598606746,
          -3.046136452517971,
          -3.625621081424908,
          -2.207476504590846,
          -2.7690363017304622,
          -7,
          -3.395675785269936,
          -3.623456048069934,
          -7,
          -7,
          -7,
          -7,
          -2.4290341409683256,
          -3.710709565724337,
          -3.517855418930029,
          -7,
          -7,
          -2.8189952374500518,
          -7,
          -7,
          -3.758306181725307,
          -7,
          -7,
          -3.4308036457839908,
          -7,
          -7,
          -7,
          -7,
          -2.910139105384123,
          -2.0747912283446883,
          -3.343605508104172,
          -7,
          -7,
          -7,
          -2.812244696800369,
          -2.994053063587675,
          -7,
          -7,
          -2.745382544818521,
          -7,
          -2.293288876794244,
          -2.989894563718773,
          -7,
          -3.3107994838343924,
          -3.207365037469072,
          -3.1080009315871533,
          -3.1197506238845842,
          -3.3184807251745174,
          -3.288528676377525,
          -7,
          -7,
          -7,
          -3.7342796444928203,
          -3.285107029566812,
          -2.2778383330020473,
          -3.466274321789292,
          -2.6085260335771943,
          -2.4463127477795816,
          -7,
          -3.331427296520743,
          -7,
          -3.159266331093494,
          -3.368236156479323,
          -2.2301081646076315,
          -7,
          -7,
          -7,
          -3.456897187449348,
          -7,
          -3.9123017850426116,
          -2.537534267560738,
          -7,
          -7,
          -7,
          -4.699213141173923,
          -2.962369335670021,
          -3.0235610900969454,
          -3.7388598020722004,
          -7,
          -7,
          -2.7845357847300596,
          -1.6984587688656787,
          -7,
          -3.278753600952829,
          -3.791830947674836,
          -7,
          -7,
          -7,
          -2.824125833916549,
          -7,
          -4.084003990608029,
          -2.9866437936313814,
          -2.763261565324877,
          -3.097812407365289,
          -7,
          -3.954821183051793,
          -7,
          -7,
          -7,
          -7,
          -2.3888436682532856,
          -7,
          -7,
          -2.692141609366784,
          -3.2367291512441203,
          -7,
          -7,
          -3.5251744278352715,
          -3.4674601095072637,
          -7,
          -2.467312062980552,
          -7,
          -7,
          -7,
          -7,
          -3.9532763366673045,
          -7,
          -7,
          -3.2365754281376833,
          -3.3475251599986895,
          -3.273926780100526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3895204658463776,
          -3.036429265626675,
          -4.312029180025536,
          -7,
          -3.8256208250035,
          -3.168133818504442,
          -7,
          -3.792251571903264,
          -3.7231271587956916,
          -3.468495024507069,
          -3.5793262037552553,
          -3.485437481076301,
          -3.517195897949974,
          -2.968015713993642,
          -7,
          -3.756636108245848,
          -7,
          -7,
          -7,
          -3.714874382231572,
          -7,
          -3.466255768142727,
          -7,
          -3.123655674438122,
          -7,
          -3.553822366753853,
          -3.3712526291249394,
          -3.1856837803185045,
          -7,
          -7,
          -3.8429834701222174,
          -7,
          -7,
          -2.8860392755664424,
          -3.5376931943673906,
          -3.4554539687786283,
          -7,
          -7,
          -3.0360297306565434,
          -3.2889196056617265,
          -3.311753861055754,
          -7,
          -7,
          -3.371437317404101,
          -3.50478791537113,
          -2.941594242145933,
          -3.8744238305865015,
          -4.2827722805262605,
          -7,
          -7,
          -3.368472838440362,
          -3.140036410975282,
          -7,
          -7,
          -7,
          -2.6487780708385658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2979792441593623,
          -7,
          -3.648433200512645,
          -7,
          -3.276921132065774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.393399695293102,
          -7,
          -7,
          -1.8449787119514363,
          -3.6007006960652372,
          -3.205880729887537,
          -7,
          -7,
          -2.77477334374225,
          -2.3626081204867257,
          -2.090090905872992,
          -7,
          -3.819774182176816,
          -2.7138264243805246,
          -3.325925955771466,
          -7,
          -3.0089483966758594,
          -3.0620803445744653,
          -2.7000440709473397,
          -2.82033284489941,
          -3.1425980108920646,
          -3.0002894331875893,
          -3.388633969351789,
          -7,
          -7,
          -3.3322364154914434,
          -7,
          -7,
          -3.0308020487722676,
          -3.4599952560473914,
          -3.325515663363148,
          -3.495127881242933,
          -7,
          -2.5143062095606763,
          -3.21761552866633,
          -3.146593102096305,
          -3.618780024506215,
          -3.481729196960016,
          -3.7049508491377243,
          -2.8855496750060046,
          -7,
          -3.316557399977768,
          -7,
          -7,
          -7,
          -3.521007252408604,
          -3.1158600345090313,
          -2.709458415950323,
          -7,
          -3.526339277389844,
          -7,
          -1.5525084428372955,
          -3.5572497926300244,
          -2.466818209752554,
          -7,
          -7,
          -7,
          -3.2498706873123053,
          -2.702900297964451,
          -7,
          -7,
          -2.999130541287371,
          -7,
          -2.9443592755072294,
          -2.870793931782029,
          -3.0292484623758416,
          -7,
          -3.4308809464528913,
          -3.445837632186448,
          -7,
          -3.4850941325046456,
          -2.89234761433871,
          -4.213323692974096,
          -7,
          -3.404833716619938,
          -4.422474931931271,
          -3.1690863574870227,
          -7,
          -7,
          -7,
          -3.6871721045948,
          -3.8754664158663856,
          -3.5241363765925686,
          -7,
          -7,
          -7,
          -2.990227824624168,
          -7,
          -3.38147609027503,
          -7,
          -3.4651596976461785,
          -7,
          -2.600959781544797,
          -7,
          -7,
          -4.008504360940798,
          -4.481163042077974,
          -7,
          -7,
          -4.724439723397075,
          -3.6201013378002385,
          -2.997677564080969,
          -2.9924565253794793,
          -2.9429039182926973,
          -3.4350077667145955,
          -7,
          -3.856406623801429,
          -3.9522191382314986,
          -4.7028482577600945,
          -3.234891248646208,
          -3.87989832433001,
          -3.607079544728571,
          -3.9297713276322854,
          -7,
          -7,
          -7,
          -7,
          -4.305587802072341,
          -3.1511491223040866,
          -3.37211383659506,
          -7,
          -4.069381308695122,
          -3.74681576560032,
          -7,
          -2.8289676454127086,
          -3.897956810006952,
          -3.648368883096271,
          -4.050515089642183,
          -7,
          -7,
          -7,
          -7,
          -3.194514341882467,
          -3.921790485658187,
          -2.746367854866736,
          -7,
          -3.427612318183267,
          -4.117031796709582,
          -3.658059118703411,
          -2.658084813018018,
          -3.1518102044229432,
          -2.71755163219766,
          -2.47194779850952,
          -4.050959459771651,
          -7,
          -7,
          -2.6981192619861707,
          -3.2777590363616937,
          -7,
          -3.0269416279590295,
          -2.825047270292454,
          -7,
          -2.6255410871774854,
          -7,
          -7,
          -7,
          -3.9977576042802543,
          -3.0676033749641594,
          -4.929476827785161,
          -7,
          -3.7987196851850062,
          -7,
          -4.117114978346134,
          -7,
          -4.56266665574757,
          -3.426153268215979,
          -7,
          -7,
          -4.350189849999334,
          -7,
          -4.792769781353479,
          -7,
          -2.8338823321356137,
          -2.45760158014135,
          -3.72969922631617,
          -2.9618954736678504,
          -3.3939260065858368,
          -3.3590957107594277,
          -4.117560097792157,
          -2.040602340114073,
          -4.873171354062279,
          -7,
          -2.8216772586543666,
          -3.719652330718798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5182733060633335,
          -2.8666417205660397,
          -2.4410139714466967,
          -7,
          -3.2195845262142546,
          -2.863136906582225,
          -3.2835273648616936,
          -7,
          -7,
          -3.06595298031387,
          -7,
          -3.4844218721716147,
          -2.8962111688853125,
          -7,
          -7,
          -3.567761337534174,
          -3.2431621151010512,
          -3.0806986228711293,
          -7,
          -3.3666097103924297,
          -7,
          -7,
          -3.0925452076056064,
          -3.2064210652379885,
          -3.074907822966796,
          -7,
          -3.0670708560453703,
          -7,
          -7,
          -4.310629596987806,
          -3.169446216533984,
          -3.3824534742228978,
          -7,
          -7,
          -2.6024940688072813,
          -7,
          -2.8564267724702446,
          -7,
          -3.180412632838324,
          -2.750893920382125,
          -7,
          -7,
          -7,
          -3.4763968267253302,
          -3.0937017848055484,
          -7,
          -7,
          -2.9577668661476535,
          -7,
          -3.215108581053093,
          -2.485957905922165,
          -4.232182634187274,
          -7,
          -2.607901598556746,
          -3.0681858617461617,
          -7,
          -2.6416440555197305,
          -7,
          -7,
          -7,
          -3.2474822606770544,
          -2.874719133905513,
          -3.3316297176299323,
          -2.8808952189104655,
          -3.480438147177817,
          -7,
          -7,
          -7,
          -3.865518519074774,
          -7,
          -2.9485352161613654,
          -2.7741799549910717,
          -3.461798557525109,
          -7,
          -2.8016323462331667,
          -2.405737390282291,
          -3.1420764610732848,
          -3.569958818096594,
          -2.9915683807473004,
          -3.635282637998212,
          -3.8356905714924254,
          -7,
          -2.686099771995916,
          -2.735235868261925,
          -7,
          -7,
          -7,
          -7,
          -4.385695625410561,
          -7,
          -2.930099638207734,
          -2.9279859470994287,
          -2.7393992645779885,
          -3.54703589974001,
          -3.5992825013197454,
          -3.387081201499178,
          -3.777281791671015,
          -2.776493635844961,
          -7,
          -3.2024883170600935,
          -7,
          -2.918180171004722,
          -2.876939140345395,
          -7,
          -7,
          -3.505014240084107,
          -3.428944290035574,
          -3.4187982905903533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0432499701637923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2847690133490195,
          -3.4847268042986617,
          -3.454112800025813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7391238429861597,
          -3.392345155361204,
          -3.385963570600697,
          -7,
          -7,
          -3.5974757898703773,
          -7,
          -7,
          -3.563599728881531,
          -7,
          -3.772028165324855,
          -3.1818435879447726,
          -7,
          -7,
          -7,
          -7,
          -2.5246124580893383,
          -7,
          -3.079904467666721,
          -1.768131589884881,
          -7,
          -7,
          -2.6951897138022916,
          -4.206180699019942,
          -7,
          -7,
          -7,
          -2.82991992647253,
          -3.022222104507706,
          -7,
          -2.182699903336043,
          -2.513217600067939,
          -7,
          -7,
          -3.7478583033812987,
          -3.1395117739437315,
          -7,
          -7,
          -3.448420360470679,
          -7,
          -7,
          -7,
          -3.42422807069598,
          -2.813358558611011,
          -7,
          -4.170279321571128,
          -7,
          -7,
          -7,
          -7,
          -3.1100844228869238,
          -7,
          -7,
          -7,
          -3.4554539687786283,
          -7,
          -4.101718961339596,
          -7,
          -3.164352855784437,
          -3.43568513794163,
          -7,
          -2.8488047010518036,
          -3.12515582958053,
          -7,
          -7,
          -3.279210512601395,
          -7,
          -2.923751287842489,
          -7,
          -3.93444794894897,
          -3.053398601612112,
          -7,
          -7,
          -3.0454533779715143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8573023360449996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.90803798386038,
          -7,
          -3.035829825252828,
          -4.826253021326406,
          -7,
          -7,
          -7,
          -7,
          -3.43098828567289,
          -7,
          -3.126780577012009,
          -7,
          -7,
          -7,
          -7,
          -2.910090545594068,
          -7,
          -7,
          -3.2143138974243994,
          -3.3039516339434503,
          -3.741821046886808,
          -7,
          -7,
          -7,
          -3.0713295868603425,
          -2.190773878234185,
          -2.2078237957767666,
          -7,
          -2.9901908082608895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.471731651480051,
          -7,
          -3.6851144690465394,
          -3.7863254343900703,
          -7,
          -7,
          -7,
          -3.0041063232796583,
          -2.9792155752703517,
          -7,
          -7,
          -2.3542685477139713,
          -2.7058637122839193,
          -2.7311409003621625,
          -7,
          -3.189209489582306,
          -3.7586924198789013,
          -7,
          -7,
          -2.708420900134713,
          -3.6952758632075,
          -3.27600198996205,
          -7,
          -7,
          -2.0457140589408676,
          -7,
          -3.2323607123535703,
          -3.248463717551032,
          -7,
          -7,
          -4.378525081544915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.750701200395868,
          -3.773274348337454,
          -2.808387133479059,
          -7,
          -7,
          -7,
          -7,
          -2.792391689498254,
          -7,
          -3.122616300689269,
          -7,
          -7,
          -7,
          -2.7264555202583103,
          -3.7706434020513013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.749736315569061,
          -7,
          -2.99211148778695,
          -3.383815365980431,
          -3.608044405736923,
          -7,
          -7,
          -3.790340246867004,
          -3.1332194567324945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6505503492394107,
          -7,
          -4.293274139710753,
          -7,
          -7,
          -3.731172265937845,
          -7,
          -7,
          -3.6453240015622934,
          -7,
          -3.4667193716815987,
          -7,
          -3.0829647937777516,
          -3.284205067701794,
          -3.0400086360135417,
          -7,
          -7,
          -3.414555556229215,
          -7,
          -7,
          -1.8251979712261068,
          -3.876025291494317,
          -7,
          -2.8898267412346583,
          -2.9995654882259823,
          -3.0994043723455422,
          -3.171433900943008,
          -2.739572344450092,
          -7,
          -7,
          -2.420386311461478,
          -2.600194729411715,
          -7,
          -7,
          -7,
          -3.409087369447835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.144574207609616,
          -3.044539760392411,
          -2.2645226857355865,
          -2.8985756053931113,
          -3.6422666189026733,
          -3.848527796197598,
          -4.759195948794771,
          -7,
          -7,
          -2.3183615117557332,
          -7,
          -3.0090257420869104,
          -3.056142262059052,
          -3.130333768495006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9910783313529503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2060158767633444,
          -7,
          -7,
          -3.8206611346435957,
          -7,
          -7,
          -7,
          -7,
          -4.025940454660939,
          -7,
          -3.4269739619520005,
          -7,
          -3.5694491562792146,
          -7,
          -7,
          -7,
          -3.1126050015345745,
          -2.878737165940484,
          -2.90655949500245,
          -2.9817431236418557,
          -3.873611196996467,
          -2.85227662464138,
          -7,
          -7,
          -3.3010299956639813,
          -3.5356738034257504,
          -3.2107197156810017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9564565834098997,
          -7,
          -3.517195897949974,
          -7,
          -5.13372089071826,
          -2.028539565086679,
          -7,
          -3.5992497190170716,
          -7,
          -7,
          -2.6903929943288283,
          -3.3895204658463776,
          -7,
          -7,
          -2.9782457508063915,
          -2.696356388733332,
          -7,
          -7,
          -7,
          -3.9020028913507296,
          -7,
          -7,
          -7,
          -3.494711025205263,
          -3.6723749787460793,
          -7,
          -7,
          -3.4956830676169153,
          -7,
          -7,
          -7,
          -2.2084887797172543,
          -7,
          -2.4144958388716917,
          -7,
          -7,
          -4.161397952545797,
          -3.618780024506215,
          -4.699524967482672,
          -7,
          -7,
          -3.2646480141320873,
          -2.53315637946727,
          -7,
          -2.940516484932567,
          -7,
          -7,
          -1.9314311045195778,
          -2.8608618390413807,
          -2.9475970826119045,
          -3.0257153839013404,
          -7,
          -7,
          -3.104487111312395,
          -3.187520720836463,
          -7,
          -3.696531119969607,
          -7,
          -3.254990926676981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.883468372477887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.946091841038187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.682181190837443,
          -3.857292282117438,
          -7,
          -7,
          -7,
          -3.6062738531699883,
          -7,
          -3.8986429210566396,
          -7,
          -2.537063142781617,
          -7,
          -7,
          -7,
          -7,
          -4.038540686337457,
          -3.446847710155809,
          -4.195419072502522,
          -7,
          -3.563599728881531,
          -7,
          -4.488160428173718,
          -2.5933761303711673,
          -7,
          -7,
          -7,
          -7,
          -3.830396176483469,
          -7,
          -7,
          -7,
          -4.516896584853889,
          -4.643611982577783,
          -7,
          -7,
          -7,
          -7,
          -4.481002855946895,
          -7,
          -7,
          -3.7951149856303634,
          -7,
          -7,
          -7,
          -4.440972018733961,
          -7,
          -7,
          -3.927293353644034,
          -7,
          -3.90114215765946,
          -7,
          -2.905256048748451,
          -3.322637630953044,
          -4.958592548578363,
          -7,
          -4.570445640792904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.17539583139403,
          -3.1487568513217923,
          -3.499879448956432,
          -7,
          -7,
          -4.35305023964259,
          -7,
          -2.8041394323353503,
          -7,
          -3.486076097372589,
          -7,
          -3.4997076973735277,
          -7,
          -7,
          -7,
          -7,
          -3.420945405921972,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.070037866607755,
          -2.1868433703244703,
          -7,
          -3.7331571251294715,
          -7,
          -7,
          -4.602374740744461,
          -4.397442891379402,
          -7,
          -7,
          -7,
          -2.660533466698088,
          -7,
          -2.6334684555795866,
          -7,
          -2.8575335121635788,
          -3.2219592832353405,
          -7,
          -7,
          -3.470410490975931,
          -2.5477747053878224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6033248398913864,
          -3.0088981147709397,
          -7,
          -7,
          -3.60422605308447,
          -2.5798978696031036,
          -7,
          -3.861385040442465,
          -7,
          -7,
          -7,
          -3.426673888021373,
          -3.1355852630128624,
          -3.233630580164463,
          -7,
          -7,
          -7,
          -7,
          -2.857935264719429,
          -7,
          -7,
          -2.8270460170047342,
          -3.360593413565249,
          -7,
          -7,
          -2.8743529469323774,
          -3.459653790072658,
          -2.4374707639390873,
          -3.153204900084284,
          -3.0610753236297916,
          -3.5379449592914867,
          -3.2995072987004876,
          -3.2907022432878543,
          -3.4514026135974927,
          -7,
          -7,
          -7,
          -3.0265332645232967,
          -7,
          -4.068853493671498,
          -7,
          -3.2281436075977417,
          -7,
          -3.9341827155103566,
          -7,
          -4.177161199726047,
          -7,
          -3.408155133886264,
          -3.2210228052048415,
          -7,
          -2.4603339459252327,
          -7,
          -2.7383400528355843,
          -2.934750874663579,
          -7,
          -7,
          -3.066325925362038,
          -2.4790471757557007,
          -3.802346059593307,
          -3.2137832993353044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1693977913346485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8010605298478555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6605538012167345,
          -7,
          -7,
          -7,
          -7,
          -2.6433116488889414,
          -7,
          -7,
          -7,
          -7,
          -2.857073910843454,
          -7,
          -7,
          -7,
          -3.643156465619706,
          -7,
          -7,
          -7,
          -7,
          -2.7765397662270646,
          -3.2295111961536325,
          -3.1562461903973444,
          -3.3601198615808054,
          -3.1383345474722515,
          -3.6459132750338443,
          -7,
          -7,
          -2.794263116841679,
          -2.377587097885457,
          -2.653475642824231,
          -3.063427189454848,
          -3.610234175334389,
          -7,
          -3.61857102812013,
          -2.6260836162697796,
          -3.5787537844264343,
          -7,
          -2.74183416300906,
          -3.0275725056114244,
          -7,
          -3.344294005898312,
          -7,
          -3.282244366936266,
          -3.2258259914618934,
          -7,
          -3.4096344784215926,
          -3.6845760873884554,
          -7,
          -7,
          -7,
          -3.1512932213135336,
          -3.6386888866901237,
          -2.8720914961828954,
          -3.31492005599242,
          -3.1718726561396826,
          -2.949585151326652,
          -3.4042073486014837,
          -7,
          -2.9586594270529334,
          -3.0654303186203693,
          -2.8488047010518036,
          -7,
          -7,
          -7,
          -7,
          -2.794313736208544,
          -3.1316186643491255,
          -2.738620998309552,
          -2.766818287765997,
          -2.2176719098008713,
          -3.6940345384921605,
          -7,
          -3.372175286115064,
          -2.7653975864258418,
          -7,
          -7,
          -3.2080828797513523,
          -7,
          -3.1908917169221698,
          -2.3448089202425684,
          -2.812258353215379,
          -3.6299190355035416,
          -7,
          -2.2823104961985092,
          -7,
          -7,
          -2.723236690821973,
          -7,
          -3.103666913746792,
          -3.2123937280004866,
          -7,
          -2.8693784160613367,
          -3.607025878434786,
          -3.6410773133253747,
          -1.6185974631800342,
          -3.1554878621412814,
          -3.1691844255650965,
          -7,
          -3.109646031090973,
          -3.0668847431297714,
          -3.353980309781697,
          -2.900124268601545,
          -3.4387796033573776,
          -7,
          -2.7315711941519254,
          -2.7721382666011203,
          -2.5917754759952185,
          -3.6214878645806303,
          -7,
          -7,
          -3.2591955531844463,
          -3.004894321731049,
          -2.874191804679071,
          -7,
          -3.135572963494826,
          -7,
          -7,
          -7,
          -2.667519659668659,
          -3.61857102812013,
          -2.8268663262901415,
          -3.4108615542165976,
          -2.499081947388326,
          -2.66753209539257,
          -7,
          -3.6406801532776654,
          -3.395588463568244,
          -3.2313846262355748,
          -2.8651195661786515,
          -3.681512586638962,
          -7,
          -2.8614597320725235,
          -2.9004278224560105,
          -2.8582089739878973,
          -3.6830470382388496,
          -3.1221222197687104,
          -2.981401486519429,
          -3.66143405039392,
          -3.7238659644435037,
          -3.3644571851188294,
          -3.3104256450108718,
          -3.0948203803548,
          -3.3325731039972615,
          -3.4095950193968156,
          -3.324385356490427,
          -7,
          -1.6653756948311083,
          -2.438937701095528,
          -7,
          -7,
          -3.0882810978965463,
          -7,
          -7,
          -7,
          -3.6265456590271294,
          -7,
          -3.156639998415452,
          -2.913187477585532,
          -2.6389273482647213,
          -2.8869007270739773,
          -7,
          -3.749620385199933,
          -7,
          -3.6370892735303304,
          -3.1005428500124648,
          -4.177421057483169,
          -3.413467412985825,
          -7,
          -7,
          -3.671728088239558,
          -3.1868320721941115,
          -3.615739688619155,
          -7,
          -7,
          -2.9337402994969355,
          -7,
          -3.0145205387579237,
          -3.028571252692538,
          -7,
          -3.1788331173591167,
          -3.741466761769755,
          -2.7693384508595433,
          -3.7294887691795613,
          -7,
          -3.1455708129596123,
          -3.648652695131223,
          -7,
          -7,
          -3.3738311450738303,
          -7,
          -7,
          -7,
          -3.2351314848706103,
          -3.643847310299714,
          -3.277188849160538,
          -7,
          -3.171726453653231,
          -2.7781113527324988,
          -7,
          -3.448242412634439,
          -2.7281797974498008,
          -7,
          -3.3024030886051277,
          -3.4218506150229584,
          -2.786199135510441,
          -3.7005306569785916,
          -2.877289054162867,
          -3.5985169354268858,
          -7,
          -7,
          -7,
          -3.4011936846300252,
          -2.708343630410836,
          -3.709948016510761,
          -7,
          -2.6454503417761015,
          -7,
          -3.193958978019187,
          -3.660675788338524,
          -2.8197084098789618,
          -3.0405034457764253,
          -3.6570558528571038,
          -2.6829996132339535,
          -2.8662873390841948,
          -7,
          -2.0123280442811606,
          -3.8191489428071344,
          -2.801403710017355,
          -7,
          -7,
          -7,
          -3.6203442997544935,
          -3.32990612340021,
          -7,
          -7,
          -3.660770643527697,
          -3.373463721632369,
          -2.9188454761509606,
          -3.088920402154754,
          -3.498285485563561,
          -7,
          -2.9476297473843545,
          -2.7034824447657835,
          -3.220631019448092,
          -3.313128713845194,
          -3.149013723915726,
          -2.984227178928321,
          -3.0293025935589983,
          -7,
          -7,
          -7,
          -7,
          -3.6378898165807905,
          -7,
          -7,
          -2.9541620770875987,
          -3.045790326219194,
          -7,
          -7,
          -7,
          -7,
          -3.6716355966021297,
          -7,
          -7,
          -3.3709754493589705,
          -3.92813970687512,
          -3.7427251313046983,
          -2.8399715893768915,
          -2.8615344108590377,
          -3.735758537443739,
          -7,
          -7,
          -1.568804204911912,
          -2.8526324579115143,
          -2.2093176791872278,
          -3.196636681829914,
          -3.3788322152077925,
          -3.205745540942662,
          -3.6379897807846855,
          -7,
          -2.7857826631404676,
          -2.8144854219696707,
          -2.141777003410443,
          -2.6667642211250104,
          -3.722921711759407,
          -2.5403294747908736,
          -3.1921956258464497,
          -3.625723909525756,
          -3.4058583993176366,
          -2.910691091182139,
          -2.801197834459149,
          -7,
          -3.3398487830376373,
          -3.008855563996213,
          -7,
          -3.0290589500844995,
          -7,
          -3.1640552918934515,
          -3.384962397302607,
          -3.400537989391946,
          -3.5039268041935103,
          -3.7209031708134575,
          -3.239902941766294,
          -2.8542680773374083,
          -7,
          -3.1565302224638243,
          -3.145403607683906,
          -3.37675939540488,
          -2.4106899876913297,
          -7,
          -3.1997894478774342,
          -2.4527445088929922,
          -2.9094668791881264,
          -3.0475863570743504,
          -3.066325925362038,
          -2.5968169359155904,
          -3.657385079468079,
          -2.407529236843904,
          -7,
          -7,
          -7,
          -3.493225621510431,
          -2.8494194137968996,
          -3.3474275986185416,
          -7,
          -2.792881745385397,
          -2.939219635854818,
          -3.2823955047425257,
          -3.171726453653231,
          -2.7898324333109286,
          -3.3690302218091532,
          -3.214843848047698,
          -3.2903685556172673,
          -3.670245853074124,
          -3.6742696661144847,
          -2.7651716502632686,
          -3.4915328873037605,
          -7,
          -3.1478529205561894,
          -3.389806176644556,
          -2.7261383350625823,
          -7,
          -3.6848453616444123,
          -7,
          -3.850829959848531,
          -2.8109490279235856,
          -2.9950986973311724,
          -2.8047450374282943,
          -7,
          -7,
          -3.311047116421505,
          -7,
          -7,
          -2.827830650428466,
          -2.9515533709285435,
          -3.6462076122066853,
          -2.2762517344250175,
          -7,
          -7,
          -3.5921161680291207,
          -3.3503587936139123,
          -3.745933158459443,
          -7,
          -4.742308700116073,
          -3.6571355618564843,
          -3.7479165080965102,
          -3.7261870607048433,
          -2.813011924279666,
          -7,
          -7,
          -4.07523664020612,
          -3.9028883034451844,
          -4.110219223689404,
          -3.1289097316047707,
          -3.6193194667848867,
          -4.404876460036331,
          -3.372523889041039,
          -3.857030798272624,
          -3.9060475723377666,
          -3.868879446237088,
          -4.014096818000472,
          -7,
          -3.461913898795249,
          -3.213597436747359,
          -7,
          -3.9925888608075706,
          -3.6760531246518715,
          -7,
          -3.2197912707627743,
          -3.9551824629011803,
          -3.9310169108928728,
          -4.392626616474039,
          -7,
          -7,
          -4.197308131503102,
          -7,
          -3.7268358369615817,
          -3.976143559821804,
          -2.893917426651345,
          -3.683407299132095,
          -3.2551777082639703,
          -3.209703356355492,
          -3.451939869365103,
          -3.008227455332087,
          -3.2827440836856336,
          -3.29284654660978,
          -3.194814042376054,
          -2.9243439084088356,
          -7,
          -4.194028437352706,
          -3.33577236081626,
          -3.1319392952104246,
          -7,
          -3.013525366277892,
          -3.1078880251827985,
          -3.6261349786353887,
          -3.215329068686353,
          -3.590013393112236,
          -7,
          -7,
          -3.2994517494807445,
          -3.218386036788657,
          -4.028207663558861,
          -7,
          -3.3279716236230104,
          -7,
          -2.6898989932168496,
          -7,
          -4.566432441251003,
          -3.3469673709650354,
          -7,
          -7,
          -3.5460488664017342,
          -3.1643245251486003,
          -3.330569333851446,
          -3.8837182019639593,
          -2.999456792322048,
          -3.046061390345488,
          -3.273884754313585,
          -3.2567810237713575,
          -3.6724673130680823,
          -2.7091317439789475,
          -2.994534789598222,
          -3.1612481803327377,
          -3.3088507917845416,
          -7,
          -3.031985216636394,
          -3.011048910322697,
          -3.4143790345261684,
          -7,
          -7,
          -7,
          -3.623766000133931,
          -7,
          -2.0158041779437648,
          -2.2227164711475833,
          -1.688740276308066,
          -3.33193317250328,
          -3.0443045191759146,
          -2.442019395215901,
          -3.305852740224386,
          -2.202566154587303,
          -2.789177654611687,
          -2.119475840906798,
          -7,
          -2.3868423283433025,
          -1.8437747597848402,
          -2.963598962597241,
          -3.460747541844197,
          -3.1890051397458556,
          -2.9792447784093805,
          -2.6846341802729268,
          -3.686278678067201,
          -3.6582976503081897,
          -2.9033613362553186,
          -3.66133934000604,
          -2.972758083903539,
          -2.2691907672877827,
          -2.044185585342395,
          -7,
          -2.597287647853614,
          -7,
          -3.0273496077747564,
          -3.4302867467096143,
          -2.6690579115218163,
          -2.892738121210747,
          -7,
          -2.850986404764101,
          -1.7877087345941876,
          -3.6845760873884554,
          -2.0014903272465965,
          -7,
          -2.374998155900169,
          -1.6823812847962216,
          -7,
          -3.6313422864839326,
          -2.877515318847026,
          -2.087713828597375,
          -2.8838678243612104,
          -3.65667304588485,
          -3.030275802889288,
          -2.0643688391738695,
          -3.062487970918584,
          -2.07132157559902,
          -2.0679538048440853,
          -2.2943298414179085,
          -7,
          -1.8674800254095916,
          -1.9493257951445513,
          -7,
          -2.385432481320828,
          -3.656577291396114,
          -7,
          -3.458788881710845,
          -2.1871394597445524,
          -2.0489385872046793,
          -2.100032493818558,
          -2.412894827472052,
          -2.8740674540749565,
          -7,
          -7,
          -2.957128197676813,
          -2.563389799113065,
          -3.647089428716555,
          -2.047236679256487,
          -1.767133369022842,
          -3.00987563371216,
          -7,
          -1.7666773799436992,
          -1.9738748705565081,
          -2.0509821774826937,
          -2.5676144427308447,
          -1.9344984512435677,
          -2.052538695727877,
          -2.1668327392036955,
          -2.7014816356209272,
          -2.010447450097471,
          -2.834844405648704,
          -2.931118710592187,
          -3.6970548922725746,
          -7,
          -3.6104472214421213,
          -3.5204507792823576,
          -3.114076960824089,
          -2.5986993354639654,
          -3.2085085378884504,
          -2.248747410028291,
          -2.9808362964839756,
          -2.751784139570337,
          -2.9649887923442346,
          -2.9595183769729982,
          -1.959594369612932,
          -3.6591552809406296,
          -2.2375599525385867,
          -7,
          -1.8898284729852795,
          -1.8254802118678997,
          -3.62746827245971,
          -3.613418945034573,
          -2.4764773784239575,
          -2.6896639650157703,
          -1.9987107152217967,
          -2.392789484309745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.630529571426824,
          -2.549266072612872,
          -3.249198357391113,
          -2.3493941009438672,
          -2.473924693416157,
          -3.185258765296585,
          -3.632356046239073,
          -7,
          -2.8935768378559144,
          -7,
          -2.782759192623997,
          -3.722633922533812,
          -2.800161697509443,
          -2.742077896487582,
          -3.9109444057499787,
          -7,
          -7,
          -3.2459442801693057,
          -3.1794560366764517,
          -7,
          -2.9651397854416572,
          -2.8925583448401535,
          -3.36707624226875,
          -2.6968554344439792,
          -2.8457868498048096,
          -2.8359722608046543,
          -7,
          -7,
          -3.0704073217401198,
          -3.617734035364018,
          -2.653694795315082,
          -2.9427519204298136,
          -3.682506085939011,
          -7,
          -7,
          -2.085468969886672,
          -7,
          -7,
          -7,
          -7,
          -3.168202746842631,
          -2.2285286773571817,
          -7,
          -4.30167823901002,
          -7,
          -7,
          -7,
          -2.873763335954439,
          -3.9122752104988123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.494373277015027,
          -2.7744046578712123,
          -7,
          -3.369586890736344,
          -4.003681721889419,
          -3.085290578230065,
          -7,
          -7,
          -7,
          -7,
          -2.638988159343682,
          -3.3887345299220177,
          -2.6067395461469105,
          -7,
          -7,
          -7,
          -2.4647449647018136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9373141119603785,
          -7,
          -2.970346876230093,
          -7,
          -3.12515582958053,
          -7,
          -7,
          -2.173186268412274,
          -7,
          -7,
          -3.255754786643044,
          -3.5467732675440056,
          -3.45178643552429,
          -3.6058973516449746,
          -7,
          -7,
          -7,
          -3.448551739201578,
          -7,
          -1.842902781008627,
          -1.7116238663693082,
          -7,
          -7,
          -7,
          -4.1503879773252805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3361594264847807,
          -7,
          -7,
          -4.523502595313213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.910090545594068,
          -7,
          -7,
          -7,
          -3.49996186559619,
          -2.5476516583599693,
          -7,
          -7,
          -3.617542423019308,
          -3.5444401373176926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.787460474518415,
          -3.2879136470760337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6351820486562674,
          -4.379051576184367,
          -7,
          -7,
          -7,
          -7,
          -3.540454613671412,
          -7,
          -7,
          -2.3406423775607053,
          -2.9476787399369364,
          -2.3547148546267573,
          -7,
          -3.2199917955016972,
          -3.5504805987637473,
          -7,
          -3.8433573784379558,
          -3.004751155591001,
          -4.517024258314842,
          -7,
          -3.452706226511029,
          -7,
          -7,
          -7,
          -3.601582004456866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.732956369575625,
          -2.722786215722561,
          -3.387033701282363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8433449200125067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6254839394069043,
          -7,
          -2.673941998634088,
          -3.1806419027298323,
          -7,
          -7,
          -3.652899893085946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9253636673541017,
          -7,
          -7,
          -7,
          -7,
          -3.8482988317907267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2780673308886628,
          -7,
          -7,
          -7,
          -7,
          -3.669409867287783,
          -7,
          -7,
          -2.7019994748896368,
          -7,
          -7,
          -3.473961150455583,
          -7,
          -3.459844642388208,
          -7,
          -7,
          -7,
          -7,
          -3.7460890430562004,
          -7,
          -7,
          -7,
          -7,
          -3.855700830835437,
          -7,
          -7,
          -7,
          -7,
          -2.8175653695597807,
          -7,
          -7,
          -2.502882116864084,
          -3.436639631692661,
          -2.2814878879400813,
          -4.13312357540262,
          -7,
          -7,
          -2.2105860249051563,
          -7,
          -7,
          -7,
          -2.001445240874181,
          -2.380211241711606,
          -7,
          -2.2281436075977417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8287391943822384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5173278822943734,
          -7,
          -7,
          -7,
          -4.316117183498905,
          -7,
          -7,
          -3.042181594515766,
          -4.109266296065941,
          -7,
          -7,
          -7,
          -3.692582562274909,
          -3.043833654133147,
          -3.66138669778177,
          -3.719082573901486,
          -7,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -3.162116141062368,
          -3.1340176456759834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3280736545131555,
          -7,
          -7,
          -7,
          -5.13203864273154,
          -3.5936736569452488,
          -2.8102325179950842,
          -3.809537269896024,
          -7,
          -7,
          -3.591287265058499,
          -3.2846562827885157,
          -7,
          -3.509605704611556,
          -1.8910810795189281,
          -2.209738359614102,
          -2.411878599849826,
          -7,
          -7,
          -3.3950350180286306,
          -7,
          -7,
          -7,
          -2.8535461212539044,
          -7,
          -2.9206450014067875,
          -7,
          -3.1144441724452543,
          -7,
          -7,
          -7,
          -7,
          -2.7234556720351857,
          -2.511214701136388,
          -7,
          -7,
          -4.380108687851405,
          -3.3461039217773387,
          -5.1763534937358475,
          -7,
          -3.7945577512547617,
          -4.018729617051877,
          -3.4766142820325037,
          -7,
          -7,
          -7,
          -7,
          -2.830944910590037,
          -2.6428765252838393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7041505168397992,
          -7,
          -3.647969458362972,
          -2.907411360774586,
          -3.80453468538638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.880470592803778,
          -7,
          -7,
          -7,
          -7,
          -4.997849268568125,
          -4.581528692545709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658412098960092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0806264869218056,
          -4.67045923596689,
          -7,
          -7,
          -7,
          -4.3290315750108395,
          -7,
          -4.758404667212629,
          -3.9935244031670654,
          -3.194930399217724,
          -7,
          -4.48567884650391,
          -3.7263467971429836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.186952099802866,
          -7,
          -7,
          -2.165792706193744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5973221466588425,
          -7,
          -3.035029282202368,
          -4.244687712313355,
          -7,
          -7,
          -5.046557592118178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.867143266506253,
          -3.058995093525416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.70372115992702,
          -7,
          -7,
          -7,
          -4.797371426606096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6661434272915585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0494764543837896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.094607370220264,
          -7,
          -7,
          -7,
          -2.9827233876685453,
          -7,
          -7,
          -7,
          -7,
          -3.648993910859345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0657041722395175,
          -3.0399426187629923,
          -7,
          -7,
          -7,
          -7,
          -3.89707700320942,
          -3.331427296520743,
          -3.554748951661129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.774078800752519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1535506516745295,
          -3.317958924700952,
          -2.585836579364848,
          -3.460554221350507,
          -7,
          -3.736953953783146,
          -7,
          -4.033021444682911,
          -7,
          -3.1789769472931693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.447623097760286,
          -7,
          -7,
          -7,
          -2.6893088591236203,
          -3.6671726724788685,
          -7,
          -2.6866362692622934,
          -7,
          -7,
          -4.395413767475018,
          -2.74350976472843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.035829825252828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.970579305714851,
          -7,
          -3.1344958558346736,
          -4.029716474028271,
          -7,
          -7,
          -7,
          -3.906846625927991,
          -3.746582308802873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9114239653762946,
          -7,
          -2.286939863241526,
          -3.381740252243611,
          -3.2081725266671217,
          -7,
          -7,
          -3.101403350555331,
          -2.355547295732133,
          -7,
          -4.023375938139562,
          -7,
          -2.394013663157313,
          -7,
          -7,
          -3.0879587894607328,
          -2.751279103983342,
          -7,
          -7,
          -2.4787267814350806,
          -7,
          -4.188481622437761,
          -7,
          -3.1245042248342823,
          -7,
          -7,
          -7,
          -2.173186268412274,
          -7,
          -7,
          -3.2489536154957075,
          -3.0409976924234905,
          -3.132083501905735,
          -3.0312737784133907,
          -2.927010868975651,
          -2.743313739231126,
          -7,
          -7,
          -3.028435683944159,
          -2.8842287696326037,
          -3.2079035303860515,
          -3.2111205412580492,
          -1.758555694320263,
          -7,
          -7,
          -3.6792158461511475,
          -7,
          -7,
          -3.4727564493172123,
          -7,
          -7,
          -2.8964343519192703,
          -7,
          -7,
          -3.848004271497268,
          -2.3878345723908105,
          -2.2246625288410296,
          -7,
          -7,
          -3.600264821501586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.085351749338937,
          -7,
          -4.037864555774374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.951337518795918,
          -2.6414741105040997,
          -3.0386643087839875,
          -7,
          -3.452553063228925,
          -7,
          -3.6734816970733473,
          -3.0430405916283196,
          -2.436162647040756,
          -1.8739015978644613,
          -2.2392994791268928,
          -7,
          -3.216236298927863,
          -7,
          -7,
          -3.416141031168329,
          -3.295347148333618,
          -7,
          -7,
          -3.071485468913831,
          -4.058828243869098,
          -3.13481437032046,
          -3.8674674878590514,
          -2.8472641017707647,
          -4.3938251796516585,
          -7,
          -7,
          -2.9521140849069925,
          -3.000434077479319,
          -7,
          -3.7071015665766813,
          -7,
          -7,
          -7,
          -4.376193586884285,
          -7,
          -7,
          -7,
          -2.7024305364455254,
          -7,
          -7,
          -7,
          -3.8665531523018597,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3550682063488506,
          -7,
          -3.55303301620244,
          -2.645422269349092,
          -7,
          -2.866877814337499,
          -4.070173369985659,
          -7,
          -7,
          -3.372175286115064,
          -7,
          -7,
          -7,
          -7,
          -2.4658288153574364,
          -7,
          -2.3150156418807564,
          -3.424936056088804,
          -7,
          -7,
          -2.5458630090437357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.049605612594973,
          -7,
          -2.9903881924169533,
          -7,
          -3.8132250459342703,
          -7,
          -7,
          -3.0591134355336966,
          -7,
          -3.238798562713917,
          -3.632558514532672,
          -3.289142835932333,
          -3.4473131088235682,
          -3.0130479961152314,
          -7,
          -3.2543063323312857,
          -7,
          -2.5249521970606112,
          -3.110589710299249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.789404420511141,
          -7,
          -3.4888326343824008,
          -7,
          -7,
          -2.768268016451548,
          -7,
          -2.93007534541053,
          -3.4268364538035083,
          -7,
          -7,
          -7,
          -3.879153246184246,
          -7,
          -2.9410142437055695,
          -7,
          -7,
          -1.8993153129766798,
          -3.1027766148834415,
          -7,
          -3.132579847659737,
          -2.631595948357801,
          -3.3281756614383227,
          -3.844570361988267,
          -5.23621973764206,
          -7,
          -3.0856472882968564,
          -2.8257505813480277,
          -7,
          -7,
          -1.5500017449195571,
          -1.9386577278728878,
          -3.329397879361043,
          -3.3236645356081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6021389467834846,
          -7,
          -7,
          -7,
          -7,
          -1.5425142162816539,
          -2.026564690731343,
          -7,
          -7,
          -7,
          -7,
          -3.2097160302749415,
          -3.065206128054312,
          -7,
          -2.6780629049743454,
          -7,
          -4.324385356490427,
          -3.0948203803548,
          -3.3087652259715576,
          -7,
          -7,
          -7,
          -7,
          -1.7985739217489467,
          -3.4085791254086675,
          -7,
          -3.077231599016813,
          -2.177107335873833,
          -7,
          -7,
          -7,
          -7,
          -2.794255617174412,
          -2.9163223242173815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6281845080734128,
          -2.6354837468149124,
          -2.940516484932567,
          -3.1045846507809474,
          -7,
          -3.1986570869544226,
          -2.7056499320768443,
          -4.355128920244271,
          -3.916295994563131,
          -7,
          -7,
          -7,
          -7,
          -2.728962179713866,
          -7,
          -7,
          -3.2587569725365753,
          -2.583132067189918,
          -2.770667949557633,
          -3.09968064110925,
          -7,
          -5.050532486589045,
          -3.4176377396522297,
          -7,
          -7,
          -7,
          -3.7868933252613157,
          -3.182889966569668,
          -7,
          -7,
          -3.1762359997608716,
          -7,
          -2.9253120914996495,
          -7,
          -7,
          -3.163757523981956,
          -2.929418925714293,
          -3.6618126855372615,
          -7,
          -3.7803353173424465,
          -3.695761776133511,
          -4.62026621966285,
          -7,
          -7,
          -3.9411841806116277,
          -2.901662615158517,
          -7,
          -7,
          -3.0310042813635367,
          -3.5878231713189552,
          -2.858403506793794,
          -2.909326749263002,
          -3.403977963669355,
          -7,
          -7,
          -2.5605044151950564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.674685572725944,
          -7,
          -7,
          -3.997779430865604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.627274799986486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.924754681634838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.300175042202833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1645089952494,
          -2.8664484574247195,
          -7,
          -4.035989756936426,
          -7,
          -4.935504746707883,
          -3.53343309682066,
          -7,
          -7,
          -4.061542005396714,
          -3.5079817359140435,
          -7,
          -7,
          -7,
          -7,
          -3.8221026686469206,
          -7,
          -7,
          -7,
          -4.993471501713574,
          -4.789565201370235,
          -7,
          -7,
          -3.422753941301348,
          -7,
          -7,
          -7,
          -7,
          -3.4894662813031285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5578898161615204,
          -7,
          -7,
          -3.991339312324231,
          -7,
          -3.6057358938767465,
          -5.348367178861577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.174059807725025,
          -7,
          -3.7183078877374,
          -7,
          -3.0646451447919367,
          -2.6956567599361905,
          -7,
          -7,
          -7,
          -2.8226764934027218,
          -7,
          -4.322970043852789,
          -7,
          -7,
          -3.407900540142635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2041199826559246,
          -7,
          -7,
          -2.8692317197309762,
          -2.796343017901684,
          -7,
          -4.029099566823543,
          -7,
          -7,
          -7,
          -3.618672055598137,
          -4.790833844350289,
          -7,
          -3.5024271199844326,
          -3.111598524880394,
          -7,
          -2.9190780923760737,
          -7,
          -3.3089910290001643,
          -3.95970902424643,
          -7,
          -7,
          -3.45117215751254,
          -3.3010299956639813,
          -7,
          -7,
          -7,
          -7,
          -3.1470576710283598,
          -2.8817649496862066,
          -3.5268990185335793,
          -7,
          -7,
          -2.9874428049358013,
          -3.5671440451956573,
          -7,
          -4.158633841358625,
          -7,
          -7,
          -3.9184497424011577,
          -7,
          -3.3610089326644585,
          -3.518382315545344,
          -7,
          -2.829089253448099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8298181874388773,
          -7,
          -7,
          -7,
          -2.943575266054042,
          -3.3576490329184674,
          -7,
          -3.8371674062278354,
          -7,
          -3.466348528450199,
          -7,
          -3.0938884175896426,
          -7,
          -7,
          -7,
          -2.9708116108725178,
          -7,
          -7,
          -7,
          -3.193958978019187,
          -7,
          -3.0153724583497334,
          -7,
          -7,
          -4.0743653395608534,
          -3.3971575742021414,
          -3.5052856741441323,
          -7,
          -3.34143452457814,
          -7,
          -3.3813858660133773,
          -3.4016589724951523,
          -7,
          -7,
          -7,
          -7,
          -4.10124858623158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.779776808670381,
          -3.1048284036536553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9019348574378614,
          -7,
          -7,
          -7,
          -7,
          -3.471731651480051,
          -7,
          -7,
          -7,
          -7,
          -3.6920533650340808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5913985512812485,
          -7,
          -7,
          -3.910210721165163,
          -7,
          -7,
          -7,
          -4.259426626587052,
          -4.2735568135298365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.385481150169245,
          -3.530754489047923,
          -7,
          -3.152777414797245,
          -3.498965816652076,
          -3.5619357633137816,
          -7,
          -7,
          -3.658964842664435,
          -7,
          -7,
          -3.8010204744912124,
          -7,
          -7,
          -3.0056094453602804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.107626174659984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2978907226198837,
          -7,
          -4.021313365484695,
          -3.09377178149873,
          -3.5219222448835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188084373714938,
          -4.0100737026717335,
          -7,
          -3.4759615891924236,
          -7,
          -7,
          -3.8967466156074058,
          -2.4659644526568525,
          -7,
          -3.4119562379304016,
          -3.3134549624770786,
          -7,
          -7,
          -7,
          -3.503245771465113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.747567162737625,
          -7,
          -3.6339731557896737,
          -7,
          -3.7050482678914456,
          -3.773274348337454,
          -3.8109378415420916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.322839272686321,
          -7,
          -3.7428036584691657,
          -2.643822656189299,
          -7,
          -7,
          -4.0750357259221905,
          -7,
          -3.6872613462435067,
          -7,
          -3.8291107101552946,
          -3.81888541459401,
          -3.532117116248804,
          -7,
          -7,
          -7,
          -3.949958933716697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5599066250361124,
          -3.461698570306548,
          -4.295852870643949,
          -7,
          -7,
          -7,
          -4.527591237920567,
          -7,
          -7,
          -3.5129510799724906,
          -7,
          -7,
          -3.748381865207099,
          -7,
          -7,
          -7,
          -4.411804830815424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4203848769604073,
          -7,
          -4.223833277236323,
          -7,
          -7,
          -7,
          -7,
          -3.497758718287268,
          -7,
          -7,
          -3.6617180576946593,
          -3.163757523981956,
          -3.504742636271688,
          -7,
          -3.248988587068936,
          -7,
          -7,
          -7,
          -3.598899887063883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.699620957965614,
          -7,
          -7,
          -3.1271139278564446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.035469763481283,
          -7,
          -4.33344727449675,
          -7,
          -3.888179493918325,
          -3.9267558091842387,
          -7,
          -7,
          -3.8009231818132183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.527951958343942,
          -7,
          -3.3739535505092246,
          -7,
          -3.7562556487542333,
          -7,
          -3.9112286531507197,
          -7,
          -7,
          -7,
          -3.612571954065176,
          -7,
          -7,
          -7,
          -7,
          -2.0699551096954005,
          -2.085797394401143,
          -7,
          -7,
          -4.401262647628488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.158687421166621,
          -7,
          -7,
          -7,
          -7,
          -3.466125870418199,
          -7,
          -3.663323933628212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.176477127123627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.561280314290289,
          -7,
          -3.3281246609706576,
          -7,
          -7,
          -7,
          -7,
          -4.063239508171935,
          -7,
          -3.7861004389479858,
          -7,
          -4.254266028449126,
          -7,
          -7,
          -7,
          -3.78830981210705,
          -3.9014038268252516,
          -3.587299293713931,
          -3.4072775708370235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.738304793074105,
          -7,
          -7,
          -7,
          -3.6624524593842067,
          -3.40963729678618,
          -7,
          -3.383556067822925,
          -7,
          -3.5531545481696254,
          -7,
          -7,
          -7,
          -7,
          -3.330819466495837,
          -7,
          -7,
          -7,
          -4.051770389384332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.820004306808318,
          -7,
          -7,
          -7,
          -7,
          -3.6591552809406296,
          -7,
          -3.571883445956414,
          -7,
          -3.5721743136130595,
          -7,
          -7,
          -3.0383805221721714,
          -4.127978988916909,
          -3.762639904201196,
          -7,
          -3.937568038600383,
          -3.852589773309593,
          -3.9255699095433765,
          -7,
          -7,
          -7,
          -7,
          -3.3292961591399655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.632242116329883,
          -7,
          -7,
          -4.6215293920698475,
          -7,
          -3.8470788620657155,
          -7,
          -4.255698548052355,
          -7,
          -7,
          -4.139952511628103,
          -4.593108767780639,
          -7,
          -7,
          -7,
          -4.4377030097263495,
          -3.8620887659114524,
          -7,
          -4.075382701327236,
          -4.39458300002751,
          -4.9351241922799405,
          -7,
          -7,
          -7,
          -3.994274909206636,
          -7,
          -4.562197666191757,
          -4.18130038026682,
          -4.0761851605990795,
          -7,
          -7,
          -7,
          -4.314667608117513,
          -7,
          -4.096927384439907,
          -4.371178731816287,
          -4.256188382589775,
          -7,
          -3.8621015503709666,
          -3.9993045723383487,
          -7,
          -7,
          -3.9401278366627084,
          -7,
          -3.9933921374490025,
          -3.8197412972730103,
          -7,
          -3.8436687229791437,
          -4.074816440645175,
          -3.6722826247889206,
          -3.628645567732361,
          -7,
          -3.745465168670727,
          -7,
          -3.42978456835467,
          -3.5558541878466463,
          -7,
          -3.6291910861512395,
          -3.958085848521085,
          -7,
          -7,
          -4.114844413145024,
          -7,
          -7,
          -3.7717517097073854,
          -3.4266220223396426,
          -3.695508028511194,
          -7,
          -3.8649854606597938,
          -7,
          -4.666115322770356,
          -3.6260836162697796,
          -3.417988261884268,
          -4.157879674389154,
          -4.2777237887624535,
          -7,
          -3.6707281346138623,
          -3.867791467345843,
          -3.8456147497502875,
          -7,
          -3.672490393581568,
          -7,
          -4.3094065759545295,
          -3.3742113633648128,
          -7,
          -3.6129234633249223,
          -4.66655541812069,
          -7,
          -3.7958684360034725,
          -7,
          -7,
          -3.934437847785288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.202651759757338,
          -7,
          -4.2484392081415105,
          -7,
          -7,
          -4.087195576859718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.512837759385333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6290016192869916,
          -7,
          -7,
          -4.104657791008797,
          -7,
          -7,
          -7,
          -5.103013064468925,
          -4.202787915033841,
          -7,
          -7,
          -3.74401901732498,
          -7,
          -7,
          -7,
          -3.6094876898532853,
          -4.306682311019055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.481550113834348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0509922864820505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6131496270446064,
          -3.517789511883555,
          -7,
          -4.355183236009675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5756380764913755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.269512944217916,
          -4.134862127351672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530878153458473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.128722284338427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.649851182496973,
          -3.4622482153549976,
          -7,
          -7,
          -7,
          -3.4497868469857735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3090685504394175,
          -3.619249898968967,
          -2.518075036877517,
          -3.4192947217534604,
          -3.1140806845145326,
          -2.9501213475113732,
          -2.4348881208673157,
          -7,
          -2.1954112236995664,
          -2.8226038992559745,
          -3.1586639808139894,
          -4.091332756361876,
          -2.9501213475113732,
          -7,
          -7,
          -2.86123561863404,
          -3.4184670209466006,
          -2.812244696800369,
          -2.717908147047537,
          -3.0334237554869494,
          -3.1604685311190375,
          -7,
          -3.6807323905389078,
          -2.1324731545055577,
          -7,
          -2.7420964023032446,
          -3.279210512601395,
          -2.794313736208544,
          -7,
          -3.2489536154957075,
          -7,
          -7,
          -3.374748346010104,
          -2.902093586658964,
          -3.531223374533027,
          -2.3530451702840365,
          -3.3574901660030245,
          -7,
          -3.220631019448092,
          -2.5722260030301527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.518311424377877,
          -3.3457807615350057,
          -7,
          -7,
          -2.6501687043735536,
          -7,
          -3.302330928684399,
          -3.2133406385265157,
          -2.7701152947871015,
          -7,
          -3.8262724589346937,
          -7,
          -2.9822712330395684,
          -7,
          -3.121887985103681,
          -1.3469231820488825,
          -3.4274861090957858,
          -2.291305408119733,
          -7,
          -2.927626962444954,
          -7,
          -1.9388055392584782,
          -7,
          -2.20682587603185,
          -7,
          -3.439276652216932,
          -7,
          -3.140939922954522,
          -7,
          -7,
          -3.514282047860378,
          -3.3803921600570273,
          -3.480868923687168,
          -7,
          -7,
          -3.3899040530754956,
          -7,
          -1.5738167483447931,
          -7,
          -2.6770852776044296,
          -7,
          -2.6982455763416864,
          -3.3224260524059526,
          -2.0689095352848286,
          -2.222734405713542,
          -7,
          -7,
          -2.9824973691977124,
          -7,
          -3.550490423553987,
          -7,
          -7,
          -7,
          -7,
          -3.690550461510359,
          -3.2474822606770544,
          -3.8898057518680855,
          -4.281994874508107,
          -3.185825359612962,
          -7,
          -7,
          -4.695617372314424,
          -2.584783378996508,
          -2.7525605875980133,
          -3.1905184513367484,
          -7,
          -7,
          -1.9413817860395093,
          -3.253580289562183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.149796248264438,
          -3.173841587563712,
          -7,
          -3.736077637003946,
          -7,
          -7,
          -7,
          -7,
          -2.8221680793680175,
          -7,
          -2.7167186243047006,
          -7,
          -7,
          -3.215901813204032,
          -2.895140046118993,
          -7,
          -7,
          -3.402433346219312,
          -2.7207792813583587,
          -7,
          -3.0261245167454502,
          -3.0595634179012676,
          -3.1915907263792107,
          -2.998259338423699,
          -2.788168371141168,
          -3.0075877677507616,
          -3.3639878297484915,
          -3.17376882313665,
          -3.4617771336303806,
          -2.8447877188278463,
          -7,
          -7,
          -7,
          -7,
          -3.1109262422664203,
          -3.035829825252828,
          -2.4190319759437413,
          -7,
          -4.2942016006947465,
          -3.035029282202368,
          -2.989598116961936,
          -2.6169714149603367,
          -7,
          -7,
          -2.9496826907952043,
          -2.62490060220449,
          -2.9951962915971793,
          -2.230252363564598,
          -2.91399035898314,
          -7,
          -2.8717674683517753,
          -2.7331972651065692,
          -2.686040120257356,
          -7,
          -7,
          -2.7745169657285493,
          -3.111598524880394,
          -4.052963128755503,
          -7,
          -3.494189391861649,
          -7,
          -3.500648063371912,
          -7,
          -3.049605612594973,
          -7,
          -3.17260293120986,
          -3.0093800657435907,
          -2.975891136401793,
          -7,
          -2.010796911305982,
          -7,
          -3.8887970674566805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.157456768134226,
          -7,
          -7,
          -3.9430491110084067,
          -2.8001276715211594,
          -4.150909873701122,
          -4.391234285554613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.362670929725667,
          -2.6568644915489172,
          -2.9960736544852753,
          -7,
          -7,
          -0.9571200035186085,
          -7,
          -1.9773424780314754,
          -3.3723595825243238,
          -3.8663168819216542,
          -7,
          -7,
          -7,
          -3.1058506743851435,
          -7,
          -3.1975562131535367,
          -3.0043213737826426,
          -2.9156636035057732,
          -7,
          -2.61419390497756,
          -2.977527638759884,
          -3.377063289113944,
          -7,
          -7,
          -7,
          -1.9268149217388544,
          -7,
          -3.286044585480999,
          -2.921166050637739,
          -4.017108499147387,
          -3.247973266361807,
          -7,
          -7,
          -3.7169210731667612,
          -7,
          -1.5092877328770893,
          -2.6480596170682786,
          -3.876044550246095,
          -2.052673695567914,
          -7,
          -7,
          -7,
          -2.694354451535204,
          -7,
          -7,
          -2.82020145948564,
          -2.8356905714924254,
          -7,
          -7,
          -7,
          -2.4010870839062237,
          -2.246092887649155,
          -3.296665190261531,
          -3.2214142378423385,
          -7,
          -3.75349688080315,
          -2.9700884752693537,
          -3.0842186867392387,
          -3.9982375359446207,
          -7,
          -3.2335037603411343,
          -3.34908316877959,
          -3.095518042323151,
          -3.028887415295375,
          -2.176438555741045,
          -3.8268519478206438,
          -7,
          -2.993656628615462,
          -2.6161002486082365,
          -4.205497585194046,
          -2.579892428714085,
          -7,
          -7,
          -7,
          -7,
          -2.5600906481244183,
          -7,
          -7,
          -3.501470072100412,
          -7,
          -2.526016021340753,
          -7,
          -2.8442441226239614,
          -7,
          -3.2723058444020863,
          -2.675961549642169,
          -3.2116544005531824,
          -4.161649453645398,
          -3.6987267313033447,
          -4.69954925623636,
          -7,
          -2.716965947239607,
          -4.544022544449755,
          -3.038288917572495,
          -7,
          -2.6488477083728936,
          -3.0948203803548,
          -2.7018916426154878,
          -3.3475251599986895,
          -3.068556895072363,
          -2.2232038037013226,
          -7,
          -2.2081725266671217,
          -2.4877038631637265,
          -7,
          -3.1992064791616577,
          -7,
          -3.7001843296221977,
          -2.8369567370595505,
          -1.8236010449684215,
          -7,
          -2.41954272470028,
          -3.9996306927125405,
          -7,
          -7,
          -7,
          -7,
          -4.383869200802545,
          -7,
          -3.7519056726903885,
          -3.8422006200271137,
          -7,
          -7,
          -3.7144764560755936,
          -7,
          -7,
          -3.9858192722715877,
          -7,
          -4.6790188494009755,
          -4.448489891511086,
          -7,
          -7,
          -7,
          -5.087976522642251,
          -4.287488208401288,
          -3.694203933575552,
          -4.124471618919488,
          -7,
          -7,
          -7,
          -7,
          -3.8753651631765127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.461588557771539,
          -7,
          -3.6200214777674438,
          -3.248463717551032,
          -4.374647548674498,
          -3.5766979443367655,
          -3.315550534421905,
          -2.8627275283179747,
          -4.3404441148401185,
          -7,
          -3.774428864606044,
          -4.0178677189635055,
          -7,
          -4.45048005460606,
          -3.224627223695273,
          -3.5394883214712616,
          -7,
          -3.404755990537958,
          -3.557266528869904,
          -7,
          -7,
          -3.9065146136422175,
          -7,
          -7,
          -3.5168437434754565,
          -3.520043796485627,
          -7,
          -7,
          -2.4796872561691394,
          -2.840419777736486,
          -4.113188647173712,
          -7,
          -4.804311547921729,
          -7,
          -3.9317374785123613,
          -7,
          -4.032820149438564,
          -3.5963457132407983,
          -3.9417740027353023,
          -7,
          -3.752227765448041,
          -3.843295082736507,
          -3.521007252408604,
          -3.0635001547221736,
          -7,
          -3.082465665425615,
          -4.356704509667284,
          -7,
          -4.570527373492466,
          -7,
          -7,
          -3.1512747226484303,
          -4.308180101030666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0789495605356465,
          -2.4998397612917653,
          -2.2819474676523446,
          -7,
          -3.3967222785037734,
          -3.27425409180854,
          -7,
          -3.11293997608408,
          -7,
          -3.312811826212088,
          -7,
          -3.32376758329678,
          -2.7676196082318536,
          -3.1914510144648953,
          -7,
          -7,
          -3.1264561134318045,
          -2.9373506949096404,
          -7,
          -7,
          -3.3405763000433617,
          -7,
          -7,
          -2.678700434998304,
          -3.1172712956557644,
          -7,
          -7,
          -7,
          -7,
          -4.602830180692315,
          -3.591221175368724,
          -4.013805927340592,
          -7,
          -7,
          -2.6848925855320145,
          -7,
          -2.309128961967035,
          -7,
          -2.865893242431105,
          -2.2557500142024325,
          -7,
          -7,
          -7,
          -2.858537197569639,
          -3.2539031250960253,
          -7,
          -3.3649260337899753,
          -2.4311339179075766,
          -7,
          -2.3458191151555057,
          -2.47716383052303,
          -7,
          -7,
          -2.652783368995461,
          -2.584670384464349,
          -7,
          -3.8626381581186875,
          -7,
          -7,
          -7,
          -2.9556877503135057,
          -2.9341805204045848,
          -2.8402315949581087,
          -3.3527611917238307,
          -7,
          -7,
          -7,
          -7,
          -3.813714391881145,
          -7,
          -2.9590413923210934,
          -2.233630580164463,
          -7,
          -7,
          -2.3371048535184054,
          -2.4402024359984047,
          -2.8956987269593055,
          -3.4608978427565478,
          -3.1712666394420372,
          -7,
          -3.3025473724874854,
          -7,
          -3.4530123911214554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.538824988937904,
          -2.76067373855426,
          -7,
          -3.495203630280667,
          -7,
          -7,
          -3.6503439557045767,
          -7,
          -2.4837817426770465,
          -7,
          -2.4681626421329956,
          -7,
          -2.9979976364080043,
          -2.7157527168228595,
          -7,
          -7,
          -2.8976270912904414,
          -2.568670978009897,
          -3.200594030012974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.111094410509336,
          -7,
          -7,
          -7,
          -3.139249217571607,
          -7,
          -7,
          -3.0037476689675056,
          -3.3479151865016914,
          -3.28190951735707,
          -3.803934849863842,
          -7,
          -7,
          -7,
          -3.602168551378997,
          -3.172310968521954,
          -7,
          -3.426904171590417,
          -2.737457698850837,
          -2.7278122676344823,
          -7,
          -3.5150786750759226,
          -2.893067889914971,
          -7,
          -7,
          -3.452706226511029,
          -7,
          -3.007150105366685,
          -3.0443437348951075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0907869279492677,
          -7,
          -7,
          -3.8094223346541747,
          -3.7942091163464964,
          -7,
          -7,
          -3.4452668065216505,
          -2.465231573252902,
          -7,
          -7,
          -7,
          -7,
          -3.18440748541232,
          -2.70413144332119,
          -7,
          -7,
          -1.3581676859271297,
          -3.613872011614492,
          -3.344588742578714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.917698019853736,
          -3.344588742578714,
          -2.9006401839826004,
          -7,
          -3.274388795550379,
          -3.182557301304913,
          -7,
          -7,
          -7,
          -3.220108088040055,
          -1.9316031439741541,
          -3.4453581890617757,
          -7,
          -7,
          -2.657738598606746,
          -7,
          -3.1316186643491255,
          -3.255754786643044,
          -3.0409976924234905,
          -7,
          -3.374748346010104,
          -7,
          -3.4366025516688135,
          -7,
          -7,
          -3.8611160441613954,
          -7,
          -3.3197304943302246,
          -7,
          -7,
          -2.866484253384509,
          -7,
          -7,
          -7,
          -7,
          -3.466185257056047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8227400033286365,
          -7,
          -3.0941215958405612,
          -4.0495507250485385,
          -7,
          -2.8198070645907563,
          -7,
          -3.2430380486862944,
          -7,
          -3.4916417934775863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.179647524546354,
          -7,
          -7,
          -3.228232597940259,
          -3.351699700405266,
          -3.5836898650716833,
          -7,
          -7,
          -7,
          -2.604380359173108,
          -7,
          -3.6881527555915663,
          -7,
          -3.481528618895993,
          -3.3224260524059526,
          -7,
          -7,
          -3.11544408343624,
          -7,
          -7,
          -7,
          -7,
          -3.919531335965941,
          -2.5138831856110926,
          -3.2420442393695508,
          -2.5908789714255094,
          -7,
          -3.9259821003271034,
          -1.0812776032085405,
          -2.1595671932336202,
          -7,
          -7,
          -3.7267272090265724,
          -3.3412366232386925,
          -3.90156729002845,
          -2.5450580749210907,
          -3.292256071356476,
          -3.901240302073309,
          -3.302114376956201,
          -4.521377838762743,
          -7,
          -7,
          -2.750422676015204,
          -7,
          -3.3087777736647213,
          -3.7196212723403606,
          -7,
          -7,
          -7,
          -2.880688571764092,
          -7,
          -7,
          -7,
          -3.205745540942662,
          -7,
          -4.069483093934611,
          -7,
          -3.4856930402936617,
          -3.166282067316571,
          -7,
          -7,
          -7,
          -3.2329961103921536,
          -2.478566495593843,
          -4.094121595840561,
          -3.8889653443003374,
          -7,
          -7,
          -7,
          -3.9524897355097743,
          -7,
          -7,
          -7,
          -3.403977963669355,
          -7,
          -7,
          -3.4348881208673157,
          -3.548635059814752,
          -7,
          -7,
          -3.9335379019717047,
          -7,
          -7,
          -2.5397646745595197,
          -7,
          -7,
          -7,
          -3.3234583668494677,
          -7,
          -3.2347702951609167,
          -7,
          -2.244720457047523,
          -7,
          -4.3034984457923136,
          -7,
          -3.7989267385772014,
          -2.7835097676367373,
          -2.3324384599156054,
          -2.253534871562535,
          -2.784706424389351,
          -2.360352397078838,
          -2.0464951643347082,
          -3.424718337331567,
          -7,
          -3.3787611753163733,
          -7,
          -3.2477278329097232,
          -7,
          -3.452016565962548,
          -7,
          -3.697839368218363,
          -7,
          -3.7599698575543075,
          -7,
          -3.031105362355941,
          -7,
          -2.1711736885434303,
          -2.5100979751883425,
          -7,
          -7,
          -7,
          -3.3399811495372607,
          -3.514282047860378,
          -7,
          -3.5384480517102173,
          -3.6766570359180024,
          -3.4347285417797577,
          -7,
          -2.8654001181793016,
          -3.249442961442582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2642982471902164,
          -3.385069776331935,
          -2.9587728580583295,
          -3.8216210095804164,
          -7,
          -7,
          -2.8091105993088905,
          -1.6213301777659805,
          -7,
          -7,
          -2.8009918612601714,
          -3.4363217001397333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7104912734275546,
          -7,
          -7,
          -7,
          -7,
          -3.014310480963307,
          -3,
          -7,
          -3.3170181010481117,
          -7,
          -3.462996612028056,
          -2.485906508300662,
          -3.180125875164054,
          -2.602679969280364,
          -7,
          -7,
          -4.035409724152798,
          -2.789298611159441,
          -2.320196054852768,
          -7,
          -3.8164815873225115,
          -7,
          -7,
          -7,
          -3.3361393986085566,
          -7,
          -2.7753748316507534,
          -3.1920793644398113,
          -7,
          -7,
          -3.00987563371216,
          -7,
          -7,
          -3.2899232395240046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8328281295393536,
          -7,
          -3.5073160400764136,
          -2.8981764834976764,
          -7,
          -3.574956775764507,
          -3.4204508591060683,
          -4.180918775794492,
          -3.946599625015133,
          -7,
          -3.2666806020098047,
          -7,
          -7,
          -3.6898414091375047,
          -3.4653828514484184,
          -3.0477074316449433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.899546931090867,
          -3.324385356490427,
          -7,
          -7,
          -7,
          -3.3498600821923312,
          -3.71357453777207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7802452838653524,
          -7,
          -3.3613500243522663,
          -7,
          -3.3126004392612596,
          -3.8631026824566015,
          -2.957093956774686,
          -4.127651373635002,
          -7,
          -3.8588378514285853,
          -3.846712266268432,
          -3.543260747590362,
          -7,
          -7,
          -7,
          -2.9502674680135885,
          -3.374381698050882,
          -3.7985815947285477,
          -3.4956830676169153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.255754786643044,
          -3.6136700778166193,
          -7,
          -7,
          -3.3272190771136168,
          -4.177233398034179,
          -7,
          -7,
          -4.721159097082167,
          -3.2448600309376636,
          -3.9329301428307897,
          -3.397342442838698,
          -3.059297726935559,
          -4.021106568432121,
          -7,
          -7,
          -4.7272158209084925,
          -5.002166061756507,
          -3.194225641306038,
          -7,
          -3.904634411707706,
          -3.396004368414134,
          -7,
          -3.8560841179056817,
          -7,
          -4.5446455377810215,
          -4.296928319310418,
          -3.465308479587306,
          -3.3596774133729372,
          -7,
          -4.36674038984291,
          -7,
          -7,
          -3.781496874572939,
          -3.710709565724337,
          -4.686385986344789,
          -4.343802333161655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.212374071200659,
          -3.032773683437139,
          -7,
          -3.6794188108584622,
          -3.6383043327526083,
          -2.93881982502621,
          -3.4424013694827025,
          -3.871611849078623,
          -3.2127201544178425,
          -3.3291517006052955,
          -4.035269600099436,
          -7,
          -3.9798062647929684,
          -3.7368977726140367,
          -3.8444416709646037,
          -7,
          -7,
          -3.883320678382975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.217896108987832,
          -3.9210830062916417,
          -5.230172076871155,
          -7,
          -3.4690852991231202,
          -7,
          -4.358287092179741,
          -7,
          -5.1060735504822965,
          -7,
          -7,
          -7,
          -3.865182965998549,
          -4.147212416970458,
          -4.789968302089217,
          -7,
          -7,
          -3.0232524596337114,
          -4.20477093628552,
          -3.0535585922132595,
          -7,
          -3.7723559402990166,
          -4.3587341271980105,
          -3.188084373714938,
          -4.6505406388014645,
          -7,
          -7,
          -4.3176873404861835,
          -4.016113666358908,
          -7,
          -7,
          -7,
          -2.720159303405957,
          -7,
          -2.5570486620906934,
          -3.5167997040816243,
          -2.9804311689285914,
          -7,
          -2.560056149734406,
          -3.157286734403413,
          -2.8372095278012064,
          -7,
          -7,
          -3.819214799882384,
          -7,
          -2.4961003641614714,
          -3.7096938697277917,
          -3.296665190261531,
          -2.8959747323590643,
          -3.379668034033654,
          -3.491921712586151,
          -3.2730784731095195,
          -7,
          -3.284881714655453,
          -3.066450169242703,
          -2.688642251959892,
          -2.83968749733336,
          -7,
          -3.639486489268586,
          -7,
          -3.207095540419218,
          -7,
          -7,
          -3.762196103597941,
          -2.9267837763578677,
          -3.8406496682305784,
          -7,
          -7,
          -3.984932166067412,
          -2.0144405287205007,
          -3.5935075893317654,
          -7,
          -7,
          -2.931365398745314,
          -3.1792644643390253,
          -7,
          -7,
          -7,
          -3.2869801217565664,
          -3.281033367247727,
          -3.4382258076045296,
          -7,
          -3.300812794118117,
          -7,
          -2.7052526322873587,
          -3.9208274397551555,
          -7,
          -3.174544349203273,
          -3.3309208305952356,
          -7,
          -2.971246848405424,
          -7,
          -3.2182728535714475,
          -2.9477277269633158,
          -7,
          -3.0221578694079523,
          -3.11293997608408,
          -3.2157256645575676,
          -7,
          -7,
          -7,
          -7,
          -3.5400790888041724,
          -2.7798368978412693,
          -3.499687082618404,
          -7,
          -3.0960405542954277,
          -7,
          -3.557567349330711,
          -2.9407554803427463,
          -7,
          -2.8205954965444904,
          -3.372175286115064,
          -2.746745371210528,
          -3.3322364154914434,
          -7,
          -3.59402403573142,
          -7,
          -2.61874519875888,
          -3.371437317404101,
          -3.184975190698261,
          -7,
          -3.9013129873424166,
          -7,
          -2.730984038495525,
          -3.2836403888003676,
          -3.036266998871953,
          -3.494850021680094,
          -3.5882436869396193,
          -4.2576905717886175,
          -3.2699019227319654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.273926780100526,
          -3.4665710723863543,
          -7,
          -7,
          -3.359076226059263,
          -3.2658786595628224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.718383045380154,
          -3.1304945885234696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.741939077729199,
          -7,
          -7,
          -3.344883279369863,
          -7,
          -7,
          -4.211053762679936,
          -7,
          -7,
          -7,
          -7,
          -3.0737183503461227,
          -7,
          -7,
          -7,
          -7,
          -3.0421027680373025,
          -7,
          -7,
          -7,
          -3.1445312644921954,
          -4.606004956819436,
          -3.952657932409665,
          -4.208113361779008,
          -3.5855949989428377,
          -2.8444771757456815,
          -3.148251520587879,
          -3.351388266557641,
          -2.7778079684909334,
          -1.5602144349254363,
          -3.0015453793164784,
          -3.906889679198268,
          -3.2543385727441954,
          -2.2640044259790937,
          -2.4714411235207603,
          -3.195100974169237,
          -3.955516713520234,
          -4.429703842972572,
          -3.476138960843614,
          -4.129066569730805,
          -2.069225341615083,
          -3.137660652417374,
          -7,
          -2.427501565240489,
          -1.5637051692895014,
          -3.4054424135111656,
          -3.3285190875421873,
          -4.128743810173325,
          -2.8852607947341835,
          -3.15558638660026,
          -3.3772526682027864,
          -2.1784276781301344,
          -3.1321422390564218,
          -3.8283161051206496,
          -4.208677789064284,
          -3.3176884121580343,
          -2.9366407106078207,
          -3.2744102726836912,
          -2.6963982469295167,
          -4.128942873583301,
          -2.9714076440310557,
          -4.005743400045622,
          -2.1341678416523453,
          -3.094390492191114,
          -3.431979917800492,
          -3.046136452517971,
          -2.923751287842489,
          -2.738620998309552,
          -3.5467732675440056,
          -3.132083501905735,
          -3.2978907226198837,
          -2.902093586658964,
          -3.4366025516688135,
          -7,
          -2.017988155444865,
          -1.9803876107771008,
          -1.9558155390044483,
          -3.566560686427426,
          -3.011805906078602,
          -2.551418446956486,
          -3.0175737295678022,
          -3.5884851324781266,
          -3.512785755336107,
          -3.305190091553366,
          -3.296766824034295,
          -2.472579483682157,
          -2.0459426715578344,
          -3.7937903846908188,
          -4.606375990145637,
          -2.685862871168959,
          -3.8277783856132026,
          -2.391625376623903,
          -2.8290720873190467,
          -3.2839954155220514,
          -2.9785268191885237,
          -1.9647977618083874,
          -3.9074436091675,
          -2.600713913579715,
          -4.605644374489854,
          -3.528000246372667,
          -1.9968730702437054,
          -3.1368737583830857,
          -3.2455233963002588,
          -4.304743577061294,
          -2.158314785775445,
          -3.2563595605320663,
          -2.1639887869830687,
          -2.6833386019080185,
          -2.7196499416916193,
          -4.913713211514432,
          -1.4560171082838964,
          -2.8498460752365147,
          -2.2377025444158694,
          -4.062259568116916,
          -4.9068089508150585,
          -2.8205482309696888,
          -2.9787960558692133,
          -2.4849134365147463,
          -1.9934652019872776,
          -4.1298938896605275,
          -2.0228565485811445,
          -3.609103282832011,
          -4.429919077322681,
          -3.865475467938409,
          -1.711963179545754,
          -3.7029902775892602,
          -2.620849169351407,
          -3.5321490016041213,
          -2.1851235050982076,
          -1.1896707913600393,
          -3.9553028227616918,
          -3.65298190116631,
          -3.1951116328795712,
          -3.0423945674907595,
          -2.1811286997472954,
          -3.5487791761200076,
          -4.605870446185008,
          -2.689107926604332,
          -2.688435434839766,
          -2.59667967779885,
          -3.354156477915428,
          -2.5680228708926864,
          -2.068237413112108,
          -4.210569979246113,
          -3.5601308927828486,
          -3.733582420241032,
          -2.873065106554488,
          -2.612928276545454,
          -2.964296304500324,
          -2.7631128737566057,
          -3.953308577080214,
          -3.4325577715496496,
          -1.7869975967331273,
          -2.6831151336945074,
          -7,
          -3.730879133522473,
          -2.8904840522967077,
          -7,
          -7,
          -7,
          -3.8283859597808854,
          -4.304894259774213,
          -2.2786282035869205,
          -2.7188734226217175,
          -2.295525345561636,
          -2.999739345106568,
          -4.609033839731001,
          -3.3993770046747547,
          -4.305098674154982,
          -3.8289443929399845,
          -3.1711092027326977,
          -3.271552391372932,
          -2.684830322792156,
          -3.952690218761608,
          -3.431084868293215,
          -3.763903745309267,
          -1.6208364056491475,
          -4.907126395923902,
          -4.906776655259594,
          -3.190030257177831,
          -2.9431859207329296,
          -4.208699276558137,
          -2.9160602863599974,
          -3.2697304615080656,
          -2.792697052407104,
          -2.566667327261374,
          -3.0329102141076842,
          -2.4753527176327466,
          -3.0152695377626073,
          -2.8747877325973232,
          -1.5088703727105708,
          -3.0049336841470917,
          -4.907008053689199,
          -7,
          -3.4951225394659438,
          -3.732383036370039,
          -3.363848266340793,
          -4.004014894560444,
          -2.146396404002692,
          -4.130403464485783,
          -3.1100515916804685,
          -3.760901537179616,
          -2.6999957707115865,
          -1.056342497134873,
          -3.017776870761958,
          -2.498773307676647,
          -2.544099194062689,
          -3.1339059874977355,
          -3.1457387839091373,
          -2.943845409406475,
          -2.7310901918207264,
          -2.885462569191012,
          -2.6058382107163998,
          -2.2015687791366827,
          -3.236596215369598,
          -2.5783770650274622,
          -7,
          -2.6179747382228156,
          -2.500841492203123,
          -2.2148997304621423,
          -4.129765060307425,
          -2.289863258240586,
          -4.304845831746371,
          -2.7233897865240726,
          -3.8680403122108182,
          -2.9934149813944844,
          -3.794498771171323,
          -3.795264888190909,
          -2.573309383699704,
          -2.9913684958630995,
          -7,
          -2.3710096100045224,
          -2.015998849529744,
          -2.213668653242534,
          -7,
          -4.906948870476861,
          -4.130392742753647,
          -4.606322236836919,
          -3.565278829319486,
          -3.5108665907336367,
          -4.606483476807796,
          -3.35286826894075,
          -1.934960948015314,
          -2.695175888216613,
          -2.454746987678256,
          -2.4958183838393566,
          -7,
          -3.6533465346009417,
          -3.4778177118188656,
          -3.4800974781137644,
          -4.30496420183769,
          -3.703404237019068,
          -3.26232977621186,
          -3.4509919457327993,
          -3.381709524891006,
          -4.90666898605984,
          -7,
          -4.305603917792398,
          -3.6070527124106295,
          -4.906814333174154,
          -4.004418111778492,
          -3.2322229201632005,
          -1.793667057220101,
          -4.429714607223846,
          -4.0039126867384836,
          -7,
          -3.703919790261458,
          -3.2969539819037164,
          -3.37797547967795,
          -4.605730510917235,
          -3.2969860580130335,
          -3.14395622736422,
          -2.7670020593629587,
          -2.7644184954986453,
          -2.1031893747209938,
          -3.5714917891142703,
          -3.6767688987361744,
          -7,
          -1.8416242299086962,
          -2.456180161450073,
          -1.923022686459233,
          -3.796237995678362,
          -2.4653098077679445,
          -3.6318974796823285,
          -3.908195392671248,
          -3.235931180529099,
          -2.527256693606394,
          -2.6028442751136165,
          -2.30967921752499,
          -2.352828858482244,
          -3.020560949095022,
          -2.6833561560246784,
          -3.1312710469143954,
          -3.564994054850826,
          -2.8899949526860222,
          -2.288033978619537,
          -2.613594667752257,
          -7,
          -3.546494382010644,
          -3.1559110927700798,
          -4.209268308111116,
          -3.1000787963935963,
          -3.952582588252909,
          -2.410469509068616,
          -2.1350457803181566,
          -2.9152825534179025,
          -3.1703298305678302,
          -3.269258151320081,
          -1.8376804112458864,
          -0.9925761830444612,
          -3.1513913576935484,
          -2.574320700915308,
          -4.305405115437893,
          -3.3190633300866943,
          -2.700574187583653,
          -1.715591864279084,
          -1.884320592134371,
          -2.2764986103499605,
          -2.773609928133165,
          -3.2154154693070747,
          -3.136351439310171,
          -2.8511792446573097,
          -2.2303568408142413,
          -1.9280928192079896,
          -3.8654647044874704,
          -7,
          -7,
          -2.8503119910809573,
          -2.174021229582495,
          -3.528413157965513,
          -3.478154824288863,
          -3.1542350307644376,
          -4.130140705819276,
          -2.6939228573158918,
          -3.6534483627752867,
          -1.6779424612088802,
          -3.631139250256811,
          -3.170448411217117,
          -1.9273598326456884,
          -3.7960136258613275,
          -2.542521389545207,
          -2.322852258026174,
          -2.493914732519208,
          -4.910133278495993,
          -1.749062739249335,
          -2.1660295690974434,
          -2.309233676772654,
          -7,
          -3.2383504459244157,
          -3.7939568520276987,
          -2.1679751216076135,
          -2.345800201367372,
          -2.6446273432908463,
          -2.824607287041005,
          -4.062109025311936,
          -7,
          -2.46462799257641,
          -3.6777840263288324,
          -3.733598460961339,
          -3.631358311617795,
          -2.80588684968878,
          -3.8294377936566226,
          -1.2761911826202288,
          -4.906728207422946,
          -4.003858883484917,
          -2.0772479764810248,
          -2.8376853012019145,
          -3.6526286753910537,
          -3.382305275193315,
          -2.7136294231554277,
          -1.948028373420702,
          -3.261857385629898,
          -2.3490295119319136,
          -1.9504973603195637,
          -2.684044326406123,
          -3.779189213682492,
          -3.510129715427748,
          -2.4712818196355943,
          -2.3515394543670167,
          -2.2617433682586796,
          -3.1312079111287887,
          -2.5538419022196304,
          -2.182883525110022,
          -3.402457224691137,
          -2.7766536296320776,
          -4.146143545918482,
          -2.534285926849549,
          -2.787654051558582,
          -2.448595364081614,
          -2.2763438284791606,
          -3.5154721662623363,
          -2.8528922168871693,
          -3.180540019942531,
          -4.013179676320571,
          -2.135514407143608,
          -3.3036463463892605,
          -2.4621346471263537,
          -2.8806889746807043,
          -3.0412792182779183,
          -4.437681873346445,
          -3.050954749853564,
          -3.4807847825492697,
          -2.7964740671351396,
          -2.8422811813183144,
          -2.2706282102214805,
          -3.3541778267734723,
          -2.8194068259963245,
          -1.3313716618442355,
          -2.4359189840380653,
          -2.6476300090757197,
          -2.733334614498629,
          -3.372085742489799,
          -1.743560429664772,
          -2.4237999078399373,
          -2.907129476778215,
          -2.5882575453845966,
          -2.012415374762433,
          -1.7490204093596096,
          -4.913124790389559,
          -1.9880584847930771,
          -2.7042659439453036,
          -7,
          -3.188174892591544,
          -2.7159571753585046,
          -3.649964779534759,
          -4.007737112484662,
          -1.2089927449211242,
          -1.6347709985244734,
          -2.469803455512416,
          -4.063183187967576,
          -2.8758957414137782,
          -3.6298493584358824,
          -1.995999092965569,
          -4.458698268402751,
          -2.7663789840964386,
          -2.4098904000047168,
          -2.7939975497333496,
          -4.9072178201144485,
          -2.5700731177530822,
          -2.9578385224220214,
          -2.0056119598463003,
          -3.1542227520047104,
          -2.5481092893492856,
          -3.2470509203392064,
          -1.763978013763368,
          -2.3432052719514065,
          -3.4949729430284626,
          -1.4066223881833373,
          -2.1120992116084665,
          -3.1827102725665637,
          -2.071175331434878,
          -4.6078891006939875,
          -3.0670708560453703,
          -1.975059370771855,
          -2.99915229898292,
          -4.06268940309636,
          -4.907115638871369,
          -4.605660526371362,
          -4.6064995975128875,
          -3.8900804415092565,
          -1.9248511184664823,
          -2.654641898988549,
          -2.007424337771746,
          -4.004869271063189,
          -2.8882642901467257,
          -2.153616806044849,
          -3.254222215638808,
          -3.1511954337292214,
          -4.306065647659647,
          -2.624144869156648,
          -4.2083983548560875,
          -1.9809767626865695,
          -2.573638156762303,
          -3.654235385382136,
          -4.438779603357378,
          -2.2102621819656822,
          -3.2919763699421907,
          -2.480321244013076,
          -4.433881792287146,
          -4.432263590253666,
          -2.4455129265851774,
          -4.432434774521513,
          -3.733972576339301,
          -3.173223363367037,
          -2.602013009816451,
          -7,
          -2.6878710752582675,
          -7,
          -4.430725257445344,
          -3.123357926443381,
          -1.4629860836945814,
          -2.2779269716765342,
          -7,
          -3.964861744466946,
          -2.199974858252197,
          -4.211910420101903,
          -2.625653611314028,
          -7,
          -2.9531700326373262,
          -2.036197075021773,
          -7,
          -3.7036567197634023,
          -3.638389407665336,
          -2.85870218386402,
          -2.7638790808327,
          -3.6786950815004658,
          -3.2411648323430047,
          -3.0657077276443823,
          -4.307699231631596,
          -2.7731714320613046,
          -2.0908384551410677,
          -3.4133541437902304,
          -7,
          -2.562600654599416,
          -2.585157724841503,
          -4.137079689009317,
          -2.5585973864013347,
          -7,
          -4.305845581858454,
          -3.181128699747295,
          -3.1749104800117314,
          -1.5092546199558015,
          -2.74800982910615,
          -3.2913017193269773,
          -3.1721835050848726,
          -4.608622295084001,
          -3.639830003827776,
          -3.6787057884301517,
          -3.2722100098422344,
          -3.8294860310311734,
          -2.8734104429078826,
          -2.17589311462405,
          -3.7983743766815614,
          -4.20786585760749,
          -2.1706181828672553,
          -1.5394602992448396,
          -2.7850511532902402,
          -3.536321662293841,
          -2.3527629361796283,
          -3.4882999691020795,
          -3.0689073066358095,
          -3.278125892353155,
          -2.3839067705717834,
          -3.0890804641352507,
          -3.9123868126570245,
          -3.406194097216772,
          -3.952953800832277,
          -4.906857389645695,
          -3.004021960672549,
          -3.9654264492027846,
          -3.06481084382274,
          -3.3877247363085967,
          -2.1387837461092274,
          -3.136995216462121,
          -2.7876536516949577,
          -2.239857278674468,
          -3.2560008516550725,
          -2.6670224853340585,
          -7,
          -2.8157795753077126,
          -7,
          -2.5673875601601006,
          -2.7203699127714107,
          -3.3062769183480922,
          -7,
          -2.815827362700702,
          -2.7082391243246837,
          -2.0908341738705243,
          -3.5677052562909872,
          -4.607744456402258,
          -7,
          -4.003810454857046,
          -4.90760481522294,
          -4.907309225063157,
          -4.907894835416283,
          -2.879432926021307,
          -3.913442954859396,
          -3.437739995916121,
          -3.954767634541571,
          -3.9095613776624525,
          -3.5097937283256178,
          -3.3172756228920153,
          -3.5482612020793662,
          -4.3072338845509375,
          -2.7227551756750508,
          -3.0930447510064027,
          -2.3663547276041825,
          -3.17068649287322,
          -3.9738920729868967,
          -3.529419659434229,
          -4.207995007816801,
          -2.9348107061271715,
          -3.3904747828500743,
          -7,
          -2.2926173616597527,
          -3.089926509999768,
          -3.1099693811795874,
          -3.0183519664861995,
          -3.8394937596254946,
          -3.019605257246508,
          -3.6285932558512592,
          -3.652386032176815,
          -3.05240929690904,
          -3.8279290141975606,
          -2.9682365578051644,
          -2.8513115352333664,
          -4.007635777016201,
          -4.42953157865769,
          -2.844010944373043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.475235222604128,
          -1.811998408129183,
          -7,
          -7,
          -7,
          -3.772346159552627,
          -3.7867987283361098,
          -3.5282737771670436,
          -7,
          -7,
          -7,
          -7,
          -3.4235917150312236,
          -7,
          -7,
          -2.980717404970947,
          -3.0936095202736458,
          -3.209112703738592,
          -2.7505083948513462,
          -7,
          -2.83905884417379,
          -3.538070787043172,
          -3.4616485680634552,
          -3.28648525823423,
          -3.0327530302850567,
          -3.4184670209466006,
          -7,
          -7,
          -7,
          -3.439963935920905,
          -2.530967681571915,
          -7,
          -7,
          -3.4566696294237573,
          -4.033804060586124,
          -2.826884298707612,
          -7,
          -3.625621081424908,
          -7,
          -2.766818287765997,
          -3.45178643552429,
          -3.0312737784133907,
          -7,
          -3.531223374533027,
          -7,
          -2.017988155444865,
          -7,
          -2.398677682446071,
          -2.554568158545538,
          -7,
          -3.015918333597989,
          -2.6824158616773586,
          -3.1981069988734014,
          -7,
          -7,
          -7,
          -3.486005186362242,
          -2.981969534880924,
          -4.180383965589764,
          -7,
          -7,
          -2.9624640460579013,
          -7,
          -3.8736692927067944,
          -3.0246908623554307,
          -2.3026971550314443,
          -3.6774244377012475,
          -3.4786145875580035,
          -7,
          -2.5209367884596894,
          -7,
          -7,
          -2.502199442662362,
          -7,
          -2.9748186146454407,
          -7,
          -2.0653701812907017,
          -2.7081375105769228,
          -2.456534723937885,
          -3.745777217889759,
          -2.509090460794704,
          -7,
          -3.4871989986746286,
          -3.441145047559696,
          -3.194549028554895,
          -7,
          -7,
          -7,
          -7,
          -3.3500540935790304,
          -3.7712199019495336,
          -3.131779009369187,
          -7,
          -7,
          -7,
          -2.9204711793184543,
          -1.664973624661134,
          -2.707399831133249,
          -2.693433803801546,
          -3.2495652118253466,
          -2.3511472506797575,
          -1.9871475249918304,
          -7,
          -3.141763230275788,
          -2.9256987611930096,
          -7,
          -3.721365379435644,
          -3.2045269429998404,
          -7,
          -3.1489109931093564,
          -3.4449811120879446,
          -3.5021538928713607,
          -2.905256048748451,
          -3.024895960107485,
          -3.593706862849097,
          -7,
          -7,
          -7,
          -4.701934778738081,
          -1.9400443971589085,
          -3.6864575104691117,
          -2.784759894664005,
          -7,
          -7,
          -2.584489928729576,
          -2.7469799748172323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.10595276923698,
          -7,
          -3.735891524088347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7584071921878865,
          -7,
          -3.9430986230054854,
          -7,
          -2.6657372963937283,
          -3.189770956346874,
          -2.5559120279549328,
          -3.403120521175818,
          -7,
          -3.2986347831244354,
          -3.5518158223510157,
          -7,
          -7,
          -7,
          -3.659440781870318,
          -2.9482172935599706,
          -3.291590825658001,
          -3.2833464653560465,
          -2.8759867714284884,
          -7,
          -2.96886735287483,
          -2.6086788196761854,
          -3.399327532158679,
          -7,
          -7,
          -7,
          -3.4385423487861106,
          -3.404833716619938,
          -2.5392852461514552,
          -7,
          -4.325146068490752,
          -7,
          -3.8646297245455123,
          -2.302370605284778,
          -3.5046067706419537,
          -2.9883678201564354,
          -2.729091124272883,
          -3.0750600841196736,
          -2.9461573949223725,
          -7,
          -3.2919235758838847,
          -7,
          -2.964377500867108,
          -2.6541077536491158,
          -2.6848453616444123,
          -3.5244610342154497,
          -7,
          -3.439253724017898,
          -7,
          -4.381115080709851,
          -7,
          -3.1437328231386923,
          -7,
          -2.9876662649262746,
          -7,
          -7,
          -7,
          -7,
          -3.1811000797280484,
          -3.331832044436249,
          -7,
          -2.3254570185069516,
          -2.9783210084815113,
          -2.5997407193331936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.054740694376147,
          -2.865548114255671,
          -3.414945507688626,
          -4.9365472515628115,
          -7,
          -7,
          -3.1707016558160697,
          -3.5304558435846762,
          -7,
          -7,
          -7,
          -3.0974886866205247,
          -7,
          -7,
          -7,
          -7,
          -3.4387005329007363,
          -3.3930484664167784,
          -3.4174716932032934,
          -3.103461622094705,
          -2.8796886271593203,
          -7,
          -7,
          -7,
          -3.436162647040756,
          -7,
          -3.481442628502305,
          -7,
          -2.586727921309507,
          -7,
          -2.3606156856482254,
          -3.909181475977853,
          -2.2869869182805127,
          -7,
          -3.4114513421379375,
          -7,
          -2.731761389693246,
          -2.5707551531682618,
          -3.5178793826491708,
          -7,
          -4.029083320583757,
          -7,
          -7,
          -7,
          -7,
          -3.878579238062219,
          -3.048325250931222,
          -2.4429016775527446,
          -3.475525915039281,
          -3.2592354021987338,
          -7,
          -3.4192947217534604,
          -2.5413295776666938,
          -2.1554253525259224,
          -2.897352134344313,
          -7,
          -3.4437322414015967,
          -2.9428757745535403,
          -7,
          -2.9719712763997563,
          -3.3961993470957363,
          -2.7232503803830985,
          -2.605884933947498,
          -2.932980821923198,
          -2.9802761410778404,
          -3.0860037056183818,
          -3.46608164105026,
          -3.3920370982602477,
          -7,
          -3.6307735456752157,
          -7,
          -2.350801612394977,
          -2.993730069806455,
          -2.8965262174895554,
          -2.3882196509049214,
          -2.4874711044587197,
          -2.7967877457365438,
          -2.6962471460005455,
          -3.4313637641589874,
          -2.8601382850306134,
          -3.825285334408372,
          -2.370975449358971,
          -7,
          -7,
          -7,
          -3.28668096935493,
          -2.711596355290069,
          -7,
          -7,
          -3.3640817414110704,
          -3.440436766105774,
          -2.3359327413291835,
          -7,
          -3.149157506231856,
          -7,
          -3.220631019448092,
          -2.327041686668223,
          -7,
          -4.091074600463328,
          -3.6440773478650277,
          -4.168868798061637,
          -7,
          -2.0456444402979317,
          -3.7482329235510705,
          -2.7887664606630405,
          -7,
          -3.510813010512496,
          -7,
          -2.4819996714322374,
          -3.3080305542661055,
          -3.164887957547954,
          -2.714434547894349,
          -7,
          -7,
          -2.753199914199416,
          -7,
          -3.4823017672234426,
          -3.4945719842301988,
          -3.208306962353663,
          -7,
          -2.0936429684529205,
          -3.3902283624691303,
          -7,
          -3.470872305442661,
          -4.087667861923968,
          -7,
          -7,
          -4.252407994907512,
          -3.1298424755099536,
          -7,
          -3.408377781046953,
          -3.493675492344039,
          -4.061678615245337,
          -7,
          -4.34609858337099,
          -3.3201303014782138,
          -3.2502316216477674,
          -4.001831028855596,
          -4.368937374244523,
          -3.7376607990666866,
          -3.677617090195124,
          -4.107006346381544,
          -4.353531559077762,
          -7,
          -4.011288434183536,
          -4.0178260380304245,
          -3.9551824629011803,
          -3.8683799024767196,
          -7,
          -3.978235314045796,
          -7,
          -7,
          -4.788945727023748,
          -7,
          -3.850278552518037,
          -7,
          -4.2462523122993225,
          -7,
          -7,
          -7,
          -7,
          -4.2389238459924155,
          -4.635091498324376,
          -3.508664363052943,
          -4.211663292650559,
          -2.4462729199993634,
          -3.20960436635488,
          -3.8174992618677583,
          -7,
          -7,
          -3.749100187575694,
          -3.7734938922709707,
          -7,
          -4.171243635947135,
          -3.5918573057581438,
          -3.8534722294921817,
          -7,
          -3.6232049723732787,
          -7,
          -7,
          -7,
          -4.409053505010069,
          -7,
          -7,
          -2.2063387404607777,
          -3.283555448089596,
          -3.8329846728331125,
          -7,
          -7,
          -7,
          -4.010921547963273,
          -7,
          -3.9463590805881705,
          -7,
          -4.2682736719666154,
          -7,
          -4.362218500326052,
          -4.463892988985907,
          -3.797025044005262,
          -7,
          -3.9640945574951996,
          -7,
          -3.653866144211602,
          -4.038129830486775,
          -7,
          -3.674653294607066,
          -4.1874831179547645,
          -7,
          -3.6109465017556057,
          -7,
          -7,
          -3.6291648572073134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2935835134961167,
          -3.0323165027604055,
          -2.958664455093407,
          -7,
          -2.817014164406586,
          -3.535637657401434,
          -3.349374674204051,
          -3.6074550232146683,
          -7,
          -3.5809819659626774,
          -7,
          -3.5098675725188127,
          -3.089551882886454,
          -7,
          -7,
          -2.806575635021643,
          -7,
          -2.7427251313046983,
          -7,
          -7,
          -2.580327484580072,
          -7,
          -7,
          -7,
          -3.1288837020997735,
          -7,
          -3.789404420511141,
          -7,
          -7,
          -4.618309641123433,
          -2.696756854265414,
          -3.80197964291853,
          -7,
          -7,
          -2.948779613737823,
          -7,
          -2.915575698540003,
          -7,
          -3.262332413822626,
          -3.256017623739166,
          -7,
          -7,
          -7,
          -3.081587315813503,
          -3.0563330349511615,
          -7,
          -7,
          -3.224403557764839,
          -7,
          -2.9897834198968223,
          -3.290442730593008,
          -7,
          -7,
          -2.6607074090369185,
          -3.0258790832933666,
          -7,
          -4.205014792569004,
          -7,
          -7,
          -7,
          -3.619823500457278,
          -2.947210858187439,
          -2.649069208087953,
          -7,
          -2.7831886910752575,
          -7,
          -3.9585638832219674,
          -7,
          -3.901240302073309,
          -7,
          -3.1444704211395553,
          -2.6663099352901103,
          -7,
          -3.3951515915045425,
          -2.7690078709437738,
          -2.623444347433249,
          -3.3137969404949157,
          -7,
          -3.8700916316852,
          -7,
          -3.5726973849826984,
          -7,
          -3.1528317219727446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9196010237841112,
          -7,
          -7,
          -7,
          -3.350332833192728,
          -3.1408221801093106,
          -3.9172691302211917,
          -3.208663307762238,
          -7,
          -2.90444504107691,
          -7,
          -7,
          -7,
          -3.507653513464988,
          -3.522900459461583,
          -3.837967018368655,
          -7,
          -3.5829719291048057,
          -7,
          -3.127736334664101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4456042032735974,
          -7,
          -3.6062738531699883,
          -3.4619484952037616,
          -7,
          -7,
          -7,
          -3.1911714557285586,
          -7,
          -2.6083315007712975,
          -3.5660837841679958,
          -2.940721513523347,
          -3.5921212174658845,
          -7,
          -3.181986424480151,
          -7,
          -2.95784663370815,
          -2.865548114255671,
          -7,
          -3.1633299348401485,
          -3.490941205356787,
          -7,
          -3.254467510467076,
          -7,
          -7,
          -7,
          -3.1240148788874076,
          -3.1549309119861473,
          -7,
          -7,
          -2.7854484784978877,
          -7,
          -7,
          -3.4280267471363537,
          -7,
          -7,
          -3.8905886677054875,
          -2.4195702718432215,
          -3.256862005896403,
          -2.203717671851886,
          -7,
          -3.313023110323238,
          -2.7131861538560007,
          -3.2512905066731097,
          -3.5879914264312434,
          -3.054065601462962,
          -2.3669753615187523,
          -2.128656953740491,
          -1.8788528915152634,
          -7,
          -7,
          -7,
          -3.4147505757259213,
          -2.1940012589364937,
          -3.3312826522290138,
          -7,
          -2.4511648394432353,
          -2.244605096802466,
          -2.750970984437319,
          -3.127968207161918,
          -3.189321841020497,
          -2.127714993360055,
          -2.556754655396264,
          -3.6093809442507068,
          -3.263227077694896,
          -2.671481400086431,
          -3.594503043820089,
          -3.896415976473123,
          -3.91126417099837,
          -3.366982975977851,
          -2.9990761422791077,
          -2.735304676471507,
          -3.8908120989551245,
          -2.1433363127613307,
          -3.6076158432431322,
          -2.940021140721579,
          -3.0537367980540173,
          -3.2143669215966044,
          -2.207476504590846,
          -3.93444794894897,
          -2.2176719098008713,
          -3.6058973516449746,
          -2.927010868975651,
          -4.021313365484695,
          -2.3530451702840365,
          -7,
          -1.9803876107771008,
          -2.398677682446071,
          -7,
          -2.3494717992143856,
          -3.4344092075875,
          -2.236001620531879,
          -2.133626388374925,
          -3.9243309847086785,
          -3.627314639600881,
          -3.9290611240847655,
          -7,
          -1.4853873537867202,
          -2.494988973683168,
          -2.624441715528019,
          -3.4208355552872893,
          -3.893595333819883,
          -1.2571886216562271,
          -2.9349471026077483,
          -2.30085762238055,
          -2.5306516175798683,
          -3.595220566797657,
          -2.7432919531576356,
          -2.4708075407867027,
          -3.8948696567452528,
          -2.775928862409032,
          -7,
          -3.6030902178122184,
          -1.569963444838021,
          -2.2862599373472543,
          -2.906335041805091,
          -7,
          -3.15823321854707,
          -2.9648879044212895,
          -2.538615619757788,
          -2.8867323802739056,
          -2.6368220975871743,
          -7,
          -2.1186212285496846,
          -2.538346668680622,
          -1.675676526064217,
          -3.4163075870598827,
          -7,
          -2.9562121023022296,
          -2.8115750058705933,
          -2.7310064508026852,
          -2.9323176278852854,
          -3.9005855866499615,
          -2.8246545438441633,
          -3.922829219666649,
          -3.5887757562041043,
          -3.4116758127370184,
          -2.116349422072715,
          -3.8920946026904804,
          -1.2840726750039217,
          -2.1907317852385715,
          -1.4940429030218751,
          -1.603860921753666,
          -3.2165353574183575,
          -3.9040118835973883,
          -3.333144876098619,
          -3.942504106168081,
          -2.409628287195821,
          -7,
          -7,
          -3.499228724283611,
          -3.2555539010842085,
          -2.8592509109297795,
          -2.9725628006722813,
          -2.883191355841693,
          -2.876489529359904,
          -3.9154526016884788,
          -4.153418485037711,
          -3.616685520895512,
          -3.24638367287559,
          -2.3409522994077023,
          -2.539551943185312,
          -2.408355617830904,
          -3.8958643512472992,
          -3.2200557602513413,
          -1.54629684561895,
          -1.6075436366575189,
          -7,
          -2.5077434620971957,
          -3.1433555124697157,
          -7,
          -7,
          -7,
          -3.2939699210682645,
          -3.5879914264312434,
          -3.0786501170358553,
          -2.8712981525680923,
          -2.312811826212088,
          -2.5635170413891246,
          -7,
          -3.5704845630444004,
          -3.891258616904139,
          -3.299670700401256,
          -3.3368098301850244,
          -7,
          -2.500467261899649,
          -7,
          -3.6036855496146996,
          -3.443888546777372,
          -2.4756089342953334,
          -3.044819643421949,
          -7,
          -3.265525335219074,
          -2.7127487086906523,
          -2.9927743642553555,
          -2.6214235880182097,
          -7,
          -2.688864568054792,
          -2.604000925049828,
          -2.704960368025206,
          -2.292374230650336,
          -2.287558332243026,
          -2.3655414661398932,
          -2.591387589127392,
          -3.4310419453358856,
          -7,
          -7,
          -3.0773679052841567,
          -3.4285667129921897,
          -3.601299310194338,
          -7,
          -2.3858296186697827,
          -3.00189589410742,
          -3.098478908174888,
          -3.8910354153153106,
          -2.3550507749542025,
          -2.1482126228724607,
          -3.9262909868848634,
          -3.236177239515077,
          -2.1328286964672105,
          -2.990092082531457,
          -2.83803909146875,
          -2.870598962314376,
          -2.919648531795087,
          -3.091968272003171,
          -3.0472748673841794,
          -2.2739305691109637,
          -3.434196187604368,
          -3.173259130501515,
          -7,
          -2.368273406913709,
          -2.852714531894921,
          -2.9343053225262477,
          -7,
          -2.2405950430295083,
          -7,
          -2.9380190974762104,
          -3.915030290259161,
          -2.8039933118331355,
          -3.205961823059634,
          -3.611882555512116,
          -2.6595087306276968,
          -3.2008960765643213,
          -7,
          -1.9879579579819235,
          -4.000332831533668,
          -2.6390637006428417,
          -7,
          -7,
          -3.4282968139828798,
          -3.415696569589914,
          -3.597695185925512,
          -3.60916737430202,
          -7,
          -3.61394747678035,
          -3.1474795756131133,
          -2.3180239378128364,
          -3.47379967461323,
          -3.7060703356373064,
          -7,
          -3.9076800242424197,
          -2.799022268397267,
          -3.6351317452471763,
          -7,
          -3.196949540973997,
          -3.372681913172988,
          -1.8824997897153146,
          -3.651859269246949,
          -7,
          -7,
          -7,
          -3.9024924211586036,
          -3.887335930399167,
          -3.594171479114912,
          -2.362114994039135,
          -2.9044266957089535,
          -7,
          -3.8900855267163252,
          -7,
          -7,
          -3.075442676488223,
          -3.616528025161455,
          -3.8868853589860084,
          -3.92147838037569,
          -3.7824009524965296,
          -2.4029774493636515,
          -2.4235080103454925,
          -2.4664258793434404,
          -3.4811080594687196,
          -3.5921767573958667,
          -7,
          -1.7195311864510827,
          -2.4630994157880113,
          -1.725330154414223,
          -3.320198232105004,
          -3.2631328475801404,
          -2.88530980902442,
          -2.8221680793680175,
          -2.9497693741580635,
          -2.0587409756789365,
          -2.707774501898884,
          -1.761791203377117,
          -1.802540912426264,
          -2.8728613710631836,
          -2.0718820073061255,
          -2.964992528483926,
          -3.895919545310016,
          -2.9864233630365042,
          -2.625226681339216,
          -2.4402091713868916,
          -7,
          -3.125535481352859,
          -2.618097926840299,
          -3.902438056198665,
          -2.722198248380669,
          -7,
          -2.045183221912755,
          -2.583254084014788,
          -3.092670527035679,
          -3.097560966637652,
          -3.1709458747292723,
          -3.235138879593742,
          -2.282836990837962,
          -3.898231384513097,
          -3.0627290946508094,
          -3.593286067020457,
          -2.969674713673781,
          -2.50121580704486,
          -3.2640145799809783,
          -3.1711145276118584,
          -2.621176281775035,
          -2.87102128558996,
          -2.9229612441339685,
          -2.6636189984922343,
          -1.613448351138622,
          -3.367338047406574,
          -1.2968601159748139,
          -3.1894903136993675,
          -7,
          -7,
          -2.5549263974668683,
          -2.1226591047698764,
          -3.6072405038317426,
          -3.315182866579504,
          -2.447246653826335,
          -2.822712785926196,
          -1.3395573674054908,
          -2.702968762418371,
          -2.640836223757495,
          -7,
          -2.4111603780707003,
          -2.5250829348172044,
          -3.619249898968967,
          -2.9686697017203922,
          -2.1792825146142656,
          -3.4034992663875285,
          -7,
          -2.873837081117421,
          -3.315208165872914,
          -2.116009679424738,
          -7,
          -3.082939166392626,
          -7,
          -3.0760332934499632,
          -2.8241583885046158,
          -2.274927193099776,
          -2.555931150182966,
          -3.8920946026904804,
          -7,
          -2.3239691276496446,
          -3.301301344927356,
          -3.3156030329994124,
          -2.665476756172402,
          -2.7052313618495294,
          -7,
          -1.5792468110427222,
          -3.5852914908954987,
          -3.287129620719111,
          -3.270641576038564,
          -4.8223969393404404,
          -7,
          -7,
          -3.991831302545872,
          -3.343464864143649,
          -3.8703453710809597,
          -2.9316838303621062,
          -2.5231115907773183,
          -3.7472823030451763,
          -7,
          -7,
          -3.696130590122991,
          -4.074145715443282,
          -3.1652922028417336,
          -4.456791008541905,
          -3.69446160677425,
          -3.5114297398081336,
          -7,
          -4.444247835796075,
          -7,
          -4.196554403859942,
          -4.416357541374134,
          -2.9818817925949124,
          -3.124678081714868,
          -4.457457987982031,
          -3.944457995626289,
          -4.3545501955078825,
          -7,
          -3.0455511516724045,
          -4.3361794534374445,
          -3.697570111966399,
          -3.975232615453934,
          -4.359323129976207,
          -7,
          -7,
          -7,
          -3.510337805729326,
          -4.353685468703508,
          -2.3171222847962842,
          -7,
          -3.2274528359297285,
          -3.367809356499877,
          -3.0955470872642685,
          -2.655507827095201,
          -2.7736493354356497,
          -3.3770784782188477,
          -2.6894426659813675,
          -2.72670174542351,
          -3.5397450161093125,
          -3.639710551318162,
          -2.496215485540377,
          -2.7191812866158296,
          -7,
          -2.6686628982503926,
          -2.8200136970607947,
          -3.8961402514420196,
          -2.953534192980002,
          -3.8876876143457504,
          -7,
          -7,
          -3.1896760533932764,
          -2.7278653418997396,
          -4.482131758974784,
          -3.9030899869919438,
          -2.804999776617182,
          -7,
          -3.688032522105424,
          -7,
          -4.417614496970858,
          -3.2418859234519886,
          -4.376394442037267,
          -7,
          -3.974127735076475,
          -3.9337023571451573,
          -3.5307630187585595,
          -4.052924683707729,
          -2.3974222428995087,
          -3.3572358579987425,
          -2.9813705460996927,
          -2.7521975657445132,
          -7,
          -2.464702931034069,
          -3.9481683617271317,
          -3.338177499296536,
          -3.6623819098923875,
          -7,
          -2.599649182211521,
          -2.8272327153437096,
          -3.732731413127401,
          -7,
          -3.8904769089601707,
          -7,
          -7,
          -7,
          -2.0426826637480007,
          -2.313500417575471,
          -1.3489325701049661,
          -7,
          -3.662190990859007,
          -2.210928431339089,
          -3.3851592385800426,
          -2.2917371727664304,
          -3.6000467200622737,
          -2.349771556978745,
          -7,
          -2.513954995368114,
          -2.3122543112520475,
          -3.1378286637565806,
          -7,
          -4.3151933756957135,
          -3.27263051589404,
          -2.554727707734111,
          -7,
          -7,
          -3.168202746842631,
          -7,
          -7,
          -2.464374148443393,
          -2.3697516927426494,
          -3.8861521819707967,
          -2.6745384205386324,
          -7,
          -3.898231384513097,
          -3.9709044981537835,
          -2.8347054240009544,
          -3.128405604667181,
          -7,
          -3.700919945420287,
          -1.5631994287047477,
          -7,
          -2.066499279114226,
          -7,
          -2.743999441724611,
          -1.6921632174908048,
          -7,
          -7,
          -3.9864582127373063,
          -2.530347492821457,
          -2.738275942048923,
          -3.912806392661292,
          -3.1762842359448387,
          -2.4691615691918494,
          -7,
          -2.2242548193822347,
          -1.888069214244454,
          -4.05952555273869,
          -7,
          -1.8971308019513333,
          -2.226142380929929,
          -7,
          -2.4215627985510446,
          -7,
          -3.898944466866509,
          -7,
          -2.508599367673529,
          -1.8890652399519134,
          -2.4128265592104112,
          -3.4471192533180046,
          -3.6480182966516828,
          -7,
          -7,
          -3.435578953471198,
          -3.819774182176816,
          -3.6063813651106047,
          -2.4530865803521715,
          -1.9312165724204984,
          -7,
          -3.888010912245029,
          -1.9156636035057732,
          -1.4321668029911794,
          -2.3134070001050655,
          -3.077958071921229,
          -2.0569209253036416,
          -3.162564406523019,
          -2.957538878068554,
          -3.461798557525109,
          -2.238825325284622,
          -3.4722077512253953,
          -3.4659278562887446,
          -3.6345276494290326,
          -3.8922059459757725,
          -7,
          -4.479676062868145,
          -7,
          -2.4457079649469864,
          -4.0050088206723675,
          -2.137976018001224,
          -3.495636829183877,
          -3.014960330675915,
          -2.7754309567465465,
          -3.031959017228676,
          -2.0409537821578545,
          -7,
          -2.244834763479088,
          -7,
          -2.2849568326149767,
          -1.9324886865786444,
          -7,
          -7,
          -2.7007517771773712,
          -2.4983105537896004,
          -2.2928847904644725,
          -3.4456560872091355,
          -7,
          -7,
          -3.8890214220952246,
          -7,
          -3.591342911734455,
          -7,
          -2.7524006087838484,
          -3.9529860651970554,
          -2.966798546383361,
          -7,
          -7,
          -3.2971036501492565,
          -3.207742052606945,
          -3.319366349687303,
          -3.6117763969973113,
          -2.5707673930792567,
          -2.908241238641037,
          -2.783427117917317,
          -3.1154773741864688,
          -7,
          -3.918344928962275,
          -7,
          -3.7281913985899466,
          -3.4356320489516605,
          -7,
          -2.9155682164446812,
          -2.878730641132499,
          -2.87684740506319,
          -3.327522402716821,
          -7,
          -2.991757539534348,
          -3.8948696567452528,
          -3.295567099962479,
          -3.075501339828131,
          -3.4143046881283317,
          -3.0707764628434346,
          -2.7444885672205115,
          -7,
          -7,
          -3.3176455432211585,
          -7,
          -3.7740057302582093,
          -7,
          -7,
          -3.257138370205915,
          -3.539828558377898,
          -3.7884512070234555,
          -3.807940721215499,
          -3.326860815038242,
          -3.3298045221640695,
          -3.296592070557359,
          -2.7866094726486597,
          -3.2119826034646293,
          -2.832169487537022,
          -3.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -3.1807310305665903,
          -3.2756732529227346,
          -7,
          -2.9640881248211763,
          -2.7321946654332323,
          -7,
          -3.7967130632808965,
          -7,
          -3.1015752462559334,
          -2.934309037350079,
          -3.1992064791616577,
          -2.6941911513458114,
          -2.9787672693102545,
          -7,
          -7,
          -3.2001662463631075,
          -2.9719712763997563,
          -3.1894201246920386,
          -3.455200277269631,
          -7,
          -3.5903401790321667,
          -7,
          -3.2440175106997633,
          -3.486288760960566,
          -3.8058405488146727,
          -2.7690363017304622,
          -3.053398601612112,
          -3.6940345384921605,
          -7,
          -2.743313739231126,
          -3.09377178149873,
          -3.3574901660030245,
          -3.8611160441613954,
          -1.9558155390044483,
          -2.554568158545538,
          -2.3494717992143856,
          -7,
          -3.5020855592260456,
          -3.3391863447122776,
          -3.9175055095525466,
          -3.819346484080453,
          -3.5234212743726316,
          -3.2229114697957306,
          -3.1806992012960347,
          -3.2105191640810844,
          -2.8166673341789954,
          -3.527900445194766,
          -7,
          -7,
          -3.2054750367408906,
          -3.4740705032150436,
          -2.8062997077939285,
          -3.036273934588904,
          -3.3059958827708047,
          -3.4363217001397333,
          -3.1692803856500626,
          -7,
          -2.7432297012106934,
          -3.769894035812169,
          -2.947643745820492,
          -2.7154684981461377,
          -3.2766341090681457,
          -7,
          -3.771954748963949,
          -3.072564984313118,
          -7,
          -2.678670097637955,
          -3.255272505103306,
          -3.0867156639448825,
          -7,
          -2.500377449850352,
          -3.4751867549424627,
          -2.621613527703641,
          -7,
          -7,
          -3.212347437988012,
          -7,
          -3.421329664478712,
          -2.928209579690314,
          -7,
          -2.930173564447874,
          -3.3400473176613934,
          -3.4738517701548153,
          -7,
          -2.5803985580573445,
          -7,
          -2.6167794385312413,
          -3.844725627973226,
          -2.6459578843998024,
          -1.9677140053553632,
          -3.50745106090197,
          -7,
          -3.054740694376147,
          -2.88711696101553,
          -3.0105631211209922,
          -3.1229363730163042,
          -7,
          -3.18537214331104,
          -2.9540011676815703,
          -3.2124983379352106,
          -3.2210880684827314,
          -3.0539103642070833,
          -3.2143557591509637,
          -7,
          -4.094575933649249,
          -7,
          -3.8133140589458345,
          -2.686189234244024,
          -2.917977882592908,
          -3.2013515984037575,
          -3.782759192623997,
          -3.511950170375499,
          -2.611157764534064,
          -2.813272978284428,
          -7,
          -7,
          -3.5055418728569445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5103841306041415,
          -3.0354297381845483,
          -3.040074643230312,
          -4.014478535326206,
          -3.814180981040187,
          -3.4173720348523213,
          -7,
          -3.7907776013376937,
          -2.9923009843277657,
          -3.382145741488806,
          -2.7049008715552314,
          -2.9284690089118017,
          -2.948412965778601,
          -3.815378484965918,
          -1.881720746685466,
          -7,
          -7,
          -3.3929899006447384,
          -7,
          -7,
          -3.545121480864834,
          -7,
          -2.1114167805966386,
          -2.4625643623836195,
          -2.3716636023951976,
          -2.859138297294531,
          -2.90242597417221,
          -3.2026926108224982,
          -2.5037649664957558,
          -3.497758718287268,
          -7,
          -7,
          -3.5166014715265344,
          -7,
          -2.7900035203904894,
          -7,
          -2.9110008520221933,
          -7,
          -3.691488176316267,
          -3.475307913956194,
          -3.730741911850021,
          -2.47004146364061,
          -3.3444577731923464,
          -3.312092690393716,
          -3.2716557723522754,
          -7,
          -3.1962314704428745,
          -3.852845818014997,
          -3.2643455070500926,
          -2.881004030556986,
          -2.737681850846472,
          -2.6875289612146345,
          -3.103461622094705,
          -3.528402437953617,
          -7,
          -3.6824158616773586,
          -3.0281644194244697,
          -2.794345434221981,
          -7,
          -2.9839268369509955,
          -3.773347541980823,
          -2.9703081258859316,
          -3.807467375684278,
          -3.5523639817866846,
          -3.795045370421125,
          -7,
          -2.786120180054919,
          -3.4111144185509046,
          -7,
          -2.693067093924229,
          -3.127767925909508,
          -2.924486043733915,
          -7,
          -3.472317546316842,
          -3.4942241869169015,
          -3.7790912038454993,
          -3.78660947264866,
          -3.801403710017355,
          -7,
          -3.506369717095504,
          -2.7190123982977616,
          -2.854492895404868,
          -3.501470072100412,
          -3.969298569092522,
          -7,
          -3.3206308739310484,
          -3.329058719264225,
          -3.8344842853348053,
          -7,
          -3.4822302372089675,
          -3.280521462226489,
          -3.25478968739721,
          -3.0096936540397285,
          -7,
          -3.7702627381705933,
          -7,
          -3.7913397039651393,
          -7,
          -3.782042416620554,
          -3.3829770749788555,
          -2.9386740080093743,
          -7,
          -7,
          -7,
          -3.7902147702439795,
          -3.115810141409786,
          -3.5096728652831355,
          -7,
          -3.514547752660286,
          -3.712397131406715,
          -3.265112759850687,
          -3.020511948557945,
          -2.4759252997015397,
          -3.8623103099542706,
          -3.7794521834040617,
          -7,
          -2.6376564772518996,
          -3.0993928573323,
          -2.907608762375779,
          -7,
          -3.4761601726982754,
          -7,
          -3.79140991566716,
          -2.793161529245551,
          -3.0383078526301324,
          -3.5641134764517686,
          -2.933963422726495,
          -2.549820373239367,
          -3.7926717891415676,
          -7,
          -3.336526440627234,
          -3.782830805202592,
          -2.839917775678681,
          -3.0769003912940143,
          -3.4357382204426927,
          -7,
          -7,
          -3.1426397078324166,
          -7,
          -3.555880064636805,
          -3.7729814503449637,
          -2.8051042162920505,
          -2.4435133193234853,
          -3.3597722616567713,
          -2.872685900230887,
          -3.2488311928079616,
          -2.946822886713244,
          -1.9949700168263695,
          -3.308422115236931,
          -2.962421955102072,
          -7,
          -3.342488478031923,
          -3.067675172788824,
          -2.4181236536533914,
          -2.683347276399375,
          -2.733598460961339,
          -2.720647844820754,
          -3.171433900943008,
          -3.247138226100887,
          -2.8115191516512503,
          -3.4319465336406454,
          -2.879568085413838,
          -7,
          -7,
          -7,
          -3.203071758751761,
          -2.504244254358882,
          -3.7989267385772014,
          -7,
          -3.42932153909737,
          -7,
          -3.101689805602919,
          -7,
          -2.0083471601136877,
          -7,
          -3.8302678009336417,
          -2.9838517189914717,
          -7,
          -3.633547003033476,
          -3.6302098739419373,
          -3.6555697303870756,
          -7,
          -2.6859655440604007,
          -3.277063583379518,
          -2.465077655032553,
          -7,
          -7,
          -7,
          -2.670538800459197,
          -2.7001391361209706,
          -2.854427505787861,
          -2.8796692056320534,
          -7,
          -7,
          -2.947161317385927,
          -3.4917117901707675,
          -3.333850145102545,
          -3.214578953570499,
          -3.0409976924234905,
          -3.797198269838959,
          -2.100063531414098,
          -7,
          -7,
          -3.806693456192453,
          -4.810440875574879,
          -4.382575319649486,
          -3.986592606822211,
          -3.978317496746751,
          -3.0829348950147435,
          -4.115144351793107,
          -3.023742247079222,
          -3.4051488504672323,
          -3.697839368218363,
          -7,
          -4.408680821810468,
          -3.8589355191353056,
          -4.020978304790254,
          -3.598034034702018,
          -7,
          -3.545059584694003,
          -3.5882034813125916,
          -7,
          -7,
          -3.664312839896641,
          -3.920379025396492,
          -3.6861176659198964,
          -3.6936060505361743,
          -3.259928190374753,
          -4.429235339626655,
          -3.8623954891178243,
          -4.318459865188351,
          -7,
          -3.4698688556921424,
          -7,
          -3.5482747377831885,
          -2.9176859904596166,
          -3.000599326273475,
          -7,
          -2.82910575870157,
          -3.512183922360945,
          -3.7511379096597075,
          -3.715334683792313,
          -3.43763866489855,
          -3.3464181789371965,
          -4.417322197099729,
          -3.5295194685658156,
          -3.818522802003136,
          -3.699230502883409,
          -3.649707970928423,
          -7,
          -3.0636742407951223,
          -3.7078255683322316,
          -3.1556396337597765,
          -3.176958980586908,
          -2.831310315348419,
          -2.338021768462477,
          -7,
          -3.3400473176613934,
          -7,
          -7,
          -4.0682600937746995,
          -4.162639072470405,
          -7,
          -3.3470045791968865,
          -3.3616564967654905,
          -3.0782651004780597,
          -3.91859170736518,
          -7,
          -2.8099382947684113,
          -3.3205616801952367,
          -2.59874036491712,
          -7,
          -3.581906175240146,
          -7,
          -3.111064738491977,
          -7,
          -7,
          -3.9102641218577268,
          -3.8659983698441036,
          -3.6762362167633116,
          -3.6404019249815684,
          -7,
          -4.02418282850698,
          -3.44442916986232,
          -3.5147469246343817,
          -3.0660648974596776,
          -2.7010814773381697,
          -3.9588981947107715,
          -3.8666398160622153,
          -7,
          -3.4952667443878105,
          -3.5836804262469997,
          -4.401831174908948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.908622155975595,
          -3.287129620719111,
          -2.9543683736575375,
          -7,
          -7,
          -3.058077892589143,
          -3.898286278589123,
          -3.2720157538950723,
          -3.488480208426273,
          -3.198264238006873,
          -7,
          -2.951861342460453,
          -3.0269416279590295,
          -7,
          -7,
          -3.5763643890897483,
          -3.5780085095732557,
          -2.7238875480472107,
          -7,
          -7,
          -4.05952555273869,
          -7,
          -3.5147469246343817,
          -3.862548769524793,
          -3.2464493382670443,
          -7,
          -3.498255401782173,
          -7,
          -7,
          -4.175705047841342,
          -2.916329870639243,
          -3.333291224196901,
          -7,
          -3.916085299843703,
          -2.8478193472952396,
          -7,
          -3.321339474830754,
          -7,
          -3.550105999347593,
          -2.9348910465273987,
          -7,
          -7,
          -7,
          -3.8489892062511672,
          -4.011993114659257,
          -7,
          -7,
          -3.8321255425340093,
          -7,
          -3.8664054983780547,
          -2.975718945367262,
          -3.8478193472952396,
          -7,
          -2.909701871683438,
          -3.6410773133253747,
          -7,
          -3.386008212064673,
          -7,
          -7,
          -4.125513795904115,
          -3.8811563210755637,
          -2.9660386578756874,
          -3.222924466593083,
          -3.9731740526829724,
          -7,
          -7,
          -7,
          -3.8047526021504607,
          -3.5798216909532146,
          -7,
          -7,
          -2.9926639550817846,
          -7,
          -7,
          -2.98781517440207,
          -2.689969920318199,
          -7,
          -7,
          -3.4094089499748597,
          -7,
          -3.4358443659844413,
          -3.8380931384455983,
          -3.2562097835226953,
          -4.002900068611387,
          -7,
          -7,
          -7,
          -7,
          -4.452905258057521,
          -7,
          -7,
          -3.919705534549121,
          -3.251682454964639,
          -3.2779528470388093,
          -4.300421557383072,
          -2.9361927798732688,
          -4.0024252646779015,
          -3.1385132141577534,
          -7,
          -3.383456296524753,
          -7,
          -3.039722488755794,
          -3.527372082827612,
          -7,
          -7,
          -3.560205622970059,
          -3.8294967497201826,
          -3.1588792018312803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8555191556678,
          -3.572639297042813,
          -3.801815168581437,
          -7,
          -3.3100557377508917,
          -7,
          -3.5148796552227934,
          -3.8047526021504607,
          -2.897901874268228,
          -3.5513889972730204,
          -2.6925849445879813,
          -3.5742628297070267,
          -7,
          -3.510545010206612,
          -3.7742979384992776,
          -3.647969458362972,
          -3.5036545192429593,
          -7,
          -2.89483434203002,
          -3.5141491344754376,
          -3.3355247615134567,
          -2.7986999606649783,
          -3.912062555588502,
          -3.4271614029259654,
          -3.781468142841798,
          -7,
          -2.932980821923198,
          -7,
          -3.522009286567709,
          -2.8092535500248417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7279124987113805,
          -3.7259116322950483,
          -7,
          -7,
          -3.59728372736143,
          -3.7384634394619525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4380872482554214,
          -3.8945929479229555,
          -7,
          -7,
          -4.191804864059126,
          -7,
          -7,
          -7,
          -3.3459615418131414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3830969299490943,
          -7,
          -3.779938246821107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5219222448835,
          -7,
          -7,
          -3.566560686427426,
          -7,
          -3.4344092075875,
          -3.5020855592260456,
          -7,
          -7,
          -2.984227178928321,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8506462351830666,
          -7,
          -7,
          -7,
          -7,
          -3.4424797690644486,
          -7,
          -7,
          -2.7506626461340558,
          -3.482135929640315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.08290499419323,
          -7,
          -7,
          -3.5144915594308066,
          -7,
          -3.3260489679467407,
          -7,
          -7,
          -3.4452927694259716,
          -7,
          -7,
          -7,
          -7,
          -3.375511203191852,
          -7,
          -7,
          -7,
          -3.377397326769886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.159266331093494,
          -7,
          -4.387336426193337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6761523091270663,
          -7,
          -7,
          -7,
          -4.994550297854503,
          -7,
          -7,
          -3.620760489994206,
          -7,
          -7,
          -4.302633919813779,
          -7,
          -7,
          -7,
          -3.893299303828851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.218535505216528,
          -7,
          -3.4095386431415404,
          -7,
          -7,
          -7,
          -4.061226225119115,
          -3.834929096460576,
          -7,
          -7,
          -7,
          -4.543509306465027,
          -7,
          -7,
          -3.3109056293761414,
          -3.2119210843085093,
          -7,
          -3.216429830876251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8726683492477125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6384892569546374,
          -4.283482147048971,
          -7,
          -3.731427587050948,
          -4.2075593565504725,
          -7,
          -7,
          -3.599992177584098,
          -7,
          -7,
          -7,
          -7,
          -3.1720188094245563,
          -7,
          -3.1664301138432824,
          -7,
          -7,
          -7,
          -3.2582540535071485,
          -3.323870606540509,
          -3.0014583573925644,
          -7,
          -4.079434510633743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.752893154884594,
          -7,
          -7,
          -7,
          -7,
          -3.860996436757196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8348338181358885,
          -4.482607950809717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2612628687924934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7909181952145783,
          -7,
          -7,
          -7,
          -7,
          -4.317958924700952,
          -7,
          -3.6324446377322426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.449092531119419,
          -3.489349009009622,
          -7,
          -7,
          -7,
          -3.0576661039098294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1760912590556813,
          -7,
          -7,
          -5.132320537739833,
          -3.297267958549692,
          -7,
          -3.9876439241005333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3970931134746,
          -3.8774865280696016,
          -7,
          -7,
          -7,
          -3.4631461367263494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7095243558763413,
          -7,
          -7,
          -7,
          -7,
          -3.9546102975982214,
          -3.787247880331954,
          -4.383982637289572,
          -7,
          -7,
          -4.417085389641193,
          -3.7841178164629232,
          -7,
          -7,
          -7,
          -7,
          -3.4913616938342726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5048105531506915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.306489362708483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.388158061282813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.769957264165465,
          -7,
          -4.671274690884761,
          -7,
          -3.414639146737009,
          -7,
          -3.853617103459214,
          -3.3729120029701067,
          -3.956913696991375,
          -7,
          -7,
          -7,
          -4.185036647576167,
          -4.380482590974981,
          -7,
          -7,
          -7,
          -7,
          -2.8459932798880287,
          -4.37500481553064,
          -7,
          -7,
          -4.992102642595412,
          -4.3741319181946805,
          -5.706524055741483,
          -7,
          -7,
          -7,
          -4.6550038979849875,
          -7,
          -4.502449312138587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.78353913333115,
          -7,
          -3.7397568869831948,
          -7,
          -7,
          -7,
          -7,
          -4.643092259961168,
          -4.655455392526795,
          -7,
          -7,
          -7,
          -7,
          -4.60916737430202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.37675939540488,
          -3.34143452457814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.793877653752079,
          -4.78864908260037,
          -7,
          -7,
          -3.4648371618111513,
          -7,
          -7,
          -7,
          -7,
          -3.407949045697151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.296445794206396,
          -3.9906495883188544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.17140463483013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.809425028797034,
          -7,
          -7,
          -3.4993433592273684,
          -3.786386315371722,
          -3.6282867310895144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.053577787125283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8363241157067516,
          -2.7671558660821804,
          -7,
          -7,
          -3.843733671089443,
          -7,
          -2.885361220031512,
          -2.9827233876685453,
          -3.426484151000204,
          -3.044069150468914,
          -2.7363965022766426,
          -3.1142772965615864,
          -7,
          -7,
          -7,
          -2.812579155409047,
          -3.6042800664521044,
          -7,
          -3.696531119969607,
          -3.3678100152186308,
          -7,
          -2.734399742520567,
          -2.8813846567705728,
          -2.682686478249768,
          -2.6309361190641916,
          -7,
          -3.63724832231457,
          -7,
          -7,
          -7,
          -7,
          -3.3690302218091532,
          -7,
          -3.228400358703005,
          -7,
          -2.7170044070405472,
          -7,
          -3.9382100298607625,
          -7,
          -7,
          -3.395675785269936,
          -7,
          -3.372175286115064,
          -7,
          -7,
          -7,
          -3.220631019448092,
          -3.3197304943302246,
          -3.011805906078602,
          -3.015918333597989,
          -2.236001620531879,
          -3.3391863447122776,
          -7,
          -7,
          -1.768826650627394,
          -7,
          -7,
          -7,
          -7,
          -2.420945405921972,
          -3.605305046141109,
          -4.154758619154177,
          -7,
          -7,
          -2.9783327140589657,
          -7,
          -3.4577305482459986,
          -3.3638938977741004,
          -7,
          -2.7007037171450192,
          -3.176549710043248,
          -7,
          -3.113943352306837,
          -7,
          -7,
          -2.747689188289225,
          -2.775974331129369,
          -3.0409976924234905,
          -7,
          -3.4927603890268375,
          -3.1264561134318045,
          -2.690955115144948,
          -3.5835388192543522,
          -2.731387283168788,
          -7,
          -3.296328397315685,
          -2.878636673026517,
          -2.828055394305438,
          -7,
          -7,
          -3.4750898033890065,
          -3.3261309567107946,
          -7,
          -3.318793504793297,
          -2.989004615698537,
          -3.8588679053701154,
          -3.1439511164239637,
          -7,
          -7,
          -3.143014800254095,
          -7,
          -2.832029647089928,
          -3.2598326990634834,
          -2.88394519503428,
          -2.9208067732496916,
          -7,
          -3.0161973535124393,
          -3.215108581053093,
          -2.949145952419944,
          -3.047681883003228,
          -7,
          -7,
          -3.397070549959409,
          -3.282848602834645,
          -3.6648299411430907,
          -2.870403905279027,
          -3.4837298990000236,
          -4.757008635461283,
          -7,
          -7,
          -7,
          -3.953939713813928,
          -3.216957207361097,
          -3.494432898726399,
          -3.640878778701618,
          -7,
          -7,
          -3.050895086469539,
          -2.7398359526414344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.565178552693963,
          -3.4541585899443437,
          -3.2608164464658076,
          -3.1104213464739563,
          -7,
          -7,
          -7,
          -7,
          -3.2340108175871793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.591522169203609,
          -7,
          -7,
          -2.5035961502512842,
          -2.6582499544669576,
          -7,
          -7,
          -3.0025979807199086,
          -3.451632947456991,
          -2.6532125137753435,
          -7,
          -2.780870976776464,
          -3.0060379549973173,
          -7,
          -3.523192345925134,
          -7,
          -7,
          -7,
          -2.8438554226231614,
          -3.030599721965951,
          -3.0038911662369103,
          -7,
          -3.4625477288026643,
          -2.7275412570285567,
          -3.509560925059843,
          -2.9041743682841634,
          -3.747100931364986,
          -3.1281664716400015,
          -7,
          -7,
          -7,
          -7,
          -3.4295908022233017,
          -2.4424797690644486,
          -3.037625669914719,
          -7,
          -2.8131360146748556,
          -2.6613393400060397,
          -7,
          -7,
          -7,
          -3.966986025117938,
          -2.8849840645741107,
          -3.871378315564175,
          -7,
          -3.6092741724045876,
          -7,
          -2.8779469516291885,
          -7,
          -2.814691432747457,
          -7,
          -2.7795964912578244,
          -3.767823498007517,
          -3.4082399653118496,
          -7,
          -2.3942924527834046,
          -7,
          -3.57153414742667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.661917803408258,
          -7,
          -4.868142102559628,
          -7,
          -7,
          -2.485366465708323,
          -7,
          -7,
          -7,
          -7,
          -3.3059958827708047,
          -7,
          -7,
          -7,
          -7,
          -3.0043213737826426,
          -7,
          -7,
          -7,
          -4.342126469955725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.862131379313037,
          -7,
          -3.4098486220211917,
          -2.863719295092669,
          -3.3272226637602036,
          -3.8369567370595505,
          -7,
          -7,
          -7,
          -3.4767281437542463,
          -7,
          -2.6851864554300033,
          -3.142389466118836,
          -4.412737668240323,
          -3.17260293120986,
          -3.004751155591001,
          -7,
          -3.227543930734867,
          -2.9863984686808234,
          -2.8607985521941135,
          -3.0425755124401905,
          -3.2570182334190068,
          -7,
          -7,
          -7,
          -2.9439888750737717,
          -3.0265332645232967,
          -3.4787107555127594,
          -7,
          -3.0178677189635055,
          -2.6461585698621124,
          -2.525044807036845,
          -7,
          -7,
          -3.399327532158679,
          -3.342422680822206,
          -2.751792151275026,
          -2.70472233322511,
          -2.9829492885744986,
          -3.9867429509093695,
          -3.2109602554168117,
          -7,
          -3.8159096508867747,
          -7,
          -7,
          -3.019324037153691,
          -2.866877814337499,
          -3.9709509343454243,
          -3.0688040746361804,
          -2.8069935136821074,
          -7,
          -3.0865970852460154,
          -3.4186326873540653,
          -4.486168264379942,
          -2.682934395395032,
          -7,
          -7,
          -7,
          -3.079325986752815,
          -2.44257774864341,
          -7,
          -3.111262513659065,
          -3.159717546180216,
          -7,
          -2.300305567669649,
          -3.0511525224473814,
          -3.1234432775313534,
          -7,
          -3.2013971243204513,
          -3.1735747250409485,
          -7,
          -3.95580196003404,
          -3.16189623398293,
          -4.185241987464146,
          -7,
          -3.33665982345442,
          -4.116844250540653,
          -2.717323705505671,
          -7,
          -2.876217840591642,
          -7,
          -7,
          -3.328787200354535,
          -3.144184880392236,
          -2.9065146136422175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1420764610732848,
          -2.7193312869837265,
          -2.560305243220961,
          -2.5606537342551157,
          -7,
          -7,
          -4.297629218364148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.815765857584692,
          -3.7358269356613625,
          -7,
          -7,
          -7,
          -4.721414872624389,
          -7,
          -4.584772080866149,
          -4.335437840434784,
          -4.3753983847779425,
          -4.623135531707399,
          -7,
          -7,
          -7,
          -5.087476169013141,
          -4.281124309449275,
          -4.05872962075172,
          -7,
          -7,
          -4.661130904420943,
          -7,
          -7,
          -4.174408732073123,
          -7,
          -4.378960846770892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.617262517091374,
          -7,
          -4.673103885408021,
          -4.164092498531462,
          -7,
          -2.9845273133437926,
          -4.3348155125062116,
          -7,
          -4.157020844572027,
          -3.160339883036565,
          -3.5341530741850624,
          -7,
          -3.7599085281865303,
          -3.905075955657791,
          -7,
          -4.140994858693246,
          -7,
          -7,
          -7,
          -4.378615902031225,
          -7,
          -7,
          -4.089825660059739,
          -4.126598625117727,
          -5.405661335712202,
          -7,
          -3.714664992862537,
          -7,
          -4.111838373829939,
          -7,
          -5.104867635083071,
          -3.7866804531966487,
          -4.2255935481548,
          -7,
          -4.328175661438323,
          -7,
          -3.705614291809137,
          -7,
          -7,
          -7,
          -3.9455998712518956,
          -4.491655793718779,
          -7,
          -3.439653361113439,
          -4.054287403120578,
          -7,
          -4.306717383322012,
          -7,
          -7,
          -3.6110857334148725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5190108276524095,
          -7,
          -2.8109322482432924,
          -7,
          -3.344588742578714,
          -3.4450395648772703,
          -7,
          -7,
          -7,
          -3.1673911880740753,
          -7,
          -3.799223343064828,
          -3.343900712249606,
          -7,
          -7,
          -7,
          -7,
          -3.6921416093667836,
          -7,
          -7,
          -3.7989267385772014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024526714387152,
          -7,
          -7,
          -7,
          -4.054142784362693,
          -4.790045778582493,
          -7,
          -7,
          -2.871621576917034,
          -7,
          -3.205745540942662,
          -7,
          -7,
          -3.0268936051269018,
          -7,
          -7,
          -7,
          -3.27600198996205,
          -2.8618756361619213,
          -7,
          -3.3085644135612386,
          -7,
          -3.1109262422664203,
          -3.3378584290410944,
          -3.220761653975142,
          -4.20306009759596,
          -7,
          -3.099910730906369,
          -3.553761698390004,
          -7,
          -3.5530026278959586,
          -7,
          -7,
          -3.912540882790638,
          -3.3857849588433355,
          -3.360790493311147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7944880466591697,
          -7,
          -3.3895204658463776,
          -3.345177616542704,
          -7,
          -7,
          -3.0350960505139617,
          -2.9514184759183264,
          -3.346841769642251,
          -3.4163075870598827,
          -3.408621501803481,
          -7,
          -7,
          -7,
          -3.7432745235119333,
          -3.689486448364248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.254064452914338,
          -7,
          -3.869084973832671,
          -4.24911271341542,
          -7,
          -2.886913533398546,
          -7,
          -3.318689269947746,
          -7,
          -7,
          -2.914078585389112,
          -7,
          -7,
          -7,
          -7,
          -4.400382548045428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.064832219738574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.394976719554564,
          -3.3995006613146104,
          -7,
          -2.7978443698196243,
          -3.54082981411108,
          -3.4287825114969546,
          -7,
          -3.285471577480692,
          -3.859318465097116,
          -3.394976719554564,
          -3.4274861090957858,
          -2.9694159123539814,
          -2.7997919620140497,
          -2.678908405543116,
          -3.4794313371977363,
          -7,
          -7,
          -7,
          -2.668349367606713,
          -3.0344056157964263,
          -7,
          -3.1257414391287157,
          -2.7976636608710947,
          -3.5075860397630105,
          -2.4446692309385245,
          -2.9159272116971158,
          -1.9634658494621036,
          -3.234137489450963,
          -3.4584867637982066,
          -3.057573901907062,
          -2.551178818143956,
          -7,
          -7,
          -3.159266331093494,
          -3.6078837443569896,
          -2.5313192205955564,
          -2.8615344108590377,
          -7,
          -2.1997754860978236,
          -3.453471233722936,
          -3.431437996187525,
          -3.12515582958053,
          -3.166282067316571,
          -3.623456048069934,
          -3.0454533779715143,
          -2.7653975864258418,
          -3.448551739201578,
          -3.028435683944159,
          -7,
          -2.5722260030301527,
          -7,
          -2.551418446956486,
          -2.6824158616773586,
          -2.133626388374925,
          -3.9175055095525466,
          -2.984227178928321,
          -1.768826650627394,
          -7,
          -3.0188391401620427,
          -3.50745106090197,
          -7,
          -7,
          -7,
          -3.281866292147957,
          -3.2253810837400634,
          -3.422589839851482,
          -7,
          -2.704436519143124,
          -3.3979400086720375,
          -2.917272049269057,
          -2.8980392005877604,
          -7,
          -2.044670394919461,
          -3.0040838491714963,
          -3.111262513659065,
          -3.6351820486562674,
          -3.0836817472743014,
          -2.9626849566736677,
          -2.3864760989200358,
          -3.0110415256389502,
          -2.6023700909354988,
          -7,
          -3.080896934973246,
          -7,
          -2.506251281604838,
          -3.2667019668840878,
          -2.2616593037647066,
          -7,
          -2.924955443759352,
          -2.836482357458148,
          -2.7341386174609497,
          -3.4089180208467798,
          -7,
          -7,
          -2.8043666332204187,
          -3.171726453653231,
          -2.688864568054792,
          -3.429752280002408,
          -3.166726055580052,
          -3.4924810101288766,
          -3.397418542351348,
          -7,
          -2.9442168511849927,
          -3.404149249209695,
          -2.4683473304121573,
          -2.768884649356367,
          -2.3050738649759017,
          -2.4615727109734706,
          -3.172310968521954,
          -3.4398062113933303,
          -2.8258154449852033,
          -3.5435714239623652,
          -2.632805663414465,
          -7,
          -7,
          -3.14674801363064,
          -3.2670934700945033,
          -2.846543280888438,
          -3.203984244420126,
          -2.9495697483551866,
          -3.4271171059961962,
          -7,
          -3.1072584373095338,
          -3.478854967528663,
          -3.422779846389302,
          -2.826722520168992,
          -2.7288946220436823,
          -2.6365595325567286,
          -7,
          -7,
          -2.7277990515277923,
          -2.4189115616948453,
          -7,
          -7,
          -3.927336138327086,
          -7,
          -7,
          -7,
          -3.4171394097273255,
          -3.093596768608228,
          -3.8041394323353503,
          -3.5685537120494426,
          -2.869018254756463,
          -3.3601514477826377,
          -3.485579476984679,
          -7,
          -7,
          -7,
          -2.9323469078099147,
          -4.127978988916909,
          -3.096363699333073,
          -7,
          -2.8391636829146503,
          -7,
          -3.134672837165581,
          -2.921686475483602,
          -7,
          -2.8183358833529004,
          -7,
          -2.814913181275074,
          -3.551327988003846,
          -2.96883304489043,
          -3.0548045002209547,
          -2.7414470707864638,
          -3.11293997608408,
          -2.7498272196995663,
          -2.726959949912048,
          -3.164798819693455,
          -2.809706264007865,
          -3.15106325335375,
          -7,
          -7,
          -3.191870015444722,
          -3.1439511164239637,
          -3.4352071032407476,
          -7,
          -2.6180062349855286,
          -7,
          -3.045220004398053,
          -7,
          -3.3860230915330054,
          -2.5420052655836813,
          -7,
          -3.5317343092765503,
          -2.8662873390841948,
          -2.947311161005215,
          -2.562491127177062,
          -2.1605285538517576,
          -3.2895889525425965,
          -3.0537185238968583,
          -2.6085260335771943,
          -2.5943925503754266,
          -7,
          -2.978376189156044,
          -7,
          -3.34143452457814,
          -3.0016255582867375,
          -3.1248482491651344,
          -7,
          -2.694793164520534,
          -7,
          -2.8478529757347544,
          -7,
          -2.9627243931760243,
          -3.4437322414015967,
          -2.8625785677670708,
          -2.878291949249796,
          -3.028266163475984,
          -7,
          -1.6076081864967722,
          -3.916611845109346,
          -3.2632098485727488,
          -7,
          -7,
          -3.444513206334043,
          -3.40705081480425,
          -7,
          -7,
          -3.412124406173317,
          -7,
          -3.309459822461211,
          -2.384487822086762,
          -3.7155576848148777,
          -4.170564274665922,
          -3.385606273598312,
          -2.972665592266111,
          -2.9912260756924947,
          -7,
          -7,
          -3.4171394097273255,
          -3.620864475265121,
          -2.9698816437465,
          -3.5693739096150456,
          -7,
          -7,
          -7,
          -2.735119634081872,
          -3.389343311252078,
          -7,
          -3.2773799746672547,
          -4.049445773663138,
          -7,
          -3.3979400086720375,
          -7,
          -3.1314582601065255,
          -2.7878853509409245,
          -7,
          -7,
          -2.5323296410790315,
          -2.990211960854806,
          -2.2870175013221017,
          -3.305673745669693,
          -2.8185811447437055,
          -7,
          -7,
          -7,
          -2.9573198968553407,
          -2.9122220565324155,
          -3.143687231570321,
          -2.791690649020118,
          -3.523583901029429,
          -3.204255678480151,
          -3.1341771075767664,
          -3.4423229557455746,
          -2.6095208124648503,
          -3.2749656245392864,
          -2.631287632221304,
          -2.263969709649385,
          -3.3494717992143856,
          -2.7114456684692576,
          -7,
          -7,
          -2.9381443085140972,
          -3.0883133155880964,
          -2.7187783976895714,
          -7,
          -7,
          -2.8431081419996067,
          -2.832189461068513,
          -2.792975026700668,
          -7,
          -3.022943609686901,
          -2.639942789926727,
          -2.4161282165305416,
          -2.499412125672275,
          -2.861175835513029,
          -3.7068757593062003,
          -2.8461603181188546,
          -7,
          -3.2876796055965056,
          -7,
          -3.497620649781288,
          -2.53826315899939,
          -2.991336850972244,
          -3.00189098041235,
          -2.460730838531493,
          -2.445496837517327,
          -2.752158242910885,
          -2.649902510995987,
          -3.1596674343147124,
          -3.8042809110003937,
          -2.1994483637600335,
          -7,
          -7,
          -7,
          -3.1091846800155234,
          -2.295247778814387,
          -7,
          -3.4781334281005174,
          -2.7075701760979367,
          -7,
          -2.660338357558161,
          -3.4533183400470375,
          -2.8920946026904804,
          -3.485863329597335,
          -2.672493690697651,
          -2.836535091898369,
          -7,
          -3.391699451477855,
          -3.0410800122072543,
          -4.0634973325573265,
          -7,
          -2.960417921149897,
          -3.234157916937028,
          -2.3076605745629943,
          -3.3823773034681137,
          -3.5079907248196913,
          -7,
          -3.038699623020623,
          -2.761766799738045,
          -2.397340568298191,
          -2.5352941200427703,
          -3.404149249209695,
          -7,
          -3.0529823500032394,
          -7,
          -2.699693225955115,
          -3.4916417934775863,
          -2.7666156147521748,
          -3.448551739201578,
          -1.875192847844124,
          -7,
          -3.0948203803548,
          -4.316001814931364,
          -4.786545580235125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.709354775834396,
          -3.8916656643321246,
          -4.060886623004662,
          -7,
          -4.345687328898848,
          -4.434289396703876,
          -4.705457439875169,
          -4.001603924149798,
          -7,
          -4.691859164364127,
          -4.455813956286502,
          -7,
          -7,
          -7,
          -4.914415445352857,
          -7,
          -3.7787901581790777,
          -4.168850903709554,
          -7,
          -7,
          -7,
          -7,
          -4.788797430139894,
          -7,
          -4.695297762874286,
          -4.363179350058686,
          -7,
          -7,
          -4.150203628762808,
          -3.9802306913910317,
          -7,
          -7,
          -4.032759742667216,
          -7,
          -4.688633356948537,
          -3.7946824578784644,
          -3.9872639541222354,
          -3.5149460053080044,
          -7,
          -3.329499575762843,
          -3.3425426075024336,
          -3.374565060722765,
          -3.4094258686714434,
          -3.869847511611599,
          -3.359029886980261,
          -3.317880600528345,
          -7,
          -3.5136910100964522,
          -3.937066312017428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6023335107020023,
          -3.8472276214102914,
          -4.7081386445035935,
          -3.4371160930480786,
          -3.361413015792206,
          -7,
          -4.061984653726177,
          -7,
          -4.931688348356623,
          -3.8436375985671978,
          -4.267781659715359,
          -7,
          -7,
          -7,
          -3.4542903824586904,
          -7,
          -3.9635989625972416,
          -7,
          -3.245968394913303,
          -3.5605707855599604,
          -7,
          -3.3510422057394447,
          -4.488442599438955,
          -3.751048034820188,
          -3.989664512841722,
          -7,
          -7,
          -3.3277164414769396,
          -4.337758671493417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0992247033606977,
          -7,
          -2.7046550997731758,
          -7,
          -7,
          -3.300993802949105,
          -7,
          -3.127644629984225,
          -3.431524584187451,
          -3.1815005884677596,
          -7,
          -3.4683070414857493,
          -3.486430478854434,
          -7,
          -7,
          -7,
          -7,
          -3.821971817642043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1052830432993654,
          -3.2522865422434055,
          -7,
          -3.612501296864678,
          -7,
          -7,
          -4.618089954403986,
          -3.9875150122754737,
          -4.324810422951253,
          -7,
          -7,
          -2.725421550074259,
          -7,
          -2.993083360698062,
          -7,
          -7,
          -2.8648844787899463,
          -7,
          -7,
          -7,
          -2.8567288903828825,
          -2.8785217955012063,
          -7,
          -7,
          -3.2216749970707688,
          -7,
          -3.2889196056617265,
          -3.1645758949823053,
          -7,
          -7,
          -2.8357698150802566,
          -3.2463344173155235,
          -7,
          -3.602222821229977,
          -7,
          -7,
          -7,
          -3.617629297757842,
          -3.0387228771693704,
          -3.690373306916059,
          -3.773859552376687,
          -3.560026248912892,
          -7,
          -7,
          -3.4652340949880145,
          -7,
          -7,
          -7,
          -2.6901439407065344,
          -7,
          -3.3914644118391033,
          -2.835056101720116,
          -2.6150826222252115,
          -3.010865076409731,
          -3.334554270647249,
          -2.914499864344777,
          -3.6924944075030846,
          -7,
          -7,
          -3.6296474104571437,
          -7,
          -7,
          -7,
          -3.4044916177586857,
          -7,
          -4.3964260280181024,
          -7,
          -3.1992064791616577,
          -7,
          -3.3781313064867438,
          -7,
          -3.9167170775988125,
          -3.2691859328139516,
          -3.341895943969397,
          -3.0790002523038495,
          -7,
          -2.8796692056320534,
          -7,
          -3.506234359612126,
          -2.779989814589074,
          -7,
          -7,
          -3.5805828768143675,
          -3.0399426187629923,
          -3.282492636993701,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.921842481405858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6496268868405295,
          -7,
          -3.6942541120252788,
          -7,
          -3.814713612695977,
          -7,
          -7,
          -3.735119634081872,
          -7,
          -7,
          -3.3208470333280387,
          -3.4879863311293935,
          -3.482873583608754,
          -7,
          -7,
          -3.1820340262209674,
          -7,
          -7,
          -7,
          -7,
          -3.3371263410122576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9540011676815703,
          -7,
          -7,
          -4.164247379186236,
          -7,
          -7,
          -7,
          -7,
          -3.619771386161673,
          -7,
          -7,
          -7,
          -2.9813655090785445,
          -7,
          -3.500843920902923,
          -7,
          -7,
          -2.921166050637739,
          -4.080917284464512,
          -7,
          -7,
          -7,
          -7,
          -2.9434945159061026,
          -7,
          -4.390988066615901,
          -7,
          -7,
          -7,
          -7,
          -3.37675939540488,
          -7,
          -3.0574125012854534,
          -7,
          -7,
          -2.765668554759014,
          -4.364372738578348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8842287696326037,
          -7,
          -7,
          -7,
          -3.0175737295678022,
          -3.1981069988734014,
          -3.9243309847086785,
          -3.819346484080453,
          -7,
          -7,
          -3.0188391401620427,
          -7,
          -7,
          -3.1920095926536702,
          -7,
          -7,
          -3.6098077693287025,
          -3.9792751475910233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1915441607348294,
          -7,
          -7,
          -3.3481133157724337,
          -7,
          -2.4653828514484184,
          -7,
          -7,
          -3.596432142349082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2415464805965484,
          -7,
          -7,
          -7,
          -4.117363092185824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3346547668832414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.907411360774586,
          -2.43109559836973,
          -2.9360107957152097,
          -3.441695135640717,
          -7,
          -7,
          -3.7827950003893553,
          -7,
          -7,
          -3.226084115975824,
          -7,
          -4.090522570946947,
          -3.1792644643390253,
          -7,
          -7,
          -3.111262513659065,
          -3.668758541750958,
          -7,
          -3.1836114492184326,
          -3.9791004957884546,
          -7,
          -7,
          -7,
          -4.995604485821234,
          -7,
          -7,
          -3.1675142490484904,
          -7,
          -7,
          -3.4044060509212692,
          -3.2234959409623944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9731278535996988,
          -2.9084850188786495,
          -4.04410838744612,
          -3.7585334222372864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0187004986662433,
          -7,
          -7,
          -7,
          -2.9116901587538613,
          -7,
          -7,
          -3.400031984027495,
          -7,
          -7,
          -7,
          -3.271609301378832,
          -7,
          -3.2755416884013093,
          -3.0115704435972783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.13007326688381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.861683729919097,
          -7,
          -7,
          -7,
          -7,
          -2.957045409824666,
          -2.6983905586437853,
          -2.531904487367248,
          -2.8462339910366214,
          -2.971739590887778,
          -2.4795273244855407,
          -7,
          -2.744097310904046,
          -1.8839194063414246,
          -2.822386043980825,
          -7,
          -7,
          -2.919862253555538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.088029717842714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1684238181031454,
          -3.4153072922255676,
          -7,
          -7,
          -4.062356318085437,
          -7,
          -7,
          -7,
          -3.0453229787866576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1523393149226258,
          -7,
          -3.4442634503171514,
          -5.236160911445233,
          -7,
          -7,
          -3.104145550554008,
          -2.9283958522567137,
          -7,
          -7,
          -3.398634324538392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.496998797740092,
          -7,
          -7,
          -7,
          -7,
          -3.1470576710283598,
          -2.824125833916549,
          -7,
          -3.1489109931093564,
          -7,
          -3.3498600821923312,
          -7,
          -2.9937510507229983,
          -3.3324384599156054,
          -2.946943270697825,
          -7,
          -3.4775966502926194,
          -3.0824263008607717,
          -3.140193678578631,
          -7,
          -3.7139858770370497,
          -7,
          -7,
          -3.0398105541483504,
          -4.007918390645599,
          -7,
          -3.375434977745074,
          -3.745465168670727,
          -7,
          -7,
          -7,
          -7,
          -2.9542425094393248,
          -2.907008053689199,
          -3.4847268042986617,
          -7,
          -7,
          -7,
          -7,
          -3.3142886609474975,
          -2.900913067737669,
          -3.1051694279993316,
          -3.344490519241893,
          -7,
          -7,
          -7,
          -4.019068334783454,
          -3.6114577656683426,
          -2.9885589568786157,
          -3.816837630902035,
          -7,
          -7,
          -3.6263403673750423,
          -1.6824459385139579,
          -1.9958238337500014,
          -3.2502979923398647,
          -7,
          -7,
          -3.5691397254724593,
          -7,
          -4.714686258542472,
          -7,
          -7,
          -7,
          -7,
          -3.7818989193511494,
          -7,
          -7,
          -7,
          -3.467312062980552,
          -7,
          -3.089551882886454,
          -7,
          -3.729407796963068,
          -7,
          -7,
          -3.655138434811382,
          -3.142389466118836,
          -3.712944181356935,
          -3.694535004253942,
          -4.444124056396151,
          -7,
          -3.3394514413064407,
          -3.741263590820309,
          -3.1984508855664053,
          -7,
          -2.888179493918325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.153814864344529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3615794492016025,
          -7,
          -7,
          -4.298088569391382,
          -7,
          -7,
          -7,
          -7,
          -4.379541187752597,
          -7,
          -7,
          -4.581300973440315,
          -3.9926418698783976,
          -7,
          -7,
          -7,
          -7,
          -4.585246349458262,
          -7,
          -7,
          -4.623352681537992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1165745397769165,
          -7,
          -7,
          -7,
          -7,
          -4.2996670699201935,
          -4.168762575622357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.617702616734304,
          -2.707002099520009,
          -4.673490907887271,
          -4.222248116858932,
          -2.862673366756278,
          -7,
          -7,
          -7,
          -4.634288295838262,
          -7,
          -3.539452491549461,
          -7,
          -4.663328648045545,
          -4.081581317229508,
          -7,
          -4.44271488292848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.294157480769691,
          -4.447026877167566,
          -5.22960420662649,
          -3.0265332645232967,
          -3.718169405391307,
          -7,
          -4.656155720651669,
          -7,
          -5.40597267230393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.785251512550317,
          -7,
          -7,
          -7,
          -7,
          -3.8900995107287524,
          -2.4483971034577676,
          -4.343226368551779,
          -7,
          -7,
          -4.649245264062297,
          -7,
          -7,
          -4.310672074930124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.570805538589023,
          -7,
          -3.8925119929022363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8175653695597807,
          -7,
          -4.322488060518078,
          -7,
          -7,
          -7,
          -3.136974095757829,
          -3.387033701282363,
          -7,
          -7,
          -7,
          -2.046021089340296,
          -7,
          -7,
          -7,
          -3.089905111439398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.640456940990227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5126843962171637,
          -7,
          -7,
          -3.958038016098337,
          -7,
          -7,
          -7,
          -3.285557309007774,
          -3.7115541682501694,
          -7,
          -7,
          -7,
          -7,
          -3.3461573022320086,
          -3.00039068924991,
          -7,
          -7,
          -3.5822906827189938,
          -7,
          -7,
          -3.855428289576475,
          -7,
          -7,
          -3.9147661369258526,
          -7,
          -3.290672982696028,
          -2.6040909902682974,
          -7,
          -3.291812687467119,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5241363765925686,
          -7,
          -2.8976270912904414,
          -3.2142476081039772,
          -3.3326202195656403,
          -7,
          -7,
          -3.8356905714924254,
          -7,
          -3.7623033632877685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0651687517057455,
          -7,
          -7,
          -7,
          -3.3293088754705984,
          -2.7876375568784235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.79894398857152,
          -3.1577588860468637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.824776462475546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.097719940343722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3392526340327,
          -7,
          -7,
          -7,
          -4.205861805968412,
          -7,
          -7,
          -7,
          -7,
          -3.6218510955443124,
          -7,
          -3.153204900084284,
          -7,
          -7,
          -7,
          -4.347739717920052,
          -7,
          -7,
          -2.7514501870983787,
          -3.808881216505161,
          -3.210853365314893,
          -7,
          -7,
          -2.92668535582776,
          -7,
          -7,
          -3.8684974938893117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1357685145678222,
          -3.0962145853464054,
          -5.14280541359723,
          -7,
          -3.1277525158329733,
          -7,
          -7,
          -7,
          -1.842902781008627,
          -3.2079035303860515,
          -7,
          -7,
          -2.866484253384509,
          -3.5884851324781266,
          -7,
          -3.627314639600881,
          -3.5234212743726316,
          -7,
          -7,
          -3.50745106090197,
          -7,
          -7,
          -1.29754166781816,
          -7,
          -7,
          -7,
          -4.156609718165699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.198931869932209,
          -7,
          -7,
          -4.047654465673549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.552668216112193,
          -7,
          -7,
          -7,
          -4.38644290749695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.331326050575092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.909199319174384,
          -7,
          -7,
          -7,
          -7,
          -3.392679370131183,
          -7,
          -7,
          -2.9400181550076634,
          -3.597695185925512,
          -7,
          -7,
          -3.885304667588968,
          -4.757934766327757,
          -7,
          -7,
          -2.850339854583479,
          -4.092803952476481,
          -7,
          -3.5110808455391185,
          -3.351603072419129,
          -7,
          -7,
          -4.008429826797229,
          -3.2337573629655108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0050634572543666,
          -7,
          -4.167937312700578,
          -7,
          -7,
          -3.9045532629767727,
          -7,
          -7,
          -3.2638726768652235,
          -7,
          -7,
          -7,
          -7,
          -2.693140460675295,
          -4.070296518197765,
          -2.6599162000698504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4699692094999595,
          -3.4520932490177314,
          -7,
          -3.9028184680822533,
          -7,
          -7,
          -3.5895119818168726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0421323296433975,
          -7,
          -4.290657766409132,
          -7,
          -7,
          -3.605953079081585,
          -3.1992064791616577,
          -3.239633102713035,
          -3.156044098964241,
          -7,
          -3.4488608456074408,
          -7,
          -3.362670929725667,
          -7,
          -7,
          -3.674401812845282,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0908573959815335,
          -7,
          -7,
          -7,
          -3.3188977146274867,
          -7,
          -7,
          -3.475598557756169,
          -7,
          -7,
          -3.4577305482459986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.235679918564692,
          -3.1528995963937474,
          -3.1454139651678834,
          -5.236228140734041,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3418300569205104,
          -4.342728553287486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.812846536967071,
          -3.5434471800817002,
          -7,
          -7,
          -7,
          -7,
          -2.2798072880412437,
          -3.047626533023953,
          -7,
          -4.237652633213792,
          -7,
          -7,
          -7,
          -3.534026106056135,
          -3.7742979384992776,
          -3.2028060658459765,
          -3.0520780304841693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4959603948817053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3484022275776355,
          -7,
          -7,
          -7,
          -3.9871329630575385,
          -7,
          -7,
          -3.6936170426895027,
          -7,
          -7,
          -2.855317205195943,
          -3.0666985504229953,
          -3.6754575416412085,
          -2.9584444238670944,
          -7,
          -7,
          -7,
          -7,
          -4.8286850256076965,
          -2.8945375849957466,
          -7,
          -7,
          -7,
          -7,
          -3.1838390370564214,
          -3.09377178149873,
          -7,
          -3.177680759848778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.816525369214973,
          -7,
          -4.08149732835276,
          -3.917855464834902,
          -4.307320804551934,
          -7,
          -3.8221026686469206,
          -2.4527888371354494,
          -2.960470777534299,
          -7,
          -3.2116544005531824,
          -3.035029282202368,
          -2.986211715514367,
          -2.6988363547021272,
          -2.6752435432296338,
          -3.1043163645117278,
          -7,
          -7,
          -3.4671639659690903,
          -7,
          -7,
          -7,
          -3.686099771995916,
          -7,
          -3.3626574713677146,
          -7,
          -7,
          -7,
          -4.775085920101874,
          -7,
          -7,
          -7,
          -4.380988656432105,
          -7,
          -4.595374955168249,
          -3.7365217067513323,
          -3.695043658821294,
          -3.643057683751453,
          -7,
          -7,
          -7,
          -3.98402071613294,
          -7,
          -7,
          -4.623766000133931,
          -7,
          -4.321308389775909,
          -7,
          -5.388726249343061,
          -3.9828137621318627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.476353322595013,
          -7,
          -4.681114549675511,
          -4.332115143703462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.61853966998575,
          -7,
          -4.37317875450557,
          -4.4656058906462865,
          -3.9094490469812664,
          -7,
          -7,
          -7,
          -4.5375748144154935,
          -4.011147360775797,
          -7,
          -4.448010273039476,
          -4.487604955956124,
          -4.20725725871634,
          -7,
          -4.443966678374578,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9934362304976116,
          -4.4885352057062535,
          -4.592833298965716,
          -7,
          -7,
          -7,
          -4.355489832903385,
          -7,
          -5.406109078287424,
          -4.092088739255806,
          -7,
          -7,
          -4.330657234711394,
          -4.439111542159727,
          -4.086793908154067,
          -7,
          -7,
          -7,
          -3.42315845996139,
          -7,
          -2.6954816764901977,
          -4.343620273078088,
          -7,
          -7,
          -4.87125760736155,
          -7,
          -7,
          -4.3115207624480485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.998084887936556,
          -7,
          -3.89473132437208,
          -7,
          -7,
          -3.748594987350116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0219675739438765,
          -3.656960182742849,
          -7,
          -7,
          -7,
          -7,
          -3.702775077901044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.029505525426577,
          -7,
          -7,
          -3.278437833555403,
          -4.493949229970773,
          -7,
          -7,
          -7,
          -3.65662517127951,
          -7,
          -3.523226041965701,
          -7,
          -7,
          -3.9599472157084987,
          -7,
          -7,
          -3.452706226511029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.361538971269279,
          -7,
          -3.9052830562719762,
          -7,
          -3.591287265058499,
          -7,
          -7,
          -3.857844902792016,
          -7,
          -7,
          -7,
          -3.40705081480425,
          -3.685241164788095,
          -3.519696767159853,
          -7,
          -3.3092041796704077,
          -7,
          -7,
          -7,
          -3.8029104894190398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.821971817642043,
          -3.85658792817761,
          -3.3586010159430195,
          -7,
          -4.0135113334659,
          -7,
          -2.9893756490247383,
          -7,
          -3.7480328941301435,
          -7,
          -2.9813655090785445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6895752157599384,
          -7,
          -4.173739713951887,
          -3.9495241780324495,
          -7,
          -7,
          -7,
          -3.3434085938038574,
          -7,
          -7,
          -3.70372115992702,
          -7,
          -7,
          -7,
          -7,
          -4.101420543187383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.90687353472207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6449307079135873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.805133693575249,
          -3.1711411510283822,
          -7,
          -7,
          -7,
          -3.473194909204938,
          -7,
          -7,
          -7,
          -7,
          -3.692935002531138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0919346742141665,
          -7,
          -7,
          -7,
          -3.731293226228819,
          -4.224377652161807,
          -7,
          -7,
          -7,
          -3.0211892990699383,
          -7,
          -7,
          -3.6114577656683426,
          -7,
          -3.7080808104682315,
          -3.8164506321689897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.965501557108345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4390167283875126,
          -7,
          -4.364660415023539,
          -7,
          -7,
          -7,
          -7,
          -3.2080828797513523,
          -1.7116238663693082,
          -3.2111205412580492,
          -7,
          -7,
          -7,
          -3.512785755336107,
          -7,
          -3.9290611240847655,
          -3.2229114697957306,
          -7,
          -7,
          -7,
          -3.1920095926536702,
          -1.29754166781816,
          -7,
          -7,
          -7,
          -7,
          -3.50336692202923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2000292665537704,
          -7,
          -7,
          -4.348762286659855,
          -7,
          -3.4371160930480786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.085407815287446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6337713460825554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.085540306036948,
          -7,
          -7,
          -7,
          -7,
          -3.278841505918599,
          -7,
          -7,
          -2.8167382992623913,
          -2.9962927185413215,
          -7,
          -7,
          -3.885643871835764,
          -4.758025754574382,
          -3.141763230275788,
          -7,
          -2.6773027183949845,
          -4.041695269817748,
          -7,
          -7,
          -7,
          -2.307496037913213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.774425717806814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2691625654317447,
          -7,
          -3.6910520074505713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.174931593528443,
          -3.9454808948916567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.471731651480051,
          -3.15259407792747,
          -3.3643633546157306,
          -3.9034698285071703,
          -7,
          -7,
          -3.9089014967169025,
          -7,
          -7,
          -7,
          -3.185258765296585,
          -7,
          -7,
          -7,
          -3.9465013905695874,
          -7,
          -3.5917767112760672,
          -7,
          -7,
          -3.6821008897005045,
          -7,
          -7,
          -3.634779458145952,
          -7,
          -3.4507108781469196,
          -7,
          -2.8870543780509568,
          -7,
          -3.3199384399803087,
          -7,
          -7,
          -3.4056024552093134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.300233058364546,
          -3.1290450598879582,
          -7,
          -7,
          -7,
          -3.8804133998779164,
          -7,
          -7,
          -7,
          -7,
          -2.730378468587643,
          -2.6317818729476508,
          -7,
          -2.438067450453494,
          -2.980609293526336,
          -2.7271344237604884,
          -4.146345128650468,
          -5.412331163845351,
          -7,
          -7,
          -7,
          -7,
          -2.961421094066448,
          -3.0136796972911926,
          -3.11293997608408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7409545058228053,
          -4.166676745959573,
          -2.9434945159061026,
          -2.9633155113861114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1763806922432702,
          -7,
          -7,
          -7,
          -3.5441921107650325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.238836151492433,
          -7,
          -4.112797643468705,
          -7,
          -7,
          -7,
          -3.1081420233274226,
          -3.775173385424787,
          -3.2826221128780624,
          -3.150065315969936,
          -7,
          -7,
          -7,
          -7,
          -3.2773799746672547,
          -3.0444090865590487,
          -3.196314385353599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6502103546603593,
          -7,
          -7,
          -7,
          -4.656248373549415,
          -3.9174529919296637,
          -7,
          -3.6938807709392365,
          -7,
          -7,
          -3.1581613832785496,
          -7,
          -7,
          -3.5626496722119168,
          -7,
          -7,
          -7,
          -7,
          -5.129729196004417,
          -2.9410695150364625,
          -2.9532763366673045,
          -7,
          -7,
          -7,
          -7,
          -2.0495703914375065,
          -7,
          -3.4807253789884878,
          -7,
          -7,
          -7,
          -3.43560550202284,
          -7,
          -3.236537261488694,
          -7,
          -7,
          -4.859780553965358,
          -7,
          -4.307327745831848,
          -7,
          -7,
          -2.519628013580789,
          -2.961285461809911,
          -7,
          -3.214843848047698,
          -7,
          -3.2890312351397615,
          -2.1760912590556813,
          -2.5787919691964865,
          -3.1063609088067503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7310109331253267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.18385041331821,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9841558665135035,
          -7,
          -4.677670814860437,
          -4.924868286127619,
          -7,
          -7,
          -7,
          -5.388747541941398,
          -3.9830847727377883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.777484821118284,
          -7,
          -4.681223141395172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.459362327372962,
          -7,
          -4.31761419263232,
          -2.362266997454815,
          -7,
          -4.113430805202484,
          -3.6089536992758626,
          -7,
          -7,
          -7,
          -4.759463867212711,
          -4.011655010724778,
          -3.550839605065785,
          -3.971012841545116,
          -3.8185510684090147,
          -3.730136003996678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.381042842771909,
          -7,
          -7,
          -4.0392554438064865,
          -4.488552126545175,
          -4.592843536226989,
          -3.062581984228163,
          -3.2483002953545963,
          -7,
          -4.179436883244977,
          -7,
          -7,
          -3.79140991566716,
          -7,
          -7,
          -7,
          -3.74020473550745,
          -3.70656844127109,
          -7,
          -7,
          -7,
          -4.122456176023025,
          -4.49352775559078,
          -2.3961993470957363,
          -4.246759473024701,
          -4.4809454614645,
          -7,
          -4.746338342087566,
          -7,
          -3.638189640190837,
          -7,
          -4.003934206173708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.475438727737104,
          -7,
          -4.196148539699125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499226431276069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.622098840766468,
          -7,
          -7,
          -7,
          -7,
          -3.322077772222365,
          -7,
          -4.790988475088816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3136563466180315,
          -3.960232873128512,
          -7,
          -7,
          -2.607608186496772,
          -2.8277999071812294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4728480752993205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.032840283162028,
          -7,
          -7,
          -4.314835923004574,
          -7,
          -2.4439703985762407,
          -7,
          -7,
          -7,
          -3.285557309007774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.551803633168402,
          -3.700270937356437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7229628089424898,
          -7,
          -7,
          -7,
          -3.925501173028865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4812634271455627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5043757014788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.903231109767353,
          -7,
          -7,
          -2.374748346010104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3357386470050505,
          -7,
          -7,
          -2.8728358439998014,
          -4.229264028184002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.563979170379509,
          -7,
          -7,
          -7,
          -2.837588438235511,
          -3.2681097298084785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.538824988937904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.758555694320263,
          -7,
          -7,
          -7,
          -3.305190091553366,
          -7,
          -7,
          -3.1806992012960347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.375297738217339,
          -7,
          -7,
          -3.617000341120899,
          -7,
          -7,
          -5.124934393641766,
          -7,
          -3.0242803760470798,
          -7,
          -2.745855195173729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752890597646411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1878496072451403,
          -7,
          -7,
          -7,
          -3.614686342282013,
          -7,
          -2.5877109650189114,
          -2.7427251313046983,
          -7,
          -7,
          -4.382197210377454,
          -7,
          -7,
          -7,
          -3.52543355342882,
          -7,
          -7,
          -3.867791467345843,
          -7,
          -2.8847953639489807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.58983794314746,
          -7,
          -7,
          -7,
          -3.149065080207621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.41077723337721,
          -7,
          -4.050263722645796,
          -7,
          -2.4608978427565478,
          -7,
          -7,
          -4.062757421306656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.229169702539101,
          -7,
          -7,
          -7,
          -3.1376290770696893,
          -7,
          -2.4578818967339924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.914977472444331,
          -7,
          -7,
          -7,
          -7,
          -3.796747738875302,
          -7,
          -3.362105319293773,
          -7,
          -7,
          -3.3432115901797474,
          -7,
          -3.229937685907934,
          -7,
          -7,
          -2.7101173651118162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.339033840865832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.765668554759014,
          -7,
          -2.660865478003869,
          -7,
          -7,
          -7,
          -3.602168551378997,
          -7,
          -3.8256208250035,
          -5.712842398088922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6159500516564007,
          -2.994537104298498,
          -7,
          -3.1789769472931693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.640774511680957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7702627381705933,
          -3.805160901599434,
          -7,
          -1.5797835966168101,
          -7,
          -7,
          -2.7991107032021714,
          -3.929929560084588,
          -7,
          -7,
          -7,
          -7,
          -2.1484484035233837,
          -7,
          -7,
          -3.9529860651970554,
          -3.2247919564926817,
          -7,
          -7,
          -7,
          -7,
          -3.105510184769974,
          -3.131297796597623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9201755220100227,
          -7,
          -7,
          -3.1583624920952498,
          -4.654266408747144,
          -7,
          -7,
          -3.805047523584979,
          -7,
          -7,
          -7,
          -3.237292337567459,
          -3.6466977312993345,
          -3.4820155764507117,
          -3.7741518589547103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.381295623003826,
          -7,
          -3.286231854028553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5550097589461,
          -7,
          -5.574181797057869,
          -7,
          -7,
          -4.4158910775027795,
          -7,
          -7,
          -7,
          -7,
          -3.5150786750759226,
          -3.771954748963949,
          -7,
          -3.287353772714747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6556322942792354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.579257553258723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.179379417881757,
          -4.612147838326487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.359788067690362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.466348528450199,
          -7,
          -7,
          -7,
          -7,
          -4.3388547462523235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.462921830369343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.139613253202229,
          -4.786616571225525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1470576710283598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.228400358703005,
          -3.6766021695820186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305558499230943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7896512087934098,
          -7,
          -7,
          -7,
          -3.929633465282292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.04988962552391,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2595938788859486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.907020280620376,
          -7,
          -2.6281333875410833,
          -7,
          -7,
          -4.3023065720047935,
          -3.4363217001397333,
          -7,
          -7,
          -3.1236611191470076,
          -3.1049071253508416,
          -3.2000292665537704,
          -7,
          -7,
          -7,
          -7,
          -3.2646801172410136,
          -3.3001061379430885,
          -7,
          -2.912753303671323,
          -3.2976441188271366,
          -3.1610683854711747,
          -3.0141003215196207,
          -7,
          -2.672836454171397,
          -3.220631019448092,
          -7,
          -4.867567652782026,
          -7,
          -7,
          -7,
          -7,
          -3.358886204405869,
          -7,
          -7,
          -7,
          -2.707910665713106,
          -3.030194785356751,
          -4.028236425372406,
          -7,
          -7,
          -2.4290341409683256,
          -7,
          -3.1908917169221698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.296766824034295,
          -3.486005186362242,
          -1.4853873537867202,
          -3.2105191640810844,
          -7,
          -2.420945405921972,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5994463757252757,
          -3.676693609624867,
          -7,
          -7,
          -2.491050259986647,
          -2.8639173769578603,
          -3.453624073591451,
          -3.0573807905423553,
          -7,
          -2.9947569445876283,
          -3.524022689062766,
          -7,
          -7,
          -7,
          -7,
          -3.113553425855539,
          -2.8913515837206996,
          -3.0191162904470725,
          -7,
          -7,
          -7,
          -3.530711837981657,
          -3.2761169891635435,
          -3.3236645356081,
          -7,
          -3.3615185485382044,
          -7,
          -3.030478280622408,
          -7,
          -7,
          -3.4671639659690903,
          -7,
          -3.429752280002408,
          -7,
          -2.9642596301968487,
          -3.6810904144944385,
          -7,
          -7,
          -2.852479993636856,
          -3.5089335260500327,
          -7,
          -1.3394159466816076,
          -1.6728672017718136,
          -2.006174210354342,
          -2.779776808670381,
          -7,
          -7,
          -7,
          -7,
          -3.5445818032049923,
          -7,
          -7,
          -3.3875677794171883,
          -7,
          -3.0570952896126675,
          -7,
          -3.4821873135445873,
          -3.9783707550069076,
          -7,
          -7,
          -7,
          -4.694144339135403,
          -2.724275869600789,
          -3.1855421548543754,
          -7,
          -7,
          -7,
          -3.0038911662369103,
          -2.0422087727429976,
          -7,
          -2.084576277934331,
          -4.072084385539477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040325379199723,
          -3.7512020945883533,
          -3.0158086695675426,
          -3.708420900134713,
          -7,
          -3.8949249773595436,
          -7,
          -7,
          -3.220108088040055,
          -7,
          -3.2415464805965484,
          -7,
          -7,
          -7,
          -3.5036545192429593,
          -7,
          -2.829303772831025,
          -7,
          -7,
          -2.928907690243953,
          -3.2528530309798933,
          -7,
          -3.443262987458695,
          -3.1228709228644354,
          -7,
          -3.5920101162931366,
          -2.81778565588553,
          -7,
          -3.6891832780764897,
          -7,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -7,
          -7,
          -3.636036316353447,
          -7,
          -7,
          -7,
          -3.043283665570575,
          -3.540854815952249,
          -7,
          -3.702171950857711,
          -3.6154239528859438,
          -7,
          -3.4207806195485655,
          -3.2780673308886628,
          -3.3281756614383227,
          -2.910624404889201,
          -2.977494969073036,
          -3.657915936829955,
          -3.0507663112330423,
          -7,
          -7,
          -3.1187841889145207,
          -7,
          -3.569178764933307,
          -7,
          -3.482337527813187,
          -7,
          -7,
          -7,
          -3.2805783703680764,
          -7,
          -7,
          -3.2863816107479344,
          -3.097604328874411,
          -7,
          -2.952469547503639,
          -7,
          -3.5683777537182206,
          -7,
          -7,
          -3.0060379549973173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.926085086925144,
          -2.9123283579604102,
          -7,
          -5.111139804772594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.926342446625655,
          -3.381656482585787,
          -1.8681016267646535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.833784374656479,
          -7,
          -2.525260820213098,
          -4.3418597073294904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7064617376313547,
          -7,
          -3.4997557946637814,
          -3.8335295817586434,
          -7,
          -7,
          -7,
          -3.4756089342953334,
          -3.366236123718293,
          -3.0052183765659297,
          -3.12515582958053,
          -4.111220493971364,
          -3.1565491513317814,
          -7,
          -7,
          -3.225223103636106,
          -3.460070543294161,
          -2.93104159179914,
          -2.5897102986388356,
          -3.0774284721180742,
          -3.2659963704950794,
          -3.109240968588203,
          -7,
          -3.231979026831504,
          -3.4967913157000425,
          -2.993142192245416,
          -7,
          -7,
          -2.934750874663579,
          -7,
          -2.99211148778695,
          -7,
          -2.689486448364248,
          -7,
          -3.215901813204032,
          -7,
          -7,
          -4.3545981854393,
          -3.606327612467192,
          -7,
          -7,
          -7,
          -7,
          -2.711807229041191,
          -7,
          -7,
          -3.5397032389478253,
          -3.5033820634737327,
          -3.3422252293607904,
          -2.7112044607530303,
          -2.1737003278314213,
          -4.749387787092975,
          -1.8318116241188156,
          -7,
          -7,
          -7,
          -3.7749546890801384,
          -2.739868892417847,
          -7,
          -3.0927206446840994,
          -3.151523067564944,
          -2.6834973176798114,
          -2.192381579384681,
          -7,
          -3.1190083104691966,
          -3.111262513659065,
          -3.1863912156954934,
          -7,
          -7,
          -3.9554772853314835,
          -3.1360860973840974,
          -4.596687937868687,
          -7,
          -7,
          -5.019768281501304,
          -3.191800210014707,
          -7,
          -7,
          -7,
          -7,
          -3.8025000677643934,
          -3.139957755812176,
          -3.374565060722765,
          -7,
          -7,
          -2.740046724051494,
          -7,
          -7,
          -2.823148059810694,
          -3.1925674533365456,
          -7,
          -2.9259766793032753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8943714538562375,
          -3.840288628653793,
          -7,
          -7,
          -7,
          -4.7209692307416224,
          -7,
          -4.283108920345892,
          -7,
          -4.6759523910790906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058046230395282,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.776119799052988,
          -7,
          -4.378470580135305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.771471989594546,
          -7,
          -4.672605777753426,
          -4.46495131726153,
          -7,
          -7,
          -4.333729323156598,
          -3.398634324538392,
          -3.874282612188991,
          -3.7025166974381505,
          -7,
          -7,
          -3.5012529106922354,
          -3.904589330951372,
          -7,
          -3.662899426362577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.515600116635371,
          -4.257818283151665,
          -5.706646958404988,
          -7,
          -3.7101173651118162,
          -7,
          -4.655695358099588,
          -7,
          -7,
          -4.085861173788451,
          -7,
          -7,
          -7,
          -4.436321700139733,
          -7,
          -3.629715332647132,
          -3.073953889255577,
          -7,
          -3.899535984652174,
          -4.013721778051063,
          -7,
          -3.798586527286706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.133538908370218,
          -4.300943128080553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4724346304941105,
          -3.40226138245468,
          -1.8741716975886615,
          -7,
          -7,
          -3.232937497195236,
          -7,
          -2.750893920382125,
          -7,
          -3.066325925362038,
          -7,
          -4.321826183768503,
          -2.8606374167737547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.835479184541597,
          -3.0784568180532927,
          -7,
          -7,
          -7,
          -7,
          -4.599173217352912,
          -4.250277072903023,
          -7,
          -7,
          -7,
          -2.6463547060207597,
          -7,
          -3.1983821300082944,
          -7,
          -7,
          -2.7640073104321687,
          -7,
          -7,
          -7,
          -2.9618954736678504,
          -3.402175375031505,
          -7,
          -3.296884475538547,
          -2.4933186082321015,
          -7,
          -3.025510672852581,
          -2.614765431938085,
          -7,
          -7,
          -2.7247438593895046,
          -3.5471591213274176,
          -7,
          -4.153601474288411,
          -7,
          -7,
          -7,
          -3.3760291817281805,
          -2.909014990979134,
          -3.194653071952934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.776701183988411,
          -2.9731278535996988,
          -7,
          -7,
          -2.662420515562167,
          -2.639872555925874,
          -3.1652443261253107,
          -3.4072208929273966,
          -2.911902996044033,
          -7,
          -3.7550359337677714,
          -7,
          -4.042260406689452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1451964061141817,
          -7,
          -3.6873378244924546,
          -7,
          -7,
          -4.072335693862353,
          -7,
          -2.63534010716356,
          -7,
          -3.0058237530290275,
          -7,
          -2.967641564083011,
          -2.4815322014595997,
          -7,
          -7,
          -7,
          -2.70472233322511,
          -3.700340211110526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5173278822943734,
          -7,
          -3.351989455435632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.501812117075094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0416886941315635,
          -7,
          -7,
          -3.162881648182516,
          -3.9121157290788537,
          -7,
          -7,
          -3.2294956795406073,
          -4.285107029566812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1150496567022525,
          -3.7279883338825006,
          -7,
          -3.103347529231339,
          -3.187419000615386,
          -3.6183619311098782,
          -3.5725230978496376,
          -7,
          -3.4034637013453173,
          -7,
          -3.580810972660946,
          -3.8417063578630106,
          -3.1408221801093106,
          -7,
          -7,
          -7,
          -7,
          -3.5644293269979834,
          -3.0812032393065754,
          -7,
          -7,
          -7,
          -3.9200895492469097,
          -7,
          -7,
          -3.710709565724337,
          -7,
          -2.3448089202425684,
          -7,
          -7,
          -3.188084373714938,
          -2.518311424377877,
          -7,
          -2.472579483682157,
          -2.981969534880924,
          -2.494988973683168,
          -2.8166673341789954,
          -7,
          -3.605305046141109,
          -3.281866292147957,
          -3.6098077693287025,
          -7,
          -7,
          -7,
          -3.5994463757252757,
          -7,
          -2.9022261072795255,
          -7,
          -7,
          -2.0907068367582795,
          -7,
          -2.881332772835035,
          -2.8607571230815423,
          -2.850033257689769,
          -7,
          -3.566596726075971,
          -7,
          -7,
          -7,
          -7,
          -1.483375948594675,
          -2.6216954623292787,
          -3.2726536974298166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6822353569025643,
          -7,
          -3.0440621075592937,
          -3.206353560072406,
          -2.9236001702363947,
          -7,
          -7,
          -3.4497868469857735,
          -3.377215156263061,
          -7,
          -3.532563298334475,
          -7,
          -3.6308599203655305,
          -3.606703741333674,
          -7,
          -7,
          -2.6139826893706237,
          -7,
          -3.2527721492435755,
          -3.3489859568078573,
          -2.3381545437336477,
          -2.627950765074281,
          -3.5922878159521305,
          -7,
          -7,
          -7,
          -3.5899974460440314,
          -7,
          -7,
          -3.7113853790984517,
          -3.8121108412030997,
          -3.861653870213911,
          -7,
          -3.7753434064763316,
          -3.475387860393165,
          -7,
          -3.217396199091494,
          -7,
          -4.3078937807171505,
          -2.0822723230247666,
          -3.46014581749175,
          -3.545430829465351,
          -7,
          -7,
          -1.353028995703768,
          -3.7749546890801384,
          -7,
          -7,
          -3.6419200744131177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1354189050278523,
          -2.840994275962398,
          -4.236763922187807,
          -3.8928734068887656,
          -7,
          -3.7223459424755814,
          -7,
          -7,
          -7,
          -7,
          -3.2075446093061983,
          -7,
          -7,
          -7,
          -2.6618473003288075,
          -7,
          -7,
          -7,
          -3.6509870943834453,
          -7,
          -7,
          -7,
          -7,
          -3.1266183755229515,
          -7,
          -2.790367965650633,
          -2.9705328297683242,
          -3.1090157705111308,
          -2.934763035942782,
          -7,
          -7,
          -7,
          -7,
          -3.570893036218392,
          -7,
          -3.53832233323144,
          -3.276729804479128,
          -7,
          -3.741348602475895,
          -7,
          -3.438384107034714,
          -2.904786001106443,
          -7,
          -3.4114513421379375,
          -2.9884952539841994,
          -3.1741567592784814,
          -3.7274599208579087,
          -7,
          -3.6842167951388807,
          -7,
          -3.3620109792299933,
          -3.8605176774617465,
          -7,
          -3.580069222725036,
          -7,
          -3.5989363410431636,
          -3.217659381292399,
          -7,
          -7,
          -2.828220342013904,
          -7,
          -3.462397997898956,
          -3.590395947184013,
          -3.362670929725667,
          -7,
          -7,
          -2.9289588408808296,
          -3.1142772965615864,
          -7,
          -2.3863367943456684,
          -3.368168509363625,
          -2.4834360012063805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.268304892028948,
          -3.531223374533027,
          -3.21761552866633,
          -3.9519485116441997,
          -7,
          -7,
          -3.2874658053432286,
          -3.3328422669943514,
          -3.5354207180561734,
          -7,
          -7,
          -7,
          -3.6669857183296606,
          -7,
          -7,
          -3.550228353055094,
          -3.5634810853944106,
          -7,
          -7,
          -2.8953304466897034,
          -2.973926021334254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0011926706536842,
          -3.192177026112752,
          -3.6853834098014873,
          -3.4782297026479974,
          -3.6775157047987577,
          -7,
          -7,
          -7,
          -1.3641291386301917,
          -3.7013952690139202,
          -2.820846274389542,
          -7,
          -3.693926707209632,
          -7,
          -3.563599728881531,
          -3.5686709780098966,
          -7,
          -3.2287595554356354,
          -2.1079754391582166,
          -3.212986184736668,
          -7,
          -2.958181497564948,
          -7,
          -7,
          -3.6444385894678386,
          -3.465457210575713,
          -2.751510050270041,
          -7,
          -7,
          -3.6461095219788477,
          -3.5633624094866074,
          -7,
          -7,
          -3.2350231594952237,
          -3.155411956437706,
          -7,
          -7,
          -3.6603910984024672,
          -3.5178397276832776,
          -2.5993573652014748,
          -7,
          -3.648964674299241,
          -7,
          -3.61066016308988,
          -3.1354506993455136,
          -3.385606273598312,
          -3.7781874400825854,
          -3.312811826212088,
          -3.656960182742849,
          -3.3892547068486483,
          -2.7992026563005252,
          -2.9429995933660407,
          -4.097860559476264,
          -3.539327063539375,
          -7,
          -7,
          -7,
          -3.937517892017347,
          -2.7043343970832785,
          -7,
          -3.5957166199434245,
          -7,
          -7,
          -7,
          -7,
          -3.1228163735354806,
          -7,
          -3.3261309567107946,
          -3.3756026560715435,
          -7,
          -3.728336386700282,
          -3.5918592906551927,
          -3.7562988995765636,
          -7,
          -2.961373627594801,
          -3.4865033443394324,
          -3.6497728273006773,
          -7,
          -7,
          -7,
          -3.8067902715840667,
          -3.4793353286902375,
          -7,
          -7,
          -7,
          -7,
          -3.7371926427047373,
          -3.0884904701823963,
          -7,
          -3.6060587494103142,
          -3.868174040859638,
          -7,
          -2.6001965198996295,
          -7,
          -7,
          -3.9276987831185015,
          -4.793133558969125,
          -7,
          -7,
          -4.7368982408204765,
          -3.9472212610378086,
          -4.0216440360874435,
          -4.145227492652394,
          -3.4052526963247365,
          -3.7937205568135233,
          -3.8403570592033565,
          -7,
          -4.265588169448128,
          -4.533339835991969,
          -3.4092883851801457,
          -7,
          -4.222881142422591,
          -3.7614366627415046,
          -7,
          -4.370772071705626,
          -7,
          -4.6942049372013654,
          -7,
          -3.722939325314079,
          -3.5933137634894505,
          -7,
          -4.208387603795154,
          -4.262308674749025,
          -7,
          -3.649042634086176,
          -4.2394746634651845,
          -4.402364568884161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.261239071182586,
          -3.2820307129338744,
          -7,
          -4.2197154758555016,
          -2.885529009742976,
          -3.181598615963903,
          -3.3967222785037734,
          -3.5397211439377028,
          -3.2392160331698863,
          -3.3912805950499947,
          -2.7435779267754823,
          -3.305852740224386,
          -4.008302024212002,
          -3.212541180290165,
          -2.745966567012242,
          -7,
          -2.9125380115265718,
          -3.981637424655769,
          -7,
          -3.962700731704341,
          -3.3099248374464105,
          -3.88058495606498,
          -7,
          -3.171433900943008,
          -3.315602333060121,
          -4.8638401357766385,
          -7,
          -3.291590825658001,
          -7,
          -2.9685950100903336,
          -7,
          -4.808327467093671,
          -3.3274465143581065,
          -4.289165152649889,
          -7,
          -3.264745192441276,
          -3.699027906406887,
          -3.371717619876,
          -7,
          -2.8378363553807753,
          -3.6691773631428735,
          -3.032576351350964,
          -3.225735611624981,
          -7,
          -2.8043362399890293,
          -3.2705297765360086,
          -7,
          -3.408463532402235,
          -7,
          -2.932537179217954,
          -2.956388564539977,
          -3.8788280680681337,
          -7,
          -7,
          -7,
          -3.5466660250701842,
          -7,
          -2.454453609769247,
          -2.222044838333418,
          -2.3879426850315597,
          -3.0802656273398448,
          -3.2092468487533736,
          -2.5195129832576257,
          -2.7758126429361747,
          -2.6942541120252788,
          -2.7140901489905187,
          -2.8888939620872947,
          -3.242417184417719,
          -2.6883733297085577,
          -2.264879931623429,
          -2.6374897295125104,
          -7,
          -3.3096301674258988,
          -2.9239344710521813,
          -2.0657430578984863,
          -3.3191060593097763,
          -7,
          -2.8041394323353503,
          -7,
          -2.8249931222365388,
          -3.0751818546186915,
          -2.4541516523882234,
          -7,
          -2.642563437104388,
          -7,
          -3.554125581513013,
          -3.212279823265849,
          -2.8630116102274084,
          -3.316551992958615,
          -7,
          -3.75724415102197,
          -2.336308661760076,
          -7,
          -2.4430020715710614,
          -7,
          -2.334357996662195,
          -2.1781725804252074,
          -7,
          -3.555698894718901,
          -3.4282968139828798,
          -2.5082410552970478,
          -3.110870171711581,
          -3.108113808646113,
          -3.0680930538642177,
          -3.329092647195331,
          -3.2943559851451605,
          -2.476849735809972,
          -2.6684204324445906,
          -3.064949100672052,
          -7,
          -2.2008504980910777,
          -2.4296118679475467,
          -7,
          -2.780548750718452,
          -7,
          -7,
          -3.255915428213917,
          -2.3404441148401185,
          -2.45908807414116,
          -2.299604971476159,
          -2.882081606267427,
          -3.6595359071542166,
          -7,
          -7,
          -2.806632128612864,
          -3.1027276444281937,
          -3.5743785644130823,
          -2.4495641011080975,
          -2.0106048316835032,
          -3.3460594330525737,
          -3.531223374533027,
          -2.0043213737826426,
          -2.5202587512953705,
          -2.5937167011478612,
          -3.419625360887743,
          -2.4869308453661136,
          -2.9219835813490653,
          -3.145248215775073,
          -2.8606374167737547,
          -2.4442997758061598,
          -3.17805561153123,
          -2.868840287093479,
          -7,
          -7,
          -7,
          -4.111363344325131,
          -3.7653704802916486,
          -2.6569495514291095,
          -2.983551117157769,
          -2.808542631074618,
          -2.858623119912763,
          -3.036853369184079,
          -2.687586122524311,
          -3.1774210574831687,
          -2.2489689159055066,
          -7,
          -2.2727695865517594,
          -7,
          -2.400746348353711,
          -2.34456563320384,
          -3.4147505757259213,
          -7,
          -2.165095874754218,
          -2.846955325019824,
          -2.3259101824596113,
          -2.76063785386249,
          -7,
          -7,
          -7,
          -3.5481436374348454,
          -7,
          -7,
          -2.8877110498195115,
          -7,
          -2.9951962915971793,
          -2.9782946697786294,
          -3.5928426831311002,
          -2.954121855324949,
          -2.9708116108725178,
          -2.4253168014790023,
          -3.1083394747888384,
          -2.28070841812527,
          -2.7066229685645444,
          -2.4390555435452326,
          -2.7637772854038287,
          -3.2704459080179626,
          -3.2961164921697144,
          -3.5342800052050816,
          -2.8028421127390746,
          -3.2847690133490195,
          -7,
          -2.7161172171175747,
          -2.4543002900538933,
          -2.450359098058306,
          -2.7191931306339363,
          -3.0518468383137356,
          -2.7849341224714053,
          -3.06905111359728,
          -3.2522460504731185,
          -2.7148325124333326,
          -2.760045327965811,
          -2.9175055095525466,
          -2.258828770593979,
          -3.314709692955174,
          -7,
          -3.672667303446025,
          -7,
          -7,
          -7,
          -3.6711111049252425,
          -4.466066475658547,
          -3.419850652422548,
          -4.1484638311172795,
          -4.4538532325881866,
          -3.1236501138139117,
          -3.171593499578443,
          -7,
          -4.449401252996221,
          -2.714884975155155,
          -2.8770534434074846,
          -3.9825576522920807,
          -3.551312734347314,
          -4.446008733684012,
          -3.6704004888179345,
          -7,
          -1.9817592997882345,
          -3.245376929578351,
          -7,
          -3.3307924320732254,
          -2.33541961695756,
          -2.7078286078115443,
          -3.849188998468175,
          -7,
          -3.2667313418701927,
          -3.6825962914605532,
          -3.850293878845634,
          -2.737732667645749,
          -3.75859399963138,
          -4.448226940521222,
          -4.147382573846098,
          -3.9754777631658746,
          -3.3236498125135348,
          -4.14921911265538,
          -2.5095170937932436,
          -3.7477845662086304,
          -3.1118175226571605,
          -7,
          -1.8299493896333177,
          -4.449308659474037,
          -2.850125259486936,
          -3.517855418930029,
          -3.8573023360449996,
          -2.812258353215379,
          -4.1503879773252805,
          -3.6792158461511475,
          -4.0100737026717335,
          -3.3457807615350057,
          -3.466185257056047,
          -2.0459426715578344,
          -4.180383965589764,
          -2.624441715528019,
          -3.527900445194766,
          -3.8506462351830666,
          -4.154758619154177,
          -3.2253810837400634,
          -3.9792751475910233,
          -4.156609718165699,
          -3.50336692202923,
          -7,
          -3.676693609624867,
          -2.9022261072795255,
          -7,
          -7,
          -7,
          -3.1549309119861473,
          -4.1456158867489155,
          -2.6233818386918952,
          -2.970169052064559,
          -7,
          -3.4798343413193606,
          -2.5511869560030376,
          -4.146949316052184,
          -3.1512092788693664,
          -4.44554193436792,
          -7,
          -2.1547458012533567,
          -4.470968804605796,
          -3.8493733405098816,
          -7,
          -3.703061987128565,
          -3.454905809342959,
          -3.371891600376384,
          -3.2607025791074236,
          -3.6222584422236412,
          -4.164501561309568,
          -2.207799803280512,
          -2.757100662119184,
          -2.870874187893698,
          -7,
          -7,
          -3.1365476218503834,
          -4.466912085089596,
          -3.133045111293821,
          -3.717989312300647,
          -3.9724342769573653,
          -2.6490730178474116,
          -3.853865449855675,
          -4.145569297792989,
          -4.145320738918325,
          -2.4745478950919684,
          -3.9700522868628005,
          -3.9985935061160727,
          -3.5079607610773103,
          -2.8478330480849277,
          -2.6922366216770506,
          -3.4537310295042936,
          -3.7514946576711314,
          -2.967502684527245,
          -3.5073910568285225,
          -2.276631354423071,
          -4.457170099784619,
          -7,
          -3.241531831992722,
          -3.44999702677108,
          -3.0868524453015307,
          -3.679124935677682,
          -2.8133654043086627,
          -2.4918543411396246,
          -4.152807963419064,
          -3.536861333074499,
          -3.4128574701421197,
          -3.095825072722579,
          -4.459874769298969,
          -2.836841783516819,
          -3.0834474888264607,
          -4.147227888532488,
          -2.589505858136387,
          -2.070191456658844,
          -3.6388884247050757,
          -7,
          -4.446801142847091,
          -2.934455653068426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0055167390105617,
          -3.4374202254789092,
          -2.7443973056026167,
          -3.3633701902513606,
          -3.8531199842175665,
          -3.5449481493514257,
          -3.4467235195682013,
          -3.449756012062128,
          -3.012897455546667,
          -3.8116420214531512,
          -2.6691257494518283,
          -7,
          -7,
          -3.9783631470838827,
          -2.541852590115751,
          -4.446816665838136,
          -3.8436531610519933,
          -3.6904618932461783,
          -2.3515336077721796,
          -4.14744443254818,
          -3.7637274037656985,
          -3.3510526263120277,
          -3.8751625869501884,
          -3.244669969749393,
          -4.166755638665237,
          -3.1462396970463096,
          -3.8634418286137087,
          -4.152165990675555,
          -2.662710132142548,
          -7,
          -7,
          -7,
          -4.456092614887902,
          -7,
          -4.14908048591103,
          -3.969788537414939,
          -2.920499480678795,
          -7,
          -2.9430463082737304,
          -4.446940829796355,
          -2.241032065988696,
          -2.2189690282163985,
          -3.9798517589161557,
          -3.030963842378275,
          -2.8617844044915968,
          -3.5593679094633317,
          -3.1524776333829094,
          -3.422724109285819,
          -2.6807514900992335,
          -3.3809043531298437,
          -3.6861743251490533,
          -2.2883127215408736,
          -3.7536443306878593,
          -2.7346371267745795,
          -7,
          -2.605352939224738,
          -3.0710272996925214,
          -2.374987297588018,
          -7,
          -2.79466505233476,
          -4.446273030751088,
          -3.6763800207200426,
          -4.45374630677039,
          -3.7654897346294343,
          -4.450972329938457,
          -4.152104800892868,
          -2.3275181575643944,
          -2.6139885578581064,
          -7,
          -4.17506221059361,
          -3.399621810671736,
          -3.0073083928914546,
          -7,
          -4.446304113951924,
          -4.149988456491476,
          -7,
          -4.4491234131845605,
          -7,
          -7,
          -3.550457673388806,
          -3.2508467674689916,
          -2.7385580430539074,
          -2.697856360143162,
          -2.5220628420114863,
          -7,
          -3.451356532162689,
          -3.976334692057641,
          -3.9828137621318627,
          -3.8444616427611162,
          -3.8462752424122133,
          -3.517489142040726,
          -3.620210439573049,
          -4.46507040400967,
          -7,
          -7,
          -7,
          -4.149095891067973,
          -7,
          -7,
          -4.165199796041853,
          -2.9739148385188066,
          -7,
          -7,
          -7,
          -7,
          -3.978347930837997,
          -3.6092284050050294,
          -4.445790956440055,
          -3.5011353674456522,
          -3.2538089895192175,
          -3.2371295890244625,
          -3.145027982018139,
          -3.252955175857627,
          -3.767660393845374,
          -7,
          -7,
          -2.0824464605830224,
          -7,
          -3.0114083105604443,
          -4.154880244718762,
          -2.4124023237640917,
          -3.98027614107784,
          -7,
          -4.149773177559665,
          -3.027151494017887,
          -3.1756567472816637,
          -2.659024363596743,
          -2.870044593762679,
          -3.01747601299904,
          -2.676513709253526,
          -2.991958959255932,
          -3.8461514765288154,
          -3.4612883818666504,
          -3.019345522521489,
          -2.960499605578246,
          -7,
          -3.8484970180903666,
          -3.984632311405793,
          -7,
          -3.2889344912500436,
          -7,
          -4.472639451880648,
          -2.7694015416651996,
          -3.8584770418133405,
          -3.78141067367645,
          -4.162967450221886,
          -2.1812042907283047,
          -2.893712456636053,
          -4.14789264483285,
          -2.6864221224006877,
          -3.6026025204202563,
          -3.9793966030856005,
          -2.8619093473644877,
          -3.7692000268363204,
          -3.307056053323182,
          -3.70888808900192,
          -3.4848690327204026,
          -3.565596964778962,
          -3.710963118995276,
          -3.8721562727482928,
          -2.9839560114981873,
          -2.985950126092585,
          -3.04766419460156,
          -7,
          -4.144371801014283,
          -3.178087052906914,
          -3.1017333302326384,
          -3.3375206955987693,
          -4.153418485037711,
          -3.2736522256933327,
          -4.149265311738653,
          -3.693023067923694,
          -7,
          -2.6841081445570096,
          -3.8531504364478426,
          -3.254427221540668,
          -3.458871241042658,
          -3.375785504077291,
          -2.8350079316834047,
          -3.0331052901726596,
          -2.765603018334299,
          -3.756346989433602,
          -3.1653475667241158,
          -2.387525953718933,
          -2.8900308871883484,
          -7,
          -3.178431655600839,
          -2.8146501647125612,
          -3.3140779917792127,
          -2.408839837676014,
          -3.1345887800261094,
          -3.2668341386777238,
          -7,
          -7,
          -3.999855211039865,
          -7,
          -7,
          -4.455925441183637,
          -3.9018668128655483,
          -7,
          -2.454476626578019,
          -7,
          -7,
          -2.9855240968680246,
          -3.4059085667542925,
          -3.549908278205137,
          -3.898985570532309,
          -4.052996078945087,
          -3.5321341220629616,
          -3.6993792890721724,
          -2.91296955152229,
          -2.8430643424451443,
          -3.6646419755561257,
          -7,
          -2.7318542123823653,
          -4.05703544658085,
          -4.0622605454970895,
          -2.6478019710944465,
          -3.326594080702326,
          -3.0209970134783997,
          -3.0157513574644783,
          -3.9804124616068917,
          -3.2184992868459035,
          -4.494766629133628,
          -3.047891541225409,
          -3.2848253676580463,
          -2.8240267397174676,
          -3.701211682926409,
          -3.2414664304127747,
          -3.687136402800057,
          -3.3303122908199514,
          -4.472902651803664,
          -2.8044200749828567,
          -3.776898262895438,
          -3.833830684582083,
          -3.3240318112662224,
          -3.077246746270425,
          -3.5653755027140734,
          -3.318557569110699,
          -3.641102123773089,
          -3.705459384667452,
          -2.710525162960417,
          -2.7780432982809646,
          -3.0950935120040057,
          -2.656862143033687,
          -2.9640842761672306,
          -1.794614194858966,
          -3.6601197915175523,
          -2.77852640452227,
          -3.7742833327557155,
          -2.474819422014234,
          -2.1073754466862216,
          -2.928495423564597,
          -2.1030600316071943,
          -2.914095011775121,
          -2.968044570194652,
          -4.162848068856491,
          -2.9253041562091404,
          -3.2314950764482293,
          -4.448366169700718,
          -3.184807536815324,
          -1.1806561030119451,
          -3.1841504223615846,
          -3.679321884323715,
          -2.467588955990991,
          -2.5431083893749618,
          -2.937301172731602,
          -3.8481737162047907,
          -3.7318304202881625,
          -3.9744349283567657,
          -1.8568627185206399,
          -3.162707234517458,
          -3.170618332897216,
          -3.9936345938361932,
          -2.009698542326087,
          -3.668774060859105,
          -3.2226088481959576,
          -2.5193316846166227,
          -3.0252416887994142,
          -2.7564701305444474,
          -2.8700962645020613,
          -3.353403259377596,
          -2.966145815394173,
          -2.537151705229521,
          -4.1546065392836224,
          -2.5448603970897627,
          -1.5695436588515528,
          -3.2370967031246045,
          -2.2304805461701447,
          -4.452001227726593,
          -3.4966390991807463,
          -1.7478708307789022,
          -1.64251162631971,
          -3.5456008773184835,
          -4.145724574880668,
          -4.445588636884166,
          -4.448010273039476,
          -3.337472572794907,
          -2.663601345551572,
          -3.172091867626748,
          -2.531591308128764,
          -7,
          -3.145462789979763,
          -2.180982024435645,
          -4.475976104139765,
          -3.6245178211861346,
          -4.4497868469857735,
          -2.905611623054157,
          -3.8454856299390485,
          -2.1366033236200126,
          -2.875323139822814,
          -2.921686475483602,
          -4.471731651480051,
          -3.83312585370862,
          -3.1694098981407004,
          -2.9742135903699447,
          -7,
          -3.6750600320545788,
          -3.3483048630481607,
          -7,
          -4.1546065392836224,
          -3.320294686755554,
          -3.108198447191592,
          -7,
          -2.812348521866597,
          -7,
          -4.14789264483285,
          -3.234342035215775,
          -2.641505723669546,
          -2.689215620233142,
          -7,
          -3.635483746814912,
          -2.9549295985668733,
          -4.457685133412637,
          -3.251938666314157,
          -7,
          -3.685726814136828,
          -2.3383017338766767,
          -4.145895315578768,
          -2.9711366294768062,
          -3.3961412047190644,
          -3.68517424805309,
          -3.166066636783229,
          -3.276584339119928,
          -3.049948192500717,
          -3.6811356668587436,
          -7,
          -3.236848334173514,
          -2.755769346221779,
          -2.8010706272538823,
          -7,
          -3.344364199443406,
          -3.373746382634832,
          -3.624679808177516,
          -3.5036545192429593,
          -7,
          -4.148093417520579,
          -3.7032668063071807,
          -3.295009672664702,
          -2.214262203173111,
          -3.203190398327238,
          -2.952058661925562,
          -3.8617434431712057,
          -7,
          -3.424051942460124,
          -4.152074202768228,
          -2.3868660119200196,
          -3.6732820814542,
          -3.3923158260022936,
          -2.513837983934262,
          -3.762903528499057,
          -7,
          -2.4914265477852484,
          -2.366950530833321,
          -3.022194594880668,
          -3.359806304706641,
          -2.597128185952831,
          -3.1204451686960653,
          -2.791902403152317,
          -3.1815577738627865,
          -2.8180210108772434,
          -3.250447110981036,
          -3.616820471794698,
          -3.0974233099838835,
          -4.146205581340778,
          -7,
          -3.088801396163152,
          -3.8801559384642488,
          -3.854746187218726,
          -4.481743520420445,
          -3.0386698268227517,
          -4.170247043036237,
          -3.3216294947679144,
          -2.3870476724736753,
          -3.359550916763318,
          -3.2252949198983876,
          -7,
          -3.4246886399517753,
          -7,
          -3.2727286880397863,
          -2.925949573169082,
          -3.395393605710807,
          -7,
          -3.5632140189832664,
          -3.179521555186347,
          -1.9209689244466794,
          -4.155001836231253,
          -4.4515868904569045,
          -7,
          -3.844228581301628,
          -3.971012841545116,
          -4.447344117675954,
          -4.147969876081947,
          -3.528968093033398,
          -3.8629211006820983,
          -3.3553336134554423,
          -3.54917191710199,
          -3.851930678640268,
          -4.449308659474037,
          -4.451479405124862,
          -3.8535461212539044,
          -3.2766149674553477,
          -3.361844019667805,
          -3.2085607829433496,
          -2.276592468177811,
          -3.4425712173591396,
          -2.7326663010819305,
          -3.5514042482512638,
          -7,
          -3.3135157072120407,
          -3.498662748618196,
          -7,
          -2.3744663365963614,
          -3.853378760138451,
          -4.153921520067111,
          -2.780161942131146,
          -3.877515318847026,
          -3.4773672852240134,
          -4.448010273039476,
          -4.448876295154121,
          -2.52134380601364,
          -7,
          -3.550595207489328,
          -3.349875009222593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.824028155508092,
          -7,
          -7,
          -7,
          -4.192567453336546,
          -3.7317767307737038,
          -7,
          -7,
          -7,
          -7,
          -2.5705429398818973,
          -4.035389709198677,
          -7,
          -7,
          -2.9556877503135057,
          -4.173781630559868,
          -7,
          -7,
          -7,
          -3.2938043599193367,
          -3.1027766148834415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7551122663950713,
          -3.4679039465228003,
          -7,
          -7,
          -2.3508938095043144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6299190355035416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7937903846908188,
          -7,
          -3.4208355552872893,
          -7,
          -7,
          -7,
          -3.422589839851482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.620760489994206,
          -7,
          -7,
          -5.125051638496985,
          -7,
          -2.7297720531082863,
          -7,
          -7,
          -7,
          -7,
          -2.8129133566428557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.931966114728173,
          -7,
          -3.9289869711634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5216610151120733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -7,
          -2.3206654666652975,
          -7,
          -7,
          -7,
          -3.015778756389041,
          -3.8988896559265864,
          -7,
          -7,
          -7,
          -7,
          -4.382845196296262,
          -7,
          -7,
          -7,
          -3.530071568837378,
          -3.620448384711709,
          -3.015778756389041,
          -3.127958405334193,
          -2.9968494891850317,
          -7,
          -7,
          -7,
          -4.993445048570157,
          -7,
          -7,
          -3.292588312465555,
          -7,
          -7,
          -3.59802407233419,
          -7,
          -7,
          -7,
          -4.365824806859364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5471180513494303,
          -7,
          -3.673512399026766,
          -3.6734816970733473,
          -7,
          -7,
          -7,
          -7,
          -2.8003733548913496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.540379534670119,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6961340412397927,
          -7,
          -7,
          -7,
          -7,
          -2.795184589682424,
          -7,
          -7,
          -2.5925468421919335,
          -7,
          -7,
          -7,
          -7,
          -2.9685099632773224,
          -2.4001060704285453,
          -2.6650178254124723,
          -2.0456785207483104,
          -2.8397921844453293,
          -2.570153612664517,
          -7,
          -7,
          -7,
          -7,
          -3.6184664921990803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7331972651065697,
          -7,
          -7,
          -7,
          -4.354089222152247,
          -3.8457180179666586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.904282657645628,
          -7,
          -4.127881943484625,
          -5.712872683207005,
          -7,
          -7,
          -2.8920946026904804,
          -3.081707270097349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.827930669166558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9407654356312176,
          -7,
          -2.629613445378183,
          -2.0363627019845945,
          -7,
          -7,
          -4.312685006388759,
          -7,
          -3.833453114731084,
          -2.670709595223797,
          -4.7099988280251885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4774106879072515,
          -3.1027766148834415,
          -7,
          -3.161368002234975,
          -7,
          -7,
          -7,
          -3.438384107034714,
          -3.1072099696478683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3196784923566365,
          -7,
          -7,
          -7,
          -4.529436771200223,
          -3.88570038012833,
          -7,
          -4.283074974735472,
          -7,
          -1.673481697073347,
          -7,
          -7,
          -3.0458117739782704,
          -3.4871383754771865,
          -3.776773802412107,
          -7,
          -7,
          -7,
          -4.597859015386846,
          -3.8627870982353443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0863598306747484,
          -2.7573960287930244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6858312746260635,
          -5.176259153797791,
          -7,
          -3.3056379379043346,
          -5.018126051500581,
          -3.7658175153099185,
          -7,
          -7,
          -7,
          -3.042181594515766,
          -3.7745899502647946,
          -2.864171920961574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6317480743965693,
          -7,
          -3.421905415588571,
          -2.432969290874406,
          -7,
          -3.9916136656172863,
          -4.469858819035844,
          -7,
          -7,
          -7,
          -3.8933548248246317,
          -3.86993541064686,
          -4.287980783522498,
          -4.1805215511284315,
          -7,
          -7,
          -4.301073422940844,
          -7,
          -7,
          -3.880607825103815,
          -7,
          -4.0702041603125725,
          -4.921847680638257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530186886967461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.171133829751535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.01040597262518,
          -7,
          -7,
          -3.951528055366644,
          -2.7000688257699466,
          -7,
          -7,
          -7,
          -4.389995895119275,
          -7,
          -7,
          -7,
          -4.962047165769254,
          -4.202097621452882,
          -7,
          -4.434951936087753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.087839071542424,
          -5.010627815666308,
          -5.706309746387422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.210318519826232,
          -7,
          -7,
          -4.00814576996069,
          -7,
          -3.8288283871565176,
          -7,
          -7,
          -5.34727340695374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.425193219436662,
          -3.3283796034387376,
          -3.577491799837225,
          -7,
          -7,
          -4.339570682001439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.796241200121809,
          -3.598571663482141,
          -7,
          -7,
          -3.4224913492099662,
          -7,
          -3.349374674204051,
          -7,
          -7,
          -3.067219688974141,
          -7,
          -7,
          -7,
          -3.0278929853644447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0977164374180046,
          -4.786872042749559,
          -7,
          -7,
          -3.3271545124094315,
          -7,
          -3.14035088925253,
          -7,
          -7,
          -3.9461328133753497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.978545700462739,
          -7,
          -7,
          -3.221283799492686,
          -3.4955443375464483,
          -7,
          -3.5391388535767745,
          -7,
          -7,
          -7,
          -7,
          -3.471710153639844,
          -2.7371926427047373,
          -7,
          -2.4650852875574327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.792181496149679,
          -7,
          -7,
          -3.481729196960016,
          -3.1098852087458977,
          -3.6018427897820984,
          -7,
          -4.302395873152567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.226471015317139,
          -2.992553517832136,
          -7,
          -7,
          -7,
          -3.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3709754493589705,
          -7,
          -7,
          -7,
          -3.79039073332807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.791620482692814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.514547752660286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8891615849113204,
          -3.7295427422712732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334795422556774,
          -7,
          -7,
          -7,
          -4.3163687904089905,
          -7,
          -7,
          -7,
          -3.2750808984568587,
          -7,
          -7,
          -4.56370055036805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.237622270987323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4759615891924236,
          -7,
          -7,
          -4.606375990145637,
          -7,
          -3.893595333819883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3666097103924297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.869397971828717,
          -7,
          -7,
          -7,
          -7,
          -3.864807629026147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2173523198813627,
          -7,
          -7,
          -4.451725046806695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14367043347016,
          -7,
          -7,
          -7,
          -3.486949715838293,
          -7,
          -7,
          -7,
          -3.6097011023793995,
          -4.073498398717262,
          -2.2570783059665684,
          -7,
          -7,
          -7,
          -4.381349771059741,
          -7,
          -7,
          -3.292920299600006,
          -7,
          -7,
          -2.979548374704095,
          -3.6902551636939207,
          -4.275794914631003,
          -7,
          -7,
          -7,
          -4.993078948010719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.295347148333618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.148201487458512,
          -7,
          -7,
          -7,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0621681733517825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.361160995195026,
          -7,
          -3.216957207361097,
          -7,
          -7,
          -7,
          -4.037003337451435,
          -7,
          -7,
          -7,
          -2.9375178920173464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.398821214408981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.037027879755775,
          -7,
          -4.067182485523405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7264826967848297,
          -3.307067950661298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.599610188318619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.709295407172643,
          -7,
          -7,
          -7,
          -7,
          -3.4225077658680756,
          -7,
          -7,
          -7,
          -3.1357685145678222,
          -7,
          -7,
          -2.787460474518415,
          -7,
          -3.092896010921856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.830213229831968,
          -3.8809849904867533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.351151212403978,
          -7,
          -7,
          -7,
          -7,
          -3.7386220279179425,
          -7,
          -7,
          -7,
          -3.3727279408855955,
          -7,
          -7,
          -7,
          -3.6802448370426077,
          -7,
          -7,
          -7,
          -7,
          -4.0775556349820405,
          -7,
          -4.596411301688093,
          -7,
          -7,
          -4.716741851172329,
          -3.759592308645975,
          -7,
          -7,
          -7,
          -7,
          -3.467312062980552,
          -3.100628976831171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.500250200730158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4631685609915746,
          -7,
          -7,
          -7,
          -7,
          -5.23491444587379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.43362584503636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.689584091501692,
          -5.186604634819657,
          -5.2291141844551285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.927864609296833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3111178426625054,
          -4.1773344555057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1986570869544226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.616612029993923,
          -7,
          -7,
          -7,
          -3.624127331511917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2161659022859928,
          -3.9755696578936623,
          -7,
          -7,
          -7,
          -3.4838724542226736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.44378109287485,
          -3.4240645254174877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.334453751150931,
          -7,
          -4.026083620800987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.543608690196552,
          -7,
          -3.4077307280263356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0195316845312554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495225090106221,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3873898263387296,
          -3.071391001621373,
          -2.810098040681143,
          -7,
          -3.4360035356698964,
          -3.295312267721071,
          -7,
          -7,
          -2.9093777108309906,
          -3.2427649777520964,
          -2.9346907871554375,
          -2.588691788592222,
          -7,
          -7,
          -7,
          -7,
          -3.0939927496520165,
          -3.6775613311560935,
          -7,
          -3.207095540419218,
          -2.8191189727893615,
          -7,
          -3.107718610520263,
          -3.3500540935790304,
          -2.9876662649262746,
          -2.9014583213961123,
          -7,
          -3.700247843649352,
          -2.774224904868919,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6853834098014873,
          -7,
          -3.134389632406994,
          -7,
          -3.555723674553692,
          -3.0847549631793543,
          -7,
          -2.8189952374500518,
          -7,
          -2.2823104961985092,
          -7,
          -3.4727564493172123,
          -7,
          -2.6501687043735536,
          -7,
          -2.685862871168959,
          -2.9624640460579013,
          -1.2571886216562271,
          -3.2054750367408906,
          -7,
          -2.9783327140589657,
          -2.704436519143124,
          -7,
          -7,
          -7,
          -3.375297738217339,
          -2.491050259986647,
          -2.0907068367582795,
          -3.1549309119861473,
          -7,
          -3.3666097103924297,
          -7,
          -7,
          -2.3229485887456063,
          -3.183056203693958,
          -3.375846436309156,
          -7,
          -3.4149508617276534,
          -7,
          -3.61066016308988,
          -7,
          -3.401400540781544,
          -1.1175501570831434,
          -2.683272236315922,
          -3.1097472377132287,
          -7,
          -7,
          -7,
          -3.2150203546471214,
          -3.725176301419137,
          -3.2597133053907306,
          -7,
          -2.9222265497856523,
          -3.1190083104691966,
          -2.3694656262518725,
          -7,
          -7,
          -3.1722136039924793,
          -3.5559404378185113,
          -3.022840610876528,
          -3.4506339505970054,
          -3.3896975482063856,
          -3.4238190919654046,
          -3.458033192496506,
          -7,
          -3.3510228525841237,
          -2.5159517231132873,
          -7,
          -2.2969784210590283,
          -3.0404704759922456,
          -0.9024655519714955,
          -2.3123343546117208,
          -7,
          -7,
          -7,
          -3.513084360465144,
          -3.160351796497107,
          -7,
          -7,
          -7,
          -3.4243915544102776,
          -3.484157424365381,
          -7,
          -4.223132362471588,
          -3.5125732296355796,
          -3.436162647040756,
          -3.64018319192134,
          -3.1419198739138805,
          -4.0987086056043305,
          -2.715446198616883,
          -2.707002099520009,
          -3.0677402029262404,
          -7,
          -7,
          -1.4588888292013262,
          -2.333538868819963,
          -7,
          -2.8783302654068548,
          -3.62212763918045,
          -7,
          -7,
          -7,
          -3.375846436309156,
          -7,
          -2.9500517490365605,
          -3.378216149749878,
          -3.164271722213462,
          -3.344915993352923,
          -7,
          -7,
          -7,
          -3.3944516808262164,
          -3.2027606873931997,
          -4.120244795546365,
          -2.7244806771885997,
          -7,
          -7,
          -7,
          -3.1482822254644347,
          -3.3564083270389813,
          -7,
          -3.269512944217916,
          -2.672493690697651,
          -3.37675939540488,
          -7,
          -3.543074235033532,
          -3.156650091362893,
          -2.842817185260646,
          -3.563243701140398,
          -2.66805960729094,
          -2.5888317255942073,
          -2.2790800154604183,
          -3.3578373102701593,
          -3.4144719496293026,
          -7,
          -7,
          -7,
          -3.40671045860979,
          -7,
          -7,
          -3.1042736673203346,
          -7,
          -4.319813684538678,
          -7,
          -2.7685147746865404,
          -2.9443468382417373,
          -7,
          -3.516337020623613,
          -2.3688290269918513,
          -3.0424442461608465,
          -3.619823500457278,
          -3.233884108765886,
          -3.0860037056183818,
          -3.49996186559619,
          -3.0580462303952816,
          -2.9380190974762104,
          -7,
          -3.5073835557363866,
          -7,
          -2.7995027206585665,
          -2.8780619812900126,
          -3.6773148918608625,
          -7,
          -2.280456529745993,
          -7,
          -7,
          -3.4348881208673157,
          -2.757142869659127,
          -7,
          -3.4287825114969546,
          -2.864451747158183,
          -3.3049211619008916,
          -7,
          -2.3920759410252943,
          -3.787460474518415,
          -2.7737376998796326,
          -7,
          -7,
          -3.4058583993176366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9985644582609416,
          -3.4490153163477864,
          -4.18613667169178,
          -4.11236533622378,
          -7,
          -3.4122925093230463,
          -3.131137273778607,
          -7,
          -7,
          -3.375846436309156,
          -3.2942457161381182,
          -3.0665743775895824,
          -3.5407047833107623,
          -7,
          -7,
          -7,
          -3.3958503760187813,
          -7,
          -7,
          -2.645790575645571,
          -3.2185452300053567,
          -7,
          -7,
          -7,
          -7,
          -3.4531653925258574,
          -7,
          -7,
          -7,
          -7,
          -3.2638726768652235,
          -3.417803722639881,
          -3.22219604630172,
          -3.5546102852261643,
          -7,
          -7,
          -1.5236235880551368,
          -2.8862650590297565,
          -2.558405508119852,
          -7,
          -3.345430913802812,
          -7,
          -3.3960248966085933,
          -3.1020905255118367,
          -2.888067113407437,
          -3.0176890582210874,
          -1.5358280206796917,
          -2.4105585475204636,
          -3.4628470358316736,
          -2.142363390979571,
          -3.1486026548060932,
          -7,
          -3.03261876085072,
          -2.8231946704339643,
          -2.5358781109177286,
          -7,
          -7,
          -3.512550992904211,
          -7,
          -7,
          -7,
          -2.598571663482141,
          -3.5348718599395945,
          -2.898999270889789,
          -7,
          -7,
          -3.569225185670545,
          -2.7260476681558012,
          -7,
          -4.023561090096945,
          -7,
          -2.9858753573083936,
          -2.388163005253829,
          -3.2657609167176105,
          -3.5573868820595074,
          -3.39750549689802,
          -3.4207256768599095,
          -3.0942381380341772,
          -2.7557055070714362,
          -2.265889361875121,
          -3.757536918719722,
          -2.2881826065009245,
          -7,
          -7,
          -7,
          -3.39701252410831,
          -2.625826713285711,
          -7,
          -7,
          -2.9406160823374075,
          -7,
          -2.307833703718926,
          -3.4154741681092355,
          -2.7897729487512173,
          -7,
          -3.4868553552769432,
          -2.8708426604757014,
          -7,
          -3.6634712349862872,
          -3.417836911626325,
          -4.0909486408698665,
          -7,
          -3.2034136800964528,
          -3.795499715476454,
          -2.56534174619609,
          -7,
          -2.7746629225378223,
          -7,
          -3.719082573901486,
          -3.2940250940953226,
          -2.9447910104534314,
          -3.113609151073028,
          -3.361538971269279,
          -7,
          -2.727744530836107,
          -3.0982975364946976,
          -7,
          -3.457124626303409,
          -3.491921712586151,
          -3.4102709642521845,
          -2.4827826631659913,
          -7,
          -7,
          -4.137396314809074,
          -4.483815437748665,
          -7,
          -3.778078861937455,
          -4.250314262316336,
          -3.927626962444954,
          -3.492993067565435,
          -3.568468407822322,
          -3.5099749598454677,
          -3.7507397512353506,
          -3.4586378490256493,
          -4.039949220939654,
          -4.432391984779924,
          -4.704442237268507,
          -3.521737223361478,
          -4.063051745747089,
          -4.212604823985944,
          -3.852459661022236,
          -3.797059694699971,
          -7,
          -7,
          -4.436854986375111,
          -7,
          -3.6509385888289296,
          -3.316359806957494,
          -4.364944777212948,
          -4.373867870327068,
          -7,
          -7,
          -3.6108304412657146,
          -3.363692546534042,
          -4.693216748951045,
          -3.7565220053905515,
          -3.9387698227831174,
          -3.2688119037397803,
          -7,
          -3.969322706112202,
          -3.877025615867249,
          -4.232411578420845,
          -2.8754775801315455,
          -7,
          -3.841314769257563,
          -3.1970930127175414,
          -3.6754116937148633,
          -2.8447532250045566,
          -3.2491418907324983,
          -3.3047058982127653,
          -3.4915042671197116,
          -3.0229155215247347,
          -3.3889001083542367,
          -3.866361192410094,
          -3.150937764940095,
          -3.1159956797476744,
          -7,
          -3.0014203636304737,
          -3.146334793350271,
          -7,
          -3.4260230156898763,
          -4.1035984939779375,
          -7,
          -7,
          -3.308838714446678,
          -3.2469415124832546,
          -4.593988585146381,
          -7,
          -2.9777236052888476,
          -7,
          -3.3838909217359983,
          -7,
          -4.6302464573197675,
          -3.3588228453741857,
          -4.262189959913005,
          -7,
          -3.6582022533870147,
          -3.4183314286836173,
          -3.681248197167286,
          -3.160543558238841,
          -2.9571042293287895,
          -3.6109261934087056,
          -3.2640231786798104,
          -3.1495537774495497,
          -7,
          -3.0539483984211167,
          -3.788243812055398,
          -3.732393759822968,
          -3.9195545664811595,
          -7,
          -3.0556076517087116,
          -3.3475867664222134,
          -3.6338722626583326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5426995708464664,
          -1.9867717342662448,
          -1.8582494207270297,
          -7,
          -2.866995813110648,
          -2.6339272981810673,
          -7,
          -2.462167541814003,
          -3.090258052931316,
          -2.6612801355233766,
          -3.3664229572259727,
          -2.7471820510443075,
          -2.33527212215128,
          -3.439332693830263,
          -7,
          -3.8796692056320534,
          -3.110589710299249,
          -2.7255032688593155,
          -3.1758016328482794,
          -3.1295287738587763,
          -2.986659788272094,
          -7,
          -7,
          -2.3207570223696323,
          -2.4283053396747674,
          -7,
          -3.0391977292952763,
          -7,
          -7,
          -3.9165486933741898,
          -3.1606133994250425,
          -3.337548761830192,
          -7,
          -3.657629431388952,
          -1.9003244482493893,
          -7,
          -1.9128670578471783,
          -7,
          -2.4498639247181444,
          -1.9279696154297532,
          -7,
          -7,
          -7,
          -2.3191060593097763,
          -2.737788791709675,
          -7,
          -2.7662888869340487,
          -2.408663874063811,
          -7,
          -2.2573185130976388,
          -2.306922610847946,
          -3.3961245911816342,
          -7,
          -1.9041066737190036,
          -1.9705924583816672,
          -7,
          -3.021106568432122,
          -2.950202531637585,
          -7,
          -3.984707294482673,
          -2.286793175654974,
          -2.457934544280078,
          -2.461929755824591,
          -2.675319983339292,
          -7,
          -7,
          -7,
          -7,
          -3.1082266563749283,
          -7,
          -2.1412257370365086,
          -1.8773164864644205,
          -3.5141491344754376,
          -7,
          -1.8255715969364985,
          -2.0836891886444,
          -2.468864040148188,
          -3.6112983622964285,
          -2.329617194839177,
          -3.1935883405041348,
          -3.2561763441015508,
          -3.5039268041935103,
          -2.552355286244995,
          -2.900093901543398,
          -3.5150786750759226,
          -7,
          -3.3619166186686433,
          -7,
          -7,
          -2.9681092011281978,
          -2.464042205438811,
          -2.7597622462728526,
          -2.680666199170931,
          -7,
          -3.5123374623329355,
          -3.266408107693024,
          -3.3259943001703647,
          -2.223293990490537,
          -7,
          -2.1304574814945334,
          -7,
          -2.407603325351417,
          -1.9217211483096077,
          -3.2189291850880872,
          -7,
          -2.7732987475892314,
          -2.3677858446531794,
          -2.514088407416947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.382917135087531,
          -2.7618204859340345,
          -7,
          -3.2763468962530333,
          -2.641639335722719,
          -7,
          -7,
          -7,
          -3.45484486000851,
          -3.42845877351558,
          -2.8467493518208467,
          -3.0569048513364727,
          -3.2609950704669153,
          -3.0329064302537683,
          -7,
          -7,
          -7,
          -3.414555556229215,
          -3.428620672671939,
          -7,
          -3.179303656465203,
          -2.975431808509263,
          -3.447623097760286,
          -3.4094258686714434,
          -3.04766419460156,
          -2.4876433104043176,
          -7,
          -3.3811150807098507,
          -3.6055205234374688,
          -7,
          -2.5408159235773624,
          -2.628261177591116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.203967952980513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3411213332477665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.305136318943639,
          -7,
          -5.140558320241512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8277783856132026,
          -7,
          -2.9349471026077483,
          -3.4740705032150436,
          -7,
          -7,
          -3.3979400086720375,
          -7,
          -7,
          -7,
          -7,
          -2.8639173769578603,
          -7,
          -4.1456158867489155,
          -7,
          -7,
          -7,
          -7,
          -1.8609019409522591,
          -7,
          -7,
          -7,
          -4.647441654593042,
          -7,
          -3.3025473724874854,
          -7,
          -7,
          -3.5599066250361124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4553017716570764,
          -7,
          -7,
          -7,
          -4.627665355034582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.84060787900929,
          -7,
          -7,
          -7,
          -3.961278679085043,
          -7,
          -7,
          -7,
          -7,
          -3.7712382882869084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.720572720364261,
          -2.924795995797912,
          -7,
          -7,
          -7,
          -3.992884745367121,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.146252102092995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5841049703994527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.817528644306543,
          -4.451929130760516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3969835082752007,
          -4.148795391897928,
          -7,
          -7,
          -7,
          -3.0930713063760633,
          -7,
          -7,
          -3.2008504980910777,
          -3.037027879755775,
          -7,
          -3.6029277128591892,
          -7,
          -3.3384564936046046,
          -7,
          -3.335808805235897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.737113094305961,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8972971220594963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.797613730153076,
          -7,
          -7,
          -7,
          -4.309587587448228,
          -7,
          -4.229605059841376,
          -7,
          -4.708760723690316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.414639146737009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.281714970027296,
          -3.3120185940611497,
          -7,
          -7,
          -7,
          -4.6539132533085725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.465977368285823,
          -7,
          -7,
          -7,
          -7,
          -5.527203129014305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.855385878893443,
          -4.382323283381981,
          -5.875149271488847,
          -7,
          -3.7724684030532805,
          -7,
          -3.754806855354423,
          -7,
          -7,
          -7,
          -7,
          -3.7638022240745928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8003045775561985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1796838976987285,
          -7,
          -7,
          -7,
          -7,
          -4.996498538049875,
          -4.577997033811073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.528312379405361,
          -4.0948901970066505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.674576414677026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6109793799229974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.933720063988503,
          -7,
          -7,
          -7,
          -4.3592661646067485,
          -4.6779261695536105,
          -7,
          -4.43261658390379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.990343295403774,
          -4.788567116513815,
          -5.706185039691581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.641126932803509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.303854561999643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2975416678181597,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.795226346759703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6361868951987244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.785835031358666,
          -7,
          -7,
          -3.9219984313082707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.503109436671369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2638726768652235,
          -4.392501545165524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.025439001182824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.224584853731531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8842287696326037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2567978962927286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4254527011208484,
          -7,
          -3.371756379183961,
          -2.8173449714419307,
          -3.232487866352986,
          -2.6450126734667045,
          -3.0075557586251014,
          -3.145341457592178,
          -7,
          -7,
          -7,
          -3.7223047868743278,
          -7,
          -2.945320840792275,
          -3.092896010921856,
          -7,
          -3.4926672826952765,
          -3.007114868333033,
          -7,
          -3.736157375273132,
          -3.709354775834396,
          -3.5298151966446305,
          -7,
          -7,
          -3.6621965517146178,
          -7,
          -7,
          -7,
          -7,
          -3.8260099777911005,
          -7,
          -3.28668096935493,
          -3.712481337801919,
          -3.366111523378347,
          -7,
          -3.0151440248451427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8967466156074058,
          -3.302330928684399,
          -7,
          -2.391625376623903,
          -3.8736692927067944,
          -2.30085762238055,
          -2.8062997077939285,
          -3.4424797690644486,
          -3.4577305482459986,
          -2.917272049269057,
          -7,
          -7,
          -7,
          -7,
          -3.453624073591451,
          -2.881332772835035,
          -2.6233818386918952,
          -7,
          -7,
          -2.3229485887456063,
          -1.8609019409522591,
          -7,
          -3.476203441669523,
          -3.243368813730389,
          -3.2657609167176105,
          -3.071520101773189,
          -7,
          -2.9968867645758572,
          -7,
          -3.2551116255008354,
          -2.111890968147374,
          -3.8295610562993927,
          -7,
          -7,
          -7,
          -7,
          -3.1931245983544616,
          -3.612306930268642,
          -3.8143142002074595,
          -3.8053649074664455,
          -2.6902460104127837,
          -2.8686444383948255,
          -2.817680315496243,
          -7,
          -7,
          -2.608763677622469,
          -3.510343901389912,
          -3.2490760036836117,
          -3.453573132944873,
          -7,
          -2.432458028047709,
          -3.4587133719337437,
          -7,
          -7,
          -2.8694170121245586,
          -7,
          -3.2477892042772956,
          -3.3135157072120407,
          -2.314895600408783,
          -2.6027017833676314,
          -3.27238316915648,
          -7,
          -7,
          -3.788239097382168,
          -3.205940800357829,
          -7,
          -7,
          -3.8360074591255313,
          -3.436374704897461,
          -3.953373050726696,
          -7,
          -3.11549956660232,
          -3.1161907409628373,
          -7,
          -4.06513137214021,
          -7,
          -3.7835631028395746,
          -2.497366198100159,
          -2.6962981293621393,
          -3.162564406523019,
          -7,
          -3.055378331375,
          -2.51382110743545,
          -7,
          -7,
          -7,
          -3.493086104087192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.863804198383527,
          -2.796877747701869,
          -2.6225824008556593,
          -3.0750905299454705,
          -7,
          -2.5813166329516766,
          -3.7131544018372984,
          -2.8832557420069715,
          -3.7834747875822465,
          -3.904985881099363,
          -4.056752440567439,
          -7,
          -3.1308963782476624,
          -7,
          -2.1863088337034826,
          -7,
          -7,
          -2.4949492776471365,
          -2.585249170935557,
          -7,
          -3.7926717891415676,
          -3.503245771465113,
          -2.8555797225017177,
          -3.1499577088910593,
          -3.2131191388114564,
          -3.242008704084836,
          -2.9595864748926832,
          -1.1507786800078956,
          -2.694314664503264,
          -3.0390967104414504,
          -7,
          -7,
          -7,
          -7,
          -2.8838236063586025,
          -3.013342904345347,
          -3.161401280230616,
          -7,
          -3.5306387121215916,
          -3.71281800020785,
          -2.5976074408031,
          -2.9080297944208646,
          -7,
          -3.1298279460755056,
          -2.851105401197895,
          -3.3145693943004555,
          -3.1486643399822363,
          -3.8000981801747757,
          -2.583198773968623,
          -2.9353632928474607,
          -3.8003733548913496,
          -2.8722048488326677,
          -7,
          -2.093184973714775,
          -7,
          -2.6008448229987358,
          -3.2214142378423385,
          -2.811999807700087,
          -7,
          -3.3737786750385,
          -7,
          -3.4153072922255676,
          -3.748498126613737,
          -3.02201573981772,
          -7,
          -7,
          -3.3100982718561998,
          -7,
          -7,
          -3.152227171838142,
          -4.437877345621435,
          -3.1177498976848512,
          -7,
          -7,
          -3.7346398389876994,
          -7,
          -7,
          -3.4403579968152878,
          -7,
          -7,
          -7,
          -3.3274611093031417,
          -3.9597804954029976,
          -3.9844172881402207,
          -7,
          -7,
          -7,
          -7,
          -3.711047603867034,
          -3.7208205817703437,
          -3.8339117150713786,
          -3.50385874895841,
          -3.803115554890027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4334403772443878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.752355804153501,
          -7,
          -3.4567454953479446,
          -7,
          -3.3392526340327,
          -3.127226318996642,
          -3.448087666692341,
          -7,
          -7,
          -7,
          -2.6539529402862674,
          -3.8285310066451013,
          -2.9656831619252855,
          -3.4583356259919475,
          -3.35061236261552,
          -3.767007363949804,
          -7,
          -3.4323277922616042,
          -3.8603380065709936,
          -3.229383167513614,
          -2.5942662377207433,
          -3.0399426187629923,
          -3.4619859715365204,
          -3.0969794945667846,
          -7,
          -3.020527012274563,
          -3.485579476984679,
          -2.533275081158002,
          -2.6897822691521336,
          -7,
          -3.4313637641589874,
          -3.787956123283932,
          -3.428701599623054,
          -7,
          -7,
          -2.9328541131019046,
          -3.517195897949974,
          -7,
          -3.0910804693473324,
          -3.497137064051958,
          -3.307406112562047,
          -3.01678967629609,
          -3.121067167467729,
          -3.078474943488153,
          -7,
          -7,
          -3.9318645134920316,
          -3.340311889391722,
          -7,
          -3.4191293077419758,
          -7,
          -3.820398522703982,
          -3.6033609243483804,
          -7,
          -3.6820201893903968,
          -3.4805099729419604,
          -7,
          -7,
          -7,
          -2.7839876064533984,
          -3.041836622994272,
          -2.959756672990995,
          -3.4510184521554574,
          -7,
          -7,
          -3.5299434016586693,
          -3.73917663191073,
          -2.8386242424371755,
          -3.7563317673210577,
          -3.1720188094245563,
          -3.6452257115354163,
          -3.7563317673210577,
          -3.0641345304339667,
          -3.316958297346295,
          -3.4780471080710216,
          -7,
          -3.7353992699626937,
          -3.024059030718059,
          -3.0720864292830243,
          -7,
          -2.7254661258631927,
          -7,
          -3.3071214846498904,
          -4.03181227133037,
          -3.520134035100441,
          -7,
          -7,
          -7,
          -3.5543680009900878,
          -7,
          -7,
          -7,
          -3.9586594270529334,
          -7,
          -2.668756154146636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.273147942319154,
          -4.150434052241625,
          -7,
          -3.8615045408853748,
          -3.1422168015774887,
          -7,
          -3.9362120443202486,
          -4.0935792634395645,
          -7,
          -4.540529679695608,
          -4.154271775993095,
          -7,
          -4.41355959230525,
          -4.247148059443245,
          -7,
          -7,
          -7,
          -4.697197946843088,
          -7,
          -3.473588022310713,
          -3.763253242238571,
          -7,
          -4.700599889320824,
          -7,
          -7,
          -3.6607841925779394,
          -7,
          -4.717870132737748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.041655814207112,
          -3.9990652616597355,
          -2.943751272633304,
          -7,
          -3.480826709583002,
          -3.5915815730415983,
          -3.137072650257898,
          -3.9634572601167077,
          -3.812445402872756,
          -7,
          -3.1709836240531404,
          -2.9562885174336575,
          -3.4136908442354623,
          -7,
          -3.1775139549882887,
          -2.987633166996761,
          -7,
          -2.611410087031918,
          -3.5756496147552195,
          -3.7204900684500517,
          -4.036908222920219,
          -4.451356532162689,
          -7,
          -7,
          -3.052004367218563,
          -3.3208973293592754,
          -4.348632429022909,
          -3.730862992046494,
          -3.0247592390353963,
          -7,
          -3.458605805035887,
          -7,
          -3.981823638939474,
          -3.520928734708947,
          -4.3257413721537965,
          -7,
          -3.8069257768837317,
          -3.8023084048433162,
          -4.036741978159807,
          -3.461048091670658,
          -3.623889919047242,
          -7,
          -3.331681605284793,
          -3.594331152979141,
          -3.75815462196739,
          -2.9565309447935024,
          -3.722414526478677,
          -3.9181352261663593,
          -3.9092999920457463,
          -7,
          -3.330768775572884,
          -3.70091514151692,
          -3.910375352215901,
          -7,
          -3.711975854351756,
          -7,
          -7,
          -7,
          -3.356433813056529,
          -2.5378820317420177,
          -2.8671181483544954,
          -7,
          -7,
          -3.3842230394187056,
          -7,
          -3.523226041965701,
          -3.7280289544205187,
          -3.232021452903135,
          -7,
          -3.3967093741958863,
          -3.1646997561706938,
          -3.449478399187365,
          -7,
          -7,
          -7,
          -3.268297087223767,
          -7,
          -7,
          -4.027512692448811,
          -7,
          -3.456973013635818,
          -3.811038508604216,
          -3.204337075628155,
          -7,
          -3.5721452356121848,
          -7,
          -7,
          -7,
          -3.5788380110719613,
          -4.041497955909414,
          -7,
          -7,
          -2.439891652622822,
          -7,
          -2.57611089412084,
          -7,
          -3.098782124314692,
          -2.9891788795202707,
          -7,
          -7,
          -7,
          -2.7150278702988717,
          -3.4988157877634483,
          -7,
          -3.5046747087698833,
          -3.1741325234191096,
          -7,
          -2.7726550358373743,
          -2.77509442444802,
          -4.307945075845931,
          -7,
          -2.6299458313993953,
          -2.4655480766670377,
          -7,
          -3.571685544616966,
          -7,
          -7,
          -7,
          -3.3545565944718043,
          -2.975226868144468,
          -2.922610138162019,
          -3.93379088414342,
          -7,
          -7,
          -7,
          -3.7453871213200087,
          -7,
          -7,
          -3.1337943006045124,
          -2.864431967389915,
          -7,
          -7,
          -2.6543771120020185,
          -2.640150040936102,
          -2.902447941243036,
          -7,
          -3.0940166811204226,
          -7,
          -4.004450352989225,
          -7,
          -3.343098976544499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4630713808122473,
          -7,
          -3.682224072862761,
          -7,
          -3.5831760948134486,
          -3.29903853947173,
          -7,
          -2.9681909858660296,
          -7,
          -3.3316971703724616,
          -7,
          -2.751712027576497,
          -2.8530895298518657,
          -7,
          -7,
          -3.2072303098483532,
          -3.773640193260026,
          -3.4695716724419987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5640344779100492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.43568513794163,
          -7,
          -3.7453871213200087,
          -7,
          -7,
          -3.28807525427587,
          -4.018908444316327,
          -3.66133934000604,
          -7,
          -7,
          -7,
          -3.745465168670727,
          -7,
          -3.256849986066561,
          -3.28004693749461,
          -3.453547660380749,
          -7,
          -7,
          -3.857995495560924,
          -7,
          -7,
          -7,
          -7,
          -3.9623219727295846,
          -3.4978277360835044,
          -7,
          -7,
          -7,
          -3.604657972047871,
          -7,
          -7,
          -3.6239725120169965,
          -2.8206119069993245,
          -3.2218487496163566,
          -3.02201573981772,
          -3.0501863496753607,
          -3.387846514512132,
          -7,
          -7,
          -7,
          -2.6703816337480153,
          -2.8993169979180546,
          -7,
          -2.026474895531622,
          -3.6006462356623947,
          -7,
          -7,
          -2.847229804082146,
          -2.9377492894912,
          -7,
          -2.2377255117151944,
          -2.649838831877486,
          -2.3944516808262164,
          -2.790385706800655,
          -7,
          -2.271299367747906,
          -2.243658026638696,
          -7,
          -2.1863683671103558,
          -2.1389524923183503,
          -3.13840796891747,
          -2.2323607123535703,
          -2.9454685851318194,
          -2.1731074848325744,
          -3.0270436588491743,
          -3.520418023353549,
          -7,
          -2.56147407266352,
          -3.6405808064896528,
          -3.1928675433117966,
          -7,
          -3.0471774810216448,
          -3.758306181725307,
          -2.90803798386038,
          -2.723236690821973,
          -3.3361594264847807,
          -2.8964343519192703,
          -2.4659644526568525,
          -3.2133406385265157,
          -2.8227400033286365,
          -2.8290720873190467,
          -3.0246908623554307,
          -2.5306516175798683,
          -3.036273934588904,
          -7,
          -3.3638938977741004,
          -2.8980392005877604,
          -3.1915441607348294,
          -3.198931869932209,
          -3.2000292665537704,
          -3.617000341120899,
          -3.0573807905423553,
          -2.8607571230815423,
          -2.970169052064559,
          -3.620760489994206,
          -7,
          -3.183056203693958,
          -7,
          -3.476203441669523,
          -7,
          -7,
          -3.797059694699971,
          -3.631570588836501,
          -7,
          -3.164427214911732,
          -7,
          -7,
          -2.663386788318517,
          -7,
          -2.791590407939026,
          -7,
          -7,
          -3.6611498572447867,
          -7,
          -2.546542663478131,
          -2.3138672203691537,
          -3.722057771331464,
          -2.858048190695858,
          -3.5460488664017342,
          -3.670245853074124,
          -3.3109056293761414,
          -7,
          -3.7945577512547617,
          -3.4282968139828798,
          -2.452224674191046,
          -2.4692917058468566,
          -7,
          -3.293288876794244,
          -7,
          -3.002274081774949,
          -7,
          -2.9987621687240558,
          -7,
          -2.695043658821294,
          -3.7044936970092985,
          -2.9396301693557567,
          -3.2622770206322533,
          -3.3525683861793083,
          -3.6317480743965693,
          -2.909912446562701,
          -3.4000196350651586,
          -2.912159514124199,
          -2.973681918503984,
          -7,
          -2.580696939712437,
          -2.525538393658412,
          -2.3737476670376476,
          -3.674952948048565,
          -2.6521047694008844,
          -3.3181929127898804,
          -3.652922887567942,
          -3.5440266810013323,
          -3.6572471298837166,
          -3.292996875989236,
          -3.212098782544173,
          -2.4391953457956252,
          -3.881897973573011,
          -3.6163704722912695,
          -7,
          -2.4090036338875827,
          -2.9122884979739743,
          -7,
          -3.6061663146076204,
          -2.3255221789694747,
          -7,
          -7,
          -3.6045500325712614,
          -7,
          -7,
          -3.1997551772534747,
          -2.950364854376123,
          -2.428772704799911,
          -2.474788422887191,
          -7,
          -7,
          -7,
          -3.3268476989159903,
          -2.7910763089412547,
          -4.174844493655455,
          -3.1664301138432824,
          -7,
          -7,
          -2.5472065049379498,
          -3.407900540142635,
          -7,
          -7,
          -7,
          -3.7051792448736762,
          -2.661917803408258,
          -7,
          -2.4167236975467343,
          -2.577204473011063,
          -2.3397090190622074,
          -2.9554472105776957,
          -2.4519831357776205,
          -2.943247125137862,
          -7,
          -2.815008832325241,
          -7,
          -7,
          -7,
          -2.459863471952342,
          -2.9355072658247128,
          -3.6287974855667104,
          -3.6073477767684134,
          -2.8458273340259437,
          -7,
          -4.054019036112275,
          -7,
          -3.468691871867676,
          -2.776800033307582,
          -3.3713449830820985,
          -3.142285156167115,
          -2.6929056434314544,
          -3.2283147918655883,
          -2.7304886350318736,
          -3.71566914240099,
          -2.409208292317029,
          -2.410821614807109,
          -2.9370161074648142,
          -3.1160540087584403,
          -7,
          -2.6332557746341494,
          -7,
          -3.6201013378002385,
          -2.4403579968152878,
          -7,
          -2.7182940414897097,
          -3.0743099747196676,
          -3.6024940688072813,
          -3.189817712495049,
          -3.1746411926604483,
          -3.0169498130975607,
          -7,
          -3.6484575942825224,
          -0.9118469463399004,
          -1.1258855686751243,
          -7,
          -2.734727113894763,
          -4.419840141416905,
          -2.402957006685218,
          -7,
          -7,
          -3.634779458145952,
          -7,
          -3.1444704211395553,
          -2.6416723732246865,
          -3.614158709509175,
          -2.6089148379737113,
          -2.133764262253283,
          -2.106316175379106,
          -2.2463344173155235,
          -3.9998805525927055,
          -7,
          -2.792291610114955,
          -3.173186268412274,
          -3.3890774437923494,
          -2.825642453753319,
          -3.6173149332982937,
          -2.2329961103921536,
          -3.721645766289746,
          -2.763760658827693,
          -3.295786940251609,
          -7,
          -2.9177155165594932,
          -7,
          -3.2987439434824073,
          -3.137775961313472,
          -2.8216772586543666,
          -2.2995270207845793,
          -3.2996162399984135,
          -3.1277525158329733,
          -7,
          -7,
          -3.362105319293773,
          -7,
          -7,
          -3.06126394230025,
          -2.429074712716486,
          -7,
          -3.983265352566545,
          -2.587840431253855,
          -7,
          -7,
          -7,
          -2.7201233354998613,
          -3.1474444325481796,
          -3.0713526184134943,
          -2.5846138761717827,
          -3.076735399100041,
          -7,
          -7,
          -3.633367445117007,
          -2.5444923353895272,
          -2.9152558940469784,
          -2.4286861041401493,
          -1.8946411942600978,
          -7,
          -3.2338418642756133,
          -3.3601198615808054,
          -3.1389339402569236,
          -2.697839368218363,
          -2.807535028068853,
          -2.1779234306079442,
          -7,
          -3.3309208305952356,
          -2.418998673214926,
          -2.8496241248456595,
          -2.9424214699806175,
          -7,
          -3.060320028688285,
          -2.69915092268144,
          -3.216517771441886,
          -3.321598430465344,
          -3.236033147117636,
          -4.063958513056966,
          -2.639256561892579,
          -7,
          -1.8606208424532815,
          -2.9138138523837167,
          -7,
          -1.6713068485030702,
          -3.03734680356809,
          -3.3218054838575393,
          -2.926213785839081,
          -1.9343607038780624,
          -2.0702788512520054,
          -2.6917759089147046,
          -3.068853493671498,
          -4.274356727020315,
          -2.5331919553337,
          -7,
          -7,
          -7,
          -2.924044214618035,
          -3.0411670190154996,
          -1.842445540218536,
          -2.9570323163469383,
          -2.484157424365381,
          -2.7255032688593155,
          -2.6049199991419503,
          -7,
          -3.6316466629584196,
          -2.660201201380682,
          -2.4775734093486395,
          -7,
          -7,
          -3.4627894928053546,
          -2.6249224524783243,
          -4.057747916795115,
          -7,
          -3.290212746919529,
          -2.2386895205778723,
          -1.9566718738913946,
          -7,
          -2.3722674440956544,
          -3.6239725120169965,
          -2.639361960384033,
          -1.9842516874733798,
          -2.451439772483668,
          -2.5470050888796587,
          -3.1316186643491255,
          -7,
          -7,
          -3.153611638097534,
          -2.957798774929998,
          -3.063145637106638,
          -2.132160282103326,
          -2.858236335429513,
          -2.412361709359006,
          -3.598243191653623,
          -3.60422605308447,
          -3.933760534062559,
          -7,
          -7,
          -7,
          -7,
          -4.4340256963562465,
          -7,
          -4.327461109303142,
          -3.6959247197466625,
          -7,
          -7,
          -7,
          -4.747388499864813,
          -7,
          -3.3408405498123317,
          -7,
          -4.7051621193592945,
          -3.5424619110008715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.274053883354042,
          -3.7344797894255772,
          -7,
          -7,
          -7,
          -7,
          -4.197370165202425,
          -3.776894806141374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.650015952471839,
          -3.197831693328903,
          -4.0029949671388145,
          -3.8485766745910306,
          -3.448513085427185,
          -3.9073038488339695,
          -7,
          -7,
          -3.8825245379548803,
          -2.846630059514878,
          -3.1243737864846297,
          -3.8917046762391827,
          -3.473778834646725,
          -2.8591552176390183,
          -7,
          -3.8880671134074367,
          -3.530498519797741,
          -3.014205413953746,
          -7,
          -3.956696564894651,
          -7,
          -7,
          -3.6846786877449325,
          -3.987705358606155,
          -5.232328494095948,
          -7,
          -2.298281123103342,
          -7,
          -3.9307962629833004,
          -7,
          -4.809330723851234,
          -3.888825118125633,
          -4.30224432095016,
          -7,
          -3.9125939977521056,
          -3.707555983235898,
          -4.330332589222979,
          -7,
          -7,
          -7,
          -4.014158125505415,
          -4.534863410548415,
          -2.8179429348797176,
          -3.244324706895344,
          -4.370628725694252,
          -7,
          -4.01192205783923,
          -7,
          -7,
          -4.34341844163964,
          -4.06619543102185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0705787477018935,
          -2.3636871758895452,
          -2.7047532207811775,
          -7,
          -3.43568513794163,
          -3.230823445277533,
          -3.7768464086952993,
          -2.5968326345359145,
          -2.477637964455693,
          -3.1148967983141596,
          -7,
          -3.289247845781579,
          -3.0385633951393607,
          -2.750411959970989,
          -2.7997233564258357,
          -7,
          -7,
          -2.679908635894604,
          -7,
          -7,
          -3.2008960765643213,
          -7,
          -3.6641717053619307,
          -2.8246951871909625,
          -2.1998699333598113,
          -7,
          -4.140696552546415,
          -7,
          -3.620864475265121,
          -3.6794077057902967,
          -3.550228353055094,
          -4.210218162926443,
          -7,
          -2.622214022966295,
          -2.375071602059195,
          -7,
          -2.604023443105566,
          -7,
          -2.9344984512435675,
          -2.5209131930646254,
          -7,
          -7,
          -2.568861467689039,
          -2.5943925503754266,
          -7,
          -7,
          -3.0230053972499347,
          -3.6869935662646784,
          -2.3981329855611953,
          -3.1316186643491255,
          -2.9745774799800357,
          -3.9823617016331467,
          -7,
          -2.6688206148564593,
          -2.4158718443377936,
          -7,
          -3.398683876079538,
          -7,
          -7,
          -3.1540814545553224,
          -2.7985739217489467,
          -2.354764024955734,
          -2.9043097257675417,
          -3.873378736409141,
          -2.6316973716375482,
          -7,
          -7,
          -2.3221208040924033,
          -3.6754575416412085,
          -3.638289535414257,
          -2.754271868683459,
          -2.88024177589548,
          -2.855778668362647,
          -7,
          -2.686725621074542,
          -2.7240591863401407,
          -2.4358216226950797,
          -2.035316439045186,
          -2.8304786835886837,
          -2.104350519242735,
          -2.0655404049454833,
          -2.99563519459755,
          -3.155427138639798,
          -7,
          -7,
          -2.646047089387669,
          -2.4928677946121267,
          -3.2996162399984135,
          -7,
          -7,
          -3.671728088239558,
          -7,
          -3.618280588410313,
          -3.752969865029084,
          -3.9552065375419416,
          -3.286703412934269,
          -2.003831230105671,
          -2.846337112129805,
          -7,
          -2.822331563082315,
          -7,
          -2.2621750492444925,
          -2.8322959710584774,
          -7,
          -7,
          -2.948331446401186,
          -2.9042646112937147,
          -2.6449921835286525,
          -2.459675139563483,
          -7,
          -7,
          -7,
          -3.615739688619155,
          -7,
          -3.320146286111054,
          -3.994888795364911,
          -3.418135498425232,
          -2.147081481685561,
          -7,
          -7,
          -7,
          -3.6375897858387,
          -2.9646367037885013,
          -7,
          -7,
          -3.4140536750309463,
          -3.213623993416087,
          -3.9698816437465,
          -3.6050355490912556,
          -3.6582022533870147,
          -7,
          -3.8428587624452937,
          -7,
          -7,
          -3.265537737431737,
          -3.060697840353612,
          -2.8808135922807914,
          -3.839037873388306,
          -7,
          -7,
          -7,
          -7,
          -3.285932185579952,
          -3.608312042697327,
          -7,
          -3.111766433052562,
          -7,
          -7,
          -2.4616485680634552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6130038000973417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1747380145272865,
          -4.109275902653879,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.262943248490909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.140913237373888,
          -2.6748611407378116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7701152947871015,
          -7,
          -3.2839954155220514,
          -2.3026971550314443,
          -3.595220566797657,
          -3.3059958827708047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.850033257689769,
          -7,
          -7,
          -7,
          -3.375846436309156,
          -7,
          -3.243368813730389,
          -7,
          -7,
          -7,
          -4.279807037467387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.419625360887743,
          -7,
          -2.8692317197309762,
          -7,
          -7,
          -7,
          -4.083835226301192,
          -7,
          -4.013553430541676,
          -7,
          -7,
          -2.7955324427101544,
          -7,
          -3.3544926005894364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.062863902110119,
          -7,
          -7,
          -7,
          -3.1374596122778238,
          -3.0129472051595405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.525821952156663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.9652378937407882,
          -7,
          -7,
          -7,
          -7,
          -3.8192367500217284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.45408227073109,
          -7,
          -2.214577685744348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1341771075767664,
          -7,
          -3.370513089598593,
          -7,
          -7,
          -7,
          -7,
          -2.5599066250361124,
          -4.037080027547998,
          -2.5017437296279943,
          -7,
          -7,
          -7,
          -2.7715874808812555,
          -2.4191293077419758,
          -7,
          -3.136456317387437,
          -2.7693773260761385,
          -7,
          -7,
          -7,
          -3.5140797722102626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.168202746842631,
          -3.1374596122778238,
          -2.842609239610562,
          -3.650793039651931,
          -7,
          -7,
          -3.2610248339923973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7518562395924007,
          -4.353454583806043,
          -3.8436687229791437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2022157758011316,
          -4.464688218289176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2340108175871793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.311986834619701,
          -7,
          -4.532104361451173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.953131225183445,
          -7,
          -3.8294967497201826,
          -7,
          -7,
          -7,
          -3.1065308538223815,
          -2.9553670010508437,
          -7,
          -7,
          -2.4456042032735974,
          -7,
          -7,
          -7,
          -7,
          -3.3066394410242617,
          -3.074607494534864,
          -7,
          -3.4095950193968156,
          -7,
          -4.654276036237423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.050149592684926,
          -3.5596672783880576,
          -7,
          -7,
          -7,
          -7,
          -3.122434336266318,
          -7,
          -7,
          -7,
          -7,
          -3.286905352972375,
          -2.808210972924222,
          -3.082156803810918,
          -7,
          -7,
          -2.998912904358786,
          -7,
          -7,
          -7,
          -4.972116595970914,
          -7,
          -3.1781852925373903,
          -7,
          -3.7633531087482153,
          -7,
          -7,
          -7,
          -3.2141813086638207,
          -7,
          -3.707485011967474,
          -3.2880255353883627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3271545124094315,
          -7,
          -2.9815440587012345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.711224968619355,
          -4.369939079029239,
          -7,
          -7,
          -4.402204046065145,
          -7,
          -7,
          -7,
          -4.717420836722375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.387653171001787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073498398717262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.61217966137758,
          -7,
          -4.668637473671116,
          -4.220294921547735,
          -7,
          -7,
          -7,
          -7,
          -4.536050627244502,
          -7,
          -7,
          -7,
          -4.359802292628766,
          -4.201797546736893,
          -7,
          -4.434425179874951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9907649470287008,
          -4.487682670658282,
          -5.1042164465018764,
          -7,
          -3.6722826247889206,
          -7,
          -7,
          -7,
          -5.405078152192411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.781504057208732,
          -7,
          -7,
          -7,
          -4.897286118766272,
          -7,
          -7,
          -4.243717497987774,
          -4.955129493993415,
          -7,
          -5.046175081023443,
          -7,
          -7,
          -4.60612329172563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.466393046361356,
          -7,
          -4.178775572045411,
          -7,
          -7,
          -4.338914452663329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5949447366950835,
          -7,
          -7,
          -7,
          -7,
          -3.3461573022320086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5010592622177517,
          -7,
          -4.0042783722001625,
          -7,
          -7,
          -4.59446989873833,
          -4.792885243796325,
          -7,
          -7,
          -7,
          -3.9278321328665817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.147985320683805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9778607292646972,
          -7,
          -7,
          -3.5182506513085,
          -7,
          -7,
          -4.14035088925253,
          -7,
          -7,
          -7,
          -7,
          -4.267771891925815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7834952158370023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7239479764316434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.391975460609762,
          -2.9609461957338317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6748611407378116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8606374167737547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.267406418752904,
          -3.531606631932722,
          -3.4168068718229443,
          -7,
          -4.130759811444055,
          -2.853819845856763,
          -7,
          -7,
          -3.132727533383866,
          -2.7689959478018795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0138809162279236,
          -3.68497993618928,
          -7,
          -3.519302849235429,
          -3.4947480952818424,
          -7,
          -7,
          -7,
          -3.608312042697327,
          -3.0484418035504044,
          -7,
          -4.0992373747636766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.922379406594948,
          -7,
          -3.6290016192869916,
          -3.44216608578472,
          -3.340961266701331,
          -7,
          -7,
          -7,
          -3.035829825252828,
          -3.103666913746792,
          -7,
          -7,
          -3.4119562379304016,
          -7,
          -3.0941215958405612,
          -2.9785268191885237,
          -3.6774244377012475,
          -2.7432919531576356,
          -3.4363217001397333,
          -2.7506626461340558,
          -2.7007037171450192,
          -2.044670394919461,
          -7,
          -7,
          -7,
          -7,
          -2.9947569445876283,
          -7,
          -3.4798343413193606,
          -7,
          -7,
          -7,
          -7,
          -3.2657609167176105,
          -3.797059694699971,
          -7,
          -7,
          -3.1867669738313062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3047058982127653,
          -7,
          -7,
          -7,
          -7,
          -3.7067177823367587,
          -3.1358479320466763,
          -7,
          -7,
          -3.0733314645210617,
          -7,
          -3.1912763113441907,
          -7,
          -7,
          -3.18789657069281,
          -7,
          -3.3408405498123317,
          -2.9853516150839536,
          -7,
          -2.8252367353400705,
          -7,
          -7,
          -7,
          -3.014138539892673,
          -7,
          -3.6399842480415883,
          -2.8392265740134355,
          -2.5378890241422445,
          -3.111027151026175,
          -3.4628470358316736,
          -7,
          -7,
          -2.9315849874708,
          -3.2723555547531853,
          -7,
          -7,
          -3.139144150562046,
          -3.039176084376041,
          -2.9509209293328924,
          -2.7157248604691793,
          -2.971224291252213,
          -3.2005769267548483,
          -7,
          -3.949390006644913,
          -7,
          -4.0994173263705065,
          -7,
          -7,
          -3.000434077479319,
          -7,
          -3.4727564493172123,
          -3.4953857346114607,
          -3.3932241163612975,
          -7,
          -7,
          -4.102210669420494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6254839394069043,
          -7,
          -3.255942196033082,
          -7,
          -3.4750898033890065,
          -3.377533904520968,
          -7,
          -3.4222614508136027,
          -7,
          -4.125611371897464,
          -3.9384196457931933,
          -7,
          -7,
          -7,
          -2.941570583896654,
          -7,
          -7,
          -7,
          -2.9373925002214984,
          -7,
          -3.5423273827739745,
          -7,
          -7,
          -3.337459261290656,
          -7,
          -3.67728750108277,
          -3.564902672529205,
          -7,
          -3.536047063773486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4234097277330933,
          -7,
          -3.537609240282091,
          -3.1319392952104246,
          -1.9220457546200005,
          -7,
          -7,
          -3.210603216024868,
          -7,
          -7,
          -3.4638183615294293,
          -7,
          -3.159065640479062,
          -7,
          -7,
          -2.9190780923760737,
          -3.5559404378185113,
          -2.891467764262818,
          -7,
          -3.119981307304154,
          -7,
          -3.56054423863114,
          -3.295127085252191,
          -2.338054216677949,
          -7,
          -3.840262964417612,
          -7,
          -3.8862650590297565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.959089114367392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.005652315355074,
          -2.9166794974939214,
          -3.7135185431250215,
          -3.8280100357953923,
          -7,
          -7,
          -3.1567005525820173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.350160762910063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.282848602834645,
          -2.623412528318222,
          -3.2306532471792218,
          -7,
          -7,
          -3.3769417571467586,
          -4.354780498831271,
          -7,
          -2.876013254340755,
          -7,
          -4.727354161057733,
          -3.1942367487238292,
          -7,
          -3.4307198878632823,
          -3.59402403573142,
          -3.395792186900733,
          -2.868174040859638,
          -3.855216194733363,
          -3.6471383660631504,
          -3.5491259267581112,
          -7,
          -7,
          -3.0541021198133644,
          -3.2069157827668575,
          -7,
          -7,
          -7,
          -3.5338991007965945,
          -7,
          -7,
          -7,
          -3.618048096712093,
          -3.240466042135798,
          -7,
          -7,
          -7,
          -4.359990334130061,
          -2.3846669680032564,
          -2.710286647702891,
          -3.549636657209407,
          -7,
          -7,
          -3.765668554759014,
          -7,
          -7,
          -3.712733859069952,
          -3.906981153228854,
          -3.590507462008583,
          -7,
          -3.0271456657743414,
          -4.1483731861540445,
          -3.369957607346053,
          -7,
          -7,
          -7,
          -3.406426624548381,
          -7,
          -7,
          -7,
          -3.656385719058688,
          -7,
          -2.908699432352224,
          -3.442009159140952,
          -2.0956447696312877,
          -7,
          -3.5094713521025485,
          -7,
          -7,
          -3.377018208642447,
          -3.3065075067992313,
          -3.885104366555775,
          -7,
          -3.9116369331294423,
          -3.664842196942971,
          -3.2965006536117496,
          -7,
          -7,
          -7,
          -7,
          -3.3029799367482493,
          -3.8587176148602915,
          -7,
          -3.3914644118391033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.166816084791104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.009695170852119,
          -4.192344395046124,
          -7,
          -7,
          -7,
          -7,
          -5.006183552012837,
          -7,
          -7,
          -4.69121414838279,
          -4.932585368076885,
          -7,
          -3.7495430810911663,
          -7,
          -5.391415037349662,
          -7,
          -7,
          -3.8656072985678236,
          -7,
          -4.67641923171836,
          -7,
          -7,
          -4.788281527598792,
          -7,
          -4.393610296355292,
          -4.3618033589256875,
          -7,
          -7,
          -7,
          -7,
          -4.180469961659198,
          -7,
          -3.332731257471133,
          -7,
          -4.085870083398395,
          -4.471218344307872,
          -3.2053848312193485,
          -7,
          -3.889413764042709,
          -2.667349166419893,
          -3.5773943798662415,
          -7,
          -7,
          -7,
          -3.741248952988005,
          -3.3550682063488506,
          -7,
          -4.166030272340217,
          -3.9333860419030544,
          -7,
          -3.611032559924521,
          -7,
          -7,
          -7,
          -3.6382461055317314,
          -3.8373625351400262,
          -4.929932111748548,
          -7,
          -3.83416628394262,
          -7,
          -4.362708610909318,
          -7,
          -4.129878070570166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7857330906965307,
          -3.92069713446992,
          -4.20980444773022,
          -4.036881628034608,
          -3.478854967528663,
          -3.748861243039218,
          -4.187041040042328,
          -7,
          -4.749264672310713,
          -7,
          -7,
          -3.6739828907278897,
          -4.336299595763418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5935352716775633,
          -3.147882346295201,
          -2.803280043602782,
          -7,
          -7,
          -4.078184845714645,
          -7,
          -3.2960066693136723,
          -7,
          -3.1773055843418603,
          -7,
          -3.856171486902885,
          -2.9364419285916847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5744942682853273,
          -3.422589839851482,
          -7,
          -7,
          -7,
          -7,
          -4.617325415780569,
          -4.402292340957852,
          -7,
          -7,
          -7,
          -2.6079908585471747,
          -7,
          -2.6430936070305093,
          -7,
          -3.552303109338354,
          -3.1190798477344224,
          -7,
          -7,
          -7,
          -3.547774705387823,
          -7,
          -7,
          -7,
          -3.0356965038452106,
          -7,
          -2.979206813945708,
          -3.1106271156204817,
          -7,
          -7,
          -2.5276299008713385,
          -3.0181177205910004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.305376548576951,
          -3.382647303154711,
          -7,
          -7,
          -7,
          -3.9540494467635945,
          -7,
          -7,
          -7,
          -7,
          -3.316075234838397,
          -7,
          -7,
          -2.764015925386275,
          -2.7851542481914966,
          -3.4833733060890273,
          -7,
          -3.500118806417088,
          -7,
          -7,
          -7,
          -4.104418820647595,
          -7,
          -3.5363058723510337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0126966535817883,
          -7,
          -3.775404112153162,
          -7,
          -7,
          -3.791538607647169,
          -7,
          -2.6317204190800085,
          -7,
          -7,
          -7,
          -3.5012647157334826,
          -3.340510212470853,
          -7,
          -7,
          -3.094587577089025,
          -2.425697213362591,
          -3.7287594751678745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8253352245089047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.171186702866917,
          -5.124556389206683,
          -5.124520526873732,
          -3.9203875026352017,
          -3.9489701484173123,
          -4.350535513994461,
          -2.701139315206785,
          -4.34699155667835,
          -4.17179793657363,
          -2.391440502375696,
          -2.652091427213589,
          -4.823484010467402,
          -4.280012209042916,
          -2.8010458579848145,
          -2.3710561097335447,
          -3.7469907758787473,
          -4.649120579881137,
          -7,
          -5.1250027903205355,
          -4.425697213362591,
          -2.645636799886457,
          -3.160248789529974,
          -7,
          -3.0508898095462333,
          -1.8998609842691896,
          -4.42791434984591,
          -4.084101592916174,
          -4.82346118709814,
          -3.57333261790251,
          -3.8487302293839014,
          -4.4267974435651265,
          -2.586151421082641,
          -4.42791434984591,
          -5.12490182000836,
          -7,
          -5.125838963995005,
          -3.953431068826028,
          -5.125334849623946,
          -3.5886877897295424,
          -4.823581811323984,
          -3.750138611466349,
          -4.046433378005417,
          -1.841009074133296,
          -4.647995506133741,
          -4.52391222124351,
          -3.4308036457839908,
          -4.826253021326406,
          -3.2123937280004866,
          -4.523502595313213,
          -3.848004271497268,
          -3.3134549624770786,
          -3.8262724589346937,
          -4.0495507250485385,
          -1.9647977618083874,
          -3.4786145875580035,
          -2.4708075407867027,
          -3.1692803856500626,
          -3.482135929640315,
          -3.176549710043248,
          -3.0040838491714963,
          -3.3481133157724337,
          -4.047654465673549,
          -4.348762286659855,
          -5.124934393641766,
          -3.524022689062766,
          -3.566596726075971,
          -2.5511869560030376,
          -5.125051638496985,
          -3.869397971828717,
          -3.4149508617276534,
          -4.647441654593042,
          -3.071520101773189,
          -3.631570588836501,
          -4.279807037467387,
          -3.1867669738313062,
          -7,
          -4.221720613843239,
          -3.7153250321246345,
          -7,
          -3.5688826280523136,
          -3.0894340761633927,
          -2.4418216806864157,
          -3.9213808014591756,
          -4.823392709792886,
          -4.052838169905007,
          -4.047122285721037,
          -3.6014816115028383,
          -3.307904563405097,
          -3.572510184908823,
          -4.225474049711422,
          -1.7736859244554088,
          -3.1513826204220323,
          -2.779870361623134,
          -4.52270499273475,
          -7,
          -3.3117313914325637,
          -3.9826911065162727,
          -3.3452001259285136,
          -3.242885302889625,
          -4.648060618726541,
          -2.387479259110591,
          -4.223418056905294,
          -5.124566169329008,
          -5.124514006131383,
          -3.0152832517428707,
          -5.124693290881075,
          -3.5991571438616687,
          -3.4842027432890195,
          -2.9183226925562056,
          -2.264955158191548,
          -3.534813360783814,
          -4.280262842742384,
          -4.349173880325218,
          -4.013789746051142,
          -2.736521429176014,
          -4.825763554850498,
          -7,
          -3.9539335679488627,
          -3.85554784627362,
          -3.3806776672430363,
          -3.980642810952581,
          -2.5252549034751532,
          -2.1347678864147865,
          -4.427099681298999,
          -3.1233444347665715,
          -4.8252053439881974,
          -2.5516803258246297,
          -3.826227103162004,
          -3.5408201976350564,
          -3.4197937628984563,
          -5.124914849754901,
          -3.2998389155298993,
          -2.625515371611312,
          -2.836995242610448,
          -7,
          -4.3464181789371965,
          -3.0107294403814318,
          -7,
          -7,
          -4.823516613200129,
          -4.010922633882727,
          -5.124520526873732,
          -3.4574761639890332,
          -3.7599321174298512,
          -2.7459174483529494,
          -3.100512820133382,
          -4.223259000239877,
          -3.9710097463947083,
          -4.823607887833184,
          -3.8029332792535846,
          -4.013572858585068,
          -4.044795967995919,
          -3.2807186599586955,
          -4.279402924338703,
          -3.7828893885304504,
          -4.427456895479942,
          -2.096115598928591,
          -7,
          -7,
          -3.5608723738571255,
          -3.4116261801916856,
          -7,
          -2.134475182044132,
          -4.2834272333748435,
          -4.529109391761361,
          -4.016785926566524,
          -4.527020559229423,
          -2.9447122983382803,
          -4.283478917025045,
          -4.084501533208011,
          -1.7147986755227513,
          -4.648529141437505,
          -7,
          -7,
          -4.085112113266837,
          -4.523434286746437,
          -3.7634345046757764,
          -4.221502261586565,
          -3.2515550585595285,
          -2.8813324763375916,
          -3.1985797729065455,
          -7,
          -3.516444079673956,
          -2.0690863582010253,
          -4.427774893545752,
          -3.5470864564155895,
          -3.309006939379298,
          -4.127923999167784,
          -3.750379810251768,
          -4.225225258296776,
          -4.049857360679732,
          -3.8969442305579918,
          -4.049121071116725,
          -2.7168886258833527,
          -3.8704721852071455,
          -3.168902815780035,
          -7,
          -3.182337940122092,
          -3.9252895251371474,
          -1.8963541694238766,
          -5.125116760853404,
          -2.864649595666176,
          -7,
          -3.4976991031806923,
          -5.126069685635017,
          -3.3798524128035847,
          -5.125481265700594,
          -3.7640753714025683,
          -3.2212162075895296,
          -3.561890702670256,
          -7,
          -3.497186893442444,
          -3.849148488594488,
          -3.5773799979362595,
          -7,
          -7,
          -4.648363264110934,
          -4.647614401744664,
          -4.42609465941348,
          -4.523700954526099,
          -7,
          -4.523993450315614,
          -3.6302799104626615,
          -3.544096678207317,
          -3.1690566355150636,
          -2.1441570579455176,
          -7,
          -4.523541623956646,
          -4.084563279775527,
          -3.8968535332204013,
          -4.823526393542703,
          -3.78238466183098,
          -3.561575147188933,
          -3.3020917459175094,
          -4.52642328456597,
          -7,
          -7,
          -7,
          -4.648174542279039,
          -5.124416183245597,
          -7,
          -4.526681666309884,
          -2.785458363992269,
          -7,
          -7,
          -7,
          -3.89470365260923,
          -4.012428360872589,
          -4.5241526152390925,
          -7,
          -3.9502869470332103,
          -4.138492167149976,
          -3.6518431337680632,
          -2.4131862807290165,
          -3.245859240421096,
          -4.5267882040115675,
          -4.647630695099381,
          -7,
          -2.848226019879913,
          -2.873310911959824,
          -1.6657036520711483,
          -5.126537252055469,
          -2.805990780131231,
          -2.716964695235721,
          -2.909405985706936,
          -4.046199160534498,
          -2.812281362367997,
          -3.3479277621718744,
          -2.607009269756605,
          -3.067133927073089,
          -3.010730096257863,
          -3.6808597696765273,
          -3.5463575553634143,
          -5.124918107130456,
          -3.9815306209819914,
          -3.700825458898945,
          -3.7166389013459673,
          -7,
          -4.125354374619764,
          -4.525718413121268,
          -5.125305560484238,
          -4.1285252733891005,
          -7,
          -3.053849650809775,
          -3.088567471385042,
          -3.9233249878275025,
          -3.368104059853412,
          -4.086819124358255,
          -2.536731083478206,
          -2.653218720154461,
          -4.346871079866792,
          -2.8545180087460724,
          -4.52275060950722,
          -3.9804611371420555,
          -3.453990033784266,
          -3.666624475507377,
          -3.365948058893356,
          -3.306901713537009,
          -3.6652963707912574,
          -4.226200221973549,
          -3.903316655096336,
          -3.2379334435875635,
          -2.463913596053034,
          -2.952590661466377,
          -4.647373188597217,
          -7,
          -7,
          -3.0723693163406582,
          -3.2908674032554646,
          -5.125663403464531,
          -4.524146119853344,
          -3.4876589081344687,
          -4.6482103406529705,
          -3.44832298764699,
          -2.9071311224233356,
          -2.917967138181485,
          -5.126400930507611,
          -4.0479397570328395,
          -3.380220765608974,
          -4.524321461179261,
          -1.5711782528254215,
          -2.636810067102488,
          -1.8116883655674934,
          -4.172135696649566,
          -3.2731827770487643,
          -2.3883102514566867,
          -3.040978874281845,
          -7,
          -4.649785797412952,
          -4.5230730485888655,
          -3.5541447248133005,
          -3.0810935899469842,
          -3.015252577465673,
          -3.6525750809701454,
          -4.647558999765845,
          -7,
          -3.0773293096211045,
          -7,
          -4.524172100813481,
          -4.825497520557007,
          -3.73916396315401,
          -4.824545600914718,
          -2.2535578812749155,
          -5.124364002028919,
          -4.823506832637296,
          -3.42935099788424,
          -3.278284880374089,
          -3.4638097498438154,
          -4.659453466445408,
          -2.889781425369628,
          -3.570642996208087,
          -3.891673714695143,
          -2.959675565620754,
          -2.3604720822618974,
          -3.737855998205046,
          -4.834767110869274,
          -3.4680802174026253,
          -3.3639197310923956,
          -2.6581522930956862,
          -3.2828435144698207,
          -3.4885168740534303,
          -3.127307918247353,
          -3.3178444461454073,
          -3.694269250936293,
          -3.863127341104386,
          -4.021103386169764,
          -2.982230839189202,
          -3.9016733648001973,
          -3.0395263052541535,
          -3.1014063406271877,
          -3.447220068979908,
          -3.0022344165281387,
          -3.7079370718550817,
          -5.13021472332266,
          -2.7611418053448147,
          -3.468483210827674,
          -3.0430294039698493,
          -3.5634726096192386,
          -3.480754677678501,
          -7,
          -3.8597865518865944,
          -3.9708085142876324,
          -3.662846839441356,
          -3.5790797156168574,
          -2.2878320147549918,
          -4.34868446133753,
          -3.0127887570435066,
          -2.716334138671556,
          -3.391247815367535,
          -3.2920407700035588,
          -3.040763348421484,
          -3.5986263846416544,
          -2.104594825392442,
          -3.2090303669607603,
          -3.9868740596438528,
          -3.592122572182833,
          -2.174932377602814,
          -2.688079627476112,
          -4.22511535697073,
          -2.7764617563695646,
          -3.280406843747666,
          -5.124931136388365,
          -3.4705168322128936,
          -2.664594552988194,
          -3.961753214186783,
          -4.427901379055738,
          -2.1651144697096663,
          -2.207049609429497,
          -2.398676368633677,
          -5.125344612231581,
          -3.99247461688504,
          -4.824581376233483,
          -2.5879341741548614,
          -3.7107064345118013,
          -2.309152289779365,
          -3.2356216202519827,
          -3.049287989292018,
          -4.823624184856377,
          -3.0822339210963783,
          -3.169573755223163,
          -2.57570289904199,
          -4.021920461493033,
          -2.7883027995907916,
          -3.7118821817068475,
          -2.6276481114978902,
          -2.9452556043235774,
          -4.825442346705323,
          -2.388176642312316,
          -2.614008118910353,
          -4.093227419114197,
          -2.1828985513030816,
          -4.2225636610285875,
          -3.6583040093579355,
          -2.5624768485650953,
          -3.0586286357672274,
          -7,
          -7,
          -5.124347694112854,
          -7,
          -4.361403567658646,
          -2.4419703231780603,
          -3.6988541770298506,
          -2.2873217580833582,
          -7,
          -4.174905787979731,
          -2.6349370993059553,
          -3.5743657065242562,
          -4.088074848055238,
          -5.12523070148519,
          -3.2109508249954035,
          -7,
          -2.961686186921197,
          -3.3229377518009224,
          -4.281023622310831,
          -7,
          -4.050697945784732,
          -5.129796197569744,
          -3.6605524456117786,
          -7,
          -7,
          -3.799619335919808,
          -5.126092426202353,
          -4.825442346705323,
          -3.456485559127413,
          -3.4803295879249125,
          -7,
          -3.3161284299147518,
          -7,
          -4.124996276815198,
          -3.3436156038671037,
          -2.6948003131206746,
          -3.1381861986579302,
          -7,
          -5.131955320541395,
          -2.8525354413843815,
          -5.126910294600161,
          -3.4508807115632663,
          -7,
          -4.128218274974031,
          -2.343836681055772,
          -7,
          -4.647962946176167,
          -4.528739991281119,
          -3.897604454353708,
          -3.456897187449348,
          -4.648798963271332,
          -3.98241985006465,
          -3.679953248981408,
          -5.126222349463532,
          -3.6817579471116177,
          -2.5414995135598417,
          -4.092182412910935,
          -7,
          -3.471186441854217,
          -3.4343069710353125,
          -4.4305716611898776,
          -2.697931199339346,
          -7,
          -7,
          -4.068776273957364,
          -3.9836971497497697,
          -1.948236494735222,
          -3.7342428077758956,
          -3.8345001792937783,
          -4.128189179657028,
          -7,
          -3.765125036304772,
          -7,
          -3.8631067550339733,
          -5.125611371897464,
          -3.95379511660877,
          -2.9354478045109147,
          -4.650702451094931,
          -7,
          -3.0557479410565587,
          -1.9161042138199231,
          -3.2220245503322613,
          -4.130420618706655,
          -2.8291585566933986,
          -3.831261720302822,
          -3.6931174038890284,
          -4.173296366404801,
          -3.091736676786907,
          -3.836612072683855,
          -7,
          -4.428371322869534,
          -7,
          -5.124442271503,
          -3.3466239745960986,
          -4.655167258709841,
          -3.5583063198302427,
          -4.052924683707729,
          -2.272527237654037,
          -4.2847271454137505,
          -3.4687489409171475,
          -2.869859699265831,
          -3.4746849021732746,
          -3.407413353850794,
          -7,
          -3.786228560690241,
          -7,
          -3.483672863806311,
          -3.1978285278826197,
          -4.837541092506384,
          -7,
          -3.9245990727152424,
          -3.313825053809394,
          -2.9176989407505602,
          -4.825526727405714,
          -7,
          -7,
          -7,
          -7,
          -5.12471610363175,
          -5.125071176229265,
          -3.2619668131766253,
          -7,
          -4.088039388997349,
          -4.648665698738682,
          -4.427145161242989,
          -5.125129784152959,
          -4.824552105737333,
          -4.649351087649642,
          -4.648805462934326,
          -3.875546758345239,
          -4.429348472923662,
          -3.618783009440332,
          -3.8626522704255013,
          -3.8151633044075393,
          -5.126274307886984,
          -7,
          -4.020016872748719,
          -4.426946963787001,
          -7,
          -3.081241379736605,
          -4.348265911123662,
          -4.649198511689143,
          -3.9296264433432477,
          -4.654577589539578,
          -4.176965401689464,
          -7,
          -5.1250386128538095,
          -4.528225519543581,
          -7,
          -4.137442733854849,
          -4.128250600818072,
          -5.126835711721174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.204201405238153,
          -7,
          -7,
          -7,
          -4.190891716922169,
          -4.207391977978488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335257256434532,
          -7,
          -7,
          -3.046982642758214,
          -4.571686709006209,
          -7,
          -7,
          -7,
          -3.2803506930460054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.026809737140006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3878345723908105,
          -7,
          -7,
          -7,
          -3.9074436091675,
          -7,
          -3.8948696567452528,
          -7,
          -7,
          -7,
          -3.111262513659065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.146949316052184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.221720613843239,
          -7,
          -2.2752066169356358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7148325124333326,
          -7,
          -7,
          -3.2203696324513946,
          -7,
          -7,
          -4.27567727232233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6642187553031396,
          -7,
          -7,
          -7,
          -7,
          -3.7728166083744408,
          -2.396780343144799,
          -1.8087172420492474,
          -3.0538464268522527,
          -7,
          -3.904571297338501,
          -2.9822712330395684,
          -7,
          -7,
          -7,
          -3.614158709509175,
          -7,
          -4.168173262170234,
          -3.8499258976209467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5871494982543437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.429752280002408,
          -2.1083394747888384,
          -2.1089031276673134,
          -7,
          -7,
          -7,
          -3.6679196853173615,
          -7,
          -7,
          -7,
          -7,
          -3.080987046910887,
          -7,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -4.062456628625647,
          -7,
          -7,
          -3.2392994791268923,
          -3.119915410257991,
          -7,
          -7,
          -7,
          -7,
          -3.342620042553348,
          -3.2229764498933915,
          -3.867113779831977,
          -7,
          -7,
          -3.451784900912102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.469822015978163,
          -3.436374704897461,
          -7,
          -4.276392863069535,
          -7,
          -7,
          -3.628662627657154,
          -7,
          -3.6610550848533787,
          -3.263399331334002,
          -7,
          -3.3384564936046046,
          -7,
          -7,
          -7,
          -7,
          -3.6121478383264867,
          -7,
          -7,
          -7,
          -7,
          -3.2545480771089736,
          -7,
          -7,
          -3.766933093837284,
          -7,
          -2.7424894645817752,
          -7,
          -3.1622656142980214,
          -2.4409090820652177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2576785748691846,
          -2.0969100130080562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.712822206836856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2907022432878543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941695248372151,
          -7,
          -7,
          -7,
          -1.0907351059240402,
          -2.0201540316383326,
          -2.1914510144648953,
          -7,
          -7,
          -7,
          -3.2271150825891253,
          -7,
          -3.502358829319632,
          -2.9022749204745018,
          -7,
          -7,
          -4.311414767162359,
          -7,
          -4.230704313612569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.919601023784111,
          -7,
          -3.0972573096934197,
          -3.4287825114969546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3307035928340225,
          -7,
          -7,
          -7,
          -7,
          -2.4995152549279713,
          -2.4496326504700745,
          -4.353140126440264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.231214647962601,
          -3.9466487339066765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.050132180393049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.554864538285933,
          -4.082803315998645,
          -4.920947286097199,
          -7,
          -3.778729923996112,
          -4.540738128377243,
          -7,
          -7,
          -2.998695158311656,
          -7,
          -7,
          -3.4690115586556876,
          -3.7051792448736762,
          -3.2819419334408244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.625621081424908,
          -7,
          -3.655303117041215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.588361358384558,
          -4.879193398354936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.671765079379814,
          -7,
          -7,
          -7,
          -7,
          -5.086571586596441,
          -7,
          -4.5294175204160725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6118931699365255,
          -7,
          -7,
          -4.46325450995035,
          -2.9191362269698162,
          -7,
          -7,
          -7,
          -4.757841230761179,
          -7,
          -7,
          -7,
          -7,
          -4.377661338348732,
          -7,
          -7,
          -3.8080082999104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.990725018635123,
          -5.487669954658609,
          -5.405226797459939,
          -7,
          -7,
          -7,
          -4.954546409224138,
          -7,
          -7,
          -4.0693350347899395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.790988475088816,
          -4.4199942773430445,
          -4.48447067570193,
          -7,
          -4.94259333559316,
          -7,
          -7,
          -5.347156262771363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9888115530228063,
          -7,
          -7,
          -7,
          -7,
          -3.639247362265076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7958244240923475,
          -3.591954555046735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.093764782337062,
          -7,
          -7,
          -7,
          -3.9264453478183894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4871383754771865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5687725829029615,
          -3.42781057267599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.778585327862962,
          -4.151277893904123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.049579784025463,
          -7,
          -7,
          -4.543894291804688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.506505032404872,
          -7,
          -7,
          -4.495544337546448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9966575799270623,
          -7,
          -3.091842749738098,
          -3.136363119800208,
          -7,
          -7,
          -7,
          -3.759592308645975,
          -3.074913914437954,
          -3.4565178578052627,
          -7,
          -7,
          -7,
          -7,
          -2.81107205910691,
          -3.6657216683873965,
          -7,
          -2.2824521678624317,
          -3.2268529290267938,
          -3.4353665066126613,
          -3.3634239329171765,
          -7,
          -2.958085848521085,
          -7,
          -3.075364446373285,
          -4.096811561767263,
          -3.4353665066126613,
          -3.3236645356081,
          -7,
          -2.9014583213961123,
          -7,
          -2.872350544494723,
          -2.3375068005038724,
          -7,
          -3.1063042456868444,
          -3.0692980121155293,
          -3.5125013439997756,
          -3.036429265626675,
          -7,
          -7,
          -7,
          -2.8693784160613367,
          -7,
          -2.2246625288410296,
          -7,
          -2.9822712330395684,
          -2.8198070645907563,
          -2.600713913579715,
          -2.5209367884596894,
          -2.775928862409032,
          -2.7432297012106934,
          -7,
          -3.113943352306837,
          -3.6351820486562674,
          -2.4653828514484184,
          -7,
          -3.4371160930480786,
          -3.0242803760470798,
          -7,
          -7,
          -3.1512092788693664,
          -2.7297720531082863,
          -7,
          -3.61066016308988,
          -3.3025473724874854,
          -2.9968867645758572,
          -3.164427214911732,
          -7,
          -7,
          -3.7153250321246345,
          -2.2752066169356358,
          -7,
          -7,
          -7,
          -2.8778031216951354,
          -3.5582284218033258,
          -3.3656751404559175,
          -7,
          -2.005139639652411,
          -2.363441031461713,
          -2.462397997898956,
          -7,
          -2.829303772831025,
          -7,
          -3.008209698949563,
          -3.0002604985473904,
          -3.4776637838119564,
          -3.0147304950017535,
          -7,
          -7,
          -1.7611489310114437,
          -3.5983527098692836,
          -3.032054375479669,
          -7,
          -3.592981289228694,
          -7,
          -7,
          -7,
          -1.7653164119053328,
          -2.529986128254395,
          -3.596047007545439,
          -7,
          -2.722409538916368,
          -2.402192577878823,
          -3.093596768608228,
          -2.750893920382125,
          -1.8104200911977855,
          -7,
          -2.4356376970250344,
          -2.347167327739883,
          -3.295786940251609,
          -7,
          -2.748532568461719,
          -3.766710207262259,
          -2.5856218478490254,
          -2.386858189007188,
          -3.084255949562787,
          -7,
          -7,
          -3.401228167498113,
          -4.523612083458387,
          -3.4578818967339924,
          -3.160368474792848,
          -1.9990514132044512,
          -7,
          -7,
          -2.6971482117148518,
          -3.0532705666813786,
          -7,
          -7,
          -3.9188163903603797,
          -7,
          -7,
          -7,
          -2.3688032260423766,
          -2.4511282472469036,
          -3.61083753474107,
          -2.993939833374049,
          -3.420808088286559,
          -3.805228914203426,
          -7,
          -7,
          -7,
          -7,
          -1.9009736852940384,
          -7,
          -3.9168748785386835,
          -7,
          -3.0555694400609896,
          -7,
          -2.9801349922898255,
          -3.3044905277734875,
          -7,
          -3.539828558377898,
          -3.0064660422492318,
          -7,
          -2.8836614351536176,
          -7,
          -3.004858534620329,
          -2.8153563389481215,
          -2.487780918103498,
          -2.70190362530154,
          -2.9092885241622506,
          -2.782830805202592,
          -2.5797192473872097,
          -2.8915374576725643,
          -7,
          -7,
          -3.116939646550756,
          -2.66029616027073,
          -3.348499570283838,
          -7,
          -1.8784410040430806,
          -7,
          -4.3144571227346775,
          -7,
          -3.8330195470765314,
          -2.0673740307786943,
          -2.383815365980431,
          -1.3078058731216846,
          -1.7636775163976688,
          -2.2012533420043217,
          -1.81601260357686,
          -7,
          -3.532117116248804,
          -3.161966616364075,
          -7,
          -3.1627883658654485,
          -3.0788191830988487,
          -7,
          -7,
          -4.020775488193558,
          -3.246252312299322,
          -4.070665753453728,
          -7,
          -3.826884298707612,
          -7,
          -2.4114994527485885,
          -2.1558716525157724,
          -7,
          -2.073235854482803,
          -7,
          -7,
          -7,
          -7,
          -2.642684304903646,
          -3.041894884169058,
          -3.2391993420543015,
          -7,
          -1.738100733954366,
          -2.8819549713396007,
          -2.8359018556035758,
          -7,
          -3.0746336182969043,
          -7,
          -2.7890516223748403,
          -2.2751984011530757,
          -3.2525294136162577,
          -3.7015967643861063,
          -4.714261004983581,
          -7,
          -3.366982975977851,
          -3.0879587894607328,
          -2.6794278966121188,
          -3.3016809492935764,
          -3.326335860928751,
          -2.564192460626198,
          -3.511214701136388,
          -3.50745106090197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3224260524059526,
          -3.2168254232660476,
          -2.907753267261719,
          -7,
          -7,
          -7,
          -3.044147620878723,
          -1.6532125137753437,
          -1.098813717788014,
          -3.290034611362518,
          -3.111766433052562,
          -7,
          -2.5774917998372255,
          -3.1813289870897337,
          -1.753216579694992,
          -1.8477871785250382,
          -3.0134692323091703,
          -2.9912260756924947,
          -3.141939450396649,
          -2.7097543943577977,
          -2.8800956594900637,
          -7,
          -3.3433347279168006,
          -7,
          -7,
          -2.8792870723193187,
          -4.055531225050898,
          -3.2455743529902925,
          -3.027879409207207,
          -2.7134905430939424,
          -7,
          -2.891398059667226,
          -3.1072099696478683,
          -7,
          -2.087544809532427,
          -1.7316805487833076,
          -2.624797578960761,
          -7,
          -7,
          -2.9992755720056676,
          -3.348499570283838,
          -1.9210015763006458,
          -7,
          -2.6669857183296606,
          -2.5675926763114987,
          -3.4653828514484184,
          -2.674759109847667,
          -2.0932815675672454,
          -2.5843662672560845,
          -3.0673963618557067,
          -3.3332456989619628,
          -3.7171502028538876,
          -7,
          -2.4667028964826474,
          -3.7331972651065697,
          -3.2345172835126865,
          -2.2486381513553635,
          -2.527353661395109,
          -3.5826314394896364,
          -3.540954808926133,
          -3.689131197234498,
          -3.584783378996508,
          -3.5886329050659698,
          -2.649529565947819,
          -7,
          -7,
          -7,
          -2.7787540186718043,
          -2.5218300640818447,
          -7,
          -2.922552466761376,
          -3.614158709509175,
          -7,
          -3.561101383649056,
          -7,
          -3.3383900826431017,
          -3.4095950193968156,
          -7,
          -2.577644963119329,
          -2.4065401804339555,
          -4.088047448128369,
          -3.0151249381653735,
          -4.413769595610617,
          -7,
          -1.909751520121109,
          -4.246839022174548,
          -3.1758016328482794,
          -7,
          -3.4358443659844413,
          -7,
          -2.261395053995737,
          -2.83953518010886,
          -3.8327004709605674,
          -3.084099424214281,
          -7,
          -7,
          -3.0028137792246734,
          -7,
          -7,
          -7,
          -2.928834607453388,
          -3.3647385550553985,
          -2.1876920011804275,
          -7,
          -7,
          -3.3562171342197353,
          -4.783031257624278,
          -7,
          -3.7591388162811663,
          -7,
          -3.0775063313523123,
          -3.355882344117442,
          -2.544186717310012,
          -3.3571610331780577,
          -3.4395695171471754,
          -7,
          -4.335919030990713,
          -4.0323447224179185,
          -4.3053771683525195,
          -3.4519508268511805,
          -4.058217178825713,
          -2.962279967309778,
          -3.608026557407242,
          -7,
          -4.343526753097717,
          -7,
          -4.089576618238777,
          -3.8308451923086118,
          -3.6478229105357323,
          -7,
          -7,
          -3.9735157732409796,
          -4.227012095991085,
          -7,
          -3.4232601245473617,
          -4.202188512266052,
          -4.0888445627270045,
          -4.0527324074032185,
          -4.233402277811895,
          -7,
          -3.8336888448364133,
          -3.9572240578431668,
          -3.6971712003830453,
          -3.924770174906564,
          -3.5504831459529296,
          -2.955527405293444,
          -3.684064005878023,
          -2.9845051793652493,
          -1.7802978462168428,
          -7,
          -7,
          -7,
          -3.615872429541114,
          -3.15175279223674,
          -3.365581572755049,
          -4.163653256961294,
          -3.4255109308089216,
          -3.489800333711403,
          -7,
          -2.9547398536507683,
          -3.3092041796704077,
          -7,
          -7,
          -4.400261610744863,
          -7,
          -7,
          -3.0062651558823856,
          -3.3893869036091617,
          -4.428950249146652,
          -7,
          -3.1070742314120694,
          -7,
          -3.0224805150602982,
          -7,
          -4.562861918686101,
          -3.651859269246949,
          -3.9549898177161404,
          -3.3081373786380386,
          -7,
          -7,
          -4.492529914411559,
          -3.442244527847952,
          -3.7756589833754215,
          -3.5970915798771266,
          -3.443861601587795,
          -2.7510493864592833,
          -7,
          -2.945795102198527,
          -3.3608299960638286,
          -7,
          -4.236533385918288,
          -7,
          -3.257758548072965,
          -3.3449504264625767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.506025600803707,
          -2.977151788903537,
          -2.8623647524766747,
          -7,
          -2.8356905714924254,
          -2.6536762559250167,
          -2.994866823015008,
          -2.9457147140598603,
          -3.3439990690571615,
          -2.7040892061201514,
          -7,
          -3.1736537289204207,
          -3.1486797599073886,
          -7,
          -7,
          -2.603056550608781,
          -3.558468562523795,
          -3.009592521262823,
          -7,
          -7,
          -2.055613530125348,
          -7,
          -3.413634997198556,
          -7,
          -2.5394345754799916,
          -7,
          -3.5947239464097467,
          -7,
          -7,
          -4.135736743509474,
          -2.237519302805797,
          -3.1447471299618526,
          -7,
          -7,
          -2.7047937573650462,
          -7,
          -3.0443437348951075,
          -7,
          -3.1965906541173066,
          -3.2067809156837686,
          -7,
          -7,
          -3.2938043599193367,
          -2.7132104434506292,
          -3.500030534183874,
          -2.781396305196791,
          -2.9099569781681645,
          -3.453471233722936,
          -7,
          -2.8313577854420675,
          -2.616105810460869,
          -7,
          -7,
          -2.920123326290724,
          -2.981637424655769,
          -7,
          -3.412432545593535,
          -7,
          -3.335858911319818,
          -3.973035440686933,
          -7,
          -2.735939519022239,
          -2.224413521046866,
          -7,
          -1.7750175934288313,
          -7,
          -7,
          -7,
          -3.872272846224205,
          -3.3664229572259727,
          -3.2638726768652235,
          -2.718224803628757,
          -7,
          -2.992995098431342,
          -2.887561040930009,
          -2.5128029425484315,
          -3.2760786594797535,
          -3.583198773968623,
          -3.257518584268037,
          -3.6466977312993345,
          -3.842921120759982,
          -3.166282067316571,
          -3.390581878550435,
          -3.485153349903652,
          -7,
          -3.1559430179718366,
          -3.3106933123433606,
          -7,
          -3.48440661994362,
          -7,
          -7,
          -7,
          -2.7143914028949405,
          -2.604825824595212,
          -3.4262129542373616,
          -3.6616115767205613,
          -7,
          -7,
          -7,
          -3.217878578027433,
          -7,
          -3.073131564940993,
          -3.186744501716686,
          -3.503109436671369,
          -7,
          -2.5179872030250783,
          -3.1458177144918276,
          -3.0051970177572516,
          -3.417969642214737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0496609543576354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3848907965305544,
          -3.2975416678181597,
          -7,
          -3.5545800070874893,
          -7,
          -3.4794313371977363,
          -7,
          -7,
          -2.5453954864899164,
          -3.385069776331935,
          -7,
          -3.740638970811629,
          -7,
          -7,
          -7,
          -7,
          -3.609914410085998,
          -7,
          -7,
          -7,
          -7,
          -3.7803893284709527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6338722626583326,
          -5.094396585245832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.140328883183799,
          -7,
          -7,
          -7,
          -7,
          -3.607025878434786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605644374489854,
          -7,
          -7,
          -3.769894035812169,
          -7,
          -7,
          -3.0836817472743014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.44554193436792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7829501332654125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.716003343634799,
          -7,
          -7,
          -4.060458597797985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.849775548923395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.750760952738518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5949447366950835,
          -7,
          -3.632356046239073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.529725430610816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.45499721730946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.716174522142771,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021203085977509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.173390251465195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5739154404215507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9181876613589255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.744560911018383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.766933093837284,
          -4.32576188531923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8603380065709936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7944880466591697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8614746688571686,
          -7,
          -7,
          -3.1884597362982907,
          -4.395782875918288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.099909685319397,
          -7,
          -7,
          -7,
          -7,
          -3.6410773133253747,
          -7,
          -7,
          -3.503245771465113,
          -3.121887985103681,
          -3.2430380486862944,
          -3.528000246372667,
          -7,
          -3.6030902178122184,
          -2.947643745820492,
          -7,
          -7,
          -2.9626849566736677,
          -7,
          -7,
          -7,
          -2.745855195173729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.401400540781544,
          -7,
          -3.2551116255008354,
          -7,
          -7,
          -7,
          -3.5688826280523136,
          -7,
          -7,
          -1.7829501332654125,
          -7,
          -3.876160084825628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.026201186263154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.149680882482938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7759379565339373,
          -7,
          -7,
          -7,
          -3.159266331093494,
          -7,
          -7,
          -7,
          -7,
          -3.5440680443502757,
          -7,
          -7,
          -4.173186268412274,
          -4.152326572848545,
          -7,
          -7,
          -7,
          -4.993934171088351,
          -2.513217600067939,
          -7,
          -7,
          -7,
          -7,
          -3.998520882835038,
          -7,
          -7,
          -7,
          -4.367896123114806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.154149979881548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055913223916149,
          -7,
          -7,
          -1.1781544196194547,
          -7,
          -3.2190478439301646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.375114684692225,
          -7,
          -3.399731392881681,
          -7,
          -2.940516484932567,
          -3.770965477721236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5240201243391467,
          -2.3654879848909,
          -3.9226735678585545,
          -7,
          -7,
          -7,
          -7,
          -3.751257927760953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.662521737910115,
          -3.1290450598879582,
          -7,
          -3.152390279480791,
          -7,
          -3.1870504506422686,
          -7,
          -7,
          -7,
          -4.0408791245157865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3818367999983434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9112108931375533,
          -7,
          -7,
          -5.1109010114125795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8150461760646306,
          -7,
          -7,
          -7,
          -4.315025199312605,
          -7,
          -4.232881807330064,
          -7,
          -4.710937770328562,
          -7,
          -7,
          -7,
          -3.99140330258004,
          -7,
          -3.9600424557268417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.455606112581867,
          -3.426998958756537,
          -7,
          -2.847572659142112,
          -7,
          -7,
          -3.2258259914618934,
          -7,
          -7,
          -3.9277808493473745,
          -7,
          -7,
          -7,
          -5.131871982362283,
          -7,
          -2.7737864449811935,
          -7,
          -7,
          -7,
          -3.5854607295085006,
          -3.2727695865517594,
          -7,
          -3.2012605322507914,
          -7,
          -7,
          -7,
          -7,
          -5.527368859133329,
          -3.869349080759093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -7,
          -7,
          -7,
          -7,
          -3.697490887171057,
          -7,
          -7,
          -7,
          -7,
          -3.53447939331355,
          -4.085861173788451,
          -4.761340791717771,
          -7,
          -7,
          -4.416503208646225,
          -7,
          -7,
          -3.0674428427763805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.07083112373925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.372599050995377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.997622254961639,
          -7,
          -7,
          -7,
          -4.621384028481653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.774049574030081,
          -7,
          -4.375882991545229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.332279357797102,
          -7,
          -7,
          -7,
          -4.66153347407699,
          -4.203105444776454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.991483031090237,
          -4.885843030854342,
          -5.104339419249784,
          -7,
          -7,
          -7,
          -4.95537020971636,
          -7,
          -4.803253919365127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.611059147483494,
          -7,
          -7,
          -7,
          -7,
          -4.466299058751786,
          -7,
          -7,
          -4.745418341943429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.468524557299703,
          -7,
          -3.881812462894711,
          -7,
          -7,
          -4.040701211937358,
          -7,
          -7,
          -7,
          -3.744214724814166,
          -7,
          -4.4959673257948305,
          -3.610553705317095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5203525040833177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.79338872098791,
          -4.787658801910277,
          -7,
          -7,
          -3.0313579619570263,
          -7,
          -3.458788881710845,
          -7,
          -7,
          -4.2499317566341945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6290696425437527,
          -7,
          -2.963079160641827,
          -3.683272236315922,
          -7,
          -7,
          -3.2355284469075487,
          -3.5106790310322102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.855798474252288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313375022247447,
          -3.374565060722765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.244957106607392,
          -7,
          -7,
          -7,
          -3.241795431295199,
          -7,
          -3.6399842480415883,
          -7,
          -3.6823256186678073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.91539983521227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.19685294676045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.031581570404944,
          -7,
          -7,
          -7,
          -3.570367785823503,
          -3.1527468640264606,
          -3.438384107034714,
          -7,
          -3.8880671134074367,
          -2.5810034007407334,
          -4.0790002523038495,
          -7,
          -3.3941013020400446,
          -2.971198510213833,
          -2.6629277397598625,
          -3.130655349022031,
          -7,
          -7,
          -7,
          -7,
          -2.4450850227193537,
          -3.6847257048088564,
          -7,
          -2.978750981332984,
          -2.3314613283186794,
          -3.424663890583937,
          -3.401400540781544,
          -3.8596185787721806,
          -2.7715874808812555,
          -3.009610221198917,
          -3.8828659197216293,
          -3.204933522354145,
          -3.2996162399984135,
          -7,
          -7,
          -7,
          -3.0995819938670537,
          -3.397418542351348,
          -2.083905552732438,
          -2.906634286963973,
          -3.11293997608408,
          -3.8809849904867533,
          -2.9107502760558157,
          -3.871105700985585,
          -3.88632148655948,
          -2.910139105384123,
          -3.43098828567289,
          -1.6185974631800342,
          -7,
          -3.600264821501586,
          -7,
          -1.3469231820488825,
          -7,
          -1.9968730702437054,
          -2.502199442662362,
          -1.569963444838021,
          -2.7154684981461377,
          -7,
          -2.747689188289225,
          -2.3864760989200358,
          -3.596432142349082,
          -7,
          -7,
          -7,
          -3.113553425855539,
          -1.483375948594675,
          -2.1547458012533567,
          -7,
          -3.864807629026147,
          -1.1175501570831434,
          -3.5599066250361124,
          -2.111890968147374,
          -2.663386788318517,
          -7,
          -7,
          -3.0894340761633927,
          -7,
          -2.8778031216951354,
          -7,
          -3.876160084825628,
          -7,
          -2.7705083659594516,
          -3.2770358881721102,
          -7,
          -2.617957087809433,
          -3.415585383086003,
          -2.954461794716341,
          -3.167654847476959,
          -3.4590907896005865,
          -7,
          -2.3945680807975416,
          -2.7795964912578244,
          -2.1945525288908807,
          -3.864866914328526,
          -7,
          -3.1303797231516177,
          -3.33193317250328,
          -2.9639294220265584,
          -2.879996481067212,
          -3.872272846224205,
          -2.6026442253688558,
          -3.8959747323590648,
          -3.8608767964032977,
          -3.859918485200716,
          -1.8339166756306267,
          -7,
          -2.6609602917760835,
          -3.9188687433809846,
          -1.295114136891793,
          -2.1112653866516125,
          -7,
          -7,
          -3.432113748648645,
          -3.4395432098217347,
          -2.7749378617219875,
          -7,
          -7,
          -3.253531843527005,
          -3.1097894001793462,
          -3.266741133090716,
          -7,
          -3.0349691819441498,
          -3.1127827753067483,
          -7,
          -3.359361102738486,
          -7,
          -3.399368759646763,
          -2.606757447446635,
          -2.3059456359742456,
          -3.558188385437139,
          -7,
          -3.4150290231817015,
          -0.7181772172401191,
          -2.7586002350599466,
          -3.8561244442423,
          -3.384174138807033,
          -3.8770544372152305,
          -7,
          -7,
          -7,
          -3.8677620246502005,
          -7,
          -2.289358432636332,
          -2.721989727881355,
          -2.7909471353636977,
          -3.1111504521226667,
          -7,
          -4.157819284417298,
          -7,
          -3.873843533223436,
          -3.612200875449579,
          -4.2598088229546285,
          -2.3869041288246544,
          -7,
          -3.8767949762007006,
          -7,
          -2.5878053460867396,
          -7,
          -3.85769425778655,
          -3.4632457912660026,
          -1.9915463125131274,
          -7,
          -3.442845446763725,
          -3.9289588408808296,
          -7,
          -3.1845494813206976,
          -3.4600454489953703,
          -2.5524248457040857,
          -3.151114367869422,
          -2.337829929222736,
          -2.8760603067714383,
          -3.579440597139797,
          -7,
          -7,
          -7,
          -3.877946951629188,
          -3.573103783163991,
          -3.862191031051597,
          -2.818398039146461,
          -3.877774349991398,
          -3.509689653828353,
          -7,
          -2.0969100130080562,
          -2.2438644894340767,
          -7,
          -2.83160632599708,
          -2.101780189542242,
          -3.6185187633048668,
          -3.359835482339888,
          -2.9706567545749585,
          -2.5549936257149755,
          -3.911743377855932,
          -2.970863217370339,
          -2.6111329932747487,
          -3.184521085852911,
          -3.3589242153885115,
          -7,
          -2.284221787734209,
          -2.579733903329737,
          -2.9669890483053907,
          -7,
          -2.792951708250132,
          -7,
          -3.6207258227036743,
          -7,
          -2.971224291252213,
          -3.8773713458697743,
          -7,
          -2.4863596256881286,
          -2.8409260187596415,
          -7,
          -1.8818776844271032,
          -3.77110221095409,
          -2.508044027297837,
          -7,
          -7,
          -3.8776592441116087,
          -7,
          -7,
          -3.5814945422908995,
          -7,
          -7,
          -3.2203986832211235,
          -2.5468304527037255,
          -3.463210202983969,
          -3.2454121250467365,
          -7,
          -3.879841055986563,
          -3.04105414195654,
          -7,
          -3.8608169638645378,
          -7,
          -3.3489373426608426,
          -2.9743581504051995,
          -7,
          -7,
          -7,
          -7,
          -3.57316180901509,
          -7,
          -7,
          -3.4547432587723694,
          -2.821490462846237,
          -7,
          -3.8610562445768735,
          -7,
          -7,
          -7,
          -3.589335125784143,
          -7,
          -3.4171948079647763,
          -3.7640266076920375,
          -3.238798562713917,
          -3.066969349796947,
          -2.893892249396686,
          -3.456416647252042,
          -7,
          -7,
          -0.6841387274968713,
          -3.46987108602871,
          -2.2925128983786878,
          -3.5945582800022815,
          -3.048247531803974,
          -3.423846369199462,
          -3.5732198271144218,
          -3.575707301476683,
          -3.07379687751059,
          -2.942928844081547,
          -1.046014774029043,
          -2.520337942903055,
          -3.0950742053076143,
          -1.4628414949830963,
          -2.345177616542704,
          -3.867290669854884,
          -3.137090246922551,
          -2.4774830160749435,
          -2.4056647257683834,
          -7,
          -3.3988077302032647,
          -3.9166644645413973,
          -7,
          -3.451939869365103,
          -7,
          -2.8732721503754086,
          -3.037341110553272,
          -3.912487761332324,
          -3.9789561652175918,
          -3.3220124385824006,
          -2.7607533744730497,
          -2.0430295895894606,
          -7,
          -3.3025640175436135,
          -7,
          -3.0522540943300562,
          -2.7477388061000108,
          -3.1603184379840017,
          -3.119695681195928,
          -2.582675106925388,
          -3.2653233064596994,
          -3.0953188246674084,
          -2.963916551690292,
          -2.5416272402423585,
          -3.415799423707435,
          -2.3034737689179003,
          -7,
          -7,
          -7,
          -3.6191977157929474,
          -2.1522078524021193,
          -7,
          -7,
          -2.714795291445831,
          -3.874945436085532,
          -2.771685449409057,
          -3.403578034499039,
          -2.1854377696881704,
          -3.5922322902240102,
          -2.9057419273916016,
          -2.8078930122753323,
          -7,
          -3.448794627038752,
          -2.811449323773955,
          -3.5005533808904343,
          -7,
          -2.6065157176196125,
          -3.3554867054564532,
          -2.5470906692062414,
          -7,
          -2.7869151523951547,
          -7,
          -2.9300146074718962,
          -2.7862442464696757,
          -3.1264561134318045,
          -3.1037060059185544,
          -3.8632038590286295,
          -7,
          -2.852808311744541,
          -3.5744364202024044,
          -7,
          -3.895643504824079,
          -3.2710279942623233,
          -3.879153246184246,
          -1.924716630482366,
          -7,
          -7,
          -3.5849434042753194,
          -4.518059667235619,
          -7,
          -7,
          -4.16423385469261,
          -3.336345355527641,
          -4.156488576050017,
          -3.2448858293864875,
          -2.9208556016179306,
          -3.910224071953891,
          -4.031448861859383,
          -4.430204098631749,
          -4.072771766971065,
          -4.248214474078034,
          -2.9524824679356727,
          -3.9719249491841913,
          -4.129883155340622,
          -3.2000292665537704,
          -4.243905770217522,
          -4.43633760224632,
          -4.02271698005103,
          -4.057363492797426,
          -3.8057556510562356,
          -3.288281171909262,
          -3.2485082765704014,
          -7,
          -3.8733455175941787,
          -4.344804755754967,
          -7,
          -2.9225415156302677,
          -3.848804701051804,
          -3.889933671305516,
          -4.444653631000238,
          -4.349685397810314,
          -7,
          -4.276323911020188,
          -3.8547613566936363,
          -3.5913738234738113,
          -7,
          -2.7293650302622163,
          -7,
          -3.5827125326617333,
          -2.311960322158872,
          -2.7611758131557314,
          -2.5067755366066433,
          -3.192830638664709,
          -3.177295960194052,
          -2.756616605608402,
          -2.7877752377008136,
          -3.9955474494751373,
          -4.059512930284156,
          -2.564830020031201,
          -2.4209086143865757,
          -7,
          -2.5095481300541147,
          -2.980555227710052,
          -3.8675264111997434,
          -3.4148396983369262,
          -2.8480458327664424,
          -7,
          -7,
          -2.538156595659039,
          -2.6173947603991423,
          -3.996095565863999,
          -7,
          -2.986734422140967,
          -7,
          -2.554833535393301,
          -3.629613445378183,
          -4.1863080477904715,
          -3.1925442234426136,
          -3.668012971641832,
          -7,
          -3.1419042120922844,
          -2.8848854358386515,
          -2.9192976711334797,
          -3.254628628807601,
          -2.556113963980344,
          -3.0395463043793804,
          -2.72553118169117,
          -2.4994074638844803,
          -3.89470365260923,
          -2.2857011143608963,
          -2.8928886460307943,
          -3.2384224958854797,
          -3.373452353063682,
          -7,
          -3.074084689028244,
          -2.529627893960828,
          -2.7990942809571027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9915809464515983,
          -1.51638280249711,
          -1.3989831930562173,
          -7,
          -3.46159856006272,
          -2.165455437571897,
          -3.362105319293773,
          -2.738433697678285,
          -2.725269745809246,
          -2.2884408683559605,
          -7,
          -2.058357342596415,
          -1.7478578905540405,
          -2.7416579991601333,
          -7,
          -3.7023228111611077,
          -2.9930441352384736,
          -2.4410242032009224,
          -7,
          -7,
          -2.657226639945664,
          -7,
          -3.1159985963842782,
          -2.3991135714003433,
          -2.001445240874181,
          -7,
          -2.566872823826931,
          -7,
          -7,
          -3.62368148968865,
          -2.295675862872818,
          -3.179647524546354,
          -7,
          -3.502472641129268,
          -1.748246333307141,
          -7,
          -1.5528622465259387,
          -7,
          -1.9608405922118757,
          -1.4591621739243248,
          -7,
          -3.8705209500127644,
          -3.4860524616555892,
          -1.9395723545911616,
          -2.9166794974939214,
          -3.885304667588968,
          -3.026226739761552,
          -1.9298033300351878,
          -7,
          -1.7369950446660034,
          -1.3070412898672565,
          -3.651859269246949,
          -7,
          -1.7065594219777749,
          -1.6224357506996805,
          -7,
          -2.824902278076417,
          -7,
          -7,
          -7,
          -2.302114376956201,
          -1.79928192676247,
          -1.77500484574455,
          -2.5357023683167728,
          -3.4465889396769005,
          -7,
          -7,
          -3.584274671924987,
          -2.9570254668704434,
          -7,
          -1.882764132185854,
          -0.8657929080680717,
          -3.9172954009456893,
          -7,
          -1.0264431267973328,
          -1.5025185305685673,
          -2.4015608266227817,
          -2.878090733945318,
          -2.0359052102283863,
          -2.943943956577388,
          -2.493297151524906,
          -2.7980660232801418,
          -2.0240724665968712,
          -2.940861147914118,
          -3.1389865023728007,
          -7,
          -3.5621738633646483,
          -3.8585973449946924,
          -4.171331460918497,
          -3.9846623061901068,
          -2.1294454133258283,
          -3.505602132948883,
          -2.3399696410082558,
          -3.2497363045688332,
          -3.0718820073061255,
          -2.7522146133891745,
          -3.2767680767401712,
          -1.6727134419961225,
          -7,
          -2.015794267183232,
          -7,
          -1.9075705888173975,
          -1.8697009736738779,
          -4.065467672465651,
          -7,
          -2.044446917238644,
          -2.167918737160758,
          -1.8462862609521928,
          -2.992277301781418,
          -7,
          -7,
          -3.859918485200716,
          -7,
          -7,
          -7,
          -2.8154781280733654,
          -7,
          -2.7114598529873253,
          -2.8404482831667024,
          -7,
          -3.2686949535621777,
          -3.4019172505175748,
          -3.292422223682128,
          -3.8854177651109363,
          -2.0488827895528776,
          -2.810284228953281,
          -2.4972418495113913,
          -3.2535456858028002,
          -4.052655473039527,
          -3.4138583422700264,
          -3.860278099752235,
          -2.80303012271076,
          -3.0396973239347242,
          -7,
          -2.497523633254155,
          -2.893206753059848,
          -2.937071889942818,
          -3.3065108056433825,
          -3.976304116552003,
          -2.216448676782301,
          -3.5650209283452936,
          -3.267054335651413,
          -2.9548693710664784,
          -3.8627275283179747,
          -2.3000983660999252,
          -2.6442830677179567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8399491678129896,
          -7,
          -7,
          -3.9777800733459263,
          -2.9691495557176637,
          -7,
          -3.295567099962479,
          -4.2315460439969215,
          -2.923392065156988,
          -7,
          -7,
          -7,
          -7,
          -3.263636068588108,
          -3.1337454872286643,
          -7,
          -7,
          -3.2997251539756367,
          -3.2466518472694537,
          -7,
          -3.3224260524059526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9436923271060165,
          -7,
          -3.5596672783880576,
          -7,
          -4.242451355028342,
          -2.9927743642553555,
          -7,
          -2.0747912283446883,
          -7,
          -3.1554878621412814,
          -7,
          -7,
          -7,
          -3.4274861090957858,
          -3.4916417934775863,
          -3.1368737583830857,
          -7,
          -2.2862599373472543,
          -3.2766341090681457,
          -7,
          -2.775974331129369,
          -3.0110415256389502,
          -7,
          -7,
          -7,
          -7,
          -2.8913515837206996,
          -2.6216954623292787,
          -4.470968804605796,
          -7,
          -7,
          -2.683272236315922,
          -7,
          -3.8295610562993927,
          -7,
          -7,
          -3.3047058982127653,
          -2.4418216806864157,
          -7,
          -3.5582284218033258,
          -7,
          -7,
          -2.7705083659594516,
          -7,
          -7,
          -7,
          -7,
          -3.371437317404101,
          -2.693726948923647,
          -3.6854730197227594,
          -3.5017437296279943,
          -7,
          -3.413964898303298,
          -7,
          -3.2268207703495495,
          -7,
          -7,
          -7,
          -7,
          -3.574956775764507,
          -7,
          -3.2986347831244354,
          -3.587177588838869,
          -7,
          -7,
          -7,
          -3.1279951610475374,
          -7,
          -3.0949367352066424,
          -7,
          -2.601361456580435,
          -2.5129060669308303,
          -7,
          -7,
          -7,
          -7,
          -4.408392620133361,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.909823369650912,
          -4.463601869359427,
          -7,
          -7,
          -7,
          -7,
          -3.4252080511386565,
          -7,
          -7,
          -7,
          -7,
          -2.6271199599275414,
          -1.884125673019205,
          -7,
          -7,
          -3.312794214562137,
          -7,
          -7,
          -7,
          -3.2814878879400813,
          -7,
          -7,
          -3.8265283063406517,
          -3.7162538258960365,
          -2.6127838567197355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.104691918900206,
          -2.6027109449575576,
          -7,
          -7,
          -7,
          -3.30263151595426,
          -7,
          -7,
          -7,
          -3.152135396861876,
          -7,
          -1.7697543178375743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5510869175680946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.510410948010177,
          -2.235107414899873,
          -4.310055737750892,
          -7,
          -7,
          -3.2382932374424964,
          -7,
          -3.7856856682809013,
          -3.715418322595056,
          -7,
          -7,
          -3.4720246977002813,
          -3.504742636271688,
          -7,
          -7,
          -3.749504423876142,
          -7,
          -7,
          -7,
          -3.2335037603411343,
          -7,
          -4.0668102756258335,
          -7,
          -3.518941443661678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6705937061018545,
          -7,
          -3.6269046860771983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.500556632954331,
          -7,
          -4.172807188369087,
          -4.509956504538329,
          -7,
          -7,
          -7,
          -2.948738890358178,
          -7,
          -7,
          -7,
          -3.4824447919182653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.250185712886612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2052043639481447,
          -2.58782907611072,
          -3.2943559851451605,
          -7,
          -7,
          -7,
          -2.850013469810422,
          -2.380986075961567,
          -1.7879110876728,
          -7,
          -4.722214230820944,
          -2.441258614866301,
          -2.4003220836047983,
          -7,
          -7,
          -7,
          -2.7174624577374917,
          -3.1158766642684443,
          -3.3140253085157405,
          -3.4643404846276673,
          -2.7686381012476144,
          -7,
          -3.443106456737266,
          -3.6239725120169965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7002090764515674,
          -3.690993032099869,
          -3.433289685195026,
          -7,
          -7,
          -4.022164967179576,
          -3.660248683421062,
          -7,
          -4.013911091029002,
          -7,
          -7,
          -7,
          -7,
          -3.4133416823749867,
          -2.9566485792052033,
          -7,
          -7,
          -7,
          -1.739127142481937,
          -4.058344300223194,
          -2.420505836570779,
          -7,
          -7,
          -7,
          -3.8465845028980463,
          -3.2611041934228426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3382350842284592,
          -3.324351058801809,
          -7,
          -3.4156409798961542,
          -2.960787780819836,
          -7,
          -3.333156738826888,
          -3.330819466495837,
          -3.2757377809986696,
          -7,
          -3.8768526476013436,
          -7,
          -3.385665843515682,
          -7,
          -3.401400540781544,
          -7,
          -3.6787914343662442,
          -7,
          -3.5180530800797216,
          -7,
          -7,
          -7,
          -2.8826383616960385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.589344990545666,
          -7,
          -7,
          -3.7063977028613415,
          -7,
          -7,
          -7,
          -4.723677278076476,
          -4.095744541366045,
          -3.64704048585496,
          -3.9060439777650204,
          -2.8781048276889516,
          -3.33429287154846,
          -7,
          -4.331730892815457,
          -4.127590677007958,
          -4.702447770011604,
          -3.6928359076142545,
          -4.3553173987845595,
          -4.208468230265617,
          -3.8878933772167623,
          -7,
          -4.339411687131677,
          -7,
          -4.913177833990468,
          -7,
          -3.5068984373862233,
          -3.846615416837761,
          -7,
          -4.670635429748331,
          -7,
          -7,
          -3.3684871392613425,
          -7,
          -3.8439087506401615,
          -4.349782453363471,
          -7,
          -7,
          -7,
          -7,
          -3.9952548376314962,
          -3.7432222303773846,
          -2.280836949797404,
          -7,
          -3.150277739061255,
          -4.07092403147615,
          -3.2553690042664414,
          -2.9880384429265163,
          -3.275119316297735,
          -2.6481159567559627,
          -3.557329216984655,
          -3.746244871720198,
          -7,
          -7,
          -2.809227601158241,
          -3.9141138709336474,
          -7,
          -3.378170700063069,
          -2.785110715691334,
          -7,
          -3.87742894078822,
          -7,
          -7,
          -7,
          -4.043117659208095,
          -3.608791967362849,
          -4.8624491434142385,
          -7,
          -7,
          -7,
          -4.961829091708983,
          -7,
          -4.009605548485871,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.792118418302425,
          -7,
          -3.0429444862795263,
          -3.8866598978612026,
          -3.6042044458563303,
          -3.9034833881331887,
          -7,
          -3.5519035743682226,
          -4.962274604623315,
          -7,
          -5.350120037711959,
          -7,
          -7,
          -4.32087296522725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0559443349503614,
          -3.0778522036135776,
          -2.574110223183241,
          -7,
          -7,
          -3.4131693257315994,
          -3.0965624383741357,
          -7,
          -7,
          -2.837777769553733,
          -7,
          -3.851930678640268,
          -3.1323397511926045,
          -7,
          -7,
          -7,
          -7,
          -3.1709947020363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1936810295412816,
          -3.668944734457734,
          -7,
          -4.064270752974006,
          -7,
          -7,
          -4.133528263767173,
          -3.593760125350598,
          -3.8939419873734353,
          -7,
          -7,
          -2.6957880262155345,
          -7,
          -2.7798025621902336,
          -7,
          -7,
          -2.7119211722353125,
          -7,
          -7,
          -7,
          -3.4626974081017172,
          -3.7866804531966487,
          -7,
          -7,
          -2.9426693313867003,
          -7,
          -2.901049445343407,
          -2.5072604310624937,
          -7,
          -7,
          -3.0780941504064105,
          -3.3608772971020398,
          -7,
          -2.4832448609315168,
          -7,
          -7,
          -7,
          -3.537189226243645,
          -3.006635214937953,
          -3.623352681537992,
          -7,
          -3.4668676203541096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.238547887681328,
          -2.6784045552989557,
          -3.447623097760286,
          -7,
          -2.796285169818761,
          -2.461782667055416,
          -3.43608309864198,
          -7,
          -3.487623124274871,
          -7,
          -7,
          -7,
          -2.9353632928474607,
          -3.470116353151004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5445995081921287,
          -3.6181527333785195,
          -2.6248782618895143,
          -7,
          -3.721728198572788,
          -3.4481709982818494,
          -7,
          -2.569586694764772,
          -7,
          -3.490941205356787,
          -7,
          -7,
          -3.074743320941003,
          -7,
          -7,
          -3.1908917169221698,
          -3.1122697684172707,
          -3.572257382889322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.928623410282304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3242824552976926,
          -7,
          -7,
          -7,
          -3.4712917110589387,
          -3.548235821497576,
          -3.5500448095649055,
          -7,
          -3.3656751404559175,
          -7,
          -3.675136504467994,
          -7,
          -7,
          -3.914038885724392,
          -3.3756636139608855,
          -3.3690302218091532,
          -7,
          -3.6027109449575576,
          -7,
          -3.2753113545418118,
          -7,
          -3.5524248457040857,
          -7,
          -7,
          -3.469674772551798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6913762288033705,
          -7,
          -7,
          -3.757515324077912,
          -7,
          -7,
          -7,
          -3.5949999167322457,
          -3.5143086256567755,
          -3.132899769944483,
          -7,
          -7,
          -2.8027737252919755,
          -7,
          -3.862608363964942,
          -3.8899736384039962,
          -7,
          -2.7668773829165607,
          -3.652704085925939,
          -2.785329835010767,
          -7,
          -7,
          -2.6287974855667104,
          -7,
          -7,
          -4.088017897250127,
          -7,
          -7,
          -7,
          -2.2474822606770544,
          -7,
          -2.163757523981956,
          -7,
          -7,
          -7,
          -7,
          -4.6644100392352845,
          -7,
          -2.972665592266111,
          -3.343605508104172,
          -3.126780577012009,
          -3.1691844255650965,
          -2.910090545594068,
          -7,
          -7,
          -2.291305408119733,
          -7,
          -3.2455233963002588,
          -2.9748186146454407,
          -2.906335041805091,
          -7,
          -7,
          -3.0409976924234905,
          -2.6023700909354988,
          -7,
          -7,
          -7,
          -7,
          -3.0191162904470725,
          -3.2726536974298166,
          -3.8493733405098816,
          -2.8129133566428557,
          -7,
          -3.1097472377132287,
          -7,
          -7,
          -2.791590407939026,
          -7,
          -7,
          -3.9213808014591756,
          -7,
          -3.3656751404559175,
          -7,
          -7,
          -3.2770358881721102,
          -7,
          -7,
          -2.18089014193745,
          -3.451632947456991,
          -2.5453071164658243,
          -2.8977645045116174,
          -3.249198357391113,
          -7,
          -7,
          -3.8687032022785366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9628426812012423,
          -7,
          -3.589726256254237,
          -7,
          -7,
          -7,
          -2.397070549959409,
          -7,
          -3.0209594528185275,
          -7,
          -7,
          -3.1869563354654122,
          -2.7311857076340007,
          -3.232542349529745,
          -7,
          -7,
          -2.529558673021163,
          -7,
          -3.540543976514976,
          -7,
          -7,
          -2.867271018965448,
          -3.0734739527696653,
          -3.6375897858387,
          -7,
          -3.4756421375547006,
          -4.152762139680493,
          -2.987219229908005,
          -3.8436687229791437,
          -3.0068937079479006,
          -4.091033516054471,
          -3.1357685145678222,
          -7,
          -3.009344646383631,
          -7,
          -7,
          -2.9196227989342525,
          -3.1794081515138357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2523675144598987,
          -3.6886867242841235,
          -7,
          -7,
          -7,
          -7,
          -3.1562461903973444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.241421951711995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.193958978019187,
          -7,
          -7,
          -7,
          -7,
          -3.880356199419236,
          -7,
          -7,
          -3.7990907774644507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5810285888174453,
          -7,
          -7,
          -7,
          -7,
          -2.8610253770532483,
          -7,
          -7,
          -2.6348130216130192,
          -2.889581802149624,
          -3.381656482585787,
          -3.2227164711475833,
          -3.279210512601395,
          -3.1470576710283598,
          -7,
          -3.0330214446829107,
          -2.650793039651931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.076421967360593,
          -7,
          -7,
          -7,
          -3.225567713439471,
          -7,
          -7,
          -3.04688519083771,
          -3.0563330349511615,
          -7,
          -2.914166793875635,
          -4.357305807546096,
          -3.856003453997221,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.984077033902831,
          -2.7366620446156418,
          -3.5873741720730656,
          -3.832189461068513,
          -5.110948948781672,
          -7,
          -7,
          -2.4978507395784066,
          -7,
          -7,
          -7,
          -3.037227234582274,
          -3.241048150671644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.776701183988411,
          -7,
          -3.9885044560907814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4939556956948823,
          -7,
          -7,
          -7,
          -3.714036218347168,
          -2.4740080192955194,
          -3.3582141279022437,
          -3.044147620878723,
          -4.711419142177214,
          -7,
          -7,
          -7,
          -3.215329068686353,
          -7,
          -3.485437481076301,
          -2.6764441823287006,
          -7,
          -3.2089785172762535,
          -7,
          -7,
          -3.1699681739968923,
          -3.4641913706409997,
          -3.436162647040756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.046300019652969,
          -2.1847946376816547,
          -7,
          -7,
          -7,
          -4.286918171392467,
          -7,
          -7,
          -3.4414931434230693,
          -7,
          -7,
          -2.7454094219943266,
          -2.8077604599357904,
          -2.7521445200423504,
          -2.275514596639852,
          -3.4876332174568763,
          -3.2949069106051923,
          -3.529558673021163,
          -7,
          -5.2263730334113,
          -3.0939467238905833,
          -7,
          -7,
          -7,
          -7,
          -2.7750380149595006,
          -7,
          -7,
          -7,
          -2.8692317197309762,
          -3.3298045221640695,
          -7,
          -3.7024305364455254,
          -7,
          -3.116939646550756,
          -3.62293896921149,
          -7,
          -4.857284238807806,
          -3.5426298348536434,
          -5.030226036766992,
          -7,
          -3.016057865962853,
          -3.977349410604157,
          -3.3007403694565793,
          -7,
          -3.0881360887005513,
          -2.5308397786165204,
          -2.5390760987927767,
          -3.184194404461818,
          -3.423081958297231,
          -1.8725724629880052,
          -2.732393759822968,
          -7,
          -3.1015752462559334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1736418872775687,
          -2.3394514413064407,
          -2.693726948923647,
          -3.6923511178233523,
          -4.4710935923795985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1022907468986824,
          -7,
          -7,
          -7,
          -4.241936440037947,
          -4.520732378332008,
          -3.979457318097848,
          -7,
          -7,
          -4.019557633474107,
          -7,
          -7,
          -7,
          -5.388010566014608,
          -7,
          -4.231278397611435,
          -4.105714510570921,
          -7,
          -4.658459776998312,
          -4.186476030554059,
          -7,
          -4.774465869254357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8360496933453354,
          -7,
          -7,
          -3.787300106090019,
          -3.284938054343137,
          -3.6582022533870147,
          -7,
          -7,
          -4.53655844257153,
          -7,
          -7,
          -7,
          -3.96275751707078,
          -4.680779554175909,
          -7,
          -4.1365620365899805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.146584248339436,
          -4.789010679234133,
          -7,
          -7,
          -3.6904618932461783,
          -7,
          -3.9555578754030956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.605951157564873,
          -3.913707913980483,
          -3.8067225030761813,
          -4.296297639188485,
          -7,
          -2.7351995484223135,
          -3.797465397090131,
          -4.354007540435039,
          -7,
          -5.347601242663674,
          -7,
          -7,
          -4.608279934969188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.624090474733072,
          -3.0599418880619544,
          -2.9047440096065236,
          -7,
          -7,
          -3.740717876059285,
          -3.3902283624691303,
          -3.0066799277408256,
          -7,
          -3.146128035678238,
          -7,
          -4.195304510332836,
          -3.0138900603284386,
          -7,
          -7,
          -3.82610721152752,
          -7,
          -3.66661156841903,
          -7,
          -7,
          -3.0002170929722305,
          -7,
          -7,
          -2.482158695411276,
          -2.4107123600509404,
          -7,
          -7,
          -7,
          -2.8135809885681917,
          -7,
          -3.3618606916229434,
          -4.788062260178738,
          -7,
          -7,
          -2.8577344348976292,
          -7,
          -2.687677564973793,
          -7,
          -7,
          -3.0464707760442677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2440295890300215,
          -2.648034574860868,
          -7,
          -2.5770319856260313,
          -3.2876226024861923,
          -7,
          -7,
          -2.6973539073617196,
          -3.5182506513085,
          -7,
          -7,
          -7,
          -7,
          -3.897352134344313,
          -3.3324384599156054,
          -3.072500197917994,
          -2.616400486768762,
          -7,
          -2.3066930278565714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.33665982345442,
          -2.899752125747131,
          -7,
          -2.669316880566112,
          -2.839408208267848,
          -2.7100153557906577,
          -2.9199144806594317,
          -3.36679638328673,
          -3.7038285389563477,
          -2.6199872475431762,
          -3.037745129269592,
          -3.1559430179718366,
          -4.03322264667025,
          -7,
          -7,
          -3.1344958558346736,
          -7,
          -2.665580991017953,
          -4.360157764747342,
          -7,
          -7,
          -7,
          -3.6844349723089813,
          -3.3296012483565187,
          -7,
          -7,
          -7,
          -3.1470576710283598,
          -7,
          -2.5548524343720542,
          -7,
          -3.3443922736851106,
          -3.190144864662612,
          -7,
          -7,
          -2.7798368978412693,
          -7,
          -3.492166493894078,
          -3.0472748673841794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8032522114304568,
          -7,
          -2.7024305364455254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.392169149489736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5363058723510337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.902810319891709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.571555113262753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304743577061294,
          -7,
          -7,
          -3.771954748963949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.823392709792886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.18089014193745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.372580635030913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.016490131620828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0806264869218056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.337907532033172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.605574376060999,
          -7,
          -7,
          -7,
          -7,
          -3.7506761405150186,
          -7,
          -7,
          -3.2476050641507705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7335182514344876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.292422223682128,
          -7,
          -7,
          -5.71271197970362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.463902938344607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.094960002436666,
          -7,
          -7,
          -7,
          -4.007555758625101,
          -3.2400497721126476,
          -4.052911867935484,
          -7,
          -4.407331408000757,
          -7,
          -7,
          -2.617000341120899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.066272667101881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8948696567452528,
          -3.4628470358316736,
          -2.9815165943059867,
          -7,
          -7,
          -7,
          -7,
          -5.8282053893372865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3522790172744976,
          -7,
          -7,
          -4.290568798984483,
          -7,
          -7,
          -3.588943642740015,
          -7,
          -4.367001630838441,
          -7,
          -7,
          -4.577399875933421,
          -3.66029616027073,
          -7,
          -7,
          -4.71610355387604,
          -4.996301478805604,
          -4.1003130949578255,
          -7,
          -7,
          -4.619813078098432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.610500466643181,
          -7,
          -7,
          -4.763809705396578,
          -3.8666417205660397,
          -7,
          -7,
          -7,
          -5.234641277637988,
          -7,
          -7,
          -7,
          -4.961140966863463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.487484824056203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.103774653029688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.205177287388274,
          -7,
          -7,
          -7,
          -7,
          -4.6409036004935205,
          -4.95436795417073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.719911064198339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.11541079013392,
          -7,
          -7,
          -7,
          -7,
          -3.0527708694748816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.574630969495031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.493272117359938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067863391226035,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6726929365789984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.224001847164982,
          -2.7715874808812555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.088118362033397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2208922492195193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9683272595463874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.750820065686126,
          -7,
          -7,
          -7,
          -3.7721994219179718,
          -4.2638726768652235,
          -3.226213120724107,
          -7,
          -7,
          -7,
          -3.40671045860979,
          -3.231414972499162,
          -3.6889090176205546,
          -7,
          -2.7835137861438874,
          -2.886546427161451,
          -7,
          -3.1484484035233837,
          -7,
          -3.617629297757842,
          -3.53731527311201,
          -2.343181273996572,
          -3.555503261386879,
          -2.730109055128691,
          -2.814414087772258,
          -7,
          -2.6831971832643395,
          -7,
          -3.4390167283875126,
          -2.6278776945799716,
          -7,
          -7,
          -7,
          -3.8254601205601073,
          -2.523583901029429,
          -7,
          -7,
          -7,
          -3.109646031090973,
          -7,
          -7,
          -7,
          -2.927626962444954,
          -7,
          -2.158314785775445,
          -2.0653701812907017,
          -3.15823321854707,
          -3.072564984313118,
          -7,
          -3.4927603890268375,
          -3.080896934973246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.703061987128565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.419625360887743,
          -7,
          -4.052838169905007,
          -2.7148325124333326,
          -2.005139639652411,
          -7,
          -7,
          -2.617957087809433,
          -7,
          -3.451632947456991,
          -7,
          -7,
          -1.8015350689381235,
          -1.5923001540388062,
          -7,
          -2.588047496986083,
          -7,
          -3.4429498695778618,
          -3.4406729882937586,
          -4.0979164092373255,
          -7,
          -7,
          -7,
          -2.5416926811894625,
          -7,
          -3.4696011321138256,
          -7,
          -4.2090590341287974,
          -7,
          -3.4000196350651586,
          -2.794139355767774,
          -1.5547070012435482,
          -7,
          -3.1711411510283822,
          -7,
          -3.1020905255118367,
          -1.809887620834404,
          -3.1744959193752993,
          -7,
          -2.7483172620858336,
          -3.545430829465351,
          -3.243814947313913,
          -3.505014240084107,
          -7,
          -7,
          -2.9667672920577095,
          -7,
          -2.7278122676344823,
          -3.4512233805451995,
          -3.76982763613248,
          -7,
          -7,
          -7,
          -5.002947520467159,
          -2.82865989653532,
          -2.90687353472207,
          -1.9180594752653435,
          -7,
          -7,
          -2.8096785204031822,
          -3.099507993727965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.406506116785802,
          -3.1711411510283822,
          -3.911876397086321,
          -3.53731527311201,
          -7,
          -3.6827315646221837,
          -7,
          -7,
          -2.690449239162411,
          -4.128463891064761,
          -3.1641545025122504,
          -7,
          -3.444513206334043,
          -7,
          -2.543180823445382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.950364854376123,
          -3.5733358400660675,
          -3.6588695922019623,
          -3.3461573022320086,
          -3.5921767573958667,
          -3.681286474028084,
          -7,
          -3.4683473304121573,
          -2.4666807697155937,
          -2.3045828424686814,
          -7,
          -7,
          -7,
          -3.447623097760286,
          -7,
          -3.4038066105474227,
          -2.09796797816439,
          -7,
          -4.325022800270452,
          -7,
          -3.5631249603380444,
          -2.0910927430365986,
          -2.598790506763115,
          -2.1558526703669125,
          -2.490106399890128,
          -2.772566173085639,
          -2.740855925756123,
          -7,
          -7,
          -3.5332635167787148,
          -3.56643749219507,
          -2.9556877503135057,
          -2.8606374167737547,
          -7,
          -7,
          -7,
          -3.605951157564873,
          -4.381006719296579,
          -7,
          -3.4448875712579383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8801845528264334,
          -7,
          -7,
          -2.44394714679301,
          -3.9168748785386835,
          -3.963268251526235,
          -7,
          -7,
          -7,
          -3.4095950193968156,
          -7,
          -7,
          -7,
          -7,
          -4.009408399151867,
          -3.4680517914542377,
          -3.113414081521587,
          -4.392449049153358,
          -7,
          -7,
          -7,
          -3.5296869537729165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.437750562820388,
          -7,
          -7,
          -3.1027766148834415,
          -3.748410933476706,
          -7,
          -7,
          -7,
          -7,
          -3.012415374762433,
          -3.0028856882374884,
          -7,
          -3.490941205356787,
          -3.359645792674543,
          -2.17341042040791,
          -7,
          -2.1729305152207927,
          -3.282848602834645,
          -7,
          -7,
          -2.7213887838945316,
          -3.613630434925241,
          -4.258385826696981,
          -7,
          -4.029034578217611,
          -7,
          -7,
          -3.4446692309385245,
          -3.4722443526734725,
          -7,
          -3.571514733712986,
          -2.6032045367100345,
          -3.651423400759052,
          -7,
          -3.4871383754771865,
          -3.116939646550756,
          -2.7634279935629373,
          -2.154889186430781,
          -2.7714956153109704,
          -7,
          -3.442793225939769,
          -3.2436580266386965,
          -7,
          -3.2727695865517594,
          -2.7920413107120825,
          -2.448190836779987,
          -2.2323711362133496,
          -2.6301735297867714,
          -7,
          -3.2616196765479355,
          -3.2085014250503723,
          -3.215505378231818,
          -7,
          -7,
          -7,
          -3.1983821300082944,
          -3.4709981696608736,
          -3.294466226161593,
          -2.4856031384563617,
          -2.6770259566714305,
          -3.43435596238644,
          -7,
          -3.4308809464528913,
          -3.6386888866901237,
          -3.997136370807289,
          -1.9012139819931881,
          -7,
          -7,
          -7,
          -3.110028243534681,
          -2.3106933123433606,
          -7,
          -7,
          -7,
          -7,
          -3.3165993020938607,
          -7,
          -3.2458210061174126,
          -7,
          -3.219846386024361,
          -1.5354939947790913,
          -7,
          -4.170232370181804,
          -3.19131947982865,
          -3.903258012587803,
          -7,
          -1.3461693549750695,
          -3.9856346503592652,
          -7,
          -7,
          -3.208710019906401,
          -7,
          -1.6298403810901787,
          -3.06435100696701,
          -3.562827966219992,
          -2.6624430114561872,
          -7,
          -7,
          -2.1459341109231054,
          -3.1398790864012365,
          -7,
          -3.49373680227684,
          -2.8091555317471806,
          -3.450864692379766,
          -2.1294117956804723,
          -7,
          -3.3988077302032647,
          -3.7719862146383307,
          -7,
          -7,
          -7,
          -4.127404487771786,
          -3.129740759259531,
          -7,
          -3.106944816405672,
          -3.85034542706947,
          -7,
          -7,
          -7,
          -3.8322533701970083,
          -3.591372872376177,
          -4.126726516579761,
          -7,
          -3.612616108978632,
          -3.818966517230984,
          -4.1068026275996505,
          -7,
          -7,
          -3.9935455619442934,
          -7,
          -3.8581761379823445,
          -3.868203455637116,
          -7,
          -3.8989810036504373,
          -7,
          -7,
          -3.4664015254461162,
          -4.215822555154372,
          -3.792216535439859,
          -4.062393937253195,
          -3.9450252012424625,
          -7,
          -4.150664353529561,
          -3.6797911709803546,
          -3.441109303452063,
          -7,
          -3.7898123009874545,
          -7,
          -3.5124264461634938,
          -2.349604963917566,
          -2.3823773034681137,
          -3.8171024042569233,
          -3.6691308473733324,
          -7,
          -3.2956795321953303,
          -2.89726044333122,
          -3.109325387770489,
          -3.773127924033335,
          -3.4156270813608494,
          -3.6570558528571038,
          -7,
          -3.0697420760416447,
          -3.636688447953283,
          -7,
          -3.916822284595912,
          -3.4086469256557654,
          -7,
          -7,
          -2.2366355570771637,
          -3.012861117271863,
          -3.8272255388870633,
          -7,
          -3.5385737338068557,
          -7,
          -3.0053219657545895,
          -7,
          -3.7652433977308273,
          -3.2416709737841294,
          -3.422753941301348,
          -7,
          -3.4075608494863623,
          -3.618526230092146,
          -3.1337263032129754,
          -7,
          -3.0089548426529267,
          -3.9252605095194353,
          -3.0163689690175235,
          -3.2136903779841535,
          -7,
          -2.998448247407814,
          -3.3120268276113047,
          -7,
          -3.346798235955029,
          -7,
          -7,
          -2.8958111947786325,
          -7,
          -3.1233615587462964,
          -7,
          -7,
          -7,
          -7,
          -3.196480167700148,
          -2.552972237463008,
          -3.091390568954869,
          -7,
          -3.595606434865603,
          -3.149816603750927,
          -7,
          -7,
          -7,
          -3.279381730613431,
          -7,
          -3.3958033777212555,
          -2.673020907128896,
          -7,
          -7,
          -3.073295267524642,
          -7,
          -2.867663867912998,
          -7,
          -7,
          -2.309193251411278,
          -7,
          -7,
          -7,
          -3.031327657761131,
          -7,
          -3.613030945877725,
          -7,
          -7,
          -4.618246884828072,
          -2.665156614154294,
          -3.9568816029042733,
          -7,
          -7,
          -3.027879409207207,
          -7,
          -2.6924944075030846,
          -7,
          -2.78354628227035,
          -3.2973227142053023,
          -7,
          -7,
          -7,
          -2.858537197569639,
          -3.533581425058706,
          -3.1658376246901283,
          -3.5757649805367193,
          -2.8249064713021124,
          -7,
          -2.6358187213644175,
          -3.4664598146729486,
          -7,
          -7,
          -2.6602328566510707,
          -2.6440280643574865,
          -7,
          -3.903768042526874,
          -7,
          -7,
          -3.995898323646437,
          -3.6191977157929474,
          -3.0787339479321156,
          -2.4334142191808175,
          -7,
          -3.2605483726369795,
          -7,
          -7,
          -3.4674601095072637,
          -3.5997739391463885,
          -7,
          -2.7750380149595006,
          -2.375428443512786,
          -7,
          -3.3941013020400446,
          -2.4820791907004085,
          -2.968580225848978,
          -3.7907776013376937,
          -7,
          -3.64804759698893,
          -7,
          -3.873494982256169,
          -2.934119540809263,
          -3.4081721014970534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2012605322507914,
          -3.6872613462435067,
          -3.6003072173984116,
          -2.3839209181700145,
          -3.917111472493697,
          -3.366364580388476,
          -7,
          -2.53447939331355,
          -7,
          -3.103689717941284,
          -7,
          -2.8530895298518657,
          -3.8236698132681366,
          -7,
          -7,
          -2.5802405082653763,
          -7,
          -3.1276392349882074,
          -3.494988973683168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.461048091670658,
          -7,
          -7,
          -7,
          -3.4916417934775863,
          -3.4674601095072637,
          -2.695287056508494,
          -7,
          -3.092106304605236,
          -7,
          -3.815710539788963,
          -3.4824447919182653,
          -7,
          -2.890261292987454,
          -3.166282067316571,
          -7,
          -3.3790852708537966,
          -3.4900990050633047,
          -3.4850112145785728,
          -3.4302363534115106,
          -7,
          -3.183459657707637,
          -7,
          -3.4243915544102776,
          -7,
          -7,
          -3.5143484893019368,
          -3.5640739789771465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0824263008607717,
          -3.648974961461483,
          -7,
          -7,
          -7,
          -7,
          -3.617576919481001,
          -7,
          -7,
          -7,
          -2.941511432634403,
          -7,
          -3.389972866217175,
          -3.9031442704095385,
          -7,
          -3.3916407034923877,
          -3.697017667097719,
          -7,
          -3.0191162904470725,
          -7,
          -3.3754807146185724,
          -7,
          -3.048053173115609,
          -4.168621213306193,
          -3.1646502159342966,
          -7,
          -7,
          -2.7516639462609866,
          -7,
          -2.6875289612146345,
          -7,
          -7,
          -7,
          -7,
          -3.6797191665895896,
          -2.658488381309017,
          -7,
          -7,
          -7,
          -3.0668847431297714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2563595605320663,
          -2.7081375105769228,
          -2.9648879044212895,
          -7,
          -7,
          -3.1264561134318045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.454905809342959,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6611498572447867,
          -7,
          -7,
          -4.047122285721037,
          -7,
          -2.363441031461713,
          -7,
          -7,
          -3.415585383086003,
          -3.371437317404101,
          -2.5453071164658243,
          -7,
          -1.8015350689381235,
          -7,
          -2.6856137979674,
          -7,
          -3.0246908623554307,
          -7,
          -3.7396386867387204,
          -7,
          -4.031691168625146,
          -7,
          -7,
          -7,
          -2.537189226243645,
          -7,
          -3.314393957221963,
          -7,
          -4.158694118177861,
          -7,
          -7,
          -7,
          -2.4523277249361604,
          -7,
          -7,
          -7,
          -2.959327645972171,
          -2.920051321899959,
          -7,
          -7,
          -2.422972646823736,
          -7,
          -3.787938431279371,
          -7,
          -7,
          -3.0883133155880964,
          -2.5356393004678064,
          -7,
          -2.857935264719429,
          -3.067099481723916,
          -4.756689345987442,
          -7,
          -7,
          -7,
          -4.296230678487514,
          -3.205745540942662,
          -7,
          -2.7321926510062684,
          -7,
          -7,
          -3.264173628357079,
          -7,
          -7,
          -2.8756399370041685,
          -4.373371817181301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040800061256529,
          -7,
          -3.8619822141108484,
          -3.709439574132411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5452204963930702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.255754786643044,
          -3.2949069106051923,
          -7,
          -7,
          -3.330007700872759,
          -7,
          -7,
          -7,
          -3.5892608400865007,
          -3.0322157032979815,
          -7,
          -7,
          -7,
          -3.0132586652835167,
          -7,
          -7,
          -2.6572068680363374,
          -3.011993114659257,
          -7,
          -7,
          -7,
          -2.9347316108717187,
          -7,
          -2.6600889504627023,
          -2.9168748785386835,
          -2.649821463224565,
          -2.944975908412048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.965013450272248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2833012287035497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.130816050034744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4216039268698313,
          -7,
          -3.0464951643347082,
          -7,
          -3.0802656273398448,
          -3.32433390894172,
          -3.613418945034573,
          -7,
          -4.169089720187762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9954157985424152,
          -7,
          -7,
          -7,
          -7,
          -2.9858753573083936,
          -7,
          -7,
          -7,
          -4.341919002075212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1222158782728267,
          -7,
          -3.0318122713303706,
          -3.80174661921946,
          -1.9803280777535663,
          -7,
          -7,
          -7,
          -4.020133301096697,
          -3.0670708560453703,
          -3.935545050823815,
          -3.1290450598879582,
          -4.713431737151994,
          -7,
          -7,
          -7,
          -4.004321373782642,
          -7,
          -3.9739125704197047,
          -2.6230106014763095,
          -7,
          -7,
          -7,
          -7,
          -3.2350231594952237,
          -2.6516932756857856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.788875115775417,
          -3.03891806603037,
          -3.219060332448861,
          -7,
          -3.2748503200166645,
          -3.9566389814310416,
          -7,
          -7,
          -3.689996613293506,
          -7,
          -3.142389466118836,
          -3.3163897510731957,
          -7,
          -3.190378393991196,
          -2.3616019353117093,
          -3.8053649074664455,
          -7,
          -7,
          -3.41161970596323,
          -5.129615785186403,
          -2.8438554226231614,
          -7,
          -7,
          -7,
          -3.4746532533620624,
          -2.9457639231111736,
          -7,
          -7,
          -7,
          -7,
          -3.375846436309156,
          -7,
          -7,
          -7,
          -7,
          -2.7425287512507515,
          -7,
          -4.159705519859825,
          -3.4888326343824008,
          -4.699361850661637,
          -7,
          -2.446550673565175,
          -4.320814875622444,
          -3.7951149856303634,
          -7,
          -7,
          -7,
          -2.5264567654148817,
          -3.8033205235787544,
          -3.2659963704950794,
          -2.5967803035945445,
          -7,
          -7,
          -3.44216608578472,
          -7,
          -3.09968064110925,
          -7,
          -2.8920946026904804,
          -7,
          -2.508631725896454,
          -7,
          -2.5628873812938795,
          -4.297169380969235,
          -4.773888791889383,
          -4.276783384700269,
          -7,
          -4.714924620661709,
          -4.378016135540437,
          -7,
          -4.292510812271008,
          -3.881761148404959,
          -7,
          -7,
          -3.8326153443896276,
          -4.022032252601962,
          -4.396826789268784,
          -7,
          -7,
          -4.676062281090912,
          -4.9239586170161465,
          -3.56474494800163,
          -7,
          -7,
          -4.911306788581634,
          -7,
          -4.234314768012676,
          -4.113776283837032,
          -7,
          -4.3596837372363515,
          -7,
          -7,
          -3.931021759038731,
          -7,
          -4.202470152962895,
          -4.328787200354535,
          -4.200084063662152,
          -7,
          -3.791445017261999,
          -7,
          -3.757608568481492,
          -4.191925851711436,
          -7,
          -3.1607685618611283,
          -4.672716517725188,
          -3.5227571257978822,
          -3.0548318427136074,
          -3.6804261708581456,
          -4.333970933444835,
          -7,
          -4.634076546929765,
          -3.703033304733686,
          -7,
          -7,
          -4.361883587627972,
          -4.205781595442862,
          -2.971507781711256,
          -4.441396602854368,
          -7,
          -7,
          -7,
          -4.3778524190067545,
          -3.690550461510359,
          -7,
          -3.369180504365074,
          -4.4091169986649135,
          -4.530542045215246,
          -7,
          -7,
          -7,
          -3.726190060052768,
          -3.7973368007753496,
          -4.451559595114814,
          -7,
          -3.9234253686715865,
          -7,
          -4.327318057687924,
          -7,
          -4.307503169126945,
          -7,
          -7,
          -7,
          -3.996533561445376,
          -4.491067394653292,
          -7,
          -3.990580555633907,
          -3.752979452844521,
          -7,
          -4.09272844024296,
          -7,
          -7,
          -3.707591464521357,
          -4.301203678722446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.99569368149844,
          -3.404320467221731,
          -3.492061604512599,
          -7,
          -7,
          -4.347583686308583,
          -7,
          -7,
          -7,
          -3.766784515497859,
          -7,
          -4.1000326290916975,
          -3.640978057358332,
          -7,
          -7,
          -3.657629431388952,
          -7,
          -3.3872118003137306,
          -7,
          -7,
          -3.3186197661495815,
          -7,
          -7,
          -2.8380090624639394,
          -2.7781512503836434,
          -7,
          -4.022799404511688,
          -7,
          -7,
          -7,
          -3.603887881296596,
          -4.789749884853146,
          -7,
          -7,
          -2.9489506102455483,
          -7,
          -3.2000292665537704,
          -7,
          -7,
          -3.4787107555127594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8514621949945393,
          -3.997517439414725,
          -7,
          -7,
          -2.726144810545967,
          -3.548635059814752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.521522538611938,
          -2.6508623548674484,
          -7,
          -7,
          -7,
          -3.864036182725775,
          -7,
          -7,
          -7,
          -3.3820170425748683,
          -3.5186455243303114,
          -7,
          -7,
          -3.2086428696191542,
          -3.101039111382258,
          -3.643945912748067,
          -7,
          -4.311117842662505,
          -7,
          -7,
          -3.2229764498933915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9306052271529284,
          -7,
          -4.168939213835978,
          -7,
          -7,
          -3.182557301304913,
          -7,
          -2.8318697742805017,
          -7,
          -3.6684791029325856,
          -7,
          -7,
          -7,
          -3.010299956639812,
          -7,
          -3.922465945298413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8192806469724814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.130976691605617,
          -3.2796669440484556,
          -7,
          -3.7812525942484565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2771506139637965,
          -7,
          -7,
          -2.716142518281689,
          -3.454387467146955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9500999337839797,
          -7,
          -7,
          -7,
          -3.2157336728643675,
          -3.229937685907934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9853186730361374,
          -2.8898186685214093,
          -3.443888546777372,
          -2.943618158464063,
          -2.6281775374460494,
          -3.552789850192782,
          -2.496514518697745,
          -7,
          -2.8725447293769673,
          -3.100370545117563,
          -2.160686755849163,
          -2.9813712474524343,
          -2.2933625547114453,
          -3.168939213835978,
          -7,
          -2.143014800254095,
          -2.797860839395534,
          -2.1829849670035815,
          -2.6557785152248203,
          -3.4572761860613257,
          -3.6704314093606056,
          -7,
          -3.5688344803047265,
          -0.9718406418727065,
          -2.914078585389112,
          -2.812244696800369,
          -7,
          -3.353980309781697,
          -3.49996186559619,
          -7,
          -3.747567162737625,
          -1.9388055392584782,
          -7,
          -2.1639887869830687,
          -2.456534723937885,
          -2.538615619757788,
          -2.678670097637955,
          -7,
          -2.690955115144948,
          -2.506251281604838,
          -3.2415464805965484,
          -3.552668216112193,
          -7,
          -7,
          -3.530711837981657,
          -7,
          -3.371891600376384,
          -7,
          -7,
          -3.2150203546471214,
          -3.4553017716570764,
          -3.1931245983544616,
          -7,
          -2.8692317197309762,
          -3.7067177823367587,
          -3.6014816115028383,
          -7,
          -2.462397997898956,
          -7,
          -7,
          -2.954461794716341,
          -2.693726948923647,
          -2.8977645045116174,
          -7,
          -1.5923001540388062,
          -2.6856137979674,
          -7,
          -7,
          -2.062686419597646,
          -7,
          -3.2273926209158175,
          -7,
          -3.4102371919840464,
          -3.4649364291217326,
          -7,
          -3.402433346219312,
          -7,
          -7,
          -2.890909813992527,
          -7,
          -3.5188559765638336,
          -7,
          -2.851869600729766,
          -7,
          -2.163310488963686,
          -3.460747541844197,
          -2.501789322455909,
          -3.5896145406312665,
          -2.3894286169292163,
          -1.6407319773641893,
          -7,
          -7,
          -2.613136798211654,
          -7,
          -3.5806154692708105,
          -3.548635059814752,
          -7,
          -3.659250468772661,
          -3.293877950444278,
          -3.8254261177678233,
          -3.249442961442582,
          -3.2835524838345975,
          -3.994221805691542,
          -7,
          -7,
          -7,
          -5.004403065060992,
          -2.4533183400470375,
          -2.6720978579357175,
          -2.8536982117761744,
          -7,
          -7,
          -3.0260855683142416,
          -2.426185825244511,
          -7,
          -3.4565178578052627,
          -7,
          -7,
          -7,
          -7,
          -3.4721711466923635,
          -7,
          -3.0750490123810867,
          -3.044147620878723,
          -3.6196410730566346,
          -3.5581083016305497,
          -7,
          -7,
          -7,
          -7,
          -3.100140698866152,
          -7,
          -2.399577585458088,
          -7,
          -3.4942937686653326,
          -3.5352941200427703,
          -1.9109424931419006,
          -7,
          -7,
          -3.3334472744967503,
          -7,
          -7,
          -2.189097109071418,
          -3.6108730003800513,
          -2.78559673729218,
          -2.5631158250853248,
          -2.849009701991132,
          -3.042488005995828,
          -2.912753303671323,
          -2.912753303671323,
          -2.7451968221209206,
          -1.8281833736752127,
          -3.4533183400470375,
          -7,
          -3.539828558377898,
          -3.497067936398505,
          -3.1868151244474543,
          -3.4581844355702627,
          -2.3039292503046536,
          -7,
          -4.331912948773648,
          -7,
          -3.1844642893469906,
          -2.0910191968699166,
          -3.547528576459782,
          -3.553701021549961,
          -3.016824493667488,
          -2.8914259428479943,
          -3.3761205256094518,
          -2.824884805866878,
          -3.628491104967123,
          -7,
          -2.6026025204202563,
          -3.0453881832732153,
          -2.811306840081336,
          -3.8466463285771173,
          -7,
          -3.2089018206788085,
          -7,
          -3.909876817990393,
          -3.178545314511007,
          -3.4553017716570764,
          -7,
          -3.307282047033346,
          -7,
          -3.1277525158329733,
          -7,
          -3.5150786750759226,
          -3.597969275225808,
          -3.665393350279712,
          -7,
          -1.8511656596819284,
          -3.79778672138496,
          -3.023983672235201,
          -7,
          -3.451632947456991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.722428241979694,
          -2.6154590459716487,
          -3.2990439930688757,
          -4.18345072714285,
          -3.444513206334043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3037358890399062,
          -3.4435758797502576,
          -7,
          -3.1711411510283822,
          -2.0178964621040505,
          -7,
          -2.6225100655693763,
          -3.1397741716810974,
          -3.611684693756236,
          -7,
          -7,
          -7,
          -7,
          -3.233884108765886,
          -7,
          -7,
          -2.7565093254448008,
          -3.2554534234487273,
          -2.450864692379766,
          -3.9265996539070276,
          -2.517342544745865,
          -3.620760489994206,
          -7,
          -7,
          -2.85655897491841,
          -3.647969458362972,
          -3.5632555734352525,
          -2.935759103745312,
          -3.651447627154724,
          -7,
          -7,
          -3.1931245983544616,
          -3.38746101632035,
          -3.2948518494980625,
          -3.283188116453424,
          -2.2220224326748212,
          -3.4913149929920424,
          -7,
          -7,
          -7,
          -2.7365103260178008,
          -2.2853905932737097,
          -3.1032048709894418,
          -7,
          -2.64598337340893,
          -2.805614117901356,
          -7,
          -3.0088130090520893,
          -2.972819734053675,
          -1.9988403344727612,
          -1.5967229720048797,
          -1.9992951670372276,
          -3.407900540142635,
          -7,
          -3.214714574499518,
          -2.8937617620579434,
          -3.4771212547196626,
          -3.491261614450974,
          -7,
          -3.06620164592725,
          -3.3188977146274867,
          -3.0287745265000883,
          -2.675740163617544,
          -2.128131219761547,
          -2.511780557218919,
          -3.158060793936605,
          -2.912449813454987,
          -2.6695028341043434,
          -3.843053522128569,
          -1.3586094419154815,
          -7,
          -7,
          -7,
          -3.9073038488339695,
          -1.9867038916539217,
          -3.5033820634737327,
          -7,
          -2.739748101021452,
          -7,
          -2.6501131644435714,
          -7,
          -2.753229398871813,
          -7,
          -3.0856472882968564,
          -1.0289745558766008,
          -7,
          -4.394083775678255,
          -3.524493486633317,
          -3.8853502563578943,
          -7,
          -1.645094623553164,
          -3.852280692954708,
          -2.5770215296430306,
          -7,
          -3.5531545481696254,
          -7,
          -1.8027353006529854,
          -2.926856708949692,
          -2.928452752942272,
          -2.473535627784848,
          -7,
          -7,
          -1.5036393872946674,
          -2.7912694809102687,
          -7,
          -7,
          -2.507727401207717,
          -2.1722136039924793,
          -1.527240429179981,
          -7,
          -3.453776859690442,
          -4.018617292519441,
          -4.4880004497062025,
          -7,
          -7,
          -3.732096085685356,
          -2.9667282209873846,
          -7,
          -3.200818940961113,
          -3.4620761790758543,
          -7,
          -7,
          -7,
          -3.738003205183249,
          -3.7774182925111446,
          -4.005405755074863,
          -4.073993133323909,
          -3.7917520352585377,
          -4.031580128138727,
          -3.640878778701618,
          -7,
          -7,
          -4.136833264807149,
          -4.024690862355431,
          -4.084123279339492,
          -4.179120729609299,
          -4.375864714311806,
          -4.2031417191119855,
          -3.646060468555641,
          -7,
          -3.6149955887542284,
          -7,
          -3.552024726583321,
          -3.670653972304614,
          -3.408966412900081,
          -3.6340740254874686,
          -3.0810771401550445,
          -3.296665190261531,
          -3.7885077521028796,
          -4.247162809039331,
          -3.462048424905515,
          -2.948412965778601,
          -3.7373781989912187,
          -2.7789588305843886,
          -2.7000977046130537,
          -7,
          -7,
          -7,
          -3.058842915637728,
          -2.7426537306498884,
          -2.960550050051066,
          -3.4768750847585057,
          -2.8358386353693876,
          -3.238668921279138,
          -7,
          -2.838658761600265,
          -3.653309012938479,
          -7,
          -3.934245881023071,
          -3.5113150657669396,
          -3.8459657615454836,
          -7,
          -2.5037602347919004,
          -2.953775138981921,
          -3.9524839979613797,
          -3.4898179083014504,
          -2.3380941285590486,
          -7,
          -3.1738345463777593,
          -7,
          -4.233275391293944,
          -3.6783362467321803,
          -3.3213682553052477,
          -7,
          -3.4650852875574327,
          -3.991639492650799,
          -3.242658737113416,
          -3.805160901599434,
          -3.1262010075957805,
          -3.2429884121947947,
          -2.9323669403052204,
          -3.0876368391806537,
          -7,
          -2.7129639995853343,
          -3.387108699250326,
          -3.7774268223893115,
          -3.3975731161775657,
          -7,
          -3.496860487394368,
          -2.6670873338292944,
          -7,
          -3.4766867429456445,
          -7,
          -7,
          -7,
          -7,
          -3.657411014595813,
          -2.7114322715545685,
          -2.9233673942402945,
          -7,
          -3.3301092545928297,
          -3.240317420069045,
          -3.681693392004564,
          -2.795383396956165,
          -3.1835545336188615,
          -3.2012332086808746,
          -7,
          -3.2107932280693396,
          -2.8107028609471167,
          -7,
          -7,
          -3.896250562461638,
          -3.6497241859295224,
          -2.8433573784379553,
          -7,
          -7,
          -3.9223101632143957,
          -7,
          -7,
          -3.621176281775035,
          -3.7573960287930244,
          -7,
          -3.624797578960761,
          -7,
          -7,
          -7,
          -3.338933666773873,
          -3.8042485035940143,
          -7,
          -7,
          -2.7183434903473924,
          -7,
          -3.1202447955463652,
          -7,
          -3.3000517321200418,
          -3.100284367027806,
          -7,
          -7,
          -7,
          -2.994537104298498,
          -3.3783373256663736,
          -7,
          -7,
          -3.5666731376061165,
          -7,
          -3.3266430361026345,
          -3.6038297496598206,
          -7,
          -7,
          -2.686189234244024,
          -2.9057958803678687,
          -7,
          -3.9128329347228377,
          -7,
          -7,
          -7,
          -7,
          -3.0959844627642767,
          -2.8163241727106496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.353916230920363,
          -2.8978269506965932,
          -7,
          -3.148294097434746,
          -2.7861934963110553,
          -2.749388431581154,
          -3.336526440627234,
          -7,
          -3.274119346273105,
          -7,
          -7,
          -3.5776066773625357,
          -3.2732328340430454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.101472117000238,
          -7,
          -3.5464192668351915,
          -7,
          -3.8597505631165796,
          -7,
          -7,
          -3.212523418522336,
          -7,
          -2.756805094427709,
          -7,
          -2.8389539801187342,
          -7,
          -3.051859685552474,
          -3.1456935239042205,
          -7,
          -7,
          -7,
          -3.5618166643189575,
          -3.3930005495543805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0225658278987413,
          -3.2352758766870524,
          -7,
          -2.982994454658664,
          -3.12602311790052,
          -3.034828915655837,
          -3.610180897473572,
          -7,
          -7,
          -7,
          -3.762453482363547,
          -3.5149460053080044,
          -7,
          -3.299045597055003,
          -7,
          -3.530583859645118,
          -3.2804265987495813,
          -7,
          -7,
          -3.166873950858819,
          -7,
          -2.965107585849056,
          -7,
          -7,
          -2.7559836877697665,
          -7,
          -7,
          -7,
          -7,
          -3.5079907248196913,
          -7,
          -7,
          -3.6546577546495245,
          -3.624488362513449,
          -2.53198955141255,
          -1.9252401149535792,
          -3.6098984156416383,
          -2.997659371069136,
          -7,
          -7,
          -1.150115877528334,
          -2.917916297847717,
          -3.6119356250401227,
          -7,
          -7,
          -7,
          -3.5150786750759226,
          -2.050910057856416,
          -3.719911064198339,
          -7,
          -3.569549464888704,
          -3.0611736932801077,
          -2.818005830532529,
          -7,
          -7,
          -3.0848442782402152,
          -2.773681984491958,
          -3.5577477416414682,
          -3.5394296891509516,
          -7,
          -3.523486332343228,
          -7,
          -7,
          -7,
          -7,
          -3.0667730370850257,
          -3.2107197156810017,
          -3.0050946750725487,
          -2.9509730248744774,
          -3.2803506930460054,
          -7,
          -2.9622509186326402,
          -2.994053063587675,
          -2.910090545594068,
          -2.900124268601545,
          -2.5476516583599693,
          -7,
          -7,
          -7,
          -3.179647524546354,
          -2.6833386019080185,
          -3.745777217889759,
          -2.8867323802739056,
          -3.255272505103306,
          -3.08290499419323,
          -3.5835388192543522,
          -3.2667019668840878,
          -7,
          -7,
          -7,
          -7,
          -3.2761169891635435,
          -7,
          -3.2607025791074236,
          -7,
          -3.2173523198813627,
          -3.725176301419137,
          -7,
          -3.612306930268642,
          -2.546542663478131,
          -7,
          -3.1358479320466763,
          -3.307904563405097,
          -3.2203696324513946,
          -7,
          -7,
          -7,
          -3.167654847476959,
          -3.6854730197227594,
          -3.249198357391113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.36285930295868,
          -7,
          -1.9062675544164474,
          -1.8755613969294638,
          -2.1873216097386514,
          -2.8187535904977166,
          -7,
          -2.654577589539578,
          -2.658393026279124,
          -1.623862267891198,
          -1.1191864077192086,
          -2.932220013877119,
          -2.2273412552958414,
          -7,
          -7,
          -7,
          -3.3869268067955693,
          -7,
          -7,
          -3.6306312440205,
          -3.371191048907622,
          -3.045143615953909,
          -7,
          -7,
          -3.6121478383264867,
          -2.926959488380276,
          -2.8075672397864206,
          -7,
          -7,
          -2.1702617153949575,
          -2.3478177127089124,
          -1.223293990490537,
          -3.5953859808091417,
          -2.831549851995756,
          -1.624809027194788,
          -7,
          -3.2879360270447022,
          -7,
          -3.528685357587024,
          -3.13534470923348,
          -3.445059047392219,
          -3.356854116560244,
          -7,
          -7,
          -2.9576455913890936,
          -2.981441058262331,
          -7,
          -7,
          -2.533658357348511,
          -7,
          -7,
          -3.2080380493531804,
          -7,
          -7,
          -3.828595456371702,
          -3.9109444057499787,
          -1.2237725589362722,
          -2.264414658552054,
          -3.101861587983128,
          -3.1696744340588068,
          -7,
          -7,
          -3.318585010078825,
          -7,
          -3.676098904916701,
          -7,
          -7,
          -3.5814945422908995,
          -3.0062231255941225,
          -7,
          -7,
          -7,
          -3.0287745265000883,
          -3.525821952156663,
          -3.0304985232047095,
          -7,
          -3.722798396870905,
          -7,
          -7,
          -3.5366426000142708,
          -7,
          -7,
          -3.37706480804834,
          -7,
          -7,
          -7,
          -3.2843179154306097,
          -7,
          -3.539327063539375,
          -7,
          -3.746556361410369,
          -3.5469126431812423,
          -4.038560556604059,
          -7,
          -3.60406397266389,
          -3.2247538935401416,
          -7,
          -3.877601679729272,
          -3.520483532740792,
          -7,
          -7,
          -7,
          -3.063520999689991,
          -7,
          -7,
          -3.371191048907622,
          -3.560026248912892,
          -2.789345640720579,
          -7,
          -3.1141289085933184,
          -2.675869955318957,
          -2.0164082880213403,
          -7,
          -3.6888349324833243,
          -7,
          -7,
          -7,
          -3.343703931783211,
          -7,
          -7,
          -2.639066881040868,
          -3.000434077479319,
          -7,
          -3.4148062795010126,
          -7,
          -7,
          -7,
          -7,
          -3.5466660250701842,
          -7,
          -7,
          -3.557266528869904,
          -7,
          -7,
          -7,
          -2.7040844895524194,
          -2.410228078382359,
          -3.8066881964666717,
          -7,
          -7,
          -2.7195680242378324,
          -3.0110415256389502,
          -7,
          -3.5251744278352715,
          -3.2140486794119414,
          -3.34966598409663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.655124022144736,
          -7,
          -7,
          -7,
          -3.5374412834079476,
          -7,
          -7,
          -7,
          -7,
          -3.403120521175818,
          -3.667359546183087,
          -2.71393503626257,
          -2.889348398327215,
          -3.1815577738627865,
          -3.5179872030250783,
          -7,
          -3.4667193716815987,
          -3.382827209736365,
          -2.954289584880475,
          -7,
          -3.9556717184752674,
          -3.2943559851451605,
          -7,
          -7,
          -3.4009522278609032,
          -0.9394031466208936,
          -2.44973545423003,
          -2.7241665993820963,
          -3.6851144690465394,
          -3.0360297306565434,
          -2.7996850909091004,
          -3.5241363765925686,
          -3.6245914591268478,
          -3.7517408738109004,
          -3.2600713879850747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2180976641854886,
          -3.574224244616876,
          -7,
          -7,
          -7,
          -3.994518255666037,
          -1.9992476852440502,
          -7,
          -2.865972090376475,
          -7,
          -3.111598524880394,
          -2.7795309027230926,
          -7,
          -4.072102778885176,
          -3.776119799052988,
          -3.4712428012687067,
          -3.070037866607755,
          -7,
          -3.2279723558282107,
          -3.7926306849084326,
          -2.8933348950274076,
          -3.50745106090197,
          -7,
          -7,
          -1.2245175585181478,
          -2.8846065812979305,
          -7,
          -7,
          -3.0282458165724737,
          -3.239549720840473,
          -7,
          -3.5536403362313544,
          -2.425106776336422,
          -3.57966929355472,
          -3.3054588547786667,
          -3.3634239329171765,
          -3.57966929355472,
          -3.6428367959452066,
          -2.0805322372237627,
          -3.9372918723462416,
          -7,
          -3.6516656039229356,
          -3.449965321950027,
          -2.4913616938342726,
          -7,
          -7,
          -7,
          -3.793231447056521,
          -2.769623455004179,
          -2.9039577085231705,
          -3.2105860249051563,
          -7,
          -7,
          -3.243781916093795,
          -7,
          -7,
          -7,
          -3.3790636720075073,
          -7,
          -3.020084925984292,
          -7,
          -7,
          -4.323674841477321,
          -7,
          -7,
          -7,
          -4.434281408136301,
          -7,
          -7,
          -3.5409339789550547,
          -3.7196129897309733,
          -3.6106246800650714,
          -7,
          -7,
          -4.139083725519777,
          -4.1064926219915625,
          -4.310587114890355,
          -7,
          -7,
          -4.334589446975158,
          -7,
          -7,
          -7,
          -5.392842865757514,
          -7,
          -4.264806021368701,
          -2.846449579949132,
          -7,
          -3.780560319410449,
          -7,
          -7,
          -3.492683577744274,
          -7,
          -3.7985038995469633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6477321656644315,
          -3.9554472105776957,
          -3.3408405498123317,
          -7,
          -3.4395782859015425,
          -3.695886449894574,
          -3.71796159904163,
          -3.0837414400078025,
          -2.7672644940171898,
          -3.097344090487375,
          -2.602749911220061,
          -3.4008141922675588,
          -7,
          -7,
          -3.4189638307036225,
          -2.8908507580818754,
          -7,
          -3.046827431231041,
          -2.522956290942878,
          -7,
          -2.608817669502134,
          -4.119964833979976,
          -7,
          -7,
          -3.295670568078613,
          -3.173191873622384,
          -5.106716018172097,
          -7,
          -7,
          -7,
          -3.5369930805939256,
          -7,
          -4.330846499235686,
          -2.673971678762711,
          -7,
          -7,
          -3.5972013888491157,
          -4.474463945321284,
          -4.324940602014902,
          -3.8305886686851442,
          -2.048802363539486,
          -3.182414652434554,
          -3.188312816947483,
          -2.8801377283430174,
          -3.582404298019028,
          -3.0019355292147516,
          -3.6901167708948885,
          -2.5468852480836555,
          -4.273678243554927,
          -7,
          -3.8238653093245114,
          -3.6821952345400715,
          -4.051171823995435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2502154969062373,
          -3.2242740142942576,
          -2.497366198100159,
          -7,
          -7,
          -2.861077351252817,
          -3.4139699717480614,
          -3.377032909310364,
          -7,
          -2.9202277114569286,
          -7,
          -3.5852748953242775,
          -2.756382505621472,
          -7,
          -7,
          -7,
          -7,
          -3.265348565194829,
          -7,
          -7,
          -7,
          -7,
          -3.582404298019028,
          -3.659440781870318,
          -2.4021897107849237,
          -7,
          -3.035162808562191,
          -7,
          -3.0519239160461065,
          -4.324693913861775,
          -3.6725288583784526,
          -3.806864804730897,
          -7,
          -7,
          -2.640175541918576,
          -7,
          -3.2759253069068666,
          -7,
          -3.3400473176613934,
          -1.9949680589177388,
          -7,
          -7,
          -7,
          -2.8584369333461987,
          -7,
          -7,
          -7,
          -3.3085644135612386,
          -7,
          -2.886490725172482,
          -2.6780278487139313,
          -7,
          -7,
          -2.75190866845489,
          -2.9344984512435675,
          -7,
          -3.1821032558041695,
          -7,
          -7,
          -4.02649240705284,
          -2.7331080601187026,
          -2.90757760381829,
          -2.905256048748451,
          -3.222261133522809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9909600996821992,
          -3.1133224880382615,
          -3.1500396976551133,
          -7,
          -2.910333290266367,
          -2.678173221476225,
          -3.2364112877439664,
          -7,
          -3.457711625975908,
          -7,
          -3.4362686889120932,
          -3.3184807251745174,
          -2.8749003837892295,
          -3.865991800126275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2902572693945182,
          -3.269979676645324,
          -3.386986195869725,
          -7,
          -3.9357087478426633,
          -3.2565115772188546,
          -3.865340905624584,
          -3.266231696689893,
          -7,
          -3.3554515201265174,
          -7,
          -2.7069614941736275,
          -3.391052786139976,
          -7,
          -7,
          -2.753104075187242,
          -3.605412798153051,
          -3.0250536617257993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3760291817281805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.716086853774832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4205650352890364,
          -3.2801228963023075,
          -3.27600198996205,
          -7,
          -7,
          -3.4234097277330933,
          -7,
          -7,
          -7,
          -7,
          -3.5599066250361124,
          -3.6422666189026733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.404833716619938,
          -7,
          -7,
          -3.211525040366984,
          -7,
          -7,
          -7,
          -3.924486043733915,
          -3.094046659341039,
          -3.0824263008607717,
          -7,
          -7,
          -7,
          -7,
          -2.88218288763027,
          -7,
          -7,
          -3.2824710539263124,
          -2.4018721097306575,
          -2.5786392099680726,
          -2.008126826230696,
          -2.584331224367531,
          -1.5683448430275597,
          -2.3942765267678214,
          -2.2419085435453248,
          -3.366947995954321,
          -2.207595901910711,
          -2.920123326290724,
          -7,
          -3.2909245593827543,
          -3.016476194280864,
          -2.7769431981946755,
          -7,
          -7,
          -2.928011577509416,
          -7,
          -3.6975344625969604,
          -2.7614266329616655,
          -3.3012470886362113,
          -7,
          -7,
          -3.4387796033573776,
          -7,
          -7,
          -3.6339731557896737,
          -2.20682587603185,
          -7,
          -2.7196499416916193,
          -2.509090460794704,
          -2.6368220975871743,
          -3.0867156639448825,
          -7,
          -2.731387283168788,
          -2.2616593037647066,
          -7,
          -7,
          -7,
          -7,
          -3.3236645356081,
          -3.6822353569025643,
          -3.6222584422236412,
          -2.931966114728173,
          -7,
          -3.2597133053907306,
          -7,
          -3.8143142002074595,
          -2.3138672203691537,
          -7,
          -7,
          -3.572510184908823,
          -7,
          -2.829303772831025,
          -7,
          -7,
          -3.4590907896005865,
          -3.5017437296279943,
          -7,
          -7,
          -2.588047496986083,
          -3.0246908623554307,
          -2.062686419597646,
          -3.36285930295868,
          -7,
          -7,
          -3.4267475581811215,
          -3.6599162000698504,
          -3.461423486699566,
          -7,
          -7,
          -7,
          -2.6154991488833446,
          -3.5471591213274176,
          -3.393399695293102,
          -7,
          -7,
          -7,
          -2.5902286212401577,
          -3.1894903136993675,
          -2.2246834068778054,
          -3.204662511748219,
          -2.6397354399672364,
          -3.4149733479708178,
          -2.3658134210109636,
          -2.1994492580536797,
          -3.3100557377508917,
          -3.2598326990634834,
          -2.3010299956639813,
          -7,
          -3.0234239480789418,
          -7,
          -7,
          -3.037692040279623,
          -3.0619234632803045,
          -3.4314441816172123,
          -2.4496712047318874,
          -2.881330302016822,
          -3.8085410523501118,
          -3.3081373786380386,
          -3.905202028662319,
          -3.3176455432211585,
          -3.583643395030574,
          -2.782293422809544,
          -1.6818208377310702,
          -2.866118484306833,
          -2.921166050637739,
          -7,
          -3.4199351066265016,
          -2.377541937168901,
          -7,
          -3.1970047280230456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.072176344478966,
          -7,
          -3.5847268854052863,
          -7,
          -7,
          -7,
          -3.2005769267548483,
          -7,
          -2.067832201725068,
          -7,
          -2.2866248553317368,
          -7,
          -7,
          -2.727744530836107,
          -3.01061489979727,
          -3.197280558125619,
          -7,
          -3.1794081515138357,
          -7,
          -3.226342087163631,
          -3.1177682949263725,
          -7,
          -3.5575072019056577,
          -3.2416709737841294,
          -7,
          -3.4598948527451516,
          -7,
          -3.2990712600274095,
          -3.292254543224013,
          -2.800717078282385,
          -7,
          -3.17260293120986,
          -2.8603380065709936,
          -7,
          -3.2528530309798933,
          -7,
          -2.6134281423890964,
          -3.267406418752904,
          -4.305071783022292,
          -7,
          -3.0251009610468134,
          -2.567232427953575,
          -7,
          -3.166282067316571,
          -2.4622217777780953,
          -3.1161094140633447,
          -3.062707303658236,
          -2.9587231112647787,
          -3.4718781993072905,
          -7,
          -3.4371160930480786,
          -2.7755699977216106,
          -2.5912872650584995,
          -3.4575791469957626,
          -7,
          -3.3998034713645615,
          -7,
          -7,
          -7,
          -2.7899163079479923,
          -7,
          -3.1352598985156583,
          -7,
          -3.136879039875517,
          -7,
          -7,
          -2.589621112934052,
          -2.618962813876879,
          -7,
          -2.241795431295199,
          -7,
          -3.4385950832263315,
          -7,
          -3.188084373714938,
          -3.266936911159173,
          -7,
          -2.935003151453655,
          -3.286905352972375,
          -7,
          -3.0051805125037805,
          -3.2677347723218557,
          -2.993083360698062,
          -4.165956187202987,
          -4.298890846803723,
          -3.174931593528443,
          -3.2757719001649312,
          -3.303196057420489,
          -7,
          -7,
          -7,
          -3.209649035368229,
          -2.970036776622557,
          -3.4434194617828173,
          -7,
          -7,
          -3.225567713439471,
          -2.951580344903392,
          -7,
          -7,
          -2.676083645364622,
          -3.833994955928646,
          -7,
          -7,
          -7,
          -3.249198357391113,
          -3.330819466495837,
          -3.3170181010481117,
          -7,
          -2.7287594751678745,
          -3.7724684030532805,
          -2.2935835134961167,
          -7,
          -2.2353562558730182,
          -3.460747541844197,
          -7,
          -7,
          -3.5595874668502234,
          -7,
          -3.945788525546071,
          -3.034828915655837,
          -4.1181820269590945,
          -7,
          -7,
          -7,
          -3.037625669914719,
          -7,
          -3.1066158013985747,
          -1.5038345977629068,
          -3.4266196859018763,
          -3.428134794028789,
          -3.3265406685165617,
          -7,
          -3.103632705209741,
          -2.4826537433196236,
          -2.6227894761867065,
          -7,
          -7,
          -3.407900540142635,
          -7,
          -2.84432182089448,
          -7,
          -2.130735706961367,
          -2.5167404716478536,
          -2.2761081441521505,
          -7,
          -2.9545640899663494,
          -3.3497328145444505,
          -3.1715314404115604,
          -7,
          -3.268237482267674,
          -7,
          -2.8666810784419927,
          -2.146216658162354,
          -3.4761067168401913,
          -3.050852165633224,
          -2.7871567366704566,
          -2.902788288833299,
          -2.8790958795000727,
          -3.1705550585212086,
          -2.6269815818454347,
          -4.285009192878731,
          -2.2353738295148626,
          -7,
          -7,
          -7,
          -3.2294898606677935,
          -1.6241173588098425,
          -7,
          -7,
          -2.3854871092452794,
          -2.9542425094393248,
          -2.387800377321158,
          -7,
          -3.3080661653096994,
          -3.327767489902729,
          -2.89707700320942,
          -2.041140603609944,
          -3.327767489902729,
          -4.164626434613411,
          -3.326864749797675,
          -4.319602211530264,
          -7,
          -2.3408645645477133,
          -3.3600910199987775,
          -2.0708827673325994,
          -7,
          -3.3592661646067485,
          -7,
          -2.5408105809460935,
          -2.6237963756878444,
          -2.1853140753427507,
          -2.6589648426644352,
          -3.204662511748219,
          -7,
          -2.511397165034557,
          -7,
          -3.016824493667488,
          -3.0346284566253203,
          -2.8371937326899355,
          -3.2730012720637376,
          -2.152021152002349,
          -7,
          -3.1920095926536702,
          -4.005019553400609,
          -7,
          -7,
          -7,
          -4.721761167105553,
          -4.0916669575956846,
          -3.9366142619752114,
          -3.8243211248507714,
          -3.8450247113790064,
          -7,
          -7,
          -7,
          -4.125700797303299,
          -4.701442772773218,
          -4.11634203918834,
          -7,
          -4.683533319875132,
          -4.229185075523011,
          -7,
          -3.6356244675962635,
          -7,
          -5.088860490105424,
          -4.298525595321999,
          -4.244611065056592,
          -7,
          -7,
          -4.191311257590993,
          -7,
          -7,
          -3.7028109519217565,
          -7,
          -3.987996774847518,
          -4.34523646004688,
          -7,
          -7,
          -7,
          -7,
          -3.769923543522596,
          -4.214313897424399,
          -3.7221401254574156,
          -3.3562171342197353,
          -3.981202277975283,
          -3.3976922977836024,
          -2.9883111708948853,
          -7,
          -4.350228629754866,
          -7,
          -3.6045425009088827,
          -2.8609764989868767,
          -3.322219294733919,
          -4.157033449661202,
          -3.167917176154837,
          -3.411220843713945,
          -7,
          -3.499656540441669,
          -7,
          -7,
          -7,
          -3.790408325715892,
          -7,
          -7,
          -3.352581534731333,
          -3.580778595978624,
          -4.628158948559419,
          -3.255754786643044,
          -3.076057595762826,
          -3.2755416884013093,
          -3.730121737157226,
          -7,
          -4.562112650103821,
          -3.813547631336185,
          -3.9442358437934804,
          -7,
          -3.866622040290432,
          -7,
          -3.312952693706642,
          -3.1048284036536553,
          -3.2415962821540716,
          -3.5721743136130595,
          -3.625231195952194,
          -3.9003124969837266,
          -3.3326404103874627,
          -3.430114163564744,
          -3.881883722962457,
          -3.6723749787460793,
          -3.793229505047091,
          -7,
          -2.998782269831736,
          -2.8329170498173046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7856572123457646,
          -3.225050696138049,
          -2.890394401911138,
          -7,
          -7,
          -3.585009279902461,
          -7,
          -3.1893499243391976,
          -7,
          -7,
          -7,
          -3.658393026279124,
          -2.714329759745233,
          -3.0109356647043852,
          -7,
          -7,
          -7,
          -3.7561033715851053,
          -7,
          -7,
          -3.8497264441963277,
          -7,
          -7,
          -2.9836262871245345,
          -3.6466977312993345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.842928048908947,
          -4.318362505336116,
          -7,
          -7,
          -2.9459159885729576,
          -7,
          -3.60151678365001,
          -7,
          -3.4323277922616042,
          -3.674240933242811,
          -7,
          -3.237040791379191,
          -7,
          -3.4263485737875077,
          -3.769820257763592,
          -7,
          -3.4496326504700745,
          -7,
          -7,
          -3.4709981696608736,
          -3.429752280002408,
          -7,
          -7,
          -2.7546349672131645,
          -2.9397188823541045,
          -7,
          -4.17834373897622,
          -7,
          -7,
          -7,
          -7,
          -3.2808195391969055,
          -3.1210123910935756,
          -7,
          -3.4308809464528913,
          -7,
          -7,
          -3.297760511099134,
          -7,
          -7,
          -3.208306962353663,
          -2.966904013129798,
          -7,
          -7,
          -3.5619357633137816,
          -2.8999895331008956,
          -3.4171394097273255,
          -7,
          -3.5498815946498814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3847117429382823,
          -7,
          -3.1832698436828046,
          -7,
          -7,
          -7,
          -7,
          -3.9409644934927996,
          -7,
          -7,
          -3.7143776660363743,
          -3.752969865029084,
          -2.887842265107357,
          -7,
          -2.854002233126989,
          -7,
          -3.1365620365899805,
          -3.455758203104137,
          -7,
          -7,
          -7,
          -7,
          -3.568369372971568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8862086241674976,
          -3.288249225571986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5476516583599693,
          -3.43568513794163,
          -3.3648010569597884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2979792441593623,
          -7,
          -3.667826378950711,
          -7,
          -3.3234583668494677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165883436770777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8806802357832058,
          -3.939069749923424,
          -7,
          -7,
          -4.317740742249334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.513483956704257,
          -7,
          -5.144446546742706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.913713211514432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.164501561309568,
          -7,
          -7,
          -7,
          -7,
          -3.8053649074664455,
          -3.722057771331464,
          -7,
          -7,
          -4.225474049711422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.2329097508568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.392169149489736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.799977736388289,
          -7,
          -7,
          -7,
          -3.3506356082589543,
          -7,
          -7,
          -3.899929882727864,
          -7,
          -2.274619619091238,
          -2.3257818431448523,
          -7,
          -4.2200601211412225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8021577531869615,
          -7,
          -3.764325605625984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092018470752797,
          -7,
          -7,
          -7,
          -7,
          -3.5536767484400786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.572816593786742,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276138069047766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7256394326735376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8133808067338557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2016701796465816,
          -2.954483717155552,
          -7,
          -7,
          -2.783379443019426,
          -7,
          -7,
          -5.236669914329181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.646364510503877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335277325031929,
          -7,
          -7,
          -7,
          -4.41814378957331,
          -7,
          -7,
          -7,
          -4.033021444682911,
          -7,
          -4.004622265700783,
          -7,
          -3.896691526562884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6744937172963503,
          -7,
          -7,
          -7,
          -5.135021279538261,
          -7,
          -7,
          -4.307217829203142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.23792185409128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8489277132270785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.260756888802261,
          -7,
          -3.8980360208904115,
          -7,
          -7,
          -2.9725375579441833,
          -3.840670561333409,
          -7,
          -7,
          -7,
          -7,
          -2.8928363526263907,
          -3.794418330874141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.51615180913224,
          -7,
          -7,
          -4.128550039238989,
          -3.8245452395328265,
          -7,
          -3.7134065321676912,
          -7,
          -7,
          -3.9298785236567833,
          -7,
          -4.885779479387615,
          -4.018617292519441,
          -7,
          -4.324261872133069,
          -7,
          -4.399820768420558,
          -7,
          -7,
          -7,
          -4.927514077384218,
          -7,
          -7,
          -7,
          -4.275672746981688,
          -7,
          -3.844949113517317,
          -7,
          -4.349102608563031,
          -7,
          -7,
          -7,
          -4.7811950965511025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.377988853736994,
          -4.592502448664263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.490075587280986,
          -4.68911342704763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.995828171486707,
          -4.4892762842812886,
          -3.991155335155191,
          -7,
          -7,
          -7,
          -4.4829497689403945,
          -7,
          -5.407004882289126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.748011735352916,
          -7,
          -7,
          -7,
          -4.602418136560929,
          -7,
          -7,
          -4.6472509010376575,
          -4.96053736742071,
          -7,
          -4.145231378313219,
          -7,
          -7,
          -4.6181108817371745,
          -4.315928382610187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.482845010663455,
          -7,
          -7,
          -7,
          -7,
          -4.059771617303871,
          -7,
          -7,
          -7,
          -7,
          -3.1746411926604483,
          -4.502747942346888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7492337269818146,
          -7,
          -7,
          -3.527361337086945,
          -5.097857477901066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.273371711989729,
          -7,
          -7,
          -3.526597709103452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.287577809078705,
          -7,
          -7,
          -3.7431176252147416,
          -7,
          -3.6462076122066853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.006693535071508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2676409823459154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5126843962171637,
          -7,
          -7,
          -3.3281756614383227,
          -3.373095987078727,
          -4.069075809766398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.076349117493459,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.887701675781762,
          -3.7797527706739227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4114345021650045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9804578922761,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.837998551821702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9091680930993435,
          -7,
          -7,
          -3.6340740254874686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.767910393707072,
          -5.229725346362544,
          -4.5307067195722155,
          -4.4515868904569045,
          -3.9996626521208603,
          -3.461849389656668,
          -3.5692390146048285,
          -3.3433318497708067,
          -2.7351867426264027,
          -2.1393966074651254,
          -2.638726900999912,
          -7,
          -4.5312003683301665,
          -1.3374695167229265,
          -2.171377928374108,
          -3.524095618099355,
          -4.532068646024828,
          -5.2296306555085055,
          -3.6984280755915644,
          -3.928705586311121,
          -1.5241725325718243,
          -3.1333497230802343,
          -7,
          -2.8831684774014112,
          -1.4881048331027253,
          -3.193596844909757,
          -3.850184028210951,
          -4.451502439935573,
          -2.8346902259765696,
          -3.2971851752651826,
          -3.783400727102669,
          -2.2342360669286863,
          -3.7128970270359547,
          -4.531006045114355,
          -4.627956975499418,
          -3.868892214759676,
          -3.341213782664629,
          -3.868496215892929,
          -2.352844087054004,
          -3.661387977649986,
          -3.2426783089692313,
          -3.3729171146923997,
          -1.6996029808111621,
          -4.27589207337761,
          -3.3166248501806437,
          -2.745382544818521,
          -3.2143138974243994,
          -2.7315711941519254,
          -3.617542423019308,
          -4.085351749338937,
          -3.7050482678914456,
          -3.439276652216932,
          -3.228232597940259,
          -1.4560171082838964,
          -3.4871989986746286,
          -2.1186212285496846,
          -2.500377449850352,
          -3.5144915594308066,
          -3.296328397315685,
          -2.924955443759352,
          -4.117363092185824,
          -4.38644290749695,
          -4.085407815287446,
          -4.752890597646411,
          -3.3615185485382044,
          -3.0440621075592937,
          -2.207799803280512,
          -3.9289869711634,
          -4.451725046806695,
          -2.9222265497856523,
          -4.627665355034582,
          -2.6902460104127837,
          -2.858048190695858,
          -4.083835226301192,
          -3.0733314645210617,
          -1.7736859244554088,
          -4.27567727232233,
          -3.008209698949563,
          -7,
          -4.026201186263154,
          -2.3945680807975416,
          -3.413964898303298,
          -3.8687032022785366,
          -7,
          -3.4429498695778618,
          -3.7396386867387204,
          -3.2273926209158175,
          -1.9062675544164474,
          -3.4267475581811215,
          -5.2329097508568,
          -7,
          -1.7301281803040465,
          -1.1980612628600098,
          -3.184018357858188,
          -3.5666244821811137,
          -1.8624180067027438,
          -2.0704873719767787,
          -1.911394810203503,
          -1.6789184877903949,
          -2.7724012161291096,
          -1.6064136756368392,
          -4.231247798947839,
          -7,
          -4.928656965002814,
          -2.494193733751878,
          -4.150595275965512,
          -3.0940987904485904,
          -3.663993632411139,
          -2.601755778137239,
          -1.9729304251003044,
          -3.78366115979566,
          -4.6283122830844565,
          -3.2537230464472198,
          -3.024641165714816,
          -2.3644683890954155,
          -3.8889576967672497,
          -7,
          -2.5709072990808,
          -2.647827581642871,
          -1.8846664940198277,
          -3.322637813146819,
          -2.466400168803679,
          -1.3317879916750461,
          -4.628858735758181,
          -3.177237964019352,
          -4.452872092466737,
          -2.7580586501388784,
          -3.499279676883177,
          -3.0095267723266406,
          -2.868443476147031,
          -4.752875253901097,
          -3.768587073814598,
          -1.9684173033680894,
          -2.773791504712906,
          -5.229530823874927,
          -4.530770695354899,
          -2.6198348288245152,
          -7,
          -7,
          -4.627647442132109,
          -4.02583304907565,
          -3.974337673992178,
          -2.4398045098919963,
          -3.101560301504318,
          -1.4639382574859172,
          -2.45674800723797,
          -3.147770834093524,
          -2.719600072489159,
          -4.5308039590378035,
          -4.151058141571291,
          -3.27741564211462,
          -3.613178490533262,
          -2.3620266625077564,
          -7,
          -4.116421256664951,
          -3.7686738168837577,
          -1.7520187049041693,
          -3.9509180044856396,
          -5.229597380847068,
          -3.2373253580656325,
          -2.9959997591277068,
          -3.928915363223554,
          -2.8928805454201445,
          -3.7855789489089666,
          -3.421702618946589,
          -3.265690002399037,
          -3.560964280516006,
          -2.8922941135451614,
          -3.7856196070000547,
          -3.6743456394383287,
          -1.677603353560154,
          -4.23054854221511,
          -7,
          -7,
          -4.0271099660758445,
          -4.531486580994901,
          -3.8322508140124287,
          -4.326663506724679,
          -2.669061616792209,
          -3.5142053720257787,
          -3.1250865563789247,
          -4.752652708654161,
          -2.3486841474975146,
          -1.4942297215720177,
          -3.6998173287940737,
          -2.605006709269838,
          -2.6742166859433936,
          -3.588745224405397,
          -3.140540987427616,
          -3.3346903802212804,
          -2.955886190732576,
          -3.374340940274877,
          -3.630466013966421,
          -2.5414358040496436,
          -3.908423738438037,
          -2.7241079430172648,
          -7,
          -1.9848259138289839,
          -2.824080049897986,
          -1.965233253817691,
          -5.230165260011151,
          -2.8173730283240284,
          -4.384545412762144,
          -3.4231515058214765,
          -4.452736852686558,
          -3.5604103496028143,
          -4.5314610339601105,
          -4.531826213727618,
          -2.8539349680493045,
          -3.2893355334158763,
          -5.229505222323249,
          -3.0408228694431076,
          -2.7029168150662946,
          -2.7522016590342444,
          -7,
          -4.627603936292747,
          -3.7989676263398766,
          -3.974516809880292,
          -4.385016090135945,
          -4.189242687350635,
          -4.928917920853296,
          -3.9755568958997354,
          -2.814726625496455,
          -2.8219869178471346,
          -2.5904656771525985,
          -1.7170450814253624,
          -4.928526428253506,
          -3.7118838850261935,
          -2.9376227838703515,
          -3.356525550338001,
          -4.6276551191807815,
          -4.6279544182762935,
          -3.8914817038395197,
          -3.5992151551499463,
          -4.232780179346588,
          -7,
          -5.229566663511999,
          -4.627959532707486,
          -4.452139252352545,
          -5.229615298289249,
          -4.3848524341177,
          -4.232983411537435,
          -2.22825463986061,
          -4.928600659844524,
          -4.275457246836364,
          -7,
          -4.385146459387118,
          -3.9300851841571225,
          -3.686799641509546,
          -7,
          -3.7839316401571788,
          -3.5329266541701796,
          -3.4926994489574796,
          -2.437204435651293,
          -2.5524198775407516,
          -2.9769304845704574,
          -4.752757600507165,
          -4.530635055505357,
          -2.0900399089956823,
          -3.1998313305233927,
          -1.7864002085937734,
          -4.152043602487651,
          -2.5163393966479584,
          -3.568548612811087,
          -3.6503458731237406,
          -4.276145095448474,
          -3.0374119207946,
          -1.722654040330429,
          -2.121679960668872,
          -2.5814207285366333,
          -2.795850342116538,
          -2.694276063274084,
          -2.9468819253369065,
          -4.1885654617274,
          -3.569241560181558,
          -3.159716282926921,
          -3.0144572790295707,
          -7,
          -3.738882805567102,
          -3.9769126735719555,
          -4.628238178156956,
          -4.118885103297191,
          -5.229661368317959,
          -3.126273496084421,
          -2.850636434350743,
          -4.001540288088415,
          -3.6225122309912363,
          -3.9538029130833663,
          -1.7477115397560063,
          -1.8644581722393818,
          -3.423614458082382,
          -2.4548912453634877,
          -4.5309497774256355,
          -3.4181482539720984,
          -3.088440220901794,
          -3.5341581521382097,
          -2.7888262431370867,
          -3.1908034736140474,
          -3.256702871095842,
          -3.455030221014262,
          -3.3558596798223332,
          -3.216860907533353,
          -1.5039869121961962,
          -2.2391789040947567,
          -3.974327435423617,
          -4.9284829072832395,
          -5.229535944004162,
          -2.3325587394963927,
          -2.836391940660465,
          -3.8154934557532534,
          -4.151798722592861,
          -3.377404915549636,
          -3.7678030494335566,
          -3.3884513797296045,
          -3.8687696214434575,
          -2.0992099681174743,
          -3.4455378508490546,
          -3.31229973600576,
          -3.162950773914828,
          -2.951455114707749,
          -2.09443454153178,
          -1.5546954363548962,
          -2.2017314834669692,
          -4.151959440597039,
          -2.8555712833674027,
          -2.3541901018916573,
          -2.652826800476945,
          -7,
          -3.3619778278554406,
          -4.116188673979431,
          -3.1611439385978923,
          -2.8326728977407982,
          -2.9248458868910823,
          -3.441210993482343,
          -4.752701320223626,
          -7,
          -3.162417568236465,
          -4.026175631261122,
          -4.000525944129182,
          -4.085084062103758,
          -3.2392293856005003,
          -4.276247284790318,
          -1.9959062547102917,
          -7,
          -5.229715110508744,
          -3.03301518820464,
          -3.394550649707553,
          -3.842428939473374,
          -3.1894226316376413,
          -2.9949205202944613,
          -2.6073260527437156,
          -2.655619817172903,
          -2.0428200167086685,
          -2.180735816721301,
          -2.651473316642036,
          -3.5059183613264397,
          -2.95005010742846,
          -2.9245662046369683,
          -2.81733848745083,
          -2.47438284827198,
          -3.7748019919787903,
          -2.511100633731271,
          -2.5121408620073256,
          -3.522613261968787,
          -3.318778615632663,
          -4.334915948315707,
          -2.885445455825539,
          -3.2206587681211514,
          -2.4188872035926767,
          -2.3019444805059224,
          -3.9183654379299813,
          -2.952604003896067,
          -3.1900867571876605,
          -4.003642970457874,
          -2.053037863611757,
          -3.4712988104094005,
          -2.7121713616353462,
          -3.446623958820909,
          -3.481165275721802,
          -4.330317365509652,
          -3.6901553555257225,
          -3.9049023407213768,
          -2.923693671895851,
          -2.924612032671514,
          -2.0264030876062473,
          -3.5323211420823304,
          -2.6064965269485283,
          -2.3130636356412113,
          -2.702026582792653,
          -2.400854247259087,
          -2.3021270370426237,
          -2.943235703699528,
          -1.0662335505085947,
          -2.8368059648499044,
          -3.520173535708888,
          -2.9944542210356926,
          -1.8677389543993326,
          -1.8010976657860946,
          -4.056465254980514,
          -2.0815386661433966,
          -2.035607069257544,
          -4.752888040393171,
          -2.489341120532883,
          -3.1055665756655806,
          -4.1262563229823215,
          -4.754432433893692,
          -2.0107652729108403,
          -1.165977904281495,
          -2.4000807260175354,
          -4.327218404614085,
          -3.3428372865598073,
          -4.116554105154213,
          -2.218890315867444,
          -3.8818236174163134,
          -2.307957045494282,
          -2.8572315530485044,
          -3.455713751383308,
          -3.9074855796797707,
          -2.8801959980434404,
          -2.5796857514914913,
          -2.4603389393750867,
          -2.9011418058474736,
          -2.2379135844464617,
          -2.605961594892811,
          -2.3220357412983232,
          -1.6723016903916712,
          -3.3796195458659186,
          -1.741856805260137,
          -2.349371214094059,
          -2.6537124603849924,
          -2.356584118819276,
          -4.753491134989102,
          -3.0558232833751444,
          -2.1688958897764117,
          -2.879093575458894,
          -4.45193219896035,
          -5.229758611221373,
          -7,
          -4.928925593652149,
          -3.8435068516736086,
          -1.378056211132438,
          -3.0431948924722545,
          -1.7958326537414153,
          -4.188752123630888,
          -3.31387992033792,
          -2.4240244874694508,
          -2.663457086695989,
          -3.2887114923125513,
          -4.054091894984775,
          -2.8703715256338183,
          -4.928864207465377,
          -2.268350538181473,
          -2.61462290914302,
          -3.5679975423604118,
          -4.233924659610991,
          -2.761746516558966,
          -3.689603110337512,
          -2.8123574644378384,
          -4.629547205832985,
          -4.02665326111819,
          -3.063892314170801,
          -4.116926885756776,
          -3.7997386616885427,
          -3.741609018477117,
          -2.4867864709381777,
          -7,
          -2.8819088886180406,
          -7,
          -4.025919998502018,
          -3.0112411831706627,
          -1.8461171517183268,
          -2.0005574162607793,
          -5.229638333914494,
          -3.612087216539411,
          -2.264543971936078,
          -4.453397341833707,
          -2.878744437967794,
          -7,
          -3.17516835576208,
          -1.7817445817033408,
          -5.229786756419653,
          -4.116145210655378,
          -4.058486760696795,
          -3.079548100481859,
          -2.883501347796778,
          -3.8327438790877433,
          -3.36923873849768,
          -3.141342687508441,
          -3.908712191721561,
          -3.0045477615939205,
          -2.093744898972794,
          -3.1659764148756198,
          -4.752698761855619,
          -2.6977850942665635,
          -2.7328058051535415,
          -4.330538057138943,
          -2.370587673923368,
          -4.628728568774205,
          -4.929114813125132,
          -3.3845767907683544,
          -3.191986755816186,
          -1.484563928788008,
          -2.730445584805495,
          -2.7317045750351814,
          -3.491987848930919,
          -4.531981896330715,
          -3.9239147590658896,
          -4.116806915962344,
          -3.2259103952026758,
          -4.276270274078892,
          -3.0236537634194707,
          -2.363953901817385,
          -3.5599702588597113,
          -4.3265201921035406,
          -2.4050707803378453,
          -1.5619018309927175,
          -3.036822159992723,
          -3.6901403652094,
          -2.5607880199041153,
          -3.32701565249362,
          -3.361058984763492,
          -3.2493537988389694,
          -2.546989318695974,
          -2.856906803417547,
          -4.153082804361832,
          -3.8700933294312776,
          -4.451661090997188,
          -5.229635774460915,
          -3.015604410495885,
          -3.5823815773367187,
          -3.0459745835329053,
          -2.8597765299970876,
          -2.191526832708817,
          -3.407487299358585,
          -3.010496569131057,
          -2.5530187035215763,
          -3.3476176979760814,
          -2.7901509501858306,
          -7,
          -3.2154926659956033,
          -4.75251196027259,
          -2.6323316733428355,
          -2.8393027327129636,
          -3.684291672207031,
          -4.928672319688248,
          -2.832127070576861,
          -3.043464350877091,
          -2.222872748808266,
          -3.7540321847750318,
          -7,
          -5.2297202284658,
          -4.752560587598014,
          -4.627916058122411,
          -4.752719228377702,
          -4.531139012496997,
          -2.82487074756354,
          -4.1913824121648675,
          -3.314113533503361,
          -4.0845073368306215,
          -4.026773224566896,
          -3.999644755141952,
          -3.815434696709049,
          -4.189796460324443,
          -4.6287362267356755,
          -3.02980974554449,
          -3.7701610584356504,
          -2.932882805129326,
          -3.589664195567082,
          -4.035729838034267,
          -3.712397131406715,
          -4.530716956330775,
          -3.3617504942690473,
          -3.888284185954415,
          -7,
          -2.640755354769382,
          -3.4827434594492797,
          -3.5406792623976844,
          -3.437378050057053,
          -3.8735126691141897,
          -3.4865291479340192,
          -4.229914666155714,
          -4.230057880349691,
          -3.702597774525026,
          -4.530821869196451,
          -3.3530464870062326,
          -3.5081331656581813,
          -7,
          -4.530558259451653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.619927710291468,
          -3.227372442289636,
          -2.6587266773270137,
          -3.471398404213118,
          -3.1204093945560682,
          -7,
          -7,
          -1.8315401537011429,
          -2.65452031968575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.917451180863874,
          -3.1736024586519864,
          -7,
          -3.0893751608160995,
          -3.101651043953959,
          -3.592398846115564,
          -3.5435714239623652,
          -7,
          -3.080896934973246,
          -3.6154239528859438,
          -7,
          -3.6512095798542563,
          -3.592398846115564,
          -7,
          -7,
          -7,
          -3.1990234256365437,
          -7,
          -2.2265999052073573,
          -3.204798038190855,
          -3.3997602257103656,
          -2.945591667032007,
          -2.879243907103876,
          -7,
          -7,
          -7,
          -3.3039516339434503,
          -2.7721382666011203,
          -3.5444401373176926,
          -7,
          -3.773274348337454,
          -7,
          -3.351699700405266,
          -2.8498460752365147,
          -3.441145047559696,
          -2.538346668680622,
          -3.4751867549424627,
          -7,
          -2.878636673026517,
          -2.836482357458148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.206353560072406,
          -2.757100662119184,
          -7,
          -7,
          -3.1190083104691966,
          -7,
          -2.8686444383948255,
          -3.5460488664017342,
          -7,
          -7,
          -3.1513826204220323,
          -7,
          -3.0002604985473904,
          -7,
          -7,
          -2.7795964912578244,
          -7,
          -7,
          -7,
          -3.4406729882937586,
          -7,
          -7,
          -1.8755613969294638,
          -3.6599162000698504,
          -7,
          -1.7301281803040465,
          -7,
          -1.5202604816104612,
          -2.910090545594068,
          -7,
          -2.5536403362313544,
          -1.8445067608461325,
          -1.895128911244188,
          -2.039514942039481,
          -2.2020469740330593,
          -2.1415542841654776,
          -7,
          -7,
          -3.5017437296279943,
          -2.7609607093960578,
          -3.509202522331103,
          -3.710286647702891,
          -7,
          -3.0670708560453703,
          -3.470883961069449,
          -3.263399331334002,
          -7,
          -3.1299046237151233,
          -2.9224140241456342,
          -3.1297865345203397,
          -7,
          -7,
          -3.690550461510359,
          -3.318272080211627,
          -2.0919808222345555,
          -3.590507462008583,
          -3.0999025155123463,
          -2.3331897709212175,
          -7,
          -3.5079907248196913,
          -7,
          -4.102716625314743,
          -3.6082050077043264,
          -2.6618915263256966,
          -3.0526298252227178,
          -7,
          -7,
          -2.774459337692739,
          -3.1545000516787205,
          -7,
          -7,
          -3.3366931627613803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1735100063936486,
          -3.9085922388475693,
          -1.923809015867687,
          -2.370547783660302,
          -2.7950685767307784,
          -3.058510378051891,
          -7,
          -7,
          -7,
          -4.149865453026261,
          -7,
          -7,
          -7,
          -7,
          -3.1117027513874906,
          -7,
          -7,
          -3.667733052533267,
          -2.722428241979694,
          -3.2187979981117376,
          -2.6728159545616648,
          -7,
          -7,
          -3.4079854213081364,
          -7,
          -3.5347873586294916,
          -7,
          -3.5585885831081994,
          -3.2204927470892803,
          -7,
          -7,
          -7,
          -3.2793246654426103,
          -7,
          -3.533772058384718,
          -7,
          -2.8406548916005177,
          -3.2401746950192774,
          -3.8615543230335403,
          -7,
          -2.502263204344856,
          -2.8863077616189106,
          -3.587598729721245,
          -2.669200619159474,
          -2.640812580319979,
          -3.3264382767957286,
          -2.9283958522567137,
          -3.338257230246256,
          -2.8157674379896123,
          -2.8328281295393536,
          -3.6398847419163043,
          -3.0670708560453703,
          -3.5547313766759667,
          -2.63489198424631,
          -7,
          -2.4964434207249413,
          -2.827276938731823,
          -2.7896688311627806,
          -7,
          -4.164769103009198,
          -3.500785172917456,
          -3.6263916993864376,
          -7,
          -7,
          -7,
          -7,
          -3.1387236281550397,
          -3.395064164331242,
          -7,
          -7,
          -4.1047431057093755,
          -3.693111115462141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03734680356809,
          -3.515542700362122,
          -3.1319392952104246,
          -3.3346589537217852,
          -7,
          -7,
          -2.444044795918076,
          -3.3078168266624304,
          -7,
          -7,
          -3.68761812957177,
          -3.646599751720373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.450504104449732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5685537120494426,
          -7,
          -3.5770319856260313,
          -3.877946951629188,
          -3.1857309785451338,
          -2.863521122841043,
          -2.9666578842017577,
          -2.573548450021623,
          -7,
          -7,
          -2.988187224867644,
          -3.6800634274819486,
          -2.7334097090783644,
          -7,
          -3.5872137026351245,
          -3.5907304057926903,
          -3.232742062720737,
          -7,
          -4.0986783295764395,
          -1.5907875097913582,
          -2.5669528005652698,
          -3.4220423867575565,
          -3.5069557791831683,
          -2.855115160771781,
          -2.794604214770576,
          -3.518382315545344,
          -3.318793504793297,
          -3.447158031342219,
          -3.1314582601065255,
          -7,
          -3.060320028688285,
          -3.6217992240026677,
          -7,
          -7,
          -7,
          -3.6917002082901615,
          -4.049799277918987,
          -7,
          -3.737113094305961,
          -3.636888906983799,
          -3.3478145680287468,
          -2.4887994770696724,
          -3.523876475638131,
          -2.9444826721501687,
          -7,
          -3.2829618035343353,
          -3.819346484080453,
          -7,
          -4.070481175066019,
          -7,
          -7,
          -7,
          -7,
          -3.7016543173257483,
          -3.359967894486308,
          -3.102733766037084,
          -7,
          -7,
          -7,
          -2.491206004826725,
          -3.234643807761769,
          -3.547528576459782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6823707425165573,
          -3.273348568749101,
          -7,
          -7,
          -2.4578818967339924,
          -3.1914277247755534,
          -2.020292753888836,
          -3.83143508369811,
          -7,
          -7,
          -3.825628935910912,
          -3.160368474792848,
          -7,
          -3.291479852236699,
          -7,
          -7,
          -3.643798000679235,
          -3.902546779313991,
          -3.684126925613075,
          -7,
          -7,
          -3.0179510688307425,
          -3.53668467262093,
          -7,
          -7,
          -3.853759033074769,
          -7,
          -3.307999130331943,
          -7,
          -7,
          -4.624271779929733,
          -4.490400981300528,
          -7,
          -3.238297067875394,
          -4.73497575120201,
          -3.818291890799996,
          -3.5342800052050816,
          -3.1421599511455183,
          -3.594375973933817,
          -3.3078168266624304,
          -3.824971461123693,
          -3.6599542110524927,
          -4.439798323663113,
          -5.009455145234674,
          -3.9121157290788537,
          -7,
          -3.7947319638135193,
          -4.635418396663854,
          -7,
          -3.764120066661152,
          -7,
          -4.915637233884228,
          -7,
          -3.3608654723254574,
          -3.586587304671755,
          -7,
          -4.683380289928945,
          -4.256549382152194,
          -7,
          -3.6173848117347926,
          -4.233402277811895,
          -4.224178991184729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.492383185039623,
          -4.255465481992464,
          -3.298972099243842,
          -3.590953235187986,
          -3.9957229219954655,
          -3.8207085337685434,
          -2.8118681227282054,
          -2.0895396974658813,
          -3.1496718328901663,
          -3.6960941599952233,
          -2.6221765574101847,
          -3.621280167550415,
          -7,
          -7,
          -3.395262000678114,
          -3.0702956591451445,
          -7,
          -3.3018110230174766,
          -2.5882250060000986,
          -7,
          -3.251784177257485,
          -4.119239388414244,
          -7,
          -7,
          -3.459120968849541,
          -2.9430122187969388,
          -4.453442357929439,
          -7,
          -3.278010092736105,
          -7,
          -3.792172151861495,
          -3.9406160823374075,
          -4.263818606337028,
          -3.3873601604019097,
          -7,
          -7,
          -4.073663372881412,
          -3.5705283464081514,
          -3.8016643457002885,
          -3.350377253413796,
          -3.104031637246626,
          -3.2595938788859486,
          -3.5324517957802373,
          -2.790363365974914,
          -7,
          -2.8518070711361267,
          -3.822583674439643,
          -2.9555503153497313,
          -4.122306487424473,
          -7,
          -3.519827993775719,
          -3.6359760701938337,
          -3.6522656855382767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.235132460652098,
          -2.998259338423699,
          -2.3534755341236973,
          -7,
          -3.6646419755561257,
          -3.489606966267722,
          -2.8653578243211677,
          -3.6742179455767,
          -7,
          -2.9179254220647413,
          -7,
          -3.4173853239538325,
          -2.7535830588929064,
          -3.0883723751492,
          -7,
          -3.3612150119217006,
          -3.681693392004564,
          -3.165719029800832,
          -7,
          -7,
          -7,
          -7,
          -3.5773768919170146,
          -3.655234507034294,
          -2.5248286863646054,
          -7,
          -3.6363541438170746,
          -7,
          -3.523876475638131,
          -3.8470376869548146,
          -3.2341888323857413,
          -3.408423144659725,
          -7,
          -7,
          -2.576034048242217,
          -7,
          -2.9710437918360286,
          -7,
          -3.3356584522893016,
          -2.2467768032158,
          -7,
          -7,
          -7,
          -3.633165353683903,
          -3.2734642726213465,
          -3.5576274884268266,
          -2.9480215331411035,
          -2.905256048748451,
          -7,
          -2.815198120256473,
          -2.467079316425522,
          -4.264109156305809,
          -7,
          -2.945679561323437,
          -3.174786417367337,
          -7,
          -2.9431819988751764,
          -7,
          -7,
          -4.024690862355431,
          -3.207365037469072,
          -2.8772437594565354,
          -2.704930079931728,
          -2.9759567150326314,
          -3.3347552398696707,
          -7,
          -7,
          -3.5578679615680224,
          -3.6353329239337633,
          -7,
          -3.2092468487533736,
          -2.6764047859729647,
          -3.623042434246382,
          -7,
          -2.6700504449799825,
          -2.530892675383932,
          -2.9320930828571,
          -3.7004441010277516,
          -3.1836114492184326,
          -3.2723058444020863,
          -7,
          -3.13756508756235,
          -3.1292708601213155,
          -3.863382348440788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8867162741164782,
          -3.1414497734004674,
          -3.2006364134455194,
          -3.683587317572767,
          -3.758457688610466,
          -3.432259004032759,
          -3.5615783683009608,
          -3.137670537236755,
          -7,
          -3.6524397475894204,
          -7,
          -2.7042731123189205,
          -2.864748335629659,
          -7,
          -7,
          -2.874191804679071,
          -2.6960285780634194,
          -3.0970363348477785,
          -3.1027766148834415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6553785755318513,
          -7,
          -3.6732052817790453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.712397131406715,
          -7,
          -3.7141061271543476,
          -3.62797998982998,
          -3.8585973449946924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.534026106056135,
          -3.576341350205793,
          -7,
          -3.782973994944048,
          -7,
          -7,
          -7,
          -7,
          -3.6957442751973235,
          -7,
          -7,
          -3.6378898165807905,
          -7,
          -7,
          -3.418135498425232,
          -7,
          -7,
          -7,
          -3.7151255162874732,
          -4.059979716944162,
          -3.5710874123044833,
          -3.414221033214868,
          -3.1245042248342823,
          -2.952917948726597,
          -2.872127124489488,
          -7,
          -7,
          -1.6027772408417797,
          -2.3707485342584267,
          -4.043676585602717,
          -7,
          -7,
          -7,
          -3.7091851295502454,
          -1.815957854947194,
          -3.7648732344371183,
          -7,
          -2.9811539014195136,
          -2.433802967467473,
          -3.7371926427047373,
          -4.02143739646709,
          -7,
          -2.896048304184059,
          -2.899546931090867,
          -4.0244035626829655,
          -3.6646210854682453,
          -4.038302172199525,
          -7,
          -7,
          -4.024977972095624,
          -7,
          -7,
          -2.1722250597760207,
          -3.5320320771880462,
          -3.1255535517330353,
          -3.4207394131837257,
          -2.4476953966860586,
          -7,
          -7,
          -2.293288876794244,
          -3.741821046886808,
          -2.5917754759952185,
          -7,
          -4.037864555774374,
          -3.8109378415420916,
          -3.140939922954522,
          -3.5836898650716833,
          -2.2377025444158694,
          -3.194549028554895,
          -1.675676526064217,
          -2.621613527703641,
          -3.3260489679467407,
          -2.828055394305438,
          -2.7341386174609497,
          -7,
          -7,
          -7,
          -7,
          -3.030478280622408,
          -2.9236001702363947,
          -2.870874187893698,
          -7,
          -7,
          -2.3694656262518725,
          -7,
          -2.817680315496243,
          -3.670245853074124,
          -4.013553430541676,
          -3.1912763113441907,
          -2.779870361623134,
          -7,
          -3.4776637838119564,
          -7,
          -7,
          -2.1945525288908807,
          -3.2268207703495495,
          -7,
          -7,
          -4.0979164092373255,
          -4.031691168625146,
          -3.4102371919840464,
          -2.1873216097386514,
          -3.461423486699566,
          -7,
          -1.1980612628600098,
          -1.5202604816104612,
          -7,
          -3.1078033261124367,
          -4.006637159068586,
          -1.9313217607792539,
          -2.350779916112717,
          -1.8423522280315754,
          -2.0847387221037597,
          -1.8463027411526274,
          -1.9157185738938223,
          -3.7327956982893293,
          -7,
          -7,
          -2.919691904136397,
          -3.7091851295502454,
          -3.0043213737826426,
          -3.749581734865559,
          -2.1870190811827652,
          -2.067739677734452,
          -4.0285712526925375,
          -7,
          -3.1401150518957146,
          -3.7481104674949837,
          -2.831434622256806,
          -7,
          -7,
          -3.230521905914519,
          -3.3439662859296195,
          -2.365581572755049,
          -4.0376256699147195,
          -3.4374158192831503,
          -2.1478252257750254,
          -7,
          -3.7448924954516967,
          -7,
          -3.6730048708508534,
          -3.4417344009978166,
          -2.7544525872374814,
          -3.2361277131456423,
          -7,
          -3.730176424163481,
          -1.8509877415144513,
          -2.4023301761316658,
          -7,
          -4.009110806132213,
          -3.6163704722912695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1339219404237717,
          -3.275829434043522,
          -1.9327995336788195,
          -2.4282848145774163,
          -3.730822635731648,
          -3.0337754719836787,
          -7,
          -7,
          -4.046612209068446,
          -3.8477165775931805,
          -2.3999930361074466,
          -7,
          -7,
          -4.0326590460399245,
          -2.3354579006893843,
          -4.009153331907709,
          -7,
          -3.3675422735205767,
          -2.8738241766178168,
          -3.536474268817627,
          -3.050959459771651,
          -7,
          -3.786964259435733,
          -3.481550113834348,
          -4.064420548433594,
          -3.635634517336094,
          -3.757661687155249,
          -3.4241871901498113,
          -2.834341956488676,
          -4.022758194236769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1115505391909464,
          -3.175138903896551,
          -4.158709186075578,
          -7,
          -1.9712108261874235,
          -2.5046342441702976,
          -7,
          -3.0818271912583772,
          -2.8099763348395044,
          -4.0512683188703855,
          -3.4807971572684466,
          -3.152135396861876,
          -2.949690192923948,
          -3.141802396482416,
          -3.453624073591451,
          -2.3299139378954807,
          -3.724070965382832,
          -3.157093948997081,
          -7,
          -1.4875667678371367,
          -3.068445618354352,
          -2.7758095916368664,
          -7,
          -2.936030924772797,
          -7,
          -7,
          -7,
          -3.755074101758472,
          -3.719331286983727,
          -7,
          -3.1835545336188615,
          -3.777318053891376,
          -7,
          -2.6519238051682956,
          -3.2805649808879713,
          -2.6232492903979003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024239306069092,
          -4.012288739834607,
          -7,
          -7,
          -3.177728835841732,
          -3.5888690345141137,
          -3.2362935415384895,
          -7,
          -3.7211095747344105,
          -2.282477921382284,
          -3.2658001678796333,
          -7,
          -7,
          -7,
          -3.212948190381025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0127528874912155,
          -7,
          -3.0531454728569654,
          -7,
          -4.008770449937752,
          -7,
          -4.0175758683910745,
          -4.03261876085072,
          -4.029911104912444,
          -7,
          -7,
          -3.4639526817194084,
          -3.587748370340144,
          -2.6283613110810564,
          -3.006973848403039,
          -2.9146075677710805,
          -7,
          -7,
          -2.0138427557233443,
          -3.2932520331478248,
          -2.1809235145491312,
          -7,
          -3.280834364765057,
          -3.3384166482463584,
          -3.71717102683231,
          -7,
          -3.814180981040187,
          -1.7707342208950423,
          -2.1949455422460873,
          -2.6283597328011896,
          -2.9902343565960714,
          -2.256671200295871,
          -2.826439262635231,
          -4.013216539624441,
          -7,
          -3.401538390165943,
          -3.2489536154957075,
          -7,
          -3.5422858532992207,
          -7,
          -7,
          -3.757282125444405,
          -7,
          -3.075875295259833,
          -3.7834509534038303,
          -4.045987605660967,
          -3.396582891683383,
          -3.577491799837225,
          -2.642912322460976,
          -2.0492180226701815,
          -3.315676520348013,
          -3.0823664270781026,
          -7,
          -7,
          -3.656513443339265,
          -3.463332970234029,
          -3.574355419939102,
          -3.8107700112343634,
          -4.200001865406602,
          -4.067145278885395,
          -3.6395196909414667,
          -2.875459184314206,
          -2.5708190525174435,
          -2.2660731213094354,
          -7,
          -7,
          -7,
          -2.956987188395434,
          -2.571991954511636,
          -7,
          -7,
          -4.090258052931317,
          -7,
          -2.9932524799207627,
          -3.7218930162149575,
          -2.3193143040905118,
          -7,
          -3.08687371853016,
          -3.2393933366675602,
          -2.8848358067000373,
          -3.066347226837513,
          -2.0633333589517493,
          -3.5077278367650973,
          -4.032376971209936,
          -3.122598107677436,
          -3.9111728335206797,
          -2.747245294567787,
          -7,
          -3.339133305969879,
          -7,
          -3.8187535904977166,
          -3.5969542796066576,
          -3.4768895692076844,
          -3.471144965160633,
          -7,
          -7,
          -3.132579847659737,
          -7,
          -7,
          -4.033664963203177,
          -7,
          -4.0217266644137775,
          -2.2861801654275338,
          -7,
          -7,
          -3.8459569159936344,
          -7,
          -7,
          -3.44504346145018,
          -4.0094650604236,
          -3.124399877288873,
          -3.459141087183815,
          -2.480438147177817,
          -3.2246244545428504,
          -3.1690184512274984,
          -7,
          -3.8730879855902858,
          -3.6166015302784342,
          -3.9967941582341497,
          -3.232306206383841,
          -4.191255342246265,
          -3.374488669017602,
          -3.5899170373224005,
          -3.8340602317133556,
          -4.480768447380031,
          -7,
          -4.40488671783032,
          -4.1541347529656445,
          -3.298307137328508,
          -2.677451625650918,
          -7,
          -3.8391086457313133,
          -3.7968690816574724,
          -7,
          -2.6890820438778835,
          -4.382485323486555,
          -3.527334155497215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1329568741326845,
          -3.4437322414015967,
          -2.447898457853143,
          -4.037784941753637,
          -3.2746965330172166,
          -3.702826735552145,
          -3.337484220026441,
          -2.4264191815419247,
          -2.4636253971574824,
          -2.8731388810370233,
          -1.9583311604617466,
          -4.29130223575985,
          -4.108565023732835,
          -4.572313860922749,
          -2.456909251591883,
          -2.3769645469813034,
          -7,
          -2.174362462314216,
          -1.6303389406217021,
          -7,
          -2.206109627437567,
          -4.045674966769105,
          -7,
          -7,
          -3.360210581728592,
          -2.1432883960858957,
          -4.112531272447809,
          -7,
          -4.164442085209516,
          -7,
          -3.3975620080186446,
          -7,
          -3.7982921198880066,
          -3.256015799029937,
          -7,
          -7,
          -3.8851208212759687,
          -3.4514203359243973,
          -3.5683870164605773,
          -3.359392744171009,
          -2.431162655342287,
          -2.6028735310261824,
          -3.7443369972248948,
          -1.9096308571332221,
          -7,
          -2.6589380136616834,
          -3.4437626385196736,
          -2.5097924183374514,
          -4.043828045520829,
          -7,
          -3.356089625562946,
          -3.0103432315964427,
          -3.7702774797561722,
          -7,
          -7,
          -7,
          -4.0124153747624325,
          -7,
          -1.6018854005791172,
          -2.6972293427597176,
          -1.7267344196871608,
          -7,
          -3.4632956099620027,
          -2.956387992907696,
          -2.8047490188774384,
          -3.370142847051102,
          -3.716128602823834,
          -3.0079752466359797,
          -7,
          -2.8674674878590514,
          -2.475418507891467,
          -3.727907081406697,
          -7,
          -3.1870504506422686,
          -3.5951654147902294,
          -2.4209637116600056,
          -7,
          -7,
          -3.5940332524095524,
          -7,
          -3.555698894718901,
          -4.061866972138563,
          -2.4903264264026674,
          -7,
          -3.096258082214778,
          -7,
          -7,
          -3.788822149804023,
          -2.6690306426372117,
          -2.8293160278815903,
          -7,
          -4.096458111717453,
          -2.1177035011801437,
          -7,
          -2.567752698038627,
          -7,
          -2.9399030745454158,
          -1.836405272525313,
          -7,
          -7,
          -3.7828666070641925,
          -2.821667629171724,
          -3.1200951059292272,
          -7,
          -4.058957178777311,
          -2.9628426812012423,
          -7,
          -2.7842042331316814,
          -1.9647492132986788,
          -7,
          -7,
          -2.38464540805471,
          -2.531613352728796,
          -7,
          -2.7202144484103994,
          -4.02612451674545,
          -4.015527404313787,
          -4.24538927117121,
          -3.2952004520032574,
          -2.158260116465521,
          -2.5418564826932464,
          -2.9880171842020564,
          -4.054421524462536,
          -7,
          -7,
          -3.725135413175271,
          -3.7172543127625497,
          -7,
          -2.6412169684899625,
          -2.150619399537976,
          -3.7484206224675685,
          -7,
          -2.1838914979181148,
          -1.6920185449540748,
          -3.5397032389478253,
          -4.080157310970184,
          -2.77572692378081,
          -3.6241445302716726,
          -3.7035206480101697,
          -3.5692958622643274,
          -2.628410218473732,
          -2.950638636498252,
          -4.049799277918987,
          -3.742764396661798,
          -7,
          -7,
          -3.9113041251051985,
          -7,
          -2.6192539127997327,
          -3.0567662983023087,
          -2.5293381019103465,
          -3.3739413115180614,
          -3.605771778568517,
          -3.1746992883707756,
          -7,
          -2.4036456868836145,
          -7,
          -2.8042151791711407,
          -7,
          -2.4657545198338777,
          -2.574883781005765,
          -3.686189234244024,
          -7,
          -2.5271368799683067,
          -2.784656909005254,
          -2.5968876654475994,
          -3.7329162073263795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.091071440262167,
          -3.7563317673210577,
          -4.0690017170456,
          -7,
          -7,
          -3.2373761539301436,
          -3.720696668749796,
          -3.555779424013014,
          -4.026247181477774,
          -2.5513423438970744,
          -3.054881054862772,
          -2.9719712763997563,
          -3.4912496033750355,
          -7,
          -3.1848536020225837,
          -4.008216801589691,
          -3.2730343599066476,
          -3.725176301419137,
          -7,
          -3.083017551279961,
          -3.1289643884877254,
          -3.1275097349740077,
          -3.4172723536273164,
          -3.792706788898358,
          -3.3895913074551967,
          -4.0124153747624325,
          -4.014772474073064,
          -3.29968885235135,
          -4.009960531470598,
          -3.374687259508575,
          -3.151523067564944,
          -7,
          -4.005566571133294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.602065419975057,
          -7,
          -7,
          -7,
          -3.0434184210606885,
          -3.9057149483897664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0330214446829107,
          -7,
          -7,
          -3.1699681739968923,
          -3.9183670583503423,
          -2.9876662649262746,
          -7,
          -7,
          -2.5744942682853273,
          -7,
          -7,
          -4.864748335629659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.455606112581867,
          -7,
          -7,
          -2.4720246977002813,
          -4.839723093782862,
          -7,
          -7,
          -2.989894563718773,
          -7,
          -3.6214878645806303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062259568116916,
          -7,
          -3.4163075870598827,
          -7,
          -7,
          -7,
          -3.4089180208467798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3109056293761414,
          -7,
          -7,
          -4.52270499273475,
          -7,
          -3.0147304950017535,
          -7,
          -7,
          -3.864866914328526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4649364291217326,
          -2.8187535904977166,
          -7,
          -7,
          -3.184018357858188,
          -2.910090545594068,
          -3.1078033261124367,
          -7,
          -7,
          -7,
          -2.597146487833695,
          -7,
          -3.083263668252353,
          -2.166331421766525,
          -4.14370162942477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6098077693287025,
          -4.073516732274978,
          -7,
          -7,
          -7,
          -7,
          -4.080301726793912,
          -7,
          -7,
          -7,
          -3.519434194913703,
          -2.765455665302838,
          -7,
          -7,
          -3.3546461700683716,
          -7,
          -7,
          -7,
          -4.993083360698062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4500070327955514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1476763242410986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0729847446279304,
          -7,
          -7,
          -7,
          -7,
          -2.919601023784111,
          -4.539352152039536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.12977426367155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.912540882790638,
          -7,
          -7,
          -7,
          -7,
          -3.7731703150932776,
          -7,
          -3.0563330349511615,
          -7,
          -7,
          -7,
          -2.8506462351830666,
          -3.218010042984363,
          -7,
          -7,
          -3.6098077693287025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.037047819356885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.352510527820731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.55834850876162,
          -4.125220936316564,
          -5.235679077201403,
          -7,
          -7,
          -2.541579243946581,
          -3.0511525224473814,
          -7,
          -7,
          -3.285782273779395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.038426414658448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9222062774390163,
          -7,
          -7,
          -3.2894402979178685,
          -3.802020751771976,
          -7,
          -7,
          -7,
          -3.6118082472765156,
          -7,
          -3.9293422787484373,
          -7,
          -4.709303888906937,
          -7,
          -7,
          -7,
          -3.982768577251012,
          -3.1212314551496214,
          -3.2513948500401044,
          -3.6982745766743674,
          -7,
          -3.1360860973840974,
          -2.9079485216122722,
          -7,
          -3.089551882886454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.994537104298498,
          -7,
          -7,
          -7,
          -7,
          -4.654118760497929,
          -3.4036923375611288,
          -7,
          -4.281215232611316,
          -7,
          -2.9537596917332287,
          -2.7837845129301377,
          -7,
          -3.9455670534423883,
          -3.4753805931433615,
          -3.7707783961691477,
          -7,
          -7,
          -7,
          -4.466519478150249,
          -3.1584228065848823,
          -2.367355921026019,
          -7,
          -7,
          -7,
          -3.594613509160098,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -3.2757719001649312,
          -7,
          -3.680335513414563,
          -7,
          -2.723044991643445,
          -7,
          -7,
          -4.855773479628163,
          -3.2068798223063,
          -5.030081335414012,
          -7,
          -3.4759615891924236,
          -4.7167460199658,
          -3.282244366936266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0563330349511615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7219754015859534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.710811004797183,
          -7,
          -3.5639554649958125,
          -4.287062352554394,
          -3.97589687492733,
          -3.9665640840973104,
          -7,
          -7,
          -7,
          -7,
          -4.1015637886590275,
          -7,
          -3.972517564662308,
          -4.444279064276847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.051962449783047,
          -4.09711842434465,
          -7,
          -7,
          -7,
          -7,
          -4.170533064658333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.449216046206292,
          -7,
          -4.009535876619219,
          -7,
          -4.1910222841219555,
          -4.764217242658816,
          -7,
          -3.3324384599156054,
          -7,
          -7,
          -3.836855579548605,
          -7,
          -7,
          -7,
          -4.359569893603762,
          -4.2013515984037575,
          -7,
          -3.7345438163285243,
          -3.204052118841129,
          -7,
          -7,
          -4.3688630818982945,
          -7,
          -7,
          -4.689588529304547,
          -4.072594865284654,
          -5.706239710048615,
          -7,
          -7,
          -7,
          -4.255431717226232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.428669230652189,
          -4.781151968281956,
          -7,
          -7,
          -3.789439684567179,
          -7,
          -3.6388884247050757,
          -7,
          -4.16428344244365,
          -4.477752934854223,
          -7,
          -7,
          -7,
          -7,
          -4.605595915240784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8847804630386533,
          -7,
          -3.5751300891616467,
          -7,
          -2.9237619608287004,
          -3.735758537443739,
          -2.740362689494244,
          -3.2511513431753545,
          -7,
          -7,
          -7,
          -4.7956715059460215,
          -7,
          -7,
          -7,
          -4.119024820114783,
          -7,
          -7,
          -7,
          -7,
          -3.4594678795625455,
          -7,
          -7,
          -7,
          -3.1929853790931624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.947531745695593,
          -4.008067621748033,
          -7,
          -7,
          -3.6241789257480224,
          -7,
          -7,
          -7,
          -7,
          -3.399797293677605,
          -7,
          -7,
          -7,
          -7,
          -3.66029616027073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1970047280230456,
          -7,
          -7,
          -3.511749711344983,
          -7,
          -7,
          -4.138807765217715,
          -7,
          -7,
          -7,
          -7,
          -3.7785579664213467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7863964613723042,
          -7,
          -7,
          -3.776991584856405,
          -3.4518375861611674,
          -7,
          -7,
          -4.300617219806582,
          -7,
          -7,
          -2.7708520116421442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3553940446231705,
          -7,
          -7,
          -3.415974411376566,
          -4.2254126728659545,
          -7,
          -4.154302219684665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6203442997544935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.913919764951466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7858279199958655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.855317205195943,
          -7,
          -7,
          -7,
          -5.270516964338342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9068089508150585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5666244821811137,
          -7,
          -4.006637159068586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.140130778371135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.055378331375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.164144582470177,
          -4.451033825139367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.144698718643125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.352876833977717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335838869579954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.712707772006801,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.829850318129671,
          -7,
          -7,
          -3.801403710017355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.050044463417963,
          -7,
          -7,
          -7,
          -7,
          -3.72956972630197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.554040702717402,
          -7,
          -5.574089169798587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.093141404751149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.63255345397555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.788496443675952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.404799518857654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.482530584131741,
          -7,
          -4.941918703252601,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.124993020025895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.41077723337721,
          -2.852937225981498,
          -4.06370588053735,
          -2.7721994219179718,
          -7,
          -7,
          -2.5538087480629397,
          -3.783713057452657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2291514006582367,
          -3.9844823064022625,
          -7,
          -7,
          -3.2157024817843536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0320716634698215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.397070549959409,
          -7,
          -3.625312450961674,
          -7,
          -2.8791082837495585,
          -3.40840957846843,
          -7,
          -3.3107994838343924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.514282047860378,
          -7,
          -2.8205482309696888,
          -7,
          -2.9562121023022296,
          -3.212347437988012,
          -3.4452927694259716,
          -3.4750898033890065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4671639659690903,
          -3.4497868469857735,
          -3.1365476218503834,
          -7,
          -7,
          -3.1722136039924793,
          -7,
          -2.608763677622469,
          -3.7945577512547617,
          -2.7955324427101544,
          -3.18789657069281,
          -3.3117313914325637,
          -7,
          -7,
          -7,
          -7,
          -3.1303797231516177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.402433346219312,
          -2.654577589539578,
          -7,
          -7,
          -1.8624180067027438,
          -2.5536403362313544,
          -1.9313217607792539,
          -7,
          -7,
          -7,
          -7,
          -1.8483944086434856,
          -2.046395689767224,
          -3.1104213464739563,
          -1.8982652089561929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.335156899534743,
          -7,
          -3.315620531115086,
          -3.2074660557634376,
          -7,
          -7,
          -7,
          -3.2285286773571817,
          -3.9411303053770306,
          -7,
          -7,
          -3.3116479226525204,
          -3.4347285417797577,
          -2.79309160017658,
          -7,
          -3.624230513855454,
          -3.3707498792897748,
          -7,
          -3.9476297473843545,
          -7,
          -5.002412308205343,
          -2.3628054903717945,
          -3.373463721632369,
          -7,
          -7,
          -7,
          -3.4946713037544734,
          -3.3900514964589874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8632633636504807,
          -2.482576980405909,
          -3.0517954455579925,
          -3.469822015978163,
          -3.199618067707931,
          -7,
          -7,
          -7,
          -4.124439010556526,
          -3.334252642334231,
          -7,
          -7,
          -3.4724638966069894,
          -1.146249563866738,
          -7,
          -7,
          -2.739006930385196,
          -3.234390722392192,
          -7,
          -2.6912078323367767,
          -3.257438566859814,
          -3.646893624167745,
          -7,
          -3.5781806096277777,
          -3.976762523267461,
          -7,
          -3.148294097434746,
          -3.1852435240593744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021396056741971,
          -7,
          -2.855761372339948,
          -3.6011046363297106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8376585705702464,
          -7,
          -3.8171024042569233,
          -7,
          -2.389488261294666,
          -3.291146761731886,
          -2.979948797120537,
          -7,
          -4.140225125266448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6387886671573986,
          -7,
          -3.9573678084315276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7599698575543075,
          -7,
          -4.252153044735006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9520752895626545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5800121125294244,
          -3.4248272103534214,
          -3.928190948038757,
          -7,
          -7,
          -7,
          -3.2744849869352772,
          -7,
          -3.557735717818272,
          -7,
          -4.426014873609768,
          -7,
          -7,
          -3.424881636631067,
          -7,
          -2.6933164903265205,
          -3.344667305256552,
          -7,
          -3.247138226100887,
          -3.2434101416537113,
          -3.469232742506612,
          -7,
          -3.2258259914618934,
          -3.681150749932421,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313023110323238,
          -3.716420733846555,
          -7,
          -7,
          -7,
          -3.8591920393735446,
          -2.078411501156303,
          -1.902739608205772,
          -4.0261858534423824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7096938697277917,
          -3.9050399280762114,
          -7,
          -7,
          -7,
          -3.3041772464037416,
          -2.969788537414939,
          -7,
          -7,
          -7,
          -3.4043775248953203,
          -3.3057095504829292,
          -7,
          -7,
          -7,
          -7,
          -3.604657972047871,
          -7,
          -2.4395853007775634,
          -7,
          -3.5046067706419537,
          -2.938233722873167,
          -7,
          -4.090310969424922,
          -3.3059133062904342,
          -3.8007384436964013,
          -7,
          -3.210318519826232,
          -3.6840084328169542,
          -7,
          -7,
          -7,
          -7,
          -3.72956972630197,
          -3.6022770843001926,
          -3.856547644856748,
          -7,
          -7,
          -7,
          -2.94527158150771,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1300892079409475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.708197746332473,
          -4.5901170347847895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.914223237906244,
          -7,
          -7,
          -3.466422722433792,
          -7,
          -4.676089749249794,
          -7,
          -7,
          -4.4869827371917586,
          -7,
          -4.393294356452329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.179953729631548,
          -7,
          -3.271609301378832,
          -3.013118230526625,
          -4.085549222231902,
          -5.073168262265102,
          -3.9823617016331467,
          -3.808818425092124,
          -3.520614521878236,
          -3.318272080211627,
          -2.9865440595674193,
          -3.4675341138495925,
          -7,
          -7,
          -3.494289130228922,
          -3.6181701703721543,
          -7,
          -3.261991039833867,
          -2.6745549761273852,
          -7,
          -3.3078702684248684,
          -4.4068466330976666,
          -7,
          -7,
          -4.221814004667988,
          -3.1890591740845484,
          -4.594097480135254,
          -7,
          -7,
          -7,
          -4.186428913233115,
          -7,
          -4.709648107508037,
          -7,
          -4.26521888809996,
          -7,
          -7,
          -4.461948495203762,
          -4.194146492730399,
          -7,
          -3.358672330617676,
          -3.61768166971834,
          -7,
          -3.610300763470534,
          -7,
          -3.126238053970879,
          -4.965069934066822,
          -2.8965262174895554,
          -4.652281160545874,
          -7,
          -3.7648483571934106,
          -4.326970450324921,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.349832359203467,
          -7,
          -3.3316044201502746,
          -7,
          -7,
          -4.077531416354595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.111255790782233,
          -3.7798128631705805,
          -7,
          -7,
          -7,
          -7,
          -3.3373926976485757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0211892990699383,
          -7,
          -4.0858968111315885,
          -7,
          -7,
          -7,
          -4.800129146035911,
          -4.324062851231625,
          -7,
          -7,
          -3.722428241979694,
          -7,
          -3.6830470382388496,
          -7,
          -3.5478977175630972,
          -3.0154479997419172,
          -7,
          -7,
          -7,
          -3.2420442393695508,
          -7,
          -7,
          -7,
          -3.5085297189712863,
          -7,
          -3.577836341292744,
          -3.2185730139164606,
          -7,
          -7,
          -3.731266349075492,
          -3.41355121317555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.643292012003188,
          -3.3793961751941644,
          -7,
          -7,
          -7,
          -7,
          -3.44870631990508,
          -3.592953571547866,
          -7,
          -3.608312042697327,
          -3.6154239528859438,
          -7,
          -7,
          -3.307228532834288,
          -3.1575834883314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.103187748850943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.553239600315695,
          -7,
          -7,
          -4.09221753532326,
          -7,
          -3.6716355966021297,
          -7,
          -3.5669086552268032,
          -7,
          -3.322563836189438,
          -7,
          -7,
          -7,
          -3.567966906823154,
          -3.2016701796465816,
          -4.126212606567055,
          -3.4774106879072515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40840957846843,
          -7,
          -7,
          -7,
          -3.3376588910261424,
          -7,
          -3.8672022338494396,
          -3.8859828113549733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.046768219660838,
          -3.1709947020363,
          -3.4670158184384356,
          -7,
          -7,
          -7,
          -3.3939260065858368,
          -7,
          -7,
          -7,
          -7,
          -3.5491259267581112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.232487866352986,
          -3.2988530764097064,
          -3.436410636647131,
          -7,
          -7,
          -7,
          -2.9012247250756964,
          -3.197881761865032,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.057639077178137,
          -7,
          -7,
          -2.5238229473051854,
          -3.365960949185637,
          -3.0492180226701815,
          -3.2615007731982804,
          -7,
          -7,
          -3.3900514964589874,
          -7,
          -4.872214563397586,
          -7,
          -7,
          -7,
          -2.6780629049743454,
          -7,
          -2.396697391280942,
          -1.8398246684187096,
          -7,
          -3.52543355342882,
          -2.224603685336854,
          -3.968551434039823,
          -7,
          -3.2920344359947364,
          -3.207365037469072,
          -3.0713295868603425,
          -3.2591955531844463,
          -7,
          -7,
          -7,
          -3.3803921600570273,
          -2.604380359173108,
          -2.9787960558692133,
          -7,
          -2.8115750058705933,
          -7,
          -7,
          -3.3261309567107946,
          -2.8043666332204187,
          -3.3346547668832414,
          -7,
          -7,
          -7,
          -7,
          -3.377215156263061,
          -4.466912085089596,
          -2.5216610151120733,
          -7,
          -3.5559404378185113,
          -7,
          -3.510343901389912,
          -3.4282968139828798,
          -7,
          -7,
          -3.9826911065162727,
          -7,
          -1.7611489310114437,
          -7,
          -7,
          -3.33193317250328,
          -7,
          -2.9628426812012423,
          -7,
          -2.5416926811894625,
          -2.537189226243645,
          -7,
          -2.658393026279124,
          -2.6154991488833446,
          -7,
          -2.0704873719767787,
          -1.8445067608461325,
          -2.350779916112717,
          -2.597146487833695,
          -7,
          -7,
          -7,
          -2.307496037913213,
          -2.1802334314815814,
          -2.6304278750250236,
          -3.139650148872528,
          -7,
          -7,
          -7,
          -1.978019806535125,
          -2.8915374576725643,
          -7,
          -3.407900540142635,
          -3.0280830070178384,
          -3.3969486867163377,
          -7,
          -7,
          -2.140249171197303,
          -7,
          -2.5089611230813635,
          -7,
          -7,
          -3.0320812676114404,
          -2.7561604817807175,
          -2.383407309498374,
          -2.228676690246511,
          -2.6832381229003643,
          -2.260936864557439,
          -7,
          -7,
          -7,
          -4.521512915129848,
          -7,
          -3.2854447829074154,
          -2.289434579416023,
          -7,
          -7,
          -2.789601447654983,
          -3.606918525948291,
          -7,
          -7,
          -3.5421849794668856,
          -7,
          -7,
          -7,
          -2.912487761332324,
          -2.4768316285122607,
          -4.070628844051428,
          -3.808346035740395,
          -2.6397709927061457,
          -3.071513805095089,
          -7,
          -3.936714758211204,
          -7,
          -7,
          -2.484121813321787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7767253914788386,
          -2.88394519503428,
          -7,
          -7,
          -2.931457870689005,
          -7,
          -3.412124406173317,
          -7,
          -7,
          -7,
          -3.4652340949880145,
          -3.9351040211514494,
          -7,
          -3.2898118391176214,
          -2.96169201297872,
          -7,
          -7,
          -7,
          -7,
          -3.2581581933407944,
          -7,
          -7,
          -2.0648322197385736,
          -7,
          -7,
          -7,
          -3.499893186149237,
          -2.194690899736821,
          -2.436361454314497,
          -1.4880434371530584,
          -1.6561719424802648,
          -2.3656581296460253,
          -1.9012766462284751,
          -3.429752280002408,
          -2.8627275283179747,
          -3.384353414137506,
          -3.4303975913869666,
          -3.727703883685354,
          -7,
          -3.153052275067109,
          -7,
          -3.3979834359489,
          -3.1822719566941857,
          -4.061659775062183,
          -7,
          -4.112068504268197,
          -7,
          -3.832061614590727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.241048150671644,
          -3.376010910646249,
          -3.067973700294994,
          -7,
          -7,
          -2.9554472105776957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6207037602596985,
          -2.9893608137762473,
          -3.2612033723225187,
          -4.4128090192128715,
          -7,
          -7,
          -7,
          -2.7761561584219154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8936734010236806,
          -7,
          -7,
          -7,
          -7,
          -3.020775488193558,
          -2.3504633887734405,
          -7,
          -7,
          -7,
          -3.467608105583633,
          -3.152777414797245,
          -1.8152720561645486,
          -1.5622928644564746,
          -7,
          -7,
          -3.035309640156801,
          -2.890840019780741,
          -2.966709712411367,
          -7,
          -3.60580214022274,
          -7,
          -7,
          -7,
          -3.5593878738130678,
          -2.7744506055050415,
          -2.4742162640762553,
          -2.841359470454855,
          -7,
          -2.515873843711679,
          -2.272263661459806,
          -3.2119210843085093,
          -7,
          -2.894758994371892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1341315530078986,
          -7,
          -7,
          -3.4255342204982635,
          -2.9525056727465,
          -3.0443437348951075,
          -7,
          -4.0080889362915775,
          -7,
          -2.3326404103874623,
          -7,
          -3.4699692094999595,
          -2.432665997464232,
          -2.929418925714293,
          -7,
          -7,
          -3.643945912748067,
          -7,
          -3.293359332906441,
          -3.4510184521554574,
          -7,
          -7,
          -7,
          -2.293492544081438,
          -3.016531940957265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.305064611772354,
          -3.3191060593097763,
          -3.367169488534681,
          -7,
          -1.5473790729562786,
          -4.386249196708923,
          -2.156687577399937,
          -4.553678482278634,
          -7,
          -2.74531506516047,
          -5.023046584075505,
          -3.243905770217521,
          -7,
          -2.747994102251068,
          -7,
          -2.748575616930992,
          -3.5524857010929476,
          -7,
          -3.49996186559619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0384611961785635,
          -7,
          -2.775564113729958,
          -7,
          -7,
          -3.527275361588527,
          -4.77956041878952,
          -7,
          -2.765420173578722,
          -4.244260623072277,
          -3.0690687538613783,
          -2.8542047958554297,
          -2.686549079042787,
          -3.3060919125073824,
          -2.605346492386491,
          -7,
          -3.626996959365406,
          -3.685912654996182,
          -4.002222235519126,
          -3.3373926976485757,
          -4.350015298234692,
          -2.8494374804184424,
          -3.4963504075587175,
          -7,
          -3.29211504375923,
          -7,
          -5.088786157341457,
          -3.996533561445376,
          -2.751241843078004,
          -3.1385553051135826,
          -7,
          -3.588691788592222,
          -4.214393431255206,
          -3.2125870781238937,
          -3.2628751809008034,
          -3.8877297972880305,
          -4.209506078350244,
          -4.043342626242493,
          -7,
          -7,
          -7,
          -3.9334366678262804,
          -4.167332106418112,
          -3.9121157290788537,
          -3.3235202277543374,
          -7,
          -4.679863789404051,
          -3.345314535659132,
          -2.419555246345498,
          -2.597851829563605,
          -4.349413526814732,
          -7,
          -2.9771354402245875,
          -3.7353992699626937,
          -7,
          -7,
          -3.9675573359128724,
          -3.7355368025021285,
          -7,
          -3.4532265779981905,
          -3.5839352025367517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.615814203848796,
          -3.2903305242929637,
          -5.105258050483448,
          -7,
          -7,
          -7,
          -3.7842986456020222,
          -7,
          -7,
          -3.8121443089703804,
          -7,
          -7,
          -4.3429947829274775,
          -4.448752683389127,
          -4.790186609533173,
          -3.226342087163631,
          -3.939918420369057,
          -3.171433900943008,
          -3.9038547572602984,
          -2.2772362929775247,
          -7,
          -3.3048624642031603,
          -4.182771186796507,
          -3.6684791029325856,
          -4.872457356924434,
          -7,
          -7,
          -3.6646524202232635,
          -4.016761820389091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8382778529086805,
          -2.7414142504968653,
          -2.719598561582539,
          -7,
          -2.6229537514399808,
          -3.584218112117405,
          -2.071628108157179,
          -3.4847268042986617,
          -7,
          -3.343867921696387,
          -7,
          -3.5031230720768396,
          -3.4111144185509046,
          -3.303412070596742,
          -7,
          -2.8568798705623637,
          -7,
          -2.8487278007449355,
          -7,
          -7,
          -2.6994040818153375,
          -7,
          -3.3240765797394864,
          -7,
          -2.640779477344857,
          -7,
          -4.053846426852253,
          -7,
          -7,
          -4.607755172446473,
          -2.5813604913799524,
          -3.2149204978830515,
          -7,
          -7,
          -2.7808571437595684,
          -3.3506356082589543,
          -3.2956770340174653,
          -7,
          -3.4255342204982635,
          -2.7056094753324085,
          -7,
          -3.226342087163631,
          -7,
          -2.941677035870691,
          -2.685890955055167,
          -7,
          -3.443106456737266,
          -2.8946852037877533,
          -7,
          -2.7646243978509815,
          -2.373565814884186,
          -4.222716471147583,
          -7,
          -3.1775364999298623,
          -2.9355072658247128,
          -7,
          -2.9457581341004113,
          -7,
          -7,
          -3.3477689676073514,
          -3.5010592622177517,
          -2.9058211989484706,
          -2.386498965550653,
          -3.3947142795333423,
          -2.8210219669692687,
          -7,
          -7,
          -7,
          -7,
          -3.26528962586083,
          -3.5039268041935103,
          -2.7529934654248027,
          -7,
          -2.6940198963087196,
          -2.817985819267376,
          -2.467818013504448,
          -3.7148325124333326,
          -3.5246557123577773,
          -4.02630850085407,
          -7,
          -3.510545010206612,
          -7,
          -3.4701531312754197,
          -3.27315566043433,
          -7,
          -3.3771240423464564,
          -7,
          -3.1711411510283822,
          -3.679954545361563,
          -7,
          -3.3404441148401185,
          -2.8885164610749454,
          -3.286880427183525,
          -3.0214649540978553,
          -3.4921455180442877,
          -4.25806231201092,
          -7,
          -3.281714970027296,
          -7,
          -3.450557009418329,
          -7,
          -3.0361496297458532,
          -3.452553063228925,
          -3.770041554319669,
          -7,
          -2.848958460827495,
          -7,
          -3.333413685070855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0220747111643926,
          -7,
          -3.4831592097169795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5424519473759766,
          -7,
          -4.141951195862753,
          -3.8340390181594666,
          -7,
          -3.3109056293761414,
          -7,
          -3.649140064144219,
          -7,
          -7,
          -4.512524307323576,
          -3.322219294733919,
          -3.314709692955174,
          -7,
          -3.571825249040829,
          -3.555094448578319,
          -3.20682587603185,
          -7,
          -3.517591730711908,
          -7,
          -3.4429498695778618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3666097103924297,
          -2.834802054048699,
          -3.4945719842301988,
          -1.9790549228951424,
          -1.994114021477017,
          -3.596256391478613,
          -3.360340916766332,
          -7,
          -3.3664229572259727,
          -1.6942935974982078,
          -3.4097399533150314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3140723973996593,
          -3.6723288042224165,
          -7,
          -3.801815168581437,
          -3.187715646549746,
          -3.4574276929464847,
          -7,
          -7,
          -2.877601679729272,
          -7,
          -7,
          -3.295630749386032,
          -7,
          -7,
          -7,
          -7,
          -2.8686444383948255,
          -3.3769417571467586,
          -3.1992064791616577,
          -3.0334237554869494,
          -3.1221066080541338,
          -2.9183798695859635,
          -3.211645094674914,
          -7,
          -2.506843136339351,
          -3.1080009315871533,
          -2.190773878234185,
          -3.004894321731049,
          -2.787460474518415,
          -7,
          -7,
          -3.480868923687168,
          -7,
          -2.4849134365147463,
          -3.3500540935790304,
          -2.7310064508026852,
          -3.421329664478712,
          -7,
          -7,
          -3.171726453653231,
          -7,
          -7,
          -7,
          -7,
          -3.429752280002408,
          -7,
          -3.133045111293821,
          -7,
          -7,
          -3.022840610876528,
          -7,
          -3.2490760036836117,
          -2.452224674191046,
          -3.3544926005894364,
          -3.3408405498123317,
          -3.3452001259285136,
          -7,
          -3.5983527098692836,
          -7,
          -7,
          -2.9639294220265584,
          -3.574956775764507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.623862267891198,
          -3.5471591213274176,
          -7,
          -1.911394810203503,
          -1.895128911244188,
          -1.8423522280315754,
          -7,
          -7,
          -1.8483944086434856,
          -2.307496037913213,
          -7,
          -1.321532255663362,
          -2.8911656301824684,
          -2.2399664702073565,
          -7,
          -7,
          -7,
          -3.1999901215285598,
          -7,
          -3.611404637711593,
          -3.502836638621003,
          -3.173259130501515,
          -2.9921795216998177,
          -3.4191293077419758,
          -7,
          -7,
          -2.7180862947830917,
          -3.0333064533284095,
          -7,
          -7,
          -1.7801314083513837,
          -2.811909980420099,
          -1.6841208832970997,
          -7,
          -3.0433360754520002,
          -2.4021117933782326,
          -7,
          -7,
          -7,
          -3.959886597547779,
          -3.001156577199942,
          -3.651859269246949,
          -7,
          -3.3527611917238307,
          -7,
          -2.7774671001061875,
          -2.969602264848539,
          -7,
          -7,
          -3.553171907103293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6158448828747023,
          -3.24619072334908,
          -1.6960650136926116,
          -2.608659724353039,
          -3.131297796597623,
          -3.967032882158702,
          -7,
          -7,
          -7,
          -7,
          -3.9242792860618816,
          -7,
          -3.3832766504076504,
          -7,
          -2.606130462501941,
          -7,
          -7,
          -3.255995726722402,
          -3.02626080875407,
          -7,
          -3.506234359612126,
          -7,
          -3.6225248624035684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5004377446276838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.400753787896711,
          -7,
          -3.8402315949581087,
          -7,
          -3.54082981411108,
          -3.245652283747335,
          -7,
          -3.2074323856093794,
          -3.266310110427021,
          -7,
          -7,
          -7,
          -2.849910558301496,
          -3.4840149626675627,
          -3.521007252408604,
          -2.660062377951373,
          -3.4051755462179893,
          -3.198313363563387,
          -7,
          -2.9465341378537158,
          -3.0870712059065353,
          -2.958453614214925,
          -7,
          -3.6552985433779526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4083005490438167,
          -2.5917322389518356,
          -7,
          -3.0112531701274974,
          -7,
          -3.6444878264138585,
          -7,
          -7,
          -3.385963570600697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6924503234060153,
          -2.962369335670021,
          -3.1409363554584804,
          -3.9289647102407317,
          -7,
          -3.091315159697223,
          -3.1124374173218436,
          -7,
          -3.331427296520743,
          -3.3544926005894364,
          -3.2814878879400813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.871611849078623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1100844228869238,
          -3.069879432430074,
          -7,
          -7,
          -7,
          -3.1727780146558526,
          -3.573103783163991,
          -3.2323304321038173,
          -3.4396484295634737,
          -3.8798901436004236,
          -3.4551495211798278,
          -7,
          -7,
          -3.5836521085420436,
          -1.7031972085222742,
          -2.540571646441333,
          -2.8827774391015835,
          -3.457124626303409,
          -2.8135809885681917,
          -2.7317498835272636,
          -7,
          -3.494711025205263,
          -2.9589459324939362,
          -3.339749481680876,
          -7,
          -3.381295623003826,
          -3.497067936398505,
          -7,
          -7,
          -7,
          -3.28668096935493,
          -3.7062055418819706,
          -7,
          -7,
          -7,
          -3.906743723985058,
          -1.6603314663214848,
          -3.3609718837259357,
          -3.091170218869001,
          -7,
          -7,
          -3.2670151976815847,
          -3.55339751012388,
          -4.030073230712518,
          -7,
          -3.045993186453467,
          -3.55834850876162,
          -3.7015679850559273,
          -3.600537294364469,
          -3.6503261821381465,
          -3.4819201376014313,
          -3.3279716236230104,
          -7,
          -7,
          -2.2191556874787546,
          -3.065878352857392,
          -3.394976719554564,
          -7,
          -7,
          -7,
          -3.577721524509021,
          -7,
          -1.7901845979839552,
          -2.829946695941636,
          -3.1690863574870227,
          -3.766561552637531,
          -7,
          -3.4866134627164285,
          -2.164859597487805,
          -4.128030391104316,
          -7,
          -2.9927191631771874,
          -3.594036324592131,
          -2.6775499250161365,
          -7,
          -3.4578818967339924,
          -3.065206128054312,
          -3.7095243558763413,
          -2.40970774995732,
          -3.5405171695925723,
          -3.578295305120826,
          -7,
          -7,
          -3.319314304090512,
          -3.3794868137172736,
          -7,
          -3.4394905903896835,
          -3.4838724542226736,
          -3.089198366805149,
          -3.0333848384671733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.425493462722258,
          -4.402862957968563,
          -7,
          -3.4044167476979577,
          -3.8483011062859602,
          -7,
          -7,
          -3.8615543230335403,
          -7,
          -4.527853219439823,
          -4.29886398819428,
          -7,
          -4.3877011963908155,
          -4.3290824690943,
          -7,
          -7,
          -7,
          -4.69194038611791,
          -7,
          -3.774541295270132,
          -2.8562151648112137,
          -7,
          -4.372819981678968,
          -4.230653247179221,
          -7,
          -3.6721973575474354,
          -7,
          -4.391164551697127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8753796292918614,
          -3.752278985460119,
          -3.7861122837198264,
          -3.4554539687786283,
          -4.208342804842957,
          -4.072213122603382,
          -3.67015304519218,
          -2.749384916179469,
          -3.1054723361070975,
          -3.5935075893317654,
          -2.9787046199000207,
          -3.4584867637982066,
          -3.6798819421128623,
          -7,
          -3.6279381446854235,
          -2.824917010852793,
          -7,
          -2.7894756959671048,
          -2.6160551949765862,
          -7,
          -3.0513730604650204,
          -4.101643985490313,
          -7,
          -7,
          -3.743535894777588,
          -3.1167357534143045,
          -4.6286553858870985,
          -7,
          -3.5149460053080044,
          -7,
          -3.8842004205035816,
          -7,
          -4.563102904899838,
          -3.2301294697405507,
          -7,
          -7,
          -3.752969865029084,
          -4.1572451604751945,
          -4.095538954876556,
          -7,
          -3.109554442867644,
          -3.303574009998992,
          -3.952996819452678,
          -3.0782822381018162,
          -3.4367985102318035,
          -2.569242196573409,
          -4.185730978545133,
          -3.7231271587956916,
          -4.028501536907509,
          -7,
          -7,
          -3.056595854893766,
          -3.6315655167545393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2762220844992402,
          -3.5958267770732233,
          -2.573413164820461,
          -7,
          -7,
          -3.595845133878683,
          -3.612889769287485,
          -7,
          -7,
          -3.5592481040882538,
          -7,
          -3.6945444541986068,
          -2.983099823925019,
          -7,
          -7,
          -7,
          -3.575187844927661,
          -3.4972061807039547,
          -7,
          -7,
          -7,
          -3.4174716932032934,
          -7,
          -7,
          -2.189806023929912,
          -7,
          -3.7760834366397793,
          -7,
          -7,
          -7,
          -3.757765146438979,
          -3.845194539177392,
          -7,
          -7,
          -2.596385605735793,
          -7,
          -2.7562556487542333,
          -7,
          -2.914210891401378,
          -2.494513663474121,
          -7,
          -7,
          -3.6104472214421213,
          -2.7326617601288525,
          -3.3334472744967503,
          -3.4092566520389096,
          -3.0537185238968583,
          -2.996949248495381,
          -7,
          -3.071513805095089,
          -2.710924711347061,
          -7,
          -7,
          -3.108734108602365,
          -2.5455721726119234,
          -7,
          -3.893734028446905,
          -7,
          -7,
          -3.979548374704095,
          -3.5792117802314993,
          -2.989867387070781,
          -2.7023347819567896,
          -3.446226401778163,
          -7,
          -7,
          -7,
          -3.4095950193968156,
          -3.403120521175818,
          -7,
          -2.978864984347657,
          -2.6978829086948046,
          -7,
          -7,
          -2.7489075617740846,
          -2.7161015891915814,
          -2.9853516150839536,
          -7,
          -3.2603496926930307,
          -7,
          -3.005854359779236,
          -2.641332438840177,
          -3.24930320456868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1481397365012196,
          -3.653309012938479,
          -3.470839085190034,
          -7,
          -7,
          -3.612112476645736,
          -3.3181329278612206,
          -2.49998148630061,
          -7,
          -3.2361592305796636,
          -7,
          -2.6048737705526355,
          -3.1966596938570437,
          -7,
          -7,
          -2.582315933132205,
          -2.689012715585447,
          -3.0608784167694707,
          -3.13956426617585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7849737099544005,
          -7,
          -7,
          -7,
          -3.089551882886454,
          -7,
          -7,
          -3.312811826212088,
          -3.519827993775719,
          -3.6838572054003462,
          -7,
          -7,
          -7,
          -7,
          -3.7061201097027037,
          -7,
          -7,
          -3.61751143775027,
          -3.1340176456759834,
          -3.4295908022233017,
          -7,
          -7,
          -7,
          -3.3492775274679554,
          -3.3600250891893975,
          -3.5930644316587173,
          -7,
          -7,
          -3.518382315545344,
          -7,
          -7,
          -3.585686278452497,
          -7,
          -3.55108386518578,
          -7,
          -7,
          -2.9861444647105206,
          -3.356599435724971,
          -2.367355921026019,
          -1.4673614174305063,
          -3.3866347071139713,
          -3.317070422532652,
          -7,
          -3.574031267727719,
          -1.3299849899596918,
          -3.3336263742392354,
          -3.1686938635769795,
          -7,
          -7,
          -3.568788212315347,
          -7,
          -2.170968230081282,
          -3.557426992378806,
          -7,
          -3.889917683436206,
          -2.899578750566868,
          -3.331427296520743,
          -3.5883837683787276,
          -7,
          -3.0167827124868407,
          -7,
          -3.596377143997599,
          -3.1844756492424127,
          -3.6326597132939136,
          -7,
          -7,
          -3.5979144712025284,
          -3.1073795828044486,
          -3.2793246654426103,
          -3.091103944090286,
          -7,
          -3.0330214446829107,
          -7,
          -3.125112829214528,
          -7,
          -3.0003255987771427,
          -3.1197506238845842,
          -2.2078237957767666,
          -2.874191804679071,
          -3.2879136470760337,
          -7,
          -3.322839272686321,
          -7,
          -3.6881527555915663,
          -1.9934652019872776,
          -3.7712199019495336,
          -2.9323176278852854,
          -2.928209579690314,
          -7,
          -3.318793504793297,
          -2.688864568054792,
          -7,
          -3.331326050575092,
          -3.6337713460825554,
          -7,
          -7,
          -3.532563298334475,
          -3.717989312300647,
          -7,
          -7,
          -3.4506339505970054,
          -7,
          -3.453573132944873,
          -2.4692917058468566,
          -7,
          -2.9853516150839536,
          -3.242885302889625,
          -7,
          -3.032054375479669,
          -7,
          -7,
          -2.879996481067212,
          -7,
          -3.589726256254237,
          -7,
          -3.4696011321138256,
          -3.314393957221963,
          -2.890909813992527,
          -1.1191864077192086,
          -3.393399695293102,
          -7,
          -1.6789184877903949,
          -2.039514942039481,
          -2.0847387221037597,
          -3.083263668252353,
          -7,
          -2.046395689767224,
          -2.1802334314815814,
          -1.321532255663362,
          -7,
          -3.274388795550379,
          -1.6745724770635728,
          -7,
          -7,
          -7,
          -2.9209229721223515,
          -7,
          -3.7413092088995694,
          -3.1860140602380915,
          -3.022958321808785,
          -2.256525975063038,
          -3.3062105081677613,
          -7,
          -3.6464037262230695,
          -2.7041505168397992,
          -2.728337864761174,
          -7,
          -7,
          -1.8926004786730173,
          -1.812643314985218,
          -1.229402270516142,
          -7,
          -3.024702929610656,
          -1.9656423629243558,
          -3.606488850442648,
          -2.2650363139745027,
          -3.6112983622964285,
          -3.4508903227897534,
          -2.94733567594874,
          -3.072102778885176,
          -3.855094951158622,
          -3.565611724902059,
          -7,
          -2.63663926462289,
          -3.00610933218244,
          -7,
          -7,
          -3.9453372593122817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.060508975605298,
          -3.3261309567107946,
          -1.3273316108164133,
          -3.5993917577937564,
          -7,
          -3.4268364538035083,
          -7,
          -7,
          -7,
          -3.8603080541945616,
          -2.711984727554708,
          -7,
          -7,
          -3.316913439164992,
          -2.357865576008696,
          -7,
          -7,
          -3.400624321661767,
          -3.061640934061686,
          -7,
          -2.6225907694500417,
          -7,
          -3.1470576710283598,
          -3.1377496076933964,
          -7,
          -3.0271048658793513,
          -3.6829569263012085,
          -3.300704152596124,
          -3.0430343791213286,
          -3.591954555046735,
          -7,
          -7,
          -7,
          -3.586812269443376,
          -3.5795549604009986,
          -7,
          -3.7594411971336976,
          -7,
          -3.869055618701908,
          -7,
          -3.320613576530592,
          -2.8669082687032,
          -7,
          -3.419184452746418,
          -3.365737507725631,
          -7,
          -3.7386220279179425,
          -3.675778341674085,
          -3.219060332448861,
          -3.6505988981726567,
          -3.073535065058784,
          -2.4030613247630086,
          -7,
          -3.28668096935493,
          -7,
          -3.0805904144535012,
          -2.3050932960616484,
          -3.120348760073331,
          -7,
          -3.573683693093798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.704856768911651,
          -2.824044436768545,
          -3.5418287667813124,
          -2.8971556298923367,
          -7,
          -3.0557180220312725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6057358938767465,
          -3.273695587930092,
          -2.9953217377222296,
          -3.0449054380916873,
          -4.22417620426946,
          -7,
          -7,
          -2.824776462475546,
          -7,
          -3.552668216112193,
          -7,
          -3.1176855012016143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.054617841727174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0159881053841304,
          -3.598133645813238,
          -3.697665162647674,
          -3.1165128680770238,
          -2.551224026542675,
          -7,
          -7,
          -7,
          -2.9439339740583517,
          -3.0135955235372895,
          -3.0660695600482564,
          -3.3196264841556395,
          -3.590252528893788,
          -7,
          -7,
          -7,
          -3.2080716725856444,
          -1.2320285860833922,
          -2.623676956096569,
          -2.639066881040868,
          -3.5237464668115646,
          -2.8919089670894906,
          -3.013153343473396,
          -7,
          -2.958181497564948,
          -2.8727388274726686,
          -2.8592884423200204,
          -7,
          -3.5833121519830775,
          -7,
          -7,
          -7,
          -7,
          -2.8779469516291885,
          -2.807722896083161,
          -7,
          -3.7663384752512874,
          -7,
          -3.664479006216105,
          -1.1504140212562552,
          -3.269396182694991,
          -3.3962381043562058,
          -7,
          -7,
          -3.8436687229791437,
          -3.397853141088609,
          -3.607025878434786,
          -3.0210514059168814,
          -3.0096869125872336,
          -3.002943206876325,
          -3.809896246602439,
          -2.8872152874569856,
          -3.800891726851627,
          -2.5729960002961136,
          -7,
          -7,
          -3.543322900646912,
          -1.6142870556872067,
          -2.394693156774558,
          -3.591954555046735,
          -7,
          -3.754348335711019,
          -7,
          -3.11402686244687,
          -3.592620821321982,
          -1.2778667424010177,
          -3.1389339402569236,
          -3.1638568026386698,
          -2.745975132893879,
          -7,
          -3.9722491359625955,
          -2.0264496151873232,
          -3.9905256674594383,
          -7,
          -2.644673001133217,
          -3.4290332425510086,
          -2.3409758350134933,
          -7,
          -7,
          -7,
          -2.735465823404231,
          -2.563053700270298,
          -3.0770043267933502,
          -3.4158077276355434,
          -7,
          -7,
          -2.6672193984439363,
          -7,
          -7,
          -7,
          -3.3989232955264326,
          -7,
          -2.5282175541775285,
          -7,
          -7,
          -4.327123840812123,
          -7,
          -4.337359412001355,
          -7,
          -4.26085019218336,
          -3.9494875899465036,
          -7,
          -3.2809713502808844,
          -3.2952206256871532,
          -3.7985470652527273,
          -7,
          -7,
          -3.789463192347201,
          -3.8970219560603634,
          -4.138028874733356,
          -7,
          -4.400192488592576,
          -4.3362745688528355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6153771576934948,
          -2.147968623792859,
          -7,
          -3.572630359747045,
          -3.7883805153195635,
          -7,
          -3.2907369876802903,
          -7,
          -3.500227895915016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.895519229340754,
          -3.5653755027140734,
          -3.283399563240798,
          -2.785024602845055,
          -3.852880642366062,
          -3.2846526458315903,
          -3.187238619831479,
          -2.7344569203867417,
          -2.7425287512507515,
          -2.612213113865918,
          -2.867310817312023,
          -2.7297383385189824,
          -3.491921712586151,
          -3.885304667588968,
          -2.94272439249383,
          -2.134394814640429,
          -3.6726519228400023,
          -2.51736804348248,
          -2.1625010435296215,
          -7,
          -2.688794375266033,
          -4.125464999685052,
          -7,
          -7,
          -2.876868140105446,
          -2.9460181511423937,
          -5.7090663377095066,
          -7,
          -7,
          -7,
          -3.2372783666008687,
          -7,
          -4.507518555576424,
          -2.5115636955824665,
          -3.991181757667873,
          -3.5563025007672873,
          -3.176977039695874,
          -4.479330527707678,
          -3.3890706245373754,
          -3.5504729571065634,
          -3.0581579690126945,
          -3.374381698050882,
          -2.8885026908124822,
          -3.1860826583241453,
          -2.502532161581729,
          -2.262852075825894,
          -3.4932116717848376,
          -2.6207214890977757,
          -3.9917363704435638,
          -7,
          -3.5440680443502757,
          -2.72987442952283,
          -4.0576090562294835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.156162297781227,
          -3.428620672671939,
          -2.513170019187924,
          -7,
          -7,
          -2.921443688161596,
          -3.7424108805804925,
          -3.230363757247811,
          -3.5769169559652068,
          -3.1596674343147124,
          -7,
          -3.370645242623348,
          -2.9024863809435577,
          -3.608632989490037,
          -7,
          -7,
          -7,
          -2.5228976272386414,
          -7,
          -7,
          -3.4809167613786745,
          -3.6063813651106047,
          -7,
          -7,
          -2.212733800963175,
          -7,
          -3.426901463081663,
          -7,
          -7,
          -4.629185257633928,
          -3.4921605252594574,
          -3.729927106517317,
          -7,
          -7,
          -2.358382804215933,
          -7,
          -2.7770641547424293,
          -7,
          -3.1958996524092336,
          -2.298957986061134,
          -7,
          -7,
          -3.7405995128111567,
          -2.970253869594787,
          -3.5961570809161723,
          -3.601081727784023,
          -7,
          -3.343014497150768,
          -7,
          -2.916980047320382,
          -2.5856316106761206,
          -7,
          -7,
          -2.7747823052705765,
          -2.8027737252919755,
          -3.708760723690317,
          -3.4542348957482654,
          -7,
          -7,
          -4.040008636013542,
          -3.4164740791002206,
          -2.8794415101012185,
          -2.6956275842630815,
          -3.846027675364379,
          -3.6725596277632757,
          -7,
          -7,
          -7,
          -3.9551583869257936,
          -7,
          -2.873320601815399,
          -2.827415432854252,
          -7,
          -7,
          -2.688232424165109,
          -2.605686349075591,
          -3.08074670684836,
          -3.430961453354948,
          -3.252983654280911,
          -3.4769764657595275,
          -3.9310508467773912,
          -2.7489628612561616,
          -2.994976673649691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9275756546911103,
          -3.47158505418519,
          -3.244689360492884,
          -7,
          -3.767947020998737,
          -2.9485949073321223,
          -3.407447560198671,
          -2.8138033046630917,
          -7,
          -2.783367523477168,
          -7,
          -2.5713593927538394,
          -3.0419563380367,
          -7,
          -7,
          -2.5724247511661993,
          -2.6383894076653363,
          -3.1667571956139016,
          -3.6216954623292787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.007235537545952,
          -7,
          -7,
          -7,
          -3.2881373948820665,
          -7,
          -7,
          -3.26583941549449,
          -7,
          -3.298361762129775,
          -3.948119424380536,
          -7,
          -7,
          -7,
          -3.8134475442648212,
          -3.601408060534684,
          -7,
          -3.1405080430381793,
          -2.501585871330296,
          -2.612359947967774,
          -3.8093576702111056,
          -7,
          -3.751279103983342,
          -3.5634810853944106,
          -3.5700757053216043,
          -3.1252372114756253,
          -7,
          -7,
          -2.895238327804661,
          -7,
          -3.5439439424829065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.505491850629844,
          -3.4074758852912557,
          -7,
          -7,
          -2.830839617318953,
          -3.732956369575625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.132619850835918,
          -7,
          -7,
          -7,
          -4.457857451703719,
          -3.040602340114073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9966575799270623,
          -7,
          -7,
          -7,
          -4.027136250754157,
          -7,
          -7,
          -3.3184807251745174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1298938896605275,
          -3.131779009369187,
          -3.9005855866499615,
          -7,
          -7,
          -2.989004615698537,
          -3.429752280002408,
          -7,
          -7,
          -7,
          -7,
          -2.9642596301968487,
          -7,
          -3.9724342769573653,
          -7,
          -7,
          -3.3896975482063856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.648060618726541,
          -7,
          -7,
          -7,
          -7,
          -3.872272846224205,
          -3.2986347831244354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.932220013877119,
          -7,
          -7,
          -2.7724012161291096,
          -2.2020469740330593,
          -1.8463027411526274,
          -2.166331421766525,
          -7,
          -3.1104213464739563,
          -2.6304278750250236,
          -2.8911656301824684,
          -3.274388795550379,
          -7,
          -3.846522668416287,
          -7,
          -7,
          -7,
          -3.6690843266211157,
          -7,
          -7,
          -3.1504494094608804,
          -3.0203612826477078,
          -4.075820590183628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6250036010148636,
          -7,
          -4.171228996725051,
          -3.712374163192314,
          -7,
          -7,
          -7,
          -4.993639000881486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.343539879923933,
          -7,
          -7,
          -7,
          -4.366647051390854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3066394410242617,
          -3.3763031557559207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.06375856163451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.210853365314893,
          -7,
          -4.497981069706261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.618048096712093,
          -7,
          -7,
          -7,
          -3.0147724740730637,
          -4.1491613568893655,
          -7,
          -3.670802284260944,
          -3.5768018958289125,
          -7,
          -7,
          -2.887617300335736,
          -7,
          -7,
          -3.1903316981702914,
          -7,
          -7,
          -7,
          -7,
          -2.800176819315237,
          -7,
          -4.340622555361112,
          -7,
          -4.071882007306125,
          -7,
          -7,
          -7,
          -7,
          -2.8182258936139557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6337099436919384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.810568529216413,
          -3.231214647962601,
          -7,
          -7,
          -4.012541972775836,
          -7,
          -4.232029937620133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.653051634172873,
          -3.65571454961871,
          -3.407900540142635,
          -7,
          -3.17435059747938,
          -2.9708116108725178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2081725266671217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.228522262324842,
          -3.888179493918325,
          -7,
          -3.982994454658664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.138098959020332,
          -3.388041964786424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0023820749327608,
          -7,
          -3.6916118742144164,
          -7,
          -7,
          -7,
          -7,
          -4.157517208532612,
          -3.431202884556517,
          -4.972161166333603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.501989874055827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.711874687022362,
          -7,
          -7,
          -3.8904657315037134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.371677294808661,
          -4.922076385264607,
          -7,
          -7,
          -7,
          -5.387790118275218,
          -7,
          -7,
          -3.8003733548913496,
          -7,
          -7,
          -7,
          -7,
          -4.773559733815069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1686938635769795,
          -3.8493989373838775,
          -7,
          -3.3715485984422466,
          -7,
          -7,
          -7,
          -7,
          -4.679654978699333,
          -7,
          -4.435653285326419,
          -3.036162949823816,
          -7,
          -3.7868933252613157,
          -7,
          -7,
          -7,
          -4.514047206658893,
          -3.64252387306301,
          -5.706347322206261,
          -7,
          -7,
          -7,
          -4.955047620244845,
          -7,
          -4.928081626246693,
          -7,
          -7,
          -7,
          -7,
          -4.430703778718752,
          -7,
          -7,
          -3.910410939914688,
          -3.798236176367936,
          -7,
          -3.4856930402936617,
          -7,
          -4.943108524727579,
          -4.654460521899409,
          -3.068556895072363,
          -7,
          -7,
          -7,
          -4.12978653452034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.353235425636195,
          -7,
          -3.4025479509123913,
          -7,
          -7,
          -4.3404441148401185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.796546581877668,
          -3.6033609243483804,
          -7,
          -3.3098430047160705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5114822886260013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.249051528805085,
          -4.486139907384003,
          -7,
          -3.425371166438941,
          -3.6306312440205,
          -7,
          -7,
          -7,
          -7,
          -3.6460849959598156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504062882678692,
          -7,
          -7,
          -3.5282737771670436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0460422943353755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9025467793139916,
          -7,
          -7,
          -7,
          -3.317854489331469,
          -7,
          -7,
          -3.786041210242554,
          -3.515313299274702,
          -3.606596309179285,
          -7,
          -3.826139617935915,
          -7,
          -7,
          -7,
          -4.028205119905443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.528093588006807,
          -7,
          -7,
          -4.545183368215406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6332664111554247,
          -3.655906418180215,
          -7,
          -7,
          -3.2271150825891253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.496984968687506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8492350913147226,
          -7,
          -3.663920686219387,
          -7,
          -3.846120529546089,
          -2.6596281299598568,
          -4.171199716800422,
          -3.301959631014103,
          -2.739572344450092,
          -3.2946615846709246,
          -1.7901067466271179,
          -7,
          -7,
          -1.8453436816960902,
          -2.7230009671305515,
          -7,
          -3.680335513414563,
          -7,
          -3.668541215987884,
          -7,
          -2.2029729677980177,
          -3.2828074316271527,
          -7,
          -3.255923458732901,
          -2.5815114822370697,
          -3.686397907850216,
          -3.8499719123288503,
          -4.140947771342662,
          -3.5877951224616518,
          -3.692700074142474,
          -4.1532659350758685,
          -3.1319292790782756,
          -7,
          -7,
          -7,
          -4.1536929400085505,
          -3.886772643054438,
          -7,
          -2.985109335762888,
          -3.841015152493763,
          -3.195041280556656,
          -3.851166586670228,
          -2.2689179845696863,
          -4.146995757209465,
          -4.155123393710713,
          -3.288528676377525,
          -2.9901908082608895,
          -3.135572963494826,
          -7,
          -7,
          -3.7428036584691657,
          -3.3899040530754956,
          -3.481528618895993,
          -2.0228565485811445,
          -7,
          -2.8246545438441633,
          -2.930173564447874,
          -3.375511203191852,
          -3.8588679053701154,
          -3.166726055580052,
          -7,
          -7,
          -7,
          -7,
          -3.6810904144944385,
          -3.6308599203655305,
          -2.6490730178474116,
          -7,
          -4.14367043347016,
          -3.4238190919654046,
          -3.84060787900929,
          -2.432458028047709,
          -3.293288876794244,
          -7,
          -2.8252367353400705,
          -2.387479259110591,
          -7,
          -3.592981289228694,
          -7,
          -4.149680882482938,
          -2.6026442253688558,
          -3.587177588838869,
          -7,
          -7,
          -4.2090590341287974,
          -4.158694118177861,
          -3.5188559765638336,
          -2.2273412552958414,
          -7,
          -7,
          -1.6064136756368392,
          -2.1415542841654776,
          -1.9157185738938223,
          -4.14370162942477,
          -4.140130778371135,
          -1.8982652089561929,
          -3.139650148872528,
          -2.2399664702073565,
          -1.6745724770635728,
          -3.846522668416287,
          -7,
          -3.859258417467307,
          -7,
          -4.141104709327929,
          -3.153529050262543,
          -4.142827294538336,
          -3.596322138680332,
          -4.172953027546355,
          -3.1006166740456034,
          -2.4381847575910185,
          -3.8552768038300917,
          -7,
          -3.8666417205660397,
          -2.601531473875523,
          -3.2968036991071967,
          -7,
          -7,
          -2.912473780921181,
          -2.904921530689267,
          -2.137817459835467,
          -7,
          -2.592438933366342,
          -2.156522815290907,
          -7,
          -7,
          -7,
          -3.726936681435421,
          -3.5657002751076674,
          -3.430961453354948,
          -3.2870797934494482,
          -7,
          -3.556151677886138,
          -2.5248352370562896,
          -3.5151052041667894,
          -7,
          -7,
          -3.6107074692804284,
          -7,
          -7,
          -7,
          -7,
          -4.141167468646232,
          -2.8623482554633135,
          -3.1266415508735212,
          -2.04155249913681,
          -3.146438135285775,
          -3.204150140947795,
          -2.752069221992837,
          -7,
          -3.6712037083191547,
          -3.470675044798936,
          -3.7920237843502926,
          -2.980306438226822,
          -7,
          -4.150019201915149,
          -7,
          -2.143069611194018,
          -7,
          -7,
          -3.1053682352730725,
          -2.579900799284342,
          -7,
          -3.571446778880142,
          -3.1366341031122076,
          -3.502263204344856,
          -3.498999363580153,
          -3.7061201097027037,
          -3.1444288996058076,
          -4.17906322239498,
          -3.6775765388767256,
          -2.4378699755416258,
          -4.152043602487651,
          -7,
          -7,
          -7,
          -7,
          -4.148664339982236,
          -3.8412029961307326,
          -3.5597071786574506,
          -7,
          -3.2100642372915438,
          -4.142232991794714,
          -2.322336782758957,
          -2.8394689385624297,
          -7,
          -3.781994589465404,
          -3.4584363903733517,
          -7,
          -7,
          -3.5745521086639047,
          -3.1829279692369927,
          -3.4697925712863382,
          -3.22219604630172,
          -2.6774096358239126,
          -7,
          -2.581676161743162,
          -7,
          -2.0082633788160718,
          -1.9092378965528287,
          -1.7542390929782323,
          -7,
          -3.226170123398999,
          -3.8397921844453293,
          -3.4362762623407903,
          -7,
          -7,
          -7,
          -7,
          -2.9752939153562066,
          -3.290563237915255,
          -7,
          -4.199206479161658,
          -7,
          -3.2327844143207414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4576548542184598,
          -3.225890536974668,
          -2.673434364072537,
          -7,
          -3.373187949912719,
          -3.2518814545525276,
          -4.168173262170234,
          -7,
          -7,
          -4.191311257590993,
          -3.4796616710572343,
          -4.17805561153123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.144636467588492,
          -4.180355296448789,
          -3.512783346395494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.856275634663985,
          -7,
          -3.8584770418133405,
          -3.3569814009931314,
          -4.183810595098135,
          -2.288885772881598,
          -3.396395520169268,
          -4.18130038026682,
          -7,
          -7,
          -2.70456025280453,
          -3.8878703775119305,
          -2.3977377503944584,
          -7,
          -3.220054418430261,
          -3.560952218446867,
          -3.671481400086431,
          -7,
          -4.064701275737697,
          -2.0303914491326585,
          -2.492721597147762,
          -3.2275595172362737,
          -2.9264710693074494,
          -2.6549054442039144,
          -3.0118422079264753,
          -4.144978738020031,
          -3.8701404392376397,
          -3.5120971148810134,
          -3.3609718837259357,
          -7,
          -3.6724365371419165,
          -3.326277326730684,
          -7,
          -4.178775572045411,
          -7,
          -3.1506448175550226,
          -3.7378483616270444,
          -4.1694098981407,
          -3.2527721492435755,
          -4.1760333492640225,
          -3.2378709255202747,
          -1.5006023505691855,
          -3.1915441607348294,
          -2.3973248795188713,
          -4.144138137663588,
          -4.161457846971751,
          -3.9359856330811804,
          -4.184265443062108,
          -4.350751817816416,
          -3.742672771972318,
          -4.290101420759143,
          -3.708194203283994,
          -3.9226476204660505,
          -3.894675979083117,
          -2.893350008215764,
          -3.03882923882737,
          -3.8399491678129896,
          -7,
          -7,
          -2.802203410722948,
          -3.54476236021663,
          -3.248524985024069,
          -7,
          -3.6009184694091028,
          -4.14903426716125,
          -4.1900794539415145,
          -3.5499836111596887,
          -1.4925694660571351,
          -4.158935141829918,
          -3.2627179920118423,
          -3.3989067880771966,
          -3.255423275624488,
          -2.77745745648593,
          -2.3455535206185987,
          -3.0864008375291396,
          -3.858115932190066,
          -3.2916352070879005,
          -3.17288362158977,
          -3.0307346169761686,
          -7,
          -3.8626381581186875,
          -7,
          -3.9250541203118425,
          -3.2475939016334037,
          -4.270771972426836,
          -3.5879914264312434,
          -7,
          -7,
          -3.3555062516302954,
          -4.149373090491385,
          -7,
          -7,
          -4.250541978010273,
          -4.151277893904123,
          -2.9221677949187748,
          -7,
          -7,
          -4.421283022642609,
          -4.383366482755039,
          -4.505543379461151,
          -7,
          -3.6665179805548807,
          -3.966000857628784,
          -4.019780730403647,
          -2.9184630502343385,
          -3.406447715743738,
          -7,
          -7,
          -4.224299926079827,
          -3.817611638957548,
          -3.9732933775729475,
          -3.8087003759166254,
          -4.540604732747191,
          -4.083058064691019,
          -4.288003160031862,
          -4.081509327758223,
          -7,
          -7,
          -4.297135674099161,
          -4.206488559912443,
          -3.4996229415662405,
          -1.9931308791052327,
          -7,
          -4.07109367343858,
          -3.6128595111893813,
          -7,
          -3.029103150471092,
          -3.9665484487767353,
          -3.0681501687539985,
          -4.5370000873213385,
          -4.461903519335254,
          -7,
          -4.406369835469268,
          -7,
          -3.921467973002443,
          -2.924978217261524,
          -2.6932471538294744,
          -4.163250849512631,
          -3.3989232955264326,
          -3.2151822754505077,
          -3.4202652587643403,
          -2.853892809956602,
          -2.848817254910999,
          -2.4922853379102463,
          -2.370579019237581,
          -2.9333560385709307,
          -3.7400994009248563,
          -4.135683786580058,
          -2.824635644686762,
          -2.031300237856936,
          -4.175801632848279,
          -2.9100691775662204,
          -2.235550402595322,
          -7,
          -3.0362295440862943,
          -3.965895171299572,
          -7,
          -7,
          -2.563351832831913,
          -2.622428887614762,
          -3.672201070733908,
          -7,
          -3.659226673770496,
          -4.151614972016013,
          -3.391955332135257,
          -7,
          -3.340892514452765,
          -3.256769272878171,
          -4.174379665748987,
          -7,
          -3.0729847446279304,
          -3.703538554624196,
          -3.2560955895173525,
          -7,
          -2.9674602192761386,
          -3.5174598265402324,
          -3.447294314502097,
          -2.7917400551248437,
          -3.381205361238583,
          -2.49865185631621,
          -3.673343511417442,
          -3.3268732749874856,
          -3.616818104596417,
          -7,
          -3.5385234653327093,
          -2.9046994005024,
          -3.6168560768455857,
          -3.845098040014257,
          -7,
          -4.13950127473591,
          -7,
          -7,
          -2.2165201664611134,
          -3.2398831523208846,
          -2.102005842956844,
          -7,
          -4.184237029016371,
          -3.226022671672174,
          -3.3535040694754548,
          -3.3417170844331974,
          -7,
          -3.277425832275861,
          -7,
          -3.257518584268037,
          -2.861434836289783,
          -4.156700552582017,
          -7,
          -7,
          -7,
          -3.213276213896695,
          -7,
          -7,
          -3.8098513907377116,
          -4.156064312339866,
          -4.1596574112477045,
          -7,
          -2.4963812798964615,
          -7,
          -3.227298926507505,
          -7,
          -3.8451910931478994,
          -4.422097163131711,
          -3.3461509887569085,
          -3.191759484998457,
          -7,
          -7,
          -2.1550562214147613,
          -7,
          -2.6659560294539566,
          -7,
          -3.2725377773752373,
          -1.849486707095343,
          -7,
          -7,
          -7,
          -3.4757583289758744,
          -3.958468318366944,
          -7,
          -4.179206976155488,
          -3.2635768963716663,
          -7,
          -2.6763506101478534,
          -2.233968902971278,
          -7,
          -7,
          -2.8452789583596783,
          -2.840053791875626,
          -3.7102302275037986,
          -3.0563330349511615,
          -7,
          -7,
          -4.327338496518052,
          -3.1484904774886924,
          -2.440656947429615,
          -3.0642975059528488,
          -3.2375688701981984,
          -7,
          -7,
          -7,
          -7,
          -3.3822197260983238,
          -7,
          -2.986071597919377,
          -2.514126978289329,
          -7,
          -4.140539466972342,
          -2.4501151701588846,
          -2.2278945392681075,
          -2.827319557012113,
          -7,
          -2.7251983664911528,
          -2.9097164532343447,
          -3.9734511440249345,
          -3.8687619582120503,
          -3.0018598590524785,
          -4.254427221540668,
          -4.172281761455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.015180059737978,
          -3.732554579851432,
          -2.991964044403458,
          -4.190051417759206,
          -3.7460422835519394,
          -3.3637730982326692,
          -7,
          -2.9771854460106875,
          -7,
          -3.2770932548562834,
          -7,
          -2.7297536636567603,
          -2.7353569124617954,
          -7,
          -7,
          -2.6225306165918294,
          -2.3104389933890426,
          -2.9184406291931984,
          -4.160438516641545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3401134757058357,
          -7,
          -3.40840957846843,
          -4.153326961490906,
          -7,
          -4.146995757209465,
          -3.549095263822955,
          -7,
          -7,
          -3.3538063594424754,
          -3.8755531851015124,
          -3.418002818524436,
          -3.981274832706589,
          -7,
          -7,
          -7,
          -7,
          -4.154667377622576,
          -7,
          -3.350674348233281,
          -3.8582965245338854,
          -3.681060243631812,
          -7,
          -7,
          -7,
          -7,
          -3.845035993513415,
          -3.8927900303521317,
          -7,
          -7,
          -3.574089169798587,
          -7,
          -7,
          -7,
          -7,
          -2.8926510338773004,
          -7,
          -7,
          -3.0155693064298794,
          -2.946943270697825,
          -7,
          -7,
          -5.205615719952685,
          -3.7428036584691657,
          -7,
          -7,
          -7,
          -3.6190150252837587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.220195287012721,
          -4.125094201713969,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.867962195629719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.909020854211156,
          -7,
          -7,
          -4.665330785346678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.643822656189299,
          -7,
          -3.3224260524059526,
          -3.609103282832011,
          -7,
          -3.922829219666649,
          -3.3400473176613934,
          -7,
          -3.1439511164239637,
          -3.4924810101288766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.606703741333674,
          -3.853865449855675,
          -7,
          -7,
          -3.458033192496506,
          -7,
          -3.4587133719337437,
          -7,
          -7,
          -7,
          -4.223418056905294,
          -7,
          -7,
          -7,
          -7,
          -3.8959747323590648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.231247798947839,
          -7,
          -3.7327956982893293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.859258417467307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.384443024058778,
          -7,
          -7,
          -7,
          -7,
          -4.090011024007147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8822113687583846,
          -4.456062224454952,
          -7,
          -7,
          -7,
          -4.3933909180321775,
          -7,
          -7,
          -3.340939602038078,
          -7,
          -7,
          -3.704986543890056,
          -3.521007252408604,
          -7,
          -7,
          -4.3743816980508825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.132579847659737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.36968577944444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.005395031886706,
          -7,
          -7,
          -3.341038631677523,
          -7,
          -3.3102683666324477,
          -3.0874264570362855,
          -3.3590900147177467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3381575642717727,
          -7,
          -7,
          -7,
          -7,
          -3.741205423348115,
          -7,
          -3.707910665713106,
          -3.6224212739756703,
          -3.2664668954402414,
          -7,
          -7,
          -2.6410773133253747,
          -7,
          -2.992553517832136,
          -3.664265800147675,
          -7,
          -7,
          -7,
          -7,
          -2.6648299411430907,
          -4.047761471896603,
          -7,
          -3.3084932702271614,
          -7,
          -7,
          -7,
          -3.295567099962479,
          -7,
          -7,
          -3.7687860469080143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.142577160920535,
          -4.935101499694514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3935752032695876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3528402666795025,
          -7,
          -7,
          -7,
          -3.003029470553618,
          -7,
          -7,
          -7,
          -2.8382192219076257,
          -3.712144414214886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5839289135634917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.705564390520156,
          -7,
          -3.675319983339292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.644290845128294,
          -7,
          -3.1848333339333537,
          -7,
          -4.831959310304302,
          -3.609914410085998,
          -2.975431808509263,
          -3.4480434434366742,
          -7,
          -7,
          -3.623352681537992,
          -7,
          -7,
          -7,
          -3.8090881313463463,
          -7,
          -3.264463634204881,
          -7,
          -4.749430965686463,
          -3.8894697839695076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0538464268522527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1245042248342823,
          -7,
          -7,
          -7,
          -7,
          -3.536594512043907,
          -7,
          -4.4441072798376,
          -7,
          -7,
          -3.9060033293720053,
          -3.7989267385772014,
          -7,
          -2.879955585122749,
          -7,
          -7,
          -3.1075491297446862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9055260484350485,
          -7,
          -7,
          -4.598823323746008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.882177191180505,
          -3.6902403935311185,
          -7,
          -7,
          -7,
          -7,
          -4.584918933640037,
          -4.335698551498222,
          -7,
          -4.6232027563533284,
          -7,
          -4.319043566399113,
          -7,
          -7,
          -7,
          -4.536065794512006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.680126929448146,
          -4.32990612340021,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7721749608246142,
          -7,
          -4.673223714939716,
          -4.76624549251132,
          -7,
          -7,
          -4.335076597314406,
          -7,
          -5.236290318561915,
          -7,
          -3.5358002908248976,
          -7,
          -4.00991336809817,
          -3.683272236315922,
          -7,
          -7,
          -3.841922311679451,
          -7,
          -7,
          -4.378851946448881,
          -7,
          -7,
          -4.993034818671166,
          -4.374429661918521,
          -5.10463901952532,
          -7,
          -7,
          -7,
          -4.4799158561965475,
          -7,
          -4.5608047076145,
          -7,
          -7,
          -7,
          -4.3284407673684075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9000009651534695,
          -4.190779770928018,
          -7,
          -7,
          -4.65646714762775,
          -7,
          -4.306742711557243,
          -7,
          -7,
          -7,
          -4.302395873152567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.473676704353028,
          -7,
          -7,
          -7,
          -7,
          -3.746478509930031,
          -7,
          -3.36679638328673,
          -7,
          -7,
          -7,
          -4.021216872447421,
          -7,
          -7,
          -7,
          -4.136625455760932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.59990489536868,
          -4.4935695729787,
          -4.790137323895,
          -7,
          -7,
          -3.9525018478630236,
          -7,
          -7,
          -7,
          -7,
          -3.957343853304138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.306530298301876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.633741066536528,
          -3.649334858712142,
          -7,
          -4.011210849480231,
          -7,
          -3.7601207852645677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0731560301682705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6942541120252788,
          -7,
          -7,
          -7,
          -3.2016701796465816,
          -4.099542528695332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3027637084729817,
          -3.3647385550553985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6834973176798114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.025551622782544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.504968079417868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.871864702088195,
          -7,
          -7,
          -4.109140808689869,
          -7,
          -2.6893088591236203,
          -7,
          -2.958085848521085,
          -7,
          -7,
          -4.5633089947461265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.967547976218862,
          -7,
          -7,
          -7,
          -4.5384700487028695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.951337518795918,
          -7,
          -1.5738167483447931,
          -7,
          -4.429919077322681,
          -7,
          -3.5887757562041043,
          -3.4738517701548153,
          -7,
          -7,
          -3.397418542351348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145569297792989,
          -2.5224442335063197,
          -7,
          -7,
          -7,
          -7,
          -3.002274081774949,
          -7,
          -7,
          -5.124566169329008,
          -7,
          -7,
          -7,
          -7,
          -3.8608767964032977,
          -7,
          -2.397070549959409,
          -7,
          -3.4000196350651586,
          -7,
          -2.851869600729766,
          -7,
          -2.5902286212401577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8809088218572945,
          -7,
          -7,
          -7,
          -3.125047296659335,
          -3.3730224027881572,
          -7,
          -7,
          -3.018284308426531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.864451747158183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0211892990699383,
          -3.402089350572097,
          -3.5770319856260313,
          -7,
          -7,
          -4.293892667053009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.04766419460156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.061339366837068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1992064791616577,
          -3.560683591907453,
          -7,
          -7,
          -4.247786135914882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.628281351530588,
          -7,
          -7,
          -7,
          -7,
          -3.388828768245126,
          -7,
          -7,
          -3.076397685429307,
          -7,
          -2.8424011943457916,
          -3.131297796597623,
          -7,
          -7,
          -7,
          -3.6026025204202563,
          -7,
          -7,
          -7,
          -3.9380190974762104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.13481437032046,
          -7,
          -2.783903579272735,
          -7,
          -7,
          -7,
          -3.0308020487722676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8435442119456353,
          -7,
          -2.075546961392531,
          -7,
          -1.271841606536499,
          -7,
          -2.144574207609616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.496237545166735,
          -7,
          -7,
          -7,
          -4.309523709653114,
          -7,
          -4.530622257106078,
          -7,
          -4.7087352461451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6924062348336304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.414137362184477,
          -7,
          -7,
          -7,
          -3.071513805095089,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -2.833890494261626,
          -7,
          -7,
          -7,
          -5.131037719826043,
          -3.8771985152717896,
          -7,
          -7,
          -7,
          -7,
          -3.555094448578319,
          -7,
          -3.6411269328035094,
          -3.46553155697355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6742179455767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.294833494244287,
          -7,
          -7,
          -1.9956351945975501,
          -7,
          -7,
          -3.198519630241168,
          -7,
          -3.697490887171057,
          -2.5603849229720153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1388287969367386,
          -7,
          -2.5625003464965244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.587362941142179,
          -7,
          -7,
          -7,
          -4.297826142585328,
          -7,
          -7,
          -7,
          -7,
          -4.670941280735775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.528273777167044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.667555677069314,
          -4.21986134467424,
          -3.09037563638456,
          -7,
          -7,
          -7,
          -7,
          -3.979548374704095,
          -3.4507108781469196,
          -7,
          -4.660300907670251,
          -4.37685058584761,
          -7,
          -4.432568465297358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.513190955417365,
          -5.487544187501127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4796256894432895,
          -7,
          -4.2063130519359575,
          -7,
          -4.896647450295432,
          -7,
          -7,
          -4.465010864717407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6048737705526355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7555699806288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.315329971070087,
          -7,
          -7,
          -7,
          -3.921842481405858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6538875580709775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.346734281891791,
          -3.413132050434872,
          -7,
          -3.119915410257991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.78161178249315,
          -7,
          -7,
          -3.772101569277012,
          -4.025408281131747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2496303979613295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6392872259102367,
          -4.270511140487177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.864255887753539,
          -2.646893624167745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.742568034366142,
          -7,
          -7,
          -7,
          -4.839462334554431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6414741105040997,
          -7,
          -7,
          -7,
          -3.865475467938409,
          -2.9204711793184543,
          -3.4116758127370184,
          -7,
          -7,
          -7,
          -7,
          -2.907411360774586,
          -7,
          -7,
          -7,
          -2.852479993636856,
          -7,
          -4.145320738918325,
          -7,
          -7,
          -3.3510228525841237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.124514006131383,
          -7,
          -7,
          -7,
          -7,
          -3.859918485200716,
          -7,
          -7,
          -7,
          -2.794139355767774,
          -7,
          -7,
          -7,
          -3.1894903136993675,
          -7,
          -4.928656965002814,
          -3.5017437296279943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.141104709327929,
          -7,
          -7,
          -7,
          -2.452265736402763,
          -7,
          -7,
          -7,
          -3.6008640363098396,
          -3.469711588088793,
          -7,
          -2.3242824552976926,
          -2.709693869727792,
          -7,
          -4.078801072025558,
          -7,
          -7,
          -7,
          -3.508395033133053,
          -7,
          -7,
          -3.6878261179021794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.293539330731757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.041392685158225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.538309759381733,
          -7,
          -7,
          -7,
          -3.083860800866573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.56520362402106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4307735806966204,
          -7,
          -7,
          -7,
          -7,
          -3.5331420722009406,
          -7,
          -3.6509870943834453,
          -3.074450718954591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4305587695227575,
          -7,
          -7,
          -3.5951102557780383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941173406099363,
          -7,
          -7,
          -7,
          -7,
          -2.873320601815399,
          -7,
          -7,
          -7,
          -7,
          -3.1992064791616577,
          -7,
          -3.017450729510536,
          -3.17435059747938,
          -7,
          -7,
          -3.8319763626923518,
          -7,
          -4.22936182573706,
          -7,
          -4.708599340655707,
          -7,
          -7,
          -7,
          -3.979001748474721,
          -7,
          -3.946697837245742,
          -3.690993032099869,
          -7,
          -7,
          -7,
          -7,
          -2.3571722577230334,
          -2.5059973824558917,
          -3.379668034033654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431990625786141,
          -3.876275588677879,
          -7,
          -7,
          -7,
          -7,
          -3.5531545481696254,
          -7,
          -3.94146173934733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.82822215975518,
          -3.852845818014997,
          -7,
          -7,
          -7,
          -3.7320719409998664,
          -3.585347911094591,
          -7,
          -7,
          -7,
          -7,
          -2.954724790979063,
          -7,
          -7,
          -7,
          -7,
          -3.5870371177434555,
          -7,
          -7,
          -4.3819810000434645,
          -5.574107117873171,
          -7,
          -3.1685711364498443,
          -7,
          -3.452169918535435,
          -7,
          -7,
          -7,
          -3.497620649781288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6538600257721283,
          -7,
          -7,
          -4.591910100931143,
          -7,
          -7,
          -7,
          -7,
          -4.367486376167786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.996415346163988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.323850003846802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9425041061680806,
          -7,
          -4.1106420768469505,
          -2.9642596301968487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9901789623582675,
          -4.642406572758529,
          -5.706168808104415,
          -7,
          -7,
          -7,
          -4.954039791376542,
          -7,
          -4.927724430480919,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.780554920725867,
          -7,
          -7,
          -7,
          -4.595518266671238,
          -4.48297357411599,
          -7,
          -4.641032650947389,
          -4.653453721491571,
          -7,
          -5.04591728153028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.722057771331464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.116275587580544,
          -7,
          -7,
          -7,
          -7,
          -3.1518293401318713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.83806861796557,
          -7,
          -7,
          -7,
          -3.9210098014970343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.322219294733919,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.193958978019187,
          -7,
          -7,
          -7,
          -3.5005109105263372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.17059220118295,
          -2.9326428495466836,
          -7,
          -3.114610984232173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8491121661845775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2243387908596555,
          -3.255995726722402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1696744340588068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.19566907396904,
          -7,
          -3.960470777534299,
          -7,
          -3.492294657634319,
          -3.5407464642438433,
          -3.7041076002448827,
          -7,
          -3.5055569386638217,
          -2.098553612524514,
          -4.1423894661188365,
          -7,
          -3.3672161041609696,
          -3.2728587109917084,
          -2.7731244371386063,
          -3.5227484373886053,
          -7,
          -7,
          -3.9674543681827408,
          -3.66185999172781,
          -2.4205010561979434,
          -3.9138932892309164,
          -7,
          -2.301161580116405,
          -2.471445162701238,
          -3.692979037459632,
          -3.1967747357061187,
          -7,
          -2.4983916469616974,
          -3.2247919564926817,
          -3.0749535069180194,
          -3.499279872843174,
          -3.215505378231818,
          -3.966000857628784,
          -7,
          -2.9370161074648142,
          -3.7283131918551256,
          -3.494896343954353,
          -1.459993675072905,
          -3.0068937079479006,
          -3.194870986853204,
          -3.4998702905864882,
          -3.023998126259445,
          -2.7373329866975253,
          -7,
          -3.7342796444928203,
          -7,
          -2.667519659668659,
          -7,
          -3.0386643087839875,
          -4.0750357259221905,
          -2.6770852776044296,
          -3.11544408343624,
          -1.711963179545754,
          -1.664973624661134,
          -2.116349422072715,
          -2.5803985580573445,
          -3.377397326769886,
          -3.143014800254095,
          -2.9442168511849927,
          -2.43109559836973,
          -7,
          -7,
          -3.1878496072451403,
          -3.5089335260500327,
          -2.6139826893706237,
          -2.4745478950919684,
          -2.3206654666652975,
          -3.486949715838293,
          -2.5159517231132873,
          -3.961278679085043,
          -2.8694170121245586,
          -2.9987621687240558,
          -3.062863902110119,
          -3.014138539892673,
          -3.0152832517428707,
          -3.6642187553031396,
          -1.7653164119053328,
          -7,
          -7,
          -1.8339166756306267,
          -3.1279951610475374,
          -3.0209594528185275,
          -7,
          -1.5547070012435482,
          -2.4523277249361604,
          -2.163310488963686,
          -3.3869268067955693,
          -2.2246834068778054,
          -7,
          -2.494193733751878,
          -2.7609607093960578,
          -2.919691904136397,
          -7,
          -7,
          -7,
          -1.978019806535125,
          -3.1999901215285598,
          -2.9209229721223515,
          -3.6690843266211157,
          -3.153529050262543,
          -7,
          -2.8809088218572945,
          -2.452265736402763,
          -7,
          -2.105054182122119,
          -3.002558733105052,
          -3.3084790401617297,
          -2.084559256457055,
          -1.4567597543804305,
          -3.9833104857941155,
          -3.2737880795675203,
          -2.383859134635737,
          -7,
          -2.506677432006041,
          -3.2140044606589733,
          -7,
          -3.2571583897731577,
          -2.481514288346029,
          -3.511147778494773,
          -2.142121189893748,
          -1.8714671335590565,
          -2.8106649596666315,
          -7,
          -4.193681029541281,
          -3.984932166067412,
          -3.668746395975131,
          -2.429097268342519,
          -3.105245174835122,
          -1.7640632883267116,
          -7,
          -3.9863237770507656,
          -1.9059280135255012,
          -3.2884728005997825,
          -7,
          -3.183032459428792,
          -3.359062655840945,
          -7,
          -7,
          -7,
          -3.6654871807828107,
          -3.960470777534299,
          -2.672975925825707,
          -2.5773986335852532,
          -3.156303011673324,
          -3.227629649571009,
          -7,
          -4.211307466668955,
          -3.962274604623315,
          -3.971461405024587,
          -2.2913862643725498,
          -4.302633919813779,
          -3.48826861549546,
          -7,
          -3.1281683960942717,
          -3.686725621074542,
          -2.4152248358937083,
          -3.1830799466610196,
          -7,
          -3.7244397233970745,
          -2.928011577509416,
          -7,
          -3.2302785764135864,
          -4.016029963076024,
          -3.446575997104686,
          -3.002048191086249,
          -3.244359600050387,
          -2.8475458367672832,
          -3.3173946751202754,
          -2.9387016286270686,
          -2.25795678802557,
          -2.4688548185775088,
          -7,
          -7,
          -3.9894498176666917,
          -3.0710070168021875,
          -3.369447790383294,
          -3.962179852908768,
          -1.6448110547410144,
          -3.9746037920870325,
          -3.443262987458695,
          -7,
          -3.2409858192066068,
          -1.378189702858012,
          -2.7354214555764456,
          -1.8125142805918906,
          -1.270211321237851,
          -2.626254800537626,
          -1.8614294532301892,
          -3.7122707911929065,
          -2.5153356074766453,
          -3.001214325286179,
          -3.167949956100975,
          -2.282253391565358,
          -2.1344635297156462,
          -3.3459941746780104,
          -7,
          -3.0994833242126694,
          -3.425778686860983,
          -3.5323296410790315,
          -3.9690896029549214,
          -3.312790692146442,
          -3.9600424557268417,
          -3.1168491528226485,
          -3.3802112417116064,
          -4.013847995871831,
          -3.274942566083686,
          -7,
          -2.9759829437125465,
          -3.7371926427047373,
          -7,
          -2.6287425100903885,
          -2.747356310540248,
          -2.836296589515527,
          -7,
          -3.2607866686549762,
          -2.6504462975321914,
          -3.361444508086328,
          -3.968716377466786,
          -3.1998922435263193,
          -7,
          -3.681467373533731,
          -2.031146050659409,
          -2.982479978288434,
          -2.8545019346694915,
          -4.076698354565139,
          -7,
          -3.4989534769002115,
          -3.504561472651623,
          -3.523486332343228,
          -3.961088719767896,
          -3.6654871807828107,
          -3.432086985778083,
          -3.715292858349809,
          -4.015233976246709,
          -7,
          -7,
          -3.9667047766578745,
          -3.1261778087238485,
          -7,
          -7,
          -2.8132055719057973,
          -2.6104789427735,
          -7,
          -7,
          -7,
          -3.4937832434341214,
          -2.872783607024382,
          -2.2993075019841833,
          -7,
          -3.686948920211501,
          -3.528177256557267,
          -1.8954815918354517,
          -3.1679373127005777,
          -1.4415086913407607,
          -2.259401051009384,
          -3.0602727791117927,
          -3.959136831170374,
          -2.0570403495899465,
          -3.030275802889288,
          -2.5294772052540186,
          -3.989004615698537,
          -2.992654903904743,
          -3.5161385767170743,
          -7,
          -3.672744198306599,
          -2.851117168304362,
          -3.306425027550687,
          -2.5079294331360718,
          -2.3987919689126604,
          -2.988084942758665,
          -2.1928246860085694,
          -2.730064136632307,
          -3.0112414148058138,
          -1.9966867556001715,
          -1.090018713022885,
          -2.1522496285834407,
          -7,
          -3.496006598880036,
          -3.3066823110190553,
          -7,
          -2.634141258939403,
          -3.6586790285824486,
          -2.6192539127997327,
          -2.072139306017309,
          -3.156981586378864,
          -3.580088257788128,
          -3.0573702197800987,
          -2.70387541443253,
          -2.2683173084753983,
          -7,
          -3.601889342116067,
          -7,
          -1.6950205930177513,
          -3.056558385835925,
          -2.4773693521168143,
          -1.9264679326220504,
          -2.3072377598907905,
          -3.567790710533536,
          -3.548635059814752,
          -3.7790912038454993,
          -4.040760524228698,
          -3.3802947028480497,
          -2.322001548686789,
          -7,
          -7,
          -7,
          -2.455575688084891,
          -2.44224111761806,
          -3.131206076537746,
          -7,
          -3.1476376842231093,
          -3.3700039246800597,
          -2.4984727249945853,
          -3.2777925189314416,
          -2.2391710940895515,
          -7,
          -2.9556440257243017,
          -2.1062492925699923,
          -2.944841444976771,
          -3.508324979986373,
          -2.4482437350117094,
          -3.4890886085265387,
          -7,
          -1.6657210594926508,
          -3.4732910035356044,
          -2.7015679850559273,
          -7,
          -2.4863419105902533,
          -7,
          -1.9568500102505335,
          -2.8457475186617014,
          -2.623844235885958,
          -2.669316880566112,
          -3.485674115137571,
          -7,
          -2.9009910030419435,
          -2.9305322640259663,
          -3.683947130751512,
          -3.6878409704006643,
          -2.365220479811975,
          -3.1970966908570375,
          -1.4926406772196101,
          -3.9581814975649476,
          -3.9608036249117697,
          -2.8053105152712585,
          -3.789824197473217,
          -7,
          -3.808919584566607,
          -3.934952707817858,
          -2.5427307342716947,
          -4.210131168184136,
          -2.9134027400377787,
          -2.905050221975924,
          -3.217053025228425,
          -7,
          -3.982406928863795,
          -3.279837982245049,
          -3.361575143217912,
          -3.1925953275692116,
          -4.477280466842588,
          -3.4243759871838835,
          -3.331535580012643,
          -7,
          -3.510842778118108,
          -4.094191524909532,
          -4.00508437344062,
          -3.6604860157849677,
          -3.215047503142592,
          -4.330393478740346,
          -4.176857835696882,
          -3.9556877503135057,
          -4.380319801762641,
          -7,
          -3.100306711137599,
          -3.5177047595531556,
          -3.635808418306866,
          -3.7740203453406393,
          -3.9076263048432662,
          -7,
          -4.016552844116219,
          -7,
          -3.364034788118208,
          -3.6803899101516118,
          -3.2987570408817506,
          -3.294201600694746,
          -3.1099393869325063,
          -1.9181298934192341,
          -1.5709235268536406,
          -2.973424761988879,
          -4.175772659601536,
          -4.038222638368718,
          -2.931547037066958,
          -2.2990902273367504,
          -2.7911733677996433,
          -3.4134075458060016,
          -3.046906848709895,
          -2.843040423444765,
          -7,
          -2.73561099552132,
          -3.229937685907934,
          -7,
          -3.8717771927051063,
          -3.809775125133529,
          -7,
          -7,
          -1.9244209115260107,
          -2.737265698588125,
          -3.7050004010621724,
          -3.972341716325748,
          -3.177055287158298,
          -3.6750906226358344,
          -2.688225928730787,
          -7,
          -3.656317987928804,
          -2.932727367301529,
          -3.7987714577882628,
          -7,
          -3.26749439494725,
          -4.075814511416446,
          -2.900191278044629,
          -3.8019864946643342,
          -2.999878380517545,
          -3.399125460874943,
          -2.855846711602347,
          -2.669195082125619,
          -3.20960436635488,
          -2.4012689989328777,
          -2.97365555048346,
          -3.788239097382168,
          -3.2667658843118588,
          -7,
          -4.099507993727965,
          -2.7220320878181923,
          -3.8513500913836216,
          -3.365721916747837,
          -7,
          -7,
          -7,
          -7,
          -2.2979792441593623,
          -2.0679840801684466,
          -2.1946154079057703,
          -3.6685256885568625,
          -3.3248994970523134,
          -2.7951135650233447,
          -7,
          -3.182822096391546,
          -3.9707187037201894,
          -2.897474358923155,
          -7,
          -2.8393926115935413,
          -2.3391772005636295,
          -3.9838066419784153,
          -7,
          -2.141240010315327,
          -3.730620797887283,
          -2.448212784700745,
          -7,
          -3.9814108401658883,
          -1.660352445316127,
          -7,
          -7,
          -7,
          -2.327504891195603,
          -7,
          -3.374037684237919,
          -7,
          -7,
          -4.682605310982301,
          -1.7203746208767083,
          -3.3397370674146667,
          -7,
          -7,
          -2.187495313840703,
          -7,
          -2.458562312981994,
          -7,
          -2.8350137707602987,
          -2.4153039871051005,
          -7,
          -3.9688097139128584,
          -7,
          -2.545946631353733,
          -2.8977887493909136,
          -2.4865447338028455,
          -3.2383388812371847,
          -2.76733050948733,
          -7,
          -2.2253509746632445,
          -2.0687398856757437,
          -7,
          -7,
          -2.427918673356549,
          -2.3094466032480514,
          -7,
          -3.3548956047110607,
          -7,
          -7,
          -3.7412566785720904,
          -3.2545883548258496,
          -2.0706133304677987,
          -1.9220138307296577,
          -4.099956734241182,
          -1.9990529802371073,
          -7,
          -7,
          -3.3783979009481375,
          -3.6868744999220815,
          -7,
          -3.188406132930918,
          -1.8030872037155392,
          -4.00650882777529,
          -3.18089014193745,
          -1.842195051239908,
          -1.8549582075503341,
          -3.1069044989356436,
          -4.040206627574711,
          -2.8465181435963296,
          -4.063445953123033,
          -3.3709138298239774,
          -7,
          -2.8561244442423,
          -4.122346966255079,
          -7,
          -4.00026049854739,
          -3.963079160641827,
          -7,
          -3.352651027608356,
          -7,
          -2.7863520708696945,
          -3.759554535696884,
          -2.7696337073496875,
          -2.18821497141379,
          -3.1336703790124876,
          -3.1228907572854245,
          -7,
          -2.57951684265999,
          -7,
          -2.7871269470128004,
          -7,
          -2.5697750745872114,
          -2.9185872716624233,
          -4.130719636562953,
          -7,
          -2.3623986907281687,
          -2.6734158998636306,
          -2.4320040756867116,
          -3.387033701282363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.999188559386703,
          -7,
          -3.3286649614415253,
          -3.3764400779834967,
          -7,
          -7,
          -3.2764618041732443,
          -3.9882913419074875,
          -7,
          -2.3988865280773632,
          -3.712060142461075,
          -2.8998002437923684,
          -3.3813257060905904,
          -7,
          -3.6842617229289067,
          -3.9606610072709816,
          -2.121413924158609,
          -3.378443326865433,
          -7,
          -3.0717196036338423,
          -3.032842520184797,
          -3.207589490666431,
          -3.1763083520279114,
          -4.055148889889394,
          -3.2041587572179706,
          -3.4880333912672628,
          -3.666845449884052,
          -3.1924878028123604,
          -3.6614813978436156,
          -3.2741248469093267,
          -3.0577928497102045,
          -7,
          -3.9577030415488315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.176958980586908,
          -7,
          -7,
          -7,
          -4.204016825466072,
          -7,
          -7,
          -7,
          -3.8884041677370464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.635121683866136,
          -7,
          -7,
          -7,
          -4.27057519855504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9749719942980692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3687516195445553,
          -7,
          -3.312811826212088,
          -7,
          -4.4416762870082565,
          -7,
          -7,
          -3.285107029566812,
          -7,
          -3.61857102812013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7029902775892602,
          -2.707399831133249,
          -3.8920946026904804,
          -7,
          -7,
          -7,
          -3.404149249209695,
          -2.9360107957152097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9700522868628005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.124693290881075,
          -7,
          -2.529986128254395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.460747541844197,
          -7,
          -3.204662511748219,
          -7,
          -4.150595275965512,
          -3.509202522331103,
          -3.7091851295502454,
          -7,
          -7,
          -7,
          -2.8915374576725643,
          -7,
          -7,
          -7,
          -4.142827294538336,
          -7,
          -7,
          -7,
          -2.105054182122119,
          -7,
          -7,
          -7,
          -3.3055663135153037,
          -3.29448459694402,
          -7,
          -7,
          -2.5554975061310574,
          -7,
          -4.3808621953412015,
          -7,
          -7,
          -3.286905352972375,
          -7,
          -7,
          -7,
          -3.4674897127574646,
          -4.451694349193542,
          -7,
          -7,
          -7,
          -7,
          -3.037027879755775,
          -7,
          -2.5378190950732744,
          -7,
          -7,
          -4.294752721910178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2329961103921536,
          -3.8462752424122133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.360593413565249,
          -7,
          -3.811373897053893,
          -7,
          -7,
          -7,
          -4.237945676609235,
          -7,
          -7,
          -7,
          -3.1031192535457137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.221513958388284,
          -7,
          -7,
          -7,
          -7,
          -2.710963118995276,
          -7,
          -7,
          -3.308671106715418,
          -7,
          -7,
          -7,
          -7,
          -3.2844095223628234,
          -7,
          -3.3550682063488506,
          -2.8587777373054495,
          -3.105510184769974,
          -3.3283796034387376,
          -7,
          -2.909020854211156,
          -7,
          -7,
          -3.0041063232796583,
          -2.4892551683692603,
          -7,
          -7,
          -3.9399682905513362,
          -3.2422929049829308,
          -4.337559087628736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8992731873176036,
          -3.5549734583332397,
          -7,
          -5.411748460239424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8790958795000727,
          -4.941446830252359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.912487761332324,
          -7,
          -3.1005773027895964,
          -3.190051417759206,
          -2.1492191126553797,
          -7,
          -4.009280884255359,
          -7,
          -4.531121115412728,
          -2.918554530550274,
          -4.7090663377095066,
          -7,
          -7,
          -7,
          -3.981501488148247,
          -3.7214808547700495,
          -3.949390006644913,
          -7,
          -3.824516328007209,
          -2.8254261177678233,
          -7,
          -7,
          -2.377670439334323,
          -2.091750677014142,
          -3.3895204658463776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.916295994563131,
          -7,
          -7,
          -7,
          -4.654028863068111,
          -7,
          -7,
          -7,
          -7,
          -2.4608978427565478,
          -3.5597869682005565,
          -3.2182728535714475,
          -7,
          -3.4712917110589387,
          -7,
          -7,
          -7,
          -7,
          -5.226193772454605,
          -3.85618492672717,
          -7,
          -7,
          -7,
          -3.7364761820276966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.376576957056512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.905777896787175,
          -5.398046542517314,
          -7,
          -3.2976875755910435,
          -7,
          -7,
          -7,
          -2.9763499790032735,
          -7,
          -7,
          -7,
          -7,
          -2.9689496809813427,
          -7,
          -7,
          -3.35237549500052,
          -7,
          -2.8698182079793284,
          -7,
          -7,
          -7,
          -3.220631019448092,
          -7,
          -7,
          -4.592520946518943,
          -7,
          -7,
          -7,
          -7,
          -4.368510019595464,
          -7,
          -7,
          -4.8789065156607965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6679196853173615,
          -3.834581509861899,
          -3.0255984179749933,
          -7,
          -7,
          -7,
          -4.757714799332841,
          -3.9813201732591073,
          -7,
          -7,
          -7,
          -4.67825426226744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.990423218731616,
          -4.7886179938368425,
          -7,
          -7,
          -7,
          -7,
          -4.352216295257527,
          -7,
          -5.103913135702874,
          -4.067480023931482,
          -7,
          -7,
          -7,
          -7,
          -4.780950646376869,
          -7,
          -7,
          -7,
          -7,
          -4.006580127619797,
          -7,
          -4.641305515998657,
          -4.954758530638175,
          -7,
          -5.046024716583911,
          -7,
          -7,
          -4.304242719659696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.164189220875209,
          -3.0038911662369103,
          -4.17655425961329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.795476804945366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.15601883092165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6163284485376055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3283796034387376,
          -7,
          -7,
          -7,
          -3.2089785172762535,
          -3.974327435423617,
          -7,
          -7,
          -7,
          -3.4800069429571505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.142667069274032,
          -2.8165726960261033,
          -7,
          -3.132579847659737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4832305869021027,
          -7,
          -7,
          -3.473778834646725,
          -3.928876996969838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.390617214336786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1983821300082944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7130801029688874,
          -7,
          -2.3418582954511553,
          -7,
          -7,
          -3.3395749783523323,
          -7,
          -7,
          -7,
          -2.983726493512128,
          -2.776095557782467,
          -2.239373094599889,
          -3.4222614508136027,
          -7,
          -7,
          -7,
          -2.8784476648392694,
          -7,
          -7,
          -3.0215338405254566,
          -2.6533812859632135,
          -2.6073018058971846,
          -2.9077695418108918,
          -3.021602716028242,
          -1.9984714135391215,
          -2.5804973099769506,
          -3.398287305357401,
          -3.699467710045164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.750948967531182,
          -7,
          -3.6023266903176827,
          -3.3613500243522663,
          -2.561612418595533,
          -2.2778383330020473,
          -3.471731651480051,
          -2.8268663262901415,
          -7,
          -3.452553063228925,
          -3.6872613462435067,
          -2.6982455763416864,
          -7,
          -2.620849169351407,
          -2.693433803801546,
          -1.2840726750039217,
          -2.6167794385312413,
          -7,
          -2.832029647089928,
          -2.4683473304121573,
          -3.441695135640717,
          -7,
          -7,
          -7,
          -1.3394159466816076,
          -3.2527721492435755,
          -3.9985935061160727,
          -7,
          -7,
          -2.2969784210590283,
          -7,
          -3.2477892042772956,
          -2.695043658821294,
          -7,
          -3.6399842480415883,
          -3.5991571438616687,
          -7,
          -3.596047007545439,
          -7,
          -7,
          -2.6609602917760835,
          -3.0949367352066424,
          -7,
          -7,
          -3.1711411510283822,
          -7,
          -2.501789322455909,
          -7,
          -2.6397354399672364,
          -7,
          -3.0940987904485904,
          -3.710286647702891,
          -3.0043213737826426,
          -7,
          -7,
          -3.335156899534743,
          -7,
          -3.611404637711593,
          -3.7413092088995694,
          -7,
          -3.596322138680332,
          -7,
          -7,
          -7,
          -3.002558733105052,
          -7,
          -7,
          -1.887054378050957,
          -1.5607933733652921,
          -2.049754327593793,
          -2.9378520932511556,
          -3.37675939540488,
          -7,
          -7,
          -3.2093139057259306,
          -7,
          -7,
          -2.9813655090785445,
          -3.111850362800993,
          -3.298197867109815,
          -7,
          -3.441197466929935,
          -3.6207753465573442,
          -3.414137362184477,
          -3.934548947666147,
          -2.9438241512023096,
          -3.4211708017896476,
          -2.6289724632007867,
          -2.648067129448935,
          -3.4559862390673195,
          -3.348694190265541,
          -7,
          -2.93584972965916,
          -1.916788812406723,
          -7,
          -3.0281644194244697,
          -3.9209229721223515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.369957607346053,
          -2.900476371389257,
          -3.8133808067338557,
          -3.4292676664331685,
          -3.9660478210764536,
          -7,
          -7,
          -7,
          -7,
          -2.6910814921229687,
          -7,
          -7,
          -2.526823710771811,
          -3.199993525583865,
          -7,
          -7,
          -3.0771255534464483,
          -7,
          -3.351409751925439,
          -3.5033820634737327,
          -7,
          -3.6203442997544935,
          -2.6058435390580894,
          -3.245636029406203,
          -3.118878569982349,
          -2.748575616930992,
          -3.40705081480425,
          -3.393874166549036,
          -3.3912880485952974,
          -7,
          -7,
          -3.1365620365899805,
          -7,
          -7,
          -7,
          -3.223582462425357,
          -3.382557321908786,
          -4.015925311281039,
          -7,
          -2.839540892968969,
          -3.037836233227962,
          -7,
          -7,
          -7,
          -3.02434881738075,
          -7,
          -7,
          -7,
          -3.0033168924581544,
          -2.8182258936139557,
          -3.171726453653231,
          -7,
          -3.321943464631346,
          -7,
          -3.0250189722827594,
          -7,
          -7,
          -7,
          -2.954885432549936,
          -7,
          -7,
          -7,
          -3.0415242696106493,
          -7,
          -7,
          -2.856366323659248,
          -3.29014595464781,
          -7,
          -1.884751806004819,
          -4.086163998032887,
          -3.3422252293607904,
          -7,
          -7,
          -3.382197210377454,
          -3.3386556655787003,
          -7,
          -2.6972293427597176,
          -3.344588742578714,
          -3.111598524880394,
          -2.6103939697123133,
          -2.6587266773270137,
          -7,
          -4.4839017980195734,
          -7,
          -7,
          -3.4102709642521845,
          -3.1756567472816637,
          -7,
          -3.350441856535061,
          -2.675663797434491,
          -1.3895148872761447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.754348335711019,
          -3.671869221719906,
          -3.319522449065454,
          -3.3279716236230104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.732715340349993,
          -7,
          -3.2476050641507705,
          -2.6068337552368273,
          -3.613366056465805,
          -7,
          -7,
          -7,
          -2.950131090407851,
          -3.570659670021534,
          -2.7679948007976636,
          -3.1349735400059155,
          -3.879718312672632,
          -3.451939869365103,
          -7,
          -7,
          -2.803570909565455,
          -3.1559430179718366,
          -2.568848838333719,
          -1.6148441756713314,
          -3.029586671630457,
          -3.510813010512496,
          -3.428620672671939,
          -7,
          -7,
          -3.3554515201265174,
          -2.939119717648487,
          -7,
          -3.076094046682475,
          -3.016476194280864,
          -7,
          -3.5267268673146357,
          -7,
          -2.680901812206373,
          -3.102733766037084,
          -2.7829024059746446,
          -7,
          -7,
          -3.7391354571001174,
          -3.2773799746672547,
          -7,
          -3.4184670209466006,
          -7,
          -3.4429498695778618,
          -2.0729208942243305,
          -7,
          -4.029221394253928,
          -2.782472624166286,
          -7,
          -7,
          -3.0971705115554466,
          -2.034204961241296,
          -4.121848106698777,
          -1.6880119449868285,
          -7,
          -7,
          -7,
          -3.565316427085621,
          -2.4599952560473914,
          -7,
          -2.640978057358332,
          -2.510338743528832,
          -2.3703280077795106,
          -2.076957391260839,
          -7,
          -3.3463529744506384,
          -7,
          -3.1659858227744544,
          -2.6841718627005906,
          -7,
          -3.5445168787428676,
          -2.8125290030350776,
          -4.1358447556263425,
          -7,
          -3.4180802200592306,
          -3.105776855928944,
          -2.1276831637211653,
          -7,
          -7,
          -7,
          -3.2302785764135864,
          -2.6081317580331795,
          -2.2559069748756153,
          -2.7965743332104296,
          -3.0338256939533106,
          -7,
          -2.6164755138885654,
          -7,
          -2.9443181355003873,
          -3.13481437032046,
          -2.6678838006255914,
          -3.386855529184724,
          -2.3849927064819196,
          -7,
          -2.847983728251745,
          -4.312082105977306,
          -4.306746608077712,
          -7,
          -7,
          -7,
          -3.9253120914996495,
          -3.963976609996606,
          -3.404192060041402,
          -3.3708157807234556,
          -7,
          -7,
          -4.03726709456871,
          -4.732353545509138,
          -5.004901478799332,
          -4.298634783124435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.913759120768689,
          -7,
          -3.3480735347698563,
          -3.8566684836115352,
          -7,
          -4.372626673477937,
          -7,
          -7,
          -3.7446272007728325,
          -7,
          -4.089913938473309,
          -4.356121506236986,
          -7,
          -7,
          -7,
          -7,
          -4.477222578278151,
          -7,
          -3.3755010405719097,
          -7,
          -3.9862699911219206,
          -3.867971760315312,
          -7,
          -2.789439684567179,
          -7,
          -3.2899232395240046,
          -3.22208086808631,
          -3.2814500293791102,
          -7,
          -4.466511738486146,
          -2.9566718738913944,
          -3.3524544153835043,
          -7,
          -3.462368045522524,
          -3.616842959534867,
          -7,
          -7,
          -4.402347372848368,
          -7,
          -7,
          -3.7682767279530007,
          -3.5979678700808284,
          -5.008860670309308,
          -7,
          -2.8135142715418833,
          -7,
          -4.0090682761922185,
          -7,
          -5.107152286081356,
          -3.433769833924866,
          -7,
          -7,
          -4.053673748961832,
          -4.1569275555396565,
          -3.891230722978062,
          -7,
          -2.6102729187647107,
          -7,
          -3.628265212453981,
          -3.555604924999254,
          -7,
          -3.3602437635106135,
          -4.264822543576076,
          -3.4202033743532962,
          -4.2367677957015015,
          -7,
          -2.8987251815894934,
          -3.5111323333436464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.34617128174312,
          -2.74707871738161,
          -2.0656606596823064,
          -7,
          -7,
          -2.895606686165933,
          -7,
          -7,
          -3.367169488534681,
          -3.159687479754789,
          -7,
          -3.8083865463958886,
          -2.804971921794919,
          -7,
          -3.277265309456845,
          -7,
          -7,
          -3.0973961506415026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.838471279071929,
          -3.3973315703911284,
          -7,
          -3.2308866447298628,
          -7,
          -7,
          -7,
          -4.100198171834132,
          -4.197301238322852,
          -7,
          -7,
          -2.396411996799786,
          -7,
          -2.812435847543729,
          -7,
          -3.514282047860378,
          -2.7193536865753405,
          -7,
          -7,
          -7,
          -2.8092903011763157,
          -3.1099158630237933,
          -7,
          -7,
          -2.56643749219507,
          -7,
          -2.9437417658313136,
          -2.848881587744384,
          -7,
          -7,
          -2.56118659791047,
          -3.214667269683036,
          -7,
          -3.5920101162931366,
          -7,
          -7,
          -7,
          -3.2755416884013093,
          -2.8001732097794916,
          -3.053462604925455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2779528470388093,
          -2.7872424278303134,
          -3.495821753385906,
          -7,
          -2.7477446431168433,
          -2.547617198943898,
          -3.2852571745923016,
          -3.596707029681446,
          -2.7146689821747727,
          -7,
          -2.8951769043575744,
          -3.485153349903652,
          -3.190506781616284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4357953789580624,
          -7,
          -4.2079035303860515,
          -3.4868553552769432,
          -7,
          -2.603242818609928,
          -7,
          -3.057158750485419,
          -7,
          -3.4802944600030066,
          -2.4940153747571436,
          -7,
          -7,
          -3.5359267413955693,
          -2.98781517440207,
          -3.644668314139634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9020573108084666,
          -7,
          -3.0842186867392387,
          -7,
          -7,
          -3.3613500243522663,
          -3.3872118003137306,
          -7,
          -3.406028944963615,
          -3.134283382991931,
          -3.5170638734826545,
          -3.4612583528618397,
          -3.569724949226159,
          -7,
          -7,
          -7,
          -7,
          -3.406199423663313,
          -7,
          -3.617236306615377,
          -7,
          -3.426185825244511,
          -7,
          -7,
          -3.6226284261293253,
          -7,
          -3.3560258571931225,
          -3.1131631489984994,
          -7,
          -3.7890163267933747,
          -2.815577748324267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6216305986921031,
          -2.7950105586314464,
          -3.040602340114073,
          -7,
          -7,
          -3.9762312662322707,
          -7,
          -7,
          -3.146128035678238,
          -7,
          -3.190306225606168,
          -2.537399284038261,
          -7,
          -7,
          -7,
          -7,
          -3.312100387989085,
          -3.3261309567107946,
          -7,
          -3.2558351148559623,
          -3.4969889198903217,
          -7,
          -2.8819549713396007,
          -3.0791812460476247,
          -3.154271775993095,
          -7,
          -7,
          -4.171445606835973,
          -7,
          -7,
          -7,
          -7,
          -3.4437322414015967,
          -7,
          -3.5826314394896364,
          -7,
          -7,
          -7,
          -3.2800230025149686,
          -7,
          -7,
          -3.466274321789292,
          -7,
          -3.4108615542165976,
          -7,
          -7,
          -7,
          -3.3224260524059526,
          -7,
          -3.5321490016041213,
          -3.2495652118253466,
          -2.1907317852385715,
          -3.844725627973226,
          -7,
          -3.2598326990634834,
          -2.768884649356367,
          -7,
          -7,
          -7,
          -7,
          -1.6728672017718136,
          -3.3489859568078573,
          -3.5079607610773103,
          -7,
          -7,
          -3.0404704759922456,
          -7,
          -3.3135157072120407,
          -3.7044936970092985,
          -7,
          -2.8392265740134355,
          -3.4842027432890195,
          -7,
          -7,
          -7,
          -7,
          -3.9188687433809846,
          -7,
          -3.1869563354654122,
          -7,
          -7,
          -7,
          -3.5896145406312665,
          -3.6306312440205,
          -3.4149733479708178,
          -3.392169149489736,
          -3.663993632411139,
          -7,
          -3.749581734865559,
          -7,
          -7,
          -7,
          -3.407900540142635,
          -3.502836638621003,
          -3.1860140602380915,
          -3.1504494094608804,
          -4.172953027546355,
          -7,
          -7,
          -7,
          -3.3084790401617297,
          -7,
          -1.887054378050957,
          -7,
          -2.586587304671755,
          -2.859367909853095,
          -2.928907690243953,
          -7,
          -7,
          -7,
          -3.2519509249968737,
          -7,
          -7,
          -7,
          -3.32990612340021,
          -3.704236337308788,
          -7,
          -3.4168345930422372,
          -3.760196229455134,
          -7,
          -3.88632148655948,
          -7,
          -4.520203957132736,
          -7,
          -7,
          -3.6824158616773586,
          -7,
          -3.247236549506764,
          -3.2365582535607142,
          -2.187873089603788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.486430478854434,
          -3.699953291190414,
          -3.7484206224675685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2712024681107645,
          -7,
          -7,
          -7,
          -3.7730791049593284,
          -7,
          -3.0674428427763805,
          -7,
          -3.3552599055273786,
          -7,
          -3.3585059114902354,
          -7,
          -7,
          -2.798097932062486,
          -3.418135498425232,
          -2.7722168932840368,
          -2.6126072783550733,
          -7,
          -3.381300212083958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.660106221723244,
          -3.17868923977559,
          -3.9965773367182584,
          -7,
          -3.3025473724874854,
          -3.5838862740548043,
          -7,
          -3.26528962586083,
          -3.1869563354654122,
          -7,
          -7,
          -3.0770043267933502,
          -3.1172712956557644,
          -3.326949994165999,
          -7,
          -2.4443918150990673,
          -3.208710019906401,
          -7,
          -7,
          -3.987085029624122,
          -3.1371958119405483,
          -4.357038666819455,
          -3.143014800254095,
          -2.7782890997680427,
          -7,
          -2.5548927794398435,
          -7,
          -2.7772455264226195,
          -7,
          -7,
          -3.498034723687027,
          -7,
          -7,
          -3.20194306340165,
          -7,
          -7,
          -7,
          -7,
          -3.1781132523146316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9618006391916785,
          -7,
          -4.9354594001061,
          -7,
          -2.8873359303991672,
          -3.22219604630172,
          -7,
          -7,
          -7,
          -7,
          -1.5146038666834796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7972675408307164,
          -4.247369250804275,
          -7,
          -7,
          -7,
          -3.1562461903973444,
          -3.255272505103306,
          -7,
          -7,
          -7,
          -3.7466341989375787,
          -3.4207806195485655,
          -2.9876662649262746,
          -7,
          -3.406028944963615,
          -7,
          -7,
          -4.331062700600152,
          -2.9720484774455382,
          -2.9745988142431106,
          -3.2617385473525378,
          -3.81424759573192,
          -3.284881714655453,
          -7,
          -2.8724476477890133,
          -3.0696269919490073,
          -3.3194530784907674,
          -3.091842749738098,
          -2.871280972857973,
          -2.60422605308447,
          -7,
          -7,
          -7,
          -3.3422252293607904,
          -3.5601458398490475,
          -3.236537261488694,
          -7,
          -7,
          -2.867663867912998,
          -3.1607685618611283,
          -7,
          -7,
          -2.8664350331791066,
          -3.965906915495192,
          -7,
          -2.6961066506690017,
          -2.593655208123772,
          -4.092899198743546,
          -7,
          -7,
          -3.7005306569785916,
          -7,
          -3.271609301378832,
          -3.665299499499897,
          -7,
          -7,
          -7,
          -3.3595192868531116,
          -2.9523080096621253,
          -2.4060076304200706,
          -2.0154464784398023,
          -4.527846349811276,
          -2.632030833840008,
          -7,
          -7,
          -7,
          -3.332101666969759,
          -2.9906939606797516,
          -7,
          -2.7601710828477963,
          -3.044800990163838,
          -7,
          -2.5506868726984986,
          -7,
          -3.760422483423212,
          -3.251638220448212,
          -3.0058237530290275,
          -3.6917002082901615,
          -7,
          -3.5603490688931063,
          -3.923364927071542,
          -4.069494658929803,
          -7,
          -3.5412046906832586,
          -4.067500678753396,
          -3.526210003841664,
          -7,
          -7,
          -7,
          -7,
          -3.5338355842360567,
          -3.3021865728639233,
          -7,
          -7,
          -7,
          -3.0340934464167257,
          -7,
          -7,
          -3.2615007731982804,
          -3.41237653650371,
          -7,
          -3.234144155367817,
          -7,
          -7,
          -4.603458337409067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9967305154351527,
          -3.7083472366371133,
          -7,
          -7,
          -4.319938439980309,
          -7,
          -5.001002063315146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.912160035348151,
          -7,
          -4.541416977191859,
          -4.1295610023090825,
          -7,
          -7,
          -7,
          -7,
          -4.3025401594317065,
          -7,
          -4.68397410472636,
          -4.338476414912923,
          -4.213065962065718,
          -7,
          -7,
          -7,
          -4.463937759305199,
          -4.2051502091401805,
          -4.621840721731609,
          -7,
          -7,
          -4.466782383550875,
          -3.926085086925144,
          -7,
          -3.8663464227496016,
          -7,
          -4.123359044078283,
          -3.2458004570397443,
          -3.586587304671755,
          -4.151829340131871,
          -3.518824039485424,
          -4.085138887686988,
          -3.372175286115064,
          -7,
          -3.8677620246502005,
          -7,
          -7,
          -4.386516800686768,
          -7,
          -7,
          -4.149759993749519,
          -4.284845089938738,
          -5.008090641409871,
          -7,
          -2.9710437918360286,
          -7,
          -4.357005262671767,
          -7,
          -5.406649166157267,
          -3.8019864946643342,
          -7,
          -7,
          -7,
          -4.444091659700497,
          -7,
          -7,
          -3.153713263108388,
          -7,
          -4.12411823117788,
          -4.497758718287268,
          -7,
          -3.691827770244213,
          -4.959542212459511,
          -7,
          -5.04796957212993,
          -7,
          -3.667639706056411,
          -3.712681262579364,
          -4.3115207624480485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.634578022853888,
          -3.479719235439571,
          -2.1611756115490883,
          -7,
          -7,
          -3.0551106378541464,
          -7,
          -2.8367986680925994,
          -7,
          -3.1986570869544226,
          -7,
          -3.523363056347348,
          -2.7306028522050876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8282086144679455,
          -7,
          -7,
          -3.40671045860979,
          -3.6118294794983736,
          -7,
          -3.564902672529205,
          -7,
          -7,
          -4.303476853603883,
          -4.097069803977662,
          -4.315977338870528,
          -7,
          -7,
          -2.7671558660821804,
          -3.288249225571986,
          -2.716122638919687,
          -7,
          -7,
          -2.852362676992824,
          -7,
          -3.1411360901207392,
          -7,
          -3.36679638328673,
          -3.442636525782232,
          -7,
          -7,
          -3.011993114659257,
          -7,
          -2.8145805160103183,
          -2.812662729830916,
          -7,
          -7,
          -3.0225314677988853,
          -7,
          -7,
          -3.2136653005621554,
          -7,
          -7,
          -7,
          -3.1565491513317814,
          -3.0928219760363977,
          -3.2581581933407944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.824060717418653,
          -7,
          -3.159717546180216,
          -2.8492350913147226,
          -7,
          -7,
          -3.2397998184470986,
          -2.9045652859678013,
          -2.8427874848344485,
          -3.4838724542226736,
          -2.8887617418146476,
          -7,
          -7,
          -7,
          -3.3619921087578137,
          -3.726808682524964,
          -3.3492775274679554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3923702932353117,
          -7,
          -3.5806399120080803,
          -3.5138710931559025,
          -7,
          -2.847572659142112,
          -7,
          -7,
          -7,
          -2.8068580295188172,
          -2.5517751904118082,
          -7,
          -7,
          -7,
          -3.3047058982127653,
          -3.3661681643281374,
          -3.263636068588108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.849849195605258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.132451812729004,
          -3.8145139523682383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5540447449409966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6039018317316716,
          -2.9218944709291024,
          -3.245594912768832,
          -2.4641562775552948,
          -7,
          -3.6506959797606107,
          -2.830921268729203,
          -3.941561120236071,
          -7,
          -3.144055027055373,
          -2.9613532832330054,
          -2.6832887096400997,
          -2.149400257384556,
          -7,
          -7,
          -7,
          -7,
          -2.6465584905468207,
          -3.206208870803717,
          -7,
          -2.5688947615018245,
          -2.4198430917891574,
          -2.895422546039408,
          -2.788168371141168,
          -7,
          -2.0535487985639476,
          -2.4868730494439446,
          -3.6416723732246865,
          -3.4389941506285777,
          -2.672836454171397,
          -7,
          -7,
          -3.643057683751453,
          -2.8410464654093035,
          -3.62746827245971,
          -2.2842980032561075,
          -7,
          -2.4623231130842345,
          -3.638389407665336,
          -3.2488189486409467,
          -3.143431190009773,
          -3.647676313240871,
          -2.6085260335771943,
          -3.6851144690465394,
          -2.499081947388326,
          -3.6351820486562674,
          -3.6734816970733473,
          -3.8291107101552946,
          -2.0689095352848286,
          -7,
          -2.1851235050982076,
          -2.3511472506797575,
          -1.4940429030218751,
          -2.6459578843998024,
          -7,
          -2.88394519503428,
          -2.3050738649759017,
          -7,
          -7,
          -7,
          -3.614686342282013,
          -2.006174210354342,
          -2.3381545437336477,
          -2.8478330480849277,
          -3.015778756389041,
          -3.6097011023793995,
          -0.9024655519714955,
          -7,
          -2.314895600408783,
          -2.9396301693557567,
          -3.1374596122778238,
          -2.5378890241422445,
          -2.9183226925562056,
          -7,
          -2.722409538916368,
          -7,
          -7,
          -1.295114136891793,
          -2.601361456580435,
          -2.7311857076340007,
          -7,
          -3.1020905255118367,
          -2.959327645972171,
          -2.3894286169292163,
          -3.371191048907622,
          -2.3658134210109636,
          -7,
          -2.601755778137239,
          -3.0670708560453703,
          -2.1870190811827652,
          -3.6098077693287025,
          -7,
          -3.315620531115086,
          -3.0280830070178384,
          -3.173259130501515,
          -3.022958321808785,
          -3.0203612826477078,
          -3.1006166740456034,
          -7,
          -3.125047296659335,
          -3.6008640363098396,
          -2.084559256457055,
          -3.3055663135153037,
          -1.5607933733652921,
          -2.586587304671755,
          -7,
          -1.5609511751531548,
          -3.049024097915049,
          -3.3282776444097677,
          -2.8408227521802787,
          -7,
          -2.710274110514284,
          -7,
          -7,
          -7,
          -2.8936384880060504,
          -7,
          -3.6729286904427223,
          -3.035052848660952,
          -3.3490975687027302,
          -7,
          -7,
          -3.353916230920363,
          -3.6474254958901158,
          -2.2356186149722146,
          -2.419060366638267,
          -2.4462954799526213,
          -7,
          -3.3568859411659737,
          -1.5840240812757094,
          -1.9799015480167361,
          -7,
          -2.522226814487059,
          -3.429299990833608,
          -7,
          -7,
          -7,
          -3.615002614524588,
          -7,
          -2.948779613737823,
          -3.0463976029545603,
          -2.948999454026953,
          -2.922673567858554,
          -7,
          -3.5691397254724593,
          -3.605197267388378,
          -3.3245910857609267,
          -3.3922571613416745,
          -7,
          -2.374065962317671,
          -7,
          -3.6310376965367404,
          -2.815103161366425,
          -2.54019291851203,
          -3.6039018317316716,
          -7,
          -3.7377490738915573,
          -3.1007150865730817,
          -7,
          -2.5262530993000873,
          -7,
          -2.8265067216642272,
          -2.4694538137671267,
          -2.8865712918143793,
          -2.486115487375963,
          -2.26876178609136,
          -2.388081456873557,
          -2.9435718914443427,
          -2.488953400332635,
          -3.60151678365001,
          -7,
          -3.664735968518705,
          -2.484299839346786,
          -7,
          -3.6049816296074315,
          -2.410593870705327,
          -3.6327608884794387,
          -3.4001156732959967,
          -7,
          -2.4797589305685346,
          -2.3103271035149624,
          -3.6705241577820797,
          -3.074084689028244,
          -2.220821020318192,
          -2.924882054350042,
          -2.8676147812238355,
          -3.111262513659065,
          -3.7328760413627067,
          -3.2133406385265157,
          -3.0145205387579237,
          -2.4757829039474,
          -3.1660352109000436,
          -3.213358353624391,
          -7,
          -2.6322477917069986,
          -3.7426465899387362,
          -3.3654369284633194,
          -7,
          -2.4865721505183567,
          -7,
          -3.36506658974845,
          -3.348791467560584,
          -2.5363058723510337,
          -3.63205216670581,
          -3.1687920203141817,
          -2.8779469516291885,
          -3.062581984228163,
          -7,
          -1.9336063705151778,
          -3.720374329337824,
          -2.6845189471368234,
          -7,
          -7,
          -3.632558514532672,
          -3.131083752984664,
          -7,
          -7,
          -7,
          -7,
          -3.3693643087812357,
          -2.9636107690505553,
          -3.9318137039591394,
          -3.9915879762894657,
          -7,
          -3.1588648570811704,
          -3.1710435238543386,
          -3.688330818112266,
          -7,
          -7,
          -3.2773035345575963,
          -2.3178962664929563,
          -3.4163075870598827,
          -7,
          -7,
          -7,
          -2.926856708949692,
          -3.5975855017522043,
          -3.6129956560323473,
          -2.5457193561568654,
          -3.004755928556112,
          -3.5984622004741507,
          -3.3016809492935764,
          -7,
          -7,
          -3.3600250891893975,
          -3.052212835769748,
          -3.295457138072563,
          -3.1843127956742574,
          -7,
          -2.223771668052953,
          -2.8049114308857184,
          -2.5545324228899338,
          -7,
          -3.60916737430202,
          -7,
          -1.6310910105078673,
          -2.346587664800529,
          -2.2195961677813676,
          -3.663795122219408,
          -3.5356738034257504,
          -3.6731131042382335,
          -3.6267508536833932,
          -3.32990612340021,
          -2.3741917050629118,
          -3.0527900992334316,
          -1.5699371688614308,
          -2.0039671161887616,
          -3.1157768761589635,
          -2.3439648605201104,
          -2.9595183769729982,
          -3.614158709509175,
          -2.415588309411352,
          -2.3888932863141665,
          -2.313586032608017,
          -7,
          -3.0272476487457864,
          -2.794662287175811,
          -7,
          -2.8734866800131793,
          -3.59955559098598,
          -1.9220356647941572,
          -2.4540095732950475,
          -2.5759867517113815,
          -2.9515456637708595,
          -3.711638538232349,
          -3.239555975036251,
          -2.37045140442245,
          -3.317331935445897,
          -3.244714716312713,
          -7,
          -2.8886474332825305,
          -2.3893433112520777,
          -3.0355898172434572,
          -3.1447471299618526,
          -2.503985128765333,
          -3.139024042846853,
          -2.892412650659219,
          -2.4930776470451126,
          -1.717161771854059,
          -3.645803568986553,
          -1.6365873550034469,
          -3.1230890516896657,
          -7,
          -7,
          -3.1196799820081194,
          -1.9519385545297605,
          -3.637689819118401,
          -3.6546577546495245,
          -2.70557864861638,
          -3.1502446018730703,
          -1.513479055910221,
          -2.9385197251764916,
          -2.3597842230324337,
          -7,
          -2.836233665954909,
          -2.087220217567597,
          -3.659821158055705,
          -3.3862169580055004,
          -2.876826150881778,
          -3.877240000888399,
          -7,
          -2.4291239733157144,
          -3.63502508274648,
          -2.152381013642323,
          -7,
          -2.828567836231445,
          -7,
          -2.728541072104733,
          -2.9824973691977124,
          -2.2408486584853606,
          -2.5453071164658243,
          -3.3055663135153037,
          -7,
          -2.024353705634743,
          -3.1513698502474603,
          -7,
          -2.7592900330243038,
          -3.121942651159755,
          -3.6351820486562674,
          -1.7324701058690302,
          -3.294576439201622,
          -3.6018427897820984,
          -3.456214155357989,
          -4.098096620171149,
          -7,
          -7,
          -4.741435255767935,
          -3.4791752673307053,
          -3.4424013694827025,
          -3.165315974146904,
          -2.969750193711248,
          -3.6371226589692447,
          -7,
          -4.37427164327598,
          -4.270065189874711,
          -4.53576234847312,
          -3.6195524378052375,
          -4.395710709035136,
          -4.005935151237362,
          -3.5600910314244696,
          -7,
          -4.381241468195862,
          -7,
          -4.394162638736977,
          -7,
          -3.620425256876902,
          -3.733892435884163,
          -7,
          -7,
          -4.27570284944821,
          -7,
          -3.3517894071459464,
          -4.253580289562183,
          -4.407263402053051,
          -3.913478292083329,
          -7,
          -7,
          -4.19423674872383,
          -4.043872912391425,
          -3.6583521534277548,
          -7,
          -2.553980847326294,
          -3.19580743572306,
          -3.3212358493275413,
          -2.935046695204227,
          -3.0077865594877418,
          -3.0603740219104476,
          -3.4406467477280938,
          -3.2845811128217504,
          -3.0703874932053874,
          -2.4507403361535487,
          -3.219977256744623,
          -3.648276350695849,
          -2.687304816301919,
          -2.846870690323001,
          -7,
          -2.807337679149665,
          -2.8295610562993927,
          -7,
          -3.5117051523256135,
          -3.7344317630530526,
          -7,
          -7,
          -2.8384078498875294,
          -3.0705723554074527,
          -4.478958431351312,
          -3.3265406685165617,
          -3.020827236121162,
          -7,
          -3.3807630389163634,
          -7,
          -4.369937394597604,
          -3.1473389862875183,
          -3.8245596945739138,
          -7,
          -3.611068009641454,
          -3.485281231935597,
          -3.1940064148643312,
          -3.031581570404944,
          -2.7659751825768173,
          -3.695043658821294,
          -3.0299158432131796,
          -2.9654686736239295,
          -3.6620964454179235,
          -2.7312214971040447,
          -3.7420177471401384,
          -3.3766377783551063,
          -3.7521733375654627,
          -7,
          -2.870286828992591,
          -2.9806060027559775,
          -3.667733052533267,
          -7,
          -3.6036855496146996,
          -7,
          -7,
          -7,
          -2.40418376369826,
          -2.113639543632745,
          -1.7829501332654125,
          -7,
          -3.735119634081872,
          -2.378123530264194,
          -3.0756929182018036,
          -2.627444640172432,
          -3.1466447454142683,
          -2.5771086551437348,
          -7,
          -2.654756567983414,
          -2.3351425609414833,
          -3.6527296960692475,
          -7,
          -4.22806655265797,
          -3.2722285058778144,
          -2.445496837517327,
          -7,
          -7,
          -3.132854081187205,
          -7,
          -7,
          -2.2915168465279523,
          -2.556239002780201,
          -7,
          -2.9349400959933765,
          -7,
          -7,
          -7,
          -3.0528539087031565,
          -3.4896839887265743,
          -7,
          -7,
          -1.8897592881369922,
          -3.6744937172963503,
          -2.0609724061803028,
          -7,
          -2.7101173651118162,
          -1.958065052462858,
          -7,
          -7,
          -3.7735670489260587,
          -2.5601629215805253,
          -3.0167200331782524,
          -7,
          -3.7208205817703437,
          -2.451696154995558,
          -7,
          -2.330576096087729,
          -2.146261438991191,
          -4.282939165754773,
          -7,
          -1.9001129694791195,
          -2.16409411613907,
          -7,
          -2.7368445108368746,
          -7,
          -7,
          -7,
          -2.7094241574915294,
          -2.2681711037010768,
          -2.371956759419767,
          -3.3947434473685325,
          -7,
          -7,
          -7,
          -3.6461095219788477,
          -3.6744477675018934,
          -3.3348556896172914,
          -2.287261034195944,
          -1.8934956267411402,
          -3.7000110623221123,
          -7,
          -1.8768041309026244,
          -1.8130004972943008,
          -2.560305243220961,
          -3.7657430414210444,
          -2.4178774724990104,
          -3.5073160400764136,
          -3.475283684857362,
          -2.99370069482035,
          -2.5192784084468745,
          -3.3069073090904255,
          -3.3994141053637703,
          -3.6872613462435067,
          -3.607025878434786,
          -7,
          -7,
          -7,
          -2.823474229170301,
          -3.3260626338156793,
          -2.597158169482056,
          -7,
          -3.77853711845159,
          -3.095877687895717,
          -3.1300119496719043,
          -2.0604180114251784,
          -7,
          -2.420615770625765,
          -7,
          -2.3268891728674044,
          -2.1269967514723724,
          -3.9228810912082936,
          -7,
          -2.644520647943643,
          -2.447978401055593,
          -2.5156582441630277,
          -3.6645479622465467,
          -7,
          -7,
          -3.6008640363098396,
          -7,
          -7,
          -7,
          -3.5166235018348,
          -7,
          -3.042811691807148,
          -3.164352855784437,
          -7,
          -3.62096843564429,
          -3.157859545331566,
          -3.66228551572213,
          -3.344883279369863,
          -2.8206392563794713,
          -2.867299091392458,
          -2.957341191541751,
          -3.1902382914634244,
          -7,
          -7,
          -3.60151678365001,
          -7,
          -3.6462076122066853,
          -7,
          -2.999553067213758,
          -7,
          -3.055187138555754,
          -3.36027776962236,
          -7,
          -2.5507317995589878,
          -3.6121478383264867,
          -3.618048096712093,
          -3.761702367541413,
          -7,
          -2.6726410656136697,
          -2.4082399653118496,
          -7,
          -7,
          -2.723674542888705,
          -7,
          -3.7709256146389993,
          -4.072507235528804,
          -3.422115420387915,
          -3.697159570973576,
          -3.244365490825935,
          -3.5984439539568314,
          -2.9337583661184787,
          -2.003927878459433,
          -3.753613695870938,
          -4.373095987078727,
          -3.2000292665537704,
          -2.5874078631232282,
          -2.5072584774547875,
          -2.436305618765648,
          -7,
          -7,
          -3.676693609624867,
          -4.374069803726075,
          -2.4168350793636244,
          -3.3754666422474324,
          -7,
          -2.6790517755015113,
          -1.6524612191775423,
          -3.6080801001958815,
          -2.9801124999406077,
          -3.8957723455519986,
          -2.6763311869799007,
          -2.5683439757819593,
          -2.860555779914859,
          -2.682212788529763,
          -2.6685830178507195,
          -3.676126370759378,
          -7,
          -3.1010774667367107,
          -3.4007624176069355,
          -2.996621107579201,
          -2.486555485662273,
          -3.771477239864823,
          -2.8731837838314673,
          -7,
          -2.5893586197509038,
          -2.642189632909757,
          -3.904138265829186,
          -2.4463127477795816,
          -3.7863254343900703,
          -2.66753209539257,
          -4.379051576184367,
          -3.0430405916283196,
          -3.81888541459401,
          -2.222734405713542,
          -3.919531335965941,
          -1.1896707913600393,
          -1.9871475249918304,
          -1.603860921753666,
          -1.9677140053553632,
          -7,
          -2.9208067732496916,
          -2.4615727109734706,
          -3.7827950003893553,
          -3.909199319174384,
          -4.085540306036948,
          -7,
          -2.779776808670381,
          -2.627950765074281,
          -2.6922366216770506,
          -3.8988896559265864,
          -4.073498398717262,
          -2.3123343546117208,
          -3.7712382882869084,
          -2.6027017833676314,
          -3.2622770206322533,
          -3.0129472051595405,
          -3.111027151026175,
          -2.264955158191548,
          -3.7728166083744408,
          -2.402192577878823,
          -7,
          -3.7759379565339373,
          -2.1112653866516125,
          -2.5129060669308303,
          -3.232542349529745,
          -4.372580635030913,
          -1.809887620834404,
          -2.920051321899959,
          -1.6407319773641893,
          -3.045143615953909,
          -2.1994492580536797,
          -7,
          -1.9729304251003044,
          -3.470883961069449,
          -2.067739677734452,
          -4.073516732274978,
          -7,
          -3.2074660557634376,
          -3.3969486867163377,
          -2.9921795216998177,
          -2.256525975063038,
          -4.075820590183628,
          -2.4381847575910185,
          -4.384443024058778,
          -3.3730224027881572,
          -3.469711588088793,
          -1.4567597543804305,
          -3.29448459694402,
          -2.049754327593793,
          -2.859367909853095,
          -1.5609511751531548,
          -7,
          -3.427540203195862,
          -3.7758651982020695,
          -2.8826134653016506,
          -7,
          -2.4857859336457393,
          -3.908610106269122,
          -7,
          -3.500425167997401,
          -3.1033149257643444,
          -2.9907510041972794,
          -3.344356542517054,
          -2.9264796427986184,
          -2.752299144871972,
          -7,
          -7,
          -7,
          -3.483284112093539,
          -2.2255246521651406,
          -2.7897485424721538,
          -2.928683835346075,
          -4.375316039326965,
          -3.7811088357294667,
          -1.9106058289339427,
          -2.025542823949734,
          -4.070831806956914,
          -3.2591710288966214,
          -3.4367891660441443,
          -7,
          -7,
          -7,
          -3.5971464878336956,
          -4.072029200827922,
          -2.5732713922522903,
          -2.566567572030291,
          -2.772566173085639,
          -3.1914510144648953,
          -7,
          -3.4461274752593476,
          -4.373794416714731,
          -7,
          -3.1855067412708022,
          -3.8394277643497237,
          -1.907250529717228,
          -7,
          -3.377979759421654,
          -3.6847735714992944,
          -1.5612040901605677,
          -7,
          -7,
          -3.3991196860279334,
          -3.5468421951528786,
          -3.6764558254563244,
          -2.1187561257223226,
          -3.5501234805592565,
          -3.130079720823589,
          -2.6345968046694317,
          -3.1189431346865346,
          -2.463210202983969,
          -2.750753768874042,
          -2.8484789123024457,
          -1.996533640935674,
          -2.32624439777699,
          -3.7709992051639407,
          -7,
          -3.5392195249770073,
          -3.2990894370487327,
          -3.0980969848947804,
          -3.7715874808812555,
          -2.088871143006184,
          -4.378615902031225,
          -3.625621081424908,
          -4.072654217333034,
          -2.6885732341636555,
          -1.271709289931902,
          -3.4823017672234426,
          -2.9981191605274136,
          -2.5906609500758826,
          -3.0693509006842974,
          -3.2305000118414706,
          -3.3147622932679495,
          -3.318810874835571,
          -3.3100557377508917,
          -3.031900005817225,
          -1.852431193762441,
          -3.0373902750387383,
          -3.0816133956502867,
          -7,
          -2.5217916496391233,
          -3.7983398307258573,
          -3.0411615134980985,
          -4.376449204597316,
          -2.2681748632088237,
          -4.372930404888793,
          -2.7967251246712355,
          -4.381764682017124,
          -2.946417171927368,
          -3.475144341300952,
          -3.681964458994683,
          -3.156291648012853,
          -3.501538502649975,
          -7,
          -1.9808010697064142,
          -2.889766853636871,
          -2.4174789139343855,
          -7,
          -7,
          -4.077513251497662,
          -3.7722116519480173,
          -7,
          -7,
          -7,
          -3.904589330951372,
          -2.8415402150435964,
          -2.5965324155337197,
          -2.864712755705674,
          -3.3302317322481083,
          -7,
          -3.9020754491124725,
          -4.080428051258176,
          -4.088065177690204,
          -7,
          -4.074414129841136,
          -3.4486719733921984,
          -2.8893542349518193,
          -2.9963189988040693,
          -7,
          -4.372156852171985,
          -4.375517300649672,
          -2.8993462025299315,
          -4.372506963362899,
          -3.1704634100768008,
          -3.2199161886494805,
          -2.5327583219803445,
          -4.372654294203732,
          -4.07234182151732,
          -7,
          -4.076166939344932,
          -2.838579258804435,
          -3.0597256597866873,
          -3.895164618625614,
          -3.128093977651733,
          -3.446614823664267,
          -2.0906107078284064,
          -2.7740400301845156,
          -2.2453353203066544,
          -7,
          -4.374473389063976,
          -7,
          -1.953766780990477,
          -2.2414907518037217,
          -2.1301187370058776,
          -3.3840306652405143,
          -3.072541652395476,
          -3.4316139029220896,
          -3.6784273224338673,
          -3.1736596536320567,
          -2.490223584110092,
          -2.7747146038137953,
          -2.317561393668647,
          -1.932232548261451,
          -2.541274399474468,
          -3.2168342101165988,
          -4.082426300860772,
          -3.773164534737837,
          -2.690266979462497,
          -2.1078372077228384,
          -2.647163676320182,
          -7,
          -2.668714720098945,
          -2.885025331908764,
          -3.678390894445094,
          -3.1908917169221698,
          -7,
          -1.5303194450185882,
          -1.937795942952816,
          -2.624424359200106,
          -3.1821795991661013,
          -2.9950908888423777,
          -2.3074711606695057,
          -1.8350993904798734,
          -3.6769860884519177,
          -2.955155313300949,
          -4.073773320852101,
          -2.9528103746480463,
          -2.740104775756783,
          -2.8178088374213064,
          -2.2501063879694696,
          -1.9323962220245403,
          -2.8419848045901137,
          -3.5542814381383723,
          -3.1005018312376387,
          -2.1645257643673252,
          -2.8990008330467725,
          -1.2851797576480062,
          -7,
          -7,
          -4.371935583802963,
          -3.3136563466180315,
          -1.7112870812197314,
          -4.07843869186193,
          -3.428098781384637,
          -3.048019362723852,
          -3.900530982452756,
          -1.9254071412178324,
          -2.980803010140982,
          -1.7478208534254045,
          -4.082534052872713,
          -3.542647619594607,
          -1.2710785047431974,
          -4.082534052872713,
          -3.102511455500595,
          -2.9438241512023096,
          -3.0891539461867294,
          -7,
          -1.3176063039586632,
          -3.0635551074793668,
          -2.198732594105873,
          -7,
          -3.344713721977851,
          -7,
          -1.6429238914818773,
          -2.365398121563634,
          -2.5115145725207486,
          -2.5367140633936573,
          -3.5287514680743923,
          -4.070721111676305,
          -1.4243576975802876,
          -3.4745804523423796,
          -3.604442066260723,
          -3.153312603105892,
          -2.7858990283843834,
          -3.4757074990540944,
          -0.9641357943202269,
          -7,
          -3.469877219395211,
          -2.7571730707020574,
          -3.873891041234412,
          -4.143992683660012,
          -3.959978964701999,
          -3.426168384282751,
          -2.42112697303189,
          -3.3406848506563924,
          -2.568110343224447,
          -2.2420327113070426,
          -3.1513298716210123,
          -4.132163596050864,
          -3.6820146380241794,
          -3.136928010655581,
          -3.2247777745222037,
          -2.9735044105591664,
          -3.8700232918953947,
          -3.033343323135224,
          -2.963266621784164,
          -3.7519203184537346,
          -4.038123200593378,
          -7,
          -3.2654424451322908,
          -3.50849864133115,
          -2.7103232406700224,
          -3.7095970127717655,
          -4.046582950842146,
          -3.7226718836790575,
          -3.6308796768674907,
          -7,
          -2.6340286106172917,
          -4.097430853944242,
          -3.1586701314662657,
          -3.1977726765713683,
          -3.286658524615686,
          -7,
          -3.4330309235264505,
          -3.7085908451503435,
          -3.1928039051875543,
          -7,
          -2.34015780277726,
          -3.271805875368442,
          -2.70957546628389,
          -1.9473491021061466,
          -2.320629926146124,
          -2.86114122047067,
          -2.854384409551896,
          -2.989004615698537,
          -2.2349232022351155,
          -2.246205705248979,
          -2.677192034869211,
          -2.5795343256482703,
          -1.8093513194989694,
          -2.013423140564389,
          -7,
          -1.9766977434027933,
          -2.8098231096591526,
          -7,
          -3.2633253244695006,
          -2.8051562428121297,
          -3.489364647145191,
          -4.3863384163575105,
          -1.6278041831150603,
          -2.0647399279260505,
          -3.0365430003709086,
          -3.6786094165589263,
          -2.4809437977431954,
          -3.424718337331567,
          -2.3633996005628086,
          -4.464713045757064,
          -2.9593881995919062,
          -2.4970293197660967,
          -2.783958521961391,
          -7,
          -2.541915867977676,
          -3.0872791930511436,
          -2.3571042909697755,
          -3.319586473608658,
          -2.1562617891349682,
          -3.214505343088467,
          -1.9889092796979757,
          -2.5218768249046994,
          -3.781863037624198,
          -1.8320297478103873,
          -2.5949505049713553,
          -3.5242337993653035,
          -2.4611826307022295,
          -4.379704269024447,
          -2.7146037676665995,
          -1.9058797317933902,
          -3.456001437208452,
          -3.676931263673469,
          -7,
          -7,
          -7,
          -7,
          -2.355393211588941,
          -2.8476925944963933,
          -1.8804077149768044,
          -7,
          -3.2845001459966476,
          -2.107591139790693,
          -3.7087777078901545,
          -2.952550293898202,
          -4.076021141783546,
          -2.4257200579414895,
          -3.7723767236537498,
          -2.197454784251053,
          -2.3788479304282237,
          -3.6831551478893028,
          -4.402914482831523,
          -3.306925161088451,
          -3.401745082237063,
          -2.3461951811553288,
          -7,
          -3.9041202134761996,
          -2.819693460240162,
          -4.3818908806262575,
          -3.906837655959449,
          -3.0539859144018386,
          -2.7589118923979736,
          -7,
          -2.677150521273433,
          -7,
          -7,
          -4.0185687482376276,
          -2.234246248744979,
          -2.904638275554804,
          -7,
          -7,
          -2.0350264999666092,
          -7,
          -2.594191581153005,
          -7,
          -3.0507136194470106,
          -2.2234036800839756,
          -7,
          -3.376010910646249,
          -4.4074928794601025,
          -2.873584787286106,
          -3.1234938576460367,
          -3.3806814727378263,
          -2.932421276674442,
          -2.956186223231246,
          -7,
          -2.79485387103731,
          -2.2165476761046525,
          -3.8898057518680855,
          -7,
          -2.2970608126818783,
          -2.656643331233824,
          -7,
          -2.7487634148774998,
          -7,
          -7,
          -3.8894697839695076,
          -3.07974959296128,
          -1.889157549797829,
          -2.7148492608370254,
          -3.7333577879255855,
          -3.548406968575704,
          -7,
          -7,
          -7,
          -3.232547690649782,
          -4.3792148413786265,
          -2.799616204481499,
          -2.2367816506792306,
          -4.391482044225046,
          -3.89553303948407,
          -2.2022517250991593,
          -1.5179407613891247,
          -2.7624231433300555,
          -3.8035253955765325,
          -2.4667768618677837,
          -4.1147944032247805,
          -3.455864634787528,
          -3.3105694127898815,
          -2.3934203469720283,
          -3.7439172145663298,
          -3.6924944075030846,
          -4.087852375163169,
          -4.073039808062093,
          -7,
          -4.061018722050734,
          -4.415273909352888,
          -3.0423069707976276,
          -3.812462124192689,
          -2.362843928614233,
          -3.1465586698056422,
          -3.1436738997980007,
          -2.2785354966808096,
          -3.5395308656643945,
          -2.3727600307164853,
          -7,
          -2.827177095755159,
          -7,
          -2.682398447819868,
          -2.511600289536558,
          -4.145972902802181,
          -7,
          -2.964521521588674,
          -3.1318680643619947,
          -2.14472570968999,
          -3.5391836728713275,
          -7,
          -7,
          -3.673941998634088,
          -4.37520622109933,
          -7,
          -7,
          -3.1071509582364176,
          -4.39509913731257,
          -3.497119783170118,
          -3.681150749932421,
          -4.382161182795874,
          -3.1454888972525032,
          -2.963206442410132,
          -3.3044905277734875,
          -3.6027109449575576,
          -2.4706770949744215,
          -2.8880038865883257,
          -2.2370823187516176,
          -3.0626421420676335,
          -4.441757958508164,
          -3.4795573161627673,
          -4.373169558903721,
          -2.8790630951351517,
          -3.0378790294829785,
          -7,
          -2.3463289211437783,
          -2.951571353764591,
          -2.967349935411163,
          -2.809148956558773,
          -4.111128036345124,
          -2.917437743688254,
          -3.4204508591060683,
          -3.7738412766815257,
          -2.956682855238677,
          -3.771752789954584,
          -2.9221905350019726,
          -2.5925292262557798,
          -4.084933574936716,
          -4.372027792657405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2884728005997825,
          -2.9132839017604186,
          -7,
          -7,
          -4.302130622081864,
          -7,
          -2.812244696800369,
          -7,
          -4.201670179646581,
          -3.103198285631444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7408362070573116,
          -3.898944466866509,
          -7,
          -2.9069632186628955,
          -3.8818537660727794,
          -7,
          -7,
          -7,
          -3.361160995195026,
          -7,
          -7,
          -4.3900397028302365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0364958190682128,
          -7,
          -2.793964905280631,
          -7,
          -3.315563071972445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.436162647040756,
          -3.532117116248804,
          -7,
          -2.5138831856110926,
          -3.9553028227616918,
          -7,
          -3.2165353574183575,
          -3.50745106090197,
          -7,
          -7,
          -3.172310968521954,
          -7,
          -7,
          -7,
          -2.5877109650189114,
          -7,
          -3.5922878159521305,
          -3.4537310295042936,
          -7,
          -2.2570783059665684,
          -7,
          -7,
          -3.27238316915648,
          -3.3525683861793083,
          -7,
          -3.4628470358316736,
          -3.534813360783814,
          -2.396780343144799,
          -3.093596768608228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1744959193752993,
          -7,
          -7,
          -7,
          -3.3100557377508917,
          -7,
          -3.78366115979566,
          -3.263399331334002,
          -4.0285712526925375,
          -7,
          -7,
          -7,
          -7,
          -3.4191293077419758,
          -3.3062105081677613,
          -7,
          -3.8552768038300917,
          -7,
          -7,
          -7,
          -3.9833104857941155,
          -7,
          -2.9378520932511556,
          -2.928907690243953,
          -3.049024097915049,
          -3.427540203195862,
          -7,
          -1.399470114125268,
          -2.0288035578502046,
          -2.7424632714945925,
          -3.309168661822757,
          -7,
          -7,
          -7,
          -7,
          -3.3522790172744976,
          -2.8341026557127935,
          -3.480323201241355,
          -3.910913939634084,
          -7,
          -7,
          -3.0711452904510828,
          -7,
          -3.18440748541232,
          -3.1762359997608716,
          -3.327665387050042,
          -7,
          -7,
          -3.8271322421466074,
          -3.5033820634737327,
          -7,
          -7,
          -4.371954027140132,
          -7,
          -7,
          -7,
          -2.5893910231369333,
          -2.812244696800369,
          -7,
          -7,
          -3.8596785766284483,
          -7,
          -7,
          -7,
          -7,
          -1.105510184769974,
          -2.0822328327331365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6992429036795467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.278499553281412,
          -7,
          -2.5859439053216287,
          -7,
          -2.7107518348841255,
          -3.287129620719111,
          -7,
          -7,
          -3.0610001600351286,
          -7,
          -2.814913181275074,
          -7,
          -3.106870544478654,
          -7,
          -7,
          -7,
          -3.6327608884794387,
          -7,
          -4.285264680481154,
          -7,
          -7,
          -3.4241472677851292,
          -7,
          -3.3953263930693507,
          -3.6085260335771943,
          -7,
          -3.4099331233312946,
          -7,
          -7,
          -7,
          -7,
          -3.049024097915049,
          -2.723044991643445,
          -3.207185391351969,
          -7,
          -7,
          -7,
          -3.869055618701908,
          -7,
          -3.17868923977559,
          -7,
          -2.492024795216319,
          -7,
          -2.5646660642520893,
          -1.8855496750060046,
          -7,
          -3.4577305482459986,
          -3.3875677794171883,
          -7,
          -3.419625360887743,
          -7,
          -7,
          -7,
          -7,
          -2.977266212427293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.445396605524949,
          -3.127644629984225,
          -4.138429020006003,
          -5.014173468544053,
          -7,
          -7,
          -3.0453229787866576,
          -3.1866738674997452,
          -7,
          -7,
          -3.068371418032643,
          -3.2796669440484556,
          -2.971739590887778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.291368850451583,
          -4.466487013635048,
          -7,
          -7,
          -7,
          -7,
          -2.1861083798132053,
          -2.368100851709351,
          -7,
          -7,
          -3.399673721481038,
          -7,
          -3.4952667443878105,
          -3.528209432477408,
          -7,
          -7,
          -2.79309160017658,
          -7,
          -3.353916230920363,
          -3.21398550838652,
          -7,
          -4.712784345708868,
          -7,
          -2.950364854376123,
          -2.668851648082519,
          -3.699881066467242,
          -7,
          -3.6692238739308056,
          -3.1301728888925355,
          -3.8522359394118872,
          -7,
          -3.0867156639448825,
          -7,
          -3.215108581053093,
          -3.4877038631637265,
          -3.461198288622493,
          -7,
          -2.965201701025912,
          -7,
          -7,
          -1.4730000927917108,
          -2.8027737252919755,
          -3.378216149749878,
          -7,
          -2.896801697664922,
          -2.9893014677141294,
          -2.4087243986938165,
          -3.8771921128174807,
          -3.4266196859018763,
          -7,
          -3.6882863093259703,
          -7,
          -3.117602691690084,
          -2.8302678009336417,
          -7,
          -3.9653898702151222,
          -7,
          -7,
          -3.329194415088451,
          -3.549861188471943,
          -3.0970836960665213,
          -5.050383623514781,
          -3.4046627008737222,
          -7,
          -7,
          -7,
          -3.7701890227359933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.361538971269279,
          -7,
          -3.238715020445331,
          -3.0888445627270045,
          -3.16761267272753,
          -7,
          -7,
          -4.013090138125056,
          -3.913619612233253,
          -4.343907655813822,
          -7,
          -7,
          -4.065189516740959,
          -3.4885507165004443,
          -7,
          -7,
          -2.9258275746247424,
          -3.561101383649056,
          -3.0985052832013156,
          -2.6943658522855136,
          -3.3624824747511743,
          -7,
          -7,
          -3.4299136977637543,
          -7,
          -7,
          -7,
          -3.186485453404858,
          -2.989004615698537,
          -3.4642184860833276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.580383194629278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5834255004065065,
          -7,
          -4.675356669813541,
          -4.923560036840415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.534394211412905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.775646850041662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9169590156013583,
          -7,
          -7,
          -5.066791656754556,
          -3.1176578997854874,
          -7,
          -7,
          -7,
          -4.281674608555453,
          -7,
          -3.518777068926775,
          -7,
          -4.185409929405979,
          -4.205087019994803,
          -7,
          -4.440184654070886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.515312959331332,
          -4.5851108969871746,
          -5.706591485814721,
          -7,
          -3.102004688080605,
          -7,
          -7,
          -7,
          -5.405698025321797,
          -7,
          -7,
          -7,
          -7,
          -4.435286812240127,
          -7,
          -7,
          -3.74183416300906,
          -7,
          -4.200264845080476,
          -7,
          -7,
          -4.2455126678141495,
          -7,
          -7,
          -4.569746392449806,
          -7,
          -3.6121478383264867,
          -4.610010364384026,
          -4.299529089146387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.693448465758027,
          -3.3909351071033793,
          -3.888010912245029,
          -7,
          -7,
          -3.6469523748023223,
          -7,
          -3.34143452457814,
          -7,
          -7,
          -7,
          -4.196424913949195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.317004147587592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.490660653356137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.563599728881531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9061733636440485,
          -7,
          -4.092365798646165,
          -3.1855421548543754,
          -7,
          -3.2545480771089736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6322243912130614,
          -3.636287252098513,
          -7,
          -4.0084085289779425,
          -7,
          -3.7500453120117676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.36321698715741,
          -7,
          -7,
          -7,
          -3.832687703038595,
          -7,
          -7,
          -4.071538361623433,
          -7,
          -3.4727564493172123,
          -7,
          -3.2931414834509307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.636955706104427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0237461631524765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1513698502474603,
          -7,
          -7,
          -4.02848720505384,
          -7,
          -7,
          -2.791690649020118,
          -4.1955398965493185,
          -3.2571984261393445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.73641642358496,
          -7,
          -7,
          -2.584331224367531,
          -3.9920323401937745,
          -7,
          -7,
          -7,
          -2.616160312847583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8785217955012063,
          -7,
          -3.6498026370614305,
          -7,
          -2.9434945159061026,
          -3.331427296520743,
          -7,
          -3.6406801532776654,
          -7,
          -1.8739015978644613,
          -7,
          -7,
          -3.2420442393695508,
          -3.65298190116631,
          -3.141763230275788,
          -3.9040118835973883,
          -7,
          -7,
          -3.0161973535124393,
          -3.4398062113933303,
          -7,
          -7,
          -7,
          -2.7427251313046983,
          -7,
          -7,
          -3.7514946576711314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6317480743965693,
          -7,
          -7,
          -4.280262842742384,
          -1.8087172420492474,
          -2.750893920382125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2598326990634834,
          -7,
          -4.6283122830844565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3242824552976926,
          -3.2737880795675203,
          -7,
          -3.37675939540488,
          -7,
          -3.3282776444097677,
          -3.7758651982020695,
          -1.399470114125268,
          -7,
          -1.89934163943878,
          -7,
          -3.6856521841155243,
          -3.0519239160461065,
          -7,
          -7,
          -3.5435714239623652,
          -7,
          -7,
          -3.473866355786692,
          -4.277250018474452,
          -7,
          -7,
          -7,
          -4.993916554616275,
          -7,
          -3.444044795918076,
          -3.127968207161918,
          -7,
          -7,
          -3.8222988712623667,
          -3.4718781993072905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7450747915820575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.878694100396108,
          -7,
          -1.8075350280688534,
          -2.0511525224473814,
          -7,
          -3.8256857080217586,
          -7,
          -7,
          -7,
          -3.6384518161613126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5484771632553307,
          -3.0729847446279304,
          -2.483824941014169,
          -3.575707301476683,
          -3.227372442289636,
          -7,
          -2.908451219131917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.223080397831155,
          -2.862131379313037,
          -7,
          -7,
          -7,
          -3.336030384549526,
          -7,
          -3.199114962043649,
          -7,
          -3.17376882313665,
          -7,
          -7,
          -7,
          -3.1277525158329733,
          -3.2076343673889616,
          -7,
          -7,
          -3.6641717053619307,
          -7,
          -7,
          -3.2931414834509307,
          -7,
          -7,
          -3.0320690441216103,
          -7,
          -1.8885226987424604,
          -2.476155081947642,
          -7,
          -1.4894470934582955,
          -2.936513742478893,
          -3.4405155211122285,
          -3.3459615418131414,
          -7,
          -3.3811150807098507,
          -7,
          -3.5511449087563216,
          -2.541579243946581,
          -2.622214022966295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5804687839510017,
          -7,
          -5.712962684843069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7450747915820575,
          -2.4787725665262523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.238798562713917,
          -3.9424346928272933,
          -7,
          -7,
          -7,
          -2.5118833609788744,
          -1.7910763089412547,
          -2.9786369483844743,
          -7,
          -7,
          -3.379939722801916,
          -7,
          -3.780677274433368,
          -3.3373926976485757,
          -7,
          -7,
          -7,
          -3.837735703059909,
          -3.3087777736647213,
          -3.7556081017156715,
          -7,
          -4.233748911930145,
          -7,
          -7,
          -2.852479993636856,
          -3.6901074394563307,
          -7,
          -3.6587266773270137,
          -3.0147724740730637,
          -7,
          -7,
          -7,
          -2.738780558484369,
          -2.850033257689769,
          -3.1536624535754956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3033097619588798,
          -2.6148972160331345,
          -7,
          -3.450249108319361,
          -3.1322596895310446,
          -2.3880365792235625,
          -1.9870514730726336,
          -4.177565355747414,
          -7,
          -7,
          -4.285489796846293,
          -7,
          -7,
          -3.2837533833325265,
          -3.271841606536499,
          -3.477458908024095,
          -7,
          -3.307067950661298,
          -3.2812606870550125,
          -3.5216610151120733,
          -7,
          -4.786991985099959,
          -7,
          -7,
          -7,
          -7,
          -3.753429841575423,
          -3.1374596122778238,
          -7,
          -7,
          -7,
          -7,
          -3.31722734917642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.856916097996645,
          -7,
          -5.03019073408336,
          -7,
          -3.4894662813031285,
          -4.541433622726462,
          -3.7737133252770216,
          -7,
          -7,
          -7,
          -3.2323607123535703,
          -3.4811558708280352,
          -3.241795431295199,
          -2.714958109720149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0191162904470725,
          -7,
          -7,
          -2.9968535663367337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.372525382451559,
          -7,
          -4.289176310578643,
          -4.278055883861635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.922403639170158,
          -7,
          -7,
          -7,
          -5.387902133932986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.77402034534064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.61366214952783,
          -7,
          -7,
          -5.065960442354263,
          -3.1051694279993316,
          -3.652343055062715,
          -7,
          -7,
          -4.536404392209844,
          -3.5137501500818233,
          -7,
          -4.440767441204506,
          -4.117399149800422,
          -3.9811841373983543,
          -7,
          -7,
          -7,
          -2.741939077729199,
          -7,
          -7,
          -7,
          -7,
          -4.991465314908383,
          -4.53364074217209,
          -7,
          -7,
          -3.0824263008607717,
          -7,
          -4.95535095736766,
          -7,
          -7,
          -4.075473964588946,
          -7,
          -7,
          -7,
          -4.431717489646013,
          -4.305358535963103,
          -7,
          -3.513989584700717,
          -7,
          -3.9437252868815347,
          -4.185782890670649,
          -7,
          -4.165219587753745,
          -7,
          -7,
          -4.5023607806305135,
          -7,
          -7,
          -4.13046242928158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.167405957232292,
          -7,
          -3.404348996995556,
          -7,
          -7,
          -3.299903317951841,
          -7,
          -3.2949069106051923,
          -7,
          -3.743901550485179,
          -7,
          -3.6206980868786585,
          -3.6101276130759956,
          -7,
          -7,
          -3.5229655954919865,
          -7,
          -7,
          -7,
          -7,
          -3.297249705130254,
          -7,
          -7,
          -7,
          -3.218535505216528,
          -7,
          -4.010257542998302,
          -7,
          -7,
          -7,
          -3.7720526346874497,
          -4.787630474970182,
          -7,
          -7,
          -3.934952707817858,
          -7,
          -3.4581844355702627,
          -7,
          -7,
          -3.772615049849171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.263636068588108,
          -3.984212166761434,
          -7,
          -7,
          -3.5363058723510337,
          -7,
          -7,
          -4.14472984082465,
          -7,
          -7,
          -7,
          -7,
          -3.778927200514638,
          -3.45408227073109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.79049627696711,
          -3.3745243201522004,
          -3.1357685145678222,
          -7,
          -3.459349400851918,
          -7,
          -7,
          -7,
          -3.3314677882910306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.487254103329864,
          -7,
          -7,
          -4.244907688977901,
          -7,
          -3.438858659420562,
          -7,
          -3.240798771117331,
          -7,
          -7,
          -3.0592793486780776,
          -7,
          -7,
          -7,
          -7,
          -4.394434168598875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.991004440330755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.106700732362354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.196797740419523,
          -7,
          -7,
          -7,
          -7,
          -3.3995006613146104,
          -7,
          -7,
          -7,
          -7,
          -3.6500159524718385,
          -7,
          -7,
          -7,
          -3.121887985103681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.701280086814093,
          -3.44255004631423,
          -7,
          -7,
          -3.0870712059065353,
          -4.211921084308509,
          -3.528479616133823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.98786048454487,
          -7,
          -7,
          -2.512133843240112,
          -3.4859621691237974,
          -7,
          -7,
          -7,
          -2.8246138966934105,
          -7,
          -7,
          -4.09120956473413,
          -7,
          -3.059184617631371,
          -7,
          -3.1565491513317814,
          -3.4149733479708178,
          -7,
          -2.6571754108707712,
          -7,
          -2.611723308007342,
          -2.840419777736486,
          -3.213295826523789,
          -3.0849335749367164,
          -7,
          -7,
          -7,
          -3.395588463568244,
          -7,
          -2.2392994791268928,
          -7,
          -2.9824973691977124,
          -2.5908789714255094,
          -3.1951116328795712,
          -2.9256987611930096,
          -3.333144876098619,
          -3.054740694376147,
          -3.159266331093494,
          -3.215108581053093,
          -2.8258154449852033,
          -3.226084115975824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.967502684527245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.909912446562701,
          -7,
          -7,
          -4.349173880325218,
          -3.0538464268522527,
          -1.8104200911977855,
          -7,
          -7,
          -3.432113748648645,
          -7,
          -2.529558673021163,
          -7,
          -2.7483172620858336,
          -2.422972646823736,
          -2.613136798211654,
          -3.6121478383264867,
          -2.3010299956639813,
          -7,
          -3.2537230464472198,
          -3.1299046237151233,
          -3.1401150518957146,
          -7,
          -7,
          -7,
          -2.140249171197303,
          -7,
          -3.6464037262230695,
          -7,
          -3.8666417205660397,
          -7,
          -3.018284308426531,
          -2.709693869727792,
          -2.383859134635737,
          -2.5554975061310574,
          -7,
          -7,
          -2.8408227521802787,
          -2.8826134653016506,
          -2.0288035578502046,
          -1.89934163943878,
          -7,
          -7,
          -3.1907867683981013,
          -7,
          -7,
          -2.962527174843811,
          -3.009981753317307,
          -7,
          -2.5413295776666938,
          -2.4469041486850505,
          -3.1902408162331777,
          -7,
          -7,
          -7,
          -4.3944779478432645,
          -7,
          -3.228015175101788,
          -2.2297860930857993,
          -7,
          -7,
          -3.5340895947605686,
          -7,
          -7,
          -7,
          -4.378906400023262,
          -7,
          -7,
          -7,
          -2.362105319293773,
          -2.710540447933297,
          -3.7515100502700416,
          -3.473632926873841,
          -3.569783428251616,
          -3.734399742520567,
          -7,
          -7,
          -7,
          -2.6229044753882,
          -0.5110851068304926,
          -7,
          -3.5619953005654894,
          -7,
          -7,
          -7,
          -3.548954186430289,
          -3.0232524596337114,
          -7,
          -7,
          -3.3197304943302246,
          -7,
          -3.323252100171687,
          -7,
          -3.012274667007467,
          -3.472902651803664,
          -7,
          -7,
          -7,
          -7,
          -2.9694664928943446,
          -2.8382192219076257,
          -7,
          -7,
          -2.9182925127553556,
          -7,
          -3.103803720955957,
          -7,
          -2.191362752198175,
          -7,
          -7,
          -7,
          -7,
          -2.37231622569878,
          -7,
          -2.326663506724679,
          -2.0966121089273897,
          -2.0349027456652022,
          -2.141673694251988,
          -7,
          -7,
          -2.9874428049358013,
          -7,
          -2.78265175161032,
          -2.30932593310039,
          -3.717504074764202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.794627444664508,
          -7,
          -2.7991336933020627,
          -2.5737416415203174,
          -7,
          -2.2141813086638207,
          -2.864807629026147,
          -7,
          -7,
          -7,
          -3.176958980586908,
          -3.5891860309942296,
          -3.4102709642521845,
          -7,
          -2.2270292621201366,
          -2.645094623553164,
          -3.0409976924234905,
          -7,
          -2.6727134419961223,
          -7,
          -2.699548677948487,
          -2.9411137270371017,
          -7,
          -3.673020907128896,
          -4.810367793773821,
          -7,
          -3.1357685145678222,
          -2.8715729355458786,
          -3.2826221128780624,
          -7,
          -7,
          -2.3904533605405005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.668012971641832,
          -3.401100074470033,
          -7,
          -7,
          -7,
          -7,
          -1.9978230807457253,
          -1.8799555851227492,
          -7,
          -3.2116544005531824,
          -3.732554579851432,
          -2.9125762934867234,
          -3.520876381688342,
          -1.9515741202886634,
          -2.5945766905019516,
          -7,
          -7,
          -3.725258066359961,
          -3.4214393902200495,
          -3.541254649786259,
          -2.9156636035057732,
          -4.238815269239352,
          -7,
          -7,
          -2.8172347304254983,
          -3.4148480526441123,
          -3.4831592097169795,
          -3.385338107809055,
          -2.983325529161058,
          -7,
          -3.3344537511509307,
          -2.9028184680822537,
          -3.0610753236297916,
          -2.702215059149166,
          -2.1522883443830563,
          -2.8147801457458046,
          -7,
          -7,
          -3.3092041796704077,
          -3.103803720955957,
          -2.028222561801142,
          -7,
          -3.140979163476971,
          -2.6130245297554895,
          -7,
          -2.9171114724936964,
          -2.1579601812912106,
          -3.577261953585815,
          -3.446744220465839,
          -7,
          -7,
          -7,
          -2.0162496497954696,
          -3.0456163219129087,
          -7,
          -2.6191841017592505,
          -3.099910730906369,
          -3.825491029879431,
          -7,
          -3.594060901270418,
          -7,
          -4.104443303441471,
          -3.1244498802828877,
          -7,
          -7,
          -7,
          -2.8932761679855776,
          -3.071697945221614,
          -3.1398790864012365,
          -3.1911714557285586,
          -3.0209134689673647,
          -7,
          -7,
          -7,
          -3.2693572552103687,
          -2.7278122676344823,
          -2.789345640720579,
          -3.3744733890639753,
          -2.90444504107691,
          -4.161523721301218,
          -3.192828704060413,
          -4.384248171139348,
          -7,
          -2.506311711911182,
          -4.117925559532407,
          -2.8604045600125314,
          -7,
          -7,
          -7,
          -2.6022770843001926,
          -3.044735697450507,
          -2.5337272110120566,
          -2.649010152542322,
          -2.5554975061310574,
          -7,
          -3.009592521262823,
          -7,
          -2.2864003267074238,
          -7,
          -2.794052139283516,
          -2.527951958343942,
          -2.761337071087618,
          -7,
          -7,
          -4.124362914853566,
          -7,
          -7,
          -7,
          -7,
          -3.781324455666988,
          -3.6085260335771943,
          -3.555292359938342,
          -4.038421445642459,
          -4.002209272988015,
          -7,
          -4.316222037426816,
          -4.024526714387152,
          -4.155079984230847,
          -4.110544819660737,
          -7,
          -3.678664029911573,
          -4.323432588871606,
          -7,
          -7,
          -7,
          -5.388972824642233,
          -7,
          -4.539189050875863,
          -4.123786328615372,
          -7,
          -4.362548443294778,
          -7,
          -7,
          -3.9332196580203544,
          -7,
          -4.205213389092977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0178677189635055,
          -7,
          -3.9764600291302,
          -3.2481776883387057,
          -1.9890314480164784,
          -3.4058583993176366,
          -4.0389577711393665,
          -7,
          -3.6456590285707335,
          -3.7158780483080935,
          -7,
          -4.450156695406595,
          -4.120244795546365,
          -3.907420318901708,
          -7,
          -3.9689496809813427,
          -7,
          -7,
          -3.530583859645118,
          -4.383330552045836,
          -7,
          -7,
          -3.391724416965437,
          -3.9701523850893725,
          -4.928755907897674,
          -7,
          -3.258557471186242,
          -7,
          -4.05508672862109,
          -7,
          -4.804275767129094,
          -3.619684515103055,
          -3.9312035254507522,
          -7,
          -7,
          -4.441302286693167,
          -4.786808188955903,
          -7,
          -3.1491677745760125,
          -3.0632082200712114,
          -3.859853068732257,
          -2.975891136401793,
          -7,
          -3.366245959064888,
          -4.4815525020951625,
          -3.018804483937159,
          -4.5035358273840576,
          -7,
          -3.6506959797606107,
          -3.835785662062868,
          -4.307731306161607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9448454003779725,
          -2.850339854583479,
          -3.2961713931851344,
          -7,
          -7,
          -3.097527237460007,
          -7,
          -7,
          -7,
          -3.089198366805149,
          -7,
          -3.801019329998165,
          -3.1925674533365456,
          -3.1855421548543754,
          -7,
          -3.4451992957056476,
          -7,
          -7,
          -7,
          -7,
          -2.970678880284106,
          -7,
          -7,
          -3.375297738217339,
          -3.1149444157125847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9193849551394147,
          -3.75034707354675,
          -7,
          -7,
          -3.060603418246075,
          -7,
          -3.0633333589517497,
          -7,
          -3.339650157613684,
          -3.485934263771752,
          -7,
          -3.0813473078041325,
          -7,
          -7,
          -3.7296506683359203,
          -7,
          -3.0595634179012676,
          -7,
          -7,
          -2.783903579272735,
          -3.1649473726218416,
          -7,
          -7,
          -3.128937494690652,
          -2.9815921172140816,
          -7,
          -3.6858611158657704,
          -7,
          -7,
          -3.926188049107206,
          -3.4300750555519395,
          -3.2798072880412437,
          -2.690955115144948,
          -7,
          -2.859938471600862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.433449793761596,
          -3.139816140610576,
          -7,
          -7,
          -3.0521807430683183,
          -2.963214952322519,
          -3.672836454171397,
          -7,
          -3.6183619311098782,
          -7,
          -3.477265995424853,
          -7,
          -3.452208248219225,
          -3.712060142461075,
          -7,
          -7,
          -7,
          -7,
          -4.069242472185548,
          -7,
          -7,
          -7,
          -3.2573753848060916,
          -2.9500401482063032,
          -3.8766796104192007,
          -3.951216054809137,
          -7,
          -3.525044807036845,
          -7,
          -3.369957607346053,
          -7,
          -3.09324653110384,
          -3.715501945293284,
          -7,
          -7,
          -3.371621927176021,
          -7,
          -3.2282976764748628,
          -7,
          -7,
          -7,
          -7,
          -3.058426024457005,
          -7,
          -7,
          -3.53763023032496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4784221877400805,
          -7,
          -7,
          -7,
          -3.7052648623174043,
          -7,
          -7,
          -3.5998830720736876,
          -7,
          -7,
          -4.028923533513322,
          -7,
          -7,
          -3.1156105116742996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.165541076722373,
          -7,
          -3.0678145111618402,
          -7,
          -7,
          -2.9136372740190546,
          -7,
          -7,
          -3.218010042984363,
          -4.206615421510249,
          -7,
          -7,
          -7,
          -2.7369804812535694,
          -3.532066094810552,
          -3.3096301674258988,
          -2.929418925714293,
          -3.0580462303952816,
          -7,
          -7,
          -2.6982359091337726,
          -3.4492211919059925,
          -7,
          -7,
          -3.121863557620311,
          -7,
          -7,
          -7,
          -2.9720484774455382,
          -7,
          -2.5893910231369333,
          -3.7561560889553665,
          -7,
          -7,
          -7,
          -7,
          -3.437750562820388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4444008339004135,
          -7,
          -7,
          -3.159266331093494,
          -3.0041063232796583,
          -3.2313846262355748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0423945674907595,
          -7,
          -3.942504106168081,
          -2.88711696101553,
          -7,
          -2.949145952419944,
          -3.5435714239623652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5073910568285225,
          -7,
          -7,
          -3.513084360465144,
          -7,
          -3.788239097382168,
          -3.4000196350651586,
          -7,
          -2.9315849874708,
          -4.013789746051142,
          -7,
          -7,
          -7,
          -3.159266331093494,
          -3.4395432098217347,
          -7,
          -7,
          -7,
          -3.545430829465351,
          -7,
          -7,
          -2.926959488380276,
          -7,
          -7,
          -3.024641165714816,
          -2.9224140241456342,
          -3.7481104674949837,
          -7,
          -3.055378331375,
          -3.2285286773571817,
          -7,
          -2.7180862947830917,
          -2.7041505168397992,
          -7,
          -2.601531473875523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7424632714945925,
          -7,
          -7,
          -7,
          -2.7060032670672225,
          -7,
          -7,
          -2.2814878879400813,
          -2.510854226653924,
          -2.1509756144710184,
          -7,
          -3.2395219233250603,
          -3.136176792692332,
          -7,
          -7,
          -7,
          -3.3155242827531506,
          -7,
          -3.0692980121155293,
          -7,
          -7,
          -7,
          -3.53704212531207,
          -7,
          -7,
          -7,
          -4.080373916701309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.057970231710706,
          -7,
          -2.6557203650631345,
          -7,
          -3.241795431295199,
          -3.442061474322838,
          -7,
          -7,
          -3.325310371711061,
          -3.6059870244750725,
          -3.092662173531954,
          -7,
          -7,
          -7,
          -3.4044427244873816,
          -7,
          -7,
          -7,
          -3.3479151865016914,
          -7,
          -7,
          -3.382917135087531,
          -3.2079035303860515,
          -3.4929000111087034,
          -3.411788004543869,
          -3.9177155165594932,
          -3.3857849588433355,
          -3.207095540419218,
          -3.6539517933146834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6582976503081897,
          -7,
          -3.393421637669355,
          -7,
          -7,
          -3.7526782943689865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4122925093230463,
          -7,
          -7,
          -3.6993173010213822,
          -7,
          -3.7290027092721902,
          -7,
          -7,
          -3.131137273778607,
          -4.356312741150645,
          -7,
          -3.799478398837981,
          -7,
          -7,
          -7,
          -2.673020907128896,
          -7,
          -7,
          -3.194097885578952,
          -7,
          -7,
          -7,
          -4.370124326635658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.657915936829955,
          -3.6773027183949845,
          -4.251142104019889,
          -7,
          -2.876506504265881,
          -3.2121876044039577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.344102319736858,
          -7,
          -7,
          -7,
          -7,
          -3.2460059040760294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5299434016586693,
          -3.5604446731931874,
          -7,
          -7,
          -7,
          -3.5519376953648374,
          -7,
          -3.5429996075770545,
          -7,
          -4.239983131866713,
          -7,
          -7,
          -7,
          -2.980746885240167,
          -3.1917303933628562,
          -3.2152849801139682,
          -3.073058160988836,
          -3.8828659197216293,
          -2.2783724736954567,
          -2.9392695863387313,
          -7,
          -3.3346547668832414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6629937971760524,
          -7,
          -7,
          -7,
          -4.0927780450665505,
          -2.201654728267682,
          -7,
          -2.656577291396114,
          -7,
          -7,
          -3.1842180852863775,
          -7,
          -7,
          -7,
          -3.1350053669438873,
          -3.4239009185284166,
          -3.3080305542661055,
          -7,
          -4.381683534970911,
          -3.211280767964129,
          -7,
          -7,
          -7,
          -3.204459142752743,
          -3.0843975191411492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.853393977450666,
          -7,
          -3.2990712600274095,
          -7,
          -7,
          -4.3842339054735975,
          -3.3203367243872486,
          -4.384329129555316,
          -7,
          -7,
          -3.5900736323081026,
          -2.441695135640717,
          -7,
          -7,
          -7,
          -3.6190933306267428,
          -2.986707768660134,
          -3.2994346559835996,
          -3.450864692379766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.710371264260763,
          -7,
          -3.558415209393273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.417571328690727,
          -4.385999284138968,
          -7,
          -3.820179558051817,
          -4.58334049186249,
          -4.008216801589691,
          -7,
          -7,
          -7,
          -7,
          -3.8902197546518407,
          -7,
          -7,
          -4.324153794511119,
          -7,
          -4.3270522653266985,
          -7,
          -5.088187491943992,
          -7,
          -4.239887318594856,
          -2.848416012647067,
          -7,
          -7,
          -7,
          -7,
          -3.825058099093539,
          -7,
          -3.9845903152271513,
          -7,
          -4.212054364801163,
          -7,
          -7,
          -7,
          -4.162310446238798,
          -4.204119982655925,
          -4.144283542967987,
          -7,
          -7,
          -4.068657019746832,
          -3.6229907048100864,
          -3.7188337183038622,
          -3.865597435075882,
          -7,
          -3.3337796697190534,
          -3.5455132852244566,
          -3.1047146693379855,
          -3.607025878434786,
          -3.735457994116918,
          -2.2133008673073458,
          -7,
          -3.603020580277891,
          -3.865518519074774,
          -7,
          -7,
          -3.9086458389071135,
          -3.7281101841003403,
          -7,
          -3.6935466881001595,
          -3.8655889804759167,
          -5.104969961264324,
          -7,
          -7,
          -3.177824971864682,
          -3.543700408844007,
          -7,
          -4.628416179045295,
          -4.101781431327967,
          -4.235831337410517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7552648914122466,
          -7,
          -4.60107628682684,
          -3.8950908969343994,
          -7,
          -3.6246650845838033,
          -3.5441491687091413,
          -2.51942409281017,
          -5.348929563892298,
          -7,
          -3.664077590185075,
          -4.6155186977102085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.910061669631165,
          -3.4742162640762553,
          -3.5042805196072773,
          -7,
          -7,
          -3.7539658658651605,
          -7,
          -7,
          -3.1420764610732848,
          -3.7985125330313516,
          -7,
          -3.7227709888066567,
          -3.6828667956623247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8257505813480277,
          -7,
          -7,
          -7,
          -3.0050732130636044,
          -7,
          -4.040681439373358,
          -7,
          -7,
          -7,
          -4.4949195032388225,
          -4.491816764062082,
          -7,
          -7,
          -3.368565785360332,
          -3.2796669440484556,
          -3.5581083016305497,
          -7,
          -3.3666097103924297,
          -3.364199102439187,
          -7,
          -7,
          -7,
          -7,
          -3.4396484295634737,
          -7,
          -7,
          -7,
          -7,
          -3.4112829130173843,
          -3.3171436620228896,
          -7,
          -7,
          -3.3200423754796446,
          -3.5998830720736876,
          -7,
          -3.8661691476337707,
          -7,
          -7,
          -7,
          -7,
          -3.725308675038557,
          -3.5548524343720542,
          -3.665299499499897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.546851001781394,
          -7,
          -7,
          -3.3624824747511743,
          -3.491251605244094,
          -3.68556261115823,
          -7,
          -3.5420573701746005,
          -3.5577477416414682,
          -3.4872798164430687,
          -3.0236639181977933,
          -3.5825557388650933,
          -3.723701893991268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2474822606770544,
          -4.2372923375674585,
          -7,
          -7,
          -3.8559792519028737,
          -3.1202447955463652,
          -7,
          -7,
          -7,
          -7,
          -3.1053398398052865,
          -3.4258601450778405,
          -7,
          -7,
          -3.3967222785037734,
          -2.390272567719502,
          -3.7081488497104047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2054750367408906,
          -7,
          -7,
          -3.4320066872695985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.662730856031272,
          -7,
          -7,
          -7,
          -7,
          -3.210853365314893,
          -7,
          -7,
          -7,
          -7,
          -3.4156409798961542,
          -7,
          -7,
          -7,
          -4.385212907084455,
          -7,
          -4.379903507451503,
          -3.903180455585522,
          -4.082336487091058,
          -2.8332849777071742,
          -3.0349944424861803,
          -3.480186663415707,
          -3.68945093632515,
          -2.737610329426487,
          -7,
          -4.078837293416897,
          -3.9061913308567564,
          -2.5305449022298983,
          -2.0087668938960634,
          -1.7870835398996032,
          -2.7752462597402365,
          -4.078366179530183,
          -4.382575319649486,
          -4.3808621953412015,
          -1.6561511826139075,
          -3.2157071184379977,
          -7,
          -3.0020580148640725,
          -2.045177012990046,
          -3.6939027410660605,
          -3.686529022816038,
          -4.379776729937588,
          -2.6665690309808827,
          -2.2649763214333523,
          -3.483587296968894,
          -2.640342011536324,
          -3.438489607941805,
          -7,
          -3.536955042101058,
          -3.785009335604058,
          -3.805296916157985,
          -3.5390940296563826,
          -2.9615847317782196,
          -7,
          -3.068978139437872,
          -4.3863384163575105,
          -2.686668567219539,
          -7,
          -3.3084399050774618,
          -3.368236156479323,
          -2.9792155752703517,
          -2.8651195661786515,
          -3.540454613671412,
          -3.216236298927863,
          -3.949958933716697,
          -3.550490423553987,
          -3.9259821003271034,
          -2.1811286997472954,
          -3.721365379435644,
          -2.409628287195821,
          -3.0105631211209922,
          -4.387336426193337,
          -3.047681883003228,
          -2.632805663414465,
          -4.090522570946947,
          -3.392679370131183,
          -3.278841505918599,
          -4.382197210377454,
          -3.5445818032049923,
          -3.5899974460440314,
          -2.276631354423071,
          -4.382845196296262,
          -4.381349771059741,
          -3.160351796497107,
          -7,
          -3.205940800357829,
          -2.912159514124199,
          -7,
          -3.2723555547531853,
          -2.736521429176014,
          -3.904571297338501,
          -2.4356376970250344,
          -7,
          -7,
          -2.7749378617219875,
          -4.408392620133361,
          -3.540543976514976,
          -7,
          -3.243814947313913,
          -3.787938431279371,
          -3.5806154692708105,
          -2.8075672397864206,
          -3.0234239480789418,
          -3.799977736388289,
          -2.3644683890954155,
          -3.1297865345203397,
          -2.831434622256806,
          -4.080301726793912,
          -7,
          -3.9411303053770306,
          -2.5089611230813635,
          -3.0333064533284095,
          -2.728337864761174,
          -7,
          -3.2968036991071967,
          -4.090011024007147,
          -7,
          -4.078801072025558,
          -2.506677432006041,
          -4.3808621953412015,
          -3.2093139057259306,
          -3.2519509249968737,
          -2.710274110514284,
          -2.4857859336457393,
          -3.309168661822757,
          -3.6856521841155243,
          -3.1907867683981013,
          -2.7060032670672225,
          -7,
          -3.547106316356606,
          -3.902456178608144,
          -2.433820882350655,
          -2.4076741092293186,
          -2.5074636188449606,
          -3.5474054596674898,
          -2.5959845824131773,
          -2.5150373560512516,
          -3.543269627143044,
          -3.140893543220026,
          -3.133503425345409,
          -1.5835703517269508,
          -3.6172275694385108,
          -3.1189092394136604,
          -3.024974818074746,
          -3.779921008715502,
          -7,
          -2.4651516539268714,
          -2.975546686034573,
          -7,
          -4.07928980609866,
          -3.348416135014412,
          -7,
          -7,
          -7,
          -3.905057942240592,
          -7,
          -2.124998812717229,
          -2.997777925619072,
          -2.4314563297226996,
          -3.4985096555251327,
          -4.390210679109047,
          -3.41355121317555,
          -3.6814764165313454,
          -3.6057897198025644,
          -3.0535498669727867,
          -3.9410266803683305,
          -2.789163252778458,
          -7,
          -7,
          -2.3698400103853987,
          -2.7311558366331012,
          -4.07930789680251,
          -7,
          -3.7067348466176946,
          -3.3983567313797542,
          -3.478999131673357,
          -4.398963736125521,
          -3.4985689855032085,
          -3.0928208626335234,
          -2.401721445968765,
          -3.6264259173569804,
          -2.417429467880523,
          -3.0034088273077426,
          -4.086769013798387,
          -2.369728479615979,
          -4.0851478121269045,
          -4.379975935132622,
          -4.0777311796523925,
          -2.392057108603371,
          -3.783224463447248,
          -3.907052884087371,
          -7,
          -2.57237951473286,
          -7,
          -2.965947762397985,
          -4.38051875807043,
          -3.3128872966235914,
          -2.0273451694820963,
          -3.6139298694145165,
          -1.9340591042340165,
          -2.5966448964610143,
          -3.2522113402363746,
          -2.66333066849445,
          -3.0991279277264674,
          -2.740499994105537,
          -3.0732643596112506,
          -2.9375178920173464,
          -3.1012470226741917,
          -4.387265215784176,
          -3.273294563057705,
          -7,
          -3.2101177828307916,
          -3.2303296869189397,
          -3.5441157663965743,
          -3.428674625648206,
          -2.121146829862744,
          -7,
          -2.26306648231497,
          -2.9725766394194153,
          -2.8199420294694213,
          -3.343462306559093,
          -2.7735545596377755,
          -2.598025573527527,
          -3.1318380689302905,
          -7,
          -3.1833535953910777,
          -3.2497908144703125,
          -2.9543560356409655,
          -7,
          -7,
          -4.08423657329355,
          -7,
          -3.6047299167977918,
          -3.1074599027639307,
          -3.427179448528025,
          -3.0259466802571935,
          -2.460718578810624,
          -2.856204024709403,
          -2.6535184129706497,
          -3.0632020427548374,
          -7,
          -7,
          -2.9893786160136258,
          -3.4923587253239288,
          -4.380138853265417,
          -4.0811852273835525,
          -2.903344381892454,
          -3.2876983961909345,
          -3.359835482339888,
          -7,
          -7,
          -4.081221250482603,
          -4.384263785722803,
          -4.3793236507533155,
          -4.3819089060057985,
          -3.4996183597000066,
          -2.454086205039016,
          -3.379142286647321,
          -3.2336124653140192,
          -7,
          -4.0829109745222265,
          -3.3487649395500347,
          -2.7543661168112243,
          -4.379178565528129,
          -3.5453071164658243,
          -2.7267733279783406,
          -3.4047140126688986,
          -3.8690262615868187,
          -2.6070055705400916,
          -3.080609309929619,
          -7,
          -4.379396175194164,
          -2.643551368562945,
          -3.8059593778018046,
          -2.392545351176965,
          -3.311418300755367,
          -2.2999077870759956,
          -4.392749698374226,
          -7,
          -7,
          -0.6360041990547592,
          -3.015030256527944,
          -2.1863912156954934,
          -2.3720290118169007,
          -3.441909267199942,
          -3.4965837344890947,
          -3.544829607366698,
          -4.081041105100104,
          -3.317941520549953,
          -3.142389466118836,
          -2.899157001447223,
          -7,
          -4.3848370882036845,
          -2.5963003092425367,
          -3.207652316779632,
          -2.7878404649420316,
          -7,
          -3.632001499438424,
          -2.502741118806208,
          -3.219846386024361,
          -3.272819243853222,
          -3.223790043636305,
          -1.2633858238214657,
          -2.6618683393442066,
          -7,
          -2.817778879510587,
          -7,
          -3.6926178191739303,
          -1.9540643506309214,
          -3.1494415075655926,
          -2.505794491644087,
          -2.5495917370235555,
          -2.902693659213221,
          -3.3264382767957286,
          -3.5261291883290653,
          -2.8428284227300984,
          -2.884108866405466,
          -2.781755374652469,
          -4.078764847613001,
          -7,
          -7,
          -2.8210219669692687,
          -2.6339731557896737,
          -3.7840464158081133,
          -3.109898116073996,
          -2.6153320289821393,
          -3.4811200128020143,
          -3.1294354674921263,
          -3.687207803454867,
          -2.8744818176994666,
          -7,
          -2.813458080832292,
          -3.0101899867944697,
          -2.786804641247632,
          -2.826375974639867,
          -2.6616761964944007,
          -3.043458415537492,
          -4.390405156480081,
          -2.7728202722091733,
          -1.839296442332237,
          -1.5690249136109147,
          -7,
          -2.860426089824901,
          -3.428872395902744,
          -2.5774270667201127,
          -1.958292711812444,
          -1.5139448067925088,
          -2.549139554034408,
          -3.535547279176668,
          -4.378615902031225,
          -3.5700924009287913,
          -3.3429069541501595,
          -2.5948735262859217,
          -3.9137785424538705,
          -2.1457341891998967,
          -3.9085743706908986,
          -2.052759379088285,
          -7,
          -7,
          -2.528965315202079,
          -2.8191384047482697,
          -4.147851449216902,
          -3.4013378675031465,
          -3.834293512442696,
          -3.039109632768245,
          -2.8477688997530954,
          -2.744991093676315,
          -2.4644033698676973,
          -3.1562725432178564,
          -3.961974486582087,
          -3.361031612033991,
          -3.6245857321792334,
          -3.509884883455448,
          -2.2536800143858366,
          -3.748672460388167,
          -3.343814631766453,
          -2.7167645248586396,
          -3.8358807318173946,
          -2.728522042246275,
          -4.43576475926038,
          -3.5584150291351007,
          -2.334754204184258,
          -2.5220269964024324,
          -3.303651959291475,
          -4.652323713973758,
          -3.3763692615312713,
          -3.0204844661071655,
          -7,
          -2.4300950892631468,
          -3.23598728950903,
          -3.5504790704430675,
          -3.8038958708450883,
          -3.550661875014696,
          -3.928549467001664,
          -3.706595875112968,
          -4.014954336507545,
          -3.3924373204536415,
          -3.6857417386022635,
          -2.9835387745764432,
          -3.1881371786857495,
          -3.203119460219802,
          -2.769785387826406,
          -2.7073048557521924,
          -3.1685905167231248,
          -3.2039163593896003,
          -4.110101275275583,
          -2.536594192858174,
          -2.7507698054481593,
          -2.6381781753347258,
          -2.0391677845130314,
          -2.634931608578787,
          -2.347673607595536,
          -3.923036668670786,
          -2.8729613626370636,
          -3.3998034713645615,
          -3.7800111094361224,
          -3.628096869190681,
          -2.814626734760099,
          -3.3701274134264128,
          -3.7907776013376937,
          -2.3746115195185786,
          -2.5301878237441495,
          -3.608579923054669,
          -4.384460943824492,
          -2.2814971589213475,
          -3.6868506827358676,
          -2.3907696872309554,
          -3.8680857845717336,
          -4.16498489374402,
          -2.8001399589911173,
          -3.1868259884637125,
          -7,
          -2.7777500274085205,
          -2.9035636610561455,
          -2.7901816398064154,
          -1.7604028989952634,
          -2.8754980695455994,
          -3.1529286821843288,
          -2.030618256351181,
          -2.035287051820646,
          -3.009645618907136,
          -2.3165851251386878,
          -2.497401951504548,
          -3.257022238514035,
          -2.8945266176998237,
          -4.085344103421502,
          -3.1153410244613617,
          -2.690979421266162,
          -3.0556096627549363,
          -4.081743249922721,
          -4.079271714641203,
          -7,
          -2.61627627546151,
          -4.156594577249076,
          -2.480593341977752,
          -3.234955743400412,
          -2.6181718577859976,
          -4.082354451330969,
          -3.2287082598019725,
          -2.233218159615806,
          -3.372443327772641,
          -3.8048717291471643,
          -3.9066402697645035,
          -2.706373359682506,
          -3.904138265829186,
          -1.9101034484834232,
          -2.9781332725009353,
          -3.5436246604609187,
          -3.932084619469911,
          -3.0221454662121063,
          -3.065291062340054,
          -2.5070955710456486,
          -4.0922819190362185,
          -3.7858279199958655,
          -3.0890657240506734,
          -3.911370707116138,
          -2.5891336581773676,
          -1.6781969175288394,
          -2.89667208170219,
          -3.9017488436793126,
          -2.904560992080643,
          -7,
          -7,
          -2.7258701213445855,
          -2.4175264570697843,
          -2.19495760403611,
          -7,
          -3.305334830880316,
          -2.7817147401787943,
          -2.8733734517676273,
          -3.078967336244875,
          -7,
          -3.6220412382089324,
          -2.763565073147549,
          -2.8352374734003063,
          -3.4797552093043174,
          -2.8443764113642773,
          -3.120348760073331,
          -2.2954586870249005,
          -3.9104998964054243,
          -3.1228881475449426,
          -3.3154805264453038,
          -4.389272429175553,
          -3.2581239524386674,
          -2.907306471393107,
          -2.5952066401840526,
          -3.778675706087729,
          -3.1296415629730068,
          -3.2234310385514684,
          -4.407220892927397,
          -3.0170565381707126,
          -3.7855077880892263,
          -2.5612098352620314,
          -3.2175532041585395,
          -3.2946696745484663,
          -2.082394361228675,
          -3.119981307304154,
          -2.7556684532606974,
          -3.4968777785966436,
          -7,
          -3.254377447706169,
          -4.3877278748679,
          -2.244008706403989,
          -2.703004620444392,
          -3.409070437559028,
          -2.840412485349145,
          -3.075094879174926,
          -7,
          -2.6651704215534737,
          -2.2600117280520315,
          -2.7413722369066322,
          -3.5667067908011667,
          -2.5242362970977723,
          -3.3803099337883635,
          -2.3209494269230264,
          -2.9644167839824984,
          -2.7139866398277115,
          -2.327507119163714,
          -3.443610631649284,
          -2.600955339568225,
          -4.3808983308391545,
          -7,
          -3.1889753306927693,
          -3.5761602878635035,
          -3.488762172066694,
          -3.6424974950329125,
          -2.7441942081672615,
          -3.5634810853944106,
          -2.4801679759527886,
          -2.611270116902844,
          -1.7813244556669878,
          -3.1641875676827644,
          -4.388154507768882,
          -2.89687054041404,
          -7,
          -3.123042319020609,
          -3.0014555467434025,
          -2.761114365809316,
          -7,
          -3.49991035702922,
          -3.549020787680313,
          -2.2449861731746967,
          -4.391129260417903,
          -7,
          -4.380066452751471,
          -3.777698624514739,
          -4.080914958856625,
          -4.380988656432105,
          -7,
          -3.076349117493459,
          -2.2764618041732443,
          -2.474559037955062,
          -4.386962441214617,
          -3.309257450996068,
          -7,
          -7,
          -4.390705541226371,
          -3.6093987370065896,
          -3.459844642388208,
          -3.7985643303338046,
          -2.90614341663761,
          -3.3873601604019097,
          -2.755890404784822,
          -7,
          -7,
          -3.388585562915087,
          -4.086680093734625,
          -7,
          -2.68185985669508,
          -3.7883451651521183,
          -7,
          -3.3876001266898017,
          -3.4181189156542,
          -3.072951369451591,
          -7,
          -7,
          -3.711992713282365,
          -7,
          -2.8127579461985768,
          -3.622214022966295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.649329448931539,
          -7,
          -7,
          -7,
          -4.2073111514361345,
          -3.4447992086373675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.392540633818798,
          -7,
          -7,
          -1.372372610623625,
          -4.095214697082543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.86840930331496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.762347153378673,
          -7,
          -7,
          -2.2301081646076315,
          -7,
          -3.681512586638962,
          -7,
          -7,
          -7,
          -7,
          -1.0812776032085405,
          -3.5487791761200076,
          -3.2045269429998404,
          -7,
          -3.1229363730163042,
          -7,
          -7,
          -7,
          -3.1792644643390253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.457170099784619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.973681918503984,
          -7,
          -7,
          -4.825763554850498,
          -2.9822712330395684,
          -2.347167327739883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505014240084107,
          -7,
          -3.548635059814752,
          -7,
          -7,
          -7,
          -3.8889576967672497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2140044606589733,
          -7,
          -7,
          -7,
          -7,
          -3.908610106269122,
          -7,
          -3.0519239160461065,
          -7,
          -7,
          -3.547106316356606,
          -7,
          -2.01546454355833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1550322287909704,
          -7,
          -3.8661100398443766,
          -7,
          -7,
          -7,
          -7,
          -3.1721162176299447,
          -7,
          -7,
          -3.706611115387456,
          -7,
          -7,
          -7,
          -4.375773316604984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.777909908625889,
          -7,
          -3.8527848686805477,
          -7,
          -7,
          -7,
          -3.7687860469080143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6953848895587407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9433955765089546,
          -7,
          -7,
          -7,
          -7,
          -2.971349002798928,
          -2.3415758274854883,
          -2.432547358963337,
          -2.85105440671866,
          -2.503563719643652,
          -2.2935203938852355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7029472461815556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1348851196049536,
          -7,
          -1.7354084292983945,
          -2.076872040931254,
          -3.3119656603683665,
          -7,
          -7,
          -3.7743709598499167,
          -7,
          -7,
          -7,
          -3.3639690449788393,
          -7,
          -7,
          -2.6273658565927325,
          -3.0633333589517497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0876800300462937,
          -7,
          -7,
          -5.412293349675333,
          -7,
          -7,
          -7,
          -1.953988461767908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8904704794849647,
          -7,
          -7,
          -7,
          -7,
          -2.5575072019056577,
          -2.291939414775256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.365175879608403,
          -3.3418300569205104,
          -7,
          -7,
          -3.846708145456007,
          -2.7890516223748403,
          -4.539327063539375,
          -7,
          -3.8693323168395377,
          -7,
          -7,
          -7,
          -3.407603325351417,
          -7,
          -3.2805783703680764,
          -3.4479328655921804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4718293555258857,
          -7,
          -7,
          -3.0025979807199086,
          -4.230103903455626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.060508975605298,
          -3.497758718287268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.175406142156769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.081299290281622,
          -4.394469192347434,
          -5.0973880528051705,
          -7,
          -7,
          -5.020361282647708,
          -3.8041394323353503,
          -7,
          -7,
          -7,
          -3.5852350633657752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.66343167895703,
          -7,
          -7,
          -3.4232567994467242,
          -4.297694869693073,
          -7,
          -7,
          -7,
          -3.7782236267660965,
          -3.9003671286564705,
          -3.8167493372332375,
          -4.183594375321738,
          -3.3923891456860735,
          -7,
          -7,
          -4.421101895083551,
          -4.698444189830948,
          -3.2843179154306097,
          -7,
          -3.6356847625472226,
          -3.3221727606893467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.934889645032683,
          -7,
          -7,
          -4.184814416196629,
          -7,
          -7,
          -4.300008202553813,
          -3.692905643431454,
          -4.203658299456246,
          -4.331447542877797,
          -4.203658299456246,
          -3.36679638328673,
          -7,
          -7,
          -7,
          -7,
          -4.618194580987137,
          -7,
          -4.37287519679339,
          -3.7056741038112646,
          -2.906712056942964,
          -3.6921416093667836,
          -7,
          -7,
          -3.914161753873292,
          -7,
          -7,
          -3.3331836568930138,
          -3.6633805032588294,
          -3.453381302785419,
          -7,
          -4.4434507498835405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.516231195157669,
          -3.7981825766565604,
          -5.706768973168231,
          -7,
          -2.875970261782902,
          -7,
          -4.957420505061151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.137528174126554,
          -4.785586064349684,
          -7,
          -4.224481265303632,
          -3.5299434016586693,
          -4.900416291286778,
          -3.2371526076727806,
          -7,
          -3.5836028559611703,
          -4.957870561119627,
          -7,
          -5.348322390274462,
          -7,
          -7,
          -4.010098454941318,
          -7,
          -7,
          -7,
          -7,
          -2.9822712330395684,
          -7,
          -2.9297253783780044,
          -7,
          -3.194403325910006,
          -7,
          -7,
          -3.504800851389655,
          -2.9734357546986665,
          -7,
          -7,
          -3.475235222604128,
          -7,
          -2.1554547095577474,
          -3.1762842359448387,
          -2.6554585929400747,
          -3.102605194126567,
          -3.0243277596576124,
          -2.4382785804926073,
          -3.3987210360255333,
          -7,
          -7,
          -2.598858872679337,
          -2.6486852034198645,
          -2.1166681087783803,
          -7,
          -7,
          -2.425968732272281,
          -7,
          -7,
          -7,
          -7,
          -2.7499880034871875,
          -4.012450544579183,
          -7,
          -3.021602716028242,
          -7,
          -1.7731110257441203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146283113159587,
          -7,
          -3.715501945293284,
          -7,
          -2.849214606209089,
          -7,
          -2.8382192219076257,
          -7,
          -2.3660970326463957,
          -4.205475036740891,
          -7,
          -7,
          -7,
          -7,
          -4.157940055964767,
          -7,
          -7,
          -3.9172428579074663,
          -7,
          -2.968783745744303,
          -7,
          -7,
          -2.6014080605346837,
          -7,
          -7,
          -7,
          -2.954724790979063,
          -1.592980333476044,
          -7,
          -3.8283376000590046,
          -7,
          -7,
          -7,
          -2.807100657788488,
          -3.3554515201265174,
          -7,
          -3.468537213596077,
          -2.671833768853756,
          -3.464638559095033,
          -7,
          -3.7467509290772156,
          -7,
          -2.191031608848618,
          -3.238798562713917,
          -7,
          -7,
          -3.7649416395104787,
          -3.5138831856110926,
          -7,
          -3.0310042813635367,
          -3.6891565819544923,
          -3.398981066658131,
          -7,
          -7,
          -3.3951515915045425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.719248398447946,
          -7,
          -7,
          -7,
          -3.1709171502194033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.840942080243099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7905666251460763,
          -7,
          -7,
          -7,
          -3.1031192535457137,
          -7,
          -7,
          -3.4620983811351556,
          -3.161368002234975,
          -7,
          -7,
          -7,
          -2.3183615117557332,
          -7,
          -7,
          -3.4220971631317103,
          -7,
          -2.646849110819487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.489355711136674,
          -5.571571419324428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1595671932336202,
          -4.605870446185008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295786940251609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.902456178608144,
          -2.01546454355833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752225204288859,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9710437918360286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7615658010500246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.17676823054687,
          -7,
          -7,
          -3.550595207489328,
          -3.082066934285113,
          -2.836535091898369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6187719880431564,
          -2.4885507165004443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4082399653118496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.598482104891492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.170848203643309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9784544333652287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.144262773761991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.829911359893916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.8282144196427765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.875131323916717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021781741232203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.587048357103245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276588167779985,
          -7,
          -7,
          -4.920926445630671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.093806775615175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8674674878590514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.677643446521776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.709339227683591,
          -7,
          -7,
          -3.658774320844357,
          -7,
          -7,
          -7,
          -5.404832006795777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4642510223795595,
          -7,
          -7,
          -7,
          -7,
          -4.336039245371044,
          -7,
          -7,
          -7,
          -3.721068301797159,
          -7,
          -3.11311433972209,
          -7,
          -7,
          -3.2600713879850747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.753429841575423,
          -2.795880017344075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.190279159369666,
          -4.7856145249468245,
          -7,
          -7,
          -7,
          -2.9429995933660407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2718880526604837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.091375767429715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.748498126613737,
          -2.0709609158009337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.928190948038757,
          -7,
          -7,
          -4.298547435078706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.353570041598004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.389431897582197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.13640344813399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5020172148271476,
          -7,
          -2.6182573448404014,
          -2.6735737964230517,
          -3.564902672529205,
          -3.8217099972983766,
          -7,
          -7,
          -2.1637883370283273,
          -3.6468691423908055,
          -7,
          -3.081707270097349,
          -7,
          -2.607025878434786,
          -7,
          -3.0234769399015815,
          -3.9618006391916785,
          -7,
          -3.7844033017530085,
          -3.161378450252407,
          -3.417969642214737,
          -7,
          -7,
          -2.7013212268209346,
          -3.15060295179301,
          -7,
          -4.0961913852351834,
          -7,
          -7,
          -7,
          -7,
          -3.237040791379191,
          -7,
          -3.653309012938479,
          -7,
          -2.96883304489043,
          -7,
          -3.446624141522082,
          -7,
          -2.323158310195747,
          -7,
          -2.3542685477139713,
          -2.8614597320725235,
          -2.3406423775607053,
          -3.416141031168329,
          -7,
          -7,
          -7,
          -2.689107926604332,
          -3.1489109931093564,
          -3.499228724283611,
          -3.18537214331104,
          -7,
          -3.397070549959409,
          -3.14674801363064,
          -7,
          -2.9400181550076634,
          -2.8167382992623913,
          -7,
          -3.3875677794171883,
          -3.7113853790984517,
          -3.241531831992722,
          -7,
          -3.292920299600006,
          -7,
          -7,
          -3.8360074591255313,
          -2.580696939712437,
          -7,
          -3.139144150562046,
          -3.9539335679488627,
          -7,
          -7,
          -7,
          -7,
          -3.253531843527005,
          -7,
          -2.867271018965448,
          -7,
          -7,
          -3.0883133155880964,
          -3.659250468772661,
          -2.1702617153949575,
          -3.037692040279623,
          -7,
          -2.5709072990808,
          -3.690550461510359,
          -3.230521905914519,
          -7,
          -7,
          -3.3116479226525204,
          -3.0320812676114404,
          -1.7801314083513837,
          -1.8926004786730173,
          -7,
          -2.912473780921181,
          -7,
          -7,
          -7,
          -3.2571583897731577,
          -3.286905352972375,
          -2.9813655090785445,
          -7,
          -7,
          -3.500425167997401,
          -7,
          -7,
          -2.962527174843811,
          -2.2814878879400813,
          -2.433820882350655,
          -7,
          -7,
          -7,
          -1.136098152915248,
          -1.6462297585471417,
          -7,
          -2.300842296999415,
          -3.0242318383830744,
          -3.374198257929083,
          -3.9228810912082936,
          -3.3823773034681137,
          -3.160846796673584,
          -3.140036410975282,
          -3.6270584640009895,
          -3.2620553771910674,
          -2.698535492562001,
          -7,
          -2.797328653119835,
          -3.1680061445387286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4820155764507117,
          -3.0542299098633974,
          -2.039259383258555,
          -3.195415296209372,
          -7,
          -3.9552065375419416,
          -7,
          -3.0242803760470798,
          -2.973897197435795,
          -7,
          -3.9112108931375533,
          -7,
          -7,
          -3.3939260065858368,
          -3.3038437748886547,
          -7,
          -7,
          -7,
          -3.167317334748176,
          -7,
          -7,
          -3.4954055631461936,
          -3.1183749671059116,
          -3.5826314394896364,
          -3.2165617350479265,
          -3.652536418593025,
          -7,
          -7,
          -3.4542699919165134,
          -7,
          -7,
          -7,
          -7,
          -3.3400473176613934,
          -7,
          -7,
          -3.2136062891507047,
          -7,
          -4.312198520372529,
          -7,
          -7,
          -3.0373996793517093,
          -7,
          -3.792811771248147,
          -3.1212314551496214,
          -7,
          -2.880356199419236,
          -7,
          -2.91539983521227,
          -2.7467898321526123,
          -2.8842287696326037,
          -2.8017847035341163,
          -7,
          -3.783331762887424,
          -7,
          -7,
          -3.0565237240791006,
          -3.6706354297483315,
          -7,
          -4.124504224834283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.842359573330675,
          -2.865340905624584,
          -7,
          -3.285557309007774,
          -7,
          -3.933183479174614,
          -7,
          -7,
          -7,
          -7,
          -3.011993114659257,
          -3.0546130545568877,
          -7,
          -1.9000844768522183,
          -2.2969392795618266,
          -2.765668554759014,
          -7,
          -4.869078264263427,
          -7,
          -7,
          -2.218985395949339,
          -7,
          -7,
          -2.8258586820285867,
          -2.7069614941736275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8034327273579733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.916980047320382,
          -7,
          -7,
          -3.8745977687032,
          -2.696520201326676,
          -7,
          -7,
          -7,
          -3.2649358217826854,
          -7,
          -3.4725614360755417,
          -7,
          -4.245890865709575,
          -3.4154741681092355,
          -7,
          -7,
          -2.5720579899263045,
          -2.4768694167990635,
          -2.544729322714663,
          -2.5185139398778875,
          -3.921686475483602,
          -3.479143247978613,
          -3.3900514964589874,
          -7,
          -2.5534278708133193,
          -2.855115160771781,
          -3.137986732723532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.559068334034537,
          -3.041611970435241,
          -7,
          -3.3183764152227964,
          -7,
          -4.358321983805685,
          -1.9393272143745417,
          -3.3111178426625054,
          -3.4137187650610787,
          -7,
          -3.4056877866727775,
          -2.7689668009657864,
          -3.0444090865590487,
          -4.019863713967843,
          -3.6659560294539566,
          -2.797209815771563,
          -3.049734732406212,
          -3.6795187436957892,
          -7,
          -4.625196657969116,
          -3.646060468555641,
          -3.273926780100526,
          -7,
          -7,
          -2.6203810384702573,
          -3.4452927694259716,
          -3.34908316877959,
          -7,
          -3.6027109449575576,
          -7,
          -7,
          -7,
          -2.4074248987944076,
          -7,
          -2.5851383133972536,
          -3.446459496594692,
          -3.391111613702803,
          -3.911287847949822,
          -2.6176259187047988,
          -4.398983377343561,
          -7,
          -3.5814945422908995,
          -2.937238280343299,
          -2.451077576038457,
          -3.2581581933407944,
          -2.815411701875331,
          -3.0159881053841304,
          -2.908842315881035,
          -2.0624056925748784,
          -2.3031305776643296,
          -2.7021842679490464,
          -2.9854264740830017,
          -7,
          -7,
          -7,
          -3.382917135087531,
          -7,
          -3.289514631590605,
          -7,
          -3.1793167197213412,
          -7,
          -7,
          -4.610713382191951,
          -7,
          -7,
          -7,
          -4.724505247609918,
          -7,
          -7,
          -4.30513631894364,
          -4.587368556643926,
          -7,
          -7,
          -7,
          -4.031481177240234,
          -4.401835479094576,
          -4.296138453408722,
          -7,
          -7,
          -4.6288638395509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1960840270593827,
          -7,
          -4.0694553366895745,
          -7,
          -7,
          -4.7845388415525,
          -7,
          -3.844805457441659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.327747071252456,
          -2.4127964287165433,
          -7,
          -4.029896363201768,
          -3.6584407064111257,
          -7,
          -3.8794590739205956,
          -7,
          -3.747547120072836,
          -7,
          -7,
          -7,
          -4.066242040644645,
          -2.6230106014763095,
          -7,
          -3.982029891281814,
          -3.4285127466072924,
          -7,
          -3.88320703335239,
          -7,
          -3.7825442840100103,
          -7,
          -4.152720675940873,
          -4.091951002291903,
          -5.707643403895459,
          -7,
          -2.9533454203359306,
          -7,
          -4.007989459470628,
          -7,
          -7,
          -3.5233887417323,
          -7,
          -3.2846562827885157,
          -7,
          -7,
          -4.491781775584165,
          -7,
          -4.250273586232247,
          -3.2899232395240046,
          -4.127779483108085,
          -3.7287054046396793,
          -1.2263655314931408,
          -3.2873732587262765,
          -7,
          -2.797873191167606,
          -4.748244248991798,
          -7,
          -3.7265642161622448,
          -4.145807366632503,
          -7,
          -3.3104808914626753,
          -7,
          -7,
          -7,
          -7,
          -2.4910644209166546,
          -2.788168371141168,
          -2.9662982070631547,
          -7,
          -7,
          -3.8923914547060727,
          -7,
          -3.233884108765886,
          -7,
          -3.367852683427225,
          -7,
          -3.903781592845338,
          -3.043283665570575,
          -3.3778524190067545,
          -7,
          -7,
          -7,
          -3.303412070596742,
          -7,
          -7,
          -3.86975959478241,
          -7,
          -7,
          -2.6620829372459838,
          -1.5508540336935677,
          -7,
          -3.5907675519657363,
          -7,
          -7,
          -4.310714548718119,
          -3.9232854767451384,
          -4.797828229029252,
          -7,
          -7,
          -2.5857209678955364,
          -7,
          -3.0337252442056895,
          -7,
          -2.879955585122749,
          -2.9609235685693225,
          -7,
          -7,
          -7,
          -2.6307183730170616,
          -3.7937903846908188,
          -7,
          -7,
          -7,
          -7,
          -3.0398105541483504,
          -2.96528011476304,
          -7,
          -7,
          -2.9107133176711484,
          -2.5903215880567183,
          -7,
          -3.886772643054438,
          -7,
          -7,
          -7,
          -3.549738731264899,
          -2.7804691164051643,
          -2.5902539778001947,
          -7,
          -3.0038911662369103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.552303109338354,
          -2.8889092592635315,
          -7,
          -7,
          -2.7349140725151675,
          -3.052910882091185,
          -3.04563587107822,
          -7,
          -3.5566441721731303,
          -3.636086515103073,
          -2.720731622155907,
          -2.751279103983342,
          -3.784938081382093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.931457870689005,
          -7,
          -3.8481644754706736,
          -7,
          -4.201724770116379,
          -4.26254600711293,
          -2.931893544842148,
          -2.8444771757456815,
          -7,
          -3.203576774977973,
          -7,
          -2.8606374167737547,
          -3.480438147177817,
          -7,
          -7,
          -2.659372822480162,
          -3.4302363534115106,
          -3.5159069441638047,
          -3.399846712712922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2064403505010706,
          -3.3571722577230334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.285669805960068,
          -7,
          -3.852479993636856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216456214915742,
          -3.39375064034808,
          -3.0860037056183818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.564547711755948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5101426994025733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9320930828571,
          -2.361609805175202,
          -3.4410184153526147,
          -3.901785145303599,
          -7,
          -7,
          -2.394191291136409,
          -4.280760426326267,
          -3.6124659639531425,
          -3.5750723257138124,
          -7,
          -2.571838182362705,
          -7,
          -3.111669230970648,
          -7,
          -7,
          -3.3936336901704776,
          -3.1480223392162925,
          -3.2965555060882235,
          -7,
          -7,
          -2.732215001029787,
          -3.6205524447294355,
          -7,
          -3.735844033532741,
          -7,
          -7,
          -7,
          -3.560026248912892,
          -3.2034861742721255,
          -7,
          -3.0671452788853952,
          -7,
          -7,
          -7,
          -3.4421691622109902,
          -7,
          -3.565611724902059,
          -7,
          -2.7058637122839193,
          -2.9004278224560105,
          -2.9476787399369364,
          -3.295347148333618,
          -7,
          -7,
          -7,
          -2.688435434839766,
          -3.4449811120879446,
          -3.2555539010842085,
          -2.9540011676815703,
          -7,
          -3.282848602834645,
          -3.2670934700945033,
          -3.111262513659065,
          -3.597695185925512,
          -2.9962927185413215,
          -3.52543355342882,
          -7,
          -3.8121108412030997,
          -3.44999702677108,
          -3.530071568837378,
          -7,
          -3.4243915544102776,
          -7,
          -3.436374704897461,
          -2.525538393658412,
          -3.525821952156663,
          -3.039176084376041,
          -3.85554784627362,
          -7,
          -2.748532568461719,
          -7,
          -3.5440680443502757,
          -3.1097894001793462,
          -7,
          -3.0734739527696653,
          -7,
          -2.9667672920577095,
          -2.5356393004678064,
          -3.293877950444278,
          -2.3478177127089124,
          -3.0619234632803045,
          -3.3506356082589543,
          -2.647827581642871,
          -3.318272080211627,
          -3.3439662859296195,
          -3.519434194913703,
          -7,
          -3.4347285417797577,
          -2.7561604817807175,
          -2.811909980420099,
          -1.812643314985218,
          -7,
          -2.904921530689267,
          -7,
          -7,
          -3.508395033133053,
          -2.481514288346029,
          -7,
          -3.111850362800993,
          -3.32990612340021,
          -2.8936384880060504,
          -3.1033149257643444,
          -7,
          -3.5435714239623652,
          -3.009981753317307,
          -2.510854226653924,
          -2.4076741092293186,
          -7,
          -7,
          -1.136098152915248,
          -7,
          -1.6865085919184652,
          -3.5959369062691735,
          -1.8747590403579981,
          -2.975052314407599,
          -3.091784160263216,
          -2.08845413666929,
          -2.9718554490935882,
          -3.220232448467026,
          -7,
          -3.2692015103702907,
          -2.7539658658651605,
          -3.5246557123577773,
          -7,
          -2.7317805659591463,
          -2.9147208373605693,
          -7,
          -7,
          -3.81489655406238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9828847574477972,
          -2.910250772300148,
          -2.226831810658721,
          -3.5809249756756194,
          -7,
          -7,
          -7,
          -3.5390760987927767,
          -2.664433029445815,
          -3.850278552518037,
          -3.6763277338813203,
          -7,
          -7,
          -7,
          -2.79579894147347,
          -3.5121505369220305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0592267228698455,
          -3.652052848248105,
          -3.5644293269979834,
          -2.7685041151913716,
          -7,
          -7,
          -7,
          -3.586137025230793,
          -3.5478977175630972,
          -7,
          -7,
          -2.501137541684781,
          -7,
          -3.64060067766542,
          -7,
          -7,
          -2.5269420456780045,
          -7,
          -3.0991624929285946,
          -2.4971271893465334,
          -3.331427296520743,
          -2.5955810035695044,
          -7,
          -2.88752353061025,
          -2.573715302284969,
          -3.0420830591819565,
          -2.7683297191556235,
          -2.95784663370815,
          -3.8701111553644005,
          -7,
          -7,
          -2.898907927008518,
          -3.791795877259999,
          -7,
          -3.688983090121954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5639554649958125,
          -2.555935188309782,
          -2.6989700043360187,
          -7,
          -2.8121610418869056,
          -4.406642355350766,
          -3.3940574848093257,
          -7,
          -7,
          -3.5472823079633033,
          -7,
          -2.382145741488806,
          -2.7113250813570287,
          -3.5219222448835,
          -2.4193655941906242,
          -1.7899822259450318,
          -2.9740509027928774,
          -3.3675955024067696,
          -4.8702031837463045,
          -7,
          -7,
          -2.6619309413533503,
          -7,
          -3.510410948010177,
          -7,
          -2.458682275856224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3551640665152047,
          -3.4645376212982324,
          -7,
          -7,
          -7,
          -7,
          -3.581949658373318,
          -3.096678327496078,
          -7,
          -2.9798896670453554,
          -3.579612130740304,
          -7,
          -3.946206553842783,
          -1.7648748393716502,
          -7,
          -7,
          -7,
          -3.068427069462389,
          -7,
          -3.33724778856359,
          -7,
          -3.955711796961274,
          -7,
          -7,
          -7,
          -2.737123471010412,
          -2.6151606643165564,
          -2.7960993949284183,
          -2.6449307079135873,
          -3.9864582127373063,
          -2.939419403329317,
          -3.1019760718329814,
          -3.047145014047316,
          -2.3201462861110542,
          -2.3504806137955305,
          -2.9589618439223178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3948017771627113,
          -2.669704193961892,
          -7,
          -7,
          -7,
          -3.9365294501839028,
          -2.20682587603185,
          -3.530199698203082,
          -3.3439793994775977,
          -7,
          -2.6850696293911485,
          -2.9766774271692067,
          -2.969602264848539,
          -3.5950183085200775,
          -3.2990712600274095,
          -3.0450294373885924,
          -3.3718986947787415,
          -3.7870351820262234,
          -7,
          -4.626059859121137,
          -3.1048284036536553,
          -7,
          -7,
          -7,
          -2.54520399537264,
          -3.237732193117367,
          -7,
          -7,
          -3.728272597895017,
          -7,
          -7,
          -7,
          -2.5877670717926997,
          -3.5802405082653763,
          -2.907411360774586,
          -3.363737299322217,
          -7,
          -3.873396175269904,
          -2.9015544716083577,
          -4.037985679548938,
          -7,
          -2.747460362247467,
          -2.714537276775954,
          -2.7358483078954117,
          -7,
          -3.12057393120585,
          -3.534026106056135,
          -2.4101443047027806,
          -2.270703608382223,
          -2.396689613731324,
          -2.6073656530153815,
          -7,
          -7,
          -3.4204508591060683,
          -3.54282542695918,
          -7,
          -3.5848963441374497,
          -2.3212449937489508,
          -7,
          -2.759831461061373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.735367320687716,
          -4.42125832787776,
          -7,
          -3.775173385424787,
          -3.8543833409958466,
          -7,
          -7,
          -4.360006132229098,
          -4.440184654070886,
          -4.106513862313081,
          -4.310640216862898,
          -7,
          -4.397322872237093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.264865026366129,
          -2.958844834507418,
          -7,
          -7,
          -7,
          -7,
          -3.8908260595923116,
          -7,
          -4.400710636773232,
          -4.376941757146759,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.256645598044453,
          -4.341246520447747,
          -2.057576614010089,
          -7,
          -3.473939276599178,
          -2.7875021474524684,
          -3.5616379545646066,
          -4.080518260527118,
          -7,
          -3.6511561995853357,
          -3.2547206696009736,
          -7,
          -4.48274499054841,
          -3.4982232265431157,
          -2.5119264649918027,
          -3.640978057358332,
          -3.700718135713169,
          -3.4955443375464483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.38009058759723,
          -3.889672795651036,
          -5.231660699116671,
          -7,
          -2.73559889969818,
          -7,
          -3.424237414280535,
          -7,
          -5.410073359216594,
          -3.6900187807886953,
          -4.284859176733764,
          -7,
          -3.8984326288792706,
          -3.997357255688633,
          -7,
          -7,
          -4.281873856870123,
          -7,
          -4.01000297412706,
          -4.524772477368776,
          -1.0019077918180315,
          -3.026831167505327,
          -3.968977668982721,
          -3.8048206787211623,
          -4.206733381111317,
          -7,
          -7,
          -4.335598296533003,
          -3.875138464437482,
          -3.5298151966446305,
          -7,
          -3.501470072100412,
          -7,
          -7,
          -2.556194049154312,
          -3.2247056756774772,
          -2.823450076875887,
          -7,
          -7,
          -3.6946929263314843,
          -3.7155855518931964,
          -7,
          -7,
          -3.319053982508718,
          -7,
          -3.8616206903556995,
          -2.9914159588764146,
          -3.5717088318086874,
          -7,
          -4.207957342972937,
          -7,
          -3.0222515771745355,
          -7,
          -7,
          -3.4647875196459372,
          -7,
          -7,
          -3.6599162000698504,
          -1.7541130095162047,
          -7,
          -7,
          -7,
          -7,
          -3.9267436234751827,
          -3.264773351385913,
          -4.204919975839634,
          -7,
          -7,
          -2.563595902178134,
          -7,
          -2.8495729561290286,
          -7,
          -2.6859406824820153,
          -2.897330976597888,
          -7,
          -7,
          -7,
          -3.160568564398739,
          -7,
          -7,
          -7,
          -3.6103407114521566,
          -7,
          -2.886960486691408,
          -2.917855464834902,
          -4.265266047887377,
          -7,
          -2.94911107633224,
          -2.6651478515386624,
          -7,
          -7,
          -7,
          -7,
          -4.02669665597816,
          -7,
          -2.8135539162279573,
          -2.635870232986101,
          -7,
          -2.7363965022766426,
          -7,
          -7,
          -7,
          -3.9389198122447717,
          -3.5515719736742537,
          -7,
          -2.7023347819567896,
          -7,
          -3.505963518018126,
          -2.5890749869470655,
          -2.830406713089672,
          -3.3617907726863363,
          -3.7046651854545294,
          -3.457806229082977,
          -7,
          -3.0100348033976156,
          -3.017555014414844,
          -3.654176541877961,
          -7,
          -7,
          -7,
          -3.5160062303860475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.785199289728364,
          -7,
          -3.7596930204516097,
          -3.800980415439888,
          -3.2632216936676484,
          -3.044461360810665,
          -7,
          -3.355930187078868,
          -7,
          -2.8997597236876644,
          -3.3913468443013244,
          -7,
          -7,
          -2.614705516854607,
          -3.1283992687178066,
          -3.4863989899853727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9588504516796785,
          -7,
          -2.7219937073239864,
          -3.5585885831081994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.716504163773217,
          -7,
          -3.715474072849549,
          -3.931610406362962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6896259318411455,
          -2.979206813945708,
          -2.9750869934995627,
          -7,
          -7,
          -3.725012725341157,
          -7,
          -7,
          -3.3988077302032647,
          -7,
          -3.86135516019326,
          -3.6427612032653203,
          -7,
          -7,
          -7,
          -7,
          -3.301897717195208,
          -7,
          -7,
          -2.945632686581686,
          -7,
          -2.7198489822195464,
          -2.0212877673805068,
          -3.428615365459734,
          -2.9874676395023214,
          -7,
          -7,
          -1.335997257806787,
          -2.954900033383096,
          -3.211031500871904,
          -3.054708787938054,
          -7,
          -3.3176455432211585,
          -7,
          -2.3000120029278657,
          -2.8753314070333533,
          -7,
          -3.437221902399778,
          -2.8750612633917,
          -2.6745856023029138,
          -7,
          -7,
          -2.42736244013164,
          -2.849156072011022,
          -3.643551368562945,
          -3.354712775236435,
          -7,
          -7,
          -7,
          -7,
          -3.7467120225166606,
          -7,
          -2.9754974565302335,
          -3.6063813651106047,
          -2.8634715656455874,
          -7,
          -3.197663365097873,
          -7,
          -2.4159548048447954,
          -3.456897187449348,
          -2.7311409003621625,
          -2.8582089739878973,
          -2.3547148546267573,
          -7,
          -7,
          -3.690550461510359,
          -3.7267272090265724,
          -2.59667967779885,
          -3.5021538928713607,
          -2.8592509109297795,
          -3.2124983379352106,
          -7,
          -3.6648299411430907,
          -2.846543280888438,
          -3.668758541750958,
          -7,
          -7,
          -7,
          -3.0570952896126675,
          -3.861653870213911,
          -3.0868524453015307,
          -3.620448384711709,
          -7,
          -3.484157424365381,
          -7,
          -3.953373050726696,
          -2.3737476670376476,
          -7,
          -2.9509209293328924,
          -3.3806776672430363,
          -3.614158709509175,
          -3.766710207262259,
          -7,
          -7,
          -3.266741133090716,
          -7,
          -3.6375897858387,
          -7,
          -7,
          -7,
          -3.8254261177678233,
          -1.223293990490537,
          -3.4314441816172123,
          -7,
          -1.8846664940198277,
          -2.0919808222345555,
          -2.365581572755049,
          -2.765455665302838,
          -7,
          -2.79309160017658,
          -2.383407309498374,
          -1.6841208832970997,
          -1.229402270516142,
          -3.6250036010148636,
          -2.137817459835467,
          -7,
          -7,
          -7,
          -3.511147778494773,
          -7,
          -3.298197867109815,
          -3.704236337308788,
          -7,
          -2.9907510041972794,
          -3.3522790172744976,
          -7,
          -7,
          -2.1509756144710184,
          -2.5074636188449606,
          -7,
          -7,
          -1.6462297585471417,
          -1.6865085919184652,
          -7,
          -3.674677467873199,
          -2.721032921871661,
          -2.077422744831403,
          -3.65263306808311,
          -2.6041429424762548,
          -7,
          -3.245508413341098,
          -3.2118322079177557,
          -3.326335860928751,
          -3.5805828768143675,
          -7,
          -7,
          -2.939001266294933,
          -2.912089143147475,
          -7,
          -7,
          -2.981867125369299,
          -7,
          -7,
          -3.60422605308447,
          -7,
          -7,
          -3.199663775699543,
          -3.649967338324824,
          -1.2457024403677062,
          -2.667556714563343,
          -7,
          -3.4448641829020725,
          -7,
          -7,
          -3.3939260065858368,
          -7,
          -3.1663032199104872,
          -7,
          -7,
          -3.3619166186686433,
          -2.8121085721085706,
          -7,
          -7,
          -7,
          -3.0052663329727687,
          -7,
          -3.4051755462179893,
          -3.7206553565517244,
          -3.305852740224386,
          -3.1721649135409566,
          -3.734159513244467,
          -3.2003422998005173,
          -7,
          -3.6485551556626707,
          -3.112744479345518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.475053440975798,
          -7,
          -3.275426536741639,
          -7,
          -3.6447339274471924,
          -3.041455319268648,
          -7,
          -3.920801381825654,
          -3.393107024292132,
          -7,
          -3.773127924033335,
          -7,
          -3.433209608771474,
          -3.3912880485952974,
          -3.414555556229215,
          -3.0488300865283504,
          -7,
          -3.6126249394226386,
          -7,
          -3.619997169624987,
          -2.4187746368509666,
          -3.1516421992299084,
          -7,
          -2.7895525103083876,
          -7,
          -3.9682961150462557,
          -7,
          -3.1137762838370313,
          -7,
          -7,
          -2.541723216923833,
          -2.5853855204890204,
          -7,
          -3.077803798076088,
          -7,
          -3.7283131918551256,
          -7,
          -7,
          -3.3332456989619628,
          -7,
          -3.320457868916649,
          -7,
          -7,
          -2.952211058108669,
          -2.9893385599532865,
          -2.359835482339888,
          -2.9101414176196507,
          -3.140151857647077,
          -7,
          -7,
          -2.5017437296279943,
          -3.6900187807886953,
          -3.6045500325712614,
          -7,
          -3.056599976292781,
          -3.721398375521505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6810126011597757,
          -3.600537294364469,
          -3.6049816296074315,
          -7,
          -7,
          -3.6630409748939745,
          -7,
          -7,
          -3.6636067081245205,
          -3.446070935701005,
          -7,
          -3.079407382205769,
          -2.571234216560921,
          -3.7283537820212285,
          -7,
          -7,
          -3.606112535339159,
          -3.448551739201578,
          -3.0579310756823244,
          -7,
          -3.3418616839514494,
          -7,
          -7,
          -7,
          -2.782798255494358,
          -1.4414949041096847,
          -2.6548294872160803,
          -2.3709679555581826,
          -3.719124035974352,
          -2.864934659051497,
          -2.8148181600555935,
          -7,
          -3.3979400086720375,
          -3.8085485512404054,
          -3.7960884286806684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9807606420143298,
          -2.966105615272015,
          -3.693726948923647,
          -7,
          -3.7132384615456617,
          -3.540895440874582,
          -1.9355541304499773,
          -3.143014800254095,
          -2.9969112158758717,
          -7,
          -3.0668847431297714,
          -2.6137243973838293,
          -7,
          -4.100198171834132,
          -3.3526326642053124,
          -3.3831867994748994,
          -3.2625301889897145,
          -3.0605719396477284,
          -3.7681939616330715,
          -3.8960947079078343,
          -2.677210083021027,
          -3.12515582958053,
          -7,
          -7,
          -1.6693658234277071,
          -2.9316273514645816,
          -3.639586086673426,
          -3.6564815157904986,
          -3.3102683666324477,
          -3.629715332647132,
          -7,
          -7,
          -2.178822841969451,
          -3.3604040547299387,
          -3.206646006705649,
          -3.4102709642521845,
          -7,
          -3.535368932420166,
          -2.0033718191111585,
          -3.856055887241909,
          -7,
          -3.2108088200066947,
          -2.9678504504373913,
          -2.4072760390988797,
          -7,
          -7,
          -3.3224260524059526,
          -3.8451600776519457,
          -2.4762155307586386,
          -2.5116853468494194,
          -3.0536161744043904,
          -3.6088468223264116,
          -7,
          -3.1794081515138357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8853243388390224,
          -7,
          -7,
          -4.1556194006082015,
          -7,
          -7,
          -3.8900295861634167,
          -7,
          -3.956792520370495,
          -7,
          -3.305852740224386,
          -3.6959083187944173,
          -4.115011071300453,
          -7,
          -3.7724500687215876,
          -4.270212854896243,
          -4.410895277968898,
          -4.619938129899724,
          -7,
          -4.10302505485856,
          -4.940626040821762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5334485099051594,
          -2.6185308249743566,
          -7,
          -4.213659399781825,
          -4.2761399853501425,
          -7,
          -3.2426656366452633,
          -7,
          -4.10636090880675,
          -4.39100571835171,
          -7,
          -7,
          -7,
          -7,
          -3.7255849722706946,
          -3.797890483058349,
          -3.8047720536881493,
          -3.675044735955893,
          -3.321399911624453,
          -3.522574632691177,
          -3.573413164820461,
          -3.061398619785096,
          -3.1908567368986396,
          -3.2860071220794747,
          -2.8988715494355066,
          -3.2229114697957306,
          -3.346287760172882,
          -3.590521399348547,
          -3.3255840723546894,
          -2.502036742895763,
          -2.4794143960621255,
          -2.9577621734819206,
          -2.7509367354343515,
          -7,
          -3.2112540676178725,
          -3.5885438061451786,
          -7,
          -7,
          -3.0377862259665536,
          -3.0839852555724914,
          -4.864342382017525,
          -7,
          -3.925621454790829,
          -7,
          -3.3186475690036548,
          -3.679109782081773,
          -5.411395767749028,
          -3.2351354964027053,
          -4.302179353813202,
          -7,
          -3.7875667325987648,
          -3.8836614351536176,
          -3.807338807112571,
          -3.577319426553794,
          -3.219650005970414,
          -3.39467052410719,
          -2.957317790730713,
          -3.420577719678888,
          -2.297998259220199,
          -2.8227835078967374,
          -3.4953130222377027,
          -2.7397548594693375,
          -3.922956005832465,
          -7,
          -3.8724476477890133,
          -3.343034210479198,
          -3.5888690345141137,
          -7,
          -7,
          -7,
          -3.614158709509175,
          -7,
          -2.1209749788674674,
          -3.7649975992848805,
          -2.458672707384415,
          -7,
          -3.1340973839451696,
          -3.1763466512899763,
          -3.299216654900513,
          -2.8987251815894934,
          -7,
          -3.0054188608341708,
          -7,
          -3.4406270662633185,
          -2.929021350145649,
          -3.3533390953113047,
          -3.75495958772171,
          -7,
          -3.7511250715355837,
          -3.309523709653113,
          -7,
          -7,
          -7,
          -2.650793039651931,
          -7,
          -3.4274861090957858,
          -2.017418636809106,
          -7,
          -3.663355362110471,
          -7,
          -3.6205524447294355,
          -4.156619811816865,
          -3.6294401821443074,
          -3.6079774707180796,
          -7,
          -7,
          -2.4496398236151484,
          -7,
          -2.808750972349595,
          -7,
          -3.2357808703275603,
          -2.376617961114693,
          -7,
          -7,
          -3.7749546890801384,
          -2.931118710592187,
          -3.6203963453512844,
          -7,
          -7,
          -3.2092468487533736,
          -7,
          -2.887858329561368,
          -2.7582864160604745,
          -3.584218112117405,
          -7,
          -2.8453461374114086,
          -2.686061425390275,
          -7,
          -3.544836685408386,
          -7,
          -7,
          -7,
          -2.907795114870337,
          -2.767271546839847,
          -2.7653975864258418,
          -3.8732043092770407,
          -3.712481337801919,
          -7,
          -4.025141949625193,
          -7,
          -3.374106508804013,
          -7,
          -3.2779910116754087,
          -2.8801097112808387,
          -3.7016543173257483,
          -7,
          -2.909154709808426,
          -2.6257088170171308,
          -2.7081942032839943,
          -7,
          -2.8181525516426755,
          -3.2072976788831435,
          -2.998501514575574,
          -2.9160150455495546,
          -2.978940969735289,
          -3.910304168068569,
          -7,
          -7,
          -7,
          -7,
          -4.12119860258469,
          -3.8073997127594854,
          -2.8923729073984363,
          -3.8047526021504607,
          -3.618245722588928,
          -7,
          -3.9551343096156333,
          -3.4739134752498346,
          -3.432381286685753,
          -2.8974208899024245,
          -7,
          -3.4251264705087734,
          -3.6008640363098396,
          -2.5756825795343086,
          -2.6554052496393994,
          -7,
          -3.6035773681514667,
          -2.880976830201113,
          -3.3818367999983434,
          -3.197265238826092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7424894645817752,
          -7,
          -3.653983907374069,
          -7,
          -7,
          -7,
          -3.647969458362972,
          -3.7774268223893115,
          -7,
          -3.6118029390588564,
          -3.668618844816744,
          -2.6489018631808574,
          -7,
          -7,
          -3.8426716337607885,
          -7,
          -7,
          -3.5444773290864293,
          -3.6630409748939745,
          -3.3584107862063366,
          -3.838849090737255,
          -3.493597449000527,
          -3.784831178124469,
          -3.614158709509175,
          -7,
          -3.763128376799137,
          -7,
          -3.6047119317276204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.028571252692538,
          -3.336059277866349,
          -7,
          -7,
          -7,
          -3.498026608384322,
          -7,
          -2.639486489268586,
          -2.5494120098036346,
          -4.207768969739924,
          -4.22365166718718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0679709080059894,
          -7,
          -7,
          -3.4044916177586857,
          -3.882115455473136,
          -7,
          -7,
          -7,
          -3.100370545117563,
          -7,
          -7,
          -3.7891986564290945,
          -7,
          -2.9960736544852753,
          -7,
          -2.805160901599434,
          -7,
          -2.7489628612561616,
          -2.0586790361052354,
          -7,
          -3.1332194567324945,
          -7,
          -3.9665765919484968,
          -7,
          -7,
          -7,
          -7,
          -3.6830470382388496,
          -7,
          -7,
          -3.5599066250361124,
          -3.2474822606770544,
          -3.3412366232386925,
          -3.354156477915428,
          -2.905256048748451,
          -2.9725628006722813,
          -3.2210880684827314,
          -7,
          -2.870403905279027,
          -3.203984244420126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.679124935677682,
          -3.015778756389041,
          -2.979548374704095,
          -7,
          -7,
          -7,
          -3.674952948048565,
          -7,
          -2.7157248604691793,
          -3.980642810952581,
          -7,
          -2.5856218478490254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7278122676344823,
          -2.857935264719429,
          -3.249442961442582,
          -3.5953859808091417,
          -2.4496712047318874,
          -7,
          -3.322637813146819,
          -3.590507462008583,
          -4.0376256699147195,
          -7,
          -7,
          -7,
          -2.228676690246511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.142121189893748,
          -7,
          -7,
          -7,
          -3.6729286904427223,
          -3.344356542517054,
          -2.8341026557127935,
          -7,
          -2.5413295776666938,
          -7,
          -3.5474054596674898,
          -7,
          -7,
          -7,
          -3.5959369062691735,
          -3.674677467873199,
          -7,
          -2.484185911097994,
          -3.7576768627259365,
          -7,
          -7,
          -7,
          -4.393798873122975,
          -7,
          -3.5089335260500327,
          -2.183417120397686,
          -7,
          -3.1565491513317814,
          -3.6100210246641455,
          -7,
          -7,
          -7,
          -4.075017456377485,
          -7,
          -7,
          -7,
          -7,
          -2.941511432634403,
          -3.5693348876929294,
          -7,
          -3.468258689839974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4121003861250876,
          -7,
          -3.552668216112193,
          -7,
          -7,
          -7,
          -3.768995550358179,
          -2.9542425094393248,
          -7,
          -7,
          -3.286231854028553,
          -7,
          -7,
          -7,
          -7,
          -2.9718940616281238,
          -7,
          -3.4246094370095563,
          -7,
          -7,
          -3.620316743677983,
          -7,
          -7,
          -7,
          -7,
          -3.071513805095089,
          -7,
          -2.9590413923210934,
          -2.6209288346246438,
          -7,
          -3.989227273730537,
          -7,
          -3.2778383330020473,
          -2.449794777822959,
          -3.1947917577219247,
          -2.5674465020938317,
          -2.2852503509444095,
          -7,
          -2.0589634981318623,
          -3.313234291694724,
          -2.756445920162273,
          -7,
          -7,
          -2.5917137074725853,
          -2.259389071298138,
          -3.704407927386841,
          -7,
          -3.369586890736344,
          -3.3823773034681137,
          -3.873436863222037,
          -7,
          -7,
          -7,
          -3.7895807121644256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0696680969115957,
          -2.9749719942980692,
          -7,
          -7,
          -7,
          -7,
          -3.456922464315863,
          -3.6287974855667104,
          -4.14547610488496,
          -5.713339311723815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0025979807199086,
          -7,
          -7,
          -7,
          -7,
          -4.643699364639315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146128035678238,
          -7,
          -7,
          -7,
          -2.8842287696326037,
          -3.8117760216029035,
          -2.0435524105955944,
          -3.0437551269686796,
          -7,
          -1.964835582936749,
          -4.023190707213023,
          -7,
          -4.2384851963088765,
          -3.17435059747938,
          -7,
          -7,
          -7,
          -7,
          -3.408324780170415,
          -3.773127924033335,
          -3.076958858073013,
          -3.4492469194900117,
          -7,
          -3.000650953629595,
          -2.458788881710845,
          -2.2157256645575676,
          -2.9694159123539814,
          -2.190865065731225,
          -2.4912215762392833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6930426355860417,
          -7,
          -7,
          -7,
          -3.530983666793107,
          -7,
          -7,
          -7,
          -7,
          -1.8744818176994664,
          -3.63286204010023,
          -7,
          -3.498540278461396,
          -3.5593080109070123,
          -3.5141491344754376,
          -7,
          -7,
          -7,
          -4.506441246154753,
          -3.894648303793517,
          -7,
          -7,
          -7,
          -2.6384892569546374,
          -3.659821158055705,
          -3.0881360887005513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1837442232842066,
          -2.380814009999767,
          -4.38246732201583,
          -2.7400116025859536,
          -5.097397885872501,
          -7,
          -2.9170457648784867,
          -4.543293896994105,
          -7,
          -7,
          -2.359021942641668,
          -7,
          -2.7407009689987443,
          -3.5121505369220305,
          -3.7548832282521674,
          -3.1015752462559334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6414741105040997,
          -7,
          -3.1103337714833192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.380699548382717,
          -7,
          -3.749968083509403,
          -4.882706641624157,
          -7,
          -7,
          -7,
          -4.722288323541742,
          -4.999556793554726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.060067971523982,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.777281791671014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8567892887533164,
          -7,
          -4.3173214779522615,
          -7,
          -7,
          -3.636071642004376,
          -2.730997486018614,
          -7,
          -7,
          -7,
          -4.391396394500959,
          -7,
          -7,
          -7,
          -4.010351789910468,
          -3.8390648356407997,
          -7,
          -4.443716607769532,
          -3.8476960207341655,
          -7,
          -7,
          -4.380536840488749,
          -7,
          -7,
          -3.8793958675739386,
          -4.23321757514249,
          -7,
          -7,
          -3.7234556720351857,
          -7,
          -7,
          -7,
          -7,
          -4.091526272631091,
          -7,
          -7,
          -7,
          -7,
          -4.785707009008745,
          -7,
          -3.923839598909276,
          -7,
          -7,
          -3.4514654440388877,
          -7,
          -3.547454710572725,
          -7,
          -7,
          -5.348355495327635,
          -7,
          -7,
          -4.61240235746753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6967348842666072,
          -7,
          -3.2918958564339373,
          -7,
          -3.3649260337899753,
          -4.350461235597642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499033775408696,
          -3.354204511370313,
          -7,
          -7,
          -3.6623170194385057,
          -7,
          -7,
          -7,
          -7,
          -3.806179973983887,
          -7,
          -7,
          -7,
          -3.574956775764507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5394281056065973,
          -7,
          -7,
          -7,
          -3.95698436774276,
          -7,
          -3.5211380837040362,
          -7,
          -3.307709923404807,
          -3.959566046637928,
          -7,
          -7,
          -7,
          -7,
          -3.7169210731667612,
          -7,
          -7,
          -3.236789099409293,
          -7,
          -3.0570952896126675,
          -3.304619762853121,
          -7,
          -7,
          -3.1119342763326814,
          -2.9636697965031646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.521811143960067,
          -2.6709081903717906,
          -7,
          -3.0043213737826426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5282737771670436,
          -7,
          -7,
          -3.2184698571955574,
          -3.2540039620051373,
          -7,
          -3.433609843323718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.250407802854353,
          -7,
          -3.203168922875464,
          -7,
          -7,
          -7,
          -3.079452595311,
          -7,
          -7,
          -7,
          -3.040602340114073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.079904467666721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.202937636552238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0141003215196207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.872709718287906,
          -4.165452072831928,
          -7,
          -4.165896909992507,
          -7,
          -2.945742053110066,
          -3.7163651049900803,
          -4.171053287559376,
          -3.1787180191057685,
          -2.8406183683153254,
          -2.92454895044925,
          -4.165125569088229,
          -3.5685830315081475,
          -2.710394603858482,
          -2.7116213795637347,
          -3.8891615849113204,
          -7,
          -7,
          -3.4702928597504274,
          -7,
          -2.362324352659981,
          -3.0609958807280466,
          -7,
          -2.9952656215665012,
          -2.6729995155027915,
          -3.2317243833285163,
          -4.1744959193753,
          -4.1649176661009575,
          -3.0065729981620746,
          -3.891314399382143,
          -3.8754953408710184,
          -2.767992110572119,
          -4.186419489155475,
          -3.566349092191664,
          -7,
          -3.6997510316895146,
          -3.305969047136854,
          -3.871397781487484,
          -2.5910139870040743,
          -4.166015456323775,
          -3.102169745008345,
          -3.87453979707101,
          -2.2137481718156677,
          -3.69340447840352,
          -3.57611089412084,
          -3.9123017850426116,
          -3.189209489582306,
          -3.1221222197687104,
          -3.2199917955016972,
          -3.071485468913831,
          -3.461698570306548,
          -3.8898057518680855,
          -3.90156729002845,
          -2.5680228708926864,
          -3.024895960107485,
          -2.883191355841693,
          -3.0539103642070833,
          -7,
          -3.4837298990000236,
          -2.9495697483551866,
          -3.1836114492184326,
          -3.885304667588968,
          -3.885643871835764,
          -3.867791467345843,
          -3.4821873135445873,
          -3.7753434064763316,
          -2.8133654043086627,
          -3.127958405334193,
          -3.6902551636939207,
          -4.223132362471588,
          -7,
          -3.11549956660232,
          -2.6521047694008844,
          -7,
          -2.971224291252213,
          -2.5252549034751532,
          -4.168173262170234,
          -2.386858189007188,
          -7,
          -4.173186268412274,
          -3.0349691819441498,
          -3.909823369650912,
          -3.4756421375547006,
          -7,
          -3.4512233805451995,
          -3.067099481723916,
          -3.2835524838345975,
          -2.831549851995756,
          -2.881330302016822,
          -3.899929882727864,
          -2.466400168803679,
          -3.0999025155123463,
          -3.4374158192831503,
          -7,
          -4.164144582470177,
          -3.624230513855454,
          -2.6832381229003643,
          -3.0433360754520002,
          -3.024702929610656,
          -4.171228996725051,
          -2.592438933366342,
          -3.8822113687583846,
          -3.864451747158183,
          -3.6878261179021794,
          -1.8714671335590565,
          -3.4674897127574646,
          -3.441197466929935,
          -3.4168345930422372,
          -3.035052848660952,
          -2.9264796427986184,
          -3.480323201241355,
          -3.473866355786692,
          -2.4469041486850505,
          -3.2395219233250603,
          -2.5959845824131773,
          -7,
          -7,
          -2.300842296999415,
          -1.8747590403579981,
          -2.721032921871661,
          -2.484185911097994,
          -7,
          -2.5748498031969818,
          -3.8781769804915065,
          -4.023540521554854,
          -3.033682187200558,
          -2.9020453468316267,
          -3.491305652220942,
          -3.2294770588731634,
          -2.502283337668303,
          -7,
          -7,
          -2.9411035246672013,
          -3.3311741373868458,
          -7,
          -7,
          -2.554896658575775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0730197063476323,
          -3.3365709061214783,
          -2.571080252623569,
          -2.4634105543773317,
          -3.8808135922807914,
          -3.4923811883797753,
          -7,
          -3.4728149362181027,
          -2.290344610356955,
          -3.5044028924681587,
          -3.2782129939730074,
          -4.165303692468361,
          -7,
          -4.182414652434554,
          -2.9818363660944813,
          -3.864807629026147,
          -7,
          -3.7296506683359203,
          -3.1949858434258807,
          -3.8680269370808706,
          -7,
          -3.5014426968612273,
          -2.899116684799909,
          -2.896001009441626,
          -3.1253728140876187,
          -2.627506421216469,
          -3.355643050220869,
          -7,
          -2.4049720105667998,
          -3.8743368353973677,
          -4.165244326125311,
          -7,
          -2.750594096772079,
          -3.4748861346502506,
          -7,
          -7,
          -2.2114479488687553,
          -4.174001626402425,
          -3.345517491241129,
          -7,
          -3.3853828136078388,
          -2.025499604641104,
          -3.8841153620116686,
          -2.7991336933020627,
          -2.1096372294004264,
          -3.4172501991365754,
          -2.573003538429554,
          -3.596679548776454,
          -3.0906378232707343,
          -2.9117461786806595,
          -3.1192283874901365,
          -2.7332208751248905,
          -2.8973376581028525,
          -2.693009164048874,
          -7,
          -3.363762358869375,
          -3.1666184637346104,
          -2.8496000462005777,
          -3.693287157005656,
          -3.461515200596466,
          -7,
          -3.2987221136057077,
          -7,
          -3.2957319906112623,
          -3.872709718287906,
          -4.177940307008608,
          -2.7883230698362023,
          -3.3118597736235036,
          -7,
          -3.105667366994601,
          -3.964966374831098,
          -3.629593065055699,
          -7,
          -4.1649176661009575,
          -3.027058232734036,
          -3.1252150179256852,
          -3.324840768927558,
          -3.029586671630457,
          -7,
          -3.333619979091512,
          -2.2956652566996816,
          -2.9534697432534016,
          -2.4021430192065516,
          -2.9850673612431855,
          -7,
          -3.5728135375594547,
          -2.9736184677457946,
          -3.8896378004066676,
          -4.1655114107855535,
          -4.168968646554766,
          -2.813500926906632,
          -3.899793153046949,
          -3.597887066597256,
          -4.163370120225884,
          -7,
          -4.169027506008932,
          -3.6950144419299042,
          -3.86308482532036,
          -3.8673201445219627,
          -2.4282721029811807,
          -3.168335189517856,
          -7,
          -7,
          -7,
          -3.569549464888704,
          -3.881299044952724,
          -3.703234041729126,
          -7,
          -3.8814702517152186,
          -3.5003508441102396,
          -3.250907699700856,
          -3.1294105824083522,
          -1.3857332655944266,
          -3.7259660517527853,
          -4.1673468775856355,
          -4.164293359314462,
          -3.3657749237888828,
          -7,
          -2.670074638614735,
          -3.337715911243109,
          -2.9964519684791755,
          -3.708760723690317,
          -7,
          -3.395093308677923,
          -2.847536369651228,
          -2.9922220374838435,
          -2.484056206386171,
          -2.9061329346974785,
          -3.32376758329678,
          -3.0206098533777044,
          -2.95042213027227,
          -3.088903550093058,
          -2.434624923960997,
          -2.2052301495786644,
          -2.4919579851904485,
          -7,
          -3.8720979742742268,
          -3.5918711998469846,
          -4.1722233414277525,
          -3.4223709414184693,
          -7,
          -3.611723308007342,
          -2.5677011407545143,
          -3.714664992862537,
          -3.4496840553919434,
          -3.7209582214513692,
          -3.1789449892018418,
          -2.717412908457708,
          -4.169968173996892,
          -2.911183601945748,
          -7,
          -2.2012533420043217,
          -3.17666993266815,
          -3.1640823515826657,
          -2.691871187043122,
          -3.198081978306959,
          -2.6061663146076204,
          -3.0021930692800325,
          -3.3982377085456186,
          -4.216957207361097,
          -3.3993622898984075,
          -3.2199873220898207,
          -7,
          -7,
          -7,
          -2.778238977781559,
          -3.6607469316726013,
          -3.329978681161953,
          -4.1804126328383235,
          -3.3205357297018523,
          -3.6953357196809247,
          -3.3661293256157254,
          -7,
          -3.0780261164935427,
          -3.067328419252625,
          -3.011993114659257,
          -3.661102473634254,
          -4.181957860931066,
          -2.7432719933439316,
          -2.354563031204298,
          -3.1528535263650377,
          -7,
          -2.910133278495992,
          -2.9055829657189505,
          -2.7226555674530473,
          -7,
          -3.1067007323623543,
          -3.86975959478241,
          -2.813284389969057,
          -2.786708412045808,
          -2.5788638373041564,
          -3.0970970534252165,
          -4.166696470479601,
          -7,
          -4.22188349178524,
          -3.473691295865516,
          -3.1386758157429933,
          -3.2284288772361536,
          -2.1700723565596474,
          -3.4754968545499993,
          -2.445119865230657,
          -3.862608363964942,
          -7,
          -3.524379892559869,
          -4.3880419647864235,
          -3.8169832762228597,
          -4.264321877763006,
          -3.738707905824672,
          -3.73201444825009,
          -4.33683982531461,
          -3.2477032819341716,
          -3.352211470111767,
          -3.771624221669053,
          -7,
          -3.4937621344328145,
          -4.044670394919461,
          -3.693673432840502,
          -3.67691797177574,
          -3.550093762080741,
          -3.6413678610890368,
          -3.84426410350694,
          -3.9192873405043827,
          -4.063058005802612,
          -7,
          -3.8325324419556304,
          -4.04083959468534,
          -3.6415281911320134,
          -3.0309557541293497,
          -3.9487185272362937,
          -3.930687109941523,
          -4.469851458673805,
          -7,
          -3.690810157601429,
          -3.610553705317095,
          -3.6763277338813203,
          -3.9446553685692547,
          -3.996336518095784,
          -4.206717963375834,
          -4.41954272470028,
          -4.336419704862658,
          -4.6286136831451605,
          -3.514710047826209,
          -3.079126168979742,
          -2.981082082531969,
          -3.4625904995809047,
          -2.8643510609821883,
          -2.2519497768153833,
          -3.493248870057419,
          -3.435697388325448,
          -4.215267343431722,
          -2.9051695198309795,
          -2.6458223899269093,
          -3.3921188489937446,
          -3.4746844500636387,
          -3.033033765851075,
          -2.7703610059573918,
          -7,
          -3.4719723825183952,
          -3.3633612324937796,
          -7,
          -3.6101702411170487,
          -3.5769399643348927,
          -3.672051653937386,
          -4.1863063842699075,
          -2.7140812719788183,
          -3.203772786441661,
          -3.3999523032960326,
          -7,
          -2.977815026083187,
          -4.175018675936629,
          -2.805288155767483,
          -4.003654370310405,
          -3.12076675689277,
          -4.416607226792504,
          -3.163913523111784,
          -7,
          -3.6426376099687454,
          -3.1521406718110985,
          -3.42645897557501,
          -3.9583966309230707,
          -3.2802795193979817,
          -4.011676149933908,
          -3.335919497002167,
          -3.289889338077369,
          -2.5173106692196443,
          -2.8581231914869507,
          -3.014062856681733,
          -7,
          -3.19194348272539,
          -4.175743684421761,
          -3.6547779745760787,
          -3.193506227976473,
          -3.488653253269166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7294847709059216,
          -3.136059641017734,
          -2.8143216000742486,
          -7,
          -7,
          -3.256777860100623,
          -3.7427513086038777,
          -3.2082800785453096,
          -3.87046243158892,
          -3.340862563370483,
          -7,
          -3.2319846838805257,
          -3.4164740791002206,
          -4.1798389280231865,
          -4.2122941666623515,
          -3.485500596100668,
          -4.210960255416812,
          -3.9726193390596234,
          -7,
          -4.1783149348321595,
          -2.59458751984308,
          -7,
          -7,
          -3.72607487021537,
          -2.5164231095855185,
          -7,
          -3.7859168036624746,
          -7,
          -3.692729447141836,
          -3.775173385424787,
          -2.5207438940479294,
          -3.4798688671351194,
          -7,
          -4.22855433653901,
          -2.529510797360305,
          -7,
          -2.8509013873447464,
          -7,
          -3.3527611917238307,
          -2.795893642055278,
          -7,
          -3.8692610629614124,
          -7,
          -3.3517411058188555,
          -3.8006941718512026,
          -3.1358551510973984,
          -3.2465259353438465,
          -3.286203768893748,
          -7,
          -2.86150725642242,
          -2.7526154239139053,
          -4.474493075006849,
          -7,
          -3.041590046889367,
          -2.860113313378828,
          -4.2090590341287974,
          -3.4078542343317864,
          -7,
          -4.1703497391391835,
          -3.497758718287268,
          -3.51271107196312,
          -2.513555597597894,
          -2.6984331912878923,
          -3.780077171419682,
          -2.0047988828817687,
          -7,
          -3.62744779121837,
          -3.700646038084983,
          -4.001863462692524,
          -7,
          -3.610234175334389,
          -2.84825283857935,
          -7,
          -3.6872910893851065,
          -2.776166851774666,
          -2.5566097483796093,
          -3.0858136527815203,
          -3.5174070536521542,
          -3.213454508691831,
          -7,
          -3.250442182257414,
          -4.192316504702737,
          -3.697682586349585,
          -3.9719249491841913,
          -7,
          -7,
          -4.166755638665237,
          -7,
          -3.3380344158933815,
          -7,
          -7,
          -4.230321168919079,
          -3.2658062062050908,
          -3.4331028172342286,
          -3.5027153400182796,
          -2.9069264651891564,
          -4.272746411201189,
          -3.2744401002736403,
          -4.178574103379925,
          -3.160577657190823,
          -7,
          -2.8048910915321743,
          -3.3193374362368813,
          -4.2789364233011,
          -7,
          -2.879450884912662,
          -3.1880280413350803,
          -2.9466420375666296,
          -3.484185911097994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3112875386622824,
          -7,
          -3.4300481667501534,
          -4.176641017292667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8976820617964196,
          -3.4766223338421334,
          -4.299790489253733,
          -3.229286150986481,
          -4.1808424146466825,
          -7,
          -3.098173830542939,
          -7,
          -7,
          -2.852222588740421,
          -4.182386117037066,
          -7,
          -7,
          -7,
          -3.6207344897857445,
          -7,
          -7,
          -3.7379343926406476,
          -7,
          -3.668874921546896,
          -7,
          -7,
          -7,
          -4.754592939762488,
          -7,
          -7,
          -7,
          -4.452775132369085,
          -4.160055650114694,
          -3.9816525260860227,
          -3.5775683882303175,
          -2.9289458629313847,
          -2.5345878810965172,
          -2.651911942666843,
          -7,
          -4.753812783564702,
          -1.419974623911139,
          -2.081756055581979,
          -3.9137835869053323,
          -7,
          -4.752132992497674,
          -3.908278162727131,
          -3.9745116927373285,
          -1.8297631007235549,
          -3.462193736165049,
          -7,
          -2.152107121041876,
          -2.099023146708665,
          -3.6116171105543358,
          -4.754776302434371,
          -7,
          -3.301994853902822,
          -3.5288637896169446,
          -4.153220159636364,
          -2.7007508422080138,
          -4.7579423494097774,
          -4.2760786594797535,
          -7,
          -3.9102431437972904,
          -3.8098738192491894,
          -3.851051856837514,
          -3.203260814881101,
          -4.752563146780113,
          -3.561943205916616,
          -2.642525866686211,
          -1.9177588590210453,
          -7,
          -3.3082212936437174,
          -2.537534267560738,
          -3.7586924198789013,
          -2.981401486519429,
          -3.5504805987637473,
          -4.058828243869098,
          -4.295852870643949,
          -4.281994874508107,
          -2.5450580749210907,
          -2.068237413112108,
          -3.593706862849097,
          -2.876489529359904,
          -3.2143557591509637,
          -3.6761523091270663,
          -4.757008635461283,
          -3.4271171059961962,
          -3.9791004957884546,
          -4.757934766327757,
          -4.758025754574382,
          -7,
          -3.9783707550069076,
          -3.475387860393165,
          -2.4918543411396246,
          -2.9968494891850317,
          -4.275794914631003,
          -3.5125732296355796,
          -7,
          -3.1161907409628373,
          -3.3181929127898804,
          -7,
          -3.2005769267548483,
          -2.1347678864147865,
          -3.8499258976209467,
          -3.084255949562787,
          -7,
          -4.152326572848545,
          -3.1127827753067483,
          -4.463601869359427,
          -4.152762139680493,
          -7,
          -3.76982763613248,
          -4.756689345987442,
          -3.994221805691542,
          -1.624809027194788,
          -3.8085410523501118,
          -7,
          -1.3317879916750461,
          -2.3331897709212175,
          -2.1478252257750254,
          -3.3546461700683716,
          -4.451033825139367,
          -3.3707498792897748,
          -2.260936864557439,
          -2.4021117933782326,
          -1.9656423629243558,
          -3.712374163192314,
          -2.156522815290907,
          -4.456062224454952,
          -7,
          -7,
          -2.8106649596666315,
          -4.451694349193542,
          -3.6207753465573442,
          -3.760196229455134,
          -3.3490975687027302,
          -2.752299144871972,
          -3.910913939634084,
          -4.277250018474452,
          -3.1902408162331777,
          -3.136176792692332,
          -2.5150373560512516,
          -3.1550322287909704,
          -4.752225204288859,
          -3.0242318383830744,
          -2.975052314407599,
          -2.077422744831403,
          -3.7576768627259365,
          -2.5748498031969818,
          -7,
          -4.2788831080657515,
          -4.021306473835836,
          -4.756377432058169,
          -2.9791266558444605,
          -4.060009977677667,
          -3.1161869696172917,
          -2.728361029865988,
          -7,
          -3.9114239653762946,
          -2.421414071355593,
          -3.2938558745960953,
          -7,
          -4.752524757465067,
          -2.667716581083437,
          -7,
          -4.7518485494936495,
          -4.752409569155264,
          -3.9081402038689497,
          -4.1502266766129745,
          -2.6555304327456617,
          -3.7884794804834376,
          -1.6154385124390143,
          -2.9513875235064093,
          -2.7730165474997395,
          -2.9517478499695864,
          -4.7526245626267665,
          -4.453081248423912,
          -3.416799311183304,
          -3.682886110945385,
          -3.1441727623900975,
          -7,
          -4.277364687721622,
          -4.279720163150526,
          -2.7215038694393896,
          -7,
          -7,
          -3.9852992061060455,
          -3.4378713091843833,
          -4.452323216977515,
          -3.7189770162143927,
          -3.9835736695139654,
          -4.466837974667767,
          -4.46595508858566,
          -4.064015982056994,
          -3.548239235346375,
          -4.761920324610169,
          -4.1536090971675526,
          -1.7205166823836526,
          -4.755020665632212,
          -7,
          -7,
          -4.279993758423351,
          -7,
          -7,
          -4.752609209479315,
          -2.0846515948551616,
          -3.8002816493571645,
          -3.1045507624320563,
          -7,
          -2.980777192555743,
          -1.597861012203287,
          -2.6350494180076955,
          -1.9946026312575593,
          -2.2387795106286505,
          -2.8246630509059116,
          -2.511338051049237,
          -3.8069634097426848,
          -3.300250561719041,
          -3.9810858627695267,
          -4.062326220404848,
          -3.1892238952372343,
          -4.755470850140081,
          -3.026698088964593,
          -7,
          -2.583024288437186,
          -3.617666706945491,
          -2.288234616162357,
          -7,
          -2.9174927009618066,
          -4.75226362009077,
          -3.058011047472369,
          -7,
          -3.8070461905554698,
          -7,
          -4.278532587883768,
          -3.176430088393643,
          -3.7243429081714807,
          -7,
          -3.9220875204019343,
          -2.4355746981517323,
          -2.766013293129767,
          -7,
          -4.752278985460118,
          -3.754493585981362,
          -4.4518247990667295,
          -4.753674963343975,
          -4.15318963999602,
          -4.75310024118681,
          -4.755981511395073,
          -2.250420002308894,
          -3.300008202553813,
          -2.607749657790076,
          -1.9565070948118017,
          -7,
          -4.754921409665169,
          -3.3082899393175516,
          -2.560835320734465,
          -4.752432609261474,
          -7,
          -3.685808892350598,
          -3.983641319556716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9195487280227486,
          -7,
          -4.752463327501825,
          -7,
          -4.453020042471988,
          -3.911674952098214,
          -3.978127235341502,
          -7,
          -4.279758172802473,
          -3.0764048273147346,
          -4.763165840200662,
          -2.415353770432938,
          -2.5538899985021546,
          -2.028551378718816,
          -3.9746805266282688,
          -7,
          -2.79741513068051,
          -2.9001275963692335,
          -2.198959143862575,
          -4.456024233422963,
          -2.8936038389987706,
          -3.4150872214535934,
          -3.975967643841769,
          -4.152418307438716,
          -3.2870438849608807,
          -1.5648467666795383,
          -2.4166807626547953,
          -2.867162094299147,
          -2.834323931127906,
          -3.3988755657510406,
          -3.376143358578196,
          -7,
          -4.157781536420133,
          -3.925385769416851,
          -3.9240428709869617,
          -7,
          -4.152326572848545,
          -7,
          -7,
          -4.761845179355819,
          -7,
          -3.4864752222675612,
          -2.6233236263839674,
          -4.759418525871249,
          -3.8151569739533104,
          -4.283979284238479,
          -2.2568108075912052,
          -2.5128485286763746,
          -4.276438825021309,
          -2.666043954558214,
          -7,
          -4.456343254849088,
          -3.272240590930113,
          -3.8089233307613366,
          -2.2393905541211985,
          -2.8910530406646147,
          -4.191681515027636,
          -4.064562806279621,
          -4.4729976570334395,
          -3.8119843841348438,
          -2.0152377132669415,
          -2.938526579084941,
          -4.752302032494887,
          -7,
          -7,
          -2.0339323851724616,
          -3.364493268376596,
          -7,
          -7,
          -3.7682087736070127,
          -4.152165990675555,
          -4.065796247841191,
          -4.755066468428678,
          -2.9216223472099334,
          -3.7152053921333623,
          -3.7584652625674755,
          -3.575599132587573,
          -2.6053967516752947,
          -1.988617112231469,
          -2.123238609395474,
          -2.6756150647365833,
          -3.911629328936281,
          -3.6802797148108306,
          -2.5507430055349456,
          -2.9856790279839016,
          -7,
          -3.9127760568902574,
          -3.9755926285377265,
          -3.9964970786804326,
          -3.120832862638392,
          -2.948001668457551,
          -3.9196756768967833,
          -7,
          -7,
          -3.8133808067338557,
          -7,
          -7,
          -4.757061827559215,
          -4.179659489735338,
          -4.754829768633988,
          -2.4358841638751363,
          -7,
          -7,
          -2.7133307257547616,
          -3.0695888195712855,
          -3.3679554578097592,
          -2.966408908682189,
          -3.2187132100622513,
          -2.2777634421104618,
          -2.3784529620552672,
          -2.3404810077814537,
          -2.342851180626867,
          -2.485434814042305,
          -3.4559536698309694,
          -2.8238744531843705,
          -2.869597363597986,
          -2.8384656793906378,
          -2.199264367788322,
          -3.2756090800864244,
          -2.405156044570522,
          -2.323020011428651,
          -3.620636975138439,
          -3.1432703594714555,
          -4.776911743973396,
          -2.6842172306486525,
          -3.5518738613848733,
          -2.4344378504815065,
          -2.4077440864415216,
          -3.7128404350917226,
          -3.023796701804347,
          -3.362050543687252,
          -4.163526613344592,
          -2.138451442869295,
          -2.972067003654662,
          -2.914078585389112,
          -3.3683545135832196,
          -3.7412061626491493,
          -4.064450501326473,
          -3.754373821728567,
          -3.849166803871281,
          -3.106299094127515,
          -3.0266247225387346,
          -2.2320793958503162,
          -3.9796166546322134,
          -2.904038968600478,
          -2.5017057319481153,
          -2.386066582440751,
          -2.826966962249786,
          -2.3717872165703136,
          -3.209045615689968,
          -1.1812620732648487,
          -3.517651074521444,
          -4.471203669470253,
          -3.354160372717795,
          -2.421473723156698,
          -2.3326829808604845,
          -4.283919055485216,
          -2.7156064510285387,
          -2.7275064998451697,
          -7,
          -2.7028506723802965,
          -3.247662360557147,
          -3.8289390268079373,
          -4.7579120162872295,
          -2.5188513286665026,
          -1.8121470850110704,
          -2.6399487127568735,
          -4.7542718686834595,
          -3.638681758636586,
          -4.754913773651104,
          -2.431384692068434,
          -3.889777764467921,
          -2.1598146554537774,
          -3.08367535113763,
          -3.7145333249968298,
          -3.9074727842216728,
          -3.3066225174929165,
          -2.897496181121582,
          -2.8899288750065226,
          -3.5480930182552797,
          -2.184145217084545,
          -1.9634327504866755,
          -2.6292256683079684,
          -1.5440151493399303,
          -3.911743377855932,
          -2.2849265430389543,
          -2.454188307497151,
          -2.159285509899914,
          -2.7799828499205974,
          -4.755104633736051,
          -3.663903785487646,
          -2.7531277550280353,
          -3.3230744031087247,
          -4.452522424089479,
          -7,
          -7,
          -4.753123244681713,
          -4.008805916155986,
          -1.2114867846608905,
          -3.6866809474663245,
          -2.0526511985085754,
          -3.7536902788618263,
          -2.9048807704973005,
          -2.878532949990976,
          -2.2079846976535187,
          -3.8096868795851906,
          -4.452958827892976,
          -3.233179496887814,
          -7,
          -2.651175185897296,
          -3.007805620305211,
          -4.057156212228546,
          -3.919847330372185,
          -2.2796580981362657,
          -3.9864358096792474,
          -3.291333037371177,
          -7,
          -3.9105939163159213,
          -2.883226677829262,
          -4.45498198398436,
          -4.0579018215218525,
          -4.285384757063689,
          -2.8135809885681917,
          -7,
          -3.1980545731753773,
          -7,
          -4.151484768302879,
          -3.06571631252638,
          -1.6328792743501936,
          -2.1879892336633064,
          -7,
          -2.949145952419944,
          -2.880490776744196,
          -4.7579423494097774,
          -3.448212941467618,
          -7,
          -3.6817837664678814,
          -2.1090583522445936,
          -7,
          -3.908500337637823,
          -3.921842481405858,
          -3.64672787441551,
          -2.6927824567955687,
          -3.6763048564097263,
          -3.2991389499032406,
          -3.8556251420846746,
          -3.199496156206543,
          -3.648900196979764,
          -1.9074980009049258,
          -3.3639757106352675,
          -3.9745040169098305,
          -3.3120678713554006,
          -3.254423558725655,
          -4.065101466171193,
          -2.4586940243408293,
          -4.454600977097761,
          -7,
          -2.896233540984362,
          -3.6855775412674463,
          -1.8546868060656614,
          -3.1571544399062814,
          -2.223970863337823,
          -3.0882718434369,
          -4.278997346985271,
          -4.323038854969626,
          -7,
          -3.3941083123867233,
          -4.4538532325881866,
          -3.618757636846373,
          -2.9191966786934156,
          -3.555759293089335,
          -4.752179100840631,
          -3.0377199826622547,
          -1.7160900952334388,
          -3.41766661081607,
          -3.464928984860436,
          -2.8990620586655056,
          -3.4693948724333543,
          -3.297174328047748,
          -3.179188820411169,
          -3.018069554387154,
          -2.670483178363864,
          -4.76015850899809,
          -3.8558143392341657,
          -7,
          -4.752148362489249,
          -2.854852362417834,
          -3.624127331511917,
          -3.3954859330755176,
          -2.3667837426355174,
          -2.510234078042335,
          -3.1207234559041432,
          -3.1404094433880916,
          -2.9637306042765084,
          -2.878607956493832,
          -3.3892547068486483,
          -7,
          -3.8079557396120394,
          -7,
          -3.262580517382081,
          -3.2914118222501534,
          -3.6084618473837273,
          -4.752363485275562,
          -3.3470371337849536,
          -3.8041470076134645,
          -2.3899405804127625,
          -4.279978563206881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.753629013549518,
          -2.864643680472179,
          -4.062627103388964,
          -3.559622386202792,
          -4.45429593073985,
          -4.0571105210678615,
          -4.753766848350539,
          -4.754845043482116,
          -7,
          -7,
          -3.5629393628164787,
          -4.284137344987011,
          -3.246650061258412,
          -3.645057162575253,
          -4.305186506919846,
          -3.580149164384105,
          -7,
          -3.518908573691414,
          -4.278524964737017,
          -7,
          -3.0495360706389203,
          -4.154758619154177,
          -4.057559608844285,
          -3.8196243530000937,
          -3.6897453025712523,
          -3.9228588613062128,
          -4.452077913489846,
          -4.75355241975346,
          -4.76583985498647,
          -7,
          -3.526798605282374,
          -4.062175700706289,
          -4.757767905015857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.212453961040276,
          -7,
          -7,
          -5.205234146214356,
          -7,
          -7,
          -7,
          -4.201424437579911,
          -3.916453948549925,
          -7,
          -3.0692980121155293,
          -7,
          -7,
          -7,
          -4.342837036916425,
          -3.8984509191983747,
          -7,
          -3.383994789441733,
          -3.864464545351741,
          -3.1383026981662816,
          -2.9818186071706636,
          -7,
          -3.0580462303952816,
          -7,
          -7,
          -4.088921244740673,
          -7,
          -7,
          -7,
          -7,
          -3.344588742578714,
          -7,
          -7,
          -7,
          -3.0941215958405612,
          -7,
          -4.840986968939329,
          -7,
          -7,
          -7,
          -7,
          -3.66143405039392,
          -7,
          -3.13481437032046,
          -7,
          -3.185825359612962,
          -3.292256071356476,
          -4.210569979246113,
          -7,
          -3.9154526016884788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.141763230275788,
          -2.8847953639489807,
          -7,
          -7,
          -4.152807963419064,
          -7,
          -7,
          -3.436162647040756,
          -7,
          -7,
          -3.652922887567942,
          -7,
          -7,
          -4.427099681298999,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.987219229908005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3081373786380386,
          -2.274619619091238,
          -4.628858735758181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.606488850442648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.414137362184477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.543269627143044,
          -7,
          -7,
          -3.374198257929083,
          -3.091784160263216,
          -3.65263306808311,
          -7,
          -3.8781769804915065,
          -4.2788831080657515,
          -7,
          -2.4026297928954663,
          -2.589204670642375,
          -4.216662834455617,
          -7,
          -3.4762517960070336,
          -7,
          -7,
          -7,
          -4.304145712763788,
          -3.2008504980910777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.886490725172482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.063858548853072,
          -7,
          -7,
          -7,
          -7,
          -3.544154894561925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4119562379304016,
          -7,
          -3.8890214220952246,
          -7,
          -7,
          -3.5832171616034327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.63230541441367,
          -7,
          -7,
          -2.82865989653532,
          -7,
          -3.876639225154536,
          -3.1245042248342823,
          -7,
          -3.607562243183588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.650793039651931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.91539983521227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4570488265856314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0115704435972783,
          -7,
          -3.048053173115609,
          -2.774777568485786,
          -3.1266724494173004,
          -3.837051550831765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.368100851709351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165382834970976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.319418389047728,
          -7,
          -4.235541071563642,
          -3.100370545117563,
          -4.4116617867231005,
          -7,
          -7,
          -7,
          -3.398287305357401,
          -7,
          -3.492620722043192,
          -3.430800424624181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.486430478854434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.276921132065774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8315082447834055,
          -3.9034698285071703,
          -7,
          -4.290279528920517,
          -7,
          -7,
          -3.130976691605617,
          -7,
          -3.663842212973794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.351411685556406,
          -7,
          -7,
          -7,
          -7,
          -3.4683473304121573,
          -7,
          -7,
          -7,
          -3.4413808849165113,
          -7,
          -7,
          -7,
          -7,
          -3.0856472882968564,
          -7,
          -3.6384892569546374,
          -7,
          -3.9038674017124433,
          -7,
          -4.532972571333027,
          -7,
          -3.80543288813214,
          -3.1863953736726964,
          -2.943141057367911,
          -7,
          -7,
          -2.921166050637739,
          -3.2587569725365753,
          -3.097881744713868,
          -2.5583084834648857,
          -3.36078268987328,
          -2.8407332346118066,
          -7,
          -7,
          -2.9561684304753633,
          -7,
          -7,
          -3.3619166186686433,
          -7,
          -4.028584807240124,
          -7,
          -7,
          -4.2962262872611605,
          -7,
          -7,
          -7,
          -4.714203980582727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.583323488156762,
          -7,
          -4.675274120888021,
          -4.622473071278123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.775581324181115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9782109606289833,
          -7,
          -7,
          -7,
          -7,
          -4.765720696763816,
          -7,
          -7,
          -7,
          -7,
          -5.235934776600263,
          -7,
          -7,
          -7,
          -4.264558112800327,
          -4.381115080709851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.187175121844392,
          -4.80348186836277,
          -7,
          -7,
          -7,
          -4.956379761319415,
          -7,
          -5.405682667257748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784039275096961,
          -7,
          -4.218824238677402,
          -7,
          -4.899229372297198,
          -7,
          -7,
          -7,
          -4.9568308966253545,
          -7,
          -4.648913992932156,
          -7,
          -7,
          -4.3088630883653005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.471614377603175,
          -3.389343311252078,
          -4.188844146546897,
          -7,
          -3.318689269947746,
          -4.345902796476545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.497420372448701,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.54703589974001,
          -7,
          -7,
          -7,
          -7,
          -3.7531341982986697,
          -4.7941219138720745,
          -7,
          -7,
          -2.9906347965243705,
          -3.6444878264138585,
          -7,
          -3.188084373714938,
          -7,
          -7,
          -4.255031163345551,
          -7,
          -7,
          -3.111262513659065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0655797147284485,
          -7,
          -7,
          -7,
          -7,
          -3.2612628687924934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6045500325712614,
          -7,
          -3.767759122103009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.805296916157985,
          -4.632315541250991,
          -7,
          -3.0930713063760633,
          -4.309289410655256,
          -7,
          -2.9033225824533115,
          -7,
          -7,
          -7,
          -7,
          -3.1806992012960347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.531644939077263,
          -7,
          -7,
          -4.548598222418581,
          -3.6769678142947586,
          -7,
          -7,
          -7,
          -7,
          -3.6603910984024672,
          -7,
          -7,
          -7,
          -7,
          -3.161368002234975,
          -3.796001602777842,
          -7,
          -2.989004615698537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.337459261290656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.500798881491561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8232785569516707,
          -7,
          -7,
          -7,
          -7,
          -3.8829227906025987,
          -7,
          -3.5518767631329724,
          -3.6412209331126,
          -7,
          -7,
          -7,
          -3.3860230915330054,
          -3.7501611290217176,
          -7,
          -3.8560639533331,
          -7,
          -7,
          -7,
          -3.048892179602324,
          -3.541423219342099,
          -7,
          -7,
          -3.1266487570908934,
          -7,
          -7,
          -7,
          -7,
          -3.8804705928037784,
          -7,
          -3.4384768764335347,
          -3.390758528738717,
          -7,
          -7,
          -3.848250714677042,
          -3.2153202513299304,
          -3.8385972528166565,
          -3.966798546383361,
          -7,
          -7,
          -7,
          -3.8178867499239346,
          -7,
          -7,
          -7,
          -7,
          -3.7238659644435037,
          -3.8433573784379558,
          -3.8674674878590514,
          -7,
          -7,
          -3.901240302073309,
          -3.5601308927828486,
          -7,
          -4.153418485037711,
          -4.094575933649249,
          -7,
          -7,
          -3.1072584373095338,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.217396199091494,
          -3.536861333074499,
          -7,
          -7,
          -3.64018319192134,
          -7,
          -4.06513137214021,
          -3.5440266810013323,
          -7,
          -3.949390006644913,
          -3.1233444347665715,
          -7,
          -7,
          -7,
          -7,
          -3.359361102738486,
          -7,
          -3.8436687229791437,
          -7,
          -7,
          -7,
          -7,
          -3.2879360270447022,
          -3.905202028662319,
          -2.3257818431448523,
          -3.177237964019352,
          -3.5079907248196913,
          -3.7448924954516967,
          -7,
          -7,
          -3.9476297473843545,
          -7,
          -7,
          -2.2650363139745027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.193681029541281,
          -7,
          -3.934548947666147,
          -3.88632148655948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.140893543220026,
          -3.8661100398443766,
          -7,
          -3.9228810912082936,
          -2.08845413666929,
          -2.6041429424762548,
          -7,
          -4.023540521554854,
          -4.021306473835836,
          -2.4026297928954663,
          -7,
          -3.5546708351714558,
          -3.906438650003188,
          -3.57541879121436,
          -3.9542425094393248,
          -3.2322335211147335,
          -7,
          -7,
          -2.8033571744485934,
          -7,
          -7,
          -7,
          -4.169424598808618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9269337958028787,
          -4.063370893585704,
          -3.2694492600060707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.508798965403905,
          -7,
          -7,
          -7,
          -2.4426930296358496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6050894618815805,
          -2.523016426582376,
          -7,
          -7,
          -2.143186738714299,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8249064713021124,
          -3.6866660552423403,
          -7,
          -3.361109427505994,
          -7,
          -3.3600630006277616,
          -3.1069155663893837,
          -7,
          -3.7390578478058996,
          -4.002468450128332,
          -3.409820451263753,
          -7,
          -2.9385753148702514,
          -3.3040055534272743,
          -7,
          -3.893928126542607,
          -7,
          -7,
          -7,
          -7,
          -3.879210605291759,
          -3.912965620704104,
          -3.9729430081055686,
          -3.1348780451951295,
          -3.6550663666946304,
          -7,
          -3.3774519630245745,
          -7,
          -7,
          -7,
          -7,
          -3.467275043461977,
          -3.4489123419591823,
          -7,
          -3.1571040314004035,
          -7,
          -3.6478066243908707,
          -7,
          -7,
          -3.540579716504454,
          -7,
          -3.3564720392787937,
          -3.068371418032643,
          -7,
          -7,
          -2.4299350126061854,
          -3.1555095470486334,
          -3.295193115885859,
          -4.199595627478755,
          -7,
          -7,
          -3.8516863154424277,
          -7,
          -7,
          -3.8309733973226505,
          -3.318793504793297,
          -3.596542118161749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6103823923852376,
          -7,
          -7,
          -7,
          -3.8370831508231857,
          -3.8596785766284483,
          -7,
          -7,
          -7,
          -3.439845647895687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6793143110270847,
          -7,
          -4.129313856382213,
          -7,
          -2.9962322981135032,
          -7,
          -7,
          -3.8408585540418794,
          -3.7274328054155808,
          -3.1646873716413735,
          -3.708505880955237,
          -3.278410601475816,
          -7,
          -3.589670402034894,
          -7,
          -3.8304603500309673,
          -3.8829796540372987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8975171294005255,
          -7,
          -7,
          -2.2272886675019556,
          -7,
          -7,
          -3.892261606915535,
          -3.036619683701646,
          -7,
          -7,
          -3.503501283905208,
          -7,
          -7,
          -3.0991624929285946,
          -7,
          -4.182728418124268,
          -7,
          -3.2446658144774316,
          -2.955046014722926,
          -3.2803962380601424,
          -7,
          -4.0764430531995455,
          -3.8330195470765314,
          -7,
          -7,
          -7,
          -3.4728295567127057,
          -3.713448539662225,
          -7,
          -7,
          -2.737341756691405,
          -7,
          -3.9188687433809846,
          -3.8452841263479915,
          -7,
          -3.2563568863955257,
          -3.8732043092770407,
          -4.015192041762835,
          -7,
          -3.3362428660289103,
          -3.254676005181548,
          -3.1934804975764015,
          -7,
          -7,
          -2.582059415336304,
          -2.9378401619201777,
          -7,
          -7,
          -7,
          -3.6828217233274905,
          -2.9743345236890986,
          -3.213593642804973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0249779720956247,
          -7,
          -3.4039551204923084,
          -7,
          -7,
          -4.357610910158445,
          -4.33799140347015,
          -7,
          -4.016991578206205,
          -7,
          -4.474201690191393,
          -7,
          -4.654609657359271,
          -4.437221902399778,
          -4.195013562875828,
          -7,
          -7,
          -7,
          -4.245759355967277,
          -4.6465703535357274,
          -7,
          -7,
          -4.953556748124912,
          -7,
          -4.426706406046314,
          -7,
          -4.4445513508584105,
          -7,
          -4.604506849267865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.313550871333505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.061175930448312,
          -7,
          -4.373840326678294,
          -7,
          -4.0251337522189905,
          -3.0270622879889344,
          -7,
          -7,
          -7,
          -7,
          -4.551837762017642,
          -3.9034698285071703,
          -7,
          -4.228002329762995,
          -3.4109325485434154,
          -3.241417934056642,
          -3.8918161195248606,
          -4.048532433967157,
          -7,
          -7,
          -7,
          -3.8719230318823734,
          -7,
          -7,
          -3.4157910557423414,
          -4.098595275921422,
          -3.7292483387796818,
          -7,
          -3.566555330883055,
          -7,
          -2.7447043988534787,
          -7,
          -4.4157827195557315,
          -3.479719235439571,
          -4.054747075382486,
          -7,
          -3.178241315561237,
          -3.919548758968848,
          -3.7456147202331636,
          -7,
          -4.0522128357697484,
          -7,
          -3.091396761403906,
          -3.8679504234198077,
          -7,
          -3.630534193424769,
          -2.825074341788919,
          -7,
          -3.495855943071568,
          -7,
          -7,
          -3.715260324665018,
          -4.413769018024154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7065471026403576,
          -3.6260836162697796,
          -3.553134295203366,
          -7,
          -7,
          -3.6716818448830852,
          -7,
          -3.6122539060964374,
          -7,
          -7,
          -7,
          -3.723992130319009,
          -3.4103131758945273,
          -7,
          -3.4430020715710614,
          -7,
          -7,
          -4.033423755486949,
          -7,
          -7,
          -3.6080979463252794,
          -7,
          -7,
          -3.902546779313991,
          -3.979092900638326,
          -7,
          -3.915320673475215,
          -7,
          -7,
          -3.81439030710247,
          -3.7175207204583036,
          -7,
          -7,
          -3.650501794878367,
          -3.4719075029395614,
          -7,
          -3.9586594270529334,
          -7,
          -3.591120282237383,
          -3.601806578961057,
          -3.8248414717537007,
          -7,
          -7,
          -3.890197386210029,
          -7,
          -7,
          -7,
          -7,
          -3.855458580386036,
          -3.6049277034284457,
          -3.7231545443921883,
          -4.038162978435675,
          -7,
          -3.9848872010643275,
          -3.9757533890362873,
          -7,
          -4.304813543394108,
          -7,
          -7,
          -3.448582659744249,
          -7,
          -3.24147994288686,
          -3.480054875685184,
          -7,
          -3.8917604014566716,
          -7,
          -4.121625492208471,
          -7,
          -3.781970673912552,
          -7,
          -3.6195107208384987,
          -3.398495550138137,
          -7,
          -7,
          -3.3939260065858368,
          -3.512897756320646,
          -3.5366005233314004,
          -3.928703027430597,
          -3.2448870966392214,
          -3.958516103423041,
          -3.2196967711811264,
          -7,
          -3.928190948038757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.125101566510315,
          -7,
          -3.6163074351357913,
          -3.097530741912097,
          -4.031771907514002,
          -3.952647169758943,
          -7,
          -7,
          -7,
          -3.32522822787085,
          -3.73275552117825,
          -7,
          -7,
          -3.600319329751661,
          -7,
          -3.3773482883807557,
          -3.3844131561393755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8603380065709936,
          -7,
          -3.9358094538099326,
          -7,
          -3.4334955282268766,
          -4.077840102734994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.084137899575048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9259305978684713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0674428427763805,
          -4.427177644001561,
          -7,
          -7,
          -7,
          -4.202651759757338,
          -4.218719266900493,
          -7,
          -2.481442628502305,
          -7,
          -7,
          -7,
          -3.4983893302240454,
          -3.4235735197327357,
          -7,
          -3.6892200372638357,
          -3.5074778272865688,
          -7,
          -7,
          -7,
          -7,
          -2.9114239653762946,
          -7,
          -3.4691737711599395,
          -2.8506462351830666,
          -2.9041743682841634,
          -7,
          -3.037426497940624,
          -3.0519239160461065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9959546877072425,
          -7,
          -2.5771086551437348,
          -7,
          -2.708420900134713,
          -3.3644571851188294,
          -3.004751155591001,
          -2.8472641017707647,
          -7,
          -7,
          -3.302114376956201,
          -3.733582420241032,
          -7,
          -3.616685520895512,
          -7,
          -7,
          -7,
          -3.478854967528663,
          -7,
          -2.850339854583479,
          -2.6773027183949845,
          -7,
          -7,
          -7,
          -3.4128574701421197,
          -7,
          -7,
          -3.1419198739138805,
          -7,
          -7,
          -3.6572471298837166,
          -7,
          -7,
          -4.8252053439881974,
          -7,
          -3.401228167498113,
          -7,
          -7,
          -7,
          -7,
          -3.0068937079479006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3176455432211585,
          -7,
          -4.452872092466737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6112983622964285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.984932166067412,
          -7,
          -2.9438241512023096,
          -7,
          -3.353916230920363,
          -7,
          -3.0711452904510828,
          -7,
          -7,
          -7,
          -3.133503425345409,
          -7,
          -7,
          -3.3823773034681137,
          -2.9718554490935882,
          -7,
          -7,
          -3.033682187200558,
          -4.756377432058169,
          -2.589204670642375,
          -3.5546708351714558,
          -7,
          -3.71614398304079,
          -7,
          -7,
          -7,
          -2.1227618173540255,
          -7,
          -4.004041787358312,
          -3.2069607291557105,
          -7,
          -7,
          -4.071550639366932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039176084376041,
          -3.748962861256161,
          -7,
          -3.705949194910296,
          -7,
          -7,
          -7,
          -7,
          -3.212453961040276,
          -7,
          -2.9963240043881028,
          -7,
          -7,
          -7,
          -3.7666606613741327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.285782273779395,
          -7,
          -3.4194600727860704,
          -3.321598430465344,
          -3.4141931446624807,
          -7,
          -7,
          -3.8615604496727953,
          -7,
          -7,
          -7,
          -3.1189257528257768,
          -7,
          -7,
          -7,
          -3.9357087478426633,
          -7,
          -3.8088633877675866,
          -7,
          -7,
          -3.6910276490373755,
          -7,
          -7,
          -7,
          -7,
          -3.114610984232173,
          -7,
          -7,
          -3.2043913319193,
          -3.2723058444020863,
          -3.353916230920363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3469589986735295,
          -7,
          -4.083574279673991,
          -7,
          -7,
          -7,
          -3.273926780100526,
          -7,
          -7,
          -3.159115821827769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.632457292184724,
          -2.5514499979728753,
          -2.8948696567452528,
          -1.8226295221051456,
          -2.4162243170985684,
          -7,
          -3.53731527311201,
          -7,
          -7,
          -3.00987563371216,
          -3.059184617631371,
          -7,
          -2.541579243946581,
          -2.911157608739977,
          -2.3313352557273705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8645160251841872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1085650237328344,
          -7,
          -7,
          -7,
          -3.831677849191467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.537164012479412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.797137648656306,
          -7,
          -2.856961145846947,
          -2.6546577546495245,
          -7,
          -7,
          -7,
          -2.90687353472207,
          -7,
          -7,
          -3.4665710723863543,
          -7,
          -7,
          -3.228913405994688,
          -7,
          -7,
          -7,
          -7,
          -3.2412973871099933,
          -7,
          -7,
          -7,
          -5.1326886476808244,
          -7,
          -7,
          -3.8140699338427977,
          -2.8920946026904804,
          -7,
          -2.4644256696388567,
          -7,
          -7,
          -7,
          -2.9566485792052033,
          -7,
          -7,
          -7,
          -5.351440688987847,
          -7,
          -7,
          -7,
          -7,
          -3.772834927239018,
          -3.038818787373656,
          -7,
          -7,
          -2.9706567545749585,
          -7,
          -7,
          -7,
          -3.7191654940892134,
          -7,
          -2.397070549959409,
          -3.6429588794097905,
          -7,
          -4.080265627339845,
          -4.0903815147216305,
          -4.921193822378502,
          -7,
          -7,
          -3.0695267534267816,
          -2.5345901249430756,
          -7,
          -7,
          -7,
          -2.6606283529737342,
          -1.9271734168466537,
          -2.624361440767268,
          -3.369215857410143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.366142676814887,
          -7,
          -3.5061260432424652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.282780668249126,
          -7,
          -7,
          -4.622706082719948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.863976783904387,
          -7,
          -7,
          -4.198959338670202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5443781439578124,
          -7,
          -4.464843366682843,
          -3.8983411657275093,
          -7,
          -7,
          -7,
          -4.935013239477764,
          -4.00238207493276,
          -7,
          -4.444825199509748,
          -4.264770614521865,
          -3.7281823755077257,
          -7,
          -4.440751700479185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.691572118017887,
          -5.187238619831478,
          -5.7066222099709005,
          -2.9722028383790646,
          -2.9286518466536946,
          -7,
          -4.956595788822287,
          -7,
          -5.405759452147459,
          -7,
          -4.223444019809615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.899475774307042,
          -7,
          -3.1095785469043866,
          -3.9446109674771273,
          -7,
          -7,
          -4.56981656287103,
          -7,
          -7,
          -4.309342671528001,
          -7,
          -7,
          -2.8506462351830666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.346783143258122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.798774909075712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.829303772831025,
          -3.5525465479556604,
          -7,
          -7,
          -7,
          -7,
          -4.598856138249309,
          -4.618180632232297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4956830676169153,
          -7,
          -7,
          -4.2561161466543815,
          -7,
          -7,
          -2.6403157705629567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0195316845312554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4307735806966204,
          -7,
          -3.1457610911129,
          -3.491921712586151,
          -7,
          -3.2631624649622166,
          -7,
          -7,
          -2.5709319183959467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.331720776357499,
          -7,
          -2.9244515909567834,
          -7,
          -7,
          -2.037504615484121,
          -7,
          -7,
          -7,
          -2.7556208080010745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9813655090785445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3029799367482493,
          -7,
          -3.620621804225215,
          -2.8165726960261033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1095983962831193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.99402664584492,
          -7,
          -4.992725787677043,
          -4.992840596288919,
          -7,
          -3.91912605397765,
          -4.29807545181653,
          -4.516473673696325,
          -4.091702121717148,
          -2.7418512752940463,
          -3.757796562527997,
          -7,
          -7,
          -3.1053149523630434,
          -2.929552358303545,
          -2.9581823749816007,
          -3.739651443709377,
          -7,
          -7,
          -7,
          -3.214321161392318,
          -2.616802055770164,
          -7,
          -3.8968610089919475,
          -2.124292607563691,
          -3.7917081888307824,
          -4.215937034361498,
          -4.515555950945086,
          -3.3093302808059466,
          -3.13893832067623,
          -4.392362752025857,
          -2.5501875723158833,
          -4.29695462344912,
          -7,
          -4.294298648755626,
          -4.6934719238588585,
          -4.397522885718343,
          -4.391742038798527,
          -4.305132016847225,
          -4.69181943079963,
          -3.88675529954508,
          -4.693265155714742,
          -2.7509031392906147,
          -7,
          -3.915439410670454,
          -4.699213141173923,
          -3.6952758632075,
          -3.3104256450108718,
          -4.517024258314842,
          -4.3938251796516585,
          -4.527591237920567,
          -4.695617372314424,
          -4.521377838762743,
          -2.873065106554488,
          -4.701934778738081,
          -3.24638367287559,
          -3.8133140589458345,
          -4.994550297854503,
          -3.953939713813928,
          -3.422779846389302,
          -4.995604485821234,
          -4.092803952476481,
          -4.041695269817748,
          -7,
          -4.694144339135403,
          -4.3078937807171505,
          -3.095825072722579,
          -4.993445048570157,
          -4.993078948010719,
          -4.0987086056043305,
          -7,
          -3.7835631028395746,
          -3.292996875989236,
          -7,
          -4.0994173263705065,
          -2.5516803258246297,
          -7,
          -4.523612083458387,
          -7,
          -4.993934171088351,
          -3.399368759646763,
          -7,
          -4.091033516054471,
          -7,
          -5.002947520467159,
          -4.296230678487514,
          -5.004403065060992,
          -3.528685357587024,
          -3.583643395030574,
          -4.2200601211412225,
          -2.7580586501388784,
          -4.102716625314743,
          -3.6730048708508534,
          -4.993083360698062,
          -7,
          -5.002412308205343,
          -4.521512915129848,
          -3.959886597547779,
          -3.4508903227897534,
          -4.993639000881486,
          -3.726936681435421,
          -4.3933909180321775,
          -7,
          -7,
          -3.668746395975131,
          -7,
          -3.4211708017896476,
          -4.520203957132736,
          -3.6474254958901158,
          -3.483284112093539,
          -7,
          -4.993916554616275,
          -4.3944779478432645,
          -3.3155242827531506,
          -1.5835703517269508,
          -7,
          -7,
          -3.160846796673584,
          -3.220232448467026,
          -3.245508413341098,
          -4.393798873122975,
          -2.9020453468316267,
          -2.9791266558444605,
          -4.216662834455617,
          -3.906438650003188,
          -3.71614398304079,
          -7,
          -4.695556095579392,
          -3.571411179247495,
          -3.7777806646709307,
          -4.294254538689071,
          -4.694153121987731,
          -3.2383007574516087,
          -3.7025985345511043,
          -7,
          -4.691797355026257,
          -3.782472624166286,
          -7,
          -7,
          -4.992769948427294,
          -7,
          -7,
          -3.956552591917399,
          -3.633544198011875,
          -2.9026710009836583,
          -4.534580260907068,
          -7,
          -3.744251796297106,
          -4.515754661190856,
          -4.692719166818034,
          -4.09373240974699,
          -3.8343133885293947,
          -3.514153288634498,
          -7,
          -7,
          -3.1496369255515337,
          -3.4505504606034503,
          -4.992840596288919,
          -7,
          -4.999195811104177,
          -4.696338911742569,
          -4.39123512565331,
          -7,
          -4.39610776932746,
          -4.098583162602924,
          -3.700024059767739,
          -3.9988388829513455,
          -3.3694467598440587,
          -4.998263698788174,
          -4.994673418386409,
          -2.6293306430230947,
          -4.99427314897317,
          -4.6917046245223535,
          -7,
          -3.2241378422167073,
          -4.295065447601705,
          -7,
          -4.992884745367121,
          -3.521039963927612,
          -4.994057466388573,
          -2.999052427758291,
          -7,
          -4.3144950176329955,
          -2.5246682692417513,
          -7,
          -4.312405872352393,
          -3.664932433548043,
          -4.69636949601487,
          -4.097977065496432,
          -4.219724204427858,
          -4.044618145823885,
          -4.218557385685178,
          -3.9564565834098997,
          -4.164191346399106,
          -7,
          -4.408757078487127,
          -7,
          -4.183582992351017,
          -4.1543152663277905,
          -3.799880813751481,
          -4.294527948909792,
          -3.006236195997821,
          -7,
          -3.6930775756475187,
          -7,
          -3.719056385289504,
          -7,
          -3.848413466516796,
          -3.342162194035208,
          -3.8865210943541246,
          -7,
          -3.922102366807607,
          -3.850851569406117,
          -4.176165703157553,
          -7,
          -7,
          -4.994048660742143,
          -4.993034818671166,
          -4.294492679842112,
          -3.880382600567092,
          -4.391080730225895,
          -3.848584949753332,
          -3.2257030210836604,
          -3.5922152039562656,
          -3.9008273227463928,
          -1.7734130132673815,
          -4.9924916607033785,
          -4.693177139403572,
          -3.4759615891924236,
          -4.394543608436238,
          -7,
          -4.692260710781003,
          -3.3765378531518766,
          -4.697194458267799,
          -4.396024896608593,
          -7,
          -7,
          -4.516169451725322,
          -7,
          -7,
          -7,
          -4.220265033587232,
          -2.8589481955444622,
          -4.147468731770726,
          -4.089649049381677,
          -7,
          -4.516583846475269,
          -4.995336788822523,
          -4.995042570695854,
          -4.992549099757966,
          -4.2171679787711565,
          -3.3210190017020293,
          -4.220792129711578,
          -4.01674092728626,
          -3.4871175714494034,
          -4.697564962793849,
          -7,
          -7,
          -3.2673110910935783,
          -7,
          -3.1116446237844477,
          -4.296450183213849,
          -3.06612783818228,
          -7,
          -7,
          -4.993987016217477,
          -1.6999396228754549,
          -3.7133141013747264,
          -2.928119371404327,
          -3.0582403888560155,
          -4.543248315911594,
          -4.094541001456839,
          -4.217049432439889,
          -4.692225424878105,
          -4.696046067546922,
          -4.702266783451331,
          -3.6801282253099643,
          -7,
          -7,
          -3.7929079827804753,
          -4.692750007059422,
          -4.095069050964049,
          -7,
          -7,
          -3.3021470709295784,
          -4.04250113308656,
          -4.002610931654495,
          -4.3957194395376415,
          -3.3591023009748793,
          -3.410986976882284,
          -7,
          -2.931235094634994,
          -7,
          -4.092488175292648,
          -2.661298621047443,
          -4.095905632247942,
          -3.5816977780482246,
          -3.6065619252763397,
          -3.6946511535901805,
          -4.397148872562535,
          -4.051028114111754,
          -3.7219277066970906,
          -2.269274041462733,
          -3.4781251750032975,
          -7,
          -7,
          -7,
          -3.5236667647413595,
          -3.3956204125690137,
          -4.693234352034844,
          -4.216838603475208,
          -3.188534769899359,
          -3.9523608832066466,
          -3.8537112456286655,
          -7,
          -3.9331074937869817,
          -4.995270936407388,
          -3.6951444420112227,
          -4.406723226782012,
          -7,
          -2.805452126011353,
          -3.113577139588002,
          -2.3960388820617213,
          -4.694271673113084,
          -4.540262719307992,
          -2.070756812349173,
          -2.33573864700505,
          -4.9924121171611855,
          -3.8197588361982464,
          -4.090430007966779,
          -3.4143475818341713,
          -2.755326094070565,
          -2.355495269475934,
          -3.455610458764592,
          -4.147808778209056,
          -7,
          -4.302646900425265,
          -4.391803709584173,
          -3.5034436006863636,
          -4.995450909360139,
          -2.8325302011296567,
          -4.693124321053439,
          -2.84941605707404,
          -7,
          -7,
          -3.535240304710175,
          -3.276442424245893,
          -4.112124420332844,
          -4.7079532081514905,
          -3.7272797651098264,
          -4.043083496916936,
          -4.545834713183113,
          -3.8573388457193865,
          -3.4838874573139074,
          -4.185699963145484,
          -4.162790498256462,
          -3.2653190965276826,
          -3.854401480650361,
          -3.136273450520397,
          -3.3136116026561218,
          -4.2981614375932145,
          -3.6049876209917846,
          -2.903812409252151,
          -4.33694379239423,
          -3.7307932833288957,
          -4.705987656603487,
          -3.504628359610313,
          -3.952945113862972,
          -3.5179904971151483,
          -3.7011989173716975,
          -3.1783138409662524,
          -3.24224136405354,
          -4.275714358663436,
          -4.398335036939955,
          -3.5433974725754194,
          -3.971028316966284,
          -3.8615254500826492,
          -4.37630315575592,
          -4.100558162695284,
          -4.999169704354565,
          -4.564208255737469,
          -4.545748198286153,
          -3.3604453764272515,
          -4.208587222943199,
          -3.651453097444137,
          -4.041590046889366,
          -3.340474160464808,
          -3.3094415672514828,
          -3.8772931691185653,
          -4.408231482914914,
          -3.6288813378134526,
          -5.000559878837396,
          -3.1404790343114897,
          -3.600678509318092,
          -3.6616836424574517,
          -3.0979718667204446,
          -2.7768252714096775,
          -2.8300452929631956,
          -4.6967319740211,
          -3.921568567164905,
          -4.064836376044476,
          -4.516142987566927,
          -4.239249413476724,
          -3.10156450476769,
          -4.232602273130774,
          -4.518803373065476,
          -3.2272149385107447,
          -2.925675141252281,
          -2.825397392497991,
          -4.692802870950005,
          -3.0715561430703127,
          -4.994211536306786,
          -3.072360897625468,
          -4.317545213369664,
          -3.344997458978293,
          -3.836407199815395,
          -3.212735360541053,
          -7,
          -4.120738405542943,
          -3.634091414447039,
          -3.4922343499973505,
          -5.008123037385538,
          -2.8748631189600693,
          -4.416032735575399,
          -3.1609971346756005,
          -3.853826602306928,
          -3.9952972785716847,
          -3.0834042439258478,
          -3.1096825421353387,
          -5.0064360898728,
          -3.107200469352167,
          -4.994321552794073,
          -4.16253026924255,
          -3.172166484285892,
          -2.6569631495746546,
          -7,
          -4.691792939736922,
          -7,
          -4.090028673590874,
          -4.167861444567519,
          -3.135789010791428,
          -4.000572890691385,
          -3.305028753746333,
          -4.993586113386161,
          -4.04474005060347,
          -3.239390163072411,
          -4.524196997775221,
          -4.2213055419384045,
          -4.148536553821937,
          -3.81051814410331,
          -7,
          -2.7015245409453135,
          -3.72964214883219,
          -4.994945918272672,
          -4.221879149166118,
          -3.598950661412175,
          -4.30085189841397,
          -3.780109668814816,
          -4.695004215553539,
          -4.99471298543157,
          -3.78588648069122,
          -7,
          -4.092224852134988,
          -2.793113454220208,
          -3.5136600060801557,
          -7,
          -3.7328519400012916,
          -4.692009236142928,
          -7,
          -2.916707569686794,
          -2.953076575498739,
          -3.5583566952997225,
          -7,
          -4.303761784087927,
          -3.403855575481451,
          -4.995959697491984,
          -3.641478421525803,
          -7,
          -4.298800696027079,
          -3.3386256077370664,
          -4.147729310675981,
          -7,
          -3.569646964941176,
          -3.956164063051131,
          -3.835259232912736,
          -4.392551871155508,
          -4.220090646144356,
          -4.297462857233573,
          -4.995029392086501,
          -3.884856337732354,
          -3.855430309029509,
          -3.1250562356895384,
          -7,
          -3.82961678096687,
          -3.8909194769224866,
          -7,
          -4.203561244770675,
          -7,
          -4.039193721058287,
          -4.179120729609299,
          -3.999930507323333,
          -2.146758187865031,
          -3.827067574895181,
          -4.40564938958902,
          -4.219571429078233,
          -4.5177851177248165,
          -2.3239399715085596,
          -4.994647038353484,
          -3.654289570174457,
          -4.994202733783717,
          -4.301095134950942,
          -3.5405755469905653,
          -4.997211582832505,
          -4.992637452702946,
          -3.4730404547971117,
          -2.965161456900238,
          -3.4769168327427638,
          -4.097626008369331,
          -3.2723905327008245,
          -4.401297125021583,
          -2.9718491303519903,
          -3.9176017753699286,
          -3.6741139861546683,
          -4.232373429428926,
          -4.395155962401246,
          -4.394491080756056,
          -4.691929792837514,
          -7,
          -2.703670619430989,
          -4.7021935055383075,
          -4.393645386605536,
          -5.003063971227445,
          -3.3633810336054455,
          -4.154797716800404,
          -3.846406705028264,
          -2.95579570442515,
          -2.746523605930747,
          -4.099706532297829,
          -7,
          -3.794243992434201,
          -7,
          -3.7791804149414143,
          -3.780156291265134,
          -4.233465707171558,
          -7,
          -4.044221718804828,
          -4.21809328354526,
          -3.1907074866648917,
          -4.694451633333337,
          -4.994202733783717,
          -7,
          -4.691678126455561,
          -7,
          -7,
          -7,
          -4.172757175089349,
          -3.655505141739744,
          -3.243090291496643,
          -4.994457934544334,
          -4.994919554787319,
          -7,
          -7,
          -4.9953850742482295,
          -7,
          -4.399297227459307,
          -4.997897275474923,
          -3.5124018465749907,
          -4.061284894874462,
          -3.6120841852279186,
          -4.9950996733824,
          -4.992743452515999,
          -3.528196562395411,
          -7,
          -7,
          -2.888034807041142,
          -7,
          -7,
          -4.528166530720789,
          -4.701399587752211,
          -3.47006442579016,
          -7,
          -7,
          -4.398456511847029,
          -7,
          -3.4784561468433646,
          -4.997849268568125,
          -4.393772565000729,
          -7,
          -3.124178055474675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1815577738627865,
          -3.137492068939977,
          -7,
          -2.7134905430939424,
          -2.3078524552347384,
          -3.512924418964968,
          -3.3824287449229447,
          -2.978864984347657,
          -7,
          -7,
          -7,
          -7,
          -3.873378736409141,
          -7,
          -7,
          -3.418135498425232,
          -3.3392200721221386,
          -2.7701152947871015,
          -2.8302678009336417,
          -7,
          -7,
          -2.9960736544852753,
          -7,
          -3.7901502325789487,
          -2.946697837245742,
          -7,
          -7,
          -7,
          -7,
          -2.807535028068853,
          -3.2615007731982804,
          -7,
          -3.4596939764779706,
          -7,
          -4.188969084727143,
          -3.0874264570362855,
          -2.8709888137605755,
          -2.962369335670021,
          -3.27600198996205,
          -3.0948203803548,
          -7,
          -7,
          -7,
          -2.584783378996508,
          -7,
          -2.612928276545454,
          -1.9400443971589085,
          -2.3409522994077023,
          -2.686189234244024,
          -7,
          -3.216957207361097,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -7,
          -2.724275869600789,
          -2.0822723230247666,
          -4.459874769298969,
          -7,
          -7,
          -2.715446198616883,
          -2.720572720364261,
          -2.497366198100159,
          -3.212098782544173,
          -0.9652378937407882,
          -7,
          -3.826227103162004,
          -7,
          -3.4578818967339924,
          -7,
          -2.513217600067939,
          -2.606757447446635,
          -3.4252080511386565,
          -3.1357685145678222,
          -7,
          -2.82865989653532,
          -3.205745540942662,
          -2.4533183400470375,
          -3.13534470923348,
          -2.782293422809544,
          -7,
          -3.499279676883177,
          -3.6082050077043264,
          -3.4417344009978166,
          -7,
          -7,
          -2.3628054903717945,
          -7,
          -3.001156577199942,
          -2.94733567594874,
          -7,
          -3.5657002751076674,
          -7,
          -3.0211892990699383,
          -7,
          -2.429097268342519,
          -3.037027879755775,
          -2.6289724632007867,
          -7,
          -2.2356186149722146,
          -2.2255246521651406,
          -3.18440748541232,
          -7,
          -7,
          -7,
          -3.6172275694385108,
          -7,
          -7,
          -3.140036410975282,
          -7,
          -3.2118322079177557,
          -7,
          -3.491305652220942,
          -4.060009977677667,
          -7,
          -3.57541879121436,
          -7,
          -4.695556095579392,
          -7,
          -3.228913405994688,
          -3.189209489582306,
          -7,
          -7,
          -2.698121772656406,
          -2.853211334503317,
          -7,
          -2.7238659644435037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9293459289107084,
          -3.6949852230728335,
          -3.433769833924866,
          -7,
          -7,
          -7,
          -7,
          -3.2971036501492565,
          -7,
          -3.164114820984341,
          -7,
          -2.5168657614978143,
          -7,
          -1.54329101510127,
          -7,
          -7,
          -3.4000196350651586,
          -7,
          -7,
          -2.6240757311456826,
          -3.358315640082196,
          -3.0132586652835167,
          -2.8709888137605755,
          -3.0874264570362855,
          -3.6095410528172773,
          -7,
          -2.210704863182517,
          -3.427651432153175,
          -2.538133687250669,
          -7,
          -7,
          -7,
          -3.127428777851599,
          -2.146472577133757,
          -7,
          -2.6725353363248434,
          -2.824776462475546,
          -7,
          -2.7275412570285567,
          -3.1649473726218416,
          -2.669735356870171,
          -7,
          -7,
          -3.648067129448935,
          -7,
          -7,
          -7,
          -3.389343311252078,
          -7,
          -2.6464037262230695,
          -2.7832781164810925,
          -3.1601682929585118,
          -3.115527305527498,
          -7,
          -3.377032909310364,
          -3.410608542568368,
          -4.3537624030672,
          -7,
          -7,
          -7,
          -3.8008544915035607,
          -7,
          -3.04688519083771,
          -7,
          -7,
          -3.787247880331954,
          -7,
          -7,
          -1.833547362858849,
          -4.066586796470695,
          -3.1885910365939902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.179838928023187,
          -3.465035673747828,
          -2.7405600512253856,
          -4.150480122270334,
          -5.412443746544762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8767949762007006,
          -7,
          -7,
          -7,
          -3.1065308538223815,
          -7,
          -3.0595634179012676,
          -3.3697722885969625,
          -3.5473611290768665,
          -7,
          -7,
          -7,
          -3.1010593549081156,
          -7,
          -3.1936810295412816,
          -7,
          -2.7353327063206136,
          -7,
          -2.3884564527002667,
          -3.822494985278751,
          -3.2511513431753545,
          -7,
          -7,
          -7,
          -2.6823707425165573,
          -2.8195439355418688,
          -3.8424969075458146,
          -7,
          -4.113918296133177,
          -7,
          -7,
          -7,
          -3.716337287889549,
          -3.3074247193348603,
          -3.288651577789465,
          -2.719858389150438,
          -3.875234946450165,
          -7,
          -7,
          -7,
          -3.307067950661298,
          -2.7597937089078433,
          -7,
          -7,
          -2.6388219222193925,
          -2.8327217499964084,
          -7,
          -7,
          -7,
          -2.663700925389648,
          -2.341169026512188,
          -2.815577748324267,
          -3.0432312493636555,
          -3.341038631677523,
          -3.811463290247623,
          -2.8820067810004915,
          -3.0791812460476247,
          -7,
          -7,
          -7,
          -7,
          -2.694078462080759,
          -3.2838889379760565,
          -2.4615908660130277,
          -3.825945143203848,
          -7,
          -7,
          -2.857935264719429,
          -4.5734962735793205,
          -2.5029730590656314,
          -7,
          -7,
          -7,
          -3.496652939250918,
          -2.770575889253758,
          -7,
          -7,
          -3.198244586228236,
          -7,
          -2.193451997150143,
          -3.1439511164239637,
          -2.514391475407105,
          -7,
          -3.269045709657623,
          -2.5601826304358717,
          -7,
          -4.258487624056927,
          -4.09652766560644,
          -4.645181184614235,
          -7,
          -2.716067583629281,
          -4.419017617657288,
          -3.2137169289704004,
          -7,
          -7,
          -7,
          -3.127428777851599,
          -3.52283531366053,
          -2.9210916532959033,
          -2.582874673593952,
          -7,
          -7,
          -2.4059721038560276,
          -7,
          -2.8937617620579434,
          -7,
          -7,
          -7,
          -1.9475459819506464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.416465756013914,
          -3.480276495763096,
          -7,
          -4.295929776786988,
          -3.8835251645274904,
          -7,
          -7,
          -7,
          -4.246465753063679,
          -7,
          -7,
          -7,
          -4.377843321833933,
          -7,
          -7,
          -7,
          -7,
          -4.610816253967414,
          -7,
          -4.539276882190668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.477410687907252,
          -7,
          -3.8372275786535504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.319012316571296,
          -7,
          -4.675567556920825,
          -3.8376626956490294,
          -3.917190308511564,
          -7,
          -7,
          -7,
          -3.805437923313723,
          -7,
          -7,
          -4.450264508559852,
          -3.7099997689230975,
          -3.6441520091914086,
          -7,
          -3.667935234429692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7387365280203073,
          -3.9446025096115447,
          -4.928761877868489,
          -7,
          -3.1340176456759834,
          -7,
          -4.113121711270605,
          -7,
          -5.105324505480681,
          -4.0971878725708955,
          -7,
          -7,
          -4.032538179260007,
          -7,
          -4.4858136687807795,
          -7,
          -7,
          -7,
          -4.299300234916784,
          -3.8932484033466537,
          -7,
          -3.6037986196117022,
          -4.259718081767896,
          -7,
          -4.746599173776715,
          -7,
          -7,
          -4.011993114659257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.477381753267053,
          -2.9766556049707797,
          -3.1578961429241805,
          -7,
          -7,
          -3.3532428314337293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8468386188677917,
          -3.670709595223797,
          -7,
          -7,
          -7,
          -7,
          -2.9361785093615893,
          -7,
          -7,
          -3.817036226050029,
          -7,
          -7,
          -7,
          -3.593286067020457,
          -7,
          -3.7342796444928203,
          -7,
          -7,
          -4.602678420438509,
          -3.7346572321257514,
          -4.79192912977267,
          -7,
          -7,
          -3.1860612225861757,
          -7,
          -7,
          -7,
          -3.341038631677523,
          -3.7872715070480547,
          -7,
          -7,
          -7,
          -3.3336487565147013,
          -3.4290251567115186,
          -7,
          -7,
          -3.2757719001649312,
          -7,
          -3.388278863459639,
          -3.533560238411781,
          -7,
          -7,
          -2.605305046141109,
          -3.5851221863068155,
          -7,
          -3.8622208538486498,
          -7,
          -7,
          -7,
          -7,
          -3.4086044543256793,
          -3.237166582685473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5116160205691376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2289774943120633,
          -3.0557805676563268,
          -3.6734816970733473,
          -7,
          -4.016573746269123,
          -7,
          -3.4777722083492573,
          -7,
          -3.577491799837225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0595003074627485,
          -3.428944290035574,
          -7,
          -3.7081901540503384,
          -7,
          -3.5259513412480126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9647309210536292,
          -3.927797944526652,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0874264570362855,
          -3.13481437032046,
          -7,
          -7,
          -3.1781132523146316,
          -3.0437551269686796,
          -3.427713259052271,
          -7,
          -7,
          -3.197280558125619,
          -7,
          -3.6006462356623947,
          -3.168202746842631,
          -7,
          -3.6029141680346397,
          -3.2119210843085093,
          -7,
          -3.5939502952639875,
          -7,
          -3.4940153747571436,
          -7,
          -3.0773679052841567,
          -7,
          -7,
          -3.705607163404605,
          -2.6424645202421213,
          -7,
          -7,
          -3.4479328655921804,
          -7,
          -3.399673721481038,
          -7,
          -7,
          -7,
          -3.5441921107650325,
          -7,
          -3.4761067168401913,
          -3.5665847855598543,
          -7,
          -7,
          -7,
          -3.072935793491505,
          -2.9622272313500853,
          -3.529045170765769,
          -3.181986424480151,
          -7,
          -7,
          -7,
          -2.763993778305563,
          -3.99056082999402,
          -7,
          -7,
          -2.1825124537506366,
          -2.554825535577837,
          -2.6719438254879586,
          -3.3984608496082234,
          -2.3138672203691537,
          -2.45687190911158,
          -2.9848272404840994,
          -3.4305530141906666,
          -2.42907905946471,
          -3.4194600727860704,
          -3.4217684012069243,
          -7,
          -3.1332194567324945,
          -7,
          -3.010299956639812,
          -7,
          -2.939319531078238,
          -7,
          -3.0571804179280635,
          -3.4308809464528913,
          -3.1702617153949575,
          -3.0235610900969454,
          -7,
          -3.3325731039972615,
          -3.452706226511029,
          -7,
          -7,
          -2.7525605875980133,
          -7,
          -2.964296304500324,
          -3.6864575104691117,
          -2.539551943185312,
          -2.917977882592908,
          -7,
          -3.494432898726399,
          -2.7288946220436823,
          -7,
          -3.5110808455391185,
          -7,
          -7,
          -3.1855421548543754,
          -3.46014581749175,
          -2.836841783516819,
          -7,
          -7,
          -2.707002099520009,
          -2.924795995797912,
          -2.6962981293621393,
          -2.4391953457956252,
          -7,
          -7,
          -3.5408201976350564,
          -7,
          -3.160368474792848,
          -7,
          -7,
          -2.3059456359742456,
          -7,
          -7,
          -7,
          -2.90687353472207,
          -7,
          -2.6720978579357175,
          -3.445059047392219,
          -1.6818208377310702,
          -7,
          -3.0095267723266406,
          -2.6618915263256966,
          -2.7544525872374814,
          -7,
          -7,
          -3.373463721632369,
          -3.2854447829074154,
          -3.651859269246949,
          -3.072102778885176,
          -7,
          -3.430961453354948,
          -7,
          -3.402089350572097,
          -7,
          -3.105245174835122,
          -7,
          -2.648067129448935,
          -7,
          -2.419060366638267,
          -2.7897485424721538,
          -3.1762359997608716,
          -3.444044795918076,
          -3.228015175101788,
          -3.0692980121155293,
          -3.1189092394136604,
          -7,
          -7,
          -3.6270584640009895,
          -3.2692015103702907,
          -3.326335860928751,
          -3.5089335260500327,
          -3.2294770588731634,
          -3.1161869696172917,
          -3.4762517960070336,
          -3.9542425094393248,
          -7,
          -3.571411179247495,
          -3.228913405994688,
          -7,
          -3.7864674767402824,
          -7,
          -7,
          -2.894474304435835,
          -2.7988232242204005,
          -7,
          -3.403977963669355,
          -3.705880810155298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9010153549566473,
          -3.2688703670207335,
          -2.933567202189147,
          -3.8392265740134355,
          -7,
          -7,
          -7,
          -7,
          -3.237292337567459,
          -4.1288514233467835,
          -2.7113605516305643,
          -7,
          -7,
          -7,
          -3.151405212887992,
          -7,
          -7,
          -3.29928933408768,
          -2.7059858251715236,
          -7,
          -3.5546102852261643,
          -3.5747255835940734,
          -3.6600112212893308,
          -3.3473300153169503,
          -3.115943176939055,
          -3.079226482700122,
          -7,
          -2.769967801329442,
          -3.3582395081717715,
          -7,
          -7,
          -7,
          -3.1956229435869368,
          -7,
          -7,
          -7,
          -3.0183259454029208,
          -7,
          -7,
          -7,
          -1.8486463172461758,
          -3.0365123762348905,
          -3.505421327583281,
          -3.3572358579987425,
          -3.4712183443078723,
          -7,
          -2.946746935033585,
          -7,
          -2.893983567211847,
          -7,
          -3.5678494505731067,
          -2.7596678446896306,
          -3.4653828514484184,
          -3.04720994556899,
          -7,
          -2.1667580372054505,
          -7,
          -4.080157310970184,
          -3.4302363534115106,
          -3.2409546501190056,
          -3.3981136917305026,
          -2.9880012394757802,
          -7,
          -3.5686709780098966,
          -2.9701918541039056,
          -7,
          -2.516621586200183,
          -2.39997895364675,
          -7,
          -2.9524049395770247,
          -3.615950051656401,
          -3.1852115157200926,
          -7,
          -7,
          -7,
          -3.41161970596323,
          -7,
          -3.4619484952037616,
          -7,
          -7,
          -3.3106083564585234,
          -2.654398706337697,
          -3.716309469007183,
          -3.8114895460022478,
          -3.390405156480081,
          -2.754348335711019,
          -7,
          -7,
          -3.4019172505175748,
          -3.4216039268698313,
          -2.8444771757456815,
          -3.2745042226558834,
          -7,
          -7,
          -7,
          -7,
          -3.4396484295634737,
          -7,
          -7,
          -7,
          -3.461082011652079,
          -7,
          -7,
          -7,
          -7,
          -3.491781775584166,
          -7,
          -7,
          -3.191311257590993,
          -3.837777769553733,
          -3.5952757118020995,
          -3.3071214846498904,
          -2.9341953493478843,
          -7,
          -7,
          -7,
          -2.893225903113069,
          -3.6148972160331345,
          -3.258098269990316,
          -7,
          -3.581827799038108,
          -7,
          -7,
          -7,
          -2.625826713285711,
          -3.2765192467342565,
          -2.7052025967595776,
          -2.1143683277196983,
          -3.1744959193752993,
          -2.381776702512341,
          -2.885926339801431,
          -7,
          -7,
          -3.39208111979816,
          -2.977266212427293,
          -3.3873898263387296,
          -2.7444494574467986,
          -7,
          -7,
          -2.972665592266111,
          -7,
          -2.6725083442440685,
          -2.720572720364261,
          -2.836577274840649,
          -3.077912702949456,
          -3.5643109099606027,
          -3.6759141756799263,
          -3.2953031446371517,
          -3.4271614029259654,
          -3.3754603877138902,
          -3.4158077276355434,
          -3.501333178645566,
          -2.154372009362445,
          -7,
          -3.4428323921463972,
          -3.721068301797159,
          -2.911370707116138,
          -2.9016762313263755,
          -7,
          -3.3386556655787003,
          -3.8339779430518304,
          -2.6325493134758626,
          -3.398981066658131,
          -7,
          -7,
          -3.889413764042709,
          -1.9507513201667126,
          -3.4565178578052627,
          -7,
          -2.7614579752546033,
          -2.661654961009687,
          -3.1415542841654776,
          -7,
          -3.2465601261061714,
          -3.188365926063148,
          -2.743248377731732,
          -2.8897217842562033,
          -7,
          -3.790009389829715,
          -3.3807702005041653,
          -4.113006362769909,
          -7,
          -2.6847925759279203,
          -3.5797795148825737,
          -2.2179771804757857,
          -3.3872118003137306,
          -7,
          -7,
          -2.739018245883481,
          -3.21133416373255,
          -2.34236285652541,
          -2.663700925389648,
          -3.4087486061842442,
          -7,
          -2.8790958795000727,
          -3.443106456737266,
          -3.4831592097169795,
          -7,
          -2.9071425310031405,
          -7,
          -2.6039816229298722,
          -7,
          -7,
          -3.772112054543177,
          -4.184634656586273,
          -3.838723190031372,
          -3.796782411701308,
          -4.428564014832206,
          -3.9321184720291225,
          -3.982406928863795,
          -3.6126885133197812,
          -3.511448849204857,
          -7,
          -7,
          -4.346216013155006,
          -4.133443097549098,
          -3.9651332556473258,
          -4.001895894107419,
          -4.067981658220164,
          -3.9138579857592846,
          -4.154890378645141,
          -4.107209969647869,
          -7,
          -7,
          -4.069301538220501,
          -4.017951068830742,
          -3.515753457160138,
          -4.169645049134955,
          -4.068797896861347,
          -4.20017537681442,
          -7,
          -7,
          -3.533475481486863,
          -7,
          -4.093421685162236,
          -3.886490725172482,
          -3.945320840792275,
          -7,
          -4.151032581756442,
          -3.680335513414563,
          -4.482959291167214,
          -3.9379940509361124,
          -3.634970735172564,
          -7,
          -3.647302933044288,
          -3.869437080721956,
          -3.6873505695580273,
          -3.8178957571617955,
          -3.4651224941954424,
          -7,
          -3.0042438678517387,
          -3.4725370532620774,
          -7,
          -3.9952109288456903,
          -3.1588030588943528,
          -3.300369365845536,
          -7,
          -3.565272115090149,
          -3.239049093140191,
          -7,
          -3.6163179419637905,
          -4.10809123558122,
          -3.5241363765925686,
          -7,
          -3.770011186958184,
          -3.4652383057772145,
          -3.983812595814348,
          -3.4413808849165113,
          -3.0617037342182414,
          -7,
          -3.7890445634880243,
          -7,
          -3.8289531480657217,
          -3.8444771757456815,
          -3.7911992464988753,
          -7,
          -4.06126394230025,
          -3.560683591907453,
          -3.6508831472750027,
          -3.7824009524965296,
          -3.1185717564889077,
          -3.448551739201578,
          -3.608119360712597,
          -3.91324412938236,
          -7,
          -3.4218119281070436,
          -3.924222880518338,
          -2.3342990603276026,
          -3.749318821331103,
          -7,
          -2.996000608571067,
          -3.515221504900477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.321722674346009,
          -2.935809453809933,
          -2.8571062424631903,
          -7,
          -7,
          -3.301482150292958,
          -7,
          -3.005395031886706,
          -7,
          -3.405118593299161,
          -7,
          -3.5321976642124797,
          -3.0106532426610046,
          -3.479143247978613,
          -7,
          -4.188253327026504,
          -7,
          -3.8237349883987313,
          -7,
          -7,
          -3.9050399280762114,
          -7,
          -7,
          -3.5859117103194342,
          -3.7319109421168726,
          -7,
          -4.090716448481099,
          -7,
          -7,
          -7,
          -3.759066626088062,
          -3.760614364094956,
          -7,
          -7,
          -2.8819142594125116,
          -7,
          -2.9954596866210643,
          -7,
          -3.5643109099606027,
          -2.8654768631810366,
          -7,
          -7,
          -7,
          -3.5599066250361124,
          -3.2330595990965874,
          -7,
          -7,
          -3.225180008177683,
          -7,
          -2.9904498565727176,
          -2.7890980595595236,
          -4.248046869358661,
          -7,
          -3.13956426617585,
          -3.7259932589247224,
          -7,
          -3.904093133539673,
          -7,
          -7,
          -7,
          -3.31921019418185,
          -3.143873651331759,
          -3.090169844444793,
          -7,
          -3.563243701140398,
          -7,
          -3.6577249542051082,
          -2.991521413671849,
          -7,
          -7,
          -3.6226284261293253,
          -2.6666219658257964,
          -7,
          -7,
          -2.7111215146502694,
          -2.8715534774719087,
          -3.49045012035602,
          -3.1609684672648433,
          -3.745230984528141,
          -3.092281919036219,
          -3.396838400023691,
          -3.5384480517102173,
          -3.8067225030761813,
          -7,
          -7,
          -3.5296869537729165,
          -3.409087369447835,
          -7,
          -3.7947319638135193,
          -7,
          -7,
          -7,
          -3.475441149842973,
          -7,
          -4.218509247198932,
          -3.792706788898358,
          -3.042247272320338,
          -2.904985881099363,
          -7,
          -7,
          -7,
          -2.9051885225908243,
          -3.52329112918679,
          -7,
          -7,
          -3.1060775192489603,
          -3.0434932671585737,
          -3.2829294634880095,
          -3.1953460583484197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9232440186302764,
          -7,
          -3.305673745669693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1747380145272865,
          -3.5667909123815917,
          -3.695043658821294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.680452069509349,
          -7,
          -7,
          -7,
          -7,
          -3.6620964454179235,
          -7,
          -7,
          -7,
          -7,
          -3.8163075994319398,
          -3.5654936298688624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4026052419199146,
          -3.6769678142947586,
          -7,
          -3.6278776945799716,
          -3.123051817937765,
          -3.930031614950973,
          -7,
          -7,
          -3.19959521190802,
          -3.0616298507383837,
          -7,
          -3.632963168167261,
          -7,
          -7,
          -3.5814945422908995,
          -2.85517289734218,
          -3.3435661323861248,
          -7,
          -2.392696953259666,
          -3.096508140805399,
          -3.351699700405266,
          -7,
          -7,
          -2.5266622930104643,
          -7,
          -3.3171227377145382,
          -3.68087351479754,
          -3.652922887567942,
          -7,
          -7,
          -2.715271944117935,
          -7,
          -2.903524064471262,
          -1.9078578787236007,
          -3.2776092143040914,
          -3.146283113159587,
          -7,
          -3.142472282648642,
          -3.5964871337365443,
          -7,
          -3.7388598020722004,
          -7,
          -3.4095950193968156,
          -7,
          -2.9521140849069925,
          -3.5129510799724906,
          -3.1905184513367484,
          -2.750422676015204,
          -2.7631128737566057,
          -2.784759894664005,
          -2.408355617830904,
          -3.2013515984037575,
          -3.620760489994206,
          -3.640878778701618,
          -2.6365595325567286,
          -3.1675142490484904,
          -3.351603072419129,
          -7,
          -3.58983794314746,
          -7,
          -3.545430829465351,
          -3.0834474888264607,
          -3.292588312465555,
          -7,
          -3.0677402029262404,
          -7,
          -3.162564406523019,
          -3.881897973573011,
          -7,
          -3.000434077479319,
          -3.4197937628984563,
          -3.5871494982543437,
          -1.9990514132044512,
          -7,
          -7,
          -3.558188385437139,
          -7,
          -3.009344646383631,
          -7,
          -1.9180594752653435,
          -2.7321926510062684,
          -2.8536982117761744,
          -3.356854116560244,
          -2.866118484306833,
          -7,
          -2.868443476147031,
          -3.0526298252227178,
          -3.2361277131456423,
          -7,
          -7,
          -7,
          -2.289434579416023,
          -7,
          -3.855094951158622,
          -7,
          -3.2870797934494482,
          -3.340939602038078,
          -3.5770319856260313,
          -7,
          -1.7640632883267116,
          -2.5378190950732744,
          -3.4559862390673195,
          -3.6824158616773586,
          -2.4462954799526213,
          -2.928683835346075,
          -3.327665387050042,
          -3.127968207161918,
          -2.2297860930857993,
          -7,
          -3.024974818074746,
          -3.1721162176299447,
          -2.9710437918360286,
          -3.2620553771910674,
          -2.7539658658651605,
          -3.5805828768143675,
          -2.183417120397686,
          -2.502283337668303,
          -2.728361029865988,
          -7,
          -3.2322335211147335,
          -7,
          -3.7777806646709307,
          -3.189209489582306,
          -3.7864674767402824,
          -7,
          -7,
          -7,
          -3.220108088040055,
          -2.9534144930170947,
          -7,
          -7,
          -3.7267760949597126,
          -7,
          -7,
          -7,
          -3.5901728315963144,
          -7,
          -3.1462210888118802,
          -3.9388698215129865,
          -3.2907022432878543,
          -3.3092041796704077,
          -3.336059277866349,
          -7,
          -7,
          -3.300378064870703,
          -2.205241708157455,
          -7,
          -3.398981066658131,
          -7,
          -7,
          -2.939319531078238,
          -2.9677647953826947,
          -1.5326937275739363,
          -7,
          -3.2417124635841996,
          -3.683137131483007,
          -7,
          -3.383456296524753,
          -7,
          -2.9862490725727446,
          -3.278753600952829,
          -3.0141843975012796,
          -3.43380982236759,
          -7,
          -3.6236627073562047,
          -2.5332071446767435,
          -7,
          -7,
          -7,
          -7,
          -3.6092741724045876,
          -7,
          -7,
          -1.741055467084807,
          -7,
          -3.5719028431953865,
          -7,
          -3.632356046239073,
          -2.0310560563158897,
          -2.500079576528447,
          -1.7660464147650583,
          -1.8390982914222758,
          -2.3375500134552123,
          -1.8121265910619166,
          -7,
          -3.714078164981856,
          -3.670060217473134,
          -7,
          -2.4462954799526213,
          -2.538866850664468,
          -3.423081958297231,
          -7,
          -3.3100557377508917,
          -3.724275869600789,
          -3.288902429348888,
          -7,
          -3.33637395293205,
          -7,
          -2.5226856826046076,
          -2.3447024471171045,
          -3.695131297704026,
          -3.130655349022031,
          -3.6232492903979003,
          -3.947090464219622,
          -3.744605875414239,
          -7,
          -3.2815635951627784,
          -2.909489168417103,
          -3.3199384399803087,
          -7,
          -3.5746099413401873,
          -3.608739919068788,
          -7,
          -7,
          -3.14040328016663,
          -3.586812269443376,
          -7,
          -2.433693655274977,
          -3.8538198458567634,
          -3.6248233370629546,
          -3.95223613386127,
          -7,
          -7,
          -3.625621081424908,
          -3.366236123718293,
          -7,
          -7,
          -3.7368743616484226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3012470886362113,
          -3.5717088318086874,
          -7,
          -3.1023479360588784,
          -2.8894597296429323,
          -7,
          -7,
          -7,
          -3.600755149639618,
          -3.1614678285730546,
          -2.5888317255942073,
          -7,
          -7,
          -7,
          -2.035301973197531,
          -2.9709509343454243,
          -1.951103557856843,
          -2.1333662609889323,
          -7,
          -3.270911639410481,
          -3.601643592893338,
          -2.728678366850914,
          -2.8571352559701793,
          -7,
          -3.738074652823766,
          -7,
          -7,
          -3.3059958827708047,
          -3.272968181699753,
          -3.246055196906444,
          -2.8152630801675933,
          -2.9293678292400998,
          -3.1061483839765227,
          -3.0869823477002094,
          -2.937116510767054,
          -3.589279221235967,
          -2.633835568434839,
          -2.255343462456932,
          -3.1760188706094925,
          -7,
          -3.605951157564873,
          -3.076002913646383,
          -3.3011385557150157,
          -2.921166050637739,
          -2.8739015978644615,
          -3.0409186507485244,
          -2.0429690733931802,
          -3.671358003443492,
          -3.0817792267675337,
          -2.7875490247240235,
          -2.948328310734916,
          -3.267914479847044,
          -7,
          -3.877544107715944,
          -7,
          -2.4669664246957717,
          -3.555094448578319,
          -3.716504163773217,
          -2.4070011961359845,
          -2.771052717714531,
          -3.9742352774430265,
          -7,
          -3.823474229170301,
          -2.8452531174956057,
          -3.7440280025510053,
          -2.9885589568786157,
          -3.574956775764507,
          -7,
          -7,
          -2.5205563093613064,
          -3.173127969938208,
          -3.614158709509175,
          -7,
          -3.7697464671794534,
          -7,
          -3.033745336013974,
          -3.6147917919564176,
          -3.220474206129218,
          -2.9377184436172636,
          -3.3600250891893975,
          -3.2710279942623233,
          -2.430357287504807,
          -3.5146228136944844,
          -2.7005149208160484,
          -3.8163929090370017,
          -7,
          -2.217206793928876,
          -3.5406321682598354,
          -3.3649728908307397,
          -7,
          -7,
          -7,
          -2.3486293266283655,
          -3.4955443375464483,
          -3.233858762564828,
          -2.452109391093665,
          -7,
          -7,
          -3.4625477288026643,
          -7,
          -7,
          -3.6415732531781755,
          -3.042181594515766,
          -7,
          -2.240162204345499,
          -7,
          -3.576226137449605,
          -3.785044958331544,
          -4.318383369999072,
          -7,
          -7,
          -4.739627715444244,
          -3.651681745998869,
          -4.035629827790439,
          -3.5465323817635763,
          -3.483587296968894,
          -3.629409599102719,
          -7,
          -3.6709320156880003,
          -4.268281477192605,
          -4.31293015797777,
          -3.537934471999746,
          -4.391693577036909,
          -3.799797008054908,
          -3.7631583477788877,
          -4.147738141119988,
          -3.5987540405401703,
          -7,
          -4.013500808559337,
          -7,
          -3.970067796549137,
          -3.727730982208553,
          -7,
          -4.086502198970369,
          -7,
          -7,
          -3.5670679035778576,
          -7,
          -4.1042480469904445,
          -7,
          -4.27618597407067,
          -3.718667735316211,
          -7,
          -7,
          -4.19942604159399,
          -7,
          -3.4712036694702526,
          -3.6516656039229356,
          -3.6997076781100517,
          -3.0205066629195114,
          -1.7688546896541124,
          -7,
          -3.9139550634016746,
          -3.7444494574467986,
          -3.303794175527941,
          -3.272835795025385,
          -7,
          -4.490337794344103,
          -3.472633052674273,
          -3.5631249603380444,
          -7,
          -3.5833829982144385,
          -3.519653016141642,
          -7,
          -3.9786825651569444,
          -4.429849137858492,
          -7,
          -7,
          -3.036723311871272,
          -3.330820864782268,
          -3.87661767349757,
          -7,
          -3.912647106218317,
          -7,
          -2.90936065045019,
          -7,
          -3.3935971367804583,
          -3.881726935376418,
          -7,
          -7,
          -4.385320224200911,
          -4.181214548490415,
          -3.6294979442363786,
          -3.562827966219992,
          -3.214203409601812,
          -7,
          -3.614770704069749,
          -2.907372966708177,
          -3.6398847419163043,
          -3.2431287160911935,
          -3.280912700239786,
          -3.839854984601885,
          -4.011439716547123,
          -7,
          -3.556603989486027,
          -3.340582908247528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9012855101952053,
          -3.7460890430562004,
          -3.4234097277330933,
          -7,
          -3.716420733846555,
          -3.70399599724626,
          -3.7582304084577496,
          -7,
          -7,
          -3.647334060324388,
          -7,
          -3.6432354749403233,
          -3.8698768132667665,
          -7,
          -7,
          -3.0172420845476458,
          -7,
          -3.8985057855343586,
          -7,
          -7,
          -2.925593339959713,
          -7,
          -7,
          -7,
          -3.822560336942692,
          -7,
          -4.132739838260885,
          -7,
          -7,
          -7,
          -2.675959499234379,
          -4.111611959923377,
          -7,
          -7,
          -3.0765312192538117,
          -7,
          -3.792951708250132,
          -7,
          -3.6918768225593315,
          -4.023458237643675,
          -7,
          -7,
          -7,
          -3.6885977750811696,
          -3.908431398966006,
          -7,
          -7,
          -3.6639834546082666,
          -7,
          -3.71357453777207,
          -3.0711788047067543,
          -7,
          -7,
          -3.131361989115943,
          -3.817763632280368,
          -7,
          -3.936739878637037,
          -7,
          -7,
          -7,
          -7,
          -3.105082752277355,
          -3.3136563466180315,
          -7,
          -2.786751422145561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2054750367408906,
          -7,
          -7,
          -3.1324883979895946,
          -2.7582493530140964,
          -3.5704845630444004,
          -7,
          -3.5258589244021965,
          -7,
          -7,
          -7,
          -4.1482940974347455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.418168662067866,
          -7,
          -3.6478717653062325,
          -7,
          -3.7245450253450594,
          -3.733277533932582,
          -7,
          -4.284284064190723,
          -7,
          -2.938162192858692,
          -7,
          -3.4044060509212692,
          -7,
          -3.5851786285035163,
          -3.597969275225808,
          -7,
          -7,
          -3.4051755462179893,
          -3.660106221723244,
          -3.6709412807357755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9837164739137494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.224468315012689,
          -7,
          -7,
          -4.54161668151239,
          -7,
          -7,
          -7,
          -7,
          -3.766784515497859,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.2042502514611515,
          -7,
          -7,
          -7,
          -3.8903092168999485,
          -4.207876621591972,
          -7,
          -2.4292137870854282,
          -7,
          -7,
          -7,
          -4.335618349377605,
          -7,
          -7,
          -7,
          -4.27065438456062,
          -7,
          -7,
          -7,
          -3.2844307338445193,
          -7,
          -7,
          -4.864985460659794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2957492612474155,
          -7,
          -2.3832167518513314,
          -7,
          -2.0457140589408676,
          -3.324385356490427,
          -7,
          -3.000434077479319,
          -7,
          -7,
          -7,
          -3.953308577080214,
          -7,
          -3.8958643512472992,
          -3.782759192623997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.307496037913213,
          -7,
          -7,
          -7,
          -4.147227888532488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6163704722912695,
          -7,
          -7,
          -5.124914849754901,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.921166050637739,
          -7,
          -4.752875253901097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3527611917238307,
          -3.565611724902059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.348694190265541,
          -7,
          -7,
          -4.375316039326965,
          -7,
          -7,
          -7,
          -7,
          -3.779921008715502,
          -7,
          -7,
          -2.698535492562001,
          -3.5246557123577773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1227618173540255,
          -4.294254538689071,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9951743347993838,
          -3.449478399187365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.022675761953727,
          -7,
          -4.149465450995452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.937718443617264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.182699903336043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.338136094760166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.398900184921813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5616975326539935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0687052196919415,
          -7,
          -7,
          -7,
          -2.865991800126275,
          -7,
          -7,
          -3.2523675144598987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8221680793680175,
          -7,
          -2.575187844927661,
          -2.999130541287371,
          -3.5631249603380444,
          -7,
          -5.411805672111888,
          -7,
          -7,
          -2.8680563618230415,
          -7,
          -7,
          -7,
          -2.6913025633834833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.242774910613106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1899579507445543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5319895514125506,
          -2.952792443044092,
          -7,
          -7,
          -7,
          -7,
          -3.382242240651941,
          -7,
          -7,
          -3.400537989391946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.109240968588203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1565491513317814,
          -7,
          -3.582177037688409,
          -7,
          -3.327517862760602,
          -2.2671717284030137,
          -7,
          -7,
          -7,
          -7,
          -3.4811558708280352,
          -7,
          -7,
          -7,
          -3.328583449714202,
          -7,
          -3.860278099752235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.73917663191073,
          -7,
          -7,
          -7,
          -7,
          -5.273146012768928,
          -7,
          -7,
          -3.3841324362612313,
          -3.4614985267830187,
          -7,
          -7,
          -1.9666109866819343,
          -7,
          -2.4463448147796543,
          -3.4055171069763763,
          -3.2860071220794747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8017329080485833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278136006715478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.394889257167419,
          -7,
          -5.065404169016913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.961848059018324,
          -3.7756559500737605,
          -7,
          -4.434281408136301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5136658731638,
          -5.487695386285646,
          -5.706273875527286,
          -7,
          -3.3702354372831773,
          -7,
          -4.954633198689235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.429316152131662,
          -7,
          -7,
          -4.209193195719529,
          -7,
          -4.897236600496572,
          -7,
          -2.9439888750737717,
          -4.039523174872934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304974961155454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.018284308426531,
          -7,
          -7,
          -7,
          -4.338735308799518,
          -7,
          -3.2607866686549762,
          -7,
          -7,
          -7,
          -4.193847819973557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.022153327172555,
          -7,
          -7,
          -7,
          -7,
          -4.594370448312677,
          -5.093890749991982,
          -7,
          -7,
          -7,
          -3.9273703630390235,
          -7,
          -3.4350476413399647,
          -7,
          -3.1565491513317814,
          -7,
          -7,
          -7,
          -3.0455185628844927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188365926063148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6478170475939384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.292477593667784,
          -7,
          -7,
          -7,
          -3.7798849631926443,
          -4.628623896431819,
          -3.5972562829251418,
          -7,
          -7,
          -7,
          -2.60439222660167,
          -3.0870712059065353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0362295440862943,
          -4.3918169236132485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2538224387080734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.500648063371912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.004751155591001,
          -7,
          -7,
          -2.568201724066995,
          -2.6570558528571038,
          -7,
          -2.754093393242939,
          -7,
          -7,
          -4.728307779546336,
          -2.8916170935913543,
          -7,
          -7,
          -7,
          -3.9184497424011577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.344333315681277,
          -7,
          -7,
          -7,
          -4.17424360949013,
          -7,
          -7,
          -7,
          -7,
          -3.2211533219547053,
          -7,
          -4.566537657118045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4085791254086675,
          -7,
          -3.518755147594115,
          -7,
          -3.0674428427763805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3087777736647213,
          -3.4325577715496496,
          -7,
          -3.2200557602513413,
          -3.511950170375499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.589505858136387,
          -7,
          -7,
          -7,
          -7,
          -3.055378331375,
          -7,
          -7,
          -3.4727564493172123,
          -3.2998389155298993,
          -7,
          -7,
          -7,
          -7,
          -3.4150290231817015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.768587073814598,
          -7,
          -3.730176424163481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.556151677886138,
          -7,
          -7,
          -7,
          -3.9863237770507656,
          -7,
          -7,
          -3.247236549506764,
          -3.3568859411659737,
          -3.7811088357294667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1565491513317814,
          -7,
          -3.9114239653762946,
          -7,
          -7,
          -7,
          -4.694153121987731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305781151254982,
          -7,
          -7,
          -2.8698182079793284,
          -4.373187949912719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6855327493999135,
          -3.4073909044707316,
          -3.111262513659065,
          -3.8950355974523228,
          -7,
          -2.9777236052888476,
          -7,
          -7,
          -3.8441042306975133,
          -7,
          -7,
          -7,
          -3.7670444942436667,
          -7,
          -7,
          -7,
          -2.401154272285065,
          -7,
          -3.2533380053261065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1305083703267504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9372670722114127,
          -7,
          -4.286770736714056,
          -7,
          -3.2656038765850357,
          -3.8915124654601096,
          -7,
          -7,
          -3.615634468877416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3568859411659737,
          -7,
          -2.911601445755513,
          -7,
          -3.4872326745725313,
          -3.3529539117100877,
          -2.2710930605031194,
          -7,
          -3.4824090401601135,
          -7,
          -7,
          -7,
          -3.281033367247727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3616522999739376,
          -3.568495067193246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.140539466972342,
          -4.758950561884583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2946866242794433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9439592293874295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.334800271940003,
          -7,
          -7,
          -7,
          -7,
          -4.320997416794221,
          -7,
          -3.5373278757870126,
          -7,
          -4.41230091277274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.496145181388866,
          -7,
          -7,
          -7,
          -2.808210972924222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.132787823950332,
          -3.305190091553366,
          -7,
          -3.814757969195035,
          -7,
          -7,
          -3.616580530085886,
          -7,
          -7,
          -3.5399538416563967,
          -3.8046845149069406,
          -3.342620042553348,
          -7,
          -3.4099331233312946,
          -4.874331679579926,
          -3.584670384464349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4205333226934997,
          -7,
          -7,
          -7,
          -7,
          -3.858555242671831,
          -4.391993072259713,
          -4.574411543157535,
          -7,
          -7,
          -4.417691691081776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.501470072100412,
          -3.441459468917794,
          -3.3749315539781883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.029613716996135,
          -7,
          -7,
          -4.598111733328968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.593452219346109,
          -4.036640300004483,
          -7,
          -7,
          -7,
          -7,
          -4.998869363882344,
          -4.5841841726968395,
          -7,
          -7,
          -4.923906874020851,
          -7,
          -7,
          -7,
          -7,
          -4.2799405728395525,
          -7,
          -4.113441953965322,
          -7,
          -7,
          -4.192901826109565,
          -7,
          -4.776134343165844,
          -7,
          -4.679536910832304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.084544737611001,
          -7,
          -7,
          -4.766003644178281,
          -7,
          -3.6795187436957892,
          -7,
          -3.398981066658131,
          -4.634051331848015,
          -4.003718963823115,
          -3.226213120724107,
          -7,
          -4.185726258953287,
          -4.381800742504703,
          -7,
          -7,
          -3.53668467262093,
          -7,
          -7,
          -4.377670439334323,
          -7,
          -7,
          -4.214552455234245,
          -4.488289779428209,
          -5.104583553583756,
          -7,
          -3.710286647702891,
          -7,
          -4.4796040990439066,
          -7,
          -4.9286842618460565,
          -7,
          -7,
          -7,
          -7,
          -4.4363535037706585,
          -7,
          -7,
          -3.743588150159904,
          -3.821971817642043,
          -4.422502293717657,
          -7,
          -7,
          -4.041693625905536,
          -4.957195302014875,
          -7,
          -5.047013822754954,
          -7,
          -3.6191977157929474,
          -4.610724025229824,
          -4.300986564044174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9955474494751373,
          -7,
          -3.7137424784090824,
          -7,
          -7,
          -4.34738856792903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.022387125686438,
          -7,
          -7,
          -4.599195076346368,
          -4.618288723365895,
          -4.312529954073747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2725377773752373,
          -3.478470295686062,
          -7,
          -7,
          -7,
          -7,
          -3.7035492982382308,
          -7,
          -7,
          -3.19506899646859,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8525714786244296,
          -7,
          -7,
          -3.9097699147327694,
          -7,
          -3.856356573063003,
          -7,
          -3.319314304090512,
          -7,
          -7,
          -3.8634418286137087,
          -7,
          -7,
          -7,
          -7,
          -3.8191489428071344,
          -7,
          -7,
          -3.2079707950778773,
          -3.632902494152879,
          -7,
          -7,
          -3.3563233628438742,
          -7,
          -7,
          -7,
          -7,
          -3.6848453616444123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055442043614812,
          -7,
          -7,
          -4.549530474736012,
          -7,
          -3.4824447919182653,
          -7,
          -7,
          -7,
          -7,
          -3.0859146287065933,
          -7,
          -7,
          -7,
          -7,
          -4.09841873415025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7805333253164046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.200782121411112,
          -7,
          -7,
          -3.557025722386383,
          -7,
          -3.4470028984661623,
          -7,
          -7,
          -7,
          -7,
          -3.677333151419902,
          -7,
          -7,
          -7,
          -3.8228434139044927,
          -7,
          -4.293583513496117,
          -4.294157480769691,
          -3.598702982683435,
          -2.7515703673593683,
          -2.9918797685613647,
          -4.298001111407518,
          -3.400732212870903,
          -2.3524341039128713,
          -3.387247411357324,
          -7,
          -3.9967523936992766,
          -2.4645947374430204,
          -2.4168746316798377,
          -3.107655062979815,
          -3.459844642388208,
          -4.2930087866585644,
          -7,
          -4.294752721910178,
          -2.215283195057249,
          -3.0316023385073954,
          -4.292322539914916,
          -2.752999084377616,
          -2.175000237996708,
          -3.610383318582761,
          -3.698383310678066,
          -3.6912362538205015,
          -2.9473928721027094,
          -3.1995864208954536,
          -7,
          -2.769541950043048,
          -3.19506899646859,
          -3.995086496505733,
          -3.995393852839795,
          -3.7002492870420225,
          -2.9109731122496454,
          -3.344479604166383,
          -2.532460373916233,
          -3.817036226050029,
          -3.2907628862373217,
          -3.4560622244549513,
          -2.7399013690520677,
          -3.8204860776625775,
          -3.4000628548971994,
          -2.7845357847300596,
          -3.2323607123535703,
          -1.6653756948311083,
          -3.601582004456866,
          -3.7071015665766813,
          -3.748381865207099,
          -1.9413817860395093,
          -3.7196212723403606,
          -1.7869975967331273,
          -2.584489928729576,
          -1.54629684561895,
          -2.611157764534064,
          -4.302633919813779,
          -3.050895086469539,
          -2.7277990515277923,
          -3.4044060509212692,
          -4.008429826797229,
          -7,
          -7,
          -3.0038911662369103,
          -1.353028995703768,
          -2.070191456658844,
          -3.59802407233419,
          -4.295347148333618,
          -1.4588888292013262,
          -3.992884745367121,
          -2.51382110743545,
          -2.4090036338875827,
          -3.8192367500217284,
          -3.4953857346114607,
          -2.625515371611312,
          -7,
          -2.6971482117148518,
          -7,
          -3.998520882835038,
          -0.7181772172401191,
          -2.6271199599275414,
          -2.9196227989342525,
          -7,
          -2.8096785204031822,
          -3.264173628357079,
          -3.0260855683142416,
          -2.9576455913890936,
          -3.4199351066265016,
          -7,
          -1.9684173033680894,
          -2.774459337692739,
          -1.8509877415144513,
          -3.4500070327955514,
          -7,
          -3.4946713037544734,
          -2.789601447654983,
          -2.7774671001061875,
          -2.63663926462289,
          -3.343539879923933,
          -2.5248352370562896,
          -3.704986543890056,
          -4.293892667053009,
          -4.293539330731757,
          -1.9059280135255012,
          -4.294752721910178,
          -2.93584972965916,
          -3.2365582535607142,
          -1.5840240812757094,
          -1.9106058289339427,
          -3.8271322421466074,
          -3.8222988712623667,
          -3.5340895947605686,
          -3.53704212531207,
          -2.4651516539268714,
          -3.706611115387456,
          -7,
          -2.797328653119835,
          -2.7317805659591463,
          -2.939001266294933,
          -3.6100210246641455,
          -2.9411035246672013,
          -2.421414071355593,
          -4.304145712763788,
          -2.8033571744485934,
          -4.004041787358312,
          -3.2383007574516087,
          -2.698121772656406,
          -2.894474304435835,
          -3.220108088040055,
          -3.9951743347993838,
          -4.305781151254982,
          -7,
          -2.645422269349092,
          -7,
          -3.594988881285679,
          -3.0719740091032928,
          -7,
          -4.292189592623499,
          -4.293804359919337,
          -3.5180750368775167,
          -3.9925093350677754,
          -2.275494751283599,
          -2.57548982690978,
          -2.4213035352156096,
          -2.835925995815466,
          -4.30612467073653,
          -3.6497728273006773,
          -7,
          -3.997648454896206,
          -3.711807229041191,
          -4.008600171761918,
          -2.598706349320375,
          -7,
          -3.822625678774141,
          -7,
          -2.37501583611072,
          -4.294157480769691,
          -4.292721137774543,
          -3.625888383862849,
          -2.691397273771363,
          -3.694363857175814,
          -3.274913217187631,
          -3.319896858814888,
          -3.3823172807353936,
          -2.6893088591236203,
          -3.021891873919109,
          -2.2706788361447066,
          -2.842276319332164,
          -2.796747738875302,
          -2.3030902572495062,
          -3.824060717418653,
          -7,
          -7,
          -3.5289167002776547,
          -3.823061039927238,
          -3.821666345224573,
          -3.9933039379194746,
          -2.653671089068736,
          -3.45484486000851,
          -3.2209490175139024,
          -7,
          -2.4615414010100047,
          -1.979788878129233,
          -3.7064190488337676,
          -2.571435856575893,
          -2.257964125857119,
          -3.274703524516905,
          -2.990802855439509,
          -3.1722901065317064,
          -2.7782959910888336,
          -3.711174300366762,
          -3.1142981595540196,
          -2.892780765304357,
          -4.001474096691733,
          -3.5321535564637863,
          -7,
          -2.522785672204601,
          -2.652308075867826,
          -3.122965927916578,
          -7,
          -2.1401483460126145,
          -4.293384655649437,
          -2.343900712249606,
          -3.04796676354869,
          -2.664140335902428,
          -3.0440386303689775,
          -3.4577954183422484,
          -2.328875757782688,
          -2.657503390420801,
          -7,
          -2.183493544341022,
          -3.0656004601239433,
          -2.131153997674171,
          -7,
          -7,
          -3.6979699765543392,
          -3.516755660221549,
          -3.6952408214435173,
          -3.699859396707893,
          -4.29578694025161,
          -3.4586378490256493,
          -2.7457278780906513,
          -2.547149643984906,
          -2.87081608186603,
          -2.851987519737212,
          -7,
          -3.0962145853464054,
          -2.8252746184329043,
          -4.3127695570523,
          -3.9927964427221965,
          -3.9953719060281623,
          -3.1247486911970017,
          -3.3658829965343102,
          -3.620739689951964,
          -7,
          -7,
          -7,
          -3.696705780933917,
          -3.991801798844644,
          -3.8188195075475364,
          -2.828930025405288,
          -2.154039567491323,
          -3.593906044972859,
          -3.5155868673998802,
          -7,
          -7,
          -3.3061032087275857,
          -3.4016589724951523,
          -7,
          -3.22696488563729,
          -3.2042104512495033,
          -3.3694632481783837,
          -2.845080805764293,
          -2.589238558862275,
          -3.6230838133595475,
          -7,
          -7,
          -0.274868821090727,
          -2.911772031594504,
          -1.7976661590155651,
          -3.3524826673431667,
          -2.7042554748129772,
          -3.4638503462953234,
          -3.8217099972983766,
          -3.697665162647674,
          -2.8489247133446307,
          -2.789563086219014,
          -1.3240510899823537,
          -2.4928140951397983,
          -3.094204843455665,
          -1.9722967085221035,
          -2.924839027205617,
          -3.341676281589567,
          -3.1382816409536467,
          -2.7089739654522504,
          -2.402621228759297,
          -7,
          -3.3961993470957363,
          -3.013490283397704,
          -3.696683952154445,
          -2.887950539931525,
          -4.293274139710753,
          -2.8378327212541783,
          -2.5951811732213312,
          -4.012584163914151,
          -3.0394934351259337,
          -2.7370879707315368,
          -2.467238020787567,
          -2.022254851791834,
          -7,
          -2.844228581301628,
          -3.6934851184837787,
          -3.3075816047506295,
          -2.6369985529614173,
          -2.9810769276095446,
          -2.750462108781149,
          -2.6859558157861794,
          -2.7391938443032537,
          -2.7674650825294926,
          -2.6983905586437853,
          -2.497498788166523,
          -2.9860317915675694,
          -2.2874394473246853,
          -4.2934951434720245,
          -7,
          -4.292189592623499,
          -2.9639626289103638,
          -2.3350358776650255,
          -3.3466788990302154,
          -3.225352364358893,
          -2.768478103278721,
          -3.520767292621454,
          -2.865042678343799,
          -3.259572161447169,
          -2.3230710837961492,
          -3.828960490938315,
          -2.948710558798255,
          -2.704225144296277,
          -3.3515815966133684,
          -3.0505802351210796,
          -2.487509434506823,
          -3.0006263590418154,
          -7,
          -2.521602560625828,
          -2.855297239874421,
          -2.4584381274852687,
          -7,
          -2.910624404889201,
          -3.8206392563794713,
          -2.809713590178541,
          -2.6687654392008207,
          -2.8560354841072253,
          -2.7473913623208097,
          -7,
          -7,
          -2.9932357714670954,
          -3.521007252408604,
          -4.004106323279658,
          -3.4036566210857684,
          -3.0716242985397515,
          -3.823517699915736,
          -1.7812460927511966,
          -4.292521884574141,
          -4.293738117783524,
          -3.1990283740437233,
          -3.7177814197394,
          -7,
          -4.36945706512637,
          -3.849953507030731,
          -3.007493765990561,
          -3.649058873947145,
          -2.8090431919338577,
          -2.374739137539774,
          -3.6793067375983877,
          -4.063783560597355,
          -4.117702061209315,
          -3.2859342110607686,
          -3.5970586317707034,
          -2.568544573112223,
          -3.9088387443656756,
          -3.4994579639204475,
          -2.8291767675714845,
          -3.9992175655301034,
          -3.9000173671380716,
          -4.360820535237942,
          -3.807901158075168,
          -3.977609302226758,
          -2.939928231349194,
          -2.5881623506409634,
          -4.307314152387912,
          -3.5555377913202615,
          -3.8392014186667978,
          -7,
          -2.6738533037533747,
          -3.412072669033916,
          -3.279979648597117,
          -3.7015679850559273,
          -4.064233296034753,
          -7,
          -3.8935259698929654,
          -3.8248739727439425,
          -3.4216222048724814,
          -3.49606119726865,
          -2.237638431057246,
          -3.8320403031849812,
          -3.1957613200360613,
          -2.1480678125148733,
          -2.9234059419317693,
          -2.5532760461370994,
          -2.8989186743447117,
          -3.3768607169371743,
          -2.3692685542924994,
          -2.4642696995224282,
          -3.306775830866937,
          -3.1513698502474603,
          -2.3458438852429713,
          -1.9396384060736354,
          -3.3636746441274314,
          -2.188267686917002,
          -2.8426766923530917,
          -3.8191489428071344,
          -3.3634239329171765,
          -2.732271578226466,
          -7,
          -7,
          -2.358757360512426,
          -2.3012246728032446,
          -3.7585836296443214,
          -3.599992177584098,
          -2.5402750553331366,
          -3.69877452783365,
          -2.133112383842677,
          -3.9242965196279602,
          -3.712543290572643,
          -2.801669663167534,
          -3.774431801598087,
          -7,
          -2.7830802719514693,
          -2.477612987408589,
          -2.5086063508026295,
          -3.323889335413958,
          -2.245179416380027,
          -3.0647812072898275,
          -2.250571908204015,
          -2.239942415275768,
          -3.352096723073173,
          -1.923718753317517,
          -2.381885165105794,
          -3.1535099893008374,
          -2.72383261448073,
          -7,
          -2.830984707712957,
          -2.3559012253026625,
          -2.818270638563707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3857541362954808,
          -1.7400274402031979,
          -1.202831589142154,
          -3.9967961469213473,
          -2.8919089670894906,
          -1.8085012734625698,
          -2.9539005690195412,
          -2.2315276052084614,
          -2.819982395429594,
          -2.0017372877052377,
          -3.9942511454528664,
          -1.70009092165823,
          -1.8153973017930358,
          -2.7846821175426015,
          -3.63002085111341,
          -2.8039923566354417,
          -2.601732098158817,
          -2.145388810849714,
          -7,
          -4.002360478449408,
          -2.44872368508559,
          -7,
          -2.8583653018690365,
          -2.313825471320152,
          -1.770374283682813,
          -7,
          -2.1165090213190982,
          -7,
          -3.6949998327470954,
          -2.837833439531023,
          -1.866267135039807,
          -2.5515042136251402,
          -4.2930751401228635,
          -3.018621255078412,
          -1.3828369208823523,
          -4.008451123572122,
          -1.6594079752165853,
          -7,
          -1.9959119441113262,
          -1.196619752663687,
          -7,
          -3.5191057562064487,
          -3.032779879191245,
          -1.923637882191193,
          -2.564920867827693,
          -3.2234094022589295,
          -2.6285140388898274,
          -2.106629778521703,
          -3.304598226343637,
          -1.933466196889718,
          -1.4298799326440386,
          -2.9284583038295486,
          -7,
          -1.5977354300511866,
          -1.627499437712944,
          -4.326683976381879,
          -1.9527335904784822,
          -4.001971557991861,
          -7,
          -3.1095946155190184,
          -2.0541159367668493,
          -1.3575070081612544,
          -1.8246994918709745,
          -2.176395920226999,
          -2.693266203420536,
          -7,
          -4.419063124492548,
          -2.980025026216241,
          -2.5166397339784603,
          -3.6987310766598367,
          -1.763133428232782,
          -1.2009914311738055,
          -3.2011238972073794,
          -3.447778009294621,
          -1.2204912496352502,
          -1.1993577444736312,
          -1.8994239108121036,
          -2.53058589134187,
          -1.481442628502305,
          -2.1743625435790905,
          -2.1929282505859278,
          -2.478630145582756,
          -1.583612163337186,
          -2.693323823347178,
          -2.992658696801893,
          -3.270700005235491,
          -3.1803244198726213,
          -3.6908603082720437,
          -3.2257433592051816,
          -3.4403973832463586,
          -2.1348187022405427,
          -2.616663732437289,
          -1.7357602354022215,
          -2.7359467527259103,
          -2.5162760703791833,
          -2.210364597401199,
          -2.8307719153047,
          -1.6490830949843571,
          -4.002554808148482,
          -1.9277901740740364,
          -7,
          -1.677365372298483,
          -1.582612259836227,
          -3.477627636283374,
          -3.8164622587764545,
          -2.0329181739608138,
          -2.125728950919596,
          -1.4547709833513456,
          -2.556690090692079,
          -4.300921408469541,
          -7,
          -3.5943925503754266,
          -4.296116492169714,
          -4.294906910605192,
          -3.5189304872813425,
          -2.2853339462641507,
          -3.7176913020483573,
          -2.5040175279209977,
          -2.6568601414481825,
          -3.8272399995056454,
          -3.2180319499420165,
          -3.154076015574228,
          -2.8584082821730847,
          -3.700919945420287,
          -2.1590547896953014,
          -2.7610921743529877,
          -2.129824800037075,
          -2.5500360674635556,
          -4.073754998123192,
          -3.4019387667543897,
          -3.992597696102038,
          -2.8618041111314847,
          -3.0719902426915837,
          -7,
          -2.1340345939992327,
          -2.9075188461066293,
          -2.799232824169164,
          -2.7388192156993934,
          -3.4947904572094903,
          -2.235427436444969,
          -3.4504910489855627,
          -3.393684859748368,
          -2.988072261480011,
          -3.692384188868911,
          -2.252704839216663,
          -2.584016950902841,
          -4.007961033336183,
          -7,
          -7,
          -7,
          -7,
          -3.4345689040341987,
          -2.982874001327729,
          -3.600755149639618,
          -2.4172343738083697,
          -3.4616485680634552,
          -3.5020172148271476,
          -3.462277641003384,
          -7,
          -7,
          -3.4604467838807205,
          -2.6186803992389205,
          -2.54176757633544,
          -2.204489962359036,
          -3.508798965403905,
          -7,
          -7,
          -7,
          -2.7780969601801973,
          -3.6975344625969604,
          -7,
          -2.72326617549437,
          -2.7259511122393145,
          -3.535167485114944,
          -3.478999131673357,
          -7,
          -2.29104577475738,
          -2.5591881890047756,
          -3.1879435290625273,
          -3.387372601202775,
          -3.233884108765886,
          -2.9711211579147765,
          -7,
          -3.1899112096928057,
          -2.850748314036963,
          -7,
          -7,
          -7,
          -2.8108083781659583,
          -7,
          -3.3998806850379464,
          -2.9818186071706636,
          -3.497758718287268,
          -1.6984587688656787,
          -3.248463717551032,
          -2.438937701095528,
          -7,
          -7,
          -7,
          -3.253580289562183,
          -7,
          -2.6831151336945074,
          -2.7469799748172323,
          -1.6075436366575189,
          -2.813272978284428,
          -7,
          -2.7398359526414344,
          -2.4189115616948453,
          -3.2234959409623944,
          -3.2337573629655108,
          -7,
          -3.149065080207621,
          -2.0422087727429976,
          -3.7749546890801384,
          -3.6388884247050757,
          -7,
          -7,
          -2.333538868819963,
          -7,
          -7,
          -2.9122884979739743,
          -7,
          -3.3932241163612975,
          -2.836995242610448,
          -7,
          -3.0532705666813786,
          -7,
          -7,
          -2.7586002350599466,
          -1.884125673019205,
          -3.1794081515138357,
          -7,
          -3.099507993727965,
          -7,
          -2.426185825244511,
          -2.981441058262331,
          -2.377541937168901,
          -7,
          -2.773791504712906,
          -3.1545000516787205,
          -2.4023301761316658,
          -7,
          -7,
          -3.3900514964589874,
          -3.606918525948291,
          -2.969602264848539,
          -3.00610933218244,
          -7,
          -3.5151052041667894,
          -3.521007252408604,
          -7,
          -7,
          -3.2884728005997825,
          -7,
          -1.916788812406723,
          -2.187873089603788,
          -1.9799015480167361,
          -2.025542823949734,
          -3.5033820634737327,
          -3.4718781993072905,
          -7,
          -7,
          -2.975546686034573,
          -7,
          -7,
          -3.1680061445387286,
          -2.9147208373605693,
          -2.912089143147475,
          -7,
          -3.3311741373868458,
          -3.2938558745960953,
          -3.2008504980910777,
          -7,
          -3.2069607291557105,
          -3.7025985345511043,
          -2.853211334503317,
          -2.7988232242204005,
          -2.9534144930170947,
          -3.449478399187365,
          -7,
          -2.645422269349092,
          -7,
          -7,
          -3.4344092075875,
          -3.203491837370007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.811273307711949,
          -3.1824717176053743,
          -2.3333677163830293,
          -3.248218561190075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.346548558548474,
          -7,
          -7,
          -2.8169038393756605,
          -2.966153470269118,
          -7,
          -7,
          -3.3188977146274867,
          -3.5743785644130823,
          -7,
          -2.1728363601227105,
          -7,
          -3.677150521273433,
          -2.819919785398216,
          -3.3121773564397787,
          -3.388855763178122,
          -3.119695681195928,
          -7,
          -3.0694640562347537,
          -3.483587296968894,
          -7,
          -7,
          -2.674992288098586,
          -7,
          -7,
          -7,
          -3.1810673688249955,
          -7,
          -4.3290315750108395,
          -7,
          -3.176322821034989,
          -2.9485905995386754,
          -7,
          -3.5449976797003977,
          -3.1831986420297387,
          -3.575187844927661,
          -3.3629534589442858,
          -7,
          -3.0110415256389502,
          -3.5575072019056577,
          -3.1113745462875477,
          -2.9689496809813427,
          -7,
          -3.3604040547299387,
          -7,
          -2.9689496809813427,
          -3.149013723915726,
          -3.7823651122256696,
          -3.157607853361668,
          -2.71720804477317,
          -7,
          -3.202597285692431,
          -3.1997551772534747,
          -2.986995539724382,
          -7,
          -2.7957410208692437,
          -2.810848340115792,
          -2.8727388274726686,
          -7,
          -2.1586451438995016,
          -7,
          -3.495127881242933,
          -7,
          -7,
          -7,
          -7,
          -2.757547853469244,
          -3.4886916983169405,
          -7,
          -3.1998922435263193,
          -2.975431808509263,
          -2.418589476122558,
          -2.896553773371796,
          -4.353101326657493,
          -7,
          -3.180412632838324,
          -3.1976939750839235,
          -7,
          -7,
          -3.450864692379766,
          -2.737788791709675,
          -2.1759798872171676,
          -7,
          -7,
          -7,
          -2.9734357546986665,
          -7,
          -7,
          -7,
          -2.8229304774003796,
          -3.65241074209177,
          -3.4265112613645754,
          -3.4331295175804857,
          -7,
          -7,
          -7,
          -3.507855871695831,
          -7,
          -3.517591730711908,
          -3.8492350913147226,
          -3.615107987443194,
          -2.19786346826144,
          -2.7386814836620155,
          -7,
          -3.4423229557455746,
          -7,
          -2.896735218447365,
          -2.3514708097996033,
          -2.2603966616104936,
          -7,
          -3.5533408311575485,
          -3.5332635167787148,
          -3.4679039465228003,
          -2.9965116721541785,
          -2.664858851706402,
          -3.5882156652289985,
          -2.49735205752346,
          -2.265466419871781,
          -3.0581886920930996,
          -3.1050557829687464,
          -7,
          -7,
          -3.26528962586083,
          -3.7091851295502454,
          -2.6123422761205295,
          -7,
          -2.8695250628572273,
          -3.5685537120494426,
          -7,
          -3.5961570809161723,
          -7,
          -2.2807366842245287,
          -3.0757901954968463,
          -2.173429094519748,
          -3.696880371682762,
          -3.2843179154306097,
          -3.5706407429409537,
          -2.887660571842961,
          -7,
          -3.2919538132661614,
          -7,
          -3.525821952156663,
          -2.74350976472843,
          -3.139249217571607,
          -3.273734128506228,
          -2.6201360549737576,
          -3.2226124360573976,
          -7,
          -3.2701351427224816,
          -1.5708246487712936,
          -4.089425292927653,
          -1.862999913128008,
          -3.429752280002408,
          -7,
          -7,
          -3.4222614508136027,
          -1.902741855124081,
          -7,
          -3.5075860397630105,
          -2.4007651427429604,
          -3.1680553034591394,
          -2.2351242640194617,
          -2.881527305640932,
          -3.1607085722924295,
          -2.911956189072687,
          -2.943247125137862,
          -2.423109281867148,
          -7,
          -3.6941428753094128,
          -2.5719547470387742,
          -3.9127134826695467,
          -7,
          -3.080781049287244,
          -3.8816739813278636,
          -2.6571089938154944,
          -7,
          -3.2342641243787895,
          -7,
          -3.2773035345575963,
          -3.141763230275788,
          -2.832915147969814,
          -3.160868526065023,
          -7,
          -7,
          -2.3096301674258988,
          -7,
          -3.207365037469072,
          -3.52022143588196,
          -2.4222614508136027,
          -7,
          -2.355768977002329,
          -3.422589839851482,
          -3.431524584187451,
          -3.8410047143535224,
          -7,
          -7,
          -7,
          -4.731096984750186,
          -3.6340908348262704,
          -7,
          -3.4684211837380565,
          -3.121442988413379,
          -3.76767522402796,
          -7,
          -7,
          -4.037983949447127,
          -4.530259478972904,
          -3.7607777873960946,
          -7,
          -4.216561735047927,
          -4.235013047748127,
          -7,
          -7,
          -7,
          -4.4376448822061905,
          -7,
          -3.559379888183303,
          -3.8739306272740444,
          -7,
          -3.979966989370279,
          -4.244771761495295,
          -7,
          -3.27132050661406,
          -4.220970587520289,
          -3.696985092452125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.281033367247727,
          -7,
          -2.754680207530774,
          -3.2322335211147335,
          -3.1458354531056396,
          -3.642786833027063,
          -7,
          -3.528723923260994,
          -3.330118485571775,
          -2.747217536139993,
          -3.2674937710653538,
          -7,
          -3.7281101841003403,
          -3.9978958207981363,
          -2.560855262616385,
          -3.194635733117443,
          -7,
          -2.8904063096687422,
          -2.90515782541163,
          -7,
          -2.884589415168878,
          -7,
          -7,
          -7,
          -3.6032483309255765,
          -3.338413000249206,
          -4.708318051103554,
          -7,
          -3.550717423469283,
          -7,
          -4.187934137794767,
          -7,
          -4.631005532907514,
          -3.4520319036568123,
          -3.971623701765836,
          -3.4372747974101237,
          -7,
          -4.466719371681599,
          -3.8952774807183097,
          -7,
          -2.837050380417555,
          -3.634124451552187,
          -3.4628897771447584,
          -3.476159478508521,
          -7,
          -3.263838883574003,
          -4.364485330317109,
          -3.767007363949804,
          -4.50676394702445,
          -7,
          -3.3106933123433606,
          -3.4848893472645464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.94346703500111,
          -2.9539528832319233,
          -2.1159381384569778,
          -3.460747541844197,
          -3.616685520895512,
          -2.8148772297450946,
          -3.668665415454492,
          -3.3261309567107946,
          -3.162862993321926,
          -2.7775383515326832,
          -7,
          -2.979019176102845,
          -2.498655095245119,
          -7,
          -7,
          -4.193402903062418,
          -3.3344537511509307,
          -3.1360860973840974,
          -7,
          -7,
          -3.9148718175400505,
          -7,
          -2.738516308715399,
          -2.650199556821398,
          -2.630662523107402,
          -7,
          -3.0965276656064398,
          -7,
          -7,
          -4.62029224791984,
          -3.639675361483828,
          -3.8490506905695123,
          -7,
          -3.3972445810103866,
          -1.9367507024376451,
          -7,
          -2.4528083053649254,
          -7,
          -3.2843179154306097,
          -2.4121877253877053,
          -7,
          -7,
          -7,
          -3.581380688709987,
          -3.0011772023979564,
          -7,
          -7,
          -2.5474054596674893,
          -3.20615098159626,
          -2.3542151847499793,
          -2.7126131063474843,
          -7,
          -7,
          -2.1708790495172456,
          -2.6249164497653634,
          -7,
          -3.209649035368229,
          -7,
          -7,
          -2.7017406324372124,
          -2.7346998423702855,
          -2.5974408315902817,
          -3.0090257420869104,
          -7,
          -3.10698371567979,
          -7,
          -7,
          -7,
          -3.9114772171061025,
          -7,
          -2.639486489268586,
          -2.532703432370127,
          -7,
          -7,
          -2.525977214441068,
          -2.2677777526259044,
          -2.598174728741539,
          -2.7520484478194387,
          -2.3650197428165347,
          -3.409510452269316,
          -3.0389606070796815,
          -3.5609820555862357,
          -2.750810139591715,
          -7,
          -3.570776368794748,
          -7,
          -7,
          -7,
          -4.400088784732035,
          -7,
          -3.050895086469539,
          -3.704407927386841,
          -2.9226289132446137,
          -7,
          -3.4449031627954616,
          -3.293943784029869,
          -3.054166019538618,
          -2.657142807403776,
          -7,
          -2.6470568007550126,
          -7,
          -2.563942294779078,
          -2.113750575290176,
          -3.8497878242376857,
          -3.4310419453358856,
          -3.1264561134318045,
          -3.544564097496043,
          -2.8630816077402663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2333007715634716,
          -7,
          -3.3250022521650378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.587935348636356,
          -3.3321786712443293,
          -3.9036867317365025,
          -7,
          -7,
          -7,
          -3.4504800546060603,
          -7,
          -7,
          -3.486430478854434,
          -7,
          -3.5120169694961265,
          -7,
          -7,
          -3.2016701796465816,
          -7,
          -7,
          -3.651278013998144,
          -7,
          -3.3509583358370834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.571512015723816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.140300588028295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8561244442423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.229530823874927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070831806956914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.35281516194099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2626883443016963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.854888759368555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.234547652694329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.706114983237485,
          -7,
          -7,
          -7,
          -4.953735536752166,
          -7,
          -5.404744796836268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.463489848289935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9177155165594932,
          -7,
          -3.404320467221731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9688563746146923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.3466150370819205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6267200806648345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.524577851572574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.574031267727719,
          -3.1687920203141817,
          -2.5903215880567183,
          -7,
          -7,
          -4.601913392200325,
          -7,
          -7,
          -7,
          -7,
          -3.9042014431560217,
          -2.417471693203293,
          -7,
          -7,
          -7,
          -7,
          -4.333689041703905,
          -7,
          -7,
          -7,
          -4.156585259499548,
          -7,
          -7,
          -7,
          -3.262213705476417,
          -7,
          -2.7573960287930244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4470028984661623,
          -7,
          -7,
          -7,
          -4.663449633913287,
          -7,
          -7,
          -3.278753600952829,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.730879133522473,
          -7,
          -2.5077434620971957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.084576277934331,
          -7,
          -4.446801142847091,
          -7,
          -7,
          -2.8783302654068548,
          -7,
          -7,
          -3.6061663146076204,
          -7,
          -7,
          -4.3464181789371965,
          -7,
          -7,
          -7,
          -7,
          -3.384174138807033,
          -7,
          -7,
          -7,
          -7,
          -2.8756399370041685,
          -3.4565178578052627,
          -7,
          -3.1970047280230456,
          -7,
          -4.530770695354899,
          -7,
          -4.009110806132213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.183032459428792,
          -7,
          -3.0281644194244697,
          -7,
          -2.522226814487059,
          -3.2591710288966214,
          -7,
          -7,
          -7,
          -7,
          -4.07928980609866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752524757465067,
          -7,
          -7,
          -7,
          -4.691797355026257,
          -2.7238659644435037,
          -3.403977963669355,
          -7,
          -7,
          -2.8698182079793284,
          -3.594988881285679,
          -3.4344092075875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8395785959610693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.326949994165999,
          -7,
          -7,
          -7,
          -7,
          -5.150935952063992,
          -7,
          -2.2671717284030137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6084190513172856,
          -7,
          -7,
          -7,
          -7,
          -3.6452257115354163,
          -7,
          -7,
          -3.5553363279952666,
          -3.0958664534785427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2352758766870524,
          -7,
          -7,
          -3.7640266076920375,
          -7,
          -7,
          -7,
          -3.1383026981662816,
          -7,
          -2.791690649020118,
          -7,
          -7,
          -7,
          -3.0330214446829107,
          -7,
          -3.8370831508231857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.235631958255571,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1571544399062814,
          -7,
          -7,
          -7,
          -7,
          -2.6263403673750423,
          -7,
          -7,
          -3.17260293120986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7283537820212285,
          -3.762678563727436,
          -7,
          -7,
          -7,
          -7,
          -4.309757882316366,
          -7,
          -4.053590583261995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.679109782081773,
          -7,
          -7,
          -3.392169149489736,
          -7,
          -3.1179338350396413,
          -7,
          -7,
          -7,
          -3.114610984232173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9148189804474733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5378190950732744,
          -4.2799405728395525,
          -7,
          -7,
          -3.556423121371285,
          -7,
          -3.9428014663179405,
          -7,
          -7,
          -7,
          -3.488409688903198,
          -3.3085644135612386,
          -7,
          -2.7067787231187155,
          -7,
          -7,
          -7,
          -7,
          -3.287129620719111,
          -7,
          -7,
          -3.0610753236297916,
          -7,
          -2.414734659049227,
          -7,
          -7,
          -7,
          -7,
          -3.5900612308037427,
          -7,
          -4.855434347907406,
          -7,
          -5.8751539029999655,
          -7,
          -3.7730546933642626,
          -5.017550843499431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.698448538015329,
          -7,
          -7,
          -7,
          -3.3469394626989906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9186923711842754,
          -7,
          -2.2741578492636796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.878745778536927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.0650453869280705,
          -7,
          -7,
          -7,
          -7,
          -4.331649954552743,
          -3.9800488450649567,
          -7,
          -7,
          -4.359304142349933,
          -7,
          -7,
          -4.43274487412905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.990378818698668,
          -4.642444734165811,
          -7,
          -7,
          -7,
          -7,
          -4.954170120993136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2066100238992234,
          -7,
          -4.896708054009982,
          -7,
          -7,
          -3.619788758288394,
          -4.954623556271786,
          -7,
          -5.347003928080234,
          -7,
          -7,
          -4.6049924140397565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464832197849968,
          -3.29928933408768,
          -3.4765418090274287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.093554755017995,
          -7,
          -7,
          -7,
          -3.445085022719354,
          -7,
          -7,
          -7,
          -7,
          -3.4654076392388364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0136796972911926,
          -7,
          -7,
          -3.671913012441587,
          -7,
          -7,
          -3.0265332645232967,
          -7,
          -7,
          -4.137037454789513,
          -7,
          -7,
          -7,
          -7,
          -4.024493486415029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4812480635880934,
          -3.586587304671755,
          -7,
          -3.9983247392945254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.525744300194379,
          -7,
          -7,
          -7,
          -7,
          -3.398287305357401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.079976723632598,
          -3.889339059564688,
          -4.371769558513179,
          -2.7762914362240805,
          -3.966939163021113,
          -7,
          -4.065318237803737,
          -3.1678397191996104,
          -2.658841573383887,
          -4.077803798076088,
          -4.071624298539752,
          -7,
          -7,
          -3.7615895881903603,
          -2.8203681357006727,
          -3.1590799785989363,
          -7,
          -2.2756254158898863,
          -2.8072456440124998,
          -4.376394442037267,
          -4.067665881974249,
          -7,
          -4.091684540012315,
          -7,
          -4.370068760650052,
          -2.5266486493232416,
          -7,
          -4.36496351982702,
          -7,
          -4.37032800777951,
          -4.391393875135699,
          -7,
          -3.4549633647502485,
          -7,
          -3.91902576458736,
          -2.953555261008572,
          -2.77751338480969,
          -7,
          -7,
          -3.791830947674836,
          -4.378525081544915,
          -3.0882810978965463,
          -7,
          -4.376193586884285,
          -4.411804830815424,
          -7,
          -2.880688571764092,
          -2.8904840522967077,
          -7,
          -3.1433555124697157,
          -3.5055418728569445,
          -3.893299303828851,
          -7,
          -3.927336138327086,
          -7,
          -7,
          -3.774425717806814,
          -7,
          -4.072084385539477,
          -3.6419200744131177,
          -2.934455653068426,
          -4.365824806859364,
          -7,
          -3.62212763918045,
          -7,
          -3.493086104087192,
          -2.3255221789694747,
          -7,
          -4.102210669420494,
          -3.0107294403814318,
          -7,
          -3.9188163903603797,
          -7,
          -4.367896123114806,
          -3.8770544372152305,
          -3.312794214562137,
          -7,
          -7,
          -7,
          -4.373371817181301,
          -7,
          -2.533658357348511,
          -7,
          -7,
          -2.6198348288245152,
          -3.3366931627613803,
          -3.6163704722912695,
          -7,
          -7,
          -7,
          -3.5421849794668856,
          -3.553171907103293,
          -3.9453372593122817,
          -4.366647051390854,
          -3.6107074692804284,
          -4.3743816980508825,
          -7,
          -7,
          -3.359062655840945,
          -7,
          -3.9209229721223515,
          -7,
          -3.429299990833608,
          -3.4367891660441443,
          -4.371954027140132,
          -7,
          -4.378906400023262,
          -4.080373916701309,
          -3.348416135014412,
          -4.375773316604984,
          -7,
          -7,
          -3.81489655406238,
          -2.981867125369299,
          -4.075017456377485,
          -2.554896658575775,
          -2.667716581083437,
          -7,
          -4.169424598808618,
          -4.071550639366932,
          -3.782472624166286,
          -7,
          -3.705880810155298,
          -3.7267760949597126,
          -7,
          -4.373187949912719,
          -3.0719740091032928,
          -3.203491837370007,
          -7,
          -7,
          -7,
          -3.66228551572213,
          -3.214957324810588,
          -2.5825746652583113,
          -3.763034704154229,
          -7,
          -2.9305702764641635,
          -3.668541215987884,
          -3.0097341005572806,
          -1.5701063809221028,
          -7,
          -3.5254191616179096,
          -7,
          -7,
          -3.778060762940478,
          -3.4898179083014504,
          -3.5639110139135437,
          -7,
          -7,
          -7,
          -3.612889769287485,
          -7,
          -7,
          -3.9125231763598167,
          -7,
          -7,
          -7,
          -3.5403115948640758,
          -4.399950474386311,
          -3.7957236431815518,
          -7,
          -3.634160466585495,
          -4.385909994786097,
          -4.37101241688384,
          -2.4423825714904606,
          -7,
          -7,
          -7,
          -4.374473389063976,
          -7,
          -7,
          -7,
          -2.45484486000851,
          -7,
          -3.4736641969521136,
          -7,
          -4.445183714796111,
          -2.5023813593857014,
          -3.1197139961978033,
          -2.5839168668252004,
          -2.9165197457596417,
          -3.3820711007640845,
          -2.742777484325303,
          -3.9073038488339695,
          -3.434107398431057,
          -4.379686151906955,
          -7,
          -4.429590802223301,
          -4.069353544943673,
          -3.204311540910256,
          -7,
          -4.021891873919109,
          -4.089746194142301,
          -3.186400965372376,
          -7,
          -3.3912628479986675,
          -7,
          -3.975232615453934,
          -7,
          -4.384693833518213,
          -7,
          -7,
          -2.468782495260093,
          -3.014257950635828,
          -7,
          -4.097465554474156,
          -3.8781865623839025,
          -4.473428573603286,
          -7,
          -3.8854366118348267,
          -3.8911842291196206,
          -4.063014183518913,
          -7,
          -4.369994661608428,
          -7,
          -4.07059193151204,
          -3.2324596131257763,
          -3.94499233997717,
          -1.1025789119704859,
          -2.7183625942989016,
          -7,
          -4.369085920821508,
          -7,
          -2.833875335905508,
          -7,
          -7,
          -3.5482489890522224,
          -4.3857849588433355,
          -7,
          -7,
          -7,
          -7,
          -4.367299999681404,
          -7,
          -7,
          -4.386712938858596,
          -2.7332209914272227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.37390459247497,
          -3.1823829463216065,
          -7,
          -2.9940894992168676,
          -2.945274567077948,
          -2.867646018849769,
          -7,
          -7,
          -3.2741176721526,
          -3.4887445547013427,
          -1.9114709525356064,
          -4.374289987675311,
          -3.2254032746884422,
          -4.07505399469838,
          -4.367318640929692,
          -7,
          -4.2098767758979125,
          -3.1260540604734306,
          -2.660975405102324,
          -3.1425771609205344,
          -4.470145775899696,
          -3.906370962112948,
          -4.373408581295595,
          -4.365057220766325,
          -4.381060903382891,
          -4.105135337612572,
          -3.703978825008386,
          -7,
          -7,
          -7,
          -7,
          -4.0846656297465795,
          -7,
          -4.09329908473905,
          -2.923454069651785,
          -3.902746034361216,
          -4.102690912962709,
          -4.384030665240514,
          -2.8416736274591754,
          -3.482930723860386,
          -7,
          -2.1663734211362113,
          -3.6654308849136665,
          -7,
          -7,
          -4.389148357697378,
          -3.1774677878844844,
          -3.8095597146352675,
          -3.7590480609558354,
          -7,
          -4.41418756673709,
          -3.191712937446059,
          -3.1396892221500754,
          -3.301015518939971,
          -7,
          -7,
          -4.36157675079015,
          -3.247159736248122,
          -4.1262613188638815,
          -3.113423372534924,
          -7,
          -7,
          -4.367505009418113,
          -7,
          -4.068371418032643,
          -4.1399734879844585,
          -7,
          -3.77581062145278,
          -4.42756724771945,
          -3.8963240875783165,
          -3.4071749324348404,
          -2.7113807411078614,
          -2.710710524510052,
          -7,
          -4.15839265038712,
          -2.4914167645416843,
          -3.309356366125307,
          -7,
          -4.075382701327236,
          -7,
          -3.7166376183281282,
          -3.378170700063069,
          -7,
          -4.091807597001675,
          -7,
          -7,
          -4.399621810671737,
          -7,
          -4.37267270704506,
          -7,
          -3.954483717155552,
          -7,
          -3.2442372058639073,
          -7,
          -7,
          -2.8224563318171123,
          -2.865957174295529,
          -3.3597195707231196,
          -3.029546100423748,
          -3.694148730583769,
          -2.749378056777176,
          -3.2747061463002716,
          -3.2702905531667605,
          -2.5796019381303084,
          -2.903076415077322,
          -3.219633636956903,
          -3.2686390097338123,
          -3.4430426687837388,
          -3.495305902889453,
          -2.542861390695394,
          -2.401360691767257,
          -3.5211380837040362,
          -2.092587775775171,
          -4.221974676757555,
          -2.9012261674137614,
          -4.420731171441572,
          -2.909436977206239,
          -3.502710674010765,
          -2.996350348616368,
          -3.0031649931515867,
          -3.8650052152360628,
          -3.510768355278083,
          -3.624568550883257,
          -4.394679275545099,
          -2.635680509209594,
          -3.288954860175721,
          -3.3832890421810387,
          -3.5983825736810133,
          -3.678598037912645,
          -3.912416922612287,
          -3.585936751082949,
          -3.7798705441457825,
          -2.751390315674036,
          -3.146518495349268,
          -2.541675231234385,
          -3.7739874607135038,
          -2.4673278150101323,
          -3.193171516140053,
          -2.9119633768201263,
          -2.841006320237581,
          -2.22407987684108,
          -4.094174043697868,
          -2.8135451686201822,
          -4.033705151467852,
          -4.109004507541385,
          -3.237994161276691,
          -2.923739123457494,
          -3.062224316869885,
          -2.968015713993642,
          -3.744240812483908,
          -3.9885440937056678,
          -7,
          -2.733757322895717,
          -3.8194217142704345,
          -3.957910437209481,
          -7,
          -3.194608034580432,
          -2.9941168602919603,
          -2.9624332428694204,
          -7,
          -4.4388744689064445,
          -7,
          -3.2739306322608575,
          -3.6780629049743454,
          -3.4208261382255905,
          -3.5837150342679753,
          -4.114988853907845,
          -7,
          -3.6848553315594024,
          -2.8752454704640726,
          -3.5050664521186863,
          -4.123884293460008,
          -3.511259310502346,
          -4.462038432969983,
          -3.0242675420961667,
          -3.612653467322403,
          -7,
          -3.318339014987736,
          -3.1491998615867844,
          -4.418450450829583,
          -3.3721345176926727,
          -4.369531255941311,
          -3.9460590603851236,
          -3.8459864004658586,
          -3.304090270521751,
          -4.365787395093661,
          -7,
          -7,
          -4.364701049594699,
          -3.966188680956137,
          -2.0944999610199337,
          -3.7934411329776636,
          -2.646853300505588,
          -4.065355601289965,
          -3.4346043841601857,
          -3.287100374971208,
          -2.5207192847497857,
          -4.08988745683333,
          -7,
          -3.6715430852625737,
          -7,
          -3.104140450597083,
          -3.2800252325377413,
          -3.7699862407512437,
          -7,
          -3.710709565724337,
          -7,
          -3.656401686648149,
          -3.899546931090867,
          -3.6720608951303078,
          -3.3095541288225525,
          -3.8945744943980465,
          -7,
          -4.38737202701981,
          -3.510628778069135,
          -7,
          -3.0246180624451555,
          -7,
          -2.084633313128044,
          -2.5184717118179676,
          -2.92298926049107,
          -2.4526468430785457,
          -7,
          -7,
          -3.1931245983544616,
          -4.376394442037267,
          -4.105493153279868,
          -3.884323253366666,
          -3.781863037624198,
          -1.896603369554253,
          -7,
          -4.36608659902,
          -7,
          -4.082300556381854,
          -3.4831274827577,
          -4.370864527900364,
          -3.239406743231971,
          -4.077440584471324,
          -7,
          -3.6894154213820136,
          -2.799907883932568,
          -2.8825245379548803,
          -7,
          -3.374365024877566,
          -3.810568529216413,
          -4.0900816180388215,
          -2.3136036121778107,
          -3.8936508169859634,
          -7,
          -2.8698467969123844,
          -2.5271529938173596,
          -2.43727961654529,
          -3.5607944737908017,
          -3.5781642220843577,
          -3.2372743748135773,
          -7,
          -3.7728056166847854,
          -7,
          -2.949008611624438,
          -4.369030221809153,
          -3.216799061647665,
          -3.230463948609012,
          -3.5362697788972914,
          -7,
          -3.2036371649498285,
          -2.622534885779015,
          -4.126001456787675,
          -4.3961121306114785,
          -3.4270091132974243,
          -3.7073998311332486,
          -4.1465621131575565,
          -4.380211241711606,
          -2.888701812129037,
          -3.287689783936075,
          -7,
          -7,
          -7,
          -4.362312795326511,
          -3.4271136315361073,
          -2.0305667155192975,
          -3.4209087921309544,
          -3.006483156965472,
          -2.6561755102498417,
          -7,
          -3.66593259903762,
          -3.1701563643860604,
          -3.655746533599422,
          -3.6261007377332617,
          -4.371344983082098,
          -3.9096629851540183,
          -3.760196229455134,
          -3.5859117103194342,
          -3.9577030415488315,
          -4.438336623263845,
          -4.362840469311725,
          -3.7848489971615793,
          -4.076695045579167,
          -2.692020268786095,
          -4.374436714981712,
          -7,
          -7,
          -7,
          -7,
          -4.3638938977741,
          -3.462585153463974,
          -2.836791139563708,
          -3.384962397302607,
          -4.390758528738717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.398547595734928,
          -3.5390940296563826,
          -3.4349372103306783,
          -2.7793815471891445,
          -2.7237775027823625,
          -3.895606686165933,
          -7,
          -3.7159699350819997,
          -7,
          -7,
          -3.141489972824933,
          -4.373794416714731,
          -4.373132774549157,
          -3.714949737697635,
          -2.7021029686899287,
          -3.9231403560252005,
          -7,
          -4.0646825662285115,
          -3.616842959534867,
          -7,
          -2.715263899914411,
          -4.384209999793958,
          -4.375974366176192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6322547766847135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.66228551572213,
          -7,
          -7,
          -1.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.651278013998144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.606703741333674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.904336792202495,
          -7,
          -7,
          -7,
          -7,
          -4.6538162458227275,
          -7,
          -7,
          -7,
          -7,
          -3.302114376956201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.63978521298682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7553411838115474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9096629851540183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2777237887624535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.878188478737013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.920624146429142,
          -7,
          -7,
          -7,
          -5.086260145091594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.0646825662285115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3944516808262164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2413970416496465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.133953844517957,
          -7,
          -7,
          -7,
          -7,
          -5.346601351156874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3896975482063856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2028968085295295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.633165353683903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7518485494936495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292189592623499,
          -7,
          -7,
          -7,
          -3.214957324810588,
          -7,
          -7,
          -2.0128372247051725,
          -7,
          -7,
          -3.7139103541289553,
          -7,
          -7,
          -3.652149605401653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752851725772023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.205420915676343,
          -7,
          -7,
          -7,
          -7,
          -4.148641209067906,
          -7,
          -3.343802333161655,
          -7,
          -7,
          -2.456366033129043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.940869952384663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.529635646019073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.961421094066448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2901793520677085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8782402170748815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.443528960275062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9863387164044726,
          -7,
          -7,
          -7,
          -3.1863912156954934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -5.09324653110384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.463220879774792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6569920751226617,
          -7,
          -7,
          -7,
          -7,
          -4.443501588240124,
          -7,
          -7,
          -3.09377178149873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3981136917305026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3827372657613304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.388562971398075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.203948945528531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3333868116595315,
          -7,
          -7,
          -3.3392526340327,
          -5.571599371148725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6045500325712614,
          -7,
          -7,
          -4.823516613200129,
          -2.429752280002408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2080380493531804,
          -7,
          -7,
          -4.627647442132109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.60422605308447,
          -7,
          -7,
          -4.752409569155264,
          -7,
          -7,
          -7,
          -4.992769948427294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.293804359919337,
          -7,
          -7,
          -7,
          -2.5825746652583113,
          -1.9731278535996988,
          -2.0128372247051725,
          -7,
          -7,
          -7,
          -4.018076063645795,
          -7,
          -7,
          -3.0565237240791006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.538460621556729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.606829556638213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.908753019184534,
          -7,
          -7,
          -7,
          -7,
          -5.051925842814157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4195427247002796,
          -3.291812687467119,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2193552692900123,
          -5.411712278253374,
          -7,
          -7,
          -7,
          -3.022840610876528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.242223292961823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.761551988564182,
          -7,
          -7,
          -7,
          -7,
          -4.309438524641924,
          -7,
          -3.831498642552911,
          -7,
          -4.7087012737596785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3818367999983434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.829988453018915,
          -7,
          -7,
          -3.8023859928820944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.22616603843169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6928469192772297,
          -7,
          -7,
          -7,
          -4.382197210377454,
          -5.3980216483607455,
          -7,
          -7,
          -5.017488274960921,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.592043449629362,
          -4.769775984917649,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.878659644885606,
          -3.9632209865229884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.921051473431425,
          -7,
          -7,
          -7,
          -4.609270612890928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7721162485787625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.667518325633491,
          -5.064989300442656,
          -7,
          -7,
          -4.021478732257528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6778623449547885,
          -7,
          -7,
          -7,
          -7,
          -3.7726883546821415,
          -7,
          -7,
          -7,
          -7,
          -5.186505711841796,
          -5.229054387811185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.065878352857392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.896625410484115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.3469746268204545,
          -2.722633922533812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.987427903514197,
          -7,
          -4.175308824585785,
          -7,
          -7,
          -4.336519770410416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9990870226258886,
          -7,
          -2.0360963453482763,
          -4.29208985543996,
          -7,
          -4.785785249373541,
          -7,
          -7,
          -3.9216344610537055,
          -7,
          -7,
          -7,
          -7,
          -3.6412261547554836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.835468612492718,
          -7,
          -7,
          -7,
          -3.262213705476417,
          -4.443644294899848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6274887527352035,
          -7,
          -7,
          -4.29907126002741,
          -7,
          -7,
          -7,
          -4.020112569565467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.395675785269936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1903316981702914,
          -7,
          -7,
          -2.25699248549758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5089335260500327,
          -3.0633333589517497,
          -7,
          -7,
          -7,
          -7,
          -3.7336185110286038,
          -7,
          -7,
          -2.9525018478630236,
          -4.316427011978534,
          -7,
          -7,
          -7,
          -7,
          -3.091315159697223,
          -7,
          -4.865038795953643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7255032688593155,
          -7,
          -4.538834408178194,
          -7,
          -7,
          -2.824125833916549,
          -7,
          -3.6265456590271294,
          -7,
          -2.7024305364455254,
          -7,
          -7,
          -3.205745540942662,
          -3.8283859597808854,
          -7,
          -3.2939699210682645,
          -7,
          -7,
          -7,
          -3.4171394097273255,
          -2.9731278535996988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.375846436309156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.010922633882727,
          -2.1083394747888384,
          -2.3688032260423766,
          -7,
          -7,
          -3.8677620246502005,
          -3.2814878879400813,
          -7,
          -7,
          -7,
          -7,
          -3.4721711466923635,
          -7,
          -7,
          -7,
          -4.02583304907565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.912487761332324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6654871807828107,
          -7,
          -7,
          -7,
          -3.615002614524588,
          -3.5971464878336956,
          -2.5893910231369333,
          -2.7450747915820575,
          -2.362105319293773,
          -7,
          -3.905057942240592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9081402038689497,
          -2.886490725172482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5901728315963144,
          -7,
          -7,
          -3.5180750368775167,
          -7,
          -7,
          -7,
          -3.763034704154229,
          -7,
          -7,
          -7,
          -7,
          -1.2041199826559248,
          -7,
          -7,
          -7,
          -3.6704314093606056,
          -7,
          -7,
          -7,
          -7,
          -2.486430478854434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.131345404398228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.437803393485486,
          -7,
          -7,
          -7,
          -7,
          -3.5078269691492467,
          -7,
          -3.3623882165886987,
          -3.2665844470668635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.650793039651931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7679346702804657,
          -7,
          -3.1434832106700616,
          -7,
          -3.1702617153949575,
          -2.284054558436069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.052386095389375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6023313405913373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3677285460869766,
          -7,
          -2.6190933306267428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.737560364635477,
          -7,
          -7,
          -7,
          -7,
          -2.0929210574619534,
          -2.6074550232146687,
          -7,
          -7,
          -7,
          -7,
          -2.92450080837319,
          -3.8053649074664455,
          -7,
          -2.5575072019056577,
          -7,
          -3.612847407359837,
          -2.5770319856260313,
          -2.7983564643068126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6838572054003462,
          -7,
          -3.350780865347739,
          -3.7025166974381505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.131779009369187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.583198773968623,
          -7,
          -2.605951157564873,
          -7,
          -7,
          -3.1082266563749283,
          -2.4578818967339924,
          -7,
          -3.8838317133294527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2380461031287955,
          -3.169331486173275,
          -3.181128699747295,
          -7,
          -7,
          -7,
          -3.330413773349191,
          -4.573012860406959,
          -7,
          -7,
          -7,
          -7,
          -3.742568034366142,
          -3.2987439434824073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.856070002803182,
          -7,
          -4.4772468924150495,
          -7,
          -3.780677274433368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2880255353883627,
          -7,
          -7,
          -3.366982975977851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.546474114116154,
          -7,
          -7,
          -3.8151126581898125,
          -4.469615861200391,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.588663795780204,
          -3.1975676949836185,
          -3.1902382914634244,
          -7,
          -7,
          -4.717420836722375,
          -4.996992981890705,
          -3.9771632326126296,
          -7,
          -3.972970739945679,
          -3.967350335584652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.529763904040117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.471951454680982,
          -7,
          -4.675613388396707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.449971810566892,
          -4.179465613075431,
          -3.120181063048784,
          -7,
          -4.191478960443599,
          -4.764400322956388,
          -3.5747255835940734,
          -3.337359412001355,
          -3.5466660250701842,
          -7,
          -4.280757898293844,
          -7,
          -7,
          -7,
          -4.058734362760268,
          -4.678955185194013,
          -7,
          -7,
          -7,
          -7,
          -3.4802225985844752,
          -7,
          -7,
          -7,
          -4.6898059261126965,
          -4.6425931077703,
          -5.706281562389593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070333455853063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2089516750078246,
          -7,
          -3.666661106771804,
          -4.007676669612222,
          -7,
          -4.097569639431371,
          -7,
          -7,
          -5.046175081023443,
          -7,
          -2.667102574103782,
          -4.60612329172563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2106157375232303,
          -7,
          -3.4795753101749884,
          -7,
          -7,
          -2.8191249923035215,
          -3.0517311960598494,
          -7,
          -7,
          -3.033182413729195,
          -7,
          -4.193910349874993,
          -3.5949447366950835,
          -2.8976270912904414,
          -7,
          -4.120639728415567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.703162360595733,
          -7,
          -7,
          -7,
          -3.602350591194482,
          -7,
          -7,
          -7,
          -3.9278321328665817,
          -7,
          -3.436480695009495,
          -7,
          -7,
          -3.468002515402457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0557604646877348,
          -7,
          -3.229169702539101,
          -3.375526446675889,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.361885160591638,
          -7,
          -7,
          -7,
          -3.2898118391176214,
          -3.70337541437429,
          -7,
          -3.5733358400660675,
          -7,
          -7,
          -7,
          -7,
          -3.759516759462188,
          -7,
          -7,
          -3.4886916983169405,
          -7,
          -7,
          -3.7805333253164046,
          -3.248034603058738,
          -3.598243191653623,
          -7,
          -4.00060758706289,
          -7,
          -7,
          -7,
          -2.7448280567121106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.565731085047682,
          -3.28668096935493,
          -3.1137914745357826,
          -4.243174519793413,
          -7,
          -3.114777731971562,
          -7,
          -7,
          -7,
          -7,
          -3.6484575942825224,
          -7,
          -7,
          -7,
          -7,
          -3.789809784381399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1868151244474543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.101918833680424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.859138297294531,
          -7,
          -4.495918807079969,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.204608289327036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3328220855550996,
          -7,
          -7,
          -7,
          -4.872608403113143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3014640731432996,
          -7,
          -4.66337107549875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304894259774213,
          -7,
          -3.5879914264312434,
          -7,
          -7,
          -7,
          -3.093596768608228,
          -2.9084850188786495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.124520526873732,
          -2.1089031276673134,
          -2.4511282472469036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.974337673992178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4768316285122607,
          -7,
          -7,
          -7,
          -4.141167468646232,
          -7,
          -7,
          -7,
          -3.960470777534299,
          -7,
          -7,
          -7,
          -7,
          -4.072029200827922,
          -2.812244696800369,
          -7,
          -2.710540447933297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.941511432634403,
          -7,
          -4.1502266766129745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9925093350677754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.2041199826559248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.042181594515766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.68090066116131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.607079544728571,
          -7,
          -7,
          -7,
          -7,
          -3.4550126429169667,
          -7,
          -3.0485389068446946,
          -2.8523579836678272,
          -3.0870712059065353,
          -3.0159881053841304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.064195835864643,
          -7,
          -3.735758537443739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.350945431337479,
          -3.8355003278673188,
          -7,
          -2.173186268412274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.712735542052476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096025634102744,
          -7,
          -7,
          -7,
          -7,
          -2.8744818176994666,
          -2.0492180226701815,
          -7,
          -7,
          -7,
          -3.1997551772534747,
          -7,
          -3.4952667443878105,
          -2.393867559040913,
          -7,
          -7,
          -4.309225488984801,
          -2.768884649356367,
          -3.450980017314784,
          -7,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -7,
          -7,
          -3.9467960272714606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.411788004543869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1309927524950965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2421934558224543,
          -3.4634450317704277,
          -7,
          -7,
          -7,
          -7,
          -4.351064783330702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5872618496925344,
          -2.5634810853944106,
          -7,
          -7,
          -5.574108275787997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.49789674291322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.800070653111199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8903278525489418,
          -7,
          -3.985078270183812,
          -4.4014579833425564,
          -3.485437481076301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.068695950887171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2270378449302255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.772042847107852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5691929602308528,
          -7,
          -4.6674249329872435,
          -5.064951905427961,
          -3.8682916880178557,
          -7,
          -7,
          -7,
          -4.234666578212518,
          -7,
          -7,
          -7,
          -4.961273931114606,
          -4.677771150682378,
          -7,
          -3.9551583869257936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.689228920267321,
          -4.788543089039288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6037125907704572,
          -7,
          -4.89657030606194,
          -3.48274499054841,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.556423121371285,
          -4.604722722859099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0835623371877907,
          -7,
          -7,
          -7,
          -7,
          -3.381756668168806,
          -3.0259199985020175,
          -7,
          -7,
          -3.119668207244826,
          -7,
          -4.795108024611571,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7545012293869173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5369195031302656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2431869241314715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.136244801746143,
          -7,
          -7,
          -7,
          -7,
          -4.392468317043854,
          -3.41077723337721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.025264892154508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.417388646165674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.922349113974395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.389679843219249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7800291273373383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9497151990838457,
          -4.018117720591,
          -7,
          -7,
          -3.4233687700792785,
          -7,
          -7,
          -4.025960909856379,
          -3.338057875419756,
          -3.385473488379908,
          -3.3354005832177553,
          -7,
          -7,
          -2.8769306614261745,
          -3.0966948805607766,
          -3.450249108319361,
          -3.7382254481425052,
          -7,
          -4.023787279789847,
          -7,
          -2.6195052314655953,
          -3.344294005898312,
          -7,
          -3.261411574317625,
          -2.728667900158172,
          -7,
          -7,
          -7,
          -4.081455327822574,
          -3.4532036344562216,
          -3.188084373714938,
          -2.2623721514962294,
          -3.1436392352745433,
          -7,
          -7,
          -3.334936032690669,
          -2.629555213347806,
          -3.073066317596221,
          -3.1144441724452543,
          -7,
          -3.787425049380184,
          -7,
          -2.812338605924589,
          -4.0253877998904075,
          -3.734999734992562,
          -4.084003990608029,
          -3.750701200395868,
          -3.156639998415452,
          -7,
          -7,
          -3.4203848769604073,
          -3.149796248264438,
          -4.069483093934611,
          -2.2786282035869205,
          -4.10595276923698,
          -3.0786501170358553,
          -3.5103841306041415,
          -7,
          -3.565178552693963,
          -3.8041394323353503,
          -4.04410838744612,
          -3.0050634572543666,
          -3.2691625654317447,
          -7,
          -4.040325379199723,
          -3.1354189050278523,
          -2.0055167390105617,
          -3.5471180513494303,
          -7,
          -2.9500517490365605,
          -7,
          -2.863804198383527,
          -3.1997551772534747,
          -7,
          -3.6254839394069043,
          -3.4574761639890332,
          -7,
          -3.61083753474107,
          -7,
          -7,
          -2.289358432636332,
          -7,
          -7,
          -4.016490131620828,
          -3.406506116785802,
          -4.040800061256529,
          -3.0750490123810867,
          -3.828595456371702,
          -4.072176344478966,
          -7,
          -2.4398045098919963,
          -3.1735100063936486,
          -3.1339219404237717,
          -7,
          -7,
          -7,
          -4.070628844051428,
          -3.6158448828747023,
          -3.060508975605298,
          -7,
          -2.8623482554633135,
          -7,
          -7,
          -7,
          -2.672975925825707,
          -7,
          -7,
          -7,
          -2.948779613737823,
          -2.5732713922522903,
          -7,
          -7,
          -3.7515100502700416,
          -4.057970231710706,
          -2.124998812717229,
          -7,
          -7,
          -3.4820155764507117,
          -2.9828847574477972,
          -3.199663775699543,
          -3.5693348876929294,
          -3.0730197063476323,
          -2.6555304327456617,
          -7,
          -3.9269337958028787,
          -4.039176084376041,
          -3.956552591917399,
          -7,
          -2.9010153549566473,
          -3.1462210888118802,
          -4.022675761953727,
          -7,
          -2.275494751283599,
          -3.811273307711949,
          -7,
          -7,
          -2.9305702764641635,
          -7,
          -3.7139103541289553,
          -4.018076063645795,
          -7,
          -7,
          -7,
          -2.769434137441502,
          -3.1799824252925917,
          -3.693345821666275,
          -4.041037207867029,
          -3.6421181336945816,
          -7,
          -4.027308827035546,
          -4.055416559840489,
          -4.329580915741898,
          -2.8059972395494706,
          -7,
          -7,
          -7,
          -3.0377179381586314,
          -7,
          -3.112353600959159,
          -7,
          -3.3604419331026376,
          -4.023252459633712,
          -3.361085360488826,
          -3.3674677421179733,
          -3.794975744051132,
          -3.1883307420001077,
          -7,
          -2.7368445108368746,
          -2.9524943941471555,
          -3.7345998321264577,
          -3.2140101426502716,
          -3.7309436934277356,
          -7,
          -7,
          -3.742057076502348,
          -4.030194785356751,
          -7,
          -4.019157847739282,
          -2.9405639151168446,
          -7,
          -3.28668096935493,
          -7,
          -2.95142323763206,
          -2.445409351273244,
          -7,
          -3.3899925251123144,
          -3.237166582685473,
          -7,
          -3.391922621374344,
          -7,
          -2.4791210793518808,
          -3.5769936457909233,
          -3.4622482153549976,
          -2.4883054216721763,
          -3.733317662782867,
          -3.465263850356592,
          -7,
          -2.6953203529523866,
          -3.378216149749878,
          -3.462955823628693,
          -7,
          -3.1628430939207037,
          -7,
          -4.195927313597225,
          -4.037067758042558,
          -4.064794811195383,
          -7,
          -7,
          -2.586249638866042,
          -3.0859680770460742,
          -7,
          -3.7921114090871684,
          -3.736197238918293,
          -2.9534799201619046,
          -7,
          -7,
          -4.029992175377847,
          -7,
          -7,
          -3.732393759822968,
          -7,
          -3.1334590674872085,
          -3.0817792267675337,
          -2.7766064460534263,
          -2.6370818541953644,
          -3.1025518953323297,
          -7,
          -3.5542468081661105,
          -7,
          -3.4509031374275407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7265234583862394,
          -7,
          -7,
          -3.767897616018091,
          -3.2485751065285084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039057018033444,
          -7,
          -7,
          -3.8688207061975177,
          -4.073461729279835,
          -3.602548297999073,
          -3.1033563066696592,
          -7,
          -7,
          -4.016490131620828,
          -2.2721855340792434,
          -7,
          -3.213330796493227,
          -3.741663622514662,
          -3.0971651968201335,
          -7,
          -7,
          -7,
          -2.880351799071886,
          -2.8874485002499535,
          -2.3327138236457876,
          -2.976005892508129,
          -2.3850619961350192,
          -2.8571816735501194,
          -7,
          -7,
          -3.7560652939486863,
          -2.9938091464333256,
          -3.403120521175818,
          -7,
          -3.329641910730211,
          -4.057818194432099,
          -7,
          -7,
          -7,
          -3.1811644721192858,
          -2.6961674109846214,
          -4.054804500220955,
          -7,
          -7,
          -2.1147504503585406,
          -2.704248595991504,
          -7,
          -3.1042792367572742,
          -4.021602716028243,
          -2.595141776071406,
          -3.8398863812750887,
          -3.5967803035945445,
          -3.4333811830320657,
          -3.4202198777251476,
          -2.6130825181863484,
          -2.9607268366171704,
          -2.7611103580716736,
          -4.088809166461293,
          -3.287801729930226,
          -2.960570908834968,
          -4.017492446477275,
          -3.412418543998244,
          -7,
          -3.5924821001140748,
          -3.1075183079511315,
          -2.6879341244886357,
          -4.038977622332692,
          -3.4959603948817053,
          -7,
          -4.081527326244805,
          -7,
          -2.71113789711095,
          -3.5638369186645447,
          -2.818962939492806,
          -3.149434666343169,
          -3.3418300569205104,
          -3.407911151195616,
          -3.0729341054228705,
          -3.550381532463171,
          -4.041471640613747,
          -2.6267724474822196,
          -2.601259237413943,
          -2.997222509991783,
          -7,
          -2.7907932251273815,
          -4.025674449410344,
          -2.7835137861438874,
          -2.4866211799441786,
          -3.5804117262774118,
          -3.7806053058389697,
          -7,
          -7,
          -3.493144241793856,
          -3.551246628977399,
          -3.7381857702399692,
          -7,
          -3.3792752943968063,
          -7,
          -2.6064231101466255,
          -7,
          -7,
          -2.865934433442102,
          -3.7601773696361365,
          -7,
          -3.4520932490177314,
          -4.312149136258353,
          -3.446459496594692,
          -4.243236537941076,
          -3.575276684956999,
          -2.220246301385376,
          -3.2089561488344414,
          -7,
          -3.7002420700306993,
          -4.317331935445897,
          -4.039100679482735,
          -2.7667392071108186,
          -4.495488833107507,
          -3.4140460663081886,
          -2.9021377646923416,
          -4.01500328646168,
          -3.0854047573314234,
          -7,
          -4.229167994396186,
          -3.179355219664356,
          -2.8714047098259203,
          -3.6565964439829135,
          -3.650834630108787,
          -4.141990345122414,
          -3.0598215015104135,
          -7,
          -2.3923943485481045,
          -4.386570301700929,
          -3.8053875688707084,
          -3.4912355900332503,
          -3.3655050023663393,
          -4.074999186064199,
          -3.3891266907882067,
          -3.765494702849603,
          -3.738089394524819,
          -3.4018828223212823,
          -2.672935521979907,
          -2.683321176971368,
          -3.090564725600136,
          -2.3143427867681856,
          -2.2505444669536296,
          -2.2420685056980982,
          -2.8706686043154397,
          -3.2410125337870626,
          -2.231604854564069,
          -2.5303984448232404,
          -2.667252771055618,
          -2.3838852800395403,
          -2.8418478220804433,
          -2.8318246230659576,
          -7,
          -2.2662552222976506,
          -2.3901174996631,
          -4.022881813332031,
          -3.3053513694466234,
          -2.506101564166644,
          -2.55975704883973,
          -7,
          -1.847972154164334,
          -2.281367945106283,
          -3.8886622314961086,
          -3.7269715836828765,
          -3.4719661042730605,
          -7,
          -2.35969125581128,
          -3.248354776253106,
          -3.7229200677911893,
          -3.1635390310183986,
          -3.041590046889367,
          -4.019448637493637,
          -3.285936869490004,
          -2.493694292457702,
          -3.25723537950945,
          -1.6801411837154883,
          -2.379380373882321,
          -2.9818452452840774,
          -1.889446776659733,
          -2.485871928296167,
          -2.9620139876491844,
          -1.505915105333337,
          -2.1720863832034163,
          -3.287065556036607,
          -3.170065419875544,
          -7,
          -3.1870190811827652,
          -3.0898620501650678,
          -3.171126508351265,
          -4.024321442141565,
          -4.018658897585517,
          -7,
          -7,
          -3.7022294276288252,
          -2.6020932268788046,
          -2.94023179499651,
          -2.464343951785702,
          -7,
          -2.842388953284813,
          -2.4931435578660768,
          -3.6155993899644367,
          -2.3665511298083617,
          -3.7255441224863532,
          -2.847684807491839,
          -4.02094105986232,
          -2.674711087015539,
          -2.5896393688088346,
          -3.2596336913699937,
          -3.7814322255046484,
          -3.5895959185665633,
          -3.0800850850458694,
          -2.5377291697221085,
          -3.3487331037982857,
          -3.5587885437369464,
          -3.087917863970426,
          -7,
          -3.7409545058228053,
          -4.070370390367003,
          -2.6166395905393904,
          -7,
          -2.9626275880950166,
          -7,
          -4.0244446171313495,
          -3.6938851650535165,
          -2.7901261941058086,
          -2.9437081969398093,
          -7,
          -3.3258234190027447,
          -2.396811726205253,
          -7,
          -2.829303772831025,
          -7,
          -2.916303517484374,
          -2.2929993067646084,
          -4.019116290447073,
          -3.7238659644435037,
          -2.9450111181475167,
          -2.7819064730211855,
          -2.866700756042499,
          -7,
          -3.288994028501752,
          -3.2732328340430454,
          -3.436639631692661,
          -2.792686526225059,
          -2.786440847338095,
          -3.5050481786205916,
          -7,
          -2.7113853790984517,
          -2.4954782600291048,
          -4.078166708168154,
          -3.036011561239873,
          -7,
          -4.024977972095624,
          -3.4725858175201463,
          -3.0813473078041325,
          -2.384599679214964,
          -2.708794691425808,
          -3.4429498695778618,
          -7,
          -7,
          -3.929393378228659,
          -2.858256399391167,
          -2.81929710718518,
          -3.7302976620971497,
          -2.877551304634999,
          -2.6538286674168488,
          -4.058274146685951,
          -7,
          -2.5727635687467134,
          -2.4755715775939935,
          -3.1942984514279047,
          -2.5295230327534557,
          -2.9101771619648984,
          -7,
          -2.5033366375564374,
          -2.731627132118333,
          -2.5983063786100478,
          -3.161996525422446,
          -4.058539897939781,
          -3.4504415720858184,
          -3.4176377396522297,
          -7,
          -3.671212526660277,
          -4.107989642267512,
          -7,
          -7,
          -2.715426287355302,
          -3.3822332349705566,
          -2.5797478801414493,
          -2.808153075999404,
          -3.3837555416836356,
          -2.7814476190128725,
          -4.036429265626675,
          -3.027164209914138,
          -7,
          -2.089198366805149,
          -2.9868314269997462,
          -4.170173673806271,
          -7,
          -2.89250272192097,
          -2.6867528114559094,
          -2.437926640050411,
          -2.5493592897669206,
          -4.031408464251625,
          -7,
          -4.0175758683910745,
          -7,
          -7,
          -4.0246498311794445,
          -3.366369584424885,
          -4.066027594948862,
          -2.845754459710494,
          -2.6516817459988693,
          -7,
          -3.724275869600789,
          -3.553842587658613,
          -2.7183434903473924,
          -3.336179453437444,
          -2.8616749478659766,
          -3.3649260337899753,
          -2.7431271938070174,
          -3.4975930308120327,
          -3.6828968412870142,
          -3.4372747974101237,
          -7,
          -3.4267714347926965,
          -4.035509785089559,
          -7,
          -2.9263844500573724,
          -3.196136691157174,
          -3.1366413091067473,
          -3.0819688735880715,
          -7,
          -3.6195802468903406,
          -3.419625360887743,
          -4.024239306069092,
          -3.04429025803639,
          -7,
          -3.5578078557646045,
          -3.218235318937493,
          -7,
          -7,
          -7,
          -3.706888394981618,
          -7,
          -7,
          -3.72222246396973,
          -2.8491463155442887,
          -3.1808424146466825,
          -7,
          -3.7453871213200087,
          -3.6606072689262064,
          -3.992597696102038,
          -7,
          -7,
          -3.266573761870049,
          -3.0899258806453944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.246071626606709,
          -3.246357873040835,
          -7,
          -3.365441183394879,
          -3.031173600321091,
          -7,
          -3.732393759822968,
          -7,
          -3.3505710339547834,
          -3.4790711958039306,
          -3.4369573306694496,
          -3.312366681284554,
          -3.162116141062368,
          -3.715836275164994,
          -3.7170044070405472,
          -7,
          -2.9770700393537606,
          -3.726808682524964,
          -3.409087369447835,
          -7,
          -7,
          -7,
          -3.7083905458113104,
          -3.721645766289746,
          -7,
          -2.9866437936313814,
          -3.773274348337454,
          -2.913187477585532,
          -3.732956369575625,
          -7,
          -7,
          -3.173841587563712,
          -7,
          -2.7188734226217175,
          -7,
          -2.8712981525680923,
          -3.0354297381845483,
          -7,
          -3.4541585899443437,
          -3.5685537120494426,
          -3.7585334222372864,
          -7,
          -7,
          -7,
          -3.7512020945883533,
          -2.840994275962398,
          -3.4374202254789092,
          -7,
          -7,
          -3.378216149749878,
          -7,
          -2.796877747701869,
          -2.950364854376123,
          -7,
          -7,
          -3.7599321174298512,
          -7,
          -2.993939833374049,
          -7,
          -7,
          -2.721989727881355,
          -3.8265283063406517,
          -7,
          -7,
          -3.1711411510283822,
          -7,
          -3.044147620878723,
          -3.9109444057499787,
          -7,
          -3.8021577531869615,
          -3.101560301504318,
          -3.9085922388475693,
          -3.275829434043522,
          -7,
          -7,
          -3.8632633636504807,
          -3.808346035740395,
          -3.24619072334908,
          -3.3261309567107946,
          -7,
          -3.1266415508735212,
          -7,
          -7,
          -7,
          -2.5773986335852532,
          -3.2329961103921536,
          -3.369957607346053,
          -3.486430478854434,
          -3.0463976029545603,
          -2.566567572030291,
          -7,
          -7,
          -3.473632926873841,
          -7,
          -2.997777925619072,
          -7,
          -7,
          -3.0542299098633974,
          -2.910250772300148,
          -3.649967338324824,
          -7,
          -3.3365709061214783,
          -3.7884794804834376,
          -7,
          -4.063370893585704,
          -3.748962861256161,
          -3.633544198011875,
          -2.9293459289107084,
          -3.2688703670207335,
          -3.9388698215129865,
          -7,
          -7,
          -2.57548982690978,
          -3.1824717176053743,
          -7,
          -7,
          -3.668541215987884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.769434137441502,
          -7,
          -3.373325857661505,
          -3.4993662825855276,
          -7,
          -4.087000120795991,
          -7,
          -3.7255032688593155,
          -3.7801011914679115,
          -4.204798038190855,
          -2.731204909335425,
          -7,
          -7,
          -7,
          -2.6073334015206,
          -7,
          -7,
          -7,
          -3.788168371141168,
          -7,
          -3.0898344887086298,
          -2.758430145835095,
          -2.949877704036875,
          -2.7310926412065784,
          -3.3350565194390915,
          -2.5784959493756787,
          -2.5696492587965016,
          -3.440987751476157,
          -3.2233766941889703,
          -3.7349597612724454,
          -7,
          -7,
          -7,
          -3.731266349075492,
          -7,
          -7,
          -3.0725506671486116,
          -3.731024379815688,
          -3.5297785596881464,
          -7,
          -3.2962701975267965,
          -2.891395696603519,
          -7,
          -3.6721902511882525,
          -2.7815502284597535,
          -3.7886632131208575,
          -3.367852683427225,
          -3.3194530784907674,
          -3.113140836867081,
          -3.476759191770886,
          -2.287661792928241,
          -3.1715314404115604,
          -7,
          -3.1884597362982907,
          -7,
          -3.6556825632823373,
          -2.740165238032828,
          -3.9481357374421178,
          -7,
          -2.289291592392737,
          -3.403977963669355,
          -2.973421763928828,
          -3.443654067612905,
          -2.6820061465959664,
          -3.7304592600457687,
          -3.264424262056547,
          -2.8020036235559296,
          -3.0583627485070277,
          -7,
          -3.070037866607755,
          -7,
          -3.11601706796125,
          -7,
          -7,
          -3.730862992046494,
          -7,
          -7,
          -3.436639631692661,
          -3.714413592287121,
          -3.4437322414015967,
          -3.328787200354535,
          -3.0236125071907014,
          -3.082976752706637,
          -3.8778977629824376,
          -7,
          -7,
          -3.743666521446213,
          -7,
          -7,
          -3.7169210731667612,
          -3.8309092995464433,
          -3.500648063371912,
          -3.799891684656865,
          -7,
          -7,
          -3.239633102713035,
          -3.7261564661727546,
          -7,
          -7,
          -3.202896808529529,
          -3.2321157182262974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7487305560984945,
          -7,
          -7,
          -2.828291538174048,
          -3.8135142715418833,
          -4.028977705208778,
          -2.933681925274947,
          -7,
          -7,
          -7,
          -2.4974134646862063,
          -3.524331200288652,
          -3.227103889576614,
          -3.755951041004132,
          -3.9033690866007587,
          -3.763502865467597,
          -7,
          -7,
          -2.7270891965298407,
          -3.3066394410242617,
          -3.2935203938852355,
          -3.2142255094151593,
          -3.5852350633657752,
          -3.793231447056521,
          -7,
          -7,
          -3.7834032811225633,
          -3.175975431749513,
          -2.6869935662646784,
          -7,
          -3.2513136962545923,
          -3.0850764114720945,
          -3.2486270782758857,
          -3.1991378431311865,
          -7,
          -3.3564720392787937,
          -3.003162150454414,
          -2.874844061845836,
          -3.16761267272753,
          -2.94911107633224,
          -3.602252279166497,
          -2.7927417858347487,
          -3.7197454925295768,
          -3.0563966072973052,
          -7,
          -3.281714970027296,
          -2.6264943452110474,
          -3.2121209897122247,
          -3.2321062926146578,
          -2.938742041271392,
          -3.0762357711830832,
          -2.9132839017604186,
          -2.7243304944020563,
          -3.5398912045347903,
          -3.9228010399359112,
          -2.903993825990188,
          -7,
          -7,
          -7,
          -3.536516357733869,
          -2.9424049408561066,
          -3.1324197980976147,
          -3.748575616930992,
          -3.857573704147496,
          -7,
          -3.526920532638649,
          -7,
          -2.941511432634403,
          -7,
          -3.293657141449485,
          -2.712005604964203,
          -7,
          -4.038983293935556,
          -2.930304643867514,
          -3.7774671001061875,
          -7,
          -2.5269850685599957,
          -3.424419460114532,
          -2.944975908412048,
          -7,
          -3.162340331628426,
          -7,
          -2.582604405067025,
          -2.8827277737122063,
          -3.149746809539141,
          -3.2259550728960145,
          -3.7104558643354246,
          -7,
          -2.646709977192606,
          -3.426755178518925,
          -7,
          -3.2784487259091373,
          -2.9140545254194707,
          -3.2555137128195333,
          -2.6970859639264892,
          -7,
          -7,
          -4.342432551039179,
          -4.503565989865016,
          -7,
          -7,
          -3.272367705306956,
          -3.848620117434134,
          -4.08543329741699,
          -3.4929000111087034,
          -3.3258234190027447,
          -4.149311505907915,
          -7,
          -7,
          -3.9773806058118346,
          -4.0173964914623195,
          -4.32990612340021,
          -7,
          -4.413165598345893,
          -3.6447093236185086,
          -7,
          -7,
          -3.9228810912082936,
          -4.69711595791437,
          -4.068464166454118,
          -3.742040221497518,
          -4.239299479126893,
          -7,
          -4.22303708921397,
          -3.8228869478341507,
          -7,
          -3.6304888957237034,
          -7,
          -3.125781451979629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2166804145591215,
          -4.299114883600537,
          -3.4839199622336494,
          -3.462472869803616,
          -3.5970028677416908,
          -3.760627087876746,
          -3.390970414162616,
          -3.261881149383667,
          -3.8116587737331162,
          -3.5358635207124522,
          -3.3774047104492237,
          -2.6014865855147615,
          -2.887392218971847,
          -3.730189896716472,
          -2.9788266104365038,
          -2.727682314264488,
          -7,
          -2.891088504138878,
          -3.2055523408496573,
          -3.7165875776756923,
          -3.733919151012391,
          -4.149573180097276,
          -7,
          -7,
          -3.613465481647862,
          -3.3868666670825744,
          -4.312377102890958,
          -3.24960595430691,
          -2.4303975913869666,
          -3.4326486600131068,
          -2.9005690684574574,
          -4.026369811573718,
          -4.714212366993632,
          -4.218876715052756,
          -3.7225927942150254,
          -7,
          -3.629969946292171,
          -3.500497192859225,
          -3.8145272659128477,
          -7,
          -2.7765766670051226,
          -3.2629254693318317,
          -3.181973441281636,
          -3.4339543652562603,
          -3.2771506139637965,
          -2.5098742850047193,
          -3.05779895700737,
          -3.6145281197475394,
          -3.382987914288671,
          -7,
          -3.1520844023826413,
          -3.5084816216810326,
          -7,
          -7,
          -3.707995746422929,
          -7,
          -7,
          -7,
          -2.79054104530852,
          -2.722886934182042,
          -2.5326665362571856,
          -7,
          -3.8145139523682383,
          -2.8005861681135253,
          -3.8481891169913984,
          -2.4761330984755965,
          -3.7241939195143297,
          -2.559136826639166,
          -3.7126497016272113,
          -2.797351686984816,
          -2.4466574036419377,
          -7,
          -7,
          -3.954121855324949,
          -3.8266577918758693,
          -2.405829968530948,
          -7,
          -7,
          -3.2470316839518056,
          -3.7453871213200087,
          -3.7545776560447304,
          -3.5067079263501197,
          -2.598078862529418,
          -7,
          -2.9961028694112493,
          -7,
          -3.4185498620497423,
          -3.945409493427272,
          -3.132023632424381,
          -3.3876995495175377,
          -7,
          -7,
          -2.285755813383243,
          -7,
          -2.5123479092054417,
          -7,
          -2.7937903846908188,
          -2.563189201196379,
          -7,
          -7,
          -3.8467699535372186,
          -2.7117369491669536,
          -7,
          -7,
          -3.802636918082811,
          -2.6924062348336304,
          -7,
          -2.811038508604216,
          -3.1132746924643504,
          -7,
          -7,
          -2.7928763631597087,
          -2.719552245768398,
          -7,
          -3.424368203361429,
          -7,
          -7,
          -3.7954281160534724,
          -2.622861354256069,
          -2.641639335722719,
          -2.669200619159474,
          -3.9314070135565733,
          -3.794418330874141,
          -7,
          -3.4646758040229666,
          -2.179854874505845,
          -3.4206569887230676,
          -7,
          -2.652375288296997,
          -2.6762959040275653,
          -7,
          -7,
          -2.585218939867717,
          -2.7241009012423585,
          -2.407740718812563,
          -3.237732193117367,
          -2.4326874301696493,
          -3.0306575392437978,
          -3.7013088852280753,
          -3.7800291273373383,
          -2.5033082439451104,
          -7,
          -3.4847979243318843,
          -7,
          -7,
          -7,
          -3.9623219727295846,
          -7,
          -2.9818186071706636,
          -7,
          -3.262270237307056,
          -3.5268559871258747,
          -3.3778524190067545,
          -2.4732289564856345,
          -7,
          -2.5050319474775153,
          -7,
          -2.725230813090089,
          -7,
          -2.3277966577379194,
          -2.6215539291743997,
          -7,
          -7,
          -2.9606066644196076,
          -7,
          -2.674949986825319,
          -2.5783335302215775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039453778961736,
          -3.799891684656865,
          -3.2181414681576777,
          -3.1357685145678222,
          -7,
          -3.2441946258862364,
          -2.8870543780509568,
          -2.638949802577757,
          -7,
          -2.5914974484339126,
          -3.1940284373527064,
          -2.1419552372400017,
          -2.714329759745233,
          -7,
          -3.749736315569061,
          -3.7062909572587635,
          -3.4274861090957858,
          -3.2643455070500926,
          -3.400537989391946,
          -2.4274570408261784,
          -3.0543065658483997,
          -2.749736315569061,
          -2.669316880566112,
          -7,
          -3.252731702726023,
          -3.714664992862537,
          -3.0196977309801922,
          -2.5557306843819765,
          -7,
          -3.260739019910411,
          -2.6478019710944465,
          -7,
          -7,
          -7,
          -7,
          -4.145724574880668,
          -7,
          -4.151706857022576,
          -3.5819212275866295,
          -3.6982165740723576,
          -2.895606686165933,
          -2.1959908364698766,
          -2.8056237289922086,
          -2.580273126424684,
          -7,
          -7,
          -0.8831353250428914,
          -2.7023867192148066,
          -2.995049891972701,
          -3.8608767964032977,
          -4.1449165270928505,
          -4.150295812825538,
          -3.6701221048237063,
          -1.9490260709475087,
          -3.1509405539654773,
          -7,
          -3.217986143224739,
          -2.3927331815438966,
          -2.865814380167968,
          -3.5532760461371,
          -7,
          -2.4669235501007294,
          -2.8720688221022472,
          -3.4584867637982066,
          -2.8448177596031714,
          -3.866877814337499,
          -7,
          -7,
          -7,
          -3.413523281575585,
          -4.153418485037711,
          -2.417643009928512,
          -3.1046422774442766,
          -3.0227032411199173,
          -4.156700552582017,
          -2.6536718416678737,
          -4.151492428425498,
          -2.5235347412529383,
          -2.763261565324877,
          -2.808387133479059,
          -2.6389273482647213,
          -2.722786215722561,
          -3.8665531523018597,
          -4.223833277236323,
          -7,
          -3.4856930402936617,
          -2.295525345561636,
          -3.735891524088347,
          -2.312811826212088,
          -3.040074643230312,
          -7,
          -3.2608164464658076,
          -2.869018254756463,
          -7,
          -4.167937312700578,
          -3.6910520074505713,
          -7,
          -3.0158086695675426,
          -4.236763922187807,
          -2.7443973056026167,
          -3.673512399026766,
          -4.148201487458512,
          -3.164271722213462,
          -4.146252102092995,
          -2.6225824008556593,
          -2.428772704799911,
          -7,
          -3.255942196033082,
          -2.7459174483529494,
          -7,
          -3.420808088286559,
          -7,
          -4.154149979881548,
          -2.7909471353636977,
          -3.7162538258960365,
          -3.2523675144598987,
          -7,
          -3.911876397086321,
          -3.8619822141108484,
          -3.6196410730566346,
          -1.2237725589362722,
          -3.5847268854052863,
          -7,
          -1.4639382574859172,
          -1.923809015867687,
          -1.9327995336788195,
          -3.1476763242410986,
          -4.144698718643125,
          -2.482576980405909,
          -2.6397709927061457,
          -1.6960650136926116,
          -1.3273316108164133,
          -3.3066394410242617,
          -2.04155249913681,
          -7,
          -7,
          -7,
          -3.156303011673324,
          -3.8462752424122133,
          -2.900476371389257,
          -3.699953291190414,
          -2.948999454026953,
          -2.772566173085639,
          -3.8596785766284483,
          -7,
          -3.569783428251616,
          -2.6557203650631345,
          -2.4314563297226996,
          -7,
          -7,
          -2.039259383258555,
          -2.226831810658721,
          -1.2457024403677062,
          -3.468258689839974,
          -2.571080252623569,
          -1.6154385124390143,
          -7,
          -3.2694492600060707,
          -7,
          -2.9026710009836583,
          -3.6949852230728335,
          -2.933567202189147,
          -3.2907022432878543,
          -4.149465450995452,
          -3.6855327493999135,
          -2.4213035352156096,
          -2.3333677163830293,
          -7,
          -7,
          -3.0097341005572806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1799824252925917,
          -3.373325857661505,
          -7,
          -2.0418017499967545,
          -3.6860102913152857,
          -2.743468503554877,
          -4.146902869928199,
          -7,
          -3.5719125414899997,
          -2.948639974821173,
          -3.1598463787180644,
          -7,
          -4.154484837032048,
          -3.464578960565791,
          -2.5236561600008374,
          -7,
          -7,
          -3.88820758450285,
          -3.3319765058958195,
          -4.14989620715876,
          -3.4787107555127594,
          -4.1827854420846835,
          -3.7281913985899466,
          -3.0875903211365454,
          -3.7102584385195545,
          -3.0446222709810327,
          -3.882154404634234,
          -3.556995612185525,
          -2.8171518479092548,
          -7,
          -7,
          -7,
          -3.5626199494262973,
          -7,
          -4.153143856513743,
          -7,
          -3.299170398175146,
          -3.853911049066346,
          -3.337086373423362,
          -7,
          -2.4386586662418517,
          -2.6095232658911427,
          -7,
          -3.6604860157849677,
          -3.0637085593914173,
          -4.177623061631355,
          -3.2981432216889313,
          -3.5787537844264343,
          -3.0729565042610507,
          -3.571038826438266,
          -4.181100079728049,
          -3.1712387562612694,
          -4.158272004652084,
          -2.8967178743690574,
          -7,
          -2.3846144002320804,
          -2.645057162575253,
          -2.4685319401840777,
          -7,
          -3.228674059346633,
          -7,
          -4.284949321403674,
          -7,
          -3.7040646794085674,
          -7,
          -3.8580256078495063,
          -2.6766936096248664,
          -2.966748906109529,
          -7,
          -2.7704155895660736,
          -4.082342475253593,
          -3.360929847769662,
          -7,
          -7,
          -3.6776981814745104,
          -7,
          -7,
          -7,
          -7,
          -4.160288413131288,
          -3.859418526033877,
          -2.3911620309865724,
          -2.875414988878726,
          -3.021829394015815,
          -7,
          -3.310632631264332,
          -2.6263403673750423,
          -4.172456974400587,
          -4.146128035678238,
          -7,
          -3.718141703622399,
          -3.337601863321786,
          -7,
          -7,
          -7,
          -4.149803938227022,
          -4.153174379371534,
          -7,
          -4.149157506231856,
          -7,
          -3.4606702239729046,
          -7,
          -7,
          -7,
          -4.152685756036786,
          -4.163757523981956,
          -7,
          -7,
          -3.4647279415565504,
          -3.962795369857233,
          -3.8868571827455662,
          -2.7856412050628534,
          -2.6884415275019733,
          -4.185457157401926,
          -7,
          -7,
          -3.0018609189497134,
          -3.4938482527122763,
          -2.332548626359836,
          -3.8634715656455874,
          -3.293663834280866,
          -3.4683177855649125,
          -3.5509617522981762,
          -3.677272283237335,
          -2.81088563461834,
          -1.0719353440555819,
          -2.275514596639852,
          -2.3095833760147775,
          -3.1340920685160083,
          -2.780173243642594,
          -3.016227237873841,
          -4.149496233465742,
          -4.175482820774772,
          -3.515979756279428,
          -2.9306005339873313,
          -7,
          -4.154149979881548,
          -3.573741641520317,
          -7,
          -7,
          -7,
          -3.5944201763721857,
          -3.138203983656957,
          -3.696443763138999,
          -3.910277471004973,
          -7,
          -2.7652681526752825,
          -1.9965697645340619,
          -3.8496957509222134,
          -2.9245708389275467,
          -7,
          -3.688568121297955,
          -2.647759015234576,
          -3.8873077833767713,
          -3.6544460867173374,
          -3.3202501718864337,
          -3.1166298787188618,
          -2.9581983746214435,
          -3.11293997608408,
          -3.199288828082406,
          -2.8919539577451547,
          -2.4260731174384857,
          -3.446381812222442,
          -7,
          -7,
          -1.5969887421995967,
          -2.65459609049376,
          -3.855397996654069,
          -3.5594577418107205,
          -2.9273703630390235,
          -3.3750536497006407,
          -3.494961186838928,
          -4.156670276554126,
          -2.5668380133503383,
          -2.9863835313824367,
          -3.0558779765553,
          -3.4025070241365136,
          -3.5610715547069858,
          -3.017287893248922,
          -1.6669457144935187,
          -3.171527266019217,
          -7,
          -3.3406644011658675,
          -2.973800027588227,
          -2.3367070221695694,
          -7,
          -4.168055303459139,
          -3.549463076236982,
          -3.530711837981657,
          -2.772743880410262,
          -2.325636926468734,
          -3.0174229159729875,
          -3.8462752424122133,
          -7,
          -3.6026838413608373,
          -7,
          -4.161936705245781,
          -7,
          -3.3506598211478686,
          -4.155730671278588,
          -2.5865680715067687,
          -7,
          -7,
          -4.723529553280573,
          -4.384239881687907,
          -7,
          -3.646746712800757,
          -3.772268350314977,
          -3.791573698842515,
          -4.022799404511688,
          -2.7547470758907386,
          -3.235057187684041,
          -3.458543426918113,
          -7,
          -3.6239725120169965,
          -3.9155119563119665,
          -3.939085125220391,
          -3.809929885460897,
          -4.241372130158436,
          -3.669016325787356,
          -4.0333477919900265,
          -4.084129242916061,
          -4.054983106731511,
          -7,
          -4.110271447754429,
          -4.032336659845735,
          -3.1996546344860612,
          -2.44301317756863,
          -7,
          -3.7710654259763947,
          -3.6150628307515076,
          -7,
          -2.797452607384794,
          -7,
          -3.3083865333695637,
          -4.061666055214047,
          -3.986906031380721,
          -7,
          -4.107786384315953,
          -7,
          -3.2598534598303455,
          -3.6813618579795855,
          -2.8671488448410494,
          -4.167583147965841,
          -3.0554937278103553,
          -3.405915255308017,
          -3.7244602007755776,
          -2.5551912165114072,
          -2.984864716816858,
          -3.197528655522771,
          -2.158923013122718,
          -3.326652341050451,
          -3.920071124297524,
          -2.8808770809852247,
          -2.8336437606968583,
          -2.3835517923802207,
          -7,
          -2.395995993135859,
          -2.509354301527002,
          -7,
          -2.896482124440946,
          -3.9676064709973065,
          -4.259235402198733,
          -7,
          -2.9163447519231225,
          -2.285476692176725,
          -3.574584146421634,
          -7,
          -3.9638114296651668,
          -7,
          -2.989974234237973,
          -7,
          -3.4831170267746994,
          -3.174846201664013,
          -7,
          -7,
          -3.537705786080527,
          -3.37755264713504,
          -3.527536166563112,
          -3.766710207262259,
          -3.1326089412441998,
          -2.997167871445834,
          -3.0910382116121973,
          -2.6062630018624766,
          -3.209306455462485,
          -2.5657099692891188,
          -3.024514987157872,
          -2.5414009255363963,
          -3.5600188883949224,
          -4.156821635591626,
          -3.940267391446012,
          -3.1642322463464287,
          -3.822965297912282,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8216207799937747,
          -3.1566592665661197,
          -2.116277118838028,
          -7,
          -4.188365926063148,
          -3.0056216943620413,
          -3.7256938862479183,
          -3.2877737461368017,
          -7,
          -3.0251237329568363,
          -7,
          -3.0960548217598056,
          -2.6534599045435847,
          -3.4618885263439725,
          -7,
          -7,
          -7,
          -3.258230090449129,
          -7,
          -7,
          -3.9892495332565354,
          -3.859378504425601,
          -4.1640255242878395,
          -3.8844838285545573,
          -2.2220137501713593,
          -7,
          -3.014045480587391,
          -7,
          -7,
          -3.7699678013294426,
          -3.07420462936341,
          -3.4939167341048294,
          -7,
          -7,
          -2.3081294666226277,
          -7,
          -2.913681425341403,
          -7,
          -3.276748941031243,
          -2.141555221367973,
          -7,
          -7,
          -4.2022975561388,
          -3.0323021042694998,
          -3.563860630519641,
          -7,
          -3.8822968009376515,
          -3.170848203643309,
          -7,
          -3.040545831821507,
          -2.4178112658140627,
          -4.465085287557433,
          -7,
          -2.7102712611027617,
          -2.667141519042328,
          -4.191562787591726,
          -3.023822067750505,
          -7,
          -7,
          -7,
          -3.114722156505122,
          -2.4302382070616937,
          -2.694791266284906,
          -3.639461586348088,
          -7,
          -7,
          -4.313297626086869,
          -4.159055603513488,
          -4.288897276322566,
          -7,
          -2.9901445333695924,
          -2.539758208062269,
          -7,
          -7,
          -2.568644429999217,
          -2.2042842200431023,
          -2.865794662364423,
          -7,
          -2.9472918061248987,
          -3.437221902399778,
          -3.046701692585523,
          -2.9691245764056418,
          -2.7211472552953344,
          -4.257942430573135,
          -4.176525336535,
          -7,
          -7,
          -7,
          -3.86223874654393,
          -7,
          -2.961421094066448,
          -3.9125939977521056,
          -2.7444494574467986,
          -7,
          -4.146345128650468,
          -3.1429790911205524,
          -3.47928731647617,
          -2.868858087141923,
          -7,
          -3.070123153384824,
          -7,
          -2.552035169157616,
          -3.0540861434129027,
          -7,
          -3.8447566745101733,
          -2.822025869575364,
          -2.9387845299228235,
          -2.8043893467729935,
          -3.863709388627451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.51954361930943,
          -7,
          -2.9859875056581204,
          -4.157758886046864,
          -7,
          -4.151492428425498,
          -7,
          -4.164085057458859,
          -7,
          -3.248545405594516,
          -7,
          -3.8185557792978027,
          -4.28564730890073,
          -4.256019813380122,
          -7,
          -7,
          -4.2288621285305625,
          -7,
          -7,
          -3.3106546980922547,
          -3.862667950228588,
          -3.5604446731931874,
          -7,
          -4.20980980578538,
          -4.206015876763344,
          -7,
          -7,
          -7,
          -7,
          -3.9548693710664784,
          -3.7032913781186614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6763277338813203,
          -7,
          -3.266310110427021,
          -3.6769678142947586,
          -3.7019994748896368,
          -3.4519689627723857,
          -2.711713520014632,
          -7,
          -7,
          -2.6516083680914355,
          -2.145438131669925,
          -3.734239604435455,
          -7,
          -7,
          -7,
          -2.5146426078494595,
          -2.2693606403475486,
          -3.771771153745868,
          -7,
          -2.492461047614479,
          -3.178163969876514,
          -7,
          -7,
          -7,
          -3.792391689498254,
          -7,
          -7,
          -3.935277686286775,
          -7,
          -7,
          -7,
          -7,
          -3.786964259435733,
          -7,
          -3.0096936540397285,
          -7,
          -3.806044235748088,
          -2.91204482964487,
          -3.397888195011566,
          -7,
          -7,
          -3.097812407365289,
          -7,
          -2.8869007270739773,
          -3.387033701282363,
          -7,
          -7,
          -3.736077637003946,
          -3.166282067316571,
          -2.999739345106568,
          -7,
          -2.5635170413891246,
          -4.014478535326206,
          -3.218535505216528,
          -3.1104213464739563,
          -3.3601514477826377,
          -7,
          -7,
          -7,
          -7,
          -3.708420900134713,
          -3.8928734068887656,
          -3.3633701902513606,
          -3.6734816970733473,
          -7,
          -3.344915993352923,
          -7,
          -3.0750905299454705,
          -2.474788422887191,
          -7,
          -7,
          -3.100512820133382,
          -3.6679196853173615,
          -3.805228914203426,
          -7,
          -7,
          -3.1111504521226667,
          -2.6127838567197355,
          -3.6886867242841235,
          -7,
          -3.53731527311201,
          -3.709439574132411,
          -3.5581083016305497,
          -2.264414658552054,
          -7,
          -3.764325605625984,
          -2.45674800723797,
          -2.370547783660302,
          -2.4282848145774163,
          -7,
          -7,
          -3.0517954455579925,
          -3.071513805095089,
          -2.608659724353039,
          -3.5993917577937564,
          -3.3763031557559207,
          -3.146438135285775,
          -7,
          -7,
          -7,
          -3.227629649571009,
          -7,
          -3.8133808067338557,
          -3.7484206224675685,
          -2.922673567858554,
          -3.1914510144648953,
          -7,
          -7,
          -3.734399742520567,
          -7,
          -3.4985096555251327,
          -7,
          -7,
          -3.195415296209372,
          -3.5809249756756194,
          -2.667556714563343,
          -7,
          -2.4634105543773317,
          -2.9513875235064093,
          -7,
          -7,
          -3.705949194910296,
          -4.534580260907068,
          -3.433769833924866,
          -3.8392265740134355,
          -3.3092041796704077,
          -7,
          -3.4073909044707316,
          -2.835925995815466,
          -3.248218561190075,
          -7,
          -7,
          -1.5701063809221028,
          -3.651278013998144,
          -3.652149605401653,
          -3.0565237240791006,
          -3.6704314093606056,
          -7,
          -3.693345821666275,
          -3.4993662825855276,
          -2.0418017499967545,
          -7,
          -7,
          -3.222233240193911,
          -7,
          -7,
          -7,
          -3.4910253356282994,
          -3.7331169814420644,
          -7,
          -7,
          -7,
          -3.510935788737165,
          -7,
          -7,
          -2.8760734367725553,
          -3.749040268703457,
          -7,
          -3.272924057292105,
          -7,
          -3.820398522703982,
          -7,
          -7,
          -7,
          -3.764475027434409,
          -7,
          -3.0153082978203867,
          -7,
          -7,
          -7,
          -3.714497408649806,
          -7,
          -7,
          -7,
          -3.3973489661765908,
          -3.0835026198302673,
          -3.8881045768089613,
          -7,
          -3.2723986324554044,
          -3.079577084563666,
          -3.7196626830180466,
          -3.64704048585496,
          -3.423737249982329,
          -7,
          -3.5099414041582264,
          -7,
          -3.173259130501515,
          -3.436639631692661,
          -7,
          -3.4462782114390538,
          -7,
          -3.4642410809920987,
          -7,
          -2.77185461573938,
          -3.4834446480985353,
          -2.984377272063356,
          -7,
          -3.5046339471684735,
          -7,
          -3.6917885244026984,
          -7,
          -3.759365621655929,
          -3.6854730197227594,
          -7,
          -2.681467373533731,
          -3.1998922435263193,
          -7,
          -3.036162949823816,
          -3.5253363994486446,
          -3.4485903895359518,
          -7,
          -7,
          -3.685920792194535,
          -3.6648299411430907,
          -7,
          -7,
          -7,
          -3.7014816356209272,
          -3.1341416766583783,
          -3.1999744625304904,
          -1.9142927749289083,
          -3.608997110524758,
          -7,
          -7,
          -3.222629776969852,
          -2.8313898024336335,
          -7,
          -7,
          -3.79560197989418,
          -3.763951826033324,
          -7,
          -7,
          -7,
          -7,
          -3.680698029697635,
          -7,
          -7,
          -7,
          -3.22961548788786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7056926965377035,
          -7,
          -7,
          -7,
          -7,
          -2.6247546453952175,
          -3.0267783286595296,
          -2.991373769787407,
          -7,
          -7,
          -2.96177253611023,
          -2.8343500464810347,
          -1.5884147590184967,
          -3.7136585162083566,
          -3.5400869155517314,
          -3.119420863442087,
          -3.379577433327807,
          -7,
          -4.143826390839561,
          -2.5489578218497693,
          -2.065426316232098,
          -3.4915017662373264,
          -4.042142183064956,
          -3.2771506139637965,
          -3.40840957846843,
          -7,
          -3.2663885100087673,
          -3.366298410485256,
          -3.832189461068513,
          -7,
          -7,
          -7,
          -7,
          -3.7637274037656985,
          -7,
          -3.497620649781288,
          -4.100025730107863,
          -3.2615007731982804,
          -7,
          -3.756560043006683,
          -3.345162048144411,
          -3.0341177793661886,
          -7,
          -2.6434340528243605,
          -7,
          -7,
          -7,
          -3.4766867429456445,
          -3.34001423485948,
          -3.86350130064145,
          -7,
          -7,
          -7,
          -3.329194415088451,
          -3.3897879863363913,
          -3.3623316518700257,
          -7,
          -7,
          -7,
          -2.843677615258588,
          -3.6151606643165564,
          -3.3892547068486483,
          -7,
          -7,
          -3.681693392004564,
          -7,
          -3.690993032099869,
          -3.6581545470672103,
          -3.232657347128563,
          -3.0306806639999015,
          -3.9170851906405675,
          -3.7101173651118162,
          -3.7048880192472238,
          -2.1261468749667998,
          -3.0105439709914843,
          -7,
          -7,
          -3.466919695714147,
          -3.157197642540677,
          -7,
          -3.4222614508136027,
          -7,
          -7,
          -3.706803097037338,
          -7,
          -3.792881745385397,
          -7,
          -7,
          -7,
          -7,
          -3.7062055418819706,
          -7,
          -3.6291036501771363,
          -7,
          -3.1237911669042013,
          -7,
          -7,
          -3.596637074866284,
          -4.4999481305756515,
          -4.356790460351716,
          -2.6386993909768344,
          -4.046799415055245,
          -3.1409320744245472,
          -2.8095971199565004,
          -3.156276496003016,
          -2.3837059250399273,
          -2.3224777264475276,
          -2.4885507165004443,
          -4.384443024058778,
          -3.7514176864921724,
          -4.237065952555404,
          -2.991215769578708,
          -2.957316474397634,
          -3.6681910080926476,
          -3.1645808501081465,
          -7,
          -3.7890869150880286,
          -7,
          -3.491809766592,
          -3.7574339899382694,
          -3.2798265817940147,
          -2.8823433932257045,
          -7,
          -3.8503836364759403,
          -4.288428094800999,
          -3.8000293592441343,
          -3.09491620426256,
          -3.6647594635811633,
          -3.7129021250472225,
          -4.400468911217488,
          -3.9929068182233123,
          -3.478566495593843,
          -7,
          -7,
          -3.73290281908457,
          -3.3840172121632652,
          -2.2613454218203253,
          -7,
          -3.1497577964089167,
          -4.039623193624272,
          -4.071145290451083,
          -1.4041818673690032,
          -2.5451008497880436,
          -3.5010592622177517,
          -2.910177095137938,
          -4.14370162942477,
          -7,
          -7,
          -3.337817621904792,
          -3.373346748955261,
          -7,
          -3.116870521097874,
          -4.030194785356751,
          -7,
          -2.5337297026542602,
          -7,
          -7,
          -7,
          -4.055055378965599,
          -2.8776494642934214,
          -3.812150663318405,
          -7,
          -7,
          -7,
          -4.129616245517439,
          -7,
          -4.567189427160923,
          -3.602548297999073,
          -7,
          -7,
          -4.098158983460533,
          -3.891286509038756,
          -4.112088634880837,
          -3.431202884556517,
          -3.465616508703862,
          -7,
          -3.457453809482078,
          -3.42739871208322,
          -7,
          -2.788780317525239,
          -4.498062314581983,
          -3.585686278452497,
          -4.510338154055093,
          -7,
          -3.9029270960172626,
          -4.348694190265541,
          -3.7750276000988445,
          -7,
          -7,
          -7,
          -7,
          -3.6652056284346006,
          -2.3037326193533505,
          -7,
          -2.4143634630235606,
          -7,
          -3.078239253809666,
          -2.9383695974518065,
          -2.53315637946727,
          -7,
          -7,
          -2.728669353880582,
          -7,
          -3.7105794809614463,
          -2.8714137075030672,
          -3.7038070652743285,
          -7,
          -3.543074235033532,
          -3.790988475088816,
          -3.9398186628213794,
          -7,
          -3.699230502883409,
          -3.3040594662175993,
          -7,
          -7,
          -7,
          -3.171901890731724,
          -7,
          -2.333813535941105,
          -7,
          -2.2373947775919705,
          -3.296375963121168,
          -3.1167127610047314,
          -2.400865826995819,
          -7,
          -3.835817354293473,
          -3.062923679353503,
          -7,
          -3.8449739381468877,
          -7,
          -3.279134394034571,
          -2.17947947504115,
          -7,
          -7,
          -3.812779707008964,
          -3.27630858685576,
          -3.1031681798660387,
          -7,
          -3.2874284643448046,
          -3.1300924267372516,
          -7,
          -3.4741433897608056,
          -2.605336740684594,
          -3.693265155714742,
          -7,
          -3.1000257301078626,
          -3.8670548004767014,
          -3.7859701251320095,
          -1.8177411126078982,
          -3.697665162647674,
          -7,
          -2.930657997829841,
          -2.889371744355007,
          -2.7615760296211613,
          -3.1438263908395614,
          -2.948521634484761,
          -3.7558748556724915,
          -3.7033773685123497,
          -4.04680721355374,
          -3.6979264448065052,
          -3.6994908452722046,
          -7,
          -3.192428055331207,
          -2.9033404692531812,
          -2.9000548550626433,
          -7,
          -2.9326851104800995,
          -2.465887682029916,
          -3.2160602859231417,
          -7,
          -3.6864217498793677,
          -3.543633532576258,
          -3.376622573828982,
          -3.4389377010955284,
          -2.625958853800841,
          -2.9832753825780216,
          -7,
          -7,
          -3.6634182122526795,
          -7,
          -3.5277587525209717,
          -2.5178867997228385,
          -3.2414634653077736,
          -2.75960489889897,
          -2.3630117907552672,
          -3.792461731346951,
          -3.1223329230065637,
          -3.7489296824118883,
          -7,
          -2.991289379312154,
          -7,
          -7,
          -7,
          -3.2293746309288434,
          -3.3380080224113904,
          -2.9960249585742633,
          -7,
          -3.166578109919652,
          -3.7293268096468606,
          -2.8472866865744257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6638892986226614,
          -3.372819981678968,
          -2.0140705937929684,
          -7,
          -3.7844033017530085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3376588910261424,
          -7,
          -4.22816928953985,
          -3.391949041795651,
          -3.9342964068194055,
          -7,
          -7,
          -3.875234946450165,
          -7,
          -7,
          -4.074194530401818,
          -7,
          -7,
          -3.871689665685515,
          -3.2285286773571817,
          -3.8218409272004545,
          -7,
          -7,
          -7,
          -7,
          -3.3317814715707588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603406927683195,
          -7,
          -7,
          -7,
          -2.493635707293855,
          -4.219951085755317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.265034129608875,
          -7,
          -7,
          -7,
          -3.9287053536862415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.867673684585095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.525044807036845,
          -7,
          -7,
          -7,
          -3.7271813855153857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.609033839731001,
          -7,
          -7,
          -3.814180981040187,
          -7,
          -7,
          -3.485579476984679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8531199842175665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4750898033890065,
          -4.223259000239877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.101861587983128,
          -7,
          -7,
          -3.147770834093524,
          -2.7950685767307784,
          -3.730822635731648,
          -7,
          -7,
          -3.469822015978163,
          -7,
          -3.131297796597623,
          -7,
          -7,
          -3.204150140947795,
          -3.132579847659737,
          -7,
          -7,
          -7,
          -7,
          -3.4292676664331685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.241795431295199,
          -4.390210679109047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8808135922807914,
          -2.7730165474997395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.336059277866349,
          -7,
          -3.111262513659065,
          -4.30612467073653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.041037207867029,
          -7,
          -3.6860102913152857,
          -7,
          -7,
          -3.895919545310016,
          -7,
          -7,
          -7,
          -7,
          -3.845098040014257,
          -7,
          -7,
          -7,
          -4.545517407601492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.780574677287544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9380691862233856,
          -7,
          -3.9860547807696953,
          -7,
          -7,
          -4.312617738422503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.214578953570499,
          -7,
          -3.9652957958116564,
          -7,
          -3.0248764311607497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.361954365353462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.141041940939049,
          -4.022943189333239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.321045804996277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6817687053632726,
          -7,
          -7,
          -7,
          -3.2702128548962426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3930484664167784,
          -7,
          -7,
          -7,
          -7,
          -4.0913823431266625,
          -7,
          -7,
          -4.292322539914916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096132734983064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1172712956557644,
          -4.013589510501978,
          -7,
          -4.428283507479297,
          -7,
          -7,
          -4.542705118606488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5070053327802775,
          -7,
          -7,
          -4.598287002254073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292577241855888,
          -4.580856577457996,
          -7,
          -7,
          -4.0088768399046995,
          -7,
          -4.998939026549519,
          -7,
          -7,
          -4.676117215671485,
          -7,
          -4.042260406689452,
          -7,
          -7,
          -5.0874122525691,
          -7,
          -4.5354460332310165,
          -4.113976758289846,
          -7,
          -4.660789612079682,
          -4.1933472563864616,
          -7,
          -4.077222510411053,
          -7,
          -4.378634063849602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6624745037503095,
          -7,
          -7,
          -5.067100626711813,
          -7,
          -7,
          -7,
          -2.798650645445269,
          -3.3549748484830855,
          -7,
          -7,
          -7,
          -4.3619119001023545,
          -3.9047515997788804,
          -7,
          -3.839336611526406,
          -3.2364112877439664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.515679603561216,
          -3.56902823202862,
          -5.104597207395862,
          -7,
          -3.711638538232349,
          -7,
          -4.956821302879551,
          -7,
          -4.063345302141709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784695729544385,
          -7,
          -3.442819337136645,
          -3.8230175234460493,
          -7,
          -3.168371192294914,
          -7,
          -4.09977433523932,
          -4.656232400322034,
          -2.6334684555795866,
          -5.348078893239702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9957813970840017,
          -7,
          -3.8903371700735754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.488748078231586,
          -7,
          -7,
          -3.9501213475113732,
          -7,
          -7,
          -7,
          -7,
          -3.7800291273373383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.997779430865604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.745794763999385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.82020145948564,
          -7,
          -7,
          -7,
          -4.33219599532464,
          -3.6445370577784075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.532818053867167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188084373714938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.880127322216625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.874713688757779,
          -3.890756251918218,
          -3.2011525290622598,
          -3.0007593511047372,
          -7,
          -7,
          -2.7496590320949,
          -3.1599617587551454,
          -7,
          -7,
          -7,
          -3.8716313045375537,
          -7,
          -3.114429004559742,
          -3.8623103099542706,
          -7,
          -7,
          -3.424160601435651,
          -7,
          -7,
          -7,
          -3.951386094880293,
          -7,
          -7,
          -3.9045965441868544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.877544107715944,
          -3.6949998327470954,
          -7,
          -7,
          -7,
          -3.421687667043168,
          -7,
          -7,
          -3.954821183051793,
          -7,
          -3.749620385199933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3993770046747547,
          -7,
          -3.5704845630444004,
          -3.4173720348523213,
          -3.4095386431415404,
          -7,
          -7,
          -7,
          -3.9045532629767727,
          -7,
          -7,
          -3.8949249773595436,
          -3.7223459424755814,
          -3.5449481493514257,
          -7,
          -7,
          -7,
          -7,
          -2.5813166329516766,
          -7,
          -7,
          -3.377533904520968,
          -3.9710097463947083,
          -7,
          -7,
          -7,
          -7,
          -4.157819284417298,
          -7,
          -7,
          -7,
          -3.6827315646221837,
          -7,
          -7,
          -3.1696744340588068,
          -7,
          -7,
          -2.719600072489159,
          -3.058510378051891,
          -3.0337754719836787,
          -7,
          -7,
          -3.199618067707931,
          -3.936714758211204,
          -3.967032882158702,
          -3.4268364538035083,
          -7,
          -2.752069221992837,
          -7,
          -7,
          -7,
          -4.211307466668955,
          -7,
          -3.9660478210764536,
          -7,
          -3.5691397254724593,
          -3.4461274752593476,
          -7,
          -3.878694100396108,
          -7,
          -3.442061474322838,
          -3.41355121317555,
          -7,
          -7,
          -3.9552065375419416,
          -7,
          -3.4448641829020725,
          -7,
          -3.4923811883797753,
          -2.9517478499695864,
          -7,
          -7,
          -7,
          -3.744251796297106,
          -7,
          -7,
          -7,
          -7,
          -3.8950355974523228,
          -3.6497728273006773,
          -7,
          -7,
          -7,
          -3.5254191616179096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6421181336945816,
          -4.087000120795991,
          -2.743468503554877,
          -3.222233240193911,
          -3.895919545310016,
          -7,
          -7,
          -7,
          -7,
          -4.260953398104103,
          -7,
          -7,
          -7,
          -7,
          -3.1569249469842195,
          -7,
          -7,
          -7,
          -3.620656479819621,
          -7,
          -3.9226735678585545,
          -7,
          -7,
          -3.1197741686235183,
          -7,
          -3.3128420159505105,
          -3.932220013877119,
          -3.5873180145140675,
          -3.462447414804264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7147152555189096,
          -7,
          -3.1283633632585737,
          -3.5088812018638897,
          -7,
          -3.763951826033324,
          -3.552262522965547,
          -7,
          -7,
          -3.6270584640009895,
          -7,
          -3.914290255665949,
          -7,
          -7,
          -7,
          -2.6780629049743454,
          -7,
          -3.243781916093795,
          -7,
          -3.097589246848332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092860943338818,
          -7,
          -7,
          -7,
          -3.993715382561762,
          -4.145631415290328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008515007631455,
          -3.5394740847701684,
          -7,
          -7,
          -3.889525796671191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.27629172965034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6334011178816605,
          -3.64969175532189,
          -7,
          -7,
          -7,
          -4.439616866317564,
          -7,
          -3.1356414163866684,
          -7,
          -3.5890704473162565,
          -7,
          -7,
          -7,
          -3.2213881533063446,
          -2.7477648067532146,
          -3.902601130666531,
          -7,
          -4.1386184338994925,
          -7,
          -7,
          -7,
          -3.9182925127553556,
          -7,
          -3.200759326791928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7083359026822635,
          -7,
          -7,
          -7,
          -3.584911607443614,
          -3.124148391564148,
          -3.395209866510588,
          -3.2130859041084054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.112437417321844,
          -7,
          -7,
          -7,
          -3.0854568236758046,
          -4.154271775993095,
          -7,
          -7,
          -7,
          -2.8181216671068587,
          -3.739809599021359,
          -7,
          -3.893040111957118,
          -7,
          -7,
          -3.9514832307522934,
          -7,
          -2.624429439172757,
          -7,
          -7,
          -7,
          -3.5948895496460347,
          -3.5952757118020995,
          -3.3803921600570273,
          -3.419530098342456,
          -7,
          -7,
          -2.5567109823851264,
          -7,
          -7,
          -7,
          -7,
          -4.012162067970823,
          -4.11143055176598,
          -7,
          -7,
          -7,
          -7,
          -3.970114322285097,
          -3.8783494222177755,
          -7,
          -7,
          -7,
          -7,
          -3.6844413876256064,
          -7,
          -7,
          -3.710390065701603,
          -3.078344753114982,
          -3.9290270323599734,
          -3.264660441423504,
          -4.465650484743692,
          -3.529059442918842,
          -3.8568496787251725,
          -3.262394129341876,
          -3.537320524271039,
          -3.5134040668646405,
          -7,
          -3.2544352796249596,
          -3.99392829901039,
          -4.248410612082095,
          -3.8076509790725868,
          -4.1487876840563125,
          -2.999130541287371,
          -3.3881252141814175,
          -4.245092976101281,
          -3.834944974149341,
          -4.024690862355431,
          -3.607339126707328,
          -3.232165670553036,
          -3.2887919939714223,
          -3.8142031870727573,
          -4.450526229129723,
          -4.417894986250287,
          -3.743568555128344,
          -7,
          -3.478809087081396,
          -3.724808168565719,
          -4.133403170134419,
          -3.6670947846969737,
          -4.350616236975831,
          -7,
          -3.8002128574963217,
          -3.6800634274819486,
          -3.6431441191148397,
          -3.867663867912998,
          -3.7264011621029223,
          -7,
          -3.4503949834196197,
          -3.585485404630345,
          -3.6847556221086237,
          -3.5780276351697315,
          -4.449370390682258,
          -7,
          -3.1246501914547884,
          -3.7445276734725663,
          -7,
          -4.060118394661378,
          -3.5623104914749812,
          -3.290837234488692,
          -7,
          -3.4923539602839244,
          -3.6518269976896685,
          -7,
          -4.115677065115837,
          -3.5801120504438124,
          -7,
          -7,
          -3.4523625686594706,
          -3.2717254694902382,
          -3.0670446953285406,
          -7,
          -7,
          -7,
          -3.8109892965113796,
          -2.993741367349005,
          -3.617343218781815,
          -7,
          -3.76585474746579,
          -7,
          -4.444279064276847,
          -3.8309862157427426,
          -3.7498007079602984,
          -3.1895304166110634,
          -3.5872244024425086,
          -3.6437815628948647,
          -4.031059878820723,
          -3.3188977146274867,
          -7,
          -3.470695247147661,
          -4.142474385719971,
          -7,
          -4.214501346733814,
          -7,
          -4.030923399627219,
          -3.8304145127503877,
          -4.123410591862496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.144035046172394,
          -3.959232249050996,
          -3.1396823505057303,
          -3.874365835730049,
          -7,
          -3.614565797008349,
          -7,
          -3.9464031338990546,
          -7,
          -3.491571785500985,
          -7,
          -3.611498388544544,
          -4.03909671044145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5303277897780863,
          -7,
          -3.1534083167071616,
          -7,
          -7,
          -2.392715859055194,
          -4.003745460946834,
          -3.719630829001067,
          -7,
          -7,
          -2.9334310430151227,
          -7,
          -3.142880875861225,
          -7,
          -3.4495298223692266,
          -3.245107089975072,
          -7,
          -7,
          -3.965624967109243,
          -3.9249508889156104,
          -3.764475027434409,
          -7,
          -7,
          -3.433503150169539,
          -7,
          -3.3372595397502756,
          -3.1031719432008473,
          -3.874713688757779,
          -7,
          -3.41073506681745,
          -3.100801179244967,
          -7,
          -3.2388820889151364,
          -7,
          -7,
          -4.1673468775856355,
          -3.6509870943834453,
          -3.314732439818183,
          -3.208710019906401,
          -3.730338067221792,
          -7,
          -7,
          -3.841265592625782,
          -7,
          -4.105680462945809,
          -7,
          -3.953131225183445,
          -3.5173608721141245,
          -3.9198100201701958,
          -7,
          -3.6380230970734444,
          -3.1628893293628004,
          -4.040285798932492,
          -7,
          -4.431958501037113,
          -7,
          -7,
          -7,
          -3.643329279843248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.172033422048232,
          -7,
          -3.4244460353087876,
          -7,
          -3.7059919299146995,
          -7,
          -4.328827939014281,
          -3.3443302124067187,
          -3.579859781948451,
          -3.0279382361570777,
          -7,
          -7,
          -7,
          -3.049605612594973,
          -4.059108817913594,
          -3.7661524898594236,
          -7,
          -3.2359827034818394,
          -3.2092468487533736,
          -3.7223047868743278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8182588934606265,
          -7,
          -3.9458623244896174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9279346817411795,
          -3.5150344563229545,
          -7,
          -4.054498146636677,
          -3.8938726787950815,
          -7,
          -3.311160272879129,
          -7,
          -7,
          -3.3044224938606197,
          -7,
          -7,
          -4.007875743767586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.902989544778925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8615344108590377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.839114761318349,
          -2.3631417096979495,
          -7,
          -7,
          -3.26528962586083,
          -3.0576661039098294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1405677465691895,
          -7,
          -2.507855871695831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305098674154982,
          -7,
          -3.891258616904139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4467235195682013,
          -7,
          -7,
          -7,
          -7,
          -3.7131544018372984,
          -7,
          -7,
          -7,
          -4.823607887833184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2005769267548483,
          -7,
          -4.5308039590378035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.962274604623315,
          -7,
          -7,
          -7,
          -3.605197267388378,
          -4.373794416714731,
          -7,
          -7,
          -7,
          -7,
          -3.6814764165313454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7526245626267665,
          -7,
          -7,
          -7,
          -4.515754661190856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.146902869928199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.509202522331103,
          -7,
          -7,
          -7,
          -4.237757314269729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.753006681086235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.210853365314893,
          -7,
          -7,
          -7,
          -7,
          -3.2843805959453753,
          -7,
          -3.654850090561394,
          -3.5569052690554477,
          -2.621868384681515,
          -2.5451008497880436,
          -3.1389339402569236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.723044991643445,
          -3.2979792441593623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8984509191983747,
          -3.5531545481696254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.64033234004778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.597146487833695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5309293146403204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.980821166644336,
          -7,
          -3.6475296664449806,
          -3.3933119147002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.418135498425232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.465489074876098,
          -7,
          -7,
          -7,
          -5.131114795848502,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9552065375419416,
          -7,
          -7,
          -3.4690852991231202,
          -7,
          -7,
          -7,
          -7,
          -5.828247959133625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2885845449672853,
          -2.433769833924866,
          -7,
          -7,
          -7,
          -3.2657609167176105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.081635301502951,
          -5.574130275583126,
          -7,
          -7,
          -4.239412105741857,
          -2.800946076169,
          -7,
          -7,
          -2.5888317255942073,
          -2.2431758980706937,
          -2.986473147467338,
          -2.9999131324165713,
          -2.055712716407559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9546697001875133,
          -7,
          -2.303196057420489,
          -7,
          -4.769982552929515,
          -7,
          -7,
          -7,
          -4.067163882602843,
          -7,
          -4.28657995889235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.578237961160632,
          -7,
          -4.671163582606086,
          -4.921197293721232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.463011566814714,
          -3.8705209500127644,
          -7,
          -7,
          -7,
          -5.234808234198132,
          -7,
          -7,
          -7,
          -4.660414829692979,
          -4.678117587090789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.990436537856399,
          -5.186545283736885,
          -7,
          -7,
          -3.18620267890855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.479798374009022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.942271031757259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.79256327196696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505963518018126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.880927865267085,
          -7,
          -4.346781188909013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7993405494535817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.627775375229303,
          -7,
          -7,
          -7,
          -7,
          -3.7134065321676912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.525912528568072,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.390352125833223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2377949932739227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727424670452742,
          -7,
          -7,
          -7,
          -7,
          -3.5117229764819804,
          -7,
          -2.965201701025912,
          -7,
          -7,
          -7,
          -7,
          -3.583368829892705,
          -7,
          -3.3609718837259357,
          -4.094671400641696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.263559143134499,
          -7,
          -7,
          -7,
          -7,
          -2.6890867704039234,
          -7,
          -3.176958980586908,
          -7,
          -3.3494717992143856,
          -7,
          -3.6225248624035684,
          -7,
          -7,
          -7,
          -2.792391689498254,
          -3.6370892735303304,
          -7,
          -7,
          -3.497758718287268,
          -7,
          -3.2329961103921536,
          -3.8289443929399845,
          -7,
          -3.299670700401256,
          -3.7907776013376937,
          -7,
          -7,
          -7,
          -3.0187004986662433,
          -7,
          -7,
          -2.41077723337721,
          -7,
          -7,
          -3.449756012062128,
          -7,
          -2.6720978579357175,
          -3.3944516808262164,
          -7,
          -2.8832557420069715,
          -3.3268476989159903,
          -7,
          -3.4222614508136027,
          -3.8029332792535846,
          -7,
          -7,
          -7,
          -7,
          -3.873843533223436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151058141571291,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6712037083191547,
          -7,
          -7,
          -7,
          -3.971461405024587,
          -7,
          -7,
          -7,
          -3.3245910857609267,
          -7,
          -1.105510184769974,
          -1.8075350280688534,
          -2.6229044753882,
          -7,
          -3.6057897198025644,
          -7,
          -7,
          -3.0242803760470798,
          -3.5390760987927767,
          -7,
          -7,
          -3.4728149362181027,
          -4.453081248423912,
          -7,
          -7,
          -7,
          -4.692719166818034,
          -7,
          -7,
          -3.300378064870703,
          -7,
          -2.9777236052888476,
          -3.997648454896206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.027308827035546,
          -3.7255032688593155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2767899450894244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9391322086815177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.911512714632127,
          -7,
          -2.9542425094393248,
          -3.57362573693412,
          -7,
          -7,
          -3.369136089849646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.443262987458695,
          -7,
          -4.279393142747864,
          -7,
          -3.7166709755601355,
          -3.681116090173446,
          -7,
          -2.973589623427257,
          -3.5798978696031036,
          -7,
          -3.3637999454791094,
          -7,
          -3.2564772062416765,
          -2.81424759573192,
          -3.197831693328903,
          -3.148294097434746,
          -7,
          -3.660770643527697,
          -7,
          -3.64777405026883,
          -2.807083812982132,
          -4.04008784346988,
          -7,
          -3.595606434865603,
          -7,
          -2.9751253198007745,
          -2.9375178920173464,
          -3.1997551772534747,
          -2.533390708017551,
          -7,
          -3.4376713047707286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -7,
          -3.9090744014009045,
          -3.576341350205793,
          -7,
          -5.411900728116946,
          -7,
          -7,
          -2.929929560084588,
          -7,
          -7,
          -7,
          -3.017450729510536,
          -3.2161659022859928,
          -2.730513112669299,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.942345430798429,
          -7,
          -7,
          -7,
          -2.7895807121644256,
          -2.5136614370834756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.511214701136388,
          -7,
          -7,
          -2.558708570533166,
          -4.01311120759659,
          -7,
          -4.056256735850139,
          -7,
          -4.409552737891461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9581336756762355,
          -3.7113853790984517,
          -7,
          -3.182129214052998,
          -7,
          -7,
          -3.1405080430381793,
          -7,
          -3.4204508591060683,
          -7,
          -7,
          -7,
          -7,
          -2.003245054813147,
          -7,
          -7,
          -3.4483971034577676,
          -7,
          -2.823800153749878,
          -2.887898488096872,
          -4.177449920971824,
          -3.5885518064856425,
          -7,
          -3.807467375684278,
          -7,
          -3.02201573981772,
          -3.5809249756756194,
          -7,
          -7,
          -7,
          -3.4807253789884878,
          -3.2730012720637376,
          -7,
          -7,
          -5.527343068717591,
          -3.866995813110648,
          -7,
          -7,
          -7,
          -3.7506626461340558,
          -7,
          -7,
          -2.4819201376014313,
          -7,
          -7,
          -3.0081741840064264,
          -7,
          -3.3927848582254354,
          -2.683947130751512,
          -3.0835026198302673,
          -7,
          -7,
          -3.856589942245573,
          -7,
          -4.833870622926967,
          -7,
          -7,
          -4.240228817121457,
          -3.469895618975018,
          -7,
          -7,
          -7,
          -3.529045170765769,
          -3.478566495593843,
          -3.113692725494897,
          -3.3106933123433606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8549130223078554,
          -3.5990775713183476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.57890268604763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0461047872460387,
          -7,
          -5.065826106006714,
          -3.8818409683249273,
          -7,
          -7,
          -7,
          -4.633228517359263,
          -3.5121505369220305,
          -3.181986424480151,
          -7,
          -4.661344076016006,
          -4.378851946448881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.991305836741952,
          -5.01072810239044,
          -5.229245708098079,
          -7,
          -3.3805730030668872,
          -7,
          -7,
          -7,
          -5.104222425149045,
          -4.074157919697316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.596816935915591,
          -7,
          -2.9965116721541785,
          -4.642202281545473,
          -7,
          -7,
          -5.0463780880482725,
          -7,
          -7,
          -4.6072405038317426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.181757863468677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495690002957289,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.772028165324855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.09428591129531,
          -7,
          -7,
          -7,
          -3.632001499438424,
          -7,
          -3.452706226511029,
          -7,
          -7,
          -4.248953615495708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.09377178149873,
          -7,
          -3.2550311633455515,
          -7,
          -7,
          -7,
          -7,
          -3.5052856741441323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.201020416357374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4959603948817053,
          -7,
          -7,
          -3.787956123283932,
          -3.9307249527694874,
          -3.6094876898532853,
          -7,
          -3.826722520168992,
          -7,
          -3.72956972630197,
          -7,
          -3.7281913985899466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0512683188703855,
          -7,
          -7,
          -3.943383207499316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092738184494764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.895215295030033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1451964061141817,
          -7,
          -7,
          -7,
          -7,
          -3.3794868137172736,
          -7,
          -7,
          -3.2000292665537704,
          -3.4280132393845557,
          -7,
          -7,
          -3.1122697684172707,
          -4.213862930386819,
          -3.928447063209182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.095924494839391,
          -3.621954820044902,
          -7,
          -2.6088550445640686,
          -3.3792032148334132,
          -7,
          -7,
          -7,
          -2.534026106056135,
          -7,
          -7,
          -3.8697420092806674,
          -3.2641091563058082,
          -7,
          -7,
          -2.397070549959409,
          -3.1256438923573917,
          -3.130976691605617,
          -2.5684364144168854,
          -7,
          -2.5643701225153204,
          -7,
          -3.160602945517803,
          -7,
          -7,
          -7,
          -7,
          -3.1005428500124648,
          -7,
          -2.3550682063488506,
          -7,
          -2.8221680793680175,
          -2.478566495593843,
          -3.1711092027326977,
          -2.7584071921878865,
          -3.3368098301850244,
          -2.9923009843277657,
          -7,
          -3.2340108175871793,
          -2.9323469078099147,
          -7,
          -3.2638726768652235,
          -7,
          -7,
          -3.220108088040055,
          -7,
          -3.012897455546667,
          -2.8003733548913496,
          -7,
          -3.2027606873931997,
          -7,
          -3.7834747875822465,
          -2.7910763089412547,
          -7,
          -7,
          -4.013572858585068,
          -3.080987046910887,
          -1.9009736852940384,
          -7,
          -7,
          -3.612200875449579,
          -7,
          -3.1562461903973444,
          -7,
          -2.690449239162411,
          -7,
          -3.100140698866152,
          -3.318585010078825,
          -2.067832201725068,
          -7,
          -3.27741564211462,
          -7,
          -4.046612209068446,
          -3.0729847446279304,
          -7,
          -7,
          -2.484121813321787,
          -7,
          -7,
          -7,
          -3.470675044798936,
          -7,
          -3.04766419460156,
          -3.041392685158225,
          -2.2913862643725498,
          -2.360593413565249,
          -7,
          -7,
          -3.3922571613416745,
          -3.1855067412708022,
          -2.0822328327331365,
          -2.0511525224473814,
          -0.5110851068304926,
          -3.325310371711061,
          -3.0535498669727867,
          -2.777909908625889,
          -7,
          -2.973897197435795,
          -2.664433029445815,
          -3.3939260065858368,
          -2.4121003861250876,
          -2.290344610356955,
          -3.416799311183304,
          -7,
          -7,
          -3.212453961040276,
          -4.09373240974699,
          -3.2971036501492565,
          -3.237292337567459,
          -2.205241708157455,
          -7,
          -7,
          -3.711807229041191,
          -7,
          -7,
          -7,
          -3.778060762940478,
          -7,
          -7,
          -7,
          -2.486430478854434,
          -3.042181594515766,
          -4.055416559840489,
          -3.7801011914679115,
          -3.5719125414899997,
          -7,
          -7,
          -7,
          -7,
          -2.2767899450894244,
          -7,
          -3.7797407511767407,
          -3.566319621524811,
          -3.044539760392411,
          -3.1420764610732848,
          -7,
          -3.6468079319099638,
          -7,
          -7,
          -7,
          -3.3346547668832414,
          -7,
          -3.036628895362161,
          -7,
          -3.1987945001755986,
          -7,
          -7,
          -3.4368514568313087,
          -7,
          -7,
          -3.032621824494491,
          -2.8606374167737547,
          -7,
          -7,
          -2.760422483423212,
          -7,
          -7,
          -7,
          -2.2796766501460075,
          -7,
          -4.295347148333618,
          -7,
          -7,
          -2.3400879818480997,
          -7,
          -2.527871466363005,
          -2.0675015484085564,
          -2.4301557119700194,
          -2.0254521662538254,
          -3.358886204405869,
          -7,
          -3.0034605321095067,
          -7,
          -3.0908750112031753,
          -2.5757649805367193,
          -7,
          -7,
          -7,
          -3.4216039268698313,
          -7,
          -7,
          -3.7971636301993072,
          -7,
          -2.6273658565927325,
          -3.1981069988734014,
          -7,
          -2.666829861704301,
          -7,
          -3.791901080009571,
          -7,
          -7,
          -7,
          -4.06781451116184,
          -3.4143604491198576,
          -7,
          -2.5607034958686796,
          -2.66838591669,
          -7,
          -3.1061908972634154,
          -2.391816923613249,
          -7,
          -2.720159303405957,
          -2.9905854869038913,
          -3.3502480183341627,
          -3.5502589360966827,
          -4.810429116115286,
          -7,
          -3.1583624920952498,
          -7,
          -2.6954816764901977,
          -3.0472748673841794,
          -7,
          -2.3639252106896413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1283992687178066,
          -7,
          -7,
          -2.4247001891741125,
          -3.690422523774704,
          -7,
          -7,
          -7,
          -7,
          -1.9650971273480884,
          -1.800717078282385,
          -7,
          -3.230704313612569,
          -7,
          -2.6232492903979003,
          -7,
          -1.94485265185328,
          -2.7846172926328756,
          -7,
          -7,
          -4.3289297689479,
          -7,
          -3.9402549330205634,
          -2.9344984512435675,
          -3.938344571118097,
          -7,
          -7,
          -7,
          -3.542908378823037,
          -3.7895102040902544,
          -3.2123208031419757,
          -2.4862439983320517,
          -3.879038505237237,
          -3.0474695746198566,
          -2.9222062774390163,
          -3.087781417809542,
          -2.620344299754493,
          -2.1095910447671455,
          -2.619484645699233,
          -7,
          -2.8369567370595505,
          -7,
          -7,
          -2.220854940299613,
          -7,
          -7,
          -2.728974100564831,
          -7,
          -3.529430354366986,
          -2.3086614084208055,
          -3.7188879682162526,
          -3.9278321328665817,
          -7,
          -3.823235062261409,
          -7,
          -2.3399480616943507,
          -3.655330558009341,
          -7,
          -2.808840907011731,
          -3.28454352295875,
          -3.830203598925704,
          -7,
          -7,
          -3.470704429722788,
          -4.32364327898043,
          -2.7294887691795613,
          -3.040602340114073,
          -7,
          -7,
          -3.0235268086522495,
          -3.379758615842701,
          -3.1622656142980214,
          -3.2111205412580492,
          -3.5085297189712863,
          -7,
          -7,
          -7,
          -3.752432609261474,
          -3.225309281725863,
          -2.9827233876685453,
          -3.6823256186678073,
          -2.7471527595745955,
          -4.161960634305219,
          -3.2521592696791632,
          -4.4777190114253855,
          -7,
          -2.629728066875223,
          -4.118227513429574,
          -2.705007959333336,
          -7,
          -7,
          -7,
          -3.1344958558346736,
          -3.8282731120520697,
          -2.3208136900393996,
          -2.9626849566736677,
          -7,
          -7,
          -2.8945929479229555,
          -7,
          -2.1665108452278266,
          -2.757649040441254,
          -2.7490488686793366,
          -2.676388734581175,
          -2.6973500751374315,
          -7,
          -7,
          -4.301268791966063,
          -7,
          -7,
          -7,
          -7,
          -4.083735471103647,
          -7,
          -3.9955803559735865,
          -3.98083251407348,
          -7,
          -7,
          -7,
          -4.724161135149409,
          -4.699508195883737,
          -3.986402202925147,
          -7,
          -4.202333898012999,
          -4.08073983803469,
          -7,
          -7,
          -7,
          -5.389102264976264,
          -7,
          -7,
          -7,
          -7,
          -4.664284616658668,
          -4.203522416822585,
          -7,
          -4.477887831360864,
          -4.177276711258586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9216968776220655,
          -3.2610248339923973,
          -3.7729539810278334,
          -3.26867453046004,
          -1.9929312832109043,
          -7,
          -4.341474094026657,
          -7,
          -3.7184236754355378,
          -4.020029633542699,
          -7,
          -4.451279718904047,
          -4.06258668435946,
          -4.209157423347539,
          -7,
          -7,
          -3.8615344108590377,
          -7,
          -3.836387419326411,
          -4.384640100826291,
          -7,
          -7,
          -3.4143399064296043,
          -3.9702552789348484,
          -5.10491283211916,
          -7,
          -2.9628426812012423,
          -7,
          -4.004273593983716,
          -7,
          -4.929342278748438,
          -3.7983743766815614,
          -4.234137489450963,
          -7,
          -7,
          -7,
          -4.1852233285961535,
          -7,
          -3.4523743044357436,
          -3.244091485200853,
          -4.123546765923394,
          -3.349818497045375,
          -3.2314695904306814,
          -3.3901055464932925,
          -4.658001851618553,
          -3.026328938722349,
          -4.503677864643271,
          -7,
          -7,
          -3.8365561838816618,
          -4.309289410655256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.097459771245042,
          -3.1630122097748297,
          -3.5994190676181264,
          -7,
          -7,
          -3.178228510935771,
          -7,
          -3.422917980767662,
          -7,
          -3.7938602013426697,
          -7,
          -3.801520329527164,
          -3.6767850304192056,
          -7,
          -7,
          -4.146686055647526,
          -7,
          -7,
          -7,
          -7,
          -3.3439990690571615,
          -7,
          -3.2314695904306814,
          -3.0870712059065353,
          -2.9978230807457256,
          -7,
          -4.038023740045158,
          -7,
          -7,
          -4.60339339779644,
          -3.1985979337016874,
          -4.792391689498254,
          -7,
          -7,
          -3.064036594084469,
          -7,
          -3.2487087356009177,
          -7,
          -7,
          -3.4876567673027137,
          -7,
          -7,
          -7,
          -3.346744054604849,
          -7,
          -3.1863912156954934,
          -3.0731682622651015,
          -3.2907022432878543,
          -7,
          -2.922033079238554,
          -3.411325026421723,
          -7,
          -7,
          -3.0115704435972783,
          -2.9897834198968223,
          -7,
          -3.688034006672403,
          -7,
          -7,
          -7,
          -7,
          -3.375097154242902,
          -3.2453892711712102,
          -3.658964842664435,
          -2.5047620421780743,
          -7,
          -7,
          -7,
          -3.8171685723810556,
          -7,
          -3.4449811120879446,
          -3.2414219517119953,
          -7,
          -7,
          -3.2331865486683484,
          -3.274800178065412,
          -3.6795187436957892,
          -2.9909305367345755,
          -4.017951068830742,
          -7,
          -3.1812002415449867,
          -7,
          -7,
          -3.718169405391307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.251638220448212,
          -7,
          -3.2582969314691157,
          -3.4394905903896835,
          -7,
          -3.650974968502697,
          -7,
          -3.0567778460769324,
          -7,
          -3.0818871394235496,
          -7,
          -3.2247056756774772,
          -3.721563318357481,
          -3.739097446117475,
          -7,
          -3.3848907965305544,
          -7,
          -3.6277924301285536,
          -7,
          -7,
          -7,
          -7,
          -3.085290578230065,
          -7,
          -7,
          -3.8433573784379558,
          -7,
          -3.4211101297934343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1869563354654122,
          -7,
          -7,
          -3.8279827974620537,
          -7,
          -7,
          -7,
          -7,
          -3.130226522048751,
          -7,
          -7,
          -3.8080082999104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.056714329516394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3291766074285367,
          -3.500840004617788,
          -7,
          -7,
          -7,
          -3.087652374729733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.034454650590254,
          -3.787011542449596,
          -7,
          -3.3393662493327336,
          -3.1521773211707567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4580710082030826,
          -3.6941972918756796,
          -7,
          -4.049876719873882,
          -7,
          -4.060886623004662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8512670869507213,
          -7,
          -7,
          -7,
          -3.122616300689269,
          -4.177421057483169,
          -7,
          -7,
          -7,
          -7,
          -4.094121595840561,
          -3.271552391372932,
          -7,
          -7,
          -3.382145741488806,
          -4.061226225119115,
          -7,
          -4.127978988916909,
          -7,
          -7,
          -7,
          -4.050263722645796,
          -7,
          -7,
          -3.8116420214531512,
          -7,
          -7,
          -4.120244795546365,
          -7,
          -3.904985881099363,
          -4.174844493655455,
          -7,
          -4.125611371897464,
          -4.044795967995919,
          -7,
          -7,
          -7,
          -4.055913223916149,
          -4.2598088229546285,
          -4.104691918900206,
          -7,
          -7,
          -4.128463891064761,
          -7,
          -7,
          -7,
          -7,
          -4.092018470752797,
          -3.613178490533262,
          -4.149865453026261,
          -3.8477165775931805,
          -7,
          -7,
          -4.124439010556526,
          -7,
          -7,
          -3.8603080541945616,
          -7,
          -3.7920237843502926,
          -7,
          -7,
          -7,
          -4.302633919813779,
          -7,
          -7,
          -7,
          -7,
          -3.8394277643497237,
          -7,
          -7,
          -7,
          -3.6059870244750725,
          -3.9410266803683305,
          -7,
          -7,
          -7,
          -3.850278552518037,
          -7,
          -7,
          -3.5044028924681587,
          -3.682886110945385,
          -4.063858548853072,
          -7,
          -7,
          -3.8343133885293947,
          -7,
          -4.1288514233467835,
          -7,
          -7,
          -7,
          -4.008600171761918,
          -7,
          -7,
          -7,
          -3.4898179083014504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.329580915741898,
          -4.204798038190855,
          -2.948639974821173,
          -3.4910253356282994,
          -7,
          -4.260953398104103,
          -7,
          -7,
          -3.7797407511767407,
          -7,
          -3.9386698010226793,
          -7,
          -7,
          -7,
          -3.356475224645445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.260190683269962,
          -7,
          -7,
          -3.113629861278211,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.132922612520788,
          -7,
          -3.3938091036290334,
          -7,
          -4.201888500365973,
          -2.8159078076841455,
          -3.372322729498556,
          -3.2846844681720415,
          -3.6844563563292083,
          -3.6078837443569896,
          -3.3361594264847807,
          -7,
          -7,
          -4.079759919660093,
          -7,
          -7,
          -7,
          -4.184379080658596,
          -7,
          -7,
          -3.8005796215691303,
          -3.668572269184558,
          -7,
          -3.750720476243363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.209273672784876,
          -4.110320296840297,
          -7,
          -7,
          -3.045609805328916,
          -3.551035024150877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4962606330422306,
          -7,
          -3.0407281730739686,
          -4.230437383990212,
          -7,
          -7,
          -7,
          -4.078746734273607,
          -7,
          -7,
          -3.805908455074197,
          -4.091842749738098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.797959643737196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9218684769454404,
          -3.280932298017133,
          -7,
          -7,
          -7,
          -4.01871436480765,
          -4.1041455505540085,
          -3.697490887171057,
          -7,
          -3.7135255428507334,
          -7,
          -7,
          -4.056371179475529,
          -7,
          -7,
          -3.995393852839795,
          -7,
          -4.244697601296708,
          -4.087461966171819,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7906369619317033,
          -7,
          -7,
          -3.8046845149069406,
          -7,
          -7,
          -4.088384186097703,
          -3.32554243338228,
          -3.2245330626060857,
          -7,
          -3.397201079785138,
          -7,
          -7,
          -3.8608767964032977,
          -4.098436045340363,
          -3.5157634906474584,
          -4.141481129270804,
          -7,
          -7,
          -7,
          -3.635148513697608,
          -3.449312025702321,
          -7,
          -7,
          -7,
          -7,
          -3.6110857334148725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1945975852425095,
          -7,
          -3.4740705032150436,
          -7,
          -7,
          -4.013842737528274,
          -3.8455445133344206,
          -3.4386348677898724,
          -7,
          -7,
          -3.9146339999844666,
          -7,
          -7,
          -7,
          -7,
          -3.671697259882356,
          -3.922465945298413,
          -7,
          -7,
          -7,
          -7,
          -4.118661462854496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151277893904123,
          -7,
          -7,
          -4.097048965011131,
          -3.4632831558237545,
          -4.466689715873475,
          -7,
          -3.060970500071584,
          -3.3301980946221676,
          -7,
          -3.3729032398776235,
          -2.8831034194905643,
          -4.303671144664021,
          -4.164531296305431,
          -3.2325584913806904,
          -2.917381115415925,
          -2.995690520245701,
          -3.169077441109013,
          -3.4254119356933157,
          -3.284408172506199,
          -3.4427840098483937,
          -3.4268364538035083,
          -3.1313396623596357,
          -3.555880064636805,
          -2.738377285252023,
          -3.5655822041542033,
          -3.3710094985094377,
          -3.1375961048304024,
          -2.7480927765437277,
          -3.448103143768015,
          -3.41427122809658,
          -4.1091734214254725,
          -3.0254051779754487,
          -3.6202922479198407,
          -3.056576055470881,
          -2.8369842214428083,
          -3.377008051526662,
          -4.099335277685958,
          -3.3151876434820333,
          -2.957463615729931,
          -3.0339372775416797,
          -3.5104947417324657,
          -3.9357339265238256,
          -7,
          -3.6128973334826258,
          -3.7059594516948704,
          -3.4847268042986617,
          -7,
          -4.5044708624944185,
          -7,
          -3.6593051923304962,
          -7,
          -4.138397442990546,
          -2.9096584343751273,
          -3.3867579277666837,
          -2.598127683341974,
          -7,
          -3.181351871191431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073021454359739,
          -4.5592041671686045,
          -3.88983032468367,
          -3.3170641442873174,
          -7,
          -7,
          -7,
          -3.2874658053432286,
          -7,
          -3.8789958794490644,
          -3.575226344505001,
          -4.132595849372379,
          -7,
          -4.198931869932209,
          -7,
          -3.648658790620699,
          -3.688568121297955,
          -3.3172112567454075,
          -7,
          -3.697607078592231,
          -4.139343756152375,
          -7,
          -3.2145833698026913,
          -3.158620923808858,
          -7,
          -4.367791860564098,
          -4.059260404121731,
          -3.8616240084555944,
          -4.232029937620133,
          -3.0505086461516764,
          -7,
          -7,
          -7,
          -7,
          -4.198712057460401,
          -3.28029646656266,
          -7,
          -3.811256540556303,
          -7,
          -7,
          -3.8146337595794417,
          -7,
          -7,
          -7,
          -3.9089405210453623,
          -4.0484029561527395,
          -3.2737845225610633,
          -7,
          -7,
          -7,
          -3.6813859780807774,
          -7,
          -3.706148588963142,
          -7,
          -4.0626195838543415,
          -4.220787776165875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.718231727911598,
          -7,
          -7,
          -3.8548176958191123,
          -3.260493610483121,
          -2.7694983905214636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.851930678640268,
          -7,
          -7,
          -7,
          -7,
          -3.489367774704734,
          -7,
          -3.791164125033335,
          -7,
          -7,
          -4.097222592519901,
          -3.8306528137974243,
          -3.574543846224296,
          -7,
          -7,
          -7,
          -3.801232153830292,
          -3.789280973760941,
          -7,
          -7,
          -3.0112884341835358,
          -7,
          -3.3179906233268124,
          -7,
          -7,
          -4.088065177690204,
          -7,
          -3.645422269349092,
          -7,
          -3.61689542640076,
          -7,
          -4.106666761969916,
          -7,
          -4.083538451230139,
          -7,
          -4.226522575863549,
          -3.5507825912650164,
          -7,
          -7,
          -4.011993114659257,
          -7,
          -4.206150981596259,
          -3.779704690689162,
          -4.029505525426577,
          -4.182528775278964,
          -4.083789188287978,
          -7,
          -7,
          -7,
          -3.8263599174077894,
          -7,
          -4.0712558776812955,
          -3.6520851030278667,
          -3.156148415962715,
          -4.105476121121821,
          -3.9229848157088827,
          -3.546950572002201,
          -3.483016420144132,
          -7,
          -7,
          -4.093946723890583,
          -7,
          -3.876015661798158,
          -4.18369680863468,
          -3.3443922736851106,
          -7,
          -7,
          -7,
          -3.850829959848531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.101575246255933,
          -7,
          -7,
          -7,
          -7,
          -3.7672300981107183,
          -7,
          -7,
          -7,
          -3.369976134872427,
          -7,
          -4.180240600955741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.545296805458288,
          -7,
          -4.066586796470695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1101181270103275,
          -7,
          -7,
          -4.088738365273999,
          -7,
          -7,
          -3.827304641089735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3619166186686433,
          -3.7433451092571,
          -3.747100931364986,
          -7,
          -7,
          -2.6622151268225136,
          -3.0047902055826565,
          -2.9591010440596532,
          -3.8424220033576497,
          -7,
          -7,
          -7,
          -2.544052337213367,
          -3.659440781870318,
          -7,
          -3.2478914706214947,
          -1.953528853758455,
          -3.076094046682475,
          -2.7482526493531543,
          -7,
          -2.9518769481062366,
          -2.912399211126715,
          -2.7179903781599086,
          -3.368128214530098,
          -2.5975123635772417,
          -7,
          -3.8165726960261033,
          -3.3569814009931314,
          -3.300432429830641,
          -3.2219355998280053,
          -7,
          -7,
          -3.440174146226027,
          -7,
          -2.946605952239178,
          -3.5191057562064487,
          -3.837335868015015,
          -2.3888436682532856,
          -7,
          -3.413467412985825,
          -7,
          -3.55303301620244,
          -3.6617180576946593,
          -2.7167186243047006,
          -3.8889653443003374,
          -2.684830322792156,
          -3.9430986230054854,
          -2.500467261899649,
          -2.7049008715552314,
          -3.834929096460576,
          -7,
          -3.096363699333073,
          -7,
          -7,
          -7,
          -7,
          -3.2415464805965484,
          -3.2075446093061983,
          -2.6691257494518283,
          -7,
          -7,
          -2.7244806771885997,
          -7,
          -4.056752440567439,
          -3.1664301138432824,
          -7,
          -3.9384196457931933,
          -3.2807186599586955,
          -7,
          -3.9168748785386835,
          -7,
          -7,
          -2.3869041288246544,
          -2.6027109449575576,
          -7,
          -7,
          -3.1641545025122504,
          -7,
          -2.399577585458088,
          -3.676098904916701,
          -2.2866248553317368,
          -7,
          -2.3620266625077564,
          -7,
          -2.3999930361074466,
          -7,
          -7,
          -3.334252642334231,
          -7,
          -3.9242792860618816,
          -2.711984727554708,
          -7,
          -2.980306438226822,
          -7,
          -7,
          -7,
          -3.48826861549546,
          -3.811373897053893,
          -2.6910814921229687,
          -3.2712024681107645,
          -2.374065962317671,
          -1.907250529717228,
          -7,
          -3.8256857080217586,
          -3.5619953005654894,
          -3.092662173531954,
          -2.789163252778458,
          -3.8527848686805477,
          -7,
          -3.9112108931375533,
          -3.6763277338813203,
          -3.1663032199104872,
          -3.552668216112193,
          -3.2782129939730074,
          -3.1441727623900975,
          -7,
          -3.508798965403905,
          -2.9963240043881028,
          -3.514153288634498,
          -3.164114820984341,
          -2.7113605516305643,
          -3.398981066658131,
          -7,
          -3.8441042306975133,
          -2.598706349320375,
          -2.346548558548474,
          -7,
          -7,
          -3.5639110139135437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8059972395494706,
          -2.731204909335425,
          -3.1598463787180644,
          -3.7331169814420644,
          -3.845098040014257,
          -7,
          -3.509202522331103,
          -7,
          -3.566319621524811,
          -3.9386698010226793,
          -7,
          -7,
          -7,
          -3.846213363879387,
          -2.284065310827892,
          -7,
          -7,
          -3.5964871337365443,
          -3.5729296590793718,
          -3.3394514413064407,
          -3.175627764367181,
          -3.18537214331104,
          -3.9286518466536946,
          -2.9674439660442773,
          -3.592953571547866,
          -3.3527933176610354,
          -3.408353048109495,
          -7,
          -2.840054920774821,
          -3.8309092995464433,
          -3.330684277550962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.31178412442512,
          -7,
          -3.5537096901890077,
          -7,
          -2.9708116108725178,
          -2.646061127659469,
          -7,
          -3.3319938380422562,
          -3.5154764413823756,
          -3.8744818176994666,
          -3.444096866475288,
          -7,
          -3.894260664446988,
          -3.564547711755948,
          -3.881441721941393,
          -2.5033224409828163,
          -7,
          -4.0258381642297,
          -7,
          -2.6278338463814483,
          -3.5998830720736876,
          -3.404989127064217,
          -7,
          -2.670319108447816,
          -7,
          -4.068556895072363,
          -7,
          -3.4044916177586857,
          -7,
          -3.8364507137201547,
          -3.157645616457375,
          -3.613524702853652,
          -7,
          -2.776960479764161,
          -4.156882164439376,
          -3.8166720655453337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.150049945162385,
          -2.6277219816490986,
          -3.3360815351107824,
          -3.837039908150044,
          -7,
          -3.8300751664297503,
          -3.8379039445929424,
          -3.864036182725775,
          -7,
          -7,
          -3.608312042697327,
          -3.4079571294295614,
          -2.9285665319531153,
          -7,
          -7,
          -7,
          -3.52270499273475,
          -7,
          -3.5140826625258312,
          -7,
          -3.715854841502423,
          -7,
          -7,
          -7,
          -7,
          -3.8461514765288154,
          -3.54082981411108,
          -7,
          -3.1470576710283598,
          -3.431001701210211,
          -3.5938396610812715,
          -2.9333064749555056,
          -3.097187872570896,
          -3.8900855267163252,
          -7,
          -7,
          -2.509218919155219,
          -3.3025473724874854,
          -2.6780086500388114,
          -3.8478193472952396,
          -3.2960218189450234,
          -7,
          -7,
          -7,
          -2.942393921090259,
          -2.9451275607861436,
          -2.816414233820151,
          -2.161722544441352,
          -3.3317983298469445,
          -7,
          -3.8448498008066387,
          -7,
          -3.3928141559271974,
          -7,
          -3.2384977353073587,
          -7,
          -3.825945143203848,
          -3.8711641328029494,
          -7,
          -3.185712099870006,
          -7,
          -2.6088468223264116,
          -2.743750905479713,
          -2.962606072924127,
          -3.9398186628213794,
          -7,
          -2.6044574916627705,
          -2.93453001219572,
          -7,
          -3.4027255284410836,
          -3.814180981040187,
          -3.549248556854056,
          -2.2642830872778266,
          -3.5947239464097467,
          -3.3979110547414355,
          -2.6597736292477885,
          -4.082282589912437,
          -3.4207806195485655,
          -3.969509098596567,
          -2.3009240572607474,
          -3.5035969724042277,
          -2.4336555609385724,
          -7,
          -7,
          -7,
          -3.589651782365363,
          -1.8664636844249198,
          -7,
          -7,
          -3.0280117586406954,
          -3.5234212743726316,
          -3.0613447538027754,
          -2.9854264740830017,
          -2.8933257432834982,
          -3.8452221064290137,
          -3.5589484459780394,
          -2.890807803284164,
          -3.8452221064290137,
          -3.6127448297881615,
          -3.637146504140139,
          -3.620867921864364,
          -7,
          -2.8802060123609023,
          -3.2642234085593933,
          -2.1848388616878607,
          -7,
          -3.5538830266438746,
          -7,
          -2.7964355588101744,
          -2.757540624926174,
          -2.633740290110152,
          -3.003514384733037,
          -3.811373897053893,
          -7,
          -2.6246945312720813,
          -7,
          -3.5412046906832586,
          -7,
          -3.31722734917642,
          -7,
          -2.113325985068863,
          -7,
          -7,
          -3.4257834789437602,
          -4.211561022536963,
          -7,
          -7,
          -4.061158325937399,
          -3.038826142126565,
          -7,
          -3.146718971926629,
          -2.5143503569867414,
          -3.711582293398766,
          -7,
          -4.115693701882753,
          -4.765728145110631,
          -4.420953643599573,
          -3.4680222264940914,
          -4.436242180871562,
          -3.822127198821849,
          -3.5720482948792145,
          -7,
          -4.122019172080031,
          -7,
          -4.796366154977521,
          -3.5484420673337063,
          -2.737214434244013,
          -3.5725230978496376,
          -4.436941451239042,
          -7,
          -4.027308827035546,
          -7,
          -2.963588319885388,
          -7,
          -3.7741437419835786,
          -3.4771534234898636,
          -3.6343160172184157,
          -7,
          -3.5578679615680224,
          -3.6529550777975013,
          -3.690297361391357,
          -7,
          -2.94760940922976,
          -3.251638220448212,
          -3.6429835826026475,
          -3.745209688797541,
          -3.231660699116671,
          -3.0658285940945165,
          -3.3940375664247404,
          -2.633893505265488,
          -2.4626905274261266,
          -2.8549130223078554,
          -2.877707208602452,
          -3.2704847380490047,
          -1.3705642541562597,
          -2.2143383709237106,
          -7,
          -2.750456093844882,
          -2.8200977060751757,
          -7,
          -2.8541630994869776,
          -3.429135405190724,
          -4.0253877998904075,
          -7,
          -3.1533261255705463,
          -2.729010494963514,
          -4.206290264448695,
          -3.3471998701311088,
          -2.4190284146106347,
          -3.3526326642053124,
          -2.969542568385431,
          -7,
          -4.160113226773964,
          -3.951677437343301,
          -3.8743465023900985,
          -3.8107028609471167,
          -7,
          -3.564324069003793,
          -4.221394674587222,
          -2.7933974567588,
          -2.5613164825661228,
          -3.4892199729008753,
          -3.725533909439875,
          -3.183637533042316,
          -3.846708145456007,
          -2.874064137571404,
          -3.0384575826438036,
          -2.636943561573955,
          -3.0550739051169837,
          -7,
          -2.500263040699733,
          -3.087108614449726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0041739220558177,
          -3.4383313469688166,
          -2.691780309707951,
          -7,
          -3.895809150169131,
          -2.7460578706127543,
          -7,
          -3.600319329751661,
          -3.8222988712623667,
          -2.7822085121410036,
          -7,
          -2.9606863649414112,
          -3.157543108985783,
          -3.84060787900929,
          -7,
          -3.985381560231997,
          -3.6047658847038875,
          -2.909473737534268,
          -3.856003453997221,
          -7,
          -3.7762652182681093,
          -7,
          -3.846708145456007,
          -3.1908917169221698,
          -3.1902382914634244,
          -7,
          -3.2100240738042323,
          -7,
          -7,
          -4.65748610775906,
          -3.3586327127997206,
          -3.3653976050539876,
          -7,
          -7,
          -2.933159642052778,
          -7,
          -3.248561741359574,
          -7,
          -3.0339404652229804,
          -3.03291165884321,
          -7,
          -7,
          -3.92272545799326,
          -3.275196141785624,
          -3.186270022871516,
          -3.5350408132511606,
          -7,
          -3.384472889924203,
          -7,
          -3.0481642458737346,
          -3.1144719788595743,
          -7,
          -7,
          -2.859738566197147,
          -3.0616880350304325,
          -7,
          -3.1233070710124684,
          -7,
          -7,
          -7,
          -3.4304513240788883,
          -2.90289755953152,
          -3.4692818791793925,
          -7,
          -3.879210605291759,
          -7,
          -4.114277296561586,
          -7,
          -4.0750357259221905,
          -7,
          -3.306532247519607,
          -2.8583956413487304,
          -7,
          -7,
          -2.7829382019344346,
          -2.6360578308137783,
          -3.7033343754437698,
          -3.6160551949765862,
          -3.0948868726586736,
          -3.47045949458466,
          -3.357591847523441,
          -3.1679668133956205,
          -2.860676455064863,
          -7,
          -3.872272846224205,
          -7,
          -7,
          -3.806179973983887,
          -4.1591459278540475,
          -7,
          -7,
          -7,
          -2.792293174032692,
          -3.907034952483417,
          -3.356174635493612,
          -3.215933512374288,
          -3.7216045442801375,
          -3.0960654201442166,
          -7,
          -3.411339063315724,
          -7,
          -3.1697164090727963,
          -3.1211903890551365,
          -7,
          -7,
          -3.889189612047073,
          -3.859378504425601,
          -2.9312176596502852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3904405066475256,
          -7,
          -3.5997193623970984,
          -7,
          -7,
          -3.5191057562064487,
          -3.8294324336175984,
          -7,
          -3.535167485114944,
          -3.0787674351712444,
          -3.1815005884677596,
          -2.994178178434242,
          -3.5924358498630324,
          -7,
          -3.541641638096807,
          -7,
          -3.971971276399757,
          -7,
          -7,
          -3.192880935351771,
          -3.1466860556475256,
          -3.3665474682594816,
          -3.1234782951612408,
          -7,
          -3.929776432804902,
          -3.814713612695977,
          -3.215967850531294,
          -3.214949760615447,
          -7,
          -4.019739232674706,
          -3.034513867051594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.668488420457219,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.864303376933002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.140523755289476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -3.163757523981956,
          -7,
          -7,
          -3.952690218761608,
          -7,
          -7,
          -2.9284690089118017,
          -7,
          -7,
          -7,
          -2.9116901587538613,
          -7,
          -7,
          -2.4608978427565478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.279402924338703,
          -7,
          -7,
          -1.716003343634799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165303692468361,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.044539760392411,
          -7,
          -7,
          -7,
          -1.7933912169403805,
          -7,
          -3.760133360206497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0455185628844927,
          -7,
          -3.1970047280230456,
          -3.86135516019326,
          -7,
          -7,
          -4.004698990481458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.44983502217156,
          -7,
          -7,
          -3.55303301620244,
          -7,
          -3.318689269947746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9454685851318194,
          -7,
          -7,
          -7,
          -7,
          -3.947090464219622,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8767372971406644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.464042205438811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.253222872946613,
          -7,
          -4.972044810706296,
          -7,
          -7,
          -4.540333646667876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499233310262374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.795149789050817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.792451225789749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4163075870598827,
          -7,
          -3.1202447955463652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.869624754401409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.326397313347113,
          -3.584444307165176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.925843843077551,
          -7,
          -2.6444385894678386,
          -2.097604328874411,
          -7,
          -4.212267528548938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.338894551438355,
          -7,
          -7,
          -3.3657686880021926,
          -4.156887984076337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1413431465043224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504742636271688,
          -7,
          -7,
          -3.431084868293215,
          -2.6657372963937283,
          -3.6036855496146996,
          -2.948412965778601,
          -7,
          -7,
          -2.8391636829146503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1308963782476624,
          -7,
          -2.45408227073109,
          -7,
          -3.7828893885304504,
          -2.432969290874406,
          -3.0555694400609896,
          -7,
          -1.1781544196194547,
          -3.8767949762007006,
          -7,
          -7,
          -7,
          -3.444513206334043,
          -7,
          -3.4942937686653326,
          -7,
          -7,
          -7,
          -4.116421256664951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3832766504076504,
          -7,
          -7,
          -4.150019201915149,
          -7,
          -7,
          -7,
          -3.1281683960942717,
          -7,
          -7,
          -7,
          -3.6310376965367404,
          -3.377979759421654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277364687721622,
          -7,
          -7,
          -7,
          -7,
          -2.5168657614978143,
          -7,
          -7,
          -7,
          -7,
          -3.822625678774141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.154484837032048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1420764610732848,
          -7,
          -7,
          -1.7933912169403805,
          -7,
          -7,
          -3.240399465738641,
          -7,
          -7,
          -7,
          -3.1760912590556813,
          -7,
          -3.1809855807867304,
          -7,
          -7,
          -3.3771240423464564,
          -7,
          -3.8777168008649765,
          -7,
          -2.4668676203541096,
          -3.850188116174174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4459154139511234,
          -7,
          -7,
          -7,
          -7,
          -3.489889162365435,
          -7,
          -7,
          -3.585686278452497,
          -7,
          -7,
          -3.2105860249051563,
          -7,
          -2.6541765418779604,
          -7,
          -3.3298045221640695,
          -7,
          -3.6655809910179533,
          -7,
          -3.951386094880293,
          -7,
          -3.864965705184916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.110910262895853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.641558383219824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7817553746524686,
          -3.0369614078061686,
          -7,
          -7,
          -7,
          -4.31525642505321,
          -7,
          -4.2330215069876935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4832543766904958,
          -3.71566914240099,
          -7,
          -3.196452541703389,
          -3.0056094453602804,
          -7,
          -2.5523639817866846,
          -3.4572761860613257,
          -3.4287825114969546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.860737174321432,
          -3.228964677405161,
          -7,
          -7,
          -7,
          -4.353723937588949,
          -7,
          -7,
          -4.285827252753274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504062882678692,
          -7,
          -7,
          -7,
          -3.36078268987328,
          -5.527375951229165,
          -7,
          -7,
          -7,
          -7,
          -3.7545776560447304,
          -3.616580530085886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.698448538015329,
          -7,
          -7,
          -3.316913439164992,
          -7,
          -3.742918403405083,
          -7,
          -4.796110421820556,
          -7,
          -2.7488924788750166,
          -5.018633935024163,
          -3.297395711008887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7204900684500517,
          -7,
          -7,
          -7,
          -3.394976719554564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1222158782728267,
          -7,
          -7,
          -4.294036127859679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.590395947184013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.46393402862153,
          -3.8847387377696316,
          -7,
          -7,
          -7,
          -4.390304140143775,
          -3.9917132757130895,
          -7,
          -7,
          -4.360536614583294,
          -4.680362712634757,
          -7,
          -7,
          -7,
          -7,
          -3.792391689498254,
          -7,
          -7,
          -7,
          -4.292526313416355,
          -4.373949784702526,
          -5.104348811569977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.928214858512939,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2589032153035102,
          -3.8035936647713444,
          -4.597097070985185,
          -7,
          -7,
          -4.341404845125625,
          -7,
          -7,
          -5.347511502724772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.468686951770906,
          -3.0511525224473814,
          -3.882125919770032,
          -7,
          -7,
          -4.3419881690481885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.797087413265331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.018284308426531,
          -7,
          -7,
          -7,
          -4.010893313104381,
          -7,
          -7,
          -7,
          -5.094464140741792,
          -4.78773669147004,
          -7,
          -7,
          -3.3333464984243864,
          -7,
          -3.4604467838807205,
          -7,
          -7,
          -4.250200359678991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9848872010643275,
          -7,
          -7,
          -3.5381965783494542,
          -7,
          -7,
          -3.8441042306975133,
          -7,
          -7,
          -7,
          -7,
          -4.004794110388712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3273589343863303,
          -7,
          -7,
          -7,
          -3.490379920003179,
          -3.399521024913897,
          -7,
          -7,
          -4.305028753746333,
          -7,
          -7,
          -7,
          -3.7302572532130167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0507663112330423,
          -7,
          -7,
          -7,
          -7,
          -4.068977016662719,
          -7,
          -7,
          -7,
          -3.244524511570084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.394696777891884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.107209969647869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.020885876319437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.707144188342445,
          -7,
          -7,
          -7,
          -4.001330700440545,
          -7,
          -7,
          -7,
          -3.425995874829204,
          -3.5212427203704633,
          -2.361458004084773,
          -7,
          -7,
          -7,
          -7,
          -3.867801281134174,
          -7,
          -7,
          -3.39375064034808,
          -2.876523409926936,
          -2.56790818266893,
          -7,
          -7,
          -2.6794278966121188,
          -1.876637651626655,
          -7,
          -4.022610982753226,
          -2.323104706828374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.936513742478893,
          -7,
          -4.540288796889755,
          -2.971739590887778,
          -3.079904467666721,
          -2.692141609366784,
          -2.7264555202583103,
          -3.671728088239558,
          -7,
          -2.866877814337499,
          -7,
          -3.215901813204032,
          -7,
          -3.763903745309267,
          -3.189770956346874,
          -3.443888546777372,
          -3.815378484965918,
          -7,
          -7,
          -7,
          -7,
          -2.693140460675295,
          -3.174931593528443,
          -7,
          -7,
          -7,
          -3.9783631470838827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5472065049379498,
          -7,
          -7,
          -4.427456895479942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5352941200427703,
          -3.5814945422908995,
          -2.727744530836107,
          -7,
          -3.7686738168837577,
          -7,
          -4.0326590460399245,
          -2.919601023784111,
          -7,
          -3.4724638966069894,
          -7,
          -7,
          -3.316913439164992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.686725621074542,
          -7,
          -2.526823710771811,
          -7,
          -2.815103161366425,
          -3.6847735714992944,
          -7,
          -7,
          -7,
          -7,
          -2.3698400103853987,
          -7,
          -7,
          -3.3939260065858368,
          -7,
          -3.3619166186686433,
          -7,
          -4.182414652434554,
          -4.279720163150526,
          -7,
          -7,
          -7,
          -3.1496369255515337,
          -7,
          -7,
          -2.939319531078238,
          -7,
          -7,
          -7,
          -2.8169038393756605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.464578960565791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.846213363879387,
          -7,
          -7,
          -7,
          -3.7674650825294926,
          -2.8898617212581885,
          -7,
          -7,
          -7,
          -2.4678546536923855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8951461893759918,
          -7,
          -7,
          -4.130560430970341,
          -7,
          -7,
          -7,
          -3.1398790864012365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5757053787094133,
          -7,
          -7,
          -3.317958924700952,
          -7,
          -3.426673888021373,
          -7,
          -7,
          -2.920123326290724,
          -2.8091105993088905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.881574844854148,
          -7,
          -7,
          -4.0858968111315885,
          -7,
          -7,
          -7,
          -7,
          -3.0191162904470725,
          -2.5962304476672386,
          -3.2890684385904976,
          -3.103803720955957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7193312869837265,
          -7,
          -7,
          -7,
          -7,
          -3.0888445627270045,
          -3.450608305051992,
          -7,
          -4.141606530118251,
          -7,
          -7,
          -7,
          -3.0831441431430524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.643087320671172,
          -1.8500332576897691,
          -1.8319279166571738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8033888249836134,
          -3.534660575828444,
          -7,
          -7,
          -7,
          -4.0206305611846895,
          -7,
          -3.3915273813591287,
          -7,
          -4.71363332438249,
          -7,
          -7,
          -7,
          -1.843952492375385,
          -7,
          -2.932704318635906,
          -2.3569018525943553,
          -7,
          -3.274388795550379,
          -3.1212314551496214,
          -7,
          -7,
          -7,
          -3.174786417367337,
          -7,
          -7,
          -3.245265839457461,
          -7,
          -3.3014640731432996,
          -7,
          -3.3961993470957363,
          -3.3415334414404065,
          -7,
          -7,
          -7,
          -4.831860180040169,
          -3.4320602212581903,
          -2.9609461957338317,
          -3.3893211618458814,
          -7,
          -7,
          -1.6675615400843946,
          -3.3412366232386925,
          -3.6689912701643848,
          -2.764798598430535,
          -7,
          -7,
          -7,
          -2.9378520932511556,
          -5.5275751273418345,
          -2.6819192929105173,
          -2.8727388274726686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0711145667779136,
          -2.1509756144710184,
          -2.6797911709803546,
          -7,
          -3.7245216271185626,
          -3.1231980750319988,
          -2.718224803628757,
          -7,
          -7,
          -4.159849813729301,
          -3.438067450453494,
          -5.176508560266957,
          -7,
          -7,
          -3.5883381171691284,
          -2.0030506803087964,
          -7,
          -7,
          -2.9749719942980692,
          -7,
          -3.105442054801695,
          -1.8645271158562264,
          -2.680698029697635,
          -2.2013971243204513,
          -7,
          -7,
          -7,
          -2.806179973983887,
          -7,
          -3.673389578188305,
          -7,
          -3.0915993262816954,
          -7,
          -7,
          -4.297432204810169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.036834133116361,
          -7,
          -7,
          -7,
          -4.721266376133869,
          -4.999017383695767,
          -4.584568664243272,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058501943429649,
          -7,
          -7,
          -4.6609602917760835,
          -7,
          -7,
          -4.776381518592003,
          -7,
          -4.6798456359364575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.617073766347765,
          -7,
          -7,
          -4.288979144953989,
          -7,
          -7,
          -4.334453751150931,
          -7,
          -4.1947690667173525,
          -7,
          -7,
          -7,
          -3.9640002020590774,
          -3.904913807999268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1705550585212086,
          -4.992897989215456,
          -4.534098059219949,
          -7,
          -7,
          -3.2356967454881875,
          -7,
          -4.9569076389632665,
          -7,
          -7,
          -3.4848690327204026,
          -3.924046565962411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.443289070428097,
          -7,
          -4.121625492208471,
          -4.491403720299015,
          -7,
          -3.5298004013227113,
          -7,
          -7,
          -7,
          -7,
          -3.622731965164719,
          -4.3100344691359895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4927324592231748,
          -7,
          -7,
          -3.648925689157213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.197121977222839,
          -3.342126469955725,
          -7,
          -7,
          -7,
          -7,
          -3.690550461510359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2372085050255706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.794505473856937,
          -4.789918991668926,
          -7,
          -7,
          -3.473681568244996,
          -7,
          -3.0269416279590295,
          -7,
          -7,
          -4.2576785748691846,
          -7,
          -7,
          -7,
          -7,
          -3.7064617376313547,
          -7,
          -7,
          -2.7261836614188204,
          -7,
          -3.032820149438564,
          -7,
          -7,
          -7,
          -3.0978355210448445,
          -3.5515719736742537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.623422895447224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.386320573894046,
          -3.821382499747299,
          -7,
          -7,
          -3.8127128667653687,
          -3.4870373180056653,
          -3.345079526314867,
          -3.413299764081252,
          -3.8344207036815328,
          -7,
          -3.7577754910119254,
          -2.927626962444954,
          -4.043676585602717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.231991755088181,
          -7,
          -7,
          -4.24889240846553,
          -2.2846562827885157,
          -3.4872798164430687,
          -7,
          -3.31492005599242,
          -7,
          -3.0680930538642177,
          -7,
          -7,
          -7,
          -7,
          -3.1931245983544616,
          -3.621747346264817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7556843338524133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.117569563463827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.201246870680715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2826221128780624,
          -7,
          -7,
          -3.110015758247213,
          -7,
          -7,
          -7,
          -4.239712300666562,
          -3.95217469569546,
          -3.6473585159080253,
          -3.841784795614428,
          -3.1635837317044717,
          -2.510585490654225,
          -3.0494727635847134,
          -3.6930859608440105,
          -3.12515582958053,
          -2.558147760826049,
          -2.826118013932333,
          -3.46969931658989,
          -4.5449852976427225,
          -7,
          -3.539966367996713,
          -7,
          -2.901411612182605,
          -3.0407896571244835,
          -4.537617636420976,
          -3.007601806096716,
          -2.0257917657984317,
          -3.5058403523436374,
          -3.428084929572462,
          -7,
          -3.780305308257236,
          -3.435856611877713,
          -3.02391309743574,
          -2.3885720910509756,
          -3.115474908292482,
          -4.5398034973846775,
          -7,
          -2.9626932593928177,
          -3.353170619520263,
          -3.262263691892828,
          -3.10701102844847,
          -4.538711942116912,
          -3.7826756296882844,
          -7,
          -2.363441954440918,
          -3.1784013415337555,
          -3.4645268051427323,
          -3.2367291512441203,
          -3.7706434020513013,
          -3.1868320721941115,
          -3.8433449200125067,
          -4.070173369985659,
          -3.248988587068936,
          -2.895140046118993,
          -3.9524897355097743,
          -1.6208364056491475,
          -2.5559120279549328,
          -2.4756089342953334,
          -1.881720746685466,
          -4.543509306465027,
          -3.591522169203609,
          -3.134672837165581,
          -3.400031984027495,
          -4.070296518197765,
          -3.9454808948916567,
          -4.062757421306656,
          -3.5036545192429593,
          -2.6618473003288075,
          -2.541852590115751,
          -4.540379534670119,
          -4.0621681733517825,
          -3.1482822254644347,
          -3.5841049703994527,
          -2.1863088337034826,
          -3.407900540142635,
          -2.214577685744348,
          -2.941570583896654,
          -2.096115598928591,
          -4.062456628625647,
          -2.9801349922898255,
          -4.060458597797985,
          -3.2190478439301646,
          -2.5878053460867396,
          -3.30263151595426,
          -4.241421951711995,
          -7,
          -2.543180823445382,
          -3.5452204963930702,
          -1.9109424931419006,
          -3.0062231255941225,
          -3.01061489979727,
          -3.5536767484400786,
          -1.7520187049041693,
          -3.1117027513874906,
          -2.3354579006893843,
          -4.539352152039536,
          -7,
          -1.146249563866738,
          -3.7767253914788386,
          -2.606130462501941,
          -2.357865576008696,
          -4.06375856163451,
          -2.143069611194018,
          -3.36968577944444,
          -4.061339366837068,
          -4.538309759381733,
          -2.4152248358937083,
          -4.237945676609235,
          -3.199993525583865,
          -3.7730791049593284,
          -2.54019291851203,
          -1.5612040901605677,
          -3.6992429036795467,
          -3.6384518161613126,
          -3.548954186430289,
          -3.4044427244873816,
          -2.7311558366331012,
          -3.7687860469080143,
          -7,
          -3.3038437748886547,
          -2.79579894147347,
          -2.8121085721085706,
          -3.768995550358179,
          -2.9818363660944813,
          -2.7215038694393896,
          -3.544154894561925,
          -2.4426930296358496,
          -3.7666606613741327,
          -3.4505504606034503,
          -1.54329101510127,
          -3.151405212887992,
          -2.9677647953826947,
          -3.937718443617264,
          -3.7670444942436667,
          -2.37501583611072,
          -2.966153470269118,
          -7,
          -3.8395785959610693,
          -3.612889769287485,
          -7,
          -7,
          -4.538460621556729,
          -7,
          -7,
          -3.0377179381586314,
          -2.6073334015206,
          -2.5236561600008374,
          -3.510935788737165,
          -4.545517407601492,
          -3.1569249469842195,
          -4.237757314269729,
          -3.9391322086815177,
          -3.6468079319099638,
          -3.356475224645445,
          -2.284065310827892,
          -3.760133360206497,
          -3.240399465738641,
          -3.7674650825294926,
          -7,
          -4.5386616896384036,
          -7,
          -3.2135781217864365,
          -3.4050046650503694,
          -4.540028994279416,
          -2.851490725839368,
          -3.4394905903896835,
          -2.960518342780708,
          -2.812591095596879,
          -3.1934754749695493,
          -2.075801505396244,
          -3.5122840632818537,
          -2.8799804787649608,
          -1.5711086204421372,
          -3.1441879963952775,
          -4.538385197019912,
          -4.537567257152675,
          -3.9440506304214624,
          -3.843083210487105,
          -3.022040758942761,
          -3.76051043925476,
          -2.4792049974725776,
          -3.8430458105345693,
          -3.278140911716149,
          -3.392307445821645,
          -3.0502250378836537,
          -1.7375608801923828,
          -3.9448156680632662,
          -3.3587408376095857,
          -3.1314582601065255,
          -3.597097681104017,
          -3.95970902424643,
          -3.5985230166624986,
          -3.476324317420228,
          -3.4032553742996785,
          -2.889155491816375,
          -2.568907690449816,
          -3.6982124307329163,
          -2.9057509200197873,
          -7,
          -2.763174952431323,
          -3.3808260568363413,
          -2.478831585049216,
          -4.23957473708321,
          -2.8906009783510855,
          -4.061050168283154,
          -3.5585667636507035,
          -3.8452097013823283,
          -3.5528749737842267,
          -4.064857156977356,
          -4.242752561356358,
          -3.6948025606647104,
          -4.259247356190061,
          -7,
          -2.543040749940433,
          -3.4117650585774544,
          -3.1232402702695254,
          -7,
          -4.538246884671983,
          -4.241035685094299,
          -7,
          -4.540529679695608,
          -3.8441042306975133,
          -7,
          -3.8452221064290137,
          -2.934766324393461,
          -2.934441061817399,
          -2.9695438099284064,
          -3.261706956957646,
          -4.537668009845832,
          -4.542564024978776,
          -4.243038048686294,
          -4.2483043816590635,
          -4.237443195375461,
          -4.539966367996713,
          -3.6046939459126173,
          -3.322997164829981,
          -2.688419822002711,
          -7,
          -7,
          -4.539991419593507,
          -3.179089476633134,
          -7,
          -3.498084887646875,
          -3.323628159997115,
          -2.708922655700782,
          -7,
          -7,
          -7,
          -3.939032270356462,
          -3.399278054006315,
          -3.544675631413166,
          -7,
          -3.1650216300353597,
          -4.11293997608408,
          -3.0638416171528697,
          -3.260808325447157,
          -2.7686809892349995,
          -4.554864538285933,
          -3.8402064977589974,
          -7,
          -2.37123583538615,
          -3.478674695025181,
          -2.6478174818886373,
          -3.4666081519579373,
          -3.080036758178311,
          -3.7690201911798535,
          -4.240324555090434,
          -3.8428462897078353,
          -3.1796607274946935,
          -2.889004929377786,
          -2.9914878626507724,
          -2.579250665393085,
          -3.080690136910718,
          -3.707083298825079,
          -3.466014498579686,
          -3.9377309750177787,
          -3.207695555447434,
          -2.8423030251835173,
          -3.1500948736862835,
          -7,
          -3.427523559574997,
          -3.3744061508805894,
          -3.939219635854818,
          -3.407354479028052,
          -4.060987273541201,
          -2.6886963393230485,
          -2.07293081510074,
          -3.117872531243554,
          -3.2646407647145366,
          -3.8535765436196416,
          -2.5652354585411796,
          -2.05482190018818,
          -2.148686422668616,
          -2.7968517490498868,
          -4.238472656948356,
          -3.6433169382503885,
          -3.499904633477991,
          -3.1083112729328004,
          -2.7882492001907035,
          -2.620171159405891,
          -2.922000596884898,
          -3.3521342604879,
          -3.459102397252217,
          -3.162528562308087,
          -2.8636909903067953,
          -2.1512181701868327,
          -7,
          -4.537453882426875,
          -7,
          -3.1076803464484275,
          -2.3719966385635733,
          -4.065554818945707,
          -3.430633139261264,
          -3.564026577265475,
          -4.240449398993299,
          -2.9556035765596027,
          -3.639536290826109,
          -2.1730399446729964,
          -4.068371418032643,
          -3.594110050455012,
          -2.0743479845985724,
          -4.5455421410420085,
          -2.625509999723006,
          -3.094262930211214,
          -2.6087185575113128,
          -4.545653424096331,
          -1.9686150935365165,
          -2.2651412914988205,
          -2.6817859439337655,
          -7,
          -3.769241895684789,
          -7,
          -2.1724247283295366,
          -2.46108292457563,
          -2.960592445690832,
          -3.0015173768235046,
          -4.5390007810803175,
          -4.236386088609555,
          -2.092445701480322,
          -3.842571798817237,
          -3.590532239192633,
          -4.0688782010805165,
          -2.9032143764500575,
          -3.542190320433657,
          -1.5324560835286616,
          -7,
          -4.237367773021761,
          -3.6105951086630115,
          -3.89026728376573,
          -4.244895333691861,
          -7,
          -3.251191937135463,
          -2.9472526967087433,
          -4.318397279217511,
          -2.9818543579477965,
          -2.961266809061622,
          -4.1619566462202044,
          -7,
          -3.779820874875269,
          -3.5746903913851122,
          -3.4721939232088554,
          -3.4966168337945307,
          -4.14157518330082,
          -3.4945612869265563,
          -3.3630328295053458,
          -3.748352794991759,
          -4.737248317915621,
          -3.9757419081167997,
          -3.301228351076182,
          -3.723118942779991,
          -3.3143588613003385,
          -3.368955945345503,
          -3.898834838068274,
          -3.5784809383880685,
          -3.693718157448391,
          -7,
          -3.1011198063080787,
          -4.384514698685653,
          -3.1259183533156225,
          -2.969660680946805,
          -2.9876224583030213,
          -4.2553810651543404,
          -2.9646555488767823,
          -3.539818116473136,
          -3.516437948521294,
          -4.09136794755239,
          -2.8794376498259213,
          -3.4330802233513356,
          -2.95751581642942,
          -2.6253095519834253,
          -2.7869496562880802,
          -3.5450370748081865,
          -2.957167487189121,
          -3.0972094232108174,
          -2.3463189508318423,
          -2.8351453800598083,
          -3.1897241951643895,
          -2.870093513523827,
          -2.0424620473036907,
          -1.812896980222412,
          -4.552546547955661,
          -2.4235165556085847,
          -2.868174040859638,
          -4.539916260467521,
          -3.2826544758187164,
          -2.927543961579448,
          -3.888864386018648,
          -4.547430085818267,
          -2.3966798842050885,
          -2.403069276989103,
          -2.9179709844755197,
          -3.587062093703546,
          -2.2412601798924205,
          -3.4630963008800726,
          -2.0983138589928285,
          -4.602992722137344,
          -3.1969926658789696,
          -3.407287016436204,
          -2.637575986336545,
          -4.061703734218241,
          -3.360285663517499,
          -3.4242636158693003,
          -2.8680655566461386,
          -3.580605691790701,
          -2.6364360144838876,
          -3.6068541017166744,
          -2.8883526261417334,
          -2.73075536687231,
          -3.5456163329131365,
          -2.070948234903138,
          -2.2217251522999155,
          -3.4620637966651473,
          -2.871693397817705,
          -4.5428627572586375,
          -3.1318477105449856,
          -2.3532228716177452,
          -3.4754209652146257,
          -4.540354505451778,
          -7,
          -4.537668009845832,
          -7,
          -4.593762200380792,
          -2.7444782755162587,
          -3.179767161604466,
          -2.63437118943673,
          -7,
          -3.777837479938187,
          -2.660554467906144,
          -4.562411832949728,
          -3.3265165785186688,
          -4.2400122882325455,
          -2.995437743136134,
          -7,
          -2.4972910932956123,
          -2.90880431953092,
          -7,
          -7,
          -3.721911325425833,
          -3.7130943492255923,
          -2.722712787865719,
          -7,
          -4.5439687656935615,
          -3.259908659769131,
          -7,
          -4.545838832510257,
          -4.077743283566271,
          -2.95944860705501,
          -7,
          -3.0899443413280387,
          -7,
          -7,
          -3.690396931704288,
          -2.619032726143369,
          -3.2388714591998307,
          -7,
          -7,
          -2.5910441739661128,
          -4.547479333931025,
          -3.245359885849709,
          -7,
          -3.2511513431753545,
          -2.6640120336367628,
          -7,
          -7,
          -4.261084354924705,
          -3.4727442635547314,
          -3.7444718063201807,
          -4.543757723163865,
          -3.9518472968997793,
          -3.3444168371579774,
          -4.5448614576459025,
          -3.4092566520389096,
          -2.9869706781459966,
          -3.851450549213087,
          -7,
          -2.9108447206229275,
          -3.173815393774398,
          -7,
          -3.3805006748991953,
          -7,
          -7,
          -3.923668776807718,
          -3.5585405788545965,
          -2.378674481411176,
          -3.1357567477801735,
          -4.579772167664273,
          -4.075364446373285,
          -7,
          -3.6139369124465115,
          -3.6405187032046085,
          -3.371296092257093,
          -7,
          -3.236309282228153,
          -2.80591061065459,
          -4.550986177622661,
          -4.2370282102444135,
          -2.855800287422407,
          -2.318857746688286,
          -3.4358671080828365,
          -4.083705625352265,
          -3.0712013889421295,
          -7,
          -3.693529097671857,
          -4.550057048211167,
          -2.926468642816955,
          -4.286265553793083,
          -4.250017239260571,
          -4.549211771460929,
          -7,
          -7,
          -3.5513051073181363,
          -7,
          -3.592398846115564,
          -7,
          -3.15927273458622,
          -3.859522564958292,
          -3.5722100992493604,
          -2.423985572258576,
          -4.110028243534681,
          -3.168072999308404,
          -7,
          -3.3500783389094986,
          -7,
          -2.902886363725619,
          -3.332124127960269,
          -7,
          -7,
          -3.3501874261496343,
          -3.3719663222631246,
          -2.7232707289332865,
          -3.591719884720196,
          -4.542526668991491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9074436091675,
          -7,
          -3.778946727968617,
          -3.6399842480415883,
          -4.544551703070268,
          -3.5862371276818306,
          -3.6971919664111508,
          -3.3150190151160137,
          -7,
          -2.9383171596692224,
          -3.2737077590078454,
          -2.4053379610598817,
          -3.755286690608231,
          -3.741185377248953,
          -3.641796241478543,
          -4.538385197019912,
          -3.494502447046173,
          -3.5435714239623652,
          -7,
          -2.405154189748663,
          -3.2230135770130466,
          -3.314437307092213,
          -3.2303211689190787,
          -4.565434570307759,
          -3.6093334933375862,
          -3.9374928165543124,
          -3.762053049458416,
          -3.1124254445460724,
          -4.061728851738383,
          -3.6319620874766763,
          -3.0606734753233433,
          -4.547196080987191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.601916107448749,
          -7,
          -7,
          -7,
          -4.188731671445743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.032638903912429,
          -7,
          -7,
          -7,
          -4.209838924494543,
          -2.962369335670021,
          -7,
          -7,
          -2.4144958388716917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3324384599156054,
          -2.9694159123539814,
          -7,
          -7,
          -7,
          -5.140586598610774,
          -7,
          -7,
          -7,
          -7,
          -3.615739688619155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.907126395923902,
          -3.403120521175818,
          -3.044819643421949,
          -7,
          -7,
          -7,
          -2.921686475483602,
          -7,
          -2.6599162000698504,
          -7,
          -7,
          -7,
          -7,
          -4.446816665838136,
          -7,
          -7,
          -3.3564083270389813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3044905277734875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.197280558125619,
          -7,
          -3.9509180044856396,
          -7,
          -4.009153331907709,
          -7,
          -7,
          -7,
          -2.88394519503428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1830799466610196,
          -7,
          -7,
          -7,
          -3.6039018317316716,
          -7,
          -7,
          -7,
          -3.0232524596337114,
          -7,
          -4.07930789680251,
          -7,
          -7,
          -7,
          -3.5121505369220305,
          -7,
          -2.9542425094393248,
          -3.864807629026147,
          -7,
          -7,
          -7,
          -7,
          -4.992840596288919,
          -7,
          -7,
          -1.5326937275739363,
          -7,
          -7,
          -4.294157480769691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8898617212581885,
          -4.5386616896384036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305802629184905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.210211471641834,
          -7,
          -7,
          -7,
          -7,
          -3.4081724871168673,
          -7,
          -7,
          -2.952671385348004,
          -2.7944880466591697,
          -2.622214022966295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9386197815026813,
          -7,
          -4.3370197526004075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3346547668832414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.71275742023182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6402726869436295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.20682587603185,
          -7,
          -3.3208383890175335,
          -3.182414652434554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.948070481518941,
          -3.693463127219531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.083323418473525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6137361412618714,
          -7,
          -7,
          -7,
          -4.653942158633786,
          -7,
          -7,
          -7,
          -7,
          -2.926342446625655,
          -3.5565437084835145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0073209529227447,
          -5.527208933861522,
          -7,
          -7,
          -7,
          -7,
          -3.734319680859007,
          -3.58849580100721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.604154024809671,
          -5.8751544819353825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.617629297757842,
          -7,
          -3.596225862608387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.757646511054261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.64244614748687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.18231477033948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5833121519830775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.491477256827805,
          -7,
          -7,
          -7,
          -3.621332101120809,
          -7,
          -7,
          -7,
          -3.126780577012009,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0141003215196207,
          -7,
          -3.2016701796465816,
          -7,
          -7,
          -7,
          -7,
          -3.4761067168401913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4436755668075785,
          -3.415140352195873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9286006598445242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7953585510233854,
          -7,
          -3.1752218003430523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6148972160331345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5676144427308447,
          -7,
          -7,
          -4.969475320893933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -4.864036182725775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5646660642520893,
          -3.4369573306694496,
          -7,
          -7,
          -7,
          -5.140382324559402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.906776655259594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.829303772831025,
          -7,
          -3.8436531610519933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.85769425778655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.229597380847068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0674428427763805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292721137774543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.112353600959159,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8601382850306134,
          -7,
          -7,
          -3.858657484090808,
          -3.13956426617585,
          -7,
          -5.150837766547415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.750793716662268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7616271845615827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3961993470957363,
          -7,
          -7,
          -7,
          -3.1535099893008374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.308393649976259,
          -7,
          -7,
          -7,
          -4.4072378970769615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.118991800195975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3729120029701067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.13086746180259,
          -7,
          -7,
          -4.278479223046323,
          -7,
          -2.8915374576725643,
          -7,
          -7,
          -7,
          -7,
          -3.062281069972644,
          -2.9030899869919438,
          -2.699693225955115,
          -7,
          -5.828198293965532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.381313673105942,
          -5.875116849527947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6299190355035416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.197556213153536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.933578389023442,
          -7,
          -3.4424797690644486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.18643645234799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.314688651046116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8963553319839965,
          -4.482444791918265,
          -7,
          -4.038729417174369,
          -7,
          -7,
          -5.3468788955925985,
          -7,
          -7,
          -4.604301669918353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.285107029566812,
          -3.8727970399895986,
          -7,
          -7,
          -7,
          -7,
          -2.6172625170913744,
          -7,
          -3.7189996378787185,
          -7,
          -4.3176873404861835,
          -3.5758803156806462,
          -7,
          -7,
          -7,
          -7,
          -3.630529571426824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.477265995424853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6179434348289727,
          -7,
          -7,
          -7,
          -3.1051694279993316,
          -3.9411385943096846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4954055631461936,
          -3.4665710723863543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305234082373335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7777891874348675,
          -7,
          -7,
          -7,
          -7,
          -3.5793262037552553,
          -7,
          -3.996927380146128,
          -7,
          -7,
          -7,
          -4.018076063645795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542128005067315,
          -7,
          -3.387033701282363,
          -7,
          -7,
          -7,
          -3.306425027550687,
          -3.330413773349191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.321598430465344,
          -7,
          -4.096075366085106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4935695729787,
          -2.8512583487190755,
          -7,
          -3.4781334281005174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2615007731982804,
          -3.1649473726218416,
          -2.718501688867274,
          -7,
          -7,
          -3.977376568911182,
          -2.6893771712719174,
          -7,
          -7,
          -3.449298370086198,
          -3.1631613749770184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3202029541600093,
          -7,
          -7,
          -3.766115283221414,
          -3.501149813033742,
          -7,
          -7,
          -7,
          -3.515873843711679,
          -7,
          -7,
          -4.173925979028537,
          -7,
          -7,
          -7,
          -3.3089910290001643,
          -3.5055569386638217,
          -7,
          -7,
          -7,
          -3.2400497721126476,
          -7,
          -3.5428160938829234,
          -7,
          -7,
          -3.5251744278352715,
          -7,
          -7,
          -7,
          -3.372175286115064,
          -7,
          -3.402433346219312,
          -7,
          -3.190030257177831,
          -3.2986347831244354,
          -3.265525335219074,
          -3.3929899006447384,
          -3.3109056293761414,
          -2.5035961502512842,
          -2.8183358833529004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6904618932461783,
          -7,
          -7,
          -3.269512944217916,
          -7,
          -2.4949492776471365,
          -7,
          -7,
          -7,
          -3.5608723738571255,
          -3.2392994791268923,
          -3.539828558377898,
          -7,
          -7,
          -3.4632457912660026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3334472744967503,
          -7,
          -3.1794081515138357,
          -7,
          -3.2373253580656325,
          -3.667733052533267,
          -3.3675422735205767,
          -7,
          -7,
          -2.739006930385196,
          -7,
          -3.255995726722402,
          -3.400624321661767,
          -7,
          -3.1053682352730725,
          -7,
          -7,
          -7,
          -3.7244397233970745,
          -7,
          -3.0771255534464483,
          -7,
          -3.7377490738915573,
          -3.3991196860279334,
          -7,
          -7,
          -7,
          -7,
          -3.7067348466176946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7296506683359203,
          -3.9852992061060455,
          -7,
          -7,
          -7,
          -4.999195811104177,
          -3.4000196350651586,
          -3.29928933408768,
          -3.2417124635841996,
          -7,
          -7,
          -3.625888383862849,
          -3.3188977146274867,
          -7,
          -7,
          -3.9125231763598167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.88820758450285,
          -2.8760734367725553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5964871337365443,
          -7,
          -7,
          -7,
          -3.2135781217864365,
          -7,
          -7,
          -7,
          -3.1285608065593205,
          -7,
          -7,
          -7,
          -3.5673793076509788,
          -7,
          -3.182129214052998,
          -7,
          -7,
          -2.8388490907372557,
          -2.980528246896414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.679836558918098,
          -3.286456469746983,
          -7,
          -7,
          -3.207095540419218,
          -3.7428381293249657,
          -3.366236123718293,
          -3.297468695545132,
          -7,
          -7,
          -7,
          -3.449478399187365,
          -7,
          -7,
          -3.4500950758716025,
          -2.5047506270440394,
          -7,
          -7,
          -7,
          -3.1600824724895236,
          -3.5010592622177517,
          -3.323308364436474,
          -7,
          -3.815145895436368,
          -7,
          -2.5589610673320826,
          -3.323870606540509,
          -7,
          -7,
          -7,
          -3.526403899736798,
          -3.5345337560051155,
          -7,
          -7,
          -7,
          -3.9202798946329485,
          -7,
          -7,
          -3.2860071220794747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7000110623221123,
          -4.168409083519626,
          -4.672566340793907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4604467838807205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.103305144246941,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7785130117389247,
          -7,
          -3.013980184732713,
          -3.5872618496925344,
          -7,
          -7,
          -7,
          -3.7374113257013213,
          -3.510813010512496,
          -2.5781954107484224,
          -7,
          -4.419930978136115,
          -7,
          -7,
          -7,
          -3.7405205860536648,
          -3.524201327535919,
          -2.8988517058385757,
          -7,
          -3.062689403096359,
          -2.8383767747778115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9854264740830017,
          -7,
          -2.687974620034556,
          -2.5401730004667513,
          -4.135650950040593,
          -3.050428094453049,
          -7,
          -3.533454289670824,
          -7,
          -7,
          -7,
          -7,
          -4.009323393381013,
          -3.164253690472463,
          -3.8629657589777624,
          -7,
          -7,
          -3.5423273827739745,
          -4.058247755724938,
          -3.9347004017154252,
          -7,
          -7,
          -7,
          -2.9913526737058977,
          -3.4252896164467943,
          -7,
          -7,
          -7,
          -7,
          -3.5161385767170743,
          -7,
          -3.490169250834894,
          -7,
          -7,
          -3.727703883685354,
          -7,
          -3.6878795845197208,
          -3.562530768862261,
          -3.8114022197337674,
          -7,
          -3.390758528738717,
          -3.9095189999026805,
          -7,
          -7,
          -7,
          -7,
          -3.6649238934380817,
          -7,
          -3.809222921689422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.404741639586191,
          -7,
          -7,
          -4.608033696827137,
          -7,
          -7,
          -7,
          -7,
          -4.093123881218075,
          -7,
          -4.001355054084966,
          -3.772919465833062,
          -4.027512692448811,
          -7,
          -4.328685336983151,
          -7,
          -7,
          -7,
          -7,
          -4.684279692743619,
          -7,
          -7,
          -7,
          -7,
          -4.6910567251326745,
          -7,
          -4.546690693184241,
          -4.143046043337588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.687778586493365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.626042522003252,
          -7,
          -4.680996877996996,
          -4.468354716309928,
          -7,
          -3.454463732751138,
          -7,
          -7,
          -3.5057703147997277,
          -4.041471640613747,
          -7,
          -7,
          -3.6670184411159363,
          -4.088915346604906,
          -7,
          -4.154347881220995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2977692625370425,
          -3.7992744224867123,
          -4.116300295134973,
          -7,
          -7,
          -7,
          -4.6600777237750135,
          -7,
          -4.328153561970996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.490021721589144,
          -7,
          -4.244103863376508,
          -7,
          -4.205615719952685,
          -4.202529183501342,
          -7,
          -3.1291672607368097,
          -4.660523976930213,
          -7,
          -3.781487556381919,
          -7,
          -7,
          -4.143202225049597,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008742074877672,
          -3.235654676956949,
          -3.5166939913124287,
          -7,
          -7,
          -3.7627348158461476,
          -7,
          -7,
          -7,
          -3.82936810798882,
          -7,
          -7,
          -3.7227161674884948,
          -7,
          -3.519827993775719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058615797010562,
          -7,
          -7,
          -7,
          -4.797568741143527,
          -7,
          -7,
          -7,
          -3.690771803180663,
          -7,
          -7,
          -7,
          -7,
          -3.5791888919086445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.483016420144132,
          -4.035389709198677,
          -7,
          -7,
          -3.666892211066536,
          -7,
          -7,
          -3.5784959493756787,
          -7,
          -7,
          -7,
          -7,
          -3.9345470056046117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8756399370041685,
          -7,
          -7,
          -7,
          -3.6006561380617996,
          -7,
          -7,
          -3.6307938706772975,
          -7,
          -7,
          -7,
          -3.7759015788916743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3396377405079405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.415056858110851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1789769472931693,
          -7,
          -7,
          -7,
          -7,
          -3.3995006613146104,
          -3.042181594515766,
          -7,
          -3.229937685907934,
          -4.165341466825498,
          -3.1731133940968244,
          -7,
          -7,
          -3.371437317404101,
          -3.387008252600401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.098105089785339,
          -3.928907690243953,
          -7,
          -3.131378035763099,
          -3.438966756918613,
          -7,
          -7,
          -3.082066934285113,
          -2.853850249054781,
          -2.7317901537745826,
          -7,
          -4.025340981997151,
          -7,
          -7,
          -7,
          -7,
          -3.4449811120879446,
          -7,
          -2.5018577027245423,
          -7,
          -3.0081741840064264,
          -7,
          -3.0224283711854865,
          -7,
          -3.2219355998280053,
          -3.4674601095072637,
          -7,
          -2.9337402994969355,
          -7,
          -7,
          -3.598899887063883,
          -2.7207792813583587,
          -3.403977963669355,
          -2.9431859207329296,
          -3.5518158223510157,
          -2.7127487086906523,
          -7,
          -3.2119210843085093,
          -2.6582499544669576,
          -7,
          -3.271609301378832,
          -7,
          -7,
          -7,
          -7,
          -3.6509870943834453,
          -2.3515336077721796,
          -7,
          -7,
          -2.672493690697651,
          -7,
          -2.585249170935557,
          -3.7051792448736762,
          -7,
          -2.9373925002214984,
          -3.4116261801916856,
          -3.119915410257991,
          -3.0064660422492318,
          -7,
          -7,
          -1.9915463125131274,
          -3.152135396861876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0287745265000883,
          -7,
          -7,
          -2.9959997591277068,
          -2.722428241979694,
          -2.8738241766178168,
          -7,
          -7,
          -3.234390722392192,
          -2.931457870689005,
          -3.02626080875407,
          -3.061640934061686,
          -7,
          -2.579900799284342,
          -7,
          -7,
          -3.083860800866573,
          -2.928011577509416,
          -3.1031192535457137,
          -7,
          -3.3552599055273786,
          -3.1007150865730817,
          -3.5468421951528786,
          -7,
          -7,
          -3.3197304943302246,
          -3.3479151865016914,
          -3.3983567313797542,
          -7,
          -7,
          -3.167317334748176,
          -7,
          -3.0052663329727687,
          -3.286231854028553,
          -3.1949858434258807,
          -3.4378713091843833,
          -7,
          -7,
          -7,
          -4.696338911742569,
          -7,
          -2.7059858251715236,
          -3.683137131483007,
          -7,
          -2.401154272285065,
          -2.691397273771363,
          -3.5743785644130823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3604419331026376,
          -3.788168371141168,
          -3.3319765058958195,
          -3.749040268703457,
          -7,
          -3.620656479819621,
          -7,
          -7,
          -3.3346547668832414,
          -7,
          -3.5729296590793718,
          -7,
          -3.1760912590556813,
          -7,
          -3.4050046650503694,
          -7,
          -7,
          -3.1285608065593205,
          -7,
          -7,
          -7,
          -3.089728533074736,
          -7,
          -3.4992745818922173,
          -7,
          -3.920123326290724,
          -7,
          -7,
          -3.4847879835220605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3592661646067485,
          -7,
          -4.297826142585328,
          -7,
          -2.5477747053878224,
          -3.2438952103905967,
          -7,
          -3.2659179000852707,
          -2.6635124704151556,
          -7,
          -3.19506899646859,
          -3.37984917876283,
          -2.514547752660286,
          -2.62797998982998,
          -3.3805730030668872,
          -1.8931538580495026,
          -2.4300212762834783,
          -3.1301728888925355,
          -7,
          -2.7306477150202615,
          -2.962053485123806,
          -3.077750290941176,
          -7,
          -3.8010605298478555,
          -7,
          -3.335591612045706,
          -7,
          -7,
          -7,
          -7,
          -3.3223571441183184,
          -3.176814480674777,
          -7,
          -7,
          -4.370975449358971,
          -3.198547125064507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.204662511748219,
          -7,
          -3.228400358703005,
          -3.9511431601075526,
          -3.361066449753942,
          -3.854852362417834,
          -4.145363575085632,
          -7,
          -7,
          -3.2242740142942576,
          -7,
          -7,
          -3.128722284338427,
          -3.463743721247059,
          -3.392696953259666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.469276965762279,
          -7,
          -7,
          -7,
          -2.857030798272624,
          -7,
          -2.762678563727436,
          -7,
          -7,
          -7,
          -2.7218106152125467,
          -3.5328817194073974,
          -3.018522180256059,
          -7,
          -7,
          -7,
          -2.550676688630637,
          -7,
          -3.3129485511971453,
          -7,
          -4.11541079013392,
          -7,
          -7,
          -7,
          -3.7237429174156507,
          -3.194930399217724,
          -2.995108457744741,
          -3.775974331129369,
          -3.2830749747354715,
          -1.9292296494062615,
          -2.4715361774216578,
          -7,
          -7,
          -2.7145692383738007,
          -3.2375437381428744,
          -7,
          -3.172894697752176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3639408663008217,
          -7,
          -3.242417184417719,
          -3.375114684692225,
          -3.791824571446418,
          -2.4118236958598427,
          -7,
          -4.302893458356505,
          -3.1172712956557644,
          -2.9719712763997563,
          -3.1885535262742306,
          -7,
          -7,
          -3.5983527098692836,
          -7,
          -3.1300119496719043,
          -7,
          -3.4869968884318223,
          -4.20560386927874,
          -3.611988688083979,
          -2.781396305196791,
          -7,
          -7,
          -3.2075670505660874,
          -3.3898745583909853,
          -2.893206753059848,
          -7,
          -3.22219604630172,
          -7,
          -3.457124626303409,
          -7,
          -2.479552580772478,
          -7,
          -7,
          -7,
          -7,
          -3.657354686201244,
          -3.622369470494735,
          -4.119812498380216,
          -7,
          -7,
          -3.7429400140168823,
          -3.1283992687178066,
          -7,
          -2.5103215502161387,
          -2.8472641017707647,
          -3.0211892990699383,
          -2.931521433730744,
          -2.8760734367725553,
          -3.4578818967339924,
          -7,
          -7,
          -3.512817758564873,
          -7,
          -7,
          -7,
          -3.714245911017894,
          -7,
          -3.151169920303053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.11688987733376,
          -7,
          -7,
          -4.1217786323442205,
          -3.9814731626861795,
          -7,
          -7,
          -7,
          -4.725086342200653,
          -5.001036725417776,
          -4.589793271836795,
          -7,
          -4.680516809381255,
          -7,
          -7,
          -7,
          -7,
          -4.912174212399739,
          -4.291168975715262,
          -4.064345657162171,
          -3.4305909979730638,
          -7,
          -7,
          -4.2065830348377915,
          -7,
          -4.080720261319698,
          -7,
          -4.684046027136429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.205366787866476,
          -3.8436687229791437,
          -7,
          -4.677205318381814,
          -3.954861957873765,
          -3.1478308499434595,
          -7,
          -3.5653558117307824,
          -3.4778444763387584,
          -3.5381663917586375,
          -3.7235788004625765,
          -7,
          -7,
          -3.790050473683351,
          -3.2719041290077024,
          -7,
          -3.603731904850924,
          -3.390876255625289,
          -7,
          -3.366111523378347,
          -4.386659455414194,
          -7,
          -7,
          -3.95346534860555,
          -3.7406756071737606,
          -4.928914510676959,
          -7,
          -7,
          -7,
          -3.9590461647617055,
          -3.829946695941636,
          -4.4523930349981296,
          -4.103358939866563,
          -7,
          -7,
          -4.337199605373581,
          -4.143155376433176,
          -4.48708178619026,
          -3.67797175281074,
          -3.534483017704701,
          -3.8534548413680665,
          -4.203353863290381,
          -3.418384164038612,
          -7,
          -3.344863649797128,
          -4.2605722081234925,
          -3.339153196257359,
          -4.348984012346455,
          -7,
          -7,
          -4.314951601661373,
          -3.61255075811203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0478515240423842,
          -2.8779469516291885,
          -2.7117256126381752,
          -7,
          -7,
          -3.657896842346367,
          -7,
          -7,
          -7,
          -3.8016780590358934,
          -7,
          -4.024198232206868,
          -3.2095150145426308,
          -3.2352758766870524,
          -7,
          -7,
          -7,
          -3.7298934039632377,
          -7,
          -7,
          -3.8287243271387914,
          -7,
          -7,
          -7,
          -3.009981753317307,
          -7,
          -3.565217949843888,
          -7,
          -7,
          -7,
          -3.892935928788486,
          -4.3160332821256615,
          -7,
          -7,
          -3.273695587930092,
          -7,
          -2.784260582566084,
          -7,
          -3.375114684692225,
          -2.7620921705056984,
          -7,
          -7,
          -7,
          -3.0668847431297714,
          -3.443262987458695,
          -7,
          -7,
          -3.315130317183602,
          -7,
          -2.718667735316211,
          -2.524500814263041,
          -4.21505564736031,
          -7,
          -3.1484998267052453,
          -3.002166061756508,
          -7,
          -3.8675264111997434,
          -7,
          -7,
          -3.9356583861006342,
          -3.4590907896005865,
          -3.244512826988333,
          -3.08278537031645,
          -3.3683798716238016,
          -7,
          -7,
          -7,
          -7,
          -3.824581376233483,
          -7,
          -3.1609184995397808,
          -2.3152910364949637,
          -7,
          -7,
          -2.408114283215211,
          -2.7674065990040475,
          -3.3884564527002667,
          -7,
          -3.719186221662629,
          -3.0856472882968564,
          -3.791690649020118,
          -7,
          -3.459279375509105,
          -3.7274599208579087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.800258719947592,
          -7,
          -3.760648619581356,
          -7,
          -4.1830989401001295,
          -3.777330140625354,
          -7,
          -3.5485122563410356,
          -7,
          -3.1017470739463664,
          -7,
          -3.2343485271546655,
          -3.4295908022233017,
          -7,
          -7,
          -2.926856708949692,
          -2.8284450587956416,
          -3.5047086738488433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203168922875464,
          -7,
          -4.132707844855448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6633508724665367,
          -7,
          -7,
          -7,
          -7,
          -3.5182506513085,
          -7,
          -7,
          -7,
          -7,
          -3.7206553565517244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.602211967802297,
          -7,
          -7,
          -7,
          -4.1917862475822,
          -7,
          -3.065206128054312,
          -7,
          -7,
          -7,
          -7,
          -3.6367686426690313,
          -7,
          -7,
          -7,
          -3.240834905063529,
          -3.0111473607757975,
          -2.482873583608754,
          -7,
          -2.586812269443376,
          -1.778513011738925,
          -7,
          -3.785756799962643,
          -2.1609399149830604,
          -7,
          -7,
          -2.5403294747908736,
          -2.9684829485539352,
          -7,
          -7,
          -7,
          -3.0283678836970616,
          -7,
          -4.362746288823878,
          -7,
          -2.3915231836751634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.208699276558137,
          -7,
          -2.9927743642553555,
          -7,
          -7,
          -7,
          -2.814913181275074,
          -7,
          -7,
          -7,
          -7,
          -2.928907690243953,
          -7,
          -4.14744443254818,
          -7,
          -7,
          -3.37675939540488,
          -7,
          -7,
          -2.661917803408258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.525821952156663,
          -3.226342087163631,
          -7,
          -3.928915363223554,
          -3.2187979981117376,
          -3.536474268817627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.351409751925439,
          -7,
          -7,
          -3.6764558254563244,
          -7,
          -7,
          -7,
          -7,
          -3.478999131673357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8680269370808706,
          -4.452323216977515,
          -7,
          -7,
          -7,
          -4.39123512565331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.694363857175814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023252459633712,
          -7,
          -4.14989620715876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3394514413064407,
          -7,
          -7,
          -2.4678546536923855,
          -4.540028994279416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0474695746198566,
          -3.231214647962601,
          -3.5678494505731067,
          -7,
          -7,
          -4.497870674955122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.614264287358705,
          -7,
          -7,
          -7,
          -3.7083359026822635,
          -3.8759675101142856,
          -7,
          -7,
          -7,
          -7,
          -2.7415455167762097,
          -3.1684974835230326,
          -3.231979026831504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.069223957297052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.429752280002408,
          -7,
          -7,
          -3.3560258571931225,
          -7,
          -3.84397984447816,
          -7,
          -7,
          -2.165095874754218,
          -2.2540644529143377,
          -7,
          -7,
          -7,
          -2.885361220031512,
          -7,
          -1.9646342876924021,
          -7,
          -5.4118174500912835,
          -7,
          -2.496237545166735,
          -7,
          -7,
          -7,
          -7,
          -3.297760511099134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464713045757064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.949390006644913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.312092690393716,
          -7,
          -7,
          -7,
          -4.010723865391773,
          -7,
          -7,
          -7,
          -3.6840819838753727,
          -7,
          -3.6522463410033232,
          -2.398634324538392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4038066105474227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6194585689943164,
          -7,
          -7,
          -7,
          -4.286289623452549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.335280866452853,
          -7,
          -7,
          -3.4831592097169795,
          -3.4735599546008133,
          -3.249442961442582,
          -7,
          -7,
          -5.5272792308517,
          -7,
          -7,
          -7,
          -7,
          -3.4417736628051845,
          -7,
          -7,
          -7,
          -3.0813473078041325,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -2.636989101812229,
          -7,
          -7,
          -7,
          -4.010929614728667,
          -3.9072500828813284,
          -5.574186427902285,
          -7,
          -3.7810369386211318,
          -4.540871483046771,
          -2.7208355991282493,
          -7,
          -7,
          -2.6857417386022635,
          -7,
          -2.993656628615462,
          -3.2304489213782737,
          -3.289142835932333,
          -2.53655844257153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.459337649135267,
          -7,
          -7,
          -4.292377922610312,
          -4.770697404733859,
          -7,
          -7,
          -7,
          -4.370031712709581,
          -7,
          -7,
          -4.034210058377503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.921702078597868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.529828018849261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9948082246466132,
          -7,
          -4.675659215036463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.84789640861558,
          -7,
          -7,
          -7,
          -4.066568168015852,
          -4.764419000280632,
          -7,
          -7,
          -7,
          -7,
          -4.757922127563481,
          -7,
          -7,
          -7,
          -4.262906504093203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.369864957856229,
          -7,
          -7,
          -7,
          -4.533450051183524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070518097019869,
          -7,
          -7,
          -4.318334684226136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.295220625687153,
          -4.484925911049592,
          -7,
          -3.988430125810669,
          -7,
          -7,
          -5.347218743600781,
          -7,
          -7,
          -4.305125563622699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8618130982567225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.595496221825574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6098610929805472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7929027354282665,
          -7,
          -7,
          -3.413467412985825,
          -3.325720858019412,
          -7,
          -3.4372747974101237,
          -7,
          -7,
          -3.769303460189082,
          -7,
          -7,
          -7,
          -7,
          -3.665393350279712,
          -7,
          -7,
          -3.0576661039098294,
          -2.910624404889201,
          -3.2304489213782737,
          -3.9780891730561425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8417347789747436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295567099962479,
          -3.7902147702439795,
          -7,
          -7,
          -3.7808931086870787,
          -4.026645602751596,
          -3.598790506763115,
          -7,
          -4.301789346768719,
          -7,
          -3.7214808547700495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.049992856920142,
          -7,
          -7,
          -7,
          -3.342620042553348,
          -3.4169731726030363,
          -7,
          -2.9041743682841634,
          -7,
          -3.148396974251975,
          -3.6489451821656727,
          -7,
          -7,
          -7,
          -3.041787318971752,
          -4.090998297753198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.783427117917317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.797959643737196,
          -3.1541195255158465,
          -7,
          -7,
          -7,
          -3.2342641243787895,
          -3.8642979806968483,
          -7,
          -7,
          -7,
          -3.1753800132708143,
          -2.6398439122942654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.921994581367604,
          -7,
          -7,
          -3.257838506552783,
          -3.3906446440834803,
          -7,
          -2.889021422095225,
          -7,
          -3.459392487759231,
          -2.86053763630648,
          -3.210318519826232,
          -4.870608712866837,
          -7,
          -7,
          -7,
          -3.2140486794119414,
          -7,
          -3.170848203643309,
          -7,
          -7,
          -7,
          -7,
          -3.7123472236152164,
          -2.673635185140647,
          -7,
          -2.467312062980552,
          -7,
          -3.0145205387579237,
          -7,
          -7,
          -7,
          -3.0261245167454502,
          -7,
          -2.9160602863599974,
          -7,
          -2.6214235880182097,
          -3.545121480864834,
          -3.216429830876251,
          -7,
          -3.551327988003846,
          -3.2755416884013093,
          -7,
          -7,
          -7,
          -3.2528530309798933,
          -7,
          -3.7637274037656985,
          -7,
          -7,
          -7,
          -7,
          -3.7926717891415676,
          -7,
          -3.1341771075767664,
          -3.5423273827739745,
          -2.134475182044132,
          -7,
          -2.8836614351536176,
          -7,
          -7,
          -3.442845446763725,
          -1.7697543178375743,
          -3.193958978019187,
          -3.0806264869218056,
          -2.950364854376123,
          -3.255754786643044,
          -2.189097109071418,
          -3.0304985232047095,
          -3.1177682949263725,
          -7,
          -2.8928805454201445,
          -2.6728159545616648,
          -3.050959459771651,
          -7,
          -7,
          -2.6912078323367767,
          -3.412124406173317,
          -3.506234359612126,
          -2.6225907694500417,
          -7,
          -3.571446778880142,
          -7,
          -7,
          -7,
          -3.2302785764135864,
          -7,
          -3.5033820634737327,
          -3.3585059114902354,
          -2.5262530993000873,
          -2.1187561257223226,
          -2.278499553281412,
          -7,
          -3.323252100171687,
          -7,
          -4.398963736125521,
          -7,
          -7,
          -7,
          -7,
          -3.4051755462179893,
          -7,
          -7,
          -3.7189770162143927,
          -7,
          -7,
          -7,
          -7,
          -2.6240757311456826,
          -3.5546102852261643,
          -3.383456296524753,
          -7,
          -3.2533380053261065,
          -3.274913217187631,
          -2.1728363601227105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.361085360488826,
          -3.0898344887086298,
          -3.4787107555127594,
          -3.272924057292105,
          -7,
          -3.9226735678585545,
          -7,
          -7,
          -3.036628895362161,
          -7,
          -3.175627764367181,
          -7,
          -3.1809855807867304,
          -7,
          -2.851490725839368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0514098059157493,
          -2.721260875288632,
          -7,
          -7,
          -7,
          -7,
          -3.168202746842631,
          -2.801403710017355,
          -3.962416693445751,
          -2.0017337128090005,
          -4.298197867109815,
          -7,
          -3.7817553746524686,
          -3.0966392743958857,
          -7,
          -3.7446840632768863,
          -7,
          -2.8834721588455867,
          -7,
          -3.081527326244805,
          -7,
          -7,
          -3.082246654743669,
          -2.858623119912763,
          -7,
          -7,
          -7,
          -3.9882021002587806,
          -3.4424797690644486,
          -3.8803180615942368,
          -7,
          -3.8016437748849454,
          -7,
          -3.2116544005531824,
          -7,
          -7,
          -3.1838390370564214,
          -7,
          -7,
          -7,
          -7,
          -2.4244732731953342,
          -4.371289573064557,
          -3.8988896559265864,
          -7,
          -3.0881360887005513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.951968584492911,
          -7,
          -3.3780040105060434,
          -4.483164248491344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.344411924574547,
          -7,
          -7,
          -7,
          -7,
          -3.2612628687924934,
          -7,
          -7,
          -7,
          -7,
          -3.424881636631067,
          -1.835984598685146,
          -3.865340905624584,
          -7,
          -7,
          -7,
          -3.2897713227931304,
          -2.0851198741382158,
          -2.1276719188204827,
          -7,
          -4.717662183104909,
          -2.589726256254237,
          -2.3201462861110542,
          -2.8796692056320534,
          -7,
          -3.321184027302314,
          -3.0416996535532257,
          -2.8731025277551283,
          -3.8864343196289384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4765418090274287,
          -7,
          -7,
          -3.3951515915045425,
          -7,
          -2.0507068636274597,
          -3.3647385550553985,
          -7,
          -7,
          -7,
          -3.6290877094305602,
          -2.756940236046724,
          -7,
          -4.303260872655577,
          -7,
          -3.2773799746672547,
          -7,
          -7,
          -3.9919787909945836,
          -3.2989621819201167,
          -7,
          -7,
          -7,
          -2.1615106042661045,
          -4.175647730582203,
          -2.043012181684635,
          -7,
          -7,
          -7,
          -3.5100085129402347,
          -2.6494233728226906,
          -7,
          -7,
          -7,
          -7,
          -2.8567288903828825,
          -2.5974209235343935,
          -2.6142190428516683,
          -7,
          -7,
          -2.1565847799040894,
          -7,
          -2.911313252681234,
          -2.6749131095237257,
          -4.043175550211232,
          -7,
          -2.84279639517558,
          -7,
          -3.527823164012659,
          -7,
          -7,
          -7,
          -3.324385356490427,
          -7,
          -7,
          -2.9827233876685453,
          -7,
          -7,
          -1.5020609001161556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.506719307031022,
          -7,
          -3.0930713063760633,
          -7,
          -7,
          -7,
          -3.3964608915070755,
          -4.719140619695215,
          -3.6880102529917385,
          -3.619249898968967,
          -3.695886449894574,
          -3.0644579892269186,
          -3.709778601848225,
          -7,
          -7,
          -4.424179013578782,
          -5.001110373201611,
          -3.987856115558465,
          -7,
          -4.2035133564685125,
          -4.324477946722502,
          -7,
          -7,
          -7,
          -5.389332679678082,
          -7,
          -3.6964812039323243,
          -4.130365937265207,
          -7,
          -7,
          -3.905957699092427,
          -7,
          -3.2742733377584177,
          -7,
          -3.905957699092427,
          -4.33897415086708,
          -4.213730203854841,
          -7,
          -7,
          -7,
          -3.9871297676598974,
          -7,
          -2.578441237407785,
          -7,
          -3.5309950844480262,
          -4.1658153906150925,
          -3.0235610900969454,
          -2.8779469516291885,
          -2.8514950644672523,
          -2.7007037171450192,
          -3.3678266846246245,
          -3.5481026604586483,
          -7,
          -7,
          -3.1876476065305965,
          -3.784260582566084,
          -7,
          -2.9860145716111237,
          -2.7215750975918596,
          -7,
          -2.7291024582277323,
          -7,
          -7,
          -7,
          -3.489598174792466,
          -3.378092120780078,
          -5.105023672859679,
          -7,
          -7,
          -7,
          -3.8799269556700935,
          -7,
          -4.084404330348212,
          -3.6266824662362946,
          -7,
          -7,
          -4.337539124196711,
          -4.143420785129937,
          -3.7467120225166606,
          -3.2020339865636913,
          -2.641092581460935,
          -3.5533367823768884,
          -3.2392124047210666,
          -3.8959609362542365,
          -7,
          -3.183402394973477,
          -4.260653238993932,
          -7,
          -5.34905206331604,
          -7,
          -3.3687516195445553,
          -3.4117459360126303,
          -4.312050351180238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9741661461216427,
          -7,
          -2.6849269269525506,
          -7,
          -7,
          -3.3570004904409223,
          -3.5052856741441323,
          -7,
          -7,
          -3.3254472435942937,
          -7,
          -3.848182272264775,
          -3.211031500871904,
          -3.239549720840473,
          -7,
          -4.150695051142714,
          -7,
          -3.731266349075492,
          -7,
          -7,
          -3.8298181874388773,
          -7,
          -7,
          -7,
          -3.136931851267557,
          -7,
          -4.043165720207454,
          -7,
          -7,
          -4.604798253272669,
          -3.8418285554494096,
          -3.838946988281371,
          -7,
          -7,
          -3.3714834772045275,
          -7,
          -3.2643455070500926,
          -7,
          -7,
          -2.790613517602193,
          -7,
          -7,
          -7,
          -2.8935768378559144,
          -7,
          -7,
          -7,
          -2.5384480517102173,
          -7,
          -3.1204093945560682,
          -2.6951897138022916,
          -7,
          -7,
          -3.3265406685165617,
          -3.606703741333674,
          -7,
          -3.3236645356081,
          -7,
          -7,
          -7,
          -7,
          -2.9229263274952144,
          -3.261143867700667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.16345955176999,
          -2.7041505168397992,
          -7,
          -7,
          -3.3664229572259727,
          -2.3769800333134876,
          -3.6911699341316035,
          -7,
          -3.476376111016299,
          -7,
          -3.792881745385397,
          -7,
          -3.216655927791676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.581380688709987,
          -7,
          -3.158349925522182,
          -7,
          -7,
          -3.555590156480247,
          -7,
          -2.9478011971439804,
          -7,
          -7,
          -7,
          -3.7132384615456617,
          -3.0325381792600066,
          -7,
          -7,
          -3.4075608494863623,
          -7,
          -3.4538108048586555,
          -3.269512944217916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.550228353055094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5067755366066433,
          -7,
          -3.530999651425947,
          -3.816174990428802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9066985977508377,
          -7,
          -7,
          -3.3138672203691533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.229681842317676,
          -7,
          -7,
          -7,
          -3.203032887014711,
          -2.3479801568783407,
          -3.0775495804517936,
          -7,
          -7,
          -3.792184191580062,
          -7,
          -3.14674801363064,
          -3.2027606873931997,
          -4.221753194318869,
          -3.2366883817646155,
          -7,
          -3.28668096935493,
          -7,
          -3.1903316981702914,
          -7,
          -4.056542788387697,
          -2.9374677396433775,
          -7,
          -3.271221849767887,
          -3.6978033714617387,
          -7,
          -7,
          -7,
          -3.484299839346786,
          -3.3710678622717363,
          -7,
          -3.7253222994444557,
          -3.3298045221640695,
          -2.5777789366952244,
          -7,
          -7,
          -2.8702575549888794,
          -7,
          -7,
          -7,
          -3.210318519826232,
          -7,
          -3.344676033565773,
          -7,
          -3.2681097298084785,
          -7,
          -2.749736315569061,
          -3.028571252692538,
          -7,
          -7,
          -7,
          -3.0595634179012676,
          -3.4348881208673157,
          -3.2697304615080656,
          -7,
          -7,
          -7,
          -7,
          -3.0025979807199086,
          -2.96883304489043,
          -3.0115704435972783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3510526263120277,
          -7,
          -7,
          -3.543074235033532,
          -7,
          -3.503245771465113,
          -2.4167236975467343,
          -7,
          -7,
          -4.2834272333748435,
          -7,
          -7,
          -7,
          -7,
          -3.9289588408808296,
          -7,
          -7,
          -7,
          -3.5733358400660675,
          -3.2949069106051923,
          -3.6108730003800513,
          -7,
          -7,
          -7,
          -3.7855789489089666,
          -7,
          -7,
          -7,
          -7,
          -3.257438566859814,
          -7,
          -7,
          -7,
          -7,
          -3.1366341031122076,
          -3.005395031886706,
          -7,
          -7,
          -4.016029963076024,
          -7,
          -7,
          -7,
          -7,
          -3.5501234805592565,
          -7,
          -7,
          -7,
          -3.382917135087531,
          -3.4985689855032085,
          -7,
          -7,
          -3.4954055631461936,
          -7,
          -3.7206553565517244,
          -7,
          -3.5014426968612273,
          -3.9835736695139654,
          -7,
          -7,
          -3.285782273779395,
          -4.39610776932746,
          -3.358315640082196,
          -3.5747255835940734,
          -7,
          -3.182699903336043,
          -7,
          -3.319896858814888,
          -7,
          -7,
          -7,
          -3.5403115948640758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3674677421179733,
          -2.758430145835095,
          -4.1827854420846835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.18537214331104,
          -7,
          -7,
          -7,
          -3.4394905903896835,
          -7,
          -7,
          -7,
          -3.089728533074736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.449324093098727,
          -3.929776432804902,
          -3.4255342204982635,
          -3.2657609167176105,
          -3.1068093585753127,
          -7,
          -2.846337112129805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9703933720796,
          -7,
          -4.000824376605606,
          -3.1571544399062814,
          -3.0149403497929366,
          -3.5099720837452923,
          -7,
          -7,
          -3.0798141308006843,
          -7,
          -3.521530341278711,
          -3.412460547429961,
          -2.1654473879113305,
          -2.5177612629444233,
          -2.5660163785366477,
          -3.719082573901486,
          -7,
          -3.747489492258673,
          -7,
          -3.694605198933569,
          -2.6214730323720974,
          -7,
          -7,
          -2.3566062594800776,
          -7,
          -2.264424262056547,
          -2.5728716022004803,
          -2.713994267660644,
          -7,
          -2.786751422145561,
          -2.2514354212468133,
          -2.4602142372606046,
          -7,
          -7,
          -7,
          -3.1294213284149075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.252610340567373,
          -7,
          -2.9724342769573653,
          -3.357791963471643,
          -7,
          -3.5593379612178344,
          -3.764244997238098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.887898488096872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1314582601065255,
          -3.5853920609208165,
          -7,
          -7,
          -7,
          -7,
          -3.299942900022767,
          -3.285107029566812,
          -7,
          -7,
          -1.4888870747064173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.380432353900823,
          -7,
          -3.847041804641579,
          -7,
          -3.463519723400486,
          -7,
          -7,
          -7,
          -3.2539031250960253,
          -3.8101652845431495,
          -4.004020273253242,
          -3.789369153591482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2604291755779347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4976666774938954,
          -2.8898617212581885,
          -2.661576077260146,
          -2.451103850736384,
          -4.180683285785931,
          -3.1643032759588334,
          -3.1947917577219247,
          -2.452650144816879,
          -2.696938553005363,
          -7,
          -3.6832272060414346,
          -2.6745549761273852,
          -3.3971140642605224,
          -7,
          -3.8490506905695123,
          -7,
          -3.0308020487722676,
          -7,
          -4.486576657494575,
          -3.6217992240026677,
          -7,
          -7,
          -7,
          -7,
          -3.406114192678464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.996000608571067,
          -2.5163149757779495,
          -3.0457140589408676,
          -3.7085908451503435,
          -2.9951962915971793,
          -4.385624145431483,
          -7,
          -4.252563520384129,
          -7,
          -7,
          -3.0261699521675665,
          -3.3624196382493063,
          -7,
          -1.469822015978163,
          -7,
          -2.738284958200182,
          -2.8919708544400624,
          -3.492271357949134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2522055549271984,
          -7,
          -3.2144331927092873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.390139938467622,
          -7,
          -4.600983780123833,
          -4.408556522973944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.322808294799657,
          -2.849214606209089,
          -4.678909705045905,
          -4.4675045136258955,
          -3.9360107957152097,
          -3.7377490738915573,
          -4.0463000196529695,
          -7,
          -3.9824948572205137,
          -3.2537417373268314,
          -2.7033988634507047,
          -3.6105841244865333,
          -3.925663623625178,
          -3.6474185374117942,
          -7,
          -7,
          -7,
          -7,
          -3.854973673726417,
          -4.3899807298820175,
          -7,
          -7,
          -4.150616110038816,
          -4.285119700058644,
          -5.008256858305089,
          -7,
          -3.1622656142980214,
          -7,
          -4.65898389025032,
          -7,
          -5.406981063516755,
          -7,
          -7,
          -7,
          -4.340919793400163,
          -4.447127009199851,
          -4.312297271757502,
          -7,
          -3.9372921607115727,
          -3.864689034136851,
          -3.3715459208911014,
          -4.1993848820922866,
          -3.301897717195208,
          -4.471081359869327,
          -4.659431268195865,
          -7,
          -3.3277888798400754,
          -7,
          -7,
          -4.015841571684366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0292484623758416,
          -3.7325277806485664,
          -7,
          -7,
          -3.1046577910087962,
          -7,
          -3.469527479187014,
          -7,
          -3.8143142002074595,
          -7,
          -3.28474510325095,
          -3.402175375031505,
          -3.2801228963023075,
          -7,
          -7,
          -7,
          -3.0451664480652285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.154525408238757,
          -7,
          -4.049799277918987,
          -7,
          -7,
          -4.606628541616139,
          -4.319623016720785,
          -7,
          -7,
          -3.5684364144168854,
          -3.2029875322570165,
          -7,
          -2.436162647040756,
          -7,
          -7,
          -3.096307373399723,
          -7,
          -7,
          -7,
          -3.401745082237063,
          -7,
          -7,
          -3.4263485737875077,
          -3.3527611917238307,
          -7,
          -7,
          -7,
          -4.219977256744623,
          -3.162564406523019,
          -7,
          -3.6245914591268478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7068599641949294,
          -3.205619067144219,
          -7,
          -7,
          -3.406540180433955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.789298611159441,
          -3.862131379313037,
          -7,
          -7,
          -3.0754861315749507,
          -3.794746893067343,
          -2.321788233178031,
          -3.510813010512496,
          -2.496433925220682,
          -2.468233685381572,
          -3.1051012445496426,
          -7,
          -3.2230135770130466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.541267138664084,
          -7,
          -7,
          -3.60342105844824,
          -7,
          -7,
          -7,
          -2.7338390006971496,
          -7,
          -2.948331446401186,
          -2.2942299611370496,
          -7,
          -7,
          -7,
          -7,
          -3.296850746548013,
          -3.0060379549973173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.76774936734558,
          -7,
          -7,
          -7,
          -7,
          -3.302330928684399,
          -7,
          -7,
          -3.41161970596323,
          -3.837556874989602,
          -3.5261453526347117,
          -3.736077637003946,
          -3.2880255353883627,
          -7,
          -7,
          -7,
          -7,
          -4.210064237291544,
          -7,
          -7,
          -3.1551335219650514,
          -2.8594985581877763,
          -7,
          -7,
          -7,
          -3.5035183127240748,
          -7,
          -7,
          -2.8066886148562817,
          -7,
          -7,
          -3.4000196350651586,
          -3.0464951643347082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.063285095369489,
          -7,
          -7,
          -3.0806264869218056,
          -4.242491735011311,
          -3.3537479789120974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.37287519679339,
          -2.527721941664711,
          -3.3344537511509307,
          -2.550024411054679,
          -3.325600303415046,
          -7,
          -7,
          -7,
          -3.1095785469043866,
          -2.8974896345771866,
          -3.1149444157125847,
          -2.409078641752536,
          -3.1687920203141817,
          -2.5880848733346493,
          -3.370698092575577,
          -2.7183355789085066,
          -2.4617062624483825,
          -3.0907869279492677,
          -7,
          -7,
          -3.307602993826056,
          -7,
          -3.474551018678706,
          -3.3809344633307017,
          -7,
          -7,
          -7,
          -7,
          -2.6254839394069043,
          -2.4658288153574364,
          -7,
          -3.1915907263792107,
          -3.548635059814752,
          -2.792697052407104,
          -3.659440781870318,
          -2.688864568054792,
          -2.1114167805966386,
          -7,
          -3.451632947456991,
          -3.0548045002209547,
          -7,
          -3.4699692094999595,
          -3.471731651480051,
          -7,
          -3.443262987458695,
          -7,
          -3.8751625869501884,
          -7,
          -3.361160995195026,
          -3.156650091362893,
          -7,
          -2.8555797225017177,
          -2.577204473011063,
          -3.370513089598593,
          -7,
          -4.529109391761361,
          -7,
          -3.004858534620329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6588695922019623,
          -7,
          -2.78559673729218,
          -3.722798396870905,
          -3.5575072019056577,
          -7,
          -3.421702618946589,
          -7,
          -3.786964259435733,
          -7,
          -7,
          -3.646893624167745,
          -7,
          -3.6225248624035684,
          -3.1470576710283598,
          -7,
          -3.502263204344856,
          -7,
          -7,
          -7,
          -3.446575997104686,
          -7,
          -3.6203442997544935,
          -7,
          -2.8265067216642272,
          -3.130079720823589,
          -2.5859439053216287,
          -2.5484771632553307,
          -3.012274667007467,
          -3.2079035303860515,
          -3.0928208626335234,
          -7,
          -7,
          -3.1183749671059116,
          -7,
          -3.305852740224386,
          -7,
          -2.899116684799909,
          -4.466837974667767,
          -7,
          -7,
          -7,
          -4.098583162602924,
          -3.0132586652835167,
          -3.6600112212893308,
          -2.9862490725727446,
          -7,
          -7,
          -3.3823172807353936,
          -3.677150521273433,
          -7,
          -7,
          -4.399950474386311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.794975744051132,
          -2.949877704036875,
          -3.7281913985899466,
          -3.820398522703982,
          -7,
          -7,
          -7,
          -2.911512714632127,
          -3.1987945001755986,
          -7,
          -3.9286518466536946,
          -3.0455185628844927,
          -7,
          -7,
          -2.960518342780708,
          -7,
          -2.8601382850306134,
          -3.5673793076509788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9564885886040557,
          -1.1373102592981563,
          -1.8865863110608183,
          -2.0570318194654,
          -3.424718337331567,
          -2.516943147777456,
          -3.4095950193968156,
          -7,
          -7,
          -2.0490628897941248,
          -3.100370545117563,
          -7,
          -3.3527611917238307,
          -3.0517954455579925,
          -7,
          -7,
          -3.35237549500052,
          -7,
          -3.0486254683237726,
          -7,
          -2.9696821057315477,
          -3.750354088762708,
          -2.9134164500544135,
          -2.660865478003869,
          -7,
          -3.5601458398490475,
          -7,
          -7,
          -2.935938898606875,
          -7,
          -2.9025467793139916,
          -7,
          -7,
          -2.874713688757779,
          -4.375901268009488,
          -3.3802112417116064,
          -3.055378331375,
          -3.3439990690571615,
          -3.1758016328482794,
          -3.4302363534115106,
          -3.23159700556491,
          -7,
          -7,
          -2.8212156788067166,
          -3.0003255987771427,
          -7,
          -3.321598430465344,
          -4.389112902192263,
          -2.6256063897085316,
          -7,
          -7,
          -3.4008832155483626,
          -7,
          -2.900913067737669,
          -7,
          -7,
          -7,
          -3.6961815871685237,
          -2.5696859588340777,
          -3.884228769632604,
          -7,
          -7,
          -3.106020819140269,
          -7,
          -7,
          -3.04688519083771,
          -7,
          -2.5902844037181616,
          -7,
          -2.115738490010839,
          -3.334051440346892,
          -3.034227260770551,
          -3.3708830167776056,
          -2.912930241739325,
          -3.3394514413064407,
          -2.3636119798921444,
          -2.590817075254678,
          -3.036711641762698,
          -7,
          -7,
          -7,
          -7,
          -2.601749670141552,
          -2.835214806082161,
          -7,
          -3.148294097434746,
          -7,
          -7,
          -3.8935398435646613,
          -3.2206832779743455,
          -7,
          -7,
          -7,
          -3.572716745902921,
          -7,
          -3.7108182495386917,
          -2.6059204121412005,
          -3.1937627975610106,
          -7,
          -7,
          -2.3154455182245846,
          -4.064120905829622,
          -3.861773296718693,
          -2.86053763630648,
          -2.9393944374196264,
          -7,
          -7,
          -7,
          -3.0676287167282457,
          -2.7268629897004635,
          -3.064083435963596,
          -2.26462108711403,
          -7,
          -3.094994900944612,
          -2.3287872003545345,
          -2.485011214578573,
          -2.5379449592914867,
          -7,
          -3.597366050266028,
          -2.647340440174626,
          -7,
          -3.351892891903961,
          -3.226857570288723,
          -3.8152171095431946,
          -2.8342389905065373,
          -7,
          -3.7218518176680497,
          -7,
          -7,
          -3.449863924718144,
          -2.784260582566084,
          -4.033504172945174,
          -3.6961815871685237,
          -1.7820970697778085,
          -1.8949899099598944,
          -2.100111959529749,
          -7,
          -4.176281663483603,
          -3.3609245929890346,
          -7,
          -7,
          -7,
          -7,
          -3.7717344253867693,
          -3.1082266563749283,
          -2.08878020373431,
          -7,
          -7,
          -3.5873741720730656,
          -7,
          -2.829432433617599,
          -3.145040940037024,
          -3.181414796254284,
          -7,
          -7,
          -3.867491058154675,
          -3.9404666776635286,
          -4.186079508649366,
          -7,
          -3.1225435240687545,
          -3.946689653741433,
          -2.8077604599357904,
          -7,
          -7,
          -7,
          -7,
          -3.1954014495202188,
          -3.846955325019824,
          -3.587935348636356,
          -7,
          -7,
          -7,
          -2.6942541120252788,
          -2.7389390312034796,
          -2.5474670224263853,
          -2.1316186643491255,
          -2.2872848151912764,
          -2.7469454096151047,
          -7,
          -3.0457140589408676,
          -4.614253730728656,
          -4.784652947530634,
          -7,
          -7,
          -4.727232098507561,
          -4.404320467221731,
          -7,
          -7,
          -4.112074096198641,
          -7,
          -7,
          -7,
          -4.43215924174396,
          -4.7043178510491535,
          -4.299790489253733,
          -7,
          -7,
          -4.454463732751138,
          -7,
          -7,
          -3.7410727723733213,
          -5.391074553266963,
          -7,
          -4.553846631726588,
          -4.160948480864697,
          -7,
          -4.674649910242433,
          -7,
          -7,
          -4.786914606730178,
          -7,
          -4.692961424024017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.595455803368671,
          -3.9752019622578523,
          -7,
          -7,
          -7,
          -4.239849820690192,
          -2.543051622006951,
          -3.6875289612146345,
          -3.865932668193186,
          -3.628333188143986,
          -2.6185578527092255,
          -7,
          -4.4642211975344495,
          -7,
          -3.3697722885969625,
          -7,
          -4.404166374048794,
          -7,
          -7,
          -4.300321518092267,
          -4.490402385350703,
          -5.7079276831885455,
          -7,
          -2.225640576640016,
          -3.4072208929273966,
          -3.9223998627538696,
          -7,
          -5.107332097797437,
          -4.136371723492323,
          -7,
          -7,
          -7,
          -7,
          -4.795156749400232,
          -7,
          -7,
          -7,
          -4.907782072798176,
          -4.034307529596563,
          -7,
          -4.049033796209662,
          -3.8502738366161147,
          -7,
          -4.3509280096547585,
          -7,
          -7,
          -4.149249912590282,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7950592943557186,
          -2.8258586820285867,
          -3.3856573340277287,
          -7,
          -7,
          -3.5304192606354143,
          -7,
          -2.316319878258001,
          -7,
          -3.5643109099606027,
          -7,
          -3.6329429444376293,
          -3.1658376246901283,
          -7,
          -3.590507462008583,
          -7,
          -7,
          -2.6563035907524855,
          -7,
          -7,
          -7,
          -7,
          -3.4500950758716025,
          -7,
          -3.230193378869046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.059163946293072,
          -7,
          -7,
          -7,
          -2.3410765519431496,
          -7,
          -2.8224482994972595,
          -7,
          -3.226857570288723,
          -3.513150985376206,
          -7,
          -7,
          -7,
          -3.5233562066547925,
          -3.8165064370463573,
          -7,
          -7,
          -3.4868553552769432,
          -7,
          -3.55942779975949,
          -7,
          -7,
          -7,
          -3.018783688874697,
          -2.855259487808403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2972393665700785,
          -3.6661434272915585,
          -7,
          -7,
          -7,
          -7,
          -2.9459607035775686,
          -7,
          -7,
          -3.2899232395240046,
          -3.4308809464528913,
          -7,
          -7,
          -3.4237918130180067,
          -3.568602576714357,
          -2.9916690073799486,
          -3.130655349022031,
          -3.563303059369412,
          -7,
          -7,
          -7,
          -3.495509648103409,
          -7,
          -7,
          -7,
          -3.3564083270389813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.852260351006953,
          -7,
          -7,
          -2.7399146106536945,
          -7,
          -3.6568644915489172,
          -7,
          -3.2467447097238415,
          -7,
          -2.5563025007672873,
          -3.503790683057181,
          -7,
          -7,
          -3.5491259267581112,
          -7,
          -3.6464037262230695,
          -3.45408227073109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8135809885681917,
          -7,
          -7,
          -7,
          -2.4059204236653433,
          -7,
          -7,
          -7,
          -3.2601310397236345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4239009185284166,
          -7,
          -2.687633863263913,
          -3.44870631990508,
          -2.742882171437273,
          -3.70816585785554,
          -7,
          -3.6334684555795866,
          -7,
          -7,
          -3.602385590105105,
          -7,
          -3.796435558810175,
          -2.9265996539070276,
          -3.4667193716815987,
          -7,
          -3.0775495804517936,
          -7,
          -3.0203612826477078,
          -7,
          -7,
          -2.6838186602633978,
          -3.1885066338181143,
          -7,
          -7,
          -3.527670171118658,
          -7,
          -7,
          -3.3600250891893975,
          -3.7623033632877685,
          -2.7085908451503435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6715615891070583,
          -2.6478019710944465,
          -7,
          -3.4983105537896004,
          -3.2153824330757863,
          -7,
          -3.0818871394235496,
          -7,
          -2.668851648082519,
          -2.7836177651907485,
          -3.0946457896059547,
          -2.7950859806492927,
          -2.9745116927373285,
          -3.3453737305590887,
          -7,
          -2.69810054562339,
          -2.6597973943019357,
          -3.370698092575577,
          -3.6735737964230517,
          -7,
          -2.5523363135496857,
          -7,
          -3.533533366055707,
          -7,
          -7,
          -7,
          -2.99211148778695,
          -3.1788331173591167,
          -7,
          -7,
          -7,
          -2.998259338423699,
          -7,
          -2.566667327261374,
          -2.9482172935599706,
          -2.604000925049828,
          -2.4625643623836195,
          -7,
          -2.6532125137753435,
          -2.7414470707864638,
          -7,
          -3.4520932490177314,
          -3.15259407792747,
          -7,
          -3.1228709228644354,
          -3.1266183755229515,
          -3.244669969749393,
          -7,
          -7,
          -2.842817185260646,
          -7,
          -3.1499577088910593,
          -2.3397090190622074,
          -7,
          -3.337459261290656,
          -4.016785926566524,
          -3.342620042553348,
          -2.8153563389481215,
          -7,
          -3.375114684692225,
          -3.1845494813206976,
          -7,
          -7,
          -7,
          -3.3461573022320086,
          -7,
          -2.5631158250853248,
          -7,
          -3.2416709737841294,
          -7,
          -3.265690002399037,
          -3.4079854213081364,
          -3.481550113834348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1377496076933964,
          -7,
          -3.498999363580153,
          -7,
          -7,
          -7,
          -3.002048191086249,
          -7,
          -2.6058435390580894,
          -2.798097932062486,
          -2.4694538137671267,
          -2.6345968046694317,
          -7,
          -3.0729847446279304,
          -3.472902651803664,
          -3.4929000111087034,
          -2.401721445968765,
          -7,
          -7,
          -3.5826314394896364,
          -7,
          -3.1721649135409566,
          -2.9718940616281238,
          -2.896001009441626,
          -4.46595508858566,
          -3.4119562379304016,
          -7,
          -3.4194600727860704,
          -3.700024059767739,
          -2.8709888137605755,
          -3.3473300153169503,
          -3.278753600952829,
          -7,
          -7,
          -2.6893088591236203,
          -2.819919785398216,
          -7,
          -3.326949994165999,
          -3.7957236431815518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1883307420001077,
          -2.7310926412065784,
          -3.0875903211365454,
          -7,
          -7,
          -3.1197741686235183,
          -7,
          -7,
          -7,
          -7,
          -2.9674439660442773,
          -7,
          -3.3771240423464564,
          -7,
          -2.812591095596879,
          -7,
          -7,
          -7,
          -3.4992745818922173,
          -3.0474695746198566,
          -7,
          -7,
          -1.9564885886040557,
          -7,
          -2.1074612247789166,
          -1.4334457411083303,
          -1.3669493110437692,
          -7,
          -3.2422181677094666,
          -7,
          -7,
          -7,
          -2.0670546754793615,
          -2.600791448229794,
          -3.3690302218091532,
          -3.329194415088451,
          -2.7212898263240337,
          -7,
          -4.3167249841904995,
          -7,
          -7,
          -2.7641128782236777,
          -7,
          -3.506437380020297,
          -2.534581317778785,
          -3.500236474825639,
          -3.0014091684058766,
          -3.214711421005384,
          -2.6990940707507756,
          -2.1951710924633283,
          -3.0388849756663854,
          -3.170774935911056,
          -7,
          -1.9631532545665087,
          -7,
          -7,
          -2.3012712033802085,
          -3.528402437953617,
          -2.88024177589548,
          -2.8999813462798674,
          -7,
          -3.8682916880178557,
          -7,
          -2.9146075677710805,
          -7,
          -3.404149249209695,
          -3.5555176491927667,
          -3.5899496013257077,
          -7,
          -3.6103407114521566,
          -7,
          -2.988905619919238,
          -7,
          -7,
          -7,
          -7,
          -3.356599435724971,
          -7,
          -3.040602340114073,
          -3.1094097905463656,
          -3.514769049216363,
          -2.657693115600798,
          -3.704693760279812,
          -5.015389936988531,
          -7,
          -2.686278678067201,
          -3.4080702858871854,
          -7,
          -7,
          -7,
          -2.8789811233937366,
          -7,
          -2.477778778663434,
          -7,
          -3.0096633166793794,
          -3.3483048630481607,
          -2.521884935963594,
          -7,
          -2.8662873390841948,
          -2.5298151966446305,
          -3.6495198326589673,
          -7,
          -7,
          -7,
          -3.064832219738574,
          -3.1285608065593205,
          -7,
          -7,
          -2.953115098691848,
          -3.8109713998222077,
          -7,
          -3.8868853589860084,
          -2.912859475162355,
          -7,
          -3.3370597263205246,
          -7,
          -3.092818079113849,
          -7,
          -3.9524897355097743,
          -2.8312296938670634,
          -3.6454468328219587,
          -7,
          -7,
          -3.377306251068199,
          -3.1047904955244556,
          -7,
          -2.827651924858077,
          -3.0570952896126675,
          -3.45540324233088,
          -2.906200314184372,
          -3.4265112613645754,
          -2.86844850133673,
          -2.3726287982115197,
          -2.1876179545728824,
          -1.5779974549453202,
          -7,
          -2.52781396295585,
          -1.1811800845513774,
          -2.463332970234029,
          -3.525044807036845,
          -7,
          -2.9813655090785445,
          -2.400451639956946,
          -7,
          -7,
          -7,
          -4.057935394535143,
          -2.54236429452904,
          -3.05307844348342,
          -3.476231073378763,
          -7,
          -7,
          -2.9628426812012423,
          -2.769869444521887,
          -3.551409331791666,
          -2.9066043717249803,
          -2.1681120183768696,
          -2.070037866607755,
          -2.1745091280458064,
          -7,
          -4.715515452064854,
          -2.8102325179950842,
          -7,
          -7,
          -7,
          -3.3883380679423025,
          -3.1603934910355846,
          -3.388988785124714,
          -1.57012454439491,
          -3.3241795297178998,
          -7,
          -3.2725377773752373,
          -7,
          -2.1263766159975894,
          -7,
          -2.862429556106009,
          -3.7640266076920375,
          -7,
          -3.7206140404234618,
          -3.0725506671486116,
          -4.357711408399213,
          -7,
          -2.814303100170861,
          -3.578094568125386,
          -2.600629036221514,
          -7,
          -2.673020907128896,
          -7,
          -2.927626962444954,
          -2.655928985380298,
          -3.2371036915866878,
          -3.2731170684867417,
          -7,
          -7,
          -3.1394592753662236,
          -1.9160777731414746,
          -2.5728716022004803,
          -2.5870692294283315,
          -1.890920833105978,
          -2.781396305196791,
          -2.2700504293449453,
          -7,
          -7,
          -4.612995656032347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.608493941666254,
          -4.412471747659022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.390864484372611,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.691912136795967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.450249108319361,
          -7,
          -3.691773806297744,
          -3.1910782294789994,
          -7,
          -7,
          -7,
          -4.540607234292212,
          -2.0431695751374144,
          -2.6335602628903403,
          -4.165259168471885,
          -3.4649596916158814,
          -2.706673799140085,
          -7,
          -3.9852617672492965,
          -7,
          -3.0457140589408676,
          -7,
          -3.4987928353293385,
          -7,
          -3.451632947456991,
          -3.4800156583921136,
          -4.167985074726467,
          -5.230701760433507,
          -3.3712526291249394,
          -2.488953400332635,
          -7,
          -3.582896287811938,
          -7,
          -5.408163617774523,
          -3.8314858392486575,
          -4.258661223325604,
          -7,
          -4.354492600589436,
          -4.457791093970606,
          -4.794327683619487,
          -7,
          -7,
          -7,
          -3.6516871265575213,
          -7,
          -7,
          -3.317737880642894,
          -4.009450895798694,
          -7,
          -3.5870836235508463,
          -7,
          -3.7437448785924614,
          -3.4787931682426243,
          -3.3754400598577745,
          -7,
          -2.175263242633451,
          -7,
          -7,
          -7,
          -3.7933992038918922,
          -2.3329992017390233,
          -3.3245653749310993,
          -7,
          -7,
          -3.3732247295944737,
          -7,
          -1.8507687269288802,
          -3.3647385550553985,
          -3.3809946774704036,
          -7,
          -3.4859308862166265,
          -3.282017561561504,
          -7,
          -7,
          -7,
          -7,
          -2.891955383429181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.695831772826692,
          -7,
          -3.7748452995958517,
          -7,
          -7,
          -7,
          -3.82133766507704,
          -7,
          -7,
          -7,
          -1.844533654643206,
          -7,
          -2.6141299110951928,
          -7,
          -2.8125122842899826,
          -3.112157966516305,
          -7,
          -7,
          -7,
          -2.904715545278681,
          -3.8085485512404054,
          -7,
          -3.5269850685599957,
          -3.168350140185944,
          -7,
          -2.6401085986457034,
          -3.098797499203422,
          -7,
          -7,
          -2.5600775062037324,
          -2.093152188112381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.493574219106595,
          -2.863616334522576,
          -3.353627758985543,
          -7,
          -7,
          -7,
          -7,
          -2.556647042222806,
          -7,
          -7,
          -3.2764618041732443,
          -2.821404340602337,
          -7,
          -7,
          -2.570153612664517,
          -2.938284207555805,
          -2.41611074141508,
          -2.8160202287312686,
          -2.781595824877749,
          -3.657151501900967,
          -3.3722367269416367,
          -3.483301952358167,
          -3.394381627679536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.248818948640947,
          -7,
          -4.207553585949308,
          -2.9524143949959307,
          -7,
          -3.04267393611923,
          -7,
          -3.231851723743416,
          -7,
          -2.0012495576348677,
          -2.8927205376754648,
          -7,
          -3.3226327116922234,
          -2.754857772111842,
          -2.8606374167737547,
          -3.5774753862813395,
          -2.7352794480604565,
          -7,
          -7,
          -3.321391278311689,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1112978955061585,
          -7,
          -7,
          -7,
          -2.6519238051682956,
          -7,
          -7,
          -7,
          -2.928666900449495,
          -3.8701111553644005,
          -7,
          -7,
          -2.542410429811593,
          -7,
          -7,
          -7,
          -2.8960141473867185,
          -2.9521464117135063,
          -3.4240645254174877,
          -7,
          -7,
          -3.3200423754796446,
          -7,
          -7,
          -3.589279221235967,
          -7,
          -3.3106933123433606,
          -3.2125870781238937,
          -3.44870631990508,
          -7,
          -2.968716377466786,
          -3.1983821300082944,
          -7,
          -7,
          -7,
          -3.4566696294237573,
          -7,
          -3.2477278329097232,
          -7,
          -3.906607064180874,
          -7,
          -7,
          -2.94423584379348,
          -7,
          -4.241297387109993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.582423231012989,
          -2.7410037874661946,
          -7,
          -2.5034880388066734,
          -3.385353203788192,
          -7,
          -3.2757719001649312,
          -7,
          -2.90444504107691,
          -2.922898380345496,
          -7,
          -2.858543037490597,
          -3.362293937964231,
          -2.378397900948138,
          -7,
          -2.8171244614184556,
          -2.190471770573345,
          -2.958085848521085,
          -7,
          -7,
          -2.8332746392905634,
          -7,
          -3.388696238703874,
          -7,
          -2.8273692730538253,
          -7,
          -3.383815365980431,
          -3.741466761769755,
          -2.673941998634088,
          -2.3150156418807564,
          -7,
          -2.788168371141168,
          -7,
          -3.0329102141076842,
          -3.291590825658001,
          -2.704960368025206,
          -2.3716636023951976,
          -7,
          -7,
          -3.11293997608408,
          -7,
          -7,
          -3.3643633546157306,
          -3.229169702539101,
          -7,
          -7,
          -4.166755638665237,
          -7,
          -3.216957207361097,
          -3.563243701140398,
          -7,
          -3.2131191388114564,
          -2.9554472105776957,
          -7,
          -7,
          -4.527020559229423,
          -3.2229764498933915,
          -2.487780918103498,
          -7,
          -7,
          -3.4600454489953703,
          -7,
          -7,
          -7,
          -3.5921767573958667,
          -3.330007700872759,
          -2.849009701991132,
          -7,
          -7,
          -7,
          -3.560964280516006,
          -7,
          -4.064420548433594,
          -7,
          -7,
          -3.5781806096277777,
          -3.4652340949880145,
          -7,
          -7,
          -7,
          -3.7061201097027037,
          -3.341038631677523,
          -3.1992064791616577,
          -7,
          -3.244359600050387,
          -7,
          -3.245636029406203,
          -3.418135498425232,
          -2.8865712918143793,
          -3.1189431346865346,
          -2.7107518348841255,
          -2.483824941014169,
          -7,
          -3.411788004543869,
          -3.6264259173569804,
          -7,
          -7,
          -3.2165617350479265,
          -7,
          -3.734159513244467,
          -7,
          -3.1253728140876187,
          -4.064015982056994,
          -7,
          -3.6050894618815805,
          -3.321598430465344,
          -3.9988388829513455,
          -3.0874264570362855,
          -3.115943176939055,
          -3.0141843975012796,
          -7,
          -7,
          -3.021891873919109,
          -3.3121773564397787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3350565194390915,
          -3.7102584385195545,
          -7,
          -7,
          -7,
          -7,
          -2.9542425094393248,
          -7,
          -7,
          -3.592953571547866,
          -3.1970047280230456,
          -7,
          -7,
          -3.1934754749695493,
          -7,
          -7,
          -3.182129214052998,
          -7,
          -3.231214647962601,
          -7,
          -3.449324093098727,
          -1.1373102592981563,
          -2.1074612247789166,
          -7,
          -2.0382940155538414,
          -2.334144314385504,
          -7,
          -2.276040866338632,
          -7,
          -2.8948696567452528,
          -7,
          -2.2584776449785173,
          -2.492061604512599,
          -7,
          -3.2052043639481447,
          -2.830726110897981,
          -7,
          -4.305480348653206,
          -7,
          -3.805228914203426,
          -3.0163642957549452,
          -7,
          -2.654472735909495,
          -7,
          -3.420615770625765,
          -2.6961066506690017,
          -7,
          -7,
          -3.3951515915045425,
          -3.4401216031878037,
          -2.7311857076340007,
          -7,
          -3.4590153323018296,
          -7,
          -7,
          -2.7921114090871684,
          -7,
          -7,
          -3.1135088405328193,
          -7,
          -2.755366611633324,
          -7,
          -3.4412236742426123,
          -7,
          -7,
          -2.977527638759884,
          -3.526339277389844,
          -7,
          -3.549861188471943,
          -7,
          -2.5722906061514177,
          -7,
          -7,
          -3.2713768718940743,
          -7,
          -3.2412973871099933,
          -3.291146761731886,
          -7,
          -7,
          -3.666845449884052,
          -2.651278013998144,
          -7,
          -5.713922102999496,
          -7,
          -2.8020892578817325,
          -3.0058237530290275,
          -7,
          -3.198931869932209,
          -3.229937685907934,
          -2.5110808455391185,
          -3.4507108781469196,
          -2.1179023084538846,
          -7,
          -7,
          -2.928907690243953,
          -2.409691647382953,
          -7,
          -2.318324250850395,
          -2.855670556918036,
          -3.0666005221892987,
          -7,
          -7,
          -7,
          -7,
          -2.428742057444305,
          -2.4733826851602605,
          -7,
          -3.335858911319818,
          -7,
          -7,
          -7,
          -3.407447560198671,
          -3.463594402187,
          -7,
          -7,
          -3.191670541584012,
          -7,
          -3.9460221791926338,
          -2.639486489268586,
          -3.6410855836321,
          -7,
          -7,
          -2.1158481557195747,
          -4.03909671044145,
          -7,
          -2.9688648578400763,
          -3.02208453894371,
          -3.904985881099363,
          -7,
          -7,
          -7,
          -2.6283889300503116,
          -3.123742781590177,
          -2.53736109926821,
          -7,
          -3.26528962586083,
          -2.328209658423107,
          -2.9559281568969507,
          -2.4474681309497557,
          -3.1914510144648953,
          -7,
          -2.6382168866215308,
          -7,
          -3.5854607295085006,
          -2.957607287060095,
          -3.7551472476993064,
          -3.251735530437842,
          -7,
          -4.31045964365906,
          -7,
          -7,
          -3.6979264448065052,
          -3.478854967528663,
          -4.006594386184137,
          -3.3341520529922866,
          -2.0250611923107478,
          -2.0459022312658655,
          -2.283890902225102,
          -7,
          -4.486683523512511,
          -3.329092647195331,
          -7,
          -7,
          -7,
          -3.53198955141255,
          -3.420038306133178,
          -2.805047523584979,
          -2.3629848397370954,
          -3.5671440451956573,
          -7,
          -7,
          -7,
          -3.1843364700443417,
          -3.030194785356751,
          -3.3783979009481375,
          -7,
          -7,
          -4.164739384291432,
          -3.70763829538,
          -4.444562331236816,
          -7,
          -2.7489628612561616,
          -4.178150303064571,
          -3.2476664528683656,
          -7,
          -7,
          -7,
          -3.3576490329184674,
          -3.3799698999538514,
          -3.8048887446223913,
          -3.030599721965951,
          -7,
          -7,
          -3.5575072019056577,
          -7,
          -2.4746324543159677,
          -2.4923612212763993,
          -2.3239656832326614,
          -2.673941998634088,
          -2.629661083959758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9323046139517808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.928293412232202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.545900617729224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.625569658243046,
          -7,
          -7,
          -4.4681183052566995,
          -3.643156465619706,
          -7,
          -7,
          -7,
          -4.124265894402821,
          -2.694844413746504,
          -3.147882346295201,
          -7,
          -3.666719169536483,
          -2.896988214036109,
          -7,
          -4.454433228116589,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.042181594515767,
          -4.887447093306888,
          -7,
          -2.140604724802137,
          -2.062102487957556,
          -7,
          -4.261805100794075,
          -7,
          -7,
          -4.115277591395902,
          -4.245784017077525,
          -7,
          -7,
          -7,
          -4.790615862092096,
          -3.7090154169721172,
          -7,
          -7,
          -4.904282657645628,
          -4.5027138235713355,
          -7,
          -4.647993878193836,
          -4.3591712057167005,
          -7,
          -4.2035262997736105,
          -7,
          -7,
          -4.619698415640197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7859274684801276,
          -3.2275010649714306,
          -3.5149990780786804,
          -7,
          -3.4787107555127594,
          -3.664585570012582,
          -7,
          -2.3435492559854603,
          -7,
          -3.8252313231999002,
          -7,
          -3.8047049422008414,
          -3.2399664702073565,
          -7,
          -3.511348515490213,
          -7,
          -7,
          -2.6766936096248664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.802284930100363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7365038932973587,
          -7,
          -7,
          -3.286231854028553,
          -2.3417491818783844,
          -7,
          -2.9037409406215384,
          -7,
          -2.957607287060095,
          -3.2350231594952237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3836358683618797,
          -7,
          -3.473778834646725,
          -7,
          -7,
          -7,
          -2.814628055223535,
          -2.9416108021536336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9064697276433242,
          -3.353477133530903,
          -3.29939833006815,
          -7,
          -3.433929765608464,
          -7,
          -7,
          -2.8239087409443187,
          -7,
          -7,
          -3.5121505369220305,
          -3.570776368794748,
          -7,
          -7,
          -3.386855529184724,
          -3.6872117698137425,
          -3.0202783941119273,
          -2.753072124149383,
          -3.550269129965307,
          -7,
          -7,
          -7,
          -3.3754075333087856,
          -7,
          -7,
          -7,
          -2.606650028578439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.640071297202855,
          -7,
          -7,
          -3.0677665718200244,
          -7,
          -3.1122697684172707,
          -7,
          -2.8568798705623637,
          -7,
          -2.73917663191073,
          -3.4572004127937683,
          -7,
          -7,
          -3.1598678470925665,
          -7,
          -4.112923233491434,
          -2.5614989072300403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8144695709383387,
          -7,
          -7,
          -3.2778383330020473,
          -2.379406247075376,
          -7,
          -3.2487087356009177,
          -3.137354111370733,
          -3.66661156841903,
          -7,
          -7,
          -3.3236645356081,
          -7,
          -7,
          -3.302114376956201,
          -7,
          -3.0211759564845853,
          -3.0332226466702497,
          -3.0259199985020175,
          -3.3479151865016914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4369573306694496,
          -7,
          -7,
          -3.275886960301226,
          -3.5605044151950564,
          -3.860996436757196,
          -3.862548769524793,
          -7,
          -2.851920499585014,
          -3.916559219301114,
          -3.5717088318086874,
          -7,
          -3.3591022499491756,
          -7,
          -3.5598468007393165,
          -3.571242850560224,
          -3.2382005601347457,
          -2.5836709872171713,
          -3.910197369966001,
          -7,
          -7,
          -3.86975959478241,
          -7,
          -2.979001748474721,
          -2.516415170606379,
          -3.857573704147496,
          -3.1557534276768173,
          -2.873618645598776,
          -7,
          -3.578524605274993,
          -3.8605775512444156,
          -2.8024316264307236,
          -3.613154437759265,
          -7,
          -2.6932599947567177,
          -3.124178055474675,
          -3.265525335219074,
          -7,
          -3.4072208929273966,
          -2.6015661942515655,
          -3.1762649421141465,
          -3.2161218985895266,
          -3.8627870982353443,
          -2.6149451276093214,
          -7,
          -3.2427090263694494,
          -3.872039667973286,
          -3.5860807074609022,
          -3.9532763366673045,
          -3.608044405736923,
          -2.7693384508595433,
          -3.1806419027298323,
          -3.424936056088804,
          -3.699620957965614,
          -3.0075877677507616,
          -3.9335379019717047,
          -2.4753527176327466,
          -3.2833464653560465,
          -2.292374230650336,
          -2.859138297294531,
          -7,
          -2.780870976776464,
          -2.7498272196995663,
          -7,
          -3.9028184680822533,
          -3.9034698285071703,
          -7,
          -3.5920101162931366,
          -2.790367965650633,
          -3.1462396970463096,
          -7,
          -7,
          -2.66805960729094,
          -7,
          -3.242008704084836,
          -2.4519831357776205,
          -7,
          -3.67728750108277,
          -2.9447122983382803,
          -3.867113779831977,
          -2.70190362530154,
          -7,
          -3.399731392881681,
          -2.5524248457040857,
          -7,
          -3.880356199419236,
          -7,
          -3.681286474028084,
          -7,
          -3.042488005995828,
          -3.5366426000142708,
          -3.4598948527451516,
          -7,
          -2.8922941135451614,
          -3.5347873586294916,
          -3.635634517336094,
          -7,
          -7,
          -3.976762523267461,
          -3.9351040211514494,
          -7,
          -3.0271048658793513,
          -7,
          -3.1444288996058076,
          -7,
          -3.560683591907453,
          -7,
          -2.8475458367672832,
          -7,
          -3.118878569982349,
          -2.7722168932840368,
          -2.486115487375963,
          -2.463210202983969,
          -3.287129620719111,
          -3.575707301476683,
          -7,
          -3.9177155165594932,
          -2.417429467880523,
          -7,
          -7,
          -3.652536418593025,
          -3.0592267228698455,
          -3.2003422998005173,
          -3.4246094370095563,
          -2.627506421216469,
          -3.548239235346375,
          -3.8890214220952246,
          -2.523016426582376,
          -3.4141931446624807,
          -3.3694467598440587,
          -3.6095410528172773,
          -3.079226482700122,
          -3.43380982236759,
          -7,
          -7,
          -2.2706788361447066,
          -3.388855763178122,
          -7,
          -7,
          -3.634160466585495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7368445108368746,
          -2.5784959493756787,
          -3.0446222709810327,
          -7,
          -7,
          -3.3128420159505105,
          -7,
          -3.57362573693412,
          -3.4368514568313087,
          -4.260190683269962,
          -3.3527933176610354,
          -3.86135516019326,
          -3.8777168008649765,
          -3.8951461893759918,
          -2.075801505396244,
          -7,
          -3.858657484090808,
          -7,
          -3.920123326290724,
          -3.5678494505731067,
          -7,
          -3.929776432804902,
          -1.8865863110608183,
          -1.4334457411083303,
          -2.0382940155538414,
          -7,
          -1.8504210533988203,
          -3.4093130649092758,
          -2.1901922627066246,
          -3.2790963297476012,
          -7,
          -7,
          -2.1428473883091104,
          -2.478162312705756,
          -3.875177059814704,
          -7,
          -2.7825299529871605,
          -7,
          -3.7141788203782977,
          -3.8630252962294707,
          -3.6047658847038875,
          -2.536535897629957,
          -7,
          -3.762753564933374,
          -2.6841105837010906,
          -3.6193542465143764,
          -3.263588731459945,
          -3.625415352154408,
          -2.8580356448150805,
          -2.706877733654718,
          -3.1480882706622184,
          -3.5678886061861617,
          -3.8848519827459977,
          -2.3649528098608803,
          -7,
          -3.89649865985879,
          -2.641523684670229,
          -3.312977843808971,
          -3.0930713063760633,
          -2.808094505739662,
          -7,
          -3.3992928980439108,
          -7,
          -2.884692401766919,
          -7,
          -7,
          -3.188154778916017,
          -3.354444598988735,
          -7,
          -3.0106767848473175,
          -4.169365793151048,
          -2.6375522674177097,
          -7,
          -7,
          -3.878579238062219,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9441922712821746,
          -2.7703200637483674,
          -3.354321904121914,
          -3.826451094668831,
          -7,
          -2.765439284867506,
          -3.586587304671755,
          -7,
          -7,
          -7,
          -3.349714516753763,
          -3.151574127994361,
          -2.5462341061067835,
          -7,
          -3.5567847823070253,
          -2.964907523353008,
          -2.971333843594558,
          -3.5579280590540248,
          -2.9636697965031646,
          -2.0272721727238423,
          -3.0249512507892367,
          -7,
          -7,
          -7,
          -3.2718996634153905,
          -3.8950908969343994,
          -3.045602357684618,
          -7,
          -2.894426837964188,
          -7,
          -7,
          -4.109578546904387,
          -3.0111799202451612,
          -3.934548947666147,
          -3.8654593226619647,
          -7,
          -2.579529548945393,
          -7,
          -3.436650225403725,
          -2.3364041370383783,
          -3.0831889689140475,
          -3.9020573108084666,
          -7,
          -3.5766292484476274,
          -2.941328323980986,
          -3.010582608444064,
          -2.6825552912734185,
          -2.9649482675333863,
          -3.8365139988906716,
          -3.446537167073644,
          -7,
          -3.0224283711854865,
          -2.6135775721070993,
          -2.403030165515052,
          -1.656036191630507,
          -7,
          -2.876044550246095,
          -1.7728647785479723,
          -2.832625018703961,
          -2.849777594833205,
          -7,
          -3.6531642561518813,
          -2.0211892990699383,
          -3.913336925932623,
          -7,
          -3.9252089214120036,
          -3.647896190630718,
          -2.8417764599078246,
          -7,
          -3.462664150493101,
          -7,
          -7,
          -3.1830256751145836,
          -3.3374093395155677,
          -3.597695185925512,
          -3.6994040818153375,
          -2.0278119784740323,
          -1.9230610679225635,
          -2.0701900332571244,
          -3.959756672990995,
          -3.993846273099567,
          -2.8298549080343087,
          -7,
          -7,
          -7,
          -3.251499168343637,
          -3.2611041934228426,
          -3.2790963297476012,
          -1.8583079881794906,
          -3.370050237074868,
          -3.5747255835940734,
          -3.3475739324713,
          -7,
          -2.748704736742231,
          -3.2918681352146444,
          -3.003729728474602,
          -3.0853698724573992,
          -7,
          -3.1633601822507593,
          -2.729206697200022,
          -3.2799885722064595,
          -7,
          -2.567933351135913,
          -2.871776605334238,
          -2.724548924926919,
          -7,
          -3.12434117077496,
          -3.5713011255662694,
          -3.40849436021236,
          -3.1555721862550743,
          -3.0812032393065754,
          -3.4728539231099913,
          -7,
          -7,
          -3.4913149929920424,
          -2.595670229633673,
          -2.9365695895157997,
          -2.5517825783198775,
          -1.9543611529264453,
          -2.5158162716983514,
          -2.2281367891278965,
          -7,
          -7,
          -7,
          -4.819208214624241,
          -7,
          -7,
          -4.766457464116555,
          -4.005895165424469,
          -7,
          -7,
          -3.8035358992281134,
          -7,
          -7,
          -4.430462069819556,
          -4.470873354461882,
          -4.181324900516111,
          -4.05043776144578,
          -7,
          -4.431074137951586,
          -4.111363344325131,
          -7,
          -7,
          -7,
          -4.285901630834813,
          -4.107125138222283,
          -4.611096367331743,
          -4.290702243287854,
          -7,
          -4.417629438837392,
          -7,
          -7,
          -4.043080517519958,
          -7,
          -4.036221553313943,
          -4.143841983496664,
          -4.349995899262856,
          -7,
          -4.276691528845039,
          -7,
          -4.546011808977598,
          -4.344235034551639,
          -3.53413493815341,
          -3.4248272103534214,
          -3.7290351301957916,
          -3.3421652709718277,
          -3.11904583148332,
          -7,
          -4.448876295154121,
          -7,
          -3.598897456689798,
          -1.8133711181752914,
          -3.1506248819812086,
          -3.8378156259146805,
          -3.187026923760066,
          -2.6392872259102367,
          -7,
          -3.277889231857295,
          -4.128043673826458,
          -3.2660552139992545,
          -7,
          -3.704650897336816,
          -4.058388059993333,
          -7,
          -3.1750601376136602,
          -3.61643128894415,
          -3.748257144463063,
          -3.176438555741045,
          -2.1867303757923113,
          -3.8806992892187013,
          -2.9733117237162716,
          -3.4081721014970534,
          -4.0550357871696905,
          -3.317993730910701,
          -3.765258649601729,
          -7,
          -4.44377913892142,
          -3.8305758385257054,
          -3.787396063026728,
          -7,
          -4.0638960381259945,
          -4.119981307304154,
          -3.6116373406428166,
          -3.4947573623066033,
          -3.8955882756662628,
          -2.7956268447938633,
          -3.44311092982662,
          -7,
          -3.1725176377328155,
          -7,
          -7,
          -3.2946958051075232,
          -3.724849087629386,
          -7,
          -3.385069776331935,
          -7,
          -7,
          -7,
          -3.067142878347675,
          -2.290615219045122,
          -2.7188969332355657,
          -7,
          -3.939718882354105,
          -2.8048206787211623,
          -7,
          -1.846367536626781,
          -7,
          -2.8875469749397595,
          -7,
          -2.8914560170811243,
          -2.7811966938121566,
          -7,
          -7,
          -4.3048565939970285,
          -3.9488529061997135,
          -2.226349785441235,
          -7,
          -7,
          -3.805670736698373,
          -7,
          -3.8955882756662628,
          -3.6336199272367296,
          -2.3591021316622953,
          -7,
          -3.3288890398395607,
          -7,
          -3.8706964579892498,
          -4.665412118002188,
          -3.4452596250187617,
          -4.356376467413694,
          -7,
          -7,
          -1.6870169853097867,
          -7,
          -2.3926067758336975,
          -7,
          -2.6681787645363455,
          -2.6409957833019644,
          -7,
          -7,
          -3.964118143151485,
          -2.808107049860337,
          -3.5871120413150903,
          -7,
          -3.930847191682497,
          -3.063386978864393,
          -3.5900612308037427,
          -2.65745844336742,
          -2.960734963005006,
          -7,
          -7,
          -2.299878868399812,
          -2.0769079055377255,
          -7,
          -3.8406496682305784,
          -7,
          -7,
          -7,
          -2.626389255142517,
          -2.451559520940352,
          -2.943584441257268,
          -7,
          -3.6236110517531817,
          -7,
          -7,
          -2.4207522017843215,
          -7,
          -7,
          -2.9092155396260058,
          -2.6543093434941327,
          -7,
          -7,
          -2.4580499998837215,
          -2.6396186932498518,
          -2.4125005469217604,
          -2.634956835670927,
          -2.5779284961856375,
          -3.9869507878585164,
          -3.309133141070118,
          -3.1354506993455136,
          -2.8120959658119626,
          -7,
          -7,
          -3.910464315995614,
          -3.5631249603380444,
          -3.558408539791075,
          -7,
          -7,
          -3.297651103243182,
          -3.9836262871245345,
          -3.176969682371759,
          -7,
          -7,
          -1.8444814312609394,
          -4.055913223916149,
          -2.581335138918986,
          -7,
          -2.7557732544363507,
          -7,
          -1.888844414342479,
          -2.6245494597571613,
          -7,
          -3.560086048497414,
          -2.8534446979741572,
          -3.207526655463334,
          -2.8086380688088775,
          -2.5142709732984847,
          -7,
          -7,
          -3.5597271274175606,
          -7,
          -7,
          -7,
          -4.118297801332776,
          -7,
          -3.165639948545658,
          -2.1536710820283993,
          -7,
          -3.570893036218392,
          -3.579040088400086,
          -2.227942566017301,
          -7,
          -3.1870975005834774,
          -3.9262909868848634,
          -2.893695198415863,
          -3.622352201294506,
          -7,
          -3.590953235187986,
          -2.90603559031291,
          -4.009110806132213,
          -3.5852350633657752,
          -7,
          -1.8026158669942771,
          -2.7475227813077256,
          -2.635930322156989,
          -4.00650882777529,
          -7,
          -3.1919165461654937,
          -7,
          -7,
          -3.479191276121532,
          -3.562530768862261,
          -3.3538777790648417,
          -2.693623508532089,
          -3.6004828134659586,
          -7,
          -7,
          -3.1550322287909704,
          -3.151676230847048,
          -7,
          -3.207365037469072,
          -3.1319392952104246,
          -7,
          -7,
          -7,
          -3.627352379022576,
          -7,
          -7,
          -3.207095540419218,
          -4.222170008681765,
          -3.1956481062209656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.35791579857913,
          -2.119814010658674,
          -7,
          -7,
          -3.497234056576676,
          -7,
          -3.2397998184470986,
          -7,
          -2.707002099520009,
          -3.3740147402919116,
          -7,
          -3.085664823858279,
          -7,
          -7,
          -7,
          -7,
          -2.9978230807457256,
          -7,
          -3.1283992687178066,
          -7,
          -7,
          -7,
          -4.241319188494597,
          -7,
          -7,
          -7,
          -7,
          -3.7294887691795613,
          -7,
          -7,
          -7,
          -3.3639878297484915,
          -7,
          -3.0152695377626073,
          -2.8759867714284884,
          -2.287558332243026,
          -2.90242597417221,
          -7,
          -3.0060379549973173,
          -2.726959949912048,
          -7,
          -7,
          -7,
          -7,
          -2.81778565588553,
          -2.9705328297683242,
          -3.8634418286137087,
          -7,
          -7,
          -2.5888317255942073,
          -7,
          -2.9595864748926832,
          -2.943247125137862,
          -7,
          -3.564902672529205,
          -4.283478917025045,
          -7,
          -2.9092885241622506,
          -7,
          -7,
          -3.151114367869422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.912753303671323,
          -7,
          -7,
          -7,
          -3.7856196070000547,
          -7,
          -3.757661687155249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6829569263012085,
          -3.210853365314893,
          -4.17906322239498,
          -3.3102683666324477,
          -7,
          -7,
          -3.3173946751202754,
          -7,
          -2.748575616930992,
          -2.6126072783550733,
          -2.26876178609136,
          -2.750753768874042,
          -7,
          -3.227372442289636,
          -7,
          -3.3857849588433355,
          -3.0034088273077426,
          -7,
          -7,
          -7,
          -3.652052848248105,
          -7,
          -7,
          -3.355643050220869,
          -4.761920324610169,
          -7,
          -7,
          -7,
          -4.998263698788174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.842276319332164,
          -3.119695681195928,
          -7,
          -7,
          -4.385909994786097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9524943941471555,
          -2.5696492587965016,
          -3.882154404634234,
          -3.764475027434409,
          -7,
          -3.932220013877119,
          -7,
          -7,
          -7,
          -7,
          -3.408353048109495,
          -7,
          -7,
          -7,
          -3.5122840632818537,
          -7,
          -3.13956426617585,
          -7,
          -7,
          -7,
          -7,
          -3.4255342204982635,
          -2.0570318194654,
          -1.3669493110437692,
          -2.334144314385504,
          -1.8504210533988203,
          -7,
          -2.968015713993642,
          -3.462339925085021,
          -2.946206553842783,
          -7,
          -3.132579847659737,
          -2.307496037913213,
          -1.7752983053370275,
          -7,
          -7,
          -3.0161508626402753,
          -7,
          -7,
          -7,
          -7,
          -3.1018296038610864,
          -7,
          -7,
          -2.5677500396977275,
          -3.3951515915045425,
          -3.523616419054371,
          -3.415140352195873,
          -3.1509098737011216,
          -2.5880848733346493,
          -7,
          -3.4192120226230758,
          -3.261976191397813,
          -2.969804056523086,
          -7,
          -7,
          -2.770557474850995,
          -4.3610475381955816,
          -2.7261836614188204,
          -2.82910054658403,
          -7,
          -3.5251744278352715,
          -2.975891136401793,
          -2.3341185180336272,
          -7,
          -3.268577971882843,
          -3.8135142715418833,
          -7,
          -7,
          -3.531095546870028,
          -7,
          -3.130280148582363,
          -7,
          -7,
          -7,
          -7,
          -3.2022157758011316,
          -2.7783924580998707,
          -7,
          -7,
          -3.261548338444689,
          -3.681060243631812,
          -4.162056337360552,
          -5.713796205700024,
          -7,
          -2.9429995933660407,
          -3.273926780100526,
          -7,
          -7,
          -7,
          -7,
          -3.426998958756537,
          -3.4224256763712044,
          -7,
          -7,
          -1.667452952889954,
          -2.6164755138885654,
          -2.292888692709275,
          -2.706148588963142,
          -1.186657669499552,
          -3.646197804180806,
          -7,
          -7,
          -7,
          -3.215901813204032,
          -3.303412070596742,
          -3.288696260590256,
          -7,
          -3.3047058982127653,
          -7,
          -7,
          -7,
          -3.5750723257138124,
          -7,
          -7,
          -7,
          -2.9364131997114797,
          -7,
          -7,
          -2.351538641815657,
          -3.940972785590708,
          -7,
          -7,
          -7,
          -4.033101936663848,
          -3.8112397727532894,
          -2.8897325502419475,
          -3.0909630765957314,
          -2.816407029618638,
          -3.4063698354692673,
          -7,
          -7,
          -2.424881636631067,
          -2.468006306066481,
          -2.177897059918944,
          -7,
          -2.270031504854933,
          -2.4279547009381286,
          -1.3942821780014913,
          -3.12515582958053,
          -7,
          -7,
          -2.7188705947989087,
          -7,
          -3.266936911159173,
          -7,
          -4.356844568723753,
          -3.341385057697068,
          -3.1992064791616577,
          -4.006187833539161,
          -7,
          -7,
          -3.383456296524753,
          -2.8536982117761744,
          -3.2215446370271956,
          -3.142493751023144,
          -2.6722210445716033,
          -2.5062042744413957,
          -1.400662867007511,
          -7,
          -4.652927394343718,
          -2.746218904158715,
          -7,
          -7,
          -3.1319392952104246,
          -7,
          -2.929674317948588,
          -7,
          -2.0505844458694535,
          -7,
          -3.2229764498933915,
          -2.7072862306926577,
          -7,
          -3.1735504566783983,
          -7,
          -2.872350544494723,
          -7,
          -7,
          -4.561822620044466,
          -7,
          -4.796675494929048,
          -7,
          -2.8542452970661185,
          -4.244487411937511,
          -2.8855496750060046,
          -7,
          -7,
          -7,
          -7,
          -3.8481891169913984,
          -3.3171576110017376,
          -3.1862498207790875,
          -7,
          -7,
          -7,
          -2.622214022966295,
          -7,
          -1.2228834478542963,
          -2.7754081588965955,
          -2.3349561161368517,
          -2.7015679850559273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3001061379430885,
          -4.1075830311913215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5920545601729215,
          -7,
          -7,
          -4.927524340875029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.781209471689111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.330413773349191,
          -7,
          -3.8654149200566366,
          -3.0330214446829107,
          -7,
          -7,
          -7,
          -4.93685792517924,
          -1.7993405494535817,
          -2.350786244307008,
          -3.978925773721295,
          -3.688302707830574,
          -3.433556500023043,
          -7,
          -3.9749566587701834,
          -7,
          -2.5848963441374497,
          -7,
          -7,
          -7,
          -7,
          -3.427319398414071,
          -4.790323171935713,
          -7,
          -2.5219222448835006,
          -2.8105312074717155,
          -2.9427519204298136,
          -3.7294982943302246,
          -7,
          -5.407008284864256,
          -3.5079907248196913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6728473065142366,
          -7,
          -3.3053513694466234,
          -3.3351250742114362,
          -4.659507371756729,
          -7,
          -3.497883136800558,
          -7,
          -7,
          -3.7729081949712717,
          -7,
          -7,
          -2.8573324964312685,
          -7,
          -7,
          -7,
          -4.005695181118511,
          -2.6623530208877133,
          -2.8666363533065913,
          -7,
          -7,
          -3.156189361686134,
          -7,
          -1.676083645364622,
          -7,
          -3.2129196924327945,
          -7,
          -3.341024973759354,
          -3.0050946750725487,
          -7,
          -7,
          -7,
          -7,
          -2.6651117370750512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4412236742426123,
          -2.7291647896927698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8189859902803294,
          -4.794599568642681,
          -7,
          -7,
          -1.991364540377839,
          -7,
          -2.585009279902461,
          -7,
          -2.5636505661699873,
          -2.7154926546774614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.848343094827404,
          -3.2481776883387057,
          -4.2203957782315955,
          -7,
          -2.644635503768153,
          -2.2412766228690244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.583623788990542,
          -3.024102248275479,
          -3.2827353726210187,
          -7,
          -7,
          -7,
          -7,
          -2.6646419755561257,
          -3.837588438235511,
          -7,
          -2.8887409606828927,
          -3.5619357633137816,
          -7,
          -7,
          -2.7075093462803563,
          -2.9231044670500483,
          -2.5006309216347464,
          -7,
          -2.744251796297106,
          -3.1091283841463793,
          -3.8057047044338645,
          -3.373463721632369,
          -3.2906281126259174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.240411949590544,
          -7,
          -7,
          -2.913561002070361,
          -7,
          -2.87285524470481,
          -7,
          -2.7363965022766426,
          -7,
          -2.326745379565322,
          -2.3817035291290907,
          -7,
          -7,
          -3.1367205671564067,
          -7,
          -3.2649021111188556,
          -3.009450895798694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2117029006908067,
          -7,
          -3.2054750367408906,
          -7,
          -2.399673721481038,
          -7,
          -3.531223374533027,
          -7,
          -3.5369054869618646,
          -3.8283376000590046,
          -3.7373516958037145,
          -7,
          -2.6745549761273852,
          -3.6403820447095683,
          -7,
          -7,
          -2.876741321509722,
          -2.8254261177678233,
          -2.99409708958821,
          -7,
          -7,
          -3.242913946818925,
          -7,
          -7,
          -3.2043913319193,
          -7,
          -3.4359239581191647,
          -2.809391350809975,
          -7,
          -7,
          -2.9508514588885464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.125879592893269,
          -3.7281913985899466,
          -7,
          -2.8981764834976764,
          -3.598051468295839,
          -3.915347062324192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4386412206093957,
          -3.8961402514420196,
          -7,
          -7,
          -3.647629764067007,
          -7,
          -7,
          -7,
          -3.351409751925439,
          -7,
          -7,
          -4.565841917893188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5073160400764136,
          -7,
          -3.3881012015705165,
          -7,
          -4.363709105603158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.17376882313665,
          -7,
          -2.8747877325973232,
          -7,
          -2.3655414661398932,
          -3.2026926108224982,
          -7,
          -7,
          -3.164798819693455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1090157705111308,
          -4.152165990675555,
          -7,
          -7,
          -2.2790800154604183,
          -0.817528644306543,
          -1.1507786800078956,
          -7,
          -2.5599066250361124,
          -7,
          -4.084501533208011,
          -7,
          -2.782830805202592,
          -7,
          -2.940516484932567,
          -2.337829929222736,
          -7,
          -7,
          -7,
          -3.4683473304121573,
          -7,
          -2.912753303671323,
          -7,
          -3.2990712600274095,
          -7,
          -3.6743456394383287,
          -3.5585885831081994,
          -3.4241871901498113,
          -7,
          -7,
          -3.148294097434746,
          -3.2898118391176214,
          -7,
          -3.300704152596124,
          -7,
          -3.6775765388767256,
          -3.0874264570362855,
          -7,
          -7,
          -2.9387016286270686,
          -7,
          -3.40705081480425,
          -7,
          -2.388081456873557,
          -2.8484789123024457,
          -7,
          -7,
          -7,
          -3.207095540419218,
          -4.086769013798387,
          -7,
          -7,
          -7,
          -3.5644293269979834,
          -3.6485551556626707,
          -7,
          -7,
          -4.1536090971675526,
          -7,
          -7,
          -7,
          -4.994673418386409,
          -2.210704863182517,
          -2.769967801329442,
          -3.6236627073562047,
          -7,
          -7,
          -2.796747738875302,
          -7,
          -7,
          -7,
          -4.37101241688384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7345998321264577,
          -3.440987751476157,
          -3.556995612185525,
          -7,
          -7,
          -3.5873180145140675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4668676203541096,
          -7,
          -2.8799804787649608,
          -7,
          -7,
          -2.8388490907372557,
          -7,
          -7,
          -7,
          -3.2657609167176105,
          -3.424718337331567,
          -7,
          -7,
          -3.4093130649092758,
          -2.968015713993642,
          -7,
          -3.872711250398905,
          -2.372451701409366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2319281100740858,
          -7,
          -4.2841147684017695,
          -7,
          -3.131137273778607,
          -3.384954313935598,
          -7,
          -3.6920533650340808,
          -2.756636108245848,
          -3.2211533219547053,
          -3.401228167498113,
          -7,
          -2.7004873811595234,
          -2.701855692573507,
          -7,
          -3.345471754367631,
          -7,
          -2.90100399089971,
          -7,
          -3.1803170679833,
          -7,
          -4.044186850767364,
          -7,
          -4.080446094611049,
          -7,
          -3.7696726640554927,
          -7,
          -3.2533380053261065,
          -7,
          -7,
          -3.7550359337677714,
          -3.3783979009481375,
          -7,
          -2.808042085314898,
          -7,
          -3.862667950228588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9934362304976116,
          -7,
          -7,
          -3.920071124297524,
          -3.5996647787884166,
          -7,
          -5.412075644086446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2678754193188975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.341286107028629,
          -7,
          -7,
          -7,
          -7,
          -3.075911761482778,
          -7,
          -7,
          -3.0780941504064105,
          -7,
          -7,
          -7,
          -7,
          -3.287353772714747,
          -7,
          -7,
          -2.9954889428763822,
          -7,
          -3.6908160579809155,
          -7,
          -4.110244494182466,
          -7,
          -7,
          -2.946452265013073,
          -3.521486774595432,
          -7,
          -2.9256401970004773,
          -3.4274049553102737,
          -7,
          -3.2377949932739227,
          -7,
          -2.5550944485783194,
          -2.8998205024270964,
          -2.436162647040756,
          -2.7532765701844184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.66838591669,
          -3.6351820486562674,
          -7,
          -7,
          -3.244277120801843,
          -4.178116454356075,
          -3.423846369199462,
          -2.8819549713396007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.524915147539867,
          -7,
          -3.318689269947746,
          -3.5435714239623652,
          -7,
          -5.0503507507638075,
          -3.401745082237063,
          -7,
          -7,
          -7,
          -3.7664128471123997,
          -3.6327608884794387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.234432913530507,
          -7,
          -3.1522883443830563,
          -3.1567510079386705,
          -7,
          -4.857953334848981,
          -3.9127179074056118,
          -5.030290268715527,
          -7,
          -3.3251734566778013,
          -4.320283410086904,
          -3.308706665276203,
          -7,
          -3.1258064581395266,
          -7,
          -7,
          -3.7944880466591697,
          -7,
          -7,
          -7,
          -7,
          -3.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9020709146074903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.375681899659375,
          -7,
          -7,
          -3.5798864436574345,
          -7,
          -7,
          -7,
          -7,
          -4.998355256330765,
          -4.582847113905814,
          -7,
          -7,
          -7,
          -4.036948112195279,
          -7,
          -7,
          -7,
          -7,
          -4.056574560375764,
          -3.8083797948823843,
          -7,
          -7,
          -7,
          -7,
          -4.173171694527412,
          -7,
          -4.6784637473673705,
          -4.3261719452891745,
          -4.196563035148052,
          -7,
          -3.7869287937967515,
          -3.8847953639489807,
          -7,
          -7,
          -4.615476591451174,
          -7,
          -4.370485332353556,
          -4.765564251964924,
          -3.8935398435646613,
          -7,
          -7,
          -7,
          -4.457652330856984,
          -7,
          -7,
          -7,
          -3.8840822792097556,
          -3.9035421416209206,
          -7,
          -3.9621956462968417,
          -3.8303319934519617,
          -7,
          -7,
          -4.375517300649672,
          -7,
          -7,
          -4.214030992451019,
          -4.312017888321016,
          -5.405516253409338,
          -7,
          -3.7001843296221977,
          -7,
          -4.6551384348113825,
          -7,
          -5.405610989110177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3164945392223113,
          -4.217720767530819,
          -7,
          -4.120793216482866,
          -4.48926924575802,
          -7,
          -3.621853565463195,
          -4.956629383444768,
          -7,
          -5.046783817638138,
          -7,
          -3.606703741333674,
          -4.609466342831634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4247001891741125,
          -3.187153953785416,
          -7,
          -7,
          -3.6459525315178176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0991486671778645,
          -3.0254082811317473,
          -3.042181594515766,
          -7,
          -7,
          -7,
          -3.3756636139608855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2405492482826,
          -7,
          -3.71637901287223,
          -7,
          -7,
          -7,
          -4.140714002992303,
          -4.186744501716686,
          -7,
          -7,
          -2.4635446177561664,
          -7,
          -2.401113213955382,
          -7,
          -2.766164891363784,
          -3.408627555236641,
          -7,
          -7,
          -7,
          -2.534026106056135,
          -3.693287157005656,
          -7,
          -7,
          -2.557206339765532,
          -7,
          -2.6018427897820984,
          -3.213296347620159,
          -7,
          -7,
          -2.710963118995276,
          -2.3831739621097427,
          -7,
          -4.150049945162385,
          -7,
          -7,
          -7,
          -3.052886235256382,
          -3.3343698044247776,
          -2.699982177716874,
          -3.6080979463252794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.358315640082196,
          -2.855990008555759,
          -7,
          -7,
          -2.7217419357655936,
          -2.9975692409571537,
          -3.32990612340021,
          -7,
          -3.609252814885003,
          -7,
          -7,
          -7,
          -4.0376654933508025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.230052766370181,
          -7,
          -3.8640658790902367,
          -3.8490138010230566,
          -7,
          -2.765072201102792,
          -7,
          -2.9802306913910317,
          -7,
          -3.05375050316729,
          -3.200394450079095,
          -7,
          -7,
          -7,
          -2.846955325019824,
          -3.7952715790631664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.966610986681934,
          -7,
          -3.0145205387579237,
          -7,
          -7,
          -3.510243312047968,
          -3.771954748963949,
          -7,
          -7,
          -7,
          -7,
          -3.0149403497929366,
          -7,
          -3.7219342108540117,
          -3.075911761482778,
          -3.062581984228163,
          -7,
          -7,
          -3.4282968139828798,
          -7,
          -7,
          -7,
          -7,
          -3.6664243725187595,
          -3.2467447097238415,
          -7,
          -7,
          -3.839476514441198,
          -4.606831090746259,
          -4.05391701315164,
          -4.275836337596789,
          -3.989744321169322,
          -3.1331292340592887,
          -2.928682494549992,
          -4.452211314447793,
          -3.771285782722611,
          -1.9437381050109197,
          -3.1937867917754756,
          -4.150842369489412,
          -3.719670351228767,
          -2.8492267708776566,
          -2.437419981594704,
          -3.948020003415398,
          -4.452720008557285,
          -5.1508577122770784,
          -4.673991068684635,
          -4.03696191916769,
          -2.46480733889576,
          -2.8718384586230377,
          -5.451843212363449,
          -1.8134418728304351,
          -1.534229556862382,
          -4.091261600243427,
          -3.884107698266393,
          -4.673753333997826,
          -3.3401144934431914,
          -3.572339562116119,
          -3.527996414185576,
          -2.203948373797962,
          -3.595506938209761,
          -3.1592555821612995,
          -4.090336275034143,
          -3.3730055379654496,
          -3.238992583655289,
          -3.7894182198306012,
          -3.3586413339445613,
          -4.8499074903725905,
          -3.1077262432329404,
          -2.810659983822341,
          -1.8333472526374732,
          -3.8393109258210014,
          -4.037573587603141,
          -3.2365754281376833,
          -3.790340246867004,
          -3.1455708129596123,
          -3.652899893085946,
          -2.5458630090437357,
          -3.1271139278564446,
          -3.4617771336303806,
          -2.5397646745595197,
          -1.5088703727105708,
          -2.96886735287483,
          -2.591387589127392,
          -2.5037649664957558,
          -3.8726683492477125,
          -3.523192345925134,
          -2.809706264007865,
          -3.13007326688381,
          -3.5895119818168726,
          -3.9089014967169025,
          -3.1376290770696893,
          -3.6891832780764897,
          -2.934763035942782,
          -2.662710132142548,
          -3.6961340412397927,
          -4.037003337451435,
          -3.3578373102701593,
          -4.451929130760516,
          -2.694314664503264,
          -2.815008832325241,
          -4.037080027547998,
          -3.536047063773486,
          -1.7147986755227513,
          -3.451784900912102,
          -2.5797192473872097,
          -4.849775548923395,
          -3.770965477721236,
          -2.8760603067714383,
          -3.5510869175680946,
          -3.7990907774644507,
          -4.337907532033172,
          -2.4666807697155937,
          -3.5892608400865007,
          -2.7451968221209206,
          -3.37706480804834,
          -3.292254543224013,
          -3.572816593786742,
          -1.677603353560154,
          -3.2204927470892803,
          -2.834341956488676,
          -4.12977426367155,
          -7,
          -3.1852435240593744,
          -2.96169201297872,
          -3.5004377446276838,
          -3.0430343791213286,
          -4.497981069706261,
          -2.4378699755416258,
          -3.3590900147177467,
          -4.247786135914882,
          -3.56520362402106,
          -2.25795678802557,
          -4.221513958388284,
          -3.393874166549036,
          -3.381300212083958,
          -2.9435718914443427,
          -1.996533640935674,
          -3.0610001600351286,
          -2.908451219131917,
          -2.9694664928943446,
          -3.6539517933146834,
          -2.369728479615979,
          -2.6953848895587407,
          -3.7615658010500246,
          -3.4542699919165134,
          -2.7685041151913716,
          -3.112744479345518,
          -3.620316743677983,
          -2.4049720105667998,
          -1.7205166823836526,
          -3.5832171616034327,
          -2.143186738714299,
          -3.8615604496727953,
          -2.6293306430230947,
          -3.427651432153175,
          -3.3582395081717715,
          -2.5332071446767435,
          -4.338136094760166,
          -4.1305083703267504,
          -2.3030902572495062,
          -3.0694640562347537,
          -7,
          -5.150935952063992,
          -2.4423825714904606,
          -4.606703741333674,
          -4.752851725772023,
          -4.606829556638213,
          -3.131345404398228,
          -3.68090066116131,
          -3.2140101426502716,
          -3.2233766941889703,
          -2.8171518479092548,
          -3.0153082978203867,
          -3.780574677287544,
          -3.462447414804264,
          -4.753006681086235,
          -3.369136089849646,
          -3.032621824494491,
          -3.113629861278211,
          -2.840054920774821,
          -4.004698990481458,
          -3.850188116174174,
          -4.130560430970341,
          -1.5711086204421372,
          -4.305802629184905,
          -5.150837766547415,
          -2.980528246896414,
          -3.4847879835220605,
          -4.497870674955122,
          -3.0514098059157493,
          -3.1068093585753127,
          -2.516943147777456,
          -3.2422181677094666,
          -2.276040866338632,
          -2.1901922627066246,
          -3.462339925085021,
          -3.872711250398905,
          -7,
          -3.7621256042324025,
          -4.337956629474105,
          -5.451837074684619,
          -3.5953461646750866,
          -4.020954854652503,
          -3.6739680677887727,
          -4.004745018844494,
          -2.0124798801640136,
          -4.005152923751043,
          -3.167279862892624,
          -4.07170101356235,
          -3.189188344933054,
          -0.9025700879280136,
          -2.828457338101283,
          -2.126141222526648,
          -2.5402959357120936,
          -2.912174564777331,
          -2.6057677461550126,
          -3.737582525031894,
          -3.381856660898393,
          -3.427706525856685,
          -3.4199970292732025,
          -2.4869403721117096,
          -3.247951796471139,
          -3.0010813518309316,
          -7,
          -2.8873157722396194,
          -3.1111922238938114,
          -2.6656769286187187,
          -4.037161304267523,
          -2.2959701796424143,
          -4.150828560517062,
          -1.7139310798546632,
          -2.8798104995449454,
          -3.2003613106134194,
          -2.8783666318941945,
          -3.7281668826085177,
          -2.793637716114076,
          -3.3175356918146464,
          -5.4518155921256035,
          -3.223991933097826,
          -2.102548712993538,
          -2.454719615471786,
          -5.451810988581844,
          -3.808335293644868,
          -3.435041507020505,
          -4.071756239988947,
          -3.7277637027000337,
          -3.7280887286803175,
          -4.410660690360591,
          -3.7993145063228546,
          -2.1300746957834047,
          -3.2497739450348053,
          -2.640945654356927,
          -2.220959306047683,
          -5.4518493499555385,
          -3.9472038918536905,
          -3.9210572949274693,
          -2.7282171875380294,
          -4.497683553099681,
          -3.613072369428841,
          -2.200374530470726,
          -3.24384461210177,
          -3.0073546246193787,
          -7,
          -4.974725026450674,
          -4.173324312537017,
          -3.6886989917101185,
          -4.673714977502912,
          -3.883788766572103,
          -3.519172991787454,
          -1.4295428940835,
          -4.752911566555018,
          -4.75297446720691,
          -7,
          -3.39502581352667,
          -2.6234108282394146,
          -2.903882803805536,
          -4.606752844325752,
          -3.8399422770510556,
          -3.2225425612955334,
          -3.4006953610117394,
          -2.6195243246375224,
          -2.324843714184909,
          -2.7965008158727054,
          -3.264055422284248,
          -7,
          -2.3852686044267117,
          -2.2215833091861974,
          -1.648171710726918,
          -3.620166685469373,
          -2.5024048809087134,
          -3.8296590289710872,
          -4.0720215357300305,
          -2.888959198348298,
          -2.76128758244713,
          -3.3038558443656467,
          -2.5076507428312356,
          -2.7517684311534323,
          -3.04598910818908,
          -3.72922746495659,
          -4.130526745384164,
          -4.10963069469661,
          -3.2570729495163198,
          -2.995368552945386,
          -3.2905636188126794,
          -7,
          -4.197026187759492,
          -3.6608975946643114,
          -3.9898163827557567,
          -2.325587207294423,
          -3.6387994113789563,
          -2.8300629327823716,
          -2.088972232225393,
          -3.5500233911040167,
          -2.3780803618804596,
          -2.3578932352904296,
          -2.005814115162866,
          -2.6730824741450308,
          -3.92060206359649,
          -2.5745622299382056,
          -4.4978093324102675,
          -3.538883185853489,
          -3.140550548300557,
          -2.8369307151325107,
          -1.9129681222406905,
          -2.691692123189126,
          -2.7177218382259345,
          -3.1251756988681234,
          -3.0161882247883973,
          -3.4632437577284456,
          -1.9510573428129632,
          -2.5675038156414707,
          -4.752942250937937,
          -7,
          -5.4518340058126755,
          -2.887067969220036,
          -2.8467366967193763,
          -3.850289281004146,
          -3.7898381227114672,
          -3.4134506510073246,
          -4.248152651817513,
          -3.283744222708833,
          -4.090682736865722,
          -3.0348160587969915,
          -3.7714312978476743,
          -3.5134074341660257,
          -2.6054054937766447,
          -3.6397071050851,
          -2.1028170491190084,
          -2.5338099046916684,
          -1.8170261065401723,
          -4.753847997272199,
          -2.2809179155135966,
          -1.8826171285306872,
          -2.723070670548517,
          -7,
          -3.653531032753514,
          -4.753245909414036,
          -2.665751780385266,
          -2.797293193949948,
          -2.766689925412973,
          -3.4207119401016124,
          -4.275877756612034,
          -5.451821730108041,
          -2.9276910886144174,
          -3.9751253198007745,
          -3.5660225067536415,
          -3.626602326942856,
          -2.8460762290468815,
          -3.7040738770877333,
          -1.785426825092026,
          -7,
          -4.752959126424497,
          -2.2621076446317563,
          -2.780265045023653,
          -3.6336761746852697,
          -3.5597869682005565,
          -3.148695049166025,
          -2.1341739419354075,
          -3.178804645370451,
          -2.7014459792761993,
          -1.9312898112904282,
          -2.8699956399169992,
          -3.59972845899828,
          -3.3408505996186073,
          -2.760084359239955,
          -2.6381982035389635,
          -2.295800343216146,
          -3.348913033546515,
          -2.6257797467621273,
          -2.0528408093390866,
          -3.8652609558675195,
          -3.136648841036588,
          -4.456924486401631,
          -2.5243952930230646,
          -3.175413721180739,
          -2.61485036404734,
          -3.0479780566846206,
          -3.690334723349453,
          -3.1157417527104747,
          -3.5394262421725897,
          -4.2784853222167785,
          -2.3493012237976245,
          -3.160453890169641,
          -2.941432342498225,
          -3.061721880100873,
          -3.4965392919327227,
          -4.2236821951943,
          -3.248848894607795,
          -3.5816083660320572,
          -3.128491583413,
          -3.2457301694120755,
          -2.2053263437697814,
          -3.921456953158924,
          -2.919031843391535,
          -1.7082095909969017,
          -2.3559534274988096,
          -3.042364962306286,
          -3.1338538323631155,
          -4.039618480853048,
          -1.7698732638523096,
          -2.890928982172711,
          -3.4103242034855046,
          -2.842119590139838,
          -1.9809387012166204,
          -1.9821451783870967,
          -4.754707550504426,
          -2.6424335601227265,
          -3.4356701134142202,
          -4.753141646600399,
          -3.6970774544704295,
          -3.1489862682916314,
          -4.416870375999975,
          -4.67488409438502,
          -1.941162923416565,
          -1.8695167124430236,
          -2.2888070603124966,
          -3.632575382630548,
          -2.427256070563432,
          -3.5948972149333307,
          -2.11770545472094,
          -4.181547240276837,
          -2.4705293932107346,
          -2.878087407900039,
          -3.2152728670850608,
          -4.849927431523094,
          -3.1087398391394285,
          -3.172282884840051,
          -2.589920354236246,
          -3.7329078712997776,
          -2.8050057580560037,
          -3.377774222209929,
          -2.2130732049854096,
          -2.4321309691020256,
          -3.9476083114045495,
          -1.9992580337565171,
          -2.199263549662286,
          -3.7241878485223547,
          -2.1775500004755646,
          -4.9753582709428334,
          -3.3529979066449345,
          -2.3310680174503204,
          -3.5025536090581117,
          -4.41075423394305,
          -4.752985205432184,
          -4.7528670703486,
          -4.974961259485409,
          -3.940474224586627,
          -1.928812549985953,
          -3.4090416060671918,
          -2.4539985977209984,
          -4.30606181471495,
          -3.0805087817900456,
          -2.282539867650608,
          -2.975459290283739,
          -3.54556672041147,
          -4.497997933100203,
          -2.9428531209508777,
          -4.84998264839255,
          -1.9956480250981299,
          -3.2751915932865505,
          -3.9612495778051544,
          -3.9772875681464983,
          -2.108182553886976,
          -3.609112439335402,
          -3.0087031950056464,
          -5.152052782798216,
          -4.607505573069506,
          -2.6283435784500924,
          -4.498403989816759,
          -3.720297152790356,
          -3.7462647282196215,
          -3.200516109714852,
          -4.7528670703486,
          -2.982956717529521,
          -5.151009576636842,
          -3.7116538764683042,
          -2.9192578788432386,
          -1.2604109603899747,
          -2.4672732956813768,
          -5.150862315007684,
          -3.662867457405056,
          -2.761238656368773,
          -3.3663264876639647,
          -3.3060217652155757,
          -7,
          -3.729267205559747,
          -2.519460226604742,
          -5.451984355041344,
          -4.0904068162207485,
          -3.852726958888889,
          -3.6209317465873228,
          -3.0961132018222703,
          -3.8090115272825527,
          -3.5903271909002226,
          -3.840327991445741,
          -3.9474873313986176,
          -3.540025634074014,
          -2.4529220306674047,
          -3.565916291001725,
          -4.673843841896885,
          -3.268541503618488,
          -3.259847906091858,
          -4.308145007944962,
          -2.4356099266236675,
          -5.151561363449798,
          -4.975074728368803,
          -2.764431226367127,
          -3.6984287038382186,
          -1.4459702182069452,
          -3.180898772908726,
          -3.4037853762493175,
          -3.0931554842829083,
          -4.85062632701075,
          -3.9303406348743843,
          -4.021155595897658,
          -3.579190698925359,
          -3.8612632080683564,
          -3.648134265580902,
          -2.97994313447669,
          -3.991010555927018,
          -4.372684981838931,
          -2.988479111564272,
          -1.8831761038277461,
          -2.947359354704174,
          -3.3207936392476864,
          -2.2616399738667665,
          -3.3281528261484916,
          -2.9714345133418503,
          -4.073096393762054,
          -2.714514051108974,
          -3.3644178393114275,
          -3.885193069546282,
          -3.9480276519900452,
          -4.173206210830642,
          -5.150860780769569,
          -2.835421213289978,
          -3.792714397167913,
          -3.829602391215558,
          -3.365273341438565,
          -1.9809381370915902,
          -3.159388533747565,
          -2.8807329970954307,
          -2.330235887509512,
          -3.3644011919351606,
          -3.472916355763714,
          -4.607519358372464,
          -3.5963939497883994,
          -7,
          -3.1832016721251284,
          -3.052674253551032,
          -3.63232733040593,
          -5.150903737388157,
          -3.7295223758548572,
          -3.8848596333686762,
          -2.483657679695685,
          -3.9756829679517423,
          -5.151411224250535,
          -7,
          -5.150894532756141,
          -5.452107050529845,
          -4.849953507030731,
          -4.975062462891647,
          -2.754312139979706,
          -3.6754774075729344,
          -3.7298445624133887,
          -4.173724392544616,
          -4.498426962809987,
          -4.497950407312327,
          -4.130152966318875,
          -3.861675308158829,
          -4.411175696829874,
          -3.4769475021740748,
          -3.9484893763004485,
          -2.9047450178455057,
          -3.4511073667886003,
          -3.980881682840616,
          -3.934144811792477,
          -5.150903737388157,
          -3.2006179734428333,
          -4.306432686997816,
          -7,
          -2.353090061965932,
          -3.9475945305730864,
          -3.9755742521196726,
          -3.7079866314297973,
          -4.023886248324208,
          -3.6555850665814984,
          -4.673922062342239,
          -4.452146919101275,
          -3.9494174541647484,
          -5.15096663048619,
          -3.4987724041202775,
          -3.8408111814354173,
          -5.151988516548684,
          -5.451841677951873,
          -2.9041743682841634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.571177790153091,
          -7,
          -7,
          -7,
          -7,
          -4.214022148700433,
          -3.139249217571607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4137466840917785,
          -7,
          -7,
          -3.7329889622941375,
          -7,
          -2.916980047320382,
          -7,
          -3.3334472744967503,
          -7,
          -7,
          -4.866346422749602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.01717251394567,
          -7,
          -3.371621927176021,
          -7,
          -4.3634239329171765,
          -1.988686334642222,
          -2.9818186071706636,
          -3.3475251599986895,
          -3.1332194567324945,
          -3.648652695131223,
          -7,
          -7,
          -7,
          -2.8447877188278463,
          -7,
          -3.0049336841470917,
          -2.6086788196761854,
          -3.4310419453358856,
          -3.497758718287268,
          -7,
          -7,
          -3.15106325335375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4144719496293026,
          -7,
          -3.0390967104414504,
          -7,
          -2.5017437296279943,
          -7,
          -4.648529141437505,
          -7,
          -2.8915374576725643,
          -7,
          -7,
          -3.579440597139797,
          -7,
          -7,
          -7,
          -2.3045828424686814,
          -3.0322157032979815,
          -1.8281833736752127,
          -7,
          -2.800717078282385,
          -7,
          -4.23054854221511,
          -7,
          -4.022758194236769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.591954555046735,
          -7,
          -4.152043602487651,
          -7,
          -7,
          -7,
          -2.4688548185775088,
          -7,
          -3.3912880485952974,
          -7,
          -2.488953400332635,
          -2.32624439777699,
          -7,
          -7,
          -2.8382192219076257,
          -7,
          -4.0851478121269045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8743368353973677,
          -4.755020665632212,
          -7,
          -7,
          -7,
          -4.99427314897317,
          -2.538133687250669,
          -7,
          -7,
          -7,
          -7,
          -3.824060717418653,
          -3.483587296968894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7309436934277356,
          -3.7349597612724454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8606374167737547,
          -7,
          -3.8309092995464433,
          -7,
          -7,
          -7,
          -3.1441879963952775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.721260875288632,
          -7,
          -3.4095950193968156,
          -7,
          -7,
          -3.2790963297476012,
          -2.946206553842783,
          -2.372451701409366,
          -3.7621256042324025,
          -7,
          -7,
          -7,
          -7,
          -1.9989129043587859,
          -7,
          -7,
          -3.2272695167098435,
          -7,
          -7,
          -7,
          -7,
          -3.0787382554296308,
          -7,
          -7,
          -3.291812687467119,
          -2.895146189375992,
          -7,
          -3.2278867046136734,
          -7,
          -7,
          -3.228913405994688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.474871583227693,
          -7,
          -7,
          -7,
          -3.230704313612569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9176805224430487,
          -4.357687152332334,
          -3.857211842316892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5896145406312665,
          -3.8328281295393536,
          -5.235906186117268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2460059040760294,
          -3.239049093140191,
          -7,
          -7,
          -2.8055008581584002,
          -2.8744818176994666,
          -7,
          -2.790988475088816,
          -3.2586372827240764,
          -4.2439156770217075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8086610190597323,
          -7,
          -3.041326877978479,
          -7,
          -7,
          -7,
          -3.7144555024904737,
          -7,
          -7,
          -2.5732585015417953,
          -4.234432913530507,
          -7,
          -7,
          -7,
          -7,
          -3.7453871213200087,
          -7,
          -3.419955748489758,
          -3.843481943039958,
          -7,
          -7,
          -2.798650645445269,
          -2.3272129285076972,
          -2.0280287236002437,
          -2.5923354037837143,
          -7,
          -2.287241711178348,
          -7,
          -7,
          -3.245265839457461,
          -7,
          -2.571514733712986,
          -3.3293470222286112,
          -7,
          -7,
          -7,
          -4.132061072897837,
          -3.595055089759304,
          -7,
          -7,
          -7,
          -7,
          -3.594060901270418,
          -7,
          -3.9586594270529334,
          -3.2116544005531824,
          -7,
          -7,
          -3.532117116248804,
          -7,
          -4.874196962157325,
          -2.455957010377878,
          -7,
          -7,
          -7,
          -7,
          -2.7771159829520387,
          -7,
          -7,
          -7,
          -7,
          -3.333850145102545,
          -7,
          -7,
          -7,
          -7,
          -1.993226223490665,
          -7,
          -7,
          -7,
          -4.87533217863164,
          -7,
          -2.4509485680967495,
          -4.717870132737748,
          -3.4784221877400805,
          -7,
          -7,
          -7,
          -2.9410142437055695,
          -7,
          -3.7259116322950483,
          -3.3348556896172914,
          -7,
          -7,
          -2.121438887639747,
          -2.4076741092293186,
          -7,
          -2.447158031342219,
          -3.349180358996378,
          -7,
          -2.849542252005017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.072948031792886,
          -7,
          -4.591131416423124,
          -4.880613542175367,
          -7,
          -7,
          -7,
          -7,
          -4.219763480832674,
          -4.280760426326267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.677634323358943,
          -4.3243030374868345,
          -4.194042327886423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.369642518405259,
          -3.2084002959915017,
          -3.18904090790901,
          -7,
          -7,
          -7,
          -4.194155961022921,
          -2.7891839552635496,
          -3.02201573981772,
          -3.7429449715938286,
          -4.008619094856489,
          -3.8357539675193832,
          -7,
          -3.835785662062868,
          -7,
          -7,
          -3.7969903905456865,
          -4.373849508088649,
          -7,
          -7,
          -2.945526249464059,
          -3.7889118350573208,
          -4.7064549077057105,
          -7,
          -3.3910233693700995,
          -7,
          -4.110584900809918,
          -7,
          -4.56033711687566,
          -3.299906616595543,
          -4.218797998111738,
          -7,
          -3.118078630895967,
          -7,
          -4.3059386314136505,
          -7,
          -3.738093174367565,
          -3.808075868091307,
          -3.4668511507782,
          -4.186928096934767,
          -7,
          -3.424990468728342,
          -4.257184013472698,
          -7,
          -4.171494377994071,
          -7,
          -7,
          -3.6540802353065707,
          -4.2964238485037765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.168600594123457,
          -7,
          -3.4858917046574147,
          -7,
          -7,
          -3.644162759365265,
          -7,
          -2.8344207036815328,
          -7,
          -3.1476763242410986,
          -7,
          -3.71821095473187,
          -3.0159881053841304,
          -7,
          -7,
          -7,
          -3.329397879361043,
          -3.190984983213069,
          -7,
          -7,
          -3.3031240291456903,
          -7,
          -3.04493154614916,
          -7,
          -3.5303277897780863,
          -7,
          -3.7125655278733083,
          -7,
          -7,
          -7,
          -4.094631819313487,
          -7,
          -7,
          -7,
          -2.733397909361422,
          -7,
          -3.4702634469650784,
          -7,
          -7,
          -4.2518084986240465,
          -7,
          -7,
          -7,
          -3.2113875529368587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8464608251293324,
          -3.520876381688342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5083130299937353,
          -3.466274321789292,
          -7,
          -2.9172428579074663,
          -7,
          -7,
          -7,
          -3.7759015788916743,
          -7,
          -7,
          -3.503994848765824,
          -7,
          -7,
          -3.1936810295412816,
          -3.138994979537685,
          -7,
          -7,
          -3.6073048707733277,
          -7,
          -3.7389390312034796,
          -7,
          -3.7329162073263795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0755469613925306,
          -7,
          -3.9278064918639526,
          -7,
          -7,
          -3.5467400252092727,
          -7,
          -2.9737434376601035,
          -7,
          -7,
          -7,
          -3.6475785542124552,
          -3.368286884902131,
          -7,
          -7,
          -7,
          -7,
          -3.441328487681495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.841359470454855,
          -2.921686475483602,
          -7,
          -7,
          -3.395675785269936,
          -2.9250541203118425,
          -3.4102034170894533,
          -3.7652213663049805,
          -7,
          -7,
          -7,
          -3.538824988937904,
          -7,
          -7,
          -3.799891684656865,
          -3.041392685158225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6578204560156973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.203932652764692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3939260065858368,
          -7,
          -7,
          -4.3954685131443085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6632139160261286,
          -7,
          -7,
          -3.273926780100526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.907008053689199,
          -3.399327532158679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4578818967339924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4533183400470375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.60151678365001,
          -3.7709992051639407,
          -2.814913181275074,
          -7,
          -7,
          -7,
          -4.379975935132622,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165244326125311,
          -7,
          -7,
          -7,
          -7,
          -4.6917046245223535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2671717284030137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.330684277550962,
          -7,
          -7,
          -7,
          -4.538385197019912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.846337112129805,
          -7,
          -7,
          -2.8948696567452528,
          -7,
          -7,
          -7,
          -4.337956629474105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.352913447606274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.60151678365001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8071483009890663,
          -7,
          -7,
          -7,
          -2.60422605308447,
          -7,
          -2.128722284338427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.586587304671755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.412740466538526,
          -7,
          -7,
          -7,
          -7,
          -3.9792751475910233,
          -7,
          -7,
          -3.3903167684708406,
          -7,
          -7,
          -7,
          -7,
          -3.061452479087193,
          -7,
          -3.079362164393046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.436374704897461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4638929889859074,
          -3.2161659022859928,
          -3.184123354239671,
          -7,
          -7,
          -3.375846436309156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.708420900134713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.875141745177931,
          -7,
          -7,
          -4.5403253028737955,
          -3.753812783564702,
          -7,
          -7,
          -7,
          -7,
          -3.7628285531890904,
          -3.696618459232225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.234264124378789,
          -7,
          -3.3140779917792127,
          -2.6866362692622934,
          -3.7209169341271506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.979092900638326,
          -7,
          -7,
          -4.262284934377744,
          -4.677807630689279,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.487530054083552,
          -7,
          -7,
          -2.275886960301226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.795135868017322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.182129214052998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.415974411376566,
          -7,
          -7,
          -4.243286146083446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.869620845360168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.627427309011094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.927626962444954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.094390761004154,
          -7,
          -7,
          -7,
          -3.2412973871099933,
          -7,
          -7,
          -4.863905494593343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.17260293120986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0777311796523925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.537567257152675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.132579847659737,
          -7,
          -5.451837074684619,
          -7,
          -7,
          -7,
          -2.2546688990549204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.051789021035889,
          -7,
          -7,
          -3.544811911757776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5428254269591797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.792181496149679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.642662331442035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3688445068258215,
          -7,
          -7,
          -7,
          -2.2227164711475833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5550944485783194,
          -2.7972675408307164,
          -2.8536982117761744,
          -3.6084190513172856,
          -7,
          -4.498310553789601,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.064723726084838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4988157877634483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.989996790919562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941779678173749,
          -7,
          -7,
          -5.34683590735996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4740705032150436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9179254220647413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4632956099620027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.346622857416885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.605305046141109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.16418245777542,
          -7,
          -7,
          -7,
          -3.9043097257675417,
          -3.9202798946329485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6465801531517243,
          -3.206987694756408,
          -2.8627275283179747,
          -3.220631019448092,
          -3.702919331637138,
          -7,
          -7,
          -2.8915374576725643,
          -2.9084850188786495,
          -3.239049093140191,
          -7,
          -3.54553684113762,
          -7,
          -7,
          -7,
          -7,
          -3.0709609158009337,
          -3.0153597554092144,
          -3.53198955141255,
          -7,
          -2.463395230212905,
          -7,
          -4.063230121978396,
          -7,
          -3.0927206446840994,
          -7,
          -7,
          -3.3738311450738303,
          -7,
          -7,
          -7,
          -7,
          -3.3234583668494677,
          -3.4951225394659438,
          -7,
          -3.0773679052841567,
          -3.5166014715265344,
          -7,
          -2.8438554226231614,
          -3.191870015444722,
          -7,
          -7,
          -3.185258765296585,
          -7,
          -7,
          -7,
          -4.456092614887902,
          -7,
          -2.9375178920173464,
          -7,
          -7,
          -7,
          -2.459863471952342,
          -7,
          -7,
          -4.085112113266837,
          -7,
          -3.116939646550756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.539828558377898,
          -3.2843179154306097,
          -2.8603380065709936,
          -7,
          -4.0271099660758445,
          -3.2793246654426103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9894498176666917,
          -7,
          -3.1365620365899805,
          -7,
          -3.664735968518705,
          -3.5392195249770073,
          -3.106870544478654,
          -7,
          -2.9182925127553556,
          -7,
          -2.392057108603371,
          -7,
          -7,
          -7,
          -3.586137025230793,
          -7,
          -7,
          -2.750594096772079,
          -4.279993758423351,
          -7,
          -7,
          -3.1189257528257768,
          -3.2241378422167073,
          -7,
          -3.1956229435869368,
          -7,
          -7,
          -7,
          -3.5289167002776547,
          -2.674992288098586,
          -7,
          -7,
          -4.374473389063976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.742057076502348,
          -7,
          -3.5626199494262973,
          -3.714497408649806,
          -7,
          -7,
          -7,
          -7,
          -2.760422483423212,
          -7,
          -7,
          -7,
          -7,
          -3.1398790864012365,
          -3.9440506304214624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0490628897941248,
          -2.0670546754793615,
          -2.2584776449785173,
          -2.1428473883091104,
          -2.307496037913213,
          -7,
          -3.5953461646750866,
          -7,
          -7,
          -2.2546688990549204,
          -7,
          -2.2556744435696667,
          -7,
          -7,
          -3.6396358768118477,
          -7,
          -7,
          -7,
          -7,
          -3.5087893523336393,
          -7,
          -7,
          -7,
          -7,
          -2.6527296960692475,
          -7,
          -7,
          -2.7528164311882715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.348927619178392,
          -1.9358735272690675,
          -7,
          -7,
          -7,
          -7,
          -3.296665190261531,
          -7,
          -7,
          -3.2917387461232948,
          -3.4112829130173843,
          -7,
          -3.441695135640717,
          -7,
          -3.271318745081179,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0692980121155293,
          -7,
          -3.101403350555331,
          -3.4524509243568873,
          -2.6638055872727677,
          -4.142733511313519,
          -7,
          -7,
          -2.5720967679505193,
          -7,
          -7,
          -7,
          -2.9618954736678504,
          -3.3944516808262164,
          -7,
          -2.603144372620182,
          -2.8615344108590377,
          -2.8662873390841948,
          -2.660865478003869,
          -3.011993114659257,
          -2.575187844927661,
          -7,
          -1.7887681071554584,
          -4.166104344841616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8397921844453293,
          -7,
          -7,
          -7,
          -3.5369370227046737,
          -7,
          -7,
          -7,
          -3.6233113280355895,
          -7,
          -4.538435481499883,
          -1.9075378113452577,
          -4.713935529890935,
          -7,
          -7,
          -7,
          -2.5272861094566683,
          -3.766635886310268,
          -3.3743358452839174,
          -3.743588150159904,
          -3.5593679094633317,
          -7,
          -7,
          -2.4790471757557007,
          -2.4693310102934105,
          -2.4625341190352854,
          -1.7680458141024167,
          -7,
          -3.0253058652647704,
          -2.101599797231485,
          -7,
          -7,
          -7,
          -7,
          -3.3433101031623416,
          -7,
          -7,
          -7,
          -5.13301168709029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0211892990699383,
          -7,
          -7,
          -7,
          -2.4261044280965076,
          -2.3527611917238307,
          -2.3070203593531686,
          -3.4216039268698313,
          -5.129654451292561,
          -3.1110383616634296,
          -7,
          -7,
          -7,
          -3.780173243642594,
          -7,
          -7,
          -2.1576917668933566,
          -3.1624150361064465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7280831092284825,
          -7,
          -7,
          -4.080872901965097,
          -3.6148972160331345,
          -5.097346982881885,
          -7,
          -7,
          -3.94079447058587,
          -3.020430344344904,
          -7,
          -7,
          -7,
          -7,
          -3.506234359612126,
          -3.2706788361447066,
          -3.3875677794171883,
          -7,
          -7,
          -7,
          -1.971444539546947,
          -1.8291344242299696,
          -1.8817649496862066,
          -1.4693830636877623,
          -2.1375123531221294,
          -3.276853614306531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.581164284641671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5849754022565214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1784013415337555,
          -7,
          -4.590165392435617,
          -3.903849338096681,
          -7,
          -7,
          -3.4109458586877746,
          -4.9352678844590505,
          -2.39050430210634,
          -3.5364321758220134,
          -7,
          -4.362166629347626,
          -3.905238042799656,
          -7,
          -7,
          -7,
          -2.2571984261393445,
          -7,
          -7,
          -7,
          -7,
          -4.038743761778693,
          -5.48841392039751,
          -7,
          -2.3142886609474975,
          -2.1539841469356036,
          -7,
          -4.258071901096532,
          -7,
          -7,
          -3.7873187566245474,
          -7,
          -7,
          -7,
          -7,
          -4.484036334901612,
          -7,
          -7,
          -7,
          -3.9968617684906733,
          -7,
          -7,
          -4.100040513510458,
          -4.656491094301585,
          -7,
          -4.06936036427513,
          -7,
          -7,
          -4.310417144932937,
          -4.302504092355714,
          -7,
          -2.4292137870854282,
          -7,
          -7,
          -7,
          -7,
          -2.5673625074157043,
          -3.4144998202843357,
          -7,
          -7,
          -3.6496268868405295,
          -7,
          -2.8898617212581885,
          -7,
          -7,
          -7,
          -4.0212513367076275,
          -3.646893624167745,
          -7,
          -7,
          -7,
          -7,
          -3.693726948923647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4154503326227226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.39667001368851,
          -7,
          -7,
          -7,
          -2.38104186650127,
          -7,
          -2.7299742856995555,
          -7,
          -2.986995539724382,
          -3.4801507252732806,
          -7,
          -7,
          -7,
          -2.6766936096248664,
          -7,
          -7,
          -7,
          -3.2140486794119414,
          -7,
          -3.34143452457814,
          -7,
          -7,
          -7,
          -2.8796692056320534,
          -2.376455288899979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.087603973687808,
          -3.4726218995463567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0870712059065353,
          -7,
          -7,
          -3.091315159697223,
          -3.8237349883987313,
          -7,
          -7,
          -3.337725413884801,
          -3.788572366037187,
          -3.172310968521954,
          -3.4192947217534604,
          -3.534026106056135,
          -7,
          -3.760497875226527,
          -7,
          -3.743979865241843,
          -7,
          -7,
          -7,
          -2.924795995797912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.232449724062003,
          -7,
          -7,
          -3.4039412508343103,
          -7,
          -7,
          -7,
          -2.8444771757456815,
          -7,
          -2.5255075609238915,
          -2.995020606124758,
          -7,
          -7,
          -3.3242824552976926,
          -3.203032887014711,
          -3.798529799485261,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7697464671794534,
          -7,
          -7,
          -7,
          -3.143014800254095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4611300237200586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.816241299991783,
          -7,
          -7,
          -7,
          -7,
          -3.903616250068696,
          -7,
          -7,
          -2.815577748324267,
          -7,
          -4.212799980625567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.339292402768765,
          -2.740926342372719,
          -7,
          -7,
          -4.293147302557646,
          -7,
          -7,
          -7,
          -3.3240765797394864,
          -7,
          -2.9304395947667,
          -4.020905585532556,
          -3.077731179652392,
          -7,
          -7,
          -7,
          -3.0064660422492318,
          -2.851869600729766,
          -3.1870975005834774,
          -7,
          -3.061640934061686,
          -7,
          -4.296326647059846,
          -7,
          -2.960470777534299,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.732383036370039,
          -7,
          -3.4285667129921897,
          -7,
          -7,
          -3.030599721965951,
          -3.1439511164239637,
          -7,
          -7,
          -7,
          -7,
          -3.0081741840064264,
          -3.570893036218392,
          -7,
          -2.795184589682424,
          -7,
          -3.40671045860979,
          -7,
          -7,
          -2.9355072658247128,
          -2.7715874808812555,
          -7,
          -4.523434286746437,
          -7,
          -2.66029616027073,
          -7,
          -7,
          -3.877946951629188,
          -7,
          -7,
          -7,
          -3.447623097760286,
          -3.0132586652835167,
          -3.497067936398505,
          -7,
          -7,
          -7,
          -4.531486580994901,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2581581933407944,
          -7,
          -3.586812269443376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0710070168021875,
          -2.710963118995276,
          -7,
          -7,
          -2.484299839346786,
          -3.2990894370487327,
          -7,
          -7,
          -7,
          -7,
          -3.783224463447248,
          -7,
          -7,
          -3.3400473176613934,
          -3.5478977175630972,
          -7,
          -3.071513805095089,
          -3.4748861346502506,
          -7,
          -7,
          -7,
          -7,
          -4.295065447601705,
          -3.127428777851599,
          -7,
          -3.6092741724045876,
          -7,
          -7,
          -3.823061039927238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.030194785356751,
          -3.731266349075492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.843083210487105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.100370545117563,
          -2.600791448229794,
          -2.492061604512599,
          -2.478162312705756,
          -1.7752983053370275,
          -7,
          -4.020954854652503,
          -1.9989129043587859,
          -7,
          -7,
          -2.2556744435696667,
          -7,
          -7,
          -7,
          -3.4469511751907005,
          -7,
          -7,
          -7,
          -7,
          -3.5207608747640986,
          -7,
          -7,
          -3.1103652106913016,
          -7,
          -7,
          -7,
          -7,
          -2.660549282517093,
          -7,
          -3.6330642726914992,
          -7,
          -3.667452952889954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5982066794435963,
          -7,
          -7,
          -7,
          -3.2187979981117376,
          -7,
          -7,
          -3.443262987458695,
          -3.3527611917238307,
          -7,
          -7,
          -7,
          -3.5532760461371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9283958522567137,
          -7,
          -7,
          -3.213464629039556,
          -7,
          -7,
          -5.712992120582704,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -7,
          -7,
          -7,
          -3.2345172835126865,
          -2.623766000133931,
          -2.60422605308447,
          -7,
          -2.166578109919652,
          -2.846955325019824,
          -1.8440627725826517,
          -2.45484486000851,
          -1.4165612637504499,
          -4.097539903417536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6924062348336304,
          -7,
          -3.0253058652647704,
          -7,
          -7,
          -7,
          -3.5159400420933182,
          -7,
          -7,
          -7,
          -4.315676520348013,
          -7,
          -7,
          -3.0338256939533106,
          -4.711199635231979,
          -7,
          -7,
          -7,
          -3.5154764413823756,
          -7,
          -3.6603910984024672,
          -7,
          -3.84060787900929,
          -7,
          -7,
          -2.765668554759014,
          -2.2032142586949006,
          -2.2799709653992704,
          -2.1712387562612694,
          -7,
          -2.260667536990012,
          -2.3862016054007933,
          -1.7172863415602266,
          -7,
          -7,
          -7,
          -3.025561859661751,
          -7,
          -3.4382258076045296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9564565834098997,
          -3.5067755366066433,
          -3.18447848916984,
          -2.811127970852324,
          -1.9861128136696526,
          -7,
          -5.527388845652158,
          -3.3938091036290334,
          -7,
          -7,
          -7,
          -7,
          -3.6186755388851397,
          -2.909556029241175,
          -2.2909245593827543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1082266563749283,
          -3.017555014414844,
          -7,
          -4.857127364488181,
          -4.38747881199254,
          -4.875305557698496,
          -7,
          -3.491921712586151,
          -5.018717137982806,
          -3.7762652182681093,
          -7,
          -7,
          -7,
          -7,
          -3.784831178124469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2546688990549204,
          -2.518075036877517,
          -1.6343092970463176,
          -2.644143050509919,
          -2.1122697684172707,
          -3.247591421035026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.880350478958987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.468716471515472,
          -7,
          -3.66797192812771,
          -3.4085226171161014,
          -7,
          -7,
          -7,
          -5.235482995106691,
          -1.9496158605591523,
          -3.4933186082321015,
          -7,
          -4.008401429472742,
          -4.379495876529263,
          -7,
          -7,
          -7,
          -2.2885473000393515,
          -7,
          -7,
          -7,
          -7,
          -3.499992878560925,
          -5.186922449008297,
          -5.405399298863896,
          -7,
          -2.8419848045901137,
          -7,
          -3.8414605469662466,
          -7,
          -5.405377099554486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305609289566193,
          -7,
          -7,
          -7,
          -3.9439175024002817,
          -7,
          -3.0265332645232967,
          -4.244583864390973,
          -4.654931807537483,
          -7,
          -3.985736838507217,
          -7,
          -7,
          -4.608001568513314,
          -7,
          -7,
          -2.0782755220866007,
          -7,
          -7,
          -7,
          -7,
          -3.0549958615291417,
          -3.7065471026403576,
          -7,
          -3.2796669440484556,
          -3.6432552250247716,
          -7,
          -2.396417311708544,
          -7,
          -7,
          -7,
          -3.894039000804609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.66247450375031,
          -7,
          -7,
          -3.777209258145685,
          -7,
          -7,
          -7,
          -2.5220528008688223,
          -7,
          -4.011739561388318,
          -7,
          -7,
          -7,
          -4.492453062351789,
          -7,
          -7,
          -7,
          -2.572770615225975,
          -7,
          -3.4634450317704277,
          -7,
          -2.605305046141109,
          -3.29605548290054,
          -7,
          -7,
          -7,
          -3.198931869932209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0630830451223976,
          -2.7353327063206136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.849214606209089,
          -3.4837338052460667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0299921753778474,
          -3.1025023091854522,
          -7,
          -7,
          -3.491781775584166,
          -3.3997246084084973,
          -3.3157604906657347,
          -7,
          -3.3508722985960704,
          -7,
          -7,
          -7,
          -4.032175376961363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.058426024457005,
          -7,
          -7,
          -7,
          -7,
          -3.701148412597393,
          -7,
          -3.4443571256560275,
          -7,
          -7,
          -7,
          -2.4943534012921837,
          -3.187708686423428,
          -7,
          -7,
          -2.345128574198131,
          -3.104145550554008,
          -7,
          -3.037027879755775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3001605369513523,
          -7,
          -7,
          -7,
          -7,
          -3.0273496077747564,
          -7,
          -7,
          -7,
          -3.8067902715840667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7992578188157653,
          -2.3205616801952367,
          -3.00774777800074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.840106094456758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3014478030652405,
          -7,
          -7,
          -7,
          -3.8936508169859634,
          -4.211093831058964,
          -7,
          -7,
          -7,
          -2.7363965022766426,
          -7,
          -3.8608169638645378,
          -7,
          -7,
          -2.758438753140039,
          -4.01548433403675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.166678718451888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.363078968512937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.049605612594973,
          -7,
          -3.1109262422664203,
          -3.2347702951609167,
          -3.363848266340793,
          -3.4385423487861106,
          -3.601299310194338,
          -2.7900035203904894,
          -7,
          -3.0038911662369103,
          -3.4352071032407476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14908048591103,
          -7,
          -7,
          -7,
          -7,
          -2.8838236063586025,
          -3.6287974855667104,
          -2.4191293077419758,
          -3.4234097277330933,
          -3.7634345046757764,
          -7,
          -3.348499570283838,
          -7,
          -1.5240201243391467,
          -3.573103783163991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1868151244474543,
          -3.539327063539375,
          -3.2528530309798933,
          -7,
          -3.8322508140124287,
          -3.533772058384718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5795549604009986,
          -7,
          -4.148664339982236,
          -7,
          -7,
          -7,
          -3.369447790383294,
          -7,
          -7,
          -7,
          -7,
          -3.0980969848947804,
          -7,
          -7,
          -3.103803720955957,
          -7,
          -3.907052884087371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.146472577133757,
          -7,
          -7,
          -7,
          -7,
          -3.821666345224573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153143856513743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.022040758942761,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.168202746842631,
          -7,
          -7,
          -3.3690302218091532,
          -7,
          -3.875177059814704,
          -7,
          -7,
          -3.6739680677887727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0283678836970616,
          -3.2215707121664607,
          -7,
          -7,
          -2.3314272965207428,
          -7,
          -3.520637633507743,
          -7,
          -3.673941998634088,
          -3.580696939712437,
          -7,
          -7,
          -3.1986570869544226,
          -3.2581581933407944,
          -7,
          -7,
          -2.926753905189737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8640955734242475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.375846436309156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7573960287930244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.829303772831025,
          -5.712938293718744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.243370466922834,
          -7,
          -7,
          -7,
          -7,
          -2.99563519459755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.778585327862962,
          -7,
          -7,
          -7,
          -7,
          -4.314330782520869,
          -7,
          -4.23246243853121,
          -7,
          -4.409611930846435,
          -7,
          -7,
          -7,
          -7,
          -3.435525851498655,
          -3.958468318366944,
          -3.2345172835126865,
          -7,
          -3.184123354239671,
          -7,
          -2.7151673578484576,
          -7,
          -3.1492191126553797,
          -3.4216039268698313,
          -7,
          -2.826722520168992,
          -7,
          -2.8048206787211623,
          -7,
          -7,
          -7,
          -3.4487578345818384,
          -2.5188428262865648,
          -7,
          -7,
          -3.8094186141437016,
          -3.8900855267163252,
          -2.7489628612561616,
          -4.284836637642396,
          -7,
          -7,
          -7,
          -7,
          -3.3510228525841237,
          -3.196728722623287,
          -3.7824009524965296,
          -7,
          -7,
          -7,
          -4.983273090024392,
          -3.021602716028242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.393399695293102,
          -7,
          -7,
          -3.0108297779595223,
          -7,
          -4.157722642992314,
          -4.085272735033534,
          -4.761321692144821,
          -7,
          -3.1861083798132053,
          -4.541312928143722,
          -3.470410490975931,
          -7,
          -7,
          -7,
          -3.2286569581089353,
          -3.3028357965272437,
          -3.4156409798961542,
          -7,
          -7,
          -7,
          -2.784082117602856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1401253083573186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8744818176994666,
          -7,
          -4.277889868055238,
          -3.9740047968974146,
          -7,
          -7,
          -7,
          -7,
          -4.279507247601757,
          -7,
          -4.371990911464915,
          -4.922253029113159,
          -7,
          -7,
          -7,
          -7,
          -3.5734518220354854,
          -4.531185030184496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.296657878845073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.613355477979113,
          -7,
          -7,
          -4.46376984680511,
          -3.8822398480188234,
          -7,
          -4.327297617895854,
          -7,
          -4.281038420091887,
          -7,
          -7,
          -7,
          -4.1842180852863775,
          -4.077849178425541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292331401620799,
          -4.209060446571925,
          -5.104311241070395,
          -7,
          -7,
          -7,
          -4.955211352309952,
          -7,
          -5.405267794099257,
          -7,
          -7,
          -7,
          -7,
          -4.431251154695155,
          -4.782300592283702,
          -3.5961570809161723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040117542542043,
          -7,
          -7,
          -4.870296586555347,
          -7,
          -7,
          -4.306264147948217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.166977447595255,
          -7,
          -3.579726448846229,
          -7,
          -7,
          -3.8639173769578603,
          -7,
          -2.986995539724382,
          -7,
          -7,
          -7,
          -4.319633418942298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.658106835506393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5160062303860475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3953124115330064,
          -4.787425049380184,
          -7,
          -7,
          -3.3311234878466514,
          -7,
          -3.152441238058955,
          -7,
          -3.1914510144648953,
          -4.249124949303172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.256717745977487,
          -3.982904117792628,
          -7,
          -7,
          -3.0549958615291417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.915747584963322,
          -3.4496326504700745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4872798164430687,
          -3.453471233722936,
          -7,
          -7,
          -3.82687351534638,
          -7,
          -3.730136003996678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.545603968481417,
          -7,
          -3.4342494523964753,
          -7,
          -7,
          -7,
          -7,
          -3.6591552809406296,
          -7,
          -7,
          -7,
          -7,
          -4.393926006585837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8976270912904414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0746336182969043,
          -7,
          -4.105714510570921,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.921166050637739,
          -7,
          -4.497454909613176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.726887425714068,
          -7,
          -7,
          -7,
          -4.1890128046002415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.643057683751453,
          -4.395505782843064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -7,
          -7,
          -3.44870631990508,
          -7,
          -7,
          -7,
          -4.441622878106768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.035829825252828,
          -7,
          -4.004014894560444,
          -3.404833716619938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.53832233323144,
          -3.969788537414939,
          -7,
          -7,
          -7,
          -7,
          -3.013342904345347,
          -3.6073477767684134,
          -7,
          -7,
          -4.221502261586565,
          -2.469822015978163,
          -7,
          -7,
          -2.3654879848909,
          -3.862191031051597,
          -7,
          -7,
          -7,
          -3.4038066105474227,
          -7,
          -3.4581844355702627,
          -7,
          -7,
          -7,
          -4.326663506724679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8412029961307326,
          -7,
          -7,
          -7,
          -3.962179852908768,
          -7,
          -7,
          -7,
          -3.6049816296074315,
          -3.7715874808812555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9590413923210934,
          -7,
          -4.752609209479315,
          -7,
          -3.8249064713021124,
          -7,
          -4.992884745367121,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9933039379194746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019157847739282,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.76051043925476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.801403710017355,
          -7,
          -3.3527611917238307,
          -3.329194415088451,
          -3.2052043639481447,
          -7,
          -7,
          -7,
          -4.004745018844494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0283678836970616,
          -7,
          -3.9101439610645126,
          -7,
          -7,
          -7,
          -7,
          -3.9911971731459106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.33665982345442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.123753668755842,
          -5.411734156093602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30999192878118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.653974273405593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2137832993353044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.226182808052582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5896145406312665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.855500983970402,
          -7,
          -5.0970032315517395,
          -7,
          -3.4726833296130404,
          -5.017596721365986,
          -7,
          -7,
          -7,
          -7,
          -3.502836638621003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721357130022457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.317770922950241,
          -7,
          -7,
          -4.073388381115178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.632728009129432,
          -3.9805487393597705,
          -7,
          -4.437068470428161,
          -4.660405337332384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.990427658485263,
          -5.186542457292524,
          -7,
          -7,
          -7,
          -7,
          -4.6531835598447415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.31626397191069,
          -7,
          -4.780828369673003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.465120013852074,
          -7,
          -7,
          -5.347025414414368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464995978618864,
          -7,
          -7,
          -7,
          -7,
          -4.337039739920378,
          -7,
          -2.9385197251764916,
          -7,
          -7,
          -7,
          -4.795358551023385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9229848157088827,
          -7,
          -3.4212747912103465,
          -7,
          -7,
          -4.244079106672388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9735434685324895,
          -7,
          -7,
          -3.5056925074122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.443695110606494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7831886910752575,
          -7,
          -7,
          -7,
          -4.326704445074325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021189299069938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7671558660821804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.078042316010944,
          -3.908806599405674,
          -3.9082168530893924,
          -7,
          -7,
          -3.6714968222018745,
          -3.2590201740708116,
          -7,
          -3.3310221710418286,
          -2.736238137552537,
          -7,
          -7,
          -3.6173149332982937,
          -3.5230772345351196,
          -2.724621710695205,
          -3.952598734529773,
          -7,
          -7,
          -3.6149499184762433,
          -3.609914410085998,
          -2.3904304068932922,
          -3.1861649617274153,
          -7,
          -1.8885237048094758,
          -2.6337492352334286,
          -3.644832328825636,
          -3.146334793350271,
          -7,
          -2.81135154588012,
          -3.0013009330204183,
          -3.024895960107485,
          -3.075783043496683,
          -3.343605508104172,
          -3.3120715213029315,
          -3.9151887051731564,
          -2.546851001781394,
          -3.139609254468416,
          -2.8062321697031862,
          -2.269471978837336,
          -3.6086864575703634,
          -3.151807470681409,
          -2.544429805705557,
          -3.358208575770563,
          -3.4408041673450787,
          -3.9318137039591394,
          -3.3895204658463776,
          -3.6505503492394107,
          -3.2351314848706103,
          -3.9253636673541017,
          -2.9903881924169533,
          -4.035469763481283,
          -2.4190319759437413,
          -2.244720457047523,
          -2.146396404002692,
          -2.5392852461514552,
          -2.3858296186697827,
          -2.9110008520221933,
          -7,
          -3.4625477288026643,
          -2.6180062349855286,
          -2.861683729919097,
          -3.0421323296433975,
          -3.9465013905695874,
          -3.914977472444331,
          -3.636036316353447,
          -3.276729804479128,
          -2.920499480678795,
          -2.5925468421919335,
          -7,
          -3.1042736673203346,
          -7,
          -3.161401280230616,
          -2.8458273340259437,
          -3.136456317387437,
          -3.537609240282091,
          -3.2515550585595285,
          -3.436374704897461,
          -1.8784410040430806,
          -7,
          -3.9226735678585545,
          -2.818398039146461,
          -3.510410948010177,
          -2.5810285888174453,
          -3.605574376060999,
          -2.09796797816439,
          -2.6572068680363374,
          -2.3039292503046536,
          -3.746556361410369,
          -2.6134281423890964,
          -7,
          -2.669061616792209,
          -2.8406548916005177,
          -3.1115505391909464,
          -3.912540882790638,
          -7,
          -7,
          -2.0648322197385736,
          -3.400753787896711,
          -3.7594411971336976,
          -3.618048096712093,
          -3.5597071786574506,
          -3.3381575642717727,
          -2.628281351530588,
          -3.4307735806966204,
          -1.6448110547410144,
          -3.308671106715418,
          -3.223582462425357,
          -3.660106221723244,
          -2.410593870705327,
          -2.088871143006184,
          -3.6327608884794387,
          -3.223080397831155,
          -2.191362752198175,
          -3.6582976503081897,
          -2.57237951473286,
          -2.9433955765089546,
          -7,
          -3.2136062891507047,
          -2.501137541684781,
          -3.475053440975798,
          -2.6209288346246438,
          -2.2114479488687553,
          -2.0846515948551616,
          -3.63230541441367,
          -3.6866660552423403,
          -3.9357087478426633,
          -3.521039963927612,
          -2.6725353363248434,
          -3.0183259454029208,
          -1.741055467084807,
          -7,
          -3.9372670722114127,
          -2.653671089068736,
          -3.1810673688249955,
          -7,
          -3.6084190513172856,
          -2.45484486000851,
          -3.904336792202495,
          -3.205420915676343,
          -3.908753019184534,
          -3.437803393485486,
          -3.607079544728571,
          -2.9405639151168446,
          -3.0725506671486116,
          -3.299170398175146,
          -3.3973489661765908,
          -3.9380691862233856,
          -7,
          -3.210853365314893,
          -3.443262987458695,
          -2.2796766501460075,
          -3.132922612520788,
          -3.31178412442512,
          -7,
          -3.4459154139511234,
          -7,
          -2.4792049974725776,
          -3.210211471641834,
          -7,
          -3.679836558918098,
          -3.3592661646067485,
          -3.614264287358705,
          -3.962416693445751,
          -3.9703933720796,
          -3.0517954455579925,
          -2.7212898263240337,
          -2.830726110897981,
          -2.7825299529871605,
          -3.0161508626402753,
          -3.2319281100740858,
          -2.0124798801640136,
          -3.2272695167098435,
          -7,
          -7,
          -3.6396358768118477,
          -3.4469511751907005,
          -3.2215707121664607,
          -3.9101439610645126,
          -7,
          -7,
          -3.9498614562775844,
          -3.910037123553051,
          -3.809929885460897,
          -1.4329896771995743,
          -1.9339426027412612,
          -1.2048285208964937,
          -1.5575788998694664,
          -1.6066102370689712,
          -1.5221134684622253,
          -2.925124491288567,
          -2.7726883546821415,
          -2.6519076720869994,
          -3.268297087223767,
          -2.7529625598847725,
          -2.8872591614954697,
          -3.0887029603514744,
          -7,
          -3.5207978403223796,
          -3.983761560286165,
          -4.170833551085677,
          -3.616790486329716,
          -2.967637107975338,
          -7,
          -2.5802078876560617,
          -2.7273887392106926,
          -3.9679689628786923,
          -3.224377652161807,
          -3.9311017456326387,
          -3.078061165597835,
          -3.3927409079666413,
          -7,
          -2.5695906342474704,
          -2.371659416448944,
          -2.5140457292682847,
          -7,
          -3.430505050123604,
          -2.808833989621961,
          -3.0662194023097737,
          -3.6163704722912695,
          -3.45117215751254,
          -7,
          -3.455758203104137,
          -1.6380299897796193,
          -2.64288286077107,
          -2.833743289137135,
          -3.9063458182094015,
          -7,
          -3.448654799117084,
          -7,
          -2.7214226357500904,
          -7,
          -7,
          -2.7588673836116775,
          -3.669688708056208,
          -3.123851640967086,
          -3.9050399280762114,
          -7,
          -3.9152414973061944,
          -2.6888907154091393,
          -3.60535892548885,
          -3.1354506993455136,
          -2.8930215923314395,
          -1.9238175013555583,
          -7,
          -3.9091279419892606,
          -7,
          -3.442845446763725,
          -2.858637438650731,
          -2.4703293694025734,
          -7,
          -3.160568564398739,
          -7,
          -2.5786392099680726,
          -2.9598678330688757,
          -1.5875405103060276,
          -1.5994096422975916,
          -3.6110857334148725,
          -7,
          -2.932596742019587,
          -2.6629825636306528,
          -2.3344956371018633,
          -3.09457094350807,
          -3.007041081284651,
          -7,
          -7,
          -3.019479781993769,
          -2.843133072080949,
          -3.2734973252095054,
          -2.6917573560607426,
          -2.381098044543058,
          -3.464012366249414,
          -3.1863912156954934,
          -3.460547059679343,
          -3.6135775721070993,
          -2.423775765777925,
          -2.0458695520970736,
          -2.549679601632059,
          -3.6033067965385137,
          -7,
          -3.25988044734366,
          -3.9209577059554492,
          -2.8556123319140068,
          -3.606327612467192,
          -2.8777699234062526,
          -1.106382700346026,
          -7,
          -3.170471266415623,
          -2.7888280352309613,
          -2.722774034232548,
          -2.9579170046848744,
          -3.916927466112993,
          -3.3891016202881334,
          -7,
          -2.5598567720277465,
          -2.85601101687512,
          -2.6157671330554435,
          -1.618635156505728,
          -2.2309352534357063,
          -2.756857889127802,
          -2.8663327887710035,
          -3.19554385153028,
          -7,
          -3.1083633119106744,
          -2.552407456883763,
          -7,
          -7,
          -7,
          -2.5204507792823576,
          -2.4665710723863543,
          -3.3242824552976926,
          -3.4581340270643848,
          -2.832082924950745,
          -3.9215824403934163,
          -2.6065157176196125,
          -7,
          -3.402777069610347,
          -3.4608477482317905,
          -3.1045358837850054,
          -2.607602905903389,
          -2.593638435787782,
          -3.6966293754051547,
          -2.711630374111664,
          -3.6490689996707366,
          -7,
          -2.026009487084626,
          -3.4155711595028895,
          -2.64051349413832,
          -7,
          -2.903731084963894,
          -7,
          -1.9712118454247622,
          -2.6304596577087733,
          -2.2869189482542525,
          -2.0899956366053125,
          -3.609914410085998,
          -7,
          -2.9257846410591988,
          -3.922154325231059,
          -3.236486876375591,
          -3.036429265626675,
          -2.6168918081997035,
          -3.624230513855454,
          -1.5315953405161056,
          -3.2062320243262996,
          -3.209193195719529,
          -2.7311439906672614,
          -2.9912847249485184,
          -7,
          -3.471365065418019,
          -3.869422415299701,
          -2.095232898972203,
          -3.4823017672234426,
          -2.919115465508226,
          -2.6552376394663915,
          -2.9772916357834776,
          -3.462210761646044,
          -3.3641756327706194,
          -3.547318532678011,
          -3.667960247051014,
          -2.7295268685288185,
          -3.984857221809016,
          -2.829025671794826,
          -2.594698610475544,
          -7,
          -3.14803165119416,
          -4.056409320649918,
          -3.5685864807261023,
          -3.3077757131389833,
          -2.70972002338062,
          -3.3084790401617297,
          -4.462697408101717,
          -4.026508750502279,
          -7,
          -3.6924503234060153,
          -2.714479217325374,
          -3.56474494800163,
          -3.5655566178828098,
          -3.5032306252680336,
          -7,
          -7,
          -3.693243153309189,
          -3.8798124189827012,
          -3.2770056921365063,
          -3.5819875631939313,
          -2.841663316638509,
          -3.3429652099145004,
          -3.5595715027824424,
          -2.487716546462839,
          -1.6879303697434271,
          -2.9378759549297913,
          -3.683272236315922,
          -7,
          -2.8058356979612458,
          -2.94019263553191,
          -3.18574446281066,
          -3.5928426831311002,
          -3.0472617379123195,
          -3.027937365993989,
          -7,
          -3.397617270024851,
          -3.8531199842175665,
          -7,
          -4.14157518330082,
          -3.7956158859950087,
          -3.6116879117416305,
          -7,
          -2.702310954593247,
          -2.9844886573576357,
          -3.949376545158274,
          -3.31921019418185,
          -2.664119421670553,
          -3.624797578960761,
          -2.6967886312133325,
          -7,
          -3.8160323905754923,
          -3.035496444963253,
          -3.3823773034681137,
          -7,
          -3.6113439120874298,
          -3.9380817075075885,
          -3.3287108050659557,
          -3.4638183615294293,
          -3.3385651441864757,
          -3.544378143957812,
          -3.1895153784531334,
          -2.657579387241831,
          -3.63823959067475,
          -2.758182016200969,
          -2.7319180593504395,
          -7,
          -3.4534070626854416,
          -7,
          -4.062205808819712,
          -2.9576976220470885,
          -3.738288925247438,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.037486139848775,
          -2.953627920966533,
          -2.594278217221705,
          -3.918554530550274,
          -3.0757293997408985,
          -2.8578030213764305,
          -2.7460284279171123,
          -3.98412208286111,
          -3.9197577805018944,
          -2.9159272116971158,
          -7,
          -2.859169259280036,
          -3.291294833496669,
          -3.6333169310742743,
          -7,
          -2.1144683064163274,
          -7,
          -3.1845139866958645,
          -7,
          -7,
          -2.3039049519688835,
          -7,
          -3.63823959067475,
          -3.497620649781288,
          -2.7380270223694625,
          -7,
          -3.5538830266438746,
          -7,
          -2.961842790404378,
          -3.827959748307129,
          -1.8082686682108675,
          -3.139217700137586,
          -7,
          -4.016824493667488,
          -2.596677537910252,
          -3.644832328825636,
          -2.9079485216122722,
          -7,
          -3.1876147137990425,
          -2.6327660323507387,
          -7,
          -3.440279213235588,
          -3.700660458568172,
          -3.0094981094185593,
          -2.979758432498712,
          -3.453573132944873,
          -3.0676287167282457,
          -3.172991909723909,
          -3.935406489752349,
          -2.8305886686851442,
          -2.377437798729648,
          -3.8899363358931804,
          -7,
          -2.8403021730559184,
          -2.713850405963783,
          -7,
          -2.7772253777538043,
          -7,
          -7,
          -2.5972168724961677,
          -3.512061496535885,
          -2.28936785799692,
          -2.697893274831548,
          -3.7615895881903603,
          -2.1969952135148922,
          -7,
          -3.6895160395121422,
          -3.930999941956152,
          -4.132163596050864,
          -3.9258275746247424,
          -3.6891756195208254,
          -2.681147629339466,
          -3.9598043165083383,
          -3.4298060925892933,
          -2.6206722405382417,
          -2.133302624302217,
          -3.028793001220155,
          -2.99638031323341,
          -2.952354913935259,
          -3.721645766289746,
          -3.3377919265554117,
          -3.353820094897413,
          -3.060060092379906,
          -3.78593457821307,
          -3.9601376748637946,
          -3.9528408566757016,
          -3.9111576087399764,
          -7,
          -3.530185463473508,
          -4.021313365484695,
          -3.9433955765089546,
          -4.019697730980192,
          -2.5546208162578674,
          -2.7319467248046987,
          -3.0218584437341813,
          -3.3760494820288316,
          -3.3873898263387296,
          -2.9754735856707497,
          -7,
          -3.018608046407905,
          -7,
          -2.8002104435489317,
          -3.0463887326513173,
          -3.0954831858295404,
          -7,
          -3.195392218148846,
          -3.2502735862322463,
          -2.769645823445991,
          -3.940665872475829,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.637958544442607,
          -3.367169488534681,
          -3.2050238216541693,
          -3.928805370893284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.157629432675573,
          -3.9672202597829673,
          -3.2689607038867696,
          -4.127493544756782,
          -7,
          -7,
          -7,
          -3.042496757433736,
          -3.6299190355035416,
          -7,
          -3.313423156443038,
          -3.9389198122447717,
          -7,
          -7,
          -7,
          -3.5303704785756733,
          -7,
          -7,
          -3.693682989767589,
          -7,
          -3.6068111469189637,
          -3.4893959217271293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.505749433669425,
          -7,
          -7,
          -7,
          -7,
          -3.309257450996068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2248118650160023,
          -7,
          -7,
          -7,
          -4.066717173286226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.442457818608127,
          -7,
          -7,
          -3.036429265626675,
          -7,
          -3.643847310299714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.130403464485783,
          -7,
          -3.00189589410742,
          -7,
          -2.6384892569546374,
          -2.7275412570285567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7693773260761385,
          -3.1319392952104246,
          -2.8813324763375916,
          -7,
          -7,
          -7,
          -7,
          -3.877774349991398,
          -2.235107414899873,
          -7,
          -7,
          -7,
          -3.011993114659257,
          -7,
          -3.5469126431812423,
          -3.267406418752904,
          -7,
          -3.5142053720257787,
          -3.2401746950192774,
          -3.175138903896551,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9746037920870325,
          -7,
          -3.382557321908786,
          -3.17868923977559,
          -3.6327608884794387,
          -4.378615902031225,
          -7,
          -2.862131379313037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.174001626402425,
          -3.8002816493571645,
          -7,
          -7,
          -7,
          -4.994057466388573,
          -2.824776462475546,
          -7,
          -7,
          -7,
          -7,
          -3.45484486000851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731024379815688,
          -3.853911049066346,
          -3.0835026198302673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8430458105345693,
          -7,
          -7,
          -3.286456469746983,
          -7,
          -7,
          -2.0017337128090005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.005152923751043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7223047868743278,
          -4.098184003250816,
          -7,
          -3.6795187436957892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.137986732723532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6433737066738225,
          -7,
          -4.075364446373285,
          -7,
          -3.759214431234244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.386855529184724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.132355761753956,
          -4.8098878364806925,
          -7,
          -7,
          -2.9633155113861114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.465541468865047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7816835845073506,
          -7,
          -7,
          -7,
          -7,
          -4.014541538950472,
          -7,
          -2.889747230701509,
          -7,
          -7,
          -1.4278184833943377,
          -1.4764627337718037,
          -7,
          -7,
          -7,
          -3.115705584897513,
          -7,
          -7,
          -7,
          -3.0128372247051725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5298825089959625,
          -3.893484346218486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3639878297484915,
          -4.787012617003722,
          -3.5698418994037615,
          -7,
          -7,
          -7,
          -7,
          -3.6183619311098782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2079035303860515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.458879476116883,
          -3.3078524552347384,
          -3.8839758763210157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7218930162149575,
          -7,
          -7,
          -7,
          -3.3979400086720375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02611088519185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.373114381203458,
          -7,
          -3.687339417646106,
          -3.649701293987293,
          -7,
          -7,
          -4.304081029459922,
          -4.718850313114124,
          -4.997744507802489,
          -7,
          -7,
          -4.372553009619916,
          -7,
          -7,
          -7,
          -7,
          -5.387959019712346,
          -7,
          -3.8328919447597904,
          -3.8036277953448154,
          -7,
          -4.6581831714879405,
          -7,
          -7,
          -3.7741226371486234,
          -7,
          -3.978143981690324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.975431808509263,
          -7,
          -3.5723962996252667,
          -7,
          -4.670236573178357,
          -4.7650423619133955,
          -7,
          -7,
          -3.629409599102719,
          -7,
          -4.121471456178261,
          -3.9924651478080433,
          -7,
          -7,
          -4.96270546410181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4924111373136824,
          -7,
          -7,
          -7,
          -4.991607024131837,
          -4.4465301066949845,
          -5.405396737463029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.560253443542344,
          -7,
          -7,
          -7,
          -7,
          -4.131169383089324,
          -7,
          -7,
          -3.9129390867507183,
          -7,
          -4.199217459919978,
          -7,
          -7,
          -4.040419367879847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1673468775856355,
          -7,
          -3.338257230246256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4452148760562173,
          -7,
          -4.797205197435356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.596366143491465,
          -4.7934865515862635,
          -4.7878570387741615,
          -7,
          -7,
          -3.6354334783407656,
          -7,
          -7,
          -7,
          -7,
          -2.9486574321413204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.116939646550756,
          -7,
          -7,
          -3.5083501285699255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.543478244384271,
          -7,
          -7,
          -7,
          -7,
          -3.8420609556687633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7927417858347487,
          -3.374850137756006,
          -7,
          -7,
          -4.305394366771733,
          -3.4625477288026643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0572856444182146,
          -7,
          -3.1863526580107426,
          -7,
          -7,
          -7,
          -7,
          -3.443888546777372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.394994209918511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.500099191915723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.825728957982647,
          -3.9952621553308805,
          -3.9775635725771523,
          -7,
          -3.4126163507626406,
          -3.330118485571775,
          -7,
          -7,
          -3.3857211511236223,
          -3.1412364934229786,
          -7,
          -4.28616444665352,
          -7,
          -7,
          -7,
          -3.0120689351723082,
          -3.3017810094618794,
          -7,
          -3.5163653623524644,
          -3.0249259662899615,
          -7,
          -7,
          -7,
          -4.310523383951521,
          -4.295391147571982,
          -7,
          -3.2811423061693956,
          -7,
          -4.2767144946302915,
          -7,
          -7,
          -7,
          -7,
          -3.8534548413680665,
          -7,
          -4.314709692955174,
          -7,
          -3.2359084131746507,
          -7,
          -7,
          -4.312029180025536,
          -4.293274139710753,
          -3.277188849160538,
          -7,
          -3.8132250459342703,
          -4.33344727449675,
          -4.2942016006947465,
          -4.3034984457923136,
          -3.1100515916804685,
          -4.325146068490752,
          -3.098478908174888,
          -3.691488176316267,
          -4.283482147048971,
          -3.509560925059843,
          -3.045220004398053,
          -7,
          -4.290657766409132,
          -3.5917767112760672,
          -7,
          -7,
          -3.741348602475895,
          -2.9430463082737304,
          -7,
          -7,
          -4.319813684538678,
          -7,
          -3.5306387121215916,
          -4.054019036112275,
          -7,
          -1.9220457546200005,
          -3.1985797729065455,
          -4.276392863069535,
          -4.3144571227346775,
          -7,
          -7,
          -3.509689653828353,
          -4.310055737750892,
          -7,
          -7,
          -4.325022800270452,
          -7,
          -4.331912948773648,
          -4.038560556604059,
          -4.305071783022292,
          -7,
          -3.1250865563789247,
          -3.8615543230335403,
          -4.158709186075578,
          -7,
          -7,
          -4.021396056741971,
          -7,
          -3.8402315949581087,
          -3.869055618701908,
          -7,
          -3.2100642372915438,
          -7,
          -7,
          -7,
          -3.443262987458695,
          -7,
          -4.015925311281039,
          -3.9965773367182584,
          -3.4001156732959967,
          -3.625621081424908,
          -4.285264680481154,
          -7,
          -7,
          -3.393421637669355,
          -2.965947762397985,
          -7,
          -7,
          -4.312198520372529,
          -3.64060067766542,
          -3.275426536741639,
          -3.989227273730537,
          -3.345517491241129,
          -3.1045507624320563,
          -7,
          -3.361109427505994,
          -3.8088633877675866,
          -2.999052427758291,
          -7,
          -7,
          -3.5719028431953865,
          -7,
          -4.286770736714056,
          -3.2209490175139024,
          -4.3290315750108395,
          -7,
          -7,
          -3.4736641969521136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.28668096935493,
          -3.5297785596881464,
          -3.337086373423362,
          -3.8881045768089613,
          -3.9860547807696953,
          -3.7147152555189096,
          -7,
          -4.279393142747864,
          -4.295347148333618,
          -3.3938091036290334,
          -3.5537096901890077,
          -7,
          -7,
          -7,
          -3.278140911716149,
          -7,
          -7,
          -7,
          -4.297826142585328,
          -7,
          -4.298197867109815,
          -4.000824376605606,
          -7,
          -4.3167249841904995,
          -4.305480348653206,
          -3.7141788203782977,
          -7,
          -4.2841147684017695,
          -3.167279862892624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9498614562775844,
          -7,
          -7,
          -7,
          -3.4185958780577854,
          -3.1965648170700405,
          -7,
          -7,
          -4.04538166326508,
          -7,
          -7,
          -3.999456792322048,
          -3.7033558725100733,
          -4.294686624279444,
          -7,
          -3.877467333157578,
          -4.283391697297128,
          -3.214787098545441,
          -7,
          -3.8339117150713786,
          -3.7059919299146995,
          -2.6124162045705797,
          -7,
          -2.9744109367049494,
          -7,
          -3.6033248398913864,
          -7,
          -3.601625479553945,
          -4.280783177955887,
          -7,
          -3.034938217958906,
          -3.6144331585504523,
          -7,
          -7,
          -3.7103289580426297,
          -4.406284637924727,
          -7,
          -7,
          -3.803684673674004,
          -7,
          -7,
          -7,
          -4.276323911020188,
          -3.6827090220210574,
          -4.122428876155531,
          -4.34584404319262,
          -3.4621120045641733,
          -2.776816911310227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.302092715843355,
          -4.301485765632598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.303217663573669,
          -3.3913782899001723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.287644997457547,
          -3.2852759390712047,
          -4.305824106052693,
          -3.4329158688333883,
          -4.396129575309595,
          -7,
          -7,
          -7,
          -3.059061993830848,
          -4.309715314859149,
          -3.1760002544872328,
          -7,
          -3.0947393290928233,
          -3.989271791641693,
          -4.2795985099045675,
          -4.280578370368076,
          -3.2732328340430454,
          -3.5991732173529125,
          -3.739999309401968,
          -3.894777440059079,
          -3.4021409672924676,
          -3.822189880752621,
          -3.985965078304871,
          -7,
          -3.8191489428071344,
          -4.32672491280211,
          -4.322983806948398,
          -7,
          -7,
          -7,
          -7,
          -4.000954398406458,
          -7,
          -4.011401259924744,
          -3.4741514875108575,
          -3.993920958801287,
          -3.8465845028980463,
          -3.9988911346662124,
          -2.6693537374411997,
          -3.1159930547579835,
          -7,
          -3.1774441484275546,
          -7,
          -7,
          -3.5682799682761797,
          -3.703978825008386,
          -4.136355860302406,
          -4.032276185782851,
          -4.388385425718033,
          -7,
          -3.637169394272538,
          -3.536516357733869,
          -3.196077533373247,
          -3.632727166036443,
          -7,
          -7,
          -7,
          -3.6025302223541824,
          -4.35197014444686,
          -4.282055370683707,
          -7,
          -4.019427873252668,
          -4.279826581794015,
          -3.4652128399050834,
          -4.282191456275556,
          -3.0664936462050383,
          -7,
          -4.292610452838321,
          -4.352259719157145,
          -7,
          -3.0628470403742627,
          -1.9388025691853918,
          -2.938347062491972,
          -7,
          -4.0888622597780815,
          -3.016264717047424,
          -3.7835641541035208,
          -7,
          -3.989672247623873,
          -7,
          -4.338157564271773,
          -3.3875321946343506,
          -3.594705542151585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.056065929431752,
          -4.281487887940081,
          -3.3993361902558252,
          -7,
          -7,
          -3.7197530198840827,
          -3.5879577806232366,
          -3.6135599497377284,
          -4.353088764833949,
          -3.6404131072346617,
          -4.3216502030686,
          -3.634762675439664,
          -2.612989562531319,
          -3.382875633393018,
          -4.444294677675202,
          -7,
          -3.470986875643894,
          -3.807768655253699,
          -3.9571798173186563,
          -3.547428546724752,
          -4.297465046609606,
          -3.5607366671103913,
          -3.4285269489377055,
          -3.8615045408853748,
          -4.112336835745317,
          -7,
          -3.544081279789947,
          -3.4902863018778105,
          -3.4400635219066436,
          -3.1113885483342627,
          -4.297946441222536,
          -3.6008640363098396,
          -3.6819902660768373,
          -4.31285409125829,
          -3.267272325511575,
          -4.213929278444742,
          -3.5175389738505816,
          -3.6921195499645236,
          -3.9283190245037223,
          -7,
          -3.7844033017530085,
          -3.810568529216413,
          -3.1773037216202193,
          -3.4850112145785728,
          -3.3758683698200267,
          -4.290390809440229,
          -3.637536425333415,
          -3.549571102270827,
          -3.8131805325860118,
          -3.881859970905687,
          -3.694934085342246,
          -3.4101443047027806,
          -3.253687674240615,
          -3.5463884121954212,
          -4.331366551785781,
          -3.2305151486023247,
          -3.2152191679480744,
          -3.373713078578499,
          -7,
          -3.659735602456012,
          -3.6981701664125586,
          -7,
          -4.390104563825434,
          -3.260423992354916,
          -3.7590253691608635,
          -4.290591042549338,
          -3.2330259885856854,
          -3.4336005087190618,
          -3.471096313722673,
          -7,
          -3.8884790331883443,
          -7,
          -3.2571984261393445,
          -4.085237046441033,
          -3.7030444592234555,
          -4.003776372214725,
          -3.1435019365824877,
          -7,
          -4.117403884416343,
          -3.2585606639293814,
          -3.4992745818922173,
          -3.7469648528798047,
          -3.3639502593966446,
          -4.091895473508298,
          -3.1621005214870497,
          -3.991571601160679,
          -4.287712175443486,
          -3.457435881002328,
          -3.3115059646600127,
          -3.8641945398768103,
          -3.123591776731282,
          -7,
          -4.3471152548414045,
          -3.728457085328827,
          -3.3014869073125475,
          -7,
          -7,
          -7,
          -3.975316900589052,
          -4.069926968752473,
          -3.2808332273459495,
          -3.614833964658131,
          -3.048480647473502,
          -7,
          -4.005073213063604,
          -3.2434370925285267,
          -7,
          -3.8311442784902705,
          -3.977952121201462,
          -3.3368779979381324,
          -7,
          -2.8318160223023767,
          -3.505750595352085,
          -3.8083010194685842,
          -4.010087846998524,
          -4.501196242027088,
          -3.707910665713106,
          -3.406199423663313,
          -3.9900278987702946,
          -7,
          -4.084897858461355,
          -4.285039447366519,
          -3.8105013477665297,
          -3.5256493733815315,
          -3.636888906983799,
          -7,
          -3.4561989646592375,
          -7,
          -7,
          -3.0623337450205455,
          -3.541247339056982,
          -3.2777183335212237,
          -7,
          -3.545801757159276,
          -3.0878942990597675,
          -3.989605530597564,
          -3.372584727534948,
          -7,
          -4.299964668624155,
          -3.110228850717288,
          -3.797613730153076,
          -7,
          -3.7146231028714842,
          -3.8219500053077473,
          -3.8869980456710995,
          -4.283934113456609,
          -3.6032093494771824,
          -4.293252033147825,
          -7,
          -3.7032268741481635,
          -3.333012995488623,
          -3.169022388112188,
          -4.275219186782149,
          -3.3840147208069307,
          -3.857352602191875,
          -3.8313791303653706,
          -3.6062335293295447,
          -4.283911526303729,
          -3.800877389480626,
          -3.7192318188422293,
          -3.611702070594105,
          -2.9335577844776894,
          -3.724419245052999,
          -3.502036742895763,
          -7,
          -7,
          -3.5591881890047756,
          -7,
          -3.430290106054924,
          -7,
          -3.407900540142635,
          -3.4888678612536452,
          -3.819785143258096,
          -7,
          -3.243303861903959,
          -2.9585995363634856,
          -3.2050302708857896,
          -3.8373779732534894,
          -3.0168753032003806,
          -3.4237167870764944,
          -3.7738412766815257,
          -4.295325147042704,
          -3.6186456812328025,
          -3.514851216368609,
          -4.297147471801269,
          -4.293804359919337,
          -7,
          -7,
          -3.0015226545932983,
          -3.4229999772716164,
          -3.6873282654478152,
          -4.024506191528093,
          -3.6758366435022687,
          -4.009472142562814,
          -3.5159400420933182,
          -3.1368424743801975,
          -3.359626819150352,
          -3.282786844559675,
          -4.284520967479148,
          -4.303390474113389,
          -7,
          -3.4532227541587015,
          -3.2465553921611647,
          -3.665918540181034,
          -7,
          -4.002511631284908,
          -3.8151348166368138,
          -3.129377671109127,
          -3.8110832420318603,
          -4.281692267160937,
          -3.973150953755652,
          -7,
          -7,
          -4.275403502745404,
          -7,
          -3.7898978569176265,
          -3.824277734453902,
          -3.705927825831053,
          -4.283007075553755,
          -3.9843022319799033,
          -7,
          -7,
          -7,
          -7,
          -4.317520127284809,
          -3.999348069206721,
          -3.3470092300017322,
          -3.5369009816688104,
          -3.4041111915939406,
          -4.286299250942829,
          -7,
          -3.433989724808988,
          -7,
          -7,
          -3.2056495748651743,
          -7,
          -7,
          -3.7339592206237033,
          -3.623456048069934,
          -3.6205316347204755,
          -7,
          -7,
          -4.313445370426414,
          -7,
          -3.455244683982738,
          -7,
          -3.812957897382539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.204014110472264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.032800014781665,
          -7,
          -7,
          -7,
          -4.530211344452983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.563427685249018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.663477911464217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.035029282202368,
          -7,
          -3.760901537179616,
          -7,
          -3.8910354153153106,
          -3.475307913956194,
          -7,
          -2.9041743682841634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.446940829796355,
          -7,
          -7,
          -7,
          -7,
          -3.71281800020785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752652708654161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.142232991794714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.072654217333034,
          -7,
          -7,
          -7,
          -7,
          -4.38051875807043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.82865989653532,
          -7,
          -7,
          -7,
          -2.7275412570285567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.392307445821645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1571544399062814,
          -3.35237549500052,
          -7,
          -7,
          -3.8630252962294707,
          -7,
          -7,
          -4.07170101356235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3314272965207428,
          -7,
          -3.910037123553051,
          -7,
          -7,
          -7,
          -7,
          -4.051902721033354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5337085232398597,
          -3.2054750367408906,
          -7,
          -2.5349774634615505,
          -3.30352003690728,
          -7,
          -3.340146550949133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.973589623427257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6354837468149124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6190933306267428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8232785569516707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4379618469315383,
          -7,
          -3.3930484664167784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.256236533205923,
          -7,
          -3.943247125137862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.398035542949671,
          -7,
          -3.4725370532620774,
          -5.017588380296173,
          -7,
          -7,
          -7,
          -7,
          -3.5025636691073636,
          -7,
          -3.699230502883409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6184664921990803,
          -7,
          -3.353132789439816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.535807878897487,
          -3.9804578922761,
          -7,
          -7,
          -4.262427357143091,
          -4.075966455076692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.367989193531104,
          -7,
          -7,
          -4.990418778932582,
          -5.186539630829768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.404914070763187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6050894618815805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464966204890961,
          -7,
          -4.176004391472253,
          -7,
          -7,
          -4.336999764360528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.795344636680122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.33665982345442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1863912156954934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.420945405921972,
          -7,
          -7,
          -3.942950070077099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2038484637462346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.17066256804232,
          -3.4164740791002206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7735670489260587,
          -3.8494808372439864,
          -3.587598729721245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1775364999298623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1360860973840974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.591621038213319,
          -2.873320601815399,
          -7,
          -7,
          -7,
          -2.4668676203541096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721728198572788,
          -7,
          -7,
          -7,
          -7,
          -3.4959603948817053,
          -7,
          -3.4127124827451016,
          -7,
          -3.1055471500473315,
          -2.707480529182167,
          -7,
          -7,
          -2.37824644689886,
          -3.0876979237245203,
          -3.766784515497859,
          -7,
          -7,
          -7,
          -3.7013088852280753,
          -2.435449506036116,
          -3.7869997221787326,
          -7,
          -3.66162340922923,
          -2.640684773505455,
          -2.8524037414231755,
          -3.121149319077149,
          -3.394889257167419,
          -2.588436493215736,
          -3.4712917110589387,
          -3.252124552505644,
          -3.8504624327615167,
          -3.756560043006683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.180928319993991,
          -7,
          -3.3564083270389813,
          -7,
          -2.412474318162643,
          -7,
          -7,
          -3.8256208250035,
          -7,
          -3.171726453653231,
          -7,
          -7,
          -3.888179493918325,
          -2.989598116961936,
          -3.7989267385772014,
          -2.6999957707115865,
          -3.8646297245455123,
          -2.3550507749542025,
          -3.730741911850021,
          -3.731427587050948,
          -3.747100931364986,
          -3.3860230915330054,
          -7,
          -7,
          -7,
          -7,
          -3.043283665570575,
          -3.438384107034714,
          -2.241032065988696,
          -7,
          -7,
          -2.7685147746865404,
          -3.3969835082752007,
          -2.5976074408031,
          -3.468691871867676,
          -7,
          -7,
          -3.516444079673956,
          -7,
          -3.8330195470765314,
          -7,
          -7,
          -2.0969100130080562,
          -7,
          -7,
          -7,
          -3.5631249603380444,
          -7,
          -3.1844642893469906,
          -3.60406397266389,
          -3.0251009610468134,
          -7,
          -2.3486841474975146,
          -2.502263204344856,
          -1.9712108261874235,
          -7,
          -7,
          -2.855761372339948,
          -3.499893186149237,
          -3.54082981411108,
          -3.320613576530592,
          -3.0147724740730637,
          -2.322336782758957,
          -7,
          -7,
          -7,
          -3.2409858192066068,
          -7,
          -2.839540892968969,
          -3.3025473724874854,
          -2.4797589305685346,
          -2.6885732341636555,
          -7,
          -7,
          -7,
          -7,
          -3.3128872966235914,
          -7,
          -7,
          -7,
          -7,
          -3.6447339274471924,
          -3.2778383330020473,
          -3.3853828136078388,
          -2.980777192555743,
          -7,
          -3.3600630006277616,
          -7,
          -4.3144950176329955,
          -3.1649473726218416,
          -1.8486463172461758,
          -3.632356046239073,
          -7,
          -3.2656038765850357,
          -2.4615414010100047,
          -3.176322821034989,
          -7,
          -7,
          -4.445183714796111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.95142323763206,
          -3.2962701975267965,
          -2.4386586662418517,
          -3.2723986324554044,
          -7,
          -3.1283633632585737,
          -7,
          -3.7166709755601355,
          -7,
          -4.201888500365973,
          -2.9708116108725178,
          -7,
          -7,
          -7,
          -3.0502250378836537,
          -7,
          -7,
          -3.207095540419218,
          -2.5477747053878224,
          -3.7083359026822635,
          -3.7817553746524686,
          -3.0149403497929366,
          -7,
          -7,
          -3.805228914203426,
          -3.6047658847038875,
          -7,
          -3.131137273778607,
          -3.189188344933054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.809929885460897,
          -3.7223047868743278,
          -3.4185958780577854,
          -7,
          -7,
          -3.0110358551715595,
          -7,
          -3.1226838680615425,
          -3.321132199092705,
          -7,
          -7,
          -3.0105119627372137,
          -2.901390202114049,
          -7,
          -7,
          -2.423245873936808,
          -7,
          -2.919696034609671,
          -7,
          -0.6811681914613787,
          -3.0348957147764644,
          -2.991357361812571,
          -7,
          -3.436719078227576,
          -7,
          -3.7100326990657537,
          -3.4352071032407476,
          -3.7901443650429005,
          -3.244277120801843,
          -7,
          -3.4004948168205202,
          -7,
          -7,
          -3.1427022457376155,
          -3.590140948581808,
          -2.5329416313913384,
          -7,
          -7,
          -3.7221401254574156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.802534284386976,
          -2.8415680152280833,
          -3.9560963623586116,
          -2.9569026591445904,
          -7,
          -7,
          -3.257758548072965,
          -3.7680458141024165,
          -3.697839368218363,
          -7,
          -7,
          -3.191939809656508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.178609025019984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4391747398434687,
          -7,
          -3.143561229978976,
          -3.015685679988791,
          -7,
          -3.2460469818232247,
          -3.4420876295507603,
          -3.197831693328903,
          -7,
          -7,
          -2.469059274505463,
          -7,
          -2.9851906245285953,
          -7,
          -3.1450642634967596,
          -7,
          -7,
          -7,
          -3.855700830835437,
          -3.0976476867820897,
          -2.602028056736095,
          -2.685338597906292,
          -2.978446826907944,
          -2.2243747736660806,
          -3.442793225939769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7769190028420465,
          -7,
          -3.0946807133711545,
          -7,
          -3.2245330626060857,
          -3.210786545639109,
          -3.7711463488149852,
          -3.860697274052039,
          -3.4863596256881286,
          -2.6012098589892596,
          -3.011394209174577,
          -3.7107940999303275,
          -2.763153961911042,
          -3.7049222912234017,
          -3.750970984437319,
          -3.62283547952152,
          -3.8073997127594854,
          -3.8311336003868828,
          -3.5867560391743902,
          -4.026778328659529,
          -7,
          -7,
          -7,
          -2.666290997651076,
          -2.583674032087918,
          -7,
          -7,
          -7,
          -7,
          -2.1921618075562983,
          -3.2488720042050603,
          -7,
          -7,
          -3.7182525000977504,
          -3.5199591807520685,
          -7,
          -3.023983672235201,
          -7,
          -3.4619484952037616,
          -3.0349291104842666,
          -3.7444494574467986,
          -3.4853295331272607,
          -2.9689045352426127,
          -3.6987703555586187,
          -7,
          -3.251759854528801,
          -3.7816875731600903,
          -3.175055991624076,
          -7,
          -2.9107768156582345,
          -7,
          -7,
          -3.5482665451707454,
          -3.689530834330039,
          -3.5202869749271164,
          -7,
          -7,
          -3.846089580357984,
          -7,
          -7,
          -3.747644819328248,
          -3.9512403503243405,
          -3.423081958297231,
          -2.788611718331111,
          -7,
          -7,
          -4.165264115808024,
          -4.5028366386210035,
          -4.364776057277425,
          -3.9408649759667216,
          -4.749109923611645,
          -3.1698135987952667,
          -4.081599312732936,
          -2.5216911650292575,
          -3.5434633878211326,
          -3.543757723163865,
          -7,
          -3.245354008546808,
          -4.45374630677039,
          -4.01694981309756,
          -3.675462635556488,
          -7,
          -4.014276862285691,
          -3.9453109893823255,
          -7,
          -4.398634324538392,
          -7,
          -4.015621678390377,
          -3.024336374304124,
          -3.381611391532234,
          -3.1568771206909294,
          -7,
          -4.398217868234877,
          -7,
          -7,
          -3.3907313564630464,
          -7,
          -4.114477539928802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039625596193842,
          -7,
          -2.765697204987075,
          -3.7555699806288,
          -3.8070358438167355,
          -3.429077262814052,
          -3.785329835010767,
          -3.3537720189044595,
          -3.71291894805983,
          -7,
          -2.2984009709195474,
          -3.554428584722055,
          -7,
          -7,
          -3.1078383370643294,
          -3.8164235991034614,
          -7,
          -3.2726196065078565,
          -2.8998205024270964,
          -7,
          -3.428418289294446,
          -3.749890841271422,
          -7,
          -7,
          -3.159304480085414,
          -2.546849252465312,
          -3.7463253048559455,
          -7,
          -3.6715430852625737,
          -7,
          -3.3328606129435316,
          -4.02197445511006,
          -3.740764037376217,
          -4.216060285923142,
          -7,
          -7,
          -3.7073657541210374,
          -2.864649035534284,
          -3.211354185453311,
          -3.9305924884425982,
          -3.0403316283858697,
          -2.99503658046845,
          -3.64340072427823,
          -2.4720991694607215,
          -7,
          -3.4087250711423263,
          -3.5789782627210145,
          -3.909983694939844,
          -3.683993042899125,
          -7,
          -3.624127331511917,
          -3.539655029536453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985695859689842,
          -2.848471368001359,
          -2.9856830355921042,
          -2.3380800304755907,
          -7,
          -3.8073320392911905,
          -3.4231311394854274,
          -3.841547165256553,
          -3.81424759573192,
          -7,
          -3.3047058982127653,
          -7,
          -3.713316040684306,
          -2.934750874663579,
          -7,
          -7,
          -4.252610340567373,
          -3.8196755199942927,
          -3.358030076576957,
          -3.758003009299799,
          -7,
          -4.021189299069938,
          -7,
          -7,
          -7,
          -3.417969642214737,
          -7,
          -3.470675044798936,
          -7,
          -7,
          -4.342353583021706,
          -3.3034154449502564,
          -3.2741842493416127,
          -7,
          -7,
          -2.839213334538938,
          -7,
          -2.96649372072148,
          -7,
          -3.087994255099714,
          -2.3627886725708787,
          -7,
          -7,
          -7,
          -3.307496037913213,
          -3.3666563861388235,
          -7,
          -3.7952541825808828,
          -3.7652959296980564,
          -7,
          -2.9591095650677848,
          -2.687897814926582,
          -4.30464129829467,
          -7,
          -2.9472158119567875,
          -3.59011703478479,
          -7,
          -3.4218623585834393,
          -7,
          -7,
          -3.615529223637133,
          -3.2195190365840465,
          -2.935099035747168,
          -2.9136372740190546,
          -3.1472639867006027,
          -7,
          -7,
          -3.585686278452497,
          -7,
          -3.319231018160272,
          -7,
          -3.2208922492195193,
          -2.2828971210332805,
          -7,
          -3.694956002249818,
          -2.522566483889084,
          -2.6113260888251135,
          -3.937166703715033,
          -3.8334021292318585,
          -3.4896772916636984,
          -2.9663177623902586,
          -3.997779430865604,
          -7,
          -3.2294827486062534,
          -3.9589459324939362,
          -7,
          -3.2897375563017555,
          -7,
          -3.694605198933569,
          -7,
          -3.868174040859638,
          -3.752586178740409,
          -7,
          -3.304569887203933,
          -3.218601143315633,
          -4.278822168352688,
          -3.8205407905494937,
          -7,
          -3.2606079589006254,
          -3.735119634081872,
          -2.8432327780980096,
          -7,
          -3.1711899563868537,
          -3.261548338444689,
          -7,
          -7,
          -3.09968064110925,
          -2.983325529161058,
          -2.9224881953209727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7340794072805945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.541079767776629,
          -3.7890163267933747,
          -3.5397032389478253,
          -4.012457578200774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7782115648732764,
          -7,
          -7,
          -3.895643504824079,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4870676377163163,
          -7,
          -3.6916118742144164,
          -3.2666827035194554,
          -4.398688280387376,
          -4.574769904961649,
          -4.875861557613656,
          -3.906052065511861,
          -3.6309514530353697,
          -3.3130346319553867,
          -3.906065544755237,
          -3.385033216560905,
          -1.4865801018867653,
          -3.7086191628552996,
          -4.148762632626255,
          -3.645549406428706,
          -2.631182766011284,
          -2.493208108796074,
          -3.1365014914682803,
          -4.575795739570101,
          -5.352890323568416,
          -3.9729256748062145,
          -4.097704527259222,
          -2.0863884511655177,
          -2.982020663780229,
          -4.273606931623152,
          -2.159651197852776,
          -1.2930938683856652,
          -3.1388839362423897,
          -3.34456563320384,
          -4.27370329631894,
          -2.7333297583119047,
          -3.1473229160377674,
          -3.226076412987496,
          -2.227639369195755,
          -3.1008170492152898,
          -3.5333714390119844,
          -4.3117615646589496,
          -2.6670127621315003,
          -3.1851323292282134,
          -2.8349615268663984,
          -1.9166812811245006,
          -3.444204844769567,
          -3.1544813921323813,
          -3.0326823673363323,
          -2.0820062011030047,
          -3.0830747263681317,
          -3.663429755167688,
          -3.168133818504442,
          -3.731172265937845,
          -2.7781113527324988,
          -3.8482988317907267,
          -3.0591134355336966,
          -3.9267558091842387,
          -2.6169714149603367,
          -2.7835097676367373,
          -1.056342497134873,
          -2.302370605284778,
          -2.1482126228724607,
          -2.47004146364061,
          -4.2075593565504725,
          -3.1281664716400015,
          -2.5420052655836813,
          -2.957045409824666,
          -3.605953079081585,
          -3.6821008897005045,
          -3.796747738875302,
          -3.540854815952249,
          -2.904786001106443,
          -2.2189690282163985,
          -2.9685099632773224,
          -4.398821214408981,
          -2.9443468382417373,
          -4.148795391897928,
          -2.9080297944208646,
          -2.776800033307582,
          -3.5140797722102626,
          -3.210603216024868,
          -2.0690863582010253,
          -3.628662627657154,
          -2.0673740307786943,
          -4.750760952738518,
          -3.751257927760953,
          -2.2438644894340767,
          -3.2382932374424964,
          -2.8610253770532483,
          -3.7506761405150186,
          -2.0910927430365986,
          -2.9347316108717187,
          -2.0910191968699166,
          -3.2247538935401416,
          -2.567232427953575,
          -4.276138069047766,
          -1.4942297215720177,
          -2.8863077616189106,
          -2.5046342441702976,
          -3.7731703150932776,
          -5.352876833977717,
          -3.6011046363297106,
          -2.194690899736821,
          -3.245652283747335,
          -2.8669082687032,
          -4.1491613568893655,
          -2.8394689385624297,
          -3.741205423348115,
          -3.388828768245126,
          -3.5331420722009406,
          -1.378189702858012,
          -3.2844095223628234,
          -3.037836233227962,
          -3.5838862740548043,
          -2.3103271035149624,
          -1.271709289931902,
          -3.4241472677851292,
          -3.336030384549526,
          -2.37231622569878,
          -3.7526782943689865,
          -2.0273451694820963,
          -2.971349002798928,
          -4.17676823054687,
          -3.0373996793517093,
          -2.5269420456780045,
          -3.041455319268648,
          -2.449794777822959,
          -2.025499604641104,
          -1.597861012203287,
          -3.876639225154536,
          -3.1069155663893837,
          -3.6910276490373755,
          -2.5246682692417513,
          -2.669735356870171,
          -3.0365123762348905,
          -2.0310560563158897,
          -4.398900184921813,
          -3.8915124654601096,
          -1.979788878129233,
          -2.9485905995386754,
          -5.35281516194099,
          -3.6452257115354163,
          -2.5023813593857014,
          -4.6538162458227275,
          -4.148641209067906,
          -5.051925842814157,
          -3.5078269691492467,
          -3.4550126429169667,
          -2.445409351273244,
          -2.891395696603519,
          -2.6095232658911427,
          -3.079577084563666,
          -4.312617738422503,
          -3.5088812018638897,
          -3.2843805959453753,
          -3.681116090173446,
          -2.3400879818480997,
          -2.8159078076841455,
          -2.646061127659469,
          -4.44983502217156,
          -3.489889162365435,
          -3.5757053787094133,
          -1.7375608801923828,
          -3.4081724871168673,
          -4.750793716662268,
          -3.7428381293249657,
          -3.2438952103905967,
          -3.8759675101142856,
          -3.0966392743958857,
          -3.5099720837452923,
          -3.0486254683237726,
          -2.7641128782236777,
          -3.0163642957549452,
          -2.536535897629957,
          -3.1018296038610864,
          -3.384954313935598,
          -0.9025700879280136,
          -3.0787382554296308,
          -4.352913447606274,
          -5.051789021035889,
          -3.5087893523336393,
          -3.5207608747640986,
          -3.520637633507743,
          -3.9911971731459106,
          -1.4329896771995743,
          -4.098184003250816,
          -3.1965648170700405,
          -4.051902721033354,
          -3.0110358551715595,
          -7,
          -2.4642490109109665,
          -1.700573201104013,
          -1.803187021052166,
          -2.2917739424813983,
          -2.047889844571703,
          -3.131860599375211,
          -2.815259036703932,
          -3.0234697737110188,
          -2.959821989387372,
          -2.399213729436142,
          -2.728865665539083,
          -3.1298490563291437,
          -7,
          -2.944789847324052,
          -3.5494726505247858,
          -3.0474228880808245,
          -4.030996578989978,
          -2.5919058985654106,
          -4.653937662376219,
          -2.4493115793910456,
          -2.6074279725546607,
          -3.190325940803602,
          -3.2258915002678767,
          -3.646021029432817,
          -2.8535735203743147,
          -3.3473931599569218,
          -5.352795887633352,
          -2.1143352885949227,
          -1.8652636002013423,
          -2.361890194037088,
          -7,
          -3.495320734733275,
          -3.2194593168424754,
          -3.7094569171992786,
          -3.9914649297659683,
          -3.4448925760099955,
          -4.206954950594866,
          -3.399273655675515,
          -1.7360634606372156,
          -2.6987089682536345,
          -2.4831045922925545,
          -2.3505513327437093,
          -5.352838289981073,
          -3.613020680036648,
          -3.561201439975245,
          -3.068353154351292,
          -4.0741425037404815,
          -4.030894509641916,
          -3.0479229136953148,
          -3.5162421239812813,
          -2.842171268439124,
          -4.311395492512552,
          -4.238852535326516,
          -3.905932659661591,
          -2.8989973412881245,
          -4.449761793777076,
          -3.073672053996437,
          -3.116745907663402,
          -1.3348343173384234,
          -5.35289417766023,
          -5.051939329951164,
          -7,
          -3.9383060662499854,
          -2.8846065812979305,
          -2.569868957768315,
          -4.574692821415007,
          -3.229733792684291,
          -3.436692597664054,
          -2.171764294452083,
          -2.9972583039329788,
          -1.5496530045435668,
          -2.2206337333245796,
          -3.671662575364542,
          -3.6451235434214526,
          -2.1014999941288774,
          -2.6355279551955864,
          -1.90104708326116,
          -3.3284238423631103,
          -2.3068807280891965,
          -3.9562933202213877,
          -4.122897874121538,
          -3.4340973416453218,
          -2.3204022188429327,
          -2.9499872660775432,
          -2.4108090192081186,
          -2.282687707978652,
          -3.139290486943393,
          -2.8072235859495214,
          -3.1465998385295317,
          -3.4955693893099817,
          -2.6950908511864737,
          -1.9493042524186015,
          -2.611615960259258,
          -4.398532175467584,
          -3.4781218737204944,
          -2.889873260441745,
          -3.7621936280615906,
          -2.732568812248553,
          -4.030617067957522,
          -2.462881498750418,
          -1.4274622754309116,
          -3.089207977024948,
          -3.1392052835507003,
          -2.9243830615097366,
          -1.7279021502757326,
          -2.3973047701147587,
          -4.010752753199189,
          -2.7488272758008763,
          -4.875994475714984,
          -2.4815432003737445,
          -2.72235775493706,
          -2.5915710078337733,
          -1.3980442589151636,
          -1.8955162525385503,
          -2.752592026136236,
          -3.1879157379875953,
          -3.029301831194811,
          -3.174077030963441,
          -1.7568754896405432,
          -2.181516116372709,
          -4.653947297156863,
          -5.352805524894097,
          -4.507697847619095,
          -2.697488429424593,
          -2.247915755339819,
          -3.575237893712713,
          -3.316106985344138,
          -3.082139596192321,
          -3.7512174975598183,
          -2.738579026601573,
          -3.7302206895539856,
          -2.589283777393785,
          -3.4845402991734833,
          -3.264147596079237,
          -2.215529362569842,
          -2.5339584518648985,
          -2.613166197059653,
          -2.2219363049007326,
          -2.247491266694592,
          -4.6550846250819795,
          -1.5758912380804402,
          -2.257352046167068,
          -2.3976064637013526,
          -4.7507320413412115,
          -2.98798391954084,
          -3.9552816418448353,
          -1.8596955777710922,
          -2.5115770590772803,
          -2.3882351204884205,
          -2.110387743572669,
          -3.9912299292200473,
          -4.449686625478326,
          -2.5414582697501884,
          -3.547026271580958,
          -3.467181278616061,
          -3.508768202830024,
          -2.642538710000905,
          -3.1976853060411248,
          -0.7893355732020385,
          -3.8613705825140756,
          -3.4181277855872354,
          -1.9842665938798643,
          -2.5037876063802758,
          -3.8424541067345053,
          -3.160859669406353,
          -2.920889075099427,
          -1.8258445260898921,
          -2.9521320584091684,
          -2.3196846398793265,
          -1.8802465169819231,
          -2.5852652334521258,
          -3.5959995535214295,
          -3.1531658615805016,
          -2.4526453462368933,
          -2.335090567509085,
          -2.079648086757684,
          -3.0918665954520934,
          -2.2785020622359897,
          -1.8355276596067984,
          -3.6162469698518693,
          -2.8348308015347112,
          -4.016735228992858,
          -2.312517089214689,
          -2.7944540839567535,
          -2.300023362178051,
          -2.7724390677510367,
          -3.9000286541655096,
          -2.8722222919570086,
          -3.34288063988093,
          -3.7651047158339206,
          -2.116931894711265,
          -3.010802052272352,
          -2.728725081971991,
          -2.93201920696319,
          -3.3125444135063975,
          -3.993951595374087,
          -3.260409000530892,
          -3.5667853047831293,
          -2.829463733017695,
          -2.915673570986958,
          -2.1920479519897156,
          -3.186450837846928,
          -2.6376631672377724,
          -1.182962689199345,
          -1.7566465429864107,
          -2.850280070939956,
          -3.0767729606871117,
          -3.799939493279297,
          -1.5997196899125223,
          -2.389380612961912,
          -2.916064682913849,
          -2.609245488115293,
          -1.9744799056675177,
          -2.157864117754172,
          -4.878019807285231,
          -2.2814544937302186,
          -3.120974200048109,
          -4.450066188704678,
          -3.720283369820714,
          -2.823549599065664,
          -3.3519345493940382,
          -4.5092255714044756,
          -1.2807873175934574,
          -1.5609197077617303,
          -2.2880182983636352,
          -3.672005445022952,
          -2.573729292503959,
          -4.011085787106548,
          -1.8320963527302048,
          -3.807061239917239,
          -2.109916599235302,
          -2.654915656899987,
          -2.8325269538104827,
          -4.239033680055692,
          -2.883148251980255,
          -2.9548180739640073,
          -2.166767369596477,
          -3.35074194501045,
          -2.6037090637586675,
          -3.239854331887638,
          -2.005961638087528,
          -1.940362892721548,
          -3.1688228100135096,
          -1.6012965834315163,
          -1.9229710652447798,
          -3.404394640735732,
          -2.1158342216543464,
          -4.654651983255935,
          -3.4196823422019547,
          -1.9352171200597414,
          -3.3237231691877547,
          -3.574872019591453,
          -4.574816148523287,
          -4.653852867088518,
          -4.654153430248454,
          -4.039612381896724,
          -1.675543884919733,
          -2.7821160652538497,
          -2.128652562662778,
          -3.876083065187758,
          -2.816573656226861,
          -2.2733622557608473,
          -2.7800950588159346,
          -3.0562975709559037,
          -4.074537365086869,
          -2.7473040474314554,
          -4.574922104783855,
          -1.9587220825148883,
          -2.65470822726565,
          -3.6909795692123,
          -4.209983906602265,
          -1.8147899877143951,
          -3.5297386382916294,
          -2.6329460616904314,
          -4.354356262178817,
          -4.207630520994443,
          -2.0916688687624085,
          -4.654884701981255,
          -3.672676916048187,
          -3.0222633656812588,
          -2.6699765409218195,
          -7,
          -2.8803510158338645,
          -7,
          -3.67183404403012,
          -2.9589360561417233,
          -0.8980588707318411,
          -2.17972919898145,
          -4.750824551038603,
          -3.7774249144047936,
          -2.248952111278853,
          -4.0755315946639925,
          -2.7411611641985343,
          -7,
          -3.11145839180201,
          -2.232104663558627,
          -7,
          -3.671859084349393,
          -3.9586422307145206,
          -3.0779098222198,
          -2.7799987809677282,
          -3.1278237828537074,
          -3.139905950729172,
          -3.246879252504379,
          -3.9559146976452366,
          -2.8280227464330054,
          -2.086134111752849,
          -3.359705418354718,
          -4.750969058002591,
          -2.629950556958126,
          -2.7252511895279548,
          -4.241940905630259,
          -2.4577373207082234,
          -5.052740100090059,
          -5.0522474932238,
          -2.6261585957866243,
          -3.3263435190252575,
          -1.155032859480172,
          -2.5036065640735687,
          -3.2872265141673314,
          -2.4473453533502263,
          -4.508779739050585,
          -3.559032745721805,
          -3.7515696914384007,
          -3.2556512166305875,
          -3.9917729345886532,
          -3.2384043062825043,
          -2.2956666962796732,
          -3.7984664857978987,
          -3.7729756674752157,
          -2.309649141115875,
          -1.4260844558204882,
          -2.8468583713444207,
          -3.2878419086342974,
          -2.3982883768309535,
          -3.3401961590915024,
          -3.07614031416888,
          -3.4794121371941125,
          -2.5819281733903634,
          -3.119610411536237,
          -4.099578979292946,
          -3.7312183500213,
          -4.051943183341951,
          -5.051860327904435,
          -2.662284635697243,
          -3.7041753111617277,
          -3.3285449954753994,
          -3.217079406146907,
          -2.0320037772941855,
          -2.666713973094915,
          -2.7441364524012473,
          -2.37289179868471,
          -3.2811621964134967,
          -2.8070379004300423,
          -7,
          -2.992860751859648,
          -7,
          -2.6622180000621567,
          -2.8411318527966554,
          -3.352320637745696,
          -4.449831168353349,
          -2.976173410782892,
          -3.371862186930359,
          -2.1151526142609294,
          -3.646386425606992,
          -5.353585433651377,
          -4.87582880342868,
          -4.273712931612605,
          -5.353161953283723,
          -5.0520221703193435,
          -4.876136980368427,
          -2.7529841877809456,
          -3.764087957385868,
          -3.306244991644289,
          -3.7737710523822834,
          -4.149721263992506,
          -3.9218367044079674,
          -3.6812970606493245,
          -3.6296269035573974,
          -4.450662800025085,
          -2.8857923101128033,
          -3.5420455433005573,
          -2.5259755974116596,
          -3.3849887735590265,
          -3.9134031970453065,
          -3.6295019187038324,
          -4.750876579084994,
          -2.6800892113547894,
          -3.6375820900165774,
          -4.8757170352614105,
          -2.3838017055920684,
          -3.4964760607131895,
          -3.56845179951805,
          -3.3088330016116188,
          -3.7659950553707966,
          -3.2883065634754933,
          -4.030842502824917,
          -4.052143512563366,
          -3.3389408586501794,
          -4.507905964887182,
          -3.178242157957572,
          -3.196272162145656,
          -4.6553247955498565,
          -4.875699689346818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7142729607632785,
          -7,
          -7,
          -7,
          -7,
          -3.9218944709291024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5685732585751744,
          -7,
          -7,
          -2.3192796035605983,
          -4.0538045718497075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.567314623179351,
          -3.199480914862356,
          -7,
          -7,
          -3.0979510709941502,
          -7,
          -7,
          -3.539828558377898,
          -7,
          -7,
          -2.074816440645175,
          -4.665540342403951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3324384599156054,
          -3.017776870761958,
          -3.5046067706419537,
          -3.9262909868848634,
          -3.3444577731923464,
          -7,
          -7,
          -7,
          -2.6983905586437853,
          -3.1992064791616577,
          -7,
          -7,
          -7,
          -7,
          -3.9798517589161557,
          -2.4001060704285453,
          -7,
          -7,
          -7,
          -7,
          -3.3713449830820985,
          -7,
          -7,
          -4.427774893545752,
          -7,
          -2.383815365980431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.598790506763115,
          -7,
          -3.547528576459782,
          -7,
          -7,
          -7,
          -3.6998173287940737,
          -3.587598729721245,
          -7,
          -7,
          -7,
          -7,
          -2.436361454314497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7354214555764456,
          -7,
          -7,
          -7,
          -3.6705241577820797,
          -3.4823017672234426,
          -7,
          -7,
          -7,
          -7,
          -3.6139298694145165,
          -2.3415758274854883,
          -7,
          -7,
          -7,
          -7,
          -3.1947917577219247,
          -3.8841153620116686,
          -2.6350494180076955,
          -3.1245042248342823,
          -7,
          -7,
          -7,
          -7,
          -3.505421327583281,
          -2.500079576528447,
          -7,
          -7,
          -3.7064190488337676,
          -7,
          -7,
          -7,
          -3.1197139961978033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7196626830180466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.372322729498556,
          -7,
          -7,
          -7,
          -7,
          -3.9448156680632662,
          -7,
          -7,
          -3.366236123718293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.828457338101283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9339426027412612,
          -7,
          -7,
          -7,
          -7,
          -2.4642490109109665,
          -7,
          -1.7057415650515282,
          -1.709799782295541,
          -2.0188853441603736,
          -2.135291704475752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.797959643737196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3103392197987525,
          -2.517855418930029,
          -7,
          -2.4537004733597723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.915964856951931,
          -3.031523876020016,
          -7,
          -2.924795995797912,
          -2.75815462196739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.275234549433838,
          -7,
          -3.8435753430507633,
          -4.567167577177019,
          -7,
          -7,
          -7,
          -2.9380190974762104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8097379111016547,
          -7,
          -7,
          -7,
          -7,
          -2.680335513414563,
          -2.8363241157067516,
          -7,
          -7,
          -7,
          -3.3571722577230334,
          -3.2075670505660874,
          -2.293646623934636,
          -1.9150343529019414,
          -7,
          -7,
          -4.323726367155352,
          -2.2398355349224595,
          -3.260008587828519,
          -7,
          -4.015418439887637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.075774997355713,
          -3.7484206224675685,
          -7,
          -7,
          -7,
          -7,
          -3.2648178230095364,
          -3.0372936658607066,
          -3.4900990050633047,
          -7,
          -7,
          -7,
          -7,
          -2.718916686014861,
          -7,
          -3.4129642719966626,
          -2.5484139885542367,
          -7,
          -7,
          -3.302114376956201,
          -3.530900537217131,
          -3.9146075677710805,
          -7,
          -7,
          -7,
          -3.1789769472931693,
          -7,
          -3.0588054866759067,
          -1.8123443497066896,
          -2.7768222079495963,
          -7,
          -7,
          -7,
          -7,
          -3.899142373493561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.657342736814626,
          -7,
          -7,
          -7,
          -7,
          -3.397592434038117,
          -7,
          -7,
          -7,
          -7,
          -3.658774320844357,
          -3.1541195255158465,
          -4.859456543145925,
          -3.7921464540322676,
          -5.176565249878006,
          -7,
          -2.864049381360671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8843421476470588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.976201582968563,
          -7,
          -7,
          -3.218841731507062,
          -3.8204204130984976,
          -7,
          -3.3616334139100563,
          -4.113834765112396,
          -2.860555779914859,
          -3.2974869397629045,
          -4.117746218143026,
          -3.3139469837438598,
          -2.847043569352527,
          -7,
          -4.011337799051992,
          -3.818868938770039,
          -4.045131655797483,
          -3.107899317144212,
          -7,
          -3.563015324620983,
          -3.290686728614926,
          -7,
          -3.5420781463356255,
          -3.617000341120899,
          -4.242477535884849,
          -3.583788016689579,
          -3.4226655866872724,
          -7,
          -7,
          -4.661888372968945,
          -7,
          -7,
          -3.4150459663945143,
          -3.3914350229382695,
          -4.0786199197404995,
          -3.729083757043612,
          -7,
          -7,
          -4.096805769822717,
          -3.8987251815894934,
          -4.458547204196593,
          -3.7180862947830917,
          -3.5386889104527226,
          -7,
          -4.372792371489067,
          -3.2817559066229203,
          -2.2691870196383395,
          -2.9916690073799486,
          -7,
          -7,
          -3.5037982464619217,
          -4.009365898346244,
          -7,
          -7,
          -3.964462347945267,
          -4.2068798223063,
          -7,
          -4.1422486417643345,
          -7,
          -7,
          -7,
          -4.380066452751471,
          -7,
          -7,
          -3.6921327857403368,
          -3.8162737456632567,
          -4.627561279277749,
          -7,
          -7,
          -7,
          -3.8433190436791786,
          -7,
          -5.10500406463443,
          -3.6133484255114983,
          -4.227655361923043,
          -7,
          -7,
          -4.438447410654374,
          -4.086495081663903,
          -3.643156465619706,
          -4.224248100962593,
          -3.529366180819488,
          -4.201353419532058,
          -3.2370268123180517,
          -7,
          -3.6442859194512525,
          -3.9577413374336854,
          -7,
          -5.047270972348938,
          -7,
          -7,
          -3.3813380926383116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.680481725745306,
          -7,
          -3.2911745290335737,
          -3.018284308426531,
          -3.3600250891893975,
          -7,
          -3.1484484035233837,
          -7,
          -7,
          -3.775756037844098,
          -7,
          -3.6236144956512026,
          -7,
          -7,
          -7,
          -2.5026176418045107,
          -7,
          -3.699143687394484,
          -7,
          -7,
          -2.9003671286564705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3027637084729817,
          -4.123470513709713,
          -2.584432755164712,
          -3.6764966379114132,
          -7,
          -3.498034723687027,
          -3.9557358422776656,
          -7,
          -7,
          -7,
          -7,
          -3.2595938788859486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1078880251827985,
          -3.325310371711061,
          -7,
          -7,
          -7,
          -2.6206131348939996,
          -4.205231438820003,
          -7,
          -7,
          -3.5633624094866074,
          -7,
          -3.5554269980568862,
          -7,
          -7,
          -3.2173786479394413,
          -7,
          -3.148823197531414,
          -7,
          -7,
          -2.6967930850817443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.909091575516218,
          -7,
          -3.429429264381788,
          -7,
          -3.5173278822943734,
          -7,
          -7,
          -4.0475085055940125,
          -7,
          -7,
          -3.236537261488694,
          -7,
          -7,
          -3.521623683742995,
          -7,
          -7,
          -7,
          -3.4926461193813223,
          -3.0960405542954277,
          -3.695277323219642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4173055832445254,
          -7,
          -3.336859820916809,
          -7,
          -3.4472441923348445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0484418035504044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.278410601475816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6695957810243134,
          -3.4602210786446816,
          -3.4367985102318035,
          -7,
          -3.6956567599361905,
          -3.0215603323961395,
          -7,
          -7,
          -7,
          -3.5169758348685476,
          -3.2665523906877056,
          -7,
          -7,
          -7,
          -7,
          -3.3550682063488506,
          -2.186942726764195,
          -4.07018568637838,
          -7,
          -2.0276044006725917,
          -3.210573345194991,
          -2.459057254641927,
          -7,
          -7,
          -3.184762388171225,
          -3.7345598215794764,
          -3.6875289612146345,
          -3.8476960207341655,
          -7,
          -3.361160995195026,
          -7,
          -3.0861818046497493,
          -7,
          -3.373555606638933,
          -2.2784446045101223,
          -3.3528575624069963,
          -3.499893186149237,
          -2.3801207542684404,
          -3.662337343204088,
          -7,
          -7,
          -3.792251571903264,
          -7,
          -3.448242412634439,
          -7,
          -3.238798562713917,
          -7,
          -7,
          -2.253534871562535,
          -2.498773307676647,
          -2.9883678201564354,
          -3.236177239515077,
          -3.312092690393716,
          -7,
          -7,
          -3.5317343092765503,
          -2.531904487367248,
          -3.239633102713035,
          -7,
          -3.362105319293773,
          -3.702171950857711,
          -3.4114513421379375,
          -3.030963842378275,
          -2.6650178254124723,
          -7,
          -3.516337020623613,
          -7,
          -3.1298279460755056,
          -3.142285156167115,
          -7,
          -7,
          -3.5470864564155895,
          -3.6610550848533787,
          -1.3078058731216846,
          -7,
          -7,
          -2.83160632599708,
          -3.7856856682809013,
          -7,
          -7,
          -2.1558526703669125,
          -2.6600889504627023,
          -3.553701021549961,
          -3.877601679729272,
          -3.166282067316571,
          -7,
          -2.605006709269838,
          -2.669200619159474,
          -3.0818271912583772,
          -3.0563330349511615,
          -7,
          -7,
          -1.4880434371530584,
          -3.2074323856093794,
          -3.419184452746418,
          -3.670802284260944,
          -3.781994589465404,
          -3.707910665713106,
          -7,
          -3.6509870943834453,
          -1.8125142805918906,
          -3.3550682063488506,
          -7,
          -3.26528962586083,
          -3.074084689028244,
          -2.9981191605274136,
          -3.3953263930693507,
          -3.199114962043649,
          -2.326663506724679,
          -7,
          -1.9340591042340165,
          -2.432547358963337,
          -7,
          -3.792811771248147,
          -3.0991624929285946,
          -3.920801381825654,
          -2.5674465020938317,
          -2.7991336933020627,
          -1.9946026312575593,
          -7,
          -3.7390578478058996,
          -7,
          -4.312405872352393,
          -7,
          -3.3572358579987425,
          -1.7660464147650583,
          -7,
          -7,
          -2.571435856575893,
          -3.5449976797003977,
          -7,
          -7,
          -2.5839168668252004,
          -7,
          -3.343802333161655,
          -7,
          -3.3623882165886987,
          -3.0485389068446946,
          -3.3899925251123144,
          -3.6721902511882525,
          -3.6604860157849677,
          -3.64704048585496,
          -7,
          -3.763951826033324,
          -3.654850090561394,
          -2.973589623427257,
          -2.527871466363005,
          -3.2846844681720415,
          -3.3319938380422562,
          -7,
          -7,
          -7,
          -3.3587408376095857,
          -7,
          -7,
          -3.297468695545132,
          -3.2659179000852707,
          -7,
          -3.7446840632768863,
          -7,
          -2.9696821057315477,
          -3.506437380020297,
          -2.654472735909495,
          -3.762753564933374,
          -7,
          -3.6920533650340808,
          -2.126141222526648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.673941998634088,
          -7,
          -1.2048285208964937,
          -3.6795187436957892,
          -7,
          -7,
          -3.1226838680615425,
          -1.700573201104013,
          -1.7057415650515282,
          -7,
          -1.544708382151548,
          -1.7906975879500755,
          -1.4795876071615262,
          -3.45178643552429,
          -2.991521413671849,
          -7,
          -3.7532765701844184,
          -3.2204219224378408,
          -3.2117433133351296,
          -3.3355581880658614,
          -7,
          -3.8121443089703804,
          -7,
          -4.415390738182574,
          -7,
          -3.12205196263325,
          -7,
          -1.9072564622406847,
          -1.5649802815403844,
          -3.4526296516220176,
          -2.0078590547187516,
          -7,
          -3.503609121816283,
          -3.4961682741749778,
          -7,
          -3.810098040681143,
          -2.669773466253543,
          -2.381781928710837,
          -7,
          -3.0478587274074567,
          -3.0767314430382817,
          -3.356694958541127,
          -7,
          -7,
          -3.660770643527697,
          -7,
          -1.8058864325858222,
          -3.895367288773362,
          -3.0683343131172545,
          -4.172233356847697,
          -7,
          -7,
          -7,
          -2.5231772201476628,
          -7,
          -7,
          -2.509202522331103,
          -7,
          -3.7563317673210577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.461198288622493,
          -2.0416001779564237,
          -7,
          -7,
          -7,
          -3.3713449830820985,
          -2.237959529923704,
          -1.5417810749690748,
          -7,
          -7,
          -7,
          -2.728501350653944,
          -3.7026889681591335,
          -1.7419816035046947,
          -1.3695723146231802,
          -3.658393026279124,
          -7,
          -2.7284243645797948,
          -2.7417244523322424,
          -2.4459245638311797,
          -7,
          -2.90395456773191,
          -7,
          -3.674125982742708,
          -2.978363147083883,
          -3.539295700875927,
          -7,
          -2.720060024749243,
          -2.923055522758436,
          -7,
          -3.447778009294621,
          -7,
          -7,
          -2.8338639667912022,
          -2.42097075212303,
          -3.225050696138049,
          -7,
          -7,
          -3.7394141026986953,
          -7,
          -1.9089510001271135,
          -7,
          -3.316319878258001,
          -1.88780952431716,
          -3.7331169814420644,
          -2.3793702749984322,
          -2.142858551113391,
          -2.0055196299497386,
          -3.374308331299816,
          -7,
          -3.766115283221414,
          -7,
          -2.6300038835026207,
          -3.4202308796246506,
          -3.1700415779490494,
          -1.669816276965361,
          -2.7114456684692576,
          -3.5287881917748964,
          -3.4743619760326307,
          -3.8678797834583794,
          -3.801609488027319,
          -3.1583034527805256,
          -3.5815704280995675,
          -7,
          -7,
          -7,
          -2.5228038604656158,
          -3.2130393712509595,
          -7,
          -7,
          -3.5185139398778875,
          -7,
          -3.3099848383169075,
          -7,
          -7,
          -7,
          -3.4231639238503484,
          -3.4358974290282975,
          -2.1667086528238673,
          -3.9263881834991534,
          -2.7196534809864565,
          -4.09941588705348,
          -7,
          -2.2648178230095364,
          -4.035045307533338,
          -3.1540325012731145,
          -7,
          -3.717420836722375,
          -3.6695957810243134,
          -2.455430557308209,
          -3.703678200880355,
          -3.122449936204605,
          -2.744932749231845,
          -7,
          -7,
          -3.8143142002074595,
          -7,
          -3.699924402742477,
          -7,
          -2.925569909543376,
          -7,
          -2.3810662726088885,
          -7,
          -7,
          -2.706396447183231,
          -3.3529607929853014,
          -4.3553940446231705,
          -2.835161911071816,
          -4.44421660506962,
          -2.3133914202099204,
          -2.6636632409363377,
          -2.702126302120017,
          -2.7079357553475703,
          -2.5967587537269323,
          -3.424936056088804,
          -2.967259886999739,
          -3.0342041035442273,
          -3.4018332745170223,
          -2.597322560864555,
          -4.404149249209695,
          -2.5334291141562018,
          -2.715988429419859,
          -3.868262279215955,
          -3.0089371159857716,
          -7,
          -3.704684429931342,
          -3.2786202444552437,
          -2.4568833994475088,
          -3.019064338239115,
          -7,
          -3.3723771304851287,
          -3.809582158214607,
          -3.49380646215058,
          -2.8670081599665216,
          -3.3106225169268044,
          -4.0134018619680445,
          -3.797042369698197,
          -7,
          -7,
          -7,
          -4.0626195838543415,
          -3.5557525825740743,
          -3.5866323069495945,
          -3.040968776406264,
          -7,
          -4.1039233919222635,
          -2.7529647996826467,
          -1.6589416127705028,
          -3.0278590441755795,
          -3.8014551636613825,
          -7,
          -3.0041087957295773,
          -3.4421974643102136,
          -3.5520595341878844,
          -3.801211562533051,
          -3.318163182165152,
          -3.51113941243943,
          -7,
          -3.651444166323796,
          -3.3279308045542364,
          -7,
          -7,
          -4.140209402207167,
          -3.9373674175172897,
          -7,
          -3.0945520778220583,
          -3.2782934176322724,
          -4.387594889675789,
          -7,
          -3.346792914871751,
          -7,
          -3.00044792387416,
          -7,
          -5.111151572881174,
          -3.7255577395080643,
          -4.312219683273972,
          -7,
          -3.9207666354873765,
          -4.015233976246709,
          -3.8105013477665297,
          -2.9036325160842376,
          -4.008344629252689,
          -3.5397450161093125,
          -3.414289004059428,
          -2.4005947059556028,
          -7,
          -3.003128984279141,
          -3.2184756161909616,
          -3.8826952623815973,
          -3.9750199143327536,
          -7,
          -7,
          -3.4726687041948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.962889987391791,
          -1.8278961396555933,
          -3.321253121961899,
          -2.584059705457841,
          -7,
          -2.539666373408828,
          -3.210619451457561,
          -2.0780873047087587,
          -7,
          -7,
          -2.939882147548364,
          -3.658774320844357,
          -2.972033255790299,
          -3.909983694939844,
          -3.697490887171057,
          -7,
          -2.1856281472511823,
          -3.7858279199958655,
          -3.1575071357169904,
          -7,
          -7,
          -2.1428387408691347,
          -7,
          -7,
          -7,
          -2.865991800126275,
          -7,
          -3.3766377783551063,
          -7,
          -2.6235312082798568,
          -3.596896850256032,
          -1.8885611758793897,
          -2.982025009825869,
          -7,
          -7,
          -3.3240079328600416,
          -3.415974411376566,
          -3.1409477713426623,
          -7,
          -3.1484484035233837,
          -2.6469235999743512,
          -7,
          -3.668012971641832,
          -3.807873132003332,
          -3.1455848280002856,
          -2.3618272055368235,
          -3.3901399384676227,
          -3.4581844355702627,
          -7,
          -7,
          -2.923983747103962,
          -2.134698573897456,
          -3.691656043498147,
          -7,
          -3.175105740887016,
          -2.820141725700813,
          -3.7807492311035524,
          -2.6738935688061143,
          -7,
          -7,
          -2.843452636935933,
          -7,
          -2.411743376027878,
          -2.690955115144948,
          -3.200248413515354,
          -2.240315190350821,
          -7,
          -3.5666731376061165,
          -7,
          -3.093728034887572,
          -3.381295623003826,
          -3.312388949370592,
          -2.734968177098234,
          -3.740362689494244,
          -7,
          -2.8624721360836793,
          -2.243028648271097,
          -3.132899769944483,
          -3.1981757979993914,
          -2.803115554890027,
          -3.140759370870369,
          -3.020637463567606,
          -7,
          -2.8677325799583757,
          -3.0308526157493176,
          -7,
          -2.773217411418584,
          -7,
          -7,
          -3.128253833270144,
          -3.1385553051135826,
          -3.235360083082256,
          -2.9315849874708,
          -2.673182239227937,
          -2.336316756240027,
          -3.225497247312828,
          -3.6389327540387777,
          -3.4567707810445487,
          -3.3551321154773457,
          -7,
          -7,
          -7,
          -3.4476747410782496,
          -3.459392487759231,
          -2.9051087054113625,
          -7,
          -2.9847522781154137,
          -7,
          -2.7426345053908503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7122707911929065,
          -3.153814864344529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8101652845431495,
          -3.752586178740409,
          -3.322839272686321,
          -3.5137501500818233,
          -7,
          -3.399327532158679,
          -7,
          -3.0922526548953835,
          -7,
          -7,
          -3.6472117617451385,
          -7,
          -7,
          -3.867408556522791,
          -3.5251096222719336,
          -3.817036226050029,
          -7,
          -7,
          -3.796921075330169,
          -7,
          -3.4531143980466226,
          -3.7517408738109004,
          -3.7152510288788494,
          -7,
          -3.285557309007774,
          -7,
          -7,
          -7,
          -3.274042330049831,
          -3.686725621074542,
          -3.357553719743082,
          -3.57611089412084,
          -3.3062105081677613,
          -3.082040302705653,
          -7,
          -7,
          -2.875292825371008,
          -3.3713911526969724,
          -3.173970294769197,
          -3.6471872978959894,
          -7,
          -7,
          -3.569958818096594,
          -3.558708570533166,
          -2.5955312131225274,
          -3.335818826915165,
          -7,
          -2.284035741109785,
          -3.0136022302861525,
          -3.633670406051444,
          -7,
          -7,
          -2.7616773079942547,
          -3.0520202439786086,
          -7,
          -3.7078085468549555,
          -3.633670406051444,
          -3.566319621524811,
          -7,
          -2.643013773485817,
          -3.1082266563749283,
          -3.104145550554008,
          -1.2929837274684335,
          -2.776580126292323,
          -2.777909908625889,
          -2.550228353055094,
          -3.538064649949787,
          -3.5744942682853273,
          -7,
          -3.7231271587956916,
          -3.6453240015622934,
          -2.7281797974498008,
          -7,
          -3.632558514532672,
          -3.8009231818132183,
          -2.9496826907952043,
          -2.784706424389351,
          -2.544099194062689,
          -2.729091124272883,
          -2.1328286964672105,
          -3.2716557723522754,
          -3.599992177584098,
          -7,
          -2.8662873390841948,
          -2.8462339910366214,
          -3.156044098964241,
          -3.634779458145952,
          -7,
          -3.6154239528859438,
          -2.9884952539841994,
          -2.8617844044915968,
          -2.0456785207483104,
          -7,
          -2.3688290269918513,
          -7,
          -2.851105401197895,
          -2.6929056434314544,
          -7,
          -3.4638183615294293,
          -3.309006939379298,
          -3.263399331334002,
          -1.7636775163976688,
          -7,
          -7,
          -2.101780189542242,
          -3.715418322595056,
          -2.6348130216130192,
          -3.2476050641507705,
          -2.490106399890128,
          -2.9168748785386835,
          -3.016824493667488,
          -3.520483532740792,
          -2.4622217777780953,
          -7,
          -2.6742166859433936,
          -2.640812580319979,
          -2.8099763348395044,
          -7,
          -7,
          -7,
          -1.6561719424802648,
          -3.266310110427021,
          -3.365737507725631,
          -3.5768018958289125,
          -3.4584363903733517,
          -3.6224212739756703,
          -3.076397685429307,
          -3.074450718954591,
          -1.270211321237851,
          -2.8587777373054495,
          -7,
          -3.1869563354654122,
          -2.220821020318192,
          -2.5906609500758826,
          -3.6085260335771943,
          -7,
          -2.0966121089273897,
          -7,
          -2.5966448964610143,
          -2.85105440671866,
          -3.550595207489328,
          -3.1212314551496214,
          -2.4971271893465334,
          -3.393107024292132,
          -2.2852503509444095,
          -2.1096372294004264,
          -2.2387795106286505,
          -3.607562243183588,
          -4.002468450128332,
          -7,
          -3.664932433548043,
          -3.648067129448935,
          -3.4712183443078723,
          -1.8390982914222758,
          -7,
          -3.615634468877416,
          -2.257964125857119,
          -3.1831986420297387,
          -7,
          -3.5553363279952666,
          -2.9165197457596417,
          -7,
          -7,
          -7,
          -3.2665844470668635,
          -2.8523579836678272,
          -3.237166582685473,
          -2.7815502284597535,
          -3.0637085593914173,
          -3.423737249982329,
          -7,
          -3.552262522965547,
          -3.5569052690554477,
          -3.5798978696031036,
          -2.0675015484085564,
          -3.6844563563292083,
          -3.5154764413823756,
          -3.55303301620244,
          -3.585686278452497,
          -3.317958924700952,
          -3.1314582601065255,
          -2.952671385348004,
          -7,
          -7,
          -2.6635124704151556,
          -7,
          -7,
          -3.0798141308006843,
          -3.750354088762708,
          -2.534581317778785,
          -7,
          -2.6841105837010906,
          -2.5677500396977275,
          -2.756636108245848,
          -2.5402959357120936,
          -3.291812687467119,
          -7,
          -3.544811911757776,
          -7,
          -3.1103652106913016,
          -3.580696939712437,
          -7,
          -1.5575788998694664,
          -7,
          -4.04538166326508,
          -7,
          -3.321132199092705,
          -1.803187021052166,
          -1.709799782295541,
          -1.544708382151548,
          -7,
          -2.0348575451084927,
          -1.5578078557646042,
          -2.595496221825574,
          -2.200779915532511,
          -2.8724476477890133,
          -3.375846436309156,
          -2.5050319474775153,
          -2.5975855017522047,
          -3.287241711178348,
          -7,
          -3.303088010528054,
          -3.707995746422929,
          -3.700790221374347,
          -7,
          -3.39776625612645,
          -3.5512059437479064,
          -3.4697729403826645,
          -2.5631573474130365,
          -3.0750905299454705,
          -3.109240968588203,
          -3.6026025204202563,
          -2.7317901537745826,
          -3.029464946638236,
          -7,
          -3.743979865241843,
          -2.949070183558962,
          -3.232487866352986,
          -7,
          -7,
          -2.8080983884823985,
          -2.9579662575849297,
          -7,
          -3.295786940251609,
          -7,
          -3.3055663135153037,
          -2.248479278363012,
          -2.9378312132068283,
          -3.0751818546186915,
          -4.414534656088115,
          -7,
          -3.591621038213319,
          -3.6050894618815805,
          -2.869720514922589,
          -7,
          -3.2665844470668635,
          -3.721068301797159,
          -3.6832272060414346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.565611724902059,
          -2.9882021002587806,
          -2.7156143780236928,
          -7,
          -7,
          -7,
          -7,
          -3.6190933306267428,
          -2.6101276130759956,
          -7,
          -3.619719265611727,
          -7,
          -2.1485145179246334,
          -3.263304600287296,
          -1.6396649967000325,
          -1.312142404568052,
          -7,
          -7,
          -2.522609521607993,
          -2.758491349630627,
          -2.6510677301830268,
          -3.1443666098609677,
          -3.374588971886516,
          -3.6321534835106326,
          -3.5809249756756194,
          -3.28454352295875,
          -2.7302101047623504,
          -3.9357087478426633,
          -2.7445063432261585,
          -2.4861417453935593,
          -3.5241796783007557,
          -2.0410165097497748,
          -2.4378562177246685,
          -2.9641417275269504,
          -2.5426339390892774,
          -1.6307465453207721,
          -2.254366781142282,
          -7,
          -2.9817053769570374,
          -2.5118833609788744,
          -3.580696939712437,
          -2.7786034050126207,
          -3.550595207489328,
          -3.025223915178311,
          -2.1288931953940935,
          -7,
          -2.65135257739122,
          -3.071697945221614,
          -3.328498786724642,
          -2.736237098904729,
          -7,
          -3.7488080049586023,
          -7,
          -1.741747660192021,
          -2.8016531253763444,
          -2.5515371269694365,
          -1.7366373498507925,
          -2.7198834733033834,
          -3.9651546459869254,
          -7,
          -3.1110607820698206,
          -2.955126283548938,
          -3.2959539958685107,
          -2.8755986287355393,
          -3.5518158223510157,
          -7,
          -7,
          -2.797514847073891,
          -2.9058558202591933,
          -3.5930644316587173,
          -2.9120093755869783,
          -3.055531225050898,
          -3.104487111312395,
          -2.4593087037362253,
          -3.292477593667784,
          -2.794327147188887,
          -7,
          -3.6423655808449733,
          -3.0832039098096162,
          -1.9549924939289824,
          -3.6711844175736785,
          -2.5679637327475477,
          -4.08464776085473,
          -7,
          -2.2238026211274917,
          -3.800870654906812,
          -3.003077387416016,
          -7,
          -2.329092647195331,
          -7,
          -2.3506489672611517,
          -2.8163833578293587,
          -2.666205875272384,
          -2.4597274623087366,
          -3.558708570533166,
          -7,
          -3.2714543622113297,
          -7,
          -3.1351326513767748,
          -3.144262773761991,
          -2.57362573693412,
          -3.590284403718162,
          -2.1360407426264034,
          -2.047588868180089,
          -7,
          -3.025418521390219,
          -4.095148421072856,
          -4.337559087628736,
          -3.1650661783897562,
          -4.260929583529925,
          -2.9344984512435675,
          -3.4254527011208484,
          -2.592353192288362,
          -3.084147133154448,
          -2.8435442119456353,
          -7,
          -3.4118814755818088,
          -3.7023600283713543,
          -4.1079600064071435,
          -2.980943597662544,
          -7,
          -2.6274179354754055,
          -3.13160362896786,
          -7,
          -3.1969127457115927,
          -7,
          -4.31423073711276,
          -3.863303028869424,
          -2.887582139061224,
          -3.5974209235343935,
          -7,
          -4.385829618669783,
          -4.265831566255261,
          -7,
          -3.415856350335432,
          -3.765966424785714,
          -4.1025794751762215,
          -4.082048958148108,
          -7,
          -7,
          -7,
          -7,
          -3.719510824558501,
          -3.565611724902059,
          -2.904233438555862,
          -3.632356046239073,
          -3.8529676910288186,
          -2.9272866169481597,
          -1.8078005551873275,
          -7,
          -3.6885799830542143,
          -7,
          -3.099556441287455,
          -3.4125949311184796,
          -3.7937903846908188,
          -4.186532564592397,
          -3.579014901222905,
          -3.3852571999019094,
          -7,
          -3.638631858985767,
          -2.7564571100024473,
          -7,
          -3.668572269184558,
          -7,
          -7,
          -7,
          -3.106861947992472,
          -3.3129223784024946,
          -4.709059548622802,
          -3.5820633629117085,
          -3.4248272103534214,
          -7,
          -3.253733976788288,
          -7,
          -4.711665533165346,
          -4.177218959332716,
          -7,
          -7,
          -4.381818771625734,
          -4.178415740979452,
          -3.804330289065253,
          -3.8522359394118872,
          -3.2098723115450163,
          -3.4998702905864882,
          -3.7106937137287193,
          -2.488964478096017,
          -7,
          -3.1319823469987957,
          -3.5232399900485603,
          -3.2249860256767717,
          -4.50844698833347,
          -7,
          -7,
          -3.3386457091490778,
          -4.057799186029343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0288404510802023,
          -2.080167159029276,
          -2.268367803193454,
          -3.57541879121436,
          -3.398634324538392,
          -3.1438818288549104,
          -2.4391747398434687,
          -2.665580991017953,
          -3.5780658838360915,
          -2.983776588036885,
          -7,
          -3.093263058089709,
          -2.6009728956867484,
          -3.6097011023793995,
          -7,
          -2.3265220536355278,
          -7,
          -3.0419000056568426,
          -7,
          -3.60400993241223,
          -2.2639016404506758,
          -7,
          -3.6200318951262975,
          -3.213694803261253,
          -2.328583449714202,
          -7,
          -3.280968396871078,
          -7,
          -2.725328138344716,
          -3.7840668171930565,
          -2.1077502834521247,
          -3.3037561196781047,
          -7,
          -3.768416088216332,
          -2.2013597061080556,
          -7,
          -2.3280153540825674,
          -7,
          -2.718593944732072,
          -2.485199324904065,
          -7,
          -7,
          -3.741387992479269,
          -2.4374707639390873,
          -2.94272439249383,
          -3.3009214084695406,
          -2.779957051246906,
          -2.8660903354600853,
          -7,
          -2.06641467461787,
          -2.0420156273858576,
          -3.9721565358594937,
          -7,
          -2.3833498485369895,
          -2.2952921430163506,
          -7,
          -2.7690715925317253,
          -7,
          -7,
          -3.261857385629898,
          -2.7629285173929854,
          -2.330203984262001,
          -2.079919214758588,
          -3.000805798884526,
          -2.1625830742133614,
          -7,
          -7,
          -3.602385590105105,
          -3.955639653023252,
          -7,
          -2.718750734739665,
          -1.9887466584404367,
          -3.66162340922923,
          -3.072249897613515,
          -1.8976748921249955,
          -1.9865589396383379,
          -2.9561684304753633,
          -3.431765702625348,
          -2.904118345948579,
          -3.7788744720027396,
          -3.329194415088451,
          -2.9546283775072713,
          -3.187489385327816,
          -3.584839865239925,
          -7,
          -7,
          -3.5589484459780394,
          -7,
          -3.4146224299225225,
          -3.7763379096201755,
          -2.546953732587764,
          -3.296079887636682,
          -2.933039743665037,
          -2.636320699245659,
          -3.4000196350651586,
          -3.737896578909624,
          -3.885361220031512,
          -2.6219177784241787,
          -7,
          -2.572514158162275,
          -7,
          -2.550635949970891,
          -2.7407009689987443,
          -3.5991732173529125,
          -7,
          -2.4560979776847325,
          -2.6853435772341014,
          -2.6449541282216202,
          -3.321494866739587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5724068675580556,
          -2.672051653937386,
          -7,
          -3.406540180433955,
          -7,
          -7,
          -3.5744942682853273,
          -7,
          -7,
          -7,
          -3.4428715548211977,
          -7,
          -3.724876364863443,
          -3.9486085498764365,
          -7,
          -3.613418945034573,
          -7,
          -3.114610984232173,
          -3.6024940688072813,
          -7,
          -3.584733162833891,
          -3.6190933306267428,
          -3.6153186566114788,
          -7,
          -3.762753564933374,
          -3.274619619091238,
          -7,
          -7,
          -3.728597243383432,
          -7,
          -3.1818435879447726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.344981413927258,
          -7,
          -7,
          -3.638410998646127,
          -7,
          -7,
          -7,
          -4.217036258627626,
          -3.5334161417958905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0524053421921833,
          -3.9292656182530656,
          -7,
          -2.350571033954783,
          -3.563992649334369,
          -7,
          -2.4865721505183567,
          -7,
          -2.6782147827453997,
          -7,
          -7,
          -3.9673782967941977,
          -7,
          -7,
          -7,
          -3.2113875529368587,
          -7,
          -2.8662873390841948,
          -7,
          -7,
          -7,
          -2.720434958433874,
          -4.240708335653984,
          -3.1489109931093564,
          -7,
          -3.468495024507069,
          -7,
          -7,
          -7,
          -3.289142835932333,
          -7,
          -2.62490060220449,
          -2.360352397078838,
          -3.1339059874977355,
          -3.0750600841196736,
          -2.990092082531457,
          -7,
          -7,
          -7,
          -2.947311161005215,
          -2.971739590887778,
          -7,
          -7,
          -7,
          -7,
          -3.1741567592784814,
          -3.5593679094633317,
          -2.8397921844453293,
          -7,
          -3.0424442461608465,
          -3.0930713063760633,
          -3.3145693943004555,
          -3.2283147918655883,
          -7,
          -7,
          -4.127923999167784,
          -7,
          -2.2012533420043217,
          -7,
          -7,
          -3.6185187633048668,
          -7,
          -2.889581802149624,
          -7,
          -2.772566173085639,
          -2.649821463224565,
          -2.8914259428479943,
          -7,
          -3.1161094140633447,
          -7,
          -3.588745224405397,
          -3.3264382767957286,
          -4.0512683188703855,
          -7,
          -7,
          -7,
          -2.3656581296460253,
          -7,
          -7,
          -7,
          -7,
          -3.2664668954402414,
          -7,
          -7,
          -2.626254800537626,
          -3.105510184769974,
          -3.02434881738075,
          -7,
          -2.924882054350042,
          -3.0693509006842974,
          -7,
          -3.17376882313665,
          -2.0349027456652022,
          -7,
          -3.2522113402363746,
          -2.503563719643652,
          -3.082066934285113,
          -7,
          -3.331427296520743,
          -7,
          -7,
          -3.4172501991365754,
          -2.8246630509059116,
          -7,
          -3.409820451263753,
          -7,
          -4.69636949601487,
          -7,
          -7,
          -2.3375500134552123,
          -7,
          -7,
          -3.274703524516905,
          -3.575187844927661,
          -7,
          -3.0958664534785427,
          -3.3820711007640845,
          -7,
          -7,
          -7,
          -7,
          -3.0870712059065353,
          -7,
          -3.7886632131208575,
          -4.177623061631355,
          -7,
          -7,
          -7,
          -2.621868384681515,
          -7,
          -2.4301557119700194,
          -3.6078837443569896,
          -3.8744818176994666,
          -7,
          -7,
          -7,
          -3.597097681104017,
          -2.7944880466591697,
          -7,
          -7,
          -7,
          -7,
          -2.8834721588455867,
          -7,
          -2.9134164500544135,
          -3.500236474825639,
          -3.420615770625765,
          -3.6193542465143764,
          -3.3951515915045425,
          -3.2211533219547053,
          -2.912174564777331,
          -2.895146189375992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6066102370689712,
          -7,
          -7,
          -7,
          -7,
          -2.2917739424813983,
          -2.0188853441603736,
          -1.7906975879500755,
          -2.0348575451084927,
          -7,
          -1.8521110214050922,
          -7,
          -3.4211101297934343,
          -3.028571252692538,
          -3.3818367999983434,
          -3.7038929536325447,
          -3.2127201544178425,
          -7,
          -7,
          -3.9877556167385233,
          -7,
          -7,
          -7,
          -3.5001335167117813,
          -3.083860800866573,
          -2.7327956982893293,
          -2.6263403673750423,
          -3.3830969299490943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203984244420126,
          -3.467756051244033,
          -3.052584021782163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6945564538320075,
          -3.361727836017593,
          -4.156155260889687,
          -4.634431923821994,
          -7,
          -7,
          -7,
          -2.7209857441537393,
          -3.0916669575956846,
          -7,
          -7,
          -3.0925452076056064,
          -7,
          -7,
          -7,
          -3.1316186643491255,
          -2.8639173769578603,
          -7,
          -2.823148059810694,
          -7,
          -2.5272495409101916,
          -7,
          -7,
          -7,
          -7,
          -3.258876629372131,
          -2.3944516808262164,
          -7,
          -2.958802703399502,
          -7,
          -2.9454685851318194,
          -3.533327117054424,
          -2.561459171241916,
          -1.8657656639681313,
          -3.11293997608408,
          -7,
          -3.8541642908673475,
          -2.7518946880437474,
          -3.200937507389536,
          -7,
          -4.115469051738149,
          -7,
          -7,
          -7,
          -3.547856717375962,
          -7,
          -3.518908573691414,
          -2.8723748223537955,
          -7,
          -7,
          -7,
          -7,
          -3.0437551269686796,
          -2.6057837394735675,
          -3.2384224958854797,
          -7,
          -7,
          -7,
          -7,
          -3.092018470752797,
          -7,
          -7,
          -2.1409268419924303,
          -7,
          -3.544564097496043,
          -3.3763944420372662,
          -3.4906765986678305,
          -3.933942602741261,
          -7,
          -7,
          -7,
          -7,
          -2.887617300335736,
          -3.1245042248342823,
          -2.2795148535261855,
          -2.752706802390036,
          -3.837840861655523,
          -3.4324882557705063,
          -7,
          -7,
          -4.185402415387617,
          -3.9134959596171237,
          -7,
          -7,
          -7,
          -7,
          -3.3904935265041733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.761551988564182,
          -7,
          -3.0090257420869104,
          -3.391816923613249,
          -2.651762447380111,
          -4.560653734255116,
          -4.099749680848987,
          -4.5969817431335205,
          -7,
          -3.064520383377145,
          -4.4197864562419005,
          -2.6805297561976316,
          -7,
          -3.292256071356476,
          -7,
          -2.8454081396217936,
          -3.057158750485419,
          -3.1781852925373903,
          -1.867839501143476,
          -7,
          -7,
          -3.5137501500818233,
          -7,
          -7,
          -3.2650537885040145,
          -3.7148325124333326,
          -3.189770956346874,
          -2.330588455929623,
          -7,
          -1.0903975088639173,
          -3.5620115365813385,
          -3.874307833128039,
          -3.9869507878585164,
          -7,
          -7,
          -2.880688571764092,
          -3.919862253555538,
          -4.121855182166855,
          -3.52270499273475,
          -4.010469569796392,
          -7,
          -3.5418911250960012,
          -4.725143591132016,
          -4.523928468273403,
          -3.5482553731774353,
          -4.344451223686138,
          -3.601199598454282,
          -3.3133218245947287,
          -7,
          -7,
          -7,
          -4.787244336213674,
          -3.8141143561291253,
          -3.3951515915045425,
          -4.130044142287605,
          -7,
          -4.665412118002188,
          -7,
          -7,
          -3.6656819947685397,
          -3.8796405572939117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163101715043975,
          -7,
          -3.621809598806646,
          -7,
          -4.376220981693863,
          -3.336133464245632,
          -2.37927961214755,
          -7,
          -7,
          -7,
          -4.006871077377176,
          -4.024977972095624,
          -3.2870175013221017,
          -4.4531194977640025,
          -3.9248194680033985,
          -3.9883448780958206,
          -7,
          -4.4491234131845605,
          -7,
          -7,
          -7,
          -4.3867842398736805,
          -7,
          -7,
          -3.6330554819280527,
          -3.7485136257833434,
          -5.707080254125105,
          -7,
          -3.273695587930092,
          -7,
          -3.9176773410199104,
          -7,
          -5.105641304876784,
          -3.501333178645566,
          -4.237166582685473,
          -7,
          -4.036269495742816,
          -4.444325902788053,
          -4.089148851582349,
          -7,
          -7,
          -7,
          -4.30031281793437,
          -3.6527020902669305,
          -7,
          -3.8332795434419458,
          -4.056456992407894,
          -7,
          -4.57086192796976,
          -7,
          -7,
          -4.013953149375142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6028699186636284,
          -3.4818724103106633,
          -2.973589623427257,
          -7,
          -2.8226583460036045,
          -3.4537959541740304,
          -2.386704711065075,
          -3.44216608578472,
          -7,
          -3.8021577531869615,
          -7,
          -3.339684409858061,
          -3.386409778881913,
          -7,
          -7,
          -2.61687690940715,
          -3.45484486000851,
          -3.4292676664331685,
          -7,
          -7,
          -2.548098346867815,
          -7,
          -7,
          -2.806179973983887,
          -3.3121773564397787,
          -7,
          -4.042772337497674,
          -7,
          -3.141763230275788,
          -4.303638768856199,
          -2.5884514800267557,
          -4.015010278861907,
          -7,
          -7,
          -3.49605279796331,
          -7,
          -3.5644293269979834,
          -7,
          -7,
          -3.268437552261454,
          -7,
          -7,
          -7,
          -3.369586890736344,
          -3.1424676821446043,
          -7,
          -7,
          -7,
          -7,
          -3.420120848085703,
          -2.841401187421594,
          -7,
          -7,
          -3.325515663363148,
          -7,
          -7,
          -3.3233699788402276,
          -7,
          -7,
          -7,
          -7,
          -3.015548843110824,
          -3.259952059922254,
          -7,
          -2.594760752586463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1517987225928614,
          -7,
          -3.079904467666721,
          -7,
          -2.9295992181746016,
          -3.3890774437923494,
          -2.8830933585756897,
          -3.4761688995605318,
          -2.9613024181586454,
          -3.792181496149679,
          -3.335858911319818,
          -4.061829307294699,
          -3.7280289544205187,
          -7,
          -7,
          -7,
          -3.0784568180532927,
          -3.896673161995069,
          -2.957128197676813,
          -7,
          -7,
          -3.3625704305827226,
          -3.458033192496506,
          -4.183298321075812,
          -4.55568681403678,
          -7,
          -3.24809593109413,
          -7,
          -2.9265139350708855,
          -7,
          -7,
          -3.731346975545955,
          -7,
          -7,
          -7,
          -7,
          -3.6298341709244926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5496162395190853,
          -3.388988785124714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505421327583281,
          -7,
          -4.132931749214915,
          -3.21305266686185,
          -7,
          -2.94423584379348,
          -7,
          -7,
          -7,
          -7,
          -4.508704748138777,
          -7,
          -7,
          -3.614053105987219,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.118677985690463,
          -7,
          -7,
          -7,
          -7,
          -3.3197304943302246,
          -7,
          -7,
          -7,
          -3.226471015317139,
          -3.4868553552769432,
          -7,
          -7,
          -3.4928302056786884,
          -7,
          -7,
          -7,
          -3.3355581880658614,
          -3.2119210843085093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.989227273730537,
          -3.1252488362158366,
          -7,
          -2.0043213737826426,
          -3.2811110868939424,
          -3.1476763242410986,
          -7,
          -7,
          -2.615014323889285,
          -3.003029470553618,
          -7,
          -3.4773065141793995,
          -3.1476763242410986,
          -2.737987326333431,
          -7,
          -1.8649423566468655,
          -3.2607866686549762,
          -2.586774783406332,
          -2.36707624226875,
          -7,
          -2.9908935802199035,
          -2.606560492554639,
          -3.683928527034064,
          -7,
          -3.1015752462559334,
          -3.5793262037552553,
          -3.4667193716815987,
          -3.3024030886051277,
          -7,
          -3.4473131088235682,
          -7,
          -2.9951962915971793,
          -2.0464951643347082,
          -3.1457387839091373,
          -2.9461573949223725,
          -2.83803909146875,
          -3.1962314704428745,
          -7,
          -3.4295908022233017,
          -2.562491127177062,
          -2.4795273244855407,
          -3.4488608456074408,
          -3.4507108781469196,
          -3.3432115901797474,
          -3.4207806195485655,
          -3.7274599208579087,
          -3.1524776333829094,
          -2.570153612664517,
          -7,
          -3.619823500457278,
          -7,
          -3.1486643399822363,
          -2.7304886350318736,
          -7,
          -3.159065640479062,
          -3.750379810251768,
          -3.3384564936046046,
          -1.81601260357686,
          -7,
          -7,
          -3.359835482339888,
          -7,
          -3.381656482585787,
          -7,
          -2.740855925756123,
          -2.944975908412048,
          -3.3761205256094518,
          -7,
          -3.062707303658236,
          -7,
          -3.140540987427616,
          -2.9283958522567137,
          -3.4807971572684466,
          -7,
          -7,
          -7,
          -1.9012766462284751,
          -7,
          -3.7386220279179425,
          -7,
          -7,
          -7,
          -2.8424011943457916,
          -7,
          -1.8614294532301892,
          -3.3283796034387376,
          -7,
          -7,
          -2.8676147812238355,
          -3.2305000118414706,
          -3.4099331233312946,
          -7,
          -2.141673694251988,
          -7,
          -2.66333066849445,
          -2.2935203938852355,
          -2.836535091898369,
          -2.880356199419236,
          -2.5955810035695044,
          -3.773127924033335,
          -2.0589634981318623,
          -2.573003538429554,
          -2.511338051049237,
          -7,
          -7,
          -3.114610984232173,
          -4.097977065496432,
          -7,
          -2.946746935033585,
          -1.8121265910619166,
          -7,
          -7,
          -2.990802855439509,
          -3.3629534589442858,
          -7,
          -7,
          -2.742777484325303,
          -3.302114376956201,
          -2.456366033129043,
          -7,
          -7,
          -3.0159881053841304,
          -3.391922621374344,
          -3.367852683427225,
          -3.2981432216889313,
          -3.5099414041582264,
          -7,
          -7,
          -2.5451008497880436,
          -3.3637999454791094,
          -2.0254521662538254,
          -3.3361594264847807,
          -3.444096866475288,
          -3.318689269947746,
          -7,
          -3.426673888021373,
          -3.95970902424643,
          -2.622214022966295,
          -7,
          -7,
          -3.19506899646859,
          -2.7415455167762097,
          -7,
          -3.521530341278711,
          -2.660865478003869,
          -3.0014091684058766,
          -2.6961066506690017,
          -3.263588731459945,
          -3.523616419054371,
          -3.401228167498113,
          -2.6057677461550126,
          -7,
          -7,
          -7,
          -2.6527296960692475,
          -7,
          -7,
          -7,
          -1.5221134684622253,
          -7,
          -7,
          -7,
          -7,
          -2.047889844571703,
          -2.135291704475752,
          -1.4795876071615262,
          -1.5578078557646042,
          -1.8521110214050922,
          -7,
          -3.2119210843085093,
          -2.8431081419996067,
          -3.174786417367337,
          -7,
          -2.992847954780297,
          -2.6953065224318027,
          -7,
          -7,
          -7,
          -3.256837965904041,
          -7,
          -2.65359838184329,
          -4.130783914588957,
          -7,
          -2.318957251879195,
          -1.7804402596415618,
          -7,
          -2.3300446322458757,
          -3.400537989391946,
          -2.9001849963485364,
          -7,
          -7,
          -3.3068537486930083,
          -3.0055915816134133,
          -3.0972077128816373,
          -7,
          -2.8380090624639394,
          -2.8981764834976764,
          -3.331832044436249,
          -7,
          -2.788521887222473,
          -7,
          -7,
          -2.385606273598312,
          -2.139798385019995,
          -3.226628542211219,
          -4.299333774213371,
          -7,
          -2.5356557307896432,
          -3.1031192535457137,
          -2.6251654069508215,
          -7,
          -7,
          -2.3688677255422803,
          -3.2214142378423385,
          -7,
          -3.3049211619008916,
          -7,
          -3.344195715871435,
          -2.762115641442657,
          -3.3106933123433606,
          -3.038620161949703,
          -7,
          -2.5810130261892485,
          -7,
          -7,
          -7,
          -7,
          -2.948738890358178,
          -2.2346859743215286,
          -7,
          -7,
          -3.8095597146352675,
          -3.0670708560453703,
          -3.10698371567979,
          -1.9956351945975501,
          -1.3340375609112185,
          -3.031408464251624,
          -7,
          -3.306561484735791,
          -2.9639058261187046,
          -2.820687873247529,
          -3.4308809464528913,
          -3.578295305120826,
          -7,
          -7,
          -3.373463721632369,
          -2.9439888750737717,
          -7,
          -2.9520655901850503,
          -2.7918819541323385,
          -3.9316612396844812,
          -2.9033613362553186,
          -3.121723945637367,
          -7,
          -3.009309224134771,
          -2.348694190265541,
          -2.679629753219008,
          -7,
          -7,
          -3.4893959217271293,
          -7,
          -2.287670025764879,
          -7,
          -7,
          -1.8867109891534184,
          -7,
          -3.1618669046240195,
          -2.7302437827494095,
          -2.8571673823501493,
          -7,
          -7,
          -3.622006673006805,
          -7,
          -2.319826481618029,
          -2.9611837098124356,
          -2.7000853282011494,
          -2.1294254614235526,
          -2.7794160989470678,
          -2.846168355771784,
          -2.595496221825574,
          -7,
          -7,
          -3.884866136291988,
          -3.6554745946527163,
          -3.3165993020938607,
          -7,
          -7,
          -2.960530233278372,
          -3.28390399699171,
          -7,
          -3.415140352195873,
          -3.6232492903979003,
          -3.06595298031387,
          -2.7248607780823373,
          -7,
          -7,
          -2.7237839369653294,
          -3.1609184995397808,
          -3.762453482363547,
          -2.341269613058443,
          -4.088561311791215,
          -3.1359691202060493,
          -4.399095430831928,
          -7,
          -2.745966567012242,
          -3.769975996724676,
          -3.10151795524841,
          -7,
          -2.846491747873616,
          -7,
          -2.118664941398519,
          -3.1875771190550872,
          -2.632204133050827,
          -2.455196373165623,
          -3.0269416279590295,
          -7,
          -7,
          -3.068000226145172,
          -3.1151110355043476,
          -3.4307198878632823,
          -2.738275942048923,
          -7,
          -2.350719366024341,
          -3.307282047033346,
          -7,
          -3.408335380863189,
          -4.306503658116052,
          -7,
          -7,
          -4.726091190633324,
          -3.225343748174189,
          -3.6612446089593336,
          -3.2856215965486952,
          -3.181367126589355,
          -3.7441755903710754,
          -7,
          -7,
          -4.431033896809084,
          -4.70371686421357,
          -3.3685165806453545,
          -7,
          -3.4838724542226736,
          -3.3394412482752034,
          -7,
          -3.8680367455497753,
          -7,
          -4.913699084613634,
          -4.309906835568681,
          -3.375712374112721,
          -7,
          -7,
          -4.673361938712162,
          -7,
          -7,
          -3.4431989589824896,
          -4.204554060135243,
          -7,
          -3.8782727899035083,
          -7,
          -7,
          -7,
          -3.961373627594801,
          -3.999550997010515,
          -4.2280922391569815,
          -3.3999992948322952,
          -2.9692605575027797,
          -4.685006846094914,
          -3.390489844778819,
          -1.9821283495107576,
          -7,
          -7,
          -7,
          -3.4833895781053097,
          -3.7575858013465804,
          -7,
          -7,
          -3.7940788875341207,
          -3.9167083091985275,
          -7,
          -3.9849471533672807,
          -7,
          -7,
          -7,
          -4.4017623021368255,
          -7,
          -7,
          -3.7198064999622655,
          -3.818003957176613,
          -7,
          -7,
          -2.8112397727532894,
          -7,
          -3.758963906261545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354089222152247,
          -7,
          -4.794181213459668,
          -7,
          -3.7777650391693047,
          -3.6018427897820984,
          -4.128824522553188,
          -3.093960178079215,
          -2.950202531637585,
          -3.4888423524253844,
          -4.00935173048672,
          -3.7185847200274362,
          -4.65170628080527,
          -7,
          -7,
          -3.925920296643791,
          -3.8523783210431803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.439854098108879,
          -3.2884728005997825,
          -3.0806780138224896,
          -7,
          -2.846584502898046,
          -3.6740523984521385,
          -2.76063785386249,
          -3.0814673283885368,
          -7,
          -3.8570911546735136,
          -7,
          -3.1449124695489097,
          -3.75785134368558,
          -7,
          -7,
          -2.571563266370119,
          -7,
          -3.4933883352101596,
          -7,
          -7,
          -2.333015212300375,
          -7,
          -3.1266183755229515,
          -3.2328691051326137,
          -2.9165416759478404,
          -7,
          -4.075181854618692,
          -7,
          -2.649918718735419,
          -4.136657161873879,
          -2.480284740313284,
          -3.8959816302471357,
          -7,
          -7,
          -2.779341797976024,
          -3.1476763242410986,
          -3.6554265877459184,
          -7,
          -3.509740015570382,
          -2.742814875476512,
          -7,
          -3.3529539117100877,
          -7,
          -3.504742636271688,
          -3.204662511748219,
          -3.399846712712922,
          -3.524266268766979,
          -7,
          -3.4149733479708178,
          -2.842359573330675,
          -2.5882910298599247,
          -4.2372923375674585,
          -7,
          -3.229169702539101,
          -2.9894498176666917,
          -7,
          -3.0464394176583074,
          -7,
          -7,
          -3.073305849619936,
          -3.271609301378832,
          -2.709304978291998,
          -2.8065675639086787,
          -3.140586598610774,
          -2.5060989599284405,
          -7,
          -7,
          -2.7970943426302544,
          -7,
          -3.080987046910887,
          -3.575303333422399,
          -3.0548865225351345,
          -7,
          -3.313234291694724,
          -2.745855195173729,
          -2.565109599080669,
          -2.914116391219987,
          -2.476341051411325,
          -3.015858520286947,
          -2.7507012003958686,
          -3.5471591213274176,
          -3.4802944600030066,
          -3.4906255716095282,
          -7,
          -3.492061604512599,
          -7,
          -3.0273496077747564,
          -7,
          -3.7871238189802026,
          -3.651762447380111,
          -3.13956426617585,
          -3.647969458362972,
          -3.2939270038674855,
          -2.7919244549379605,
          -4.206987694756409,
          -4.56589502203011,
          -3.189209489582306,
          -3.6432552250247716,
          -7,
          -7,
          -7,
          -2.933053210369387,
          -3.192846115188842,
          -3.8101652845431495,
          -7,
          -3.2303211689190787,
          -3.159115821827769,
          -3.2458744291694313,
          -2.8291428932285543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2978152046930482,
          -2.6141059109580307,
          -2.8578147779710066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4176377396522297,
          -7,
          -3.0988167170489413,
          -7,
          -7,
          -4.520064101808785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.485437481076301,
          -7,
          -7,
          -7,
          -3.2132520521963968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.845276037295602,
          -3.7845459740545224,
          -7,
          -3.185258765296585,
          -2.627050579278049,
          -2.9335632068213493,
          -7,
          -7,
          -7,
          -3.172310968521954,
          -7,
          -2.5759956202032677,
          -3.9352048674265814,
          -3.1078880251827985,
          -3.4425581544959227,
          -3.452085116608264,
          -7,
          -3.2195845262142546,
          -3.1245042248342823,
          -2.570104922212994,
          -2.2081725266671217,
          -7,
          -4.093024567839438,
          -7,
          -7,
          -7,
          -7,
          -3.4638929889859074,
          -7,
          -7,
          -7,
          -3.025442414387701,
          -7,
          -3.9399932234951613,
          -7,
          -7,
          -3.485437481076301,
          -7,
          -3.4218506150229584,
          -7,
          -3.0130479961152314,
          -7,
          -2.230252363564598,
          -3.424718337331567,
          -2.943845409406475,
          -7,
          -2.870598962314376,
          -3.852845818014997,
          -7,
          -2.4424797690644486,
          -2.1605285538517576,
          -7,
          -7,
          -7,
          -7,
          -3.2780673308886628,
          -7,
          -3.422724109285819,
          -7,
          -7,
          -3.233884108765886,
          -7,
          -3.8000981801747757,
          -3.71566914240099,
          -7,
          -7,
          -4.225225258296776,
          -7,
          -7,
          -7,
          -7,
          -2.9706567545749585,
          -3.4720246977002813,
          -3.2227164711475833,
          -7,
          -7,
          -7,
          -2.824884805866878,
          -7,
          -2.9587231112647787,
          -7,
          -3.3346903802212804,
          -3.338257230246256,
          -3.152135396861876,
          -2.8506462351830666,
          -7,
          -7,
          -3.429752280002408,
          -7,
          -3.675778341674085,
          -2.887617300335736,
          -3.5745521086639047,
          -7,
          -3.131297796597623,
          -7,
          -3.7122707911929065,
          -7,
          -7,
          -3.0770043267933502,
          -3.111262513659065,
          -3.3147622932679495,
          -7,
          -7,
          -7,
          -7,
          -3.0991279277264674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313234291694724,
          -3.596679548776454,
          -3.8069634097426848,
          -7,
          -2.9385753148702514,
          -7,
          -4.219724204427858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1722901065317064,
          -7,
          -7,
          -7,
          -3.9073038488339695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3194530784907674,
          -3.5787537844264343,
          -7,
          -7,
          -3.6270584640009895,
          -3.1389339402569236,
          -7,
          -3.358886204405869,
          -7,
          -7,
          -7,
          -3.2105860249051563,
          -7,
          -3.5985230166624986,
          -7,
          -7,
          -3.449478399187365,
          -3.37984917876283,
          -3.1684974835230326,
          -3.081527326244805,
          -3.412460547429961,
          -7,
          -3.214711421005384,
          -7,
          -3.625415352154408,
          -3.415140352195873,
          -7,
          -3.737582525031894,
          -3.2278867046136734,
          -7,
          -7,
          -7,
          -7,
          -3.1986570869544226,
          -7,
          -2.925124491288567,
          -7,
          -3.999456792322048,
          -2.5337085232398597,
          -3.0105119627372137,
          -3.131860599375211,
          -7,
          -3.45178643552429,
          -2.595496221825574,
          -7,
          -3.2119210843085093,
          -7,
          -2.534660575828444,
          -2.8752542402808574,
          -2.7993405494535817,
          -3.4126285205443754,
          -7,
          -3.742568034366142,
          -7,
          -3.0892425720555208,
          -7,
          -7,
          -7,
          -3.805296916157985,
          -7,
          -3.343802333161655,
          -7,
          -7,
          -7,
          -7,
          -3.8082109729242224,
          -7,
          -7,
          -2.674204809221172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1963604423536847,
          -4.159687479754789,
          -3.9654494961154136,
          -7,
          -7,
          -2.9537596917332287,
          -3.347720217034038,
          -7,
          -3.1670217957902564,
          -7,
          -3.1126050015345745,
          -7,
          -7,
          -7,
          -7,
          -2.35052490357268,
          -7,
          -3.161368002234975,
          -7,
          -4.469885805962796,
          -7,
          -7,
          -7,
          -2.716281648342755,
          -3.2860071220794747,
          -3.2706788361447066,
          -7,
          -2.9858753573083936,
          -7,
          -7,
          -3.841859809775061,
          -3.2692209815300104,
          -7,
          -7,
          -7,
          -3.010703688640537,
          -7,
          -3.590891349601164,
          -7,
          -3.4172058867643305,
          -7,
          -7,
          -7,
          -3.4276078113473605,
          -3.805908455074197,
          -3.398981066658131,
          -3.182414652434554,
          -3.591287265058499,
          -3.392696953259666,
          -3.2812606870550125,
          -3.1646502159342966,
          -7,
          -3.274388795550379,
          -3.554125581513013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0683250363930514,
          -3.054421524462536,
          -3.0812272540419574,
          -3.3972445810103866,
          -4.020756379707693,
          -3.9398186628213794,
          -7,
          -3.828359093933543,
          -7,
          -7,
          -2.3954643446238713,
          -3.444513206334043,
          -3.6955692270361853,
          -3.3104808914626753,
          -7,
          -7,
          -7,
          -7,
          -3.055168111394058,
          -2.2716832301358245,
          -7,
          -7,
          -7,
          -3.3409065871395938,
          -2.6587916444639728,
          -3.2278867046136734,
          -7,
          -2.839352328895421,
          -7,
          -3.1742052269401473,
          -7,
          -7,
          -7,
          -7,
          -3.4020033090697046,
          -3.2826221128780624,
          -4.38524868240322,
          -3.70372115992702,
          -4.203672752553866,
          -7,
          -3.004689784223429,
          -4.177206582920812,
          -3.534660575828444,
          -7,
          -2.411409240981208,
          -7,
          -3.3352572564345317,
          -3.843295082736507,
          -7,
          -3.174931593528443,
          -7,
          -7,
          -3.529045170765769,
          -7,
          -7,
          -7,
          -3.7245216271185626,
          -7,
          -2.5489232446175647,
          -7,
          -7,
          -4.127720152892319,
          -7,
          -3.9895610468853566,
          -7,
          -7,
          -7,
          -3.624797578960761,
          -2.4151491401132317,
          -4.04017834859167,
          -3.7142878374051356,
          -7,
          -2.752982303235319,
          -4.2489454550567345,
          -4.302569010936054,
          -4.114010161703462,
          -7,
          -3.9033975033507677,
          -4.626078479699109,
          -7,
          -7,
          -7,
          -4.486407452843279,
          -4.293914741031102,
          -2.8257880038594525,
          -3.656545368541022,
          -7,
          -4.365459904598516,
          -3.607696230930896,
          -7,
          -3.780511728833051,
          -7,
          -4.384111374953769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1648433909076195,
          -4.208710019906401,
          -3.844953251054122,
          -7,
          -3.900093901543398,
          -4.592217482164138,
          -3.9328287669008466,
          -7,
          -7,
          -7,
          -3.2830045605653697,
          -4.0297489185668365,
          -7,
          -4.153845340080965,
          -3.665646646127807,
          -4.387380926770457,
          -7,
          -4.450926202822742,
          -3.3981136917305026,
          -7,
          -3.5499836111596887,
          -4.3888646325755944,
          -7,
          -7,
          -4.518351597460188,
          -3.703694399052745,
          -4.707164645304338,
          -7,
          -3.4588643783615183,
          -7,
          -4.056566617596654,
          -7,
          -7,
          -3.6303261548039467,
          -7,
          -7,
          -3.862469297548378,
          -3.843995394703985,
          -4.186899856567887,
          -7,
          -7,
          -3.5597869682005565,
          -4.204027685271576,
          -3.3231007756543756,
          -7,
          -3.743646929950466,
          -4.115015832022429,
          -3.1750283506819907,
          -3.8050598346304128,
          -7,
          -7,
          -4.015181557509164,
          -4.013237602964741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4814856258274136,
          -2.3183416396707175,
          -2.864511081058392,
          -7,
          -7,
          -4.058312121108386,
          -7,
          -3.1588146467242266,
          -7,
          -7,
          -7,
          -3.761736537321043,
          -3.220456778931451,
          -3.265525335219074,
          -7,
          -7,
          -7,
          -3.438621448045396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1480882706622184,
          -7,
          -4.047352760753935,
          -7,
          -7,
          -4.605951157564873,
          -4.097528008441893,
          -3.112150977941765,
          -7,
          -7,
          -2.8314126702682967,
          -7,
          -3.100485422642873,
          -7,
          -3.3972445810103866,
          -3.191893281428276,
          -7,
          -7,
          -7,
          -3.390758528738717,
          -3.4528593357958526,
          -7,
          -7,
          -2.7371926427047373,
          -7,
          -2.738780558484369,
          -3.5462135278186464,
          -7,
          -7,
          -3.035929789456723,
          -3.1405080430381793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1760912590556813,
          -3.184131141132529,
          -2.9722028383790646,
          -7,
          -7,
          -7,
          -7,
          -3.249198357391113,
          -3.83257277484618,
          -7,
          -3.1791207296092994,
          -3.2559355042329616,
          -7,
          -7,
          -3.0045670154644757,
          -2.768648099163793,
          -3.7005306569785916,
          -7,
          -3.2442977420825336,
          -3.577721524509021,
          -7,
          -3.35869609957381,
          -3.366945663852573,
          -3.7374312005145827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3057811512549824,
          -7,
          -3.7622032550681346,
          -7,
          -7,
          -4.55709797835226,
          -3.736555847162636,
          -3.262213705476417,
          -7,
          -2.9461246192171453,
          -7,
          -3.244689360492884,
          -3.4394905903896835,
          -7,
          -7,
          -3.1240148788874076,
          -7,
          -4.10907208097888,
          -3.2938043599193367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4008832155483626,
          -7,
          -3.823213313282668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.510276844417355,
          -7,
          -7,
          -3.6262376851469007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.398981066658131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.677454862198223,
          -3.1072099696478683,
          -2.946943270697825,
          -3.3126004392612596,
          -3.928896920921119,
          -7,
          -7,
          -7,
          -3.3807279514476365,
          -2.961720762515049,
          -7,
          -3.3230457354817013,
          -7,
          -3.2352758766870524,
          -7,
          -2.9284717181809006,
          -3.3443922736851106,
          -7,
          -3.0619799470748785,
          -3.382543387661794,
          -7,
          -7,
          -7,
          -2.8076703012304836,
          -3.0998532198843813,
          -7,
          -3.550135134309459,
          -2.7596678446896306,
          -3.227372442289636,
          -7,
          -2.9943171526696366,
          -2.5921767573958667,
          -7,
          -2.000952284542136,
          -2.9028184680822537,
          -3.0560150335589764,
          -7,
          -3.428608221033195,
          -3.245018870737753,
          -7,
          -3.517195897949974,
          -3.0829647937777516,
          -2.786199135510441,
          -3.2780673308886628,
          -7,
          -7,
          -2.91399035898314,
          -7,
          -2.7310901918207264,
          -3.2919235758838847,
          -2.919648531795087,
          -3.2643455070500926,
          -7,
          -3.037625669914719,
          -3.2895889525425965,
          -2.744097310904046,
          -3.362670929725667,
          -2.8870543780509568,
          -3.229937685907934,
          -3.3281756614383227,
          -3.6842167951388807,
          -2.6807514900992335,
          -7,
          -7,
          -3.0860037056183818,
          -3.2008504980910777,
          -2.583198773968623,
          -2.409208292317029,
          -7,
          -7,
          -4.049857360679732,
          -7,
          -3.532117116248804,
          -7,
          -2.662521737910115,
          -2.5549936257149755,
          -3.504742636271688,
          -3.279210512601395,
          -7,
          -7,
          -7,
          -3.628491104967123,
          -3.063520999689991,
          -3.4718781993072905,
          -7,
          -2.955886190732576,
          -2.8157674379896123,
          -2.949690192923948,
          -3.218010042984363,
          -7,
          -7,
          -2.8627275283179747,
          -2.849910558301496,
          -3.219060332448861,
          -7,
          -3.1829279692369927,
          -2.6410773133253747,
          -7,
          -7,
          -2.5153356074766453,
          -2.909020854211156,
          -7,
          -3.1172712956557644,
          -3.7328760413627067,
          -3.318810874835571,
          -7,
          -7,
          -7,
          -3.4122925093230463,
          -2.740499994105537,
          -7,
          -7,
          -2.91539983521227,
          -2.88752353061025,
          -3.433209608771474,
          -2.756445920162273,
          -3.0906378232707343,
          -3.300250561719041,
          -7,
          -3.3040055534272743,
          -7,
          -4.044618145823885,
          -3.389343311252078,
          -2.893983567211847,
          -3.714078164981856,
          -7,
          -7,
          -2.7782959910888336,
          -3.0110415256389502,
          -7,
          -7,
          -3.434107398431057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4791210793518808,
          -3.113140836867081,
          -3.0729565042610507,
          -3.173259130501515,
          -7,
          -7,
          -7,
          -3.2564772062416765,
          -7,
          -7,
          -3.894260664446988,
          -7,
          -7,
          -7,
          -3.476324317420228,
          -7,
          -7,
          -7,
          -2.514547752660286,
          -3.231979026831504,
          -7,
          -2.1654473879113305,
          -3.5601458398490475,
          -2.6990940707507756,
          -7,
          -2.8580356448150805,
          -3.1509098737011216,
          -2.7004873811595234,
          -3.381856660898393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2581581933407944,
          -7,
          -2.7726883546821415,
          -7,
          -3.7033558725100733,
          -3.2054750367408906,
          -2.901390202114049,
          -2.815259036703932,
          -7,
          -2.991521413671849,
          -2.200779915532511,
          -3.4211101297934343,
          -2.8431081419996067,
          -2.534660575828444,
          -7,
          -1.9233869609443797,
          -1.5603052432209612,
          -2.689873663917267,
          -3.296884475538547,
          -2.9144187194479314,
          -7,
          -3.400753787896711,
          -2.587570666364193,
          -3.886735064575406,
          -7,
          -3.0342941524891125,
          -7,
          -2.7206680684158506,
          -7,
          -2.5947081713790734,
          -3.270911639410481,
          -3.0015173768235046,
          -2.314393957221963,
          -2.377228170976555,
          -7,
          -3.2489536154957075,
          -4.076440177918153,
          -3.2176944602053785,
          -7,
          -7,
          -7,
          -7,
          -2.6384892569546374,
          -7,
          -7,
          -2.8333596367430127,
          -2.9672670915597856,
          -3.217220655644519,
          -3.01970958901189,
          -4.041749550402577,
          -7,
          -2.677378796959058,
          -2.704579449696299,
          -3.390758528738717,
          -7,
          -7,
          -2.8138477542288545,
          -3.45117215751254,
          -3.446847710155809,
          -7,
          -7,
          -7,
          -3.258397804095509,
          -7,
          -7,
          -3.1577588860468637,
          -3.6257483888188187,
          -7,
          -7,
          -7,
          -7,
          -3.3352572564345317,
          -7,
          -7,
          -7,
          -2.9951962915971793,
          -3.4769764657595275,
          -3.8561244442423,
          -3.1855421548543754,
          -2.763877031495655,
          -7,
          -7,
          -2.831989684404655,
          -7,
          -3.4339543652562603,
          -3.0392157659039505,
          -3.7203247174174416,
          -7,
          -7,
          -7,
          -3.193641308090492,
          -2.9754974565302335,
          -3.3119233087683617,
          -3.3237332367838985,
          -3.60400993241223,
          -2.584654239988151,
          -3.3310221710418286,
          -2.9271136119337604,
          -3.4087486061842442,
          -2.558053690567051,
          -2.402089350572097,
          -7,
          -7,
          -2.933824603968112,
          -7,
          -2.97297382115194,
          -7,
          -7,
          -3.0277119350306485,
          -3.3981136917305026,
          -2.7393462671509194,
          -2.8328281295393536,
          -3.9049636245067205,
          -2.996219709466273,
          -7,
          -3.0793940833377964,
          -3.2216749970707688,
          -2.7456602257060756,
          -2.91916529134874,
          -2.151267675330649,
          -2.9265996539070276,
          -2.5542872095319615,
          -3.3819569700273067,
          -3.485153349903652,
          -2.8039445940719196,
          -7,
          -3.965719614031156,
          -3.454285758836911,
          -7,
          -7,
          -3.1784013415337555,
          -3.355962079458681,
          -3.7214808547700495,
          -2.1012887156115734,
          -3.321184027302314,
          -3.266231696689893,
          -7,
          -7,
          -7,
          -2.8829512232506107,
          -3.3322364154914434,
          -2.2280702222508446,
          -3.7227161674884948,
          -2.328583449714202,
          -4.018605404625595,
          -2.974545805884931,
          -4.533510927304131,
          -7,
          -2.9605896808839542,
          -3.216611188785647,
          -3.071513805095089,
          -2.8744818176994666,
          -1.0824788661576048,
          -7,
          -2.452169918535435,
          -2.0368130875534725,
          -3.02626080875407,
          -2.359021942641668,
          -7,
          -7,
          -7,
          -2.9621324692982354,
          -7,
          -3.3404441148401185,
          -3.7431176252147416,
          -7,
          -2.5426135630696667,
          -7,
          -7,
          -4.607379953483188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8245596945739138,
          -4.409510452269316,
          -7,
          -7,
          -4.327440676242755,
          -4.7279883338825,
          -7,
          -7,
          -7,
          -4.683731278618886,
          -4.627268539143364,
          -7,
          -4.335197045077561,
          -7,
          -5.389932955923036,
          -7,
          -4.068767006668941,
          -4.141136090120739,
          -7,
          -4.367626106062465,
          -4.216086692421913,
          -7,
          -4.180204752401327,
          -7,
          -4.687234575674327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7223665188137702,
          -2.757206173278786,
          -4.680444300076152,
          -4.1670698345582835,
          -3.4671145890738178,
          -2.9720484774455382,
          -4.04958624131185,
          -7,
          -3.212443912811824,
          -3.56177695739487,
          -3.3244882333076564,
          -7,
          -3.8886567869289896,
          -3.5763324887711336,
          -7,
          -3.0558062980983522,
          -3.587542601193619,
          -7,
          -3.3877456596088638,
          -3.614633607841792,
          -7,
          -7,
          -4.093356010668287,
          -3.5207778508255867,
          -5.230253018905105,
          -7,
          -3.299797748122384,
          -7,
          -3.960741829684198,
          -7,
          -5.407268502868533,
          -7,
          -3.9447786811235073,
          -7,
          -4.344254692556935,
          -4.4497405937792855,
          -4.489592899821886,
          -7,
          -3.3971948649686743,
          -3.3972445810103866,
          -3.6253503647640803,
          -2.933569361832112,
          -2.2534591643398376,
          -3.357612376480327,
          -4.262265941146297,
          -2.7186861810033975,
          -3.6774341478786607,
          -7,
          -3.3991543339582164,
          -4.017607147477976,
          -3.0396645412571153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3085644135612386,
          -2.4852050239452272,
          -2.781516028004414,
          -7,
          -7,
          -3.284167445275132,
          -7,
          -3.192428055331207,
          -2.7745169657285493,
          -3.046625212091902,
          -7,
          -3.2022566678949334,
          -2.674610658476574,
          -3.3170181010481117,
          -7,
          -7,
          -3.2037126406077068,
          -3.4565937502444077,
          -7,
          -7,
          -3.5499224041295117,
          -7,
          -7,
          -3.163310488963686,
          -2.3665704006094646,
          -7,
          -3.755188585608325,
          -7,
          -7,
          -7,
          -3.554090939110258,
          -4.795664553841684,
          -7,
          -7,
          -2.5719774398876987,
          -7,
          -2.8246680920490563,
          -7,
          -2.8328281295393536,
          -2.651808555723068,
          -7,
          -7,
          -7,
          -2.426998958756537,
          -7,
          -7,
          -3.4530123911214554,
          -2.906335041805091,
          -7,
          -2.5176356898679657,
          -3.1292869842179925,
          -7,
          -7,
          -2.814913181275074,
          -2.6858412219337957,
          -7,
          -4.17897694729317,
          -7,
          -7,
          -7,
          -2.7302437827494095,
          -2.8785334793494717,
          -2.3670268684921036,
          -3.7014816356209272,
          -7,
          -7,
          -7,
          -2.8245596945739138,
          -3.545987102271373,
          -7,
          -2.8125122842899826,
          -2.7916321778679727,
          -7,
          -7,
          -2.1595671932336202,
          -2.877083256650651,
          -2.3742482947379293,
          -3.23159700556491,
          -2.619072860004698,
          -3.000867721531227,
          -2.451319129142515,
          -3.400710636773231,
          -3.074121305906298,
          -7,
          -7,
          -7,
          -2.909556029241175,
          -7,
          -7,
          -7,
          -2.8750612633917,
          -7,
          -3.6981254114721787,
          -7,
          -3.7158919717962857,
          -4.258828770593979,
          -7,
          -3.5901728315963144,
          -7,
          -2.4575791469957626,
          -7,
          -2.8947906150702862,
          -2.235222282297123,
          -7,
          -7,
          -3.4616485680634552,
          -2.529467020708508,
          -3.112370365525832,
          -2.864313269858478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2405492482826,
          -3.5704845630444004,
          -3.446847710155809,
          -2.374889282075564,
          -3.2931414834509307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4391747398434687,
          -4.143951116423963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.212320803141976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1360860973840974,
          -7,
          -7,
          -7,
          -3.0346284566253203,
          -3.030194785356751,
          -7,
          -7,
          -2.526708418493159,
          -7,
          -7,
          -7,
          -4.030235296012245,
          -3.765072201102792,
          -3.030194785356751,
          -7,
          -3.61084640142234,
          -3.2282976764748628,
          -7,
          -3.2054750367408906,
          -7,
          -2.607812320217054,
          -7,
          -3.350926073869093,
          -7,
          -7,
          -3.7223047868743278,
          -3.543023089872846,
          -7,
          -7,
          -7,
          -3.4345689040341987,
          -3.0038911662369103,
          -7,
          -3.8281617011169873,
          -3.256958152560932,
          -7,
          -7,
          -7,
          -3.120738405542943,
          -3.1212314551496214,
          -2.6108966425304647,
          -7,
          -3.163757523981956,
          -7,
          -3.6380303846709308,
          -7,
          -7,
          -2.968015713993642,
          -3.284205067701794,
          -3.7005306569785916,
          -7,
          -3.2543063323312857,
          -7,
          -7,
          -3.3787611753163733,
          -2.885462569191012,
          -7,
          -3.091968272003171,
          -2.881004030556986,
          -3.1720188094245563,
          -7,
          -3.0537185238968583,
          -1.8839194063414246,
          -7,
          -7,
          -7,
          -2.910624404889201,
          -7,
          -3.3809043531298437,
          -7,
          -7,
          -3.49996186559619,
          -3.037027879755775,
          -2.9353632928474607,
          -2.410821614807109,
          -7,
          -2.9190780923760737,
          -3.8969442305579918,
          -7,
          -3.161966616364075,
          -7,
          -3.1290450598879582,
          -3.911743377855932,
          -7,
          -3.1470576710283598,
          -7,
          -3.5332635167787148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.374340940274877,
          -2.8328281295393536,
          -3.141802396482416,
          -7,
          -7,
          -7,
          -3.384353414137506,
          -3.4840149626675627,
          -3.6505988981726567,
          -7,
          -3.4697925712863382,
          -7,
          -7,
          -7,
          -3.001214325286179,
          -7,
          -3.0033168924581544,
          -3.326949994165999,
          -3.2133406385265157,
          -3.3100557377508917,
          -7,
          -3.1277525158329733,
          -2.9874428049358013,
          -7,
          -3.0732643596112506,
          -7,
          -7,
          -2.7467898321526123,
          -2.573715302284969,
          -3.3912880485952974,
          -7,
          -2.9117461786806595,
          -3.9810858627695267,
          -7,
          -7,
          -3.2043913319193,
          -4.218557385685178,
          -7,
          -7,
          -3.670060217473134,
          -7,
          -7,
          -3.711174300366762,
          -3.5575072019056577,
          -7,
          -7,
          -4.379686151906955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5769936457909233,
          -3.476759191770886,
          -3.571038826438266,
          -3.436639631692661,
          -7,
          -3.914290255665949,
          -7,
          -2.81424759573192,
          -3.0034605321095067,
          -4.079759919660093,
          -3.564547711755948,
          -7,
          -2.6541765418779604,
          -2.920123326290724,
          -3.4032553742996785,
          -7,
          -7,
          -7,
          -2.62797998982998,
          -7,
          -7,
          -2.5177612629444233,
          -7,
          -2.1951710924633283,
          -3.3951515915045425,
          -2.706877733654718,
          -2.5880848733346493,
          -2.701855692573507,
          -3.427706525856685,
          -7,
          -7,
          -7,
          -2.7528164311882715,
          -2.660549282517093,
          -7,
          -7,
          -2.6519076720869994,
          -3.137986732723532,
          -4.294686624279444,
          -7,
          -7,
          -3.0234697737110188,
          -7,
          -7,
          -2.8724476477890133,
          -3.028571252692538,
          -3.174786417367337,
          -2.8752542402808574,
          -1.9233869609443797,
          -7,
          -1.929222367900617,
          -3.2133406385265157,
          -7,
          -2.5727886503366233,
          -7,
          -7,
          -2.9388531566569034,
          -3.655330558009341,
          -7,
          -3.25170772980846,
          -3.0265332645232967,
          -2.760559549696057,
          -2.888179493918325,
          -2.575187844927661,
          -7,
          -3.1789769472931693,
          -2.508494279379125,
          -2.9792447784093805,
          -7,
          -7,
          -7,
          -3.190611797813605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.862429556106009,
          -3.0689276116820716,
          -2.8884603180353863,
          -3.244771761495295,
          -3.1710435238543386,
          -3.6743405324046687,
          -4.333255779961068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1405080430381793,
          -7,
          -3.361538971269279,
          -7,
          -7,
          -3.0806264869218056,
          -7,
          -7,
          -7,
          -2.898542359241223,
          -3.904223594068507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.889941665019464,
          -2.7948364578145615,
          -7,
          -3.5546102852261643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.696768142830307,
          -7,
          -4.2391743041780785,
          -3.2533380053261065,
          -7,
          -7,
          -3.3196472881834227,
          -3.4862178846679726,
          -3.0858700833983947,
          -3.065878352857392,
          -3.5761685196078083,
          -2.8651039746411278,
          -7,
          -3.0770043267933502,
          -2.7113853790984517,
          -2.638863487466293,
          -3.042837926032406,
          -7,
          -7,
          -3.016824493667488,
          -3.118264726089479,
          -3.064832219738574,
          -3.024485667699167,
          -7,
          -2.9586594270529334,
          -7,
          -2.92272545799326,
          -3.3481100684802376,
          -4.531845996169773,
          -2.811110768005006,
          -2.6134894531087443,
          -3.0950167110880895,
          -3.0670708560453703,
          -3.239049093140191,
          -2.5711262770843115,
          -2.191381141649701,
          -2.8074899276501095,
          -2.6263403673750423,
          -3.3508938095043144,
          -3.4077307280263356,
          -3.1212314551496214,
          -7,
          -4.652704574860998,
          -3.303088010528054,
          -7,
          -7,
          -7,
          -3.3229081045244717,
          -7,
          -7,
          -3.203032887014711,
          -3.026805549473848,
          -7,
          -3.4348881208673157,
          -3.1550322287909704,
          -2.468580508663076,
          -3.2174839442139063,
          -2.7993405494535817,
          -7,
          -7,
          -4.015629159583489,
          -3.1935767529834385,
          -4.495431586724228,
          -7,
          -3.23140586884273,
          -3.515844878746437,
          -3.039744506778152,
          -3.000434077479319,
          -1.9474337218870508,
          -7,
          -7,
          -2.7457252252544877,
          -2.86562209338572,
          -2.5303598067696527,
          -7,
          -7,
          -7,
          -7,
          -3.2052043639481447,
          -3.2281436075977417,
          -3.099507993727965,
          -7,
          -2.652340368851867,
          -7,
          -3.0330214446829107,
          -7,
          -7,
          -7,
          -7,
          -4.7178119168765855,
          -7,
          -7,
          -4.296325079116333,
          -4.281737671706917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5881932465586495,
          -7,
          -7,
          -4.925745138429951,
          -7,
          -7,
          -7,
          -5.389049074987845,
          -7,
          -4.5397283057269675,
          -4.125188384168597,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9108377649926833,
          -7,
          -7,
          -4.620437977338462,
          -2.9523080096621253,
          -4.675897435644324,
          -4.369364308781235,
          -3.6179434348289727,
          -7,
          -3.562530768862261,
          -7,
          -4.032827699694245,
          -3.173186268412274,
          -3.5711262770843115,
          -4.450818553829668,
          -3.9241147494121003,
          -3.907805343672493,
          -7,
          -4.446801142847091,
          -3.859738566197147,
          -7,
          -3.2320426643848315,
          -7,
          -7,
          -7,
          -4.517178297006411,
          -4.210012799175211,
          -5.405920656239976,
          -7,
          -3.4382258076045296,
          -7,
          -4.958449202872238,
          -7,
          -5.105385839530771,
          -7,
          -7,
          -7,
          -4.334333097036555,
          -7,
          -7,
          -7,
          -3.7527908536104846,
          -7,
          -3.9984228221379965,
          -3.8937478954738043,
          -2.9222062774390163,
          -3.8325433011792596,
          -7,
          -3.3246939138617746,
          -4.06991723951933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8757555792580543,
          -2.8568798705623637,
          -3.2973500894444876,
          -7,
          -7,
          -3.877083256650651,
          -7,
          -2.940184328524863,
          -7,
          -3.189279712637177,
          -7,
          -3.9562576411013985,
          -7,
          -7,
          -7,
          -4.145755623637207,
          -3.4313637641589874,
          -7,
          -7,
          -7,
          -3.216957207361097,
          -7,
          -7,
          -7,
          -3.2960066693136723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.774304893442617,
          -4.792181496149679,
          -7,
          -7,
          -3.0626289832522775,
          -7,
          -2.7669083343103593,
          -7,
          -3.3481100684802376,
          -3.3619166186686433,
          -7,
          -7,
          -7,
          -3.0394141191761372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.394626764272209,
          -4.012373167222489,
          -7,
          -7,
          -3.1335389083702174,
          -3.111598524880394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3939396432145785,
          -3.2416709737841294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.841984804590114,
          -7,
          -7,
          -2.8784579615212427,
          -3.221193473064788,
          -2.897718704935313,
          -7,
          -3.318021573870186,
          -3.068309574745689,
          -7,
          -7,
          -4.056142262059052,
          -7,
          -7,
          -3.2895889525425965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.758848836937695,
          -3.4347285417797577,
          -3.8779181894528207,
          -3.951738109097343,
          -7,
          -3.229297794114105,
          -7,
          -2.5978779313445366,
          -7,
          -3.2221092481637466,
          -3.0194486374936367,
          -7,
          -7,
          -7,
          -2.9731278535996988,
          -3.706495885648506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.364113040786379,
          -7,
          -3.416141031168329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.904539736714001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1866738674997452,
          -2.8180608567577408,
          -3.368100851709351,
          -3.188647295999717,
          -3.2615007731982804,
          -3.8090638646411574,
          -7,
          -7,
          -7,
          -7,
          -3.332211153328047,
          -3.0437551269686796,
          -2.971739590887778,
          -7,
          -7,
          -7,
          -3.511157339503544,
          -7,
          -7,
          -3.7440581658788354,
          -3.535290635171898,
          -7,
          -7,
          -7,
          -3.1744959193752993,
          -3.0586157970105616,
          -7,
          -4.02608946331455,
          -3.3176455432211585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.597804842404293,
          -7,
          -3.5036545192429593,
          -7,
          -3.99801010198535,
          -2.8830933585756897,
          -2.775974331129369,
          -7,
          -3.0400086360135417,
          -2.877289054162867,
          -7,
          -7,
          -7,
          -2.8717674683517753,
          -7,
          -2.6058382107163998,
          -2.964377500867108,
          -3.0472748673841794,
          -2.737681850846472,
          -7,
          -2.8131360146748556,
          -2.6085260335771943,
          -2.822386043980825,
          -7,
          -3.3199384399803087,
          -7,
          -2.977494969073036,
          -3.3620109792299933,
          -3.6861743251490533,
          -7,
          -7,
          -3.0580462303952816,
          -7,
          -3.8003733548913496,
          -2.9370161074648142,
          -3.168202746842631,
          -3.5559404378185113,
          -4.049121071116725,
          -7,
          -7,
          -7,
          -7,
          -2.970863217370339,
          -7,
          -7,
          -7,
          -3.56643749219507,
          -7,
          -2.6026025204202563,
          -7,
          -3.4371160930480786,
          -7,
          -3.630466013966421,
          -3.6398847419163043,
          -3.453624073591451,
          -7,
          -7,
          -7,
          -3.4303975913869666,
          -3.521007252408604,
          -3.073535065058784,
          -3.1903316981702914,
          -3.22219604630172,
          -2.992553517832136,
          -7,
          -7,
          -3.167949956100975,
          -7,
          -2.8182258936139557,
          -7,
          -3.0145205387579237,
          -3.031900005817225,
          -7,
          -3.2076343673889616,
          -7,
          -7,
          -2.9375178920173464,
          -7,
          -7,
          -2.8842287696326037,
          -3.0420830591819565,
          -3.414555556229215,
          -7,
          -3.1192283874901365,
          -4.062326220404848,
          -7,
          -3.893928126542607,
          -3.2723058444020863,
          -3.9564565834098997,
          -2.6464037262230695,
          -3.5678494505731067,
          -7,
          -2.5616975326539935,
          -7,
          -3.1142981595540196,
          -3.1113745462875477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4622482153549976,
          -2.287661792928241,
          -4.181100079728049,
          -7,
          -7,
          -7,
          -7,
          -3.197831693328903,
          -7,
          -7,
          -3.881441721941393,
          -7,
          -7,
          -2.8091105993088905,
          -2.889155491816375,
          -7,
          -7,
          -3.4500950758716025,
          -3.3805730030668872,
          -7,
          -3.082246654743669,
          -2.5660163785366477,
          -7,
          -3.0388849756663854,
          -3.4401216031878037,
          -3.1480882706622184,
          -7,
          -7,
          -3.4199970292732025,
          -3.228913405994688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.268297087223767,
          -7,
          -7,
          -2.5349774634615505,
          -7,
          -2.959821989387372,
          -7,
          -3.7532765701844184,
          -3.375846436309156,
          -3.3818367999983434,
          -7,
          -2.7993405494535817,
          -1.5603052432209612,
          -1.929222367900617,
          -7,
          -3.111598524880394,
          -7,
          -3.742882171437273,
          -7,
          -3.99312748510571,
          -2.9818186071706636,
          -7,
          -7,
          -2.901390202114049,
          -2.823474229170301,
          -2.9755630946293388,
          -7,
          -2.3594905303901377,
          -7,
          -2.772566173085639,
          -2.807264355276107,
          -3.018561812897253,
          -7,
          -3.0437551269686796,
          -7,
          -3.603793704136963,
          -7,
          -7,
          -7,
          -7,
          -2.703004620444392,
          -2.3899251194809668,
          -2.857633985150008,
          -2.4795273244855407,
          -2.6768379494528953,
          -7,
          -7,
          -4.4349494172436525,
          -7,
          -7,
          -3.256236533205923,
          -7,
          -7,
          -7,
          -3.181128699747295,
          -7,
          -3.4099331233312946,
          -7,
          -7,
          -7,
          -3.2000292665537704,
          -7,
          -7,
          -3.423245873936808,
          -4.24803705634644,
          -7,
          -7,
          -7,
          -7,
          -3.286905352972375,
          -7,
          -7,
          -2.9867717342662448,
          -2.978180516937414,
          -3.442636525782232,
          -7,
          -3.0931297224743295,
          -7,
          -7,
          -7,
          -3.430437891529148,
          -7,
          -3.846312365300436,
          -2.991447598003803,
          -4.241430254748615,
          -7,
          -7,
          -7,
          -2.8828902938682437,
          -7,
          -3.1558563583922012,
          -3.0856472882968564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.57611089412084,
          -3.2533380053261065,
          -7,
          -7,
          -2.768268016451548,
          -7,
          -3.414137362184477,
          -7,
          -3.1876617026529592,
          -2.6084795227892617,
          -2.8787132411652734,
          -3.081707270097349,
          -7,
          -4.3566058045664064,
          -2.939119717648487,
          -7,
          -3.4602963267574753,
          -7,
          -7,
          -2.6762362167633116,
          -1.5342898943760837,
          -2.547335091541293,
          -1.9907935114317312,
          -7,
          -7,
          -7,
          -3.504742636271688,
          -4.874735581294349,
          -2.8395304193346966,
          -7,
          -7,
          -7,
          -3.8185557792978027,
          -3.09968064110925,
          -2.7507654498940113,
          -7,
          -7,
          -7,
          -2.873175231276166,
          -7,
          -2.6548426946011774,
          -7,
          -2.7321926510062684,
          -2.8574186574238936,
          -7,
          -4.260321870246313,
          -4.402897308556408,
          -4.5747741441598,
          -7,
          -2.8955453147983605,
          -3.6242325772522954,
          -2.7554937284151193,
          -3.104487111312395,
          -1.6996209579656139,
          -7,
          -2.5554975061310574,
          -2.3930108178985368,
          -2.708562525598842,
          -2.4325320082579323,
          -7,
          -7,
          -2.8295610562993927,
          -7,
          -7,
          -7,
          -3.2474003723989,
          -7,
          -2.362236424639688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3579679726998637,
          -7,
          -7,
          -3.7551122663950713,
          -4.283272953402787,
          -7,
          -7,
          -7,
          -3.1941142247242476,
          -3.6211806108451845,
          -4.591220479634285,
          -7,
          -4.681675314854906,
          -4.92713929387587,
          -3.7645870600628912,
          -7,
          -7,
          -7,
          -7,
          -4.543111543953438,
          -7,
          -7,
          -3.435797540266917,
          -7,
          -7,
          -4.303520036907281,
          -7,
          -2.884741434421791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.465962515279378,
          -7,
          -7,
          -2.614264287358705,
          -7,
          -4.370368732547782,
          -3.9330314951024055,
          -7,
          -4.045146877757589,
          -7,
          -3.958860503280292,
          -4.029911104912444,
          -3.601625479553945,
          -4.454966750124916,
          -3.7362746108444544,
          -3.273045812803421,
          -7,
          -3.9738049481030795,
          -3.875697761980208,
          -7,
          -7,
          -4.388935581235242,
          -7,
          -7,
          -3.849265817161557,
          -4.1669232380950865,
          -7,
          -7,
          -2.6795036038348163,
          -3.225309281725863,
          -4.260734254748414,
          -7,
          -4.929752608152573,
          -3.6304617764716594,
          -3.939119717648487,
          -7,
          -7,
          -7,
          -4.311880953037904,
          -7,
          -3.9358094538099326,
          -7,
          -3.9029651093763786,
          -4.499632105153693,
          -2.9874428049358013,
          -3.5497583267385253,
          -4.358101485058426,
          -7,
          -4.0939292328222185,
          -7,
          -3.680154141734373,
          -4.6173463799861105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7035063221873417,
          -2.7987887139512493,
          -3.1283992687178066,
          -7,
          -7,
          -3.3591142204149063,
          -7,
          -2.8577846510602454,
          -7,
          -3.509202522331103,
          -7,
          -3.4050251743409166,
          -2.9986080293150947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9514994179522764,
          -2.721501472134904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9214159323948645,
          -4.493032610522491,
          -7,
          -7,
          -2.83159556961061,
          -7,
          -2.6224442957616705,
          -7,
          -2.7948364578145615,
          -3.0668614734064072,
          -7,
          -7,
          -3.5170638734826545,
          -2.544245271237821,
          -3.4531653925258574,
          -7,
          -7,
          -2.737987326333431,
          -7,
          -2.5343434568060275,
          -3.4213570985131425,
          -7,
          -7,
          -2.5226448314230057,
          -2.918659293421823,
          -7,
          -4.172369376763842,
          -7,
          -7,
          -7,
          -3.4779889762508893,
          -3.0811681883904147,
          -2.7961115793233833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8328281295393536,
          -7,
          -3.0033168924581544,
          -2.9033914757106833,
          -7,
          -7,
          -2.73523028079199,
          -3.176420598928824,
          -2.3353270562549815,
          -7,
          -2.7203453897396916,
          -7,
          -3.3231833228365364,
          -7,
          -3.464079501542737,
          -7,
          -7,
          -7,
          -3.1455071714096627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2394746634651845,
          -7,
          -7,
          -3.6538875580709775,
          -3.7368743616484226,
          -2.5618166643189575,
          -7,
          -2.1636913256003165,
          -7,
          -3.119915410257991,
          -2.5928109955252414,
          -7,
          -7,
          -7,
          -2.7297720531082863,
          -3.631883252821722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5024271199844326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.291305408119733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5558733559874045,
          -7,
          -7,
          -7,
          -7,
          -3.2335037603411343,
          -7,
          -7,
          -3.194097885578952,
          -7,
          -3.4299136977637543,
          -7,
          -7,
          -7,
          -2.9322707758994904,
          -7,
          -7,
          -7,
          -2.619823500457278,
          -3.723044991643445,
          -2.654264074777965,
          -3.6224212739756703,
          -2.746244871720198,
          -3.2894933946966205,
          -3.6404317436833487,
          -3.601081727784023,
          -3.3203540328176717,
          -2.921754311031378,
          -2.9747309448027197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.940997089103553,
          -3.2732328340430454,
          -7,
          -2.6105004666431815,
          -2.887380430182775,
          -3.1970047280230456,
          -3.156952770767806,
          -7,
          -2.9051788751397356,
          -3.0910511241341787,
          -7,
          -3.6309925539264505,
          -3.373279893277496,
          -3.613630434925241,
          -7,
          -7,
          -7,
          -3.62746827245971,
          -2.495279967133839,
          -3.303088010528054,
          -3.2887707217103532,
          -7,
          -2.3999912817517215,
          -7,
          -3.1701638903057043,
          -3.756636108245848,
          -7,
          -3.5985169354268858,
          -7,
          -2.5249521970606112,
          -3.527951958343942,
          -2.7331972651065692,
          -3.2477278329097232,
          -2.2015687791366827,
          -2.6541077536491158,
          -2.2739305691109637,
          -2.6875289612146345,
          -3.1664301138432824,
          -2.6613393400060397,
          -2.5943925503754266,
          -7,
          -3.674401812845282,
          -7,
          -2.7101173651118162,
          -3.657915936829955,
          -3.8605176774617465,
          -2.2883127215408736,
          -3.6184664921990803,
          -7,
          -2.9380190974762104,
          -3.6029277128591892,
          -2.8722048488326677,
          -3.1160540087584403,
          -3.1374596122778238,
          -2.891467764262818,
          -2.7168886258833527,
          -3.6121478383264867,
          -3.1627883658654485,
          -3.5949447366950835,
          -3.152390279480791,
          -2.6111329932747487,
          -3.749504423876142,
          -3.0330214446829107,
          -7,
          -2.9556877503135057,
          -7,
          -3.0453881832732153,
          -3.371191048907622,
          -2.7755699977216106,
          -7,
          -2.5414358040496436,
          -3.0670708560453703,
          -2.3299139378954807,
          -3.6098077693287025,
          -7,
          -2.8376585705702464,
          -3.727703883685354,
          -2.660062377951373,
          -2.4030613247630086,
          -7,
          -2.6774096358239126,
          -3.664265800147675,
          -3.6026025204202563,
          -7,
          -2.282253391565358,
          -3.0041063232796583,
          -3.171726453653231,
          -2.4443918150990673,
          -2.4757829039474,
          -1.852431193762441,
          -3.049024097915049,
          -7,
          -2.78265175161032,
          -3.6993173010213822,
          -3.1012470226741917,
          -7,
          -7,
          -2.8017847035341163,
          -2.7683297191556235,
          -3.0488300865283504,
          -2.5917137074725853,
          -2.7332208751248905,
          -3.1892238952372343,
          -3.650793039651931,
          -7,
          -3.353916230920363,
          -4.164191346399106,
          -2.7832781164810925,
          -2.7596678446896306,
          -2.4462954799526213,
          -7,
          -3.3568859411659737,
          -2.892780765304357,
          -2.9689496809813427,
          -7,
          -7,
          -4.429590802223301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4883054216721763,
          -3.1715314404115604,
          -3.1712387562612694,
          -3.4462782114390538,
          -7,
          -7,
          -7,
          -3.148294097434746,
          -3.0908750112031753,
          -7,
          -2.5033224409828163,
          -7,
          -3.3298045221640695,
          -7,
          -2.568907690449816,
          -7,
          -7,
          -2.5047506270440394,
          -1.8931538580495026,
          -7,
          -2.858623119912763,
          -3.719082573901486,
          -2.935938898606875,
          -3.170774935911056,
          -2.7311857076340007,
          -3.5678886061861617,
          -3.4192120226230758,
          -3.345471754367631,
          -2.4869403721117096,
          -7,
          -3.60151678365001,
          -7,
          -7,
          -3.6330642726914992,
          -2.926753905189737,
          -7,
          -2.7529625598847725,
          -7,
          -3.877467333157578,
          -3.30352003690728,
          -2.423245873936808,
          -2.399213729436142,
          -7,
          -3.2204219224378408,
          -2.5050319474775153,
          -3.7038929536325447,
          -2.992847954780297,
          -3.4126285205443754,
          -2.689873663917267,
          -3.2133406385265157,
          -3.111598524880394,
          -7,
          -1.4157174581451022,
          -3.008919388595035,
          -7,
          -2.027898887909134,
          -3.441459468917794,
          -3.084269789225843,
          -7,
          -3.2848253676580463,
          -7,
          -3.1217473836406597,
          -7,
          -7,
          -7,
          -7,
          -3.054421524462536,
          -3.2847314397467207,
          -7,
          -2.930002458864768,
          -7,
          -3.2500945661888303,
          -7,
          -7,
          -3.632558514532672,
          -7,
          -3.619719265611727,
          -3.641275757231913,
          -7,
          -3.6501131644435714,
          -3.7675268994083817,
          -7,
          -3.5337212310124437,
          -4.159589749494209,
          -7,
          -3.6363875858131567,
          -7,
          -3.688330818112266,
          -7,
          -2.915188705173156,
          -3.2773035345575963,
          -2.4617319019372412,
          -3.1149444157125847,
          -7,
          -7,
          -7,
          -3.6266482684740105,
          -7,
          -3.6129956560323473,
          -7,
          -3.9597614375779355,
          -7,
          -7,
          -7,
          -3.022325250092303,
          -7,
          -3.654850090561394,
          -7,
          -2.96208508051736,
          -7,
          -2.114676064138173,
          -2.8049114308857184,
          -2.38778035944564,
          -3.249361442065167,
          -7,
          -7,
          -3.0823903775817154,
          -3.1457400995364067,
          -2.7119804733019435,
          -3.663795122219408,
          -4.04099769242349,
          -3.6731131042382335,
          -7,
          -3.631139250256811,
          -3.648717709275342,
          -2.8763140831365024,
          -2.8231995765243703,
          -2.6848453616444123,
          -2.3435133465677946,
          -2.4762688609584846,
          -2.813008795492136,
          -7,
          -3.220020871555797,
          -2.5496842947541856,
          -3.1922886125681202,
          -7,
          -7,
          -3.39776625612645,
          -7,
          -3.242127143728284,
          -7,
          -2.9793206973820245,
          -2.8001742327278905,
          -7,
          -2.649543470267784,
          -7,
          -3.3869149280061124,
          -1.948804045932811,
          -3.317331935445897,
          -3.3173414420397855,
          -7,
          -2.460803910782157,
          -3.170437745046183,
          -3.4340097093697395,
          -3.1959688020761106,
          -2.8735143535392917,
          -3.683542319957651,
          -7,
          -7,
          -3.164278483923325,
          -3.7623553334556568,
          -2.737391449978478,
          -3.6006462356623947,
          -7,
          -7,
          -2.8502691206629827,
          -2.6534395365102066,
          -3.637689819118401,
          -3.6546577546495245,
          -3.308919955522892,
          -7,
          -2.9724342769573653,
          -3.3370597263205246,
          -1.8402106807262346,
          -7,
          -3.381205361238583,
          -2.771248188300011,
          -3.3586010159430195,
          -2.733318528832285,
          -3.1233070710124684,
          -3.721854410698838,
          -3.660675788338524,
          -2.5713504290799474,
          -3.6015852249836797,
          -2.9355988601479255,
          -7,
          -2.719054930320311,
          -3.1441589128307523,
          -2.6661434272915585,
          -2.583198773968623,
          -2.6877270882627347,
          -2.5734904758098778,
          -3.6068111469189637,
          -7,
          -2.455424982962566,
          -3.327665387050042,
          -3.354204511370313,
          -3.663700925389648,
          -3.298252505655764,
          -3.6351820486562674,
          -2.197143907448683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.929234950265582,
          -3.8585864097188036,
          -7,
          -7,
          -4.37427164327598,
          -7,
          -7,
          -4.142577160920535,
          -7,
          -7,
          -4.639491469681335,
          -7,
          -7,
          -7,
          -5.093160679820907,
          -4.348830372378482,
          -4.574852754517795,
          -3.910037123553051,
          -7,
          -7,
          -7,
          -7,
          -3.685211031044629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2746657690813885,
          -3.186858953470273,
          -3.3720831085742526,
          -4.002805149342968,
          -3.3626890460874135,
          -3.049256797232227,
          -3.127428777851599,
          -3.13930174154602,
          -3.460822698802402,
          -2.66149717917983,
          -3.0111147988652363,
          -3.822429623779357,
          -4.493541695167482,
          -2.936723893079625,
          -2.871412168783088,
          -7,
          -3.1883377790407526,
          -2.51291667836589,
          -7,
          -3.1433717301956188,
          -3.7344317630530526,
          -7,
          -7,
          -3.2905354315009356,
          -2.89521267096554,
          -4.595470784074642,
          -7,
          -2.8822139578592343,
          -7,
          -3.629562492778617,
          -7,
          -4.265191937350579,
          -4.189293755885692,
          -3.6026242074933377,
          -7,
          -7,
          -3.883391691428558,
          -3.6310512384048725,
          -7,
          -2.2815849084078117,
          -2.9160150455495546,
          -3.5745626242687933,
          -3.1360352997371708,
          -3.184596802974997,
          -2.367053946493985,
          -3.9311295061305005,
          -2.6480549217643783,
          -3.87715049456365,
          -7,
          -3.171901890731724,
          -2.7506369413912526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.563705162555925,
          -3.064008486531724,
          -2.754116576016153,
          -7,
          -7,
          -3.9298274812306917,
          -7,
          -3.26583941549449,
          -7,
          -7,
          -7,
          -3.7794915448471396,
          -3.8830933585756897,
          -7,
          -7,
          -7,
          -7,
          -3.609754439128856,
          -7,
          -7,
          -3.978500069311459,
          -7,
          -7,
          -3.7271344237604884,
          -3.536116348245079,
          -7,
          -4.140004950619449,
          -7,
          -7,
          -7,
          -3.7641285619338616,
          -4.335023054250718,
          -7,
          -7,
          -3.0433265468530726,
          -7,
          -3.2062185182548055,
          -7,
          -3.234179705196503,
          -2.8228012362482873,
          -7,
          -7,
          -7,
          -7,
          -3.92054071650248,
          -7,
          -7,
          -3.383815365980431,
          -7,
          -3.12985095078891,
          -2.739110644752371,
          -7,
          -7,
          -3.242851882584178,
          -3.531478917042255,
          -7,
          -3.942454526342477,
          -7,
          -7,
          -7,
          -7,
          -3.09340628983506,
          -3.107345665472095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7539658658651605,
          -2.691567700438057,
          -7,
          -7,
          -2.6247751793691476,
          -2.598365925717433,
          -3.5836521085420436,
          -7,
          -4.074322643568778,
          -3.5073160400764136,
          -3.6514718521990424,
          -7,
          -3.854214921512205,
          -7,
          -7,
          -7,
          -3.607025878434786,
          -7,
          -7,
          -7,
          -7,
          -3.803457115648414,
          -3.4582309613062225,
          -7,
          -4.2557547866430445,
          -4.110746791003332,
          -3.908699432352224,
          -3.10064620014548,
          -7,
          -3.7247672456463103,
          -7,
          -7,
          -3.9114772171061025,
          -7,
          -7,
          -3.7255032688593155,
          -3.2038484637462346,
          -3.8506156068476467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5166235018348,
          -7,
          -7,
          -3.6418705454763125,
          -7,
          -3.62096843564429,
          -7,
          -7,
          -7,
          -3.474871583227693,
          -3.7134065321676912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.841484609335393,
          -7,
          -7,
          -3.9423305520097855,
          -7,
          -7,
          -3.8376515578463923,
          -7,
          -3.4823017672234426,
          -7,
          -7,
          -7,
          -7,
          -3.6036855496146996,
          -7,
          -7,
          -7,
          -2.935003151453655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.53268662951388,
          -7,
          -7,
          -7,
          -4.199398602359617,
          -3.9145018228273143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.563025984863721,
          -7,
          -7,
          -3.377306251068199,
          -4.003779475154853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.565653050578184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.900093901543398,
          -7,
          -7,
          -7,
          -3.321839983161041,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.110589710299249,
          -7,
          -2.686040120257356,
          -7,
          -3.236596215369598,
          -2.6848453616444123,
          -3.434196187604368,
          -3.103461622094705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0507663112330423,
          -7,
          -3.7536443306878593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.842609239610562,
          -7,
          -3.8704721852071455,
          -7,
          -3.0788191830988487,
          -7,
          -7,
          -3.184521085852911,
          -7,
          -2.650793039651931,
          -7,
          -2.8606374167737547,
          -7,
          -2.811306840081336,
          -3.560026248912892,
          -2.5912872650584995,
          -7,
          -3.908423738438037,
          -3.5547313766759667,
          -3.724070965382832,
          -7,
          -7,
          -7,
          -7,
          -3.4051755462179893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1344635297156462,
          -2.4892551683692603,
          -7,
          -3.208710019906401,
          -3.1660352109000436,
          -3.0373902750387383,
          -2.723044991643445,
          -7,
          -2.30932593310039,
          -7,
          -4.387265215784176,
          -7,
          -7,
          -7,
          -2.95784663370815,
          -7,
          -2.259389071298138,
          -2.8973376581028525,
          -4.755470850140081,
          -7,
          -7,
          -7,
          -7,
          -3.1601682929585118,
          -3.4653828514484184,
          -2.538866850664468,
          -7,
          -7,
          -4.001474096691733,
          -7,
          -7,
          -7,
          -4.069353544943673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.733317662782867,
          -7,
          -4.158272004652084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5757649805367193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6982124307329163,
          -7,
          -7,
          -7,
          -2.4300212762834783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8848519827459977,
          -3.261976191397813,
          -7,
          -3.247951796471139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8872591614954697,
          -7,
          -4.283391697297128,
          -7,
          -7,
          -2.728865665539083,
          -2.797959643737196,
          -3.2117433133351296,
          -2.5975855017522047,
          -3.2127201544178425,
          -2.6953065224318027,
          -7,
          -3.296884475538547,
          -7,
          -7,
          -1.4157174581451022,
          -7,
          -7,
          -7,
          -3.957415714722669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1043163645117278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.135800283302111,
          -5.235955797813515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.842609239610562,
          -7,
          -3.26030994579492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2725377773752373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0382226383687185,
          -7,
          -3.066325925362038,
          -7,
          -1.873722912619438,
          -7,
          -2.251078922905486,
          -3.2801228963023075,
          -7,
          -7,
          -4.317875378414559,
          -7,
          -3.6904112746987385,
          -7,
          -4.712085425704258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4891613074478007,
          -3.424799994656599,
          -2.8045111537405574,
          -2.5286596452349897,
          -7,
          -7,
          -2.714329759745233,
          -2.240696043782359,
          -3.448551739201578,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8849840645741107,
          -3.156044098964241,
          -3.174931593528443,
          -7,
          -7,
          -4.354124452660498,
          -3.297048866865437,
          -7,
          -4.288629234664989,
          -7,
          -2.002166061756508,
          -7,
          -7,
          -3.9614685553507862,
          -3.5207454715194824,
          -3.7943486038960827,
          -7,
          -7,
          -7,
          -5.050330123453494,
          -3.2748503200166645,
          -7,
          -7,
          -7,
          -3.7640266076920375,
          -3.629511534200453,
          -2.962369335670021,
          -7,
          -7,
          -7,
          -3.345569756056392,
          -7,
          -2.863067817841283,
          -7,
          -7,
          -3.1535099893008374,
          -7,
          -3.857652067819292,
          -3.690231531192315,
          -4.671239393939525,
          -7,
          -2.8963194926231832,
          -4.542015814870588,
          -7,
          -7,
          -7,
          -7,
          -2.948290680973653,
          -7,
          -7,
          -2.743313739231126,
          -7,
          -7,
          -3.1149444157125847,
          -7,
          -7,
          -7,
          -3.354876422516234,
          -7,
          -2.9475017963235906,
          -7,
          -2.75815462196739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.137976196582096,
          -7,
          -3.9721935782700672,
          -3.603875734432136,
          -2.81135154588012,
          -7,
          -7,
          -7,
          -3.9569036002309135,
          -7,
          -7,
          -7,
          -4.3611279066318485,
          -3.6399209285998153,
          -7,
          -4.4388744689064445,
          -7,
          -7,
          -7,
          -4.374931553978188,
          -7,
          -7,
          -3.8158698359694636,
          -3.9828660012906787,
          -5.706520641282075,
          -7,
          -7,
          -7,
          -4.353935455571521,
          -7,
          -5.104522959613173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.084483332544515,
          -7,
          -3.313418991194657,
          -3.8120438979302267,
          -3.9444936390440697,
          -4.488818542833805,
          -7,
          -3.6651809221500327,
          -7,
          -7,
          -4.648769713584033,
          -7,
          -7,
          -3.654711189836538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7095243558763413,
          -7,
          -7,
          -4.344451223686138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.797952728164908,
          -3.3235614634628665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.784759894664005,
          -7,
          -7,
          -7,
          -3.5378190950732744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.24976074088798,
          -7,
          -7,
          -7,
          -3.464638559095033,
          -7,
          -3.478854967528663,
          -7,
          -7,
          -3.298610521540568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.99409708958821,
          -3.388145623856844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8560639533331,
          -3.4749443354653877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3317646126401494,
          -7,
          -7,
          -2.95431143960087,
          -3.2508873899067634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530699041844945,
          -7,
          -7,
          -4.547688576129021,
          -7,
          -7,
          -7,
          -3.274388795550379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3968790352215565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.11143055176598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499783276438258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.371437317404101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8202953102654553,
          -7,
          -7,
          -7,
          -7,
          -3.4500180391562068,
          -7,
          -7,
          -7,
          -3.6467586263847607,
          -2.8114313662192414,
          -3.336759833698248,
          -2.701088048570016,
          -2.929685418552622,
          -3.1588146467242266,
          -3.717337582723864,
          -3.688241795977712,
          -7,
          -7,
          -7,
          -3.368641818047141,
          -2.9181052603565147,
          -7,
          -3.454590812337093,
          -3.0928671726557817,
          -3.7058637122839193,
          -7,
          -7,
          -3.4764693239263837,
          -3.723701893991268,
          -3.6754116937148633,
          -3.5457905215795247,
          -3.4046627008737222,
          -7,
          -7,
          -7,
          -3.772028165324855,
          -7,
          -3.2403620120296877,
          -7,
          -3.0922292421628566,
          -7,
          -3.0920795744436336,
          -7,
          -7,
          -7,
          -3.414555556229215,
          -7,
          -3.669409867287783,
          -7,
          -3.3739535505092246,
          -7,
          -3.452016565962548,
          -2.5783770650274622,
          -3.5244610342154497,
          -3.173259130501515,
          -3.528402437953617,
          -7,
          -7,
          -2.978376189156044,
          -2.919862253555538,
          -7,
          -3.4056024552093134,
          -7,
          -7,
          -3.580069222725036,
          -2.7346371267745795,
          -7,
          -7,
          -3.5073835557363866,
          -3.3384564936046046,
          -2.093184973714775,
          -2.6332557746341494,
          -3.650793039651931,
          -3.119981307304154,
          -3.168902815780035,
          -7,
          -7,
          -3.632356046239073,
          -3.1870504506422686,
          -3.3589242153885115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8466463285771173,
          -2.789345640720579,
          -3.4575791469957626,
          -7,
          -2.7241079430172648,
          -2.63489198424631,
          -3.157093948997081,
          -7,
          -7,
          -3.8171024042569233,
          -3.153052275067109,
          -3.198313363563387,
          -3.28668096935493,
          -7,
          -2.581676161743162,
          -7,
          -7,
          -7,
          -3.3459941746780104,
          -7,
          -3.321943464631346,
          -7,
          -3.213358353624391,
          -3.0816133956502867,
          -3.207185391351969,
          -3.6641717053619307,
          -3.717504074764202,
          -3.7290027092721902,
          -3.273294563057705,
          -3.7029472461815556,
          -7,
          -3.783331762887424,
          -3.8701111553644005,
          -3.6126249394226386,
          -3.704407927386841,
          -2.693009164048874,
          -3.026698088964593,
          -7,
          -7,
          -7,
          -4.408757078487127,
          -3.115527305527498,
          -3.04720994556899,
          -3.423081958297231,
          -7,
          -2.911601445755513,
          -3.5321535564637863,
          -3.3604040547299387,
          -7,
          -7,
          -3.204311540910256,
          -7,
          -7,
          -7,
          -3.650793039651931,
          -7,
          -3.465263850356592,
          -3.1884597362982907,
          -2.8967178743690574,
          -3.4642410809920987,
          -3.214578953570499,
          -2.6780629049743454,
          -7,
          -3.660770643527697,
          -7,
          -4.184379080658596,
          -4.0258381642297,
          -7,
          -3.6655809910179533,
          -7,
          -2.9057509200197873,
          -7,
          -7,
          -7,
          -3.1301728888925355,
          -7,
          -7,
          -3.747489492258673,
          -2.9025467793139916,
          -1.9631532545665087,
          -3.4590153323018296,
          -2.3649528098608803,
          -2.969804056523086,
          -2.90100399089971,
          -3.0010813518309316,
          -7,
          -7,
          -7,
          -7,
          -3.667452952889954,
          -7,
          -7,
          -3.0887029603514744,
          -7,
          -3.214787098545441,
          -3.340146550949133,
          -2.919696034609671,
          -3.1298490563291437,
          -7,
          -3.3355581880658614,
          -3.287241711178348,
          -7,
          -7,
          -3.742568034366142,
          -2.9144187194479314,
          -2.5727886503366233,
          -3.742882171437273,
          -3.008919388595035,
          -7,
          -7,
          -7,
          -2.931695125260272,
          -3.070037866607755,
          -2.2592074234859556,
          -7,
          -3.419735518017542,
          -7,
          -3.1380318847204434,
          -7,
          -7,
          -7,
          -3.679700380871964,
          -3.372451701409366,
          -3.787956123283932,
          -7,
          -7,
          -4.425289616446794,
          -3.74170298395774,
          -7,
          -7,
          -3.6669857183296606,
          -7,
          -3.353916230920363,
          -3.675044735955893,
          -7,
          -7,
          -7,
          -3.5867560391743902,
          -3.338356873353703,
          -3.72931428448667,
          -7,
          -7,
          -7,
          -3.718750734739665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.752202153176521,
          -3.5141158997723867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9404168646816653,
          -3.761401557498631,
          -2.8507337328124356,
          -4.018991594705612,
          -3.7547304690237535,
          -7,
          -7,
          -3.6120771120854864,
          -3.7748817658187965,
          -3.677766590466052,
          -3.6959192528313998,
          -3.6634653438911116,
          -3.704579449696299,
          -7,
          -3.665674780993893,
          -3.6600745572208857,
          -2.6704314093606056,
          -2.7713201816071438,
          -3.356694958541127,
          -3.7327956982893293,
          -3.1359273350054684,
          -3.6917002082901615,
          -3.348791467560584,
          -2.948331446401186,
          -2.9265996539070276,
          -2.2829018774276832,
          -7,
          -3.0619234632803045,
          -2.7272158209084925,
          -3.66143405039392,
          -7,
          -7,
          -7,
          -4.09282587292398,
          -7,
          -7,
          -3.7405205860536648,
          -3.9680655763030757,
          -2.6517996891142075,
          -3.6540802353065707,
          -2.9176180259352056,
          -7,
          -7,
          -2.774853715149844,
          -2.6817687053632726,
          -3.8105013477665297,
          -7,
          -3.6991870973082492,
          -3.4644895474339714,
          -3.0141003215196207,
          -7,
          -3.901390362407254,
          -3.1501037406089263,
          -7,
          -7,
          -7,
          -2.834375282515157,
          -3.604118006192035,
          -3.370513089598593,
          -7,
          -3.3333800930468676,
          -7,
          -3.7777891874348675,
          -7,
          -2.3545024464158892,
          -7,
          -7,
          -3.906065544755237,
          -3.6922298357727557,
          -3.0040460900514363,
          -2.6235115781367413,
          -3.57629872504821,
          -3.693023067923694,
          -3.7029472461815556,
          -3.2487689647718163,
          -2.992995098431342,
          -7,
          -3.2286569581089353,
          -7,
          -3.8654593226619647,
          -3.2996815916623548,
          -3.3594560201209864,
          -7,
          -7,
          -7,
          -3.805296916157985,
          -7,
          -7,
          -7,
          -3.618414214801256,
          -7,
          -3.033983931269618,
          -7,
          -7,
          -4.636156783606082,
          -7,
          -7,
          -7,
          -4.7442147248141655,
          -7,
          -7,
          -7,
          -4.123813543288926,
          -7,
          -7,
          -4.380717623275317,
          -7,
          -7,
          -7,
          -7,
          -4.2308404614194455,
          -4.942290872747812,
          -7,
          -7,
          -7,
          -4.79274353560754,
          -7,
          -4.578925589458768,
          -3.9193919267738595,
          -7,
          -7,
          -4.283775978711523,
          -7,
          -4.50070976802415,
          -7,
          -4.711309402572865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.508408503596661,
          -3.9816827273712856,
          -3.2725764208314096,
          -3.704750904290671,
          -4.4038408865808965,
          -3.6329884465050295,
          -3.461160744254032,
          -7,
          -3.3595767940674306,
          -3.486642969023512,
          -3.405996818295181,
          -2.9902436878140852,
          -3.543819805142658,
          -7,
          -3.3468713070701095,
          -3.0059791649763743,
          -7,
          -3.8927066378056656,
          -3.7206140404234618,
          -7,
          -3.7033773685123497,
          -4.439158941284675,
          -7,
          -7,
          -3.3004889195397658,
          -3.590094714052817,
          -4.329484322820614,
          -3.6625689669332604,
          -3.4652340949880145,
          -7,
          -3.7695573215600326,
          -7,
          -3.6193626605466327,
          -3.7218930162149575,
          -7,
          -7,
          -4.3956233943558365,
          -3.5872478073521594,
          -4.110697428903857,
          -7,
          -3.461198288622493,
          -4.011401259924744,
          -3.8049934405673325,
          -3.693802297126462,
          -7,
          -3.0585493860490587,
          -3.8280012359052726,
          -3.8750033536000412,
          -3.9932502424781573,
          -7,
          -3.8915374576725643,
          -3.606136981286755,
          -3.896213795234906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3763292395085953,
          -3.0104413055367156,
          -3.6800180632491917,
          -7,
          -7,
          -3.9358094538099326,
          -7,
          -3.1676864758514913,
          -7,
          -3.976074731619874,
          -7,
          -4.045114258618323,
          -7,
          -3.6856521841155243,
          -7,
          -7,
          -7,
          -3.9293678292400998,
          -7,
          -7,
          -3.693243153309189,
          -7,
          -7,
          -7,
          -3.2566576235323295,
          -7,
          -7,
          -7,
          -3.6540802353065707,
          -7,
          -4.028639021200423,
          -4.337386040723217,
          -7,
          -7,
          -2.6044350997705297,
          -3.7058637122839193,
          -3.053142493993366,
          -7,
          -3.439332693830263,
          -3.2219355998280053,
          -7,
          -7,
          -7,
          -3.7375901662857216,
          -7,
          -7,
          -7,
          -3.4144719496293026,
          -7,
          -3.282546589969968,
          -3.433097476967988,
          -7,
          -7,
          -2.8656368876996288,
          -2.7069614941736275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3013194288515706,
          -3.358842046056894,
          -3.529045170765769,
          -3.892261606915535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4072634020530512,
          -7,
          -7,
          -2.9238482245059934,
          -3.389212730031502,
          -3.4270531135645013,
          -7,
          -3.7796505943430723,
          -7,
          -7,
          -7,
          -4.165926549609097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8294967497201826,
          -3.7013952690139202,
          -7,
          -7,
          -7,
          -7,
          -2.999955454691801,
          -7,
          -3.52270499273475,
          -7,
          -3.7528164311882715,
          -7,
          -3.072302427940994,
          -7,
          -3.9408649759667216,
          -7,
          -3.053923150548575,
          -3.109662900499272,
          -3.856003453997221,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6545615547417434,
          -7,
          -7,
          -3.4681995860726125,
          -3.0729847446279304,
          -7,
          -3.65628990119136,
          -7,
          -3.694517453811156,
          -7,
          -3.8010605298478555,
          -7,
          -3.6206044653897242,
          -7,
          -3.9237101943965627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9681387192007698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6291036501771363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.780014713076167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9518715571283645,
          -7,
          -7,
          -7,
          -7,
          -3.9978230807457256,
          -7,
          -3.9472866446777983,
          -7,
          -3.161360256128763,
          -2.950299932560933,
          -7,
          -7,
          -2.317678541396253,
          -2.8319408361283087,
          -3.9789561652175918,
          -7,
          -7,
          -7,
          -7,
          -2.3121043694503958,
          -7,
          -7,
          -3.506978304246419,
          -2.4267694615865496,
          -3.9727118405470665,
          -3.2536771654229244,
          -3.459643742890279,
          -2.732732259046577,
          -3.1368111300765356,
          -3.9565045903166975,
          -3.496764708268367,
          -3.9727118405470665,
          -7,
          -7,
          -7,
          -7,
          -3.9496826907952043,
          -2.820394659578645,
          -7,
          -2.9790514702083497,
          -7,
          -1.9991522838842721,
          -3.6454713949056066,
          -7,
          -3.714874382231572,
          -7,
          -3.4011936846300252,
          -7,
          -7,
          -3.7562556487542333,
          -2.7745169657285493,
          -3.697839368218363,
          -2.6179747382228156,
          -3.439253724017898,
          -2.368273406913709,
          -3.6824158616773586,
          -3.2582540535071485,
          -3.966986025117938,
          -3.34143452457814,
          -7,
          -7,
          -7,
          -7,
          -3.1187841889145207,
          -3.5989363410431636,
          -2.605352939224738,
          -7,
          -7,
          -2.7995027206585665,
          -3.335808805235897,
          -2.6008448229987358,
          -3.6201013378002385,
          -7,
          -3.56054423863114,
          -3.182337940122092,
          -7,
          -4.020775488193558,
          -7,
          -7,
          -2.284221787734209,
          -3.2335037603411343,
          -7,
          -7,
          -7,
          -3.965013450272248,
          -3.2089018206788085,
          -3.1141289085933184,
          -3.3998034713645615,
          -7,
          -1.9848259138289839,
          -2.4964434207249413,
          -1.4875667678371367,
          -7,
          -7,
          -2.389488261294666,
          -3.3979834359489,
          -2.9465341378537158,
          -3.0805904144535012,
          -2.800176819315237,
          -2.0082633788160718,
          -7,
          -3.9380190974762104,
          -7,
          -3.0994833242126694,
          -3.9399682905513362,
          -3.0250189722827594,
          -3.987085029624122,
          -2.6322477917069986,
          -2.5217916496391233,
          -7,
          -7,
          -7,
          -7,
          -3.2101177828307916,
          -7,
          -7,
          -7,
          -7,
          -3.619997169624987,
          -3.369586890736344,
          -3.363762358869375,
          -2.583024288437186,
          -7,
          -3.879210605291759,
          -7,
          -4.183582992351017,
          -3.377032909310364,
          -2.1667580372054505,
          -3.3100557377508917,
          -7,
          -3.4872326745725313,
          -2.522785672204601,
          -2.9689496809813427,
          -7,
          -7,
          -4.021891873919109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6953203529523866,
          -3.6556825632823373,
          -2.3846144002320804,
          -2.77185461573938,
          -3.9652957958116564,
          -3.243781916093795,
          -7,
          -3.64777405026883,
          -7,
          -7,
          -2.6278338463814483,
          -7,
          -3.951386094880293,
          -7,
          -2.763174952431323,
          -3.9386197815026813,
          -7,
          -3.1600824724895236,
          -2.7306477150202615,
          -7,
          -3.9882021002587806,
          -3.694605198933569,
          -7,
          -7,
          -7,
          -3.89649865985879,
          -7,
          -3.1803170679833,
          -2.8873157722396194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5207978403223796,
          -7,
          -3.8339117150713786,
          -7,
          -0.6811681914613787,
          -2.944789847324052,
          -7,
          -3.8121443089703804,
          -3.303088010528054,
          -3.9877556167385233,
          -7,
          -3.0892425720555208,
          -3.400753787896711,
          -7,
          -3.99312748510571,
          -2.027898887909134,
          -3.957415714722669,
          -2.931695125260272,
          -7,
          -7,
          -3.707229419327294,
          -2.8556056771307627,
          -7,
          -3.261219599440868,
          -7,
          -4.144325078400488,
          -7,
          -3.9934362304976116,
          -7,
          -7,
          -3.837114748515506,
          -7,
          -7,
          -3.424432415724877,
          -4.490464159065009,
          -2.842410653111147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.214234349025624,
          -3.234950927564595,
          -4.036608936517427,
          -2.7655514428714616,
          -7,
          -7,
          -3.482540115553833,
          -3.9797304306622854,
          -7,
          -7,
          -7,
          -3.092413583273063,
          -3.994888795364911,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4129914837145408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.966376423088923,
          -3.1143106768684246,
          -3.526339277389844,
          -3.199541877030045,
          -3.469822015978163,
          -2.957563755312261,
          -7,
          -7,
          -2.555139811231624,
          -4.011401259924744,
          -2.7015782636070647,
          -7,
          -3.312607730179509,
          -7,
          -7,
          -7,
          -4.255995726722402,
          -2.960153542690461,
          -2.624433032288266,
          -2.92236858804445,
          -2.621320560864068,
          -2.3743011729043864,
          -3.2657609167176105,
          -7,
          -3.9844372947960762,
          -4.044578954876613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.694868327982456,
          -7,
          -3.5395778833453093,
          -3.6203442997544935,
          -7,
          -3.2603894359538135,
          -3.6906832800491083,
          -2.468794826053917,
          -2.97342670189906,
          -3.343113054845938,
          -3.116908047708927,
          -7,
          -3.969322706112202,
          -3.780821175853473,
          -4.004321373782642,
          -4.23656245185336,
          -3.7560652939486863,
          -4.155882358081815,
          -7,
          -3.7616271845615827,
          -4.021602716028243,
          -2.350963862547327,
          -2.6007216405557,
          -7,
          -7,
          -7,
          -3.841859809775061,
          -2.331871079112242,
          -3.9545801627437576,
          -7,
          -7,
          -7,
          -3.5358002908248976,
          -3.9548693710664784,
          -3.006136781822616,
          -3.9653898702151222,
          -3.2773799746672547,
          -3.392978186542541,
          -3.3630475945210936,
          -3.051945625614184,
          -2.910117254150511,
          -3.4388088214050185,
          -7,
          -3.6812713956674576,
          -3.7961308705829935,
          -3.549095263822955,
          -7,
          -3.273510545540457,
          -7,
          -3.7651094972067183,
          -4.154971441544471,
          -3.6520851030278667,
          -3.4109880047872694,
          -3.9399682905513362,
          -7,
          -4.029302593558998,
          -7,
          -7,
          -7,
          -7,
          -3.953373050726696,
          -2.5962268159414412,
          -7,
          -7,
          -4.6774061819799435,
          -4.828298908403947,
          -7,
          -7,
          -4.475663925814176,
          -3.388278863459639,
          -4.19725298299739,
          -2.447742764819307,
          -3.74863243437746,
          -3.9463539972262747,
          -7,
          -3.753291899757915,
          -4.782042416620554,
          -4.554997659078943,
          -4.063717935250528,
          -7,
          -4.14109686377542,
          -4.060008086443594,
          -7,
          -7,
          -7,
          -4.0597974201950455,
          -3.4767350435053235,
          -3.546275259758089,
          -3.3660907531790603,
          -7,
          -4.730103665154419,
          -4.371658839715409,
          -4.017617573339674,
          -3.3385978508664627,
          -7,
          -3.843061394239539,
          -4.4661258704182,
          -7,
          -7,
          -7,
          -7,
          -4.261857385629898,
          -4.370827547784376,
          -2.4569605985584455,
          -7,
          -3.962108775554161,
          -3.527176875493069,
          -7,
          -3.103906298088718,
          -3.1906265348970964,
          -3.7178368674869255,
          -1.951185252252834,
          -3.6536947953150816,
          -7,
          -7,
          -2.7836029465276524,
          -2.9923597003927576,
          -7,
          -2.6980024692403273,
          -2.226377657373889,
          -7,
          -2.835388558627749,
          -4.502427119984433,
          -7,
          -7,
          -3.071497433304764,
          -2.1175031458345996,
          -3.5796062459057905,
          -7,
          -4.11634203918834,
          -7,
          -3.530614754420801,
          -7,
          -3.580076671327345,
          -3.604657972047871,
          -7,
          -7,
          -3.3185403196146663,
          -2.8470047440551416,
          -2.8922274521845277,
          -4.086537783753207,
          -2.51853172389058,
          -2.764295715094164,
          -3.287403568562064,
          -2.1778023535384485,
          -7,
          -3.0470710104770475,
          -3.6712786585118917,
          -2.9574230844522935,
          -3.7720432235573,
          -7,
          -4.08282126093933,
          -3.1688544721436047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7415686772957413,
          -3.2412558576352395,
          -2.5227236124042807,
          -7,
          -4.0042783722001625,
          -3.7016111533360587,
          -4.026328938722349,
          -7,
          -7,
          -3.536842408605631,
          -7,
          -3.8962383070652464,
          -3.4878098101815893,
          -7,
          -7,
          -4.3338904116161245,
          -4.012162067970823,
          -3.6302922427684865,
          -7,
          -7,
          -3.8506462351830666,
          -7,
          -7,
          -7,
          -3.7611005389581424,
          -7,
          -4.266443381296273,
          -7,
          -7,
          -4.377260706054062,
          -3.4317476643821796,
          -3.3367848326610927,
          -7,
          -7,
          -3.18440748541232,
          -7,
          -3.0905323648171175,
          -7,
          -3.514503479814343,
          -2.4341989911773516,
          -7,
          -7,
          -7,
          -3.990161192898479,
          -3.8126125871077585,
          -7,
          -3.9966429913554724,
          -7,
          -7,
          -3.7016974770258484,
          -2.8530895298518657,
          -7,
          -7,
          -3.3677285460869766,
          -3.7583440634019762,
          -7,
          -3.7438819695892174,
          -7,
          -7,
          -7,
          -4.013637612453532,
          -3.031829245646604,
          -3.2658001678796333,
          -4.0832875693272825,
          -7,
          -7,
          -7,
          -7,
          -4.149773177559665,
          -7,
          -3.4122084658816805,
          -2.5065350967489293,
          -7,
          -3.9363126336621934,
          -2.7419693368814078,
          -2.6674615213066,
          -7,
          -4.021023822031585,
          -3.7542259820035175,
          -3.4429890216609986,
          -7,
          -7,
          -3.499549625905149,
          -4.106530853822381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6691773631428735,
          -4.042378598139876,
          -3.392769346877258,
          -3.41073506681745,
          -7,
          -4.035199521115102,
          -7,
          -3.5632041244800616,
          -7,
          -3.396417311708544,
          -7,
          -3.4977932285564193,
          -3.630665129596291,
          -7,
          -7,
          -3.6980135039391815,
          -3.3738311450738303,
          -3.2880255353883627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8610562445768735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9534697432534016,
          -7,
          -7,
          -4.026778328659529,
          -3.992730203954143,
          -4.021458064854097,
          -7,
          -7,
          -3.6624272644527265,
          -7,
          -7,
          -7,
          -7,
          -3.996632049605175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9922441440467713,
          -7,
          -7,
          -7,
          -7,
          -2.0170333392987803,
          -7,
          -2.9745116927373285,
          -0.830481425491196,
          -2.951175559263217,
          -3.2776092143040914,
          -3.3378584290410944,
          -4.429900248574898,
          -3.109646031090973,
          -7,
          -7,
          -2.90605270739008,
          -2.8816079125422824,
          -3.409087369447835,
          -7,
          -7,
          -7,
          -7,
          -3.1320900984523248,
          -3.3503934050950708,
          -7,
          -2.289291592392737,
          -3.49391789471334,
          -7,
          -7,
          -7,
          -7,
          -3.4219328132785085,
          -7,
          -3.441636958215057,
          -7,
          -3.2579184503140586,
          -7,
          -7,
          -2.8138477542288545,
          -3.288696260590256,
          -3.032014034159506,
          -7,
          -2.8490506905695123,
          -7,
          -3.5768858616369985,
          -7,
          -7,
          -7,
          -1.8251979712261068,
          -2.708343630410836,
          -2.7019994748896368,
          -7,
          -7,
          -3.111598524880394,
          -7,
          -2.500841492203123,
          -7,
          -2.852714531894921,
          -3.0281644194244697,
          -3.323870606540509,
          -2.8849840645741107,
          -3.0016255582867375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.217659381292399,
          -3.0710272996925214,
          -7,
          -7,
          -2.8780619812900126,
          -7,
          -3.2214142378423385,
          -2.4403579968152878,
          -3.2610248339923973,
          -3.295127085252191,
          -3.9252895251371474,
          -3.2545480771089736,
          -3.246252312299322,
          -7,
          -7,
          -2.579733903329737,
          -7,
          -7,
          -7,
          -3.605951157564873,
          -7,
          -7,
          -2.675869955318957,
          -7,
          -7,
          -2.824080049897986,
          -2.827276938731823,
          -3.068445618354352,
          -7,
          -7,
          -3.291146761731886,
          -3.1822719566941857,
          -3.0870712059065353,
          -2.3050932960616484,
          -7,
          -1.9092378965528287,
          -2.6648299411430907,
          -7,
          -7,
          -3.425778686860983,
          -3.2422929049829308,
          -7,
          -3.1371958119405483,
          -3.7426465899387362,
          -3.7983398307258573,
          -7,
          -3.2931414834509307,
          -7,
          -3.131137273778607,
          -3.2303296869189397,
          -7,
          -7,
          -3.0565237240791006,
          -2.898907927008518,
          -2.4187746368509666,
          -3.3823773034681137,
          -3.1666184637346104,
          -3.617666706945491,
          -7,
          -3.912965620704104,
          -7,
          -4.1543152663277905,
          -3.410608542568368,
          -7,
          -3.724275869600789,
          -7,
          -3.3529539117100877,
          -2.652308075867826,
          -3.149013723915726,
          -7,
          -3.2352758766870524,
          -4.089746194142301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.378216149749878,
          -2.740165238032828,
          -2.645057162575253,
          -3.4834446480985353,
          -7,
          -7,
          -7,
          -2.807083812982132,
          -3.4216039268698313,
          -3.8005796215691303,
          -3.5998830720736876,
          -7,
          -7,
          -2.881574844854148,
          -3.3808260568363413,
          -7,
          -7,
          -3.5010592622177517,
          -2.962053485123806,
          -7,
          -3.4424797690644486,
          -2.6214730323720974,
          -2.874713688757779,
          -2.3012712033802085,
          -2.7921114090871684,
          -2.641523684670229,
          -2.770557474850995,
          -7,
          -3.1111922238938114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983761560286165,
          -7,
          -3.7059919299146995,
          -7,
          -3.0348957147764644,
          -3.5494726505247858,
          -7,
          -7,
          -3.707995746422929,
          -7,
          -3.256837965904041,
          -7,
          -2.587570666364193,
          -2.9388531566569034,
          -2.9818186071706636,
          -3.441459468917794,
          -7,
          -3.070037866607755,
          -7,
          -3.707229419327294,
          -7,
          -3.5209137773470296,
          -7,
          -2.3823839721485935,
          -2.378397900948138,
          -2.2369149636275054,
          -2.6358856852812727,
          -2.4161864618375377,
          -7,
          -3.328787200354535,
          -2.9856830355921042,
          -2.9395192526186187,
          -7,
          -7,
          -4.078674273360466,
          -3.0196873549368544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.33665982345442,
          -3.3714834772045275,
          -3.705350462885712,
          -7,
          -4.157666594536235,
          -7,
          -2.829946695941636,
          -2.63286204010023,
          -7,
          -7,
          -7,
          -3.2286569581089353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.286905352972375,
          -7,
          -3.2564772062416765,
          -3.175946470095546,
          -3.325114765590469,
          -7,
          -7,
          -7,
          -3.2833012287035497,
          -2.8813846567705728,
          -2.86844850133673,
          -7,
          -7,
          -2.9370161074648142,
          -7,
          -3.86350130064145,
          -7,
          -7,
          -7,
          -7,
          -2.9419286319126137,
          -7,
          -3.086617532159259,
          -7,
          -2.7112198358301747,
          -7,
          -7,
          -7,
          -3.198499990015866,
          -3.1298831553406212,
          -2.8391427171910273,
          -3.5083276745471244,
          -3.610606937465461,
          -2.6040716921509444,
          -3.0538464268522527,
          -7,
          -3.4291060083326967,
          -7,
          -2.6905283211375925,
          -7,
          -7,
          -2.954081629836854,
          -3.28668096935493,
          -2.512625110914785,
          -7,
          -7,
          -3.9882021002587806,
          -7,
          -3.298197867109815,
          -3.45499721730946,
          -4.135847932046676,
          -1.751825230297199,
          -2.790988475088816,
          -2.8806654158665483,
          -3.252610340567373,
          -3.0707764628434346,
          -3.0091108061322127,
          -7,
          -7,
          -7,
          -2.54205440207046,
          -3.2009872191631663,
          -2.4035018157410506,
          -7,
          -4.573919945394144,
          -3.636688447953283,
          -7,
          -7,
          -7,
          -3.1416378746732714,
          -7,
          -2.4630393386237817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8094164304103115,
          -7,
          -2.922898380345496,
          -7,
          -3.3564083270389813,
          -4.563463286075492,
          -3.085986739996101,
          -4.307785625187721,
          -7,
          -7,
          -3.592238460099942,
          -2.815154959698523,
          -7,
          -3.385963570600697,
          -7,
          -7,
          -2.9096748675185355,
          -7,
          -7,
          -7,
          -7,
          -3.5724068675580556,
          -3.291812687467119,
          -7,
          -7,
          -7,
          -7,
          -3.478159686911935,
          -7,
          -7,
          -7,
          -4.78090749382419,
          -7,
          -7,
          -7,
          -3.6961641031417938,
          -7,
          -7,
          -3.9841783874885084,
          -7,
          -7,
          -7,
          -7,
          -5.003107093215893,
          -4.117944868803997,
          -7,
          -4.684836388525229,
          -4.627898155557663,
          -7,
          -4.337658891026142,
          -7,
          -7,
          -7,
          -4.547454710572725,
          -2.9399246544550244,
          -7,
          -7,
          -7,
          -7,
          -3.9380047853444586,
          -7,
          -4.211173956728494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.471144965160633,
          -3.917058907196864,
          -4.024742145874638,
          -3.3830969299490943,
          -7,
          -4.468583616860806,
          -3.649334858712142,
          -3.282924073246148,
          -4.051962449783047,
          -3.240798771117331,
          -4.460409174486291,
          -2.6618915263256966,
          -2.3119555770286806,
          -4.159221183790382,
          -3.822266176981333,
          -2.4235129951027297,
          -7,
          -3.678047714275594,
          -2.9916690073799486,
          -2.9585638832219674,
          -3.5711845677336043,
          -4.395116622747174,
          -7,
          -7,
          -3.9555653103685438,
          -4.285530586698769,
          -7,
          -7,
          -7,
          -3.0062520513693647,
          -3.8473543181408956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.501333178645566,
          -7,
          -4.189399065777632,
          -7,
          -3.768416088216332,
          -3.8816699076720615,
          -3.582528699729632,
          -4.027254446759137,
          -3.3609718837259357,
          -3.0797042363088907,
          -4.262849603407645,
          -7,
          -3.390558578656912,
          -7,
          -3.2334191932136345,
          -4.319959229070181,
          -4.020651268004342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8323385677415485,
          -2.285182108568106,
          -2.697308615276485,
          -7,
          -7,
          -3.1101593173871143,
          -7,
          -1.7893594719752786,
          -3.2814878879400813,
          -3.355962079458681,
          -7,
          -3.1518735616556226,
          -3.1252372114756253,
          -3.3420276880874717,
          -7,
          -4.164650215934297,
          -7,
          -2.921017243207157,
          -7,
          -7,
          -3.858537197569639,
          -7,
          -7,
          -3.4825877695267677,
          -2.3560258571931225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7976587145026497,
          -7,
          -7,
          -7,
          -1.7437922504744756,
          -7,
          -1.6386537936044188,
          -7,
          -2.977266212427293,
          -2.4775805826121924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8026027095457597,
          -7,
          -2.256830895064795,
          -2.6044260689687695,
          -7,
          -7,
          -2.493968958417453,
          -2.1858644078490883,
          -7,
          -4.1825002473792,
          -7,
          -7,
          -3.6580113966571126,
          -2.3462225361009863,
          -2.575115649019939,
          -2.6582234545138173,
          -7,
          -7,
          -7,
          -7,
          -3.3283796034387376,
          -3.8546703318953357,
          -7,
          -2.623766000133931,
          -2.6469224244915,
          -7,
          -7,
          -2.437221902399778,
          -2.7274420645374544,
          -1.4372999419590848,
          -3.5482665451707454,
          -2.0470378042585065,
          -2.573188181839261,
          -3.522900459461583,
          -7,
          -3.233721143084592,
          -7,
          -3.4348881208673157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.772871562650226,
          -7,
          -3.845829520066492,
          -7,
          -3.594309661839646,
          -3.6580949067971456,
          -7,
          -2.824451270036613,
          -7,
          -2.1503909028621253,
          -7,
          -2.404755990537958,
          -2.2445395004217272,
          -7,
          -7,
          -2.700126581535961,
          -2.61874519875888,
          -3.1851086606334373,
          -3.3658622154025553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5776066773625357,
          -7,
          -3.031408464251624,
          -2.8415680152280833,
          -7,
          -7,
          -7,
          -2.8834721588455867,
          -7,
          -3.0875448095324267,
          -7,
          -3.448551739201578,
          -3.8457799671118895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5605575122983906,
          -7,
          -7,
          -7,
          -7,
          -3.275886960301226,
          -7,
          -7,
          -7,
          -7,
          -3.4573519461106943,
          -2.8535461212539044,
          -7,
          -7,
          -3.564014726029118,
          -7,
          -7,
          -7,
          -7,
          -3.7594789799413166,
          -4.054823640146561,
          -4.039433949521653,
          -4.346059433052574,
          -3.197568194186736,
          -1.8706163838969008,
          -7,
          -3.6412162335803266,
          -2.206397870813696,
          -2.810023828472548,
          -7,
          -7,
          -7,
          -3.7372721765355434,
          -7,
          -2.7351034471081364,
          -2.736216041254522,
          -7,
          -3.7142962221969014,
          -2.4907548557145915,
          -7,
          -7,
          -7,
          -4.067219688974141,
          -3.8778702482588185,
          -4.344254692556935,
          -3.396249832845416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.084254459111229,
          -4.337099696361683,
          -3.593618308129536,
          -7,
          -2.3717428547789363,
          -7,
          -7,
          -3.466255768142727,
          -3.876025291494317,
          -3.709948016510761,
          -7,
          -7,
          -3.9112286531507197,
          -4.052963128755503,
          -3.7599698575543075,
          -2.2148997304621423,
          -4.381115080709851,
          -2.9343053225262477,
          -2.794345434221981,
          -3.0014583573925644,
          -3.871378315564175,
          -3.1248482491651344,
          -7,
          -7,
          -7,
          -4.339033840865832,
          -3.569178764933307,
          -7,
          -2.374987297588018,
          -7,
          -4.037027879755775,
          -3.6773148918608625,
          -7,
          -2.811999807700087,
          -7,
          -7,
          -2.338054216677949,
          -1.8963541694238766,
          -7,
          -4.070665753453728,
          -7,
          -4.0408791245157865,
          -2.9669890483053907,
          -4.0668102756258335,
          -7,
          -7,
          -4.381006719296579,
          -7,
          -3.909876817990393,
          -2.0164082880213403,
          -7,
          -7,
          -1.965233253817691,
          -2.7896688311627806,
          -2.7758095916368664,
          -4.037047819356885,
          -4.335838869579954,
          -2.979948797120537,
          -4.061659775062183,
          -2.958453614214925,
          -3.120348760073331,
          -4.340622555361112,
          -1.7542390929782323,
          -4.047761471896603,
          -7,
          -7,
          -3.5323296410790315,
          -4.337559087628736,
          -7,
          -4.357038666819455,
          -3.3654369284633194,
          -3.0411615134980985,
          -3.869055618701908,
          -7,
          -7,
          -4.356312741150645,
          -3.5441157663965743,
          -7,
          -7,
          -3.6706354297483315,
          -3.791795877259999,
          -3.1516421992299084,
          -3.873436863222037,
          -2.8496000462005777,
          -2.288234616162357,
          -7,
          -3.9729430081055686,
          -4.3469589986735295,
          -3.799880813751481,
          -4.3537624030672,
          -4.080157310970184,
          -3.288902429348888,
          -7,
          -2.2710930605031194,
          -3.122965927916578,
          -3.7823651122256696,
          -7,
          -7,
          -3.186400965372376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.462955823628693,
          -3.9481357374421178,
          -2.4685319401840777,
          -2.984377272063356,
          -3.0248764311607497,
          -3.097589246848332,
          -7,
          -4.04008784346988,
          -7,
          -3.668572269184558,
          -3.404989127064217,
          -7,
          -3.864965705184916,
          -7,
          -2.478831585049216,
          -4.3370197526004075,
          -7,
          -3.323308364436474,
          -3.077750290941176,
          -7,
          -3.8803180615942368,
          -7,
          -4.375901268009488,
          -3.528402437953617,
          -7,
          -3.312977843808971,
          -4.3610475381955816,
          -4.044186850767364,
          -2.6656769286187187,
          -7,
          -7,
          -7,
          -4.348927619178392,
          -7,
          -3.8640955734242475,
          -7,
          -4.170833551085677,
          -3.6433737066738225,
          -2.6124162045705797,
          -7,
          -2.991357361812571,
          -3.0474228880808245,
          -7,
          -4.415390738182574,
          -3.700790221374347,
          -7,
          -7,
          -7,
          -3.886735064575406,
          -3.655330558009341,
          -7,
          -3.084269789225843,
          -7,
          -2.2592074234859556,
          -7,
          -2.8556056771307627,
          -3.5209137773470296,
          -7,
          -7,
          -4.219283192112123,
          -7,
          -4.1301085203609365,
          -7,
          -7,
          -7,
          -7,
          -3.9508352475190938,
          -4.370956964416454,
          -7,
          -7,
          -4.643274974211101,
          -3.85105950643604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9221716433242486,
          -3.500024292033634,
          -3.087325333113581,
          -7,
          -7,
          -3.868428902768081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8607451539354347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.346900388113341,
          -4.03462845662532,
          -7,
          -7,
          -3.6650553925144296,
          -1.9570631956962383,
          -4.143046043337588,
          -4.3625201722887965,
          -4.036928168015719,
          -4.335939069031729,
          -3.26030994579492,
          -3.8903837546984503,
          -2.662970206395096,
          -7,
          -3.8612415964935445,
          -3.1196051722007563,
          -3.7391568368159476,
          -4.041116227969485,
          -4.492425112776086,
          -2.6853508197908234,
          -2.540789578241321,
          -4.121477770204095,
          -3.4080702858871854,
          -3.015340700301741,
          -3.233386663010114,
          -7,
          -4.355911050526753,
          -3.9053100621160857,
          -3.777046013407733,
          -7,
          -3.739770065592548,
          -4.356236257289767,
          -7,
          -7,
          -7,
          -4.068927611682072,
          -4.473340964185936,
          -7,
          -4.078855402979768,
          -4.35905722763489,
          -3.4240367997738432,
          -2.090984331084246,
          -3.7375901662857216,
          -3.03926402233583,
          -7,
          -4.349549483586635,
          -7,
          -7,
          -4.18019758233534,
          -7,
          -7,
          -7,
          -7,
          -4.071034675054152,
          -3.065182963862193,
          -3.3779736964389593,
          -7,
          -7,
          -7,
          -2.938132192894469,
          -3.9275927579492365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.042516447524275,
          -2.204337745500236,
          -7,
          -4.352645518668972,
          -7,
          -3.6487892135944495,
          -2.378125480538288,
          -2.589003893874719,
          -2.6993153798961673,
          -3.569744443109588,
          -3.961373627594801,
          -2.8378207563763533,
          -3.5895187615052655,
          -7,
          -4.049954148022047,
          -7,
          -4.392573856408141,
          -3.9595183769729982,
          -4.423491631454581,
          -7,
          -7,
          -7,
          -3.676437528972767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.683595498456455,
          -7,
          -7,
          -4.481600264553629,
          -4.905202028662319,
          -4.600864036309839,
          -7,
          -4.084200799448233,
          -4.3507615005427285,
          -7,
          -3.6654871807828107,
          -3.908207911377373,
          -4.487477756438898,
          -7,
          -4.3157919753496214,
          -4.565753396565981,
          -4.303613586003601,
          -4.4725443682498565,
          -4.328185860813199,
          -4.835100544787736,
          -4.719795170658459,
          -4.505041391125465,
          -4.1436808323706815,
          -7,
          -4.168841090364729,
          -7,
          -4.441538038702161,
          -3.208377364442061,
          -7,
          -4.222430314660491,
          -4.563219955576987,
          -4.37032800777951,
          -3.444217143549448,
          -4.55194988078541,
          -3.7582556676825742,
          -4.3252487652875375,
          -4.566178134479448,
          -7,
          -4.52310886038063,
          -7,
          -4.21830788296991,
          -4.261631565092629,
          -2.5444674536166065,
          -4.35071308475223,
          -3.107843280562333,
          -3.3826362538303836,
          -3.4196554065124327,
          -4.110000151133113,
          -3.2482389961733467,
          -3.0479605907788403,
          -2.828409743123176,
          -3.714078164981856,
          -4.386588133907789,
          -4.387967907442333,
          -2.858818584987489,
          -2.894303472796426,
          -7,
          -3.3641219830507363,
          -3.365612764228607,
          -7,
          -3.4384315856144934,
          -3.2895695656943067,
          -7,
          -7,
          -2.7367107503568193,
          -3.0123253976287834,
          -3.6595514860340135,
          -7,
          -4.4169399175410415,
          -7,
          -3.6491712371470424,
          -7,
          -2.743169825496728,
          -3.2415726926544917,
          -3.877797367506874,
          -7,
          -3.6711522644269463,
          -4.08181520063228,
          -3.682564456357042,
          -4.402278581895561,
          -2.633828187038318,
          -7,
          -3.586344904524066,
          -2.4980498652488414,
          -7,
          -3.2378348616764314,
          -3.649537352421843,
          -4.094366298336134,
          -3.5295444172650554,
          -4.343684248831774,
          -3.923295840655504,
          -3.343394525079649,
          -2.921399787918667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.744284383998204,
          -3.2246995121061377,
          -2.715657201884874,
          -7,
          -7,
          -3.7326450149540165,
          -4.374216605428374,
          -4.366385596953946,
          -7,
          -3.7293754038488665,
          -7,
          -3.84464800191945,
          -3.324436797945258,
          -7,
          -7,
          -7,
          -4.367914738793752,
          -3.810400556101999,
          -7,
          -4.345432547499147,
          -4.435015741932561,
          -7,
          -4.0473138158153885,
          -7,
          -3.612359947967774,
          -7,
          -4.197459753794603,
          -7,
          -4.33976934376873,
          -4.78335321959462,
          -3.907665102853612,
          -3.875482193380458,
          -7,
          -7,
          -3.270897092861874,
          -7,
          -3.5375672571526753,
          -7,
          -3.881859970905687,
          -2.598254368247123,
          -7,
          -7,
          -7,
          -3.8811563210755637,
          -4.1145609474233265,
          -7,
          -4.361142087753333,
          -3.4498446565674765,
          -7,
          -3.460465587356657,
          -2.6431846848842975,
          -4.56696751468097,
          -7,
          -3.4384192768514645,
          -3.158380232520566,
          -7,
          -3.701678980536721,
          -7,
          -7,
          -7,
          -3.891370174696148,
          -2.8428684115952803,
          -3.5370811569459977,
          -4.099646117123231,
          -4.358886204405869,
          -7,
          -7,
          -7,
          -4.433993721794708,
          -7,
          -3.8917604014566716,
          -2.8160518172305298,
          -7,
          -7,
          -2.8037269968989373,
          -2.416921167679809,
          -3.705401815129262,
          -7,
          -3.7722588216951434,
          -4.382827209736365,
          -4.426136988786424,
          -7,
          -3.550826031030187,
          -4.412057146690156,
          -7,
          -7,
          -7,
          -7,
          -4.167592989776093,
          -4.382197210377454,
          -3.3081762173504505,
          -7,
          -3.4619169336782014,
          -7,
          -7,
          -3.1827461425895804,
          -7,
          -3.4260953830271657,
          -7,
          -4.060980983566012,
          -7,
          -3.367135583118011,
          -3.810585322955202,
          -4.4163741915354215,
          -7,
          -3.2826221128780624,
          -2.586781246747011,
          -3.5840766803638173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.339868640584651,
          -4.139406770441792,
          -7,
          -4.366180057989114,
          -7,
          -7,
          -7,
          -4.041945072145264,
          -7,
          -7,
          -3.8972237615049465,
          -7,
          -4.0550851346254175,
          -7,
          -4.410709764916316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1775364999298623,
          -7,
          -4.347505649475902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.370846038235976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2095418220166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40426340205091,
          -7,
          -7,
          -4.492593947407737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.863322860120456,
          -4.8653527487813975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.88570038012833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.129765060307425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7182940414897097,
          -7,
          -7,
          -5.125116760853404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.178545314511007,
          -7,
          -7,
          -2.7256394326735376,
          -5.230165260011151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9690896029549214,
          -7,
          -7,
          -3.143014800254095,
          -7,
          -4.376449204597316,
          -7,
          -7,
          -7,
          -7,
          -3.428674625648206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.693287157005656,
          -7,
          -2.91539983521227,
          -3.1348780451951295,
          -7,
          -4.294527948909792,
          -7,
          -3.4302363534115106,
          -7,
          -7,
          -7,
          -7,
          -3.157607853361668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.23957473708321,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3802112417116064,
          -2.88024177589548,
          -7,
          -3.0930713063760633,
          -2.7261836614188204,
          -7,
          -4.037161304267523,
          -7,
          -7,
          -7,
          -1.9358735272690675,
          -7,
          -7,
          -7,
          -3.616790486329716,
          -7,
          -7,
          -7,
          -7,
          -4.030996578989978,
          -7,
          -7,
          -7,
          -7,
          -2.65359838184329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.911157608739977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.570426178358973,
          -7,
          -7,
          -7,
          -2.8305886686851442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.591064607026499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7382518980637593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9370161074648142,
          -7,
          -7,
          -7,
          -7,
          -3.7743709598499167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.502882116864084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6545615547417434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.124178055474675,
          -7,
          -2.6321197138685406,
          -7,
          -2.787460474518415,
          -2.828015064223977,
          -7,
          -7,
          -7,
          -7,
          -3.9230885154423993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.283527364861694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7782236267660965,
          -3.2610248339923973,
          -3.0324844498918937,
          -7,
          -5.351217635001813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.330920830595236,
          -3.3912880485952974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.385302339856317,
          -4.9209935946648535,
          -7,
          -3.483301952358167,
          -4.416124372065471,
          -3.767304317453273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.156851901070011,
          -2.376576957056512,
          -1.8586823667982821,
          -2.520483532740792,
          -3.899519564476793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2878465002495174,
          -7,
          -7,
          -4.962141946433934,
          -4.679436982175699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.513940821687035,
          -5.487782972714756,
          -5.007349990324425,
          -7,
          -2.418761495327949,
          -7,
          -4.65389237604383,
          -7,
          -7,
          -4.072286669509892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.897577611885395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.703061987128565,
          -7,
          -7,
          -3.8627672425040847,
          -7,
          -3.2753113545418118,
          -7,
          -3.4358443659844413,
          -7,
          -4.796380036631384,
          -3.600755149639618,
          -7,
          -7,
          -7,
          -7,
          -3.652536418593025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5082603055123345,
          -7,
          -7,
          -7,
          -7,
          -4.595055089759304,
          -7,
          -7,
          -7,
          -7,
          -2.8502376796666677,
          -7,
          -7,
          -7,
          -3.174931593528443,
          -3.770483809431108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5251744278352715,
          -3.4983105537896004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024802213153309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.629256651581539,
          -3.60400993241223,
          -7,
          -4.3028285882602555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.527784518264025,
          -7,
          -7,
          -4.243831461981921,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3296012483565187,
          -3.6535983818432896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9745116927373285,
          -7,
          -7,
          -3.1809855807867304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.195595263005526,
          -2.9694159123539814,
          -2.9523080096621253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0751087964165,
          -7,
          -3.4619110156367996,
          -3.2196219444266507,
          -3.029273068295503,
          -2.34286491861272,
          -2.3557126765908625,
          -7,
          -4.08192310435106,
          -2.7381857702399692,
          -7,
          -7,
          -7,
          -3.5837168320118957,
          -2.0507824102259415,
          -2.8640920800785654,
          -3.481442628502305,
          -7,
          -7,
          -7,
          -2.5865343548445856,
          -2.322265765707363,
          -4.062055247375354,
          -2.8170968897914963,
          -2.639226611744344,
          -3.7897921677306754,
          -3.473705886887772,
          -7,
          -2.9749391317894913,
          -3.31983447960114,
          -7,
          -3.0515281051482557,
          -3.7897921677306754,
          -4.068556895072363,
          -7,
          -3.6018427897820984,
          -2.9423718807196844,
          -4.073461729279835,
          -4.152624639447619,
          -7,
          -2.6212087487493636,
          -4.077404246398098,
          -3.0439237974450255,
          -7,
          -4.080806804334363,
          -3.123655674438122,
          -2.8898267412346583,
          -2.6454503417761015,
          -3.473961150455583,
          -3.789404420511141,
          -7,
          -3.494189391861649,
          -3.031105362355941,
          -2.289863258240586,
          -3.1437328231386923,
          -2.2405950430295083,
          -2.9839268369509955,
          -4.079434510633743,
          -3.6092741724045876,
          -2.694793164520534,
          -4.088029717842714,
          -4.0908573959815335,
          -7,
          -7,
          -3.482337527813187,
          -2.828220342013904,
          -2.79466505233476,
          -7,
          -4.067182485523405,
          -2.280456529745993,
          -7,
          -3.3737786750385,
          -3.0743099747196676,
          -7,
          -3.840262964417612,
          -2.864649595666176,
          -3.766933093837284,
          -3.826884298707612,
          -7,
          -7,
          -2.792951708250132,
          -3.518941443661678,
          -4.076421967360593,
          -7,
          -3.4448875712579383,
          -7,
          -3.4553017716570764,
          -3.6888349324833243,
          -2.7899163079479923,
          -7,
          -2.8173730283240284,
          -4.164769103009198,
          -2.936030924772797,
          -7,
          -7,
          -4.140225125266448,
          -4.112068504268197,
          -3.6552985433779526,
          -3.573683693093798,
          -4.071882007306125,
          -3.226170123398999,
          -3.3084932702271614,
          -7,
          -7,
          -3.312790692146442,
          -7,
          -2.954885432549936,
          -2.7782890997680427,
          -2.4865721505183567,
          -2.2681748632088237,
          -3.17868923977559,
          -3.0320690441216103,
          -3.794627444664508,
          -3.799478398837981,
          -2.121146829862744,
          -3.1348851196049536,
          -7,
          -4.124504224834283,
          -3.688983090121954,
          -2.7895525103083876,
          -7,
          -3.461515200596466,
          -2.9174927009618066,
          -7,
          -3.6550663666946304,
          -4.083574279673991,
          -3.006236195997821,
          -7,
          -3.2409546501190056,
          -3.33637395293205,
          -4.0687052196919415,
          -3.4824090401601135,
          -2.1401483460126145,
          -2.71720804477317,
          -7,
          -3.7640266076920375,
          -3.3912628479986675,
          -7,
          -7,
          -7,
          -3.7679346702804657,
          -4.064195835864643,
          -3.1628430939207037,
          -2.289291592392737,
          -3.228674059346633,
          -3.5046339471684735,
          -7,
          -7,
          -7,
          -3.595606434865603,
          -3.7971636301993072,
          -3.750720476243363,
          -2.670319108447816,
          -7,
          -7,
          -4.0858968111315885,
          -2.8906009783510855,
          -7,
          -3.7616271845615827,
          -3.815145895436368,
          -3.8010605298478555,
          -4.069223957297052,
          -3.8016437748849454,
          -2.3566062594800776,
          -3.055378331375,
          -2.8999813462798674,
          -3.1135088405328193,
          -2.808094505739662,
          -2.82910054658403,
          -4.080446094611049,
          -2.2959701796424143,
          -3.474871583227693,
          -7,
          -7,
          -7,
          -3.5982066794435963,
          -7,
          -7,
          -2.967637107975338,
          -4.075364446373285,
          -2.9744109367049494,
          -7,
          -3.436719078227576,
          -2.5919058985654106,
          -7,
          -3.12205196263325,
          -3.39776625612645,
          -3.5001335167117813,
          -4.130783914588957,
          -3.805296916157985,
          -3.0342941524891125,
          -3.25170772980846,
          -2.901390202114049,
          -3.2848253676580463,
          -7,
          -3.419735518017542,
          -7,
          -3.261219599440868,
          -2.3823839721485935,
          -4.219283192112123,
          -7,
          -7,
          -4.063858548853072,
          -1.4620131312611186,
          -2.510870934786189,
          -1.897313835389292,
          -2.8185924177996933,
          -2.22396003039246,
          -2.3433692002275315,
          -2.4803663095328092,
          -7,
          -3.3541724896573473,
          -3.186892154330931,
          -2.215469320738178,
          -7,
          -4.063933524163039,
          -3.7741883834475543,
          -7,
          -7,
          -7,
          -4.067925949681522,
          -3.7806053058389697,
          -3.2061960072022204,
          -3.3298625829237687,
          -3.136791006615146,
          -2.7899004585544813,
          -7,
          -2.929601364062661,
          -3.7800291273373383,
          -4.096249383189612,
          -4.0646825662285115,
          -7,
          -3.043526008270723,
          -2.9940801570392517,
          -3.6306312440205,
          -7,
          -7,
          -3.5918434112247843,
          -3.5959001996400763,
          -4.062995401186467,
          -3.591064607026499,
          -3.155808206708329,
          -2.2938892026246065,
          -7,
          -7,
          -7,
          -4.07258073264895,
          -2.9710616467698157,
          -2.9063709621129483,
          -7,
          -3.6088111908309735,
          -1.7969056392619156,
          -3.813547631336185,
          -3.3901778366727955,
          -3.5486841714830053,
          -7,
          -7,
          -7,
          -2.3465182625523116,
          -3.6434197741427568,
          -2.2924108586634353,
          -7,
          -2.6094897826420684,
          -4.090363879471718,
          -3.470924753299968,
          -7,
          -2.0490704791043313,
          -3.5222355133379852,
          -2.874675052177361,
          -2.8505663306447584,
          -3.07995263964635,
          -3.2010555635620643,
          -3.7840107110782126,
          -7,
          -7,
          -4.146686055647526,
          -3.140445188347875,
          -7,
          -7,
          -3.7993405494535817,
          -3.294613170667107,
          -2.6014828106002095,
          -7,
          -3.2794387882870204,
          -2.911712334172279,
          -2.71589893337299,
          -2.3460057534922925,
          -2.281515419366247,
          -2.9425575391636456,
          -2.8141557107253563,
          -4.070296518197765,
          -2.289042036469909,
          -3.465457210575713,
          -7,
          -2.6695202631671413,
          -2.938152654633226,
          -2.9615505217181,
          -2.8129740928826443,
          -2.74404048632376,
          -3.115943176939055,
          -1.8304467756482372,
          -2.34664631757689,
          -3.5611432676414223,
          -2.675848815423839,
          -7,
          -7,
          -4.061829307294699,
          -3.4478038225123706,
          -2.6509928005631194,
          -7,
          -4.08339510788965,
          -3.358759477097732,
          -4.073571728304925,
          -3.0799373127778655,
          -3.6001012556913907,
          -3.304598226343637,
          -3.608062253333116,
          -3.394696777891884,
          -2.953418555773891,
          -4.0853262624239886,
          -3.0156740440360554,
          -3.404234866653423,
          -3.461456300498588,
          -7,
          -3.092319541462881,
          -2.549737219231734,
          -2.618328772336617,
          -7,
          -3.0110415256389502,
          -4.071403283531469,
          -3.0840397806679536,
          -2.477451294677366,
          -2.87146679000413,
          -3.0074194882565544,
          -4.066176785772006,
          -7,
          -3.1799027104409694,
          -7,
          -3.7825801094983293,
          -3.308279770272725,
          -3.5896983300424856,
          -3.5989727919628125,
          -2.372118250386322,
          -4.062393937253195,
          -7,
          -2.869757870745095,
          -3.1930812904776325,
          -4.473939276599178,
          -3.07137210569682,
          -3.952349553703281,
          -3.0487925259244864,
          -3.6693168805661123,
          -3.6203963453512844,
          -2.297941956450323,
          -2.7686803765792845,
          -3.1784301399477375,
          -4.0180344027045285,
          -3.7232846023981594,
          -4.140676919956626,
          -2.641350150325749,
          -3.9093955459671053,
          -4.16354896490181,
          -2.9075813039928935,
          -3.7379277754753852,
          -3.244758029080568,
          -4.172748838982743,
          -4.203143419397126,
          -3.998912904358786,
          -3.110156642805923,
          -3.775537634780957,
          -4.512123826722944,
          -4.054191576796431,
          -4.422737533946394,
          -7,
          -2.8699169070651678,
          -3.561782630034868,
          -3.654435722700975,
          -4.507680500010818,
          -4.426820199963355,
          -4.1160429268492065,
          -7,
          -7,
          -3.693232151688388,
          -3.944811558558846,
          -2.9177138502369337,
          -3.3119303676551777,
          -3.6488102126265374,
          -3.2991360121936095,
          -3.320030828319093,
          -3.4955443375464483,
          -3.908980689485702,
          -4.126553477961279,
          -3.2014826209704887,
          -2.6762154147284902,
          -2.1655905154476702,
          -2.3671864402504426,
          -2.6905352070203894,
          -2.6357276141635664,
          -3.62797998982998,
          -3.5852350633657752,
          -4.2494674142722895,
          -3.591621038213319,
          -7,
          -3.762516016666799,
          -7,
          -4.090751689644903,
          -3.1568957026324207,
          -3.15253949843463,
          -4.159471942771147,
          -3.1699681739968923,
          -2.8051200889239234,
          -2.732686115594294,
          -2.9716837962818903,
          -7,
          -4.193481450939115,
          -2.5152491909615082,
          -3.6631667570922044,
          -7,
          -2.925922465342976,
          -3.6275137828715196,
          -2.9465007841151127,
          -2.856815171198087,
          -3.183586154317256,
          -7,
          -2.1288224143721775,
          -3.7184186418296554,
          -4.086181804649749,
          -2.893955407756366,
          -3.0919199043047665,
          -7,
          -2.436157032337598,
          -4.077549580451794,
          -2.493225621510431,
          -2.906107664694548,
          -3.644340098826323,
          -7,
          -7,
          -7,
          -3.4657545198338777,
          -3.9109710618483087,
          -2.7743129733104617,
          -2.9221413362079565,
          -2.3806094943593243,
          -4.071440127177888,
          -3.2115877040189345,
          -1.7843966678397087,
          -3.6550743748537613,
          -2.5139164381268553,
          -7,
          -2.479850035212238,
          -3.766040860381389,
          -1.8934722806395246,
          -2.750194009703799,
          -3.781575877033917,
          -4.122903649173324,
          -4.389325591817493,
          -2.4279032320494807,
          -2.748547943404879,
          -3.3923099598928186,
          -3.6035052322021435,
          -3.3880758153666863,
          -3.0398105541483504,
          -2.7043292903498783,
          -2.712279215017366,
          -2.880843667034579,
          -4.062205808819712,
          -2.2576170469974515,
          -3.7658175153099185,
          -3.769192637796977,
          -2.9791014989115605,
          -3.023753872818503,
          -2.9785709156211735,
          -7,
          -3.4435758797502576,
          -2.300630970538965,
          -2.4647449647018136,
          -2.4631772812264816,
          -7,
          -3.20194306340165,
          -2.3143674461762864,
          -3.764400322956388,
          -3.468495024507069,
          -4.131586588239808,
          -2.8727045811704075,
          -2.9460153489984524,
          -3.6028915923882656,
          -2.877710029878129,
          -3.492690561149542,
          -4.083359264660818,
          -3.2685111110587712,
          -2.9749719942980692,
          -2.935572270237632,
          -4.0661394928706995,
          -2.7157348093720355,
          -2.856305866433299,
          -7,
          -2.690751843657941,
          -3.4778444763387584,
          -3.5935075893317654,
          -3.3753663634022653,
          -2.658175933306894,
          -2.0892217923700414,
          -3.104487111312395,
          -2.8145660465211737,
          -7,
          -3.781396305196791,
          -4.25956998964356,
          -3.4779528557799653,
          -2.6986888993039364,
          -3.231032454528749,
          -2.6159171891478232,
          -2.696556075836984,
          -3.3223571441183184,
          -7,
          -2.574031267727719,
          -2.3204395467030783,
          -1.7936260659291523,
          -3.2826868363479145,
          -1.4665183710211236,
          -2.463083841024901,
          -3.1773528270652496,
          -3.3197304943302246,
          -2.132754928671835,
          -2.8527848686805477,
          -2.6076625217766205,
          -3.1922537448805817,
          -3.588980942047111,
          -3.7621907399180134,
          -3.8327004709605674,
          -3.3676975062069,
          -3.787956123283932,
          -3.3664852172048483,
          -2.13469679217285,
          -3.8208579894396997,
          -2.260894630279264,
          -2.3588058219694283,
          -2.6142309497578875,
          -2.694605198933569,
          -4.08109515656134,
          -2.747648195386783,
          -7,
          -2.72714845883997,
          -1.7527194376029664,
          -3.6012177295644547,
          -4.064345657162171,
          -3.411922596466199,
          -3.315025199312605,
          -2.1943737331623745,
          -3.4848334799814933,
          -4.076567630444938,
          -7,
          -4.064120905829622,
          -7,
          -3.4641540841432814,
          -3.5932122011334005,
          -2.77832593141989,
          -2.6006326194945357,
          -3.117602691690084,
          -3.3001605369513523,
          -3.178869079308535,
          -4.071145290451083,
          -3.59904568462527,
          -3.3869980727100555,
          -3.602963830326207,
          -3.433449793761596,
          -3.151437953506484,
          -2.606381365110605,
          -2.1692737957643833,
          -3.5919267717577323,
          -3.606667933568316,
          -7,
          -3.8615941446438655,
          -7,
          -7,
          -2.6106192208808556,
          -3.60859734044574,
          -3.3853202242009113,
          -2.7792657147626283,
          -3.361948074467151,
          -2.5774279658572614,
          -7,
          -3.5928426831311002,
          -3.42719388446982,
          -3.7647737169110402,
          -2.5194090466884345,
          -2.958836809849585,
          -7,
          -7,
          -7,
          -7,
          -1.6782147827453995,
          -7,
          -7,
          -2.680335513414563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8866598978612026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.855801728654794,
          -7,
          -7,
          -3.6385890832927172,
          -4.457605937214085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.839440335651648,
          -7,
          -7,
          -7,
          -2.9995654882259823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304845831746371,
          -7,
          -7,
          -3.773347541980823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.446273030751088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6024940688072813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.384545412762144,
          -3.500785172917456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8397921844453293,
          -7,
          -7,
          -7,
          -3.9600424557268417,
          -7,
          -7,
          -7,
          -7,
          -4.372930404888793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.75226362009077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3981136917305026,
          -7,
          -7,
          -7,
          -4.293384655649437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.403977963669355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.061050168283154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3439990690571615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.150828560517062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.653937662376219,
          -7,
          -7,
          -3.5512059437479064,
          -3.083860800866573,
          -7,
          -7,
          -7,
          -3.0265332645232967,
          -2.823474229170301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.378397900948138,
          -7,
          -7,
          -4.063858548853072,
          -7,
          -3.7350397050337207,
          -7,
          -7,
          -7,
          -2.7671558660821804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.712727968579756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941138594309685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.828015064223977,
          -7,
          -7,
          -7,
          -7,
          -3.7601207852645677,
          -7,
          -7,
          -7,
          -7,
          -4.30903366750414,
          -7,
          -4.22927217882129,
          -7,
          -4.708539868627965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1458177144918276,
          -7,
          -7,
          -7,
          -7,
          -3.3854275148051305,
          -7,
          -5.130963842466372,
          -3.5747255835940734,
          -7,
          -3.9780891730561425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.483587296968894,
          -7,
          -5.828217644706376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3708830167776056,
          -7,
          -7,
          -3.586249638866042,
          -7,
          -7,
          -4.080788775961754,
          -5.2730707536224655,
          -7,
          -7,
          -4.716370668196387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8842287696326037,
          -7,
          -7,
          -4.197969367916172,
          -7,
          -2.187520720836463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.064918247161494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.978500069311459,
          -3.447158031342219,
          -7,
          -7,
          -3.171973141806358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.487511679953053,
          -7,
          -7,
          -7,
          -2.6848453616444123,
          -4.954005995831296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.896520706103291,
          -7,
          -7,
          -4.942037832194369,
          -4.954459602411555,
          -7,
          -5.346937509053203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464325575532697,
          -2.9903388547876015,
          -4.1747573763106605,
          -7,
          -7,
          -4.035069344421104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.795045370421125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4433151518310963,
          -7,
          -2.9360107957152097,
          -7,
          -7,
          -3.941883951154944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.971461405024587,
          -7,
          -7,
          -3.499549625905149,
          -3.1696744340588068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.267500259393266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2626883443016963,
          -7,
          -7,
          -7,
          -7,
          -4.326243665994105,
          -3.2814878879400813,
          -7,
          -3.696465603994037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3334472744967503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1332194567324945,
          -3.436639631692661,
          -3.4497868469857735,
          -1.8725535538998603,
          -2.6605266883136225,
          -3.7515100502700416,
          -7,
          -2.9970677926694376,
          -7,
          -7,
          -7,
          -7,
          -2.5335752742031707,
          -3.800235789327354,
          -7,
          -7,
          -7,
          -3.7399676967595092,
          -3.1975400029942715,
          -2.8479494873496183,
          -7,
          -2.231178215389961,
          -3.014571167632066,
          -7,
          -3.760497875226527,
          -7,
          -3.004812518287239,
          -3.8055008581584002,
          -7,
          -3.5721244644195123,
          -7,
          -2.966063474430522,
          -3.7460890430562004,
          -3.289514631590605,
          -3.000062037637689,
          -7,
          -7,
          -7,
          -2.517675648876312,
          -7,
          -3.293047569823077,
          -7,
          -7,
          -3.553822366753853,
          -3.0994043723455422,
          -3.193958978019187,
          -3.459844642388208,
          -3.4888326343824008,
          -3.612571954065176,
          -3.500648063371912,
          -2.1711736885434303,
          -2.7233897865240726,
          -2.9876662649262746,
          -2.9380190974762104,
          -2.9703081258859316,
          -7,
          -2.8779469516291885,
          -2.8478529757347544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.462397997898956,
          -3.6763800207200426,
          -7,
          -7,
          -7,
          -3.737113094305961,
          -3.4153072922255676,
          -3.189817712495049,
          -7,
          -3.8862650590297565,
          -3.4976991031806923,
          -2.7424894645817752,
          -2.4114994527485885,
          -7,
          -7,
          -3.6207258227036743,
          -7,
          -7,
          -3.7335182514344876,
          -7,
          -7,
          -3.307282047033346,
          -7,
          -3.1352598985156583,
          -7,
          -3.4231515058214765,
          -3.6263916993864376,
          -7,
          -7,
          -7,
          -7,
          -3.832061614590727,
          -7,
          -7,
          -7,
          -3.4362762623407903,
          -7,
          -7,
          -7,
          -3.1168491528226485,
          -7,
          -7,
          -2.5548927794398435,
          -3.36506658974845,
          -2.7967251246712355,
          -2.492024795216319,
          -1.8885226987424604,
          -2.7991336933020627,
          -7,
          -2.26306648231497,
          -1.7354084292983945,
          -2.6187719880431564,
          -7,
          -7,
          -3.9682961150462557,
          -3.7895807121644256,
          -3.2987221136057077,
          -3.058011047472369,
          -7,
          -3.3774519630245745,
          -7,
          -3.6930775756475187,
          -3.8008544915035607,
          -2.9880012394757802,
          -2.5226856826046076,
          -7,
          -7,
          -2.343900712249606,
          -3.202597285692431,
          -7,
          -7,
          -3.975232615453934,
          -7,
          -7,
          -7,
          -3.1434832106700616,
          -3.735758537443739,
          -4.195927313597225,
          -2.973421763928828,
          -4.284949321403674,
          -3.6917885244026984,
          -7,
          -7,
          -7,
          -2.9751253198007745,
          -2.6273658565927325,
          -7,
          -4.068556895072363,
          -7,
          -7,
          -7,
          -3.5585667636507035,
          -7,
          -7,
          -2.5589610673320826,
          -3.335591612045706,
          -7,
          -3.2116544005531824,
          -2.264424262056547,
          -3.1758016328482794,
          -3.8682916880178557,
          -2.755366611633324,
          -3.3992928980439108,
          -3.5251744278352715,
          -3.7696726640554927,
          -1.7139310798546632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5802078876560617,
          -3.759214431234244,
          -3.6033248398913864,
          -7,
          -3.7100326990657537,
          -2.4493115793910456,
          -3.3103392197987525,
          -1.9072564622406847,
          -3.4697729403826645,
          -2.7327956982893293,
          -2.318957251879195,
          -3.343802333161655,
          -2.7206680684158506,
          -2.760559549696057,
          -2.9755630946293388,
          -3.1217473836406597,
          -7,
          -3.1380318847204434,
          -7,
          -4.144325078400488,
          -2.2369149636275054,
          -4.1301085203609365,
          -7,
          -1.4620131312611186,
          -3.7350397050337207,
          -7,
          -1.4071338845344867,
          -2.043395584089776,
          -1.587734841127766,
          -2.385755183074108,
          -2.6226284261293253,
          -2.816783452824119,
          -7,
          -2.7899917812740584,
          -3.2382343402834737,
          -1.8412490238433403,
          -7,
          -3.7351995484223135,
          -7,
          -7,
          -7,
          -3.765594055319445,
          -3.743666521446213,
          -7,
          -2.97236816423355,
          -3.9455670534423883,
          -3.967196842000648,
          -3.734731507480199,
          -7,
          -3.761927838420529,
          -7,
          -3.198931869932209,
          -3.736794754924361,
          -7,
          -2.3584261304034126,
          -3.8258802989361795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7445276734725663,
          -3.3518606992882605,
          -2.0088966805430557,
          -7,
          -7,
          -7,
          -2.907411360774586,
          -1.9255330877635497,
          -2.1571839446097067,
          -7,
          -7,
          -2.1221485231691317,
          -3.5358002908248976,
          -2.8662085483579443,
          -3.1587393203027556,
          -3.1318751879725926,
          -7,
          -7,
          -2.537665967793588,
          -3.1488493429592204,
          -2.4632799957617206,
          -7,
          -3.1486874696646585,
          -7,
          -7,
          -3.758003009299799,
          -2.1828543360486603,
          -7,
          -3.3717757087299467,
          -3.2298950557747066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5946687312953243,
          -7,
          -7,
          -3.7570922201189325,
          -7,
          -3.7545776560447304,
          -1.435209888081237,
          -3.7346398389876994,
          -3.156791368003929,
          -2.8982087790531406,
          -3.32688180000995,
          -1.3998254718868253,
          -1.2117962582834239,
          -2.988401009650151,
          -3.1527298904473486,
          -7,
          -2.7934142558243362,
          -2.964338214198132,
          -7,
          -3.2481695133068103,
          -2.9339931638312424,
          -2.6981316277119274,
          -2.7077298138434953,
          -3.1999118208915673,
          -7,
          -2.2833012287035497,
          -3.385725405263276,
          -3.917702074031228,
          -3.792811771248147,
          -7,
          -7,
          -7,
          -3.5514499979728753,
          -3.6596785560245753,
          -7,
          -7,
          -7,
          -7,
          -3.151308548182018,
          -7,
          -3.6986658917468582,
          -3.7795964912578244,
          -3.4956830676169153,
          -3.006513581462448,
          -7,
          -3.408742957890499,
          -3.865991800126275,
          -3.9238441992488444,
          -3.7802452838653524,
          -3.0940050223646494,
          -3.079201130870865,
          -2.997426102215431,
          -7,
          -3.012133913649598,
          -7,
          -3.9259821003271034,
          -2.867113779831977,
          -3.1653291327027926,
          -3.5499224041295117,
          -7,
          -7,
          -3.396780343144799,
          -7,
          -7,
          -3.7825442840100103,
          -7,
          -3.7610252517113727,
          -2.5184783696676294,
          -7,
          -7,
          -3.1993437186893927,
          -3.6929553268990984,
          -7,
          -3.6624272644527265,
          -4.752716670115188,
          -2.5848352855479284,
          -3.3988770730873177,
          -3.7396415570897896,
          -2.7131565574176917,
          -2.9833556143317885,
          -3.4744105358226856,
          -4.400106070428546,
          -4.457306491666998,
          -4.717936655596407,
          -2.713874964044091,
          -7,
          -4.115119364816148,
          -2.781922511200025,
          -7,
          -4.105612359686785,
          -3.9412131875853214,
          -4.618560575660246,
          -4.376175322717834,
          -3.4149065282950337,
          -7,
          -7,
          -4.703308577559542,
          -7,
          -7,
          -3.6329294614279912,
          -3.588226874130211,
          -3.9422396150016215,
          -3.637256175066493,
          -4.012119835804513,
          -3.839603729470837,
          -3.6305549918068194,
          -3.6201360549737576,
          -4.522939542252115,
          -7,
          -3.517318456171289,
          -7,
          -4.4131404376555805,
          -3.527730122124633,
          -3.4035323048494335,
          -3.978043493909963,
          -4.41982362360833,
          -7,
          -3.390201345934264,
          -3.055966089594232,
          -2.507693992654917,
          -2.5816485319957305,
          -3.2692119949493845,
          -2.8245789062256326,
          -3.8189513116401725,
          -3.731548476260331,
          -7,
          -3.7456992266025058,
          -7,
          -7,
          -3.9831750720378127,
          -3.79049627696711,
          -3.521517693337017,
          -3.0742475617285216,
          -4.7106478453622085,
          -3.7554937284151193,
          -2.7883451651521183,
          -2.9829492885744986,
          -3.7234191828331897,
          -7,
          -4.635632842395605,
          -2.8119872455616344,
          -3.5537819221196365,
          -7,
          -3.5690727925168053,
          -7,
          -3.3853347960853286,
          -7,
          -3.7272768587594616,
          -7,
          -2.684938712580087,
          -7,
          -7,
          -3.3139281203953006,
          -3.775018486890885,
          -7,
          -2.664205244538261,
          -7,
          -3.1701149694966517,
          -3.126207830557576,
          -4.3931187349197875,
          -7,
          -7,
          -7,
          -3.743901550485179,
          -4.0062092405376575,
          -3.073756261784487,
          -3.3831568450325724,
          -3.00455780640836,
          -7,
          -3.536747773889752,
          -2.2003064428510677,
          -3.568729599118429,
          -3.144885418287142,
          -7,
          -2.8464608251293324,
          -7,
          -1.8264516538547082,
          -3.3562649403160907,
          -7,
          -3.375114684692225,
          -3.485437481076301,
          -2.5920533256821177,
          -3.2034861742721255,
          -7,
          -7,
          -3.3408405498123317,
          -3.073131564940993,
          -2.575043441108574,
          -3.052822146939007,
          -3.443106456737266,
          -3.7315081835960253,
          -2.9271706808539353,
          -3.7415455167762093,
          -7,
          -4.346949230796109,
          -2.9316093963691396,
          -3.675477189270931,
          -7,
          -7,
          -2.771203913197322,
          -2.034785967937848,
          -2.6911920418198627,
          -7,
          -3.819478128362123,
          -3.181157317880606,
          -3.7385427409287852,
          -7,
          -3.868526886768204,
          -3.515873843711679,
          -3.9902944461284386,
          -7,
          -7,
          -7,
          -7,
          -3.8357539675193832,
          -3.0192053369187453,
          -4.314604473213435,
          -7,
          -3.0813473078041325,
          -3.3142360032351683,
          -7,
          -2.976189439230457,
          -7,
          -3.2722285058778144,
          -3.6316466629584196,
          -3.550411819008074,
          -2.3018772792906352,
          -3.418135498425232,
          -7,
          -3.5177235948337353,
          -7,
          -4.08019341942848,
          -3.7692295817365937,
          -3.560305243220961,
          -2.6459510217186626,
          -3.250420002308894,
          -3.0989896394011773,
          -3.810434155922673,
          -7,
          -3.048092051812372,
          -2.6511865508463828,
          -1.9779667032419643,
          -7,
          -1.5472866808111132,
          -2.5936736569452488,
          -3.3184390042001923,
          -3.805296916157985,
          -2.5416347058561004,
          -3.5034274846401083,
          -2.965000000666886,
          -7,
          -3.7401257369657306,
          -7,
          -4.144106973049323,
          -3.8948696567452528,
          -7,
          -7,
          -2.3106368275692746,
          -3.373341178041854,
          -2.9662758570396366,
          -3.2416872093953355,
          -2.8329192912697265,
          -3.287633800116223,
          -7,
          -2.983883913993666,
          -7,
          -3.0683250363930514,
          -2.1505044159392837,
          -7,
          -7,
          -3.8303319934519617,
          -7,
          -2.7486413997448866,
          -3.4820155764507117,
          -7,
          -7,
          -7,
          -7,
          -3.7405205860536648,
          -3.749040268703457,
          -3.098682174268404,
          -2.3287740580361573,
          -3.542514216281654,
          -3.766040860381389,
          -7,
          -7,
          -7,
          -3.4802944600030066,
          -3.7692295817365937,
          -3.5693739096150456,
          -3.8208579894396997,
          -3.045591884218734,
          -2.6496998632008384,
          -7,
          -7,
          -7,
          -3.6227837254272086,
          -7,
          -7,
          -3.0428140768022023,
          -7,
          -7,
          -3.2213620672035708,
          -7,
          -2.644206811219827,
          -7,
          -7,
          -3.859018143888894,
          -3.7393349601960795,
          -2.799570274125377,
          -3.3427515672308834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.132625565274591,
          -2.509202522331103,
          -7,
          -7,
          -3.727934167254398,
          -7,
          -7,
          -7,
          -7,
          -4.217325990227112,
          -2.875350696579289,
          -7,
          -7,
          -7,
          -7,
          -4.041609778130455,
          -7,
          -7,
          -3.207005670893413,
          -4.140717492997341,
          -7,
          -7,
          -7,
          -3.0565237240791006,
          -3.1986570869544226,
          -7,
          -4.389939444053016,
          -7,
          -7,
          -7,
          -7,
          -3.343014497150768,
          -7,
          -7,
          -7,
          -2.916278440573439,
          -7,
          -4.363815605606467,
          -7,
          -7,
          -3.3712526291249394,
          -3.171433900943008,
          -3.660675788338524,
          -7,
          -7,
          -7,
          -7,
          -2.5100979751883425,
          -3.8680403122108182,
          -7,
          -3.915030290259161,
          -3.807467375684278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590395947184013,
          -4.45374630677039,
          -7,
          -7,
          -3.4348881208673157,
          -7,
          -3.748498126613737,
          -3.1746411926604483,
          -7,
          -7,
          -5.126069685635017,
          -7,
          -2.1558716525157724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.452736852686558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3802112417116064,
          -7,
          -7,
          -7,
          -3.348791467560584,
          -4.381764682017124,
          -7,
          -2.476155081947642,
          -2.5737416415203174,
          -7,
          -2.9725766394194153,
          -2.076872040931254,
          -2.4885507165004443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3447024471171045,
          -7,
          -7,
          -3.04796676354869,
          -3.1997551772534747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.037067758042558,
          -3.443654067612905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9375178920173464,
          -3.1981069988734014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8452097013823283,
          -7,
          -7,
          -3.323870606540509,
          -7,
          -7,
          -7,
          -2.5728716022004803,
          -3.4302363534115106,
          -7,
          -7,
          -7,
          -2.975891136401793,
          -7,
          -2.8798104995449454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7273887392106926,
          -7,
          -7,
          -7,
          -3.4352071032407476,
          -2.6074279725546607,
          -2.517855418930029,
          -1.5649802815403844,
          -2.5631573474130365,
          -2.6263403673750423,
          -1.7804402596415618,
          -7,
          -7,
          -2.888179493918325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6358856852812727,
          -7,
          -2.911157608739977,
          -2.510870934786189,
          -7,
          -1.4071338845344867,
          -7,
          -2.6580113966571126,
          -1.4035242344113996,
          -2.2471546148811266,
          -3.15510820088631,
          -3.3845326154942486,
          -7,
          -3.4168068718229443,
          -4.058995093525416,
          -2.63233817685707,
          -7,
          -2.795880017344075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.921842481405858,
          -7,
          -7,
          -5.412104229422081,
          -7,
          -7,
          -7,
          -3.1818435879447726,
          -7,
          -7,
          -3.065206128054312,
          -7,
          -3.2692793897718984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9981998745389062,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -2.00108438129222,
          -1.5797835966168101,
          -7,
          -7,
          -2.999739345106568,
          -7,
          -3.0957271225559797,
          -3.527114111639805,
          -2.210853365314893,
          -7,
          -7,
          -3.7170668969538765,
          -7,
          -3.390038860415928,
          -7,
          -4.110530790384566,
          -7,
          -7,
          -7,
          -2.957998876560866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.485295438726089,
          -7,
          -7,
          -7,
          -3.215108581053093,
          -7,
          -1.601093818555942,
          -7,
          -7,
          -2.8577344348976292,
          -3.1936810295412816,
          -1.9363309201306227,
          -1.6917128259772847,
          -3.1681482627277147,
          -7,
          -7,
          -3.6879078003587713,
          -7,
          -7,
          -3.607669436688243,
          -7,
          -3.2652424686338004,
          -7,
          -7,
          -7,
          -3.547774705387823,
          -7,
          -5.22646650347807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.079946618441097,
          -7,
          -4.796220949422049,
          -7,
          -3.3274951622675926,
          -3.788846037218273,
          -3.4873505196555823,
          -7,
          -3.1367205671564067,
          -7,
          -3.559068334034537,
          -3.796851749049887,
          -3.735997884091794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0972573096934197,
          -7,
          -7,
          -3.249918186415877,
          -7,
          -7,
          -4.120025233114033,
          -7,
          -7,
          -7,
          -7,
          -3.7741335955563224,
          -7,
          -4.291468753334798,
          -3.7050764816562776,
          -7,
          -7,
          -4.307816826662431,
          -4.72029163965499,
          -7,
          -3.583028651429957,
          -7,
          -4.675200730890694,
          -4.321380918109828,
          -7,
          -7,
          -7,
          -5.388268205795572,
          -7,
          -4.233123078521081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.77552307067083,
          -7,
          -4.678773236017987,
          -4.326868159893682,
          -7,
          -7,
          -4.089233731365399,
          -3.8867162741164782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.367728546086976,
          -7,
          -3.671820560183249,
          -7,
          -7,
          -4.934879554137214,
          -7,
          -3.215240887065359,
          -4.44399792707814,
          -4.009210026465004,
          -4.381042842771909,
          -7,
          -4.439916624576895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.39029024855987,
          -4.232876161954841,
          -5.706576976429825,
          -7,
          -7,
          -7,
          -4.956341345177691,
          -7,
          -5.405669015189301,
          -3.781827152932428,
          -7,
          -7,
          -7,
          -7,
          -4.783982145180654,
          -7,
          -4.218614269745094,
          -7,
          -3.694901207906907,
          -7,
          -7,
          -4.342348647043824,
          -4.956792520370495,
          -7,
          -3.9860703793072267,
          -2.997386384397313,
          -7,
          -4.308777773664721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9943171526696366,
          -7,
          -3.7113853790984517,
          -7,
          -7,
          -3.1146698436863396,
          -7,
          -7,
          -7,
          -3.282319942414035,
          -7,
          -2.9052491234718767,
          -3.6315452278343097,
          -7,
          -7,
          -4.131875187972593,
          -3.052693941924968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7895807121644256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6477845207887927,
          -4.789086915088029,
          -7,
          -7,
          -3.945222316635341,
          -2.657374601115011,
          -2.885361220031512,
          -7,
          -3.252610340567373,
          -4.254837993329288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3098430047160705,
          -3.9933921374490025,
          -7,
          -7,
          -3.5615783683009608,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1979059063300923,
          -7,
          -7,
          -3.250420002308894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.813580988568192,
          -7,
          -7,
          -3.8047526021504607,
          -3.455859567203536,
          -2.3297028971532154,
          -7,
          -2.3366963890101053,
          -3.186532564592397,
          -7,
          -7,
          -2.924120174691022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.230027195569308,
          -7,
          -4.166163593747834,
          -4.247445412862625,
          -7,
          -3.4702634469650784,
          -7,
          -3.2893659515200318,
          -7,
          -7,
          -2.679337030520794,
          -7,
          -7,
          -3.291368850451583,
          -7,
          -3.6197018907049654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8130469651601078,
          -2.421368855425985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2576785748691846,
          -3.8125457211365865,
          -3.774443968924965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.199631780610535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1283992687178066,
          -7,
          -7,
          -7,
          -3.130333768495006,
          -3.1386184338994925,
          -2.7103994661168005,
          -2.137553986107054,
          -2.1077750894177876,
          -7,
          -7,
          -3.675495295123093,
          -7,
          -7,
          -7,
          -3.743169930945493,
          -2.3999280965143184,
          -2.743313739231126,
          -7,
          -7,
          -7,
          -7,
          -3.2770167642600043,
          -2.455707512181184,
          -3.111598524880394,
          -3.2671717284030137,
          -3.355111200797834,
          -7,
          -7,
          -7,
          -2.8739015978644615,
          -2.8834721588455867,
          -3.240798771117331,
          -3.7572149376681385,
          -7,
          -7,
          -7,
          -2.766164891363784,
          -2.7653704802916486,
          -7,
          -7,
          -7,
          -2.804548308388056,
          -7,
          -3.7461513812314826,
          -3.1866738674997452,
          -7,
          -3.1856837803185045,
          -2.739572344450092,
          -2.8197084098789618,
          -7,
          -7,
          -7,
          -3.049605612594973,
          -7,
          -2.9934149813944844,
          -7,
          -2.8039933118331355,
          -3.5523639817866846,
          -7,
          -2.814691432747457,
          -2.9627243931760243,
          -7,
          -3.3188977146274867,
          -7,
          -7,
          -3.2805783703680764,
          -3.362670929725667,
          -3.7654897346294343,
          -7,
          -7,
          -2.757142869659127,
          -7,
          -3.02201573981772,
          -3.0169498130975607,
          -7,
          -7,
          -3.3798524128035847,
          -3.1622656142980214,
          -7,
          -7,
          -7,
          -2.971224291252213,
          -7,
          -3.225567713439471,
          -7,
          -7,
          -3.2833012287035497,
          -3.1277525158329733,
          -3.343703931783211,
          -3.136879039875517,
          -7,
          -3.5604103496028143,
          -7,
          -3.755074101758472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295567099962479,
          -3.13481437032046,
          -7,
          -4.013847995871831,
          -7,
          -3.0415242696106493,
          -2.7772455264226195,
          -2.5363058723510337,
          -2.946417171927368,
          -2.5646660642520893,
          -7,
          -7,
          -2.673020907128896,
          -2.8199420294694213,
          -3.3119656603683665,
          -7,
          -7,
          -7,
          -3.1137762838370313,
          -7,
          -3.2957319906112623,
          -3.8070461905554698,
          -7,
          -7,
          -3.273926780100526,
          -3.719056385289504,
          -3.04688519083771,
          -3.5686709780098966,
          -3.695131297704026,
          -2.865991800126275,
          -3.281033367247727,
          -2.664140335902428,
          -2.986995539724382,
          -7,
          -3.1383026981662816,
          -4.384693833518213,
          -7,
          -7,
          -7,
          -3.1702617153949575,
          -7,
          -4.064794811195383,
          -2.6820061465959664,
          -3.7040646794085674,
          -3.759365621655929,
          -7,
          -7,
          -7,
          -3.1997551772534747,
          -7,
          -7,
          -3.4044916177586857,
          -7,
          -7,
          -7,
          -3.5528749737842267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.713994267660644,
          -3.23159700556491,
          -2.9146075677710805,
          -3.4412236742426123,
          -2.884692401766919,
          -2.3341185180336272,
          -3.2533380053261065,
          -3.2003613106134194,
          -3.230704313612569,
          -7,
          -7,
          -3.296665190261531,
          -3.2187979981117376,
          -7,
          -7,
          -3.9679689628786923,
          -7,
          -3.601625479553945,
          -7,
          -3.7901443650429005,
          -3.190325940803602,
          -7,
          -3.4526296516220176,
          -3.0750905299454705,
          -3.3830969299490943,
          -7,
          -7,
          -2.5947081713790734,
          -2.575187844927661,
          -2.3594905303901377,
          -7,
          -7,
          -7,
          -7,
          -3.9934362304976116,
          -2.4161864618375377,
          -7,
          -7,
          -1.897313835389292,
          -7,
          -2.043395584089776,
          -2.6580113966571126,
          -7,
          -2.612518962242537,
          -1.4683991586217664,
          -2.6309699808615576,
          -2.717670503002262,
          -7,
          -3.522313795156667,
          -7,
          -2.8628358311818536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.859738566197147,
          -2.9602328731285126,
          -3.9576551669434914,
          -2.9751559784066894,
          -7,
          -4.391486242306662,
          -7,
          -2.526339277389844,
          -2.7798368978412693,
          -7,
          -7,
          -7,
          -3.4834446480985353,
          -3.4158077276355434,
          -3.4111144185509046,
          -7,
          -3.113609151073028,
          -2.3222192947339195,
          -7,
          -3.119915410257991,
          -2.6863382970503276,
          -2.946615995262667,
          -3.515461715791736,
          -7,
          -7,
          -7,
          -7,
          -2.5877109650189114,
          -7,
          -7,
          -2.9883359558560505,
          -2.579402469359438,
          -3.4437322414015967,
          -7,
          -3.872272846224205,
          -7,
          -7,
          -7,
          -3.0109255813646993,
          -3.4712917110589387,
          -3.0131719315312613,
          -2.992995098431342,
          -3.375871360667503,
          -7,
          -2.9006401839826004,
          -3.2137832993353044,
          -2.3452920271477096,
          -7,
          -3.046841871852895,
          -3.308279770272725,
          -3.893040111957118,
          -2.9168047518661746,
          -7,
          -7,
          -3.369586890736344,
          -3.5769169559652068,
          -2.776095557782467,
          -7,
          -3.2105860249051563,
          -7,
          -2.900093901543398,
          -2.45838601110505,
          -7,
          -3.012274667007467,
          -2.6921508972009547,
          -2.8800510030033712,
          -2.6553785755318513,
          -2.354283100111711,
          -4.289674936630779,
          -3.4630464593144126,
          -7,
          -3.191343513169289,
          -3.1598678470925665,
          -7,
          -2.4201391886115573,
          -2.5409548089261325,
          -3.1515449513412155,
          -2.9130717403092508,
          -3,
          -3.151216578856456,
          -2.0407688481126254,
          -2.7261836614188204,
          -4.652883612256533,
          -3.4428976613092526,
          -7,
          -7,
          -3.1095785469043866,
          -7,
          -3.2253954427184883,
          -7,
          -7,
          -3.5407047833107623,
          -3.204933522354145,
          -3.1758016328482794,
          -7,
          -3.293657141449485,
          -3.285107029566812,
          -3.336859820916809,
          -3.2266858105546663,
          -7,
          -3.4471878582356688,
          -3.9258275746247424,
          -4.6453627332859915,
          -7,
          -3.2487699685205684,
          -3.340770374147969,
          -2.9906559275051268,
          -7,
          -2.6190933306267428,
          -3.188647295999717,
          -2.7912895457988998,
          -2.4989367896326486,
          -2.943847687009491,
          -3.00014474070519,
          -3.1470576710283598,
          -7,
          -3.5304558435846762,
          -3.2079035303860515,
          -7,
          -2.6908603082720437,
          -3.42422807069598,
          -2.620656479819621,
          -2.7734805897368733,
          -7,
          -7,
          -4.605003198204288,
          -7,
          -7,
          -7,
          -7,
          -4.389219260025098,
          -7,
          -7,
          -3.5427462308516486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8922393433956706,
          -7,
          -7,
          -4.148972634509205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7807204498661315,
          -4.184379080658596,
          -7,
          -4.341315794596473,
          -7,
          -7,
          -4.113909943754037,
          -3.925415237084246,
          -4.466066475658547,
          -7,
          -4.021199639291648,
          -3.0149403497929366,
          -4.201278747009084,
          -4.115092525350614,
          -7,
          -7,
          -7,
          -3.496929648073215,
          -4.158485625272292,
          -2.666680729097877,
          -1.8501447725143394,
          -3.4133759761516242,
          -3.551698604499414,
          -3.0750303788179263,
          -7,
          -4.150034573810802,
          -7,
          -3.1690863574870227,
          -7,
          -7,
          -7,
          -7,
          -3.9954596866210643,
          -4.25871473283981,
          -7,
          -2.7267272090265724,
          -2.981969534880924,
          -2.320405953970451,
          -3.8135238031731653,
          -7,
          -5.406892582351948,
          -3.3294656796081403,
          -3.939294559426453,
          -7,
          -7,
          -7,
          -4.010858016949204,
          -7,
          -3.9359856330811804,
          -3.8615941446438655,
          -3.1782600386264073,
          -4.19867083023323,
          -7,
          -3.9064770729424234,
          -4.115068196520122,
          -7,
          -3.503915138339147,
          -7,
          -7,
          -4.140256569677416,
          -4.314541329129881,
          -7,
          -3.137986732723532,
          -7,
          -7,
          -7,
          -3.226141456150439,
          -3.4998244958395794,
          -2.662461007332455,
          -7,
          -7,
          -2.571975972535329,
          -7,
          -2.226524092257544,
          -3.1953460583484197,
          -3.2083741645947104,
          -7,
          -2.9272676808108815,
          -2.919862253555538,
          -2.966610986681934,
          -3.4811558708280352,
          -7,
          -2.694312646223346,
          -2.9617374047008993,
          -7,
          -7,
          -3.13786028215286,
          -3.2631624649622166,
          -2.589726256254237,
          -2.4274861090957858,
          -3.1492191126553797,
          -7,
          -3.0929154916889843,
          -7,
          -7,
          -4.305017995761173,
          -3.7172577826630526,
          -4.493081452734428,
          -7,
          -3.2610248339923973,
          -2.4197263393238386,
          -7,
          -2.3452006933769454,
          -7,
          -3.3991543339582164,
          -2.7139103541289553,
          -7,
          -7,
          -3.2166935991697545,
          -2.6923180442592787,
          -7,
          -7,
          -3.116441697539312,
          -3.041195233696809,
          -2.9710437918360286,
          -2.9630003484681415,
          -2.9817362608522706,
          -4.218614269745094,
          -7,
          -2.7351995484223135,
          -2.714644048372074,
          -7,
          -3.269074926549013,
          -7,
          -7,
          -7,
          -2.3291071869258904,
          -2.8279565728594,
          -2.973474226991902,
          -3.204481744011206,
          -7,
          -7,
          -7,
          -3.2518814545525276,
          -3.532117116248804,
          -7,
          -2.576916955965207,
          -2.857935264719429,
          -7,
          -7,
          -2.8499719123288503,
          -2.8056007947586763,
          -1.8194550045531472,
          -3.2024883170600935,
          -2.11069425125296,
          -2.8790958795000727,
          -3.8010605298478555,
          -7,
          -2.666892211066536,
          -3.738304793074105,
          -3.074816440645175,
          -3.0461047872460387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.048504453322141,
          -7,
          -3.2834425776004537,
          -3.3263961084813074,
          -3.037824750588342,
          -2.5626496722119168,
          -7,
          -2.5786392099680726,
          -7,
          -2.721563318357481,
          -1.798691258386048,
          -7,
          -7,
          -2.949390006644913,
          -3.0330214446829107,
          -2.932220013877119,
          -2.9947569445876283,
          -7,
          -7,
          -3.129689892199301,
          -7,
          -7,
          -3.1815577738627865,
          -3.256116146654382,
          -3.4111144185509046,
          -3.46014581749175,
          -2.76317832728305,
          -7,
          -7,
          -7,
          -2.9894498176666917,
          -7,
          -3.5224442335063197,
          -3.101403350555331,
          -3.3585376152886144,
          -2.743313739231126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4687634306105437,
          -2.986995539724382,
          -7,
          -3.3261309567107946,
          -3.5531545481696254,
          -3.0580462303952816,
          -7,
          -7,
          -7,
          -7,
          -3.129125716306038,
          -2.9230712338729132,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8573324964312685,
          -7,
          -7,
          -3.7896132504920685,
          -7,
          -7,
          -7,
          -7,
          -3.212054364801163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.861892690391446,
          -7,
          -7,
          -3.190425084791854,
          -4.3414449991947865,
          -7,
          -7,
          -7,
          -3.3220124385824006,
          -7,
          -7,
          -4.564973629882831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.757965097861435,
          -7,
          -3.9108816790640555,
          -7,
          -7,
          -7,
          -7,
          -3.0405034457764253,
          -7,
          -2.768268016451548,
          -7,
          -7,
          -7,
          -3.794498771171323,
          -7,
          -3.205961823059634,
          -3.795045370421125,
          -7,
          -7,
          -3.4437322414015967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.450972329938457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.125481265700594,
          -2.4409090820652177,
          -2.073235854482803,
          -7,
          -7,
          -3.8773713458697743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5314610339601105,
          -7,
          -3.719331286983727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8182258936139557,
          -7,
          -7,
          -7,
          -7,
          -3.274942566083686,
          -7,
          -7,
          -7,
          -3.63205216670581,
          -3.475144341300952,
          -1.8855496750060046,
          -1.4894470934582955,
          -2.2141813086638207,
          -7,
          -3.343462306559093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.872709718287906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9701918541039056,
          -3.130655349022031,
          -7,
          -7,
          -3.0440386303689775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.284054558436069,
          -7,
          -7,
          -3.7304592600457687,
          -7,
          -3.6854730197227594,
          -7,
          -7,
          -7,
          -2.533390708017551,
          -2.666829861704301,
          -7,
          -7,
          -7,
          -7,
          -3.0191162904470725,
          -4.064857156977356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1838390370564214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8783666318941945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.224377652161807,
          -7,
          -4.280783177955887,
          -7,
          -3.244277120801843,
          -3.2258915002678767,
          -2.4537004733597723,
          -2.0078590547187516,
          -3.109240968588203,
          -7,
          -2.3300446322458757,
          -7,
          -3.270911639410481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8185924177996933,
          -7,
          -1.587734841127766,
          -1.4035242344113996,
          -2.612518962242537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0842186867392387,
          -7,
          -3.0750600841196736,
          -7,
          -2.3443922736851106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.712983710574959,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.551246628977399,
          -3.231979026831504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.749736315569061,
          -7,
          -3.3512064247307594,
          -7,
          -7,
          -7,
          -2.5282737771670436,
          -1.6795144180750814,
          -1.8011749533716115,
          -7,
          -7,
          -3.382197210377454,
          -7,
          -3.782472624166286,
          -3.816440167956139,
          -2.64957822912025,
          -7,
          -7,
          -3.537105174669567,
          -3.0126263509540503,
          -3.75592564737852,
          -3.029789470831856,
          -4.410068291238362,
          -7,
          -7,
          -7,
          -3.9923325590474645,
          -7,
          -7,
          -3.716504163773217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.157456768134226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.4080403355763634,
          -7,
          -7,
          -7,
          -3.140193678578631,
          -2.1295287738587763,
          -1.4273237863572472,
          -3.339156404282931,
          -7,
          -7,
          -3.5869022227332383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505421327583281,
          -7,
          -7,
          -3.223625716693796,
          -3.06126394230025,
          -5.351289849988622,
          -3.870579460552685,
          -7,
          -7,
          -7,
          -7,
          -3.617629297757842,
          -7,
          -7,
          -7,
          -7,
          -3.0209824429184193,
          -7,
          -7,
          -7,
          -7,
          -3.6191977157929474,
          -7,
          -7,
          -7,
          -5.574279034422683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3234583668494677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6449307079135873,
          -7,
          -3.071117980626713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6236627073562047,
          -7,
          -7,
          -7,
          -4.289455165670285,
          -3.518313626141043,
          -3.97648753730519,
          -7,
          -7,
          -7,
          -7,
          -3.7359409087579105,
          -7,
          -4.6735369590268805,
          -4.922533433518409,
          -7,
          -7,
          -7,
          -7,
          -4.273857435371117,
          -4.5318747110147335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.765016250940787,
          -3.885304667588968,
          -7,
          -7,
          -7,
          -4.934422695599237,
          -7,
          -3.491921712586151,
          -4.441160774035116,
          -4.263664468388576,
          -4.203295851245676,
          -7,
          -4.437052595060992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292570599354629,
          -4.78895984789585,
          -7,
          -7,
          -3.209783014848515,
          -7,
          -4.478330767958597,
          -7,
          -7,
          -3.47410694801697,
          -7,
          -7,
          -7,
          -7,
          -4.083660255881591,
          -3.6020599913279625,
          -7,
          -7,
          -3.36635153037522,
          -7,
          -7,
          -4.244534404270211,
          -4.955923350069222,
          -7,
          -4.092192169421503,
          -7,
          -3.590618948206578,
          -4.607894456964924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.468834530432752,
          -3.3544926005894364,
          -3.484299839346786,
          -7,
          -7,
          -2.8639173769578603,
          -7,
          -2.998912904358786,
          -7,
          -3.2684219472783616,
          -7,
          -2.957364336755806,
          -7,
          -7,
          -7,
          -7,
          -2.537609240282091,
          -7,
          -7,
          -7,
          -3.7764832558336816,
          -7,
          -7,
          -3.254064452914338,
          -7,
          -7,
          -3.4090027034017725,
          -7,
          -7,
          -7,
          -3.6171751426857073,
          -7,
          -7,
          -7,
          -3.15755749745902,
          -7,
          -2.8589881003426956,
          -7,
          -7,
          -3.949365607393135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.985336641735613,
          -7,
          -7,
          -3.2381716036301467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3251049829714074,
          -3.293802406018653,
          -3.1565491513317814,
          -3.592065670432247,
          -3.2038484637462346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.500167838795168,
          -7,
          -7,
          -3.013399054643686,
          -3.152685756036786,
          -2.1476230267651895,
          -7,
          -2.4571679344887163,
          -7,
          -7,
          -7,
          -2.5379814936848337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0232781872177306,
          -3.322219294733919,
          -3.8596785766284483,
          -4.245216456947668,
          -7,
          -3.442793225939769,
          -7,
          -3.24699069924155,
          -7,
          -7,
          -2.298378385705651,
          -7,
          -7,
          -7,
          -7,
          -3.31530545711496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3233896221747057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.107549129744687,
          -3.459844642388208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021023822031585,
          -7,
          -7,
          -7,
          -7,
          -3.1024337056813365,
          -7,
          -7,
          -7,
          -7,
          -3.351216345339342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.792391689498254,
          -7,
          -2.797959643737196,
          -2.498861688992884,
          -2.9003671286564705,
          -7,
          -4.205060838940893,
          -7,
          -7,
          -7,
          -4.200166246363107,
          -2.7835859964564595,
          -2.86421433046133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.895919545310016,
          -7,
          -3.37984917876283,
          -3.779563909804499,
          -7,
          -2.960470777534299,
          -7,
          -2.5705429398818973,
          -2.584331224367531,
          -7,
          -4.86686011175598,
          -7,
          -7,
          -7,
          -7,
          -3.3354579006893843,
          -7,
          -7,
          -7,
          -2.909556029241175,
          -7,
          -4.442884086131316,
          -7,
          -7,
          -7,
          -7,
          -3.6570558528571038,
          -7,
          -7,
          -7,
          -3.17260293120986,
          -7,
          -3.795264888190909,
          -7,
          -3.611882555512116,
          -7,
          -7,
          -2.7795964912578244,
          -2.8625785677670708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.152104800892868,
          -7,
          -7,
          -3.4287825114969546,
          -7,
          -7,
          -3.6484575942825224,
          -7,
          -7,
          -3.7640753714025683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5150786750759226,
          -7,
          -7,
          -7,
          -4.531826213727618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.783903579272735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1687920203141817,
          -3.681964458994683,
          -7,
          -2.936513742478893,
          -2.864807629026147,
          -7,
          -2.7735545596377755,
          -7,
          -7,
          -7,
          -3.5639554649958125,
          -7,
          -7,
          -4.177940307008608,
          -4.278532587883768,
          -7,
          -7,
          -7,
          -3.848413466516796,
          -7,
          -7,
          -3.6232492903979003,
          -7,
          -7,
          -3.4577954183422484,
          -2.7957410208692437,
          -7,
          -2.791690649020118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.264424262056547,
          -3.8580256078495063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8364507137201547,
          -7,
          -7,
          -2.5962304476672386,
          -4.242752561356358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.786751422145561,
          -7,
          -3.404149249209695,
          -7,
          -7,
          -3.268577971882843,
          -7,
          -3.7281668826085177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9311017456326387,
          -7,
          -7,
          -7,
          -7,
          -3.646021029432817,
          -7,
          -7,
          -3.6026025204202563,
          -7,
          -3.400537989391946,
          -7,
          -3.0015173768235046,
          -3.1789769472931693,
          -2.772566173085639,
          -7,
          -7,
          -3.679700380871964,
          -7,
          -7,
          -3.328787200354535,
          -7,
          -7,
          -2.22396003039246,
          -2.7671558660821804,
          -2.385755183074108,
          -2.2471546148811266,
          -1.4683991586217664,
          -7,
          -7,
          -3.453547660380749,
          -3.377670439334323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.029789470831856,
          -3.919862253555538,
          -3.5992278627737964,
          -7,
          -5.412072280982084,
          -7,
          -2.667452952889954,
          -3.0232524596337114,
          -7,
          -7,
          -7,
          -3.3594560201209864,
          -3.266936911159173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165155261392066,
          -2.7558748556724915,
          -2.786041210242554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7748817658187965,
          -2.6149850498855733,
          -7,
          -3.7926017811649664,
          -7,
          -7,
          -7,
          -7,
          -3.619322944883176,
          -7,
          -3.3895584181453198,
          -7,
          -4.013283938717773,
          -7,
          -2.92272545799326,
          -7,
          -2.415588309411352,
          -7,
          -3.1221222197687104,
          -3.427080188436359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4528593357958526,
          -7,
          -7,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -7,
          -3.458788881710845,
          -3.1829849670035815,
          -3.157456768134226,
          -2.9417598138146954,
          -7,
          -3.900967623919124,
          -7,
          -3.1747752479599702,
          -2.8382192219076257,
          -7,
          -2.7571790442859356,
          -3.3092041796704077,
          -7,
          -3.2231063809285874,
          -3.495127881242933,
          -7,
          -2.940267391446012,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.632356046239073,
          -7,
          -7,
          -2.7338390006971496,
          -7,
          -2.650501794878367,
          -2.978180516937414,
          -3.410355383434471,
          -7,
          -7,
          -7,
          -7,
          -3.711644564032507,
          -3.912647106218317,
          -4.875382522457109,
          -7,
          -3.50112775752298,
          -3.27062477467715,
          -2.784545974054523,
          -7,
          -7,
          -7,
          -3.554489160003819,
          -2.6785884095944708,
          -2.7315081835960253,
          -3.351989455435632,
          -2.8109042806687006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.124300397693026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.403966542231021,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.589450639051082,
          -7,
          -7,
          -4.331305798553269,
          -7,
          -4.758687373229256,
          -7,
          -2.9086190397042477,
          -4.443403816887126,
          -4.662309143723654,
          -3.7273604892915437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.375444125505117,
          -7,
          -7,
          -4.9922087730059355,
          -7,
          -7,
          -7,
          -7,
          -2.9689496809813427,
          -4.9561588220840775,
          -7,
          -5.405604162002902,
          -4.081563320980385,
          -7,
          -7,
          -7,
          -7,
          -4.48266638715213,
          -7,
          -7,
          -7,
          -3.7227326146105697,
          -7,
          -7,
          -4.643210786071658,
          -7,
          -7,
          -4.117298596651012,
          -7,
          -7,
          -7,
          -4.298328988073496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3811150807098507,
          -3.4091155877956507,
          -7,
          -7,
          -3.198362483563655,
          -7,
          -3.330413773349191,
          -7,
          -3.4556821645007902,
          -7,
          -3.5426387273151625,
          -3.3264382767957286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5069557791831683,
          -3.2400497721126476,
          -7,
          -4.017325554561722,
          -7,
          -7,
          -7,
          -7,
          -4.788818618509576,
          -7,
          -7,
          -3.3409891196804447,
          -7,
          -3.1815577738627865,
          -7,
          -3.243286146083446,
          -3.9528408566757016,
          -7,
          -7,
          -7,
          -3.2340108175871793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9917132757130895,
          -7,
          -7,
          -3.255754786643044,
          -7,
          -7,
          -4.14992695911359,
          -7,
          -7,
          -7,
          -7,
          -3.294081724603141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7821858664920165,
          -2.968015713993642,
          -3.056142262059052,
          -7,
          -3.2081725266671217,
          -7,
          -3.8021577531869615,
          -3.5524451317812034,
          -2.092493594974741,
          -7,
          -2.6160573404936036,
          -3.4824447919182653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.230001623262765,
          -7,
          -7,
          -3.8489646100863593,
          -3.3715296320992945,
          -3.464638559095033,
          -7,
          -2.500373714353374,
          -7,
          -7,
          -2.498861688992884,
          -7,
          -7,
          -3.282848602834645,
          -7,
          -3.7952019889525492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3281756614383227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.112370365525832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.199110385681477,
          -7,
          -7,
          -7,
          -7,
          -3.4276483711869328,
          -7,
          -7,
          -7,
          -7,
          -3.666049738480516,
          -7,
          -7,
          -7,
          -3.743666521446213,
          -3.419625360887743,
          -3.719911064198339,
          -7,
          -3.4344890631511897,
          -2.7001043686887627,
          -2.890979596989689,
          -2.8901814080462,
          -3.456973013635818,
          -3.0995752157529437,
          -7,
          -7,
          -7,
          -3.010087846998524,
          -2.7789983320136287,
          -7,
          -2.396881306642151,
          -7,
          -7,
          -7,
          -2.905779531688919,
          -2.920610242554322,
          -7,
          -2.4674693607397176,
          -2.7289053858471353,
          -2.8727388274726686,
          -3.045948538105334,
          -7,
          -2.3879615590823304,
          -2.6440867345657413,
          -3.7511250715355837,
          -2.294718581133095,
          -2.733999286538387,
          -3.2520435349731076,
          -2.2487903775753857,
          -3.752202153176521,
          -2.1463864673918462,
          -7,
          -3.2933072974453994,
          -7,
          -2.808210972924222,
          -7,
          -2.9047216220895655,
          -7,
          -3.4546162237926987,
          -3.8429834701222174,
          -2.420386311461478,
          -2.6829996132339535,
          -3.7460890430562004,
          -2.93007534541053,
          -2.0699551096954005,
          -3.0093800657435907,
          -3.3399811495372607,
          -2.573309383699704,
          -3.1811000797280484,
          -2.6595087306276968,
          -2.786120180054919,
          -3.752893154884594,
          -3.767823498007517,
          -2.878291949249796,
          -3.1684238181031454,
          -3.475598557756169,
          -3.300233058364546,
          -7,
          -3.2863816107479344,
          -2.9289588408808296,
          -2.3275181575643944,
          -3.7331972651065697,
          -3.7264826967848297,
          -2.864451747158183,
          -7,
          -3.3100982718561998,
          -0.9118469463399004,
          -7,
          -7,
          -3.2212162075895296,
          -7,
          -7,
          -7,
          -7,
          -2.4863596256881286,
          -7,
          -3.04688519083771,
          -7,
          -3.8801845528264334,
          -7,
          -3.597969275225808,
          -2.639066881040868,
          -2.589621112934052,
          -3.8133808067338557,
          -2.8539349680493045,
          -3.1387236281550397,
          -3.1835545336188615,
          -7,
          -7,
          -7,
          -7,
          -2.4083005490438167,
          -2.704856768911651,
          -7,
          -2.9752939153562066,
          -3.7687860469080143,
          -7,
          -7,
          -2.9759829437125465,
          -7,
          -2.856366323659248,
          -3.498034723687027,
          -2.8779469516291885,
          -3.156291648012853,
          -3.4577305482459986,
          -3.4405155211122285,
          -7,
          -3.194097885578952,
          -2.598025573527527,
          -3.7743709598499167,
          -7,
          -2.842359573330675,
          -2.555935188309782,
          -2.541723216923833,
          -7,
          -2.7883230698362023,
          -3.176430088393643,
          -3.4570488265856314,
          -3.467275043461977,
          -3.159115821827769,
          -3.342162194035208,
          -3.787247880331954,
          -2.516621586200183,
          -3.947090464219622,
          -3.2523675144598987,
          -7,
          -2.328875757782688,
          -2.810848340115792,
          -7,
          -7,
          -2.468782495260093,
          -7,
          -7,
          -3.4195427247002796,
          -7,
          -7,
          -2.586249638866042,
          -2.8020036235559296,
          -2.6766936096248664,
          -2.681467373533731,
          -7,
          -4.092860943338818,
          -3.723044991643445,
          -3.4376713047707286,
          -3.791901080009571,
          -4.209273672784876,
          -3.157645616457375,
          -7,
          -7,
          -3.2890684385904976,
          -3.6948025606647104,
          -7,
          -7,
          -3.526403899736798,
          -3.3223571441183184,
          -3.429752280002408,
          -7,
          -2.2514354212468133,
          -2.8212156788067166,
          -3.5555176491927667,
          -2.977527638759884,
          -3.188154778916017,
          -3.8135142715418833,
          -3.7550359337677714,
          -2.793637716114076,
          -7,
          -7,
          -7,
          -3.2917387461232948,
          -3.443262987458695,
          -7,
          -7,
          -3.078061165597835,
          -7,
          -3.034938217958906,
          -7,
          -3.4004948168205202,
          -2.8535735203743147,
          -7,
          -3.503609121816283,
          -2.7317901537745826,
          -7,
          -2.9001849963485364,
          -3.8082109729242224,
          -2.314393957221963,
          -2.508494279379125,
          -2.807264355276107,
          -3.054421524462536,
          -7,
          -3.372451701409366,
          -7,
          -3.837114748515506,
          -2.9856830355921042,
          -3.9508352475190938,
          -7,
          -2.3433692002275315,
          -7,
          -2.6226284261293253,
          -3.15510820088631,
          -2.6309699808615576,
          -7,
          -3.453547660380749,
          -7,
          -0.2463085280453339,
          -7,
          -3.1594468733874694,
          -3.6614498334507024,
          -2.518075036877517,
          -7,
          -7,
          -3.7440581658788354,
          -7,
          -3.034548247098469,
          -2.572561834368586,
          -3.2506639194632436,
          -2.6419315033656545,
          -2.2387240528167367,
          -2.535496659154243,
          -2.213122731599993,
          -3.53490326577492,
          -7,
          -7,
          -3.2790582621241464,
          -7,
          -2.765420173578722,
          -7,
          -2.1635293082741804,
          -3.8130469651601078,
          -3.333783025949038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5113447333185333,
          -3.7179200258369938,
          -3.721315880605899,
          -7,
          -7,
          -3.7664128471123997,
          -7,
          -7,
          -7,
          -1.8339981365637825,
          -3.52329112918679,
          -7,
          -2.9749336544629608,
          -3.5175257836338214,
          -7,
          -7,
          -2.5402780373978247,
          -3.8361341494653747,
          -2.918052655796212,
          -3.1659117300536566,
          -3.1930008501040437,
          -7,
          -7,
          -7,
          -2.368946360360289,
          -3.4106928961632534,
          -2.3409789022165466,
          -2.1304659536982493,
          -7,
          -2.9587685942707274,
          -3.4636690681343865,
          -7,
          -3.4939457483871506,
          -2.929759415329462,
          -2.668618844816744,
          -7,
          -7,
          -7,
          -7,
          -3.2103854115447934,
          -7,
          -3.5431364147862197,
          -2.976382734932082,
          -2.533108010216257,
          -3.8767372971406644,
          -3.329058719264225,
          -3.493560280573793,
          -2.496098992132571,
          -7,
          -1.76119816931531,
          -2.823474229170301,
          -7,
          -1.8694890489332097,
          -2.3594429293014985,
          -2.8174079537467183,
          -3.3005954838899636,
          -1.80976494807886,
          -2.0649831337672087,
          -2.678732554599579,
          -3.8513195126487454,
          -4.067993823502085,
          -2.830553028417437,
          -7,
          -7,
          -7,
          -3.0658285940945165,
          -3.1727974640157566,
          -2.2663885100087673,
          -7,
          -2.484537093918053,
          -3.2629254693318317,
          -2.93468778256179,
          -7,
          -3.291901400465467,
          -3.065729059462349,
          -2.4580259891314333,
          -3.4748473297732483,
          -3.7652959296980564,
          -3.144115472711366,
          -2.907903783576497,
          -3.9589045217065673,
          -7,
          -3.4389377010955284,
          -2.194455937161718,
          -2.256252854237207,
          -7,
          -2.451932564220791,
          -7,
          -3.0700906651588995,
          -2.06547416845862,
          -2.468260428064313,
          -2.993121181893369,
          -3.246826721711981,
          -7,
          -7,
          -7,
          -3.4606723718774317,
          -7,
          -2.6838524719712984,
          -7,
          -2.784545974054523,
          -7,
          -7,
          -3.8668679796590735,
          -7,
          -7,
          -7,
          -4.751217497559819,
          -3.7542259820035175,
          -7,
          -4.038818787373656,
          -3.906803568389256,
          -4.154393537956997,
          -3.94215692846749,
          -7,
          -4.756871825857871,
          -4.7171252127617045,
          -3.2519625023239493,
          -7,
          -4.238447577141119,
          -3.6455254266003556,
          -7,
          -3.926153731092024,
          -7,
          -4.697405466651352,
          -7,
          -4.111967837206073,
          -3.3399976925134327,
          -7,
          -7,
          -7,
          -7,
          -3.693787808102676,
          -7,
          -4.7188586102814725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3027204498961344,
          -3.758628070702716,
          -3.4747260421801167,
          -7,
          -3.65203492789085,
          -3.493771633610371,
          -3.969042967305813,
          -3.1856088078847637,
          -7,
          -3.4836954821069357,
          -3.210140091523844,
          -3.2952371307315342,
          -3.431229701962552,
          -3.3216344468426913,
          -2.478475272065988,
          -3.805908455074197,
          -4.507207993183979,
          -4.057475915826254,
          -3.730216840568694,
          -3.7405205860536648,
          -3.411481958597725,
          -7,
          -7,
          -3.0525079069210648,
          -3.746319983424443,
          -4.710482932879111,
          -3.4391747398434687,
          -2.281714970027296,
          -3.7469454096151047,
          -3.635342066205612,
          -3.7319914490189294,
          -4.936346158266162,
          -3.9221283467963626,
          -4.328175661438323,
          -7,
          -7,
          -2.910911595998181,
          -3.9705726665984176,
          -3.944285220688753,
          -3.5471180513494303,
          -3.7468676278504294,
          -3.5255682376605524,
          -3.508590926001464,
          -3.7670816213633223,
          -2.970083775646671,
          -4.279379448150558,
          -3.9243309847086785,
          -3.45886342278972,
          -7,
          -3.939119717648487,
          -3.2943032512870527,
          -3.3101089047316647,
          -7,
          -3.7218930162149575,
          -7,
          -3.7283537820212285,
          -7,
          -2.953670693054014,
          -2.5677072241765035,
          -2.732437230568403,
          -3.735758537443739,
          -3.524266268766979,
          -2.870436420869347,
          -3.8582965245338854,
          -2.8309092995464433,
          -2.782074298464784,
          -2.9355072658247128,
          -7,
          -2.7824338841919594,
          -2.834078180834267,
          -2.5533519651097434,
          -2.374495518477478,
          -4.259187582942805,
          -3.359898693821246,
          -2.892975289811869,
          -3.7782236267660965,
          -7,
          -2.855115160771781,
          -7,
          -3.1645758949823053,
          -2.5378190950732744,
          -2.415565653474683,
          -7,
          -3.3993852495462185,
          -7,
          -2.8290624310732704,
          -3.604500960302884,
          -3.2412165693415527,
          -3.565001221278613,
          -7,
          -2.532928015757083,
          -2.4347643707610316,
          -3.4756711883244296,
          -2.3508748293464587,
          -7,
          -2.9024108711664565,
          -2.104272447338898,
          -3.4216039268698313,
          -3.131779009369187,
          -2.7092093687913024,
          -2.8998888683433184,
          -3.135904649927143,
          -3.2769976395057503,
          -3.114344054609816,
          -3.006323393378873,
          -2.6130863955560057,
          -2.742594221135839,
          -2.903993825990188,
          -3.532117116248804,
          -7,
          -2.7393613426327974,
          -2.41161970596323,
          -3.8327643049405316,
          -3.574447990435435,
          -7,
          -3.4331295175804857,
          -3.2567520979238687,
          -2.3038310838268075,
          -2.3161806776496223,
          -3.2821687783046416,
          -3.240399465738641,
          -2.7630875039477676,
          -3.759365621655929,
          -7,
          -2.673711908836969,
          -3.4274455340986147,
          -3.7467898321526123,
          -2.476302246967727,
          -2.8691143269793753,
          -2.716420733846555,
          -7,
          -2.607732946282463,
          -2.711174300366762,
          -2.098792008234216,
          -2.1034305088316687,
          -2.6399580644294924,
          -2.2375894317072182,
          -2.2337272822600673,
          -2.5591317907861515,
          -2.889777764467921,
          -3.272445019048976,
          -3.496445291873353,
          -3.0874264570362855,
          -2.5460488664017342,
          -3.240466042135798,
          -4.1410576338867795,
          -3.5828017176654714,
          -3.2956403924243696,
          -3.5805828768143675,
          -3.5073835557363866,
          -3.8385972528166565,
          -3.4396484295634737,
          -3.522357278959648,
          -1.6582293734253237,
          -2.836439206334669,
          -3.7564078725489582,
          -2.4159077455568165,
          -7,
          -2.0413926851582254,
          -2.6932639977211865,
          -3.983581186705791,
          -3.2427898094786767,
          -2.70209898861516,
          -2.4784943476608086,
          -2.5661722381854584,
          -2.5361869649319937,
          -7,
          -7,
          -3.7197454925295768,
          -3.126780577012009,
          -7,
          -3.733678655677088,
          -3.568710059628092,
          -2.3301431005564446,
          -2.092122568184241,
          -3.751279103983342,
          -3.281866292147957,
          -7,
          -7,
          -3.1647245241698965,
          -7,
          -3.25653735366673,
          -3.5067079263501197,
          -3.4672627029211815,
          -3.546542663478131,
          -3.968062460076449,
          -7,
          -3.4190465771041594,
          -3.612571954065176,
          -7,
          -7,
          -3.4455323537437947,
          -3.288994028501752,
          -3.7637274037656985,
          -3.6093275616088962,
          -3.3960248966085933,
          -3.5639554649958125,
          -7,
          -3.7328760413627067,
          -7,
          -7,
          -3.268577971882843,
          -3.329736774799155,
          -3.775173385424787,
          -7,
          -3.350829273582968,
          -2.9905608299940196,
          -7,
          -7,
          -7,
          -3.0331555896976927,
          -2.8652520716525895,
          -3.0308020487722676,
          -7,
          -3.3571265672692596,
          -7,
          -7,
          -7,
          -3.2353011403199905,
          -3.0458117739782704,
          -7,
          -2.4890791624977924,
          -7,
          -7,
          -7,
          -3.522574632691177,
          -3.11920874228968,
          -7,
          -2.8336428415015997,
          -3.1321227382746497,
          -2.9508514588885464,
          -2.6549462265843444,
          -7,
          -2.4739733021220007,
          -2.8588378514285857,
          -7,
          -2.820399103879156,
          -3.1272668183188985,
          -3.31492005599242,
          -2.166260913692354,
          -7,
          -2.21923513401367,
          -7,
          -3.358315640082196,
          -7,
          -2.9763499790032735,
          -7,
          -3.226512947551635,
          -7,
          -3.0788191830988487,
          -7,
          -2.600194729411715,
          -2.8662873390841948,
          -7,
          -3.4268364538035083,
          -2.085797394401143,
          -2.975891136401793,
          -3.514282047860378,
          -2.9913684958630995,
          -3.331832044436249,
          -3.2008960765643213,
          -3.4111144185509046,
          -7,
          -3.4082399653118496,
          -3.028266163475984,
          -3.4153072922255676,
          -7,
          -3.1290450598879582,
          -7,
          -3.097604328874411,
          -3.1142772965615864,
          -2.6139885578581064,
          -7,
          -3.307067950661298,
          -3.3049211619008916,
          -7,
          -7,
          -1.1258855686751243,
          -7,
          -7,
          -3.561890702670256,
          -7,
          -7,
          -7,
          -7,
          -2.8409260187596415,
          -7,
          -3.0563330349511615,
          -7,
          -7,
          -7,
          -3.665393350279712,
          -3.000434077479319,
          -2.618962813876879,
          -7,
          -3.2893355334158763,
          -3.395064164331242,
          -3.777318053891376,
          -7,
          -7,
          -7,
          -7,
          -2.5917322389518356,
          -2.824044436768545,
          -7,
          -3.290563237915255,
          -7,
          -7,
          -7,
          -3.7371926427047373,
          -7,
          -3.29014595464781,
          -7,
          -3.062581984228163,
          -3.501538502649975,
          -3.3875677794171883,
          -3.3459615418131414,
          -7,
          -7,
          -3.1318380689302905,
          -7,
          -7,
          -2.865340905624584,
          -2.6989700043360187,
          -2.5853855204890204,
          -7,
          -3.3118597736235036,
          -3.7243429081714807,
          -7,
          -3.4489123419591823,
          -7,
          -3.8865210943541246,
          -7,
          -2.39997895364675,
          -3.744605875414239,
          -7,
          -7,
          -2.657503390420801,
          -2.8727388274726686,
          -7,
          -7,
          -3.014257950635828,
          -7,
          -7,
          -3.291812687467119,
          -7,
          -7,
          -3.0859680770460742,
          -3.0583627485070277,
          -2.966748906109529,
          -3.1998922435263193,
          -7,
          -7,
          -3.2979792441593623,
          -7,
          -7,
          -4.110320296840297,
          -3.613524702853652,
          -7,
          -7,
          -3.103803720955957,
          -4.259247356190061,
          -7,
          -7,
          -3.5345337560051155,
          -3.176814480674777,
          -7,
          -7,
          -2.4602142372606046,
          -3.0003255987771427,
          -3.5899496013257077,
          -3.526339277389844,
          -3.354444598988735,
          -7,
          -3.3783979009481375,
          -3.3175356918146464,
          -7,
          -7,
          -7,
          -3.4112829130173843,
          -3.3527611917238307,
          -7,
          -7,
          -3.3927409079666413,
          -7,
          -3.6144331585504523,
          -7,
          -7,
          -3.3473931599569218,
          -7,
          -3.4961682741749778,
          -3.029464946638236,
          -7,
          -7,
          -7,
          -2.377228170976555,
          -2.9792447784093805,
          -3.018561812897253,
          -3.2847314397467207,
          -7,
          -3.787956123283932,
          -7,
          -7,
          -2.9395192526186187,
          -4.370956964416454,
          -7,
          -2.4803663095328092,
          -7,
          -2.816783452824119,
          -3.3845326154942486,
          -2.717670503002262,
          -7,
          -3.377670439334323,
          -0.2463085280453339,
          -7,
          -7,
          -2.991336850972244,
          -4.083251717221604,
          -2.78902641153793,
          -7,
          -7,
          -3.3517963068970236,
          -7,
          -3.025510672852581,
          -2.7651094972067183,
          -3.00987563371216,
          -2.90687353472207,
          -2.64106829099296,
          -2.9475970826119045,
          -2.6572587197236484,
          -4.0707160794021915,
          -7,
          -7,
          -7,
          -7,
          -2.4447137991033645,
          -7,
          -2.7148085850218555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9578319836218965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.93980039487275,
          -3.2271150825891253,
          -7,
          -3.9057958803678683,
          -7,
          -7,
          -7,
          -2.8976074572805417,
          -7,
          -3.2736103808338557,
          -3.4095950193968156,
          -3.6442169541060987,
          -7,
          -7,
          -7,
          -2.6046888069715166,
          -7,
          -2.5057664361691927,
          -2.230252363564598,
          -7,
          -3.1870975005834774,
          -7,
          -7,
          -3.4683473304121573,
          -3.3395508108256715,
          -2.775974331129369,
          -7,
          -7,
          -7,
          -7,
          -3.505149978319906,
          -7,
          -3.265525335219074,
          -3.300073495267144,
          -2.456366033129043,
          -7,
          -3.492061604512599,
          -4.233576686264463,
          -2.7123222675685836,
          -7,
          -2.166493546908743,
          -2.8322959710584774,
          -7,
          -2.089494353362903,
          -2.380986075961567,
          -3.2439883200147483,
          -3.3707905645192677,
          -2.0283388232077804,
          -2.1316186643491255,
          -3.2079035303860515,
          -7,
          -4.715418965908037,
          -3.2510051734936347,
          -7,
          -7,
          -7,
          -3.555578072772955,
          -3.7515100502700416,
          -2.2104714000467327,
          -7,
          -2.607776603741693,
          -3.041195233696809,
          -3.25478968739721,
          -7,
          -3.51181654130309,
          -3.402433346219312,
          -2.48572142648158,
          -3.4514794051248616,
          -3.402433346219312,
          -3.450740462038178,
          -3.2988194999682423,
          -4.428986458109622,
          -7,
          -3.5851786285035163,
          -2.633686887659093,
          -2.725152937179735,
          -7,
          -2.951337518795918,
          -7,
          -7,
          -2.319337436236881,
          -2.7494142103240775,
          -3.5566642621225686,
          -7,
          -7,
          -7,
          -7,
          -3.3944516808262164,
          -7,
          -2.8676147812238355,
          -7,
          -3.0309912369409937,
          -7,
          -7,
          -4.009280884255359,
          -7,
          -7,
          -7,
          -7,
          -4.098626422903375,
          -7,
          -4.606886315027087,
          -4.189759734122248,
          -4.040206627574711,
          -3.7367151336056112,
          -7,
          -4.731040515294573,
          -7,
          -3.518481037534457,
          -7,
          -7,
          -4.231224848535276,
          -7,
          -7,
          -7,
          -5.390599546802992,
          -7,
          -4.249516315801663,
          -3.85171686836248,
          -7,
          -7,
          -7,
          -7,
          -4.1828994675482605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.328410186480327,
          -3.4265112613645754,
          -7,
          -4.2934141218173325,
          -7,
          -7,
          -3.4545399849648186,
          -7,
          -4.125218432391805,
          -3.4514794051248616,
          -3.6628522332647964,
          -4.16302712860075,
          -3.62708175893708,
          -2.7190490484802736,
          -3.490941205356787,
          -4.460190975748579,
          -7,
          -3.316808752053022,
          -3.8868853589860084,
          -4.399535278865296,
          -7,
          -7,
          -3.956674753874899,
          -4.25955593653417,
          -5.406667044016165,
          -3.342620042553348,
          -2.546131204914049,
          -7,
          -4.059459280759199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2789973469852707,
          -4.79328038282763,
          -7,
          -3.7746385998091383,
          -3.895919545310016,
          -3.760066888531863,
          -3.8087914452522758,
          -7,
          -3.1869027780703103,
          -7,
          -3.7077404542737713,
          -4.071618483796091,
          -7,
          -3.7318304202881625,
          -3.9245893856694183,
          -4.326949994165998,
          -7,
          -3.2949069106051923,
          -7,
          -7,
          -7,
          -3.2858384967689096,
          -2.572987708198205,
          -3.1443925650070628,
          -7,
          -7,
          -3.291202294560029,
          -7,
          -2.5870870682273686,
          -2.8577344348976292,
          -3.371867951531505,
          -7,
          -3.275480729561276,
          -3.446770095200388,
          -2.689131197234498,
          -2.3516997004052667,
          -7,
          -7,
          -3.484299839346786,
          -7,
          -7,
          -3.3961993470957363,
          -7,
          -3.406540180433955,
          -3.2161659022859928,
          -2.505511739675187,
          -7,
          -3.769340394703022,
          -7,
          -2.8467493518208467,
          -4.135291704475752,
          -3.869138498669444,
          -4.020057280643444,
          -7,
          -2.6263403673750423,
          -2.7489198511564084,
          -3.428620672671939,
          -2.526538084663585,
          -7,
          -3.014380511517664,
          -2.504697352451001,
          -7,
          -7,
          -3.112828346606045,
          -3.1855421548543754,
          -3.497137064051958,
          -3.3769417571467586,
          -3.205880729887537,
          -3.145662470707546,
          -2.9150478947700735,
          -3.2246625288410296,
          -3.202293662186187,
          -3.9329554831162303,
          -7,
          -2.916453948549925,
          -2.44413668092464,
          -7,
          -3.712453270817587,
          -7,
          -7,
          -3.9710902131371153,
          -2.5554572172046495,
          -2.756538835744164,
          -3.64018319192134,
          -3.7328760413627067,
          -2.887898488096872,
          -3.388633969351789,
          -7,
          -2.597329464234929,
          -7,
          -7,
          -2.557988148224913,
          -3.4161965568964496,
          -2.6929937147769896,
          -7,
          -2.7709086304391612,
          -3.167671716230021,
          -2.3851397918328363,
          -2.295509228754198,
          -3.0803458442742997,
          -2.640779477344857,
          -2.582883679648842,
          -2.858386792552758,
          -3.787247880331954,
          -3.783331762887424,
          -3.473632926873841,
          -7,
          -2.8236915393984545,
          -2.9827233876685453,
          -7,
          -7,
          -3.1187605904423816,
          -7,
          -4.070862550639413,
          -7,
          -3.9024108711664565,
          -3.7861004389479858,
          -1.6974081935732832,
          -3.329092647195331,
          -3.381656482585787,
          -2.431497784984585,
          -7,
          -2.1843177798594184,
          -3.0073921195729496,
          -7,
          -7,
          -2.6681195600536824,
          -2.357934847000454,
          -3.057847945044547,
          -2.5054891384167237,
          -7,
          -7,
          -7,
          -2.836535091898369,
          -7,
          -3.325720858019412,
          -3.893095666096228,
          -2.457606678421928,
          -2.362356792654536,
          -3.3694014136966244,
          -7,
          -7,
          -7,
          -3.4068806700491248,
          -7,
          -3.594171479114912,
          -3.494988973683168,
          -3.553306415318742,
          -7,
          -3.77757180469141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6731131042382335,
          -7,
          -3.3988077302032647,
          -7,
          -7,
          -3.304167271724397,
          -7,
          -3.3236645356081,
          -7,
          -7,
          -3.4761792624817036,
          -7,
          -3.424881636631067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.863822308937582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.229505222323249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5418287667813124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.4518155921256035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.352795887633352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7591388162811663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6659560294539566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.346595485628397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.385606273598312,
          -7,
          -7,
          -7,
          -3.367169488534681,
          -7,
          -3.494988973683168,
          -7,
          -2.940184328524863,
          -3.0946269833383124,
          -7,
          -7,
          -7,
          -2.917230346723255,
          -2.9532521547868504,
          -2.777861624176242,
          -7,
          -7,
          -7,
          -7,
          -3.0484048061076168,
          -3.973589623427257,
          -7,
          -3.1995494966993565,
          -2.851682597830192,
          -3.4578818967339924,
          -2.91204482964487,
          -7,
          -2.343698142772449,
          -3.0112884341835358,
          -3.1010593549081156,
          -3.6996065029245266,
          -3.4578818967339924,
          -2.874675052177361,
          -3.3552599055273786,
          -3.404833716619938,
          -7,
          -2.1411730057977474,
          -3.6769678142947586,
          -3.3354579006893843,
          -3.122434336266318,
          -7,
          -4.067430448350606,
          -2.4086167935193554,
          -3.4127964287165433,
          -2.8860392755664424,
          -7,
          -2.0123280442811606,
          -7,
          -7,
          -7,
          -2.010796911305982,
          -3.5384480517102173,
          -2.3710096100045224,
          -2.3254570185069516,
          -1.9879579579819235,
          -2.693067093924229,
          -7,
          -2.3942924527834046,
          -1.6076081864967722,
          -7,
          -3.4577305482459986,
          -7,
          -7,
          -2.952469547503639,
          -2.3863367943456684,
          -4.17506221059361,
          -7,
          -7,
          -2.3920759410252943,
          -7,
          -3.152227171838142,
          -2.734727113894763,
          -2.7518562395924007,
          -7,
          -3.497186893442444,
          -7,
          -2.642684304903646,
          -7,
          -3.3818367999983434,
          -1.8818776844271032,
          -2.6705937061018545,
          -2.914166793875635,
          -7,
          -2.44394714679301,
          -3.130816050034744,
          -1.8511656596819284,
          -3.4148062795010126,
          -2.241795431295199,
          -7,
          -3.0408228694431076,
          -7,
          -2.6519238051682956,
          -7,
          -7,
          -3.6387886671573986,
          -3.241048150671644,
          -3.0112531701274974,
          -2.8971556298923367,
          -7,
          -4.199206479161658,
          -7,
          -3.0308020487722676,
          -7,
          -2.6287425100903885,
          -7,
          -1.884751806004819,
          -3.20194306340165,
          -1.9336063705151778,
          -1.9808010697064142,
          -3.419625360887743,
          -3.3811150807098507,
          -3.176958980586908,
          -7,
          -3.1833535953910777,
          -7,
          -7,
          -3.285557309007774,
          -2.8121610418869056,
          -3.077803798076088,
          -7,
          -3.105667366994601,
          -3.9220875204019343,
          -7,
          -3.1571040314004035,
          -7,
          -3.922102366807607,
          -1.833547362858849,
          -2.9524049395770247,
          -3.2815635951627784,
          -7,
          -7,
          -2.183493544341022,
          -2.1586451438995016,
          -7,
          -3.0330214446829107,
          -4.097465554474156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7921114090871684,
          -3.070037866607755,
          -2.7704155895660736,
          -3.036162949823816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.776960479764161,
          -7,
          -7,
          -7,
          -2.543040749940433,
          -3.3346547668832414,
          -7,
          -7,
          -7,
          -3.3560258571931225,
          -2.4244732731953342,
          -7,
          -3.321598430465344,
          -3.6103407114521566,
          -3.549861188471943,
          -3.0106767848473175,
          -3.531095546870028,
          -2.808042085314898,
          -3.223991933097826,
          -2.9176805224430487,
          -7,
          -7,
          -3.441695135640717,
          -7,
          -3.375846436309156,
          -3.33665982345442,
          -2.5695906342474704,
          -3.386855529184724,
          -7,
          -7,
          -3.1427022457376155,
          -2.1143352885949227,
          -7,
          -3.810098040681143,
          -3.743979865241843,
          -3.203984244420126,
          -3.3068537486930083,
          -2.674204809221172,
          -3.2489536154957075,
          -7,
          -3.0437551269686796,
          -2.930002458864768,
          -3.1043163645117278,
          -7,
          -7,
          -3.424432415724877,
          -7,
          -7,
          -7,
          -3.3541724896573473,
          -7,
          -2.7899917812740584,
          -3.4168068718229443,
          -3.522313795156667,
          -3.0842186867392387,
          -7,
          -3.1594468733874694,
          -2.991336850972244,
          -7,
          -7,
          -4.387656728620143,
          -2.9448773059636952,
          -7,
          -7,
          -7,
          -3.3434085938038574,
          -7,
          -7,
          -7,
          -3.4169731726030363,
          -3.692582562274909,
          -2.8373516579578224,
          -3.705749709269246,
          -4.251952721498891,
          -7,
          -3.3932241163612975,
          -7,
          -3.480438147177817,
          -7,
          -7,
          -3.5830853663476874,
          -3.530199698203082,
          -3.526597709103452,
          -7,
          -7,
          -3.3554515201265174,
          -2.330966897366099,
          -7,
          -2.8735143535392917,
          -7,
          -3.165000936622481,
          -7,
          -7,
          -7,
          -7,
          -3.4358443659844413,
          -2.947270299690615,
          -7,
          -2.392217158165493,
          -3.8134475442648212,
          -2.7052526322873587,
          -3.8889653443003374,
          -2.768268016451548,
          -7,
          -7,
          -7,
          -2.4324999946754002,
          -3.272189831450441,
          -2.997920064775138,
          -3.138776215729349,
          -3.683554592496879,
          -7,
          -3.376211850282673,
          -3.383994789441733,
          -3.0188895442801207,
          -3.8568496787251725,
          -2.6903571983690386,
          -2.2774818738891915,
          -7,
          -2.73453314583352,
          -7,
          -2.8756399370041685,
          -7,
          -3.658964842664435,
          -3.163757523981956,
          -7,
          -2.4762155307586386,
          -2.7179477417489277,
          -7,
          -2.9269851794378066,
          -7,
          -2.471630166315894,
          -2.5903358888776986,
          -2.226313431264316,
          -3.16761267272753,
          -2.9146075677710805,
          -3.330724416161277,
          -3.1992064791616577,
          -7,
          -3.720159303405957,
          -7,
          -7,
          -3.1421547334862034,
          -2.9509730248744774,
          -3.427891650708878,
          -1.8576979104047853,
          -3.1132189243125046,
          -2.9559281568969507,
          -3.400624321661767,
          -2.215615535361617,
          -3.875141037569342,
          -1.9156245368287141,
          -7,
          -7,
          -7,
          -3.1684385521867724,
          -2.1362674690642875,
          -3.395501124305626,
          -3.424718337331567,
          -2.7246853882373596,
          -3.076640443670342,
          -2.295161839468722,
          -3.095169351431755,
          -3.22284647997415,
          -3.433449793761596,
          -2.993142192245416,
          -2.0517198569263675,
          -7,
          -4.088903550093058,
          -3.23973313983308,
          -4.274178639459329,
          -7,
          -2.8542508196658543,
          -4.180478150873018,
          -2.841017999215743,
          -7,
          -3.4583356259919475,
          -3.367169488534681,
          -2.7541783906953876,
          -3.4129083314437545,
          -2.6358605750224178,
          -2.080347137974415,
          -7,
          -7,
          -2.0218251622609853,
          -7,
          -7,
          -7,
          -3.3078524552347384,
          -3.391111613702803,
          -1.2666411303139182,
          -7,
          -7,
          -3.768162219987711,
          -4.3069180203772985,
          -7,
          -7,
          -4.425517917846864,
          -3.3611781830641054,
          -3.6639834546082666,
          -3.14589263991003,
          -2.9804410666564363,
          -3.570270447480781,
          -7,
          -3.861614054079856,
          -3.7324018022389076,
          -4.159854966195215,
          -3.599752109269689,
          -7,
          -4.211618830342925,
          -3.7849279012531243,
          -3.7931964895580594,
          -3.869173027321683,
          -7,
          -4.913801494234826,
          -3.833932934844275,
          -3.5984135413909475,
          -4.158483112699248,
          -7,
          -3.895652709000915,
          -4.230729844577681,
          -7,
          -3.941149251276355,
          -4.206123963991852,
          -4.692238657427663,
          -3.657457437356336,
          -4.237065952555404,
          -7,
          -3.6621279628519448,
          -3.964118143151485,
          -3.875423024746981,
          -7,
          -3.250684239710383,
          -7,
          -4.208369684768811,
          -3.459212229915092,
          -3.6702922495788317,
          -2.946452265013073,
          -4.0603767213953565,
          -3.5938396610812715,
          -3.3308044475799257,
          -3.2823577252216545,
          -7,
          -3.864718685895433,
          -2.9696488404807253,
          -3.3940925389475614,
          -7,
          -2.828270112376824,
          -3.441904509867698,
          -7,
          -3.8972971220594963,
          -3.9255699095433765,
          -7,
          -7,
          -3.493549535982762,
          -3.359602222607438,
          -4.66644820193318,
          -7,
          -3.213849659558812,
          -7,
          -3.9220126057956737,
          -7,
          -4.2620542460671,
          -3.4345369694423313,
          -7,
          -7,
          -4.355202404658053,
          -4.458350742139663,
          -3.302805567509679,
          -7,
          -3.1096267509648063,
          -3.6049816296074315,
          -3.444642334143387,
          -3.5101426994025733,
          -7,
          -2.5859439053216287,
          -4.486803448227884,
          -7,
          -4.236814275171272,
          -7,
          -3.2692015103702907,
          -2.9343850705382533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.973589623427257,
          -2.388722700475175,
          -2.174018250432816,
          -7,
          -7,
          -3.227629649571009,
          -7,
          -2.866050924009275,
          -7,
          -2.780077171419682,
          -3.345177616542704,
          -2.904512682924551,
          -2.4583356259919475,
          -3.4214393902200495,
          -7,
          -7,
          -2.972781203735422,
          -3.0990587890680543,
          -7,
          -7,
          -3.884285462339675,
          -7,
          -3.4372747974101237,
          -3.0638335542064703,
          -2.493893521283257,
          -7,
          -3.076640443670342,
          -7,
          -7,
          -4.614433158550452,
          -3.2937284566278207,
          -3.845215214780156,
          -7,
          -7,
          -2.087559066692512,
          -7,
          -2.0092770195830605,
          -7,
          -2.6707758036974223,
          -2.4231560648103123,
          -7,
          -7,
          -3.610766594773271,
          -2.3327077063482236,
          -3.811038508604216,
          -7,
          -3.2304489213782737,
          -2.3251636753807006,
          -7,
          -2.1636085634310516,
          -2.575726528681198,
          -7,
          -7,
          -1.9461246192171453,
          -2.78993308093175,
          -7,
          -3.592676297400732,
          -7,
          -7,
          -7,
          -2.976808337338066,
          -2.4880440505901413,
          -2.273772665662463,
          -7,
          -3.5162708827293403,
          -7,
          -7,
          -3.4101020766428607,
          -3.8806421264042847,
          -7,
          -2.8820689444361483,
          -2.1907709896295726,
          -7,
          -7,
          -2.0632268998054837,
          -1.9705668126696234,
          -2.616400486768762,
          -3.2980885693913815,
          -2.7474516477618667,
          -7,
          -3.851869600729766,
          -3.4885507165004443,
          -2.7131053594927255,
          -7,
          -3.500099191915723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.846955325019824,
          -7,
          -3.0310287880069935,
          -7,
          -7,
          -3.3109056293761414,
          -7,
          -2.085766126574217,
          -7,
          -2.170516807608989,
          -7,
          -2.525476726000246,
          -2.333064896491424,
          -7,
          -3.330210784571528,
          -2.9361365870214917,
          -3.1677602664356295,
          -2.8539940191313975,
          -3.4413808849165113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.263399331334002,
          -3.402777069610347,
          -7,
          -7,
          -3.3914644118391033,
          -7,
          -7,
          -2.768003476952656,
          -3.52022143588196,
          -3.3827372657613304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4102709642521845,
          -7,
          -3.3163111433656165,
          -7,
          -7,
          -3.7011360660925265,
          -7,
          -2.8459244807620387,
          -7,
          -7,
          -7,
          -7,
          -3.0118522700068455,
          -2.8187535904977166,
          -7,
          -7,
          -4.055550332976277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2024603224747716,
          -7,
          -7,
          -7,
          -4.099139449766182,
          -3.679927320565639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3190267016919766,
          -4.472917269345676,
          -7,
          -2.8114442139762446,
          -2.8583983640189112,
          -7,
          -7,
          -7,
          -4.38172861853511,
          -4.36891880234938,
          -7,
          -3.166229669531838,
          -7,
          -4.0521358093017765,
          -7,
          -4.057647088848993,
          -7,
          -4.355757927746179,
          -3.7967130632808965,
          -7,
          -7,
          -7,
          -3.9500536824781434,
          -7,
          -7,
          -3.5376931943673906,
          -7,
          -3.8191489428071344,
          -7,
          -7,
          -4.401262647628488,
          -7,
          -3.6766570359180024,
          -2.015998849529744,
          -2.9783210084815113,
          -4.000332831533668,
          -3.127767925909508,
          -7,
          -7,
          -3.916611845109346,
          -4.062356318085437,
          -7,
          -7,
          -7,
          -7,
          -3.368168509363625,
          -3.399621810671736,
          -4.354089222152247,
          -7,
          -3.787460474518415,
          -7,
          -4.437877345621435,
          -4.419840141416905,
          -4.353454583806043,
          -7,
          -3.849148488594488,
          -7,
          -3.041894884169058,
          -7,
          -7,
          -3.77110221095409,
          -7,
          -4.357305807546096,
          -7,
          -3.9168748785386835,
          -7,
          -3.79778672138496,
          -7,
          -7,
          -7,
          -2.7029168150662946,
          -4.1047431057093755,
          -3.2805649808879713,
          -4.352510527820731,
          -7,
          -7,
          -3.376010910646249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.747356310540248,
          -7,
          -4.086163998032887,
          -7,
          -3.720374329337824,
          -2.889766853636871,
          -7,
          -7,
          -3.5891860309942296,
          -4.370124326635658,
          -3.2497908144703125,
          -3.3639690449788393,
          -7,
          -7,
          -4.406642355350766,
          -7,
          -7,
          -3.964966374831098,
          -2.4355746981517323,
          -7,
          -7,
          -7,
          -3.850851569406117,
          -4.066586796470695,
          -3.615950051656401,
          -2.909489168417103,
          -7,
          -4.3616522999739376,
          -3.0656004601239433,
          -7,
          -7,
          -7,
          -3.8781865623839025,
          -7,
          -7,
          -7,
          -4.052386095389375,
          -4.350945431337479,
          -3.736197238918293,
          -7,
          -4.082342475253593,
          -3.5253363994486446,
          -4.361954365353462,
          -3.993715382561762,
          -7,
          -7,
          -4.06781451116184,
          -3.045609805328916,
          -4.156882164439376,
          -7,
          -7,
          -7,
          -3.4117650585774544,
          -7,
          -7,
          -7,
          -4.370975449358971,
          -7,
          -4.371289573064557,
          -7,
          -4.389112902192263,
          -7,
          -7,
          -4.169365793151048,
          -7,
          -7,
          -2.102548712993538,
          -4.357687152332334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.371659416448944,
          -7,
          -3.7103289580426297,
          -7,
          -3.590140948581808,
          -1.8652636002013423,
          -2.915964856951931,
          -2.669773466253543,
          -2.949070183558962,
          -3.467756051244033,
          -3.0055915816134133,
          -7,
          -4.076440177918153,
          -7,
          -7,
          -7,
          -7,
          -4.425289616446794,
          -7,
          -4.490464159065009,
          -4.078674273360466,
          -4.643274974211101,
          -7,
          -3.186892154330931,
          -7,
          -3.2382343402834737,
          -4.058995093525416,
          -7,
          -7,
          -7,
          -3.6614498334507024,
          -4.083251717221604,
          -7,
          -4.387656728620143,
          -7,
          -1.7023468385397829,
          -7,
          -7,
          -3.578371751958183,
          -4.352298314534367,
          -7,
          -4.35837273025802,
          -7,
          -7,
          -2.1148654682308305,
          -4.110825310054965,
          -2.3292190825019476,
          -3.46127901820621,
          -7,
          -7,
          -7,
          -4.3678030327490065,
          -7,
          -7,
          -3.4280267471363537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5793500607865452,
          -7,
          -7,
          -7,
          -7,
          -4.061207365300118,
          -4.059941888061955,
          -7,
          -4.362388216588698,
          -3.826123415033982,
          -7,
          -7,
          -2.443738372084082,
          -3.2965555060882235,
          -7,
          -7,
          -3.350910791047725,
          -2.746054608250968,
          -2.7705497211846604,
          -7,
          -2.882316969972196,
          -7,
          -7,
          -3.5781041291341573,
          -4.201506367053238,
          -4.439222132071866,
          -4.015960198014766,
          -4.133363239048624,
          -7,
          -4.372304301812888,
          -7,
          -7,
          -4.369735215355923,
          -3.91832745759621,
          -4.392327557983544,
          -7,
          -7,
          -4.370050237074868,
          -7,
          -4.374528394381243,
          -7,
          -3.9061913308567564,
          -2.6431378562608008,
          -7,
          -4.0919481908785595,
          -3.673665876245702,
          -2.9290514496780715,
          -3.6959629862267245,
          -7,
          -3.200524297120166,
          -4.352780467571326,
          -7,
          -7,
          -2.962150694375638,
          -1.8081330329577694,
          -2.7274893420823583,
          -7,
          -7,
          -7,
          -7,
          -2.4696548471781123,
          -3.8663168819216542,
          -7,
          -7,
          -7,
          -3.487641067547379,
          -3.9399682905513362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9540011676815703,
          -7,
          -7,
          -3.5140826625258312,
          -3.5836521085420436,
          -3.742258294562316,
          -3.7119383877182592,
          -3.5801274505122467,
          -7,
          -3.449740593779286,
          -3.262358215691817,
          -7,
          -7,
          -7,
          -7,
          -3.6269730385435053,
          -3.8460586289641854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357210419006122,
          -2.5614340302696146,
          -7,
          -7,
          -2.646048382078891,
          -2.8286921130318965,
          -3.7635563374978425,
          -2.9858919737062264,
          -2.979376888593836,
          -1.4409806003003571,
          -3.0070263462012052,
          -2.8752399486367235,
          -2.359620733127385,
          -2.387000299581458,
          -3.091114004305992,
          -3.7212436846981767,
          -2.6089137703064407,
          -2.667603798222223,
          -2.1320969558218037,
          -2.936704709634012,
          -2.282571977286789,
          -2.2985376363883403,
          -2.9457346643472886,
          -3.2129248075868446,
          -4.410406027068357,
          -2.754528397576881,
          -2.521416773066945,
          -2.6672816919115228,
          -2.9832126912055705,
          -4.637099289431483,
          -3.0503668651683298,
          -2.927393696523618,
          -7,
          -2.155087384231883,
          -3.0549121513317727,
          -2.8916940312831434,
          -2.64957822912025,
          -3.3439296430348087,
          -3.600173959212428,
          -3.253350760498344,
          -3.323428906178432,
          -2.8878249642615463,
          -3.209083536295187,
          -2.658211932290689,
          -7,
          -2.997734511191365,
          -1.9540949941996784,
          -2.891361368543823,
          -2.5230711116183655,
          -3.4899584794248346,
          -7,
          -2.350363247273812,
          -4.025333178524231,
          -4.09841873415025,
          -2.7802558253347023,
          -2.908756846562415,
          -2.2553478969066205,
          -7,
          -2.4675593699303873,
          -3.9792447784093805,
          -7,
          -7,
          -3.959728084371596,
          -3.9479236198317262,
          -4.3648697986669625,
          -2.4397883590508522,
          -2.2193551859321543,
          -3.2057463603963625,
          -7,
          -3.5836844714826976,
          -4.056352107632129,
          -2.2201785795834823,
          -7,
          -3.549033145088479,
          -2.2489976533134346,
          -2.89394283598136,
          -7,
          -2.5974514056878997,
          -3.611103456465005,
          -2.7085475735379623,
          -3.6364043058455713,
          -3.3280736545131555,
          -3.7535677395933793,
          -2.233248271010596,
          -2.7909140607501293,
          -7,
          -2.3145906949270607,
          -2.2626113582592984,
          -4.408070285887185,
          -2.226154552287061,
          -4.357896749322294,
          -4.111917494923382,
          -2.115525895116428,
          -3.775100498879025,
          -4.354050785610767,
          -7,
          -7,
          -7,
          -3.530263748713028,
          -2.276811893626411,
          -4.083592192787562,
          -3.269571313209591,
          -3.6555801911718633,
          -3.2014153333509525,
          -2.7608885125470173,
          -3.273108162165656,
          -7,
          -7,
          -3.16087904727443,
          -4.352471951298952,
          -2.188139451818331,
          -3.9392029844167507,
          -3.883396425218766,
          -3.126383977482481,
          -0.8339791677991037,
          -3.4268364538035083,
          -3.424424243769512,
          -4.064233296034753,
          -4.058520921099337,
          -2.4799444140560416,
          -3.882998606861143,
          -3.760271660542063,
          -7,
          -3.8013007844375624,
          -7,
          -3.394249573718604,
          -7,
          -7,
          -2.2259461349748757,
          -1.2119596828671277,
          -2.087717864069486,
          -3.8733012218880476,
          -3.393013327901293,
          -4.00881300905209,
          -3.7627723132112116,
          -4.0948203803548,
          -7,
          -4.37278316770235,
          -3.4533183400470375,
          -7,
          -7,
          -3.5417574891704673,
          -3.8949065379377426,
          -2.8353978544636607,
          -3.404719713605265,
          -3.4714567409470156,
          -7,
          -4.360952968049115,
          -7,
          -2.876039047832732,
          -2.8033297854157246,
          -7,
          -7,
          -3.360472922041386,
          -3.9028908897244614,
          -2.7690987497112878,
          -4.058179196100317,
          -4.3543581827353215,
          -1.4197913690146289,
          -4.381999021683067,
          -1.6053596806286088,
          -3.6963039556509614,
          -3.2988530764097064,
          -3.2930309056064373,
          -3.5151734143886832,
          -2.87052395074504,
          -7,
          -3.1439511164239637,
          -4.357382103296111,
          -7,
          -4.452001227726593,
          -3.5249521970606112,
          -7,
          -4.148926404279561,
          -2.375792274747459,
          -4.416890030173012,
          -4.0841113519406775,
          -2.8997585768372334,
          -4.3958329201019835,
          -3.4376395975003704,
          -4.067795935294864,
          -3.0091586473368697,
          -2.769574240376453,
          -3.328639027551356,
          -3.589241947538832,
          -4.352008765565775,
          -7,
          -3.049101678208557,
          -3.353479077417884,
          -3.5186455243303114,
          -3.3942239667723677,
          -2.002570998365708,
          -2.9829402547939723,
          -2.295068142326665,
          -2.489507574006869,
          -2.5075761646833645,
          -7,
          -4.05869168281923,
          -4.375681899659375,
          -7,
          -3.9439394644722165,
          -3.9477113985684684,
          -3.105558842490254,
          -7,
          -3.773676760807886,
          -7,
          -2.5407495746008397,
          -7,
          -4.357382103296111,
          -7,
          -7,
          -4.353165804965758,
          -4.051036695141213,
          -3.8770064005726015,
          -2.906765889540728,
          -3.227464319520702,
          -4.379686151906955,
          -4.358486888100237,
          -3.883282800010276,
          -7,
          -7,
          -7,
          -4.058236168942767,
          -3.7855077880892263,
          -3.8959747323590648,
          -2.3334094862099475,
          -3.1875050533647573,
          -3.381197154693257,
          -3.4579008115869776,
          -7,
          -3.102930835735232,
          -7,
          -7,
          -2.4748625905317962,
          -7,
          -7,
          -3.2892114990916705,
          -3.437468690682047,
          -7,
          -7,
          -4.052943906657025,
          -3.685096533739927,
          -4.351815625616891,
          -3.468363743347739,
          -4.3729672063871545,
          -4.36451347369151,
          -7,
          -3.376455288899979,
          -7,
          -7,
          -3.83714634390906,
          -7,
          -2.868216825331944,
          -3.1947917577219247,
          -7,
          -3.8651039746411278,
          -2.724548052819,
          -3.763240757310025,
          -7,
          -7,
          -3.499215621220299,
          -3.2095724571036435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.958394318227855,
          -7,
          -7,
          -2.8962505624616384,
          -3.0021087457977718,
          -7,
          -3.554125581513013,
          -7,
          -3.4518375861611674,
          -3.8918161195248606,
          -3.8596185787721806,
          -2.8596949382417227,
          -3.8797837800904156,
          -2.9388948175981704,
          -7,
          -3.3830969299490943,
          -2.747670701773019,
          -3.1516149720160125,
          -3.9761206182998157,
          -7,
          -3.2397998184470986,
          -3.380271556201239,
          -3.498010730179554,
          -3.847202363980924,
          -3.5621143505886863,
          -3.4554539687786283,
          -3.409087369447835,
          -2.801403710017355,
          -3.855700830835437,
          -3.879153246184246,
          -7,
          -3.8887970674566805,
          -3.4347285417797577,
          -2.213668653242534,
          -2.5997407193331936,
          -2.6390637006428417,
          -2.924486043733915,
          -3.860996436757196,
          -3.57153414742667,
          -3.2632098485727488,
          -7,
          -7,
          -3.8804133998779164,
          -7,
          -3.5683777537182206,
          -2.4834360012063805,
          -3.0073083928914546,
          -3.8457180179666586,
          -7,
          -2.7737376998796326,
          -7,
          -3.1177498976848512,
          -2.402957006685218,
          -3.8436687229791437,
          -3.959089114367392,
          -3.5773799979362595,
          -7,
          -3.2391993420543015,
          -7,
          -7,
          -2.508044027297837,
          -3.6269046860771983,
          -3.856003453997221,
          -7,
          -3.963268251526235,
          -7,
          -3.023983672235201,
          -7,
          -3.4385950832263315,
          -7,
          -2.7522016590342444,
          -3.693111115462141,
          -2.6232492903979003,
          -7,
          -7,
          -3.9573678084315276,
          -3.067973700294994,
          -3.6444878264138585,
          -3.0557180220312725,
          -7,
          -3.2327844143207414,
          -7,
          -7,
          -7,
          -2.836296589515527,
          -7,
          -3.3422252293607904,
          -7,
          -2.6845189471368234,
          -2.4174789139343855,
          -7,
          -3.5511449087563216,
          -3.4102709642521845,
          -7,
          -2.9543560356409655,
          -7,
          -7,
          -3.933183479174614,
          -3.3940574848093257,
          -3.7283131918551256,
          -7,
          -3.629593065055699,
          -2.766013293129767,
          -7,
          -3.6478066243908707,
          -7,
          -4.176165703157553,
          -3.1885910365939902,
          -3.1852115157200926,
          -3.3199384399803087,
          -7,
          -3.568495067193246,
          -2.131153997674171,
          -3.495127881242933,
          -7,
          -3.8370831508231857,
          -4.473428573603286,
          -7,
          -7,
          -7,
          -7,
          -3.8355003278673188,
          -2.9534799201619046,
          -3.11601706796125,
          -3.360929847769662,
          -3.4485903895359518,
          -7,
          -4.145631415290328,
          -7,
          -7,
          -3.4143604491198576,
          -3.551035024150877,
          -3.8166720655453337,
          -7,
          -7,
          -7,
          -3.1232402702695254,
          -7,
          -7,
          -3.9202798946329485,
          -3.198547125064507,
          -3.84397984447816,
          -3.8988896559265864,
          -3.1294213284149075,
          -2.6256063897085316,
          -2.988905619919238,
          -2.5722906061514177,
          -2.6375522674177097,
          -3.130280148582363,
          -3.862667950228588,
          -2.454719615471786,
          -3.857211842316892,
          -7,
          -7,
          -3.271318745081179,
          -3.5532760461371,
          -7,
          -7,
          -2.5140457292682847,
          -7,
          -4.406284637924727,
          -7,
          -2.5329416313913384,
          -2.361890194037088,
          -3.031523876020016,
          -2.381781928710837,
          -3.232487866352986,
          -3.052584021782163,
          -3.0972077128816373,
          -7,
          -3.2176944602053785,
          -3.190611797813605,
          -3.603793704136963,
          -3.2500945661888303,
          -7,
          -3.74170298395774,
          -7,
          -2.842410653111147,
          -3.0196873549368544,
          -3.85105950643604,
          -7,
          -2.215469320738178,
          -7,
          -1.8412490238433403,
          -2.63233817685707,
          -2.8628358311818536,
          -3.0750600841196736,
          -7,
          -2.518075036877517,
          -2.78902641153793,
          -7,
          -2.9448773059636952,
          -1.7023468385397829,
          -7,
          -7,
          -7,
          -3.854123782101167,
          -7,
          -7,
          -7,
          -7,
          -3.864748335629659,
          -2.452838323991646,
          -3.106063344915765,
          -2.9566485792052033,
          -3.04730732465275,
          -7,
          -3.8564267724702446,
          -3.8637985386805003,
          -3.8884603180353863,
          -7,
          -3.8436687229791437,
          -2.7539913743366897,
          -7,
          -3.9070887450742955,
          -7,
          -3.8322533701970083,
          -7,
          -7,
          -7,
          -7,
          -2.763855659261606,
          -1.6390451678893192,
          -7,
          -7,
          -7,
          -7,
          -3.3942181263801987,
          -3.168202746842631,
          -3.8329557506045986,
          -3.8719230318823734,
          -2.9699592171113403,
          -7,
          -3.618117857290815,
          -2.647955984765046,
          -2.912168896059627,
          -3.8402315949581087,
          -3.8337206904446335,
          -2.204444931778382,
          -2.8120387480202664,
          -2.384981373841525,
          -3.8731461513282555,
          -3.0369752047078737,
          -7,
          -7,
          -7,
          -3.510893378365528,
          -3.7745899502647946,
          -2.9116341316000836,
          -3.1609184995397808,
          -7,
          -3.2024883170600935,
          -3.8703453710809597,
          -3.542015814870588,
          -3.894260664446988,
          -3.666049738480516,
          -3.1128921383925734,
          -7,
          -3.852540985769799,
          -3.417859036208306,
          -3.549371152333177,
          -3.062689403096359,
          -7,
          -3.1551841596940076,
          -3.172223341427753,
          -3.413467412985825,
          -2.466197708063207,
          -2.3555336147958466,
          -2.910360625418522,
          -2.7362125701152555,
          -3.8457799671118895,
          -2.9621663152618503,
          -3.841484609335393,
          -3.5744364202024044,
          -3.2328691051326137,
          -3.2192176570229067,
          -2.315062135517979,
          -2.867150070839093,
          -2.865661253706322,
          -2.7431960814487013,
          -3.2894551656702844,
          -3.638439335179549,
          -2.9377560847436563,
          -2.8841342653384863,
          -7,
          -7,
          -7,
          -4.082390377581715,
          -3.068020856241934,
          -7,
          -3.8675264111997434,
          -3.952792443044092,
          -7,
          -3.0835538066394377,
          -7,
          -3.056218581272306,
          -3.3933411768692574,
          -3.5835954675922532,
          -3.244977695626852,
          -3.024895960107485,
          -3.6897637862550114,
          -3.7101314745149105,
          -3.8219614856202524,
          -7,
          -2.797890483058349,
          -3.066039375035261,
          -2.944975908412048,
          -7,
          -3.5788110603225816,
          -3.847634344318255,
          -3.147278719784546,
          -3.095552896019402,
          -3.765594055319445,
          -3.6283889300503116,
          -7,
          -7,
          -3.9488529061997135,
          -7,
          -7,
          -3.8730879855902858,
          -3.73275552117825,
          -3.855700830835437,
          -2.5007623243323183,
          -7,
          -7,
          -2.94359913882309,
          -3.1256405740546764,
          -3.796383506975522,
          -3.4229999772716164,
          -3.5078408854303,
          -1.554289756780903,
          -2.5508239426793615,
          -3.032503639715015,
          -2.4684482778524823,
          -2.7218380839505403,
          -3.2364952743003883,
          -4.423737249982329,
          -3.188536250695248,
          -3.231884579725797,
          -2.552707456634642,
          -3.7438232216037504,
          -2.777956017976713,
          -2.428868995209785,
          -3.7567121601647715,
          -3.584670384464349,
          -7,
          -3.46437688840658,
          -2.9530171749931706,
          -2.7923809128265353,
          -2.8029560678922834,
          -7,
          -3.538900337140719,
          -3.1902716533078457,
          -7,
          -2.417338810319398,
          -3.2033258343997835,
          -3.0780135164511284,
          -3.4381149636619983,
          -3.864689034136851,
          -3.442636525782232,
          -7,
          -7,
          -3.1600806843827383,
          -3.034227260770551,
          -2.235565441198802,
          -3.879038505237237,
          -3.248218561190075,
          -2.618855352283515,
          -2.9170109744688304,
          -2.5037906830571814,
          -3.4007263285869342,
          -7,
          -2.72075606342588,
          -2.270895401371112,
          -3.199114962043649,
          -3.452169918535435,
          -3.013378368536278,
          -2.8092630297861527,
          -3.9028727854460796,
          -2.4212410860808884,
          -3.41520713590843,
          -3.843419665204918,
          -7,
          -3.330486246354266,
          -7,
          -7,
          -2.808156769243597,
          -2.510130451735458,
          -3.8196249153075152,
          -3.373892352104008,
          -2.904522345185676,
          -3.555215405126073,
          -2.831649008045522,
          -4.093141404751149,
          -4.054346554904802,
          -2.9397331381102125,
          -3.660523976930213,
          -7,
          -3.114404445907608,
          -3.2934405530022266,
          -2.8427392173094055,
          -3.3175619366212463,
          -2.9247768693591403,
          -4.106122874006655,
          -2.7075548783828673,
          -2.7483055150312383,
          -3.8720979742742268,
          -2.491287464977637,
          -2.9277079623485593,
          -3.6989265727162115,
          -2.482505310216106,
          -7,
          -3.313192063634804,
          -2.345411075571206,
          -3.571825249040829,
          -7,
          -3.837019948540908,
          -7,
          -7,
          -7,
          -2.1663600898260897,
          -3.03362477121926,
          -2.4131583231153693,
          -7,
          -3.1398790864012365,
          -2.618509539449221,
          -2.713243405727743,
          -2.7463746862427323,
          -3.8491121661845775,
          -2.9008403154999742,
          -7,
          -2.60677324209835,
          -2.764342210588111,
          -3.8663464227496016,
          -2.7531743591973843,
          -2.0631411665497734,
          -3.450813427021517,
          -2.6080106916094867,
          -3.579726448846229,
          -7,
          -2.91539983521227,
          -3.3877456596088638,
          -3.8720979742742268,
          -3.913336925932623,
          -2.907993255039917,
          -7,
          -2.878156073810623,
          -7,
          -7,
          -2.8895580718964715,
          -2.0498136513778378,
          -2.578181898509458,
          -7,
          -2.7043888651701895,
          -2.5513337987796993,
          -3.1803552964487887,
          -2.6043669434285777,
          -7,
          -2.94819554675934,
          -2.506035758960099,
          -7,
          -7,
          -2.943247125137862,
          -3.201888500365973,
          -2.8169038393756605,
          -3.384831120201789,
          -3.431899599491494,
          -3.28397928423848,
          -3.2650537885040145,
          -2.961684702257791,
          -2.3095755769561013,
          -2.810430203137513,
          -3.53763023032496,
          -2.788389352411851,
          -2.660865478003869,
          -3.623352681537992,
          -2.0766317760693416,
          -3.862131379313037,
          -7,
          -2.633499060172947,
          -3.4526041236583422,
          -2.1350392900048805,
          -2.8518226118758494,
          -2.7812483667358685,
          -3.300432429830641,
          -3.866050924009275,
          -3.3496983398039943,
          -3.0835623371877907,
          -3.0895872186728046,
          -7,
          -2.725350033521565,
          -2.8246737964299387,
          -3.5947239464097467,
          -7,
          -2.6834626973695452,
          -2.0687890798848607,
          -2.4880527674890005,
          -2.7068181508331386,
          -1.7812158154954059,
          -2.502991872316166,
          -2.690786555281818,
          -3.192232822924277,
          -2.507473984797903,
          -2.5909452789636784,
          -2.992387809283771,
          -7,
          -3.5378190950732744,
          -3.532818053867167,
          -3.5120466546965416,
          -3.0626289832522775,
          -3.8767949762007006,
          -2.817187475707873,
          -2.3012918028548115,
          -3.0835026198302673,
          -2.8560827272755613,
          -2.9551227939084574,
          -2.924915149252929,
          -2.730307169523499,
          -3.5625902246063346,
          -2.869338412885156,
          -7,
          -2.5680397947280933,
          -2.366124780433001,
          -3.0496443525693,
          -7,
          -3.008440475315219,
          -3.1846346565862738,
          -2.523382794642113,
          -3.0948785616774006,
          -3.555094448578319,
          -7,
          -7,
          -3.8427340189482697,
          -7,
          -3.846089580357984,
          -2.337045942694717,
          -3.003245054813147,
          -3.077627417979003,
          -3.0139201038746375,
          -3.865991800126275,
          -3.5460488664017342,
          -3.3784584677820555,
          -2.917038463418648,
          -3.8623103099542706,
          -2.903435311184991,
          -3.6033067965385137,
          -2.701976775583116,
          -2.2413443286912247,
          -3.4347684420491507,
          -3.86840930331496,
          -3.8357539675193832,
          -2.9488573477695916,
          -3.8623699371228826,
          -7,
          -2.9440692989142505,
          -3.1721356966495664,
          -3.0907281958534445,
          -3.033468433690981,
          -2.7802212717855133,
          -7,
          -7,
          -3.368100851709351,
          -3.0323668937196664,
          -7,
          -2.889781762778371,
          -3.12515582958053,
          -3.577319426553794,
          -3.5306478535274857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2576785748691846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.451810988581844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.726770663461099,
          -7,
          -7,
          -7,
          -4.187802638718419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333044029823487,
          -7,
          -7,
          -3.1612681529456736,
          -5.094453658681188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.295347148333618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9410142437055695,
          -7,
          -7,
          -2.8654001181793016,
          -4.906948870476861,
          -7,
          -7,
          -3.472317546316842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.446304113951924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0969100130080562,
          -1.738100733954366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.451632947456991,
          -7,
          -3.188084373714938,
          -7,
          -4.627603936292747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2607866686549762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.622214022966295,
          -2.2270292621201366,
          -7,
          -7,
          -2.6273658565927325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1649176661009575,
          -4.752278985460118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5746099413401873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8854366118348267,
          -7,
          -7,
          -7,
          -7,
          -2.173186268412274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5607034958686796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.538246884671983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0881360887005513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808335293644868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.430505050123604,
          -7,
          -7,
          -7,
          -7,
          -3.495320734733275,
          -2.924795995797912,
          -3.0478587274074567,
          -7,
          -7,
          -2.8380090624639394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.063933524163039,
          -7,
          -3.7351995484223135,
          -2.795880017344075,
          -7,
          -2.3443922736851106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3404441148401185,
          -7,
          -7,
          -7,
          -7,
          -3.594834355583318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6620491649778457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9868264529186463,
          -7,
          -7,
          -7,
          -7,
          -2.568201724066995,
          -2.12515582958053,
          -7,
          -7,
          -7,
          -3.197831693328903,
          -7,
          -3.3185502512263594,
          -3.172894697752176,
          -7,
          -7,
          -7,
          -7,
          -4.053180919765609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.946452265013073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.932811868611632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.542514216281654,
          -7,
          -7,
          -3.913124790389559,
          -7,
          -7,
          -2.5118833609788744,
          -4.285833677940712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4638929889859074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.527187649042395,
          -3.852540985769799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.828015064223977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.85524043938708,
          -4.3818908806262575,
          -5.875135376659126,
          -7,
          -7,
          -5.01741735305172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0392157659039505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5957717020009405,
          -7,
          -7,
          -4.591854526887034,
          -7,
          -7,
          -7,
          -7,
          -4.367393197922476,
          -7,
          -7,
          -4.878562006091662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.577721524509021,
          -7,
          -7,
          -4.920962915790826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.470946779511408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.610724025229824,
          -7,
          -4.6673595461830875,
          -4.587789512472801,
          -2.720218387071364,
          -7,
          -7,
          -7,
          -4.933659351805472,
          -7,
          -7,
          -7,
          -7,
          -4.376659063797446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.990236708081907,
          -5.186481684289071,
          -7,
          -7,
          -7,
          -7,
          -4.652976000167315,
          -7,
          -5.404843975423541,
          -7,
          -4.209300495159705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.896531728805878,
          -4.482902154674314,
          -7,
          -4.3399579883119195,
          -4.9544692484698345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.862205942706113,
          -3.292256071356476,
          -4.174815456482182,
          -7,
          -7,
          -3.5578278919567095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.494015374757144,
          -7,
          -7,
          -7,
          -4.116109414063344,
          -7,
          -7,
          -7,
          -7,
          -3.452782787900721,
          -7,
          -7,
          -7,
          -3.1805559407036412,
          -7,
          -3.9983465373963645,
          -7,
          -7,
          -7,
          -3.8380511024893247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.115943176939055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.890979596989689,
          -3.6704314093606056,
          -7,
          -7,
          -3.4998244958395794,
          -7,
          -7,
          -4.136022599397011,
          -7,
          -7,
          -7,
          -7,
          -4.1705824271062575,
          -3.4095950193968156,
          -7,
          -3.11293997608408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7801011914679115,
          -7,
          -7,
          -7,
          -3.849060937109684,
          -7,
          -7,
          -4.298700282631671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7470490969695196,
          -3.25478968739721,
          -4.151614972016013,
          -4.241471767550763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.389555888095237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0971878725708955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.494015374757144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6589648426644352,
          -7,
          -7,
          -7,
          -3.1604685311190375,
          -7,
          -2.972665592266111,
          -4.301607765700107,
          -7,
          -7,
          -7,
          -7,
          -3.9115837009810757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.640063836529813,
          -7,
          -7,
          -2.88930170250631,
          -3.8159317687081695,
          -7,
          -7,
          -7,
          -3.021602716028242,
          -3.1473671077937864,
          -7,
          -3.7519597469003356,
          -2.7741518589547103,
          -7,
          -7,
          -7,
          -3.3068537486930083,
          -7,
          -3.4877038631637265,
          -7,
          -3.362105319293773,
          -7,
          -4.664312839896641,
          -7,
          -2.958085848521085,
          -3.0360297306565434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.249442961442582,
          -4.130392742753647,
          -7,
          -3.4282968139828798,
          -3.4942241869169015,
          -7,
          -7,
          -3.444513206334043,
          -3.0453229787866576,
          -7,
          -7,
          -2.765668554759014,
          -3.0060379549973173,
          -7,
          -4.149988456491476,
          -7,
          -7,
          -3.4058583993176366,
          -7,
          -3.7346398389876994,
          -3.634779458145952,
          -7,
          -7,
          -4.648363264110934,
          -7,
          -2.8819549713396007,
          -7,
          -7,
          -3.8776592441116087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5466660250701842,
          -3.266936911159173,
          -7,
          -3.7989676263398766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9554472105776957,
          -3.385963570600697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6504462975321914,
          -7,
          -3.382197210377454,
          -3.1781132523146316,
          -3.632558514532672,
          -4.077513251497662,
          -2.977266212427293,
          -7,
          -2.645094623553164,
          -7,
          -4.08423657329355,
          -3.0633333589517497,
          -7,
          -7,
          -3.5472823079633033,
          -3.3332456989619628,
          -3.0696680969115957,
          -3.027058232734036,
          -3.754493585981362,
          -7,
          -3.540579716504454,
          -7,
          -4.994048660742143,
          -7,
          -7,
          -3.608739919068788,
          -7,
          -7,
          -3.6979699765543392,
          -7,
          -7,
          -7,
          -3.8911842291196206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.029992175377847,
          -3.730862992046494,
          -3.6776981814745104,
          -3.685920792194535,
          -7,
          -7,
          -7,
          -7,
          -2.66838591669,
          -7,
          -7,
          -7,
          -7,
          -2.7193312869837265,
          -4.241035685094299,
          -7,
          -7,
          -3.2860071220794747,
          -7,
          -2.165095874754218,
          -7,
          -7,
          -3.4008832155483626,
          -7,
          -3.2713768718940743,
          -3.878579238062219,
          -7,
          -7,
          -3.435041507020505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.808833989621961,
          -7,
          -3.803684673674004,
          -7,
          -3.7221401254574156,
          -3.2194593168424754,
          -2.75815462196739,
          -3.0767314430382817,
          -2.8080983884823985,
          -7,
          -2.8981764834976764,
          -7,
          -7,
          -7,
          -7,
          -3.632558514532672,
          -7,
          -3.6669857183296606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7741883834475543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7440581658788354,
          -3.3517963068970236,
          -7,
          -7,
          -3.578371751958183,
          -3.854123782101167,
          -7,
          -7,
          -7,
          -1.4114424790756848,
          -7,
          -7,
          -7,
          -7,
          -2.5120971148810134,
          -2.0320428497705643,
          -3.8311976650693866,
          -5.411956237930402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3324384599156054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.544494684155256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.782830805202592,
          -2.398474196294003,
          -2.952792443044092,
          -7,
          -7,
          -7,
          -7,
          -3.4548067623303504,
          -7,
          -4.012119835804513,
          -7,
          -7,
          -2.870403905279027,
          -3.9925535178321354,
          -7,
          -3.3589337176143736,
          -3.23946632295603,
          -3.840294331611436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.431202884556517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0402066275747113,
          -2.9740509027928774,
          -3.141763230275788,
          -7,
          -7,
          -4.177661527961347,
          -7,
          -7,
          -3.985089506926381,
          -7,
          -2.7466341989375787,
          -7,
          -3.278753600952829,
          -2.808837695380183,
          -3.028435683944159,
          -3.78660947264866,
          -7,
          -3.525563058270067,
          -7,
          -4.828405302161947,
          -7,
          -7,
          -7,
          -7,
          -3.278296208091274,
          -7,
          -7,
          -7,
          -2.5643278286571864,
          -7,
          -2.720159303405957,
          -7,
          -7,
          -7,
          -3.1065308538223815,
          -7,
          -7,
          -4.158078901737636,
          -3.6090605499300867,
          -4.7961191030165615,
          -7,
          -3.7927417858347487,
          -4.541558443904339,
          -3.298489193286698,
          -7,
          -7,
          -7,
          -7,
          -3.483301952358167,
          -3.721728198572788,
          -3.3244882333076564,
          -7,
          -7,
          -3.397592434038117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388988785124714,
          -7,
          -7,
          -3.8961954104542107,
          -7,
          -7,
          -7,
          -7,
          -4.072010804365697,
          -3.877889425371484,
          -7,
          -3.5578736854964284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.104065814376235,
          -7,
          -4.372534591702954,
          -4.445417369765918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8328664197968454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.172135696649566,
          -4.158211669214101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0118557916799,
          -7,
          -7,
          -4.287883805323705,
          -3.885587356189656,
          -3.655234507034294,
          -7,
          -7,
          -4.194027174554883,
          -3.992376759798803,
          -7,
          -7,
          -4.485555814223788,
          -3.726111136977972,
          -7,
          -4.43713196609433,
          -7,
          -7,
          -7,
          -4.372912002970106,
          -7,
          -7,
          -4.5144592024546775,
          -4.311817411695856,
          -5.70642673312701,
          -7,
          -7,
          -7,
          -3.9554087118535692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3217640810754965,
          -7,
          -7,
          -7,
          -4.2139690824147,
          -7,
          -4.296127472928034,
          -4.487265674419202,
          -7,
          -3.563129908519703,
          -4.256938924930791,
          -7,
          -5.046506870227673,
          -7,
          -7,
          -4.60794801604128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.213133908974258,
          -7,
          -3.405204019876869,
          -7,
          -7,
          -3.8650842245566794,
          -7,
          -3.3014640731432996,
          -7,
          -3.445059047392219,
          -7,
          -4.496147490722734,
          -3.1357685145678222,
          -7,
          -3.329194415088451,
          -2.949194774237982,
          -7,
          -3.3624824747511743,
          -7,
          -7,
          -2.5190984547466106,
          -7,
          -7,
          -7,
          -2.920905604164024,
          -7,
          -4.011528153857539,
          -7,
          -2.792391689498254,
          -7,
          -3.102612192216802,
          -4.486798729097594,
          -7,
          -2.5349774634615505,
          -3.157809218605523,
          -3.075911761482778,
          -3.4626974081017172,
          -7,
          -3.2076343673889616,
          -3.5514011980984597,
          -7,
          -7,
          -7,
          -7,
          -3.6806074289917876,
          -7,
          -2.934750874663579,
          -7,
          -2.688864568054792,
          -3.2706788361447066,
          -3.1399240420952785,
          -7,
          -7,
          -3.238798562713917,
          -3.5141491344754376,
          -7,
          -3.668416980992571,
          -7,
          -7,
          -7,
          -3.3261309567107946,
          -3.3298924476951335,
          -2.855670556918036,
          -7,
          -2.2466079886517525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8016780590358934,
          -7,
          -7,
          -7,
          -3.3513283280710824,
          -3.3152354096177272,
          -2.7577754910119254,
          -4.0042783722001625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1245042248342823,
          -7,
          -7,
          -3.6604480513212954,
          -7,
          -7,
          -7,
          -3.8302164400865957,
          -2.4756711883244296,
          -3.461708570064366,
          -4.546332868319189,
          -3.1823195271506552,
          -3.4435758797502576,
          -7,
          -3.248218561190075,
          -7,
          -3.1650463796852826,
          -3.664735968518705,
          -7,
          -2.6627578316815743,
          -7,
          -7,
          -3.2483761775934874,
          -3.035029282202368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3237332367838985,
          -7,
          -7,
          -7,
          -2.979548374704095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2310871205848226,
          -7,
          -7,
          -4.498269190440657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.78354628227035,
          -7,
          -7,
          -4.162664863178352,
          -7,
          -7,
          -7,
          -4.189967298351272,
          -3.905418068702542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8573928109209015,
          -7,
          -7,
          -7,
          -3.8555471106407366,
          -7,
          -7,
          -7,
          -2.669316880566112,
          -3.0696680969115957,
          -7,
          -4.864683103542188,
          -2.6807886115066824,
          -7,
          -7,
          -2.8000293592441343,
          -7,
          -7,
          -7,
          -7,
          -3.3163897510731957,
          -7,
          -7,
          -7,
          -7,
          -3.2889196056617265,
          -7,
          -3.6203442997544935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.606322236836919,
          -7,
          -3.415696569589914,
          -3.7790912038454993,
          -7,
          -7,
          -3.40705081480425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.647614401744664,
          -7,
          -2.8359018556035758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4095950193968156,
          -2.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -3.974516809880292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.361444508086328,
          -7,
          -3.3386556655787003,
          -7,
          -3.131083752984664,
          -3.7722116519480173,
          -7,
          -7,
          -3.0409976924234905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9749719942980692,
          -3.1252150179256852,
          -4.4518247990667295,
          -7,
          -7,
          -7,
          -4.993034818671166,
          -7,
          -3.41161970596323,
          -7,
          -7,
          -7,
          -3.516755660221549,
          -7,
          -7,
          -7,
          -4.063014183518913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6648299411430907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2540644529143377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071756239988947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0662194023097737,
          -7,
          -7,
          -7,
          -7,
          -3.7094569171992786,
          -7,
          -3.356694958541127,
          -2.9579662575849297,
          -7,
          -3.331832044436249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3434085938038574,
          -4.352298314534367,
          -7,
          -7,
          -2.3404441148401185,
          -1.4114424790756848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.599063905879417,
          -1.9454685851318196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1705550585212086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2425215516658765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.876217840591642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9553440813219995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4518759451856647,
          -7,
          -4.709210580717843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.046446386384199,
          -3.697316541732383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3925210899319325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2935835134961167,
          -3.917190308511564,
          -7,
          -7,
          -7,
          -4.529138288111391,
          -7,
          -7,
          -7,
          -7,
          -2.948412965778601,
          -3.5618166643189575,
          -7,
          -3.6438966143222347,
          -7,
          -7,
          -7,
          -7,
          -3.3180633349627615,
          -5.226204736579822,
          -3.5560611590095323,
          -7,
          -7,
          -7,
          -3.7378285058957847,
          -3.1158323168282034,
          -7,
          -7,
          -2.252479604919136,
          -1.8930215923314397,
          -2.6697816152085365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.554664780556801,
          -3.6841628756550566,
          -4.875169533985348,
          -7,
          -3.7763379096201755,
          -7,
          -3.281412167517624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.622214022966295,
          -7,
          -3.654850090561394,
          -2.250420002308894,
          -7,
          -3.747478395341935,
          -7,
          -7,
          -7,
          -7,
          -4.067758781177132,
          -7,
          -7,
          -3.648371492507466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.101437735138849,
          -7,
          -7,
          -4.62032347976926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.528993787130841,
          -4.096736260462469,
          -7,
          -7,
          -7,
          -7,
          -4.170452410963683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.449046203903854,
          -7,
          -4.13437900863513,
          -7,
          -7,
          -4.588077398322267,
          -7,
          -7,
          -7,
          -7,
          -4.757757790148306,
          -7,
          -7,
          -7,
          -4.3595177052971295,
          -3.979366242396161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.689539710978861,
          -5.186590504345145,
          -7,
          -7,
          -7,
          -7,
          -4.477246699451068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.316976239321548,
          -7,
          -7,
          -7,
          -4.207822799001508,
          -7,
          -4.294862862277967,
          -4.484000713927198,
          -7,
          -4.243420059770134,
          -4.954840458899287,
          -7,
          -5.347091819999941,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4238116524224047,
          -7,
          -3.3316008061043147,
          -7,
          -3.222456336679247,
          -4.337718762057449,
          -7,
          -7,
          -7,
          -3.7279477095447966,
          -7,
          -4.193493313706491,
          -7,
          -7,
          -7,
          -4.118661462854496,
          -7,
          -7,
          -7,
          -7,
          -3.4586378490256493,
          -7,
          -7,
          -7,
          -3.4927603890268375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5620023044114753,
          -7,
          -7,
          -7,
          -3.2253609803726597,
          -7,
          -3.125481265700594,
          -7,
          -2.8391636829146503,
          -3.642711770167333,
          -7,
          -7,
          -7,
          -2.8273692730538253,
          -3.659250468772661,
          -7,
          -7,
          -7,
          -7,
          -3.2135177569963047,
          -3.3727739637205776,
          -7,
          -7,
          -3.03261876085072,
          -7,
          -7,
          -3.536211120636487,
          -7,
          -7,
          -7,
          -2.9747419045009504,
          -3.7339386976260975,
          -3.121067167467729,
          -7,
          -2.8363241157067516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1831274287013995,
          -7,
          -7,
          -7,
          -3.513913880331417,
          -7,
          -3.315130317183602,
          -3.823169812057419,
          -7,
          -3.716086853774832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.44870631990508,
          -7,
          -7,
          -7,
          -2.9585638832219674,
          -7,
          -4.049153390706091,
          -3.2730012720637376,
          -3.250450499446079,
          -7,
          -7,
          -7,
          -7,
          -3.1878026387184195,
          -7,
          -3.1416587697865523,
          -3.341335585180992,
          -7,
          -7,
          -7,
          -3.0153597554092144,
          -3.6918061854702637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.939091165366704,
          -7,
          -3.245759355967277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3592661646067485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.656577291396114,
          -4.173795601863544,
          -3.0277572046905536,
          -7,
          -7,
          -3.296445794206396,
          -7,
          -7,
          -4.388160430275948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.538975672273216,
          -7,
          -2.591621038213319,
          -3.311753861055754,
          -7,
          -3.32990612340021,
          -2.8175653695597807,
          -1.8993153129766798,
          -7,
          -7,
          -7,
          -3.565278829319486,
          -7,
          -3.597695185925512,
          -3.78660947264866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.730378468587643,
          -2.660865478003869,
          -7,
          -7,
          -4.4491234131845605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1444704211395553,
          -7,
          -7,
          -4.42609465941348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.935003151453655,
          -3.2016701796465816,
          -4.385016090135945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.968716377466786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6047299167977918,
          -7,
          -7,
          -3.011993114659257,
          -2.382145741488806,
          -3.320457868916649,
          -7,
          -3.324840768927558,
          -4.753674963343975,
          -7,
          -3.3564720392787937,
          -2.632457292184724,
          -4.294492679842112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6952408214435173,
          -2.757547853469244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1061908972634154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.540529679695608,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.900913067737669,
          -3.356599435724971,
          -3.2412973871099933,
          -7,
          -3.2022157758011316,
          -7,
          -3.7277637027000337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7573960287930244,
          -7,
          -3.6163704722912695,
          -7,
          -7,
          -7,
          -7,
          -3.9914649297659683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6384892569546374,
          -7,
          -2.703004620444392,
          -3.619719265611727,
          -7,
          -3.353916230920363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.034548247098469,
          -3.025510672852581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1522883443830563,
          -7,
          -1.9967305154351527,
          -2.219562697434782,
          -3.0919013313099013,
          -4.128269995169626,
          -5.712882777777072,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9571281976768131,
          -3.0049658871068234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.942052721014709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.507248513918787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8336060353248835,
          -7,
          -7,
          -7,
          -7,
          -2.7902851640332416,
          -3.287667391274135,
          -7,
          -3.4779889762508893,
          -3.7063763558396903,
          -7,
          -7,
          -2.9556877503135057,
          -7,
          -2.819872821950546,
          -2.962527174843811,
          -2.932811868611632,
          -7,
          -7,
          -3.1271047983648077,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.886377906758572,
          -7,
          -3.9822712330395684,
          -7,
          -7,
          -3.2728854447575695,
          -7,
          -7,
          -7,
          -3.4764693239263837,
          -3.2591158441850663,
          -7,
          -7,
          -5.828336310392704,
          -7,
          -7,
          -7,
          -7,
          -3.4449031627954616,
          -7,
          -7,
          -7,
          -3.3898745583909853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.279894980011638,
          -7,
          -7,
          -4.379196703832135,
          -7,
          -5.176266099768159,
          -7,
          -7,
          -3.6200360619998735,
          -3.1642040993240332,
          -7,
          -3.028977705208778,
          -7,
          -3.521399628115376,
          -2.9965846321681098,
          -3.4101020766428607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024376190894477,
          -7,
          -7,
          -4.593872854295451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0224283711854865,
          -7,
          -4.764568389965006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.474798818800631,
          -7,
          -7,
          -4.378316122321516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.991044343044156,
          -7,
          -7,
          -7,
          -3.67641923171836,
          -7,
          -4.95489346306892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.347296831998954,
          -7,
          -7,
          -4.3055555688380585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.166000639801866,
          -3.330819466495837,
          -7,
          -7,
          -3.2489536154957075,
          -4.038739348104749,
          -3.361727836017593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.224014811372864,
          -2.9043097257675417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.616944389757526,
          -7,
          -7,
          -7,
          -3.1514720011315966,
          -7,
          -3.4435758797502576,
          -7,
          -3.17260293120986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6787914343662442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6479225684382985,
          -3.439332693830263,
          -7,
          -3.1699681739968923,
          -7,
          -7,
          -2.8847953639489807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.783760695743924,
          -3.8509217930432844,
          -3.603144372620182,
          -3.33665982345442,
          -7,
          -7,
          -3.4235735197327357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.586587304671755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.64777405026883,
          -7,
          -7,
          -7,
          -7,
          -3.63002085111341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9818186071706636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.270911639410481,
          -2.859738566197147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.72783935939594,
          -7,
          -7,
          -7,
          -7,
          -3.9138932892309164,
          -7,
          -3.0318122713303706,
          -7,
          -2.537189226243645,
          -7,
          -7,
          -3.893095666096228,
          -7,
          -7,
          -3.8395211092255126,
          -3.1065308538223815,
          -2.6334684555795866,
          -7,
          -3.3406423775607053,
          -3.1734776434529945,
          -7,
          -4.021390150745712,
          -3.1065308538223815,
          -7,
          -7,
          -7,
          -2.8471612005780305,
          -2.8992731873176036,
          -7,
          -7,
          -3.378216149749878,
          -7,
          -4.1874267075268845,
          -7,
          -2.9978230807457256,
          -7,
          -3.144574207609616,
          -7,
          -7,
          -3.1027766148834415,
          -7,
          -3.157456768134226,
          -7,
          -3.5108665907336367,
          -7,
          -3.60916737430202,
          -3.801403710017355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6317818729476508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4403579968152878,
          -2.6416723732246865,
          -7,
          -7,
          -4.523700954526099,
          -7,
          -3.0746336182969043,
          -7,
          -7,
          -3.5814945422908995,
          -7,
          -7,
          -7,
          -7,
          -3.0464951643347082,
          -7,
          -3.557266528869904,
          -3.286905352972375,
          -2.954483717155552,
          -4.189242687350635,
          -7,
          -4.024239306069092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4305587695227575,
          -3.1998922435263193,
          -7,
          -2.6972293427597176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6727134419961223,
          -7,
          -3.1074599027639307,
          -7,
          -7,
          -3.0546130545568877,
          -2.7113250813570287,
          -7,
          -7,
          -3.029586671630457,
          -4.15318963999602,
          -3.0115704435972783,
          -3.068371418032643,
          -2.5514499979728753,
          -3.880382600567092,
          -7,
          -3.4619484952037616,
          -3.14040328016663,
          -2.8221680793680175,
          -7,
          -3.699859396707893,
          -3.4886916983169405,
          -7,
          -7,
          -4.369994661608428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.732393759822968,
          -3.436639631692661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.391816923613249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8441042306975133,
          -7,
          -7,
          -7,
          -3.204662511748219,
          -7,
          -7,
          -3.252610340567373,
          -7,
          -7,
          -3.291146761731886,
          -7,
          -2.7783924580998707,
          -2.9934362304976116,
          -3.7280887286803175,
          -7,
          -7,
          -7,
          -3.0692980121155293,
          -2.9283958522567137,
          -7,
          -7,
          -3.45117215751254,
          -7,
          -7,
          -7,
          -7,
          -3.4448925760099955,
          -7,
          -7,
          -3.295786940251609,
          -7,
          -2.788521887222473,
          -7,
          -7,
          -2.862429556106009,
          -2.3899251194809668,
          -3.641275757231913,
          -7,
          -3.675044735955893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.765594055319445,
          -7,
          -7,
          -7,
          -7,
          -2.572561834368586,
          -2.7651094972067183,
          -7,
          -7,
          -4.35837273025802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1522883443830563,
          -7,
          -2.202079441007388,
          -1.8843159861168621,
          -2.0711346042025887,
          -7,
          -3.532818053867167,
          -5.713061076503902,
          -7,
          -2.944975908412048,
          -7,
          -7,
          -7,
          -2.525692524505011,
          -3.048247531803974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2629254693318317,
          -4.164902812078488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.028977705208778,
          -7,
          -3.0576661039098294,
          -3.6916118742144164,
          -7,
          -7,
          -2.821316970591097,
          -7,
          -7,
          -7,
          -4.01632285401379,
          -7,
          -4.234314768012676,
          -7,
          -4.711891549880579,
          -7,
          -7,
          -7,
          -2.8813846567705728,
          -7,
          -3.061640934061686,
          -3.246662682245667,
          -7,
          -7,
          -7,
          -7,
          -2.337601863321786,
          -2.469822015978163,
          -2.744762237065578,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3311741373868458,
          -7,
          -7,
          -7,
          -5.132234066681874,
          -3.898176483497677,
          -7,
          -3.1414049753724838,
          -7,
          -7,
          -2.8981764834976764,
          -7,
          -3.9603756314101584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.351349160460369,
          -3.5747833931757764,
          -7,
          -7,
          -7,
          -3.7623033632877685,
          -7,
          -7,
          -7,
          -3.1245042248342823,
          -7,
          -7,
          -7,
          -3.406028944963615,
          -3.049605612594973,
          -2.6567368704836722,
          -7,
          -7,
          -4.380476562832904,
          -4.087870112690256,
          -5.176388793597084,
          -7,
          -7,
          -3.219201843901402,
          -2.7014240597913446,
          -7,
          -2.8058405488146727,
          -2.8674674878590514,
          -3.24699069924155,
          -2.4869261276199506,
          -2.4957891254243636,
          -3.040602340114073,
          -7,
          -7,
          -7,
          -2.90687353472207,
          -2.426917713880816,
          -2.7634279935629373,
          -2.954145988829548,
          -7,
          -3.462779029617742,
          -7,
          -7,
          -7,
          -4.772549064918772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.719555007041931,
          -4.998115421830749,
          -4.582222499269305,
          -7,
          -7,
          -4.923010742963713,
          -7,
          -7,
          -7,
          -7,
          -4.275978986467148,
          -7,
          -7,
          -7,
          -4.658993413729996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325043347403704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9469432706978254,
          -7,
          -4.1120945993276115,
          -3.413132050434872,
          -7,
          -7,
          -7,
          -4.934654971046216,
          -7,
          -3.5046067706419537,
          -4.141543834220653,
          -4.117952749892627,
          -4.6812864740280835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292977818238843,
          -7,
          -5.7065010076195035,
          -7,
          -7,
          -7,
          -4.9559137362541525,
          -7,
          -7,
          -7,
          -4.219741661046302,
          -7,
          -7,
          -7,
          -4.783346067476675,
          -7,
          -7,
          -7,
          -4.199683885691952,
          -4.187436109773708,
          -2.7570162347313003,
          -4.6429588794097905,
          -4.956365355664486,
          -3.2665844470668635,
          -4.444593175946113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7197454925295768,
          -4.470189906285553,
          -3.371806458507416,
          -3.8850217948622974,
          -7,
          -7,
          -7,
          -7,
          -3.0184924534014725,
          -7,
          -7,
          -7,
          -4.496749807394558,
          -7,
          -3.0199466816788423,
          -7,
          -3.82791825674535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.574956775764507,
          -2.834929096460576,
          -7,
          -7,
          -7,
          -7,
          -4.597300193190778,
          -3.9807932332478377,
          -7,
          -7,
          -7,
          -3.3384564936046046,
          -7,
          -3.1742052269401473,
          -7,
          -2.6268534146667255,
          -3.9516046200484136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.290479813330673,
          -7,
          -7,
          -7,
          -7,
          -2.92272545799326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.466391484406633,
          -3.47158505418519,
          -7,
          -2.527114111639805,
          -7,
          -3.8530286147129895,
          -7,
          -7,
          -7,
          -3.347720217034038,
          -3.330210784571528,
          -7,
          -7,
          -3.321253121961899,
          -3.589736410795124,
          -3.147985320683805,
          -3.3771240423464564,
          -3.8300109359361176,
          -7,
          -2.9628426812012423,
          -3.17260293120986,
          -7,
          -7,
          -7,
          -7,
          -2.776701183988411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.246350836456256,
          -3.1905184513367484,
          -3.456973013635818,
          -7,
          -3.269045709657623,
          -7,
          -3.3498600821923312,
          -7,
          -3.6924062348336304,
          -7,
          -3.2711443179490782,
          -3.131297796597623,
          -4.095413464448447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.617000341120899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.543322900646912,
          -7,
          -7,
          -4.198409633537761,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6173498739219823,
          -2.6599162000698504,
          -7,
          -5.204193263666834,
          -7,
          -7,
          -7,
          -7,
          -3.906227263052359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.341217992586227,
          -7,
          -7,
          -7,
          -7,
          -2.7788744720027396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.044539760392411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.606483476807796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.412124406173317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.614158709509175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.928917920853296,
          -7,
          -4.012288739834607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.344588742578714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.427179448528025,
          -7,
          -7,
          -7,
          -3.5219222448835,
          -7,
          -7,
          -7,
          -4.75310024118681,
          -7,
          -7,
          -2.8948696567452528,
          -4.391080730225895,
          -7,
          -7,
          -3.586812269443376,
          -7,
          -7,
          -4.29578694025161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.714413592287121,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.040602340114073,
          -7,
          -7,
          -7,
          -7,
          -4.410660690360591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276323911020188,
          -7,
          -7,
          -4.206954950594866,
          -7,
          -3.660770643527697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0689276116820716,
          -2.857633985150008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067925949681522,
          -7,
          -3.743666521446213,
          -7,
          -2.859738566197147,
          -7,
          -7,
          -3.2506639194632436,
          -3.00987563371216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.202079441007388,
          -7,
          -2.385606273598312,
          -2.7242212379280453,
          -3.56062387454993,
          -7,
          -5.7128196828643425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.290034611362518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.193958978019187,
          -4.941680347291402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6654871807828107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2842953482305264,
          -7,
          -7,
          -7,
          -7,
          -3.1420764610732848,
          -7,
          -7,
          -3.0962145853464054,
          -7,
          -3.0963885466873666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.617629297757842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5032684897703463,
          -7,
          -7,
          -3.5653755027140734,
          -2.928907690243953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.527256659663878,
          -3.859018143888894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.03261876085072,
          -7,
          -7,
          -4.55484638228861,
          -7,
          -5.273133856405366,
          -7,
          -7,
          -3.762449313089825,
          -3.2836780569110555,
          -7,
          -7,
          -7,
          -3.5114822886260013,
          -2.923983747103962,
          -3.7049222912234017,
          -3.2812606870550125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023348501505407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.080987046910887,
          -7,
          -4.764288242139756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.438083288767236,
          -4.660708990011405,
          -4.678682232836399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.487665715909312,
          -7,
          -7,
          -3.669502834104343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8971210359055855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.870021339171948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3153404766272883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9262909868848634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.068113570998315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2936939507457654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1961761850399735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2530955858490316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.967547976218862,
          -7,
          -7,
          -7,
          -7,
          -2.9834007381805385,
          -2.909020854211156,
          -2.6190933306267428,
          -3.04766419460156,
          -4.360084662821042,
          -7,
          -7,
          -7,
          -7,
          -4.217352319881362,
          -7,
          -2.7649229846498886,
          -7,
          -2.8926510338773004,
          -7,
          -7,
          -3.8980666606416348,
          -7,
          -3.383366482755039,
          -3.585147789861776,
          -2.532117116248804,
          -7,
          -7,
          -3.0567143295163945,
          -2.897352134344313,
          -7,
          -3.9639176242328817,
          -7,
          -7,
          -7,
          -7,
          -2.865301426102544,
          -7,
          -7,
          -7,
          -3.3942765267678214,
          -7,
          -3.9377873618458636,
          -7,
          -2.733598460961339,
          -3.371437317404101,
          -2.2645226857355865,
          -3.660770643527697,
          -2.502882116864084,
          -3.132579847659737,
          -7,
          -7,
          -7,
          -3.35286826894075,
          -7,
          -3.61394747678035,
          -3.506369717095504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.438067450453494,
          -7,
          -7,
          -7,
          -3.550457673388806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6089148379737113,
          -7,
          -7,
          -4.523993450315614,
          -7,
          -2.7890516223748403,
          -7,
          -7,
          -7,
          -7,
          -2.984077033902831,
          -7,
          -7,
          -3.0802656273398448,
          -7,
          -7,
          -3.0051805125037805,
          -7,
          -3.9755568958997354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6057358938767465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.681467373533731,
          -7,
          -3.111598524880394,
          -7,
          -7,
          -3.904589330951372,
          -7,
          -7,
          -2.699548677948487,
          -7,
          -3.0259466802571935,
          -7,
          -7,
          -1.9000844768522183,
          -2.4193655941906242,
          -2.952211058108669,
          -7,
          -3.333619979091512,
          -4.755981511395073,
          -3.048053173115609,
          -7,
          -1.8226295221051456,
          -3.848584949753332,
          -3.179838928023187,
          -7,
          -7,
          -2.575187844927661,
          -7,
          -3.4586378490256493,
          -3.1998922435263193,
          -7,
          -7,
          -4.07059193151204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1334590674872085,
          -3.4437322414015967,
          -4.160288413131288,
          -3.7014816356209272,
          -7,
          -7,
          -7,
          -7,
          -2.720159303405957,
          -7,
          -7,
          -7,
          -7,
          -3.0888445627270045,
          -3.8452221064290137,
          -7,
          -7,
          -7,
          -3.228400358703005,
          -2.885361220031512,
          -7,
          -2.9724342769573653,
          -7,
          -3.1094097905463656,
          -7,
          -7,
          -7,
          -7,
          -3.7993145063228546,
          -7,
          -7,
          -7,
          -3.101403350555331,
          -7,
          -7,
          -7,
          -3.455758203104137,
          -7,
          -3.6827090220210574,
          -7,
          -7,
          -3.399273655675515,
          -7,
          -7,
          -3.3055663135153037,
          -7,
          -7,
          -7,
          -2.8333596367430127,
          -2.8884603180353863,
          -2.4795273244855407,
          -3.6501131644435714,
          -7,
          -7,
          -7,
          -7,
          -3.33665982345442,
          -7,
          -7,
          -3.7806053058389697,
          -7,
          -7,
          -7,
          -2.9602328731285126,
          -7,
          -3.029789470831856,
          -2.6419315033656545,
          -2.90687353472207,
          -7,
          -3.4169731726030363,
          -7,
          -3.864748335629659,
          -7,
          -7,
          -7,
          -7,
          -1.9967305154351527,
          -1.8843159861168621,
          -2.385606273598312,
          -7,
          -1.953393241054481,
          -3.1259148015308593,
          -3.234390722392192,
          -5.713136747231231,
          -7,
          -7,
          -3.039017321997412,
          -7,
          -2.8102325179950842,
          -2.8825245379548803,
          -2.4095574360397847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.287801729930226,
          -4.0983915294572775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6994908452722046,
          -7,
          -7,
          -2.87306213165041,
          -7,
          -7,
          -7,
          -4.018201022496291,
          -7,
          -4.059336177389288,
          -7,
          -4.411602872517545,
          -7,
          -7,
          -7,
          -2.7948799895623955,
          -7,
          -3.36726271478424,
          -2.885361220031512,
          -7,
          -7,
          -7,
          -7,
          -2.509740015570382,
          -2.8825245379548803,
          -2.9810631808506,
          -7,
          -7,
          -7,
          -2.941511432634403,
          -7,
          -7,
          -3.375297738217339,
          -3.6369390072874714,
          -7,
          -7,
          -7,
          -5.132522236611947,
          -3.601951404133522,
          -7,
          -3.1134085068181756,
          -7,
          -3.1122697684172707,
          -2.8285524909500306,
          -7,
          -3.6635124704151556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.828531006645101,
          -3.579954994822772,
          -7,
          -7,
          -7,
          -3.7690078709437738,
          -7,
          -7,
          -7,
          -3.440279213235588,
          -2.9474337218870508,
          -7,
          -7,
          -3.7148325124333326,
          -2.781396305196791,
          -2.4614985267830187,
          -7,
          -7,
          -4.381018760788876,
          -4.0894635308401925,
          -4.796221528026575,
          -7,
          -3.503790683057181,
          -3.045531043985819,
          -2.484869032720402,
          -7,
          -2.5330726600488123,
          -2.4382785804926073,
          -3.081587315813503,
          -2.0179524814025043,
          -2.6930871042673523,
          -3.0580462303952816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.184975190698261,
          -7,
          -3.3913965882976815,
          -7,
          -7,
          -4.597201388849116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.615844882874702,
          -2.0102347031678383,
          -7,
          -4.066665027256672,
          -3.1167737269758997,
          -7,
          -4.33209492844608,
          -7,
          -5.235917117994777,
          -7,
          -3.516667559099043,
          -7,
          -4.0603767213953565,
          -3.983057679286212,
          -7,
          -4.138870857319504,
          -7,
          -7,
          -3.805636766305935,
          -7,
          -7,
          -7,
          -3.8783317390376957,
          -5.011071162077137,
          -7,
          -7,
          -3.0035466931021317,
          -7,
          -4.956346147381247,
          -7,
          -7,
          -4.082964793777752,
          -7,
          -7,
          -7,
          -7,
          -4.783989286831195,
          -7,
          -4.218640521413849,
          -7,
          -4.297098172131839,
          -7,
          -2.085290578230065,
          -3.830381365856538,
          -4.9567973175878075,
          -7,
          -5.3478859466608935,
          -7,
          -7,
          -4.609839764305466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.471511736976963,
          -7,
          -4.188647295999718,
          -7,
          -7,
          -4.345765693114489,
          -7,
          -3.338257230246256,
          -7,
          -7,
          -7,
          -4.798415828201429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.378851946448881,
          -7,
          -7,
          -3.3121068025476728,
          -7,
          -7,
          -2.818005830532529,
          -2.5899496013257077,
          -7,
          -7,
          -7,
          -7,
          -4.297235101842306,
          -4.0158764651452445,
          -7,
          -7,
          -7,
          -3.1666274307398634,
          -7,
          -2.8855025689284157,
          -7,
          -3.2528530309798933,
          -3.777644277696485,
          -7,
          -7,
          -2.9336559786575473,
          -2.765668554759014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9934362304976116,
          -7,
          -7,
          -3.5616975326539935,
          -3.537063142781617,
          -7,
          -7,
          -7,
          -7,
          -3.427972713608209,
          -3.3609718837259357,
          -3.1217122261613652,
          -3.484584529282843,
          -7,
          -2.130828409188458,
          -7,
          -7,
          -3.028977705208778,
          -7,
          -7,
          -3.063520999689991,
          -3.3362595520141936,
          -7,
          -7,
          -3.025988181951707,
          -3.7870250509366583,
          -2.6788217632521745,
          -7,
          -3.3545565944718043,
          -3.1866738674997452,
          -2.5705429398818973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.531555550483368,
          -7,
          -7,
          -7,
          -3.375114684692225,
          -7,
          -7,
          -2.988112840268352,
          -7,
          -3.3585059114902354,
          -3.203576774977973,
          -7,
          -7,
          -7,
          -7,
          -3.9208534961212593,
          -3.1007150865730817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3324384599156054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0884904701823963,
          -3.0755469613925306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.255272505103306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.360072477970273,
          -3.9478256844424506,
          -3.6061663146076204,
          -2.64157847058676,
          -2.742829137742972,
          -7,
          -7,
          -3.9068735347220707,
          -3.6652056284346006,
          -3.4721162341073866,
          -7,
          -3.4474681309497557,
          -7,
          -3.000596744744559,
          -3.8992731873176036,
          -2.7836058521877196,
          -3.335027835149797,
          -7,
          -2.425715319905376,
          -2.834929096460576,
          -3.4577810036026517,
          -3.6124659639531425,
          -7,
          -2.978043493909963,
          -3.9457147140598603,
          -7,
          -3.3889834112903867,
          -3.6339731557896737,
          -3.902764143924086,
          -7,
          -3.9181352261663593,
          -3.196728722623287,
          -3.6087933739869307,
          -4.020982442918419,
          -7,
          -3.5105003274058215,
          -3.136984656238368,
          -3.530396288371289,
          -7,
          -2.7731070022450126,
          -3.50478791537113,
          -2.8985756053931113,
          -3.373463721632369,
          -3.436639631692661,
          -2.631595948357801,
          -7,
          -3.9430491110084067,
          -3.2642982471902164,
          -1.934960948015314,
          -3.054740694376147,
          -3.1474795756131133,
          -2.7190123982977616,
          -7,
          -7,
          -3.309459822461211,
          -3.1523393149226258,
          -3.235679918564692,
          -2.980609293526336,
          -3.602168551378997,
          -3.926085086925144,
          -3.268304892028948,
          -3.2508467674689916,
          -2.904282657645628,
          -3.599610188318619,
          -3.9985644582609416,
          -3.8972971220594963,
          -7,
          -2.133764262253283,
          -7,
          -4.005652315355074,
          -3.6302799104626615,
          -7,
          -2.2751984011530757,
          -7,
          -3.9112108931375533,
          -3.2203986832211235,
          -3.500556632954331,
          -2.7366620446156418,
          -3.292422223682128,
          -4.009408399151867,
          -3.32433390894172,
          -3.722428241979694,
          -7,
          -3.2677347723218557,
          -2.783379443019426,
          -2.814726625496455,
          -4.03734680356809,
          -7,
          -7,
          -7,
          -7,
          -2.6207037602596985,
          -3.6924503234060153,
          -3.273695587930092,
          -7,
          -7,
          -7,
          -7,
          -3.5951102557780383,
          -2.031146050659409,
          -3.8992731873176036,
          -2.6103939697123133,
          -7,
          -3.3693643087812357,
          -2.8415402150435964,
          -3.445396605524949,
          -7,
          -2.9411137270371017,
          -7,
          -2.460718578810624,
          -3.0876800300462937,
          -7,
          -2.2969392795618266,
          -1.7899822259450318,
          -2.9893385599532865,
          -3.456922464315863,
          -2.2956652566996816,
          -2.250420002308894,
          -2.774777568485786,
          -2.4299350126061854,
          -2.4162243170985684,
          -3.2257030210836604,
          -3.465035673747828,
          -3.3106083564585234,
          -2.433693655274977,
          -2.999130541287371,
          -7,
          -2.7457278780906513,
          -2.975431808509263,
          -7,
          -7,
          -3.2324596131257763,
          -7,
          -7,
          -7,
          -3.6023313405913373,
          -7,
          -3.0817792267675337,
          -3.328787200354535,
          -3.859418526033877,
          -3.1341416766583783,
          -7,
          -7,
          -3.8984509191983747,
          -3.9090744014009045,
          -2.9905854869038913,
          -3.4962606330422306,
          -3.150049945162385,
          -7,
          -7,
          -3.450608305051992,
          -2.934766324393461,
          -7,
          -7,
          -7,
          -3.9511431601075526,
          -7,
          -3.951968584492911,
          -3.357791963471643,
          -3.6961815871685237,
          -3.514769049216363,
          -3.666845449884052,
          -2.9441922712821746,
          -3.261548338444689,
          -3.920071124297524,
          -2.1300746957834047,
          -7,
          -7,
          -7,
          -3.4524509243568873,
          -3.213464629039556,
          -7,
          -7,
          -1.6380299897796193,
          -7,
          -4.122428876155531,
          -7,
          -3.802534284386976,
          -1.7360634606372156,
          -2.275234549433838,
          -1.8058864325858222,
          -2.248479278363012,
          -2.6945564538320075,
          -2.385606273598312,
          -7,
          -2.9672670915597856,
          -3.244771761495295,
          -2.6768379494528953,
          -3.7675268994083817,
          -7,
          -7,
          -7,
          -4.214234349025624,
          -3.3714834772045275,
          -7,
          -7,
          -3.2061960072022204,
          -7,
          -2.97236816423355,
          -3.921842481405858,
          -3.9576551669434914,
          -7,
          -3.919862253555538,
          -2.2387240528167367,
          -2.64106829099296,
          -7,
          -3.692582562274909,
          -2.1148654682308305,
          -2.452838323991646,
          -7,
          -3.594834355583318,
          -2.5120971148810134,
          -3.599063905879417,
          -2.219562697434782,
          -2.0711346042025887,
          -2.7242212379280453,
          -1.953393241054481,
          -7,
          -3.2728854447575695,
          -2.9592073594510024,
          -3.9129001120673457,
          -7,
          -7,
          -2.74350976472843,
          -3.243385345371658,
          -3.5959369062691735,
          -3.124775845633619,
          -2.397802841387041,
          -3.960565902818198,
          -7,
          -7,
          -7,
          -3.9035782936630543,
          -3.9095025414054154,
          -3.8945929479229555,
          -7,
          -2.4831592097169795,
          -2.2168693557411143,
          -7,
          -7,
          -7,
          -7,
          -3.1492191126553797,
          -3.225050696138049,
          -7,
          -3.6270584640009895,
          -3.3096301674258988,
          -3.968716377466786,
          -3.828788748184953,
          -0.8608732304564952,
          -2.369929101915837,
          -7,
          -7,
          -3.1258993255582284,
          -2.186270685219292,
          -2.7546833748650728,
          -7,
          -3.2251319824860447,
          -7,
          -7,
          -7,
          -2.4705068031677473,
          -4.111732856611098,
          -2.755401682048161,
          -2.5807522321540293,
          -7,
          -7,
          -3.926805310111606,
          -3.601897100353282,
          -2.413151784814023,
          -2.465977368285823,
          -2.3997602257103656,
          -7,
          -7,
          -7,
          -3.608312042697327,
          -3.659298054866162,
          -7,
          -2.325834813172621,
          -1.7588497781312729,
          -3.6436993646393145,
          -3.529558673021163,
          -3.1772478362556233,
          -3.1814178388212113,
          -3.0362295440862943,
          -7,
          -2.549820373239367,
          -3.90156729002845,
          -3.2320299376201334,
          -2.5062730374838087,
          -2.712602940444727,
          -1.4757725130086168,
          -2.022732383790295,
          -3.176830538595021,
          -3.670245853074124,
          -3.1868353002613485,
          -3.988157472556753,
          -2.932890707465984,
          -3.472493160747825,
          -7,
          -7,
          -7,
          -3.272405259414974,
          -3.0627323632053938,
          -7,
          -3.9243309847086785,
          -2.7681591079368206,
          -3.6089536992758626,
          -3.9789561652175918,
          -7,
          -7,
          -3.9271136119337604,
          -2.5391263033453906,
          -3.7628660424620133,
          -3.62598087331167,
          -3.394232727213359,
          -3.3884427945673337,
          -3.739550560964701,
          -7,
          -3.4351433255063055,
          -2.262773158853526,
          -2.3909351071033793,
          -3.8924285469452298,
          -2.820100366728689,
          -3.906927347308956,
          -2.351135733834349,
          -1.8944413421587214,
          -2.223305533047631,
          -2.864145820749306,
          -7,
          -7,
          -3.695350317569429,
          -2.8303212953577908,
          -3.6236110517531817,
          -3.2298353665572654,
          -2.656577291396114,
          -3.9139727115509713,
          -2.0129950311058975,
          -7,
          -3.8967466156074058,
          -2.34831422597073,
          -3.03005754376382,
          -4.416057729263038,
          -3.0234395345803486,
          -3.6246945312720813,
          -1.8942816190154128,
          -2.895422546039408,
          -3.5869059703826816,
          -2.419231714320627,
          -2.634838837899661,
          -3.4539677667583994,
          -3.5369685561577207,
          -2.7028319885284087,
          -2.9635883772282843,
          -2.5288208020102343,
          -3.179461076912763,
          -2.9099230813909673,
          -2.486831362034582,
          -3.5601219242961957,
          -2.8014816677051737,
          -7,
          -3.339859143610229,
          -2.9862905766469647,
          -2.637900340212178,
          -3.024658469643913,
          -4.4594226460511015,
          -3.1320707676294646,
          -3.4024906523461884,
          -7,
          -2.480039624936464,
          -3.3384166482463584,
          -3.378073856605894,
          -3.454128063868426,
          -3.884587698518654,
          -3.9706722426897194,
          -3.5914653093294784,
          -3.697374664655637,
          -3.0212744465031887,
          -3.4528210635348096,
          -2.9691290599776985,
          -1.9711211579147767,
          -3.4328090050331683,
          -2.171168871249555,
          -2.006348800031633,
          -2.4405429904293583,
          -3.5549885839573387,
          -7,
          -2.4141641972154555,
          -2.820479343292401,
          -2.9802100308700172,
          -3.16380716614717,
          -3.0926855629374908,
          -2.711980581220753,
          -7,
          -3.310505887547859,
          -7,
          -7,
          -7,
          -3.5883697622678854,
          -7,
          -7,
          -2.5350333608143405,
          -2.8390371820264875,
          -3.6594500427691656,
          -3.910090545594068,
          -2.858076971052982,
          -7,
          -2.955433843351917,
          -7,
          -4.162531217536575,
          -2.9054135689643457,
          -4.077694865886587,
          -7,
          -3.9761206182998157,
          -3.935343492830046,
          -3.6865724352823293,
          -3.7567881987681178,
          -3.3760291817281805,
          -7,
          -2.882957513408003,
          -2.978317496746751,
          -2.0698556251176052,
          -2.339368616002117,
          -3.0209268196192873,
          -7,
          -3.304450842619542,
          -7,
          -4.053923150548575,
          -2.516959135876479,
          -7,
          -7,
          -7,
          -3.893428841779545,
          -7,
          -7,
          -2.345177616542704,
          -3.082516096060493,
          -2.993148586498641,
          -7,
          -2.688981530831051,
          -3.322041995494101,
          -3.147632163939886,
          -3.3718525790917426,
          -7,
          -3.414572275617945,
          -7,
          -2.9527303663895785,
          -3.459392487759231,
          -3.4459672607227367,
          -7,
          -1.8417377870110583,
          -3.977952121201462,
          -2.9332341287148083,
          -7,
          -7,
          -2.157476477884026,
          -7,
          -7,
          -2.9639294220265584,
          -2.2489128117674015,
          -7,
          -3.645520514905874,
          -7,
          -3.9053100621160857,
          -3.4948036944645287,
          -1.7275234724556605,
          -2.912101803317774,
          -7,
          -3.7065044222332766,
          -2.824288582459545,
          -3.9351040211514494,
          -3.110126552632497,
          -7,
          -2.8407814386722263,
          -2.8692489806948664,
          -7,
          -3.6048737705526355,
          -3.292920299600006,
          -2.8738532112027317,
          -2.6224641411494662,
          -3.9196532823103643,
          -2.960280464436642,
          -7,
          -7,
          -3.666705136119899,
          -2.0671535473026466,
          -3.760874638052189,
          -7,
          -3.337698805964078,
          -2.772240187345505,
          -3.974695871909683,
          -2.572382394058745,
          -7,
          -3.9060116252714128,
          -2.882154404634234,
          -3.377215156263061,
          -2.0483114655495376,
          -2.970431410436084,
          -7,
          -1.5750966481019517,
          -7,
          -4.16025838620267,
          -3.618623286646383,
          -3.5228678877825708,
          -7,
          -3.6793824659429104,
          -3.183712614093036,
          -7,
          -7,
          -2.987347001159854,
          -1.9809552818196143,
          -2.8311543282301015,
          -3.288204496751523,
          -2.9932314749036784,
          -3.3143729000093276,
          -2.3416732509867053,
          -3.3432115901797474,
          -2.9800990996894745,
          -3.476940260975887,
          -7,
          -3.641027688177414,
          -7,
          -7,
          -3.065852517288246,
          -3.534914104429867,
          -3.932473764677153,
          -3.709439574132411,
          -2.349123534570507,
          -3.023938007498089,
          -2.726190294147344,
          -3.0053643927472597,
          -3.078166708168154,
          -3.531223374533027,
          -7,
          -3.1847860380463584,
          -7,
          -3.0716611234417877,
          -3.381440002819618,
          -3.1848688024687895,
          -7,
          -3.1852115157200926,
          -3.637739827119136,
          -2.8445582083948397,
          -3.6285421834125686,
          -7,
          -7,
          -3.896250562461638,
          -7,
          -7,
          -7,
          -2.8359757807651174,
          -7,
          -2.3790962360108145,
          -3.9175055095525466,
          -3.9229848157088827,
          -7,
          -7,
          -3.4511209284376467,
          -7,
          -3.993744756554462,
          -7,
          -2.7483172620858336,
          -3.8192806469724814,
          -7,
          -3.6239725120169965,
          -3.8965813275057326,
          -2.829223340479299,
          -7,
          -7,
          -2.9764730006818385,
          -3.325515663363148,
          -3.62490060220449,
          -3.730984038495525,
          -3.703248376536181,
          -3.6971421262754594,
          -7,
          -7,
          -3.50781091134775,
          -7,
          -3.5989363410431636,
          -3.9563605536733224,
          -7,
          -7,
          -7,
          -2.849910558301496,
          -7,
          -3.551693915127225,
          -3.0941215958405612,
          -7,
          -3.655810494495252,
          -7,
          -3.3028718360676903,
          -3.2347809450498164,
          -7,
          -7,
          -7,
          -2.741082046819302,
          -2.824103381054613,
          -3.0414913772349825,
          -7,
          -7,
          -7,
          -7,
          -2.3930308975144152,
          -2.8866921137603256,
          -7,
          -3.587598729721245,
          -2.5268295160483825,
          -3.3292961591399655,
          -3.1084522639030685,
          -7,
          -1.8578492061672989,
          -2.5030120284659807,
          -3.594060901270418,
          -2.748809143809384,
          -2.0794913456551614,
          -2.8627275283179747,
          -7,
          -2.6395971516419463,
          -2.2563912668960113,
          -2.6734816970733473,
          -7,
          -3.5521813388393357,
          -2.6879341244886357,
          -7,
          -3.5274979417079395,
          -3.269629674357553,
          -2.998041264363428,
          -2.941594242145933,
          -3.6422666189026733,
          -2.9188454761509606,
          -2.2814878879400813,
          -3.3281756614383227,
          -7,
          -2.8001276715211594,
          -3.385069776331935,
          -2.695175888216613,
          -2.865548114255671,
          -2.3180239378128364,
          -2.854492895404868,
          -7,
          -2.661917803408258,
          -2.384487822086762,
          -7,
          -3.1528995963937474,
          -2.7271344237604884,
          -7,
          -2.9123283579604102,
          -3.531223374533027,
          -2.7385580430539074,
          -7,
          -7,
          -3.4490153163477864,
          -7,
          -3.3274611093031417,
          -2.106316175379106,
          -7,
          -2.9166794974939214,
          -3.544096678207317,
          -7,
          -3.2525294136162577,
          -7,
          -7,
          -2.5468304527037255,
          -7,
          -3.5873741720730656,
          -7,
          -3.4680517914542377,
          -3.613418945034573,
          -2.6154590459716487,
          -2.7040844895524194,
          -2.993083360698062,
          -7,
          -2.8219869178471346,
          -3.515542700362122,
          -3.177728835841732,
          -3.55834850876162,
          -7,
          -3.7599698575543075,
          -2.9893608137762473,
          -2.962369335670021,
          -2.9953217377222296,
          -7,
          -3.4576548542184598,
          -7,
          -7,
          -7,
          -2.982479978288434,
          -3.5549734583332397,
          -2.6587266773270137,
          -2.9618006391916785,
          -2.9636107690505553,
          -2.5965324155337197,
          -3.127644629984225,
          -3.5804687839510017,
          -7,
          -3.657915936829955,
          -2.856204024709403,
          -7,
          -7,
          -2.765668554759014,
          -2.9740509027928774,
          -2.359835482339888,
          -3.6287974855667104,
          -2.9534697432534016,
          -3.300008202553813,
          -3.1266724494173004,
          -3.1555095470486334,
          -7,
          -3.5922152039562656,
          -2.7405600512253856,
          -2.654398706337697,
          -3.8538198458567634,
          -3.5631249603380444,
          -7,
          -2.547149643984906,
          -2.418589476122558,
          -7,
          -7,
          -3.94499233997717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7766064460534263,
          -3.0236125071907014,
          -2.3911620309865724,
          -3.1999744625304904,
          -7,
          -7,
          -3.5531545481696254,
          -3.576341350205793,
          -3.3502480183341627,
          -7,
          -2.6277219816490986,
          -7,
          -7,
          -7,
          -2.934441061817399,
          -7,
          -7,
          -3.7000110623221123,
          -3.361066449753942,
          -1.9646342876924021,
          -7,
          -7,
          -2.5696859588340777,
          -2.657693115600798,
          -2.651278013998144,
          -2.7703200637483674,
          -3.681060243631812,
          -3.5996647787884166,
          -3.2497739450348053,
          -3.5896145406312665,
          -7,
          -7,
          -2.6638055872727677,
          -7,
          -7,
          -7,
          -2.64288286077107,
          -7,
          -4.34584404319262,
          -7,
          -2.8415680152280833,
          -2.6987089682536345,
          -7,
          -3.895367288773362,
          -2.9378312132068283,
          -3.361727836017593,
          -2.139798385019995,
          -3.1963604423536847,
          -3.217220655644519,
          -3.1710435238543386,
          -7,
          -7,
          -7,
          -3.5867560391743902,
          -7,
          -3.234950927564595,
          -3.705350462885712,
          -3.9221716433242486,
          -3.570426178358973,
          -3.3298625829237687,
          -7,
          -3.9455670534423883,
          -7,
          -2.9751559784066894,
          -7,
          -3.5992278627737964,
          -2.535496659154243,
          -2.9475970826119045,
          -7,
          -2.8373516579578224,
          -4.110825310054965,
          -3.106063344915765,
          -7,
          -7,
          -2.0320428497705643,
          -1.9454685851318196,
          -3.0919013313099013,
          -7,
          -3.56062387454993,
          -3.1259148015308593,
          -3.2728854447575695,
          -7,
          -3.5220005831842696,
          -4.1970030557912565,
          -2.5397032389478253,
          -2.0492180226701815,
          -2.755330285717874,
          -7,
          -3.550105999347593,
          -3.2629254693318317,
          -2.81424759573192,
          -2.8342389905065373,
          -3.3766681858105296,
          -7,
          -3.5422027824340283,
          -7,
          -3.577261953585815,
          -7,
          -7,
          -7,
          -3.208959344396666,
          -7,
          -3.2493206766376344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7701152947871015,
          -3.5969817431335205,
          -3.394626764272209,
          -3.3588386859986983,
          -2.806632128612864,
          -7,
          -7,
          -3.545059584694003,
          -2.7114587737468,
          -3.7114697818743276,
          -3.108646659130256,
          -3.317436496535099,
          -3.1795597697530154,
          -7,
          -7,
          -2.882410684373968,
          -2.8309599038401214,
          -2.7285059613658573,
          -2.2011454740196874,
          -1.964912873816937,
          -3.52283531366053,
          -3.1915441607348294,
          -2.532117116248804,
          -3.261976191397813,
          -3.0532705666813786,
          -3.0757658782157344,
          -2.5836521085420436,
          -7,
          -7,
          -3.356312741150645,
          -7,
          -3.378942698613437,
          -7,
          -3.244854146866291,
          -2.7610252517113727,
          -3.649918718735419,
          -3.7647737169110402,
          -7,
          -3.3024407325003486,
          -3.1919697180283007,
          -7,
          -3.3500346963400576,
          -3.560026248912892,
          -7,
          -2.333321300752023,
          -3.6972293427597176,
          -4.083538451230139,
          -3.0989204787223303,
          -2.1057739676278633,
          -2.070389735763648,
          -3.5073160400764136,
          -2.9526310252827455,
          -3.8760413405134386,
          -2.621591675859218,
          -3.548020694905531,
          -7,
          -7,
          -2.509451444491814,
          -2.29867117295913,
          -7,
          -3.0058237530290275,
          -1.6363675209245252,
          -2.0662094144339336,
          -3.0151920417628344,
          -7,
          -3.907894835416283,
          -2.709693869727792,
          -2.460396637297684,
          -2.744714131783971,
          -7,
          -3.729020077925111,
          -2.794202774938725,
          -3.9085028907118207,
          -7,
          -2.887570418003753,
          -3.486980715548393,
          -2.4092566520389096,
          -7,
          -7,
          -3.2704459080179626,
          -3.0358964706119558,
          -2.638156336676239,
          -2.539023796211645,
          -2.9362623419034777,
          -7,
          -7,
          -2.5983214217685604,
          -3.1022049490355927,
          -3.6093809442507068,
          -3.61857102812013,
          -2.874017703862186,
          -3.586812269443376,
          -2.3968764042806954,
          -3.5425764762605296,
          -3.549371152333177,
          -3.5137706197390237,
          -4.492913970848403,
          -7,
          -7,
          -7,
          -3.8241746648835893,
          -4.02649240705284,
          -3.720376396378187,
          -3.4993901215945535,
          -3.797821311364024,
          -7,
          -4.365843511533739,
          -4.442620852656338,
          -4.408892612860078,
          -3.500774627565994,
          -7,
          -4.701058275039644,
          -3.858968070157197,
          -7,
          -7,
          -7,
          -4.9162679078390426,
          -7,
          -3.338737651026101,
          -7,
          -7,
          -4.686600523389447,
          -4.265100966221937,
          -7,
          -3.619886029358387,
          -3.941337481247457,
          -4.102313623466469,
          -7,
          -4.2709581850920975,
          -7,
          -4.181414796254284,
          -7,
          -4.196314385353599,
          -7,
          -3.302517863774588,
          -7,
          -3.0739364463090766,
          -3.244415385955302,
          -3.253418781757457,
          -3.2784677868708427,
          -4.387140569465301,
          -3.123851640967086,
          -3.3794992284803076,
          -3.110185527411162,
          -3.791620482692814,
          -3.788069335049545,
          -3.0124107871850496,
          -2.8551009287477815,
          -7,
          -2.926156591030201,
          -3.5096504795465826,
          -3.5637183399656776,
          -3.968249394107917,
          -3.2215772307066666,
          -7,
          -7,
          -3.25636548177581,
          -3.3779713645,
          -5.40801682313519,
          -7,
          -2.294135419126248,
          -7,
          -3.206109057007845,
          -7,
          -4.808526616621753,
          -4.176322821034989,
          -4.291790506385784,
          -7,
          -3.234661879645836,
          -3.3025329462561266,
          -3.690134715405524,
          -3.5491872461344083,
          -3.2884504482756363,
          -3.1971426649725627,
          -3.2241047564436607,
          -3.0094380184660547,
          -3.139249217571607,
          -2.4061503095447603,
          -3.824256037629682,
          -3.8254261177678233,
          -4.052405342192183,
          -7,
          -3.1444496608688994,
          -3.3383369465610726,
          -3.0565237240791006,
          -7,
          -3.5514499979728753,
          -7,
          -7,
          -7,
          -2.8877780013484498,
          -2.772566173085639,
          -2.2457761160975718,
          -7,
          -3.395937645080042,
          -3.000434077479319,
          -3.7407573233077707,
          -2.859909919319079,
          -3.5744942682853273,
          -3.334905905779908,
          -7,
          -3.2612562584760996,
          -2.3906306168140334,
          -7,
          -3.415974411376566,
          -3.915135906622012,
          -7,
          -3.2835273648616936,
          -7,
          -7,
          -3.9572240578431668,
          -7,
          -7,
          -2.9887372752888,
          -2.903496947335859,
          -7,
          -3.5231934946968355,
          -7,
          -7,
          -4.628971005345094,
          -3.278620528841023,
          -4.508071616599375,
          -7,
          -2.3645885137749625,
          -2.182482228792729,
          -7,
          -2.3754075333087856,
          -7,
          -2.8252406011131854,
          -2.4910270096971785,
          -7,
          -7,
          -7,
          -2.9682961150462557,
          -2.571708831808688,
          -7,
          -7,
          -2.598790506763115,
          -2.8291965263847696,
          -2.578110012727244,
          -3.202045350620628,
          -7,
          -7,
          -2.1378656637782965,
          -2.5699244335130755,
          -7,
          -3.7548832282521674,
          -7,
          -7,
          -7,
          -3.0162810245428306,
          -2.546018275861391,
          -2.7735670489260587,
          -7,
          -3.6706168864003255,
          -7,
          -7,
          -2.899163641477219,
          -3.954145988829548,
          -7,
          -2.8715729355458786,
          -2.306844433166965,
          -7,
          -7,
          -2.5674968911042226,
          -2.5829032804168657,
          -2.857151502687493,
          -2.0901513799358766,
          -2.8745005215682826,
          -2.8212222999064145,
          -3.151318765793846,
          -3.3501510667807066,
          -3.061389642585325,
          -3.884228769632604,
          -7,
          -3.644635503768153,
          -7,
          -7,
          -7,
          -7,
          -3.0225314677988853,
          -7,
          -3.3907114290470077,
          -3.71474876072506,
          -3.5454803047994106,
          -3.351966736536176,
          -3.2812038682570117,
          -2.6519486241231784,
          -7,
          -2.6842167951388807,
          -7,
          -2.151405212887992,
          -2.680732000090073,
          -7,
          -2.946206553842783,
          -2.90759048821862,
          -2.556704439233648,
          -2.6444698516678162,
          -2.714958109720149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.496098992132571,
          -7,
          -2.926085086925144,
          -7,
          -7,
          -7,
          -3.5870371177434555,
          -3.3157604906657347,
          -7,
          -3.440436766105774,
          -7,
          -3.5020718912066613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.538561167233788,
          -7,
          -7,
          -3.807940721215499,
          -7,
          -3.7496590320949,
          -7,
          -7,
          -7,
          -7,
          -3.8794972872494284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.16301220977483,
          -3.3754197310501364,
          -3.4298814190107647,
          -3.4388902778168413,
          -2.721939123715305,
          -3.653333134379342,
          -7,
          -7,
          -3.0565084720296545,
          -2.7907641378340196,
          -4.150203628762808,
          -4.1396902216529226,
          -7,
          -3.82630161371604,
          -7,
          -2.5979220307893294,
          -3.835310000869063,
          -7,
          -2.3034221151068124,
          -2.9162216765638913,
          -3.8449118739121406,
          -3.831805808674391,
          -7,
          -4.173448514744314,
          -7,
          -3.8341026557127935,
          -2.3041835419294423,
          -7,
          -4.126391191616615,
          -3.649594448966077,
          -4.135641416386669,
          -3.3257501636290527,
          -7,
          -2.7680348382006295,
          -7,
          -7,
          -3.092114288620125,
          -2.9614239706555763,
          -7,
          -4.137132476008993,
          -3.8744238305865015,
          -3.848527796197598,
          -3.088920402154754,
          -4.13312357540262,
          -3.844570361988267,
          -7,
          -4.150909873701122,
          -2.9587728580583295,
          -2.454746987678256,
          -3.414945507688626,
          -3.47379967461323,
          -3.501470072100412,
          -3.8348338181358885,
          -7,
          -3.7155576848148777,
          -3.4442634503171514,
          -3.1454139651678834,
          -4.146345128650468,
          -3.8256208250035,
          -7,
          -3.21761552866633,
          -2.697856360143162,
          -4.127881943484625,
          -7,
          -4.18613667169178,
          -7,
          -3.9597804954029976,
          -2.2463344173155235,
          -7,
          -3.7135185431250215,
          -3.1690566355150636,
          -7,
          -3.7015967643861063,
          -7,
          -7,
          -3.463210202983969,
          -4.172807188369087,
          -3.832189461068513,
          -7,
          -3.113414081521587,
          -7,
          -3.2990439930688757,
          -2.410228078382359,
          -4.165956187202987,
          -7,
          -2.5904656771525985,
          -3.1319392952104246,
          -3.5888690345141137,
          -4.125220936316564,
          -7,
          -7,
          -3.2612033723225187,
          -3.1409363554584804,
          -3.0449054380916873,
          -7,
          -3.225890536974668,
          -4.142577160920535,
          -7,
          -7,
          -2.8545019346694915,
          -7,
          -7,
          -7,
          -3.9318137039591394,
          -2.864712755705674,
          -4.138429020006003,
          -7,
          -3.673020907128896,
          -3.6773027183949845,
          -2.6535184129706497,
          -7,
          -7,
          -7,
          -3.3675955024067696,
          -2.9101414176196507,
          -4.14547610488496,
          -2.4021430192065516,
          -2.607749657790076,
          -3.837051550831765,
          -3.295193115885859,
          -3.53731527311201,
          -3.9008273227463928,
          -4.150480122270334,
          -3.716309469007183,
          -3.6248233370629546,
          -7,
          -4.140539466972342,
          -2.87081608186603,
          -2.896553773371796,
          -7,
          -7,
          -1.1025789119704859,
          -7,
          -7,
          -3.2193552692900123,
          -7,
          -7,
          -2.6370818541953644,
          -3.082976752706637,
          -2.875414988878726,
          -1.9142927749289083,
          -4.141041940939049,
          -4.008515007631455,
          -7,
          -7,
          -3.5502589360966827,
          -3.0407281730739686,
          -3.3360815351107824,
          -7,
          -7,
          -4.141606530118251,
          -2.9695438099284064,
          -7,
          -7,
          -4.168409083519626,
          -3.854852362417834,
          -7,
          -3.3780040105060434,
          -3.5593379612178344,
          -3.884228769632604,
          -3.704693760279812,
          -7,
          -3.354321904121914,
          -4.162056337360552,
          -7,
          -2.640945654356927,
          -3.8328281295393536,
          -7,
          -7,
          -4.142733511313519,
          -7,
          -3.829303772831025,
          -4.123753668755842,
          -2.833743289137135,
          -4.132355761753956,
          -3.4621120045641733,
          -7,
          -3.9560963623586116,
          -2.4831045922925545,
          -3.8435753430507633,
          -3.0683343131172545,
          -3.0751818546186915,
          -4.156155260889687,
          -3.226628542211219,
          -4.159687479754789,
          -3.01970958901189,
          -3.6743405324046687,
          -7,
          -3.5337212310124437,
          -4.135800283302111,
          -3.338356873353703,
          -7,
          -4.036608936517427,
          -7,
          -3.500024292033634,
          -7,
          -3.136791006615146,
          -7,
          -3.967196842000648,
          -7,
          -7,
          -7,
          -7,
          -2.213122731599993,
          -2.6572587197236484,
          -7,
          -3.705749709269246,
          -2.3292190825019476,
          -2.9566485792052033,
          -7,
          -7,
          -3.8311976650693866,
          -7,
          -4.128269995169626,
          -3.532818053867167,
          -7,
          -3.234390722392192,
          -2.9592073594510024,
          -3.5220005831842696,
          -7,
          -2.9622583206434956,
          -7,
          -4.13350697377835,
          -7,
          -3.84963435786558,
          -7,
          -4.126813010041553,
          -2.8726514940644776,
          -4.161846959528519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5914515760902344,
          -7,
          -7,
          -7,
          -7,
          -4.14157518330082,
          -4.13946977558943,
          -7,
          -3.840670561333409,
          -3.0414913772349825,
          -3.8659030992071726,
          -3.161275834475312,
          -2.7413767385571397,
          -3.8632931129043135,
          -4.125025586819949,
          -7,
          -3.181895533938723,
          -3.217630146700358,
          -2.473528809833997,
          -7,
          -3.1168787038684527,
          -4.145538235712233,
          -7,
          -4.131843130804694,
          -3.5094521554936255,
          -3.0316697940536033,
          -2.8779667865031113,
          -3.078891619840223,
          -3.9940090331236133,
          -7,
          -7,
          -7,
          -3.308442446423766,
          -2.9905608299940196,
          -3.4120123012470613,
          -7,
          -4.131458260106525,
          -7,
          -7,
          -3.8606673464441363,
          -7,
          -3.3976793537786056,
          -3.026553691817198,
          -3.8509217930432844,
          -7,
          -4.158905021187544,
          -2.641568252457706,
          -2.9711492876176107,
          -7,
          -2.056932356607827,
          -3.824581376233483,
          -4.143732823138692,
          -4.222222082360713,
          -3.690225622865973,
          -2.891139058890472,
          -3.9033613362553186,
          -3.975914090049001,
          -7,
          -7,
          -3.702171950857711,
          -3.283476066983985,
          -3.050057364084302,
          -4.122445256281956,
          -7,
          -4.120508124026104,
          -3.011170876192968,
          -3.928242183157309,
          -3.133347265586243,
          -7,
          -3.8859828113549733,
          -7,
          -7,
          -7,
          -3.6485551556626707,
          -3.663857908757308,
          -3.449478399187365,
          -3.149962833642305,
          -3.663857908757308,
          -3.566268363427344,
          -2.443657006731713,
          -3.1432576161632504,
          -7,
          -2.897718704935313,
          -2.1249663179455123,
          -3.2317012265137786,
          -7,
          -3.5438508428044115,
          -7,
          -3.256236533205923,
          -3.129574813769972,
          -3.7798368978412693,
          -7,
          -7,
          -7,
          -3.5825462753591735,
          -7,
          -4.139658736208178,
          -4.1423894661188365,
          -3.536987475130602,
          -7,
          -3.1178559416698866,
          -7,
          -7,
          -3.1148194089047454,
          -3.3002995256899204,
          -7,
          -3.9297253783780044,
          -3.553424497508192,
          -3.606835011219978,
          -3.3082655332099327,
          -2.988844903796994,
          -2.651627253844299,
          -3.3061910011503572,
          -7,
          -3.371305405219536,
          -3.3083175852045503,
          -3.458963084952302,
          -2.906591550277436,
          -3.5330599332841146,
          -3.3003635663986217,
          -2.9791831314608577,
          -2.6982116373229816,
          -3.124230259036586,
          -4.218876715052756,
          -3.427548654790397,
          -3.4201621131797433,
          -3.289988209900654,
          -2.814691432747457,
          -4.533848288291342,
          -3.651702853962148,
          -3.3027482594758824,
          -4.176641017292667,
          -3.0130118711375116,
          -3.3928567672382504,
          -2.9284607665244224,
          -3.3531722243599043,
          -3.6748152298035857,
          -3.690993032099869,
          -3.618048096712093,
          -3.529836566775372,
          -3.4380568912567635,
          -3.272058312630265,
          -3.1748670767814025,
          -3.6683548501652967,
          -3.102492092329077,
          -2.625039053970189,
          -3.134835596316012,
          -2.8395534609966906,
          -2.6677343311128334,
          -7,
          -2.832419348499102,
          -3.4513450110399573,
          -3.900694774452398,
          -3.2637866524058152,
          -3.167583563821491,
          -2.7248289875184812,
          -3.6814221557210085,
          -3.3994141053637703,
          -3.9873757445117697,
          -4.12668326338829,
          -3.2787993137555556,
          -3.281977758929144,
          -4.241521577676051,
          -4.14587979647062,
          -2.574239994047324,
          -2.9157804804891008,
          -3.4336048426676036,
          -7,
          -7,
          -7,
          -3.1736886626993055,
          -4.27429643177251,
          -3.694137019956113,
          -3.2789118170826983,
          -3.989746365634447,
          -7,
          -3.5742499683912072,
          -2.909261218458848,
          -3.2026422864977273,
          -3.322115878973958,
          -3.1856763274980158,
          -3.805682059572066,
          -2.1929284346460203,
          -3.295786940251609,
          -3.840764567859676,
          -2.837077956461961,
          -3.1740851015212996,
          -3.738013790760599,
          -3.4794516439702257,
          -7,
          -3.523694452381668,
          -2.919935696126473,
          -3.3981938297209937,
          -7,
          -7,
          -4.120837060254737,
          -7,
          -3.555215405126073,
          -2.322811252582744,
          -3.399731392881681,
          -2.73062700968143,
          -2.444630230042095,
          -3.5651982517156657,
          -3.179276960763326,
          -3.2280009024796756,
          -4.170467076385937,
          -7,
          -3.008268884068272,
          -7,
          -2.8945468126404026,
          -2.8846409115206195,
          -3.8376831142120307,
          -4.17432152726404,
          -3.0369447882289555,
          -3.5706304904278854,
          -3.0641333950665963,
          -3.3011230487976233,
          -7,
          -2.431853031350563,
          -7,
          -4.141857223238367,
          -7,
          -3.304571304204838,
          -7,
          -3.3213536036656532,
          -7,
          -2.896428947456993,
          -2.9465355253959706,
          -2.725536651487612,
          -2.653406667089867,
          -7,
          -3.4136070709868043,
          -2.9880316788997914,
          -7,
          -7,
          -7,
          -3.380452449427833,
          -2.293993567509566,
          -7,
          -7,
          -4.182043545943064,
          -3.680547018019107,
          -3.3420276880874717,
          -7,
          -3.161667412437736,
          -3.8484970180903666,
          -7,
          -4.166430113843282,
          -3.1751250862836606,
          -3.1110791251778114,
          -4.124275932006338,
          -3.5122840632818537,
          -3.7288405683399715,
          -4.170789590446391,
          -2.979938401207097,
          -7,
          -7,
          -1.334394071037258,
          -2.792333312660757,
          -2.4984814656575884,
          -2.851758527971641,
          -3.620994421851143,
          -3.6813920078967692,
          -7,
          -3.9966211075792013,
          -7,
          -3.317761636804117,
          -4.1334111559110225,
          -3.475293376659103,
          -3.1352008241234657,
          -3.455575688084891,
          -4.121920785563038,
          -3.0477557503058947,
          -2.965272274026404,
          -3.5297382554659538,
          -4.17900570756482,
          -3.2170494324398886,
          -3.8949249773595436,
          -3.6587266773270137,
          -7,
          -2.737322108939681,
          -3.285532305727194,
          -7,
          -3.849265817161557,
          -7,
          -7,
          -2.6367691316157806,
          -3.1530939053914806,
          -3.064520383377145,
          -2.9626199946269987,
          -2.8751733249280984,
          -3.474274554725548,
          -2.564442126906085,
          -3.1892276127480357,
          -3.1980069079575624,
          -3.150672725821067,
          -7,
          -4.163638359628923,
          -7,
          -3.390026224005205,
          -3.2865562616780064,
          -3.343137690775371,
          -7,
          -3.163370120225884,
          -7,
          -2.609687187367402,
          -4.142670977910689,
          -4.1334111559110225,
          -7,
          -7,
          -7,
          -4.124536828301277,
          -3.650825388129239,
          -3.1350190063461896,
          -4.161008437306002,
          -7,
          -7,
          -3.8374937416151766,
          -7,
          -7,
          -3.8408272275743864,
          -4.136625455760932,
          -3.2795243607444062,
          -4.159537116397021,
          -3.3668472801536247,
          -3.365581572755049,
          -2.8568043870335558,
          -3.6626319309756905,
          -7,
          -3.510652230175532,
          -4.136657161873879,
          -7,
          -3.230959555748569,
          -3.840482487213442,
          -4.140445188347875,
          -3.9071156388713693,
          -3.490716778256952,
          -3.7087041048933,
          -7,
          -7,
          -3.7002132007860378,
          -4.1240475191100305,
          -3.538925450303585,
          -7,
          -4.145289659054146,
          -7,
          -4.93482405002071,
          -7,
          -7,
          -7,
          -5.411867082352383,
          -4.2224110069938146,
          -4.86846054001897,
          -4.4118426875430234,
          -5.111076755903269,
          -2.3822341420260598,
          -3.7122261672192907,
          -7,
          -5.712897919192247,
          -2.8584954008567345,
          -2.811792891551971,
          -5.4124361859343715,
          -5.412152147675782,
          -7,
          -5.411828386500435,
          -5.411748460239424,
          -2.548075466728869,
          -3.0440902657234554,
          -7,
          -3.781618462251087,
          -1.8907155584821451,
          -5.412321920685612,
          -4.7587479291548584,
          -7,
          -4.266916778057951,
          -4.599569030966235,
          -4.867956309564652,
          -2.6036833269790702,
          -5.111288563823859,
          -5.4118023069162495,
          -7,
          -5.111011175368067,
          -4.567905665742008,
          -7,
          -4.299917781049863,
          -5.411729107459061,
          -4.483810406523914,
          -4.298021295582452,
          -1.994044257851974,
          -5.411861194075582,
          -5.713115728907259,
          -4.2827722805262605,
          -4.759195948794771,
          -3.498285485563561,
          -7,
          -5.23621973764206,
          -4.158687421166621,
          -4.391234285554613,
          -3.8216210095804164,
          -2.4958183838393566,
          -4.9365472515628115,
          -3.7060703356373064,
          -3.969298569092522,
          -4.482607950809717,
          -4.868142102559628,
          -4.170564274665922,
          -5.236160911445233,
          -5.236228140734041,
          -5.412331163845351,
          -5.712842398088922,
          -5.111139804772594,
          -3.9519485116441997,
          -2.5220628420114863,
          -5.712872683207005,
          -7,
          -4.11236533622378,
          -7,
          -3.9844172881402207,
          -3.9998805525927055,
          -7,
          -3.8280100357953923,
          -2.1441570579455176,
          -5.712822206836856,
          -4.714261004983581,
          -7,
          -5.1109010114125795,
          -3.2454121250467365,
          -4.509956504538329,
          -5.110948948781672,
          -5.71271197970362,
          -4.392449049153358,
          -4.169089720187762,
          -4.18345072714285,
          -3.8066881964666717,
          -4.298890846803723,
          -5.236669914329181,
          -1.7170450814253624,
          -3.3346589537217852,
          -3.2362935415384895,
          -5.235679077201403,
          -5.712707772006801,
          -4.252153044735006,
          -4.4128090192128715,
          -3.9289647102407317,
          -4.22417620426946,
          -4.6337099436919384,
          -2.673434364072537,
          -4.935101499694514,
          -7,
          -7,
          -4.076698354565139,
          -5.411748460239424,
          -4.4839017980195734,
          -4.9354594001061,
          -3.9915879762894657,
          -3.3302317322481083,
          -5.014173468544053,
          -5.712962684843069,
          -4.810367793773821,
          -4.251142104019889,
          -3.0632020427548374,
          -5.412293349675333,
          -7,
          -4.869078264263427,
          -4.8702031837463045,
          -3.140151857647077,
          -5.713339311723815,
          -2.9850673612431855,
          -1.9565070948118017,
          -7,
          -4.199595627478755,
          -7,
          -1.7734130132673815,
          -5.412443746544762,
          -3.8114895460022478,
          -3.95223613386127,
          -5.411805672111888,
          -4.758950561884583,
          -2.851987519737212,
          -4.353101326657493,
          -7,
          -5.235631958255571,
          -2.7183625942989016,
          -7,
          -7,
          -5.411712278253374,
          -7,
          -5.712735542052476,
          -3.1025518953323297,
          -3.8778977629824376,
          -3.021829394015815,
          -3.608997110524758,
          -4.022943189333239,
          -3.5394740847701684,
          -7,
          -5.411900728116946,
          -4.810429116115286,
          -4.230437383990212,
          -3.837039908150044,
          -7,
          -5.110910262895853,
          -7,
          -3.261706956957646,
          -5.71275742023182,
          -7,
          -4.672566340793907,
          -4.145363575085632,
          -5.4118174500912835,
          -4.483164248491344,
          -3.764244997238098,
          -7,
          -5.015389936988531,
          -5.713922102999496,
          -3.826451094668831,
          -5.713796205700024,
          -5.412075644086446,
          -2.220959306047683,
          -5.235906186117268,
          -7,
          -7,
          -7,
          -5.712992120582704,
          -5.712938293718744,
          -5.411734156093602,
          -3.9063458182094015,
          -4.8098878364806925,
          -2.776816911310227,
          -7,
          -2.9569026591445904,
          -2.3505513327437093,
          -4.567167577177019,
          -4.172233356847697,
          -4.414534656088115,
          -4.634431923821994,
          -4.299333774213371,
          -3.9654494961154136,
          -4.041749550402577,
          -4.333255779961068,
          -4.4349494172436525,
          -4.159589749494209,
          -5.235955797813515,
          -3.72931428448667,
          -7,
          -2.7655514428714616,
          -4.157666594536235,
          -3.087325333113581,
          -7,
          -2.7899004585544813,
          -5.712727968579756,
          -3.734731507480199,
          -5.412104229422081,
          -4.391486242306662,
          -5.712983710574959,
          -5.412072280982084,
          -3.53490326577492,
          -4.0707160794021915,
          -7,
          -4.251952721498891,
          -3.46127901820621,
          -3.04730732465275,
          -7,
          -7,
          -5.411956237930402,
          -7,
          -5.712882777777072,
          -5.713061076503902,
          -5.7128196828643425,
          -5.713136747231231,
          -3.9129001120673457,
          -4.1970030557912565,
          -2.9622583206434956,
          -7,
          -5.4116592619924875,
          -4.867911741054626,
          -5.01414656532373,
          -4.145219931266814,
          -7,
          -5.712844921929427,
          -4.93599905333409,
          -4.935630684652991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.713833978722122,
          -2.436113338902213,
          -7,
          -7,
          -7,
          -5.411893999172559,
          -7,
          -5.713177940195718,
          -7,
          -4.935079646454493,
          -2.818005830532529,
          -4.537820773502811,
          -3.5469234711723647,
          -4.161479473484632,
          -4.759605738236192,
          -5.411766970787628,
          -5.71271197970362,
          -2.8525733868943464,
          -4.8689801249675995,
          -2.7542033142551516,
          -5.412225275871112,
          -2.737530215043792,
          -4.759085037637032,
          -5.23581535680208,
          -5.712976141428744,
          -4.322573203899594,
          -3.124143004805479,
          -3.219779278778598,
          -3.8592675919480897,
          -3.590817721976693,
          -4.315705911806046,
          -4.634016868868532,
          -7,
          -5.111504467940425,
          -4.7147562990402285,
          -4.869510819339792,
          -7,
          -5.013989316295481,
          -5.7135837761949855,
          -7,
          -5.412756136675269,
          -7,
          -4.538082529106812,
          -3.7602567411466885,
          -4.567367547554527,
          -4.316671364277856,
          -5.111643026868519,
          -1.7520008008174084,
          -3.7693549186514,
          -5.7128735244301385,
          -2.373261719017877,
          -3.949291559892229,
          -5.236167634842456,
          -4.1027532053059295,
          -4.537834200705592,
          -3.9068809860933524,
          -4.459743367173927,
          -5.240349526742219,
          -7,
          -4.812065655625775,
          -4.538178131237722,
          -1.7693400963998285,
          -3.6179849703409226,
          -5.110667135746672,
          -7,
          -7,
          -3.6029660528414573,
          -3.889648664903765,
          -4.482554972941678,
          -7,
          -4.811416640470285,
          -5.235823767721927,
          -4.869013679358553,
          -5.7130358499979,
          -4.13670471670359,
          -5.111156616258665,
          -4.370968727652723,
          -3.9753933699709907,
          -4.3152412940421705,
          -2.5459937176223186,
          -3.374130655189905,
          -1.8111816063523138,
          -4.281821741666723,
          -4.1492848720317275,
          -2.21451713578345,
          -4.149088396735554,
          -7,
          -4.434572265433589,
          -5.7128987603665005,
          -4.459944220602778,
          -4.198881922320664,
          -4.637567275175051,
          -5.413094305937094,
          -5.712780138713116,
          -7,
          -4.635250787227244,
          -7,
          -7,
          -7,
          -4.674649075135416,
          -5.713009781068882,
          -3.319674125495312,
          -7,
          -7,
          -2.744492493710069,
          -2.62842688787771,
          -3.6745164870743796,
          -3.030229102479042,
          -2.886359484642336,
          -2.796924307054616,
          -3.290085301024576,
          -2.560614268618336,
          -2.6475054048611133,
          -2.7057192665088827,
          -3.027333697880316,
          -2.463564205754188,
          -2.8604921461811275,
          -2.51940983254529,
          -2.529386337146879,
          -3.6158084723619432,
          -2.5964908564561173,
          -2.3638115672846007,
          -3.182922186436912,
          -2.7579067817398406,
          -4.043322137271107,
          -2.6138682380119556,
          -3.133975329628081,
          -2.4925560800567275,
          -2.980882286861777,
          -2.885011903141026,
          -2.851895212589347,
          -3.3686808154548578,
          -4.413150502106627,
          -2.248097000248326,
          -3.0404734857859026,
          -2.9281254077339445,
          -3.493923076927451,
          -3.3785664849510084,
          -4.672561306030661,
          -3.5854846070205957,
          -3.89246176118724,
          -3.4008001306246003,
          -3.2805415242209643,
          -2.239635732795565,
          -4.868234549092891,
          -2.7685993636921173,
          -2.8380917602820355,
          -3.330982302212323,
          -3.5760348835966065,
          -2.423695121216955,
          -4.63503950719497,
          -1.5079704602782635,
          -3.6234345498576377,
          -4.334712541690554,
          -2.8495597287699477,
          -2.3847686963298202,
          -3.059992840480373,
          -3.810478671681402,
          -3.2485958522995344,
          -3.5217359059530144,
          -5.712841556805494,
          -3.79313738833959,
          -2.879998788198969,
          -4.637037521027568,
          -5.01437350897037,
          -2.48410899263124,
          -1.4709056178981428,
          -1.8900756630525175,
          -5.712948386763919,
          -4.813334084359419,
          -4.934859371642858,
          -2.4269866827278737,
          -2.651360811389999,
          -2.3696922569462044,
          -3.6576360198439435,
          -3.273783014280978,
          -5.712771724599352,
          -3.2336204521463214,
          -1.9021018307478776,
          -2.4091530701680073,
          -3.858260579266509,
          -3.072943861541842,
          -3.3039603780983073,
          -2.5728158133110224,
          -2.5552255565887765,
          -5.412210146909904,
          -2.8024756669227284,
          -2.437682710736257,
          -3.9444324811357743,
          -2.1965745690813323,
          -5.713040054517326,
          -3.852181593605025,
          -2.7748202689123707,
          -3.2525104653286196,
          -5.7128710007558485,
          -7,
          -5.4116592619924875,
          -5.411790528526162,
          -4.009020737800639,
          -2.655004010022997,
          -4.195689202054842,
          -2.497475787005654,
          -5.411867923528265,
          -4.567798263269426,
          -3.1664195985419643,
          -3.75519697151723,
          -4.7140194385588226,
          -5.013942214596968,
          -3.659928704049752,
          -4.712786869886757,
          -2.6544096723290584,
          -3.4876277826957134,
          -4.457858357099747,
          -4.634945571955361,
          -3.8257152717519975,
          -4.333853500787942,
          -4.172092285066876,
          -4.567219679170076,
          -4.5370000873213385,
          -4.126233008108469,
          -4.758885830584383,
          -4.7132266941659084,
          -5.014888315259641,
          -3.936905637015932,
          -7,
          -3.356923549057265,
          -4.181262515397696,
          -5.235748904808164,
          -1.9941292181677637,
          -2.6685256544799585,
          -2.524833607996835,
          -5.712716187359675,
          -4.372208800370736,
          -3.507111357932569,
          -4.868245473292132,
          -3.7017808510958523,
          -7,
          -4.169582914463755,
          -2.4554864349684373,
          -5.712764993190968,
          -4.411822497698959,
          -5.015393290367874,
          -4.145414804953056,
          -3.2315623356402465,
          -4.93494093679307,
          -3.794584622327861,
          -4.122322600329196,
          -4.67176592005093,
          -3.965639236752102,
          -3.161117232139066,
          -2.7374265241697593,
          -4.536664478278395,
          -3.715097061723223,
          -3.8889092592635315,
          -4.412981891778567,
          -3.0969404022915272,
          -4.508954547385386,
          -5.41185278211309,
          -4.01127183969032,
          -3.6420543617517414,
          -2.037757352000563,
          -3.8225427432313115,
          -2.654532673821854,
          -5.111635470248563,
          -5.412123565494064,
          -3.0281219670061663,
          -5.412070599420136,
          -3.318952727334636,
          -4.867909218171997,
          -3.627587447405682,
          -3.2414865112767166,
          -3.8939407273161857,
          -7,
          -3.3535498845126734,
          -2.576109955786417,
          -3.7471836863659025,
          -5.015304417065566,
          -2.631499142736381,
          -3.0382150869314946,
          -4.637702321658437,
          -4.13368426512856,
          -3.3425333465625737,
          -3.237124377704049,
          -4.041424605049602,
          -4.079933035415702,
          -5.712781821516307,
          -4.712700198049791,
          -2.8356307249148243,
          -3.8008075748040797,
          -4.315329550842513,
          -3.882103298105706,
          -3.1735195916930334,
          -4.935961307815725,
          -3.6907840966330903,
          -2.9662942563851096,
          -4.072658392225891,
          -3.7800433735207384,
          -5.713122454881604,
          -4.12271229119345,
          -4.671308354448867,
          -3.8708209420761808,
          -3.434875590599677,
          -4.373949656322176,
          -5.411707229364498,
          -4.182313930896806,
          -4.15705529761581,
          -2.5142252978510746,
          -5.412231999684705,
          -5.713017349628834,
          -5.7127431153931285,
          -5.712733859069952,
          -4.250387189204171,
          -3.8866001478715915,
          -4.2214655609036065,
          -3.474319516452789,
          -4.599803323786212,
          -4.71401020939888,
          -7,
          -4.332904487195654,
          -5.71289287211251,
          -4.633811715526896,
          -7,
          -4.671692775575364,
          -4.080859627349738,
          -4.391472808302644,
          -3.778387251620757,
          -3.558586083017636,
          -3.1931262703866703,
          -4.671779370567489,
          -7,
          -3.5846536420330626,
          -5.111038081401025,
          -7,
          -2.9805589206857506,
          -5.111169224446162,
          -5.014227269985497,
          -3.944211571736122,
          -3.6730276130332227,
          -3.755292559435586,
          -5.235697586817248,
          -4.9347096555283905,
          -4.435452056925035,
          -7,
          -3.4879554190332436,
          -4.672306974556731,
          -5.412302593443167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.203168922875464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.031044716583705,
          -7,
          -7,
          -7,
          -4.156494400963499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.863953022100917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.385606273598312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.444513206334043,
          -7,
          -3.174931593528443,
          -7,
          -4.928526428253506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9924916607033785,
          -7,
          -3.390405156480081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.537668009845832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.4518493499555385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.352838289981073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5397032389478253,
          -7,
          -5.4116592619924875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.529763904040117,
          -7,
          -4.70816585785554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.13082247683857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4554539687786283,
          -7,
          -7,
          -7,
          -7,
          -5.351065428387491,
          -3.8497264441963277,
          -7,
          -7,
          -7,
          -7,
          -3.5795549604009986,
          -7,
          -7,
          -3.3475251599986895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.749427099121749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.498420836797279,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.878297696888866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.527410765292662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.182671386675478,
          -3.196728722623287,
          -4.0701117827822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.234578019752476,
          -7,
          -7,
          -7,
          -4.961022214372552,
          -4.67728750108277,
          -7,
          -7,
          -3.7973368007753496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.186416661892306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426494995349033,
          -7,
          -7,
          -4.204499824171151,
          -7,
          -7,
          -7,
          -7,
          -4.941819404166313,
          -7,
          -7,
          -5.346851539936892,
          -7,
          -7,
          -4.604150423082331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.241870088685618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4934580509951885,
          -3.4644895474339714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.24699069924155,
          -4.869509422891369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2884728005997825,
          -7,
          -3.4058583993176366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6061663146076204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.388740444524611,
          -2.8639173769578603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2227164711475833,
          -7,
          -7,
          -7,
          -2.9508514588885464,
          -7,
          -7,
          -7,
          -4.602762437131735,
          -7,
          -7,
          -7,
          -3.498227823151784,
          -3.7364496237349565,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -7,
          -3.436580037252512,
          -2.98649181515768,
          -7,
          -3.671913012441587,
          -3.567427043386484,
          -7,
          -2.910090545594068,
          -2.6875289612146345,
          -2.8528864461530965,
          -7,
          -7,
          -3.202979643989544,
          -2.0831441431430524,
          -7,
          -7,
          -2.9537596917332287,
          -2.35729944896187,
          -2.16790781000148,
          -3.4930395883176515,
          -7,
          -3.0678145111618402,
          -7,
          -4.23843190152609,
          -7,
          -7,
          -7,
          -7,
          -2.9476297473843545,
          -2.2105860249051563,
          -3.0856472882968564,
          -7,
          -7,
          -7,
          -3.6533465346009417,
          -7,
          -3.9076800242424197,
          -3.3206308739310484,
          -7,
          -7,
          -2.972665592266111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.451356532162689,
          -7,
          -7,
          -3.4122925093230463,
          -7,
          -7,
          -2.792291610114955,
          -7,
          -7,
          -4.523541623956646,
          -7,
          -3.366982975977851,
          -7,
          -7,
          -3.879841055986563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2757719001649312,
          -7,
          -3.7118838850261935,
          -7,
          -3.7211095747344105,
          -7,
          -7,
          -7,
          -7,
          -3.091315159697223,
          -7,
          -7,
          -3.373187949912719,
          -7,
          -7,
          -7,
          -3.4989534769002115,
          -7,
          -7,
          -2.8873359303991672,
          -3.1588648570811704,
          -3.9020754491124725,
          -7,
          -7,
          -3.1357685145678222,
          -2.876506504265881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5728135375594547,
          -4.754921409665169,
          -7,
          -7,
          -3.00987563371216,
          -4.693177139403572,
          -7,
          -2.754348335711019,
          -7,
          -7,
          -7,
          -3.0962145853464054,
          -3.180412632838324,
          -7,
          -7,
          -4.369085920821508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5542468081661105,
          -7,
          -3.310632631264332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1583624920952498,
          -7,
          -3.8300751664297503,
          -7,
          -7,
          -7,
          -4.542564024978776,
          -7,
          -7,
          -7,
          -7,
          -2.496237545166735,
          -7,
          -7,
          -3.106020819140269,
          -2.686278678067201,
          -2.8020892578817325,
          -2.765439284867506,
          -2.9429995933660407,
          -7,
          -3.9472038918536905,
          -7,
          -7,
          -7,
          -2.5720967679505193,
          -7,
          -7,
          -7,
          -3.448654799117084,
          -7,
          -7,
          -7,
          -7,
          -3.613020680036648,
          -7,
          -7,
          -3.591621038213319,
          -7,
          -2.5356557307896432,
          -7,
          -2.677378796959058,
          -7,
          -7,
          -3.6363875858131567,
          -7,
          -7,
          -7,
          -7,
          -2.829946695941636,
          -7,
          -2.8305886686851442,
          -2.929601364062661,
          -7,
          -3.761927838420529,
          -7,
          -2.526339277389844,
          -7,
          -2.667452952889954,
          -7,
          -7,
          -7,
          -3.3932241163612975,
          -7,
          -3.8564267724702446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.944975908412048,
          -7,
          -7,
          -7,
          -2.0492180226701815,
          -4.13350697377835,
          -4.867911741054626,
          -7,
          -7,
          -2.9800033715837464,
          -7,
          -7,
          -7,
          -3.3400473176613934,
          -3.2427898094786767,
          -3.2357808703275603,
          -7,
          -7,
          -2.7965743332104296,
          -7,
          -7,
          -2.47928731647617,
          -2.7774268223893115,
          -3.863570674382189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7367947549243605,
          -7,
          -7,
          -7,
          -3.8192806469724814,
          -7,
          -7,
          -7,
          -3.3617907726863363,
          -7,
          -3.7564712833861256,
          -3.04688519083771,
          -3.4807591584803594,
          -7,
          -7,
          -2.8920946026904804,
          -3.9942291408176986,
          -3.7443712273318606,
          -3.360735378529271,
          -2.5717919901587556,
          -3.541516840831034,
          -7,
          -3.0277572046905536,
          -7,
          -3.1720188094245563,
          -3.1639064334577514,
          -2.531957654348021,
          -7,
          -7,
          -2.698680378128617,
          -7,
          -7,
          -2.681241237375587,
          -3.34908316877959,
          -3.2316734367061457,
          -7,
          -7,
          -7,
          -5.132077093735961,
          -3.8954777962757143,
          -7,
          -4.287017501322102,
          -7,
          -7,
          -3.291368850451583,
          -7,
          -7,
          -3.511214701136388,
          -2.322931837111811,
          -2.212409579610376,
          -2.448448654823714,
          -7,
          -4.828429801274681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3208729652272493,
          -2.624797578960761,
          -2.7058637122839193,
          -2.4608978427565478,
          -7,
          -7,
          -2.929929560084588,
          -7,
          -2.7283537820212285,
          -2.8175653695597807,
          -7,
          -7,
          -4.556284404786872,
          -3.91087331482137,
          -4.833930812913641,
          -7,
          -7,
          -4.416769445369875,
          -3.4774830160749435,
          -7,
          -2.788875115775417,
          -7,
          -3.5422027824340283,
          -3.486005186362242,
          -7,
          -3.3322364154914434,
          -7,
          -7,
          -7,
          -2.8796692056320534,
          -2.709269960975831,
          -7,
          -3.171628957978357,
          -2.9138138523837167,
          -3.2245330626060857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.289934377993168,
          -4.403395087002509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.673932797382339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.97377419397058,
          -4.5324231190671025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.77451696572855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464131710707957,
          -7,
          -7,
          -7,
          -3.35869609957381,
          -4.332440984876183,
          -3.3917288224907427,
          -7,
          -7,
          -4.263867945962747,
          -3.7776261605789925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.896415976473123,
          -7,
          -7,
          -4.5146274324113405,
          -4.885933399147209,
          -7,
          -7,
          -2.7354214555764456,
          -7,
          -4.110522372601323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.432809005033168,
          -7,
          -7,
          -7,
          -7,
          -4.053265078626461,
          -4.186744501716686,
          -7,
          -3.9436676056327267,
          -4.655090390729038,
          -7,
          -4.648629287656581,
          -7,
          -7,
          -4.006230646481024,
          -3.5969927280580043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6911699341316035,
          -2.456935102197454,
          -3.2300229336227826,
          -7,
          -7,
          -3.643906474455095,
          -7,
          -2.099076074764564,
          -2.852479993636856,
          -3.448010273039476,
          -7,
          -3.621169355173038,
          -3.1397741716810974,
          -7,
          -7,
          -7,
          -7,
          -3.3660492098002353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.051023823533444,
          -7,
          -3.5358424451061152,
          -7,
          -7,
          -7,
          -4.395651336963195,
          -7,
          -7,
          -2.8432327780980096,
          -2.366549150596584,
          -7,
          -2.6214730323720974,
          -7,
          -7,
          -3.0202637650809114,
          -7,
          -7,
          -7,
          -3.2079035303860515,
          -3.6840370374865197,
          -7,
          -7,
          -7,
          -2.528488190640618,
          -2.801403710017355,
          -3.5099637749044597,
          -7,
          -7,
          -3.0671948870277648,
          -2.437089636681715,
          -7,
          -3.845748993643852,
          -7,
          -7,
          -7,
          -3.032417278832769,
          -3.1214406364012652,
          -3.1630122097748297,
          -7,
          -7,
          -7,
          -7,
          -1.9176487071628685,
          -3.7749546890801384,
          -7,
          -3.036628895362161,
          -3.104760166638525,
          -7,
          -7,
          -2.9493202908598843,
          -3.5166472255324543,
          -2.337931919942683,
          -2.1583624920952498,
          -3.0043213737826426,
          -3.4679039465228003,
          -3.436719078227576,
          -7,
          -3.431202884556517,
          -7,
          -7,
          -7,
          -2.4369573306694496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.529776727759189,
          -7,
          -7,
          -4.069631102620343,
          -7,
          -3.1481397365012196,
          -7,
          -3.257438566859814,
          -7,
          -2.1350332136014343,
          -2.712556174226849,
          -7,
          -2.2166056942039845,
          -2.958085848521085,
          -2.8135809885681917,
          -3.5503157274607613,
          -2.0895126175293544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6459132750338443,
          -7,
          -7,
          -7,
          -2.738780558484369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.498792835329338,
          -7,
          -7,
          -7,
          -7,
          -3.4111144185509046,
          -7,
          -7,
          -7,
          -7,
          -3.656577291396114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6778349886836756,
          -2.904715545278681,
          -7,
          -7,
          -4.091163528124366,
          -7,
          -7,
          -7,
          -2.784452693623172,
          -3.5177499628542592,
          -7,
          -2.7589118923979736,
          -7,
          -7,
          -7,
          -2.894157763254254,
          -7,
          -7,
          -3.683137131483007,
          -3.381434181981451,
          -7,
          -7,
          -2.785329835010767,
          -2.6545615547417434,
          -2.4933186082321015,
          -7,
          -4.2649004255169745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5098742850047193,
          -7,
          -3.3914644118391033,
          -7,
          -4.187658570220862,
          -7,
          -2.550228353055094,
          -3.368472838440362,
          -2.3183615117557332,
          -2.7034824447657835,
          -7,
          -2.8257505813480277,
          -7,
          -7,
          -2.8091105993088905,
          -3.4778177118188656,
          -3.1707016558160697,
          -2.799022268397267,
          -3.329058719264225,
          -7,
          -2.485366465708323,
          -2.9912260756924947,
          -3.104145550554008,
          -7,
          -7,
          -7,
          -7,
          -3.2874658053432286,
          -3.976334692057641,
          -2.8920946026904804,
          -7,
          -3.131137273778607,
          -7,
          -7,
          -3.173186268412274,
          -7,
          -3.1567005525820173,
          -4.084563279775527,
          -7,
          -3.0879587894607328,
          -7,
          -7,
          -3.04105414195654,
          -7,
          -2.4978507395784066,
          -7,
          -7,
          -7,
          -7,
          -2.7195680242378324,
          -3.303196057420489,
          -7,
          -2.9376227838703515,
          -2.444044795918076,
          -2.282477921382284,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -3.1124374173218436,
          -2.824776462475546,
          -7,
          -3.2518814545525276,
          -7,
          -7,
          -7,
          -3.504561472651623,
          -7,
          -3.4102709642521845,
          -3.22219604630172,
          -3.1710435238543386,
          -4.080428051258176,
          -3.0453229787866576,
          -7,
          -2.8715729355458786,
          -3.2121876044039577,
          -2.9893786160136258,
          -7,
          -7,
          -2.218985395949339,
          -2.6619309413533503,
          -2.5017437296279943,
          -7,
          -2.9736184677457946,
          -3.3082899393175516,
          -7,
          -3.8516863154424277,
          -3.059184617631371,
          -3.4759615891924236,
          -7,
          -7,
          -3.625621081424908,
          -2.8680563618230415,
          -7,
          -2.8252746184329043,
          -3.1976939750839235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.743666521446213,
          -2.6263403673750423,
          -3.222629776969852,
          -7,
          -3.889525796671191,
          -7,
          -2.929929560084588,
          -7,
          -7,
          -3.8379039445929424,
          -7,
          -7,
          -3.0831441431430524,
          -4.243038048686294,
          -7,
          -7,
          -7,
          -3.2242740142942576,
          -7,
          -7,
          -7,
          -7,
          -3.4080702858871854,
          -3.0058237530290275,
          -3.586587304671755,
          -3.273926780100526,
          -7,
          -3.9210572949274693,
          -7,
          -7,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -7,
          -7,
          -2.9633155113861114,
          -7,
          -7,
          -3.257758548072965,
          -3.561201439975245,
          -7,
          -7,
          -3.6050894618815805,
          -7,
          -3.1031192535457137,
          -2.9537596917332287,
          -2.704579449696299,
          -7,
          -3.256236533205923,
          -7,
          -7,
          -7,
          -7,
          -3.482540115553833,
          -2.63286204010023,
          -3.868428902768081,
          -7,
          -3.7800291273373383,
          -7,
          -7,
          -7,
          -2.7798368978412693,
          -7,
          -3.0232524596337114,
          -3.2790582621241464,
          -7,
          -7,
          -7,
          -7,
          -3.8637985386805003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.039017321997412,
          -2.74350976472843,
          -2.755330285717874,
          -7,
          -5.01414656532373,
          -7,
          -2.9800033715837464,
          -7,
          -7,
          -2.7993405494535817,
          -7,
          -3.062393937253195,
          -2.9708116108725178,
          -3.2657609167176105,
          -7,
          -7,
          -2.5722906061514177,
          -7,
          -7,
          -7,
          -2.5834255004065065,
          -4.2444602035259225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7942091163464964,
          -2.8720267099544015,
          -7,
          -7,
          -7,
          -3.172269243539273,
          -3.046300019652969,
          -3.1740218642682643,
          -3.0923696996291206,
          -4.411468181457918,
          -7,
          -7,
          -7,
          -3.044670394919461,
          -3.753889331459834,
          -2.821513528404773,
          -2.5819009187422806,
          -7,
          -2.541579243946581,
          -2.2256784228291777,
          -7,
          -7,
          -3.4831592097169795,
          -2.609441944950562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.334905905779908,
          -3.1894903136993675,
          -3.4622482153549976,
          -7,
          -4.655336960652428,
          -3.123524980942732,
          -7,
          -3.8125568661800697,
          -7,
          -3.106870544478654,
          -3.003352806825089,
          -7,
          -3.4865721505183562,
          -7,
          -3.4967221329867297,
          -3.3226327116922234,
          -3.068309574745689,
          -7,
          -4.598051146000453,
          -3.579040088400086,
          -7,
          -7,
          -7,
          -3.767823498007517,
          -2.6788217632521745,
          -7,
          -3.0572856444182146,
          -2.9599948383284165,
          -2.9395192526186187,
          -7,
          -7,
          -3.4122925093230463,
          -7,
          -2.8564267724702446,
          -7,
          -7,
          -4.557025722386383,
          -2.8839983793774717,
          -4.699298785540872,
          -7,
          -3.8038666342849843,
          -3.5877857724399735,
          -2.44205196294031,
          -7,
          -7,
          -7,
          -3.557266528869904,
          -2.4921315335815697,
          -3.035189508908448,
          -2.8785217955012063,
          -7,
          -7,
          -7,
          -2.944975908412048,
          -7,
          -3.092018470752797,
          -3.3597406478637164,
          -7,
          -3.425968732272281,
          -7,
          -7,
          -7,
          -4.773091310242317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1151887695361165,
          -4.580200547681287,
          -7,
          -7,
          -7,
          -7,
          -4.9984380774785055,
          -7,
          -7,
          -4.675063091209669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1101181270103275,
          -7,
          -7,
          -4.190135520877031,
          -7,
          -4.298263432540114,
          -7,
          -3.9795938958489305,
          -4.326561143964193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.314625519201271,
          -7,
          -4.069594105177555,
          -4.58953632259307,
          -3.8945929479229555,
          -3.369215857410143,
          -3.553417750819333,
          -7,
          -3.758609142659744,
          -3.6983180735427403,
          -3.514547752660286,
          -7,
          -4.009139157111882,
          -3.3805820432409472,
          -7,
          -3.6613709124303133,
          -3.530391821401041,
          -7,
          -3.804548308388056,
          -7,
          -7,
          -7,
          -4.51517151980495,
          -3.944011460905156,
          -7,
          -7,
          -3.2243603809012646,
          -7,
          -7,
          -7,
          -5.4056434164042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.917137752756444,
          -3.212986184736668,
          -4.421960209240158,
          -3.586249638866042,
          -3.0860037056183818,
          -3.6654328603308586,
          -7,
          -7,
          -5.046820860589155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6118560183160606,
          -2.605305046141109,
          -2.695142604658866,
          -7,
          -7,
          -3.7432745235119333,
          -7,
          -2.7317901537745826,
          -2.921686475483602,
          -3.0590330049637804,
          -7,
          -3.62202049941778,
          -2.850850368903348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0860037056183818,
          -2.8144695709383387,
          -2.309755378463786,
          -7,
          -3.71717102683231,
          -7,
          -7,
          -7,
          -3.8645180609843313,
          -4.186878675087556,
          -7,
          -7,
          -2.5999822600339004,
          -7,
          -2.7065755539150183,
          -7,
          -2.645422269349092,
          -2.6728995653153875,
          -7,
          -7,
          -3.4087486061842442,
          -2.7616773079942547,
          -7,
          -3.021602716028242,
          -3.2750808984568587,
          -2.688419822002711,
          -7,
          -3.0051805125037805,
          -2.8154006298544783,
          -4.198931869932209,
          -7,
          -2.655018314638606,
          -2.4530633975789575,
          -7,
          -3.4514179729892613,
          -7,
          -7,
          -7,
          -2.510545010206612,
          -3.0635952517578597,
          -2.7027176733035243,
          -3.6101276130759956,
          -2.945222316635341,
          -7,
          -7,
          -7,
          -3.306425027550687,
          -7,
          -3.3619166186686433,
          -2.606448546560488,
          -7,
          -7,
          -2.6558241991760436,
          -2.882778567794427,
          -2.5516532717804257,
          -7,
          -3.229148350269773,
          -3.48572142648158,
          -2.901536158923322,
          -3.1936810295412816,
          -3.1347745687824307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6354837468149124,
          -7,
          -3.4518887307742987,
          -7,
          -7,
          -4.247261126880467,
          -3.3736474722092176,
          -2.8651039746411278,
          -7,
          -2.4382031886892928,
          -7,
          -2.8790958795000727,
          -2.833420339025857,
          -7,
          -7,
          -2.6846209780269676,
          -2.373218599863817,
          -3.552459621256164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.249198357391113,
          -2.7024305364455254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.113140836867081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.801403710017355,
          -7,
          -7,
          -7,
          -7,
          -2.9535986331436197,
          -7,
          -7,
          -7,
          -7,
          -3.190705124231049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8305886686851442,
          -7,
          -7,
          -4.6042503599312194,
          -3.762978490867743,
          -7,
          -7,
          -3.9112375328849565,
          -2.562964867002593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9183604584754095,
          -7,
          -7,
          -1.6400058767914076,
          -3.7662943109320315,
          -7,
          -7,
          -7,
          -3.4300750555519395,
          -7,
          -7,
          -4.8695074678560335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1595671932336202,
          -2.099115357879955,
          -3.8209423284734454,
          -7,
          -7,
          -3.140036410975282,
          -7,
          -3.220631019448092,
          -7,
          -7,
          -7,
          -7,
          -1.6213301777659805,
          -3.4800974781137644,
          -3.5304558435846762,
          -3.6351317452471763,
          -3.8344842853348053,
          -7,
          -7,
          -7,
          -2.9283958522567137,
          -7,
          -7,
          -7,
          -7,
          -3.3328422669943514,
          -3.9828137621318627,
          -3.081707270097349,
          -7,
          -7,
          -7,
          -7,
          -3.3890774437923494,
          -7,
          -7,
          -3.8968535332204013,
          -7,
          -2.6794278966121188,
          -7,
          -7,
          -7,
          -2.948738890358178,
          -7,
          -7,
          -3.5296869537729165,
          -7,
          -7,
          -3.0110415256389502,
          -7,
          -7,
          -3.356525550338001,
          -3.3078168266624304,
          -3.2658001678796333,
          -3.0511525224473814,
          -7,
          -7,
          -2.7761561584219154,
          -7,
          -7,
          -7,
          -4.168173262170234,
          -7,
          -7,
          -7,
          -3.523486332343228,
          -7,
          -3.1756567472816637,
          -7,
          -3.688330818112266,
          -4.088065177690204,
          -3.1866738674997452,
          -7,
          -3.2826221128780624,
          -7,
          -3.4923587253239288,
          -1.953988461767908,
          -2.4082399653118496,
          -7,
          -7,
          -3.6900187807886953,
          -7,
          -3.8896378004066676,
          -2.560835320734465,
          -7,
          -7,
          -7,
          -4.394543608436238,
          -7,
          -7,
          -3.366236123718293,
          -7,
          -7,
          -4.3127695570523,
          -7,
          -7,
          -7,
          -2.833875335905508,
          -7,
          -7,
          -3.022840610876528,
          -2.3677285460869766,
          -7,
          -3.4509031374275407,
          -7,
          -4.172456974400587,
          -2.8313898024336335,
          -7,
          -7,
          -7,
          -7,
          -2.6954816764901977,
          -4.078746734273607,
          -3.864036182725775,
          -7,
          -7,
          -7,
          -4.2483043816590635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7282171875380294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7214226357500904,
          -7,
          -7,
          -7,
          -3.7680458141024165,
          -3.068353154351292,
          -2.9380190974762104,
          -2.5231772201476628,
          -2.869720514922589,
          -2.7209857441537393,
          -2.6251654069508215,
          -3.347720217034038,
          -3.390758528738717,
          -7,
          -7,
          -3.688330818112266,
          -7,
          -3.718750734739665,
          -7,
          -3.9797304306622854,
          -7,
          -7,
          -7,
          -4.096249383189612,
          -7,
          -3.198931869932209,
          -3.1818435879447726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.480438147177817,
          -4.3678030327490065,
          -3.8884603180353863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.243385345371658,
          -7,
          -3.84963435786558,
          -4.145219931266814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8344207036815328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.254907978107314,
          -7,
          -7,
          -7,
          -7,
          -3.2140486794119414,
          -3.1958996524092336,
          -7,
          -7,
          -7,
          -7,
          -2.8677293082027178,
          -3.251638220448212,
          -2.1960840270593827,
          -7,
          -7,
          -4.327747071252456,
          -2.5185139398778875,
          -2.1722768301979376,
          -7,
          -4.716095203905708,
          -3.2464985807958007,
          -7,
          -2.8221680793680175,
          -3.540496318620011,
          -7,
          -2.227435630121624,
          -3.160843537171095,
          -7,
          -7,
          -3.208441356438567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.112509247045838,
          -7,
          -3.5219222448835,
          -3.041195233696809,
          -4.355652624508672,
          -3.623714356815967,
          -7,
          -3.6000358121146183,
          -7,
          -7,
          -7,
          -7,
          -3.983581186705791,
          -3.5792117802314993,
          -7,
          -7,
          -7,
          -3.4620983811351556,
          -4.138537910876411,
          -7,
          -7,
          -7,
          -7,
          -3.1958996524092336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4303975913869666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2100508498751372,
          -3.860523665211478,
          -3.0960405542954277,
          -3.983469571943903,
          -7,
          -7,
          -4.322132427150491,
          -3.117204986092783,
          -7,
          -7,
          -7,
          -7,
          -3.824516328007209,
          -3.466496903744401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5567446126282376,
          -7,
          -7,
          -3.4252950535893714,
          -4.299056717862567,
          -7,
          -7,
          -4.717578975363936,
          -3.6846479101829965,
          -3.910464315995614,
          -3.818808522067325,
          -2.853083837210162,
          -4.002856926061121,
          -7,
          -7,
          -4.2465314060467065,
          -5.000295219884306,
          -3.383422618537694,
          -7,
          -3.9007220671142706,
          -3.67015304519218,
          -7,
          -7,
          -7,
          -4.911871077099282,
          -7,
          -3.7611005389581424,
          -3.5220201655517376,
          -7,
          -4.6637386065732995,
          -7,
          -7,
          -3.5478325978105967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.461498526783019,
          -4.2007137339640135,
          -2.833565094651821,
          -7,
          -3.5962579570038544,
          -4.767222675478806,
          -3.3152354096177272,
          -3.105765577004269,
          -7,
          -7,
          -3.458504393116643,
          -7,
          -7,
          -7,
          -3.9239830751954003,
          -4.083681747274301,
          -7,
          -4.4463662736803595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.994193931082229,
          -4.374800497685027,
          -5.405896777927573,
          -7,
          -7,
          -7,
          -4.958315370845764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.786914606730178,
          -7,
          -3.6270840883619675,
          -3.2404868451670525,
          -4.2993438354972895,
          -3.2909662309839347,
          -7,
          -3.7158608480887176,
          -4.958764500995247,
          -3.623042434246382,
          -7,
          -7,
          -7,
          -4.012077599531015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.398523541822513,
          -7,
          -2.9687301046728525,
          -7,
          -3.09429639740537,
          -3.39919282841684,
          -2.1724569744005873,
          -7,
          -7,
          -7,
          -7,
          -3.5222451276547213,
          -7,
          -7,
          -7,
          -3.843793198325913,
          -7,
          -3.715836275164994,
          -7,
          -7,
          -3.8175653695597807,
          -7,
          -2.9148718175400505,
          -7,
          -7,
          -7,
          -3.3364197048626583,
          -7,
          -7,
          -3.561155612840848,
          -3.226826240808092,
          -3.512979142422869,
          -7,
          -2.9214263410152657,
          -7,
          -3.250175948083925,
          -3.065206128054312,
          -7,
          -7,
          -2.9850717645683855,
          -7,
          -7,
          -7,
          -7,
          -3.429671548617864,
          -7,
          -3.3637999454791094,
          -7,
          -7,
          -7,
          -2.5617400834287203,
          -7,
          -7,
          -7,
          -3.5860243823869755,
          -7,
          -2.412070359196469,
          -7,
          -7,
          -3.926959488380276,
          -7,
          -3.2510811878677695,
          -7,
          -3.3521825181113627,
          -3.0394141191761372,
          -7,
          -7,
          -7,
          -7,
          -2.8379039445929424,
          -7,
          -3.36285930295868,
          -7,
          -7,
          -7,
          -2.7961719664962326,
          -7,
          -7,
          -4.01674092728626,
          -3.064832219738574,
          -3.77952434332479,
          -7,
          -3.2765383925663363,
          -3.0136796972911926,
          -7,
          -2.9818186071706636,
          -7,
          -7,
          -4.370587100246676,
          -3.538070787043172,
          -7,
          -3.231851723743416,
          -2.9560546332453033,
          -2.952469547503639,
          -3.5759667969424704,
          -3.951398238052487,
          -3.712397131406715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7344797894255772,
          -7,
          -7,
          -7,
          -3.5017950212228697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3891660843645326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.127202017590354,
          -3.8035253955765325,
          -7,
          -7,
          -7,
          -3.3002693145303565,
          -7,
          -7,
          -4.506302043627209,
          -7,
          -7,
          -7,
          -3.514282047860378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7062909572587635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.601880807895053,
          -7,
          -7,
          -7,
          -7,
          -4.204960614115603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8718063644587293,
          -7,
          -3.640779477344857,
          -4.316290761266813,
          -7,
          -7,
          -7,
          -3.2593549273080344,
          -7,
          -7,
          -4.165327436733526,
          -7,
          -7,
          -2.4771212547196626,
          -7,
          -2.9390197764486667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.839509471308361,
          -7,
          -7,
          -7,
          -3.0090257420869104,
          -3.313128713845194,
          -7,
          -7,
          -3.466125870418199,
          -7,
          -7,
          -4.30496420183769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.961421094066448,
          -7,
          -7,
          -3.5354207180561734,
          -3.8444616427611162,
          -7,
          -7,
          -7,
          -7,
          -3.711047603867034,
          -2.825642453753319,
          -7,
          -7,
          -4.823526393542703,
          -7,
          -3.3016809492935764,
          -7,
          -7,
          -3.8608169638645378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6276551191807815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.331427296520743,
          -3.552668216112193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.961088719767896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.380138853265417,
          -7,
          -7,
          -7,
          -3.510410948010177,
          -3.6045500325712614,
          -7,
          -4.1655114107855535,
          -4.752432609261474,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -3.4019172505175748,
          -7,
          -7,
          -7,
          -3.9927964427221965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.146128035678238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0472748673841794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.237443195375461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.04688519083771,
          -7,
          -3.198931869932209,
          -7,
          -7,
          -7,
          -4.497683553099681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.697839368218363,
          -4.0741425037404815,
          -7,
          -7,
          -7,
          -3.0916669575956846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0646825662285115,
          -7,
          -3.736794754924361,
          -7,
          -7,
          -7,
          -7,
          -2.765420173578722,
          -2.4447137991033645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8102325179950842,
          -3.5959369062691735,
          -3.550105999347593,
          -7,
          -7,
          -7,
          -7,
          -2.7993405494535817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.640208053499725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4961682741749778,
          -7,
          -7,
          -7,
          -4.309502414966703,
          -7,
          -7,
          -7,
          -4.4076797714411935,
          -7,
          -7,
          -7,
          -3.9796849238270258,
          -7,
          -3.9474337218870508,
          -3.089728533074736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4139699717480614,
          -3.3823773034681137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4368514568313087,
          -7,
          -7,
          -7,
          -5.131034508028235,
          -7,
          -7,
          -4.279666944048455,
          -7,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -7,
          -3.288323763370488,
          -2.916980047320382,
          -7,
          -7,
          -7,
          -7,
          -2.2174839442139063,
          -7,
          -7,
          -7,
          -3.5870371177434555,
          -2.716003343634799,
          -7,
          -3.3602146132953523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5171958979499744,
          -7,
          -7,
          -7,
          -7,
          -5.875146955714764,
          -7,
          -7,
          -4.415415768843478,
          -3.277074133470176,
          -7,
          -7,
          -7,
          -7,
          -3.4623231130842345,
          -3.697403723200488,
          -2.9595183769729982,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8971870765801535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.577951127729755,
          -7,
          -7,
          -4.921067099376002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7235012792268165,
          -7,
          -4.1314903456949486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1865099518601685,
          -7,
          -7,
          -3.66133934000604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.340057242010565,
          -7,
          -7,
          -7,
          -7,
          -3.557988148224913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464653457449502,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2664668954402414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.792475738361253,
          -4.785806585208766,
          -7,
          -7,
          -3.921790485658187,
          -7,
          -7,
          -7,
          -7,
          -3.9424297343069687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9316964284988503,
          -7,
          -7,
          -3.119585774961784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2678754193188975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4169731726030363,
          -3.108734108602365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542775648234625,
          -3.6316466629584196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1740598077250253,
          -7,
          -7,
          -2.9014583213961123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2314695904306814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0978817447138685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.494293768665333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4345689040341987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1061908972634154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1916465985627305,
          -3.907034952483417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335798783325366,
          -7,
          -7,
          -3.6522463410033232,
          -4.19147430290536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.086828283728044,
          -7,
          -7,
          -7,
          -7,
          -2.6653464274249417,
          -7,
          -7,
          -7,
          -2.850850368903348,
          -7,
          -4.538834408178194,
          -7,
          -2.8680563618230415,
          -7,
          -3.056142262059052,
          -3.149013723915726,
          -2.001445240874181,
          -1.5500017449195571,
          -7,
          -7,
          -7,
          -3.703404237019068,
          -7,
          -3.196949540973997,
          -3.4822302372089675,
          -7,
          -7,
          -3.4171394097273255,
          -7,
          -7,
          -3.0136796972911926,
          -2.6159500516564007,
          -2.926342446625655,
          -7,
          -3.8462752424122133,
          -7,
          -7,
          -3.375846436309156,
          -7,
          -3.7208205817703437,
          -3.6173149332982937,
          -7,
          -7,
          -3.78238466183098,
          -7,
          -3.326335860928751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5251744278352715,
          -7,
          -7,
          -4.6279544182762935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3544926005894364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6654871807828107,
          -7,
          -3.350441856535061,
          -7,
          -7,
          -4.074414129841136,
          -7,
          -2.7450747915820575,
          -7,
          -7,
          -4.0811852273835525,
          -7,
          -7,
          -2.8258586820285867,
          -7,
          -7,
          -7,
          -4.168968646554766,
          -7,
          -7,
          -3.8309733973226505,
          -2.911157608739977,
          -4.692260710781003,
          -7,
          -3.4216039268698313,
          -7,
          -7,
          -7,
          -3.9953719060281623,
          -3.450864692379766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6190933306267428,
          -7,
          -7,
          -3.7169210731667612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.539966367996713,
          -7,
          -7,
          -7,
          -3.128722284338427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.229937685907934,
          -7,
          -7,
          -7,
          -3.613072369428841,
          -7,
          -7,
          -7,
          -2.9618954736678504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.030894509641916,
          -7,
          -7,
          -3.2665844470668635,
          -7,
          -7,
          -3.1670217957902564,
          -7,
          -7,
          -7,
          -2.915188705173156,
          -2.842609239610562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8436687229791437,
          -7,
          -7,
          -7,
          -7,
          -1.9571281976768131,
          -2.525692524505011,
          -7,
          -2.8825245379548803,
          -3.124775845633619,
          -3.2629254693318317,
          -4.126813010041553,
          -5.712844921929427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.818665685531947,
          -7,
          -7,
          -7,
          -7,
          -2.621176281775035,
          -7,
          -7,
          -7,
          -7,
          -4.163628427790105,
          -7,
          -7,
          -7,
          -7,
          -2.0929210574619534,
          -2.909556029241175,
          -7,
          -7,
          -7,
          -7,
          -3.770483809431108,
          -3.8053649074664455,
          -7,
          -7,
          -7,
          -7,
          -3.2778383330020473,
          -3.4178547815685354,
          -7,
          -4.7097192910997725,
          -7,
          -7,
          -2.150756439860309,
          -3.9849771264154934,
          -7,
          -3.475816413031318,
          -3.0028569260611206,
          -7,
          -7,
          -2.9334872878487053,
          -7,
          -3.1065308538223815,
          -3.4331295175804857,
          -2.7998572591896123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.920332071539589,
          -7,
          -3.4095950193968156,
          -7,
          -5.131410127278809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2676409823459154,
          -3.2380461031287955,
          -3.94797257924578,
          -7,
          -2.731515509813047,
          -2.946697837245742,
          -3.2016701796465816,
          -3.330413773349191,
          -5.828307291888404,
          -7,
          -2.4502491083193614,
          -7,
          -7,
          -7,
          -7,
          -2.8041394323353503,
          -7,
          -7,
          -2.7315887651867388,
          -2.4391070276875375,
          -7,
          -7,
          -2.6344772701607315,
          -3.044539760392411,
          -7,
          -7,
          -4.077858253926433,
          -3.907160458165922,
          -5.097057648035371,
          -7,
          -3.780677274433368,
          -4.017913563370042,
          -3.285932185579952,
          -7,
          -7,
          -2.681241237375587,
          -3.5154764413823756,
          -2.816756695724616,
          -3.4062846379247267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.898793720133296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.180332359773302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.579291879863469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.065437789646456,
          -3.875871190727366,
          -7,
          -7,
          -7,
          -7,
          -3.683677298818692,
          -7,
          -7,
          -4.961890732435836,
          -4.377906998042317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.99084479280467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7692295817365937,
          -7,
          -7,
          -7,
          -7,
          -4.781504057208732,
          -7,
          -3.9083509566822143,
          -7,
          -4.420142856623786,
          -7,
          -7,
          -4.942727145365949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.29154643969221,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.466393046361356,
          -7,
          -3.576542899012627,
          -7,
          -7,
          -4.338914452663329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.796012022802761,
          -3.5949447366950835,
          -2.8976270912904414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0042783722001625,
          -7,
          -7,
          -7,
          -4.315736001000132,
          -4.786637866259987,
          -7,
          -7,
          -3.325464349547066,
          -7,
          -7,
          -7,
          -3.159266331093494,
          -3.5472330375018624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5182506513085,
          -3.1896306576921556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2898118391176214,
          -3.8153882549088887,
          -3.130816050034744,
          -7,
          -7,
          -7,
          -7,
          -2.858537197569639,
          -7,
          -7,
          -2.992995098431342,
          -3.7898626300463816,
          -7,
          -7,
          -7,
          -3.8504624327615167,
          -3.598243191653623,
          -7,
          -4.301680949293576,
          -3.4360035356698964,
          -3.721068301797159,
          -2.788521887222473,
          -7,
          -7,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6818483081437425,
          -7,
          -3.854700675614607,
          -4.544229323779228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.625415352154408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.391975460609762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.26030994579492,
          -2.529558673021163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495918807079969,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.331427296520743,
          -3.269746373130767,
          -7,
          -2.971739590887778,
          -3.3104808914626753,
          -3.1961761850399735,
          -3.152135396861876,
          -7,
          -3.0665122778565954,
          -3.6285153007690827,
          -7,
          -7,
          -7,
          -3.631063087193119,
          -3.168546586862098,
          -7,
          -3.3771240423464564,
          -7,
          -7,
          -7,
          -3.2864751824807645,
          -3.2608819504635864,
          -7,
          -2.3309932190414244,
          -3.0971934465290087,
          -3.412460547429961,
          -3.3362595520141936,
          -3.265525335219074,
          -2.6972293427597176,
          -2.8438554226231614,
          -7,
          -2.918932721836841,
          -7,
          -1.9626624199215337,
          -2.81888541459401,
          -3.0517311960598494,
          -2.3847117429382827,
          -2.844270023592027,
          -7,
          -7,
          -2.867820908045573,
          -7,
          -3.6542479813426088,
          -7,
          -2.514737442325631,
          -7,
          -3.130333768495006,
          -2.984227178928321,
          -2.380211241711606,
          -1.9386577278728878,
          -3.663323933628212,
          -7,
          -2.8009918612601714,
          -3.26232977621186,
          -7,
          -3.372681913172988,
          -3.280521462226489,
          -7,
          -7,
          -3.620864475265121,
          -3.398634324538392,
          -2.9344984512435675,
          -3.11293997608408,
          -2.994537104298498,
          -3.381656482585787,
          -7,
          -3.517489142040726,
          -7,
          -7,
          -3.2942457161381182,
          -7,
          -3.8339117150713786,
          -2.2329961103921536,
          -7,
          -7,
          -3.561575147188933,
          -3.2907022432878543,
          -2.564192460626198,
          -7,
          -7,
          -3.3489373426608426,
          -7,
          -3.037227234582274,
          -7,
          -7,
          -7,
          -7,
          -3.2140486794119414,
          -3.209649035368229,
          -7,
          -3.8914817038395197,
          -3.68761812957177,
          -7,
          -3.285782273779395,
          -7,
          -7,
          -7,
          -3.2814878879400813,
          -3.1176855012016143,
          -7,
          -4.191311257590993,
          -3.3935752032695876,
          -7,
          -7,
          -3.432086985778083,
          -7,
          -2.675663797434491,
          -7,
          -3.2773035345575963,
          -3.4486719733921984,
          -3.068371418032643,
          -2.4787725665262523,
          -2.3904533605405005,
          -7,
          -2.903344381892454,
          -7,
          -7,
          -2.7069614941736275,
          -2.458682275856224,
          -3.056599976292781,
          -7,
          -2.813500926906632,
          -3.685808892350598,
          -3.368100851709351,
          -3.318793504793297,
          -2.3313352557273705,
          -3.3765378531518766,
          -7,
          -2.8444771757456815,
          -3.7368743616484226,
          -2.6913025633834833,
          -7,
          -3.1247486911970017,
          -2.737788791709675,
          -7,
          -7,
          -3.5482489890522224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8309092995464433,
          -3.718141703622399,
          -3.79560197989418,
          -7,
          -7,
          -7,
          -3.017450729510536,
          -2.3639252106896413,
          -3.805908455074197,
          -3.608312042697327,
          -7,
          -7,
          -7,
          -3.6046939459126173,
          -7,
          -7,
          -7,
          -3.463743721247059,
          -3.297760511099134,
          -7,
          -2.887898488096872,
          -2.5902844037181616,
          -2.8789811233937366,
          -2.5110808455391185,
          -3.349714516753763,
          -7,
          -7,
          -2.200374530470726,
          -7,
          -7,
          -7,
          -3.3944516808262164,
          -7,
          -7,
          -7,
          -2.7588673836116775,
          -7,
          -7,
          -2.973589623427257,
          -7,
          -3.0479229136953148,
          -7,
          -2.509202522331103,
          -3.721068301797159,
          -7,
          -2.3688677255422803,
          -7,
          -2.8138477542288545,
          -3.1405080430381793,
          -3.181128699747295,
          -3.2773035345575963,
          -7,
          -7,
          -7,
          -7,
          -3.2286569581089353,
          -7,
          -7,
          -3.043526008270723,
          -7,
          -2.3584261304034126,
          -3.065206128054312,
          -3.4834446480985353,
          -2.551246628977399,
          -3.3594560201209864,
          -2.1635293082741804,
          -2.7148085850218555,
          -7,
          -3.5830853663476874,
          -3.4280267471363537,
          -2.7539913743366897,
          -7,
          -2.6620491649778457,
          -3.3324384599156054,
          -7,
          -3.0049658871068234,
          -3.048247531803974,
          -3.290034611362518,
          -2.4095574360397847,
          -2.397802841387041,
          -2.81424759573192,
          -2.8726514940644776,
          -4.93599905333409,
          -7,
          -3.3400473176613934,
          -3.062393937253195,
          -2.8344207036815328,
          -7,
          -2.818665685531947,
          -7,
          -3.492061604512599,
          -3.0104413055367156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.292477593667784,
          -7,
          -2.3695012957916983,
          -7,
          -7,
          -7,
          -3.31722734917642,
          -2.1517482889991797,
          -3.375846436309156,
          -7,
          -2.785863475645474,
          -3.3165993020938607,
          -7,
          -3.3953263930693507,
          -2.899492196138132,
          -3.2024883170600935,
          -2.9829492885744986,
          -7,
          -3.498566524973976,
          -3.5390760987927767,
          -2.95961615525994,
          -3.392696953259666,
          -3.768399638290876,
          -7,
          -7,
          -3.3296012483565187,
          -2.844865319914786,
          -3.3619166186686433,
          -2.5581704369024063,
          -2.3691495680897208,
          -3.919966701483387,
          -7,
          -7,
          -7,
          -2.975891136401793,
          -3.630936119064191,
          -3.6120417446452695,
          -7,
          -7,
          -3.154880244718762,
          -7,
          -2.2078185495655274,
          -7,
          -7,
          -3.216517771441886,
          -7,
          -2.534660575828444,
          -2.3282339403543926,
          -3.482908503544747,
          -3.4872798164430687,
          -7,
          -2.868119408129591,
          -3.2889196056617265,
          -7,
          -2.515211304327802,
          -3.216429830876251,
          -4.018492453401473,
          -3.6628522332647964,
          -1.9365137424788934,
          -2.441040189834335,
          -2.7721382666011203,
          -7,
          -4.984208949801015,
          -7,
          -7,
          -7,
          -7,
          -3.0720046720384486,
          -3.1413713738187212,
          -7,
          -3.3754807146185724,
          -2.5555341291847458,
          -3.0213960567419713,
          -3.5440680443502757,
          -7,
          -3.505217831531809,
          -2.6848453616444123,
          -2.2764618041732443,
          -7,
          -7,
          -3.7191477268103066,
          -3.8093576702111056,
          -4.370933279433978,
          -7,
          -3.579612130740304,
          -2.6822192809215526,
          -2.542469739402932,
          -7,
          -7,
          -3.3104808914626753,
          -2.905885787102876,
          -2.1273404437758536,
          -2.184691430817599,
          -2.941883951154944,
          -7,
          -7,
          -7,
          -3.3251049829714074,
          -2.5969634343085812,
          -3.3925210899319325,
          -2.3994479771381387,
          -7,
          -3.0297109791486663,
          -7,
          -7,
          -3.463956945172151,
          -4.782028069027038,
          -7,
          -7,
          -4.724234896490527,
          -7,
          -7,
          -4.128668465082902,
          -4.189209489582306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.642409556693114,
          -7,
          -4.686233958458255,
          -4.628695382714024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7710973064704123,
          -7,
          -7,
          -4.370216920815891,
          -7,
          -7,
          -4.307153601875836,
          -3.721123331508574,
          -4.2125604579711435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1089031276673134,
          -4.205808634353865,
          -4.4691590270720125,
          -3.0542299098633974,
          -7,
          -7,
          -7,
          -4.3938483531306005,
          -4.049992856920142,
          -7,
          -3.9854414443345294,
          -4.066088209902013,
          -3.6135775721070993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.298722113605708,
          -4.644797188035574,
          -7,
          -7,
          -2.649056554004186,
          -7,
          -4.962151423362826,
          -7,
          -7,
          -3.823474229170301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.90580667015885,
          -4.506545618777679,
          -2.7863964613723042,
          -3.996088262193923,
          -7,
          -7,
          -4.049148219733418,
          -7,
          -7,
          -4.145465748882863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.011824095594308,
          -3.262332413822626,
          -3.4431847291501847,
          -7,
          -3.216297886630392,
          -3.669855926622826,
          -7,
          -3.0533345888650136,
          -7,
          -3.36579986604032,
          -7,
          -3.765214587179864,
          -3.4390957413017493,
          -3.371806458507416,
          -7,
          -7,
          -7,
          -3.477265995424853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203032887014711,
          -2.9755237129603316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.820481469946896,
          -7,
          -7,
          -7,
          -2.8864473369430734,
          -7,
          -3.6330642726914992,
          -7,
          -3.4781334281005174,
          -3.504923724351828,
          -7,
          -3.3068537486930083,
          -3.1017470739463664,
          -3.4727564493172123,
          -3.490309708301158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6868149545073168,
          -3.36726271478424,
          -7,
          -7,
          -7,
          -7,
          -2.663700925389648,
          -3.5456781497920256,
          -2.8185275687875655,
          -3.6303261548039467,
          -7,
          -2.8739015978644615,
          -7,
          -7,
          -3.359076226059263,
          -7,
          -7,
          -3.5482665451707454,
          -7,
          -7,
          -3.2624510897304293,
          -3.4032921451582543,
          -3.6028094892346934,
          -3.265211027637486,
          -2.332794779762124,
          -3.3797686793220243,
          -2.51638280249711,
          -1.9208404681336204,
          -7,
          -3.6075979772916353,
          -7,
          -7,
          -3.435525851498655,
          -2.8018608621457806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.069655765831316,
          -7,
          -7,
          -4.262154339133367,
          -7,
          -3.6202401898458314,
          -7,
          -3.1990691962517417,
          -7,
          -3.1597927031384208,
          -3.7792356316758635,
          -7,
          -7,
          -7,
          -3.424881636631067,
          -3.8165230027390296,
          -3.0927206446840994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5864747785713966,
          -7,
          -2.5732585015417953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.152563514256539,
          -7,
          -7,
          -3.378216149749878,
          -7,
          -7,
          -7,
          -7,
          -4.039903003595179,
          -3.3879234669734366,
          -7,
          -3.675778341674085,
          -7,
          -3.5947239464097467,
          -7,
          -7,
          -7,
          -7,
          -3.7701890227359933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.157456768134226,
          -1.8126348734772357,
          -2.7319109421168726,
          -2.3355490719885337,
          -7,
          -7,
          -3.8647806784858236,
          -3.7896512087934098,
          -7,
          -7,
          -3.920905604164024,
          -2.935381292079985,
          -2.354876422516234,
          -7,
          -7,
          -7,
          -7,
          -3.1267233363447597,
          -3.9388198250262105,
          -7,
          -3.2719190139837946,
          -3.376784953893288,
          -3.3316297176299323,
          -7,
          -3.1473671077937864,
          -2.785472203306388,
          -7,
          -7,
          -4.570612981730594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2203696324513946,
          -7,
          -7,
          -3.512817758564873,
          -7,
          -3.251856513733483,
          -7,
          -3.2702128548962426,
          -2.6487780708385658,
          -7,
          -3.0293025935589983,
          -7,
          -3.329397879361043,
          -7,
          -3.362670929725667,
          -3.4363217001397333,
          -3.4509919457327993,
          -3.0974886866205247,
          -1.8824997897153146,
          -3.25478968739721,
          -3.2612628687924934,
          -3.3059958827708047,
          -2.9698816437465,
          -7,
          -7,
          -7,
          -7,
          -1.8681016267646535,
          -7,
          -3.620210439573049,
          -7,
          -7,
          -3.0665743775895824,
          -7,
          -3.50385874895841,
          -3.721645766289746,
          -7,
          -7,
          -3.3020917459175094,
          -7,
          -3.511214701136388,
          -7,
          -7,
          -2.9743581504051995,
          -3.4824447919182653,
          -3.241048150671644,
          -7,
          -7,
          -2.9954157985424152,
          -7,
          -3.34966598409663,
          -2.970036776622557,
          -7,
          -3.5992151551499463,
          -3.646599751720373,
          -3.212948190381025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4796616710572343,
          -7,
          -7,
          -7,
          -3.715292858349809,
          -7,
          -1.3895148872761447,
          -1.5146038666834796,
          -2.3178962664929563,
          -2.8893542349518193,
          -3.2796669440484556,
          -7,
          -7,
          -7,
          -3.2876983961909345,
          -7,
          -7,
          -7,
          -7,
          -3.721398375521505,
          -7,
          -3.899793153046949,
          -3.983641319556716,
          -7,
          -3.596542118161749,
          -7,
          -4.697194458267799,
          -7,
          -3.2745042226558834,
          -7,
          -7,
          -3.2946866242794433,
          -3.3658829965343102,
          -2.1759798872171676,
          -7,
          -3.1571544399062814,
          -4.3857849588433355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.500648063371912,
          -3.337601863321786,
          -3.763951826033324,
          -7,
          -7,
          -7,
          -3.2161659022859928,
          -7,
          -4.091842749738098,
          -3.4079571294295614,
          -7,
          -7,
          -7,
          -3.322997164829981,
          -7,
          -7,
          -3.4604467838807205,
          -3.392696953259666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4507108781469196,
          -3.151574127994361,
          -3.426998958756537,
          -3.2678754193188975,
          -3.24384461210177,
          -3.2460059040760294,
          -7,
          -7,
          -7,
          -3.2345172835126865,
          -7,
          -7,
          -3.669688708056208,
          -7,
          -4.302092715843355,
          -7,
          -3.191939809656508,
          -3.5162421239812813,
          -7,
          -7,
          -3.6832272060414346,
          -3.0925452076056064,
          -3.2214142378423385,
          -3.1126050015345745,
          -3.45117215751254,
          -7,
          -7,
          -2.4617319019372412,
          -3.26030994579492,
          -7,
          -7,
          -3.092413583273063,
          -7,
          -7,
          -7,
          -2.9940801570392517,
          -7,
          -3.8258802989361795,
          -7,
          -3.4158077276355434,
          -3.231979026831504,
          -3.266936911159173,
          -3.8130469651601078,
          -7,
          -7,
          -3.530199698203082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1705550585212086,
          -7,
          -7,
          -7,
          -7,
          -3.960565902818198,
          -2.8342389905065373,
          -4.161846959528519,
          -4.935630684652991,
          -7,
          -3.2427898094786767,
          -2.9708116108725178,
          -7,
          -7,
          -7,
          -3.492061604512599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4342494523964753,
          -4.470238934788868,
          -7,
          -7,
          -7,
          -7,
          -3.301897717195208,
          -7,
          -7,
          -7,
          -3.7622282842864743,
          -7,
          -2.6403571930897565,
          -3.5746677663162267,
          -7,
          -7,
          -7,
          -3.4318058760199377,
          -2.7800291273373383,
          -2.6871324357528006,
          -7,
          -4.719148911318181,
          -7,
          -7,
          -7,
          -2.6158287008014494,
          -7,
          -2.724103325108292,
          -3.187520720836463,
          -2.895422546039408,
          -3.103803720955957,
          -7,
          -7,
          -3.079362164393046,
          -3.583878598498626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.725094521081469,
          -7,
          -2.8955606584533253,
          -3.3730499983581987,
          -7,
          -3.266114049531676,
          -2.9317967661271176,
          -4.289869134324165,
          -3.9433955765089546,
          -7,
          -3.607969437822521,
          -7,
          -7,
          -3.2065560440990297,
          -7,
          -3.999826247454412,
          -2.9194964878630616,
          -7,
          -7,
          -3.6343764940883676,
          -1.9481683617271317,
          -4.3976349303069115,
          -2.473434830742589,
          -7,
          -7,
          -7,
          -3.3456350782317283,
          -2.664983670681465,
          -7,
          -7,
          -3.24699069924155,
          -7,
          -2.8829512232506107,
          -7,
          -3.4743619760326307,
          -7,
          -7,
          -3.709354775834396,
          -7,
          -3.385355990680808,
          -2.811695282873729,
          -4.0976459525488895,
          -7,
          -3.8549130223078554,
          -4.177503519504816,
          -3.3629848397370954,
          -7,
          -7,
          -7,
          -7,
          -3.3703897104835856,
          -2.838709198810807,
          -3.185258765296585,
          -7,
          -7,
          -3.5381965783494542,
          -7,
          -2.986995539724382,
          -7,
          -3.730378468587643,
          -7,
          -2.971116737367246,
          -7,
          -7,
          -4.605660526371362,
          -4.4778227972045705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1239169434981315,
          -3.5430911940308167,
          -7,
          -7,
          -7,
          -4.425640172818134,
          -5.00188508390488,
          -3.8929178678308505,
          -7,
          -7,
          -4.626448157592176,
          -7,
          -7,
          -7,
          -5.088616206091066,
          -7,
          -3.941821886920197,
          -4.136086097384098,
          -7,
          -4.667182018074072,
          -7,
          -7,
          -3.826801619428277,
          -7,
          -4.6858044157570795,
          -4.342521372898964,
          -7,
          -7,
          -7,
          -7,
          -4.165911730053656,
          -7,
          -3.419522063196344,
          -7,
          -4.201833930474351,
          -4.291431754946445,
          -7,
          -7,
          -7,
          -3.203984244420126,
          -3.5563979948413116,
          -4.0326590460399245,
          -3.6089536992758626,
          -3.9788193867328423,
          -3.259153356124792,
          -3.8438643110807478,
          -7,
          -3.974849294909796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.041493570137533,
          -4.057857616615388,
          -4.628041355416391,
          -7,
          -3.76544501809015,
          -7,
          -4.482925962459884,
          -7,
          -4.503882569503796,
          -3.5077547043664365,
          -7,
          -7,
          -7,
          -7,
          -4.789510204090254,
          -7,
          -2.5929838089301427,
          -3.5640739789771465,
          -3.8619306724050175,
          -4.500565776862321,
          -7,
          -3.6470502748685387,
          -4.960513586490487,
          -3.659440781870318,
          -4.349364960508261,
          -7,
          -2.907232159417844,
          -3.4716583590181602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.00559515442157,
          -3.20682587603185,
          -2.1393361503611485,
          -7,
          -7,
          -2.9618954736678504,
          -7,
          -3.4708513245261177,
          -7,
          -3.3375258147321936,
          -7,
          -3.689650312464508,
          -3.004493337547274,
          -7,
          -7,
          -7,
          -3.4827307000799426,
          -3.745465168670727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.739888655084543,
          -3.3317308928154574,
          -7,
          -4.050147658020303,
          -7,
          -7,
          -7,
          -4.495759350270359,
          -7,
          -7,
          -7,
          -2.804639117480264,
          -7,
          -3.2849943867229943,
          -7,
          -7,
          -2.7153300367198354,
          -7,
          -7,
          -7,
          -3.4032921451582543,
          -3.759516759462188,
          -7,
          -7,
          -3.3544926005894364,
          -7,
          -2.9725113957504123,
          -2.662921995161852,
          -7,
          -7,
          -3.168202746842631,
          -3.3242824552976926,
          -7,
          -3.6971130502213594,
          -7,
          -7,
          -7,
          -2.7081375105769228,
          -2.9735214604632243,
          -3.583198773968623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.630308201703268,
          -7,
          -7,
          -3.155336037465062,
          -2.7693673449336376,
          -2.8024316264307236,
          -3.5120169694961265,
          -3.0236022242589295,
          -7,
          -7,
          -7,
          -3.1652814310406994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3209766773428235,
          -7,
          -3.3949267432044627,
          -7,
          -7,
          -3.7796926698612303,
          -7,
          -2.9691828592322613,
          -7,
          -3.1341771075767664,
          -7,
          -3.4268364538035083,
          -2.6305061051399616,
          -7,
          -7,
          -7,
          -3.346548558548474,
          -3.411047002456093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.256236533205923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.138933940256924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8121643883928478,
          -7,
          -7,
          -7,
          -7,
          -3.0657041722395175,
          -7,
          -7,
          -3.504742636271688,
          -7,
          -3.2591158441850663,
          -7,
          -7,
          -7,
          -7,
          -2.842609239610562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.270911639410481,
          -4.90620570409175,
          -7,
          -7,
          -3.1975562131535367,
          -4.22125770712091,
          -3.9355828325357876,
          -3.3529539117100877,
          -7,
          -7,
          -7,
          -7,
          -4.357248576936287,
          -2.320602185183319,
          -3.1225435240687545,
          -3.144652031188698,
          -3.4899503484509338,
          -3.024485667699167,
          -2.929418925714293,
          -7,
          -7,
          -3.0661394928706995,
          -2.4683473304121573,
          -2.8328017810711708,
          -2.3683902022528986,
          -7,
          -7,
          -2.4043449214283257,
          -2.4260674243490388,
          -2.4321672694425884,
          -7,
          -7,
          -2.359428902985584,
          -7,
          -2.020193712151071,
          -3.1958996524092336,
          -2.785567089582034,
          -7,
          -7,
          -7,
          -2.2281436075977417,
          -3.3236645356081,
          -7,
          -2.6568644915489172,
          -7,
          -3.381709524891006,
          -7,
          -3.651859269246949,
          -3.0096936540397285,
          -7,
          -7,
          -3.5693739096150456,
          -7,
          -7,
          -7,
          -3.1789769472931693,
          -7,
          -3.6669857183296606,
          -4.46507040400967,
          -7,
          -7,
          -3.5407047833107623,
          -7,
          -3.803115554890027,
          -2.763760658827693,
          -7,
          -7,
          -4.52642328456597,
          -7,
          -3.50745106090197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3037358890399062,
          -7,
          -3.4434194617828173,
          -7,
          -4.232780179346588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.17805561153123,
          -7,
          -2.8435442119456353,
          -7,
          -4.015233976246709,
          -7,
          -7,
          -7,
          -3.4163075870598827,
          -2.9963189988040693,
          -2.971739590887778,
          -7,
          -7,
          -7,
          -3.359835482339888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.597887066597256,
          -7,
          -7,
          -7,
          -7,
          -4.396024896608593,
          -2.8767949762007006,
          -7,
          -7,
          -7,
          -7,
          -3.620739689951964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.799891684656865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.730513112669299,
          -7,
          -7,
          -2.9285665319531153,
          -7,
          -7,
          -7,
          -2.688419822002711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.115738490010839,
          -2.477778778663434,
          -2.1179023084538846,
          -2.5462341061067835,
          -3.4224256763712044,
          -7,
          -3.0073546246193787,
          -3.239049093140191,
          -1.8071483009890663,
          -7,
          -2.603144372620182,
          -2.623766000133931,
          -7,
          -7,
          -3.123851640967086,
          -7,
          -4.301485765632598,
          -7,
          -7,
          -2.842171268439124,
          -7,
          -3.7563317673210577,
          -7,
          -7,
          -7,
          -7,
          -3.446847710155809,
          -3.361538971269279,
          -3.4099331233312946,
          -3.1149444157125847,
          -7,
          -7,
          -7,
          -3.994888795364911,
          -7,
          -7,
          -2.591064607026499,
          -3.6306312440205,
          -7,
          -7,
          -3.2692793897718984,
          -3.4111144185509046,
          -7,
          -7,
          -3.333783025949038,
          -7,
          -7,
          -3.526597709103452,
          -7,
          -3.9070887450742955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3766681858105296,
          -7,
          -7,
          -7,
          -3.2357808703275603,
          -3.2657609167176105,
          -7,
          -7,
          -7,
          -3.0104413055367156,
          -7,
          -7,
          -7,
          -2.8228216453031045,
          -2.8788089323592057,
          -2.2523135346597045,
          -2.828981954007923,
          -1.9344984512435677,
          -2.4729188934866406,
          -4.169042219626128,
          -7,
          -7,
          -7,
          -7,
          -3.295786940251609,
          -3.280805928393667,
          -7,
          -3.2971036501492565,
          -7,
          -7,
          -7,
          -3.874191804679071,
          -7,
          -7,
          -7,
          -3.8574129138894935,
          -7,
          -7,
          -1.2516743529397594,
          -3.3761454342431025,
          -7,
          -7,
          -7,
          -3.7305804190595,
          -7,
          -7,
          -3.1855421548543754,
          -7,
          -7,
          -7,
          -3.1775364999298623,
          -2.4700060000867836,
          -7,
          -3.55942779975949,
          -7,
          -3.219322508419337,
          -2.598790506763115,
          -3.2105860249051563,
          -3.4207806195485655,
          -7,
          -7,
          -1.9225367368683335,
          -7,
          -3.5640739789771465,
          -3.404833716619938,
          -4.532837154509227,
          -3.942008053022313,
          -7,
          -7,
          -7,
          -7,
          -3.681512586638962,
          -3.4513258084895195,
          -3.396286546068402,
          -2.916559219301114,
          -2.1428272945383364,
          -2.339986239750892,
          -2.120059547061975,
          -7,
          -4.550237367228034,
          -3.620812485741877,
          -7,
          -7,
          -3.12057393120585,
          -7,
          -3.1031192535457137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.472317546316842,
          -7,
          -3.0419845014867866,
          -7,
          -7,
          -4.862656033629871,
          -7,
          -4.6205570690404585,
          -7,
          -2.6754116937148633,
          -3.6421346345582744,
          -2.4935214192716417,
          -7,
          -7,
          -3.197831693328903,
          -2.5595076406424986,
          -3.1465621131575565,
          -3.0925803006913113,
          -3.4825877695267677,
          -7,
          -7,
          -3.534660575828444,
          -2.915135906622012,
          -1.7488924788750166,
          -3,
          -1.8290948267207143,
          -2.3260797155471575,
          -2.372191314994798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.389803762974429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.389600161843851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.936770021230186,
          -3.5542468081661105,
          -2.562401018978738,
          -7,
          -3.5518533253826576,
          -3.484433310991099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.694644678455609,
          -5.188222357172769,
          -7,
          -2.9122220565324155,
          -1.1925336639891464,
          -2.6319508262592173,
          -4.181734048110948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.470988381529795,
          -4.65934087789275,
          -7,
          -4.872216506284493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203032887014711,
          -4.209246848753374,
          -7,
          -7,
          -4.360214613295352,
          -7,
          -2.863768824029474,
          -3.2043913319193,
          -7,
          -7,
          -3.6572607893053757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5103084019294966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.15259407792747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7239115285711124,
          -7,
          -3.5830853663476874,
          -7,
          -3.103461622094705,
          -3.5734518220354854,
          -7,
          -7,
          -7,
          -3.3984608496082234,
          -7,
          -7,
          -7,
          -7,
          -3.2801228963023075,
          -7,
          -7,
          -7,
          -7,
          -2.9431976300689264,
          -2.922829219666649,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.715501945293284,
          -3.5800121125294244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1854004831904525,
          -3.5598468007393165,
          -7,
          -7,
          -3.5519376953648374,
          -4.162614185247574,
          -3.7043221408222355,
          -3.2069607291557105,
          -7,
          -7,
          -7,
          -7,
          -4.0678516605123525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8585612575392805,
          -7,
          -7,
          -7,
          -3.4310419453358856,
          -7,
          -2.7701972139577498,
          -7,
          -7,
          -7,
          -7,
          -3.341038631677523,
          -4.109814695694399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9479236198317262,
          -7,
          -7,
          -7,
          -2.2141813086638207,
          -7,
          -7,
          -7,
          -3.4388270387221676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.665607790220819,
          -2.81778565588553,
          -2.8097840982527122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0232524596337114,
          -7,
          -7,
          -2.5010592622177517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.56643749219507,
          -7,
          -7,
          -5.270486679459426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9960736544852753,
          -7,
          -4.90666898605984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295786940251609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4435758797502576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163370120225884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.334051440346892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8615344108590377,
          -2.60422605308447,
          -7,
          -7,
          -3.9050399280762114,
          -7,
          -7,
          -7,
          -7,
          -4.311395492512552,
          -7,
          -7,
          -7,
          -7,
          -3.3049211619008916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.662757831681574,
          -2.359835482339888,
          -2.530199698203082,
          -7,
          -7,
          -2.8457180179666586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5532760461370994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.037027879755775,
          -7,
          -7,
          -7,
          -2.569373909615046,
          -3.0437551269686796,
          -2.225309281725863,
          -7,
          -7,
          -7,
          -3.2109602554168117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.282924073246148,
          -3.1992064791616577,
          -3.17507672117621,
          -7,
          -5.828185392992617,
          -3.849357981661299,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.875105269669586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.552668216112193,
          -7,
          -2.145092768246633,
          -3.5438749816745454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.02123525372655,
          -7,
          -7,
          -4.960993708942336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2405492482826,
          -3.3532428314337293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.3468398155569465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.215637563435062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.869497692547343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6055205234374688,
          -7,
          -7,
          -7,
          -7,
          -2.957607287060095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.203783273940963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2656431419421352,
          -7,
          -7,
          -5.571528323403687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.018795571889457,
          -7,
          -7,
          -7,
          -7,
          -2.92272545799326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.538265748040704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7702627381705933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.229566663511999,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.075546961392531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.372156852171985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.034227260770551,
          -3.0096633166793794,
          -7,
          -3.5567847823070253,
          -7,
          -7,
          -4.974725026450674,
          -7,
          -7,
          -7,
          -2.8662873390841948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.238852535326516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.113609151073028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8322533701970083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5422027824340283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8228216453031045,
          -1.662757831681574,
          -7,
          -7,
          -7,
          -7,
          -2.0293837776852097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8603380065709936,
          -7,
          -7,
          -7,
          -2.5921767573958667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7450747915820575,
          -7,
          -7,
          -7,
          -7,
          -3.2113875529368587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2835273648616936,
          -2.8998205024270964,
          -3.477555332198981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.758684849882441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6094876898532853,
          -7,
          -3.799368122831065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8783091919388095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.673951199690897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3742441252240405,
          -7,
          -7,
          -7,
          -4.677305761793444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.553883026643874,
          -3.177728835841732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.896289164699955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.346855447993205,
          -7,
          -7,
          -4.6041720329983375,
          -7,
          -7,
          -2.110589710299249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.173535895009906,
          -7,
          -7,
          -7,
          -7,
          -2.9161906599805376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.629307640073749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.093288574520754,
          -7,
          -7,
          -7,
          -3.9184497424011577,
          -7,
          -7,
          -7,
          -3.1010593549081156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.647656763195541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5779511277297553,
          -7,
          -4.297738631732803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9398436043565996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3191060593097763,
          -7,
          -3.7945577512547617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.733999286538387,
          -7,
          -4.016225245647056,
          -2.8438554226231614,
          -2.8208579894397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.903244676848627,
          -7,
          -7,
          -7,
          -4.191702463559194,
          -3.5089873386369184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335838869579954,
          -2.4284240729856665,
          -7,
          -3.6524397475894204,
          -4.492534571675094,
          -3.00987563371216,
          -7,
          -7,
          -3.286905352972375,
          -7,
          -7,
          -3.910713317671148,
          -7,
          -7,
          -7,
          -7,
          -2.9677819080757994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.839883241709907,
          -2.6766936096248664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305603917792398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.550228353055094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9177155165594932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1711411510283822,
          -7,
          -3.225567713439471,
          -7,
          -4.627959532707486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9667047766578745,
          -7,
          -7,
          -7,
          -7,
          -4.375517300649672,
          -7,
          -7,
          -7,
          -7,
          -4.081221250482603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0025979807199086,
          -4.169027506008932,
          -7,
          -7,
          -7,
          -7,
          -4.516169451725322,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9734357546986665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.239633102713035,
          -4.149803938227022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.539991419593507,
          -7,
          -2.3961993470957363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3708830167776056,
          -3.3483048630481607,
          -2.928907690243953,
          -2.964907523353008,
          -1.667452952889954,
          -7,
          -4.173324312537017,
          -2.8055008581584002,
          -7,
          -7,
          -2.660865478003869,
          -2.166578109919652,
          -7,
          -7,
          -3.9152414973061944,
          -7,
          -7,
          -7,
          -7,
          -3.905932659661591,
          -7,
          -7,
          -7,
          -3.1316186643491255,
          -3.344195715871435,
          -7,
          -7,
          -3.0806264869218056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5918434112247843,
          -7,
          -7,
          -7,
          -2.3222192947339195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3554515201265174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9035782936630543,
          -7,
          -7,
          -7,
          -7,
          -2.7965743332104296,
          -2.5722906061514177,
          -7,
          -7,
          -2.621176281775035,
          -7,
          -7,
          -2.8788089323592057,
          -2.359835482339888,
          -7,
          -7,
          -2.4216039268698313,
          -2.103803720955957,
          -1.9923325590474643,
          -1.4856055528197656,
          -4.46469814944665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.010956838955719,
          -7,
          -7,
          -2.1751250862836606,
          -4.709736237854444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.130140705819276,
          -7,
          -7,
          -7,
          -2.8055008581584002,
          -3.1320995219165044,
          -2.4462954799526213,
          -7,
          -2.749736315569061,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -3.3180633349627615,
          -7,
          -3.4099331233312946,
          -7,
          -5.131416545297398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0749626431316264,
          -2.7706065781900606,
          -1.6520756165766066,
          -7,
          -4.652199265701975,
          -3.258517559916453,
          -7,
          -7,
          -7,
          -7,
          -3.600210306409328,
          -7,
          -2.909556029241175,
          -7,
          -7,
          -3.287353772714747,
          -7,
          -7,
          -7,
          -7,
          -3.6018427897820984,
          -7,
          -4.856082101490554,
          -7,
          -5.574184691341416,
          -7,
          -3.780821175853473,
          -7,
          -3.4623231130842345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.986995539724382,
          -7,
          -7,
          -7,
          -2.1351326513767748,
          -2.9138138523837167,
          -1.353484751416607,
          -2.8494194137968996,
          -2.1818435879447726,
          -3.3244882333076564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.764407793982475,
          -3.5748411950633847,
          -7,
          -7,
          -7,
          -5.235045910065424,
          -2.584783378996508,
          -2.9907826918031377,
          -4.438589810070449,
          -7,
          -4.678973375919766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.990853663651464,
          -7,
          -7,
          -7,
          -3.194976603216055,
          -7,
          -4.653646591254662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.870083821967762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.178833117359116,
          -7,
          -7,
          -7,
          -7,
          -2.482873583608754,
          -7,
          -7,
          -7,
          -4.0970003368669365,
          -7,
          -7,
          -7,
          -7,
          -3.2823955047425257,
          -3.3463529744506384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0236639181977933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.0939292328222185,
          -7,
          -7,
          -7,
          -2.9728711024944356,
          -7,
          -3.4367985102318035,
          -7,
          -2.858236335429513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1899112096928057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.98878184345364,
          -4.091661096631954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7900035203904894,
          -7,
          -7,
          -7,
          -4.327685809541024,
          -3.2972131959896416,
          -3.0265332645232967,
          -3.824516328007209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.243199328115247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.022943609686901,
          -3.3474275986185416,
          -7,
          -7,
          -7,
          -7,
          -4.392010683195499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.833147111912785,
          -7,
          -7,
          -7,
          -2.950364854376123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1948888114159875,
          -2.944975908412048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.162862993321926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426400098114251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7072862306926577,
          -2.5327543789924976,
          -3.6629466143326246,
          -3.9485247389054314,
          -7,
          -2.5532760461370994,
          -7,
          -3.3109056293761414,
          -7,
          -7,
          -3.962529147470517,
          -7,
          -7,
          -7,
          -2.6026025204202563,
          -3.2942457161381182,
          -2.205475036740891,
          -3.4794313371977363,
          -7,
          -3.3510228525841237,
          -7,
          -4.099809297247691,
          -1.9815165943059867,
          -7,
          -7,
          -7,
          -3.6378898165807905,
          -7,
          -7,
          -7,
          -0.9571200035186085,
          -7,
          -3.6070527124106295,
          -3.4387005329007363,
          -3.9024924211586036,
          -3.7913397039651393,
          -7,
          -3.0043213737826426,
          -2.735119634081872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5634810853944106,
          -4.149095891067973,
          -7,
          -7,
          -3.3958503760187813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.648174542279039,
          -7,
          -7,
          -7,
          -7,
          -3.57316180901509,
          -7,
          -7,
          -7,
          -3.437750562820388,
          -2.9858753573083936,
          -2.0178964621040505,
          -7,
          -2.951580344903392,
          -7,
          -4.452139252352545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.271841606536499,
          -7,
          -3.1261778087238485,
          -7,
          -7,
          -7,
          -2.926856708949692,
          -2.8993462025299315,
          -7,
          -7,
          -7,
          -7,
          -4.384263785722803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6950144419299042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1065308538223815,
          -3.4396484295634737,
          -3.3012470886362113,
          -7,
          -7,
          -3.696705780933917,
          -7,
          -7,
          -2.6263403673750423,
          -4.367299999681404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7265234583862394,
          -3.7261564661727546,
          -4.153174379371534,
          -3.680698029697635,
          -7,
          -7,
          -7,
          -7,
          -3.1283992687178066,
          -7,
          -3.52270499273475,
          -7,
          -7,
          -7,
          -3.179089476633134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.912930241739325,
          -2.521884935963594,
          -2.409691647382953,
          -2.971333843594558,
          -2.6164755138885654,
          -7,
          -3.6886989917101185,
          -2.8744818176994666,
          -2.60422605308447,
          -7,
          -3.011993114659257,
          -2.846955325019824,
          -7,
          -7,
          -2.6888907154091393,
          -7,
          -7,
          -2.6354837468149124,
          -7,
          -2.8989973412881245,
          -7,
          -7,
          -7,
          -2.8639173769578603,
          -2.762115641442657,
          -2.35052490357268,
          -3.258397804095509,
          -7,
          -3.2000292665537704,
          -3.6266482684740105,
          -7,
          -7,
          -7,
          -7,
          -3.286905352972375,
          -7,
          -7,
          -3.5959001996400763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.330966897366099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9095025414054154,
          -3.577261953585815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2523135346597045,
          -2.530199698203082,
          -7,
          -2.4216039268698313,
          -7,
          -7,
          -1.5378190950732742,
          -7,
          -4.2433754264624115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6786094165589263,
          -2.9599948383284165,
          -7,
          -3.511749711344983,
          -7,
          -7,
          -7,
          -4.314351841775663,
          -7,
          -7,
          -2.7058637122839193,
          -4.1085565677610685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.958516103423041,
          -7,
          -3.836640541572774,
          -7,
          -7,
          -7,
          -3.143014800254095,
          -2.847726855657811,
          -3.4217684012069243,
          -7,
          -2.8273692730538253,
          -2.5443781439578124,
          -7,
          -3.2174839442139063,
          -7,
          -3.330007700872759,
          -2.2220918864542596,
          -7,
          -3.428134794028789,
          -7,
          -7,
          -7,
          -7,
          -4.284859176733764,
          -7,
          -7,
          -7,
          -3.26528962586083,
          -3.652294700725204,
          -2.54171788544238,
          -3.305064611772354,
          -2.9733587998863977,
          -3.0403385718205698,
          -7,
          -5.2263156521641045,
          -3.2650537885040145,
          -7,
          -7,
          -2.525044807036845,
          -7,
          -3.6120417446452695,
          -2.8744818176994666,
          -2.6627578316815743,
          -7,
          -7,
          -2.707995746422929,
          -7,
          -3.3934874581471752,
          -2.6875289612146345,
          -7,
          -3.312388949370592,
          -7,
          -4.856747010776003,
          -7,
          -5.875279513902236,
          -7,
          -2.78738962135211,
          -4.319451690966244,
          -3.7716609593488872,
          -7,
          -2.57672517213259,
          -7,
          -3.2287852009806493,
          -7,
          -7,
          -2.8344207036815328,
          -7,
          -1.6532125137753437,
          -2.909556029241175,
          -2.8208579894397,
          -2.489489731962272,
          -7,
          -3.6396856612426816,
          -2.2540644529143377,
          -2.08893477545536,
          -7,
          -2.6074550232146687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.589916106886427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6730485683168865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7738156894162005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.451694349193542,
          -7,
          -7,
          -7,
          -4.3686308363704,
          -4.162713725583078,
          -3.8822968009376515,
          -7,
          -7,
          -7,
          -4.758192516865709,
          -2.8124676978229344,
          -3.1831274287013995,
          -4.440326485098404,
          -3.962336182154077,
          -7,
          -7,
          -3.959025483806947,
          -7,
          -2.416640507338281,
          -7,
          -7,
          -3.6604860157849677,
          -7,
          -4.088189264361116,
          -4.78888500204134,
          -7,
          -7,
          -2.40049254446103,
          -2.564073978977147,
          -4.9552161670245845,
          -7,
          -4.928141415011316,
          -4.0744507189545915,
          -7,
          -7,
          -4.320561680195237,
          -7,
          -4.305157828786486,
          -7,
          -7,
          -7,
          -4.596860890622566,
          -4.486444648100676,
          -7,
          -4.165081026825811,
          -7,
          -7,
          -4.444310290512258,
          -7,
          -7,
          -3.908270499495724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0427723374976736,
          -3.704750904290671,
          -7,
          -7,
          -4.040068042960068,
          -7,
          -2.2846562827885157,
          -7,
          -3.74170298395774,
          -7,
          -3.5924612881106253,
          -7,
          -7,
          -7,
          -7,
          -3.3066394410242617,
          -2.958468318366944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.241048150671644,
          -3.214843848047698,
          -7,
          -4.0090682761922185,
          -7,
          -7,
          -4.5957056026935375,
          -4.4922329107355194,
          -7,
          -7,
          -7,
          -2.853241780329114,
          -7,
          -2.674248595527798,
          -7,
          -3.1917303933628562,
          -3.470753400178036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0965624383741357,
          -7,
          -3.256958152560932,
          -7,
          -7,
          -7,
          -3.532754378992498,
          -3.506369717095504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3140779917792127,
          -3.6842812553010647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3184807251745174,
          -3.7976829349148993,
          -7,
          -7,
          -7,
          -3.453481424721092,
          -2.8311229220209437,
          -7,
          -3.701913211212344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2337573629655108,
          -7,
          -3.159266331093494,
          -3.358030076576957,
          -7,
          -7,
          -3.236033147117636,
          -2.780317312140151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3961993470957363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.19641109941299,
          -7,
          -2.9800033715837464,
          -7,
          -7,
          -3.09324653110384,
          -7,
          -7,
          -7,
          -2.6464037262230695,
          -3.3460594330525737,
          -2.8929289823552056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4256564708810275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.869173027321683,
          -7,
          -7,
          -4.969483474373034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.839368045695636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.906814333174154,
          -3.3930484664167784,
          -3.887335930399167,
          -7,
          -7,
          -7,
          -3.389343311252078,
          -7,
          -7,
          -7,
          -7,
          -2.833784374656479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2987439434824073,
          -7,
          -7,
          -5.124416183245597,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.229615298289249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5975855017522043,
          -4.372506963362899,
          -7,
          -7,
          -7,
          -7,
          -4.3793236507533155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.86308482532036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5717088318086874,
          -7,
          -7,
          -3.991801798844644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3394514413064407,
          -7,
          -7,
          -3.5579280590540248,
          -2.292888692709275,
          -7,
          -4.673714977502912,
          -7,
          -7,
          -7,
          -2.575187844927661,
          -1.8440627725826517,
          -7,
          -7,
          -3.60535892548885,
          -7,
          -7,
          -7,
          -7,
          -4.449761793777076,
          -7,
          -7,
          -7,
          -7,
          -3.3106933123433606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062995401186467,
          -7,
          -7,
          -7,
          -3.119915410257991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8945929479229555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.828981954007923,
          -7,
          -7,
          -2.103803720955957,
          -7,
          -7,
          -7,
          -2.034350745127909,
          -4.941024193064269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.569373909615046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.688330818112266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8963424669127065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9117965904372523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.762378429311964,
          -7,
          -3.0025979807199086,
          -7,
          -7,
          -3.85101360682367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.975891136401793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.768860000842957,
          -7,
          -3.751048034820188,
          -7,
          -2.9355072658247128,
          -7,
          -7,
          -7,
          -3.693463127219531,
          -7,
          -7,
          -7,
          -7,
          -2.1072099696478683,
          -7,
          -1.8177456121363058,
          -7,
          -2.1722136039924793,
          -4.021533840525457,
          -7,
          -7,
          -7,
          -4.769465948560255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.064832219738574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.89726044333122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.990125651797603,
          -5.487479169971561,
          -7,
          -7,
          -3.1795517911651876,
          -7,
          -4.953894934805404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.568721783427787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.28668096935493,
          -4.174088895463686,
          -7,
          -7,
          -7,
          -7,
          -2.744553742351106,
          -7,
          -7,
          -7,
          -4.317736098878416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.166726055580052,
          -3.176958980586908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.792318133397602,
          -4.785486437569411,
          -7,
          -7,
          -3.2200557602513413,
          -7,
          -3.1085650237328344,
          -7,
          -2.8058405488146727,
          -3.5432234514864356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.989894563718773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.116168070800589,
          -3.405346360175709,
          -7,
          -7,
          -7,
          -7,
          -2.7481880270062007,
          -7,
          -7,
          -3.2571984261393445,
          -7,
          -7,
          -7,
          -7,
          -4.3260079677596055,
          -3.5801263254115825,
          -7,
          -3.9970804354717306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1308696038275126,
          -3.632356046239073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.41077723337721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3230457354817013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7270910057095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9223217045445207,
          -7,
          -7,
          -4.080285424186225,
          -7,
          -7,
          -7,
          -3.2821687783046416,
          -2.782830805202592,
          -7,
          -3.6342875546005997,
          -2.522009286567709,
          -2.584331224367531,
          -7,
          -7,
          -2.78627807661434,
          -2.1063609088067503,
          -7,
          -7,
          -7,
          -7,
          -3.79829900014416,
          -7,
          -2.8567288903828825,
          -3.2979792441593623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9773424780314754,
          -7,
          -4.004418111778492,
          -3.4174716932032934,
          -3.594171479114912,
          -3.782042416620554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.137775961313472,
          -7,
          -7,
          -7,
          -7,
          -3.3224260524059526,
          -7,
          -7,
          -7,
          -7,
          -2.776701183988411,
          -7,
          -7,
          -7,
          -2.6225100655693763,
          -7,
          -7,
          -7,
          -4.3848524341177,
          -7,
          -4.0127528874912155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.144636467588492,
          -7,
          -2.144574207609616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6129956560323473,
          -3.1704634100768008,
          -7,
          -7,
          -7,
          -7,
          -4.3819089060057985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8673201445219627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0595634179012676,
          -7,
          -7,
          -7,
          -7,
          -3.8188195075475364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.149157506231856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5140826625258312,
          -7,
          -7,
          -7,
          -3.498084887646875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3636119798921444,
          -2.8662873390841948,
          -2.318324250850395,
          -2.9636697965031646,
          -2.706148588963142,
          -7,
          -3.883788766572103,
          -2.790988475088816,
          -2.128722284338427,
          -7,
          -7,
          -2.45484486000851,
          -7,
          -7,
          -3.1354506993455136,
          -7,
          -7,
          -7,
          -7,
          -3.073672053996437,
          -7,
          -7,
          -3.565611724902059,
          -2.823148059810694,
          -3.038620161949703,
          -3.161368002234975,
          -7,
          -7,
          -7,
          -3.6129956560323473,
          -7,
          -7,
          -7,
          -7,
          -3.2564772062416765,
          -7,
          -7,
          -3.591064607026499,
          -7,
          -3.7445276734725663,
          -7,
          -2.6863382970503276,
          -2.749736315569061,
          -7,
          -7,
          -7,
          -7,
          -2.8735143535392917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.47928731647617,
          -7,
          -7,
          -7,
          -7,
          -3.292477593667784,
          -7,
          -1.9344984512435677,
          -7,
          -2.0293837776852097,
          -1.9923325590474643,
          -1.5378190950732742,
          -7,
          -7,
          -2.895422546039408,
          -4.941734982088115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9375178920173464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.468839448857906,
          -7,
          -7,
          -7,
          -2.7427251313046983,
          -7,
          -7,
          -7,
          -3.2234094022589295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7331972651065692,
          -2.146128035678238,
          -7,
          -3.1815577738627865,
          -7,
          -3.00108438129222,
          -2.713648019791832,
          -7,
          -7,
          -7,
          -4.6542150585275275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5666731376061165,
          -7,
          -7,
          -2.6328909362366324,
          -2.6572765496426967,
          -3.243534101832062,
          -2.2404105625136093,
          -7,
          -5.52726375359217,
          -3.8596785766284483,
          -7,
          -7,
          -7,
          -7,
          -3.296665190261531,
          -7,
          -2.596047007545439,
          -7,
          -7,
          -7,
          -2.795184589682424,
          -3.6830470382388496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.906819715466545,
          -5.273140224066812,
          -7,
          -3.176814480674777,
          -4.716871065166026,
          -3.761927838420529,
          -7,
          -7,
          -7,
          -3.5129510799724906,
          -7,
          -7,
          -2.9822712330395684,
          -7,
          -7,
          -3.0620175988571123,
          -2.244689360492884,
          -7,
          -7,
          -3.325207689482919,
          -1.4671015942208998,
          -2.2167074772748543,
          -7,
          -7,
          -4.593164181568868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.879239282004893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.234992823547606,
          -3.1383026981662816,
          -7,
          -4.438257472106888,
          -3.9617152704537655,
          -4.076667745482861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3659557226656793,
          -2.7810369386211318,
          -4.653545345309011,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.897181573574155,
          -7,
          -7,
          -7,
          -4.955037987024298,
          -7,
          -5.046137982947624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0161973535124393,
          -4.178228510935771,
          -7,
          -7,
          -4.0374663396435,
          -7,
          -2.4104156728052764,
          -7,
          -7,
          -7,
          -4.494836124034309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.344294005898312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.207095540419218,
          -3.4984484031739997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.093855762641554,
          -7,
          -7,
          -7,
          -3.023046584075505,
          -7,
          -3.1320995219165044,
          -7,
          -7,
          -3.94485265185328,
          -7,
          -7,
          -7,
          -3.1420764610732848,
          -7,
          -7,
          -7,
          -3.0484418035504044,
          -7,
          -3.2242740142942576,
          -7,
          -7,
          -7,
          -3.0380900496081393,
          -3.48826861549546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.915493637849186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.367355921026019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.301753217283077,
          -3.674115763447881,
          -3.2949069106051923,
          -7,
          -3.6021251306149233,
          -7,
          -7,
          -7,
          -4.02428037604708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.111598524880394,
          -7,
          -7,
          -7,
          -3.322219294733919,
          -3.646599751720373,
          -7,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -2.951823035315912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.637989780784685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.906335041805091,
          -7,
          -7,
          -7,
          -7,
          -4.495655325147846,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -3.3710678622717363,
          -7,
          -7,
          -7,
          -7,
          -3.634275694625944,
          -3.1565491513317814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.219322508419337,
          -2.9626849566736677,
          -7,
          -7,
          -3.289142835932333,
          -3.62747366209953,
          -7,
          -7,
          -7,
          -7,
          -3.761451706976967,
          -3.368100851709351,
          -7,
          -7,
          -7,
          -7,
          -3.6596500299986263,
          -2.0769639103881374,
          -7,
          -3.753353212641496,
          -3.590615464696057,
          -7,
          -7,
          -7,
          -2.6461235362250264,
          -3.382197210377454,
          -3.2681097298084785,
          -3.291742638086838,
          -7,
          -7,
          -7,
          -7,
          -2.8790958795000727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.968414452266617,
          -7,
          -7,
          -7,
          -7,
          -2.9541620770875987,
          -7,
          -7,
          -7,
          -3.3723595825243238,
          -7,
          -3.2322229201632005,
          -3.103461622094705,
          -2.362114994039135,
          -3.3829770749788555,
          -7,
          -7,
          -3.2773799746672547,
          -7,
          -3.3418300569205104,
          -2.7409545058228053,
          -7,
          -2.525260820213098,
          -2.8953304466897034,
          -4.165199796041853,
          -7,
          -7,
          -2.645790575645571,
          -7,
          -7,
          -2.8216772586543666,
          -3.2022157758011316,
          -7,
          -4.526681666309884,
          -7,
          -3.2168254232660476,
          -7,
          -7,
          -3.4547432587723694,
          -7,
          -7,
          -7,
          -3.1027766148834415,
          -7,
          -3.1397741716810974,
          -7,
          -2.676083645364622,
          -7,
          -4.232983411537435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.180355296448789,
          -7,
          -7,
          -7,
          -2.8132055719057973,
          -2.8790958795000727,
          -2.754348335711019,
          -2.7972675408307164,
          -2.5457193561568654,
          -3.2199161886494805,
          -3.291368850451583,
          -3.238798562713917,
          -2.668012971641832,
          -7,
          -3.4996183597000066,
          -7,
          -7,
          -7,
          -3.3551640665152047,
          -7,
          -7,
          -2.4282721029811807,
          -7,
          -7,
          -7,
          -7,
          -4.220265033587232,
          -3.3697722885969625,
          -7,
          -3.1023479360588784,
          -7,
          -7,
          -2.828930025405288,
          -2.8229304774003796,
          -7,
          -3.17260293120986,
          -4.386712938858596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.767897616018091,
          -3.202896808529529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4247001891741125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.323628159997115,
          -7,
          -3.1535099893008374,
          -7,
          -7,
          -7,
          -7,
          -3.1314582601065255,
          -2.590817075254678,
          -2.5298151966446305,
          -2.855670556918036,
          -2.0272721727238423,
          -1.186657669499552,
          -7,
          -3.519172991787454,
          -3.2586372827240764,
          -7,
          -2.5428254269591797,
          -1.7887681071554584,
          -1.4165612637504499,
          -7,
          -7,
          -2.8930215923314395,
          -7,
          -4.303217663573669,
          -7,
          -7,
          -3.116745907663402,
          -7,
          -3.461198288622493,
          -2.9882021002587806,
          -7,
          -7,
          -7,
          -3.1577588860468637,
          -2.898542359241223,
          -3.423245873936808,
          -7,
          -3.2725377773752373,
          -3.752202153176521,
          -7,
          -7,
          -3.175946470095546,
          -7,
          -2.7382518980637593,
          -3.155808206708329,
          -7,
          -3.3518606992882605,
          -7,
          -2.946615995262667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.763855659261606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2629254693318317,
          -3.193958978019187,
          -3.287801729930226,
          -2.4831592097169795,
          -7,
          -7,
          -5.713833978722122,
          -7,
          -2.7774268223893115,
          -2.5834255004065065,
          -7,
          -7,
          -7,
          -7,
          -3.4342494523964753,
          -2.4729188934866406,
          -2.8457180179666586,
          -7,
          -1.4856055528197656,
          -7,
          -2.034350745127909,
          -2.895422546039408,
          -7,
          -3.51601603520119,
          -7,
          -7,
          -7,
          -7,
          -3.313023110323238,
          -2.997167871445834,
          -7,
          -3.3142886609474975,
          -7,
          -2.760874638052189,
          -7,
          -3.0330214446829107,
          -7,
          -7,
          -7,
          -3.1595671932336202,
          -7,
          -4.546863330761307,
          -2.234896745731588,
          -7,
          -7,
          -7,
          -7,
          -3.2563568863955257,
          -3.81424759573192,
          -3.705521613422667,
          -3.4924810101288766,
          -2.574857708475501,
          -7,
          -7,
          -2.2413804341476116,
          -2.082246654743669,
          -1.9072283458195376,
          -1.7767011839884108,
          -7,
          -2.2815383608882356,
          -2.435985853029805,
          -2.7533276666586115,
          -7,
          -7,
          -7,
          -2.8627275283179747,
          -7,
          -7,
          -7,
          -4.533091749496603,
          -3.9459607035775686,
          -7,
          -4.3082228192210215,
          -7,
          -3.3273589343863303,
          -3.38747881199254,
          -7,
          -4.002079626393121,
          -7,
          -3.0740236540366594,
          -2.5129214565297655,
          -1.331568783566107,
          -2.917899189424106,
          -4.715106847213561,
          -2.492035701999729,
          -7,
          -7,
          -7,
          -3.826398782187618,
          -3.0128372247051725,
          -7,
          -2.3404441148401185,
          -7,
          -7,
          -2.490660653356137,
          -7,
          -3.779307827583586,
          -7,
          -2.881004030556986,
          -3.4125445421080887,
          -7,
          -4.863132442718785,
          -4.103889203582334,
          -4.444501646725794,
          -7,
          -3.380693523251344,
          -3.7922845448163978,
          -3.241172786770047,
          -7,
          -2.864708802200848,
          -7,
          -3.3475251599986895,
          -2.9470046073947573,
          -3.3202847949567196,
          -7,
          -7,
          -7,
          -3.5446880223026773,
          -1.998720781160827,
          -3.299942900022767,
          -0.9725720697647939,
          -2.5863461416029554,
          -1.8084360542881113,
          -3.0689011424160633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.408901082354143,
          -7,
          -7,
          -7,
          -7,
          -5.002109880727161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.544601278651145,
          -7,
          -7,
          -4.667667712106219,
          -7,
          -7,
          -4.781532786564054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7361972389182934,
          -7,
          -3.236807611141011,
          -3.637939801558909,
          -7,
          -7,
          -7,
          -4.760874638052189,
          -1.545383382070007,
          -2.612571954065176,
          -7,
          -3.967351376033999,
          -3.735146273829275,
          -7,
          -7,
          -7,
          -2.352733653314646,
          -7,
          -4.391058669254854,
          -7,
          -7,
          -3.162937607956918,
          -4.887299338914315,
          -5.7072856626157895,
          -2.4538277764478607,
          -2.3856807347184095,
          -3.255272505103306,
          -3.2696606383128284,
          -7,
          -7,
          -7,
          -4.2431869241314715,
          -7,
          -7,
          -4.448072189065087,
          -4.011655010724778,
          -7,
          -7,
          -7,
          -4.125508374372735,
          -7,
          -7,
          -3.9941997995697123,
          -3.919273076788743,
          -7,
          -3.284596018245864,
          -7,
          -7,
          -4.141439320940584,
          -4.015841571684366,
          -7,
          -2.568495067193246,
          -7,
          -7,
          -7,
          -4.483515978390542,
          -2.471024863442615,
          -2.9800836156911226,
          -7,
          -7,
          -3.3613878203125966,
          -7,
          -1.8123190431982061,
          -3.225567713439471,
          -3.118859695409587,
          -7,
          -3.6278299485495435,
          -3.7085908451503435,
          -7,
          -7,
          -7,
          -7,
          -2.445526365746388,
          -7,
          -7,
          -3.3670451557305383,
          -7,
          -7,
          -7,
          -2.170160516633716,
          -7,
          -4.052155067199565,
          -7,
          -7,
          -7,
          -3.842630038656657,
          -7,
          -7,
          -7,
          -1.9842976372678365,
          -7,
          -2.7456323657784334,
          -7,
          -2.3003613358214947,
          -3.097719940343722,
          -7,
          -7,
          -7,
          -2.632288535826703,
          -7,
          -7,
          -7,
          -3.0629578340845103,
          -7,
          -3.4581844355702627,
          -7,
          -7,
          -7,
          -2.6490426340861766,
          -2.210750561554938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5385178795875127,
          -2.926661984253831,
          -2.9863237770507656,
          -7,
          -3.11544408343624,
          -7,
          -7,
          -2.9770373352246815,
          -7,
          -7,
          -2.7183632683141012,
          -3.263340126851339,
          -7,
          -7,
          -2.9027279240431674,
          -2.9864831036687094,
          -2.504470862494419,
          -7,
          -2.8782139380544858,
          -7,
          -3.5075860397630105,
          -7,
          -3.2252723503527463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542028281879299,
          -7,
          -7,
          -3.604154024809671,
          -7,
          -2.798650645445269,
          -7,
          -2.965985202017604,
          -7,
          -2.062173082510824,
          -2.517428784441516,
          -7,
          -7,
          -2.3625138895930924,
          -3.055187138555754,
          -3.5088998897969157,
          -3.3203540328176717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9813177870322458,
          -7,
          -7,
          -7,
          -2.3577231509290413,
          -7,
          -3.5369370227046737,
          -7,
          -3.8394780473741985,
          -3.8312296938670634,
          -7,
          -7,
          -7,
          -3.644832328825636,
          -7,
          -7,
          -3.5574804670426556,
          -2.612359947967774,
          -2.7019994748896368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.511749711344983,
          -7,
          -7,
          -2.640150040936102,
          -7,
          -7,
          -4.340558126963426,
          -4.3391482237708905,
          -7,
          -4.6402726869436295,
          -4.641107085692552,
          -3.1835839736533478,
          -3.255415276870857,
          -4.641141817541527,
          -4.165377888987069,
          -1.9912386295516902,
          -3.6629749246538044,
          -7,
          -4.942142043219304,
          -3.8648880856896426,
          -2.872629130512553,
          -3.7692640599117246,
          -4.341736150601685,
          -7,
          -4.941918703252601,
          -4.464305695943203,
          -2.590025897957538,
          -3.5285264676240913,
          -4.940899809694886,
          -2.2175992028350455,
          -2.2184336737060644,
          -4.467682084713682,
          -3.942677590997809,
          -7,
          -3.7450357345667062,
          -4.042713299346113,
          -4.2441137656630215,
          -2.2602768129942987,
          -3.8655333169173196,
          -3.288115025288103,
          -3.5613945925060193,
          -3.4957672749725406,
          -3.067379236051902,
          -3.863134426663756,
          -3.91252156664849,
          -7,
          -3.6278533350162383,
          -3.2704062482323635,
          -3.027817056380705,
          -4.464971167320695,
          -4.466284216743369,
          -3.648433200512645,
          -3.9910783313529503,
          -3.045790326219194,
          -3.8287391943822384,
          -3.6021389467834846,
          -4.176477127123627,
          -3.8663168819216542,
          -2.7104912734275546,
          -1.793667057220101,
          -2.8796886271593203,
          -2.9044266957089535,
          -2.9386740080093743,
          -7,
          -4.342126469955725,
          -4.049445773663138,
          -3.496998797740092,
          -4.342728553287486,
          -4.166676745959573,
          -4.640774511680957,
          -4.3418597073294904,
          -2.973926021334254,
          -2.9739148385188066,
          -3.827930669166558,
          -7,
          -3.2185452300053567,
          -7,
          -3.4334403772443878,
          -2.2995270207845793,
          -4.464688218289176,
          -4.350160762910063,
          -2.785458363992269,
          -4.941695248372151,
          -2.907753267261719,
          -7,
          -7,
          -2.821490462846237,
          -4.250185712886612,
          -3.9885044560907814,
          -4.463902938344607,
          -3.748410933476706,
          -4.341919002075212,
          -3.611684693756236,
          -4.655124022144736,
          -3.833994955928646,
          -4.646364510503877,
          -2.22825463986061,
          -3.450504104449732,
          -3.0531454728569654,
          -4.038426414658448,
          -7,
          -4.9520752895626545,
          -2.8936734010236806,
          -3.871611849078623,
          -4.054617841727174,
          -7,
          -3.512783346395494,
          -3.3528402666795025,
          -7,
          -4.941173406099363,
          -2.6104789427735,
          -4.941446830252359,
          -3.671869221719906,
          -4.247369250804275,
          -3.004755928556112,
          -2.5327583219803445,
          -4.466487013635048,
          -3.9424346928272933,
          -3.401100074470033,
          -4.344102319736858,
          -2.454086205039016,
          -2.8904704794849647,
          -3.598482104891492,
          -3.8034327273579733,
          -3.4645376212982324,
          -3.6810126011597757,
          -4.643699364639315,
          -3.168335189517856,
          -1.9195487280227486,
          -4.165382834970976,
          -3.6103823923852376,
          -3.8645160251841872,
          -2.8589481955444622,
          -3.5473611290768665,
          -3.461082011652079,
          -2.8894597296429323,
          -4.242774910613106,
          -4.9439592293874295,
          -2.154039567491323,
          -3.65241074209177,
          -7,
          -7,
          -2.7332209914272227,
          -4.63978521298682,
          -4.940869952384663,
          -4.242223292961823,
          -3.737560364635477,
          -4.096025634102744,
          -3.2485751065285084,
          -3.2321157182262974,
          -3.4606702239729046,
          -3.22961548788786,
          -7,
          -4.27629172965034,
          -4.64033234004778,
          -4.942345430798429,
          -3.690422523774704,
          -2.797959643737196,
          -3.715854841502423,
          -7,
          -4.641558383219824,
          -4.643087320671172,
          -2.708922655700782,
          -4.6402726869436295,
          -7,
          -4.103305144246941,
          -4.469276965762279,
          -4.464713045757064,
          -4.344411924574547,
          -3.5853920609208165,
          -3.036711641762698,
          -3.6495198326589673,
          -3.0666005221892987,
          -3.0249512507892367,
          -3.646197804180806,
          -4.341286107028629,
          -1.4295428940835,
          -4.2439156770217075,
          -7,
          -7,
          -4.166104344841616,
          -4.097539903417536,
          -4.243370466922834,
          -7,
          -1.9238175013555583,
          -4.465541468865047,
          -3.3913782899001723,
          -7,
          -3.178609025019984,
          -1.3348343173384234,
          -2.8097379111016547,
          -2.0416001779564237,
          -2.7156143780236928,
          -2.5272495409101916,
          -2.5810130261892485,
          -4.469885805962796,
          -3.6257483888188187,
          -3.904223594068507,
          -4.24803705634644,
          -3.9597614375779355,
          -7,
          -3.5141158997723867,
          -7,
          -3.4129914837145408,
          -3.325114765590469,
          -3.8607451539354347,
          -7,
          -2.2938892026246065,
          -4.941138594309685,
          -2.0088966805430557,
          -2.9981998745389062,
          -3.515461715791736,
          -3.3512064247307594,
          -4.165155261392066,
          -2.5113447333185333,
          -2.9578319836218965,
          -7,
          -3.165000936622481,
          -1.5793500607865452,
          -1.6390451678893192,
          -7,
          -3.9868264529186463,
          -3.544494684155256,
          -4.2425215516658765,
          -4.942052721014709,
          -4.164902812078488,
          -4.941680347291402,
          -4.0983915294572775,
          -2.2168693557411143,
          -3.208959344396666,
          -2.5914515760902344,
          -2.436113338902213,
          -7,
          -3.863570674382189,
          -4.2444602035259225,
          -3.254907978107314,
          -4.640208053499725,
          -4.163628427790105,
          -2.3695012957916983,
          -4.470238934788868,
          -4.169042219626128,
          -7,
          -7,
          -4.46469814944665,
          -4.2433754264624115,
          -4.941024193064269,
          -4.941734982088115,
          -3.51601603520119,
          -7,
          -4.941063988219902,
          -4.941267881179236,
          -7,
          -7,
          -3.1173949804690353,
          -3.2620850681416096,
          -7,
          -3.7679223192109474,
          -3.198434290393791,
          -4.103070321712875,
          -3.2865359932977283,
          -2.432029162983926,
          -2.713131786506826,
          -4.464415022426169,
          -7,
          -2.2852351456911983,
          -2.837275150949137,
          -1.9503113239127658,
          -4.099098298220612,
          -2.421550142900094,
          -4.166548514738755,
          -4.641350150325748,
          -3.7383345436865523,
          -2.912528278286801,
          -4.062473867166674,
          -2.771410537267909,
          -3.1928083410077157,
          -4.01789087330904,
          -3.9052806011119654,
          -4.944018518736587,
          -4.941789610012567,
          -4.167888140421916,
          -3.4904089698013103,
          -3.5205805655249534,
          -7,
          -4.94254376595368,
          -3.7699432142157887,
          -4.3402903989534085,
          -2.9420621061144216,
          -4.941113727037101,
          -3.2680511640364385,
          -2.502491275926205,
          -3.8664940967562282,
          -2.9179234789605135,
          -2.6023214763152813,
          -2.2428326739553217,
          -3.251601494030338,
          -4.242988412194795,
          -2.65501934144753,
          -3.9001634665734852,
          -4.245453441801116,
          -3.276174477347082,
          -2.969661096395893,
          -1.9639775351996702,
          -2.936624892484605,
          -2.856677381260537,
          -3.141709370973691,
          -3.3868121789710552,
          -3.719701654166844,
          -1.9981567084168663,
          -3.302017584888769,
          -7,
          -7,
          -7,
          -3.434709763913882,
          -3.543967810980926,
          -3.988603543345664,
          -3.9022897535273424,
          -3.997294136783413,
          -4.6413997386429875,
          -3.6066842101912937,
          -4.6419151217736125,
          -3.6843302879646407,
          -3.7678185563570334,
          -3.6440346358149664,
          -3.616628256327668,
          -3.5458709619210995,
          -2.9959668206801613,
          -3.091471549501543,
          -2.7513837398972187,
          -4.466951605477452,
          -3.1621021253086092,
          -2.3033176067155994,
          -3.134631721464408,
          -7,
          -3.903346539757214,
          -7,
          -3.424011600521135,
          -3.0230278632753684,
          -3.517068589333369,
          -3.6938978589117037,
          -4.941446830252359,
          -7,
          -3.7749935764800484,
          -4.641454279253067,
          -4.642780974929156,
          -4.2452411489044595,
          -3.6815363811196473,
          -3.9427122796492005,
          -2.154746751421589,
          -7,
          -7,
          -2.119276841852149,
          -2.3021789633202125,
          -3.608163833374166,
          -2.937274240502207,
          -2.5963702096135868,
          -1.4712237365671486,
          -2.6832733908769533,
          -2.786630248644035,
          -1.8349429903280465,
          -2.1637228015492442,
          -3.165301777551698,
          -3.4380796338230235,
          -2.438984050853466,
          -2.398842966792188,
          -1.748040522552098,
          -2.906113825179055,
          -2.2658244592417347,
          -1.4620224918544311,
          -2.975810900530579,
          -3.0858174330519823,
          -3.957166544282454,
          -2.441408622070083,
          -2.9260212381112978,
          -2.391442325089044,
          -2.6270199151057425,
          -3.779055089381888,
          -2.8327985213557447,
          -3.1638085844113726,
          -4.472697954538768,
          -2.086052271614508,
          -2.6941189367490233,
          -2.574746369947656,
          -2.835977193225308,
          -3.59536901816875,
          -3.86914367814229,
          -3.5639686348131656,
          -3.4976114436533603,
          -2.890194363359256,
          -2.7549331407101207,
          -1.9725495168372835,
          -4.342669368975334,
          -2.920895834382227,
          -1.7874437108032026,
          -2.7115905922749253,
          -2.887946129001034,
          -3.4210579070373512,
          -4.648954928341813,
          -2.1823385085466485,
          -2.816813757343871,
          -3.749914980946592,
          -2.751922856035796,
          -2.5385311917995725,
          -2.0783434964707808,
          -4.247850566973534,
          -2.5186401699272873,
          -3.794599568642681,
          -4.163608563431052,
          -4.190719121464074,
          -3.1914667588994208,
          -3.9613926148060097,
          -4.944803339433345,
          -2.3115310523352646,
          -1.7681133133424474,
          -2.758036819412388,
          -4.942439651291005,
          -3.1986381299941233,
          -4.340766245814562,
          -2.040166187706178,
          -4.666878183240443,
          -3.112374317534743,
          -2.496487537030572,
          -3.4578272491973956,
          -7,
          -2.7215762524015634,
          -2.931778936116568,
          -2.5100624294816565,
          -3.7822575736633017,
          -3.121126149683747,
          -3.6270538048638272,
          -2.134937569307635,
          -2.583808065111376,
          -4.342077081830135,
          -1.9970857105306132,
          -2.155445376459069,
          -4.1783917416380465,
          -2.1129300018512898,
          -4.942979784728125,
          -3.344818642061682,
          -2.3454803518919145,
          -2.6738111180539055,
          -4.163782345773859,
          -4.941302682607611,
          -4.9409197134280625,
          -4.163494325730938,
          -3.2474728128175467,
          -1.763111382025732,
          -3.4182964159614206,
          -2.4319767053533137,
          -3.8628615491435725,
          -2.960588455242285,
          -2.231131517275498,
          -2.6286919625857674,
          -3.1700758288813535,
          -3.8629756824198656,
          -3.096002916788983,
          -4.941576025408112,
          -1.836016424279723,
          -3.202550451648127,
          -3.7394141026986953,
          -2.6642795206007728,
          -1.6687809505328624,
          -3.471800046620036,
          -2.866773111164473,
          -3.497492403996519,
          -4.165219587753745,
          -2.352272175741767,
          -3.712971392093174,
          -3.481492050349517,
          -3.6254006534766647,
          -3.222388868967012,
          -4.9409197134280625,
          -2.8338785384191922,
          -4.038386660938553,
          -3.900506160093372,
          -2.234434536184744,
          -1.1139979281615506,
          -2.002222839113038,
          -7,
          -2.6718838191177494,
          -2.77724438595689,
          -3.0355483209306082,
          -3.077401823751774,
          -7,
          -3.499475970480061,
          -2.4545566959901555,
          -7,
          -4.096905049614187,
          -2.734321633758071,
          -3.4550610931773704,
          -2.748506684505836,
          -4.165135466748402,
          -3.5158198968280416,
          -3.799138619593707,
          -3.0979956320455218,
          -3.646918104564691,
          -2.187470603188043,
          -2.7867131768474955,
          -4.464300725903642,
          -3.2394149932197545,
          -3.1762215278609083,
          -3.3149787437751113,
          -1.9845317083029534,
          -3.989009564895201,
          -4.4649215404715346,
          -2.2424450033000847,
          -3.357939731076476,
          -1.3226176461093304,
          -3.475646979484606,
          -3.0765158873126466,
          -2.9728131759430343,
          -3.8643676769207596,
          -3.453948101422571,
          -3.581400491476937,
          -3.2681003598156644,
          -3.7385774307676627,
          -3.2007528138238346,
          -3.0392694469066375,
          -3.414427680794785,
          -4.941083884430364,
          -3.0089789965072575,
          -1.7600494895554875,
          -2.690172124901124,
          -2.4972434305077478,
          -1.7148591343418107,
          -2.4573950576660026,
          -2.222088458466134,
          -3.7152510288788494,
          -2.673941998634088,
          -2.910948213864197,
          -3.2382035881544415,
          -3.3016415253209725,
          -3.7652263375961468,
          -4.095906254104675,
          -2.8809643628019734,
          -3.1010593549081156,
          -3.830504772317295,
          -2.938980958131319,
          -1.8673473998790473,
          -2.858209418903174,
          -2.5705903249024113,
          -2.4904995403286,
          -2.535408776423756,
          -3.219666980592045,
          -3.226956631551876,
          -3.516055252248334,
          -7,
          -2.9507608581826994,
          -2.8108661942666147,
          -2.9320563015173873,
          -4.941203242555451,
          -3.5160993671937972,
          -3.903701516648935,
          -2.1630660097373533,
          -3.6653637153823238,
          -3.2891973858841714,
          -7,
          -4.640133464494492,
          -3.8276922886744456,
          -4.464340484627667,
          -3.941933596157502,
          -2.2966934306284106,
          -2.838785161346223,
          -3.1488033442895493,
          -3.6642014217072965,
          -4.244643209101521,
          -4.163911396227727,
          -3.942722190183571,
          -3.4253464559371563,
          -4.098188677117789,
          -3.4320942849063436,
          -3.6245865503192305,
          -2.6020556133373285,
          -2.4711737520274553,
          -4.006523088680669,
          -3.4250250914043128,
          -4.339113414771401,
          -3.273921964852061,
          -4.0981936258632885,
          -7,
          -2.547063203346281,
          -3.7978657801465183,
          -3.7677147687058827,
          -3.2224177849842386,
          -3.0940827414918974,
          -3.629006478444398,
          -4.163494325730938,
          -4.242963591821483,
          -3.745708976279389,
          -4.640367133908332,
          -2.9961736756972437,
          -3.5487725584928786,
          -4.467568644894248,
          -4.940894833619059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.203957091681244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.33270097722138,
          -7,
          -7,
          -3.6370892735303304,
          -3.8554376100505943,
          -7,
          -7,
          -7,
          -2.77232170672292,
          -2.428944290035574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.83939319139298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.429714607223846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9434945159061026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2996162399984135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.928600659844524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.319522449065454,
          -7,
          -3.5984622004741507,
          -4.372654294203732,
          -7,
          -7,
          -7,
          -7,
          -3.379142286647321,
          -7,
          -7,
          -7,
          -7,
          -3.600537294364469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.147468731770726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.593906044972859,
          -3.4265112613645754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8500332576897691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752911566555018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.35289417766023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7558748556724915,
          -3.7179200258369938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941063988219902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.308713776639004,
          -7,
          -4.530135638245461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.023023702987968,
          -7,
          -7,
          -3.086448816328559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9122220565324155,
          -7,
          -7,
          -7,
          -4.829879233719065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3426693689753333,
          -3.1975562131535367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2979792441593623,
          -5.82820796944373,
          -3.8515029527705447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0517311960598494,
          -2.2821687783046416,
          -7,
          -7,
          -3.3694941621180985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.875125534219098,
          -7,
          -7,
          -4.716308078016287,
          -2.7961887392208773,
          -7,
          -7,
          -7,
          -7,
          -3.459543258280413,
          -2.9944931228835125,
          -7,
          -1.4648867983026508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.527784518264025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.933616342206829,
          -7,
          -7,
          -7,
          -7,
          -4.376503960252927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.487490478067235,
          -7,
          -7,
          -3.356599435724971,
          -2.6711728427150834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163042046914198,
          -3.2884728005997825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.794940926679733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1690863574870227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.919862253555538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6502103546603593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1961761850399735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.346660002085005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2591158441850663,
          -7,
          -7,
          -7,
          -7,
          -4.627140456634811,
          -7,
          -7,
          -4.298328988073496,
          -7,
          -3.406965750758948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0252034252402584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.633165353683903,
          -7,
          -7,
          -7,
          -2.9740509027928774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.726835836961581,
          -7,
          -7,
          -7,
          -7,
          -3.9039847969050228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.856326019777088,
          -7,
          -7,
          -3.641176546613114,
          -3.6171576656949442,
          -7,
          -7,
          -7,
          -2.782233672588372,
          -2.445214876056217,
          -7,
          -4.864368666076987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.839522040245412,
          -7,
          -7,
          -3.276921132065774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0039126867384836,
          -7,
          -3.8900855267163252,
          -7,
          -7,
          -7,
          -3.3979400086720375,
          -7,
          -7,
          -2.9633155113861114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1277525158329733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8610562445768735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275457246836364,
          -7,
          -4.008770449937752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3279716236230104,
          -7,
          -3.3016809492935764,
          -4.07234182151732,
          -7,
          -7,
          -7,
          -7,
          -3.2336124653140192,
          -7,
          -7,
          -7,
          -7,
          -3.6049816296074315,
          -7,
          -7,
          -4.752463327501825,
          -7,
          -7,
          -7,
          -4.089649049381677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5155868673998802,
          -3.4331295175804857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8319279166571738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.75297446720691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9091279419892606,
          -7,
          -7,
          -7,
          -7,
          -5.051939329951164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.786041210242554,
          -3.721315880605899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2493206766376344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941267881179236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.797613730153076,
          -7,
          -7,
          -7,
          -4.008515007631455,
          -7,
          -3.9285238683171553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.024895960107485,
          -7,
          -7,
          -2.9136372740190546,
          -3.8221680793680175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9143960521297863,
          -7,
          -7,
          -7,
          -4.6539132533085725,
          -3.8773713458697743,
          -7,
          -7,
          -7,
          -7,
          -2.0567819436005728,
          -3.208710019906401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3068537486930083,
          -5.129259250401018,
          -3.552850654460561,
          -7,
          -7,
          -7,
          -7,
          -3.286231854028553,
          -7,
          -7,
          -2.8830933585756897,
          -2.3263358609287517,
          -7,
          -7,
          -3.373279893277496,
          -7,
          -7,
          -7,
          -7,
          -4.855385878893443,
          -7,
          -5.574118117939368,
          -7,
          -7,
          -4.540379534670119,
          -2.639026512722247,
          -7,
          -7,
          -2.5646660642520893,
          -7,
          -3.462622574900549,
          -2.7934411329776636,
          -7,
          -1.485315733334934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.499384620400921,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.878699842715436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.227256649297079,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.23470958580684,
          -7,
          -7,
          -7,
          -4.961354639553441,
          -4.075811472000948,
          -7,
          -3.9554311698573885,
          -3.8021577531869615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.709383043773476,
          -7,
          -7,
          -3.3604987444680012,
          -2.7075701760979367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.780691666721215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.744916588971316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9875322027298394,
          -2.9960736544852753,
          -3.6982745766743674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.795226346759703,
          -3.5822906827189938,
          -7,
          -7,
          -7,
          -7,
          -3.3349561161368517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8793826371743427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.620864475265121,
          -7,
          -3.418135498425232,
          -7,
          -7,
          -3.942528893958499,
          -7,
          -7,
          -7,
          -7,
          -3.3529539117100877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.201806642957022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02447784884254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2688119037397803,
          -7,
          -7,
          -7,
          -7,
          -4.15039821661802,
          -7,
          -7,
          -3.9981503150813658,
          -7,
          -3.4104397862103464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0293837776852097,
          -7,
          -7,
          -7,
          -7,
          -3.312388949370592,
          -3.336059277866349,
          -7,
          -7,
          -7,
          -2.6906390117159673,
          -4.3899807298820175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.582063362911709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8254261177678233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.863804481366742,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727402976473511,
          -7,
          -7,
          -7,
          -4.194320045303423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8840586470939384,
          -7,
          -3.66143405039392,
          -4.395727005831184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2907022432878543,
          -7,
          -3.4771212547196626,
          -7,
          -3.0464951643347082,
          -7,
          -4.238080619382148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1058506743851435,
          -7,
          -3.703919790261458,
          -3.436162647040756,
          -7,
          -3.7902147702439795,
          -7,
          -7,
          -3.1314582601065255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.89470365260923,
          -1.0907351059240402,
          -3.044147620878723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5374412834079476,
          -3.249198357391113,
          -7,
          -4.385146459387118,
          -7,
          -4.0175758683910745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.003029470553618,
          -7,
          -7,
          -3.4937832434341214,
          -7,
          -7,
          -3.1562461903973444,
          -7,
          -4.076166939344932,
          -7,
          -2.5118833609788744,
          -7,
          -7,
          -4.0829109745222265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.569549464888704,
          -4.453020042471988,
          -7,
          -3.8370831508231857,
          -7,
          -4.516583846475269,
          -3.1010593549081156,
          -7,
          -3.600755149639618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.152685756036786,
          -7,
          -7,
          -7,
          -7,
          -2.7895807121644256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.939032270356462,
          -7,
          -7,
          -7,
          -2.857030798272624,
          -7,
          -7,
          -7,
          -7,
          -3.064832219738574,
          -7,
          -3.2718996634153905,
          -3.215901813204032,
          -7,
          -3.39502581352667,
          -7,
          -2.586587304671755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.442845446763725,
          -7,
          -7,
          -2.6190933306267428,
          -7,
          -3.9383060662499854,
          -7,
          -3.3713449830820985,
          -7,
          -7,
          -7,
          -2.716281648342755,
          -7,
          -7,
          -7,
          -3.022325250092303,
          -7,
          -7,
          -7,
          -7,
          -3.2833012287035497,
          -7,
          -7,
          -4.07258073264895,
          -7,
          -2.907411360774586,
          -2.6314437690131722,
          -7,
          -2.5282737771670436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.411893999172559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.31722734917642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9809119377768436,
          -2.3531465462139796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.989271791641693,
          -7,
          -7,
          -7,
          -3.8356271662098975,
          -7,
          -7,
          -7,
          -3.137986732723532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9116901587538613,
          -7,
          -7,
          -3.9253120914996495,
          -7,
          -2.725258066359961,
          -3.187238619831479,
          -4.83068167600728,
          -7,
          -7,
          -4.2844984108280455,
          -7,
          -7,
          -7,
          -3.2615007731982804,
          -3.952647169758943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.050211497402782,
          -7,
          -7,
          -7,
          -7,
          -3.7500453120117676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.07843869186193,
          -7,
          -4.574218263621033,
          -7,
          -7,
          -5.018388393383747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7791634237644987,
          -3.4143883269310753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.638089721984506,
          -7,
          -3.900107566982329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.086790351904906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.613196769750614,
          -7,
          -4.669530720269089,
          -4.58866006326894,
          -7,
          -7,
          -7,
          -7,
          -4.390155098146551,
          -3.687974620034556,
          -7,
          -7,
          -4.48520545453641,
          -4.3787793310606915,
          -7,
          -4.4359557908892375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.690231531192315,
          -7,
          -5.405331843601616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.215505378231819,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7995473071256147,
          -7,
          -7,
          -7,
          -4.642162684587794,
          -7,
          -7,
          -5.046362475491852,
          -7,
          -3.5828584622244994,
          -4.607154666400511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1815291821065035,
          -7,
          -7,
          -3.8636202202703154,
          -7,
          -7,
          -7,
          -3.740441644949766,
          -7,
          -4.319529385513524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008387230114159,
          -7,
          -7,
          -7,
          -5.094257947097275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.870054534276521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.00268431298973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.528338112324839,
          -7,
          -7,
          -4.24436372360166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6351820486562674,
          -3.6577249542051082,
          -7,
          -7,
          -7,
          -7,
          -4.393662930667503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.196190007050506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.88930170250631,
          -7,
          -3.3102683666324477,
          -2.636989101812229,
          -7,
          -7,
          -3.926678139475995,
          -7,
          -7,
          -7,
          -3.903307079964174,
          -3.6181788886064417,
          -3.2095150145426308,
          -7,
          -7,
          -7,
          -7,
          -3.867781653335743,
          -3.3020060605865402,
          -7,
          -2.613753756483513,
          -3.6530089813929942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9646013670437754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.527243116388089,
          -7,
          -2.508698017551925,
          -7,
          -3.9381505681184805,
          -7,
          -7,
          -7,
          -7,
          -3.6716355966021297,
          -7,
          -1.5425142162816539,
          -7,
          -7,
          -3.014310480963307,
          -3.2969539819037164,
          -7,
          -3.075442676488223,
          -3.115810141409786,
          -7,
          -7,
          -2.7878853509409245,
          -3.1470576710283598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.978347930837997,
          -7,
          -7,
          -3.4531653925258574,
          -7,
          -7,
          -3.362105319293773,
          -7,
          -7,
          -4.012428360872589,
          -2.0201540316383326,
          -1.6532125137753437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.012415374762433,
          -7,
          -3.233884108765886,
          -7,
          -3.330819466495837,
          -7,
          -3.9300851841571225,
          -7,
          -4.03261876085072,
          -7,
          -7,
          -7,
          -3.020775488193558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.873320601815399,
          -2.872783607024382,
          -7,
          -7,
          -3.255272505103306,
          -3.3600250891893975,
          -2.838579258804435,
          -2.1861083798132053,
          -1.7910763089412547,
          -1.9978230807457253,
          -3.2460059040760294,
          -3.3487649395500347,
          -2.5575072019056577,
          -7,
          -7,
          -3.581949658373318,
          -3.6630409748939745,
          -7,
          -3.881299044952724,
          -3.911674952098214,
          -7,
          -3.8596785766284483,
          -7,
          -4.995336788822523,
          -7,
          -3.491781775584166,
          -3.1614678285730546,
          -7,
          -7,
          -3.3061032087275857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0929210574619534,
          -2.8744818176994666,
          -7,
          -7,
          -4.163757523981956,
          -7,
          -7,
          -7,
          -7,
          -2.5136614370834756,
          -1.9650971273480884,
          -7,
          -3.8461514765288154,
          -7,
          -7,
          -7,
          -3.399278054006315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2612628687924934,
          -3.299942900022767,
          -2.601749670141552,
          -3.1285608065593205,
          -2.428742057444305,
          -3.8950908969343994,
          -3.303412070596742,
          -3.075911761482778,
          -2.6234108282394146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.99563519459755,
          -7,
          -2.858637438650731,
          -7,
          -7,
          -7,
          -7,
          -2.8846065812979305,
          -2.680335513414563,
          -2.237959529923704,
          -3.6190933306267428,
          -3.258876629372131,
          -2.948738890358178,
          -3.2860071220794747,
          -3.3352572564345317,
          -7,
          -3.286905352972375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8813846567705728,
          -7,
          -7,
          -2.9710616467698157,
          -7,
          -1.9255330877635497,
          -2.00108438129222,
          -2.5877109650189114,
          -1.6795144180750814,
          -7,
          -3.7664128471123997,
          -7,
          -7,
          -3.4358443659844413,
          -4.061207365300118,
          -3.3942181263801987,
          -7,
          -2.568201724066995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1492191126553797,
          -7,
          -4.14157518330082,
          -7,
          -7,
          -7,
          -7,
          -3.2140486794119414,
          -7,
          -2.0929210574619534,
          -2.1517482889991797,
          -3.301897717195208,
          -3.295786940251609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313023110323238,
          -3.1173949804690353,
          -7,
          -7,
          -7,
          -1.9809119377768436,
          -7,
          -1.0693418020344068,
          -7,
          -7,
          -7,
          -3.3378584290410944,
          -3.8033205235787544,
          -2.931775592908094,
          -2.8419848045901137,
          -7,
          -7,
          -3.8444771757456815,
          -2.6722826247889206,
          -3.13942567294585,
          -7,
          -4.713624926782461,
          -7,
          -7,
          -3.0149403497929366,
          -3.1596960703744554,
          -7,
          -3.6738499773429494,
          -3.4394905903896835,
          -7,
          -7,
          -7,
          -7,
          -3.240798771117331,
          -3.200303182981585,
          -3.4759615891924236,
          -7,
          -7,
          -3.245018870737753,
          -7,
          -1.4251148148819859,
          -2.8662873390841948,
          -2.792916728226602,
          -3.165194847972947,
          -3.225050696138049,
          -2.17507672117621,
          -1.5314789170422551,
          -3.4513514117014297,
          -3.9093420383613084,
          -7,
          -3.8154891981186587,
          -7,
          -7,
          -3.318793504793297,
          -3.0396123818967244,
          -3.12441105858231,
          -2.5878356368963007,
          -3.0280965768121466,
          -2.871183608328498,
          -7,
          -7,
          -4.787200193408041,
          -7,
          -7,
          -7,
          -7,
          -3.476324317420228,
          -3.1702617153949575,
          -7,
          -3.1048284036536553,
          -7,
          -7,
          -3.380030247967831,
          -7,
          -7,
          -3.1228709228644354,
          -3.1961761850399735,
          -3.6492374723496073,
          -3.1228709228644354,
          -4.85886189474819,
          -3.915382244962084,
          -4.875472201021432,
          -7,
          -3.033959590819456,
          -4.174765673953587,
          -3.1942367487238292,
          -7,
          -7,
          -7,
          -2.970114322285097,
          -3.8048887446223913,
          -3.2677972877216908,
          -7,
          -7,
          -7,
          -2.842765208181785,
          -3.0056094453602804,
          -7,
          -7,
          -3.6732974397596356,
          -7,
          -2.7498447604118503,
          -7,
          -7,
          -3.644055444774348,
          -7,
          -7,
          -7,
          -7,
          -3.6793188550209104,
          -7,
          -7,
          -3.268754858806963,
          -3.144307277987259,
          -3.628899564420607,
          -7,
          -7,
          -7,
          -3.885496915855738,
          -7,
          -4.199114962043649,
          -4.145874623311332,
          -7,
          -7,
          -7,
          -5.388475983084096,
          -7,
          -4.5356611526594435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.077346099156037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.192567453336546,
          -4.014940349792936,
          -3.16761267272753,
          -3.9738848986568547,
          -3.8629322656865397,
          -2.621121595068182,
          -3.381295623003826,
          -7,
          -7,
          -4.33308437114365,
          -3.402820015912672,
          -3.5317343092765503,
          -3.8436687229791437,
          -3.7086474787139507,
          -3.3817736974197277,
          -7,
          -3.9645738809210544,
          -7,
          -2.942008053022313,
          -7,
          -7,
          -7,
          -7,
          -3.84665074436028,
          -3.99691538735805,
          -7,
          -2.6989700043360187,
          -2.2310446031358775,
          -3.035829825252828,
          -4.655863255143841,
          -7,
          -4.560750124434581,
          -3.3085999808584132,
          -3.9240207004740677,
          -7,
          -7,
          -7,
          -4.4837726704803105,
          -7,
          -3.1797606367964804,
          -7,
          -3.3431404280146,
          -7,
          -7,
          -3.272463769669973,
          -4.656313857640156,
          -7,
          -4.2688879044704535,
          -7,
          -2.7180862947830917,
          -3.7658494287817996,
          -7,
          -7,
          -2.888179493918325,
          -7,
          -7,
          -7,
          -3.5187332251549033,
          -3.4082399653118496,
          -3.3464647475774694,
          -7,
          -7,
          -2.481893986310889,
          -3.4342494523964753,
          -3.36078268987328,
          -7,
          -2.725614678791579,
          -7,
          -2.985419564562094,
          -3.6432552250247716,
          -7,
          -7,
          -4.135609636028679,
          -3.3760291817281805,
          -7,
          -7,
          -7,
          -3.496445291873353,
          -7,
          -3.130655349022031,
          -3.019324037153691,
          -3.5602653978627146,
          -7,
          -3.5464604029452773,
          -7,
          -7,
          -7,
          -3.387620104684051,
          -7,
          -7,
          -7,
          -3.3485968911765482,
          -2.8698182079793284,
          -7,
          -7,
          -7,
          -3.6554505918626528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.697403723200488,
          -7,
          -7,
          -3.274042330049831,
          -3.5514499979728753,
          -7,
          -4.154667377622576,
          -7,
          -7,
          -7,
          -3.3823773034681137,
          -3.3981663683672236,
          -3.500785172917456,
          -3.6239725120169965,
          -3.2780673308886628,
          -7,
          -7,
          -7,
          -7,
          -3.035029282202368,
          -7,
          -3.520155886944864,
          -7,
          -7,
          -3.5114822886260013,
          -3.2712454436613365,
          -3.0435587469147327,
          -7,
          -3.0097694881704116,
          -7,
          -7,
          -7,
          -3.198067680193197,
          -7,
          -7,
          -3.210853365314893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.496878418998322,
          -7,
          -3.470410490975931,
          -3.9478011971439804,
          -7,
          -7,
          -7,
          -3.0132586652835167,
          -7,
          -3.3694014136966244,
          -2.8452752669018024,
          -7,
          -7,
          -7,
          -7,
          -3.3204924754334133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.35869609957381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.816440167956139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02511462433611,
          -7,
          -7,
          -7,
          -7,
          -3.4520932490177314,
          -7,
          -7,
          -7,
          -7,
          -3.680335513414563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5224442335063197,
          -7,
          -7,
          -3.7427982432584783,
          -7,
          -7,
          -7,
          -7,
          -3.7414142504968653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.565316427085621,
          -3.9007493580610793,
          -7,
          -2.6873505695580273,
          -3.7727151136811594,
          -7,
          -7,
          -7,
          -3.06595298031387,
          -7,
          -3.030599721965951,
          -4.566337304164903,
          -7,
          -7,
          -7,
          -3.0362295440862943,
          -7,
          -2.9694159123539814,
          -2.8184898222042136,
          -7,
          -2.9249680958524342,
          -7,
          -3.9379408222417998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.026564690731343,
          -7,
          -3.1975562131535367,
          -3,
          -3.37797547967795,
          -3.481442628502305,
          -3.616528025161455,
          -3.5096728652831355,
          -7,
          -7,
          -7,
          -2.824125833916549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6092284050050294,
          -7,
          -7,
          -7,
          -7,
          -3.752355804153501,
          -7,
          -7,
          -7,
          -4.5241526152390925,
          -2.1914510144648953,
          -1.098813717788014,
          -7,
          -7,
          -3.589335125784143,
          -7,
          -7,
          -7,
          -3.0028856882374884,
          -7,
          -7,
          -7,
          -3.3170181010481117,
          -7,
          -3.686799641509546,
          -3.5685537120494426,
          -4.029911104912444,
          -7,
          -7,
          -7,
          -2.3504633887734405,
          -7,
          -7,
          -7,
          -3.856275634663985,
          -7,
          -7,
          -7,
          -2.2993075019841833,
          -7,
          -7,
          -7,
          -3.052212835769748,
          -3.0597256597866873,
          -2.368100851709351,
          -2.9786369483844743,
          -1.8799555851227492,
          -7,
          -2.7543661168112243,
          -2.291939414775256,
          -7,
          -7,
          -3.096678327496078,
          -7,
          -3.146128035678238,
          -3.703234041729126,
          -3.978127235341502,
          -7,
          -7,
          -7,
          -4.995042570695854,
          -3.1936810295412816,
          -7,
          -2.5888317255942073,
          -7,
          -7,
          -3.4016589724951523,
          -3.507855871695831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6074550232146687,
          -2.0492180226701815,
          -4.039057018033444,
          -3.7487305560984945,
          -7,
          -3.7056926965377035,
          -7,
          -7,
          -7,
          -7,
          -1.800717078282385,
          -7,
          -3.54082981411108,
          -7,
          -7,
          -7,
          -3.544675631413166,
          -7,
          -7,
          -7,
          -2.762678563727436,
          -7,
          -7,
          -3.285107029566812,
          -2.835214806082161,
          -7,
          -2.4733826851602605,
          -3.045602357684618,
          -3.288696260590256,
          -7,
          -2.903882803805536,
          -7,
          -7,
          -7,
          -7,
          -2.6924062348336304,
          -7,
          -7,
          -2.4703293694025734,
          -7,
          -7,
          -7,
          -3.4391747398434687,
          -2.569868957768315,
          -2.8363241157067516,
          -1.5417810749690748,
          -2.6101276130759956,
          -2.3944516808262164,
          -2.2346859743215286,
          -3.2706788361447066,
          -7,
          -7,
          -7,
          -3.654850090561394,
          -3.0382226383687185,
          -7,
          -7,
          -7,
          -2.86844850133673,
          -4.346900388113341,
          -2.9370161074648142,
          -2.9063709621129483,
          -2.828015064223977,
          -2.1571839446097067,
          -1.5797835966168101,
          -7,
          -1.8011749533716115,
          -7,
          -7,
          -7,
          -7,
          -2.947270299690615,
          -4.059941888061955,
          -3.168202746842631,
          -7,
          -2.12515582958053,
          -7,
          -2.876217840591642,
          -7,
          -3.028977705208778,
          -7,
          -7,
          -3.225050696138049,
          -7,
          -4.13946977558943,
          -5.713177940195718,
          -7,
          -7,
          -7,
          -3.1958996524092336,
          -2.8419848045901137,
          -2.909556029241175,
          -3.375846436309156,
          -7,
          -3.280805928393667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.997167871445834,
          -3.2620850681416096,
          -7,
          -7,
          -7,
          -2.3531465462139796,
          -1.0693418020344068,
          -7,
          -2.807535028068853,
          -7,
          -7,
          -3.022840610876528,
          -7,
          -2.9274986816932005,
          -2.301897717195208,
          -7,
          -2.815577748324267,
          -3.843087365838582,
          -3.3602146132953523,
          -3.3062736131041426,
          -3.114610984232173,
          -3.867862962726285,
          -7,
          -7,
          -2.5069557791831683,
          -3.5251312252008757,
          -7,
          -3.6707559422151332,
          -3.2579184503140586,
          -7,
          -7,
          -7,
          -2.905256048748451,
          -7,
          -1.992510760388401,
          -3.466125870418199,
          -7,
          -7,
          -3.2281436075977417,
          -2.965201701025912,
          -1.5931917679251126,
          -7,
          -3.08278537031645,
          -2.825376178771401,
          -7,
          -2.263340126851339,
          -1.7306844175132254,
          -2.941360732240858,
          -7,
          -7,
          -4.291213400273596,
          -7,
          -7,
          -7,
          -3.0261245167454502,
          -2.7895337080535616,
          -3.0580462303952816,
          -7,
          -7,
          -3.076276255404218,
          -7,
          -4.549785784697617,
          -3.582744965691277,
          -7,
          -7,
          -7,
          -3.471438407389299,
          -3.3399480616943507,
          -7,
          -2.6027832129470583,
          -7,
          -7,
          -3.3677285460869766,
          -7,
          -3.718916686014861,
          -7,
          -2.8756399370041685,
          -3.34143452457814,
          -3.100370545117563,
          -4.557416965146272,
          -3.9142020722544286,
          -4.7962498787040815,
          -7,
          -2.9042420522992467,
          -4.417550573182442,
          -3.792041310712082,
          -7,
          -3.1522883443830563,
          -7,
          -3.0874264570362855,
          -3.197831693328903,
          -3.4387796033573776,
          -7,
          -7,
          -7,
          -7,
          -2.975891136401793,
          -7,
          -7,
          -3.189583881400236,
          -7,
          -2.7339042088550625,
          -7,
          -7,
          -3.752509400788843,
          -7,
          -7,
          -3.646893624167745,
          -4.714556070480403,
          -7,
          -3.890700397698875,
          -3.894016828216566,
          -3.5389505620143615,
          -3.5096504795465826,
          -7,
          -7,
          -4.41965841096058,
          -4.998721293602391,
          -4.282746696970947,
          -7,
          -4.073544231160491,
          -4.321639849041686,
          -7,
          -4.316976239321548,
          -7,
          -4.689372799616249,
          -4.27916484306227,
          -4.233757362965511,
          -7,
          -7,
          -4.6603151495574515,
          -7,
          -3.3873898263387296,
          -3.997663009732473,
          -4.164977077110886,
          -4.679227966109899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.315308959193267,
          -7,
          -3.9732664361085286,
          -3.7050228564102046,
          -2.302918960185348,
          -7,
          -7,
          -7,
          -4.28175784998152,
          -3.0014740966917324,
          -3.221805317996549,
          -4.1437172265617965,
          -3.621143221998132,
          -3.7281553051362044,
          -7,
          -4.44070447487986,
          -3.8356905714924254,
          -2.605305046141109,
          -7,
          -4.377051137447527,
          -7,
          -7,
          -3.6121831971282083,
          -4.056830063846329,
          -5.4055879471929815,
          -7,
          -2.6263403673750423,
          -7,
          -4.002262080877372,
          -7,
          -4.928626254003232,
          -3.3062105081677613,
          -3.9222841941001536,
          -7,
          -7,
          -7,
          -4.182236275432045,
          -3.325207689482919,
          -3.5207454715194824,
          -7,
          -3.556806691474991,
          -4.189392045912569,
          -7,
          -3.6657537463191843,
          -4.479891882820856,
          -7,
          -4.393707762272921,
          -7,
          -2.7110687225172314,
          -4.008238108813141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3927262568919367,
          -3.0953437318725254,
          -3.888937302687291,
          -7,
          -7,
          -2.566260674190903,
          -3.4234097277330933,
          -2.8700135281903574,
          -2.9542425094393248,
          -2.8593634953716034,
          -7,
          -3.1749385054686314,
          -3.636588183729842,
          -7,
          -7,
          -3.832381160247041,
          -3.3636119798921444,
          -3.6844862921887342,
          -7,
          -7,
          -3.093421685162235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.242417184417719,
          -7,
          -7,
          -4.598823323746008,
          -3.1169256768200073,
          -4.488395583624388,
          -7,
          -7,
          -3.2483166403417796,
          -7,
          -7,
          -7,
          -7,
          -4.256043898702031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.04766419460156,
          -7,
          -3.1855421548543754,
          -7,
          -7,
          -3.2962701975267965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5503812467309923,
          -7,
          -7,
          -3.9079485216122722,
          -7,
          -3.3980356405224597,
          -3.190191580575302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8169038393756605,
          -7,
          -7,
          -3.506978304246419,
          -3.234314768012676,
          -3.639586086673426,
          -7,
          -3.1635021317476606,
          -7,
          -7,
          -7,
          -3.0861224464207355,
          -7,
          -7,
          -7,
          -2.8674674878590514,
          -7,
          -4.062769949815128,
          -7,
          -3.1351326513767748,
          -3.484442207642407,
          -2.655228102880582,
          -3.0661394928706995,
          -3.5654050375151254,
          -4.248059135312142,
          -7,
          -7,
          -7,
          -2.998912904358786,
          -7,
          -7,
          -3.0828750913129275,
          -7,
          -7,
          -7,
          -7,
          -3.553588313493936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.345765693114488,
          -7,
          -7,
          -7,
          -7,
          -3.109240968588203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6744937172963503,
          -7,
          -7,
          -3.5602653978627146,
          -7,
          -7,
          -4.200316874268984,
          -7,
          -7,
          -3.552911450216509,
          -7,
          -3.441695135640717,
          -7,
          -7,
          -7,
          -7,
          -3.6742179455767,
          -3.266936911159173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.203813153816388,
          -7,
          -7,
          -7,
          -7,
          -4.203522416822585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.635483746814912,
          -5.270508810924844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.864030243209204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0043213737826426,
          -7,
          -4.605730510917235,
          -7,
          -3.8868853589860084,
          -7,
          -7,
          -2.862131379313037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.445790956440055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.290034611362518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295457138072563,
          -3.895164618625614,
          -7,
          -7,
          -7,
          -7,
          -4.379178565528129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.992549099757966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.606752844325752,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.574692821415007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03462845662532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8329557506045986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.807535028068853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2288749484642025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0086001717619175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278456350394209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4574276929464847,
          -7,
          -7,
          -7,
          -7,
          -5.828197648925988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9454685851318194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.574085116904895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8964573201336714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9770831203158528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.65628990119136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.346876941674333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.284881714655453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7948294923299635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.093327110744394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4085791254086675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.346663911865268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2420442393695508,
          -7,
          -3.0927206446840994,
          -3.7740409138827307,
          -7,
          -7,
          -2.976808337338066,
          -3.3591305026927025,
          -3.743326810350656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4417344009978166,
          -3.904715545278681,
          -7,
          -3.69539410829111,
          -3.425833381920453,
          -2.4718781993072905,
          -2.1222158782728267,
          -7,
          -2.3774883833761327,
          -7,
          -7,
          -3.788498328434222,
          -7,
          -7,
          -7,
          -3.0644579892269186,
          -3.3666097103924297,
          -3.002166061756508,
          -7,
          -7,
          -2.8120773708565143,
          -7,
          -4.142326883154263,
          -2.9740509027928774,
          -7,
          -3.393399695293102,
          -3.2060158767633444,
          -3.3709754493589705,
          -7,
          -7,
          -7,
          -2.9156636035057732,
          -3.3170181010481117,
          -3.2969860580130335,
          -2.586727921309507,
          -3.92147838037569,
          -3.514547752660286,
          -7,
          -7,
          -2.5323296410790315,
          -3.1489109931093564,
          -7,
          -3.1763806922432702,
          -7,
          -7,
          -3.0011926706536842,
          -3.5011353674456522,
          -7,
          -7,
          -7,
          -7,
          -3.4567454953479446,
          -3.06126394230025,
          -7,
          -7,
          -3.9502869470332103,
          -7,
          -3.111766433052562,
          -7,
          -7,
          -3.4171948079647763,
          -7,
          -7,
          -7,
          -3.490941205356787,
          -3.1222158782728267,
          -2.7565093254448008,
          -7,
          -2.7287594751678745,
          -7,
          -3.7839316401571788,
          -3.5770319856260313,
          -7,
          -2.9222062774390163,
          -7,
          -7,
          -7,
          -7,
          -3.0159881053841304,
          -7,
          -3.8584770418133405,
          -2.8382192219076257,
          -7,
          -7,
          -3.686948920211501,
          -7,
          -2.732715340349993,
          -7,
          -3.1843127956742574,
          -3.128093977651733,
          -7,
          -7,
          -3.2116544005531824,
          -7,
          -3.5453071164658243,
          -7,
          -7,
          -2.916980047320382,
          -2.9798896670453554,
          -3.6636067081245205,
          -7,
          -3.8814702517152186,
          -4.279758172802473,
          -7,
          -7,
          -3.1085650237328344,
          -4.2171679787711565,
          -2.7353327063206136,
          -3.191311257590993,
          -7,
          -7,
          -7,
          -3.22696488563729,
          -3.517591730711908,
          -7,
          -7,
          -4.37390459247497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4647279415565504,
          -7,
          -7,
          -7,
          -2.597146487833695,
          -7,
          -3.230704313612569,
          -7,
          -3.1470576710283598,
          -7,
          -7,
          -7,
          -3.1650216300353597,
          -7,
          -7,
          -7,
          -7,
          -2.949390006644913,
          -7,
          -7,
          -3.148294097434746,
          -2.953115098691848,
          -3.335858911319818,
          -2.894426837964188,
          -3.3047058982127653,
          -3.0780941504064105,
          -3.8399422770510556,
          -7,
          -7,
          -7,
          -2.8397921844453293,
          -3.0253058652647704,
          -7,
          -7,
          -3.160568564398739,
          -7,
          -4.287644997457547,
          -7,
          -3.143561229978976,
          -3.229733792684291,
          -7,
          -7,
          -3.619719265611727,
          -2.958802703399502,
          -7,
          -2.9858753573083936,
          -7,
          -7,
          -2.9867717342662448,
          -2.96208508051736,
          -3.066325925362038,
          -7,
          -7,
          -3.966376423088923,
          -7,
          -7,
          -7,
          -3.6088111908309735,
          -7,
          -7,
          -7,
          -2.9883359558560505,
          -7,
          -2.7748817658187965,
          -7,
          -7,
          -7,
          -2.392217158165493,
          -4.362388216588698,
          -3.8719230318823734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0576661039098294,
          -7,
          -7,
          -3.6270584640009895,
          -2.7701152947871015,
          -3.840670561333409,
          -4.935079646454493,
          -7,
          -2.7367947549243605,
          -7,
          -7,
          -7,
          -7,
          -2.785863475645474,
          -7,
          -3.2971036501492565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9375178920173464,
          -3.3142886609474975,
          -3.7679223192109474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.709948016510761,
          -3.339053735709139,
          -7,
          -3.8361341494653747,
          -7,
          -7,
          -7,
          -3.1170640446463893,
          -7,
          -3.838974954955468,
          -2.6599162000698504,
          -4.412628520544375,
          -7,
          -7,
          -7,
          -3.306253420522117,
          -7,
          -3.3729120029701067,
          -2.534660575828444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8739015978644615,
          -7,
          -7,
          -2.944975908412048,
          -2.696356388733332,
          -7,
          -7,
          -7,
          -2.7666606613741322,
          -7,
          -3.4824447919182653,
          -3.2814878879400813,
          -4.178618882272053,
          -3.307282047033346,
          -7,
          -3.815622016657408,
          -7,
          -7,
          -3.143118935126169,
          -7,
          -7,
          -3.544811911757776,
          -7,
          -7,
          -3.261381837285746,
          -3.4164740791002206,
          -4.38141680215756,
          -3.1885910365939902,
          -7,
          -7,
          -7,
          -7,
          -2.8020892578817325,
          -7,
          -2.805160901599434,
          -3.1577588860468637,
          -7,
          -3.3811150807098507,
          -7,
          -3.423737249982329,
          -7,
          -2.8962505624616384,
          -7,
          -7,
          -4.5578559410728055,
          -7,
          -4.72934300831835,
          -7,
          -3.1136760118971,
          -3.815693943076172,
          -2.45178643552429,
          -7,
          -7,
          -2.977266212427293,
          -3.5735677730392186,
          -2.8499650956427165,
          -2.664798619194218,
          -2.4763968267253302,
          -7,
          -7,
          -7,
          -7,
          -3.1095785469043866,
          -3.137986732723532,
          -3.1963604423536847,
          -3.0338256939533106,
          -2.636108220873542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.077476919504343,
          -7,
          -7,
          -4.1038208188273355,
          -3.9902056151848067,
          -7,
          -7,
          -4.119198133511922,
          -4.999039147060988,
          -3.9824973691977124,
          -3.857975419541879,
          -4.67632773388132,
          -4.225097252907976,
          -7,
          -7,
          -7,
          -4.786415991756133,
          -7,
          -4.535737051730224,
          -7,
          -7,
          -4.661007690901031,
          -7,
          -7,
          -7,
          -4.167140035508358,
          -4.679891018182745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.371935583802963,
          -4.067119232342068,
          -3.4248272103534214,
          -7,
          -7,
          -7,
          -4.391096487376276,
          -3.4030776045809015,
          -7,
          -7,
          -4.060952677550257,
          -3.6038207385595746,
          -7,
          -4.441852175773292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9928405962889184,
          -4.4883448008271,
          -5.104616833998747,
          -7,
          -2.8674674878590514,
          -7,
          -4.655892030978066,
          -7,
          -5.104845461232334,
          -3.610056557041494,
          -7,
          -7,
          -4.026839573092644,
          -7,
          -4.182756931040399,
          -7,
          -7,
          -7,
          -4.054695113032692,
          -7,
          -7,
          -3.7987887139512493,
          -4.656342603634468,
          -7,
          -4.503002286443708,
          -7,
          -7,
          -3.9120838257658943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.871149525585623,
          -7,
          -3.492872090283087,
          -7,
          -7,
          -4.3481490343841624,
          -7,
          -3.060508975605298,
          -7,
          -7,
          -7,
          -4.3221089837143,
          -3.342620042553348,
          -7,
          -7,
          -4.135800283302111,
          -7,
          -3.2135177569963047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.020568434801363,
          -3.2597133053907306,
          -7,
          -4.023992804606471,
          -7,
          -7,
          -4.599621106961551,
          -4.192421084256289,
          -7,
          -7,
          -3.0073209529227447,
          -3.2518814545525276,
          -7,
          -7,
          -7,
          -3.2814878879400813,
          -3.5586365820562924,
          -7,
          -7,
          -3.431524584187451,
          -3.2730012720637376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.998782269831736,
          -3.725476030972769,
          -7,
          -3.274734984872738,
          -3.0745726604075623,
          -7,
          -7,
          -7,
          -7,
          -3.91184979649942,
          -7,
          -3.5215791047702303,
          -3.5016069224188295,
          -3.6245914591268478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3872118003137306,
          -3.344326764297868,
          -7,
          -7,
          -3.8130469651601078,
          -3.457104414338873,
          -7,
          -3.414137362184477,
          -4.311732675442349,
          -3.0272136570828017,
          -3.75815462196739,
          -7,
          -4.043872912391425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.365207100231824,
          -7,
          -3.1577588860468637,
          -7,
          -7,
          -7,
          -7,
          -3.9478746548976984,
          -3.6873505695580273,
          -3.4879863311293935,
          -7,
          -3.315970345456918,
          -7,
          -3.6711728427150834,
          -3.6919651027673606,
          -7,
          -7,
          -7,
          -7,
          -3.797994219946912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8819549713396007,
          -7,
          -7,
          -7,
          -7,
          -3.1332194567324945,
          -7,
          -7,
          -7,
          -3.640481436970422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.076276255404218,
          -7,
          -3.9002305365868106,
          -3.129689892199301,
          -3.1179338350396413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2837533833325265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3730040047672736,
          -3.0655797147284485,
          -3.4407517004791854,
          -3.6748611407378116,
          -7,
          -3.1856930439264346,
          -7,
          -7,
          -7,
          -7,
          -2.8458461788416503,
          -3.732393759822968,
          -3.226857570288723,
          -7,
          -7,
          -7,
          -3.2991215945305745,
          -3.4697484005051664,
          -7,
          -7,
          -3.3587894341625666,
          -7,
          -3.68556261115823,
          -7,
          -3.7907776013376937,
          -7,
          -3.6919651027673606,
          -2.871292205822265,
          -3.721315880605899,
          -7,
          -3.66838591669,
          -7,
          -7,
          -3.6793370305207937,
          -7,
          -7,
          -3.804480189105993,
          -7,
          -3.0563681280368664,
          -3.6735737964230517,
          -7,
          -7,
          -7,
          -3.92813970687512,
          -7,
          -7,
          -3.561280314290289,
          -7,
          -7,
          -3.14395622736422,
          -7,
          -3.7824009524965296,
          -3.712397131406715,
          -7,
          -3.4098486220211917,
          -2.990211960854806,
          -7,
          -7,
          -7,
          -7,
          -3.7064617376313547,
          -3.192177026112752,
          -3.2538089895192175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.429074712716486,
          -7,
          -7,
          -4.138492167149976,
          -7,
          -7,
          -7,
          -7,
          -3.7640266076920375,
          -7,
          -7,
          -7,
          -3.359645792674543,
          -7,
          -3.2554534234487273,
          -3.403120521175818,
          -3.7724684030532805,
          -7,
          -3.5329266541701796,
          -3.877946951629188,
          -3.4639526817194084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.598133645813238,
          -7,
          -3.3569814009931314,
          -3.712144414214886,
          -7,
          -7,
          -3.528177256557267,
          -7,
          -7,
          -3.7466341989375787,
          -7,
          -3.446614823664267,
          -3.399673721481038,
          -3.379939722801916,
          -3.732554579851432,
          -7,
          -2.7267733279783406,
          -7,
          -7,
          -7,
          -3.579612130740304,
          -3.446070935701005,
          -7,
          -3.5003508441102396,
          -3.0764048273147346,
          -7,
          -3.439845647895687,
          -7,
          -3.3210190017020293,
          -7,
          -3.837777769553733,
          -7,
          -3.1899579507445543,
          -7,
          -3.2042104512495033,
          -3.8492350913147226,
          -7,
          -7,
          -3.1823829463216065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8688207061975177,
          -2.828291538174048,
          -3.962795369857233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.431001701210211,
          -7,
          -7,
          -7,
          -4.11293997608408,
          -7,
          -7,
          -3.7785130117389247,
          -7,
          -7,
          -7,
          -1.4888870747064173,
          -7,
          -3.8109713998222077,
          -7,
          -7,
          -7,
          -7,
          -3.2225425612955334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2852759390712047,
          -7,
          -3.015685679988791,
          -3.436692597664054,
          -7,
          -7,
          -7,
          -7,
          -3.8095597146352675,
          -7,
          -2.9951962915971793,
          -2.889941665019464,
          -2.978180516937414,
          -7,
          -7,
          -3.9404168646816653,
          -7,
          -3.1143106768684246,
          -2.9370161074648142,
          -7,
          -7,
          -1.7969056392619156,
          -7,
          -2.1221485231691317,
          -2.999739345106568,
          -2.579402469359438,
          -3.382197210377454,
          -2.6149850498855733,
          -1.8339981365637825,
          -1.93980039487275,
          -7,
          -3.8134475442648212,
          -3.826123415033982,
          -2.9699592171113403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6916118742144164,
          -3.6654871807828107,
          -3.6994908452722046,
          -3.3096301674258988,
          -3.5969817431335205,
          -3.0414913772349825,
          -2.818005830532529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3165993020938607,
          -3.7622282842864743,
          -7,
          -7,
          -7,
          -7,
          -3.6786094165589263,
          -7,
          -7,
          -7,
          -3.198434290393791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.709948016510761,
          -7,
          -7,
          -7,
          -4.026574118150334,
          -7,
          -7,
          -7,
          -3.351901671294104,
          -7,
          -3.8048433685402374,
          -7,
          -3.4217292462999036,
          -7,
          -7,
          -7,
          -2.6225907694500417,
          -3.981637424655769,
          -3.3427515672308834,
          -3.4904267214991997,
          -7,
          -7,
          -3.707655323531187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2845811128217504,
          -7,
          -7,
          -3.7981324972646138,
          -2.83290789709985,
          -2.8779469516291885,
          -3.1522883443830563,
          -3.8894386626800617,
          -3.2298646031173694,
          -7,
          -1.7657760571950565,
          -2.885926339801431,
          -7,
          -3.1216145515607425,
          -3.1736960465161355,
          -3.2141813086638207,
          -3.3847714356717837,
          -4.008216801589691,
          -7,
          -3.2684024402609575,
          -7,
          -3.9736114170892827,
          -3.4584489842773354,
          -7,
          -7,
          -7,
          -7,
          -3.437750562820388,
          -7,
          -7,
          -7,
          -7,
          -3.7909181952145783,
          -7,
          -3.355834495884936,
          -3.70816585785554,
          -3.728434950974255,
          -3.1371958119405483,
          -7,
          -3.5797607384109624,
          -4.454433228116589,
          -3.7635719665401894,
          -7,
          -3.534618306668656,
          -2.28735700871944,
          -3.2232362731029975,
          -7,
          -3.721563318357481,
          -7,
          -3.2738111993994035,
          -2.6830041301242167,
          -3.4931326148751247,
          -3.7912694809102683,
          -7,
          -7,
          -3.817631467190515,
          -7,
          -7,
          -7,
          -3.9290611240847655,
          -7,
          -3.2125749782567365,
          -7,
          -7,
          -3.9389498039219983,
          -4.800833882291923,
          -7,
          -7,
          -7,
          -4.141136090120739,
          -4.065280871102755,
          -4.031630604606654,
          -3.999853400872363,
          -7,
          -7,
          -3.6057000062196667,
          -7,
          -4.413077529551733,
          -4.023190707213023,
          -7,
          -7,
          -3.9017108887365266,
          -7,
          -4.089781514122957,
          -7,
          -4.918007607412871,
          -7,
          -4.27997476431969,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325864436615347,
          -4.2664198658791035,
          -7,
          -7,
          -3.992398858487621,
          -7,
          -3.731696184054935,
          -7,
          -7,
          -4.286905352972375,
          -4.6550038979849875,
          -3.720242018287057,
          -4.706461737631355,
          -4.302817775635442,
          -7,
          -7,
          -3.7053675809749085,
          -7,
          -3.713994267660644,
          -4.142983554922818,
          -3.010421115653543,
          -2.590294044407944,
          -3.9022749204745018,
          -3.224064991755207,
          -3.7541953881898387,
          -7,
          -3.5519783121038806,
          -7,
          -7,
          -4.140994858693246,
          -7,
          -7,
          -4.310264115074859,
          -3.79455496328573,
          -3.903603711265901,
          -3.679609571779756,
          -3.1729433064580195,
          -3.084576277934331,
          -3.9745807690805917,
          -7,
          -5.111235621527294,
          -3.6019242530921636,
          -4.012204296030743,
          -7,
          -3.9216344610537055,
          -4.0159322888519835,
          -3.2083741645947104,
          -7,
          -3.611340875583321,
          -7,
          -2.9648512800439804,
          -4.5413545507544155,
          -3.7102020146553847,
          -3.883973560827824,
          -3.975013397518679,
          -7,
          -2.9890410933670744,
          -7,
          -3.4243370666764497,
          -3.5031386548731835,
          -4.075711159354416,
          -7,
          -7,
          -7,
          -3.364550995353972,
          -7,
          -3.923049630943971,
          -3.5009222391903005,
          -3.6841718627005906,
          -7,
          -7,
          -2.8964928140759403,
          -7,
          -3.482373285458582,
          -3.67641923171836,
          -3.9844372947960762,
          -3.6635124704151556,
          -2.793764282125484,
          -3.1339644786952103,
          -7,
          -3.792881745385397,
          -7,
          -3.3119656603683665,
          -3.2392994791268923,
          -7,
          -7,
          -7,
          -7,
          -3.7102020146553847,
          -3.4676820847136822,
          -7,
          -7,
          -3.3781555491104296,
          -3.060320028688285,
          -7,
          -3.0046812200872597,
          -4.067057323249598,
          -4.338609200287477,
          -7,
          -3.834357112718405,
          -3.803115554890027,
          -7,
          -2.939581646768845,
          -7,
          -3.754806855354423,
          -2.924060492895014,
          -3.659345635746177,
          -3.195161370069258,
          -7,
          -3.751971574736327,
          -3.3453737305590887,
          -7,
          -3.0635585181109812,
          -3.7307822756663893,
          -7,
          -3.773640193260026,
          -4.138176339573041,
          -3.1804787808061468,
          -2.659250468772661,
          -3.2750232653226883,
          -3.8656960599160706,
          -7,
          -4.256669648687233,
          -7,
          -3.371437317404101,
          -3.7757924276787924,
          -2.945890435074559,
          -3.015917053277,
          -7,
          -3.9023836844324715,
          -7,
          -7,
          -7,
          -7,
          -3.0959099852263767,
          -7,
          -2.88923164935963,
          -3.5400373437681525,
          -3.2668586105221804,
          -7,
          -3.2332500095411003,
          -3.5906282374313663,
          -2.6820919614123637,
          -7,
          -2.6428241099806553,
          -2.3774569867029287,
          -3.6767850304192056,
          -3.4371160930480786,
          -3.3258966620220436,
          -3.937166703715033,
          -3.744840396785379,
          -7,
          -7,
          -7,
          -7,
          -3.841171694499532,
          -7,
          -3.838723190031372,
          -4.101495036729082,
          -7,
          -4.268531170386822,
          -3.4796970961954656,
          -3.4592919449918176,
          -3.358315640082196,
          -7,
          -2.98781517440207,
          -7,
          -3.325207689482919,
          -2.984177136353868,
          -7,
          -7,
          -7,
          -3.426267207139606,
          -3.0985383930592922,
          -3.2349388877414125,
          -3.6869935662646784,
          -7,
          -7,
          -3.1893967258352185,
          -3.059089865916824,
          -2.8928363526263907,
          -7,
          -2.914116391219987,
          -3.3053513694466234,
          -7,
          -3.7013088852280753,
          -7,
          -7,
          -3.409172018991404,
          -3.6959192528313998,
          -7,
          -7,
          -3.750354088762708,
          -3.214667269683036,
          -3.0293330393847953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.852016173286643,
          -7,
          -7,
          -3.2679340087937794,
          -2.8742240379133537,
          -3.8203328448994096,
          -7,
          -3.3697722885969625,
          -3.8003733548913496,
          -7,
          -3.455656815340888,
          -3.7555699806288,
          -7,
          -7,
          -3.273926780100526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.932980821923198,
          -7,
          -7,
          -3.057809027363004,
          -3.8016780590358934,
          -7,
          -7,
          -7,
          -3.199805024539831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2466689926017556,
          -7,
          -7,
          -3.461348433647983,
          -3.0358925961617778,
          -7,
          -3.2794387882870204,
          -7,
          -1.8858023520977822,
          -3.1020905255118367,
          -7,
          -4.270568210861315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.507025083337453,
          -7,
          -2.9324737646771535,
          -7,
          -3.491483092526961,
          -3.248218561190075,
          -7,
          -7,
          -7,
          -3.7427251313046983,
          -7,
          -7,
          -7,
          -2.61419390497756,
          -3.462996612028056,
          -2.7670020593629587,
          -2.3606156856482254,
          -2.4029774493636515,
          -3.265112759850687,
          -7,
          -2.863719295092669,
          -2.2870175013221017,
          -3.3498600821923312,
          -7,
          -7,
          -7,
          -7,
          -3.6853834098014873,
          -3.2371295890244625,
          -2.9407654356312176,
          -2.919601023784111,
          -3.2638726768652235,
          -7,
          -3.3392526340327,
          -7,
          -3.2340108175871793,
          -3.282848602834645,
          -3.6518431337680632,
          -3.2271150825891253,
          -2.5774917998372255,
          -7,
          -7,
          -3.238798562713917,
          -3.2052043639481447,
          -7,
          -7,
          -2.17341042040791,
          -3.0318122713303706,
          -2.450864692379766,
          -3.667359546183087,
          -2.2935835134961167,
          -7,
          -3.4926994489574796,
          -3.1857309785451338,
          -3.587748370340144,
          -7,
          -7,
          -3.5800121125294244,
          -3.467608105583633,
          -7,
          -3.697665162647674,
          -7,
          -4.183810595098135,
          -7,
          -7,
          -3.1992064791616577,
          -1.8954815918354517,
          -2.912487761332324,
          -3.2476050641507705,
          -3.4207806195485655,
          -2.223771668052953,
          -2.0906107078284064,
          -7,
          -7,
          -2.9125762934867234,
          -7,
          -3.4047140126688986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8842287696326037,
          -3.250907699700856,
          -4.763165840200662,
          -7,
          -7,
          -7,
          -4.220792129711578,
          -2.3884564527002667,
          -3.5952757118020995,
          -2.035301973197531,
          -7,
          -7,
          -3.3694632481783837,
          -3.615107987443194,
          -7,
          -2.7283537820212285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1997551772534747,
          -4.073461729279835,
          -3.8135142715418833,
          -3.8868571827455662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6232492903979003,
          -7,
          -3.5938396610812715,
          -7,
          -7,
          -7,
          -3.0638416171528697,
          -3.20682587603185,
          -7,
          -7,
          -2.7218106152125467,
          -7,
          -3.424881636631067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4006953610117394,
          -2.8086610190597323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5786392099680726,
          -7,
          -4.305824106052693,
          -7,
          -7,
          -2.171764294452083,
          -3.3571722577230334,
          -2.728501350653944,
          -2.1485145179246334,
          -2.9454685851318194,
          -3.0670708560453703,
          -7,
          -3.4769764657595275,
          -2.7948364578145615,
          -3.442636525782232,
          -2.114676064138173,
          -1.873722912619438,
          -3.761401557498631,
          -7,
          -3.526339277389844,
          -7,
          -3.6650553925144296,
          -7,
          -3.813547631336185,
          -7,
          -3.5358002908248976,
          -7,
          -3.4437322414015967,
          -7,
          -7,
          -3.52329112918679,
          -3.2271150825891253,
          -7,
          -2.7052526322873587,
          -7,
          -7,
          -7,
          -3.197831693328903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.968716377466786,
          -3.394626764272209,
          -3.8659030992071726,
          -4.537820773502811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9599948383284165,
          -7,
          -7,
          -2.760874638052189,
          -4.103070321712875,
          -7,
          -7,
          -7,
          -7,
          -3.3378584290410944,
          -3.022840610876528,
          -7,
          -3.339053735709139,
          -7,
          -7,
          -3.856910060300786,
          -2.7703987953402223,
          -3.465977368285823,
          -7,
          -7,
          -3.5602853209988012,
          -3.5043349118024643,
          -3.3175102892089123,
          -3.3432115901797474,
          -4.720580984690612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6481902486483087,
          -2.8007857903277626,
          -3.6047119317276204,
          -3.433769833924866,
          -7,
          -2.9304395947667,
          -3.1095785469043866,
          -2.3691066696077066,
          -3.281601443825655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.519302849235429,
          -2.70288382370294,
          -3.400365273349939,
          -7,
          -3.4379090355394983,
          -3.364334724324249,
          -3.650744512417744,
          -3.2425414282983844,
          -7,
          -7,
          -2.5713205488307422,
          -3.6993173010213822,
          -3.4811558708280352,
          -3.2286997099406283,
          -3.15946692901018,
          -7,
          -7,
          -7,
          -3.2350231594952237,
          -4.27279597919482,
          -2.6293076400737485,
          -7,
          -7,
          -7,
          -3.356790460351716,
          -2.6415567309708003,
          -7,
          -7,
          -2.722516402716588,
          -7,
          -2.5533435303236858,
          -3.2880255353883627,
          -2.942008053022313,
          -3.3348556896172914,
          -3.381295623003826,
          -2.6807474402991907,
          -7,
          -4.0186826701196,
          -3.0638789979485685,
          -4.398810619711163,
          -7,
          -2.5009401142109953,
          -4.324360662427652,
          -2.9471272548064458,
          -7,
          -2.762678563727436,
          -7,
          -2.5117879011517172,
          -3.5571461423183632,
          -2.8047526021504603,
          -3.0327530302850567,
          -7,
          -7,
          -2.515633037228158,
          -7,
          -7,
          -7,
          -3.4429498695778618,
          -7,
          -2.2463255418458528,
          -7,
          -7,
          -4.130355214606559,
          -4.780115602859192,
          -7,
          -7,
          -4.421003066384153,
          -3.79118168612114,
          -7,
          -3.398515067967853,
          -4.187712444905493,
          -4.025551622782544,
          -7,
          -7,
          -4.728093939379775,
          -4.400546623391249,
          -7,
          -7,
          -4.6838482118410445,
          -4.9283753661847784,
          -7,
          -7,
          -7,
          -5.0889224243582145,
          -7,
          -7,
          -4.141543834220653,
          -7,
          -4.191637287031295,
          -7,
          -7,
          -4.180297952488594,
          -7,
          -7,
          -7,
          -4.222976449893391,
          -7,
          -4.12165831249807,
          -7,
          -4.469527479187014,
          -7,
          -4.32468363214722,
          -7,
          -4.2034046174735815,
          -3.1946512225101293,
          -2.713045594527829,
          -7,
          -7,
          -7,
          -3.5056498329258434,
          -3.7384634394619525,
          -7,
          -7,
          -3.4625617634285892,
          -3.36802996095516,
          -7,
          -3.375160455307423,
          -7,
          -7,
          -7,
          -4.393188992055249,
          -7,
          -7,
          -3.0562913790574244,
          -3.440007581697311,
          -4.862280493299705,
          -7,
          -2.9992755720056676,
          -3.2835273648616936,
          -3.9608036249117697,
          -7,
          -3.7258895224423694,
          -3.814713612695977,
          -3.945099129999455,
          -7,
          -4.344510165686533,
          -4.14888016912823,
          -3.3924507246560327,
          -3.232911444346091,
          -3.46451438626162,
          -7,
          -3.3725329665551333,
          -3.599651131814264,
          -7,
          -3.115948067174583,
          -4.183136924486553,
          -7,
          -3.9517026778225817,
          -7,
          -7,
          -2.798964374045131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.184180195347259,
          -3.5308397786165204,
          -3.037771671331138,
          -7,
          -7,
          -3.6648863149590496,
          -7,
          -7,
          -7,
          -3.826269219393726,
          -7,
          -3.8048138715442734,
          -3.417554724363455,
          -7,
          -7,
          -4.161368002234974,
          -7,
          -3.2813364338908033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4665710723863543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5667320289862197,
          -4.193653224907199,
          -7,
          -7,
          -3.2111650546063077,
          -7,
          -2.7589118923979736,
          -7,
          -7,
          -3.4988616889928843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.45499721730946,
          -7,
          -7,
          -3.174786417367337,
          -2.991266360881699,
          -7,
          -7,
          -3.184880624670255,
          -3.1654421823847256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2883833843997747,
          -2.9996741569321426,
          -7,
          -3.436480695009495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.514282047860378,
          -2.792391689498254,
          -7,
          -7,
          -2.659262365784863,
          -2.7710906787017704,
          -3.420038306133178,
          -7,
          -3.8517474191332637,
          -7,
          -7,
          -7,
          -3.4729757345942285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3554515201265174,
          -7,
          -4.066363202258494,
          -3.509605704611556,
          -7,
          -4.082869110489787,
          -7,
          -3.114054695592129,
          -7,
          -7,
          -7,
          -3.4406729882937586,
          -3.1570788249532042,
          -7,
          -7,
          -7,
          -7,
          -3.4597442042559603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1927068066128585,
          -7,
          -7,
          -7,
          -7,
          -3.3400473176613934,
          -7,
          -2.949145952419944,
          -3.4412236742426123,
          -3.84326393153455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3055663135153037,
          -7,
          -4.036376015529204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2271150825891253,
          -7,
          -7,
          -7,
          -7,
          -3.4394905903896835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.762753564933374,
          -3.4739976044348633,
          -3.5475901217701526,
          -2.394970241463233,
          -3.7756832490260437,
          -7,
          -3.8763595721890662,
          -1.759048659216874,
          -7,
          -3.473924693416157,
          -2.341132428405558,
          -2.2330773742707466,
          -3.3445232628225545,
          -7,
          -7,
          -7,
          -2.918778991481398,
          -2.544776518376729,
          -3.814180981040187,
          -7,
          -2.2781817845675176,
          -2.9466650639704843,
          -3.511749711344983,
          -3.7841892053809607,
          -3.760271660542063,
          -3.392638340062748,
          -3.5257572431523108,
          -7,
          -3.782274119790817,
          -7,
          -3.7695250201710504,
          -7,
          -3.7902851640332416,
          -7,
          -7,
          -3.9233994661587164,
          -3.7630534402996147,
          -3.58029758843657,
          -2.3205759970450925,
          -3.0139339361755866,
          -7,
          -3.793580867368156,
          -1.8449787119514363,
          -3.8206611346435957,
          -2.8399715893768915,
          -7,
          -3.2097160302749415,
          -3.3281246609706576,
          -2.977527638759884,
          -2.485906508300662,
          -2.7644184954986453,
          -3.909181475977853,
          -2.4235080103454925,
          -3.020511948557945,
          -3.7909181952145783,
          -3.3272226637602036,
          -3.305673745669693,
          -7,
          -3.812846536967071,
          -7,
          -3.7702627381705933,
          -3.4997557946637814,
          -3.4782297026479974,
          -3.145027982018139,
          -7,
          -7,
          -3.417803722639881,
          -7,
          -3.127226318996642,
          -3.983265352566545,
          -7,
          -2.623412528318222,
          -2.4131862807290165,
          -7,
          -3.1813289870897337,
          -7,
          -7,
          -3.066969349796947,
          -2.58782907611072,
          -7,
          -7,
          -7,
          -3.80174661921946,
          -3.9265996539070276,
          -2.71393503626257,
          -7,
          -7,
          -2.437204435651293,
          -2.863521122841043,
          -2.6283613110810564,
          -3.2894402979178685,
          -7,
          -3.4248272103534214,
          -3.152777414797245,
          -3.1100844228869238,
          -3.1165128680770238,
          -7,
          -2.288885772881598,
          -7,
          -7,
          -7,
          -3.1679373127005777,
          -7,
          -2.6068337552368273,
          -2.9876662649262746,
          -2.8049114308857184,
          -2.7740400301845156,
          -3.4952667443878105,
          -3.780677274433368,
          -3.520876381688342,
          -3.5299434016586693,
          -3.8690262615868187,
          -7,
          -7,
          -3.8745977687032,
          -3.946206553842783,
          -3.079407382205769,
          -3.8117760216029035,
          -3.1294105824083522,
          -2.415353770432938,
          -7,
          -7,
          -7,
          -4.01674092728626,
          -3.822494985278751,
          -3.3071214846498904,
          -2.9709509343454243,
          -7,
          -2.334800271940003,
          -2.845080805764293,
          -2.19786346826144,
          -7,
          -3.762678563727436,
          -2.9940894992168676,
          -3.7553411838115474,
          -7,
          -3.761551988564182,
          -2.92450080837319,
          -7,
          -3.602548297999073,
          -4.028977705208778,
          -2.7856412050628534,
          -2.6247546453952175,
          -2.321045804996277,
          -3.6334011178816605,
          -7,
          -7,
          -7,
          -3.9218684769454404,
          -2.9333064749555056,
          -7,
          -3.7817553746524686,
          -3.8033888249836134,
          -3.260808325447157,
          -7,
          -7,
          -3.013980184732713,
          -3.5328817194073974,
          -7,
          -1.835984598685146,
          -7,
          -3.8935398435646613,
          -3.8868853589860084,
          -7,
          -4.109578546904387,
          -7,
          -7,
          -2.6195243246375224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.778585327862962,
          -7,
          -2.9598678330688757,
          -2.7816835845073506,
          -3.4329158688333883,
          -7,
          -3.2460469818232247,
          -2.9972583039329788,
          -3.2075670505660874,
          -3.7026889681591335,
          -3.263304600287296,
          -3.533327117054424,
          -3.10698371567979,
          -3.841859809775061,
          -3.8561244442423,
          -7,
          -7,
          -2.8049114308857184,
          -7,
          -2.8507337328124356,
          -7,
          -3.199541877030045,
          -3.86350130064145,
          -1.9570631956962383,
          -3.7743709598499167,
          -3.3901778366727955,
          -3.7601207852645677,
          -2.8662085483579443,
          -3.0957271225559797,
          -7,
          -3.782472624166286,
          -3.7926017811649664,
          -7,
          -7,
          -7,
          -3.8889653443003374,
          -7,
          -3.618117857290815,
          -7,
          -7,
          -3.782830805202592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.828788748184953,
          -3.3588386859986983,
          -3.161275834475312,
          -3.5469234711723647,
          -7,
          -7,
          -3.7942091163464964,
          -2.8677293082027178,
          -7,
          -3.770483809431108,
          -3.3953263930693507,
          -2.6403571930897565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2865359932977283,
          -7,
          -7,
          -7,
          -7,
          -3.8033205235787544,
          -7,
          -7,
          -7,
          -7,
          -3.856910060300786,
          -7,
          -3.0736816994762832,
          -3.8515640822634887,
          -7,
          -7,
          -3.113140836867081,
          -1.9780242591477941,
          -1.3976434607042825,
          -7,
          -4.05479684401452,
          -2.8107028609471167,
          -2.823329295252085,
          -3.304418713886279,
          -3.5778650407463743,
          -2.5849770155376826,
          -2.329989509639039,
          -3.067112203642098,
          -3.485224400125799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.479791180189492,
          -7,
          -7,
          -3.243719975783927,
          -7,
          -3.029557692583844,
          -3.361507485824534,
          -7,
          -3.9056340013269546,
          -3.061452479087193,
          -3.55734676803538,
          -2.452586364189867,
          -7,
          -3.312000950213744,
          -7,
          -3.8080082999104,
          -3.2637307273683223,
          -3.556724526395461,
          -3.45763971382968,
          -3.9302356527662847,
          -7,
          -7,
          -3.9376683143990054,
          -3.103176333716908,
          -3.4353095378288203,
          -3.0629919861296586,
          -3.760497875226527,
          -7,
          -7,
          -3.0409581733842073,
          -3.674769314015426,
          -7,
          -7,
          -3.8969669019331548,
          -7,
          -3.5689640044577606,
          -2.9409431702282975,
          -2.710963118995276,
          -7,
          -3.818687663441514,
          -7,
          -3.50112775752298,
          -2.973285586310765,
          -2.304275050477128,
          -3.302755655340937,
          -7,
          -4.061226225119115,
          -3.5776185595103214,
          -3.3529539117100877,
          -7,
          -3.8131137540078983,
          -7,
          -3.4649860542696933,
          -3.57951684265999,
          -3.0695036537131513,
          -7,
          -7,
          -7,
          -2.7772036781419343,
          -7,
          -7,
          -7,
          -3.9880682033926353,
          -7,
          -2.9357415383958827,
          -7,
          -7,
          -3.951133439889513,
          -4.508199664444567,
          -7,
          -3.978545700462739,
          -4.454143327174591,
          -3.5066853872587527,
          -7,
          -3.303215699422342,
          -2.5493098589194982,
          -3.470675044798936,
          -7,
          -4.405653656099307,
          -3.9825651870905556,
          -4.543177863009376,
          -3.257178408417606,
          -7,
          -4.1178014079973275,
          -3.7450113221483106,
          -7,
          -3.508815787764874,
          -7,
          -4.552172639639922,
          -4.382035062718931,
          -3.1964193881874445,
          -2.954145988829548,
          -7,
          -4.228921951650121,
          -3.7125444818854723,
          -7,
          -2.837003810313908,
          -3.8173449714419307,
          -3.400587324218979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.184162110347251,
          -4.313782883155197,
          -2.4032525456431375,
          -7,
          -3.225025663553466,
          -4.38643832060867,
          -3.511448849204857,
          -2.4211590897092523,
          -2.855748283000016,
          -2.575014554582114,
          -2.844317521748743,
          -3.5777502315508336,
          -7,
          -4.2165353574183575,
          -2.8686848113835097,
          -3.1815087582709314,
          -7,
          -3.0219891049716843,
          -2.505919581839303,
          -7,
          -2.737873889090549,
          -3.8588829315609967,
          -7,
          -7,
          -3.7839077810179074,
          -2.9191504502067827,
          -4.40987397414063,
          -7,
          -7,
          -7,
          -3.6791143282160643,
          -7,
          -3.4897844322789955,
          -3.759239633293262,
          -4.338615838490599,
          -7,
          -7,
          -4.032846994195768,
          -4.217075778865637,
          -3.9691362335967124,
          -2.6528504508265676,
          -3.590395947184013,
          -3.2447048118717836,
          -2.9993722322513157,
          -7,
          -3.070706396887966,
          -3.8666916741838224,
          -3.17167770855167,
          -4.35774241954003,
          -7,
          -3.486949715838293,
          -3.661216185615503,
          -3.9215650987885304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4039905604956546,
          -3.2770358881721102,
          -2.3003908572382463,
          -7,
          -7,
          -2.943877294761792,
          -2.845886949371798,
          -3.863976783904387,
          -7,
          -2.956728552408984,
          -3.766710207262259,
          -3.790975697775765,
          -3.070037866607755,
          -3.4960296990359896,
          -7,
          -3.794185864065302,
          -3.8688207061975177,
          -3.150844122978294,
          -7,
          -7,
          -3.7516254773755455,
          -7,
          -3.803934849863842,
          -7,
          -3.237594000799247,
          -7,
          -3.1505610819947703,
          -7,
          -7,
          -3.2704847380490047,
          -3.379929663285281,
          -3.461870273308123,
          -7,
          -7,
          -2.7814119230869983,
          -7,
          -3.4370631787035837,
          -7,
          -7,
          -2.2588006605991375,
          -7,
          -7,
          -7,
          -3.8379039445929424,
          -3.402089350572097,
          -7,
          -3.5459253293558426,
          -3.519434194913703,
          -3.7985125330313516,
          -3.3783979009481375,
          -2.408824558860751,
          -7,
          -7,
          -3.0395628247012687,
          -3.6321534835106326,
          -7,
          -2.456366033129043,
          -7,
          -7,
          -7,
          -3.3935167084911435,
          -2.738991077258886,
          -3.310587114890355,
          -3.362529596161941,
          -3.8396665568824333,
          -7,
          -4.091702121717148,
          -7,
          -7,
          -7,
          -3.269688027663909,
          -2.684134415450565,
          -3.831613855309099,
          -7,
          -2.9463010745913882,
          -2.345013359928831,
          -3.2758179278775392,
          -3.579954994822772,
          -3.202062396148503,
          -7,
          -7,
          -3.826722520168992,
          -2.8068580295188172,
          -3.0914471173065543,
          -7,
          -7,
          -3.7649229846498886,
          -7,
          -4.1491112956784875,
          -7,
          -3.1099158630237933,
          -3.60916737430202,
          -2.345681730913762,
          -3.5689054149828787,
          -3.0917548625614546,
          -3.7041290590724634,
          -7,
          -3.1290450598879582,
          -7,
          -3.850033257689769,
          -7,
          -3.5094713521025485,
          -2.996161293368007,
          -4.006337660374551,
          -7,
          -3.248157250470427,
          -2.7023642471251033,
          -3.1775364999298623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.439445482944493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.48365860383744,
          -7,
          -7,
          -3.8890214220952246,
          -7,
          -4.258254053507148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.088750166273466,
          -3.8033205235787544,
          -3.8008544915035607,
          -3.9372670722114127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5085297189712863,
          -7,
          -3.860278099752235,
          -3.8101652845431495,
          -2.347850206404031,
          -2.6270794892290175,
          -3.7405995128111567,
          -7,
          -3.3322364154914434,
          -2.9702053364856873,
          -2.9459016787990913,
          -7,
          -7,
          -7,
          -3.806586934327803,
          -3.3227015762736576,
          -2.297316366077287,
          -3.830299898378829,
          -7,
          -2.291000037081086,
          -2.724524387649076,
          -3.1451964061141817,
          -3.3406423775607053,
          -7,
          -2.6657464890759366,
          -3.1582418379808734,
          -3.2203042611135873,
          -3.451605533164384,
          -3.1451964061141817,
          -3.804480189105993,
          -3.80543288813214,
          -2.4988354603129688,
          -3.592565338155902,
          -3.336059277866349,
          -2.5657494618659626,
          -3.7985125330313516,
          -3.209300495159705,
          -2.9747090245764993,
          -3.224258948591907,
          -3.1097135047929503,
          -7,
          -3.6007006960652372,
          -7,
          -2.8615344108590377,
          -3.5173278822943734,
          -3.065206128054312,
          -7,
          -3.377063289113944,
          -3.180125875164054,
          -2.1031893747209938,
          -2.2869869182805127,
          -2.4664258793434404,
          -2.4759252997015397,
          -7,
          -3.8369567370595505,
          -2.8185811447437055,
          -2.9937510507229983,
          -3.5434471800817002,
          -3.5441921107650325,
          -3.805160901599434,
          -3.8335295817586434,
          -3.6775157047987577,
          -3.252955175857627,
          -2.629613445378183,
          -7,
          -3.22219604630172,
          -3.797613730153076,
          -3.448087666692341,
          -2.587840431253855,
          -7,
          -3.2306532471792218,
          -3.245859240421096,
          -3.502358829319632,
          -1.753216579694992,
          -7,
          -3.8150461760646306,
          -2.893892249396686,
          -3.2943559851451605,
          -2.4939556956948823,
          -3.094960002436666,
          -2.1729305152207927,
          -1.9803280777535663,
          -2.517342544745865,
          -2.889348398327215,
          -2.2353562558730182,
          -7,
          -2.5524198775407516,
          -2.9666578842017577,
          -3.006973848403039,
          -3.802020751771976,
          -7,
          -3.928190948038757,
          -1.8152720561645486,
          -3.069879432430074,
          -2.551224026542675,
          -3.810568529216413,
          -3.396395520169268,
          -7,
          -3.496237545166735,
          -3.017450729510536,
          -1.4415086913407607,
          -3.1005773027895964,
          -3.613366056465805,
          -7,
          -2.5545324228899338,
          -2.2453353203066544,
          -3.528209432477408,
          -3.3373926976485757,
          -1.9515741202886634,
          -3.5604446731931874,
          -2.6070055705400916,
          -3.365175879608403,
          -7,
          -2.696520201326676,
          -1.7648748393716502,
          -2.571234216560921,
          -2.0435524105955944,
          -1.3857332655944266,
          -2.5538899985021546,
          -7,
          -7,
          -3.831677849191467,
          -3.4871175714494034,
          -3.2511513431753545,
          -2.9341953493478843,
          -1.951103557856843,
          -7,
          -7,
          -2.589238558862275,
          -2.7386814836620155,
          -7,
          -7,
          -2.945274567077948,
          -7,
          -7,
          -7,
          -3.8053649074664455,
          -3.4952667443878105,
          -3.1033563066696592,
          -2.933681925274947,
          -2.6884415275019733,
          -3.0267783286595296,
          -7,
          -3.64969175532189,
          -7,
          -3.511214701136388,
          -1.94485265185328,
          -3.280932298017133,
          -3.097187872570896,
          -7,
          -3.0369614078061686,
          -3.534660575828444,
          -2.7686809892349995,
          -3.3208383890175335,
          -7,
          -3.5872618496925344,
          -3.018522180256059,
          -7,
          -3.865340905624584,
          -7,
          -3.2206832779743455,
          -2.912859475162355,
          -3.407447560198671,
          -3.0111799202451612,
          -3.5750723257138124,
          -7,
          -2.324843714184909,
          -3.041326877978479,
          -7,
          -3.792181496149679,
          -3.5369370227046737,
          -3.5159400420933182,
          -7,
          -7,
          -1.5875405103060276,
          -7,
          -4.396129575309595,
          -7,
          -3.4420876295507603,
          -1.5496530045435668,
          -2.293646623934636,
          -1.7419816035046947,
          -1.6396649967000325,
          -2.561459171241916,
          -1.9956351945975501,
          -3.2692209815300104,
          -3.1855421548543754,
          -3.5546102852261643,
          -3.0931297224743295,
          -2.38778035944564,
          -2.251078922905486,
          -4.018991594705612,
          -7,
          -3.469822015978163,
          -7,
          -4.143046043337588,
          -7,
          -3.5486841714830053,
          -7,
          -3.1587393203027556,
          -3.527114111639805,
          -3.872272846224205,
          -3.816440167956139,
          -7,
          -2.9749336544629608,
          -3.9057958803678683,
          -7,
          -2.768268016451548,
          -2.443738372084082,
          -2.647955984765046,
          -7,
          -3.3185502512263594,
          -2.398474196294003,
          -2.9553440813219995,
          -3.507248513918787,
          -2.821316970591097,
          -7,
          -2.87306213165041,
          -0.8608732304564952,
          -2.806632128612864,
          -2.7413767385571397,
          -4.161479473484632,
          -7,
          -3.8192806469724814,
          -2.8720267099544015,
          -3.251638220448212,
          -3.4961682741749778,
          -3.8053649074664455,
          -2.899492196138132,
          -3.5746677663162267,
          -3.874191804679071,
          -7,
          -7,
          -7,
          -3.511749711344983,
          -7,
          -7,
          -3.0330214446829107,
          -2.432029162983926,
          -7,
          -3.797613730153076,
          -7,
          -7,
          -2.931775592908094,
          -2.9274986816932005,
          -7,
          -3.8361341494653747,
          -4.026574118150334,
          -2.7703987953402223,
          -3.0736816994762832,
          -7,
          -2.263318464658058,
          -3.801609488027319,
          -7,
          -2.8904045791498514,
          -2.33568073008468,
          -2.697479992631392,
          -3.137986732723532,
          -3.2130013815482696,
          -7,
          -7,
          -3.11634203918834,
          -2.891927534220675,
          -3.1500268879309865,
          -2.6043136389437773,
          -2.3661645491690666,
          -3.2010897317287084,
          -2.544008952645728,
          -2.8332746392905634,
          -3.3274270536683934,
          -2.4959664217689568,
          -2.1193066572342634,
          -2.3234068093635756,
          -7,
          -3.5138831856110926,
          -3.0826058726978984,
          -7,
          -3.0969100130080562,
          -7,
          -2.2752564951364582,
          -1.8964141077401302,
          -3.3792450689395857,
          -3.454133151696751,
          -3.091373812473584,
          -3.070250341710294,
          -2.771203913197322,
          -7,
          -3.2858168734035287,
          -7,
          -1.814273462760839,
          -3.207185391351969,
          -2.885587356189656,
          -1.6430552368565536,
          -1.863867864960782,
          -3.2307407859604305,
          -3.2865126055296376,
          -7,
          -3.063386978864393,
          -3.2339410683150467,
          -2.758385235390091,
          -7,
          -7,
          -3.792041310712082,
          -2.1146339877270752,
          -2.3711118615101006,
          -3.3427515672308834,
          -3.8313577854420675,
          -2.8808655382747417,
          -3.3362595520141936,
          -3.1986570869544226,
          -7,
          -3.1302131143806298,
          -3.3574266029612865,
          -3.548880562637515,
          -2.718283109929698,
          -2.930821728079435,
          -3.74449974079471,
          -2.4085008811994832,
          -3.8873204210410535,
          -7,
          -2.0548854710650257,
          -3.564835646603938,
          -2.536892500990388,
          -7,
          -3.1453828919748745,
          -3.809694358716924,
          -1.8364400847717912,
          -2.675485048073944,
          -2.610778418905969,
          -2.666132406127459,
          -3.8000981801747757,
          -7,
          -3.015254941970331,
          -3.513217600067939,
          -3.530711837981657,
          -3.3600250891893975,
          -2.0427788247172347,
          -3.039678449361962,
          -1.8966704821219622,
          -7,
          -7,
          -2.680026750383986,
          -3.3350431336731856,
          -7,
          -2.9996958874108395,
          -3.7173905643876477,
          -2.254213777108459,
          -3.0107890454131927,
          -2.9094490469812664,
          -2.624704142971265,
          -2.6910529586002814,
          -7,
          -3.6356680147894007,
          -2.906095497131669,
          -3.158436851222544,
          -2.8562335049184115,
          -3.6552825351772134,
          -3.060476121176391,
          -2.7829403934279635,
          -3.3152879462998093,
          -3.164518081003057,
          -3.9800033715837464,
          -3.707785618912686,
          -3.34908316877959,
          -2.779334077665609,
          -2.674955301826999,
          -7,
          -3.387711783284205,
          -3.722798396870905,
          -7,
          -2.796267368858326,
          -3.828079590556746,
          -3.580827260638217,
          -3.5836844714826976,
          -4.029018329546481,
          -3.8880671134074367,
          -3.9519443296839407,
          -3.8237349883987313,
          -3.3289399506281896,
          -3.092947575753602,
          -3.193653224907199,
          -3.0650815277143657,
          -3.720828841381453,
          -2.382042120106383,
          -1.7855294035898643,
          -2.4925910899380925,
          -3.587807143622317,
          -7,
          -2.6458666533498327,
          -3.1141103565318917,
          -3.472610197596045,
          -3.4445782233980897,
          -3.020018039073415,
          -2.831245910079074,
          -7,
          -2.9756943410739467,
          -3.6170702701898696,
          -7,
          -7,
          -4.468376873249617,
          -3.717420836722375,
          -7,
          -2.606179758384244,
          -2.975320719769701,
          -3.92592130988984,
          -7,
          -3.0734332064655683,
          -7,
          -2.917052562679025,
          -7,
          -4.41513534300341,
          -2.8002259615480365,
          -3.7461474853576635,
          -7,
          -3.7287108119954437,
          -3.9144489406985543,
          -3.9192284996576987,
          -3.9915361753000314,
          -3.2661336596046886,
          -4.0856116304716465,
          -2.973804948103079,
          -2.8369090241882997,
          -2.7208587017418626,
          -2.449777503300706,
          -3.2042918568738163,
          -3.9736819185039836,
          -3.7150988877405458,
          -7,
          -3.6857865089215553,
          -2.9407795229136404,
          -4.106156886966839,
          -7,
          -7,
          -7,
          -7,
          -4.03981055414835,
          -2.2590012368621273,
          -2.7915826961282115,
          -2.5889767978378466,
          -3.5085970462300686,
          -3.0407718208896495,
          -3.239377695152661,
          -3.215848976111454,
          -3.4149733479708178,
          -3.811306840081336,
          -3.0553400995441815,
          -7,
          -3.1448282738585607,
          -2.9157954276020663,
          -3.5289167002776547,
          -7,
          -2.034254941351962,
          -3.5957166199434245,
          -3.171935299284524,
          -7,
          -7,
          -2.0098793906010903,
          -7,
          -7,
          -7,
          -2.3552599055273786,
          -7,
          -3.5068566550233227,
          -7,
          -3.8076703012304836,
          -3.9568500834811964,
          -1.8873167550101948,
          -3.0781848457146452,
          -7,
          -3.932372282147914,
          -2.432182415639667,
          -7,
          -3.09402167763423,
          -7,
          -2.827545493174686,
          -2.6722826247889206,
          -7,
          -3.8085485512404054,
          -7,
          -3.022133674504637,
          -2.9450169861592435,
          -2.870273818567884,
          -2.6706516545283736,
          -3.152349508312726,
          -7,
          -2.627422757278291,
          -2.1302198775923924,
          -7,
          -7,
          -2.789674705127005,
          -2.8424652188889956,
          -7,
          -2.88030779314603,
          -7,
          -3.8085485512404054,
          -2.5771086551437348,
          -3.4214393902200495,
          -2.1964721921744053,
          -2.217230785080009,
          -7,
          -1.3121078748810506,
          -7,
          -7,
          -7,
          -4.068927611682072,
          -7,
          -3.2975416678181597,
          -2.525260820213098,
          -7,
          -3.095518042323151,
          -2.442844232397271,
          -1.9986504087043486,
          -3.3949329905627432,
          -3.2089785172762535,
          -3.5116828711013874,
          -3.4622482153549976,
          -3.0956342104345573,
          -3.85751341477669,
          -3.07240746953829,
          -3.7151673578484576,
          -7,
          -3.5521813388393357,
          -3.800235789327354,
          -7,
          -3.3433934428512173,
          -3.636688447953283,
          -3.2389864740813414,
          -3.236486876375591,
          -2.5829565081628103,
          -2.53386043964867,
          -3.0053735847160605,
          -3.311192092821401,
          -4.015820634262069,
          -3.0877307268865897,
          -7,
          -3.2768637426396046,
          -7,
          -2.8029019429227557,
          -3.5407047833107623,
          -3.3276449635986567,
          -7,
          -2.9246238275174004,
          -3.8492965408347266,
          -2.7286954435449196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0038194235289084,
          -7,
          -3.1922886125681202,
          -3.8228869478341507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.216429830876251,
          -7,
          -3.0650893162830104,
          -4.063520999689991,
          -7,
          -7,
          -7,
          -2.5468747110475065,
          -3.8257505813480277,
          -7,
          -3.292524215549357,
          -7,
          -7,
          -3.6602012013806817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8706964579892498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.296445794206396,
          -4.207497029999842,
          -7,
          -7,
          -7,
          -7,
          -3.336059277866349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9270470220473492,
          -3.6419200744131177,
          -7,
          -2.4743696437288834,
          -3.8570238335327254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.571108788363788,
          -7,
          -7,
          -7,
          -3.278982116865443,
          -7,
          -7,
          -2.5707551531682618,
          -7,
          -3.5240064455573727,
          -2.6646419755561257,
          -4.144639580353153,
          -7,
          -7,
          -3.205880729887537,
          -7,
          -3.735758537443739,
          -7,
          -7,
          -7,
          -7,
          -2.602679969280364,
          -3.5714917891142703,
          -7,
          -3.4811080594687196,
          -3.8623103099542706,
          -7,
          -7,
          -7,
          -3.3324384599156054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.767660393845374,
          -2.0363627019845945,
          -7,
          -3.5546102852261643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5267882040115675,
          -2.9022749204745018,
          -1.8477871785250382,
          -7,
          -7,
          -3.456416647252042,
          -7,
          -7,
          -7,
          -3.282848602834645,
          -7,
          -3.620760489994206,
          -3.1815577738627865,
          -3.460747541844197,
          -7,
          -2.9769304845704574,
          -2.573548450021623,
          -2.9146075677710805,
          -7,
          -7,
          -7,
          -1.5622928644564746,
          -7,
          -7,
          -3.231214647962601,
          -4.18130038026682,
          -7,
          -7,
          -3.17435059747938,
          -2.259401051009384,
          -3.190051417759206,
          -7,
          -3.406028944963615,
          -7,
          -7,
          -7,
          -7,
          -2.5945766905019516,
          -7,
          -3.080609309929619,
          -3.3418300569205104,
          -3.170848203643309,
          -7,
          -7,
          -3.7283537820212285,
          -3.0437551269686796,
          -3.7259660517527853,
          -2.028551378718816,
          -7,
          -7,
          -7,
          -4.697564962793849,
          -7,
          -7,
          -2.1333662609889323,
          -7,
          -7,
          -3.6230838133595475,
          -7,
          -7,
          -7,
          -2.867646018849769,
          -7,
          -7,
          -7,
          -7,
          -2.393867559040913,
          -7,
          -7,
          -4.185457157401926,
          -2.991373769787407,
          -7,
          -7,
          -7,
          -7,
          -2.7846172926328756,
          -7,
          -3.8900855267163252,
          -7,
          -7,
          -7,
          -4.554864538285933,
          -3.182414652434554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.463594402187,
          -3.934548947666147,
          -7,
          -3.287353772714747,
          -2.7965008158727054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5994096422975916,
          -7,
          -7,
          -7,
          -3.197831693328903,
          -2.2206337333245796,
          -1.9150343529019414,
          -1.3695723146231802,
          -1.312142404568052,
          -1.8657656639681313,
          -1.3340375609112185,
          -7,
          -2.763877031495655,
          -7,
          -7,
          -3.249361442065167,
          -3.2801228963023075,
          -3.7547304690237535,
          -7,
          -2.957563755312261,
          -7,
          -4.3625201722887965,
          -7,
          -7,
          -7,
          -3.1318751879725926,
          -2.210853365314893,
          -7,
          -2.64957822912025,
          -7,
          -3.5175257836338214,
          -7,
          -7,
          -7,
          -3.2965555060882235,
          -2.912168896059627,
          -7,
          -3.172894697752176,
          -2.952792443044092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.369929101915837,
          -7,
          -3.8632931129043135,
          -4.759605738236192,
          -7,
          -7,
          -7,
          -2.1960840270593827,
          -7,
          -7,
          -3.2024883170600935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.713131786506826,
          -7,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -2.301897717195208,
          -7,
          -7,
          -7,
          -3.465977368285823,
          -3.8515640822634887,
          -2.263318464658058,
          -7,
          -7,
          -7,
          -3.8596785766284483,
          -2.88930170250631,
          -2.5812346154111783,
          -7,
          -4.719853121294242,
          -7,
          -7,
          -7,
          -4.036229544086295,
          -7,
          -2.860808415686055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.814136565568487,
          -3.57275546515422,
          -7,
          -7,
          -7,
          -7,
          -2.738780558484369,
          -7,
          -7,
          -2.3220354274653374,
          -7,
          -3.577261953585815,
          -3.122379732069112,
          -3.511765624172576,
          -3.9475807493043225,
          -7,
          -7,
          -7,
          -3.334051440346892,
          -7,
          -7,
          -2.523876475638131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.42909119203056,
          -7,
          -7,
          -7,
          -7,
          -3.226084115975824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.716504163773217,
          -1.4621744228711595,
          -4.261233121576351,
          -3.2911638495122544,
          -4.319571579852526,
          -7,
          -3.0142204250828595,
          -4.721963044776573,
          -7,
          -7,
          -7,
          -7,
          -3.3507324517161297,
          -3.8529676910288186,
          -7,
          -3.4984484031739997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4755523319785775,
          -7,
          -7,
          -3.460167322009192,
          -3.9342964068194055,
          -4.294113356362043,
          -2.873984533887229,
          -7,
          -2.8721562727482928,
          -3.933942602741261,
          -3.2591267144555607,
          -3.3543796472007004,
          -2.7416905544137458,
          -7,
          -4.325905450354342,
          -7,
          -5.002252479920538,
          -3.291468753334798,
          -7,
          -3.163965080750694,
          -3.082118290577008,
          -7,
          -3.8564872128686307,
          -7,
          -4.787729611178186,
          -3.9962927185413215,
          -3.1464753323636017,
          -3.2932994029762894,
          -7,
          -7,
          -7,
          -7,
          -3.3189695689123093,
          -4.188506633818114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9910487764526765,
          -7,
          -2.5115932164835013,
          -7,
          -3.980721296481127,
          -4.028467731285911,
          -1.7525382585237885,
          -7,
          -4.349199794429999,
          -7,
          -3.1168566946868985,
          -7,
          -7,
          -4.457291339128507,
          -3.7913677900080844,
          -4.689823667987483,
          -7,
          -7,
          -3.5833121519830775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.394092538947562,
          -3.921111158696558,
          -5.406282081740148,
          -7,
          -7,
          -7,
          -4.960470777534299,
          -7,
          -5.407140964505215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.638514215690422,
          -3.1707895904463914,
          -4.903892689512359,
          -2.241532645817008,
          -7,
          -4.2496727637035345,
          -4.3588291816933245,
          -3.1899579507445543,
          -4.872435996539984,
          -7,
          -7,
          -4.317896266492956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1024597589212073,
          -7,
          -2.8889813672663376,
          -7,
          -2.688568121297955,
          -3.8851538250634543,
          -2.17242523816747,
          -7,
          -7,
          -7,
          -7,
          -4.026117701022133,
          -7,
          -7,
          -7,
          -3.0788795478889806,
          -7,
          -3.7520484478194387,
          -7,
          -7,
          -2.9425041061680806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.741939077729199,
          -4.607637281414817,
          -2.641317523344695,
          -3.9499612543414617,
          -7,
          -7,
          -3.985830489858392,
          -7,
          -7,
          -7,
          -7,
          -2.99563519459755,
          -7,
          -7,
          -7,
          -7,
          -3.163385026762188,
          -7,
          -3.140036410975282,
          -7,
          -3.305136318943639,
          -7,
          -2.5087948871576584,
          -3.921348270280974,
          -7,
          -3.653983907374069,
          -7,
          -7,
          -2.5835475348642203,
          -7,
          -7,
          -7,
          -7,
          -3.155626015396081,
          -7,
          -3.694956002249818,
          -2.3394514413064407,
          -7,
          -7,
          -7,
          -3.84248442441157,
          -7,
          -7,
          -3.8677031332700977,
          -7,
          -7,
          -7,
          -2.764365456468543,
          -7,
          -7,
          -4.3271545124094315,
          -7,
          -3.8109713998222077,
          -7,
          -3.2935098730581442,
          -3.749736315569061,
          -7,
          -7,
          -7,
          -7,
          -4.077803798076088,
          -7,
          -3.338257230246256,
          -3.5871494982543437,
          -3.337945698102355,
          -3.497620649781288,
          -3.7137984441929106,
          -4.558984415870133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.752893154884594,
          -3.7692295817365937,
          -7,
          -7,
          -3.36285930295868,
          -3.5674800954170154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0214255855185868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.141606530118251,
          -7,
          -7,
          -7,
          -7,
          -3.648067129448935,
          -7,
          -7,
          -4.512377507312931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.425371166438941,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.505133691971464,
          -7,
          -2.3636119798921444,
          -2.146128035678238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334694958867158,
          -7,
          -7,
          -2.6035380227553624,
          -4.5302590908126295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.803457115648414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6636067081245205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6780629049743454,
          -7,
          -7,
          -7,
          -3.6767688987361744,
          -3.4114513421379375,
          -3.5921767573958667,
          -3.7794521834040617,
          -7,
          -7,
          -7,
          -2.946943270697825,
          -7,
          -7,
          -1.5797835966168101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.647630695099381,
          -7,
          -3.0134692323091703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5179872030250783,
          -7,
          -7,
          -4.752757600507165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0602727791117927,
          -2.1492191126553797,
          -7,
          -7,
          -3.60916737430202,
          -4.374473389063976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1673468775856355,
          -3.9746805266282688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4423229557455746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5575072019056577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8402064977589974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3370597263205246,
          -7,
          -3.8654593226619647,
          -7,
          -7,
          -3.264055422284248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6110857334148725,
          -7,
          -7,
          -7,
          -7,
          -3.671662575364542,
          -7,
          -3.658393026279124,
          -7,
          -3.11293997608408,
          -3.031408464251624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.036928168015719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8402315949581087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.125025586819949,
          -5.411766970787628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9829492885744986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464415022426169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.801609488027319,
          -7,
          -7,
          -7,
          -7,
          -3.2650537885040145,
          -3.6281333875410833,
          -7,
          -7,
          -7,
          -7,
          -2.1063609088067503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6088824508987196,
          -2.946452265013073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6163179419637905,
          -7,
          -7,
          -7,
          -5.131233594589685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.224014811372864,
          -3.644143050509919,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7382254481425052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.383366482755039,
          -5.8751828488254665,
          -7,
          -7,
          -4.318755983130834,
          -7,
          -7,
          -7,
          -7,
          -3.5081255360831993,
          -3.7681198941847973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023005397249935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0678516605123525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277609214304091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7641948193584245,
          -2.9175055095525466,
          -7,
          -7,
          -7,
          -4.933866750067607,
          -7,
          -7,
          -7,
          -4.961629884931725,
          -4.201296961003463,
          -7,
          -7,
          -3.8061121101690913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.689561901807182,
          -5.487630391389559,
          -7,
          -7,
          -7,
          -7,
          -4.954411368906185,
          -7,
          -5.404984154791237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.896983418904129,
          -7,
          -7,
          -4.465313438107631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.164516429061985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.342422680822206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.11882666293329,
          -7,
          -7,
          -7,
          -7,
          -3.282773119305837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.695621748893251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.498034723687027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3054569007373225,
          -7,
          -7,
          -2.8379039445929424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.150991682923507,
          -7,
          -7,
          -4.300486787986029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.526390976036641,
          -7,
          -4.1541195255158465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.332620219565641,
          -7,
          -7,
          -7,
          -5.094429199555873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9609461957338317,
          -7,
          -7,
          -7,
          -5.140416900769118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3769417571467586,
          -7,
          -7,
          -2.9912260756924947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530635055505357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.959136831170374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.79309160017658,
          -7,
          -7,
          -7,
          -4.379396175194164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.964835582936749,
          -4.164293359314462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.270911639410481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.016490131620828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.558708570533166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6451235434214526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335939069031729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8337206904446335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.545059584694003,
          -7,
          -5.71271197970362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.815577748324267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1000257301078626,
          -7,
          -7,
          -7,
          -3.40705081480425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.653768697817702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.925106371852082,
          -3.8512583487190755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0644579892269186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0878996736256314,
          -7,
          -7,
          -7,
          -5.234641277637988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7093194383229315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.181543478219937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464042205438811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9196532823103643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.346687369807717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.627099462252875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.713280485299326,
          -7,
          -7,
          -7,
          -4.313339843884307,
          -2.9370562715711874,
          -3.484503208342262,
          -7,
          -3.8421930493708496,
          -2.347039444540915,
          -3.9230193850380344,
          -7,
          -7,
          -3.007064656378332,
          -2.772453976103078,
          -3.3270318130211587,
          -4.320437103682865,
          -7,
          -7,
          -4.3103533890449945,
          -2.178924267863949,
          -3.4415066124941145,
          -7,
          -3.2440826434308088,
          -2.2219937387619706,
          -3.8474081224923307,
          -3.838765160988825,
          -3.8318697742805017,
          -3.342639773794436,
          -3.374402075504582,
          -3.840273420400613,
          -2.8419288412102115,
          -3.4212336317086427,
          -7,
          -7,
          -4.016699138064971,
          -3.0620076908098435,
          -3.7123339658940004,
          -2.6114387921441513,
          -3.832657909760817,
          -3.869681431545861,
          -4.015715932006951,
          -2.8164860899367334,
          -4.012119835804513,
          -7,
          -2.77477334374225,
          -4.025940454660939,
          -1.568804204911912,
          -4.316117183498905,
          -4.324385356490427,
          -4.063239508171935,
          -1.9268149217388544,
          -4.035409724152798,
          -1.8416242299086962,
          -2.731761389693246,
          -1.7195311864510827,
          -2.6376564772518996,
          -4.317958924700952,
          -3.4767281437542463,
          -2.9573198968553407,
          -3.4775966502926194,
          -7,
          -7,
          -7,
          -3.4756089342953334,
          -1.3641291386301917,
          -2.0824464605830224,
          -4.312685006388759,
          -7,
          -1.5236235880551368,
          -4.309587587448228,
          -2.6539529402862674,
          -2.7201233354998613,
          -4.311986834619701,
          -4.354780498831271,
          -2.848226019879913,
          -4.311414767162359,
          -3.141939450396649,
          -7,
          -4.315025199312605,
          -0.6841387274968713,
          -2.850013469810422,
          -3.714036218347168,
          -4.007555758625101,
          -2.7213887838945316,
          -4.020133301096697,
          -2.85655897491841,
          -3.4667193716815987,
          -3.5595874668502234,
          -4.335277325031929,
          -2.0900399089956823,
          -2.988187224867644,
          -2.0138427557233443,
          -3.6118082472765156,
          -7,
          -3.2744849869352772,
          -3.035309640156801,
          -3.1727780146558526,
          -2.9439339740583517,
          -4.012541972775836,
          -2.70456025280453,
          -7,
          -4.309523709653114,
          -3.8319763626923518,
          -2.0570403495899465,
          -4.009280884255359,
          -2.950131090407851,
          -4.331062700600152,
          -1.6310910105078673,
          -1.953766780990477,
          -7,
          -3.837735703059909,
          -3.725258066359961,
          -3.5519376953648374,
          -2.643551368562945,
          -3.846708145456007,
          -7,
          -3.2649358217826854,
          -3.068427069462389,
          -3.606112535339159,
          -4.023190707213023,
          -3.3657749237888828,
          -2.79741513068051,
          -4.319418389047728,
          -2.6793143110270847,
          -7,
          -3.2673110910935783,
          -2.6823707425165573,
          -2.893225903113069,
          -3.601643592893338,
          -7,
          -4.320997416794221,
          -0.274868821090727,
          -2.896735218447365,
          -7,
          -4.309757882316366,
          -3.2741176721526,
          -7,
          -7,
          -4.309438524641924,
          -3.612847407359837,
          -4.309225488984801,
          -2.2721855340792434,
          -2.4974134646862063,
          -3.0018609189497134,
          -2.96177253611023,
          -7,
          -4.439616866317564,
          -7,
          -4.01311120759659,
          -4.3289297689479,
          -4.01871436480765,
          -2.509218919155219,
          -7,
          -4.31525642505321,
          -4.0206305611846895,
          -2.37123583538615,
          -7,
          -4.308393649976259,
          -3.7374113257013213,
          -2.550676688630637,
          -4.312092690393716,
          -3.2897713227931304,
          -3.380432353900823,
          -3.572716745902921,
          -3.092818079113849,
          -3.191670541584012,
          -2.579529548945393,
          -2.9364131997114797,
          -2.9954889428763822,
          -2.3852686044267117,
          -3.7144555024904737,
          -7,
          -7,
          -3.6233113280355895,
          -4.315676520348013,
          -4.314330782520869,
          -4.30999192878118,
          -2.932596742019587,
          -4.014541538950472,
          -3.059061993830848,
          -7,
          -2.469059274505463,
          -2.1014999941288774,
          -4.323726367155352,
          -2.7284243645797948,
          -2.522609521607993,
          -3.8541642908673475,
          -3.306561484735791,
          -3.010703688640537,
          -2.831989684404655,
          -7,
          -3.430437891529148,
          -3.0823903775817154,
          -4.317875378414559,
          -3.6120771120854864,
          -7,
          -2.555139811231624,
          -2.9419286319126137,
          -3.26030994579492,
          -7,
          -2.3465182625523116,
          -4.30903366750414,
          -2.537665967793588,
          -3.7170668969538765,
          -3.0109255813646993,
          -3.537105174669567,
          -3.619322944883176,
          -2.5402780373978247,
          -2.8976074572805417,
          -7,
          -2.4324999946754002,
          -3.350910791047725,
          -2.204444931778382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.01632285401379,
          -7,
          -4.018201022496291,
          -3.1258993255582284,
          -2.7114587737468,
          -3.181895533938723,
          -2.8525733868943464,
          -7,
          -3.3617907726863363,
          -3.172269243539273,
          -4.327747071252456,
          -4.309502414966703,
          -7,
          -3.498566524973976,
          -3.4318058760199377,
          -3.8574129138894935,
          -7,
          -7,
          -4.010956838955719,
          -4.314351841775663,
          -7,
          -7,
          -3.1595671932336202,
          -2.2852351456911983,
          -4.308713776639004,
          -4.008515007631455,
          -7,
          -7,
          -3.8444771757456815,
          -3.843087365838582,
          -7,
          -3.1170640446463893,
          -3.351901671294104,
          -3.5602853209988012,
          -3.113140836867081,
          -2.8904045791498514,
          -3.8596785766284483,
          -7,
          -7,
          -7,
          -3.1375321292876075,
          -1.986714434620068,
          -7,
          -2.5746252397019047,
          -3.7221195383899373,
          -3.8371674062278354,
          -4.31527743947181,
          -3.1719749686032896,
          -3.126114310736762,
          -1.3576684505145458,
          -2.8427825345659374,
          -3.1979450755719085,
          -2.04622810213454,
          -3.116503972397613,
          -4.311817411695856,
          -3.6307328928171967,
          -2.8004115598161072,
          -2.662526557433505,
          -7,
          -3.7128390329454333,
          -3.631078320874444,
          -3.8371252805687592,
          -3.158463011591568,
          -7,
          -3.0217994430119934,
          -2.93411571174413,
          -3.5502487419887805,
          -3.0993928573323,
          -2.9705894085233866,
          -2.4871524372774285,
          -2.1774572158356054,
          -7,
          -3.0490407234303634,
          -4.311245120878207,
          -4.022036380699923,
          -2.773109617523673,
          -3.259335008740741,
          -2.9424139568201904,
          -2.886001633574488,
          -3.336142736652067,
          -3.108684384591605,
          -2.91879769132346,
          -2.7326878976478954,
          -2.946334290791815,
          -2.3764969160525986,
          -7,
          -7,
          -4.307880955988253,
          -3.4541161920372,
          -2.527793227465292,
          -3.617503579279065,
          -4.019178624894263,
          -3.3104808914626753,
          -4.314583426205657,
          -3.196393337220726,
          -3.538406149594125,
          -2.507645627469406,
          -7,
          -3.1216624148598804,
          -2.5099831216476503,
          -3.6222347525184295,
          -3.2467636369419,
          -2.882102344676351,
          -2.925193438133817,
          -7,
          -2.5338255544562176,
          -2.9145287867320646,
          -2.618756433176055,
          -7,
          -3.0935658766580136,
          -7,
          -2.8904955374150134,
          -2.8228551350071545,
          -3.170296236636731,
          -3.0413532020469742,
          -7,
          -7,
          -2.902488538172861,
          -3.837609479125121,
          -4.3204163374561695,
          -3.8450153093764405,
          -3.6872970377689955,
          -4.015045239174416,
          -1.9860191759019852,
          -7,
          -7,
          -2.9147030098471265,
          -3.3178160068112277,
          -3.9841108210596157,
          -3.9054360671891235,
          -3.951288937277672,
          -3.0818271912583772,
          -3.66061254003405,
          -2.8393079489772797,
          -2.476232637385205,
          -3.690092664268553,
          -7,
          -3.5611447675441923,
          -3.443654067612905,
          -3.6454695755396407,
          -2.5711751665451406,
          -3.6153607781848502,
          -3.3949313708858924,
          -2.791219855377866,
          -3.8845829776955494,
          -3.402444091694104,
          -4.374253298101757,
          -3.4923083627475915,
          -3.742669031778443,
          -2.9529779993305736,
          -2.788221750502334,
          -4.138849827637302,
          -3.493365094127988,
          -3.643982882895379,
          -7,
          -2.702139548178527,
          -3.9334113556023538,
          -3.36639719186507,
          -3.570914245110417,
          -3.7720404001784864,
          -4.0384015690099515,
          -3.9034155857690864,
          -3.836434890986501,
          -3.1268076047048265,
          -3.847622007983925,
          -2.2955167940561765,
          -4.023273041822853,
          -3.2004856980008305,
          -2.0802478193290583,
          -2.8717149005099007,
          -2.5469358681060803,
          -2.9610834419339636,
          -3.3454325474991466,
          -2.393663044735808,
          -2.52647144918348,
          -4.061301656206044,
          -3.314984059305763,
          -2.322942123838025,
          -2.0659647007387014,
          -3.332680789215245,
          -2.2161844940573054,
          -2.799455426978892,
          -7,
          -3.13795345982699,
          -2.6545675678603096,
          -4.390210679109047,
          -7,
          -2.2651415915061928,
          -2.2402649767471305,
          -3.5080022347321136,
          -4.0135113334659,
          -2.7802119008576183,
          -3.8391427171910273,
          -2.1939996969068654,
          -3.510410948010177,
          -3.4378139588473458,
          -2.9000255678980835,
          -3.561172964752188,
          -7,
          -2.735119634081872,
          -2.446088626264233,
          -2.514314591877321,
          -3.299362001114019,
          -2.22222026594213,
          -2.9419087743655994,
          -2.190887275170587,
          -2.2766438601314345,
          -3.622731965164719,
          -1.9478840526363634,
          -2.4821408576705712,
          -3.7695434784017907,
          -2.6694283903107014,
          -7,
          -2.8317418336456384,
          -2.3226037128118584,
          -2.7046014348376373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6076627897985016,
          -1.728232000140194,
          -1.2639810792597537,
          -4.313360951244128,
          -2.940038099187222,
          -1.8514501231419902,
          -3.1726418447426044,
          -2.4239448191097,
          -2.6685765035393483,
          -1.9930020488667601,
          -4.009833178608563,
          -1.6729151549139654,
          -1.743161629859857,
          -2.813393320802116,
          -4.042516447524275,
          -3.1067791154359465,
          -2.592236256582886,
          -2.447211512591213,
          -4.325002252165038,
          -4.318730966888098,
          -2.6332832517813607,
          -4.319397574051826,
          -2.7763898245663734,
          -2.4953834355923443,
          -1.8005361037952268,
          -7,
          -2.137202378501745,
          -7,
          -3.8355003278673188,
          -2.9467601245381916,
          -1.979818970838536,
          -2.6625915062474363,
          -7,
          -3.1790344659320064,
          -1.5074491231009153,
          -7,
          -1.631065576393257,
          -7,
          -1.837937142458874,
          -1.2533958383431552,
          -7,
          -7,
          -3.2344199320783495,
          -1.8004462886496526,
          -2.7480469994089542,
          -3.318000691817921,
          -2.8026127711598994,
          -2.0404357682520624,
          -3.7180447335139175,
          -1.8943896435119245,
          -1.5172706109957594,
          -3.1033149257643444,
          -7,
          -1.5174322594135998,
          -1.592444509859282,
          -4.040127441781456,
          -2.118964758392623,
          -4.318355550225704,
          -7,
          -3.443591518448947,
          -2.164233055917399,
          -1.4326777481022428,
          -1.7978103057604256,
          -2.424679797081162,
          -3.332660600270635,
          -7,
          -7,
          -2.99536354504628,
          -2.5712023068131966,
          -4.3163059023458565,
          -1.672446796026297,
          -1.202763479095864,
          -3.427080188436359,
          -3.609658428263034,
          -1.1923525723728117,
          -1.347080670472507,
          -2.1003338756801364,
          -2.7542110775942783,
          -1.5571600787125126,
          -2.3010299956639813,
          -2.432434774521513,
          -2.703987002349199,
          -1.5883647214454781,
          -2.8317098425969034,
          -3.153936754460935,
          -3.628368492182033,
          -3.465042761781937,
          -4.308713776639004,
          -3.455179975545529,
          -3.7555509188304823,
          -2.2179850051081407,
          -2.975891136401793,
          -1.9000856192499211,
          -3.0870712059065353,
          -2.5949891349772547,
          -2.286513799829162,
          -3.212471712342394,
          -1.5558988438166708,
          -7,
          -1.9248123892178863,
          -7,
          -1.6287817789978616,
          -1.64742734474242,
          -3.4904676686713505,
          -4.309310715788175,
          -2.0432502611543164,
          -2.3830927975696685,
          -1.4750142282715528,
          -2.564209087043202,
          -7,
          -7,
          -3.8319763626923518,
          -4.311669112400611,
          -3.8332958902132748,
          -3.8356060290584613,
          -2.5080057059156724,
          -4.033544376090948,
          -2.8079725242641853,
          -2.853949830834142,
          -7,
          -3.312811826212088,
          -3.361580948311831,
          -3.1452378543373385,
          -4.017346419558815,
          -2.223798690700624,
          -2.9903590390407087,
          -2.247772101653081,
          -2.755197064693086,
          -7,
          -3.5422027824340283,
          -4.008238108813141,
          -3.088527756680114,
          -3.141763230275788,
          -7,
          -2.2304147438003934,
          -3.3671073265819653,
          -3.2064937513760277,
          -2.9857444809540734,
          -4.053136089367437,
          -2.313906259830001,
          -3.70922754733432,
          -3.4092143375767625,
          -3.0439317931257013,
          -4.009110806132213,
          -2.3268387244988404,
          -2.7879662326772423,
          -4.324138352655017,
          -7,
          -3.3140779917792127,
          -7,
          -7,
          -7,
          -2.81424759573192,
          -7,
          -2.4375920322539613,
          -7,
          -7,
          -3.3505575797661513,
          -7,
          -7,
          -3.2920344359947364,
          -3.3857339134175715,
          -2.94423584379348,
          -7,
          -7,
          -7,
          -7,
          -2.958324931644053,
          -3.159811490345912,
          -7,
          -7,
          -1.9271173340484586,
          -3.1595602258120605,
          -7,
          -7,
          -7,
          -7,
          -2.3890049062287417,
          -7,
          -4.572679959416505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6418705454763125,
          -7,
          -3.5577477416414682,
          -2.4795958738475177,
          -4.191242915636388,
          -7,
          -7,
          -2.3626081204867257,
          -7,
          -2.8526324579115143,
          -7,
          -3.0948203803548,
          -7,
          -7,
          -2.789298611159441,
          -2.456180161450073,
          -2.5707551531682618,
          -2.4630994157880113,
          -3.0993928573323,
          -7,
          -7,
          -2.9122220565324155,
          -3.0824263008607717,
          -2.2798072880412437,
          -7,
          -2.7991107032021714,
          -3.366236123718293,
          -3.7013952690139202,
          -7,
          -7,
          -7,
          -2.8862650590297565,
          -7,
          -3.8285310066451013,
          -3.1474444325481796,
          -7,
          -7,
          -2.873310911959824,
          -7,
          -2.7097543943577977,
          -7,
          -7,
          -3.46987108602871,
          -2.380986075961567,
          -2.4740080192955194,
          -3.2400497721126476,
          -3.613630434925241,
          -3.0670708560453703,
          -3.647969458362972,
          -3.382827209736365,
          -7,
          -7,
          -3.1998313305233927,
          -3.6800634274819486,
          -3.2932520331478248,
          -7,
          -7,
          -7,
          -2.890840019780741,
          -3.573103783163991,
          -3.0135955235372895,
          -7,
          -3.8878703775119305,
          -7,
          -7,
          -7,
          -3.030275802889288,
          -7,
          -3.570659670021534,
          -2.9720484774455382,
          -2.346587664800529,
          -2.2414907518037217,
          -3.353916230920363,
          -3.3087777736647213,
          -3.4214393902200495,
          -7,
          -3.8059593778018046,
          -2.7890516223748403,
          -7,
          -7,
          -7,
          -3.448551739201578,
          -7,
          -7,
          -2.9001275963692335,
          -7,
          -7,
          -7,
          -7,
          -2.8195439355418688,
          -3.6148972160331345,
          -2.728678366850914,
          -7,
          -7,
          -2.911772031594504,
          -2.3514708097996033,
          -7,
          -7,
          -3.4887445547013427,
          -7,
          -7,
          -7,
          -2.5770319856260313,
          -2.768884649356367,
          -7,
          -3.524331200288652,
          -3.4938482527122763,
          -2.8343500464810347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1041455505540085,
          -3.3025473724874854,
          -7,
          -7,
          -7,
          -3.478674695025181,
          -7,
          -7,
          -3.510813010512496,
          -7,
          -7,
          -2.0851198741382158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2215833091861974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6629825636306528,
          -7,
          -4.309715314859149,
          -7,
          -7,
          -2.6355279551955864,
          -2.2398355349224595,
          -2.7417244523322424,
          -2.758491349630627,
          -2.7518946880437474,
          -2.9639058261187046,
          -7,
          -7,
          -7,
          -7,
          -3.1457400995364067,
          -7,
          -3.7748817658187965,
          -7,
          -4.011401259924744,
          -7,
          -3.8903837546984503,
          -7,
          -3.6434197741427568,
          -7,
          -3.1488493429592204,
          -7,
          -3.4712917110589387,
          -3.0126263509540503,
          -7,
          -3.8361341494653747,
          -7,
          -7,
          -3.272189831450441,
          -2.746054608250968,
          -2.8120387480202664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.186270685219292,
          -3.7114697818743276,
          -3.217630146700358,
          -4.8689801249675995,
          -7,
          -7,
          -3.046300019652969,
          -2.5185139398778875,
          -7,
          -3.2778383330020473,
          -3.5390760987927767,
          -2.7800291273373383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.837275150949137,
          -7,
          -7,
          -7,
          -7,
          -2.6722826247889206,
          -3.3602146132953523,
          -7,
          -7,
          -7,
          -3.5043349118024643,
          -1.9780242591477941,
          -2.33568073008468,
          -2.88930170250631,
          -3.2650537885040145,
          -7,
          -3.1375321292876075,
          -7,
          -1.8982917926790133,
          -7,
          -3.8768855992492965,
          -3.395501124305626,
          -7,
          -2.354535264225396,
          -4.04688519083771,
          -7,
          -2.8140393908849854,
          -3.1148110738380637,
          -7,
          -3.4619484952037616,
          -7,
          -7,
          -7,
          -3.6223176608338443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.700126581535961,
          -3.243534101832062,
          -1.242762218583721,
          -3.036451451240427,
          -3.1293675957229854,
          -3.6072405038317426,
          -3.4658288153574364,
          -3.905583203308676,
          -2.8803848005903028,
          -7,
          -2.8663506427038543,
          -7,
          -7,
          -3.413634997198556,
          -2.2717049714930866,
          -1.9978230807457253,
          -2.2701934281564258,
          -7,
          -7,
          -7,
          -2.4768799129619077,
          -3.6860682305506227,
          -3.339053735709139,
          -7,
          -7,
          -7,
          -2.9997517607923823,
          -2.891218767889852,
          -7,
          -7,
          -7,
          -3.305136318943639,
          -2.48957499641369,
          -3.326949994165999,
          -2.719952447254438,
          -7,
          -7,
          -3.7384634394619525,
          -7,
          -3.3460386700879425,
          -2.8526155200794925,
          -3.889187878462289,
          -7,
          -3.3985765072605454,
          -4.1789646208794,
          -2.958145631642097,
          -7,
          -7,
          -7,
          -2.9776321652459994,
          -7,
          -3.516997846195275,
          -3.0565237240791006,
          -7,
          -7,
          -2.3465830642477576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.355603430234352,
          -7,
          -7,
          -2.985340919887817,
          -3.878234468675044,
          -7,
          -3.7418603940652635,
          -4.422499557616591,
          -2.8902987339959663,
          -3.3450304728916596,
          -3.6047335137224517,
          -2.5758328284484184,
          -2.885764952032237,
          -7,
          -4.331407049219782,
          -3.775197678221991,
          -4.049105987818543,
          -3.1038809318054197,
          -7,
          -3.6439100599024514,
          -3.1362908663453632,
          -7,
          -3.861892690391446,
          -7,
          -4.436007072111521,
          -4.303239268651996,
          -3.116337117195697,
          -3.669967369908504,
          -7,
          -4.068371418032643,
          -7,
          -7,
          -2.7528020888068068,
          -3.894952635024377,
          -3.843766528040535,
          -4.0484029561527395,
          -4.22768107275287,
          -7,
          -4.127590677007958,
          -3.9463539972262747,
          -3.1493950828692556,
          -7,
          -2.8782857909806667,
          -7,
          -3.9039667381715213,
          -3.2443694472721205,
          -2.953082843912086,
          -2.684920130428604,
          -3.399865929708076,
          -3.5509617522981762,
          -3.1968265991549494,
          -7,
          -7,
          -4.461363445295965,
          -3.305673745669693,
          -2.9277773123297144,
          -7,
          -3.058775141896555,
          -3.2971036501492565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5347174140748496,
          -3.3754877506331518,
          -5.1054786759881114,
          -7,
          -7,
          -7,
          -3.882467614895371,
          -7,
          -4.453330233708015,
          -3.0419187839286823,
          -7,
          -3.257438566859814,
          -3.8708718950677428,
          -7,
          -7,
          -3.4243098202457563,
          -2.54602416180365,
          -7,
          -3.26143590310203,
          -3.505163549810412,
          -7,
          -2.725662258356222,
          -4.059042482306292,
          -7,
          -4.308657529042319,
          -7,
          -3.7169210731667612,
          -3.542348146022223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4720886863444194,
          -7,
          -2.4381466362467488,
          -7,
          -2.7268629897004635,
          -2.7029734397201044,
          -2.969532392033345,
          -7,
          -7,
          -2.6054318104391205,
          -7,
          -3.5271752239289236,
          -2.9546444479056855,
          -3.3560258571931225,
          -7,
          -2.573466689278932,
          -3.530711837981657,
          -3.471144965160633,
          -7,
          -7,
          -2.8202611850556862,
          -7,
          -7,
          -3.4927603890268375,
          -7,
          -7,
          -3.4613859617950706,
          -7,
          -7,
          -3.911466567282492,
          -2.6346683329870553,
          -3.7554867957317724,
          -7,
          -7,
          -2.9969929818907057,
          -7,
          -7,
          -7,
          -3.4658288153574364,
          -2.8029560678922834,
          -7,
          -3.2884728005997825,
          -7,
          -7,
          -2.9395905594871645,
          -3.342422680822206,
          -2.781755374652469,
          -7,
          -7,
          -3.5017437296279943,
          -1.990621349001281,
          -7,
          -7,
          -3.3780343224573315,
          -3.6605809124272994,
          -7,
          -2.5386479834077615,
          -7,
          -7,
          -3.183933830133716,
          -7,
          -2.5628942100918968,
          -3.6216954623292787,
          -7,
          -2.8615344108590377,
          -7,
          -7,
          -7,
          -3.859018143888894,
          -7,
          -7,
          -3.883320678382975,
          -3.445136968713304,
          -7,
          -3.5746677663162267,
          -2.093822918082407,
          -7,
          -7,
          -3.3780747351016545,
          -3.3229425163530153,
          -3.8287243271387914,
          -7,
          -2.8253539818184996,
          -2.9912260756924947,
          -7,
          -3.4219328132785085,
          -7,
          -7,
          -4.082677680648112,
          -7,
          -3.087603973687808,
          -7,
          -2.248686239706898,
          -2.930567009900929,
          -3.721288378818099,
          -3.5205788014860047,
          -3.468125695050418,
          -3.611404637711593,
          -7,
          -3.4886916983169405,
          -7,
          -7,
          -3.4719514546809824,
          -7,
          -7,
          -7,
          -7,
          -3.018550716122285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8403342502181927,
          -3.174786417367337,
          -7,
          -7,
          -3.354876422516234,
          -7,
          -3.3209766773428235,
          -7,
          -3.3428173146357327,
          -7,
          -7,
          -3.4507724103773856,
          -3.850217241798389,
          -7,
          -7,
          -7,
          -3.372451701409366,
          -3.041590046889367,
          -7,
          -3.670709595223797,
          -3.3727279408855955,
          -7,
          -3.668012971641832,
          -7,
          -3.284092190642834,
          -7,
          -7,
          -7,
          -7,
          -3.4627722284106115,
          -7,
          -7,
          -7,
          -7,
          -4.530583859645118,
          -4.530443039902961,
          -3.2999172885064594,
          -3.3020634079121143,
          -3.546480969539267,
          -2.124888234313702,
          -4.231953569198981,
          -4.536583691516737,
          -2.8529254216064333,
          -2.382402216128515,
          -7,
          -3.833835315303057,
          -2.4931249127957797,
          -1.5055301535015506,
          -2.9384196457931933,
          -4.537214438544131,
          -7,
          -7,
          -2.7165683297355256,
          -1.8968065290910827,
          -4.012710712741787,
          -7,
          -1.8338594232497616,
          -2.1205424924463205,
          -3.6364878963533656,
          -3.932372282147914,
          -3.575905941553608,
          -3.1032293300163634,
          -3.2196967711811264,
          -7,
          -3.1960135401118857,
          -3.7614767795447017,
          -3.8328664197968454,
          -3.8330450630415167,
          -4.234542591311529,
          -3.549885675770413,
          -4.056460170339044,
          -3.3319034313985325,
          -4.530826986248976,
          -3.0756321088257814,
          -2.6881527555915663,
          -2.7286682272461387,
          -7,
          -3.6909424754242903,
          -2.090090905872992,
          -3.4269739619520005,
          -2.2093176791872278,
          -7,
          -3.3087652259715576,
          -3.7861004389479858,
          -3.286044585480999,
          -2.320196054852768,
          -1.923022686459233,
          -3.5178793826491708,
          -1.725330154414223,
          -2.907608762375779,
          -3.6324446377322426,
          -2.6851864554300033,
          -3.143687231570321,
          -3.140193678578631,
          -3.047626533023953,
          -4.238836151492433,
          -3.929929560084588,
          -3.0052183765659297,
          -2.820846274389542,
          -3.0114083105604443,
          -3.833453114731084,
          -7,
          -2.558405508119852,
          -4.229605059841376,
          -2.9656831619252855,
          -3.0713526184134943,
          -4.532104361451173,
          -2.876013254340755,
          -1.6657036520711483,
          -4.230704313612569,
          -2.8800956594900637,
          -4.529725430610816,
          -4.232881807330064,
          -2.2925128983786878,
          -1.7879110876728,
          -3.3582141279022437,
          -4.052911867935484,
          -4.258385826696981,
          -3.935545050823815,
          -3.5632555734352525,
          -2.954289584880475,
          -3.945788525546071,
          -7,
          -1.7864002085937734,
          -2.7334097090783644,
          -2.1809235145491312,
          -3.9293422787484373,
          -7,
          -3.557735717818272,
          -2.966709712411367,
          -3.2323304321038173,
          -3.0660695600482564,
          -4.232029937620133,
          -2.3977377503944584,
          -3.5839289135634917,
          -4.530622257106078,
          -4.22936182573706,
          -2.5294772052540186,
          -4.531121115412728,
          -2.7679948007976636,
          -2.9745988142431106,
          -2.2195961677813676,
          -2.1301187370058776,
          -3.21398550838652,
          -3.7556081017156715,
          -3.541254649786259,
          -3.5429996075770545,
          -2.392545351176965,
          -4.539327063539375,
          -7,
          -3.4725614360755417,
          -3.33724778856359,
          -3.0579310756823244,
          -4.2384851963088765,
          -2.670074638614735,
          -2.198959143862575,
          -4.235541071563642,
          -4.129313856382213,
          -4.537164012479412,
          -3.1116446237844477,
          -3.8424969075458146,
          -3.258098269990316,
          -2.8571352559701793,
          -4.5319895514125506,
          -3.5373278757870126,
          -1.7976661590155651,
          -2.2603966616104936,
          -7,
          -4.053590583261995,
          -1.9114709525356064,
          -7,
          -4.529635646019073,
          -3.831498642552911,
          -2.7983564643068126,
          -3.450980017314784,
          -3.213330796493227,
          -3.227103889576614,
          -2.332548626359836,
          -1.5884147590184967,
          -7,
          -3.1356414163866684,
          -4.5309293146403204,
          -4.056256735850139,
          -3.9402549330205634,
          -3.697490887171057,
          -2.6780086500388114,
          -7,
          -4.2330215069876935,
          -3.3915273813591287,
          -2.6478174818886373,
          -7,
          -7,
          -2.5781954107484224,
          -3.3129485511971453,
          -7,
          -2.1276719188204827,
          -3.847041804641579,
          -3.7108182495386917,
          -3.9524897355097743,
          -3.9460221791926338,
          -3.436650225403725,
          -7,
          -3.6908160579809155,
          -1.648171710726918,
          -7,
          -7,
          -7,
          -4.538435481499883,
          -7,
          -4.23246243853121,
          -7,
          -2.3344956371018633,
          -2.889747230701509,
          -3.1760002544872328,
          -7,
          -2.9851906245285953,
          -1.90104708326116,
          -3.260008587828519,
          -2.4459245638311797,
          -2.6510677301830268,
          -3.200937507389536,
          -2.820687873247529,
          -3.590891349601164,
          -3.4339543652562603,
          -3.696768142830307,
          -3.846312365300436,
          -2.7119804733019435,
          -3.6904112746987385,
          -3.677766590466052,
          -7,
          -2.7015782636070647,
          -3.086617532159259,
          -2.662970206395096,
          -7,
          -2.2924108586634353,
          -4.22927217882129,
          -2.4632799957617206,
          -3.390038860415928,
          -3.0131719315312613,
          -3.75592564737852,
          -3.3895584181453198,
          -2.918052655796212,
          -3.2736103808338557,
          -7,
          -2.997920064775138,
          -2.7705497211846604,
          -2.384981373841525,
          -7,
          -4.053180919765609,
          -3.4548067623303504,
          -3.4518759451856647,
          -3.8336060353248835,
          -4.234314768012676,
          -7,
          -4.059336177389288,
          -2.7546833748650728,
          -3.108646659130256,
          -2.473528809833997,
          -2.7542033142551516,
          -4.529763904040117,
          -3.7564712833861256,
          -3.1740218642682643,
          -2.1722768301979376,
          -7,
          -3.4178547815685354,
          -2.95961615525994,
          -2.6871324357528006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.546863330761307,
          -1.9503113239127658,
          -4.530135638245461,
          -3.9285238683171553,
          -7,
          -7,
          -3.13942567294585,
          -3.3062736131041426,
          -4.2288749484642025,
          -3.838974954955468,
          -3.8048433685402374,
          -3.3175102892089123,
          -1.3976434607042825,
          -2.697479992631392,
          -2.5812346154111783,
          -3.6281333875410833,
          -7,
          -1.986714434620068,
          -1.8982917926790133,
          -7,
          -4.538309759381733,
          -2.6865129952104003,
          -2.6344898655257043,
          -2.7612140831684076,
          -3.135539711053947,
          -2.189955918629514,
          -2.841381819328237,
          -1.5777708887153012,
          -2.539618543181053,
          -3.049174935762869,
          -2.91017749765366,
          -2.9346625431544537,
          -7,
          -3.9408276510144487,
          -3.958301029253673,
          -3.4440207612473874,
          -7,
          -4.232881807330064,
          -7,
          -7,
          -2.965486399076146,
          -3.626994396483222,
          -2.5497509785395267,
          -2.8291480838234775,
          -3.587748370340144,
          -3.2572344557135176,
          -3.025702979917565,
          -2.434341118152189,
          -2.2667572593256806,
          -4.532537814560151,
          -2.544001861100848,
          -4.531657707374614,
          -3.5843940517791273,
          -2.7012294903811234,
          -3.0854628196699045,
          -2.386854499075695,
          -2.763499300431483,
          -3.7522570347660578,
          -3.8499841820942704,
          -3.787779170797312,
          -2.429788971125811,
          -2.374530376424795,
          -2.631902814634904,
          -4.053219342138294,
          -7,
          -7,
          -2.6772396187440677,
          -2.7044287918270453,
          -7,
          -7,
          -3.3259741999930115,
          -3.533441574084827,
          -2.743350500752125,
          -2.2310903252489624,
          -2.7511205403423413,
          -4.0606097136919574,
          -3.309993180027564,
          -3.672271079163263,
          -3.9356457947525647,
          -2.2094066004154516,
          -1.9215443238125294,
          -2.2608270533987813,
          -7,
          -3.3939917506730426,
          -2.741679904990016,
          -2.552048459343581,
          -7,
          -4.539790966345741,
          -4.532919914252143,
          -3.311471301200697,
          -3.0281644194244697,
          -2.4547206774916206,
          -3.135548513418428,
          -4.531121115412728,
          -7,
          -2.8734538154104348,
          -7,
          -7,
          -4.538297185167974,
          -3.9763155826188763,
          -7,
          -2.0016984553595427,
          -7,
          -4.530532657749054,
          -2.1556565611703453,
          -2.7920671872686325,
          -3.8716980023521868,
          -2.591551523290097,
          -3.2302751688326863,
          -2.3725591487520004,
          -2.3514033420374587,
          -2.4804176233488913,
          -1.2021624626183571,
          -2.005302224004762,
          -2.5495520633853173,
          -3.5248178775073047,
          -2.8388338627535266,
          -3.0815600488549695,
          -2.0258996031849703,
          -2.687799594320013,
          -2.731680685657109,
          -2.0961008326833244,
          -3.867261193187285,
          -3.0594345017074778,
          -7,
          -2.9972281888728,
          -3.416781921212604,
          -2.248090400539062,
          -2.142461959498398,
          -7,
          -3.077252254231666,
          -3.064395586111371,
          -3.5107521158725525,
          -2.0148522278951115,
          -3.1478762882177977,
          -2.7703843143959808,
          -3.9582691573533264,
          -3.9915538885915707,
          -4.071697945221614,
          -4.658659967620744,
          -4.135524877036065,
          -2.9035339248279906,
          -2.6862071244824106,
          -1.1875312483580989,
          -3.761313781974698,
          -2.2357912707484835,
          -3.0135839120839165,
          -2.9231276609444166,
          -1.6781075804207748,
          -2.212115371138457,
          -3.0078818364351347,
          -2.074214113604477,
          -3.5221933557442147,
          -4.563148711095859,
          -3.4053890531697864,
          -2.1608163787942525,
          -2.319807004048228,
          -7,
          -2.307070834815396,
          -2.869459892616723,
          -4.532053338514362,
          -2.396442136180449,
          -4.057323705369284,
          -7,
          -4.539703238947825,
          -3.000950428851235,
          -2.0575039051303508,
          -3.2594046528982172,
          -7,
          -4.106428894793411,
          -7,
          -3.2724499385486108,
          -4.596201102454085,
          -3.5143092296787004,
          -2.877688023441787,
          -4.397592434038117,
          -4.053820849274466,
          -3.694373832632661,
          -3.3665307092379146,
          -3.3604271516917166,
          -2.6968803716827625,
          -2.291692966600889,
          -3.369521437296432,
          -2.2737798138314833,
          -2.6751942746956026,
          -4.538083367813495,
          -2.1090686261873266,
          -3.321521198841677,
          -3.4896186879579,
          -3.390977543124353,
          -7,
          -2.908648169194429,
          -3.1362683085718692,
          -3.5795794628965285,
          -4.231444102917431,
          -7,
          -7,
          -7,
          -3.887763540692103,
          -1.4569662182585454,
          -2.870647712887689,
          -1.575003900577211,
          -4.055760464687735,
          -2.9794499342929743,
          -1.8337843746564788,
          -2.1934188358195805,
          -3.7715262393269122,
          -4.056053206022728,
          -2.103272957302832,
          -3.9293167267534956,
          -2.488796268163124,
          -2.4965342957637975,
          -3.39039253072292,
          -3.7731401279444228,
          -2.6039745230837372,
          -3.3743694711197056,
          -2.733942048385829,
          -4.238936372332732,
          -3.757901904775561,
          -2.7684613836716037,
          -7,
          -3.307231680910892,
          -3.0024129251889913,
          -2.6775951034242316,
          -7,
          -2.0569250609496317,
          -7,
          -2.929482787854236,
          -2.3664980284404695,
          -1.9610176464287086,
          -1.7901419060922004,
          -4.530148450992933,
          -3.5173038881240966,
          -2.214217852914229,
          -4.062581984228163,
          -2.7668324495485024,
          -7,
          -3.0819181438484713,
          -1.6038331880566845,
          -7,
          -3.6294350851202672,
          -7,
          -3.182278161831841,
          -2.4829650044030926,
          -3.6326976567506746,
          -2.863966883310938,
          -2.9721027186202433,
          -3.934952707817858,
          -2.9036078703683783,
          -1.6733169604664826,
          -3.2757719001649312,
          -7,
          -2.515554531259106,
          -2.7245607930040894,
          -3.850866695456682,
          -1.0294141960937242,
          -3.933816174257383,
          -7,
          -2.844161141324878,
          -2.7716364679076344,
          -1.5860465135153958,
          -2.6953137219358365,
          -2.487021447340703,
          -3.067058450998685,
          -3.934649922900711,
          -3.8292501529183816,
          -7,
          -3.2524006351067714,
          -3.580265878156548,
          -2.869097204551567,
          -2.1911946670584164,
          -2.9742253132466328,
          -4.530186886967461,
          -2.282174309626252,
          -1.35109713021616,
          -2.7042432949819815,
          -3.1378043403467784,
          -2.26713900887448,
          -3.112844295431148,
          -2.8644439099992676,
          -3.587935348636356,
          -1.80294087559935,
          -2.325794612183868,
          -3.698162707576105,
          -3.84244697285584,
          -4.053974292150365,
          -4.530135638245461,
          -2.740726384592418,
          -2.7954365110794464,
          -2.7049071715672994,
          -2.2857992018968964,
          -1.2378704566780478,
          -2.9590658658204045,
          -2.0343471972167597,
          -2.655736154949934,
          -2.846543280888438,
          -2.5979843300652896,
          -4.536293239983433,
          -3.0991378037792234,
          -7,
          -2.7072017786784093,
          -2.5698327279788904,
          -2.857753385075089,
          -4.530494252365142,
          -3.0839842431054527,
          -2.876807514113195,
          -1.9996202059382764,
          -4.538410339987667,
          -4.534711293390327,
          -7,
          -4.22936182573706,
          -4.531912994521574,
          -4.230155034520514,
          -3.4531398960347057,
          -1.2729106902546903,
          -4.545875904696417,
          -3.345177616542704,
          -4.234390722392193,
          -3.457314067737995,
          -3.9306943876645355,
          -3.455162210758403,
          -7,
          -4.535989952876927,
          -2.9979321862561354,
          -3.5450472044011843,
          -3.084895978565494,
          -2.920567344816164,
          -7,
          -4.060118394661378,
          -7,
          -3.0095453179062304,
          -4.058830772372511,
          -7,
          -3.0056228426882443,
          -3.7596930204516097,
          -3.3910611905654067,
          -3.1674473082034846,
          -3.0257514993660317,
          -3.8572601079850797,
          -4.230704313612569,
          -4.055301864347441,
          -3.8536617149080574,
          -4.531018832208792,
          -3.010299956639812,
          -3.5449109978822997,
          -7,
          -4.228644131738731,
          -3.029789470831856,
          -7,
          -7,
          -7,
          -2.9867717342662448,
          -7,
          -7,
          -7,
          -7,
          -4.427423892550001,
          -7,
          -7,
          -7,
          -7,
          -3.743875442427706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.34551095769695,
          -2.6487393784940823,
          -2.554489160003819,
          -7,
          -3.928756528158202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0670708560453703,
          -3.0346343538000164,
          -7,
          -7,
          -7,
          -7,
          -2.767341422368662,
          -2.709269960975831,
          -7,
          -7,
          -3.1172712956557644,
          -7,
          -3.041295537721137,
          -7,
          -7,
          -7,
          -7,
          -3.196636681829914,
          -3.042181594515766,
          -7,
          -7,
          -2.921166050637739,
          -7,
          -3.796237995678362,
          -7,
          -3.320198232105004,
          -7,
          -7,
          -3.142389466118836,
          -2.791690649020118,
          -7,
          -7,
          -7,
          -7,
          -3.12515582958053,
          -7,
          -4.154880244718762,
          -2.670709595223797,
          -7,
          -7,
          -7,
          -3.4583356259919475,
          -2.5846138761717827,
          -7,
          -7,
          -5.126537252055469,
          -7,
          -7,
          -7,
          -7,
          -3.5945582800022815,
          -7,
          -3.044147620878723,
          -7,
          -7,
          -3.1290450598879582,
          -2.935759103745312,
          -7,
          -3.034828915655837,
          -7,
          -4.152043602487651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4396484295634737,
          -3.3196264841556395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.989004615698537,
          -2.918554530550274,
          -3.1349735400059155,
          -3.2617385473525378,
          -3.663795122219408,
          -3.3840306652405143,
          -7,
          -7,
          -2.9156636035057732,
          -7,
          -3.311418300755367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.17435059747938,
          -3.337715911243109,
          -4.456024233422963,
          -3.100370545117563,
          -7,
          -7,
          -4.296450183213849,
          -7,
          -7,
          -7,
          -2.952792443044092,
          -7,
          -3.3524826673431667,
          -7,
          -7,
          -7,
          -4.374289987675311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.741663622514662,
          -3.755951041004132,
          -3.8634715656455874,
          -3.7136585162083566,
          -7,
          -7,
          -7,
          -7,
          -2.9344984512435675,
          -7,
          -3.8478193472952396,
          -7,
          -7,
          -7,
          -3.4666081519579373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6059204121412005,
          -2.8312296938670634,
          -2.639486489268586,
          -2.3364041370383783,
          -2.351538641815657,
          -7,
          -3.620166685469373,
          -2.5732585015417953,
          -2.412740466538526,
          -7,
          -1.9075378113452577,
          -3.0338256939533106,
          -7,
          -7,
          -3.09457094350807,
          -7,
          -7,
          -7,
          -7,
          -3.3284238423631103,
          -7,
          -7,
          -3.1443666098609677,
          -7,
          -3.4308809464528913,
          -7,
          -3.0392157659039505,
          -7,
          -2.991447598003803,
          -3.663795122219408,
          -7,
          -3.6959192528313998,
          -7,
          -7,
          -7,
          -7,
          -2.502882116864084,
          -7,
          -7,
          -7,
          -7,
          -2.992995098431342,
          -3.029789470831856,
          -7,
          -3.1659117300536566,
          -3.4095950193968156,
          -7,
          -3.138776215729349,
          -7,
          -3.8731461513282555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.317436496535099,
          -7,
          -5.412225275871112,
          -7,
          -3.04688519083771,
          -3.0923696996291206,
          -7,
          -7,
          -7,
          -3.392696953259666,
          -7,
          -1.2516743529397594,
          -2.5532760461370994,
          -2.8603380065709936,
          -2.1751250862836606,
          -2.7058637122839193,
          -2.569373909615046,
          -2.468839448857906,
          -2.234896745731588,
          -4.099098298220612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.114610984232173,
          -7,
          -2.6599162000698504,
          -7,
          -3.3432115901797474,
          -7,
          -3.137986732723532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.538309759381733,
          -7,
          -3.6722910214147975,
          -7,
          -7,
          -7,
          -4.006466042249231,
          -7,
          -7,
          -3.0432050388876584,
          -7,
          -7,
          -7,
          -2.4742162640762553,
          -2.9459607035775686,
          -3.203984244420126,
          -2.0248666663580623,
          -2.8488047010518036,
          -2.416640507338281,
          -3.251638220448212,
          -2.7054360465852505,
          -3.307067950661298,
          -7,
          -3.0993352776859577,
          -2.620978335335007,
          -7,
          -3.485437481076301,
          -7,
          -4.530900537217131,
          -3.9107844347928373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.971322245242813,
          -7,
          -2.463485774251991,
          -2.350829273582968,
          -2.2595938788859486,
          -7,
          -4.874370346718868,
          -3.588047496986083,
          -7,
          -7,
          -2.8530895298518657,
          -3.7794521834040617,
          -3.349180358996378,
          -7,
          -3.113943352306837,
          -7,
          -3.012415374762433,
          -3.3848907965305544,
          -7,
          -7,
          -7,
          -2.7253670623404314,
          -7,
          -7,
          -4.557982139681939,
          -4.393048466416778,
          -4.699390776552473,
          -7,
          -3.03576316966496,
          -4.542887642342412,
          -3.0990587890680543,
          -7,
          -7,
          -7,
          -3.274734984872738,
          -3.8067225030761813,
          -3.747334109615905,
          -7,
          -7,
          -7,
          -3.4499409887733377,
          -2.2346859743215286,
          -2.3351234420807065,
          -2.443106456737266,
          -2.0556020599702647,
          -2.192328457926367,
          -2.9384250560792444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.077858253926433,
          -7,
          -4.293064081916136,
          -4.882148707810854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.31893939156067,
          -7,
          -5.388523917575625,
          -4.281306136741821,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.776570440218725,
          -7,
          -4.077967145146871,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6173463799861105,
          -7,
          -7,
          -4.465182018186956,
          -3.903307079964174,
          -7,
          -7,
          -7,
          -4.634202600383421,
          -2.6241101320710367,
          -3.535167485114944,
          -4.446241945325413,
          -4.119053120904281,
          -4.2062320243263,
          -7,
          -7,
          -7,
          -2.9552065375419416,
          -7,
          -7,
          -7,
          -7,
          -4.089860973578503,
          -5.011272918351647,
          -5.706699864120133,
          -7,
          -1.8714699123021497,
          -7,
          -3.7808067878569203,
          -7,
          -7,
          -4.088065177690204,
          -4.225800170570545,
          -7,
          -7,
          -4.437306531324273,
          -7,
          -3.635986111800833,
          -4.222378265944956,
          -7,
          -4.598932695782928,
          -7,
          -3.139249217571607,
          -4.041989429902784,
          -4.112327255332538,
          -7,
          -4.143986189041628,
          -7,
          -7,
          -4.611362130666253,
          -7,
          -7,
          -2.9030899869919438,
          -7,
          -7,
          -7,
          -4.473603739435952,
          -2.455859567203536,
          -3.414221033214868,
          -7,
          -7,
          -3.871358848768327,
          -7,
          -2.1293865609616143,
          -7,
          -3.2930677680163307,
          -7,
          -3.757872028479324,
          -3.6459132750338443,
          -7,
          -7,
          -7,
          -7,
          -3.215373152783422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1259027647109168,
          -7,
          -4.024854948305018,
          -7,
          -7,
          -7,
          -5.095633048907243,
          -7,
          -7,
          -7,
          -2.0583372711707346,
          -7,
          -2.2733417616789073,
          -7,
          -2.3283796034387376,
          -3.178593294899047,
          -7,
          -7,
          -7,
          -2.7997998773461115,
          -7,
          -7,
          -7,
          -2.363074486652865,
          -7,
          -2.6388884247050757,
          -3.999695887410839,
          -7,
          -7,
          -2.3192217631820213,
          -2.4728782881402593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9093777108309906,
          -3.2611204538110883,
          -3.504470862494419,
          -3.6267508536833932,
          -7,
          -7,
          -7,
          -2.381656482585787,
          -7,
          -7,
          -2.9131071077494677,
          -3.3457003905834424,
          -7,
          -7,
          -3.0356298277904386,
          -3.5542872095319615,
          -7,
          -3.4176377396522297,
          -4.01110502981598,
          -7,
          -7,
          -7,
          -3.2661532687922707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.170408411725318,
          -4.073094864515745,
          -7,
          -3.490941205356787,
          -7,
          -3.0189084443163274,
          -7,
          -2.148658732600981,
          -3.392609030497567,
          -7,
          -7,
          -7,
          -3.200303182981585,
          -3.9233303852372834,
          -2.8457180179666586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.822560336942692,
          -7,
          -3.062393937253195,
          -2.589204670642375,
          -7,
          -7,
          -7,
          -2.66149717917983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6830470382388496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.025483370754005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.233960138494771,
          -4.4076627845840965,
          -4.7086163311678915,
          -7,
          -4.4092143375767625,
          -2.8317202295593877,
          -3.9387198147823823,
          -4.108209731084804,
          -7,
          -2.3695233431351217,
          -4.446156448930393,
          -7,
          -7,
          -3.277550278524911,
          -2.4444825170747544,
          -4.715953229841805,
          -4.111010334527677,
          -4.7083954026456265,
          -4.408824850960789,
          -7,
          -2.31334740394485,
          -3.093615390353539,
          -4.407084835757768,
          -3.463900843761717,
          -2.452447312946995,
          -4.015778756389041,
          -4.711317845065442,
          -7,
          -3.643032984773319,
          -4.239441300467461,
          -4.711925273632879,
          -2.759924217918967,
          -3.714664992862537,
          -4.107498272612255,
          -4.709727764559769,
          -3.6704820018641366,
          -2.980507447586642,
          -3.534406899137877,
          -4.031271084270531,
          -7,
          -2.688839871885674,
          -7,
          -2.754182486538021,
          -4.710202014655385,
          -4.7124392366451895,
          -3.819774182176816,
          -3.5694491562792146,
          -3.3788322152077925,
          -4.109266296065941,
          -7,
          -4.254266028449126,
          -4.017108499147387,
          -3.8164815873225115,
          -2.4653098077679445,
          -4.029083320583757,
          -3.2631328475801404,
          -3.4761601726982754,
          -7,
          -4.412737668240323,
          -3.523583901029429,
          -3.7139858770370497,
          -4.237652633213792,
          -4.112797643468705,
          -7,
          -4.111220493971364,
          -3.693926707209632,
          -2.4124023237640917,
          -4.7099988280251885,
          -4.709295407172643,
          -3.345430913802812,
          -4.708760723690316,
          -3.35061236261552,
          -3.076735399100041,
          -7,
          -4.727354161057733,
          -2.805990780131231,
          -7,
          -3.3433347279168006,
          -7,
          -4.710937770328562,
          -3.048247531803974,
          -4.722214230820944,
          -4.711419142177214,
          -4.407331408000757,
          -4.029034578217611,
          -4.713431737151994,
          -3.651447627154724,
          -3.9556717184752674,
          -4.1181820269590945,
          -4.41814378957331,
          -2.5163393966479584,
          -3.5872137026351245,
          -3.280834364765057,
          -4.709303888906937,
          -7,
          -4.426014873609768,
          -3.60580214022274,
          -3.8798901436004236,
          -3.590252528893788,
          -7,
          -3.220054418430261,
          -7,
          -4.7087352461451,
          -4.708599340655707,
          -2.992654903904743,
          -4.7090663377095066,
          -3.879718312672632,
          -3.81424759573192,
          -3.5356738034257504,
          -3.072541652395476,
          -4.712784345708868,
          -4.233748911930145,
          -4.238815269239352,
          -4.239983131866713,
          -2.2999077870759956,
          -3.8693323168395377,
          -7,
          -4.245890865709575,
          -3.955711796961274,
          -3.3418616839514494,
          -7,
          -2.9964519684791755,
          -2.8936038389987706,
          -4.4116617867231005,
          -2.9962322981135032,
          -7,
          -3.06612783818228,
          -4.113918296133177,
          -3.581827799038108,
          -3.738074652823766,
          -7,
          -4.41230091277274,
          -2.7042554748129772,
          -3.5533408311575485,
          -7,
          -7,
          -3.2254032746884422,
          -7,
          -7,
          -4.7087012737596785,
          -7,
          -7,
          -3.0971651968201335,
          -3.9033690866007587,
          -3.293663834280866,
          -3.5400869155517314,
          -7,
          -3.5890704473162565,
          -7,
          -4.409552737891461,
          -3.938344571118097,
          -3.7135255428507334,
          -3.2960218189450234,
          -7,
          -7,
          -4.71363332438249,
          -3.080036758178311,
          -7,
          -4.4072378970769615,
          -4.419930978136115,
          -4.11541079013392,
          -4.010723865391773,
          -4.717662183104909,
          -3.463519723400486,
          -3.1937627975610106,
          -3.6454468328219587,
          -3.6410855836321,
          -3.0831889689140475,
          -3.940972785590708,
          -4.110244494182466,
          -2.5024048809087134,
          -4.234432913530507,
          -7,
          -7,
          -4.713935529890935,
          -4.711199635231979,
          -4.409611930846435,
          -7,
          -3.007041081284651,
          -7,
          -3.0947393290928233,
          -7,
          -3.1450642634967596,
          -2.3068807280891965,
          -4.015418439887637,
          -2.90395456773191,
          -3.374588971886516,
          -4.115469051738149,
          -3.578295305120826,
          -3.4172058867643305,
          -3.7203247174174416,
          -4.2391743041780785,
          -4.241430254748615,
          -4.04099769242349,
          -4.712085425704258,
          -3.6634653438911116,
          -7,
          -3.312607730179509,
          -2.7112198358301747,
          -3.8612415964935445,
          -7,
          -2.6094897826420684,
          -4.708539868627965,
          -3.1486874696646585,
          -4.110530790384566,
          -3.375871360667503,
          -4.410068291238362,
          -4.013283938717773,
          -3.1930008501040437,
          -3.6442169541060987,
          -7,
          -3.683554592496879,
          -2.882316969972196,
          -3.0369752047078737,
          -7,
          -7,
          -4.012119835804513,
          -4.709210580717843,
          -7,
          -4.711891549880579,
          -7,
          -4.411602872517545,
          -3.2251319824860447,
          -3.1795597697530154,
          -3.1168787038684527,
          -2.737530215043792,
          -4.70816585785554,
          -3.4807591584803594,
          -4.411468181457918,
          -4.716095203905708,
          -4.4076797714411935,
          -4.7097192910997725,
          -3.768399638290876,
          -4.719148911318181,
          -3.3761454342431025,
          -7,
          -7,
          -4.709736237854444,
          -4.1085565677610685,
          -7,
          -7,
          -7,
          -2.421550142900094,
          -7,
          -7,
          -7,
          -7,
          -4.713624926782461,
          -3.867862962726285,
          -7,
          -4.412628520544375,
          -3.4217292462999036,
          -4.720580984690612,
          -4.05479684401452,
          -3.2130013815482696,
          -4.719853121294242,
          -7,
          -7,
          -2.5746252397019047,
          -3.8768855992492965,
          -2.6865129952104003,
          -3.6722910214147975,
          -7,
          -7,
          -7,
          -4.409992264467171,
          -3.3499966177587472,
          -3.494046316227797,
          -3.3450613590263587,
          -3.0933438476350257,
          -3.4378260332318917,
          -3.7179699132050232,
          -7,
          -7,
          -4.114852747571882,
          -3.9505108929859967,
          -3.8820689444361483,
          -4.708021267385997,
          -4.233782715084948,
          -4.0180677317772515,
          -7,
          -3.5727803542787444,
          -7,
          -4.12104251895432,
          -2.938541798406638,
          -3.570100748491705,
          -3.8823862832943425,
          -4.019299112795343,
          -1.5413138885839677,
          -3.3865286903706164,
          -7,
          -2.992932931139705,
          -4.408375661136076,
          -7,
          -3.2047342663096217,
          -3.679155241283354,
          -2.8453899045964133,
          -3.5850415418704515,
          -2.7890516223748403,
          -3.129359328564904,
          -3.0884180065825073,
          -4.246933314148579,
          -2.4601914044246,
          -3.441620334661906,
          -7,
          -7,
          -4.708080810468232,
          -3.335650740478487,
          -3.1820657578164884,
          -4.711587918209924,
          -3.8098373723298224,
          -3.5499672901284045,
          -4.710760288222427,
          -4.4213653283855505,
          -7,
          -3.9004763713892565,
          -2.820108792023945,
          -3.8123366985975364,
          -3.592707994835791,
          -4.713498943292817,
          -3.008564688737109,
          -3.4949716071138606,
          -2.51850739505998,
          -4.71357453777207,
          -3.5785933717199003,
          -2.8107834962325997,
          -3.221107261698154,
          -7,
          -4.237686133897014,
          -4.710261259520343,
          -3.5569936047645743,
          -3.012814225271012,
          -3.706143411054697,
          -4.023417089841105,
          -4.408019369129767,
          -7,
          -4.725625818213062,
          -7,
          -4.713112365881025,
          -4.412796428716543,
          -3.661694397512043,
          -4.109266296065941,
          -2.5620548296563785,
          -4.708208375304485,
          -7,
          -2.543752872635506,
          -2.452137061828049,
          -2.4936441152582307,
          -3.7850132938291856,
          -3.040474730298592,
          -2.940446167127642,
          -2.883108317483188,
          -1.8298429342682472,
          -2.4731227267893687,
          -3.301659266551521,
          -3.4818803652233727,
          -2.2610149130438777,
          -2.84728947092095,
          -2.955453008282639,
          -2.3959134876036994,
          -2.9814017743269394,
          -2.2631247697617454,
          -2.6168996494641785,
          -3.097384818350209,
          -2.8922720043223014,
          -3.6563617665736747,
          -2.6037277197660282,
          -1.4033708818735386,
          -2.3852703943099414,
          -3.030387005736945,
          -3.0644942191796862,
          -2.9446954207059086,
          -2.6532720020956755,
          -3.4677478333627345,
          -2.306863306422832,
          -2.937277107785396,
          -2.6209142371841354,
          -2.7269035130189034,
          -2.778355189294754,
          -3.378158303868406,
          -2.964328969759512,
          -3.073972577349435,
          -2.923580200410283,
          -2.4602287034964188,
          -3.0274444318978198,
          -3.7145560704804033,
          -3.010282098769298,
          -2.602768412048955,
          -3.334297341231131,
          -3.4405155211122285,
          -3.0174990966378847,
          -4.723562385355725,
          -2.4991534837660314,
          -3.0405663811422534,
          -3.3878264901627837,
          -2.99520185010408,
          -2.614964624993414,
          -2.7321418065585115,
          -4.116159272795033,
          -2.339299816876127,
          -3.97985934080671,
          -4.2325302427478,
          -4.0559437693150855,
          -2.4219280998205424,
          -3.701183205404621,
          -4.71478226334653,
          -2.531428995267167,
          -2.310144621207025,
          -2.554358006985142,
          -4.710760288222427,
          -2.987846517260498,
          -4.410422906967378,
          -2.3313884183808486,
          -4.753337885232085,
          -3.768122743166399,
          -2.956745935939529,
          -3.6808533012337556,
          -4.708981466496654,
          -3.2419168188948717,
          -3.020478867616935,
          -3.1767011903680267,
          -2.6946371018559296,
          -3.2943884118784865,
          -3.454890572811237,
          -2.5073611639251636,
          -3.096899322550773,
          -4.713700499337772,
          -2.7366893243538843,
          -2.3190687511911268,
          -4.4335698364624765,
          -1.9876354496935726,
          -7,
          -3.532579224934103,
          -2.995401486253443,
          -2.5876985647538873,
          -4.709981891514242,
          -4.231664945021339,
          -7,
          -7,
          -3.122941047649739,
          -2.778374326838308,
          -3.9455014103827257,
          -3.078008384692729,
          -4.710269722412766,
          -3.544382277123792,
          -2.6663139371005946,
          -3.4943183242680367,
          -3.60741377771562,
          -4.233309231323719,
          -3.795694678823433,
          -7,
          -2.6986085824733417,
          -3.5922243573975843,
          -4.411830069000477,
          -7,
          -2.8509932054387264,
          -4.0231948243142535,
          -2.9219779562319195,
          -3.936739878637037,
          -3.5660837841679958,
          -2.675832234393879,
          -3.4571414688886586,
          -4.111590127767469,
          -3.9416521994105165,
          -4.130341810910945,
          -7,
          -3.3865917002612993,
          -4.709236030394002,
          -4.010969543011004,
          -2.356750609732126,
          -2.1655873706582036,
          -1.8424856208936586,
          -7,
          -3.613589771790102,
          -3.149248445976245,
          -3.53848994978385,
          -3.72876758516651,
          -7,
          -4.241181094571635,
          -2.948063489231294,
          -7,
          -4.232962245954388,
          -3.5485204443196916,
          -4.240873600020581,
          -3.0188888310551025,
          -3.7579103310516335,
          -3.4885341273951536,
          -4.1136760118971,
          -3.867837730406542,
          -4.02138778832472,
          -2.980371353572635,
          -2.333318409122339,
          -4.408010882423134,
          -3.830275825517338,
          -3.82865989653532,
          -3.943412067973837,
          -3.06165439200259,
          -3.4332222533989265,
          -4.710117365111816,
          -2.9671243503847156,
          -3.8773219727168056,
          -2.2028758014872105,
          -4.0296596902528306,
          -3.2894535727211567,
          -3.7181112296356043,
          -3.80962704189405,
          -1.9821867377077855,
          -3.809096556968516,
          -2.742548008123852,
          -3.933217246191068,
          -3.7225434350906466,
          -3.5515338599475053,
          -3.3551098872819316,
          -7,
          -3.249259521320783,
          -2.613996088101989,
          -2.95970902424643,
          -3.422630871027468,
          -2.3814797977204503,
          -3.2971036501492565,
          -3.301371093057613,
          -3.637206111340114,
          -3.1156388335343226,
          -2.8115671210045012,
          -3.762886868437604,
          -3.1839644940529617,
          -4.106972399886674,
          -7,
          -2.1760134858627667,
          -3.2657527953446097,
          -4.71438006121222,
          -3.4057446650019667,
          -2.9045764498757327,
          -3.4916912040791415,
          -3.28200866481907,
          -2.973787374579753,
          -3.4408933464728357,
          -4.028863936842829,
          -4.411459761879543,
          -4.020609853377705,
          -7,
          -3.116923847417229,
          -2.956357404797833,
          -1.5214019507737675,
          -4.708650310198278,
          -4.117610973351813,
          -4.016406500871118,
          -2.5595770555682282,
          -3.935683567701656,
          -7,
          -4.708692780248078,
          -7,
          -4.232437009220555,
          -7,
          -4.7100496335954745,
          -3.1531667488581956,
          -3.9406824679202184,
          -4.0224283711854865,
          -4.410895277968898,
          -3.809618626557482,
          -7,
          -4.410346942254636,
          -4.014680114759413,
          -7,
          -4.424072704144278,
          -4.241355521703736,
          -3.656344656846971,
          -3.1599371992043745,
          -3.3099060475906565,
          -7,
          -7,
          -3.6188523459824924,
          -4.7123129086813655,
          -7,
          -3.270774088928408,
          -4.713624926782461,
          -4.713322504987028,
          -4.431452222544104,
          -3.221454991793657,
          -4.123851640967086,
          -7,
          -7,
          -4.422483140648195,
          -7,
          -3.184801803914325,
          -7,
          -4.413576350079674,
          -4.708123336243728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9696488404807253,
          -7,
          -7,
          -3.883545175194561,
          -2.971275848738105,
          -7,
          -7,
          -3.304355866992308,
          -3.5245259366263757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6483404916891735,
          -7,
          -7,
          -3.4046627008737222,
          -4.040869823702905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.868521008351567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.91221267574534,
          -7,
          -7,
          -2.7138264243805246,
          -7,
          -3.205745540942662,
          -7,
          -7,
          -7,
          -3.247973266361807,
          -7,
          -3.6318974796823285,
          -7,
          -2.88530980902442,
          -7,
          -7,
          -3.17260293120986,
          -3.204255678480151,
          -7,
          -7,
          -7,
          -7,
          -3.1565491513317814,
          -7,
          -3.98027614107784,
          -7,
          -7,
          -7,
          -7,
          -3.767007363949804,
          -7,
          -7,
          -3.1942367487238292,
          -2.716964695235721,
          -7,
          -7,
          -7,
          -7,
          -3.423846369199462,
          -2.441258614866301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2943559851451605,
          -7,
          -7,
          -3.568548612811087,
          -3.5907304057926903,
          -3.3384166482463584,
          -7,
          -7,
          -7,
          -7,
          -3.4551495211798278,
          -7,
          -7,
          -3.560952218446867,
          -7,
          -7,
          -7,
          -3.5161385767170743,
          -7,
          -3.451939869365103,
          -3.284881714655453,
          -3.6731131042382335,
          -3.4316139029220896,
          -7,
          -7,
          -7,
          -7,
          -4.392749698374226,
          -7,
          -7,
          -3.4154741681092355,
          -7,
          -7,
          -7,
          -3.708760723690317,
          -3.4150872214535934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4638503462953234,
          -3.5332635167787148,
          -7,
          -7,
          -4.07505399469838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.763502865467597,
          -3.4683177855649125,
          -3.119420863442087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9454685851318194,
          -7,
          -7,
          -3.7690201911798535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.589726256254237,
          -7,
          -7,
          -7,
          -7,
          -3.9020573108084666,
          -7,
          -7,
          -3.8296590289710872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4278184833943377,
          -3.989271791641693,
          -7,
          -7,
          -3.9562933202213877,
          -7,
          -7,
          -3.6321534835106326,
          -7,
          -7,
          -7,
          -7,
          -3.2533380053261065,
          -7,
          -3.6731131042382335,
          -7,
          -3.704579449696299,
          -7,
          -7,
          -7,
          -3.1196051722007563,
          -7,
          -4.090363879471718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145538235712233,
          -4.759085037637032,
          -7,
          -7,
          -7,
          -3.2464985807958007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.166548514738755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8107028609471167,
          -7,
          -7,
          -7,
          -7,
          -3.7221195383899373,
          -3.395501124305626,
          -2.6344898655257043,
          -7,
          -7,
          -7,
          -1.2304489213782739,
          -7,
          -7,
          -3.295860195625301,
          -3.5034729010565577,
          -7,
          -3.8658735282078145,
          -7,
          -7,
          -7,
          -7,
          -3.5186455243303114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4176377396522297,
          -3.9500726297501574,
          -7,
          -7,
          -7,
          -4.355116139076884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9584045967789923,
          -4.466931416163418,
          -3.894758994371892,
          -7,
          -7,
          -7,
          -3.485437481076301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.789228057267335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8498106890941513,
          -4.093736784562339,
          -3.7482973971048668,
          -7,
          -3.8211858826088454,
          -5.02044001210619,
          -3.80543288813214,
          -7,
          -7,
          -7,
          -3.5873741720730656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6056686020868565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.816959005394395,
          -3.7686381012476144,
          -3.9955474494751373,
          -7,
          -7,
          -4.722304786874328,
          -4.999565488225983,
          -7,
          -7,
          -4.376385314272538,
          -4.62369369776916,
          -7,
          -7,
          -7,
          -4.911573053768388,
          -7,
          -4.23620965371706,
          -3.817664512233857,
          -7,
          -7,
          -7,
          -7,
          -4.078268268673513,
          -4.17070165581607,
          -3.777771076361577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9817884153334724,
          -7,
          -3.6639834546082666,
          -7,
          -4.674098390094781,
          -5.067636150031888,
          -7,
          -3.392609030497567,
          -4.035909798456609,
          -7,
          -3.6565596501083624,
          -7,
          -7,
          -7,
          -4.265671410801216,
          -4.207131483023054,
          -7,
          -3.9665640840973104,
          -3.8478193472952396,
          -7,
          -7,
          -7,
          -3.703635237583896,
          -7,
          -3.879404687616423,
          -4.108264735866179,
          -4.592821355189226,
          -7,
          -7,
          -7,
          -4.95751151145448,
          -7,
          -4.6279169106070865,
          -4.091596620810058,
          -4.228374690421907,
          -7,
          -7,
          -4.438890277816841,
          -4.007498847687,
          -7,
          -3.1830626791773424,
          -3.8323172699222616,
          -4.122314197968806,
          -4.493165169463191,
          -7,
          -4.343551365571408,
          -4.957961473262439,
          -3.1277525158329733,
          -4.87123034602681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.360768133085603,
          -3.4292676664331685,
          -3.0485805158968846,
          -7,
          -7,
          -3.7483237228304267,
          -7,
          -7,
          -7,
          -3.7777891874348675,
          -7,
          -4.499047539376685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3463529744506384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.60094024073866,
          -5.095981367848225,
          -4.091779472763749,
          -7,
          -7,
          -3.0020700214018694,
          -7,
          -3.521399628115376,
          -7,
          -7,
          -3.0046079422403533,
          -7,
          -7,
          -7,
          -7,
          -3.717087724927019,
          -7,
          -7,
          -7,
          -7,
          -3.057475915826254,
          -3.1003274582102502,
          -7,
          -7,
          -3.589726256254237,
          -7,
          -7,
          -3.313053285378446,
          -7,
          -7,
          -7,
          -7,
          -3.61554676628177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.106870544478654,
          -3.130076332517164,
          -7,
          -7,
          -3.8210547550468883,
          -3.1717365381636147,
          -7,
          -7,
          -4.013216539624441,
          -7,
          -7,
          -7,
          -3.747489492258673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.303793008415947,
          -7,
          -7,
          -4.250432201420758,
          -7,
          -3.504742636271688,
          -7,
          -7,
          -7,
          -3.6822353569025643,
          -3.4013143626917874,
          -7,
          -7,
          -7,
          -7,
          -4.101179784380764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.455758203104137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6646419755561257,
          -7,
          -7,
          -4.359450596829359,
          -7,
          -7,
          -7,
          -3.291313338918062,
          -3.131378035763099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.735878227256238,
          -7,
          -7,
          -3.6630409748939745,
          -4.156839096701946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.539189050875863,
          -7,
          -7,
          -3.325925955771466,
          -7,
          -3.6379897807846855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.908195392671248,
          -7,
          -2.8221680793680175,
          -3.79140991566716,
          -7,
          -3.004751155591001,
          -3.1341771075767664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.563599728881531,
          -7,
          -7,
          -7,
          -3.3960248966085933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.909405985706936,
          -7,
          -7,
          -7,
          -7,
          -3.5732198271144218,
          -2.4003220836047983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6503458731237406,
          -3.232742062720737,
          -3.71717102683231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.671481400086431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6267508536833932,
          -3.6784273224338673,
          -2.950364854376123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.975967643841769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8217099972983766,
          -3.4679039465228003,
          -7,
          -7,
          -4.367318640929692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5509617522981762,
          -3.379577433327807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.240324555090434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3201462861110542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0720215357300305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4764627337718037,
          -4.2795985099045675,
          -7,
          -7,
          -4.122897874121538,
          -7,
          -3.674125982742708,
          -3.5809249756756194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7391568368159476,
          -7,
          -3.470924753299968,
          -7,
          -7,
          -7,
          -2.9006401839826004,
          -7,
          -2.92272545799326,
          -7,
          -7,
          -7,
          -3.376211850282673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.23581535680208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.641350150325748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.823329295252085,
          -7,
          -7,
          -7,
          -7,
          -3.8371674062278354,
          -7,
          -2.7612140831684076,
          -7,
          -7,
          -1.2304489213782739,
          -7,
          -7,
          -3.9900278987702946,
          -3.7368743616484226,
          -3.3562171342197353,
          -7,
          -7,
          -3.184691430817599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.330210784571528,
          -7,
          -7,
          -7,
          -7,
          -4.43277694076486,
          -7,
          -7,
          -3.682686478249768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4983105537896004,
          -7,
          -7,
          -7,
          -3.0513454993365388,
          -4.682235356902564,
          -7,
          -7,
          -7,
          -7,
          -3.7513560997253936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6947806360120614,
          -7,
          -7,
          -7,
          -7,
          -3.425075097063868,
          -3.344624454648622,
          -4.036352282404115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7241939195143297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.890867938811441,
          -3.703744069681171,
          -3.9740970037941312,
          -7,
          -4.302806962741421,
          -7,
          -7,
          -4.5805828768143675,
          -7,
          -4.673057788321386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.531210593459676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.928637222466674,
          -7,
          -4.6766478920100125,
          -4.322074505773784,
          -7,
          -7,
          -7,
          -7,
          -3.9745270439853426,
          -7,
          -3.6131861871396045,
          -7,
          -7,
          -7,
          -7,
          -3.348499570283838,
          -7,
          -3.3402457615679317,
          -4.15608957773648,
          -7,
          -7,
          -7,
          -3.962340918525596,
          -4.378933624250314,
          -7,
          -4.436226275270583,
          -3.516204734761517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.991345711774112,
          -4.709702343683791,
          -5.104312948890889,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.80320097026682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.481270596619721,
          -7,
          -3.911370707116138,
          -7,
          -4.420764137471791,
          -4.486458816884649,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30628560200552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5647695962352564,
          -7,
          -3.704779473476742,
          -7,
          -7,
          -4.341157437445437,
          -7,
          -3.2889196056617265,
          -7,
          -3.2643455070500926,
          -7,
          -4.7967962800566575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7874392197822315,
          -7,
          -7,
          -3.234213474838595,
          -7,
          -7,
          -7,
          -7,
          -3.4707778833351246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.681874122128647,
          -4.192901826109565,
          -7,
          -7,
          -7,
          -7,
          -3.4446692309385245,
          -7,
          -7,
          -7,
          -7,
          -3.8557379379199967,
          -3.4499409887733377,
          -3.586249638866042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1952768094473876,
          -7,
          -7,
          -7,
          -3.4534916154801154,
          -7,
          -7,
          -4.30412415273291,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.358486888100237,
          -7,
          -3.034227260770551,
          -7,
          -3.5283252460556915,
          -7,
          -4.159206133646325,
          -4.244573972817435,
          -7,
          -3.4345689040341987,
          -7,
          -7,
          -7,
          -7,
          -3.659345635746177,
          -7,
          -7,
          -3.2362852774480286,
          -7,
          -4.092896010921856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4265193941438925,
          -7,
          -7,
          -2.3229081045244717,
          -3.894897317933243,
          -3.513111011656089,
          -7,
          -7,
          -7,
          -7,
          -2.694605198933569,
          -7,
          -7,
          -7,
          -2.711338481578628,
          -4.040364955860061,
          -7,
          -7,
          -7,
          -7,
          -3.143014800254095,
          -7,
          -4.263866763229076,
          -7,
          -7,
          -7,
          -2.625826713285711,
          -2.8258586820285867,
          -7,
          -7,
          -7,
          -7,
          -2.9030899869919438,
          -5.1414027353497795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7985739217489467,
          -7,
          -7,
          -7,
          -3.235931180529099,
          -7,
          -2.9497693741580635,
          -2.793161529245551,
          -7,
          -7,
          -3.4423229557455746,
          -3.0398105541483504,
          -7,
          -7,
          -2.1484484035233837,
          -7,
          -3.5686709780098966,
          -4.149773177559665,
          -7,
          -7,
          -3.1020905255118367,
          -7,
          -3.4323277922616042,
          -3.633367445117007,
          -7,
          -3.4307198878632823,
          -4.046199160534498,
          -7,
          -2.8792870723193187,
          -7,
          -7,
          -3.575707301476683,
          -7,
          -7,
          -2.617000341120899,
          -3.4446692309385245,
          -7,
          -3.1931245983544616,
          -7,
          -7,
          -7,
          -4.276145095448474,
          -7,
          -7,
          -7,
          -7,
          -3.424881636631067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.672744198306599,
          -7,
          -7,
          -2.8724476477890133,
          -3.32990612340021,
          -3.1736596536320567,
          -2.668851648082519,
          -2.852479993636856,
          -2.8172347304254983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.395093308677923,
          -4.152418307438716,
          -7,
          -3.8408585540418794,
          -7,
          -4.993987016217477,
          -7,
          -7,
          -3.3059958827708047,
          -7,
          -7,
          -3.697665162647674,
          -2.9965116721541785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.645422269349092,
          -7,
          -7,
          -3.677272283237335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.056371179475529,
          -7,
          -7,
          -7,
          -7,
          -3.8428462897078353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8796692056320534,
          -7,
          -2.3154455182245846,
          -3.377306251068199,
          -2.1158481557195747,
          -3.5766292484476274,
          -7,
          -2.946452265013073,
          -2.888959198348298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.019479781993769,
          -7,
          -4.280578370368076,
          -7,
          -7,
          -3.4340973416453218,
          -7,
          -2.978363147083883,
          -3.28454352295875,
          -7,
          -3.373463721632369,
          -7,
          -7,
          -7,
          -7,
          -3.631139250256811,
          -7,
          -3.665674780993893,
          -7,
          -7,
          -7,
          -4.041116227969485,
          -7,
          -7,
          -7,
          -3.758003009299799,
          -7,
          -3.2137832993353044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.383994789441733,
          -3.5781041291341573,
          -7,
          -7,
          -7,
          -2.870403905279027,
          -7,
          -2.7902851640332416,
          -7,
          -7,
          -7,
          -7,
          -2.882410684373968,
          -4.131843130804694,
          -5.712976141428744,
          -7,
          -2.8920946026904804,
          -7,
          -2.8221680793680175,
          -7,
          -2.150756439860309,
          -3.3296012483565187,
          -7,
          -7,
          -7,
          -2.5921767573958667,
          -7,
          -7,
          -7,
          -2.7427251313046983,
          -7,
          -3.7383345436865523,
          -7,
          -7,
          -7,
          -7,
          -3.0149403497929366,
          -2.5069557791831683,
          -7,
          -7,
          -7,
          -7,
          -3.304418713886279,
          -3.11634203918834,
          -7,
          -2.1063609088067503,
          -7,
          -4.31527743947181,
          -2.354535264225396,
          -3.135539711053947,
          -7,
          -4.409992264467171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3582680592021807,
          -3.0161136663589083,
          -7,
          -3.196728722623287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.448190836779987,
          -7,
          -2.0528761166771035,
          -3.4510696933190945,
          -7,
          -2.9574476493145365,
          -3.2038484637462346,
          -4.2867739423480264,
          -3.4152516526787737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9740509027928774,
          -2.9546765869186435,
          -3.0265332645232967,
          -3.484442207642407,
          -2.8068580295188172,
          -3.5237464668115646,
          -7,
          -5.129432718891559,
          -7,
          -7,
          -7,
          -7,
          -3.152135396861876,
          -7,
          -7,
          -2.9849771264154934,
          -7,
          -7,
          -2.7172543127625497,
          -7,
          -3.698535492562001,
          -7,
          -7,
          -3.6182573448404014,
          -7,
          -4.011842207926475,
          -3.909948072212358,
          -4.574252990834661,
          -7,
          -3.490590487028833,
          -4.54150019848575,
          -3.7748817658187965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.720572720364261,
          -7,
          -7,
          -7,
          -2.5479504264025215,
          -2.8488047010518036,
          -7,
          -7,
          -7,
          -7,
          -3.0874127989033524,
          -7,
          -7,
          -4.117933835039642,
          -7,
          -7,
          -7,
          -7,
          -4.372819981678968,
          -7,
          -7,
          -3.880138768941943,
          -3.976074731619874,
          -7,
          -7,
          -4.718717536873734,
          -7,
          -4.103906298088718,
          -7,
          -7,
          -4.320395570236469,
          -7,
          -7,
          -7,
          -5.08689702671432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.67704090631023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.613831254971802,
          -7,
          -4.369039505473969,
          -4.111717932914938,
          -3.407447560198671,
          -7,
          -4.328216457500718,
          -7,
          -5.235435013044649,
          -3.6906390117159673,
          -7,
          -4.441019215250851,
          -4.2636218679914135,
          -3.9021298594796567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14638499107598,
          -4.788947139131619,
          -5.706414779723215,
          -7,
          -7,
          -7,
          -4.654388341190573,
          -7,
          -5.4053446523686475,
          -3.598790506763115,
          -7,
          -7,
          -4.321474151030555,
          -7,
          -4.782623096183696,
          -7,
          -4.213597436747359,
          -7,
          -4.119937377051041,
          -4.487067637716316,
          -7,
          -4.165298745583048,
          -7,
          -7,
          -4.87038439475624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.468701711894003,
          -7,
          -3.1827284181242677,
          -7,
          -7,
          -3.739829364386337,
          -7,
          -3.2984163800612945,
          -7,
          -3.7451528950769006,
          -7,
          -4.194992773454235,
          -7,
          -7,
          -7,
          -3.824646414718352,
          -7,
          -7,
          -7,
          -7,
          -3.7758288144646124,
          -7,
          -7,
          -3.2518814545525276,
          -7,
          -7,
          -4.010935664704385,
          -7,
          -7,
          -7,
          -3.7325860376752544,
          -4.787743771646467,
          -7,
          -7,
          -3.4584363903733517,
          -7,
          -7,
          -7,
          -7,
          -4.250224769901964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.232742062720737,
          -7,
          -7,
          -7,
          -3.0812122449879595,
          -7,
          -7,
          -7,
          -3.5122840632818537,
          -7,
          -3.844135321686674,
          -7,
          -7,
          -3.417527049073855,
          -7,
          -3.5019332341249347,
          -3.4565178578052627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.800717078282385,
          -7,
          -7,
          -7,
          -3.1245246022879822,
          -3.3137617962924364,
          -7,
          -3.4596939764779706,
          -7,
          -7,
          -7,
          -3.554125581513013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.298249291813928,
          -7,
          -7,
          -3.944025929336147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.185919720174312,
          -7,
          -7,
          -7,
          -7,
          -4.0936492798811175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2960066693136723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9916690073799486,
          -7,
          -7,
          -7,
          -7,
          -3.89593334272974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.69121414838279,
          -7,
          -7,
          -3.377943380255784,
          -3.686725621074542,
          -3.188807997012431,
          -2.5425349705996863,
          -3.1425235421112268,
          -3.699447465710474,
          -3.148867325157049,
          -7,
          -3.67797175281074,
          -3.6866809474663245,
          -2.96201837643487,
          -2.0567308621182074,
          -1.1578397323559333,
          -2.620526432062427,
          -3.6767850304192056,
          -7,
          -7,
          -2.7326617601288525,
          -3.4470287577940395,
          -7,
          -2.932727367301529,
          -2.2774330193339303,
          -3.2327844143207414,
          -3.516094465754475,
          -3.9787737843301225,
          -2.3544220657953714,
          -1.9237704465403997,
          -3.5192590585137475,
          -2.9663105116413515,
          -3.1076762465264816,
          -7,
          -3.139384266388006,
          -7,
          -3.7442538557311544,
          -3.6892200372638357,
          -3.1809140036160857,
          -7,
          -2.8507227965727586,
          -7,
          -3.1555689118377597,
          -3.9875322027298394,
          -2.8519568522583176,
          -3.0089483966758594,
          -3.1126050015345745,
          -2.7857826631404676,
          -3.692582562274909,
          -3.4085791254086675,
          -3.78830981210705,
          -3.7169210731667612,
          -3.3361393986085566,
          -2.527256693606394,
          -7,
          -2.0587409756789365,
          -3.0383078526301324,
          -7,
          -3.227543930734867,
          -2.6095208124648503,
          -4.007918390645599,
          -3.534026106056135,
          -3.1081420233274226,
          -7,
          -3.225223103636106,
          -7,
          -3.027151494017887,
          -7,
          -7,
          -2.888067113407437,
          -7,
          -3.8603380065709936,
          -2.5444923353895272,
          -7,
          -3.59402403573142,
          -2.812281362367997,
          -7,
          -4.055531225050898,
          -7,
          -3.99140330258004,
          -3.07379687751059,
          -7,
          -3.215329068686353,
          -7,
          -3.4722443526734725,
          -4.004321373782642,
          -3.38746101632035,
          -3.4009522278609032,
          -3.037625669914719,
          -4.033021444682911,
          -3.0374119207946,
          -4.0986783295764395,
          -3.814180981040187,
          -3.982768577251012,
          -7,
          -7,
          -3.5593878738130678,
          -3.5836521085420436,
          -3.2080716725856444,
          -7,
          -4.064701275737697,
          -3.705564390520156,
          -7,
          -3.979001748474721,
          -2.851117168304362,
          -3.981501488148247,
          -2.803570909565455,
          -3.0696269919490073,
          -2.3741917050629118,
          -2.490223584110092,
          -3.699881066467242,
          -3.6901074394563307,
          -3.4148480526441123,
          -2.980746885240167,
          -0.6360041990547592,
          -3.407603325351417,
          -3.9784544333652287,
          -2.5720579899263045,
          -2.737123471010412,
          -2.782798255494358,
          -3.408324780170415,
          -2.847536369651228,
          -3.2870438849608807,
          -3.398287305357401,
          -3.7274328054155808,
          -2.797137648656306,
          -1.6999396228754549,
          -3.716337287889549,
          -2.625826713285711,
          -3.272968181699753,
          -3.382242240651941,
          -7,
          -2.8489247133446307,
          -2.664858851706402,
          -7,
          -3.679109782081773,
          -4.2098767758979125,
          -7,
          -7,
          -7,
          -3.6838572054003462,
          -7,
          -2.880351799071886,
          -2.7270891965298407,
          -2.81088563461834,
          -4.143826390839561,
          -7,
          -3.2213881533063446,
          -3.980821166644336,
          -7,
          -3.542908378823037,
          -7,
          -2.942393921090259,
          -7,
          -7,
          -1.843952492375385,
          -3.1796607274946935,
          -7,
          -7,
          -3.7405205860536648,
          -3.7237429174156507,
          -3.6840819838753727,
          -7,
          -3.2539031250960253,
          -4.064120905829622,
          -3.1047904955244556,
          -4.03909671044145,
          -2.941328323980986,
          -4.033101936663848,
          -3.521486774595432,
          -2.76128758244713,
          -7,
          -3.9792751475910233,
          -7,
          -2.5272861094566683,
          -3.5154764413823756,
          -7,
          -7,
          -2.843133072080949,
          -7,
          -3.2732328340430454,
          -7,
          -3.855700830835437,
          -2.3204022188429327,
          -7,
          -3.539295700875927,
          -2.7302101047623504,
          -3.547856717375962,
          -2.9439888750737717,
          -3.4276078113473605,
          -3.193641308090492,
          -3.3196472881834227,
          -2.8828902938682437,
          -3.648717709275342,
          -7,
          -3.6600745572208857,
          -7,
          -4.255995726722402,
          -3.198499990015866,
          -4.492425112776086,
          -7,
          -2.0490704791043313,
          -7,
          -2.1828543360486603,
          -2.957998876560866,
          -2.3452920271477096,
          -3.9923325590474645,
          -2.415588309411352,
          -2.368946360360289,
          -2.6046888069715166,
          -7,
          -3.0188895442801207,
          -4.201506367053238,
          -3.510893378365528,
          -7,
          -7,
          -3.9925535178321354,
          -7,
          -3.287667391274135,
          -2.8813846567705728,
          -3.2842953482305264,
          -2.7948799895623955,
          -2.4705068031677473,
          -2.8309599038401214,
          -3.5094521554936255,
          -4.322573203899594,
          -7,
          -3.9942291408176986,
          -3.044670394919461,
          -3.540496318620011,
          -3.9796849238270258,
          -3.9849771264154934,
          -2.844865319914786,
          -2.6158287008014494,
          -3.7305804190595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2563568863955257,
          -2.912528278286801,
          -3.023023702987968,
          -3.024895960107485,
          -7,
          -3.989271791641693,
          -3.1596960703744554,
          -3.5251312252008757,
          -7,
          -3.306253420522117,
          -2.6225907694500417,
          -7,
          -3.5778650407463743,
          -2.891927534220675,
          -4.036229544086295,
          -7,
          -7,
          -3.1719749686032896,
          -4.04688519083771,
          -2.189955918629514,
          -4.006466042249231,
          -3.3499966177587472,
          -7,
          -3.9900278987702946,
          -7,
          -7,
          -4.163965982954884,
          -2.0656960916656666,
          -2.3879725044726805,
          -3.902954248756145,
          -7,
          -7,
          -3.984617313236748,
          -4.02209829746114,
          -3.475271569801028,
          -3.371621927176021,
          -7,
          -3.99140330258004,
          -3.022057020601165,
          -7,
          -2.885522757873026,
          -7,
          -3.5746484921796697,
          -2.5261901121876553,
          -2.9773078135080184,
          -4.072323438293041,
          -3.32956058217531,
          -3.1025209626503196,
          -2.904560992080643,
          -7,
          -2.8288286230919457,
          -7,
          -7,
          -1.679567653486021,
          -3.085488786659366,
          -2.4627118904578484,
          -1.9834639036932529,
          -3.8805277781988052,
          -4.041984501486787,
          -3.61714018800084,
          -2.2809948266715914,
          -4.135195643370445,
          -2.624467211464796,
          -3.9789105771755717,
          -7,
          -7,
          -3.0225461938888416,
          -2.704777275913766,
          -7,
          -7,
          -2.4614610083620283,
          -3.211876648386651,
          -2.363533636880855,
          -3.216473803384961,
          -3.8476035028253683,
          -7,
          -2.6150658413436996,
          -3.0419845014867866,
          -3.7035492982382308,
          -2.9682305969102893,
          -3.1817396773133635,
          -3.3696183681731737,
          -7,
          -3.1835829923510173,
          -2.0656782194975314,
          -1.5947506413102113,
          -3.975845225467567,
          -3.0565660880728815,
          -2.9076800242424197,
          -2.395256480886022,
          -1.8485279434560256,
          -1.4235552874960704,
          -2.2732563758039754,
          -2.9806849743633146,
          -3.975845225467567,
          -3.2178597940702534,
          -3.6898414091375047,
          -2.745941820182873,
          -4.006423252507643,
          -2.5366231805133514,
          -3.99370069482035,
          -2.02071386904202,
          -7,
          -7,
          -3.253481597485425,
          -4.5328562543112625,
          -7,
          -7,
          -4.783009785003973,
          -4.5143219139450625,
          -7,
          -3.836296982759114,
          -2.988958534263733,
          -7,
          -4.115144351793107,
          -7,
          -4.186164961727415,
          -5.035645830977186,
          -2.7586442281355095,
          -7,
          -4.750006699477232,
          -3.5198654798127627,
          -7,
          -4.471233018649645,
          -7,
          -4.926664788909112,
          -4.44507463277493,
          -3.5551750900198105,
          -3.6393071563607533,
          -7,
          -3.7827432771138936,
          -3.5421849794668856,
          -7,
          -3.6596500299986263,
          -7,
          -4.75301588461289,
          -4.478912638929306,
          -7,
          -7,
          -4.325905450354342,
          -7,
          -7,
          -7,
          -3.6212195705347923,
          -3.2322335211147335,
          -3.901995116585794,
          -3.298894643645755,
          -3.269564828153454,
          -3.434153571066601,
          -3.6373181507329417,
          -4.053846426852253,
          -3.359799471686457,
          -3.4310879340564138,
          -2.34956530647751,
          -2.018567843634294,
          -2.902197215252984,
          -2.724811610504629,
          -7,
          -3.1459490312866523,
          -3.894758994371892,
          -7,
          -4.184379080658596,
          -3.4347285417797577,
          -3.1822243810265145,
          -7,
          -3.029221394253928,
          -3.5865392788050334,
          -4.413043974836716,
          -3.9904720535256195,
          -2.174956836603337,
          -3.2155935061708187,
          -3.204172515101434,
          -7,
          -4.6424265961372715,
          -2.6212593923832506,
          -3.9305924884425982,
          -7,
          -3.3313694445848774,
          -3.0385358691662154,
          -2.912822005835123,
          -4.1165745397769165,
          -3.006774003996861,
          -3.7117228918272347,
          -2.56099245477133,
          -3.8214370998255576,
          -3.2271150825891253,
          -2.5304116602699116,
          -3.343911641883861,
          -4.103256233355051,
          -3.323090768869078,
          -3.2166935991697545,
          -2.9360778889459787,
          -2.81352831808339,
          -3.9823918536435667,
          -7,
          -3.9801852369473347,
          -7,
          -2.424291655008933,
          -7,
          -3.0935572398057647,
          -3.012492105236467,
          -2.5778327537276855,
          -7,
          -3.7392162193937257,
          -2.0820754602559584,
          -3.759554535696884,
          -4.044382947073537,
          -3.2895889525425965,
          -2.4143465095431558,
          -3.9826781933834843,
          -1.997850861270173,
          -3.274388795550379,
          -3.3991543339582164,
          -4.049528122277718,
          -7,
          -2.703525857283128,
          -2.3924091398153755,
          -7,
          -3.999174055588485,
          -3.5754765086019,
          -4.000564216165375,
          -2.148394076647004,
          -1.2149155345054852,
          -2.8887409606828927,
          -3.4993662825855276,
          -2.905278555134687,
          -7,
          -7,
          -3.0834399077661003,
          -3.481380730938571,
          -4.002573311204613,
          -7,
          -2.958159426578339,
          -2.8156515263728443,
          -2.7310795776557337,
          -2.7982507258405214,
          -7,
          -3.4265519237382676,
          -2.966125542521808,
          -2.5009222391903005,
          -3.1414497734004674,
          -2.6105841244865338,
          -3.1817619459703046,
          -3.0999630070456647,
          -7,
          -2.8560841179056817,
          -3.5389505620143615,
          -7,
          -3.038262407104784,
          -3.494548806405942,
          -3.1137147160910255,
          -7,
          -3.018423082826786,
          -3.4890791624977924,
          -7,
          -3.21622247191661,
          -7,
          -2.439963935920905,
          -4.2288621285305625,
          -3.203382607459245,
          -2.2599178382806886,
          -3.475053440975798,
          -3.1587644305616105,
          -3.5512059437479064,
          -7,
          -4.20725725871634,
          -3.998520882835038,
          -2.482873583608754,
          -2.8468229248922086,
          -3.4474681309497557,
          -2.844138148029867,
          -4.023293623036605,
          -7,
          -2.6380326155436737,
          -2.196775443561625,
          -2.4457366606080297,
          -3.578486396989049,
          -2.6516656039229356,
          -3.4759252997015397,
          -2.2270393595261635,
          -2.540621409441836,
          -2.9541547643169124,
          -2.7186932752898665,
          -3.7224693858840308,
          -2.840022407303227,
          -3.6804714924842656,
          -7,
          -7,
          -4.076931574555656,
          -4.009153331907709,
          -4.075510464524414,
          -2.7859904363508843,
          -7,
          -2.5705244084026475,
          -2.7468213460131796,
          -1.2734329281934174,
          -3.3744917249438164,
          -3.9995654882259823,
          -2.8299065411191857,
          -7,
          -3.174447484146129,
          -2.8343253137447935,
          -7,
          -7,
          -3.7344797894255772,
          -3.4122084658816805,
          -2.478166954695277,
          -7,
          -7,
          -7,
          -3.200394450079095,
          -7,
          -7,
          -7,
          -3.488325050357719,
          -2.5379003019699025,
          -2.299328972154782,
          -7,
          -3.222629776969852,
          -7,
          -3.993788813818705,
          -7,
          -3.697403723200488,
          -3.2155242642956994,
          -4.029708362514895,
          -3.0842783057223655,
          -3.8705502062680823,
          -3.1779531201340987,
          -7,
          -7,
          -4.096249383189612,
          -3.697447307372525,
          -7,
          -2.9444934006362775,
          -3.704193429194155,
          -4.003762020828246,
          -3.4918517497214157,
          -7,
          -3.0642707529740063,
          -7,
          -7,
          -3.576418141733162,
          -7,
          -3.0178997784978576,
          -3.329967072734659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.732956369575625,
          -3.8133808067338557,
          -3.7926717891415676,
          -2.887456539837175,
          -2.040307529721854,
          -3.2257047780485264,
          -2.918248827749846,
          -7,
          -7,
          -0.9223282460529392,
          -2.6785390710610772,
          -3.7841892053809607,
          -7,
          -7,
          -7,
          -7,
          -2.011607069177962,
          -3.054404108446577,
          -7,
          -7,
          -2.9605398778739156,
          -3.296957546032856,
          -3.742882171437273,
          -7,
          -3.136910727481376,
          -3.187168065939373,
          -7,
          -3.3366042522547557,
          -7,
          -3.7267272090265724,
          -7,
          -7,
          -3.5303277897780863,
          -7,
          -2.4595600073300266,
          -2.7180862947830917,
          -3.0029062314830117,
          -7,
          -3.076209454415462,
          -7,
          -3.452016565962548,
          -3.0620803445744653,
          -2.878737165940484,
          -2.8144854219696707,
          -3.043833654133147,
          -7,
          -3.9014038268252516,
          -7,
          -7,
          -2.6028442751136165,
          -3.878579238062219,
          -2.707774501898884,
          -3.5641134764517686,
          -3.449092531119419,
          -2.9863984686808234,
          -3.2749656245392864,
          -7,
          -3.7742979384992776,
          -3.775173385424787,
          -7,
          -3.460070543294161,
          -3.2287595554356354,
          -3.1756567472816637,
          -7,
          -3.4225077658680756,
          -3.0176890582210874,
          -7,
          -3.229383167513614,
          -2.9152558940469784,
          -7,
          -3.395792186900733,
          -3.3479277621718744,
          -7,
          -3.2455743529902925,
          -7,
          -7,
          -2.942928844081547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2948518494980625,
          -0.9394031466208936,
          -7,
          -7,
          -1.722654040330429,
          -1.5907875097913582,
          -1.7707342208950423,
          -3.1212314551496214,
          -7,
          -2.6933164903265205,
          -2.7744506055050415,
          -1.7031972085222742,
          -1.2320285860833922,
          -2.653051634172873,
          -2.0303914491326585,
          -7,
          -7,
          -7,
          -3.306425027550687,
          -3.7214808547700495,
          -3.1559430179718366,
          -3.3194530784907674,
          -3.0527900992334316,
          -2.7747146038137953,
          -7,
          -7,
          -3.4831592097169795,
          -3.1917303933628562,
          -3.015030256527944,
          -7,
          -7,
          -2.4768694167990635,
          -2.6151606643165564,
          -1.4414949041096847,
          -3.773127924033335,
          -2.9922220374838435,
          -1.5648467666795383,
          -7,
          -3.1646873716413735,
          -7,
          -3.7133141013747264,
          -3.3074247193348603,
          -3.2765192467342565,
          -3.246055196906444,
          -7,
          -7,
          -2.789563086219014,
          -3.5882156652289985,
          -7,
          -7,
          -3.1260540604734306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8874485002499535,
          -3.3066394410242617,
          -1.0719353440555819,
          -2.5489578218497693,
          -2.6817687053632726,
          -2.7477648067532146,
          -7,
          -7,
          -3.7895102040902544,
          -7,
          -2.9451275607861436,
          -7,
          -7,
          -7,
          -2.889004929377786,
          -7,
          -7,
          -3.524201327535919,
          -3.194930399217724,
          -7,
          -3.321184027302314,
          -3.8101652845431495,
          -3.861773296718693,
          -7,
          -7,
          -3.010582608444064,
          -3.8112397727532894,
          -7,
          -3.3038558443656467,
          -3.7453871213200087,
          -7,
          -7,
          -3.766635886310268,
          -7,
          -3.435525851498655,
          -7,
          -3.2734973252095054,
          -7,
          -3.5991732173529125,
          -7,
          -3.0976476867820897,
          -2.9499872660775432,
          -7,
          -7,
          -3.9357087478426633,
          -7,
          -7,
          -3.805908455074197,
          -2.9754974565302335,
          -3.4862178846679726,
          -7,
          -2.8763140831365024,
          -7,
          -2.6704314093606056,
          -7,
          -2.960153542690461,
          -3.1298831553406212,
          -2.6853508197908234,
          -7,
          -3.5222355133379852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4106928961632534,
          -7,
          -7,
          -3.8568496787251725,
          -4.439222132071866,
          -3.7745899502647946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.111732856611098,
          -2.7285059613658573,
          -3.0316697940536033,
          -3.124143004805479,
          -7,
          -3.7443712273318606,
          -3.753889331459834,
          -7,
          -7,
          -7,
          -3.3619166186686433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.81424759573192,
          -4.062473867166674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.981637424655769,
          -7,
          -2.5849770155376826,
          -3.1500268879309865,
          -7,
          -7,
          -7,
          -3.126114310736762,
          -7,
          -2.841381819328237,
          -7,
          -3.494046316227797,
          -3.295860195625301,
          -3.7368743616484226,
          -7,
          -4.163965982954884,
          -7,
          -2.5969425089920484,
          -2.8212951253416323,
          -3.7663384752512874,
          -2.8470239610502954,
          -3.284881714655453,
          -7,
          -3.7927417858347487,
          -3.4056309008934176,
          -3.2700962814203303,
          -7,
          -3.7393349601960795,
          -3.7939300067726847,
          -7,
          -7,
          -7,
          -3.5410172928456567,
          -3.167481436198042,
          -7,
          -7,
          -7,
          -2.7457153853103002,
          -2.1343802928411417,
          -7,
          -3.1770673239782408,
          -7,
          -7,
          -3.635031120946007,
          -7,
          -7,
          -3.599992177584098,
          -3.735319392367857,
          -3.2234959409623944,
          -3.1303873817883154,
          -3.246806220166817,
          -3.127535862467454,
          -2.8542345765249766,
          -7,
          -7,
          -7,
          -1.338855653016986,
          -2.8695250628572273,
          -7,
          -7,
          -3.5643109099606027,
          -7,
          -7,
          -3.745855195173729,
          -2.4066298088486584,
          -2.761401557498631,
          -3.780677274433368,
          -3.348158775313901,
          -3.2853322276438846,
          -3.039017321997412,
          -2.0385958961296025,
          -3.716523724333125,
          -3.7634279935629373,
          -3.4375920322539613,
          -3.469559330634179,
          -2.706595875112968,
          -7,
          -7,
          -7,
          -3.3116479226525204,
          -3.131578568842297,
          -3.7000110623221123,
          -3.836830286488879,
          -7,
          -7,
          -3.559487681797765,
          -3.7385427409287852,
          -7,
          -3.464638559095033,
          -3.360356702117789,
          -3.7434313651466837,
          -3.0314322280053934,
          -7,
          -7,
          -4.343733454537848,
          -4.805507654575986,
          -4.369234416606825,
          -3.952598734529773,
          -3.905765050916453,
          -3.7537055938395905,
          -7,
          -2.8913183835707033,
          -3.508518945641213,
          -7,
          -7,
          -3.793964905280631,
          -4.057582431413954,
          -4.114873582939299,
          -4.155133521965051,
          -7,
          -3.9370830455786803,
          -4.1683747008805305,
          -4.19041574703329,
          -4.101695532777102,
          -7,
          -4.442059730584969,
          -3.7698018112929326,
          -3.309596552000989,
          -2.986473147467338,
          -4.1162091258034,
          -3.7981238562219866,
          -7,
          -7,
          -3.0074836024192964,
          -7,
          -3.6770176510941748,
          -4.411737521817357,
          -4.308329596317398,
          -7,
          -7,
          -7,
          -3.4056877866727775,
          -7,
          -3.0926447886982458,
          -7,
          -3.2968676113707205,
          -3.304888879148899,
          -3.492585798277992,
          -1.9855315734532346,
          -2.8350059725018575,
          -3.3679147387937527,
          -2.2557597558295988,
          -3.2091276107865587,
          -7,
          -4.510250018728974,
          -3.103155305052969,
          -2.8879894216431103,
          -7,
          -2.685443151803357,
          -2.371337287669071,
          -7,
          -2.6768128503198643,
          -7,
          -7,
          -7,
          -2.9142077165291074,
          -2.3304081594443957,
          -4.166343830003034,
          -7,
          -7,
          -7,
          -3.2214142378423385,
          -4.0317315399458264,
          -3.5323520060651012,
          -3.075520892513991,
          -4.327481541402221,
          -7,
          -3.5071978624095173,
          -3.599268842327689,
          -3.861175835513029,
          -3.6414741105040997,
          -2.908773627744193,
          -2.899507835399982,
          -3.071596807492829,
          -2.6447831309233574,
          -3.4633703272924072,
          -2.9162188771060786,
          -3.4464503579779815,
          -2.967495974245274,
          -3.733317662782867,
          -7,
          -3.636287252098513,
          -3.240674027620307,
          -3.0661483724233816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3719524902252824,
          -3.545430829465351,
          -2.368385340810993,
          -7,
          -3.823213313282668,
          -3.064881008648573,
          -3.555094448578319,
          -3.352504098638387,
          -7,
          -3.0134271270706963,
          -7,
          -3.3814503138271546,
          -2.644635503768153,
          -3.4559862390673195,
          -7,
          -7,
          -7,
          -3.0678609473534806,
          -7,
          -7,
          -4.030963842378275,
          -3.454387467146955,
          -7,
          -7,
          -2.5839540689101295,
          -7,
          -3.33139837151611,
          -7,
          -7,
          -7,
          -3.5423812529322762,
          -3.541283570850919,
          -7,
          -7,
          -2.7103777725439344,
          -7,
          -3.105453410538649,
          -7,
          -3.5029730590656314,
          -2.4259105639374527,
          -7,
          -7,
          -7,
          -2.8975583683720445,
          -3.9800033715837464,
          -7,
          -7,
          -3.4815859363676225,
          -3.758609142659744,
          -2.916980047320382,
          -2.6522463410033232,
          -4.309757882316366,
          -7,
          -2.834791465503346,
          -3.2049877041871517,
          -7,
          -3.3182025096096512,
          -7,
          -7,
          -3.799994944688714,
          -3.058552548706088,
          -2.928986233688613,
          -2.7049508491377243,
          -3.460747541844197,
          -7,
          -7,
          -3.7707415837527742,
          -7,
          -3.7272565137622964,
          -7,
          -3.0598788326016764,
          -2.6280350619091335,
          -3.794766797940821,
          -7,
          -2.8080917649591837,
          -2.587738559420033,
          -3.1033149257643444,
          -3.8483738838446016,
          -3.3554515201265174,
          -3.5828584622244994,
          -4.0080889362915775,
          -7,
          -3.0763042807313594,
          -3.9702073588068547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.924574624041236,
          -7,
          -3.1708932853355596,
          -7,
          -3.9831750720378127,
          -3.202945801696211,
          -7,
          -2.921859811938469,
          -7,
          -3.3373926976485757,
          -7,
          -2.729355395130064,
          -3.670987603010034,
          -3.9820449790714902,
          -7,
          -2.8600716907681347,
          -3.1773200201636933,
          -3.108712057787089,
          -3.7664872062396944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.044657333234866,
          -7,
          -3.5280163411892014,
          -7,
          -3.7567121601647715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.354876422516234,
          -3.161368002234975,
          -3.061603249608375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8048206787211623,
          -7,
          -7,
          -3.4837298990000236,
          -3.94733567594874,
          -7,
          -3.948070481518941,
          -3.353868165568988,
          -3.403763761701065,
          -2.6292322636646066,
          -7,
          -3.270539094260548,
          -3.0385943597739256,
          -3.0535585922132595,
          -7,
          -3.9561684304753633,
          -2.3530556915282013,
          -2.1914367737841034,
          -2.9452894946212806,
          -3.0684641664541177,
          -7,
          -3.9540011676815703,
          -3.3470371337849536,
          -2.093275728352962,
          -3.165487137148075,
          -7,
          -2.0139578976422134,
          -2.264080969652978,
          -2.6177294820802555,
          -3.359835482339888,
          -3.946452265013073,
          -2.2761274421265845,
          -2.646715543393583,
          -3.965577957910528,
          -2.92973814254741,
          -2.8341481053996023,
          -3.9525018478630236,
          -3.475864810477393,
          -3.4889265663567914,
          -2.8705711023867333,
          -3.9588981947107715,
          -2.610165674027065,
          -3.3459125879178178,
          -2.9868938242680527,
          -3.2646761821488246,
          -2.7197410408069143,
          -3.6547539332529304,
          -3.122777405533776,
          -2.7000440709473397,
          -2.90655949500245,
          -2.141777003410443,
          -3.66138669778177,
          -3.077231599016813,
          -3.587299293713931,
          -1.5092877328770893,
          -2.7753748316507534,
          -2.30967921752499,
          -3.048325250931222,
          -1.761791203377117,
          -2.933963422726495,
          -3.489349009009622,
          -2.8607985521941135,
          -2.631287632221304,
          -3.375434977745074,
          -3.2028060658459765,
          -3.2826221128780624,
          -3.9529860651970554,
          -2.93104159179914,
          -2.1079754391582166,
          -2.659024363596743,
          -3.4774106879072515,
          -7,
          -1.5358280206796917,
          -7,
          -2.5942662377207433,
          -2.4286861041401493,
          -3.953131225183445,
          -2.868174040859638,
          -2.607009269756605,
          -7,
          -3.027879409207207,
          -7,
          -3.9600424557268417,
          -1.046014774029043,
          -2.7174624577374917,
          -3.485437481076301,
          -7,
          -3.571514733712986,
          -3.9739125704197047,
          -3.283188116453424,
          -2.44973545423003,
          -3.1066158013985747,
          -4.004622265700783,
          -2.121679960668872,
          -2.5669528005652698,
          -2.1949455422460873,
          -3.2513948500401044,
          -7,
          -3.344667305256552,
          -2.4742162640762553,
          -2.540571646441333,
          -2.623676956096569,
          -3.65571454961871,
          -2.492721597147762,
          -3.675319983339292,
          -7,
          -3.946697837245742,
          -2.5079294331360718,
          -3.949390006644913,
          -2.568848838333719,
          -3.091842749738098,
          -1.5699371688614308,
          -2.317561393668647,
          -3.6692238739308056,
          -3.6587266773270137,
          -3.385338107809055,
          -3.2152849801139682,
          -2.1863912156954934,
          -3.2805783703680764,
          -7,
          -2.544729322714663,
          -2.7960993949284183,
          -2.6548294872160803,
          -3.076958858073013,
          -2.484056206386171,
          -2.4166807626547953,
          -3.492620722043192,
          -3.708505880955237,
          -2.856961145846947,
          -2.928119371404327,
          -3.288651577789465,
          -2.7052025967595776,
          -2.8152630801675933,
          -7,
          -3.496145181388866,
          -1.3240510899823537,
          -2.49735205752346,
          -7,
          -7,
          -2.660975405102324,
          -7,
          -7,
          -7,
          -3.350780865347739,
          -3.9467960272714606,
          -2.3327138236457876,
          -3.2935203938852355,
          -2.275514596639852,
          -2.065426316232098,
          -7,
          -3.902601130666531,
          -3.6475296664449806,
          -3.9581336756762355,
          -3.2123208031419757,
          -3.995393852839795,
          -2.816414233820151,
          -3.947090464219622,
          -3.4832543766904958,
          -2.932704318635906,
          -2.9914878626507724,
          -3.948070481518941,
          -7,
          -2.8988517058385757,
          -2.995108457744741,
          -3.6522463410033232,
          -3.0416996535532257,
          -4.004020273253242,
          -2.86053763630648,
          -2.827651924858077,
          -2.9688648578400763,
          -2.6825552912734185,
          -2.8897325502419475,
          -2.9256401970004773,
          -2.5076507428312356,
          -7,
          -7,
          -3.642662331442035,
          -3.3743358452839174,
          -3.6603910984024672,
          -3.958468318366944,
          -7,
          -2.6917573560607426,
          -3.115705584897513,
          -3.739999309401968,
          -7,
          -2.602028056736095,
          -2.4108090192081186,
          -3.075774997355713,
          -2.720060024749243,
          -2.7445063432261585,
          -3.518908573691414,
          -2.9520655901850503,
          -3.398981066658131,
          -3.3119233087683617,
          -3.0858700833983947,
          -3.1558563583922012,
          -2.8231995765243703,
          -3.4891613074478007,
          -2.7713201816071438,
          -7,
          -2.624433032288266,
          -2.8391427171910273,
          -2.540789578241321,
          -3.6545615547417434,
          -2.874675052177361,
          -7,
          -3.3717757087299467,
          -7,
          -3.046841871852895,
          -7,
          -3.1221222197687104,
          -2.3409789022165466,
          -2.5057664361691927,
          -7,
          -2.6903571983690386,
          -4.015960198014766,
          -2.9116341316000836,
          -7,
          -3.946452265013073,
          -3.3589337176143736,
          -3.046446386384199,
          -3.4779889762508893,
          -3.061640934061686,
          -7,
          -3.36726271478424,
          -2.755401682048161,
          -2.2011454740196874,
          -2.8779667865031113,
          -3.219779278778598,
          -7,
          -3.360735378529271,
          -2.821513528404773,
          -2.227435630121624,
          -3.9474337218870508,
          -3.475816413031318,
          -2.5581704369024063,
          -2.724103325108292,
          -7,
          -7,
          -7,
          -7,
          -3.958516103423041,
          -7,
          -7,
          -3.705521613422667,
          -2.771410537267909,
          -7,
          -7,
          -7,
          -7,
          -3.6738499773429494,
          -3.6707559422151332,
          -7,
          -3.3729120029701067,
          -3.3427515672308834,
          -2.6481902486483087,
          -2.329989509639039,
          -2.6043136389437773,
          -2.860808415686055,
          -7,
          -7,
          -1.3576684505145458,
          -2.8140393908849854,
          -1.5777708887153012,
          -7,
          -3.3450613590263587,
          -3.5034729010565577,
          -3.3562171342197353,
          -3.3582680592021807,
          -2.0656960916656666,
          -2.5969425089920484,
          -7,
          -2.0358363276893177,
          -2.9537312739689847,
          -2.1873444291831783,
          -2.4942009905231504,
          -3.9527440240148985,
          -3.3906260478341657,
          -2.846723598300994,
          -2.897784131423016,
          -7,
          -3.6589172200445175,
          -3.294378035587241,
          -3.3561215062369856,
          -3.5269850685599957,
          -7,
          -2.744540022083776,
          -2.8112397727532894,
          -3.2908801052671617,
          -3.3471738364132073,
          -4.000173683058465,
          -3.0500714737493366,
          -2.2460004869402757,
          -7,
          -2.8287227557743795,
          -7,
          -3.1324883979895946,
          -2.1855529128395355,
          -3.108776369535781,
          -3.036479181663958,
          -2.8872420998960684,
          -2.6412036063023283,
          -2.866962102446818,
          -3.2913318435509678,
          -2.7976747937505664,
          -3.1359305235761137,
          -2.403424968774618,
          -3.946599625015133,
          -7,
          -7,
          -2.555466514980946,
          -2.4230714934960376,
          -3.963693405238019,
          -3.4944792655103964,
          -2.4461227639106142,
          -3.0040346161083726,
          -3.117395598804608,
          -3.1853532490306473,
          -2.678193089172533,
          -3.0193009590931648,
          -2.4913164995492116,
          -3.4966183382484775,
          -3.274942566083686,
          -2.8392937923597086,
          -2.0989869485301065,
          -3.1175533996403244,
          -7,
          -3.3857849588433355,
          -2.849655016246537,
          -1.9660799510358338,
          -7,
          -3.5042895854462257,
          -7,
          -3.3740147402919116,
          -2.401491236089779,
          -1.789187032292866,
          -2.7410271294508175,
          -3.6482624057480444,
          -7,
          -3.036269495742815,
          -7,
          -7,
          -3.675044735955893,
          -2.9024448521908397,
          -3.66138669778177,
          -2.2121220818387344,
          -7,
          -7,
          -3.147066775257319,
          -3.829413136929344,
          -7,
          -3.498103697638082,
          -3.999869692108268,
          -3.390880782945212,
          -2.946288473013431,
          -3.002340719023859,
          -2.2019399337761323,
          -2.7735670489260587,
          -3.3925210899319325,
          -4.154241330167298,
          -3.7040718331758637,
          -4.129758349398127,
          -3.043605512125445,
          -4.1721064777924965,
          -3.346384273825947,
          -3.060230250097313,
          -4.281873856870123,
          -3.98391181439848,
          -4.0841829114204735,
          -4.1472897692695145,
          -4.434297385124508,
          -2.8941621612398625,
          -2.142347745144511,
          -4.172748838982743,
          -3.7315001246145556,
          -3.6760531246518715,
          -7,
          -3.158881948644272,
          -4.357668093043634,
          -3.706197776014635,
          -4.468952557265534,
          -7,
          -7,
          -7,
          -4.201915782740697,
          -3.719934712141819,
          -3.143308763870973,
          -2.018017951790213,
          -3.980866554582079,
          -3.008615941064652,
          -3.005539729015686,
          -3.205664407371687,
          -2.391545786109887,
          -2.848262446579062,
          -3.424514126822372,
          -2.5478473545856404,
          -2.917051738708869,
          -3.759592308645975,
          -3.8573807486930707,
          -2.792478696306499,
          -2.487705415687573,
          -7,
          -2.738829325480311,
          -2.85314753632743,
          -7,
          -2.8411210108843323,
          -3.5505680437113667,
          -4.114777731971562,
          -7,
          -2.8499391912595735,
          -2.7242179266966917,
          -4.090214370967739,
          -7,
          -3.2771506139637965,
          -3.963031875053898,
          -3.3405014000346305,
          -4.158121150337495,
          -3.5741404480439325,
          -4.0068295849344855,
          -3.918833842068481,
          -7,
          -3.4676229024178253,
          -3.101710259449637,
          -3.5377435590296185,
          -3.3147798252899086,
          -2.6134894531087443,
          -3.0224283711854865,
          -3.038128173022914,
          -2.384510219368008,
          -3.6742639196922253,
          -2.2994462066840407,
          -3.45014789315114,
          -3.476940260975887,
          -3.7102321082951955,
          -7,
          -3.3111178426625054,
          -3.1091965308476417,
          -3.5458481008534783,
          -7,
          -7,
          -7,
          -7,
          -3.8308131351407133,
          -1.8312226028239351,
          -2.299141220240316,
          -1.5225415500375052,
          -7,
          -2.8974579076179072,
          -2.3583098729804317,
          -2.8287404332962187,
          -2.8394780473741985,
          -3.3550202683299375,
          -2.4795064594884484,
          -7,
          -2.5461004834142376,
          -2.228414422871205,
          -2.6070818778952654,
          -3.7211095747344105,
          -3.3831568450325724,
          -3.174558185305092,
          -2.8116755253669115,
          -7,
          -7,
          -3.0106330626283864,
          -7,
          -3.9753858489894673,
          -2.341606539426177,
          -2.4430393548678095,
          -7,
          -2.5048222618840112,
          -7,
          -3.6536465912546623,
          -3.299416493405678,
          -2.6801712307043437,
          -2.8510773029398084,
          -7,
          -3.4448641829020725,
          -2.0474565968529115,
          -7,
          -2.3245154042476206,
          -7,
          -2.74342265320835,
          -1.4326116352142744,
          -7,
          -3.6542728270977105,
          -3.430840687404714,
          -2.404175594836316,
          -2.612850055101375,
          -7,
          -3.0499928569201424,
          -2.6626679063304084,
          -3.494432898726399,
          -2.428049496084509,
          -1.9017122104576005,
          -3.6818199109880556,
          -7,
          -2.1542606375239313,
          -2.3302634204025954,
          -7,
          -1.9868509706251407,
          -7,
          -7,
          -3.169059607803795,
          -2.6216747070193795,
          -2.0873167387804843,
          -2.469124104866961,
          -2.6410135085221333,
          -3.300465045540311,
          -7,
          -7,
          -3.3653475652695106,
          -3.2008808842713874,
          -7,
          -2.5286264657570126,
          -1.7772683830244533,
          -3.3919050068671566,
          -7,
          -1.8379315022237082,
          -1.8349213979782772,
          -2.604365428721707,
          -2.948779613737823,
          -2.4277218284229525,
          -3.0105312308878815,
          -2.6334684555795866,
          -2.6881527555915663,
          -2.269077790844336,
          -2.998225795694823,
          -3.2159458392045663,
          -3.5105003274058215,
          -3.9494875899465036,
          -3.9456162792267317,
          -3.591940663624408,
          -4.051345499336539,
          -2.545352940204395,
          -2.7696882025975755,
          -2.0605408948064348,
          -3.321722674346009,
          -2.80174661921946,
          -3.0049209520857496,
          -2.486599130358205,
          -2.2167368891063215,
          -7,
          -2.7266843220979933,
          -7,
          -2.4131286270329313,
          -2.2773395080498693,
          -7,
          -7,
          -2.486108325822895,
          -2.463440504592086,
          -2.142299301357695,
          -3.021602716028242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.119945364700318,
          -7,
          -2.599211049530462,
          -3.6645479622465467,
          -7,
          -3.478566495593843,
          -3.6614813978436156,
          -3.674355853325486,
          -3.9676883504533125,
          -2.8027737252919755,
          -3.398764385277643,
          -3.121723945637367,
          -3.673941998634088,
          -7,
          -3.972480549876476,
          -3.9469923407483725,
          -4.0718083918331285,
          -3.96773513178388,
          -7,
          -2.909599687897347,
          -3.6738499773429494,
          -3.1946993054635864,
          -4.069557104582695,
          -7,
          -2.8614149186359965,
          -7,
          -3.954531942626914,
          -3.7255441224863532,
          -7,
          -2.963180469568511,
          -3.398287305357401,
          -7,
          -3.9439394644722165,
          -7,
          -3.6921416093667836,
          -7,
          -3.693463127219531,
          -3.707995746422929,
          -3.190261645023611,
          -2.866877814337499,
          -3.4073909044707316,
          -7,
          -2.970209473041643,
          -7,
          -7,
          -7,
          -2.414973347970818,
          -2.574872720123483,
          -2.983175072037813,
          -3.036309443724438,
          -7,
          -7,
          -3.695831772826692,
          -2.386923809374673,
          -3.60859734044574,
          -7,
          -2.3881108067741996,
          -1.8815234700203676,
          -2.0725080174785213,
          -2.22212884925967,
          -3.0879587894607328,
          -1.8312160648801672,
          -2.0114042816397744,
          -3.0248139326293106,
          -2.69675950864028,
          -1.5676347070372152,
          -3.400192488592576,
          -7,
          -2.946615995262667,
          -2.4868014257497535,
          -2.808464181258226,
          -3.1773055843418603,
          -7,
          -2.334518605101907,
          -3.721728198572788,
          -3.0938052541904826,
          -3.406199423663313,
          -3.029789470831856,
          -2.82033284489941,
          -2.9817431236418557,
          -2.6667642211250104,
          -3.719082573901486,
          -2.177107335873833,
          -3.4072775708370235,
          -2.6480596170682786,
          -3.1920793644398113,
          -2.352828858482244,
          -2.4429016775527446,
          -1.802540912426264,
          -2.549820373239367,
          -7,
          -3.0425755124401905,
          -2.263969709649385,
          -3.745465168670727,
          -3.0520780304841693,
          -3.150065315969936,
          -3.2247919564926817,
          -2.5897102986388356,
          -3.212986184736668,
          -2.870044593762679,
          -3.1027766148834415,
          -7,
          -2.4105585475204636,
          -7,
          -3.0399426187629923,
          -1.8946411942600978,
          -7,
          -3.855216194733363,
          -3.067133927073089,
          -7,
          -2.7134905430939424,
          -7,
          -7,
          -2.520337942903055,
          -3.1158766642684443,
          -2.6764441823287006,
          -7,
          -2.6032045367100345,
          -2.6230106014763095,
          -2.2220224326748212,
          -2.7241665993820963,
          -1.5038345977629068,
          -7,
          -2.5814207285366333,
          -3.4220423867575565,
          -2.6283597328011896,
          -3.6982745766743674,
          -7,
          -7,
          -2.841359470454855,
          -2.8827774391015835,
          -2.639066881040868,
          -3.407900540142635,
          -3.2275595172362737,
          -7,
          -3.6924062348336304,
          -3.690993032099869,
          -2.3987919689126604,
          -7,
          -1.6148441756713314,
          -2.871280972857973,
          -2.0039671161887616,
          -1.932232548261451,
          -3.1301728888925355,
          -3.0147724740730637,
          -2.983325529161058,
          -3.073058160988836,
          -2.3720290118169007,
          -3.4479328655921804,
          -7,
          -2.5185139398778875,
          -2.6449307079135873,
          -2.3709679555581826,
          -3.4492469194900117,
          -2.9061329346974785,
          -2.867162094299147,
          -3.430800424624181,
          -3.278410601475816,
          -2.6546577546495245,
          -3.0582403888560155,
          -2.719858389150438,
          -2.1143683277196983,
          -2.9293678292400998,
          -3.400537989391946,
          -7,
          -2.4928140951397983,
          -2.265466419871781,
          -7,
          -3.392169149489736,
          -3.1425771609205344,
          -7,
          -7,
          -7,
          -3.7025166974381505,
          -7,
          -2.976005892508129,
          -3.2142255094151593,
          -2.3095833760147775,
          -3.4915017662373264,
          -7,
          -7,
          -3.3933119147002,
          -3.7113853790984517,
          -2.4862439983320517,
          -7,
          -2.161722544441352,
          -7,
          -3.71566914240099,
          -2.3569018525943553,
          -2.579250665393085,
          -3.693463127219531,
          -7,
          -7,
          -3.775974331129369,
          -2.398634324538392,
          -2.8731025277551283,
          -3.789369153591482,
          -2.9393944374196264,
          -3.0570952896126675,
          -3.02208453894371,
          -2.9649482675333863,
          -3.0909630765957314,
          -3.4274049553102737,
          -2.7517684311534323,
          -3.419955748489758,
          -3.3903167684708406,
          -7,
          -3.743588150159904,
          -7,
          -3.2345172835126865,
          -7,
          -2.381098044543058,
          -7,
          -3.894777440059079,
          -7,
          -2.685338597906292,
          -2.282687707978652,
          -3.7484206224675685,
          -2.923055522758436,
          -2.4861417453935593,
          -2.8723748223537955,
          -2.7918819541323385,
          -3.182414652434554,
          -3.3237332367838985,
          -3.065878352857392,
          -3.0856472882968564,
          -2.6848453616444123,
          -3.424799994656599,
          -3.356694958541127,
          -7,
          -2.92236858804445,
          -3.5083276745471244,
          -4.121477770204095,
          -7,
          -2.8505663306447584,
          -7,
          -3.2298950557747066,
          -7,
          -3.308279770272725,
          -3.716504163773217,
          -3.427080188436359,
          -2.1304659536982493,
          -2.230252363564598,
          -7,
          -2.2774818738891915,
          -4.133363239048624,
          -3.1609184995397808,
          -7,
          -7,
          -3.23946632295603,
          -3.697316541732383,
          -3.7063763558396903,
          -3.246662682245667,
          -7,
          -2.885361220031512,
          -2.5807522321540293,
          -1.964912873816937,
          -3.078891619840223,
          -3.8592675919480897,
          -7,
          -2.5717919901587556,
          -2.5819009187422806,
          -3.160843537171095,
          -3.089728533074736,
          -3.0028569260611206,
          -2.3691495680897208,
          -3.187520720836463,
          -3.1855421548543754,
          -7,
          -7,
          -7,
          -7,
          -3.688330818112266,
          -3.2234094022589295,
          -3.4924810101288766,
          -3.1928083410077157,
          -3.086448816328559,
          -2.9136372740190546,
          -7,
          -7,
          -3.4394905903896835,
          -3.2579184503140586,
          -7,
          -2.534660575828444,
          -3.4904267214991997,
          -2.8007857903277626,
          -3.067112203642098,
          -2.3661645491690666,
          -7,
          -7,
          -7,
          -2.8427825345659374,
          -3.1148110738380637,
          -2.539618543181053,
          -3.0432050388876584,
          -3.0933438476350257,
          -7,
          -7,
          -3.0161136663589083,
          -2.3879725044726805,
          -2.8212951253416323,
          -2.0358363276893177,
          -7,
          -3.152441238058955,
          -3.4800069429571505,
          -2.9600741977588614,
          -7,
          -3.293657141449485,
          -2.750092830418938,
          -2.648603928135281,
          -7,
          -3.71474876072506,
          -3.2949069106051923,
          -3.41077723337721,
          -3.1873091622635195,
          -7,
          -2.1354639462909284,
          -2.0249984726730275,
          -2.8110534202587316,
          -3.856910060300786,
          -7,
          -3.154175460464973,
          -2.689486448364248,
          -7,
          -2.7620011370674376,
          -3.6994908452722046,
          -3.7460890430562004,
          -1.4552075276553922,
          -2.957196671383207,
          -2.7864287425245773,
          -2.3364025484535027,
          -2.4530289344127074,
          -2.324830980134619,
          -3.113887669957648,
          -2.787589268849698,
          -3.7072588938204274,
          -1.4415129606146837,
          -7,
          -7,
          -7,
          -2.801189254192592,
          -1.533620412909489,
          -3.721150843749684,
          -3.4340097093697395,
          -2.0401374979206164,
          -2.2612628687924934,
          -2.167787096267102,
          -3.4204508591060683,
          -2.9752479412406814,
          -3.039889797736181,
          -2.393308097750179,
          -2.363713593014251,
          -7,
          -3.3914814754495763,
          -2.7426798207116816,
          -3.760462770747876,
          -3.74020473550745,
          -2.275064432627511,
          -2.820697951673249,
          -1.4346404576189893,
          -7,
          -7,
          -3.2305340688115245,
          -2.349915522861571,
          -2.172144044533389,
          -1.5707500201996958,
          -2.002705893375925,
          -2.791515211941625,
          -7,
          -2.4412236742426123,
          -3.1113465408397287,
          -3.4346487302419235,
          -3.0431263979672254,
          -2.6912288854662814,
          -3.4178866903508798,
          -1.7526431342571807,
          -3.6869042695681773,
          -3.2143138974243994,
          -3.279637191397853,
          -4.201349321982644,
          -4.36359317885827,
          -7,
          -4.447576613522922,
          -3.4936593893103947,
          -3.7782236267660965,
          -3.0686671411769404,
          -2.9696705018636695,
          -4.144044637110949,
          -7,
          -4.0897638544916886,
          -3.851113049853365,
          -4.11361333017611,
          -3.424799994656599,
          -7,
          -3.56643749219507,
          -3.529869441846403,
          -7,
          -3.7953759433255803,
          -7,
          -4.116986791074787,
          -3.889170927490876,
          -3.1534083167071616,
          -3.389621664607619,
          -7,
          -4.096605900418895,
          -4.296379953771385,
          -7,
          -3.3281008587026437,
          -4.275311354541811,
          -3.636696802260469,
          -4.406625327867205,
          -4.301832698184397,
          -7,
          -3.917977882592908,
          -4.078565559317117,
          -4.038792309231842,
          -3.9943171526696366,
          -3.3158368132320577,
          -3.0511525224473814,
          -3.630343109828716,
          -3.275746726696121,
          -3.0420741003156624,
          -3.174447484146129,
          -3.5076366460222475,
          -7,
          -2.9011006530221057,
          -3.3763031557559207,
          -7,
          -3.8071018705893316,
          -2.6194835119620117,
          -2.879129136471997,
          -7,
          -3.1596492103844547,
          -3.198931869932209,
          -7,
          -3.182577675890636,
          -3.6697041939618917,
          -3.958516103423041,
          -7,
          -3.197433250218922,
          -3.1356263628227774,
          -4.431429792218557,
          -3.712986233594383,
          -2.5873835309602837,
          -7,
          -3.4197951747985944,
          -7,
          -4.298926935444693,
          -3.515211304327802,
          -3.542908378823037,
          -7,
          -3.6270755470762954,
          -4.021230658479703,
          -3.4910280061636856,
          -3.4500437195797073,
          -3.062540203047516,
          -3.131056990114102,
          -3.506780736959667,
          -3.3152539527018177,
          -3.263951517653659,
          -2.561290725973153,
          -3.8627962621128322,
          -3.304221164444191,
          -3.67472530682938,
          -7,
          -3.4446692309385245,
          -2.999159551305879,
          -4.082623825798577,
          -7,
          -7,
          -7,
          -7,
          -3.9828589423120753,
          -2.7805101861860018,
          -2.8722210396534766,
          -2.2649068816547584,
          -7,
          -3.803047210491129,
          -3.041425585009148,
          -3.837588438235511,
          -2.808818425092124,
          -3.408833321776418,
          -3.1556829873392385,
          -3.69810054562339,
          -3.2583395325646,
          -2.651889840089335,
          -3.733598460961339,
          -3.2163638637641165,
          -3.949999542859922,
          -7,
          -2.8771312847935695,
          -7,
          -7,
          -7,
          -7,
          -3.741387992479269,
          -2.260141565650559,
          -2.5886637957802043,
          -7,
          -3.4688197748230705,
          -7,
          -3.2279723558282107,
          -4.165620175981658,
          -3.2459991511977875,
          -3.671985639697291,
          -7,
          -2.815396603595091,
          -2.334989586483437,
          -7,
          -2.7862188721316765,
          -7,
          -3.4818724103106633,
          -2.458078374515982,
          -7,
          -3.7065471026403576,
          -2.8808770809852247,
          -3.3029799367482493,
          -2.7340935447008627,
          -3.7279477095447966,
          -3.091315159697223,
          -2.8564267724702446,
          -3.735119634081872,
          -2.6851213670441716,
          -2.8266300482253013,
          -4.002209272988015,
          -7,
          -2.4983105537896004,
          -2.7100609229151154,
          -3.8107700112343634,
          -3.48737408483543,
          -7,
          -7,
          -7,
          -2.8166389448984614,
          -2.424804525369085,
          -3.0863598306747484,
          -7,
          -7,
          -7,
          -4.060584531360865,
          -2.882036383746232,
          -7,
          -7,
          -3.216759516219574,
          -2.6331047079116674,
          -7,
          -7,
          -2.703823426271219,
          -2.2709954180459664,
          -2.891588136764973,
          -2.484235111053663,
          -2.9931186605828173,
          -2.6606283529737342,
          -2.4736859899176977,
          -2.534772444926707,
          -3.1404223298412495,
          -7,
          -7,
          -2.681618065583093,
          -3.6960067152185454,
          -3.3878345723908105,
          -3.8346590868996135,
          -3.563303059369412,
          -3.446537167073644,
          -3.862131379313037,
          -3.013998045006722,
          -3.8169038393756605,
          -3.2769670381470917,
          -3.3673120617569547,
          -2.723407376846712,
          -2.7115662221083117,
          -3.4288634082992564,
          -2.3278871661342855,
          -7,
          -2.5128226971247,
          -3.0028856882374884,
          -7,
          -7,
          -3.1923583395461788,
          -2.5792499247558665,
          -2.6385935525920776,
          -2.8973914245675183,
          -7,
          -7,
          -3.690993032099869,
          -7,
          -7,
          -7,
          -3.187077336947106,
          -7,
          -2.1701252091917578,
          -3.7246035153967165,
          -7,
          -7,
          -3.719248398447946,
          -7,
          -7,
          -2.83714634390906,
          -3.7845459740545224,
          -3.1227450294577785,
          -3.5324995860946626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3512405258734037,
          -3.740678425227455,
          -7,
          -7,
          -3.552242228356702,
          -3.844725627973226,
          -7,
          -7,
          -3.348499570283838,
          -7,
          -3.4746047207049298,
          -3.004894321731049,
          -7,
          -7,
          -3.538824988937904,
          -7,
          -7,
          -7,
          -2.627557866535542,
          -3.898560644939712,
          -3.8816128724783483,
          -7,
          -7,
          -3.5306909461351617,
          -3.5786010117639133,
          -7,
          -7,
          -3.2983369335263792,
          -3.4485324127444223,
          -3.397360562979804,
          -7,
          -7,
          -7,
          -7,
          -3.145600357652248,
          -2.996011044453897,
          -7,
          -4.03450813677917,
          -3.1519342490354973,
          -7,
          -7,
          -7,
          -3.917558020825436,
          -3.401802479247905,
          -7,
          -3.599817595608217,
          -3.866759783495108,
          -7,
          -7,
          -7,
          -3.436162647040756,
          -7,
          -3.9657189702442213,
          -7,
          -3.2284516907144,
          -7,
          -2.6217437266564927,
          -7,
          -7,
          -3.1425980108920646,
          -3.873611196996467,
          -3.722921711759407,
          -7,
          -7,
          -7,
          -3.876044550246095,
          -7,
          -3.020560949095022,
          -3.475525915039281,
          -2.8728613710631836,
          -3.7926717891415676,
          -7,
          -3.2570182334190068,
          -3.3494717992143856,
          -7,
          -7,
          -7,
          -7,
          -3.0774284721180742,
          -7,
          -3.01747601299904,
          -7,
          -7,
          -3.4628470358316736,
          -7,
          -3.4619859715365204,
          -7,
          -3.8294967497201826,
          -3.6471383660631504,
          -3.010730096257863,
          -7,
          -7,
          -7,
          -7,
          -3.0950742053076143,
          -3.3140253085157405,
          -7,
          -7,
          -3.651423400759052,
          -7,
          -3.4913149929920424,
          -3.6851144690465394,
          -3.4266196859018763,
          -3.896691526562884,
          -2.795850342116538,
          -3.5069557791831683,
          -2.9902343565960714,
          -7,
          -7,
          -3.247138226100887,
          -7,
          -3.457124626303409,
          -3.5237464668115646,
          -7,
          -2.9264710693074494,
          -7,
          -7,
          -7,
          -2.988084942758665,
          -3.824516328007209,
          -3.029586671630457,
          -2.60422605308447,
          -3.1157768761589635,
          -2.541274399474468,
          -3.8522359394118872,
          -7,
          -7,
          -3.8828659197216293,
          -3.441909267199942,
          -7,
          -7,
          -3.921686475483602,
          -3.9864582127373063,
          -3.719124035974352,
          -7,
          -3.32376758329678,
          -2.834323931127906,
          -7,
          -7,
          -7,
          -4.543248315911594,
          -3.875234946450165,
          -3.1744959193752993,
          -3.1061483839765227,
          -7,
          -7,
          -3.094204843455665,
          -3.0581886920930996,
          -7,
          -7,
          -4.470145775899696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3850619961350192,
          -3.5852350633657752,
          -3.1340920685160083,
          -4.042142183064956,
          -7,
          -4.1386184338994925,
          -7,
          -7,
          -3.879038505237237,
          -4.244697601296708,
          -3.3317983298469445,
          -7,
          -7,
          -7,
          -3.080690136910718,
          -7,
          -3.118991800195975,
          -3.062689403096359,
          -3.2830749747354715,
          -7,
          -3.8864343196289384,
          -7,
          -7,
          -3.45540324233088,
          -3.904985881099363,
          -3.8365139988906716,
          -2.816407029618638,
          -7,
          -3.04598910818908,
          -3.843481943039958,
          -7,
          -7,
          -3.5593679094633317,
          -3.84060787900929,
          -7,
          -7,
          -3.464012366249414,
          -7,
          -3.4021409672924676,
          -3.8232785569516707,
          -2.978446826907944,
          -3.139290486943393,
          -7,
          -7,
          -3.5241796783007557,
          -7,
          -3.9316612396844812,
          -3.591287265058499,
          -3.60400993241223,
          -3.5761685196078083,
          -7,
          -2.3435133465677946,
          -2.8045111537405574,
          -3.7327956982893293,
          -7,
          -2.621320560864068,
          -3.610606937465461,
          -3.4080702858871854,
          -7,
          -3.07995263964635,
          -7,
          -7,
          -7,
          -3.893040111957118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.840294331611436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.52283531366053,
          -3.9940090331236133,
          -3.590817721976693,
          -7,
          -3.541516840831034,
          -7,
          -7,
          -7,
          -7,
          -3.919966701483387,
          -2.895422546039408,
          -7,
          -7,
          -7,
          -3.130140705819276,
          -3.836640541572774,
          -7,
          -7,
          -2.574857708475501,
          -4.01789087330904,
          -7,
          -3.8221680793680175,
          -7,
          -3.8356271662098975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6047119317276204,
          -3.485224400125799,
          -3.2010897317287084,
          -7,
          -7,
          -7,
          -3.1979450755719085,
          -7,
          -3.049174935762869,
          -7,
          -3.4378260332318917,
          -3.8658735282078145,
          -7,
          -7,
          -3.902954248756145,
          -3.7663384752512874,
          -2.9537312739689847,
          -3.152441238058955,
          -7,
          -2.985650973690949,
          -3.555880064636805,
          -7,
          -7,
          -3.6554265877459184,
          -3.470410490975931,
          -7,
          -3.8386602259889413,
          -7,
          -3.5354207180561734,
          -7,
          -7,
          -3.1436912310222143,
          -3.4669565452730775,
          -3.8781194846971676,
          -3.2502735862322463,
          -3.890979596989689,
          -3.033214968915833,
          -2.91437427261162,
          -3.831677849191467,
          -2.9283275615919133,
          -7,
          -3.561280314290289,
          -7,
          -7,
          -4.1820721038573865,
          -3.494618336168116,
          -3.4871030080369696,
          -3.2095150145426308,
          -2.3730499983581987,
          -3.4509159516872203,
          -3.51824553732899,
          -3.0186684981886174,
          -7,
          -7,
          -7,
          -3.773164534737837,
          -3.1679920981107994,
          -7,
          -7,
          -3.6406801532776654,
          -7,
          -3.917663024327375,
          -7,
          -2.871105700985585,
          -7,
          -3.394510049817891,
          -3.235654676956949,
          -7,
          -3.065997527906678,
          -3.5307829207652426,
          -3.245918565044522,
          -7,
          -3.3931889920552485,
          -3.47513697171306,
          -3.6068111469189637,
          -7,
          -3.8669368177316397,
          -7,
          -7,
          -3.6110502851446897,
          -4.058274146685951,
          -7,
          -7,
          -7,
          -3.0339763250254843,
          -7,
          -7,
          -2.8587777373054495,
          -7,
          -3.540767303210374,
          -2.916316600515288,
          -7,
          -7,
          -4.181281308004646,
          -7,
          -4.0935792634395645,
          -7,
          -4.761687331986636,
          -3.774779652677459,
          -7,
          -3.7511635847694937,
          -3.914147389545718,
          -7,
          -7,
          -4.1189918001959756,
          -4.7672078298343825,
          -4.324854277099497,
          -4.6463449013162945,
          -2.976112707149161,
          -4.249801465031356,
          -4.95344557213989,
          -7,
          -7,
          -7,
          -2.3379091740877396,
          -4.397227181043161,
          -4.002133650511155,
          -7,
          -4.440090074313282,
          -4.713347714848314,
          -7,
          -7,
          -3.913913146172642,
          -4.011993114659257,
          -4.42908175442676,
          -4.4348402532975735,
          -7,
          -7,
          -7,
          -7,
          -4.538058205908395,
          -4.33150827628639,
          -3.259244597605882,
          -3.5648435325438337,
          -3.8207759774515604,
          -3.6411375648112925,
          -3.8403884196021063,
          -3.426592582305156,
          -3.438621448045396,
          -3.9249508889156104,
          -2.942289137919038,
          -2.972611176217687,
          -3.3650197428165347,
          -4.051589813697189,
          -3.087151162750692,
          -3.069595713827564,
          -7,
          -2.8908497591813425,
          -3.6296474104571437,
          -3.8292394281413893,
          -2.8127726716782617,
          -3.8715875285292607,
          -7,
          -7,
          -3.3842617011209635,
          -3.005757876815866,
          -2.301314657665541,
          -7,
          -4.0429297333431595,
          -7,
          -3.753605586292964,
          -7,
          -3.8135843241504817,
          -4.257558587444218,
          -4.0543065658484,
          -7,
          -3.8315338496935043,
          -3.6181134975829194,
          -3.545801757159276,
          -7,
          -3.176207055478685,
          -3.252922346195411,
          -3.7002098042781433,
          -3.335917852253625,
          -7,
          -2.8073496539487848,
          -3.905341566811897,
          -3.2908801052671617,
          -3.35042475664405,
          -7,
          -3.30362797638389,
          -3.2539993085092718,
          -4.41338359662314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.597073275682156,
          -3.3236645356081,
          -2.6958480495106723,
          -7,
          -7,
          -3.604349502341101,
          -7,
          -3.4348349343530247,
          -7,
          -3.7686381012476144,
          -7,
          -3.7238470364005316,
          -3.107972707737791,
          -7,
          -7,
          -7,
          -7,
          -3.731387283168788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1994351876202076,
          -7,
          -3.7385691715335407,
          -7,
          -7,
          -7,
          -4.001520705885766,
          -4.227340280666198,
          -7,
          -7,
          -2.847043569352527,
          -7,
          -3.2582061260688273,
          -7,
          -3.413634997198556,
          -2.9315849874708,
          -7,
          -3.832508912706236,
          -7,
          -3.8889092592635315,
          -7,
          -7,
          -7,
          -3.3961993470957363,
          -3.854063011866421,
          -3.4274861090957858,
          -2.968428005865279,
          -7,
          -7,
          -3.9838517189914717,
          -3.1960840270593827,
          -7,
          -3.702128838286881,
          -7,
          -7,
          -7,
          -7,
          -3.197286263105973,
          -3.353916230920363,
          -4.003503614742536,
          -3.8904769089601707,
          -7,
          -7,
          -3.8487431818956837,
          -7,
          -7,
          -3.919444210465237,
          -2.9499125186171895,
          -7,
          -7,
          -3.13756508756235,
          -2.9098322781643,
          -3.410608542568368,
          -7,
          -3.2745042226558834,
          -7,
          -7,
          -3.878981123393736,
          -3.325233362316072,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.863679667875898,
          -7,
          -3.69877452783365,
          -7,
          -7,
          -4.13931224557867,
          -7,
          -3.6504046698680317,
          -7,
          -3.8997110945711446,
          -7,
          -2.6414741105040997,
          -2.9907423617216766,
          -7,
          -7,
          -3.9002032130168933,
          -3.570017265641518,
          -3.4910533754308664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9115837009810757,
          -7,
          -7,
          -3.833147111912785,
          -7,
          -7,
          -7,
          -3.6335189520021656,
          -3.892150277901364,
          -3.977266212427293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8178296997456056,
          -3.973797259774123,
          -3.5571461423183632,
          -3.8561244442423,
          -3.6771961860105447,
          -7,
          -3.9398186628213794,
          -7,
          -7,
          -3.924744352479949,
          -7,
          -4.027920136405803,
          -7,
          -7,
          -7,
          -2.8976270912904414,
          -7,
          -7,
          -7,
          -7,
          -2.9339931638312424,
          -3.357553719743082,
          -2.8709888137605755,
          -7,
          -3.7297046213121874,
          -3.0812752795293337,
          -7,
          -3.1702617153949575,
          -3.0719345821481365,
          -3.087451821000778,
          -7,
          -7,
          -7,
          -3.156851901070011,
          -7,
          -2.956552591917399,
          -7,
          -7,
          -3.262213705476417,
          -3.256453958628053,
          -7,
          -7,
          -7,
          -2.4649364291217326,
          -2.871378315564175,
          -7,
          -4.02576216145282,
          -7,
          -7,
          -7,
          -7,
          -3.4560622244549513,
          -7,
          -1.6997799316716846,
          -2.641143471369817,
          -3.4959603948817053,
          -7,
          -3.139099411347294,
          -7,
          -7,
          -3.0002894331875893,
          -2.85227662464138,
          -2.5403294747908736,
          -7,
          -7,
          -7,
          -2.052673695567914,
          -7,
          -2.6833561560246784,
          -3.2592354021987338,
          -2.0718820073061255,
          -7,
          -7,
          -7,
          -2.7114456684692576,
          -7,
          -7,
          -7,
          -7,
          -3.2659963704950794,
          -2.958181497564948,
          -2.676513709253526,
          -3.161368002234975,
          -3.1357685145678222,
          -2.142363390979571,
          -7,
          -3.0969794945667846,
          -3.2338418642756133,
          -7,
          -3.5491259267581112,
          -3.6808597696765273,
          -7,
          -2.891398059667226,
          -7,
          -7,
          -1.4628414949830963,
          -3.4643404846276673,
          -3.2089785172762535,
          -7,
          -7,
          -7,
          -7,
          -3.0360297306565434,
          -3.428134794028789,
          -7,
          -2.694276063274084,
          -2.855115160771781,
          -2.256671200295871,
          -3.1360860973840974,
          -7,
          -3.2434101416537113,
          -2.515873843711679,
          -2.8135809885681917,
          -2.8919089670894906,
          -3.17435059747938,
          -2.6549054442039144,
          -7,
          -7,
          -7,
          -2.1928246860085694,
          -2.8254261177678233,
          -3.510813010512496,
          -7,
          -2.3439648605201104,
          -3.2168342101165988,
          -7,
          -7,
          -3.3344537511509307,
          -2.2783724736954567,
          -3.4965837344890947,
          -7,
          -7,
          -3.479143247978613,
          -2.939419403329317,
          -2.864934659051497,
          -3.000650953629595,
          -3.0206098533777044,
          -3.3988755657510406,
          -7,
          -3.589670402034894,
          -7,
          -4.094541001456839,
          -7,
          -2.381776702512341,
          -3.0869823477002094,
          -7,
          -7,
          -1.9722967085221035,
          -3.1050557829687464,
          -7,
          -3.1179338350396413,
          -3.906370962112948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8571816735501194,
          -3.793231447056521,
          -2.780173243642594,
          -3.2771506139637965,
          -3.2702128548962426,
          -7,
          -7,
          -3.182129214052998,
          -3.0474695746198566,
          -4.087461966171819,
          -7,
          -7,
          -3.196452541703389,
          -3.274388795550379,
          -3.707083298825079,
          -7,
          -7,
          -2.8383767747778115,
          -1.9292296494062615,
          -7,
          -7,
          -7,
          -7,
          -2.906200314184372,
          -7,
          -3.446537167073644,
          -3.4063698354692673,
          -3.2377949932739227,
          -3.72922746495659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.184123354239671,
          -7,
          -3.1863912156954934,
          -7,
          -3.822189880752621,
          -7,
          -2.2243747736660806,
          -2.8072235859495214,
          -7,
          -3.447778009294621,
          -2.0410165097497748,
          -7,
          -2.9033613362553186,
          -3.392696953259666,
          -2.584654239988151,
          -2.8651039746411278,
          -7,
          -2.4762688609584846,
          -2.5286596452349897,
          -3.1359273350054684,
          -7,
          -2.3743011729043864,
          -2.6040716921509444,
          -3.015340700301741,
          -7,
          -3.2010555635620643,
          -7,
          -7,
          -7,
          -2.9168047518661746,
          -7,
          -7,
          -2.9587685942707274,
          -3.1870975005834774,
          -7,
          -2.73453314583352,
          -4.372304301812888,
          -3.2024883170600935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1420764610732848,
          -7,
          -7,
          -3.1915441607348294,
          -7,
          -4.315705911806046,
          -7,
          -7,
          -2.541579243946581,
          -7,
          -7,
          -7,
          -7,
          -3.103803720955957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9052806011119654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.433769833924866,
          -7,
          -2.544008952645728,
          -7,
          -7,
          -3.1000257301078626,
          -2.04622810213454,
          -3.4619484952037616,
          -2.91017749765366,
          -7,
          -3.7179699132050232,
          -7,
          -3.184691430817599,
          -3.196728722623287,
          -7,
          -2.8470239610502954,
          -2.1873444291831783,
          -3.4800069429571505,
          -2.985650973690949,
          -7,
          -1.418251057732054,
          -7,
          -2.7545394443970084,
          -2.361963801512071,
          -2.2882989188590592,
          -7,
          -2.7151673578484576,
          -3.3609718837259357,
          -7,
          -7,
          -7,
          -7,
          -3.6685256885568625,
          -7,
          -7,
          -7,
          -3.930394990636852,
          -2.104466727163608,
          -7,
          -3.5260806918020298,
          -7,
          -1.8147526160648406,
          -3.195253724026417,
          -7,
          -3.693287157005656,
          -7,
          -7,
          -3.442793225939769,
          -3.320457868916649,
          -3.497067936398505,
          -3.9480421436568234,
          -3.138250053220232,
          -7,
          -7,
          -7,
          -2.8595385687347576,
          -3.219933637552912,
          -7,
          -7,
          -3.2314695904306814,
          -3.187520720836463,
          -7,
          -7,
          -2.217258278071181,
          -7,
          -2.623456048069934,
          -3.698709349442587,
          -3.2706788361447066,
          -4.0838727351483755,
          -2.518531255899576,
          -4.295967357542262,
          -7,
          -3.2448953336918613,
          -4.17699200238873,
          -3.3551321154773457,
          -7,
          -2.5261238000934845,
          -7,
          -3.330007700872759,
          -2.8389120274059985,
          -3.484157424365381,
          -3.4686426683915115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.720242018287057,
          -3.2076343673889616,
          -3.008467095467969,
          -7,
          -7,
          -4.604323272310015,
          -7,
          -7,
          -7,
          -4.719596424038301,
          -4.3881012015705165,
          -7,
          -3.7545012293869173,
          -4.106842247069822,
          -7,
          -7,
          -7,
          -4.725674828273515,
          -5.001348559913318,
          -4.5905966532564,
          -7,
          -4.38012075426844,
          -4.449709755571369,
          -7,
          -7,
          -7,
          -4.912301785042612,
          -7,
          -4.54241458174664,
          -2.9851697609193852,
          -7,
          -4.666021627895574,
          -7,
          -7,
          -3.603973901841678,
          -7,
          -3.985650973690949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4651299351405545,
          -7,
          -3.5810700271536153,
          -7,
          -4.376814111968198,
          -3.6887793603355443,
          -2.849879878037141,
          -3.0288964451314704,
          -3.4417540323451767,
          -7,
          -3.2780698466783362,
          -3.7265234583862394,
          -7,
          -7,
          -3.925124491288567,
          -3.1688812344644344,
          -7,
          -3.4084249945620684,
          -2.5478918606304815,
          -7,
          -3.002104323966667,
          -3.609612193237913,
          -7,
          -7,
          -3.764672712576838,
          -3.178917728971351,
          -5.105070558504534,
          -7,
          -3.7561033715851053,
          -7,
          -4.357386871335479,
          -7,
          -5.40678535986194,
          -7,
          -4.238798562713917,
          -7,
          -4.0375659279128495,
          -4.445339498742793,
          -4.788634951620105,
          -7,
          -3.332034277027518,
          -3.5566642621225686,
          -4.300666121641863,
          -3.0667813125922603,
          -7,
          -3.0174163713523345,
          -4.357834833466437,
          -2.7430195349869044,
          -4.650173424940093,
          -7,
          -7,
          -3.71352204300198,
          -3.409827494124425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5702113127983788,
          -2.1231411967028095,
          -2.040514435148303,
          -7,
          -7,
          -3.3580491199867475,
          -7,
          -3.1509098737011216,
          -3.1775364999298623,
          -3.1070742314120694,
          -7,
          -3.311138373930121,
          -2.4866075612144423,
          -7,
          -7,
          -7,
          -3.163310488963686,
          -3.133139557094351,
          -7,
          -7,
          -3.355962079458681,
          -7,
          -3.2762319579218335,
          -7,
          -2.538762188781348,
          -7,
          -3.1997551772534747,
          -7,
          -7,
          -4.605391249889289,
          -3.2840522425014473,
          -4.0154645435583305,
          -7,
          -7,
          -2.3598817355463755,
          -3.3057811512549824,
          -2.1346020532876793,
          -7,
          -2.910268571619067,
          -2.189294463936617,
          -7,
          -7,
          -7,
          -2.298307137328508,
          -7,
          -7,
          -7,
          -2.1481911962420113,
          -7,
          -1.9908976866546153,
          -1.6814996690891952,
          -7,
          -7,
          -2.3509617316943032,
          -2.2095150145426308,
          -7,
          -3.3252810364088172,
          -7,
          -7,
          -7,
          -2.690196080028514,
          -2.6292455153672183,
          -2.4197197829952795,
          -3.0736267173714387,
          -3.386498965550653,
          -7,
          -7,
          -7,
          -3.8292394281413893,
          -7,
          -2.4702634469650784,
          -1.6173816356861317,
          -7,
          -7,
          -1.7033555516661596,
          -2.1163708047186955,
          -2.916980047320382,
          -7,
          -3.146190073315927,
          -2.9689496809813427,
          -3.4955443375464483,
          -3.348694190265541,
          -2.9494275412788675,
          -3.733277533932582,
          -7,
          -7,
          -7,
          -3.101403350555331,
          -4.375059753585813,
          -7,
          -2.0836817472743014,
          -7,
          -3.091993372103274,
          -7,
          -4.18514535767565,
          -3.95433900860246,
          -7,
          -2.251638220448212,
          -7,
          -2.5098742850047193,
          -7,
          -2.484718436470184,
          -2.655618583541222,
          -7,
          -7,
          -2.3339508043872472,
          -2.0126263509540503,
          -2.9611837098124356,
          -3.2821687783046416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.377366970324768,
          -3.400365273349939,
          -7,
          -7,
          -7,
          -3.1684974835230326,
          -7,
          -7,
          -7,
          -2.911290807477995,
          -7,
          -3.657756790475467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8105013477665297,
          -7,
          -7,
          -7,
          -7,
          -3.5276299008713385,
          -7,
          -7,
          -7,
          -7,
          -3.7265642161622448,
          -3.3898745583909853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9647309210536292,
          -7,
          -3.2352758766870524,
          -7,
          -7,
          -3.974936811989041,
          -3.039017321997412,
          -7,
          -7,
          -2.9240887642418034,
          -3.441433275830611,
          -7,
          -7,
          -7,
          -7,
          -2.8926510338773004,
          -3.0651077623358094,
          -7,
          -7,
          -3.391816923613249,
          -3.4785455506544474,
          -2.8636202202703154,
          -3.0199466816788423,
          -7,
          -2.3725438007590705,
          -3.2242740142942576,
          -7,
          -3.9644776657900826,
          -3.1652443261253107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8403196906651225,
          -2.4002500911501117,
          -2.932811868611632,
          -7,
          -3.5187927263441137,
          -7,
          -3.0718820073061255,
          -3.388633969351789,
          -7,
          -3.1921956258464497,
          -7,
          -7,
          -7,
          -7,
          -3.00987563371216,
          -3.1312710469143954,
          -7,
          -2.964992528483926,
          -3.336526440627234,
          -3.0576661039098294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.109240968588203,
          -7,
          -2.991958959255932,
          -7,
          -7,
          -3.1486026548060932,
          -7,
          -7,
          -3.3601198615808054,
          -7,
          -7,
          -3.5463575553634143,
          -2.919601023784111,
          -3.1072099696478683,
          -7,
          -7,
          -2.345177616542704,
          -2.7686381012476144,
          -7,
          -7,
          -3.4871383754771865,
          -7,
          -7,
          -2.7996850909091004,
          -3.3265406685165617,
          -7,
          -2.9468819253369065,
          -2.794604214770576,
          -2.826439262635231,
          -2.9079485216122722,
          -7,
          -3.469232742506612,
          -2.272263661459806,
          -2.7317498835272636,
          -3.013153343473396,
          -2.9708116108725178,
          -3.0118422079264753,
          -7,
          -7,
          -7,
          -2.730064136632307,
          -7,
          -3.428620672671939,
          -7,
          -2.9595183769729982,
          -4.082426300860772,
          -3.0867156639448825,
          -7,
          -2.9028184680822537,
          -2.9392695863387313,
          -3.544829607366698,
          -7,
          -7,
          -3.3900514964589874,
          -3.1019760718329814,
          -2.8148181600555935,
          -2.458788881710845,
          -2.95042213027227,
          -3.376143358578196,
          -7,
          -7,
          -7,
          -4.217049432439889,
          -7,
          -2.885926339801431,
          -2.937116510767054,
          -7,
          -2.808210972924222,
          -2.924839027205617,
          -7,
          -7,
          -7,
          -4.373408581295595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.016227237873841,
          -3.40840957846843,
          -7,
          -7,
          -7,
          -7,
          -2.9222062774390163,
          -7,
          -3.8448498008066387,
          -7,
          -3.0056094453602804,
          -3.1212314551496214,
          -3.466014498579686,
          -7,
          -7,
          -7,
          -2.4715361774216578,
          -7,
          -7,
          -7,
          -7,
          -3.4265112613645754,
          -7,
          -7,
          -7,
          -7,
          -4.130526745384164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.460547059679343,
          -3.0128372247051725,
          -3.985965078304871,
          -7,
          -3.442793225939769,
          -3.1465998385295317,
          -7,
          -7,
          -2.4378562177246685,
          -7,
          -3.121723945637367,
          -3.2812606870550125,
          -3.3310221710418286,
          -7,
          -7,
          -2.813008795492136,
          -7,
          -3.6917002082901615,
          -7,
          -3.2657609167176105,
          -3.0538464268522527,
          -3.233386663010114,
          -7,
          -3.7840107110782126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4636690681343865,
          -7,
          -7,
          -7,
          -7,
          -3.8703453710809597,
          -7,
          -7,
          -7,
          -7,
          -2.9556877503135057,
          -7,
          -7,
          -7,
          -3.926805310111606,
          -2.532117116248804,
          -7,
          -4.634016868868532,
          -7,
          -3.0277572046905536,
          -2.2256784228291777,
          -3.208441356438567,
          -7,
          -2.9334872878487053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.944018518736587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.707655323531187,
          -7,
          -7,
          -2.8332746392905634,
          -7,
          -7,
          -7,
          -3.116503972397613,
          -7,
          -2.9346625431544537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.284881714655453,
          -2.4942009905231504,
          -2.9600741977588614,
          -3.555880064636805,
          -1.418251057732054,
          -7,
          -7,
          -2.7573960287930244,
          -2.798650645445269,
          -2.772761647144032,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6416723732246865,
          -7,
          -7,
          -7,
          -4.831789815800684,
          -2.5838462500213177,
          -2.950364854376123,
          -3.5138610158527017,
          -7,
          -2.183744223284207,
          -3.6178387477170033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4119562379304016,
          -4.430621290535816,
          -3.1870692712304236,
          -7,
          -7,
          -7,
          -2.820566320871381,
          -7,
          -7,
          -7,
          -7,
          -2.9916690073799486,
          -7,
          -2.733598460961339,
          -2.8184733313655372,
          -3.115943176939055,
          -7,
          -7,
          -7,
          -4.159717546180216,
          -2.5770319856260313,
          -4.307227086413063,
          -7,
          -7,
          -4.718788079305774,
          -3.494084989966382,
          -7,
          -2.864511081058392,
          -7,
          -3.570426178358973,
          -3.3260626338156793,
          -3.2661532687922707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.671358003443492,
          -3.022840610876528,
          -3.5067079263501197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.714941365513727,
          -7,
          -7,
          -4.292532956594993,
          -4.182859562041339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.923968964875471,
          -7,
          -7,
          -7,
          -5.388438697043693,
          -7,
          -4.234340087615185,
          -4.113843118937487,
          -7,
          -7,
          -7,
          -7,
          -4.475177060761012,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9177889950271254,
          -7,
          -4.672734971642158,
          -4.288897276322566,
          -3.298307137328508,
          -3.203123582322945,
          -4.032940937780854,
          -7,
          -3.5924871452980516,
          -7,
          -7,
          -7,
          -4.009663316679379,
          -3.536594512043907,
          -7,
          -4.140366607190387,
          -2.79594318285679,
          -7,
          -3.8120438979302267,
          -4.076822423342773,
          -7,
          -7,
          -4.390714372927393,
          -3.630799234060891,
          -5.706658905420156,
          -7,
          -7,
          -7,
          -4.95680211475213,
          -7,
          -5.104799404232248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.618910596192326,
          -7,
          -7,
          -3.7128039778168795,
          -7,
          -3.9448230650732317,
          -7,
          -3.111486550023024,
          -4.745999416249925,
          -7,
          -7,
          -7,
          -4.000173683058465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.953452164395173,
          -2.926856708949692,
          -2.645338041178953,
          -7,
          -7,
          -3.7454456581479403,
          -7,
          -7,
          -7,
          -3.4657545198338777,
          -7,
          -4.196970236939209,
          -2.7366952259948767,
          -3.0906107078284064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8578147779710066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7150941324710653,
          -4.4887198891891655,
          -7,
          -7,
          -2.9075579250873234,
          -7,
          -3.200303182981585,
          -7,
          -7,
          -2.793404987454742,
          -7,
          -7,
          -7,
          -3.2667019668840878,
          -7,
          -7,
          -3.299942900022767,
          -2.896801697664922,
          -7,
          -2.851869600729766,
          -2.110190848049964,
          -7,
          -7,
          -3.271609301378832,
          -2.7695004079763255,
          -7,
          -3.3755721739180373,
          -7,
          -7,
          -7,
          -3.378579576115775,
          -3.1799716890427616,
          -2.797821311364024,
          -3.3205616801952367,
          -3.2732328340430454,
          -7,
          -7,
          -7,
          -3.791690649020118,
          -7,
          -3.3823773034681137,
          -2.141749896293137,
          -7,
          -7,
          -2.1930566920949373,
          -2.601674231495388,
          -3.644143050509919,
          -7,
          -3.7089729784630787,
          -7,
          -3.7561033715851053,
          -7,
          -3.74170298395774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.545616332913136,
          -3.1896306576921556,
          -3.100740597292186,
          -7,
          -7,
          -4.248622995006579,
          -7,
          -3.0064660422492318,
          -7,
          -7,
          -7,
          -3.1911714557285586,
          -3.388367667157301,
          -7,
          -7,
          -2.708845638048179,
          -2.3384564936046046,
          -3.399379478152629,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8194123112093252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.249967037217522,
          -7,
          -7,
          -2.1921956258464497,
          -4.191423066687808,
          -4.2079035303860515,
          -7,
          -7,
          -7,
          -2.629409599102719,
          -7,
          -7,
          -3.8781194846971676,
          -7,
          -3.6514718521990424,
          -4.316417697051899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.36270547093555,
          -7,
          -7,
          -7,
          -7,
          -3.625723909525756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.564994054850826,
          -3.4192947217534604,
          -3.895919545310016,
          -3.782830805202592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8461514765288154,
          -7,
          -7,
          -7,
          -7,
          -3.020527012274563,
          -3.1389339402569236,
          -7,
          -7,
          -5.124918107130456,
          -7,
          -7,
          -7,
          -7,
          -3.867290669854884,
          -7,
          -7,
          -7,
          -3.116939646550756,
          -7,
          -7,
          -3.5241363765925686,
          -7,
          -7,
          -4.1885654617274,
          -3.518382315545344,
          -4.013216539624441,
          -7,
          -7,
          -7,
          -3.2119210843085093,
          -7,
          -7,
          -7,
          -4.144978738020031,
          -7,
          -7,
          -7,
          -3.0112414148058138,
          -7,
          -7,
          -7,
          -3.614158709509175,
          -3.773164534737837,
          -7,
          -2.738780558484369,
          -3.0610753236297916,
          -7,
          -4.081041105100104,
          -7,
          -7,
          -7,
          -3.047145014047316,
          -7,
          -2.2157256645575676,
          -3.088903550093058,
          -7,
          -7,
          -3.8304603500309673,
          -2.90687353472207,
          -4.692225424878105,
          -7,
          -7,
          -3.589279221235967,
          -7,
          -7,
          -3.341676281589567,
          -7,
          -7,
          -7,
          -4.365057220766325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.149496233465742,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.087781417809542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9377309750177787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0676287167282457,
          -2.86844850133673,
          -7,
          -3.0224283711854865,
          -7,
          -2.5550944485783194,
          -4.10963069469661,
          -2.798650645445269,
          -7,
          -7,
          -2.4790471757557007,
          -2.765668554759014,
          -2.7151673578484576,
          -7,
          -3.6135775721070993,
          -7,
          -7,
          -7,
          -7,
          -3.4955693893099817,
          -7,
          -7,
          -2.9641417275269504,
          -7,
          -7,
          -3.1646502159342966,
          -2.9271136119337604,
          -3.0770043267933502,
          -7,
          -7,
          -7,
          -3.348791467560584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8756399370041685,
          -7,
          -3.542015814870588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.601897100353282,
          -3.261976191397813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1775364999298623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2413804341476116,
          -4.941789610012567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.905256048748451,
          -7,
          -7,
          -7,
          -2.9304395947667,
          -7,
          -3.3274270536683934,
          -7,
          -7,
          -7,
          -4.311817411695856,
          -7,
          -7,
          -2.4742162640762553,
          -7,
          -7,
          -7,
          -7,
          -3.984617313236748,
          -7,
          -3.9527440240148985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0170333392987803,
          -1.9920459635741061,
          -1.8330408104847906,
          -2.3180633349627615,
          -7,
          -3.1095785469043866,
          -7,
          -7,
          -7,
          -7,
          -3.9199144806594317,
          -7,
          -7,
          -7,
          -4.830348040099118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.567966906823154,
          -7,
          -7,
          -7,
          -3.7737864449811935,
          -7,
          -3.0242119239259035,
          -7,
          -7,
          -3.3829770749788555,
          -7,
          -7,
          -7,
          -3.741939077729199,
          -7,
          -7,
          -2.424881636631067,
          -3.3803921600570273,
          -7,
          -7,
          -7,
          -3.6840370374865197,
          -7,
          -7,
          -7,
          -2.9324737646771535,
          -7,
          -3.480868923687168,
          -5.273146591634895,
          -7,
          -3.478927055582925,
          -4.716916906053295,
          -7,
          -7,
          -3.0068937079479006,
          -7,
          -7,
          -3.470410490975931,
          -7,
          -3.286231854028553,
          -7,
          -7,
          -3.3654879848909,
          -2.1271047983648077,
          -7,
          -2.952792443044092,
          -3.1500396976551133,
          -2.3010299956639813,
          -3.5463644126266622,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8793023641093205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.098539897992862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8892120324534645,
          -3.5742628297070267,
          -7,
          -7,
          -7,
          -4.933985580042992,
          -2.7040601611790334,
          -3.4670158184384356,
          -7,
          -4.961852800716229,
          -4.678882414670736,
          -7,
          -4.434297385124508,
          -7,
          -7,
          -7,
          -4.369623976640633,
          -7,
          -7,
          -3.689610717638639,
          -4.788715492049406,
          -7,
          -7,
          -3.1940515879954208,
          -7,
          -4.477497480263115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318063334962762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.596201102454085,
          -7,
          -2.9444826721501687,
          -3.7964306017613634,
          -4.955090967093244,
          -7,
          -4.3471582154333515,
          -7,
          -7,
          -4.304985720206672,
          -4.291368850451582,
          -7,
          -2.4800069429571505,
          -7,
          -7,
          -7,
          -4.466274321789292,
          -2.8419848045901137,
          -3.7013088852280753,
          -7,
          -7,
          -4.338755217322839,
          -7,
          -3.2610248339923973,
          -7,
          -3.7321524180652137,
          -7,
          -4.017735715616553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.646599751720373,
          -7,
          -7,
          -3.4625477288026643,
          -7,
          -7,
          -7,
          -3.022290870952613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.139595758469972,
          -7,
          -7,
          -7,
          -2.5634294911583058,
          -7,
          -2.4323277922616042,
          -7,
          -3.156851901070011,
          -3.9451237701221196,
          -7,
          -7,
          -7,
          -2.8438554226231614,
          -7,
          -7,
          -7,
          -3.052693941924968,
          -7,
          -2.5260806918020298,
          -7,
          -7,
          -7,
          -3.0395463043793804,
          -2.340018961128335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6565968348432376,
          -2.953115098691848,
          -7,
          -7,
          -7,
          -7,
          -2.8536982117761744,
          -7,
          -7,
          -7,
          -3.311895072073712,
          -7,
          -7,
          -3.7799570512469063,
          -3.725401117975179,
          -3.597366050266028,
          -7,
          -7,
          -7,
          -3.4192120226230758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.544130081987965,
          -7,
          -3.4148062795010126,
          -7,
          -7,
          -7,
          -2.8454081396217936,
          -7,
          -7,
          -7,
          -3.204662511748219,
          -7,
          -4.090769309154487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9454685851318194,
          -7,
          -3.353723937588949,
          -7,
          -4.101643985490313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.194750156641199,
          -7,
          -7,
          -7,
          -7,
          -3.373095987078727,
          -7,
          -7,
          -7,
          -7,
          -3.6353832040474985,
          -7,
          -7,
          -7,
          -2.857633985150008,
          -7,
          -7,
          -7,
          -7,
          -3.0863598306747484,
          -7,
          -3.1300119496719043,
          -7,
          -3.516152079177331,
          -7,
          -3.0599418880619544,
          -2.649010152542322,
          -3.612863293566935,
          -3.628491104967123,
          -7,
          -3.225567713439471,
          -7,
          -2.634141258939403,
          -7,
          -4.352741915020753,
          -3.925466800691538,
          -7,
          -2.824288582459545,
          -3.653472896115473,
          -3.2748503200166645,
          -7,
          -7,
          -3.1451964061141817,
          -7,
          -7,
          -3.6938617292635936,
          -3.2748503200166645,
          -7,
          -7,
          -2.889581802149624,
          -7,
          -3.1455071714096627,
          -1.912399211126715,
          -2.7693773260761385,
          -2.9985499336047674,
          -7,
          -3.80105740878395,
          -7,
          -7,
          -7,
          -3.3010299956639813,
          -3.4058583993176366,
          -2.690196080028514,
          -2.794255617174412,
          -7,
          -7,
          -7,
          -2.8899949526860222,
          -2.5413295776666938,
          -2.9864233630365042,
          -2.839917775678681,
          -7,
          -2.9439888750737717,
          -2.9381443085140972,
          -2.9542425094393248,
          -7,
          -3.2773799746672547,
          -3.105510184769974,
          -3.231979026831504,
          -3.6444385894678386,
          -3.4612883818666504,
          -7,
          -2.787460474518415,
          -3.03261876085072,
          -7,
          -3.485579476984679,
          -2.697839368218363,
          -3.1065308538223815,
          -3.0541021198133644,
          -3.9815306209819914,
          -3.0972573096934197,
          -2.087544809532427,
          -7,
          -7,
          -3.137090246922551,
          -3.443106456737266,
          -3.1699681739968923,
          -7,
          -2.7634279935629373,
          -3.2350231594952237,
          -2.7365103260178008,
          -3.6245914591268478,
          -3.103632705209741,
          -7,
          -3.569241560181558,
          -3.318793504793297,
          -7,
          -3.089551882886454,
          -7,
          -3.2258259914618934,
          -7,
          -3.494711025205263,
          -2.958181497564948,
          -7,
          -3.8701404392376397,
          -7,
          -7,
          -2.3571722577230334,
          -1.9966867556001715,
          -2.377670439334323,
          -7,
          -3.3422252293607904,
          -2.415588309411352,
          -2.690266979462497,
          -3.215108581053093,
          -2.850033257689769,
          -2.702215059149166,
          -3.3346547668832414,
          -3.317941520549953,
          -7,
          -7,
          -2.5534278708133193,
          -2.3201462861110542,
          -3.3979400086720375,
          -2.9694159123539814,
          -2.434624923960997,
          -4.157781536420133,
          -7,
          -3.8829796540372987,
          -7,
          -4.696046067546922,
          -3.307067950661298,
          -7,
          -2.633835568434839,
          -7,
          -7,
          -3.1382816409536467,
          -3.26528962586083,
          -7,
          -7,
          -4.381060903382891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7560652939486863,
          -3.7834032811225633,
          -4.175482820774772,
          -3.2663885100087673,
          -7,
          -3.9182925127553556,
          -7,
          -3.1405080430381793,
          -2.620344299754493,
          -7,
          -3.3928141559271974,
          -7,
          -2.5523639817866846,
          -7,
          -3.207695555447434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7268629897004635,
          -2.3726287982115197,
          -2.6283889300503116,
          -2.6135775721070993,
          -2.424881636631067,
          -2.8998205024270964,
          -3.2570729495163198,
          -2.3272129285076972,
          -3.061452479087193,
          -7,
          -2.4693310102934105,
          -2.2032142586949006,
          -7,
          -7,
          -2.423775765777925,
          -7,
          -3.8191489428071344,
          -7,
          -7,
          -2.6950908511864737,
          -3.2648178230095364,
          -2.8338639667912022,
          -2.5426339390892774,
          -3.0437551269686796,
          -3.009309224134771,
          -7,
          -3.4087486061842442,
          -2.7113853790984517,
          -7,
          -3.220020871555797,
          -2.714329759745233,
          -2.948331446401186,
          -7,
          -3.9844372947960762,
          -3.4291060083326967,
          -4.355911050526753,
          -3.124178055474675,
          -7,
          -7,
          -7,
          -7,
          -3.369586890736344,
          -7,
          -7,
          -3.4939457483871506,
          -3.4683473304121573,
          -7,
          -7,
          -4.369735215355923,
          -3.894260664446988,
          -7,
          -7,
          -7,
          -7,
          -2.819872821950546,
          -2.337601863321786,
          -3.0962145853464054,
          -2.509740015570382,
          -2.413151784814023,
          -3.0532705666813786,
          -3.308442446423766,
          -5.111504467940425,
          -7,
          -3.1720188094245563,
          -7,
          -7,
          -7,
          -3.1065308538223815,
          -2.975891136401793,
          -3.079362164393046,
          -2.4700060000867836,
          -3.037027879755775,
          -7,
          -2.8055008581584002,
          -3.143014800254095,
          -7,
          -7,
          -2.082246654743669,
          -4.167888140421916,
          -7,
          -7,
          -7,
          -3.137986732723532,
          -3.240798771117331,
          -7,
          -7,
          -7,
          -7,
          -3.1095785469043866,
          -7,
          -2.4959664217689568,
          -7,
          -2.6088824508987196,
          -7,
          -3.6307328928171967,
          -7,
          -3.9408276510144487,
          -2.9459607035775686,
          -4.114852747571882,
          -7,
          -7,
          -7,
          -4.02209829746114,
          -3.7927417858347487,
          -3.3906260478341657,
          -3.293657141449485,
          -7,
          -2.7545394443970084,
          -2.7573960287930244,
          -2.0170333392987803,
          -7,
          -1.1560704038576266,
          -1.5135165605791931,
          -3.03261876085072,
          -2.6745549761273852,
          -2.427932184049885,
          -3.1427022457376155,
          -7,
          -7,
          -3.4605971888976015,
          -2.5629111450476487,
          -7,
          -7,
          -3.362670929725667,
          -4.179874009512173,
          -2.7827284979036726,
          -7,
          -4.000368993509583,
          -7,
          -2.9561684304753633,
          -3.3585059114902354,
          -3.413634997198556,
          -3.5109469486729727,
          -3.590953235187986,
          -3.53198955141255,
          -2.9426693313867003,
          -2.7024305364455254,
          -7,
          -4.983757051859547,
          -3.6084190513172856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.874191804679071,
          -2.5221833176186865,
          -3.5146805441249818,
          -7,
          -3.446847710155809,
          -7,
          -2.9770373352246815,
          -7,
          -3.294466226161593,
          -3.38524868240322,
          -7,
          -4.1622357237662015,
          -3.3992236215272698,
          -4.574661405945726,
          -7,
          -2.93468778256179,
          -3.790984341293377,
          -2.977658292937134,
          -7,
          -2.6720978579357175,
          -3.1277525158329733,
          -3.014205413953746,
          -2.9853623100167104,
          -2.9964386998811507,
          -3.146283113159587,
          -7,
          -7,
          -7,
          -1.883976712468301,
          -2.9237619608287004,
          -2.4666205111116515,
          -2.475414790905645,
          -2.690196080028514,
          -2.943427667431837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.779264511479166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.187520720836463,
          -7,
          -2.9604930743921973,
          -2.0582783662301987,
          -7,
          -7,
          -7,
          -4.635139291129992,
          -2.0907449772627436,
          -2.345777216071331,
          -4.451985888948909,
          -4.011640917347032,
          -3.540365232436269,
          -7,
          -7,
          -3.8642736968043794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7051492306402203,
          -4.312793510081284,
          -5.104952055922925,
          -3.146438135285775,
          -2.56710482239302,
          -2.870111155364401,
          -3.7033773685123497,
          -7,
          -7,
          -3.7999605274059833,
          -4.235301140319991,
          -7,
          -4.034788831251184,
          -4.443169075796116,
          -4.486607561214442,
          -7,
          -3.930872653792662,
          -7,
          -3.998836705660125,
          -4.496943478887435,
          -2.1583624920952498,
          -3.6457611226334046,
          -4.260252703870242,
          -7,
          -3.9174238127281167,
          -7,
          -7,
          -4.013174409878867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.437318070354534,
          -2.468495024507069,
          -3.5037089898917078,
          -7,
          -7,
          -3.753563909684063,
          -3.49373680227684,
          -2.9526310252827455,
          -7,
          -3.4958910796661877,
          -7,
          -4.102934262243328,
          -3.379758615842701,
          -7,
          -7,
          -7,
          -7,
          -2.82020145948564,
          -7,
          -7,
          -2.9203842421783577,
          -7,
          -7,
          -7,
          -2.1525067474461976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2513496376590156,
          -7,
          -7,
          -7,
          -2.302961138562647,
          -7,
          -2.709027541498756,
          -7,
          -2.5153060147156823,
          -3.225262277614999,
          -7,
          -7,
          -7,
          -3.355643050220869,
          -7,
          -2.8976270912904414,
          -3.081527326244805,
          -3.300812794118117,
          -7,
          -2.6278776945799716,
          -2.838303257217854,
          -7,
          -7,
          -2.9192873405043827,
          -2.2310039303763696,
          -7,
          -3.6893976628212823,
          -7,
          -7,
          -7,
          -7,
          -3.0382557792349947,
          -2.4704349934714607,
          -7,
          -2.1511399228714536,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6989700043360187,
          -7,
          -7,
          -2.8373990243420226,
          -2.973770182401431,
          -3.0810771401550445,
          -3.4753805931433615,
          -3.365404778744098,
          -3.555215405126073,
          -7,
          -7,
          -3.7579271831133294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2626883443016963,
          -7,
          -4.538083367813495,
          -7,
          -3.880098704083314,
          -3.4753442550701354,
          -7,
          -2.8402315949581087,
          -7,
          -2.7883451651521183,
          -7,
          -2.8018323042314583,
          -3.424146305755156,
          -7,
          -7,
          -2.1569409049604555,
          -2.9903388547876015,
          -3.3273419028962246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.846213363879387,
          -7,
          -3.1272668183188985,
          -7,
          -7,
          -7,
          -7,
          -2.765420173578722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.061452479087193,
          -2.912859475162355,
          -7,
          -7,
          -3.4282293130141395,
          -2.762678563727436,
          -2.7535830588929064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.364550995353972,
          -7,
          -7,
          -2.85582190540603,
          -7,
          -7,
          -3.416141031168329,
          -3.443262987458695,
          -3.2870175013221017,
          -7,
          -2.966610986681934,
          -3.486288760960566,
          -2.8235547271190224,
          -7,
          -3.411788004543869,
          -2.965358514344786,
          -3.6492374723496073,
          -3.487444772703948,
          -7,
          -7,
          -7,
          -2.832987650012002,
          -7,
          -3.2029240276378017,
          -3.294378035587241,
          -7,
          -2.927562826805481,
          -3.1793791861511895,
          -7,
          -3.1610683854711747,
          -7,
          -3.0235610900969454,
          -3.5476516583599693,
          -3.4730488050885375,
          -3.7321524180652137,
          -3.219322508419337,
          -7,
          -7,
          -7,
          -3.6182573448404014,
          -3.451939869365103,
          -1.4348737790778903,
          -2.4598948527451516,
          -7,
          -7,
          -3.5043410923027154,
          -2.8391636829146503,
          -7,
          -3.3322364154914434,
          -3.5356738034257504,
          -2.910691091182139,
          -3.162116141062368,
          -2.9163223242173815,
          -7,
          -2.694354451535204,
          -3.2899232395240046,
          -2.288033978619537,
          -2.1554253525259224,
          -2.625226681339216,
          -3.0769003912940143,
          -7,
          -3.0265332645232967,
          -3.0883133155880964,
          -2.907008053689199,
          -7,
          -3.0444090865590487,
          -3.131297796597623,
          -3.4967913157000425,
          -3.465457210575713,
          -3.019345522521489,
          -3.438384107034714,
          -7,
          -2.8231946704339643,
          -3.414639146737009,
          -2.533275081158002,
          -2.807535028068853,
          -2.9553670010508437,
          -3.2069157827668575,
          -3.700825458898945,
          -3.4287825114969546,
          -1.7316805487833076,
          -7,
          -3.455606112581867,
          -2.4774830160749435,
          -3.6239725120169965,
          -3.4641913706409997,
          -7,
          -2.154889186430781,
          -2.6516932756857856,
          -2.2853905932737097,
          -3.7517408738109004,
          -2.4826537433196236,
          -7,
          -3.159716282926921,
          -3.447158031342219,
          -3.401538390165943,
          -7,
          -7,
          -3.681150749932421,
          -2.894758994371892,
          -2.9589459324939362,
          -2.8727388274726686,
          -7,
          -3.5120971148810134,
          -7,
          -3.414137362184477,
          -2.5059973824558917,
          -1.090018713022885,
          -2.091750677014142,
          -3.3554515201265174,
          -3.5601458398490475,
          -2.3888932863141665,
          -2.1078372077228384,
          -3.4877038631637265,
          -3.1536624535754956,
          -2.1522883443830563,
          -7,
          -3.142389466118836,
          -7,
          -7,
          -2.855115160771781,
          -2.3504806137955305,
          -3.8085485512404054,
          -2.190865065731225,
          -2.2052301495786644,
          -3.925385769416851,
          -3.486430478854434,
          -7,
          -7,
          -4.702266783451331,
          -2.7597937089078433,
          -3.39208111979816,
          -2.255343462456932,
          -7,
          -7,
          -2.7089739654522504,
          -3.7091851295502454,
          -7,
          -3.114610984232173,
          -4.105135337612572,
          -7,
          -7,
          -7,
          -3.131779009369187,
          -3.411788004543869,
          -2.9938091464333256,
          -3.175975431749513,
          -3.515979756279428,
          -3.366298410485256,
          -7,
          -7,
          -3.418135498425232,
          -7,
          -2.1095910447671455,
          -7,
          -7,
          -7,
          -3.4572761860613257,
          -7,
          -2.8423030251835173,
          -7,
          -7,
          -7,
          -2.7145692383738007,
          -7,
          -7,
          -7,
          -3.064083435963596,
          -2.1876179545728824,
          -3.123742781590177,
          -2.403030165515052,
          -2.468006306066481,
          -2.436162647040756,
          -2.995368552945386,
          -2.0280287236002437,
          -7,
          -7,
          -2.4625341190352854,
          -2.2799709653992704,
          -3.1492191126553797,
          -7,
          -2.0458695520970736,
          -7,
          -4.32672491280211,
          -7,
          -7,
          -1.9493042524186015,
          -3.0372936658607066,
          -2.42097075212303,
          -1.6307465453207721,
          -2.6057837394735675,
          -2.348694190265541,
          -3.274388795550379,
          -2.558053690567051,
          -2.638863487466293,
          -3.57611089412084,
          -2.5496842947541856,
          -2.240696043782359,
          -2.9265996539070276,
          -7,
          -4.044578954876613,
          -7,
          -3.9053100621160857,
          -7,
          -4.146686055647526,
          -7,
          -3.5946687312953243,
          -3.485295438726089,
          -3.5769169559652068,
          -3.157456768134226,
          -7,
          -2.929759415329462,
          -3.3395508108256715,
          -7,
          -3.658964842664435,
          -3.91832745759621,
          -3.666049738480516,
          -7,
          -2.932811868611632,
          -7,
          -7,
          -2.962527174843811,
          -2.469822015978163,
          -7,
          -2.8825245379548803,
          -2.465977368285823,
          -3.0757658782157344,
          -2.9905608299940196,
          -4.7147562990402285,
          -7,
          -3.1639064334577514,
          -3.4831592097169795,
          -7,
          -3.4139699717480614,
          -3.4331295175804857,
          -3.630936119064191,
          -3.583878598498626,
          -7,
          -7,
          -7,
          -3.1320995219165044,
          -2.847726855657811,
          -7,
          -7,
          -1.9072283458195376,
          -3.4904089698013103,
          -7,
          -7,
          -7,
          -7,
          -3.200303182981585,
          -1.992510760388401,
          -7,
          -7,
          -7,
          -2.3691066696077066,
          -7,
          -2.1193066572342634,
          -2.814136565568487,
          -2.946452265013073,
          -3.40705081480425,
          -2.8004115598161072,
          -3.6223176608338443,
          -3.958301029253673,
          -3.203984244420126,
          -3.9505108929859967,
          -3.5186455243303114,
          -7,
          -7,
          -3.475271569801028,
          -3.4056309008934176,
          -2.846723598300994,
          -2.750092830418938,
          -3.6554265877459184,
          -2.361963801512071,
          -2.798650645445269,
          -1.9920459635741061,
          -1.1560704038576266,
          -7,
          -1.3843222411346825,
          -3.098470665650629,
          -3.154271775993095,
          -2.7757317762602307,
          -3.1492191126553797,
          -3.105964111628025,
          -7,
          -3.158060793936605,
          -2.3409808671321186,
          -3.545430829465351,
          -3.6869042695681773,
          -3.2713768718940743,
          -3.633367445117007,
          -2.5805741015043195,
          -7,
          -3.854265546255161,
          -7,
          -2.664238918003387,
          -3.7782236267660965,
          -3.30352003690728,
          -2.842609239610562,
          -3.027268042466619,
          -3.313709074655722,
          -3.307923703611882,
          -2.6957204091477363,
          -3.646893624167745,
          -4.22767464518811,
          -2.7482336437786707,
          -7,
          -7,
          -3.401055725771844,
          -3.2909801206291553,
          -2.7549040548935664,
          -7,
          -3.1907517799201845,
          -3.6724673130680823,
          -7,
          -2.9266510770888887,
          -3.4680517914542377,
          -2.470312467167388,
          -3.499549625905149,
          -3.0542299098633974,
          -2.6206911526456267,
          -7,
          -4.170719244166571,
          -3.1220027758749547,
          -4.168913242133391,
          -7,
          -2.062025553041343,
          -3.77203632193224,
          -3.129475054459623,
          -7,
          -2.476989630387119,
          -7,
          -2.209357290015056,
          -2.766996754711321,
          -2.964966374831098,
          -3.325720858019412,
          -7,
          -7,
          -3.062299883223179,
          -2.147212416970458,
          -2.890281261927012,
          -2.5487305496263066,
          -2.5583751902435905,
          -3.4634450317704277,
          -2.0691355946764824,
          -7,
          -7,
          -4.14091637693907,
          -7,
          -7,
          -7,
          -4.429138344767089,
          -3.808346035740395,
          -7,
          -4.011507007443322,
          -3.8508076943311957,
          -7,
          -7,
          -7,
          -3.5897821032911432,
          -3.8026668483425246,
          -4.1276230495980295,
          -7,
          -4.69272357270089,
          -7,
          -7,
          -7,
          -7,
          -4.914588183125443,
          -4.019427873252668,
          -3.956108374541934,
          -7,
          -4.371178731816287,
          -4.677980868888067,
          -7,
          -7,
          -3.944306380496884,
          -7,
          -3.7929429635083816,
          -4.365019742816535,
          -4.248144987287778,
          -7,
          -4.153204900084284,
          -7,
          -3.6387031424462313,
          -7,
          -4.3348155125062116,
          -2.3391200452721206,
          -3.8442996228070254,
          -2.4232864741068187,
          -1.7328989937968162,
          -3.345177616542704,
          -4.369790824030776,
          -7,
          -3.793511005792858,
          -2.000704692511774,
          -2.3932826505593647,
          -3.996248914569132,
          -3.71720804477317,
          -3.2839358508812513,
          -7,
          -3.4279284993570225,
          -3.464638559095033,
          -7,
          -7,
          -4.109291622066701,
          -3.528723923260994,
          -7,
          -2.2703679455185184,
          -3.4694573219276164,
          -4.429453073733615,
          -3.15106325335375,
          -2.697167047058269,
          -3.4650852875574327,
          -3.1726358824113596,
          -7,
          -4.262810310487699,
          -3.5455235910936778,
          -3.968996326648312,
          -7,
          -3.460315136748682,
          -4.163980869053427,
          -3.7975583584025268,
          -3.486288760960566,
          -3.965906915495192,
          -3.929521100631104,
          -3.478090632561218,
          -3.5618696012378313,
          -2.4206432497919548,
          -2.779334958513331,
          -3.534435092755253,
          -7,
          -3.603266196253487,
          -7,
          -7,
          -3.374514134412372,
          -4.3397097547798325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0360090550537797,
          -2.1046075980608174,
          -2.7335483317430804,
          -3.4434194617828173,
          -7,
          -3.1264561134318045,
          -7,
          -2.6137361412618714,
          -7,
          -3.1077750894177876,
          -3.424881636631067,
          -3.4311492447760616,
          -2.713770462202507,
          -3.4892551683692608,
          -7,
          -3.344813169678549,
          -3.6241789257480224,
          -2.7128438865094555,
          -7,
          -3.481729196960016,
          -2.3487914675605843,
          -7,
          -7,
          -7,
          -2.140443576569526,
          -7,
          -3.7921114090871684,
          -7,
          -7,
          -4.619114209667246,
          -2.622697454895568,
          -4.80263007659096,
          -7,
          -7,
          -2.1280064197702564,
          -7,
          -2.3969835082752007,
          -7,
          -2.3384564936046046,
          -3.0947549170487743,
          -7,
          -7,
          -7,
          -2.6121949827557454,
          -3.3626081204867253,
          -2.876362196412118,
          -3.107662124276845,
          -3.057919558531498,
          -7,
          -2.4520056101349996,
          -2.7084578503607872,
          -7,
          -7,
          -2.8434663744184254,
          -2.134520365244195,
          -7,
          -7,
          -7,
          -7,
          -3.9995220131289035,
          -3.3265406685165617,
          -2.6936066086433788,
          -2.2023652550893744,
          -7,
          -2.150756439860309,
          -7,
          -7,
          -3.4795753101749884,
          -7,
          -7,
          -3.152390279480791,
          -2.2794284147221058,
          -7,
          -3.40840957846843,
          -2.4403842548328845,
          -2.6241945001620497,
          -2.753791904524199,
          -7,
          -3.047021617404377,
          -3.70104963072914,
          -3.40094072657035,
          -3.2460059040760294,
          -3.3317308928154574,
          -7,
          -7,
          -7,
          -7,
          -3.4077307280263356,
          -7,
          -7,
          -2.813714391881145,
          -7,
          -3.7774751552013255,
          -3.3251049829714074,
          -3.6181527333785195,
          -3.1733028418881863,
          -3.8256857080217586,
          -2.786041210242554,
          -7,
          -3.113051576876652,
          -7,
          -2.412830002562326,
          -2.7135551558266218,
          -7,
          -7,
          -2.0153370951873573,
          -2.574031267727719,
          -2.9525664413757333,
          -3.028706779135174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4495812394629826,
          -7,
          -7,
          -2.870403905279027,
          -7,
          -7,
          -3.463743721247059,
          -3.201806642957022,
          -7,
          -3.6590600722409383,
          -7,
          -3.572116155664274,
          -3.596377143997599,
          -7,
          -7,
          -7,
          -2.838691709151223,
          -7,
          -7,
          -3.128063077420776,
          -3.023938007498089,
          -2.8937617620579434,
          -3.7380667147774695,
          -7,
          -7,
          -3.4287825114969546,
          -7,
          -3.64018319192134,
          -7,
          -7,
          -3.5737995822157407,
          -7,
          -7,
          -2.9526310252827455,
          -7,
          -3.0786380383696725,
          -7,
          -7,
          -2.5236282431870687,
          -7,
          -2.811909980420099,
          -3.4596939764779706,
          -3.3707570624663736,
          -7,
          -7,
          -3.1122697684172707,
          -3.1672680922194196,
          -3.0566905084110543,
          -7,
          -7,
          -7,
          -2.802944673722407,
          -7,
          -3.2296087164576104,
          -2.661587347244496,
          -3.369586890736344,
          -3.2172864927524905,
          -3.1007498735457943,
          -2.716559774821619,
          -7,
          -3.3787611753163733,
          -2.324499061028818,
          -2.824646414718352,
          -3.4456042032735974,
          -3.2858802988894116,
          -3.018423082826786,
          -7,
          -7,
          -3.146438135285775,
          -2.8989444668665096,
          -3.121723945637367,
          -2.657316664284362,
          -7,
          -2.261624845520399,
          -7,
          -3.503778306292567,
          -3.4126285205443754,
          -2.8520222794031276,
          -7,
          -3.2107197156810017,
          -2.801197834459149,
          -3.1340176456759834,
          -7,
          -7,
          -7,
          -7,
          -2.613594667752257,
          -2.897352134344313,
          -2.4402091713868916,
          -3.4357382204426927,
          -7,
          -3.4787107555127594,
          -2.7187783976895714,
          -3.4847268042986617,
          -3.4959603948817053,
          -3.196314385353599,
          -7,
          -2.993142192245416,
          -2.751510050270041,
          -2.960499605578246,
          -3.1072099696478683,
          -3.092896010921856,
          -2.5358781109177286,
          -7,
          -2.6897822691521336,
          -2.1779234306079442,
          -7,
          -7,
          -3.7166389013459673,
          -7,
          -2.624797578960761,
          -7,
          -3.426998958756537,
          -2.4056647257683834,
          -7,
          -3.436162647040756,
          -7,
          -2.7714956153109704,
          -7,
          -3.1032048709894418,
          -3.2600713879850747,
          -2.6227894761867065,
          -7,
          -3.0144572790295707,
          -3.1314582601065255,
          -3.2489536154957075,
          -7,
          -7,
          -7,
          -7,
          -3.339749481680876,
          -2.8592884423200204,
          -7,
          -3.3609718837259357,
          -7,
          -7,
          -3.379668034033654,
          -2.1522496285834407,
          -3.3895204658463776,
          -2.939119717648487,
          -3.236537261488694,
          -2.313586032608017,
          -2.647163676320182,
          -3.461198288622493,
          -7,
          -2.8147801457458046,
          -7,
          -2.899157001447223,
          -7,
          -7,
          -3.137986732723532,
          -2.9589618439223178,
          -3.7960884286806684,
          -2.4912215762392833,
          -2.4919579851904485,
          -3.9240428709869617,
          -7,
          -7,
          -3.4665710723863543,
          -3.6801282253099643,
          -7,
          -2.977266212427293,
          -3.1760188706094925,
          -7,
          -7,
          -2.402621228759297,
          -2.6123422761205295,
          -7,
          -7,
          -3.703978825008386,
          -7,
          -7,
          -3.3818367999983434,
          -7,
          -7,
          -3.403120521175818,
          -2.6869935662646784,
          -2.9306005339873313,
          -3.832189461068513,
          -7,
          -3.200759326791928,
          -7,
          -3.4204508591060683,
          -2.619484645699233,
          -7,
          -3.2384977353073587,
          -7,
          -3.4287825114969546,
          -3.174786417367337,
          -3.1500948736862835,
          -3.083323418473525,
          -3.3729120029701067,
          -7,
          -3.2375437381428744,
          -3.4038066105474227,
          -7,
          -3.2604291755779347,
          -2.26462108711403,
          -1.5779974549453202,
          -2.53736109926821,
          -1.656036191630507,
          -2.177897059918944,
          -2.7532765701844184,
          -3.2905636188126794,
          -2.5923354037837143,
          -3.079362164393046,
          -3.3688445068258215,
          -1.7680458141024167,
          -2.1712387562612694,
          -3.4216039268698313,
          -7,
          -2.549679601632059,
          -7,
          -4.322983806948398,
          -7,
          -7,
          -2.611615960259258,
          -3.4900990050633047,
          -3.225050696138049,
          -2.254366781142282,
          -3.2384224958854797,
          -2.679629753219008,
          -3.554125581513013,
          -2.402089350572097,
          -3.042837926032406,
          -3.2533380053261065,
          -3.1922886125681202,
          -3.448551739201578,
          -2.2829018774276832,
          -7,
          -7,
          -2.6905283211375925,
          -3.777046013407733,
          -2.6321197138685406,
          -3.140445188347875,
          -7,
          -7,
          -7,
          -2.776095557782467,
          -7,
          -3.4528593357958526,
          -2.668618844816744,
          -2.775974331129369,
          -7,
          -3.163757523981956,
          -4.392327557983544,
          -3.1128921383925734,
          -7,
          -7,
          -3.431202884556517,
          -3.3925210899319325,
          -2.932811868611632,
          -2.744762237065578,
          -3.0963885466873666,
          -2.9810631808506,
          -2.3997602257103656,
          -2.5836521085420436,
          -3.4120123012470613,
          -4.869510819339792,
          -7,
          -2.531957654348021,
          -2.609441944950562,
          -7,
          -3.3823773034681137,
          -2.7998572591896123,
          -3.6120417446452695,
          -7,
          -3.55942779975949,
          -7,
          -7,
          -2.4462954799526213,
          -3.4217684012069243,
          -2.8963424669127065,
          -7,
          -1.7767011839884108,
          -3.5205805655249534,
          -7,
          -7,
          -7,
          -7,
          -3.4759615891924236,
          -3.466125870418199,
          -7,
          -2.8739015978644615,
          -7,
          -3.281601443825655,
          -7,
          -2.3234068093635756,
          -3.57275546515422,
          -7,
          -7,
          -2.662526557433505,
          -7,
          -3.4440207612473874,
          -2.0248666663580623,
          -3.8820689444361483,
          -7,
          -7,
          -7,
          -3.371621927176021,
          -3.2700962814203303,
          -2.897784131423016,
          -2.648603928135281,
          -3.470410490975931,
          -2.2882989188590592,
          -2.772761647144032,
          -1.8330408104847906,
          -1.5135165605791931,
          -1.3843222411346825,
          -7,
          -2.88930170250631,
          -2.9492273190678455,
          -1.5448765357073875,
          -2.9438241512023096,
          -7,
          -7,
          -3.014205413953746,
          -2.4473675823628844,
          -3.522313795156667,
          -7,
          -7,
          -4.293002466752252,
          -2.6869935662646784,
          -7,
          -3.5494120098036346,
          -3.396896449142524,
          -3.1845494813206976,
          -2.985950126092585,
          -3.1070968573977424,
          -4.040760524228698,
          -3.711807229041191,
          -2.411782576575266,
          -2.037540321681782,
          -2.2421271437282835,
          -7,
          -4.875414988878726,
          -2.5067848613333052,
          -2.6788824146707357,
          -7,
          -3.368472838440362,
          -3.183725258045578,
          -2.938948375793857,
          -7,
          -1.568201724066995,
          -2.876217840591642,
          -2.6437815628948647,
          -3.129797271228629,
          -7,
          -2.886866575028829,
          -2.8708426604757014,
          -2.9051209859322786,
          -7,
          -7,
          -4.266572693335908,
          -2.7470479940428234,
          -4.24291914249205,
          -7,
          -2.416479448748672,
          -3.664797257319109,
          -2.8178957571617955,
          -7,
          -2.591481997238255,
          -2.8107364373885813,
          -2.9526310252827455,
          -2.7572333005770804,
          -2.902848645234189,
          -3.3066394410242617,
          -7,
          -7,
          -3.647480773173676,
          -1.896292339623125,
          -2.687380306589906,
          -2.111613128168343,
          -1.8321578541777817,
          -2.4324882557705063,
          -2.5092800864596443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.10636090880675,
          -7,
          -7,
          -4.192283033926229,
          -7,
          -7,
          -7,
          -4.433617844253738,
          -7,
          -4.301767669438014,
          -7,
          -7,
          -7,
          -4.1034273973827675,
          -7,
          -7,
          -7,
          -7,
          -4.254994950511596,
          -4.166370901288565,
          -7,
          -4.676318583037297,
          -7,
          -7,
          -4.487159594558902,
          -7,
          -4.694561328588372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.634033680419679,
          -2.891398059667226,
          -4.386837707954007,
          -3.175060190094287,
          -3.1378512485602417,
          -7,
          -7,
          -3.6221103603612193,
          -4.126346240058687,
          -1.8986117147091868,
          -2.799168176170151,
          -3.993583175003126,
          -3.5565900792280734,
          -2.9979365499064756,
          -7,
          -3.563629384689655,
          -7,
          -3.40226138245468,
          -7,
          -3.70816585785554,
          -7,
          -7,
          -3.012511088004144,
          -4.1288935255919,
          -7,
          -2.945796726048,
          -2.1844978518164426,
          -7,
          -3.373322322112365,
          -7,
          -5.408674042791168,
          -7,
          -7,
          -7,
          -4.059165668942177,
          -4.1612631598785494,
          -4.79642167893092,
          -7,
          -7,
          -3.6189889203649335,
          -3.3769256694846685,
          -4.513909787827383,
          -2.9995654882259823,
          -2.837879683009075,
          -4.120033076541163,
          -3.7445276734725663,
          -3.5185468397288107,
          -7,
          -7,
          -3.850023034064681,
          -3.490740829565697,
          -7,
          -2.683947130751512,
          -7,
          -7,
          -7,
          -3.2921314153833943,
          -1.7102566530665484,
          -2.5170943442299034,
          -7,
          -7,
          -3.2646725497243874,
          -7,
          -1.9232665507054019,
          -2.9400181550076634,
          -3.097373013565665,
          -7,
          -3.1866469562045387,
          -2.5002653709620417,
          -7,
          -7,
          -4.185117001142592,
          -7,
          -2.187722109424307,
          -7,
          -7,
          -3.1995906406036934,
          -7,
          -3.477265995424853,
          -7,
          -1.8010393369976914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.352685456896385,
          -4.801383126852731,
          -7,
          -7,
          -1.533045512062462,
          -7,
          -2.122670875152478,
          -7,
          -1.986024882006687,
          -2.714131144414292,
          -7,
          -7,
          -7,
          -2.4295038277748633,
          -3.8284020784915933,
          -3.452246574520437,
          -3.564192460626198,
          -2.6651788044030984,
          -7,
          -2.5370172851730106,
          -2.8598135415071138,
          -7,
          -7,
          -2.1249115923549144,
          -1.546895032245456,
          -7,
          -3.724930914192398,
          -7,
          -7,
          -3.9915361753000314,
          -2.2618033722622637,
          -2.512758383307129,
          -2.4245186658770486,
          -3.76767522402796,
          -2.645053650442902,
          -7,
          -7,
          -2.752355804153501,
          -7,
          -7,
          -2.655031662965263,
          -2.382917135087531,
          -3.534026106056135,
          -7,
          -2.2628823653189034,
          -2.520072713605655,
          -2.4188774698213766,
          -2.780934207814762,
          -2.6713304313164055,
          -7,
          -3.566555330883055,
          -3.2229764498933915,
          -3.1492533346704406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3714941287694646,
          -7,
          -3.708299470109623,
          -7,
          -7,
          -3.24699069924155,
          -3.813714391881145,
          -2.415529779157638,
          -7,
          -2.6137243973838293,
          -7,
          -1.8932208126749903,
          -2.513617073787875,
          -7,
          -3.3807537708039,
          -2.0724752248302725,
          -2.7268629897004635,
          -3.0289614544096257,
          -3.1796953833245065,
          -7,
          -7,
          -3.0782755220866007,
          -7,
          -7,
          -7,
          -3.6163179419637905,
          -7,
          -2.690196080028514,
          -2.1389339402569236,
          -7,
          -7,
          -3.13433651094868,
          -2.149512356746132,
          -7,
          -3.6413749451921253,
          -7,
          -3.390581878550435,
          -3.8873922189718466,
          -7,
          -3.166726055580052,
          -3.079362164393046,
          -3.7283537820212285,
          -7,
          -7,
          -3.201527172077645,
          -2.6291182240619984,
          -2.1425682249120177,
          -3.42217931474113,
          -7,
          -3.3502480183341627,
          -7,
          -3.407900540142635,
          -3.6216954623292787,
          -3.3881012015705165,
          -3.5077209766856137,
          -2.7728105019145324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.203731658404463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.270473865990263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6033067965385137,
          -7,
          -7,
          -7,
          -7,
          -4.398532175467584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8488047010518036,
          -4.708021267385997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3180633349627615,
          -3.03261876085072,
          -3.098470665650629,
          -2.88930170250631,
          -7,
          -7,
          -3.0394141191761372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5776066773625357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6074550232146683,
          -7,
          -3.5437232293405754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.953711380427555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603966695368847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2127201544178425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4727564493172123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6163179419637905,
          -7,
          -7,
          -7,
          -3.094471128641645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.869476186093696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.62666878745452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.604334073102911,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.204616423121799,
          -7,
          -7,
          -7,
          -4.195650622404186,
          -3.512791089371343,
          -7,
          -7,
          -7,
          -2.761927838420529,
          -7,
          -3.8614746688571686,
          -3.284374328300976,
          -7,
          -7,
          -4.015522748273542,
          -7,
          -7,
          -7,
          -3.3176455432211585,
          -7,
          -7,
          -4.388746359046655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3341664243247684,
          -7,
          -7,
          -7,
          -4.238231203666038,
          -2.4878451201114355,
          -7,
          -3.0308020487722676,
          -7,
          -3.3398487830376373,
          -7,
          -7,
          -7,
          -2.82020145948564,
          -7,
          -3.546494382010644,
          -3.4437322414015967,
          -3.125535481352859,
          -7,
          -7,
          -3.0178677189635055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8484970180903666,
          -7,
          -7,
          -7,
          -7,
          -3.4313637641589874,
          -3.3309208305952356,
          -2.4456042032735974,
          -7,
          -4.125354374619764,
          -7,
          -7,
          -7,
          -2.847572659142112,
          -3.3988077302032647,
          -7,
          -7,
          -7,
          -3.442793225939769,
          -7,
          -2.64598337340893,
          -7,
          -7,
          -7,
          -3.738882805567102,
          -3.060320028688285,
          -3.5422858532992207,
          -7,
          -7,
          -7,
          -7,
          -3.381295623003826,
          -3.5833121519830775,
          -7,
          -3.6724365371419165,
          -7,
          -7,
          -7,
          -3.496006598880036,
          -7,
          -3.076094046682475,
          -7,
          -3.0272476487457864,
          -2.668714720098945,
          -2.965201701025912,
          -7,
          -7,
          -7,
          -4.3848370882036845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8720979742742268,
          -4.152326572848545,
          -7,
          -7,
          -7,
          -7,
          -2.6388219222193925,
          -2.7444494574467986,
          -3.605951157564873,
          -7,
          -7,
          -3.3961993470957363,
          -2.8695250628572273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.329641910730211,
          -3.2513136962545923,
          -4.154149979881548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8369567370595505,
          -7,
          -3.825945143203848,
          -7,
          -7,
          -7,
          -3.427523559574997,
          -7,
          -7,
          -7,
          -3.172894697752176,
          -7,
          -2.4765418090274287,
          -7,
          -3.094994900944612,
          -2.52781396295585,
          -3.26528962586083,
          -2.876044550246095,
          -2.270031504854933,
          -7,
          -4.197026187759492,
          -2.287241711178348,
          -7,
          -7,
          -3.0253058652647704,
          -2.260667536990012,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4781218737204944,
          -7,
          -7,
          -2.9817053769570374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0619234632803045,
          -7,
          -7,
          -7,
          -3.739770065592548,
          -2.787460474518415,
          -7,
          -7,
          -3.7570922201189325,
          -7,
          -3.2105860249051563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4762155307586386,
          -7,
          -3.852540985769799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.131458260106525,
          -5.013989316295481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.219322508419337,
          -2.569373909615046,
          -7,
          -2.749736315569061,
          -2.8273692730538253,
          -7,
          -2.7331972651065692,
          -2.2815383608882356,
          -4.94254376595368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.479791180189492,
          -3.5138831856110926,
          -7,
          -7,
          -7,
          -3.7128390329454333,
          -7,
          -4.232881807330064,
          -2.416640507338281,
          -4.233782715084948,
          -7,
          -7,
          -7,
          -3.99140330258004,
          -3.7393349601960795,
          -3.6589172200445175,
          -3.71474876072506,
          -3.8386602259889413,
          -2.7151673578484576,
          -7,
          -7,
          -2.6745549761273852,
          -3.154271775993095,
          -2.9492273190678455,
          -7,
          -7,
          -2.554186199069382,
          -1.9144753825678371,
          -7,
          -7,
          -2.5563025007672873,
          -7,
          -7,
          -7,
          -7,
          -5.131871982362283,
          -3.1132189243125046,
          -7,
          -7,
          -7,
          -3.0382226383687185,
          -7,
          -7,
          -7,
          -3.5025636691073636,
          -3.784759894664005,
          -3.2821687783046416,
          -2.7427251313046983,
          -3.0572856444182146,
          -4.624260819011183,
          -2.4036529261103188,
          -7,
          -7,
          -7,
          -3.7537362221750104,
          -2.710857489788406,
          -7,
          -2.979548374704095,
          -7,
          -7,
          -3.0166155475571776,
          -7,
          -3.697490887171057,
          -7,
          -7,
          -2.358146439931267,
          -7,
          -4.856940247940732,
          -3.2725556132438163,
          -4.796104055499863,
          -7,
          -3.3135157072120407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.487491891558492,
          -7,
          -7,
          -2.4162243170985684,
          -3.3416323357780544,
          -2.576341350205793,
          -2.9579081586744045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.372599050995377,
          -7,
          -4.59027324779574,
          -4.8801731073077965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.613704432062307,
          -7,
          -7,
          -4.2877868054647905,
          -7,
          -7,
          -3.3276041138143158,
          -7,
          -4.05924272179019,
          -2.6089715095439416,
          -3.0112884341835358,
          -4.139768925279731,
          -4.059416672002962,
          -3.7258753488678242,
          -7,
          -3.180906049868878,
          -7,
          -2.4424797690644486,
          -3.0920887392558067,
          -7,
          -7,
          -7,
          -4.213287488896829,
          -3.875014653677954,
          -7,
          -7,
          -3.6853834098014873,
          -7,
          -3.9138812542789005,
          -7,
          -7,
          -7,
          -4.216772698429039,
          -7,
          -3.844021310509786,
          -7,
          -4.782537118557698,
          -3.5997739391463885,
          -3.9121954771094196,
          -7,
          -4.119871473338342,
          -3.787814567063023,
          -7,
          -3.3867911712924914,
          -4.478681907362235,
          -7,
          -4.648504426480184,
          -7,
          -3.1107019165992926,
          -3.8294109927999447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.167465028843088,
          -3.350441856535061,
          -3.2282006765179165,
          -7,
          -7,
          -4.040701211937358,
          -7,
          -2.6924062348336304,
          -7,
          -3.744214724814166,
          -7,
          -3.717677436128305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0136796972911926,
          -7,
          -3.5203525040833177,
          -7,
          -4.0104271727170495,
          -7,
          -7,
          -7,
          -4.617290473188997,
          -7,
          -7,
          -7,
          -2.8548624729879006,
          -7,
          -2.9810631808506,
          -7,
          -3.2005769267548483,
          -3.77271278687713,
          -7,
          -7,
          -7,
          -3.1903316981702914,
          -7,
          -7,
          -7,
          -2.6290696425437527,
          -7,
          -3.2645817292380777,
          -3.285061975935162,
          -7,
          -7,
          -3.5368108659915416,
          -2.605708978411961,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5988744976635094,
          -3.1533574714829737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0236639181977933,
          -7,
          -7,
          -7,
          -3.313375022247447,
          -3.2317549484334687,
          -7,
          -7,
          -3.7026028413404273,
          -7,
          -7,
          -7,
          -3.7298125071609354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.926818160391426,
          -7,
          -7,
          -3.6427488455183137,
          -7,
          -3.1381447441794874,
          -7,
          -7,
          -7,
          -3.0373268776897215,
          -3.059658066366697,
          -7,
          -7,
          -3.2440295890300215,
          -7,
          -3.7923391506976287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.436162647040756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8057386695128246,
          -7,
          -7,
          -7,
          -7,
          -3.529045170765769,
          -7,
          -7,
          -3.5946273153522026,
          -7,
          -7,
          -7,
          -7,
          -3.400192488592576,
          -7,
          -7,
          -7,
          -7,
          -3.6504046698680317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1332194567324945,
          -3.390758528738717,
          -7,
          -7,
          -7,
          -3.7441040596897293,
          -7,
          -7,
          -7,
          -4.2155318184912955,
          -2.8148876006841723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.353069502665453,
          -3.2269605935324526,
          -7,
          -7,
          -3.7275029147317134,
          -7,
          -3.171433900943008,
          -7,
          -2.6694718473766423,
          -3.3248994970523134,
          -3.1920095926536702,
          -3.091373812473584,
          -7,
          -7,
          -7,
          -7,
          -3.1357685145678222,
          -2.8491121661845775,
          -7,
          -7,
          -2.875784485010796,
          -7,
          -3.939450608698325,
          -2.6525686374796384,
          -7,
          -3.4599952560473914,
          -7,
          -3.008855563996213,
          -7,
          -7,
          -7,
          -2.8356905714924254,
          -7,
          -3.1559110927700798,
          -2.9428757745535403,
          -2.618097926840299,
          -3.1426397078324166,
          -7,
          -2.6461585698621124,
          -2.8431081419996067,
          -7,
          -7,
          -7,
          -7,
          -2.934750874663579,
          -3.6461095219788477,
          -3.984632311405793,
          -7,
          -7,
          -3.512550992904211,
          -7,
          -3.787956123283932,
          -2.418998673214926,
          -7,
          -3.5338991007965945,
          -4.525718413121268,
          -7,
          -2.9992755720056676,
          -7,
          -7,
          -3.9166644645413973,
          -7,
          -7,
          -7,
          -3.2436580266386965,
          -7,
          -2.805614117901356,
          -7,
          -3.407900540142635,
          -7,
          -3.9769126735719555,
          -3.6217992240026677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.497067936398505,
          -7,
          -7,
          -3.326277326730684,
          -7,
          -3.071513805095089,
          -7,
          -3.3066823110190553,
          -7,
          -3.016476194280864,
          -2.867663867912998,
          -2.794662287175811,
          -2.885025331908764,
          -7,
          -7,
          -3.3092041796704077,
          -7,
          -2.5963003092425367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5918711998469846,
          -7,
          -7,
          -7,
          -3.228913405994688,
          -3.7929079827804753,
          -2.8327217499964084,
          -7,
          -3.076002913646383,
          -3.109240968588203,
          -7,
          -3.013490283397704,
          -3.5685537120494426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.057818194432099,
          -3.0850764114720945,
          -3.573741641520317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8711641328029494,
          -7,
          -7,
          -3.245265839457461,
          -3.3744061508805894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3287872003545345,
          -1.1811800845513774,
          -2.328209658423107,
          -1.7728647785479723,
          -2.4279547009381286,
          -7,
          -3.6608975946643114,
          -7,
          -7,
          -7,
          -2.101599797231485,
          -2.3862016054007933,
          -7,
          -7,
          -3.25988044734366,
          -7,
          -7,
          -7,
          -3.7769190028420465,
          -2.889873260441745,
          -7,
          -3.7394141026986953,
          -2.5118833609788744,
          -7,
          -3.4893959217271293,
          -7,
          -2.933824603968112,
          -3.016824493667488,
          -2.768268016451548,
          -3.39776625612645,
          -7,
          -2.7272158209084925,
          -7,
          -7,
          -2.954081629836854,
          -4.356236257289767,
          -2.828015064223977,
          -3.7993405494535817,
          -7,
          -7,
          -3.215108581053093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7179477417489277,
          -4.370050237074868,
          -3.417859036208306,
          -7,
          -7,
          -7,
          -7,
          -3.1271047983648077,
          -7,
          -7,
          -7,
          -7,
          -3.356312741150645,
          -7,
          -5.7135837761949855,
          -7,
          -2.698680378128617,
          -7,
          -7,
          -7,
          -7,
          -3.154880244718762,
          -7,
          -2.598790506763115,
          -3.0437551269686796,
          -2.7450747915820575,
          -7,
          -2.5443781439578124,
          -7,
          -2.146128035678238,
          -2.435985853029805,
          -3.7699432142157887,
          -7,
          -7,
          -7,
          -7,
          -3.245018870737753,
          -3.2281436075977417,
          -7,
          -2.944975908412048,
          -7,
          -7,
          -7,
          -3.0826058726978984,
          -7,
          -7,
          -7,
          -3.631078320874444,
          -7,
          -7,
          -3.251638220448212,
          -4.0180677317772515,
          -7,
          -7,
          -7,
          -3.022057020601165,
          -3.7939300067726847,
          -3.294378035587241,
          -3.2949069106051923,
          -7,
          -3.3609718837259357,
          -7,
          -3.1095785469043866,
          -2.427932184049885,
          -2.7757317762602307,
          -1.5448765357073875,
          -3.0394141191761372,
          -2.554186199069382,
          -7,
          -1.7533276666586115,
          -2.7801372190494913,
          -7,
          -7,
          -2.28746818870221,
          -7,
          -7,
          -7,
          -4.8331853740582575,
          -3.6299190355035416,
          -7,
          -4.301811023017477,
          -7,
          -7,
          -3.3601198615808054,
          -3.1151110355043476,
          -3.989004615698537,
          -3.5928426831311002,
          -2.4696939810474294,
          -2.378563063331533,
          -2.6069185259482914,
          -7,
          -5.226809913771843,
          -2.830107278114626,
          -7,
          -7,
          -7,
          -3.5054891384167237,
          -7,
          -7,
          -1.2143254249690765,
          -3.516931808868013,
          -7,
          -3.449478399187365,
          -7,
          -2.9112337273068007,
          -7,
          -2.9967305154351527,
          -3.3867664157173136,
          -7,
          -4.1623373431820045,
          -3.700721019369356,
          -4.6452557790817,
          -7,
          -3.237292337567459,
          -4.118487935113617,
          -3.12515582958053,
          -7,
          -2.801403710017355,
          -3.1332194567324945,
          -7,
          -3.3549403598710645,
          -3.776555910703262,
          -3.450249108319361,
          -7,
          -7,
          -7,
          -2.000929635350122,
          -2.32299412898388,
          -2.949877704036875,
          -2.172929010344586,
          -2.266290508320006,
          -2.2108668629911357,
          -3.048053173115609,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.583317820106908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.389213942752022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9546765869186435,
          -3.6227837254272086,
          -7,
          -7,
          -7,
          -5.237257129870853,
          -1.864892319838019,
          -2.8819549713396007,
          -7,
          -4.0628826901303645,
          -3.4078022359577385,
          -7,
          -7,
          -7,
          -1.9888332625766045,
          -7,
          -7,
          -7,
          -7,
          -3.5631337570664607,
          -5.0118212780525235,
          -5.405999956928305,
          -3.151676230847048,
          -2.6308970444785422,
          -7,
          -3.9588074784637617,
          -7,
          -7,
          -3.8005452505919526,
          -7,
          -7,
          -4.0351294308208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.788021441365733,
          -7,
          -7,
          -3.992740017742474,
          -4.482201621904094,
          -7,
          -3.7577093522289338,
          -7,
          -7,
          -4.3144255411267,
          -4.310629596987806,
          -7,
          -2.470924753299968,
          -7,
          -7,
          -7,
          -3.8770976656512293,
          -2.2651127598506875,
          -3.1614224558093555,
          -7,
          -7,
          -3.4015154183068543,
          -7,
          -1.69186516156754,
          -3.1408221801093106,
          -3.09871293057888,
          -7,
          -3.847723429663294,
          -2.9828137621318627,
          -7,
          -3.453776859690442,
          -4.14863349848935,
          -7,
          -3.0262062970831183,
          -7,
          -7,
          -3.825491029879431,
          -7,
          -7,
          -3.3995006613146104,
          -3.6073477767684134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0555242765059525,
          -7,
          -7,
          -7,
          -1.8051273703396125,
          -7,
          -2.475792212285615,
          -7,
          -2.762678563727436,
          -3.062699472253201,
          -7,
          -7,
          -7,
          -2.7556843338524133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.109240968588203,
          -3.23771125771367,
          -7,
          -7,
          -2.5044185788030413,
          -2.252411674761112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4070044182995427,
          -3.019504393829438,
          -3.2530955858490316,
          -7,
          -7,
          -7,
          -7,
          -2.2974869397629045,
          -7,
          -7,
          -2.9769610160114275,
          -2.943803556324682,
          -7,
          -7,
          -2.9356332030394285,
          -3.1184451059128824,
          -2.6835873175727674,
          -2.6310086768259344,
          -3.2785249647370174,
          -7,
          -7,
          -7,
          -3.1048284036536553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.372819981678968,
          -7,
          -3.2667019668840878,
          -7,
          -3.8392265740134355,
          -7,
          -7,
          -3.5547798038037937,
          -7,
          -2.695731774096823,
          -7,
          -3.3944516808262164,
          -7,
          -2.121438887639747,
          -2.8806502929812914,
          -7,
          -3.0678145111618402,
          -2.6956567599361905,
          -2.99409708958821,
          -3.3654539479394416,
          -2.6500645611776816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4313637641589874,
          -2.3441114495680493,
          -7,
          -7,
          -7,
          -2.6441923209713596,
          -7,
          -3.497620649781288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.507693992654917,
          -3.245018870737753,
          -3.236033147117636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3677285460869766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.505584055799225,
          -7,
          -7,
          -2.7708520116421442,
          -7,
          -4.211093831058964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8608169638645378,
          -2.804480189105993,
          -7,
          -7,
          -4.124647428970661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5646542304537565,
          -3.0538464268522527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.47928731647617,
          -7,
          -7,
          -7,
          -4.840225320794298,
          -7,
          -7,
          -3.325515663363148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.209268308111116,
          -7,
          -3.902438056198665,
          -7,
          -7,
          -2.525044807036845,
          -2.832189461068513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5633624094866074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.428701599623054,
          -2.8496241248456595,
          -7,
          -7,
          -5.125305560484238,
          -7,
          -3.348499570283838,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.628238178156956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1607685618611283,
          -7,
          -3.678390894445094,
          -7,
          -7,
          -3.103803720955957,
          -7,
          -3.207652316779632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1722233414277525,
          -7,
          -7,
          -7,
          -7,
          -4.692750007059422,
          -7,
          -7,
          -3.3011385557150157,
          -7,
          -7,
          -3.696683952154445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2486270782758857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.939219635854818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.485011214578573,
          -2.463332970234029,
          -2.9559281568969507,
          -2.832625018703961,
          -1.3942821780014913,
          -7,
          -3.9898163827557567,
          -7,
          -7,
          -2.2227164711475833,
          -7,
          -1.7172863415602266,
          -2.8048206787211623,
          -7,
          -3.9209577059554492,
          -7,
          -7,
          -7,
          -7,
          -3.7621936280615906,
          -7,
          -7,
          -3.580696939712437,
          -7,
          -7,
          -7,
          -7,
          -3.118264726089479,
          -7,
          -7,
          -7,
          -3.66143405039392,
          -7,
          -7,
          -3.28668096935493,
          -7,
          -7,
          -3.294613170667107,
          -7,
          -3.7545776560447304,
          -7,
          -2.900093901543398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.549371152333177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.941511432634403,
          -3.608312042697327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2105860249051563,
          -2.225309281725863,
          -7,
          -2.2430380486862944,
          -7,
          -7,
          -7,
          -2.7533276666586115,
          -4.3402903989534085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.965201701025912,
          -7,
          -2.696356388733332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8371252805687592,
          -7,
          -7,
          -2.7054360465852505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3561215062369856,
          -3.41077723337721,
          -3.5354207180561734,
          -7,
          -7,
          -7,
          -3.1427022457376155,
          -3.1492191126553797,
          -2.9438241512023096,
          -7,
          -1.9144753825678371,
          -1.7533276666586115,
          -7,
          -7,
          -7,
          -7,
          -3.323716062508784,
          -7,
          -3.427972713608209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5817221599490985,
          -7,
          -7,
          -7,
          -3.3049928927594086,
          -3.274619619091238,
          -2.00445572629165,
          -7,
          -5.2263150073879165,
          -3.867408556522791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9556877503135057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3863384163575105,
          -5.398155365331024,
          -7,
          -3.7885925559203595,
          -7,
          -2.9927007612585004,
          -7,
          -7,
          -7,
          -7,
          -3.4790711958039306,
          -3.7168377232995247,
          -7,
          -2.6532125137753435,
          -7,
          -3.3872118003137306,
          -2.3404441148401185,
          -2.968015713993642,
          -1.849507158919312,
          -7,
          -2.5569052690554477,
          -3.2467173689525204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.402840056067149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.065852230217733,
          -3.279837982245049,
          -7,
          -7,
          -7,
          -7,
          -2.0964585634020168,
          -3.0066086442803615,
          -4.440310728382506,
          -4.360328288072052,
          -4.679963619914295,
          -7,
          -7,
          -7,
          -1.5502283530550942,
          -7,
          -7,
          -7,
          -7,
          -4.38925027615392,
          -7,
          -7,
          -7,
          -3.204933522354145,
          -7,
          -4.955211352309952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.32054091992458,
          -7,
          -7,
          -7,
          -4.212400702780119,
          -7,
          -3.994729470636526,
          -7,
          -7,
          -4.466135768755128,
          -7,
          -7,
          -4.068601788131928,
          -7,
          -7,
          -4.130151433775354,
          -7,
          -7,
          -2.6242820958356683,
          -7,
          -7,
          -7,
          -4.468037009225747,
          -3.3439990690571615,
          -3.8808707325324234,
          -7,
          -7,
          -3.8639173769578603,
          -7,
          -2.5080806036449093,
          -7,
          -3.440436766105774,
          -7,
          -3.7552510186268915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5160062303860475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.492229415365499,
          -4.787425049380184,
          -7,
          -7,
          -2.727846132072248,
          -7,
          -3.453776859690442,
          -7,
          -7,
          -3.4037331527937047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.256717745977487,
          -3.982904117792628,
          -7,
          -7,
          -3.5326270012288914,
          -3.028571252692538,
          -7,
          -4.143826390839561,
          -7,
          -7,
          -7,
          -3.3138672203691533,
          -3.949179151853337,
          -7,
          -3.2847690133490195,
          -7,
          -7,
          -7,
          -2.9206450014067875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7884512070234555,
          -4.152685756036786,
          -3.3089910290001643,
          -7,
          -3.400689059603588,
          -7,
          -7,
          -7,
          -3.4272831961911443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9263939002696824,
          -7,
          -7,
          -3.846535036016974,
          -7,
          -7,
          -7,
          -3.2335037603411343,
          -7,
          -3.0340265237751103,
          -2.8800510030033712,
          -7,
          -7,
          -3.2357808703275603,
          -7,
          -4.393926006585837,
          -3.0107238653917734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.105714510570921,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7983743766815614,
          -7,
          -7,
          -7,
          -7,
          -3.3944516808262164,
          -7,
          -7,
          -7,
          -7,
          -3.6471872978959894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.204662511748219,
          -2.387066088357355,
          -2.5327543789924976,
          -7,
          -3.27669152884504,
          -3.4076336627117665,
          -7,
          -7,
          -2.9028184680822537,
          -7,
          -2.6672762205459564,
          -3.357744325180376,
          -7,
          -7,
          -7,
          -7,
          -3.7555509188304823,
          -3.336309606123844,
          -7,
          -2.2125009481995876,
          -3.5045881874226055,
          -7,
          -7,
          -7,
          -2.4825877695267677,
          -7,
          -7,
          -3.6410014137444193,
          -7,
          -3.1832698436828046,
          -7,
          -7,
          -3.4740705032150436,
          -7,
          -3.30362797638389,
          -7,
          -2.3325731039972615,
          -7,
          -3.209393424994102,
          -3.2027606873931997,
          -7,
          -3.495127881242933,
          -7,
          -3.0290589500844995,
          -7,
          -2.6281845080734128,
          -7,
          -7,
          -2.8328281295393536,
          -3.1000787963935963,
          -2.9719712763997563,
          -2.722198248380669,
          -3.555880064636805,
          -7,
          -7,
          -2.792975026700668,
          -3.3142886609474975,
          -7,
          -7,
          -7,
          -2.99211148778695,
          -7,
          -3.2889344912500436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9424214699806175,
          -7,
          -7,
          -4.1285252733891005,
          -2.3307035928340225,
          -1.9210015763006458,
          -7,
          -3.2258259914618934,
          -3.451939869365103,
          -7,
          -7,
          -7,
          -3.2727695865517594,
          -7,
          -3.0088130090520893,
          -7,
          -2.84432182089448,
          -7,
          -4.118885103297191,
          -7,
          -3.757282125444405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2081725266671217,
          -4.178775572045411,
          -7,
          -7,
          -7,
          -2.634141258939403,
          -7,
          -3.5267268673146357,
          -7,
          -2.8734866800131793,
          -3.1908917169221698,
          -1.4730000927917108,
          -1.3033097619588798,
          -2.028222561801142,
          -7,
          -2.7878404649420316,
          -7,
          -3.144262773761991,
          -7,
          -7,
          -7,
          -7,
          -3.4223709414184693,
          -4.761845179355819,
          -3.276921132065774,
          -3.8975171294005255,
          -7,
          -4.095069050964049,
          -7,
          -2.972665592266111,
          -2.921166050637739,
          -7,
          -7,
          -2.887950539931525,
          -3.5961570809161723,
          -7,
          -7,
          -4.0846656297465795,
          -7,
          -7,
          -7,
          -2.583198773968623,
          -7,
          -7,
          -3.1991378431311865,
          -7,
          -3.7637274037656985,
          -7,
          -7,
          -7,
          -2.003245054813147,
          -2.220854940299613,
          -3.7906369619317033,
          -3.185712099870006,
          -7,
          -7,
          -3.3014640731432996,
          -3.407354479028052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3951515915045425,
          -7,
          -2.5379449592914867,
          -3.525044807036845,
          -2.4474681309497557,
          -2.849777594833205,
          -3.12515582958053,
          -7,
          -2.325587207294423,
          -3.245265839457461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8556123319140068,
          -7,
          -4.000954398406458,
          -7,
          -3.0946807133711545,
          -2.732568812248553,
          -2.718916686014861,
          -1.9089510001271135,
          -2.7786034050126207,
          -3.092018470752797,
          -2.287670025764879,
          -7,
          -2.97297382115194,
          -3.064832219738574,
          -3.414137362184477,
          -3.242127143728284,
          -7,
          -7,
          -7,
          -3.694868327982456,
          -2.512625110914785,
          -7,
          -7,
          -2.6014828106002095,
          -3.1458177144918276,
          -1.435209888081237,
          -1.601093818555942,
          -2.45838601110505,
          -0.4080403355763634,
          -2.9647309210536292,
          -3.2103854115447934,
          -3.505149978319906,
          -7,
          -2.9269851794378066,
          -4.374528394381243,
          -3.062689403096359,
          -7,
          -2.542514216281654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.659298054866162,
          -3.378942698613437,
          -3.8606673464441363,
          -5.412756136675269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2078185495655274,
          -2.725094521081469,
          -3.4207806195485655,
          -7,
          -7,
          -7,
          -3.2174839442139063,
          -7,
          -3.1815577738627865,
          -7,
          -2.9420621061144216,
          -7,
          -7,
          -7,
          -2.9116901587538613,
          -1.4251148148819859,
          -1.5931917679251126,
          -7,
          -7,
          -3.2845811128217504,
          -7,
          -3.243719975783927,
          -3.0969100130080562,
          -2.738780558484369,
          -7,
          -7,
          -3.158463011591568,
          -2.700126581535961,
          -2.965486399076146,
          -3.307067950661298,
          -3.5727803542787444,
          -7,
          -7,
          -2.448190836779987,
          -2.885522757873026,
          -7,
          -3.5269850685599957,
          -3.1873091622635195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.105964111628025,
          -7,
          -7,
          -7,
          -2.7801372190494913,
          -7,
          -7,
          -2.236789099409293,
          -3.196728722623287,
          -2.5750954320148955,
          -2.765668554759014,
          -1.903331194708171,
          -1.3205542659267813,
          -3.161275589322209,
          -3.6421181336945816,
          -7,
          -3.1925888952127703,
          -7,
          -7,
          -3.2062860444124324,
          -7,
          -2.998912904358786,
          -3.1414497734004674,
          -3.8494194137968996,
          -3.461348433647983,
          -2.8549130223078554,
          -3.035829825252828,
          -4.829018653399399,
          -3.4459154139511234,
          -7,
          -7,
          -7,
          -3.2203696324513946,
          -3.406625327867206,
          -7,
          -2.9845273133437926,
          -7,
          -7,
          -2.785329835010767,
          -7,
          -3.7753191218294777,
          -7,
          -7,
          -3.7091002815511667,
          -7,
          -3.7487186396632652,
          -4.404012226182244,
          -4.729720613228042,
          -7,
          -3.1552752927300998,
          -4.1774911511996935,
          -3.3627965209590185,
          -7,
          -3.3316297176299323,
          -7,
          -3.1658376246901283,
          -7,
          -7,
          -3.1848333339333537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3068537486930083,
          -3.0305187648435425,
          -3.239049093140191,
          -2.5843977472261894,
          -7,
          -3.150756439860309,
          -4.605628222007619,
          -7,
          -7,
          -3.712733859069952,
          -7,
          -4.089180683445066,
          -7,
          -3.9989237887958713,
          -3.194995460578334,
          -4.018284308426531,
          -7,
          -7,
          -7,
          -7,
          -3.6886978416536516,
          -7,
          -4.381214388259336,
          -4.626432760627577,
          -7,
          -7,
          -7,
          -7,
          -4.295435142353147,
          -3.9417846441215487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.303987581009804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.623920893251629,
          -7,
          -7,
          -4.115307194646102,
          -3.0906107078284064,
          -7,
          -4.347486138076573,
          -7,
          -4.635792770070686,
          -3.3332456989619628,
          -3.3073890556533043,
          -3.677652569492963,
          -3.7365792753038436,
          -3.688882348427024,
          -7,
          -4.150925214104221,
          -3.879439965995217,
          -3.185825359612962,
          -7,
          -7,
          -7,
          -7,
          -3.9957141500530717,
          -4.074246624930057,
          -7,
          -7,
          -2.3140177818135124,
          -7,
          -4.261043881578282,
          -7,
          -7,
          -3.1551335219650514,
          -7,
          -7,
          -7,
          -7,
          -3.944306380496884,
          -3.6952189189051508,
          -3.23807120613056,
          -7,
          -2.9782348791753277,
          -4.500524627760176,
          -7,
          -3.6258365028509325,
          -4.960499317307279,
          -3.6591552809406296,
          -3.934323610582884,
          -7,
          -3.083413028394797,
          -4.140864047889339,
          -7,
          -7,
          -3.1559430179718366,
          -7,
          -7,
          -7,
          -4.005552278783667,
          -3.2064210652379885,
          -3.0953303204780394,
          -7,
          -7,
          -2.398226262323115,
          -7,
          -2.690786555281818,
          -7,
          -2.7340660548499804,
          -7,
          -2.7121635957440384,
          -3.7038929536325447,
          -7,
          -7,
          -3.6788217632521745,
          -2.7027176733035243,
          -7,
          -7,
          -7,
          -3.0622058088197126,
          -7,
          -3.303196057420489,
          -2.9618954736678504,
          -3.6326597132939136,
          -7,
          -3.007864112074002,
          -7,
          -7,
          -7,
          -3.092814413659737,
          -7,
          -7,
          -7,
          -2.7499635402286176,
          -7,
          -2.6298624609601275,
          -7,
          -3.409087369447835,
          -3.4948036944645287,
          -7,
          -3.2000292665537704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.247768748118374,
          -7,
          -7,
          -2.8662873390841948,
          -3.1476763242410986,
          -7,
          -3.873175231276166,
          -7,
          -7,
          -7,
          -3.009592521262823,
          -2.9572937964557795,
          -2.9801170463604465,
          -3.6871721045948,
          -3.4075608494863623,
          -7,
          -7,
          -3.2657609167176105,
          -7,
          -7,
          -3.490239485246287,
          -3.0837414400078025,
          -7,
          -7,
          -2.8535156967569284,
          -2.7353593330017105,
          -2.0456706229772466,
          -7,
          -2.3169041116345332,
          -3.585573518622731,
          -3.327631347430798,
          -7,
          -2.422127038242261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.676217409487349,
          -3.485295438726089,
          -3.887476638154133,
          -3.6034932083789473,
          -3.7420177471401384,
          -3.2703293970898586,
          -7,
          -2.832029647089928,
          -7,
          -3.426592582305156,
          -2.196689278957495,
          -7,
          -7,
          -7,
          -7,
          -3.109629161027386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.384652041999031,
          -7,
          -3.4687902620996107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4126285205443754,
          -3.6615918551563493,
          -3.5265331155907425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4695408715573652,
          -7,
          -7,
          -7,
          -7,
          -2.940142791106066,
          -7,
          -7,
          -7,
          -7,
          -3.1337783429891113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.726751652680992,
          -7,
          -7,
          -7,
          -7,
          -3.7269987279362624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.332902805685792,
          -7,
          -7,
          -3.336859820916809,
          -4.872592097313848,
          -7,
          -7,
          -7,
          -3.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6354837468149124,
          -7,
          -7,
          -7,
          -3.952582588252909,
          -3.3961993470957363,
          -7,
          -3.7729814503449637,
          -7,
          -7,
          -7,
          -2.900913067737669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7920413107120825,
          -7,
          -2.972819734053675,
          -7,
          -7,
          -7,
          -5.229661368317959,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6586790285824486,
          -7,
          -7,
          -7,
          -3.59955559098598,
          -7,
          -2.8027737252919755,
          -2.6148972160331345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8739015978644615,
          -7,
          -7,
          -4.293274139710753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.060987273541201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1914510144648953,
          -7,
          -7,
          -7,
          -3.6387994113789563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.606327612467192,
          -7,
          -7,
          -7,
          -7,
          -4.030617067957522,
          -7,
          -7,
          -3.550595207489328,
          -7,
          -7,
          -7,
          -7,
          -3.024485667699167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7346398389876994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.681241237375587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941113727037101,
          -7,
          -7,
          -7,
          -7,
          -2.8662873390841948,
          -7,
          -2.0086001717619175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.243534101832062,
          -3.626994396483222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.236789099409293,
          -7,
          -7,
          -3.912753303671323,
          -7,
          -7,
          -2.811909980420099,
          -7,
          -7,
          -7,
          -4.279050648199026,
          -7,
          -7,
          -3.551693915127225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8521138608497614,
          -7,
          -7,
          -7,
          -7,
          -3.5839917991983166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.585686278452497,
          -7,
          -4.8551980103548225,
          -4.381764682017124,
          -5.875131323916717,
          -7,
          -3.4690115586556876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8968154670877886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.36726271478424,
          -7,
          -7,
          -4.878521795501206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.577641134695527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.527913324054898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.771940064202349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.0648995469973555,
          -3.8674674878590514,
          -7,
          -7,
          -7,
          -5.234676698029644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.432119101024855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.689166735427055,
          -5.010377704226107,
          -7,
          -7,
          -7,
          -7,
          -4.953981854545893,
          -7,
          -7,
          -4.064981821697305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.595452128776965,
          -7,
          -7,
          -4.640973093964463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604571622612871,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721068301797159,
          -7,
          -4.795010558631446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.744643016404164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6272429256634116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019116290447073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.737391449978478,
          -7,
          -7,
          -7,
          -3.320146286111054,
          -7,
          -2.8574832669524506,
          -3.321598430465344,
          -2.7732377468893765,
          -3.3569867783872587,
          -3.822560336942692,
          -7,
          -7,
          -3.2339854787802116,
          -3.2947600654704363,
          -3.140665139976736,
          -7,
          -7,
          -7,
          -7,
          -3.2525356393017573,
          -7,
          -7,
          -2.6072405038317426,
          -2.6182484922851024,
          -3.420120848085703,
          -7,
          -7,
          -2.849542252005017,
          -1.9255308560401887,
          -2.8813846567705728,
          -4.397331570391128,
          -2.8170693164140133,
          -7,
          -7,
          -3.060508975605298,
          -7,
          -3.030194785356751,
          -3.3533390953113047,
          -7,
          -2.970346876230093,
          -7,
          -3.9417256698245913,
          -2.7153765052071366,
          -3.370698092575577,
          -2.5143062095606763,
          -7,
          -3.1640552918934515,
          -7,
          -2.940516484932567,
          -7,
          -2.4010870839062237,
          -3.5073160400764136,
          -2.410469509068616,
          -2.7232503803830985,
          -2.045183221912755,
          -2.8051042162920505,
          -7,
          -3.399327532158679,
          -3.022943609686901,
          -3.1051694279993316,
          -7,
          -7,
          -7,
          -2.689486448364248,
          -3.2350231594952237,
          -4.472639451880648,
          -7,
          -7,
          -2.598571663482141,
          -3.281714970027296,
          -2.9328541131019046,
          -3.060320028688285,
          -3.3066394410242617,
          -3.618048096712093,
          -3.053849650809775,
          -7,
          -2.6669857183296606,
          -7,
          -7,
          -2.8732721503754086,
          -2.7002090764515674,
          -3.046300019652969,
          -7,
          -2.448190836779987,
          -2.788875115775417,
          -1.9988403344727612,
          -3.2180976641854886,
          -2.130735706961367,
          -7,
          -3.126273496084421,
          -3.6917002082901615,
          -3.075875295259833,
          -2.994537104298498,
          -7,
          -3.313023110323238,
          -7,
          -3.28668096935493,
          -2.8779469516291885,
          -7,
          -3.1506448175550226,
          -7,
          -2.979548374704095,
          -7,
          -2.6192539127997327,
          -7,
          -2.680901812206373,
          -2.8664350331791066,
          -1.9220356647941572,
          -1.5303194450185882,
          -3.378216149749878,
          -7,
          -3.140979163476971,
          -7,
          -3.632001499438424,
          -7,
          -7,
          -3.559068334034537,
          -3.3948017771627113,
          -2.9807606420143298,
          -7,
          -3.611723308007342,
          -3.4864752222675612,
          -7,
          -7,
          -7,
          -7,
          -2.663700925389648,
          -2.6725083442440685,
          -3.0409186507485244,
          -7,
          -7,
          -2.8378327212541783,
          -2.2807366842245287,
          -3.2626883443016963,
          -7,
          -4.09329908473905,
          -7,
          -7,
          -7,
          -2.605951157564873,
          -7,
          -3.1811644721192858,
          -3.3564720392787937,
          -3.5944201763721857,
          -3.497620649781288,
          -3.3930484664167784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6088468223264116,
          -7,
          -2.860737174321432,
          -3.3961993470957363,
          -2.6886963393230485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0507068636274597,
          -7,
          -3.597366050266028,
          -2.9813655090785445,
          -7,
          -3.6531642561518813,
          -7,
          -2.66838591669,
          -2.8300629327823716,
          -2.571514733712986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8777699234062526,
          -7,
          -4.011401259924744,
          -7,
          -3.2245330626060857,
          -2.462881498750418,
          -3.4129642719966626,
          -3.316319878258001,
          -3.025223915178311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1876617026529592,
          -2.9793206973820245,
          -2.8849840645741107,
          -7,
          -7,
          -3.5395778833453093,
          -7,
          -4.068927611682072,
          -7,
          -3.2794387882870204,
          -7,
          -3.156791368003929,
          -7,
          -3.012274667007467,
          -7,
          -7,
          -3.5431364147862197,
          -3.265525335219074,
          -7,
          -2.471630166315894,
          -3.9061913308567564,
          -3.1551841596940076,
          -7,
          -7,
          -3.0402066275747113,
          -3.2935835134961167,
          -7,
          -7,
          -7,
          -3.375297738217339,
          -2.325834813172621,
          -3.244854146866291,
          -3.3976793537786056,
          -4.538082529106812,
          -7,
          -3.34908316877959,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8955606584533253,
          -7,
          -7,
          -7,
          -7,
          -3.330007700872759,
          -7,
          -3.00108438129222,
          -7,
          -3.2680511640364385,
          -7,
          -7,
          -7,
          -7,
          -2.792916728226602,
          -3.08278537031645,
          -7,
          -7,
          -7,
          -2.519302849235429,
          -3.029557692583844,
          -2.2752564951364582,
          -7,
          -7,
          -7,
          -3.0217994430119934,
          -1.242762218583721,
          -2.5497509785395267,
          -3.0993352776859577,
          -4.12104251895432,
          -3.4176377396522297,
          -3.330210784571528,
          -2.0528761166771035,
          -3.5746484921796697,
          -3.5410172928456567,
          -2.744540022083776,
          -2.1354639462909284,
          -3.1436912310222143,
          -7,
          -7,
          -7,
          -3.4605971888976015,
          -3.158060793936605,
          -3.014205413953746,
          -7,
          -2.5563025007672873,
          -7,
          -7,
          -3.196728722623287,
          -7,
          -7,
          -2.740362689494244,
          -2.671481400086431,
          -7,
          -7,
          -3.6892168647185577,
          -2.584378345778297,
          -3.3138672203691533,
          -4.317373762902532,
          -7,
          -3.1065308538223815,
          -3.2481368116402987,
          -3.5237464668115646,
          -2.6568478474496584,
          -1.760441815902545,
          -7,
          -7,
          -7,
          -2.061640934061686,
          -3.76473832263842,
          -1.9998002784596196,
          -7,
          -7,
          -7,
          -3.5524248457040857,
          -1.8979456641871053,
          -7,
          -7,
          -3.0014091684058766,
          -7,
          -1.79594318285679,
          -2.87486820071597,
          -2.4642320431696545,
          -7,
          -3.132899769944483,
          -1.5903324441974507,
          -7,
          -3.865595462350612,
          -3.4119898767888595,
          -4.370959852740585,
          -7,
          -2.0563850493810585,
          -4.547508059417997,
          -2.6920239462715356,
          -7,
          -7,
          -7,
          -2.0480441310593758,
          -2.9215130698187295,
          -2.7839685107944083,
          -2.506505032404872,
          -7,
          -7,
          -1.2174221537205385,
          -3.3344537511509307,
          -7,
          -7,
          -3.767897616018091,
          -7,
          -1.8084853593283476,
          -7,
          -7,
          -3.0538037967190252,
          -4.4813136109793765,
          -7,
          -7,
          -4.423565331599704,
          -3.01778087917159,
          -3.4763968267253302,
          -3.3506894128456532,
          -2.793677753532247,
          -3.5608626947274646,
          -7,
          -7,
          -4.128512351515452,
          -4.304972809313226,
          -3.341687267347663,
          -7,
          -3.8414399210172423,
          -3.2667530525395057,
          -7,
          -7,
          -7,
          -4.913379340609699,
          -4.306038816336349,
          -2.98085060800934,
          -3.850125259486936,
          -7,
          -4.671691093948305,
          -7,
          -7,
          -3.1505636786888123,
          -4.199618067707931,
          -4.38907744379235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6958026089088825,
          -4.223418056905294,
          -3.151216578856456,
          -7,
          -3.641807500477222,
          -3.330649859099253,
          -3.260834312172319,
          -3.0757658782157344,
          -2.3113299523037933,
          -2.8666417205660397,
          -3.2011238972073794,
          -3.5744942682853273,
          -3.657915936829955,
          -3.86116088844683,
          -2.7919758753523225,
          -2.7781159404537976,
          -7,
          -2.679473322529414,
          -3.4292137870854282,
          -7,
          -2.6267394565233526,
          -4.398634324538392,
          -7,
          -7,
          -3.067775173091482,
          -3.181912549378863,
          -4.666244758796689,
          -7,
          -3.498999363580153,
          -7,
          -3.6611593333465513,
          -7,
          -4.504706975657982,
          -3.08402351282453,
          -7,
          -7,
          -3.8733981128778754,
          -4.153662453575496,
          -4.093890749991982,
          -3.4348083386530925,
          -2.3719048431670435,
          -3.5918989866912243,
          -2.8078055322706246,
          -3.2056238349015698,
          -7,
          -2.5502626059169518,
          -3.8835289504000867,
          -3.7032913781186614,
          -3.9523080096621253,
          -3.353723937588949,
          -2.881547680226655,
          -3.224667706687742,
          -7,
          -3.313234291694724,
          -7,
          -7,
          -7,
          -7,
          -3.3131639093135794,
          -2.8691143269793753,
          -2.587136432247095,
          -7,
          -3.2223262109908117,
          -2.6960216006793116,
          -3.285894712480839,
          -3.2355284469075487,
          -7,
          -2.5886451329030864,
          -7,
          -3.329540247656664,
          -3.44271488292848,
          -7,
          -7,
          -3.6933751510251853,
          -7,
          -2.7804613328617176,
          -7,
          -7,
          -3.8705209500127644,
          -7,
          -7,
          -3.510545010206612,
          -3.378216149749878,
          -7,
          -3.4662372137034914,
          -7,
          -7,
          -4.611903784101518,
          -3.1644324022827406,
          -3.6516102551072227,
          -7,
          -7,
          -2.6591812433275916,
          -7,
          -3.637689819118401,
          -7,
          -3.4847268042986617,
          -2.8518017263087634,
          -7,
          -3.0151501032294714,
          -7,
          -3.4794313371977363,
          -2.75190866845489,
          -7,
          -2.8000293592441343,
          -3.1375123531221294,
          -7,
          -2.9163223242173815,
          -1.9761305930235014,
          -7,
          -7,
          -2.8447433691232478,
          -3.0701302598602904,
          -7,
          -2.886123958121435,
          -7,
          -7,
          -3.9686697017203922,
          -3.551327988003846,
          -2.6771378628204405,
          -3.157456768134226,
          -7,
          -3.4834446480985353,
          -7,
          -7,
          -7,
          -3.866759783495108,
          -7,
          -3.252610340567373,
          -2.9867717342662448,
          -3.4649364291217326,
          -7,
          -2.979377627903428,
          -2.0598778316475386,
          -3.2688119037397803,
          -7,
          -3.1305347842273163,
          -7,
          -7,
          -3.453471233722936,
          -2.939447934040266,
          -3.7795964912578244,
          -7,
          -3.442793225939769,
          -7,
          -7,
          -4.386070702406175,
          -7,
          -3.4114513421379375,
          -7,
          -2.713231045167001,
          -3.5496162395190853,
          -3.9009948994400565,
          -3.2208328926130463,
          -3.7788022040132385,
          -2.7786679601196744,
          -7,
          -7,
          -7,
          -3.464564059655464,
          -2.8271537957574657,
          -7,
          -7,
          -3.2065560440990297,
          -2.9545640899663494,
          -2.913267330378869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.111486550023024,
          -7,
          -7,
          -7,
          -3.379124146070392,
          -3.318689269947746,
          -7,
          -2.920123326290724,
          -7,
          -2.985650973690949,
          -7,
          -3.0741152033076804,
          -3.556965499896943,
          -7,
          -7,
          -7,
          -3.6854730197227594,
          -3.3679147387937527,
          -7,
          -3.313168308546585,
          -3.0946457896059547,
          -2.911867530405052,
          -2.833784374656479,
          -7,
          -3.298525595321999,
          -7,
          -7,
          -3.5660837841679958,
          -7,
          -3.4723907276266286,
          -2.786041210242554,
          -7,
          -7,
          -2.8136836101381175,
          -3.9140785853891122,
          -7,
          -7,
          -7,
          -3.9771746760201876,
          -3.4857687326721285,
          -3.9240207004740677,
          -3.159717546180216,
          -2.8419588750133014,
          -4.112068504268197,
          -7,
          -3.923606643017459,
          -3.06850126027733,
          -2.9824159737447586,
          -3.480054875685184,
          -3.9408649759667216,
          -7,
          -3.9212701855098127,
          -3.916295994563131,
          -2.636443644559298,
          -2.4877321182290824,
          -3.131779009369187,
          -2.2626281576506475,
          -2.3665471616259084,
          -2.718794669189991,
          -2.673072130161556,
          -3.913124790389559,
          -2.528207213524963,
          -2.7041505168397992,
          -2.756230272933612,
          -2.6902981285842693,
          -2.6063324993460637,
          -3.9196532823103643,
          -3.318011132969562,
          -2.350910791047725,
          -2.686948920211501,
          -2.6944503426360096,
          -3.3346145711793946,
          -7,
          -3.2231496826367745,
          -2.9770118969770887,
          -2.8761076811963155,
          -2.505723786499102,
          -3.1581613832785496,
          -3.21761552866633,
          -3.9564565834098997,
          -3.384962397302607,
          -3.3280736545131555,
          -3.1045846507809474,
          -3.738304793074105,
          -2.246092887649155,
          -2.8981764834976764,
          -2.1350457803181566,
          -2.605884933947498,
          -2.583254084014788,
          -2.4435133193234853,
          -7,
          -3.342422680822206,
          -2.639942789926727,
          -3.344490519241893,
          -3.3484022275776355,
          -3.6502103546603593,
          -3.9201755220100227,
          -7,
          -3.155411956437706,
          -2.7694015416651996,
          -3.3196784923566365,
          -7,
          -3.5348718599395945,
          -3.3120185940611497,
          -3.517195897949974,
          -2.69915092268144,
          -3.074607494534864,
          -3.240466042135798,
          -3.088567471385042,
          -7,
          -2.5675926763114987,
          -7,
          -3.9277808493473745,
          -3.037341110553272,
          -3.690993032099869,
          -2.1847946376816547,
          -3.066272667101881,
          -2.2323711362133496,
          -3.03891806603037,
          -1.5967229720048797,
          -3.574224244616876,
          -2.5167404716478536,
          -3.6744937172963503,
          -2.850636434350743,
          -4.049799277918987,
          -3.7834509534038303,
          -7,
          -7,
          -3.716420733846555,
          -3.1341315530078986,
          -3.7062055418819706,
          -2.807722896083161,
          -7,
          -3.7378483616270444,
          -3.644290845128294,
          -2.833890494261626,
          -7,
          -2.072139306017309,
          -3.916295994563131,
          -3.102733766037084,
          -3.965906915495192,
          -2.4540095732950475,
          -1.937795942952816,
          -7,
          -3.450249108319361,
          -2.6130245297554895,
          -3.6629937971760524,
          -2.502741118806208,
          -3.4718293555258857,
          -7,
          -3.041611970435241,
          -2.669704193961892,
          -2.966105615272015,
          -2.6930426355860417,
          -2.5677011407545143,
          -2.6233236263839674,
          -7,
          -2.2272886675019556,
          -3.2412973871099933,
          -3.3021470709295784,
          -2.341169026512188,
          -2.720572720364261,
          -2.0429690733931802,
          -7,
          -7,
          -2.5951811732213312,
          -3.0757901954968463,
          -7,
          -3.9148189804474733,
          -2.923454069651785,
          -3.9096629851540183,
          -7,
          -7,
          -7,
          -7,
          -2.6961674109846214,
          -3.003162150454414,
          -3.138203983656957,
          -4.100025730107863,
          -7,
          -3.7083359026822635,
          -2.465489074876098,
          -3.4483971034577676,
          -2.728974100564831,
          -3.8046845149069406,
          -2.743750905479713,
          -7,
          -3.228964677405161,
          -3.3415334414404065,
          -2.07293081510074,
          -3.6137361412618714,
          -7,
          -3.9854264740830017,
          -3.3639408663008217,
          -3.6194585689943164,
          -3.3647385550553985,
          -3.4976666774938954,
          -2.647340440174626,
          -2.400451639956946,
          -2.6382168866215308,
          -2.0211892990699383,
          -2.7188705947989087,
          -3.6351820486562674,
          -2.088972232225393,
          -3.3293470222286112,
          -3.436374704897461,
          -7,
          -3.3433101031623416,
          -3.025561859661751,
          -3.4487578345818384,
          -7,
          -1.106382700346026,
          -7,
          -3.4741514875108575,
          -3.4379618469315383,
          -3.210786545639109,
          -1.4274622754309116,
          -2.5484139885542367,
          -1.88780952431716,
          -2.1288931953940935,
          -2.1409268419924303,
          -1.8867109891534184,
          -3.0683250363930514,
          -3.0277119350306485,
          -2.9586594270529334,
          -2.6084795227892617,
          -2.8001742327278905,
          -3.156044098964241,
          -4.09282587292398,
          -7,
          -3.6203442997544935,
          -3.9882021002587806,
          -4.473340964185936,
          -3.9230885154423993,
          -2.911712334172279,
          -7,
          -2.8982087790531406,
          -2.8577344348976292,
          -2.6921508972009547,
          -7,
          -3.458788881710845,
          -2.976382734932082,
          -3.300073495267144,
          -7,
          -2.5903358888776986,
          -2.6431378562608008,
          -3.172223341427753,
          -7,
          -3.913124790389559,
          -2.9740509027928774,
          -3.917190308511564,
          -7,
          -3.3311741373868458,
          -3.617629297757842,
          -3.6369390072874714,
          -1.7588497781312729,
          -2.7610252517113727,
          -3.026553691817198,
          -3.7602567411466885,
          -7,
          -3.2316734367061457,
          -3.334905905779908,
          -3.112509247045838,
          -3.4368514568313087,
          -3.920332071539589,
          -3.216517771441886,
          -3.3730499983581987,
          -1.9225367368683335,
          -3.2109602554168117,
          -3.2113875529368587,
          -3.3180633349627615,
          -2.2220918864542596,
          -3.9117965904372523,
          -2.713648019791832,
          -2.8627275283179747,
          -2.502491275926205,
          -3.9122220565324155,
          -3.9143960521297863,
          -7,
          -3.9253120914996495,
          -3.165194847972947,
          -2.825376178771401,
          -7,
          -2.7666606613741322,
          -3.7981324972646138,
          -2.70288382370294,
          -3.361507485824534,
          -1.8964141077401302,
          -2.3220354274653374,
          -3.6163179419637905,
          -7,
          -2.93411571174413,
          -3.036451451240427,
          -2.8291480838234775,
          -2.620978335335007,
          -2.938541798406638,
          -3.9500726297501574,
          -7,
          -3.4510696933190945,
          -2.5261901121876553,
          -3.167481436198042,
          -2.8112397727532894,
          -2.0249984726730275,
          -3.4669565452730775,
          -3.6685256885568625,
          -3.6416723732246865,
          -3.9199144806594317,
          -2.5629111450476487,
          -2.3409808671321186,
          -2.4473675823628844,
          -7,
          -7,
          -2.28746818870221,
          -3.323716062508784,
          -2.5750954320148955,
          -3.912753303671323,
          -2.740362689494244,
          -7,
          -2.6360578308137783,
          -3.4178866903508798,
          -3.9708580569965024,
          -2.8223353642970204,
          -2.9870794370455935,
          -7,
          -3.1095464078914286,
          -3.918502139636174,
          -3.1015506938924196,
          -2.2609794792347033,
          -2.703608100680318,
          -1.8395153297564846,
          -2.1082991858624305,
          -2.405908938343313,
          -2.705458565808605,
          -2.485957905922165,
          -3.098384109699789,
          -3.3691144374820716,
          -2.357588381499906,
          -3.9132839017604186,
          -7,
          -7,
          -3.1276877875398506,
          -2.0634559848506746,
          -3.454387467146955,
          -2.898026718171092,
          -2.8663295425225357,
          -3.2273209825488447,
          -3.089463530840192,
          -7,
          -3.0633333589517497,
          -2.988063243456569,
          -3.0512490216105164,
          -2.4096391348401878,
          -3.097406066153824,
          -3.3825900445189507,
          -3.043863436585028,
          -3.5614677682783173,
          -7,
          -1.9926583941651417,
          -2.948409084250442,
          -1.9483546620868522,
          -7,
          -2.745367607290579,
          -3.321287665169863,
          -1.8376124087883927,
          -2.337443413729783,
          -2.2169099048509042,
          -1.903587331203387,
          -3.916295994563131,
          -7,
          -2.804735581340288,
          -3.023458237643675,
          -2.8256757266498616,
          -3.1664794514726347,
          -2.526051950563682,
          -2.3354836176091194,
          -1.4433070787167055,
          -3.3085644135612386,
          -3.214472950523377,
          -2.796740803977907,
          -3.4270574456574274,
          -4.42130771600335,
          -3.1736596536320567,
          -3.995115777910966,
          -2.472115362423072,
          -3.5820917843954336,
          -3.0664656972289,
          -2.849377765840031,
          -2.7721192856137304,
          -3.7670816213633223,
          -3.599961007377962,
          -3.778585327862962,
          -3.6150917778889546,
          -2.9280827651572063,
          -3.6852190769087634,
          -3.207563090428015,
          -2.910700616959574,
          -4.266795959846667,
          -3.450895448690243,
          -3.759063188160487,
          -3.738584109859517,
          -3.469232742506612,
          -2.996803438696495,
          -3.6118294794983736,
          -7,
          -3.948119424380536,
          -4.363047594521094,
          -7,
          -2.9342782700303656,
          -3.7428625445258743,
          -3.7425051796758373,
          -3.504727542189424,
          -4.066661302300677,
          -7,
          -3.5192371614969833,
          -4.183725258045579,
          -3.278199853444053,
          -3.4588455054292027,
          -3.2905065109413227,
          -3.104487111312395,
          -3.414137362184477,
          -2.5069980127184524,
          -2.1405651757728412,
          -3.0084937139891323,
          -3.421364580221776,
          -7,
          -2.8123440918353033,
          -2.2018229155361007,
          -2.803577602396836,
          -3.0564007084194564,
          -2.7869309831175997,
          -2.9592447613165698,
          -3.669363376415619,
          -3.2896013381314955,
          -4.157214922391151,
          -7,
          -3.8435753430507633,
          -3.153066152285301,
          -3.7913397039651393,
          -7,
          -2.5320820293338104,
          -2.9426573673260323,
          -3.773319780326815,
          -3.32433390894172,
          -1.9449054803762327,
          -3.6298681187461233,
          -2.831585410556541,
          -7,
          -4.272214693977678,
          -3.088933040771907,
          -2.952182327565487,
          -7,
          -3.6798214301325634,
          -3.939319531078238,
          -3.254630748387398,
          -3.76867509238787,
          -3.30252933962341,
          -3.45046466200715,
          -3.008489956179166,
          -3.1529109077659996,
          -3.3419288837458097,
          -2.79702595590107,
          -2.7726950181443613,
          -3.753812783564702,
          -3.2755643375933237,
          -7,
          -3.7648110386557376,
          -2.8903128238621623,
          -3.66064416533768,
          -3.319574469725743,
          -3.9147661369258526,
          -7,
          -7,
          -3.6331990421206344,
          -2.5263157759703248,
          -2.8529589869476504,
          -2.8835289504000867,
          -7,
          -3.381611391532234,
          -2.9407654356312176,
          -3.2284431358004935,
          -2.731767781875961,
          -7,
          -3.0443764119563244,
          -7,
          -2.8781201029720007,
          -3.0313350044270404,
          -3.638289535414257,
          -7,
          -2.316032659035029,
          -3.5149017730441883,
          -2.944553168779153,
          -7,
          -7,
          -2.658393026279124,
          -7,
          -3.643156465619706,
          -2.9371530153045136,
          -3.089591144693822,
          -7,
          -3.300812794118117,
          -7,
          -7,
          -3.8288715612054722,
          -2.2004357471339104,
          -3.1761038471190988,
          -7,
          -3.7198282862543346,
          -2.418595284333892,
          -7,
          -2.795184589682424,
          -7,
          -3.125202335387921,
          -2.8746864162342978,
          -7,
          -3.922777341928798,
          -3.7049222912234017,
          -3.668012971641832,
          -3.194410265239743,
          -3.236537261488694,
          -3.373601541853096,
          -3.257054277944658,
          -3.9403670459856652,
          -3.380075503475807,
          -2.6950561797445025,
          -7,
          -7,
          -2.7928584219256614,
          -2.641751652976988,
          -3.9890491564382202,
          -3.057445878513803,
          -7,
          -7,
          -2.849586911831464,
          -3.038796722367585,
          -2.424932952019074,
          -3.0709404248961243,
          -3.7652959296980564,
          -2.7135838695113863,
          -7,
          -3.8685856665587655,
          -3.0322157032979815,
          -3.5330726600488123,
          -7,
          -3.295347148333618,
          -3.00142462840203,
          -7,
          -3.912434633375575,
          -2.997355174991824,
          -2.2987748165342907,
          -2.711220195775293,
          -3.1558563583922012,
          -2.8216694633753554,
          -3.0260836208009874,
          -3.274058834676048,
          -3.1152300105158863,
          -3.225356280749977,
          -3.3912880485952974,
          -7,
          -7,
          -3.2170099098042058,
          -7,
          -3.3395650046154235,
          -4.0253877998904075,
          -3.9482662198802956,
          -3.4214805302268916,
          -2.7848374672798744,
          -2.7876818161887194,
          -3.023800984470638,
          -2.630661741157685,
          -3.612889769287485,
          -2.9795897577601944,
          -7,
          -2.8979476545330574,
          -7,
          -2.684162875655056,
          -2.977195801518918,
          -7,
          -3.913707913980483,
          -3.023572516643862,
          -3.2550794424275757,
          -2.812498908830492,
          -3.4682488397706415,
          -7,
          -3.612836816232258,
          -7,
          -7,
          -7,
          -7,
          -3.44889174415122,
          -3.4967913157000425,
          -2.987263954122236,
          -3.4565178578052627,
          -3.939119717648487,
          -3.923295840655504,
          -7,
          -3.098693158915045,
          -7,
          -2.9652444739103614,
          -3.971832279924925,
          -2.7799994503958123,
          -4.130687493982032,
          -4.08771044886063,
          -7,
          -7,
          -2.8999376945524498,
          -3.2366883817646155,
          -7,
          -2.6002948575060483,
          -3.943840626401261,
          -3.6409284208668327,
          -3.743588150159904,
          -7,
          -4.011866356527724,
          -3.6177863946963984,
          -3.6207084880206177,
          -3.521835185750824,
          -7,
          -4.087603973687808,
          -3.125667119766511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5674185056727485,
          -7,
          -3.376576957056512,
          -2.8394780473741985,
          -7,
          -7,
          -3.6151701184636975,
          -7,
          -7,
          -7,
          -3.4350210586631755,
          -2.812861957804769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0497799152723837,
          -7,
          -7,
          -3.7234556720351857,
          -3.16724754053639,
          -7,
          -7,
          -3.0330214446829107,
          -2.6570558528571038,
          -3.0068937079479006,
          -7,
          -3.790443508353784,
          -7,
          -7,
          -7,
          -3.1734776434529945,
          -7,
          -7,
          -7,
          -7,
          -3.4671639659690903,
          -7,
          -4.298282163702267,
          -3.1048284036536553,
          -2.7087041048933,
          -3.146593102096305,
          -7,
          -3.400537989391946,
          -7,
          -7,
          -7,
          -3.296665190261531,
          -7,
          -2.9152825534179025,
          -2.932980821923198,
          -3.092670527035679,
          -3.3597722616567713,
          -3.1760912590556813,
          -2.751792151275026,
          -2.4161282165305416,
          -7,
          -7,
          -7,
          -7,
          -3.215901813204032,
          -7,
          -3.8584770418133405,
          -7,
          -7,
          -2.898999270889789,
          -7,
          -7,
          -3.216517771441886,
          -7,
          -7,
          -3.9233249878275025,
          -7,
          -3.4653828514484184,
          -7,
          -7,
          -3.912487761332324,
          -3.433289685195026,
          -7,
          -7,
          -2.6301735297867714,
          -3.219060332448861,
          -1.9992951670372276,
          -7,
          -2.2761081441521505,
          -7,
          -4.001540288088415,
          -7,
          -4.045987605660967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1694098981407,
          -7,
          -7,
          -7,
          -3.156981586378864,
          -7,
          -2.7829024059746446,
          -7,
          -2.5759867517113815,
          -2.624424359200106,
          -2.896801697664922,
          -3.1322596895310446,
          -7,
          -7,
          -3.219846386024361,
          -7,
          -7,
          -7,
          -7,
          -3.693726948923647,
          -7,
          -3.714664992862537,
          -4.759418525871249,
          -7,
          -7,
          -7,
          -4.04250113308656,
          -2.815577748324267,
          -2.836577274840649,
          -3.671358003443492,
          -7,
          -7,
          -4.012584163914151,
          -2.173429094519748,
          -7,
          -7,
          -3.902746034361216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.054804500220955,
          -2.874844061845836,
          -3.696443763138999,
          -3.2615007731982804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.962606072924127,
          -7,
          -7,
          -7,
          -3.117872531243554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8898617212581885,
          -7,
          -7,
          -7,
          -3.913336925932623,
          -7,
          -7,
          -3.5500233911040167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5188428262865648,
          -7,
          -7,
          -7,
          -3.993920958801287,
          -7,
          -3.7711463488149852,
          -3.089207977024948,
          -7,
          -3.7331169814420644,
          -7,
          -7,
          -7,
          -3.054421524462536,
          -3.3981136917305026,
          -7,
          -2.8787132411652734,
          -7,
          -3.174931593528443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.71589893337299,
          -7,
          -3.32688180000995,
          -3.1936810295412816,
          -2.8800510030033712,
          -3.140193678578631,
          -3.1829849670035815,
          -2.533108010216257,
          -2.456366033129043,
          -7,
          -2.226313431264316,
          -7,
          -3.413467412985825,
          -7,
          -7,
          -3.141763230275788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6436993646393145,
          -3.649918718735419,
          -3.8509217930432844,
          -4.567367547554527,
          -7,
          -7,
          -3.1894903136993675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8664940967562282,
          -7,
          -7,
          -7,
          -7,
          -3.225050696138049,
          -7,
          -7,
          -7,
          -2.83290789709985,
          -3.400365273349939,
          -7,
          -3.3792450689395857,
          -7,
          -7,
          -7,
          -3.5502487419887805,
          -3.1293675957229854,
          -3.587748370340144,
          -7,
          -3.570100748491705,
          -7,
          -7,
          -7,
          -2.9773078135080184,
          -7,
          -3.2908801052671617,
          -2.8110534202587316,
          -3.8781194846971676,
          -7,
          -7,
          -7,
          -7,
          -3.545430829465351,
          -3.522313795156667,
          -7,
          -7,
          -7,
          -7,
          -2.765668554759014,
          -7,
          -2.671481400086431,
          -2.6360578308137783,
          -7,
          -7,
          -7,
          -3.334233484255711,
          -7,
          -7,
          -3.4547360006316015,
          -7,
          -7,
          -2.6980038315639985,
          -7,
          -3.0817522444133325,
          -2.5403294747908736,
          -3.829175073917088,
          -7,
          -3.2990712600274095,
          -2.5631843347973486,
          -4.44858201558873,
          -2.3977228071261734,
          -7,
          -7,
          -7,
          -3.80126647048962,
          -2.1551519363678144,
          -7,
          -7,
          -2.903496947335859,
          -7,
          -2.8341026557127935,
          -7,
          -3.7512020945883533,
          -7,
          -7,
          -2.244780916197219,
          -7,
          -4.082671697105723,
          -4.398460849608223,
          -4.3842811346015615,
          -7,
          -2.719267527975772,
          -3.7201220765691922,
          -2.818291890799996,
          -7,
          -3.2610248339923973,
          -3.1072099696478683,
          -2.705756835334468,
          -3.3498600821923312,
          -2.8153563389481215,
          -2.737669627356642,
          -7,
          -7,
          -2.4510883249706517,
          -7,
          -7,
          -3.2317243833285163,
          -2.9242792860618816,
          -2.848189116991399,
          -2.55030900697669,
          -7,
          -7,
          -4.1249821638851625,
          -4.776512319240097,
          -7,
          -7,
          -7,
          -4.384514698685653,
          -7,
          -4.597530649275731,
          -3.5614648480342446,
          -7,
          -7,
          -4.317415586331099,
          -4.246875921472082,
          -4.523338853616795,
          -3.7431176252147416,
          -7,
          -7,
          -4.226806049500727,
          -4.055989583385691,
          -7,
          -7,
          -4.7870032682937715,
          -3.8110832420318603,
          -4.238848680362337,
          -7,
          -7,
          -4.186975160132497,
          -7,
          -7,
          -3.9336318839818554,
          -7,
          -4.381836799998343,
          -3.8588578876206907,
          -3.908753019184534,
          -7,
          -3.6277412634214152,
          -3.6104472214421213,
          -4.161068385471174,
          -7,
          -3.9215304135012423,
          -3.2571984261393445,
          -4.198867769452965,
          -3.9891530670696294,
          -7,
          -3.711891549880579,
          -4.341157437445437,
          -7,
          -3.9359327868037766,
          -4.019365574572488,
          -7,
          -4.14997308296338,
          -3.488273318680757,
          -3.840965941921735,
          -7,
          -4.145957386466343,
          -3.8605775512444156,
          -7,
          -3.8353734524700087,
          -7,
          -7,
          -7,
          -3.5962275132351498,
          -3.825952190910465,
          -4.665554555638625,
          -7,
          -3.7405205860536648,
          -7,
          -4.356427441692355,
          -7,
          -4.804372879565798,
          -3.797821311364024,
          -4.233732009366046,
          -7,
          -7,
          -4.141136090120739,
          -3.6730989213414653,
          -3.666049738480516,
          -3.9292911732550975,
          -7,
          -3.3698268023206466,
          -3.650820767065712,
          -7,
          -3.742405968608249,
          -4.35687639402912,
          -7,
          -4.0062637263183625,
          -7,
          -3.3549723250189762,
          -3.122649163553088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4619484952037616,
          -3.3557798057347688,
          -7,
          -7,
          -3.4000004248702242,
          -7,
          -7,
          -3.1152775913959014,
          -3.3153404766272883,
          -7,
          -3.687426051894165,
          -7,
          -7,
          -7,
          -7,
          -3.1322596895310446,
          -3.241878383159056,
          -7,
          -7,
          -7,
          -7,
          -3.227372442289636,
          -7,
          -3.598790506763115,
          -7,
          -3.4350875123045923,
          -7,
          -7,
          -4.603220178008266,
          -4.494631082083801,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2467447097238415,
          -7,
          -7,
          -3.9645895874899035,
          -7,
          -7,
          -7,
          -3.343605508104172,
          -7,
          -7,
          -7,
          -3.287129620719111,
          -7,
          -7,
          -3.234390722392192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.863709388627451,
          -7,
          -7,
          -7,
          -7,
          -3.35695218082546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.816108670739904,
          -7,
          -3.1411360901207392,
          -3.8428587624452937,
          -7,
          -7,
          -3.232169911523715,
          -3.2939649049909505,
          -2.529558673021163,
          -3.1649473726218416,
          -2.6176711958314747,
          -3.2463754640035085,
          -3.7825442840100103,
          -7,
          -3.7555699806288,
          -7,
          -7,
          -3.29269900304393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.537302670071282,
          -7,
          -3.702171950857711,
          -3.231336067802886,
          -3.0162810245428306,
          -7,
          -7,
          -7,
          -7,
          -3.700790221374347,
          -2.8741503584336896,
          -7,
          -7,
          -7,
          -3.2778383330020473,
          -3.6275194713376826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8423595733306746,
          -7,
          -3.4184670209466006,
          -7,
          -7,
          -7,
          -3.1504494094608804,
          -7,
          -7,
          -7,
          -7,
          -2.89707700320942,
          -3.3289908554494287,
          -7,
          -3.210853365314893,
          -7,
          -7,
          -3.182699903336043,
          -7,
          -3.275988458642023,
          -7,
          -7,
          -3.5994463757252757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.053462604925455,
          -7,
          -3.3527611917238307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5282152823885995,
          -2.9323469078099147,
          -7,
          -7,
          -3.5970768472929735,
          -7,
          -7,
          -3.420120848085703,
          -3.7707293122538714,
          -3.057618564696613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.531606631932722,
          -3.3850250382961597,
          -7,
          -2.9182925127553556,
          -3.4500800171371098,
          -3.501470072100412,
          -7,
          -7,
          -2.832082924950745,
          -3.5296869537729165,
          -7,
          -3.7982995236374486,
          -7,
          -3.4073909044707316,
          -7,
          -7,
          -3.6030360562505215,
          -3.429429264381788,
          -7,
          -7,
          -2.26563802057514,
          -7,
          -3.5676051634959993,
          -7,
          -7,
          -3.618780024506215,
          -3.517195897949974,
          -3.5039268041935103,
          -7,
          -3.1986570869544226,
          -7,
          -3.2214142378423385,
          -3.574956775764507,
          -3.1703298305678302,
          -2.9802761410778404,
          -3.097560966637652,
          -2.872685900230887,
          -7,
          -2.70472233322511,
          -2.499412125672275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.78141067367645,
          -7,
          -7,
          -7,
          -7,
          -3.0910804693473324,
          -3.321598430465344,
          -3.4095950193968156,
          -7,
          -3.368104059853412,
          -2.4995152549279713,
          -2.674759109847667,
          -7,
          -7,
          -3.9789561652175918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.407900540142635,
          -7,
          -7,
          -7,
          -3.6225122309912363,
          -3.737113094305961,
          -3.396582891683383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7663384752512874,
          -7,
          -3.2527721492435755,
          -3.1848333339333537,
          -7,
          -7,
          -3.580088257788128,
          -7,
          -7,
          -2.6961066506690017,
          -2.9515456637708595,
          -3.1821795991661013,
          -2.9893014677141294,
          -2.3880365792235625,
          -2.9171114724936964,
          -7,
          -3.272819243853222,
          -7,
          -7,
          -3.3183764152227964,
          -7,
          -7,
          -7,
          -3.4496840553919434,
          -3.8151569739533104,
          -7,
          -7,
          -7,
          -4.002610931654495,
          -3.0432312493636555,
          -3.077912702949456,
          -3.0817792267675337,
          -7,
          -7,
          -3.0394934351259337,
          -3.696880371682762,
          -7,
          -7,
          -4.102690912962709,
          -7,
          -7,
          -7,
          -3.1082266563749283,
          -7,
          -7,
          -3.16761267272753,
          -3.910277471004973,
          -7,
          -7,
          -7,
          -7,
          -2.823800153749878,
          -3.529430354366986,
          -7,
          -3.9398186628213794,
          -7,
          -7,
          -7,
          -3.2646407647145366,
          -7,
          -7,
          -2.687974620034556,
          -3.242417184417719,
          -7,
          -7,
          -2.661576077260146,
          -3.351892891903961,
          -7,
          -3.5854607295085006,
          -7,
          -3.266936911159173,
          -7,
          -2.3780803618804596,
          -7,
          -7,
          -7,
          -7,
          -3.4382258076045296,
          -7,
          -7,
          -3.170471266415623,
          -7,
          -3.8465845028980463,
          -3.3930484664167784,
          -3.860697274052039,
          -3.1392052835507003,
          -7,
          -2.3793702749984322,
          -2.65135257739122,
          -3.544564097496043,
          -3.1618669046240195,
          -3.0812272540419574,
          -2.7393462671509194,
          -2.92272545799326,
          -3.081707270097349,
          -2.649543470267784,
          -7,
          -7,
          -7,
          -3.2603894359538135,
          -3.298197867109815,
          -4.078855402979768,
          -7,
          -2.3460057534922925,
          -3.3854275148051305,
          -1.3998254718868253,
          -1.9363309201306227,
          -2.6553785755318513,
          -2.1295287738587763,
          -3.157456768134226,
          -3.8767372971406644,
          -7,
          -7,
          -3.16761267272753,
          -4.0919481908785595,
          -2.466197708063207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.529558673021163,
          -3.7647737169110402,
          -7,
          -4.316671364277856,
          -7,
          -7,
          -3.4622482153549976,
          -3.5219222448835,
          -7,
          -3.4095950193968156,
          -2.534660575828444,
          -3.266114049531676,
          -3.5640739789771465,
          -7,
          -7,
          -3.4099331233312946,
          -3.428134794028789,
          -7,
          -7,
          -7,
          -2.9179234789605135,
          -7,
          -7,
          -7,
          -2.725258066359961,
          -2.17507672117621,
          -2.263340126851339,
          -7,
          -3.4824447919182653,
          -2.8779469516291885,
          -7,
          -3.9056340013269546,
          -3.454133151696751,
          -3.577261953585815,
          -7,
          -7,
          -3.0993928573323,
          -3.6072405038317426,
          -3.2572344557135176,
          -3.485437481076301,
          -3.8823862832943425,
          -7,
          -7,
          -2.9574476493145365,
          -4.072323438293041,
          -7,
          -3.3471738364132073,
          -3.856910060300786,
          -3.2502735862322463,
          -7,
          -7,
          -7,
          -7,
          -3.6869042695681773,
          -7,
          -7,
          -7,
          -7,
          -3.427972713608209,
          -1.903331194708171,
          -7,
          -7,
          -3.4178866903508798,
          -7,
          -7,
          -1.34519604713307,
          -3.6329157673178623,
          -7,
          -7,
          -3.726380776040445,
          -3.403635189790548,
          -7,
          -3.4665710723863543,
          -3.111486550023024,
          -4.042299807413626,
          -3.2376275060053974,
          -3.9084850188786495,
          -7,
          -3.7272158209084925,
          -7,
          -4.249861686896716,
          -3.973589623427257,
          -7,
          -7,
          -7,
          -3.584218112117405,
          -3.1851878890039917,
          -7,
          -7,
          -7,
          -7,
          -3.6115108871266566,
          -7,
          -7,
          -7,
          -3.513217600067939,
          -3.4875625602563782,
          -7,
          -3.965724844764628,
          -4.120244795546365,
          -3.9625512306554445,
          -7,
          -3.913124790389559,
          -3.5642373934871046,
          -3.298033910215436,
          -7,
          -3.0242119239259035,
          -7,
          -3.73471984165568,
          -3.6057358938767465,
          -2.9051960260157315,
          -3.6120417446452695,
          -7,
          -7,
          -2.951531790542348,
          -7,
          -3.4727564493172123,
          -7,
          -7,
          -7,
          -2.9722671392456044,
          -7,
          -7,
          -4.139417271934507,
          -4.786225977095757,
          -7,
          -7,
          -4.72902702519179,
          -3.9308981144101045,
          -7,
          -4.3110647990615965,
          -3.850010951288372,
          -4.059184617631371,
          -7,
          -4.043735492958779,
          -7,
          -7,
          -3.758013840531501,
          -7,
          -4.691461665039397,
          -4.330636951476591,
          -7,
          -7,
          -7,
          -4.789393840735944,
          -4.317520127284809,
          -4.079350105514485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.393855868587961,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8561748468979484,
          -7,
          -4.688232892760542,
          -4.772365720825139,
          -3.9852467908028615,
          -3.8131137540078983,
          -7,
          -7,
          -3.5870146381512305,
          -3.469895618975018,
          -3.4056024552093134,
          -4.471335725161158,
          -3.610044198283449,
          -2.799113613408675,
          -7,
          -4.4675045136258955,
          -3.934801341746537,
          -7,
          -3.91365493508662,
          -4.106870544478654,
          -7,
          -7,
          -4.699247863898858,
          -3.959166300694504,
          -4.863007435910946,
          -7,
          -2.931966114728173,
          -2.840262964417612,
          -4.663889298622661,
          -7,
          -4.7097565730871915,
          -7,
          -4.26672546703192,
          -7,
          -7,
          -7,
          -4.1945906489052245,
          -7,
          -4.263612400668982,
          -7,
          -3.732726055601024,
          -4.037253808313048,
          -7,
          -3.9117724037085435,
          -4.664331654369715,
          -3.747567162737625,
          -3.447994792653729,
          -7,
          -3.7695988483874463,
          -3.628491104967123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.196148539699125,
          -3.3270522653266985,
          -3.7594411971336976,
          -7,
          -7,
          -3.3001786684400054,
          -7,
          -3.600319329751661,
          -7,
          -3.8783494222177755,
          -7,
          -3.1379934577865467,
          -3.4832305869021027,
          -7,
          -7,
          -4.186221536270829,
          -2.9093420383613084,
          -3.8190171986890595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7870706389786783,
          -7,
          -7,
          -7,
          -3.897163000414094,
          -4.801650631931656,
          -7,
          -7,
          -3.3268681598936816,
          -3.501470072100412,
          -2.9890936926103255,
          -7,
          -3.555698894718901,
          -3.8191928486335787,
          -7,
          -7,
          -7,
          -3.249931756634195,
          -7,
          -7,
          -3.568788212315347,
          -7,
          -7,
          -3.5851221863068155,
          -3.765407750790011,
          -7,
          -7,
          -3.2589563822842833,
          -3.7200765727681406,
          -7,
          -3.7259932589247224,
          -7,
          -7,
          -7,
          -3.612889769287485,
          -3.1278203345326987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8976270912904414,
          -7,
          -3.615107987443194,
          -3.442584279829459,
          -7,
          -7,
          -7,
          -3.172466706380776,
          -2.5802833190970835,
          -3.631240780235509,
          -2.329150944343016,
          -3.0859146287065933,
          -7,
          -7,
          -2.9906120389336768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.274826041478985,
          -7,
          -3.9155317393839453,
          -3.9680040266867103,
          -7,
          -3.6775157047987577,
          -7,
          -3.096794185701888,
          -7,
          -3.2018748585358794,
          -2.864445154002189,
          -7,
          -7,
          -7,
          -7,
          -3.524996189261706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6183619311098782,
          -7,
          -3.5991185650553628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6452257115354163,
          -3.5582284218033258,
          -3.692935002531138,
          -3.2871856695650172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.92263464618843,
          -7,
          -7,
          -3.7265642161622448,
          -7,
          -3.655234507034294,
          -7,
          -7,
          -3.625723909525756,
          -7,
          -3.510343901389912,
          -3.5569052690554477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.126780577012009,
          -3.1781132523146316,
          -2.235360083082256,
          -2.662001879389917,
          -7,
          -7,
          -3.5255576630059604,
          -7,
          -7,
          -3.177824971864682,
          -4.219427334507682,
          -3.1551588415675598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6567879234101603,
          -3.933892035764211,
          -7,
          -2.6987330518075057,
          -3.643319116204025,
          -7,
          -3.2127201544178425,
          -7,
          -7,
          -7,
          -7,
          -4.570040642457214,
          -7,
          -2.6769982707961844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.319591808561234,
          -7,
          -3.8429772355887812,
          -7,
          -7,
          -3.481729196960016,
          -7,
          -3.7209031708134575,
          -7,
          -2.7056499320768443,
          -7,
          -7,
          -3.4204508591060683,
          -3.269258151320081,
          -3.0860037056183818,
          -3.1709458747292723,
          -3.2488311928079616,
          -7,
          -2.9829492885744986,
          -2.861175835513029,
          -7,
          -7,
          -7,
          -3.1583624920952498,
          -7,
          -3.6603910984024672,
          -4.162967450221886,
          -7,
          -7,
          -7,
          -7,
          -3.497137064051958,
          -3.236033147117636,
          -7,
          -7,
          -4.086819124358255,
          -2.4496326504700745,
          -2.0932815675672454,
          -7,
          -7,
          -3.3220124385824006,
          -7,
          -7,
          -7,
          -3.2616196765479355,
          -3.2748503200166645,
          -7,
          -7,
          -2.9545640899663494,
          -7,
          -3.9538029130833663,
          -3.636888906983799,
          -3.577491799837225,
          -7,
          -7,
          -7,
          -3.4255342204982635,
          -7,
          -7,
          -7,
          -4.1760333492640225,
          -7,
          -7,
          -7,
          -3.0573702197800987,
          -7,
          -7,
          -2.593655208123772,
          -3.711638538232349,
          -2.9950908888423777,
          -2.4087243986938165,
          -1.9870514730726336,
          -2.1579601812912106,
          -7,
          -3.223790043636305,
          -3.0025979807199086,
          -7,
          -7,
          -7,
          -3.7132384615456617,
          -7,
          -3.7209582214513692,
          -4.283979284238479,
          -7,
          -3.892261606915535,
          -7,
          -4.3957194395376415,
          -3.341038631677523,
          -3.5643109099606027,
          -2.7875490247240235,
          -3.1565491513317814,
          -7,
          -2.7370879707315368,
          -3.2843179154306097,
          -7,
          -7,
          -4.384030665240514,
          -7,
          -7,
          -7,
          -2.4578818967339924,
          -7,
          -7,
          -2.94911107633224,
          -7,
          -3.756560043006683,
          -7,
          -7,
          -7,
          -2.887898488096872,
          -2.3086614084208055,
          -4.088384186097703,
          -7,
          -7,
          -7,
          -7,
          -3.8535765436196416,
          -7,
          -7,
          -2.5401730004667513,
          -3.375114684692225,
          -7,
          -7,
          -2.451103850736384,
          -3.226857570288723,
          -7,
          -2.957607287060095,
          -3.9252089214120036,
          -7,
          -3.244277120801843,
          -2.3578932352904296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7888280352309613,
          -7,
          -3.9988911346662124,
          -7,
          -3.4863596256881286,
          -2.9243830615097366,
          -3.302114376956201,
          -2.142858551113391,
          -3.071697945221614,
          -3.3763944420372662,
          -2.7302437827494095,
          -3.3972445810103866,
          -2.8328281295393536,
          -3.3481100684802376,
          -7,
          -7,
          -7,
          -3.7405205860536648,
          -7,
          -3.6906832800491083,
          -3.45499721730946,
          -4.35905722763489,
          -7,
          -2.281515419366247,
          -7,
          -1.2117962582834239,
          -1.6917128259772847,
          -2.354283100111711,
          -1.4273237863572472,
          -2.9417598138146954,
          -3.329058719264225,
          -3.492061604512599,
          -7,
          -2.9146075677710805,
          -3.673665876245702,
          -2.3555336147958466,
          -7,
          -2.5118833609788744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1772478362556233,
          -7,
          -4.158905021187544,
          -5.111643026868519,
          -7,
          -7,
          -7,
          -3.041195233696809,
          -7,
          -7,
          -2.3282339403543926,
          -2.9317967661271176,
          -3.404833716619938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6023214763152813,
          -7,
          -7,
          -7,
          -3.187238619831479,
          -1.5314789170422551,
          -1.7306844175132254,
          -7,
          -3.2814878879400813,
          -3.1522883443830563,
          -3.4379090355394983,
          -3.061452479087193,
          -3.091373812473584,
          -3.122379732069112,
          -7,
          -7,
          -2.9705894085233866,
          -3.4658288153574364,
          -3.025702979917565,
          -7,
          -4.019299112795343,
          -7,
          -7,
          -3.2038484637462346,
          -3.32956058217531,
          -7,
          -4.000173683058465,
          -7,
          -3.890979596989689,
          -7,
          -7,
          -7,
          -3.362670929725667,
          -3.2713768718940743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.3205542659267813,
          -2.811909980420099,
          -7,
          -3.9708580569965024,
          -7,
          -1.34519604713307,
          -7,
          -3.2891555884827857,
          -3.461198288622493,
          -7,
          -3.459650919472839,
          -3.1486026548060932,
          -7,
          -7,
          -7,
          -3.2962262872611605,
          -2.829732493973346,
          -3.8435442119456353,
          -7,
          -7,
          -7,
          -4.787563513038879,
          -3.315917891264946,
          -7,
          -7,
          -7,
          -3.8165726960261033,
          -3.3984608496082234,
          -7,
          -7,
          -7,
          -7,
          -3.170408411725318,
          -7,
          -3.4671639659690903,
          -7,
          -3.329397879361043,
          -3.3997602257103656,
          -7,
          -4.163221026715578,
          -4.101317377184387,
          -4.460806512248824,
          -7,
          -3.8489277132270785,
          -4.244054348556946,
          -7,
          -7,
          -3.0105119627372137,
          -7,
          -7,
          -3.2392368961623195,
          -3.309772070541653,
          -7,
          -7,
          -7,
          -3.525692524505011,
          -7,
          -3.2659963704950794,
          -7,
          -3.4211924683057493,
          -7,
          -2.8322959710584774,
          -7,
          -7,
          -3.759376418957984,
          -4.079130575402225,
          -7,
          -7,
          -7,
          -3.241973165892279,
          -7,
          -7,
          -3.168616455120142,
          -3.713196433725248,
          -3.6829569263012085,
          -4.322136564096103,
          -7,
          -7,
          -3.5906858261907315,
          -7,
          -4.681404067277602,
          -4.0238232536545935,
          -7,
          -4.028916761576257,
          -7,
          -4.787405564322391,
          -7,
          -4.065567267015471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0814265251112465,
          -3.7060916285745886,
          -4.684926111375293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.46551668871213,
          -7,
          -3.8446842291378767,
          -7,
          -7,
          -4.291069003840989,
          -3.630377017892592,
          -7,
          -7,
          -7,
          -4.15839265038712,
          -4.028693228393916,
          -3.2971036501492565,
          -4.153448988600982,
          -3.8526770142842115,
          -3.511856634342237,
          -7,
          -4.450526229129723,
          -3.5728135375594547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092224852134988,
          -4.127366817859523,
          -7,
          -7,
          -2.853926247739357,
          -3.2174839442139063,
          -4.6585598838444096,
          -7,
          -5.406829613621545,
          -3.4074588904573924,
          -3.9383695974518065,
          -7,
          -7,
          -7,
          -4.311669112400611,
          -7,
          -3.935053589231065,
          -7,
          -3.3114223779423435,
          -7,
          -7,
          -3.7435195636811023,
          -4.960047217179546,
          -7,
          -3.4350807053258485,
          -7,
          -2.9777236052888476,
          -3.662621437602524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.004192356259714,
          -7,
          -3.508179448873524,
          -7,
          -3.1389339402569236,
          -2.5712696007142037,
          -7,
          -3.456214155357989,
          -7,
          -2.765600828523882,
          -7,
          -2.824077854285757,
          -3.3944516808262164,
          -7,
          -7,
          -3.6759310203474467,
          -2.7683420586445333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2821687783046416,
          -2.946615995262667,
          -2.9231403560252005,
          -7,
          -3.2007723524351035,
          -7,
          -7,
          -7,
          -3.473966358354253,
          -7,
          -7,
          -7,
          -3.500236474825639,
          -7,
          -3.0974886866205247,
          -7,
          -7,
          -3.79376710997917,
          -7,
          -7,
          -3.513084360465144,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.545142110961596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5692568333286103,
          -7,
          -7,
          -3.9405662864900903,
          -7,
          -2.8839754128255146,
          -3.571941635074462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4766867429456445,
          -3.254366781142282,
          -7,
          -7,
          -3.5476516583599693,
          -3.1613779859014137,
          -2.2309771531262292,
          -7,
          -1.9799823174336075,
          -2.6700137961720474,
          -3.1960379407345236,
          -7,
          -2.808698501861456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.60862669869485,
          -7,
          -3.407447560198671,
          -3.7785130117389247,
          -3.7344797894255772,
          -3.5603849229720157,
          -7,
          -2.9418425759839604,
          -7,
          -3.719993826367604,
          -2.271761515345511,
          -7,
          -7,
          -3.4211101297934343,
          -7,
          -3.205068964264459,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.855216194733363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.517591730711908,
          -3.094994900944612,
          -3.3573630306151427,
          -3.219060332448861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6646688327641304,
          -7,
          -7,
          -3.3223226858740107,
          -7,
          -3.5309676815719153,
          -7,
          -7,
          -3.4912215762392833,
          -7,
          -3.4274861090957858,
          -7,
          -7,
          -7,
          -4.3537559923907425,
          -5.13102808436136,
          -7,
          -7,
          -4.432619791621332,
          -5.135129469720565,
          -4.833127979575862,
          -4.654503824567048,
          -4.530462245283984,
          -2.0820854933794593,
          -4.145932559175869,
          -5.1309927524950965,
          -7,
          -2.5265077110153857,
          -2.7643838804771876,
          -4.019761578098389,
          -5.132701445891525,
          -7,
          -4.654333796697641,
          -4.654028863068111,
          -1.4720704405603522,
          -3.622073767651025,
          -7,
          -3.4115667095759865,
          -1.872077702725696,
          -4.656213231673656,
          -3.927800081376748,
          -4.8299338468023905,
          -3.9057038389018577,
          -4.355844065953179,
          -3.6849158582733965,
          -2.4780334926983727,
          -3.9027961001341844,
          -4.529289160043351,
          -7,
          -3.956110776938729,
          -3.98979929932723,
          -4.432799386001243,
          -3.63397630832238,
          -4.653955004827485,
          -3.8815019492659513,
          -4.65500710172715,
          -2.14941258386112,
          -4.286456469746983,
          -4.831405810044329,
          -3.7049508491377243,
          -5.13372089071826,
          -3.239902941766294,
          -5.13203864273154,
          -4.355128920244271,
          -3.6624524593842067,
          -3.75349688080315,
          -4.180918775794492,
          -1.8376804112458864,
          -3.46608164105026,
          -3.235138879593742,
          -2.946822886713244,
          -5.132320537739833,
          -3.9867429509093695,
          -3.7068757593062003,
          -4.019068334783454,
          -3.9871329630575385,
          -4.656248373549415,
          -4.654266408747144,
          -4.3545981854393,
          -3.5178397276832776,
          -2.1812042907283047,
          -4.529436771200223,
          -4.830213229831968,
          -3.569225185670545,
          -4.6539132533085725,
          -3.307406112562047,
          -4.063958513056966,
          -4.654276036237423,
          -4.359990334130061,
          -2.536731083478206,
          -4.353140126440264,
          -2.5843662672560845,
          -7,
          -5.131871982362283,
          -2.7607533744730497,
          -4.022164967179576,
          -4.286918171392467,
          -7,
          -3.2085014250503723,
          -3.9566389814310416,
          -3.214714574499518,
          -3.994518255666037,
          -3.3497328145444505,
          -5.135021279538261,
          -1.7477115397560063,
          -3.3478145680287468,
          -2.642912322460976,
          -4.654118760497929,
          -4.829850318129671,
          -3.8591920393735446,
          -2.9525056727465,
          -3.906743723985058,
          -3.664479006216105,
          -4.228522262324842,
          -3.2378709255202747,
          -4.831959310304302,
          -5.131037719826043,
          -4.431990625786141,
          -2.70387541443253,
          -4.654028863068111,
          -3.7391354571001174,
          -4.092899198743546,
          -3.239555975036251,
          -2.3074711606695057,
          -3.8771921128174807,
          -4.177565355747414,
          -3.577261953585815,
          -4.0927780450665505,
          -1.2633858238214657,
          -4.230103903455626,
          -4.829911359893916,
          -4.358321983805685,
          -3.9365294501839028,
          -3.540895440874582,
          -3.530983666793107,
          -3.1789449892018418,
          -2.2568108075912052,
          -4.8315082447834055,
          -3.036619683701646,
          -5.1326886476808244,
          -3.3591023009748793,
          -3.811463290247623,
          -3.6759141756799263,
          -2.948328310734916,
          -7,
          -5.132787823950332,
          -2.467238020787567,
          -3.5706407429409537,
          -7,
          -7,
          -2.8416736274591754,
          -7,
          -7,
          -4.829988453018915,
          -7,
          -5.1309927524950965,
          -2.1147504503585406,
          -3.602252279166497,
          -2.7652681526752825,
          -3.345162048144411,
          -4.0913823431266625,
          -3.584911607443614,
          -5.131114795848502,
          -4.177449920971824,
          -3.7188879682162526,
          -3.32554243338228,
          -2.6044574916627705,
          -7,
          -4.353723937588949,
          -4.831860180040169,
          -2.5652354585411796,
          -4.653942158633786,
          -5.13086746180259,
          -4.135650950040593,
          -3.791824571446418,
          -4.286289623452549,
          -3.6290877094305602,
          -4.180683285785931,
          -3.8152171095431946,
          -4.057935394535143,
          -3.7551472476993064,
          -3.647896190630718,
          -4.356844568723753,
          -4.178116454356075,
          -2.005814115162866,
          -4.132061072897837,
          -7,
          -7,
          -5.13301168709029,
          -7,
          -3.8094186141437016,
          -4.653974273405593,
          -2.722774034232548,
          -4.5298825089959625,
          -2.6693537374411997,
          -7,
          -2.6012098589892596,
          -1.7279021502757326,
          -3.530900537217131,
          -2.0055196299497386,
          -3.328498786724642,
          -3.4906765986678305,
          -2.8571673823501493,
          -4.020756379707693,
          -3.9049636245067205,
          -4.531845996169773,
          -4.3566058045664064,
          -3.3869149280061124,
          -4.354124452660498,
          -3.9680655763030757,
          -7,
          -2.468794826053917,
          -4.135847932046676,
          -3.4240367997738432,
          -7,
          -2.9425575391636456,
          -5.130963842466372,
          -2.988401009650151,
          -3.1681482627277147,
          -4.289674936630779,
          -3.339156404282931,
          -7,
          -3.493560280573793,
          -4.233576686264463,
          -7,
          -3.330724416161277,
          -2.9290514496780715,
          -2.910360625418522,
          -7,
          -4.285833677940712,
          -4.177661527961347,
          -4.529138288111391,
          -7,
          -5.132234066681874,
          -7,
          -5.132522236611947,
          -3.1814178388212113,
          -3.3024407325003486,
          -2.641568252457706,
          -1.7520008008174084,
          -5.13082247683857,
          -5.132077093735961,
          -4.655336960652428,
          -4.355652624508672,
          -5.131034508028235,
          -5.131410127278809,
          -3.482908503544747,
          -4.289869134324165,
          -4.532837154509227,
          -7,
          -7,
          -5.131416545297398,
          -7,
          -7,
          -4.6542150585275275,
          -4.533091749496603,
          -2.2428326739553217,
          -4.829879233719065,
          -4.6539132533085725,
          -7,
          -4.83068167600728,
          -3.4513514117014297,
          -2.941360732240858,
          -7,
          -4.178618882272053,
          -3.8894386626800617,
          -3.364334724324249,
          -3.55734676803538,
          -3.070250341710294,
          -3.511765624172576,
          -5.131233594589685,
          -4.653768697817702,
          -2.4871524372774285,
          -3.905583203308676,
          -2.434341118152189,
          -4.530900537217131,
          -1.5413138885839677,
          -4.355116139076884,
          -4.43277694076486,
          -4.2867739423480264,
          -3.1025209626503196,
          -2.7457153853103002,
          -3.0500714737493366,
          -3.154175460464973,
          -3.033214968915833,
          -3.930394990636852,
          -4.831789815800684,
          -4.830348040099118,
          -4.179874009512173,
          -3.633367445117007,
          -4.293002466752252,
          -7,
          -5.131871982362283,
          -4.8331853740582575,
          -7,
          -3.161275589322209,
          -7,
          -3.6892168647185577,
          -2.8223353642970204,
          -3.334233484255711,
          -3.6329157673178623,
          -3.2891555884827857,
          -7,
          -3.585613140277534,
          -4.830482808532513,
          -3.0166437893932163,
          -4.654163702235632,
          -4.09165736688658,
          -3.886462523316444,
          -4.2904702780719735,
          -2.887096773947783,
          -3.486250961710627,
          -3.8699446621420774,
          -4.0942805092610115,
          -4.185910285040714,
          -3.9906971299606298,
          -1.864621258181625,
          -2.916254966106324,
          -5.1309799038310295,
          -7,
          -7,
          -3.4659804625982287,
          -2.6830282010520166,
          -5.132118745149423,
          -5.132672649387063,
          -4.096303156190983,
          -7,
          -3.738168310814374,
          -4.83110156450136,
          -3.9691983999984655,
          -5.132845399779915,
          -4.355441941404169,
          -3.0148119432299376,
          -3.7347518385968206,
          -2.7824557613080687,
          -3.1256124650617196,
          -2.272641177074865,
          -4.6557401369917155,
          -2.89028821222648,
          -2.6169091123668817,
          -3.290578685153958,
          -7,
          -3.8544882250444306,
          -7,
          -3.270804691244306,
          -3.5802929605940523,
          -3.8036308979912206,
          -4.0948203803548,
          -4.830126543985933,
          -7,
          -3.493777966279982,
          -7,
          -5.132698246374209,
          -7,
          -3.9393288950774887,
          -4.831002238235833,
          -2.391471506923992,
          -7,
          -5.131015236742566,
          -2.4737871205362993,
          -2.484701328997382,
          -2.8024273662401074,
          -3.212939250049553,
          -2.955505606253773,
          -2.7023809792500697,
          -2.937358852359666,
          -2.0204866559028973,
          -2.076825357874002,
          -2.9820570489258453,
          -4.062860770694389,
          -2.852345049726324,
          -2.789201276386549,
          -2.6902686922258034,
          -2.113836231826141,
          -3.2290694305991696,
          -2.77125463769855,
          -2.442962687016704,
          -3.5605551894359078,
          -2.4806634430953562,
          -3.5849183061697203,
          -2.223503245137466,
          -1.6320143333368453,
          -2.215185156768748,
          -3.29321813423232,
          -3.386955759983757,
          -2.8855714145494162,
          -2.8508261874537557,
          -4.182310013476203,
          -1.9979223205494447,
          -3.0725066521685744,
          -2.5439889874149095,
          -3.154535643494955,
          -3.0270197814276156,
          -3.59140490963274,
          -3.231884293201811,
          -3.4285412579858168,
          -2.7812747683709502,
          -2.9525169334354104,
          -2.346971357713787,
          -3.854437093603298,
          -2.570023759327654,
          -2.2056860269673777,
          -2.7848376022392927,
          -2.848167227384979,
          -2.7768603700505596,
          -3.9061543387262456,
          -1.4214863526530293,
          -3.1424406089605474,
          -3.6340866325525636,
          -2.6184756300183856,
          -2.0084125462234126,
          -2.1867531119226142,
          -4.532588780613535,
          -2.2325572566707454,
          -3.292597537758045,
          -5.131397290957086,
          -3.4245118144555238,
          -2.754048441822166,
          -3.5529083326924566,
          -4.434338922543306,
          -1.9336346652537082,
          -1.3564708036543416,
          -2.0031671015981236,
          -4.432809005033168,
          -3.667649041607016,
          -4.132016211406724,
          -1.7524393038328663,
          -3.399920830723496,
          -2.9095246982537577,
          -2.9426614178394863,
          -3.1145707251839956,
          -4.830094433725594,
          -2.8816000105663435,
          -2.217429614958867,
          -2.476428154161269,
          -1.7579431527357852,
          -2.681969076348861,
          -2.9258676763970497,
          -1.8296101947465104,
          -2.0456998974532627,
          -4.655788109253206,
          -2.3073699418672065,
          -1.8355476285248808,
          -3.4082808041632413,
          -2.106234717856727,
          -5.132153985533335,
          -3.232933396387438,
          -2.3163582346557057,
          -2.880258687674373,
          -7,
          -5.131069836497796,
          -7,
          -4.83028705968542,
          -3.6542914604812795,
          -2.482519614750209,
          -3.5924876498132257,
          -2.744819187545737,
          -4.432622999315182,
          -3.387065510037909,
          -2.6466932781616226,
          -3.580747624719427,
          -4.181637185532979,
          -4.432696769735502,
          -3.2716123995984345,
          -4.529167182538893,
          -2.4723159962011216,
          -3.2177595992418233,
          -3.956427776718407,
          -4.233215107208646,
          -2.976582156824352,
          -3.8350402280936993,
          -3.2351510964530643,
          -3.686077403554104,
          -3.7898818450576406,
          -3.1391657840831786,
          -4.530462245283984,
          -3.9567413467550643,
          -4.056037301237244,
          -3.58363637568586,
          -7,
          -3.139609254468416,
          -4.432231485690214,
          -7,
          -2.753868319655627,
          -2.0258117253219763,
          -1.7751789704469467,
          -7,
          -3.815972841673966,
          -3.2317304480045337,
          -4.019327232480801,
          -3.5364732165424573,
          -7,
          -3.879312558336867,
          -2.7002609340449686,
          -7,
          -4.052309099647323,
          -3.4556599840667923,
          -3.6572694400502246,
          -2.4857840825802984,
          -4.178090837363468,
          -3.532735274709472,
          -3.811370704099495,
          -4.053417803596533,
          -3.688165476764458,
          -2.9008708648852064,
          -2.608085178437431,
          -4.131101950794651,
          -3.560545286566989,
          -3.4768883097095413,
          -4.232830996311034,
          -3.0254697190610558,
          -3.8535124940543097,
          -4.529481686378381,
          -3.278646919030887,
          -4.057050861483566,
          -1.9929038165296251,
          -3.405965787718157,
          -3.0512905959414938,
          -4.435669211926046,
          -4.3544093944426345,
          -2.6091944610327804,
          -4.65525692082863,
          -2.702433636058207,
          -3.3993339455805467,
          -3.545062759071212,
          -2.975376286330473,
          -3.2043051569961905,
          -7,
          -3.0276892984310293,
          -2.34923925531571,
          -3.744562084061763,
          -4.057612225741657,
          -2.7805170155714753,
          -3.55875276807147,
          -3.447412329358754,
          -4.092561159359732,
          -2.947083883460867,
          -2.5550474356478134,
          -3.930066690773242,
          -2.925949152253038,
          -5.131169383089324,
          -5.130915654808137,
          -2.874280210118406,
          -3.274881913341615,
          -4.019161044289363,
          -3.6612319765917327,
          -2.6698579446524158,
          -3.6736817501041967,
          -2.6964586647109856,
          -2.7501725423153607,
          -3.6252937390341455,
          -3.4946604700009796,
          -4.831431420994256,
          -3.930980851109795,
          -5.130925292767531,
          -3.5521501101340105,
          -3.462635047996229,
          -2.2478757389051127,
          -7,
          -3.904674184959942,
          -4.179293205577373,
          -2.2379910476057443,
          -4.4340097093697395,
          -5.132067481304007,
          -5.131021660599472,
          -4.528907063458861,
          -4.228227068357458,
          -7,
          -4.4325395915742165,
          -3.135984372831044,
          -3.9587358469865994,
          -4.181602246187018,
          -4.831216882631442,
          -3.5641572397284045,
          -4.830556592575827,
          -4.831008647067558,
          -4.655794505154385,
          -4.354207713411756,
          -3.7057782128285974,
          -3.8124135509583827,
          -3.096409181545141,
          -3.308474709179702,
          -3.681219397305083,
          -4.354537397297181,
          -7,
          -3.8849903531831114,
          -4.287257721739699,
          -7,
          -2.9208623994457943,
          -4.530814193504615,
          -4.530699041844945,
          -3.6486275257525964,
          -3.3668596440286906,
          -4.058381732260055,
          -5.131323474743548,
          -4.8304667668642045,
          -4.291555951352488,
          -4.830100855967594,
          -3.317296035535606,
          -4.0932688273621345,
          -4.832237393796547,
          -7,
          -3.1143885542749916,
          -3.877025615867249,
          -3.176958980586908,
          -7,
          -2.932304613951781,
          -2.1468778968404774,
          -3.2307553740419857,
          -2.630653834698125,
          -1.8459914205954857,
          -3.319980017164956,
          -2.4424441346454007,
          -7,
          -3.1879717016473963,
          -1.9572528896889112,
          -2.7339061042946105,
          -3.9239689648754714,
          -3.906119457545562,
          -3.8748875108461127,
          -2.581665266717616,
          -7,
          -2.566543246335169,
          -3.8691143269793753,
          -7,
          -2.745483749306146,
          -2.5357768572479262,
          -3.9168748785386835,
          -3.894426837964188,
          -7,
          -2.8821923815471764,
          -2.927010868975651,
          -7,
          -3.3144614414085494,
          -7,
          -7,
          -7,
          -7,
          -2.9578944872128985,
          -3.5894469132961895,
          -2.703420357325243,
          -3.576974474604044,
          -2.5893444425092373,
          -7,
          -2.6755147698424953,
          -3.8870543780509568,
          -3.2993438354972895,
          -2.8855496750060046,
          -2.028539565086679,
          -2.8542680773374083,
          -3.5936736569452488,
          -3.916295994563131,
          -3.40963729678618,
          -2.9700884752693537,
          -3.946599625015133,
          -0.9925761830444612,
          -3.3920370982602477,
          -2.282836990837962,
          -1.9949700168263695,
          -3.297267958549692,
          -3.2109602554168117,
          -2.8461603181188546,
          -3.6114577656683426,
          -7,
          -3.9174529919296637,
          -7,
          -3.606327612467192,
          -2.5993573652014748,
          -2.893712456636053,
          -3.88570038012833,
          -3.8809849904867533,
          -2.7260476681558012,
          -7,
          -3.01678967629609,
          -2.639256561892579,
          -7,
          -2.3846669680032564,
          -2.653218720154461,
          -7,
          -3.0673963618557067,
          -7,
          -7,
          -2.0430295895894606,
          -3.660248683421062,
          -7,
          -7,
          -3.215505378231818,
          -7,
          -2.8937617620579434,
          -1.9992476852440502,
          -3.1715314404115604,
          -7,
          -1.8644581722393818,
          -2.4887994770696724,
          -2.0492180226701815,
          -3.4036923375611288,
          -7,
          -2.078411501156303,
          -3.0443437348951075,
          -1.6603314663214848,
          -1.1504140212562552,
          -3.888179493918325,
          -1.5006023505691855,
          -3.609914410085998,
          -3.8771985152717896,
          -3.876275588677879,
          -2.2683173084753983,
          -7,
          -3.2773799746672547,
          -7,
          -2.37045140442245,
          -1.8350993904798734,
          -3.4266196859018763,
          -7,
          -3.446744220465839,
          -2.201654728267682,
          -2.6618683393442066,
          -7,
          -7,
          -1.9393272143745417,
          -2.20682587603185,
          -1.9355541304499773,
          -7,
          -2.717412908457708,
          -2.5128485286763746,
          -3.9034698285071703,
          -7,
          -7,
          -3.410986976882284,
          -2.8820067810004915,
          -3.2953031446371517,
          -3.267914479847044,
          -3.582177037688409,
          -3.305190091553366,
          -2.022254851791834,
          -2.887660571842961,
          -7,
          -7,
          -3.482930723860386,
          -7,
          -7,
          -7,
          -3.8838317133294527,
          -7,
          -2.704248595991504,
          -2.7927417858347487,
          -1.9965697645340619,
          -3.0341177793661886,
          -7,
          -3.124148391564148,
          -7,
          -3.5885518064856425,
          -3.9278321328665817,
          -3.2245330626060857,
          -2.93453001219572,
          -3.8767372971406644,
          -7,
          -3.4320602212581903,
          -2.05482190018818,
          -7,
          -7,
          -3.050428094453049,
          -2.4118236958598427,
          -7,
          -2.756940236046724,
          -3.1643032759588334,
          -2.8342389905065373,
          -2.54236429452904,
          -3.251735530437842,
          -2.8417764599078246,
          -3.341385057697068,
          -3.423846369199462,
          -2.6730824741450308,
          -3.595055089759304,
          -7,
          -7,
          -7,
          -7,
          -3.8900855267163252,
          -7,
          -2.9579170046848744,
          -3.893484346218486,
          -3.1159930547579835,
          -7,
          -3.011394209174577,
          -2.3973047701147587,
          -3.9146075677710805,
          -3.374308331299816,
          -2.736237098904729,
          -3.933942602741261,
          -7,
          -3.9398186628213794,
          -2.996219709466273,
          -2.811110768005006,
          -2.939119717648487,
          -1.948804045932811,
          -3.297048866865437,
          -2.6517996891142075,
          -7,
          -2.97342670189906,
          -1.751825230297199,
          -2.090984331084246,
          -7,
          -2.8141557107253563,
          -3.5747255835940734,
          -3.1527298904473486,
          -7,
          -3.4630464593144126,
          -7,
          -3.900967623919124,
          -2.496098992132571,
          -2.7123222675685836,
          -7,
          -3.1992064791616577,
          -3.6959629862267245,
          -2.7362125701152555,
          -7,
          -7,
          -7,
          -7,
          -3.886377906758572,
          -3.898176483497677,
          -7,
          -3.601951404133522,
          -3.0362295440862943,
          -3.1919697180283007,
          -2.9711492876176107,
          -3.7693549186514,
          -7,
          -3.8954777962757143,
          -3.123524980942732,
          -3.623714356815967,
          -7,
          -7,
          -3.4872798164430687,
          -3.9433955765089546,
          -3.942008053022313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9459607035775686,
          -3.251601494030338,
          -7,
          -3.8773713458697743,
          -7,
          -7,
          -3.9093420383613084,
          -7,
          -7,
          -3.307282047033346,
          -3.2298646031173694,
          -3.650744512417744,
          -2.452586364189867,
          -2.771203913197322,
          -3.9475807493043225,
          -7,
          -7,
          -2.1774572158356054,
          -2.8803848005903028,
          -2.2667572593256806,
          -3.9107844347928373,
          -3.3865286903706164,
          -7,
          -7,
          -3.4152516526787737,
          -2.904560992080643,
          -2.1343802928411417,
          -2.2460004869402757,
          -2.689486448364248,
          -2.91437427261162,
          -2.104466727163608,
          -2.5838462500213177,
          -7,
          -2.7827284979036726,
          -2.5805741015043195,
          -2.6869935662646784,
          -7,
          -3.1132189243125046,
          -3.6299190355035416,
          -7,
          -3.6421181336945816,
          -7,
          -2.584378345778297,
          -2.9870794370455935,
          -7,
          -7,
          -3.461198288622493,
          -3.585613140277534,
          -7,
          -2.521536023567381,
          -2.738714511114171,
          -7,
          -3.009185223506869,
          -3.0842584336373493,
          -2.380944228352949,
          -3.0602120221018287,
          -3.0109780121747423,
          -3.3415993735009404,
          -3.255272505103306,
          -3.7167960423664437,
          -3.4947573623066033,
          -3.556247604109366,
          -2.6823557017545716,
          -7,
          -7,
          -7,
          -2.5012989485386004,
          -2.6330020573082678,
          -3.595055089759304,
          -3.9056340013269546,
          -3.285016917629171,
          -7,
          -3.183886436181369,
          -3.5953859808091417,
          -0.8001984317598797,
          -3.9085386321719593,
          -2.9663503526454837,
          -2.650695979760611,
          -7,
          -3.3410936383881586,
          -2.338581857248278,
          -3.5288799874426102,
          -7,
          -2.326534063327523,
          -3.2404712429870326,
          -2.25919667574194,
          -7,
          -3.43970102987625,
          -3.586305934735186,
          -2.6582188456612497,
          -2.351882901347562,
          -2.91409622851974,
          -3.263399331334002,
          -3.578295305120826,
          -7,
          -2.546953732587764,
          -7,
          -7,
          -3.60959440922522,
          -3.759101003867064,
          -3.894814329083301,
          -2.0524544489011003,
          -7,
          -7,
          -3.712546820378931,
          -7,
          -4.4101189683595505,
          -7,
          -3.923214403267866,
          -3.48654381988252,
          -4.1648285343444815,
          -3.0187004986662433,
          -3.1121387476657105,
          -4.218666771495871,
          -7,
          -4.434664693722909,
          -3.995613259978898,
          -3.823298943588325,
          -3.353685468703508,
          -7,
          -3.8310214644472946,
          -3.6565629264017003,
          -7,
          -7,
          -7,
          -4.555220588225373,
          -7,
          -3.9148189804474733,
          -1.7105666632245071,
          -7,
          -3.875648198186427,
          -3.873029812061044,
          -7,
          -3.1596652554067797,
          -4.0305997219659515,
          -3.205339721431523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.645974611730776,
          -2.4714090720870554,
          -2.9495164993070224,
          -3.6150553041797218,
          -3.5005915939162997,
          -3.1132782144229987,
          -2.9374293839197807,
          -2.664265800147675,
          -2.687728795861634,
          -2.821747409869795,
          -2.719833155981937,
          -2.749091866004445,
          -3.161966616364075,
          -3.363737299322217,
          -2.7681357668442947,
          -1.7112783140789294,
          -7,
          -2.26745232159952,
          -2.096169472880984,
          -7,
          -2.9181614445539976,
          -3.8845263238153,
          -7,
          -7,
          -2.6414450686151305,
          -2.8849628456125957,
          -4.809317250044303,
          -7,
          -3.231433179239555,
          -3.895422546039408,
          -3.033195825123681,
          -7,
          -4.094986592030411,
          -2.9352552817840474,
          -3.7701152947871015,
          -3.878866336956725,
          -2.7837016649131177,
          -4.532996293865759,
          -3.051692641798037,
          -7,
          -2.921686475483602,
          -4.1285285037974395,
          -3.2536660661600085,
          -2.996580792472938,
          -3.064083435963596,
          -1.805133287613335,
          -3.3755119467888526,
          -2.725870813226274,
          -3.6205467693713365,
          -7,
          -2.808409580181492,
          -2.622599100855059,
          -3.8260585973805052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9781489374492274,
          -2.4902394852462875,
          -2.096515020273322,
          -3.586362223307866,
          -3.475283684857362,
          -2.9853066934901156,
          -3.3750231289878903,
          -3.2582061260688273,
          -7,
          -2.8702661651948076,
          -7,
          -2.7246885128491662,
          -2.4216822557512594,
          -3.6034150454129286,
          -7,
          -3.708272143674309,
          -3.359123718484473,
          -2.4623605571056313,
          -7,
          -7,
          -3.5133175029511547,
          -7,
          -7,
          -3.3454227452289564,
          -2.036365534687841,
          -7,
          -3.3355080472724206,
          -7,
          -7,
          -7,
          -3.003732212587054,
          -3.086302615981995,
          -7,
          -7,
          -2.064851907151343,
          -7,
          -2.253558269307043,
          -7,
          -2.7910888551844675,
          -1.945108057741629,
          -7,
          -7,
          -7,
          -2.679680202714552,
          -3.3748216384719947,
          -3.9007493580610793,
          -3.9439888750737717,
          -2.842609239610562,
          -7,
          -2.283792678888281,
          -1.798591765678604,
          -7,
          -7,
          -2.488426282762359,
          -2.2385138867041006,
          -7,
          -2.9243620009429816,
          -7,
          -7,
          -3.8730007223740444,
          -2.9207871677505426,
          -2.300441888065399,
          -2.580310759718442,
          -3.341355374863705,
          -3.9380691862233856,
          -7,
          -7,
          -3.5997193623970984,
          -3.5111812411046364,
          -7,
          -2.707238888404291,
          -2.0365035188081575,
          -7,
          -7,
          -1.997006000905822,
          -1.9357412477103655,
          -2.5152503052242317,
          -3.4941081925565785,
          -2.821577430480578,
          -3.1528995963937474,
          -3.795741020869244,
          -3.082066934285113,
          -2.8185435657769307,
          -3.588943642740015,
          -3.9320169064342014,
          -7,
          -3.8795546009389743,
          -7,
          -3.6981440599245037,
          -7,
          -2.589790080853059,
          -3.3929606147967957,
          -2.7907541645992353,
          -3.9624640460579013,
          -3.7313066641817545,
          -3.022964206517993,
          -3.2202575612757083,
          -2.6109261934087056,
          -7,
          -2.689407528778004,
          -7,
          -2.21507405981132,
          -2.7237541049498004,
          -7,
          -7,
          -2.2518616038128814,
          -1.844187849680195,
          -2.8493238489418755,
          -3.6100743221400546,
          -3.8953120244757873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3484022275776355,
          -7,
          -3.0532705666813786,
          -3.8985057855343586,
          -7,
          -3.5859117103194342,
          -3.292532956594993,
          -3.064190484147994,
          -3.9008585047019917,
          -2.862819170960624,
          -3.638439335179549,
          -2.8348371039433498,
          -3.807467375684278,
          -4.063220735581995,
          -3.605305046141109,
          -7,
          -3.3208107260676276,
          -3.900913067737669,
          -7,
          -2.860733410301672,
          -2.7036137543417307,
          -2.9523080096621253,
          -3.2390073481041712,
          -7,
          -2.8352374734003063,
          -3.8822968009376515,
          -3.4081268530617237,
          -3.1232447909446885,
          -3.577836341292744,
          -2.9160024989438855,
          -2.6820447426591882,
          -3.6145281197475394,
          -3.395675785269936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.904715545278681,
          -4.6022906490084505,
          -2.9259992664561554,
          -2.505149978319906,
          -7,
          -4.192595327569212,
          -3.7318035763606017,
          -7,
          -7,
          -7,
          -2.6702458530741238,
          -7,
          -4.336479746957996,
          -3.8805277781988052,
          -7,
          -3.6555225962534177,
          -4.2707044506134615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4680517914542377,
          -7,
          -7,
          -7,
          -4.061769664610581,
          -2.705007959333336,
          -7,
          -7,
          -7,
          -7,
          -2.8102325179950842,
          -7,
          -7,
          -3.0842186867392387,
          -7,
          -3.1513913576935484,
          -7,
          -3.898231384513097,
          -3.308422115236931,
          -7,
          -7,
          -7,
          -2.9885589568786157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14789264483285,
          -7,
          -7,
          -7,
          -7,
          -3.121067167467729,
          -7,
          -7,
          -2.710286647702891,
          -4.346871079866792,
          -7,
          -3.3332456989619628,
          -7,
          -2.7737864449811935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4771212547196626,
          -7,
          -7,
          -7,
          -3.423614458082382,
          -3.523876475638131,
          -3.315676520348013,
          -7,
          -7,
          -1.902739608205772,
          -7,
          -3.3609718837259357,
          -3.269396182694991,
          -7,
          -3.1915441607348294,
          -2.975431808509263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.317331935445897,
          -3.6769860884519177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3111178426625054,
          -3.530199698203082,
          -3.143014800254095,
          -7,
          -4.169968173996892,
          -4.276438825021309,
          -7,
          -7,
          -7,
          -7,
          -3.0791812460476247,
          -3.4271614029259654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5378190950732744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7197454925295768,
          -3.8496957509222134,
          -7,
          -7,
          -3.395209866510588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9609461957338317,
          -2.148686422668616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1947917577219247,
          -7,
          -3.05307844348342,
          -7,
          -7,
          -3.1992064791616577,
          -2.8819549713396007,
          -3.92060206359649,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7489628612561616,
          -7,
          -3.916927466112993,
          -7,
          -7,
          -7,
          -3.7107940999303275,
          -4.010752753199189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6134894531087443,
          -7,
          -3.317331935445897,
          -7,
          -3.6540802353065707,
          -7,
          -3.343113054845938,
          -2.790988475088816,
          -3.7375901662857216,
          -7,
          -4.070296518197765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8457799671118895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.7128735244301385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.242988412194795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2425414282983844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.532537814560151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.831677849191467,
          -7,
          -2.950364854376123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3138672203691533,
          -7,
          -7,
          -7,
          -7,
          -4.830482808532513,
          -2.521536023567381,
          -7,
          -7,
          -7,
          -2.99211148778695,
          -7,
          -3.2464985807958007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.050171518281678,
          -7,
          -7,
          -7,
          -7,
          -3.745230984528141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.294466226161593,
          -7,
          -2.3416143566643135,
          -7,
          -7,
          -7,
          -7,
          -4.3791301930135615,
          -7,
          -4.920982596827135,
          -7,
          -7,
          -4.717091890401786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.710371264260763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8023220978574237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.589044343518194,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.387713646550734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.773245067425772,
          -7,
          -4.675924914230961,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1353765089832155,
          -7,
          -4.668954041997986,
          -5.065564777430062,
          -7,
          -3.6419695977020594,
          -7,
          -7,
          -4.934091741029214,
          -7,
          -7,
          -7,
          -4.35996347604274,
          -3.5998830720736876,
          -7,
          -4.4349678884278125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.186723312657822,
          -7,
          -7,
          -7,
          -7,
          -4.954840458899287,
          -7,
          -5.104102836565097,
          -7,
          -7,
          -2.5599066250361124,
          -7,
          -7,
          -4.781748196171954,
          -7,
          -7,
          -7,
          -4.897473136847621,
          -7,
          -7,
          -4.465754519833878,
          -4.95529319520027,
          -7,
          -7,
          -7,
          -7,
          -4.606488850442648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.621621331667342,
          -3.328583449714202,
          -7,
          -7,
          -7,
          -4.3395905522680405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.31909911609709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.79300417300328,
          -7,
          -7,
          -7,
          -3.92957217907655,
          -7,
          -3.441852175773292,
          -7,
          -7,
          -4.247236549506764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.068556895072363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.52270499273475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1709165757098265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.792251571903264,
          -7,
          -7,
          -7,
          -3.783842349230774,
          -7,
          -7,
          -4.302417519150622,
          -7,
          -7,
          -7,
          -4.02645154573824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067480023931482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1513698502474603,
          -3.651762447380111,
          -7,
          -7,
          -3.215901813204032,
          -3.05307844348342,
          -4.392573856408141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.625826713285711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019213251277154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.286052077773516,
          -4.279621322484056,
          -3.978294669778629,
          -4.279963367458737,
          -3.9827007911139,
          -3.1031834682108403,
          -3.699230502883409,
          -3.6817385815870307,
          -7,
          -2.9332925631528446,
          -3.334398912526967,
          -3.978294669778629,
          -4.2837533833325265,
          -2.9320930828571,
          -2.611173299091653,
          -4.298809426529585,
          -3.1446631477045215,
          -4.278776457955645,
          -3.981660076604237,
          -3.9795028487874013,
          -2.5956906965576407,
          -3.215373152783422,
          -7,
          -2.9501588189938732,
          -2.606810478501612,
          -3.693639026161548,
          -3.587441551559959,
          -7,
          -3.7132594739307883,
          -3.3458962687263867,
          -7,
          -2.2088657877076616,
          -3.596685045096567,
          -3.9809573162296203,
          -3.680154141734373,
          -4.288517501797074,
          -3.1090720809788794,
          -3.8078280666840114,
          -3.7331771955817663,
          -7,
          -3.31921019418185,
          -7,
          -2.6718091758115627,
          -7,
          -3.8123562116249397,
          -3.316557399977768,
          -3.5992497190170716,
          -3.1565302224638243,
          -3.809537269896024,
          -7,
          -3.383556067822925,
          -3.9982375359446207,
          -3.2666806020098047,
          -2.574320700915308,
          -3.6307735456752157,
          -3.0627290946508094,
          -2.962421955102072,
          -3.9876439241005333,
          -3.8159096508867747,
          -3.2876796055965056,
          -3.816837630902035,
          -3.6936170426895027,
          -3.6938807709392365,
          -3.805047523584979,
          -7,
          -3.648964674299241,
          -2.6864221224006877,
          -4.283074974735472,
          -7,
          -4.023561090096945,
          -7,
          -3.078474943488153,
          -1.8606208424532815,
          -7,
          -3.549636657209407,
          -2.8545180087460724,
          -7,
          -3.7171502028538876,
          -7,
          -7,
          -3.3025640175436135,
          -4.013911091029002,
          -3.4414931434230693,
          -7,
          -7,
          -3.689996613293506,
          -3.491261614450974,
          -2.865972090376475,
          -3.268237482267674,
          -4.307217829203142,
          -2.4548912453634877,
          -2.9444826721501687,
          -3.0823664270781026,
          -4.281215232611316,
          -3.801403710017355,
          -4.0261858534423824,
          -4.0080889362915775,
          -3.091170218869001,
          -3.3962381043562058,
          -3.982994454658664,
          -2.3973248795188713,
          -3.4480434434366742,
          -7,
          -7,
          -3.601889342116067,
          -7,
          -3.4184670209466006,
          -3.7005306569785916,
          -3.244714716312713,
          -2.955155313300949,
          -3.6882863093259703,
          -4.285489796846293,
          -7,
          -2.656577291396114,
          -2.817778879510587,
          -7,
          -7,
          -3.4137187650610787,
          -3.3439793994775977,
          -2.9969112158758717,
          -7,
          -2.911183601945748,
          -2.666043954558214,
          -4.290279528920517,
          -3.503501283905208,
          -3.8140699338427977,
          -2.931235094634994,
          -7,
          -3.3754603877138902,
          -3.877544107715944,
          -3.327517862760602,
          -3.814757969195035,
          -2.844228581301628,
          -3.2919538132661614,
          -7,
          -4.2799405728395525,
          -2.1663734211362113,
          -4.2777237887624535,
          -7,
          -3.8023859928820944,
          -7,
          -7,
          -3.1042792367572742,
          -3.0563966072973052,
          -2.9245708389275467,
          -2.6434340528243605,
          -4.292322539914916,
          -3.2130859041084054,
          -7,
          -3.807467375684278,
          -3.823235062261409,
          -3.397201079785138,
          -3.4027255284410836,
          -7,
          -4.285827252753274,
          -3.3893211618458814,
          -2.7968517490498868,
          -7,
          -4.278479223046323,
          -3.533454289670824,
          -4.302893458356505,
          -7,
          -4.303260872655577,
          -2.452650144816879,
          -3.7218518176680497,
          -3.476231073378763,
          -4.31045964365906,
          -3.462664150493101,
          -4.006187833539161,
          -7,
          -2.5745622299382056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.284836637642396,
          -7,
          -3.3891016202881334,
          -7,
          -3.1774441484275546,
          -7,
          -2.763153961911042,
          -2.7488272758008763,
          -7,
          -3.766115283221414,
          -3.7488080049586023,
          -7,
          -3.622006673006805,
          -3.828359093933543,
          -3.0793940833377964,
          -3.0950167110880895,
          -3.4602963267574753,
          -3.3173414420397855,
          -4.288629234664989,
          -2.9176180259352056,
          -7,
          -3.116908047708927,
          -2.8806654158665483,
          -3.03926402233583,
          -4.283527364861694,
          -2.289042036469909,
          -3.9780891730561425,
          -2.7934142558243362,
          -3.6879078003587713,
          -3.191343513169289,
          -3.5869022227332383,
          -3.1747752479599702,
          -1.76119816931531,
          -2.166493546908743,
          -7,
          -3.720159303405957,
          -3.200524297120166,
          -2.9621663152618503,
          -7,
          -7,
          -3.985089506926381,
          -7,
          -3.9822712330395684,
          -3.1414049753724838,
          -3.5032684897703463,
          -3.1134085068181756,
          -2.549820373239367,
          -3.3500346963400576,
          -2.056932356607827,
          -2.373261719017877,
          -7,
          -4.287017501322102,
          -3.8125568661800697,
          -3.6000358121146183,
          -4.279666944048455,
          -7,
          -2.868119408129591,
          -3.607969437822521,
          -7,
          -7,
          -7,
          -7,
          -4.284859176733764,
          -7,
          -7,
          -4.3082228192210215,
          -2.65501934144753,
          -7,
          -7,
          -7,
          -4.2844984108280455,
          -3.8154891981186587,
          -4.291213400273596,
          -4.278456350394209,
          -3.815622016657408,
          -1.7657760571950565,
          -7,
          -3.312000950213744,
          -3.2858168734035287,
          -7,
          -7,
          -7,
          -3.0490407234303634,
          -2.8663506427038543,
          -2.544001861100848,
          -7,
          -2.992932931139705,
          -7,
          -3.682686478249768,
          -7,
          -2.8288286230919457,
          -3.1770673239782408,
          -2.8287227557743795,
          -2.7620011370674376,
          -2.9283275615919133,
          -3.5260806918020298,
          -3.5138610158527017,
          -7,
          -4.000368993509583,
          -3.854265546255161,
          -3.5494120098036346,
          -7,
          -7,
          -4.301811023017477,
          -7,
          -3.1925888952127703,
          -4.279050648199026,
          -4.317373762902532,
          -3.1095464078914286,
          -3.4547360006316015,
          -3.726380776040445,
          -3.459650919472839,
          -3.0166437893932163,
          -2.738714511114171,
          -7,
          -7,
          -2.7749729179824016,
          -4.294223658976586,
          -2.3934582058330225,
          -3.310757018352604,
          -3.0786774240863606,
          -2.975411826706968,
          -3.3921867532870635,
          -4.312008007838723,
          -3.7387607453279568,
          -3.620614868774087,
          -3.0730827979450512,
          -3.335407748315415,
          -3.9782033499061584,
          -7,
          -4.277929946646919,
          -3.2384583258072803,
          -3.033462051371804,
          -2.780767218408403,
          -3.990094550948234,
          -3.546953732587764,
          -3.9840319802711806,
          -4.315487527750822,
          -7,
          -3.0931266481387256,
          -3.8151569739533104,
          -3.5985935527733384,
          -3.453375681483457,
          -3.991292544250934,
          -3.086869447540834,
          -2.762465651906572,
          -2.933582396764532,
          -7,
          -3.7918660152578747,
          -1.9811477962844128,
          -2.8087793747812646,
          -7,
          -3.016351471856979,
          -4.283775978711523,
          -3.2631624649622166,
          -2.570135907677381,
          -2.7630625795894206,
          -4.014520538757924,
          -7,
          -7,
          -7,
          -3.8081434257614912,
          -3.990272240095868,
          -4.293274139710753,
          -3.4582033372516316,
          -7,
          -2.671492930691694,
          -7,
          -7,
          -3.420308385109363,
          -3.126439324237566,
          -4.093550086590404,
          -3.880356199419236,
          -3.669899269076556,
          -3.6249212039208625,
          -4.11590992187706,
          -2.9459834032795715,
          -3.23450347863715,
          -3.4934270675834678,
          -4.0517504719073445,
          -3.225601410589217,
          -3.7044263080176774,
          -3.5036029866649097,
          -3.0367823942793577,
          -4.123895177078786,
          -3.6415005507635767,
          -3.1397642460034194,
          -3.864970644137885,
          -3.3364486150558688,
          -4.348674732191571,
          -3.5622052695977127,
          -3.6691889913068407,
          -3.39849389779482,
          -2.6068836655376235,
          -3.9994133063420474,
          -3.6304888957237034,
          -3.751958761232796,
          -7,
          -3.059022969905103,
          -3.4385950832263315,
          -3.6440773478650277,
          -3.9957996689346427,
          -7,
          -7,
          -4.009620840814325,
          -3.9394360464718168,
          -3.525017026117495,
          -3.5752135116917656,
          -3.2840594143879214,
          -3.1488449390421698,
          -3.472663385738777,
          -3.175527919520875,
          -3.640895326720516,
          -3.5851221863068155,
          -3.25784214067938,
          -7,
          -2.717245161243629,
          -3.5499683102108293,
          -3.3814961375657253,
          -2.923187478458534,
          -2.9887719836341766,
          -2.5579145953128126,
          -4.003762020828246,
          -3.7588929767211523,
          -3.7022064378331843,
          -7,
          -3.6950962442731257,
          -3.420584854485378,
          -4.064514144365488,
          -7,
          -2.8102960066995175,
          -2.9927016507951634,
          -3.1638994222456214,
          -3.682911863319907,
          -3.767842028696057,
          -3.8097840982527122,
          -3.288125411314306,
          -3.5451303224548734,
          -3.349232928245844,
          -3.2797382181499897,
          -3.590495072886447,
          -3.803138333966474,
          -3.4207366659537195,
          -3.045637778266747,
          -3.149966494141885,
          -7,
          -3.2876026948754578,
          -3.919844843125104,
          -3.0806042203199797,
          -3.148002970984834,
          -4.292898175018025,
          -3.1689719167337276,
          -3.273244808029194,
          -4.345981121826305,
          -2.7799308552177844,
          -7,
          -3.5732971725254727,
          -3.492694236580896,
          -3.628876882304244,
          -7,
          -7,
          -7,
          -7,
          -3.8980849663796677,
          -2.939981890516324,
          -3.3642799327019315,
          -2.7644595723897676,
          -4.283798572914993,
          -4.0100454126360985,
          -3.22743675839222,
          -4.322136564096103,
          -3.5349352251341584,
          -4.28431791543061,
          -4.081779226767534,
          -7,
          -2.940409365458403,
          -4.054498146636677,
          -7,
          -3.713889373212412,
          -3.902234126966771,
          -4.315025199312605,
          -3.762959751488572,
          -7,
          -4.289544361497647,
          -3.690993032099869,
          -3.6880636969463443,
          -3.9918239268084683,
          -3.5306478535274857,
          -3.298872915814105,
          -7,
          -3.9828137621318627,
          -3.4356623863120097,
          -3.680901812206373,
          -2.6314437690131722,
          -3.2737138444188143,
          -3.1461987796436697,
          -7,
          -3.4255545979519635,
          -3.0189564176376464,
          -4.295830894958585,
          -3.03009349218267,
          -7,
          -4.003934206173708,
          -2.248480619786217,
          -7,
          -7,
          -4.321660556848671,
          -4.003137276060415,
          -3.5902100254885054,
          -4.289165152649889,
          -3.306982282551364,
          -3.8211640307644217,
          -3.990072334692153,
          -3.611255844847484,
          -3.0351833474357774,
          -2.9651635486826406,
          -3.9794800840392948,
          -3.439825930092142,
          -3.2247919564926817,
          -4.012457578200774,
          -3.470971474238306,
          -4.289142835932333,
          -7,
          -3.6438637455958203,
          -2.795901073535779,
          -2.348481212264502,
          -4.030275802889288,
          -3.272286511062136,
          -3.5264469759599937,
          -7,
          -3.5631588895944604,
          -3.988135156985908,
          -3.27460186778912,
          -4.286950215787549,
          -2.7833359701684657,
          -3.140420742400279,
          -3.6029277128591892,
          -7,
          -3.2796318509627507,
          -2.7523259318317654,
          -2.7636199469282294,
          -3.277650881240888,
          -2.499427906598886,
          -1.932680798328356,
          -3.203649241936576,
          -3.698231075449119,
          -3.3530872831590104,
          -3.4612170595896647,
          -4.00114935814922,
          -4.298918543005097,
          -3.979548374704095,
          -4.278822168352688,
          -3.5034030276792736,
          -3.4277497542165274,
          -4.294686624279444,
          -4.029261995804175,
          -3.2417290583944616,
          -4.315466523495654,
          -4.042076489364744,
          -3.2113794640853506,
          -3.1333134374911014,
          -3.4259823037627872,
          -7,
          -3.1939376036814164,
          -7,
          -3.31923859026851,
          -3.1094285444913927,
          -7,
          -7,
          -4.308585754289083,
          -3.4521151559753847,
          -2.6019192249352625,
          -4.293473048156108,
          -4.286950215787549,
          -7,
          -7,
          -3.804775295526398,
          -3.5815856036702556,
          -3.379803899663388,
          -3.550839605065785,
          -4.3065108056433825,
          -3.081940027992318,
          -7,
          -3.8133808067338557,
          -7,
          -7,
          -7,
          -7,
          -4.32236403543911,
          -7,
          -3.4172501991365754,
          -3.483052121938875,
          -3.1071534172053243,
          -4.2915020491896,
          -7,
          -3.496652939250918,
          -7,
          -7,
          -3.2076777920604744,
          -3.9916247345340055,
          -7,
          -3.4954452174999373,
          -3.180719663237752,
          -3.8472846790838813,
          -7,
          -4.282984440133955,
          -7,
          -7,
          -3.5176859234556574,
          -4.004149341900059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8656960599160706,
          -4.426001303137032,
          -7,
          -7,
          -7,
          -7,
          -3.7299473267944347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03402652377511,
          -7,
          -7,
          -7,
          -4.249432481236935,
          -7,
          -7,
          -7,
          -3.2785249647370174,
          -7,
          -7,
          -4.387686374306485,
          -7,
          -7,
          -7,
          -7,
          -2.9590413923210934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9945936452881283,
          -7,
          -7,
          -7,
          -7,
          -3.145403607683906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305405115437893,
          -7,
          -3.593286067020457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6026025204202563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9138138523837167,
          -7,
          -7,
          -4.52275060950722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5309497774256355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.144138137663588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073773320852101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8920946026904804,
          -7,
          -7,
          -3.4158077276355434,
          -7,
          -2.2671717284030137,
          -7,
          -3.6934851184837787,
          -7,
          -7,
          -7,
          -3.6654308849136665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021602716028243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.814180981040187,
          -7,
          -7,
          -7,
          -4.238472656948356,
          -7,
          -7,
          -7,
          -3.1172712956557644,
          -7,
          -7,
          -2.696938553005363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4978093324102675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7049222912234017,
          -4.875994475714984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2216749970707688,
          -3.0670708560453703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.252610340567373,
          -7,
          -7,
          -3.465457210575713,
          -7,
          -2.964338214198132,
          -7,
          -3.1598678470925665,
          -7,
          -2.8382192219076257,
          -2.823474229170301,
          -2.8322959710584774,
          -7,
          -7,
          -4.352780467571326,
          -3.841484609335393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.90156729002845,
          -3.560026248912892,
          -3.824581376233483,
          -3.949291559892229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2889196056617265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9001634665734852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.885926339801431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.311245120878207,
          -7,
          -4.531657707374614,
          -7,
          -4.408375661136076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6994908452722046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.396896449142524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.918502139636174,
          -7,
          -3.403635189790548,
          -3.1486026548060932,
          -4.654163702235632,
          -7,
          -7,
          -2.7749729179824016,
          -7,
          -7,
          -3.08718965524094,
          -3.229169702539101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.527253435112711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.030599721965951,
          -7,
          -7,
          -4.855858221196212,
          -7,
          -7,
          -7,
          -7,
          -4.239649777166663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.070037866607755,
          -7,
          -7,
          -2.482873583608754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.588271706842329,
          -7,
          -7,
          -3.5748411950633847,
          -7,
          -4.41608272151237,
          -4.695801150661582,
          -4.101724167515184,
          -7,
          -7,
          -4.921493990967949,
          -7,
          -7,
          -7,
          -5.387590907962582,
          -7,
          -7,
          -7,
          -7,
          -4.6562036470321875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.988112840268352,
          -7,
          -7,
          -7,
          -7,
          -4.3243030374868345,
          -7,
          -4.632877210811569,
          -7,
          -3.462996612028056,
          -7,
          -4.660685274789785,
          -4.201479058946089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.788677343181599,
          -5.405219964310453,
          -7,
          -3.669037800885156,
          -7,
          -4.9545078305606225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.428895762801387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6415137702896985,
          -4.954960913566566,
          -7,
          -4.444023314994304,
          -7,
          -7,
          -4.605746659595613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.465873386571601,
          -3.3142886609474975,
          -3.7005306569785916,
          -7,
          -7,
          -4.338217366601095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096743211899143,
          -3.591064607026499,
          -2.5757649805367193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.116917527602884,
          -5.09379977701746,
          -7,
          -7,
          -7,
          -3.62490060220449,
          -7,
          -3.1295287738587763,
          -7,
          -3.1486026548060932,
          -3.165812920092044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1812717715594614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.513617073787875,
          -7,
          -7,
          -3.838156184752148,
          -7,
          -7,
          -7,
          -2.803912112528065,
          -3.6746501056927805,
          -7,
          -3.5692568333286103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.28668096935493,
          -3.78738962135211,
          -3.104487111312395,
          -7,
          -3.1755118133634475,
          -3.929306505534561,
          -3.2931414834509307,
          -7,
          -3.52255290221248,
          -2.4274861090957858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.526649376997381,
          -7,
          -7,
          -7,
          -3.6398847419163043,
          -3.1089031276673134,
          -7,
          -2.893206753059848,
          -7,
          -7,
          -3.343802333161655,
          -7,
          -2.4065401804339555,
          -7,
          -7,
          -3.349613033193485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7456992266025058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.400537989391946,
          -2.721398375521505,
          -7,
          -7,
          -7,
          -3.2461873390876783,
          -3.2682658666003466,
          -7,
          -2.5259082158339554,
          -3.905175016099293,
          -3.7449706317345974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.169694022903532,
          -7,
          -7,
          -3.399673721481038,
          -3.7333508099061934,
          -7,
          -7,
          -7,
          -2.914166793875635,
          -7,
          -7,
          -4.2660846327618,
          -3.1911714557285586,
          -7,
          -7,
          -3.0874264570362855,
          -3.0768224233427732,
          -3.028571252692538,
          -2.419065670188649,
          -7,
          -7,
          -7,
          -3.9963709289328424,
          -7,
          -7,
          -7,
          -7,
          -3.37675939540488,
          -7,
          -7,
          -3.5531545481696254,
          -3.2335037603411343,
          -7,
          -3.3190633300866943,
          -2.350801612394977,
          -2.969674713673781,
          -3.342488478031923,
          -7,
          -7,
          -3.497620649781288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.61066016308988,
          -3.9793966030856005,
          -1.673481697073347,
          -7,
          -2.9858753573083936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9804611371420555,
          -7,
          -2.4667028964826474,
          -7,
          -7,
          -3.0522540943300562,
          -7,
          -7,
          -7,
          -3.1983821300082944,
          -3.142389466118836,
          -3.06620164592725,
          -3.111598524880394,
          -2.8666810784419927,
          -7,
          -3.4181482539720984,
          -3.2829618035343353,
          -7,
          -2.9537596917332287,
          -7,
          -7,
          -2.3326404103874623,
          -7,
          -7,
          -7,
          -4.161457846971751,
          -7,
          -7,
          -7,
          -1.6950205930177513,
          -2.4608978427565478,
          -3.4429498695778618,
          -3.271609301378832,
          -2.8886474332825305,
          -2.9528103746480463,
          -3.117602691690084,
          -7,
          -2.0162496497954696,
          -7,
          -3.6926178191739303,
          -7,
          -7,
          -3.4056877866727775,
          -2.6850696293911485,
          -3.0668847431297714,
          -1.8744818176994664,
          -2.2012533420043217,
          -4.456343254849088,
          -7,
          -7,
          -7,
          -4.092488175292648,
          -7,
          -3.501333178645566,
          -2.4669664246957717,
          -7,
          -7,
          -3.3075816047506295,
          -3.525821952156663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.595141776071406,
          -3.281714970027296,
          -3.688568121297955,
          -7,
          -7,
          -7,
          -7,
          -3.02201573981772,
          -2.3399480616943507,
          -7,
          -3.549248556854056,
          -7,
          -7,
          -7,
          -3.6433169382503885,
          -2.926342446625655,
          -2.8915374576725643,
          -7,
          -2.9719712763997563,
          -7,
          -3.2773799746672547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.538883185853489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5598567720277465,
          -7,
          -7,
          -7,
          -3.750970984437319,
          -2.4815432003737445,
          -3.1789769472931693,
          -2.6300038835026207,
          -1.741747660192021,
          -7,
          -2.319826481618029,
          -7,
          -2.7456602257060756,
          -3.239049093140191,
          -7,
          -2.460803910782157,
          -2.002166061756508,
          -7,
          -7,
          -3.969322706112202,
          -3.0707764628434346,
          -4.349549483586635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5744364202024044,
          -7,
          -7,
          -2.7466341989375787,
          -2.948412965778601,
          -7,
          -7,
          -7,
          -3.1122697684172707,
          -3.2320299376201334,
          -7,
          -4.143732823138692,
          -5.236167634842456,
          -7,
          -7,
          -3.106870544478654,
          -7,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3273589343863303,
          -4.245453441801116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5713205488307422,
          -3.8080082999104,
          -1.814273462760839,
          -3.334051440346892,
          -7,
          -7,
          -4.022036380699923,
          -7,
          -3.5843940517791273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1324883979895946,
          -3.7460890430562004,
          -3.561280314290289,
          -1.8147526160648406,
          -2.183744223284207,
          -7,
          -2.9561684304753633,
          -2.664238918003387,
          -3.1845494813206976,
          -7,
          -3.0382226383687185,
          -7,
          -7,
          -7,
          -7,
          -3.1065308538223815,
          -3.1015506938924196,
          -7,
          -7,
          -7,
          -4.09165736688658,
          -3.009185223506869,
          -2.99211148778695,
          -4.294223658976586,
          -7,
          -7,
          -3.1496295989637306,
          -7,
          -2.9309490311675233,
          -3.251273113674373,
          -7,
          -3.362293937964231,
          -3.5700757053216043,
          -3.4268364538035083,
          -5.129675071808323,
          -7,
          -7,
          -7,
          -7,
          -2.5761973294842266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0909630765957314,
          -7,
          -2.7745169657285493,
          -7,
          -7,
          -3.655906418180215,
          -7,
          -4.382131157528002,
          -2.977934547322576,
          -4.796328556603315,
          -7,
          -2.913350180964195,
          -5.020199635347019,
          -3.801472313521471,
          -7,
          -2.713770462202507,
          -7,
          -2.97806633408362,
          -3.8095597146352675,
          -7,
          -3.091842749738098,
          -7,
          -7,
          -3.1550322287909704,
          -7,
          -7,
          -7,
          -2.9005491846146607,
          -7,
          -2.963180469568511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.379686151906955,
          -7,
          -4.1174149316527675,
          -4.581346526814622,
          -7,
          -7,
          -7,
          -4.7218270966638265,
          -4.522174617722214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.661604477060614,
          -7,
          -7,
          -4.475830932831453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.372516173004876,
          -3.8120215812126705,
          -3.0017337128090005,
          -3.211209563392604,
          -7,
          -7,
          -4.282100737285847,
          -4.0080889362915775,
          -3.540454613671412,
          -4.446894272471873,
          -3.96432092693784,
          -3.4793773350238864,
          -7,
          -7,
          -3.543074235033532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.038884975666385,
          -4.209654677443103,
          -7,
          -7,
          -7,
          -7,
          -4.355144896174567,
          -7,
          -4.928858238901066,
          -3.612289256263882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.64018319192134,
          -3.6212541984361724,
          -7,
          -4.423060098203508,
          -4.191297279429712,
          -7,
          -3.282153987685595,
          -7,
          -7,
          -5.047212542627943,
          -7,
          -7,
          -4.611808247276516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5709221981779065,
          -2.719497016610582,
          -3.5915932335792364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.197590657733156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3953263930693507,
          -7,
          -7,
          -2.9564428661760616,
          -7,
          -7,
          -7,
          -3.090845652103492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203147997054803,
          -7,
          -7,
          -7,
          -3.254934589077441,
          -7,
          -3.212453961040276,
          -7,
          -3.295567099962479,
          -3.6571036800122543,
          -7,
          -7,
          -7,
          -2.8093352150273203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7444885672205115,
          -2.7960971103163055,
          -7,
          -7,
          -3.2819419334408244,
          -3.5597869682005565,
          -7,
          -4.1567610983066245,
          -7,
          -7,
          -7,
          -3.09324653110384,
          -3.15430495170648,
          -2.7306477150202615,
          -7,
          -1.9624369880545964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3484346775706944,
          -7,
          -7,
          -2.971342127941882,
          -2.7693368531734577,
          -7,
          -7,
          -3.835859607003717,
          -7,
          -7,
          -7,
          -4.046339055604809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9317755929080946,
          -7,
          -3.6944004327307844,
          -7,
          -7,
          -3.195484523033764,
          -7,
          -3.3289908554494287,
          -7,
          -3.199480914862356,
          -3.697490887171057,
          -7,
          -7,
          -7,
          -7,
          -4.4012454079054875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5241363765925686,
          -7,
          -3.371621927176021,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.446847710155809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.297760511099134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.576341350205793,
          -3.2100508498751372,
          -2.8805277781988052,
          -3.275886960301226,
          -7,
          -3.4968365445930845,
          -7,
          -7,
          -3.576226137449605,
          -2.8113207147872394,
          -2.3712030652454543,
          -2.499392479227636,
          -2.8345266679328582,
          -3.550228353055094,
          -3.571009672309305,
          -7,
          -2.804803224207489,
          -4.035469763481283,
          -7,
          -2.8484690360999636,
          -2.0234588844056782,
          -2.109568321112792,
          -2.441470694043007,
          -3.251273113674373,
          -1.7850724244637253,
          -1.385855581574104,
          -3.2972131959896416,
          -2.9486460646637145,
          -1.8672710189654482,
          -7,
          -3.09143245732978,
          -3.599992177584098,
          -3.011908613349154,
          -3.2814878879400813,
          -3.490800952010855,
          -7,
          -2.5276299008713385,
          -7,
          -3.010401363772612,
          -7,
          -2.6491184149090556,
          -7,
          -2.6903929943288283,
          -2.4106899876913297,
          -3.591287265058499,
          -2.728962179713866,
          -7,
          -3.34908316877959,
          -3.6898414091375047,
          -2.700574187583653,
          -2.993730069806455,
          -2.50121580704486,
          -3.067675172788824,
          -7,
          -3.019324037153691,
          -2.53826315899939,
          -3.6263403673750423,
          -2.855317205195943,
          -3.1581613832785496,
          -7,
          -2.711807229041191,
          -3.1354506993455136,
          -2.8619093473644877,
          -7,
          -7,
          -2.388163005253829,
          -7,
          -3.9318645134920316,
          -1.6713068485030702,
          -7,
          -3.765668554759014,
          -3.453990033784266,
          -7,
          -3.7331972651065697,
          -7,
          -3.5854607295085006,
          -2.7477388061000108,
          -7,
          -2.7454094219943266,
          -7,
          -3.4709981696608736,
          -3.3163897510731957,
          -3.3188977146274867,
          -2.7795309027230926,
          -2.146216658162354,
          -7,
          -3.088440220901794,
          -3.819346484080453,
          -3.656513443339265,
          -2.7837845129301377,
          -7,
          -7,
          -7,
          -3.2670151976815847,
          -3.8436687229791437,
          -7,
          -3.9359856330811804,
          -3.623352681537992,
          -3.555094448578319,
          -3.5531545481696254,
          -3.056558385835925,
          -3.5597869682005565,
          -2.0729208942243305,
          -3.665299499499897,
          -2.3893433112520777,
          -2.740104775756783,
          -2.8302678009336417,
          -3.2837533833325265,
          -3.0456163219129087,
          -3.1842180852863775,
          -1.9540643506309214,
          -7,
          -7,
          -2.7689668009657864,
          -2.9766774271692067,
          -2.6137243973838293,
          -3.63286204010023,
          -3.17666993266815,
          -3.272240590930113,
          -3.130976691605617,
          -3.0991624929285946,
          -2.4644256696388567,
          -2.661298621047443,
          -7,
          -2.154372009362445,
          -3.555094448578319,
          -7,
          -3.616580530085886,
          -2.6369985529614173,
          -2.74350976472843,
          -7,
          -3.556423121371285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8398863812750887,
          -2.6264943452110474,
          -2.647759015234576,
          -7,
          -7,
          -7,
          -2.9552065375419416,
          -3.5809249756756194,
          -3.655330558009341,
          -3.8608767964032977,
          -2.2642830872778266,
          -7,
          -7,
          -1.6675615400843946,
          -3.499904633477991,
          -3.5565437084835145,
          -7,
          -7,
          -3.1885535262742306,
          -2.335280866452853,
          -7,
          -3.6832272060414346,
          -3.449863924718144,
          -2.9628426812012423,
          -3.6979264448065052,
          -3.1830256751145836,
          -3.383456296524753,
          -7,
          -3.140550548300557,
          -3.594060901270418,
          -7,
          -7,
          -3.0211892990699383,
          -7,
          -7,
          -7,
          -2.85601101687512,
          -7,
          -3.5682799682761797,
          -3.256236533205923,
          -3.62283547952152,
          -2.72235775493706,
          -7,
          -3.4202308796246506,
          -2.8016531253763444,
          -2.887617300335736,
          -2.9611837098124356,
          -2.3954643446238713,
          -2.91916529134874,
          -2.5711262770843115,
          -2.6762362167633116,
          -3.170437745046183,
          -7,
          -2.774853715149844,
          -7,
          -3.780821175853473,
          -3.0091108061322127,
          -7,
          -7,
          -2.6695202631671413,
          -7,
          -3.2481695133068103,
          -3.607669436688243,
          -2.4201391886115573,
          -7,
          -2.7571790442859356,
          -1.8694890489332097,
          -2.089494353362903,
          -7,
          -3.1421547334862034,
          -7,
          -3.2328691051326137,
          -7,
          -7,
          -7,
          -3.5618166643189575,
          -3.2728854447575695,
          -2.8981764834976764,
          -3.5653755027140734,
          -2.8285524909500306,
          -2.5062730374838087,
          -2.333321300752023,
          -4.222222082360713,
          -4.1027532053059295,
          -7,
          -3.291368850451583,
          -3.003352806825089,
          -7,
          -7,
          -3.2676409823459154,
          -2.515211304327802,
          -3.2065560440990297,
          -3.681512586638962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5666731376061165,
          -3.38747881199254,
          -3.276174477347082,
          -2.3426693689753333,
          -2.0567819436005728,
          -7,
          -7,
          -3.318793504793297,
          -7,
          -7,
          -3.143118935126169,
          -3.1216145515607425,
          -3.6993173010213822,
          -3.2637307273683223,
          -3.207185391351969,
          -7,
          -7,
          -7,
          -2.773109617523673,
          -3.413634997198556,
          -2.7012294903811234,
          -7,
          -3.2047342663096217,
          -7,
          -7,
          -7,
          -1.679567653486021,
          -3.635031120946007,
          -2.1855529128395355,
          -1.4552075276553922,
          -7,
          -3.195253724026417,
          -3.6178387477170033,
          -3.567966906823154,
          -3.3585059114902354,
          -3.7782236267660965,
          -2.985950126092585,
          -7,
          -7,
          -3.3601198615808054,
          -3.5817221599490985,
          -3.2062860444124324,
          -3.551693915127225,
          -3.2481368116402987,
          -2.2609794792347033,
          -2.6980038315639985,
          -3.4665710723863543,
          -7,
          -3.886462523316444,
          -3.0842584336373493,
          -7,
          -2.3934582058330225,
          -3.08718965524094,
          -3.1496295989637306,
          -7,
          -2.2488486838763264,
          -2.6682066561591586,
          -2.037566277305172,
          -2.9232440186302764,
          -3.226771698912882,
          -3.5100085129402347,
          -7,
          -4.62628453692498,
          -2.6061332204613037,
          -3.251638220448212,
          -7,
          -7,
          -2.9029912724826192,
          -2.047822259143102,
          -2.814802321164222,
          -7,
          -1.7927850365787643,
          -2.0848644436153325,
          -2.7625952138601995,
          -7,
          -3.307656461906382,
          -3.6184664921990803,
          -2.296665190261531,
          -3.3851294198782624,
          -7,
          -3.3310684902283065,
          -2.894505945868358,
          -4.05096407122405,
          -7,
          -3.065906339656369,
          -2.6094077345866067,
          -1.3071078393578763,
          -7,
          -3.3336487565147013,
          -2.6716355966021297,
          -2.7746496557637714,
          -1.9043483915868251,
          -1.5085159774318875,
          -2.0026318385574484,
          -2.1221551759899824,
          -7,
          -3.749581734865559,
          -3.584331224367531,
          -2.611723308007342,
          -3.622731965164719,
          -2.494502447046173,
          -3.591287265058499,
          -2.1292139171150253,
          -3.547528576459782,
          -3.076640443670342,
          -3.5489623660813248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.624024124647861,
          -3.450359098058306,
          -7,
          -7,
          -7,
          -4.442934207756266,
          -4.534009174167328,
          -4.138228993454836,
          -7,
          -4.701403906447556,
          -3.9383695974518065,
          -7,
          -4.3736842129970155,
          -7,
          -7,
          -7,
          -3.490590487028833,
          -7,
          -7,
          -4.686957849789318,
          -7,
          -7,
          -4.319300424211257,
          -4.243410141653711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.043627490035012,
          -2.85410352630107,
          -4.6982484764620995,
          -3.600224844436374,
          -3.5563025007672873,
          -7,
          -4.387852352763043,
          -7,
          -3.780741787862935,
          -3.208575708947575,
          -2.793161529245551,
          -3.642450387422455,
          -3.1192329712423796,
          -3.26027587412959,
          -7,
          -3.881883722962457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8009489378786143,
          -4.2370114348310794,
          -5.7090824613650915,
          -7,
          -2.1329879829101857,
          -3.59250984790068,
          -3.7940323677785246,
          -7,
          -7,
          -3.7002420700306993,
          -7,
          -7,
          -4.3819810000434645,
          -3.5251312252008757,
          -4.327365746795361,
          -7,
          -3.8125345758070877,
          -3.977586438003851,
          -3.710741267979859,
          -3.9271521342774345,
          -7,
          -3.286193609993445,
          -4.271683652549704,
          -7,
          -3.2849529807279723,
          -7,
          -3.846398973034675,
          -3.79492600409461,
          -4.057970231710706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.980297527520052,
          -2.3123238548327696,
          -2.4834684261642916,
          -7,
          -3.700617195682057,
          -2.8802764528742517,
          -7,
          -3.709439574132411,
          -3.10151795524841,
          -2.8589881003426956,
          -7,
          -3.355517574528589,
          -2.778332168729065,
          -3.61066016308988,
          -7,
          -7,
          -7,
          -2.607398581017968,
          -7,
          -7,
          -3.6580113966571126,
          -7,
          -7,
          -1.5581688314517086,
          -2.577626946713033,
          -7,
          -4.126748141560192,
          -7,
          -7,
          -4.629379013907319,
          -3.707178282743617,
          -4.332236415491443,
          -7,
          -3.769081787118219,
          -2.4764897696670043,
          -7,
          -2.1945873632331065,
          -7,
          -3.0725256109749517,
          -2.646674801889762,
          -7,
          -7,
          -2.661181443446619,
          -2.716003343634799,
          -3.052584021782163,
          -7,
          -3.3839050869769083,
          -3.0434605235779117,
          -7,
          -2.549266072612872,
          -3.0649002270174326,
          -7,
          -7,
          -2.4354992980773567,
          -2.6897185709293874,
          -7,
          -3.5339499073574743,
          -7,
          -7,
          -7,
          -2.940267391446012,
          -2.3990765371483125,
          -3.078239253809666,
          -7,
          -7,
          -7,
          -7,
          -2.903524064471262,
          -7,
          -7,
          -2.942008053022313,
          -2.7187783976895714,
          -7,
          -7,
          -2.5871963148858668,
          -2.6058673507596914,
          -2.3948741756650853,
          -3.131137273778607,
          -2.7752462597402365,
          -2.4757438067481257,
          -2.073589284256462,
          -2.3087583816224817,
          -3.141951195862753,
          -3.886490725172482,
          -7,
          -3.3473300153169503,
          -3.560026248912892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.186850431506691,
          -7,
          -3.6434279999623076,
          -3.221005778388855,
          -1.9965001510314468,
          -2.866508861395503,
          -7,
          -2.1520184006375565,
          -7,
          -2.4749734329483575,
          -2.682990720468959,
          -7,
          -3.5538830266438746,
          -3.690196080028514,
          -2.1895304166110634,
          -2.7728364862556436,
          -3.3224260524059526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.975247941240681,
          -7,
          -1.8327712998747674,
          -7,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -7,
          -3.0451664480652285,
          -3.074450718954591,
          -2.9002851785700106,
          -7,
          -7,
          -3.313128713845194,
          -3.252610340567373,
          -7,
          -3.6034691597338386,
          -7,
          -3.196339507959142,
          -3.142493751023144,
          -3.0135744775494535,
          -3.2081725266671217,
          -7,
          -3.752739693935328,
          -7,
          -7,
          -3.7293268096468606,
          -3.5588285248170117,
          -3.881783955593385,
          -2.5599066250361124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.413467412985825,
          -3.2555137128195333,
          -7,
          -3.4151053405015874,
          -7,
          -3.2041199826559246,
          -3.253580289562183,
          -7,
          -3.9410142437055695,
          -3.3928727454020793,
          -7,
          -7,
          -7,
          -7,
          -3.3610286258136726,
          -7,
          -7,
          -3.064158372463118,
          -3.3273473220791625,
          -7,
          -3.2830749747354715,
          -7,
          -3.210318519826232,
          -2.9283958522567137,
          -7,
          -3.457491776105673,
          -7,
          -7,
          -2.7601710828477963,
          -3.302114376956201,
          -2.721673245455936,
          -7,
          -3.147573276552419,
          -7,
          -3.236033147117636,
          -7,
          -3.9408058766441276,
          -7,
          -7,
          -3.521007252408604,
          -3.3895204658463776,
          -7,
          -3.2846562827885157,
          -7,
          -7,
          -3.095518042323151,
          -3.4653828514484184,
          -1.715591864279084,
          -2.8965262174895554,
          -3.2640145799809783,
          -2.4181236536533914,
          -7,
          -2.866877814337499,
          -2.991336850972244,
          -1.6824459385139579,
          -3.0666985504229953,
          -7,
          -3.237292337567459,
          -7,
          -3.385606273598312,
          -3.7692000268363204,
          -7,
          -7,
          -3.2657609167176105,
          -7,
          -3.340311889391722,
          -3.03734680356809,
          -7,
          -7,
          -3.666624475507377,
          -3.231214647962601,
          -3.2345172835126865,
          -7,
          -3.2727695865517594,
          -3.1603184379840017,
          -7,
          -2.8077604599357904,
          -2.8948696567452528,
          -3.294466226161593,
          -7,
          -3.0287745265000883,
          -7,
          -3.4761067168401913,
          -7,
          -3.5341581521382097,
          -7,
          -3.463332970234029,
          -7,
          -7,
          -7,
          -3.4699692094999595,
          -3.55339751012388,
          -3.397853141088609,
          -7,
          -4.184265443062108,
          -7,
          -7,
          -7,
          -2.4773693521168143,
          -3.2182728535714475,
          -7,
          -7,
          -3.0355898172434572,
          -2.8178088374213064,
          -7,
          -3.271841606536499,
          -7,
          -7,
          -3.1494415075655926,
          -3.060508975605298,
          -7,
          -3.0444090865590487,
          -2.969602264848539,
          -7,
          -7,
          -3.1640823515826657,
          -3.8089233307613366,
          -7,
          -7,
          -7,
          -4.095905632247942,
          -2.694078462080759,
          -7,
          -3.716504163773217,
          -7,
          -7,
          -2.9810769276095446,
          -3.139249217571607,
          -7,
          -7,
          -4.389148357697378,
          -7,
          -7,
          -7,
          -3.2380461031287955,
          -7,
          -3.5967803035945445,
          -3.2121209897122247,
          -3.8873077833767713,
          -3.4766867429456445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.098436045340363,
          -3.5947239464097467,
          -7,
          -7,
          -3.3412366232386925,
          -3.1083112729328004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6745549761273852,
          -2.784260582566084,
          -2.769869444521887,
          -3.478854967528663,
          -3.3374093395155677,
          -2.8536982117761744,
          -7,
          -2.8369307151325107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2137832993353044,
          -2.6157671330554435,
          -7,
          -3.703978825008386,
          -7,
          -3.8073997127594854,
          -2.5915710078337733,
          -3.0588054866759067,
          -3.1700415779490494,
          -2.5515371269694365,
          -3.1245042248342823,
          -2.7000853282011494,
          -3.444513206334043,
          -2.151267675330649,
          -2.191381141649701,
          -1.5342898943760837,
          -3.4340097093697395,
          -7,
          -2.6817687053632726,
          -7,
          -4.004321373782642,
          -7,
          -7,
          -7,
          -2.938152654633226,
          -7,
          -2.9339931638312424,
          -7,
          -2.5409548089261325,
          -7,
          -3.3092041796704077,
          -2.3594429293014985,
          -2.380986075961567,
          -7,
          -2.9509730248744774,
          -2.962150694375638,
          -3.2192176570229067,
          -7,
          -7,
          -3.278753600952829,
          -7,
          -7,
          -7,
          -2.928907690243953,
          -7,
          -2.712602940444727,
          -3.6972293427597176,
          -3.690225622865973,
          -4.537834200705592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2380461031287955,
          -3.216429830876251,
          -7,
          -3.4513258084895195,
          -7,
          -7,
          -7,
          -3.26528962586083,
          -7,
          -7,
          -7,
          -2.969661096395893,
          -3.1975562131535367,
          -3.208710019906401,
          -7,
          -3.2615007731982804,
          -3.0396123818967244,
          -3.0261245167454502,
          -7,
          -7,
          -3.1736960465161355,
          -3.4811558708280352,
          -3.556724526395461,
          -2.885587356189656,
          -7,
          -3.224014811372864,
          -7,
          -3.259335008740741,
          -2.2717049714930866,
          -3.0854628196699045,
          -7,
          -3.679155241283354,
          -7,
          -7,
          -2.9740509027928774,
          -3.085488786659366,
          -7,
          -3.108776369535781,
          -2.957196671383207,
          -7,
          -7,
          -7,
          -7,
          -3.413634997198556,
          -3.30352003690728,
          -3.1070968573977424,
          -7,
          -7,
          -3.1151110355043476,
          -7,
          -7,
          -7,
          -3.5237464668115646,
          -2.703608100680318,
          -7,
          -3.111486550023024,
          -7,
          -4.2904702780719735,
          -2.380944228352949,
          -3.2464985807958007,
          -3.310757018352604,
          -3.229169702539101,
          -7,
          -2.2488486838763264,
          -7,
          -1.6675418929848589,
          -2.170565170268305,
          -7,
          -3.0115704435972783,
          -3.6530194510996132,
          -3.53832233323144,
          -3.9539973051231425,
          -3.455758203104137,
          -7,
          -7,
          -7,
          -3.534026106056135,
          -3.2464165068123942,
          -7,
          -7,
          -3.269629674357553,
          -7,
          -7,
          -3.291590825658001,
          -3.0102292649359197,
          -3.338057875419756,
          -3.08278537031645,
          -3.4239009185284166,
          -7,
          -3.9607739167652127,
          -3.503960827812307,
          -4.597200233109779,
          -7,
          -2.8651632195060865,
          -3.1968111306617697,
          -2.7366416240451947,
          -7,
          -2.890979596989689,
          -7,
          -3.18440748541232,
          -2.5783375537206847,
          -2.9611497871815335,
          -3.0348957147764644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3461573022320086,
          -3.7453871213200087,
          -7,
          -2.4664306710374504,
          -7,
          -7,
          -3.493490223737186,
          -4.002007583780295,
          -7,
          -7,
          -3.39963252293413,
          -2.994844849553398,
          -7,
          -4.302081884881776,
          -3.8867162741164782,
          -4.026206297083118,
          -3.7080808104682315,
          -7,
          -3.449177857792815,
          -3.7984520950361382,
          -3.8158101067486827,
          -7,
          -3.9057509200197873,
          -3.814391038834804,
          -4.075181854618692,
          -4.034708651341069,
          -7,
          -4.310764096221262,
          -4.2996380249790755,
          -7,
          -4.142045148157744,
          -7,
          -3.969900262617777,
          -7,
          -7,
          -3.782386616743111,
          -7,
          -3.1684081904984973,
          -4.3462355816990375,
          -7,
          -7,
          -4.122183100093868,
          -7,
          -4.46976312459806,
          -3.914581133948868,
          -4.324848110377474,
          -3.0644579892269186,
          -4.680707088728766,
          -3.250294294532932,
          -3.16721884410666,
          -3.2757719001649312,
          -3.749040268703457,
          -7,
          -3.5138129077677016,
          -3.4379090355394983,
          -2.782370232445453,
          -3.613585124332224,
          -3.9679923390652525,
          -3.514406063663669,
          -7,
          -7,
          -7,
          -7,
          -3.866818802926048,
          -7,
          -7,
          -7,
          -3.4778400968029173,
          -3.8983890103941574,
          -4.862294124024368,
          -3.2678754193188975,
          -3.079759919660093,
          -3.287129620719111,
          -3.784740883765015,
          -7,
          -4.805247615802404,
          -3.5140826625258312,
          -3.7693527055096814,
          -7,
          -7,
          -4.4501875018958374,
          -4.790840874214755,
          -7,
          -7,
          -7,
          -3.9501267602586227,
          -4.503150341603528,
          -3.3428173146357327,
          -3.772961916786803,
          -3.785187420029362,
          -7,
          -3.769839674254719,
          -7,
          -7,
          -3.774808830310706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3089768152351886,
          -2.4508903227897534,
          -3.311568451887975,
          -7,
          -3.181986424480151,
          -3.322538787843612,
          -3.074938279468222,
          -7,
          -7,
          -3.224856655856958,
          -7,
          -3.2024542587546296,
          -3.242624237809914,
          -3.3230457354817013,
          -7,
          -2.728924648972301,
          -3.5089335260500327,
          -2.85582190540603,
          -7,
          -7,
          -2.18456799910385,
          -7,
          -7,
          -2.7687860469080143,
          -2.80540375486411,
          -7,
          -7,
          -7,
          -7,
          -4.006626466242401,
          -2.512643299825052,
          -3.9506846844686647,
          -7,
          -7,
          -3.211876648386651,
          -3.368286884902131,
          -2.458098017406232,
          -7,
          -7,
          -3.3229998633420332,
          -7,
          -7,
          -3.248463717551032,
          -2.9568085108888016,
          -3.4723907276266286,
          -7,
          -3.4574276929464847,
          -3.0879587894607328,
          -7,
          -2.875495340871019,
          -3.556824948270698,
          -7,
          -7,
          -3.1863912156954934,
          -3.3433101031623416,
          -7,
          -3.48061050905939,
          -7,
          -7,
          -3.954628377507271,
          -3.035963105745482,
          -2.9684148414805858,
          -2.824884805866878,
          -7,
          -2.8360074591255313,
          -7,
          -7,
          -3.3087777736647213,
          -7,
          -3.28668096935493,
          -3.516403148447403,
          -2.8727388274726686,
          -3.4184670209466006,
          -3.1986570869544226,
          -2.9109207100667613,
          -3.1789769472931693,
          -2.818308388529562,
          -7,
          -3.2874759886947014,
          -7,
          -3.5167336366163866,
          -3.4056877866727775,
          -3.376576957056512,
          -3.4565178578052627,
          -7,
          -3.39375064034808,
          -7,
          -7,
          -3.4774106879072515,
          -7,
          -7,
          -3.5986810989071634,
          -3.6984858063814814,
          -3.511749711344983,
          -3.7166987712964503,
          -3.7819587156422436,
          -3.1543478812209957,
          -2.8935398435646613,
          -7,
          -2.284355524825039,
          -7,
          -3.0435194602457565,
          -3.0612262251191154,
          -7,
          -7,
          -7,
          -3.3820170425748683,
          -3.1351661410808247,
          -3.3479151865016914,
          -7,
          -7,
          -3.203576774977973,
          -7,
          -7,
          -7,
          -3.873320601815399,
          -2.973589623427257,
          -3.496237545166735,
          -7,
          -7,
          -7,
          -7,
          -3.3432115901797474,
          -7,
          -3.5538830266438746,
          -7,
          -3.445635334378726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8146869966218184,
          -7,
          -2.8559227751038248,
          -3.6522463410033232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.839006415311301,
          -7,
          -7,
          -3.2566215460697054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6870828446043706,
          -7,
          -3.663795122219408,
          -2.41373889291492,
          -7,
          -7,
          -7,
          -3.778078861937455,
          -3.1863381979963608,
          -3.380482590974981,
          -7,
          -7,
          -3.9488529061997135,
          -3.643057683751453,
          -2.8867220558827404,
          -4.204554060135243,
          -7,
          -2.446314249297305,
          -2.866805903812722,
          -3.9766250520507276,
          -3.957128197676813,
          -3.9412131875853214,
          -3.5392852461514557,
          -3.140642701035818,
          -7,
          -3.435026375328703,
          -3.6755033847279566,
          -3.94733567594874,
          -3.9480215331411035,
          -3.1826048405181293,
          -7,
          -3.2544513953450163,
          -2.9404781721556996,
          -3.6419200744131177,
          -4.024772913079632,
          -3.356647199759322,
          -3.7685966674296387,
          -3.9507541815935037,
          -7,
          -3.1158600345090313,
          -7,
          -3.1997894478774342,
          -7,
          -7,
          -7,
          -3.028887415295375,
          -3.0477074316449433,
          -1.884320592134371,
          -2.3882196509049214,
          -3.1711145276118584,
          -2.683347276399375,
          -7,
          -3.9709509343454243,
          -3.00189098041235,
          -1.9958238337500014,
          -3.6754575416412085,
          -7,
          -3.6466977312993345,
          -7,
          -3.7781874400825854,
          -3.307056053323182,
          -3.0458117739782704,
          -7,
          -3.5573868820595074,
          -7,
          -7,
          -3.3218054838575393,
          -7,
          -7,
          -3.365948058893356,
          -3.9466487339066765,
          -2.2486381513553635,
          -7,
          -7,
          -3.119695681195928,
          -3.4133416823749867,
          -2.7521445200423504,
          -3.4628470358316736,
          -2.4856031384563617,
          -3.190378393991196,
          -2.675740163617544,
          -4.072102778885176,
          -3.050852165633224,
          -7,
          -2.7888262431370867,
          -4.070481175066019,
          -3.574355419939102,
          -3.9455670534423883,
          -7,
          -7,
          -2.432665997464232,
          -4.030073230712518,
          -3.607025878434786,
          -7,
          -4.350751817816416,
          -7,
          -3.6411269328035094,
          -3.94146173934733,
          -1.9264679326220504,
          -7,
          -4.029221394253928,
          -7,
          -3.1447471299618526,
          -2.2501063879694696,
          -3.9653898702151222,
          -3.477458908024095,
          -2.6191841017592505,
          -7,
          -2.505794491644087,
          -3.497758718287268,
          -7,
          -4.019863713967843,
          -3.5950183085200775,
          -4.100198171834132,
          -3.498540278461396,
          -2.691871187043122,
          -2.2393905541211985,
          -3.663842212973794,
          -4.182728418124268,
          -7,
          -3.5816977780482246,
          -3.2838889379760565,
          -3.4428323921463972,
          -2.4070011961359845,
          -7,
          -7,
          -2.750462108781149,
          -3.273734128506228,
          -7,
          -3.9428014663179405,
          -3.1774677878844844,
          -7,
          -7,
          -7,
          -3.169331486173275,
          -3.2421934558224543,
          -3.4333811830320657,
          -3.2321062926146578,
          -3.6544460867173374,
          -3.34001423485948,
          -7,
          -7,
          -7,
          -7,
          -2.808840907011731,
          -3.5157634906474584,
          -3.3979110547414355,
          -7,
          -7,
          -3.6689912701643848,
          -2.7882492001907035,
          -7,
          -7,
          -4.009323393381013,
          -7,
          -7,
          -3.9919787909945836,
          -3.3971140642605224,
          -4.033504172945174,
          -3.551409331791666,
          -4.006594386184137,
          -3.597695185925512,
          -3.2215446370271956,
          -7,
          -1.9129681222406905,
          -3.9586594270529334,
          -7,
          -7,
          -7,
          -3.9564565834098997,
          -3.3510228525841237,
          -7,
          -1.618635156505728,
          -7,
          -4.136355860302406,
          -3.943247125137862,
          -3.8311336003868828,
          -1.3980442589151636,
          -1.8123443497066896,
          -1.669816276965361,
          -1.7366373498507925,
          -2.2795148535261855,
          -2.1294254614235526,
          -3.6955692270361853,
          -2.9265996539070276,
          -2.8074899276501095,
          -2.547335091541293,
          -3.1959688020761106,
          -3.9614685553507862,
          -3.8105013477665297,
          -7,
          -4.23656245185336,
          -7,
          -4.18019758233534,
          -7,
          -2.9615505217181,
          -7,
          -2.6981316277119274,
          -3.2652424686338004,
          -3.1515449513412155,
          -7,
          -7,
          -2.8174079537467183,
          -3.2439883200147483,
          -7,
          -3.427891650708878,
          -1.8081330329577694,
          -2.315062135517979,
          -7,
          -3.4638929889859074,
          -2.808837695380183,
          -3.6438966143222347,
          -7,
          -3.9603756314101584,
          -7,
          -3.6635124704151556,
          -1.4757725130086168,
          -4.083538451230139,
          -2.891139058890472,
          -3.9068809860933524,
          -7,
          -7,
          -3.4865721505183562,
          -3.983581186705791,
          -7,
          -3.94797257924578,
          -4.018492453401473,
          -3.999826247454412,
          -3.396286546068402,
          -7,
          -7,
          -7,
          -3.652294700725204,
          -7,
          -7,
          -4.002079626393121,
          -1.9639775351996702,
          -7,
          -7,
          -7,
          -3.952647169758943,
          -3.12441105858231,
          -2.7895337080535616,
          -7,
          -7,
          -3.2141813086638207,
          -3.2286997099406283,
          -3.45763971382968,
          -1.6430552368565536,
          -2.523876475638131,
          -3.644143050509919,
          -7,
          -2.9424139568201904,
          -1.9978230807457253,
          -2.386854499075695,
          -3.971322245242813,
          -2.8453899045964133,
          -7,
          -7,
          -2.9546765869186435,
          -2.4627118904578484,
          -7,
          -3.036479181663958,
          -2.7864287425245773,
          -4.1820721038573865,
          -3.693287157005656,
          -7,
          -7,
          -3.5109469486729727,
          -2.842609239610562,
          -4.040760524228698,
          -7,
          -7,
          -3.989004615698537,
          -7,
          -2.998912904358786,
          -7,
          -2.6568478474496584,
          -1.8395153297564846,
          -3.0817522444133325,
          -4.042299807413626,
          -3.2962262872611605,
          -2.887096773947783,
          -3.0602120221018287,
          -7,
          -3.0786774240863606,
          -7,
          -2.9309490311675233,
          -2.6682066561591586,
          -1.6675418929848589,
          -7,
          -1.5011516580341902,
          -7,
          -7,
          -4.065915668188592,
          -4.025100961046813,
          -2.784639018187803,
          -2.964924833439139,
          -7,
          -7,
          -7,
          -3.446381812222442,
          -2.601218606857038,
          -3.9586594270529334,
          -7,
          -3.558708570533166,
          -7,
          -3.7155437506051423,
          -3.9589459324939362,
          -3.521399628115376,
          -7,
          -7,
          -2.9181352261663593,
          -3.2700263223122934,
          -3.6254749153872496,
          -3.3678748470760316,
          -3.8756456625927447,
          -7,
          -1.9500953041050464,
          -3.1536335087788894,
          -2.77232170672292,
          -7,
          -3.4994579639204475,
          -7,
          -2.1772178342189354,
          -2.7944880466591697,
          -2.638779011985003,
          -2.7850784829355133,
          -7,
          -7,
          -3.032014034159506,
          -7,
          -3.9672202597829673,
          -7,
          -3.50170953186571,
          -3.957463615729931,
          -1.6412637671866943,
          -3.9391696796251776,
          -7,
          -2.3605621658536116,
          -2.952831174381129,
          -4.430220226321072,
          -3.0546130545568877,
          -3.0361786912074473,
          -1.8552938792308002,
          -2.9433845818511166,
          -3.1422237856667863,
          -2.5988527169476825,
          -2.729434789379367,
          -3.485756906607567,
          -3.499198149854234,
          -2.5762477421696715,
          -2.808421232157792,
          -2.4650249966173132,
          -3.2951124104145713,
          -2.5955592041303617,
          -2.412453408323028,
          -3.376052019499695,
          -3.0115251330042616,
          -4.080373916701309,
          -3.1369909694464804,
          -2.6525525283351086,
          -2.744200307271721,
          -2.9993791357314246,
          -7,
          -3.2251396023011987,
          -3.5279059647530167,
          -2.9789271551990844,
          -2.635773643682964,
          -3.012415374762433,
          -2.9007493580610797,
          -3.1657931554017056,
          -4.3777978331112255,
          -4.0090682761922185,
          -3.3090336675041403,
          -3.5967894619644882,
          -3.284739350248932,
          -3.092979054430626,
          -3.030159555627922,
          -3.27669152884504,
          -3.2934256972649014,
          -1.9945033548218805,
          -1.9117848898005676,
          -2.707842589142404,
          -3.567864134341705,
          -7,
          -2.391460040062417,
          -3.479551317993014,
          -3.7555699806288,
          -3.350684032686936,
          -3.096458111717453,
          -2.9226634989052327,
          -7,
          -3.0071134864303173,
          -7,
          -7,
          -7,
          -4.026410680578774,
          -4.111228898234156,
          -7,
          -2.4258823583037517,
          -2.8106243908861606,
          -3.495683908270132,
          -3.9539528832319233,
          -3.164385905857274,
          -7,
          -2.684354440963692,
          -7,
          -4.0767992665280355,
          -2.9429565299567932,
          -3.3524281101826423,
          -7,
          -3.424629239099311,
          -3.7029841305063393,
          -3.1387572849361476,
          -3.612289256263882,
          -3.277485792612607,
          -4.166193215170067,
          -2.958260192959905,
          -2.857421848243517,
          -7,
          -2.628511537066202,
          -2.680494704168573,
          -4.075364446373285,
          -3.19554385153028,
          -7,
          -4.085861173788451,
          -2.4400589014712017,
          -3.9703313765073305,
          -3.103803720955957,
          -7,
          -7,
          -3.4693310102934105,
          -3.827401585429265,
          -2.284337689848148,
          -3.244771761495295,
          -2.736933594392909,
          -3.473827459679738,
          -2.6079265932033473,
          -3.1381016558472252,
          -2.9148718175400505,
          -4.012288739834607,
          -3.9522595365908204,
          -2.6212392458174656,
          -7,
          -2.770459251514174,
          -2.8614992695002854,
          -3.4885977155245587,
          -7,
          -1.5726392970428134,
          -3.4134255068264925,
          -2.589746565098586,
          -7,
          -7,
          -1.8546190242893335,
          -7,
          -3.493179120682515,
          -2.7982620922768358,
          -3.219846386024361,
          -7,
          -3.3138203683833587,
          -7,
          -7,
          -3.637507923286498,
          -1.4171224151307773,
          -2.656261089071224,
          -3.9404168646816653,
          -3.5657297878311267,
          -3.3250536206057983,
          -3.9766250520507276,
          -3.270174000547579,
          -7,
          -3.2962262872611605,
          -2.9684329117450887,
          -7,
          -3.0464951643347082,
          -4.028855809390444,
          -3.038973211034812,
          -2.8601382850306134,
          -2.5623880418581058,
          -3.1547282074401557,
          -3.981909170090792,
          -7,
          -3.160854246873126,
          -2.180424883222142,
          -3.7768464086952993,
          -7,
          -3.224607048037594,
          -3.217107768805456,
          -7,
          -2.57460013973368,
          -7,
          -3.9502674680135885,
          -2.759532949679413,
          -3.716086853774832,
          -2.0885417282256857,
          -2.568279968276179,
          -3.3870693269320205,
          -2.150289133478534,
          -3.6645479622465467,
          -3.5832271212472397,
          -7,
          -3.3069149600365777,
          -3.9578944872128985,
          -3.7169627421024516,
          -2.885093274841376,
          -3.688419822002711,
          -3.639436681999548,
          -2.9295992181746016,
          -2.074915184686576,
          -4.094121595840561,
          -7,
          -3.1530064771007162,
          -4.0485971584016065,
          -3.182478057717082,
          -3.685024785105714,
          -2.9567399759502986,
          -3.029485236506347,
          -3.512550992904211,
          -3.38070858592305,
          -3.944285220688753,
          -7,
          -2.567152449621088,
          -4.047235915459681,
          -7,
          -3.1420764610732848,
          -2.287551764275916,
          -2.3695531735295496,
          -2.9250063310491754,
          -3.0576460880332545,
          -3.3305490465108214,
          -3.3445494559097377,
          -7,
          -3.303109622057102,
          -7,
          -3.199412322193509,
          -4.110791660771106,
          -3.214479576471884,
          -7,
          -4.002813779224673,
          -7,
          -2.4919428312363485,
          -7,
          -7,
          -7,
          -3.94146173934733,
          -7,
          -7,
          -7,
          -2.821007062479266,
          -3.29928933408768,
          -7,
          -3.9606610072709816,
          -3.965624967109243,
          -7,
          -3.9575594018974796,
          -3.9705793057148506,
          -7,
          -3.1265778156833792,
          -3.9964678902617172,
          -2.8044492222635324,
          -3.5456781497920256,
          -7,
          -7,
          -7,
          -2.4521231704399007,
          -7,
          -7,
          -3.0190944165906677,
          -3.668944734457734,
          -3.6672661193822744,
          -3.764512374855157,
          -3.562728923030002,
          -4.034387783589566,
          -7,
          -7,
          -4.022304622935068,
          -7,
          -3.5043349118024643,
          -3.694868327982456,
          -7,
          -7,
          -3.0277572046905536,
          -7,
          -7,
          -7,
          -3.4915017662373264,
          -7,
          -3.2895889525425965,
          -7,
          -3.228913405994688,
          -3.04028151976861,
          -7,
          -3.4634450317704277,
          -3.4913616938342726,
          -3.4139221340565546,
          -3.0422511354113118,
          -2.2943501822111623,
          -7,
          -7,
          -7,
          -3.4712917110589387,
          -3.0422174200040857,
          -4.007833092701319,
          -7,
          -2.3712526291249394,
          -2.745208243729944,
          -3.2600713879850747,
          -2.7291647896927698,
          -7,
          -2.754061514909023,
          -2.2388441244514645,
          -3.5182506513085,
          -3.624831922757537,
          -3.5613399414589013,
          -7,
          -3.4825877695267677,
          -3.5200903281128424,
          -3.6510840892430116,
          -2.652522609767031,
          -7,
          -7,
          -7,
          -3.5138831856110926,
          -3.7339376451385387,
          -2.7904259173911106,
          -3.2249213455840313,
          -2.709458415950323,
          -7,
          -2.4527445088929922,
          -3.509605704611556,
          -3.2587569725365753,
          -7,
          -2.176438555741045,
          -7,
          -2.2764986103499605,
          -2.4874711044587197,
          -2.621176281775035,
          -2.733598460961339,
          -7,
          -3.0688040746361804,
          -2.460730838531493,
          -3.2502979923398647,
          -2.9584444238670944,
          -3.5626496722119168,
          -3.4820155764507117,
          -3.5397032389478253,
          -3.312811826212088,
          -3.70888808900192,
          -3.4871383754771865,
          -7,
          -3.39750549689802,
          -3.465977368285823,
          -3.4191293077419758,
          -2.926213785839081,
          -7,
          -3.712733859069952,
          -3.306901713537009,
          -7,
          -2.527353661395109,
          -3.45499721730946,
          -3.2012605322507914,
          -2.582675106925388,
          -2.9566485792052033,
          -2.275514596639852,
          -2.9815165943059867,
          -2.6770259566714305,
          -2.3616019353117093,
          -2.128131219761547,
          -3.776119799052988,
          -2.7871567366704566,
          -7,
          -3.1908034736140474,
          -7,
          -3.8107700112343634,
          -3.4753805931433615,
          -7,
          -3.7096938697277917,
          -2.929418925714293,
          -7,
          -3.0210514059168814,
          -7,
          -3.742672771972318,
          -7,
          -3.46553155697355,
          -7,
          -2.3072377598907905,
          -3.4712917110589387,
          -2.782472624166286,
          -7,
          -2.503985128765333,
          -1.9323962220245403,
          -7,
          -7,
          -3.099910730906369,
          -7,
          -2.5495917370235555,
          -7,
          -7,
          -3.6659560294539566,
          -3.2990712600274095,
          -3.3526326642053124,
          -3.5593080109070123,
          -3.198081978306959,
          -2.8910530406646147,
          -7,
          -7,
          -7,
          -3.6065619252763397,
          -2.4615908660130277,
          -3.721068301797159,
          -2.771052717714531,
          -3.4811558708280352,
          -3.5399538416563967,
          -2.6859558157861794,
          -2.6201360549737576,
          -7,
          -7,
          -3.8095597146352675,
          -7,
          -7,
          -7,
          -3.181128699747295,
          -3.4634450317704277,
          -3.4202198777251476,
          -2.938742041271392,
          -3.3202501718864337,
          -3.86350130064145,
          -7,
          -7,
          -3.4690852991231202,
          -7,
          -3.28454352295875,
          -4.141481129270804,
          -2.6597736292477885,
          -7,
          -3.504062882678692,
          -2.764798598430535,
          -2.620171159405891,
          -7,
          -7,
          -3.164253690472463,
          -3.5983527098692836,
          -3.4831592097169795,
          -3.2989621819201167,
          -7,
          -3.6961815871685237,
          -2.9066043717249803,
          -3.3341520529922866,
          -3.6994040818153375,
          -3.142493751023144,
          -3.524915147539867,
          -2.691692123189126,
          -3.2116544005531824,
          -7,
          -7,
          -7,
          -3.5067755366066433,
          -3.196728722623287,
          -7,
          -2.2309352534357063,
          -7,
          -4.032276185782851,
          -7,
          -3.5867560391743902,
          -1.8955162525385503,
          -2.7768222079495963,
          -2.7114456684692576,
          -2.7198834733033834,
          -2.752706802390036,
          -2.7794160989470678,
          -3.3104808914626753,
          -2.5542872095319615,
          -2.6263403673750423,
          -1.9907935114317312,
          -2.8735143535392917,
          -3.5207454715194824,
          -7,
          -7,
          -3.7560652939486863,
          -7,
          -7,
          -7,
          -2.8129740928826443,
          -7,
          -2.7077298138434953,
          -7,
          -2.9130717403092508,
          -3.505421327583281,
          -3.2231063809285874,
          -3.3005954838899636,
          -3.3707905645192677,
          -7,
          -1.8576979104047853,
          -2.7274893420823583,
          -2.867150070839093,
          -7,
          -7,
          -3.028435683944159,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.022732383790295,
          -3.0989204787223303,
          -3.9033613362553186,
          -4.459743367173927,
          -3.4554539687786283,
          -3.511214701136388,
          -7,
          -3.5792117802314993,
          -7,
          -7,
          -3.6628522332647964,
          -2.9194964878630616,
          -2.916559219301114,
          -7,
          -7,
          -7,
          -2.54171788544238,
          -7,
          -2.6328909362366324,
          -7,
          -2.936624892484605,
          -7,
          -7,
          -7,
          -7,
          -2.5878356368963007,
          -3.0580462303952816,
          -3.4574276929464847,
          -3.544811911757776,
          -3.3847714356717837,
          -3.15946692901018,
          -3.9302356527662847,
          -1.863867864960782,
          -7,
          -7,
          -7,
          -2.886001633574488,
          -2.2701934281564258,
          -2.763499300431483,
          -7,
          -3.5850415418704515,
          -7,
          -3.4983105537896004,
          -3.0265332645232967,
          -1.9834639036932529,
          -3.599992177584098,
          -2.8872420998960684,
          -2.3364025484535027,
          -3.494618336168116,
          -7,
          -7,
          -7,
          -3.590953235187986,
          -3.027268042466619,
          -3.711807229041191,
          -7,
          -3.5025636691073636,
          -3.5928426831311002,
          -7,
          -3.1414497734004674,
          -7,
          -1.760441815902545,
          -2.1082991858624305,
          -2.5403294747908736,
          -3.2376275060053974,
          -2.829732493973346,
          -3.486250961710627,
          -3.0109780121747423,
          -7,
          -2.975411826706968,
          -7,
          -3.251273113674373,
          -2.037566277305172,
          -2.170565170268305,
          -1.5011516580341902,
          -7,
          -3.6317987712368653,
          -7,
          -3.2863816107479344,
          -2.2581397562674157,
          -3.639464639040942,
          -2.4733763640581374,
          -7,
          -7,
          -7,
          -3.6099677206466616,
          -1.8247222806425387,
          -3.5129510799724906,
          -7,
          -2.922552466761376,
          -7,
          -2.7029089924616416,
          -7,
          -3.0940050223646494,
          -7,
          -3.2703293970898586,
          -2.539538289847167,
          -7,
          -4.17262627974791,
          -3.7298610470505493,
          -4.332621950244293,
          -7,
          -2.3099341887767135,
          -3.551417465332544,
          -2.5427217148436054,
          -7,
          -2.656936261920949,
          -7,
          -2.110963618614987,
          -2.7538893314598334,
          -2.174384795241664,
          -1.7521469831532483,
          -3.4712917110589387,
          -7,
          -2.2751340914855125,
          -7,
          -3.5364321758220134,
          -7,
          -3.359645792674543,
          -3.509605704611556,
          -1.005398821029378,
          -2.853241780329114,
          -2.9867717342662448,
          -2.8644382137298496,
          -3.6132567330092735,
          -4.3241795297179,
          -7,
          -3.7784406835712327,
          -2.7423406445464393,
          -3.69888313675259,
          -3.361434010908688,
          -2.693721384719475,
          -3.5993371329924893,
          -3.807061239917239,
          -4.353916230920363,
          -3.181851524540416,
          -3.451705434693038,
          -3.0277143177619745,
          -3.899163641477219,
          -3.3942239667723677,
          -3.1083579944145168,
          -4.1204752166965255,
          -3.5828773754300287,
          -7,
          -3.945037523575931,
          -3.72503317572055,
          -3.084325995016827,
          -7,
          -4.377160490206987,
          -3.566781853917318,
          -3.7727860752162554,
          -3.3676354197905107,
          -3.147725497474199,
          -3.3810892828256227,
          -3.6196236950212635,
          -4.371086342494794,
          -3.9549898177161404,
          -7,
          -4.163042046914198,
          -7,
          -3.4469182571714287,
          -3.9478256844424506,
          -3.3600151119450192,
          -3.5597869682005565,
          -3.43681615981553,
          -2.9097061995921036,
          -2.5887025545779663,
          -3.143888758109275,
          -4.375791597685192,
          -3.3706056009381484,
          -3.0449390290609553,
          -3.389839162125274,
          -3.2676409823459154,
          -3.6328909362366324,
          -2.796676072928307,
          -3.0023475200438834,
          -7,
          -2.8499456188070376,
          -3.0540861434129027,
          -7,
          -7,
          -4.415824398888761,
          -7,
          -7,
          -3.1208552310470163,
          -3.363917733183663,
          -4.478038265223136,
          -7,
          -2.909496597905892,
          -7,
          -3.4897382311301004,
          -7,
          -4.807463992788396,
          -3.3122680517480134,
          -4.277609214304091,
          -7,
          -3.767582527077297,
          -7,
          -3.8967466156074058,
          -7,
          -2.9118289775122443,
          -3.9458623244896174,
          -3.2033688982360395,
          -3.5661624108509122,
          -7,
          -2.4169266341952547,
          -3.6249521046631217,
          -3.7825442840100103,
          -3.795858784650379,
          -7,
          -7,
          -3.1142772965615864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.922848330955433,
          -3.3725438007590705,
          -2.4459252900038795,
          -7,
          -3.1609684672648433,
          -2.8685197614044755,
          -3.2105860249051563,
          -3.046007138120972,
          -7,
          -2.726890140741822,
          -7,
          -3.150489469216031,
          -2.8613352388849425,
          -3.5328817194073974,
          -3.66133934000604,
          -2.389636684288985,
          -7,
          -2.3830101417228375,
          -7,
          -7,
          -2.5084261181878986,
          -7,
          -7,
          -2.052870647076631,
          -2.858612380549469,
          -7,
          -3.3259943001703647,
          -7,
          -7,
          -7,
          -2.320720809309493,
          -3.389540902111774,
          -7,
          -7,
          -2.485879093748479,
          -7,
          -2.647627436477339,
          -7,
          -3.0062520513693647,
          -2.90760481522294,
          -7,
          -3.0114294617807817,
          -7,
          -2.758587509600443,
          -3.0812272540419574,
          -2.618962813876879,
          -2.6646419755561257,
          -2.795648331832097,
          -7,
          -2.553680794052605,
          -2.113289239500206,
          -7,
          -7,
          -2.407280034926181,
          -2.9112337273068007,
          -7,
          -2.9596243024569144,
          -7,
          -7,
          -3.411156548296478,
          -3.182414652434554,
          -2.4383109930925673,
          -2.548020694905531,
          -3.502631927572243,
          -2.6060587494103142,
          -7,
          -7,
          -7,
          -3.3203021054568276,
          -7,
          -2.962179852908768,
          -2.6195405190807763,
          -7,
          -3.159115821827769,
          -2.4571751520997434,
          -1.9460098847657648,
          -2.612518962242537,
          -7,
          -3.0756429911291083,
          -3.7283537820212285,
          -3.2942457161381182,
          -3.585686278452497,
          -2.9159601514735285,
          -3.2445863372491552,
          -3.5949447366950835,
          -3.577836341292744,
          -7,
          -7,
          -2.955670573321319,
          -7,
          -3.0774890305065017,
          -3.4211101297934343,
          -2.7320094709078133,
          -2.754157142891773,
          -3.186904991316638,
          -3.319915339824355,
          -3.368968325638322,
          -2.7168377232995247,
          -7,
          -2.509099081939545,
          -7,
          -2.7925190299131533,
          -2.8069196184690592,
          -3.3853083013863463,
          -7,
          -3.6264430253312945,
          -3.570192561095726,
          -2.7099096642611826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9009626645494517,
          -7,
          -2.86844850133673,
          -7,
          -3.532117116248804,
          -7,
          -7,
          -3.0678145111618402,
          -7,
          -2.9893608137762473,
          -3.6111920608684343,
          -3.069098604983803,
          -7,
          -7,
          -3.059689611271879,
          -7,
          -2.9217607710071607,
          -7,
          -7,
          -3.3263102531878377,
          -3.066450169242703,
          -3.061954844073114,
          -3.4620234446356335,
          -3.7102020146553847,
          -3.220631019448092,
          -7,
          -7,
          -3.6714505542124947,
          -7,
          -3.5407047833107623,
          -2.7054360465852505,
          -7,
          -7,
          -7,
          -2.6847705799856993,
          -7,
          -7,
          -7,
          -3.2495652118253466,
          -3.833083334178343,
          -2.8754230247469814,
          -3.4982416126858915,
          -2.982605136861189,
          -7,
          -7,
          -7,
          -3.282045059431361,
          -2.9927944356352274,
          -7,
          -3.200371635102761,
          -7,
          -3.474507639116976,
          -7,
          -3.434265430560304,
          -1.793728772440664,
          -3.760497875226527,
          -3.222369590552542,
          -2.9884118350354,
          -7,
          -3.486784571399042,
          -3.764250875438773,
          -2.8305303467241485,
          -3.8303319934519617,
          -3.793021659845983,
          -1.4426505265509397,
          -2.2936638342808666,
          -2.730562063805724,
          -3.297030604235048,
          -2.6159500516564007,
          -1.5574823964177655,
          -2.740219097334925,
          -7,
          -7,
          -3.0386769213410014,
          -7,
          -3.0708520677922007,
          -2.999637937051224,
          -3.018423082826786,
          -7,
          -2.9782457508063915,
          -2.9094668791881264,
          -1.8910810795189281,
          -2.583132067189918,
          -3.330819466495837,
          -3.8268519478206438,
          -7,
          -2.773609928133165,
          -2.7967877457365438,
          -2.87102128558996,
          -2.720647844820754,
          -7,
          -2.8069935136821074,
          -2.445496837517327,
          -7,
          -7,
          -7,
          -3.7741518589547103,
          -3.5033820634737327,
          -3.656960182742849,
          -3.4848690327204026,
          -3.776773802412107,
          -7,
          -3.4207256768599095,
          -7,
          -7,
          -1.9343607038780624,
          -7,
          -3.906981153228854,
          -3.6652963707912574,
          -7,
          -3.5826314394896364,
          -7,
          -7,
          -3.2653233064596994,
          -7,
          -3.4876332174568763,
          -7,
          -3.43435596238644,
          -3.8053649074664455,
          -2.511780557218919,
          -3.4712428012687067,
          -2.902788288833299,
          -7,
          -3.256702871095842,
          -7,
          -4.200001865406602,
          -3.7707783961691477,
          -7,
          -3.9050399280762114,
          -7,
          -3.045993186453467,
          -3.0096869125872336,
          -7,
          -4.290101420759143,
          -3.8090881313463463,
          -7,
          -7,
          -3.567790710533536,
          -7,
          -7,
          -3.3595192868531116,
          -3.139024042846853,
          -2.8419848045901137,
          -7,
          -3.307067950661298,
          -3.825491029879431,
          -3.1350053669438873,
          -2.902693659213221,
          -7,
          -7,
          -2.797209815771563,
          -3.0450294373885924,
          -3.3831867994748994,
          -3.5141491344754376,
          -2.6061663146076204,
          -4.191681515027636,
          -7,
          -3.2446658144774316,
          -2.9566485792052033,
          -3.6946511535901805,
          -3.825945143203848,
          -2.911370707116138,
          -3.9742352774430265,
          -7,
          -3.8046845149069406,
          -2.7391938443032537,
          -3.2226124360573976,
          -7,
          -7,
          -3.7590480609558354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6130825181863484,
          -3.0762357711830832,
          -3.1166298787188618,
          -7,
          -7,
          -4.112437417321844,
          -7,
          -3.4807253789884878,
          -3.830203598925704,
          -7,
          -4.082282589912437,
          -3.464042205438811,
          -7,
          -7,
          -2.922000596884898,
          -7,
          -3.062281069972644,
          -3.8629657589777624,
          -7,
          -3.4735599546008133,
          -7,
          -3.8490506905695123,
          -1.7820970697778085,
          -2.1681120183768696,
          -2.0250611923107478,
          -2.0278119784740323,
          -2.6722210445716033,
          -7,
          -2.7177218382259345,
          -7,
          -3.4638929889859074,
          -7,
          -2.4261044280965076,
          -3.18447848916984,
          -3.7824009524965296,
          -7,
          -2.756857889127802,
          -7,
          -4.388385425718033,
          -7,
          -4.026778328659529,
          -2.752592026136236,
          -7,
          -3.5287881917748964,
          -3.9651546459869254,
          -3.837840861655523,
          -2.846168355771784,
          -7,
          -3.3819569700273067,
          -3.3508938095043144,
          -7,
          -3.683542319957651,
          -3.7943486038960827,
          -3.6991870973082492,
          -7,
          -4.155882358081815,
          -2.54205440207046,
          -7,
          -3.7782236267660965,
          -2.74404048632376,
          -7,
          -3.1999118208915673,
          -7,
          -3,
          -7,
          -3.495127881242933,
          -1.80976494807886,
          -2.0283388232077804,
          -3.7591388162811663,
          -3.1132189243125046,
          -7,
          -2.865661253706322,
          -7,
          -7,
          -3.78660947264866,
          -7,
          -3.4764693239263837,
          -7,
          -7,
          -7,
          -3.176830538595021,
          -2.1057739676278633,
          -3.975914090049001,
          -5.240349526742219,
          -7,
          -2.322931837111811,
          -3.4967221329867297,
          -7,
          -3.288323763370488,
          -2.731515509813047,
          -1.9365137424788934,
          -7,
          -2.1428272945383364,
          -3.282924073246148,
          -3.2835273648616936,
          -3.0749626431316264,
          -3.305064611772354,
          -3.762378429311964,
          -2.6572765496426967,
          -3.0740236540366594,
          -2.856677381260537,
          -7,
          -7,
          -7,
          -7,
          -3.0280965768121466,
          -7,
          -7,
          -7,
          -4.008216801589691,
          -7,
          -7,
          -3.2307407859604305,
          -7,
          -7,
          -7,
          -3.336142736652067,
          -7,
          -3.7522570347660578,
          -2.463485774251991,
          -2.7890516223748403,
          -7,
          -7,
          -3.484442207642407,
          -3.8805277781988052,
          -3.735319392367857,
          -2.6412036063023283,
          -2.4530289344127074,
          -3.4871030080369696,
          -7,
          -7,
          -3.7737864449811935,
          -3.53198955141255,
          -3.313709074655722,
          -2.411782576575266,
          -7,
          -3.784759894664005,
          -2.4696939810474294,
          -3.3049928927594086,
          -3.8494194137968996,
          -7,
          -7,
          -2.405908938343313,
          -3.829175073917088,
          -3.9084850188786495,
          -3.8435442119456353,
          -3.8699446621420774,
          -3.3415993735009404,
          -7,
          -3.3921867532870635,
          -7,
          -7,
          -2.9232440186302764,
          -7,
          -7,
          -3.6317987712368653,
          -7,
          -1.2335807862202566,
          -1.3722855490837138,
          -7,
          -3.9684452044268173,
          -3.203304916138483,
          -7,
          -3.4583356259919475,
          -7,
          -4.043755126968679,
          -3.278982116865443,
          -3.312811826212088,
          -3.1997551772534747,
          -3.8998751960210107,
          -7,
          -7,
          -7,
          -3.714706878813469,
          -2.296528080715987,
          -2.3873898263387296,
          -3.2796669440484556,
          -7,
          -3.343858552512142,
          -3.570367785823503,
          -3.8100859701678447,
          -7,
          -2.9832126912055705,
          -3.15904054763018,
          -3.0535777871252825,
          -7,
          -3.8166389448984614,
          -7,
          -3.3425707105283156,
          -2.7563317673210577,
          -4.026574118150334,
          -3.1740598077250253,
          -7,
          -7,
          -7,
          -2.782759192623997,
          -2.105961796878401,
          -3.0298570495267563,
          -1.388158829606327,
          -2.530768705139248,
          -2.2272614893778035,
          -7,
          -7,
          -4.34964656951508,
          -7,
          -7,
          -7,
          -7,
          -4.461963486124938,
          -7,
          -4.34552075797636,
          -4.432819692596553,
          -7,
          -7,
          -7,
          -7,
          -4.719497016610582,
          -3.860128296542201,
          -7,
          -7,
          -4.17133633956286,
          -7,
          -7,
          -7,
          -5.397383755657276,
          -7,
          -7,
          -7,
          -7,
          -4.706530030980853,
          -7,
          -7,
          -4.510692430840357,
          -7,
          -4.7235705929867065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.667219398443936,
          -2.9696821057315477,
          -7,
          -4.2404850620891335,
          -3.6382229411517786,
          -7,
          -7,
          -7,
          -3.9934484777722394,
          -2.5067640292211575,
          -2.9728711024944356,
          -3.313774975701645,
          -3.5099771967991025,
          -2.8276636767360315,
          -7,
          -4.514853112350159,
          -7,
          -3.296665190261531,
          -7,
          -3.984647309056901,
          -7,
          -7,
          -3.735808937174781,
          -4.032978416988432,
          -4.807879046479349,
          -7,
          -1.9593016307081295,
          -7,
          -3.6186301025123226,
          -7,
          -4.937302195705841,
          -7,
          -4.339670024244455,
          -7,
          -7,
          -4.510732627784333,
          -4.217424718200872,
          -7,
          -7,
          -7,
          -3.8852069687488022,
          -4.557158182475332,
          -3.807535028068853,
          -3.2876291344721302,
          -4.503845136631561,
          -7,
          -4.05677530559286,
          -7,
          -7,
          -3.883642511234492,
          -3.5543680009900878,
          -7,
          -3.4653828514484184,
          -7,
          -7,
          -7,
          -3.7633031783639455,
          -2.625255273095499,
          -3.109641813636512,
          -7,
          -3.860996436757196,
          -3.591748122447564,
          -7,
          -1.8508342033943512,
          -7,
          -3.737788791709675,
          -7,
          -3.276085047995312,
          -3.02123525372655,
          -7,
          -2.2907373533959543,
          -7,
          -7,
          -2.9565176821885184,
          -7,
          -7,
          -4.054766217838991,
          -7,
          -7,
          -3.855034316675884,
          -2.859338479128867,
          -7,
          -4.193986763085695,
          -7,
          -7,
          -3.1887151855781966,
          -4.413859458706849,
          -7,
          -7,
          -2.4148655692180863,
          -2.037963736953456,
          -7,
          -2.7696937519421607,
          -7,
          -3.8435442119456353,
          -2.807271876243159,
          -7,
          -7,
          -7,
          -3.841234295506041,
          -7,
          -7,
          -3.850339854583479,
          -3.522900459461583,
          -2.8981078474672053,
          -3.3815963601406294,
          -7,
          -7,
          -7,
          -2.8308353288166703,
          -2.3884564527002667,
          -7,
          -4.286613631657004,
          -7,
          -7,
          -7,
          -2.9187873026217193,
          -2.5573136775643146,
          -3.9157690659836843,
          -7,
          -7,
          -7,
          -4.093561757565289,
          -2.3452336581560345,
          -3.7512020945883533,
          -7,
          -3.2727695865517594,
          -3.4657545198338777,
          -7,
          -7,
          -3.159529596862398,
          -3.2499860332676347,
          -2.2654190507574126,
          -2.197510282797415,
          -2.5418185152424937,
          -7,
          -3.333850145102545,
          -3.528980940272137,
          -3.5083411471001154,
          -7,
          -7,
          -3.8256857080217586,
          -2.864733511015573,
          -7,
          -7,
          -7,
          -3.8129801660394804,
          -7,
          -4.292134185904887,
          -7,
          -7,
          -2.9256880250155644,
          -3.519696767159853,
          -2.95547394379502,
          -3.496652939250918,
          -3.007442945755542,
          -7,
          -1.8336560803707163,
          -2.742506925762298,
          -7,
          -2.98617435524234,
          -3.376455288899979,
          -3.2189291850880872,
          -3.303383275046943,
          -2.2130748253088512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1670217957902564,
          -2.645211668286901,
          -7,
          -7,
          -7,
          -2.9036325160842376,
          -7,
          -7,
          -3.8448498008066387,
          -3.9584444238670944,
          -7,
          -3.215373152783422,
          -7,
          -3.765072201102792,
          -7,
          -7,
          -7,
          -2.857793512133298,
          -7,
          -3.327086350362379,
          -3.939918420369057,
          -7,
          -3.2952921430163506,
          -7,
          -7,
          -7,
          -7,
          -3.391508491461765,
          -3.543012046377035,
          -7,
          -7,
          -7,
          -2.311223910432456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.26528962586083,
          -7,
          -3.4672824476181416,
          -7,
          -7,
          -7,
          -3.2274753434823706,
          -3.2884728005997825,
          -7,
          -7,
          -3.2081725266671217,
          -3.252610340567373,
          -7,
          -3.884946331007737,
          -2.220798618877941,
          -3.1997551772534747,
          -3.4656058906462865,
          -3.3249320097737254,
          -7,
          -7,
          -7,
          -2.817036226050029,
          -3.413132050434872,
          -3.307923703611882,
          -2.304048889849097,
          -2.139508685967779,
          -2.3384564936046046,
          -3.248463717551032,
          -2.610234175334389,
          -1.9053114469859016,
          -2.428828740086269,
          -7,
          -7,
          -2.6376147963188186,
          -7,
          -3.6008671469564506,
          -3.261976191397813,
          -3.3207692283386865,
          -3.526339277389844,
          -2.696356388733332,
          -3.0475863570743504,
          -2.209738359614102,
          -2.770667949557633,
          -7,
          -7,
          -7,
          -3.2154154693070747,
          -2.6962471460005455,
          -2.9229612441339685,
          -3.171433900943008,
          -7,
          -7,
          -2.752158242910885,
          -7,
          -7,
          -7,
          -7,
          -3.3422252293607904,
          -3.3892547068486483,
          -3.565596964778962,
          -7,
          -7,
          -3.0942381380341772,
          -7,
          -3.820398522703982,
          -2.0702788512520054,
          -7,
          -3.590507462008583,
          -4.226200221973549,
          -7,
          -3.540954808926133,
          -7,
          -7,
          -3.0953188246674084,
          -7,
          -3.2949069106051923,
          -7,
          -7,
          -7,
          -3.158060793936605,
          -3.070037866607755,
          -2.8790958795000727,
          -7,
          -3.455030221014262,
          -7,
          -4.067145278885395,
          -7,
          -7,
          -7,
          -7,
          -3.55834850876162,
          -3.002943206876325,
          -7,
          -3.708194203283994,
          -7,
          -7,
          -7,
          -3.548635059814752,
          -7,
          -7,
          -2.9523080096621253,
          -2.892412650659219,
          -3.5542814381383723,
          -3.329194415088451,
          -3.2812606870550125,
          -7,
          -3.4239009185284166,
          -3.3264382767957286,
          -7,
          -7,
          -3.049734732406212,
          -3.3718986947787415,
          -3.2625301889897145,
          -7,
          -3.0021930692800325,
          -4.064562806279621,
          -7,
          -2.955046014722926,
          -7,
          -4.397148872562535,
          -7,
          -2.9016762313263755,
          -7,
          -7,
          -3.342620042553348,
          -2.7674650825294926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9607268366171704,
          -2.9132839017604186,
          -2.9581983746214435,
          -7,
          -7,
          -7,
          -7,
          -3.2730012720637376,
          -7,
          -7,
          -3.4207806195485655,
          -7,
          -7,
          -7,
          -3.3521342604879,
          -7,
          -2.9030899869919438,
          -7,
          -3.1300119496719043,
          -3.249442961442582,
          -7,
          -7,
          -1.8949899099598944,
          -2.070037866607755,
          -2.0459022312658655,
          -1.9230610679225635,
          -2.5062042744413957,
          -3.318689269947746,
          -3.1251756988681234,
          -7,
          -3.2161659022859928,
          -7,
          -2.3527611917238307,
          -2.811127970852324,
          -7,
          -7,
          -2.8663327887710035,
          -7,
          -7,
          -7,
          -7,
          -3.1879157379875953,
          -7,
          -3.4743619760326307,
          -7,
          -3.4324882557705063,
          -2.595496221825574,
          -7,
          -3.485153349903652,
          -3.4077307280263356,
          -7,
          -7,
          -7,
          -3.4644895474339714,
          -7,
          -7,
          -3.2009872191631663,
          -7,
          -3.2610248339923973,
          -3.115943176939055,
          -7,
          -7,
          -7,
          -3.151216578856456,
          -7,
          -7,
          -2.0649831337672087,
          -2.1316186643491255,
          -7,
          -2.9559281568969507,
          -7,
          -2.7431960814487013,
          -7,
          -7,
          -7,
          -7,
          -3.2591158441850663,
          -7,
          -7,
          -7,
          -3.670245853074124,
          -2.070389735763648,
          -7,
          -7,
          -7,
          -2.212409579610376,
          -3.3226327116922234,
          -7,
          -2.916980047320382,
          -2.946697837245742,
          -2.441040189834335,
          -7,
          -2.339986239750892,
          -3.1992064791616577,
          -2.8998205024270964,
          -2.7706065781900606,
          -2.9733587998863977,
          -7,
          -3.243534101832062,
          -2.5129214565297655,
          -3.141709370973691,
          -7,
          -7,
          -7,
          -7,
          -2.871183608328498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2865126055296376,
          -7,
          -7,
          -7,
          -3.108684384591605,
          -7,
          -3.8499841820942704,
          -2.350829273582968,
          -3.129359328564904,
          -7,
          -7,
          -2.8068580295188172,
          -4.041984501486787,
          -3.2234959409623944,
          -2.866962102446818,
          -2.324830980134619,
          -3.2095150145426308,
          -3.442793225939769,
          -7,
          -7,
          -2.9426693313867003,
          -3.307923703611882,
          -2.037540321681782,
          -7,
          -3.2821687783046416,
          -2.378563063331533,
          -3.274619619091238,
          -3.461348433647983,
          -7,
          -7,
          -2.705458565808605,
          -7,
          -7,
          -7,
          -4.0942805092610115,
          -3.255272505103306,
          -7,
          -4.312008007838723,
          -7,
          -3.362293937964231,
          -3.226771698912882,
          -3.0115704435972783,
          -7,
          -7,
          -1.2335807862202566,
          -7,
          -1.761551988564182,
          -7,
          -4.381987436429171,
          -3.9351544472161684,
          -7,
          -7,
          -7,
          -3.3604040547299387,
          -3.7272158209084925,
          -7,
          -2.2900346113625183,
          -2.8757555792580547,
          -7,
          -7,
          -7,
          -3.3145693943004555,
          -2.868252475839426,
          -2.544245271237821,
          -7,
          -7,
          -4.262094964674063,
          -3.5626836386190908,
          -4.5335513782347565,
          -7,
          -3.3912880485952974,
          -3.7224117833264954,
          -3.0757901954968463,
          -7,
          -7,
          -7,
          -3.66576855071938,
          -3.384353414137506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4994579639204475,
          -2.2534591643398376,
          -2.876217840591642,
          -1.8926510338773004,
          -2.2479732663618064,
          -2.6538994379074516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.586007483440228,
          -7,
          -7,
          -7,
          -4.728556675966476,
          -5.002878497871973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.546801682361427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.782809322668878,
          -4.192567453336546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325269301733074,
          -2.895606686165933,
          -7,
          -3.9564381178018633,
          -7,
          -7,
          -7,
          -7,
          -4.9374175814771375,
          -2.4707758982656967,
          -2.7283537820212285,
          -4.158422806584882,
          -3.9267819449923036,
          -3.110669438809445,
          -7,
          -4.154484837032048,
          -7,
          -3.247236549506764,
          -7,
          -4.3941889232411695,
          -7,
          -7,
          -3.741392368925786,
          -4.790636961931703,
          -5.707437312758631,
          -7,
          -2.050460012950964,
          -2.9947569445876283,
          -3.784935706040011,
          -7,
          -7,
          -4.117702061209315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.205664407371687,
          -4.503708989891708,
          -3.04941186087108,
          -3.5341726044491257,
          -4.3595177052971295,
          -7,
          -4.119335472875041,
          -7,
          -3.7063763558396903,
          -4.31940798167448,
          -3.3660492098002353,
          -7,
          -2.919862253555538,
          -7,
          -7,
          -7,
          -3.7077546411086244,
          -2.2107897277615662,
          -3.215637563435062,
          -7,
          -7,
          -3.323308364436474,
          -7,
          -1.6796833556134474,
          -3.2692793897718984,
          -3.3525683861793083,
          -7,
          -3.659019262122172,
          -3.0238283925348863,
          -7,
          -2.8209891764160493,
          -7,
          -7,
          -2.720159303405957,
          -7,
          -7,
          -3.8553374044695405,
          -7,
          -3.350829273582968,
          -7,
          -2.6123021101568566,
          -7,
          -7,
          -7,
          -7,
          -4.308137378638039,
          -4.144338922661946,
          -7,
          -7,
          -2.690970914278475,
          -2.0155940853488956,
          -7,
          -2.6094876898532853,
          -7,
          -2.7466341989375787,
          -3.047366505192591,
          -7,
          -7,
          -3.5547313766759667,
          -7,
          -7,
          -7,
          -7,
          -3.095169351431755,
          -2.8573324964312685,
          -2.7841892053809607,
          -3.558468562523795,
          -7,
          -7,
          -2.62446961504493,
          -2.165738797864829,
          -7,
          -4.18098558078673,
          -7,
          -7,
          -7,
          -2.4750104632891783,
          -2.766089567870567,
          -3.130976691605617,
          -3.707485011967474,
          -7,
          -7,
          -7,
          -1.9093420383613084,
          -3.851441814672055,
          -7,
          -2.8217754671834636,
          -3.3988077302032647,
          -7,
          -7,
          -3.1690863574870227,
          -3.411570193966152,
          -2.4442092079896605,
          -2.0572856444182146,
          -2.7972879125492702,
          -3.6110857334148725,
          -3.3432115901797474,
          -3.111262513659065,
          -3.475053440975798,
          -7,
          -7,
          -7,
          -2.5284024379536176,
          -7,
          -7,
          -7,
          -3.366236123718293,
          -7,
          -4.2431869241314715,
          -7,
          -4.19506899646859,
          -3.2815357045635154,
          -3.7599698575543075,
          -2.818665685531947,
          -7,
          -2.770557474850995,
          -7,
          -1.9098433138304707,
          -2.6830470382388496,
          -7,
          -2.5150786750759226,
          -2.6924062348336304,
          -2.911512714632127,
          -3.373480429443243,
          -1.9667282209873844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2005769267548483,
          -2.1566356727947436,
          -7,
          -7,
          -7,
          -2.3059373301587254,
          -7,
          -7,
          -3.1487568513217923,
          -3.6688826790912064,
          -7,
          -3.7547304690237535,
          -7,
          -3.2161659022859928,
          -7,
          -7,
          -7,
          -3.2350763753367193,
          -3.04766419460156,
          -2.86411536851903,
          -3.656194062179186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4483971034577676,
          -7,
          -7,
          -7,
          -3.1851170011425913,
          -7,
          -7,
          -7,
          -2.9385197251764916,
          -3.305673745669693,
          -3.2112540676178725,
          -7,
          -3.655231838648391,
          -7,
          -7,
          -7,
          -3.417424239697793,
          -2.7983743766815614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3084399050774618,
          -1.3735599382065473,
          -7,
          -3.5596672783880576,
          -3.474290282608044,
          -7,
          -7,
          -7,
          -3.3710678622717363,
          -7,
          -7,
          -2.4532205978433916,
          -3.578524605274993,
          -7,
          -7,
          -3.0613267969905547,
          -1.9749528248035986,
          -3.5190400386483445,
          -3.27630858685576,
          -7,
          -2.911157608739977,
          -7,
          -3.356750413762137,
          -3.5106790310322102,
          -3.243534101832062,
          -7,
          -7,
          -3.066325925362038,
          -2.411878599849826,
          -3.09968064110925,
          -7,
          -2.993656628615462,
          -7,
          -3.136351439310171,
          -3.4313637641589874,
          -2.6636189984922343,
          -3.247138226100887,
          -7,
          -3.0865970852460154,
          -2.649902510995987,
          -3.5691397254724593,
          -7,
          -7,
          -7,
          -2.7112044607530303,
          -2.7992026563005252,
          -3.710963118995276,
          -7,
          -7,
          -2.7557055070714362,
          -7,
          -3.6033609243483804,
          -2.6917759089147046,
          -7,
          -7,
          -3.903316655096336,
          -7,
          -3.689131197234498,
          -7,
          -7,
          -2.963916551690292,
          -7,
          -3.529558673021163,
          -7,
          -3.4308809464528913,
          -7,
          -2.912449813454987,
          -7,
          -3.1705550585212086,
          -7,
          -3.3558596798223332,
          -7,
          -3.6395196909414667,
          -7,
          -7,
          -7,
          -3.643945912748067,
          -3.7015679850559273,
          -3.809896246602439,
          -7,
          -3.9226476204660505,
          -3.264463634204881,
          -7,
          -7,
          -3.7790912038454993,
          -7,
          -3.0971705115554466,
          -2.4060076304200706,
          -2.4930776470451126,
          -3.1005018312376387,
          -3.549861188471943,
          -3.5216610151120733,
          -3.594060901270418,
          -3.3080305542661055,
          -3.5261291883290653,
          -7,
          -7,
          -3.6795187436957892,
          -3.7870351820262234,
          -3.0605719396477284,
          -7,
          -3.3982377085456186,
          -4.4729976570334395,
          -7,
          -3.2803962380601424,
          -7,
          -4.051028114111754,
          -7,
          -7,
          -3.823474229170301,
          -7,
          -7,
          -2.6983905586437853,
          -3.2701351427224816,
          -7,
          -3.488409688903198,
          -4.41418756673709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7611103580716736,
          -2.7243304944020563,
          -3.11293997608408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.969509098596567,
          -7,
          -7,
          -7,
          -3.459102397252217,
          -7,
          -2.699693225955115,
          -7,
          -7,
          -7,
          -7,
          -3.0308020487722676,
          -2.100111959529749,
          -2.1745091280458064,
          -2.283890902225102,
          -2.0701900332571244,
          -1.400662867007511,
          -3.5435714239623652,
          -3.0161882247883973,
          -3.532117116248804,
          -3.184123354239671,
          -7,
          -2.3070203593531686,
          -1.9861128136696526,
          -7,
          -7,
          -3.19554385153028,
          -7,
          -3.637169394272538,
          -7,
          -7,
          -3.029301831194811,
          -7,
          -3.8678797834583794,
          -3.1110607820698206,
          -7,
          -7,
          -7,
          -2.8039445940719196,
          -3.1212314551496214,
          -7,
          -7,
          -7,
          -3.0141003215196207,
          -7,
          -3.7616271845615827,
          -2.4035018157410506,
          -7,
          -3.0324844498918937,
          -1.8304467756482372,
          -3.483587296968894,
          -2.2833012287035497,
          -3.547774705387823,
          -2.0407688481126254,
          -3.223625716693796,
          -2.940267391446012,
          -2.678732554599579,
          -3.2079035303860515,
          -7,
          -3.400624321661767,
          -7,
          -3.2894551656702844,
          -7,
          -7,
          -3.525563058270067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1868353002613485,
          -3.5073160400764136,
          -7,
          -4.812065655625775,
          -7,
          -2.448448654823714,
          -3.068309574745689,
          -7,
          -7,
          -3.2016701796465816,
          -2.7721382666011203,
          -3.6343764940883676,
          -2.120059547061975,
          -3.17507672117621,
          -3.477555332198981,
          -1.6520756165766066,
          -3.0403385718205698,
          -3.0025979807199086,
          -2.2404105625136093,
          -1.331568783566107,
          -3.3868121789710552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.076276255404218,
          -7,
          -3.261381837285746,
          -3.2684024402609575,
          -7,
          -3.9376683143990054,
          -7,
          -7,
          -7,
          -7,
          -2.91879769132346,
          -7,
          -3.787779170797312,
          -2.2595938788859486,
          -3.0884180065825073,
          -7,
          -7,
          -3.5237464668115646,
          -3.61714018800084,
          -3.1303873817883154,
          -3.2913318435509678,
          -3.113887669957648,
          -2.3730499983581987,
          -3.320457868916649,
          -7,
          -3.0242119239259035,
          -2.7024305364455254,
          -2.6957204091477363,
          -2.2421271437282835,
          -7,
          -2.7427251313046983,
          -2.6069185259482914,
          -2.00445572629165,
          -2.8549130223078554,
          -7,
          -7,
          -2.485957905922165,
          -3.2990712600274095,
          -3.7272158209084925,
          -7,
          -4.185910285040714,
          -3.7167960423664437,
          -7,
          -3.7387607453279568,
          -7,
          -3.5700757053216043,
          -3.5100085129402347,
          -3.6530194510996132,
          -4.065915668188592,
          -3.2863816107479344,
          -1.3722855490837138,
          -1.761551988564182,
          -7,
          -2.911867530405052,
          -3.991152209805438,
          -2.677172266985172,
          -7,
          -3.474798818800631,
          -7,
          -7,
          -3.5280807144913133,
          -7,
          -2.471780506250551,
          -3.714078164981856,
          -7,
          -2.972758083903539,
          -7,
          -3.278810741204461,
          -7,
          -3.287129620719111,
          -3.227758196110915,
          -7,
          -3.8723952147066427,
          -3.6530194510996132,
          -4.091414960840913,
          -7,
          -2.989598116961936,
          -3.7987927741252503,
          -3.33046450572258,
          -7,
          -7,
          -7,
          -3.1789050382803548,
          -3.4614985267830187,
          -7,
          -3.6729286904427223,
          -7,
          -7,
          -3.707229419327294,
          -2.5185139398778875,
          -2.951823035315912,
          -1.5055268065274119,
          -2.3957007311030742,
          -2.0021005820003483,
          -2.5759867517113815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.141439320940584,
          -3.690650079222292,
          -7,
          -7,
          -7,
          -7,
          -5.0089321523893044,
          -4.308809768641485,
          -7,
          -4.696871643812066,
          -4.458698268402751,
          -7,
          -7,
          -7,
          -5.392549232850399,
          -7,
          -4.563884341080175,
          -7,
          -7,
          -4.682271463859843,
          -7,
          -7,
          -4.491767779403694,
          -7,
          -4.700270937356437,
          -7,
          -4.259593878885949,
          -3.6555225962534177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8771408897848207,
          -7,
          -3.820259857910027,
          -3.5347873586294916,
          -7,
          -7,
          -7,
          -3.8801447410266907,
          -1.7046012485275561,
          -1.7501619167867744,
          -3.1787036296790685,
          -3.695900837452605,
          -3.0124067613119134,
          -7,
          -3.7774413227977166,
          -7,
          -2.242486213183962,
          -7,
          -7,
          -7,
          -7,
          -3.3898227579994757,
          -4.093593967828657,
          -5.231514614715537,
          -3.519434194913703,
          -2.5284492142455366,
          -2.9274986816932005,
          -3.569654763999852,
          -7,
          -7,
          -3.4629367877312602,
          -4.280965148097093,
          -7,
          -3.258084440350568,
          -4.472024697700282,
          -3.624660176608305,
          -7,
          -3.800739983505454,
          -7,
          -2.9668454236549167,
          -4.045362102653348,
          -3.5630061870617937,
          -3.293040522188929,
          -4.013941466909771,
          -3.315550534421905,
          -3.3609796041735946,
          -7,
          -7,
          -3.5933263522096612,
          -3.8718063644587293,
          -7,
          -3.48826861549546,
          -7,
          -7,
          -7,
          -3.903496947335859,
          -2.4287645323832137,
          -2.759082706355693,
          -7,
          -7,
          -2.664659711634453,
          -7,
          -1.4575791469957626,
          -7,
          -3.066645337841675,
          -7,
          -2.8358507120379075,
          -2.7456602257060756,
          -3.5512059437479064,
          -3.675044735955893,
          -7,
          -3.369215857410143,
          -2.251029538523903,
          -7,
          -7,
          -7,
          -7,
          -3.5630061870617937,
          -7,
          -2.77232170672292,
          -7,
          -3.3309883935203723,
          -7,
          -7,
          -4.624024124647861,
          -4.062038134817108,
          -7,
          -7,
          -7,
          -1.7838157793202036,
          -3.578524605274993,
          -2.4363217001397333,
          -7,
          -2.8452014311543485,
          -2.3818883055109636,
          -7,
          -7,
          -7,
          -3.143014800254095,
          -3.8687032022785366,
          -7,
          -7,
          -3.591621038213319,
          -7,
          -2.870501444747579,
          -3.3103746420476123,
          -3.9601138720366857,
          -7,
          -2.6048018496313974,
          -2.286830571313662,
          -7,
          -4.219663100737022,
          -7,
          -7,
          -7,
          -2.1627697069974556,
          -2.6647563148321183,
          -3.4370367191134883,
          -3.3363262895451586,
          -3.623456048069934,
          -7,
          -7,
          -2.363235804483694,
          -7,
          -7,
          -2.8965262174895554,
          -2.9085824926714285,
          -7,
          -7,
          -3.0407506394093176,
          -3.0020412051534886,
          -1.8723549587518664,
          -2.733999286538387,
          -2.156012553918777,
          -3.1375914523814146,
          -7,
          -3.601951404133522,
          -2.676954760854566,
          -7,
          -3.3096301674258988,
          -3.5943925503754266,
          -2.7925317619013077,
          -7,
          -7,
          -7,
          -3.2712606104874364,
          -7,
          -3.4149852789740165,
          -7,
          -3.9314832970220768,
          -2.7305861876933264,
          -7,
          -2.9514184759183264,
          -7,
          -2.86123561863404,
          -7,
          -1.9781678314360502,
          -2.0731682622651015,
          -7,
          -2.8825245379548803,
          -2.941511432634403,
          -3.5870371177434555,
          -3.0394775730947807,
          -2.563955464995813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3029417866392774,
          -7,
          -3.5106790310322102,
          -3.529173603261723,
          -2.1256619582273957,
          -7,
          -3.400710636773231,
          -3.6265456590271294,
          -3.041025918107178,
          -3.320405953970451,
          -3.3737699294162615,
          -7,
          -3.00774777800074,
          -7,
          -7,
          -3.4778444763387584,
          -2.7753868598238993,
          -2.9591606876059813,
          -2.7782718709876417,
          -3.1715802019320636,
          -7,
          -3.409510452269316,
          -7,
          -7,
          -7,
          -3.1899112096928057,
          -3.5497999641845497,
          -2.7790808857337654,
          -3.5758803156806462,
          -7,
          -7,
          -7,
          -7,
          -2.830802448892219,
          -2.5630853728550487,
          -3.5190400386483445,
          -2.432969290874406,
          -7,
          -7,
          -3.6405324674013486,
          -3.829946695941636,
          -7,
          -7,
          -3.2368646223173876,
          -2.5253626759396286,
          -2.2242435278612027,
          -7,
          -7,
          -7,
          -7,
          -2.8363427353762822,
          -3.9677819080757994,
          -7,
          -3.0145205387579237,
          -2.938266579580553,
          -2.960787780819836,
          -3.367169488534681,
          -7,
          -2.7167186243047006,
          -2.8680563618230415,
          -7,
          -4.1761202110560856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.665393350279712,
          -7,
          -2.8862650590297565,
          -7,
          -3.942079395541365,
          -7,
          -7,
          -1.5525084428372955,
          -7,
          -2.5968169359155904,
          -7,
          -7,
          -7,
          -2.6161002486082365,
          -7,
          -2.8511792446573097,
          -2.8601382850306134,
          -1.613448351138622,
          -2.8115191516512503,
          -7,
          -3.4186326873540653,
          -3.1596674343147124,
          -7,
          -7,
          -7,
          -7,
          -2.1737003278314213,
          -2.9429995933660407,
          -3.8721562727482928,
          -7,
          -7,
          -2.265889361875121,
          -7,
          -7,
          -3.068853493671498,
          -7,
          -3.0271456657743414,
          -3.2379334435875635,
          -7,
          -3.584783378996508,
          -7,
          -7,
          -2.5416272402423585,
          -1.739127142481937,
          -7,
          -7,
          -3.6386888866901237,
          -3.41161970596323,
          -2.6695028341043434,
          -3.2279723558282107,
          -2.6269815818454347,
          -7,
          -3.216860907533353,
          -3.7016543173257483,
          -2.875459184314206,
          -7,
          -7,
          -7,
          -7,
          -3.600537294364469,
          -2.8872152874569856,
          -7,
          -3.894675979083117,
          -7,
          -7,
          -7,
          -4.040760524228698,
          -7,
          -2.034204961241296,
          -2.0154464784398023,
          -1.717161771854059,
          -2.1645257643673252,
          -3.0970836960665213,
          -7,
          -7,
          -7,
          -2.8428284227300984,
          -7,
          -7,
          -7,
          -7,
          -3.7681939616330715,
          -7,
          -4.216957207361097,
          -3.8119843841348438,
          -7,
          -7,
          -7,
          -3.7219277066970906,
          -2.857935264719429,
          -3.3386556655787003,
          -2.8452531174956057,
          -3.328583449714202,
          -3.4099331233312946,
          -2.497498788166523,
          -1.5708246487712936,
          -7,
          -3.3085644135612386,
          -3.191712937446059,
          -7,
          -7,
          -7,
          -3.330413773349191,
          -7,
          -4.088809166461293,
          -3.5398912045347903,
          -3.199288828082406,
          -3.329194415088451,
          -7,
          -7,
          -7,
          -7,
          -3.470704429722788,
          -3.635148513697608,
          -2.3009240572607474,
          -7,
          -3.36078268987328,
          -2.9378520932511556,
          -3.162528562308087,
          -3.0073209529227447,
          -7,
          -3.5423273827739745,
          -3.4869968884318223,
          -7,
          -2.1615106042661045,
          -7,
          -7,
          -7,
          -7,
          -3.959756672990995,
          -7,
          -7,
          -3.4632437577284456,
          -7,
          -7,
          -7,
          -3.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -3.3639878297484915,
          -3.536516357733869,
          -7,
          -7,
          -3.174077030963441,
          -7,
          -3.801609488027319,
          -2.955126283548938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504742636271688,
          -3.164278483923325,
          -7,
          -7,
          -7,
          -4.021602716028243,
          -7,
          -4.071034675054152,
          -7,
          -2.34664631757689,
          -7,
          -3.385725405263276,
          -7,
          -2.7261836614188204,
          -3.06126394230025,
          -7,
          -3.8513195126487454,
          -7,
          -7,
          -2.215615535361617,
          -7,
          -3.638439335179549,
          -7,
          -7,
          -7,
          -3.3180633349627615,
          -7,
          -7,
          -7,
          -7,
          -3.988157472556753,
          -2.9526310252827455,
          -3.702171950857711,
          -4.538178131237722,
          -7,
          -7,
          -7,
          -3.4620983811351556,
          -7,
          -3.330413773349191,
          -7,
          -1.9481683617271317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.917899189424106,
          -3.719701654166844,
          -3.2979792441593623,
          -3.3068537486930083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4164740791002206,
          -7,
          -3.2350231594952237,
          -3.103176333716908,
          -3.063386978864393,
          -7,
          -7,
          -7,
          -2.7326878976478954,
          -2.4768799129619077,
          -2.429788971125811,
          -7,
          -4.246933314148579,
          -2.9584045967789923,
          -3.0513454993365388,
          -7,
          -2.2809948266715914,
          -3.246806220166817,
          -2.7976747937505664,
          -2.787589268849698,
          -3.4509159516872203,
          -3.497067936398505,
          -3.4119562379304016,
          -7,
          -7,
          -3.646893624167745,
          -7,
          -7,
          -3.0572856444182146,
          -7,
          -7,
          -3.035829825252828,
          -7,
          -2.061640934061686,
          -3.098384109699789,
          -2.5631843347973486,
          -7,
          -7,
          -3.9906971299606298,
          -3.4947573623066033,
          -7,
          -3.620614868774087,
          -7,
          -3.4268364538035083,
          -7,
          -3.53832233323144,
          -4.025100961046813,
          -2.2581397562674157,
          -7,
          -7,
          -2.911867530405052,
          -7,
          -4.297896267232125,
          -1.9904375244419854,
          -7,
          -7,
          -7,
          -2.8178657323090817,
          -2.304967275955679,
          -7,
          -7,
          -2.916453948549925,
          -7,
          -2.4142568872937775,
          -2.771035995750765,
          -3.3397163761823725,
          -7,
          -3.4520932490177314,
          -2.756027212973441,
          -7,
          -3.7200943020887176,
          -3.372476821350871,
          -4.3446944522897075,
          -7,
          -3.412460547429961,
          -4.246921016356379,
          -2.972492117335942,
          -7,
          -7,
          -7,
          -2.9200363194824788,
          -3.5820633629117085,
          -3.055187138555754,
          -7,
          -3.0130479961152314,
          -7,
          -2.4285667129921897,
          -7,
          -7,
          -2.8167382992623913,
          -7,
          -7,
          -2.4917935477231654,
          -7,
          -7,
          -3.532648233450749,
          -3.937990472741036,
          -7,
          -7,
          -4.725544122486353,
          -3.9235721204036174,
          -7,
          -4.130387381788316,
          -3.096046169288955,
          -4.042654253167793,
          -3.741624257503812,
          -7,
          -4.7315404180265235,
          -5.004467547322978,
          -3.3677833169346525,
          -3.660542956258607,
          -4.386614880845291,
          -3.889057104194969,
          -4.089905111439398,
          -4.343920385393226,
          -7,
          -5.08967554556239,
          -7,
          -3.0592335136550552,
          -3.8536069638544386,
          -7,
          -4.672744198306599,
          -4.227526784937202,
          -7,
          -3.387161939946565,
          -7,
          -4.3900868754237665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6974618344579375,
          -4.226367875856486,
          -2.7041198625619036,
          -7,
          -3.2860340960543226,
          -4.3728310252634595,
          -7,
          -7,
          -3.5137501500818233,
          -2.87989832433001,
          -3.393933520699538,
          -7,
          -7,
          -7,
          -2.547587547806455,
          -3.6149850498855733,
          -7,
          -3.1180692300331043,
          -2.9575540809979275,
          -7,
          -3.2879695948354546,
          -4.400607056580689,
          -7,
          -7,
          -4.396338857049362,
          -3.65109673914952,
          -5.230626860502488,
          -7,
          -3.3305490465108214,
          -7,
          -3.9628237572821168,
          -7,
          -4.709030693820238,
          -3.4305265386806405,
          -7,
          -7,
          -4.051731196059849,
          -4.456457134303779,
          -4.793713573408255,
          -7,
          -2.4112047787845436,
          -3.899327949877654,
          -3.2159557219790544,
          -3.5084623812733606,
          -7,
          -3.2346875960305317,
          -4.486213159170506,
          -7,
          -5.049528122277718,
          -7,
          -2.7353593330017105,
          -3.301649973616383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2119912370348325,
          -3.1046009052294363,
          -2.3185589412002856,
          -7,
          -7,
          -2.424231786918459,
          -7,
          -3.5509617522981762,
          -7,
          -3.1535709814337802,
          -7,
          -3.302256501206462,
          -3.1502189941321563,
          -7,
          -3.5667909123815917,
          -3.696705780933917,
          -3.083263668252353,
          -3.4886916983169405,
          -7,
          -7,
          -7,
          -7,
          -3.4169731726030363,
          -2.3175410324561483,
          -3.2121876044039577,
          -7,
          -2.7702995911963613,
          -7,
          -7,
          -3.709873905727599,
          -3.953694125087313,
          -4.196604462943301,
          -7,
          -7,
          -1.696804163033507,
          -3.4385423487861106,
          -2.6055988523188973,
          -7,
          -3.500648063371912,
          -2.4387005329007363,
          -7,
          -7,
          -7,
          -2.716003343634799,
          -3.103050747435957,
          -7,
          -7,
          -2.60959440922522,
          -7,
          -2.7544757508452475,
          -2.633351902960404,
          -3.633392699935256,
          -7,
          -2.2490235558263048,
          -2.7787841351367035,
          -7,
          -3.287941621856674,
          -7,
          -7,
          -7,
          -3.2637543888400056,
          -2.6636289016346657,
          -3.345079526314867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.873436863222037,
          -3.370142847051102,
          -3.089905111439398,
          -2.552225622971311,
          -7,
          -7,
          -2.8092790719877616,
          -2.4199854117249155,
          -2.6069185259482914,
          -7,
          -2.1353656392669924,
          -7,
          -3.543012046377035,
          -7,
          -2.6113692154627337,
          -3.7877437716464666,
          -3.1812717715594614,
          -3.4602963267574753,
          -7,
          -7,
          -7,
          -7,
          -2.827207675105206,
          -7,
          -2.8150978852636968,
          -7,
          -3.3017080511989114,
          -2.7374656084886224,
          -2.744150684798368,
          -2.555195248040743,
          -7,
          -2.8217754671834636,
          -7,
          -2.818738940905639,
          -1.8388490907372554,
          -7,
          -7,
          -7,
          -2.6705550695214364,
          -2.915152406858784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.294135419126248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2997251539756367,
          -7,
          -3.458214677865592,
          -3.8649261915390056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.740901932571898,
          -7,
          -3.4094258686714434,
          -7,
          -7,
          -3.6120417446452695,
          -7,
          -7,
          -7,
          -7,
          -3.781827152932428,
          -3.5020172148271476,
          -7,
          -7,
          -5.129438521472354,
          -5.527199259073056,
          -7,
          -7,
          -5.129373399173946,
          -5.528025997792825,
          -4.714903366650505,
          -4.983247297962127,
          -4.506289796825186,
          -1.6382611162285612,
          -3.5615264639255204,
          -5.828223449760503,
          -5.527316631951896,
          -2.49895398466317,
          -2.814993463420426,
          -5.129809725477716,
          -5.527535815021379,
          -5.527175393673305,
          -4.925219884397581,
          -4.874004804728517,
          -2.339534093100576,
          -3.5083401254993674,
          -7,
          -3.521036115641491,
          -1.7846605609911599,
          -4.652587967664366,
          -4.68228435847426,
          -5.351095099964148,
          -4.157128056609563,
          -4.573540076446994,
          -4.573181149242739,
          -2.684179751046336,
          -4.749501846606125,
          -5.129323744920132,
          -5.82830793676512,
          -4.787079019289936,
          -4.448994723423251,
          -4.714425843380274,
          -3.4030555820599213,
          -5.351118964761353,
          -4.105069722166873,
          -4.120819652228079,
          -2.262528475475419,
          -4.749148615956129,
          -5.050357196597368,
          -3.5572497926300244,
          -7,
          -3.657385079468079,
          -7,
          -5.050532486589045,
          -4.051770389384332,
          -4.205497585194046,
          -3.899546931090867,
          -2.2303568408142413,
          -3.825285334408372,
          -3.367338047406574,
          -3.4319465336406454,
          -4.3970931134746,
          -4.486168264379942,
          -3.8042809110003937,
          -4.714686258542472,
          -4.8286850256076965,
          -5.129729196004417,
          -7,
          -4.749387787092975,
          -4.097860559476264,
          -2.9839560114981873,
          -4.597859015386846,
          -5.351151212403978,
          -3.757536918719722,
          -5.527203129014305,
          -3.6820201893903968,
          -4.274356727020315,
          -5.050149592684926,
          -4.1483731861540445,
          -2.463913596053034,
          -5.050132180393049,
          -3.5886329050659698,
          -7,
          -5.527368859133329,
          -3.415799423707435,
          -4.058344300223194,
          -5.2263730334113,
          -5.8282053893372865,
          -3.997136370807289,
          -5.129615785186403,
          -3.843053522128569,
          -3.7926306849084326,
          -4.285009192878731,
          -4.23792185409128,
          -1.5039869121961962,
          -3.359967894486308,
          -2.5708190525174435,
          -4.466519478150249,
          -5.050044463417963,
          -3.3041772464037416,
          -3.293359332906441,
          -3.6503261821381465,
          -3.800891726851627,
          -4.138098959020332,
          -2.893350008215764,
          -4.749430965686463,
          -7,
          -5.82822215975518,
          -3.3802947028480497,
          -5.226193772454605,
          -4.121848106698777,
          -4.527846349811276,
          -3.645803568986553,
          -2.8990008330467725,
          -5.050383623514781,
          -4.786991985099959,
          -4.104443303441471,
          -4.381683534970911,
          -2.884108866405466,
          -4.175406142156769,
          -5.8282144196427765,
          -4.625196657969116,
          -4.626059859121137,
          -3.8960947079078343,
          -4.506441246154753,
          -3.3993622898984075,
          -2.0152377132669415,
          -5.351411685556406,
          -4.0764430531995455,
          -5.351440688987847,
          -2.269274041462733,
          -4.5734962735793205,
          -3.8339779430518304,
          -3.7440280025510053,
          -7,
          -4.874331679579926,
          -2.9860317915675694,
          -4.089425292927653,
          -7,
          -7,
          -3.1396892221500754,
          -7,
          -7,
          -5.22616603843169,
          -4.573012860406959,
          -4.351064783330702,
          -3.287801729930226,
          -3.9228010399359112,
          -2.8919539577451547,
          -3.3897879863363913,
          -4.096132734983064,
          -3.0854568236758046,
          -5.828247959133625,
          -5.527343068717591,
          -4.32364327898043,
          -3.449312025702321,
          -3.5035969724042277,
          -7,
          -5.527375951229165,
          -5.5275751273418345,
          -2.8636909903067953,
          -5.527208933861522,
          -5.828198293965532,
          -4.058247755724938,
          -4.20560386927874,
          -5.5272792308517,
          -4.175647730582203,
          -4.486576657494575,
          -4.176281663483603,
          -4.715515452064854,
          -4.486683523512511,
          -3.993846273099567,
          -4.652927394343718,
          -5.0503507507638075,
          -1.9510573428129632,
          -4.874196962157325,
          -7,
          -7,
          -5.129654451292561,
          -5.527388845652158,
          -4.983273090024392,
          -5.226182808052582,
          -3.1083633119106744,
          -4.787012617003722,
          -3.196077533373247,
          -7,
          -2.666290997651076,
          -1.7568754896405432,
          -3.899142373493561,
          -3.1583034527805256,
          -3.2959539958685107,
          -4.185402415387617,
          -3.884866136291988,
          -3.055168111394058,
          -3.965719614031156,
          -4.652704574860998,
          -4.874735581294349,
          -3.7623553334556568,
          -5.050330123453494,
          -3.901390362407254,
          -7,
          -2.350963862547327,
          -4.573919945394144,
          -3.065182963862193,
          -5.351217635001813,
          -3.5611432676414223,
          -5.828217644706376,
          -3.917702074031228,
          -5.22646650347807,
          -4.652883612256533,
          -5.351289849988622,
          -7,
          -4.067993823502085,
          -4.715418965908037,
          -7,
          -3.875141037569342,
          -2.4696548471781123,
          -2.9377560847436563,
          -7,
          -5.527187649042395,
          -4.828405302161947,
          -5.226204736579822,
          -5.828336310392704,
          -5.351349160460369,
          -5.527256659663878,
          -5.828531006645101,
          -2.932890707465984,
          -3.8760413405134386,
          -3.283476066983985,
          -1.7693400963998285,
          -5.351065428387491,
          -4.828429801274681,
          -4.598051146000453,
          -4.138537910876411,
          -7,
          -5.828307291888404,
          -4.984208949801015,
          -4.3976349303069115,
          -4.550237367228034,
          -5.828185392992617,
          -7,
          -4.652199265701975,
          -5.2263156521641045,
          -7,
          -5.52726375359217,
          -4.715106847213561,
          -1.9981567084168663,
          -5.82820796944373,
          -5.129259250401018,
          -7,
          -5.050211497402782,
          -4.787200193408041,
          -4.549785784697617,
          -5.828197648925988,
          -4.38141680215756,
          -3.9736114170892827,
          -4.27279597919482,
          -3.4353095378288203,
          -3.2339410683150467,
          -3.42909119203056,
          -7,
          -4.925106371852082,
          -2.946334290791815,
          -3.6860682305506227,
          -2.374530376424795,
          -4.874370346718868,
          -2.4601914044246,
          -4.466931416163418,
          -4.682235356902564,
          -5.129432718891559,
          -4.135195643370445,
          -3.127535862467454,
          -3.1359305235761137,
          -3.7072588938204274,
          -3.51824553732899,
          -3.9480421436568234,
          -4.430621290535816,
          -7,
          -4.983757051859547,
          -4.22767464518811,
          -4.875414988878726,
          -7,
          -4.624260819011183,
          -5.226809913771843,
          -5.2263150073879165,
          -4.829018653399399,
          -7,
          -3.76473832263842,
          -3.3691144374820716,
          -4.44858201558873,
          -4.249861686896716,
          -4.787563513038879,
          -1.864621258181625,
          -3.556247604109366,
          -5.050171518281678,
          -3.0730827979450512,
          -5.527253435112711,
          -5.129675071808323,
          -4.62628453692498,
          -3.9539973051231425,
          -2.784639018187803,
          -3.639464639040942,
          -3.9684452044268173,
          -4.381987436429171,
          -3.991152209805438,
          -4.297896267232125,
          -7,
          -3.153570725719448,
          -7,
          -7,
          -7,
          -3.57128831854305,
          -3.512271225992589,
          -4.925350773964699,
          -5.351437466480003,
          -4.41458513624822,
          -5.8283866045408,
          -4.431315506535525,
          -4.573159230252996,
          -4.038680399901154,
          -5.050438405904311,
          -4.624614008249,
          -3.817641733880986,
          -3.203772330591677,
          -2.5667280718764567,
          -3.063053305570029,
          -1.807119893883509,
          -4.5275474157483435,
          -3.537198825007745,
          -2.644079518156686,
          -4.012137752982696,
          -7,
          -4.714740384665852,
          -7,
          -3.8855539571233466,
          -4.018845751189305,
          -4.218481706596672,
          -4.550512853119367,
          -5.527226347937657,
          -7,
          -4.216703246192243,
          -5.828393696836685,
          -5.050408759822028,
          -4.6824777317622015,
          -4.024511963680228,
          -4.787028090288343,
          -2.7382119030151055,
          -7,
          -7,
          -2.3993947761729593,
          -2.116939526080235,
          -2.690355650541242,
          -3.3516858977234523,
          -2.649097674518334,
          -2.2653463590536993,
          -2.272585387686152,
          -1.6550186730179992,
          -2.0934010582009397,
          -2.836668309629515,
          -3.5514827421828254,
          -2.45081748723977,
          -2.453093451791766,
          -2.2896490591165537,
          -2.4260327392136625,
          -2.8235708713982426,
          -1.8954910820060986,
          -2.004684482079553,
          -3.3780820118041603,
          -2.9456789335701417,
          -3.880838632192856,
          -1.6788487007501018,
          -2.2950577654310025,
          -2.1617231590741603,
          -2.6689652196894014,
          -3.284762751307711,
          -2.6308337889825735,
          -2.7801343698768295,
          -3.683048969004335,
          -2.1133843004353485,
          -3.3958655545065732,
          -2.322504808736829,
          -2.793026934015807,
          -3.153316096131449,
          -3.824720456582034,
          -3.09778853040459,
          -3.146401062863181,
          -2.580415991076328,
          -2.6694011842990233,
          -2.3856381651674483,
          -5.129713732636669,
          -2.227424714159795,
          -1.8738303081546903,
          -3.1195531811384214,
          -2.8083010194685842,
          -2.937921285521538,
          -3.5886045866476044,
          -1.3471535638118464,
          -3.817061044059383,
          -4.139673515374664,
          -2.6237566562009254,
          -2.300605695144895,
          -2.5071985596277795,
          -4.749768512958104,
          -2.6022769596369226,
          -2.9602453639496735,
          -5.226240851740608,
          -3.398607443661825,
          -3.1824152768205396,
          -3.8765533138467743,
          -5.129719531464096,
          -2.220587807932981,
          -1.2835321333668661,
          -1.5451646690906655,
          -5.527355319356032,
          -3.944474339974218,
          -4.925341748364358,
          -2.5073619679009456,
          -4.124151183547985,
          -2.4203060853745657,
          -2.7775910217147204,
          -3.7111774515498808,
          -5.351127349378787,
          -2.521009015556184,
          -2.818836872130782,
          -2.6003021925239067,
          -3.943918286779118,
          -2.7231186834574888,
          -2.7740444161690005,
          -2.0240841674513033,
          -1.3745518607680296,
          -5.351487734879554,
          -2.2679092957043285,
          -2.506490145776442,
          -3.1036590691700097,
          -2.052100755959316,
          -5.351333044285805,
          -3.719685794237588,
          -2.3591801406581605,
          -2.503720650468077,
          -4.874074455499286,
          -5.8282389295255035,
          -5.828189263324731,
          -7,
          -3.222200535388768,
          -2.116145767991693,
          -4.285278190754191,
          -2.830781771889899,
          -4.7143903787417765,
          -4.009525576799297,
          -3.0930099610151447,
          -3.239042654578873,
          -4.683074711723954,
          -5.527332752122445,
          -3.621791538802892,
          -5.8282744019060555,
          -2.471170466488659,
          -3.716461809044155,
          -4.682403615511475,
          -4.467548269765181,
          -2.664337629065647,
          -4.2610241904782855,
          -3.7373151443998833,
          -4.072762487893174,
          -4.008886510427643,
          -3.5667211474848406,
          -4.787129297761864,
          -4.486161819770721,
          -4.874836658990174,
          -4.023818757084455,
          -7,
          -3.5694566075340854,
          -5.527239246803147,
          -7,
          -2.5894363731585797,
          -1.657708358382131,
          -1.7272055849648744,
          -5.527177328754575,
          -4.044297447111979,
          -3.6264398375610822,
          -4.71473845170617,
          -4.00363862217658,
          -7,
          -4.448728214389335,
          -2.9478744658331997,
          -7,
          -4.87408477318204,
          -4.449235985453029,
          -4.28483341767671,
          -2.9384760476656964,
          -4.573208868733832,
          -3.977691410286653,
          -4.397374736429878,
          -4.8285490535326625,
          -4.3105761718588536,
          -2.6871515323369826,
          -2.7468102160993535,
          -5.226193127497442,
          -3.7808012637673216,
          -3.949122824379861,
          -3.8895966069886656,
          -2.732826796502639,
          -4.624363325033174,
          -4.925238585322531,
          -3.4176715797939443,
          -4.32410489341645,
          -1.7654434528074723,
          -3.838430136872837,
          -3.267687879865739,
          -4.397566032746728,
          -4.272197566611441,
          -3.188436925219375,
          -5.226440720641296,
          -3.5392265670071406,
          -4.925340458977568,
          -4.1858002648308315,
          -3.4643456035121996,
          -3.879378127844931,
          -5.226146688064462,
          -3.5241600544162317,
          -2.156405666626288,
          -4.325400198749759,
          -4.431437748768506,
          -3.388635223628259,
          -4.3383960814697495,
          -4.600951125994174,
          -4.652723254872325,
          -3.2990928815880203,
          -3.013794686966823,
          -4.573591603576932,
          -4.652678808009644,
          -5.828258923405385,
          -5.82820796944373,
          -2.8875728691520535,
          -3.5484961800176205,
          -4.215828355014351,
          -2.9919093037691393,
          -2.4006578648786436,
          -3.7722354673339833,
          -2.588199629329094,
          -2.9443634251545596,
          -3.8962608225275375,
          -3.98453117086462,
          -5.129544888382884,
          -4.486621080900413,
          -5.226146043037373,
          -3.949844352716353,
          -4.1065590646715435,
          -3.5755387065320834,
          -7,
          -4.397679353778606,
          -4.624606277253296,
          -2.9456071083058015,
          -4.828616722682745,
          -5.527408186568847,
          -7,
          -5.527190874082044,
          -5.527266333173729,
          -5.527230862584156,
          -4.682187639532793,
          -3.0769191490994303,
          -4.249182904087916,
          -5.227148547975863,
          -5.351353028253276,
          -4.652435235750351,
          -4.983238270378447,
          -4.828423354273742,
          -5.226548998271254,
          -5.05034688321775,
          -3.899971697328381,
          -4.297461182997396,
          -3.402811300216939,
          -3.6383164263566528,
          -4.600354596150628,
          -4.5275164797878,
          -7,
          -4.114053839214257,
          -4.787099647059502,
          -7,
          -2.9464497931401237,
          -4.828594167470897,
          -4.682437775007122,
          -4.122449110339567,
          -3.7256898131853,
          -4.3243750674682415,
          -4.983184100935266,
          -5.527294707559675,
          -4.382181127004978,
          -5.129277309831823,
          -3.6157691968961876,
          -4.413969971748061,
          -4.1126133790479455,
          -5.828186038050364,
          -3.268168287683832,
          -7,
          -7,
          -3.854548935812951,
          -3.0858849323421316,
          -7,
          -3.00566303219259,
          -3.865044721693099,
          -3.58029758843657,
          -2.735142095153427,
          -3.4724638966069894,
          -7,
          -3.563421751494202,
          -2.4493709766959877,
          -2.7164586585273547,
          -2.319215674272979,
          -7,
          -7,
          -7,
          -3.85618492672717,
          -2.3045982263436375,
          -3.3800000750090593,
          -7,
          -2.7518177877368792,
          -2.1789433545523966,
          -2.9404611431699053,
          -2.791515211941625,
          -3.852540985769799,
          -2.2394496414571745,
          -2.701460045579318,
          -2.9722607095873457,
          -3.2220495643794016,
          -3.5944478006117335,
          -3.5588884895367348,
          -7,
          -3.8769679674325848,
          -3.6383394744106785,
          -3.390581878550435,
          -2.8738122644316864,
          -7,
          -1.9614210940664483,
          -3.874249822778403,
          -3.156959760868904,
          -2.3160902169680027,
          -3.1802406009557402,
          -2.466818209752554,
          -3.9020028913507296,
          -2.407529236843904,
          -3.3950350180286306,
          -3.4176377396522297,
          -7,
          -2.579892428714085,
          -3.324385356490427,
          -1.9280928192079896,
          -2.370975449358971,
          -1.2968601159748139,
          -2.879568085413838,
          -3.8774865280696016,
          -2.682934395395032,
          -2.1994483637600335,
          -7,
          -2.8945375849957466,
          -2.9410695150364625,
          -7,
          -1.8318116241188156,
          -3.539327063539375,
          -2.985950126092585,
          -3.8627870982353443,
          -7,
          -2.2881826065009245,
          -7,
          -3.4805099729419604,
          -2.5331919553337,
          -3.5596672783880576,
          -3.369957607346053,
          -2.952590661466377,
          -7,
          -2.649529565947819,
          -7,
          -3.869349080759093,
          -2.3034737689179003,
          -2.420505836570779,
          -3.0939467238905833,
          -7,
          -1.9012139819931881,
          -2.8438554226231614,
          -1.3586094419154815,
          -2.8933348950274076,
          -2.2353738295148626,
          -7,
          -2.2391789040947567,
          -3.102733766037084,
          -2.2660731213094354,
          -3.1584228065848823,
          -7,
          -2.969788537414939,
          -3.4510184521554574,
          -3.4819201376014313,
          -2.5729960002961136,
          -3.388041964786424,
          -3.03882923882737,
          -3.8894697839695076,
          -7,
          -3.852845818014997,
          -2.322001548686789,
          -3.85618492672717,
          -1.6880119449868285,
          -2.632030833840008,
          -1.6365873550034469,
          -1.2851797576480062,
          -3.4046627008737222,
          -7,
          -3.1244498802828877,
          -3.211280767964129,
          -2.781755374652469,
          -7,
          -7,
          -3.646060468555641,
          -3.1048284036536553,
          -2.677210083021027,
          -3.894648303793517,
          -3.2199873220898207,
          -2.938526579084941,
          -7,
          -3.8330195470765314,
          -7,
          -3.4781251750032975,
          -2.5029730590656314,
          -2.6325493134758626,
          -2.9885589568786157,
          -3.860278099752235,
          -3.584670384464349,
          -2.2874394473246853,
          -1.862999913128008,
          -7,
          -2.7067787231187155,
          -3.301015518939971,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.960570908834968,
          -2.903993825990188,
          -2.4260731174384857,
          -3.3623316518700257,
          -7,
          -4.154271775993095,
          -7,
          -3.866995813110648,
          -2.7294887691795613,
          -7,
          -2.4336555609385724,
          -7,
          -7,
          -2.6819192929105173,
          -2.1512181701868327,
          -7,
          -7,
          -3.9347004017154252,
          -3.611988688083979,
          -7,
          -2.043012181684635,
          -3.6217992240026677,
          -3.3609245929890346,
          -2.8102325179950842,
          -3.329092647195331,
          -2.8298549080343087,
          -2.746218904158715,
          -3.401745082237063,
          -2.5675038156414707,
          -2.455957010377878,
          -3.375846436309156,
          -7,
          -3.1110383616634296,
          -3.3938091036290334,
          -3.021602716028242,
          -7,
          -2.552407456883763,
          -3.5698418994037615,
          -3.632727166036443,
          -7,
          -2.583674032087918,
          -2.181516116372709,
          -7,
          -3.5815704280995675,
          -2.8755986287355393,
          -3.9134959596171237,
          -3.6554745946527163,
          -2.2716832301358245,
          -3.454285758836911,
          -3.303088010528054,
          -2.8395304193346966,
          -2.737391449978478,
          -3.2748503200166645,
          -3.1501037406089263,
          -7,
          -2.6007216405557,
          -3.636688447953283,
          -3.3779736964389593,
          -7,
          -2.675848815423839,
          -7,
          -3.792811771248147,
          -7,
          -3.4428976613092526,
          -3.870579460552685,
          -7,
          -2.830553028417437,
          -3.2510051734936347,
          -7,
          -1.9156245368287141,
          -3.8663168819216542,
          -2.8841342653384863,
          -7,
          -3.852540985769799,
          -7,
          -3.5560611590095323,
          -7,
          -3.5747833931757764,
          -3.859018143888894,
          -3.579954994822772,
          -3.472493160747825,
          -2.621591675859218,
          -3.050057364084302,
          -3.6179849703409226,
          -3.8497264441963277,
          -7,
          -3.579040088400086,
          -7,
          -7,
          -7,
          -7,
          -2.473434830742589,
          -3.620812485741877,
          -3.849357981661299,
          -7,
          -3.258517559916453,
          -3.2650537885040145,
          -3.85101360682367,
          -3.8596785766284483,
          -2.492035701999729,
          -3.302017584888769,
          -3.8515029527705447,
          -3.552850654460561,
          -7,
          -7,
          -7,
          -3.582744965691277,
          -7,
          -3.1885910365939902,
          -3.4584489842773354,
          -2.6293076400737485,
          -3.0629919861296586,
          -2.758385235390091,
          -7,
          -7,
          -3.8512583487190755,
          -2.3764969160525986,
          -3.339053735709139,
          -2.631902814634904,
          -3.588047496986083,
          -3.441620334661906,
          -3.894758994371892,
          -7,
          -7,
          -2.624467211464796,
          -2.8542345765249766,
          -2.403424968774618,
          -1.4415129606146837,
          -3.0186684981886174,
          -3.138250053220232,
          -3.1870692712304236,
          -3.3829770749788555,
          -3.6084190513172856,
          -2.7482336437786707,
          -2.5067848613333052,
          -7,
          -2.4036529261103188,
          -2.830107278114626,
          -3.867408556522791,
          -3.4459154139511234,
          -3.8521138608497614,
          -1.9998002784596196,
          -2.357588381499906,
          -2.3977228071261734,
          -3.973589623427257,
          -3.315917891264946,
          -2.916254966106324,
          -2.6823557017545716,
          -7,
          -3.335407748315415,
          -7,
          -7,
          -2.6061332204613037,
          -3.455758203104137,
          -2.964924833439139,
          -2.4733763640581374,
          -3.203304916138483,
          -3.9351544472161684,
          -2.677172266985172,
          -1.9904375244419854,
          -3.153570725719448,
          -7,
          -3.852723910791206,
          -7,
          -7,
          -3.0502742724374596,
          -1.9345395056919514,
          -2.4909528910913434,
          -3.5826314394896364,
          -3.0624409566309168,
          -2.964200682862941,
          -1.9902177295652563,
          -3.874191804679071,
          -2.618309641123432,
          -3.886829004676982,
          -2.9965116721541785,
          -1.0512233063252827,
          -3.886829004676982,
          -3.573164571957485,
          -2.368117767111091,
          -3.5566981259337616,
          -3.887335930399167,
          -1.860008936540448,
          -3.568252584406445,
          -2.2646442371397235,
          -7,
          -3.594613509160098,
          -3.8646297245455123,
          -2.147828673906813,
          -2.8035253955765325,
          -2.420615770625765,
          -2.9886084971150124,
          -7,
          -7,
          -1.3043739542975754,
          -7,
          -2.803798407989674,
          -2.544349962232232,
          -2.439885080817301,
          -3.571242850560224,
          -1.7858189578834474,
          -7,
          -3.853393977450666,
          -3.516856325339205,
          -4.040114242745428,
          -3.92620520709792,
          -4.036668810300097,
          -4.0664377464539925,
          -2.7236860593523637,
          -4.152930136422725,
          -2.604006106298812,
          -2.952160466096275,
          -4.208172526667122,
          -7,
          -3.3487752561911313,
          -3.691597150121523,
          -3.9844536631926446,
          -3.537092242214232,
          -3.8451445690733057,
          -3.65168981681185,
          -3.557709264235409,
          -4.2409982862153175,
          -4.434473093213079,
          -7,
          -3.7560549085593125,
          -3.56062387454993,
          -2.9855547737831674,
          -3.509359359920102,
          -4.146918352521449,
          -3.6760115020411783,
          -3.6433737066738225,
          -7,
          -3.1037511078985416,
          -7,
          -3.271344802890412,
          -4.442824559187638,
          -4.046339055604809,
          -3.9343974407809883,
          -3.7964124254316354,
          -4.152288344383057,
          -3.2886714373796004,
          -3.864412186720744,
          -2.5697669818215867,
          -3.417527049073855,
          -3.0283353358183884,
          -2.879619688796236,
          -2.952004964166678,
          -2.9689108057647475,
          -3.123976018280717,
          -3.171628957978357,
          -2.5621022515114826,
          -3.040602340114073,
          -3.388056774739942,
          -3.388748048895302,
          -2.467792474575587,
          -3.168338191237685,
          -7,
          -2.4721017822730618,
          -2.7799242854328723,
          -3.8605775512444156,
          -2.7283876042619606,
          -3.7027463765507442,
          -4.0533089811241,
          -7,
          -2.4769710404510628,
          -2.603575145913418,
          -3.757693723849235,
          -7,
          -2.759894374025499,
          -7,
          -3.159800554607567,
          -7,
          -3.7932297824775407,
          -2.4742632732749703,
          -3.519621762715661,
          -7,
          -3.2371036915866878,
          -3.2970778706412265,
          -2.7473405850027395,
          -3.551165254706615,
          -2.3249870307193867,
          -2.6824793547784997,
          -2.628160093047439,
          -2.6569508479447186,
          -3.888179493918325,
          -2.403764919833581,
          -3.481460544571774,
          -2.8066886148562817,
          -3.306863228890472,
          -7,
          -2.846955325019824,
          -2.6855663052536576,
          -3.819609732751585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.611047062431195,
          -2.773835184612231,
          -1.659812892549702,
          -7,
          -3.455707512181184,
          -2.64249495859943,
          -3.6577727077355213,
          -2.8958242057044803,
          -3.866050924009275,
          -2.654818040490762,
          -3.8577545220594422,
          -2.871478775477452,
          -2.3660979777088698,
          -7,
          -7,
          -7,
          -3.4649860542696933,
          -2.8471097408372383,
          -7,
          -3.578467291585447,
          -3.4029831731411804,
          -3.881441721941393,
          -3.888179493918325,
          -2.8855668032220505,
          -2.6562724774894497,
          -7,
          -2.885438325132807,
          -7,
          -7,
          -4.664162294761991,
          -3.1298127670406317,
          -3.3699192720233055,
          -7,
          -7,
          -1.9887152789244085,
          -7,
          -2.5473644129795048,
          -7,
          -2.8379565067088195,
          -2.2408364563492156,
          -7,
          -7,
          -7,
          -2.801139749344364,
          -3.457086728098236,
          -7,
          -3.145351816558461,
          -2.644821396440092,
          -7,
          -2.674299673973244,
          -2.529638852931278,
          -3.8715145587083817,
          -7,
          -2.285643847711239,
          -2.5176796445749416,
          -3.9387698227831174,
          -3.411682825574111,
          -7,
          -7,
          -7,
          -3.098347009010774,
          -2.3008443764220465,
          -2.699472580721697,
          -3.5474465024763755,
          -7,
          -7,
          -7,
          -7,
          -3.7989267385772014,
          -7,
          -2.7676010680503356,
          -2.2520435349731076,
          -7,
          -7,
          -2.2415396580206215,
          -1.9061656116739139,
          -2.953638903390939,
          -7,
          -2.5696664623252685,
          -7,
          -3.48061768932015,
          -7,
          -2.5860368997013805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0469408803270346,
          -3.977586438003851,
          -2.8580965785556107,
          -3.943346098356591,
          -3.32508443875409,
          -2.888252317609033,
          -7,
          -2.3589093822301255,
          -7,
          -2.8461824213064766,
          -7,
          -2.579270968576654,
          -2.49380646215058,
          -7,
          -7,
          -3.2275782202995997,
          -3.598571663482141,
          -2.6270750853803926,
          -7,
          -7,
          -7,
          -3.852845818014997,
          -7,
          -7,
          -7,
          -3.5116160205691376,
          -7,
          -3.335307426189327,
          -7,
          -7,
          -3.2617979705560107,
          -3.3951515915045425,
          -3.8882918453565156,
          -3.8787515201730023,
          -2.7538701957509053,
          -3.2200034261569357,
          -2.841381819328237,
          -3.492725476491596,
          -7,
          -3.8846254632562345,
          -7,
          -7,
          -3.577664104732127,
          -7,
          -3.089665858974108,
          -3.2852759390712047,
          -3.885643871835764,
          -3.1551624585331335,
          -7,
          -3.361963801512071,
          -3.558048229082988,
          -7,
          -3.1043895499322467,
          -7,
          -3.445720933413234,
          -2.9637353731535834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.690373306916059,
          -7,
          -7,
          -3.7106532004443227,
          -4.204499824171151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3331045403985895,
          -7,
          -7,
          -3.3378584290410944,
          -4.270508810924844,
          -2.9479236198317262,
          -2.673020907128896,
          -7,
          -2.777185077611623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8226038992559745,
          -7,
          -3.6931645641885575,
          -7,
          -2.478566495593843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8654647044874704,
          -7,
          -3.1894903136993675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9532763366673045,
          -7,
          -7,
          -7,
          -3.04766419460156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.647373188597217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.50745106090197,
          -7,
          -7,
          -3.974327435423617,
          -7,
          -7,
          -2.367355921026019,
          -7,
          -7,
          -7,
          -3.3279716236230104,
          -7,
          -7,
          -3.8399491678129896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1230890516896657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.078764847613001,
          -7,
          -7,
          -3.273926780100526,
          -7,
          -3.12515582958053,
          -7,
          -7,
          -4.752302032494887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.398981066658131,
          -3.574956775764507,
          -7,
          -7,
          -4.2934951434720245,
          -3.429752280002408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.017492446477275,
          -7,
          -3.446381812222442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.040602340114073,
          -7,
          -7,
          -7,
          -7,
          -2.8727388274726686,
          -7,
          -7,
          -7,
          -7,
          -2.781396305196791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752942250937937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.653947297156863,
          -7,
          -7,
          -3.5518158223510157,
          -7,
          -3.3165993020938607,
          -7,
          -7,
          -7,
          -7,
          -3.6006462356623947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.548020694905531,
          -4.122445256281956,
          -5.110667135746672,
          -7,
          -7,
          -7,
          -7,
          -2.2174839442139063,
          -2.4502491083193614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.760497875226527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.053219342138294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9789105771755717,
          -7,
          -3.946599625015133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6788824146707357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9132839017604186,
          -7,
          -7,
          -7,
          -5.1309799038310295,
          -7,
          -7,
          -3.9782033499061584,
          -7,
          -7,
          -3.251638220448212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.852723910791206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.255754786643044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9047515997788804,
          -5.875137113537153,
          -7,
          -7,
          -4.540291926094344,
          -7,
          -7,
          -7,
          -1.9294189257142926,
          -7,
          -3.159717546180216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.577537754493837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.22698634552522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.470968804605796,
          -7,
          -4.674383429621003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.146840934035067,
          -7,
          -7,
          -2.941511432634403,
          -7,
          -5.064936946520462,
          -3.8680563618230415,
          -7,
          -7,
          -7,
          -5.234701996540841,
          -7,
          -7,
          -4.436433002660097,
          -4.961254938713763,
          -4.376686429261915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.186485924542031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.780540523905541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6410227253507275,
          -7,
          -7,
          -5.346947277194261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163340305618251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4823017672234426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.0934532053920565,
          -4.308535957626102,
          -7,
          -7,
          -3.920905604164024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.647748640757452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7707783961691477,
          -4.326294887818489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1664301138432824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3896090160519865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8669368177316397,
          -7,
          -7,
          -5.57150619140403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.863852019929494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9284829072832395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.412418543998244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.537453882426875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.352805524894097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4583356259919475,
          -7,
          -3.474798818800631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6074550232146683,
          -7,
          -4.498186451922232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.234534999126725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.640695053335942,
          -7,
          -7,
          -5.346818320038284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2127201544178425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.346605261465181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1492191126553797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.604334073102911,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.680335513414563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2028968085295295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.566201718854913,
          -1.5563025007672873,
          -7,
          -5.094388431285613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8638936119037135,
          -7,
          -7,
          -7,
          -7,
          -3.2211533219547053,
          -2.5352941200427703,
          -7,
          -7,
          -7,
          -7,
          -5.140306875999945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.144371801014283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.229535944004162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.543322900646912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.371935583802963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292189592623499,
          -7,
          -7,
          -7,
          -4.36157675079015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1319392952104246,
          -7,
          -5.4518340058126755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.507697847619095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1784013415337555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.061829307294699,
          -7,
          -7,
          -7,
          -3.1095785469043866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.120508124026104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.12057393120585,
          -7,
          -7,
          -7,
          -2.525044807036845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.792041310712082,
          -7,
          -7,
          -7,
          -4.307880955988253,
          -7,
          -7,
          -2.8530895298518657,
          -4.708080810468232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.401055725771844,
          -3.368472838440362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.277929946646919,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6473829701146196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.524396122103842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.017183645990936,
          -7,
          -7,
          -2.6175245348862926,
          -7,
          -3.4891143693789193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6082050077043264,
          -7,
          -4.197225406118192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6749070468191296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941769746107795,
          -7,
          -7,
          -5.346831999127804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.214578953570499,
          -7,
          -7,
          -7,
          -4.794669255342644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.09324653110384,
          -7,
          -7,
          -7,
          -3.917820481993697,
          -7,
          -7,
          -7,
          -7,
          -4.241621180791424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.64763330197941,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024619055253279,
          -3.2753113545418118,
          -7,
          -3.996402209146188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3827372657613304,
          -7,
          -7,
          -7,
          -7,
          -3.3279716236230104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.383815365980431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.747567162737625,
          -3.825555932290357,
          -3.3280396468797715,
          -3.7481104674949837,
          -2.3858296186697827,
          -3.3424779511482297,
          -3.7052648623174043,
          -7,
          -3.747489492258673,
          -1.573212741349853,
          -2.7131420990517308,
          -3.797198269838959,
          -7,
          -7,
          -7,
          -7,
          -2.4610448259425755,
          -3.625621081424908,
          -7,
          -2.6186391901671824,
          -3.0145205387579237,
          -3.1851878890039917,
          -7,
          -7,
          -2.9439888750737717,
          -3.0236639181977933,
          -7,
          -3.532349964092412,
          -7,
          -3.4403579968152878,
          -7,
          -3.7636525705645303,
          -7,
          -7,
          -2.8614801002878543,
          -3.7346398389876994,
          -3.5588285248170117,
          -3.2826976226551636,
          -3.164859459679298,
          -7,
          -3.7671558660821804,
          -3.2498706873123053,
          -3.494711025205263,
          -3.493225621510431,
          -2.8535461212539044,
          -3.7868933252613157,
          -7,
          -7,
          -3.3498600821923312,
          -2.8503119910809573,
          -3.28668096935493,
          -2.5549263974668683,
          -3.203071758751761,
          -3.4631461367263494,
          -3.079325986752815,
          -3.1091846800155234,
          -3.7818989193511494,
          -7,
          -7,
          -7,
          -3.7749546890801384,
          -3.937517892017347,
          -3.178087052906914,
          -7,
          -3.7386220279179425,
          -3.39701252410831,
          -7,
          -2.7839876064533984,
          -2.924044214618035,
          -7,
          -3.406426624548381,
          -3.0723693163406582,
          -7,
          -2.7787540186718043,
          -7,
          -7,
          -3.6191977157929474,
          -3.8465845028980463,
          -7,
          -7,
          -3.110028243534681,
          -3.4746532533620624,
          -3.9073038488339695,
          -1.2245175585181478,
          -3.2294898606677935,
          -7,
          -2.3325587394963927,
          -2.491206004826725,
          -2.956987188395434,
          -7,
          -3.72956972630197,
          -3.4043775248953203,
          -2.293492544081438,
          -2.2191556874787546,
          -1.6142870556872067,
          -7,
          -2.802203410722948,
          -7,
          -7,
          -3.7320719409998664,
          -2.455575688084891,
          -3.7364761820276966,
          -3.565316427085621,
          -3.332101666969759,
          -3.1196799820081194,
          -3.3136563466180315,
          -3.7701890227359933,
          -3.753429841575423,
          -2.8932761679855776,
          -3.204459142752743,
          -2.8210219669692687,
          -7,
          -7,
          -2.6203810384702573,
          -2.54520399537264,
          -1.6693658234277071,
          -2.6384892569546374,
          -2.778238977781559,
          -2.0339323851724616,
          -3.4683473304121573,
          -3.4728295567127057,
          -3.772834927239018,
          -3.5236667647413595,
          -3.496652939250918,
          -3.889413764042709,
          -2.5205563093613064,
          -7,
          -7,
          -2.9639626289103638,
          -3.4222614508136027,
          -7,
          -7,
          -3.247159736248122,
          -7,
          -7,
          -7,
          -3.742568034366142,
          -7,
          -3.5924821001140748,
          -3.536516357733869,
          -1.5969887421995967,
          -2.843677615258588,
          -7,
          -2.8181216671068587,
          -7,
          -3.7506626461340558,
          -3.0235268086522495,
          -3.6110857334148725,
          -3.589651782365363,
          -7,
          -3.7545776560447304,
          -7,
          -3.1076803464484275,
          -3.734319680859007,
          -7,
          -2.9913526737058977,
          -3.2075670505660874,
          -3.4417736628051845,
          -3.5100085129402347,
          -7,
          -7,
          -3.3883380679423025,
          -3.53198955141255,
          -3.251499168343637,
          -7,
          -3.7664128471123997,
          -2.887067969220036,
          -7,
          -7,
          -7,
          -3.780173243642594,
          -7,
          -7,
          -7,
          -2.5204507792823576,
          -7,
          -3.6025302223541824,
          -7,
          -7,
          -2.697488429424593,
          -7,
          -2.5228038604656158,
          -2.797514847073891,
          -7,
          -2.960530233278372,
          -3.3409065871395938,
          -3.355962079458681,
          -3.3229081045244717,
          -3.8185557792978027,
          -2.8502691206629827,
          -3.7640266076920375,
          -2.834375282515157,
          -7,
          -3.841859809775061,
          -3.1416378746732714,
          -2.938132192894469,
          -7,
          -3.4478038225123706,
          -7,
          -3.5514499979728753,
          -7,
          -7,
          -7,
          -7,
          -3.0658285940945165,
          -3.555578072772955,
          -7,
          -3.1684385521867724,
          -3.487641067547379,
          -4.082390377581715,
          -7,
          -7,
          -3.278296208091274,
          -3.7378285058957847,
          -3.4449031627954616,
          -3.7623033632877685,
          -7,
          -3.7690078709437738,
          -3.272405259414974,
          -2.509451444491814,
          -3.011170876192968,
          -3.6029660528414573,
          -7,
          -7,
          -3.767823498007517,
          -3.1958996524092336,
          -7,
          -7,
          -3.0720046720384486,
          -3.3456350782317283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.826398782187618,
          -3.434709763913882,
          -7,
          -7,
          -7,
          -3.7500453120117676,
          -3.476324317420228,
          -3.471438407389299,
          -7,
          -7,
          -7,
          -3.356790460351716,
          -3.0409581733842073,
          -2.1146339877270752,
          -3.226084115975824,
          -3.7382254481425052,
          -7,
          -3.4541161920372,
          -2.9997517607923823,
          -2.6772396187440677,
          -3.7794521834040617,
          -3.335650740478487,
          -3.485437481076301,
          -3.7513560997253936,
          -3.152135396861876,
          -3.0225461938888416,
          -1.338855653016986,
          -2.555466514980946,
          -2.801189254192592,
          -3.773164534737837,
          -2.8595385687347576,
          -2.820566320871381,
          -3.741939077729199,
          -7,
          -3.2909801206291553,
          -3.183725258045578,
          -7,
          -3.7537362221750104,
          -3.5054891384167237,
          -7,
          -3.2203696324513946,
          -7,
          -3.5524248457040857,
          -3.1276877875398506,
          -3.80126647048962,
          -3.584218112117405,
          -3.8165726960261033,
          -3.4659804625982287,
          -2.5012989485386004,
          -3.745230984528141,
          -3.2384583258072803,
          -7,
          -2.5761973294842266,
          -2.9029912724826192,
          -3.534026106056135,
          -3.446381812222442,
          -3.6099677206466616,
          -4.043755126968679,
          -3.3604040547299387,
          -7,
          -2.8178657323090817,
          -3.57128831854305,
          -3.0502742724374596,
          -7,
          -7,
          -7,
          -7,
          -3.0549480291063933,
          -3.759592308645975,
          -7,
          -3.2738689935949647,
          -7,
          -3.0022277907711667,
          -7,
          -2.820551732299791,
          -3.298998544333325,
          -3.0149403497929366,
          -3.4821109943313333,
          -3.298998544333325,
          -2.80180043987912,
          -2.349710783664991,
          -3.4869468392948924,
          -7,
          -3.3478761996098028,
          -3.205741564160098,
          -2.8061400553771305,
          -7,
          -3.3104808914626753,
          -7,
          -3.224325836319485,
          -2.927686156168301,
          -2.6090819169066433,
          -3.002536304303998,
          -7,
          -7,
          -3.3942181263801987,
          -7,
          -7,
          -3.779380011491656,
          -3.3690302218091532,
          -3.4565178578052627,
          -2.824244202541404,
          -7,
          -7,
          -3.8013841070255485,
          -3.602439832843189,
          -4.071587470514976,
          -3.9614685553507862,
          -3.9741507821112436,
          -3.8534700560147392,
          -4.0965972083578945,
          -3.1947422321739922,
          -3.263797406395141,
          -3.8578750255235628,
          -7,
          -4.399344848180367,
          -3.979791099026134,
          -3.842584279440326,
          -3.8559126891882447,
          -3.817449674494178,
          -3.6374980684202,
          -3.69204355900132,
          -4.195567580659728,
          -3.928737144597974,
          -7,
          -3.8402281093227377,
          -3.676254521729781,
          -3.3116646514869297,
          -3.292526805507146,
          -4.119272389514709,
          -3.799719530025879,
          -3.4615842710047984,
          -7,
          -3.5782480812332245,
          -3.985314180745103,
          -3.719960723392482,
          -4.414839698336927,
          -3.835056101720116,
          -7,
          -4.2316479611536,
          -7,
          -3.480712327117477,
          -3.7037855905304915,
          -3.4869214098225383,
          -7,
          -3.5374916772907965,
          -3.298366239267854,
          -2.9242103449581727,
          -3.373693397708325,
          -3.5157745272157848,
          -7,
          -3.18275152356222,
          -3.323870606540509,
          -3.905849826642319,
          -3.910584388197811,
          -3.493844657983327,
          -3.0992036383921366,
          -7,
          -3.3627651265554266,
          -3.5859117103194342,
          -7,
          -3.445253824487426,
          -4.154423973114647,
          -3.6800634274819486,
          -7,
          -3.2801060177153403,
          -3.4189958185764824,
          -3.884439426078936,
          -7,
          -3.9918460536448968,
          -7,
          -3.4870105827412474,
          -7,
          -3.6811557775072417,
          -3.1473671077937864,
          -3.7290634965186893,
          -7,
          -3.4133332990399112,
          -3.6598075789270585,
          -3.640474811527331,
          -3.1730405075510624,
          -3.425187657417824,
          -4.053808059920658,
          -3.3801181686358697,
          -3.472622387120777,
          -3.1756567472816637,
          -3.2186433339985294,
          -3.5809158565356407,
          -7,
          -3.8656006168719523,
          -7,
          -7,
          -3.9588504516796785,
          -3.6140178991060923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6151511448726805,
          -3.1584228065848823,
          -2.8128055778901238,
          -3.747644819328248,
          -2.9311399158597338,
          -3.0316023385073954,
          -3.389933545757039,
          -3.540454613671412,
          -7,
          -3.4195840447594805,
          -7,
          -3.750823266316629,
          -3.479191276121532,
          -7,
          -7,
          -7,
          -3.846708145456007,
          -3.377761438702263,
          -7,
          -7,
          -3.561101383649056,
          -7,
          -7,
          -3.828788748184953,
          -2.875692505482342,
          -7,
          -3.5799264331521883,
          -7,
          -7,
          -4.0454501184690255,
          -3.241724797625303,
          -3.5424978305931125,
          -7,
          -3.886377906758572,
          -2.7891639074176022,
          -7,
          -3.2921452678141216,
          -7,
          -3.8165726960261033,
          -2.9410142437055695,
          -7,
          -7,
          -3.865932668193186,
          -3.2116544005531824,
          -3.2890089115394634,
          -7,
          -7,
          -7,
          -7,
          -3.355579216240905,
          -3.1642636080226607,
          -4.012605257946353,
          -7,
          -3.3224260524059526,
          -3.613154437759265,
          -3.842297134328065,
          -3.67488409438502,
          -7,
          -7,
          -3.630156568140109,
          -3.3714988627144713,
          -3.0550781209749545,
          -3.1936254184928794,
          -3.947237607870666,
          -3.8159760009719856,
          -7,
          -4.078601800355391,
          -3.765966424785714,
          -7,
          -7,
          -3.5490032620257876,
          -3.0972958810760023,
          -7,
          -7,
          -3.092213632973267,
          -2.9959092838978454,
          -7,
          -3.2571984261393445,
          -3.3208383890175335,
          -3.593230668783007,
          -3.3165993020938607,
          -7,
          -3.3506356082589543,
          -3.3763944420372662,
          -3.807940721215499,
          -7,
          -7,
          -7,
          -3.8423283549514857,
          -3.8924285469452298,
          -7,
          -7,
          -3.01949801872729,
          -7,
          -3.2465657207019256,
          -3.2049551958985103,
          -3.3758921298735,
          -3.887561040930009,
          -7,
          -3.5257572431523108,
          -7,
          -3.2706788361447066,
          -3.201988527362111,
          -3.990338854787601,
          -7,
          -3.3501187447859833,
          -3.0141003215196207,
          -3.394291125637746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8409212001987716,
          -3.762753564933374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.647162832668712,
          -4.029992175377847,
          -3.975063996095236,
          -3.7735670489260587,
          -7,
          -7,
          -7,
          -7,
          -3.3851413476046583,
          -3.476324317420228,
          -3.473705886887772,
          -3.9184497424011577,
          -7,
          -3.873959654743353,
          -7,
          -7,
          -7,
          -7,
          -3.9749259860897626,
          -3.8172347304254983,
          -7,
          -7,
          -3.0149403497929366,
          -7,
          -7,
          -7,
          -3.606918525948291,
          -7,
          -3.383815365980431,
          -7,
          -2.937116510767054,
          -3.1879780800921296,
          -7,
          -7,
          -7,
          -2.699837725867246,
          -2.8311192397649134,
          -2.895054031395402,
          -7,
          -7,
          -7,
          -7,
          -2.2478862490937077,
          -7,
          -7,
          -2.7908262735997584,
          -1.9902774298426702,
          -2.8823347654013243,
          -2.1224801280417966,
          -2.582744965691277,
          -2.1211352942926553,
          -2.355296410064838,
          -2.2246884174572874,
          -3.39396559561541,
          -2.1787851634605526,
          -2.995854479874566,
          -7,
          -2.782677335215046,
          -3.256717745977487,
          -2.569373909615046,
          -3.2083741645947104,
          -7,
          -3.1531285942803624,
          -7,
          -3.222030604284222,
          -2.759775730538379,
          -3.031105362355941,
          -2.702900297964451,
          -3.6723749787460793,
          -2.8494194137968996,
          -7,
          -3.182889966569668,
          -3.820004306808318,
          -2.5600906481244183,
          -3.71357453777207,
          -2.174021229582495,
          -2.711596355290069,
          -2.1226591047698764,
          -2.504244254358882,
          -7,
          -2.44257774864341,
          -2.295247778814387,
          -7,
          -3.1838390370564214,
          -7,
          -7,
          -2.739868892417847,
          -2.7043343970832785,
          -3.1017333302326384,
          -7,
          -7,
          -2.625826713285711,
          -7,
          -3.041836622994272,
          -3.0411670190154996,
          -3.122434336266318,
          -7,
          -3.2908674032554646,
          -7,
          -2.5218300640818447,
          -7,
          -7,
          -2.1522078524021193,
          -3.2611041934228426,
          -2.7750380149595006,
          -7,
          -2.3106933123433606,
          -2.9457639231111736,
          -1.9867038916539217,
          -2.8846065812979305,
          -1.6241173588098425,
          -7,
          -2.836391940660465,
          -3.234643807761769,
          -2.571991954511636,
          -3.594613509160098,
          -7,
          -3.3057095504829292,
          -3.016531940957265,
          -3.065878352857392,
          -2.394693156774558,
          -7,
          -3.54476236021663,
          -7,
          -7,
          -3.585347911094591,
          -2.44224111761806,
          -7,
          -2.4599952560473914,
          -2.9906939606797516,
          -1.9519385545297605,
          -1.7112870812197314,
          -7,
          -3.1374596122778238,
          -3.071697945221614,
          -3.0843975191411492,
          -2.6339731557896737,
          -7,
          -7,
          -3.4452927694259716,
          -3.237732193117367,
          -2.9316273514645816,
          -3.659821158055705,
          -3.6607469316726013,
          -3.364493268376596,
          -7,
          -3.713448539662225,
          -3.038818787373656,
          -3.3956204125690137,
          -2.770575889253758,
          -1.9507513201667126,
          -3.173127969938208,
          -7,
          -7,
          -2.3350358776650255,
          -1.902741855124081,
          -7,
          -3.287129620719111,
          -4.1262613188638815,
          -7,
          -7,
          -7,
          -3.2987439434824073,
          -7,
          -3.1075183079511315,
          -2.9424049408561066,
          -2.65459609049376,
          -3.6151606643165564,
          -7,
          -3.739809599021359,
          -3.2885845449672853,
          -7,
          -3.379758615842701,
          -7,
          -1.8664636844249198,
          -7,
          -3.616580530085886,
          -7,
          -2.3719966385635733,
          -3.58849580100721,
          -7,
          -3.4252896164467943,
          -3.3898745583909853,
          -7,
          -2.6494233728226906,
          -3.406114192678464,
          -3.7717344253867693,
          -3.1603934910355846,
          -3.420038306133178,
          -3.2611041934228426,
          -2.929674317948588,
          -3.6327608884794387,
          -2.8467366967193763,
          -2.7771159829520387,
          -7,
          -7,
          -7,
          -3.6186755388851397,
          -7,
          -3.5896145406312665,
          -2.4665710723863543,
          -3.6183619311098782,
          -4.35197014444686,
          -7,
          -2.1921618075562983,
          -2.247915755339819,
          -3.657342736814626,
          -3.2130393712509595,
          -2.9058558202591933,
          -3.3904935265041733,
          -3.28390399699171,
          -2.6587916444639728,
          -3.7214808547700495,
          -7,
          -3.09968064110925,
          -2.6534395365102066,
          -3.629511534200453,
          -3.604118006192035,
          -7,
          -2.331871079112242,
          -7,
          -3.9275927579492365,
          -7,
          -2.6509928005631194,
          -7,
          -3.6596785560245753,
          -7,
          -3.2253954427184883,
          -3.617629297757842,
          -3.632356046239073,
          -3.1727974640157566,
          -3.7515100502700416,
          -7,
          -2.1362674690642875,
          -3.9399682905513362,
          -3.068020856241934,
          -7,
          -7,
          -7,
          -3.1158323168282034,
          -7,
          -7,
          -7,
          -7,
          -3.0627323632053938,
          -2.29867117295913,
          -3.928242183157309,
          -3.889648664903765,
          -3.5795549604009986,
          -3.3208729652272493,
          -2.6788217632521745,
          -7,
          -3.5870371177434555,
          -7,
          -3.1413713738187212,
          -2.664983670681465,
          -3.1031192535457137,
          -7,
          -7,
          -3.600210306409328,
          -3.6120417446452695,
          -7,
          -3.296665190261531,
          -3.0128372247051725,
          -3.543967810980926,
          -7,
          -3.286231854028553,
          -7,
          -7,
          -3.1702617153949575,
          -3.3399480616943507,
          -7,
          -2.8020892578817325,
          -3.437750562820388,
          -2.6415567309708003,
          -3.674769314015426,
          -2.3711118615101006,
          -7,
          -7,
          -7,
          -2.527793227465292,
          -2.891218767889852,
          -2.7044287918270453,
          -3.349180358996378,
          -3.1820657578164884,
          -7,
          -7,
          -7,
          -2.704777275913766,
          -2.8695250628572273,
          -2.4230714934960376,
          -1.533620412909489,
          -3.1679920981107994,
          -3.219933637552912,
          -7,
          -7,
          -7,
          -2.7549040548935664,
          -2.938948375793857,
          -3.5776066773625357,
          -2.710857489788406,
          -7,
          -7,
          -3.406625327867206,
          -3.5839917991983166,
          -1.8979456641871053,
          -2.0634559848506746,
          -2.1551519363678144,
          -3.1851878890039917,
          -3.3984608496082234,
          -2.6830282010520166,
          -2.6330020573082678,
          -7,
          -3.033462051371804,
          -7,
          -7,
          -2.047822259143102,
          -3.2464165068123942,
          -2.601218606857038,
          -1.8247222806425387,
          -3.278982116865443,
          -3.7272158209084925,
          -3.5280807144913133,
          -2.304967275955679,
          -3.512271225992589,
          -1.9345395056919514,
          -7,
          -7,
          -7,
          -3.0549480291063933,
          -7,
          -7,
          -7,
          -2.0881360887005513,
          -3.3119656603683665,
          -2.697467116913975,
          -7,
          -3.0787674351712444,
          -7,
          -3.0669778095571933,
          -2.131968431736007,
          -7,
          -3.6216493380712738,
          -3.1008872548535935,
          -3.9581008310880366,
          -7,
          -1.7836046842286568,
          -3.5409910910061515,
          -1.8154535181128486,
          -7,
          -7,
          -7,
          -1.981235965607963,
          -2.6528906949522417,
          -2.300018832269119,
          -2.4592337253806016,
          -3.113943352306837,
          -7,
          -1.9547699774270102,
          -3.6143698395482886,
          -3.6417714706539592,
          -3.34908316877959,
          -2.8504234343666353,
          -7,
          -1.6711869701015334,
          -7,
          -3.285107029566812,
          -2.9674971047891727,
          -4.017930232863559,
          -7,
          -7,
          -4.740331103292411,
          -3.38971364302292,
          -3.4368779277106576,
          -3.0698324778681014,
          -2.881159615232263,
          -7,
          -7,
          -4.371695749117709,
          -3.9678988267686317,
          -4.109160755162784,
          -3.3168506299260505,
          -7,
          -4.226617087636269,
          -3.524610794377594,
          -4.150480122270334,
          -4.077640389544002,
          -7,
          -4.13861668044601,
          -3.0666397361380295,
          -2.8560430122090255,
          -4.207365037469072,
          -7,
          -4.212249768898902,
          -3.5733126399548465,
          -7,
          -3.1543063709318093,
          -7,
          -3.928882112666166,
          -3.689077884492417,
          -3.8010147519958153,
          -7,
          -3.4911374839780263,
          -4.038341933653606,
          -3.3874308989061266,
          -4.271423367743581,
          -3.156490530223249,
          -3.3589812256253495,
          -3.5864834354604564,
          -3.2927897119911833,
          -3.743392160047862,
          -2.8181158760118716,
          -3.6936038520721226,
          -3.7513560997253936,
          -2.948522186033202,
          -3.4220314306536217,
          -3.2107197156810017,
          -3.4913336739315626,
          -2.274047172789609,
          -2.9310762969506765,
          -7,
          -2.398139311220743,
          -3.0000434272768626,
          -7,
          -3.9827233876685453,
          -3.8291268019900375,
          -7,
          -7,
          -3.102609480470218,
          -3.0325208298782202,
          -4.190747538701007,
          -7,
          -2.9164013036038754,
          -7,
          -3.2721062829317655,
          -7,
          -4.030839131797785,
          -3.5831137210293744,
          -3.122019172080031,
          -7,
          -3.6877964113812944,
          -3.4040493408544776,
          -3.0981345283359283,
          -2.663347505203127,
          -2.993964998195119,
          -3.989983458301399,
          -3.3362964345490296,
          -3.0004851169060904,
          -7,
          -2.4027463568008933,
          -3.5403619216668547,
          -3.3680388229322835,
          -3.5614880122402224,
          -7,
          -2.9591606876059813,
          -2.623795791562612,
          -4.063164412942957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1354904389696348,
          -2.7100403966611224,
          -2.353263964356718,
          -7,
          -2.8195439355418688,
          -2.8984166242181457,
          -7,
          -3.2547091655685,
          -7,
          -3.350441856535061,
          -7,
          -3.0199400975188997,
          -2.510778063328332,
          -3.638988159343682,
          -7,
          -7,
          -7,
          -2.8229848832234263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7600034015785693,
          -2.8271753482986925,
          -7,
          -3.2900982395923446,
          -7,
          -7,
          -4.632173744035556,
          -3.381588418818051,
          -3.7319042325346716,
          -7,
          -7,
          -2.44389944970457,
          -7,
          -2.7563594434924856,
          -7,
          -3.22219604630172,
          -2.5999448332762145,
          -7,
          -3.6050894618815805,
          -7,
          -3.0938592615034377,
          -2.707463718325151,
          -7,
          -3.407900540142635,
          -2.893206753059848,
          -7,
          -2.6399842480415883,
          -2.7723883930158575,
          -7,
          -7,
          -2.4719928544270404,
          -2.9777236052888476,
          -7,
          -3.4616485680634552,
          -7,
          -7,
          -7,
          -3.2640303441321223,
          -2.71676053323091,
          -3.018423082826786,
          -3.2614413093134877,
          -7,
          -7,
          -7,
          -3.6321534835106326,
          -7,
          -7,
          -2.7876178846259387,
          -2.4666879184866843,
          -7,
          -7,
          -2.5024271199844326,
          -2.365497487116762,
          -3.0310042813635367,
          -3.45400593810379,
          -2.924666875986673,
          -3.020084925984292,
          -3.246400090154285,
          -2.901821443893775,
          -2.9459914424728573,
          -3.4243915544102776,
          -3.688330818112266,
          -3.3733718171813005,
          -7,
          -3.5828584622244994,
          -4.118578839244122,
          -7,
          -3.1789769472931693,
          -7,
          -3.208581549418287,
          -7,
          -3.4739733021220007,
          -3.307180646118739,
          -3.4237918130180067,
          -2.612359947967774,
          -7,
          -2.808885867359812,
          -7,
          -2.8109042806687006,
          -2.6468392183446987,
          -3.91555811541152,
          -7,
          -3.4127124827451016,
          -3.190984983213069,
          -2.7960498415335424,
          -3.651181062444688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6865915864615024,
          -7,
          -3.253822438708073,
          -7,
          -3.638389407665336,
          -3.3049211619008916,
          -3.621072371143626,
          -3.347622699467242,
          -7,
          -2.919750317179154,
          -7,
          -2.97847590970199,
          -3.962274604623315,
          -7,
          -7,
          -7,
          -7,
          -3.3310221710418286,
          -7,
          -3.3118784613957004,
          -3.346548558548474,
          -3.343014497150768,
          -3.8287243271387914,
          -7,
          -7,
          -3.5970366649776535,
          -3.603144372620182,
          -3.751048034820188,
          -7,
          -7,
          -2.796227314029439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6027976651019955,
          -3.7207379770184255,
          -7,
          -7,
          -4.197776611271387,
          -7,
          -7,
          -2.7151673578484576,
          -7,
          -7,
          -7,
          -3.863005451385769,
          -3.8910912264677235,
          -7,
          -2.6714505542124947,
          -4.027849152244213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3218764508736407,
          -7,
          -7,
          -7,
          -7,
          -3.3176455432211585,
          -7,
          -3.494850021680094,
          -7,
          -2.4144162029529017,
          -7,
          -4.238472656948356,
          -7,
          -7,
          -7,
          -7,
          -3.3474275986185416,
          -2.9206450014067875,
          -7,
          -7,
          -7,
          -7,
          -3.528413157965513,
          -7,
          -3.6072405038317426,
          -3.7989267385772014,
          -7,
          -7,
          -7,
          -7,
          -3.09377178149873,
          -2.0495703914375065,
          -7,
          -7,
          -7,
          -3.3375206955987693,
          -7,
          -7,
          -7,
          -7,
          -2.959756672990995,
          -1.842445540218536,
          -7,
          -7,
          -5.125663403464531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5033820634737327,
          -7,
          -7,
          -7,
          -3.8154934557532534,
          -3.547528576459782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.394976719554564,
          -3.591954555046735,
          -7,
          -3.248524985024069,
          -3.0538464268522527,
          -7,
          -7,
          -3.131206076537746,
          -7,
          -7,
          -7,
          -3.637689819118401,
          -4.07843869186193,
          -7,
          -7,
          -3.1398790864012365,
          -7,
          -3.7840464158081133,
          -7,
          -7,
          -3.34908316877959,
          -7,
          -3.639586086673426,
          -3.0881360887005513,
          -3.329978681161953,
          -7,
          -7,
          -7,
          -7,
          -4.693234352034844,
          -7,
          -3.4565178578052627,
          -3.614158709509175,
          -7,
          -7,
          -3.3466788990302154,
          -7,
          -7,
          -7,
          -3.113423372534924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6879341244886357,
          -3.1324197980976147,
          -3.855397996654069,
          -3.3892547068486483,
          -7,
          -7,
          -2.433769833924866,
          -7,
          -3.1622656142980214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.065554818945707,
          -7,
          -7,
          -7,
          -2.893206753059848,
          -7,
          -7,
          -7,
          -3.1082266563749283,
          -3.388988785124714,
          -2.805047523584979,
          -3.2790963297476012,
          -7,
          -7,
          -3.850289281004146,
          -7,
          -2.708420900134713,
          -7,
          -7,
          -2.909556029241175,
          -7,
          -7,
          -3.3242824552976926,
          -7,
          -4.282055370683707,
          -7,
          -3.2488720042050603,
          -3.575237893712713,
          -7,
          -7,
          -3.5930644316587173,
          -7,
          -7,
          -3.2278867046136734,
          -2.1012887156115734,
          -7,
          -2.7507654498940113,
          -3.637689819118401,
          -2.962369335670021,
          -3.370513089598593,
          -7,
          -3.9545801627437576,
          -2.4630393386237817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2663885100087673,
          -2.2104714000467327,
          -7,
          -3.395501124305626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.133347265586243,
          -4.482554972941678,
          -7,
          -2.624797578960761,
          -7,
          -7,
          -2.716003343634799,
          -2.8041394323353503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8744818176994666,
          -7,
          -7,
          -7,
          -3.988603543345664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3427515672308834,
          -7,
          -7,
          -7,
          -3.617503579279065,
          -7,
          -7,
          -7,
          -4.711587918209924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.963693405238019,
          -3.721150843749684,
          -7,
          -7,
          -7,
          -7,
          -2.874191804679071,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.454387467146955,
          -7,
          -7,
          -7,
          -5.132118745149423,
          -3.595055089759304,
          -7,
          -2.780767218408403,
          -7,
          -7,
          -2.814802321164222,
          -7,
          -3.9586594270529334,
          -3.5129510799724906,
          -3.312811826212088,
          -7,
          -7,
          -7,
          -4.925350773964699,
          -2.4909528910913434,
          -7,
          -7,
          -2.6473829701146196,
          -3.759592308645975,
          -7,
          -7,
          -7,
          -2.9421734670337982,
          -7,
          -3.032417278832769,
          -7,
          -7,
          -2.430961453354948,
          -3.123524980942732,
          -7,
          -7,
          -7,
          -3.542985391369392,
          -4.9722445064263345,
          -7,
          -7,
          -3.6965228010284625,
          -3.000723221619096,
          -7,
          -1.9091993191743837,
          -7,
          -3.2425414282983844,
          -2.5553789986175914,
          -3.1233615587462964,
          -3.3348556896172914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6504046698680317,
          -7,
          -3.7256666603141784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2900791521022015,
          -7,
          -7,
          -7,
          -4.30513631894364,
          -7,
          -7,
          -4.280760426326267,
          -7,
          -7,
          -4.445682026852679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.805296916157985,
          -7,
          -7,
          -3.8859545764960806,
          -7,
          -4.297461397643421,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.614517569528736,
          -2.787814567063023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.633524001321515,
          -3.693507108634517,
          -7,
          -7,
          -4.36084891709733,
          -3.5046158296730847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.991823926808468,
          -4.709854846624769,
          -7,
          -7,
          -3.6922298357727557,
          -7,
          -4.256732174125921,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.654705846613685,
          -4.783088512755294,
          -7,
          -7,
          -7,
          -4.898500299212667,
          -3.8858416187005536,
          -2.7431176252147416,
          -4.040661665909112,
          -4.257184013472698,
          -7,
          -4.569469498508897,
          -7,
          -7,
          -4.608493941666254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.168600594123457,
          -2.8872420998960684,
          -3.884001924768787,
          -7,
          -7,
          -4.343290402353433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.320395570236469,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.190984983213069,
          -7,
          -7,
          -3.7805333253164046,
          -7,
          -7,
          -7,
          -2.486366067362747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.492613737514819,
          -7,
          -7,
          -3.448242412634439,
          -3.461698570306548,
          -7,
          -3.4702634469650784,
          -7,
          -2.919601023784111,
          -3.4064185122774226,
          -7,
          -7,
          -7,
          -2.7331972651065692,
          -7,
          -7,
          -3.2489536154957075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3364597338485296,
          -3.554797767332964,
          -3.466274321789292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3406423775607053,
          -7,
          -3.184123354239671,
          -7,
          -3.796157876906914,
          -4.329916282216644,
          -3.6217992240026677,
          -3.069112851387121,
          -3.8292394281413893,
          -3.1684974835230326,
          -2.783427117917317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0755469613925306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6646419755561257,
          -7,
          -7,
          -7,
          -7,
          -3.3463529744506384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6967407046991165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0086001717619175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7652213663049805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.739572344450092,
          -3.0269416279590295,
          -7,
          -3.4363217001397333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6578204560156973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.832508912706236,
          -7,
          -7,
          -3.295347148333618,
          -7,
          -7,
          -7,
          -4.2052937046204155,
          -7,
          -7,
          -7,
          -7,
          -3.6163704722912695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.866425188468594,
          -2.945523292505061,
          -2.7944880466591697,
          -7,
          -4.040641891544537,
          -3.150756439860309,
          -7,
          -7,
          -2.7638022240745928,
          -3.2116544005531824,
          -7,
          -3.788056364365024,
          -7,
          -7,
          -7,
          -3.0354297381845483,
          -2.8744818176994666,
          -2.6665179805548807,
          -7,
          -7,
          -2.6225593863895877,
          -7,
          -4.443153421877831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.478154824288863,
          -7,
          -3.315182866579504,
          -7,
          -7,
          -3.111262513659065,
          -3.4781334281005174,
          -7,
          -7,
          -7,
          -7,
          -3.0927206446840994,
          -3.5957166199434245,
          -4.153418485037711,
          -7,
          -7,
          -7,
          -7,
          -3.4510184521554574,
          -2.9570323163469383,
          -7,
          -7,
          -4.524146119853344,
          -7,
          -2.922552466761376,
          -7,
          -2.979548374704095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151798722592861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.640978057358332,
          -2.7601710828477963,
          -3.6546577546495245,
          -3.428098781384637,
          -7,
          -7,
          -3.1911714557285586,
          -7,
          -3.109898116073996,
          -7,
          -7,
          -7,
          -7,
          -3.6564815157904986,
          -7,
          -4.1804126328383235,
          -7,
          -7,
          -7,
          -7,
          -4.216838603475208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.225352364358893,
          -3.5075860397630105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.038977622332692,
          -3.748575616930992,
          -3.5594577418107205,
          -7,
          -7,
          -3.893040111957118,
          -7,
          -2.4819201376014313,
          -3.2111205412580492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.430633139261264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.08878020373431,
          -1.57012454439491,
          -2.3629848397370954,
          -1.8583079881794906,
          -2.0505844458694535,
          -7,
          -3.7898381227114672,
          -7,
          -7,
          -7,
          -2.1576917668933566,
          -2.2909245593827543,
          -7,
          -7,
          -3.4581340270643848,
          -7,
          -7,
          -7,
          -7,
          -3.316106985344138,
          -7,
          -7,
          -2.9120093755869783,
          -7,
          -3.415140352195873,
          -7,
          -3.321184027302314,
          -3.203032887014711,
          -7,
          -3.6546577546495245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.330920830595236,
          -4.08339510788965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.424718337331567,
          -7,
          -3.8675264111997434,
          -7,
          -2.828015064223977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9243309847086785,
          -3.0058237530290275,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -3.0572856444182146,
          -7,
          -7,
          -7,
          -3.3754807146185724,
          -7,
          -7,
          -7,
          -7,
          -2.909556029241175,
          -2.6627578316815743,
          -7,
          -2.596047007545439,
          -2.3404441148401185,
          -3.9022897535273424,
          -7,
          -7,
          -7,
          -7,
          -3.1048284036536553,
          -2.6027832129470583,
          -7,
          -2.805160901599434,
          -7,
          -7,
          -7,
          -3.8313577854420675,
          -7,
          -7,
          -7,
          -4.019178624894263,
          -7,
          -7,
          -3.113943352306837,
          -3.8098373723298224,
          -7,
          -7,
          -2.9849771264154934,
          -7,
          -7,
          -3.4944792655103964,
          -3.4340097093697395,
          -7,
          -7,
          -7,
          -2.424881636631067,
          -2.5221833176186865,
          -3.1907517799201845,
          -1.568201724066995,
          -7,
          -2.979548374704095,
          -1.2143254249690765,
          -1.9556877503135057,
          -2.9845273133437926,
          -7,
          -7,
          -2.898026718171092,
          -7,
          -7,
          -7,
          -5.132672649387063,
          -3.9056340013269546,
          -7,
          -3.990094550948234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1997551772534747,
          -2.2900346113625183,
          -2.471780506250551,
          -7,
          -5.351437466480003,
          -3.5826314394896364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.447623097760286,
          -7,
          -7,
          -7,
          -3.417554724363455,
          -2.621176281775035,
          -2.8750612633917,
          -7,
          -7,
          -4.5574049321616235,
          -4.09029333131011,
          -5.398319126995318,
          -7,
          -3.8081434257614912,
          -4.71858887116877,
          -3.791901080009571,
          -7,
          -7,
          -7,
          -3.564784384503987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.673020907128896,
          -2.47928731647617,
          -2.5095385335524316,
          -2.5506986232492888,
          -2.7007037171450192,
          -2.6719755425169955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.88160146454071,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.388353459785864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.367907292617928,
          -3.8980666606416348,
          -7,
          -7,
          -7,
          -5.236035669145632,
          -2.17696773661231,
          -3.52283531366053,
          -7,
          -4.185556319479281,
          -4.38147609027503,
          -7,
          -4.440672988293759,
          -7,
          -1.8151348166368135,
          -7,
          -7,
          -7,
          -7,
          -3.951107812817263,
          -5.488264382585144,
          -7,
          -7,
          -2.558879923655098,
          -7,
          -4.479431337197736,
          -7,
          -7,
          -3.607383528526565,
          -7,
          -7,
          -4.02530586526477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.200434601526638,
          -7,
          -7,
          -4.245665630974936,
          -7,
          -7,
          -4.268753432587635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2456888879350108,
          -3.8888812140288245,
          -7,
          -7,
          -3.2670739033137606,
          -7,
          -1.5088921272146836,
          -7,
          -3.4621733047067904,
          -7,
          -3.7194072542466587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.682686478249768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.949145952419944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.493217484224955,
          -7,
          -7,
          -7,
          -1.864078461683041,
          -7,
          -2.794906106516804,
          -7,
          -2.962606072924127,
          -3.3013676489684136,
          -7,
          -7,
          -7,
          -2.9537596917332287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3199384399803087,
          -7,
          -7,
          -7,
          -2.8673496171887924,
          -2.2834268744391006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3664229572259727,
          -3.148495270466624,
          -3.4912215762392833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8167714123333463,
          -7,
          -7,
          -3.2055426785885324,
          -3.456345785828081,
          -2.523045749505392,
          -2.7983052820219765,
          -3.355557936162409,
          -7,
          -7,
          -7,
          -3.563639269509036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.833083334178343,
          -7,
          -7,
          -3.5488682907918565,
          -7,
          -2.8743368353973677,
          -7,
          -7,
          -7,
          -2.211902040898719,
          -2.9856060830524367,
          -7,
          -7,
          -3.000434077479319,
          -7,
          -7,
          -2.814913181275074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2483820141396533,
          -7,
          -2.9380190974762104,
          -7,
          -2.259389071298138,
          -7,
          -7,
          -7,
          -3.5129844039304507,
          -7,
          -7,
          -7,
          -2.229169702539101,
          -7,
          -7,
          -7,
          -3.4596802769848254,
          -3.1048284036536553,
          -2.7906369619317033,
          -7,
          -7,
          -3.4413808849165113,
          -7,
          -7,
          -7,
          -7,
          -3.674034000431255,
          -2.6629937971760524,
          -3.1436392352745433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3932241163612975,
          -3.55303301620244,
          -2.9116901587538613,
          -7,
          -7,
          -3.6909635414210205,
          -7,
          -7,
          -7,
          -3.039166163427521,
          -3.0818991280636494,
          -3.1970047280230456,
          -2.6020599913279625,
          -7,
          -7,
          -7,
          -2.9751927658771193,
          -7,
          -7,
          -3.2093139057259306,
          -2.7267109357405928,
          -1.9790487971416582,
          -2.8115750058705933,
          -3.0549958615291417,
          -2.208732401028409,
          -2.104350519242735,
          -3.4265112613645754,
          -3.4962144560637816,
          -2.4765418090274287,
          -7,
          -3.3820170425748683,
          -7,
          -2.885587356189656,
          -2.7998572591896123,
          -7,
          -7,
          -3.012731800628455,
          -7,
          -3.5906065622644463,
          -3.3919930722597127,
          -2.656577291396114,
          -2.999130541287371,
          -3.4956830676169153,
          -2.792881745385397,
          -3.1144441724452543,
          -3.1762359997608716,
          -7,
          -3.501470072100412,
          -7,
          -3.1542350307644376,
          -3.3640817414110704,
          -2.447246653826335,
          -3.42932153909737,
          -7,
          -3.159717546180216,
          -2.7075701760979367,
          -3.467312062980552,
          -3.177680759848778,
          -3.4807253789884878,
          -3.381295623003826,
          -3.151523067564944,
          -7,
          -3.2736522256933327,
          -3.0863598306747484,
          -3.3727279408855955,
          -2.9406160823374075,
          -7,
          -7,
          -2.484157424365381,
          -7,
          -3.656385719058688,
          -3.4876589081344687,
          -7,
          -3.614158709509175,
          -7,
          -7,
          -2.714795291445831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.739748101021452,
          -3.0282458165724737,
          -2.3854871092452794,
          -2.8489277132270785,
          -3.377404915549636,
          -7,
          -4.090258052931317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.754348335711019,
          -7,
          -3.6009184694091028,
          -7,
          -7,
          -7,
          -3.1476376842231093,
          -7,
          -2.510338743528832,
          -3.044800990163838,
          -2.70557864861638,
          -3.048019362723852,
          -7,
          -7,
          -3.0209134689673647,
          -7,
          -2.6153320289821393,
          -7,
          -7,
          -3.6027109449575576,
          -3.728272597895017,
          -3.3102683666324477,
          -7,
          -3.3205357297018523,
          -3.7682087736070127,
          -3.4413808849165113,
          -2.737341756691405,
          -2.9706567545749585,
          -3.188534769899359,
          -3.198244586228236,
          -2.7614579752546033,
          -3.7697464671794534,
          -7,
          -7,
          -2.768478103278721,
          -2.4007651427429604,
          -7,
          -3.0610753236297916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4959603948817053,
          -3.857573704147496,
          -2.9273703630390235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5085297189712863,
          -7,
          -3.0280117586406954,
          -7,
          -7,
          -2.0711145667779136,
          -3.564026577265475,
          -7,
          -7,
          -7,
          -3.22219604630172,
          -3.0813473078041325,
          -7,
          -7,
          -7,
          -3.3241795297178998,
          -3.5671440451956573,
          -3.370050237074868,
          -7,
          -7,
          -3.4134506510073246,
          -7,
          -7,
          -7,
          -3.1624150361064465,
          -7,
          -7,
          -7,
          -2.832082924950745,
          -7,
          -4.019427873252668,
          -7,
          -7,
          -3.082139596192321,
          -7,
          -3.5185139398778875,
          -3.055531225050898,
          -7,
          -3.6232492903979003,
          -2.839352328895421,
          -3.266231696689893,
          -3.026805549473848,
          -7,
          -3.308919955522892,
          -7,
          -3.3333800930468676,
          -7,
          -7,
          -7,
          -7,
          -3.3912880485952974,
          -3.358759477097732,
          -7,
          -7,
          -7,
          -3.5407047833107623,
          -7,
          -2.7338390006971496,
          -2.484537093918053,
          -2.607776603741693,
          -7,
          -2.7246853882373596,
          -7,
          -3.952792443044092,
          -7,
          -7,
          -2.5643278286571864,
          -2.252479604919136,
          -3.3898745583909853,
          -3.1245042248342823,
          -7,
          -3.440279213235588,
          -2.7681591079368206,
          -1.6363675209245252,
          -3.8859828113549733,
          -4.811416640470285,
          -3.3475251599986895,
          -2.4608978427565478,
          -2.9599948383284165,
          -7,
          -3.3602146132953523,
          -7,
          -2.5555341291847458,
          -3.24699069924155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.997294136783413,
          -3.0517311960598494,
          -2.8830933585756897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1577588860468637,
          -7,
          -2.722516402716588,
          -3.8969669019331548,
          -2.8808655382747417,
          -7,
          -7,
          -7,
          -3.3104808914626753,
          -7,
          -3.3259741999930115,
          -7,
          -3.5499672901284045,
          -7,
          -7,
          -7,
          -2.4614610083620283,
          -3.5643109099606027,
          -2.4461227639106142,
          -2.0401374979206164,
          -3.6406801532776654,
          -3.2314695904306814,
          -7,
          -3.3803921600570273,
          -3.5146805441249818,
          -3.6724673130680823,
          -2.876217840591642,
          -7,
          -7,
          -3.516931808868013,
          -7,
          -7,
          -7,
          -3.0014091684058766,
          -2.8663295425225357,
          -2.903496947335859,
          -7,
          -7,
          -4.096303156190983,
          -3.285016917629171,
          -7,
          -3.546953732587764,
          -7,
          -7,
          -1.7927850365787643,
          -3.269629674357553,
          -3.558708570533166,
          -2.922552466761376,
          -3.8998751960210107,
          -2.8757555792580547,
          -3.714078164981856,
          -2.916453948549925,
          -4.41458513624822,
          -3.0624409566309168,
          -7,
          -7,
          -7,
          -3.2738689935949647,
          -2.0881360887005513,
          -2.9421734670337982,
          -3.447623097760286,
          -7,
          -2.0743287432532127,
          -2.747855531533609,
          -7,
          -3.5333907080175515,
          -3.4559102403827433,
          -2.79140991566716,
          -3.7773543130842087,
          -7,
          -3.39049941719982,
          -3.139332147259633,
          -3.9786496522708426,
          -7,
          -3.2052043639481447,
          -2.9839295682683518,
          -1.9224573872938893,
          -7,
          -3.1782573208121887,
          -3.3932241163612975,
          -3.1192558892779365,
          -2.4640035246143746,
          -1.5806866301735132,
          -2.8949802909279687,
          -2.6672661193822744,
          -7,
          -3.3343532083835172,
          -7,
          -7,
          -7,
          -2.8913283438821975,
          -7,
          -2.6446717677187572,
          -7,
          -7,
          -3.7116701727504755,
          -3.939911295589801,
          -7,
          -7,
          -4.426690147338194,
          -7,
          -7,
          -4.6104259215337375,
          -3.6351652815006217,
          -7,
          -7,
          -7,
          -4.4326566786702815,
          -4.40353659220864,
          -3.902459802999296,
          -7,
          -4.690054246427676,
          -4.329829924701549,
          -7,
          -7,
          -7,
          -5.391183960678366,
          -4.314183339137378,
          -3.6001618428040993,
          -4.162803292382675,
          -7,
          -4.67521907955274,
          -7,
          -7,
          -4.185251678187814,
          -7,
          -4.216350669139196,
          -4.058255158229489,
          -7,
          -7,
          -4.1438887581092745,
          -7,
          -7,
          -7,
          -3.933770650991845,
          -7,
          -3.9877734848951945,
          -3.7939336804318997,
          -3.978043493909963,
          -3.8023631743095474,
          -4.364156856122531,
          -7,
          -4.063888540530298,
          -4.06628864526571,
          -7,
          -3.991816550945799,
          -3.5908139802145596,
          -3.3346023369658453,
          -7,
          -3.561846442129789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0964450691230585,
          -4.189431355695534,
          -5.707980433125192,
          -7,
          -2.7451398788031467,
          -7,
          -3.9640945574951996,
          -7,
          -4.3670440252690375,
          -7,
          -7,
          -7,
          -7,
          -4.460521992900201,
          -4.49454417069265,
          -3.4643404846276673,
          -3.657629431388952,
          -3.9138138523837167,
          -3.9537865290254914,
          -3.365835495343365,
          -7,
          -3.0378927084593257,
          -4.663583150614173,
          -7,
          -3.9530499415686555,
          -7,
          -7,
          -4.024926716417962,
          -3.8564670670037584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3185224421412562,
          -2.609807769328702,
          -2.5869962448920862,
          -7,
          -3.269512944217916,
          -3.422334447617187,
          -3.326949994165999,
          -3.5826314394896364,
          -3.0960405542954277,
          -3.1696744340588068,
          -7,
          -3.605318516604717,
          -2.6572029965081487,
          -7,
          -7,
          -4.181700704415961,
          -7,
          -3.507248513918787,
          -7,
          -7,
          -3.591231611251554,
          -7,
          -7,
          -2.409812402140273,
          -2.808632904835291,
          -7,
          -7,
          -7,
          -7,
          -4.314899024273395,
          -3.7582717409698585,
          -7,
          -7,
          -3.660770643527697,
          -2.5702092522113107,
          -7,
          -2.5258774093447136,
          -7,
          -3.2347702951609167,
          -2.711474223671339,
          -7,
          -7,
          -7,
          -3.0537185238968583,
          -2.8194123112093252,
          -7,
          -7,
          -3.0178677189635055,
          -7,
          -2.866877814337499,
          -3.1056993786226297,
          -3.94126290931895,
          -7,
          -2.358183228180746,
          -2.8024316264307236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8958643512472992,
          -2.863967853967334,
          -3.671913012441587,
          -3.758684849882441,
          -3.0572856444182146,
          -7,
          -7,
          -3.1324197980976147,
          -7,
          -7,
          -2.9953060589380653,
          -2.5668658433400444,
          -7,
          -7,
          -2.5801100111243995,
          -2.8480522019581387,
          -2.9291268648546622,
          -2.710223174463516,
          -3.019867665170659,
          -3.674125982742708,
          -2.905376069332856,
          -2.808346035740395,
          -3.3214258105330647,
          -7,
          -7,
          -7,
          -3.368100851709351,
          -7,
          -7,
          -7,
          -3.1702617153949575,
          -7,
          -3.5518645756606655,
          -3.292920299600006,
          -7,
          -3.665017825412473,
          -3.203168922875464,
          -2.816525369214973,
          -7,
          -2.709027541498756,
          -7,
          -2.5871494982543437,
          -2.631173096220426,
          -7,
          -7,
          -3.255393125707304,
          -2.4872798164430687,
          -2.9935178724720797,
          -2.8604877374747018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.347272603130747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5386993795424067,
          -3.466274321789292,
          -7,
          -3.8009231818132183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6774505159720032,
          -7,
          -7,
          -3.235949071135977,
          -7,
          -7,
          -7,
          -7,
          -3.006359059989323,
          -7,
          -7,
          -3.236033147117636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.204559483359148,
          -7,
          -7,
          -7,
          -3.893983567211847,
          -2.955233285577666,
          -3.1072099696478683,
          -7,
          -7,
          -7,
          -7,
          -3.5599066250361124,
          -7,
          -7,
          -7,
          -3.2747582873708003,
          -1.765786159439582,
          -2.5599066250361124,
          -7,
          -2.709905669040404,
          -2.5285953576940683,
          -7,
          -4.388622137165492,
          -2.57978359661681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0517311960598494,
          -7,
          -4.141242767858726,
          -7,
          -2.632963168167261,
          -7,
          -7,
          -2.939219635854818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.130140705819276,
          -3.440436766105774,
          -2.822712785926196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6834973176798114,
          -7,
          -4.149265311738653,
          -2.7573960287930244,
          -7,
          -7,
          -7,
          -7,
          -2.7255032688593155,
          -7,
          -7,
          -4.6482103406529705,
          -7,
          -7,
          -7,
          -7,
          -3.874945436085532,
          -7,
          -2.8692317197309762,
          -7,
          -7,
          -7,
          -7,
          -3.239549720840473,
          -2.9542425094393248,
          -7,
          -3.7678030494335566,
          -7,
          -7,
          -2.690196080028514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14903426716125,
          -7,
          -7,
          -7,
          -3.3700039246800597,
          -7,
          -2.3703280077795106,
          -7,
          -3.1502446018730703,
          -3.900530982452756,
          -7,
          -7,
          -7,
          -7,
          -3.4811200128020143,
          -7,
          -7,
          -7,
          -7,
          -3.629715332647132,
          -7,
          -3.6953357196809247,
          -4.152165990675555,
          -7,
          -7,
          -7,
          -3.9523608832066466,
          -7,
          -2.661654961009687,
          -7,
          -7,
          -7,
          -3.520767292621454,
          -3.1680553034591394,
          -7,
          -7,
          -4.367505009418113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3750536497006407,
          -3.681693392004564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5234212743726316,
          -7,
          -7,
          -2.1509756144710184,
          -4.240449398993299,
          -7,
          -7,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5747255835940734,
          -3.2229764498933915,
          -7,
          -4.248152651817513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9215824403934163,
          -7,
          -4.279826581794015,
          -7,
          -3.7182525000977504,
          -3.7512174975598183,
          -7,
          -7,
          -3.104487111312395,
          -7,
          -3.06595298031387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073571728304925,
          -7,
          -7,
          -7,
          -3.204933522354145,
          -7,
          -7,
          -3.2629254693318317,
          -3.041195233696809,
          -7,
          -3.076640443670342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8930215923314397,
          -7,
          -7,
          -7,
          -2.9474337218870508,
          -3.6089536992758626,
          -2.0662094144339336,
          -7,
          -5.235823767721927,
          -7,
          -7,
          -2.9395192526186187,
          -7,
          -7,
          -2.7315887651867388,
          -3.0213960567419713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6413997386429875,
          -2.2821687783046416,
          -2.3263358609287517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3362595520141936,
          -7,
          -7,
          -7,
          -4.314583426205657,
          -3.305136318943639,
          -3.533441574084827,
          -3.012415374762433,
          -4.710760288222427,
          -7,
          -7,
          -7,
          -3.211876648386651,
          -7,
          -3.0040346161083726,
          -2.2612628687924934,
          -7,
          -3.187520720836463,
          -2.9916690073799486,
          -7,
          -7,
          -7,
          -2.6437815628948647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2273209825488447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9840319802711806,
          -7,
          -7,
          -2.0848644436153325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.8283866045408,
          -2.964200682862941,
          -7,
          -7,
          -7,
          -7,
          -3.3119656603683665,
          -7,
          -7,
          -2.0743287432532127,
          -7,
          -2.407603325351417,
          -7,
          -7,
          -2.9943171526696366,
          -3.090258052931316,
          -7,
          -7,
          -4.379668034033654,
          -3.432024532665689,
          -4.796091901355749,
          -7,
          -7,
          -4.1153525207127135,
          -2.407501745719001,
          -7,
          -7,
          -2.780317312140151,
          -7,
          -3.0815633209803854,
          -2.3922781139158866,
          -7,
          -2.6646419755561257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8616339626031766,
          -7,
          -3.1798525964727418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.922315356850907,
          -7,
          -7,
          -7,
          -5.387871910331762,
          -7,
          -4.230282835852113,
          -4.103050747435957,
          -7,
          -7,
          -7,
          -7,
          -4.4728514865317806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.451863159220613,
          -7,
          -4.613482402816421,
          -7,
          -4.669781615208537,
          -4.764859552129425,
          -7,
          -7,
          -7,
          -7,
          -4.536361450403717,
          -7,
          -7,
          -7,
          -4.184274913997588,
          -4.680072499759905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.99139001307188,
          -5.4878818393933395,
          -5.706386602541032,
          -7,
          -7,
          -7,
          -4.654229501390483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.320789977698806,
          -4.130382020756808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.466195154039558,
          -4.955721415247588,
          -7,
          -5.046415165620504,
          -7,
          -7,
          -4.306392856397526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.46821436276855,
          -3.3463529744506384,
          -3.483102099521368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.742568034366142,
          -7,
          -4.495821753385906,
          -3.1307624896373274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6402329136549687,
          -3.517591730711908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.793315333574228,
          -7,
          -7,
          -7,
          -2.97904226290937,
          -7,
          -3.455606112581867,
          -7,
          -7,
          -3.4040269092889157,
          -7,
          -7,
          -7,
          -7,
          -3.375114684692225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.98344585734134,
          -7,
          -7,
          -2.83416628394262,
          -3.507855871695831,
          -7,
          -4.144200460183879,
          -7,
          -7,
          -7,
          -2.8384292797022423,
          -3.631033790150154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4972752863579952,
          -7,
          -7,
          -3.7892986111594413,
          -3.726737394049776,
          -7,
          -7,
          -3.702150395107271,
          -7,
          -3.7311050512159203,
          -7,
          -4.030073230712518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0352295563502123,
          -3.359076226059263,
          -7,
          -7,
          -7,
          -2.6074550232146687,
          -3.916944993889482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6852937813867843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.518382315545344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.82303928223169,
          -7,
          -2.329006517271025,
          -7,
          -7,
          -3.135868120615886,
          -3.8166389448984614,
          -7,
          -7,
          -3.386753683729159,
          -2.563629384689655,
          -1.7700147364996375,
          -7,
          -7,
          -7,
          -7,
          -3.218629270892973,
          -3.9581336756762355,
          -7,
          -2.546106989324988,
          -2.948247974842369,
          -2.1957267300569976,
          -7,
          -7,
          -2.4944076056666726,
          -2.4371160930480786,
          -7,
          -3.794644866269577,
          -2.4480188730153554,
          -7,
          -3.287129620719111,
          -7,
          -3.5285310606354114,
          -7,
          -3.344588742578714,
          -7,
          -2.6577727077355213,
          -7,
          -4.031641475693449,
          -7,
          -2.7505083948513462,
          -2.9443592755072294,
          -7,
          -3.2823955047425257,
          -7,
          -2.9253120914996495,
          -3.6591552809406296,
          -2.526016021340753,
          -7,
          -2.6939228573158918,
          -2.3359327413291835,
          -1.3395573674054908,
          -3.101689805602919,
          -7,
          -2.300305567669649,
          -2.660338357558161,
          -3.089551882886454,
          -7,
          -7,
          -3.286231854028553,
          -2.192381579384681,
          -7,
          -3.693023067923694,
          -7,
          -7,
          -2.307833703718926,
          -7,
          -3.5299434016586693,
          -2.6049199991419503,
          -3.286905352972375,
          -2.908699432352224,
          -3.44832298764699,
          -7,
          -3.561101383649056,
          -7,
          -7,
          -2.771685449409057,
          -7,
          -3.3298045221640695,
          -7,
          -3.3165993020938607,
          -3.375846436309156,
          -2.6501131644435714,
          -7,
          -2.387800377321158,
          -7,
          -3.3884513797296045,
          -7,
          -2.9932524799207627,
          -3.2757719001649312,
          -7,
          -3.604657972047871,
          -7,
          -3.577721524509021,
          -3.11402686244687,
          -3.0023820749327608,
          -4.1900794539415145,
          -7,
          -7,
          -2.954724790979063,
          -2.4984727249945853,
          -7,
          -2.076957391260839,
          -2.5506868726984986,
          -1.513479055910221,
          -1.9254071412178324,
          -3.361538971269279,
          -3.31722734917642,
          -7,
          -7,
          -3.1294354674921263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3661293256157254,
          -4.065796247841191,
          -7,
          -3.9188687433809846,
          -7,
          -3.8537112456286655,
          -2.193451997150143,
          -3.1415542841654776,
          -3.033745336013974,
          -7,
          -7,
          -2.865042678343799,
          -2.2351242640194617,
          -7,
          -2.414734659049227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.081527326244805,
          -3.526920532638649,
          -3.494961186838928,
          -7,
          -7,
          -3.9514832307522934,
          -3.2657609167176105,
          -3.0081741840064264,
          -7,
          -7,
          -3.0613447538027754,
          -7,
          -7,
          -2.6797911709803546,
          -2.9556035765596027,
          -7,
          -7,
          -3.5161385767170743,
          -3.457124626303409,
          -7,
          -2.8567288903828825,
          -7,
          -3.5873741720730656,
          -3.2725377773752373,
          -7,
          -3.3475739324713,
          -2.7072862306926577,
          -7,
          -3.283744222708833,
          -3.333850145102545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6065157176196125,
          -7,
          -3.4652128399050834,
          -7,
          -3.5199591807520685,
          -2.738579026601573,
          -3.397592434038117,
          -3.3099848383169075,
          -2.4593087037362253,
          -7,
          -2.7248607780823373,
          -3.1742052269401473,
          -7,
          -3.4348881208673157,
          -2.873175231276166,
          -2.9724342769573653,
          -3.345569756056392,
          -3.7777891874348675,
          -7,
          -3.5358002908248976,
          -7,
          -7,
          -7,
          -3.0799373127778655,
          -7,
          -3.151308548182018,
          -7,
          -3.1758016328482794,
          -3.0209824429184193,
          -2.650501794878367,
          -2.93468778256179,
          -3.25478968739721,
          -7,
          -2.295161839468722,
          -7,
          -3.0835538066394377,
          -7,
          -7,
          -2.720159303405957,
          -2.6697816152085365,
          -7,
          -7,
          -7,
          -7,
          -3.9789561652175918,
          -3.0151920417628344,
          -7,
          -4.869013679358553,
          -7,
          -7,
          -7,
          -3.4303975913869666,
          -7,
          -2.4391070276875375,
          -3.5440680443502757,
          -2.8829512232506107,
          -7,
          -7,
          -7,
          -3.287353772714747,
          -2.707995746422929,
          -7,
          -7,
          -2.490660653356137,
          -3.6066842101912937,
          -7,
          -7,
          -7,
          -7,
          -3.380030247967831,
          -3.3677285460869766,
          -2.9454685851318194,
          -3.3811150807098507,
          -3.7909181952145783,
          -2.5533435303236858,
          -3.5689640044577606,
          -3.1986570869544226,
          -7,
          -7,
          -7,
          -3.196393337220726,
          -2.48957499641369,
          -2.743350500752125,
          -3.3848907965305544,
          -4.4213653283855505,
          -7,
          -7,
          -2.7172543127625497,
          -2.363533636880855,
          -7,
          -3.117395598804608,
          -2.167787096267102,
          -3.917663024327375,
          -7,
          -7,
          -7,
          -3.446847710155809,
          -2.9266510770888887,
          -3.129797271228629,
          -7,
          -3.0166155475571776,
          -3.449478399187365,
          -7,
          -2.785329835010767,
          -7,
          -1.79594318285679,
          -3.089463530840192,
          -2.8341026557127935,
          -3.6115108871266566,
          -3.170408411725318,
          -3.738168310814374,
          -3.183886436181369,
          -3.294466226161593,
          -4.315487527750822,
          -7,
          -3.0909630765957314,
          -2.7625952138601995,
          -7,
          -3.7155437506051423,
          -2.7029089924616416,
          -7,
          -7,
          -2.972758083903539,
          -2.4142568872937775,
          -4.431315506535525,
          -1.9902177295652563,
          -3.255754786643044,
          -7,
          -7,
          -3.0022277907711667,
          -2.697467116913975,
          -3.032417278832769,
          -7,
          -2.747855531533609,
          -2.407603325351417,
          -7,
          -3.3350565194390915,
          -3.502222215766476,
          -7,
          -2.6398183918310933,
          -2.167716392464302,
          -7,
          -3.6889119807631894,
          -3.296428912995118,
          -4.357542742943342,
          -7,
          -3.275829434043522,
          -3.878041442513559,
          -2.369515102569025,
          -7,
          -7,
          -7,
          -3.078366179530183,
          -3.269045709657623,
          -2.495940591663266,
          -3.5392015992941275,
          -7,
          -7,
          -2.2185126722477833,
          -7,
          -3.3688445068258215,
          -3.3847117429382823,
          -3.4599952560473914,
          -7,
          -2.089413700330822,
          -7,
          -7,
          -7,
          -4.781712301989469,
          -7,
          -7,
          -7,
          -3.3969138623652726,
          -7,
          -3.491156891329735,
          -3.2342697517408654,
          -7,
          -7,
          -7,
          -4.729893403963238,
          -5.00358976718914,
          -4.295292143016351,
          -7,
          -4.685840227213275,
          -4.92951088422108,
          -7,
          -7,
          -7,
          -4.691364443175833,
          -4.003029470553618,
          -3.6455696293511517,
          -7,
          -7,
          -4.6708578881893095,
          -7,
          -7,
          -4.306839464804704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.171726453653231,
          -7,
          -3.9289588408808296,
          -7,
          -7,
          -3.690698035157469,
          -3.9558800862253753,
          -3.7687120803776635,
          -3.656059852021028,
          -7,
          -3.807372143360144,
          -3.7471786713601642,
          -7,
          -7,
          -3.355881177150099,
          -3.3911998401087744,
          -7,
          -4.45804831917427,
          -3.901676231326376,
          -7,
          -3.878808932359205,
          -4.397070549959409,
          -7,
          -7,
          -3.6751408739135,
          -3.8176230297552216,
          -5.230453179146441,
          -7,
          -3.4927603890268375,
          -7,
          -4.262934951640582,
          -7,
          -5.106634487635724,
          -3.6458805585863616,
          -7,
          -7,
          -4.348849823480575,
          -7,
          -4.190184573508741,
          -7,
          -3.168669320925909,
          -7,
          -3.428134794028789,
          -4.20489288154292,
          -7,
          -3.569759062947957,
          -4.962388279400015,
          -7,
          -4.505045269707098,
          -7,
          -3.4190465771041594,
          -3.4457909564400544,
          -4.324035392913916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7892986111594413,
          -3.2570783059665684,
          -2.3909087566812675,
          -7,
          -7,
          -2.84845038043803,
          -3.5769169559652068,
          -3.04766419460156,
          -3.3062105081677613,
          -3.1409477713426623,
          -7,
          -3.575778550967052,
          -3.2593549273080344,
          -3.3636119798921444,
          -7,
          -3.866877814337499,
          -7,
          -3.4740705032150436,
          -7,
          -7,
          -3.865222456290179,
          -7,
          -7,
          -2.651554899236661,
          -7,
          -7,
          -3.7640639936931715,
          -7,
          -7,
          -4.6109474687960565,
          -3.9851811187481068,
          -4.195193696188285,
          -7,
          -7,
          -2.2962701975267965,
          -7,
          -2.7822678165784755,
          -7,
          -3.471731651480051,
          -2.959177727114837,
          -7,
          -7,
          -3.5742628297070267,
          -3.1649473726218416,
          -3.310976378660635,
          -7,
          -7,
          -2.946615995262667,
          -7,
          -2.8071289555924217,
          -2.8651039746411278,
          -7,
          -7,
          -2.4245186658770486,
          -3.0617351308914453,
          -7,
          -3.8845971400109183,
          -7,
          -7,
          -3.9644482079166607,
          -3.2389238459924155,
          -2.9048342025822866,
          -3.148294097434746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.54282542695918,
          -2.8845688149183335,
          -7,
          -7,
          -2.645826667299605,
          -2.4422018332921795,
          -2.834976727785526,
          -3.5618166643189575,
          -2.934538848851327,
          -7,
          -3.8312937443770094,
          -3.1381447441794874,
          -3.0826417781571314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1142772965615864,
          -7,
          -7,
          -3.562471304977469,
          -3.4710715736130306,
          -2.7110687225172314,
          -7,
          -2.4501090810791015,
          -7,
          -3.0594119374386564,
          -2.5697395697207623,
          -7,
          -7,
          -7,
          -3.4176377396522297,
          -3.303611372056618,
          -7,
          -7,
          -7,
          -3.256236533205923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2225864233903896,
          -7,
          -7,
          -7,
          -7,
          -3.3820170425748683,
          -7,
          -3.276921132065774,
          -2.871864702088195,
          -3.247697143973421,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5620416016746557,
          -7,
          -3.373463721632369,
          -3.671728088239558,
          -7,
          -3.58983794314746,
          -3.280805928393667,
          -7,
          -3.254064452914338,
          -7,
          -3.766933093837284,
          -3.473194909204938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.125649312197302,
          -2.942256150419465,
          -7,
          -7,
          -4.197941836490006,
          -3.368764890372562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.73814608871206,
          -7,
          -7,
          -3.673665876245702,
          -3.823687271851491,
          -7,
          -2.920123326290724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.716142518281689,
          -7,
          -7,
          -7,
          -4.664491544490574,
          -7,
          -7,
          -2.870793931782029,
          -7,
          -3.171726453653231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6534483627752867,
          -7,
          -2.702968762418371,
          -7,
          -7,
          -3.0511525224473814,
          -3.4533183400470375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4154741681092355,
          -7,
          -3.73917663191073,
          -7,
          -2.808210972924222,
          -3.442009159140952,
          -2.9071311224233356,
          -7,
          -7,
          -7,
          -7,
          -3.403578034499039,
          -1.3382350842284592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5536403362313544,
          -7,
          -7,
          -3.8687696214434575,
          -7,
          -3.7218930162149575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.592620821321982,
          -7,
          -3.5499836111596887,
          -7,
          -7,
          -7,
          -3.2777925189314416,
          -7,
          -7,
          -7,
          -2.9385197251764916,
          -2.980803010140982,
          -7,
          -7,
          -7,
          -7,
          -3.687207803454867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.755066468428678,
          -7,
          -3.8452841263479915,
          -7,
          -7,
          -3.1439511164239637,
          -7,
          -3.6147917919564176,
          -7,
          -7,
          -3.259572161447169,
          -2.881527305640932,
          -7,
          -7,
          -4.068371418032643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.156670276554126,
          -3.690993032099869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9854264740830017,
          -7,
          -7,
          -7,
          -3.639536290826109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5974209235343935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.090682736865722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2079035303860515,
          -4.282191456275556,
          -7,
          -7,
          -3.7302206895539856,
          -7,
          -7,
          -3.292477593667784,
          -7,
          -7,
          -7,
          -7,
          -3.1550322287909704,
          -7,
          -3.3370597263205246,
          -7,
          -7,
          -7,
          -3.9548693710664784,
          -7,
          -4.042516447524275,
          -7,
          -3.6001012556913907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.978180516937414,
          -7,
          -7,
          -7,
          -3.095169351431755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.7130358499979,
          -7,
          -2.929929560084588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.795184589682424,
          -7,
          -4.6419151217736125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2880255353883627,
          -2.9409431702282975,
          -7,
          -7,
          -7,
          -7,
          -3.538406149594125,
          -3.326949994165999,
          -2.2310903252489624,
          -7,
          -7,
          -2.789228057267335,
          -7,
          -7,
          -3.216473803384961,
          -3.745855195173729,
          -3.1853532490306473,
          -3.4204508591060683,
          -7,
          -7,
          -2.733598460961339,
          -7,
          -7,
          -3.4680517914542377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.87486820071597,
          -7,
          -7,
          -7,
          -7,
          -4.83110156450136,
          -3.5953859808091417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.291590825658001,
          -3.9589459324939362,
          -7,
          -7,
          -7,
          -7,
          -2.771035995750765,
          -4.573159230252996,
          -3.874191804679071,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3350565194390915,
          -7,
          -3.7046651854545294,
          -7,
          -7,
          -7,
          -7,
          -3.653140125329155,
          -3.9112108931375533,
          -3.713811373193294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.544564097496043,
          -7,
          -3.4252080511386565,
          -3.336059277866349,
          -7,
          -7,
          -3.4073909044707316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.327563260187278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.114032429218625,
          -3.4331810064702166,
          -3.9793206973820245,
          -7,
          -4.305265362023449,
          -4.418259849029347,
          -4.9979845471666975,
          -4.5818814213581875,
          -7,
          -7,
          -4.922855156211904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2316097450225865,
          -3.8055008581584002,
          -7,
          -4.658707618456519,
          -7,
          -7,
          -3.9964314019794394,
          -7,
          -4.677689059461427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.453455946777304,
          -4.185938589826589,
          -3.0697949105630427,
          -7,
          -4.369698138949881,
          -4.5891487492977605,
          -3.5876548509957176,
          -3.660675788338524,
          -3.484320180532331,
          -3.362293937964231,
          -4.332488956338184,
          -7,
          -7,
          -7,
          -3.3498032819722785,
          -3.7266276095452504,
          -7,
          -4.13697409575783,
          -7,
          -7,
          -3.194930399217724,
          -7,
          -7,
          -7,
          -4.213654974143963,
          -4.2838663484734685,
          -5.405443694078799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.92833780587623,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.482087141826486,
          -7,
          -3.613260260001968,
          -7,
          -3.857030798272624,
          -4.48807103570631,
          -7,
          -4.098693158915045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.307506734689901,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8676000541351447,
          -7,
          -3.038393050174673,
          -7,
          -7,
          -3.5650603397961036,
          -7,
          -7,
          -7,
          -3.7506626461340558,
          -7,
          -4.019365574572488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.479791180189492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.191576757210136,
          -4.089219585886864,
          -7,
          -7,
          -3.4619984629288245,
          -7,
          -7,
          -7,
          -3.2227164711475833,
          -3.0751818546186915,
          -7,
          -7,
          -7,
          -7,
          -3.6857417386022635,
          -7,
          -7,
          -7,
          -7,
          -3.2837533833325265,
          -3.2887856124025046,
          -7,
          -7,
          -3.5471591213274176,
          -7,
          -7,
          -3.368968325638322,
          -7,
          -7,
          -7,
          -3.3376588910261424,
          -3.561875241676657,
          -3.4671639659690903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.040404528914159,
          -3.1060548400937864,
          -3.185825359612962,
          -7,
          -3.194097885578952,
          -2.9488305125930703,
          -3.6224212739756703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5569855749879813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.599155000684555,
          -3.4596939764779706,
          -3.0821696407966246,
          -7,
          -4.162624140307846,
          -4.2459812555626195,
          -7,
          -3.4523998459114416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.819872821950546,
          -3.918764031027999,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.096736260462469,
          -7,
          -3.6729286904427223,
          -7,
          -3.0878701126902555,
          -2.3948163583872386,
          -3.7558748556724915,
          -2.786751422145561,
          -1.852204993164218,
          -3.370650527907993,
          -2.5262007685441783,
          -7,
          -2.9906939606797516,
          -2.4220862084095693,
          -2.57861798915832,
          -3.7466341989375787,
          -3.4183012913197457,
          -3.6705241577820797,
          -3.6863681034730362,
          -7,
          -2.938386280873121,
          -3.777499319590365,
          -7,
          -3.1713851229924988,
          -2.863866615070336,
          -7,
          -3.7013952690139202,
          -7,
          -3.5020855592260456,
          -2.709655349661963,
          -7,
          -2.96528011476304,
          -3.735918116531297,
          -7,
          -7,
          -3.708760723690317,
          -3.4967913157000425,
          -3.69539410829111,
          -2.2064660628531048,
          -7,
          -2.912554162140022,
          -7,
          -2.8228704705516168,
          -3.6898414091375047,
          -3.712733859069952,
          -3.0292484623758416,
          -2.2084887797172543,
          -2.7898324333109286,
          -7,
          -7,
          -3.571883445956414,
          -2.8442441226239614,
          -3.7802452838653524,
          -1.6779424612088802,
          -3.149157506231856,
          -2.640836223757495,
          -2.0083471601136877,
          -3.7095243558763413,
          -3.1234432775313534,
          -2.8920946026904804,
          -3.729407796963068,
          -7,
          -3.43560550202284,
          -7,
          -3.1190083104691966,
          -3.1228163735354806,
          -2.6841081445570096,
          -7,
          -3.6802448370426077,
          -2.7897729487512173,
          -7,
          -2.8386242424371755,
          -3.6316466629584196,
          -3.082156803810918,
          -2.0956447696312877,
          -2.917967138181485,
          -7,
          -3.3383900826431017,
          -7,
          -3.697490887171057,
          -2.1854377696881704,
          -3.324351058801809,
          -3.7024305364455254,
          -7,
          -3.2458210061174126,
          -7,
          -2.753229398871813,
          -2.425106776336422,
          -3.3080661653096994,
          -7,
          -2.0992099681174743,
          -2.6823707425165573,
          -2.3193143040905118,
          -3.680335513414563,
          -7,
          -2.4395853007775634,
          -3.305064611772354,
          -1.7901845979839552,
          -1.2778667424010177,
          -3.6916118742144164,
          -1.4925694660571351,
          -3.1245042248342823,
          -3.6742179455767,
          -7,
          -2.2391710940895515,
          -3.376576957056512,
          -3.3463529744506384,
          -3.760422483423212,
          -2.3597842230324337,
          -1.7478208534254045,
          -3.238715020445331,
          -7,
          -3.2693572552103687,
          -2.853393977450666,
          -2.8744818176994666,
          -7,
          -7,
          -2.4074248987944076,
          -2.5877670717926997,
          -2.178822841969451,
          -7,
          -3.0780261164935427,
          -2.9216223472099334,
          -7,
          -7,
          -3.7191654940892134,
          -3.9331074937869817,
          -2.514391475407105,
          -3.2465601261061714,
          -3.220474206129218,
          -7,
          -3.4205333226934997,
          -2.3230710837961492,
          -3.1607085722924295,
          -7,
          -7,
          -4.1399734879844585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.71113789711095,
          -2.941511432634403,
          -2.5668380133503383,
          -3.6581545470672103,
          -7,
          -2.624429439172757,
          -7,
          -3.3927848582254354,
          -3.752432609261474,
          -4.1945975852425095,
          -2.8933257432834982,
          -7,
          -3.698448538015329,
          -3.7245216271185626,
          -2.1730399446729964,
          -7,
          -7,
          -3.490169250834894,
          -2.479552580772478,
          -7,
          -2.6142190428516683,
          -2.996000608571067,
          -2.829432433617599,
          -2.1263766159975894,
          -3.1843364700443417,
          -2.748704736742231,
          -3.1735504566783983,
          -3.234432913530507,
          -3.0348160587969915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.393399695293102,
          -7,
          -3.402777069610347,
          -7,
          -3.0664936462050383,
          -7,
          -3.023983672235201,
          -2.589283777393785,
          -7,
          -7,
          -2.794327147188887,
          -3.761551988564182,
          -7,
          -7,
          -2.8829512232506107,
          -2.468580508663076,
          -2.6548426946011774,
          -1.8402106807262346,
          -2.863067817841283,
          -2.3545024464158892,
          -7,
          -3.006136781822616,
          -1.8094164304103115,
          -2.204337745500236,
          -7,
          -3.304598226343637,
          -3.3708830167776056,
          -3.6986658917468582,
          -7,
          -3.293657141449485,
          -7,
          -3.410355383434471,
          -3.291901400465467,
          -3.51181654130309,
          -3.6659560294539566,
          -3.22284647997415,
          -3.9540011676815703,
          -3.056218581272306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.406028944963615,
          -7,
          -3.7148325124333326,
          -7,
          -3.907894835416283,
          -3.6485551556626707,
          -4.13670471670359,
          -7,
          -7,
          -3.4122925093230463,
          -7,
          -7,
          -7,
          -3.505217831531809,
          -3.4743619760326307,
          -3.472317546316842,
          -7,
          -7,
          -7,
          -3.3934874581471752,
          -7,
          -3.6830470382388496,
          -3.779307827583586,
          -3.6843302879646407,
          -3.3694941621180985,
          -3.373279893277496,
          -7,
          -7,
          -7,
          -3.718916686014861,
          -7,
          -3.423737249982329,
          -3.355834495884936,
          -2.942008053022313,
          -2.710963118995276,
          -3.1302131143806298,
          -7,
          -7,
          -7,
          -2.507645627469406,
          -2.719952447254438,
          -2.7511205403423413,
          -7,
          -3.9004763713892565,
          -7,
          -3.6947806360120614,
          -3.698535492562001,
          -3.8476035028253683,
          -2.4066298088486584,
          -2.678193089172533,
          -2.9752479412406814,
          -2.871105700985585,
          -2.217258278071181,
          -2.8184733313655372,
          -3.6840370374865197,
          -2.9770373352246815,
          -2.470312467167388,
          -2.886866575028829,
          -7,
          -3.697490887171057,
          -2.9112337273068007,
          -7,
          -3.7753191218294777,
          -7,
          -2.4642320431696545,
          -3.0633333589517497,
          -3.7512020945883533,
          -7,
          -3.4671639659690903,
          -3.9691983999984655,
          -0.8001984317598797,
          -2.3416143566643135,
          -3.0931266481387256,
          -7,
          -2.7745169657285493,
          -3.307656461906382,
          -3.0102292649359197,
          -3.521399628115376,
          -3.0940050223646494,
          -3.714706878813469,
          -3.3145693943004555,
          -3.278810741204461,
          -3.3397163761823725,
          -4.038680399901154,
          -2.618309641123432,
          -7,
          -7,
          -7,
          -2.820551732299791,
          -3.0787674351712444,
          -7,
          -3.417554724363455,
          -3.5333907080175515,
          -7,
          -3.502222215766476,
          -3.7046651854545294,
          -7,
          -3.723209310405111,
          -3.140272291029186,
          -2.622265844991523,
          -7,
          -3.520056119575792,
          -2.748081569233415,
          -4.002621004336619,
          -7,
          -2.403329809639173,
          -3.5886637957802043,
          -2.6856137979674,
          -7,
          -3.4349678884278125,
          -7,
          -2.7388937591840596,
          -2.7827676182461665,
          -3.3763944420372662,
          -3.5025636691073636,
          -7,
          -7,
          -2.4111662699650966,
          -3.696618459232225,
          -7,
          -3.7265642161622448,
          -7,
          -3.7019994748896368,
          -2.1961798384775983,
          -7,
          -7,
          -4.338745263175257,
          -7,
          -4.359778584139239,
          -7,
          -4.144947633670373,
          -3.967828679330155,
          -7,
          -3.7323334369557415,
          -3.5613453617046673,
          -7,
          -7,
          -7,
          -7,
          -5.015916938047925,
          -4.627160952374775,
          -7,
          -7,
          -4.643052744068198,
          -7,
          -7,
          -7,
          -5.395450459484108,
          -7,
          -4.583074023956643,
          -2.502942175170398,
          -7,
          -4.696958914626985,
          -7,
          -7,
          -3.7627126567903657,
          -7,
          -3.869173027321683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3363262895451586,
          -3.5425573202945824,
          -3.0352696000994364,
          -4.105884708669233,
          -3.189004157062433,
          -2.796829854240984,
          -2.8280647007154767,
          -2.7726457370988777,
          -3.0340265237751103,
          -3.0439032795531493,
          -3.001641010581909,
          -3.0882542479944113,
          -3.6581749932745304,
          -2.928277998809836,
          -1.8087365536104805,
          -7,
          -2.497150888262362,
          -2.420519244652838,
          -3.6843964784190204,
          -2.7880851490499095,
          -3.8427184234915157,
          -3.94875518016827,
          -7,
          -2.8504547726388982,
          -3.133441284331229,
          -5.710042859862826,
          -7,
          -3.6591076791998134,
          -7,
          -3.1825388976316757,
          -7,
          -5.111538062043175,
          -2.952819340172389,
          -4.317059958740005,
          -3.6768764319731373,
          -3.1709343851533065,
          -3.8934704707737686,
          -3.1213253059294366,
          -7,
          -2.865991800126275,
          -7,
          -3.100741177063841,
          -3.4293546881848322,
          -3.122625396909397,
          -2.1005526734054927,
          -3.560720336969559,
          -3.1961761850399735,
          -3.9242965196279602,
          -7,
          -2.9562751760779418,
          -2.774769926364078,
          -3.9028546804129594,
          -7,
          -3.675136504467994,
          -7,
          -7,
          -7,
          -2.441623734985907,
          -2.430961453354948,
          -2.2903719274819245,
          -7,
          -7,
          -2.9868380590192607,
          -3.523486332343228,
          -3.0173811923265106,
          -3.3913762391696496,
          -2.9916690073799486,
          -7,
          -3.061530470374447,
          -2.488028162614872,
          -7,
          -7,
          -4.246129125663436,
          -3.80188370712524,
          -2.946697837245742,
          -7,
          -7,
          -3.5327968299462387,
          -7,
          -7,
          -3.3045623297876885,
          -2.296376488208818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.436717388027081,
          -3.8626017427642996,
          -7,
          -7,
          -2.090555945268356,
          -7,
          -2.4200780505130677,
          -7,
          -2.86421433046133,
          -2.2596934032537566,
          -7,
          -7,
          -7,
          -3.163086798780063,
          -3.9564565834098997,
          -7,
          -7,
          -2.5386051486487737,
          -7,
          -2.2015408590501777,
          -1.797830963889765,
          -7,
          -7,
          -2.5631984703770168,
          -2.2482068836250533,
          -7,
          -3.4825877695267677,
          -7,
          -7,
          -4.08339510788965,
          -3.104760166638525,
          -2.5185100861451684,
          -2.675167089663394,
          -3.912062555588502,
          -3.76767522402796,
          -7,
          -7,
          -3.4101865286571087,
          -7,
          -3.702775077901044,
          -3.3283116334124774,
          -2.149510376031406,
          -7,
          -7,
          -1.8844077740241894,
          -2.0621775825245305,
          -3.019842969563268,
          -3.816174990428802,
          -3.0258221513726404,
          -3.854427505787861,
          -3.9860547807696953,
          -3.752355804153501,
          -3.221877701616761,
          -7,
          -7,
          -3.747023177451628,
          -7,
          -7,
          -4.433593841021467,
          -7,
          -2.776216750606444,
          -3.5487578285737045,
          -3.2580440465002014,
          -7,
          -3.7955092611743777,
          -3.3167426208727453,
          -7,
          -2.522257881011762,
          -7,
          -2.778585327862962,
          -7,
          -2.241668433463518,
          -2.9472376078706666,
          -7,
          -7,
          -2.1308452620130898,
          -1.6213576534552254,
          -3.20784373080153,
          -3.4261044280965076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5471591213274176,
          -7,
          -3.0166155475571776,
          -3.406540180433955,
          -7,
          -3.6898414091375047,
          -7,
          -7,
          -7,
          -3.2229114697957306,
          -7,
          -3.117628173221579,
          -7,
          -7,
          -7,
          -7,
          -3.5830853663476874,
          -3.7114697818743276,
          -7,
          -3.2740848933351994,
          -2.9454685851318194,
          -3.2440295890300215,
          -7,
          -7,
          -3.3546205789259758,
          -7,
          -3.6873505695580273,
          -3.2101177828307916,
          -3.6770591773921617,
          -3.464688218289176,
          -3.166578109919652,
          -3.7340794072805945,
          -7,
          -7,
          -2.8721562727482928,
          -2.8656960599160706,
          -7,
          -7,
          -7,
          -7,
          -2.668851648082519,
          -7,
          -5.205488565953269,
          -7,
          -7,
          -7,
          -3.5047969706245556,
          -3.918921090091336,
          -7,
          -7,
          -7,
          -2.9454685851318194,
          -7,
          -3.441321937582603,
          -2.823202438384847,
          -7,
          -3.392345155361204,
          -3.7867909735760246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.729359915776269,
          -2.5631843347973486,
          -2.929929560084588,
          -7,
          -2.096137246822133,
          -1.9381731982431614,
          -2.210407706494972,
          -7,
          -7,
          -7,
          -7,
          -4.100862216436054,
          -7,
          -7,
          -7,
          -7,
          -3.3690302218091532,
          -2.7234556720351857,
          -3.163757523981956,
          -7,
          -7,
          -7,
          -3.631139250256811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.485863329597335,
          -7,
          -7,
          -7,
          -7,
          -3.111262513659065,
          -7,
          -3.8531504364478426,
          -7,
          -7,
          -7,
          -7,
          -3.7563317673210577,
          -2.660201201380682,
          -7,
          -7,
          -5.126400930507611,
          -7,
          -3.4095950193968156,
          -7,
          -7,
          -3.5922322902240102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.57966929355472,
          -3.327767489902729,
          -7,
          -3.4455378508490546,
          -3.273348568749101,
          -7,
          -7,
          -7,
          -7,
          -3.3191060593097763,
          -2.829946695941636,
          -3.1389339402569236,
          -7,
          -4.158935141829918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.251638220448212,
          -7,
          -4.082534052872713,
          -3.0888445627270045,
          -7,
          -2.7278122676344823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5802405082653763,
          -3.3604040547299387,
          -7,
          -3.067328419252625,
          -3.7152053921333623,
          -3.0856472882968564,
          -3.2563568863955257,
          -7,
          -4.995270936407388,
          -7,
          -3.188365926063148,
          -2.9377184436172636,
          -7,
          -7,
          -3.828960490938315,
          -2.911956189072687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5638369186645447,
          -7,
          -2.9863835313824367,
          -3.232657347128563,
          -7,
          -7,
          -7,
          -2.683947130751512,
          -3.225309281725863,
          -7,
          -3.8452221064290137,
          -7,
          -7,
          -3.1231980750319988,
          -4.068371418032643,
          -7,
          -7,
          -7,
          -7,
          -2.636989101812229,
          -7,
          -2.5163149757779495,
          -3.145040940037024,
          -7,
          -3.030194785356751,
          -3.2918681352146444,
          -7,
          -7,
          -3.7714312978476743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4608477482317905,
          -7,
          -7,
          -7,
          -7,
          -3.4845402991734833,
          -7,
          -7,
          -7,
          -7,
          -2.7237839369653294,
          -7,
          -3.3322364154914434,
          -3.2174839442139063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9653898702151222,
          -7,
          -7,
          -7,
          -3.608062253333116,
          -7,
          -3.7795964912578244,
          -7,
          -3.285107029566812,
          -7,
          -7,
          -3.065729059462349,
          -3.402433346219312,
          -7,
          -3.433449793761596,
          -7,
          -3.3933411768692574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.049605612594973,
          -7,
          -2.781396305196791,
          -3.9271136119337604,
          -2.709693869727792,
          -3.663857908757308,
          -5.111156616258665,
          -7,
          -2.7283537820212285,
          -7,
          -7,
          -7,
          -2.6344772701607315,
          -2.6848453616444123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6875289612146345,
          -7,
          -7,
          -7,
          -3.7678185563570334,
          -7,
          -7,
          -7,
          -7,
          -3.1228709228644354,
          -7,
          -7,
          -7,
          -3.70816585785554,
          -3.3348556896172914,
          -7,
          -3.3574266029612865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0606097136919574,
          -7,
          -2.820108792023945,
          -7,
          -7,
          -7,
          -7,
          -2.761401557498631,
          -3.0193009590931648,
          -3.039889797736181,
          -7,
          -7,
          -3.115943176939055,
          -7,
          -7,
          -3.499549625905149,
          -2.8708426604757014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.988063243456569,
          -7,
          -7,
          -7,
          -5.132845399779915,
          -3.9085386321719593,
          -7,
          -3.8151569739533104,
          -7,
          -7,
          -3.6184664921990803,
          -3.338057875419756,
          -7,
          -7,
          -2.296528080715987,
          -2.868252475839426,
          -7,
          -7,
          -5.050438405904311,
          -3.886829004676982,
          -7,
          -7,
          -2.524396122103842,
          -3.298998544333325,
          -7,
          -2.430961453354948,
          -2.621176281775035,
          -3.4559102403827433,
          -2.9943171526696366,
          -7,
          -7,
          -3.723209310405111,
          -7,
          -2.713770462202507,
          -7,
          -7,
          -4.159753623143345,
          -3.3505651630873636,
          -4.699366478933639,
          -7,
          -3.8117760216029035,
          -4.174703437767008,
          -3.7956715059460215,
          -7,
          -3.16790781000148,
          -7,
          -7,
          -7,
          -3.7440581658788354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1024337056813365,
          -7,
          -3.1944218305429115,
          -7,
          -3.205488565953269,
          -7,
          -7,
          -7,
          -7,
          -4.276967038147092,
          -7,
          -4.413944857617042,
          -7,
          -7,
          -4.59365151826543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.676135525654282,
          -7,
          -7,
          -4.318063334962762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.679700380871964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3681082945672856,
          -7,
          -7,
          -7,
          -7,
          -4.457995373496883,
          -3.1588792018312803,
          -3.5298151966446305,
          -7,
          -4.361921337183666,
          -3.904769625906595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.076931574555656,
          -7,
          -7,
          -4.390740866952916,
          -4.789359278340753,
          -7,
          -7,
          -3.711807229041191,
          -7,
          -4.47969045420215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784709989279148,
          -7,
          -7,
          -7,
          -4.8997439198220505,
          -7,
          -7,
          -4.467800425116173,
          -4.656241984328962,
          -7,
          -4.444965523348666,
          -7,
          -7,
          -7,
          -4.301377292349344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4729903496766585,
          -7,
          -3.714245911017894,
          -7,
          -7,
          -4.347739717920052,
          -7,
          -3.0565237240791006,
          -7,
          -3.7673785241141804,
          -7,
          -4.197011625911117,
          -3.3405432575141942,
          -7,
          -3.3823773034681137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.095486671604796,
          -7,
          -7,
          -3.1806992012960347,
          -3.472902651803664,
          -7,
          -3.5024271199844326,
          -7,
          -7,
          -3.6550903907290384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3310221710418286,
          -3.9978667262391445,
          -7,
          -7,
          -7,
          -3.5496162395190853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0782755220866007,
          -3.648709257986968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0681858617461617,
          -7,
          -7,
          -3.383456296524753,
          -3.8203328448994096,
          -7,
          -7,
          -3.8116420214531512,
          -4.633266411155424,
          -3.6447339274471924,
          -2.4536580307033105,
          -4.010215125214227,
          -7,
          -3.756560043006683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9476174983825936,
          -7,
          -7,
          -7,
          -3.311541958401195,
          -7,
          -3.06660542412653,
          -3.6901074394563307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.285235728480749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8999435533286775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8785217955012063,
          -3.2942457161381182,
          -2.7697464671794534,
          -3.1646502159342966,
          -4.2518625412293325,
          -7,
          -7,
          -7,
          -3.36514019614747,
          -2.995067118019622,
          -2.96543689977626,
          -2.5754765086019,
          -7,
          -7,
          -7,
          -3.144749291055609,
          -3.916611845109346,
          -7,
          -2.9355072658247128,
          -3.1437882213761426,
          -7,
          -3.11293997608408,
          -7,
          -2.5722075432302685,
          -2.504244254358882,
          -7,
          -3.1695745172047043,
          -2.7556208080010745,
          -7,
          -7,
          -7,
          -2.449392680351223,
          -7,
          -7,
          -7,
          -2.847880997445375,
          -7,
          -3.65153123691363,
          -7,
          -3.155336037465062,
          -3.4308809464528913,
          -2.4144958388716917,
          -3.214843848047698,
          -2.511214701136388,
          -2.929418925714293,
          -3.5721743136130595,
          -3.2723058444020863,
          -3.3613500243522663,
          -3.170448411217117,
          -3.220631019448092,
          -2.4111603780707003,
          -3.8302678009336417,
          -7,
          -3.2013971243204513,
          -2.672493690697651,
          -7,
          -7,
          -3.236537261488694,
          -7,
          -3.1863912156954934,
          -3.3261309567107946,
          -3.254427221540668,
          -7,
          -7,
          -3.4868553552769432,
          -7,
          -3.1720188094245563,
          -2.4775734093486395,
          -7,
          -3.5094713521025485,
          -4.0479397570328395,
          -7,
          -7,
          -7,
          -7,
          -2.9057419273916016,
          -3.4156409798961542,
          -3.116939646550756,
          -7,
          -3.219846386024361,
          -7,
          -3.0856472882968564,
          -3.3054588547786667,
          -2.89707700320942,
          -7,
          -3.31229973600576,
          -7,
          -3.08687371853016,
          -2.723044991643445,
          -7,
          -3.5046067706419537,
          -3.367169488534681,
          -3.1690863574870227,
          -3.1638568026386698,
          -7,
          -3.2627179920118423,
          -7,
          -7,
          -7,
          -2.9556440257243017,
          -7,
          -3.1659858227744544,
          -3.0058237530290275,
          -2.836233665954909,
          -3.542647619594607,
          -3.16761267272753,
          -7,
          -2.789345640720579,
          -3.2990712600274095,
          -2.813458080832292,
          -7,
          -7,
          -2.5851383133972536,
          -2.907411360774586,
          -3.206646006705649,
          -7,
          -3.011993114659257,
          -3.7584652625674755,
          -7,
          -3.8732043092770407,
          -2.397070549959409,
          -3.6951444420112227,
          -3.269045709657623,
          -2.743248377731732,
          -3.3600250891893975,
          -2.73917663191073,
          -7,
          -2.948710558798255,
          -2.943247125137862,
          -7,
          -7,
          -3.77581062145278,
          -7,
          -2.961421094066448,
          -2.6928469192772297,
          -7,
          -7,
          -2.818962939492806,
          -3.293657141449485,
          -3.0558779765553,
          -3.0306806639999015,
          -7,
          -7,
          -7,
          -3.0835026198302673,
          -2.9827233876685453,
          -3.4740705032150436,
          -3.5589484459780394,
          -7,
          -7,
          -2.718224803628757,
          -3.594110050455012,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0457140589408676,
          -3.181414796254284,
          -2.862429556106009,
          -3.3783979009481375,
          -3.003729728474602,
          -2.872350544494723,
          -3.1522883443830563,
          -3.5134074341660257,
          -7,
          -7,
          -7,
          -2.7280831092284825,
          -3.1082266563749283,
          -7,
          -7,
          -3.1045358837850054,
          -7,
          -4.292610452838321,
          -7,
          -3.4619484952037616,
          -3.264147596079237,
          -7,
          -3.4231639238503484,
          -3.6423655808449733,
          -3.0090257420869104,
          -3.1609184995397808,
          -7,
          -2.2280702222508446,
          -2.7993405494535817,
          -2.7321926510062684,
          -3.381205361238583,
          -7,
          -7,
          -7,
          -3.2773799746672547,
          -2.922898380345496,
          -4.352645518668972,
          -7,
          -3.394696777891884,
          -7,
          -3.4956830676169153,
          -7,
          -3.336859820916809,
          -7,
          -7,
          -2.4580259891314333,
          -2.48572142648158,
          -7,
          -2.993142192245416,
          -7,
          -3.5835954675922532,
          -7,
          -7,
          -3.1065308538223815,
          -7,
          -2.279894980011638,
          -2.6567368704836722,
          -3.03261876085072,
          -2.4614985267830187,
          -2.5391263033453906,
          -2.460396637297684,
          -3.449478399187365,
          -4.370968727652723,
          -7,
          -2.8175653695597807,
          -2.8564267724702446,
          -7,
          -2.5171958979499744,
          -3.044539760392411,
          -2.2764618041732443,
          -7,
          -3.0419845014867866,
          -7,
          -7,
          -7,
          -7,
          -2.975891136401793,
          -7,
          -2.881004030556986,
          -3.6440346358149664,
          -7,
          -7,
          -7,
          -7,
          -3.1961761850399735,
          -2.8756399370041685,
          -7,
          -2.8962505624616384,
          -3.728434950974255,
          -3.381295623003826,
          -3.818687663441514,
          -3.548880562637515,
          -7,
          -7,
          -7,
          -3.1216624148598804,
          -7,
          -3.309993180027564,
          -2.7253670623404314,
          -3.8123366985975364,
          -7,
          -7,
          -7,
          -2.6150658413436996,
          -3.780677274433368,
          -2.4913164995492116,
          -2.393308097750179,
          -3.394510049817891,
          -2.623456048069934,
          -7,
          -7,
          -3.294466226161593,
          -3.0542299098633974,
          -2.9051209859322786,
          -7,
          -7,
          -2.9967305154351527,
          -7,
          -7,
          -7,
          -3.132899769944483,
          -3.0512490216105164,
          -7,
          -3.513217600067939,
          -3.329397879361043,
          -4.355441941404169,
          -2.9663503526454837,
          -7,
          -3.5985935527733384,
          -3.030599721965951,
          -7,
          -2.296665190261531,
          -3.08278537031645,
          -7,
          -3.2703293970898586,
          -2.3873898263387296,
          -2.544245271237821,
          -3.287129620719111,
          -3.4520932490177314,
          -4.624614008249,
          -2.9965116721541785,
          -7,
          -7,
          -7,
          -3.0149403497929366,
          -3.0669778095571933,
          -3.123524980942732,
          -2.8750612633917,
          -2.79140991566716,
          -3.090258052931316,
          -2.6398183918310933,
          -7,
          -3.140272291029186,
          -2.713770462202507,
          -7,
          -7,
          -3.1920095926536702,
          -4.258140217203789,
          -3.191939809656508,
          -4.533168098898093,
          -7,
          -3.5266622930104643,
          -3.3770536230433184,
          -2.5087316694431436,
          -7,
          -2.3863715504164245,
          -2.5903215880567183,
          -7,
          -2.3109586924199976,
          -2.2135557015581133,
          -3.1190908524217216,
          -3.0132586652835167,
          -7,
          -3.4800069429571505,
          -3.0941215958405612,
          -2.7007037171450192,
          -2.725094521081469,
          -2.4606325707446945,
          -3.1152775913959014,
          -2.885966677374664,
          -7,
          -7,
          -4.123808100490645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.295292143016351,
          -4.1050898796005555,
          -7,
          -7,
          -7,
          -4.723143590360814,
          -7,
          -4.587138261511774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.061377074193888,
          -4.122117536313263,
          -7,
          -4.663116448584376,
          -4.20013885385738,
          -7,
          -4.175931988544272,
          -3.8725932620341004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318407710839007,
          -3.2304489213782737,
          -4.675035558038081,
          -5.068015079913622,
          -7,
          -3.7026889681591335,
          -3.6398847419163043,
          -7,
          -3.8749479543989533,
          -7,
          -2.9572480195790503,
          -4.449370390682258,
          -3.92367254220629,
          -3.5710455540362562,
          -7,
          -4.445339498742793,
          -3.854063011866421,
          -7,
          -3.5273076043950233,
          -4.382413313126267,
          -7,
          -7,
          -4.993903341793256,
          -4.312553920321048,
          -7,
          -7,
          -3.0322963447394726,
          -7,
          -4.179800654075695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.750379810251768,
          -3.8387861449465945,
          -4.202063077955703,
          -4.017409008536211,
          -2.89707700320942,
          -3.354704236683152,
          -4.6574096491453805,
          -3.616160312847583,
          -4.871428925150091,
          -7,
          -7,
          -3.835246539996311,
          -3.6074979143787846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1972660451184867,
          -3.1441069730493227,
          -2.9669143516284455,
          -3.0692980121155293,
          -3.383994789441733,
          -3.750296209841865,
          -3.1680553034591394,
          -2.622214022966295,
          -7,
          -3.4839437142904197,
          -7,
          -4.10176768870149,
          -3.3640817414110704,
          -7,
          -3.42422807069598,
          -4.142827294538336,
          -7,
          -3.710286647702891,
          -7,
          -7,
          -3.5120169694961265,
          -7,
          -7,
          -2.8879921769079147,
          -2.807535028068853,
          -7,
          -4.0330616925381735,
          -7,
          -3.0576661039098294,
          -4.602049133830196,
          -3.9501178678525184,
          -4.314372900009328,
          -7,
          -3.2143138974243994,
          -2.7299742856995555,
          -7,
          -3.2332500095411003,
          -7,
          -7,
          -2.9611837098124356,
          -7,
          -3.062581984228163,
          -3.465977368285823,
          -2.8438554226231614,
          -3.4243098202457563,
          -7,
          -7,
          -2.9607085516885565,
          -7,
          -3.0764583877121514,
          -2.9282677984501237,
          -4.208736877114406,
          -7,
          -3.6009728956867484,
          -3.578524605274993,
          -7,
          -4.1615776110488705,
          -7,
          -7,
          -3.446226401778163,
          -3.1204093945560682,
          -3.0465400352110676,
          -3.531095546870028,
          -3.6469915374771227,
          -3.327563260187278,
          -7,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -3.35869609957381,
          -3.300812794118117,
          -7,
          -3.048894766621091,
          -2.8282771428330555,
          -2.7637086966742306,
          -2.749736315569061,
          -3.20198503030335,
          -3.2328691051326137,
          -2.731881663179229,
          -3.28397928423848,
          -3.7514330818193473,
          -3.7077404542737713,
          -7,
          -2.966610986681934,
          -7,
          -7,
          -7,
          -7,
          -3.2203696324513946,
          -7,
          -3.6906896037283614,
          -7,
          -4.176293882538767,
          -4.075559126333692,
          -3.104230965930801,
          -2.9155317393839453,
          -7,
          -2.757206173278786,
          -7,
          -2.845186662498373,
          -2.80694271207381,
          -7,
          -7,
          -3.362105319293773,
          -2.5514499979728753,
          -3.324436797945258,
          -3.205745540942662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.534406899137877,
          -7,
          -2.6203095992245795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.823963024361914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028232251440524,
          -3.1961761850399735,
          -7,
          -7,
          -7,
          -3.485863329597335,
          -7,
          -7,
          -7,
          -7,
          -3.700617195682057,
          -7,
          -7,
          -7,
          -3.1416587697865523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.638389407665336,
          -2.720876530902644,
          -7,
          -7,
          -7,
          -3.37823887280976,
          -3.2532498684446467,
          -3.072892956720603,
          -7,
          -7,
          -7,
          -7,
          -3.322649928861323,
          -3.7458162082818403,
          -7,
          -3.061129223038102,
          -2.577965039175915,
          -3.6628522332647964,
          -2.7171502028538876,
          -7,
          -2.895422546039408,
          -2.8363241157067516,
          -2.6732257630203846,
          -3.3055493481139395,
          -3.0602255243941676,
          -2.997495599658018,
          -7,
          -3.0278590441755795,
          -3.7353593330017105,
          -3.136931851267557,
          -3.5106790310322102,
          -7,
          -3.154271775993095,
          -7,
          -3.528509626166987,
          -2.056360281381856,
          -3.635282637998212,
          -3.445837632186448,
          -7,
          -3.2903685556172673,
          -7,
          -3.6618126855372615,
          -7,
          -2.675961549642169,
          -7,
          -1.9273598326456884,
          -2.327041686668223,
          -2.5250829348172044,
          -2.9838517189914717,
          -7,
          -3.1735747250409485,
          -2.836535091898369,
          -3.655138434811382,
          -2.816525369214973,
          -7,
          -7,
          -7,
          -3.3756026560715435,
          -3.458871241042658,
          -7,
          -7,
          -2.8708426604757014,
          -7,
          -3.6452257115354163,
          -7,
          -2.998912904358786,
          -7,
          -3.380220765608974,
          -7,
          -2.577644963119329,
          -7,
          -7,
          -2.8078930122753323,
          -2.960787780819836,
          -3.62293896921149,
          -7,
          -1.5354939947790913,
          -2.7425287512507515,
          -1.0289745558766008,
          -3.3634239329171765,
          -2.041140603609944,
          -7,
          -3.162950773914828,
          -7,
          -3.2393933366675602,
          -7,
          -7,
          -2.938233722873167,
          -7,
          -3.766561552637531,
          -2.745975132893879,
          -7,
          -3.3989067880771966,
          -7,
          -7,
          -3.5870371177434555,
          -2.1062492925699923,
          -7,
          -2.6841718627005906,
          -3.6917002082901615,
          -2.087220217567597,
          -1.2710785047431974,
          -7,
          -7,
          -3.3744733890639753,
          -7,
          -3.0101899867944697,
          -7,
          -7,
          -3.446459496594692,
          -3.363737299322217,
          -3.4102709642521845,
          -3.1837442232842066,
          -3.661102473634254,
          -3.575599132587573,
          -3.6384892569546374,
          -4.015192041762835,
          -3.6429588794097905,
          -4.406723226782012,
          -2.5601826304358717,
          -2.8897217842562033,
          -3.2710279942623233,
          -7,
          -7,
          -2.704225144296277,
          -2.423109281867148,
          -7,
          -3.5900612308037427,
          -4.42756724771945,
          -7,
          -7,
          -7,
          -7,
          -3.5872618496925344,
          -3.149434666343169,
          -2.712005604964203,
          -3.4025070241365136,
          -3.9170851906405675,
          -7,
          -7,
          -7,
          -7,
          -3.6823256186678073,
          -7,
          -2.890807803284164,
          -7,
          -3.316913439164992,
          -7,
          -2.0743479845985724,
          -7,
          -7,
          -3.727703883685354,
          -7,
          -7,
          -2.1565847799040894,
          -3.7085908451503435,
          -7,
          -3.7640266076920375,
          -7,
          -3.0853698724573992,
          -7,
          -3.1567510079386705,
          -2.6054054937766447,
          -1.993226223490665,
          -7,
          -7,
          -7,
          -3.017555014414844,
          -3.0108297779595223,
          -7,
          -2.607602905903389,
          -7,
          -4.352259719157145,
          -7,
          -3.0349291104842666,
          -2.215529362569842,
          -3.658774320844357,
          -3.4358974290282975,
          -3.0832039098096162,
          -3.391816923613249,
          -3.762453482363547,
          -3.4020033090697046,
          -3.7227161674884948,
          -7,
          -2.8574186574238936,
          -2.771248188300011,
          -3.1535099893008374,
          -3.906065544755237,
          -7,
          -3.392978186542541,
          -7,
          -7,
          -7,
          -2.953418555773891,
          -3.586249638866042,
          -3.006513581462448,
          -7,
          -3.2266858105546663,
          -3.6191977157929474,
          -7,
          -3.4748473297732483,
          -3.4514794051248616,
          -7,
          -2.0517198569263675,
          -3.5140826625258312,
          -3.244977695626852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7628660424620133,
          -2.744714131783971,
          -3.149962833642305,
          -3.9753933699709907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.709354775834396,
          -7,
          -7,
          -7,
          -3.6018427897820984,
          -3.312388949370592,
          -7,
          -7,
          -3.4125445421080887,
          -3.616628256327668,
          -7,
          -7,
          -7,
          -7,
          -3.6492374723496073,
          -3.34143452457814,
          -7,
          -7,
          -3.1371958119405483,
          -2.6807474402991907,
          -7,
          -2.718283109929698,
          -3.716504163773217,
          -7,
          -7,
          -2.5099831216476503,
          -3.7384634394619525,
          -3.672271079163263,
          -7,
          -3.592707994835791,
          -7,
          -7,
          -3.6182573448404014,
          -3.0419845014867866,
          -3.348158775313901,
          -3.4966183382484775,
          -2.363713593014251,
          -3.235654676956949,
          -3.698709349442587,
          -7,
          -7,
          -3.38524868240322,
          -2.6206911526456267,
          -7,
          -7,
          -2.358146439931267,
          -3.3867664157173136,
          -7,
          -3.7091002815511667,
          -3.585686278452497,
          -1.5903324441974507,
          -2.4096391348401878,
          -2.244780916197219,
          -3.4875625602563782,
          -3.3997602257103656,
          -3.0148119432299376,
          -2.650695979760611,
          -7,
          -3.453375681483457,
          -7,
          -3.655906418180215,
          -3.3851294198782624,
          -3.4239009185284166,
          -2.9181352261663593,
          -2.539538289847167,
          -3.2796669440484556,
          -7,
          -3.227758196110915,
          -2.756027212973441,
          -3.817641733880986,
          -1.0512233063252827,
          -7,
          -7,
          -7,
          -3.4821109943313333,
          -2.131968431736007,
          -7,
          -7,
          -3.7773543130842087,
          -7,
          -2.167716392464302,
          -7,
          -2.622265844991523,
          -7,
          -7,
          -7,
          -7,
          -4.032037086801305,
          -3.842047288509638,
          -3.6649077558393044,
          -7,
          -1.7422854909460268,
          -3.4412841466213813,
          -2.334780938528331,
          -7,
          -7,
          -3.6085260335771943,
          -1.865539983912389,
          -2.720802226516568,
          -2.473260388201678,
          -2.963079160641827,
          -7,
          -7,
          -1.1493282034085548,
          -7,
          -3.6432552250247716,
          -3.3505387432018106,
          -2.687974620034556,
          -3.321184027302314,
          -1.9074138842093709,
          -7,
          -7,
          -3.6769170487121805,
          -4.495211204457828,
          -4.343487370238302,
          -7,
          -4.041416373302113,
          -2.8506945913152344,
          -4.039770926931579,
          -3.3962301252029676,
          -3.2457100295452914,
          -7,
          -7,
          -4.070905588138982,
          -3.666892211066536,
          -3.836163705227655,
          -3.919381469280224,
          -3.9163311004140837,
          -4.226745934188872,
          -3.7356388146361157,
          -7,
          -7,
          -3.8547916940539855,
          -3.760359354637302,
          -3.568045193345566,
          -3.618977317675097,
          -7,
          -3.9171027120527055,
          -4.3884919618358005,
          -3.6706168864003255,
          -3.7500453120117676,
          -3.4759615891924236,
          -7,
          -3.5028707477497782,
          -3.543145296881339,
          -3.5001907186772634,
          -7,
          -3.2872697292733806,
          -3.561657814835876,
          -3.7236198355154633,
          -3.970695473826257,
          -3.3929801389148486,
          -3.3604040547299387,
          -3.554411275946719,
          -2.5459526635880794,
          -2.6816344420035367,
          -3.1999196515905677,
          -2.9606997475594645,
          -7,
          -2.9463554862980423,
          -2.8418203302530207,
          -2.8588712445685736,
          -3.4501230858349725,
          -2.96901827581697,
          -3.534026106056135,
          -7,
          -2.521777452137303,
          -3.302157695941016,
          -7,
          -3.0796785902590686,
          -3.200560828955417,
          -7,
          -7,
          -2.2542267303652044,
          -2.6500663146368284,
          -3.5819980288675377,
          -7,
          -3.9181352261663593,
          -7,
          -3.113609151073028,
          -7,
          -3.6401056483657737,
          -2.752930091089968,
          -3.067901916340883,
          -7,
          -3.4326486600131068,
          -3.40426340205091,
          -3.143116671590088,
          -3.2676996034544477,
          -2.603851081315202,
          -3.3883232675782713,
          -2.7107518348841255,
          -3.1173860382869454,
          -7,
          -2.4491908282001305,
          -3.4946461449564397,
          -3.846337112129805,
          -3.0501776876640005,
          -7,
          -3.386617852625555,
          -2.3990368383908267,
          -4.063445953123033,
          -3.6049816296074315,
          -7,
          -7,
          -7,
          -7,
          -3.474851739592984,
          -2.908101874185159,
          -2.5969712253922594,
          -7,
          -3.247564133517697,
          -2.859652864276414,
          -3.766040860381389,
          -3.7333577879255855,
          -3.3098430047160705,
          -2.673020907128896,
          -7,
          -3.056017227469607,
          -2.5950899322706067,
          -7,
          -7,
          -7,
          -3.739888655084543,
          -2.5400573092860066,
          -7,
          -7,
          -3.1271047983648077,
          -7,
          -7,
          -3.4156409798961542,
          -2.983432966630845,
          -7,
          -2.856156278179049,
          -7,
          -7,
          -4.6323256678521805,
          -3.1711922262700494,
          -3.8112129429218173,
          -7,
          -7,
          -2.6990785643870536,
          -7,
          -2.9542425094393248,
          -7,
          -2.9219464542294102,
          -2.9640340493016373,
          -7,
          -7,
          -7,
          -2.8516077409196603,
          -3.9139727115509713,
          -3.6334684555795866,
          -7,
          -3.372451701409366,
          -7,
          -3.119668207244826,
          -3.2712107746411596,
          -4.280100110054924,
          -7,
          -2.4543366159693427,
          -2.5920460639004768,
          -7,
          -4.240424433083608,
          -7,
          -7,
          -4.05207803048417,
          -7,
          -2.8815061040436714,
          -2.7555283901719436,
          -7,
          -7,
          -7,
          -7,
          -3.633670406051444,
          -3.3674491072686044,
          -7,
          -2.840106094456758,
          -2.45430670073035,
          -7,
          -7,
          -2.4483880055226477,
          -2.5341966517021137,
          -3.8776592441116087,
          -7,
          -3.1684238181031454,
          -7,
          -7,
          -3.6822353569025643,
          -2.702676665373566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.11882666293329,
          -7,
          -3.356694958541127,
          -7,
          -3.2695246186438496,
          -7,
          -3.951653166268217,
          -2.8449288014012546,
          -7,
          -2.510192126070919,
          -7,
          -3.0147724740730637,
          -7,
          -2.7445723620206373,
          -2.8622940465782776,
          -7,
          -7,
          -3.1126050015345745,
          -3.368658712392227,
          -2.8934689290303233,
          -3.351409751925439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9883805652220086,
          -7,
          -7,
          -7,
          -3.3386556655787003,
          -3.306532247519607,
          -3.0199466816788423,
          -3.34908316877959,
          -3.633670406051444,
          -2.5605044151950564,
          -2.856642592422956,
          -2.6060318539477323,
          -3.485674115137571,
          -7,
          -7,
          -7,
          -3.3562171342197353,
          -2.8546096380957953,
          -7,
          -2.88860378026851,
          -3.171726453653231,
          -3.0430674079304287,
          -2.9256987611930096,
          -7,
          -3.1719457389302472,
          -3.2974322048101694,
          -3.30352003690728,
          -2.9061810639690853,
          -3.5922878159521305,
          -3.2956220704684576,
          -2.495110520227484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603412339519877,
          -3.739097446117475,
          -7,
          -7,
          -3.2493070873114163,
          -4.220003426156936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.741092480334294,
          -7,
          -7,
          -3.216077890434055,
          -4.191995636951234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.390540649832289,
          -7,
          -7,
          -7,
          -3.0565237240791006,
          -7,
          -7,
          -2.0871501757189,
          -2.8830933585756897,
          -7,
          -2.5595076406424986,
          -3.8869385757864556,
          -7,
          -3.074084689028244,
          -7,
          -7,
          -3.670245853074124,
          -7,
          -7,
          -7,
          -3.2116544005531824,
          -3.3126004392612596,
          -3.7960136258613275,
          -7,
          -3.619249898968967,
          -7,
          -7,
          -7,
          -7,
          -3.142389466118836,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.375785504077291,
          -7,
          -7,
          -7,
          -7,
          -3.7563317673210577,
          -7,
          -7,
          -7,
          -4.524321461179261,
          -7,
          -2.4065401804339555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.57966929355472,
          -3.327767489902729,
          -7,
          -2.951455114707749,
          -2.4578818967339924,
          -2.8848358067000373,
          -7,
          -7,
          -7,
          -1.5473790729562786,
          -7,
          -7,
          -7,
          -3.255423275624488,
          -7,
          -7,
          -7,
          -2.944841444976771,
          -7,
          -7,
          -7,
          -3.659821158055705,
          -4.082534052872713,
          -7,
          -7,
          -2.90444504107691,
          -7,
          -2.786804641247632,
          -7,
          -7,
          -3.391111613702803,
          -7,
          -7,
          -2.380814009999767,
          -4.181957860931066,
          -2.6053967516752947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.430357287504807,
          -7,
          -7,
          -3.3515815966133684,
          -7,
          -7,
          -7,
          -3.8963240875783165,
          -7,
          -7,
          -7,
          -7,
          -2.5634810853944106,
          -3.3418300569205104,
          -7,
          -3.5610715547069858,
          -3.7101173651118162,
          -3.1172712956557644,
          -3.5948895496460347,
          -7,
          -7,
          -2.7471527595745955,
          -7,
          -3.8452221064290137,
          -7,
          -7,
          -7,
          -4.5455421410420085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9951962915971793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6397071050851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.593638435787782,
          -7,
          -7,
          -7,
          -3.7444494574467986,
          -2.5339584518648985,
          -3.1541195255158465,
          -2.1667086528238673,
          -1.9549924939289824,
          -2.651762447380111,
          -2.341269613058443,
          -3.2826221128780624,
          -2.328583449714202,
          -7,
          -7,
          -3.3586010159430195,
          -7,
          -3.6922298357727557,
          -7,
          -3.3630475945210936,
          -3.3564083270389813,
          -3.6487892135944495,
          -7,
          -4.0853262624239886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7652959296980564,
          -3.402433346219312,
          -7,
          -7,
          -3.5836521085420436,
          -3.024895960107485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.62598087331167,
          -7,
          -3.663857908757308,
          -4.3152412940421705,
          -7,
          -7,
          -7,
          -3.2100508498751372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5458709619210995,
          -7,
          -7,
          -7,
          -7,
          -3.1228709228644354,
          -3.100370545117563,
          -7,
          -7,
          -7,
          -7,
          -3.50112775752298,
          -2.930821728079435,
          -1.4621744228711595,
          -7,
          -2.0644579892269186,
          -3.6222347525184295,
          -7,
          -3.9356457947525647,
          -7,
          -4.713498943292817,
          -7,
          -7,
          -7,
          -3.7035492982382308,
          -3.2853322276438846,
          -3.274942566083686,
          -7,
          -7,
          -3.2706788361447066,
          -7,
          -2.9324737646771535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.097406066153824,
          -7,
          -7,
          -7,
          -3.7347518385968206,
          -7,
          -7,
          -3.991292544250934,
          -7,
          -7,
          -7,
          -7,
          -3.2700263223122934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203772330591677,
          -3.886829004676982,
          -7,
          -7,
          -7,
          -3.298998544333325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1920095926536702,
          -7,
          -7,
          -4.858771725435463,
          -3.3505651630873636,
          -4.671336598270019,
          -7,
          -3.3343867252256643,
          -7,
          -7,
          -7,
          -2.6896048008603892,
          -7,
          -7,
          -3.8038666342849843,
          -7,
          -7,
          -7,
          -7,
          -3.4434194617828173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5067890573949856,
          -7,
          -7,
          -7,
          -4.7739472650096575,
          -7,
          -2.952211058108669,
          -7,
          -3.5998285090380104,
          -3.893595333819883,
          -3.0744285441023065,
          -4.182893766986047,
          -2.9469878800637836,
          -7,
          -3.406604042573899,
          -7,
          -4.998947733597284,
          -4.584387769446955,
          -7,
          -3.1440519712151684,
          -4.0788398805435415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.330971503774443,
          -3.4148062795010126,
          -7,
          -7,
          -7,
          -7,
          -3.821906377352323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8386497310943164,
          -7,
          -7,
          -5.067108069059566,
          -2.483312930618305,
          -3.681150749932421,
          -7,
          -7,
          -3.163699460691016,
          -4.004493337547275,
          -7,
          -7,
          -4.1188549766382225,
          -7,
          -7,
          -4.1404609028733015,
          -2.993121181893369,
          -7,
          -7,
          -3.90080393481037,
          -7,
          -7,
          -4.691788524402698,
          -3.695776736052128,
          -5.4056323231287156,
          -7,
          -7,
          -7,
          -4.65579130721557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.43663963169266,
          -4.784709989279148,
          -3.6317480743965693,
          -3.3758725475060314,
          -3.345765693114488,
          -7,
          -1.9006401839826004,
          -7,
          -4.342851828039207,
          -4.355192820439621,
          -2.986995539724382,
          -5.348082790267155,
          -7,
          -7,
          -3.3552812002137884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.521020484331018,
          -3.1043163645117278,
          -2.8893857513693093,
          -7,
          -7,
          -7,
          -3.4318460456987254,
          -3.357934847000454,
          -2.9786369483844743,
          -7,
          -7,
          -4.197011625911117,
          -2.795482766475396,
          -7,
          -7,
          -3.8340390181594666,
          -7,
          -7,
          -7,
          -7,
          -3.7965743332104296,
          -7,
          -7,
          -7,
          -3.0808668935052506,
          -7,
          -4.0231289460104955,
          -7,
          -7,
          -4.599391757793756,
          -3.262510415525468,
          -3.789679404241183,
          -7,
          -7,
          -3.3478664523399497,
          -7,
          -3.2011238972073794,
          -7,
          -2.9752019622578523,
          -2.9776754813504196,
          -7,
          -7,
          -7,
          -2.6646419755561257,
          -3.4038922955594204,
          -7,
          -3.3012470886362113,
          -2.498861688992884,
          -7,
          -2.8530895298518657,
          -2.820551732299791,
          -4.202133980060819,
          -7,
          -3.0959825284443285,
          -3.248341156669196,
          -7,
          -4.154210882206974,
          -7,
          -7,
          -3.9107310980433807,
          -7,
          -3.4783539173187754,
          -3.0210514059168814,
          -3.321184027302314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.383456296524753,
          -3.120837060254737,
          -7,
          -7,
          -2.9657391111262315,
          -3.0643365478833755,
          -3.6447339274471924,
          -3.410608542568368,
          -4.311287538662283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.491781775584166,
          -3.8337716385611715,
          -7,
          -7,
          -4.248696487980903,
          -3.384263785722803,
          -3.4850112145785728,
          -7,
          -7,
          -7,
          -3.1917303933628562,
          -3.6901074394563307,
          -7,
          -7,
          -7,
          -7,
          -3.445275460995549,
          -3.1341771075767664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8198070645907563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8159428271964737,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.201028227093125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3799216155042044,
          -7,
          -7,
          -7,
          -4.078245298732825,
          -4.084844278240215,
          -3.2697284215142757,
          -4.379353870742188,
          -4.858200217962495,
          -2.7437697389633215,
          -3.1665724186953366,
          -4.855282864274575,
          -4.555408865558874,
          -2.767396572466008,
          -2.4505140363342623,
          -4.015359755409214,
          -4.381355787093678,
          -4.8551252652257055,
          -7,
          -7,
          -2.899408910925728,
          -3.36543292378377,
          -7,
          -3.1085248922338677,
          -2.2428196610285163,
          -3.9053760693328554,
          -4.556169779397686,
          -7,
          -3.5427009694481106,
          -4.258894575054327,
          -7,
          -2.7841928196976142,
          -4.558672577786327,
          -7,
          -4.378930599420471,
          -7,
          -4.262605319944301,
          -7,
          -4.1718492670490575,
          -7,
          -3.7522435260951665,
          -4.012276677439264,
          -2.2756379736210595,
          -7,
          -3.9036746843986587,
          -3.4850941325046456,
          -4.161397952545797,
          -3.6742696661144847,
          -4.380108687851405,
          -3.7803353173424465,
          -3.0383805221721714,
          -4.161649453645398,
          -3.8631026824566015,
          -2.542521389545207,
          -4.091074600463328,
          -2.9686697017203922,
          -3.633547003033476,
          -3.9546102975982214,
          -3.95580196003404,
          -3.391699451477855,
          -3.712944181356935,
          -4.08149732835276,
          -4.859780553965358,
          -4.5550097589461,
          -3.9554772853314835,
          -3.728336386700282,
          -2.8350079316834047,
          -7,
          -4.0775556349820405,
          -3.6634712349862872,
          -4.855385878893443,
          -3.0641345304339667,
          -3.4627894928053546,
          -7,
          -3.377018208642447,
          -1.5711782528254215,
          -4.554864538285933,
          -4.088047448128369,
          -7,
          -3.53447939331355,
          -3.448794627038752,
          -3.333156738826888,
          -4.857284238807806,
          -7,
          -4.170232370181804,
          -4.159705519859825,
          -4.394083775678255,
          -3.6428367959452066,
          -4.164626434613411,
          -4.260756888802261,
          -2.09443454153178,
          -3.1914277247755534,
          -3.066347226837513,
          -4.855773479628163,
          -4.554040702717402,
          -4.090310969424922,
          -4.386249196708923,
          -3.4866134627164285,
          -3.9722491359625955,
          -4.157517208532612,
          -2.77745745648593,
          -3.536594512043907,
          -7,
          -7,
          -3.508324979986373,
          -7,
          -3.5445168787428676,
          -3.5603490688931063,
          -3.3862169580055004,
          -3.102511455500595,
          -4.013090138125056,
          -4.856916097996645,
          -4.161523721301218,
          -4.3842339054735975,
          -2.826375974639867,
          -4.081299290281622,
          -7,
          -3.911287847949822,
          -3.873396175269904,
          -3.535368932420166,
          -4.38246732201583,
          -2.7432719933439316,
          -1.988617112231469,
          -3.9038674017124433,
          -3.3362428660289103,
          -4.080265627339845,
          -2.805452126011353,
          -4.258487624056927,
          -3.790009389829715,
          -3.5146228136944844,
          -7,
          -3.858555242671831,
          -3.0505802351210796,
          -3.6941428753094128,
          -4.854888759368555,
          -4.855434347907406,
          -3.4071749324348404,
          -7,
          -7,
          -7,
          -4.856070002803182,
          -7,
          -3.407911151195616,
          -4.038983293935556,
          -3.017287893248922,
          -3.7048880192472238,
          -4.013589510501978,
          -3.5952757118020995,
          -7,
          -3.856589942245573,
          -4.161960634305219,
          -4.013842737528274,
          -3.6127448297881615,
          -4.253222872946613,
          -3.742918403405083,
          -4.159849813729301,
          -2.625509999723006,
          -7,
          -7,
          -3.6878795845197208,
          -3.657354686201244,
          -4.010929614728667,
          -2.911313252681234,
          -4.385624145431483,
          -3.867491058154675,
          -3.7206140404234618,
          -4.164739384291432,
          -3.1633601822507593,
          -4.561822620044466,
          -4.857953334848981,
          -2.1028170491190084,
          -7,
          -7,
          -7,
          -4.080872901965097,
          -4.857127364488181,
          -4.157722642992314,
          -4.855500983970402,
          -3.6966293754051547,
          -3.458879476116883,
          -3.0628470403742627,
          -7,
          -3.4853295331272607,
          -2.613166197059653,
          -4.859456543145925,
          -3.9263881834991534,
          -3.6711844175736785,
          -4.560653734255116,
          -4.088561311791215,
          -4.38524868240322,
          -4.018605404625595,
          -4.015629159583489,
          -4.260321870246313,
          -2.733318528832285,
          -3.857652067819292,
          -3.0040460900514363,
          -7,
          -3.051945625614184,
          -4.563463286075492,
          -2.378125480538288,
          -7,
          -3.0156740440360554,
          -7,
          -3.408742957890499,
          -4.079946618441097,
          -3.4471878582356688,
          -7,
          -3.711644564032507,
          -3.144115472711366,
          -3.450740462038178,
          -7,
          -4.088903550093058,
          -3.742258294562316,
          -3.6897637862550114,
          -7,
          -4.85524043938708,
          -4.158078901737636,
          -4.554664780556801,
          -4.379196703832135,
          -4.380476562832904,
          -4.55484638228861,
          -4.381018760788876,
          -3.394232727213359,
          -3.729020077925111,
          -3.566268363427344,
          -2.5459937176223186,
          -7,
          -4.556284404786872,
          -4.557025722386383,
          -3.860523665211478,
          -7,
          -4.077858253926433,
          -3.7191477268103066,
          -3.385355990680808,
          -4.862656033629871,
          -7,
          -7,
          -4.856082101490554,
          -4.856747010776003,
          -7,
          -7,
          -4.863132442718785,
          -2.9959668206801613,
          -7,
          -4.855385878893443,
          -7,
          -4.07843869186193,
          -4.85886189474819,
          -4.557416965146272,
          -7,
          -4.5578559410728055,
          -3.5797607384109624,
          -4.0186826701196,
          -2.973285586310765,
          -3.74449974079471,
          -4.261233121576351,
          -7,
          -7,
          -3.2467636369419,
          -3.3460386700879425,
          -2.2094066004154516,
          -4.557982139681939,
          -3.008564688737109,
          -2.8498106890941513,
          -3.425075097063868,
          -4.011842207926475,
          -2.9682305969102893,
          -3.039017321997412,
          -2.8392937923597086,
          -3.3914814754495763,
          -3.065997527906678,
          -4.0838727351483755,
          -4.159717546180216,
          -7,
          -4.1622357237662015,
          -4.170719244166571,
          -4.266572693335908,
          -7,
          -4.856940247940732,
          -4.1623373431820045,
          -7,
          -3.7487186396632652,
          -4.8551980103548225,
          -3.865595462350612,
          -3.3825900445189507,
          -4.082671697105723,
          -3.965724844764628,
          -4.163221026715578,
          -2.7824557613080687,
          -3.3410936383881586,
          -4.3791301930135615,
          -3.086869447540834,
          -4.855858221196212,
          -4.382131157528002,
          -3.3310684902283065,
          -3.9607739167652127,
          -3.6254749153872496,
          -4.17262627974791,
          -3.343858552512142,
          -4.262094964674063,
          -3.8723952147066427,
          -3.7200943020887176,
          -2.5667280718764567,
          -3.573164571957485,
          -7,
          -7,
          -7,
          -2.80180043987912,
          -3.6216493380712738,
          -7,
          -4.5574049321616235,
          -3.39049941719982,
          -4.379668034033654,
          -3.6889119807631894,
          -3.653140125329155,
          -3.520056119575792,
          -4.159753623143345,
          -4.258140217203789,
          -4.032037086801305,
          -4.858771725435463,
          -7,
          -2.8755306404318337,
          -2.0602941627195324,
          -4.557783811113845,
          -3.847292161501474,
          -2.480500139613694,
          -3.3072707814341467,
          -7,
          -4.382587317728938,
          -4.555414909808997,
          -3.969870006546593,
          -3.1886191672078485,
          -3.0314596718494946,
          -3.910861465201803,
          -4.855603946870416,
          -7,
          -3.788174265434528,
          -7,
          -4.159476956474234,
          -7,
          -3.5774171131475145,
          -4.8572540750698945,
          -2.929317571471571,
          -7,
          -4.85532528501812,
          -3.3712290462435877,
          -3.433553165849193,
          -3.340342530579106,
          -4.877451976617107,
          -3.0631704352090847,
          -3.800652937230222,
          -3.8961733476900053,
          -3.1275709364394157,
          -2.8008148119778054,
          -4.061619400488769,
          -4.398882851161249,
          -3.3582490253904624,
          -3.392510535867316,
          -2.993273089347496,
          -3.576126791570625,
          -3.447524488915304,
          -3.1483381904833547,
          -3.3767032686907177,
          -3.8342564079801793,
          -3.640088468106248,
          -3.9204537932826264,
          -2.9796104478095966,
          -3.6753006734237945,
          -3.2363596486015918,
          -3.52572876813568,
          -3.519133917830289,
          -3.25375912042996,
          -3.790943296475265,
          -4.388663548407268,
          -3.011523824754196,
          -3.653537478094413,
          -3.176461259564539,
          -3.321132199092705,
          -3.358300615104299,
          -4.86410151204742,
          -3.4432734208344367,
          -3.749885323442982,
          -3.582880285080852,
          -3.5943423167877353,
          -2.8820014945835553,
          -4.859636578999392,
          -3.131736625062677,
          -2.78760911244904,
          -3.6415567309708003,
          -3.8791417734536084,
          -3.1081937454828905,
          -4.564955891631275,
          -2.040840249302447,
          -3.3768184031718285,
          -4.17205387889541,
          -3.4147623034302255,
          -2.4351598613738563,
          -2.7585206179623727,
          -4.385045916619704,
          -3.0151743839266087,
          -3.443681988438522,
          -7,
          -3.508383807427543,
          -3.0315507573120577,
          -3.256173477745645,
          -4.8596905752051205,
          -2.5711701247620056,
          -2.4047181728190323,
          -2.6535150368844436,
          -4.856813445749757,
          -3.7671729976765063,
          -4.5562783726258385,
          -2.8339003854460367,
          -3.455994682544721,
          -2.496559231614817,
          -3.5045388218845748,
          -3.374460999517715,
          -7,
          -3.3207928070801973,
          -3.0725599244856134,
          -2.6950585421423634,
          -3.9731047522149807,
          -2.615994902631364,
          -3.26605241210841,
          -2.868331669204607,
          -2.802756626747439,
          -4.256819935036449,
          -2.7638008538551375,
          -2.8667134247107615,
          -3.643353961976863,
          -2.410481646285617,
          -4.380325832080988,
          -3.9725036844873167,
          -2.8567210964328824,
          -3.187362958111993,
          -4.555215405126073,
          -7,
          -7,
          -7,
          -4.882882981767894,
          -2.918961319225426,
          -4.167104566972922,
          -2.777054076316709,
          -7,
          -4.5628992633333025,
          -3.149256445629004,
          -4.168037606888807,
          -4.3874076249281835,
          -4.856602026457208,
          -3.9309150873258627,
          -7,
          -3.20194306340165,
          -3.9736819185039836,
          -4.381181288265895,
          -7,
          -4.450110481575011,
          -4.563996948568181,
          -4.034588353713625,
          -4.85982853501601,
          -7,
          -4.109336642421726,
          -7,
          -7,
          -4.018183173433062,
          -3.9180827846421873,
          -7,
          -3.4957790855584014,
          -7,
          -7,
          -3.596707029681446,
          -3.108671821835402,
          -3.4318985066229555,
          -7,
          -4.869002774465852,
          -3.424805437932406,
          -7,
          -3.7557752085304474,
          -7,
          -4.561196822498337,
          -2.7957772425463525,
          -7,
          -4.5553121461148125,
          -7,
          -4.384872894492921,
          -3.8392951720994892,
          -7,
          -4.385749227675279,
          -3.9572360388763665,
          -7,
          -3.960565902818198,
          -3.208333844497951,
          -3.9386998099696515,
          -7,
          -3.918828024910367,
          -3.968821379558316,
          -4.864617861655226,
          -3.2671717284030137,
          -7,
          -7,
          -7,
          -4.166228758210086,
          -2.605425429396821,
          -4.024532577883043,
          -3.8756457198482495,
          -4.385039951486824,
          -4.858296524533886,
          -3.990299997459176,
          -4.556875150501956,
          -3.9840150839542603,
          -7,
          -4.263274992597102,
          -3.474266708363068,
          -4.861426869337884,
          -7,
          -3.54612746259304,
          -2.674512861609274,
          -3.8769218431745798,
          -4.167275971399233,
          -3.252924384710753,
          -4.267746494644809,
          -3.4862207199417723,
          -4.860972511322973,
          -3.436220973274136,
          -4.0344164421362345,
          -4.861468694204958,
          -7,
          -7,
          -7,
          -3.718118617465126,
          -4.869636481314028,
          -4.257306505895937,
          -4.0911978303754495,
          -2.9233932493257404,
          -4.564121375515653,
          -3.8536373819585945,
          -3.021754067367309,
          -3.925185991397114,
          -4.267030853292765,
          -7,
          -4.562138156677707,
          -7,
          -3.924164378141671,
          -3.765737312131352,
          -4.881059242040658,
          -7,
          -4.164216001716105,
          -4.081953072849033,
          -3.3800121444441236,
          -4.2569761776910955,
          -7,
          -7,
          -4.554228626325214,
          -7,
          -7,
          -4.856305866433299,
          -3.8893745457940083,
          -7,
          -4.019318102912398,
          -7,
          -4.159272350379319,
          -4.856414683381129,
          -7,
          -4.557885991687047,
          -7,
          -4.02195086208636,
          -4.862363974774405,
          -3.623156217322164,
          -3.932033835682918,
          -3.924790257954725,
          -4.858537197569639,
          -7,
          -3.969637197040949,
          -4.556881174379756,
          -7,
          -3.071331704755304,
          -4.85886189474819,
          -4.557603433787706,
          -4.094243964322999,
          -4.567514525876742,
          -4.168709570145828,
          -4.855906637526463,
          -4.555203310987142,
          -4.388829153898841,
          -7,
          -4.180091451515921,
          -4.561256461130405,
          -7,
          -7,
          -4.387300822448285,
          -4.382215223047534,
          -7,
          -7,
          -3.783331762887424,
          -3.450214883607424,
          -2.9672532160042393,
          -3.2712516660130433,
          -3.1859845811695098,
          -2.956061921646337,
          -3.2555739938220456,
          -7,
          -4.08441539833186,
          -1.8217659201065737,
          -2.276956275912762,
          -3.552129141028904,
          -4.391517306849448,
          -7,
          -7,
          -3.382647303154711,
          -1.269276111291898,
          -3.3823080457324823,
          -7,
          -2.5518204510649163,
          -2.3959346665263,
          -3.1156805676460455,
          -3.7855611597971244,
          -4.3818908806262575,
          -2.6305973558006004,
          -3.3984608496082234,
          -7,
          -3.230856581359965,
          -3.7928992371582373,
          -4.384120341773882,
          -7,
          -7,
          -3.50611588719763,
          -4.08543329741699,
          -2.121465808378882,
          -3.5372432508097047,
          -3.134713812032996,
          -3.0654907946646865,
          -2.9013187157134652,
          -3.908181085136654,
          -3.2135000483995153,
          -2.89234761433871,
          -3.618780024506215,
          -2.7651716502632686,
          -3.3461039217773387,
          -3.695761776133511,
          -4.127978988916909,
          -3.6987267313033447,
          -2.957093956774686,
          -2.322852258026174,
          -3.6440773478650277,
          -2.1792825146142656,
          -3.6302098739419373,
          -3.787247880331954,
          -3.16189623398293,
          -3.0410800122072543,
          -3.694535004253942,
          -3.917855464834902,
          -7,
          -7,
          -3.1360860973840974,
          -3.5918592906551927,
          -3.0331052901726596,
          -3.6858312746260635,
          -7,
          -3.417836911626325,
          -4.382323283381981,
          -3.316958297346295,
          -2.6249224524783243,
          -7,
          -3.3065075067992313,
          -2.636810067102488,
          -4.082803315998645,
          -3.0151249381653735,
          -7,
          -4.085861173788451,
          -2.811449323773955,
          -3.330819466495837,
          -3.5426298348536434,
          -7,
          -3.19131947982865,
          -3.4888326343824008,
          -3.524493486633317,
          -2.0805322372237627,
          -3.326864749797675,
          -7,
          -1.5546954363548962,
          -2.020292753888836,
          -2.0633333589517493,
          -3.2068798223063,
          -7,
          -3.3059133062904342,
          -2.156687577399937,
          -2.164859597487805,
          -2.0264496151873232,
          -3.431202884556517,
          -2.3455535206185987,
          -7,
          -7,
          -4.3819810000434645,
          -2.4482437350117094,
          -3.905777896787175,
          -2.8125290030350776,
          -3.923364927071542,
          -2.876826150881778,
          -2.9438241512023096,
          -3.913619612233253,
          -7,
          -3.192828704060413,
          -3.3203367243872486,
          -2.6616761964944007,
          -4.394469192347434,
          -7,
          -2.6176259187047988,
          -2.9015544716083577,
          -2.0033718191111585,
          -2.7400116025859536,
          -2.354563031204298,
          -2.123238609395474,
          -7,
          -3.254676005181548,
          -4.0903815147216305,
          -3.113577139588002,
          -4.09652766560644,
          -3.3807702005041653,
          -2.7005149208160484,
          -7,
          -4.391993072259713,
          -2.487509434506823,
          -2.5719547470387742,
          -7,
          -7,
          -2.7113807411078614,
          -7,
          -7,
          -4.382197210377454,
          -7,
          -7,
          -3.0729341054228705,
          -2.930304643867514,
          -1.6669457144935187,
          -2.1261468749667998,
          -7,
          -3.3803921600570273,
          -4.081635301502951,
          -7,
          -3.2521592696791632,
          -3.8455445133344206,
          -3.637146504140139,
          -7,
          -7,
          -3.438067450453494,
          -3.094262930211214,
          -3.604154024809671,
          -4.381313673105942,
          -3.562530768862261,
          -3.622369470494735,
          -3.9072500828813284,
          -2.6749131095237257,
          -7,
          -3.9404666776635286,
          -3.0725506671486116,
          -3.70763829538,
          -2.729206697200022,
          -7,
          -3.9127179074056118,
          -2.5338099046916684,
          -7,
          -7,
          -7,
          -3.6148972160331345,
          -4.38747881199254,
          -4.085272735033534,
          -7,
          -2.711630374111664,
          -3.3078524552347384,
          -1.9388025691853918,
          -7,
          -2.9689045352426127,
          -2.2219363049007326,
          -3.7921464540322676,
          -2.7196534809864565,
          -2.5679637327475477,
          -4.099749680848987,
          -3.1359691202060493,
          -3.70372115992702,
          -2.974545805884931,
          -3.1935767529834385,
          -4.402897308556408,
          -3.1233070710124684,
          -3.690231531192315,
          -2.6235115781367413,
          -7,
          -2.910117254150511,
          -3.085986739996101,
          -2.589003893874719,
          -4.385302339856317,
          -3.404234866653423,
          -4.080788775961754,
          -3.865991800126275,
          -7,
          -3.9258275746247424,
          -7,
          -3.912647106218317,
          -2.907903783576497,
          -3.2988194999682423,
          -7,
          -3.23973313983308,
          -3.7119383877182592,
          -3.7101314745149105,
          -7,
          -4.3818908806262575,
          -3.6090605499300867,
          -3.6841628756550566,
          -7,
          -4.087870112690256,
          -7,
          -4.0894635308401925,
          -3.3884427945673337,
          -2.794202774938725,
          -2.443657006731713,
          -3.374130655189905,
          -7,
          -3.91087331482137,
          -2.8839983793774717,
          -3.0960405542954277,
          -7,
          -3.907160458165922,
          -3.8093576702111056,
          -2.811695282873729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.906819715466545,
          -4.103889203582334,
          -3.091471549501543,
          -7,
          -7,
          -7,
          -7,
          -3.915382244962084,
          -3.9142020722544286,
          -7,
          -7,
          -4.454433228116589,
          -3.0638789979485685,
          -2.304275050477128,
          -2.4085008811994832,
          -3.2911638495122544,
          -4.383366482755039,
          -7,
          -2.882102344676351,
          -2.8526155200794925,
          -1.9215443238125294,
          -4.393048466416778,
          -3.4949716071138606,
          -4.093736784562339,
          -3.344624454648622,
          -3.909948072212358,
          -3.1817396773133635,
          -2.0385958961296025,
          -2.0989869485301065,
          -2.7426798207116816,
          -3.5307829207652426,
          -2.518531255899576,
          -2.5770319856260313,
          -3.480868923687168,
          -3.3992236215272698,
          -3.1220027758749547,
          -2.7470479940428234,
          -7,
          -3.2725556132438163,
          -3.700721019369356,
          -4.3863384163575105,
          -4.404012226182244,
          -4.381764682017124,
          -3.4119898767888595,
          -3.043863436585028,
          -4.398460849608223,
          -4.120244795546365,
          -4.101317377184387,
          -3.1256124650617196,
          -2.338581857248278,
          -7,
          -2.762465651906572,
          -7,
          -2.977934547322576,
          -2.894505945868358,
          -3.503960827812307,
          -3.3678748470760316,
          -3.7298610470505493,
          -3.570367785823503,
          -3.5626836386190908,
          -3.6530194510996132,
          -3.372476821350871,
          -3.063053305570029,
          -2.368117767111091,
          -3.9047515997788804,
          -7,
          -7,
          -2.349710783664991,
          -3.1008872548535935,
          -3.542985391369392,
          -4.09029333131011,
          -3.139332147259633,
          -3.432024532665689,
          -3.296428912995118,
          -3.9112108931375533,
          -2.748081569233415,
          -3.3505651630873636,
          -3.191939809656508,
          -3.842047288509638,
          -3.3505651630873636,
          -2.8755306404318337,
          -7,
          -2.7794574747884377,
          -7,
          -3.3954283281670854,
          -3.1429502693797233,
          -2.7710727832211948,
          -7,
          -3.3948017771627113,
          -4.385499027152057,
          -3.830668848595259,
          -3.041100132448002,
          -2.903737929194321,
          -3.331309173955823,
          -4.3829710813619815,
          -7,
          -3.639021399134131,
          -3.687635961046466,
          -4.090434416175122,
          -3.7908654778443176,
          -2.7839967388630753,
          -7,
          -2.506119430030942,
          -7,
          -7,
          -3.845139399424021,
          -3.8038981197297295,
          -7,
          -3.9676883504533125,
          -4.0982686749242,
          -3.528062323092907,
          -3.5907721950139786,
          -2.8362754143350264,
          -2.736422771941762,
          -3.616842959534867,
          -4.44100348364844,
          -3.8630550617948773,
          -3.704470826766164,
          -3.811462114140843,
          -3.299000890190924,
          -4.653029106272008,
          -3.4880661257471295,
          -3.289848300578164,
          -7,
          -4.042969073393181,
          -4.437623742997059,
          -4.386648109594341,
          -4.150572247668998,
          -3.229049111241418,
          -2.726619352948061,
          -4.352404434139514,
          -3.8397419377808935,
          -4.289744985155116,
          -7,
          -3.038034210649267,
          -4.279176260897295,
          -3.7731401279444228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.183939405552801,
          -3.687049367377696,
          -2.827739375052605,
          -4.09377178149873,
          -3.3850821170480616,
          -3.2594014866290206,
          -3.097326735715773,
          -2.4783802829285815,
          -3.1469802773754947,
          -3.412830002562326,
          -2.463013153914313,
          -3.378190179082691,
          -7,
          -4.709820961709942,
          -2.8938372187011825,
          -2.9091425428224214,
          -7,
          -2.8255200663675057,
          -2.61558977880885,
          -7,
          -3.298576553045992,
          -4.373298279614871,
          -4.4514486901432795,
          -7,
          -3.2996323109915098,
          -2.661496740207439,
          -4.182035386194043,
          -7,
          -7,
          -7,
          -3.551152538599382,
          -7,
          -3.9387307545245966,
          -3.5508884680813524,
          -7,
          -7,
          -3.80433418322736,
          -4.005935151237362,
          -3.9713944077328507,
          -3.66337107549875,
          -2.852795753117633,
          -3.1758450890945245,
          -3.211925316063954,
          -2.632850802194602,
          -3.6936214394729348,
          -2.674219902021187,
          -4.015428346874354,
          -2.9874108726919797,
          -3.928882994676684,
          -7,
          -7,
          -3.445441743912532,
          -3.938259470794594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8669853928572224,
          -3.299138371401992,
          -2.125713570858261,
          -4.385516903399025,
          -3.930082633392371,
          -3.06752864063947,
          -3.1144608565074874,
          -3.5056925074122,
          -7,
          -3.067011308589492,
          -7,
          -3.1226190995465233,
          -2.8292096066377024,
          -4.089940418498635,
          -7,
          -3.790120894105942,
          -4.410406027068357,
          -3.547774705387823,
          -7,
          -7,
          -3.6933751510251853,
          -7,
          -4.0916669575956846,
          -3.706478811975557,
          -2.577588881425179,
          -7,
          -3.2995072987004876,
          -7,
          -3.6066321228503484,
          -3.4574621189595107,
          -2.818576388835446,
          -3.004280419991118,
          -7,
          -3.722502298201269,
          -2.449018025870428,
          -7,
          -2.9044368413491313,
          -7,
          -3.3606450425580268,
          -2.1153924936862136,
          -7,
          -7,
          -4.415741036222344,
          -3.1223711097261417,
          -3.3743664143331245,
          -4.38976836093798,
          -3.625946620256845,
          -3.2827266613816737,
          -3.7891751343253475,
          -3.175699365701362,
          -2.2801123594578954,
          -4.594315188234234,
          -7,
          -2.955110230970552,
          -2.8724961912956757,
          -7,
          -2.5237348569878146,
          -7,
          -7,
          -3.1554188575044515,
          -3.4564841235748665,
          -2.2898474903567414,
          -3.024830339364429,
          -3.160926389562797,
          -3.7031193462360776,
          -7,
          -7,
          -7,
          -3.6924356277125225,
          -7,
          -3.5080244315589613,
          -2.4872404509036055,
          -4.098972350263975,
          -7,
          -2.564081293595317,
          -2.0607577802449364,
          -3.1879122240468787,
          -3.4594595033417885,
          -2.9878250998853106,
          -3.724849087629386,
          -3.4632507733927764,
          -3.6996122849986963,
          -2.7870807690048474,
          -3.496129785515922,
          -4.400157923390449,
          -4.397522885718343,
          -4.383007041822538,
          -4.381584334652752,
          -4.0656170557268725,
          -4.122314197968806,
          -3.1631438287886273,
          -3.3810165714514735,
          -2.5137881643916122,
          -3.933571641443591,
          -3.5810503444369295,
          -2.9624655257438413,
          -3.605166468545595,
          -2.958629777768527,
          -7,
          -3.4047824189666427,
          -7,
          -2.8667691028858657,
          -3.0525708294952705,
          -4.454570482102004,
          -7,
          -3.174247988032499,
          -3.0338780932956375,
          -2.87143820792516,
          -3.547880146528284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.812622761461787,
          -7,
          -3.3671016750541347,
          -3.91184979649942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.416007740449289,
          -7,
          -3.8627394429551383,
          -4.167538857059484,
          -7,
          -7,
          -7,
          -4.131121218232961,
          -7,
          -7,
          -3.0686515762089925,
          -3.915382244962084,
          -4.3919402351671355,
          -4.130140705819276,
          -4.420351882127958,
          -3.940831798389784,
          -7,
          -7,
          -4.112001395486189,
          -7,
          -3.847186928162049,
          -7,
          -7,
          -7,
          -4.875299770323185,
          -7,
          -5.574108275787997,
          -5.5741233283997955,
          -4.920999961706768,
          -4.553645538162373,
          -3.6349634466665375,
          -5.2731923196083965,
          -5.030313991627524,
          -2.2555795436938713,
          -3.326022133992245,
          -5.176164793362221,
          -4.875240734689373,
          -3.2580957138341553,
          -3.0483957996741426,
          -4.729500335406759,
          -4.796253928649793,
          -5.273060911077467,
          -5.176250471178607,
          -4.875159692319408,
          -3.034675266873209,
          -3.513578060938442,
          -7,
          -3.5062291748696355,
          -1.8671743601343673,
          -4.761607519173373,
          -5.030219092203501,
          -5.273071911554271,
          -4.263262426772131,
          -4.495450091431051,
          -4.833961483448347,
          -2.5332689299307587,
          -4.761607519173373,
          -5.574176008432909,
          -5.273151801393888,
          -5.03026885912154,
          -4.319705071921085,
          -5.1763095095662175,
          -4.120713017079302,
          -5.398033227215721,
          -4.194911338636273,
          -4.428157364717315,
          -2.197559184222238,
          -5.273184216267906,
          -4.92114927101706,
          -4.213323692974096,
          -4.699524967482672,
          -3.4915328873037605,
          -5.1763534937358475,
          -4.62026621966285,
          -3.762639904201196,
          -4.69954925623636,
          -4.127651373635002,
          -2.493914732519208,
          -4.168868798061637,
          -3.4034992663875285,
          -3.6555697303870756,
          -4.383982637289572,
          -4.185241987464146,
          -4.0634973325573265,
          -4.444124056396151,
          -4.307320804551934,
          -4.307327745831848,
          -5.574181797057869,
          -4.596687937868687,
          -3.7562988995765636,
          -2.765603018334299,
          -5.176259153797791,
          -4.596411301688093,
          -4.0909486408698665,
          -5.875149271488847,
          -3.4780471080710216,
          -4.057747916795115,
          -4.972116595970914,
          -3.885104366555775,
          -1.8116883655674934,
          -4.920947286097199,
          -4.413769595610617,
          -7,
          -4.761340791717771,
          -3.5005533808904343,
          -3.2757377809986696,
          -5.030226036766992,
          -7,
          -3.903258012587803,
          -4.699361850661637,
          -3.8853502563578943,
          -3.9372918723462416,
          -4.319602211530264,
          -3.8980360208904115,
          -2.2017314834669692,
          -3.83143508369811,
          -3.5077278367650973,
          -5.030081335414012,
          -5.574089169798587,
          -3.8007384436964013,
          -4.553678482278634,
          -4.128030391104316,
          -3.9905256674594383,
          -4.972161166333603,
          -3.0864008375291396,
          -4.4441072798376,
          -7,
          -5.574107117873171,
          -3.4890886085265387,
          -5.398046542517314,
          -4.1358447556263425,
          -4.069494658929803,
          -3.877240000888399,
          -3.0891539461867294,
          -4.343907655813822,
          -5.03019073408336,
          -4.384248171139348,
          -4.384329129555316,
          -3.043458415537492,
          -5.0973880528051705,
          -5.875131323916717,
          -4.398983377343561,
          -4.037985679548938,
          -3.856055887241909,
          -5.097397885872501,
          -3.1528535263650377,
          -2.6756150647365833,
          -4.532972571333027,
          -3.1934804975764015,
          -4.921193822378502,
          -2.3960388820617213,
          -4.645181184614235,
          -4.113006362769909,
          -3.8163929090370017,
          -5.273146012768928,
          -4.574411543157535,
          -3.0006263590418154,
          -3.9127134826695467,
          -7,
          -5.8751539029999655,
          -2.710710524510052,
          -7,
          -7,
          -5.3980216483607455,
          -4.4772468924150495,
          -5.574108275787997,
          -3.550381532463171,
          -3.7774671001061875,
          -3.171527266019217,
          -3.0105439709914843,
          -4.428283507479297,
          -3.419530098342456,
          -5.574130275583126,
          -4.833870622926967,
          -4.4777190114253855,
          -3.4386348677898724,
          -3.620867921864364,
          -4.972044810706296,
          -4.796110421820556,
          -5.176508560266957,
          -2.6087185575113128,
          -5.8751544819353825,
          -5.875116849527947,
          -3.8114022197337674,
          -4.119812498380216,
          -5.574186427902285,
          -4.043175550211232,
          -4.252563520384129,
          -4.186079508649366,
          -4.357711408399213,
          -4.444562331236816,
          -3.2799885722064595,
          -4.796675494929048,
          -5.030290268715527,
          -1.8170261065401723,
          -4.87533217863164,
          -5.875141745177931,
          -7,
          -5.097346982881885,
          -4.875305557698496,
          -4.761321692144821,
          -5.0970032315517395,
          -3.6490689996707366,
          -3.8839758763210157,
          -2.938347062491972,
          -5.398035542949671,
          -3.6987703555586187,
          -2.247491266694592,
          -5.176565249878006,
          -4.09941588705348,
          -4.08464776085473,
          -4.5969817431335205,
          -4.399095430831928,
          -4.203672752553866,
          -4.533510927304131,
          -4.495431586724228,
          -4.5747741441598,
          -3.721854410698838,
          -4.671239393939525,
          -3.57629872504821,
          -7,
          -3.4388088214050185,
          -4.307785625187721,
          -2.6993153798961673,
          -4.9209935946648535,
          -3.461456300498588,
          -5.2730707536224655,
          -3.9238441992488444,
          -4.796220949422049,
          -4.6453627332859915,
          -5.574279034422683,
          -4.875382522457109,
          -3.9589045217065673,
          -4.428986458109622,
          -7,
          -4.274178639459329,
          -3.5801274505122467,
          -3.8219614856202524,
          -7,
          -5.875135376659126,
          -4.7961191030165615,
          -4.875169533985348,
          -5.176266099768159,
          -5.176388793597084,
          -5.273133856405366,
          -4.796221528026575,
          -3.739550560964701,
          -3.9085028907118207,
          -3.1432576161632504,
          -1.8111816063523138,
          -7,
          -4.833930812913641,
          -4.699298785540872,
          -3.983469571943903,
          -5.875146955714764,
          -5.097057648035371,
          -4.370933279433978,
          -4.0976459525488895,
          -4.6205570690404585,
          -5.875105269669586,
          -7,
          -5.574184691341416,
          -5.875279513902236,
          -7,
          -5.273140224066812,
          -4.444501646725794,
          -2.7513837398972187,
          -5.875125534219098,
          -5.574118117939368,
          -7,
          -4.574218263621033,
          -4.875472201021432,
          -4.7962498787040815,
          -5.574085116904895,
          -4.72934300831835,
          -3.7635719665401894,
          -4.398810619711163,
          -3.302755655340937,
          -3.8873204210410535,
          -4.319571579852526,
          -5.8751828488254665,
          -7,
          -2.925193438133817,
          -3.889187878462289,
          -2.2608270533987813,
          -4.699390776552473,
          -2.51850739505998,
          -3.7482973971048668,
          -4.036352282404115,
          -4.574252990834661,
          -3.3696183681731737,
          -3.716523724333125,
          -3.1175533996403244,
          -3.760462770747876,
          -3.245918565044522,
          -4.295967357542262,
          -4.307227086413063,
          -5.273146591634895,
          -4.574661405945726,
          -4.168913242133391,
          -4.24291914249205,
          -7,
          -4.796104055499863,
          -4.6452557790817,
          -5.398155365331024,
          -4.729720613228042,
          -5.875131323916717,
          -4.370959852740585,
          -3.5614677682783173,
          -4.3842811346015615,
          -3.9625512306554445,
          -4.460806512248824,
          -2.272641177074865,
          -3.5288799874426102,
          -4.920982596827135,
          -2.933582396764532,
          -7,
          -4.796328556603315,
          -4.05096407122405,
          -4.597200233109779,
          -3.8756456625927447,
          -4.332621950244293,
          -3.8100859701678447,
          -4.5335513782347565,
          -4.091414960840913,
          -4.3446944522897075,
          -1.807119893883509,
          -3.5566981259337616,
          -5.875137113537153,
          -7,
          -7,
          -3.4869468392948924,
          -3.9581008310880366,
          -4.9722445064263345,
          -5.398319126995318,
          -3.9786496522708426,
          -4.796091901355749,
          -4.357542742943342,
          -3.713811373193294,
          -4.002621004336619,
          -4.699366478933639,
          -4.533168098898093,
          -3.6649077558393044,
          -4.671336598270019,
          -2.0602941627195324,
          -2.7794574747884377,
          -7,
          -4.33137175881028,
          -3.6607827145202725,
          -2.3649979458602117,
          -3.66064704025109,
          -5.8750983216063615,
          -4.574514513294094,
          -5.574220578855002,
          -4.063880466051713,
          -3.7138683912822246,
          -3.7378803015508915,
          -4.344579498976326,
          -5.574138959406015,
          -7,
          -4.160257808741388,
          -4.972194157032664,
          -4.921195558053335,
          -4.761540418793504,
          -3.9742473742929625,
          -4.972230038807431,
          -3.1126862649444966,
          -5.875111638629893,
          -5.875143482030488,
          -2.879348699802187,
          -2.526882454647063,
          -3.0440275882460224,
          -3.8437597778937755,
          -2.6381556106856254,
          -3.28801204284906,
          -3.7651353157102356,
          -2.711352486869325,
          -2.5448957195226938,
          -3.5812519238247402,
          -3.952789561110113,
          -3.0192717565242306,
          -2.6894274050095857,
          -2.325126873704227,
          -2.9962720047293314,
          -3.1832038591808423,
          -2.878622355982108,
          -2.583308275404773,
          -3.4168320210448146,
          -3.0584774293788746,
          -3.7869953976090103,
          -2.063605011562094,
          -3.2426676169006745,
          -2.871390169322596,
          -3.3327795532366213,
          -2.808008751906401,
          -2.542347267174691,
          -3.1687505243233347,
          -4.307912728272152,
          -2.7585280362135705,
          -3.0872420359898087,
          -2.682564292252525,
          -3.0086809154269707,
          -2.8435499033564087,
          -4.159927374995174,
          -3.0648442126351885,
          -3.300141591368224,
          -2.869465178735402,
          -3.2537496944674316,
          -2.7757071643361386,
          -4.645089803387881,
          -2.5990497947493694,
          -2.297533665441869,
          -3.519207039342475,
          -3.6220078252245322,
          -3.162173680246885,
          -4.344657485698993,
          -2.254843910889203,
          -3.420809805024999,
          -4.0636854794912205,
          -3.2427103877041388,
          -2.0877205730045074,
          -2.8704208306755414,
          -4.043217758875041,
          -3.028695580205779,
          -3.7646042932870474,
          -5.030107385215894,
          -3.716927395607391,
          -2.574061758322598,
          -3.7438572042505402,
          -4.620270268605282,
          -2.328167646552352,
          -2.031696637319982,
          -1.7075942074338524,
          -4.9721877906016765,
          -4.026349663465754,
          -5.030229509007095,
          -2.400852103270976,
          -3.6991885346483975,
          -2.1246224358834676,
          -3.483506848766961,
          -3.0249743375432385,
          -5.5741331702100485,
          -3.118303671078639,
          -3.0525460952777084,
          -2.562282086714992,
          -3.963282084212685,
          -3.2657370805458465,
          -3.7170204972570655,
          -2.5281314788427354,
          -3.1171319781420097,
          -4.875477407595086,
          -2.530911767785156,
          -2.4140516692585825,
          -3.9577889718788883,
          -1.9096004257787231,
          -4.8753385442652055,
          -4.057510501673362,
          -2.6311440540044337,
          -3.041518803428553,
          -5.2731691668058485,
          -5.875153324063777,
          -7,
          -5.097042018466742,
          -3.969276095488932,
          -2.932504495346671,
          -4.01278061660159,
          -3.052271563538768,
          -5.2731888467667005,
          -4.357423135618709,
          -2.956034209511922,
          -4.090878765174447,
          -4.4136032189545995,
          -4.671128276629089,
          -3.3977397844052803,
          -5.273121699701525,
          -2.6455801819214715,
          -3.6543391188817833,
          -4.644963688854928,
          -4.3445927865928935,
          -3.782040708598562,
          -4.160018673786781,
          -3.5719548849719382,
          -5.273512280679019,
          -5.5743693067715,
          -3.738290420067439,
          -4.875408560077064,
          -4.921236055163652,
          -4.5334698946539165,
          -3.8472998710539152,
          -5.875108743659514,
          -3.2508882480862953,
          -7,
          -4.532787375320257,
          -2.965275059204632,
          -2.5828362847759267,
          -2.9252857913595376,
          -7,
          -4.168841090364729,
          -3.497559335583093,
          -4.796370782244777,
          -3.8987211410850873,
          -7,
          -4.049657650569741,
          -2.988758028972738,
          -5.574128538797712,
          -5.273178428074985,
          -4.554022223501833,
          -4.1514513801528805,
          -4.137218265189426,
          -4.972292535465165,
          -4.620580189857018,
          -4.242114805477301,
          -4.972344030581982,
          -4.296128050854992,
          -3.349856647581789,
          -3.322334046036867,
          -5.875169533985348,
          -3.786833916184531,
          -3.8352453860764224,
          -4.331932594695503,
          -3.188614270106468,
          -5.176415411267064,
          -5.398118322328041,
          -3.888069980618693,
          -4.076688979039402,
          -2.148795703380202,
          -3.9626303167722345,
          -4.161074725658612,
          -4.645336141727953,
          -5.8754282319102185,
          -3.582044414222515,
          -5.2733283174018215,
          -3.448229758902606,
          -5.0971762986377085,
          -4.018698765367438,
          -3.351804931431722,
          -4.761772912039747,
          -7,
          -3.3543247155352574,
          -2.688179392577509,
          -3.9229191264016565,
          -4.319860472029068,
          -3.1314339683837114,
          -4.120612025542255,
          -4.008694523323237,
          -4.533239230579834,
          -3.1947717439536922,
          -4.057901706344098,
          -4.112240278641509,
          -4.671508966732346,
          -5.273107805909014,
          -5.574094380606331,
          -2.9059469355947005,
          -4.5147780911123805,
          -4.262704542325864,
          -4.534061891739996,
          -2.7349918073029826,
          -4.3445760325747065,
          -3.237262751459272,
          -2.781089127667723,
          -4.114020527757729,
          -3.8310311349676667,
          -5.176431033922291,
          -4.357349159048321,
          -7,
          -3.8438646402793872,
          -3.692677611096558,
          -4.187417688853972,
          -7,
          -4.135480179269442,
          -4.194312526129325,
          -2.963286852631787,
          -4.645035428217922,
          -5.176358702092532,
          -5.398021069409893,
          -5.398014700899577,
          -5.87520600409689,
          -5.273110700485775,
          -5.273173797465104,
          -3.6182452755730448,
          -4.46084697750166,
          -4.514273958642971,
          -4.644899460500739,
          -5.176453020410962,
          -4.513494376034757,
          -4.4950914223088745,
          -4.185237358982509,
          -4.22212834524257,
          -3.796965553865301,
          -3.9949205954815543,
          -3.173234179107539,
          -3.5475481338589487,
          -3.9042394603397237,
          -4.495213518763391,
          -5.875141745177931,
          -3.7153104543716355,
          -4.159329992391703,
          -5.875111059637361,
          -2.8071793729279872,
          -4.231980183961163,
          -4.252165055604942,
          -3.5421075775291375,
          -4.320082210826953,
          -3.9677663165382757,
          -4.79600507614726,
          -4.6991240068041105,
          -3.807852333206259,
          -5.097008441935764,
          -3.9231276844541685,
          -3.9949142356445018,
          -5.176576818277254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.506521267409151,
          -3.739809599021359,
          -7,
          -7,
          -3.9031442704095385,
          -3.9191565722392943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.368115969880938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1687213496997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.364163115095428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.910133278495993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.756346989433602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.172135696649566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151959440597039,
          -7,
          -4.032376971209936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.858115932190066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.390405156480081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.911629328936281,
          -7,
          -7,
          -7,
          -4.694271673113084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.041471640613747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.545653424096331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.753847997272199,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6550846250819795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.660675788338524,
          -7,
          -3.693023067923694,
          -7,
          -7,
          -7,
          -3.569744443109588,
          -7,
          -7,
          -7,
          -3.7802452838653524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.281821741666723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.466951605477452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.71357453777207,
          -7,
          -7,
          -7,
          -7,
          -3.7634279935629373,
          -7,
          -3.74020473550745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6557401369917155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5275474157483435,
          -3.887335930399167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.557783811113845,
          -7,
          -4.33137175881028,
          -7,
          -7,
          -3.9058456771667958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.37984917876283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.206096944706567,
          -7,
          -7,
          -7,
          -7,
          -4.277173555485786,
          -7,
          -4.715066931328898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.009110806132213,
          -4.7212086137835625,
          -4.299982082719686,
          -7,
          -7,
          -4.199060042514597,
          -4.446904618975314,
          -7,
          -7,
          -7,
          -4.786394685839313,
          -4.280555608006274,
          -7,
          -4.114344054609816,
          -7,
          -4.660893924309038,
          -7,
          -7,
          -4.475286107828074,
          -4.1667852197354325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.456957849457605,
          -4.192400170360129,
          -4.617000341120899,
          -7,
          -4.371824907328892,
          -4.766104120608411,
          -7,
          -7,
          -3.7321323001969113,
          -7,
          -4.634119409209181,
          -7,
          -7,
          -4.144667594231179,
          -4.265044352345405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.378161609554913,
          -7,
          -3.1684974835230326,
          -4.515728171743949,
          -4.710187907543857,
          -4.560521482829096,
          -7,
          -7,
          -7,
          -4.655834477402838,
          -7,
          -4.326639624238483,
          -7,
          -4.2249472187770865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.899793153046949,
          -7,
          -7,
          -4.944985767425724,
          -4.656285109743019,
          -3.5907304057926903,
          -4.3480652533682305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.322026232058189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.599490065125433,
          -4.794481075584251,
          -4.789869675649222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.202379321079624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.870758843736827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.311478367438068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8877860348383715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.169439298978941,
          -4.549861188471943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.399950474386311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5674968911042226,
          -7,
          -7,
          -4.20115122765526,
          -7,
          -7,
          -7,
          -7,
          -3.45117215751254,
          -7,
          -7,
          -7,
          -7,
          -3.6797911709803546,
          -7,
          -7,
          -7,
          -2.946452265013073,
          -7,
          -7,
          -3.773127924033335,
          -7,
          -3.8572721735640414,
          -7,
          -3.484584529282843,
          -2.90132207214577,
          -2.626150781218194,
          -4.027553454050221,
          -7,
          -7,
          -3.7234556720351857,
          -3.3374392932692314,
          -3.5298151966446305,
          -7,
          -7,
          -7,
          -7,
          -3.0201699775354873,
          -2.9148057701698518,
          -7,
          -2.7728823371830527,
          -2.331915518756035,
          -7,
          -3.1915907263792107,
          -7,
          -3.0993928573323,
          -3.0570952896126675,
          -2.5178207322576007,
          -3.3652787155355575,
          -2.3873898263387296,
          -3.000867721531227,
          -7,
          -2.416640507338281,
          -2.969765257712867,
          -2.582986110380645,
          -2.4222717167305126,
          -3.2960066693136723,
          -3.4120123012470613,
          -7,
          -3.2826976226551636,
          -2.3833844469949503,
          -3.5020855592260456,
          -3.404833716619938,
          -7,
          -3.1478529205561894,
          -3.7945577512547617,
          -7,
          -3.937568038600383,
          -2.716965947239607,
          -3.8588378514285853,
          -1.749062739249335,
          -2.0456444402979317,
          -2.873837081117421,
          -2.6859655440604007,
          -7,
          -3.33665982345442,
          -2.960417921149897,
          -3.3394514413064407,
          -3.8221026686469206,
          -7,
          -7,
          -7,
          -2.961373627594801,
          -3.1653475667241158,
          -3.3056379379043346,
          -7,
          -3.2034136800964528,
          -3.7724684030532805,
          -3.7353992699626937,
          -3.290212746919529,
          -3.1781852925373903,
          -3.9116369331294423,
          -3.2731827770487643,
          -3.778729923996112,
          -1.909751520121109,
          -7,
          -7,
          -2.6065157176196125,
          -3.8768526476013436,
          -3.016057865962853,
          -7,
          -1.3461693549750695,
          -2.446550673565175,
          -1.645094623553164,
          -3.6516656039229356,
          -2.3408645645477133,
          -7,
          -2.8555712833674027,
          -7,
          -3.122598107677436,
          -3.4759615891924236,
          -7,
          -3.210318519826232,
          -2.74531506516047,
          -2.9927191631771874,
          -2.644673001133217,
          -7,
          -3.2916352070879005,
          -7,
          -3.294833494244287,
          -3.1685711364498443,
          -1.6657210594926508,
          -3.2976875755910435,
          -3.4180802200592306,
          -3.5412046906832586,
          -2.4291239733157144,
          -1.3176063039586632,
          -7,
          -3.4894662813031285,
          -2.506311711911182,
          -7,
          -2.7728202722091733,
          -7,
          -7,
          -3.5814945422908995,
          -2.747460362247467,
          -3.2108088200066947,
          -2.9170457648784867,
          -2.910133278495992,
          -3.6802797148108306,
          -3.80543288813214,
          -7,
          -7,
          -4.540262719307992,
          -2.716067583629281,
          -2.6847925759279203,
          -2.217206793928876,
          -7,
          -7,
          -2.521602560625828,
          -3.080781049287244,
          -7,
          -3.7730546933642626,
          -4.15839265038712,
          -7,
          -7,
          -7,
          -3.780677274433368,
          -7,
          -2.6267724474822196,
          -2.5269850685599957,
          -3.3406644011658675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.629728066875223,
          -7,
          -2.8802060123609023,
          -7,
          -2.7488924788750166,
          -7,
          -1.9686150935365165,
          -7,
          -7,
          -3.390758528738717,
          -7,
          -3.7810369386211318,
          -2.84279639517558,
          -7,
          -3.1225435240687545,
          -2.814303100170861,
          -2.7489628612561616,
          -2.567933351135913,
          -2.8542452970661185,
          -3.3251734566778013,
          -2.2809179155135966,
          -2.4509485680967495,
          -7,
          -7,
          -7,
          -3.491921712586151,
          -3.1861083798132053,
          -3.4726833296130404,
          -2.026009487084626,
          -7,
          -4.0888622597780815,
          -3.4725370532620774,
          -3.251759854528801,
          -1.5758912380804402,
          -2.864049381360671,
          -2.2648178230095364,
          -2.2238026211274917,
          -3.064520383377145,
          -2.745966567012242,
          -3.004689784223429,
          -2.9605896808839542,
          -3.23140586884273,
          -2.8955453147983605,
          -2.5713504290799474,
          -2.8963194926231832,
          -3.7029472461815556,
          -7,
          -3.6812713956674576,
          -7,
          -3.961373627594801,
          -3.483301952358167,
          -3.092319541462881,
          -7,
          -3.0940050223646494,
          -3.3274951622675926,
          -3.2487699685205684,
          -7,
          -3.50112775752298,
          -3.4389377010955284,
          -3.5851786285035163,
          -7,
          -2.8542508196658543,
          -3.449740593779286,
          -2.797890483058349,
          -7,
          -7,
          -3.7927417858347487,
          -3.7763379096201755,
          -7,
          -7,
          -7,
          -3.503790683057181,
          -3.4351433255063055,
          -2.887570418003753,
          -2.897718704935313,
          -4.1492848720317275,
          -7,
          -7,
          -3.8038666342849843,
          -7,
          -7,
          -3.780677274433368,
          -3.579612130740304,
          -3.8549130223078554,
          -2.6754116937148633,
          -7,
          -7,
          -3.780821175853473,
          -2.78738962135211,
          -3.768860000842957,
          -3.176814480674777,
          -3.380693523251344,
          -3.1621021253086092,
          -7,
          -7,
          -7,
          -7,
          -3.033959590819456,
          -2.9042420522992467,
          -7,
          -3.1136760118971,
          -3.534618306668656,
          -2.5009401142109953,
          -4.061226225119115,
          -2.0548854710650257,
          -3.0142204250828595,
          -7,
          -7,
          -2.5338255544562176,
          -3.3985765072605454,
          -3.3939917506730426,
          -3.03576316966496,
          -3.5785933717199003,
          -3.8211858826088454,
          -7,
          -3.490590487028833,
          -3.1835829923510173,
          -3.4375920322539613,
          -3.3857849588433355,
          -2.275064432627511,
          -3.3931889920552485,
          -3.2448953336918613,
          -7,
          -3.478927055582925,
          -2.93468778256179,
          -2.062025553041343,
          -2.416479448748672,
          -7,
          -3.3135157072120407,
          -3.237292337567459,
          -3.7885925559203595,
          -3.1552752927300998,
          -3.4690115586556876,
          -2.0563850493810585,
          -1.9926583941651417,
          -2.719267527975772,
          -3.913124790389559,
          -3.8489277132270785,
          -2.89028821222648,
          -2.326534063327523,
          -7,
          -3.7918660152578747,
          -7,
          -2.913350180964195,
          -3.065906339656369,
          -2.8651632195060865,
          -1.9500953041050464,
          -2.3099341887767135,
          -2.9832126912055705,
          -3.3912880485952974,
          -2.989598116961936,
          -3.412460547429961,
          -3.537198825007745,
          -1.860008936540448,
          -7,
          -7,
          -7,
          -3.3478761996098028,
          -1.7836046842286568,
          -7,
          -3.8081434257614912,
          -3.2052043639481447,
          -7,
          -3.275829434043522,
          -7,
          -2.403329809639173,
          -3.8117760216029035,
          -3.5266622930104643,
          -1.7422854909460268,
          -3.3343867252256643,
          -3.847292161501474,
          -3.3954283281670854,
          -3.6607827145202725,
          -7,
          -7,
          -3.698203390582379,
          -2.5235934654071626,
          -7,
          -3.1228709228644354,
          -7,
          -0.9476527189396753,
          -2.479514695791261,
          -2.824776462475546,
          -2.3980558050950416,
          -3.473924693416157,
          -7,
          -1.9667561292534292,
          -3.312811826212088,
          -3.3312922966807057,
          -3.8145139523682383,
          -2.514592020993427,
          -2.7517688440873256,
          -1.529020268707673,
          -7,
          -3.7717344253867693,
          -3.395937645080042,
          -4.509142012692762,
          -7,
          -3.9848872010643275,
          -3.3756940896973213,
          -2.8600383898071935,
          -3.414639146737009,
          -2.807240810537173,
          -3.353750650088075,
          -3.6967348842666072,
          -7,
          -4.106972399886674,
          -2.897438783399574,
          -2.909244961224737,
          -3.639067930567106,
          -3.9507217509858714,
          -3.4655150366516616,
          -3.5025392884840008,
          -3.6071600317370307,
          -4.414488672236952,
          -3.9636461864848433,
          -3.5712306727055516,
          -3.481209652316441,
          -3.818170888296688,
          -3.5602893055163447,
          -4.428620672671939,
          -3.405918097912158,
          -3.5393061553487297,
          -7,
          -3.139604468701357,
          -7,
          -2.9524804970471568,
          -3.3815088944507314,
          -3.4194807372393323,
          -7,
          -3.340939602038078,
          -3.510913468005192,
          -3.750649793952829,
          -3.7145393107658986,
          -3.412441879739619,
          -3.3439335003272257,
          -3.395501124305626,
          -2.4344002341345896,
          -2.2268174247459047,
          -3.0437551269686796,
          -3.4271126760547097,
          -7,
          -2.869452666025396,
          -2.5796978721407147,
          -3.2329961103921536,
          -3.0134692323091703,
          -2.8967501983926742,
          -3.328941986935604,
          -7,
          -2.058253676825634,
          -2.9670076520726463,
          -7,
          -3.5895772957033327,
          -3.316614266155604,
          -3.5262961904825314,
          -7,
          -2.21534088621076,
          -2.555146071986981,
          -3.5935633748495976,
          -7,
          -2.580164389698552,
          -7,
          -2.228447191371028,
          -7,
          -3.5510119398324944,
          -3.5408048108305006,
          -3.061928418293076,
          -7,
          -3.342504925776889,
          -3.1495805394955223,
          -2.6249296556243613,
          -3.6744937172963503,
          -2.5166355178955753,
          -3.169233451301097,
          -2.7583298903723983,
          -2.6267629209386185,
          -3.335992499288236,
          -2.0691720545784595,
          -2.446815752736374,
          -3.4797671999304147,
          -3.083172755871391,
          -7,
          -3.493504521968632,
          -2.4188820199132657,
          -4.100111959529749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7630409496258364,
          -2.806970935923172,
          -2.589759976078929,
          -7,
          -3.5650209283452936,
          -2.8690730733431287,
          -3.8961954104542107,
          -2.756870071608761,
          -3.786964259435733,
          -2.7185412294947793,
          -7,
          -2.802652263093126,
          -2.5152341673470433,
          -3.8067902715840667,
          -7,
          -3.018584930267812,
          -3.3996160424210022,
          -2.3971140642605224,
          -7,
          -7,
          -2.37325690926109,
          -7,
          -3.8133808067338557,
          -7,
          -2.6634033275146614,
          -7,
          -3.0195316845312554,
          -7,
          -7,
          -4.652497752773742,
          -2.3013004998657527,
          -3.292887763060018,
          -7,
          -7,
          -2.4051444819154186,
          -7,
          -2.716055539354098,
          -7,
          -2.8478193472952396,
          -2.7969679111473877,
          -7,
          -3.482873583608754,
          -7,
          -2.8040154544635683,
          -4.010384771498377,
          -3.1995494966993565,
          -3.3782767419344064,
          -3.130205069581069,
          -7,
          -2.5832584502973877,
          -3.2249069709218237,
          -7,
          -7,
          -2.6057456809049255,
          -2.4904601480516044,
          -7,
          -3.6863681034730362,
          -7,
          -7,
          -4.124275932006338,
          -3.577836341292744,
          -2.627442431481744,
          -2.174297741094978,
          -7,
          -2.8472641017707647,
          -7,
          -4.0965972083578945,
          -3.1026394836913003,
          -3.578371751958183,
          -7,
          -3.1807564923035585,
          -2.359984200595567,
          -3.840482487213442,
          -3.4685688527234655,
          -2.4098955692232766,
          -2.4866756505929275,
          -3.3792148413786265,
          -3.5878792635995502,
          -3.329516522848163,
          -3.9215824403934163,
          -3.5593479441958,
          -3.358315640082196,
          -2.8865712918143793,
          -3.5239631265725575,
          -3.8409212001987716,
          -7,
          -7,
          -7,
          -4.452323216977515,
          -7,
          -3.216297886630392,
          -3.9177155165594932,
          -3.363346478137335,
          -2.7004729549281645,
          -3.521225282676702,
          -2.756110879457404,
          -4.000781027353495,
          -2.834844405648704,
          -7,
          -2.903331194708171,
          -7,
          -2.4216039268698313,
          -3.525735671341458,
          -7,
          -7,
          -2.6267025813092193,
          -3.5258866515209393,
          -2.609796239029571,
          -3.1156105116742996,
          -7,
          -7,
          -3.469895618975018,
          -7,
          -7,
          -7,
          -3.468679571521236,
          -7,
          -3.8715729355458786,
          -3.0203612826477078,
          -7,
          -3.784759894664005,
          -3.1922188743934377,
          -3.2110537626799363,
          -7,
          -2.4313082951657576,
          -3.0043827972297295,
          -2.5030496272043883,
          -3.447778009294621,
          -3.997779430865604,
          -3.8091555317471806,
          -7,
          -2.602750365351694,
          -3.0233896558066746,
          -7,
          -2.7464926657826996,
          -2.966878904322697,
          -3.1108589567318674,
          -2.82910575870157,
          -3.910037123553051,
          -2.998586244334432,
          -3.778729923996112,
          -3.4815859363676225,
          -2.884965198200733,
          -3.7745169657285498,
          -3.0939467238905833,
          -2.7690078709437738,
          -7,
          -7,
          -7,
          -5.017492446477275,
          -7,
          -4.71651667687998,
          -4.319251841140254,
          -3.5174062290248944,
          -3.9075188461066293,
          -3.9390114469771156,
          -4.718418641829656,
          -2.2798193139542193,
          -3.781416261290161,
          -5.017446557593457,
          -7,
          -3.2130116859330546,
          -2.7044231927112703,
          -4.0667564855974705,
          -3.132542438758517,
          -4.7162997319773545,
          -4.239870653259158,
          -7,
          -2.9938977236207234,
          -3.176982408475351,
          -7,
          -3.344059276518739,
          -2.031074609133305,
          -3.5288918306317196,
          -3.8145305942352303,
          -5.01741735305172,
          -3.184860064113035,
          -3.2650455111829446,
          -4.115926549726361,
          -1.7125376361476683,
          -3.543140559786548,
          -4.318931056493988,
          -3.4992120475889656,
          -4.0190581035565085,
          -3.324578744752569,
          -4.240295419681809,
          -3.881999750051845,
          -7,
          -4.025006672633036,
          -4.717899237742219,
          -2.122540975250118,
          -5.018226009952465,
          -3.3561963473189524,
          -4.422474931931271,
          -3.2646480141320873,
          -3.389806176644556,
          -4.018729617051877,
          -3.9411841806116277,
          -3.852589773309593,
          -4.544022544449755,
          -3.846712266268432,
          -2.1660295690974434,
          -3.7482329235510705,
          -3.315208165872914,
          -3.277063583379518,
          -4.417085389641193,
          -4.116844250540653,
          -3.234157916937028,
          -3.741263590820309,
          -2.4527888371354494,
          -2.519628013580789,
          -4.4158910775027795,
          -5.019768281501304,
          -3.4865033443394324,
          -2.387525953718933,
          -5.018126051500581,
          -4.716741851172329,
          -3.795499715476454,
          -7,
          -3.024059030718059,
          -2.2386895205778723,
          -7,
          -3.664842196942971,
          -2.3883102514566867,
          -4.540738128377243,
          -4.246839022174548,
          -4.716174522142771,
          -4.416503208646225,
          -3.3554867054564532,
          -7,
          -3.977349410604157,
          -7,
          -3.9856346503592652,
          -4.320814875622444,
          -3.852280692954708,
          -3.449965321950027,
          -3.3600910199987775,
          -2.9725375579441833,
          -2.3541901018916573,
          -3.825628935910912,
          -3.9111728335206797,
          -4.7167460199658,
          -7,
          -3.6840084328169542,
          -5.023046584075505,
          -3.594036324592131,
          -3.4290332425510086,
          -7,
          -3.17288362158977,
          -3.9060033293720053,
          -7,
          -7,
          -3.4732910035356044,
          -7,
          -3.105776855928944,
          -4.067500678753396,
          -3.63502508274648,
          -3.0635551074793668,
          -4.065189516740959,
          -4.541433622726462,
          -4.117925559532407,
          -3.5900736323081026,
          -1.839296442332237,
          -5.020361282647708,
          -7,
          -2.937238280343299,
          -2.714537276775954,
          -2.9678504504373913,
          -4.543293896994105,
          -2.9055829657189505,
          -2.5507430055349456,
          -3.1863953736726964,
          -2.582059415336304,
          -3.0695267534267816,
          -2.070756812349173,
          -4.419017617657288,
          -3.5797795148825737,
          -3.5406321682598354,
          -3.3841324362612313,
          -4.417691691081776,
          -2.855297239874421,
          -3.8816739813278636,
          -7,
          -5.017550843499431,
          -2.4914167645416843,
          -7,
          -7,
          -5.017488274960921,
          -7,
          -7,
          -2.601259237413943,
          -3.424419460114532,
          -2.973800027588227,
          -3.466919695714147,
          -4.542705118606488,
          -2.5567109823851264,
          -4.239412105741857,
          -4.240228817121457,
          -4.118227513429574,
          -3.9146339999844666,
          -3.2642234085593933,
          -4.540333646667876,
          -5.018633935024163,
          -3.5883381171691284,
          -2.2651412914988205,
          -7,
          -7,
          -3.9095189999026805,
          -3.7429400140168823,
          -4.540871483046771,
          -7,
          -3.0261699521675665,
          -3.946689653741433,
          -3.578094568125386,
          -4.178150303064571,
          -2.871776605334238,
          -4.244487411937511,
          -4.320283410086904,
          -1.8826171285306872,
          -4.717870132737748,
          -4.5403253028737955,
          -7,
          -3.94079447058587,
          -5.018717137982806,
          -4.541312928143722,
          -5.017596721365986,
          -3.4155711595028895,
          -7,
          -3.016264717047424,
          -5.017588380296173,
          -3.7816875731600903,
          -2.257352046167068,
          -7,
          -4.035045307533338,
          -3.800870654906812,
          -4.4197864562419005,
          -3.769975996724676,
          -4.177206582920812,
          -3.216611188785647,
          -3.515844878746437,
          -3.6242325772522954,
          -3.6015852249836797,
          -4.542015814870588,
          -3.2487689647718163,
          -7,
          -3.7961308705829935,
          -3.592238460099942,
          -2.8378207563763533,
          -4.416124372065471,
          -2.549737219231734,
          -4.716370668196387,
          -3.079201130870865,
          -3.788846037218273,
          -3.340770374147969,
          -7,
          -3.27062477467715,
          -2.194455937161718,
          -2.633686887659093,
          -7,
          -4.180478150873018,
          -3.262358215691817,
          -3.066039375035261,
          -7,
          -5.01741735305172,
          -4.541558443904339,
          -7,
          -3.6200360619998735,
          -3.219201843901402,
          -3.762449313089825,
          -3.045531043985819,
          -2.262773158853526,
          -3.486980715548393,
          -2.1249663179455123,
          -2.21451713578345,
          -7,
          -4.416769445369875,
          -3.5877857724399735,
          -4.322132427150491,
          -4.415415768843478,
          -4.017913563370042,
          -2.6822192809215526,
          -4.177503519504816,
          -3.6421346345582744,
          -7,
          -7,
          -7,
          -4.319451690966244,
          -7,
          -4.716871065166026,
          -3.7922845448163978,
          -2.3033176067155994,
          -4.716308078016287,
          -4.540379534670119,
          -7,
          -5.018388393383747,
          -4.174765673953587,
          -4.417550573182442,
          -7,
          -3.815693943076172,
          -2.28735700871944,
          -4.324360662427652,
          -3.5776185595103214,
          -3.564835646603938,
          -4.721963044776573,
          -4.318755983130834,
          -7,
          -2.9145287867320646,
          -4.1789646208794,
          -2.741679904990016,
          -4.542887642342412,
          -2.8107834962325997,
          -5.02044001210619,
          -7,
          -4.54150019848575,
          -2.0656782194975314,
          -3.469559330634179,
          -2.849655016246537,
          -2.820697951673249,
          -3.47513697171306,
          -4.17699200238873,
          -4.718788079305774,
          -4.716916906053295,
          -3.790984341293377,
          -3.77203632193224,
          -3.664797257319109,
          -7,
          -7,
          -4.118487935113617,
          -7,
          -4.1774911511996935,
          -7,
          -4.547508059417997,
          -2.948409084250442,
          -3.7201220765691922,
          -3.5642373934871046,
          -4.244054348556946,
          -2.6169091123668817,
          -3.2404712429870326,
          -4.717091890401786,
          -1.9811477962844128,
          -4.239649777166663,
          -5.020199635347019,
          -2.6094077345866067,
          -3.1968111306617697,
          -3.1536335087788894,
          -3.551417465332544,
          -3.15904054763018,
          -3.7224117833264954,
          -3.7987927741252503,
          -4.246921016356379,
          -2.644079518156686,
          -3.568252584406445,
          -4.540291926094344,
          -7,
          -5.017183645990936,
          -3.205741564160098,
          -3.5409910910061515,
          -3.6965228010284625,
          -4.71858887116877,
          -2.9839295682683518,
          -4.1153525207127135,
          -3.878041442513559,
          -7,
          -3.5886637957802043,
          -4.174703437767008,
          -3.3770536230433184,
          -3.4412841466213813,
          -7,
          -2.480500139613694,
          -3.1429502693797233,
          -2.3649979458602117,
          -3.9058456771667958,
          -3.698203390582379,
          -7,
          -2.3860019205925016,
          -5.017150248999077,
          -3.304088493409747,
          -3.355122390781841,
          -2.9681254577062237,
          -2.0209917192807882,
          -2.4485416995909173,
          -3.3804908110338814,
          -4.063358382401493,
          -7,
          -5.025883174987696,
          -4.5414086541853065,
          -3.604479442251883,
          -4.718983048773428,
          -3.0984948177211837,
          -5.018804483937159,
          -2.692448070813735,
          -7,
          -7,
          -3.1377404849138455,
          -3.292103876106375,
          -3.65583181270073,
          -4.333825983402247,
          -3.4917705786758737,
          -3.284676781430669,
          -4.200928629688284,
          -3.2615495579978937,
          -2.8764774040208363,
          -3.731170345661575,
          -5.0318324518318445,
          -3.3847363232927834,
          -3.745768862350299,
          -3.294485488709798,
          -2.983371577045491,
          -3.7744822068760837,
          -2.8288274539936142,
          -2.882264257327153,
          -3.912157503683096,
          -3.4502456081885424,
          -3.8847346927599973,
          -2.9090196030296576,
          -3.1141174616703298,
          -3.7237366063718094,
          -3.9865702106959704,
          -4.096930858642897,
          -3.6683189267256213,
          -3.097045308948987,
          -7,
          -3.2296898397116656,
          -3.347363159274476,
          -3.4468390869568273,
          -3.220265033587232,
          -3.2835310112543548,
          -4.324533491388053,
          -3.51919023560018,
          -3.8417543174102082,
          -3.8900032587038527,
          -3.7964063374956316,
          -3.1347002127414654,
          -3.133327349797274,
          -3.2130497765462813,
          -2.802130831465385,
          -3.4028122078099425,
          -4.034010460806513,
          -3.263757868359468,
          -5.024850846911755,
          -2.6327946083041307,
          -3.1146991576799494,
          -3.496628515300069,
          -2.444798542184289,
          -2.469795166795331,
          -2.595193927668544,
          -4.022139570398392,
          -3.560749934897699,
          -4.088140027861661,
          -7,
          -4.040760524228698,
          -2.5556885987041573,
          -3.5291374854609625,
          -4.175337828792021,
          -2.562031018999178,
          -2.4750868264637527,
          -2.034410206973508,
          -4.240307906524845,
          -2.8729676179461134,
          -4.173702284990066,
          -2.572621734042997,
          -3.0615159677916264,
          -2.7089047150021646,
          -3.6154878703137148,
          -2.628959492782499,
          -4.716587577675693,
          -3.472056083784771,
          -2.6703693435998876,
          -2.39720514363694,
          -4.253814369244739,
          -3.5226615437344733,
          -4,
          -2.6678254243062796,
          -3.42035058816188,
          -3.3205741358813006,
          -2.867601703139016,
          -2.369231662128971,
          -4.5532719967524224,
          -2.4046365395859763,
          -4.319950913553649,
          -3.917545903402913,
          -2.7308155314228784,
          -3.5595369902185747,
          -4.7170793938576265,
          -7,
          -7,
          -4.0178010275503055,
          -3.3735156590247626,
          -3.2544076201709182,
          -3.609758541684431,
          -3.2823662563684763,
          -4.416174347457088,
          -4.324422394952085,
          -2.977633550844847,
          -4.423499820977251,
          -3.701465186162768,
          -3.5557238881668107,
          -3.623122005965013,
          -7,
          -2.462887260857094,
          -3.617234290359394,
          -4.32054091992458,
          -4.24619893571377,
          -4.290053170559201,
          -3.9827110624208517,
          -3.4900990050633047,
          -4.543443038006803,
          -7,
          -3.6780074233271307,
          -4.718418641829656,
          -4.320947640446896,
          -3.049123134141101,
          -3.1201797515823153,
          -7,
          -3.3079618675777316,
          -7,
          -4.416045232599017,
          -1.8859182451512673,
          -3.0670765813320258,
          -2.896233410673829,
          -5.017350592437945,
          -3.704554950656303,
          -3.2046780026252124,
          -4.242309477629206,
          -3.470945147978499,
          -7,
          -3.559617741918764,
          -3.0228800220022025,
          -4.540454613671412,
          -4.717146037938382,
          -2.5562242647185487,
          -3.32271947927634,
          -4.080866893505251,
          -4.17410551615397,
          -4.119552797667117,
          -3.906939764651386,
          -4.241430254748615,
          -3.7678729114200067,
          -3.7988884028032657,
          -3.026584330956644,
          -5.0176634441579555,
          -3.538229034708407,
          -3.4846739647335605,
          -3.643493800910431,
          -3.769340394703022,
          -7,
          -4.1150360645086375,
          -3.4559414209391317,
          -3.6439294805612317,
          -1.9862854524046398,
          -3.7262380468026377,
          -3.917598409792237,
          -3.980734503770833,
          -7,
          -3.410290598084559,
          -4.06495273646327,
          -3.2195964323588115,
          -4.319838638494149,
          -3.505639106593364,
          -3.4969652121341888,
          -3.9424132054969987,
          -7,
          -3.1889720317784556,
          -2.982637157656279,
          -3.199480914862356,
          -3.519651648851301,
          -2.9426693313867003,
          -3.3369332662477835,
          -2.1673496219002173,
          -3.304945993154212,
          -3.489977472033322,
          -4.432235498890437,
          -3.9802389553242405,
          -4.419001068534885,
          -4.318672590050602,
          -7,
          -3.080286255966738,
          -4.328375525537133,
          -4.065977853283259,
          -4.328216457500718,
          -3.535907776156941,
          -4.547134479806692,
          -3.729775730905153,
          -2.853459860691864,
          -2.544673895853184,
          -3.7716119750851425,
          -5.019361421009378,
          -3.3993110400675417,
          -7,
          -3.399754191090663,
          -3.46599342501868,
          -3.443984706747188,
          -7,
          -3.9814602868654,
          -4.020738225867342,
          -2.6520392665715007,
          -4.11691061520064,
          -5.018841912540566,
          -4.716445764507459,
          -7,
          -5.017926065550163,
          -5.017696801710228,
          -5.018151043270515,
          -4.138124995891195,
          -3.8463288633433605,
          -2.6835592462131155,
          -4.3200797861711155,
          -4.718480928596619,
          -7,
          -4.717774488273178,
          -4.174811308156082,
          -4.417176804312706,
          -4.071321397569312,
          -4.42024875711693,
          -3.031946790297499,
          -3.95981225658644,
          -2.9291814974678476,
          -4.718651133527875,
          -7,
          -3.229742771130175,
          -7,
          -7,
          -2.8485276350613553,
          -4.116765429332974,
          -4.174616292119658,
          -3.7987602916703658,
          -4.725589057037808,
          -3.724865454175407,
          -5.0178760546701096,
          -4.540971472183699,
          -3.6629260984538985,
          -5.017634254197808,
          -3.8297458846919756,
          -4.0679795950683815,
          -3.4886543840544424,
          -7,
          -3.775537634780957,
          -3.754348335711019,
          -3.452323216977515,
          -7,
          -7,
          -2.841672250073634,
          -2.919470349950749,
          -3.166133970305109,
          -2.8849368971038603,
          -3.09737827210023,
          -4.0178260380304245,
          -7,
          -3.7680458141024165,
          -2.4665961406123937,
          -2.4434966621063214,
          -2.700037723329635,
          -3.093001196684749,
          -7,
          -3.7646990637983677,
          -7,
          -2.451414739478241,
          -3.412830002562326,
          -7,
          -2.789007502449785,
          -1.8173674420354016,
          -1.9037854146535949,
          -2.1586566299201766,
          -3.45178643552429,
          -1.7977515163651112,
          -1.7218310466708049,
          -2.018496104177425,
          -2.818968476456068,
          -1.7624471699896267,
          -3.762378429311964,
          -3.4622482153549976,
          -3.4823017672234426,
          -3.0139201038746375,
          -2.993362739596023,
          -3.316022793314225,
          -7,
          -2.551391902262548,
          -3.478927055582925,
          -2.87303587216726,
          -3.466422722433792,
          -3.1843364700443417,
          -3.1690863574870227,
          -2.53315637946727,
          -2.7261383350625823,
          -3.4766142820325037,
          -2.901662615158517,
          -3.9255699095433765,
          -3.038288917572495,
          -3.543260747590362,
          -2.309233676772654,
          -2.7887664606630405,
          -2.116009679424738,
          -2.465077655032553,
          -3.7841178164629232,
          -2.717323705505671,
          -2.3076605745629943,
          -3.1984508855664053,
          -2.960470777534299,
          -2.961285461809911,
          -7,
          -3.191800210014707,
          -3.6497728273006773,
          -2.8900308871883484,
          -3.7658175153099185,
          -3.759592308645975,
          -2.56534174619609,
          -3.754806855354423,
          -3.0720864292830243,
          -1.9566718738913946,
          -3.7633531087482153,
          -3.2965006536117496,
          -3.040978874281845,
          -7,
          -3.1758016328482794,
          -7,
          -7,
          -2.5470906692062414,
          -3.385665843515682,
          -3.3007403694565793,
          -7,
          -7,
          -3.7951149856303634,
          -2.5770215296430306,
          -2.4913616938342726,
          -2.0708827673325994,
          -3.840670561333409,
          -2.652826800476945,
          -3.160368474792848,
          -2.747245294567787,
          -3.282244366936266,
          -7,
          -7,
          -3.243905770217521,
          -2.6775499250161365,
          -2.3409758350134933,
          -7,
          -3.0307346169761686,
          -3.7989267385772014,
          -7,
          -3.452169918535435,
          -2.7015679850559273,
          -7,
          -2.1276831637211653,
          -3.526210003841664,
          -2.152381013642323,
          -2.198732594105873,
          -3.4885507165004443,
          -3.7737133252770216,
          -2.8604045600125314,
          -2.441695135640717,
          -1.5690249136109147,
          -3.8041394323353503,
          -7,
          -2.451077576038457,
          -2.7358483078954117,
          -2.4072760390988797,
          -7,
          -2.7226555674530473,
          -2.9856790279839016,
          -2.943141057367911,
          -2.9378401619201777,
          -2.5345901249430756,
          -2.33573864700505,
          -3.2137169289704004,
          -2.2179771804757857,
          -3.3649728908307397,
          -3.4614985267830187,
          -7,
          -2.4584381274852687,
          -2.6571089938154944,
          -7,
          -7,
          -3.309356366125307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.997222509991783,
          -2.944975908412048,
          -2.3367070221695694,
          -3.157197642540677,
          -7,
          -7,
          -2.800946076169,
          -3.469895618975018,
          -2.705007959333336,
          -7,
          -2.1848388616878607,
          -7,
          -3.297395711008887,
          -2.0030506803087964,
          -2.6817859439337655,
          -7,
          -7,
          -7,
          -3.1283992687178066,
          -2.7208355991282493,
          -3.527823164012659,
          -3.3624196382493063,
          -2.8077604599357904,
          -2.600629036221514,
          -3.2476664528683656,
          -2.724548924926919,
          -2.8855496750060046,
          -3.308706665276203,
          -2.723070670548517,
          -3.4784221877400805,
          -3.753812783564702,
          -7,
          -3.020430344344904,
          -3.7762652182681093,
          -3.470410490975931,
          -7,
          -2.64051349413832,
          -7,
          -3.7835641541035208,
          -7,
          -3.175055991624076,
          -2.3976064637013526,
          -7,
          -3.1540325012731145,
          -3.003077387416016,
          -2.6805297561976316,
          -3.10151795524841,
          -3.534660575828444,
          -3.071513805095089,
          -3.039744506778152,
          -2.7554937284151193,
          -2.9355988601479255,
          -7,
          -2.992995098431342,
          -7,
          -3.549095263822955,
          -2.815154959698523,
          -3.5895187615052655,
          -3.767304317453273,
          -2.618328772336617,
          -7,
          -2.997426102215431,
          -3.4873505196555823,
          -2.9906559275051268,
          -7,
          -2.784545974054523,
          -2.256252854237207,
          -2.725152937179735,
          -7,
          -2.841017999215743,
          -7,
          -2.944975908412048,
          -7,
          -7,
          -3.298489193286698,
          -3.281412167517624,
          -3.1642040993240332,
          -2.7014240597913446,
          -3.2836780569110555,
          -2.484869032720402,
          -2.3909351071033793,
          -2.4092566520389096,
          -3.2317012265137786,
          -4.149088396735554,
          -3.749427099121749,
          -3.4774830160749435,
          -2.44205196294031,
          -3.117204986092783,
          -3.277074133470176,
          -3.285932185579952,
          -2.542469739402932,
          -3.3629848397370954,
          -2.4935214192716417,
          -7,
          -7,
          -3.4623231130842345,
          -3.7716609593488872,
          -3.751048034820188,
          -3.761927838420529,
          -3.241172786770047,
          -3.134631721464408,
          -2.7961887392208773,
          -2.639026512722247,
          -7,
          -7,
          -3.1942367487238292,
          -3.792041310712082,
          -7,
          -2.45178643552429,
          -3.2232362731029975,
          -2.9471272548064458,
          -3.3529539117100877,
          -2.536892500990388,
          -7,
          -7,
          -7,
          -2.618756433176055,
          -2.958145631642097,
          -2.552048459343581,
          -3.0990587890680543,
          -3.221107261698154,
          -3.80543288813214,
          -7,
          -3.7748817658187965,
          -1.5947506413102113,
          -2.706595875112968,
          -1.9660799510358338,
          -1.4346404576189893,
          -3.6068111469189637,
          -3.3551321154773457,
          -3.494084989966382,
          -7,
          -2.977658292937134,
          -3.129475054459623,
          -2.8178957571617955,
          -7,
          -7,
          -3.12515582958053,
          -2.9927007612585004,
          -3.3627965209590185,
          -7,
          -2.6920239462715356,
          -1.9483546620868522,
          -2.818291890799996,
          -3.298033910215436,
          -7,
          -3.290578685153958,
          -2.25919667574194,
          -7,
          -2.8087793747812646,
          -7,
          -3.801472313521471,
          -1.3071078393578763,
          -2.7366416240451947,
          -2.77232170672292,
          -2.5427217148436054,
          -3.0535777871252825,
          -3.0757901954968463,
          -3.33046450572258,
          -2.972492117335942,
          -4.012137752982696,
          -2.2646442371397235,
          -7,
          -7,
          -7,
          -2.8061400553771305,
          -1.8154535181128486,
          -3.000723221619096,
          -3.791901080009571,
          -1.9224573872938893,
          -2.407501745719001,
          -2.369515102569025,
          -7,
          -2.6856137979674,
          -3.7956715059460215,
          -2.5087316694431436,
          -2.334780938528331,
          -7,
          -3.3072707814341467,
          -2.7710727832211948,
          -3.66064704025109,
          -7,
          -2.5235934654071626,
          -2.3860019205925016,
          -7,
          -7,
          -2.960742508800416,
          -3.068556895072363,
          -2.1114050956256545,
          -1.7342702822230114,
          -1.2129508474370692,
          -1.8440017975763174,
          -2.609441944950562,
          -7,
          -2.931966114728173,
          -2.9943904822573,
          -3.792461731346951,
          -7,
          -2.5665281401774287,
          -3.7777891874348675,
          -1.9531422419472886,
          -7,
          -3.054459837239404,
          -3.2870906259509054,
          -4.109571797908949,
          -7,
          -7,
          -4.055424205129799,
          -3.9825425823029432,
          -7,
          -3.6449307079135873,
          -3.184332449959256,
          -4.16705135873788,
          -7,
          -4.404012226182244,
          -4.157962696891443,
          -4.542779796679602,
          -3.52270499273475,
          -7,
          -4.719115743876443,
          -3.7725808366922844,
          -7,
          -7,
          -7,
          -4.79505407293256,
          -4.07923552946522,
          -3.31467646842225,
          -2.997677564080969,
          -7,
          -4.404209183192527,
          -3.8355003278673188,
          -7,
          -3.606414957134592,
          -7,
          -3.8771491224653936,
          -3.720242018287057,
          -4.016887157902775,
          -7,
          -7,
          -7,
          -4.224830777267873,
          -3.709566740542544,
          -3.3230082040914604,
          -3.1060548400937864,
          -3.812879948090056,
          -3.1869098660219337,
          -3.411249219353385,
          -3.5109915855486893,
          -3.57826253807072,
          -3.57153414742667,
          -3.1650651966570837,
          -3.0974019347178685,
          -3.016406500871118,
          -3.516085643024291,
          -2.7598835895931746,
          -2.4458018231993797,
          -7,
          -3.4712116739886065,
          -3.3739780274568667,
          -7,
          -3.212415920092334,
          -3.8574380412917293,
          -3.9933039379194746,
          -7,
          -3.1442417228775326,
          -3.5127121834169777,
          -4.5647049444621635,
          -3.2950537061049516,
          -1.9031341203675114,
          -3.778585327862962,
          -3.411351202966301,
          -7,
          -4.372754718401078,
          -3.6318241174379233,
          -3.6375697764175206,
          -7,
          -7,
          -3.6054531982661273,
          -3.672243038508735,
          -3.9646367037885013,
          -3.430679613881531,
          -7,
          -3.3344795275988064,
          -3.4089180208467798,
          -3.4961682741749778,
          -2.8370269714709435,
          -3.72488091090256,
          -3.1669725197384757,
          -3.448803620276374,
          -7,
          -3.482397122253336,
          -3.103509151942946,
          -4.397087956203049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.970610705566062,
          -2.6415907465950124,
          -2.52336260719049,
          -7,
          -2.8967710973843452,
          -2.8895097937792866,
          -7,
          -3.557085936526085,
          -3.468716471515472,
          -2.952873129432044,
          -7,
          -3.052975943015183,
          -3.014333825736173,
          -7,
          -3.8661100398443766,
          -7,
          -3.8631443462526676,
          -3.0372936658607066,
          -7,
          -7,
          -4.049024097915049,
          -7,
          -7,
          -1.9385070581749333,
          -2.5317343092765503,
          -7,
          -3.712593587604018,
          -7,
          -7,
          -3.6958123304324237,
          -3.5100353535497364,
          -4.124236784040634,
          -7,
          -3.9014038268252516,
          -2.5594025837993186,
          -7,
          -2.628604007178344,
          -7,
          -3.134686992556854,
          -2.619681355828017,
          -7,
          -7,
          -2.5368452760024067,
          -3.053014383525799,
          -2.920123326290724,
          -7,
          -3.363737299322217,
          -3.336859820916809,
          -3.490660653356137,
          -3.0040755930845697,
          -2.7563434766857546,
          -3.8421514084022284,
          -7,
          -2.6815929538723164,
          -3.1497321599470633,
          -7,
          -3.0784568180532927,
          -7,
          -7,
          -7,
          -3.0864784741618685,
          -2.458402655474184,
          -3.0620982702573447,
          -3.483016420144132,
          -7,
          -7,
          -7,
          -3.4845133742926118,
          -4.046534182750969,
          -7,
          -3.1670217957902564,
          -2.8572193841811426,
          -3.524266268766979,
          -7,
          -2.549998911569488,
          -2.462662730904351,
          -2.8905141650708486,
          -3.398229441859627,
          -2.7701495884132963,
          -7,
          -2.145962558639885,
          -2.2977273601138957,
          -2.972175602200704,
          -3.6897970549034977,
          -7,
          -2.9700146181755556,
          -3.7576996250877386,
          -7,
          -4.448690864310427,
          -7,
          -3.8029104894190398,
          -3.905148001856016,
          -3.046706936468822,
          -7,
          -4.294422133112984,
          -3.327197556612044,
          -2.2373282608465153,
          -2.7872969497664726,
          -7,
          -2.335081616638203,
          -7,
          -2.9022749204745018,
          -2.712383834167483,
          -7,
          -7,
          -3.8446635282402393,
          -2.6335357828383685,
          -2.6835698996941697,
          -3.1966596938570437,
          -3.7784406835712327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.761062896966188,
          -7,
          -2.1269824791182863,
          -7,
          -7,
          -3.7676010680503356,
          -7,
          -3.7974752875373343,
          -3.7856856682809013,
          -3.5824610945249487,
          -3.8355003278673188,
          -3.2555137128195333,
          -7,
          -7,
          -3.792951708250132,
          -7,
          -3.9355072658247128,
          -3.785756799962643,
          -7,
          -3.2856046796973826,
          -3.7967130632808965,
          -3.316808752053022,
          -3.4550987591574565,
          -7,
          -3.2870175013221017,
          -3.7613263224214566,
          -3.7655195430979527,
          -3.5713011255662694,
          -3.756940236046724,
          -3.3848907965305544,
          -3.0560150335589764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.09437911228647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3823773034681137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9956351945975501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2581581933407944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9924121171611855,
          -7,
          -3.3872118003137306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7507320413412115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8744818176994666,
          -3.000434077479319,
          -3.104487111312395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8924285469452298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.975845225467567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.8750983216063615,
          -7,
          -7,
          -5.017150248999077,
          -7,
          -7,
          -2.91539983521227,
          -7,
          -7,
          -3.7571681922142726,
          -7,
          -2.9390197764486667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.020996236394208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2095150145426308,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.59659709562646,
          -7,
          -7,
          -7,
          -7,
          -2.862131379313037,
          -7,
          -7,
          -7,
          -4.302793446245299,
          -7,
          -2.951337518795918,
          -7,
          -3.509121840939676,
          -3.3207173506008356,
          -7,
          -2.8527848686805477,
          -7,
          -7,
          -7,
          -3.444454682653069,
          -3.912168896059627,
          -7,
          -7,
          -3.7210252807581212,
          -7,
          -7,
          -2.9479236198317262,
          -7,
          -2.963787827345555,
          -7,
          -3.789316247841687,
          -2.910357557272878,
          -7,
          -7,
          -3.113609151073028,
          -3.090434416175122,
          -7,
          -1.8082237164938735,
          -2.3607826898732798,
          -3.13640344813399,
          -7,
          -3.912268957428651,
          -7,
          -7,
          -7,
          -2.940516484932567,
          -3.6848453616444123,
          -7,
          -7,
          -7,
          -2.6488477083728936,
          -7,
          -3.2383504459244157,
          -3.510813010512496,
          -3.082939166392626,
          -7,
          -7,
          -2.876217840591642,
          -3.5079907248196913,
          -2.888179493918325,
          -3.2116544005531824,
          -3.214843848047698,
          -7,
          -7,
          -7,
          -3.178431655600839,
          -7,
          -7,
          -2.7746629225378223,
          -7,
          -2.7254661258631927,
          -2.3722674440956544,
          -7,
          -7,
          -4.649785797412952,
          -2.998695158311656,
          -3.4358443659844413,
          -7,
          -3.0674428427763805,
          -2.7869151523951547,
          -3.401400540781544,
          -3.0881360887005513,
          -7,
          -3.208710019906401,
          -7,
          -3.5531545481696254,
          -7,
          -3.3592661646067485,
          -7,
          -3.3619778278554406,
          -3.291479852236699,
          -3.339133305969879,
          -7,
          -7,
          -7,
          -2.747994102251068,
          -3.4578818967339924,
          -7,
          -7,
          -3.8626381581186875,
          -2.879955585122749,
          -7,
          -7,
          -2.4863419105902533,
          -2.9763499790032735,
          -7,
          -7,
          -2.828567836231445,
          -3.344713721977851,
          -7,
          -7,
          -7,
          -7,
          -2.860426089824901,
          -7,
          -7,
          -2.815411701875331,
          -3.12057393120585,
          -7,
          -2.359021942641668,
          -3.1067007323623543,
          -3.9127760568902574,
          -7,
          -7,
          -7,
          -3.8197588361982464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.910624404889201,
          -3.2342641243787895,
          -7,
          -7,
          -4.075382701327236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7907932251273815,
          -3.162340331628426,
          -4.168055303459139,
          -3.4222614508136027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5538830266438746,
          -7,
          -7,
          -7,
          -3.769241895684789,
          -7,
          -2.6299190355035416,
          -7,
          -2.5103215502161387,
          -7,
          -7,
          -1.469822015978163,
          -7,
          -2.673020907128896,
          -7,
          -3.12434117077496,
          -7,
          -3.1258064581395266,
          -3.653531032753514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.903731084963894,
          -7,
          -3.989672247623873,
          -7,
          -2.9107768156582345,
          -2.98798391954084,
          -7,
          -3.717420836722375,
          -2.329092647195331,
          -3.292256071356476,
          -2.846491747873616,
          -2.411409240981208,
          -1.0824788661576048,
          -1.9474337218870508,
          -1.6996209579656139,
          -2.719054930320311,
          -7,
          -3.2286569581089353,
          -7,
          -3.273510545540457,
          -3.385963570600697,
          -4.049954148022047,
          -7,
          -3.0110415256389502,
          -7,
          -3.012133913649598,
          -3.1367205671564067,
          -2.6190933306267428,
          -7,
          -7,
          -2.451932564220791,
          -2.951337518795918,
          -7,
          -3.4583356259919475,
          -7,
          -3.5788110603225816,
          -7,
          -7,
          -7,
          -7,
          -3.028977705208778,
          -2.8058405488146727,
          -7,
          -2.5330726600488123,
          -2.820100366728689,
          -7,
          -3.5438508428044115,
          -4.434572265433589,
          -7,
          -2.788875115775417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.57672517213259,
          -2.9355072658247128,
          -7,
          -2.864708802200848,
          -3.903346539757214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1522883443830563,
          -7,
          -7,
          -3.721563318357481,
          -2.762678563727436,
          -3.8131137540078983,
          -3.1453828919748745,
          -7,
          -7,
          -7,
          -3.0935658766580136,
          -7,
          -4.539790966345741,
          -7,
          -4.237686133897014,
          -7,
          -7,
          -7,
          -3.0565660880728815,
          -7,
          -3.5042895854462257,
          -7,
          -3.8669368177316397,
          -2.5261238000934845,
          -2.864511081058392,
          -3.0068937079479006,
          -2.6720978579357175,
          -2.476989630387119,
          -2.591481997238255,
          -7,
          -7,
          -2.801403710017355,
          -7,
          -3.3316297176299323,
          -7,
          -7,
          -2.745367607290579,
          -3.2610248339923973,
          -3.0242119239259035,
          -3.0105119627372137,
          -3.8544882250444306,
          -3.43970102987625,
          -7,
          -3.016351471856979,
          -7,
          -2.713770462202507,
          -3.3336487565147013,
          -2.890979596989689,
          -3.4994579639204475,
          -2.656936261920949,
          -3.8166389448984614,
          -7,
          -7,
          -7,
          -4.714740384665852,
          -3.594613509160098,
          -7,
          -7,
          -2.6175245348862926,
          -3.3104808914626753,
          -7,
          -1.9091993191743837,
          -7,
          -3.1782573208121887,
          -7,
          -7,
          -7,
          -3.4349678884278125,
          -3.16790781000148,
          -2.3863715504164245,
          -7,
          -2.6896048008603892,
          -4.382587317728938,
          -3.3948017771627113,
          -4.574514513294094,
          -7,
          -3.1228709228644354,
          -3.304088493409747,
          -2.960742508800416,
          -2.91539983521227,
          -7,
          -7,
          -2.381904399731051,
          -2.04356552011917,
          -2.9103956884008624,
          -2.121438887639747,
          -7,
          -2.91539983521227,
          -3.467756051244033,
          -7,
          -7,
          -3.179838928023187,
          -3.38524868240322,
          -7,
          -2.7151538610111667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.595419056052439,
          -4.581779045728458,
          -7,
          -7,
          -7,
          -4.7224529287900365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.662323319907556,
          -7,
          -7,
          -4.476382325832763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.317530579996265,
          -7,
          -7,
          -3.8915077231856623,
          -3.2102649990322885,
          -7,
          -4.337339439388419,
          -7,
          -3.9354493224404465,
          -7,
          -7,
          -7,
          -4.186565539383188,
          -3.730064136632307,
          -7,
          -4.444029173533431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6924944075030846,
          -4.342401529601869,
          -7,
          -3.0595634179012676,
          -3.725094521081469,
          -7,
          -4.1793985738477035,
          -7,
          -5.406115897462093,
          -7,
          -7,
          -7,
          -4.0296678026753225,
          -3.9619902874400648,
          -3.706511535925743,
          -7,
          -4.225438516805497,
          -7,
          -3.7865439418445064,
          -3.8912725631953657,
          -2.393867559040913,
          -4.100572381131625,
          -4.657008020434356,
          -3.6072405038317426,
          -3.8858873896236554,
          -7,
          -7,
          -3.6124235606645025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6300499369039914,
          -2.6524075191391137,
          -3.1539810696591877,
          -7,
          -7,
          -3.5725037282944347,
          -7,
          -3.0860037056183818,
          -2.5674185056727485,
          -3.7790912038454993,
          -7,
          -3.4019447911096794,
          -3.054708787938054,
          -7,
          -7,
          -7,
          -7,
          -3.7031193462360776,
          -7,
          -7,
          -3.506369717095504,
          -7,
          -7,
          -3.3498600821923312,
          -2.3431188516609445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.734162995777309,
          -4.790932252099301,
          -7,
          -7,
          -2.7805093291574954,
          -7,
          -2.8237349883987313,
          -7,
          -2.8339965879428433,
          -3.2192510215768,
          -7,
          -7,
          -7,
          -2.456366033129043,
          -3.417388646165674,
          -7,
          -3.3346547668832414,
          -3.241795431295199,
          -7,
          -2.5822528043462953,
          -3.4024763265233604,
          -7,
          -7,
          -2.989004615698537,
          -2.868879446237088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0573910358048546,
          -2.7407573233077707,
          -7,
          -3.3100557377508917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9334872878487053,
          -3.0519239160461065,
          -7,
          -7,
          -2.421143067071665,
          -3.1871781457685944,
          -2.658488381309017,
          -7,
          -2.7948047956207,
          -3.2220658425885866,
          -2.5622184925953624,
          -7,
          -3.2037320465140935,
          -7,
          -7,
          -7,
          -2.977266212427293,
          -7,
          -7,
          -7,
          -3.197831693328903,
          -7,
          -4.53487608457354,
          -7,
          -7,
          -4.250651726858576,
          -3.699577591398909,
          -2.550771730644782,
          -7,
          -2.3406423775607053,
          -7,
          -3.382647303154711,
          -2.4458635609892205,
          -7,
          -7,
          -3.3459615418131414,
          -2.929929560084588,
          -3.40224418233262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.830203598925704,
          -7,
          -2.124033012647276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.203209725325918,
          -3.172310968521954,
          -7,
          -7,
          -7,
          -3.473778834646725,
          -7,
          -7,
          -7,
          -7,
          -3.693287157005656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.741151598851785,
          -7,
          -4.903412873454334,
          -7,
          -7,
          -7,
          -3.7161981756548146,
          -4.209836595069655,
          -7,
          -2.4668676203541096,
          -7,
          -7,
          -7,
          -4.337079711800931,
          -7,
          -7,
          -7,
          -3.739148685632311,
          -1.911772031594504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3416323357780544,
          -7,
          -3.321162040332412,
          -7,
          -1.1387669360318688,
          -7,
          -7,
          -7,
          -7,
          -3.0310042813635367,
          -7,
          -3.0948203803548,
          -7,
          -3.7939568520276987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.035029282202368,
          -7,
          -7,
          -7,
          -7,
          -2.8146501647125612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6239725120169965,
          -7,
          -7,
          -4.5230730485888655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5308397786165204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.116188673979431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.065206128054312,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9258275746247424,
          -7,
          -7,
          -7,
          -3.428872395902744,
          -7,
          -7,
          -3.0159881053841304,
          -3.534026106056135,
          -3.3224260524059526,
          -7,
          -3.86975959478241,
          -3.9755926285377265,
          -2.921166050637739,
          -7,
          -7,
          -4.090430007966779,
          -7,
          -7,
          -7,
          -1.9666109866819343,
          -7,
          -3.8206392563794713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.025674449410344,
          -7,
          -3.549463076236982,
          -7,
          -7,
          -7,
          -2.5888317255942073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9749719942980692,
          -7,
          -7,
          -7,
          -7,
          -2.8472641017707647,
          -2.6857417386022635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5713011255662694,
          -7,
          -7,
          -4.753245909414036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9552816418448353,
          -7,
          -3.6695957810243134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1441589128307523,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071403283531469,
          -7,
          -7,
          -7,
          -3.188647295999717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.367169488534681,
          -7,
          -3.847634344318255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8674674878590514,
          -7,
          -2.4382785804926073,
          -3.906927347308956,
          -3.2704459080179626,
          -7,
          -5.7128987603665005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.681241237375587,
          -3.3104808914626753,
          -7,
          -3.197831693328903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5646660642520893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.977266212427293,
          -7,
          -7,
          -7,
          -3.809694358716924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.532919914252143,
          -7,
          -4.710261259520343,
          -7,
          -7,
          -7,
          -2.9076800242424197,
          -7,
          -7,
          -3.2305340688115245,
          -7,
          -7,
          -7,
          -7,
          -3.1277525158329733,
          -7,
          -2.8107364373885813,
          -7,
          -7,
          -3.1332194567324945,
          -7,
          -7,
          -7,
          -7,
          -3.321287665169863,
          -3.1072099696478683,
          -7,
          -7,
          -7,
          -3.586305934735186,
          -7,
          -4.283775978711523,
          -7,
          -7,
          -2.6716355966021297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8646297245455123,
          -1.9294189257142926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3932241163612975,
          -2.780317312140151,
          -7,
          -7,
          -7,
          -7,
          -2.5903215880567183,
          -3.6085260335771943,
          -7,
          -4.555414909808997,
          -4.385499027152057,
          -5.574220578855002,
          -7,
          -7,
          -3.355122390781841,
          -3.068556895072363,
          -7,
          -7,
          -7,
          -3.523876475638131,
          -2.2671717284030137,
          -3.1103371400787525,
          -2.824125833916549,
          -2.605305046141109,
          -7,
          -3.3787611753163733,
          -7,
          -7,
          -7,
          -3.1573560154410694,
          -7,
          -3.5015658718510116,
          -7,
          -7,
          -4.594083019091813,
          -7,
          -7,
          -7,
          -7,
          -4.371123300581949,
          -7,
          -7,
          -4.578673585479501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278970693925059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530583859645118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.773464626158091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.065676794647086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9876662649262746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.134384320553547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.991128570067966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.653945370217834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.129432074155575,
          -7,
          -7,
          -7,
          -7,
          -4.897638085948279,
          -7,
          -7,
          -3.480368786890804,
          -4.955437586216608,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.865192838908103,
          -3.3346547668832414,
          -3.87952594503966,
          -7,
          -7,
          -4.340186237916345,
          -7,
          -3.2778383330020473,
          -7,
          -7,
          -7,
          -7,
          -3.601951404133522,
          -7,
          -7,
          -7,
          -7,
          -3.6535983818432896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.228913405994688,
          -2.90687353472207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.453776859690442,
          -7,
          -3.446537167073644,
          -7,
          -2.876506504265881,
          -3.9468941951023266,
          -7,
          -7,
          -3.0595634179012676,
          -3.167317334748176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6479596900461457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.31694832926197,
          -7,
          -7,
          -3.78511619502192,
          -3.851115599375254,
          -7,
          -7,
          -7,
          -7,
          -2.7248490876293854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0141003215196207,
          -7,
          -4.527926202533123,
          -7,
          -7,
          -4.243967684036416,
          -3.6496268868405295,
          -7,
          -7,
          -3.2214142378423385,
          -7,
          -7,
          -3.6546577546495245,
          -7,
          -7,
          -7,
          -7,
          -3.9159096427947526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2753113545418118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.367355921026019,
          -7,
          -3.803013034258028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.19574748437503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.580544849190167,
          -7,
          -3.49789674291322,
          -3.501470072100412,
          -7,
          -7,
          -7,
          -3.047145014047316,
          -2.780557320149522,
          -3.1394628347923637,
          -7,
          -7,
          -3.5237464668115646,
          -3.419625360887743,
          -3.5005794923633378,
          -3.3027637084729817,
          -7,
          -7,
          -3.517855418930029,
          -7,
          -3.1102706498108663,
          -3.540663098377016,
          -7,
          -2.6604504241975055,
          -2.5802286615929395,
          -2.889189612047073,
          -2.9370161074648142,
          -7,
          -2.98109342314593,
          -2.912434633375575,
          -2.8488047010518036,
          -3.559222427207474,
          -2.587037117743456,
          -2.9108910886445285,
          -7,
          -1.8132913875518861,
          -2.827553882825746,
          -2.5748026613264443,
          -2.5825935908267597,
          -3.5020172148271476,
          -7,
          -3.5446880223026773,
          -3.4252080511386565,
          -2.8229522405474814,
          -3.5561818466529114,
          -3.6871721045948,
          -7,
          -3.850829959848531,
          -7,
          -3.5878231713189552,
          -7,
          -2.7018916426154878,
          -2.9502674680135885,
          -2.1679751216076135,
          -2.4819996714322374,
          -3.0760332934499632,
          -2.670538800459197,
          -7,
          -7,
          -3.038699623020623,
          -7,
          -2.986211715514367,
          -3.2890312351397615,
          -3.5150786750759226,
          -7,
          -3.8067902715840667,
          -3.3140779917792127,
          -3.042181594515766,
          -7,
          -3.719082573901486,
          -7,
          -3.3071214846498904,
          -2.639361960384033,
          -3.2141813086638207,
          -7,
          -3.5541447248133005,
          -7,
          -2.261395053995737,
          -7,
          -7,
          -2.9300146074718962,
          -3.6787914343662442,
          -2.5390760987927767,
          -7,
          -1.6298403810901787,
          -2.5264567654148817,
          -1.8027353006529854,
          -3.793231447056521,
          -2.5408105809460935,
          -7,
          -3.1611439385978923,
          -7,
          -3.8187535904977166,
          -7,
          -7,
          -3.72956972630197,
          -2.748575616930992,
          -3.7095243558763413,
          -2.735465823404231,
          -7,
          -3.9250541203118425,
          -7,
          -3.198519630241168,
          -3.497620649781288,
          -1.9568500102505335,
          -7,
          -3.2302785764135864,
          -7,
          -2.728541072104733,
          -1.6429238914818773,
          -3.561101383649056,
          -3.2323607123535703,
          -2.6022770843001926,
          -3.6190933306267428,
          -2.5774270667201127,
          -3.5852350633657752,
          -7,
          -2.908842315881035,
          -2.4101443047027806,
          -3.8451600776519457,
          -2.7407009689987443,
          -2.813284389969057,
          -3.9964970786804326,
          -3.2587569725365753,
          -3.6828217233274905,
          -2.6606283529737342,
          -3.4143475818341713,
          -3.127428777851599,
          -2.739018245883481,
          -2.3486293266283655,
          -7,
          -7,
          -2.809713590178541,
          -3.2773035345575963,
          -7,
          -7,
          -3.7166376183281282,
          -7,
          -7,
          -7,
          -7,
          -3.49789674291322,
          -2.7835137861438874,
          -2.582604405067025,
          -3.530711837981657,
          -7,
          -7,
          -4.012162067970823,
          -2.2431758980706937,
          -3.529045170765769,
          -3.1344958558346736,
          -3.671697259882356,
          -2.7964355588101744,
          -7,
          -7,
          -7,
          -2.1724247283295366,
          -7,
          -7,
          -3.6649238934380817,
          -3.0211892990699383,
          -7,
          -3.324385356490427,
          -2.738284958200182,
          -7,
          -2.927626962444954,
          -3.3576490329184674,
          -3.40849436021236,
          -7,
          -7,
          -2.665751780385266,
          -2.9410142437055695,
          -7,
          -7,
          -7,
          -7,
          -3.2286569581089353,
          -3.502836638621003,
          -1.9712118454247622,
          -7,
          -4.338157564271773,
          -3.5025636691073636,
          -7,
          -1.8596955777710922,
          -2.8843421476470588,
          -2.455430557308209,
          -2.3506489672611517,
          -2.8454081396217936,
          -2.118664941398519,
          -3.3352572564345317,
          -2.452169918535435,
          -7,
          -2.5554975061310574,
          -2.6661434272915585,
          -2.948290680973653,
          -3.8654593226619647,
          -7,
          -3.7651094972067183,
          -7,
          -4.392573856408141,
          -7,
          -3.0840397806679536,
          -7,
          -3.9259821003271034,
          -3.559068334034537,
          -2.7912895457988998,
          -7,
          -3.554489160003819,
          -3.0700906651588995,
          -7,
          -7,
          -2.7541783906953876,
          -3.6269730385435053,
          -3.147278719784546,
          -7,
          -7,
          -7,
          -7,
          -3.521399628115376,
          -3.24699069924155,
          -3.5114822886260013,
          -3.081587315813503,
          -2.351135733834349,
          -3.0358964706119558,
          -3.256236533205923,
          -4.459944220602778,
          -7,
          -3.5422027824340283,
          -3.557266528869904,
          -7,
          -7,
          -3.5154764413823756,
          -2.905885787102876,
          -7,
          -2.5595076406424986,
          -7,
          -7,
          -7,
          -3.2287852009806493,
          -7,
          -3.5129510799724906,
          -3.3475251599986895,
          -3.424011600521135,
          -7,
          -7,
          -7,
          -7,
          -2.970114322285097,
          -3.0874264570362855,
          -7,
          -3.5735677730392186,
          -3.2738111993994035,
          -2.5117879011517172,
          -3.4649860542696933,
          -1.8364400847717912,
          -3.3507324517161297,
          -3.5081255360831993,
          -7,
          -2.8904955374150134,
          -2.9776321652459994,
          -3.311471301200697,
          -3.274734984872738,
          -3.5569936047645743,
          -3.5873741720730656,
          -7,
          -7,
          -2.395256480886022,
          -3.3116479226525204,
          -3.3740147402919116,
          -2.349915522861571,
          -7,
          -3.330007700872759,
          -3.570426178358973,
          -7,
          -3.014205413953746,
          -2.209357290015056,
          -2.9526310252827455,
          -7,
          -7,
          -7,
          -7,
          -3.1658376246901283,
          -7,
          -2.0480441310593758,
          -1.8376124087883927,
          -2.705756835334468,
          -3.73471984165568,
          -7,
          -3.270804691244306,
          -2.6582188456612497,
          -7,
          -3.2631624649622166,
          -7,
          -2.97806633408362,
          -2.7746496557637714,
          -3.18440748541232,
          -2.1772178342189354,
          -2.110963618614987,
          -3.3425707105283156,
          -3.66576855071938,
          -3.1789050382803548,
          -2.9200363194824788,
          -3.8855539571233466,
          -2.147828673906813,
          -7,
          -7,
          -3.4891143693789193,
          -3.224325836319485,
          -1.981235965607963,
          -3.2425414282983844,
          -3.564784384503987,
          -3.1192558892779365,
          -7,
          -3.078366179530183,
          -3.544564097496043,
          -2.7388937591840596,
          -7,
          -7,
          -1.865539983912389,
          -7,
          -3.969870006546593,
          -3.830668848595259,
          -4.063880466051713,
          -7,
          -0.9476527189396753,
          -2.9681254577062237,
          -2.1114050956256545,
          -7,
          -2.381904399731051,
          -3.523876475638131,
          -7,
          -1.9470697286324765,
          -2.170925605178104,
          -1.5839889457616856,
          -3.505149978319906,
          -7,
          -1.9497323077321136,
          -7,
          -3.5657297878311267,
          -3.274619619091238,
          -3.1524718103360363,
          -3.5407047833107623,
          -1.7533189919593353,
          -7,
          -7,
          -3.6237763280606363,
          -4.7912343651243665,
          -4.329092647195331,
          -7,
          -3.693183141082376,
          -3.164121434824116,
          -4.010299956639812,
          -3.1565909224659774,
          -3.7491784619809887,
          -4.085254891103877,
          -7,
          -4.358505911490235,
          -3.4850664949549346,
          -3.5039140446492345,
          -3.9117965904372523,
          -4.079651477073845,
          -3.9986428830113456,
          -3.790048796867443,
          -3.827207675105206,
          -4.064663855913281,
          -3.808818425092124,
          -4.137380489000302,
          -3.632963168167261,
          -3.8659208408403645,
          -4.187971701647396,
          -4.381512174732024,
          -3.9840680235504013,
          -4.2558270827032345,
          -7,
          -3.470963211036848,
          -7,
          -3.5247422079728614,
          -4.074432424783191,
          -3.9607323219456383,
          -7,
          -3.869055618701908,
          -7,
          -4.1909057081427346,
          -4.254741376091537,
          -3.8632633636504807,
          -2.4709529918306132,
          -3.8492965408347266,
          -2.8959235657954556,
          -2.3042116544501705,
          -3.0122344564170116,
          -3.601824684748978,
          -3.693463127219531,
          -3.1481795768335057,
          -2.8174957822367825,
          -2.8592884423200204,
          -3.250706949449761,
          -3.0299645394193337,
          -3.226608496506789,
          -7,
          -2.502049207161313,
          -3.190565127083142,
          -7,
          -3.4723663352268415,
          -3.465300215260955,
          -3.387449152133768,
          -3.5886078047426864,
          -2.6265655766809153,
          -2.999503780341293,
          -4.152356303773212,
          -3.0538464268522527,
          -2.6214647920373584,
          -7,
          -2.6946708788665745,
          -7,
          -3.9046851219657635,
          -3.8638282512985738,
          -3.3284702135959416,
          -7,
          -3.675063091209669,
          -3.242468347967402,
          -3.052638985331171,
          -3.8258154449852038,
          -2.7601024937899448,
          -3.3551640665152047,
          -3.187919607508631,
          -3.031603901657714,
          -2.4921781467062147,
          -2.568742383741263,
          -2.884786004759232,
          -3.799409479615127,
          -3.4603677039425986,
          -7,
          -3.3416323357780544,
          -2.596254003169732,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.894814329083301,
          -2.9875173043753707,
          -2.916278440573439,
          -2.8913677498314385,
          -7,
          -3.6618126855372615,
          -3.090716448481099,
          -7,
          -3.193958978019187,
          -3.5269850685599957,
          -3.0134692323091703,
          -7,
          -3.0823464673160794,
          -2.5748026613264443,
          -7,
          -7,
          -3.302357990059733,
          -3.678973375919765,
          -2.5824820176812113,
          -7,
          -7,
          -2.6352323462394964,
          -7,
          -3.5739154404215507,
          -3.0497024560521484,
          -2.6323849760606866,
          -7,
          -3.6353496846184767,
          -7,
          -7,
          -4.147820549940331,
          -2.733005108513303,
          -3.483994607181074,
          -7,
          -7,
          -2.7740941824480316,
          -7,
          -3.048053173115609,
          -7,
          -3.031206419827462,
          -3.1350053669438873,
          -7,
          -3.5216610151120733,
          -7,
          -2.674248595527798,
          -7,
          -3.076397685429307,
          -3.644832328825636,
          -3.1242868058150215,
          -7,
          -3.6585837154070626,
          -3.3136563466180315,
          -3.9623219727295846,
          -7,
          -2.7467049482220722,
          -3.0755469613925306,
          -7,
          -3.744866446899768,
          -7,
          -7,
          -7,
          -3.682145076373832,
          -2.915336042999824,
          -2.5390760987927767,
          -7,
          -2.5165862191199873,
          -7,
          -3.9882467233753784,
          -3.5542468081661105,
          -3.4576296199439165,
          -7,
          -2.984347257585864,
          -2.5551912165114072,
          -7,
          -3.495127881242933,
          -2.5488069263615474,
          -2.816836671284734,
          -2.988304089217602,
          -7,
          -3.514338998289733,
          -7,
          -2.9545640899663494,
          -3.3106933123433606,
          -3.12830231716435,
          -7,
          -7,
          -7,
          -3.505421327583281,
          -7,
          -4.40784960347914,
          -7,
          -3.1056237109716145,
          -3.741624257503812,
          -3.784260582566084,
          -2.9811841373983543,
          -3.7576996250877386,
          -3.059092737484648,
          -3.3835760193323763,
          -2.958882280950234,
          -7,
          -3.1720188094245563,
          -7,
          -2.894931123659502,
          -3.3866772839608377,
          -7,
          -7,
          -2.8041394323353503,
          -3.597366050266028,
          -3.040950269144804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9550620696750323,
          -7,
          -3.0678145111618402,
          -3.5490032620257876,
          -7,
          -3.5229655954919865,
          -3.239674787646781,
          -3.574147064150723,
          -7,
          -2.7083359026822635,
          -3.158463011591568,
          -2.7265304858618973,
          -3.9275756546911103,
          -7,
          -3.566555330883055,
          -7,
          -2.637203727209186,
          -3.076761771924212,
          -7,
          -3.027935408120664,
          -3.0952856128383934,
          -3.267406418752904,
          -3.17832933714299,
          -3.7300551523755,
          -3.241048150671644,
          -3.5118833609788744,
          -7,
          -2.914078585389112,
          -7,
          -3.254185409462092,
          -2.788572366037187,
          -7,
          -7,
          -3.084576277934331,
          -7,
          -7,
          -7,
          -3.7768464086952993,
          -2.5691890378923947,
          -3.2287210842783987,
          -2.629336773667501,
          -2.9514069115390393,
          -3.289092947357841,
          -4.022758194236769,
          -7,
          -3.475598557756169,
          -2.859676507874828,
          -2.625877098398814,
          -3.123916943498132,
          -2.2647483969871836,
          -3.459392487759231,
          -3.073938190635253,
          -7,
          -2.7892440932493145,
          -3.11544408343624,
          -7,
          -2.919513912264031,
          -2.5294363557246826,
          -2.3334472744967503,
          -2.743010616594783,
          -3.7620029693751156,
          -2.6390174887025926,
          -2.7129085955138073,
          -7,
          -3.103411940177142,
          -3.0356298277904386,
          -3.7712199019495336,
          -3.4710715736130306,
          -3.4907308083489235,
          -2.1987168371755947,
          -3.0813473078041325,
          -7,
          -7,
          -2.978864984347657,
          -3.4874212113594747,
          -2.8121296198154386,
          -3.475162519083091,
          -2.17679685544469,
          -3.8754664158663856,
          -1.9314311045195778,
          -2.8109490279235856,
          -2.830944910590037,
          -2.858403506793794,
          -3.3292961591399655,
          -3.3475251599986895,
          -3.374381698050882,
          -2.345800201367372,
          -3.3080305542661055,
          -2.8241583885046158,
          -2.7001391361209706,
          -3.4913616938342726,
          -3.328787200354535,
          -2.761766799738045,
          -7,
          -2.6988363547021272,
          -2.1760912590556813,
          -3.771954748963949,
          -3.8025000677643934,
          -3.4793353286902375,
          -2.408839837676014,
          -3.7745899502647946,
          -3.467312062980552,
          -3.2940250940953226,
          -3.7638022240745928,
          -4.03181227133037,
          -1.9842516874733798,
          -7,
          -3.3029799367482493,
          -3.0810935899469842,
          -3.4690115586556876,
          -2.83953518010886,
          -7,
          -7,
          -2.7862442464696757,
          -7,
          -3.184194404461818,
          -7,
          -3.06435100696701,
          -3.8033205235787544,
          -2.926856708949692,
          -2.769623455004179,
          -2.6237963756878444,
          -2.8928363526263907,
          -2.8326728977407982,
          -3.643798000679235,
          -3.5969542796066576,
          -7,
          -7,
          -3.6022770843001926,
          -3.5524857010929476,
          -2.40970774995732,
          -2.563053700270298,
          -7,
          -3.2475939016334037,
          -3.1075491297446862,
          -7,
          -7,
          -2.8457475186617014,
          -7,
          -2.6081317580331795,
          -3.5338355842360567,
          -2.9824973691977124,
          -2.365398121563634,
          -3.0985052832013156,
          -3.4811558708280352,
          -3.044735697450507,
          -2.986707768660134,
          -1.958292711812444,
          -7,
          -7,
          -2.0624056925748784,
          -2.270703608382223,
          -2.4762155307586386,
          -3.5121505369220305,
          -2.786708412045808,
          -3.120832862638392,
          -3.097881744713868,
          -2.9743345236890986,
          -1.9271734168466537,
          -2.755326094070565,
          -3.52283531366053,
          -3.21133416373255,
          -3.4955443375464483,
          -2.4463448147796543,
          -3.501470072100412,
          -2.6687654392008207,
          -3.141763230275788,
          -7,
          -7,
          -3.378170700063069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4866211799441786,
          -2.8827277737122063,
          -2.772743880410262,
          -3.706803097037338,
          -7,
          -4.11143055176598,
          -2.986473147467338,
          -3.478566495593843,
          -3.8282731120520697,
          -3.922465945298413,
          -2.757540624926174,
          -7,
          -7,
          -3.105442054801695,
          -2.46108292457563,
          -7,
          -7,
          -7,
          -2.931521433730744,
          -2.993656628615462,
          -7,
          -2.8919708544400624,
          -3.1954014495202188,
          -2.655928985380298,
          -3.3799698999538514,
          -3.1555721862550743,
          -3.8481891169913984,
          -3.7944880466591697,
          -2.797293193949948,
          -7,
          -3.7628285531890904,
          -7,
          -3.506234359612126,
          -3.784831178124469,
          -3.3028357965272437,
          -7,
          -2.6304596577087733,
          -7,
          -3.3875321946343506,
          -7,
          -3.5482665451707454,
          -2.5115770590772803,
          -7,
          -3.703678200880355,
          -2.8163833578293587,
          -3.057158750485419,
          -3.1875771190550872,
          -3.843295082736507,
          -2.0368130875534725,
          -2.7457252252544877,
          -2.3930108178985368,
          -2.583198773968623,
          -7,
          -3.2996815916623548,
          -7,
          -4.154971441544471,
          -2.9096748675185355,
          -3.9595183769729982,
          -7,
          -2.477451294677366,
          -7,
          -2.867113779831977,
          -3.796851749049887,
          -2.4989367896326486,
          -7,
          -2.6785884095944708,
          -2.06547416845862,
          -2.319337436236881,
          -7,
          -3.4129083314437545,
          -3.8460586289641854,
          -3.095552896019402,
          -7,
          -7,
          -3.483301952358167,
          -7,
          -2.9965846321681098,
          -2.4869261276199506,
          -2.923983747103962,
          -2.0179524814025043,
          -1.8944413421587214,
          -2.638156336676239,
          -3.129574813769972,
          -4.198881922320664,
          -7,
          -3.486005186362242,
          -2.4921315335815697,
          -3.824516328007209,
          -3.4623231130842345,
          -2.816756695724616,
          -2.1273404437758536,
          -3.3703897104835856,
          -3.1465621131575565,
          -7,
          -3.758684849882441,
          -7,
          -7,
          -7,
          -7,
          -2.9470046073947573,
          -3.0230278632753684,
          -3.459543258280413,
          -3.462622574900549,
          -7,
          -3.7791634237644987,
          -3.8048887446223913,
          -3.197831693328903,
          -7,
          -2.8499650956427165,
          -2.6830041301242167,
          -3.5571461423183632,
          -3.57951684265999,
          -2.675485048073944,
          -3.8529676910288186,
          -3.7681198941847973,
          -7,
          -2.8228551350071545,
          -7,
          -3.0281644194244697,
          -3.8067225030761813,
          -3.012814225271012,
          -7,
          -7,
          -7,
          -1.8485279434560256,
          -3.131578568842297,
          -2.401491236089779,
          -2.172144044533389,
          -3.6110502851446897,
          -2.8389120274059985,
          -3.3260626338156793,
          -3.470410490975931,
          -2.9853623100167104,
          -2.766996754711321,
          -2.7572333005770804,
          -7,
          -7,
          -3.3549403598710645,
          -3.4790711958039306,
          -7,
          -7,
          -2.9215130698187295,
          -2.337443413729783,
          -3.3498600821923312,
          -3.6057358938767465,
          -3.2392368961623195,
          -3.5802929605940523,
          -2.351882901347562,
          -7,
          -2.570135907677381,
          -3.070037866607755,
          -3.8095597146352675,
          -1.9043483915868251,
          -2.5783375537206847,
          -2.7944880466591697,
          -2.7538893314598334,
          -2.7563317673210577,
          -3.384353414137506,
          -3.4614985267830187,
          -3.5820633629117085,
          -4.018845751189305,
          -2.8035253955765325,
          -3.159717546180216,
          -7,
          -7,
          -2.927686156168301,
          -2.6528906949522417,
          -2.5553789986175914,
          -7,
          -2.4640035246143746,
          -3.0815633209803854,
          -3.269045709657623,
          -7,
          -2.7827676182461665,
          -7,
          -2.3109586924199976,
          -2.720802226516568,
          -3.8038666342849843,
          -3.1886191672078485,
          -3.041100132448002,
          -3.7138683912822246,
          -7,
          -2.479514695791261,
          -2.0209917192807882,
          -1.7342702822230114,
          -3.7571681922142726,
          -2.04356552011917,
          -2.2671717284030137,
          -1.9470697286324765,
          -7,
          -1.918156201003093,
          -2.287624959905981,
          -3.2890684385904976,
          -7,
          -3.4164185888449987,
          -3.4807253789884878,
          -3.800717078282385,
          -3.3292622471045052,
          -3.034138055782684,
          -7,
          -2.3013485188018796,
          -7,
          -7,
          -3.6960067152185454,
          -4.3322498880444344,
          -7,
          -3.9795938958489305,
          -4.278212300455029,
          -4.461513533243928,
          -4.109949580230588,
          -3.8680269370808706,
          -3.511605323528979,
          -3.5683190850951116,
          -7,
          -4.104981897748486,
          -7,
          -4.543273178913283,
          -3.2574085565304025,
          -7,
          -4.720101393614298,
          -3.7187849063628957,
          -3.7290027092721902,
          -4.412527744472011,
          -7,
          -4.4430612262456535,
          -3.604118006192035,
          -3.553529977558765,
          -3.955567497098864,
          -7,
          -4.706273875527286,
          -7,
          -3.8777168008649765,
          -3.77000803178587,
          -3.5959148826640113,
          -4.246170191757922,
          -3.9441206092013927,
          -7,
          -7,
          -7,
          -3.8081434257614912,
          -4.527423658682064,
          -7,
          -3.821728703986952,
          -2.2405492482826,
          -4.114969412756915,
          -3.314252961500534,
          -2.96748111539479,
          -7,
          -3.5221833176186865,
          -7,
          -3.5672592416964437,
          -2.9492751746818158,
          -2.669368542313857,
          -3.371424127988508,
          -3.2965980399742842,
          -2.5873749918376694,
          -7,
          -3.559999668676523,
          -3.475307913956194,
          -7,
          -7,
          -3.558078266395439,
          -3.697403723200488,
          -7,
          -3.1000930325866447,
          -3.620145775285036,
          -4.2795478109928755,
          -3.4799350339443356,
          -2.4258258487434703,
          -3.309701124779525,
          -3.3890115198419006,
          -7,
          -4.812309936448493,
          -3.3916407034923877,
          -3.3387153993635277,
          -7,
          -4.119057837523237,
          -3.1480121795527896,
          -3.673027493285839,
          -7,
          -3.3818768603693616,
          -4.068519806000912,
          -3.2728828704665345,
          -3.954664535067499,
          -2.4602142372606046,
          -2.7608484390395938,
          -3.3894387111668958,
          -7,
          -3.166901615996242,
          -7,
          -3.965342835560622,
          -3.3602146132953523,
          -4.0980896903639525,
          -7,
          -3.4631461367263494,
          -7,
          -7,
          -7,
          -2.8074849162033497,
          -2.8797264966395772,
          -2.9704525414168397,
          -7,
          -3.8591983615338776,
          -3.157234020373384,
          -3.8896937914441856,
          -3.165896909992507,
          -2.999710373792598,
          -3.134057516640611,
          -7,
          -3.1077026245929917,
          -2.8946390783050586,
          -3.321391278311689,
          -7,
          -4.271934493817765,
          -7,
          -2.917330426106554,
          -7,
          -7,
          -3.2080572629476225,
          -7,
          -3.8055008581584002,
          -2.257493965097264,
          -2.2613894299129877,
          -7,
          -3.414722721158878,
          -7,
          -7,
          -2.7051928669597114,
          -3.3964106067359956,
          -4.045818287532453,
          -7,
          -7,
          -2.5517939440868913,
          -3.8144473785224875,
          -2.634954313027654,
          -7,
          -2.799027092578261,
          -2.818979550170818,
          -7,
          -7,
          -2.1927835740087853,
          -2.66149717917983,
          -3.5281021701384736,
          -7,
          -3.2460675192399124,
          -3.219650005970414,
          -7,
          -3.0113287324559876,
          -3.1342640621234383,
          -4.321826183768503,
          -7,
          -2.9021018307478776,
          -2.653872343068953,
          -7,
          -3.5867897782094236,
          -7,
          -3.775610448006361,
          -4.120442306873306,
          -3.5710679786102455,
          -2.326599552068477,
          -2.708474015096181,
          -3.965953889102063,
          -2.4580079801960197,
          -7,
          -3.6152484449094584,
          -3.7940695839816327,
          -3.7500453120117676,
          -3.786964259435733,
          -3.0276407874584117,
          -2.8103818884116567,
          -7,
          -7,
          -2.5975060579854494,
          -2.75060821076054,
          -2.558939222448887,
          -3.2800089531081857,
          -2.715252736283062,
          -3.136773397821505,
          -1.712289440733966,
          -2.5471266979833507,
          -3.1269427179442277,
          -3.695043658821294,
          -7,
          -3.221283799492686,
          -3.766635886310268,
          -7,
          -4.450526229129723,
          -7,
          -3.8109713998222077,
          -7,
          -3.446437302477664,
          -7,
          -3.8198289848169766,
          -3.226911231277746,
          -2.319526876598288,
          -2.9538670309532273,
          -7,
          -2.6190319158657123,
          -7,
          -2.872783607024382,
          -2.997167871445834,
          -7,
          -7,
          -3.152532948434526,
          -2.973523686361632,
          -2.8249642405126534,
          -3.807264355276107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.914847525422251,
          -7,
          -7,
          -3.7763379096201755,
          -3.485295438726089,
          -3.504470862494419,
          -3.7940695839816327,
          -3.8903092168999485,
          -3.5418287667813124,
          -3.0027178820160247,
          -4.045518562884493,
          -3.2933183494610736,
          -3.801197834459149,
          -7,
          -3.64033234004778,
          -7,
          -7,
          -3.203942924360925,
          -3.2024201977780304,
          -3.325036498467299,
          -7,
          -7,
          -3.5948895496460347,
          -3.7701890227359933,
          -7,
          -3.5781806096277777,
          -7,
          -3.9925093350677754,
          -3.1428272945383364,
          -7,
          -7,
          -3.721315880605899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1727488389827436,
          -3.7134905430939424,
          -3.4353665066126613,
          -3.2034237103517693,
          -7,
          -7,
          -7,
          -2.3430729846351075,
          -2.523767438609714,
          -2.9875173043753707,
          -3.137986732723532,
          -7,
          -7,
          -7,
          -2.863322860120456,
          -3.7868223794991875,
          -7,
          -2.5286786915678543,
          -2.1466146192720306,
          -2.1824609220670608,
          -2.4902064351734503,
          -3.21818526771214,
          -2.0131048534191742,
          -1.9852018583645716,
          -3.1266183755229515,
          -3.3600919894948293,
          -3.1536624535754956,
          -7,
          -3.2301081646076315,
          -3.2528530309798933,
          -7,
          -3.1150277335990566,
          -3.1806419027298323,
          -7,
          -2.7179903781599086,
          -7,
          -3.1016132670886187,
          -3.7123129086813655,
          -2.955126283548938,
          -3.5241363765925686,
          -2.8608618390413807,
          -2.9950986973311724,
          -2.6428765252838393,
          -2.909326749263002,
          -7,
          -3.068556895072363,
          -3.7985815947285477,
          -2.6446273432908463,
          -3.164887957547954,
          -2.274927193099776,
          -2.854427505787861,
          -7,
          -3.144184880392236,
          -2.397340568298191,
          -7,
          -2.6752435432296338,
          -2.5787919691964865,
          -7,
          -3.139957755812176,
          -7,
          -3.1345887800261094,
          -2.864171920961574,
          -3.100628976831171,
          -2.9447910104534314,
          -7,
          -3.520134035100441,
          -2.451439772483668,
          -3.707485011967474,
          -3.8587176148602915,
          -3.015252577465673,
          -3.7051792448736762,
          -3.8327004709605674,
          -7,
          -7,
          -3.1264561134318045,
          -3.5180530800797216,
          -3.423081958297231,
          -7,
          -3.562827966219992,
          -3.2659963704950794,
          -2.928452752942272,
          -2.9039577085231705,
          -2.1853140753427507,
          -3.794418330874141,
          -2.9248458868910823,
          -3.902546779313991,
          -3.4768895692076844,
          -7,
          -7,
          -3.856547644856748,
          -7,
          -3.5405171695925723,
          -3.0770043267933502,
          -7,
          -4.270771972426836,
          -7,
          -3.697490887171057,
          -7,
          -2.623844235885958,
          -7,
          -2.2559069748756153,
          -3.3021865728639233,
          -2.2408486584853606,
          -2.5115145725207486,
          -2.6943658522855136,
          -3.241795431295199,
          -2.5337272110120566,
          -3.2994346559835996,
          -1.5139448067925088,
          -7,
          -7,
          -2.3031305776643296,
          -2.396689613731324,
          -2.5116853468494194,
          -3.7548832282521674,
          -2.5788638373041564,
          -2.948001668457551,
          -2.5583084834648857,
          -3.213593642804973,
          -2.624361440767268,
          -2.355495269475934,
          -2.9210916532959033,
          -2.34236285652541,
          -3.233858762564828,
          -3.4055171069763763,
          -3.441459468917794,
          -2.8560354841072253,
          -2.832915147969814,
          -7,
          -3.698448538015329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5804117262774118,
          -3.149746809539141,
          -2.325636926468734,
          -7,
          -7,
          -7,
          -2.9999131324165713,
          -3.113692725494897,
          -2.3208136900393996,
          -7,
          -2.633740290110152,
          -7,
          -3.7204900684500517,
          -1.8645271158562264,
          -2.960592445690832,
          -7,
          -7,
          -3.809222921689422,
          -2.8760734367725553,
          -3.2304489213782737,
          -7,
          -3.492271357949134,
          -3.846955325019824,
          -3.2371036915866878,
          -3.8048887446223913,
          -3.0812032393065754,
          -3.3171576110017376,
          -7,
          -2.766689925412973,
          -3.7259116322950483,
          -3.696618459232225,
          -7,
          -3.2706788361447066,
          -7,
          -3.4156409798961542,
          -7,
          -2.2869189482542525,
          -3.7218930162149575,
          -3.594705542151585,
          -3.699230502883409,
          -3.689530834330039,
          -2.3882351204884205,
          -7,
          -3.122449936204605,
          -2.666205875272384,
          -3.1781852925373903,
          -2.632204133050827,
          -7,
          -3.02626080875407,
          -2.86562209338572,
          -2.708562525598842,
          -2.6877270882627347,
          -7,
          -3.3594560201209864,
          -7,
          -3.6520851030278667,
          -7,
          -4.423491631454581,
          -7,
          -2.87146679000413,
          -7,
          -3.1653291327027926,
          -3.735997884091794,
          -2.943847687009491,
          -7,
          -2.7315081835960253,
          -2.468260428064313,
          -2.7494142103240775,
          -7,
          -2.6358605750224178,
          -7,
          -3.765594055319445,
          -7,
          -7,
          -3.721728198572788,
          -7,
          -3.4101020766428607,
          -2.4957891254243636,
          -3.7049222912234017,
          -2.6930871042673523,
          -2.223305533047631,
          -2.539023796211645,
          -3.7798368978412693,
          -4.637567275175051,
          -7,
          -7,
          -3.035189508908448,
          -3.466496903744401,
          -3.697403723200488,
          -3.4062846379247267,
          -2.184691430817599,
          -2.838709198810807,
          -3.0925803006913113,
          -7,
          -7,
          -7,
          -7,
          -3.693463127219531,
          -7,
          -3.3202847949567196,
          -3.517068589333369,
          -2.9944931228835125,
          -2.7934411329776636,
          -7,
          -3.4143883269310753,
          -3.2677972877216908,
          -3.4387796033573776,
          -7,
          -2.664798619194218,
          -3.4931326148751247,
          -2.8047526021504603,
          -3.0695036537131513,
          -2.610778418905969,
          -7,
          -7,
          -7,
          -3.170296236636731,
          -3.516997846195275,
          -2.4547206774916206,
          -3.747334109615905,
          -3.706143411054697,
          -7,
          -7,
          -3.720572720364261,
          -1.4235552874960704,
          -3.7000110623221123,
          -1.789187032292866,
          -1.5707500201996958,
          -4.058274146685951,
          -3.484157424365381,
          -3.2661532687922707,
          -7,
          -2.9964386998811507,
          -2.964966374831098,
          -2.902848645234189,
          -7,
          -7,
          -3.776555910703262,
          -3.7168377232995247,
          -7,
          -7,
          -2.7839685107944083,
          -2.2169099048509042,
          -2.8153563389481215,
          -2.9051960260157315,
          -3.309772070541653,
          -3.8036308979912206,
          -2.91409622851974,
          -3.710371264260763,
          -2.7630625795894206,
          -7,
          -7,
          -1.5085159774318875,
          -2.9611497871815335,
          -2.638779011985003,
          -2.174384795241664,
          -4.026574118150334,
          -7,
          -7,
          -3.055187138555754,
          -4.218481706596672,
          -2.420615770625765,
          -7,
          -7,
          -7,
          -2.6090819169066433,
          -2.300018832269119,
          -3.1233615587462964,
          -7,
          -1.5806866301735132,
          -2.3922781139158866,
          -2.495940591663266,
          -3.4252080511386565,
          -3.3763944420372662,
          -3.7440581658788354,
          -2.2135557015581133,
          -2.473260388201678,
          -7,
          -3.0314596718494946,
          -2.903737929194321,
          -3.7378803015508915,
          -7,
          -2.824776462475546,
          -2.4485416995909173,
          -1.2129508474370692,
          -7,
          -2.9103956884008624,
          -3.1103371400787525,
          -2.170925605178104,
          -1.918156201003093,
          -7,
          -1.6531440616541675,
          -2.55249439402386,
          -7,
          -2.8905452093885216,
          -3.718750734739665,
          -3.263004482246068,
          -7,
          -2.9086312213651015,
          -7,
          -1.8997005684246981,
          -7,
          -3.09429639740537,
          -4.040256111364648,
          -4.803846167521772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03604971613695,
          -3.791328901157271,
          -7,
          -7,
          -7,
          -4.453708112597456,
          -5.017004106955629,
          -4.328766829591525,
          -7,
          -7,
          -4.945375019552896,
          -7,
          -7,
          -7,
          -5.094870998546221,
          -3.8902533051545345,
          -4.284960588171913,
          -3.759264833889892,
          -7,
          -7,
          -7,
          -7,
          -4.806010294559223,
          -7,
          -4.716545872727093,
          -3.9304226032574,
          -4.002014788579384,
          -7,
          -3.9194964878630616,
          -4.0806625563941825,
          -4.516733636616387,
          -7,
          -3.4548067623303504,
          -3.277761973532505,
          -4.233046902098183,
          -3.438826320043174,
          -2.9714542697101325,
          -3.6547539332529304,
          -4.411939417524044,
          -3.8298824464434933,
          -3.25060233715025,
          -3.253004643647484,
          -3.8820689444361483,
          -3.9048236998009442,
          -3.2048612693935485,
          -2.653220833513314,
          -7,
          -3.9012948171655673,
          -3.745660225706076,
          -7,
          -4.030518764843543,
          -7,
          -7,
          -7,
          -3.492349724648918,
          -3.7951678857272726,
          -5.409231263856362,
          -7,
          -2.296058079214253,
          -7,
          -4.0223687930961,
          -7,
          -7,
          -3.613709717089681,
          -7,
          -7,
          -4.406386872972728,
          -3.897063242076261,
          -4.114877749892836,
          -7,
          -3.1730613335266535,
          -7,
          -3.377894003655977,
          -3.7015679850559273,
          -3.268499966587276,
          -3.2659022043017565,
          -4.375027707231542,
          -3.210318519826232,
          -3.426517002165785,
          -7,
          -7,
          -3.4230240909444603,
          -4.384729651619834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.251638220448212,
          -2.788554010783411,
          -3.1194318594918125,
          -7,
          -3.8069935136821074,
          -3.276789945089424,
          -7,
          -7,
          -3.2374599541198688,
          -3.526511582284746,
          -7,
          -3.5718899117990004,
          -3.634275694625944,
          -3.7382254481425052,
          -3.822625678774141,
          -4.2524889444849885,
          -7,
          -3.114468006623671,
          -7,
          -7,
          -4.020982442918419,
          -7,
          -7,
          -1.7274984504165358,
          -2.7797629407578768,
          -7,
          -4.169733197942518,
          -7,
          -7,
          -4.041234731171431,
          -3.647416697795443,
          -4.818667883372954,
          -7,
          -3.8614746688571686,
          -2.7023642471251033,
          -7,
          -2.966200417217455,
          -7,
          -7,
          -2.9675674753537584,
          -7,
          -7,
          -3.3624196382493063,
          -7,
          -3.491455080455835,
          -7,
          -7,
          -2.9860248820066873,
          -7,
          -2.9006401839826004,
          -3.373402454159332,
          -7,
          -7,
          -2.901076715726255,
          -3.1122697684172707,
          -7,
          -4.267124775110152,
          -7,
          -7,
          -7,
          -3.520483532740792,
          -2.719923162669042,
          -3.868526886768204,
          -7,
          -3.485366465708323,
          -7,
          -4.062769949815128,
          -3.7327956982893293,
          -7,
          -7,
          -3.5218569521701695,
          -2.9204043061400116,
          -7,
          -7,
          -2.915115597777663,
          -2.732975756918457,
          -3.0331220573283053,
          -3.833083334178343,
          -3.392609030497567,
          -7,
          -2.450513036909619,
          -2.925901165149684,
          -3.4056024552093134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7384407792400953,
          -7,
          -3.6765107102825536,
          -3.644329154042816,
          -2.423534985995795,
          -3.26030994579492,
          -7,
          -2.6503075231319366,
          -7,
          -2.8344696134717644,
          -3.1820340262209674,
          -7,
          -7,
          -7,
          -2.8064061101420315,
          -3.3531909881987607,
          -3.74795530690673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.034989216287685,
          -7,
          -2.3038707421637667,
          -7,
          -7,
          -7,
          -7,
          -3.7460890430562004,
          -7,
          -7,
          -7,
          -3.636538042936402,
          -7,
          -7,
          -3.740993931584886,
          -7,
          -3.8987251815894934,
          -7,
          -7,
          -3.6531642561518813,
          -2.9662982070631547,
          -3.7424108805804925,
          -3.5942267574809135,
          -7,
          -3.848312303627284,
          -7,
          -7,
          -3.5284667540562014,
          -7,
          -3.954724790979063,
          -3.1854004831904525,
          -7,
          -7,
          -7,
          -3.2605483726369795,
          -7,
          -7,
          -3.302114376956201,
          -7,
          -7,
          -3.30362797638389,
          -7,
          -3.4087190190682533,
          -7,
          -7,
          -3.301897717195208,
          -3.0854944484283413,
          -3.0705304036403067,
          -3.42845877351558,
          -3.369957607346053,
          -7,
          -7,
          -7,
          -3.5200153916133203,
          -3.9583727324786073,
          -7,
          -2.933270303341617,
          -2.7530969482246705,
          -2.2249644667161625,
          -3.0269416279590295,
          -2.7781512503836434,
          -2.233123078521081,
          -2.5354523617941673,
          -7,
          -3.669688708056208,
          -2.7055216134226674,
          -7,
          -7,
          -2.2620553771910674,
          -3.2278867046136734,
          -1.888438722625924,
          -3.345079526314867,
          -7,
          -2.8632038590286295,
          -7,
          -3.64033234004778,
          -2.6972293427597176,
          -3.0532705666813786,
          -7,
          -2.9475970826119045,
          -2.8047450374282943,
          -7,
          -3.403977963669355,
          -7,
          -2.2232038037013226,
          -3.4956830676169153,
          -2.824607287041005,
          -2.714434547894349,
          -2.555931150182966,
          -2.8796692056320534,
          -7,
          -2.9065146136422175,
          -2.5352941200427703,
          -7,
          -3.1043163645117278,
          -3.1063609088067503,
          -3.287353772714747,
          -3.374565060722765,
          -7,
          -3.2668341386777238,
          -7,
          -7,
          -3.113609151073028,
          -7,
          -7,
          -2.5470050888796587,
          -3.2880255353883627,
          -7,
          -3.6525750809701454,
          -3.2819419334408244,
          -3.084099424214281,
          -7,
          -7,
          -3.1037060059185544,
          -7,
          -1.8725724629880052,
          -7,
          -2.6624430114561872,
          -2.5967803035945445,
          -2.473535627784848,
          -3.2105860249051563,
          -2.6589648426644352,
          -7,
          -3.441210993482343,
          -3.684126925613075,
          -3.471144965160633,
          -7,
          -7,
          -7,
          -3.49996186559619,
          -3.578295305120826,
          -3.4158077276355434,
          -7,
          -3.5879914264312434,
          -7,
          -2.5603849229720153,
          -7,
          -2.669316880566112,
          -2.9689496809813427,
          -2.7965743332104296,
          -7,
          -2.5453071164658243,
          -2.5367140633936573,
          -3.3624824747511743,
          -2.714958109720149,
          -2.649010152542322,
          -3.450864692379766,
          -2.549139554034408,
          -7,
          -7,
          -2.7021842679490464,
          -2.6073656530153815,
          -3.0536161744043904,
          -3.1015752462559334,
          -3.0970970534252165,
          -3.9196756768967833,
          -3.36078268987328,
          -7,
          -3.369215857410143,
          -3.455610458764592,
          -2.582874673593952,
          -2.663700925389648,
          -2.452109391093665,
          -3.2860071220794747,
          -3.3749315539781883,
          -2.7473913623208097,
          -3.160868526065023,
          -7,
          -7,
          -4.091807597001675,
          -7,
          -7,
          -7,
          -3.2880255353883627,
          -7,
          -3.7806053058389697,
          -3.2259550728960145,
          -3.0174229159729875,
          -3.792881745385397,
          -7,
          -7,
          -2.055712716407559,
          -3.3106933123433606,
          -2.9626849566736677,
          -7,
          -3.003514384733037,
          -7,
          -7,
          -2.680698029697635,
          -3.0015173768235046,
          -7,
          -7,
          -7,
          -3.4578818967339924,
          -3.289142835932333,
          -2.9827233876685453,
          -7,
          -3.587935348636356,
          -3.2731170684867417,
          -3.030599721965951,
          -3.4728539231099913,
          -3.1862498207790875,
          -7,
          -3.4207119401016124,
          -3.3348556896172914,
          -7,
          -7,
          -3.3875677794171883,
          -7,
          -7,
          -7,
          -2.0899956366053125,
          -7,
          -7,
          -7,
          -3.5202869749271164,
          -2.110387743572669,
          -7,
          -2.744932749231845,
          -2.4597274623087366,
          -1.867839501143476,
          -2.455196373165623,
          -3.174931593528443,
          -2.359021942641668,
          -2.5303598067696527,
          -2.4325320082579323,
          -2.5734904758098778,
          -2.743313739231126,
          -7,
          -7,
          -3.4109880047872694,
          -7,
          -7,
          -7,
          -3.0074194882565544,
          -7,
          -3.5499224041295117,
          -7,
          -3.00014474070519,
          -3.3234583668494677,
          -3.351989455435632,
          -2.993121181893369,
          -3.5566642621225686,
          -7,
          -2.080347137974415,
          -7,
          -3.6283889300503116,
          -7,
          -7,
          -3.3244882333076564,
          -7,
          -7,
          -3.040602340114073,
          -3.2812606870550125,
          -3.0580462303952816,
          -2.864145820749306,
          -2.9362623419034777,
          -7,
          -5.413094305937094,
          -7,
          -3.3322364154914434,
          -2.8785217955012063,
          -7,
          -2.9595183769729982,
          -7,
          -2.941883951154944,
          -3.185258765296585,
          -3.4825877695267677,
          -7,
          -7,
          -2.986995539724382,
          -2.8344207036815328,
          -7,
          -2.9822712330395684,
          -7,
          -3.6938978589117037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4763968267253302,
          -3.7912694809102683,
          -3.0327530302850567,
          -7,
          -2.666132406127459,
          -3.4984484031739997,
          -7,
          -7,
          -3.0413532020469742,
          -3.0565237240791006,
          -3.135548513418428,
          -7,
          -4.023417089841105,
          -7,
          -7,
          -7,
          -2.2732563758039754,
          -3.836830286488879,
          -2.7410271294508175,
          -2.002705893375925,
          -7,
          -3.4686426683915115,
          -7,
          -3.286231854028553,
          -3.146283113159587,
          -3.325720858019412,
          -3.3066394410242617,
          -7,
          -7,
          -3.450249108319361,
          -7,
          -3.1848333339333537,
          -7,
          -2.506505032404872,
          -1.903587331203387,
          -2.737669627356642,
          -3.6120417446452695,
          -7,
          -4.0948203803548,
          -3.263399331334002,
          -7,
          -4.014520538757924,
          -7,
          -3.091842749738098,
          -2.0026318385574484,
          -3.0348957147764644,
          -2.7850784829355133,
          -1.7521469831532483,
          -3.1740598077250253,
          -7,
          -3.6729286904427223,
          -7,
          -4.550512853119367,
          -2.9886084971150124,
          -7,
          -7,
          -7,
          -3.002536304303998,
          -2.4592337253806016,
          -3.3348556896172914,
          -7,
          -2.8949802909279687,
          -7,
          -3.5392015992941275,
          -3.336059277866349,
          -3.5025636691073636,
          -7,
          -3.1190908524217216,
          -2.963079160641827,
          -7,
          -3.910861465201803,
          -3.331309173955823,
          -4.344579498976326,
          -3.37984917876283,
          -2.3980558050950416,
          -3.3804908110338814,
          -1.8440017975763174,
          -2.9390197764486667,
          -2.121438887639747,
          -2.824125833916549,
          -1.5839889457616856,
          -2.287624959905981,
          -1.6531440616541675,
          -7,
          -2.6669857183296606,
          -7,
          -2.983062194978853,
          -7,
          -7,
          -7,
          -3.2841298195890003,
          -3.0283678836970616,
          -1.234437876924377,
          -2.768144584737799,
          -1.8156269350825625,
          -3.910891088644528,
          -7,
          -7,
          -7,
          -7,
          -4.397314173908845,
          -7,
          -4.304361254225308,
          -3.773927025205094,
          -7,
          -7,
          -7,
          -4.1278253236331075,
          -4.401525468644719,
          -7,
          -7,
          -4.685884987381299,
          -4.628496213082012,
          -7,
          -7,
          -7,
          -4.913229103313806,
          -4.3042103864352335,
          -4.247838295127875,
          -7,
          -7,
          -4.369855691820066,
          -7,
          -7,
          -4.482980715414231,
          -7,
          -4.689371023618564,
          -7,
          -4.228836487527934,
          -7,
          -4.129045059887958,
          -7,
          -7,
          -7,
          -4.025940454660939,
          -7,
          -4.080500220172289,
          -3.7285197932079055,
          -3.110445402445486,
          -7,
          -7,
          -7,
          -3.7202044225667583,
          -7,
          -3.6497241859295224,
          -3.7629485074729363,
          -3.506402383271917,
          -3.546251743863432,
          -7,
          -4.458123944661062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8213431834400855,
          -4.042623321013089,
          -5.406550399007429,
          -7,
          -3.015429616984512,
          -7,
          -4.007648222996511,
          -7,
          -4.930548324687003,
          -3.4240645254174877,
          -7,
          -7,
          -7,
          -7,
          -3.947139517642829,
          -3.72916478969277,
          -3.549346636005761,
          -7,
          -3.701314284718106,
          -3.8069393250886248,
          -3.382557321908786,
          -3.193798082161599,
          -4.661372490991278,
          -7,
          -4.50505496600964,
          -7,
          -3.7206553565517244,
          -3.6678160103390933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8863073803643697,
          -3.5589484459780394,
          -3.1408221801093106,
          -7,
          -7,
          -3.413709458318653,
          -7,
          -3.0483122987091575,
          -3.307282047033346,
          -3.5395778833453093,
          -7,
          -3.5274806564486534,
          -2.891139058890472,
          -7,
          -7,
          -4.168114286819532,
          -3.5364321758220134,
          -3.775610448006361,
          -7,
          -7,
          -7,
          -7,
          -3.0811672147134725,
          -2.45484486000851,
          -2.8254261177678233,
          -7,
          -4.065355601289965,
          -7,
          -3.295567099962479,
          -7,
          -3.6076556067548955,
          -7,
          -7,
          -7,
          -2.5997084462241684,
          -7,
          -2.9293167267534956,
          -7,
          -3.1711411510283822,
          -3.2405719381016747,
          -7,
          -7,
          -7,
          -3.4670158184384356,
          -3.7887338588277077,
          -7,
          -7,
          -3.4252080511386565,
          -7,
          -3.507855871695831,
          -3.4402004153614896,
          -7,
          -7,
          -2.602150459921541,
          -3.3636119798921444,
          -7,
          -4.185825359612962,
          -7,
          -7,
          -7,
          -3.54082981411108,
          -2.9017229120897787,
          -3.0236639181977933,
          -7,
          -2.7709992051639407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2421685899736654,
          -3.040093500592591,
          -7,
          -7,
          -2.8773713458697743,
          -2.5481614810386617,
          -3.1370374547895126,
          -3.084814508594119,
          -3.555195248040743,
          -3.327563260187278,
          -2.8763461592458195,
          -3.440279213235588,
          -3.304957028811091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7010990244718034,
          -7,
          -4.199755177253475,
          -3.562530768862261,
          -7,
          -3.0134692323091703,
          -7,
          -2.715446198616883,
          -7,
          -2.855216194733363,
          -3.475235222604128,
          -7,
          -7,
          -7,
          -2.940682467920219,
          -3.8158764720425014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5221833176186865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2774946096110122,
          -3.475525915039281,
          -3.452154585714663,
          -3.8529676910288186,
          -7,
          -3.3710678622717363,
          -7,
          -7,
          -7,
          -7,
          -3.7382783463742273,
          -7,
          -3.374381698050882,
          -3.6721902511882525,
          -7,
          -7,
          -7,
          -3.294466226161593,
          -3.5559404378185113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.358935075058239,
          -7,
          -7,
          -7,
          -4.189490313699367,
          -3.427621331714776,
          -7,
          -2.870403905279027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6447339274471924,
          -3.5460989704691377,
          -7,
          -7,
          -7,
          -2.6653464274249417,
          -2.281412167517624,
          -7,
          -7,
          -2.9749719942980692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.312811826212088,
          -7,
          -4.839635144312755,
          -7,
          -7,
          -7,
          -3.0257153839013404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062109025311936,
          -7,
          -3.8920946026904804,
          -7,
          -7,
          -7,
          -3.404149249209695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.361538971269279,
          -7,
          -7,
          -3.1316186643491255,
          -7,
          -3.3914644118391033,
          -4.647558999765845,
          -7,
          -7,
          -7,
          -7,
          -3.8632038590286295,
          -7,
          -2.732393759822968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.204662511748219,
          -7,
          -4.752701320223626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.485674115137571,
          -7,
          -3.0338256939533106,
          -7,
          -3.3055663135153037,
          -3.5287514680743923,
          -7,
          -7,
          -2.5554975061310574,
          -7,
          -3.535547279176668,
          -7,
          -7,
          -2.9854264740830017,
          -7,
          -3.6088468223264116,
          -7,
          -4.166696470479601,
          -7,
          -2.8407332346118066,
          -7,
          -7,
          -4.147808778209056,
          -7,
          -3.4087486061842442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7104558643354246,
          -3.8462752424122133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.811373897053893,
          -7,
          -7,
          -2.2013971243204513,
          -4.5390007810803175,
          -7,
          -7,
          -7,
          -7,
          -2.53655844257153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275877756612034,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.609914410085998,
          -7,
          -7,
          -7,
          -7,
          -3.9912299292200473,
          -7,
          -7,
          -3.558708570533166,
          -7,
          -3.0269416279590295,
          -7,
          -7,
          -7,
          -7,
          -3.6068111469189637,
          -7,
          -7,
          -7,
          -3.9399682905513362,
          -7,
          -7,
          -7,
          -4.066176785772006,
          -7,
          -7,
          -7,
          -3.1470576710283598,
          -7,
          -2.8109042806687006,
          -3.246826721711981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.712780138713116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941446830252359,
          -1.4648867983026508,
          -1.485315733334934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8000981801747757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.531121115412728,
          -7,
          -4.408019369129767,
          -7,
          -7,
          -7,
          -2.9806849743633146,
          -7,
          -3.6482624057480444,
          -2.791515211941625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6532125137753435,
          -7,
          -7,
          -7,
          -3.916295994563131,
          -7,
          -7,
          -7,
          -4.830126543985933,
          -3.578295305120826,
          -7,
          -7,
          -2.482873583608754,
          -7,
          -2.1221551759899824,
          -7,
          -7,
          -3.4712917110589387,
          -7,
          -7,
          -7,
          -3.0130479961152314,
          -5.527226347937657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.113943352306837,
          -7,
          -7,
          -2.6672661193822744,
          -2.6646419755561257,
          -7,
          -7,
          -7,
          -7,
          -3.0132586652835167,
          -7,
          -7,
          -4.855603946870416,
          -4.3829710813619815,
          -5.574138959406015,
          -7,
          -3.473924693416157,
          -4.063358382401493,
          -2.609441944950562,
          -7,
          -7,
          -2.605305046141109,
          -3.505149978319906,
          -3.2890684385904976,
          -2.55249439402386,
          -2.6669857183296606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.323403371980216,
          -7,
          -7,
          -4.291468753334798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8789065156607965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.227719636143868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.463067642678739,
          -7,
          -7,
          -7,
          -7,
          -4.757714799332841,
          -3.9813201732591073,
          -7,
          -4.437338262919794,
          -4.183326796601633,
          -4.2010965650394665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3884165014521015,
          -5.487599303435275,
          -7,
          -7,
          -3.6651117370750512,
          -7,
          -7,
          -7,
          -7,
          -3.5902100254885054,
          -7,
          -7,
          -7,
          -7,
          -4.780950646376869,
          -7,
          -7,
          -7,
          -4.59582126988028,
          -4.483758413788249,
          -7,
          -4.641305515998657,
          -7,
          -7,
          -4.869929551264621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.465248972927137,
          -3.0038911662369103,
          -7,
          -7,
          -7,
          -4.036309443724438,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318327728670159,
          -3.586362223307866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.889581802149624,
          -3.189069009399324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9238654751855013,
          -7,
          -3.4240645254174877,
          -7,
          -7,
          -4.244499778833843,
          -7,
          -7,
          -7,
          -3.123524980942732,
          -3.657629431388952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2066909810216324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9665445398586376,
          -3.419625360887743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7844033017530085,
          -7,
          -7,
          -3.473778834646725,
          -4.150766670469652,
          -3.112157966516305,
          -7,
          -4.300008202553813,
          -7,
          -7,
          -7,
          -4.021891873919109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.242218320247613,
          -3.6356847625472226,
          -7,
          -7,
          -2.8813846567705728,
          -7,
          -7,
          -3.640878778701618,
          -7,
          -7,
          -7,
          -2.403549454032318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.798167059715939,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.193792230279798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.270472701110684,
          -7,
          -7,
          -7,
          -3.238798562713917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2081725266671217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070721111676305,
          -7,
          -7,
          -7,
          -7,
          -4.378615902031225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.236386088609555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.451821730108041,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.449686625478326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6532125137753437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.975845225467567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.91539983521227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5948895496460347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.234532468368964,
          -7,
          -7,
          -7,
          -4.960936692468327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.487424038788304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.346603306315429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626658528085447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.696356388733332,
          -7,
          -7,
          -7,
          -3.3787611753163733,
          -3.543074235033532,
          -3.2023520678097515,
          -7,
          -3.1269427179442277,
          -3.460948825893139,
          -7,
          -7,
          -7,
          -3.2001288925178257,
          -3.302090308986348,
          -2.7868933252613157,
          -7,
          -7,
          -3.3703280077795106,
          -7,
          -3.417988073810789,
          -3.97648753730519,
          -7,
          -2.9604028181441433,
          -2.867777704440707,
          -7,
          -3.4008832155483626,
          -7,
          -3.2837533833325265,
          -2.4952667443878105,
          -2.810064414845355,
          -4.399079259948645,
          -3.467312062980552,
          -3.364550995353972,
          -7,
          -3.4154741681092355,
          -7,
          -2.9109799468508544,
          -3.38147609027503,
          -7,
          -7,
          -7,
          -3.7317467856612594,
          -2.294282475584744,
          -2.517855418930029,
          -2.990227824624168,
          -7,
          -3.311047116421505,
          -7,
          -2.5605044151950564,
          -7,
          -2.4877038631637265,
          -7,
          -2.46462799257641,
          -2.753199914199416,
          -2.3239691276496446,
          -2.947161317385927,
          -7,
          -7,
          -3.0529823500032394,
          -3.153814864344529,
          -3.4671639659690903,
          -7,
          -7,
          -2.740046724051494,
          -3.7371926427047373,
          -3.999855211039865,
          -7,
          -7,
          -2.727744530836107,
          -7,
          -3.5543680009900878,
          -7,
          -7,
          -7,
          -3.0773293096211045,
          -7,
          -3.0028137792246734,
          -7,
          -7,
          -2.852808311744541,
          -2.8826383616960385,
          -3.1015752462559334,
          -7,
          -2.1459341109231054,
          -3.44216608578472,
          -1.5036393872946674,
          -3.243781916093795,
          -2.511397165034557,
          -7,
          -3.162417568236465,
          -3.0179510688307425,
          -3.132579847659737,
          -3.0563330349511615,
          -7,
          -2.94527158150771,
          -7,
          -3.319314304090512,
          -2.6672193984439363,
          -7,
          -3.3555062516302954,
          -7,
          -7,
          -7,
          -2.9009910030419435,
          -3.35237549500052,
          -2.6164755138885654,
          -3.0340934464167257,
          -2.024353705634743,
          -1.4243576975802876,
          -3.4299136977637543,
          -7,
          -3.009592521262823,
          -7,
          -3.5700924009287913,
          -7,
          -7,
          -7,
          -3.4204508591060683,
          -3.1794081515138357,
          -7,
          -4.22188349178524,
          -3.8133808067338557,
          -7,
          -7,
          -7,
          -4.302646900425265,
          -2.4059721038560276,
          -2.8790958795000727,
          -3.4625477288026643,
          -7,
          -7,
          -2.9932357714670954,
          -2.3096301674258988,
          -7,
          -3.3469394626989906,
          -4.399621810671737,
          -7,
          -7,
          -7,
          -3.366982975977851,
          -7,
          -3.493144241793856,
          -2.646709977192606,
          -3.6026838413608373,
          -7,
          -7,
          -3.970114322285097,
          -7,
          -7,
          -2.8945929479229555,
          -4.118661462854496,
          -2.6246945312720813,
          -7,
          -3.394976719554564,
          -7,
          -2.092445701480322,
          -7,
          -7,
          -7,
          -3.512817758564873,
          -7,
          -1.5020609001161556,
          -7,
          -7,
          -3.1394592753662236,
          -3.5575072019056577,
          -3.4913149929920424,
          -7,
          -3.4216039268698313,
          -2.9276910886144174,
          -2.121438887639747,
          -7,
          -7,
          -7,
          -7,
          -2.784082117602856,
          -7,
          -2.9257846410591988,
          -3.3979400086720375,
          -7,
          -7,
          -3.846089580357984,
          -2.5414582697501884,
          -7,
          -3.8143142002074595,
          -3.2714543622113297,
          -3.5137501500818233,
          -7,
          -3.529045170765769,
          -7,
          -7,
          -2.8295610562993927,
          -2.455424982962566,
          -3.1149444157125847,
          -3.805296916157985,
          -7,
          -4.029302593558998,
          -3.5724068675580556,
          -3.676437528972767,
          -7,
          -3.1799027104409694,
          -7,
          -3.396780343144799,
          -7,
          -3.5304558435846762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0218251622609853,
          -7,
          -3.9488529061997135,
          -7,
          -3.0392157659039505,
          -3.397592434038117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.695350317569429,
          -2.5983214217685604,
          -3.5825462753591735,
          -4.635250787227244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5381965783494542,
          -3.534660575828444,
          -7,
          -7,
          -7,
          -2.909556029241175,
          -7,
          -3.0620175988571123,
          -3.5446880223026773,
          -3.7749935764800484,
          -7,
          -7,
          -7,
          -7,
          -2.842765208181785,
          -7,
          -7,
          -7,
          -3.817631467190515,
          -2.515633037228158,
          -2.7772036781419343,
          -3.015254941970331,
          -7,
          -7,
          -7,
          -2.902488538172861,
          -2.3465830642477576,
          -2.8734538154104348,
          -3.4499409887733377,
          -4.725625818213062,
          -7,
          -7,
          -2.5479504264025215,
          -3.2178597940702534,
          -3.559487681797765,
          -3.036269495742815,
          -2.4412236742426123,
          -3.0339763250254843,
          -7,
          -7,
          -3.3654879848909,
          -7,
          -3.062299883223179,
          -3.647480773173676,
          -7,
          -2.487491891558492,
          -7,
          -3.3872118003137306,
          -7,
          -7,
          -1.2174221537205385,
          -2.804735581340288,
          -2.4510883249706517,
          -2.951531790542348,
          -3.525692524505011,
          -3.493777966279982,
          -2.546953732587764,
          -7,
          -7,
          -7,
          -3.1550322287909704,
          -3.749581734865559,
          -7,
          -3.032014034159506,
          -2.2751340914855125,
          -7,
          -7,
          -3.707229419327294,
          -2.4285667129921897,
          -4.216703246192243,
          -1.3043739542975754,
          -7,
          -7,
          -7,
          -3.3942181263801987,
          -1.9547699774270102,
          -7,
          -7,
          -3.3343532083835172,
          -7,
          -2.2185126722477833,
          -3.4073909044707316,
          -2.4111662699650966,
          -7,
          -3.4800069429571505,
          -1.1493282034085548,
          -3.4434194617828173,
          -3.788174265434528,
          -3.639021399134131,
          -4.160257808741388,
          -7,
          -1.9667561292534292,
          -5.025883174987696,
          -2.931966114728173,
          -7,
          -3.467756051244033,
          -3.3787611753163733,
          -1.9497323077321136,
          -3.4164185888449987,
          -2.8905452093885216,
          -2.983062194978853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1484484035233837,
          -3.4885507165004443,
          -7,
          -2.0735278371719144,
          -7,
          -3.3434085938038574,
          -3.7688283078414297,
          -4.307367656038532,
          -7,
          -3.7745899502647946,
          -7,
          -2.8977816781075982,
          -7,
          -3.4953628544079263,
          -2.986200507770217,
          -3.748885440009517,
          -7,
          -4.0389974726186795,
          -4.130944568044679,
          -4.160125384843879,
          -3.822375148347866,
          -7,
          -7,
          -3.6760632984611115,
          -7,
          -7,
          -7,
          -4.487926322056887,
          -4.312473557686056,
          -3.5991792894059005,
          -4.160378481462862,
          -4.364044179182894,
          -4.197317322239914,
          -3.630122642859312,
          -7,
          -3.485480084723825,
          -7,
          -4.39174644414508,
          -4.35778243623142,
          -3.6364377439793962,
          -7,
          -3.664108964176918,
          -7,
          -4.478479916635806,
          -4.231189145482667,
          -3.1128384959261495,
          -7,
          -3.5397300961558305,
          -3.6921416093667836,
          -3.0193471139879318,
          -2.841428996506697,
          -2.6706244552094285,
          -2.900913067737669,
          -3.145810203973303,
          -2.9832503071149876,
          -3.083233790058822,
          -3.426111828467671,
          -2.905335203978694,
          -3.0420239272488674,
          -7,
          -2.3922759649804375,
          -3.0767964309148454,
          -7,
          -2.945632686581686,
          -3.704733761876889,
          -7,
          -7,
          -3.029959487494864,
          -3.0024024745333016,
          -4.4774353659300345,
          -7,
          -3.1209685650193766,
          -7,
          -3.2821120781959503,
          -7,
          -4.2041623921556805,
          -3.2322335211147335,
          -3.9599710276712154,
          -7,
          -3.2768063456287626,
          -4.158241837980873,
          -3.3632985230168235,
          -3.156927555539657,
          -2.3792692494736474,
          -3.130816050034744,
          -2.9672358709363653,
          -3.5109871220675624,
          -7,
          -2.1680995417304274,
          -3.6216199837199943,
          -3.0288964451314704,
          -3.903663497285699,
          -7,
          -2.9054874873267518,
          -2.8927334075286266,
          -7,
          -3.3727279408855955,
          -7,
          -7,
          -7,
          -7,
          -3.3473857798884064,
          -2.823800153749878,
          -2.4567519240544438,
          -7,
          -7,
          -2.7303601047963593,
          -7,
          -3.5733358400660675,
          -3.3830969299490943,
          -2.631980634727735,
          -7,
          -3.165062128728178,
          -2.6512034378011884,
          -7,
          -7,
          -7,
          -3.582744965691277,
          -2.956991217867476,
          -7,
          -7,
          -3.586699801624049,
          -7,
          -3.447158031342219,
          -3.071636573854042,
          -2.927027994490033,
          -7,
          -3.0374627178215423,
          -7,
          -7,
          -4.3140463825880415,
          -3.4012523038768094,
          -4.021781741232203,
          -7,
          -7,
          -2.838974954955468,
          -7,
          -3.0642707529740063,
          -7,
          -2.9228551562119045,
          -3.0350737955506264,
          -7,
          -7,
          -7,
          -3.2195845262142546,
          -3.8152455919165633,
          -3.4202858849419178,
          -3.5397032389478253,
          -3.484157424365381,
          -7,
          -3.255875273391467,
          -2.777350496469624,
          -7,
          -7,
          -2.568536957184299,
          -3.000086850211649,
          -7,
          -4.1966458867870875,
          -7,
          -7,
          -7,
          -7,
          -2.788205290121511,
          -2.9646367037885013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.884228769632604,
          -7,
          -2.9863237770507656,
          -2.729596708656171,
          -7,
          -7,
          -2.8991088581933995,
          -2.2328478515978616,
          -3.166652089049701,
          -3.6061663146076204,
          -3.2616593037647066,
          -7,
          -3.855700830835437,
          -7,
          -2.982340825938027,
          -3.499687082618404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.856577857697687,
          -7,
          -2.9820143951684135,
          -7,
          -3.9091547098084254,
          -3.2658433400609064,
          -7,
          -2.7506048083231383,
          -7,
          -2.7662888869340487,
          -7,
          -3.0088130090520893,
          -2.9577440727248177,
          -7,
          -7,
          -3.5467893516312583,
          -3.176958980586908,
          -2.9610936335556257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4307198878632823,
          -3.076094046682475,
          -7,
          -7,
          -7,
          -2.6190933306267428,
          -3.2271150825891253,
          -3.083233790058822,
          -7,
          -7,
          -3.4372747974101237,
          -7,
          -3.410524172586188,
          -2.9429995933660407,
          -7,
          -3.375180069808788,
          -3.445759836488631,
          -3.138776215729349,
          -3.0068937079479006,
          -7,
          -3.154017995537149,
          -3.3619166186686433,
          -7,
          -3.2990712600274095,
          -7,
          -3.4939457483871506,
          -2.826981336911994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.204638112496441,
          -7,
          -7,
          -7,
          -3.8942883644490323,
          -4.211707750406687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.037406575718464,
          -3.186786876733249,
          -7,
          -7,
          -4.080463555206556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6895752157599384,
          -7,
          -7,
          -7,
          -7,
          -2.9976047874604546,
          -7,
          -3.1812717715594614,
          -7,
          -2.8773713458697743,
          -7,
          -4.840297468206219,
          -2.7831886910752575,
          -7,
          -7,
          -3.104487111312395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6777840263288324,
          -7,
          -3.301301344927356,
          -3.4917117901707675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0884904701823963,
          -7,
          -7,
          -7,
          -3.0982975364946976,
          -7,
          -7,
          -3.153611638097534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5744364202024044,
          -7,
          -7,
          -7,
          -3.1398790864012365,
          -7,
          -2.7912694809102687,
          -7,
          -7,
          -7,
          -4.026175631261122,
          -3.53668467262093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3794868137172736,
          -7,
          -7,
          -4.149373090491385,
          -7,
          -7,
          -7,
          -2.9305322640259663,
          -7,
          -7,
          -7,
          -3.1513698502474603,
          -3.4745804523423796,
          -7,
          -7,
          -7,
          -7,
          -3.3429069541501595,
          -7,
          -7,
          -7,
          -3.54282542695918,
          -7,
          -7,
          -3.473691295865516,
          -7,
          -2.9561684304753633,
          -7,
          -7,
          -4.391803709584173,
          -7,
          -3.443106456737266,
          -7,
          -7,
          -7,
          -3.521007252408604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.551246628977399,
          -3.426755178518925,
          -7,
          -7,
          -7,
          -3.8783494222177755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.842571798817237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6942541120252788,
          -1.9160777731414746,
          -7,
          -2.595670229633673,
          -2.622214022966295,
          -7,
          -3.9751253198007745,
          -2.4076741092293186,
          -7,
          -2.5550944485783194,
          -1.971444539546947,
          -2.2546688990549204,
          -7,
          -7,
          -3.922154325231059,
          -7,
          -7,
          -7,
          -7,
          -3.547026271580958,
          -7,
          -7,
          -7,
          -7,
          -3.068000226145172,
          -7,
          -2.9621324692982354,
          -7,
          -7,
          -3.327665387050042,
          -7,
          -7,
          -7,
          -7,
          -3.291812687467119,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2079035303860515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.90687353472207,
          -7,
          -7,
          -2.8303212953577908,
          -3.1022049490355927,
          -7,
          -7,
          -7,
          -2.8796692056320534,
          -2.944975908412048,
          -7,
          -7,
          -7,
          -3.3251049829714074,
          -7,
          -2.915135906622012,
          -7,
          -7,
          -2.1351326513767748,
          -2.8208579894397,
          -2.1072099696478683,
          -2.244689360492884,
          -1.998720781160827,
          -4.641454279253067,
          -7,
          -7,
          -7,
          -7,
          -3.0056094453602804,
          -2.975891136401793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.513217600067939,
          -7,
          -7,
          -7,
          -3.837609479125121,
          -7,
          -7,
          -2.2346859743215286,
          -7,
          -7,
          -7,
          -2.8488047010518036,
          -3.6898414091375047,
          -3.7385427409287852,
          -7,
          -3.1113465408397287,
          -7,
          -7,
          -7,
          -2.1271047983648077,
          -1.883976712468301,
          -2.147212416970458,
          -1.896292339623125,
          -7,
          -7,
          -2.000929635350122,
          -2.3404441148401185,
          -7,
          -7,
          -3.3344537511509307,
          -3.023458237643675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8081434257614912,
          -7,
          -7,
          -3.584331224367531,
          -7,
          -7,
          -7,
          -2.782759192623997,
          -2.4994579639204475,
          -2.5185139398778875,
          -7,
          -5.828393696836685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6143698395482886,
          -7,
          -2.673020907128896,
          -7,
          -7,
          -7,
          -7,
          -3.696618459232225,
          -7,
          -3.0941215958405612,
          -7,
          -7,
          -7,
          -3.687635961046466,
          -4.972194157032664,
          -7,
          -3.312811826212088,
          -4.5414086541853065,
          -2.9943904822573,
          -7,
          -7,
          -7,
          -7,
          -3.4807253789884878,
          -3.718750734739665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.499687082618404,
          -1.5981336458132378,
          -2.2570783059665684,
          -2.088726563953855,
          -3.5025227088782835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.773976498617766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7558748556724915,
          -7,
          -3.704046016852243,
          -3.406199423663313,
          -7,
          -7,
          -7,
          -7,
          -1.9237347161072647,
          -2.405260961594782,
          -7,
          -4.360437198486716,
          -3.638598157276648,
          -7,
          -4.135498386458118,
          -7,
          -2.4345689040341987,
          -7,
          -7,
          -3.6625689669332604,
          -7,
          -3.2055770499167062,
          -5.1868645535267195,
          -7,
          -2.525692524505011,
          -2.641293793091543,
          -7,
          -4.177122689053482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.213012778808009,
          -7,
          -4.5969817431335205,
          -7,
          -2.3070679506612985,
          -4.466249583417726,
          -4.654734699236146,
          -7,
          -3.9856568286495526,
          -7,
          -7,
          -4.6075622431835885,
          -7,
          -7,
          -2.3443922736851106,
          -7,
          -7,
          -7,
          -4.468376873249617,
          -2.442675706122545,
          -4.18261434773635,
          -7,
          -7,
          -3.864372622679366,
          -7,
          -2.335792101923193,
          -7,
          -3.442244527847952,
          -7,
          -4.796941871056464,
          -3.6094876898532853,
          -7,
          -3.3218054838575393,
          -7,
          -7,
          -2.960565902818198,
          -7,
          -7,
          -3.774224904868919,
          -7,
          -7,
          -7,
          -2.562689299428688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.793353776147056,
          -7,
          -7,
          -7,
          -2.552110290277687,
          -7,
          -3.4572761860613257,
          -7,
          -2.8962505624616384,
          -3.647480773173676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.535547279176668,
          -2.3294656796081408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5209252186589897,
          -3.4531653925258574,
          -7,
          -7,
          -7,
          -7,
          -2.6304278750250236,
          -7,
          -7,
          -7,
          -3.196728722623287,
          -7,
          -7,
          -3.312670913011013,
          -4.3290315750108395,
          -2.8334658601706924,
          -3.354108439147401,
          -3.304188829614843,
          -7,
          -7,
          -7,
          -4.030518764843543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.068717577790595,
          -7,
          -3.4379090355394983,
          -7,
          -3.2392994791268923,
          -7,
          -2.460095636143043,
          -3.1838390370564214,
          -7,
          -7,
          -2.3934498476670707,
          -2.788168371141168,
          -3.917137752756444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1265642948950374,
          -7,
          -7,
          -7,
          -2.531478917042255,
          -7,
          -7,
          -7,
          -3.80539889912943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.020596047624484,
          -3.0056094453602804,
          -2.989894563718773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2005769267548483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.059165668942177,
          -7,
          -7,
          -7,
          -7,
          -3.9177155165594932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.042713299346113,
          -3.2016701796465816,
          -7,
          -3.689486448364248,
          -3.720785680270854,
          -2.6748611407378116,
          -7,
          -7,
          -2.890607291367314,
          -3.2137832993353044,
          -3.0330214446829107,
          -2.952644807190157,
          -7,
          -7,
          -7,
          -2.5599066250361124,
          -2.6534054906645013,
          -7,
          -7,
          -7,
          -2.800717078282385,
          -7,
          -3.451676806726055,
          -7,
          -3.0569048513364727,
          -3.38147609027503,
          -3.187520720836463,
          -7,
          -2.7041505168397992,
          -7,
          -7,
          -3.1992064791616577,
          -7,
          -3.733598460961339,
          -3.4823017672234426,
          -3.3156030329994124,
          -3.333850145102545,
          -7,
          -7,
          -2.699693225955115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.957798774929998,
          -7,
          -7,
          -4.524172100813481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.09968064110925,
          -7,
          -7,
          -3.016824493667488,
          -7,
          -4.000525944129182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.683947130751512,
          -2.8698182079793284,
          -2.9443181355003873,
          -7,
          -7,
          -3.604442066260723,
          -7,
          -7,
          -2.2864003267074238,
          -7,
          -2.5948735262859217,
          -7,
          -7,
          -3.382917135087531,
          -7,
          -7,
          -7,
          -3.1386758157429933,
          -7,
          -7,
          -7,
          -7,
          -3.5034436006863636,
          -2.8937617620579434,
          -3.4831592097169795,
          -7,
          -7,
          -7,
          -4.004106323279658,
          -3.207365037469072,
          -7,
          -7,
          -4.37267270704506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7381857702399692,
          -7,
          -4.161936705245781,
          -3.7062055418819706,
          -7,
          -7,
          -7,
          -7,
          -2.1665108452278266,
          -7,
          -3.5412046906832586,
          -7,
          -7,
          -2.806179973983887,
          -3.590532239192633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7389390312034796,
          -2.5728716022004803,
          -2.4746324543159677,
          -2.9365695895157997,
          -7,
          -7,
          -3.5660225067536415,
          -7,
          -2.234264124378789,
          -2.7972675408307164,
          -1.8291344242299696,
          -2.518075036877517,
          -7,
          -7,
          -3.236486876375591,
          -7,
          -7,
          -7,
          -7,
          -3.467181278616061,
          -7,
          -3.699924402742477,
          -3.1351326513767748,
          -7,
          -3.1151110355043476,
          -7,
          -7,
          -3.2052043639481447,
          -7,
          -3.354204511370313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.156851901070011,
          -3.7825801094983293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4606723718774317,
          -3.3944516808262164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.426917713880816,
          -7,
          -7,
          -3.6236110517531817,
          -3.6093809442507068,
          -4.139658736208178,
          -7,
          -7,
          -2.709269960975831,
          -7,
          -7,
          -7,
          -7,
          -2.5969634343085812,
          -2.986995539724382,
          -1.7488924788750166,
          -7,
          -7,
          -2.9138138523837167,
          -2.489489731962272,
          -7,
          -7,
          -3.299942900022767,
          -4.642780974929156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1095785469043866,
          -7,
          -7,
          -7,
          -3.530711837981657,
          -7,
          -7,
          -7,
          -4.3204163374561695,
          -7,
          -7,
          -2.3351234420807065,
          -4.713112365881025,
          -7,
          -7,
          -7,
          -2.745941820182873,
          -7,
          -7,
          -3.4346487302419235,
          -7,
          -7,
          -7,
          -7,
          -2.9237619608287004,
          -2.890281261927012,
          -2.687380306589906,
          -7,
          -7,
          -2.32299412898388,
          -2.968015713993642,
          -7,
          -7,
          -7,
          -2.8256757266498616,
          -7,
          -3.4727564493172123,
          -3.2659963704950794,
          -5.132698246374209,
          -7,
          -7,
          -3.990272240095868,
          -7,
          -7,
          -2.611723308007342,
          -7,
          -3.9672202597829673,
          -3.5364321758220134,
          -2.105961796878401,
          -2.2534591643398376,
          -2.951823035315912,
          -7,
          -5.050408759822028,
          -2.803798407989674,
          -7,
          -7,
          -7,
          -7,
          -3.6417714706539592,
          -7,
          -2.47928731647617,
          -7,
          -7,
          -3.3688445068258215,
          -7,
          -7,
          -3.1024337056813365,
          -2.7007037171450192,
          -3.6432552250247716,
          -7,
          -4.159476956474234,
          -4.090434416175122,
          -4.921195558053335,
          -7,
          -3.3312922966807057,
          -3.604479442251883,
          -3.792461731346951,
          -7,
          -7,
          -7,
          -3.5657297878311267,
          -3.800717078282385,
          -3.263004482246068,
          -7,
          -7,
          -7,
          -7,
          -2.499687082618404,
          -7,
          -3.1162755875805446,
          -1.6137635424090397,
          -2.401400540781544,
          -3.0907598218150745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.720754499225801,
          -4.998747427320433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.388367667157301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1492191126553797,
          -7,
          -4.2887483847147845,
          -7,
          -7,
          -7,
          -7,
          -5.236055844842364,
          -3.7013952690139202,
          -7,
          -4.444871979160645,
          -3.8845074375460937,
          -4.205438956780589,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.377160490206987,
          -7,
          -7,
          -4.515485276497102,
          -5.0111487717367345,
          -5.706624770219138,
          -7,
          -2.0991624929285946,
          -7,
          -4.6555705925491955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.784381896864668,
          -7,
          -7,
          -3.5189743111443366,
          -4.598451252655753,
          -7,
          -3.110589710299249,
          -4.4675735776765055,
          -4.656021498642462,
          -7,
          -4.502871722256952,
          -7,
          -3.616265405281708,
          -4.3093746249166704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.472317546316842,
          -3.0963885466873666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.34908316877959,
          -7,
          -7,
          -7,
          -4.798795616224465,
          -7,
          -7,
          -3.3740147402919116,
          -7,
          -7,
          -3.0824263008607717,
          -7,
          -7,
          -3.7933712489189557,
          -7,
          -7,
          -3.307923703611882,
          -3.075303590984423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.794289327161528,
          -7,
          -7,
          -7,
          -3.470655453745076,
          -7,
          -7,
          -7,
          -7,
          -4.256188382589775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5439439424829065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9163154981639994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8173008783933216,
          -7,
          -7,
          -7,
          -4.331751125024444,
          -3.64018319192134,
          -7,
          -4.0092383709684665,
          -7,
          -3.753046561626529,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7039420250692117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6860102913152857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1192558892779365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8095597146352675,
          -7,
          -3.426185825244511,
          -7,
          -4.115510662384999,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.656194062179186,
          -7,
          -3.095169351431755,
          -3.5536403362313544,
          -7,
          -7,
          -7,
          -7,
          -3.393399695293102,
          -2.8651039746411278,
          -7,
          -2.9668454236549167,
          -7,
          -7,
          -7,
          -2.895422546039408,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.001398346081105,
          -7,
          -7,
          -7,
          -4.2050960475784835,
          -3.6188583722285905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.646364510503877,
          -2.228706076874652,
          -7,
          -7,
          -3.808747483129663,
          -7,
          -7,
          -7,
          -2.781216659079688,
          -3.2362852774480286,
          -7,
          -3.5059399585908717,
          -7,
          -7,
          -7,
          -7,
          -3.3703280077795106,
          -3.0107238653917734,
          -7,
          -7,
          -3.117105502761251,
          -7,
          -4.4434507498835405,
          -7,
          -7,
          -7,
          -7,
          -2.827830650428466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.631358311617795,
          -3.4945719842301988,
          -2.665476756172402,
          -3.214578953570499,
          -7,
          -3.1420764610732848,
          -3.4916417934775863,
          -7,
          -7,
          -7,
          -7,
          -2.823148059810694,
          -3.6060587494103142,
          -4.455925441183637,
          -7,
          -7,
          -3.457124626303409,
          -7,
          -7,
          -3.063145637106638,
          -7,
          -7,
          -4.825497520557007,
          -7,
          -7,
          -7,
          -7,
          -3.895643504824079,
          -7,
          -7,
          -7,
          -3.49373680227684,
          -7,
          -7,
          -7,
          -3.0346284566253203,
          -7,
          -4.085084062103758,
          -7,
          -4.033664963203177,
          -7,
          -7,
          -7,
          -7,
          -3.4394905903896835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6878409704006643,
          -7,
          -3.13481437032046,
          -3.2615007731982804,
          -2.7592900330243038,
          -3.153312603105892,
          -7,
          -3.0191162904470725,
          -7,
          -7,
          -3.9137785424538705,
          -7,
          -7,
          -7,
          -3.5848963441374497,
          -7,
          -7,
          -3.2284288772361536,
          -4.757061827559215,
          -7,
          -7,
          -7,
          -4.995450909360139,
          -7,
          -7,
          -3.6415732531781755,
          -7,
          -7,
          -3.4036566210857684,
          -3.52022143588196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2784487259091373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.757649040441254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0688782010805165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5474670224263853,
          -2.5870692294283315,
          -2.4923612212763993,
          -2.5517825783198775,
          -1.2228834478542963,
          -7,
          -3.626602326942856,
          -2.447158031342219,
          -7,
          -2.8536982117761744,
          -1.8817649496862066,
          -1.6343092970463176,
          -7,
          -7,
          -3.036429265626675,
          -7,
          -7,
          -7,
          -3.747644819328248,
          -3.508768202830024,
          -7,
          -7,
          -3.144262773761991,
          -3.2650537885040145,
          -3.4307198878632823,
          -7,
          -3.3404441148401185,
          -3.2281436075977417,
          -7,
          -3.663700925389648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.376576957056512,
          -3.308279770272725,
          -2.8842287696326037,
          -3.7825442840100103,
          -3.0972573096934197,
          -2.6908603082720437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8730879855902858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7634279935629373,
          -7,
          -7,
          -3.2298353665572654,
          -3.61857102812013,
          -4.1423894661188365,
          -7,
          -7,
          -7,
          -3.092018470752797,
          -7,
          -7,
          -7,
          -3.3925210899319325,
          -7,
          -3,
          -2.552668216112193,
          -7,
          -1.353484751416607,
          -7,
          -1.8177456121363058,
          -7,
          -0.9725720697647939,
          -4.2452411489044595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.137986732723532,
          -7,
          -7,
          -7,
          -3.3600250891893975,
          -7,
          -7,
          -7,
          -3.8450153093764405,
          -7,
          -4.538297185167974,
          -2.443106456737266,
          -4.412796428716543,
          -7,
          -7,
          -7,
          -4.006423252507643,
          -3.464638559095033,
          -3.675044735955893,
          -3.0431263979672254,
          -2.8587777373054495,
          -7,
          -7,
          -2.952792443044092,
          -2.4666205111116515,
          -2.5487305496263066,
          -2.111613128168343,
          -7,
          -2.4162243170985684,
          -2.949877704036875,
          -1.849507158919312,
          -3.3068537486930083,
          -7,
          -7,
          -3.1664794514726347,
          -3.2317243833285163,
          -7,
          -7,
          -7,
          -3.60959440922522,
          -7,
          -4.293274139710753,
          -7,
          -7,
          -3.622731965164719,
          -3.3461573022320086,
          -7,
          -7,
          -3.0298570495267563,
          -2.876217840591642,
          -1.5055268065274119,
          -2.8167382992623913,
          -4.6824777317622015,
          -2.544349962232232,
          -7,
          -7,
          -7,
          -3.779380011491656,
          -3.34908316877959,
          -7,
          -2.5095385335524316,
          -7,
          -7,
          -3.3847117429382823,
          -7,
          -3.7265642161622448,
          -7,
          -2.725094521081469,
          -3.3505387432018106,
          -7,
          -7,
          -3.7908654778443176,
          -4.761540418793504,
          -7,
          -3.8145139523682383,
          -4.718983048773428,
          -7,
          -7,
          -3.179838928023187,
          -7,
          -3.274619619091238,
          -3.3292622471045052,
          -7,
          -7,
          -7,
          -7,
          -3.1484484035233837,
          -1.5981336458132378,
          -3.1162755875805446,
          -7,
          -2.5595383447665103,
          -1.8852804285733862,
          -3.303060994604316,
          -7,
          -7,
          -4.598757687300256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.404998967853327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.535989952876927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067193646893265,
          -7,
          -3.6848453616444123,
          -7,
          -7,
          -4.537285025199807,
          -1.9594790127550423,
          -2.327103391877102,
          -7,
          -4.18600462715385,
          -3.604000925049828,
          -7,
          -7,
          -7,
          -2.4756711883244296,
          -7,
          -7,
          -7,
          -7,
          -3.8167934863114397,
          -4.78941711590118,
          -7,
          -2.3096301674258988,
          -3.0156112045035126,
          -3.0461047872460387,
          -3.877740780594422,
          -7,
          -7,
          -4.088029717842714,
          -4.22577434814393,
          -7,
          -7,
          -7,
          -4.1828994675482605,
          -7,
          -7,
          -7,
          -4.054804500220955,
          -7,
          -7,
          -3.9450547742554396,
          -4.656438409876108,
          -7,
          -3.8295240324621713,
          -7,
          -7,
          -4.13418773628865,
          -7,
          -7,
          -2.9025467793139916,
          -7,
          -7,
          -7,
          -7,
          -2.565510502554111,
          -2.9612814719845826,
          -7,
          -7,
          -3.570192561095726,
          -7,
          -1.9586594270529332,
          -7,
          -3.7704101315139065,
          -7,
          -3.6852868861271264,
          -3.043165720207454,
          -7,
          -7,
          -7,
          -7,
          -3.090169844444793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3261309567107946,
          -2.8634418286137087,
          -7,
          -4.024813932629311,
          -7,
          -7,
          -7,
          -4.396631682159426,
          -7,
          -7,
          -7,
          -2.22286364804204,
          -7,
          -2.9051209859322786,
          -7,
          -3.2860071220794747,
          -3.303651959291475,
          -7,
          -7,
          -7,
          -2.799570274125377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.999652425366079,
          -7,
          -7,
          -2.878406887580996,
          -2.437750562820388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.607097432019576,
          -3.261118502596643,
          -3.5043349118024643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7876375568784235,
          -3.8230175234460493,
          -7,
          -7,
          -3.035563141497501,
          -3.2352556647225166,
          -2.6929447884566646,
          -7,
          -3.0810294460597936,
          -7,
          -7,
          -7,
          -3.442362164383881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.533365272749635,
          -7,
          -7,
          -3.6469915374771227,
          -7,
          -2.711244671343486,
          -7,
          -2.8421930493708496,
          -7,
          -2.3267081665511262,
          -2.847572659142112,
          -7,
          -7,
          -3.020568434801363,
          -3.2000292665537704,
          -3.7013952690139202,
          -3.1470576710283598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2178597940702534,
          -7,
          -7,
          -7,
          -2.8379039445929424,
          -7,
          -3.4401216031878037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.571242850560224,
          -7,
          -7,
          -3.599364446251949,
          -7,
          -7,
          -7,
          -7,
          -3.4560622244549513,
          -7,
          -7,
          -7,
          -7,
          -3.682686478249768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.63558426631123,
          -3.6630409748939745,
          -3.305645895440672,
          -7,
          -7,
          -7,
          -3.588226874130211,
          -3.0446268544430195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9584785584644475,
          -2.5773768919170146,
          -7,
          -3.1416587697865523,
          -3.084105580501069,
          -3.3849802956513044,
          -7,
          -7,
          -2.718124074303963,
          -3.102262149494273,
          -3.3530502396425894,
          -1.8912002859464372,
          -2.781845095648946,
          -3.6270584640009895,
          -7,
          -2.809367293505889,
          -2.497313673637103,
          -2.735997884091794,
          -3.8285310066451013,
          -7,
          -2.4718781993072905,
          -7,
          -3.0216333238569884,
          -2.8550141033002596,
          -2.960375631410158,
          -3.4651596976461785,
          -3.696531119969607,
          -2.9515533709285435,
          -3.647969458362972,
          -7,
          -7,
          -3.7001843296221977,
          -7,
          -2.80588684968878,
          -3.208306962353663,
          -2.7052313618495294,
          -3.0409976924234905,
          -7,
          -2.7193312869837265,
          -2.7666156147521748,
          -7,
          -3.686099771995916,
          -7,
          -7,
          -3.1925674533365456,
          -3.868174040859638,
          -3.9018668128655483,
          -3.6317480743965693,
          -7,
          -3.491921712586151,
          -7,
          -3.9586594270529334,
          -2.132160282103326,
          -3.3271545124094315,
          -7,
          -3.73916396315401,
          -3.625621081424908,
          -2.928834607453388,
          -7,
          -7,
          -3.2710279942623233,
          -7,
          -7,
          -7,
          -2.8091555317471806,
          -2.8920946026904804,
          -2.507727401207717,
          -3.3790636720075073,
          -2.8371937326899355,
          -7,
          -3.2392293856005003,
          -3.853759033074769,
          -7,
          -7,
          -7,
          -7,
          -3.0384611961785635,
          -3.4838724542226736,
          -3.3989232955264326,
          -7,
          -4.250541978010273,
          -7,
          -3.1388287969367386,
          -7,
          -2.365220479811975,
          -7,
          -2.6678838006255914,
          -3.41237653650371,
          -3.121942651159755,
          -2.7858990283843834,
          -3.186485453404858,
          -7,
          -2.794052139283516,
          -3.710371264260763,
          -2.1457341891998967,
          -7,
          -7,
          -3.289514631590605,
          -2.3212449937489508,
          -7,
          -2.6414741105040997,
          -2.1700723565596474,
          -4.179659489735338,
          -3.3619166186686433,
          -3.0249779720956247,
          -3.366142676814887,
          -2.8325302011296567,
          -7,
          -2.9071425310031405,
          -3.042181594515766,
          -7,
          -7,
          -3.0716242985397515,
          -2.4222614508136027,
          -7,
          -7,
          -3.954483717155552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3792752943968063,
          -2.9140545254194707,
          -3.3506598211478686,
          -3.6291036501771363,
          -7,
          -7,
          -7,
          -7,
          -2.7490488686793366,
          -7,
          -3.31722734917642,
          -7,
          -7,
          -3.673389578188305,
          -2.9032143764500575,
          -3.617629297757842,
          -7,
          -7,
          -3.714245911017894,
          -7,
          -7,
          -3.2522055549271984,
          -2.1316186643491255,
          -1.890920833105978,
          -2.3239656832326614,
          -1.9543611529264453,
          -2.7754081588965955,
          -7,
          -2.8460762290468815,
          -3.349180358996378,
          -3.3140779917792127,
          -3.6084190513172856,
          -1.4693830636877623,
          -2.644143050509919,
          -7,
          -7,
          -2.6168918081997035,
          -7,
          -4.056065929431752,
          -3.6184664921990803,
          -3.9512403503243405,
          -2.642538710000905,
          -7,
          -2.925569909543376,
          -2.57362573693412,
          -3.7148325124333326,
          -2.738275942048923,
          -3.7245216271185626,
          -3.7431176252147416,
          -3.099507993727965,
          -3.2474003723989,
          -3.298252505655764,
          -3.354876422516234,
          -3.618414214801256,
          -7,
          -7,
          -7,
          -7,
          -1.8586823667982821,
          -3.5896983300424856,
          -7,
          -7,
          -7,
          -3.42422807069598,
          -3.6449307079135873,
          -7,
          -2.6838524719712984,
          -2.8676147812238355,
          -7,
          -3.3078524552347384,
          -7,
          -3.73275552117825,
          -7,
          -7,
          -7,
          -3.622214022966295,
          -7,
          -2.954145988829548,
          -7,
          -3.184975190698261,
          -2.656577291396114,
          -2.874017703862186,
          -3.536987475130602,
          -4.674649075135416,
          -7,
          -3.171628957978357,
          -3.3597406478637164,
          -7,
          -7,
          -7,
          -2.3994479771381387,
          -3.730378468587643,
          -1.8290948267207143,
          -7,
          -3.6094876898532853,
          -2.8494194137968996,
          -3.6396856612426816,
          -7,
          -3.325207689482919,
          -2.5863461416029554,
          -3.6815363811196473,
          -7,
          -7,
          -7,
          -3.638089721984506,
          -3.6732974397596356,
          -3.189583881400236,
          -7,
          -3.1963604423536847,
          -3.9290611240847655,
          -3.4429498695778618,
          -3.9880682033926353,
          -2.0427788247172347,
          -7,
          -7,
          -7,
          -3.6872970377689955,
          -7,
          -3.9763155826188763,
          -2.0556020599702647,
          -3.661694397512043,
          -7,
          -7,
          -7,
          -2.5366231805133514,
          -3.360356702117789,
          -2.9024448521908397,
          -2.6912288854662814,
          -7,
          -3.720242018287057,
          -3.671358003443492,
          -3.1500396976551133,
          -2.475414790905645,
          -2.5583751902435905,
          -1.8321578541777817,
          -3.6074550232146683,
          -3.3416323357780544,
          -2.172929010344586,
          -7,
          -3.0305187648435425,
          -7,
          -3.767897616018091,
          -2.526051950563682,
          -2.9242792860618816,
          -7,
          -3.4211924683057493,
          -3.9393288950774887,
          -3.759101003867064,
          -7,
          -3.4582033372516316,
          -7,
          -2.9005491846146607,
          -2.494502447046173,
          -3.7453871213200087,
          -3.50170953186571,
          -3.359645792674543,
          -1.388158829606327,
          -1.8926510338773004,
          -2.3957007311030742,
          -7,
          -4.024511963680228,
          -2.439885080817301,
          -7,
          -3.6074550232146683,
          -3.6082050077043264,
          -3.3690302218091532,
          -2.8504234343666353,
          -3.6504046698680317,
          -2.5506986232492888,
          -2.8913283438821975,
          -2.8616339626031766,
          -3.4599952560473914,
          -7,
          -7,
          -3.1944218305429115,
          -2.4606325707446945,
          -2.687974620034556,
          -7,
          -3.5774171131475145,
          -2.7839967388630753,
          -3.9742473742929625,
          -7,
          -2.514592020993427,
          -3.0984948177211837,
          -2.5665281401774287,
          -7,
          -3.38524868240322,
          -3.1573560154410694,
          -3.1524718103360363,
          -3.034138055782684,
          -2.9086312213651015,
          -3.2841298195890003,
          -7,
          -7,
          -3.4885507165004443,
          -2.2570783059665684,
          -1.6137635424090397,
          -2.5595383447665103,
          -7,
          -2.2453152163527337,
          -2.461205674017861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.74245017435857,
          -4.435732912484542,
          -7,
          -7,
          -4.201779353725061,
          -7,
          -7,
          -7,
          -7,
          -4.536305872351034,
          -7,
          -7,
          -4.405030301512223,
          -7,
          -7,
          -7,
          -7,
          -4.792349658966237,
          -7,
          -4.576341350205793,
          -7,
          -7,
          -4.691788524402698,
          -4.278662160909981,
          -7,
          -4.198106998873402,
          -7,
          -4.709405656800057,
          -4.392943042340061,
          -7,
          -7,
          -7,
          -7,
          -4.204309944940537,
          -7,
          -4.350005598857088,
          -3.0824263008607717,
          -4.7029558528042,
          -3.499477262788162,
          -3.2763852022713076,
          -3.611882555512116,
          -4.397418542351348,
          -7,
          -4.098433572355451,
          -2.636714318834443,
          -3.353403259377596,
          -3.893192868743221,
          -3.5023132962432744,
          -3.456939314742928,
          -3.4205333226934997,
          -4.190653797183291,
          -7,
          -3.326745379565322,
          -3.9947129854315704,
          -4.435589573086606,
          -7,
          -7,
          -3.427426313039922,
          -3.9132043533616425,
          -4.630343957562579,
          -3.163260789989906,
          -1.6474042335228791,
          -7,
          -3.4283939969501827,
          -7,
          -4.712597515821648,
          -7,
          -4.003482073960254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.301702630953145,
          -4.00177696707744,
          -4.3157919753496214,
          -7,
          -2.6724673130680823,
          -3.4295290448490627,
          -4.0188945843702,
          -7,
          -3.7862908765224415,
          -7,
          -7,
          -3.946471915902509,
          -7,
          -7,
          -3.6174197467371765,
          -7,
          -7,
          -7,
          -3.8207792582284554,
          -2.491730208478279,
          -2.8609596278508898,
          -7,
          -7,
          -3.80704430934858,
          -7,
          -2.449324093098727,
          -7,
          -3.3632828442326597,
          -7,
          -3.4993793811041045,
          -3.2879695948354546,
          -7,
          -3.0637085593914173,
          -7,
          -3.759516759462188,
          -2.9167696842831363,
          -7,
          -7,
          -3.3820170425748683,
          -7,
          -7,
          -3.4363217001397333,
          -2.249543271982791,
          -7,
          -4.144044637110949,
          -7,
          -7,
          -3.4041190272580537,
          -3.5048071575589814,
          -7,
          -7,
          -3.506369717095504,
          -2.1245687128412167,
          -7,
          -2.7366620446156418,
          -7,
          -3.0227581942367694,
          -2.883580326836657,
          -7,
          -7,
          -3.7829024059746446,
          -3.241878383159056,
          -7,
          -7,
          -3.731346975545955,
          -3.0938592615034377,
          -7,
          -3.1401150518957146,
          -4.125058151172073,
          -7,
          -7,
          -2.705497167475071,
          -2.318253107516318,
          -7,
          -4.246720103107109,
          -7,
          -7,
          -7,
          -2.8067074419715725,
          -2.815279300524557,
          -3.3381243371969007,
          -7,
          -3.2441946258862364,
          -7,
          -7,
          -3.05595140532915,
          -3.9814561665221264,
          -7,
          -3.4625477288026643,
          -3.154293521704834,
          -7,
          -7,
          -2.879184132798873,
          -3.2678097897218614,
          -3.414694864805198,
          -3.1727488389827436,
          -3.2311417797607684,
          -3.8171024042569233,
          -3.1801736812604093,
          -7,
          -3.858115932190066,
          -3.916137983107175,
          -7,
          -7,
          -3.620656479819621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096782601272063,
          -7,
          -7,
          -2.7955997369329895,
          -7,
          -3.109443547064349,
          -7,
          -2.889141564421198,
          -7,
          -2.358315640082196,
          -3.218902950862829,
          -7,
          -3.3140779917792127,
          -3.036309443724438,
          -3.69284691927723,
          -3.30821366567681,
          -3.1990234256365437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9735126958773432,
          -2.954724790979063,
          -7,
          -7,
          -7,
          -3.071697945221614,
          -7,
          -7,
          -7,
          -3.5177499628542592,
          -7,
          -3.4345689040341987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.745186363703905,
          -3.070684206978637,
          -3.3687516195445553,
          -3.8457180179666586,
          -7,
          -3.4914317356829696,
          -7,
          -7,
          -3.470116353151004,
          -7,
          -3.610606937465461,
          -3.4220149959794637,
          -7,
          -7,
          -7,
          -2.6928469192772297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5058144831135785,
          -7,
          -7,
          -7,
          -4.197087495449889,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.038640028580474,
          -2.5068994614132776,
          -7,
          -3.670802284260944,
          -4.140542958380234,
          -3.085290578230065,
          -7,
          -7,
          -7,
          -3.155336037465062,
          -7,
          -3.450929751236355,
          -3.085290578230065,
          -7,
          -7,
          -2.6459132750338443,
          -7,
          -2.5622928644564746,
          -7,
          -7,
          -3.366982975977851,
          -7,
          -3.995318602010679,
          -1.9131513129998394,
          -7,
          -7,
          -7,
          -3.6462076122066853,
          -2.907411360774586,
          -7,
          -7,
          -2.8369567370595505,
          -3.255754786643044,
          -3.8294377936566226,
          -7,
          -7,
          -3.797198269838959,
          -7,
          -2.560305243220961,
          -3.448551739201578,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4102709642521845,
          -7,
          -7,
          -2.858236335429513,
          -7,
          -7,
          -4.824545600914718,
          -7,
          -3.3647385550553985,
          -7,
          -7,
          -3.879153246184246,
          -7,
          -7,
          -7,
          -3.450864692379766,
          -7,
          -2.1722136039924793,
          -7,
          -3.2730012720637376,
          -7,
          -4.276247284790318,
          -7,
          -4.0217266644137775,
          -7,
          -7,
          -7,
          -7,
          -3.089198366805149,
          -7,
          -7,
          -4.151277893904123,
          -7,
          -7,
          -7,
          -3.1970966908570375,
          -7,
          -3.386855529184724,
          -7,
          -3.6351820486562674,
          -3.4757074990540944,
          -2.989004615698537,
          -7,
          -2.527951958343942,
          -7,
          -3.9085743706908986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4754968545499993,
          -4.754829768633988,
          -7,
          -7,
          -7,
          -4.693124321053439,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.823517699915736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2555137128195333,
          -4.155730671278588,
          -7,
          -7,
          -7,
          -7,
          -2.8549130223078554,
          -2.676388734581175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.542190320433657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2872848151912764,
          -2.781396305196791,
          -2.673941998634088,
          -2.5158162716983514,
          -2.3349561161368517,
          -7,
          -3.7040738770877333,
          -7,
          -2.6866362692622934,
          -7,
          -2.1375123531221294,
          -2.1122697684172707,
          -7,
          -7,
          -3.624230513855454,
          -7,
          -4.281487887940081,
          -7,
          -3.423081958297231,
          -3.1976853060411248,
          -7,
          -7,
          -3.590284403718162,
          -3.189770956346874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6351820486562674,
          -7,
          -7,
          -7,
          -3.953373050726696,
          -7,
          -7,
          -2.520483532740792,
          -3.5989727919628125,
          -7,
          -3.7610252517113727,
          -7,
          -2.620656479819621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.391111613702803,
          -4.357210419006122,
          -3.855700830835437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9139727115509713,
          -3.586812269443376,
          -7,
          -5.713009781068882,
          -7,
          -2.9138138523837167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3260797155471575,
          -2.145092768246633,
          -7,
          -2.1818435879447726,
          -2.2540644529143377,
          -2.1722136039924793,
          -1.4671015942208998,
          -1.8084360542881113,
          -3.9427122796492005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0338256939533106,
          -7,
          -7,
          -7,
          -3.039678449361962,
          -7,
          -7,
          -7,
          -4.015045239174416,
          -7,
          -7,
          -2.192328457926367,
          -4.109266296065941,
          -7,
          -7,
          -7,
          -3.99370069482035,
          -3.7434313651466837,
          -3.66138669778177,
          -3.4178866903508798,
          -3.540767303210374,
          -3.2076343673889616,
          -3.022840610876528,
          -2.3010299956639813,
          -2.690196080028514,
          -3.4634450317704277,
          -2.4324882557705063,
          -7,
          -2.576341350205793,
          -2.266290508320006,
          -2.5569052690554477,
          -3.239049093140191,
          -7,
          -7,
          -2.3354836176091194,
          -2.848189116991399,
          -7,
          -7,
          -4.831002238235833,
          -3.894814329083301,
          -7,
          -7,
          -7,
          -7,
          -3.591287265058499,
          -7,
          -3.957463615729931,
          -3.509605704611556,
          -2.530768705139248,
          -2.2479732663618064,
          -2.0021005820003483,
          -7,
          -4.787028090288343,
          -3.571242850560224,
          -7,
          -7,
          -7,
          -3.4565178578052627,
          -7,
          -7,
          -2.7007037171450192,
          -7,
          -7,
          -7,
          -7,
          -3.7019994748896368,
          -7,
          -3.1152775913959014,
          -3.321184027302314,
          -7,
          -4.8572540750698945,
          -7,
          -4.972230038807431,
          -7,
          -2.7517688440873256,
          -5.018804483937159,
          -3.7777891874348675,
          -7,
          -7,
          -7,
          -3.5407047833107623,
          -7,
          -7,
          -3.0283678836970616,
          -7,
          -7,
          -7,
          -2.088726563953855,
          -2.401400540781544,
          -1.8852804285733862,
          -2.2453152163527337,
          -7,
          -2.7166463680139135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.880470592803778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.986906031380721,
          -3.40970774995732,
          -7,
          -7,
          -7,
          -4.934500976204146,
          -2.1486384153958378,
          -2.2362292611340204,
          -3.8394937596254946,
          -4.263811171112919,
          -3.6391603743363103,
          -7,
          -7,
          -7,
          -2.783903579272735,
          -7,
          -7,
          -7,
          -7,
          -4.088561311791215,
          -5.010858016949204,
          -7,
          -7,
          -2.385606273598312,
          -2.9132839017604186,
          -4.052463077483329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.481865250764642,
          -7,
          -3.9135754546260832,
          -7,
          -4.421219911007847,
          -4.487633217456876,
          -7,
          -4.341607614304764,
          -4.478931861027784,
          -7,
          -3.9857778134583097,
          -7,
          -3.594060901270418,
          -4.307175012040345,
          -7,
          -7,
          -2.7041505168397992,
          -7,
          -7,
          -7,
          -4.469291705846857,
          -2.8825245379548803,
          -3.5821486217835403,
          -7,
          -7,
          -3.7406192422595144,
          -7,
          -1.9761970853273751,
          -7,
          -3.4470804718310024,
          -7,
          -3.7972467606932976,
          -3.0133639615579817,
          -7,
          -7,
          -7,
          -7,
          -2.819919785398216,
          -7,
          -7,
          -3.778729923996112,
          -7,
          -7,
          -7,
          -2.827110687466011,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.39560942237794,
          -4.788026884095804,
          -7,
          -7,
          -2.5738298090754212,
          -7,
          -2.9888561135661607,
          -7,
          -3.214578953570499,
          -3.3477689676073514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.27669152884504,
          -3.9867269593312185,
          -7,
          -7,
          -3.0657041722395175,
          -3.517591730711908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0299921753778474,
          -3.502011356235333,
          -3.1612182196910164,
          -7,
          -3.2121876044039577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.732393759822968,
          -3.3260626338156793,
          -7,
          -7,
          -3.794418330874141,
          -3.6763073984105277,
          -3.1416587697865523,
          -7,
          -3.4025193025742495,
          -7,
          -7,
          -7,
          -3.3337293231565988,
          -7,
          -7,
          -7,
          -2.427323786357247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.768379075007812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4380476517490206,
          -3.0645515770910676,
          -7,
          -7,
          -7,
          -7,
          -4.094348824158173,
          -3.0453229787866576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3047058982127653,
          -2.031913164461711,
          -7,
          -7,
          -7,
          -2.18590624134928,
          -7,
          -7,
          -7,
          -4.1085988459735665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7995473071256147,
          -7,
          -7,
          -7,
          -7,
          -3.409087369447835,
          -7,
          -7,
          -7,
          -7,
          -3.6554265877459184,
          -7,
          -7,
          -7,
          -3.1223524273957572,
          -4.1982445862282365,
          -4.499150755234518,
          -4.499508380406101,
          -3.4223298856764006,
          -3.6713447802948647,
          -2.9318056808578947,
          -3.7236198355154633,
          -3.073677626966478,
          -2.0227185065721027,
          -3.860972511322973,
          -3.897008193182832,
          -3.103201446615745,
          -2.5474390404359823,
          -2.3823865369984354,
          -2.4953961302668386,
          -4.5064238482786605,
          -7,
          -4.5011825459901935,
          -4.499879448956432,
          -2.241745652570644,
          -2.6579327842065577,
          -3.5950826736446,
          -2.407078961826646,
          -1.5961402421300699,
          -2.468807861671502,
          -2.820994641680185,
          -3.544591639398066,
          -2.2686546414005466,
          -2.5093503992977833,
          -2.9595047561076266,
          -2.2347644128428783,
          -2.5673103646159388,
          -3.4212747912103465,
          -4.023773574676574,
          -2.59402403573142,
          -2.770615346059276,
          -1.9817558986997879,
          -2.5676527679046632,
          -4.022387125686438,
          -2.7820685019399147,
          -3.6587879323179417,
          -2.4878451201114355,
          -2.3742382627571037,
          -3.226084115975824,
          -2.600959781544797,
          -3.254990926676981,
          -2.2762517344250175,
          -3.80453468538638,
          -2.674685572725944,
          -3.632242116329883,
          -1.8236010449684215,
          -3.6136700778166193,
          -1.2761911826202288,
          -2.0936429684529205,
          -1.5792468110427222,
          -2.100063531414098,
          -4.5048105531506915,
          -2.5606537342551157,
          -1.875192847844124,
          -3.3615794492016025,
          -3.3626574713677146,
          -3.7310109331253267,
          -3.6556322942792354,
          -2.9259766793032753,
          -2.6001965198996295,
          -2.454476626578019,
          -3.421905415588571,
          -4.500250200730158,
          -2.4827826631659913,
          -3.8003045775561985,
          -2.668756154146636,
          -2.412361709359006,
          -2.9815440587012345,
          -3.166816084791104,
          -2.2535578812749155,
          -3.655303117041215,
          -2.1876920011804275,
          -4.021203085977509,
          -3.07083112373925,
          -1.924716630482366,
          -2.589344990545666,
          -2.1736418872775687,
          -3.3522790172744976,
          -2.1294117956804723,
          -2.508631725896454,
          -1.527240429179981,
          -3.020084925984292,
          -2.152021152002349,
          -4.51615180913224,
          -1.9959062547102917,
          -3.307999130331943,
          -2.2861801654275338,
          -3.7219754015859534,
          -7,
          -3.1300892079409475,
          -2.775564113729958,
          -3.0333848384671733,
          -2.5282175541775285,
          -4.501989874055827,
          -2.9221677949187748,
          -3.9055260484350485,
          -2.5625003464965244,
          -3.6538600257721283,
          -1.4926406772196101,
          -3.220631019448092,
          -2.3849927064819196,
          -3.234144155367817,
          -1.7324701058690302,
          -0.9641357943202269,
          -3.4642184860833276,
          -2.9968535663367337,
          -2.761337071087618,
          -3.558415209393273,
          -2.052759379088285,
          -3.66343167895703,
          -4.021781741232203,
          -3.1793167197213412,
          -2.759831461061373,
          -2.8853243388390224,
          -3.1103337714833192,
          -2.445119865230657,
          -2.4358841638751363,
          -4.028584807240124,
          -3.4039551204923084,
          -3.5061260432424652,
          -2.84941605707404,
          -1.9475459819506464,
          -2.6039816229298722,
          -2.240162204345499,
          -3.8017329080485833,
          -4.029613716996135,
          -1.7812460927511966,
          -2.355768977002329,
          -7,
          -2.9186923711842754,
          -3.2442372058639073,
          -7,
          -7,
          -7,
          -3.546474114116154,
          -3.800070653111199,
          -2.6064231101466255,
          -2.6970859639264892,
          -2.5865680715067687,
          -3.1237911669042013,
          -4.5070053327802775,
          -3.6844413876256064,
          -2.9546697001875133,
          -3.5990775713183476,
          -2.6973500751374315,
          -4.151277893904123,
          -2.113325985068863,
          -4.499233310262374,
          -3.1222158782728267,
          -3.0915993262816954,
          -1.5324560835286616,
          -3.596225862608387,
          -4.197556213153536,
          -3.404741639586191,
          -3.151169920303053,
          -3.459337649135267,
          -2.506719307031022,
          -3.2144331927092873,
          -2.7469454096151047,
          -2.2700504293449453,
          -2.629661083959758,
          -2.2281367891278965,
          -2.7015679850559273,
          -2.9020709146074903,
          -1.785426825092026,
          -2.849542252005017,
          -3.7209169341271506,
          -4.498310553789601,
          -3.276853614306531,
          -3.247591421035026,
          -3.1401253083573186,
          -3.721357130022457,
          -1.5315953405161056,
          -4.02611088519185,
          -3.3993361902558252,
          -3.353132789439816,
          -2.788611718331111,
          -0.7893355732020385,
          -2.976201582968563,
          -2.3810662726088885,
          -2.1360407426264034,
          -2.330588455929623,
          -2.350719366024341,
          -2.5489232446175647,
          -2.5426135630696667,
          -2.652340368851867,
          -2.362236424639688,
          -2.197143907448683,
          -2.9475017963235906,
          -3.033983931269618,
          -7,
          -2.5962268159414412,
          -3.478159686911935,
          -3.683595498456455,
          -3.899519564476793,
          -2.372118250386322,
          -4.197969367916172,
          -2.5184783696676294,
          -3.249918186415877,
          -2.7734805897368733,
          -3.071117980626713,
          -3.124300397693026,
          -2.784545974054523,
          -3.0309912369409937,
          -7,
          -1.2666411303139182,
          -2.5614340302696146,
          -2.5007623243323183,
          -7,
          -3.5957717020009405,
          -3.388988785124714,
          -3.654850090561394,
          -4.024376190894477,
          -3.462779029617742,
          -4.023348501505407,
          -3.3913965882976815,
          -2.0129950311058975,
          -2.3968764042806954,
          -3.1178559416698866,
          -3.319674125495312,
          -4.498420836797279,
          -3.2245330626060857,
          -3.425968732272281,
          -3.5567446126282376,
          -3.8971870765801535,
          -3.898793720133296,
          -3.0297109791486663,
          -2.971116737367246,
          -2.372191314994798,
          -3.5438749816745454,
          -3.799368122831065,
          -3.3244882333076564,
          -2.08893477545536,
          -4.021533840525457,
          -2.2167074772748543,
          -3.0689011424160633,
          -2.154746751421589,
          -7,
          -4.499384620400921,
          -7,
          -3.900107566982329,
          -2.7498447604118503,
          -2.7339042088550625,
          -3.8964573201336714,
          -2.636108220873542,
          -3.2125749782567365,
          -2.2463255418458528,
          -2.9357415383958827,
          -1.8966704821219622,
          -3.4755523319785775,
          -4.023005397249935,
          -7,
          -1.9860191759019852,
          -2.355603430234352,
          -2.0016984553595427,
          -2.9384250560792444,
          -2.5620548296563785,
          -3.6056686020868565,
          -3.7241939195143297,
          -3.0874127989033524,
          -2.02071386904202,
          -3.0314322280053934,
          -2.2121220818387344,
          -1.7526431342571807,
          -2.916316600515288,
          -3.008467095467969,
          -3.5067079263501197,
          -3.5463644126266622,
          -2.943427667431837,
          -2.0691355946764824,
          -2.5092800864596443,
          -3.5437232293405754,
          -2.9579081586744045,
          -2.2108668629911357,
          -3.2467173689525204,
          -2.5843977472261894,
          -3.8968154670877886,
          -1.8084853593283476,
          -1.4433070787167055,
          -2.55030900697669,
          -2.9722671392456044,
          -2.8322959710584774,
          -2.391471506923992,
          -2.0524544489011003,
          -3.8023220978574237,
          -2.671492930691694,
          -7,
          -2.963180469568511,
          -2.1292139171150253,
          -2.4664306710374504,
          -1.6412637671866943,
          -1.005398821029378,
          -2.2272614893778035,
          -2.6538994379074516,
          -2.5759867517113815,
          -2.4917935477231654,
          -2.7382119030151055,
          -1.7858189578834474,
          -7,
          -4.498186451922232,
          -4.197225406118192,
          -2.824244202541404,
          -1.6711869701015334,
          -3.7256666603141784,
          -2.6719755425169955,
          -2.6446717677187572,
          -3.1798525964727418,
          -2.089413700330822,
          -3.327563260187278,
          -2.1961798384775983,
          -3.205488565953269,
          -2.885966677374664,
          -1.9074138842093709,
          -3.5067890573949856,
          -2.929317571471571,
          -2.506119430030942,
          -3.1126862649444966,
          -4.206096944706567,
          -1.529020268707673,
          -2.692448070813735,
          -1.9531422419472886,
          -4.020996236394208,
          -2.7151538610111667,
          -3.5015658718510116,
          -1.7533189919593353,
          -2.3013485188018796,
          -1.8997005684246981,
          -1.234437876924377,
          -3.323403371980216,
          -3.5948895496460347,
          -2.0735278371719144,
          -3.5025227088782835,
          -3.0907598218150745,
          -3.303060994604316,
          -2.461205674017861,
          -2.7166463680139135,
          -7,
          -3.006300381107872,
          -2.562403533879741,
          -2.3658050448996435,
          -3.109679769252334,
          -4.696784355456685,
          -3.5935075893317654,
          -3.235801898991499,
          -2.3432564443899238,
          -3.1716589589787767,
          -2.449712564810516,
          -1.9632118646144128,
          -2.9739758441821524,
          -4.24384384757082,
          -3.595496221825574,
          -2.7676418031828867,
          -2.871696335031655,
          -2.3742678477862706,
          -3.6403157705629567,
          -2.7849514424392368,
          -2.4493164716242184,
          -3.667297263882406,
          -3.049361302724119,
          -4.542240166289717,
          -3.2965499816921042,
          -3.153414127210913,
          -2.4724947715607035,
          -3.3861619419931306,
          -4.021007270859423,
          -3.2210795564374317,
          -3.4624635115214004,
          -3.920553753485052,
          -2.5361583110918096,
          -3.2958633803612676,
          -3.068933142369716,
          -3.225434348532171,
          -3.4647968279841517,
          -4.518921721978057,
          -3.4048136006153067,
          -3.7417254746093196,
          -3.0833051284625346,
          -3.5870558498481797,
          -2.4594530444588427,
          -3.663714383330552,
          -2.841091194229767,
          -2.089274358160125,
          -2.247384898685672,
          -2.7509122702070736,
          -3.2418203185180303,
          -3.3466528340631028,
          -2.161216268492156,
          -2.3653060993655983,
          -2.9534799201619046,
          -2.818136892763469,
          -1.8912109478360524,
          -2.244485605507447,
          -7,
          -2.1040376731383583,
          -2.903517141108291,
          -3.8987388901635986,
          -3.8728785244068824,
          -3.2461887364633246,
          -7,
          -7,
          -2.0795744506755742,
          -2.2477567527751328,
          -3.3758142265027953,
          -3.3561351686666177,
          -2.162728409930911,
          -3.549303048006186,
          -2.50158891826153,
          -4.569444140240524,
          -3.130559357019549,
          -2.713065260517642,
          -3.245805023585475,
          -7,
          -3.269087447472221,
          -3.5602579264510434,
          -2.4626554649657124,
          -3.398981066658131,
          -2.5246492705057113,
          -3.3974069470962536,
          -2.290401000434648,
          -2.441617301918038,
          -3.9052155343138026,
          -1.5622755306190403,
          -2.7116852039479586,
          -3.498874206668076,
          -2.8209730377477755,
          -7,
          -3.128548382704474,
          -2.0939454921482628,
          -3.8030215785684427,
          -3.899218417851373,
          -4.499480881230387,
          -7,
          -7,
          -4.258409781163722,
          -2.2121149993345925,
          -2.561992029499823,
          -1.8841903296890576,
          -7,
          -3.0125999845343534,
          -2.1484235191525474,
          -3.294569956855799,
          -2.4677798235250936,
          -3.8999982314291435,
          -2.5204478015727347,
          -4.500236474825639,
          -2.1002388609194944,
          -2.457310962806848,
          -3.660770643527697,
          -4.521647949497911,
          -2.361088118235532,
          -3.088949423617117,
          -2.422499190079314,
          -4.509404160258692,
          -4.204255678480151,
          -2.5020619934068473,
          -7,
          -3.5528979407839887,
          -2.472982377874486,
          -2.473544089440609,
          -7,
          -2.7518904746809025,
          -7,
          -3.8992594955985687,
          -3.5932122011334005,
          -1.7869661639365204,
          -2.7495713646784057,
          -7,
          -4.228644131738731,
          -1.8237737061247918,
          -4.509148736402258,
          -2.3401220669202907,
          -7,
          -2.9575540809979275,
          -2.104002177228143,
          -7,
          -3.387307669549021,
          -3.7468546628685075,
          -2.7345731588380384,
          -2.7902608916016636,
          -3.3005547261139583,
          -2.9590148778070953,
          -2.76889361210532,
          -7,
          -2.485933600889173,
          -1.917010589497117,
          -7,
          -7,
          -2.105491048217859,
          -2.5797073979181495,
          -7,
          -2.7129011581876155,
          -7,
          -7,
          -3.4443013689598114,
          -3.015490736645513,
          -1.5521877772198334,
          -2.5073674815312446,
          -3.7660284553347037,
          -2.7277411992455693,
          -7,
          -4.280407623567409,
          -3.3286377925655763,
          -3.312800085191476,
          -4.2026789942277265,
          -3.0023755306572752,
          -2.2024436883925915,
          -4.035803164245306,
          -4.021699123385047,
          -2.1102942919612793,
          -1.215738424976611,
          -2.352891753316144,
          -3.201019765456387,
          -2.238320187023523,
          -3.025587450804147,
          -2.871382288272447,
          -3.2327286876731725,
          -2.375229755914513,
          -3.2509929904658788,
          -3.9109310770872527,
          -4.0338658673479,
          -3.5966245817491806,
          -7,
          -2.9679754116075565,
          -4.230027195569308,
          -3.206906792930864,
          -3.4889351046198613,
          -2.139716276846601,
          -3.0153073518517566,
          -2.812454957991551,
          -2.4821356148977904,
          -3.3759195437046494,
          -2.350041162182644,
          -7,
          -2.4345422920373827,
          -7,
          -2.3646250417549757,
          -2.315835362781999,
          -3.5553967768062633,
          -3.897063242076261,
          -3.101363672652795,
          -3.2086160065968223,
          -2.1426920071504876,
          -3.361228515053669,
          -7,
          -7,
          -4.198065714165741,
          -7,
          -7,
          -7,
          -2.77942191922357,
          -4.515714926414582,
          -2.8195176138665428,
          -3.7262380468026377,
          -4.028774526500088,
          -3.656454147451837,
          -3.2991121572555873,
          -3.205840177622518,
          -4.505109261303588,
          -2.717761491475825,
          -3.172085226479833,
          -2.4694836796325514,
          -3.362293937964231,
          -4.551510990105817,
          -3.3019789772725154,
          -7,
          -2.993045536208752,
          -3.3005954838899636,
          -7,
          -2.4551104023475094,
          -3.2279948928142463,
          -3.163757523981956,
          -3.2144779988742656,
          -4.227668217528221,
          -2.8180446732975755,
          -3.8014860329219524,
          -3.899191030527895,
          -3.267341239709708,
          -4.022593314021462,
          -2.8259280154703044,
          -2.713930335011934,
          -4.508839337975575,
          -4.498351913199365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0409976924234905,
          -7,
          -7,
          -4.601715133199268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.726419799951237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.553883026643874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.906728207422946,
          -3.3902283624691303,
          -3.5852914908954987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -7,
          -7,
          -7,
          -3.598243191653623,
          -7,
          -7,
          -5.124364002028919,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3394514413064407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9581814975649476,
          -7,
          -7,
          -7,
          -3.294576439201622,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.862608363964942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292521884574141,
          -3.422589839851482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2062320243262996,
          -7,
          -7,
          -7,
          -7,
          -3.8613705825140756,
          -7,
          -7,
          -2.047588868180089,
          -7,
          -3.307282047033346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062393937253195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.250420002308894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5425764762605296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.708208375304485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6869042695681773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.048053173115609,
          -7,
          -7,
          -7,
          -7,
          -3.3085644135612386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.547528576459782,
          -7,
          -3.9391696796251776,
          -2.853241780329114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.875111638629893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.768144584737799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.006300381107872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.577250458079471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.064772364522698,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.953817658206996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464703114940226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7508168426497543,
          -7,
          -7,
          -3.161966616364075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.491218072720135,
          -7,
          -7,
          -7,
          -3.4412760841240377,
          -7,
          -7,
          -7,
          -7,
          -4.241994489156781,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6685256885568625,
          -7,
          -7,
          -3.494154594018443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1424696373647745,
          -7,
          -7,
          -3.0989896394011773,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7675268994083817,
          -3.5127049161671735,
          -3.578295305120826,
          -7,
          -4.297804266525286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6307328928171967,
          -7,
          -7,
          -7,
          -7,
          -3.9116369331294423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.902905372603798,
          -7,
          -7,
          -7,
          -7,
          -4.204798038190855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8714561740229536,
          -7,
          -7,
          -4.066373685809159,
          -7,
          -2.380211241711606,
          -7,
          -2.9564085711958326,
          -7,
          -7,
          -4.563267445405564,
          -7,
          -7,
          -7,
          -2.754348335711019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.140526897671522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.41954272470028,
          -7,
          -4.003858883484917,
          -7,
          -3.287129620719111,
          -7,
          -7,
          -7,
          -3.0948203803548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.60422605308447,
          -7,
          -7,
          -4.823506832637296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.693726948923647,
          -7,
          -3.3988077302032647,
          -2.5628873812938795,
          -3.453776859690442,
          -7,
          -3.1920095926536702,
          -7,
          -5.229715110508744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9608036249117697,
          -7,
          -2.847983728251745,
          -7,
          -3.6018427897820984,
          -3.469877219395211,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.576226137449605,
          -7,
          -7,
          -4.293738117783524,
          -3.431524584187451,
          -7,
          -2.2741578492636796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.303196057420489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.237367773021761,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0930713063760633,
          -7,
          -3.0457140589408676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752959126424497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.209193195719529,
          -7,
          -7,
          -7,
          -7,
          -3.4181277855872354,
          -7,
          -7,
          -7,
          -1.0903975088639173,
          -7,
          -7,
          -7,
          -3.0330214446829107,
          -7,
          -7,
          -2.75815462196739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.187520720836463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8967466156074058,
          -3.549371152333177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6074550232146687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530532657749054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2143138974243994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.150756439860309,
          -7,
          -7,
          -3.214472950523377,
          -7,
          -7,
          -7,
          -5.131015236742566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.076640443670342,
          -7,
          -7,
          -2.9867717342662448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.853393977450666,
          -7,
          -7,
          -7,
          -7,
          -3.285107029566812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.85532528501812,
          -7,
          -5.875143482030488,
          -7,
          -3.7717344253867693,
          -7,
          -3.054459837239404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.09429639740537,
          -1.8156269350825625,
          -7,
          -7,
          -3.3434085938038574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.562403533879741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.610873000380051,
          -7,
          -7,
          -5.064978082276334,
          -3.5675556708947846,
          -7,
          -7,
          -7,
          -5.234729823201154,
          -7,
          -7,
          -7,
          -4.359218687757081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.186501471782027,
          -7,
          -7,
          -3.660770643527697,
          -7,
          -7,
          -7,
          -5.404867911689591,
          -4.065766387622749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464976129693729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.175221800343052,
          -7,
          -7,
          -4.035389709198677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1165745397769165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4838724542226736,
          -7,
          -3.998956440470486,
          -7,
          -7,
          -7,
          -5.093491727010932,
          -7,
          -7,
          -7,
          -3.92147838037569,
          -7,
          -3.4164740791002206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.200440076436431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024458301085093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7811088357294667,
          -7,
          -7,
          -7,
          -3.6272736616580863,
          -7,
          -7,
          -7,
          -3.415974411376566,
          -3.7107940999303275,
          -7,
          -7,
          -3.6321534835106326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542700969448111,
          -7,
          -3.09377178149873,
          -7,
          -2.8680563618230415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.097673699449098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.494210269229327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5920545601729215,
          -7,
          -7,
          -7,
          -7,
          -3.4264136561316882,
          -7,
          -7,
          -2.419594993091023,
          -4.641751652976988,
          -7,
          -7,
          -4.434065661248002,
          -3.3971338420470936,
          -3.6982637017765465,
          -4.296763882338289,
          -7,
          -7,
          -4.115355295624343,
          -2.3494732486769028,
          -4.365029112607194,
          -7,
          -2.835720761230848,
          -2.5573110687395006,
          -4.298973090963759,
          -4.595463152458813,
          -3.989727837317633,
          -3.831613855309099,
          -3.8240824240027838,
          -4.5962561231022905,
          -3.0710793127277585,
          -3.754795943844005,
          -3.894172012566013,
          -4.593385766043638,
          -3.897352134344313,
          -4.609049866047581,
          -4.59470186120636,
          -4.620094394032491,
          -7,
          -3.435589573086606,
          -3.896834743546406,
          -3.6046064588259554,
          -4.594005601788341,
          -4.596926814342971,
          -4.008504360940798,
          -7,
          -3.5921161680291207,
          -7,
          -3.997779430865604,
          -4.6215293920698475,
          -3.9996306927125405,
          -3.3272190771136168,
          -2.0772479764810248,
          -3.470872305442661,
          -3.270641576038564,
          -3.806693456192453,
          -7,
          -4.297629218364148,
          -4.316001814931364,
          -4.298088569391382,
          -7,
          -7,
          -7,
          -7,
          -3.9276987831185015,
          -2.9855240968680246,
          -3.9916136656172863,
          -7,
          -4.137396314809074,
          -7,
          -7,
          -3.933760534062559,
          -7,
          -7,
          -3.42935099788424,
          -7,
          -3.3562171342197353,
          -7,
          -7,
          -3.5849434042753194,
          -3.7063977028613415,
          -3.6923511178233523,
          -4.290568798984483,
          -3.7719862146383307,
          -4.297169380969235,
          -4.018617292519441,
          -4.323674841477321,
          -4.005019553400609,
          -4.128550039238989,
          -3.03301518820464,
          -4.624271779929733,
          -3.8459569159936344,
          -7,
          -7,
          -7,
          -3.527275361588527,
          -7,
          -4.327123840812123,
          -7,
          -4.421283022642609,
          -4.598823323746008,
          -7,
          -4.591910100931143,
          -2.8053105152712585,
          -4.592520946518943,
          -4.312082105977306,
          -4.603458337409067,
          -3.456214155357989,
          -2.7571730707020574,
          -7,
          -7,
          -4.124362914853566,
          -7,
          -2.528965315202079,
          -3.4232567994467242,
          -7,
          -4.610713382191951,
          -7,
          -4.1556194006082015,
          -7,
          -3.524379892559869,
          -2.7133307257547616,
          -4.2962262872611605,
          -4.357610910158445,
          -7,
          -3.535240304710175,
          -7,
          -3.772112054543177,
          -3.785044958331544,
          -7,
          -4.598111733328968,
          -3.1990283740437233,
          -3.8410047143535224,
          -7,
          -7,
          -2.8224563318171123,
          -7,
          -4.2901793520677085,
          -4.592043449629362,
          -3.8151126581898125,
          -7,
          -2.865934433442102,
          -4.342432551039179,
          -4.723529553280573,
          -3.596637074866284,
          -4.598287002254073,
          -3.710390065701603,
          -7,
          -7,
          -4.301268791966063,
          -4.097048965011131,
          -3.4257834789437602,
          -7,
          -4.294036127859679,
          -4.297432204810169,
          -3.6105951086630115,
          -7,
          -7,
          -4.608033696827137,
          -7,
          -4.292377922610312,
          -7,
          -7,
          -4.614253730728656,
          -4.612995656032347,
          -7,
          -7,
          -7,
          -7,
          -2.2621076446317563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7311439906672614,
          -7,
          -3.7197530198840827,
          -7,
          -4.165264115808024,
          -1.9842665938798643,
          -3.218841731507062,
          -2.706396447183231,
          -3.025418521390219,
          -3.5620115365813385,
          -3.408335380863189,
          -4.127720152892319,
          -4.607379953483188,
          -7,
          -7,
          -7,
          -7,
          -4.636156783606082,
          -7,
          -4.6774061819799435,
          -7,
          -4.481600264553629,
          -7,
          -2.869757870745095,
          -7,
          -3.1993437186893927,
          -4.120025233114033,
          -4.605003198204288,
          -7,
          -7,
          -3.8668679796590735,
          -4.009280884255359,
          -7,
          -3.768162219987711,
          -2.646048382078891,
          -2.94359913882309,
          -7,
          -4.591854526887034,
          -3.8961954104542107,
          -3.747478395341935,
          -4.593872854295451,
          -7,
          -7,
          -4.597201388849116,
          -2.34831422597073,
          -3.5137706197390237,
          -3.1148194089047454,
          -2.744492493710069,
          -7,
          -7,
          -7,
          -3.4252950535893714,
          -7,
          -7,
          -3.463956945172151,
          -4.605660526371362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.593164181568868,
          -7,
          -2.119276841852149,
          -7,
          -7,
          -7,
          -7,
          -3.644055444774348,
          -3.752509400788843,
          -7,
          -7,
          -3.9389498039219983,
          -4.130355214606559,
          -3.951133439889513,
          -2.680026750383986,
          -3.460167322009192,
          -7,
          -7,
          -2.9147030098471265,
          -2.985340919887817,
          -2.1556565611703453,
          -7,
          -2.543752872635506,
          -7,
          -7,
          -4.117933835039642,
          -3.253481597485425,
          -4.343733454537848,
          -3.147066775257319,
          -3.279637191397853,
          -4.181281308004646,
          -4.604323272310015,
          -7,
          -7,
          -7,
          -4.14091637693907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605628222007619,
          -7,
          -3.0538037967190252,
          -2.796740803977907,
          -4.1249821638851625,
          -4.139417271934507,
          -3.759376418957984,
          -2.4737871205362993,
          -3.712546820378931,
          -7,
          -3.420308385109363,
          -7,
          -7,
          -3.5489623660813248,
          -3.493490223737186,
          -2.3605621658536116,
          -2.8644382137298496,
          -4.34964656951508,
          -7,
          -7,
          -3.532648233450749,
          -2.3993947761729593,
          -3.516856325339205,
          -7,
          -7,
          -7,
          -3.8013841070255485,
          -2.9674971047891727,
          -7,
          -7,
          -3.7116701727504755,
          -7,
          -7,
          -7,
          -4.338745263175257,
          -7,
          -4.123808100490645,
          -3.6769170487121805,
          -7,
          -3.3712290462435877,
          -3.845139399424021,
          -2.879348699802187,
          -7,
          -3.395937645080042,
          -3.1377404849138455,
          -3.2870906259509054,
          -7,
          -7,
          -4.594083019091813,
          -3.6237763280606363,
          -3.6960067152185454,
          -4.040256111364648,
          -3.910891088644528,
          -4.291468753334798,
          -7,
          -3.7688283078414297,
          -7,
          -7,
          -4.598757687300256,
          -7,
          -7,
          -2.3658050448996435,
          -7,
          -7,
          -7,
          -1.9847812973414505,
          -2.783356110842911,
          -2.923172880290525,
          -3.162337921592594,
          -2.3787851013321077,
          -2.892424774997811,
          -3.0023904888563426,
          -1.635847285435352,
          -2.56923777141077,
          -2.6780577845734572,
          -2.2703129635463952,
          -2.5745451490260423,
          -2.58406577477417,
          -1.615575264152138,
          -2.8321095614303697,
          -2.801708531564807,
          -1.7650177661804587,
          -3.331330453063568,
          -1.840483998173458,
          -3.7238249526410367,
          -2.466469087237763,
          -2.65675206543432,
          -1.5340678634984088,
          -2.691735876574482,
          -3.5474923692614233,
          -3.073010596874898,
          -3.369941495811043,
          -3.5694377561074897,
          -1.6999933818566404,
          -2.4379733985675376,
          -2.943171365088493,
          -3.0590242564640455,
          -3.2020232907090485,
          -3.2457700783611916,
          -3.362456770008371,
          -3.3020296099215876,
          -2.5136353415760677,
          -2.6691227571656837,
          -2.019532794678204,
          -7,
          -2.889052006931635,
          -1.758803501867089,
          -2.3997588077471526,
          -3.077902620312059,
          -3.285833056152534,
          -4.611383384708976,
          -2.725231158078876,
          -4.083162074006658,
          -4.31940798167448,
          -2.9170129073424844,
          -2.7244530964883347,
          -2.8868833464580277,
          -4.303466057107086,
          -2.999031628930849,
          -4.655580191171864,
          -7,
          -3.9525890468356892,
          -3.514939021565843,
          -3.9369960240186312,
          -4.599981268266425,
          -2.215667789921735,
          -2.5587501988018895,
          -2.5471072512154564,
          -7,
          -7,
          -7,
          -2.5131497987623552,
          -4.047440374098858,
          -3.7342203245726457,
          -2.80475174035332,
          -4.440271334091512,
          -7,
          -2.834471862065311,
          -2.953117307835683,
          -2.9915637971969784,
          -3.0607488707845385,
          -3.5359188393134557,
          -4.35215356418076,
          -2.2206011546095503,
          -3.3220124385824006,
          -7,
          -2.0976120062438603,
          -2.519063074800671,
          -7,
          -2.823547604372849,
          -7,
          -3.0716058849177394,
          -3.0226757619537272,
          -3.724573739627489,
          -3.6904729652670305,
          -7,
          -7,
          -4.292023351257005,
          -3.6868744999220815,
          -2.4230980311936072,
          -4.611606489380638,
          -2.9451698151286747,
          -4.116928587217637,
          -2.254590341522387,
          -2.382812400965278,
          -2.97892329990125,
          -7,
          -4.293296245148464,
          -3.126249510323941,
          -4.115643789669941,
          -2.401257981304848,
          -3.727470088712329,
          -3.898439945099348,
          -3.147196411326264,
          -2.450451035316793,
          -3.6552451804139605,
          -2.459635313866705,
          -2.986575127017741,
          -4.596915827751136,
          -2.693394702830789,
          -3.5178444351168308,
          -3.4521589665758357,
          -4.129453564839296,
          -3.923803369532193,
          -7,
          -2.989387516858672,
          -4.592742859342505,
          -3.8154891981186587,
          -2.0441470547649265,
          -1.7556541929945808,
          -2.361666496845486,
          -4.290624405760645,
          -3.09758330530031,
          -3.975459381886746,
          -3.6456078256355733,
          -4.618299182370601,
          -7,
          -4.604604005662973,
          -3.0264176202165225,
          -7,
          -3.8948364609939157,
          -3.093846008089887,
          -7,
          -2.686485634707038,
          -3.751499055612203,
          -3.4593817164331497,
          -4.300236684117335,
          -3.643288139836406,
          -4.607315597669501,
          -2.408702390713377,
          -2.357878345009401,
          -4.59250984790068,
          -4.14701639612984,
          -4.144937265058756,
          -4.307848892509035,
          -2.0866368015294006,
          -3.2345062796618747,
          -3.8948364609939157,
          -2.746709209859118,
          -4.308980368720045,
          -1.9902478944627011,
          -3.6178282776177513,
          -3.083993764334864,
          -3.2616304843292867,
          -4.597442870900575,
          -3.278924999158791,
          -7,
          -2.876765648822366,
          -3.554026370894214,
          -7,
          -3.4764258270580113,
          -3.347492641973748,
          -7,
          -3.6513458672100474,
          -2.101315478526709,
          -4.329956915106239,
          -3.213464629039556,
          -2.936040396947672,
          -3.5388563856111075,
          -2.9269654172207527,
          -4.301257940436712,
          -2.598013466981827,
          -2.694252093463937,
          -3.824949798930412,
          -3.2030981895457566,
          -7,
          -4.591665521925527,
          -2.3892159144927385,
          -2.944839537394521,
          -4.298405457024487,
          -3.413058655343539,
          -1.8924205549625608,
          -3.018006626523271,
          -2.4502573438100157,
          -2.4689579482875295,
          -2.7889053791447824,
          -4.616989850789326,
          -3.517591730711908,
          -4.30525460989783,
          -4.290646646477703,
          -4.332549544296137,
          -3.85766412251388,
          -3.1751317569102886,
          -7,
          -4.305351369446623,
          -7,
          -2.2411935559760434,
          -7,
          -3.8965813275057326,
          -7,
          -7,
          -4.593208507509241,
          -4.29154643969221,
          -4.593806465329934,
          -2.155336037465062,
          -3.2069013989399444,
          -3.7634386903396253,
          -4.596278129409967,
          -3.898374094681203,
          -7,
          -4.595562353005851,
          -7,
          -7,
          -4.613397790379954,
          -4.604830619429156,
          -3.4099246739401154,
          -3.102600295396306,
          -3.5205137645101057,
          -4.597881585468683,
          -7,
          -3.2613663215042505,
          -4.295710008808256,
          -7,
          -2.481261868548562,
          -7,
          -7,
          -4.020796188104522,
          -3.0711874222402025,
          -4.614485917334474,
          -7,
          -7,
          -7,
          -7,
          -3.0899151994635075,
          -4.60471193172762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.769894035812169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.528231814320313,
          -7,
          -7,
          -7,
          -3.91551122358829,
          -3.572104523139882,
          -4.776083436639779,
          -7,
          -7,
          -7,
          -7,
          -2.7443962190392654,
          -4.343178747552447,
          -7,
          -3.653364145691976,
          -2.765523178137077,
          -7,
          -4.77205018781323,
          -7,
          -7,
          -7,
          -7,
          -3.2274680884279663,
          -4.775093209551623,
          -7,
          -7,
          -7,
          -4.4801004068772015,
          -7,
          -7,
          -7,
          -3.3513811045321633,
          -4.471291711058939,
          -3.5086224292083905,
          -4.77108014034136,
          -7,
          -4.481163042077974,
          -7,
          -3.3503587936139123,
          -7,
          -7,
          -7,
          -7,
          -4.177233398034179,
          -2.8376853012019145,
          -4.087667861923968,
          -4.8223969393404404,
          -4.810440875574879,
          -7,
          -7,
          -4.786545580235125,
          -7,
          -4.775085920101874,
          -7,
          -7,
          -7,
          -4.793133558969125,
          -3.4059085667542925,
          -4.469858819035844,
          -7,
          -4.483815437748665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.278284880374089,
          -7,
          -4.783031257624278,
          -7,
          -7,
          -4.518059667235619,
          -7,
          -4.4710935923795985,
          -7,
          -7,
          -4.773888791889383,
          -4.4880004497062025,
          -7,
          -7,
          -3.8245452395328265,
          -3.394550649707553,
          -4.490400981300528,
          -7,
          -7,
          -7,
          -7,
          -4.77956041878952,
          -7,
          -7,
          -7,
          -4.383366482755039,
          -7,
          -7,
          -7,
          -3.789824197473217,
          -7,
          -4.306746608077712,
          -7,
          -4.098096620171149,
          -3.873891041234412,
          -7,
          -7,
          -7,
          -7,
          -2.8191384047482697,
          -4.297694869693073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3880419647864235,
          -3.0695888195712855,
          -7,
          -4.33799140347015,
          -7,
          -3.276442424245893,
          -7,
          -4.184634656586273,
          -4.318383369999072,
          -7,
          -7,
          -3.7177814197394,
          -7,
          -7,
          -7,
          -2.865957174295529,
          -7,
          -7,
          -4.769775984917649,
          -4.469615861200391,
          -7,
          -3.7601773696361365,
          -4.503565989865016,
          -4.384239881687907,
          -4.4999481305756515,
          -7,
          -3.078344753114982,
          -4.769982552929515,
          -7,
          -7,
          -3.4632831558237545,
          -4.211561022536963,
          -7,
          -7,
          -7,
          -3.89026728376573,
          -7,
          -7,
          -7,
          -7,
          -4.770697404733859,
          -7,
          -7,
          -4.784652947530634,
          -7,
          -7,
          -4.819208214624241,
          -7,
          -7,
          -2.780265045023653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9912847249485184,
          -7,
          -3.5879577806232366,
          -7,
          -4.5028366386210035,
          -2.5037876063802758,
          -3.8204204130984976,
          -3.3529607929853014,
          -4.095148421072856,
          -3.874307833128039,
          -4.306503658116052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.828298908403947,
          -4.78090749382419,
          -4.905202028662319,
          -7,
          -3.1930812904776325,
          -7,
          -3.6929553268990984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3069180203772985,
          -2.8286921130318965,
          -3.1256405740546764,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.772549064918772,
          -7,
          -7,
          -3.03005754376382,
          -4.492913970848403,
          -3.3002995256899204,
          -2.62842688787771,
          -7,
          -7,
          -4.773091310242317,
          -4.299056717862567,
          -7,
          -7,
          -4.782028069027038,
          -4.4778227972045705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.769465948560255,
          -7,
          -7,
          -2.3021789633202125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.800833882291923,
          -4.780115602859192,
          -4.508199664444567,
          -3.3350431336731856,
          -3.9342964068194055,
          -7,
          -7,
          -3.3178160068112277,
          -3.878234468675044,
          -2.7920671872686325,
          -7,
          -2.452137061828049,
          -7,
          -7,
          -7,
          -4.5328562543112625,
          -4.805507654575986,
          -3.829413136929344,
          -4.201349321982644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4813136109793765,
          -3.4270574456574274,
          -4.776512319240097,
          -4.786225977095757,
          -4.079130575402225,
          -2.484701328997382,
          -7,
          -7,
          -3.126439324237566,
          -7,
          -7,
          -7,
          -4.002007583780295,
          -2.952831174381129,
          -3.6132567330092735,
          -7,
          -7,
          -7,
          -3.937990472741036,
          -2.116939526080235,
          -4.040114242745428,
          -7,
          -7,
          -7,
          -3.602439832843189,
          -4.017930232863559,
          -7,
          -7,
          -3.939911295589801,
          -7,
          -4.781712301989469,
          -7,
          -7,
          -7,
          -7,
          -4.495211204457828,
          -4.7739472650096575,
          -3.433553165849193,
          -3.8038981197297295,
          -2.526882454647063,
          -7,
          -4.509142012692762,
          -3.292103876106375,
          -4.109571797908949,
          -7,
          -7,
          -7,
          -4.7912343651243665,
          -4.3322498880444344,
          -4.803846167521772,
          -7,
          -7,
          -7,
          -4.307367656038532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.109679769252334,
          -7,
          -7,
          -1.9847812973414505,
          -7,
          -2.8480251906844667,
          -3.1427300374717926,
          -2.9067429323371465,
          -2.3748658643818557,
          -2.979383403046637,
          -2.938095122768641,
          -1.9287640656971603,
          -2.796856884709436,
          -2.9129767924100274,
          -2.083787164527067,
          -2.556136888509495,
          -2.5758631694680902,
          -2.1433481265648875,
          -2.5079819551578586,
          -2.630498155568272,
          -1.9130691095581158,
          -3.1488921215438626,
          -2.258915580298483,
          -4.015122141957127,
          -2.2118507979482045,
          -2.5587877893415656,
          -2.1103035006659145,
          -3.0382532300273724,
          -2.7541899247820285,
          -2.60967842177663,
          -2.9635635413114008,
          -3.3349417709129194,
          -2.1623104462387976,
          -2.819334514439521,
          -2.793223222015908,
          -2.8268651077942386,
          -2.76035179171932,
          -3.5760820785097818,
          -3.055002033070937,
          -3.0858981309770277,
          -2.5685340807475896,
          -2.5303242321888737,
          -2.7950488733397787,
          -7,
          -2.671811852902725,
          -2.4979057429957394,
          -3.372504332000748,
          -3.65240521701543,
          -3.321238576631269,
          -4.782716219408081,
          -2.897428686237337,
          -4.53283078772188,
          -4.3117044263500945,
          -2.892049044935811,
          -2.7949496312842714,
          -3.034538424505647,
          -7,
          -2.997868756155348,
          -7,
          -7,
          -4.2081523577244075,
          -3.290066426642698,
          -3.845139399424021,
          -7,
          -2.9894331308265776,
          -2.5593139772691327,
          -2.3555301048129142,
          -7,
          -4.801129187579704,
          -7,
          -2.432572144278123,
          -4.331663445310756,
          -2.8676151293759182,
          -2.6691184423266474,
          -3.670112435506491,
          -7,
          -2.78093812928399,
          -2.9529809709830217,
          -2.8413924052352826,
          -3.648826818285013,
          -3.572389430331052,
          -3.348566690474671,
          -2.1739519516906713,
          -3.4724590190584643,
          -7,
          -2.7161375485264965,
          -2.4048572591252984,
          -4.491333673931563,
          -2.5044817491532436,
          -7,
          -4.19230953183702,
          -2.7172300777638196,
          -3.3013083003719372,
          -4.293738117783524,
          -7,
          -4.769310847343161,
          -7,
          -3.1303611463227843,
          -2.8119620643588155,
          -4.782866607064193,
          -3.298552157043863,
          -7,
          -3.825865887784005,
          -2.5187259778241775,
          -3.742460890226512,
          -4.780965029608317,
          -7,
          -3.314159553257814,
          -7,
          -2.6008899920160955,
          -3.8926440828856643,
          -4.77340608801514,
          -4.179810222878796,
          -2.8546824696374555,
          -4.48050997294196,
          -4.021106568432121,
          -4.298081281898712,
          -4.073989470694238,
          -3.2767590718057047,
          -4.773252387838773,
          -4.4730780298442365,
          -7,
          -4.790482205963791,
          -7,
          -2.9436149885817446,
          -4.469195886353333,
          -7,
          -2.413263990604278,
          -2.048847991458375,
          -2.4027332051731176,
          -7,
          -4.309204179670408,
          -4.224150912195789,
          -4.172989479689795,
          -4.78738962135211,
          -7,
          -7,
          -3.767840603286548,
          -4.769960425341503,
          -4.7710065635306425,
          -4.084804981876372,
          -7,
          -3.092328393324933,
          -7,
          -4.176850610160418,
          -7,
          -4.773545103223439,
          -4.7799786753300575,
          -3.2091254812396053,
          -2.691605984637163,
          -7,
          -4.490337794344103,
          -4.789968302089217,
          -3.6669281777811387,
          -2.448265378036188,
          -3.9946616941251554,
          -7,
          -3.2644373865025944,
          -4.7818056206940485,
          -2.338376924058498,
          -7,
          -3.4139699717480614,
          -4.477048866273474,
          -4.472324865002763,
          -3.2968379697311563,
          -7,
          -3.3765364047914934,
          -4.471122948998581,
          -4.480911977846637,
          -3.8567020439662394,
          -3.7770423850498562,
          -7,
          -4.5091285649614745,
          -2.7041505168397992,
          -4.318890768083098,
          -4.482029890469332,
          -3.3898634973678488,
          -4.3102187625373105,
          -4.105925546289804,
          -7,
          -2.84293686639324,
          -3.336335493917067,
          -4.777223765819916,
          -4.1740161724638165,
          -7,
          -7,
          -3.131169383089324,
          -3.114369618804565,
          -7,
          -3.83248762323924,
          -2.071589960934999,
          -4.082677680648112,
          -2.7404284867039603,
          -2.805440337421175,
          -3.798919838387624,
          -4.786502980070113,
          -4.47203934482198,
          -4.779300608532864,
          -7,
          -4.496770562043202,
          -4.79940258709127,
          -3.2819419334408244,
          -7,
          -4.779365575669822,
          -7,
          -2.8856700339963552,
          -4.473267942835296,
          -4.295017011881458,
          -7,
          -4.769687425683675,
          -7,
          -4.770144787468645,
          -4.77094769310584,
          -3.0543711077640543,
          -4.301514687266299,
          -4.78088591593984,
          -7,
          -4.171258274675775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.778310462506569,
          -3.5300349535029074,
          -3.0583378875755454,
          -4.798567783267658,
          -4.472617511351939,
          -7,
          -4.489909284707066,
          -7,
          -7,
          -2.8452482721624146,
          -7,
          -7,
          -4.489480351850566,
          -3.0775317725206657,
          -4.784809794314824,
          -7,
          -7,
          -7,
          -7,
          -3.081838720394356,
          -7,
          -4.29777509673101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8993636396151685,
          -4.363499161478234,
          -7,
          -7,
          -4.225348056287909,
          -3.755824058025565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4848580937261096,
          -7,
          -7,
          -7,
          -3.2376616015703434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3692682018262334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30513631894364,
          -7,
          -3.3876706252875857,
          -7,
          -7,
          -7,
          -7,
          -3.745933158459443,
          -7,
          -7,
          -3.8470788620657155,
          -7,
          -7,
          -3.6526286753910537,
          -7,
          -7,
          -4.382575319649486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.549908278205137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4638097498438154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276783384700269,
          -7,
          -7,
          -7,
          -7,
          -3.842428939473374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.337359412001355,
          -7,
          -4.505543379461151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.143992683660012,
          -7,
          -7,
          -7,
          -7,
          -4.147851449216902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8169832762228597,
          -3.3679554578097592,
          -7,
          -7,
          -7,
          -4.112124420332844,
          -7,
          -3.838723190031372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3597195707231196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.356790460351716,
          -7,
          -3.9290270323599734,
          -7,
          -7,
          -7,
          -4.466689715873475,
          -7,
          -7,
          -7,
          -7,
          -4.244895333691861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6336761746852697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6135599497377284,
          -7,
          -4.364776057277425,
          -3.8424541067345053,
          -7,
          -4.3553940446231705,
          -4.337559087628736,
          -3.9869507878585164,
          -7,
          -3.9895610468853566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.600864036309839,
          -7,
          -4.473939276599178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7635563374978425,
          -3.796383506975522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.416057729263038,
          -7,
          -7,
          -3.6745164870743796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.608163833374166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.294113356362043,
          -7,
          -7,
          -3.9841108210596157,
          -7,
          -3.8716980023521868,
          -7,
          -2.4936441152582307,
          -7,
          -7,
          -7,
          -7,
          -4.369234416606825,
          -7,
          -4.36359317885827,
          -4.0935792634395645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.42130771600335,
          -7,
          -7,
          -7,
          -2.8024273662401074,
          -4.4101189683595505,
          -7,
          -4.093550086590404,
          -7,
          -7,
          -7,
          -7,
          -4.430220226321072,
          -4.3241795297179,
          -7,
          -7,
          -7,
          -7,
          -2.690355650541242,
          -3.92620520709792,
          -7,
          -7,
          -7,
          -4.071587470514976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.359778584139239,
          -4.276967038147092,
          -7,
          -4.343487370238302,
          -7,
          -3.340342530579106,
          -7,
          -3.0440275882460224,
          -4.277173555485786,
          -7,
          -3.65583181270073,
          -7,
          -7,
          -7,
          -7,
          -4.329092647195331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.696784355456685,
          -7,
          -7,
          -2.783356110842911,
          -2.8480251906844667,
          -7,
          -3.645206050860345,
          -2.3286698819385094,
          -3.3623882165886987,
          -2.957384918427862,
          -1.481944569338266,
          -2.8776499600498724,
          -3.591922802571349,
          -3.7372721765355434,
          -2.215017272177907,
          -2.431700296126159,
          -2.629774074295825,
          -3.4469796237545136,
          -2.753205469435666,
          -1.7055071799719737,
          -3.5293362299185205,
          -3.3103594614375855,
          -3.54282542695918,
          -3.4898379926764123,
          -2.4442583789957952,
          -3.086620803576045,
          -2.0160115495985877,
          -3.0538037967190252,
          -2.347145941412144,
          -2.2034408668304377,
          -2.7344981587649517,
          -3.34865094891718,
          -3.074827688737842,
          -3.2532437471636304,
          -2.3435894368137173,
          -2.737550989984645,
          -3.046781218014158,
          -3.819763220818885,
          -2.8961634771431384,
          -2.8988965076723905,
          -3.363630780112138,
          -1.6525021007993246,
          -3.9926345078943504,
          -7,
          -3.2305228661556145,
          -3.696608755737047,
          -4.106700732362354,
          -3.8732236935293995,
          -3.145462789979763,
          -7,
          -3.3804608434865733,
          -4.44269921263019,
          -7,
          -4.180937863983749,
          -2.8598696403920845,
          -4.216165902285993,
          -7,
          -4.053491403339438,
          -4.3893787479525095,
          -7,
          -3.6829569263012085,
          -3.7146859363429696,
          -7,
          -7,
          -3.4205782962332605,
          -3.4049499154557576,
          -2.398040618620613,
          -7,
          -7,
          -7,
          -4.2558270827032345,
          -3.90100399089971,
          -3.8665731016850873,
          -4.173390251465195,
          -4.235339033014061,
          -7,
          -4.288517501797074,
          -3.6982359091337726,
          -3.940665872475829,
          -7,
          -4.057552001054533,
          -4.384980295651304,
          -4.141602052139997,
          -3.8414041670516013,
          -7,
          -4.0697790608815145,
          -3.571773065864809,
          -7,
          -2.675992379029217,
          -7,
          -7,
          -4.164561029265557,
          -3.6722364404445473,
          -7,
          -7,
          -7,
          -7,
          -3.0396218207214076,
          -3.294466226161593,
          -7,
          -4.219440435989858,
          -7,
          -4.296379953771385,
          -7,
          -7,
          -7,
          -7,
          -4.370383540607654,
          -7,
          -3.729968894052408,
          -4.342284474225749,
          -7,
          -7,
          -3.348499570283838,
          -7,
          -4.352143912441583,
          -4.280987889004646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.457329219483519,
          -3.2439287022907277,
          -2.394418534057963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.950462218905598,
          -7,
          -7,
          -7,
          -7,
          -3.401113213955382,
          -7,
          -4.292499739685581,
          -7,
          -7,
          -7,
          -4.139233459140505,
          -2.2127647225826825,
          -7,
          -7,
          -7,
          -3.344283085882674,
          -3.6581613625766054,
          -4.273626206272959,
          -7,
          -7,
          -7,
          -2.556340652472161,
          -7,
          -3.493159190231999,
          -7,
          -7,
          -4.396722278503773,
          -7,
          -3.677570455852376,
          -4.271353622102485,
          -7,
          -7,
          -4.287017501322102,
          -7,
          -7,
          -3.828043743777702,
          -7,
          -7,
          -7,
          -4.317791816053072,
          -7,
          -7,
          -4.457154942486584,
          -3.749388431581154,
          -7,
          -7,
          -7,
          -7,
          -3.0533345888650136,
          -2.838723190031372,
          -7,
          -3.4708932853456576,
          -4.41258653335607,
          -7,
          -7,
          -3.520491720719448,
          -7,
          -7,
          -7,
          -7,
          -4.262996581601494,
          -7,
          -7,
          -3.3561788855533754,
          -7,
          -7,
          -7,
          -4.028479748429411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.267476801134049,
          -3.6057358938767465,
          -4.29161301693988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.186122525982875,
          -2.9929767082011125,
          -4.350015298234692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4628646357053148,
          -7,
          -7,
          -7,
          -2.932008441562367,
          -4.310204588898006,
          -7,
          -7,
          -7,
          -7,
          -2.9510848355357298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.642662331442035,
          -4.368865735415223,
          -7,
          -7,
          -7,
          -3.6804261708581456,
          -3.2163638637641165,
          -7,
          -7,
          -7,
          -7,
          -3.5979144712025284,
          -3.198313363563387,
          -7,
          -7,
          -3.4318460456987254,
          -3.724517013234964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.584952815690992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.373959669875467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.382305275193315,
          -7,
          -7,
          -3.986592606822211,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.898985570532309,
          -7,
          -7,
          -3.778078861937455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659453466445408,
          -7,
          -3.7591388162811663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.588943642740015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7134065321676912,
          -3.1894226316376413,
          -3.238297067875394,
          -3.44504346145018,
          -7,
          -7,
          -7,
          -2.765420173578722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.808919584566607,
          -7,
          -7,
          -7,
          -7,
          -3.959978964701999,
          -7,
          -7,
          -7,
          -7,
          -3.4013378675031465,
          -7,
          -7,
          -7,
          -7,
          -3.8900295861634167,
          -7,
          -4.264321877763006,
          -2.966408908682189,
          -7,
          -4.016991578206205,
          -7,
          -4.7079532081514905,
          -7,
          -3.796782411701308,
          -7,
          -7,
          -7,
          -4.36945706512637,
          -7,
          -7,
          -7,
          -3.029546100423748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4520932490177314,
          -7,
          -3.646746712800757,
          -2.6386993909768344,
          -7,
          -3.264660441423504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3964608915070755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5597869682005565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.471365065418019,
          -7,
          -4.353088764833949,
          -7,
          -3.9408649759667216,
          -3.160859669406353,
          -3.3616334139100563,
          -2.835161911071816,
          -3.1650661783897562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.07137210569682,
          -7,
          -3.6624272644527265,
          -7,
          -7,
          -3.6236627073562047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9858919737062264,
          -3.4229999772716164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0234395345803486,
          -7,
          -3.9297253783780044,
          -3.030229102479042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.937274240502207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.646893624167745,
          -7,
          -7,
          -7,
          -7,
          -3.978545700462739,
          -2.9996958874108395,
          -2.873984533887229,
          -7,
          -7,
          -3.9054360671891235,
          -3.7418603940652635,
          -2.591551523290097,
          -7,
          -3.7850132938291856,
          -7,
          -7,
          -7,
          -7,
          -3.952598734529773,
          -3.498103697638082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.712733859069952,
          -7,
          -7,
          -3.1736596536320567,
          -7,
          -7,
          -7,
          -3.212939250049553,
          -7,
          -7,
          -3.880356199419236,
          -7,
          -7,
          -7,
          -7,
          -3.0546130545568877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3516858977234523,
          -4.036668810300097,
          -7,
          -7,
          -7,
          -3.9614685553507862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.952211058108669,
          -4.877451976617107,
          -3.9676883504533125,
          -3.8437597778937755,
          -7,
          -3.9848872010643275,
          -4.333825983402247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9795938958489305,
          -7,
          -7,
          -7,
          -7,
          -3.7745899502647946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5935075893317654,
          -7,
          -7,
          -2.923172880290525,
          -3.1427300374717926,
          -3.645206050860345,
          -7,
          -4.2636360685881085,
          -3.1530281714762953,
          -3.040760524228699,
          -3.348325362657893,
          -2.6724991858354983,
          -0.45695157034049433,
          -3.091373812473584,
          -3.5944293846472695,
          -3.424048946464159,
          -3.5209397111548792,
          -2.591379655630742,
          -3.352533321427612,
          -3.2413918876652534,
          -2.795730019248443,
          -3.110252917353403,
          -3.2653802984464786,
          -7,
          -3.554962935849245,
          -3.870033055380932,
          -2.9394612034997856,
          -3.208441356438567,
          -7,
          -3.2580960504481724,
          -3.231955883590876,
          -7,
          -2.8017639306855906,
          -3.296957546032856,
          -3.8624125229459523,
          -4.088153814644183,
          -3.8023403545380106,
          -3.4295100408131383,
          -3.714720839899443,
          -3.5633624094866074,
          -3.900353471382553,
          -3.3693550320570327,
          -2.7902851640332416,
          -7,
          -3.4455696105393483,
          -3.4552184030070845,
          -4.046768219660838,
          -2.9978230807457256,
          -2.8484706351194125,
          -3.4546162237926987,
          -2.886957591040489,
          -7,
          -7,
          -3.8902533051545345,
          -3.580578313675271,
          -3.3881604302759483,
          -7,
          -3.789665306746111,
          -3.5260375792311995,
          -7,
          -3.985336641735613,
          -7,
          -7,
          -7,
          -4.5294859637721405,
          -3.2135149609500795,
          -3.909919232626045,
          -7,
          -7,
          -7,
          -3.2389145669888704,
          -7,
          -4.332007318122397,
          -2.93075098801414,
          -7,
          -7,
          -3.9107488776877,
          -3.068685255866622,
          -3.0065950651517146,
          -3.571475903681944,
          -3.451742587325767,
          -3.3902283624691303,
          -3.282864400052556,
          -3.0556840649194132,
          -7,
          -3.0787905863221194,
          -3.281594492277713,
          -7,
          -3.8627486669658766,
          -7,
          -3.3891660843645326,
          -3.412677912040056,
          -4.365319475896217,
          -7,
          -7,
          -7,
          -7,
          -3.1563976972825034,
          -2.5232818316095447,
          -7,
          -3.670013796172048,
          -7,
          -3.7285161047597666,
          -2.9733673510945082,
          -2.767897616018091,
          -7,
          -7,
          -3.654465333520146,
          -7,
          -2.938677698315028,
          -7,
          -7,
          -7,
          -2.969804056523086,
          -3.4420876295507603,
          -3.60535892548885,
          -3.066046246604769,
          -3.338257230246256,
          -3.4974364901339174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9604390644756187,
          -7,
          -7,
          -2.786264544872704,
          -2.6780919194391033,
          -2.5945879160333667,
          -7,
          -3.793021659845983,
          -4.0824981385057795,
          -7,
          -7,
          -7,
          -7,
          -3.3729733396670385,
          -7,
          -7,
          -3.7675268994083817,
          -7,
          -3.0705128226472103,
          -7,
          -3.236537261488694,
          -7,
          -7,
          -7,
          -2.8158432906632664,
          -2.802636918082811,
          -7,
          -7,
          -7,
          -3.737669627356642,
          -2.3399669095088056,
          -7,
          -7,
          -3.3544541997333255,
          -7,
          -3.014724717747699,
          -7,
          -2.0605779357471343,
          -7,
          -3.6442415858437287,
          -7,
          -7,
          -3.4944792655103964,
          -3.6277753752293034,
          -7,
          -3.9906495883188544,
          -3.3916407034923877,
          -7,
          -3.984797257089293,
          -2.713169514894598,
          -7,
          -7,
          -4.373886231789153,
          -3.8029104894190398,
          -7,
          -7,
          -2.809100386742738,
          -3.2054750367408906,
          -7,
          -7,
          -7,
          -7,
          -3.943412067973837,
          -2.9545870508948435,
          -7,
          -3.1953460583484197,
          -2.6401188376970386,
          -7,
          -3.022549658778618,
          -3.507563546199266,
          -3.4269447971948406,
          -3.7944880466591697,
          -7,
          -3.7180031682670176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2205695307771833,
          -7,
          -7,
          -7,
          -7,
          -3.604657972047871,
          -7,
          -7,
          -2.7099391015969876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.21133416373255,
          -3.06126394230025,
          -7,
          -3.648164778574001,
          -7,
          -7,
          -7,
          -7,
          -3.64018319192134,
          -7,
          -7,
          -7,
          -2.883590466204705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9965116721541785,
          -7,
          -7,
          -7,
          -4.712616034083344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.169999038533825,
          -4.2714311165678955,
          -7,
          -7,
          -3.3314730127606,
          -3.4118333045591585,
          -4.717437485607079,
          -7,
          -7,
          -7,
          -4.710574276760383,
          -2.723077980324159,
          -4.290568798984483,
          -7,
          -4.443286462201648,
          -2.7399055130335364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.713423335653093,
          -3.7933223233860316,
          -7,
          -7,
          -7,
          -7,
          -4.723225738862373,
          -4.712237094261041,
          -7,
          -7,
          -7,
          -7,
          -2.9953457062877002,
          -7,
          -7,
          -4.724439723397075,
          -7,
          -4.742308700116073,
          -7,
          -7,
          -4.255698548052355,
          -7,
          -4.721159097082167,
          -2.7136294231554277,
          -4.252407994907512,
          -3.991831302545872,
          -3.978317496746751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7368982408204765,
          -4.052996078945087,
          -7,
          -7,
          -4.250314262316336,
          -7,
          -4.273147942319154,
          -7,
          -4.711224968619355,
          -7,
          -2.889781425369628,
          -7,
          -7,
          -7,
          -7,
          -4.16423385469261,
          -4.723677278076476,
          -7,
          -7,
          -4.127404487771786,
          -4.714924620661709,
          -3.732096085685356,
          -4.434281408136301,
          -4.721761167105553,
          -7,
          -2.9949205202944613,
          -4.73497575120201,
          -4.0094650604236,
          -4.710811004797183,
          -7,
          -7,
          -4.244260623072277,
          -4.425493462722258,
          -4.26085019218336,
          -4.711874687022362,
          -3.6665179805548807,
          -7,
          -7,
          -7,
          -3.934952707817858,
          -7,
          -7,
          -7,
          -4.741435255767935,
          -3.426168384282751,
          -7,
          -7,
          -7,
          -4.417571328690727,
          -3.834293512442696,
          -7,
          -7,
          -4.724505247609918,
          -4.735367320687716,
          -7,
          -7,
          -3.738707905824672,
          -3.2187132100622513,
          -4.714203980582727,
          -7,
          -7,
          -3.7272797651098264,
          -4.416465756013914,
          -4.428564014832206,
          -4.739627715444244,
          -7,
          -7,
          -3.849953507030731,
          -4.731096984750186,
          -7,
          -7,
          -3.694148730583769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.312149136258353,
          -3.272367705306956,
          -3.772268350314977,
          -4.046799415055245,
          -7,
          -4.465650484743692,
          -7,
          -7,
          -7,
          -3.060970500071584,
          -4.061158325937399,
          -7,
          -7,
          -7,
          -3.251191937135463,
          -7,
          -7,
          -7,
          -4.11688987733376,
          -7,
          -4.719140619695215,
          -7,
          -4.727232098507561,
          -7,
          -7,
          -4.766457464116555,
          -7,
          -7,
          -3.148695049166025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.869422415299701,
          -7,
          -3.6404131072346617,
          -7,
          -4.749109923611645,
          -2.920889075099427,
          -4.113834765112396,
          -4.44421660506962,
          -4.260929583529925,
          -7,
          -4.726091190633324,
          -7,
          -7,
          -4.7178119168765855,
          -3.3579679726998637,
          -7,
          -7,
          -4.7442147248141655,
          -7,
          -4.475663925814176,
          -7,
          -4.084200799448233,
          -7,
          -3.952349553703281,
          -7,
          -4.752716670115188,
          -7,
          -7,
          -7,
          -7,
          -4.751217497559819,
          -7,
          -7,
          -4.425517917846864,
          -2.979376888593836,
          -3.5078408854303,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6246945312720813,
          -7,
          -3.553424497508192,
          -2.886359484642336,
          -7,
          -7,
          -7,
          -4.717578975363936,
          -7,
          -7,
          -4.724234896490527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5963702096135868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.714556070480403,
          -7,
          -7,
          -7,
          -4.421003066384153,
          -4.454143327174591,
          -3.7173905643876477,
          -7,
          -7,
          -7,
          -3.951288937277672,
          -4.422499557616591,
          -3.2302751688326863,
          -7,
          -3.040474730298592,
          -7,
          -7,
          -7,
          -4.783009785003973,
          -3.905765050916453,
          -3.999869692108268,
          -4.447576613522922,
          -4.761687331986636,
          -4.719596424038301,
          -4.714941365513727,
          -7,
          -7,
          -4.429138344767089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.423565331599704,
          -3.995115777910966,
          -7,
          -4.72902702519179,
          -7,
          -2.955505606253773,
          -3.923214403267866,
          -7,
          -3.669899269076556,
          -7,
          -7,
          -7,
          -3.39963252293413,
          -3.0361786912074473,
          -3.7784406835712327,
          -7,
          -7,
          -7,
          -4.725544122486353,
          -2.649097674518334,
          -4.0664377464539925,
          -7,
          -7,
          -7,
          -3.9741507821112436,
          -4.740331103292411,
          -7,
          -7,
          -4.426690147338194,
          -7,
          -7,
          -7,
          -4.144947633670373,
          -4.413944857617042,
          -7,
          -4.041416373302113,
          -7,
          -3.0631704352090847,
          -4.0982686749242,
          -2.6381556106856254,
          -4.715066931328898,
          -3.3756940896973213,
          -3.4917705786758737,
          -4.055424205129799,
          -7,
          -7,
          -7,
          -3.693183141082376,
          -4.278212300455029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.74245017435857,
          -7,
          -3.235801898991499,
          -7,
          -7,
          -3.162337921592594,
          -2.9067429323371465,
          -2.3286698819385094,
          -4.2636360685881085,
          -7,
          -3.078784128724828,
          -2.9458563614043456,
          -1.87861512959996,
          -2.8562653278979666,
          -3.382197210377454,
          -4.261683078359308,
          -3.187851649239775,
          -1.326839984927838,
          -1.1523120753493836,
          -2.851131100146211,
          -3.3809585499884216,
          -1.7169891311275722,
          -3.07112912036772,
          -1.720617004776128,
          -3.229748863541315,
          -3.305359332235412,
          -1.91761130935738,
          -2.682690235626249,
          -2.932171297266403,
          -2.8830522639851215,
          -2.933414971724668,
          -1.4940749908103732,
          -2.0852872431088505,
          -3.155967607405664,
          -2.826473816129836,
          -2.817572046544905,
          -0.7221620522667832,
          -2.305894630568496,
          -2.716890229017429,
          -4.120285951147618,
          -2.764093069469182,
          -2.9523452929588734,
          -3.1821456867523463,
          -2.832377208540889,
          -3.255546809307727,
          -7,
          -3.0156807285576472,
          -2.950627740567455,
          -4.068341734353948,
          -4.26609051627518,
          -2.9940518573330643,
          -4.122911830365234,
          -2.7842439615296883,
          -7,
          -7,
          -3.33799140347015,
          -2.758203517991074,
          -2.8503641084073252,
          -7,
          -3.614286511004289,
          -4.060403175459535,
          -7,
          -3.610005795612442,
          -4.269740538936799,
          -4.744128624384017,
          -7,
          -3.0967435623888013,
          -2.717038465918362,
          -2.589937898460937,
          -7,
          -4.745987724433172,
          -4.712969413188024,
          -3.1403200681151864,
          -4.754699910729208,
          -3.479918656960047,
          -3.253234127833428,
          -4.3511518573324075,
          -7,
          -3.165486586709725,
          -3.6872334601981325,
          -3.356626730102122,
          -4.73917663191073,
          -3.713348361235772,
          -7,
          -3.3425464605295607,
          -3.869946063866585,
          -7,
          -3.356245348290053,
          -3.1535931582676557,
          -4.736037762378577,
          -3.251708184081412,
          -7,
          -3.738209577416493,
          -3.846846012948204,
          -4.547657811539415,
          -7,
          -7,
          -4.709676921319747,
          -7,
          -2.8073561540351877,
          -2.5200021753291946,
          -4.725192655638864,
          -3.6159369069513683,
          -4.711773496120913,
          -3.8189677843395207,
          -3.820846061385705,
          -3.8232785569516707,
          -7,
          -4.711967424641027,
          -4.149326902872513,
          -7,
          -3.3143499273401513,
          -4.73996769675951,
          -7,
          -4.423057365614425,
          -3.302080530992586,
          -4.7236936888413625,
          -3.965711137426735,
          -4.415415768843478,
          -4.0148899938902884,
          -4.152448881329991,
          -4.413148824714317,
          -4.238037735139086,
          -7,
          -4.432833051680936,
          -7,
          -4.485096501355642,
          -7,
          -7,
          -3.3119271590844845,
          -2.700126581535961,
          -1.9120606918208591,
          -7,
          -4.729172892126178,
          -3.929214503737394,
          -7,
          -4.253200650903366,
          -7,
          -7,
          -3.660378441183945,
          -7,
          -7,
          -7,
          -4.719505301432014,
          -3.6660185043849287,
          -4.412737668240323,
          -4.021685352215705,
          -7,
          -7,
          -4.420846541601197,
          -3.5263679996200654,
          -2.958518067079998,
          -4.23341073559512,
          -4.734903791882342,
          -4.7332935859176475,
          -3.7229628089424898,
          -3.198455916033554,
          -3.935540852652919,
          -7,
          -3.321147007783739,
          -4.723980776891,
          -2.6938067182423064,
          -4.4290898392125735,
          -3.6243217701134927,
          -7,
          -3.1226274960100633,
          -3.683234711411427,
          -7,
          -4.276913480580438,
          -4.71295259213018,
          -7,
          -3.9790093452191155,
          -3.417338810319398,
          -7,
          -4.1541347529656445,
          -3.144341815436957,
          -4.74020473550745,
          -7,
          -4.073321134413501,
          -4.730329986497589,
          -4.449277790579156,
          -7,
          -3.6755315934532256,
          -3.6643520357957935,
          -4.7187424355110865,
          -7,
          -7,
          -7,
          -3.1188136852015997,
          -4.127938555955461,
          -7,
          -2.6826247307581395,
          -3.219666695309768,
          -4.723865964443504,
          -3.472410684025669,
          -2.5170435584633832,
          -3.9653898702151222,
          -4.252189355651495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.330359131857053,
          -7,
          -7,
          -4.716929407273744,
          -3.556497774483958,
          -7,
          -4.71295259213018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4781486307637985,
          -4.243236537941076,
          -7,
          -7,
          -4.237166582685473,
          -7,
          -7,
          -7,
          -7,
          -4.72657236725846,
          -4.719985550860369,
          -3.6575611879403125,
          -4.2758025858486794,
          -7,
          -7,
          -7,
          -4.035381702958746,
          -7,
          -7,
          -2.492893110691421,
          -4.7151171474915134,
          -7,
          -4.7339271652304165,
          -4.427510452274621,
          -4.250257314731827,
          -7,
          -7,
          -4.7249881836146805,
          -4.710506616470952,
          -4.044022061416491,
          -7,
          -7,
          -7,
          -3.895790748250444,
          -7,
          -7,
          -7,
          -7,
          -3.913796197777649,
          -3.9084135241905464,
          -7,
          -3.8992366751075775,
          -2.408622637362252,
          -7,
          -7,
          -4.371104821931509,
          -3.4720359647608183,
          -3.362160803877537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9865770270305676,
          -4.008316226356639,
          -7,
          -2.8821290848472056,
          -2.7991063030442995,
          -7,
          -4.373426962185743,
          -7,
          -3.9200015118779157,
          -4.3848370882036845,
          -7,
          -2.8210117908556285,
          -7,
          -4.369698138949881,
          -7,
          -3.772834927239018,
          -3.918659293421823,
          -7,
          -7,
          -7,
          -7,
          -3.771973104217725,
          -3.792666404313239,
          -7,
          -7,
          -3.6201013378002385,
          -7,
          -3.6571355618564843,
          -7,
          -7,
          -7,
          -4.383869200802545,
          -3.2448600309376636,
          -1.948028373420702,
          -3.1298424755099536,
          -3.343464864143649,
          -3.0829348950147435,
          -7,
          -7,
          -7,
          -4.379541187752597,
          -4.380988656432105,
          -7,
          -7,
          -7,
          -3.9472212610378086,
          -3.5321341220629616,
          -3.8933548248246317,
          -7,
          -3.927626962444954,
          -7,
          -4.150434052241625,
          -4.4340256963562465,
          -4.369939079029239,
          -7,
          -3.570642996208087,
          -7,
          -3.0775063313523123,
          -7,
          -4.372599050995377,
          -3.336345355527641,
          -4.095744541366045,
          -7,
          -4.367001630838441,
          -3.129740759259531,
          -4.378016135540437,
          -2.9667282209873846,
          -7,
          -4.0916669575956846,
          -7,
          -2.6073260527437156,
          -3.818291890799996,
          -3.124399877288873,
          -7,
          -7,
          -7,
          -3.0690687538613783,
          -4.402862957968563,
          -3.9494875899465036,
          -7,
          -3.966000857628784,
          -7,
          -7,
          -4.367486376167786,
          -2.5427307342716947,
          -4.368510019595464,
          -3.9253120914996495,
          -7,
          -3.4791752673307053,
          -2.42112697303189,
          -7,
          -4.372525382451559,
          -3.781324455666988,
          -4.385999284138968,
          -3.039109632768245,
          -3.7782236267660965,
          -7,
          -7,
          -4.42125832787776,
          -3.956792520370495,
          -4.380699548382717,
          -3.73201444825009,
          -2.2777634421104618,
          -7,
          -4.474201690191393,
          -7,
          -4.043083496916936,
          -3.480276495763096,
          -3.9321184720291225,
          -3.651681745998869,
          -7,
          -7,
          -3.007493765990561,
          -3.6340908348262704,
          -7,
          -7,
          -2.749378056777176,
          -7,
          -7,
          -7,
          -7,
          -3.8903278525489418,
          -3.446459496594692,
          -3.848620117434134,
          -3.791573698842515,
          -3.1409320744245472,
          -7,
          -3.529059442918842,
          -4.067163882602843,
          -7,
          -4.083735471103647,
          -3.3301980946221676,
          -3.038826142126565,
          -7,
          -7,
          -7,
          -2.9472526967087433,
          -7,
          -7,
          -4.093123881218075,
          -7,
          -4.370031712709581,
          -3.6880102529917385,
          -4.390139938467622,
          -4.404320467221731,
          -7,
          -7,
          -4.005895165424469,
          -7,
          -4.375681899659375,
          -2.1341739419354075,
          -4.072948031792886,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.095232898972203,
          -4.373114381203458,
          -4.3216502030686,
          -7,
          -3.1698135987952667,
          -1.8258445260898921,
          -2.860555779914859,
          -2.3133914202099204,
          -2.9344984512435675,
          -2.880688571764092,
          -3.225343748174189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.388278863459639,
          -3.6961641031417938,
          -4.3507615005427285,
          -7,
          -3.0487925259244864,
          -7,
          -2.5848352855479284,
          -3.7741335955563224,
          -4.389219260025098,
          -7,
          -7,
          -3.7542259820035175,
          -4.098626422903375,
          -7,
          -3.3611781830641054,
          -1.4409806003003571,
          -1.554289756780903,
          -7,
          -4.367393197922476,
          -4.072010804365697,
          -4.067758781177132,
          -7,
          -7,
          -7,
          -7,
          -1.8942816190154128,
          -3.8241746648835893,
          -3.606835011219978,
          -2.796924307054616,
          -7,
          -7,
          -7,
          -3.6846479101829965,
          -7,
          -7,
          -7,
          -7,
          -4.389803762974429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4712237365671486,
          -7,
          -7,
          -7,
          -7,
          -3.6793188550209104,
          -7,
          -7,
          -4.077476919504343,
          -4.141136090120739,
          -3.79118168612114,
          -3.5066853872587527,
          -2.254213777108459,
          -2.8721562727482928,
          -4.0678516605123525,
          -7,
          -3.0818271912583772,
          -2.8902987339959663,
          -2.3725591487520004,
          -4.077858253926433,
          -2.940446167127642,
          -7,
          -7,
          -4.372819981678968,
          -4.5143219139450625,
          -3.7537055938395905,
          -3.390880782945212,
          -3.4936593893103947,
          -3.774779652677459,
          -4.3881012015705165,
          -7,
          -7,
          -7,
          -3.808346035740395,
          -4.10636090880675,
          -7,
          -4.372599050995377,
          -7,
          -7,
          -4.089180683445066,
          -4.36726271478424,
          -3.01778087917159,
          -2.472115362423072,
          -4.384514698685653,
          -3.9308981144101045,
          -3.241973165892279,
          -2.7023809792500697,
          -3.48654381988252,
          -7,
          -3.6249212039208625,
          -7,
          -4.379686151906955,
          -7,
          -2.994844849553398,
          -1.8552938792308002,
          -2.7423406445464393,
          -4.461963486124938,
          -7,
          -7,
          -3.9235721204036174,
          -2.2653463590536993,
          -2.7236860593523637,
          -7,
          -7,
          -7,
          -3.8534700560147392,
          -3.38971364302292,
          -7,
          -7,
          -7,
          -7,
          -3.3969138623652726,
          -7,
          -3.967828679330155,
          -7,
          -7,
          -2.8506945913152344,
          -3.5998285090380104,
          -3.800652937230222,
          -3.528062323092907,
          -3.28801204284906,
          -7,
          -2.8600383898071935,
          -3.284676781430669,
          -3.9825425823029432,
          -7,
          -7,
          -4.371123300581949,
          -3.164121434824116,
          -4.461513533243928,
          -7,
          -4.397314173908845,
          -7,
          -7,
          -2.8977816781075982,
          -7,
          -7,
          -7,
          -4.435732912484542,
          -7,
          -2.3432564443899238,
          -7,
          -7,
          -2.3787851013321077,
          -2.3748658643818557,
          -3.3623882165886987,
          -3.1530281714762953,
          -3.078784128724828,
          -7,
          -2.4003076860685573,
          -2.3526506225416637,
          -1.9645207229227155,
          -2.473311216228847,
          -2.996171029930056,
          -3.2014982759412427,
          -2.5557163181878044,
          -2.620089685524072,
          -2.0028711621238684,
          -2.8807741808299814,
          -2.167229322896238,
          -1.9753776890010881,
          -3.484675073321929,
          -3.1180842713160093,
          -3.9477113985684684,
          -2.5249336259746147,
          -2.608851014074864,
          -2.1835406129076365,
          -2.692112196581435,
          -4.043637309592571,
          -2.804126688578728,
          -2.947467918751744,
          -3.921911799387235,
          -1.8253256070739754,
          -2.8709888137605755,
          -2.8169100265677667,
          -2.8779370338525085,
          -3.0788757753354,
          -3.1630736369452643,
          -3.220830065905614,
          -3.159810595735413,
          -2.5766995945548037,
          -2.8900900929739746,
          -2.2937124685289176,
          -7,
          -2.9554815815548734,
          -1.9801848549570622,
          -2.542854032839964,
          -2.196349731859291,
          -2.7296092121055566,
          -4.098591815007755,
          -2.1229971975092385,
          -3.472610197596045,
          -4.414338145582368,
          -3.1342460459446086,
          -2.6939095886706075,
          -2.397698838735479,
          -7,
          -2.0121412609866733,
          -3.322972010036008,
          -7,
          -2.8825245379548803,
          -3.411423275153606,
          -4.439127342442847,
          -4.380934463330702,
          -2.372177459023404,
          -1.9042635560595857,
          -2.9307066729331126,
          -7,
          -3.965687638126618,
          -7,
          -2.445109514160607,
          -4.460206027457451,
          -3.46932055733037,
          -1.9662310320585514,
          -3.594768113447505,
          -7,
          -2.480575802792105,
          -3.0639439848052312,
          -2.465351428272144,
          -3.650760688764963,
          -2.632468416673561,
          -2.896556007555891,
          -2.1529583419251055,
          -2.3216303542229584,
          -7,
          -2.062991369166478,
          -2.467733650178315,
          -3.5773440554976808,
          -2.4468747963813797,
          -7,
          -3.4728864095132606,
          -2.2790374965594027,
          -3.7840974174736335,
          -4.069446083880313,
          -7,
          -7,
          -7,
          -3.845175585676797,
          -1.9600610429201442,
          -4.400019635065158,
          -2.570199433985714,
          -7,
          -3.09191304667608,
          -2.7581351874034996,
          -2.845235889398656,
          -4.395413767475018,
          -7,
          -3.249167772195713,
          -7,
          -2.260934510790345,
          -3.31635750347846,
          -3.899619900298734,
          -3.1183343552502207,
          -1.640317233216312,
          -3.9196532823103643,
          -3.057808690334717,
          -3.4780070353598553,
          -3.6767301802519694,
          -2.5711338477405756,
          -3.4218962826411565,
          -3.776428756703846,
          -4.391869775709361,
          -3.719082573901486,
          -7,
          -3.2643980119745235,
          -3.766710207262259,
          -4.3705685987670515,
          -1.8590974860992797,
          -1.303137657032866,
          -1.9722070522427055,
          -4.367094893123658,
          -3.261823435154435,
          -3.5437370271986532,
          -3.4776637838119564,
          -3.7117566286781725,
          -7,
          -4.087497472404264,
          -2.8756292278303137,
          -7,
          -7,
          -3.0035811527135046,
          -7,
          -2.5527472031596625,
          -4.375535592509499,
          -3.6913997990989937,
          -4.082030981267012,
          -3.8999663367071444,
          -4.0919481908785595,
          -2.1311338865820924,
          -2.8942029975509205,
          -3.891295806018899,
          -3.5750063009359265,
          -3.638655621439301,
          -3.5502982539858587,
          -2.074768494687751,
          -3.4721711466923635,
          -7,
          -2.4934011409892882,
          -4.397453326259252,
          -1.8047947564795233,
          -3.4558933499799442,
          -2.9352634125839745,
          -2.9561150478335527,
          -3.8995286868730945,
          -3.5211235488395993,
          -7,
          -3.417260269499742,
          -4.072654217333034,
          -3.7956541254765086,
          -3.2342641243787895,
          -4.0850764114720945,
          -7,
          -3.3489336028856633,
          -1.7535083087629977,
          -3.3894560543546906,
          -3.555215405126073,
          -2.4667153093618293,
          -3.456298538454589,
          -3.337228805205703,
          -7,
          -2.610647181831733,
          -2.643945912748067,
          -3.0845584053656787,
          -3.9063530023303885,
          -7,
          -7,
          -2.9603851469606433,
          -2.9621493926097586,
          -3.6809516111681853,
          -3.066427582089823,
          -1.8469616287811097,
          -3.220631019448092,
          -2.131231706151648,
          -2.697514929326022,
          -2.4958472539940426,
          -3.6304278750250236,
          -3.6768947099757874,
          -3.9141667938756353,
          -7,
          -3.434983840181938,
          -3.7398254113853047,
          -2.979061471018838,
          -7,
          -3.9143255240175927,
          -4.382359297519319,
          -2.7035291823183036,
          -4.379069719792747,
          -3.7715507369849686,
          -7,
          -7,
          -4.068593980976652,
          -4.3686401285764855,
          -4.069594105177555,
          -2.3116637023504474,
          -3.4864659011032937,
          -7,
          -4.073718350346122,
          -4.376704671946979,
          -4.069926968752473,
          -4.37359235519894,
          -4.378634063849602,
          -4.375572173918037,
          -3.3611953702529753,
          -3.4855972232092967,
          -2.724593738503572,
          -2.648664886024623,
          -4.437004965477303,
          -4.3774519630245745,
          -7,
          -3.2427401446056274,
          -3.898396045930009,
          -7,
          -2.724982248479115,
          -4.077367905284157,
          -3.5324631749035365,
          -3.639967665270556,
          -2.9008960175253944,
          -7,
          -7,
          -4.069409070671793,
          -3.79742336017649,
          -7,
          -2.930821728079435,
          -3.786573978023827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9159272116971158,
          -7,
          -7,
          -3.523543575296752,
          -4.079145053332749,
          -7,
          -7,
          -3.4490153163477864,
          -2.964975790327557,
          -7,
          -7,
          -7,
          -7,
          -3.8634418286137087,
          -2.291062491464624,
          -4.162086240240854,
          -7,
          -2.9789029787033003,
          -3.4302317784112404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.001290107998124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1817864401741915,
          -4.259109865420318,
          -7,
          -7,
          -2.997677564080969,
          -7,
          -3.7479165080965102,
          -7,
          -7,
          -7,
          -7,
          -3.9329301428307897,
          -3.261857385629898,
          -7,
          -3.8703453710809597,
          -4.115144351793107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0216440360874435,
          -3.6993792890721724,
          -3.86993541064686,
          -7,
          -3.492993067565435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.891673714695143,
          -7,
          -3.355882344117442,
          -7,
          -7,
          -4.156488576050017,
          -3.64704048585496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9366142619752114,
          -3.9298785236567833,
          -2.655619817172903,
          -3.5342800052050816,
          -3.459141087183815,
          -3.5639554649958125,
          -7,
          -7,
          -2.8542047958554297,
          -7,
          -7,
          -7,
          -4.019780730403647,
          -7,
          -7,
          -7,
          -4.210131168184136,
          -7,
          -3.963976609996606,
          -7,
          -3.4424013694827025,
          -3.3406848506563924,
          -7,
          -7,
          -3.6085260335771943,
          -7,
          -2.8477688997530954,
          -3.9003671286564705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.33683982531461,
          -2.3784529620552672,
          -7,
          -7,
          -7,
          -4.545834713183113,
          -7,
          -3.982406928863795,
          -4.035629827790439,
          -7,
          -7,
          -3.649058873947145,
          -7,
          -7,
          -7,
          -3.2747061463002716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.243236537941076,
          -4.08543329741699,
          -4.022799404511688,
          -2.8095971199565004,
          -7,
          -3.8568496787251725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318397279217511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.619249898968967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.178804645370451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8744818176994666,
          -7,
          -3.4823017672234426,
          -7,
          -3.634762675439664,
          -7,
          -4.081599312732936,
          -2.9521320584091684,
          -3.2974869397629045,
          -2.6636632409363377,
          -3.4254527011208484,
          -3.919862253555538,
          -3.6612446089593336,
          -3.624797578960761,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.19725298299739,
          -7,
          -7,
          -7,
          -3.6693168805661123,
          -7,
          -3.3988770730873177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6639834546082666,
          -3.0070263462012052,
          -2.5508239426793615,
          -7,
          -7,
          -3.877889425371484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.895422546039408,
          -4.02649240705284,
          -3.3082655332099327,
          -3.290085301024576,
          -7,
          -7,
          -7,
          -3.910464315995614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6832733908769533,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.890700397698875,
          -7,
          -7,
          -4.065280871102755,
          -7,
          -7,
          -3.0107890454131927,
          -3.933942602741261,
          -7,
          -7,
          -3.66061254003405,
          -3.3450304728916596,
          -2.3514033420374587,
          -7,
          -2.883108317483188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.946288473013431,
          -3.7782236267660965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4763968267253302,
          -3.5820917843954336,
          -7,
          -7,
          -7,
          -2.937358852359666,
          -4.1648285343444815,
          -7,
          -4.11590992187706,
          -7,
          -7,
          -7,
          -7,
          -2.9433845818511166,
          -3.69888313675259,
          -7,
          -7,
          -7,
          -7,
          -2.272585387686152,
          -4.152930136422725,
          -7,
          -7,
          -7,
          -4.0965972083578945,
          -3.4368779277106576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039770926931579,
          -3.893595333819883,
          -3.8961733476900053,
          -3.5907721950139786,
          -3.7651353157102356,
          -7,
          -3.414639146737009,
          -4.200928629688284,
          -7,
          -7,
          -7,
          -7,
          -4.010299956639812,
          -4.109949580230588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1716589589787767,
          -7,
          -7,
          -2.892424774997811,
          -2.979383403046637,
          -2.957384918427862,
          -3.040760524228699,
          -2.9458563614043456,
          -2.4003076860685573,
          -7,
          -1.6753452130435258,
          -2.374827780920044,
          -2.4843535687148988,
          -2.234264124378789,
          -2.427063943715794,
          -2.6765977445754525,
          -2.7920351611920013,
          -2.1982852175720424,
          -2.577678072403625,
          -1.7387471884369516,
          -2.5739492265770068,
          -2.252452644220883,
          -2.608222582423682,
          -3.067979595068381,
          -3.0224682265597034,
          -2.850493071900963,
          -1.9948329128860245,
          -1.8485896890584994,
          -3.0689276116820716,
          -2.6522046472654086,
          -2.2646789598646593,
          -2.6304278750250236,
          -2.15915403552208,
          -2.1934983993948127,
          -2.760542783272158,
          -2.539154540856009,
          -2.054403749346116,
          -1.7932664017413886,
          -2.541579243946581,
          -2.597542839313678,
          -2.9538587750319683,
          -1.561142881377997,
          -2.253991129516915,
          -7,
          -2.74075325674677,
          -3.2268681559950823,
          -7,
          -2.470982714616232,
          -2.35145029399841,
          -7,
          -2.1829278707887827,
          -3.9195226242023646,
          -7,
          -3.758457688610466,
          -3.5163326117439992,
          -3.3397534541711176,
          -7,
          -3.0141130613510034,
          -3.428426386440588,
          -7,
          -3.636955706104427,
          -4.482773570074737,
          -7,
          -7,
          -3.8744445411585167,
          -2.486439517190511,
          -3.6512982446363424,
          -7,
          -7,
          -7,
          -3.2963830892565467,
          -7,
          -4.375390899472998,
          -3.5731734132550312,
          -4.367206781435987,
          -7,
          -7,
          -3.626224848161194,
          -3.4483326556439904,
          -3.25478968739721,
          -3.3644008892496857,
          -2.6262409978558114,
          -3.787738714389369,
          -2.358098418677797,
          -7,
          -3.259456038251947,
          -3.187534149648075,
          -3.5398703234865425,
          -4.059493364754587,
          -7,
          -7,
          -3.675053913679753,
          -4.122690884070814,
          -7,
          -7,
          -7,
          -7,
          -1.7228828732324626,
          -1.6104263490510267,
          -3.957128197676813,
          -2.850982017175569,
          -3.8718063644587293,
          -2.8967265840360867,
          -3.28266742031975,
          -2.027229653490911,
          -7,
          -7,
          -3.4900287479278442,
          -3.5638369186645447,
          -2.9063099793656395,
          -4.03734680356809,
          -7,
          -3.473389638266334,
          -2.6398977222691444,
          -3.4709492267992785,
          -3.102166811210593,
          -2.9022749204745018,
          -2.4521841151090564,
          -3.2027947216772894,
          -3.8882918453565156,
          -3.195512210674072,
          -7,
          -7,
          -7,
          -3.2315715255284156,
          -7,
          -7,
          -2.983175072037813,
          -2.3696436876791966,
          -1.3267335249988885,
          -7,
          -3.502654678010023,
          -4.188422214635828,
          -2.998368334404169,
          -7,
          -7,
          -7,
          -3.159903204454949,
          -7,
          -3.87075494489014,
          -3.486241511384074,
          -7,
          -1.6966371725035474,
          -3.2831315492788855,
          -2.649642251303885,
          -7,
          -3.5893910231369333,
          -7,
          -2.2432248018527514,
          -2.455976496389408,
          -7,
          -7,
          -7,
          -2.5808754128245637,
          -2.2119760939132904,
          -3.4081268530617237,
          -7,
          -2.6326061404166037,
          -7,
          -2.6300075308019943,
          -3.508035666557394,
          -2.3728711070256434,
          -3.3217537297632274,
          -2.656943297593573,
          -3.53873078529734,
          -7,
          -2.872636080463341,
          -3.4025479509123913,
          -7,
          -7,
          -2.517037463772293,
          -7,
          -7,
          -2.377081574961449,
          -4.038540686337457,
          -7,
          -3.829094617724282,
          -3.6852937813867843,
          -7,
          -7,
          -3.039587604005866,
          -1.842240185272119,
          -3.3154980294974736,
          -3.4324882557705063,
          -7,
          -7,
          -2.5405650003943974,
          -2.3180179422810476,
          -7,
          -1.4765437353767086,
          -2.781272974067587,
          -3.249931756634195,
          -3.096828255763481,
          -3.3922209233273932,
          -3.054766217838991,
          -7,
          -3.5858553633220276,
          -7,
          -7,
          -3.747489492258673,
          -7,
          -2.63230728977173,
          -7,
          -7,
          -7,
          -2.7910435886018217,
          -7,
          -7,
          -3.8608169638645378,
          -7,
          -7,
          -7,
          -3.024485667699167,
          -2.098257185804164,
          -3.3258234190027447,
          -7,
          -7,
          -3.18971484232368,
          -7,
          -7,
          -7,
          -7,
          -3.9651546459869254,
          -7,
          -4.292433298244021,
          -2.5654310959658013,
          -3.7517024117392372,
          -3.891425942847994,
          -7,
          -4.008600171761918,
          -7,
          -7,
          -3.3274270536683934,
          -7,
          -7,
          -3.704879450830578,
          -2.4419722269826796,
          -3.969974730121715,
          -7,
          -7,
          -7,
          -7,
          -2.5060022200171628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.297147471801269,
          -7,
          -4.592598628906131,
          -2.536932840085164,
          -3.3819269306372273,
          -7,
          -7,
          -2.3193500861082983,
          -2.324210088295366,
          -4.295830894958585,
          -7,
          -7,
          -7,
          -7,
          -2.0901845471034233,
          -7,
          -7,
          -3.352923487923558,
          -2.5967085150862332,
          -4.118220621846332,
          -4.289722698213798,
          -4.587127024478463,
          -3.827078353439126,
          -3.89867034296553,
          -7,
          -3.234478345557588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.590005419651329,
          -3.2534749651978156,
          -7,
          -4.607465746402825,
          -4.114043562548077,
          -2.979154479109356,
          -4.112135602681912,
          -4.592254501367159,
          -2.9924565253794793,
          -7,
          -3.7261870607048433,
          -7,
          -7,
          -4.139952511628103,
          -3.7519056726903885,
          -3.397342442838698,
          -2.3490295119319136,
          -3.408377781046953,
          -2.9316838303621062,
          -3.023742247079222,
          -7,
          -3.815765857584692,
          -3.709354775834396,
          -7,
          -4.595374955168249,
          -7,
          -7,
          -3.8943714538562375,
          -4.145227492652394,
          -2.91296955152229,
          -4.287980783522498,
          -7,
          -3.568468407822322,
          -7,
          -3.8615045408853748,
          -4.327461109303142,
          -7,
          -4.009695170852119,
          -2.959675565620754,
          -4.588361358384558,
          -2.544186717310012,
          -7,
          -7,
          -3.2448858293864875,
          -3.9060439777650204,
          -7,
          -7,
          -3.106944816405672,
          -4.292510812271008,
          -3.200818940961113,
          -3.5409339789550547,
          -3.8243211248507714,
          -7,
          -2.0428200167086685,
          -3.1421599511455183,
          -2.480438147177817,
          -4.287062352554394,
          -7,
          -3.708197746332473,
          -2.686549079042787,
          -3.4044167476979577,
          -3.2809713502808844,
          -3.8904657315037134,
          -2.9184630502343385,
          -7,
          -4.587362941142179,
          -7,
          -2.9134027400377787,
          -7,
          -3.404192060041402,
          -3.9967305154351527,
          -3.165315974146904,
          -2.568110343224447,
          -7,
          -4.289176310578643,
          -3.555292359938342,
          -3.820179558051817,
          -2.744991093676315,
          -3.8167493372332375,
          -4.587048357103245,
          -4.30513631894364,
          -3.775173385424787,
          -3.305852740224386,
          -3.749968083509403,
          -3.2477032819341716,
          -2.3404810077814537,
          -7,
          -4.654609657359271,
          -7,
          -3.8573388457193865,
          -4.295929776786988,
          -3.6126885133197812,
          -3.5465323817635763,
          -7,
          -4.593452219346109,
          -2.8090431919338577,
          -3.4684211837380565,
          -7,
          -7,
          -3.2702905531667605,
          -7,
          -7,
          -7,
          -4.588663795780204,
          -3.985078270183812,
          -3.575276684956999,
          -3.4929000111087034,
          -2.7547470758907386,
          -3.156276496003016,
          -4.292577241855888,
          -3.262394129341876,
          -4.28657995889235,
          -7,
          -3.9955803559735865,
          -3.3729032398776235,
          -3.146718971926629,
          -7,
          -4.590395947184013,
          -7,
          -2.9818543579477965,
          -7,
          -7,
          -4.001355054084966,
          -4.1217786323442205,
          -7,
          -3.695886449894574,
          -4.600983780123833,
          -7,
          -4.608493941666254,
          -7,
          -7,
          -4.3001061379430885,
          -7,
          -2.7014459792761993,
          -4.591131416423124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.919115465508226,
          -3.687339417646106,
          -2.612989562531319,
          -7,
          -2.5216911650292575,
          -2.3196846398793265,
          -4.117746218143026,
          -2.702126302120017,
          -2.592353192288362,
          -4.121855182166855,
          -3.2856215965486952,
          -2.4151491401132317,
          -3.8245596945739138,
          -4.296325079116333,
          -3.7551122663950713,
          -3.929234950265582,
          -7,
          -7,
          -7,
          -2.447742764819307,
          -7,
          -3.6654871807828107,
          -7,
          -3.6203963453512844,
          -7,
          -3.7396415570897896,
          -4.291468753334798,
          -7,
          -4.289455165670285,
          -7,
          -4.038818787373656,
          -4.606886315027087,
          -7,
          -3.14589263991003,
          -2.8752399486367235,
          -3.032503639715015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5869059703826816,
          -3.720376396378187,
          -2.988844903796994,
          -2.560614268618336,
          -7,
          -4.289934377993168,
          -4.1151887695361165,
          -3.818808522067325,
          -7,
          -7,
          -4.128668465082902,
          -4.1239169434981315,
          -7,
          -7,
          -7,
          -7,
          -4.589916106886427,
          -7,
          -7,
          -7,
          -2.786630248644035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.894016828216566,
          -7,
          -7,
          -4.031630604606654,
          -3.398515067967853,
          -3.303215699422342,
          -2.9094490469812664,
          -3.2591267144555607,
          -7,
          -7,
          -2.8393079489772797,
          -3.6047335137224517,
          -2.4804176233488913,
          -4.293064081916136,
          -1.8298429342682472,
          -3.816959005394395,
          -3.890867938811441,
          -7,
          -3.836296982759114,
          -2.8913183835707033,
          -3.002340719023859,
          -3.0686671411769404,
          -3.7511635847694937,
          -3.7545012293869173,
          -4.292532956594993,
          -7,
          -7,
          -4.011507007443322,
          -7,
          -7,
          -4.59027324779574,
          -7,
          -7,
          -3.9989237887958713,
          -7,
          -3.3506894128456532,
          -3.0664656972289,
          -4.597530649275731,
          -4.3110647990615965,
          -7,
          -2.0204866559028973,
          -3.0187004986662433,
          -4.589044343518194,
          -2.9459834032795715,
          -4.588271706842329,
          -4.1174149316527675,
          -4.624024124647861,
          -4.302081884881776,
          -3.1422237856667863,
          -3.361434010908688,
          -4.34552075797636,
          -7,
          -4.141439320940584,
          -4.130387381788316,
          -1.6550186730179992,
          -2.604006106298812,
          -7,
          -7,
          -7,
          -3.1947422321739922,
          -3.0698324778681014,
          -4.2900791521022015,
          -7,
          -4.6104259215337375,
          -7,
          -3.491156891329735,
          -4.114032429218625,
          -3.7323334369557415,
          -4.59365151826543,
          -4.295292143016351,
          -3.3962301252029676,
          -3.0744285441023065,
          -3.1275709364394157,
          -2.8362754143350264,
          -2.711352486869325,
          -7,
          -2.807240810537173,
          -3.2615495579978937,
          -3.6449307079135873,
          -7,
          -4.595419056052439,
          -7,
          -3.1565909224659774,
          -3.8680269370808706,
          -4.03604971613695,
          -4.304361254225308,
          -7,
          -7,
          -3.4953628544079263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.449712564810516,
          -7,
          -7,
          -3.0023904888563426,
          -2.938095122768641,
          -1.481944569338266,
          -3.348325362657893,
          -1.87861512959996,
          -2.3526506225416637,
          -1.6753452130435258,
          -7,
          -2.319198283339407,
          -2.9784453056005,
          -3.323489298403336,
          -1.6580891171752072,
          -1.7860040591971704,
          -2.3118366821075793,
          -2.747594572531689,
          -2.02956215102457,
          -1.101724446438007,
          -2.9295368177157144,
          -2.650361001088155,
          -3.1347032871453275,
          -2.712556174226849,
          -1.8940522432779985,
          -1.969168459528491,
          -1.6877806393969483,
          -2.087105877348507,
          -2.690562171664373,
          -1.7706589656531093,
          -1.5717635398280054,
          -3.907465106765856,
          -2.059496009285706,
          -2.4166072267925043,
          -1.4176693603506239,
          -2.085280893078655,
          -2.021757440269967,
          -2.8463262584308806,
          -1.9334572522470266,
          -2.0417119019913423,
          -2.575351881915607,
          -2.01932320967471,
          -2.7675351409941324,
          -7,
          -2.7263837250269227,
          -2.8476261764648605,
          -3.4308998905960526,
          -3.0065475348576056,
          -2.2814982124294234,
          -3.402422600478645,
          -1.8749933830032488,
          -3.5673069327762104,
          -4.616034168348879,
          -3.562860975597884,
          -2.6134223028214976,
          -2.7517196188765767,
          -7,
          -2.6186675516888123,
          -2.830695571942768,
          -7,
          -2.8010703387598253,
          -2.850251774187875,
          -7,
          -7,
          -2.7827700631505725,
          -1.9465606832645925,
          -2.49380146683446,
          -7,
          -4.333134792524816,
          -7,
          -3.135007398371379,
          -4.344372621906474,
          -3.1152329844736144,
          -3.3017156394293377,
          -3.5916369257764496,
          -7,
          -3.8177929968390703,
          -3.2578185183129036,
          -3.064748596192895,
          -3.4789579468006946,
          -2.957830681368091,
          -2.6835364503597714,
          -3.3613833738997507,
          -2.011682253769414,
          -7,
          -2.5551880282267496,
          -2.984337778898843,
          -3.1582896875886353,
          -3.11029794935722,
          -7,
          -3.9252295573903355,
          -2.7842190856301663,
          -3.230982069913129,
          -7,
          -7,
          -7,
          -7,
          -2.221967023835514,
          -2.2489873811994956,
          -4.306038816336349,
          -2.6579706044265934,
          -7,
          -4.302071053650075,
          -3.478234515815185,
          -4.00665854393118,
          -4.3031852539407955,
          -7,
          -3.494830167764257,
          -7,
          -3.1000688469589184,
          -3.450002630173186,
          -4.291779415420275,
          -4.605660526371362,
          -3.0884651668070924,
          -4.605121806343587,
          -3.853282371443652,
          -4.595595414820133,
          -4.592243395937578,
          -3.800019526792286,
          -7,
          -4.593917107968336,
          -4.602049133830196,
          -3.7152196541314884,
          -7,
          -3.731069199110241,
          -7,
          -7,
          -3.4586322542136774,
          -2.2991392849753933,
          -1.1140188594582874,
          -7,
          -4.612306930268642,
          -3.524229160681178,
          -7,
          -3.9147978438103976,
          -7,
          -4.122849103955043,
          -2.8439098615708867,
          -7,
          -7,
          -7,
          -3.9005528249554966,
          -3.310764096221262,
          -7,
          -4.601212290310882,
          -4.295611076923875,
          -4.593042261900327,
          -4.00062927088754,
          -2.997986728734311,
          -2.738376029233355,
          -7,
          -3.7165562993397074,
          -3.6632820254469673,
          -3.0237721320079123,
          -3.3021476996357157,
          -7,
          -7,
          -3.663182477305838,
          -3.760271660542063,
          -2.2918120143098473,
          -3.409129696282029,
          -3.7211817929377893,
          -4.599915806604957,
          -7,
          -2.9919095417868324,
          -7,
          -4.167445339198895,
          -7,
          -3.760497875226527,
          -3.2332207210598045,
          -4.297475993324212,
          -4.28592843841554,
          -3.285244120563568,
          -2.40210991142646,
          -4.149527013754348,
          -7,
          -3.590105874562201,
          -4.613820687810423,
          -4.162624140307846,
          -4.120530060860654,
          -3.1329441849619486,
          -3.4004567198107583,
          -7,
          -7,
          -7,
          -7,
          -3.338392454638033,
          -4.136287113116408,
          -3.691567700438057,
          -3.498840504412899,
          -3.0786380383696725,
          -3.827089131715571,
          -4.244524511570083,
          -3.0724752248302725,
          -3.5895231155601817,
          -3.498331764235352,
          -4.5923433345820435,
          -7,
          -7,
          -3.72607487021537,
          -3.9325955124185206,
          -2.8196350367166048,
          -7,
          -4.300780204515047,
          -4.596212107141384,
          -3.0828267823103697,
          -4.5942046469788265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8703551273285175,
          -7,
          -4.604118006192035,
          -7,
          -7,
          -7,
          -4.289822980444232,
          -7,
          -7,
          -3.5672937724121385,
          -4.600243016285841,
          -3.5033139228158845,
          -4.041056964240598,
          -3.78519759407694,
          -7,
          -7,
          -4.141992954947583,
          -7,
          -7,
          -3.064320690534863,
          -7,
          -4.593418993965913,
          -7,
          -4.009376523937582,
          -4.30894838630958,
          -7,
          -7,
          -4.129657673312688,
          -7,
          -3.852134209659975,
          -7,
          -7,
          -7,
          -4.579251831894143,
          -7,
          -7,
          -3.7024994666070703,
          -4.180699201296035,
          -4.885971517631692,
          -2.724270179122184,
          -7,
          -4.404223451969429,
          -2.366764563371726,
          -3.5826260327397415,
          -7,
          -7,
          -3.088514404450885,
          -2.402800038634579,
          -3.6281106653728488,
          -7,
          -7,
          -7,
          -3.401452239428341,
          -2.2358864186637226,
          -4.07333598198359,
          -7,
          -2.4518960366559517,
          -2.0367966219629032,
          -3.8827009520401465,
          -7,
          -7,
          -3.586722297518069,
          -3.8047072118408556,
          -4.181826444403178,
          -3.2795236294273167,
          -4.104595216241666,
          -4.578232226348149,
          -7,
          -4.880922152331826,
          -4.10932538777049,
          -4.578994292445924,
          -4.41624097236815,
          -7,
          -3.8889765604386084,
          -3.0538235216291834,
          -3.0025226295727028,
          -4.879674935072914,
          -4.279096329747602,
          -2.9429039182926973,
          -4.883468372477887,
          -2.813011924279666,
          -4.880470592803778,
          -3.627274799986486,
          -4.593108767780639,
          -3.8422006200271137,
          -3.059297726935559,
          -1.9504973603195637,
          -3.493675492344039,
          -2.5231115907773183,
          -3.4051488504672323,
          -7,
          -3.7358269356613625,
          -3.8916656643321246,
          -4.581300973440315,
          -3.7365217067513323,
          -4.18385041331821,
          -7,
          -3.840288628653793,
          -3.4052526963247365,
          -2.8430643424451443,
          -4.1805215511284315,
          -7,
          -3.5099749598454677,
          -4.1796838976987285,
          -3.1422168015774887,
          -3.6959247197466625,
          -4.402204046065145,
          -4.192344395046124,
          -2.3604720822618974,
          -4.879193398354936,
          -3.3571610331780577,
          -7,
          -7,
          -2.9208556016179306,
          -2.8781048276889516,
          -4.1022907468986824,
          -4.577399875933421,
          -3.85034542706947,
          -3.881761148404959,
          -3.4620761790758543,
          -3.7196129897309733,
          -3.8450247113790064,
          -4.885779479387615,
          -2.180735816721301,
          -3.594375973933817,
          -3.2246244545428504,
          -3.97589687492733,
          -7,
          -4.5901170347847895,
          -3.3060919125073824,
          -3.8483011062859602,
          -3.2952206256871532,
          -7,
          -3.406447715743738,
          -4.882177191180505,
          -7,
          -7,
          -2.905050221975924,
          -4.8789065156607965,
          -3.3708157807234556,
          -3.7083472366371133,
          -2.969750193711248,
          -2.2420327113070426,
          -4.580383194629278,
          -4.278055883861635,
          -4.038421445642459,
          -4.58334049186249,
          -2.4644033698676973,
          -4.183594375321738,
          -7,
          -4.587368556643926,
          -3.8543833409958466,
          -3.6959083187944173,
          -4.882706641624157,
          -3.352211470111767,
          -2.342851180626867,
          -7,
          -4.437221902399778,
          -7,
          -3.4838874573139074,
          -3.8835251645274904,
          -3.511448849204857,
          -3.483587296968894,
          -7,
          -4.036640300004483,
          -2.374739137539774,
          -3.121442988413379,
          -7,
          -4.878745778536927,
          -2.5796019381303084,
          -4.878188478737013,
          -4.8782402170748815,
          -4.878659644885606,
          -3.1975676949836185,
          -4.4014579833425564,
          -2.220246301385376,
          -3.3258234190027447,
          -3.235057187684041,
          -2.3837059250399273,
          -4.580856577457996,
          -3.537320524271039,
          -7,
          -4.57890268604763,
          -3.98083251407348,
          -2.8831034194905643,
          -2.5143503569867414,
          -7,
          -7,
          -4.036834133116361,
          -2.961266809061622,
          -7,
          -7,
          -3.772919465833062,
          -3.9814731626861795,
          -4.034210058377503,
          -3.0644579892269186,
          -4.408556522973944,
          -4.112074096198641,
          -4.412471747659022,
          -3.9323046139517808,
          -3.8035358992281134,
          -4.1075830311913215,
          -3.5798864436574345,
          -1.9312898112904282,
          -4.880613542175367,
          -7,
          -7,
          -4.581164284641671,
          -4.880350478958987,
          -4.277889868055238,
          -7,
          -2.6552376394663915,
          -3.649701293987293,
          -3.382875633393018,
          -7,
          -3.5434633878211326,
          -1.8802465169819231,
          -3.3139469837438598,
          -2.7079357553475703,
          -3.084147133154448,
          -3.52270499273475,
          -3.181367126589355,
          -4.04017834859167,
          -4.409510452269316,
          -4.281737671706917,
          -4.283272953402787,
          -3.8585864097188036,
          -7,
          -4.123813543288926,
          -7,
          -3.74863243437746,
          -3.9841783874885084,
          -3.908207911377373,
          -7,
          -2.297941956450323,
          -7,
          -2.7131565574176917,
          -3.7050764816562776,
          -3.5427462308516486,
          -3.518313626141043,
          -4.403966542231021,
          -3.906803568389256,
          -4.189759734122248,
          -7,
          -2.9804410666564363,
          -2.359620733127385,
          -2.4684482778524823,
          -7,
          -4.878562006091662,
          -3.5578736854964284,
          -3.648371492507466,
          -7,
          -7,
          -7,
          -7,
          -2.419231714320627,
          -3.4993901215945535,
          -2.651627253844299,
          -2.6475054048611133,
          -4.878297696888866,
          -4.403395087002509,
          -4.580200547681287,
          -2.853083837210162,
          -7,
          -4.180332359773302,
          -4.189209489582306,
          -3.5430911940308167,
          -7,
          -7,
          -4.8783091919388095,
          -7,
          -7,
          -7,
          -4.879239282004893,
          -4.408901082354143,
          -1.8349429903280465,
          -7,
          -4.878699842715436,
          -7,
          -7,
          -3.268754858806963,
          -3.5389505620143615,
          -7,
          -4.1038208188273355,
          -3.999853400872363,
          -4.187712444905493,
          -2.5493098589194982,
          -2.624704142971265,
          -3.3543796472007004,
          -7,
          -7,
          -2.476232637385205,
          -2.5758328284484184,
          -1.2021624626183571,
          -4.882148707810854,
          -2.4731227267893687,
          -3.7686381012476144,
          -3.703744069681171,
          -3.880138768941943,
          -2.988958534263733,
          -3.508518945641213,
          -2.2019399337761323,
          -2.9696705018636695,
          -3.914147389545718,
          -4.106842247069822,
          -4.182859562041339,
          -4.8793023641093205,
          -7,
          -3.8508076943311957,
          -4.192283033926229,
          -7,
          -4.8801731073077965,
          -4.583317820106908,
          -4.402840056067149,
          -3.194995460578334,
          -4.878521795501206,
          -2.793677753532247,
          -2.849377765840031,
          -3.5614648480342446,
          -3.850010951288372,
          -3.168616455120142,
          -2.076825357874002,
          -3.1121387476657105,
          -7,
          -3.23450347863715,
          -7,
          -4.581346526814622,
          -3.450359098058306,
          -3.8867162741164782,
          -2.5988527169476825,
          -2.693721384719475,
          -4.432819692596553,
          -4.586007483440228,
          -3.690650079222292,
          -3.096046169288955,
          -2.0934010582009397,
          -2.952160466096275,
          -4.577537754493837,
          -7,
          -7,
          -3.263797406395141,
          -2.881159615232263,
          -7,
          -4.88160146454071,
          -3.6351652815006217,
          -7,
          -3.2342697517408654,
          -3.4331810064702166,
          -3.5613453617046673,
          -7,
          -4.1050898796005555,
          -3.2457100295452914,
          -4.182893766986047,
          -2.8008148119778054,
          -2.736422771941762,
          -2.5448957195226938,
          -7,
          -3.353750650088075,
          -2.8764774040208363,
          -3.184332449959256,
          -7,
          -4.581779045728458,
          -4.578673585479501,
          -3.7491784619809887,
          -3.511605323528979,
          -3.791328901157271,
          -3.773927025205094,
          -4.8789065156607965,
          -7,
          -2.986200507770217,
          -7,
          -7,
          -4.404998967853327,
          -4.201779353725061,
          -4.880470592803778,
          -1.9632118646144128,
          -7,
          -7,
          -1.635847285435352,
          -1.9287640656971603,
          -2.8776499600498724,
          -2.6724991858354983,
          -2.8562653278979666,
          -1.9645207229227155,
          -2.374827780920044,
          -2.319198283339407,
          -7,
          -2.1696796347232015,
          -2.3788076702177325,
          -1.6420777761975676,
          -2.300466146449801,
          -2.3231642439817457,
          -1.494460637807906,
          -2.7423955234251247,
          -2.4540304303616693,
          -1.4959910849691558,
          -2.7096152113478844,
          -2.0573576987385342,
          -3.7208646312144977,
          -2.5540990629431444,
          -2.313568607907434,
          -1.0650364639268783,
          -2.279458263588633,
          -3.465900847365547,
          -2.6081934347734985,
          -1.6857217503623843,
          -3.8092790719877616,
          -1.0138747530809518,
          -2.1240978284945977,
          -2.453382497794081,
          -2.7886849514854286,
          -2.6726653809000602,
          -2.9081801438349584,
          -2.9954806316406293,
          -3.0906633183364,
          -2.1826008732120212,
          -2.3147164804503,
          -1.4502611085537302,
          -4.882729399214851,
          -2.3270229704256304,
          -2.259338656408642,
          -2.972854758649604,
          -2.2840784231405773,
          -2.6321046372876338,
          -3.3201575182037963,
          -2.0243990147643496,
          -3.4977075869213845,
          -3.6146252807658557,
          -2.7956808317648716,
          -1.8442238177716326,
          -2.435729215832507,
          -4.5841106281854485,
          -2.2061016624806835,
          -3.6337129099766963,
          -4.879325300784807,
          -3.07725565617283,
          -3.0206257147651727,
          -4.056795991959564,
          -7,
          -2.215112894636366,
          -1.8801630543812344,
          -2.878640402307038,
          -4.579011466494655,
          -4.125047296659335,
          -4.181517744876915,
          -2.6079249046588773,
          -4.9093366872381266,
          -3.172844543701635,
          -2.2264107190468714,
          -3.349002555514242,
          -4.577807639942444,
          -3.0230307434509927,
          -2.6732086953863448,
          -3.063948902114075,
          -2.7508663941909006,
          -2.320932608707785,
          -3.49610432191286,
          -0.95391571228189,
          -2.726476108692137,
          -7,
          -1.401301031097911,
          -2.487664250163948,
          -3.6408898107842758,
          -2.863094770417211,
          -7,
          -2.3705308178486595,
          -2.7293004384241,
          -3.4206249305410177,
          -4.57848448648651,
          -4.878740036824943,
          -7,
          -7,
          -2.606001153050686,
          -1.80275017045316,
          -3.774803219379627,
          -2.219481487982073,
          -3.733443757892789,
          -3.1153058148784267,
          -1.4745388360584113,
          -2.544885102554565,
          -4.18837718436134,
          -4.578811060322582,
          -2.061366019546052,
          -4.180039810927176,
          -2.0474673297290966,
          -2.995113947880977,
          -3.538824988937904,
          -4.28604083928627,
          -2.608506315326026,
          -3.4561972767710216,
          -3.211109639334388,
          -3.2696723726683694,
          -3.8018779959930336,
          -2.8435442119456353,
          -4.404223451969429,
          -3.5393840807619363,
          -3.630789354092371,
          -3.572417938449931,
          -7,
          -1.9464574637475716,
          -4.879021291480248,
          -4.034376319641359,
          -2.247582651754639,
          -1.7163629722329221,
          -1.6654811074728242,
          -4.401325854091834,
          -3.3727446770262515,
          -2.944529423824312,
          -4.03763704841194,
          -3.71618147919181,
          -7,
          -3.9820280052712484,
          -2.4323720315236423,
          -7,
          -3.5369542230538054,
          -3.588394972942186,
          -3.9818186071706636,
          -2.123289611439104,
          -3.8809849904867533,
          -3.0857774428096105,
          -3.502990108608549,
          -4.5805543564083875,
          -3.5853761184457458,
          -1.8321033032122396,
          -2.357737088527054,
          -4.57785930100737,
          -3.418124443314898,
          -3.5517992006535386,
          -3.355603624458788,
          -1.120130913728231,
          -4.102873723286516,
          -4.879617637262669,
          -2.473816225498682,
          -3.8087453508147924,
          -1.5178397111018789,
          -3.360431906796075,
          -2.6760983533759655,
          -3.708896578694757,
          -3.2789535589511205,
          -3.039027907961798,
          -7,
          -2.7803603084010486,
          -3.9773520102903825,
          -3.6327046829529652,
          -2.9057264347043352,
          -3.105606683933109,
          -7,
          -3.0968191357320425,
          -1.403694988017363,
          -3.1826724835047404,
          -3.7749659069566945,
          -2.309547394740809,
          -3.549755432008307,
          -3.5080770088490123,
          -3.9296629703711963,
          -1.5492895682531027,
          -2.2484416866839902,
          -3.340013289599537,
          -3.364727190106312,
          -4.878917994607827,
          -4.401320108429818,
          -2.6996643202023733,
          -2.9618620050408455,
          -3.6518763532182574,
          -2.59756647208602,
          -0.8717851120656792,
          -2.9732461585033687,
          -1.1589200266038442,
          -2.0482695669897875,
          -2.9561738896938907,
          -3.529759443527333,
          -4.036069700697702,
          -3.8067846246122903,
          -7,
          -3.485388317827623,
          -2.96143200516566,
          -2.844934740714757,
          -7,
          -3.8446352981531975,
          -4.28113567588559,
          -2.0060432699385977,
          -4.280100110054924,
          -4.40337793172286,
          -4.878653902034747,
          -4.27649627062157,
          -4.277167820218901,
          -4.577905216795529,
          -4.101363231766848,
          -1.337734317746204,
          -3.931260059489091,
          -4.410186528657109,
          -7,
          -3.2181814592305806,
          -7,
          -4.579440597139797,
          -4.581016156545554,
          -3.880996414629062,
          -3.8105237427378844,
          -4.408172101497054,
          -3.2448953336918613,
          -3.151638616799286,
          -3.9011312513553715,
          -4.103478733439318,
          -7,
          -3.61627646616399,
          -4.403960831399213,
          -7,
          -2.592807487530051,
          -4.5809534717539675,
          -4.881789657203351,
          -3.5936515182654305,
          -3.1502259782112434,
          -4.0452391300593185,
          -4.879193398354936,
          -7,
          -4.587699742794285,
          -7,
          -3.137163053129165,
          -4.04008784346988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.963976609996606,
          -7,
          -7,
          -3.7061628278930594,
          -7,
          -3.985022082109535,
          -3.3885567971144153,
          -7,
          -7,
          -7,
          -3.68897123937068,
          -2.9827929081556324,
          -7,
          -7,
          -7,
          -7,
          -3.664124650322944,
          -2.759382734236651,
          -4.216245097705822,
          -7,
          -2.89503234432232,
          -3.154853485461981,
          -7,
          -3.977586438003851,
          -7,
          -7,
          -7,
          -7,
          -3.684153359757077,
          -7,
          -7,
          -7,
          -7,
          -4.0313680628857735,
          -7,
          -7,
          -7,
          -7,
          -3.1337213467185854,
          -3.845632454617127,
          -7,
          -7,
          -3.4350077667145955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021106568432121,
          -2.684044326406123,
          -4.061678615245337,
          -3.7472823030451763,
          -3.697839368218363,
          -7,
          -7,
          -4.060886623004662,
          -3.9926418698783976,
          -3.695043658821294,
          -7,
          -7,
          -7,
          -3.7937205568135233,
          -3.6646419755561257,
          -7,
          -7,
          -3.7507397512353506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.737855998205046,
          -7,
          -3.4395695171471754,
          -7,
          -7,
          -3.910224071953891,
          -3.33429287154846,
          -7,
          -3.66029616027073,
          -7,
          -7,
          -7,
          -3.6106246800650714,
          -7,
          -4.018617292519441,
          -2.651473316642036,
          -3.3078168266624304,
          -3.1690184512274984,
          -3.9665640840973104,
          -7,
          -7,
          -2.605346492386491,
          -7,
          -3.7985470652527273,
          -7,
          -7,
          -3.6902403935311185,
          -7,
          -7,
          -3.217053025228425,
          -7,
          -7,
          -7,
          -3.6371226589692447,
          -3.1513298716210123,
          -7,
          -7,
          -4.002209272988015,
          -4.008216801589691,
          -3.1562725432178564,
          -3.3923891456860735,
          -7,
          -7,
          -7,
          -4.115011071300453,
          -7,
          -3.771624221669053,
          -2.485434814042305,
          -7,
          -4.195013562875828,
          -7,
          -4.185699963145484,
          -7,
          -7,
          -3.629409599102719,
          -7,
          -7,
          -3.6793067375983877,
          -3.76767522402796,
          -7,
          -7,
          -2.903076415077322,
          -7,
          -7,
          -3.9632209865229884,
          -3.1902382914634244,
          -3.485437481076301,
          -3.2089561488344414,
          -4.149311505907915,
          -3.458543426918113,
          -2.3224777264475276,
          -7,
          -3.5134040668646405,
          -7,
          -7,
          -7,
          -4.303671144664021,
          -3.711582293398766,
          -7,
          -7,
          -7,
          -4.1619566462202044,
          -7,
          -7,
          -4.027512692448811,
          -7,
          -7,
          -3.709778601848225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8699956399169992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9740047968974146,
          -7,
          -2.9772916357834776,
          -7,
          -4.444294677675202,
          -7,
          -3.543757723163865,
          -2.5852652334521258,
          -2.847043569352527,
          -2.5967587537269323,
          -2.8435442119456353,
          -4.010469569796392,
          -3.7441755903710754,
          -3.7142878374051356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9463539972262747,
          -7,
          -4.487477756438898,
          -7,
          -2.7686803765792845,
          -7,
          -2.9833556143317885,
          -7,
          -7,
          -3.97648753730519,
          -7,
          -4.154393537956997,
          -4.040206627574711,
          -7,
          -3.570270447480781,
          -2.387000299581458,
          -2.7218380839505403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.634838837899661,
          -3.797821311364024,
          -3.3061910011503572,
          -2.7057192665088827,
          -7,
          -7,
          -7,
          -4.002856926061121,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1637228015492442,
          -7,
          -7,
          -7,
          -7,
          -3.144307277987259,
          -3.5096504795465826,
          -7,
          -3.9902056151848067,
          -7,
          -4.025551622782544,
          -3.470675044798936,
          -2.6910529586002814,
          -2.7416905544137458,
          -7,
          -7,
          -3.690092664268553,
          -2.885764952032237,
          -2.005302224004762,
          -7,
          -3.301659266551521,
          -3.9955474494751373,
          -3.9740970037941312,
          -3.976074731619874,
          -7,
          -7,
          -2.7735670489260587,
          -4.144044637110949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.018284308426531,
          -7,
          -3.5608626947274646,
          -2.7721192856137304,
          -7,
          -4.059184617631371,
          -3.713196433725248,
          -2.9820570489258453,
          -4.218666771495871,
          -7,
          -3.4934270675834678,
          -7,
          -7,
          -7,
          -4.026206297083118,
          -2.729434789379367,
          -3.5993371329924893,
          -7,
          -7,
          -7,
          -4.042654253167793,
          -2.836668309629515,
          -4.208172526667122,
          -7,
          -7,
          -7,
          -3.8578750255235628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9793206973820245,
          -7,
          -7,
          -7,
          -7,
          -2.9469878800637836,
          -4.061619400488769,
          -3.616842959534867,
          -3.5812519238247402,
          -7,
          -3.6967348842666072,
          -3.731170345661575,
          -4.16705135873788,
          -7,
          -7,
          -7,
          -4.085254891103877,
          -3.5683190850951116,
          -7,
          -7,
          -7,
          -7,
          -3.748885440009517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9739758441821524,
          -7,
          -7,
          -2.56923777141077,
          -2.796856884709436,
          -3.591922802571349,
          -0.45695157034049433,
          -3.382197210377454,
          -2.473311216228847,
          -2.4843535687148988,
          -2.9784453056005,
          -2.1696796347232015,
          -7,
          -2.9884903533744995,
          -3.3807989509841128,
          -3.0367999335587545,
          -3.170334064983499,
          -2.022059193165288,
          -2.6909074552603007,
          -2.6116374150164035,
          -2.188454974845586,
          -2.8903092168999485,
          -3.0851418625206697,
          -3.794766797940821,
          -2.84444447407917,
          -3.29301510647291,
          -2.5077741221460546,
          -2.6304075328867076,
          -4.478609778601228,
          -2.9775310775313324,
          -3.018664324039434,
          -7,
          -2.379838903069261,
          -3.001376230057043,
          -3.2057146347028325,
          -3.3273005379250478,
          -3.3061032087275857,
          -3.1236066689862163,
          -3.8414220444023592,
          -3.608632989490037,
          -3.2675940797612917,
          -2.8741011358794135,
          -2.149864746009101,
          -7,
          -2.681956604360934,
          -2.850715837004121,
          -3.0381696077218603,
          -2.6730538369148547,
          -2.5110983073046955,
          -3.5628477721477982,
          -2.455275875899563,
          -4.268297087223766,
          -7,
          -3.2377232209250724,
          -3.1441805525731445,
          -2.8380654566879544,
          -7,
          -3.17653738805171,
          -3.4075608494863623,
          -7,
          -3.0273787345298664,
          -4.509498225929598,
          -4.125676410382333,
          -7,
          -3.437221902399778,
          -2.5991895013035666,
          -3.21222038264635,
          -7,
          -7,
          -7,
          -2.6884374443720818,
          -4.16799631208688,
          -3.8401077460146227,
          -2.306371938560718,
          -7,
          -7,
          -2.903500611912562,
          -2.828027239737565,
          -2.4880405338781713,
          -3.259218324497471,
          -3.1201061374514323,
          -3.064313968505352,
          -2.6607264465669678,
          -2.485821206948855,
          -7,
          -2.5063330525119167,
          -2.7744114242269298,
          -3.488762172066694,
          -3.326399756229908,
          -7,
          -2.954139093679364,
          -2.9061760145910296,
          -3.852083335846628,
          -7,
          -7,
          -7,
          -7,
          -3.141825894511075,
          -2.0595761546756988,
          -4.040958173384207,
          -3.078221118535338,
          -3.6707559422151332,
          -2.983954149351602,
          -2.359749918312179,
          -2.5534523536943654,
          -7,
          -7,
          -3.154697793596388,
          -7,
          -2.5047157113257805,
          -3.63086838754785,
          -3.6848453616444123,
          -3.034949146676372,
          -2.411540484058249,
          -3.1300119496719043,
          -3.3464181789371965,
          -3.2977167512641525,
          -3.284250210312084,
          -2.911157608739977,
          -7,
          -3.6892200372638357,
          -7,
          -7,
          -7,
          -2.5861508162245195,
          -7,
          -7,
          -2.773108939489977,
          -2.190523521436355,
          -2.109722064140192,
          -7,
          -3.4575791469957626,
          -3.6373646266794686,
          -3.518908573691414,
          -4.065355601289965,
          -7,
          -4.0143104809633074,
          -2.931359432137285,
          -7,
          -7,
          -3.568983532526376,
          -4.0127528874912155,
          -2.749124111204883,
          -7,
          -3.240341203017829,
          -7,
          -7,
          -7,
          -2.35786341111216,
          -2.6607402205351565,
          -7,
          -7,
          -7,
          -3.3315082762863892,
          -1.9667086841340151,
          -7,
          -7,
          -2.963577972554372,
          -7,
          -2.4855607611392485,
          -7,
          -2.0774377893428646,
          -4.013932120711204,
          -3.9857407410500745,
          -3.720434958433874,
          -7,
          -3.3870930757416673,
          -3.978317496746751,
          -7,
          -3.3992698070995253,
          -3.406242032884039,
          -7,
          -3.5716797226239247,
          -2.1791309979534557,
          -4.109139643904016,
          -7,
          -3.381716596708923,
          -3.2196967711811264,
          -3.3723902909904426,
          -7,
          -2.5549600128917778,
          -2.8924220014861617,
          -7,
          -3.525044807036845,
          -7,
          -7,
          -3.137464198692464,
          -2.9839268369509955,
          -3.5166235018348,
          -2.760007594399437,
          -2.118578787437554,
          -3.557226403727186,
          -2.5503036305145543,
          -3.3198988389606625,
          -3.2200099682636307,
          -3.4583734153747776,
          -3.9839869219651898,
          -4.020899672862536,
          -7,
          -4.117702061209315,
          -4.125253486024798,
          -3.2287210842783987,
          -7,
          -7,
          -7,
          -2.9013934461316766,
          -7,
          -3.501013592678627,
          -7,
          -7,
          -3.9681559371499704,
          -7,
          -7,
          -2.1218059731155416,
          -3.5399538416563967,
          -7,
          -7,
          -3.985695859689842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6340538534220705,
          -3.014310480963307,
          -7,
          -3.9875322027298394,
          -7,
          -7,
          -7,
          -7,
          -3.428037553035308,
          -7,
          -7,
          -4.081635301502951,
          -3.0148258961140812,
          -3.7504698234687637,
          -7,
          -7,
          -7,
          -7,
          -3.0064660422492318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1902382914634244,
          -7,
          -7,
          -4.213291918281081,
          -7,
          -7,
          -7,
          -4.276989989368231,
          -3.989494312772709,
          -3.656385719058688,
          -7,
          -7,
          -7,
          -3.569958818096594,
          -3.119307993152975,
          -7,
          -7,
          -3.293362554711446,
          -4.031505412197983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.185581814639974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.779189213682492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.643057683751453,
          -7,
          -7,
          -7,
          -3.8403570592033565,
          -7,
          -7,
          -7,
          -3.4586378490256493,
          -7,
          -3.9362120443202486,
          -7,
          -7,
          -7,
          -4.834767110869274,
          -7,
          -7,
          -7,
          -7,
          -4.031448861859383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5059183613264397,
          -3.824971461123693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.132163596050864,
          -7,
          -7,
          -7,
          -7,
          -3.961974486582087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4559536698309694,
          -7,
          -7,
          -7,
          -4.162790498256462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.063783560597355,
          -7,
          -7,
          -7,
          -3.219633636956903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4885507165004443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.164531296305431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.59972845899828,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.462210761646044,
          -7,
          -7,
          -7,
          -7,
          -3.5959995535214295,
          -7,
          -3.424936056088804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1784301399477375,
          -7,
          -3.4744105358226856,
          -7,
          -7,
          -7,
          -7,
          -3.94215692846749,
          -3.7367151336056112,
          -7,
          -7,
          -3.091114004305992,
          -3.2364952743003883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4539677667583994,
          -7,
          -7,
          -3.027333697880316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.165301777551698,
          -7,
          -7,
          -7,
          -7,
          -3.628899564420607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5495520633853173,
          -7,
          -3.4818803652233727,
          -7,
          -7,
          -7,
          -4.115144351793107,
          -7,
          -3.3925210899319325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7670816213633223,
          -7,
          -7,
          -3.6829569263012085,
          -4.062860770694389,
          -7,
          -7,
          -4.0517504719073445,
          -3.5748411950633847,
          -7,
          -7,
          -3.7080808104682315,
          -3.485756906607567,
          -3.807061239917239,
          -7,
          -7,
          -7,
          -3.741624257503812,
          -3.5514827421828254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.398882851161249,
          -4.44100348364844,
          -3.952789561110113,
          -7,
          -7,
          -5.0318324518318445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.24384384757082,
          -7,
          -7,
          -2.6780577845734572,
          -2.9129767924100274,
          -3.7372721765355434,
          -3.091373812473584,
          -4.261683078359308,
          -2.996171029930056,
          -2.234264124378789,
          -3.323489298403336,
          -2.3788076702177325,
          -2.9884903533744995,
          -7,
          -2.8757145484344777,
          -3.2390177847393633,
          -3.5641247607847664,
          -2.3023797440604157,
          -3.3103569312843244,
          -3.359361102738486,
          -2.6605442616845707,
          -3.029945405802438,
          -2.842572532981465,
          -3.84223468634724,
          -3.685871647578485,
          -3.165738797864829,
          -2.6345475652023325,
          -2.537024762287411,
          -3.913513626432214,
          -3.307103640720233,
          -2.9449054803762325,
          -3.733999286538387,
          -2.661631761394197,
          -2.1791769792994247,
          -3.7511250715355837,
          -3.78265175161032,
          -2.9111344395713137,
          -2.3846691002476987,
          -4.1850035564918056,
          -3.42845877351558,
          -3.219860163746929,
          -2.5657297878311267,
          -2.7053819439084843,
          -7,
          -3.3183851086757383,
          -3.6463165753710434,
          -3.735918116531297,
          -3.285613561126485,
          -3.6902669794624976,
          -7,
          -3.436999507587265,
          -7,
          -7,
          -4.011753651565362,
          -4.074455292377034,
          -4.009586857130916,
          -7,
          -7,
          -7,
          -7,
          -3.9740970037941312,
          -7,
          -3.8943160626844384,
          -7,
          -4.528428165537636,
          -3.5144652617283954,
          -4.118026340232679,
          -7,
          -7,
          -7,
          -3.5390482048667,
          -3.964118143151485,
          -4.234670794831644,
          -2.659599312436744,
          -7,
          -7,
          -7,
          -3.7025454139708356,
          -3.690993032099869,
          -7,
          -3.9905830212758984,
          -3.981501488148247,
          -3.0634760790072133,
          -4.053219342138294,
          -7,
          -3.703706840716946,
          -3.479449917038245,
          -7,
          -4.0526477788535225,
          -7,
          -2.8505849763520317,
          -4.339948061694351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.445085022719354,
          -2.322192435864935,
          -7,
          -3.567285217961632,
          -3.586249638866042,
          -2.9289929379588013,
          -2.393601262762674,
          -2.348927619178392,
          -7,
          -7,
          -2.6630062128618666,
          -7,
          -3.299916512376326,
          -3.2615602289423533,
          -3.1421808211559457,
          -3.7275412570285567,
          -2.786803984261438,
          -3.4222614508136027,
          -2.850479145287359,
          -2.5287189791351987,
          -3.1366148865422088,
          -3.2638726768652235,
          -3.0148354350727975,
          -3.629817196018516,
          -7,
          -7,
          -7,
          -2.1946612311654072,
          -7,
          -7,
          -2.6153370597431524,
          -2.89765782100233,
          -2.3982791687688554,
          -7,
          -2.73253996230942,
          -7,
          -3.643156465619706,
          -7,
          -7,
          -7,
          -3.367894054656778,
          -7,
          -3.2829618035343353,
          -3.146283113159587,
          -7,
          -2.019863713967843,
          -7,
          -2.788433535176211,
          -7,
          -3.019012379815664,
          -7,
          -2.853461603499059,
          -2.245256522432556,
          -7,
          -3.824386202318774,
          -7,
          -3.240133058042887,
          -1.9422406484836812,
          -2.912434633375575,
          -7,
          -3.2656038765850357,
          -7,
          -3.0346805077668035,
          -3.783975003412671,
          -1.831380385916425,
          -7,
          -3.1416587697865523,
          -3.5333483150767298,
          -7,
          -2.6797147174141145,
          -7,
          -7,
          -7,
          -2.627272730296267,
          -7,
          -7,
          -3.0276245407121563,
          -7,
          -7,
          -3.465977368285823,
          -7,
          -7,
          -3.6634182122526795,
          -2.248287721868922,
          -2.396593009974529,
          -3.1936810295412816,
          -3.179360261070836,
          -7,
          -7,
          -2.9103241897893297,
          -2.246961766528978,
          -3.6379897807846855,
          -2.2313967649954636,
          -2.1070551770361226,
          -3.122625396909397,
          -2.363240756276155,
          -3.241308712641187,
          -2.848189116991399,
          -7,
          -3.13756508756235,
          -7,
          -3.561220678933944,
          -7,
          -7,
          -2.6247704635184332,
          -7,
          -7,
          -7,
          -2.6327997957371,
          -7,
          -3.601734148260105,
          -7,
          -7,
          -3.577146984827525,
          -7,
          -2.980571448161674,
          -2.153676311310365,
          -3.3880123433641907,
          -7,
          -7,
          -2.9192873405043827,
          -7,
          -7,
          -7,
          -3.612571954065176,
          -7,
          -7,
          -4.2046896204203605,
          -2.5893667208240703,
          -7,
          -7,
          -7,
          -3.343014497150768,
          -7,
          -7,
          -3.7620906057314665,
          -7,
          -7,
          -3.515211304327802,
          -2.404833716619938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5038474053823325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2807526808187015,
          -7,
          -7,
          -7,
          -3.067467630566799,
          -3.273488627403873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.583484811154959,
          -7,
          -7,
          -4.079922532785249,
          -3.185122539673452,
          -7,
          -7,
          -7,
          -7,
          -4.317791816053072,
          -7,
          -3.6888224537429393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5578078557646045,
          -4.305286865476126,
          -2.9117177342322664,
          -7,
          -7,
          -3.856406623801429,
          -7,
          -4.07523664020612,
          -7,
          -7,
          -7,
          -3.7144764560755936,
          -7,
          -3.510129715427748,
          -4.34609858337099,
          -7,
          -4.408680821810468,
          -4.306489362708483,
          -7,
          -4.345687328898848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7318542123823653,
          -4.301073422940844,
          -7,
          -4.039949220939654,
          -7,
          -4.0935792634395645,
          -7,
          -7,
          -7,
          -3.4680802174026253,
          -7,
          -4.335919030990713,
          -7,
          -7,
          -4.430204098631749,
          -4.331730892815457,
          -7,
          -7,
          -7,
          -3.8326153443896276,
          -7,
          -7,
          -7,
          -4.324261872133069,
          -2.95005010742846,
          -3.6599542110524927,
          -3.8730879855902858,
          -7,
          -7,
          -7,
          -3.626996959365406,
          -3.8615543230335403,
          -7,
          -7,
          -4.224299926079827,
          -7,
          -4.297826142585328,
          -7,
          -3.982406928863795,
          -7,
          -4.03726709456871,
          -4.319938439980309,
          -4.37427164327598,
          -3.6820146380241794,
          -7,
          -7,
          -4.316222037426816,
          -7,
          -3.361031612033991,
          -7,
          -7,
          -7,
          -4.360006132229098,
          -3.7724500687215876,
          -7,
          -3.4937621344328145,
          -2.8238744531843705,
          -7,
          -7,
          -7,
          -3.2653190965276826,
          -7,
          -4.346216013155006,
          -3.6709320156880003,
          -7,
          -7,
          -4.117702061209315,
          -7,
          -7,
          -7,
          -3.2686390097338123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7002420700306993,
          -7,
          -3.6239725120169965,
          -4.384443024058778,
          -4.0088768399046995,
          -3.2544352796249596,
          -7,
          -7,
          -7,
          -3.2325584913806904,
          -4.115693701882753,
          -7,
          -7,
          -7,
          -3.779820874875269,
          -7,
          -7,
          -4.328685336983151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.430462069819556,
          -7,
          -7,
          -3.3408505996186073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3641756327706194,
          -4.304081029459922,
          -3.470986875643894,
          -7,
          -3.245354008546808,
          -3.1531658615805016,
          -4.011337799051992,
          -2.967259886999739,
          -3.4118814755818088,
          -3.5418911250960012,
          -7,
          -2.752982303235319,
          -4.327440676242755,
          -7,
          -7,
          -4.37427164327598,
          -7,
          -4.380717623275317,
          -7,
          -3.753291899757915,
          -7,
          -4.3157919753496214,
          -7,
          -4.0180344027045285,
          -7,
          -4.400106070428546,
          -4.307816826662431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.861614054079856,
          -3.7212436846981767,
          -4.423737249982329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5369685561577207,
          -4.365843511533739,
          -3.371305405219536,
          -2.463564205754188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4380796338230235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6057000062196667,
          -7,
          -4.405653656099307,
          -3.6356680147894007,
          -4.325905450354342,
          -7,
          -7,
          -3.5611447675441923,
          -4.331407049219782,
          -3.5248178775073047,
          -7,
          -2.2610149130438777,
          -7,
          -4.302806962741421,
          -7,
          -7,
          -3.793964905280631,
          -4.154241330167298,
          -4.0897638544916886,
          -4.1189918001959756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.599961007377962,
          -4.317415586331099,
          -4.043735492958779,
          -4.322136564096103,
          -2.852345049726324,
          -4.434664693722909,
          -7,
          -3.225601410589217,
          -7,
          -7,
          -7,
          -7,
          -3.499198149854234,
          -4.353916230920363,
          -7,
          -7,
          -7,
          -7,
          -2.45081748723977,
          -3.3487752561911313,
          -7,
          -7,
          -7,
          -4.399344848180367,
          -4.371695749117709,
          -4.30513631894364,
          -7,
          -7,
          -7,
          -7,
          -4.305265362023449,
          -7,
          -7,
          -7,
          -4.070905588138982,
          -3.406604042573899,
          -3.3582490253904624,
          -3.8630550617948773,
          -3.0192717565242306,
          -4.009110806132213,
          -4.106972399886674,
          -3.3847363232927834,
          -4.404012226182244,
          -7,
          -7,
          -7,
          -4.358505911490235,
          -4.104981897748486,
          -7,
          -7,
          -7,
          -7,
          -4.0389974726186795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.595496221825574,
          -7,
          -7,
          -2.2703129635463952,
          -2.083787164527067,
          -2.215017272177907,
          -3.5944293846472695,
          -3.187851649239775,
          -3.2014982759412427,
          -2.427063943715794,
          -1.6580891171752072,
          -1.6420777761975676,
          -3.3807989509841128,
          -2.8757145484344777,
          -7,
          -2.9201293958827286,
          -3.1105933696576265,
          -2.5642714304385623,
          -1.9036368885651656,
          -2.2572432976796954,
          -2.8103213009451276,
          -3.33248174292299,
          -2.068650987459734,
          -3.1595107974562135,
          -2.35509146725887,
          -2.787997211610608,
          -0.8852321221528484,
          -2.6659207135605842,
          -3.267406418752904,
          -3.0556130144779496,
          -2.5125761664772472,
          -3.857191730038569,
          -1.9994329149004895,
          -2.7868804268938447,
          -2.807281277268819,
          -2.7857934390100025,
          -2.951623914708634,
          -3.425187657417824,
          -2.8842564255361953,
          -2.7752948358246115,
          -2.7427890498392022,
          -1.7238471163939972,
          -3.3341807951817017,
          -7,
          -3.2291631327218884,
          -3.3196248838045315,
          -3.4779408149553697,
          -3.5331544660607777,
          -3.530060889683707,
          -4.3350364406355135,
          -2.776614663432653,
          -4.164456954998157,
          -7,
          -3.826925889164468,
          -3.0861720208846997,
          -3.5725295541760693,
          -4.321971055526301,
          -3.669558604643371,
          -4.114026862446869,
          -7,
          -4.107142105833073,
          -2.739643331627827,
          -7,
          -7,
          -3.5645366145556583,
          -2.900617546897137,
          -2.8789144981790824,
          -7,
          -7,
          -7,
          -3.495643434975721,
          -4.404560059092356,
          -3.9186529448762197,
          -4.018520198529056,
          -3.6004404347082204,
          -7,
          -3.9069058230743323,
          -3.2684562775010506,
          -3.522726715604926,
          -3.6698745024898027,
          -3.9511431601075526,
          -3.234382283672649,
          -3.0432297769069407,
          -3.1677168617280866,
          -7,
          -3.2101157547109618,
          -3.0352394685131796,
          -4.361595639318234,
          -2.8802327790571143,
          -7,
          -4.367057590612843,
          -3.300095257323717,
          -3.269746373130767,
          -7,
          -7,
          -7,
          -7,
          -3.1852410473078057,
          -2.861356052170766,
          -7,
          -3.6363875858131567,
          -4.000694315866355,
          -4.328012438855587,
          -3.440363248545816,
          -3.7364363439795194,
          -7,
          -7,
          -3.69810054562339,
          -7,
          -3.1501633583189568,
          -4.0697790608815145,
          -7,
          -7,
          -3.6700204280902877,
          -4.331771356290927,
          -4.38008455401153,
          -3.8365139988906716,
          -4.0062092405376575,
          -7,
          -4.307966447028274,
          -4.009429647995079,
          -7,
          -4.3564656684754,
          -7,
          -4.472053991449704,
          -7,
          -7,
          -2.854809451525546,
          -2.9035143691536285,
          -2.1688410903647286,
          -7,
          -4.345158000269438,
          -7,
          -7,
          -4.348012638422195,
          -7,
          -4.322136564096103,
          -3.4561907848321316,
          -7,
          -7,
          -7,
          -7,
          -2.8380931384455983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4629667009097616,
          -1.8829559936467783,
          -7,
          -7,
          -7,
          -3.2507045590068007,
          -3.267614925979812,
          -4.3068965975393665,
          -4.301377292349344,
          -3.9581336756762355,
          -4.332478857523364,
          -2.954508910234011,
          -4.347486138076573,
          -3.4127591213991164,
          -4.321950362519417,
          -7,
          -3.518694858223309,
          -7,
          -3.1985024450926027,
          -7,
          -7,
          -7,
          -3.717129377876929,
          -7,
          -7,
          -3.2126851382937613,
          -7,
          -7,
          -4.120343562438025,
          -4.347954169894016,
          -7,
          -4.317729133728953,
          -3.6339731557896737,
          -2.9636607158787847,
          -7,
          -7,
          -7,
          -7,
          -2.9438138538855756,
          -3.0454990084378832,
          -7,
          -4.346509448774761,
          -2.918800028747105,
          -4.031125575731565,
          -3.2740808398686907,
          -3.3563446054510298,
          -3.7771729868397044,
          -7,
          -4.307474643569412,
          -7,
          -7,
          -4.3761022583701,
          -4.380283618094059,
          -3.6850785976925997,
          -7,
          -7,
          -7,
          -3.182591726772166,
          -7,
          -7,
          -4.2977167512641525,
          -7,
          -7,
          -7,
          -7,
          -3.5067586350292483,
          -3.6244471170144004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3069608628831935,
          -7,
          -7,
          -4.507828896045528,
          -3.144781706171568,
          -3.775919768093692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3259430428795245,
          -7,
          -7,
          -4.356580328640258,
          -3.112585289100924,
          -7,
          -7,
          -7,
          -4.334956116136851,
          -7,
          -3.1470030416463004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.720349524086064,
          -2.2392673332458615,
          -7,
          -7,
          -7,
          -3.5725295541760693,
          -3.4001860878367687,
          -4.723545969628407,
          -7,
          -7,
          -7,
          -4.716779368873068,
          -2.708801104616171,
          -4.7731645347378375,
          -7,
          -3.846878096517459,
          -2.866564224322712,
          -4.245274069329869,
          -7,
          -7,
          -4.4288310513865685,
          -7,
          -4.242433752322269,
          -3.3977488770479587,
          -4.421381787662514,
          -4.416265954074959,
          -7,
          -4.242549709960113,
          -4.030219092203501,
          -4.718418641829656,
          -7,
          -7,
          -4.254322452836917,
          -4.7193147105421165,
          -3.421286223713023,
          -4.7178950800038555,
          -7,
          -3.9522191382314986,
          -7,
          -3.9028883034451844,
          -7,
          -7,
          -4.4377030097263495,
          -7,
          -4.7272158209084925,
          -2.4712818196355943,
          -3.3201303014782138,
          -3.696130590122991,
          -3.8589355191353056,
          -7,
          -4.721414872624389,
          -4.434289396703876,
          -7,
          -7,
          -7,
          -7,
          -4.7209692307416224,
          -4.265588169448128,
          -4.05703544658085,
          -7,
          -7,
          -4.432391984779924,
          -7,
          -7,
          -4.747388499864813,
          -4.717420836722375,
          -7,
          -3.3639197310923956,
          -7,
          -4.0323447224179185,
          -7,
          -7,
          -4.072771766971065,
          -4.127590677007958,
          -4.241936440037947,
          -4.71610355387604,
          -3.8322533701970083,
          -4.022032252601962,
          -3.738003205183249,
          -4.139083725519777,
          -4.125700797303299,
          -7,
          -2.9245662046369683,
          -4.439798323663113,
          -3.6166015302784342,
          -7,
          -7,
          -7,
          -3.685912654996182,
          -7,
          -3.789463192347201,
          -7,
          -3.817611638957548,
          -7,
          -7,
          -7,
          -3.279837982245049,
          -7,
          -4.732353545509138,
          -7,
          -4.270065189874711,
          -3.136928010655581,
          -7,
          -7,
          -4.024526714387152,
          -7,
          -3.6245857321792334,
          -4.421101895083551,
          -7,
          -4.031481177240234,
          -4.440184654070886,
          -4.270212854896243,
          -4.722288323541742,
          -4.044670394919461,
          -2.869597363597986,
          -7,
          -7,
          -7,
          -3.854401480650361,
          -4.246465753063679,
          -4.133443097549098,
          -4.268281477192605,
          -7,
          -7,
          -3.2859342110607686,
          -4.037983949447127,
          -7,
          -7,
          -3.4430426687837388,
          -7,
          -7,
          -7,
          -4.717420836722375,
          -7,
          -4.317331935445897,
          -3.9773806058118346,
          -3.9155119563119665,
          -3.7514176864921724,
          -7,
          -3.99392829901039,
          -7,
          -7,
          -4.724161135149409,
          -2.917381115415925,
          -4.765728145110631,
          -7,
          -7,
          -4.721266376133869,
          -3.5746903913851122,
          -7,
          -7,
          -7,
          -4.725086342200653,
          -7,
          -4.424179013578782,
          -7,
          -4.43215924174396,
          -7,
          -7,
          -4.470873354461882,
          -7,
          -7,
          -2.760084359239955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.547318532678011,
          -4.718850313114124,
          -3.807768655253699,
          -7,
          -4.45374630677039,
          -2.4526453462368933,
          -3.818868938770039,
          -3.0342041035442273,
          -3.7023600283713543,
          -4.725143591132016,
          -4.431033896809084,
          -4.2489454550567345,
          -4.7279883338825,
          -7,
          -3.1941142247242476,
          -7,
          -7,
          -7,
          -7,
          -4.782042416620554,
          -7,
          -4.565753396565981,
          -7,
          -3.7232846023981594,
          -7,
          -4.457306491666998,
          -4.72029163965499,
          -7,
          -7,
          -7,
          -4.756871825857871,
          -4.731040515294573,
          -7,
          -3.7324018022389076,
          -2.6089137703064407,
          -3.188536250695248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.719555007041931,
          -7,
          -7,
          -2.7028319885284087,
          -4.442620852656338,
          -3.3083175852045503,
          -2.8604921461811275,
          -7,
          -7,
          -7,
          -4.2465314060467065,
          -7,
          -7,
          -7,
          -4.425640172818134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.438984050853466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.41965841096058,
          -7,
          -4.119198133511922,
          -7,
          -4.728093939379775,
          -3.9825651870905556,
          -2.906095497131669,
          -7,
          -7,
          -7,
          -3.443654067612905,
          -3.775197678221991,
          -2.8388338627535266,
          -7,
          -2.84728947092095,
          -4.722304786874328,
          -7,
          -4.718717536873734,
          -4.186164961727415,
          -4.057582431413954,
          -3.7040718331758637,
          -3.851113049853365,
          -4.7672078298343825,
          -4.725674828273515,
          -7,
          -7,
          -7,
          -3.5897821032911432,
          -4.433617844253738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.128512351515452,
          -3.778585327862962,
          -4.246875921472082,
          -7,
          -7,
          -2.789201276386549,
          -3.995613259978898,
          -7,
          -3.7044263080176774,
          -4.41608272151237,
          -4.7218270966638265,
          -4.442934207756266,
          -3.449177857792815,
          -2.5762477421696715,
          -3.181851524540416,
          -7,
          -4.728556675966476,
          -7,
          -4.7315404180265235,
          -2.453093451791766,
          -3.691597150121523,
          -7,
          -7,
          -7,
          -3.979791099026134,
          -3.9678988267686317,
          -7,
          -7,
          -4.4326566786702815,
          -7,
          -4.729893403963238,
          -4.418259849029347,
          -7,
          -7,
          -4.723143590360814,
          -3.666892211066536,
          -7,
          -3.392510535867316,
          -3.704470826766164,
          -2.6894274050095857,
          -4.7212086137835625,
          -2.897438783399574,
          -3.745768862350299,
          -4.157962696891443,
          -7,
          -4.7224529287900365,
          -7,
          -3.4850664949549346,
          -7,
          -4.453708112597456,
          -4.1278253236331075,
          -7,
          -7,
          -4.130944568044679,
          -7,
          -4.720754499225801,
          -7,
          -7,
          -7,
          -2.7676418031828867,
          -7,
          -7,
          -2.5745451490260423,
          -2.556136888509495,
          -2.431700296126159,
          -3.424048946464159,
          -1.326839984927838,
          -2.5557163181878044,
          -2.6765977445754525,
          -1.7860040591971704,
          -2.300466146449801,
          -3.0367999335587545,
          -3.2390177847393633,
          -2.9201293958827286,
          -7,
          -0.6365434159664949,
          -2.406637769217446,
          -3.023192795602583,
          -2.1644910844766794,
          -2.421151220118294,
          -1.6082746126938272,
          -3.176163635438134,
          -2.963897960531188,
          -1.9598460752931772,
          -2.3315238475872873,
          -2.429680746621696,
          -2.1578492750447857,
          -2.456983802056859,
          -0.818488609320864,
          -1.5245601896323777,
          -2.9036244236153435,
          -2.3762930992903013,
          -2.818100471323298,
          -0.8754081495280539,
          -2.273348870888125,
          -2.2698529110122228,
          -3.4728864095132606,
          -2.2404044317337615,
          -2.314178888357582,
          -2.906041036728826,
          -2.5799337777611733,
          -3.167143788623054,
          -7,
          -3.037882245797163,
          -2.5756714430644854,
          -3.8184605047247477,
          -3.544649299599081,
          -2.6847975028662603,
          -4.731024379815688,
          -2.592071332845231,
          -4.788239097382168,
          -7,
          -3.6681281800318333,
          -2.778391444902281,
          -3.3954312402469182,
          -7,
          -3.596085536398726,
          -3.9867568098008093,
          -7,
          -3.4394003708137886,
          -3.553675014594602,
          -7,
          -7,
          -2.9811038911421357,
          -2.579879636568188,
          -2.7761143546073774,
          -7,
          -4.450664723252152,
          -7,
          -2.971914517208946,
          -4.061279028255576,
          -3.239565356161048,
          -3.5985306180872705,
          -4.054823640146561,
          -7,
          -3.4802225985844752,
          -2.965273657696096,
          -3.0364389585099576,
          -4.74498886151134,
          -3.9870211101488646,
          -3.8599409698362095,
          -2.969196179923055,
          -3.346781030447889,
          -7,
          -2.912756426732738,
          -2.995892805093479,
          -7,
          -2.8103755332701614,
          -7,
          -7,
          -3.0660379833117406,
          -3.8531138935152702,
          -7,
          -7,
          -7,
          -7,
          -2.2606288508494834,
          -2.383901844372175,
          -4.731193772452004,
          -3.244817292184848,
          -7,
          -3.6140774783100187,
          -3.524071415934022,
          -3.6531079488130422,
          -4.729051339750031,
          -7,
          -3.414342707762766,
          -7,
          -2.844522913823384,
          -3.8425702387141323,
          -7,
          -7,
          -2.577343959481118,
          -4.729715411103169,
          -3.3343300029005127,
          -4.421538119690085,
          -3.605942880164922,
          -3.5558196830611912,
          -4.419302990800441,
          -4.119222886923583,
          -4.727411111842715,
          -4.137654721417751,
          -7,
          -4.013139298635354,
          -7,
          -7,
          -2.805697049964797,
          -2.0794247965545014,
          -1.5910039725437615,
          -7,
          -4.434073653785051,
          -3.524244622768923,
          -4.421381787662514,
          -4.259131787155348,
          -7,
          -4.424840817562293,
          -3.393800752213584,
          -7,
          -7,
          -7,
          -7,
          -3.042760762022057,
          -7,
          -3.823580181490171,
          -4.422335359999594,
          -7,
          -4.250785826687035,
          -3.070428626873039,
          -2.8532514966327533,
          -7,
          -3.895580385213198,
          -4.040151199035471,
          -3.3137617962924364,
          -2.7582942184040564,
          -4.1178262411437965,
          -4.4167652866759886,
          -2.9951230979538104,
          -4.729998547283423,
          -2.408794439291495,
          -4.037035855706077,
          -3.382205042064938,
          -3.9475807493043225,
          -2.5658561294957485,
          -3.026926785105189,
          -7,
          -3.914494268631718,
          -4.719124035974351,
          -4.73016834043107,
          -4.063783560597355,
          -3.5784345375094544,
          -7,
          -3.807467375684278,
          -2.644110200429959,
          -7,
          -7,
          -3.651726133614305,
          -7,
          -4.153883431744387,
          -7,
          -3.226118985903011,
          -2.963199289389065,
          -4.724832720466561,
          -4.422540597322725,
          -7,
          -7,
          -2.921563734812705,
          -3.288392965587535,
          -4.119890696287638,
          -2.65458560671649,
          -2.617690610641423,
          -4.030850593183277,
          -2.955727278345016,
          -2.1055305200027217,
          -3.9041821041340743,
          -3.832085588672225,
          -7,
          -7,
          -7,
          -3.9028029475875803,
          -4.4487295022658,
          -2.979702664346866,
          -7,
          -4.25009456618883,
          -7,
          -3.142190307192792,
          -4.721546826892598,
          -7,
          -7,
          -7,
          -7,
          -4.415791055742342,
          -4.416698742157362,
          -2.88658095880711,
          -3.68490245896855,
          -7,
          -7,
          -3.766098745914636,
          -7,
          -4.719065987963929,
          -7,
          -7,
          -4.130446348767577,
          -4.123949591081828,
          -3.7295494884361307,
          -3.4572686093294647,
          -7,
          -4.419765806330483,
          -7,
          -3.785922728593503,
          -7,
          -7,
          -2.0863757697442034,
          -7,
          -4.720960973800096,
          -7,
          -3.478967099332149,
          -7,
          -4.717196014288484,
          -4.416615547168045,
          -4.730992107059345,
          -7,
          -3.4932798661842517,
          -4.72596877254668,
          -7,
          -7,
          -7,
          -4.996472268649586,
          -7,
          -7,
          -7,
          -7,
          -5.000742009326735,
          -7,
          -4.521395270332305,
          -2.0688106133725332,
          -4.238547887681328,
          -7,
          -7,
          -3.7362105259869303,
          -3.458501874686394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7658601693581533,
          -4.550028490833373,
          -7,
          -4.1113045292815915,
          -2.490660190249227,
          -7,
          -7,
          -7,
          -4.702542542403012,
          -7,
          -4.697094149742253,
          -3.0799373127778655,
          -4.698592003682626,
          -7,
          -7,
          -4.52105522846,
          -4.401163509874326,
          -4.997517439414725,
          -7,
          -7,
          -4.226238917075984,
          -7,
          -2.8883171754889676,
          -4.696203441212152,
          -7,
          -4.7028482577600945,
          -7,
          -4.110219223689404,
          -4.997849268568125,
          -7,
          -3.8620887659114524,
          -7,
          -5.002166061756507,
          -2.3515394543670167,
          -3.2502316216477674,
          -4.074145715443282,
          -4.020978304790254,
          -7,
          -7,
          -4.705457439875169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.533339835991969,
          -4.0622605454970895,
          -7,
          -7,
          -4.704442237268507,
          -4.996498538049875,
          -4.540529679695608,
          -7,
          -7,
          -5.006183552012837,
          -2.6581522930956862,
          -7,
          -4.3053771683525195,
          -7,
          -4.997622254961639,
          -4.248214474078034,
          -4.702447770011604,
          -4.520732378332008,
          -4.996301478805604,
          -3.591372872376177,
          -4.396826789268784,
          -3.7774182925111446,
          -4.1064926219915625,
          -4.701442772773218,
          -4.399820768420558,
          -2.81733848745083,
          -5.009455145234674,
          -3.9967941582341497,
          -7,
          -7,
          -7,
          -4.002222235519126,
          -4.527853219439823,
          -3.8970219560603634,
          -7,
          -3.9732933775729475,
          -7,
          -7,
          -4.996415346163988,
          -3.361575143217912,
          -7,
          -5.004901478799332,
          -5.001002063315146,
          -4.53576234847312,
          -3.2247777745222037,
          -7,
          -7,
          -4.155079984230847,
          -7,
          -3.509884883455448,
          -4.698444189830948,
          -7,
          -4.401835479094576,
          -4.106513862313081,
          -4.410895277968898,
          -4.999556793554726,
          -3.693673432840502,
          -2.8384656793906378,
          -7,
          -4.245759355967277,
          -7,
          -3.136273450520397,
          -7,
          -3.9651332556473258,
          -4.31293015797777,
          -7,
          -4.998869363882344,
          -3.5970586317707034,
          -4.530259478972904,
          -7,
          -7,
          -3.495305902889453,
          -7,
          -7,
          -7,
          -4.996992981890705,
          -7,
          -4.039100679482735,
          -4.0173964914623195,
          -3.939085125220391,
          -4.237065952555404,
          -4.998939026549519,
          -4.248410612082095,
          -7,
          -7,
          -4.699508195883737,
          -2.995690520245701,
          -4.420953643599573,
          -7,
          -7,
          -4.999017383695767,
          -3.4721939232088554,
          -7,
          -7,
          -7,
          -5.001036725417776,
          -7,
          -5.001110373201611,
          -7,
          -4.7043178510491535,
          -7,
          -7,
          -4.181324900516111,
          -7,
          -4.998355256330765,
          -2.6381982035389635,
          -4.219763480832674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.667960247051014,
          -4.997744507802489,
          -3.9571798173186563,
          -7,
          -4.01694981309756,
          -2.335090567509085,
          -4.045131655797483,
          -3.4018332745170223,
          -4.1079600064071435,
          -4.523928468273403,
          -4.70371686421357,
          -4.302569010936054,
          -7,
          -7,
          -3.6211806108451845,
          -7,
          -7,
          -7,
          -7,
          -4.554997659078943,
          -5.003107093215893,
          -4.303613586003601,
          -7,
          -4.140676919956626,
          -7,
          -4.717936655596407,
          -7,
          -7,
          -7,
          -7,
          -4.7171252127617045,
          -7,
          -7,
          -4.159854966195215,
          -2.667603798222223,
          -3.231884579725797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.998115421830749,
          -7,
          -7,
          -2.9635883772282843,
          -4.408892612860078,
          -3.458963084952302,
          -2.51940983254529,
          -7,
          -7,
          -4.9984380774785055,
          -5.000295219884306,
          -7,
          -7,
          -7,
          -5.00188508390488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.002109880727161,
          -2.398842966792188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.998721293602391,
          -7,
          -4.999039147060988,
          -4.413077529551733,
          -4.400546623391249,
          -4.543177863009376,
          -3.158436851222544,
          -5.002252479920538,
          -7,
          -7,
          -3.6454695755396407,
          -4.049105987818543,
          -3.0815600488549695,
          -7,
          -2.955453008282639,
          -4.999565488225983,
          -7,
          -7,
          -5.035645830977186,
          -4.114873582939299,
          -4.129758349398127,
          -4.11361333017611,
          -4.324854277099497,
          -5.001348559913318,
          -7,
          -7,
          -7,
          -3.8026668483425246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.304972809313226,
          -3.6150917778889546,
          -4.523338853616795,
          -7,
          -7,
          -2.6902686922258034,
          -3.823298943588325,
          -7,
          -3.5036029866649097,
          -4.695801150661582,
          -4.522174617722214,
          -4.534009174167328,
          -3.7984520950361382,
          -2.808421232157792,
          -3.451705434693038,
          -4.719497016610582,
          -5.002878497871973,
          -5.0089321523893044,
          -5.004467547322978,
          -2.2896490591165537,
          -3.9844536631926446,
          -7,
          -7,
          -7,
          -3.842584279440326,
          -4.109160755162784,
          -7,
          -7,
          -4.40353659220864,
          -7,
          -5.00358976718914,
          -4.9979845471666975,
          -5.015916938047925,
          -7,
          -7,
          -3.836163705227655,
          -4.998947733597284,
          -2.993273089347496,
          -3.811462114140843,
          -2.325126873704227,
          -4.299982082719686,
          -2.909244961224737,
          -3.294485488709798,
          -4.542779796679602,
          -7,
          -7,
          -7,
          -3.5039140446492345,
          -4.543273178913283,
          -5.017004106955629,
          -4.401525468644719,
          -7,
          -7,
          -4.160125384843879,
          -7,
          -4.998747427320433,
          -7,
          -4.536305872351034,
          -7,
          -2.871696335031655,
          -7,
          -7,
          -2.58406577477417,
          -2.5758631694680902,
          -2.629774074295825,
          -3.5209397111548792,
          -1.1523120753493836,
          -2.620089685524072,
          -2.7920351611920013,
          -2.3118366821075793,
          -2.3231642439817457,
          -3.170334064983499,
          -3.5641247607847664,
          -3.1105933696576265,
          -0.6365434159664949,
          -7,
          -2.56100247768708,
          -3.110252917353403,
          -1.955006965141668,
          -2.440305116263434,
          -1.967458826165813,
          -3.1413257861595296,
          -3.3474657774209113,
          -1.979424049114706,
          -2.519712754392714,
          -2.5619903668492667,
          -2.321979395394796,
          -2.391208588858177,
          -0.7319713505186216,
          -1.9270555394242939,
          -2.9060763278487287,
          -2.3427663427956724,
          -2.821787019668142,
          -1.3423384769387705,
          -2.2520215366540106,
          -2.79662007329528,
          -3.6408960461852953,
          -2.755336465082909,
          -2.8853366329178582,
          -2.932795883138276,
          -2.6915789833449795,
          -3.1075242462649646,
          -7,
          -2.8853402755410493,
          -2.2969874504106382,
          -3.9129329633004786,
          -3.8676316115708507,
          -2.7352794480604565,
          -7,
          -2.5550186319677652,
          -5.035629827790439,
          -7,
          -3.4480429520418703,
          -2.6246143661621346,
          -3.183424073896676,
          -5.001426483564586,
          -3.410136548836324,
          -4.244433817983656,
          -7,
          -3.57355535119803,
          -3.856949126259041,
          -4.412258893898136,
          -7,
          -2.54182344038921,
          -2.4785406722075933,
          -2.4619957270926496,
          -7,
          -4.112194305291189,
          -7,
          -2.963732558359301,
          -4.24185764667843,
          -3.187423422851196,
          -3.788553296952315,
          -4.061471328265031,
          -7,
          -3.3453228946874667,
          -2.5922392313282705,
          -2.7944497727116784,
          -4.710654609665483,
          -3.8056405409252037,
          -4.176459219407738,
          -2.6931633469304495,
          -3.49899264875909,
          -7,
          -2.735152816675169,
          -2.968216018931578,
          -7,
          -2.437470203359834,
          -7,
          -4.233059599096587,
          -3.0712452575312317,
          -3.927355695635591,
          -7,
          -7,
          -4.996191962799318,
          -7,
          -2.5427749755100844,
          -2.3967256942857986,
          -4.703244076143745,
          -3.5002860385469017,
          -4.696238405394714,
          -3.5253256032202396,
          -3.525214026475078,
          -3.6825705203662005,
          -5.003141587724114,
          -7,
          -3.787697956697124,
          -7,
          -2.8603946675787126,
          -4.01203958337256,
          -4.396539324126,
          -4.702671744161752,
          -2.7977964379494615,
          -5.003494998557833,
          -3.3606607212593573,
          -3.999635039330251,
          -3.794143716132249,
          -3.5011920917584893,
          -4.521395270332305,
          -4.0959012792258775,
          -5.002269761490024,
          -5.008872584806385,
          -7,
          -4.083092338711451,
          -4.695704895512169,
          -7,
          -2.8560078656920007,
          -2.0934592796492666,
          -1.7293426818743685,
          -7,
          -4.161231060219129,
          -3.8266132855775226,
          -4.522492051086991,
          -5.0070048320815355,
          -7,
          -5.001461111811095,
          -3.5221161996177264,
          -7,
          -7,
          -5.004862829229324,
          -4.52416235813557,
          -3.2902992675457483,
          -4.3962342287858,
          -3.9226605943560844,
          -4.522995988963267,
          -4.220513414767524,
          -4.400464593466745,
          -3.3625506487568675,
          -2.9205688835070207,
          -4.519512983257626,
          -4.3104128948315825,
          -4.40647630890183,
          -3.5258176385229847,
          -3.0136990008982516,
          -3.8842680192180294,
          -4.520059730604128,
          -3.063178290213317,
          -7,
          -2.3957825106707626,
          -4.161740095202392,
          -3.4089180208467798,
          -4.098271561167563,
          -2.790381335859961,
          -3.253017489746188,
          -4.998329099002421,
          -3.843498548954459,
          -4.219693653657075,
          -4.702697579901669,
          -3.94215692846749,
          -3.4954532718481337,
          -7,
          -4.17573954495255,
          -2.7356420508216597,
          -7,
          -4.703368770239115,
          -3.8990759849057426,
          -4.705953468599973,
          -4.318676760084946,
          -7,
          -3.3313995058663104,
          -3.083991358117948,
          -4.699863730746263,
          -4.3981571016442675,
          -7,
          -7,
          -2.835737134448514,
          -3.3937164142875456,
          -4.096253732723975,
          -2.6974483808191083,
          -2.729846051566213,
          -4.003507922770787,
          -2.981100342697114,
          -2.4706685145458436,
          -3.900026619266373,
          -4.006393297179845,
          -4.998433718864469,
          -5.002144454528368,
          -7,
          -4.536183744069879,
          -4.7132510690987335,
          -3.175780637934789,
          -7,
          -5.002183346765043,
          -4.999956568380193,
          -3.151729033249805,
          -7,
          -4.696849823367915,
          -7,
          -7,
          -7,
          -4.996686755600171,
          -4.395077279529279,
          -3.358265990350011,
          -4.30275938280919,
          -7,
          -7,
          -3.8845513831738536,
          -7,
          -4.997857997491355,
          -7,
          -7,
          -4.306004469823467,
          -4.399466041004344,
          -3.81685321027451,
          -3.4625103009160636,
          -4.536642600014271,
          -4.6977392085535925,
          -7,
          -3.8629189739820413,
          -7,
          -7,
          -2.460411189357846,
          -4.999013030891847,
          -7,
          -4.707859609285525,
          -3.4742934117900868,
          -5.005450789574089,
          -7,
          -7,
          -7,
          -4.996621107579201,
          -3.4571709418412215,
          -5.0015043932368455,
          -7,
          -7,
          -7,
          -4.276875221131548,
          -7,
          -7,
          -4.278970693925059,
          -4.592409947570861,
          -3.3098766010711036,
          -7,
          -7,
          -2.704124039236082,
          -4.629175057540406,
          -7,
          -7,
          -3.4942855831558868,
          -2.988648125235751,
          -3.8886287253852263,
          -3.805614117901356,
          -7,
          -7,
          -4.277357044047016,
          -2.265277762889534,
          -4.654195800629739,
          -7,
          -2.7708623790161773,
          -2.689407646790484,
          -4.108993244279538,
          -7,
          -7,
          -4.596322138680332,
          -4.5885518064856425,
          -4.105101244549642,
          -2.8475333646529832,
          -4.108993244279538,
          -4.278090224037604,
          -4.278250442299367,
          -3.9802988641377226,
          -3.5952757118020995,
          -7,
          -7,
          -7,
          -4.598495042273587,
          -3.4676763944587523,
          -3.3471792739642363,
          -7,
          -4.281907896489367,
          -3.234891248646208,
          -7,
          -3.1289097316047707,
          -4.581528692545709,
          -7,
          -7,
          -3.9858192722715877,
          -3.194225641306038,
          -2.2617433682586796,
          -4.001831028855596,
          -3.1652922028417336,
          -3.598034034702018,
          -7,
          -4.584772080866149,
          -4.001603924149798,
          -4.585246349458262,
          -3.98402071613294,
          -3.9841558665135035,
          -4.579257553258723,
          -4.283108920345892,
          -3.4092883851801457,
          -2.6478019710944465,
          -3.880607825103815,
          -7,
          -3.521737223361478,
          -4.577997033811073,
          -4.154271775993095,
          -3.3408405498123317,
          -7,
          -7,
          -3.2828435144698207,
          -7,
          -3.4519508268511805,
          -7,
          -7,
          -2.9524824679356727,
          -3.6928359076142545,
          -3.979457318097848,
          -4.1003130949578255,
          -4.126726516579761,
          -7,
          -4.005405755074863,
          -4.310587114890355,
          -4.11634203918834,
          -7,
          -2.47438284827198,
          -3.9121157290788537,
          -3.232306206383841,
          -4.1015637886590275,
          -7,
          -7,
          -3.3373926976485757,
          -4.29886398819428,
          -4.138028874733356,
          -7,
          -3.8087003759166254,
          -4.584918933640037,
          -7,
          -7,
          -3.1925953275692116,
          -7,
          -4.298634783124435,
          -7,
          -3.6195524378052375,
          -2.9735044105591664,
          -4.5834255004065065,
          -7,
          -4.110544819660737,
          -3.8902197546518407,
          -2.2536800143858366,
          -3.2843179154306097,
          -4.276588167779985,
          -4.296138453408722,
          -4.310640216862898,
          -4.619938129899724,
          -7,
          -3.67691797177574,
          -2.199264367788322,
          -4.583323488156762,
          -4.6465703535357274,
          -4.282780668249126,
          -3.3136116026561218,
          -7,
          -4.001895894107419,
          -3.537934471999746,
          -4.278136006715478,
          -4.5841841726968395,
          -2.568544573112223,
          -3.7607777873960946,
          -7,
          -7,
          -2.542861390695394,
          -7,
          -7,
          -7,
          -3.9771632326126296,
          -7,
          -2.7667392071108186,
          -4.32990612340021,
          -3.809929885460897,
          -2.991215769578708,
          -7,
          -3.8076509790725868,
          -4.578237961160632,
          -7,
          -3.986402202925147,
          -3.169077441109013,
          -3.4680222264940914,
          -7,
          -7,
          -4.584568664243272,
          -3.4966168337945307,
          -7,
          -7,
          -7,
          -4.589793271836795,
          -7,
          -3.987856115558465,
          -7,
          -4.299790489253733,
          -7,
          -7,
          -4.05043776144578,
          -4.5920545601729215,
          -4.582847113905814,
          -2.295800343216146,
          -4.280760426326267,
          -7,
          -7,
          -4.5849754022565214,
          -7,
          -4.279507247601757,
          -7,
          -2.7295268685288185,
          -7,
          -3.547428546724752,
          -7,
          -3.675462635556488,
          -2.079648086757684,
          -3.107899317144212,
          -2.597322560864555,
          -2.980943597662544,
          -3.5482553731774353,
          -3.3685165806453545,
          -4.114010161703462,
          -7,
          -4.5881932465586495,
          -4.591220479634285,
          -4.142577160920535,
          -7,
          -7,
          -7,
          -4.063717935250528,
          -4.117944868803997,
          -4.4725443682498565,
          -7,
          -2.641350150325749,
          -7,
          -2.713874964044091,
          -3.583028651429957,
          -3.8922393433956706,
          -3.7359409087579105,
          -7,
          -3.2519625023239493,
          -3.518481037534457,
          -7,
          -3.599752109269689,
          -2.1320969558218037,
          -2.552707456634642,
          -7,
          -4.577721524509021,
          -4.104065814376235,
          -4.101437735138849,
          -7,
          -4.582222499269305,
          -7,
          -7,
          -2.5288208020102343,
          -3.500774627565994,
          -2.906591550277436,
          -2.529386337146879,
          -7,
          -7,
          -7,
          -3.383422618537694,
          -4.577951127729755,
          -4.579291879863469,
          -3.642409556693114,
          -3.8929178678308505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.748040522552098,
          -7,
          -7,
          -7,
          -7,
          -3.885496915855738,
          -4.282746696970947,
          -7,
          -3.9824973691977124,
          -4.023190707213023,
          -7,
          -3.257178408417606,
          -2.8562335049184115,
          -3.291468753334798,
          -4.277609214304091,
          -7,
          -2.5711751665451406,
          -3.1038809318054197,
          -2.0258996031849703,
          -7,
          -2.3959134876036994,
          -7,
          -4.5805828768143675,
          -4.103906298088718,
          -2.7586442281355095,
          -4.155133521965051,
          -3.043605512125445,
          -3.424799994656599,
          -4.6463449013162945,
          -4.5905966532564,
          -7,
          -7,
          -7,
          -4.1276230495980295,
          -4.301767669438014,
          -7,
          -7,
          -7,
          -7,
          -3.6886978416536516,
          -4.577641134695527,
          -3.341687267347663,
          -2.9280827651572063,
          -3.7431176252147416,
          -3.758013840531501,
          -3.5906858261907315,
          -2.113836231826141,
          -3.353685468703508,
          -7,
          -3.0367823942793577,
          -4.101724167515184,
          -7,
          -4.138228993454836,
          -3.8158101067486827,
          -2.4650249966173132,
          -3.0277143177619745,
          -3.860128296542201,
          -7,
          -4.308809768641485,
          -3.3677833169346525,
          -2.4260327392136625,
          -3.537092242214232,
          -7,
          -7,
          -7,
          -3.8559126891882447,
          -3.3168506299260505,
          -4.280760426326267,
          -7,
          -3.902459802999296,
          -7,
          -4.295292143016351,
          -4.5818814213581875,
          -4.627160952374775,
          -7,
          -4.587138261511774,
          -3.919381469280224,
          -4.584387769446955,
          -3.576126791570625,
          -3.299000890190924,
          -2.9962720047293314,
          -7,
          -3.639067930567106,
          -2.983371577045491,
          -3.52270499273475,
          -7,
          -7,
          -4.278970693925059,
          -3.9117965904372523,
          -3.2574085565304025,
          -4.328766829591525,
          -7,
          -7,
          -7,
          -3.822375148347866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3742678477862706,
          -4.577250458079471,
          -7,
          -1.615575264152138,
          -2.1433481265648875,
          -3.4469796237545136,
          -2.591379655630742,
          -2.851131100146211,
          -2.0028711621238684,
          -2.1982852175720424,
          -2.747594572531689,
          -1.494460637807906,
          -2.022059193165288,
          -2.3023797440604157,
          -2.5642714304385623,
          -2.406637769217446,
          -2.56100247768708,
          -7,
          -2.7025345217164407,
          -2.648623280773163,
          -0.9880076090941453,
          -2.3932614214511165,
          -2.2132900199790764,
          -3.7688177429936056,
          -2.831494189272503,
          -2.4700712032583296,
          -1.8028615604132865,
          -2.2905603916711716,
          -3.768889578891181,
          -2.177159713164186,
          -2.8513988476154615,
          -3.1655960082919816,
          -1.5774993553963323,
          -2.0473773557579658,
          -2.6892164429333363,
          -2.9875396517154216,
          -3.007049865423465,
          -3.0372825946866087,
          -3.278982116865443,
          -3.204555997008698,
          -2.4783935864814053,
          -2.3978735087320993,
          -2.078035082812725,
          -4.58601311649554,
          -2.379971981059453,
          -2.406878962573308,
          -2.3925803667445065,
          -2.8355554343211464,
          -3.0434215987515607,
          -3.694638098784492,
          -1.9962281749156106,
          -3.594530662789344,
          -4.005116136020933,
          -2.320186764043377,
          -2.5535517441075415,
          -2.103917521649834,
          -7,
          -2.450127508295634,
          -3.529222990264051,
          -7,
          -3.525164458378011,
          -2.8701540091435267,
          -4.146138375899948,
          -7,
          -2.7919448265559264,
          -2.140935356902671,
          -3.080398694355803,
          -7,
          -3.847500682027998,
          -4.581653887176893,
          -1.584075686912433,
          -3.858958054718006,
          -3.8115690484294324,
          -2.397132711912124,
          -3.8281441073037863,
          -7,
          -2.8104640202477995,
          -2.628036885368468,
          -2.8167527448722613,
          -2.5387173259661746,
          -2.8151564335444066,
          -2.6522762548686236,
          -2.2203232226446072,
          -2.6977548360067924,
          -7,
          -1.9190176999342903,
          -1.577950984534137,
          -3.4081445287928753,
          -2.8478625703283527,
          -7,
          -2.8150081817089876,
          -2.7286559894768234,
          -3.074747891283198,
          -4.278593568241134,
          -7,
          -7,
          -3.879921229553079,
          -2.9033459813889246,
          -1.692277730333473,
          -4.297059824075058,
          -2.1505180290920993,
          -3.538413768461401,
          -2.8446546561248995,
          -1.8987911888062636,
          -2.3922351600507605,
          -3.993072328895638,
          -4.58029758843657,
          -2.8836208828885987,
          -3.8796462871127257,
          -1.7942502416106776,
          -3.154812096658478,
          -3.5041195694658587,
          -2.5334404683641023,
          -1.783371722611579,
          -2.951701707062042,
          -2.6081000254382913,
          -2.806891904522298,
          -3.1509950913066977,
          -2.2429367436982206,
          -3.327654040806735,
          -3.092618786621763,
          -3.55135017418428,
          -3.910656415587733,
          -4.100025730107863,
          -1.9833146731753937,
          -3.9765104594534497,
          -3.9775521394123414,
          -1.9712042822210618,
          -1.4198155884716908,
          -1.6962648783645868,
          -4.100370545117563,
          -2.231029638923225,
          -3.4864965980488223,
          -2.9942381684952073,
          -4.303962418375775,
          -4.099876225207085,
          -4.590886398373238,
          -2.5662357477435127,
          -4.101036412174182,
          -3.403417959654622,
          -2.606238741465192,
          -7,
          -2.3219906037929525,
          -3.8836954961302164,
          -2.6872613462435067,
          -4.110297838172837,
          -2.929555153595555,
          -4.11651919378264,
          -2.0011879629820015,
          -2.050269725144891,
          -3.5781920805402576,
          -3.656662407539732,
          -3.8306741933963115,
          -3.2726592166607227,
          -1.8353730173054152,
          -3.0256471576060306,
          -3.349014550823123,
          -2.1161420690114334,
          -4.596487133736544,
          -1.581531830238294,
          -3.604528441456295,
          -2.1164603876093295,
          -3.1430259587562195,
          -3.038654218474643,
          -3.285351804567883,
          -7,
          -2.5849265976686113,
          -3.2387302111440825,
          -4.596718021556566,
          -2.854007215310917,
          -2.6684532822414764,
          -7,
          -3.2770608311398055,
          -1.7211625537518984,
          -3.2196683385331144,
          -2.881307826428729,
          -2.0847449955525903,
          -2.777480925923896,
          -2.553515879304976,
          -3.357710695004818,
          -2.414328326814164,
          -2.081597839444891,
          -3.1739143398014065,
          -2.3047285625735836,
          -4.578432899740808,
          -4.100359055693578,
          -2.428490722523472,
          -2.408120326456059,
          -4.108407151772364,
          -2.5011027525524465,
          -1.7151679913006146,
          -2.654917498508147,
          -1.8854265297985533,
          -2.361365722754338,
          -2.287780807637947,
          -3.7584360480054384,
          -2.7302020406314362,
          -3.8935842363360282,
          -3.878498816349271,
          -3.319355941066902,
          -3.2424793108010457,
          -2.324666910859278,
          -7,
          -4.29169067749809,
          -7,
          -1.8492098198301976,
          -4.584952815690992,
          -2.8644654403162026,
          -4.577905216795529,
          -3.9756500498329994,
          -2.9984887718285296,
          -3.675239720870955,
          -3.4033264618175827,
          -1.8255940093165168,
          -2.576553798431761,
          -3.553463748891934,
          -7,
          -2.9390538498961036,
          -4.579943570379943,
          -4.58155145789047,
          -7,
          -4.105612359686785,
          -3.9978339925302993,
          -7,
          -3.037045218591266,
          -2.3784689561522443,
          -3.9228603433350857,
          -3.629522858845675,
          -7,
          -3.6560129752094572,
          -4.281737671706917,
          -7,
          -2.7573327528430465,
          -7,
          -7,
          -3.24757837069717,
          -2.3736671551606547,
          -3.5594713511516147,
          -7,
          -7,
          -7,
          -7,
          -2.3604532331928016,
          -4.590997787350715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.068961297505777,
          -7,
          -7,
          -7,
          -7,
          -3.1514523585967154,
          -7,
          -7,
          -7,
          -7,
          -3.8468729474623116,
          -3.6273658565927325,
          -4.451970549629459,
          -7,
          -4.402106556827201,
          -3.166526206590297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.195115185724885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058445005444395,
          -7,
          -3.381716596708923,
          -7,
          -7,
          -3.87989832433001,
          -7,
          -3.6193194667848867,
          -7,
          -7,
          -4.075382701327236,
          -7,
          -7,
          -3.1312079111287887,
          -4.368937374244523,
          -4.456791008541905,
          -7,
          -7,
          -4.335437840434784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.326594080702326,
          -7,
          -7,
          -4.063051745747089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4885168740534303,
          -7,
          -4.058217178825713,
          -7,
          -7,
          -3.9719249491841913,
          -4.3553173987845595,
          -7,
          -7,
          -7,
          -7,
          -4.073993133323909,
          -7,
          -7,
          -7,
          -3.7748019919787903,
          -7,
          -4.191255342246265,
          -7,
          -7,
          -7,
          -4.350015298234692,
          -7,
          -7,
          -7,
          -4.540604732747191,
          -4.335698551498222,
          -7,
          -7,
          -4.477280466842588,
          -7,
          -7,
          -7,
          -4.395710709035136,
          -3.8700232918953947,
          -7,
          -7,
          -7,
          -7,
          -3.748672460388167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.550093762080741,
          -3.2756090800864244,
          -7,
          -7,
          -7,
          -4.2981614375932145,
          -7,
          -4.067981658220164,
          -4.391693577036909,
          -7,
          -7,
          -3.9088387443656756,
          -7,
          -7,
          -7,
          -2.401360691767257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495488833107507,
          -7,
          -4.241372130158436,
          -2.957316474397634,
          -7,
          -4.1487876840563125,
          -7,
          -7,
          -7,
          -3.4254119356933157,
          -4.436242180871562,
          -7,
          -7,
          -7,
          -4.14157518330082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.348913033546515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.984857221809016,
          -7,
          -4.297465046609606,
          -7,
          -7,
          -3.0918665954520934,
          -7,
          -4.404149249209695,
          -7,
          -4.344451223686138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.328185860813199,
          -7,
          -3.9093955459671053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.936704709634012,
          -3.7438232216037504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.179461076912763,
          -7,
          -3.5330599332841146,
          -3.6158084723619432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.906113825179055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.857975419541879,
          -7,
          -7,
          -7,
          -3.6552825351772134,
          -7,
          -7,
          -7,
          -3.6153607781848502,
          -7,
          -2.687799594320013,
          -7,
          -2.9814017743269394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1721064777924965,
          -7,
          -2.976112707149161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6852190769087634,
          -7,
          -7,
          -7,
          -3.2290694305991696,
          -7,
          -7,
          -4.123895177078786,
          -7,
          -7,
          -7,
          -7,
          -3.2951124104145713,
          -3.899163641477219,
          -7,
          -7,
          -7,
          -3.660542956258607,
          -2.8235708713982426,
          -3.8451445690733057,
          -7,
          -7,
          -7,
          -3.817449674494178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9163311004140837,
          -7,
          -3.447524488915304,
          -4.653029106272008,
          -3.1832038591808423,
          -7,
          -3.9507217509858714,
          -3.7744822068760837,
          -7,
          -7,
          -7,
          -7,
          -4.079651477073845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6403157705629567,
          -7,
          -7,
          -2.8321095614303697,
          -2.5079819551578586,
          -2.753205469435666,
          -3.352533321427612,
          -3.3809585499884216,
          -2.8807741808299814,
          -2.577678072403625,
          -2.02956215102457,
          -2.7423955234251247,
          -2.6909074552603007,
          -3.3103569312843244,
          -1.9036368885651656,
          -3.023192795602583,
          -3.110252917353403,
          -2.7025345217164407,
          -7,
          -2.529458729595605,
          -2.667913409733178,
          -3.216665841629038,
          -3.044910377574292,
          -2.5709199550197708,
          -1.3075349405691423,
          -2.9608025195287637,
          -2.20693859196342,
          -2.7968883756334444,
          -2.770146448968574,
          -3.2756666756431567,
          -2.618692549885404,
          -3.7556652770726693,
          -2.50972145474068,
          -1.4237401874818418,
          -2.8977740898582307,
          -2.7313375524452694,
          -2.824595830071867,
          -3.2056875899386528,
          -2.756996236366832,
          -2.543307363216651,
          -2.8370991724756154,
          -2.47998256835454,
          -3.3585129569787764,
          -7,
          -2.4773419163258668,
          -2.7320407640579987,
          -4.451248989796137,
          -3.922517860244611,
          -2.466857181962985,
          -4.358448838820213,
          -3.4780973196422216,
          -4.48297357411599,
          -7,
          -3.8378588862869516,
          -2.5063028215430774,
          -3.881340267564292,
          -7,
          -3.726328673977254,
          -7,
          -7,
          -3.427778137224173,
          -3.1675437784943665,
          -4.401658972495152,
          -7,
          -3.2676812852080124,
          -3.3789970083563663,
          -1.6504598920741185,
          -7,
          -7,
          -7,
          -3.702113159927229,
          -7,
          -4.183839037056421,
          -3.511763078159342,
          -4.56913972547246,
          -7,
          -3.7154287763129235,
          -3.56374570715459,
          -3.7334005839920277,
          -4.390687877285511,
          -4.090422660853439,
          -4.430687668976669,
          -2.8671443585668537,
          -4.1079219001862795,
          -7,
          -3.381448022513302,
          -3.252199023033889,
          -7,
          -2.8715639825526402,
          -7,
          -4.388846893599511,
          -3.03726282403086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9043943027764954,
          -3.0355950362195,
          -7,
          -3.855349523582764,
          -7,
          -4.351796306897024,
          -3.6747387007928496,
          -4.361841115455327,
          -7,
          -7,
          -3.6392540064600425,
          -4.324611653328921,
          -3.5585311860973574,
          -4.091385542078368,
          -7,
          -7,
          -3.150078124560676,
          -4.355355723394707,
          -7,
          -3.133558866297746,
          -3.127469258299212,
          -4.4242771222724,
          -7,
          -7,
          -7,
          -4.3787793310606915,
          -7,
          -4.188197016558756,
          -7,
          -7,
          -3.1344958558346736,
          -2.8502016121912996,
          -2.0540071965371163,
          -7,
          -4.3680450262086765,
          -4.465680211598278,
          -7,
          -7,
          -7,
          -7,
          -2.819464511838505,
          -7,
          -7,
          -7,
          -4.044441758703649,
          -3.7052819837808864,
          -4.331852271933605,
          -3.503050994369906,
          -7,
          -7,
          -4.351138958581849,
          -3.878636673026517,
          -2.794271650788277,
          -7,
          -7,
          -7,
          -3.508664363052943,
          -2.865393819355079,
          -4.030761590951016,
          -7,
          -3.4537310295042936,
          -4.3560258571931225,
          -3.2005143208494475,
          -7,
          -3.7869110598911204,
          -4.346059433052574,
          -4.333165042543883,
          -3.742175043223677,
          -7,
          -3.821071148157465,
          -7,
          -7,
          -3.827837567359185,
          -3.8663661155186397,
          -7,
          -4.427875436313166,
          -3.5706184747312224,
          -7,
          -7,
          -4.3094065759545295,
          -4.069631102620343,
          -7,
          -7,
          -3.5417040232842885,
          -3.446209130517621,
          -7,
          -7,
          -7,
          -7,
          -3.5965671087812012,
          -2.362008176736463,
          -7,
          -3.327563260187278,
          -3.243837854588041,
          -7,
          -3.1292931856342396,
          -3.5700445384708317,
          -4.400537989391946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.149304662637318,
          -7,
          -7,
          -7,
          -3.4527445088929927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8846982859778065,
          -7,
          -7,
          -7,
          -4.333144876098619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.523694452381668,
          -2.5318437171325017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5703093854358796,
          -7,
          -7,
          -7,
          -2.4772904274083833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5101618655131217,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.672605777753426,
          -7,
          -4.378851946448881,
          -7,
          -7,
          -2.581341392791031,
          -4.712742273917355,
          -7,
          -7,
          -3.67913426070467,
          -3.0642984967722686,
          -4.678809631951962,
          -7,
          -7,
          -7,
          -7,
          -2.7184633614386025,
          -4.733486163475413,
          -7,
          -3.593975822227341,
          -2.7514837724270707,
          -7,
          -7,
          -7,
          -4.685822321854299,
          -4.378461495902037,
          -7,
          -2.761223080137496,
          -4.6775704558523765,
          -7,
          -7,
          -7,
          -4.384084473382559,
          -4.673122322872762,
          -3.6942628926579433,
          -7,
          -7,
          -3.673951199690897,
          -2.8874289556954906,
          -7,
          -7,
          -3.607079544728571,
          -7,
          -4.404876460036331,
          -7,
          -7,
          -4.39458300002751,
          -4.6790188494009755,
          -3.904634411707706,
          -2.5538419022196304,
          -3.7376607990666866,
          -3.69446160677425,
          -3.545059584694003,
          -7,
          -4.3753983847779425,
          -4.691859164364127,
          -7,
          -7,
          -4.677670814860437,
          -7,
          -4.6759523910790906,
          -4.222881142422591,
          -3.0209970134783997,
          -4.0702041603125725,
          -7,
          -4.212604823985944,
          -7,
          -4.41355959230525,
          -4.7051621193592945,
          -7,
          -4.69121414838279,
          -3.127307918247353,
          -4.671765079379814,
          -2.962279967309778,
          -7,
          -7,
          -4.129883155340622,
          -4.208468230265617,
          -7,
          -7,
          -3.612616108978632,
          -4.676062281090912,
          -3.7917520352585377,
          -7,
          -4.683533319875132,
          -7,
          -2.511100633731271,
          -3.7947319638135193,
          -3.374488669017602,
          -3.972517564662308,
          -7,
          -7,
          -2.8494374804184424,
          -4.3877011963908155,
          -4.400192488592576,
          -4.371677294808661,
          -4.083058064691019,
          -7,
          -4.670941280735775,
          -7,
          -3.4243759871838835,
          -7,
          -7,
          -7,
          -4.005935151237362,
          -3.033343323135224,
          -4.675356669813541,
          -7,
          -3.678664029911573,
          -7,
          -3.343814631766453,
          -3.6356847625472226,
          -7,
          -7,
          -4.397322872237093,
          -4.10302505485856,
          -7,
          -3.6413678610890368,
          -2.405156044570522,
          -4.675274120888021,
          -7,
          -7,
          -3.6049876209917846,
          -4.377843321833933,
          -3.9138579857592846,
          -3.799797008054908,
          -7,
          -7,
          -3.4994579639204475,
          -4.216561735047927,
          -7,
          -7,
          -3.5211380837040362,
          -7,
          -7,
          -7,
          -3.972970739945679,
          -4.068695950887171,
          -3.4140460663081886,
          -4.413165598345893,
          -3.669016325787356,
          -3.6681910080926476,
          -4.676117215671485,
          -2.999130541287371,
          -4.671163582606086,
          -7,
          -4.202333898012999,
          -3.284408172506199,
          -3.822127198821849,
          -7,
          -7,
          -7,
          -3.4945612869265563,
          -7,
          -7,
          -4.684279692743619,
          -4.680516809381255,
          -7,
          -4.2035133564685125,
          -7,
          -7,
          -7,
          -7,
          -4.431074137951586,
          -7,
          -7,
          -2.6257797467621273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.371990911464915,
          -7,
          -2.829025671794826,
          -4.372553009619916,
          -3.5607366671103913,
          -7,
          -4.014276862285691,
          -2.2785020622359897,
          -3.563015324620983,
          -2.5334291141562018,
          -2.6274179354754055,
          -3.601199598454282,
          -3.4838724542226736,
          -3.9033975033507677,
          -4.683731278618886,
          -7,
          -4.681675314854906,
          -7,
          -7,
          -4.2308404614194455,
          -7,
          -4.14109686377542,
          -4.684836388525229,
          -4.835100544787736,
          -7,
          -4.16354896490181,
          -7,
          -4.115119364816148,
          -4.675200730890694,
          -7,
          -4.6735369590268805,
          -7,
          -4.238447577141119,
          -7,
          -7,
          -4.211618830342925,
          -2.282571977286789,
          -2.777956017976713,
          -7,
          -7,
          -4.372534591702954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9099230813909673,
          -4.701058275039644,
          -3.3003635663986217,
          -2.5964908564561173,
          -7,
          -4.673932797382339,
          -4.675063091209669,
          -3.9007220671142706,
          -7,
          -7,
          -4.686233958458255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6730485683168865,
          -7,
          -7,
          -7,
          -2.2658244592417347,
          -7,
          -7,
          -7,
          -7,
          -4.199114962043649,
          -4.073544231160491,
          -7,
          -4.67632773388132,
          -7,
          -4.6838482118410445,
          -4.1178014079973275,
          -3.060476121176391,
          -3.163965080750694,
          -7,
          -7,
          -3.3949313708858924,
          -3.6439100599024514,
          -2.731680685657109,
          -7,
          -2.2631247697617454,
          -4.376385314272538,
          -4.673057788321386,
          -7,
          -4.750006699477232,
          -3.9370830455786803,
          -3.346384273825947,
          -3.56643749219507,
          -4.249801465031356,
          -4.38012075426844,
          -7,
          -7,
          -7,
          -4.69272357270089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.381214388259336,
          -7,
          -3.8414399210172423,
          -3.207563090428015,
          -7,
          -4.691461665039397,
          -4.681404067277602,
          -2.77125463769855,
          -3.8310214644472946,
          -7,
          -3.6415005507635767,
          -7,
          -7,
          -4.701403906447556,
          -3.9057509200197873,
          -2.5955592041303617,
          -3.3942239667723677,
          -7,
          -7,
          -4.696871643812066,
          -4.386614880845291,
          -1.8954910820060986,
          -3.65168981681185,
          -7,
          -7,
          -7,
          -3.6374980684202,
          -4.226617087636269,
          -7,
          -7,
          -4.690054246427676,
          -7,
          -4.685840227213275,
          -7,
          -7,
          -4.676135525654282,
          -7,
          -4.226745934188872,
          -3.1440519712151684,
          -3.1483381904833547,
          -3.4880661257471295,
          -2.878622355982108,
          -4.199060042514597,
          -3.4655150366516616,
          -2.8288274539936142,
          -4.719115743876443,
          -7,
          -7,
          -7,
          -3.9986428830113456,
          -4.720101393614298,
          -7,
          -4.685884987381299,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.405030301512223,
          -7,
          -2.7849514424392368,
          -7,
          -7,
          -2.801708531564807,
          -2.630498155568272,
          -1.7055071799719737,
          -3.2413918876652534,
          -1.7169891311275722,
          -2.167229322896238,
          -1.7387471884369516,
          -1.101724446438007,
          -2.4540304303616693,
          -2.6116374150164035,
          -3.359361102738486,
          -2.2572432976796954,
          -2.1644910844766794,
          -1.955006965141668,
          -2.648623280773163,
          -2.529458729595605,
          -7,
          -2.4464557976539503,
          -2.7219708250308807,
          -2.6194129309927985,
          -3.208415347925735,
          -2.0059834242647963,
          -2.6246637460505315,
          -2.229221599200847,
          -2.4902690542323005,
          -2.3343890960940303,
          -1.8924969718749627,
          -2.2934016392073215,
          -3.3061836857929325,
          -2.275108261152224,
          -2.6516512549072933,
          -1.991976621484873,
          -2.1200579131259305,
          -2.5805237212934,
          -3.070722461788708,
          -2.536842221969682,
          -2.6260168765633383,
          -2.8041161229585065,
          -2.169506085719874,
          -2.7645248232817266,
          -7,
          -2.8158208567451415,
          -2.7773412012531984,
          -3.5287480250682557,
          -2.848394408643486,
          -2.682744445583209,
          -3.8418865974069525,
          -2.262992219097479,
          -3.846777678928908,
          -4.694728012329395,
          -3.1967463452310154,
          -2.760529731427365,
          -3.372198327443658,
          -3.7781150576687677,
          -2.75239125435271,
          -3.4231721195548976,
          -7,
          -3.9429170514135157,
          -3.136938063950316,
          -4.707902156725324,
          -7,
          -3.062178711611561,
          -2.2217850180702277,
          -2.381293414023723,
          -7,
          -7,
          -7,
          -3.0310520390949707,
          -3.0752150588300236,
          -3.0364553094923483,
          -3.4433971117592987,
          -3.7985539713675216,
          -7,
          -3.5978951269547883,
          -3.6353950338165637,
          -2.629580836403122,
          -4.100405011565889,
          -3.843412744894163,
          -3.576143823906798,
          -3.1438298559228537,
          -2.231772816968974,
          -7,
          -2.9119172679839167,
          -2.792140082434405,
          -3.920862181229238,
          -3.024121895656775,
          -7,
          -7,
          -3.0246508319859577,
          -3.5649880827373353,
          -7,
          -7,
          -7,
          -7,
          -2.251144529831166,
          -2.03567473319776,
          -4.386231350579525,
          -3.0903991492554628,
          -4.371566552483734,
          -4.081869155842856,
          -3.473036098059588,
          -3.0444684886302253,
          -7,
          -4.37177878380567,
          -3.569490954348783,
          -7,
          -2.7933752425966887,
          -3.7489972662694018,
          -4.675457541641209,
          -7,
          -2.2101258729288364,
          -3.907402402462683,
          -3.7075446286123026,
          -4.376695550700234,
          -3.8967282533689866,
          -3.572879896515506,
          -4.374216605428374,
          -4.074240289442827,
          -7,
          -4.696749435201623,
          -4.369271532621027,
          -3.639256561892579,
          -7,
          -7,
          -2.9598326973961973,
          -1.7985669223334704,
          -1.3470906831899716,
          -7,
          -4.390573044154603,
          -3.661355126505084,
          -4.376522210604112,
          -4.391860967473324,
          -7,
          -4.2042466334108095,
          -3.275683892428806,
          -7,
          -7,
          -4.68848211387478,
          -4.681069295110682,
          -2.8692487305408685,
          -4.674815229803586,
          -4.205240463402212,
          -7,
          -7,
          -4.206520053837808,
          -2.6131575505462368,
          -2.5022581338025716,
          -7,
          -3.998825819040286,
          -3.997071690906057,
          -3.2866360787164175,
          -2.741982383755251,
          -7,
          -7,
          -3.4332176170782738,
          -4.208799537474873,
          -2.1467575146020645,
          -3.738287162119798,
          -3.400373910783575,
          -4.681322659957815,
          -3.5960286592709947,
          -3.09377178149873,
          -7,
          -3.4879780258698023,
          -4.372856792535229,
          -4.0840308334294795,
          -3.6805744785938734,
          -4.203014745680014,
          -7,
          -3.875854676687327,
          -2.231362108759338,
          -7,
          -7,
          -3.6472329626331015,
          -4.215725664557567,
          -4.714631481192941,
          -4.2023248128295485,
          -3.4781334281005174,
          -2.958316395227076,
          -4.203078237036357,
          -4.076740541926454,
          -7,
          -7,
          -2.9764504825069613,
          -3.112137368289655,
          -4.074980914982268,
          -2.8336428415015997,
          -2.7725716041087916,
          -3.2874613245929347,
          -3.1504779795866655,
          -3.132846465926999,
          -3.665785597585392,
          -4.089693208784839,
          -7,
          -4.6828307381686844,
          -7,
          -4.228674059346633,
          -4.406744506234903,
          -2.643222875279266,
          -7,
          -4.682911863319907,
          -7,
          -3.2501515351166117,
          -4.676593024518754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.022288120503866,
          -3.681874122128647,
          -7,
          -7,
          -4.1982445862282365,
          -7,
          -4.196682704664896,
          -7,
          -7,
          -4.2116277231686166,
          -7,
          -3.357128221306194,
          -3.355393211588941,
          -3.803550997782215,
          -4.198620436084584,
          -7,
          -4.2201778486187775,
          -7,
          -7,
          -3.105549270910429,
          -7,
          -4.675943232322869,
          -4.395754359792703,
          -3.3683754441361047,
          -4.212542710296108,
          -7,
          -7,
          -4.209899096974045,
          -7,
          -3.3639536750174837,
          -4.681494501961706,
          -4.3763122852475576,
          -7,
          -4.922533433518409,
          -4.921056682142087,
          -7,
          -4.921134805306461,
          -4.922008825977601,
          -7,
          -4.0229693555731405,
          -7,
          -4.92350824633259,
          -2.415454189586277,
          -7,
          -7,
          -7,
          -3.8477620928900054,
          -3.2801930003350512,
          -4.323422277252024,
          -4.622726788799164,
          -7,
          -7,
          -4.076114874405903,
          -2.56447851894988,
          -4.957334270883196,
          -7,
          -2.9285151693915554,
          -2.468038753976699,
          -7,
          -4.621617624802069,
          -7,
          -4.929500667570718,
          -4.6248696977974015,
          -7,
          -2.7139201123494434,
          -4.4476695770227925,
          -4.921608451502453,
          -7,
          -4.62206370411517,
          -3.849813396694806,
          -7,
          -4.6333876490890935,
          -7,
          -4.4533693105866075,
          -3.881363903940163,
          -3.3858045901019573,
          -7,
          -4.923347656497826,
          -3.9297713276322854,
          -7,
          -3.372523889041039,
          -7,
          -4.924754681634838,
          -4.9351241922799405,
          -4.448489891511086,
          -3.396004368414134,
          -2.182883525110022,
          -3.677617090195124,
          -3.5114297398081336,
          -3.5882034813125916,
          -7,
          -4.623135531707399,
          -4.455813956286502,
          -4.623352681537992,
          -4.623766000133931,
          -4.924868286127619,
          -7,
          -7,
          -3.7614366627415046,
          -3.0157513574644783,
          -4.921847680638257,
          -7,
          -3.852459661022236,
          -7,
          -4.247148059443245,
          -3.5424619110008715,
          -7,
          -4.932585368076885,
          -3.3178444461454073,
          -7,
          -3.608026557407242,
          -7,
          -4.621384028481653,
          -3.2000292665537704,
          -3.8878933772167623,
          -4.019557633474107,
          -4.619813078098432,
          -3.818966517230984,
          -4.9239586170161465,
          -4.031580128138727,
          -4.334589446975158,
          -4.229185075523011,
          -4.927514077384218,
          -2.5121408620073256,
          -4.635418396663854,
          -3.5899170373224005,
          -4.444279064276847,
          -7,
          -7,
          -3.4963504075587175,
          -4.3290824690943,
          -4.3362745688528355,
          -4.922076385264607,
          -4.288003160031862,
          -4.6232027563533284,
          -7,
          -7,
          -3.331535580012643,
          -7,
          -7,
          -7,
          -3.5600910314244696,
          -2.963266621784164,
          -4.923560036840415,
          -4.922403639170158,
          -4.323432588871606,
          -4.324153794511119,
          -2.7167645248586396,
          -3.3221727606893467,
          -4.920926445630671,
          -4.6288638395509,
          -7,
          -4.940626040821762,
          -7,
          -3.84426410350694,
          -2.323020011428651,
          -4.622473071278123,
          -4.953556748124912,
          -4.622706082719948,
          -2.903812409252151,
          -7,
          -4.154890378645141,
          -3.7631583477788877,
          -7,
          -4.923906874020851,
          -2.8291767675714845,
          -4.235013047748127,
          -7,
          -7,
          -2.092587775775171,
          -4.920624146429142,
          -4.443528960275062,
          -4.921051473431425,
          -3.967350335584652,
          -7,
          -2.9021377646923416,
          -3.6447093236185086,
          -4.0333477919900265,
          -3.1645808501081465,
          -7,
          -3.3881252141814175,
          -4.921197293721232,
          -7,
          -4.08073983803469,
          -3.4427840098483937,
          -3.5720482948792145,
          -7,
          -7,
          -7,
          -3.3630328295053458,
          -7,
          -7,
          -7,
          -7,
          -4.921702078597868,
          -4.324477946722502,
          -7,
          -4.454463732751138,
          -7,
          -4.928293412232202,
          -4.111363344325131,
          -4.927524340875029,
          -7,
          -2.0528408093390866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.922253029113159,
          -7,
          -2.594698610475544,
          -7,
          -3.4285269489377055,
          -7,
          -3.9453109893823255,
          -1.8355276596067984,
          -3.290686728614926,
          -2.715988429419859,
          -3.13160362896786,
          -3.3133218245947287,
          -3.3394412482752034,
          -4.626078479699109,
          -4.627268539143364,
          -4.925745138429951,
          -4.92713929387587,
          -4.639491469681335,
          -7,
          -4.942290872747812,
          -7,
          -4.060008086443594,
          -4.627898155557663,
          -4.719795170658459,
          -7,
          -2.9075813039928935,
          -7,
          -2.781922511200025,
          -4.321380918109828,
          -4.148972634509205,
          -4.922533433518409,
          -7,
          -3.6455254266003556,
          -4.231224848535276,
          -7,
          -3.7849279012531243,
          -2.2985376363883403,
          -2.428868995209785,
          -7,
          -4.920962915790826,
          -4.445417369765918,
          -4.62032347976926,
          -7,
          -4.923010742963713,
          -7,
          -7,
          -2.486831362034582,
          -3.858968070157197,
          -2.9791831314608577,
          -2.3638115672846007,
          -7,
          -7,
          -7,
          -3.67015304519218,
          -4.921067099376002,
          -7,
          -4.628695382714024,
          -4.626448157592176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4620224918544311,
          -7,
          -7,
          -7,
          -7,
          -4.145874623311332,
          -4.321639849041686,
          -7,
          -4.225097252907976,
          -3.9017108887365266,
          -4.9283753661847784,
          -3.7450113221483106,
          -2.7829403934279635,
          -3.082118290577008,
          -7,
          -7,
          -2.791219855377866,
          -3.1362908663453632,
          -2.0961008326833244,
          -7,
          -2.6168996494641785,
          -4.62369369776916,
          -7,
          -4.320395570236469,
          -3.5198654798127627,
          -4.1683747008805305,
          -3.060230250097313,
          -3.529869441846403,
          -4.95344557213989,
          -4.449709755571369,
          -4.923968964875471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626432760627577,
          -7,
          -3.2667530525395057,
          -2.910700616959574,
          -4.226806049500727,
          -4.330636951476591,
          -4.0238232536545935,
          -2.442962687016704,
          -3.6565629264017003,
          -7,
          -3.1397642460034194,
          -4.921493990967949,
          -7,
          -3.9383695974518065,
          -3.814391038834804,
          -2.412453408323028,
          -3.1083579944145168,
          -4.17133633956286,
          -7,
          -4.458698268402751,
          -3.889057104194969,
          -2.004684482079553,
          -3.557709264235409,
          -7,
          -7,
          -7,
          -3.69204355900132,
          -3.524610794377594,
          -4.445682026852679,
          -7,
          -4.329829924701549,
          -4.922315356850907,
          -4.92951088422108,
          -4.922855156211904,
          -4.643052744068198,
          -7,
          -7,
          -3.7356388146361157,
          -4.0788398805435415,
          -3.3767032686907177,
          -3.289848300578164,
          -2.583308275404773,
          -4.446904618975314,
          -3.5025392884840008,
          -2.882264257327153,
          -3.7725808366922844,
          -7,
          -7,
          -7,
          -3.790048796867443,
          -3.7187849063628957,
          -4.945375019552896,
          -4.628496213082012,
          -7,
          -7,
          -3.6760632984611115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4493164716242184,
          -7,
          -7,
          -1.7650177661804587,
          -1.9130691095581158,
          -3.5293362299185205,
          -2.795730019248443,
          -3.07112912036772,
          -1.9753776890010881,
          -2.5739492265770068,
          -2.9295368177157144,
          -1.4959910849691558,
          -2.188454974845586,
          -2.6605442616845707,
          -2.8103213009451276,
          -2.421151220118294,
          -2.440305116263434,
          -0.9880076090941453,
          -2.667913409733178,
          -2.4464557976539503,
          -7,
          -2.796983878177528,
          -2.4433518041285436,
          -3.636598211193897,
          -2.1584243944033967,
          -2.661062804645361,
          -1.9835239517004495,
          -2.613034900595505,
          -3.5708722050483694,
          -2.8355583253959815,
          -3.000221522311308,
          -3.888567493904454,
          -1.7333563961813585,
          -2.4760577472967906,
          -2.9297861091112036,
          -3.052325839013353,
          -2.927936449612896,
          -3.1018393712025105,
          -3.1919226481853387,
          -3.376221462289134,
          -2.01774202765819,
          -2.556742982046201,
          -1.9898952783780006,
          -4.447602438713479,
          -2.4766193378373846,
          -1.9185563154786038,
          -2.70991529382808,
          -2.8264486037411776,
          -3.184875061321418,
          -4.152023201102708,
          -2.19155526331211,
          -3.4898647703982753,
          -3.7883451651521183,
          -2.3158672158872533,
          -2.480475187731228,
          -2.19368304673689,
          -4.926944073016233,
          -2.3439553576704903,
          -3.872709718287906,
          -7,
          -3.949921569950947,
          -2.8927573293012037,
          -3.3507945194988746,
          -4.924790831742455,
          -2.3469101691945125,
          -1.9390632418639553,
          -2.3268690046942035,
          -4.922315356850907,
          -3.9890936926103255,
          -4.44560939194609,
          -1.777208921234309,
          -4.4718244708456,
          -2.9088040173779457,
          -2.301511249454415,
          -3.520059730604128,
          -7,
          -2.078442368161196,
          -2.50580220363097,
          -2.4515092648300474,
          -3.239644774897795,
          -2.5244555335652943,
          -3.2601346916047342,
          -1.9578130755867933,
          -2.8639480396224033,
          -7,
          -1.709296921685804,
          -1.7967694016330327,
          -4.238116387877543,
          -2.269814768180237,
          -4.922881091208294,
          -3.2056604003828313,
          -2.2719945114792024,
          -2.969042967305813,
          -4.620796887671208,
          -7,
          -7,
          -4.620495214805232,
          -3.2631229746705865,
          -1.9129909650562347,
          -4.629292344154639,
          -2.133184446340877,
          -4.018851269187425,
          -3.1284761989930865,
          -2.0575751273111913,
          -2.6964074870111,
          -4.928979299448852,
          -7,
          -2.9415753859227842,
          -4.076250230266718,
          -1.675383716331126,
          -3.0696431011141416,
          -3.6930023482613774,
          -2.7462653713299305,
          -2.0028151592538186,
          -3.305730009050952,
          -3.0328375490074393,
          -2.994622467273687,
          -3.310143913579505,
          -2.4673646965972407,
          -3.431835679685695,
          -3.3797042690244474,
          -4.325854182575375,
          -4.634729108081331,
          -4.31863193011725,
          -2.425760609046802,
          -4.14317619866439,
          -3.9675271761766204,
          -1.8935198289459578,
          -1.2563143900118,
          -1.8472706032338282,
          -4.920879550924153,
          -2.7730038314669714,
          -3.6827386830952396,
          -3.2082811125687116,
          -4.0303973008567615,
          -4.619615005742807,
          -4.227974068680214,
          -2.6607788719967416,
          -4.921181672460438,
          -3.459231261369113,
          -2.861651828449679,
          -4.926795029613981,
          -2.5866818837066483,
          -3.9689289479655416,
          -2.939791919790285,
          -4.448268198264959,
          -3.4048699840315244,
          -4.6272378027861425,
          -2.1387716948758584,
          -2.2243872833409797,
          -3.7750067696282232,
          -3.7601811416654574,
          -3.856109322304873,
          -3.41019420529868,
          -1.8086779637406265,
          -3.241520540023374,
          -3.7176445027938008,
          -2.393382333506496,
          -4.151374958362349,
          -1.5069375528633904,
          -3.5907861238608794,
          -2.4840330875981227,
          -3.3583670730080253,
          -3.2796928632569657,
          -3.310152400147939,
          -4.622224387866044,
          -2.853933601745028,
          -3.692126038140325,
          -4.3275939007678375,
          -2.870247796549128,
          -3.1127132523362575,
          -7,
          -3.4725468065517364,
          -1.6977921195260013,
          -3.6843116372451057,
          -3.5152521051810535,
          -2.451548972465136,
          -3.18479786250099,
          -2.932330894115136,
          -3.6034691597338386,
          -2.4434754985754674,
          -2.4707024308114014,
          -3.4346513050366094,
          -2.875174992292159,
          -4.921285803587237,
          -4.61983392256601,
          -2.7396053042256097,
          -2.4620412878321645,
          -4.924542884841503,
          -2.7412736245332567,
          -1.6284648915833002,
          -2.8869980456710995,
          -2.1309178720102264,
          -2.4458894882440507,
          -2.692189463201086,
          -3.9786014653596657,
          -3.1904458346476585,
          -4.450654465942707,
          -4.4437478744709065,
          -3.5428503141820116,
          -3.8628814005637455,
          -2.592739228049737,
          -7,
          -4.927842388843768,
          -4.925198603055123,
          -2.0056139668441095,
          -4.225247235225021,
          -3.136788119976591,
          -4.620005851260625,
          -4.443846870844043,
          -3.6661486316329417,
          -3.8798150224247188,
          -3.8078107326236483,
          -2.1339934497456396,
          -2.8361851241746323,
          -4.326832352550085,
          -4.9230418536264855,
          -3.4608978427565478,
          -4.222960855556619,
          -4.62166432899245,
          -7,
          -4.446122763910614,
          -3.629969946292171,
          -4.148890444031688,
          -2.9630655210967376,
          -2.4520429504065073,
          -3.900078993301414,
          -3.6683496721951165,
          -7,
          -3.5556636584567096,
          -4.224258466480802,
          -7,
          -2.801826592423241,
          -4.924077602515123,
          -4.9238913499200505,
          -3.355643050220869,
          -2.459617346642649,
          -3.8176518028993587,
          -4.921535616470937,
          -4.620786488646187,
          -3.975880934391388,
          -7,
          -2.444300082182316,
          -4.625996286305002,
          -4.623652376727108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0385804259615785,
          -3.090424194174312,
          -4.181729284882683,
          -7,
          -7,
          -3.7109462200485273,
          -4.119024820114783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.326322203654834,
          -7,
          -7,
          -7,
          -3.5703411380770893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6908056454924374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.709132467226349,
          -7,
          -7,
          -7,
          -7,
          -3.857030798272624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.402457224691137,
          -4.107006346381544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9804124616068917,
          -7,
          -7,
          -3.797059694699971,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.694269250936293,
          -7,
          -7,
          -7,
          -7,
          -4.243905770217522,
          -7,
          -7,
          -7,
          -4.1068026275996505,
          -3.56474494800163,
          -3.640878778701618,
          -7,
          -7,
          -7,
          -3.522613261968787,
          -7,
          -3.8340602317133556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.081509327758223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7519203184537346,
          -7,
          -7,
          -7,
          -7,
          -3.8358807318173946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9192873405043827,
          -3.620636975138439,
          -7,
          -7,
          -7,
          -4.33694379239423,
          -7,
          -4.107209969647869,
          -4.147738141119988,
          -7,
          -7,
          -3.9992175655301034,
          -7,
          -7,
          -7,
          -4.221974676757555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.01500328646168,
          -7,
          -4.084129242916061,
          -7,
          -4.042260406689452,
          -4.245092976101281,
          -7,
          -7,
          -7,
          -3.4268364538035083,
          -7,
          -7,
          -7,
          -7,
          -3.748352794991759,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.036948112195279,
          -3.8652609558675195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8615045408853748,
          -7,
          -7,
          -3.6162469698518693,
          -7,
          -3.868262279215955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7645870600628912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.505041391125465,
          -7,
          -3.7379277754753852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7931964895580594,
          -2.9457346643472886,
          -3.7567121601647715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5601219242961957,
          -7,
          -2.6982116373229816,
          -3.182922186436912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.975810900530579,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3152879462998093,
          -7,
          -7,
          -7,
          -3.8845829776955494,
          -7,
          -3.867261193187285,
          -7,
          -3.097384818350209,
          -7,
          -7,
          -7,
          -7,
          -4.19041574703329,
          -4.281873856870123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1034273973827675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.266795959846667,
          -4.055989583385691,
          -7,
          -7,
          -3.5605551894359078,
          -7,
          -7,
          -3.864970644137885,
          -7,
          -7,
          -7,
          -4.075181854618692,
          -3.376052019499695,
          -4.1204752166965255,
          -7,
          -7,
          -7,
          -4.089905111439398,
          -3.3780820118041603,
          -4.2409982862153175,
          -7,
          -7,
          -7,
          -4.195567580659728,
          -4.150480122270334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8342564079801793,
          -7,
          -3.4168320210448146,
          -7,
          -3.6071600317370307,
          -3.912157503683096,
          -7,
          -7,
          -7,
          -7,
          -3.827207675105206,
          -3.7290027092721902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.667297263882406,
          -7,
          -7,
          -3.331330453063568,
          -3.1488921215438626,
          -3.3103594614375855,
          -3.110252917353403,
          -1.720617004776128,
          -3.484675073321929,
          -2.252452644220883,
          -2.650361001088155,
          -2.7096152113478844,
          -2.8903092168999485,
          -3.029945405802438,
          -3.33248174292299,
          -1.6082746126938272,
          -1.967458826165813,
          -2.3932614214511165,
          -3.216665841629038,
          -2.7219708250308807,
          -2.796983878177528,
          -7,
          -3.30798069389894,
          -2.6589648426644352,
          -2.8277325416887895,
          -2.497355009989592,
          -2.8295313775229554,
          -2.521234258047699,
          -3.4170424458046416,
          -1.7601052414855185,
          -2.0243284317283794,
          -3.131689936111311,
          -2.8863277558324616,
          -2.4153503631086912,
          -1.6391014484254336,
          -2.657533887557986,
          -2.2150157709674456,
          -2.130296789953377,
          -2.6262811305909497,
          -2.7367947549243605,
          -3.185190724277791,
          -2.4808205042723865,
          -4.231291146418349,
          -7,
          -4.453203634456222,
          -3.6866775108445764,
          -7,
          -4.161697342108118,
          -3.1524829269941343,
          -7,
          -3.488863681943735,
          -7,
          -7,
          -3.7970481447755815,
          -2.879331291507992,
          -3.8083760439961956,
          -7,
          -3.9701724724467833,
          -7,
          -7,
          -3.7324205672969377,
          -4.225154148849806,
          -7,
          -4.048325250931222,
          -3.8874886966978695,
          -3.533095238874848,
          -3.614293609984749,
          -7,
          -7,
          -7,
          -3.585894373560409,
          -7,
          -4.576984334177281,
          -4.039731296098691,
          -3.5777707354189983,
          -7,
          -7,
          -3.527067191319761,
          -4.003786622914721,
          -3.844880838468393,
          -3.642579921057928,
          -4.2139690824147,
          -4.046709722256071,
          -4.308532400503109,
          -7,
          -4.291355528330632,
          -3.509869954380526,
          -4.133538908370218,
          -4.06550502309839,
          -7,
          -4.142733511313519,
          -4.004562103992181,
          -4.473165692313548,
          -7,
          -7,
          -7,
          -7,
          -1.6887661065091777,
          -2.9514037575639716,
          -7,
          -4.10124858623158,
          -3.725870813226274,
          -3.5978779313445366,
          -4.027743624288048,
          -4.093946723890583,
          -7,
          -4.027920136405803,
          -7,
          -7,
          -3.4461367166026426,
          -7,
          -7,
          -4.083645927695585,
          -3.2889196056617265,
          -4.081851171517454,
          -2.820679034221769,
          -4.049218022670182,
          -2.757116212742724,
          -4.2033593015223,
          -7,
          -4.043283665570575,
          -7,
          -3.8237349883987313,
          -7,
          -7,
          -7,
          -7,
          -2.7483025782179413,
          -3.2763744121854446,
          -1.4394306513093977,
          -4.017992737766433,
          -7,
          -3.9691129189016645,
          -7,
          -7,
          -7,
          -4.064570292244026,
          -3.8418285554494096,
          -7,
          -7,
          -4.093141404751149,
          -4.063183187967576,
          -3.2662611035004745,
          -3.735519058815171,
          -2.863434394037579,
          -7,
          -7,
          -7,
          -7,
          -3.129537255261788,
          -7,
          -3.827885982789856,
          -4.122445256281956,
          -2.874082999847761,
          -3.601426182944163,
          -7,
          -3.725135413175271,
          -2.2834978755178232,
          -7,
          -3.502810470898115,
          -4.109409790546366,
          -3.5408923160154697,
          -7,
          -2.0729726418384122,
          -2.815015488573993,
          -7,
          -4.201615582313942,
          -4.0326590460399245,
          -7,
          -4.212826586101233,
          -2.8541921384524613,
          -7,
          -3.908243677120895,
          -4.1196352362091355,
          -7,
          -7,
          -7,
          -4.110219223689404,
          -7,
          -7,
          -7,
          -3.385010124593375,
          -7,
          -7,
          -7,
          -7,
          -2.791227076586569,
          -3.807940721215499,
          -3.7453480923842912,
          -2.6434186395347297,
          -3.79644547273806,
          -3.7815040572087324,
          -7,
          -2.4315865711875913,
          -2.8609665297584645,
          -3.804990823476288,
          -7,
          -7,
          -7,
          -3.856698688047469,
          -7,
          -2.5351468666314307,
          -7,
          -7,
          -7,
          -3.063971006964762,
          -7,
          -7,
          -3.2407571939326836,
          -7,
          -7,
          -7,
          -3.423614458082382,
          -3.6103939697123133,
          -7,
          -7,
          -7,
          -3.4368779277106576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.065355601289965,
          -3.8808326398666764,
          -3.7204074008031087,
          -3.6838272261450347,
          -7,
          -7,
          -4.127007557371327,
          -7,
          -7,
          -2.394335622779952,
          -7,
          -7,
          -7,
          -3.6255182289716377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.683737275960329,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3517842322607008,
          -7,
          -7,
          -7,
          -4.24896585586667,
          -3.477868562996478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3387199291037737,
          -4.439285313665999,
          -7,
          -3.9106599721863757,
          -3.049510408263689,
          -7,
          -4.312621582586981,
          -7,
          -7,
          -7,
          -7,
          -3.8554772198341833,
          -4.32132911339302,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.313445370426414,
          -3.527034493844401,
          -7,
          -7,
          -7,
          -7,
          -3.9060475723377666,
          -7,
          -7,
          -7,
          -7,
          -3.8560841179056817,
          -2.7766536296320776,
          -4.353531559077762,
          -4.444247835796075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.321308389775909,
          -7,
          -7,
          -7,
          -4.370772071705626,
          -3.2184992868459035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7495430810911663,
          -3.863127341104386,
          -7,
          -4.343526753097717,
          -7,
          -7,
          -4.43633760224632,
          -4.339411687131677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6356244675962635,
          -7,
          -3.318778615632663,
          -3.764120066661152,
          -4.480768447380031,
          -7,
          -7,
          -7,
          -3.29211504375923,
          -7,
          -7,
          -7,
          -7,
          -4.319043566399113,
          -7,
          -7,
          -3.510842778118108,
          -7,
          -7,
          -7,
          -4.381241468195862,
          -4.038123200593378,
          -7,
          -7,
          -7,
          -4.3270522653266985,
          -2.728522042246275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.063058005802612,
          -3.1432703594714555,
          -7,
          -4.426706406046314,
          -7,
          -3.7307932833288957,
          -7,
          -7,
          -3.5987540405401703,
          -7,
          -7,
          -3.9000173671380716,
          -7,
          -7,
          -7,
          -2.9012261674137614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0854047573314234,
          -7,
          -4.054983106731511,
          -3.7890869150880286,
          -7,
          -3.834944974149341,
          -7,
          -7,
          -7,
          -3.1313396623596357,
          -4.122019172080031,
          -7,
          -7,
          -7,
          -4.737248317915621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.136648841036588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.14803165119416,
          -7,
          -4.112336835745317,
          -7,
          -4.398634324538392,
          -2.8348308015347112,
          -3.5420781463356255,
          -3.0089371159857716,
          -3.1969127457115927,
          -7,
          -3.8680367455497753,
          -7,
          -4.335197045077561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.337658891026142,
          -4.1436808323706815,
          -7,
          -3.244758029080568,
          -7,
          -4.105612359686785,
          -7,
          -7,
          -7,
          -7,
          -3.926153731092024,
          -7,
          -7,
          -3.869173027321683,
          -3.2129248075868446,
          -3.584670384464349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8014816677051737,
          -7,
          -3.124230259036586,
          -2.7579067817398406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0858174330519823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.316976239321548,
          -7,
          -7,
          -4.089781514122957,
          -7,
          -3.508815787764874,
          -3.164518081003057,
          -3.8564872128686307,
          -7,
          -7,
          -3.402444091694104,
          -3.861892690391446,
          -3.0594345017074778,
          -4.31893939156067,
          -2.8922720043223014,
          -7,
          -7,
          -7,
          -4.471233018649645,
          -4.101695532777102,
          -3.98391181439848,
          -3.7953759433255803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.450895448690243,
          -7,
          -7,
          -4.028916761576257,
          -2.4806634430953562,
          -7,
          -7,
          -3.3364486150558688,
          -7,
          -7,
          -4.3736842129970155,
          -4.034708651341069,
          -3.0115251330042616,
          -3.5828773754300287,
          -7,
          -7,
          -7,
          -4.343920385393226,
          -2.9456789335701417,
          -4.434473093213079,
          -7,
          -7,
          -7,
          -3.928737144597974,
          -4.077640389544002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318063334962762,
          -7,
          -7,
          -7,
          -3.640088468106248,
          -4.042969073393181,
          -3.0584774293788746,
          -7,
          -4.414488672236952,
          -3.4502456081885424,
          -7,
          -7,
          -7,
          -7,
          -4.064663855913281,
          -4.412527744472011,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.049361302724119,
          -7,
          -7,
          -1.840483998173458,
          -2.258915580298483,
          -3.54282542695918,
          -3.2653802984464786,
          -3.229748863541315,
          -3.1180842713160093,
          -2.608222582423682,
          -3.1347032871453275,
          -2.0573576987385342,
          -3.0851418625206697,
          -2.842572532981465,
          -2.068650987459734,
          -3.176163635438134,
          -3.1413257861595296,
          -2.2132900199790764,
          -3.044910377574292,
          -2.6194129309927985,
          -2.4433518041285436,
          -3.30798069389894,
          -7,
          -4.371326513861746,
          -3.1756534538660612,
          -2.6347375944562934,
          -1.9586868157082074,
          -2.7779501415669436,
          -3.5727343459905363,
          -3.2461124761404645,
          -2.9532763366673045,
          -3.6428995860133027,
          -1.6629294556640104,
          -2.3392654630551335,
          -3.214830930113703,
          -3.1789130287586653,
          -3.1005428500124648,
          -3.056824641809621,
          -3.4617303869186147,
          -3.0038752244370777,
          -2.817683070676147,
          -2.673680806269375,
          -3.0354940627547213,
          -7,
          -2.9245867697212566,
          -2.79432813146471,
          -2.8575863955802148,
          -4.084308112145074,
          -3.0943546489622813,
          -7,
          -2.9895792040529185,
          -4.471174318307337,
          -7,
          -3.77244090126548,
          -2.9001993095094276,
          -3.324938033068716,
          -4.028754203400251,
          -3.11632173560914,
          -7,
          -7,
          -3.7155521111846324,
          -3.490760871305561,
          -4.086324231307385,
          -7,
          -3.225722698684167,
          -3.0926953967432183,
          -3.278483007613615,
          -7,
          -7,
          -7,
          -2.9401368568647728,
          -3.93387517879672,
          -3.8579748912130563,
          -3.386704711065075,
          -4.258433734309274,
          -7,
          -3.655650574589957,
          -2.6390580531496957,
          -3.041160061689073,
          -2.2407895320869433,
          -3.353423308704367,
          -4.116292201435748,
          -2.8936120675847437,
          -3.623705748999227,
          -7,
          -2.6587743208443566,
          -2.8559741898563855,
          -3.8915746229185673,
          -3.5581746407589234,
          -7,
          -2.895956337455235,
          -3.5013908232543454,
          -3.450227107028447,
          -7,
          -7,
          -7,
          -7,
          -4.095552896019402,
          -2.7767543206122136,
          -7,
          -3.1821540422305667,
          -7,
          -3.1591057860218807,
          -2.841369900072221,
          -3.868977328651328,
          -7,
          -7,
          -3.4035151549893445,
          -4.307517431203132,
          -2.9023039620608135,
          -3.3775430081774003,
          -3.839310414647268,
          -7,
          -3.241100633388555,
          -3.7372721765355434,
          -3.608632989490037,
          -3.7195384391373816,
          -4.315403504634351,
          -3.2963951486038936,
          -4.316075234838397,
          -3.5402042998420598,
          -7,
          -7,
          -7,
          -3.1760478274358737,
          -7,
          -7,
          -2.612172884441745,
          -2.7207951665970045,
          -2.182484084353431,
          -7,
          -3.5742628297070267,
          -3.851243056390621,
          -4.020257669505882,
          -7,
          -7,
          -7,
          -3.1428990655480398,
          -7,
          -4.0085363002297925,
          -3.646599751720373,
          -7,
          -2.776009815603766,
          -4.315046224922345,
          -4.332216205878284,
          -4.323726367155352,
          -4.015841571684366,
          -4.335076597314406,
          -3.1896380429619335,
          -2.7086671756137686,
          -7,
          -7,
          -4.362350507594848,
          -3.735858281244711,
          -2.7343222637236377,
          -4.315025199312605,
          -4.309608877958903,
          -3.486886811075451,
          -3.8629459114132914,
          -2.7554055900734933,
          -4.0538272438101375,
          -3.1697111624179057,
          -4.0287338793493355,
          -4.316410710725809,
          -3.82610721152752,
          -7,
          -3.3301092545928297,
          -4.312959735882106,
          -4.340563083333371,
          -3.814480666721017,
          -2.644048599831964,
          -7,
          -3.8122948820149047,
          -2.8306026140807274,
          -3.679300678760339,
          -4.343644880252506,
          -3.455280024856446,
          -3.7531807480888677,
          -4.40134883597978,
          -4.024588277146048,
          -2.9653014978707772,
          -2.908270499495724,
          -4.0262880620239425,
          -3.722057771331464,
          -7,
          -7,
          -3.287088853378247,
          -3.149988456491476,
          -4.019178624894263,
          -4.052867009754181,
          -2.5714807915691624,
          -3.862667950228588,
          -2.8258332489949707,
          -3.067134195440871,
          -3.909038704007994,
          -7,
          -7,
          -7,
          -7,
          -4.383042999305744,
          -3.7849915231445306,
          -2.8985836484346144,
          -7,
          -4.333366655509717,
          -7,
          -2.718228062128552,
          -7,
          -4.312959735882106,
          -7,
          -7,
          -4.007214181076625,
          -4.307110778380075,
          -4.008365930205775,
          -3.1606685746425667,
          -2.898989122518341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.346392098317329,
          -7,
          -4.035789833127757,
          -3.0640664031375557,
          -4.083932401638626,
          -4.3172482684453195,
          -7,
          -3.762809807339,
          -7,
          -7,
          -3.0462830464055406,
          -7,
          -7,
          -4.36383752883614,
          -2.9885589568786157,
          -4.348402227577635,
          -7,
          -7,
          -7,
          -7,
          -2.9861444647105206,
          -7,
          -7,
          -7,
          -3.5732198271144218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4800948155844096,
          -7,
          -7,
          -7,
          -7,
          -4.285782273779395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7927942759520783,
          -7,
          -7,
          -7,
          -3.98425258295172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.584218112117405,
          -4.105175109470305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.974551604853553,
          -7,
          -7,
          -7,
          -7,
          -3.868879446237088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.146143545918482,
          -7,
          -7,
          -3.664312839896641,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.494766629133628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021103386169764,
          -7,
          -7,
          -7,
          -7,
          -4.02271698005103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334915948315707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.094191524909532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.43576475926038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.776911743973396,
          -7,
          -7,
          -7,
          -4.705987656603487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.360820535237942,
          -7,
          -7,
          -7,
          -4.420731171441572,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9228810912082936,
          -7,
          -7,
          -7,
          -4.024690862355431,
          -7,
          -7,
          -7,
          -3.555880064636805,
          -7,
          -7,
          -7,
          -7,
          -3.9757419081167997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7410727723733213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.456924486401631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.056409320649918,
          -7,
          -7,
          -7,
          -7,
          -4.016735228992858,
          -3.617000341120899,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.172748838982743,
          -7,
          -3.9412131875853214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.410406027068357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.218876715052756,
          -4.043322137271107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.957166544282454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9800033715837464,
          -7,
          -7,
          -7,
          -4.374253298101757,
          -7,
          -7,
          -7,
          -3.6563617665736747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0841829114204735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.759063188160487,
          -7,
          -7,
          -7,
          -3.5849183061697203,
          -7,
          -7,
          -4.348674732191571,
          -7,
          -7,
          -7,
          -7,
          -4.080373916701309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.880838632192856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8547916940539855,
          -7,
          -3.9204537932826264,
          -4.437623742997059,
          -3.7869953976090103,
          -7,
          -3.9636461864848433,
          -3.8847346927599973,
          -7,
          -7,
          -7,
          -7,
          -3.808818425092124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542240166289717,
          -7,
          -7,
          -3.7238249526410367,
          -4.015122141957127,
          -3.4898379926764123,
          -7,
          -3.305359332235412,
          -3.9477113985684684,
          -3.067979595068381,
          -2.712556174226849,
          -3.7208646312144977,
          -3.794766797940821,
          -3.84223468634724,
          -3.1595107974562135,
          -2.963897960531188,
          -3.3474657774209113,
          -3.7688177429936056,
          -2.5709199550197708,
          -3.208415347925735,
          -3.636598211193897,
          -2.6589648426644352,
          -4.371326513861746,
          -7,
          -2.5190513456031844,
          -3.4928002856307794,
          -3.3640582653991773,
          -3.417941993353871,
          -3.024396422382719,
          -2.9773469638264354,
          -2.1672933146999465,
          -3.4153072922255676,
          -3.754028474893647,
          -2.1197886570592095,
          -2.73360277288189,
          -2.8482978128953333,
          -2.6873881317862036,
          -2.6486260956304704,
          -2.730176424163481,
          -2.7194141597025934,
          -3.5928704078897615,
          -3.3585296895559917,
          -4.644487826413858,
          -7,
          -4.697133403663625,
          -3.8728625197457576,
          -7,
          -7,
          -3.129689892199301,
          -7,
          -4.128958182374678,
          -7,
          -7,
          -4.008727886652385,
          -4.022313790681457,
          -4.229647718448569,
          -7,
          -7,
          -3.982994454658664,
          -7,
          -3.964118143151485,
          -4.123688341667586,
          -2.2543523893313715,
          -7,
          -4.305643667345195,
          -4.261658837583175,
          -3.6673960621056523,
          -7,
          -7,
          -7,
          -4.191460329990939,
          -3.95390459341346,
          -3.5125577484873114,
          -7,
          -4.289834121485031,
          -7,
          -4.078601800355391,
          -7,
          -7,
          -3.8449118739121406,
          -4.2868829198267875,
          -7,
          -4.613302581680263,
          -4.226587017939536,
          -7,
          -4.958119328082719,
          -4.066940585379413,
          -7,
          -4.239349539006137,
          -7,
          -3.8384082784941866,
          -3.4924810101288766,
          -4.356599435724971,
          -7,
          -7,
          -7,
          -7,
          -2.1266724494173004,
          -4.033772123645866,
          -7,
          -7,
          -7,
          -7,
          -4.096614592305936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7381130180022746,
          -7,
          -3.5968169359155904,
          -7,
          -4.213889470826336,
          -7,
          -7,
          -3.623456048069934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.929020213693863,
          -3.8494569513801715,
          -2.938303308337877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.589055531052344,
          -7,
          -7,
          -3.598899887063883,
          -7,
          -7,
          -3.668269405761896,
          -7,
          -7,
          -7,
          -2.618309641123432,
          -3.928779787288558,
          -7,
          -7,
          -7,
          -7,
          -4.122618655023341,
          -7,
          -7,
          -7,
          -3.295017011881458,
          -2.886490725172482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.358810172458563,
          -7,
          -7,
          -4.365338202346941,
          -7,
          -7,
          -7,
          -3.6612446089593336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.111867146804469,
          -7,
          -7,
          -3.7646990637983677,
          -4.265041993273718,
          -3.707314633588708,
          -7,
          -3.467562573700709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.592620821321982,
          -7,
          -7,
          -7,
          -4.444372736248287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.423434930523369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.38794657658479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8799368743581009,
          -4.550675524721961,
          -7,
          -7,
          -3.8338597780951167,
          -3.274435639233948,
          -7,
          -7,
          -7,
          -7,
          -5.387516180530774,
          -3.3553336134554423,
          -4.497066208066182,
          -7,
          -3.9968162719234086,
          -2.2509900212015888,
          -7,
          -5.3879892372522376,
          -7,
          -7,
          -5.38910581074388,
          -5.388117194117044,
          -3.0454643571683375,
          -7,
          -5.086596492271168,
          -7,
          -7,
          -5.089175378296633,
          -7,
          -5.392056468286671,
          -5.387475252916437,
          -5.0896614144671775,
          -4.7859878975004735,
          -2.5913560510793734,
          -7,
          -7,
          -7,
          -7,
          -4.014096818000472,
          -7,
          -7,
          -3.994274909206636,
          -5.087976522642251,
          -4.5446455377810215,
          -2.534285926849549,
          -4.011288434183536,
          -4.196554403859942,
          -3.920379025396492,
          -5.388158061282813,
          -5.087476169013141,
          -4.914415445352857,
          -7,
          -5.388726249343061,
          -5.388747541941398,
          -7,
          -7,
          -4.6942049372013654,
          -3.047891541225409,
          -7,
          -7,
          -4.436854986375111,
          -7,
          -4.697197946843088,
          -7,
          -5.387653171001787,
          -5.391415037349662,
          -2.982230839189202,
          -5.086571586596441,
          -4.089576618238777,
          -7,
          -7,
          -4.057363492797426,
          -4.913177833990468,
          -5.388010566014608,
          -7,
          -3.9935455619442934,
          -4.911306788581634,
          -4.136833264807149,
          -5.392842865757514,
          -5.088860490105424,
          -4.275672746981688,
          -2.885445455825539,
          -4.915637233884228,
          -4.40488671783032,
          -7,
          -7,
          -4.914223237906244,
          -5.088786157341457,
          -4.69194038611791,
          -7,
          -5.387790118275218,
          -4.297135674099161,
          -7,
          -7,
          -7,
          -4.00508437344062,
          -7,
          -4.913759120768689,
          -4.912160035348151,
          -4.394162638736977,
          -3.2654424451322908,
          -7,
          -5.387902133932986,
          -5.388972824642233,
          -5.088187491943992,
          -3.5584150291351007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8325324419556304,
          -2.6842172306486525,
          -7,
          -4.4445513508584105,
          -7,
          -3.504628359610313,
          -4.610816253967414,
          -4.069301538220501,
          -4.013500808559337,
          -7,
          -7,
          -3.807901158075168,
          -4.4376448822061905,
          -7,
          -7,
          -2.909436977206239,
          -5.086260145091594,
          -7,
          -4.609270612890928,
          -7,
          -7,
          -4.229167994396186,
          -4.69711595791437,
          -4.110271447754429,
          -3.491809766592,
          -5.0874122525691,
          -3.607339126707328,
          -7,
          -7,
          -5.389102264976264,
          -2.738377285252023,
          -4.796366154977521,
          -7,
          -7,
          -7,
          -3.301228351076182,
          -7,
          -7,
          -4.6910567251326745,
          -4.912174212399739,
          -7,
          -5.389332679678082,
          -7,
          -5.391074553266963,
          -5.390864484372611,
          -7,
          -4.285901630834813,
          -7,
          -7,
          -2.5243952930230646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5685864807261023,
          -5.387959019712346,
          -3.544081279789947,
          -7,
          -4.015621678390377,
          -2.312517089214689,
          -4.242477535884849,
          -3.704684429931342,
          -4.31423073711276,
          -4.787244336213674,
          -4.913699084613634,
          -4.486407452843279,
          -5.389932955923036,
          -5.389049074987845,
          -7,
          -5.093160679820907,
          -7,
          -4.79274353560754,
          -7,
          -4.0597974201950455,
          -7,
          -4.168841090364729,
          -7,
          -4.203143419397126,
          -7,
          -4.618560575660246,
          -5.388268205795572,
          -7,
          -7,
          -7,
          -4.697405466651352,
          -5.390599546802992,
          -7,
          -4.913801494234826,
          -2.754528397576881,
          -3.46437688840658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.339859143610229,
          -4.9162679078390426,
          -3.427548654790397,
          -2.6138682380119556,
          -7,
          -7,
          -7,
          -4.911871077099282,
          -7,
          -7,
          -7,
          -5.088616206091066,
          -5.389600161843851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.441408622070083,
          -7,
          -7,
          -7,
          -5.086790351904906,
          -5.388475983084096,
          -4.689372799616249,
          -7,
          -4.786415991756133,
          -4.918007607412871,
          -5.0889224243582145,
          -4.552172639639922,
          -3.707785618912686,
          -4.787729611178186,
          -7,
          -7,
          -3.4923083627475915,
          -4.436007072111521,
          -2.9972281888728,
          -5.388523917575625,
          -2.6037277197660282,
          -4.911573053768388,
          -7,
          -5.08689702671432,
          -4.926664788909112,
          -4.442059730584969,
          -4.1472897692695145,
          -4.116986791074787,
          -2.3379091740877396,
          -4.912301785042612,
          -5.388438697043693,
          -7,
          -7,
          -4.914588183125443,
          -7,
          -7,
          -7,
          -5.389213942752022,
          -7,
          -7,
          -7,
          -4.913379340609699,
          -3.738584109859517,
          -4.7870032682937715,
          -4.789393840735944,
          -4.787405564322391,
          -2.223503245137466,
          -4.555220588225373,
          -5.387713646550734,
          -3.5622052695977127,
          -5.387590907962582,
          -7,
          -7,
          -4.310764096221262,
          -3.1369909694464804,
          -3.945037523575931,
          -5.397383755657276,
          -7,
          -5.392549232850399,
          -5.08967554556239,
          -1.6788487007501018,
          -3.7560549085593125,
          -7,
          -7,
          -7,
          -3.8402281093227377,
          -4.13861668044601,
          -7,
          -5.388353459785864,
          -5.391183960678366,
          -5.387871910331762,
          -4.691364443175833,
          -7,
          -5.395450459484108,
          -7,
          -7,
          -3.760359354637302,
          -7,
          -2.9796104478095966,
          -4.386648109594341,
          -2.063605011562094,
          -4.786394685839313,
          -3.5712306727055516,
          -2.9090196030296576,
          -4.79505407293256,
          -7,
          -7,
          -7,
          -4.137380489000302,
          -4.4430612262456535,
          -5.094870998546221,
          -4.913229103313806,
          -7,
          -7,
          -4.487926322056887,
          -7,
          -5.388367667157301,
          -7,
          -4.792349658966237,
          -7,
          -3.2965499816921042,
          -7,
          -7,
          -2.466469087237763,
          -2.2118507979482045,
          -2.4442583789957952,
          -3.554962935849245,
          -1.91761130935738,
          -2.5249336259746147,
          -3.0224682265597034,
          -1.8940522432779985,
          -2.5540990629431444,
          -2.84444447407917,
          -3.685871647578485,
          -2.35509146725887,
          -1.9598460752931772,
          -1.979424049114706,
          -2.831494189272503,
          -1.3075349405691423,
          -2.0059834242647963,
          -2.1584243944033967,
          -2.8277325416887895,
          -3.1756534538660612,
          -2.5190513456031844,
          -7,
          -2.6542912834839876,
          -2.314727385062696,
          -3.011685912675127,
          -2.4797710500612387,
          -2.2047227509440854,
          -2.2155813662933226,
          -2.7338042406523857,
          -2.5956201195001602,
          -2.0813620269415427,
          -1.7810677641337438,
          -2.3132412519697714,
          -2.4023711903588105,
          -3.3643527310171173,
          -2.4868256069365926,
          -2.5345762073670035,
          -2.811921195192953,
          -2.8604036253437966,
          -3.3109132647458086,
          -5.087671410994864,
          -1.8490797914449508,
          -2.09235891190916,
          -3.9850393715220522,
          -3.903130262435183,
          -2.605305046141109,
          -4.691611874214416,
          -2.6562304897937272,
          -4.403755191424458,
          -4.91498979717569,
          -3.1561980819184527,
          -2.3760196479500224,
          -3.305819930078247,
          -4.690477836866783,
          -3.1843079803901997,
          -4.620094394032491,
          -7,
          -3.528066796747986,
          -2.794959599574934,
          -4.549675739824959,
          -4.786650287881236,
          -2.4741497243612818,
          -2.3904087313468914,
          -0.665172524147913,
          -7,
          -5.395211031930954,
          -5.086987679705316,
          -2.9002119515293323,
          -4.251006913898273,
          -2.489382928319023,
          -3.320602517175809,
          -4.136261504095268,
          -7,
          -3.1618252599776655,
          -3.4408127327621263,
          -3.051022393331254,
          -4.071403283531469,
          -4.034566629756843,
          -4.552715136150618,
          -2.7685030703466915,
          -3.8045784042024806,
          -7,
          -2.6983874884158876,
          -2.8540400578056273,
          -4.790928737920774,
          -2.2659229226161925,
          -5.0870321105355965,
          -4.694526229121204,
          -3.072540923252852,
          -3.9018313429827627,
          -5.3877083108116155,
          -7,
          -7,
          -7,
          -2.939872919768489,
          -3.223459310119068,
          -5.089599585518829,
          -3.7793967967276476,
          -4.910640410533396,
          -4.435711680003175,
          -3.489377920934706,
          -4.788841571410247,
          -7,
          -7,
          -4.0953419884146625,
          -7,
          -2.8201260797803505,
          -4.279882704201669,
          -7,
          -4.487283351877082,
          -3.1865435658701995,
          -5.089276165036801,
          -4.394721279992447,
          -3.832335018177531,
          -3.9731616149516933,
          -3.9991235785945736,
          -5.087247091536476,
          -5.3884919618358005,
          -7,
          -4.278539038134198,
          -7,
          -4.149213979120526,
          -5.387551766625729,
          -4.785642983678979,
          -2.9498161951184456,
          -2.250368671567358,
          -1.8003968660120133,
          -7,
          -4.91436784225932,
          -4.447476741667826,
          -4.543608690196552,
          -5.391753492606618,
          -7,
          -4.544356887054272,
          -3.178634337498273,
          -7,
          -5.387736767329419,
          -5.089838020117933,
          -4.435139782024201,
          -3.963618202578722,
          -5.087160045935873,
          -4.009378294844197,
          -4.911805458566956,
          -5.388351683831754,
          -4.6909381778354655,
          -4.124708385166029,
          -3.101215445237254,
          -7,
          -4.614580866997486,
          -4.48928156309888,
          -3.7368159848109257,
          -3.4282647523308776,
          -4.689207600753705,
          -5.387736767329419,
          -3.460593731895895,
          -4.788300973396099,
          -2.4749326096229574,
          -4.613537039588475,
          -4.189360455115544,
          -5.389460241391956,
          -4.309088736043454,
          -3.4163873724604112,
          -7,
          -3.865441910416628,
          -7,
          -4.691424546532714,
          -3.920537239907697,
          -4.3478070778806455,
          -7,
          -3.93503619755571,
          -3.2440873084362094,
          -5.0928872442915525,
          -7,
          -4.006156544489312,
          -4.692764104726101,
          -5.095153653757149,
          -5.0880669506065805,
          -3.5989955722341023,
          -4.052204083450003,
          -5.088214077441379,
          -5.388978144868233,
          -7,
          -7,
          -3.331789628882886,
          -3.6133272674214836,
          -5.087602198880414,
          -4.09052080802686,
          -3.0787595940382304,
          -4.487232085266766,
          -3.4523543754279347,
          -2.9296423045259363,
          -4.3532533339846005,
          -4.613364293402583,
          -5.388239784079347,
          -5.389755969543411,
          -7,
          -4.491254858261633,
          -7,
          -3.426346824127506,
          -7,
          -5.38977190127149,
          -7,
          -3.530888353795369,
          -7,
          -7,
          -5.086404325780766,
          -7,
          -5.387626487935149,
          -7,
          -5.387722539303589,
          -3.6815647497582704,
          -4.544480870993537,
          -7,
          -7,
          -5.388307282618574,
          -7,
          -7,
          -7,
          -4.911068786880192,
          -4.6127626711063305,
          -4.38948149803539,
          -3.684426983291642,
          -3.625729137422857,
          -4.353132539312616,
          -5.388380098226059,
          -7,
          -4.489527836582873,
          -5.087165375759767,
          -7,
          -2.931909144999707,
          -7,
          -7,
          -4.489420548875373,
          -3.6836155489902587,
          -5.39111337840658,
          -5.387605140301401,
          -4.785634090525506,
          -4.691604806712127,
          -7,
          -3.6868097001081455,
          -4.9123655573140255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3457069458605324,
          -7,
          -7,
          -7,
          -3.625042219271894,
          -3.0166535452370566,
          -4.286972645457374,
          -7,
          -7,
          -7,
          -7,
          -2.6301872080515634,
          -7,
          -7,
          -7,
          -2.923950049247113,
          -7,
          -4.274411883425874,
          -7,
          -7,
          -7,
          -7,
          -3.4047624682427946,
          -7,
          -7,
          -7,
          -4.276392863069535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504148951133771,
          -7,
          -7,
          -4.305587802072341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.287488208401288,
          -4.296928319310418,
          -2.787654051558582,
          -4.0178260380304245,
          -4.416357541374134,
          -3.6861176659198964,
          -7,
          -4.281124309449275,
          -7,
          -7,
          -3.9828137621318627,
          -3.9830847727377883,
          -7,
          -7,
          -7,
          -3.2848253676580463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9016733648001973,
          -7,
          -3.8308451923086118,
          -7,
          -7,
          -3.8057556510562356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024690862355431,
          -7,
          -4.298525595321999,
          -7,
          -3.2206587681211514,
          -7,
          -4.1541347529656445,
          -7,
          -7,
          -7,
          -3.996533561445376,
          -7,
          -7,
          -7,
          -4.206488559912443,
          -7,
          -7,
          -7,
          -3.6604860157849677,
          -7,
          -7,
          -7,
          -7,
          -3.50849864133115,
          -7,
          -7,
          -7,
          -7,
          -2.334754204184258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.04083959468534,
          -3.5518738613848733,
          -7,
          -7,
          -7,
          -3.952945113862972,
          -7,
          -4.017951068830742,
          -7,
          -7,
          -4.2799405728395525,
          -3.977609302226758,
          -7,
          -7,
          -7,
          -3.502710674010765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.179355219664356,
          -4.068464166454118,
          -4.032336659845735,
          -3.7574339899382694,
          -7,
          -3.232165670553036,
          -7,
          -7,
          -7,
          -3.5655822041542033,
          -3.5484420673337063,
          -7,
          -7,
          -7,
          -3.723118942779991,
          -7,
          -7,
          -7,
          -4.291168975715262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.107125138222283,
          -7,
          -7,
          -3.175413721180739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5734518220354854,
          -7,
          -3.3077757131389833,
          -7,
          -3.4902863018778105,
          -7,
          -3.024336374304124,
          -2.7944540839567535,
          -3.583788016689579,
          -3.2786202444552437,
          -3.863303028869424,
          -3.8141143561291253,
          -4.309906835568681,
          -4.293914741031102,
          -7,
          -7,
          -7,
          -4.348830372378482,
          -7,
          -7,
          -7,
          -3.4767350435053235,
          -7,
          -7,
          -7,
          -3.998912904358786,
          -7,
          -4.376175322717834,
          -7,
          -7,
          -4.273857435371117,
          -7,
          -7,
          -7,
          -7,
          -3.833932934844275,
          -2.521416773066945,
          -2.9530171749931706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275978986467148,
          -7,
          -7,
          -2.9862905766469647,
          -7,
          -3.4201621131797433,
          -3.133975329628081,
          -7,
          -3.97377419397058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9260212381112978,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.27916484306227,
          -7,
          -7,
          -7,
          -7,
          -4.382035062718931,
          -3.34908316877959,
          -3.9962927185413215,
          -7,
          -7,
          -3.742669031778443,
          -4.303239268651996,
          -3.416781921212604,
          -4.281306136741821,
          -1.4033708818735386,
          -7,
          -7,
          -7,
          -4.44507463277493,
          -3.7698018112929326,
          -4.434297385124508,
          -3.889170927490876,
          -4.397227181043161,
          -7,
          -7,
          -7,
          -7,
          -4.019427873252668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.295435142353147,
          -7,
          -4.306038816336349,
          -3.469232742506612,
          -3.8110832420318603,
          -4.317520127284809,
          -7,
          -1.6320143333368453,
          -7,
          -7,
          -3.6691889913068407,
          -7,
          -7,
          -7,
          -4.2996380249790755,
          -2.6525525283351086,
          -3.72503317572055,
          -7,
          -7,
          -7,
          -7,
          -2.2950577654310025,
          -3.56062387454993,
          -7,
          -7,
          -7,
          -3.676254521729781,
          -3.0666397361380295,
          -7,
          -7,
          -4.314183339137378,
          -7,
          -4.003029470553618,
          -7,
          -7,
          -7,
          -7,
          -3.568045193345566,
          -7,
          -3.6753006734237945,
          -4.150572247668998,
          -3.2426676169006745,
          -4.280555608006274,
          -3.481209652316441,
          -3.1141174616703298,
          -4.07923552946522,
          -7,
          -7,
          -7,
          -3.632963168167261,
          -3.604118006192035,
          -3.8902533051545345,
          -4.3042103864352335,
          -7,
          -7,
          -4.312473557686056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.153414127210913,
          -7,
          -7,
          -2.65675206543432,
          -2.5587877893415656,
          -3.086620803576045,
          -3.870033055380932,
          -2.682690235626249,
          -2.608851014074864,
          -2.850493071900963,
          -1.969168459528491,
          -2.313568607907434,
          -3.29301510647291,
          -3.165738797864829,
          -2.787997211610608,
          -2.3315238475872873,
          -2.519712754392714,
          -2.4700712032583296,
          -2.9608025195287637,
          -2.6246637460505315,
          -2.661062804645361,
          -2.497355009989592,
          -2.6347375944562934,
          -3.4928002856307794,
          -2.6542912834839876,
          -7,
          -2.2272036990455257,
          -2.6409496943435684,
          -3.233470670817551,
          -2.4498226347770364,
          -2.1015620259249816,
          -4.005352136486216,
          -1.841950215529348,
          -2.7385521486165474,
          -2.304696536501167,
          -2.424434094874744,
          -2.50686913343504,
          -3.0690583773222135,
          -2.6320666419822683,
          -2.724787707588028,
          -1.8981841623788391,
          -2.6575404323265794,
          -3.215130634854388,
          -7,
          -2.896895724059367,
          -2.4695912148977635,
          -3.154423973114647,
          -3.0515191052522455,
          -3.1629182646528187,
          -7,
          -2.664125798067482,
          -4.445012287887958,
          -4.3252076894829194,
          -3.4831496918725606,
          -2.70245039072442,
          -2.5047923325915096,
          -7,
          -2.6135439287814037,
          -4.090927852581608,
          -7,
          -3.6856163571494998,
          -3.221028026628,
          -4.355451520126517,
          -7,
          -2.7268285792599825,
          -2.5604380346856566,
          -2.8904979072499057,
          -7,
          -4.359987174441292,
          -4.274827255438105,
          -2.7730868841903242,
          -4.079814130800685,
          -4.054841184337388,
          -2.793993985228541,
          -3.5380330425453947,
          -7,
          -3.113453102441966,
          -2.65653375964828,
          -2.865258990838749,
          -2.785547323317465,
          -3.4571372583035815,
          -3.60929196953529,
          -2.568444504925961,
          -3.4835427242299106,
          -7,
          -2.966861870621276,
          -2.7905545662675157,
          -7,
          -3.099655335838334,
          -7,
          -3.863976783904387,
          -2.802625019766844,
          -3.254513550378272,
          -7,
          -7,
          -7,
          -4.269396182694991,
          -2.647458205191794,
          -3.131765267829788,
          -7,
          -3.8233568364187,
          -7,
          -3.4542566949442497,
          -3.3009322684108247,
          -3.8337206904446335,
          -4.301854372269586,
          -7,
          -3.5277955602574043,
          -7,
          -2.76882167592319,
          -4.34519723192998,
          -7,
          -4.304705898212766,
          -2.695981727762372,
          -7,
          -3.8777935313390106,
          -3.8071289555924217,
          -3.162954824898502,
          -3.9033432515780624,
          -4.278181784567518,
          -7,
          -7,
          -7,
          -7,
          -3.7527703904636067,
          -7,
          -7,
          -2.3162754078854086,
          -2.42419057139359,
          -1.9850832255533275,
          -7,
          -4.016824493667488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.253338005326106,
          -7,
          -7,
          -4.009365898346244,
          -4.292521884574141,
          -3.102567091434675,
          -3.799845783427429,
          -3.2953691485100065,
          -7,
          -7,
          -7,
          -3.8404668106930764,
          -2.882873675280301,
          -7,
          -7,
          -7,
          -3.45673465817014,
          -3.1826727446541563,
          -7,
          -4.271121055704133,
          -3.3337494624819706,
          -7,
          -2.7471726918545585,
          -7,
          -3.085488786659366,
          -4.293141483450931,
          -3.323939275128193,
          -0.9967664064449114,
          -4.277104727283855,
          -3.534062386452289,
          -7,
          -7,
          -3.9096629851540183,
          -3.8131137540078983,
          -7,
          -4.384514698685653,
          -3.0423248787407227,
          -7,
          -7,
          -3.6792234211650037,
          -4.0198014777812645,
          -7,
          -7,
          -3.379879362206697,
          -3.0314277016763533,
          -7,
          -3.8098738192491894,
          -7,
          -7,
          -3.4355683335961067,
          -4.320146286111054,
          -7,
          -3.620198538893282,
          -2.5541104258018246,
          -4.003007906240602,
          -2.6652190398290867,
          -2.918857291696986,
          -2.9060077736235383,
          -7,
          -4.277655047714709,
          -7,
          -7,
          -7,
          -7,
          -1.5702069657950393,
          -7,
          -7,
          -4.285602311285613,
          -3.051568839187227,
          -7,
          -7,
          -4.267195203145968,
          -7,
          -7,
          -7,
          -7,
          -3.2101222446610786,
          -3.6926927305822153,
          -7,
          -7,
          -4.278524964737017,
          -7,
          -7,
          -7,
          -7,
          -4.311160272879129,
          -7,
          -3.6440022469547033,
          -3.7745717052805707,
          -7,
          -4.279461609257673,
          -7,
          -4.33128554558701,
          -7,
          -7,
          -2.9014319539092193,
          -7,
          -7,
          -3.7278664494674896,
          -3.839100782707153,
          -7,
          -7,
          -7,
          -4.3070251187186726,
          -7,
          -3.875620660301091,
          -7,
          -4.283391697297128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.229528263787672,
          -7,
          -3.8415972035066765,
          -7,
          -7,
          -2.727570543332238,
          -4.1081363805377995,
          -7,
          -4.530571059737016,
          -2.8828712516830937,
          -3.0714962638675525,
          -4.539163952951567,
          -7,
          -7,
          -7,
          -7,
          -1.930508951944087,
          -7,
          -7,
          -3.1013116450211458,
          -2.448803173921036,
          -3.4958091474186204,
          -4.532180884618628,
          -4.528003465383692,
          -3.7705329210993614,
          -4.239074138235893,
          -4.5330981124594105,
          -3.6131462965186256,
          -3.9353182915022433,
          -4.529597161225425,
          -7,
          -4.533276237578995,
          -4.246806220166817,
          -4.531300053075186,
          -3.9584205280525184,
          -7,
          -3.374797209025671,
          -3.3018212232307826,
          -3.2802773049196117,
          -7,
          -7,
          -3.1511491223040866,
          -7,
          -3.461913898795249,
          -7,
          -7,
          -4.562197666191757,
          -3.694203933575552,
          -3.465308479587306,
          -2.448595364081614,
          -3.9551824629011803,
          -2.9818817925949124,
          -3.6936060505361743,
          -7,
          -4.05872962075172,
          -3.7787901581790777,
          -7,
          -7,
          -7,
          -7,
          -4.058046230395282,
          -3.722939325314079,
          -2.8240267397174676,
          -4.530186886967461,
          -7,
          -3.6509385888289296,
          -4.528312379405361,
          -3.473588022310713,
          -4.274053883354042,
          -7,
          -7,
          -3.0395263052541535,
          -4.5294175204160725,
          -3.6478229105357323,
          -7,
          -7,
          -3.288281171909262,
          -3.5068984373862233,
          -4.231278397611435,
          -7,
          -3.8581761379823445,
          -4.234314768012676,
          -4.084123279339492,
          -4.264806021368701,
          -4.244611065056592,
          -3.844949113517317,
          -2.4188872035926767,
          -3.3608654723254574,
          -3.298307137328508,
          -4.051962449783047,
          -7,
          -7,
          -2.751241843078004,
          -3.774541295270132,
          -3.6153771576934948,
          -7,
          -3.4996229415662405,
          -4.536065794512006,
          -4.528273777167044,
          -7,
          -3.215047503142592,
          -7,
          -3.3480735347698563,
          -4.541416977191859,
          -3.620425256876902,
          -2.7103232406700224,
          -4.534394211412905,
          -7,
          -4.539189050875863,
          -4.239887318594856,
          -2.5220269964024324,
          -3.934889645032683,
          -7,
          -7,
          -4.264865026366129,
          -3.5334485099051594,
          -4.060067971523982,
          -3.6415281911320134,
          -2.4344378504815065,
          -7,
          -4.604506849267865,
          -7,
          -3.5179904971151483,
          -4.539276882190668,
          -3.515753457160138,
          -3.970067796549137,
          -7,
          -7,
          -2.939928231349194,
          -3.559379888183303,
          -7,
          -7,
          -2.996350348616368,
          -7,
          -7,
          -7,
          -4.529763904040117,
          -4.2270378449302255,
          -2.8714047098259203,
          -3.742040221497518,
          -3.1996546344860612,
          -3.2798265817940147,
          -4.5354460332310165,
          -3.2887919939714223,
          -7,
          -7,
          -7,
          -3.3710094985094377,
          -2.737214434244013,
          -7,
          -7,
          -4.058501943429649,
          -3.3143588613003385,
          -7,
          -7,
          -4.546690693184241,
          -4.064345657162171,
          -4.529828018849261,
          -3.6964812039323243,
          -7,
          -4.553846631726588,
          -7,
          -4.545900617729224,
          -4.611096367331743,
          -7,
          -4.056574560375764,
          -2.61485036404734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.531185030184496,
          -7,
          -2.70972002338062,
          -3.8328919447597904,
          -3.4400635219066436,
          -7,
          -3.381611391532234,
          -2.300023362178051,
          -3.4226655866872724,
          -2.4568833994475088,
          -2.887582139061224,
          -3.3951515915045425,
          -3.375712374112721,
          -2.8257880038594525,
          -4.068767006668941,
          -4.5397283057269675,
          -4.543111543953438,
          -4.574852754517795,
          -7,
          -4.578925589458768,
          -7,
          -3.546275259758089,
          -4.547454710572725,
          -4.441538038702161,
          -7,
          -3.110156642805923,
          -7,
          -3.4149065282950337,
          -4.233123078521081,
          -7,
          -4.5318747110147335,
          -7,
          -4.111967837206073,
          -4.249516315801663,
          -7,
          -3.5984135413909475,
          -2.6672816919115228,
          -2.7923809128265353,
          -7,
          -7,
          -3.8328664197968454,
          -4.528993787130841,
          -7,
          -7,
          -7,
          -7,
          -2.637900340212178,
          -3.338737651026101,
          -3.289988209900654,
          -2.4925560800567275,
          -4.527410765292662,
          -4.5324231190671025,
          -7,
          -3.7611005389581424,
          -7,
          -7,
          -3.7710973064704123,
          -3.941821886920197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.544601278651145,
          -2.391442325089044,
          -4.527784518264025,
          -4.227256649297079,
          -7,
          -7,
          -4.5356611526594435,
          -4.233757362965511,
          -7,
          -4.535737051730224,
          -4.27997476431969,
          -7,
          -3.1964193881874445,
          -2.779334077665609,
          -3.1464753323636017,
          -7,
          -7,
          -2.9529779993305736,
          -3.116337117195697,
          -2.248090400539062,
          -7,
          -2.3852703943099414,
          -4.23620965371706,
          -4.531210593459676,
          -7,
          -3.5551750900198105,
          -3.309596552000989,
          -2.8941621612398625,
          -3.1534083167071616,
          -4.002133650511155,
          -4.54241458174664,
          -4.234340087615185,
          -7,
          -7,
          -3.956108374541934,
          -4.254994950511596,
          -7,
          -7,
          -7,
          -7,
          -3.9417846441215487,
          -4.527913324054898,
          -2.98085060800934,
          -2.996803438696495,
          -4.238848680362337,
          -4.079350105514485,
          -4.065567267015471,
          -2.215185156768748,
          -3.9148189804474733,
          -7,
          -3.39849389779482,
          -7,
          -7,
          -3.490590487028833,
          -7,
          -2.744200307271721,
          -3.084325995016827,
          -7,
          -4.546801682361427,
          -4.563884341080175,
          -3.0592335136550552,
          -2.1617231590741603,
          -2.9855547737831674,
          -4.22698634552522,
          -7,
          -7,
          -3.3116646514869297,
          -2.8560430122090255,
          -7,
          -7,
          -3.6001618428040993,
          -4.230282835852113,
          -3.6455696293511517,
          -4.2316097450225865,
          -4.583074023956643,
          -7,
          -4.061377074193888,
          -3.618977317675097,
          -3.330971503774443,
          -3.2363596486015918,
          -3.229049111241418,
          -2.871390169322596,
          -7,
          -3.818170888296688,
          -3.7237366063718094,
          -3.31467646842225,
          -7,
          -7,
          -4.530583859645118,
          -3.8659208408403645,
          -3.553529977558765,
          -4.284960588171913,
          -4.247838295127875,
          -4.227719636143868,
          -7,
          -3.5991792894059005,
          -7,
          -7,
          -4.535989952876927,
          -4.576341350205793,
          -7,
          -2.4724947715607035,
          -7,
          -7,
          -1.5340678634984088,
          -2.1103035006659145,
          -2.0160115495985877,
          -2.9394612034997856,
          -2.932171297266403,
          -2.1835406129076365,
          -1.9948329128860245,
          -1.6877806393969483,
          -1.0650364639268783,
          -2.5077741221460546,
          -2.6345475652023325,
          -0.8852321221528484,
          -2.429680746621696,
          -2.5619903668492667,
          -1.8028615604132865,
          -2.20693859196342,
          -2.229221599200847,
          -1.9835239517004495,
          -2.8295313775229554,
          -1.9586868157082074,
          -3.3640582653991773,
          -2.314727385062696,
          -2.2272036990455257,
          -7,
          -2.369092109159725,
          -3.2900902865734016,
          -2.661630051899821,
          -2.300416865454403,
          -3.704910051542378,
          -0.9568458642751151,
          -2.634907595612564,
          -2.52297964845796,
          -2.577427519432756,
          -2.7899553731353857,
          -2.943593432768369,
          -2.892392094254278,
          -2.69520396043928,
          -2.2940678038836153,
          -1.6649368604307129,
          -2.300187660198306,
          -7,
          -2.8378006143042986,
          -2.549569566907775,
          -3.020531260920681,
          -2.6163889429844382,
          -2.8219766055687945,
          -3.7053015503412405,
          -2.097787945361475,
          -3.680133984649043,
          -4.259916255109018,
          -3.2790320886972957,
          -2.1424620454245744,
          -2.9084850188786495,
          -7,
          -2.5709391184171992,
          -3.559406022425555,
          -7,
          -3.0643368455752453,
          -2.7712352239514018,
          -4.578799605747632,
          -7,
          -2.807501866452052,
          -1.9501801689771088,
          -2.660914577702647,
          -7,
          -4.581517309425811,
          -7,
          -2.795961136858702,
          -3.8951240732440984,
          -3.7027342912041856,
          -3.1231018793858474,
          -3.5828933782683268,
          -7,
          -3.6551064060137053,
          -2.7879229050489425,
          -3.0324195952491424,
          -2.6558292129755996,
          -2.618276682014942,
          -2.527585840254779,
          -2.2148751395299437,
          -2.3630373261769373,
          -7,
          -2.438506225611244,
          -2.671999095322251,
          -3.0610281561595416,
          -2.6121464739420484,
          -7,
          -3.107268464426313,
          -2.766365628359224,
          -3.2053848312193485,
          -4.530161263362409,
          -7,
          -7,
          -7,
          -3.204029495212759,
          -1.9476093557914202,
          -4.550802954195946,
          -2.6714604371096526,
          -3.752317396505286,
          -3.1142772965615864,
          -2.633302722941081,
          -2.765937135152177,
          -4.547553195630555,
          -7,
          -2.8807575651270136,
          -4.529109391761361,
          -2.4632874084964818,
          -3.5310723014339627,
          -4.057361762985039,
          -3.94704140525522,
          -2.5264329298349275,
          -3.770287307201907,
          -3.4643060782515827,
          -3.361249219040631,
          -3.834789347763296,
          -3.101946530502681,
          -4.0570952896126675,
          -3.757497251140972,
          -3.8459905281322375,
          -3.7184779627626545,
          -7,
          -3.1068405824589407,
          -4.529032325426976,
          -4.22914407968993,
          -2.3037087626829402,
          -1.9414629514463753,
          -1.6675127877368712,
          -4.226741639919595,
          -3.5151027924982197,
          -3.2997770081757754,
          -3.9353182915022433,
          -3.8594265299129775,
          -7,
          -4.241683421140342,
          -2.7826091089197362,
          -7,
          -4.05319372760087,
          -3.5522300511361626,
          -4.542277546927697,
          -1.3552594090066894,
          -4.533644978798763,
          -3.367666464108184,
          -4.538912893903674,
          -7,
          -4.244808836846276,
          -2.12549665884508,
          -1.9036270577576777,
          -7,
          -3.9631028015052774,
          -4.5628517332249725,
          -3.2684917546884384,
          -2.015957669406119,
          -3.8345605710335615,
          -4.5303662098847335,
          -2.5112890475342247,
          -4.24793646018509,
          -1.979057017608061,
          -3.859102254763127,
          -2.6765763753194163,
          -3.8435566646554724,
          -3.6892200372638357,
          -2.444088188482623,
          -7,
          -2.5494491496233778,
          -3.8333128902027824,
          -4.248194037940857,
          -3.5976513155803156,
          -3.426798944023706,
          -7,
          -3.897352134344313,
          -1.8524940966254402,
          -3.9709161076671813,
          -3.647896190630718,
          -2.8636975819970516,
          -3.6551984824411914,
          -3.7426017027800285,
          -3.8410214152574884,
          -2.566006465061365,
          -2.1815879907462583,
          -3.5409048153170177,
          -3.3347301238021214,
          -7,
          -4.527784518264025,
          -2.765730627864516,
          -2.6422714468377064,
          -4.536798248304418,
          -2.4338304210375745,
          -1.922777805741903,
          -3.4693678549817437,
          -2.2963622293270944,
          -2.582784501558062,
          -3.1150133695865434,
          -3.778717876156957,
          -3.9318391094686325,
          -4.544700412838673,
          -4.527823164012659,
          -4.098839777341088,
          -3.7334151031279044,
          -2.7944309034001953,
          -7,
          -4.544811911757776,
          -4.061226225119115,
          -2.42052842803183,
          -7,
          -4.231329390593782,
          -7,
          -4.227012095991085,
          -7,
          -4.528865301439568,
          -4.530263748713028,
          -2.2626506583095267,
          -3.3127620973617313,
          -7,
          -7,
          -4.057285644418214,
          -7,
          -7,
          -7,
          -4.5336703976909245,
          -4.552862814292621,
          -7,
          -3.6634841951143935,
          -2.635427892595569,
          -3.9751329846551604,
          -4.5349774634615505,
          -7,
          -3.786242554893265,
          -4.533683106579122,
          -7,
          -2.639183518940812,
          -7,
          -7,
          -3.9616583486377155,
          -2.6042988785196877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.620933784949581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.09429639740537,
          -7,
          -7,
          -4.137322456100344,
          -7,
          -3.800166990201364,
          -3.2072976788831435,
          -3.3783322773448266,
          -2.524790536255634,
          -7,
          -7,
          -2.4391431421511482,
          -2.9454839722770996,
          -4.123721006440036,
          -7,
          -7,
          -7,
          -3.6188844849954505,
          -2.4359427216196234,
          -7,
          -7,
          -3.044042990514571,
          -2.9815994616341035,
          -7,
          -3.8042076050820413,
          -7,
          -3.3029181682256157,
          -3.426998958756537,
          -7,
          -3.97727638194836,
          -7,
          -4.098366796439331,
          -7,
          -7,
          -4.146003933810869,
          -7,
          -3.3988944070784957,
          -7,
          -7,
          -3.805534839182783,
          -3.3777455512976413,
          -7,
          -4.109814695694399,
          -3.37211383659506,
          -2.946091841038187,
          -3.213597436747359,
          -7,
          -7,
          -4.18130038026682,
          -4.124471618919488,
          -3.3596774133729372,
          -2.2763438284791606,
          -3.8683799024767196,
          -3.124678081714868,
          -3.259928190374753,
          -7,
          -7,
          -4.168850903709554,
          -4.1165745397769165,
          -7,
          -7,
          -7,
          -7,
          -3.5933137634894505,
          -3.701211682926409,
          -7,
          -7,
          -3.316359806957494,
          -4.0948901970066505,
          -3.763253242238571,
          -3.7344797894255772,
          -7,
          -3.8656072985678236,
          -3.1014063406271877,
          -7,
          -7,
          -7,
          -7,
          -3.2485082765704014,
          -3.846615416837761,
          -4.105714510570921,
          -7,
          -3.868203455637116,
          -4.113776283837032,
          -4.179120729609299,
          -2.846449579949132,
          -7,
          -7,
          -2.3019444805059224,
          -3.586587304671755,
          -2.677451625650918,
          -4.09711842434465,
          -4.093141404751149,
          -3.466422722433792,
          -3.1385553051135826,
          -2.8562151648112137,
          -2.147968623792859,
          -3.8003733548913496,
          -1.9931308791052327,
          -7,
          -7,
          -7,
          -4.330393478740346,
          -7,
          -3.8566684836115352,
          -4.1295610023090825,
          -3.733892435884163,
          -3.7095970127717655,
          -7,
          -7,
          -4.123786328615372,
          -2.848416012647067,
          -3.303651959291475,
          -7,
          -4.093806775615175,
          -3.1960840270593827,
          -2.958844834507418,
          -2.6185308249743566,
          -7,
          -3.0309557541293497,
          -2.4077440864415216,
          -7,
          -7,
          -7,
          -3.7011989173716975,
          -7,
          -4.169645049134955,
          -3.727730982208553,
          -7,
          -4.113441953965322,
          -2.5881623506409634,
          -3.8739306272740444,
          -7,
          -7,
          -3.0031649931515867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6565964439829135,
          -4.239299479126893,
          -2.44301317756863,
          -2.8823433932257045,
          -4.113976758289846,
          -3.8142031870727573,
          -7,
          -7,
          -7,
          -3.1375961048304024,
          -3.5725230978496376,
          -7,
          -7,
          -7,
          -3.368955945345503,
          -7,
          -7,
          -4.143046043337588,
          -3.4305909979730638,
          -7,
          -4.130365937265207,
          -7,
          -4.160948480864697,
          -7,
          -7,
          -4.290702243287854,
          -7,
          -3.8083797948823843,
          -3.0479780566846206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3084790401617297,
          -3.8036277953448154,
          -3.1113885483342627,
          -7,
          -3.1568771206909294,
          -2.7724390677510367,
          -7,
          -3.019064338239115,
          -3.5974209235343935,
          -4.130044142287605,
          -7,
          -3.656545368541022,
          -4.141136090120739,
          -4.125188384168597,
          -7,
          -3.910037123553051,
          -7,
          -3.9193919267738595,
          -7,
          -3.3660907531790603,
          -2.9399246544550244,
          -3.208377364442061,
          -7,
          -3.775537634780957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3399976925134327,
          -3.85171686836248,
          -7,
          -4.158483112699248,
          -2.9832126912055705,
          -2.8029560678922834,
          -7,
          -7,
          -7,
          -4.096736260462469,
          -7,
          -7,
          -7,
          -7,
          -3.024658469643913,
          -7,
          -2.814691432747457,
          -2.980882286861777,
          -7,
          -7,
          -4.1101181270103275,
          -3.5220201655517376,
          -7,
          -7,
          -7,
          -4.136086097384098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6270199151057425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.141543834220653,
          -2.954145988829548,
          -2.674955301826999,
          -3.2932994029762894,
          -7,
          -7,
          -2.788221750502334,
          -3.669967369908504,
          -2.142461959498398,
          -7,
          -3.030387005736945,
          -3.817664512233857,
          -7,
          -7,
          -3.6393071563607533,
          -2.986473147467338,
          -2.142347745144511,
          -3.389621664607619,
          -7,
          -2.9851697609193852,
          -4.113843118937487,
          -4.098539897992862,
          -7,
          -7,
          -4.166370901288565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.850125259486936,
          -3.6118294794983736,
          -7,
          -7,
          -7,
          -3.29321813423232,
          -1.7105666632245071,
          -7,
          -2.6068836655376235,
          -7,
          -7,
          -7,
          -4.142045148157744,
          -2.9993791357314246,
          -7,
          -7,
          -7,
          -7,
          -3.8536069638544386,
          -2.6689652196894014,
          -3.509359359920102,
          -7,
          -7,
          -7,
          -3.292526805507146,
          -4.207365037469072,
          -3.805296916157985,
          -7,
          -4.162803292382675,
          -4.103050747435957,
          -7,
          -3.8055008581584002,
          -2.502942175170398,
          -7,
          -4.122117536313263,
          -7,
          -3.4148062795010126,
          -3.52572876813568,
          -2.726619352948061,
          -3.3327795532366213,
          -4.114344054609816,
          -3.5602893055163447,
          -3.9865702106959704,
          -2.997677564080969,
          -7,
          -7,
          -7,
          -4.187971701647396,
          -3.955567497098864,
          -3.759264833889892,
          -7,
          -7,
          -7,
          -4.160378481462862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3861619419931306,
          -7,
          -7,
          -2.691735876574482,
          -3.0382532300273724,
          -3.0538037967190252,
          -3.208441356438567,
          -2.8830522639851215,
          -2.692112196581435,
          -1.8485896890584994,
          -2.087105877348507,
          -2.279458263588633,
          -2.6304075328867076,
          -2.537024762287411,
          -2.6659207135605842,
          -2.1578492750447857,
          -2.321979395394796,
          -2.2905603916711716,
          -2.7968883756334444,
          -2.4902690542323005,
          -2.613034900595505,
          -2.521234258047699,
          -2.7779501415669436,
          -3.417941993353871,
          -3.011685912675127,
          -2.6409496943435684,
          -2.369092109159725,
          -7,
          -3.481442628502305,
          -1.9942192749800425,
          -1.8977249567941763,
          -2.55837005931667,
          -2.23503054018388,
          -2.5799160842572224,
          -2.4452442714219425,
          -2.999407376098304,
          -2.4978983291481995,
          -2.3126383071751855,
          -3.3397946214759404,
          -3.1432602210975396,
          -3.113522863829351,
          -0.9851421527466361,
          -2.555234327252782,
          -7,
          -3.407073002684905,
          -3.7104660152370172,
          -3.448065555627402,
          -2.8939466075520737,
          -2.600894204894378,
          -3.1521965823342093,
          -2.327137353740817,
          -4.338356873353703,
          -7,
          -4.597585501752205,
          -3.015108160645837,
          -1.9329058771013887,
          -7,
          -3.251837240301341,
          -2.495779447167773,
          -7,
          -2.8969094467064838,
          -4.073901558314207,
          -7,
          -7,
          -3.7192247131031593,
          -2.7540402045573704,
          -3.4195335419309956,
          -7,
          -7,
          -7,
          -3.5943883000660994,
          -7,
          -4.249204881954037,
          -3.42380999917332,
          -4.4543569571548876,
          -7,
          -4.040641891544537,
          -3.335647312963058,
          -4.258864665172021,
          -3.6011905326153335,
          -2.827830650428466,
          -3.418159186999809,
          -3.703974054821806,
          -2.5826365539208287,
          -3.4156076226641474,
          -2.5371629618741345,
          -3.3661554207584863,
          -2.961197677184457,
          -3.7366614272636336,
          -7,
          -3.899492196138132,
          -3.7659085216120016,
          -4.5011551526205675,
          -7,
          -7,
          -4.092439911331141,
          -7,
          -2.310424569709,
          -1.7993838349774411,
          -3.8522969658269255,
          -2.5518671414727314,
          -2.9862892996576695,
          -3.0273182383152535,
          -3.275285754348347,
          -2.8144897448778106,
          -7,
          -7,
          -3.0673436774644065,
          -4.097048965011131,
          -3.474857031317561,
          -3.5069377582913672,
          -4.111564935454498,
          -4.149311505907915,
          -2.9404649600696073,
          -3.6705241577820797,
          -3.139800402737301,
          -2.8634880853390756,
          -2.9046479350221572,
          -3.6518834713412964,
          -7,
          -4.114844413145024,
          -7,
          -3.1051410195295324,
          -7,
          -2.984507745681445,
          -4.09684052033139,
          -4.099991233544684,
          -2.932203091884407,
          -2.627250609866013,
          -1.5312093266203366,
          -3.792391689498254,
          -3.5658183139700923,
          -2.8980075137525616,
          -4.1192558892779365,
          -3.4731364734564774,
          -7,
          -3.65571454961871,
          -2.470954121333649,
          -7,
          -7,
          -4.157486989384848,
          -7,
          -2.7175664928276775,
          -3.330718078732588,
          -2.8565699071538484,
          -7,
          -4.112202690730536,
          -3.663700925389648,
          -2.5131368536733767,
          -2.563797396028862,
          -7,
          -3.3431271326910226,
          -3.483672863806311,
          -1.6116777049205535,
          -2.1176281732215787,
          -3.4099331233312946,
          -7,
          -2.623271290574289,
          -3.8477576883923312,
          -2.6675199254122264,
          -3.694312646223346,
          -2.6307576146032075,
          -4.132675849092962,
          -2.854980412250097,
          -3.237155148617628,
          -7,
          -3.349107468372933,
          -3.8047526021504607,
          -4.149496233465742,
          -3.262094964674063,
          -2.353978137771715,
          -7,
          -3.1796953833245065,
          -2.4748004181498424,
          -3.7297046213121874,
          -7,
          -3.5071944854321804,
          -3.8711641328029494,
          -3.7633281442736357,
          -4.126131407261984,
          -2.864147294190161,
          -2.5260490176773085,
          -4.12881914219451,
          -4.123884293460008,
          -7,
          -7,
          -2.490272090219577,
          -2.258033898662295,
          -3.339053735709139,
          -2.006331374972674,
          -2.7247329816316608,
          -3.001486462883789,
          -3.217878578027433,
          -2.461009143239449,
          -3.3730697084061685,
          -3.4694685478507536,
          -4.110084422886923,
          -3.836893516376434,
          -7,
          -3.099202372435998,
          -3.74262040632664,
          -2.5328063591818957,
          -7,
          -4.138271111964449,
          -3.3432444303235798,
          -2.874493650852932,
          -7,
          -3.8047526021504607,
          -4.094610863032137,
          -7,
          -7,
          -3.6191281284699492,
          -3.4009177230754477,
          -2.377943380255784,
          -7,
          -7,
          -7,
          -3.6341076435144934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.916980047320382,
          -2.574646851788124,
          -3.7394404803282644,
          -7,
          -7,
          -2.805330913142769,
          -7,
          -7,
          -2.4447296125141382,
          -7,
          -7,
          -4.185117001142592,
          -2.4909740240681018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5420569281178227,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7890510200852203,
          -7,
          -7,
          -7,
          -4.560408824046945,
          -3.8684680990209865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.326949994165998,
          -4.452644967679994,
          -7,
          -7,
          -3.2255688175185697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6308991759102316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.247007093589786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0761851605990795,
          -7,
          -7,
          -3.5154721662623363,
          -7,
          -4.457457987982031,
          -4.429235339626655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2414664304127747,
          -7,
          -7,
          -4.364944777212948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.447220068979908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.375864714311806,
          -7,
          -7,
          -4.349102608563031,
          -3.9183654379299813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.323850003846802,
          -4.176857835696882,
          -7,
          -7,
          -7,
          -7,
          -4.046582950842146,
          -7,
          -7,
          -7,
          -7,
          -4.652323713973758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9487185272362937,
          -3.7128404350917226,
          -7,
          -7,
          -7,
          -3.1783138409662524,
          -7,
          -4.068797896861347,
          -7,
          -7,
          -7,
          -4.307314152387912,
          -7,
          -7,
          -7,
          -3.8650052152360628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.650834630108787,
          -7,
          -7,
          -7,
          -7,
          -4.450526229129723,
          -7,
          -7,
          -7,
          -2.7480927765437277,
          -4.436941451239042,
          -7,
          -7,
          -7,
          -3.898834838068274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.690334723349453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.462697408101717,
          -7,
          -4.297946441222536,
          -7,
          -7,
          -3.9000286541655096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.512123826722944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.637099289431483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4594226460511015,
          -7,
          -4.533848288291342,
          -2.885011903141026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.779055089381888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.138849827637302,
          -7,
          -7,
          -7,
          -3.0644942191796862,
          -7,
          -7,
          -7,
          -7,
          -4.1162091258034,
          -4.172748838982743,
          -7,
          -4.440090074313282,
          -7,
          -7,
          -7,
          -7,
          -4.371178731816287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.386955759983757,
          -7,
          -7,
          -3.9994133063420474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.377160490206987,
          -7,
          -7,
          -7,
          -7,
          -3.284762751307711,
          -4.146918352521449,
          -7,
          -7,
          -7,
          -4.119272389514709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9171027120527055,
          -7,
          -3.519133917830289,
          -4.352404434139514,
          -2.808008751906401,
          -7,
          -4.428620672671939,
          -4.096930858642897,
          -7,
          -7,
          -7,
          -7,
          -4.381512174732024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.364044179182894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021007270859423,
          -7,
          -7,
          -3.5474923692614233,
          -2.7541899247820285,
          -2.347145941412144,
          -7,
          -2.933414971724668,
          -4.043637309592571,
          -3.0689276116820716,
          -2.690562171664373,
          -3.465900847365547,
          -4.478609778601228,
          -3.913513626432214,
          -3.267406418752904,
          -2.456983802056859,
          -2.391208588858177,
          -3.768889578891181,
          -2.770146448968574,
          -2.3343890960940303,
          -3.5708722050483694,
          -3.4170424458046416,
          -3.5727343459905363,
          -3.024396422382719,
          -2.4797710500612387,
          -3.233470670817551,
          -3.2900902865734016,
          -3.481442628502305,
          -7,
          -3.1296438644866935,
          -2.540475264195069,
          -3.6595549297109704,
          -3.2498720445016467,
          -3.0522097301280926,
          -2.5005019364006,
          -2.5100106099225887,
          -2.2848187024759126,
          -3.5748219286222884,
          -2.4666939907094694,
          -2.7236415128461675,
          -3.3674180474093456,
          -2.910745645079236,
          -4.489508491577916,
          -7,
          -3.137986732723532,
          -3.7750339396089885,
          -4.451924528420122,
          -4.400468911217488,
          -2.7822752388298224,
          -7,
          -3.621699974221918,
          -4.483601559279265,
          -7,
          -3.729074752482558,
          -3.237334892511582,
          -3.9907890290468746,
          -7,
          -3.601734148260105,
          -7,
          -7,
          -7,
          -3.4992844078926906,
          -7,
          -4.338695489014784,
          -3.6593273360246177,
          -3.3634742633268195,
          -2.6465529378608714,
          -7,
          -7,
          -7,
          -3.0106100786713155,
          -7,
          -3.4218759084509527,
          -4.211534339415678,
          -3.967524576101294,
          -7,
          -4.141961636010401,
          -3.8331015573439173,
          -3.2861890569077867,
          -4.391464411839103,
          -3.8690438760940067,
          -7,
          -3.919561825762341,
          -4.409358189930165,
          -7,
          -3.712809987468449,
          -2.8797516081234797,
          -7,
          -3.3482101573364997,
          -7,
          -7,
          -4.087518774750445,
          -7,
          -7,
          -7,
          -4.3227979683463875,
          -7,
          -3.456821348021599,
          -3.7451355399585355,
          -7,
          -7,
          -7,
          -7,
          -2.7893558638643454,
          -7,
          -7,
          -7,
          -4.117238142139819,
          -7,
          -3.429043414844925,
          -4.3932241163612975,
          -7,
          -7,
          -7,
          -3.355853635810542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.489874142210878,
          -7,
          -7,
          -4.000665408189577,
          -4.1197296465874,
          -3.120664134523185,
          -7,
          -3.8916675221214505,
          -4.466333688132342,
          -7,
          -7,
          -7,
          -7,
          -4.283629087730046,
          -7,
          -4.327522402716821,
          -7,
          -7,
          -3.927951770866328,
          -7,
          -4.349238662688126,
          -7,
          -3.8573324964312685,
          -7,
          -4.481413961253745,
          -3.258110255321881,
          -7,
          -7,
          -7,
          -4.354838055584639,
          -4.5392015992941275,
          -7,
          -7,
          -4.454677205220384,
          -7,
          -3.46125191780495,
          -7,
          -3.9126648075972716,
          -7,
          -4.334051440346892,
          -3.079543007402906,
          -7,
          -3.724849087629386,
          -7,
          -7,
          -7,
          -3.7422536699065936,
          -7,
          -7,
          -4.500545202798604,
          -7,
          -7,
          -4.3098749213150755,
          -7,
          -7,
          -7,
          -4.1957198117305765,
          -7,
          -7,
          -7,
          -4.325022800270452,
          -7,
          -3.3829870641565014,
          -3.893669309799605,
          -7,
          -3.7679717213816186,
          -4.133921940423772,
          -4.055531225050898,
          -4.0682600937746995,
          -3.746556361410369,
          -4.401297125021583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.104845461232334,
          -7,
          -7,
          -7,
          -3.276921132065774,
          -7,
          -4.330738358178876,
          -7,
          -7,
          -7,
          -7,
          -3.8501559224220925,
          -4.430574884046865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.524266268766978,
          -7,
          -4.400106070428546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6754617093945177,
          -7,
          -7,
          -7,
          -7,
          -4.364813556261336,
          -7,
          -7,
          -7,
          -7,
          -4.400054211274874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.659906696804346,
          -2.73148245387053,
          -4.397627204021875,
          -7,
          -7,
          -3.4010485392138086,
          -3.463381000147473,
          -7,
          -7,
          -7,
          -7,
          -4.655800900961374,
          -2.971282383756981,
          -4.720084846541146,
          -7,
          -4.392855169389535,
          -2.9388927346460196,
          -4.361246068497589,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7715176648201174,
          -4.361246068497589,
          -4.355365304018832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1690602549929996,
          -7,
          -7,
          -4.069381308695122,
          -7,
          -3.9925888608075706,
          -4.658412098960092,
          -7,
          -7,
          -7,
          -4.36674038984291,
          -2.8528922168871693,
          -3.978235314045796,
          -3.944457995626289,
          -3.8623954891178243,
          -7,
          -4.661130904420943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.208387603795154,
          -3.687136402800057,
          -7,
          -7,
          -4.373867870327068,
          -7,
          -4.700599889320824,
          -7,
          -7,
          -4.67641923171836,
          -3.0022344165281387,
          -7,
          -3.9735157732409796,
          -7,
          -7,
          -3.8733455175941787,
          -4.670635429748331,
          -4.658459776998312,
          -7,
          -3.8989810036504373,
          -4.3596837372363515,
          -4.2031417191119855,
          -3.780560319410449,
          -4.191311257590993,
          -7,
          -2.952604003896067,
          -4.683380289928945,
          -3.8391086457313133,
          -7,
          -7,
          -4.676089749249794,
          -3.588691788592222,
          -4.372819981678968,
          -3.572630359747045,
          -7,
          -4.07109367343858,
          -7,
          -7,
          -7,
          -3.9556877503135057,
          -7,
          -4.372626673477937,
          -7,
          -7,
          -3.7226718836790575,
          -7,
          -7,
          -4.362548443294778,
          -7,
          -3.3763692615312713,
          -4.184814416196629,
          -7,
          -4.0694553366895745,
          -7,
          -4.213659399781825,
          -7,
          -3.930687109941523,
          -3.023796701804347,
          -7,
          -7,
          -7,
          -3.24224136405354,
          -7,
          -4.20017537681442,
          -4.086502198970369,
          -7,
          -7,
          -3.5555377913202615,
          -3.979966989370279,
          -7,
          -7,
          -3.510768355278083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.141990345122414,
          -4.22303708921397,
          -3.7710654259763947,
          -3.8503836364759403,
          -4.660789612079682,
          -4.417894986250287,
          -7,
          -7,
          -4.664284616658668,
          -3.448103143768015,
          -7,
          -7,
          -7,
          -4.6609602917760835,
          -3.5784809383880685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.674649910242433,
          -7,
          -7,
          -4.417629438837392,
          -7,
          -7,
          -3.1157417527104747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.026508750502279,
          -4.6581831714879405,
          -3.6008640363098396,
          -7,
          -4.398217868234877,
          -2.8722222919570086,
          -4.661888372968945,
          -3.3723771304851287,
          -4.385829618669783,
          -4.665412118002188,
          -4.673361938712162,
          -4.365459904598516,
          -4.367626106062465,
          -7,
          -3.435797540266917,
          -7,
          -7,
          -7,
          -7,
          -4.730103665154419,
          -7,
          -4.222430314660491,
          -7,
          -4.054191576796431,
          -7,
          -4.703308577559542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.895652709000915,
          -3.0503668651683298,
          -3.538900337140719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.658993413729996,
          -7,
          -7,
          -3.1320707676294646,
          -4.686600523389447,
          -3.651702853962148,
          -2.851895212589347,
          -7,
          -7,
          -7,
          -4.6637386065732995,
          -7,
          -7,
          -4.370216920815891,
          -4.667182018074072,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.667667712106219,
          -2.8327985213557447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6603151495574515,
          -7,
          -4.661007690901031,
          -7,
          -4.191637287031295,
          -4.228921951650121,
          -3.387711783284205,
          -7,
          -7,
          -7,
          -3.493365094127988,
          -4.068371418032643,
          -3.077252254231666,
          -7,
          -2.9446954207059086,
          -7,
          -7,
          -7,
          -3.7827432771138936,
          -3.7981238562219866,
          -3.7315001246145556,
          -4.096605900418895,
          -4.713347714848314,
          -4.666021627895574,
          -7,
          -7,
          -7,
          -4.677980868888067,
          -4.676318583037297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.671691093948305,
          -3.948119424380536,
          -4.186975160132497,
          -7,
          -7,
          -2.8855714145494162,
          -3.875648198186427,
          -7,
          -3.6304888957237034,
          -4.6562036470321875,
          -4.661604477060614,
          -4.686957849789318,
          -3.969900262617777,
          -3.2251396023011987,
          -3.566781853917318,
          -4.706530030980853,
          -7,
          -4.682271463859843,
          -4.672744198306599,
          -2.6308337889825735,
          -3.6760115020411783,
          -7,
          -7,
          -7,
          -3.799719530025879,
          -4.212249768898902,
          -7,
          -7,
          -4.67521907955274,
          -7,
          -4.6708578881893095,
          -4.658707618456519,
          -4.696958914626985,
          -7,
          -4.663116448584376,
          -4.3884919618358005,
          -7,
          -3.25375912042996,
          -3.8397419377808935,
          -2.542347267174691,
          -4.660893924309038,
          -3.405918097912158,
          -3.6683189267256213,
          -4.404209183192527,
          -7,
          -4.662323319907556,
          -7,
          -3.9840680235504013,
          -4.706273875527286,
          -7,
          -4.369855691820066,
          -7,
          -7,
          -4.197317322239914,
          -7,
          -7,
          -7,
          -4.691788524402698,
          -7,
          -3.2210795564374317,
          -7,
          -7,
          -3.073010596874898,
          -2.60967842177663,
          -2.2034408668304377,
          -3.2580960504481724,
          -1.4940749908103732,
          -2.804126688578728,
          -2.6522046472654086,
          -1.7706589656531093,
          -2.6081934347734985,
          -2.9775310775313324,
          -3.307103640720233,
          -3.0556130144779496,
          -0.818488609320864,
          -0.7319713505186216,
          -2.177159713164186,
          -3.2756666756431567,
          -1.8924969718749627,
          -2.8355583253959815,
          -1.7601052414855185,
          -3.2461124761404645,
          -2.9773469638264354,
          -2.2047227509440854,
          -2.4498226347770364,
          -2.661630051899821,
          -1.9942192749800425,
          -3.1296438644866935,
          -7,
          -1.6026370462159074,
          -2.6324294286822028,
          -2.5763371611864883,
          -3.0308351478228945,
          -1.3323484797349916,
          -2.4478630874001825,
          -2.59659709562646,
          -3.5550199970319314,
          -2.514163733887782,
          -2.5637651072627095,
          -3.070871674152227,
          -2.8086755289151313,
          -3.2173371298910296,
          -7,
          -3.3592614171553317,
          -3.033358978921552,
          -3.7195467231686625,
          -3.847475707588656,
          -3.0483627882402398,
          -4.672153296245931,
          -2.6780196452952088,
          -4.436035362607869,
          -7,
          -3.4791372440872745,
          -2.8621983673306364,
          -3.551768939006816,
          -4.6661902641189865,
          -3.426384731849464,
          -4.011790283886408,
          -7,
          -3.593209359886835,
          -3.403107805589821,
          -4.392626616474039,
          -7,
          -3.4643739521604857,
          -2.8036537624626874,
          -3.06561587658654,
          -7,
          -4.394714279533342,
          -7,
          -2.8131005261146176,
          -4.404483061833551,
          -3.2347252291627706,
          -4.054459837239404,
          -4.486125728191671,
          -7,
          -3.5623193047159516,
          -3.0165246700574415,
          -3.0582815767255327,
          -4.688108228551808,
          -3.7068955023874866,
          -3.629367119082936,
          -3.479894689528358,
          -3.2645241259165214,
          -7,
          -3.187405934399452,
          -2.780965997073155,
          -7,
          -3.0761363519495823,
          -7,
          -4.085067485564809,
          -2.511683639438494,
          -3.6632431070858584,
          -7,
          -7,
          -7,
          -7,
          -2.5787179284944166,
          -2.6925531793391446,
          -4.6723472746210035,
          -3.5739805970823184,
          -7,
          -4.066819584762148,
          -3.710371264260763,
          -3.828595456371702,
          -4.3688445068258215,
          -7,
          -4.002831038473649,
          -7,
          -2.9510581008223427,
          -4.688997903106314,
          -7,
          -7,
          -3.120319621011636,
          -4.670653972304613,
          -3.9152239006415415,
          -4.6624745037503095,
          -4.057485427208782,
          -3.8021577531869615,
          -7,
          -4.661036127893079,
          -7,
          -4.204987704187151,
          -7,
          -4.263438796505723,
          -4.655992731385616,
          -7,
          -3.132481759763925,
          -2.561057478866997,
          -1.8973124808813662,
          -7,
          -4.375791597685192,
          -3.6859777483144347,
          -4.662294967076999,
          -4.67817226232306,
          -7,
          -4.666265192538056,
          -3.7962134274930612,
          -7,
          -7,
          -7,
          -7,
          -3.3937067877220115,
          -4.659440781870318,
          -3.8890494582775337,
          -7,
          -4.35923767911977,
          -4.367570219499281,
          -3.258278015243031,
          -3.108341874862239,
          -7,
          -4.0811852273835525,
          -4.204328032253934,
          -3.766775227663688,
          -3.237003787001136,
          -4.659431268195865,
          -4.656988885990069,
          -3.2435836759981913,
          -4.6709783389504365,
          -2.6631251964165,
          -4.3768779392470645,
          -3.4082221074413357,
          -7,
          -2.918668816066225,
          -3.316003912815251,
          -7,
          -4.403772331808551,
          -4.658497915660603,
          -7,
          -4.708369903659491,
          -3.7617681419738305,
          -7,
          -4.4062079458419,
          -2.8724800107296673,
          -7,
          -7,
          -3.8582965245338854,
          -7,
          -7,
          -7,
          -3.5401260471738896,
          -3.124363208685011,
          -4.66505539251443,
          -4.061509024166617,
          -7,
          -7,
          -3.1862369644127835,
          -3.8995834172273165,
          -4.360754303685361,
          -3.074697614873553,
          -3.062111714033968,
          -4.193690297357073,
          -3.4299210335094057,
          -1.5957417359449504,
          -4.090989492731618,
          -4.0749169601414925,
          -7,
          -7,
          -7,
          -4.390484690310887,
          -7,
          -3.3941013020400446,
          -7,
          -4.3667777196075805,
          -7,
          -3.4443009228773778,
          -4.661282503857652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.355863205457035,
          -2.901049445343407,
          -4.666920265359489,
          -7,
          -7,
          -3.8148371659627713,
          -7,
          -7,
          -7,
          -7,
          -4.196747128441428,
          -4.365413100076178,
          -3.5839314291637243,
          -3.424511976727283,
          -7,
          -4.359389580131493,
          -7,
          -3.983707456077561,
          -7,
          -7,
          -1.5741752586053788,
          -7,
          -7,
          -7,
          -3.471749972663032,
          -4.6748519589392314,
          -7,
          -7,
          -7,
          -7,
          -3.4617368034318816,
          -4.666358834886494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.043110966748345,
          -7,
          -7,
          -7,
          -3.1383170547713606,
          -3.313389092794885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.634992781745514,
          -4.348441167278361,
          -7,
          -4.2841147684017695,
          -3.2078295271901087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6434378707401143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.436404044035392,
          -4.182386117037066,
          -7,
          -3.74681576560032,
          -7,
          -3.6760531246518715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.180540019942531,
          -7,
          -4.3545501955078825,
          -4.318459865188351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.262308674749025,
          -3.3303122908199514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7079370718550817,
          -7,
          -4.227012095991085,
          -7,
          -7,
          -4.344804755754967,
          -7,
          -4.186476030554059,
          -7,
          -7,
          -7,
          -3.646060468555641,
          -7,
          -7,
          -7,
          -3.1900867571876605,
          -4.256549382152194,
          -3.7968690816574724,
          -7,
          -7,
          -7,
          -4.214393431255206,
          -4.230653247179221,
          -3.7883805153195635,
          -7,
          -3.6128595111893813,
          -7,
          -7,
          -7,
          -4.380319801762641,
          -7,
          -7,
          -7,
          -4.27570284944821,
          -3.6308796768674907,
          -7,
          -7,
          -7,
          -7,
          -3.0204844661071655,
          -7,
          -7,
          -7,
          -7,
          -4.2761399853501425,
          -7,
          -4.469851458673805,
          -3.362050543687252,
          -7,
          -7,
          -7,
          -4.275714358663436,
          -7,
          -7,
          -7,
          -7,
          -4.192901826109565,
          -3.8392014186667978,
          -4.244771761495295,
          -7,
          -7,
          -3.624568550883257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0598215015104135,
          -3.8228869478341507,
          -3.6150628307515076,
          -4.288428094800999,
          -4.1933472563864616,
          -3.743568555128344,
          -7,
          -7,
          -4.203522416822585,
          -3.41427122809658,
          -4.027308827035546,
          -7,
          -7,
          -7,
          -3.693718157448391,
          -7,
          -7,
          -7,
          -4.2065830348377915,
          -7,
          -3.905957699092427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5394262421725897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6819902660768373,
          -7,
          -7,
          -3.34288063988093,
          -7,
          -3.809582158214607,
          -4.265831566255261,
          -7,
          -7,
          -3.607696230930896,
          -4.216086692421913,
          -7,
          -7,
          -7,
          -7,
          -4.283775978711523,
          -7,
          -4.371658839715409,
          -7,
          -4.563219955576987,
          -7,
          -4.422737533946394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.230729844577681,
          -2.927393696523618,
          -3.1902716533078457,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4024906523461884,
          -4.265100966221937,
          -3.3027482594758824,
          -3.3686808154548578,
          -7,
          -7,
          -4.190135520877031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1638085844113726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7125444818854723,
          -3.722798396870905,
          -7,
          -7,
          -7,
          -3.643982882895379,
          -7,
          -3.064395586111371,
          -7,
          -2.6532720020956755,
          -7,
          -7,
          -7,
          -3.5421849794668856,
          -7,
          -3.6760531246518715,
          -4.296379953771385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.363047594521094,
          -7,
          -7,
          -7,
          -2.8508261874537557,
          -3.873029812061044,
          -7,
          -3.751958761232796,
          -7,
          -7,
          -7,
          -7,
          -3.5279059647530167,
          -3.7727860752162554,
          -7,
          -7,
          -7,
          -4.227526784937202,
          -2.7801343698768295,
          -3.6433737066738225,
          -7,
          -7,
          -7,
          -3.4615842710047984,
          -3.5733126399548465,
          -3.8859545764960806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.20013885385738,
          -3.6706168864003255,
          -7,
          -3.790943296475265,
          -4.289744985155116,
          -3.1687505243233347,
          -7,
          -3.5393061553487297,
          -3.097045308948987,
          -3.8355003278673188,
          -7,
          -7,
          -7,
          -4.2558270827032345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.630122642859312,
          -7,
          -7,
          -7,
          -4.278662160909981,
          -7,
          -3.4624635115214004,
          -7,
          -7,
          -3.369941495811043,
          -2.9635635413114008,
          -2.7344981587649517,
          -3.231955883590876,
          -2.0852872431088505,
          -2.947467918751744,
          -2.2646789598646593,
          -1.5717635398280054,
          -1.6857217503623843,
          -3.018664324039434,
          -2.9449054803762325,
          -2.5125761664772472,
          -1.5245601896323777,
          -1.9270555394242939,
          -2.8513988476154615,
          -2.618692549885404,
          -2.2934016392073215,
          -3.000221522311308,
          -2.0243284317283794,
          -2.9532763366673045,
          -2.1672933146999465,
          -2.2155813662933226,
          -2.1015620259249816,
          -2.300416865454403,
          -1.8977249567941763,
          -2.540475264195069,
          -1.6026370462159074,
          -7,
          -2.7612017667507374,
          -2.150720749801374,
          -2.08949399909346,
          -1.4770168803050245,
          -1.9661604130089516,
          -1.4229130248643294,
          -1.8927428035300704,
          -1.8506730122857966,
          -1.9974024177152132,
          -2.722633922533812,
          -2.214623113871712,
          -3.143100713325941,
          -7,
          -3.0883133155880964,
          -3.537268839048176,
          -3.8703258579283086,
          -3.2805556080062743,
          -2.84609443527844,
          -3.6236627073562047,
          -2.8146330590485418,
          -4.387425422788231,
          -7,
          -3.7220474759675914,
          -3.1175781525058817,
          -3.113943352306837,
          -7,
          -2.603425452536781,
          -3.211900575986455,
          -7,
          -3.0867575075215505,
          -3.2010555635620643,
          -3.9824521513849898,
          -7,
          -3.90554147191974,
          -2.7717931351637475,
          -2.97269969669112,
          -7,
          -7,
          -7,
          -3.0559680048965525,
          -4.313382057578149,
          -3.795968887121449,
          -3.578016706360594,
          -3.213154119962002,
          -7,
          -4.073718350346122,
          -3.0623521379767524,
          -3.0831846311384115,
          -3.5699120543965486,
          -3.234812449442134,
          -3.116503972397613,
          -3.192966813152586,
          -3.3333512978152764,
          -7,
          -2.0532640920024914,
          -3.0072172913073967,
          -3.782520398709198,
          -3.7951662739081384,
          -7,
          -3.0898815718051527,
          -3.0593424912315332,
          -3.6902214025836595,
          -7,
          -7,
          -7,
          -7,
          -1.3206070069540838,
          -2.886609449744545,
          -7,
          -3.775697807765654,
          -7,
          -4.216825423266047,
          -3.5628992633333025,
          -4.230474467361159,
          -7,
          -7,
          -4.003223501202289,
          -7,
          -3.369108985997604,
          -3.794185864065302,
          -7,
          -7,
          -3.4046471506478975,
          -3.9205928620848085,
          -3.981909170090792,
          -4.198272098469347,
          -2.8083516624462996,
          -4.312980861723379,
          -7,
          -7,
          -7,
          -4.25324105377265,
          -7,
          -3.6169129139475986,
          -7,
          -7,
          -3.2137913435388277,
          -3.1291922661481304,
          -1.6647434274063997,
          -7,
          -7,
          -3.8885725968575997,
          -7,
          -7,
          -7,
          -7,
          -3.4686426683915115,
          -7,
          -7,
          -7,
          -7,
          -3.140395796137267,
          -4.1893780058420305,
          -2.932447061047428,
          -4.2009325358991925,
          -7,
          -4.215928229339918,
          -3.5393808228365784,
          -2.7713568794849883,
          -7,
          -3.6541283912618123,
          -4.251467875483525,
          -2.2757745455678955,
          -2.992523047441195,
          -7,
          -7,
          -3.1463218738791365,
          -7,
          -3.2129898529812593,
          -7,
          -3.3635179665825654,
          -7,
          -2.6452257115354163,
          -2.7535427437866438,
          -7,
          -3.6124871640450116,
          -7,
          -7,
          -4.320354032817672,
          -3.0006238500328752,
          -7,
          -4.317624643080059,
          -3.3596837372363515,
          -7,
          -7,
          -4.064108416233477,
          -7,
          -4.301181972138315,
          -7,
          -3.4034980044519982,
          -3.2404584771500917,
          -7,
          -3.5993917577937564,
          -7,
          -7,
          -3.1750941332353855,
          -2.6715480863793686,
          -3.8952291148413942,
          -2.841434558110041,
          -2.838552266388136,
          -4.222222082360713,
          -3.3490083922712177,
          -2.542115014259059,
          -4.282055370683707,
          -3.938294514123816,
          -4.1901074883140454,
          -7,
          -7,
          -3.8007857903277626,
          -4.283233364888754,
          -2.695346948869479,
          -7,
          -7,
          -7,
          -3.252665509389223,
          -7,
          -7,
          -3.876188963668735,
          -7,
          -4.180326625415149,
          -7,
          -3.4826735335033296,
          -3.319813684538678,
          -7,
          -7,
          -7,
          -3.1492191126553797,
          -7,
          -7,
          -7,
          -3.8883480101780488,
          -4.230755374041985,
          -7,
          -4.136546180350109,
          -3.2667233307073897,
          -3.4351159893241427,
          -7,
          -7,
          -3.9537838453708924,
          -7,
          -7,
          -2.5054251214759526,
          -7,
          -7,
          -7,
          -3.195043800258105,
          -4.2333769034738955,
          -7,
          -7,
          -7,
          -7,
          -3.2007365309762705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.82833491324989,
          -7,
          -7,
          -7,
          -7,
          -3.94875518016827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.742481981003778,
          -7,
          -7,
          -7,
          -4.294835039979782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.668860957617935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.013179676320571,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.472902651803664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.13021472332266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.003642970457874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2125870781238937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163526613344592,
          -7,
          -7,
          -7,
          -4.398335036939955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.394679275545099,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8000293592441343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1091734214254725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2784853222167785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6924503234060153,
          -7,
          -4.31285409125829,
          -7,
          -7,
          -3.7651047158339206,
          -7,
          -3.49380646215058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.017617573339674,
          -7,
          -4.37032800777951,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.176641017292667,
          -4.413150502106627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.472697954538768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3873898263387296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5107521158725525,
          -7,
          -3.4677478333627345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.182310013476203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9789271551990844,
          -3.3676354197905107,
          -7,
          -7,
          -7,
          -7,
          -3.683048969004335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7500453120117676,
          -7,
          -4.388663548407268,
          -7,
          -4.307912728272152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8777168008649765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.920553753485052,
          -7,
          -7,
          -3.5694377561074897,
          -3.3349417709129194,
          -3.34865094891718,
          -7,
          -3.155967607405664,
          -3.921911799387235,
          -2.6304278750250236,
          -3.907465106765856,
          -3.8092790719877616,
          -7,
          -3.733999286538387,
          -3.857191730038569,
          -2.9036244236153435,
          -2.9060763278487287,
          -3.1655960082919816,
          -3.7556652770726693,
          -3.3061836857929325,
          -3.888567493904454,
          -3.131689936111311,
          -3.6428995860133027,
          -3.4153072922255676,
          -2.7338042406523857,
          -4.005352136486216,
          -3.704910051542378,
          -2.55837005931667,
          -3.6595549297109704,
          -2.6324294286822028,
          -2.7612017667507374,
          -7,
          -3.529244938240268,
          -2.9439065209478206,
          -3.1456136683405305,
          -3.7501611290217176,
          -3.328022642064409,
          -3.529430354366986,
          -7,
          -7,
          -3.6290890758031935,
          -2.730964517156539,
          -3.930062226735009,
          -7,
          -4.081428325336669,
          -4.770439604180736,
          -7,
          -3.7766285534201502,
          -3.8800510030033712,
          -7,
          -3.694898389725206,
          -7,
          -7,
          -4.463579467456969,
          -4.492401820088892,
          -4.392468317043854,
          -7,
          -4.459678907011742,
          -7,
          -7,
          -3.8849651982007325,
          -7,
          -7,
          -7,
          -4.998006362349715,
          -4.2346817578497795,
          -3.9082236656987925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.254233782650147,
          -7,
          -7,
          -7,
          -4.793042643127849,
          -7,
          -7,
          -7,
          -4.906151802007568,
          -7,
          -7,
          -4.47357941507252,
          -7,
          -7,
          -4.174230427986725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.519434194913703,
          -3.146888794364442,
          -7,
          -3.621046389600625,
          -7,
          -3.5259513412480126,
          -4.370161366676781,
          -3.2879136470760337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.383456296524753,
          -7,
          -3.8700525816935447,
          -7,
          -3.1805559407036412,
          -7,
          -7,
          -3.570426178358973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9130399071502957,
          -3.6522359775051445,
          -2.8523552103155794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9836713828601966,
          -7,
          -7,
          -7,
          -7,
          -3.4947805290034273,
          -7,
          -3.5025636691073636,
          -7,
          -7,
          -7,
          -7,
          -3.3877710651183564,
          -7,
          -7,
          -7,
          -3.540454613671412,
          -3.8876454273058507,
          -3.370513089598593,
          -7,
          -3.2701662292606937,
          -7,
          -3.844894416747932,
          -7,
          -2.7745980589006467,
          -7,
          -3.382557321908786,
          -3.6282867310895144,
          -7,
          -2.6900778885780894,
          -7,
          -7,
          -7,
          -3.467608105583633,
          -7,
          -7,
          -4.167868469951459,
          -7,
          -7,
          -4.034548247098469,
          -7,
          -7,
          -7,
          -4.087142279383808,
          -2.665220071457662,
          -7,
          -7,
          -7,
          -7,
          -3.0846834979032507,
          -3.1581613832785496,
          -7,
          -2.6299190355035416,
          -3.769340394703022,
          -3.0742067332841834,
          -3.600346581311417,
          -2.74287979246495,
          -3.1776086358791855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.799064719351008,
          -7,
          -7,
          -7,
          -3.3780177889279908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8912028272602956,
          -7,
          -7,
          -7,
          -3.3823773034681137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8591983615338776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6966607992196483,
          -7,
          -7,
          -7,
          -3.616790486329716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7748817658187965,
          -7,
          -7,
          -7,
          -4.774202992384649,
          -7,
          -7,
          -7,
          -4.472419996698072,
          -7,
          -3.8760662153210648,
          -7,
          -4.474529484366441,
          -2.687256167541895,
          -3.9023972780121996,
          -7,
          -7,
          -2.6216749415481964,
          -2.787437245245736,
          -4.778390046685725,
          -7,
          -7,
          -7,
          -4.073403051739167,
          -2.2568180678516794,
          -4.822410013411183,
          -7,
          -3.0376462686996453,
          -2.334279232192053,
          -4.300254812427243,
          -4.297227800014187,
          -7,
          -4.783975003412671,
          -3.9337619793526004,
          -3.9966794618656425,
          -3.3883742444866853,
          -4.078377057151801,
          -7,
          -7,
          -4.775005728078465,
          -4.482380436634382,
          -7,
          -3.9456654994321343,
          -7,
          -4.308237057684112,
          -3.5191422616644465,
          -2.894141677812021,
          -7,
          -4.076319974124645,
          -2.8289676454127086,
          -7,
          -3.2197912707627743,
          -7,
          -4.300175042202833,
          -4.314667608117513,
          -3.8753651631765127,
          -3.781496874572939,
          -2.135514407143608,
          -4.788945727023748,
          -3.0455511516724045,
          -3.4698688556921424,
          -7,
          -4.174408732073123,
          -4.788797430139894,
          -4.2996670699201935,
          -4.476353322595013,
          -4.777484821118284,
          -7,
          -4.776119799052988,
          -3.649042634086176,
          -2.8044200749828567,
          -4.171133829751535,
          -7,
          -3.6108304412657146,
          -7,
          -3.6607841925779394,
          -4.197370165202425,
          -7,
          -4.788281527598792,
          -2.7611418053448147,
          -7,
          -3.4232601245473617,
          -7,
          -4.774049574030081,
          -2.9225415156302677,
          -3.3684871392613425,
          -4.774465869254357,
          -7,
          -3.4664015254461162,
          -3.931021759038731,
          -3.6149955887542284,
          -3.492683577744274,
          -3.7028109519217565,
          -4.7811950965511025,
          -2.053037863611757,
          -3.6173848117347926,
          -2.6890820438778835,
          -4.170533064658333,
          -7,
          -4.4869827371917586,
          -3.2628751809008034,
          -3.6721973575474354,
          -3.2907369876802903,
          -4.773559733815069,
          -3.029103150471092,
          -7,
          -7,
          -7,
          -3.100306711137599,
          -7,
          -3.7446272007728325,
          -4.3025401594317065,
          -3.3517894071459464,
          -2.6340286106172917,
          -4.775646850041662,
          -4.77402034534064,
          -3.9332196580203544,
          -3.825058099093539,
          -2.4300950892631468,
          -4.300008202553813,
          -7,
          -4.7845388415525,
          -3.8908260595923116,
          -3.2426656366452633,
          -4.777281791671014,
          -3.690810157601429,
          -2.138451442869295,
          -4.775581324181115,
          -7,
          -7,
          -3.5433974725754194,
          -4.477410687907252,
          -3.533475481486863,
          -3.5670679035778576,
          -7,
          -4.776134343165844,
          -2.6738533037533747,
          -3.27132050661406,
          -7,
          -7,
          -2.635680509209594,
          -7,
          -7,
          -4.7721162485787625,
          -4.471951454680982,
          -4.772042847107852,
          -2.3923943485481045,
          -3.6304888957237034,
          -2.797452607384794,
          -3.09491620426256,
          -4.077222510411053,
          -3.478809087081396,
          -7,
          -7,
          -4.477887831360864,
          -3.0254051779754487,
          -2.963588319885388,
          -7,
          -7,
          -4.776381518592003,
          -3.1011198063080787,
          -7,
          -7,
          -7,
          -4.080720261319698,
          -3.9948082246466132,
          -3.2742733377584177,
          -7,
          -4.786914606730178,
          -7,
          -7,
          -4.043080517519958,
          -4.781209471689111,
          -4.173171694527412,
          -2.3493012237976245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.296657878845073,
          -7,
          -2.714479217325374,
          -3.7741226371486234,
          -3.267272325511575,
          -7,
          -3.3907313564630464,
          -2.116931894711265,
          -3.4150459663945143,
          -2.8670081599665216,
          -3.415856350335432,
          -3.6656819947685397,
          -3.4431989589824896,
          -3.780511728833051,
          -4.180204752401327,
          -7,
          -4.303520036907281,
          -3.685211031044629,
          -7,
          -4.50070976802415,
          -7,
          -3.3385978508664627,
          -3.9380047853444586,
          -3.444217143549448,
          -7,
          -2.8699169070651678,
          -7,
          -3.6329294614279912,
          -4.77552307067083,
          -4.7807204498661315,
          -7,
          -7,
          -3.693787808102676,
          -4.1828994675482605,
          -7,
          -3.941149251276355,
          -2.155087384231883,
          -2.417338810319398,
          -7,
          -4.470946779511408,
          -4.172135696649566,
          -4.170452410963683,
          -7,
          -7,
          -7,
          -7,
          -2.480039624936464,
          -3.619886029358387,
          -3.0130118711375116,
          -2.248097000248326,
          -7,
          -4.77451696572855,
          -4.298263432540114,
          -3.5478325978105967,
          -7,
          -7,
          -4.307153601875836,
          -3.826801619428277,
          -7,
          -7,
          -7,
          -7,
          -4.7738156894162005,
          -7,
          -7,
          -4.781532786564054,
          -2.086052271614508,
          -7,
          -7,
          -7,
          -7,
          -4.077346099156037,
          -3.997663009732473,
          -7,
          -7,
          -4.325864436615347,
          -4.180297952488594,
          -2.837003810313908,
          -2.796267368858326,
          -3.3189695689123093,
          -7,
          -7,
          -2.702139548178527,
          -2.7528020888068068,
          -2.0148522278951115,
          -4.776570440218725,
          -2.306863306422832,
          -4.078268268673513,
          -3.928637222466674,
          -7,
          -3.6596500299986263,
          -3.0074836024192964,
          -3.158881948644272,
          -3.3281008587026437,
          -3.913913146172642,
          -3.603973901841678,
          -4.475177060761012,
          -7,
          -4.779264511479166,
          -3.944306380496884,
          -4.487159594558902,
          -7,
          -7,
          -7,
          -7,
          -4.303987581009804,
          -4.771940064202349,
          -3.1505636786888123,
          -2.9342782700303656,
          -3.9336318839818554,
          -7,
          -4.0814265251112465,
          -1.9979223205494447,
          -3.1596652554067797,
          -4.773245067425772,
          -3.059022969905103,
          -7,
          -4.475830932831453,
          -4.319300424211257,
          -3.782386616743111,
          -2.635773643682964,
          -3.147725497474199,
          -4.510692430840357,
          -4.782809322668878,
          -4.491767779403694,
          -3.387161939946565,
          -2.1133843004353485,
          -3.1037511078985416,
          -4.470968804605796,
          -7,
          -7,
          -3.5782480812332245,
          -3.1543063709318093,
          -4.297461397643421,
          -7,
          -4.185251678187814,
          -4.4728514865317806,
          -4.306839464804704,
          -3.9964314019794394,
          -3.7627126567903657,
          -7,
          -4.175931988544272,
          -3.4759615891924236,
          -3.821906377352323,
          -3.011523824754196,
          -3.038034210649267,
          -2.7585280362135705,
          -4.475286107828074,
          -3.139604468701357,
          -3.2296898397116656,
          -3.606414957134592,
          -7,
          -4.476382325832763,
          -4.773464626158091,
          -3.470963211036848,
          -3.77000803178587,
          -4.806010294559223,
          -4.482980715414231,
          -7,
          -7,
          -3.485480084723825,
          -4.773976498617766,
          -7,
          -7,
          -4.198106998873402,
          -7,
          -2.5361583110918096,
          -7,
          -7,
          -1.6999933818566404,
          -2.1623104462387976,
          -3.074827688737842,
          -2.8017639306855906,
          -2.826473816129836,
          -1.8253256070739754,
          -2.15915403552208,
          -2.059496009285706,
          -1.0138747530809518,
          -2.379838903069261,
          -2.661631761394197,
          -1.9994329149004895,
          -2.3762930992903013,
          -2.3427663427956724,
          -1.5774993553963323,
          -2.50972145474068,
          -2.275108261152224,
          -1.7333563961813585,
          -2.8863277558324616,
          -1.6629294556640104,
          -3.754028474893647,
          -2.5956201195001602,
          -1.841950215529348,
          -0.9568458642751151,
          -2.23503054018388,
          -3.2498720445016467,
          -2.5763371611864883,
          -2.150720749801374,
          -3.529244938240268,
          -7,
          -2.194721969117901,
          -2.478184036613144,
          -2.7830739811562824,
          -2.8485116746039396,
          -2.9688707307451963,
          -3.1593154656815914,
          -2.9689036873904175,
          -1.3235047974925307,
          -2.2826316017388204,
          -2.102554815370903,
          -4.777310801689522,
          -2.4071006006618583,
          -2.3086996539594438,
          -2.763716901638116,
          -2.3625947261651086,
          -2.262967172383463,
          -3.103076438493488,
          -1.579555753108801,
          -3.4553905597931154,
          -3.8367389381738333,
          -2.9529185089385104,
          -2.176527237504239,
          -2.0837428200895722,
          -7,
          -2.0870630004271984,
          -2.7884085266163745,
          -7,
          -2.540390030364661,
          -2.985125198180277,
          -4.10265319875918,
          -7,
          -2.4211910728677872,
          -1.3959028996833276,
          -2.684629432936173,
          -7,
          -4.803306862008678,
          -4.77450966660029,
          -2.3645362928944373,
          -3.9657726771873762,
          -3.3368112188941668,
          -2.870132733146647,
          -3.6719534541166303,
          -4.1702543792775595,
          -3.210651511243684,
          -1.9910194262396508,
          -2.9296487854824935,
          -2.904181310719912,
          -1.6926772003490882,
          -2.0964627896675685,
          -2.0448195975918297,
          -2.180051080456895,
          -7,
          -1.7797251329891868,
          -2.287525122351788,
          -2.551632247867079,
          -2.667011301386366,
          -7,
          -2.7657660113656077,
          -2.9543916354735393,
          -3.080937141070891,
          -4.773223105446387,
          -7,
          -7,
          -4.4717536368068815,
          -3.2733281472184315,
          -1.752576741650785,
          -3.7436024005366573,
          -2.256824609777707,
          -3.773340223171566,
          -3.276913958802221,
          -2.289659636281177,
          -2.723940845569182,
          -4.482201621904094,
          -4.296489682285046,
          -2.5937004799072296,
          -7,
          -2.216836286104777,
          -2.971047256283564,
          -3.629409599102719,
          -3.5051785493854672,
          -2.2769065190323636,
          -3.7422965511890913,
          -3.1777013644974312,
          -3.379254741314769,
          -3.6290234850671896,
          -2.818293237576922,
          -3.821215016691195,
          -3.697098511464285,
          -4.781798443044012,
          -3.4702144212290773,
          -7,
          -2.62445926333515,
          -4.29542781019911,
          -4.773245067425772,
          -2.242814416095409,
          -1.609297500646989,
          -1.607291828089711,
          -4.294723346427345,
          -2.974787932213558,
          -3.079407382205769,
          -3.6632876671684618,
          -3.710300751607476,
          -4.470513392168665,
          -3.9352696848113395,
          -2.4935723149618294,
          -7,
          -3.928154347824516,
          -3.463594402187,
          -3.8258298578112866,
          -2.1675045440973943,
          -4.173113394096824,
          -3.1574063947093705,
          -3.736707894580018,
          -3.8215062500719243,
          -3.7407286347551265,
          -2.0324609465937584,
          -2.276804279785151,
          -4.772424399356814,
          -3.3160822265631986,
          -3.449485411797984,
          -3.8289676454127086,
          -1.8713288289316703,
          -3.519689475629554,
          -4.773340223171566,
          -2.7535765122498272,
          -4.085054988986404,
          -1.6894476119461646,
          -3.3419077084620636,
          -2.3953054205960362,
          -3.549709912785665,
          -3.8213315334803046,
          -2.4686001095378365,
          -4.775231685855374,
          -2.5880623578472397,
          -3.6603764938868153,
          -3.742696572451403,
          -2.925673663220366,
          -3.247518382950562,
          -7,
          -3.158503212876601,
          -1.6554587420039284,
          -3.8438899878252886,
          -3.387062202035878,
          -2.8389594999108265,
          -3.257671517702943,
          -3.3595848033967033,
          -3.778794976552835,
          -2.2391351005633666,
          -1.4459683637782925,
          -3.82516637225655,
          -3.363091034829397,
          -7,
          -7,
          -2.6692527401905854,
          -2.762579485676154,
          -3.873836274597429,
          -2.853393977450666,
          -1.6504266854666678,
          -3.2921917372575997,
          -2.2019923324997857,
          -2.6183549594754334,
          -2.9807950320434013,
          -3.4267163023532548,
          -3.5198863039908845,
          -4.003367171740312,
          -4.771888663626186,
          -3.4194807372393323,
          -3.625305590015191,
          -2.505920882889847,
          -7,
          -3.9364706555715805,
          -4.1758450890945245,
          -2.1028331240006084,
          -4.17452497792015,
          -4.172391277829509,
          -7,
          -4.470983487381527,
          -4.772886215949434,
          -4.295332480930185,
          -4.1711777555614145,
          -2.2225070244468474,
          -3.382672494563074,
          -4.783167226237643,
          -4.473873648418939,
          -3.6615651537654403,
          -7,
          -4.774443968924965,
          -4.776454190482185,
          -4.298081281898712,
          -3.4638361311346295,
          -4.00238207493276,
          -3.3225537065176844,
          -2.8444028825329357,
          -4.022538340036338,
          -3.9307962629833004,
          -7,
          -3.7138474083382946,
          -4.298088569391382,
          -7,
          -2.7835414519189197,
          -7,
          -4.776112526813905,
          -3.61646851190577,
          -2.8473315065761877,
          -4.48602646088109,
          -7,
          -4.773208463509772,
          -4.3078097005972085,
          -4.772373056075185,
          -2.840457680151218,
          -4.002302882576187,
          -7,
          -7,
          -4.158060793936605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.576341350205793,
          -7,
          -7,
          -3.2143839279787567,
          -7,
          -7,
          -7,
          -4.467696879027591,
          -3.476237290271068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.270740112262184,
          -7,
          -7,
          -3.5632674454055637,
          -3.3670470284765495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.559567511673805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2230544131791055,
          -7,
          -7,
          -4.159958002678519,
          -3.558754271310005,
          -7,
          -7,
          -3.897956810006952,
          -7,
          -3.9551824629011803,
          -7,
          -7,
          -7,
          -7,
          -3.710709565724337,
          -3.3036463463892605,
          -7,
          -4.3361794534374445,
          -7,
          -7,
          -7,
          -7,
          -4.168762575622357,
          -7,
          -7,
          -7,
          -7,
          -4.2394746634651845,
          -3.776898262895438,
          -7,
          -7,
          -3.363692546534042,
          -7,
          -7,
          -3.776894806141374,
          -7,
          -7,
          -3.468483210827674,
          -7,
          -4.202188512266052,
          -7,
          -7,
          -3.848804701051804,
          -7,
          -7,
          -7,
          -4.215822555154372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4712988104094005,
          -4.233402277811895,
          -4.382485323486555,
          -7,
          -7,
          -7,
          -3.8877297972880305,
          -7,
          -7,
          -7,
          -3.9665484487767353,
          -7,
          -7,
          -7,
          -3.5177047595531556,
          -7,
          -7,
          -7,
          -4.253580289562183,
          -4.097430853944242,
          -7,
          -7,
          -7,
          -7,
          -3.23598728950903,
          -3.692905643431454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.610553705317095,
          -2.972067003654662,
          -7,
          -4.313550871333505,
          -3.863976783904387,
          -3.971028316966284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.412072669033916,
          -4.220970587520289,
          -7,
          -7,
          -3.288954860175721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.386570301700929,
          -7,
          -7,
          -3.6647594635811633,
          -7,
          -3.724808168565719,
          -7,
          -7,
          -4.177276711258586,
          -3.6202922479198407,
          -7,
          -7,
          -7,
          -7,
          -4.384514698685653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.160453890169641,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.56474494800163,
          -7,
          -4.213929278444742,
          -7,
          -7,
          -3.010802052272352,
          -3.3914350229382695,
          -3.3106225169268044,
          -3.765966424785714,
          -3.8796405572939117,
          -4.204554060135243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.55194988078541,
          -7,
          -3.561782630034868,
          -7,
          -3.588226874130211,
          -7,
          -4.184379080658596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.206123963991852,
          -3.0549121513317727,
          -3.2033258343997835,
          -7,
          -7,
          -4.158211669214101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3384166482463584,
          -3.941337481247457,
          -3.3928567672382504,
          -3.0404734857859026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721123331508574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6941189367490233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.164977077110886,
          -7,
          -4.167140035508358,
          -4.2664198658791035,
          -7,
          -3.8173449714419307,
          -3.828079590556746,
          -4.188506633818114,
          -7,
          -7,
          -3.9334113556023538,
          -3.894952635024377,
          -3.1478762882177977,
          -7,
          -2.937277107785396,
          -4.17070165581607,
          -7,
          -7,
          -7,
          -7,
          -4.357668093043634,
          -4.275311354541811,
          -4.011993114659257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.199618067707931,
          -3.7428625445258743,
          -7,
          -7,
          -3.7060916285745886,
          -3.0725066521685744,
          -4.0305997219659515,
          -7,
          -3.4385950832263315,
          -7,
          -7,
          -4.243410141653711,
          -7,
          -3.012415374762433,
          -3.3810892828256227,
          -7,
          -4.192567453336546,
          -7,
          -7,
          -3.3958655545065732,
          -7,
          -7,
          -7,
          -7,
          -3.985314180745103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8725932620341004,
          -7,
          -7,
          -3.653537478094413,
          -4.279176260897295,
          -3.0872420359898087,
          -4.1667852197354325,
          -7,
          -3.347363159274476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5959148826640113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2958633803612676,
          -7,
          -7,
          -2.4379733985675376,
          -2.819334514439521,
          -3.2532437471636304,
          -3.296957546032856,
          -2.817572046544905,
          -2.8709888137605755,
          -2.1934983993948127,
          -2.4166072267925043,
          -2.1240978284945977,
          -3.001376230057043,
          -2.1791769792994247,
          -2.7868804268938447,
          -2.818100471323298,
          -2.821787019668142,
          -2.0473773557579658,
          -1.4237401874818418,
          -2.6516512549072933,
          -2.4760577472967906,
          -2.4153503631086912,
          -2.3392654630551335,
          -2.1197886570592095,
          -2.0813620269415427,
          -2.7385521486165474,
          -2.634907595612564,
          -2.5799160842572224,
          -3.0522097301280926,
          -3.0308351478228945,
          -2.08949399909346,
          -2.9439065209478206,
          -2.194721969117901,
          -7,
          -2.8879518576185252,
          -2.5601080778478438,
          -2.1393215934514913,
          -2.295736217753519,
          -2.718857424981556,
          -2.780193827782793,
          -2.76435258836705,
          -2.2006073320814195,
          -3.893206753059848,
          -7,
          -3.525778813891725,
          -2.992730873083119,
          -3.8516455748718625,
          -3.258685162607472,
          -2.940354590418678,
          -7,
          -3.196185555942593,
          -7,
          -7,
          -3.916475004741629,
          -3.332281780585766,
          -3.1976763157398866,
          -7,
          -3.3336487565147013,
          -4.005630880886649,
          -7,
          -3.9967742708613048,
          -3.66774471943227,
          -7,
          -7,
          -3.4680712409883463,
          -3.2414788062846314,
          -2.724172386274545,
          -7,
          -7,
          -7,
          -2.819405603168696,
          -7,
          -4.013002607838666,
          -3.008923643234805,
          -4.001935529214752,
          -7,
          -3.9371541560218692,
          -3.353862824646005,
          -4.171820028914312,
          -3.9455178220778397,
          -4.176149161126549,
          -7,
          -3.364874485205343,
          -4.044755286295232,
          -7,
          -2.960003418425458,
          -2.811554061380131,
          -7,
          -3.9930704902346563,
          -7,
          -4.2440295890300215,
          -3.779508308822964,
          -4.5234472987303755,
          -7,
          -7,
          -7,
          -7,
          -2.174945640259249,
          -2.424181349757642,
          -7,
          -3.0800248875987006,
          -3.113031287956422,
          -3.07678043480133,
          -3.0459338868658743,
          -2.741939077729199,
          -7,
          -7,
          -3.3802112417116064,
          -4.151492428425498,
          -3.0966707291567483,
          -7,
          -3.049665211124215,
          -4.197914303318418,
          -2.3596084935067267,
          -3.7193036592295328,
          -3.3578157806578566,
          -3.393253384446486,
          -3.3842936639163343,
          -2.6003949625208245,
          -4.163697945892569,
          -3.8661395947446504,
          -4.1886191672078485,
          -7,
          -7,
          -2.962660686276774,
          -7,
          -4.154089069014421,
          -2.4945826812703573,
          -2.387224813600485,
          -2.0437751727897377,
          -4.1483558264494045,
          -3.436295195334751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.135215642869843,
          -7,
          -7,
          -3.9041472917242928,
          -7,
          -2.9424096635273034,
          -3.8611459408661815,
          -3.231752684425389,
          -7,
          -3.8637985386805003,
          -7,
          -2.753302742300264,
          -2.6586373316420966,
          -4.150664353529561,
          -7,
          -7,
          -3.2398831523208846,
          -2.8961481317298348,
          -3.3837555416836356,
          -7,
          -2.8542047958554297,
          -7,
          -2.4214779359271756,
          -4.217852280259893,
          -2.8281391448173476,
          -3.7058352143356887,
          -2.4367925158703856,
          -3.168897163634367,
          -7,
          -3.5129288625798827,
          -7,
          -7,
          -4.300443302006029,
          -3.13746920199865,
          -7,
          -4.297585445297346,
          -2.6249331307836736,
          -4.249785175832251,
          -3.087754123432391,
          -3.130861035664435,
          -3.176564776618749,
          -2.5455361868239503,
          -3.876160084825628,
          -3.108048462345716,
          -3.0044408002874246,
          -3.8785505177314277,
          -3.0606106822139933,
          -7,
          -7,
          -2.9383648306422847,
          -2.9378608845484484,
          -3.868526886768204,
          -2.6963299081698104,
          -2.5807226917052044,
          -2.834171816391641,
          -3.1474598958471045,
          -2.881313314761065,
          -2.9168366290301573,
          -4.215267343431722,
          -7,
          -7,
          -3.8473258307854237,
          -7,
          -7,
          -2.987030866887691,
          -7,
          -4.188056208438369,
          -7,
          -2.8763989853208183,
          -7,
          -4.1592663310934945,
          -7,
          -7,
          -3.8515029527705447,
          -7,
          -3.5519986190490087,
          -3.1535753376869526,
          -3.486118638421901,
          -7,
          -7,
          -3.4649364291217326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.644175898105283,
          -3.287667391274135,
          -3.656409670222731,
          -3.8642736968043794,
          -7,
          -3.7543993062505883,
          -7,
          -7,
          -2.868037067135169,
          -7,
          -7,
          -7,
          -3.2580250191096125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.258110255321881,
          -7,
          -7,
          -7,
          -4.677123120126264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9673058820223024,
          -3.485303795444586,
          -7,
          -7,
          -2.745207280286089,
          -3.0918668725187803,
          -4.6823526935396655,
          -7,
          -7,
          -7,
          -4.674907046819129,
          -2.3985208083390748,
          -4.259458489134114,
          -7,
          -4.012398492238693,
          -2.7644190002806313,
          -7,
          -4.677342280911539,
          -7,
          -7,
          -7,
          -4.677999100468688,
          -3.3985222965710804,
          -7,
          -4.374445883792621,
          -7,
          -7,
          -4.688624461754994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0939831124466552,
          -4.3750872200075035,
          -4.678554796337683,
          -3.648368883096271,
          -4.682181190837443,
          -3.9310169108928728,
          -7,
          -7,
          -4.096927384439907,
          -7,
          -4.686385986344789,
          -2.4621346471263537,
          -3.850278552518037,
          -3.697570111966399,
          -3.5482747377831885,
          -7,
          -4.378960846770892,
          -4.695297762874286,
          -7,
          -4.681114549675511,
          -4.681223141395172,
          -7,
          -4.378470580135305,
          -4.402364568884161,
          -3.833830684582083,
          -7,
          -7,
          -4.693216748951045,
          -4.674576414677026,
          -4.717870132737748,
          -7,
          -4.073498398717262,
          -4.393610296355292,
          -3.0430294039698493,
          -7,
          -4.0888445627270045,
          -7,
          -4.375882991545229,
          -3.889933671305516,
          -3.8439087506401615,
          -7,
          -7,
          -3.792216535439859,
          -4.202470152962895,
          -3.552024726583321,
          -3.7985038995469633,
          -3.987996774847518,
          -7,
          -2.7121713616353462,
          -4.224178991184729,
          -3.527334155497215,
          -7,
          -7,
          -4.393294356452329,
          -4.209506078350244,
          -4.391164551697127,
          -3.500227895915016,
          -7,
          -3.0681501687539985,
          -4.680126929448146,
          -7,
          -7,
          -3.635808418306866,
          -7,
          -4.089913938473309,
          -4.68397410472636,
          -4.407263402053051,
          -3.1586701314662657,
          -7,
          -7,
          -4.205213389092977,
          -3.9845903152271513,
          -3.5504790704430675,
          -4.203658299456246,
          -7,
          -3.844805457441659,
          -4.400710636773232,
          -4.10636090880675,
          -7,
          -3.6763277338813203,
          -2.914078585389112,
          -7,
          -7,
          -7,
          -3.8615254500826492,
          -3.8372275786535504,
          -4.093421685162236,
          -4.1042480469904445,
          -7,
          -4.679536910832304,
          -3.279979648597117,
          -3.696985092452125,
          -7,
          -7,
          -3.3832890421810387,
          -7,
          -7,
          -7,
          -4.675613388396707,
          -7,
          -3.8053875688707084,
          -3.125781451979629,
          -3.3083865333695637,
          -3.7129021250472225,
          -4.378634063849602,
          -4.133403170134419,
          -7,
          -7,
          -7,
          -3.056576055470881,
          -3.7741437419835786,
          -7,
          -7,
          -4.6798456359364575,
          -3.1259183533156225,
          -7,
          -7,
          -4.687778586493365,
          -4.684046027136429,
          -4.675659215036463,
          -3.905957699092427,
          -7,
          -4.692961424024017,
          -4.691912136795967,
          -7,
          -4.036221553313943,
          -7,
          -4.6784637473673705,
          -2.941432342498225,
          -4.677634323358943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5655566178828098,
          -3.978143981690324,
          -3.5175389738505816,
          -7,
          -4.114477539928802,
          -2.728725081971991,
          -4.0786199197404995,
          -4.0134018619680445,
          -4.1025794751762215,
          -7,
          -7,
          -4.384111374953769,
          -4.687234575674327,
          -7,
          -2.884741434421791,
          -7,
          -7,
          -4.711309402572865,
          -7,
          -3.843061394239539,
          -4.211173956728494,
          -3.7582556676825742,
          -7,
          -3.654435722700975,
          -7,
          -3.9422396150016215,
          -4.678773236017987,
          -7,
          -7,
          -7,
          -4.7188586102814725,
          -7,
          -7,
          -4.692238657427663,
          -2.8916940312831434,
          -3.0780135164511284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.378073856605894,
          -4.102313623466469,
          -2.9284607665244224,
          -2.9281254077339445,
          -7,
          -7,
          -3.9795938958489305,
          -7,
          -7,
          -7,
          -4.2125604579711435,
          -4.6858044157570795,
          -7,
          -7,
          -4.673951199690897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.574746369947656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.679227966109899,
          -7,
          -4.679891018182745,
          -7,
          -7,
          -3.400587324218979,
          -3.580827260638217,
          -7,
          -7,
          -7,
          -3.36639719186507,
          -3.843766528040535,
          -2.7703843143959808,
          -4.077967145146871,
          -2.6209142371841354,
          -3.777771076361577,
          -4.6766478920100125,
          -4.67704090631023,
          -4.75301588461289,
          -3.6770176510941748,
          -3.706197776014635,
          -3.636696802260469,
          -4.42908175442676,
          -3.985650973690949,
          -7,
          -7,
          -7,
          -3.7929429635083816,
          -4.694561328588372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.38907744379235,
          -3.7425051796758373,
          -4.381836799998343,
          -4.393855868587961,
          -4.684926111375293,
          -2.5439889874149095,
          -3.205339721431523,
          -4.675924914230961,
          -3.6440773478650277,
          -7,
          -7,
          -7,
          -3.1684081904984973,
          -2.9007493580610797,
          -3.6196236950212635,
          -4.7235705929867065,
          -7,
          -4.700270937356437,
          -4.3900868754237665,
          -2.322504808736829,
          -3.271344802890412,
          -4.674383429621003,
          -7,
          -7,
          -3.719960723392482,
          -3.928882112666166,
          -7,
          -7,
          -4.216350669139196,
          -7,
          -7,
          -4.677689059461427,
          -3.869173027321683,
          -4.679700380871964,
          -7,
          -3.5028707477497782,
          -7,
          -3.176461259564539,
          -3.7731401279444228,
          -2.682564292252525,
          -7,
          -2.9524804970471568,
          -3.4468390869568273,
          -3.8771491224653936,
          -7,
          -7,
          -7,
          -3.5247422079728614,
          -4.246170191757922,
          -4.716545872727093,
          -4.689371023618564,
          -7,
          -7,
          -4.39174644414508,
          -7,
          -7,
          -7,
          -4.709405656800057,
          -7,
          -3.068933142369716,
          -7,
          -7,
          -2.943171365088493,
          -2.793223222015908,
          -2.3435894368137173,
          -3.8624125229459523,
          -0.7221620522667832,
          -2.8169100265677667,
          -2.760542783272158,
          -1.4176693603506239,
          -2.453382497794081,
          -3.2057146347028325,
          -3.7511250715355837,
          -2.807281277268819,
          -0.8754081495280539,
          -1.3423384769387705,
          -2.6892164429333363,
          -2.8977740898582307,
          -1.991976621484873,
          -2.9297861091112036,
          -1.6391014484254336,
          -3.214830930113703,
          -2.73360277288189,
          -1.7810677641337438,
          -2.304696536501167,
          -2.52297964845796,
          -2.4452442714219425,
          -2.5005019364006,
          -1.3323484797349916,
          -1.4770168803050245,
          -3.1456136683405305,
          -2.478184036613144,
          -2.8879518576185252,
          -7,
          -2.162850015554981,
          -2.09527901059004,
          -3.2723058444020863,
          -2.1063346999125083,
          -2.254529486133525,
          -3.2032875576673656,
          -2.4826412859817872,
          -3.085998757380345,
          -7,
          -2.762930069450772,
          -2.873181900714484,
          -3.833035494730326,
          -3.4089095516830414,
          -2.7488412845235115,
          -3.6111920608684343,
          -2.5616466373074993,
          -4.451939869365103,
          -4.698144059924504,
          -3.5096874640549123,
          -2.6927430839305604,
          -2.7075517636469266,
          -7,
          -3.3015285611502345,
          -3.64834374496539,
          -7,
          -3.4453173644300032,
          -3.485548612258038,
          -7,
          -4.681087397502494,
          -3.023471752494701,
          -2.4769029428357405,
          -2.374764904123681,
          -7,
          -3.868022733383526,
          -4.677506578952049,
          -2.866211090217405,
          -4.421562798551045,
          -2.986469775153835,
          -3.564473725064019,
          -3.801245880819417,
          -7,
          -3.600409093134968,
          -3.390876255625289,
          -3.1166603796090073,
          -4.228716809495001,
          -3.897276490656009,
          -4.026655813877043,
          -3.28004693749461,
          -3.370457012527794,
          -7,
          -2.853714388484917,
          -3.0224347162992182,
          -4.100370545117563,
          -3.0567337084348547,
          -7,
          -3.859781410816321,
          -3.0109680484355525,
          -3.977867257898025,
          -7,
          -7,
          -7,
          -7,
          -2.459779837201633,
          -2.3109090808281607,
          -4.690754099997801,
          -3.2125030089235405,
          -7,
          -4.386436536805701,
          -3.4222298618548153,
          -3.650581244643046,
          -7,
          -4.375370938029058,
          -4.020054516012569,
          -7,
          -3.0473583240315048,
          -3.928489734390515,
          -4.377979759421654,
          -7,
          -3.0796876276113365,
          -4.689131197234498,
          -3.5968676524903462,
          -4.380247431410548,
          -3.599164109114247,
          -3.877256133113586,
          -4.076722343959474,
          -4.378870098398975,
          -7,
          -4.098037713285091,
          -7,
          -3.911180445710889,
          -7,
          -7,
          -3.333422082670884,
          -2.535271144672889,
          -1.611547280631969,
          -7,
          -7,
          -3.3632122826984414,
          -4.6811236000226275,
          -4.219182700931299,
          -7,
          -4.383878172624137,
          -3.0771390209860074,
          -7,
          -7,
          -7,
          -4.207436875114079,
          -3.508184502854504,
          -4.678390894445093,
          -3.8407063757428226,
          -4.682172162503082,
          -7,
          -4.085067485564809,
          -3.25998670693116,
          -3.0704978948302255,
          -4.674897865991049,
          -3.856055311086805,
          -4.222360914986827,
          -3.4094258686714434,
          -2.919414846427105,
          -4.678381786970454,
          -7,
          -3.020855097836129,
          -4.388394304726096,
          -2.6344302874418735,
          -3.79289049135988,
          -3.382531609556752,
          -4.684845361644412,
          -2.929792841881867,
          -3.1283992687178066,
          -4.201251424585158,
          -4.119816545937216,
          -4.677488326683328,
          -4.212471712342394,
          -3.683783616260912,
          -3.604325072460819,
          -7,
          -3.644906115230781,
          -2.80433418322736,
          -4.405935153146291,
          -7,
          -3.6217343758620233,
          -4.6963126949376415,
          -4.115785192710546,
          -4.683020006620726,
          -3.312555128668243,
          -3.5344322734758764,
          -4.081653294769661,
          -7,
          -7,
          -7,
          -2.984902189915971,
          -3.9177680024477564,
          -4.203495235193291,
          -2.540901998604406,
          -2.9610487745668284,
          -4.388269982091079,
          -3.1957222952450492,
          -2.4348625067705156,
          -4.1085565677610685,
          -4.0931326430729955,
          -7,
          -4.686341277784655,
          -7,
          -4.010121791503448,
          -4.2339516914043775,
          -3.3508376918557152,
          -7,
          -4.209264731625127,
          -4.079687627611336,
          -3.2748321112406487,
          -4.680154141734373,
          -4.677488326683328,
          -4.674502906671874,
          -7,
          -7,
          -7,
          -7,
          -3.1806500887021416,
          -3.9073128091789755,
          -7,
          -7,
          -4.678973375919766,
          -7,
          -7,
          -7,
          -7,
          -4.391199840108775,
          -7,
          -3.2433663825535968,
          -3.7663550034322113,
          -4.232928378875812,
          -7,
          -4.674456957849724,
          -4.098617771188012,
          -7,
          -7,
          -2.411815395815549,
          -7,
          -4.378461495902037,
          -4.700201652550818,
          -4.0922819190362185,
          -4.215998664514626,
          -7,
          -4.675879115620618,
          -4.389485040708147,
          -7,
          -3.8648584454950887,
          -4.383967880647654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3210596292066805,
          -7,
          -7,
          -7,
          -7,
          -2.899413095561151,
          -7,
          -7,
          -7,
          -3.7781633139517035,
          -3.387199929316944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2624201339243,
          -4.146484631135281,
          -7,
          -3.9199492952397463,
          -2.985512748745352,
          -7,
          -7,
          -7,
          -4.350209240309948,
          -7,
          -4.325125526216931,
          -2.910229876516631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067554376693503,
          -7,
          -4.052963128755503,
          -7,
          -3.308315360887939,
          -7,
          -7,
          -4.050515089642183,
          -3.857292282117438,
          -4.392626616474039,
          -7,
          -7,
          -4.371178731816287,
          -7,
          -4.343802333161655,
          -2.8806889746807043,
          -7,
          -3.975232615453934,
          -2.9176859904596166,
          -7,
          -7,
          -4.363179350058686,
          -7,
          -4.332115143703462,
          -7,
          -7,
          -7,
          -7,
          -3.3240318112662224,
          -7,
          -7,
          -3.7565220053905515,
          -7,
          -7,
          -7,
          -7,
          -4.3618033589256875,
          -3.5634726096192386,
          -7,
          -4.0527324074032185,
          -7,
          -7,
          -4.444653631000238,
          -4.349782453363471,
          -7,
          -7,
          -4.062393937253195,
          -4.328787200354535,
          -3.670653972304614,
          -7,
          -4.34523646004688,
          -7,
          -3.446623958820909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.043342626242493,
          -7,
          -7,
          -7,
          -4.5370000873213385,
          -4.32990612340021,
          -7,
          -7,
          -3.7740203453406393,
          -7,
          -4.356121506236986,
          -4.338476414912923,
          -3.913478292083329,
          -3.1977726765713683,
          -7,
          -7,
          -7,
          -7,
          -3.8038958708450883,
          -4.331447542877797,
          -7,
          -7,
          -4.376941757146759,
          -4.39100571835171,
          -7,
          -3.9446553685692547,
          -3.3683545135832196,
          -7,
          -7,
          -7,
          -4.37630315575592,
          -7,
          -3.886490725172482,
          -7,
          -7,
          -7,
          -3.7015679850559273,
          -7,
          -7,
          -7,
          -3.5983825736810133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4912355900332503,
          -7,
          -4.061666055214047,
          -4.400468911217488,
          -7,
          -3.6670947846969737,
          -7,
          -7,
          -7,
          -2.8369842214428083,
          -3.4771534234898636,
          -7,
          -7,
          -7,
          -2.969660680946805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.33897415086708,
          -7,
          -7,
          -7,
          -7,
          -4.143841983496664,
          -7,
          -4.3261719452891745,
          -3.061721880100873,
          -4.3243030374868345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.317770922950241,
          -3.5032306252680336,
          -7,
          -3.6921195499645236,
          -7,
          -7,
          -2.93201920696319,
          -3.729083757043612,
          -3.797042369698197,
          -4.082048958148108,
          -7,
          -3.8782727899035083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4661258704182,
          -7,
          -4.3252487652875375,
          -7,
          -4.507680500010818,
          -7,
          -3.637256175066493,
          -4.326868159893682,
          -4.341315794596473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.657457437356336,
          -2.64957822912025,
          -3.4381149636619983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325043347403704,
          -7,
          -7,
          -3.454128063868426,
          -7,
          -3.3531722243599043,
          -3.493923076927451,
          -7,
          -7,
          -4.326561143964193,
          -7,
          -7,
          -7,
          -7,
          -4.342521372898964,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.835977193225308,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5836844714826976,
          -7,
          -7,
          -7,
          -3.570914245110417,
          -4.0484029561527395,
          -3.9582691573533264,
          -7,
          -2.7269035130189034,
          -7,
          -4.322074505773784,
          -7,
          -4.478912638929306,
          -4.411737521817357,
          -4.468952557265534,
          -4.406625327867205,
          -4.4348402532975735,
          -7,
          -7,
          -7,
          -7,
          -4.365019742816535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504727542189424,
          -3.8588578876206907,
          -7,
          -7,
          -3.154535643494955,
          -7,
          -7,
          -3.9957996689346427,
          -7,
          -7,
          -7,
          -4.3462355816990375,
          -3.1657931554017056,
          -4.371086342494794,
          -7,
          -7,
          -7,
          -7,
          -2.793026934015807,
          -4.442824559187638,
          -7,
          -7,
          -7,
          -4.414839698336927,
          -3.689077884492417,
          -7,
          -7,
          -4.058255158229489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.543145296881339,
          -7,
          -3.321132199092705,
          -7,
          -3.0086809154269707,
          -7,
          -3.3815088944507314,
          -3.220265033587232,
          -3.720242018287057,
          -7,
          -7,
          -7,
          -4.074432424783191,
          -3.9441206092013927,
          -3.9304226032574,
          -7,
          -7,
          -7,
          -4.35778243623142,
          -7,
          -7,
          -7,
          -4.392943042340061,
          -7,
          -3.225434348532171,
          -7,
          -7,
          -3.0590242564640455,
          -2.8268651077942386,
          -2.737550989984645,
          -4.088153814644183,
          -2.305894630568496,
          -2.8779370338525085,
          -2.539154540856009,
          -2.085280893078655,
          -2.7886849514854286,
          -3.3273005379250478,
          -3.78265175161032,
          -2.7857934390100025,
          -2.273348870888125,
          -2.2520215366540106,
          -2.9875396517154216,
          -2.7313375524452694,
          -2.1200579131259305,
          -3.052325839013353,
          -2.657533887557986,
          -3.1789130287586653,
          -2.8482978128953333,
          -2.3132412519697714,
          -2.424434094874744,
          -2.577427519432756,
          -2.999407376098304,
          -2.5100106099225887,
          -2.4478630874001825,
          -1.9661604130089516,
          -3.7501611290217176,
          -2.7830739811562824,
          -2.5601080778478438,
          -2.162850015554981,
          -7,
          -0.7927023310481276,
          -1.8474761957022081,
          -0.6804478110759631,
          -0.7157613197949776,
          -3.1066023897279793,
          -2.75733479414663,
          -3.5575425837527512,
          -7,
          -2.9564864261652346,
          -3.232258962342702,
          -3.7477224620355085,
          -3.695604242313307,
          -2.7788221050942195,
          -3.75077829865311,
          -3.0450899717952025,
          -4.177796133292215,
          -4.369271532621027,
          -3.217565622015339,
          -2.9278717568932096,
          -3.0622695903007724,
          -7,
          -2.8707787029439324,
          -3.5847510978442347,
          -7,
          -3.4230983526454675,
          -2.8022083732093863,
          -4.396687435992471,
          -7,
          -3.246711655738116,
          -2.8414298821170925,
          -2.8523820261304644,
          -7,
          -4.400814192267559,
          -3.7218312169289187,
          -3.1453341143778153,
          -3.817714075084912,
          -3.8822983828565656,
          -3.6628926848054344,
          -3.866700756042499,
          -7,
          -3.9166013204578434,
          -3.6751181523167986,
          -3.074875572578264,
          -7,
          -3.609772216589793,
          -3.5227212849892453,
          -3.5822032661043184,
          -3.6282271039209024,
          -7,
          -3.2625435942161194,
          -3.210908385564785,
          -7,
          -3.2743834261010925,
          -7,
          -4.383725626444643,
          -3.352454090637652,
          -3.7571790442859356,
          -7,
          -7,
          -7,
          -7,
          -2.2363923022305676,
          -3.1049071253508416,
          -7,
          -3.5964871337365443,
          -7,
          -4.346216013155006,
          -3.3035765799789134,
          -4.055320982366588,
          -7,
          -7,
          -3.810618908484714,
          -7,
          -2.4996186230269615,
          -4.086306430529356,
          -4.327440676242755,
          -7,
          -2.8015719634582323,
          -4.349821269512391,
          -3.919078092376074,
          -3.855317205195943,
          -4.326356346034385,
          -3.817400081458108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.184137565214032,
          -7,
          -7,
          -3.270889819404854,
          -2.6266693909392713,
          -1.7867272544558848,
          -7,
          -7,
          -4.461393467035359,
          -7,
          -4.365413100076178,
          -7,
          -7,
          -3.626500047045582,
          -7,
          -7,
          -7,
          -3.8626480890490678,
          -3.797284856852405,
          -7,
          -4.0416886941315635,
          -7,
          -7,
          -7,
          -3.698347069034933,
          -3.2126838649269582,
          -7,
          -3.7737133252770216,
          -4.372193719275734,
          -3.1173687913306387,
          -3.5348000348742032,
          -7,
          -7,
          -3.3700811092612613,
          -4.350499991128803,
          -2.8337395275925594,
          -4.063839803002981,
          -4.08289303328818,
          -7,
          -3.4819951270342555,
          -2.855774116844509,
          -7,
          -3.941312625360662,
          -7,
          -3.7487305560984945,
          -3.580044747846509,
          -3.492540892167152,
          -7,
          -3.821038361317505,
          -3.3365287406782453,
          -7,
          -4.353916230920363,
          -4.005266332972769,
          -3.7631845706896083,
          -4.109291622066701,
          -7,
          -3.4505010436345014,
          -3.4924111373136824,
          -4.338017993470888,
          -7,
          -7,
          -7,
          -3.312660846032607,
          -4.364701049594699,
          -4.0300124406298,
          -3.886772643054438,
          -3.0699012492626916,
          -4.350228629754866,
          -3.638052246729691,
          -3.099986529255579,
          -3.4922189290866443,
          -4.06199877337403,
          -4.326540668516562,
          -7,
          -7,
          -7,
          -3.919269907010536,
          -3.4457079649469864,
          -7,
          -4.042811691807148,
          -7,
          -3.3987980983714206,
          -7,
          -4.323973605350882,
          -7,
          -7,
          -7,
          -7,
          -4.32054091992458,
          -7,
          -4.3419684081799375,
          -7,
          -7,
          -4.026247181477774,
          -7,
          -7,
          -7,
          -7,
          -4.356599435724971,
          -7,
          -3.0568128857204915,
          -3.938903149306872,
          -3.917155272048159,
          -4.328155261969947,
          -7,
          -4.374766670285203,
          -4.326069466588894,
          -7,
          -3.0800808854947244,
          -7,
          -7,
          -3.771477239864823,
          -4.361236616731331,
          -7,
          -7,
          -7,
          -4.051808294317092,
          -7,
          -4.394294045352843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.05207305990422,
          -7,
          -7,
          -7,
          -3.70661822733253,
          -3.590089133690572,
          -7,
          -7,
          -7,
          -7,
          -4.185683780318504,
          -2.972262193363085,
          -4.3532813395452905,
          -7,
          -4.289722698213798,
          -3.1938514061610848,
          -7,
          -7,
          -7,
          -4.228656958108935,
          -7,
          -7,
          -3.3120050534980376,
          -4.204581175577571,
          -7,
          -7,
          -3.8944545273697826,
          -7,
          -7,
          -7,
          -7,
          -4.233706654286382,
          -7,
          -3.352724338457504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.256188382589775,
          -7,
          -7,
          -3.0412792182779183,
          -4.2462523122993225,
          -4.359323129976207,
          -3.000599326273475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.077246746270425,
          -7,
          -7,
          -3.9387698227831174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.480754677678501,
          -7,
          -4.233402277811895,
          -7,
          -7,
          -4.349685397810314,
          -7,
          -7,
          -7,
          -3.9450252012424625,
          -4.200084063662152,
          -3.408966412900081,
          -7,
          -7,
          -7,
          -3.481165275721802,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.461903519335254,
          -7,
          -7,
          -7,
          -3.9076263048432662,
          -7,
          -7,
          -4.213065962065718,
          -7,
          -3.286658524615686,
          -7,
          -7,
          -7,
          -4.212054364801163,
          -3.550661875014696,
          -4.203658299456246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.996336518095784,
          -3.7412061626491493,
          -7,
          -7,
          -4.198959338670202,
          -4.100558162695284,
          -7,
          -3.945320840792275,
          -4.27618597407067,
          -7,
          -7,
          -4.064233296034753,
          -7,
          -7,
          -7,
          -3.678598037912645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3655050023663393,
          -7,
          -3.986906031380721,
          -3.9929068182233123,
          -7,
          -4.350616236975831,
          -7,
          -7,
          -7,
          -3.377008051526662,
          -3.6343160172184157,
          -7,
          -7,
          -7,
          -2.9876224583030213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.213730203854841,
          -7,
          -7,
          -7,
          -7,
          -4.349995899262856,
          -7,
          -4.196563035148052,
          -3.4965392919327227,
          -4.194042327886423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9283190245037223,
          -7,
          -7,
          -3.3125444135063975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.566178134479448,
          -7,
          -4.426820199963355,
          -7,
          -4.012119835804513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.237065952555404,
          -3.3439296430348087,
          -3.864689034136851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.884587698518654,
          -4.2709581850920975,
          -3.6748152298035857,
          -3.3785664849510084,
          -4.182671386675478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.59536901816875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.992398858487621,
          -4.222976449893391,
          -7,
          -4.029018329546481,
          -7,
          -7,
          -7,
          -3.7720404001784864,
          -4.22768107275287,
          -3.9915538885915707,
          -7,
          -2.778355189294754,
          -7,
          -7,
          -7,
          -7,
          -4.308329596317398,
          -7,
          -4.301832698184397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.248144987287778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.066661302300677,
          -3.908753019184534,
          -7,
          -7,
          -3.0270197814276156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3777978331112255,
          -3.9549898177161404,
          -7,
          -7,
          -4.259593878885949,
          -7,
          -3.153316096131449,
          -4.046339055604809,
          -7,
          -7,
          -7,
          -3.835056101720116,
          -3.8010147519958153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5001907186772634,
          -7,
          -3.358300615104299,
          -7,
          -2.8435499033564087,
          -7,
          -3.4194807372393323,
          -3.2835310112543548,
          -4.016887157902775,
          -7,
          -7,
          -7,
          -3.9607323219456383,
          -7,
          -4.002014788579384,
          -4.228836487527934,
          -7,
          -7,
          -3.6364377439793962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4647968279841517,
          -7,
          -7,
          -3.2020232907090485,
          -2.76035179171932,
          -3.046781218014158,
          -3.8023403545380106,
          -2.716890229017429,
          -3.0788757753354,
          -2.054403749346116,
          -2.021757440269967,
          -2.6726653809000602,
          -3.3061032087275857,
          -2.9111344395713137,
          -2.951623914708634,
          -2.2698529110122228,
          -2.79662007329528,
          -3.007049865423465,
          -2.824595830071867,
          -2.5805237212934,
          -2.927936449612896,
          -2.2150157709674456,
          -3.1005428500124648,
          -2.6873881317862036,
          -2.4023711903588105,
          -2.50686913343504,
          -2.7899553731353857,
          -2.4978983291481995,
          -2.2848187024759126,
          -2.59659709562646,
          -1.4229130248643294,
          -3.328022642064409,
          -2.8485116746039396,
          -2.1393215934514913,
          -2.09527901059004,
          -0.7927023310481276,
          -7,
          -0.9626905343016964,
          -0.5112127463855725,
          -0.7618305723701568,
          -3.458889540995547,
          -2.364456457828549,
          -3.9025234837947833,
          -7,
          -3.2707776164081075,
          -3.3618801933185427,
          -3.875177059814704,
          -3.8094025770958426,
          -2.9336559786575473,
          -7,
          -3.0665239222329292,
          -3.914660430589222,
          -7,
          -3.02498822250529,
          -3.072768502132931,
          -3.454858712881094,
          -7,
          -2.8458109383710863,
          -3.553073530637089,
          -7,
          -4.021995097954464,
          -2.8430401435941177,
          -4.289142835932333,
          -4.204472703648964,
          -3.194853381628648,
          -2.8934458584929437,
          -2.8227317862798773,
          -7,
          -3.99334803992326,
          -7,
          -3.1017884680466774,
          -7,
          -3.548920928104592,
          -3.728288835934386,
          -3.3194114508266073,
          -7,
          -3.599494919231938,
          -3.475588180969073,
          -3.3860154118710715,
          -3.42949850224274,
          -3.794975744051132,
          -3.627263416568221,
          -3.592398846115564,
          -3.481986946998056,
          -7,
          -3.2549718659011795,
          -3.1021773798589933,
          -4.265666699452483,
          -3.333751293283423,
          -7,
          -7,
          -3.061311084170788,
          -3.7603470785299065,
          -7,
          -7,
          -7,
          -7,
          -1.7297421890640772,
          -3.077141932831542,
          -7,
          -3.4781478706432734,
          -7,
          -3.6211503064479005,
          -3.611640712232615,
          -4.236814275171272,
          -7,
          -7,
          -4.30965145584932,
          -4.186419489155475,
          -3.043513847574348,
          -3.9760976755658817,
          -7,
          -7,
          -3.7511250715355837,
          -4.228143607597742,
          -3.9875322027298394,
          -2.973779621328686,
          -3.2933349269572516,
          -3.5398703234865425,
          -4.197693975083923,
          -4.200959878391846,
          -7,
          -7,
          -7,
          -4.098522590941953,
          -7,
          -7,
          -3.3727439493813733,
          -3.213505256885292,
          -1.783566892227157,
          -7,
          -7,
          -7,
          -3.727351448929302,
          -7,
          -7,
          -7,
          -3.7353593330017105,
          -7,
          -4.189181397180737,
          -3.9351544472161684,
          -4.214896807560221,
          -3.292278228672973,
          -4.1963420201397685,
          -3.315314212257778,
          -7,
          -4.198794500175598,
          -7,
          -4.088082906528282,
          -2.926642506981403,
          -7,
          -4.262308674749025,
          -7,
          -2.4524621781219906,
          -3.2037730116913004,
          -3.594088548371163,
          -7,
          -3.878636673026517,
          -7,
          -3.3335516904838083,
          -7,
          -3.494386526991594,
          -7,
          -3.2434514656445983,
          -3.038023740045158,
          -7,
          -3.83968749733336,
          -4.193597610298094,
          -4.229579462665645,
          -3.422138240878906,
          -3.170341737717802,
          -7,
          -3.8456147497502875,
          -3.680531913962837,
          -7,
          -7,
          -3.942256150419465,
          -7,
          -7,
          -7,
          -4.107006346381544,
          -2.9252223797699557,
          -4.212453961040276,
          -4.208387603795154,
          -7,
          -7,
          -3.1134361873995866,
          -3.293092341218131,
          -7,
          -3.3433347279168006,
          -3.2717075994955067,
          -3.9276013093257225,
          -3.563733164073743,
          -3.179978077587035,
          -3.509314554959585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.116961764372151,
          -7,
          -7,
          -7,
          -3.342652927457154,
          -7,
          -7,
          -3.8833490849946153,
          -7,
          -7,
          -7,
          -4.188956592526399,
          -3.4219739065729424,
          -3.615502908341466,
          -7,
          -7,
          -4.198106998873402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216429830876251,
          -3.362026703997158,
          -3.468495024507069,
          -3.5077659463446653,
          -4.199233930536901,
          -7,
          -7,
          -4.196424913949195,
          -7,
          -3.1881313117838195,
          -7,
          -7,
          -4.259402728142589,
          -3.4647875196459372,
          -4.2396747876467815,
          -7,
          -7,
          -3.75495958772171,
          -7,
          -3.5076984901097985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.093887520508484,
          -7,
          -7,
          -7,
          -7,
          -4.242740144605627,
          -7,
          -7,
          -7,
          -7,
          -3.225050696138049,
          -2.945941786252861,
          -3.9494388010365045,
          -7,
          -7,
          -4.251030698729345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.844063809083758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.437681873346445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5653755027140734,
          -7,
          -7,
          -3.2688119037397803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6340740254874686,
          -7,
          -7,
          -7,
          -4.330317365509652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.928549467001664,
          -3.36679638328673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.206717963375834,
          -4.064450501326473,
          -7,
          -7,
          -7,
          -4.999169704354565,
          -7,
          -7,
          -3.718667735316211,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.912416922612287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.074999186064199,
          -7,
          -7,
          -3.478566495593843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.099335277685958,
          -7,
          -7,
          -7,
          -7,
          -4.2553810651543404,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2236821951943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.993951595374087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1160429268492065,
          -7,
          -3.839603729470837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.600173959212428,
          -3.442636525782232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9706722426897194,
          -7,
          -3.690993032099869,
          -4.672561306030661,
          -3.196728722623287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.86914367814229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8880671134074367,
          -7,
          -7,
          -7,
          -4.0384015690099515,
          -7,
          -4.071697945221614,
          -7,
          -3.378158303868406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.59140490963274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0090682761922185,
          -7,
          -7,
          -7,
          -3.6555225962534177,
          -7,
          -3.824720456582034,
          -3.9343974407809883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.86410151204742,
          -7,
          -4.159927374995174,
          -7,
          -7,
          -4.324533491388053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.518921721978057,
          -7,
          -7,
          -3.2457700783611916,
          -3.5760820785097818,
          -3.819763220818885,
          -3.4295100408131383,
          -4.120285951147618,
          -3.1630736369452643,
          -1.7932664017413886,
          -2.8463262584308806,
          -2.9081801438349584,
          -3.1236066689862163,
          -2.3846691002476987,
          -3.425187657417824,
          -3.4728864095132606,
          -3.6408960461852953,
          -3.0372825946866087,
          -3.2056875899386528,
          -3.070722461788708,
          -3.1018393712025105,
          -2.130296789953377,
          -3.056824641809621,
          -2.6486260956304704,
          -3.3643527310171173,
          -3.0690583773222135,
          -2.943593432768369,
          -2.3126383071751855,
          -3.5748219286222884,
          -3.5550199970319314,
          -1.8927428035300704,
          -3.529430354366986,
          -2.9688707307451963,
          -2.295736217753519,
          -3.2723058444020863,
          -1.8474761957022081,
          -0.9626905343016964,
          -7,
          -1.8485087913944487,
          -1.7603398472357488,
          -3.771058068606956,
          -2.4000462323938807,
          -4.626165793139279,
          -7,
          -7,
          -3.8942200345812,
          -3.947139517642829,
          -7,
          -3.2721124722621524,
          -7,
          -3.733109454087558,
          -7,
          -7,
          -3.116200062045703,
          -4.013880713023503,
          -4.389927647380955,
          -7,
          -3.756225197591558,
          -3.414416202952902,
          -7,
          -3.8683504996479683,
          -4.393926006585837,
          -7,
          -7,
          -4.394661772492929,
          -3.5917505350796386,
          -4.139161474170334,
          -7,
          -7,
          -7,
          -3.4836918763698206,
          -7,
          -4.805291816380721,
          -4.117204986092783,
          -4.247211970742112,
          -7,
          -3.5669871327264575,
          -3.9734049744100606,
          -4.489979561169549,
          -2.867804085032966,
          -3.9428757745535403,
          -3.5766292484476274,
          -3.863095647914823,
          -4.2024474467730135,
          -7,
          -3.907826497930791,
          -3.52992441071121,
          -7,
          -4.44670022987886,
          -7,
          -7,
          -3.7170668969538765,
          -3.8431081419996067,
          -7,
          -7,
          -7,
          -7,
          -1.7529016789031202,
          -2.9664119711717043,
          -7,
          -3.370301561079633,
          -7,
          -3.009309224134771,
          -3.8875985480102555,
          -7,
          -7,
          -7,
          -7,
          -3.2317243833285163,
          -3.236530453031208,
          -7,
          -7,
          -7,
          -3.8615344108590377,
          -3.51241754860084,
          -3.460747541844197,
          -2.1953460583484197,
          -2.411409240981208,
          -3.0756685954731195,
          -3.3240765797394864,
          -3.3479151865016914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.462622574900549,
          -3.373948932062513,
          -2.0463848759412233,
          -7,
          -7,
          -7,
          -2.895238327804661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.255995726722402,
          -3.251638220448212,
          -7,
          -2.8713539819330216,
          -3.3138672203691533,
          -2.5561516778861386,
          -7,
          -3.3322364154914434,
          -7,
          -3.7340393487571233,
          -2.7190462913403337,
          -7,
          -7,
          -7,
          -2.2679994817957256,
          -2.949189030779539,
          -2.7103289580426293,
          -7,
          -3.478566495593843,
          -7,
          -3.6592232743780433,
          -7,
          -2.9271992125020683,
          -7,
          -2.5471591213274176,
          -3.9144489406985543,
          -7,
          -3.373157297798375,
          -3.292477593667784,
          -7,
          -3.0965624383741357,
          -2.3780673876278455,
          -7,
          -7,
          -3.943138228539406,
          -7,
          -7,
          -4.0287338793493355,
          -7,
          -7,
          -7,
          -4.076786033508079,
          -2.414061283620403,
          -7,
          -3.398287305357401,
          -7,
          -7,
          -3.339469510182976,
          -2.7011360660925265,
          -7,
          -2.7551122663950713,
          -3.181781470447434,
          -3.213916009644023,
          -3.4162243170985684,
          -3.4463100912355067,
          -3.156321950446713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.932763584161985,
          -7,
          -7,
          -7,
          -3.2103352437217962,
          -7,
          -7,
          -3.2135177569963047,
          -7,
          -7,
          -7,
          -3.254064452914338,
          -3.272421826371504,
          -3.1539672216454786,
          -7,
          -7,
          -3.3271545124094315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.062769949815128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4724505940728925,
          -7,
          -7,
          -7,
          -2.806179973983887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9744349283567657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.140411729722199,
          -7,
          -7,
          -7,
          -3.5291093917613616,
          -3.742866469979114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.742672771972318,
          -4.280578370368076,
          -7,
          -4.2043642046210055,
          -3.2133504384571974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.086217415693343,
          -3.3259772150789204,
          -7,
          -7,
          -7,
          -4.086715663944882,
          -7,
          -7,
          -7,
          -7,
          -4.135164466656955,
          -7,
          -3.419451371669478,
          -7,
          -7,
          -7,
          -7,
          -4.197308131503102,
          -7,
          -7,
          -3.8621015503709666,
          -7,
          -7,
          -3.050954749853564,
          -7,
          -7,
          -2.82910575870157,
          -7,
          -7,
          -4.150203628762808,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.318557569110699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8597865518865944,
          -7,
          -3.8336888448364133,
          -7,
          -7,
          -4.276323911020188,
          -7,
          -7,
          -7,
          -4.150664353529561,
          -3.791445017261999,
          -3.0810771401550445,
          -7,
          -7,
          -7,
          -3.6901553555257225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.406369835469268,
          -7,
          -7,
          -7,
          -4.016552844116219,
          -7,
          -7,
          -7,
          -4.19423674872383,
          -3.4330309235264505,
          -7,
          -7,
          -7,
          -7,
          -3.706595875112968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.41954272470028,
          -3.754373821728567,
          -7,
          -7,
          -7,
          -4.564208255737469,
          -7,
          -4.151032581756442,
          -7,
          -7,
          -7,
          -3.8935259698929654,
          -7,
          -7,
          -7,
          -3.585936751082949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3891266907882067,
          -7,
          -4.107786384315953,
          -7,
          -7,
          -3.8002128574963217,
          -7,
          -7,
          -7,
          -3.3151876434820333,
          -3.5578679615680224,
          -7,
          -7,
          -7,
          -2.9646555488767823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276691528845039,
          -7,
          -3.7869287937967515,
          -3.248848894607795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073388381115178,
          -3.693243153309189,
          -7,
          -3.7844033017530085,
          -7,
          -7,
          -3.260409000530892,
          -4.096805769822717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.52310886038063,
          -7,
          -7,
          -7,
          -3.6305549918068194,
          -4.089233731365399,
          -4.113909943754037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6621279628519448,
          -3.253350760498344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5914653093294784,
          -4.181414796254284,
          -3.618048096712093,
          -3.5854846070205957,
          -4.0701117827822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5639686348131656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.731696184054935,
          -4.12165831249807,
          -7,
          -3.9519443296839407,
          -7,
          -7,
          -7,
          -3.9034155857690864,
          -4.127590677007958,
          -4.658659967620744,
          -7,
          -2.964328969759512,
          -7,
          -7,
          -7,
          -4.325905450354342,
          -7,
          -7,
          -3.917977882592908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153204900084284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5192371614969833,
          -3.6277412634214152,
          -7,
          -7,
          -3.231884293201811,
          -7,
          -7,
          -4.009620840814325,
          -7,
          -7,
          -7,
          -4.122183100093868,
          -3.3090336675041403,
          -4.163042046914198,
          -7,
          -7,
          -7,
          -7,
          -3.09778853040459,
          -3.7964124254316354,
          -7,
          -7,
          -7,
          -4.2316479611536,
          -3.4911374839780263,
          -7,
          -7,
          -4.1438887581092745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2872697292733806,
          -7,
          -3.4432734208344367,
          -7,
          -3.0648442126351885,
          -7,
          -3.340939602038078,
          -3.51919023560018,
          -7,
          -7,
          -7,
          -7,
          -3.869055618701908,
          -7,
          -3.9194964878630616,
          -4.129045059887958,
          -7,
          -7,
          -3.664108964176918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4048136006153067,
          -7,
          -7,
          -3.362456770008371,
          -3.055002033070937,
          -2.8961634771431384,
          -3.714720839899443,
          -2.764093069469182,
          -3.220830065905614,
          -2.541579243946581,
          -1.9334572522470266,
          -2.9954806316406293,
          -3.8414220444023592,
          -4.1850035564918056,
          -2.8842564255361953,
          -2.2404044317337615,
          -2.755336465082909,
          -3.278982116865443,
          -2.756996236366832,
          -2.536842221969682,
          -3.1919226481853387,
          -2.6262811305909497,
          -3.4617303869186147,
          -2.730176424163481,
          -2.4868256069365926,
          -2.6320666419822683,
          -2.892392094254278,
          -3.3397946214759404,
          -2.4666939907094694,
          -2.514163733887782,
          -1.8506730122857966,
          -7,
          -3.1593154656815914,
          -2.718857424981556,
          -2.1063346999125083,
          -0.6804478110759631,
          -0.5112127463855725,
          -1.8485087913944487,
          -7,
          -0.3823794915671303,
          -3.255919078468227,
          -2.7077993811677814,
          -4.020808607577536,
          -7,
          -3.286965169029477,
          -3.3136597486201063,
          -3.8022947113974634,
          -3.7233461952304965,
          -2.889608468886824,
          -7,
          -3.2671243008085686,
          -3.626689305465622,
          -7,
          -3.335078828132144,
          -3.340848980668569,
          -3.4503004403307562,
          -7,
          -2.984887201064328,
          -3.6524155764759088,
          -7,
          -3.4662248436369283,
          -2.7222723585019852,
          -7,
          -4.098158983460533,
          -3.3575338601983535,
          -3.0846717677458857,
          -2.989210536493393,
          -7,
          -4.2100776242952875,
          -3.607025878434786,
          -3.3252889815821676,
          -7,
          -3.8221419162617774,
          -3.8897311147926015,
          -3.9676103703690884,
          -7,
          -4.0323904074998875,
          -3.681094185704896,
          -3.534775285671484,
          -3.885134966063434,
          -3.8405765344542693,
          -3.771391477501237,
          -3.6775157047987577,
          -3.5822493606940435,
          -7,
          -3.4775597146073878,
          -3.3348428675388484,
          -7,
          -3.4097603888227894,
          -7,
          -7,
          -3.2375186046331073,
          -4.191520876040194,
          -7,
          -7,
          -7,
          -7,
          -2.1586559793926074,
          -3.464116794444044,
          -7,
          -4.124014878887408,
          -7,
          -7,
          -4.221935599828005,
          -4.139060078649301,
          -7,
          -7,
          -4.228503016659257,
          -7,
          -3.0693861561522637,
          -4.18904090790901,
          -4.090222771686575,
          -7,
          -3.113679530602721,
          -7,
          -4.203005674728483,
          -3.7978558985883404,
          -4.088348752288528,
          -4.238823622261076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3348155125062116,
          -7,
          -7,
          -4.007047564562988,
          -3.011044733143276,
          -2.0595688877160585,
          -7,
          -7,
          -4.300769340770549,
          -7,
          -7,
          -7,
          -7,
          -3.619436216286686,
          -7,
          -7,
          -7,
          -3.8103333486611493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4310419453358856,
          -7,
          -4.17076028088121,
          -7,
          -2.894381228035585,
          -4.1026394836913,
          -7,
          -7,
          -3.8063835018241674,
          -7,
          -3.1893992052440003,
          -4.153021743626138,
          -4.1836399042213515,
          -7,
          -3.4877744973806672,
          -3.0085292028130053,
          -7,
          -3.9361365870214917,
          -7,
          -3.8288853618404413,
          -3.94647682848594,
          -4.10809123558122,
          -7,
          -3.943247125137862,
          -3.6912503203314233,
          -7,
          -7,
          -4.0218092770223395,
          -7,
          -3.9237101943965627,
          -7,
          -3.645520514905874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3580237285881256,
          -4.152685756036786,
          -4.096492890054361,
          -4.151492428425498,
          -3.575534218319864,
          -7,
          -3.935003151453655,
          -3.3451589343977806,
          -4.201888500365973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9022205282793148,
          -7,
          -7,
          -4.118231648327027,
          -7,
          -3.780173243642594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.078239253809666,
          -4.247359422468937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.113375057094903,
          -3.3035919995390772,
          -4.233554492714523,
          -3.5008125896329667,
          -7,
          -7,
          -4.168968646554766,
          -4.087852375163169,
          -7,
          -3.3092853524161985,
          -7,
          -7,
          -4.167169590408632,
          -4.147026715222231,
          -7,
          -7,
          -7,
          -4.13325141247232,
          -7,
          -4.199919651590568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3358276770370354,
          -7,
          -7,
          -7,
          -3.57362573693412,
          -3.58508455410005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6781995973581743,
          -7,
          -7,
          -7,
          -3.4621784516532577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.790268920325332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.957798774929998,
          -7,
          -3.957969247759722,
          -7,
          -7,
          -7,
          -3.6062738531699883,
          -7,
          -7,
          -7,
          -3.9993045723383487,
          -7,
          -7,
          -3.4807847825492697,
          -7,
          -7,
          -3.512183922360945,
          -7,
          -7,
          -3.9802306913910317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.641102123773089,
          -7,
          -7,
          -3.969322706112202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9708085142876324,
          -7,
          -3.9572240578431668,
          -7,
          -7,
          -3.8547613566936363,
          -7,
          -7,
          -7,
          -3.6797911709803546,
          -7,
          -3.296665190261531,
          -7,
          -7,
          -7,
          -3.9049023407213768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9334366678262804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.043872912391425,
          -3.7085908451503435,
          -7,
          -7,
          -7,
          -7,
          -4.014954336507545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.336419704862658,
          -3.849166803871281,
          -7,
          -7,
          -7,
          -4.545748198286153,
          -7,
          -3.680335513414563,
          -7,
          -7,
          -7,
          -3.8248739727439425,
          -7,
          -7,
          -7,
          -3.7798705441457825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.765494702849603,
          -7,
          -7,
          -7,
          -7,
          -3.6800634274819486,
          -7,
          -7,
          -7,
          -2.957463615729931,
          -3.6529550777975013,
          -7,
          -7,
          -7,
          -3.539818116473136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8847953639489807,
          -3.5816083660320572,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8798124189827012,
          -7,
          -3.810568529216413,
          -7,
          -7,
          -3.5667853047831293,
          -3.8987251815894934,
          -4.0626195838543415,
          -7,
          -7,
          -3.961373627594801,
          -7,
          -7,
          -3.9108377649926833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6201360549737576,
          -3.8867162741164782,
          -3.925415237084246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.964118143151485,
          -3.323428906178432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.697374664655637,
          -7,
          -3.529836566775372,
          -3.89246176118724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4976114436533603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8237349883987313,
          -7,
          -7,
          -7,
          -3.836434890986501,
          -3.9463539972262747,
          -4.135524877036065,
          -7,
          -3.073972577349435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.201915782740697,
          -4.078565559317117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.183725258045579,
          -3.6104472214421213,
          -7,
          -7,
          -3.4285412579858168,
          -7,
          -7,
          -3.9394360464718168,
          -7,
          -7,
          -7,
          -7,
          -3.5967894619644882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.146401062863181,
          -4.152288344383057,
          -7,
          -7,
          -7,
          -7,
          -4.038341933653606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.561657814835876,
          -7,
          -3.749885323442982,
          -7,
          -3.300141591368224,
          -7,
          -3.510913468005192,
          -3.8417543174102082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8081434257614912,
          -4.0806625563941825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7417254746093196,
          -7,
          -7,
          -3.3020296099215876,
          -3.0858981309770277,
          -2.8988965076723905,
          -3.5633624094866074,
          -2.9523452929588734,
          -3.159810595735413,
          -2.597542839313678,
          -2.0417119019913423,
          -3.0906633183364,
          -3.608632989490037,
          -3.42845877351558,
          -2.7752948358246115,
          -2.314178888357582,
          -2.8853366329178582,
          -3.204555997008698,
          -2.543307363216651,
          -2.6260168765633383,
          -3.376221462289134,
          -2.7367947549243605,
          -3.0038752244370777,
          -2.7194141597025934,
          -2.5345762073670035,
          -2.724787707588028,
          -2.69520396043928,
          -3.1432602210975396,
          -2.7236415128461675,
          -2.5637651072627095,
          -1.9974024177152132,
          -7,
          -2.9689036873904175,
          -2.780193827782793,
          -2.254529486133525,
          -0.7157613197949776,
          -0.7618305723701568,
          -1.7603398472357488,
          -0.3823794915671303,
          -7,
          -3.2664050133806186,
          -2.8510412458810004,
          -3.981156925112127,
          -7,
          -3.330584210632285,
          -3.6754751741703275,
          -4.160048139552876,
          -3.575534218319864,
          -2.8343431524801153,
          -7,
          -3.519592243525824,
          -4.220055760251341,
          -7,
          -3.6912204643369493,
          -3.3211134511957323,
          -3.783538338997308,
          -7,
          -3.1346232896624375,
          -3.5247205856840464,
          -7,
          -3.8124119583013405,
          -3.139449729488457,
          -7,
          -3.9008585047019917,
          -3.790011806634576,
          -3.178770868485576,
          -3.2934291915274496,
          -7,
          -4.066102196766773,
          -3.878808932359205,
          -3.606497806352983,
          -7,
          -4.1156887109195965,
          -3.970765159780768,
          -4.366815046163848,
          -7,
          -4.443262987458695,
          -4.052052348542061,
          -3.5980498568165213,
          -4.03249788285711,
          -3.5860056057388867,
          -4.118892725373621,
          -4.331801701423656,
          -3.573602552304502,
          -7,
          -3.7204028076946365,
          -3.81111902545676,
          -4.01628102454283,
          -3.5090320510666366,
          -7,
          -7,
          -3.498678054959745,
          -4.122346966255079,
          -7,
          -7,
          -7,
          -7,
          -2.3569079722192807,
          -3.4445972265477596,
          -7,
          -4.0420436387878205,
          -7,
          -3.6369390072874714,
          -7,
          -3.9636461864848433,
          -7,
          -7,
          -3.79046109860397,
          -7,
          -3.1335451697795484,
          -7,
          -7,
          -7,
          -3.2244898986163966,
          -7,
          -3.7551122663950713,
          -3.9021117234480043,
          -3.885304667588968,
          -3.804548308388056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.23149507644823,
          -7,
          -7,
          -3.761880874972859,
          -3.177463522640562,
          -2.150533460409309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.089481202687437,
          -7,
          -7,
          -7,
          -3.9215824403934163,
          -3.762040529978979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.216033877818673,
          -3.3961024388097374,
          -7,
          -4.010299956639812,
          -7,
          -3.2443760940205717,
          -3.8399596313535307,
          -7,
          -7,
          -3.864333055033393,
          -7,
          -3.310710377369317,
          -3.9843922785242656,
          -7,
          -7,
          -3.4106647801187093,
          -3.139753185695353,
          -7,
          -7,
          -7,
          -7,
          -3.816373888752362,
          -3.9164013036038754,
          -7,
          -4.113107366520495,
          -3.791164125033335,
          -7,
          -7,
          -4.430913151004603,
          -7,
          -7,
          -7,
          -3.766710207262259,
          -3.5777980724041525,
          -7,
          -7,
          -7,
          -7,
          -3.869994000121742,
          -7,
          -7,
          -7,
          -3.6541230408637997,
          -7,
          -4.327501972540084,
          -3.622597359604622,
          -3.7535447596308416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.056638097379652,
          -3.7637274037656985,
          -7,
          -3.9320676922007216,
          -7,
          -4.198643343240695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5135948904405634,
          -7,
          -4.0520009801013,
          -7,
          -7,
          -4.00770511436478,
          -7,
          -7,
          -3.5826427934453213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.46304147484323,
          -7,
          -4.4553778768849766,
          -2.7937927043611674,
          -7,
          -7,
          -7,
          -3.079613314908311,
          -3.4662347397183657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0304677189005575,
          -4.2470521748566155,
          -7,
          -3.6633508724665367,
          -2.933524217189809,
          -7,
          -4.452874643755949,
          -7,
          -7,
          -3.8602481432437283,
          -4.453975401295882,
          -3.858318018621179,
          -7,
          -7,
          -7,
          -4.454189113874769,
          -7,
          -7,
          -3.8845688149183335,
          -7,
          -4.475642137554701,
          -4.453471233722936,
          -3.919227191992776,
          -7,
          -4.454905809342959,
          -3.194514341882467,
          -7,
          -3.7268358369615817,
          -7,
          -7,
          -7,
          -4.461588557771539,
          -7,
          -2.7964740671351396,
          -7,
          -3.510337805729326,
          -3.7511379096597075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.459362327372962,
          -7,
          -7,
          -7,
          -3.705459384667452,
          -7,
          -7,
          -3.877025615867249,
          -7,
          -4.041655814207112,
          -7,
          -7,
          -4.180469961659198,
          -3.662846839441356,
          -7,
          -3.6971712003830453,
          -7,
          -7,
          -3.5913738234738113,
          -3.9952548376314962,
          -7,
          -7,
          -3.441109303452063,
          -3.757608568481492,
          -3.7885077521028796,
          -3.6477321656644315,
          -3.769923543522596,
          -7,
          -2.923693671895851,
          -4.492383185039623,
          -3.1329568741326845,
          -4.449216046206292,
          -7,
          -4.179953729631548,
          -4.167332106418112,
          -3.8753796292918614,
          -3.895519229340754,
          -7,
          -3.921467973002443,
          -7,
          -7,
          -7,
          -3.364034788118208,
          -7,
          -4.477222578278151,
          -4.463937759305199,
          -3.6583521534277548,
          -3.1928039051875543,
          -7,
          -7,
          -7,
          -4.162310446238798,
          -3.3924373204536415,
          -7,
          -7,
          -7,
          -7,
          -3.7255849722706946,
          -3.8567892887533164,
          -4.6286136831451605,
          -3.106299094127515,
          -3.9782109606289833,
          -4.061175930448312,
          -7,
          -3.3604453764272515,
          -7,
          -4.482959291167214,
          -4.19942604159399,
          -7,
          -7,
          -3.4216222048724814,
          -3.281033367247727,
          -7,
          -7,
          -2.751390315674036,
          -7,
          -7,
          -7,
          -4.449971810566892,
          -7,
          -3.738089394524819,
          -3.2166804145591215,
          -3.2598534598303455,
          -3.73290281908457,
          -7,
          -3.6431441191148397,
          -7,
          -7,
          -7,
          -3.0339372775416797,
          -3.690297361391357,
          -7,
          -7,
          -7,
          -3.516437948521294,
          -7,
          -7,
          -7,
          -7,
          -3.84789640861558,
          -3.9871297676598974,
          -7,
          -7,
          -7,
          -7,
          -4.546011808977598,
          -7,
          -7,
          -3.128491583413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2770056921365063,
          -3.975431808509263,
          -3.1773037216202193,
          -7,
          -4.039625596193842,
          -2.829463733017695,
          -4.458547204196593,
          -3.5557525825740743,
          -3.719510824558501,
          -4.163101715043975,
          -3.999550997010515,
          -4.1648433909076195,
          -7,
          -7,
          -4.465962515279378,
          -7,
          -7,
          -4.508408503596661,
          -7,
          -4.261857385629898,
          -4.471144965160633,
          -4.21830788296991,
          -7,
          -3.693232151688388,
          -7,
          -4.522939542252115,
          -7,
          -4.466066475658547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.875423024746981,
          -2.8878249642615463,
          -3.1600806843827383,
          -7,
          -7,
          -7,
          -4.449046203903854,
          -7,
          -7,
          -7,
          -7,
          -3.0212744465031887,
          -4.196314385353599,
          -3.4380568912567635,
          -3.4008001306246003,
          -7,
          -7,
          -7,
          -4.461498526783019,
          -7,
          -7,
          -7,
          -4.165911730053656,
          -7,
          -7,
          -7,
          -7,
          -4.451694349193542,
          -7,
          -7,
          -7,
          -2.890194363359256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.469527479187014,
          -3.184162110347251,
          -3.3289399506281896,
          -3.9910487764526765,
          -7,
          -7,
          -3.1268076047048265,
          -3.1493950828692556,
          -2.9035339248279906,
          -7,
          -2.923580200410283,
          -3.9817884153334724,
          -3.9745270439853426,
          -7,
          -7,
          -3.4056877866727775,
          -3.719934712141819,
          -4.038792309231842,
          -4.538058205908395,
          -4.4651299351405545,
          -7,
          -7,
          -7,
          -3.6387031424462313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6958026089088825,
          -3.278199853444053,
          -4.161068385471174,
          -7,
          -4.46551668871213,
          -2.7812747683709502,
          -3.645974611730776,
          -7,
          -3.525017026117495,
          -7,
          -7,
          -7,
          -4.46976312459806,
          -3.284739350248932,
          -3.4469182571714287,
          -7,
          -7,
          -7,
          -3.6974618344579375,
          -2.580415991076328,
          -3.2886714373796004,
          -4.146840934035067,
          -7,
          -7,
          -3.480712327117477,
          -3.3874308989061266,
          -7,
          -7,
          -7,
          -4.451863159220613,
          -4.171726453653231,
          -4.453455946777304,
          -7,
          -7,
          -7,
          -3.7236198355154633,
          -7,
          -3.582880285080852,
          -3.183939405552801,
          -2.869465178735402,
          -4.456957849457605,
          -3.750649793952829,
          -3.8900032587038527,
          -4.224830777267873,
          -7,
          -7,
          -7,
          -4.1909057081427346,
          -4.527423658682064,
          -4.516733636616387,
          -7,
          -7,
          -7,
          -4.478479916635806,
          -7,
          -7,
          -7,
          -4.204309944940537,
          -7,
          -3.0833051284625346,
          -7,
          -7,
          -2.5136353415760677,
          -2.5685340807475896,
          -3.363630780112138,
          -3.900353471382553,
          -3.1821456867523463,
          -2.5766995945548037,
          -2.9538587750319683,
          -2.575351881915607,
          -2.1826008732120212,
          -3.2675940797612917,
          -3.219860163746929,
          -2.7427890498392022,
          -2.906041036728826,
          -2.932795883138276,
          -2.4783935864814053,
          -2.8370991724756154,
          -2.8041161229585065,
          -2.01774202765819,
          -3.185190724277791,
          -2.817683070676147,
          -3.5928704078897615,
          -2.811921195192953,
          -1.8981841623788391,
          -2.2940678038836153,
          -3.113522863829351,
          -3.3674180474093456,
          -3.070871674152227,
          -2.722633922533812,
          -3.6290890758031935,
          -1.3235047974925307,
          -2.76435258836705,
          -3.2032875576673656,
          -3.1066023897279793,
          -3.458889540995547,
          -3.771058068606956,
          -3.255919078468227,
          -3.2664050133806186,
          -7,
          -3.330870151502827,
          -2.9668580923192476,
          -7,
          -2.762836754244074,
          -2.6708822353808133,
          -3.6442662161844077,
          -2.94948487959529,
          -2.86207795289074,
          -3.8726806071519295,
          -2.5980824712218,
          -4.573126994434775,
          -7,
          -3.0979431935650594,
          -2.917472686782482,
          -2.7302976620971497,
          -4.465397724292443,
          -2.644652967661531,
          -3.6310123043958322,
          -7,
          -3.4148062795010126,
          -3.6298681187461233,
          -3.906119457545562,
          -4.459136057687617,
          -2.942947645715167,
          -2.3340211016163104,
          -3.0067079239265064,
          -7,
          -4.2103987886522445,
          -7,
          -2.9119340261025153,
          -4.52630049936563,
          -2.883128885139733,
          -2.6455326560720773,
          -3.689989223876995,
          -7,
          -2.99534861432112,
          -2.885201898527871,
          -2.858068551271974,
          -3.721412123150759,
          -2.9519418546272673,
          -2.9620107849938013,
          -2.7501858408226485,
          -3.3339545320608925,
          -7,
          -2.503234411866825,
          -2.984446149906882,
          -4.017061177796396,
          -3.315092095446996,
          -4.453532376125107,
          -3.5438060099142876,
          -3.4529103602313107,
          -3.1694539986517043,
          -4.14938848527283,
          -7,
          -7,
          -4.449555531677028,
          -3.7369804812535694,
          -2.586587304671755,
          -4.174074351837882,
          -3.0872843914537613,
          -3.973789571309058,
          -4.1686889551577195,
          -3.2034978657478983,
          -3.699129216458944,
          -7,
          -4.4513258084895195,
          -3.289890477664777,
          -7,
          -2.967919314432321,
          -3.5977911368585116,
          -4.455697373286557,
          -7,
          -3.164713909486058,
          -4.472463896606989,
          -4.2068798223063,
          -3.982301391331439,
          -4.454890572811237,
          -3.9239172231131056,
          -4.4553778768849766,
          -4.457185256553668,
          -4.4682882387076095,
          -4.013286746786349,
          -7,
          -3.4640192523981677,
          -7,
          -7,
          -3.1825378519450087,
          -2.416343886613213,
          -2.33449317333422,
          -7,
          -4.181128699747295,
          -3.4448971661165024,
          -3.982014802967955,
          -4.484271360086347,
          -7,
          -7,
          -3.5776832455012926,
          -7,
          -7,
          -3.9999131324165713,
          -3.9877853965912387,
          -2.837064325573253,
          -7,
          -3.8650002766762355,
          -3.983761560286165,
          -4.455986239067319,
          -4.16818800475665,
          -3.0390990451760107,
          -2.7152076832489747,
          -7,
          -3.8901134942909175,
          -4.48943813884058,
          -4.170364408028852,
          -2.8774027622267004,
          -4.454616223792699,
          -7,
          -3.6464772461535957,
          -4.472975734594228,
          -2.5993545857525744,
          -4.182828205141933,
          -3.117602691690084,
          -4.465382851448418,
          -7,
          -2.446577575487802,
          -7,
          -3.2460059040760294,
          -4.4531194977640025,
          -7,
          -3.6853321958295053,
          -3.9863088371831394,
          -7,
          -3.5744557037528772,
          -2.5522708062068267,
          -4.200426389032534,
          -4.1744959193753,
          -3.7250036359745344,
          -3.8820831889703804,
          -7,
          -4.462353068559615,
          -3.0516518159075736,
          -1.9439033000780936,
          -7,
          -3.9841370981421775,
          -7,
          -7,
          -3.5567847823070253,
          -4.006551609086649,
          -7,
          -3.441495184218261,
          -2.497805680042165,
          -4.171711830697223,
          -2.969964388176368,
          -3.4357820663112877,
          -3.4657207449392846,
          -4.181429096133507,
          -3.7559358050069402,
          -3.9906791703965108,
          -7,
          -3.9028320480601133,
          -7,
          -3.0953571428528686,
          -7,
          -4.4679926595211485,
          -7,
          -3.002689293174031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0526170007462916,
          -4.466556239671248,
          -7,
          -7,
          -4.455606112581867,
          -7,
          -4.453012391121455,
          -7,
          -7,
          -4.176525336535,
          -4.465828815357437,
          -3.703259127330976,
          -3.921205104140926,
          -4.506450911340324,
          -4.45622934552542,
          -7,
          -7,
          -7,
          -7,
          -3.4288045757556866,
          -7,
          -7,
          -4.189490313699367,
          -3.8789524296286104,
          -7,
          -7,
          -7,
          -4.4747697096158685,
          -7,
          -3.9042691229519955,
          -4.164605624889347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.712256751122368,
          -3.124519158023724,
          -3.090500533931496,
          -7,
          -7,
          -3.4390167283875126,
          -3.187675798317812,
          -7,
          -7,
          -7,
          -7,
          -4.177247836255623,
          -2.788479959678761,
          -7,
          -7,
          -3.680901812206373,
          -3.190027865967299,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5292131133128692,
          -7,
          -7,
          -7,
          -7,
          -4.21900787825689,
          -7,
          -4.245636029406203,
          -7,
          -7,
          -7,
          -3.4135952373045524,
          -4.181100079728049,
          -7,
          -3.921790485658187,
          -3.8986429210566396,
          -3.976143559821804,
          -7,
          -7,
          -7,
          -7,
          -4.212374071200659,
          -2.8422811813183144,
          -4.2389238459924155,
          -4.353685468703508,
          -3.715334683792313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.179379417881757,
          -7,
          -4.261239071182586,
          -2.710525162960417,
          -7,
          -7,
          -4.232411578420845,
          -7,
          -3.9990652616597355,
          -7,
          -7,
          -7,
          -3.5790797156168574,
          -7,
          -3.924770174906564,
          -7,
          -7,
          -7,
          -3.7432222303773846,
          -7,
          -7,
          -7,
          -4.191925851711436,
          -4.247162809039331,
          -3.9554472105776957,
          -4.214313897424399,
          -7,
          -2.924612032671514,
          -4.255465481992464,
          -3.4437322414015967,
          -7,
          -7,
          -7,
          -3.9121157290788537,
          -3.752278985460119,
          -3.5653755027140734,
          -7,
          -2.924978217261524,
          -7,
          -7,
          -7,
          -3.6803899101516118,
          -7,
          -7,
          -4.2051502091401805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.204119982655925,
          -3.6857417386022635,
          -7,
          -7,
          -7,
          -4.256645598044453,
          -3.797890483058349,
          -7,
          -3.514710047826209,
          -3.0266247225387346,
          -7,
          -7,
          -7,
          -4.208587222943199,
          -7,
          -3.9379940509361124,
          -7,
          -7,
          -7,
          -3.49606119726865,
          -7,
          -7,
          -7,
          -3.146518495349268,
          -7,
          -7,
          -7,
          -4.179465613075431,
          -7,
          -3.4018828223212823,
          -4.299114883600537,
          -3.6813618579795855,
          -3.3840172121632652,
          -7,
          -3.867663867912998,
          -7,
          -7,
          -7,
          -3.5104947417324657,
          -7,
          -7,
          -7,
          -7,
          -4.09136794755239,
          -7,
          -7,
          -7,
          -4.205366787866476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.344235034551639,
          -7,
          -7,
          -3.2457301694120755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5819875631939313,
          -7,
          -3.4850112145785728,
          -7,
          -7,
          -2.915673570986958,
          -3.7180862947830917,
          -3.5866323069495945,
          -3.565611724902059,
          -7,
          -4.2280922391569815,
          -4.208710019906401,
          -7,
          -7,
          -7,
          -4.2746657690813885,
          -7,
          -3.9816827273712856,
          -7,
          -4.370827547784376,
          -3.917058907196864,
          -4.261631565092629,
          -7,
          -3.944811558558846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3027204498961344,
          -7,
          -7,
          -7,
          -3.209083536295187,
          -3.034227260770551,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4528210635348096,
          -7,
          -3.272058312630265,
          -3.2805415242209643,
          -7,
          -7,
          -7,
          -4.2007137339640135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7549331407101207,
          -7,
          -7,
          -7,
          -7,
          -4.192567453336546,
          -7,
          -7,
          -7,
          -4.286905352972375,
          -7,
          -4.313782883155197,
          -3.092947575753602,
          -7,
          -7,
          -7,
          -3.847622007983925,
          -7,
          -2.6862071244824106,
          -7,
          -2.4602287034964188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.143308763870973,
          -3.9943171526696366,
          -4.33150827628639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.223418056905294,
          -3.4588455054292027,
          -7,
          -7,
          -7,
          -2.9525169334354104,
          -2.4714090720870554,
          -7,
          -3.5752135116917656,
          -7,
          -7,
          -7,
          -3.914581133948868,
          -3.092979054430626,
          -3.9478256844424506,
          -7,
          -7,
          -7,
          -4.226367875856486,
          -2.6694011842990233,
          -3.864412186720744,
          -7,
          -7,
          -7,
          -3.7037855905304915,
          -4.271423367743581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.185938589826589,
          -3.3363262895451586,
          -7,
          -7,
          -3.970695473826257,
          -7,
          -3.5943423167877353,
          -3.687049367377696,
          -3.2537496944674316,
          -4.192400170360129,
          -3.7145393107658986,
          -3.7964063374956316,
          -3.709566740542544,
          -7,
          -7,
          -7,
          -4.254741376091537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.231189145482667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5870558498481797,
          -7,
          -7,
          -2.6691227571656837,
          -2.5303242321888737,
          -1.6525021007993246,
          -3.3693550320570327,
          -2.832377208540889,
          -2.8900900929739746,
          -1.561142881377997,
          -2.01932320967471,
          -2.3147164804503,
          -2.8741011358794135,
          -2.5657297878311267,
          -1.7238471163939972,
          -2.5799337777611733,
          -2.6915789833449795,
          -2.3978735087320993,
          -2.47998256835454,
          -2.169506085719874,
          -2.556742982046201,
          -2.4808205042723865,
          -2.673680806269375,
          -3.3585296895559917,
          -2.8604036253437966,
          -2.6575404323265794,
          -1.6649368604307129,
          -0.9851421527466361,
          -2.910745645079236,
          -2.8086755289151313,
          -2.214623113871712,
          -2.730964517156539,
          -2.2826316017388204,
          -2.2006073320814195,
          -2.4826412859817872,
          -2.75733479414663,
          -2.364456457828549,
          -2.4000462323938807,
          -2.7077993811677814,
          -2.8510412458810004,
          -3.330870151502827,
          -7,
          -2.988668459314975,
          -4.196148539699125,
          -3.282069548255956,
          -3.4178535051684764,
          -3.501313618914804,
          -3.2795300649754404,
          -2.7820715967043443,
          -7,
          -2.629180391564149,
          -4.085558138243807,
          -4.246498580795801,
          -3.2819625605980587,
          -3.133809030190632,
          -2.511841381231268,
          -3.906712056942964,
          -3.116337886260724,
          -3.325043347403704,
          -7,
          -3.316557399977768,
          -2.606026703562754,
          -3.805296916157985,
          -3.8953120244757873,
          -3.507265878790705,
          -2.871348574274271,
          -2.5692679331476356,
          -7,
          -7,
          -7,
          -3.329729861208485,
          -3.197979956461525,
          -4.107216432315288,
          -3.380852339683557,
          -3.0761080654523694,
          -4.1769589805869085,
          -3.4708880404649234,
          -3.5047217366334786,
          -3.6205524447294355,
          -3.6658154279909354,
          -3.4104397862103464,
          -4.019240950395851,
          -3.5240482133438253,
          -3.110801275118248,
          -4.192818257048295,
          -2.944635805429082,
          -2.6926266329514807,
          -3.5594996572146744,
          -3.1095143538438785,
          -7,
          -4.265572461743118,
          -2.739406189097407,
          -4.233846088909559,
          -7,
          -7,
          -7,
          -7,
          -1.9070634317438555,
          -2.103623174492221,
          -4.225257576924099,
          -3.1948501384831234,
          -3.1393638071453336,
          -2.98434196069803,
          -3.2833964582800528,
          -3.0525143912994106,
          -7,
          -4.181986424480151,
          -3.2615007731982804,
          -7,
          -3.1547394712862498,
          -3.793138220806962,
          -3.888993384102904,
          -4.221805317996549,
          -2.9261396911223496,
          -3.7432745235119333,
          -2.882934163885178,
          -3.196535414422256,
          -3.073972002343153,
          -3.533666161312212,
          -3.8884041677370464,
          -4.192818257048295,
          -7,
          -3.9510702531688118,
          -7,
          -2.861815439410074,
          -7,
          -4.180441298194719,
          -2.7352439389249232,
          -2.7094772569508208,
          -1.4415908197937384,
          -4.175047699526168,
          -3.9366393882144446,
          -3.762753564933374,
          -3.7192760297176806,
          -3.764151215182033,
          -7,
          -7,
          -3.278820823997914,
          -7,
          -4.180813775754397,
          -4.228733908376136,
          -4.2070146586829,
          -2.5849189336400373,
          -3.585883537734565,
          -3.1311907879776646,
          -7,
          -4.190611797813605,
          -7,
          -3.104487111312395,
          -1.9242203627211898,
          -7,
          -7,
          -7,
          -1.4880478344452681,
          -2.64698541854197,
          -3.2845999065332405,
          -3.8797264966395772,
          -2.817390356669279,
          -4.221414237842339,
          -2.7778645655145366,
          -4.240698979186308,
          -2.6619782346651584,
          -7,
          -2.6696267589109772,
          -2.9906415201297722,
          -7,
          -3.079543007402906,
          -3.884228769632604,
          -7,
          -3.7172334927773156,
          -2.319434821234563,
          -7,
          -4.015611204503513,
          -2.943760779227193,
          -4.271051261492347,
          -7,
          -3.938582263081691,
          -7,
          -4.300204051252466,
          -4.20227029773729,
          -3.040550745877968,
          -2.635871988956423,
          -3.9034427079849827,
          -3.8993005694607925,
          -7,
          -7,
          -2.3848346308010715,
          -2.4310872155201055,
          -3.7178368674869255,
          -1.935062037626079,
          -3.1925854369172395,
          -3.618832257891557,
          -3.3831268885240657,
          -3.1644228411978355,
          -3.2013515984037575,
          -7,
          -4.188844146546897,
          -4.212240888801534,
          -7,
          -3.975891136401793,
          -4.282214133062335,
          -1.7335810253677884,
          -7,
          -7,
          -3.5963496422097987,
          -2.8950024143828985,
          -7,
          -4.1853154580036565,
          -4.175975431749513,
          -7,
          -7,
          -7,
          -3.48138529211277,
          -2.7994032136888687,
          -3.4314709841279067,
          -7,
          -7,
          -3.3444764855229927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2059363836944823,
          -2.7038500115766535,
          -3.501082095186496,
          -4.191059581827398,
          -7,
          -3.2533380053261065,
          -4.188197016558756,
          -7,
          -3.118311975665972,
          -7,
          -7,
          -3.775076200645214,
          -2.6317734235564716,
          -4.2322335211147335,
          -7,
          -7,
          -3.4462004946297733,
          -7,
          -2.6647795193361836,
          -7,
          -7,
          -7,
          -4.011802963585356,
          -7,
          -7,
          -4.310023834437932,
          -4.13569437848255,
          -7,
          -3.1893135196884166,
          -4.311880953037904,
          -4.138744663948892,
          -3.1141125249955577,
          -3.5122363800088334,
          -7,
          -7,
          -2.6328153576642506,
          -2.393888158192224,
          -3.7167335134653343,
          -7,
          -7,
          -7,
          -3.4069232124875093,
          -2.3395571527890606,
          -3.681874122128647,
          -7,
          -2.520449566143865,
          -2.2066781165037477,
          -4.016427410068392,
          -4.01205647985382,
          -4.610724025229824,
          -3.5138013224159392,
          -4.018648496692656,
          -4.012816141937047,
          -3.6943075566062507,
          -7,
          -4.6120417446452695,
          -7,
          -7,
          -4.627201940953156,
          -4.312399526311494,
          -3.6833972959193733,
          -7,
          -3.3743918868972482,
          -3.4101548610762307,
          -2.3674122514997986,
          -7,
          -4.138418494589286,
          -2.746367854866736,
          -7,
          -2.893917426651345,
          -7,
          -7,
          -3.9401278366627084,
          -3.6200214777674438,
          -3.032773683437139,
          -2.2706282102214805,
          -4.635091498324376,
          -2.3171222847962842,
          -3.43763866489855,
          -3.769957264165465,
          -4.617262517091374,
          -4.032759742667216,
          -4.617702616734304,
          -4.61853966998575,
          -4.31761419263232,
          -4.612147838326487,
          -3.771471989594546,
          -3.2820307129338744,
          -2.7780432982809646,
          -4.01040597262518,
          -7,
          -2.8754775801315455,
          -4.6109793799229974,
          -2.943751272633304,
          -4.650015952471839,
          -4.61217966137758,
          -3.332731257471133,
          -2.2878320147549918,
          -4.6118931699365255,
          -3.5504831459529296,
          -7,
          -7,
          -2.7293650302622163,
          -2.280836949797404,
          -3.8360496933453354,
          -4.610500466643181,
          -3.7898123009874545,
          -7,
          -3.462048424905515,
          -3.3408405498123317,
          -3.7221401254574156,
          -7,
          -2.0264030876062473,
          -3.298972099243842,
          -2.447898457853143,
          -4.009535876619219,
          -7,
          -3.271609301378832,
          -3.3235202277543374,
          -3.7861122837198264,
          -3.283399563240798,
          -7,
          -2.6932471538294744,
          -3.7721749608246142,
          -7,
          -7,
          -3.2987570408817506,
          -7,
          -3.3755010405719097,
          -4.621840721731609,
          -2.553980847326294,
          -2.34015780277726,
          -3.9169590156013583,
          -4.61366214952783,
          -4.0178677189635055,
          -4.144283542967987,
          -2.9835387745764432,
          -4.618194580987137,
          -7,
          -4.327747071252456,
          -4.341246520447747,
          -3.8047720536881493,
          -4.3173214779522615,
          -3.079126168979742,
          -2.2320793958503162,
          -7,
          -4.373840326678294,
          -7,
          -3.651453097444137,
          -4.319012316571296,
          -3.634970735172564,
          -3.4712036694702526,
          -7,
          -3.084544737611001,
          -2.237638431057246,
          -2.754680207530774,
          -7,
          -7,
          -2.541675231234385,
          -7,
          -7,
          -7,
          -3.120181063048784,
          -3.5691929602308528,
          -2.672935521979907,
          -3.4839199622336494,
          -2.8671488448410494,
          -2.2613454218203253,
          -3.6624745037503095,
          -3.7264011621029223,
          -7,
          -7,
          -3.9216968776220655,
          -3.9357339265238256,
          -2.94760940922976,
          -7,
          -7,
          -4.617073766347765,
          -2.8794376498259213,
          -7,
          -7,
          -3.626042522003252,
          -3.8436687229791437,
          -7,
          -2.578441237407785,
          -4.322808294799657,
          -7,
          -7,
          -4.625569658243046,
          -3.53413493815341,
          -7,
          -4.615476591451174,
          -2.2053263437697814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.613355477979113,
          -7,
          -2.841663316638509,
          -3.5723962996252667,
          -3.3758683698200267,
          -7,
          -2.765697204987075,
          -2.1920479519897156,
          -3.5386889104527226,
          -3.040968776406264,
          -2.904233438555862,
          -3.621809598806646,
          -3.3999992948322952,
          -3.844953251054122,
          -3.7223665188137702,
          -4.620437977338462,
          -7,
          -3.186858953470273,
          -4.137976196582096,
          -3.2725764208314096,
          -7,
          -2.4569605985584455,
          -4.024742145874638,
          -2.5444674536166065,
          -7,
          -2.9177138502369337,
          -7,
          -3.517318456171289,
          -7,
          -4.021199639291648,
          -7,
          -7,
          -3.758628070702716,
          -4.328410186480327,
          -7,
          -3.250684239710383,
          -2.658211932290689,
          -2.235565441198802,
          -7,
          -4.610724025229824,
          -4.0118557916799,
          -4.13437900863513,
          -7,
          -7,
          -7,
          -4.615844882874702,
          -2.9691290599776985,
          -3.302517863774588,
          -3.1748670767814025,
          -2.239635732795565,
          -7,
          -7,
          -4.314625519201271,
          -2.833565094651821,
          -7,
          -7,
          -7,
          -3.419522063196344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9725495168372835,
          -7,
          -7,
          -7,
          -4.613196769750614,
          -4.014940349792936,
          -4.315308959193267,
          -7,
          -7,
          -4.6550038979849875,
          -4.32468363214722,
          -2.4032525456431375,
          -3.193653224907199,
          -2.5115932164835013,
          -7,
          -7,
          -2.2955167940561765,
          -2.8782857909806667,
          -1.1875312483580989,
          -4.6173463799861105,
          -3.0274444318978198,
          -3.6639834546082666,
          -3.6131861871396045,
          -4.613831254971802,
          -3.6212195705347923,
          -3.0926447886982458,
          -2.018017951790213,
          -3.3158368132320577,
          -3.259244597605882,
          -3.5810700271536153,
          -3.9177889950271254,
          -7,
          -7,
          -4.3348155125062116,
          -4.634033680419679,
          -7,
          -4.613704432062307,
          -7,
          -7,
          -4.623920893251629,
          -7,
          -3.151216578856456,
          -3.2905065109413227,
          -3.9215304135012423,
          -3.8561748468979484,
          -3.8446842291378767,
          -2.346971357713787,
          -2.9495164993070224,
          -4.1353765089832155,
          -3.2840594143879214,
          -7,
          -7,
          -4.043627490035012,
          -4.324848110377474,
          -3.030159555627922,
          -3.3600151119450192,
          -4.667219398443936,
          -4.325269301733074,
          -7,
          -2.7041198625619036,
          -2.3856381651674483,
          -2.5697669818215867,
          -7,
          -7,
          -7,
          -3.4869214098225383,
          -3.156490530223249,
          -4.614517569528736,
          -7,
          -3.933770650991845,
          -4.613482402816421,
          -3.9289588408808296,
          -3.0697949105630427,
          -3.5425573202945824,
          -7,
          -4.318407710839007,
          -3.3929801389148486,
          -3.8386497310943164,
          -2.8820014945835553,
          -2.827739375052605,
          -2.7757071643361386,
          -4.617000341120899,
          -3.412441879739619,
          -3.1347002127414654,
          -3.3230082040914604,
          -7,
          -4.317530579996265,
          -7,
          -3.8632633636504807,
          -3.821728703986952,
          -3.4548067623303504,
          -4.025940454660939,
          -7,
          -7,
          -3.1128384959261495,
          -7,
          -7,
          -7,
          -4.350005598857088,
          -7,
          -2.4594530444588427,
          -7,
          -4.610873000380051,
          -2.019532794678204,
          -2.7950488733397787,
          -3.9926345078943504,
          -2.7902851640332416,
          -3.255546809307727,
          -2.2937124685289176,
          -2.253991129516915,
          -2.7675351409941324,
          -1.4502611085537302,
          -2.149864746009101,
          -2.7053819439084843,
          -3.3341807951817017,
          -3.167143788623054,
          -3.1075242462649646,
          -2.078035082812725,
          -3.3585129569787764,
          -2.7645248232817266,
          -1.9898952783780006,
          -4.231291146418349,
          -3.0354940627547213,
          -4.644487826413858,
          -3.3109132647458086,
          -3.215130634854388,
          -2.300187660198306,
          -2.555234327252782,
          -4.489508491577916,
          -3.2173371298910296,
          -3.143100713325941,
          -3.930062226735009,
          -2.102554815370903,
          -3.893206753059848,
          -3.085998757380345,
          -3.5575425837527512,
          -3.9025234837947833,
          -4.626165793139279,
          -4.020808607577536,
          -3.981156925112127,
          -2.9668580923192476,
          -2.988668459314975,
          -7,
          -7,
          -1.7783881673180861,
          -2.7739059677955167,
          -3.101158960619402,
          -2.535586213640982,
          -2.651384140518479,
          -2.6733793415503886,
          -1.8712949403042993,
          -3.9223188192407434,
          -4.638149675666846,
          -3.4703593508796775,
          -2.146828699151382,
          -2.6428452266208504,
          -7,
          -2.4208937149668244,
          -2.6970715980125615,
          -7,
          -2.59405527791589,
          -3.152077602666315,
          -7,
          -7,
          -3.0401092144357094,
          -1.947122643788279,
          -3.0964269752170814,
          -7,
          -4.354367785390444,
          -7,
          -2.6592621570681594,
          -4.188965961710644,
          -2.443380274264685,
          -2.8085610491031643,
          -4.453731029504294,
          -7,
          -3.3559762530979853,
          -2.8880890751037303,
          -3.1285888003429183,
          -2.770498543514735,
          -2.12827185996548,
          -3.0668475109738993,
          -2.276799916691148,
          -2.282499252841805,
          -7,
          -1.98598050263825,
          -2.7764112555325746,
          -2.90968476924063,
          -3.181283347564006,
          -7,
          -2.8251703089538873,
          -3.1291794789307543,
          -3.664721509386932,
          -4.311457168381031,
          -7,
          -7,
          -7,
          -4.056037301237244,
          -1.8762702230288588,
          -3.328236854094916,
          -2.1019438184669204,
          -4.612868588840168,
          -3.5842900960487443,
          -2.4655511935198726,
          -2.542437654891962,
          -4.626945698847907,
          -4.135948506676213,
          -2.8283376000590046,
          -7,
          -2.611245003078948,
          -2.732589873839353,
          -3.7709045864841553,
          -4.628296952067896,
          -2.732986387417268,
          -4.02566421518471,
          -3.205214033739003,
          -4.6187486814592855,
          -4.314520279061685,
          -3.6243664894996273,
          -7,
          -3.575555201770702,
          -4.022747891057003,
          -3.242034289782914,
          -7,
          -2.571734705001743,
          -7,
          -4.1353765089832155,
          -2.675057846930607,
          -2.1915354346857767,
          -2.2435349655419285,
          -7,
          -4.157446693916665,
          -2.650815298037088,
          -4.3174992211071315,
          -3.255403175912266,
          -7,
          -3.4185084434734003,
          -2.120642153928635,
          -7,
          -4.135514280998787,
          -4.32997723012551,
          -3.4181251342675383,
          -2.733999286538387,
          -4.6153923666841115,
          -3.419646017478006,
          -3.257574239858015,
          -4.31527743947181,
          -3.4211101297934343,
          -2.1013592637731815,
          -3.5438818782481594,
          -7,
          -2.9417796781737486,
          -3.0827255460196543,
          -4.3260079677596055,
          -1.3571357449282986,
          -7,
          -7,
          -3.569076654313889,
          -3.7829228611700847,
          -1.975255533631949,
          -3.066879711943878,
          -2.973118023373419,
          -3.9237930177264575,
          -4.315025199312605,
          -3.7725508979688867,
          -7,
          -3.3639596522893145,
          -4.313297626086869,
          -3.165387610350267,
          -2.663047513975216,
          -3.5799290297453163,
          -7,
          -2.649053877131526,
          -1.7119647740280666,
          -3.392677416406296,
          -4.629949582692884,
          -2.8834170375771606,
          -3.857794693596045,
          -4.18359247818067,
          -4.319688893249499,
          -2.193891013244078,
          -2.812438617225954,
          -4.144439280361414,
          -4.318970646636086,
          -7,
          -7,
          -3.119125240272365,
          -3.6812915000319597,
          -3.237313293174686,
          -2.550096897281136,
          -1.6796462880176226,
          -3.326581618446525,
          -2.448244007666316,
          -2.835529158016355,
          -3.874249822778403,
          -2.9526310252827455,
          -7,
          -3.478174691234221,
          -7,
          -3.2189048941931206,
          -3.0087162777596426,
          -3.2232266527926114,
          -7,
          -3.510472828012453,
          -4.318282514840762,
          -2.39909658587198,
          -4.015307351851757,
          -7,
          -7,
          -7,
          -7,
          -4.611436515265544,
          -7,
          -1.6869443681868634,
          -7,
          -7,
          -7,
          -4.616065707908696,
          -3.9137291037285733,
          -3.915220381223052,
          -7,
          -4.615413424407249,
          -3.631190018213138,
          -3.84490152901065,
          -3.220026323099231,
          -3.6224024370611825,
          -4.35078086534774,
          -4.139333252881835,
          -7,
          -4.163956058605712,
          -3.9163697135728093,
          -7,
          -3.0703952134392365,
          -4.139900066304233,
          -4.01456253812761,
          -3.225040747463099,
          -3.6794379916710307,
          -4.030296054911111,
          -4.310841945164296,
          -4.311435968289161,
          -3.8511461924705577,
          -7,
          -3.5724068675580556,
          -3.719807589302826,
          -7,
          -7,
          -2.767526899408382,
          -2.9489017609702137,
          -7,
          -7,
          -7,
          -3.336859820916809,
          -7,
          -7,
          -7,
          -4.251592260928416,
          -7,
          -7,
          -7,
          -3.508691286860763,
          -3.9226735678585545,
          -7,
          -7,
          -7,
          -1.4507923159973133,
          -7,
          -3.7453285766010675,
          -3.3089377249826804,
          -7,
          -3.7060346607143506,
          -3.7334205850552626,
          -7,
          -7,
          -7,
          -7,
          -3.2615007731982804,
          -7,
          -3.2883139564962867,
          -3.2076343673889616,
          -7,
          -7,
          -7,
          -2.6885977750811696,
          -7,
          -3.06595298031387,
          -2.958085848521085,
          -3.4352071032407476,
          -7,
          -3.624053838228878,
          -3.0273496077747564,
          -3.123851640967086,
          -7,
          -2.537063142781617,
          -3.683407299132095,
          -3.0806264869218056,
          -7,
          -7,
          -3.248463717551032,
          -7,
          -3.3541778267734723,
          -3.508664363052943,
          -7,
          -3.3464181789371965,
          -7,
          -7,
          -7,
          -2.707002099520009,
          -7,
          -2.362266997454815,
          -7,
          -7,
          -7,
          -3.0950935120040057,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.197831693328903,
          -7,
          -7,
          -4.34868446133753,
          -7,
          -2.955527405293444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1607685618611283,
          -2.948412965778601,
          -7,
          -3.3562171342197353,
          -7,
          -3.5323211420823304,
          -3.590953235187986,
          -4.037784941753637,
          -7,
          -7,
          -3.013118230526625,
          -7,
          -3.4554539687786283,
          -2.785024602845055,
          -7,
          -4.163250849512631,
          -7,
          -7,
          -2.9425041061680806,
          -3.294201600694746,
          -7,
          -7,
          -7,
          -3.19580743572306,
          -3.271805875368442,
          -7,
          -7,
          -7,
          -7,
          -3.1881371786857495,
          -7,
          -7,
          -2.4127964287165433,
          -2.057576614010089,
          -3.675044735955893,
          -7,
          -2.981082082531969,
          -3.9796166546322134,
          -7,
          -7,
          -2.5443781439578124,
          -4.041590046889366,
          -7,
          -7,
          -3.6516656039229356,
          -2.394889257167419,
          -7,
          -3.8320403031849812,
          -3.2322335211147335,
          -7,
          -7,
          -3.7739874607135038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.683321176971368,
          -3.462472869803616,
          -4.167583147965841,
          -7,
          -7,
          -7,
          -7,
          -3.0461047872460387,
          -3.2610248339923973,
          -7,
          -3.251638220448212,
          -7,
          -7,
          -7,
          -3.4330802233513356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.849214606209089,
          -7,
          -3.450249108319361,
          -7,
          -3.4248272103534214,
          -3.330413773349191,
          -7,
          -3.921456953158924,
          -7,
          -7,
          -7,
          -3.1784013415337555,
          -2.468716471515472,
          -7,
          -7,
          -3.3429652099145004,
          -7,
          -4.290390809440229,
          -7,
          -3.7555699806288,
          -3.186450837846928,
          -7,
          -7,
          -3.632356046239073,
          -7,
          -2.9692605575027797,
          -7,
          -2.757206173278786,
          -2.9523080096621253,
          -2.614264287358705,
          -3.3720831085742526,
          -7,
          -3.704750904290671,
          -7,
          -7,
          -3.3830969299490943,
          -4.35071308475223,
          -7,
          -3.3119303676551777,
          -7,
          -7,
          -7,
          -3.0149403497929366,
          -7,
          -7,
          -3.4747260421801167,
          -3.4265112613645754,
          -7,
          -7,
          -7,
          -3.879038505237237,
          -7,
          -7,
          -7,
          -7,
          -3.0224283711854865,
          -1.9469432706978254,
          -2.080987046910887,
          -2.0102347031678383,
          -1.9711211579147767,
          -7,
          -3.6683548501652967,
          -4.868234549092891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1089031276673134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7361972389182934,
          -4.342669368975334,
          -7,
          -7,
          -7,
          -7,
          -3.16761267272753,
          -7,
          -7,
          -7,
          -3.720242018287057,
          -7,
          -7,
          -3.0650815277143657,
          -7,
          -7,
          -7,
          -4.023273041822853,
          -7,
          -3.761313781974698,
          -7,
          -3.7145560704804033,
          -7,
          -7,
          -7,
          -3.2322335211147335,
          -7,
          -3.980866554582079,
          -3.0511525224473814,
          -3.5648435325438337,
          -7,
          -7,
          -7,
          -2.187520720836463,
          -2.3391200452721206,
          -2.891398059667226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.104487111312395,
          -3.2571984261393445,
          -7,
          -7,
          -3.854437093603298,
          -3.6150553041797218,
          -7,
          -3.1488449390421698,
          -2.988112840268352,
          -7,
          -2.85410352630107,
          -3.0644579892269186,
          -3.27669152884504,
          -3.5597869682005565,
          -2.9696821057315477,
          -2.895606686165933,
          -2.8771408897848207,
          -7,
          -5.129713732636669,
          -3.417527049073855,
          -2.941511432634403,
          -7,
          -7,
          -7,
          -3.3589812256253495,
          -2.787814567063023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0352696000994364,
          -7,
          -3.2304489213782737,
          -3.3604040547299387,
          -7,
          -4.859636578999392,
          -4.09377178149873,
          -4.645089803387881,
          -7,
          -3.3439335003272257,
          -3.133327349797274,
          -3.1060548400937864,
          -7,
          -7,
          -7,
          -2.4709529918306132,
          -2.2405492482826,
          -3.277761973532505,
          -7,
          -7,
          -7,
          -7,
          -2.7558748556724915,
          -3.1492191126553797,
          -7,
          -3.0824263008607717,
          -7,
          -3.663714383330552,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.882729399214851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.58601311649554,
          -7,
          -7,
          -4.447602438713479,
          -7,
          -7,
          -7,
          -5.087671410994864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.777310801689522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.196148539699125,
          -7,
          -7,
          -4.3730683944308,
          -3.20378520893911,
          -2.4285667129921897,
          -3.693990610460777,
          -4.035949779536674,
          -3.426185825244511,
          -4.391406471815851,
          -1.8788176305132411,
          -1.5092155761636503,
          -2.813053178509492,
          -4.119533952374401,
          -3.5701476202881377,
          -7,
          -7,
          -7,
          -3.0017337128090005,
          -3.344588742578714,
          -3.5352941200427703,
          -3.101231386790699,
          -7,
          -2.9590944164932984,
          -4.209739299771616,
          -5.2296622214205515,
          -2.2037320465140935,
          -2.5171958979499744,
          -2.4803663095328092,
          -3.303886921725102,
          -7,
          -5.406088620120958,
          -3.6144050179114284,
          -3.626212010796037,
          -1.4908610661339912,
          -7,
          -3.9617374047008993,
          -3.785607409972391,
          -7,
          -3.747800090864369,
          -3.832445041174111,
          -3.9973645380489646,
          -7,
          -1.0324520237811379,
          -3.5652130253955923,
          -3.314106725411292,
          -7,
          -3.4135336749389187,
          -7,
          -3.1582619493278363,
          -3.570840009456516,
          -4.003417445202194,
          -7,
          -2.3502480183341627,
          -7,
          -7,
          -7,
          -3.24417521304034,
          -2.100862663563312,
          -4.195484523033764,
          -7,
          -3.3656751404559175,
          -3.3959861203155404,
          -7,
          -2.537279263453857,
          -3.0398105541483504,
          -7,
          -7,
          -3.5211036582367834,
          -3.354588587877241,
          -7,
          -7,
          -3.8385972528166565,
          -7,
          -2.92272545799326,
          -3.2127201544178425,
          -7,
          -3.5052856741441323,
          -7,
          -7,
          -3.346744054604849,
          -2.248557074060829,
          -7,
          -3.727907081406697,
          -7,
          -7,
          -4.6009620109768665,
          -3.794826009545771,
          -4.489775728090475,
          -7,
          -2.8992731873176036,
          -3.11150254819892,
          -7,
          -2.674992288098586,
          -7,
          -3.3085644135612386,
          -3.113991074353135,
          -7,
          -7,
          -3.450864692379766,
          -2.3944516808262164,
          -7,
          -7,
          -7,
          -7,
          -2.8447877188278463,
          -2.8813846567705728,
          -7,
          -7,
          -7,
          -7,
          -3.2656431419421352,
          -7,
          -7,
          -7,
          -3.0232524596337114,
          -7,
          -2.8019179723413923,
          -3.057359811393562,
          -2.4740837562241507,
          -7,
          -7,
          -7,
          -7,
          -3.118595365223762,
          -3.8020892578817325,
          -3.083860800866573,
          -2.561442140419698,
          -3.130205069581069,
          -7,
          -2.9334872878487053,
          -3.1216911303075765,
          -3.9356684589162554,
          -2.9589459324939362,
          -2.733999286538387,
          -3.6151922673739656,
          -3.0436242167998198,
          -2.485945462845539,
          -7,
          -3.5713982332029914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.367505009418113,
          -7,
          -3.1934029030624176,
          -7,
          -4.057501279050107,
          -7,
          -4.173390251465195,
          -3.706266554579547,
          -3.3969835082752007,
          -3.505014240084107,
          -7,
          -2.737788791709675,
          -7,
          -2.836233665954909,
          -3.4014867017741692,
          -7,
          -7,
          -3.3428173146357327,
          -3.227372442289636,
          -3.4989477407243084,
          -2.574031267727719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.476940260975887,
          -2.625655360163779,
          -7,
          -7,
          -7,
          -2.8692317197309762,
          -7,
          -7,
          -7,
          -3.3433101031623416,
          -7,
          -3.214667269683036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6587879323179417,
          -2.466274321789292,
          -2.855216194733363,
          -7,
          -3.4916417934775863,
          -7,
          -7,
          -7,
          -2.822494985278751,
          -7,
          -7,
          -2.8327217499964084,
          -7,
          -7,
          -4.670171608355266,
          -7,
          -7,
          -4.667667712106219,
          -4.368184576507716,
          -7,
          -4.19942604159399,
          -4.192139824255448,
          -7,
          -2.695688893192003,
          -4.1075576053544465,
          -7,
          -7,
          -2.944623653966665,
          -3.0952460874520806,
          -4.374436714981712,
          -7,
          -7,
          -7,
          -7,
          -3.0113525433140276,
          -3.885361220031512,
          -7,
          -3.324411077979487,
          -2.535360810015817,
          -7,
          -4.193235941639753,
          -7,
          -4.205393852614679,
          -4.199032580145495,
          -7,
          -3.6147663409308692,
          -7,
          -7,
          -7,
          -4.671191362340761,
          -7,
          -4.192595327569212,
          -3.9921733990840766,
          -7,
          -3.985291718592888,
          -4.670755942215133,
          -2.6743108342734345,
          -4.368119458615029,
          -4.19446808867598,
          -3.427612318183267,
          -7,
          -3.2551777082639703,
          -4.67045923596689,
          -7,
          -3.9933921374490025,
          -4.374647548674498,
          -3.6794188108584622,
          -2.8194068259963245,
          -4.211663292650559,
          -3.2274528359297285,
          -4.417322197099729,
          -4.671274690884761,
          -4.673103885408021,
          -4.688633356948537,
          -4.673490907887271,
          -4.37317875450557,
          -7,
          -7,
          -4.672605777753426,
          -4.2197154758555016,
          -2.656862143033687,
          -7,
          -7,
          -3.841314769257563,
          -7,
          -3.480826709583002,
          -4.0029949671388145,
          -4.668637473671116,
          -4.085870083398395,
          -3.0127887570435066,
          -7,
          -3.684064005878023,
          -7,
          -7,
          -3.5827125326617333,
          -3.150277739061255,
          -7,
          -7,
          -3.5124264461634938,
          -4.672716517725188,
          -3.7373781989912187,
          -3.4395782859015425,
          -3.981202277975283,
          -4.377988853736994,
          -2.6064965269485283,
          -3.9957229219954655,
          -3.2746965330172166,
          -4.1910222841219555,
          -7,
          -4.085549222231902,
          -4.679863789404051,
          -4.208342804842957,
          -3.852880642366062,
          -7,
          -3.3989232955264326,
          -4.673223714939716,
          -4.667555677069314,
          -7,
          -3.1099393869325063,
          -4.6679196853173615,
          -3.9862699911219206,
          -7,
          -3.3212358493275413,
          -2.70957546628389,
          -7,
          -7,
          -3.9764600291302,
          -7,
          -3.203119460219802,
          -4.37287519679339,
          -7,
          -7,
          -7,
          -3.321399911624453,
          -7,
          -3.4625904995809047,
          -2.904038968600478,
          -7,
          -4.0251337522189905,
          -7,
          -3.340474160464808,
          -4.675567556920825,
          -3.647302933044288,
          -3.6997076781100517,
          -7,
          -7,
          -3.1957613200360613,
          -3.1458354531056396,
          -7,
          -7,
          -2.4673278150101323,
          -7,
          -7,
          -4.667518325633491,
          -4.191478960443599,
          -4.6674249329872435,
          -3.090564725600136,
          -3.5970028677416908,
          -3.0554937278103553,
          -3.1497577964089167,
          -7,
          -3.4503949834196197,
          -7,
          -7,
          -3.7729539810278334,
          -3.6128973334826258,
          -3.6429835826026475,
          -7,
          -7,
          -7,
          -2.95751581642942,
          -7,
          -7,
          -4.680996877996996,
          -4.677205318381814,
          -4.066568168015852,
          -3.5309950844480262,
          -4.678909705045905,
          -7,
          -7,
          -7,
          -3.7290351301957916,
          -7,
          -4.370485332353556,
          -2.919031843391535,
          -4.369642518405259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5595715027824424,
          -4.670236573178357,
          -3.637536425333415,
          -7,
          -3.8070358438167355,
          -2.6376631672377724,
          -4.372792371489067,
          -4.1039233919222635,
          -3.8529676910288186,
          -4.376220981693863,
          -4.685006846094914,
          -3.900093901543398,
          -4.680444300076152,
          -4.675897435644324,
          -7,
          -4.002805149342968,
          -3.9721935782700672,
          -4.4038408865808965,
          -7,
          -3.962108775554161,
          -7,
          -3.107843280562333,
          -7,
          -3.6488102126265374,
          -7,
          -4.4131404376555805,
          -7,
          -4.201278747009084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.208369684768811,
          -2.997734511191365,
          -3.248218561190075,
          -7,
          -4.6673595461830875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4328090050331683,
          -3.0739364463090766,
          -3.102492092329077,
          -2.7685993636921173,
          -7,
          -7,
          -4.069594105177555,
          -3.5962579570038544,
          -7,
          -7,
          -4.205808634353865,
          -4.201833930474351,
          -7,
          -7,
          -7,
          -7,
          -4.3686308363704,
          -7,
          -7,
          -7,
          -2.920895834382227,
          -7,
          -7,
          -7,
          -4.669530720269089,
          -3.9738848986568547,
          -3.9732664361085286,
          -7,
          -4.371935583802963,
          -4.706461737631355,
          -4.2034046174735815,
          -3.225025663553466,
          -3.720828841381453,
          -3.980721296481127,
          -7,
          -7,
          -3.2004856980008305,
          -3.9039667381715213,
          -2.2357912707484835,
          -7,
          -3.010282098769298,
          -4.674098390094781,
          -7,
          -4.369039505473969,
          -3.901995116585794,
          -3.2968676113707205,
          -3.008615941064652,
          -3.630343109828716,
          -3.8207759774515604,
          -4.376814111968198,
          -4.672734971642158,
          -7,
          -7,
          -3.8442996228070254,
          -4.386837707954007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.641807500477222,
          -3.414137362184477,
          -4.198867769452965,
          -4.688232892760542,
          -7,
          -2.570023759327654,
          -3.5005915939162997,
          -4.668954041997986,
          -3.472663385738777,
          -7,
          -4.372516173004876,
          -4.6982484764620995,
          -4.680707088728766,
          -3.2934256972649014,
          -3.43681615981553,
          -7,
          -7,
          -7,
          -3.2860340960543226,
          -2.227424714159795,
          -3.0283353358183884,
          -7,
          -7,
          -7,
          -3.5374916772907965,
          -3.5864834354604564,
          -7,
          -7,
          -3.9877734848951945,
          -4.669781615208537,
          -7,
          -4.369698138949881,
          -4.105884708669233,
          -7,
          -4.675035558038081,
          -3.554411275946719,
          -7,
          -3.131736625062677,
          -3.3850821170480616,
          -2.5990497947493694,
          -4.371824907328892,
          -3.395501124305626,
          -3.2130497765462813,
          -3.812879948090056,
          -7,
          -7,
          -7,
          -3.8492965408347266,
          -4.114969412756915,
          -4.233046902098183,
          -4.080500220172289,
          -7,
          -7,
          -3.5397300961558305,
          -7,
          -7,
          -7,
          -4.7029558528042,
          -7,
          -2.841091194229767,
          -7,
          -7,
          -2.889052006931635,
          -2.671811852902725,
          -3.2305228661556145,
          -3.4455696105393483,
          -3.0156807285576472,
          -2.9554815815548734,
          -2.74075325674677,
          -2.7263837250269227,
          -2.3270229704256304,
          -2.681956604360934,
          -3.3183851086757383,
          -3.2291631327218884,
          -3.037882245797163,
          -2.8853402755410493,
          -2.379971981059453,
          -2.4773419163258668,
          -2.8158208567451415,
          -2.4766193378373846,
          -4.453203634456222,
          -2.9245867697212566,
          -4.697133403663625,
          -1.8490797914449508,
          -2.896895724059367,
          -2.8378006143042986,
          -3.407073002684905,
          -3.137986732723532,
          -3.3592614171553317,
          -3.0883133155880964,
          -4.081428325336669,
          -2.4071006006618583,
          -3.525778813891725,
          -2.762930069450772,
          -2.9564864261652346,
          -3.2707776164081075,
          -7,
          -3.286965169029477,
          -3.330584210632285,
          -2.762836754244074,
          -3.282069548255956,
          -1.7783881673180861,
          -4.3730683944308,
          -7,
          -2.9000644256032926,
          -2.779361358372878,
          -3.4024677308028304,
          -2.801656065740837,
          -2.4795816475112002,
          -2.363943628997153,
          -3.9019640161341345,
          -3.846319435967003,
          -2.590875020869651,
          -2.7046063428076352,
          -3.224241622388078,
          -7,
          -2.6462789366413837,
          -3.229665331102911,
          -7,
          -3.1264394677377028,
          -2.7658437971630474,
          -4.4037466209787235,
          -4.674199554567703,
          -2.7455680003520904,
          -2.3649605963793237,
          -2.0150952003982225,
          -7,
          -4.104717513058913,
          -7,
          -2.838781990842552,
          -4.114243913688907,
          -2.658166819056501,
          -3.3314422939128954,
          -3.682047830196072,
          -7,
          -3.547210993643507,
          -3.1472659700294767,
          -3.264174369359504,
          -3.619997169624987,
          -2.7563080253465677,
          -3.046619678938016,
          -3.035937611771501,
          -2.7902624576059285,
          -7,
          -2.564375831288106,
          -2.6781412485624716,
          -3.163871400527174,
          -2.842481181980336,
          -7,
          -3.7952541825808828,
          -3.2742432132856725,
          -3.49560379871742,
          -2.8416209136493107,
          -7,
          -7,
          -7,
          -3.667699110681242,
          -2.4822890258970154,
          -4.20686184095936,
          -2.8319834676564324,
          -7,
          -3.902456178608144,
          -3.178951381008244,
          -3.3426379800822894,
          -7,
          -7,
          -3.370008135101853,
          -7,
          -2.5900861226739664,
          -3.301880379744083,
          -4.672107098145544,
          -7,
          -3.1011106055740547,
          -3.7791543969313732,
          -3.5282566195152594,
          -4.674411004165626,
          -4.3705685987670515,
          -3.4371411554875295,
          -7,
          -4.371963248515009,
          -4.679800248947389,
          -3.915320673475215,
          -7,
          -3.2877554109495852,
          -7,
          -4.367905431054023,
          -3.931966114728173,
          -2.6327416798138907,
          -2.6155926176472097,
          -7,
          -3.785178517542211,
          -3.339507091038311,
          -4.19707829984804,
          -3.6481203953298564,
          -7,
          -4.200941650254682,
          -2.9233053861436202,
          -7,
          -7,
          -4.685231030488811,
          -3.899519564476793,
          -3.664590698092,
          -3.165735709164142,
          -3.7758833889278214,
          -3.897058654934976,
          -7,
          -4.078275522086601,
          -3.0731487427978834,
          -3.6439036572971206,
          -7,
          -3.393320693557942,
          -4.215760900002956,
          -4.0796153235269434,
          -2.389217144793949,
          -7,
          -7,
          -4.254475567803871,
          -4.381638446726156,
          -2.5729984391183094,
          -3.6478806474013523,
          -3.192889639956309,
          -4.678017331283984,
          -7,
          -3.879759230965237,
          -7,
          -3.091725562883123,
          -7,
          -4.080761731999528,
          -3.4400718197081073,
          -4.676858153201195,
          -7,
          -3.4624811881074096,
          -2.520650955442134,
          -4.001456783431275,
          -7,
          -3.2524528472130885,
          -7,
          -4.234416037567035,
          -3.9771197449137747,
          -3.063455909025938,
          -3.361547557812611,
          -4.375873853024666,
          -7,
          -7,
          -4.667200708661177,
          -3.423100874797959,
          -4.6893532632422525,
          -4.071642711381079,
          -3.4099331233312946,
          -2.696531119969607,
          -4.205402873822617,
          -3.334396300991193,
          -2.752827162590486,
          -4.403189178907667,
          -3.5744230695504813,
          -7,
          -4.202379321079624,
          -7,
          -3.9244688176869937,
          -3.8594814096820422,
          -3.5923903063414606,
          -7,
          -3.980575989779568,
          -7,
          -2.752029999520418,
          -7,
          -7,
          -7,
          -7,
          -4.367449107268604,
          -7,
          -7,
          -2.7262197341176018,
          -7,
          -4.681530670563176,
          -3.9720361262003894,
          -4.672051653937387,
          -4.368119458615029,
          -4.670477786047275,
          -4.3719816906773925,
          -4.671478315597623,
          -3.7823203077273884,
          -3.979247815423111,
          -2.6998895859055763,
          -4.413400361189813,
          -4.004605077491578,
          -4.1952721924613625,
          -4.667462292455807,
          -3.6147742187886363,
          -4.069372054308515,
          -7,
          -2.720558665026306,
          -3.8277199645519246,
          -7,
          -3.994572286223859,
          -4.687716193623689,
          -3.644885992908976,
          -4.66838591669,
          -7,
          -3.139114126747177,
          -4.667845041827829,
          -3.6620534634123754,
          -4.201032783290775,
          -7,
          -7,
          -3.534328527851568,
          -7,
          -7,
          -4.764011652390399,
          -4.764639332067447,
          -5.0697642673235235,
          -5.068642187918206,
          -7,
          -4.765716972542505,
          -1.3727607434870837,
          -4.04089709143117,
          -5.064951905427961,
          -4.764635598561476,
          -3.2730178163003028,
          -3.2940448558627553,
          -3.892001794808537,
          -7,
          -7,
          -4.287316422082007,
          -4.764112590683704,
          -2.947038239970433,
          -4.049876719873882,
          -7,
          -3.0502460076216558,
          -2.0350499109066176,
          -4.465609606995967,
          -4.066076087588171,
          -7,
          -4.071005172856093,
          -4.068415939746929,
          -4.024944423608711,
          -2.925498564509372,
          -4.2895034823507485,
          -5.065389225679412,
          -7,
          -4.367464015212066,
          -4.468705401846396,
          -4.220742994305462,
          -2.874826644359406,
          -4.023596615284432,
          -4.469718950821701,
          -4.464206284343785,
          -2.507019396581007,
          -3.919425538440869,
          -7,
          -4.117031796709582,
          -7,
          -3.209703356355492,
          -7,
          -4.1645089952494,
          -3.8197412972730103,
          -3.5766979443367655,
          -3.6383043327526083,
          -1.3313716618442355,
          -2.4462729199993634,
          -3.367809356499877,
          -3.5295194685658156,
          -7,
          -4.164092498531462,
          -3.7946824578784644,
          -4.222248116858932,
          -4.4656058906462865,
          -4.113430805202484,
          -7,
          -4.46495131726153,
          -2.885529009742976,
          -2.9640842761672306,
          -3.951528055366644,
          -4.4631685609915746,
          -3.1970930127175414,
          -7,
          -3.5915815730415983,
          -3.8485766745910306,
          -4.220294921547735,
          -4.471218344307872,
          -2.716334138671556,
          -4.46325450995035,
          -2.9845051793652493,
          -7,
          -7,
          -2.311960322158872,
          -4.07092403147615,
          -3.787300106090019,
          -4.763809705396578,
          -2.349604963917566,
          -3.5227571257978822,
          -2.7789588305843886,
          -3.695886449894574,
          -3.3976922977836024,
          -4.592502448664263,
          -2.3130636356412113,
          -3.8207085337685434,
          -3.702826735552145,
          -4.764217242658816,
          -7,
          -5.073168262265102,
          -3.345314535659132,
          -4.072213122603382,
          -3.2846526458315903,
          -7,
          -3.2151822754505077,
          -4.76624549251132,
          -4.21986134467424,
          -4.1106420768469505,
          -1.9181298934192341,
          -3.834581509861899,
          -3.867971760315312,
          -4.466782383550875,
          -2.935046695204227,
          -1.9473491021061466,
          -5.066791656754556,
          -5.065960442354263,
          -3.2481776883387057,
          -4.068657019746832,
          -2.769785387826406,
          -3.7056741038112646,
          -7,
          -4.029896363201768,
          -3.473939276599178,
          -3.522574632691177,
          -3.636071642004376,
          -2.8643510609821883,
          -2.5017057319481153,
          -4.765720696763816,
          -3.0270622879889344,
          -4.464843366682843,
          -3.3094415672514828,
          -3.8376626956490294,
          -3.869437080721956,
          -3.0205066629195114,
          -5.065404169016913,
          -4.766003644178281,
          -2.1480678125148733,
          -3.642786833027063,
          -7,
          -5.0650453869280705,
          -3.193171516140053,
          -5.0646825662285115,
          -7,
          -5.064989300442656,
          -4.764400322956388,
          -5.064951905427961,
          -2.3143427867681856,
          -3.760627087876746,
          -3.405915255308017,
          -4.039623193624272,
          -5.067100626711813,
          -3.585485404630345,
          -4.463011566814714,
          -5.065826106006714,
          -3.26867453046004,
          -3.7059594516948704,
          -3.745209688797541,
          -7,
          -4.46393402862153,
          -4.288979144953989,
          -2.6253095519834253,
          -7,
          -7,
          -4.468354716309928,
          -3.954861957873765,
          -4.764419000280632,
          -4.1658153906150925,
          -4.4675045136258955,
          -4.595455803368671,
          -3.691773806297744,
          -4.4681183052566995,
          -3.3421652709718277,
          -3.8654149200566366,
          -4.765564251964924,
          -1.7082095909969017,
          -3.2084002959915017,
          -7,
          -5.064723726084838,
          -4.590165392435617,
          -3.66797192812771,
          -4.46376984680511,
          -7,
          -2.487716546462839,
          -4.7650423619133955,
          -3.549571102270827,
          -7,
          -3.429077262814052,
          -1.182962689199345,
          -3.2817559066229203,
          -2.7529647996826467,
          -2.9272866169481597,
          -3.336133464245632,
          -3.390489844778819,
          -4.592217482164138,
          -4.1670698345582835,
          -4.369364308781235,
          -4.370368732547782,
          -3.3626890460874135,
          -3.603875734432136,
          -3.6329884465050295,
          -7,
          -3.527176875493069,
          -4.468583616860806,
          -3.3826362538303836,
          -7,
          -3.2991360121936095,
          -5.064918247161494,
          -3.527730122124633,
          -4.367728546086976,
          -4.115092525350614,
          -4.765016250940787,
          -4.589450639051082,
          -3.65203492789085,
          -4.2934141218173325,
          -7,
          -3.459212229915092,
          -1.9540949941996784,
          -2.618855352283515,
          -7,
          -4.587789512472801,
          -4.287883805323705,
          -4.588077398322267,
          -4.764568389965006,
          -4.1120945993276115,
          -4.764288242139756,
          -4.066665027256672,
          -2.171168871249555,
          -3.244415385955302,
          -2.625039053970189,
          -2.8380917602820355,
          -7,
          -4.464131710707957,
          -4.58953632259307,
          -4.767222675478806,
          -7,
          -5.065437789646456,
          -4.4691590270720125,
          -4.291431754946445,
          -7,
          -7,
          -7,
          -4.764407793982475,
          -4.162713725583078,
          -5.064832219738574,
          -7,
          -3.236807611141011,
          -1.7874437108032026,
          -7,
          -7,
          -7,
          -4.58866006326894,
          -3.8629322656865397,
          -3.7050228564102046,
          -7,
          -4.067119232342068,
          -4.302817775635442,
          -3.1946512225101293,
          -4.38643832060867,
          -2.382042120106383,
          -4.028467731285911,
          -4.7641948193584245,
          -7,
          -2.0802478193290583,
          -3.2443694472721205,
          -3.0135839120839165,
          -4.465182018186956,
          -2.602768412048955,
          -5.067636150031888,
          -7,
          -4.111717932914938,
          -3.298894643645755,
          -3.304888879148899,
          -3.005539729015686,
          -3.275746726696121,
          -3.6411375648112925,
          -3.6887793603355443,
          -4.288897276322566,
          -3.8892120324534645,
          -2.9604930743921973,
          -2.4232864741068187,
          -3.175060190094287,
          -7,
          -4.2877868054647905,
          -3.9546765869186435,
          -5.065852230217733,
          -4.115307194646102,
          -5.0648995469973555,
          -3.330649859099253,
          -2.5069980127184524,
          -3.9891530670696294,
          -4.772365720825139,
          -4.291069003840989,
          -2.2056860269673777,
          -3.1132782144229987,
          -5.065564777430062,
          -3.175527919520875,
          -7,
          -3.8120215812126705,
          -3.600224844436374,
          -3.250294294532932,
          -1.9945033548218805,
          -2.9097061995921036,
          -4.2404850620891335,
          -3.9564381178018633,
          -3.820259857910027,
          -4.3728310252634595,
          -1.8738303081546903,
          -2.879619688796236,
          -5.064936946520462,
          -7,
          -7,
          -3.298366239267854,
          -3.2927897119911833,
          -7,
          -4.367907292617928,
          -3.7939336804318997,
          -4.764859552129425,
          -3.690698035157469,
          -4.5891487492977605,
          -3.189004157062433,
          -4.3681082945672856,
          -5.068015079913622,
          -2.5459526635880794,
          -5.067108069059566,
          -2.78760911244904,
          -3.2594014866290206,
          -2.297533665441869,
          -4.766104120608411,
          -2.4344002341345896,
          -2.802130831465385,
          -3.1869098660219337,
          -7,
          -3.8915077231856623,
          -5.065676794647086,
          -2.8959235657954556,
          -3.314252961500534,
          -3.438826320043174,
          -3.7285197932079055,
          -4.463067642678739,
          -7,
          -3.6921416093667836,
          -3.704046016852243,
          -4.2887483847147845,
          -4.067193646893265,
          -3.499477262788162,
          -3.986906031380721,
          -2.089274358160125,
          -5.064772364522698,
          -5.064978082276334,
          -1.758803501867089,
          -2.4979057429957394,
          -3.696608755737047,
          -3.4552184030070845,
          -2.950627740567455,
          -1.9801848549570622,
          -3.2268681559950823,
          -2.8476261764648605,
          -2.259338656408642,
          -2.850715837004121,
          -3.6463165753710434,
          -3.3196248838045315,
          -2.5756714430644854,
          -2.2969874504106382,
          -2.406878962573308,
          -2.7320407640579987,
          -2.7773412012531984,
          -1.9185563154786038,
          -3.6866775108445764,
          -2.79432813146471,
          -3.8728625197457576,
          -2.09235891190916,
          -2.4695912148977635,
          -2.549569566907775,
          -3.7104660152370172,
          -3.7750339396089885,
          -3.033358978921552,
          -3.537268839048176,
          -4.770439604180736,
          -2.3086996539594438,
          -2.992730873083119,
          -2.873181900714484,
          -3.232258962342702,
          -3.3618801933185427,
          -3.8942200345812,
          -3.3136597486201063,
          -3.6754751741703275,
          -2.6708822353808133,
          -3.4178535051684764,
          -2.7739059677955167,
          -3.20378520893911,
          -2.9000644256032926,
          -7,
          -2.2616759128999493,
          -3.632540440843605,
          -3.1818562864281845,
          -4.770557474850995,
          -2.1947223439203243,
          -2.2698908472038735,
          -2.776653498621149,
          -2.5061605659193376,
          -2.406641469178499,
          -2.341780233246614,
          -4.768190258560652,
          -2.543381533214589,
          -4.309239694613544,
          -5.065422847465759,
          -4.1828317685399785,
          -3.575449990754737,
          -2.4336680285437815,
          -7,
          -0.6755530875172971,
          -1.8731804991743521,
          -2.079139523035249,
          -3.9518640925869866,
          -3.4680878435600424,
          -4.163068152729703,
          -2.0992450911191702,
          -4.182068534220791,
          -2.817909297102525,
          -1.6487264577005731,
          -2.62775226752316,
          -4.3661127695587165,
          -1.7088699103967022,
          -2.870044039039802,
          -1.9045744446491906,
          -3.2782344594580577,
          -3.0988414244579596,
          -4.007288924125068,
          -1.1624663622221725,
          -3.0062847512451514,
          -3.766025974282846,
          -1.937665082874569,
          -2.485678995021301,
          -4.5994536575971905,
          -1.9555751738308984,
          -4.112001395486189,
          -3.321365831759885,
          -2.158785476021301,
          -3.6401094007920802,
          -3.861321542455379,
          -5.065041648054379,
          -4.763716179607514,
          -7,
          -4.237047980435429,
          -2.2323788794900854,
          -3.017768120712702,
          -2.474687312034128,
          -3.861448529146899,
          -2.5286826823843556,
          -2.5171165611354143,
          -3.6570963223312,
          -3.8664645659717403,
          -4.287577809078705,
          -2.839399028578788,
          -4.76420976835399,
          -2.0270631939449606,
          -2.5051463299974426,
          -3.8114334945608093,
          -4.594046155430341,
          -2.1238174830124894,
          -3.6906168758571534,
          -2.7149390821628323,
          -3.9884995011345423,
          -5.0666352267141015,
          -1.9520292794553855,
          -5.066754416617172,
          -4.368197598914685,
          -4.028482521569151,
          -2.9072211855036825,
          -5.064753658075849,
          -2.9593559844984885,
          -4.764187344667675,
          -4.764527312924223,
          -2.710510943898011,
          -1.1560214758601268,
          -2.4490943841052553,
          -7,
          -3.897275115194261,
          -2.7942848236913926,
          -4.590555776208226,
          -2.9115800295579106,
          -7,
          -3.0641947231369087,
          -2.529584855843978,
          -5.065082773894735,
          -4.366613444636752,
          -3.8416023541757394,
          -3.269320178171262,
          -2.5958115596594458,
          -3.7442035439045456,
          -4.028197720101696,
          -3.5238021896457496,
          -4.367903569482139,
          -3.040021591492229,
          -2.8983745114874,
          -3.3050105477691814,
          -7,
          -2.8902712123140275,
          -2.737298928882287,
          -4.292547718850385,
          -3.1484115092286706,
          -4.589432009956984,
          -7,
          -2.706294486458381,
          -3.8949323529090556,
          -1.5008258604492917,
          -2.5691493015140976,
          -3.931472400204468,
          -3.171018804632408,
          -7,
          -3.1487798874796478,
          -4.464496999231432,
          -2.99768710765127,
          -4.024735619217597,
          -3.3718728705973113,
          -2.08724344131914,
          -4.0686866818845795,
          -4.06480977499933,
          -2.20374132393189,
          -2.188065485960007,
          -3.8231009262048943,
          -4.372779486133048,
          -2.8054559734849365,
          -4.2288511397148065,
          -3.2974088730612636,
          -3.7258930786484834,
          -2.581104556080377,
          -3.273471503089958,
          -3.706888394981618,
          -4.165073602671241,
          -7,
          -7,
          -2.9025185013539017,
          -4.295677034017465,
          -3.6523393356894247,
          -3.67560605568558,
          -2.331785136469075,
          -2.6187489037583633,
          -2.4282121139948085,
          -2.5188993059374263,
          -3.6649130538258987,
          -2.932661224370865,
          -4.7656313066366955,
          -3.2180655795999282,
          -7,
          -2.908097212236117,
          -3.535941190545326,
          -3.2292743435523663,
          -7,
          -3.04379216985318,
          -3.837402739134079,
          -2.3368591970429793,
          -3.9210693316079035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.588447257083161,
          -3.5298151966446305,
          -4.2243739512352265,
          -4.070588240085541,
          -4.112116965273502,
          -5.0668102756258335,
          -3.919425538440869,
          -3.7438083002149427,
          -4.1129027694460705,
          -4.1634371956104115,
          -2.763309942668417,
          -3.5376117097515545,
          -2.52194468698677,
          -3.4406336268506807,
          -4.125517410220768,
          -3.890767421900135,
          -7,
          -2.791153148992849,
          -3.522261608845393,
          -7,
          -2.5080905010569623,
          -3.487104869552999,
          -3.6689112256610885,
          -3.359251556898101,
          -4.031724199984835,
          -3.730095580067584,
          -4.0652696604655,
          -4.024078722515256,
          -3.0886085331114645,
          -4.286931523511091,
          -3.602475990905145,
          -3.290705949488817,
          -4.590470293581849,
          -4.763697472032553,
          -7,
          -7,
          -7,
          -3.8698182079793284,
          -7,
          -7,
          -7,
          -7,
          -3.895809150169131,
          -3.09532291400805,
          -7,
          -7,
          -7,
          -3.0755277528968996,
          -3.2867557767759927,
          -7,
          -7,
          -7,
          -3.8769103113446275,
          -7,
          -2.5019260722283025,
          -3.8650150921872437,
          -7,
          -2.517384434736918,
          -3.0108795765633274,
          -3.608365550303124,
          -3.8866598978612026,
          -7,
          -3.6546577546495245,
          -3.9207492612757084,
          -3.5895586720415062,
          -3.8258857029949604,
          -3.9095025414054154,
          -3.8751191654625683,
          -7,
          -3.8914817038395197,
          -7,
          -3.8827521556130797,
          -1.6300281227436775,
          -3.170613703377405,
          -7,
          -3.043081453904068,
          -2.858252805913937,
          -7,
          -7,
          -3.658059118703411,
          -7,
          -3.451939869365103,
          -7,
          -2.8664484574247195,
          -7,
          -3.315550534421905,
          -2.93881982502621,
          -2.4359189840380653,
          -3.20960436635488,
          -3.0955470872642685,
          -3.818522802003136,
          -3.414639146737009,
          -7,
          -3.9872639541222354,
          -2.862673366756278,
          -3.9094490469812664,
          -3.6089536992758626,
          -7,
          -7,
          -3.181598615963903,
          -1.794614194858966,
          -2.7000688257699466,
          -7,
          -3.6754116937148633,
          -7,
          -3.137072650257898,
          -3.448513085427185,
          -7,
          -3.2053848312193485,
          -3.391247815367535,
          -2.9191362269698162,
          -1.7802978462168428,
          -7,
          -7,
          -2.7611758131557314,
          -3.2553690042664414,
          -3.284938054343137,
          -3.8666417205660397,
          -2.3823773034681137,
          -3.0548318427136074,
          -2.7000977046130537,
          -3.71796159904163,
          -2.9883111708948853,
          -7,
          -2.702026582792653,
          -2.8118681227282054,
          -3.337484220026441,
          -7,
          -7,
          -3.9823617016331467,
          -2.419555246345498,
          -3.67015304519218,
          -3.187238619831479,
          -7,
          -3.4202652587643403,
          -7,
          -3.09037563638456,
          -2.9642596301968487,
          -1.5709235268536406,
          -3.0255984179749933,
          -7,
          -3.926085086925144,
          -3.0077865594877418,
          -2.320629926146124,
          -3.1176578997854874,
          -3.1051694279993316,
          -1.9890314480164784,
          -3.6229907048100864,
          -2.7073048557521924,
          -2.906712056942964,
          -3.8674674878590514,
          -3.6584407064111257,
          -2.7875021474524684,
          -3.573413164820461,
          -2.730997486018614,
          -2.2519497768153833,
          -2.386066582440751,
          -7,
          -7,
          -3.8983411657275093,
          -3.8772931691185653,
          -3.917190308511564,
          -3.6873505695580273,
          -1.7688546896541124,
          -7,
          -7,
          -2.9234059419317693,
          -7,
          -7,
          -7,
          -2.9119633768201263,
          -7,
          -7,
          -7,
          -3.5747255835940734,
          -3.8682916880178557,
          -2.2505444669536296,
          -3.390970414162616,
          -3.7244602007755776,
          -4.071145290451083,
          -7,
          -3.6847556221086237,
          -3.8705209500127644,
          -3.8818409683249273,
          -1.9929312832109043,
          -3.4847268042986617,
          -3.231660699116671,
          -7,
          -3.8847387377696316,
          -7,
          -2.7869496562880802,
          -7,
          -7,
          -7,
          -3.1478308499434595,
          -7,
          -3.0235610900969454,
          -3.9360107957152097,
          -3.9752019622578523,
          -3.1910782294789994,
          -3.643156465619706,
          -3.11904583148332,
          -3.0330214446829107,
          -3.8935398435646613,
          -2.3559534274988096,
          -3.18904090790901,
          -7,
          -7,
          -3.903849338096681,
          -3.4085226171161014,
          -3.8822398480188234,
          -7,
          -1.6879303697434271,
          -7,
          -3.8131805325860118,
          -7,
          -3.785329835010767,
          -1.7566465429864107,
          -2.2691870196383395,
          -1.6589416127705028,
          -1.8078005551873275,
          -2.37927961214755,
          -1.9821283495107576,
          -3.9328287669008466,
          -3.4671145890738178,
          -3.6179434348289727,
          -3.9330314951024055,
          -3.049256797232227,
          -2.81135154588012,
          -3.461160744254032,
          -7,
          -7,
          -3.649334858712142,
          -3.4196554065124327,
          -7,
          -3.320030828319093,
          -7,
          -3.4035323048494335,
          -7,
          -7,
          -3.885304667588968,
          -7,
          -3.493771633610371,
          -7,
          -7,
          -3.6702922495788317,
          -2.891361368543823,
          -2.9170109744688304,
          -7,
          -2.720218387071364,
          -3.885587356189656,
          -7,
          -7,
          -3.413132050434872,
          -7,
          -3.1167737269758997,
          -2.006348800031633,
          -3.253418781757457,
          -3.134835596316012,
          -3.330982302212323,
          -7,
          -7,
          -3.8945929479229555,
          -3.3152354096177272,
          -7,
          -3.875871190727366,
          -3.0542299098633974,
          -7,
          -7,
          -7,
          -7,
          -3.5748411950633847,
          -3.8822968009376515,
          -7,
          -7,
          -3.637939801558909,
          -2.7115905922749253,
          -7,
          -7,
          -7,
          -7,
          -2.621121595068182,
          -2.302918960185348,
          -7,
          -3.4248272103534214,
          -7,
          -2.713045594527829,
          -3.511448849204857,
          -1.7855294035898643,
          -1.7525382585237885,
          -2.9175055095525466,
          -3.0878996736256314,
          -2.8717149005099007,
          -2.953082843912086,
          -2.9231276609444166,
          -3.903307079964174,
          -3.334297341231131,
          -7,
          -7,
          -3.407447560198671,
          -3.269564828153454,
          -3.492585798277992,
          -3.205664407371687,
          -3.0420741003156624,
          -3.8403884196021063,
          -2.849879878037141,
          -3.298307137328508,
          -3.5742628297070267,
          -2.0582783662301987,
          -1.7328989937968162,
          -3.1378512485602417,
          -7,
          -7,
          -3.6227837254272086,
          -3.279837982245049,
          -3.0906107078284064,
          -3.8674674878590514,
          -3.260834312172319,
          -2.1405651757728412,
          -7,
          -3.9852467908028615,
          -3.630377017892592,
          -2.7848376022392927,
          -2.9374293839197807,
          -7,
          -3.640895326720516,
          -7,
          -3.0017337128090005,
          -3.5563025007672873,
          -3.16721884410666,
          -1.9117848898005676,
          -2.5887025545779663,
          -3.6382229411517786,
          -7,
          -3.5347873586294916,
          -7,
          -3.1195531811384214,
          -2.952004964166678,
          -3.8680563618230415,
          -7,
          -7,
          -2.9242103449581727,
          -3.743392160047862,
          -7,
          -3.8980666606416348,
          -3.978043493909963,
          -7,
          -3.9558800862253753,
          -3.5876548509957176,
          -2.796829854240984,
          -7,
          -7,
          -2.6816344420035367,
          -2.483312930618305,
          -3.6415567309708003,
          -3.097326735715773,
          -3.519207039342475,
          -7,
          -2.2268174247459047,
          -3.4028122078099425,
          -3.411249219353385,
          -7,
          -3.2102649990322885,
          -7,
          -2.3042116544501705,
          -2.96748111539479,
          -2.9714542697101325,
          -3.110445402445486,
          -7,
          -7,
          -3.0193471139879318,
          -3.406199423663313,
          -7,
          -7,
          -3.2763852022713076,
          -3.40970774995732,
          -2.247384898685672,
          -7,
          -3.5675556708947846,
          -2.3997588077471526,
          -3.372504332000748,
          -4.106700732362354,
          -4.046768219660838,
          -4.068341734353948,
          -2.542854032839964,
          -7,
          -3.4308998905960526,
          -2.972854758649604,
          -3.0381696077218603,
          -3.735918116531297,
          -3.4779408149553697,
          -3.8184605047247477,
          -3.9129329633004786,
          -2.3925803667445065,
          -4.451248989796137,
          -3.5287480250682557,
          -2.70991529382808,
          -7,
          -2.8575863955802148,
          -7,
          -3.9850393715220522,
          -3.154423973114647,
          -3.020531260920681,
          -3.448065555627402,
          -4.451924528420122,
          -3.7195467231686625,
          -3.8703258579283086,
          -7,
          -2.763716901638116,
          -3.8516455748718625,
          -3.833035494730326,
          -3.7477224620355085,
          -3.875177059814704,
          -3.947139517642829,
          -3.8022947113974634,
          -4.160048139552876,
          -3.6442662161844077,
          -3.501313618914804,
          -3.101158960619402,
          -2.4285667129921897,
          -2.779361358372878,
          -2.2616759128999493,
          -7,
          -3.2802368096096894,
          -3.450495446659433,
          -7,
          -2.6861758282690205,
          -2.146128035678238,
          -2.454583551648098,
          -2.7888625054157443,
          -3.3706936886585264,
          -3.3963895768324193,
          -7,
          -3.304300406296957,
          -2.8756399370041685,
          -3.8756399370041685,
          -3.641441057915941,
          -1.9960417286434593,
          -3.28450592984192,
          -7,
          -2.3225283506064525,
          -2.8364446201316853,
          -3.948777928708192,
          -3.4055740076619347,
          -3.372617466178957,
          -3.2852759390712047,
          -2.376531898750521,
          -4.111564935454498,
          -4.270870076550308,
          -3.3720370124661687,
          -3.0071723936424135,
          -2.7903438168096026,
          -3.542389669540937,
          -2.491027393657021,
          -3.3822036435596736,
          -2.9965514700448734,
          -3.1625830742133614,
          -3.646763038740345,
          -3.226604958933488,
          -2.349050573178034,
          -2.8219500053077473,
          -2.988894392169021,
          -2.356873331695484,
          -7,
          -3.0547381672190057,
          -7,
          -3.7334781411151887,
          -1.8598212968349632,
          -3.1949874740307362,
          -2.2496641512224946,
          -3.5685537120494426,
          -7,
          -7,
          -4.082282589912437,
          -2.2637568032034094,
          -3.059800000399848,
          -2.882681528415911,
          -3.879611907065851,
          -2.8306873495494416,
          -2.743675563376944,
          -3.067210388410234,
          -3.473535627784848,
          -3.880927865267085,
          -3.0170681371419867,
          -7,
          -2.917399217307005,
          -2.5934047537390925,
          -3.5958267770732233,
          -7,
          -2.512486428200025,
          -3.4775071227876087,
          -2.8055763679355015,
          -7,
          -3.1946253294838645,
          -2.2308574768946725,
          -7,
          -3.9023293058583186,
          -3.463594402187,
          -3.0107238653917734,
          -7,
          -3.234997879686031,
          -7,
          -3.5766868052009952,
          -3.9675198959264786,
          -1.8809732400149861,
          -3.170975596352534,
          -7,
          -3.9860547807696953,
          -3.0775914946999468,
          -3.9095025414054154,
          -3.213960237403306,
          -7,
          -3.1528486915725082,
          -2.8008932412190894,
          -7,
          -2.763255162964953,
          -3.9698816437465,
          -3.4522976709946303,
          -3.165355631362408,
          -2.188647295999717,
          -2.487188895396036,
          -3.6145281197475394,
          -7,
          -3.244771761495295,
          -2.7133592688790253,
          -3.876468026859822,
          -7,
          -3.3175619366212463,
          -2.893420302005442,
          -3.951386094880293,
          -3.115672905824526,
          -7,
          -7,
          -3.567790710533536,
          -3.6553785755318513,
          -2.485076000522817,
          -2.470000425955779,
          -3.335818826915165,
          -2.03104575333472,
          -7,
          -3.8441042306975133,
          -7,
          -3.4095273670122404,
          -3.887561040930009,
          -3.2581581933407944,
          -2.5071974505844183,
          -3.9245377177754897,
          -3.2646997921671455,
          -2.7551122663950713,
          -2.4675023992470027,
          -7,
          -3.663795122219408,
          -3.2868733052667998,
          -3.6913025633834833,
          -4.091983332237311,
          -3.9205928620848085,
          -3.1010101904226492,
          -3.759894374025499,
          -3.9248992640142837,
          -7,
          -7,
          -3.866877814337499,
          -2.954973030186681,
          -7,
          -3.207311151436134,
          -3.511838815670676,
          -2.9279581791148983,
          -2.6316852986795403,
          -3.2162471281677285,
          -3.02153039646357,
          -4.060584531360865,
          -3.9869955397243815,
          -7,
          -3.2400997455874054,
          -7,
          -3.354530998050396,
          -3.4602587043308133,
          -4.070628844051428,
          -7,
          -3.094221491063981,
          -3.612359947967774,
          -2.249025531378285,
          -3.9037409406215384,
          -7,
          -7,
          -3.56702636615906,
          -7,
          -7,
          -3.8781194846971676,
          -3.2187979981117376,
          -3.935053589231065,
          -3.473000092791711,
          -3.589670402034894,
          -3.8966364305295844,
          -7,
          -3.5860243823869755,
          -7,
          -7,
          -3.192846115188842,
          -3.6314437690131722,
          -2.7498466966808266,
          -3.802739527529692,
          -3.756864224060549,
          -3.8988896559265864,
          -7,
          -2.093635192114032,
          -3.1938478199735574,
          -3.865400118179301,
          -2.970924885385915,
          -3.6007006960652372,
          -3.8998751960210107,
          -3.166133970305109,
          -7,
          -7,
          -3.57316180901509,
          -7,
          -2.882144909887086,
          -7,
          -4.057856208741888,
          -3.9320169064342014,
          -7,
          -7,
          -3.353531559077762,
          -7,
          -7,
          -7,
          -3.6449307079135873,
          -7,
          -3.4158077276355434,
          -3.3443922736851106,
          -3.194976603216055,
          -3.601826892720257,
          -3.9528408566757016,
          -7,
          -7,
          -2.675062643529782,
          -1.9735918316724699,
          -3.4056877866727775,
          -7,
          -7,
          -7,
          -3.630834517828051,
          -2.1959855509600987,
          -7,
          -7,
          -2.9705018430406236,
          -3.183032267162237,
          -7,
          -7,
          -7,
          -7,
          -3.7134065321676912,
          -3.6638892986226614,
          -4.109544800878346,
          -7,
          -7,
          -7,
          -7,
          -3.2854072677273374,
          -7,
          -3.2325514293947246,
          -7,
          -7,
          -7,
          -3.7057721050805066,
          -7,
          -3.3683798716238016,
          -2.658084813018018,
          -7,
          -3.008227455332087,
          -7,
          -7,
          -3.8436687229791437,
          -2.8627275283179747,
          -3.4424013694827025,
          -2.6476300090757197,
          -3.8174992618677583,
          -2.655507827095201,
          -3.699230502883409,
          -7,
          -2.9845273133437926,
          -3.5149460053080044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3967222785037734,
          -3.6601197915175523,
          -7,
          -7,
          -2.8447532250045566,
          -7,
          -3.9634572601167077,
          -3.9073038488339695,
          -7,
          -7,
          -3.2920407700035588,
          -7,
          -7,
          -7,
          -7,
          -2.5067755366066433,
          -2.9880384429265163,
          -3.6582022533870147,
          -7,
          -3.8171024042569233,
          -3.6804261708581456,
          -7,
          -3.0837414400078025,
          -7,
          -7,
          -2.400854247259087,
          -2.0895396974658813,
          -2.4264191815419247,
          -3.3324384599156054,
          -7,
          -3.808818425092124,
          -2.597851829563605,
          -2.749384916179469,
          -2.7344569203867417,
          -3.1686938635769795,
          -2.853892809956602,
          -7,
          -7,
          -7,
          -2.973424761988879,
          -7,
          -2.789439684567179,
          -7,
          -3.0603740219104476,
          -2.86114122047067,
          -7,
          -3.652343055062715,
          -3.4058583993176366,
          -3.7188337183038622,
          -3.1685905167231248,
          -3.6921416093667836,
          -7,
          -7,
          -3.5616379545646066,
          -3.061398619785096,
          -7,
          -3.493248870057419,
          -2.826966962249786,
          -7,
          -7,
          -7,
          -4.408231482914914,
          -7,
          -3.8178957571617955,
          -7,
          -7,
          -3.6795187436957892,
          -2.5532760461370994,
          -3.528723923260994,
          -7,
          -7,
          -2.841006320237581,
          -7,
          -7,
          -7,
          -3.337359412001355,
          -7,
          -2.2420685056980982,
          -3.261881149383667,
          -2.5551912165114072,
          -1.4041818673690032,
          -7,
          -3.5780276351697315,
          -7,
          -7,
          -7,
          -7,
          -3.0658285940945165,
          -7,
          -7,
          -7,
          -3.5450370748081865,
          -7,
          -7,
          -3.454463732751138,
          -7,
          -7,
          -2.8779469516291885,
          -3.7377490738915573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.042364962306286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9378759549297913,
          -7,
          -3.881859970905687,
          -7,
          -3.3537720189044595,
          -2.850280070939956,
          -2.9916690073799486,
          -3.0278590441755795,
          -7,
          -7,
          -7,
          -7,
          -2.9720484774455382,
          -7,
          -7,
          -3.127428777851599,
          -7,
          -7,
          -7,
          -3.103906298088718,
          -3.282924073246148,
          -4.110000151133113,
          -7,
          -3.4955443375464483,
          -7,
          -3.978043493909963,
          -3.671820560183249,
          -7,
          -7,
          -7,
          -3.969042967305813,
          -7,
          -7,
          -2.946452265013073,
          -2.5230711116183655,
          -2.5037906830571814,
          -7,
          -7,
          -3.655234507034294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4405429904293583,
          -3.2784677868708427,
          -2.8395534609966906,
          -3.5760348835966065,
          -7,
          -7,
          -3.369215857410143,
          -3.105765577004269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.887946129001034,
          -7,
          -7,
          -7,
          -7,
          -3.381295623003826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4211590897092523,
          -2.4925910899380925,
          -7,
          -7,
          -7,
          -2.5469358681060803,
          -2.684920130428604,
          -1.6781075804207748,
          -7,
          -3.4405155211122285,
          -3.392609030497567,
          -3.348499570283838,
          -7,
          -3.434153571066601,
          -1.9855315734532346,
          -2.391545786109887,
          -3.174447484146129,
          -3.426592582305156,
          -3.0288964451314704,
          -3.203123582322945,
          -7,
          -7,
          -3.345177616542704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0757658782157344,
          -3.0084937139891323,
          -3.711891549880579,
          -3.8131137540078983,
          -7,
          -2.848167227384979,
          -2.664265800147675,
          -3.6419695977020594,
          -3.5851221863068155,
          -7,
          -3.211209563392604,
          -7,
          -3.2757719001649312,
          -2.707842589142404,
          -3.143888758109275,
          -7,
          -7,
          -7,
          -7,
          -2.8083010194685842,
          -2.9689108057647475,
          -7,
          -7,
          -7,
          -3.373693397708325,
          -2.8181158760118716,
          -7,
          -7,
          -3.8023631743095474,
          -7,
          -3.7687120803776635,
          -3.660675788338524,
          -2.8280647007154767,
          -7,
          -3.7026889681591335,
          -3.1999196515905677,
          -3.681150749932421,
          -3.8791417734536084,
          -2.4783802829285815,
          -3.6220078252245322,
          -7,
          -3.0437551269686796,
          -4.034010460806513,
          -3.5109915855486893,
          -7,
          -7,
          -7,
          -3.0122344564170116,
          -7,
          -3.6547539332529304,
          -7,
          -7,
          -7,
          -2.841428996506697,
          -7,
          -7,
          -3.6848453616444123,
          -3.611882555512116,
          -7,
          -2.7509122702070736,
          -7,
          -7,
          -3.077902620312059,
          -3.65240521701543,
          -3.8732236935293995,
          -2.9978230807457256,
          -4.26609051627518,
          -2.196349731859291,
          -2.470982714616232,
          -3.0065475348576056,
          -2.2840784231405773,
          -2.6730538369148547,
          -3.285613561126485,
          -3.5331544660607777,
          -3.544649299599081,
          -3.8676316115708507,
          -2.8355554343211464,
          -3.922517860244611,
          -2.848394408643486,
          -2.8264486037411776,
          -4.161697342108118,
          -4.084308112145074,
          -7,
          -3.903130262435183,
          -3.0515191052522455,
          -2.6163889429844382,
          -2.8939466075520737,
          -4.400468911217488,
          -3.847475707588656,
          -3.2805556080062743,
          -3.7766285534201502,
          -2.3625947261651086,
          -3.258685162607472,
          -3.4089095516830414,
          -3.695604242313307,
          -3.8094025770958426,
          -7,
          -3.7233461952304965,
          -3.575534218319864,
          -2.94948487959529,
          -3.2795300649754404,
          -2.535586213640982,
          -3.693990610460777,
          -3.4024677308028304,
          -3.632540440843605,
          -3.2802368096096894,
          -7,
          -2.5840353300734824,
          -7,
          -2.2447685124090837,
          -4.13325141247232,
          -7,
          -4.195678299457498,
          -3.1734048180177767,
          -3.235738809944795,
          -7,
          -2.372209056194802,
          -2.9743441893192255,
          -7,
          -3.044191209425144,
          -4.136133714782523,
          -3.924227581260118,
          -3.6947806360120614,
          -3.3948316503650684,
          -2.03835220370558,
          -4.046795346217831,
          -7,
          -7,
          -7,
          -3.349615134542817,
          -7,
          -4.370324641925331,
          -3.5934799052213555,
          -4.306725176782492,
          -7,
          -4.092387253618812,
          -4.011612729219424,
          -3.6625824599965613,
          -3.589279221235967,
          -2.855562418553915,
          -2.774302234212727,
          -2.803115554890027,
          -2.448072442801128,
          -7,
          -2.0679544077499283,
          -3.405143222504934,
          -2.7872833199241156,
          -3.7636141895615403,
          -7,
          -3.8845688149183335,
          -3.248100836962856,
          -3.0481642458737346,
          -7,
          -7,
          -7,
          -7,
          -3.9505108929859967,
          -2.3074300025941716,
          -3.177969136009376,
          -2.270482815851919,
          -7,
          -3.7531232446817127,
          -2.8656960599160706,
          -2.8363241157067516,
          -7,
          -7,
          -2.792951708250132,
          -7,
          -3.479823878409032,
          -2.8534769715870274,
          -3.1969127457115927,
          -7,
          -2.4908264559884237,
          -7,
          -2.922050402167174,
          -7,
          -7,
          -3.687751847789659,
          -7,
          -7,
          -7,
          -3.374198257929083,
          -7,
          -2.9702228629562915,
          -7,
          -3.6419695977020594,
          -3.103763488014902,
          -2.4184379801183886,
          -2.583574351028345,
          -7,
          -3.8143142002074595,
          -3.1387586872454243,
          -7,
          -3.045127306568027,
          -7,
          -3.253176407377487,
          -2.5533367823768884,
          -7,
          -7,
          -7,
          -3.727622577969137,
          -2.549820373239367,
          -7,
          -7,
          -3.00552369267328,
          -7,
          -3.147985320683805,
          -2.248463717551032,
          -3.5889660227086835,
          -7,
          -3.080566364476648,
          -3.147614498562027,
          -7,
          -1.8839376639813945,
          -7,
          -7,
          -3.2870175013221017,
          -3.468495024507069,
          -2.5814964717554,
          -2.7794653042814748,
          -2.804877401046314,
          -7,
          -7,
          -4.033705151467852,
          -7,
          -3.9860099318532614,
          -7,
          -7,
          -2.7988663582008604,
          -3.719497016610582,
          -3.623352681537992,
          -2.654351590039098,
          -2.16292458092848,
          -3.5964871337365443,
          -7,
          -3.2029784607370653,
          -7,
          -7,
          -3.7131544018372984,
          -2.3805428677942175,
          -2.361465501680469,
          -3.7200765727681406,
          -7,
          -7,
          -7,
          -3.647399272154069,
          -3.8214480190175304,
          -2.844388408349991,
          -3.040074643230312,
          -2.2438800675491812,
          -3.166133970305109,
          -2.7282105056746593,
          -3.414081572540633,
          -7,
          -2.969815141260817,
          -7,
          -3.442009159140952,
          -7,
          -2.9563818954498764,
          -3.446226401778163,
          -3.332286935410293,
          -7,
          -3.743901550485179,
          -3.400451639956946,
          -3.0576052527843403,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.152855964055146,
          -7,
          -7,
          -7,
          -3.6738499773429494,
          -3.6442415858437287,
          -2.958181497564948,
          -7,
          -7,
          -2.8370971945258145,
          -3.4311224224012324,
          -3.5204049202902374,
          -3.979457318097848,
          -7,
          -7,
          -7,
          -3.3782767419344064,
          -3.190705124231049,
          -7,
          -3.644044492814749,
          -3.682506085939011,
          -7,
          -3.0060991361599037,
          -7,
          -7,
          -7,
          -3.6414741105040997,
          -3.4774830160749435,
          -7,
          -7,
          -3.1288837020997735,
          -7,
          -3.6194064108867776,
          -4.328399992372424,
          -7,
          -7,
          -7,
          -4.326335860928752,
          -7,
          -3.6432354749403233,
          -4.326479236380961,
          -3.8550141033002596,
          -2.9359963484480627,
          -3.8087172420492474,
          -7,
          -7,
          -2.7872683035008583,
          -2.719922888331037,
          -4.038918066030369,
          -7,
          -7,
          -4.325392500017263,
          -3.6243027269124592,
          -2.9635517335740964,
          -3.8493426222695306,
          -7,
          -3.4012626476284873,
          -2.7214155369241313,
          -7,
          -4.0278183112472155,
          -7,
          -4.355144896174567,
          -7,
          -4.02928229515597,
          -3.49578015230518,
          -4.337279516037941,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4700060000867836,
          -7,
          -7,
          -7,
          -2.694635357225439,
          -7,
          -7,
          -3.1518102044229432,
          -4.038540686337457,
          -3.2827440836856336,
          -4.3290315750108395,
          -4.035989756936426,
          -4.074816440645175,
          -4.3404441148401185,
          -3.871611849078623,
          -2.733334614498629,
          -7,
          -2.7736493354356497,
          -3.649707970928423,
          -3.853617103459214,
          -4.3348155125062116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.333729323156598,
          -3.5397211439377028,
          -2.77852640452227,
          -7,
          -7,
          -3.2491418907324983,
          -7,
          -3.812445402872756,
          -7,
          -7,
          -3.889413764042709,
          -3.040763348421484,
          -7,
          -7,
          -7,
          -7,
          -3.192830638664709,
          -3.275119316297735,
          -7,
          -7,
          -3.6691308473733324,
          -4.333970933444835,
          -7,
          -2.7672644940171898,
          -4.350228629754866,
          -7,
          -2.3021270370426237,
          -3.1496718328901663,
          -2.4636253971574824,
          -7,
          -7,
          -3.520614521878236,
          -4.349413526814732,
          -3.1054723361070975,
          -2.7425287512507515,
          -3.8493989373838775,
          -2.848817254910999,
          -4.335076597314406,
          -7,
          -7,
          -4.175772659601536,
          -7,
          -7,
          -3.8663464227496016,
          -3.4406467477280938,
          -2.854384409551896,
          -7,
          -7,
          -4.0389577711393665,
          -3.865597435075882,
          -3.2039163593896003,
          -7,
          -7,
          -3.8794590739205956,
          -4.080518260527118,
          -3.1908567368986396,
          -7,
          -3.435697388325448,
          -2.3717872165703136,
          -7,
          -7,
          -7,
          -3.6288813378134526,
          -7,
          -3.4651224941954424,
          -3.9139550634016746,
          -7,
          -7,
          -2.8989186743447117,
          -3.330118485571775,
          -7,
          -7,
          -2.22407987684108,
          -7,
          -7,
          -4.021478732257528,
          -3.5466660250701842,
          -7,
          -2.8706686043154397,
          -3.8116587737331162,
          -2.984864716816858,
          -2.5451008497880436,
          -7,
          -4.449370390682258,
          -7,
          -7,
          -4.341474094026657,
          -4.5044708624944185,
          -3.3940375664247404,
          -7,
          -7,
          -4.334453751150931,
          -2.957167487189121,
          -7,
          -7,
          -7,
          -3.5653558117307824,
          -7,
          -2.8514950644672523,
          -4.0463000196529695,
          -7,
          -7,
          -7,
          -4.448876295154121,
          -7,
          -7,
          -3.1338538323631155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.327297617895854,
          -7,
          -3.683272236315922,
          -3.629409599102719,
          -3.694934085342246,
          -7,
          -3.71291894805983,
          -3.0767729606871117,
          -7,
          -3.8014551636613825,
          -3.6885799830542143,
          -7,
          -7,
          -7,
          -4.04958624131185,
          -3.562530768862261,
          -4.045146877757589,
          -3.13930174154602,
          -7,
          -3.3595767940674306,
          -7,
          -3.1906265348970964,
          -4.051962449783047,
          -3.2482389961733467,
          -7,
          -3.908980689485702,
          -7,
          -4.41982362360833,
          -7,
          -7,
          -7,
          -4.331305798553269,
          -3.1856088078847637,
          -3.4545399849648186,
          -7,
          -4.0603767213953565,
          -3.4899584794248346,
          -3.4007263285869342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.33209492844608,
          -3.5549885839573387,
          -4.387140569465301,
          -2.6677343311128334,
          -2.423695121216955,
          -7,
          -7,
          -3.553417750819333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4210579070373512,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7053675809749085,
          -7,
          -2.855748283000016,
          -3.587807143622317,
          -4.349199794429999,
          -7,
          -7,
          -2.9610834419339636,
          -3.399865929708076,
          -2.212115371138457,
          -7,
          -3.0174990966378847,
          -4.035909798456609,
          -7,
          -4.328216457500718,
          -3.6373181507329417,
          -2.8350059725018575,
          -2.848262446579062,
          -3.5076366460222475,
          -3.438621448045396,
          -3.4417540323451767,
          -4.032940937780854,
          -7,
          -7,
          -4.369790824030776,
          -7,
          -7,
          -3.3276041138143158,
          -7,
          -7,
          -4.347486138076573,
          -7,
          -2.3113299523037933,
          -3.421364580221776,
          -4.341157437445437,
          -7,
          -7,
          -2.7768603700505596,
          -2.687728795861634,
          -7,
          -3.25784214067938,
          -4.3243030374868345,
          -7,
          -4.387852352763043,
          -3.749040268703457,
          -3.567864134341705,
          -4.375791597685192,
          -7,
          -7,
          -7,
          -3.5137501500818233,
          -2.937921285521538,
          -3.123976018280717,
          -7,
          -7,
          -7,
          -3.5157745272157848,
          -3.6936038520721226,
          -7,
          -7,
          -4.364156856122531,
          -7,
          -3.656059852021028,
          -3.484320180532331,
          -2.7726457370988777,
          -7,
          -3.6398847419163043,
          -2.9606997475594645,
          -7,
          -3.1081937454828905,
          -3.1469802773754947,
          -3.162173680246885,
          -3.7321323001969113,
          -3.4271126760547097,
          -3.263757868359468,
          -3.57826253807072,
          -7,
          -4.337339439388419,
          -7,
          -3.601824684748978,
          -3.5221833176186865,
          -4.411939417524044,
          -7,
          -7,
          -7,
          -2.6706244552094285,
          -7,
          -7,
          -7,
          -4.397418542351348,
          -7,
          -3.2418203185180303,
          -7,
          -7,
          -3.285833056152534,
          -3.321238576631269,
          -3.145462789979763,
          -2.8484706351194125,
          -2.9940518573330643,
          -2.7296092121055566,
          -2.35145029399841,
          -2.2814982124294234,
          -2.6321046372876338,
          -2.5110983073046955,
          -3.6902669794624976,
          -3.530060889683707,
          -2.6847975028662603,
          -2.7352794480604565,
          -3.0434215987515607,
          -2.466857181962985,
          -2.682744445583209,
          -3.184875061321418,
          -3.1524829269941343,
          -3.0943546489622813,
          -3.129689892199301,
          -2.605305046141109,
          -3.1629182646528187,
          -2.8219766055687945,
          -2.600894204894378,
          -2.7822752388298224,
          -3.0483627882402398,
          -2.84609443527844,
          -3.8800510030033712,
          -2.262967172383463,
          -2.940354590418678,
          -2.7488412845235115,
          -2.7788221050942195,
          -2.9336559786575473,
          -3.2721124722621524,
          -2.889608468886824,
          -2.8343431524801153,
          -2.86207795289074,
          -2.7820715967043443,
          -2.651384140518479,
          -4.035949779536674,
          -2.801656065740837,
          -3.1818562864281845,
          -3.450495446659433,
          -2.5840353300734824,
          -7,
          -3.2434578228326734,
          -2.1585935454352914,
          -3.704236337308788,
          -3.896801697664922,
          -2.620027365870543,
          -2.6251609671120715,
          -2.538527803450734,
          -7,
          -2.625321558245327,
          -2.5072131388836794,
          -7,
          -0.8127436357743372,
          -2.9114929941425376,
          -4.100060223931153,
          -7,
          -3.0606245045746627,
          -2.20705239464774,
          -3.0001274730417,
          -4.327542831932522,
          -3.803047210491129,
          -4.028184770141744,
          -2.979218596375799,
          -4.424080882717048,
          -3.173719779362857,
          -3.3973248795188713,
          -3.2065325725278244,
          -4.323231468114774,
          -3.4139071836972685,
          -2.8635424688134687,
          -3.1530013881396495,
          -3.3483933771587093,
          -1.9523585217464556,
          -2.7755538165527383,
          -3.2421489580346923,
          -2.8825755074974517,
          -4.334614571179395,
          -2.624600317850178,
          -2.8183280278667078,
          -2.6737254469058893,
          -3.5932789192578536,
          -7,
          -2.8958679123662567,
          -3.58167949072423,
          -3.4287825114969546,
          -3.7234761958641114,
          -7,
          -7,
          -7,
          -3.0290792589288484,
          -2.5565996215786173,
          -3.659136240870397,
          -2.607442837452188,
          -7,
          -3.873998355018009,
          -3.151114367869422,
          -3.582915199370299,
          -7,
          -7,
          -3.302713794348007,
          -7,
          -2.9555884130934214,
          -3.350159881452703,
          -4.332640410387462,
          -7,
          -3.530250939366719,
          -7,
          -3.3211494758498192,
          -3.3830969299490943,
          -3.2897713227931304,
          -4.423769988626339,
          -7,
          -7,
          -4.349277527467955,
          -3.1471851128693182,
          -7,
          -3.374536856119436,
          -7,
          -7,
          -3.6020527530262783,
          -3.049599606087976,
          -1.8344561795716325,
          -7,
          -4.367467742117974,
          -3.1859296516724465,
          -7,
          -3.290591042549338,
          -7,
          -3.868428902768081,
          -2.473737803040008,
          -7,
          -4.024916464556482,
          -7,
          -3.8677031332700977,
          -3.1992236364745255,
          -3.6320926962641336,
          -3.3474275986185416,
          -3.8623898110266452,
          -7,
          -3.5052081388648544,
          -2.935291288456696,
          -3.110890197740769,
          -7,
          -3.2661593022103284,
          -3.5315701457962727,
          -3.3988462553946235,
          -2.6386661486929914,
          -4.331204524275846,
          -7,
          -3.675228253593064,
          -3.7532574074565974,
          -2.816171405839661,
          -3.670561251605292,
          -3.6101986574867384,
          -7,
          -3.633407852121307,
          -3.595496221825574,
          -7,
          -3.30838379618209,
          -4.329214765805725,
          -3.878636673026517,
          -3.0863921912039465,
          -3.7407770455884624,
          -7,
          -2.9493086704742653,
          -2.692116792460456,
          -3.7902675666555816,
          -4.358810172458563,
          -3.706888394981618,
          -7,
          -7,
          -4.341454309753056,
          -3.0636529945906887,
          -2.9368256236283132,
          -7,
          -7,
          -7,
          -7,
          -3.257178408417606,
          -2.6039279274630815,
          -3.6371093051016494,
          -3.006205517657194,
          -2.859186349350555,
          -4.355164066515204,
          -3.5900612308037427,
          -3.111988908987206,
          -3.7008940037108062,
          -3.4645081766878896,
          -7,
          -3.6495879611004387,
          -7,
          -3.7947493812264192,
          -3.622576647353478,
          -3.705521613422667,
          -7,
          -7,
          -3.7365956742507382,
          -2.9747131347031917,
          -7,
          -7,
          -4.322529394341456,
          -7,
          -7,
          -7,
          -3.848620117434134,
          -2.93703230311591,
          -7,
          -3.6538490123638514,
          -7,
          -4.332519251373731,
          -7,
          -7,
          -7,
          -7,
          -3.5161385767170743,
          -3.442675706122545,
          -3.1609901905696485,
          -2.7467169895057046,
          -3.6996990068748015,
          -4.333346498424387,
          -7,
          -3.174768266934489,
          -7,
          -7,
          -3.12469646635406,
          -7,
          -4.333709182897272,
          -3.4237918130180067,
          -2.7016055229341567,
          -4.062337507279505,
          -7,
          -3.8484149324724117,
          -3.403234944699574,
          -7,
          -2.725059716266424,
          -3.5674772960726626,
          -7,
          -7,
          -3.350441856535061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.782293422809544,
          -4.606679571415898,
          -3.5246557123577773,
          -7,
          -7,
          -2.484731884687293,
          -3.5514499979728753,
          -7,
          -7,
          -7,
          -3.3209766773428235,
          -7,
          -3.1119529215825246,
          -3.9647780220223763,
          -7,
          -3.788875115775417,
          -3.1597691998503703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.368658712392227,
          -4.57372425780422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.659345635746177,
          -7,
          -7,
          -7,
          -3.844946010338845,
          -7,
          -7,
          -2.71755163219766,
          -3.446847710155809,
          -3.29284654660978,
          -7,
          -7,
          -3.6722826247889206,
          -7,
          -3.2127201544178425,
          -3.372085742489799,
          -7,
          -3.3770784782188477,
          -7,
          -3.3729120029701067,
          -7,
          -3.329499575762843,
          -7,
          -7,
          -7,
          -7,
          -3.398634324538392,
          -3.2392160331698863,
          -3.7742833327557155,
          -7,
          -7,
          -3.3047058982127653,
          -7,
          -7,
          -7,
          -7,
          -2.667349166419893,
          -3.5986263846416544,
          -7,
          -7,
          -7,
          -7,
          -3.177295960194052,
          -2.6481159567559627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.097344090487375,
          -7,
          -7,
          -2.943235703699528,
          -3.6960941599952233,
          -2.8731388810370233,
          -7,
          -7,
          -3.318272080211627,
          -7,
          -3.5935075893317654,
          -2.612213113865918,
          -7,
          -2.4922853379102463,
          -7,
          -7,
          -7,
          -4.038222638368718,
          -7,
          -3.2899232395240046,
          -7,
          -3.2845811128217504,
          -2.989004615698537,
          -7,
          -7,
          -7,
          -7,
          -4.110101275275583,
          -7,
          -7,
          -7,
          -7,
          -3.2860071220794747,
          -7,
          -4.215267343431722,
          -3.209045615689968,
          -7,
          -7,
          -7,
          -5.000559878837396,
          -7,
          -7,
          -3.7444494574467986,
          -7,
          -3.398981066658131,
          -3.3768607169371743,
          -2.747217536139993,
          -7,
          -7,
          -4.094174043697868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2410125337870626,
          -3.5358635207124522,
          -3.197528655522771,
          -3.5010592622177517,
          -2.798650645445269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.633893505265488,
          -7,
          -7,
          -7,
          -3.0972094232108174,
          -7,
          -7,
          -7,
          -3.4778444763387584,
          -7,
          -2.7007037171450192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.039618480853048,
          -7,
          -7,
          -7,
          -3.4109458586877746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4101443047027806,
          -7,
          -7,
          -3.799939493279297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.460822698802402,
          -7,
          -3.486642969023512,
          -7,
          -3.7178368674869255,
          -3.240798771117331,
          -3.0479605907788403,
          -7,
          -4.126553477961279,
          -7,
          -7,
          -7,
          -3.496929648073215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5938396610812715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.123851640967086,
          -7,
          -4.63503950719497,
          -7,
          -3.35869609957381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203984244420126,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.648954928341813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.575014554582114,
          -7,
          -7,
          -7,
          -7,
          -3.3454325474991466,
          -3.5509617522981762,
          -3.0078818364351347,
          -7,
          -4.723562385355725,
          -7,
          -3.3402457615679317,
          -7,
          -4.053846426852253,
          -3.3679147387937527,
          -3.424514126822372,
          -7,
          -3.9249508889156104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6221103603612193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8666417205660397,
          -7,
          -7,
          -7,
          -7,
          -3.9061543387262456,
          -2.821747409869795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3706056009381484,
          -7,
          -7,
          -7,
          -2.87989832433001,
          -3.5886045866476044,
          -3.171628957978357,
          -7,
          -7,
          -7,
          -7,
          -3.7513560997253936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.362293937964231,
          -3.0340265237751103,
          -7,
          -7,
          -7,
          -7,
          -4.564955891631275,
          -3.412830002562326,
          -4.344657485698993,
          -7,
          -7,
          -5.024850846911755,
          -3.57153414742667,
          -7,
          -7,
          -7,
          -3.693463127219531,
          -7,
          -3.8298824464434933,
          -7,
          -7,
          -7,
          -2.900913067737669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3466528340631028,
          -7,
          -7,
          -4.611383384708976,
          -4.782716219408081,
          -7,
          -3.4546162237926987,
          -4.122911830365234,
          -4.098591815007755,
          -7,
          -3.402422600478645,
          -3.3201575182037963,
          -3.5628477721477982,
          -7,
          -4.3350364406355135,
          -4.731024379815688,
          -7,
          -3.694638098784492,
          -4.358448838820213,
          -3.8418865974069525,
          -4.152023201102708,
          -7,
          -7,
          -7,
          -4.691611874214416,
          -7,
          -3.7053015503412405,
          -3.1521965823342093,
          -7,
          -4.672153296245931,
          -3.6236627073562047,
          -7,
          -3.103076438493488,
          -7,
          -3.6111920608684343,
          -3.75077829865311,
          -7,
          -7,
          -7,
          -7,
          -3.8726806071519295,
          -7,
          -2.6733793415503886,
          -3.426185825244511,
          -2.4795816475112002,
          -4.770557474850995,
          -7,
          -7,
          -3.2434578228326734,
          -7,
          -2.7137997846022897,
          -7,
          -7,
          -7,
          -2.6603092564193918,
          -3.4147271193671846,
          -7,
          -2.554685971338815,
          -1.4532725187258406,
          -7,
          -2.73917663191073,
          -7,
          -7,
          -7,
          -3.998067439033124,
          -2.872937535397121,
          -5.230572379710766,
          -7,
          -3.8035936647713444,
          -7,
          -4.059449812507961,
          -7,
          -3.9306858969758305,
          -3.8265930539340482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.449441664614968,
          -2.2377112577136704,
          -4.304231942185673,
          -2.581318327670128,
          -7,
          -2.8356759403257485,
          -4.264042955041059,
          -2.2403770800020877,
          -4.873308973962765,
          -7,
          -3.2542257208262924,
          -4.0214993986774745,
          -4.326909078957348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.945327877376854,
          -3.273579945676206,
          -2.8249064713021124,
          -7,
          -7,
          -3.7685826086289427,
          -3.592731766393962,
          -7,
          -7,
          -3.371744956775117,
          -7,
          -3.765864901136174,
          -2.9017695878361724,
          -7,
          -7,
          -7,
          -3.2518814545525276,
          -2.829946695941636,
          -7,
          -7,
          -7,
          -7,
          -3.406199423663313,
          -7,
          -3.2064660628531048,
          -7,
          -3.769266522533784,
          -7,
          -7,
          -7,
          -3.844301102714822,
          -3.953082843912086,
          -7,
          -7,
          -3.4032492455205543,
          -7,
          -2.942900541140294,
          -7,
          -3.190471770573345,
          -3.138753678977215,
          -7,
          -7,
          -7,
          -3.4865721505183562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.048053173115609,
          -4.047780924741197,
          -7,
          -7,
          -3.217834747530156,
          -3.3761205256094518,
          -7,
          -3.8885445298732684,
          -7,
          -7,
          -7,
          -3.5573868820595074,
          -3.486624537921495,
          -7,
          -3.431524584187451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2586372827240764,
          -3.5922878159521305,
          -7,
          -7,
          -3.283696889741305,
          -3.100606831566212,
          -7,
          -7,
          -4.035189508908448,
          -7,
          -7,
          -7,
          -3.184691430817599,
          -3.7831886910752575,
          -7,
          -7,
          -7,
          -7,
          -3.784795537856762,
          -7,
          -7,
          -7,
          -3.702762777554604,
          -7,
          -7,
          -3.564133223842105,
          -7,
          -3.0274515428724906,
          -7,
          -3.0356965038452106,
          -7,
          -3.2920344359947364,
          -3.7861122837198264,
          -7,
          -7,
          -3.2132520521963968,
          -7,
          -3.818110374400107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.892984550710717,
          -7,
          -7,
          -7,
          -7,
          -3.3289908554494287,
          -7,
          -7,
          -7,
          -3.29269900304393,
          -3.1934029030624176,
          -3.200759326791928,
          -3.8611160441613954,
          -7,
          -7,
          -7,
          -7,
          -3.0757293997408985,
          -3.2780673308886628,
          -3.518105774529618,
          -3.1032904715577496,
          -3.0970836960665213,
          -3.3832766504076504,
          -7,
          -7,
          -7,
          -7,
          -3.2706788361447066,
          -7,
          -7,
          -2.890281261927012,
          -7,
          -7,
          -3.8039626383243994,
          -7,
          -7,
          -5.234777883233506,
          -4.059040586854335,
          -5.2379732962172065,
          -3.9583677010595633,
          -4.4570437728006915,
          -3.855604956189789,
          -2.2745287875181255,
          -3.2166590965381316,
          -7,
          -4.758068714620923,
          -1.7277239847974963,
          -2.1651070250386395,
          -3.668526947558438,
          -4.935023327267549,
          -7,
          -4.058924316651292,
          -4.193402903062418,
          -1.895847650950953,
          -3.661487467656179,
          -7,
          -2.928230055583499,
          -1.5946023431755172,
          -3.8747288064840673,
          -4.281235435173627,
          -4.933659351805472,
          -3.3141657830188542,
          -3.574119376510415,
          -3.820600545981254,
          -2.4655151160777895,
          -4.0903739568450685,
          -4.933972940101611,
          -7,
          -4.3906071186911975,
          -3.7913748112350265,
          -4.934309037350079,
          -3.0282892554324534,
          -4.331662602150657,
          -3.682879314925225,
          -3.2439007156385253,
          -1.9451744228401158,
          -4.193741688019228,
          -3.980495747537131,
          -2.47194779850952,
          -4.195419072502522,
          -3.194814042376054,
          -4.758404667212629,
          -4.935504746707883,
          -3.628645567732361,
          -3.774428864606044,
          -3.3291517006052955,
          -1.743560429664772,
          -3.749100187575694,
          -2.6894426659813675,
          -3.0636742407951223,
          -3.956913696991375,
          -4.157020844572027,
          -3.3425426075024336,
          -4.634288295838262,
          -4.5375748144154935,
          -4.759463867212711,
          -7,
          -3.874282612188991,
          -3.3912805950499947,
          -2.474819422014234,
          -4.389995895119275,
          -5.23491444587379,
          -3.4915042671197116,
          -4.933720063988503,
          -3.1709836240531404,
          -3.8825245379548803,
          -4.536050627244502,
          -3.5773943798662415,
          -2.104594825392442,
          -4.757841230761179,
          -3.615872429541114,
          -7,
          -4.332279357797102,
          -2.756616605608402,
          -3.557329216984655,
          -4.53655844257153,
          -5.234641277637988,
          -3.2956795321953303,
          -4.634076546929765,
          -3.058842915637728,
          -2.602749911220061,
          -3.6045425009088827,
          -7,
          -1.0662335505085947,
          -2.6221765574101847,
          -1.9583311604617466,
          -3.836855579548605,
          -4.63255345397555,
          -2.9865440595674193,
          -2.9771354402245875,
          -2.9787046199000207,
          -2.867310817312023,
          -3.3715485984422466,
          -2.370579019237581,
          -5.236290318561915,
          -7,
          -7,
          -2.931547037066958,
          -4.757714799332841,
          -3.22208086808631,
          -4.123359044078283,
          -3.0703874932053874,
          -2.2349232022351155,
          -4.281674608555453,
          -4.536404392209844,
          -3.6456590285707335,
          -3.3337796697190534,
          -2.536594192858174,
          -3.914161753873292,
          -7,
          -3.747547120072836,
          -3.6511561995853357,
          -2.8988715494355066,
          -4.391396394500959,
          -2.9051695198309795,
          -1.1812620732648487,
          -5.235934776600263,
          -4.551837762017642,
          -4.935013239477764,
          -3.1404790343114897,
          -3.805437923313723,
          -3.0042438678517387,
          -3.303794175527941,
          -7,
          -4.634051331848015,
          -2.3692685542924994,
          -3.2674937710653538,
          -5.234547652694329,
          -4.331649954552743,
          -2.8135451686201822,
          -7,
          -7,
          -7,
          -4.280757898293844,
          -4.234666578212518,
          -2.231604854564069,
          -3.3774047104492237,
          -2.158923013122718,
          -2.910177095137938,
          -3.3549748484830855,
          -3.1246501914547884,
          -5.234808234198132,
          -4.633228517359263,
          -3.7184236754355378,
          -3.6593051923304962,
          -2.4626905274261266,
          -7,
          -4.390304140143775,
          -4.1947690667173525,
          -2.3463189508318423,
          -4.757646511054261,
          -4.933578389023442,
          -3.5057703147997277,
          -3.5381663917586375,
          -4.757922127563481,
          -3.3678266846246245,
          -3.9824948572205137,
          -4.239849820690192,
          -4.540607234292212,
          -4.124265894402821,
          -3.598897456689798,
          -4.93685792517924,
          -4.457652330856984,
          -1.7698732638523096,
          -4.194155961022921,
          -7,
          -7,
          -4.9352678844590505,
          -5.235482995106691,
          -4.281038420091887,
          -4.632728009129432,
          -2.8058356979612458,
          -4.121471456178261,
          -3.253687674240615,
          -4.535807878897487,
          -2.2984009709195474,
          -1.5997196899125223,
          -3.5037982464619217,
          -3.0041087957295773,
          -3.099556441287455,
          -4.006871077377176,
          -3.4833895781053097,
          -3.2830045605653697,
          -3.212443912811824,
          -4.032827699694245,
          -3.958860503280292,
          -2.66149717917983,
          -3.9569036002309135,
          -3.405996818295181,
          -7,
          -1.951185252252834,
          -4.460409174486291,
          -2.828409743123176,
          -7,
          -3.2014826209704887,
          -7,
          -3.390201345934264,
          -4.934879554137214,
          -4.158485625272292,
          -4.934422695599237,
          -4.758687373229256,
          -3.4836954821069357,
          -4.125218432391805,
          -7,
          -3.3308044475799257,
          -2.350363247273812,
          -2.72075606342588,
          -7,
          -4.933659351805472,
          -4.194027174554883,
          -4.757757790148306,
          -7,
          -4.934654971046216,
          -7,
          -5.235917117994777,
          -2.4141641972154555,
          -3.3794992284803076,
          -2.832419348499102,
          -1.5079704602782635,
          -5.234578019752476,
          -4.332440984876183,
          -3.758609142659744,
          -3.458504393116643,
          -7,
          -7,
          -4.3938483531306005,
          -3.5563979948413116,
          -4.936770021230186,
          -7,
          -7,
          -5.235045910065424,
          -4.758192516865709,
          -7,
          -5.234992823547606,
          -4.760874638052189,
          -2.1823385085466485,
          -4.933616342206829,
          -4.23470958580684,
          -7,
          -4.390155098146551,
          -4.33308437114365,
          -4.28175784998152,
          -7,
          -4.391096487376276,
          -3.713994267660644,
          -3.5056498329258434,
          -2.844317521748743,
          -2.6458666533498327,
          -3.1168566946868985,
          -4.933866750067607,
          -5.234641277637988,
          -2.393663044735808,
          -3.1968265991549494,
          -2.074214113604477,
          -4.634202600383421,
          -2.4991534837660314,
          -3.6565596501083624,
          -4.15608957773648,
          -5.235435013044649,
          -3.359799471686457,
          -2.2557597558295988,
          -2.5478473545856404,
          -2.9011006530221057,
          -2.942289137919038,
          -3.2780698466783362,
          -3.5924871452980516,
          -4.933985580042992,
          -4.635139291129992,
          -3.793511005792858,
          -4.126346240058687,
          -7,
          -4.05924272179019,
          -5.237257129870853,
          -7,
          -4.635792770070686,
          -5.234676698029644,
          -3.2011238972073794,
          -2.8123440918353033,
          -3.9359327868037766,
          -3.5870146381512305,
          -4.15839265038712,
          -1.4214863526530293,
          -2.719833155981937,
          -4.934091741029214,
          -2.717245161243629,
          -4.632877210811569,
          -4.282100737285847,
          -3.780741787862935,
          -3.5138129077677016,
          -2.391460040062417,
          -3.0449390290609553,
          -3.9934484777722394,
          -4.9374175814771375,
          -3.8801447410266907,
          -3.393933520699538,
          -1.3471535638118464,
          -2.5621022515114826,
          -5.234701996540841,
          -5.234534999126725,
          -7,
          -3.18275152356222,
          -2.948522186033202,
          -4.633524001321515,
          -5.236035669145632,
          -4.063888540530298,
          -4.536361450403717,
          -3.807372143360144,
          -4.332488956338184,
          -3.0439032795531493,
          -4.457995373496883,
          -3.8749479543989533,
          -2.9463554862980423,
          -3.163699460691016,
          -2.040840249302447,
          -2.463013153914313,
          -2.254843910889203,
          -4.634119409209181,
          -2.869452666025396,
          -2.6327946083041307,
          -3.1650651966570837,
          -7,
          -3.9354493224404465,
          -7,
          -3.1481795768335057,
          -3.5672592416964437,
          -3.25060233715025,
          -3.7202044225667583,
          -4.757714799332841,
          -5.234532468368964,
          -3.145810203973303,
          -7,
          -5.236055844842364,
          -4.537285025199807,
          -4.098433572355451,
          -4.934500976204146,
          -2.161216268492156,
          -7,
          -5.234729823201154,
          -2.725231158078876,
          -2.897428686237337,
          -3.3804608434865733,
          -2.886957591040489,
          -2.7842439615296883,
          -2.1229971975092385,
          -2.1829278707887827,
          -1.8749933830032488,
          -2.0243990147643496,
          -2.455275875899563,
          -3.436999507587265,
          -2.776614663432653,
          -2.592071332845231,
          -2.5550186319677652,
          -1.9962281749156106,
          -3.4780973196422216,
          -2.262992219097479,
          -2.19155526331211,
          -3.488863681943735,
          -2.9895792040529185,
          -4.128958182374678,
          -2.6562304897937272,
          -2.664125798067482,
          -2.097787945361475,
          -2.327137353740817,
          -3.621699974221918,
          -2.6780196452952088,
          -2.8146330590485418,
          -3.694898389725206,
          -1.579555753108801,
          -3.196185555942593,
          -2.5616466373074993,
          -3.0450899717952025,
          -3.0665239222329292,
          -3.733109454087558,
          -3.2671243008085686,
          -3.519592243525824,
          -2.5980824712218,
          -2.629180391564149,
          -1.8712949403042993,
          -4.391406471815851,
          -2.363943628997153,
          -2.1947223439203243,
          -2.6861758282690205,
          -2.2447685124090837,
          -2.1585935454352914,
          -2.7137997846022897,
          -7,
          -3.219846386024361,
          -3.879534666600482,
          -2.786549875081608,
          -1.7204902741566295,
          -1.8246625809658572,
          -4.459432698349686,
          -1.8541116197418506,
          -2.3713068124942698,
          -7,
          -2.4023884497671752,
          -3.1276252821015027,
          -3.8833182081550213,
          -4.759426083090233,
          -1.9576295382648627,
          -0.5227568413154664,
          -2.25148193134294,
          -4.536361450403717,
          -3.4530494125334665,
          -4.457387296278139,
          -1.9726040220056356,
          -3.668552656897619,
          -2.384066517495708,
          -2.8962196591822815,
          -3.6822700751862243,
          -4.63274571370413,
          -2.952373688836708,
          -2.1213684437968094,
          -2.308277941800968,
          -3.132373881522234,
          -1.5814191386454624,
          -1.630903483314324,
          -2.0907098018780537,
          -1.3994450492106825,
          -4.634157225354798,
          -1.7180762856263596,
          -2.048935890938645,
          -1.8200791452840763,
          -2.302756357937335,
          -4.390498575676762,
          -2.7271730084083075,
          -2.2106312850861856,
          -2.9495564322620074,
          -4.93408415896217,
          -5.234772824533177,
          -7,
          -7,
          -3.6780678315733484,
          -1.5818406616841054,
          -3.6158148299730293,
          -2.2111068681045203,
          -4.235159645042988,
          -3.5138103976343795,
          -2.7466702927662827,
          -2.6827758928984187,
          -4.335480467368298,
          -4.332137884743325,
          -3.190012065678453,
          -4.9338768645229125,
          -2.487714328217087,
          -3.1226229161409838,
          -4.235939821784239,
          -4.937901366175979,
          -2.4723137566575435,
          -4.034615924863207,
          -3.137257654522995,
          -4.759484017400655,
          -4.121847611906487,
          -3.2702864641306397,
          -5.235932253986295,
          -4.281949496845566,
          -4.636023765759377,
          -3.216118577374879,
          -7,
          -3.0677833511916037,
          -7,
          -4.633051635913091,
          -2.974439403782802,
          -1.6694289158435365,
          -1.8319076454770165,
          -5.234653928109494,
          -3.7351870627759025,
          -2.9400762423001052,
          -4.759436159177652,
          -3.3539861346639293,
          -7,
          -3.5746451400686006,
          -2.2563819751372423,
          -7,
          -4.934124595123546,
          -4.637532256267815,
          -3.5560586443269586,
          -2.6960319843565825,
          -4.194365473068565,
          -3.746393108385608,
          -3.731553512580534,
          -4.457856675648477,
          -3.594593426642608,
          -2.2896782179173534,
          -3.341730044534258,
          -4.757712270328809,
          -3.2003305651247738,
          -3.2919372792280885,
          -3.9832753825780216,
          -2.379252320088521,
          -4.934771062200509,
          -4.934124595123546,
          -3.227243781503063,
          -3.7916054455762533,
          -1.7364954278650726,
          -3.240294587212841,
          -2.6057463605514704,
          -3.8061121101690913,
          -4.28168974454697,
          -3.7457601584924167,
          -4.934778632284937,
          -3.3906334089447348,
          -4.758427391461484,
          -3.475237729405027,
          -2.867950913934925,
          -3.7186123935535487,
          -5.234661518215525,
          -2.897671264567575,
          -1.798681228722877,
          -3.845861726455298,
          -4.461165750357359,
          -2.8988821501556634,
          -3.8257505813480277,
          -3.904592609709625,
          -3.8056015349439924,
          -2.8053644286916284,
          -2.5003513413022445,
          -4.538314788965302,
          -4.060760777022355,
          -7,
          -5.234651398044672,
          -2.8139581849717996,
          -3.6965236329297477,
          -3.5286142667822133,
          -2.4888974345488073,
          -2.29209349276241,
          -3.5951954985716172,
          -2.991483921567074,
          -2.809587153336223,
          -3.621542245011795,
          -3.2763019240069164,
          -4.93483918821054,
          -3.7327203631568318,
          -7,
          -3.227011105616783,
          -3.315288564340599,
          -3.611982518295699,
          -4.933687179276238,
          -3.4669053026275845,
          -3.856429290988121,
          -2.505047454180356,
          -4.391169593074347,
          -7,
          -5.234734882402388,
          -5.2347070560662425,
          -4.933967884022049,
          -7,
          -4.456962904242507,
          -2.788514525238426,
          -4.091611693937414,
          -4.2385328425772455,
          -4.934670115130671,
          -4.235924686056476,
          -4.536194694903611,
          -4.089347383665818,
          -4.6341622672587635,
          -4.633738543145729,
          -3.426458707426532,
          -3.982324008676067,
          -3.0823459420467962,
          -3.6349783452242814,
          -4.290541610857977,
          -3.804578580195262,
          -4.75759086081304,
          -3.6291310202406026,
          -4.08962255158434,
          -7,
          -2.9858538902073053,
          -4.060047800629704,
          -4.156882164439376,
          -3.32247585881818,
          -3.777764206446543,
          -4.198507132018743,
          -4.757841230761179,
          -4.456937629729642,
          -4.008677806857828,
          -5.234825937948012,
          -3.676436539951696,
          -3.82255531024074,
          -5.236509550399869,
          -5.234565367069626,
          -3.037205088564478,
          -7,
          -7,
          -7,
          -3.9876662649262746,
          -2.7316693318286362,
          -7,
          -7,
          -7,
          -3.3590428498964116,
          -3.8535156967569284,
          -7,
          -7,
          -3.247640144480507,
          -3.450112193286101,
          -3.7157944980035067,
          -7,
          -7,
          -3.207005670893413,
          -7,
          -3.167275127208233,
          -2.151110436197178,
          -7,
          -3.5354207180561734,
          -2.9252392145091695,
          -7,
          -3.692097489441729,
          -7,
          -3.348927619178392,
          -4.020112569565467,
          -3.297059824075058,
          -2.882055227035669,
          -3.5338991007965945,
          -7,
          -7,
          -7,
          -3.2666627971449946,
          -3.290835646600807,
          -3.1295466788486532,
          -7,
          -3.7547304690237535,
          -7,
          -3.0008175943550923,
          -3.6862339584582546,
          -7,
          -4.050959459771651,
          -7,
          -2.9243439084088356,
          -3.9935244031670654,
          -3.53343309682066,
          -7,
          -4.0178677189635055,
          -4.035269600099436,
          -2.4237999078399373,
          -3.7734938922709707,
          -2.72670174542351,
          -3.7078255683322316,
          -7,
          -3.160339883036565,
          -3.374565060722765,
          -7,
          -4.011147360775797,
          -4.011655010724778,
          -7,
          -3.7025166974381505,
          -2.7435779267754823,
          -2.1073754466862216,
          -7,
          -7,
          -3.0229155215247347,
          -7,
          -2.9562885174336575,
          -2.846630059514878,
          -7,
          -7,
          -3.2090303669607603,
          -7,
          -3.15175279223674,
          -7,
          -7,
          -2.7877752377008136,
          -3.746244871720198,
          -7,
          -7,
          -2.89726044333122,
          -3.703033304733686,
          -2.7426537306498884,
          -3.4008141922675588,
          -2.8609764989868767,
          -7,
          -2.8368059648499044,
          -3.621280167550415,
          -4.29130223575985,
          -7,
          -7,
          -3.4675341138495925,
          -3.7353992699626937,
          -3.4584867637982066,
          -2.7297383385189824,
          -7,
          -2.9333560385709307,
          -7,
          -3.979548374704095,
          -7,
          -2.2990902273367504,
          -3.9813201732591073,
          -3.2814500293791102,
          -3.2458004570397443,
          -2.4507403361535487,
          -2.246205705248979,
          -7,
          -3.5137501500818233,
          -3.7158780483080935,
          -3.5455132852244566,
          -2.7507698054481593,
          -7,
          -7,
          -7,
          -3.2547206696009736,
          -3.2229114697957306,
          -7,
          -2.6458223899269093,
          -3.517651074521444,
          -7,
          -3.9034698285071703,
          -4.00238207493276,
          -3.600678509318092,
          -7,
          -3.4725370532620774,
          -3.272835795025385,
          -7,
          -4.003718963823115,
          -2.4642696995224282,
          -7,
          -7,
          -3.9800488450649567,
          -4.033705151467852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5303984448232404,
          -2.6014865855147615,
          -3.326652341050451,
          -4.14370162942477,
          -7,
          -3.7445276734725663,
          -7,
          -3.5121505369220305,
          -4.020029633542699,
          -7,
          -2.8549130223078554,
          -7,
          -3.9917132757130895,
          -7,
          -2.8351453800598083,
          -7,
          -7,
          -4.041471640613747,
          -3.7235788004625765,
          -7,
          -3.5481026604586483,
          -3.2537417373268314,
          -2.543051622006951,
          -2.0431695751374144,
          -2.694844413746504,
          -1.8133711181752914,
          -1.7993405494535817,
          -7,
          -2.890928982172711,
          -2.7891839552635496,
          -3.979092900638326,
          -3.4988157877634483,
          -2.39050430210634,
          -1.9496158605591523,
          -7,
          -3.9805487393597705,
          -2.94019263553191,
          -3.9924651478080433,
          -3.5463884121954212,
          -3.9804578922761,
          -3.554428584722055,
          -2.389380612961912,
          -4.009365898346244,
          -3.4421974643102136,
          -3.4125949311184796,
          -4.024977972095624,
          -3.7575858013465804,
          -4.0297489185668365,
          -3.56177695739487,
          -3.173186268412274,
          -4.029911104912444,
          -3.0111147988652363,
          -7,
          -2.9902436878140852,
          -7,
          -3.6536947953150816,
          -2.6618915263256966,
          -3.714078164981856,
          -3.2878465002495174,
          -2.6762154147284902,
          -3.978500069311459,
          -3.055966089594232,
          -7,
          -2.666680729097877,
          -7,
          -7,
          -3.210140091523844,
          -3.4514794051248616,
          -7,
          -3.2823577252216545,
          -4.025333178524231,
          -2.270895401371112,
          -7,
          -7,
          -3.992376759798803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.820479343292401,
          -3.110185527411162,
          -3.4513450110399573,
          -3.6234345498576377,
          -7,
          -3.3917288224907427,
          -3.6983180735427403,
          -7,
          -7,
          -3.683677298818692,
          -4.049992856920142,
          -4.0326590460399245,
          -3.5542468081661105,
          -3.02123525372655,
          -3.3742441252240405,
          -2.584783378996508,
          -2.8124676978229344,
          -2.89726044333122,
          -3.1383026981662816,
          -1.545383382070007,
          -2.816813757343871,
          -7,
          -7,
          -7,
          -3.687974620034556,
          -3.402820015912672,
          -3.0014740966917324,
          -3.9770831203158528,
          -3.4030776045809015,
          -4.142983554922818,
          -3.7384634394619525,
          -3.5777502315508336,
          -3.1141103565318917,
          -7,
          -7,
          -7,
          -2.52647144918348,
          -7,
          -3.5221933557442147,
          -2.6241101320710367,
          -3.0405663811422534,
          -7,
          -7,
          -3.6906390117159673,
          -3.4310879340564138,
          -3.2091276107865587,
          -2.917051738708869,
          -3.3763031557559207,
          -2.972611176217687,
          -3.7265234583862394,
          -7,
          -2.7040601611790334,
          -2.0907449772627436,
          -2.000704692511774,
          -1.8986117147091868,
          -7,
          -2.6089715095439416,
          -1.864892319838019,
          -2.0964585634020168,
          -3.3332456989619628,
          -7,
          -3.5744942682853273,
          -2.2018229155361007,
          -4.019365574572488,
          -3.469895618975018,
          -4.028693228393916,
          -3.1424406089605474,
          -2.749091866004445,
          -7,
          -3.5499683102108293,
          -7,
          -4.0080889362915775,
          -3.208575708947575,
          -3.4379090355394983,
          -3.479551317993014,
          -3.389839162125274,
          -2.5067640292211575,
          -2.4707758982656967,
          -1.7046012485275561,
          -7,
          -3.817061044059383,
          -3.040602340114073,
          -7,
          -7,
          -3.6749070468191296,
          -3.323870606540509,
          -3.4220314306536217,
          -3.693507108634517,
          -2.17696773661231,
          -4.06628864526571,
          -7,
          -3.7471786713601642,
          -7,
          -3.001641010581909,
          -3.1588792018312803,
          -7,
          -2.8418203302530207,
          -4.004493337547275,
          -3.3768184031718285,
          -3.378190179082691,
          -3.420809805024999,
          -7,
          -2.5796978721407147,
          -3.1146991576799494,
          -3.0974019347178685,
          -7,
          -7,
          -3.9876662649262746,
          -2.8174957822367825,
          -2.9492751746818158,
          -3.253004643647484,
          -7,
          -3.9813201732591073,
          -7,
          -2.9832503071149876,
          -1.9237347161072647,
          -3.7013952690139202,
          -1.9594790127550423,
          -2.636714318834443,
          -2.1486384153958378,
          -2.3653060993655983,
          -7,
          -7,
          -4.083162074006658,
          -4.53283078772188,
          -4.44269921263019,
          -7,
          -7,
          -3.472610197596045,
          -3.9195226242023646,
          -3.5673069327762104,
          -3.4977075869213845,
          -4.268297087223766,
          -7,
          -4.164456954998157,
          -4.788239097382168,
          -5.035629827790439,
          -3.594530662789344,
          -4.48297357411599,
          -3.846777678928908,
          -3.4898647703982753,
          -7,
          -4.471174318307337,
          -7,
          -4.403755191424458,
          -4.445012287887958,
          -3.680133984649043,
          -4.338356873353703,
          -4.483601559279265,
          -4.436035362607869,
          -4.387425422788231,
          -7,
          -3.4553905597931154,
          -7,
          -4.451939869365103,
          -4.177796133292215,
          -3.914660430589222,
          -7,
          -3.626689305465622,
          -4.220055760251341,
          -4.573126994434775,
          -4.085558138243807,
          -3.9223188192407434,
          -1.8788176305132411,
          -3.9019640161341345,
          -2.2698908472038735,
          -2.146128035678238,
          -4.13325141247232,
          -3.704236337308788,
          -7,
          -3.219846386024361,
          -7,
          -1.2964611045050014,
          -2.457762729111166,
          -3.0944538743639973,
          -2.969538119736259,
          -4.028367883697062,
          -3.607037804850964,
          -4.195733648273212,
          -1.6541060757513173,
          -3.8831786174475216,
          -2.4466228563122,
          -2.4526168878277472,
          -7,
          -1.8392162318059182,
          -2.9772139868108893,
          -3.827484243811539,
          -2.4558744716935386,
          -2.22543536518789,
          -3.03906142848015,
          -2.3785742856804393,
          -3.5759091446814137,
          -3.852267278371824,
          -3.1174370252826193,
          -2.7070759915092815,
          -3.281533313857376,
          -2.4453568207946823,
          -2.5299337271288262,
          -2.9558251417989614,
          -4.116441697539312,
          -3.5601629215805253,
          -4.188844146546897,
          -2.9400527111730854,
          -3.7544247892772584,
          -2.6055205234374688,
          -3.4177319539974764,
          -2.2475405745696984,
          -7,
          -1.8879605115175833,
          -7,
          -3.510712529777408,
          -2.572748425547102,
          -3.459241664878082,
          -7,
          -1.9577885519831222,
          -7,
          -3.983581186705791,
          -7,
          -2.961375888020618,
          -2.2233370581702534,
          -2.694282782822322,
          -7,
          -3.562887381293879,
          -2.2836545147247422,
          -4.060508975605298,
          -1.6720978579357175,
          -3.68761812957177,
          -2.6725447396234787,
          -3.9824973691977124,
          -2.5771329918429693,
          -2.6708089041495477,
          -3.5240064455573727,
          -7,
          -3.309281663075056,
          -3.1437952038457664,
          -1.8844112025069455,
          -3.710878617685173,
          -3.99899997221832,
          -2.833958011421064,
          -7,
          -4.00552369267328,
          -3.735119634081872,
          -2.559976996012837,
          -7,
          -2.9051885225908243,
          -7,
          -3.9863237770507656,
          -3.907921679343844,
          -2.9627937383396477,
          -3.847609671299165,
          -7,
          -3.7717344253867693,
          -1.6866618002274048,
          -7,
          -2.5193174451614886,
          -7,
          -2.564012682679818,
          -2.106685142415535,
          -7,
          -7,
          -4.059639138323725,
          -3.3278899816485428,
          -3.5396092256382468,
          -3.6971421262754594,
          -3.430840687404714,
          -4.016071816734024,
          -4.002122846225162,
          -3.0839403565513352,
          -3.573683693093798,
          -3.6147039190058914,
          -7,
          -2.3958503760187813,
          -2.161046976362107,
          -7,
          -3.760592096579792,
          -7,
          -3.986906031380721,
          -7,
          -2.3373222073764235,
          -2.3116364657450608,
          -3.0350657025539265,
          -3.8123116091311235,
          -3.5510431647048075,
          -7,
          -7,
          -3.1527250407314686,
          -2.9988403344727614,
          -3.993920958801287,
          -2.747100931364986,
          -2.6416440555197305,
          -7,
          -7,
          -2.625626794735946,
          -2.832021234198613,
          -2.4013673973861067,
          -3.0134500940704583,
          -2.3130291026996175,
          -4.0780578669791865,
          -3.4621882878701635,
          -3.0650815277143657,
          -2.716003343634799,
          -7,
          -4.023417089841105,
          -4.017116849438813,
          -3.9814108401658883,
          -7,
          -4.504552412486566,
          -7,
          -3.4066678953244223,
          -7,
          -3.169481875974883,
          -3.2697074770238133,
          -3.0095432654699916,
          -2.575474042203768,
          -4.134782529381855,
          -2.5397032389478253,
          -7,
          -2.803336595463957,
          -7,
          -2.024091421981584,
          -2.306152858032541,
          -7,
          -3.67797175281074,
          -2.2828162543573365,
          -3.059437187851868,
          -2.4407155720669604,
          -3.051709777448058,
          -7,
          -7,
          -3.6776981814745104,
          -7,
          -7,
          -7,
          -4.187407902422553,
          -7,
          -3.566516054872908,
          -1.9746055802306293,
          -7,
          -3.9873533887357935,
          -3.5163149757779495,
          -1.916102861641635,
          -3.3960248966085933,
          -3.0187761267869226,
          -2.7269715836828765,
          -2.462138341981881,
          -3.0246322452029726,
          -2.9274986816932005,
          -3.2242308245491174,
          -3.024120637644558,
          -3.250594242825535,
          -3.521094477651296,
          -7,
          -2.530092029003328,
          -2.4838681350548732,
          -2.5239631265725575,
          -2.694359467902212,
          -7,
          -3.109953326425318,
          -3.983581186705791,
          -3.9860996250551297,
          -2.8218601782690493,
          -3.378624983035352,
          -3.177728835841732,
          -2.3821398923654864,
          -4.010215125214227,
          -3.9762582492570453,
          -2.7918309476748364,
          -7,
          -2.668851648082519,
          -7,
          -2.8746267516176824,
          -2.4340363540203143,
          -2.87989832433001,
          -7,
          -7,
          -3.932217342027368,
          -7,
          -7,
          -7,
          -4.256958152560932,
          -3.1566656185163415,
          -3.0882542479944113,
          -7,
          -7,
          -2.6912288854662814,
          -7,
          -3.9064427938170323,
          -1.9994732631471908,
          -7,
          -7,
          -3.4129654293113334,
          -7,
          -3.193958978019187,
          -7,
          -7,
          -7,
          -3.505149978319906,
          -3.5177579875862306,
          -7,
          -7,
          -7,
          -7,
          -3.6414741105040997,
          -3.485579476984679,
          -7,
          -7,
          -3.3667030568692864,
          -7,
          -3.4494907413063243,
          -3.1752218003430523,
          -7,
          -7,
          -3.563599728881531,
          -7,
          -3.194930399217724,
          -7,
          -3.745465168670727,
          -7,
          -7,
          -2.907129476778215,
          -7,
          -3.5397450161093125,
          -3.1556396337597765,
          -7,
          -3.5341530741850624,
          -3.4094258686714434,
          -3.539452491549461,
          -7,
          -3.550839605065785,
          -7,
          -7,
          -3.305852740224386,
          -2.928495423564597,
          -7,
          -7,
          -3.3889001083542367,
          -7,
          -3.4136908442354623,
          -3.1243737864846297,
          -7,
          -7,
          -3.9868740596438528,
          -7,
          -3.365581572755049,
          -7,
          -7,
          -3.9955474494751373,
          -7,
          -7,
          -7,
          -3.109325387770489,
          -7,
          -2.960550050051066,
          -7,
          -3.322219294733919,
          -7,
          -3.520173535708888,
          -7,
          -4.108565023732835,
          -7,
          -7,
          -7,
          -7,
          -3.6798819421128623,
          -3.491921712586151,
          -7,
          -3.7400994009248563,
          -3.5358002908248976,
          -3.4507108781469196,
          -7,
          -2.7911733677996433,
          -7,
          -7,
          -3.586587304671755,
          -3.219977256744623,
          -2.677192034869211,
          -3.518777068926775,
          -7,
          -7,
          -3.1047146693379855,
          -2.6381781753347258,
          -7,
          -7,
          -7,
          -7,
          -3.346287760172882,
          -7,
          -3.3921188489937446,
          -4.471203669470253,
          -7,
          -7,
          -7,
          -3.6616836424574517,
          -7,
          -7,
          -7,
          -7,
          -3.226213120724107,
          -3.306775830866937,
          -3.7281101841003403,
          -7,
          -7,
          -4.109004507541385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.667252771055618,
          -2.887392218971847,
          -3.920071124297524,
          -7,
          -7,
          -7,
          -7,
          -3.181986424480151,
          -7,
          -4.138397442990546,
          -2.877707208602452,
          -7,
          -7,
          -7,
          -3.1897241951643895,
          -7,
          -3.4424797690644486,
          -7,
          -7,
          -7,
          -7,
          -2.7033988634507047,
          -3.6875289612146345,
          -2.6335602628903403,
          -3.147882346295201,
          -3.1506248819812086,
          -2.350786244307008,
          -7,
          -3.4103242034855046,
          -3.02201573981772,
          -7,
          -7,
          -3.5364321758220134,
          -3.4933186082321015,
          -7,
          -7,
          -3.18574446281066,
          -7,
          -4.331366551785781,
          -7,
          -7,
          -2.916064682913849,
          -7,
          -3.5520595341878844,
          -3.7937903846908188,
          -3.2870175013221017,
          -7,
          -7,
          -3.3244882333076564,
          -3.5711262770843115,
          -3.601625479553945,
          -3.822429623779357,
          -7,
          -3.543819805142658,
          -7,
          -7,
          -2.3119555770286806,
          -4.386588133907789,
          -7,
          -2.1655905154476702,
          -3.447158031342219,
          -2.507693992654917,
          -3.215240887065359,
          -1.8501447725143394,
          -3.491921712586151,
          -2.9086190397042477,
          -3.2952371307315342,
          -3.6628522332647964,
          -7,
          -7,
          -4.09841873415025,
          -3.199114962043649,
          -7,
          -7,
          -7,
          -7,
          -3.474798818800631,
          -3.5046067706419537,
          -7,
          -3.516667559099043,
          -2.9802100308700172,
          -3.791620482692814,
          -3.900694774452398,
          -4.334712541690554,
          -7,
          -7,
          -3.514547752660286,
          -7,
          -7,
          -7,
          -7,
          -3.6089536992758626,
          -2.562401018978738,
          -7,
          -7,
          -2.9907826918031377,
          -3.1831274287013995,
          -7,
          -7,
          -2.612571954065176,
          -3.749914980946592,
          -7,
          -7,
          -7,
          -7,
          -3.5317343092765503,
          -3.221805317996549,
          -7,
          -7,
          -3.010421115653543,
          -7,
          -7,
          -3.472610197596045,
          -7,
          -7,
          -7,
          -4.061301656206044,
          -7,
          -4.563148711095859,
          -3.535167485114944,
          -3.3878264901627837,
          -7,
          -7,
          -7,
          -2.34956530647751,
          -7,
          -3.759592308645975,
          -7,
          -3.3650197428165347,
          -7,
          -7,
          -3.4670158184384356,
          -2.345777216071331,
          -2.3932826505593647,
          -2.799168176170151,
          -7,
          -3.0112884341835358,
          -2.8819549713396007,
          -3.0066086442803615,
          -3.3073890556533043,
          -7,
          -3.657915936829955,
          -2.803577602396836,
          -7,
          -3.4056024552093134,
          -3.2971036501492565,
          -3.6340866325525636,
          -3.161966616364075,
          -7,
          -3.3814961375657253,
          -3.462996612028056,
          -3.540454613671412,
          -2.793161529245551,
          -2.782370232445453,
          -3.7555699806288,
          -3.2676409823459154,
          -2.9728711024944356,
          -2.7283537820212285,
          -1.7501619167867744,
          -7,
          -4.139673515374664,
          -3.388056774739942,
          -7,
          -7,
          -7,
          -3.905849826642319,
          -3.2107197156810017,
          -7,
          -3.52283531366053,
          -7,
          -7,
          -7,
          -7,
          -3.0882542479944113,
          -3.5298151966446305,
          -2.9572480195790503,
          -2.8588712445685736,
          -7,
          -4.17205387889541,
          -7,
          -4.0636854794912205,
          -7,
          -3.2329961103921536,
          -3.496628515300069,
          -3.016406500871118,
          -7,
          -7,
          -7,
          -2.8592884423200204,
          -2.669368542313857,
          -3.8820689444361483,
          -3.6497241859295224,
          -7,
          -7,
          -3.083233790058822,
          -2.405260961594782,
          -7,
          -2.327103391877102,
          -3.353403259377596,
          -2.2362292611340204,
          -2.9534799201619046,
          -7,
          -7,
          -4.31940798167448,
          -4.3117044263500945,
          -7,
          -7,
          -7,
          -4.414338145582368,
          -7,
          -4.616034168348879,
          -3.6146252807658557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.005116136020933,
          -7,
          -4.694728012329395,
          -3.7883451651521183,
          -7,
          -7,
          -7,
          -4.91498979717569,
          -4.3252076894829194,
          -4.259916255109018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8367389381738333,
          -7,
          -4.698144059924504,
          -4.369271532621027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.246498580795801,
          -4.638149675666846,
          -1.5092155761636503,
          -3.846319435967003,
          -2.776653498621149,
          -2.454583551648098,
          -7,
          -3.896801697664922,
          -7,
          -3.879534666600482,
          -1.2964611045050014,
          -7,
          -1.7684913037225938,
          -3.542087379865947,
          -2.9761422612774444,
          -7,
          -4.472961119019948,
          -7,
          -2.4649364291217326,
          -3.932879457823799,
          -3.0710614934952005,
          -2.4612108026907533,
          -3.5490032620257876,
          -2.4234506815246184,
          -3.6986953313061885,
          -4.863322860120456,
          -2.336173731545205,
          -2.60151678365001,
          -1.9195021390967313,
          -3.1879670063434964,
          -7,
          -4.564249997194994,
          -3.007839185967241,
          -2.811667438451958,
          -2.977418730245156,
          -2.7130796684351948,
          -3.866272566911813,
          -3.5437508246183773,
          -7,
          -3.79509178180048,
          -7,
          -2.8804342467699544,
          -7,
          -2.530583859645118,
          -3.7788262946792774,
          -3.002471266421594,
          -3.4742891261654965,
          -2.766294698357867,
          -3.1998922435263193,
          -3.796157876906914,
          -3.270273663420831,
          -4.3442153756565,
          -7,
          -2.6725596277632757,
          -7,
          -7,
          -7,
          -3.7240163079266475,
          -2.167603148830162,
          -3.0991378037792234,
          -7,
          -3.3273589343863303,
          -2.3532455307117077,
          -7,
          -1.9970611158472376,
          -3.481012420956573,
          -3.120464247032542,
          -7,
          -2.3092797016404227,
          -2.5525330271673186,
          -3.2189291850880872,
          -7,
          -4.196590654117307,
          -2.6453240015622934,
          -2.518075036877517,
          -3.2505419780102724,
          -3.513217600067939,
          -3.920905604164024,
          -7,
          -3.5328817194073974,
          -2.8391636829146503,
          -3.2779146790481093,
          -7,
          -2.7572579602870437,
          -7,
          -7,
          -4.62148786458063,
          -3.5461174829126922,
          -4.804187154381649,
          -7,
          -7,
          -2.2582380782820484,
          -7,
          -2.2535218195346234,
          -7,
          -3.2971036501492565,
          -2.569785593990233,
          -7,
          -7,
          -7,
          -3.2930309056064373,
          -3.854063011866421,
          -7,
          -3.3089910290001643,
          -3.5634810853944106,
          -7,
          -2.720572720364261,
          -7,
          -3.7781029927601812,
          -7,
          -2.586812269443376,
          -2.468191808662276,
          -7,
          -7,
          -7,
          -2.997386384397313,
          -4.009323393381013,
          -2.4434585715565302,
          -2.7439558295413367,
          -3.4171394097273255,
          -3.797059694699971,
          -7,
          -7,
          -3.6717743266725966,
          -3.2099169530089915,
          -3.0137322976039687,
          -3.4974825373673704,
          -2.4737302041688842,
          -3.0931714434486546,
          -7,
          -7,
          -2.8898617212581885,
          -3.3746422429034686,
          -1.9039138148998769,
          -7,
          -2.2842945700302977,
          -3.1177682949263725,
          -3.4138583422700264,
          -3.5744942682853273,
          -2.9127201197567394,
          -7,
          -3.5839917991983166,
          -7,
          -7,
          -7,
          -4.402072143635273,
          -3.717420836722375,
          -7,
          -7,
          -3.3276593802522756,
          -3.3479151865016914,
          -2.863426312832213,
          -2.6750122057523718,
          -3.8402315949581087,
          -2.53164919521809,
          -7,
          -2.356450802904036,
          -7,
          -2.59640302644237,
          -2.0963411095954876,
          -7,
          -7,
          -3.616265405281708,
          -3.080987046910887,
          -2.7894525071503864,
          -3.234896745731588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.160368474792848,
          -2.658692643042924,
          -7,
          -7,
          -7,
          -2.6865085919184652,
          -3.511214701136388,
          -3.2027606873931997,
          -3.1230890516896657,
          -2.4218347504106905,
          -2.794648886540733,
          -2.931902616741086,
          -7,
          -2.9714304844819157,
          -3.459241664878082,
          -7,
          -7,
          -2.6953271324584724,
          -7,
          -2.9242792860618816,
          -3.056218581272306,
          -3.7018269303971394,
          -2.843321781988454,
          -3.4641913706409997,
          -7,
          -2.455320799214393,
          -3.1541195255158465,
          -2.989831056446319,
          -2.4202858849419178,
          -7,
          -7,
          -3.963976609996606,
          -7,
          -7,
          -7,
          -4.439569517147175,
          -4.456593750244408,
          -4.150909873701122,
          -7,
          -4.4441072798376,
          -2.753333878586034,
          -7,
          -7,
          -7,
          -4.027104865879351,
          -2.5055245577766834,
          -3.495636829183877,
          -7,
          -7,
          -3.9616583486377155,
          -7,
          -3.4319709942774352,
          -2.9359856330811804,
          -7,
          -3.498407052952736,
          -2.8337005490492997,
          -4.448025752873446,
          -4.441538038702161,
          -7,
          -7,
          -4.150249723240066,
          -3.3631417096979495,
          -2.137802313334469,
          -4.448025752873446,
          -7,
          -7,
          -7,
          -3.8586274155837232,
          -4.139391017726584,
          -7,
          -7,
          -4.163831985102053,
          -7,
          -2.884876998002835,
          -3.962274604623315,
          -7,
          -7,
          -7,
          -4.194028437352706,
          -7,
          -7,
          -7,
          -4.45048005460606,
          -3.9798062647929684,
          -2.5882575453845966,
          -4.171243635947135,
          -3.639710551318162,
          -3.176958980586908,
          -7,
          -7,
          -3.869847511611599,
          -7,
          -4.448010273039476,
          -3.971012841545116,
          -7,
          -7,
          -4.008302024212002,
          -2.1030600316071943,
          -7,
          -7,
          -3.866361192410094,
          -7,
          -7,
          -3.8917046762391827,
          -7,
          -7,
          -3.592122572182833,
          -7,
          -4.163653256961294,
          -7,
          -7,
          -4.059512930284156,
          -7,
          -7,
          -7,
          -3.773127924033335,
          -7,
          -3.4768750847585057,
          -7,
          -4.157033449661202,
          -7,
          -2.9944542210356926,
          -7,
          -4.572313860922749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.885304667588968,
          -7,
          -4.135683786580058,
          -7,
          -7,
          -7,
          -3.4134075458060016,
          -7,
          -4.466511738486146,
          -4.151829340131871,
          -3.648276350695849,
          -2.5795343256482703,
          -7,
          -4.440767441204506,
          -4.450156695406595,
          -3.607025878434786,
          -2.0391677845130314,
          -3.3331836568930138,
          -7,
          -7,
          -4.48274499054841,
          -3.590521399348547,
          -7,
          -3.4746844500636387,
          -3.354160372717795,
          -7,
          -4.228002329762995,
          -4.444825199509748,
          -3.0979718667204446,
          -4.450264508559852,
          -3.9952109288456903,
          -4.490337794344103,
          -7,
          -7,
          -3.1513698502474603,
          -3.9978958207981363,
          -7,
          -7,
          -3.237994161276691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3838852800395403,
          -3.730189896716472,
          -2.8808770809852247,
          -7,
          -7,
          -4.060118394661378,
          -7,
          -7,
          -4.451279718904047,
          -2.9096584343751273,
          -3.2704847380490047,
          -7,
          -7,
          -7,
          -2.870093513523827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6105841244865333,
          -3.865932668193186,
          -4.165259168471885,
          -7,
          -3.8378156259146805,
          -3.978925773721295,
          -7,
          -2.842119590139838,
          -3.7429449715938286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.437068470428161,
          -3.5928426831311002,
          -7,
          -3.2305151486023247,
          -7,
          -7,
          -2.609245488115293,
          -7,
          -3.801211562533051,
          -4.186532564592397,
          -4.4531194977640025,
          -7,
          -4.153845340080965,
          -7,
          -4.450818553829668,
          -4.454966750124916,
          -4.493541695167482,
          -7,
          -7,
          -7,
          -7,
          -4.159221183790382,
          -4.387967907442333,
          -7,
          -2.3671864402504426,
          -7,
          -2.5816485319957305,
          -4.44399792707814,
          -3.4133759761516242,
          -4.441160774035116,
          -4.443403816887126,
          -3.431229701962552,
          -4.16302712860075,
          -7,
          -3.864718685895433,
          -2.7802558253347023,
          -3.452169918535435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.141543834220653,
          -4.438083288767236,
          -7,
          -3.16380716614717,
          -3.788069335049545,
          -3.2637866524058152,
          -2.8495597287699477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9854414443345294,
          -3.9788193867328423,
          -7,
          -7,
          -7,
          -4.438589810070449,
          -4.440326485098404,
          -7,
          -4.438257472106888,
          -7,
          -2.751922856035796,
          -7,
          -7,
          -7,
          -7,
          -3.8436687229791437,
          -4.1437172265617965,
          -7,
          -7,
          -2.590294044407944,
          -7,
          -4.2165353574183575,
          -3.4445782233980897,
          -4.457291339128507,
          -7,
          -7,
          -3.314984059305763,
          -4.461363445295965,
          -3.4053890531697864,
          -4.446241945325413,
          -2.99520185010408,
          -7,
          -7,
          -4.441019215250851,
          -2.018567843634294,
          -4.510250018728974,
          -3.8573807486930707,
          -3.8071018705893316,
          -4.051589813697189,
          -7,
          -7,
          -7,
          -4.451985888948909,
          -3.996248914569132,
          -3.993583175003126,
          -7,
          -4.139768925279731,
          -7,
          -4.440310728382506,
          -3.677652569492963,
          -7,
          -3.86116088844683,
          -3.0564007084194564,
          -4.14997308296338,
          -4.471335725161158,
          -4.153448988600982,
          -2.6184756300183856,
          -3.363737299322217,
          -7,
          -2.923187478458534,
          -7,
          -4.446894272471873,
          -3.642450387422455,
          -3.613585124332224,
          -3.350684032686936,
          -3.6328909362366324,
          -3.313774975701645,
          -4.158422806584882,
          -3.1787036296790685,
          -7,
          -2.6237566562009254,
          -3.388748048895302,
          -4.436433002660097,
          -7,
          -7,
          -3.910584388197811,
          -3.4913336739315626,
          -7,
          -7,
          -3.991816550945799,
          -7,
          -7,
          -7,
          -3.6581749932745304,
          -7,
          -4.449370390682258,
          -3.4501230858349725,
          -7,
          -3.4147623034302255,
          -4.709820961709942,
          -3.2427103877041388,
          -4.144667594231179,
          -3.0134692323091703,
          -2.444798542184289,
          -3.516085643024291,
          -7,
          -7,
          -7,
          -3.250706949449761,
          -3.371424127988508,
          -3.9048236998009442,
          -3.7629485074729363,
          -4.437338262919794,
          -7,
          -3.426111828467671,
          -7,
          -4.444871979160645,
          -7,
          -3.893192868743221,
          -3.8394937596254946,
          -2.818136892763469,
          -7,
          -7,
          -2.9170129073424844,
          -2.892049044935811,
          -4.180937863983749,
          -3.8902533051545345,
          -3.33799140347015,
          -3.1342460459446086,
          -3.758457688610466,
          -3.562860975597884,
          -2.7956808317648716,
          -3.2377232209250724,
          -4.011753651565362,
          -3.826925889164468,
          -3.6681281800318333,
          -3.4480429520418703,
          -2.320186764043377,
          -3.8378588862869516,
          -3.1967463452310154,
          -2.3158672158872533,
          -3.7970481447755815,
          -3.77244090126548,
          -4.008727886652385,
          -3.1561980819184527,
          -3.4831496918725606,
          -3.2790320886972957,
          -4.597585501752205,
          -3.729074752482558,
          -3.4791372440872745,
          -3.7220474759675914,
          -4.463579467456969,
          -2.9529185089385104,
          -3.916475004741629,
          -3.5096874640549123,
          -3.217565622015339,
          -3.02498822250529,
          -3.116200062045703,
          -3.335078828132144,
          -3.6912204643369493,
          -3.0979431935650594,
          -3.2819625605980587,
          -3.4703593508796775,
          -2.813053178509492,
          -2.590875020869651,
          -2.5061605659193376,
          -2.7888625054157443,
          -4.195678299457498,
          -2.620027365870543,
          -7,
          -2.786549875081608,
          -2.457762729111166,
          -1.7684913037225938,
          -7,
          -2.784992074056289,
          -2.3946566209585978,
          -3.4999008177352655,
          -3.0613722606710536,
          -4.524902179460859,
          -4.137433239453652,
          -4.218509247198932,
          -2.358777707275306,
          -2.151799281836671,
          -2.9699437035468206,
          -2.1137563442359215,
          -2.7519311783407066,
          -3.036016731476465,
          -4.139438274158168,
          -3.501319486926531,
          -3.1860140602380915,
          -1.843936289441158,
          -3.4372747974101237,
          -3.255377663399359,
          -1.935358383836394,
          -2.132483316887697,
          -4.437179581752512,
          -2.0884775551021204,
          -2.123189899230609,
          -2.3073306678011605,
          -3.011598634469503,
          -3.3566899315482526,
          -3.480033088737352,
          -2.225578910053748,
          -3.9150378351369337,
          -3.8438087552360534,
          -2.7793002285795017,
          -1.7551506194349336,
          -3.5294731314644747,
          -2.5258019888373338,
          -3.0435194602457565,
          -3.2835273648616936,
          -3.014991990808102,
          -3.0995406620105483,
          -2.8357539675193832,
          -4.436877927710658,
          -4.134591434710877,
          -3.7390340870857917,
          -3.6602012013806817,
          -3.0421893218318448,
          -3.8622208538486498,
          -3.6243852414202653,
          -7,
          -3.417154519038368,
          -2.0000181330027336,
          -3.7676307319608626,
          -3.557100988756635,
          -7,
          -2.7614176776053556,
          -4.437750562820388,
          -0.9327696000728138,
          -3.376661168894394,
          -3.9672514815286246,
          -3.8602331642145686,
          -3.0598229758332827,
          -2.032065988195396,
          -3.020043457313073,
          -3.5450131567760717,
          -4.443607156584516,
          -3.61322057968259,
          -3.5407985597854283,
          -3.065034793369011,
          -3.9801700844088446,
          -4.179020086986456,
          -4.435653285326419,
          -2.5298116675310487,
          -3.437369992197025,
          -7,
          -2.709519755741255,
          -2.5643484603220394,
          -2.97617242001532,
          -7,
          -3.3573043401887683,
          -3.5958390150297412,
          -2.576528116757655,
          -3.4320504882965372,
          -7,
          -7,
          -3.1308890762967754,
          -4.135990846921625,
          -7,
          -3.864229172807904,
          -3.7548526807047184,
          -3.5460214167615582,
          -3.08092436232493,
          -3.4559102403827433,
          -7,
          -4.14367043347016,
          -4.157275396454035,
          -3.717504074764202,
          -2.250792024445299,
          -7,
          -3.8797694599360364,
          -3.8768814804300282,
          -3.7614767795447017,
          -3.4348030193176577,
          -3.5400164697453222,
          -3.5940135021454704,
          -3.336196976263483,
          -3.9849771264154934,
          -2.3907209570806813,
          -3.3938383323184746,
          -2.7792710233263387,
          -4.4543722124188445,
          -7,
          -3.4160385034771386,
          -7,
          -1.932780239030511,
          -2.96375635559063,
          -3.462203270516635,
          -3.5208894705351628,
          -4.151369850247461,
          -7,
          -3.519171463821659,
          -3.1257626964147756,
          -3.260464236932625,
          -4.163742630225824,
          -2.621426678455252,
          -3.7746045457003254,
          -3.907008053689199,
          -3.1719572771940903,
          -2.4356514252474963,
          -3.4558826011997703,
          -2.883231607770849,
          -3.671897605098547,
          -7,
          -7,
          -3.1398878281506537,
          -3.8710326501566796,
          -4.447220068979909,
          -4.171550945676746,
          -2.590604564498762,
          -3.762858544866317,
          -2.4520720964238154,
          -2.320259357867973,
          -3.383124584091668,
          -3.6266336114657944,
          -4.142686612105551,
          -3.1776124321762143,
          -4.4361626470407565,
          -4.017756560917876,
          -3.2672269610727946,
          -3.722812100254417,
          -7,
          -4.457048826585631,
          -7,
          -2.1046236604353257,
          -4.4463662736803595,
          -4.140727962844183,
          -7,
          -7,
          -4.438320794186449,
          -4.136387586102837,
          -4.138113146487167,
          -3.441551132284383,
          -2.831077154621386,
          -3.858085826163788,
          -3.597413084920528,
          -3.599056096864108,
          -4.138397442990546,
          -4.140618016861667,
          -7,
          -3.238782899762625,
          -3.512402718924654,
          -3.07391682215682,
          -2.209448542593025,
          -2.6667853209646175,
          -2.44414242309212,
          -3.842827579929976,
          -4.135498386458118,
          -3.480782802561479,
          -3.841234295506041,
          -7,
          -2.2701451708811593,
          -3.8436687229791437,
          -3.968078040985985,
          -2.6521885909973335,
          -3.214711421005384,
          -2.4081506686153484,
          -3.9609461957338317,
          -3.8368619025833786,
          -2.7381670529898856,
          -4.437211322624582,
          -2.5445696679092684,
          -3.852510490774041,
          -7,
          -7,
          -4.0595160859321835,
          -4.961326155934711,
          -4.961273931114606,
          -4.660357872417049,
          -4.117039167877679,
          -4.189176714937135,
          -3.8866692944119765,
          -4.661187760411323,
          -3.5483516147701626,
          -2.5149218317456623,
          -3.6608609625459816,
          -4.961273931114606,
          -4.962189329010532,
          -2.5315935346979557,
          -2.65590723100227,
          -3.421001889716546,
          -4.662757831681574,
          -7,
          -4.262968138090902,
          -4.35943703830399,
          -2.396793274079153,
          -3.23814298390106,
          -4.961003210960297,
          -3.2479141932058226,
          -1.1542108054016846,
          -3.709317082386597,
          -3.707352501227481,
          -7,
          -3.3666050425418725,
          -3.4883579673077088,
          -3.1917256596242463,
          -2.5979606503538215,
          -3.362322223700609,
          -4.359740647863716,
          -7,
          -3.963107529523544,
          -3.8224202856192337,
          -4.008141034105658,
          -3.797309098122926,
          -4.961416347652731,
          -3.5717879989217423,
          -4.962970396091709,
          -2.3011102715552583,
          -4.059004571695273,
          -4.118260000849086,
          -2.6981192619861707,
          -4.488160428173718,
          -3.33577236081626,
          -4.48567884650391,
          -4.061542005396714,
          -3.42978456835467,
          -3.224627223695273,
          -3.7368977726140367,
          -2.012415374762433,
          -3.5918573057581438,
          -2.496215485540377,
          -2.831310315348419,
          -4.185036647576167,
          -3.7599085281865303,
          -3.359029886980261,
          -4.663328648045545,
          -4.487604955956124,
          -3.8185510684090147,
          -4.359788067690362,
          -3.5012529106922354,
          -3.212541180290165,
          -2.914095011775121,
          -4.962047165769254,
          -7,
          -3.150937764940095,
          -4.3592661646067485,
          -3.1775139549882887,
          -3.473778834646725,
          -4.359802292628766,
          -3.741248952988005,
          -2.174932377602814,
          -7,
          -3.4255109308089216,
          -7,
          -4.66153347407699,
          -2.564830020031201,
          -2.809227601158241,
          -3.96275751707078,
          -4.961140966863463,
          -3.4156270813608494,
          -4.361883587627972,
          -2.8358386353693876,
          -3.4189638307036225,
          -3.167917176154837,
          -4.490075587280986,
          -1.8677389543993326,
          -3.395262000678114,
          -2.456909251591883,
          -4.359569893603762,
          -7,
          -3.494289130228922,
          -3.9675573359128724,
          -3.6279381446854235,
          -2.94272439249383,
          -7,
          -2.824635644686762,
          -4.00991336809817,
          -4.660300907670251,
          -7,
          -3.046906848709895,
          -7,
          -2.9566718738913944,
          -3.518824039485424,
          -2.687304816301919,
          -1.8093513194989694,
          -4.185409929405979,
          -4.117399149800422,
          -4.120244795546365,
          -3.735457994116918,
          -2.634931608578787,
          -3.6633805032588294,
          -7,
          -4.066242040644645,
          -3.4982232265431157,
          -3.3255840723546894,
          -4.010351789910468,
          -3.033033765851075,
          -2.421473723156698,
          -4.264558112800327,
          -3.4109325485434154,
          -4.264770614521865,
          -2.7768252714096775,
          -3.7099997689230975,
          -3.1588030588943528,
          -3.472633052674273,
          -4.961848059018324,
          -4.185726258953287,
          -2.3458438852429713,
          -2.560855262616385,
          -7,
          -4.359304142349933,
          -2.923739123457494,
          -7,
          -7,
          -7,
          -4.058734362760268,
          -4.961273931114606,
          -2.8418478220804433,
          -2.9788266104365038,
          -2.8336437606968583,
          -3.337817621904792,
          -4.3619119001023545,
          -3.5623104914749812,
          -4.660414829692979,
          -4.661344076016006,
          -4.06258668435946,
          -3.3867579277666837,
          -1.3705642541562597,
          -7,
          -4.360536614583294,
          -3.9640002020590774,
          -2.0424620473036907,
          -7,
          -7,
          -3.6670184411159363,
          -3.790050473683351,
          -4.262906504093203,
          -3.1876476065305965,
          -3.925663623625178,
          -3.628333188143986,
          -3.4649596916158814,
          -3.666719169536483,
          -3.187026923760066,
          -3.688302707830574,
          -3.8840822792097556,
          -1.9809387012166204,
          -4.008619094856489,
          -4.262284934377744,
          -7,
          -4.362166629347626,
          -4.008401429472742,
          -4.1842180852863775,
          -4.660405337332384,
          -3.0472617379123195,
          -4.96270546410181,
          -3.2152191679480744,
          -4.262427357143091,
          -3.1078383370643294,
          -1.9744799056675177,
          -3.964462347945267,
          -3.318163182165152,
          -3.579014901222905,
          -3.9248194680033985,
          -3.7940788875341207,
          -3.665646646127807,
          -3.8886567869289896,
          -3.9241147494121003,
          -3.7362746108444544,
          -2.936723893079625,
          -4.3611279066318485,
          -3.3468713070701095,
          -7,
          -2.7836029465276524,
          -3.822266176981333,
          -2.858818584987489,
          -4.962141946433934,
          -2.6905352070203894,
          -7,
          -3.2692119949493845,
          -4.009210026465004,
          -3.551698604499414,
          -4.263664468388576,
          -4.662309143723654,
          -3.3216344468426913,
          -3.62708175893708,
          -7,
          -2.9696488404807253,
          -2.908756846562415,
          -3.013378368536278,
          -7,
          -7,
          -4.485555814223788,
          -4.3595177052971295,
          -7,
          -4.117952749892627,
          -4.660708990011405,
          -4.0603767213953565,
          -3.0926855629374908,
          -3.0124107871850496,
          -3.167583563821491,
          -2.3847686963298202,
          -4.961022214372552,
          -4.263867945962747,
          -4.009139157111882,
          -3.9239830751954003,
          -7,
          -4.961890732435836,
          -4.066088209902013,
          -3.259153356124792,
          -3.5518533253826576,
          -4.960993708942336,
          -7,
          -7,
          -3.962336182154077,
          -7,
          -3.9617152704537655,
          -3.967351376033999,
          -2.5385311917995725,
          -7,
          -4.961354639553441,
          -7,
          -4.48520545453641,
          -3.7086474787139507,
          -3.621143221998132,
          -7,
          -4.060952677550257,
          -3.9022749204745018,
          -3.4625617634285892,
          -2.8686848113835097,
          -3.020018039073415,
          -3.7913677900080844,
          -4.961629884931725,
          -7,
          -2.322942123838025,
          -3.305673745669693,
          -2.1608163787942525,
          -4.119053120904281,
          -2.614964624993414,
          -4.265671410801216,
          -3.962340918525596,
          -4.2636218679914135,
          -2.902197215252984,
          -3.103155305052969,
          -2.792478696306499,
          -2.6194835119620117,
          -3.087151162750692,
          -3.925124491288567,
          -4.009663316679379,
          -4.961852800716229,
          -4.011640917347032,
          -3.71720804477317,
          -3.5565900792280734,
          -7,
          -4.059416672002962,
          -4.0628826901303645,
          -4.360328288072052,
          -3.7365792753038436,
          -7,
          -2.7919758753523225,
          -2.7869309831175997,
          -3.488273318680757,
          -3.610044198283449,
          -3.8526770142842115,
          -2.0084125462234126,
          -2.7681357668442947,
          -4.35996347604274,
          -2.9887719836341766,
          -4.660685274789785,
          -3.96432092693784,
          -3.1192329712423796,
          -3.9679923390652525,
          -3.096458111717453,
          -2.796676072928307,
          -3.5099771967991025,
          -3.9267819449923036,
          -3.695900837452605,
          -2.547587547806455,
          -2.300605695144895,
          -2.467792474575587,
          -4.961254938713763,
          -7,
          -7,
          -3.493844657983327,
          -2.274047172789609,
          -4.36084891709733,
          -4.185556319479281,
          -3.5908139802145596,
          -4.184274913997588,
          -3.355881177150099,
          -3.3498032819722785,
          -2.928277998809836,
          -4.361921337183666,
          -3.92367254220629,
          -2.96901827581697,
          -4.1188549766382225,
          -2.4351598613738563,
          -2.8938372187011825,
          -2.0877205730045074,
          -4.265044352345405,
          -2.8967501983926742,
          -2.469795166795331,
          -2.7598835895931746,
          -7,
          -4.186565539383188,
          -7,
          -3.0299645394193337,
          -3.2965980399742842,
          -3.2048612693935485,
          -3.506402383271917,
          -4.183326796601633,
          -4.960936692468327,
          -2.905335203978694,
          -4.360437198486716,
          -3.8845074375460937,
          -4.18600462715385,
          -3.5023132962432744,
          -4.263811171112919,
          -1.8912109478360524,
          -7,
          -4.359218687757081,
          -2.7244530964883347,
          -2.7949496312842714,
          -2.8598696403920845,
          -3.580578313675271,
          -2.758203517991074,
          -2.6939095886706075,
          -3.5163326117439992,
          -2.6134223028214976,
          -1.8442238177716326,
          -3.1441805525731445,
          -4.074455292377034,
          -3.0861720208846997,
          -2.778391444902281,
          -2.6246143661621346,
          -2.5535517441075415,
          -2.5063028215430774,
          -2.760529731427365,
          -2.480475187731228,
          -2.879331291507992,
          -2.9001993095094276,
          -4.022313790681457,
          -2.3760196479500224,
          -2.70245039072442,
          -2.1424620454245744,
          -3.015108160645837,
          -3.237334892511582,
          -2.8621983673306364,
          -3.1175781525058817,
          -4.492401820088892,
          -2.176527237504239,
          -3.332281780585766,
          -2.6927430839305604,
          -2.9278717568932096,
          -3.072768502132931,
          -4.013880713023503,
          -3.340848980668569,
          -3.3211134511957323,
          -2.917472686782482,
          -3.133809030190632,
          -2.146828699151382,
          -4.119533952374401,
          -2.7046063428076352,
          -2.406641469178499,
          -3.3706936886585264,
          -3.1734048180177767,
          -2.6251609671120715,
          -2.6603092564193918,
          -1.7204902741566295,
          -3.0944538743639973,
          -3.542087379865947,
          -2.784992074056289,
          -7,
          -1.5570719148008938,
          -4.012377857151723,
          -1.8600402748354252,
          -2.5607303312262646,
          -4.961871766990156,
          -2.889772166771449,
          -3.0209881375257415,
          -3.9391878461917433,
          -3.9646461264348587,
          -2.4052297140153964,
          -1.7730029976670396,
          -2.2444650393016303,
          -3.8831880896223963,
          -2.4682698165014303,
          -3.4712254448577413,
          -1.9177551208044752,
          -3.7562422146809546,
          -2.6408277411455305,
          -3.1254559158008726,
          -3.0912423383323984,
          -4.484337808789187,
          -3.145479988322081,
          -2.632357524451859,
          -2.5368523462149337,
          -2.735672303650337,
          -1.9690079356415473,
          -2.825860172884344,
          -2.389011691420147,
          -2.3690287824635057,
          -4.185924437664244,
          -1.7979145401958574,
          -1.970380140469246,
          -2.770414736749944,
          -2.4479998133798366,
          -7,
          -2.083171585668804,
          -2.543779303467573,
          -3.25854700301131,
          -4.660998211489886,
          -7,
          -4.4838819562406345,
          -7,
          -4.079890918334672,
          -2.4802574419693437,
          -3.450976523069686,
          -2.4516753369831368,
          -4.485058598189106,
          -3.9679876639285983,
          -2.4512565368187738,
          -3.6085911403132283,
          -3.8544975657150813,
          -4.661268293658268,
          -2.923198950972694,
          -7,
          -2.337613269461743,
          -3.1923846271401124,
          -3.9635753487276815,
          -4.124014878887408,
          -3.093667615655394,
          -4.190737783739713,
          -3.1604276017717767,
          -7,
          -7,
          -3.3429114356402447,
          -7,
          -4.4869827371917586,
          -3.5871822704263163,
          -3.469320263337147,
          -4.961022214372552,
          -2.971189916194264,
          -7,
          -4.962051905293788,
          -3.0936951178653964,
          -2.4080326832694694,
          -2.6481939831377432,
          -7,
          -3.9719759088495237,
          -2.666211711073482,
          -4.487609666333967,
          -3.510077924907464,
          -7,
          -3.7113009599161657,
          -2.6367726520161257,
          -7,
          -4.661074040986242,
          -4.016099716932023,
          -3.53495165163851,
          -3.0885994524870846,
          -7,
          -4.189050275274487,
          -3.4598540572723233,
          -4.48660992182486,
          -3.4112829130173843,
          -2.741333451523255,
          -3.5226072263706474,
          -7,
          -3.155202571949865,
          -3.32080150469275,
          -4.1234502812832154,
          -2.614249325129989,
          -7,
          -4.661074040986242,
          -3.6727002600533996,
          -4.065943652583075,
          -2.043329136724385,
          -3.592186013360358,
          -3.773132500540181,
          -4.188492565093906,
          -4.963636742118113,
          -3.4596984085744094,
          -4.185140631715381,
          -3.5090814946225235,
          -4.661822147187612,
          -3.521786984796864,
          -2.8973275362164874,
          -4.66505539251443,
          -7,
          -2.862705131498745,
          -2.0137055223163682,
          -3.446619391266607,
          -4.191725738520312,
          -2.662260023490515,
          -3.8934380930119987,
          -3.753682170713773,
          -3.851681614802406,
          -2.696283563298114,
          -3.701508905718383,
          -4.267120079501657,
          -3.789190423837699,
          -4.660495506382359,
          -7,
          -3.3749201057441613,
          -4.018242667457909,
          -3.8504482908911513,
          -4.018062177109417,
          -2.289844875657108,
          -3.927547666088493,
          -2.997073010851781,
          -2.61321980160087,
          -3.4887417131238716,
          -3.215762754420895,
          -4.486312383821238,
          -3.5693083507830243,
          -4.961174211742868,
          -3.280150238221159,
          -3.0353387578800564,
          -3.5834391002295347,
          -7,
          -3.475872616012005,
          -3.8858180821280595,
          -2.653709857986787,
          -4.362157197594989,
          -4.9628616042958145,
          -4.359228183542235,
          -4.9612644350180055,
          -7,
          -4.961558717504052,
          -4.661036127893079,
          -3.0143283621784036,
          -4.666021627895574,
          -4.014184397501279,
          -4.662096445417923,
          -4.963632019857728,
          -4.059004571695273,
          -4.184629925065294,
          -4.118977648033631,
          -4.361250794303581,
          -3.279932199005493,
          -3.5864044349502087,
          -2.759541943983747,
          -3.494181534527859,
          -3.7494680374713956,
          -3.9223384913862973,
          -7,
          -3.527657515157577,
          -4.361255520058149,
          -7,
          -2.632842096574864,
          -3.787857038774162,
          -3.8846254632562345,
          -3.406250093617719,
          -4.272700056789586,
          -3.766793803133404,
          -4.359674251406698,
          -3.961942883141387,
          -3.5070132546179886,
          -4.961487538412329,
          -3.7494543917836216,
          -3.4479657068003102,
          -4.663601996724677,
          -7,
          -3.9814108401658883,
          -4.376823230725233,
          -3.677606952720493,
          -7,
          -3.6793733792387515,
          -2.989574392477443,
          -3.8415114201192337,
          -3.9805578230230227,
          -3.037924256713626,
          -2.914332661311729,
          -3.3965148413899895,
          -7,
          -3.8343207708442053,
          -2.3901629165142837,
          -2.693685737345204,
          -3.4812544651364226,
          -4.080491199713847,
          -7,
          -4.07700432679335,
          -7,
          -2.4122607967275096,
          -3.039770926931579,
          -7,
          -3.014722098700544,
          -1.822649805614788,
          -3.7812076748228813,
          -3.777454010257933,
          -7,
          -3.6923885981513846,
          -3.2879628814848645,
          -3.265896771013757,
          -2.3805998688962626,
          -3.5380618005555218,
          -4.678836926900922,
          -4.6789642806521305,
          -4.079335031445408,
          -3.0783772340214464,
          -3.834838355672986,
          -3.1441069730493227,
          -7,
          -3.995248983383211,
          -4.681024035829723,
          -2.322103599668317,
          -4.0773588195305,
          -3.9036325160842376,
          -3.2777590363616937,
          -2.5933761303711673,
          -3.1319392952104246,
          -3.7263467971429836,
          -3.5079817359140435,
          -3.5558541878466463,
          -3.5394883214712616,
          -3.8444416709646037,
          -1.7490204093596096,
          -3.8534722294921817,
          -2.7191812866158296,
          -2.338021768462477,
          -4.380482590974981,
          -3.905075955657791,
          -3.317880600528345,
          -4.081581317229508,
          -4.20725725871634,
          -3.730136003996678,
          -7,
          -3.904589330951372,
          -2.745966567012242,
          -2.968044570194652,
          -4.202097621452882,
          -7,
          -3.1159956797476744,
          -4.6779261695536105,
          -2.987633166996761,
          -2.8591552176390183,
          -4.201797546736893,
          -3.3550682063488506,
          -2.688079627476112,
          -4.377661338348732,
          -3.489800333711403,
          -7,
          -4.203105444776454,
          -2.4209086143865757,
          -3.9141138709336474,
          -4.680779554175909,
          -7,
          -3.6570558528571038,
          -4.205781595442862,
          -3.238668921279138,
          -2.8908507580818754,
          -3.411220843713945,
          -4.68911342704763,
          -1.8010976657860946,
          -3.0702956591451445,
          -2.3769645469813034,
          -4.2013515984037575,
          -7,
          -3.6181701703721543,
          -3.7355368025021285,
          -2.824917010852793,
          -2.134394814640429,
          -4.679654978699333,
          -2.031300237856936,
          -3.683272236315922,
          -4.37685058584761,
          -7,
          -2.843040423444765,
          -4.67825426226744,
          -3.3524544153835043,
          -4.085138887686988,
          -2.846870690323001,
          -2.013423140564389,
          -4.205087019994803,
          -3.9811841373983543,
          -3.907420318901708,
          -2.2133008673073458,
          -2.347673607595536,
          -3.453381302785419,
          -4.677643446521776,
          -2.6230106014763095,
          -2.5119264649918027,
          -2.502036742895763,
          -3.8390648356407997,
          -2.7703610059573918,
          -2.3326829808604845,
          -4.381115080709851,
          -3.241417934056642,
          -3.7281823755077257,
          -2.8300452929631956,
          -3.6441520091914086,
          -3.300369365845536,
          -3.5631249603380444,
          -3.7756559500737605,
          -4.381800742504703,
          -1.9396384060736354,
          -3.194635733117443,
          -7,
          -7,
          -3.062224316869885,
          -7,
          -7,
          -4.6778623449547885,
          -4.678955185194013,
          -4.677771150682378,
          -2.8318246230659576,
          -2.727682314264488,
          -2.3835517923802207,
          -3.373346748955261,
          -3.9047515997788804,
          -3.290837234488692,
          -4.678117587090789,
          -4.378851946448881,
          -4.209157423347539,
          -2.598127683341974,
          -2.2143383709237106,
          -7,
          -4.680362712634757,
          -3.904913807999268,
          -1.812896980222412,
          -7,
          -7,
          -4.088915346604906,
          -3.2719041290077024,
          -7,
          -3.784260582566084,
          -3.6474185374117942,
          -2.6185578527092255,
          -2.706673799140085,
          -2.896988214036109,
          -2.6392872259102367,
          -3.433556500023043,
          -3.9035421416209206,
          -1.9821451783870967,
          -3.8357539675193832,
          -4.677807630689279,
          -7,
          -3.905238042799656,
          -4.379495876529263,
          -4.077849178425541,
          -7,
          -3.027937365993989,
          -7,
          -3.373713078578499,
          -4.075966455076692,
          -3.8164235991034614,
          -2.157864117754172,
          -4.2068798223063,
          -3.51113941243943,
          -3.3852571999019094,
          -3.9883448780958206,
          -3.9167083091985275,
          -4.387380926770457,
          -3.5763324887711336,
          -3.907805343672493,
          -3.273045812803421,
          -2.871412168783088,
          -3.6399209285998153,
          -3.0059791649763743,
          -7,
          -2.9923597003927576,
          -2.4235129951027297,
          -2.894303472796426,
          -4.679436982175699,
          -2.6357276141635664,
          -3.171973141806358,
          -2.8245789062256326,
          -4.381042842771909,
          -3.0750303788179263,
          -4.203295851245676,
          -3.7273604892915437,
          -2.478475272065988,
          -2.7190490484802736,
          -7,
          -3.3940925389475614,
          -2.2553478969066205,
          -2.8092630297861527,
          -7,
          -4.376659063797446,
          -3.726111136977972,
          -3.979366242396161,
          -4.378316122321516,
          -4.6812864740280835,
          -4.678682232836399,
          -3.983057679286212,
          -2.711980581220753,
          -2.8551009287477815,
          -2.7248289875184812,
          -3.059992840480373,
          -4.67728750108277,
          -3.7776261605789925,
          -3.3805820432409472,
          -4.083681747274301,
          -3.7235012792268165,
          -4.377906998042317,
          -3.6135775721070993,
          -3.8438643110807478,
          -3.484433310991099,
          -7,
          -4.677305761793444,
          -4.678973375919766,
          -7,
          -7,
          -4.076667745482861,
          -3.735146273829275,
          -2.0783434964707808,
          -4.376503960252927,
          -4.075811472000948,
          -7,
          -4.3787793310606915,
          -3.3817736974197277,
          -3.7281553051362044,
          -7,
          -3.6038207385595746,
          -3.224064991755207,
          -3.36802996095516,
          -3.1815087582709314,
          -2.831245910079074,
          -4.689823667987483,
          -4.201296961003463,
          -7,
          -2.0659647007387014,
          -2.9277773123297144,
          -2.319807004048228,
          -4.2062320243263,
          -2.7321418065585115,
          -4.207131483023054,
          -4.378933624250314,
          -3.9021298594796567,
          -2.724811610504629,
          -2.8879894216431103,
          -2.487705415687573,
          -2.879129136471997,
          -3.069595713827564,
          -3.1688812344644344,
          -3.536594512043907,
          -4.678882414670736,
          -3.540365232436269,
          -3.2839358508812513,
          -2.9979365499064756,
          -7,
          -3.7258753488678242,
          -3.4078022359577385,
          -4.679963619914295,
          -3.688882348427024,
          -7,
          -2.7781159404537976,
          -2.9592447613165698,
          -3.840965941921735,
          -2.799113613408675,
          -3.511856634342237,
          -2.1867531119226142,
          -1.7112783140789294,
          -3.5998830720736876,
          -2.5579145953128126,
          -4.201479058946089,
          -3.4793773350238864,
          -3.26027587412959,
          -3.514406063663669,
          -2.9226634989052327,
          -3.0023475200438834,
          -2.8276636767360315,
          -3.110669438809445,
          -3.0124067613119134,
          -3.6149850498855733,
          -2.5071985596277795,
          -3.168338191237685,
          -4.376686429261915,
          -7,
          -7,
          -3.0992036383921366,
          -2.9310762969506765,
          -3.5046158296730847,
          -4.38147609027503,
          -3.3346023369658453,
          -4.680072499759905,
          -3.3911998401087744,
          -3.7266276095452504,
          -1.8087365536104805,
          -3.904769625906595,
          -3.5710455540362562,
          -3.534026106056135,
          -7,
          -2.7585206179623727,
          -2.9091425428224214,
          -2.8704208306755414,
          -7,
          -3.328941986935604,
          -2.595193927668544,
          -2.4458018231993797,
          -7,
          -3.730064136632307,
          -7,
          -3.226608496506789,
          -2.5873749918376694,
          -2.653220833513314,
          -3.546251743863432,
          -4.2010965650394665,
          -7,
          -3.0420239272488674,
          -3.638598157276648,
          -4.205438956780589,
          -3.604000925049828,
          -3.456939314742928,
          -3.6391603743363103,
          -2.244485605507447,
          -7,
          -7,
          -2.8868833464580277,
          -3.034538424505647,
          -4.216165902285993,
          -3.3881604302759483,
          -2.8503641084073252,
          -2.397698838735479,
          -3.3397534541711176,
          -2.7517196188765767,
          -2.435729215832507,
          -2.8380654566879544,
          -4.009586857130916,
          -3.5725295541760693,
          -3.3954312402469182,
          -3.183424073896676,
          -2.103917521649834,
          -3.881340267564292,
          -3.372198327443658,
          -2.19368304673689,
          -3.8083760439961956,
          -3.324938033068716,
          -4.229647718448569,
          -3.305819930078247,
          -2.5047923325915096,
          -2.9084850188786495,
          -1.9329058771013887,
          -3.9907890290468746,
          -3.551768939006816,
          -3.113943352306837,
          -4.392468317043854,
          -2.0837428200895722,
          -3.1976763157398866,
          -2.7075517636469266,
          -3.0622695903007724,
          -3.454858712881094,
          -4.389927647380955,
          -3.4503004403307562,
          -3.783538338997308,
          -2.7302976620971497,
          -2.511841381231268,
          -2.6428452266208504,
          -3.5701476202881377,
          -3.224241622388078,
          -2.341780233246614,
          -3.3963895768324193,
          -3.235738809944795,
          -2.538527803450734,
          -3.4147271193671846,
          -1.8246625809658572,
          -2.969538119736259,
          -2.9761422612774444,
          -2.3946566209585978,
          -1.5570719148008938,
          -7,
          -4.688126039915543,
          -1.955369780836698,
          -2.9663197853048757,
          -7,
          -3.158566223619323,
          -3.7357094243870126,
          -3.9360611166099884,
          -3.985345625806566,
          -2.7009919975949694,
          -2.112371098999698,
          -3.082405952527268,
          -3.9018305180672983,
          -2.348818836031915,
          -2.840751399088864,
          -1.714214894373381,
          -7,
          -3.922847951771373,
          -2.8839046692579333,
          -3.1311475216888907,
          -3.8999207687549164,
          -2.8192627477807326,
          -2.8358079642440264,
          -2.7234799365560174,
          -3.328388098944101,
          -1.960426769803533,
          -3.2096368533656783,
          -2.492137764338401,
          -2.656479275172621,
          -3.2678032983436163,
          -1.5104049697509885,
          -1.9071020789098865,
          -2.884966913359453,
          -3.1849171639857268,
          -4.20390278111006,
          -2.2689030342501972,
          -2.9508514588885464,
          -3.9802501704106534,
          -7,
          -7,
          -4.200129722638182,
          -7,
          -4.417621137863894,
          -2.011953813769505,
          -3.188286757912536,
          -2.347442339513145,
          -4.2023884051228775,
          -3.544378143957812,
          -2.545111375970089,
          -3.4397974472398007,
          -3.2140133047697534,
          -4.202597285692431,
          -2.8287507574419504,
          -7,
          -1.9751876306754927,
          -2.8635692587023267,
          -4.080229524884867,
          -3.738428189717044,
          -2.72347007482365,
          -3.244736448694373,
          -2.69115730066159,
          -4.383546091724474,
          -7,
          -3.2778546939989375,
          -4.381106051624685,
          -3.6416543530806247,
          -3.7354746964258965,
          -2.507509902999208,
          -4.67728750108277,
          -3.115042880588522,
          -7,
          -4.3782161497498775,
          -3.4059035502713977,
          -2.113966497603125,
          -2.59396236274275,
          -4.6775613311560935,
          -3.656690453523865,
          -2.444695882802925,
          -3.906182347343318,
          -2.9910870235879203,
          -7,
          -3.2898296651030074,
          -2.3993302273046977,
          -7,
          -4.378334296680487,
          -4.218010042984363,
          -3.432292125651154,
          -3.2680176943347163,
          -4.204554060135243,
          -3.9901345373455035,
          -3.3840934407581154,
          -4.682515107334342,
          -3.0769422219858713,
          -2.327316515095668,
          -3.567365472210331,
          -4.678245151927042,
          -3.0223596265107244,
          -2.8954139125550196,
          -3.650175015279832,
          -2.763706024166811,
          -4.681702430297234,
          -7,
          -3.0496135189928455,
          -3.4619484952037616,
          -1.94185981840554,
          -3.2838837251182076,
          -3.8050078342861804,
          -3.989075878689533,
          -4.682298542107937,
          -3.335706570895733,
          -3.6401560685761862,
          -3.3628429259206896,
          -4.379767672984586,
          -3.135944978136096,
          -2.6328979269485404,
          -4.08487106917708,
          -7,
          -2.6961440038114928,
          -1.9990152048344794,
          -3.165447834096422,
          -3.3514449075074313,
          -2.785614524946824,
          -3.398139738199443,
          -3.038909793675739,
          -3.572147472450605,
          -2.7791754592501485,
          -3.1947917577219247,
          -3.988005704058146,
          -3.5093459189172926,
          -7,
          -7,
          -3.413709458318653,
          -4.000156317877956,
          -3.5375942467731942,
          -3.552503086780776,
          -2.413748485257935,
          -3.7893427015222065,
          -3.342373326372252,
          -2.342342859505044,
          -3.3911956392577416,
          -3.1067137971904137,
          -3.5355834327235693,
          -3.257776317896286,
          -7,
          -2.623850648027604,
          -3.1572972322407757,
          -3.937768567049936,
          -7,
          -3.309062090847971,
          -2.9598870060542675,
          -2.510223434172348,
          -3.4527242421699578,
          -3.726428342031079,
          -7,
          -4.677752909529766,
          -7,
          -4.678318029299685,
          -4.679309766985715,
          -3.1365742333036484,
          -4.211663292650559,
          -3.6121743576976613,
          -3.6811778981450454,
          -7,
          -3.679309766985715,
          -3.6805893065823088,
          -3.22034258343606,
          -3.8365230388765568,
          -3.05125779319857,
          -3.6468134968556387,
          -2.2627366580503083,
          -3.3431541139519694,
          -3.7587941814657166,
          -3.728272597895017,
          -4.677807630689279,
          -3.8006741277327873,
          -4.079624362195828,
          -7,
          -2.2970055092917994,
          -3.2202433892972593,
          -3.360241681417266,
          -3.1713133807585514,
          -3.998555743525529,
          -3.115934425853832,
          -4.2015518767496935,
          -4.07710434122473,
          -3.1617026236005494,
          -4.377133154598361,
          -3.1104297662155624,
          -3.182584042752654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4288526229295515,
          -7,
          -7,
          -7,
          -4.219217657022907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.271849734966777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1714924272529013,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.240967118022486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.913124790389559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.162848068856491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.22511535697073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.971507781711256,
          -7,
          -7,
          -7,
          -7,
          -4.056465254980514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6726519228400023,
          -7,
          -4.175801632848279,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.372175286115064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.923036668670786,
          -7,
          -7,
          -7,
          -3.640978057358332,
          -2.4794143960621255,
          -7,
          -7,
          -4.283919055485216,
          -7,
          -3.8918161195248606,
          -7,
          -4.6967319740211,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3636746441274314,
          -7,
          -7,
          -7,
          -2.968015713993642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.552546547955661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.754707550504426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.878019807285231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.62797998982998,
          -7,
          -3.8189513116401725,
          -7,
          -7,
          -7,
          -7,
          -3.805908455074197,
          -3.490941205356787,
          -7,
          -7,
          -7,
          -3.9028727854460796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6814221557210085,
          -3.810478671681402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.247850566973534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7541953881898387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.332680789215245,
          -7,
          -7,
          -7,
          -4.116159272795033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.669363376415619,
          -7,
          -7,
          -7,
          -4.532588780613535,
          -7,
          -7,
          -4.003762020828246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.749768512958104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.385045916619704,
          -7,
          -4.043217758875041,
          -7,
          -7,
          -4.022139570398392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4205333226934997,
          -7,
          -7,
          -7,
          -7,
          -4.303466057107086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5841106281854485,
          -7,
          -7,
          -4.321971055526301,
          -7,
          -5.001426483564586,
          -7,
          -7,
          -3.7781150576687677,
          -4.926944073016233,
          -7,
          -4.028754203400251,
          -7,
          -4.690477836866783,
          -7,
          -7,
          -7,
          -7,
          -4.6661902641189865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.465397724292443,
          -3.906712056942964,
          -7,
          -7,
          -7,
          -4.768190258560652,
          -7,
          -7,
          -7,
          -7,
          -4.459432698349686,
          -4.028367883697062,
          -7,
          -3.4999008177352655,
          -4.012377857151723,
          -4.688126039915543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.388261100540889,
          -3.739018245883481,
          -7,
          -4.150190458013526,
          -4.644030411318001,
          -3.868185977531273,
          -7,
          -7,
          -7,
          -4.005242495654679,
          -2.196863537872375,
          -4.202644950872879,
          -4.106428894793411,
          -3.5400790888041724,
          -7,
          -4.338994048444886,
          -3.2690924557404304,
          -3.408225827891581,
          -3.0835026198302673,
          -7,
          -7,
          -4.300763908796391,
          -7,
          -7,
          -7,
          -3.9599234024401224,
          -7,
          -3.686261179638182,
          -7,
          -3.676693609624867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1486026548060932,
          -7,
          -7,
          -7,
          -3.7299203662157314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.723701893991268,
          -3.694956002249818,
          -7,
          -7,
          -4.152930136422725,
          -7,
          -3.737113094305961,
          -7,
          -7,
          -7,
          -2.5514499979728753,
          -7,
          -7,
          -7,
          -7,
          -4.046026669702541,
          -7,
          -3.1670217957902564,
          -2.9612052955616837,
          -5.097472494247438,
          -4.793811330864881,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.793580867368156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.74020473550745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.11847091885741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.926406762728239,
          -7,
          -3.475525915039281,
          -7,
          -3.3666097103924297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7210476638575587,
          -3.5737995822157407,
          -7,
          -7,
          -4.064944426038617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.074322643568778,
          -7,
          -7,
          -7,
          -4.540054042264075,
          -7,
          -7,
          -4.556688368835233,
          -7,
          -3.2581581933407944,
          -7,
          -7,
          -3.1085650237328344,
          -3.241878383159056,
          -3.737987326333431,
          -7,
          -7,
          -3.118430077122089,
          -7,
          -3.932372282147914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1355778533449294,
          -3.8209891764160497,
          -2.2767079331012847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.50982058221228,
          -7,
          -7,
          -7,
          -3.5476516583599693,
          -3.5299434016586693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.437052595060992,
          -7,
          -7,
          -7,
          -3.9582611890127564,
          -4.452629651622018,
          -4.146902869928199,
          -3.6572471298837166,
          -3.209073241435683,
          -3.0010773939545063,
          -3.657315422696258,
          -7,
          -7,
          -2.3926348919812734,
          -2.7334816953436976,
          -3.241515351722801,
          -7,
          -7,
          -4.133650660953161,
          -7,
          -2.719799490227212,
          -4.234694407142218,
          -7,
          -3.453387843845202,
          -2.209663496366329,
          -4.443982303007413,
          -4.136371723492323,
          -7,
          -3.9808362964839756,
          -3.8451445690733057,
          -3.9613894503284546,
          -3.537636744269928,
          -3.744887285866299,
          -7,
          -7,
          -3.7396988963507187,
          -3.9796697538222423,
          -4.1352758017868725,
          -2.994478461422008,
          -4.131762977530949,
          -3.9838216681692966,
          -4.4380516115621225,
          -2.7644850574458855,
          -3.5900452854920486,
          -3.325215588977838,
          -3.0269416279590295,
          -7,
          -3.013525366277892,
          -7,
          -7,
          -3.6291910861512395,
          -3.404755990537958,
          -7,
          -1.9880584847930771,
          -3.6232049723732787,
          -2.6686628982503926,
          -3.3400473176613934,
          -7,
          -4.140994858693246,
          -3.5136910100964522,
          -4.44271488292848,
          -4.443966678374578,
          -7,
          -7,
          -3.662899426362577,
          -2.9125380115265718,
          -2.9253041562091404,
          -4.434951936087753,
          -4.43362584503636,
          -3.0014203636304737,
          -4.43261658390379,
          -2.611410087031918,
          -3.8880671134074367,
          -4.434425179874951,
          -4.166030272340217,
          -2.7764617563695646,
          -7,
          -2.9547398536507683,
          -7,
          -7,
          -2.5095481300541147,
          -3.378170700063069,
          -4.1365620365899805,
          -7,
          -3.0697420760416447,
          -4.441396602854368,
          -2.838658761600265,
          -3.046827431231041,
          -3.499656540441669,
          -7,
          -2.0815386661433966,
          -3.3018110230174766,
          -2.174362462314216,
          -3.7345438163285243,
          -7,
          -3.261991039833867,
          -3.4532265779981905,
          -2.7894756959671048,
          -2.51736804348248,
          -4.435653285326419,
          -2.9100691775662204,
          -7,
          -4.432568465297358,
          -7,
          -2.73561099552132,
          -7,
          -3.462368045522524,
          -7,
          -2.807337679149665,
          -1.9766977434027933,
          -4.440184654070886,
          -7,
          -3.9689496809813427,
          -3.603020580277891,
          -2.8729613626370636,
          -4.4434507498835405,
          -7,
          -3.982029891281814,
          -3.700718135713169,
          -2.9577621734819206,
          -4.443716607769532,
          -3.4719723825183952,
          -2.7156064510285387,
          -7,
          -4.048532433967157,
          -4.440751700479185,
          -3.921568567164905,
          -3.667935234429692,
          -3.565272115090149,
          -3.5833829982144385,
          -4.434281408136301,
          -7,
          -2.188267686917002,
          -2.8904063096687422,
          -7,
          -4.43274487412905,
          -3.744240812483908,
          -7,
          -7,
          -7,
          -7,
          -3.9551583869257936,
          -2.2662552222976506,
          -2.891088504138878,
          -2.395995993135859,
          -3.116870521097874,
          -3.839336611526406,
          -3.4923539602839244,
          -7,
          -7,
          -7,
          -3.181351871191431,
          -2.750456093844882,
          -7,
          -7,
          -7,
          -2.4235165556085847,
          -7,
          -7,
          -4.154347881220995,
          -3.603731904850924,
          -7,
          -2.9860145716111237,
          -7,
          -4.4642211975344495,
          -3.9852617672492965,
          -4.454433228116589,
          -3.277889231857295,
          -3.9749566587701834,
          -3.9621956462968417,
          -2.6424335601227265,
          -3.835785662062868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.397617270024851,
          -7,
          -3.659735602456012,
          -7,
          -3.2726196065078565,
          -2.2814544937302186,
          -4.1422486417643345,
          -3.651444166323796,
          -3.638631858985767,
          -4.4491234131845605,
          -3.9849471533672807,
          -4.450926202822742,
          -3.0558062980983522,
          -4.446801142847091,
          -3.9738049481030795,
          -3.1883377790407526,
          -4.4388744689064445,
          -3.8927066378056656,
          -7,
          -2.6980024692403273,
          -3.678047714275594,
          -3.3641219830507363,
          -7,
          -3.5852350633657752,
          -7,
          -3.731548476260331,
          -4.439916624576895,
          -4.150034573810802,
          -4.437052595060992,
          -7,
          -4.507207993183979,
          -4.460190975748579,
          -7,
          -2.828270112376824,
          -2.4675593699303873,
          -2.4212410860808884,
          -7,
          -7,
          -4.43713196609433,
          -7,
          -7,
          -7,
          -7,
          -4.138870857319504,
          -3.310505887547859,
          -2.926156591030201,
          -3.3994141053637703,
          -3.2485958522995344,
          -7,
          -7,
          -3.6613709124303133,
          -4.4463662736803595,
          -4.1314903456949486,
          -7,
          -7,
          -3.974849294909796,
          -7,
          -7,
          -7,
          -7,
          -3.959025483806947,
          -7,
          -7,
          -7,
          -2.5186401699272873,
          -7,
          -3.9554311698573885,
          -7,
          -4.4359557908892375,
          -3.9645738809210544,
          -4.44070447487986,
          -7,
          -4.441852175773292,
          -7,
          -3.375160455307423,
          -3.0219891049716843,
          -2.9756943410739467,
          -7,
          -7,
          -7,
          -2.2161844940573054,
          -3.058775141896555,
          -2.307070834815396,
          -7,
          -2.339299816876127,
          -3.9665640840973104,
          -4.436226275270583,
          -7,
          -3.1459490312866523,
          -2.685443151803357,
          -2.738829325480311,
          -3.1596492103844547,
          -2.8908497591813425,
          -3.4084249945620684,
          -4.140366607190387,
          -4.434297385124508,
          -7,
          -3.4279284993570225,
          -3.563629384689655,
          -7,
          -3.180906049868878,
          -7,
          -7,
          -4.150925214104221,
          -4.432119101024855,
          -2.679473322529414,
          -3.2896013381314955,
          -4.145957386466343,
          -4.4675045136258955,
          -4.450526229129723,
          -2.2325572566707454,
          -2.26745232159952,
          -4.4349678884278125,
          -3.7588929767211523,
          -7,
          -7,
          -3.881883722962457,
          -7,
          -3.0071134864303173,
          -2.8499456188070376,
          -4.514853112350159,
          -4.154484837032048,
          -3.7774413227977166,
          -3.1180692300331043,
          -2.6022769596369226,
          -2.4721017822730618,
          -7,
          -7,
          -7,
          -3.3627651265554266,
          -2.398139311220743,
          -7,
          -4.440672988293759,
          -3.561846442129789,
          -7,
          -4.45804831917427,
          -4.13697409575783,
          -2.497150888262362,
          -7,
          -4.445339498742793,
          -2.521777452137303,
          -4.1404609028733015,
          -3.0151743839266087,
          -2.8255200663675057,
          -3.028695580205779,
          -7,
          -2.058253676825634,
          -3.560749934897699,
          -3.4712116739886065,
          -7,
          -4.444029173533431,
          -4.134384320553547,
          -2.502049207161313,
          -3.559999668676523,
          -3.9012948171655673,
          -4.458123944661062,
          -7,
          -7,
          -2.3922759649804375,
          -4.135498386458118,
          -7,
          -7,
          -4.190653797183291,
          -7,
          -2.1040376731383583,
          -7,
          -7,
          -2.999031628930849,
          -2.997868756155348,
          -4.053491403339438,
          -3.789665306746111,
          -3.614286511004289,
          -2.0121412609866733,
          -3.0141130613510034,
          -2.6186675516888123,
          -2.2061016624806835,
          -3.17653738805171,
          -7,
          -3.669558604643371,
          -3.596085536398726,
          -3.410136548836324,
          -2.450127508295634,
          -3.726328673977254,
          -2.75239125435271,
          -2.3439553576704903,
          -3.9701724724467833,
          -3.11632173560914,
          -7,
          -3.1843079803901997,
          -2.6135439287814037,
          -2.5709391184171992,
          -3.251837240301341,
          -3.601734148260105,
          -3.426384731849464,
          -2.603425452536781,
          -4.459678907011742,
          -2.0870630004271984,
          -3.3336487565147013,
          -3.3015285611502345,
          -2.8707787029439324,
          -2.8458109383710863,
          -3.756225197591558,
          -2.984887201064328,
          -3.1346232896624375,
          -2.644652967661531,
          -3.116337886260724,
          -2.4208937149668244,
          -7,
          -2.6462789366413837,
          -2.543381533214589,
          -3.304300406296957,
          -2.372209056194802,
          -2.625321558245327,
          -2.554685971338815,
          -1.8541116197418506,
          -3.607037804850964,
          -4.472961119019948,
          -3.0613722606710536,
          -1.8600402748354252,
          -1.955369780836698,
          -7,
          -7,
          -1.9784848578622045,
          -7,
          -2.675486111089519,
          -3.268933152150145,
          -4.193639321922583,
          -3.540610986582727,
          -2.3907490483465703,
          -1.4136036413282196,
          -2.8994611250867406,
          -7,
          -3.2422514706002343,
          -3.835563751669097,
          -2.3248192261464693,
          -7,
          -3.3913251836514897,
          -2.792063924327391,
          -3.7312865070964243,
          -7,
          -3.0045134565169995,
          -2.3796810920364257,
          -2.8188354859318134,
          -3.3093746249166704,
          -1.8633124773794558,
          -2.0018841438745514,
          -2.6567382459105713,
          -2.1131439144706006,
          -4.441899276742038,
          -1.1213559191731346,
          -2.6219268392563837,
          -2.3558663952923395,
          -3.147983575558577,
          -4.438114963661999,
          -2.649964478499643,
          -2.945267692378855,
          -3.5518158223510157,
          -4.133858125203335,
          -7,
          -7,
          -7,
          -4.200864172135313,
          -2.01596835978946,
          -3.1588748984559967,
          -1.938057301280704,
          -7,
          -3.8527543908053885,
          -2.5166837422777864,
          -3.3485444903288952,
          -3.8543212266573574,
          -3.958643504540717,
          -2.926802604741088,
          -4.433609843323718,
          -2.445300606978883,
          -2.6101205079956773,
          -3.74126193189077,
          -7,
          -2.680946811516913,
          -3.554413439581362,
          -2.562600715951575,
          -4.444279064276847,
          -7,
          -2.9936766592628796,
          -7,
          -4.441899276742038,
          -3.754302457110145,
          -2.931268942740345,
          -7,
          -2.9976696969261343,
          -7,
          -7,
          -3.2881702892508025,
          -2.22618371217853,
          -2.536940995549226,
          -7,
          -7,
          -2.472310103458907,
          -7,
          -2.977679362510885,
          -7,
          -2.9872654962543743,
          -2.281260687055013,
          -7,
          -7,
          -4.1614428741396345,
          -2.9174591708031667,
          -3.0812364901250664,
          -4.138192136407885,
          -3.8500639271210804,
          -2.9534946926692696,
          -4.440657244144619,
          -3.2234501285027197,
          -2.5486182064918386,
          -3.5464604029452773,
          -7,
          -2.6911104914874224,
          -2.69539410829111,
          -4.456639279342896,
          -2.703635237583896,
          -7,
          -7,
          -3.390972935985586,
          -3.5549432055045624,
          -2.0644721772204484,
          -2.7275708300415333,
          -3.8824249177039785,
          -3.97320484934175,
          -7,
          -3.5724972715840555,
          -3.3975766285797615,
          -3.557734381817368,
          -7,
          -2.8892714106403634,
          -2.5194832735069945,
          -4.448428035011636,
          -7,
          -2.5403827297856556,
          -1.8276261561842277,
          -3.2568026105565364,
          -4.159852819341846,
          -2.9210823527319962,
          -4.168821463009824,
          -3.903496947335859,
          -4.4472510844758615,
          -2.416933359904303,
          -3.0460350401114673,
          -7,
          -4.44617976779828,
          -7,
          -7,
          -3.7401432934391092,
          -7,
          -3.401463205016831,
          -3.7697021868101284,
          -2.3207996990859354,
          -2.9947872586547124,
          -3.1507458562177173,
          -2.537988791073051,
          -4.4937925310696665,
          -2.7105478667613006,
          -7,
          -3.411252282521769,
          -7,
          -2.656915154219173,
          -3.171740379820262,
          -2.991516800560143,
          -7,
          -3.0209287974587418,
          -3.7460578706127543,
          -2.3513910114435865,
          -3.4006007781992125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.435047641339964,
          -3.1190314237972894,
          -7,
          -4.155244917176186,
          -3.9614210940664485,
          -7,
          -3.3936230567743357,
          -3.1359432138552865,
          -3.964746621944139,
          -4.138223728353917,
          -2.6481797995677563,
          -2.905734219276379,
          -2.37726626057981,
          -3.468588985513581,
          -4.492830205678688,
          -3.9637248815548944,
          -4.43240803142708,
          -3.221530150162211,
          -3.3597722616567713,
          -7,
          -2.4990106464473296,
          -3.162438624324789,
          -3.1853847390413126,
          -2.970361406717804,
          -7,
          -3.4228583372213346,
          -3.9568085108888016,
          -3.3931762188759738,
          -2.927626962444954,
          -3.587775086454419,
          -3.4925369002881332,
          -3.034936816821393,
          -4.142561522784965,
          -4.431412016420789,
          -3.8207923810882036,
          -7,
          -3.8009918612601714,
          -7,
          -3.5129510799724906,
          -3.8818409683249273,
          -3.8642143304613294,
          -3.814580516010319,
          -3.054166019538618,
          -4.178911575955362,
          -3.3450206615421147,
          -7,
          -7,
          -1.7606681875250838,
          -3.1694392989789413,
          -3.857030798272624,
          -7,
          -7,
          -3.5098742850047193,
          -7,
          -2.57103173507351,
          -3.8324131018851166,
          -7,
          -3.7212333700172775,
          -2.89186034424264,
          -7,
          -7,
          -7,
          -3.90156729002845,
          -3.861653870213911,
          -3.8270460170047342,
          -3.8993224739323775,
          -7,
          -7,
          -7,
          -3.82795052830263,
          -7,
          -7,
          -2.501646014590592,
          -3.3256524705723134,
          -3.6110857334148725,
          -7,
          -3.101882679381091,
          -7,
          -3.353595694717235,
          -2.825047270292454,
          -7,
          -3.1078880251827985,
          -7,
          -7,
          -3.958085848521085,
          -3.557266528869904,
          -3.883320678382975,
          -2.7042659439453036,
          -7,
          -2.8200136970607947,
          -7,
          -7,
          -7,
          -3.937066312017428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.981637424655769,
          -3.2314950764482293,
          -7,
          -7,
          -3.146334793350271,
          -7,
          -3.5756496147552195,
          -3.530498519797741,
          -7,
          -3.9333860419030544,
          -3.280406843747666,
          -3.8080082999104,
          -3.3092041796704077,
          -7,
          -7,
          -2.980555227710052,
          -2.785110715691334,
          -7,
          -7,
          -3.636688447953283,
          -7,
          -3.653309012938479,
          -2.522956290942878,
          -7,
          -7,
          -2.035607069257544,
          -2.5882250060000986,
          -1.6303389406217021,
          -3.204052118841129,
          -7,
          -2.6745549761273852,
          -3.5839352025367517,
          -2.6160551949765862,
          -2.1625010435296215,
          -3.036162949823816,
          -2.235550402595322,
          -3.841922311679451,
          -7,
          -7,
          -3.229937685907934,
          -7,
          -3.616842959534867,
          -3.8677620246502005,
          -2.8295610562993927,
          -2.8098231096591526,
          -7,
          -7,
          -7,
          -3.865518519074774,
          -3.3998034713645615,
          -7,
          -7,
          -3.4285127466072924,
          -3.4955443375464483,
          -2.7509367354343515,
          -3.8476960207341655,
          -3.3633612324937796,
          -2.7275064998451697,
          -7,
          -7,
          -7,
          -4.064836376044476,
          -7,
          -3.239049093140191,
          -3.519653016141642,
          -7,
          -3.53668467262093,
          -2.8426766923530917,
          -2.90515782541163,
          -7,
          -7,
          -3.9885440937056678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3901174996631,
          -3.2055523408496573,
          -2.509354301527002,
          -4.030194785356751,
          -3.2364112877439664,
          -3.6518269976896685,
          -7,
          -7,
          -3.8615344108590377,
          -7,
          -2.8200977060751757,
          -7,
          -7,
          -7,
          -2.868174040859638,
          -7,
          -7,
          -7,
          -3.390876255625289,
          -7,
          -2.7215750975918596,
          -7,
          -7,
          -7,
          -7,
          -4.128043673826458,
          -7,
          -3.8303319934519617,
          -3.4356701134142202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8531199842175665,
          -7,
          -3.6981701664125586,
          -7,
          -2.8998205024270964,
          -3.120974200048109,
          -7,
          -3.3279308045542364,
          -2.7564571100024473,
          -7,
          -7,
          -3.3981136917305026,
          -3.587542601193619,
          -3.859738566197147,
          -3.875697761980208,
          -2.51291667836589,
          -7,
          -3.7206140404234618,
          -7,
          -2.226377657373889,
          -2.9916690073799486,
          -3.365612764228607,
          -7,
          -4.2494674142722895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.057475915826254,
          -7,
          -7,
          -3.441904509867698,
          -3.9792447784093805,
          -3.41520713590843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5096504795465826,
          -3.9873757445117697,
          -3.5217359059530144,
          -3.7973368007753496,
          -7,
          -3.530391821401041,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.794599568642681,
          -7,
          -3.8021577531869615,
          -7,
          -7,
          -7,
          -3.8356905714924254,
          -7,
          -7,
          -3.5519783121038806,
          -7,
          -2.505919581839303,
          -3.6170702701898696,
          -3.5833121519830775,
          -3.8061121101690913,
          -7,
          -2.799455426978892,
          -3.2971036501492565,
          -2.869459892616723,
          -7,
          -3.97985934080671,
          -3.8478193472952396,
          -3.516204734761517,
          -7,
          -3.894758994371892,
          -2.371337287669071,
          -2.85314753632743,
          -3.198931869932209,
          -3.6296474104571437,
          -2.5478918606304815,
          -2.79594318285679,
          -7,
          -3.8642736968043794,
          -3.464638559095033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.879439965995217,
          -7,
          -3.4292137870854282,
          -4.157214922391151,
          -3.8605775512444156,
          -3.934801341746537,
          -3.5728135375594547,
          -3.292597537758045,
          -2.096169472880984,
          -7,
          -3.7022064378331843,
          -7,
          -3.543074235033532,
          -7,
          -7,
          -7,
          -3.0540861434129027,
          -7,
          -7,
          -7,
          -2.9575540809979275,
          -2.9602453639496735,
          -2.7799242854328723,
          -7,
          -7,
          -7,
          -3.5859117103194342,
          -3.0000434272768626,
          -7,
          -7,
          -7,
          -7,
          -3.901676231326376,
          -7,
          -2.420519244652838,
          -7,
          -3.854063011866421,
          -3.302157695941016,
          -2.993121181893369,
          -3.443681988438522,
          -2.61558977880885,
          -3.7646042932870474,
          -7,
          -2.9670076520726463,
          -4.088140027861661,
          -3.3739780274568667,
          -7,
          -7,
          -7,
          -3.190565127083142,
          -3.475307913956194,
          -3.745660225706076,
          -7,
          -7,
          -7,
          -3.0767964309148454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.903517141108291,
          -7,
          -7,
          -4.655580191171864,
          -7,
          -4.3893787479525095,
          -3.5260375792311995,
          -4.060403175459535,
          -3.322972010036008,
          -3.428426386440588,
          -2.830695571942768,
          -3.6337129099766963,
          -3.4075608494863623,
          -7,
          -4.114026862446869,
          -3.9867568098008093,
          -4.244433817983656,
          -3.529222990264051,
          -7,
          -3.4231721195548976,
          -3.872709718287906,
          -7,
          -7,
          -3.982994454658664,
          -4.620094394032491,
          -4.090927852581608,
          -3.559406022425555,
          -2.495779447167773,
          -7,
          -4.011790283886408,
          -3.211900575986455,
          -7,
          -2.7884085266163745,
          -4.005630880886649,
          -3.64834374496539,
          -3.5847510978442347,
          -3.553073530637089,
          -3.414416202952902,
          -3.6524155764759088,
          -3.5247205856840464,
          -3.6310123043958322,
          -3.325043347403704,
          -2.6970715980125615,
          -7,
          -3.229665331102911,
          -4.309239694613544,
          -2.8756399370041685,
          -2.9743441893192255,
          -2.5072131388836794,
          -1.4532725187258406,
          -2.3713068124942698,
          -4.195733648273212,
          -7,
          -4.524902179460859,
          -2.5607303312262646,
          -2.9663197853048757,
          -7,
          -1.9784848578622045,
          -7,
          -7,
          -2.00937029517419,
          -7,
          -7,
          -7,
          -3.363252530311502,
          -2.310948723918212,
          -4.264204556194133,
          -7,
          -4.031004281363537,
          -3.823539433656859,
          -3.4774197295869875,
          -7,
          -4.000218762497649,
          -3.949243590568265,
          -7,
          -7,
          -4.428879585851619,
          -3.403199740672326,
          -4.044624677304607,
          -7,
          -2.1022194978435347,
          -2.343748662446433,
          -4.230285391495177,
          -1.9802034192957039,
          -7,
          -2.458110687811594,
          -3.6608745087788024,
          -2.527077246100807,
          -4.5137197362380554,
          -7,
          -3.086137286738593,
          -3.625069132996176,
          -3.63002085111341,
          -7,
          -7,
          -7,
          -7,
          -4.04241798814325,
          -2.2881498219364174,
          -3.3079771322250884,
          -2.2790236522979446,
          -7,
          -7,
          -3.541688427827535,
          -7,
          -3.8959747323590648,
          -3.815710539788963,
          -4.058539897939781,
          -7,
          -3.6317417368754,
          -2.8515640822634887,
          -7,
          -7,
          -3.9831299247347003,
          -7,
          -3.0195316845312554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.884682104206025,
          -2.786751422145561,
          -7,
          -3.605601299868819,
          -7,
          -7,
          -7,
          -3.189714174255922,
          -3.048597158401606,
          -7,
          -7,
          -2.779987084404963,
          -7,
          -2.9421073089893555,
          -7,
          -3.873959654743353,
          -2.5143263432841403,
          -7,
          -7,
          -7,
          -3.269396182694991,
          -3.7266864665450092,
          -3.8298181874388773,
          -7,
          -3.3784584677820555,
          -7,
          -2.9332059908106287,
          -3.0446237442419464,
          -7,
          -7,
          -3.0151734029146566,
          -2.8804801242258704,
          -7,
          -3.5986810989071634,
          -7,
          -7,
          -7,
          -7,
          -2.936027951220748,
          -2.9407654356312176,
          -3.6893088591236203,
          -7,
          -7,
          -7,
          -7,
          -3.7702627381705933,
          -7,
          -3.1248301494138593,
          -2.579068708419333,
          -3.865991800126275,
          -7,
          -2.6025302223541824,
          -2.5701116642934236,
          -4.000130268805227,
          -3.9119029960440326,
          -3.6377898293622293,
          -7,
          -7,
          -3.8614746688571686,
          -3.2662839740877176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.458698268402751,
          -7,
          -3.544378143957812,
          -7,
          -3.3943093735350707,
          -3.901621764093357,
          -4.308628432599052,
          -3.334189114934161,
          -7,
          -2.8564771400530096,
          -7,
          -3.1836114492184326,
          -7,
          -2.666900712558807,
          -3.418425594468589,
          -7,
          -7,
          -3.1048284036536553,
          -3.007503929323978,
          -3.231342137903896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.812445402872756,
          -3.785044958331544,
          -7,
          -3.5942267574809135,
          -7,
          -7,
          -7,
          -3.345569756056392,
          -3.84060787900929,
          -7,
          -3.219898739044966,
          -3.3978241813658694,
          -3.0947039943211667,
          -7,
          -7,
          -7,
          -7,
          -3.1216536240371213,
          -7,
          -7,
          -3.293292754890996,
          -3.2374809016410064,
          -3.8376515578463923,
          -3.9644482079166607,
          -7,
          -3.924641047417163,
          -7,
          -7,
          -3.6078837443569896,
          -7,
          -4.01556930642988,
          -3.5733938349225207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1975562131535367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.208011148892835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9744541207240007,
          -7,
          -7,
          -4.726622434922055,
          -7,
          -7,
          -7,
          -7,
          -3.089905111439398,
          -7,
          -4.56397324415489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.839864403842175,
          -7,
          -7,
          -7,
          -7,
          -3.6261349786353887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8961402514420196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.448366169700718,
          -7,
          -7,
          -7,
          -7,
          -3.7204900684500517,
          -3.014205413953746,
          -7,
          -7,
          -5.124931136388365,
          -7,
          -7,
          -7,
          -7,
          -3.8675264111997434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752888040393171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.741939077729199,
          -7,
          -7,
          -3.7800111094361224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.516142987566927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8191489428071344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.022881813332031,
          -3.7165875776756923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.539916260467521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3697722885969625,
          -3.0457140589408676,
          -7,
          -3.2660552139992545,
          -2.5848963441374497,
          -7,
          -4.753141646600399,
          -7,
          -7,
          -7,
          -2.2571984261393445,
          -2.2885473000393515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.450066188704678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9585638832219674,
          -7,
          -7,
          -3.591621038213319,
          -7,
          -3.7456992266025058,
          -7,
          -3.1690863574870227,
          -7,
          -7,
          -3.730216840568694,
          -3.316808752053022,
          -7,
          -7,
          -7,
          -3.843419665204918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5637183399656776,
          -4.12668326338829,
          -5.712841556805494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.416640507338281,
          -7,
          -7,
          -2.352733653314646,
          -4.163608563431052,
          -7,
          -7,
          -7,
          -7,
          -2.942008053022313,
          -2.605305046141109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.532053338514362,
          -2.9552065375419416,
          -4.2325302427478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8292394281413893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40226138245468,
          -7,
          -2.4424797690644486,
          -1.9888332625766045,
          -1.5502283530550942,
          -3.185825359612962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.131397290957086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.296665190261531,
          -3.247236549506764,
          -2.242486213183962,
          -7,
          -5.226240851740608,
          -3.8605775512444156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8151348166368135,
          -7,
          -7,
          -7,
          -7,
          -3.6843964784190204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.030107385215894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4345689040341987,
          -7,
          -2.4756711883244296,
          -3.326745379565322,
          -2.783903579272735,
          -3.8987388901635986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.879325300784807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0017337128090005,
          -7,
          -5.065422847465759,
          -3.8756399370041685,
          -7,
          -7,
          -7,
          -7,
          -1.6541060757513173,
          -2.4649364291217326,
          -4.137433239453652,
          -4.961871766990156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.291821559582458,
          -5.010575544390487,
          -7,
          -2.425697213362591,
          -3.671913012441587,
          -7,
          -4.352568386179309,
          -7,
          -7,
          -7,
          -4.212853189947111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.420120848085703,
          -7,
          -2.946452265013073,
          -7,
          -4.353021343506187,
          -7,
          -3.5476184492199474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.9734699524609507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.178660458538169,
          -7,
          -7,
          -3.4934978835625743,
          -7,
          -1.8017955841534885,
          -7,
          -7,
          -7,
          -4.318835191727664,
          -3.594503043820089,
          -7,
          -7,
          -7,
          -7,
          -2.9472376078706666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.624642998257259,
          -7,
          -3.1344958558346736,
          -7,
          -3.158060793936605,
          -3.4679039465228003,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.216429830876251,
          -3.189069009399324,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8109042806687006,
          -3.85550938603252,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2935835134961167,
          -7,
          -7,
          -7,
          -3.7802452838653524,
          -7,
          -3.1202447955463652,
          -7,
          -3.6024506805778724,
          -7,
          -7,
          -7,
          -3.5476106349355865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.527049594892765,
          -7,
          -7,
          -3.9420452766683427,
          -7,
          -7,
          -7,
          -2.9017306917292185,
          -7,
          -3.022325250092303,
          -3.346841769642251,
          -7,
          -7,
          -7,
          -7,
          -4.09083978004538,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9764154883905163,
          -7,
          -7,
          -7,
          -2.244524511570084,
          -7,
          -3.3544926005894364,
          -2.8627275283179747,
          -4.101781431327967,
          -7,
          -7,
          -7,
          -2.456366033129043,
          -7,
          -7,
          -7,
          -3.893720160977218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.617210094557434,
          -7,
          -7,
          -7,
          -2.5452658709667757,
          -3.0585259150851116,
          -7,
          -7,
          -7,
          -3.7826875682349663,
          -3.1733319803686495,
          -3.1132428258259015,
          -7,
          -7,
          -3.5278446323871613,
          -3.079212265974205,
          -7,
          -3.794766797940821,
          -7,
          -3.878694100396108,
          -7,
          -7,
          -4.42003280277851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.629969946292171,
          -7,
          -7,
          -7,
          -2.909199319174384,
          -7,
          -7,
          -2.6255410871774854,
          -3.830396176483469,
          -3.215329068686353,
          -7,
          -3.8221026686469206,
          -7,
          -7,
          -7,
          -3.188174892591544,
          -7,
          -2.953534192980002,
          -4.0682600937746995,
          -2.8459932798880287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.962700731704341,
          -3.184807536815324,
          -7,
          -7,
          -3.4260230156898763,
          -7,
          -4.036908222920219,
          -7,
          -7,
          -3.611032559924521,
          -3.4705168322128936,
          -7,
          -7,
          -7,
          -7,
          -3.4148396983369262,
          -3.87742894078822,
          -7,
          -7,
          -3.916822284595912,
          -7,
          -3.934245881023071,
          -2.608817669502134,
          -7,
          -7,
          -2.489341120532883,
          -3.251784177257485,
          -2.206109627437567,
          -7,
          -7,
          -3.3078702684248684,
          -7,
          -3.0513730604650204,
          -2.688794375266033,
          -3.7868933252613157,
          -3.0362295440862943,
          -7,
          -7,
          -7,
          -3.8717771927051063,
          -7,
          -7,
          -7,
          -3.5117051523256135,
          -3.2633253244695006,
          -7,
          -7,
          -3.530583859645118,
          -7,
          -3.628096869190681,
          -7,
          -7,
          -3.88320703335239,
          -7,
          -3.2112540676178725,
          -7,
          -3.6101702411170487,
          -2.7028506723802965,
          -7,
          -7,
          -7,
          -4.239249413476724,
          -7,
          -3.6163179419637905,
          -3.9786825651569444,
          -7,
          -7,
          -3.3634239329171765,
          -2.884589415168878,
          -7,
          -7,
          -2.733757322895717,
          -7,
          -7,
          -3.7726883546821415,
          -3.4802225985844752,
          -7,
          -3.3053513694466234,
          -3.733919151012391,
          -2.896482124440946,
          -2.5337297026542602,
          -7,
          -4.115677065115837,
          -7,
          -7,
          -3.836387419326411,
          -7,
          -2.8541630994869776,
          -7,
          -3.792391689498254,
          -7,
          -3.2826544758187164,
          -7,
          -7,
          -7,
          -3.366111523378347,
          -7,
          -2.7291024582277323,
          -3.854973673726417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6970774544704295,
          -3.7969903905456865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14157518330082,
          -3.4924111373136824,
          -4.390104563825434,
          -7,
          -3.428418289294446,
          -3.720283369820714,
          -7,
          -7,
          -3.668572269184558,
          -7,
          -7,
          -3.5499836111596887,
          -3.3877456596088638,
          -3.2320426643848315,
          -7,
          -3.1433717301956188,
          -7,
          -3.7033773685123497,
          -7,
          -2.835388558627749,
          -3.5711845677336043,
          -3.4384315856144934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7405205860536648,
          -3.8868853589860084,
          -7,
          -3.8972971220594963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.805636766305935,
          -7,
          -3.968249394107917,
          -3.2787993137555556,
          -3.79313738833959,
          -7,
          -7,
          -3.804548308388056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.190719121464074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.737873889090549,
          -7,
          -7,
          -7,
          -7,
          -3.13795345982699,
          -7,
          -2.396442136180449,
          -7,
          -4.0559437693150855,
          -7,
          -7,
          -7,
          -4.184379080658596,
          -2.6768128503198643,
          -2.8411210108843323,
          -3.182577675890636,
          -2.8127726716782617,
          -3.002104323966667,
          -3.8120438979302267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0920887392558067,
          -7,
          -7,
          -7,
          -7,
          -2.6267394565233526,
          -3.8435753430507633,
          -3.8353734524700087,
          -3.91365493508662,
          -7,
          -3.4245118144555238,
          -2.9181614445539976,
          -7,
          -3.6950962442731257,
          -7,
          -7,
          -7,
          -3.866818802926048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2879695948354546,
          -3.398607443661825,
          -2.7283876042619606,
          -7,
          -7,
          -7,
          -3.445253824487426,
          -3.9827233876685453,
          -7,
          -7,
          -7,
          -7,
          -3.878808932359205,
          -3.194930399217724,
          -2.7880851490499095,
          -7,
          -3.5273076043950233,
          -3.0796785902590686,
          -7,
          -3.508383807427543,
          -3.298576553045992,
          -3.716927395607391,
          -7,
          -3.5895772957033327,
          -4.040760524228698,
          -3.212415920092334,
          -7,
          -7,
          -7,
          -3.4723663352268415,
          -7,
          -4.030518764843543,
          -7,
          -7,
          -7,
          -2.945632686581686,
          -7,
          -7,
          -7,
          -3.9947129854315704,
          -7,
          -3.8728785244068824,
          -7,
          -7,
          -3.9525890468356892,
          -4.2081523577244075,
          -3.6829569263012085,
          -3.985336641735613,
          -3.610005795612442,
          -2.8825245379548803,
          -3.636955706104427,
          -2.8010703387598253,
          -3.07725565617283,
          -3.0273787345298664,
          -3.9740970037941312,
          -4.107142105833073,
          -3.4394003708137886,
          -3.57355535119803,
          -3.525164458378011,
          -3.427778137224173,
          -3.9429170514135157,
          -3.949921569950947,
          -3.7324205672969377,
          -3.7155521111846324,
          -3.964118143151485,
          -3.528066796747986,
          -3.6856163571494998,
          -3.0643368455752453,
          -2.8969094467064838,
          -7,
          -3.593209359886835,
          -3.0867575075215505,
          -3.8849651982007325,
          -2.540390030364661,
          -3.9967742708613048,
          -3.4453173644300032,
          -3.4230983526454675,
          -4.021995097954464,
          -3.8683504996479683,
          -3.4662248436369283,
          -3.8124119583013405,
          -3.4148062795010126,
          -3.316557399977768,
          -2.59405527791589,
          -3.344588742578714,
          -3.1264394677377028,
          -4.1828317685399785,
          -3.641441057915941,
          -3.044191209425144,
          -0.8127436357743372,
          -2.73917663191073,
          -2.4023884497671752,
          -3.8831786174475216,
          -3.932879457823799,
          -4.218509247198932,
          -2.889772166771449,
          -3.158566223619323,
          -7,
          -2.675486111089519,
          -2.00937029517419,
          -7,
          -7,
          -3.861130992771048,
          -4.004020273253242,
          -7,
          -3.7845375828635124,
          -2.464456302618722,
          -3.706572455351785,
          -3.7901443650429005,
          -4.014142361545006,
          -3.7960189693471493,
          -3.9809164758354942,
          -7,
          -4.715608958857198,
          -3.939144699355296,
          -7,
          -3.17260293120986,
          -7,
          -3.210492416869035,
          -4.343014497150768,
          -3.0723418215173193,
          -1.9837359712978422,
          -2.21677901089471,
          -4.228189834000131,
          -2.717839278097978,
          -3.8140477209955996,
          -3.065934324651937,
          -3.7508304455965837,
          -2.211993787829547,
          -4.45494580269563,
          -7,
          -3.067535789696351,
          -3.9637595028687533,
          -3.6230251917855596,
          -7,
          -7,
          -7,
          -7,
          -3.7248900028380363,
          -3.0649444260386174,
          -3.586812269443376,
          -2.823810663374714,
          -7,
          -7,
          -3.9613894503284546,
          -7,
          -7,
          -7,
          -3.264187954179907,
          -7,
          -3.7919329546000036,
          -3.6795187436957892,
          -7,
          -7,
          -7,
          -7,
          -3.7018700729474063,
          -7,
          -7,
          -4.058463985602251,
          -7,
          -7,
          -7,
          -3.643304596306801,
          -7,
          -3.4182460340536993,
          -7,
          -3.783832143384441,
          -4.652594410868086,
          -4.158884939598661,
          -2.8743254302416155,
          -7,
          -7,
          -3.1071482757090045,
          -7,
          -3.444929147447511,
          -7,
          -3.5483894181329183,
          -2.702261911134961,
          -7,
          -7,
          -7,
          -3.8472641017707643,
          -3.7096938697277917,
          -3.802705327074352,
          -7,
          -3.8303319934519617,
          -7,
          -3.262332413822626,
          -3.137929259755552,
          -4.324447085505086,
          -7,
          -3.1050233074971167,
          -3.9408152086508013,
          -7,
          -3.1120685042681973,
          -7,
          -7,
          -7,
          -3.8795546009389743,
          -3.289226756097386,
          -3.619719265611727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.754921409665169,
          -7,
          -3.8807564445102103,
          -2.9916321136550907,
          -3.8411090844681537,
          -7,
          -2.9196756768967838,
          -2.918238282434964,
          -3.6808791744268112,
          -7,
          -3.9320507642717413,
          -7,
          -7,
          -7,
          -3.0332896932905147,
          -3.399370820918436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4429498695778618,
          -3.3420276880874717,
          -3.9182400902214147,
          -3.1465045564041887,
          -7,
          -4.299812265495717,
          -3.830716949436898,
          -7,
          -3.2163242786866677,
          -7,
          -3.859138297294531,
          -7,
          -3.391111613702803,
          -3.7023443583557687,
          -4.012710712741787,
          -7,
          -3.8596785766284483,
          -3.5265331155907425,
          -3.526798605282374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2928096654172903,
          -7,
          -3.571009672309305,
          -7,
          -7,
          -3.785472203306388,
          -3.7953933349312896,
          -7,
          -7,
          -3.897352134344313,
          -3.373463721632369,
          -3.784617292632875,
          -3.7493497605974766,
          -3.998215732370958,
          -7,
          -7,
          -3.3453737305590887,
          -7,
          -7,
          -3.8686209306148043,
          -7,
          -7,
          -3.6436007061922973,
          -3.9105710484812586,
          -7,
          -7,
          -3.7834747875822465,
          -7,
          -7,
          -3.998084887936556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3908291687001455,
          -7,
          -7,
          -7,
          -3.317723909793547,
          -4.146871903085739,
          -7,
          -7,
          -3.8078843976025314,
          -3.4786552765992944,
          -4.383294618363712,
          -7,
          -7,
          -7,
          -7,
          -2.3769986069777973,
          -4.184308060645372,
          -7,
          -4.439395859342977,
          -2.892479561925183,
          -7,
          -7,
          -7,
          -4.397035735379094,
          -7,
          -3.772413397736013,
          -3.090850169017244,
          -4.380844126464666,
          -7,
          -4.068723756708053,
          -7,
          -4.395693247503584,
          -7,
          -3.635282637998212,
          -7,
          -7,
          -7,
          -2.5864168811897237,
          -7,
          -7,
          -7,
          -7,
          -3.590013393112236,
          -7,
          -7,
          -4.114844413145024,
          -3.9065146136422175,
          -7,
          -2.7159571753585046,
          -4.409053505010069,
          -3.8876876143457504,
          -4.162639072470405,
          -4.37500481553064,
          -4.378615902031225,
          -7,
          -7,
          -7,
          -4.381042842771909,
          -7,
          -7,
          -3.3099248374464105,
          -1.1806561030119451,
          -7,
          -7,
          -4.1035984939779375,
          -7,
          -4.451356532162689,
          -3.956696564894651,
          -7,
          -7,
          -2.664594552988194,
          -7,
          -4.400261610744863,
          -7,
          -7,
          -2.8480458327664424,
          -7,
          -7,
          -7,
          -3.4086469256557654,
          -4.3778524190067545,
          -3.5113150657669396,
          -4.119964833979976,
          -3.790408325715892,
          -7,
          -3.1055665756655806,
          -4.119239388414244,
          -4.045674966769105,
          -4.3688630818982945,
          -7,
          -4.4068466330976666,
          -7,
          -4.101643985490313,
          -4.125464999685052,
          -7,
          -3.965895171299572,
          -4.378851946448881,
          -7,
          -7,
          -3.809775125133529,
          -7,
          -4.402347372848368,
          -4.386516800686768,
          -3.7344317630530526,
          -2.8051562428121297,
          -7,
          -7,
          -4.383330552045836,
          -3.9086458389071135,
          -2.814626734760099,
          -7,
          -7,
          -7,
          -7,
          -3.5885438061451786,
          -4.380536840488749,
          -3.5769399643348927,
          -3.247662360557147,
          -7,
          -3.8719230318823734,
          -7,
          -3.10156450476769,
          -7,
          -4.10809123558122,
          -4.429849137858492,
          -7,
          -4.377670439334323,
          -2.732271578226466,
          -7,
          -7,
          -7,
          -3.8194217142704345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.506101564166644,
          -4.149573180097276,
          -3.9676064709973065,
          -7,
          -7,
          -3.5801120504438124,
          -7,
          -7,
          -4.384640100826291,
          -7,
          -3.429135405190724,
          -7,
          -7,
          -7,
          -2.927543961579448,
          -7,
          -7,
          -7,
          -4.386659455414194,
          -4.369864957856229,
          -7,
          -4.3899807298820175,
          -4.404166374048794,
          -3.4987928353293385,
          -7,
          -3.704650897336816,
          -7,
          -4.375517300649672,
          -3.1489862682916314,
          -4.373849508088649,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7956158859950087,
          -7,
          -3.260423992354916,
          -4.367989193531104,
          -3.749890841271422,
          -2.823549599065664,
          -4.380066452751471,
          -4.140209402207167,
          -7,
          -4.3867842398736805,
          -4.4017623021368255,
          -4.3888646325755944,
          -3.614633607841792,
          -7,
          -4.388935581235242,
          -3.7344317630530526,
          -4.374931553978188,
          -4.439158941284675,
          -7,
          -4.502427119984433,
          -4.395116622747174,
          -3.2895695656943067,
          -7,
          -3.762516016666799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.375444125505117,
          -3.411481958597725,
          -4.399535278865296,
          -7,
          -3.9255699095433765,
          -3.959728084371596,
          -3.330486246354266,
          -7,
          -7,
          -4.372912002970106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5883697622678854,
          -3.2215772307066666,
          -3.281977758929144,
          -2.879998788198969,
          -7,
          -3.896415976473123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.391058669254854,
          -3.1914667588994208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.377051137447527,
          -7,
          -7,
          -4.140994858693246,
          -4.393188992055249,
          -3.8588829315609967,
          -4.468376873249617,
          -7,
          -7,
          -7,
          -2.6545675678603096,
          -7,
          -4.057323705369284,
          -7,
          -2.4219280998205424,
          -7,
          -7,
          -7,
          -3.4347285417797577,
          -7,
          -3.5505680437113667,
          -3.6697041939618917,
          -3.8715875285292607,
          -3.609612193237913,
          -4.076822423342773,
          -4.369623976640633,
          -7,
          -4.109291622066701,
          -3.70816585785554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.398634324538392,
          -3.153066152285301,
          -7,
          -4.106870544478654,
          -7,
          -2.754048441822166,
          -3.8845263238153,
          -7,
          -3.420584854485378,
          -7,
          -7,
          -7,
          -7,
          -4.026410680578774,
          -4.415824398888761,
          -3.984647309056901,
          -4.3941889232411695,
          -7,
          -4.400607056580689,
          -3.1824152768205396,
          -3.7027463765507442,
          -7,
          -7,
          -7,
          -4.154423973114647,
          -3.8291268019900375,
          -7,
          -7,
          -7,
          -7,
          -4.397070549959409,
          -7,
          -3.8427184234915157,
          -4.076931574555656,
          -4.382413313126267,
          -3.200560828955417,
          -3.90080393481037,
          -3.0315507573120577,
          -4.373298279614871,
          -2.574061758322598,
          -4.378161609554913,
          -3.316614266155604,
          -2.5556885987041573,
          -3.8574380412917293,
          -7,
          -7,
          -7,
          -3.465300215260955,
          -3.558078266395439,
          -7,
          -7,
          -7,
          -7,
          -3.704733761876889,
          -7,
          -4.377160490206987,
          -7,
          -4.435589573086606,
          -7,
          -3.2461887364633246,
          -7,
          -7,
          -3.514939021565843,
          -3.290066426642698,
          -3.7146859363429696,
          -7,
          -4.269740538936799,
          -3.411423275153606,
          -4.482773570074737,
          -2.850251774187875,
          -3.0206257147651727,
          -4.509498225929598,
          -7,
          -2.739643331627827,
          -3.553675014594602,
          -3.856949126259041,
          -2.8701540091435267,
          -3.1675437784943665,
          -3.136938063950316,
          -2.8927573293012037,
          -4.225154148849806,
          -3.490760871305561,
          -4.123688341667586,
          -2.794959599574934,
          -3.221028026628,
          -2.7712352239514018,
          -4.073901558314207,
          -3.4992844078926906,
          -3.403107805589821,
          -3.2010555635620643,
          -7,
          -2.985125198180277,
          -3.66774471943227,
          -3.485548612258038,
          -2.8022083732093863,
          -2.8430401435941177,
          -4.393926006585837,
          -2.7222723585019852,
          -3.139449729488457,
          -3.6298681187461233,
          -2.606026703562754,
          -3.152077602666315,
          -3.5352941200427703,
          -2.7658437971630474,
          -3.575449990754737,
          -1.9960417286434593,
          -4.136133714782523,
          -2.9114929941425376,
          -7,
          -3.1276252821015027,
          -2.4466228563122,
          -3.0710614934952005,
          -2.358777707275306,
          -3.0209881375257415,
          -3.7357094243870126,
          -4.388261100540889,
          -3.268933152150145,
          -7,
          -7,
          -3.861130992771048,
          -7,
          -3.2080301376260425,
          -3.7786034050126207,
          -2.804712615697911,
          -2.7804346952659618,
          -2.775640783247661,
          -4.0709793567886825,
          -7,
          -4.37359235519894,
          -2.3185520603058944,
          -3.6147917919564176,
          -3.274950722956219,
          -7,
          -1.9237936053901579,
          -3.765985034880714,
          -3.8634418286137087,
          -2.7881858354814497,
          -3.2876715574381974,
          -3.173105296195781,
          -3.638988159343682,
          -4.46569507426257,
          -3.5029815839207563,
          -3.074857057384218,
          -4.378434242062079,
          -3.2305707425619747,
          -1.7256314710525595,
          -4.422491349209966,
          -2.163152765510742,
          -7,
          -4.126180128666808,
          -1.1779344090499038,
          -1.7089606328996565,
          -4.069279499594718,
          -7,
          -7,
          -7,
          -3.332873313531299,
          -3.572008127378336,
          -3.797700234382403,
          -3.350190990629806,
          -7,
          -3.4901165675714214,
          -2.223246074709505,
          -7,
          -4.3952564808860215,
          -7,
          -3.0056247565585017,
          -4.368825930958845,
          -2.3025248099237756,
          -3.2539999289782684,
          -3.5983162068659507,
          -7,
          -3.7806292966955923,
          -3.697578033651113,
          -3.359076226059263,
          -7,
          -4.074615331828475,
          -4.459784382296269,
          -7,
          -4.378434242062079,
          -4.391711200121372,
          -4.418035992299948,
          -7,
          -2.987653123403257,
          -7,
          -7,
          -3.432599847601894,
          -3.0431494595623994,
          -2.9330738905666194,
          -7,
          -3.9310508467773912,
          -4.498076109372166,
          -4.380844126464666,
          -3.8085485512404054,
          -7,
          -7,
          -2.9004206824492385,
          -7,
          -3.46729355361571,
          -7,
          -4.086680093734625,
          -3.839336611526406,
          -3.676254521729781,
          -3.545041898453366,
          -3.683821230045629,
          -7,
          -3.9156636035057732,
          -3.557654214241106,
          -2.940957708931293,
          -7,
          -3.574857708475501,
          -4.115760242578008,
          -3.440926565388096,
          -3.787920738554055,
          -7,
          -3.893447344047389,
          -3.708958831371789,
          -3.9201059263234987,
          -2.7852108631125287,
          -4.410254078446397,
          -3.4271614029259654,
          -4.388243336895596,
          -7,
          -3.9982884066933058,
          -7,
          -2.547911383432036,
          -4.3735556066389325,
          -3.9204711793184543,
          -3.185765752903851,
          -4.385981427736939,
          -7,
          -3.030959348925247,
          -3.075467327907453,
          -4.129963656273567,
          -4.099300726233463,
          -3.3324990549181783,
          -3.565358624783057,
          -7,
          -4.083556365821537,
          -2.9233735621008576,
          -3.7390340870857917,
          -4.085040706742194,
          -4.38338444699495,
          -7,
          -7,
          -3.298055299407909,
          -7,
          -4.379903507451503,
          -7,
          -3.5226819908643168,
          -4.397053143018109,
          -3.4578236920187804,
          -2.5941218354020963,
          -7,
          -3.630275285757692,
          -7,
          -3.7890339749426714,
          -7,
          -3.832971700601181,
          -3.8366247257537696,
          -3.840043330603494,
          -7,
          -4.09029333131011,
          -4.382197210377454,
          -2.320045134490263,
          -4.378906400023262,
          -7,
          -4.3675236418690195,
          -7,
          -7,
          -7,
          -7,
          -3.9877556167385233,
          -3.9124523434166374,
          -7,
          -3.7724500687215876,
          -4.376540460188395,
          -4.370827547784376,
          -7,
          -4.077404246398098,
          -3.8982130849457537,
          -3.448259603224894,
          -3.2744065555635453,
          -2.421812577729229,
          -3.4563508477418177,
          -2.944546347024838,
          -3.4739429223184204,
          -7,
          -3.464638559095033,
          -3.5301081810850734,
          -4.366441636156833,
          -2.5595692527659755,
          -4.378270683096358,
          -4.3776158305597805,
          -2.753882675656707,
          -4.406948735950354,
          -3.4500265994660992,
          -4.369271532621027,
          -4.370309495258699,
          -2.9671664837366802,
          -4.368193878266824,
          -3.7377172970215713,
          -3.786414216302987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.800016123199396,
          -3.958277125547698,
          -7,
          -7,
          -7,
          -3.828058082844378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.109122754158086,
          -7,
          -7,
          -7,
          -3.6367091893856673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.189372389686722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.540954808926133,
          -7,
          -7,
          -7,
          -3.48106126027507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.649964779534759,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.88058495606498,
          -3.1841504223615846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.961753214186783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.690550461510359,
          -3.8459657615454836,
          -7,
          -7,
          -7,
          -4.1262563229823215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.489364647145191,
          -7,
          -7,
          -7,
          -3.7281101841003403,
          -3.3701274134264128,
          -7,
          -7,
          -3.7825442840100103,
          -7,
          -7,
          -7,
          -3.672051653937386,
          -3.8289390268079373,
          -7,
          -7,
          -7,
          -4.232602273130774,
          -7,
          -3.5241363765925686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.957910437209481,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.55975704883973,
          -7,
          -4.259235402198733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0253877998904075,
          -7,
          -7,
          -7,
          -3.888864386018648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058388059993333,
          -7,
          -7,
          -4.416870375999975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6116879117416305,
          -7,
          -3.7590253691608635,
          -7,
          -7,
          -3.3519345493940382,
          -7,
          -3.9373674175172897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6291036501771363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9831750720378127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9479236198317262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.241521577676051,
          -4.637037521027568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6604860157849677,
          -7,
          -7,
          -7,
          -3.9613926148060097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.717420836722375,
          -7,
          -7,
          -7,
          -4.390210679109047,
          -7,
          -7,
          -7,
          -3.701183205404621,
          -3.703635237583896,
          -7,
          -7,
          -3.1822243810265145,
          -7,
          -4.114777731971562,
          -3.958516103423041,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.528723923260994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7913397039651393,
          -7,
          -7,
          -7,
          -3.5529083326924566,
          -7,
          -7,
          -4.064514144365488,
          -7,
          -7,
          -7,
          -7,
          -4.111228898234156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8765533138467743,
          -4.0533089811241,
          -7,
          -7,
          -7,
          -3.6800634274819486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.94875518016827,
          -7,
          -7,
          -7,
          -7,
          -3.256173477745645,
          -4.4514486901432795,
          -3.7438572042505402,
          -7,
          -3.5262961904825314,
          -3.5291374854609625,
          -3.9933039379194746,
          -7,
          -7,
          -7,
          -3.387449152133768,
          -3.697403723200488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6625689669332604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9369960240186312,
          -3.845139399424021,
          -7,
          -7,
          -4.744128624384017,
          -4.439127342442847,
          -7,
          -7,
          -4.056795991959564,
          -4.125676410382333,
          -3.8943160626844384,
          -7,
          -7,
          -4.412258893898136,
          -4.146138375899948,
          -4.401658972495152,
          -4.707902156725324,
          -3.3507945194988746,
          -7,
          -4.086324231307385,
          -2.2543523893313715,
          -4.549675739824959,
          -4.355451520126517,
          -4.578799605747632,
          -7,
          -7,
          -4.392626616474039,
          -3.9824521513849898,
          -7,
          -4.10265319875918,
          -7,
          -7,
          -4.396687435992471,
          -4.289142835932333,
          -7,
          -7,
          -7,
          -3.906119457545562,
          -3.805296916157985,
          -7,
          -3.101231386790699,
          -4.4037466209787235,
          -2.4336680285437815,
          -3.28450592984192,
          -3.924227581260118,
          -4.100060223931153,
          -7,
          -3.8833182081550213,
          -2.4526168878277472,
          -2.4612108026907533,
          -2.151799281836671,
          -3.9391878461917433,
          -3.9360611166099884,
          -3.739018245883481,
          -4.193639321922583,
          -7,
          -7,
          -4.004020273253242,
          -3.2080301376260425,
          -7,
          -7,
          -2.1701063358406323,
          -3.7942830503276914,
          -4.2625214322808995,
          -3.360309344342059,
          -7,
          -3.669409867287783,
          -3.320146286111054,
          -7,
          -3.5604471976694194,
          -2.4635058925862654,
          -3.267321091480779,
          -7,
          -2.600902666954075,
          -3.791297571494794,
          -3.265121183675147,
          -3.896691526562884,
          -3.7041290590724634,
          -7,
          -2.7051183043865903,
          -4.237857784350719,
          -3.392169149489736,
          -3.816084982682152,
          -3.10429328547008,
          -7,
          -3.5989516891716944,
          -7,
          -3.890923771489014,
          -3.80240229112848,
          -3.5278875659527045,
          -3.6527296960692475,
          -3.6392872259102367,
          -7,
          -7,
          -3.9559762222483257,
          -4.045479453110779,
          -3.788521887222473,
          -4.2819646232599,
          -7,
          -3.2842803027789684,
          -2.2144532419764444,
          -3.7995473071256147,
          -7,
          -7,
          -2.4040474118956006,
          -7,
          -2.3264346547815506,
          -2.8217863778714993,
          -3.383456296524753,
          -3.7790189719148706,
          -3.122241090573313,
          -3.075838825974687,
          -7,
          -3.103974669386388,
          -3.378670385207983,
          -2.993083360698062,
          -7,
          -3.215901813204032,
          -7,
          -3.858416877723488,
          -7,
          -3.3051977728112814,
          -7,
          -7,
          -3.937989041454751,
          -3.2685474497400993,
          -3.8601116485509888,
          -7,
          -7,
          -7,
          -3.4037209086266897,
          -7,
          -7,
          -2.893603260420453,
          -3.33577873881047,
          -7,
          -7,
          -3.797959643737196,
          -3.435525851498655,
          -3.6369390072874714,
          -3.3771240423464564,
          -2.9022360696016483,
          -7,
          -7,
          -7,
          -7,
          -3.085847809030809,
          -7,
          -3.564902672529205,
          -3.854002233126989,
          -3.7701890227359933,
          -7,
          -7,
          -7,
          -4.069742076041645,
          -3.7779340488377793,
          -2.828504069597003,
          -3.227050718827332,
          -3.289254408054181,
          -7,
          -7,
          -3.5609422722781963,
          -7,
          -3.1454184040139723,
          -3.3680078052211746,
          -3.302042169044836,
          -3.4067955726682504,
          -3.029140179764322,
          -7,
          -3.304188829614843,
          -4.191040933375073,
          -3.9037951427410356,
          -7,
          -3.682506085939011,
          -3.8310374856400253,
          -3.3665630296290265,
          -2.0335075233494724,
          -2.4300511544770096,
          -7,
          -3.7293268096468606,
          -3.7168377232995247,
          -7,
          -7,
          -4.126488570700374,
          -3.828788748184953,
          -7,
          -7,
          -2.9319776588193447,
          -3.0773679052841567,
          -3.1172002493079924,
          -3.6884976854468556,
          -3.926702494182645,
          -3.345765693114488,
          -7,
          -3.450787792072898,
          -7,
          -3.6163179419637905,
          -7,
          -7,
          -7,
          -3.752662943120972,
          -7,
          -2.3235805527428437,
          -3.6956567599361905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7451528950769006,
          -3.7685641095135733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3229081045244717,
          -7,
          -3.5233562066547925,
          -3.507271023804603,
          -3.9231403560252005,
          -3.6877964113812944,
          -7,
          -3.862429556106009,
          -7,
          -7,
          -3.6454345512591875,
          -7,
          -7,
          -3.381415942849977,
          -7,
          -3.8073320392911905,
          -7,
          -3.652536418593025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.205902356214027,
          -7,
          -7,
          -7,
          -7,
          -4.223988882570092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.046612209068446,
          -7,
          -7,
          -7,
          -4.250172460601185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6379486218402337,
          -7,
          -7,
          -7,
          -7,
          -3.390581878550435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.142796035713555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.007737112484662,
          -7,
          -7,
          -3.3470045791968865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.679321884323715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.427901379055738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.754432433893692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3863384163575105,
          -7,
          -7,
          -7,
          -7,
          -3.7907776013376937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1863063842699075,
          -4.7579120162872295,
          -7,
          -7,
          -7,
          -4.518803373065476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073021454359739,
          -7,
          -7,
          -7,
          -3.1705550585212086,
          -4.547430085818267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.451632947456991,
          -7,
          -7,
          -7,
          -7,
          -4.67488409438502,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.290591042549338,
          -7,
          -7,
          -4.5092255714044756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.090751689644903,
          -7,
          -3.79049627696711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3648697986669625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14587979647062,
          -5.01437350897037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.944803339433345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.539703238947825,
          -7,
          -4.71478226334653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.434338922543306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.129719531464096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8596905752051205,
          -7,
          -4.620270268605282,
          -3.1684974835230326,
          -7,
          -4.175337828792021,
          -7,
          -7,
          -7,
          -7,
          -3.5886078047426864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.599981268266425,
          -7,
          -7,
          -7,
          -7,
          -4.380934463330702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.924790831742455,
          -4.048325250931222,
          -7,
          -7,
          -4.786650287881236,
          -7,
          -7,
          -7,
          -4.338695489014784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.681087397502494,
          -7,
          -4.204472703648964,
          -7,
          -4.098158983460533,
          -3.9008585047019917,
          -4.459136057687617,
          -3.8953120244757873,
          -7,
          -7,
          -4.674199554567703,
          -7,
          -7,
          -3.6947806360120614,
          -7,
          -7,
          -4.759426083090233,
          -7,
          -3.5490032620257876,
          -2.9699437035468206,
          -3.9646461264348587,
          -3.985345625806566,
          -7,
          -3.540610986582727,
          -7,
          -7,
          -7,
          -3.7786034050126207,
          -7,
          -7,
          -7,
          -5.011429461780782,
          -4.803692636045678,
          -7,
          -3.4233278085624455,
          -7,
          -3.5593942622111583,
          -7,
          -5.406103963836156,
          -7,
          -1.9519410519031546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.623042434246382,
          -7,
          -4.900580126539175,
          -4.4933186082321015,
          -7,
          -3.7994390177641506,
          -3.3448473709418876,
          -7,
          -4.445263561049475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6190933306267428,
          -7,
          -7,
          -3.8730734429384888,
          -7,
          -7,
          -7,
          -7,
          -3.6515881136056807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.366711037235561,
          -7,
          -7,
          -3.409087369447835,
          -7,
          -3.0991624929285946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.39702180876549,
          -4.012661503690474,
          -7,
          -3.5033820634737327,
          -7,
          -2.9084850188786495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.427864626379701,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.234178406311674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8986566322275165,
          -3.0870712059065353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.668553637533001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6305381471430116,
          -3.6989700043360187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.344588742578714,
          -7,
          -3.5571289415150695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2029266830692276,
          -3.4915017662373264,
          -3.692935002531138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5776285553511253,
          -7,
          -7,
          -7,
          -7,
          -3.4727564493172123,
          -7,
          -7,
          -3.426998958756537,
          -7,
          -3.692670699156369,
          -7,
          -7,
          -7,
          -3.3099183595839303,
          -7,
          -4.9902677987531,
          -4.689344382781724,
          -4.991128570067966,
          -4.217782145093702,
          -4.51750819605495,
          -4.389073011288796,
          -4.089255832753279,
          -1.4218568548007218,
          -3.5054552343235024,
          -7,
          -7,
          -2.870245998917889,
          -2.930692472486093,
          -3.6137053129046692,
          -7,
          -7,
          -3.99084479280467,
          -4.990503127353854,
          -2.8708682408513573,
          -3.5740519479249517,
          -7,
          -3.317944006899941,
          -1.9694607920772684,
          -4.692481182743817,
          -4.292676867185116,
          -7,
          -3.8213126016291095,
          -4.040145039872181,
          -3.736577973773599,
          -2.385667809098233,
          -4.215324660030519,
          -4.689748260013518,
          -7,
          -4.213867353906041,
          -3.9179123059424894,
          -4.213181170119872,
          -2.910780532325959,
          -4.388314387117743,
          -4.396303983762163,
          -7,
          -2.145536311770067,
          -3.5929447015163736,
          -4.9922706704370094,
          -3.9977576042802543,
          -4.516896584853889,
          -3.2994517494807445,
          -7,
          -4.993471501713574,
          -3.7717517097073854,
          -3.5168437434754565,
          -4.217896108987832,
          -1.2089927449211242,
          -2.2063387404607777,
          -3.1896760533932764,
          -3.3616564967654905,
          -4.992102642595412,
          -4.089825660059739,
          -3.6023335107020023,
          -4.294157480769691,
          -3.9934362304976116,
          -4.0392554438064865,
          -7,
          -4.515600116635371,
          -3.171433900943008,
          -2.467588955990991,
          -4.087839071542424,
          -4.689584091501692,
          -3.308838714446678,
          -4.990343295403774,
          -3.052004367218563,
          -3.6846786877449325,
          -3.9907649470287008,
          -3.6382461055317314,
          -2.1651144697096663,
          -4.990725018635123,
          -3.0062651558823856,
          -7,
          -4.991483031090237,
          -2.538156595659039,
          -4.043117659208095,
          -4.146584248339436,
          -7,
          -2.2366355570771637,
          -3.369180504365074,
          -2.5037602347919004,
          -3.295670568078613,
          -3.352581534731333,
          -4.995828171486707,
          -2.0107652729108403,
          -3.459120968849541,
          -3.360210581728592,
          -4.689588529304547,
          -7,
          -4.221814004667988,
          -3.615814203848796,
          -3.743535894777588,
          -2.876868140105446,
          -4.514047206658893,
          -2.563351832831913,
          -4.993034818671166,
          -4.513190955417365,
          -3.9901789623582675,
          -1.9244209115260107,
          -3.990423218731616,
          -3.7682767279530007,
          -4.149759993749519,
          -2.8384078498875294,
          -1.6278041831150603,
          -4.515312959331332,
          -4.991465314908383,
          -3.391724416965437,
          -3.6935466881001595,
          -2.3746115195185786,
          -4.516231195157669,
          -7,
          -4.152720675940873,
          -3.38009058759723,
          -3.0377862259665536,
          -3.8793958675739386,
          -2.7140812719788183,
          -2.5188513286665026,
          -7,
          -3.4157910557423414,
          -4.691572118017887,
          -3.2272149385107447,
          -3.7387365280203073,
          -3.770011186958184,
          -3.036723311871272,
          -4.5136658731638,
          -4.214552455234245,
          -2.358757360512426,
          -3.6032483309255765,
          -7,
          -4.990378818698668,
          -3.194608034580432,
          -7,
          -7,
          -7,
          -4.6898059261126965,
          -4.689228920267321,
          -1.847972154164334,
          -3.613465481647862,
          -2.9163447519231225,
          -4.055055378965599,
          -4.515679603561216,
          -3.4523625686594706,
          -4.990436537856399,
          -4.991305836741952,
          -3.4143399064296043,
          -4.5592041671686045,
          -3.1533261255705463,
          -7,
          -4.292526313416355,
          -4.992897989215456,
          -2.3966798842050885,
          -7,
          -7,
          -4.2977692625370425,
          -3.95346534860555,
          -7,
          -3.489598174792466,
          -4.150616110038816,
          -4.300321518092267,
          -3.4800156583921136,
          -4.042181594515767,
          -3.1750601376136602,
          -3.427319398414071,
          -4.214030992451019,
          -1.941162923416565,
          -2.945526249464059,
          -7,
          -4.989996790919562,
          -4.038743761778693,
          -3.499992878560925,
          -4.292331401620799,
          -4.990427658485263,
          -2.702310954593247,
          -4.991607024131837,
          -3.2330259885856854,
          -4.990418778932582,
          -3.159304480085414,
          -1.2807873175934574,
          -3.6921327857403368,
          -3.0945520778220583,
          -3.106861947992472,
          -3.6330554819280527,
          -3.7198064999622655,
          -4.518351597460188,
          -4.093356010668287,
          -4.517178297006411,
          -3.849265817161557,
          -3.2905354315009356,
          -3.8158698359694636,
          -3.3004889195397658,
          -7,
          -3.071497433304764,
          -3.9555653103685438,
          -2.7367107503568193,
          -4.513940821687035,
          -3.1568957026324207,
          -7,
          -3.521517693337017,
          -4.39029024855987,
          -3.9954596866210643,
          -4.292570599354629,
          -4.9922087730059355,
          -3.0525079069210648,
          -3.956674753874899,
          -7,
          -3.493549535982762,
          -2.4397883590508522,
          -2.808156769243597,
          -7,
          -4.990236708081907,
          -4.5144592024546775,
          -4.689539710978861,
          -4.991044343044156,
          -4.292977818238843,
          -7,
          -3.8783317390376957,
          -2.5350333608143405,
          -3.25636548177581,
          -2.574239994047324,
          -2.48410899263124,
          -7,
          -4.5146274324113405,
          -4.51517151980495,
          -4.994193931082229,
          -7,
          -4.99084479280467,
          -4.298722113605708,
          -4.041493570137533,
          -4.694644678455609,
          -7,
          -7,
          -4.990853663651464,
          -4.088189264361116,
          -4.990125651797603,
          -7,
          -3.162937607956918,
          -2.3115310523352646,
          -7,
          -7,
          -7,
          -4.690231531192315,
          -3.84665074436028,
          -3.6121831971282083,
          -7,
          -3.9928405962889184,
          -4.310264115074859,
          -3.0562913790574244,
          -3.7839077810179074,
          -2.606179758384244,
          -4.394092538947562,
          -4.689561901807182,
          -7,
          -2.2651415915061928,
          -3.5347174140748496,
          -3.000950428851235,
          -4.089860973578503,
          -2.531428995267167,
          -3.879404687616423,
          -4.991345711774112,
          -4.14638499107598,
          -3.029221394253928,
          -2.9142077165291074,
          -2.8499391912595735,
          -3.197433250218922,
          -3.3842617011209635,
          -3.764672712576838,
          -4.390714372927393,
          -3.689610717638639,
          -2.7051492306402203,
          -2.2703679455185184,
          -3.012511088004144,
          -7,
          -4.213287488896829,
          -3.5631337570664607,
          -4.38925027615392,
          -3.9957141500530717,
          -4.689166735427055,
          -3.067775173091482,
          -2.5320820293338104,
          -3.5962275132351498,
          -4.699247863898858,
          -4.092224852134988,
          -1.9336346652537082,
          -2.6414450686151305,
          -7,
          -2.8102960066995175,
          -7,
          -4.038884975666385,
          -3.8009489378786143,
          -3.4778400968029173,
          -2.4258823583037517,
          -3.1208552310470163,
          -3.735808937174781,
          -3.741392368925786,
          -3.3898227579994757,
          -4.396338857049362,
          -2.220587807932981,
          -2.4769710404510628,
          -7,
          -7,
          -7,
          -3.2801060177153403,
          -3.102609480470218,
          -4.991823926808468,
          -3.951107812817263,
          -4.0964450691230585,
          -4.99139001307188,
          -3.6751408739135,
          -4.213654974143963,
          -2.8504547726388982,
          -4.390740866952916,
          -4.993903341793256,
          -2.2542267303652044,
          -4.691788524402698,
          -2.5711701247620056,
          -3.2996323109915098,
          -2.328167646552352,
          -4.515728171743949,
          -2.21534088621076,
          -2.562031018999178,
          -3.1442417228775326,
          -7,
          -4.6924944075030846,
          -4.991128570067966,
          -2.6265655766809153,
          -3.1000930325866447,
          -3.492349724648918,
          -3.8213431834400855,
          -4.3884165014521015,
          -7,
          -3.029959487494864,
          -3.2055770499167062,
          -4.515485276497102,
          -3.8167934863114397,
          -3.427426313039922,
          -4.088561311791215,
          -2.0795744506755742,
          -7,
          -7,
          -2.215667789921735,
          -2.9894331308265776,
          -3.4205782962332605,
          -4.5294859637721405,
          -3.0967435623888013,
          -2.372177459023404,
          -3.8744445411585167,
          -2.7827700631505725,
          -2.215112894636366,
          -3.437221902399778,
          -4.528428165537636,
          -3.5645366145556583,
          -2.9811038911421357,
          -2.54182344038921,
          -2.7919448265559264,
          -3.2676812852080124,
          -3.062178711611561,
          -2.3469101691945125,
          -3.8874886966978695,
          -3.225722698684167,
          -4.305643667345195,
          -2.4741497243612818,
          -2.7268285792599825,
          -2.807501866452052,
          -3.7192247131031593,
          -3.6593273360246177,
          -3.4643739521604857,
          -3.90554147191974,
          -4.998006362349715,
          -2.4211910728677872,
          -3.4680712409883463,
          -3.023471752494701,
          -3.246711655738116,
          -3.194853381628648,
          -4.394661772492929,
          -3.3575338601983535,
          -3.790011806634576,
          -2.942947645715167,
          -3.507265878790705,
          -3.0401092144357094,
          -2.9590944164932984,
          -2.7455680003520904,
          -0.6755530875172971,
          -2.3225283506064525,
          -3.3948316503650684,
          -3.0606245045746627,
          -3.998067439033124,
          -1.9576295382648627,
          -1.8392162318059182,
          -2.4234506815246184,
          -2.1137563442359215,
          -2.4052297140153964,
          -2.7009919975949694,
          -4.150190458013526,
          -2.3907490483465703,
          -3.363252530311502,
          -4.291821559582458,
          -3.7845375828635124,
          -2.804712615697911,
          -2.1701063358406323,
          -7,
          -7,
          -1.5807136932117263,
          -2.1257024521454118,
          -3.73596686511474,
          -3.17002349406913,
          -3.991682288353693,
          -2.1790050976603923,
          -3.7353172901274787,
          -2.2644821120797367,
          -2.2460919417551084,
          -2.3197189388741886,
          -3.7862055500107257,
          -1.6437905174070773,
          -2.5532584907282443,
          -2.366179004261212,
          -3.1856494511134392,
          -2.7895232336183433,
          -3.6538875580709775,
          -1.374014313167986,
          -2.82959643786932,
          -3.2142608667775416,
          -2.0983757093395856,
          -2.3203916456109437,
          -3.962575949894103,
          -1.7081361940220896,
          -4.51473364934416,
          -3.4998888933231624,
          -2.2806547667765416,
          -3.1593517822748245,
          -3.5757871627509847,
          -4.036060818784233,
          -7,
          -7,
          -4.709626072126764,
          -2.297940489369286,
          -3.1167693598151747,
          -2.4376922862503956,
          -4.513994017430478,
          -2.7048937314310724,
          -2.1023679011904353,
          -3.6977304979257712,
          -3.565489255361976,
          -4.21303937125096,
          -2.617649653602112,
          -4.990618524968529,
          -2.0522754028118952,
          -2.5741259734216677,
          -3.9132220320428264,
          -7,
          -2.520404604548894,
          -3.2894315519433857,
          -2.784202883354968,
          -3.5620107348170253,
          -4.992266249484483,
          -2.2294632784465835,
          -4.992407697648305,
          -4.038620161949702,
          -4.041883730497782,
          -2.9725921035590557,
          -7,
          -2.69966350973298,
          -4.689553025611917,
          -4.990995572563205,
          -3.1487202942127217,
          -1.5742934586537918,
          -2.6949928256605835,
          -7,
          -4.523226041965701,
          -2.6950498311524966,
          -4.215324660030519,
          -3.0708502534275732,
          -7,
          -3.0970639128944124,
          -2.3902359679939655,
          -4.990423218731616,
          -4.513914221371679,
          -3.852584546335328,
          -3.2787623922501217,
          -2.8091205530979613,
          -3.6302686502254105,
          -3.9957799353027403,
          -3.6136172198239294,
          -4.390497944533399,
          -3.2106254789227284,
          -3.125656086902075,
          -3.2531725590743164,
          -7,
          -2.973145124860241,
          -2.9260093638621822,
          -4.9971285274358905,
          -3.2331328437628977,
          -4.992186664642423,
          -4.690014347380175,
          -3.134863987908941,
          -3.5660007738899773,
          -1.7592731713118281,
          -2.7344736994187495,
          -3.774774503479862,
          -3.4039384266415245,
          -7,
          -3.6204358958338836,
          -4.390113407756115,
          -2.9715625841386353,
          -4.088601155118618,
          -3.4533183400470375,
          -2.2375759475971955,
          -4.149628133631338,
          -4.513039938178816,
          -2.3465434795560767,
          -2.3107716124156723,
          -3.4497054723137457,
          -4.396277826958957,
          -2.638403885379292,
          -5.000984731226351,
          -3.3779962559461034,
          -3.437834208405836,
          -2.4384715316007095,
          -3.2595512186026316,
          -3.693612645861557,
          -4.3920547074108764,
          -7,
          -4.990161192898479,
          -3.273319637963899,
          -4.222638447166434,
          -3.595138939338682,
          -4.155513883900176,
          -2.377777299026072,
          -2.840952300877853,
          -2.284342443665945,
          -2.352751603076248,
          -3.9666834625327567,
          -2.9952658503599583,
          -7,
          -3.47727476603862,
          -7,
          -3.01534692246958,
          -3.259726099140045,
          -3.4069147043332144,
          -7,
          -2.8487607596866726,
          -3.7895983373945126,
          -2.2901028574074784,
          -4.038734934385949,
          -7,
          -7,
          -4.990258915931302,
          -7,
          -7,
          -4.689978878482649,
          -3.584004375232658,
          -4.995683446859352,
          -4.218837358365702,
          -3.9919301253434987,
          -4.992473985619664,
          -3.6106823385082976,
          -3.6297994823657387,
          -4.147791120013851,
          -4.214004460658973,
          -2.9260719967632776,
          -3.313814511529729,
          -2.44224154929421,
          -3.053462604925455,
          -3.7524496752187972,
          -3.28464301844565,
          -7,
          -2.997995908477958,
          -3.649595923467478,
          -4.689011234360268,
          -2.4328708171745355,
          -3.474097008828839,
          -3.5453380480196923,
          -3.189451441189139,
          -3.958555196376776,
          -3.522048449634903,
          -3.9114461543905747,
          -3.844730063328676,
          -3.152428134995643,
          -4.513328601853055,
          -3.463496250272348,
          -3.2390534871210988,
          -4.69237977954167,
          -4.512871092039323,
          -3.8750443149836546,
          -5.1865071251858526,
          -5.487524400587733,
          -4.709395763745806,
          -4.341633748391168,
          -4.586239786338633,
          -4.057485779478209,
          -4.2090039452634525,
          -3.944042514505542,
          -1.8792359176358457,
          -3.383240433663356,
          -5.487524400587733,
          -5.186764277238947,
          -1.9471842971207132,
          -2.6543763807785092,
          -4.090746051250861,
          -5.187244263647723,
          -7,
          -4.341568763431911,
          -4.446178354569201,
          -2.2425211132791127,
          -3.816315886150352,
          -7,
          -3.328668590032598,
          -1.572719571751327,
          -4.534296926538465,
          -4.232654522990873,
          -5.010387598375084,
          -3.9456837798020445,
          -3.9446983557777644,
          -4.0108735476108945,
          -2.4276495217654266,
          -4.209757632436364,
          -4.584579967666666,
          -5.487709514323861,
          -4.257602351404392,
          -4.210934941717513,
          -4.885809137896048,
          -2.7352684767977125,
          -4.0403324467250155,
          -4.234805424012735,
          -4.186946452188543,
          -2.000189042149084,
          -4.089780807751493,
          -4.187079151712716,
          -3.0676033749641594,
          -4.643611982577783,
          -3.218386036788657,
          -5.186952099802866,
          -4.789565201370235,
          -3.4266220223396426,
          -3.520043796485627,
          -3.9210830062916417,
          -1.6347709985244734,
          -3.283555448089596,
          -2.7278653418997396,
          -3.0782651004780597,
          -4.3741319181946805,
          -4.126598625117727,
          -3.8472276214102914,
          -4.447026877167566,
          -4.4885352057062535,
          -4.488552126545175,
          -7,
          -4.257818283151665,
          -3.315602333060121,
          -2.5431083893749618,
          -5.010627815666308,
          -5.186604634819657,
          -3.2469415124832546,
          -4.788567116513815,
          -3.3208973293592754,
          -3.987705358606155,
          -4.487682670658282,
          -3.8373625351400262,
          -2.207049609429497,
          -5.487669954658609,
          -3.3893869036091617,
          -7,
          -4.885843030854342,
          -2.6173947603991423,
          -3.608791967362849,
          -4.789010679234133,
          -5.487484824056203,
          -3.012861117271863,
          -4.4091169986649135,
          -2.953775138981921,
          -3.173191873622384,
          -3.580778595978624,
          -4.4892762842812886,
          -1.165977904281495,
          -2.9430122187969388,
          -2.1432883960858957,
          -4.072594865284654,
          -4.788496443675952,
          -3.1890591740845484,
          -3.2903305242929637,
          -3.1167357534143045,
          -2.9460181511423937,
          -3.64252387306301,
          -2.622428887614762,
          -4.374429661918521,
          -5.487544187501127,
          -4.642406572758529,
          -2.737265698588125,
          -4.7886179938368425,
          -3.5979678700808284,
          -4.284845089938738,
          -3.0705723554074527,
          -2.0647399279260505,
          -4.5851108969871746,
          -4.53364074217209,
          -3.9701523850893725,
          -3.8655889804759167,
          -2.5301878237441495,
          -3.7981825766565604,
          -4.709339227683591,
          -4.091951002291903,
          -3.889672795651036,
          -3.0839852555724914,
          -4.23321757514249,
          -3.203772786441661,
          -1.8121470850110704,
          -5.187175121844392,
          -4.098595275921422,
          -5.187238619831478,
          -2.925675141252281,
          -3.9446025096115447,
          -3.4652383057772145,
          -3.330820864782268,
          -5.487695386285646,
          -4.488289779428209,
          -2.3012246728032446,
          -3.338413000249206,
          -7,
          -4.642444734165811,
          -2.9941168602919603,
          -7,
          -7,
          -5.186505711841796,
          -4.6425931077703,
          -4.788543089039288,
          -2.281367945106283,
          -3.3868666670825744,
          -2.285476692176725,
          -2.8776494642934214,
          -3.56902823202862,
          -3.2717254694902382,
          -5.186545283736885,
          -5.01072810239044,
          -3.9702552789348484,
          -3.88983032468367,
          -2.729010494963514,
          -7,
          -4.373949784702526,
          -4.534098059219949,
          -2.403069276989103,
          -4.64244614748687,
          -5.18643645234799,
          -3.7992744224867123,
          -3.7406756071737606,
          -4.533450051183524,
          -3.378092120780078,
          -4.285119700058644,
          -4.490402385350703,
          -4.167985074726467,
          -4.887447093306888,
          -3.61643128894415,
          -4.790323171935713,
          -4.312017888321016,
          -1.8695167124430236,
          -3.7889118350573208,
          -5.487530054083552,
          -7,
          -5.48841392039751,
          -5.186922449008297,
          -4.209060446571925,
          -5.186542457292524,
          -2.9844886573576357,
          -4.4465301066949845,
          -3.4336005087190618,
          -5.186539630829768,
          -2.546849252465312,
          -1.5609197077617303,
          -3.8162737456632567,
          -3.2782934176322724,
          -3.3129223784024946,
          -3.7485136257833434,
          -3.818003957176613,
          -3.703694399052745,
          -3.5207778508255867,
          -4.210012799175211,
          -4.1669232380950865,
          -2.89521267096554,
          -3.9828660012906787,
          -3.590094714052817,
          -7,
          -2.1175031458345996,
          -4.285530586698769,
          -3.0123253976287834,
          -5.487782972714756,
          -3.15253949843463,
          -5.487511679953053,
          -3.0742475617285216,
          -4.232876161954841,
          -4.25871473283981,
          -4.78895984789585,
          -7,
          -3.746319983424443,
          -4.25955593653417,
          -7,
          -3.359602222607438,
          -2.2193551859321543,
          -2.510130451735458,
          -7,
          -5.186481684289071,
          -4.311817411695856,
          -5.186590504345145,
          -7,
          -7,
          -5.487665715909312,
          -5.011071162077137,
          -2.8390371820264875,
          -3.3779713645,
          -2.9157804804891008,
          -1.4709056178981428,
          -5.186416661892306,
          -4.885933399147209,
          -3.944011460905156,
          -4.374800497685027,
          -5.1865099518601685,
          -7,
          -4.644797188035574,
          -4.057857616615388,
          -5.188222357172769,
          -7,
          -7,
          -7,
          -4.78888500204134,
          -5.487479169971561,
          -7,
          -4.887299338914315,
          -1.7681133133424474,
          -5.487490478067235,
          -4.709383043773476,
          -7,
          -7,
          -3.99691538735805,
          -4.056830063846329,
          -7,
          -4.4883448008271,
          -3.79455496328573,
          -3.440007581697311,
          -2.9191504502067827,
          -2.975320719769701,
          -3.921111158696558,
          -5.487630391389559,
          -4.7093194383229315,
          -2.2402649767471305,
          -3.3754877506331518,
          -2.0575039051303508,
          -5.011272918351647,
          -2.310144621207025,
          -4.108264735866179,
          -4.709702343683791,
          -4.788947139131619,
          -3.5865392788050334,
          -2.3304081594443957,
          -2.7242179266966917,
          -3.1356263628227774,
          -3.005757876815866,
          -3.178917728971351,
          -3.630799234060891,
          -4.788715492049406,
          -4.312793510081284,
          -3.4694573219276164,
          -4.1288935255919,
          -7,
          -3.875014653677954,
          -5.0118212780525235,
          -7,
          -4.074246624930057,
          -5.010377704226107,
          -3.181912549378863,
          -2.9426573673260323,
          -3.825952190910465,
          -3.959166300694504,
          -4.127366817859523,
          -1.3564708036543416,
          -2.8849628456125957,
          -5.186723312657822,
          -2.9927016507951634,
          -4.788677343181599,
          -4.209654677443103,
          -4.2370114348310794,
          -3.8983890103941574,
          -2.8106243908861606,
          -3.363917733183663,
          -4.032978416988432,
          -4.790636961931703,
          -4.093593967828657,
          -3.65109673914952,
          -1.2835321333668661,
          -2.603575145913418,
          -5.186485924542031,
          -7,
          -7,
          -3.4189958185764824,
          -3.0325208298782202,
          -4.709854846624769,
          -5.488264382585144,
          -4.189431355695534,
          -5.4878818393933395,
          -3.8176230297552216,
          -4.2838663484734685,
          -3.133441284331229,
          -4.789359278340753,
          -4.312553920321048,
          -2.6500663146368284,
          -3.695776736052128,
          -2.4047181728190323,
          -2.661496740207439,
          -2.031696637319982,
          -4.710187907543857,
          -2.555146071986981,
          -2.4750868264637527,
          -3.5127121834169777,
          -7,
          -4.342401529601869,
          -7,
          -2.999503780341293,
          -3.620145775285036,
          -3.7951678857272726,
          -4.042623321013089,
          -5.487599303435275,
          -5.487424038788304,
          -3.0024024745333016,
          -5.1868645535267195,
          -5.0111487717367345,
          -4.78941711590118,
          -3.9132043533616425,
          -5.010858016949204,
          -2.2477567527751328,
          -7,
          -5.186501471782027,
          -2.5587501988018895,
          -2.5593139772691327,
          -3.4049499154557576,
          -3.2135149609500795,
          -2.717038465918362,
          -1.9042635560595857,
          -2.486439517190511,
          -1.9465606832645925,
          -1.8801630543812344,
          -2.5991895013035666,
          -3.5144652617283954,
          -2.900617546897137,
          -2.579879636568188,
          -2.4785406722075933,
          -2.140935356902671,
          -3.3789970083563663,
          -2.2217850180702277,
          -1.9390632418639553,
          -3.533095238874848,
          -3.0926953967432183,
          -4.261658837583175,
          -2.3904087313468914,
          -2.5604380346856566,
          -1.9501801689771088,
          -2.7540402045573704,
          -3.3634742633268195,
          -2.8036537624626874,
          -2.7717931351637475,
          -4.2346817578497795,
          -1.3959028996833276,
          -3.2414788062846314,
          -2.4769029428357405,
          -2.8414298821170925,
          -2.8934458584929437,
          -3.5917505350796386,
          -3.0846717677458857,
          -3.178770868485576,
          -2.3340211016163104,
          -2.871348574274271,
          -1.947122643788279,
          -4.209739299771616,
          -2.3649605963793237,
          -1.8731804991743521,
          -2.8364446201316853,
          -2.03835220370558,
          -2.20705239464774,
          -2.872937535397121,
          -0.5227568413154664,
          -2.9772139868108893,
          -3.6986953313061885,
          -2.7519311783407066,
          -1.7730029976670396,
          -2.112371098999698,
          -4.644030411318001,
          -1.4136036413282196,
          -2.310948723918212,
          -5.010575544390487,
          -2.464456302618722,
          -2.7804346952659618,
          -3.7942830503276914,
          -5.011429461780782,
          -1.5807136932117263,
          -7,
          -1.8050116406177041,
          -4.709716466576368,
          -3.6806297324576893,
          -4.44657952693536,
          -1.9256485743396834,
          -3.6755672791395586,
          -2.0140910909448078,
          -2.76396563495061,
          -3.422942178067513,
          -5.0104582643132565,
          -2.845048881845784,
          -2.060945385706451,
          -2.092560220395226,
          -3.035348556674808,
          -1.834346849885255,
          -2.1046905386248174,
          -1.8472781055600258,
          -1.4842765317911912,
          -4.44695352638232,
          -1.4722734507089599,
          -2.0008942662102447,
          -2.3485222969110127,
          -1.863450981279705,
          -5.187002925027144,
          -2.8816355753447067,
          -2.168510155883977,
          -2.887522641700816,
          -4.311621080820672,
          -5.01043141261124,
          -7,
          -5.487669954658609,
          -3.694606591570367,
          -1.9742279440562436,
          -3.4141978319393456,
          -2.167444459932046,
          -4.788818618509576,
          -3.6969957883137,
          -2.525808134205592,
          -3.2321140257972862,
          -4.448283200109149,
          -4.408620089323603,
          -3.090878144270523,
          -4.709470662693623,
          -2.2572806664127243,
          -2.9004987767588752,
          -4.126446234651181,
          -3.6701628893926337,
          -2.3743272623116396,
          -3.9983732561577563,
          -3.053258692438889,
          -4.4885634067382085,
          -4.6430463929643135,
          -3.076238707188634,
          -4.7892252348732285,
          -4.011171346488324,
          -4.410207639094926,
          -3.221550244716166,
          -7,
          -2.943890048248473,
          -5.487627565303852,
          -5.186723312657822,
          -2.744795466104949,
          -1.5372684228232258,
          -1.8605113744781039,
          -5.487491891558491,
          -3.8778669740330005,
          -2.888225045301837,
          -4.041327818151258,
          -3.332204135799646,
          -7,
          -3.3918972562576584,
          -2.4031340054832113,
          -7,
          -4.709609121072649,
          -3.7192512084878806,
          -3.3333683469708335,
          -2.8352909915364135,
          -4.232816881084013,
          -3.9210083935915856,
          -3.4884463604842493,
          -4.20945857234593,
          -3.5447837581666044,
          -2.460737593625028,
          -3.1133664244900174,
          -5.487597890293567,
          -3.0051847197848223,
          -3.1604685311190375,
          -4.091711967160965,
          -2.3781140519032173,
          -4.64302098761995,
          -5.01064759234639,
          -3.2618698203144056,
          -3.808495118821508,
          -1.5535269280041977,
          -3.1173583818192303,
          -3.2390337015827275,
          -3.6965804265510367,
          -4.710063745199173,
          -3.451107081704346,
          -4.886071739164197,
          -3.285214082720241,
          -4.4465767030731165,
          -3.352794959068467,
          -2.739829921144155,
          -4.011762105452167,
          -7,
          -2.803128777106358,
          -1.7694320620004897,
          -3.700131238924358,
          -3.8367811013221695,
          -2.693933677387551,
          -3.7199489403687105,
          -3.4730209701593884,
          -4.073814191846539,
          -2.7042644827295077,
          -2.602411941428692,
          -4.146493084391314,
          -3.9088728605363263,
          -5.010475222427599,
          -5.487490478067235,
          -3.1318786178175038,
          -3.6914000796900464,
          -3.519746158174064,
          -3.232676070228884,
          -2.2477567146336086,
          -3.3925900368430986,
          -2.841967182770774,
          -2.621868384681515,
          -3.6122762328527447,
          -3.0397543442571333,
          -4.090166315732656,
          -3.7183637376108463,
          -5.010367809851715,
          -3.1213292991298016,
          -3.340689835489153,
          -3.250150837583095,
          -5.186497231680861,
          -3.451661114468938,
          -4.057230661599434,
          -2.4180374701498426,
          -4.257917039669347,
          -3.9693933187382284,
          -5.487537120849834,
          -5.487521573812226,
          -4.88561844070513,
          -4.885540725244422,
          -4.487737769021568,
          -2.784202841695126,
          -3.807881581230128,
          -4.285526367236513,
          -4.709914138864821,
          -4.409015404360969,
          -3.86442349007059,
          -3.797656101724403,
          -4.6432622784087,
          -4.585030452089273,
          -3.2019697799138243,
          -3.6024813908768083,
          -2.9249826236060295,
          -3.4415853127846754,
          -4.15072156097165,
          -3.908397530346767,
          -4.885461582484264,
          -3.6164068895888386,
          -3.7978100169799,
          -7,
          -2.807813258486935,
          -4.056924604372458,
          -3.8349742581415307,
          -3.2684083975867497,
          -3.6453647152002744,
          -3.8468851178579158,
          -4.311539132333878,
          -4.186665390621664,
          -3.7495269157653,
          -4.373610728312931,
          -3.47587783963758,
          -3.544442954987437,
          -4.789548279872023,
          -5.010315507270583,
          -4.928262675512426,
          -7,
          -7,
          -7,
          -5.7063362205981605,
          -7,
          -5.707016310494369,
          -5.405310494817033,
          -7,
          -1.8493349356858948,
          -4.1660840290700145,
          -7,
          -7,
          -3.5514566369878167,
          -3.4291582429146765,
          -5.405882279740203,
          -7,
          -7,
          -7,
          -7,
          -3.3852503234021976,
          -4.297326083558631,
          -7,
          -4.864639045160562,
          -1.9535562765024543,
          -7,
          -7,
          -7,
          -5.707576136961682,
          -5.70697964523269,
          -5.007527588642865,
          -2.622502345281835,
          -5.405766276814029,
          -5.706270459100365,
          -7,
          -5.706516373170063,
          -5.105445461553958,
          -7,
          -5.407369656667116,
          -5.405164440985005,
          -4.707729388220862,
          -7,
          -2.044118073016288,
          -5.40529853903925,
          -7,
          -4.929476827785161,
          -7,
          -4.028207663558861,
          -7,
          -7,
          -3.695508028511194,
          -7,
          -5.230172076871155,
          -2.469803455512416,
          -3.8329846728331125,
          -4.482131758974784,
          -3.91859170736518,
          -5.706524055741483,
          -5.405661335712202,
          -4.7081386445035935,
          -5.22960420662649,
          -4.592833298965716,
          -4.592843536226989,
          -7,
          -5.706646958404988,
          -4.8638401357766385,
          -2.937301172731602,
          -5.706309746387422,
          -5.2291141844551285,
          -4.593988585146381,
          -5.706185039691581,
          -4.348632429022909,
          -5.232328494095948,
          -5.1042164465018764,
          -4.929932111748548,
          -2.398676368633677,
          -5.405226797459939,
          -4.428950249146652,
          -7,
          -5.104339419249784,
          -3.996095565863999,
          -4.8624491434142385,
          -7,
          -7,
          -3.8272255388870633,
          -4.530542045215246,
          -3.9524839979613797,
          -5.106716018172097,
          -4.628158948559419,
          -3.991155335155191,
          -2.4000807260175354,
          -4.453442357929439,
          -4.112531272447809,
          -5.706239710048615,
          -7,
          -4.594097480135254,
          -5.105258050483448,
          -4.6286553858870985,
          -5.7090663377095066,
          -5.706347322206261,
          -3.672201070733908,
          -5.10463901952532,
          -7,
          -5.706168808104415,
          -3.7050004010621724,
          -7,
          -5.008860670309308,
          -5.008090641409871,
          -4.478958431351312,
          -3.0365430003709086,
          -5.706591485814721,
          -7,
          -4.928755907897674,
          -5.104969961264324,
          -3.608579923054669,
          -5.706768973168231,
          -7,
          -5.707643403895459,
          -5.231660699116671,
          -4.864342382017525,
          -7,
          -3.3999523032960326,
          -2.6399487127568735,
          -4.80348186836277,
          -3.7292483387796818,
          -5.7066222099709005,
          -2.825397392497991,
          -4.928761877868489,
          -3.983812595814348,
          -3.87661767349757,
          -5.706273875527286,
          -5.104583553583756,
          -3.7585836296443214,
          -4.708318051103554,
          -5.706114983237485,
          -7,
          -2.9624332428694204,
          -7,
          -7,
          -5.229054387811185,
          -5.706281562389593,
          -7,
          -3.8886622314961086,
          -4.312377102890958,
          -3.574584146421634,
          -3.812150663318405,
          -5.104597207395862,
          -3.0670446953285406,
          -7,
          -5.229245708098079,
          -5.10491283211916,
          -3.3170641442873174,
          -4.206290264448695,
          -7,
          -5.104348811569977,
          -7,
          -2.9179709844755197,
          -7,
          -7,
          -4.116300295134973,
          -4.928914510676959,
          -7,
          -5.105023672859679,
          -5.008256858305089,
          -5.7079276831885455,
          -5.230701760433507,
          -7,
          -3.748257144463063,
          -7,
          -5.405516253409338,
          -2.2888070603124966,
          -4.7064549077057105,
          -7,
          -7,
          -7,
          -5.405399298863896,
          -5.104311241070395,
          -7,
          -3.949376545158274,
          -5.405396737463029,
          -3.471096313722673,
          -7,
          -3.7463253048559455,
          -2.2880182983636352,
          -4.627561279277749,
          -4.387594889675789,
          -4.709059548622802,
          -5.707080254125105,
          -7,
          -4.707164645304338,
          -5.230253018905105,
          -5.405920656239976,
          -7,
          -4.595470784074642,
          -5.706520641282075,
          -4.329484322820614,
          -7,
          -3.5796062459057905,
          -7,
          -3.6595514860340135,
          -5.007349990324425,
          -4.159471942771147,
          -7,
          -4.7106478453622085,
          -5.706576976429825,
          -7,
          -7,
          -7,
          -4.710482932879111,
          -5.406667044016165,
          -7,
          -4.66644820193318,
          -3.2057463603963625,
          -3.8196249153075152,
          -7,
          -7,
          -5.70642673312701,
          -7,
          -7,
          -5.7065010076195035,
          -7,
          -7,
          -3.6594500427691656,
          -5.40801682313519,
          -3.4336048426676036,
          -1.8900756630525175,
          -7,
          -7,
          -7,
          -5.405896777927573,
          -7,
          -7,
          -7,
          -4.628041355416391,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.7072856626157895,
          -2.758036819412388,
          -7,
          -7,
          -7,
          -5.405331843601616,
          -7,
          -5.4055879471929815,
          -7,
          -5.104616833998747,
          -3.903603711265901,
          -4.862280493299705,
          -4.40987397414063,
          -3.92592130988984,
          -5.406282081740148,
          -7,
          -7,
          -3.5080022347321136,
          -5.1054786759881114,
          -3.2594046528982172,
          -5.706699864120133,
          -2.554358006985142,
          -4.592821355189226,
          -5.104312948890889,
          -5.706414779723215,
          -4.413043974836716,
          -4.166343830003034,
          -4.090214370967739,
          -4.431429792218557,
          -2.301314657665541,
          -5.105070558504534,
          -5.706658905420156,
          -7,
          -5.104952055922925,
          -4.429453073733615,
          -7,
          -7,
          -7,
          -5.405999956928305,
          -7,
          -7,
          -7,
          -4.666244758796689,
          -3.773319780326815,
          -4.665554555638625,
          -4.863007435910946,
          -7,
          -2.0031671015981236,
          -4.809317250044303,
          -7,
          -3.1638994222456214,
          -5.405219964310453,
          -7,
          -5.7090824613650915,
          -4.862294124024368,
          -3.495683908270132,
          -4.478038265223136,
          -4.807879046479349,
          -5.707437312758631,
          -5.231514614715537,
          -5.230626860502488,
          -1.5451646690906655,
          -3.757693723849235,
          -7,
          -7,
          -7,
          -3.884439426078936,
          -4.190747538701007,
          -7,
          -7,
          -5.707980433125192,
          -5.706386602541032,
          -5.230453179146441,
          -5.405443694078799,
          -5.710042859862826,
          -7,
          -7,
          -3.5819980288675377,
          -5.4056323231287156,
          -2.6535150368844436,
          -4.182035386194043,
          -1.7075942074338524,
          -4.560521482829096,
          -3.5935633748495976,
          -2.034410206973508,
          -4.5647049444621635,
          -7,
          -7,
          -7,
          -4.152356303773212,
          -4.2795478109928755,
          -5.409231263856362,
          -5.406550399007429,
          -7,
          -7,
          -4.4774353659300345,
          -7,
          -5.706624770219138,
          -7,
          -4.630343957562579,
          -7,
          -3.3758142265027953,
          -7,
          -7,
          -2.5471072512154564,
          -2.3555301048129142,
          -2.398040618620613,
          -3.909919232626045,
          -2.589937898460937,
          -2.9307066729331126,
          -3.6512982446363424,
          -2.49380146683446,
          -2.878640402307038,
          -3.21222038264635,
          -4.118026340232679,
          -2.8789144981790824,
          -2.7761143546073774,
          -2.4619957270926496,
          -3.080398694355803,
          -1.6504598920741185,
          -2.381293414023723,
          -2.3268690046942035,
          -3.614293609984749,
          -3.278483007613615,
          -3.6673960621056523,
          -0.665172524147913,
          -2.8904979072499057,
          -2.660914577702647,
          -3.4195335419309956,
          -2.6465529378608714,
          -3.06561587658654,
          -2.97269969669112,
          -3.9082236656987925,
          -2.684629432936173,
          -2.724172386274545,
          -2.374764904123681,
          -2.8523820261304644,
          -2.8227317862798773,
          -4.139161474170334,
          -2.989210536493393,
          -3.2934291915274496,
          -3.0067079239265064,
          -2.5692679331476356,
          -3.0964269752170814,
          -5.2296622214205515,
          -2.0150952003982225,
          -2.079139523035249,
          -3.948777928708192,
          -4.046795346217831,
          -3.0001274730417,
          -5.230572379710766,
          -2.25148193134294,
          -3.827484243811539,
          -4.863322860120456,
          -3.036016731476465,
          -2.2444650393016303,
          -3.082405952527268,
          -3.868185977531273,
          -2.8994611250867406,
          -4.264204556194133,
          -7,
          -3.706572455351785,
          -2.775640783247661,
          -4.2625214322808995,
          -4.803692636045678,
          -2.1257024521454118,
          -1.8050116406177041,
          -7,
          -7,
          -4.864818639765679,
          -5.1043932088795545,
          -2.654326066576254,
          -3.3945633363947443,
          -2.213856436325215,
          -3.3770429432419937,
          -3.3408720500410354,
          -5.706207250354149,
          -3.2851588190256975,
          -2.919740203125908,
          -2.4974588609355894,
          -3.993102029263803,
          -3.8003410391868053,
          -3.940249653918925,
          -2.515095200120832,
          -3.3845665101372733,
          -7,
          -2.5178660540770967,
          -2.711872821428245,
          -4.453555302306861,
          -1.5072522144271299,
          -5.4054479626103085,
          -4.532988656508851,
          -3.0718843869084713,
          -3.782677688081816,
          -4.803206094655253,
          -7,
          -7,
          -7,
          -3.102029487303426,
          -3.5597505795177193,
          -4.707699593599912,
          -3.9123549292524067,
          -7,
          -5.406369835469268,
          -3.2212435936124524,
          -5.008872584806385,
          -7,
          -5.706356715653006,
          -3.9042352843723984,
          -7,
          -3.001880164887663,
          -4.204074175744145,
          -5.40556917139356,
          -5.707601682593951,
          -3.523683948711941,
          -4.345793798572643,
          -4.24725943193383,
          -4.364355676677317,
          -4.592591800242331,
          -4.330615822099622,
          -7,
          -7,
          -7,
          -4.366169013886152,
          -7,
          -3.9661937108212517,
          -5.007256038768518,
          -5.70631060041941,
          -2.6146262332789756,
          -2.5021355057145747,
          -2.274319023392659,
          -7,
          -4.753874873446505,
          -4.168980419083789,
          -5.2296733116017595,
          -4.7539990265859995,
          -7,
          -4.476681628454222,
          -3.4086543665017204,
          -5.70620041642511,
          -7,
          -4.8047279217580705,
          -4.47665008775944,
          -4.630660046928468,
          -5.0075642946226235,
          -4.6658418474962895,
          -4.665487180782811,
          -5.706617089429145,
          -4.804270655346634,
          -4.195406484730991,
          -3.0827604445276005,
          -7,
          -4.1901677985567725,
          -4.217152684288512,
          -3.205900770092607,
          -3.9616092434165946,
          -4.928380487793358,
          -5.405289998996462,
          -4.207251363794358,
          -4.428804653172165,
          -2.473979288039574,
          -4.365773790016144,
          -4.430330557604345,
          -5.406118454624989,
          -5.104531494486759,
          -3.6623555521273166,
          -7,
          -3.728379994487447,
          -7,
          -4.327356379705393,
          -3.918668585682132,
          -4.861933617810139,
          -7,
          -3.8913989046384003,
          -3.4549798528548243,
          -4.9311424604222625,
          -7,
          -3.959196881074919,
          -4.594288830951021,
          -4.8072981986022025,
          -5.008000260913889,
          -3.750948369230112,
          -4.709664209579645,
          -4.861939586069795,
          -5.229793579223345,
          -7,
          -5.405118308515801,
          -3.224719055787612,
          -4.203020131467844,
          -4.928593834480787,
          -4.708174361678332,
          -3.396978293242532,
          -4.666167272125798,
          -3.8605426258743467,
          -2.972770585594578,
          -4.755414072917662,
          -4.407086536735488,
          -7,
          -4.804190562898591,
          -7,
          -4.479043219385034,
          -4.806612356691847,
          -3.745956036332752,
          -7,
          -5.008323327254799,
          -5.706861954410581,
          -3.422986516221185,
          -5.405674988022053,
          -7,
          -5.007201366690912,
          -7,
          -7,
          -5.405190068017276,
          -5.229190199730057,
          -4.368698411516462,
          -7,
          -5.707479901588531,
          -5.706506129530095,
          -5.706595753188616,
          -5.229205571988446,
          -5.104385525054603,
          -7,
          -5.104477721982713,
          -4.452557318494008,
          -4.34541038552945,
          -3.6789959046615417,
          -3.970235265877339,
          -3.745669552326026,
          -4.706615382568476,
          -7,
          -4.293668467719096,
          -4.752287521541528,
          -7,
          -2.9638136486207034,
          -5.007699994446809,
          -4.9284863208502925,
          -4.140369580790315,
          -4.0547789790079305,
          -4.260742423565542,
          -5.706258501394493,
          -4.928146539379594,
          -4.365235196874075,
          -5.706208958819606,
          -3.8834224248181477,
          -4.665756617515032,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9103308634911365,
          -7,
          -7,
          -7,
          -2.745855195173729,
          -7,
          -4.037187370937113,
          -7,
          -7,
          -7,
          -4.027735087817683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.263671568048523,
          -7,
          -7,
          -7,
          -2.910624404889201,
          -3.296665190261531,
          -7,
          -7,
          -7,
          -3.3531465462139796,
          -7,
          -4.2381653294663355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.063183187967576,
          -7,
          -3.9030899869919438,
          -7,
          -7,
          -7,
          -3.4371160930480786,
          -3.0265332645232967,
          -7,
          -3.062581984228163,
          -7,
          -7,
          -7,
          -3.8481737162047907,
          -7,
          -7,
          -7,
          -7,
          -3.730862992046494,
          -7,
          -7,
          -7,
          -5.125344612231581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4898179083014504,
          -7,
          -3.255754786643044,
          -7,
          -4.327218404614085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.972341716325748,
          -7,
          -7,
          -7,
          -3.3265406685165617,
          -3.6786094165589263,
          -7,
          -7,
          -7,
          -7,
          -4.384460943824492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7542718686834595,
          -7,
          -7,
          -2.9722028383790646,
          -4.692802870950005,
          -7,
          -3.4413808849165113,
          -7,
          -7,
          -7,
          -3.599992177584098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7269715836828765,
          -3.24960595430691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3471998701311088,
          -7,
          -7,
          -7,
          -3.587062093703546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3712526291249394,
          -2.140604724802137,
          -3.176438555741045,
          -2.5219222448835006,
          -7,
          -3.632575382630548,
          -7,
          -7,
          -7,
          -2.3142886609474975,
          -7,
          -7,
          -7,
          -3.31921019418185,
          -7,
          -7,
          -7,
          -7,
          -3.672005445022952,
          -7,
          -7,
          -3.5820633629117085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6625689669332604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1699681739968923,
          -7,
          -3.7554937284151193,
          -7,
          -2.7267272090265724,
          -7,
          -7,
          -3.4391747398434687,
          -3.342620042553348,
          -7,
          -7,
          -7,
          -3.373892352104008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.910090545594068,
          -7,
          -7,
          -5.712948386763919,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9122220565324155,
          -2.2405492482826,
          -2.553883026643874,
          -7,
          -7,
          -7,
          -7,
          -2.4538277764478607,
          -4.942439651291005,
          -7,
          -7,
          -7,
          -7,
          -2.6989700043360187,
          -7,
          -7,
          -7,
          -3.679609571779756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0135113334659,
          -7,
          -7,
          -7,
          -4.710760288222427,
          -7,
          -7,
          -7,
          -3.9904720535256195,
          -7,
          -7,
          -3.712986233594383,
          -7,
          -7,
          -7,
          -7,
          -3.146438135285775,
          -3.15106325335375,
          -2.945796726048,
          -7,
          -7,
          -3.151676230847048,
          -7,
          -7,
          -7,
          -7,
          -3.32433390894172,
          -7,
          -7,
          -7,
          -4.432809005033168,
          -7,
          -7,
          -3.682911863319907,
          -7,
          -7,
          -7,
          -3.2678754193188975,
          -3.9539528832319233,
          -7,
          -7,
          -7,
          -3.519434194913703,
          -7,
          -5.527355319356032,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.856813445749757,
          -7,
          -4.9721877906016765,
          -7,
          -7,
          -4.240307906524845,
          -3.2950537061049516,
          -7,
          -3.0595634179012676,
          -7,
          -3.0538464268522527,
          -3.4799350339443356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.525692524505011,
          -7,
          -2.3096301674258988,
          -3.163260789989906,
          -7,
          -3.3561351686666177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.579011466494655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.922315356850907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2037320465140935,
          -7,
          -3.9518640925869866,
          -3.4055740076619347,
          -7,
          -4.327542831932522,
          -7,
          -4.536361450403717,
          -2.4558744716935386,
          -2.336173731545205,
          -4.139438274158168,
          -3.8831880896223963,
          -3.9018305180672983,
          -7,
          -7,
          -7,
          -2.425697213362591,
          -3.7901443650429005,
          -4.0709793567886825,
          -3.360309344342059,
          -7,
          -3.73596686511474,
          -4.709716466576368,
          -7,
          -7,
          -1.6220255270944546,
          -2.0205980199018136,
          -4.110113312295695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431444181617213,
          -4.481342284852483,
          -7,
          -3.7354924419253943,
          -3.801403710017355,
          -3.9436318943534263,
          -4.486600479306201,
          -2.7028611705729295,
          -4.341246520447747,
          -4.256712936488155,
          -7,
          -3.7791068199807696,
          -7,
          -3.5859117103194342,
          -4.607444299761739,
          -4.294267772179458,
          -7,
          -2.6364878963533656,
          -7,
          -7,
          -7,
          -4.167154813209906,
          -2.6458151182966416,
          -7,
          -7,
          -7,
          -3.8641549560020256,
          -7,
          -7,
          -7,
          -3.742568034366142,
          -7,
          -3.796740803977907,
          -3.307067950661298,
          -7,
          -7,
          -7,
          -7,
          -2.7034824447657835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.216297886630392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.793315333574228,
          -7,
          -7,
          -7,
          -3.1554372598130094,
          -7,
          -7,
          -7,
          -7,
          -4.249418507235988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2595938788859486,
          -7,
          -7,
          -7,
          -3.2328691051326137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3163897510731957,
          -3.9321653404475576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3207692283386865,
          -3.7984434603501875,
          -7,
          -7,
          -3.488127496247458,
          -7,
          -3.6115108871266566,
          -7,
          -3.8271322421466074,
          -3.4551495211798278,
          -3.7311050512159203,
          -7,
          -3.7289621797138666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.159507037477322,
          -3.6424892515699323,
          -7,
          -7,
          -7,
          -3.236537261488694,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.695026128922327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.70372115992702,
          -7,
          -3.378216149749878,
          -2.898999270889789,
          -3.2606164705566645,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5943372931093807,
          -2.6989700043360187,
          -2.5060538173181506,
          -3.217088951479172,
          -7,
          -7,
          -7,
          -7,
          -3.34143452457814,
          -7,
          -7,
          -2.416640507338281,
          -7,
          -7,
          -3.6872613462435067,
          -3.183649388808035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6787914343662442,
          -7,
          -4.101744430958274,
          -3.969509098596567,
          -7,
          -7,
          -3.996314618870713,
          -3.465000231841943,
          -2.889781762778371,
          -3.4067955726682504,
          -7,
          -3.3727279408855955,
          -7,
          -3.81202716049957,
          -2.4171578765916593,
          -3.6546577546495245,
          -2.9424049408561066,
          -2.667967660341314,
          -2.5464604029452773,
          -3.0868045767268297,
          -3.659440781870318,
          -2.5125158799574394,
          -2.3961993470957363,
          -2.1851347241927237,
          -2.9393453429619147,
          -2.769295252092732,
          -7,
          -7,
          -2.548564890653246,
          -2.404904953310314,
          -2.7275412570285567,
          -7,
          -7,
          -2.2845332706132413,
          -7,
          -2.4521453857623565,
          -2.7218106152125467,
          -2.796747738875302,
          -3.7987196851850062,
          -7,
          -3.3279716236230104,
          -2.165792706193744,
          -3.422753941301348,
          -3.8649854606597938,
          -2.4796872561691394,
          -3.4690852991231202,
          -2.8758957414137782,
          -7,
          -2.804999776617182,
          -2.8099382947684113,
          -7,
          -3.714664992862537,
          -3.361413015792206,
          -3.718169405391307,
          -7,
          -3.2483002953545963,
          -7,
          -3.7101173651118162,
          -3.291590825658001,
          -3.7318304202881625,
          -7,
          -7,
          -2.9777236052888476,
          -7,
          -3.0247592390353963,
          -2.298281123103342,
          -3.6722826247889206,
          -3.83416628394262,
          -3.99247461688504,
          -7,
          -3.1070742314120694,
          -7,
          -7,
          -2.986734422140967,
          -7,
          -3.6904618932461783,
          -7,
          -3.5385737338068557,
          -7,
          -2.3380941285590486,
          -7,
          -3.076057595762826,
          -7,
          -3.3428372865598073,
          -3.278010092736105,
          -4.164442085209516,
          -7,
          -7,
          -7,
          -7,
          -3.5149460053080044,
          -7,
          -7,
          -3.659226673770496,
          -7,
          -7,
          -7,
          -3.177055287158298,
          -7,
          -2.8135142715418833,
          -2.9710437918360286,
          -3.020827236121162,
          -2.4809437977431954,
          -3.102004688080605,
          -3.0824263008607717,
          -3.258557471186242,
          -7,
          -2.2814971589213475,
          -2.875970261782902,
          -3.658774320844357,
          -2.9533454203359306,
          -2.73559889969818,
          -3.925621454790829,
          -3.7234556720351857,
          -2.977815026083187,
          -3.638681758636586,
          -7,
          -3.566555330883055,
          -2.9286518466536946,
          -3.0715561430703127,
          -3.1340176456759834,
          -3.0617037342182414,
          -3.912647106218317,
          -3.3702354372831773,
          -3.710286647702891,
          -2.5402750553331366,
          -3.550717423469283,
          -7,
          -7,
          -4.4388744689064445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4719661042730605,
          -2.4303975913869666,
          -3.9638114296651668,
          -7,
          -3.711638538232349,
          -7,
          -3.18620267890855,
          -3.3805730030668872,
          -2.9628426812012423,
          -7,
          -2.4190284146106347,
          -7,
          -7,
          -3.2356967454881875,
          -2.2412601798924205,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1622656142980214,
          -2.225640576640016,
          -2.488953400332635,
          -2.062102487957556,
          -2.1867303757923113,
          -2.8105312074717155,
          -3.7001843296221977,
          -2.427256070563432,
          -3.3910233693700995,
          -2.275886960301226,
          -7,
          -2.1539841469356036,
          -2.8419848045901137,
          -7,
          -7,
          -2.664119421670553,
          -7,
          -3.8884790331883443,
          -7,
          -3.6715430852625737,
          -2.573729292503959,
          -7,
          -3.346792914871751,
          -3.4248272103534214,
          -3.273695587930092,
          -2.8112397727532894,
          -3.4588643783615183,
          -3.299797748122384,
          -3.4382258076045296,
          -2.6795036038348163,
          -2.8822139578592343,
          -7,
          -3.4652340949880145,
          -7,
          -4.11634203918834,
          -7,
          -4.4169399175410415,
          -2.418761495327949,
          -2.8051200889239234,
          -7,
          -2.7883451651521183,
          -7,
          -2.981969534880924,
          -3.209783014848515,
          -7,
          -2.281714970027296,
          -2.546131204914049,
          -7,
          -3.213849659558812,
          -3.5836844714826976,
          -2.904522345185676,
          -7,
          -7,
          -7,
          -7,
          -3.67641923171836,
          -7,
          -3.669502834104343,
          -3.0035466931021317,
          -2.858076971052982,
          -2.294135419126248,
          -7,
          -4.813334084359419,
          -7,
          -2.7354214555764456,
          -3.2243603809012646,
          -7,
          -3.66133934000604,
          -7,
          -2.649056554004186,
          -3.76544501809015,
          -1.1925336639891464,
          -3.3532428314337293,
          -3.177728835841732,
          -3.194976603216055,
          -2.40049254446103,
          -3.1795517911651876,
          -2.3659557226656793,
          -2.3856807347184095,
          -3.1986381299941233,
          -3.356599435724971,
          -3.3604987444680012,
          -7,
          -7,
          -2.2310446031358775,
          -2.6263403673750423,
          -3.65628990119136,
          -2.8674674878590514,
          -3.1729433064580195,
          -2.9992755720056676,
          -7,
          -3.0734332064655683,
          -7,
          -7,
          -7,
          -2.7802119008576183,
          -7,
          -4.106428894793411,
          -1.8714699123021497,
          -2.987846517260498,
          -7,
          -7,
          -7,
          -2.174956836603337,
          -7,
          -3.2771506139637965,
          -2.5873835309602837,
          -4.0429297333431595,
          -3.7561033715851053,
          -7,
          -3.1940515879954208,
          -2.56710482239302,
          -2.697167047058269,
          -2.1844978518164426,
          -7,
          -3.6853834098014873,
          -2.6308970444785422,
          -3.204933522354145,
          -2.3140177818135124,
          -7,
          -3.498999363580153,
          -1.9449054803762327,
          -3.7405205860536648,
          -2.931966114728173,
          -2.853926247739357,
          -3.667649041607016,
          -3.231433179239555,
          -7,
          -3.767842028696057,
          -3.669037800885156,
          -7,
          -2.1329879829101857,
          -3.079759919660093,
          -3.164385905857274,
          -2.909496597905892,
          -1.9593016307081295,
          -2.050460012950964,
          -2.5284492142455366,
          -3.3305490465108214,
          -3.944474339974218,
          -2.759894374025499,
          -7,
          -7,
          -7,
          -3.9918460536448968,
          -2.9164013036038754,
          -3.6922298357727557,
          -2.558879923655098,
          -2.7451398788031467,
          -7,
          -3.4927603890268375,
          -7,
          -3.6591076791998134,
          -3.711807229041191,
          -3.0322963447394726,
          -3.9181352261663593,
          -7,
          -3.7671729976765063,
          -7,
          -4.026349663465754,
          -7,
          -2.580164389698552,
          -2.8729676179461134,
          -1.9031341203675114,
          -7,
          -3.725094521081469,
          -7,
          -2.6214647920373584,
          -2.4258258487434703,
          -2.296058079214253,
          -3.015429616984512,
          -3.6651117370750512,
          -7,
          -3.1209685650193766,
          -2.641293793091543,
          -2.0991624929285946,
          -3.0156112045035126,
          -1.6474042335228791,
          -2.385606273598312,
          -2.162728409930911,
          -7,
          -3.660770643527697,
          -7,
          -4.801129187579704,
          -7,
          -7,
          -4.745987724433172,
          -3.965687638126618,
          -7,
          -4.333134792524816,
          -4.125047296659335,
          -7,
          -7,
          -7,
          -4.450664723252152,
          -4.112194305291189,
          -3.847500682027998,
          -7,
          -7,
          -3.9890936926103255,
          -7,
          -7,
          -7,
          -5.395211031930954,
          -4.359987174441292,
          -4.581517309425811,
          -7,
          -7,
          -4.394714279533342,
          -7,
          -7,
          -4.803306862008678,
          -7,
          -3.868022733383526,
          -4.400814192267559,
          -3.99334803992326,
          -7,
          -4.2100776242952875,
          -4.066102196766773,
          -4.2103987886522445,
          -7,
          -4.354367785390444,
          -2.5171958979499744,
          -4.104717513058913,
          -3.4680878435600424,
          -3.372617466178957,
          -7,
          -3.803047210491129,
          -3.8035936647713444,
          -3.4530494125334665,
          -2.22543536518789,
          -2.60151678365001,
          -3.501319486926531,
          -2.4682698165014303,
          -2.348818836031915,
          -7,
          -3.2422514706002343,
          -4.031004281363537,
          -3.671913012441587,
          -4.014142361545006,
          -7,
          -7,
          -3.4233278085624455,
          -3.17002349406913,
          -3.6806297324576893,
          -4.864818639765679,
          -1.6220255270944546,
          -7,
          -1.9409690164749218,
          -3.1547189913487803,
          -7,
          -5.111307890355802,
          -3.5061260432424652,
          -4.314183339137378,
          -7,
          -3.797406049676382,
          -3.5904238285747008,
          -3.8568966428983535,
          -3.909609510490169,
          -3.1347082247787115,
          -4.020899672862536,
          -3.664798619194218,
          -4.240836187180583,
          -2.5353785228186467,
          -2.921038214613296,
          -3.696374784805933,
          -7,
          -3.5844232261646978,
          -7,
          -2.7564730949882934,
          -4.0478198278165936,
          -7,
          -7,
          -3.361160995195026,
          -3.353820094897413,
          -7,
          -7,
          -3.6224730712781232,
          -2.323939275128193,
          -3.2869277849592553,
          -7,
          -7,
          -3.5134673141995356,
          -7,
          -2.6085260335771943,
          -3.680335513414563,
          -3.986368593570273,
          -7,
          -2.60784062997041,
          -3.4375920322539613,
          -7,
          -7,
          -4.242740144605627,
          -3.1899112096928057,
          -2.381014746995207,
          -7,
          -7,
          -3.7031193462360776,
          -7,
          -3.7138264243805246,
          -3.294613170667107,
          -2.167789779159089,
          -7,
          -3.680667831562386,
          -7,
          -7,
          -4.037296987157902,
          -3.5521238242332,
          -4.117019265436686,
          -7,
          -7,
          -2.0220226780388404,
          -3.4236553925733784,
          -2.5888317255942073,
          -7,
          -2.642312296447397,
          -2.8926510338773004,
          -7,
          -7,
          -2.8129133566428557,
          -3.1527468640264606,
          -3.9498289589353135,
          -7,
          -7,
          -3.1316988442592404,
          -2.8610220696884467,
          -3.174277918292213,
          -4.139532771597939,
          -4.295896818678989,
          -7,
          -2.535063847247395,
          -2.564961804462294,
          -7,
          -7,
          -7,
          -7,
          -3.7773543130842087,
          -2.793580867368156,
          -2.6964930237767444,
          -3.1450720377049977,
          -7,
          -7,
          -7,
          -7,
          -2.2030679971228104,
          -7,
          -7,
          -3.017450729510536,
          -3.5418287667813124,
          -7,
          -7,
          -2.8082531845665653,
          -3.222753620498096,
          -3.314130668652575,
          -2.7263196121107756,
          -3.3855705277254655,
          -3.846027675364379,
          -2.8325545294787067,
          -3.74170298395774,
          -3.2178931872102416,
          -7,
          -3.7481880270062002,
          -7,
          -3.665299499499897,
          -7,
          -7,
          -7,
          -3.720572720364261,
          -7,
          -4.2781016701595505,
          -7,
          -7,
          -2.9212657547472802,
          -3.336409697039683,
          -2.992553517832136,
          -7,
          -2.923909830929517,
          -7,
          -2.3023206191454757,
          -3.464042205438811,
          -7,
          -3.6604860157849677,
          -3.2931414834509307,
          -3.2534995431676204,
          -3.029428873420872,
          -2.714497408649806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6077408843287597,
          -3.218447972316523,
          -7,
          -7,
          -3.690196080028514,
          -2.3485588116852982,
          -7,
          -3.213916009644023,
          -2.8042151791711407,
          -2.5930541202839628,
          -3.995152376891454,
          -7,
          -3.708505880955237,
          -7,
          -3.876391061819188,
          -3.398547595734928,
          -7,
          -2.851441814672055,
          -3.0134271270706963,
          -2.8057556510562356,
          -3.173419384081802,
          -7,
          -3.345765693114488,
          -7,
          -7,
          -2.8020892578817325,
          -7,
          -3.3327918116376987,
          -2.4773497706322765,
          -7,
          -7,
          -2.8965262174895554,
          -7,
          -2.6928469192772297,
          -7,
          -7,
          -3.252124552505644,
          -7,
          -7,
          -7,
          -5.2048359780172,
          -7,
          -7,
          -7,
          -7,
          -3.7364230638180045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.339928207778514,
          -2.7750219919935004,
          -7,
          -7,
          -3.7936914585507266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2641682560516845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1915907263792107,
          -7,
          -7,
          -7,
          -3.965383599222163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.840419777736486,
          -7,
          -3.6298493584358824,
          -7,
          -7,
          -3.3205616801952367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9744349283567657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.824581376233483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2755416884013093,
          -7,
          -4.116554105154213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151614972016013,
          -7,
          -7,
          -7,
          -3.6750906226358344,
          -7,
          -7,
          -7,
          -7,
          -3.424718337331567,
          -7,
          -7,
          -7,
          -3.177824971864682,
          -3.6868506827358676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.175018675936629,
          -4.754913773651104,
          -7,
          -7,
          -7,
          -4.994211536306786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.69877452783365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4326486600131068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3526326642053124,
          -7,
          -7,
          -7,
          -3.4630963008800726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4072208929273966,
          -7,
          -7,
          -3.8806992892187013,
          -2.9427519204298136,
          -7,
          -3.5948972149333307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.624797578960761,
          -7,
          -7,
          -7,
          -7,
          -4.011085787106548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.225309281725863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0062520513693647,
          -7,
          -7,
          -2.732686115594294,
          -2.6848453616444123,
          -2.9829492885744986,
          -7,
          -2.320405953970451,
          -7,
          -2.9689496809813427,
          -3.7469454096151047,
          -7,
          -7,
          -7,
          -4.056352107632129,
          -3.555215405126073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.934859371642858,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6319508262592173,
          -7,
          -7,
          -7,
          -2.564073978977147,
          -7,
          -2.7810369386211318,
          -3.255272505103306,
          -4.340766245814562,
          -2.6711728427150834,
          -2.7075701760979367,
          -7,
          -7,
          -3.035829825252828,
          -7,
          -7,
          -7,
          -3.084576277934331,
          -3.2835273648616936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8391427171910273,
          -7,
          -7,
          -7,
          -4.410422906967378,
          -7,
          -7,
          -7,
          -3.2155935061708187,
          -7,
          -3.963031875053898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.870111155364401,
          -3.4650852875574327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6298681187461233,
          -7,
          -2.840262964417612,
          -3.2174839442139063,
          -4.132016211406724,
          -3.895422546039408,
          -7,
          -3.8097840982527122,
          -7,
          -7,
          -3.59250984790068,
          -3.287129620719111,
          -7,
          -7,
          -7,
          -2.9947569445876283,
          -2.9274986816932005,
          -7,
          -4.925341748364358,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5562783726258385,
          -7,
          -5.030229509007095,
          -7,
          -7,
          -4.173702284990066,
          -3.778585327862962,
          -7,
          -7,
          -7,
          -7,
          -3.309701124779525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0461047872460387,
          -7,
          -2.9132839017604186,
          -3.549303048006186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.712969413188024,
          -7,
          -7,
          -7,
          -4.181517744876915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.581653887176893,
          -7,
          -7,
          -4.44560939194609,
          -7,
          -7,
          -7,
          -5.086987679705316,
          -4.274827255438105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.77450966660029,
          -7,
          -4.677506578952049,
          -3.7218312169289187,
          -7,
          -7,
          -3.607025878434786,
          -3.878808932359205,
          -7,
          -7,
          -7,
          -2.4803663095328092,
          -7,
          -4.163068152729703,
          -3.2852759390712047,
          -7,
          -4.028184770141744,
          -7,
          -4.457387296278139,
          -3.03906142848015,
          -1.9195021390967313,
          -3.1860140602380915,
          -3.4712254448577413,
          -2.840751399088864,
          -7,
          -3.835563751669097,
          -3.823539433656859,
          -7,
          -3.7960189693471493,
          -4.37359235519894,
          -3.669409867287783,
          -7,
          -3.991682288353693,
          -4.44657952693536,
          -5.1043932088795545,
          -2.0205980199018136,
          -1.9409690164749218,
          -7,
          -3.4112780997968533,
          -7,
          -5.1043983313539965,
          -7,
          -3.917347937627772,
          -7,
          -4.322529394341456,
          -4.43279297319493,
          -4.180885369444393,
          -7,
          -4.214949760615447,
          -7,
          -4.597382512974542,
          -7,
          -7,
          -4.165550964917679,
          -3.4787251788694604,
          -7,
          -4.117101600989737,
          -7,
          -3.5952757118020995,
          -4.131180085665366,
          -4.296116492169714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.469453813767127,
          -7,
          -7,
          -7,
          -3.286905352972375,
          -3.3426595041391187,
          -7,
          -7,
          -7,
          -3.2716867502389397,
          -7,
          -3.3199245800341806,
          -3.617210094557434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.227243781503063,
          -7,
          -4.013090138125056,
          -7,
          -7,
          -4.596750995512816,
          -4.492564842670765,
          -4.310955155085438,
          -7,
          -7,
          -3.335959106148248,
          -7,
          -3.4681995860726125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5446880223026773,
          -7,
          -3.311753861055754,
          -7,
          -7,
          -7,
          -7,
          -3.3336487565147013,
          -4.068576414364122,
          -7,
          -7,
          -7,
          -7,
          -3.8499719123288503,
          -2.968015713993642,
          -3.7748817658187965,
          -7,
          -7,
          -3.8042076050820413,
          -7,
          -7,
          -7,
          -4.329774037157664,
          -3.3191060593097763,
          -7,
          -3.7039573587561563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7514843956354293,
          -7,
          -4.162026432421177,
          -3.4003405940215106,
          -7,
          -3.449324093098727,
          -7,
          -7,
          -7,
          -7,
          -3.190705124231049,
          -7,
          -7,
          -7,
          -7,
          -3.7934411329776636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.968015713993642,
          -7,
          -3.2229764498933915,
          -2.994215598949566,
          -3.7641761323903307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3223020096150195,
          -7,
          -7,
          -3.5293019977879805,
          -7,
          -3.4109458586877746,
          -7,
          -7,
          -2.8798601462734688,
          -7,
          -3.6564815157904986,
          -7,
          -7,
          -7,
          -4.654431651055449,
          -4.653062897685104,
          -7,
          -7,
          -4.477844476338758,
          -4.659212396143382,
          -4.481667123172043,
          -4.477878197285531,
          -4.479234496909399,
          -2.7962063793826166,
          -4.131242766886208,
          -7,
          -4.954980183213358,
          -2.9311890460376633,
          -2.9029254503421624,
          -4.180035029080566,
          -4.956614986067625,
          -7,
          -7,
          -7,
          -2.501106366166521,
          -3.431207354239188,
          -4.953774184077026,
          -3.4295031177076867,
          -2.1332646988911512,
          -7,
          -4.65454712291749,
          -7,
          -4.183734740768417,
          -4.356513447223032,
          -3.508515290343504,
          -2.426379720020594,
          -3.67865732337852,
          -4.653574275130625,
          -7,
          -3.75173606623822,
          -3.706134349566367,
          -4.353165804965758,
          -3.090751689644903,
          -4.477053692545283,
          -4.263863215008734,
          -4.955774312014999,
          -2.2811719675702458,
          -4.176751849112052,
          -4.956226076359381,
          -4.117114978346134,
          -4.481002855946895,
          -2.6898989932168496,
          -7,
          -7,
          -4.666115322770356,
          -4.113188647173712,
          -4.358287092179741,
          -1.995999092965569,
          -4.010921547963273,
          -3.688032522105424,
          -2.59874036491712,
          -4.6550038979849875,
          -4.111838373829939,
          -4.061984653726177,
          -4.656155720651669,
          -4.355489832903385,
          -4.179436883244977,
          -7,
          -4.655695358099588,
          -2.9685950100903336,
          -1.8568627185206399,
          -7,
          -7,
          -3.3838909217359983,
          -7,
          -3.458605805035887,
          -3.9307962629833004,
          -7,
          -4.362708610909318,
          -2.5879341741548614,
          -4.954546409224138,
          -3.0224805150602982,
          -7,
          -4.95537020971636,
          -2.554833535393301,
          -4.961829091708983,
          -3.9555578754030956,
          -7,
          -3.0053219657545895,
          -3.726190060052768,
          -3.1738345463777593,
          -3.5369930805939256,
          -3.730121737157226,
          -4.4829497689403945,
          -2.218890315867444,
          -3.792172151861495,
          -3.3975620080186446,
          -4.255431717226232,
          -7,
          -4.186428913233115,
          -3.7842986456020222,
          -3.8842004205035816,
          -3.2372783666008687,
          -4.955047620244845,
          -3.391955332135257,
          -4.4799158561965475,
          -7,
          -4.954039791376542,
          -2.688225928730787,
          -4.352216295257527,
          -4.0090682761922185,
          -4.357005262671767,
          -3.3807630389163634,
          -2.3633996005628086,
          -7,
          -4.95535095736766,
          -4.05508672862109,
          -3.543700408844007,
          -2.3907696872309554,
          -4.957420505061151,
          -7,
          -4.007989459470628,
          -3.424237414280535,
          -3.3186475690036548,
          -7,
          -2.805288155767483,
          -2.431384692068434,
          -4.956379761319415,
          -2.7447043988534787,
          -4.956595788822287,
          -3.072360897625468,
          -4.113121711270605,
          -3.7890445634880243,
          -2.90936065045019,
          -4.954633198689235,
          -4.4796040990439066,
          -2.133112383842677,
          -4.187934137794767,
          -4.953735536752166,
          -4.954170120993136,
          -3.2739306322608575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.35969125581128,
          -2.9005690684574574,
          -2.989974234237973,
          -4.129616245517439,
          -4.956821302879551,
          -3.8109892965113796,
          -7,
          -7,
          -4.004273593983716,
          -3.2874658053432286,
          -2.969542568385431,
          -7,
          -7,
          -4.9569076389632665,
          -2.0983138589928285,
          -7,
          -7,
          -4.6600777237750135,
          -3.9590461647617055,
          -7,
          -3.8799269556700935,
          -4.65898389025032,
          -3.9223998627538696,
          -3.582896287811938,
          -4.261805100794075,
          -2.9733117237162716,
          -3.7294982943302246,
          -4.6551384348113825,
          -2.11770545472094,
          -4.110584900809918,
          -7,
          -7,
          -4.258071901096532,
          -3.8414605469662466,
          -4.955211352309952,
          -4.6531835598447415,
          -2.6967886312133325,
          -7,
          -3.2571984261393445,
          -7,
          -3.3328606129435316,
          -1.8320963527302048,
          -3.8433190436791786,
          -3.00044792387416,
          -3.253733976788288,
          -3.9176773410199104,
          -3.758963906261545,
          -4.056566617596654,
          -3.960741829684198,
          -4.958449202872238,
          -4.260734254748414,
          -3.629562492778617,
          -4.353935455571521,
          -3.7695573215600326,
          -7,
          -3.530614754420801,
          -3.8473543181408956,
          -3.6491712371470424,
          -4.65389237604383,
          -2.9716837962818903,
          -4.954005995831296,
          -3.7234191828331897,
          -4.956341345177691,
          -3.8135238031731653,
          -4.478330767958597,
          -4.9561588220840775,
          -3.635342066205612,
          -4.059459280759199,
          -7,
          -3.9220126057956737,
          -2.2201785795834823,
          -2.831649008045522,
          -7,
          -4.652976000167315,
          -3.9554087118535692,
          -4.477246699451068,
          -4.95489346306892,
          -4.9559137362541525,
          -7,
          -4.956346147381247,
          -2.955433843351917,
          -3.206109057007845,
          -3.1736886626993055,
          -2.4269866827278737,
          -7,
          -4.110522372601323,
          -7,
          -4.958315370845764,
          -7,
          -7,
          -4.962151423362826,
          -4.482925962459884,
          -4.181734048110948,
          -7,
          -7,
          -4.653646591254662,
          -4.9552161670245845,
          -4.953894934805404,
          -4.653545345309011,
          -3.2696606383128284,
          -2.040166187706178,
          -7,
          -7,
          -7,
          -7,
          -4.655863255143841,
          -4.002262080877372,
          -7,
          -4.655892030978066,
          -3.9745807690805917,
          -3.9608036249117697,
          -3.6791143282160643,
          -2.917052562679025,
          -4.960470777534299,
          -4.954411368906185,
          -7,
          -2.1939996969068654,
          -3.882467614895371,
          -3.2724499385486108,
          -3.7808067878569203,
          -2.3313884183808486,
          -4.95751151145448,
          -7,
          -4.654388341190573,
          -3.204172515101434,
          -3.2214142378423385,
          -3.3405014000346305,
          -3.4197951747985944,
          -3.753605586292964,
          -4.357386871335479,
          -4.95680211475213,
          -4.477497480263115,
          -3.7033773685123497,
          -3.1726358824113596,
          -3.373322322112365,
          -4.953711380427555,
          -3.9138812542789005,
          -3.9588074784637617,
          -4.955211352309952,
          -4.261043881578282,
          -4.953981854545893,
          -3.6611593333465513,
          -2.831585410556541,
          -4.356427441692355,
          -4.663889298622661,
          -4.6585598838444096,
          -1.7524393038328663,
          -3.033195825123681,
          -4.954840458899287,
          -3.288125411314306,
          -4.9545078305606225,
          -4.355144896174567,
          -3.7940323677785246,
          -3.784740883765015,
          -2.684354440963692,
          -3.4897382311301004,
          -3.6186301025123226,
          -3.784935706040011,
          -3.569654763999852,
          -3.9628237572821168,
          -2.5073619679009456,
          -3.159800554607567,
          -7,
          -7,
          -7,
          -3.4870105827412474,
          -3.2721062829317655,
          -4.256732174125921,
          -4.479431337197736,
          -3.9640945574951996,
          -4.654229501390483,
          -4.262934951640582,
          -7,
          -3.1825388976316757,
          -4.47969045420215,
          -4.179800654075695,
          -3.113609151073028,
          -4.65579130721557,
          -2.8339003854460367,
          -3.551152538599382,
          -2.400852103270976,
          -4.655834477402838,
          -2.228447191371028,
          -2.572621734042997,
          -3.411351202966301,
          -7,
          -4.1793985738477035,
          -4.653945370217834,
          -2.6946708788665745,
          -3.3890115198419006,
          -4.0223687930961,
          -4.007648222996511,
          -7,
          -7,
          -3.2821120781959503,
          -4.177122689053482,
          -4.6555705925491955,
          -3.877740780594422,
          -3.4283939969501827,
          -4.052463077483329,
          -2.50158891826153,
          -4.953817658206996,
          -7,
          -2.5131497987623552,
          -2.432572144278123,
          -4.2558270827032345,
          -3.2389145669888704,
          -3.1403200681151864,
          -2.445109514160607,
          -3.2963830892565467,
          -3.135007398371379,
          -2.6079249046588773,
          -2.6884374443720818,
          -3.5390482048667,
          -3.495643434975721,
          -2.971914517208946,
          -2.963732558359301,
          -1.584075686912433,
          -3.702113159927229,
          -3.0310520390949707,
          -1.777208921234309,
          -3.585894373560409,
          -2.9401368568647728,
          -4.191460329990939,
          -2.9002119515293323,
          -2.7730868841903242,
          -2.795961136858702,
          -3.5943883000660994,
          -3.0106100786713155,
          -2.8131005261146176,
          -3.0559680048965525,
          -7,
          -2.3645362928944373,
          -2.819405603168696,
          -2.866211090217405,
          -3.1453341143778153,
          -3.1017884680466774,
          -3.4836918763698206,
          -3.3252889815821676,
          -3.606497806352983,
          -2.9119340261025153,
          -3.329729861208485,
          -2.6592621570681594,
          -3.303886921725102,
          -2.838781990842552,
          -2.0992450911191702,
          -2.376531898750521,
          -3.349615134542817,
          -2.979218596375799,
          -4.059449812507961,
          -1.9726040220056356,
          -2.3785742856804393,
          -3.1879670063434964,
          -1.843936289441158,
          -1.9177551208044752,
          -1.714214894373381,
          -4.005242495654679,
          -2.3248192261464693,
          -3.4774197295869875,
          -4.352568386179309,
          -3.9809164758354942,
          -2.3185520603058944,
          -3.320146286111054,
          -3.5593942622111583,
          -2.1790050976603923,
          -1.9256485743396834,
          -2.654326066576254,
          -4.110113312295695,
          -3.1547189913487803,
          -3.4112780997968533,
          -7,
          -4.025710835815091,
          -3.0672391752241204,
          -2.5906602640072958,
          -2.3231177054469523,
          -3.698820388245779,
          -2.586208153029271,
          -1.8587823323091992,
          -2.179117652198935,
          -3.015783409685465,
          -2.651785109751889,
          -3.155059444203544,
          -2.1068804851954357,
          -2.897015436856953,
          -4.0537888751837405,
          -2.0711876357354817,
          -0.2526488849797658,
          -3.690093441922547,
          -2.005672876125111,
          -4.177594209647827,
          -2.8292151798431755,
          -2.087542546880814,
          -2.9134871923593626,
          -4.352737095711291,
          -4.255156677797138,
          -7,
          -4.653506769215551,
          -3.934691224185509,
          -1.8508118273944065,
          -3.339067945753538,
          -2.6547014748369984,
          -4.25598127408652,
          -3.4982962910108375,
          -2.2218894833457847,
          -3.207048242986976,
          -3.0063614376592094,
          -4.051943183341951,
          -2.8663239810637275,
          -3.2463778783937567,
          -1.9249605003446761,
          -2.6534315872359553,
          -3.5583052812817852,
          -3.9619902874400648,
          -1.8720934227629034,
          -3.2624036232587823,
          -2.8170056788606863,
          -4.355585600061131,
          -4.178021984207647,
          -2.218087383804092,
          -4.479234496909399,
          -4.11179041463582,
          -3.4416713367267233,
          -2.9022186525648697,
          -7,
          -2.7670903566949376,
          -4.954401721562251,
          -4.653800825418502,
          -3.0305423788965262,
          -1.2690758123899828,
          -2.286489046836051,
          -4.652898743329887,
          -3.2569722899812006,
          -2.602313552390272,
          -3.843525053233252,
          -3.2931697115807563,
          -7,
          -2.994943243789128,
          -2.1448000423056075,
          -4.954218381297876,
          -4.0517456530256775,
          -3.485948449216443,
          -3.561254075742359,
          -3.1609946019388135,
          -3.2744465129379186,
          -3.3364835588742867,
          -3.702703320968491,
          -4.257558587444218,
          -3.337159644526856,
          -3.09810021660978,
          -3.1639022977727844,
          -7,
          -3.075537603513607,
          -2.9452481227416465,
          -4.058345346004422,
          -3.0550967654044965,
          -4.956134800175796,
          -4.954903099495695,
          -3.1885222651994,
          -3.016696288653449,
          -1.5493542710373036,
          -2.6151760173596306,
          -3.3467998944611654,
          -3.0449697502337134,
          -7,
          -3.5073520497345663,
          -3.725546525521209,
          -3.070434676288165,
          -4.353574851673284,
          -3.042248063558637,
          -2.770561112325769,
          -3.657739280815576,
          -3.9996331075055283,
          -2.7808594201090915,
          -2.519851127858414,
          -3.078647329681168,
          -3.5312328417522694,
          -2.180226161614204,
          -3.1199389460651723,
          -3.2867908860202397,
          -3.2591493237467004,
          -2.677128774472802,
          -3.2326542662501723,
          -3.9588981947107715,
          -2.8046192945802098,
          -4.352225945388225,
          -4.351844602085498,
          -2.9459490851608128,
          -3.622901339450227,
          -3.7530705265357844,
          -3.9238513610441434,
          -2.598946250333827,
          -2.667829235565519,
          -2.770010546065663,
          -2.0282002587582526,
          -3.274042330049831,
          -3.107110998040215,
          -4.479124035234161,
          -3.482954530079902,
          -7,
          -2.689847910948187,
          -2.6886376191642114,
          -3.744108823475306,
          -3.874781294503695,
          -2.6775496264220617,
          -3.781717088051875,
          -1.89528078671618,
          -3.232295921471446,
          -4.955663702334214,
          -4.050935320901517,
          -4.3519508325993845,
          -3.954517475547784,
          -4.109183071663385,
          -4.176665113572594,
          -3.601081727784023,
          -4.959932927904161,
          -3.7059634403790094,
          -3.274249280187803,
          -3.877160099130066,
          -4.051793839436376,
          -4.256621546069706,
          -3.3884084627688495,
          -3.751885076250019,
          -3.0489247370565566,
          -3.45425397010459,
          -2.120914451235308,
          -3.1270911037675013,
          -3.3495180415860877,
          -3.57621173370578,
          -4.653029106272008,
          -2.950069818943341,
          -3.654941420288582,
          -4.953812827963013,
          -2.062930815889548,
          -3.4652532922333523,
          -3.50931295469693,
          -3.1410892522830585,
          -3.5842275392635443,
          -3.6415826941573264,
          -4.255537826224604,
          -4.1766169196757135,
          -2.9979369293522593,
          -4.352177692590311,
          -3.4165064451418456,
          -3.4969821074492327,
          -4.179274044963151,
          -4.6527296960692475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.320687797220125,
          -7,
          -7,
          -7,
          -7,
          -4.032638903912429,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.113140836867081,
          -7,
          -7,
          -3.697012416744354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3158046790494526,
          -7,
          -7,
          -7,
          -7,
          -3.861653870213911,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.243286146083446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6260836162697796,
          -7,
          -7,
          -4.458698268402751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.162707234517458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7107064345118013,
          -7,
          -7,
          -7,
          -7,
          -3.629613445378183,
          -7,
          -7,
          -7,
          -7,
          -3.7973368007753496,
          -7,
          -7,
          -7,
          -7,
          -3.8818236174163134,
          -3.9406160823374075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464713045757064,
          -7,
          -7,
          -7,
          -7,
          -3.8680857845717336,
          -7,
          -7,
          -7,
          -7,
          -3.679109782081773,
          -7,
          -4.003654370310405,
          -3.889777764467921,
          -7,
          -7,
          -7,
          -4.317545213369664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9242965196279602,
          -7,
          -7,
          -7,
          -3.6780629049743454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.248354776253106,
          -4.026369811573718,
          -7,
          -7,
          -7,
          -2.993741367349005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.602992722137344,
          -7,
          -7,
          -7,
          -3.829946695941636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4081721014970534,
          -7,
          -7,
          -4.181547240276837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.085237046441033,
          -7,
          -4.02197445511006,
          -3.807061239917239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7319914490189294,
          -7,
          -7,
          -7,
          -7,
          -4.093141404751149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.27429643177251,
          -2.651360811389999,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.666878183240443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.510410948010177,
          -7,
          -4.596201102454085,
          -7,
          -4.753337885232085,
          -7,
          -7,
          -7,
          -7,
          -4.0317315399458264,
          -4.158121150337495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.399920830723496,
          -7,
          -7,
          -3.5451303224548734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.124151183547985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.455994682544721,
          -7,
          -3.6991885346483975,
          -7,
          -7,
          -3.0615159677916264,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.569444140240524,
          -7,
          -7,
          -4.047440374098858,
          -4.331663445310756,
          -3.90100399089971,
          -7,
          -4.754699910729208,
          -4.460206027457451,
          -7,
          -4.344372621906474,
          -4.9093366872381266,
          -4.16799631208688,
          -3.964118143151485,
          -4.404560059092356,
          -4.061279028255576,
          -4.24185764667843,
          -3.858958054718006,
          -7,
          -3.0752150588300236,
          -4.4718244708456,
          -7,
          -3.93387517879672,
          -3.95390459341346,
          -4.251006913898273,
          -4.079814130800685,
          -3.8951240732440984,
          -7,
          -7,
          -4.404483061833551,
          -4.313382057578149,
          -7,
          -3.9657726771873762,
          -7,
          -4.421562798551045,
          -3.817714075084912,
          -7,
          -7,
          -7,
          -7,
          -4.52630049936563,
          -3.197979956461525,
          -4.188965961710644,
          -7,
          -4.114243913688907,
          -4.182068534220791,
          -4.111564935454498,
          -7,
          -4.424080882717048,
          -7,
          -3.668552656897619,
          -3.5759091446814137,
          -7,
          -3.4372747974101237,
          -3.7562422146809546,
          -7,
          -2.196863537872375,
          -7,
          -7,
          -7,
          -7,
          -3.6147917919564176,
          -7,
          -7,
          -3.7353172901274787,
          -3.6755672791395586,
          -3.3945633363947443,
          -7,
          -7,
          -7,
          -4.025710835815091,
          -7,
          -2.769310175788892,
          -7,
          -3.735159593090218,
          -7,
          -7,
          -3.304638606422875,
          -3.004995610796561,
          -7,
          -4.334694958867158,
          -7,
          -4.080940705963939,
          -4.5557472140872095,
          -7,
          -4.968763048197249,
          -3.7015361741036097,
          -7,
          -3.3003189233265715,
          -7,
          -3.961231197044663,
          -4.058663227194839,
          -4.397644587969917,
          -7,
          -7,
          -7,
          -3.7637274037656985,
          -7,
          -4.062945310995021,
          -3.8757555792580543,
          -7,
          -7,
          -7,
          -3.8330195470765314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5765972691771957,
          -7,
          -7,
          -7,
          -7,
          -3.865044721693099,
          -3.6925384871257463,
          -7,
          -7,
          -7,
          -3.7912694809102683,
          -7,
          -7,
          -7,
          -7,
          -3.7134905430939424,
          -7,
          -7,
          -2.527395527157122,
          -4.635329571719198,
          -4.522424670251202,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5843500735453686,
          -7,
          -7,
          -3.88349109018893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.851869600729766,
          -7,
          -3.3654463838101742,
          -7,
          -3.4628470358316736,
          -3.628899564420607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.211269325159594,
          -3.6084190513172856,
          -3.9618480590183243,
          -7,
          -7,
          -7,
          -7,
          -3.1441459284677373,
          -7,
          -3.8683504996479683,
          -3.762566037627078,
          -7,
          -7,
          -3.456441952101687,
          -4.6807614389476635,
          -7,
          -7,
          -3.8034400439889096,
          -3.9108377649926833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5168657614978143,
          -7,
          -7,
          -4.148124297389897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.305630775996965,
          -3.9918460536448968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.436509596914933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.760497875226527,
          -3.4674601095072637,
          -7,
          -3.539452491549461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.787956123283932,
          -3.8854177651109363,
          -7,
          -7,
          -7,
          -2.3125644482543892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.264109156305809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.803289784441723,
          -7,
          -7,
          -7,
          -7,
          -5.407062722441135,
          -7,
          -5.405199464216897,
          -4.8036107303933635,
          -2.2394401715727943,
          -3.242146747175157,
          -7,
          -7,
          -3.2255612545205037,
          -3.3777235917236528,
          -5.105309170614622,
          -7,
          -7,
          -7,
          -7,
          -3.5258850736023364,
          -3.8984991354385503,
          -7,
          -4.934856848765115,
          -2.065997950804967,
          -7,
          -5.405401006456081,
          -7,
          -5.407664483299706,
          -5.105440351415542,
          -4.706540274057084,
          -2.9609541815104348,
          -4.707127140138086,
          -7,
          -7,
          -7,
          -5.106500268626982,
          -5.405283166841318,
          -4.807238971050686,
          -7,
          -5.408000698156257,
          -7,
          -1.9413530558205947,
          -7,
          -7,
          -4.56266665574757,
          -7,
          -4.566432441251003,
          -7,
          -7,
          -3.417988261884268,
          -4.804311547921729,
          -5.1060735504822965,
          -2.7663789840964386,
          -3.9463590805881705,
          -4.417614496970858,
          -3.581906175240146,
          -4.502449312138587,
          -5.104867635083071,
          -4.931688348356623,
          -5.40597267230393,
          -5.406109078287424,
          -7,
          -7,
          -7,
          -4.808327467093671,
          -3.170618332897216,
          -7,
          -4.927864609296833,
          -4.6302464573197675,
          -7,
          -3.981823638939474,
          -4.809330723851234,
          -5.405078152192411,
          -4.129878070570166,
          -2.309152289779365,
          -7,
          -4.562861918686101,
          -7,
          -4.803253919365127,
          -4.1863080477904715,
          -4.009605548485871,
          -7,
          -5.103774653029688,
          -3.7652433977308273,
          -4.451559595114814,
          -4.233275391293944,
          -4.330846499235686,
          -4.562112650103821,
          -5.407004882289126,
          -2.307957045494282,
          -4.263818606337028,
          -3.7982921198880066,
          -7,
          -5.404799518857654,
          -4.709648107508037,
          -7,
          -4.563102904899838,
          -4.507518555576424,
          -4.928081626246693,
          -3.340892514452765,
          -4.5608047076145,
          -7,
          -4.927724430480919,
          -3.656317987928804,
          -5.103913135702874,
          -5.107152286081356,
          -5.406649166157267,
          -4.369937394597604,
          -2.9593881995919062,
          -5.405698025321797,
          -7,
          -4.804275767129094,
          -4.628416179045295,
          -4.16498489374402,
          -7,
          -5.404832006795777,
          -7,
          -5.410073359216594,
          -5.411395767749028,
          -7,
          -3.12076675689277,
          -2.1598146554537774,
          -5.405682667257748,
          -4.4157827195557315,
          -5.405759452147459,
          -3.344997458978293,
          -5.105324505480681,
          -3.8289531480657217,
          -3.3935971367804583,
          -7,
          -4.9286842618460565,
          -3.712543290572643,
          -4.631005532907514,
          -5.404744796836268,
          -7,
          -3.4208261382255905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7229200677911893,
          -4.714212366993632,
          -3.4831170267746994,
          -4.567189427160923,
          -4.063345302141709,
          -3.617343218781815,
          -7,
          -5.104222425149045,
          -4.929342278748438,
          -3.8789958794490644,
          -4.160113226773964,
          -7,
          -4.928214858512939,
          -7,
          -3.1969926658789696,
          -7,
          -7,
          -4.328153561970996,
          -4.4523930349981296,
          -7,
          -4.084404330348212,
          -5.406981063516755,
          -5.107332097797437,
          -5.408163617774523,
          -7,
          -4.0550357871696905,
          -5.407008284864256,
          -5.405610989110177,
          -2.4705293932107346,
          -4.56033711687566,
          -7,
          -7,
          -7,
          -5.405377099554486,
          -5.405267794099257,
          -7,
          -3.8160323905754923,
          -4.560253443542344,
          -3.7030444592234555,
          -5.404914070763187,
          -3.740764037376217,
          -2.109916599235302,
          -5.10500406463443,
          -5.111151572881174,
          -4.711665533165346,
          -5.105641304876784,
          -7,
          -7,
          -5.407268502868533,
          -5.105385839530771,
          -4.929752608152573,
          -4.265191937350579,
          -5.104522959613173,
          -3.6193626605466327,
          -7,
          -3.580076671327345,
          -7,
          -2.743169825496728,
          -7,
          -4.193481450939115,
          -7,
          -4.635632842395605,
          -5.405669015189301,
          -5.406892582351948,
          -7,
          -5.405604162002902,
          -4.936346158266162,
          -7,
          -7,
          -4.2620542460671,
          -3.549033145088479,
          -4.054346554904802,
          -7,
          -5.404843975423541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.162531217536575,
          -4.808526616621753,
          -3.694137019956113,
          -2.3696922569462044,
          -7,
          -7,
          -5.4056434164042,
          -7,
          -7,
          -7,
          -7,
          -4.503882569503796,
          -7,
          -7,
          -7,
          -7,
          -4.928141415011316,
          -7,
          -7,
          -7,
          -3.112374317534743,
          -7,
          -7,
          -7,
          -7,
          -4.560750124434581,
          -4.928626254003232,
          -7,
          -5.104845461232334,
          -5.111235621527294,
          -3.7258895224423694,
          -3.4897844322789955,
          -4.41513534300341,
          -5.407140964505215,
          -5.404984154791237,
          -7,
          -3.4378139588473458,
          -4.453330233708015,
          -3.5143092296787004,
          -7,
          -3.768122743166399,
          -4.6279169106070865,
          -4.80320097026682,
          -5.4053446523686475,
          -4.6424265961372715,
          -3.5323520060651012,
          -3.5741404480439325,
          -4.298926935444693,
          -3.8135843241504817,
          -5.40678535986194,
          -5.104799404232248,
          -7,
          -7,
          -4.262810310487699,
          -5.408674042791168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.504706975657982,
          -4.272214693977678,
          -4.804372879565798,
          -4.7097565730871915,
          -5.406829613621545,
          -2.9095246982537577,
          -4.094986592030411,
          -5.104102836565097,
          -3.349232928245844,
          -7,
          -4.928858238901066,
          -7,
          -4.805247615802404,
          -4.0767992665280355,
          -4.807463992788396,
          -4.937302195705841,
          -7,
          -7,
          -4.709030693820238,
          -2.4203060853745657,
          -3.7932297824775407,
          -7,
          -7,
          -7,
          -3.6811557775072417,
          -4.030839131797785,
          -7,
          -7,
          -4.3670440252690375,
          -7,
          -5.106634487635724,
          -4.92833780587623,
          -5.111538062043175,
          -7,
          -7,
          -3.6401056483657737,
          -7,
          -2.496559231614817,
          -3.9387307545245966,
          -2.1246224358834676,
          -4.326639624238483,
          -3.5510119398324944,
          -2.7089047150021646,
          -4.372754718401078,
          -7,
          -5.406115897462093,
          -7,
          -3.9046851219657635,
          -4.812309936448493,
          -7,
          -4.930548324687003,
          -7,
          -7,
          -4.2041623921556805,
          -7,
          -7,
          -7,
          -4.712597515821648,
          -7,
          -3.130559357019549,
          -7,
          -5.404867911689591,
          -3.7342203245726457,
          -2.8676151293759182,
          -3.8665731016850873,
          -4.332007318122397,
          -3.479918656960047,
          -3.46932055733037,
          -4.375390899472998,
          -3.1152329844736144,
          -3.172844543701635,
          -3.8401077460146227,
          -4.234670794831644,
          -3.9186529448762197,
          -3.239565356161048,
          -3.187423422851196,
          -3.8115690484294324,
          -4.183839037056421,
          -3.0364553094923483,
          -2.9088040173779457,
          -4.576984334177281,
          -3.8579748912130563,
          -3.5125577484873114,
          -2.489382928319023,
          -4.054841184337388,
          -3.7027342912041856,
          -4.249204881954037,
          -3.4218759084509527,
          -3.2347252291627706,
          -3.795968887121449,
          -7,
          -3.3368112188941668,
          -4.013002607838666,
          -2.986469775153835,
          -3.8822983828565656,
          -3.548920928104592,
          -4.805291816380721,
          -3.8221419162617774,
          -4.1156887109195965,
          -2.883128885139733,
          -4.107216432315288,
          -2.443380274264685,
          -5.406088620120958,
          -2.658166819056501,
          -2.817909297102525,
          -4.270870076550308,
          -4.370324641925331,
          -3.173719779362857,
          -3.9306858969758305,
          -2.384066517495708,
          -3.852267278371824,
          -4.564249997194994,
          -3.255377663399359,
          -2.6408277411455305,
          -3.922847951771373,
          -4.202644950872879,
          -3.3913251836514897,
          -4.000218762497649,
          -7,
          -4.715608958857198,
          -3.274950722956219,
          -3.5604471976694194,
          -5.406103963836156,
          -2.2644821120797367,
          -2.0140910909448078,
          -2.213856436325215,
          -7,
          -5.111307890355802,
          -5.1043983313539965,
          -3.0672391752241204,
          -2.769310175788892,
          -7,
          -3.638513806542383,
          -3.240626535195097,
          -7,
          -3.3626772629262764,
          -3.5670557889077523,
          -2.778917466444301,
          -4.933753789312102,
          -4.069442865465664,
          -4.113769599761249,
          -3.1063569862135556,
          -2.860354858662413,
          -7,
          -3.150599766818814,
          -2.9100690256570454,
          -4.264043292828227,
          -2.748842971431182,
          -4.803404191319472,
          -4.632538271950371,
          -3.587464304551835,
          -4.056347339540412,
          -5.104097710604107,
          -5.404896975382031,
          -5.4047653184023146,
          -7,
          -4.810751545940375,
          -3.871881587834298,
          -4.930813239879962,
          -3.7480684503090216,
          -5.405189213807231,
          -4.80524591569032,
          -2.9272945385073883,
          -5.408209427907497,
          -7,
          -7,
          -3.95102918525155,
          -7,
          -3.0521000423687106,
          -4.180547512138109,
          -5.40571679555144,
          -7,
          -3.934936434427346,
          -5.407630507725026,
          -4.013879965230417,
          -5.1051097680662885,
          -7,
          -4.63603464296186,
          -7,
          -7,
          -5.10611437035037,
          -4.932631015748351,
          -7,
          -2.512324146310632,
          -7,
          -7,
          -3.6033816839102117,
          -2.9388562285678494,
          -3.3304676115937397,
          -7,
          -5.4087706338279675,
          -4.117533119495977,
          -7,
          -4.931889916029512,
          -7,
          -4.707845993224391,
          -3.865233662340489,
          -7,
          -7,
          -5.107137015619441,
          -5.105733235627028,
          -4.935080486984058,
          -5.405597334788302,
          -7,
          -7,
          -7,
          -5.1062249048967985,
          -4.077843403008046,
          -4.032067283910736,
          -7,
          -4.409944952202783,
          -4.807565468204041,
          -7,
          -3.84748823364797,
          -5.405595627967882,
          -7,
          -4.3381226757764235,
          -5.106656570334018,
          -2.943474400663783,
          -4.709988666197879,
          -4.456458821182361,
          -7,
          -7,
          -4.81390275426885,
          -7,
          -3.9990384774352434,
          -7,
          -4.629557397189861,
          -3.9095376435406557,
          -5.406598082504823,
          -7,
          -4.238434200651701,
          -3.471381201714428,
          -4.809030832780143,
          -7,
          -4.323383804818248,
          -7,
          -5.413279641863039,
          -4.929340575328879,
          -3.472452387696761,
          -4.934722274046495,
          -5.105576601200196,
          -5.406351093443442,
          -7,
          -7,
          -3.8851931120167453,
          -5.107920206498857,
          -4.8039519020845045,
          -5.408887531084357,
          -3.330958646960376,
          -4.805595998327254,
          -3.837015086445894,
          -3.3017140736148685,
          -5.110798390836454,
          -4.4087757169717054,
          -7,
          -4.929970384909012,
          -7,
          -4.934404175542786,
          -4.712935770420799,
          -5.111250748556312,
          -7,
          -5.407113751472994,
          -4.929110552332653,
          -3.4357319757793103,
          -5.1048949244222035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2686063846163975,
          -7,
          -7,
          -7,
          -7,
          -4.928047457542404,
          -4.50230248143607,
          -7,
          -4.803530516138413,
          -4.45395843547477,
          -4.151534982202108,
          -3.429533699751271,
          -4.45958345491435,
          -3.996658141016183,
          -4.502662640381697,
          -7,
          -4.205701595473211,
          -4.5604839331487765,
          -5.404772158708847,
          -3.3052812228291697,
          -4.627700325714928,
          -5.104773814899298,
          -4.1309547125837796,
          -5.107608455539725,
          -4.505289065996569,
          -5.103998596797865,
          -5.405127706268088,
          -4.261726661736097,
          -5.103899460366908,
          -4.809640506093394,
          -4.292862432927566,
          -7,
          -7,
          -4.076385543954533,
          -7,
          -7,
          -7,
          -4.0726909550128685,
          -7,
          -3.0210858833099774,
          -7,
          -4.083180004129977,
          -2.577545294261374,
          -3.5150786750759226,
          -7,
          -7,
          -2.8602084679303394,
          -2.8043771978112435,
          -3.2513600717031963,
          -7,
          -7,
          -7,
          -7,
          -3.4769764657595275,
          -3.6743328717415724,
          -7,
          -3.2960615842131453,
          -2.9753050118273934,
          -4.092123869244251,
          -7,
          -7,
          -3.5208109315364733,
          -3.7984434603501875,
          -4.079868335175173,
          -4.082369848659487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.852601969338235,
          -7,
          -3.6522463410033232,
          -4.078674273360466,
          -3.389459486355433,
          -7,
          -4.082066934285113,
          -3.426153268215979,
          -3.7951149856303634,
          -3.3469673709650354,
          -7,
          -3.4894662813031285,
          -4.157879674389154,
          -7,
          -7,
          -2.4098904000047168,
          -7,
          -3.2418859234519886,
          -7,
          -7,
          -3.7866804531966487,
          -3.8436375985671978,
          -7,
          -4.092088739255806,
          -3.79140991566716,
          -7,
          -4.085861173788451,
          -3.3274465143581065,
          -3.9936345938361932,
          -7,
          -7,
          -3.3588228453741857,
          -7,
          -3.520928734708947,
          -3.888825118125633,
          -7,
          -7,
          -3.2356216202519827,
          -4.0693350347899395,
          -3.651859269246949,
          -7,
          -7,
          -3.1925442234426136,
          -7,
          -7,
          -7,
          -3.2416709737841294,
          -7,
          -3.6783362467321803,
          -2.673971678762711,
          -3.813547631336185,
          -7,
          -2.8572315530485044,
          -3.3873601604019097,
          -3.256015799029937,
          -7,
          -7,
          -7,
          -3.8121443089703804,
          -3.2301294697405507,
          -2.5115636955824665,
          -7,
          -3.256769272878171,
          -7,
          -7,
          -7,
          -2.932727367301529,
          -4.067480023931482,
          -3.433769833924866,
          -3.8019864946643342,
          -3.1473389862875183,
          -2.4970293197660967,
          -7,
          -4.075473964588946,
          -3.619684515103055,
          -4.101781431327967,
          -2.8001399589911173,
          -7,
          -7,
          -3.5233887417323,
          -3.6900187807886953,
          -3.2351354964027053,
          -4.091526272631091,
          -4.416607226792504,
          -3.08367535113763,
          -7,
          -3.479719235439571,
          -7,
          -3.836407199815395,
          -4.0971878725708955,
          -3.8444771757456815,
          -3.881726935376418,
          -7,
          -7,
          -2.801669663167534,
          -3.4520319036568123,
          -7,
          -7,
          -3.5837150342679753,
          -7,
          -7,
          -4.065878352857392,
          -4.070333455853063,
          -7,
          -3.1635390310183986,
          -4.218876715052756,
          -3.174846201664013,
          -3.602548297999073,
          -7,
          -7,
          -7,
          -4.074157919697316,
          -3.7983743766815614,
          -3.575226344505001,
          -3.951677437343301,
          -7,
          -7,
          -3.4848690327204026,
          -3.407287016436204,
          -7,
          -7,
          -7,
          -4.103358939866563,
          -4.070518097019869,
          -3.6266824662362946,
          -7,
          -4.136371723492323,
          -3.8314858392486575,
          -4.115277591395902,
          -3.317993730910701,
          -3.5079907248196913,
          -7,
          -2.878087407900039,
          -3.299906616595543,
          -7,
          -7,
          -3.7873187566245474,
          -7,
          -7,
          -7,
          -3.035496444963253,
          -7,
          -4.003776372214725,
          -7,
          -4.216060285923142,
          -2.654915656899987,
          -3.6133484255114983,
          -3.7255577395080643,
          -4.177218959332716,
          -3.501333178645566,
          -7,
          -3.6303261548039467,
          -7,
          -7,
          -3.6304617764716594,
          -4.189293755885692,
          -7,
          -3.7218930162149575,
          -7,
          -3.604657972047871,
          -7,
          -3.2415726926544917,
          -4.072286669509892,
          -2.5152491909615082,
          -7,
          -2.8119872455616344,
          -3.781827152932428,
          -3.3294656796081403,
          -3.47410694801697,
          -4.081563320980385,
          -3.9221283467963626,
          -7,
          -7,
          -3.4345369694423313,
          -2.2489976533134346,
          -2.9397331381102125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.082964793777752,
          -2.9054135689643457,
          -4.176322821034989,
          -3.2789118170826983,
          -3.6576360198439435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7692295817365937,
          -3.823474229170301,
          -3.5077547043664365,
          -7,
          -7,
          -7,
          -7,
          -4.0744507189545915,
          -7,
          -7,
          -7,
          -2.496487537030572,
          -7,
          -7,
          -7,
          -7,
          -3.3085999808584132,
          -3.3062105081677613,
          -7,
          -3.610056557041494,
          -3.6019242530921636,
          -3.814713612695977,
          -3.759239633293262,
          -2.8002259615480365,
          -7,
          -7,
          -7,
          -2.9000255678980835,
          -3.0419187839286823,
          -2.877688023441787,
          -4.088065177690204,
          -2.956745935939529,
          -4.091596620810058,
          -7,
          -3.598790506763115,
          -2.6212593923832506,
          -3.075520892513991,
          -4.0068295849344855,
          -3.515211304327802,
          -4.257558587444218,
          -7,
          -7,
          -7,
          -3.7999605274059833,
          -3.5455235910936778,
          -7,
          -7,
          -7,
          -3.8005452505919526,
          -7,
          -3.1551335219650514,
          -4.064981821697305,
          -3.08402351282453,
          -3.088933040771907,
          -3.797821311364024,
          -7,
          -3.4074588904573924,
          -2.9426614178394863,
          -2.9352552817840474,
          -7,
          -3.2797382181499897,
          -7,
          -3.612289256263882,
          -3.7002420700306993,
          -3.5140826625258312,
          -2.9429565299567932,
          -3.3122680517480134,
          -7,
          -4.117702061209315,
          -3.4629367877312602,
          -3.4305265386806405,
          -2.7775910217147204,
          -2.4742632732749703,
          -7,
          -7,
          -7,
          -3.1473671077937864,
          -3.5831137210293744,
          -7,
          -3.607383528526565,
          -7,
          -7,
          -3.6458805585863616,
          -7,
          -2.952819340172389,
          -7,
          -7,
          -2.752930091089968,
          -7,
          -3.5045388218845748,
          -3.5508884680813524,
          -3.483506848766961,
          -7,
          -3.5408048108305006,
          -3.6154878703137148,
          -3.6318241174379233,
          -7,
          -7,
          -7,
          -3.8638282512985738,
          -3.3916407034923877,
          -3.613709717089681,
          -3.4240645254174877,
          -3.5902100254885054,
          -7,
          -3.2322335211147335,
          -7,
          -7,
          -4.088029717842714,
          -7,
          -7,
          -2.713065260517642,
          -7,
          -4.065766387622749,
          -2.80475174035332,
          -2.6691184423266474,
          -4.173390251465195,
          -2.93075098801414,
          -3.253234127833428,
          -1.9662310320585514,
          -3.5731734132550312,
          -3.3017156394293377,
          -2.2264107190468714,
          -2.306371938560718,
          -2.659599312436744,
          -4.018520198529056,
          -3.5985306180872705,
          -3.788553296952315,
          -2.397132711912124,
          -3.511763078159342,
          -3.4433971117592987,
          -2.301511249454415,
          -4.039731296098691,
          -3.386704711065075,
          -7,
          -3.320602517175809,
          -2.793993985228541,
          -3.1231018793858474,
          -3.42380999917332,
          -4.211534339415678,
          -4.054459837239404,
          -3.578016706360594,
          -7,
          -2.870132733146647,
          -3.008923643234805,
          -3.564473725064019,
          -3.6628926848054344,
          -3.728288835934386,
          -4.117204986092783,
          -3.8897311147926015,
          -3.970765159780768,
          -2.6455326560720773,
          -3.380852339683557,
          -2.8085610491031643,
          -3.6144050179114284,
          -3.3314422939128954,
          -1.6487264577005731,
          -3.3720370124661687,
          -3.5934799052213555,
          -3.3973248795188713,
          -3.8265930539340482,
          -2.8962196591822815,
          -3.1174370252826193,
          -3.007839185967241,
          -1.935358383836394,
          -3.1254559158008726,
          -2.8839046692579333,
          -4.106428894793411,
          -2.792063924327391,
          -3.949243590568265,
          -7,
          -3.939144699355296,
          -7,
          -2.4635058925862654,
          -7,
          -2.2460919417551084,
          -2.76396563495061,
          -3.3770429432419937,
          -7,
          -3.5061260432424652,
          -7,
          -2.5906602640072958,
          -7,
          -3.638513806542383,
          -7,
          -3.26549391469512,
          -7,
          -1.4696850134258492,
          -3.1667943211978447,
          -2.2278193953785186,
          -3.180670552957893,
          -2.631776592097428,
          -4.244252373972473,
          -1.4509450560382438,
          -3.7187818554344205,
          -3.7863254343900703,
          -2.4090144205749637,
          -3.0189834518139866,
          -4.169733197942518,
          -2.780787255202442,
          -3.7777167386096258,
          -2.2930425467054785,
          -2.699088048927707,
          -4.18904090790901,
          -3.7703732878674874,
          -7,
          -7,
          -7,
          -7,
          -2.9355501421681085,
          -3.526113023421766,
          -2.787328645420259,
          -4.072727689585266,
          -3.815212362299354,
          -1.7551976671084402,
          -3.8323492162595376,
          -7,
          -3.7724684030532805,
          -2.0705391938699713,
          -3.767341422368662,
          -2.395121957146396,
          -3.4056024552093134,
          -7,
          -7,
          -2.735172911942689,
          -2.86602464772164,
          -3.5959369062691735,
          -4.092790799676886,
          -7,
          -3.3309208305952356,
          -7,
          -7,
          -4.113006940000935,
          -3.6844862921887342,
          -7,
          -2.071120574370989,
          -7,
          -7,
          -3.3820084612910795,
          -2.5059473911672296,
          -2.7909163930169654,
          -7,
          -7,
          -3.182436601464549,
          -3.614862077517649,
          -3.5461723683169426,
          -7,
          -3.4074588904573924,
          -2.837588438235511,
          -7,
          -4.072065991414746,
          -3.6554585929400747,
          -3.8043439184798657,
          -3.600945683400521,
          -7,
          -3.633165353683903,
          -3.618919299575765,
          -7,
          -3.5129177534573452,
          -3.20455823185195,
          -3.3867583135862205,
          -4.067442842776381,
          -3.0508851820376446,
          -4.159537116397021,
          -3.818984256414086,
          -2.8195958815358186,
          -7,
          -7,
          -3.0235268086522495,
          -7,
          -2.400911878345167,
          -3.5453380480196923,
          -4.178574103379925,
          -3.504130905935453,
          -7,
          -3.218535505216528,
          -7,
          -3.5335687131945797,
          -3.378579576115775,
          -3.278753600952829,
          -3.2427401446056274,
          -7,
          -7,
          -3.0931464113450193,
          -2.712682071804389,
          -3.070265260804666,
          -4.129303107716051,
          -2.5255045769947024,
          -3.8472332339728976,
          -3.4417736628051845,
          -3.400192488592576,
          -1.910701486221636,
          -3.351906688008789,
          -3.500030534183874,
          -3.619788758288394,
          -7,
          -7,
          -3.753940355895292,
          -4.147243359543369,
          -3.789192776022594,
          -3.6687895794127114,
          -1.4083960534693816,
          -3.6458478396740848,
          -2.183475662326633,
          -2.7053655117911855,
          -3.594806755921277,
          -3.3660803677069033,
          -7,
          -3.634779458145952,
          -7,
          -3.4929000111087034,
          -2.942256150419465,
          -2.7557659962955827,
          -7,
          -3.8112397727532894,
          -7,
          -2.5122840632818537,
          -4.088348752288528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.288348606460727,
          -4.10907208097888,
          -4.1193548812964265,
          -7,
          -7,
          -7,
          -3.475307913956194,
          -7,
          -7,
          -3.8327004709605674,
          -3.8063156698081135,
          -2.734963395399042,
          -3.7518177877368792,
          -7,
          -3.6079194520225313,
          -4.065654393514962,
          -7,
          -3.604262062742623,
          -7,
          -2.7836075540653025,
          -7,
          -4.085825533520743,
          -3.161368002234975,
          -7,
          -3.659821158055705,
          -7,
          -7,
          -3.525304009958239,
          -4.067182485523405,
          -3.7178091444980614,
          -4.107040290223204,
          -7,
          -7,
          -4.217325990227112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2718514891065444,
          -7,
          -7,
          -7,
          -4.497758718287268,
          -3.602697393370634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.574748708350177,
          -4.370587100246676,
          -7,
          -4.309694029565843,
          -3.037637975298863,
          -7,
          -7,
          -7,
          -7,
          -4.234188147853202,
          -3.617629297757842,
          -2.5535111069782914,
          -7,
          -4.212613696645057,
          -7,
          -7,
          -3.9486085498764365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1422597796874947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2777237887624535,
          -3.9317374785123613,
          -7,
          -2.7939975497333496,
          -4.2682736719666154,
          -4.376394442037267,
          -3.111064738491977,
          -7,
          -4.2255935481548,
          -4.267781659715359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.289165152649889,
          -2.009698542326087,
          -7,
          -7,
          -4.262189959913005,
          -7,
          -4.3257413721537965,
          -4.30224432095016,
          -7,
          -7,
          -3.049287989292018,
          -7,
          -3.9549898177161404,
          -7,
          -7,
          -3.668012971641832,
          -7,
          -7,
          -7,
          -3.422753941301348,
          -3.9234253686715865,
          -3.3213682553052477,
          -7,
          -3.9442358437934804,
          -7,
          -3.455713751383308,
          -7,
          -7,
          -7,
          -7,
          -4.26521888809996,
          -7,
          -7,
          -3.991181757667873,
          -7,
          -4.174379665748987,
          -7,
          -7,
          -7,
          -3.7987714577882628,
          -7,
          -7,
          -7,
          -3.8245596945739138,
          -2.783958521961391,
          -7,
          -7,
          -3.9312035254507522,
          -4.235831337410517,
          -3.1868259884637125,
          -7,
          -7,
          -7,
          -4.284859176733764,
          -4.302179353813202,
          -7,
          -3.163913523111784,
          -3.7145333249968298,
          -7,
          -4.054747075382486,
          -4.223444019809615,
          -3.212735360541053,
          -7,
          -3.7911992464988753,
          -7,
          -7,
          -7,
          -3.774431801598087,
          -3.971623701765836,
          -7,
          -7,
          -4.114988853907845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.041590046889367,
          -3.7225927942150254,
          -7,
          -7,
          -7,
          -3.76585474746579,
          -7,
          -7,
          -4.234137489450963,
          -4.132595849372379,
          -3.8743465023900985,
          -7,
          -7,
          -3.924046565962411,
          -2.637575986336545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.258661223325604,
          -4.245784017077525,
          -3.765258649601729,
          -7,
          -7,
          -3.2152728670850608,
          -4.218797998111738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3823773034681137,
          -7,
          -3.1435019365824877,
          -7,
          -7,
          -2.8325269538104827,
          -4.227655361923043,
          -4.312219683273972,
          -7,
          -4.237166582685473,
          -7,
          -7,
          -3.9447786811235073,
          -7,
          -3.939119717648487,
          -3.6026242074933377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.877797367506874,
          -7,
          -3.6631667570922044,
          -7,
          -3.5537819221196365,
          -7,
          -3.939294559426453,
          -7,
          -7,
          -4.328175661438323,
          -7,
          -7,
          -7,
          -2.89394283598136,
          -3.660523976930213,
          -7,
          -4.209300495159705,
          -7,
          -7,
          -7,
          -4.219741661046302,
          -7,
          -7,
          -4.077694865886587,
          -4.291790506385784,
          -3.989746365634447,
          -3.273783014280978,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2431869241314715,
          -3.4578272491973956,
          -7,
          -7,
          -7,
          -4.215505378231819,
          -3.9240207004740677,
          -3.9222841941001536,
          -7,
          -7,
          -4.012204296030743,
          -3.945099129999455,
          -4.338615838490599,
          -3.7461474853576635,
          -7,
          -7,
          -7,
          -3.561172964752188,
          -7,
          -4.397592434038117,
          -4.225800170570545,
          -3.6808533012337556,
          -4.228374690421907,
          -7,
          -7,
          -3.9305924884425982,
          -4.327481541402221,
          -3.918833842068481,
          -3.542908378823037,
          -4.0543065658484,
          -4.238798562713917,
          -7,
          -7,
          -4.235301140319991,
          -3.968996326648312,
          -7,
          -7,
          -4.216772698429039,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.952182327565487,
          -4.233732009366046,
          -4.26672546703192,
          -3.9383695974518065,
          -3.1145707251839956,
          -3.7701152947871015,
          -7,
          -3.590495072886447,
          -7,
          -7,
          -7,
          -3.7693527055096814,
          -3.3524281101826423,
          -4.277609214304091,
          -4.339670024244455,
          -7,
          -4.280965148097093,
          -7,
          -3.7111774515498808,
          -3.519621762715661,
          -7,
          -7,
          -7,
          -3.7290634965186893,
          -3.122019172080031,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.317059958740005,
          -7,
          -7,
          -3.067901916340883,
          -7,
          -3.374460999517715,
          -7,
          -3.0249743375432385,
          -4.2249472187770865,
          -3.061928418293076,
          -2.628959492782499,
          -3.6375697764175206,
          -7,
          -7,
          -7,
          -3.3284702135959416,
          -3.3387153993635277,
          -7,
          -7,
          -7,
          -7,
          -3.9599710276712154,
          -7,
          -7,
          -4.22577434814393,
          -4.003482073960254,
          -7,
          -3.245805023585475,
          -7,
          -7,
          -4.440271334091512,
          -3.670112435506491,
          -4.235339033014061,
          -7,
          -4.3511518573324075,
          -3.594768113447505,
          -4.367206781435987,
          -3.5916369257764496,
          -3.349002555514242,
          -7,
          -7,
          -3.6004404347082204,
          -4.054823640146561,
          -4.061471328265031,
          -3.8281441073037863,
          -4.56913972547246,
          -3.7985539713675216,
          -3.520059730604128,
          -3.5777707354189983,
          -4.258433734309274,
          -4.289834121485031,
          -4.136261504095268,
          -3.5380330425453947,
          -3.5828933782683268,
          -4.4543569571548876,
          -3.967524576101294,
          -4.486125728191671,
          -3.213154119962002,
          -4.254233782650147,
          -3.6719534541166303,
          -4.001935529214752,
          -3.801245880819417,
          -3.866700756042499,
          -3.3194114508266073,
          -4.247211970742112,
          -3.9676103703690884,
          -4.366815046163848,
          -3.689989223876995,
          -3.0761080654523694,
          -4.453731029504294,
          -3.626212010796037,
          -3.682047830196072,
          -2.62775226752316,
          -3.0071723936424135,
          -4.306725176782492,
          -3.2065325725278244,
          -7,
          -3.6822700751862243,
          -2.7070759915092815,
          -2.811667438451958,
          -2.132483316887697,
          -3.0912423383323984,
          -3.1311475216888907,
          -3.5400790888041724,
          -3.7312865070964243,
          -7,
          -4.212853189947111,
          -7,
          -1.9237936053901579,
          -3.267321091480779,
          -1.9519410519031546,
          -2.3197189388741886,
          -3.422942178067513,
          -3.3408720500410354,
          -7,
          -4.314183339137378,
          -3.917347937627772,
          -2.3231177054469523,
          -3.735159593090218,
          -3.240626535195097,
          -3.26549391469512,
          -7,
          -3.909556029241175,
          -3.7196745139150305,
          -2.8820872587514916,
          -3.0013009330204183,
          -3.6933311562440196,
          -3.464977031937279,
          -4.34478512263266,
          -2.926806228001346,
          -4.064888326512362,
          -4.22533513181854,
          -3.67258480109312,
          -2.0586701512560586,
          -7,
          -2.6071822797801416,
          -3.918004110480823,
          -3.594083019091813,
          -2.2389523321619205,
          -2.756108284585342,
          -7,
          -7,
          -7,
          -7,
          -3.416786079747206,
          -3.6133708647836684,
          -4.255513712819534,
          -3.6461795886879207,
          -7,
          -3.547380832120237,
          -2.3475855441575137,
          -4.259307121211679,
          -4.249076003683611,
          -3.914210891401378,
          -2.8652061159153597,
          -7,
          -1.8379213235574254,
          -3.2180538557946807,
          -4.222794481113707,
          -4.2522946401444495,
          -3.463848214050881,
          -3.1365498395337705,
          -3.1319392952104246,
          -7,
          -4.221414237842339,
          -3.637829827012092,
          -4.222248116858932,
          -7,
          -7,
          -3.9795711358729324,
          -7,
          -3.1841902253587353,
          -7,
          -7,
          -3.2945134637464593,
          -2.9931380494395485,
          -2.590357448108568,
          -4.208871138246926,
          -3.567990394261677,
          -4.3870693269320205,
          -4.228759555435635,
          -3.793347951733536,
          -7,
          -3.9383695974518065,
          -2.9684699766014884,
          -3.9093420383613084,
          -4.214207829654449,
          -3.559595448664063,
          -4.238522812218293,
          -4.312515855663387,
          -2.941275993039616,
          -3.9411137270371017,
          -3.9306434410421645,
          -4.223288219096948,
          -3.546542663478131,
          -4.104043029922009,
          -2.6314993658233234,
          -7,
          -4.283549972002684,
          -3.801769470209016,
          -3.207462994948207,
          -3.9959859979137993,
          -7,
          -7,
          -3.331280021886835,
          -3.5527655261018234,
          -2.8354255599643508,
          -3.792718454857177,
          -2.8945154378485984,
          -7,
          -7,
          -2.4682513982516863,
          -7,
          -2.382745351375009,
          -7,
          -3.951361807517263,
          -3.2295243251624277,
          -7,
          -7,
          -3.4379882502194996,
          -3.7252060359060395,
          -3.8211640307644217,
          -7,
          -3.232911444346091,
          -7,
          -3.8485996032997494,
          -7,
          -3.042395011075458,
          -4.006915080181949,
          -3.633998375410592,
          -7,
          -7,
          -7,
          -2.3959387783291315,
          -4.269676357629865,
          -3.750199727829182,
          -4.268765127447861,
          -3.3146220116074567,
          -4.251589557275781,
          -3.4387292874597497,
          -2.0712580457768963,
          -3.705564390520156,
          -3.665440268065303,
          -7,
          -3.3399480616943507,
          -7,
          -4.002856926061121,
          -3.463509053954063,
          -4.012394271505212,
          -7,
          -3.942528893958499,
          -7,
          -2.392556699913734,
          -7,
          -7,
          -2.9300101317088076,
          -7,
          -7,
          -7,
          -4.213995616368085,
          -4.042713299346113,
          -3.9401178667477184,
          -7,
          -3.9188163903603797,
          -7,
          -3.515290862441523,
          -3.7409676481411824,
          -3.6231717308866838,
          -3.618806141984161,
          -3.4141851761757067,
          -3.0351043958312034,
          -1.8413594704548548,
          -2.840187066673251,
          -2.452002523936502,
          -3.3782940524345144,
          -7,
          -2.6367613528522122,
          -3.0442260771126826,
          -3.7309436934277356,
          -2.0390959615616686,
          -3.525925466513464,
          -3.621954820044902,
          -2.4717270710635377,
          -7,
          -3.220155653286464,
          -4.212240888801534,
          -4.213730203854841,
          -2.7091972493398817,
          -7,
          -3.5278446323871613,
          -3.394301553101531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3437742207570813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.032981193097368,
          -7,
          -7,
          -7,
          -4.872658481383454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.864522946865742,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4497868469857735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9072178201144485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.668774060859105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.823624184856377,
          -7,
          -3.3081373786380386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9074855796797707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5563025007672873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2846562827885157,
          -7,
          -7,
          -7,
          -7,
          -3.9074727842216728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4372747974101237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019448637493637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8107028609471167,
          -7,
          -7,
          -7,
          -4.061703734218241,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.849927431523094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.239033680055692,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.712771724599352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.257438566859814,
          -4.053820849274466,
          -7,
          -4.708981466496654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.830094433725594,
          -3.878866336956725,
          -2.5599066250361124,
          -3.803138333966474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.351127349378787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6768764319731373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.5741331702100485,
          -7,
          -7,
          -4.716587577675693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.577807639942444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1702543792775595,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1769589805869085,
          -7,
          -1.4908610661339912,
          -7,
          -4.3661127695587165,
          -2.7903438168096026,
          -7,
          -4.323231468114774,
          -7,
          -4.63274571370413,
          -3.281533313857376,
          -2.977418730245156,
          -4.437179581752512,
          -4.484337808789187,
          -3.8999207687549164,
          -7,
          -7,
          -7,
          -7,
          -3.17260293120986,
          -3.765985034880714,
          -7,
          -7,
          -3.7862055500107257,
          -5.0104582643132565,
          -5.706207250354149,
          -7,
          -7,
          -7,
          -3.698820388245779,
          -7,
          -7,
          -7,
          -3.909556029241175,
          -7,
          -7,
          -7,
          -4.479834341319361,
          -7,
          -4.207095540419218,
          -3.7867514221455614,
          -4.419663919061534,
          -7,
          -2.60151678365001,
          -4.641255916921171,
          -3.7241071319763024,
          -7,
          -4.648053456819172,
          -7,
          -7,
          -3.8269274294752718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.102716997946335,
          -7,
          -7,
          -7,
          -7,
          -3.8599784416420206,
          -3.336059277866349,
          -3.241795431295199,
          -7,
          -7,
          -7,
          -4.1933055166998825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2803506930460054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.000520840936185,
          -7,
          -7,
          -7,
          -3.947398708021437,
          -4.308870197167231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.244252373972473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9738664498353784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.13760727050463,
          -7,
          -7,
          -7,
          -7,
          -4.346790960566614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.752893154884594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.150664353529561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021478732257528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354665362435607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.634678752178682,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.390440506647526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.338257230246256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4983105537896004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.319564066092164,
          -4.341869590349321,
          -7,
          -7,
          -4.325536187192074,
          -2.5497663234514962,
          -3.928122625143642,
          -7,
          -7,
          -3.5553484184305875,
          -3.0305044767258296,
          -4.03235681599555,
          -7,
          -7,
          -7,
          -7,
          -3.3682352170082024,
          -3.103352715920879,
          -7,
          -4.0948203803548,
          -2.9435609055482006,
          -7,
          -7,
          -7,
          -4.348810920405178,
          -7,
          -4.32364392313595,
          -3.556446313801048,
          -4.330677516998936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.367281357632943,
          -7,
          -4.352645518668972,
          -7,
          -3.222396072786465,
          -4.319418389047728,
          -7,
          -4.350189849999334,
          -7,
          -3.5460488664017342,
          -7,
          -7,
          -3.6707281346138623,
          -4.032820149438564,
          -3.865182965998549,
          -2.5700731177530822,
          -4.362218500326052,
          -3.974127735076475,
          -7,
          -7,
          -4.328175661438323,
          -7,
          -7,
          -4.330657234711394,
          -7,
          -7,
          -7,
          -3.264745192441276,
          -3.2226088481959576,
          -7,
          -7,
          -3.6582022533870147,
          -7,
          -3.8069257768837317,
          -3.9125939977521056,
          -7,
          -7,
          -3.0822339210963783,
          -7,
          -7,
          -7,
          -7,
          -3.1419042120922844,
          -7,
          -7,
          -7,
          -3.4075608494863623,
          -4.327318057687924,
          -3.4650852875574327,
          -3.5972013888491157,
          -3.866622040290432,
          -7,
          -2.8801959980434404,
          -4.073663372881412,
          -3.8851208212759687,
          -7,
          -7,
          -7,
          -4.3429947829274775,
          -3.752969865029084,
          -3.176977039695874,
          -7,
          -3.0729847446279304,
          -4.3284407673684075,
          -7,
          -7,
          -3.26749439494725,
          -7,
          -4.053673748961832,
          -7,
          -3.611068009641454,
          -2.541915867977676,
          -7,
          -7,
          -7,
          -7,
          -2.7777500274085205,
          -7,
          -7,
          -7,
          -3.8984326288792706,
          -3.7875667325987648,
          -7,
          -3.6426376099687454,
          -3.3066225174929165,
          -7,
          -3.178241315561237,
          -7,
          -4.120738405542943,
          -4.032538179260007,
          -4.06126394230025,
          -4.385320224200911,
          -7,
          -7,
          -2.7830802719514693,
          -7,
          -7,
          -7,
          -3.6848553315594024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.285936869490004,
          -3.629969946292171,
          -3.537705786080527,
          -4.098158983460533,
          -7,
          -4.444279064276847,
          -7,
          -7,
          -7,
          -4.198931869932209,
          -7,
          -7,
          -7,
          -7,
          -3.360285663517499,
          -7,
          -4.314688651046116,
          -7,
          -4.337199605373581,
          -4.318334684226136,
          -4.337539124196711,
          -4.340919793400163,
          -7,
          -4.354492600589436,
          -7,
          -4.44377913892142,
          -7,
          -7,
          -3.1087398391394285,
          -3.118078630895967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.31626397191069,
          -3.6113439120874298,
          -7,
          -4.117403884416343,
          -7,
          -3.7073657541210374,
          -2.883148251980255,
          -7,
          -3.9207666354873765,
          -4.381818771625734,
          -4.036269495742816,
          -4.354089222152247,
          -3.862469297548378,
          -4.344254692556935,
          -4.334333097036555,
          -7,
          -7,
          -7,
          -4.3956233943558365,
          -7,
          -3.3185403196146663,
          -3.501333178645566,
          -3.6711522644269463,
          -7,
          -2.925922465342976,
          -7,
          -3.5690727925168053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.355202404658053,
          -2.5974514056878997,
          -3.114404445907608,
          -7,
          -7,
          -4.3217640810754965,
          -4.316976239321548,
          -7,
          -7,
          -7,
          -7,
          -3.9761206182998157,
          -3.234661879645836,
          -3.5742499683912072,
          -3.2336204521463214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.320561680195237,
          -7,
          -7,
          -7,
          -2.7215762524015634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.026839573092644,
          -3.9216344610537055,
          -4.344510165686533,
          -7,
          -3.7287108119954437,
          -7,
          -7,
          -7,
          -2.735119634081872,
          -3.8708718950677428,
          -3.694373832632661,
          -7,
          -3.2419168188948717,
          -7,
          -7,
          -4.321474151030555,
          -3.3313694445848774,
          -3.5071978624095173,
          -3.4676229024178253,
          -3.6270755470762954,
          -3.8315338496935043,
          -4.0375659279128495,
          -7,
          -4.318063334962762,
          -4.034788831251184,
          -3.460315136748682,
          -4.059165668942177,
          -7,
          -3.844021310509786,
          -4.0351294308208,
          -4.32054091992458,
          -7,
          -7,
          -3.8733981128778754,
          -3.6798214301325634,
          -7,
          -7,
          -7,
          -2.8816000105663435,
          -2.7837016649131177,
          -7,
          -3.4207366659537195,
          -7,
          -7,
          -4.3819810000434645,
          -7,
          -3.424629239099311,
          -3.767582527077297,
          -7,
          -7,
          -3.258084440350568,
          -4.051731196059849,
          -2.521009015556184,
          -3.2371036915866878,
          -7,
          -7,
          -7,
          -3.4133332990399112,
          -3.6877964113812944,
          -7,
          -4.02530586526477,
          -7,
          -4.320789977698806,
          -4.348849823480575,
          -7,
          -3.1709343851533065,
          -7,
          -7,
          -3.4326486600131068,
          -7,
          -3.3207928070801973,
          -3.80433418322736,
          -3.118303671078639,
          -7,
          -3.342504925776889,
          -3.472056083784771,
          -7,
          -7,
          -4.0296678026753225,
          -7,
          -3.675063091209669,
          -4.119057837523237,
          -4.406386872972728,
          -7,
          -7,
          -7,
          -3.2768063456287626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.269087447472221,
          -7,
          -7,
          -2.834471862065311,
          -2.78093812928399,
          -4.288517501797074,
          -3.9107488776877,
          -3.165486586709725,
          -2.480575802792105,
          -7,
          -3.8177929968390703,
          -3.0230307434509927,
          -2.903500611912562,
          -7,
          -3.9069058230743323,
          -3.4802225985844752,
          -3.3453228946874667,
          -2.8104640202477995,
          -3.7154287763129235,
          -3.5978951269547883,
          -2.078442368161196,
          -7,
          -3.655650574589957,
          -4.078601800355391,
          -3.1618252599776655,
          -3.113453102441966,
          -3.6551064060137053,
          -4.040641891544537,
          -4.141961636010401,
          -3.5623193047159516,
          -4.073718350346122,
          -7,
          -3.210651511243684,
          -3.9371541560218692,
          -3.600409093134968,
          -3.9166013204578434,
          -3.599494919231938,
          -3.5669871327264575,
          -4.0323904074998875,
          -4.443262987458695,
          -2.99534861432112,
          -3.4708880404649234,
          -3.3559762530979853,
          -7,
          -3.547210993643507,
          -1.7088699103967022,
          -3.542389669540937,
          -4.092387253618812,
          -3.4139071836972685,
          -7,
          -2.952373688836708,
          -2.4453568207946823,
          -2.7130796684351948,
          -2.0884775551021204,
          -3.145479988322081,
          -2.8192627477807326,
          -4.338994048444886,
          -3.0045134565169995,
          -4.428879585851619,
          -7,
          -7,
          -3.8634418286137087,
          -2.600902666954075,
          -7,
          -1.6437905174070773,
          -2.845048881845784,
          -3.2851588190256975,
          -7,
          -3.797406049676382,
          -4.322529394341456,
          -2.586208153029271,
          -7,
          -3.3626772629262764,
          -1.4696850134258492,
          -3.7196745139150305,
          -7,
          -7,
          -3.196967937436222,
          -1.926279770490996,
          -3.6059690913902385,
          -3.4491222254534297,
          -7,
          -1.600913671489379,
          -3.5928341520800386,
          -3.85076872692888,
          -2.772043492449563,
          -3.3108505941855153,
          -7,
          -2.5768306637209446,
          -3.8458419074217574,
          -3.3028538166713055,
          -2.484184760155121,
          -3.9995002739482257,
          -4.318876874660981,
          -7,
          -7,
          -3.840461585060537,
          -4.404491617758686,
          -2.9391512732498355,
          -3.6528456212808718,
          -2.886184084983295,
          -7,
          -3.44143982425051,
          -2.669389205292351,
          -3.576667620464078,
          -3.501489624786272,
          -4.32006315959498,
          -3.0684388733943915,
          -7,
          -2.3223303532901833,
          -2.922689672356959,
          -3.8487636892493367,
          -4.048325250931222,
          -2.792495451171643,
          -2.985836342397358,
          -2.97916300467107,
          -4.029992175377847,
          -4.324878943111994,
          -3.0559099036346367,
          -2.847222944219378,
          -4.026900808890256,
          -3.865656612667585,
          -3.526892871450658,
          -7,
          -2.9919545302079595,
          -7,
          -7,
          -2.936127472933785,
          -2.5632183241547377,
          -3.2676516413178485,
          -7,
          -4.060244426898225,
          -3.0281644194244697,
          -4.02960695581261,
          -3.3637247690063745,
          -7,
          -3.5608030019939636,
          -2.8888096618586907,
          -7,
          -7,
          -4.053501002386415,
          -3.6392872259102367,
          -3.3186371431419577,
          -3.7223459424755814,
          -4.0402660074460846,
          -3.5546708351714558,
          -7,
          -3.343782654669529,
          -3.8734513937097477,
          -2.8459609051863803,
          -7,
          -3.012029849231654,
          -3.2912763272867207,
          -4.347037133784953,
          -3.57966929355472,
          -3.4211307158850603,
          -3.0880943777437477,
          -3.1468719030857386,
          -3.503771233697277,
          -2.271584888563998,
          -3.084124534836101,
          -3.604334073102911,
          -7,
          -7,
          -3.590300340253103,
          -4.324570517218835,
          -2.8598385304010416,
          -4.322488060518078,
          -2.9684051110267253,
          -3.1931900978616974,
          -7,
          -4.315088273088317,
          -3.1203600214031,
          -2.991765838498609,
          -2.8413415905280566,
          -7,
          -1.7726772486845728,
          -3.585667487180534,
          -4.409138161153864,
          -3.7327354312288112,
          -3.0132305819648155,
          -3.616160312847583,
          -3.294786768279219,
          -7,
          -7,
          -4.3150041726848976,
          -4.1573963193232295,
          -4.062281069972644,
          -3.6304888957237034,
          -7,
          -2.744486551338886,
          -3.005589957599989,
          -2.4546181138415584,
          -2.6481946989112175,
          -3.9171027120527055,
          -3.0822750248608437,
          -7,
          -3.4969494062444113,
          -7,
          -3.214578953570499,
          -3.0327063325812817,
          -3.921790485658187,
          -7,
          -3.3879037141941413,
          -7,
          -2.7490886413527207,
          -4.328501922685259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.122969094393747,
          -3.7383642922611235,
          -4.045538116450688,
          -4.022613927471968,
          -4.325843928293292,
          -3.8422138683580256,
          -4.021272013951038,
          -4.328012438855587,
          -2.9812830767955023,
          -3.0992968870134994,
          -2.9071724091966717,
          -2.4868209570763073,
          -2.024778530093382,
          -3.3135157072120407,
          -7,
          -7,
          -3.418908657676565,
          -3.5462341061067835,
          -4.314478175864182,
          -2.6397987097716804,
          -4.026717075588475,
          -4.3270522653266985,
          -2.563814687624541,
          -4.058805486675907,
          -3.3568477513592394,
          -7,
          -4.017763509129315,
          -3.271880311984758,
          -7,
          -3.438507188934901,
          -3.384791331426507,
          -7,
          -7,
          -4.432119101024855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4306071113013985,
          -7,
          -3.3727419230221223,
          -4.19728055812562,
          -7,
          -7,
          -3.104207672494023,
          -3.1237699989926178,
          -4.441270843420499,
          -7,
          -4.426933964071905,
          -7,
          -7,
          -2.933261259967396,
          -4.054651350441742,
          -7,
          -4.013567461993526,
          -2.702714399048319,
          -7,
          -4.432504298861027,
          -7,
          -3.9761359127824605,
          -7,
          -4.433657846692988,
          -2.57835482977221,
          -4.1380657456377685,
          -7,
          -7,
          -7,
          -3.9749566587701834,
          -7,
          -4.4679039465228,
          -7,
          -7,
          -7,
          -2.79560515242787,
          -7,
          -4.4346327661741425,
          -7,
          -4.440972018733961,
          -3.1643245251486003,
          -7,
          -7,
          -3.867791467345843,
          -3.5963457132407983,
          -4.147212416970458,
          -2.9578385224220214,
          -4.463892988985907,
          -3.9337023571451573,
          -3.9102641218577268,
          -7,
          -7,
          -7,
          -7,
          -4.439111542159727,
          -3.74020473550745,
          -7,
          -4.436321700139733,
          -3.699027906406887,
          -2.5193316846166227,
          -7,
          -7,
          -3.4183314286836173,
          -7,
          -3.8023084048433162,
          -3.707555983235898,
          -7,
          -7,
          -3.169573755223163,
          -7,
          -7,
          -7,
          -7,
          -2.8848854358386515,
          -7,
          -7,
          -7,
          -3.618526230092146,
          -7,
          -3.991639492650799,
          -4.474463945321284,
          -7,
          -7,
          -2.5796857514914913,
          -3.5705283464081514,
          -3.4514203359243973,
          -4.428669230652189,
          -7,
          -4.461948495203762,
          -4.448752683389127,
          -4.1572451604751945,
          -4.479330527707678,
          -4.430703778718752,
          -3.703538554624196,
          -7,
          -7,
          -7,
          -4.075814511416446,
          -7,
          -4.1569275555396565,
          -4.444091659700497,
          -3.485281231935597,
          -3.0872791930511436,
          -4.435286812240127,
          -4.431717489646013,
          -4.441302286693167,
          -7,
          -2.9035636610561455,
          -4.137528174126554,
          -7,
          -7,
          -3.997357255688633,
          -3.8836614351536176,
          -7,
          -3.1521406718110985,
          -2.897496181121582,
          -7,
          -3.919548758968848,
          -7,
          -3.634091414447039,
          -7,
          -3.560683591907453,
          -4.181214548490415,
          -4.429316152131662,
          -4.4363535037706585,
          -2.477612987408589,
          -4.466719371681599,
          -7,
          -7,
          -2.8752454704640726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.493694292457702,
          -3.500497192859225,
          -3.37755264713504,
          -3.891286509038756,
          -7,
          -3.8309862157427426,
          -7,
          -7,
          -7,
          -7,
          -3.564324069003793,
          -7,
          -7,
          -7,
          -3.4242636158693003,
          -7,
          -7,
          -7,
          -4.143155376433176,
          -7,
          -4.143420785129937,
          -4.447127009199851,
          -7,
          -4.457791093970606,
          -7,
          -3.8305758385257054,
          -7,
          -7,
          -3.172282884840051,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431251154695155,
          -7,
          -3.9380817075075885,
          -4.131169383089324,
          -3.2585606639293814,
          -7,
          -2.864649035534284,
          -2.9548180739640073,
          -4.438447410654374,
          -4.015233976246709,
          -4.178415740979452,
          -4.444325902788053,
          -7,
          -3.843995394703985,
          -4.4497405937792855,
          -7,
          -7,
          -3.883391691428558,
          -7,
          -3.5872478073521594,
          -7,
          -2.8470047440551416,
          -7,
          -4.08181520063228,
          -7,
          -3.6275137828715196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.910911595998181,
          -3.2789973469852707,
          -7,
          -4.458350742139663,
          -3.611103456465005,
          -3.2934405530022266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.935343492830046,
          -3.3025329462561266,
          -2.909261218458848,
          -1.9021018307478776,
          -4.426494995349033,
          -4.432809005033168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.448072189065087,
          -2.931778936116568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0159322888519835,
          -4.14888016912823,
          -4.032846994195768,
          -3.9144489406985543,
          -7,
          -7,
          -7,
          -2.446088626264233,
          -7,
          -3.3665307092379146,
          -4.437306531324273,
          -3.020478867616935,
          -4.438890277816841,
          -7,
          -7,
          -3.0385358691662154,
          -3.599268842327689,
          -3.101710259449637,
          -4.021230658479703,
          -3.6181134975829194,
          -4.445339498742793,
          -7,
          -7,
          -4.443169075796116,
          -4.163980869053427,
          -4.1612631598785494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153662453575496,
          -3.939319531078238,
          -4.141136090120739,
          -7,
          -7,
          -2.217429614958867,
          -4.532996293865759,
          -7,
          -3.045637778266747,
          -4.428895762801387,
          -7,
          -3.5251312252008757,
          -4.4501875018958374,
          -3.7029841305063393,
          -7,
          -4.510732627784333,
          -7,
          -4.472024697700282,
          -4.456457134303779,
          -2.818836872130782,
          -3.2970778706412265,
          -7,
          -7,
          -7,
          -3.6598075789270585,
          -3.4040493408544776,
          -3.654705846613685,
          -7,
          -4.460521992900201,
          -4.130382020756808,
          -7,
          -7,
          -3.8934704707737686,
          -7,
          -7,
          -3.40426340205091,
          -4.43663963169266,
          -3.0725599244856134,
          -4.005935151237362,
          -3.0525460952777084,
          -7,
          -3.1495805394955223,
          -2.6703693435998876,
          -3.6054531982661273,
          -7,
          -3.9619902874400648,
          -4.129432074155575,
          -3.242468347967402,
          -3.1480121795527896,
          -3.897063242076261,
          -7,
          -7,
          -7,
          -4.158241837980873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5602579264510434,
          -7,
          -7,
          -2.953117307835683,
          -2.9529809709830217,
          -3.6982359091337726,
          -3.068685255866622,
          -3.6872334601981325,
          -3.0639439848052312,
          -3.626224848161194,
          -3.2578185183129036,
          -2.6732086953863448,
          -2.828027239737565,
          -3.7025454139708356,
          -3.2684562775010506,
          -2.965273657696096,
          -2.5922392313282705,
          -2.628036885368468,
          -3.56374570715459,
          -3.6353950338165637,
          -2.50580220363097,
          -3.527067191319761,
          -2.6390580531496957,
          -7,
          -3.4408127327621263,
          -2.65653375964828,
          -2.7879229050489425,
          -3.335647312963058,
          -3.8331015573439173,
          -3.0165246700574415,
          -3.0623521379767524,
          -7,
          -1.9910194262396508,
          -3.353862824646005,
          -3.390876255625289,
          -3.6751181523167986,
          -3.475588180969073,
          -3.9734049744100606,
          -3.681094185704896,
          -4.052052348542061,
          -2.885201898527871,
          -3.5047217366334786,
          -2.8880890751037303,
          -3.9617374047008993,
          -3.1472659700294767,
          -2.870044039039802,
          -2.491027393657021,
          -4.011612729219424,
          -2.8635424688134687,
          -7,
          -2.1213684437968094,
          -2.5299337271288262,
          -3.866272566911813,
          -2.123189899230609,
          -2.632357524451859,
          -2.8358079642440264,
          -3.2690924557404304,
          -2.3796810920364257,
          -3.403199740672326,
          -7,
          -3.210492416869035,
          -2.7881858354814497,
          -3.791297571494794,
          -7,
          -2.5532584907282443,
          -2.060945385706451,
          -2.919740203125908,
          -4.431444181617213,
          -3.5904238285747008,
          -4.43279297319493,
          -1.8587823323091992,
          -3.304638606422875,
          -3.5670557889077523,
          -3.1667943211978447,
          -2.8820872587514916,
          -7,
          -3.196967937436222,
          -7,
          -2.3106756566094355,
          -3.0035036147425362,
          -2.7773655477127432,
          -2.7201726455814055,
          -2.726772703727427,
          -2.741518756968152,
          -3.7379238051278323,
          -2.8439050429734927,
          -2.0514974698808905,
          -3.2199917955016972,
          -2.080310862052228,
          -4.433193591714845,
          -3.0478515240423842,
          -2.422114838495176,
          -3.185409929405979,
          -7,
          -4.427745699349721,
          -7,
          -4.429025156711519,
          -4.1966182713302445,
          -2.9458123456233185,
          -3.4555300473427017,
          -2.643589159589936,
          -7,
          -4.450172098924372,
          -2.68206380784874,
          -4.458199556981169,
          -4.150695051142714,
          -3.585589628962412,
          -3.356913217543442,
          -7,
          -2.3198753769375866,
          -3.2783391091415632,
          -4.435462120559821,
          -4.453776859690442,
          -3.820179558051817,
          -3.975829920744224,
          -3.4897897886159925,
          -4.439427438654527,
          -7,
          -3.554448777421438,
          -7,
          -7,
          -4.147583582421641,
          -3.325310371711061,
          -7,
          -3.240370929872415,
          -3.951353711427746,
          -7,
          -2.124052746679584,
          -2.9567902084396147,
          -2.474475717141794,
          -7,
          -3.9859949811851734,
          -3.3387676596864866,
          -4.1380657456377685,
          -3.2607866686549762,
          -7,
          -3.8435909077665396,
          -2.521296614270463,
          -4.427924077684321,
          -4.430220226321072,
          -3.75876054390998,
          -3.189365525398271,
          -2.947587749368504,
          -4.434345312562829,
          -4.146391634457859,
          -3.838801882249584,
          -4.134702916820561,
          -4.1485872321429795,
          -3.1574084097585495,
          -2.8733517463155307,
          -7,
          -3.0104754173446038,
          -3.3564524365081927,
          -4.451924528420122,
          -3.3743061732665587,
          -4.434329337337729,
          -4.430220226321072,
          -3.7552394576339077,
          -3.60826617378758,
          -2.4007377331885125,
          -3.35065050865804,
          -2.3624824747511743,
          -7,
          -4.4353824437324185,
          -3.0908978446864057,
          -4.434377261250224,
          -2.5815216458876193,
          -4.432760907742915,
          -3.307343198044698,
          -3.0815606548059806,
          -3.239033439221906,
          -7,
          -2.877277570359336,
          -2.8247133373599675,
          -3.483059261945647,
          -4.155184159694008,
          -2.7019244639680973,
          -3.066653852292839,
          -2.9322405937904947,
          -3.4007263285869342,
          -3.136931851267557,
          -2.7245865742611057,
          -3.23914300480277,
          -3.7422536699065936,
          -7,
          -7,
          -3.067832201725068,
          -3.4645193538566796,
          -3.9611203854246293,
          -7,
          -3.301514687266299,
          -4.152273052054602,
          -3.248261207021154,
          -3.089063955206904,
          -4.012288739834607,
          -3.258921492187305,
          -4.1336985461157765,
          -3.5448893247242212,
          -3.5817221599490985,
          -3.2824096712156043,
          -3.188633231831517,
          -3.4929837628169764,
          -7,
          -2.879018344912913,
          -3.9631264410819047,
          -2.433620111870197,
          -7,
          -4.432760907742915,
          -7,
          -7,
          -4.429219175321009,
          -4.428329210721689,
          -3.827934392823744,
          -3.7352261832683493,
          -3.2422462910244345,
          -2.9735742390073434,
          -7,
          -7,
          -4.129319230615535,
          -3.9554632507055585,
          -7,
          -3.957192106805308,
          -3.9811841373983543,
          -3.6677641635674796,
          -2.989371940260124,
          -3.2752029198527173,
          -3.1076338783998296,
          -3.0550755705285217,
          -7,
          -4.171741076116891,
          -4.133331291536332,
          -7,
          -3.028684194331513,
          -4.13581616679784,
          -4.436305797450854,
          -3.6266336114657944,
          -3.2855273048983347,
          -3.505436397572418,
          -4.127962816184046,
          -4.42992983624063,
          -3.3759073599933274,
          -7,
          -3.232699706990279,
          -3.8437465242516153,
          -7,
          -7,
          -4.481643246275584,
          -7,
          -7,
          -7,
          -7,
          -3.886596465825174,
          -7,
          -7,
          -3.7839035792727347,
          -2.6416882303329805,
          -3.968302789055736,
          -7,
          -7,
          -3.3596170445871087,
          -3.1409591869267732,
          -3.7866662580150985,
          -7,
          -7,
          -4.48058896756481,
          -7,
          -3.09207170551119,
          -3.449504111539399,
          -7,
          -4.332674059671321,
          -2.4024357720287437,
          -4.7858279199958655,
          -4.004636588688825,
          -7,
          -4.315123310117041,
          -4.185237503623307,
          -4.084347453490981,
          -2.9170845376550236,
          -4.183725258045579,
          -4.78141067367645,
          -7,
          -4.306324931691518,
          -4.490688716713189,
          -4.782365112225669,
          -3.65270899188202,
          -7,
          -7,
          -7,
          -2.709217217996484,
          -4.480868923687168,
          -4.482766425369471,
          -4.792769781353479,
          -7,
          -3.330569333851446,
          -7,
          -7,
          -3.8456147497502875,
          -3.9417740027353023,
          -4.789968302089217,
          -2.0056119598463003,
          -3.797025044005262,
          -3.5307630187585595,
          -3.8659983698441036,
          -4.78353913333115,
          -3.705614291809137,
          -3.4542903824586904,
          -4.785251512550317,
          -4.086793908154067,
          -3.70656844127109,
          -7,
          -7,
          -3.371717619876,
          -3.0252416887994142,
          -7,
          -7,
          -3.681248197167286,
          -7,
          -4.036741978159807,
          -4.330332589222979,
          -4.781504057208732,
          -7,
          -2.57570289904199,
          -7,
          -4.492529914411559,
          -7,
          -7,
          -2.9192976711334797,
          -4.792118418302425,
          -7,
          -7,
          -3.1337263032129754,
          -4.307503169126945,
          -3.242658737113416,
          -4.324940602014902,
          -3.312952693706642,
          -3.748011735352916,
          -2.4603389393750867,
          -3.8016643457002885,
          -3.5683870164605773,
          -4.781151968281956,
          -7,
          -4.194146492730399,
          -4.790186609533173,
          -4.095538954876556,
          -3.3890706245373754,
          -7,
          -3.2560955895173525,
          -7,
          -4.4796256894432895,
          -4.780554920725867,
          -2.900191278044629,
          -4.780950646376869,
          -3.891230722978062,
          -7,
          -3.1940064148643312,
          -2.3571042909697755,
          -7,
          -4.305358535963103,
          -4.786808188955903,
          -7,
          -2.7901816398064154,
          -4.785586064349684,
          -7,
          -4.491781775584165,
          -7,
          -3.807338807112571,
          -4.785707009008745,
          -3.42645897557501,
          -2.8899288750065226,
          -4.784039275096961,
          -3.7456147202331636,
          -7,
          -3.4922343499973505,
          -4.4858136687807795,
          -3.6508831472750027,
          -3.6294979442363786,
          -7,
          -7,
          -2.5086063508026295,
          -3.8952774807183097,
          -7,
          -7,
          -3.5050664521186863,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.25723537950945,
          -3.8145272659128477,
          -3.527536166563112,
          -4.112088634880837,
          -4.784695729544385,
          -3.7498007079602984,
          -4.479798374009022,
          -7,
          -4.1852233285961535,
          -3.648658790620699,
          -4.221394674587222,
          -7,
          -7,
          -7,
          -2.8680655566461386,
          -7,
          -7,
          -4.490021721589144,
          -4.48708178619026,
          -7,
          -3.7467120225166606,
          -4.312297271757502,
          -4.795156749400232,
          -4.794327683619487,
          -4.790615862092096,
          -3.787396063026728,
          -7,
          -7,
          -2.589920354236246,
          -4.3059386314136505,
          -7,
          -7,
          -4.484036334901612,
          -4.305609289566193,
          -4.782300592283702,
          -4.780828369673003,
          -3.3287108050659557,
          -7,
          -3.4992745818922173,
          -7,
          -3.211354185453311,
          -2.166767369596477,
          -4.086495081663903,
          -3.8105013477665297,
          -3.804330289065253,
          -4.089148851582349,
          -4.794181213459668,
          -4.186899856567887,
          -4.489592899821886,
          -7,
          -4.311880953037904,
          -3.6310512384048725,
          -4.084483332544515,
          -4.110697428903857,
          -4.780014713076167,
          -2.8922274521845277,
          -4.189399065777632,
          -3.682564456357042,
          -7,
          -2.9465007841151127,
          -7,
          -3.3853347960853286,
          -4.783982145180654,
          -4.010858016949204,
          -4.083660255881591,
          -4.48266638715213,
          -3.9705726665984176,
          -4.79328038282763,
          -7,
          -3.302805567509679,
          -2.7085475735379623,
          -2.8427392173094055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.783346067476675,
          -7,
          -4.783989286831195,
          -3.6865724352823293,
          -3.690134715405524,
          -3.2026422864977273,
          -2.4091530701680073,
          -7,
          -7,
          -7,
          -4.786914606730178,
          -7,
          -4.781504057208732,
          -7,
          -4.789510204090254,
          -7,
          -7,
          -7,
          -7,
          -4.305157828786486,
          -7,
          -7,
          -4.011655010724778,
          -2.5100624294816565,
          -7,
          -4.780691666721215,
          -7,
          -7,
          -4.4837726704803105,
          -4.182236275432045,
          -7,
          -4.182756931040399,
          -3.2083741645947104,
          -3.3924507246560327,
          -4.217075778865637,
          -3.9192284996576987,
          -7,
          -7,
          -7,
          -2.514314591877321,
          -7,
          -3.3604271516917166,
          -7,
          -3.1767011903680267,
          -4.007498847687,
          -4.481270596619721,
          -4.782623096183696,
          -2.912822005835123,
          -3.861175835513029,
          -3.5377435590296185,
          -3.4910280061636856,
          -3.545801757159276,
          -4.788634951620105,
          -7,
          -7,
          -4.486607561214442,
          -3.7975583584025268,
          -4.79642167893092,
          -7,
          -4.782537118557698,
          -7,
          -7,
          -3.944306380496884,
          -7,
          -4.093890749991982,
          -3.254630748387398,
          -3.6730989213414653,
          -4.1945906489052245,
          -4.311669112400611,
          -2.476428154161269,
          -3.051692641798037,
          -4.781748196171954,
          -3.149966494141885,
          -7,
          -7,
          -4.327365746795361,
          -4.790840874214755,
          -3.1387572849361476,
          -3.8967466156074058,
          -4.217424718200872,
          -7,
          -3.624660176608305,
          -4.793713573408255,
          -2.6003021925239067,
          -2.7473405850027395,
          -4.780540523905541,
          -7,
          -7,
          -3.640474811527331,
          -3.0981345283359283,
          -4.783088512755294,
          -7,
          -4.49454417069265,
          -7,
          -4.190184573508741,
          -4.482087141826486,
          -3.1213253059294366,
          -4.784709989279148,
          -7,
          -3.143116671590088,
          -4.784709989279148,
          -2.6950585421423634,
          -3.9713944077328507,
          -2.562282086714992,
          -7,
          -2.6249296556243613,
          -2.39720514363694,
          -3.672243038508735,
          -7,
          -3.706511535925743,
          -7,
          -3.052638985331171,
          -3.673027493285839,
          -4.114877749892836,
          -3.947139517642829,
          -4.780950646376869,
          -7,
          -3.3632985230168235,
          -7,
          -4.784381896864668,
          -4.1828994675482605,
          -7,
          -4.481865250764642,
          -2.4626554649657124,
          -7,
          -7,
          -2.9915637971969784,
          -2.8413924052352826,
          -3.940665872475829,
          -3.0065950651517146,
          -3.356626730102122,
          -2.465351428272144,
          -3.4483326556439904,
          -3.064748596192895,
          -3.063948902114075,
          -2.4880405338781713,
          -3.690993032099869,
          -3.522726715604926,
          -3.0364389585099576,
          -2.7944497727116784,
          -2.8167527448722613,
          -3.7334005839920277,
          -2.629580836403122,
          -2.4515092648300474,
          -4.003786622914721,
          -3.041160061689073,
          -7,
          -3.051022393331254,
          -2.865258990838749,
          -3.0324195952491424,
          -4.258864665172021,
          -3.2861890569077867,
          -3.0582815767255327,
          -3.0831846311384115,
          -4.793042643127849,
          -2.9296487854824935,
          -4.171820028914312,
          -3.1166603796090073,
          -3.074875572578264,
          -3.3860154118710715,
          -4.489979561169549,
          -3.534775285671484,
          -3.5980498568165213,
          -2.858068551271974,
          -3.6205524447294355,
          -3.1285888003429183,
          -3.785607409972391,
          -3.264174369359504,
          -1.9045744446491906,
          -3.3822036435596736,
          -3.6625824599965613,
          -3.1530013881396495,
          -7,
          -2.308277941800968,
          -2.9558251417989614,
          -3.5437508246183773,
          -2.3073306678011605,
          -2.5368523462149337,
          -2.7234799365560174,
          -3.408225827891581,
          -2.8188354859318134,
          -4.044624677304607,
          -7,
          -4.343014497150768,
          -3.2876715574381974,
          -3.265121183675147,
          -7,
          -2.366179004261212,
          -2.092560220395226,
          -2.4974588609355894,
          -4.481342284852483,
          -3.8568966428983535,
          -4.180885369444393,
          -2.179117652198935,
          -3.004995610796561,
          -2.778917466444301,
          -2.2278193953785186,
          -3.0013009330204183,
          -4.479834341319361,
          -1.926279770490996,
          -2.3106756566094355,
          -7,
          -2.8958180100741187,
          -3.2797125608209257,
          -3.7797014123145414,
          -1.8306118315036168,
          -3.2753785478707846,
          -4.483836819803626,
          -2.4917169691818404,
          -2.499166668224345,
          -4.024478826207317,
          -2.1337589216397337,
          -4.482122920092511,
          -3.191355575615615,
          -2.318268587392731,
          -3.453553118913122,
          -4.78172666001846,
          -4.780742035973011,
          -7,
          -4.3041600855231055,
          -3.9679823208536535,
          -3.165020412803073,
          -3.7932873732019723,
          -3.0425986729597225,
          -7,
          -4.091807597001675,
          -2.4987805579480185,
          -4.493471992809347,
          -4.314407994796529,
          -4.304985720206672,
          -2.880308304868466,
          -7,
          -2.022161631575954,
          -3.0271184662702364,
          -4.307032257669135,
          -4.19038072865045,
          -3.174047934618734,
          -3.1287433422317372,
          -2.8304941217738633,
          -4.785963015980978,
          -4.181700704415961,
          -3.517347676486939,
          -4.306882315060308,
          -4.78488106958609,
          -4.489093245592739,
          -3.6245639690895306,
          -7,
          -2.71726052749008,
          -4.781094457259969,
          -7,
          -2.3559024079364916,
          -2.5223114231876465,
          -2.7833468581688714,
          -7,
          -4.319668091214678,
          -3.0569048513364727,
          -4.7858279199958655,
          -3.2922491469632345,
          -7,
          -3.9436358188134504,
          -2.7955380509603387,
          -4.780821175853473,
          -7,
          -3.471857266930764,
          -3.8342016289315226,
          -3.5800524263882556,
          -4.306532247519607,
          -3.9444121640759975,
          -3.9414688387364754,
          -4.182214865267536,
          -3.8362396965244656,
          -3.696019208407526,
          -2.8598885038757995,
          -7,
          -3.2571915630244033,
          -3.596019484843069,
          -4.314485193347227,
          -3.664136414560668,
          -7,
          -4.781841507164946,
          -3.2283040948254293,
          -3.7130422969110426,
          -2.338984518829484,
          -3.4549279706167253,
          -3.5257742727724612,
          -4.78875505029906,
          -7,
          -3.570069212412138,
          -7,
          -2.686099771995916,
          -4.481929682430211,
          -3.449807869542202,
          -3.0207886311085175,
          -4.310707470041913,
          -7,
          -3.01307433535058,
          -2.8425115981217535,
          -3.358750423731978,
          -4.4925718279855245,
          -2.58954640724269,
          -3.894620626740205,
          -3.700876708376904,
          -3.4252789783622632,
          -2.6217016393133123,
          -3.8549332403885326,
          -3.4258672276790443,
          -4.7868294745969555,
          -7,
          -4.780396529447265,
          -3.8385500169443825,
          -4.496521440773309,
          -4.308308242998225,
          -4.496251398039319,
          -3.016708424906099,
          -3.9470974721907366,
          -3.0510589270197617,
          -2.1165112778013424,
          -3.964030532827803,
          -3.2524230295413887,
          -7,
          -3.613644530590093,
          -7,
          -3.345231725806989,
          -3.175525297628974,
          -4.509974959845468,
          -4.780598108323546,
          -3.643685271947555,
          -4.309211282891381,
          -2.181096235879441,
          -4.086039331268039,
          -7,
          -4.780634094707888,
          -4.780554920725867,
          -7,
          -4.781000985603031,
          -4.7817840873880515,
          -4.3437432950100945,
          -3.9441300172530784,
          -4.791480116020001,
          -4.783388978417696,
          -3.7840107110782126,
          -3.878722811233517,
          -3.7827950003893553,
          -4.085868301491028,
          -3.6695814827928674,
          -3.1407663501232905,
          -3.2570217673283017,
          -2.0227566114894464,
          -2.8337180367331363,
          -3.2768198514902487,
          -3.48313065555793,
          -7,
          -3.3095340131587996,
          -3.742167894637497,
          -4.7802164692102265,
          -2.099685469420008,
          -3.6707024644784183,
          -3.8813703893061944,
          -2.961104552884867,
          -3.951108444044104,
          -3.347775931528265,
          -3.8269525871117778,
          -3.82735491122635,
          -3.0070688591807055,
          -4.081865559037354,
          -3.361201508369878,
          -3.5098813506672766,
          -4.785664326504347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.912323043506921,
          -3.9271136119337604,
          -7,
          -7,
          -3.323366704864766,
          -3.446159780273893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0335648288946877,
          -7,
          -7,
          -3.5969817431335205,
          -3.140506887703148,
          -7,
          -3.604657972047871,
          -7,
          -7,
          -7,
          -3.612359947967774,
          -3.6058831910843505,
          -7,
          -7,
          -7,
          -7,
          -3.7223047868743278,
          -7,
          -7,
          -7,
          -7,
          -3.6088468223264116,
          -3.2372064601272545,
          -7,
          -7,
          -7,
          -7,
          -3.8837182019639593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1542227520047104,
          -7,
          -4.052924683707729,
          -3.6762362167633116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.629715332647132,
          -7,
          -2.7564701305444474,
          -7,
          -7,
          -3.160543558238841,
          -7,
          -3.461048091670658,
          -7,
          -7,
          -7,
          -4.021920461493033,
          -7,
          -3.442244527847952,
          -7,
          -7,
          -3.254628628807601,
          -7,
          -3.605951157564873,
          -7,
          -7,
          -7,
          -3.805160901599434,
          -3.8305886686851442,
          -3.1048284036536553,
          -7,
          -2.9011418058474736,
          -3.350377253413796,
          -3.359392744171009,
          -7,
          -7,
          -7,
          -3.226342087163631,
          -7,
          -3.5504729571065634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8019864946643342,
          -7,
          -7,
          -7,
          -3.031581570404944,
          -3.319586473608658,
          -7,
          -7,
          -7,
          -7,
          -1.7604028989952634,
          -7,
          -7,
          -7,
          -7,
          -3.577319426553794,
          -7,
          -3.9583966309230707,
          -3.5480930182552797,
          -7,
          -7,
          -7,
          -5.008123037385538,
          -7,
          -3.7824009524965296,
          -3.562827966219992,
          -7,
          -7,
          -3.323889335413958,
          -7,
          -7,
          -7,
          -4.123884293460008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6801411837154883,
          -7,
          -3.766710207262259,
          -3.431202884556517,
          -7,
          -3.1895304166110634,
          -7,
          -7,
          -7,
          -3.688568121297955,
          -2.7933974567588,
          -7,
          -7,
          -7,
          -3.580605691790701,
          -7,
          -7,
          -7,
          -3.67797175281074,
          -7,
          -3.2020339865636913,
          -7,
          -7,
          -7,
          -3.7090154169721172,
          -7,
          -7,
          -3.3164945392223113,
          -3.7329078712997776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5961570809161723,
          -7,
          -3.4638183615294293,
          -7,
          -3.7469648528798047,
          -7,
          -3.9305924884425982,
          -3.35074194501045,
          -3.643156465619706,
          -2.9036325160842376,
          -3.8522359394118872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.086537783753207,
          -7,
          -4.402278581895561,
          -7,
          -2.856815171198087,
          -7,
          -7,
          -7,
          -7,
          -3.6020599913279625,
          -7,
          -3.944285220688753,
          -7,
          -7,
          -7,
          -3.6364043058455713,
          -3.3175619366212463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7567881987681178,
          -3.5491872461344083,
          -3.322115878973958,
          -3.858260579266509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7822575736633017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.325207689482919,
          -7,
          -7,
          -7,
          -3.232911444346091,
          -3.9691362335967124,
          -3.9915361753000314,
          -7,
          -7,
          -7,
          -3.299362001114019,
          -3.4243098202457563,
          -2.6968803716827625,
          -3.635986111800833,
          -2.6946371018559296,
          -7,
          -7,
          -7,
          -4.1165745397769165,
          -3.6414741105040997,
          -3.3147798252899086,
          -3.4500437195797073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.486288760960566,
          -7,
          -7,
          -3.5997739391463885,
          -7,
          -7,
          -3.6952189189051508,
          -7,
          -3.4348083386530925,
          -3.76867509238787,
          -3.666049738480516,
          -7,
          -7,
          -1.7579431527357852,
          -7,
          -7,
          -7,
          -7,
          -3.64018319192134,
          -7,
          -7,
          -3.612289256263882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.943918286779118,
          -3.551165254706615,
          -7,
          -7,
          -7,
          -3.1730405075510624,
          -2.663347505203127,
          -7,
          -7,
          -3.4643404846276673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2676996034544477,
          -3.6317480743965693,
          -3.9731047522149807,
          -3.66337107549875,
          -3.963282084212685,
          -7,
          -3.6744937172963503,
          -4.253814369244739,
          -3.9646367037885013,
          -7,
          -7,
          -7,
          -3.8258154449852038,
          -7,
          -7,
          -3.72916478969277,
          -7,
          -7,
          -3.156927555539657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.398981066658131,
          -7,
          -7,
          -3.0607488707845385,
          -3.648826818285013,
          -7,
          -3.571475903681944,
          -4.73917663191073,
          -3.650760688764963,
          -3.25478968739721,
          -3.4789579468006946,
          -2.7508663941909006,
          -3.259218324497471,
          -7,
          -3.6698745024898027,
          -4.74498886151134,
          -4.710654609665483,
          -2.5387173259661746,
          -4.390687877285511,
          -4.100405011565889,
          -3.239644774897795,
          -3.844880838468393,
          -2.2407895320869433,
          -3.8449118739121406,
          -4.071403283531469,
          -2.785547323317465,
          -2.6558292129755996,
          -3.6011905326153335,
          -4.391464411839103,
          -4.688108228551808,
          -3.5699120543965486,
          -7,
          -2.904181310719912,
          -3.9455178220778397,
          -4.228716809495001,
          -7,
          -3.42949850224274,
          -2.867804085032966,
          -3.885134966063434,
          -4.03249788285711,
          -3.721412123150759,
          -3.6658154279909354,
          -2.770498543514735,
          -7,
          -3.619997169624987,
          -3.2782344594580577,
          -2.9965514700448734,
          -3.589279221235967,
          -3.3483933771587093,
          -7,
          -3.132373881522234,
          -4.116441697539312,
          -7,
          -3.011598634469503,
          -2.735672303650337,
          -3.328388098944101,
          -3.0835026198302673,
          -3.3093746249166704,
          -7,
          -7,
          -3.0723418215173193,
          -3.173105296195781,
          -3.896691526562884,
          -7,
          -3.1856494511134392,
          -3.035348556674808,
          -3.993102029263803,
          -7,
          -3.909609510490169,
          -7,
          -3.015783409685465,
          -7,
          -4.933753789312102,
          -3.180670552957893,
          -3.6933311562440196,
          -7,
          -3.6059690913902385,
          -3.0035036147425362,
          -2.8958180100741187,
          -7,
          -3.5934632939080027,
          -3.079723775139919,
          -2.828062666544521,
          -3.4514794051248616,
          -7,
          -3.0447595861672774,
          -3.0729382721626735,
          -3.5351041538013934,
          -3.8222277099699213,
          -7,
          -2.853211334503317,
          -3.1784708516886595,
          -3.7593089314156347,
          -7,
          -7,
          -7,
          -3.580696939712437,
          -7,
          -2.764723060841219,
          -3.440436766105774,
          -3.2670308532927654,
          -3.591064607026499,
          -3.234179705196503,
          -3.255548160131223,
          -3.452706226511029,
          -7,
          -7,
          -3.246301577171691,
          -7,
          -3.1653432655224587,
          -2.962606072924127,
          -3.6241789257480224,
          -7,
          -3.6184403542867676,
          -3.7269715836828765,
          -3.195954973023525,
          -3.6492374723496073,
          -3.1411360901207392,
          -7,
          -7,
          -7,
          -7,
          -3.2163638637641165,
          -7,
          -3.6536626598692936,
          -7,
          -7,
          -4.630692236153442,
          -3.537274397054826,
          -2.0276750310603933,
          -7,
          -7,
          -3.120281378495627,
          -7,
          -3.311541958401195,
          -7,
          -3.209336255749449,
          -3.208916571076424,
          -7,
          -3.287801729930226,
          -3.149603954933024,
          -3.2060158767633444,
          -2.247373072874618,
          -7,
          -3.219060332448861,
          -7,
          -7,
          -3.1061908972634154,
          -2.8549130223078554,
          -3.09968064110925,
          -7,
          -3.526016021340753,
          -3.512817758564873,
          -3.419955748489758,
          -2.9131576276683173,
          -7,
          -7,
          -3.5685537120494426,
          -3.7298125071609354,
          -3.2391839343012987,
          -3.485863329597335,
          -2.899881272661842,
          -7,
          -7,
          -3.4101443047027806,
          -7,
          -2.5448786068287874,
          -2.8271537957574657,
          -2.952550293898202,
          -3.379169496092038,
          -2.593286067020457,
          -7,
          -3.1969127457115927,
          -3.038269981689261,
          -3.5671440451956573,
          -7,
          -3.255736247252979,
          -3.4875625602563782,
          -3.938519725176492,
          -3.667452952889954,
          -3.1917924531631767,
          -2.5295307808865464,
          -7,
          -3.6609602917760835,
          -7,
          -7,
          -3.7181195409349796,
          -3.78625439578978,
          -2.9425041061680806,
          -3.3060674363555953,
          -3.1213253059294366,
          -7,
          -3.072029200827922,
          -3.885632569294887,
          -7,
          -3.001156577199942,
          -7,
          -3.7007037171450192,
          -7,
          -3.8830933585756897,
          -3.4186326873540653,
          -2.760260885474593,
          -7,
          -7,
          -7,
          -2.7937903846908188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5881596163830918,
          -2.617410633529217,
          -3.693023067923694,
          -7,
          -7,
          -2.7772196208195874,
          -7,
          -7,
          -7,
          -7,
          -3.2773035345575963,
          -3.6886867242841235,
          -3.6036314622515433,
          -7,
          -3.588103560302743,
          -7,
          -7,
          -3.823213313282668,
          -7,
          -7,
          -3.9387698227831174,
          -7,
          -3.629613445378183,
          -3.5180530800797216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.889077492650064,
          -7,
          -7,
          -7,
          -3.912753303671323,
          -7,
          -7,
          -7,
          -2.9091011725201548,
          -7,
          -3.2314695904306814,
          -3.7341061109103197,
          -3.3153404766272883,
          -3.676733145302988,
          -3.36384170456394,
          -7,
          -7,
          -2.3920825172342264,
          -2.7703473589832392,
          -2.9975919432613582,
          -7,
          -7,
          -3.9088333870375656,
          -7,
          -2.6171168833145146,
          -3.4135977618504896,
          -7,
          -3.1601897454261945,
          -2.3455343675432965,
          -3.7481363222044366,
          -3.9133899436317554,
          -7,
          -3.771121828334957,
          -3.6286187898185123,
          -4.216377057988173,
          -3.518114068443985,
          -3.9242792860618816,
          -7,
          -7,
          -4.216746333609975,
          -3.9453700944903036,
          -7,
          -3.1569915605680214,
          -7,
          -3.554004321011903,
          -4.215505378231819,
          -2.9196207980200626,
          -7,
          -4.217983753176437,
          -2.8338823321356137,
          -3.927293353644034,
          -2.999456792322048,
          -7,
          -7,
          -3.672490393581568,
          -3.752227765448041,
          -7,
          -2.5481092893492856,
          -3.9640945574951996,
          -2.3974222428995087,
          -3.6404019249815684,
          -3.7397568869831948,
          -7,
          -3.9635989625972416,
          -7,
          -7,
          -7,
          -7,
          -3.073953889255577,
          -2.8378363553807753,
          -2.8700962645020613,
          -4.210318519826232,
          -7,
          -2.9571042293287895,
          -7,
          -3.623889919047242,
          -7,
          -7,
          -3.7857330906965307,
          -2.7883027995907916,
          -7,
          -3.7756589833754215,
          -7,
          -3.611059147483494,
          -2.556113963980344,
          -3.0429444862795263,
          -3.913707913980483,
          -4.205177287388274,
          -3.0089548426529267,
          -7,
          -3.1262010075957805,
          -2.048802363539486,
          -3.2415962821540716,
          -7,
          -2.2379135844464617,
          -3.104031637246626,
          -2.431162655342287,
          -7,
          -7,
          -3.358672330617676,
          -3.939918420369057,
          -3.109554442867644,
          -3.0581579690126945,
          -3.910410939914688,
          -2.9674602192761386,
          -7,
          -4.2063130519359575,
          -7,
          -2.999878380517545,
          -7,
          -2.6102729187647107,
          -3.153713263108388,
          -2.7659751825768173,
          -2.1562617891349682,
          -3.74183416300906,
          -3.513989584700717,
          -3.1491677745760125,
          -3.7552648914122466,
          -2.8754980695455994,
          -4.224481265303632,
          -7,
          -4.250273586232247,
          -4.281873856870123,
          -3.219650005970414,
          -3.923839598909276,
          -3.2802795193979817,
          -2.184145217084545,
          -4.218824238677402,
          -4.0522128357697484,
          -7,
          -2.8748631189600693,
          -7,
          -3.1185717564889077,
          -3.214203409601812,
          -4.209193195719529,
          -3.743588150159904,
          -2.245179416380027,
          -2.837050380417555,
          -7,
          -4.2066100238992234,
          -3.511259310502346,
          -7,
          -7,
          -7,
          -3.2089516750078246,
          -3.6037125907704572,
          -2.379380373882321,
          -2.7765766670051226,
          -3.1326089412441998,
          -3.465616508703862,
          -3.442819337136645,
          -3.5872244024425086,
          -7,
          -7,
          -3.4523743044357436,
          -3.3172112567454075,
          -2.5613164825661228,
          -7,
          -3.2589032153035102,
          -3.443289070428097,
          -2.6364360144838876,
          -7,
          -7,
          -4.244103863376508,
          -3.534483017704701,
          -7,
          -2.641092581460935,
          -3.9372921607115727,
          -7,
          -7,
          -7,
          -4.0638960381259945,
          -7,
          -4.217720767530819,
          -2.8050057580560037,
          -3.738093174367565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3385651441864757,
          -3.9129390867507183,
          -3.3639502593966446,
          -7,
          -3.0403316283858697,
          -2.6037090637586675,
          -4.224248100962593,
          -4.008344629252689,
          -3.2098723115450163,
          -7,
          -3.7777650391693047,
          -7,
          -3.3971948649686743,
          -3.7527908536104846,
          -3.9358094538099326,
          -2.2815849084078117,
          -3.313418991194657,
          -3.461198288622493,
          -7,
          -2.51853172389058,
          -3.768416088216332,
          -2.633828187038318,
          -7,
          -3.183586154317256,
          -7,
          -3.7272768587594616,
          -4.218614269745094,
          -3.9359856330811804,
          -7,
          -7,
          -3.5471180513494303,
          -3.7746385998091383,
          -7,
          -3.1096267509648063,
          -3.3280736545131555,
          -2.9247768693591403,
          -7,
          -7,
          -4.2139690824147,
          -4.207822799001508,
          -7,
          -7,
          -7,
          -4.218640521413849,
          -3.3760291817281805,
          -3.2884504482756363,
          -3.1856763274980158,
          -3.072943861541842,
          -4.204499824171151,
          -7,
          -3.917137752756444,
          -3.6270840883619675,
          -7,
          -3.9083509566822143,
          -7,
          -2.5929838089301427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.121126149683747,
          -7,
          -7,
          -7,
          -7,
          -3.1797606367964804,
          -3.5207454715194824,
          -7,
          -7,
          -3.611340875583321,
          -3.46451438626162,
          -2.6528504508265676,
          -3.2661336596046886,
          -3.638514215690422,
          -7,
          -7,
          -2.22222026594213,
          -2.54602416180365,
          -2.291692966600889,
          -4.222378265944956,
          -3.2943884118784865,
          -3.1830626791773424,
          -3.911370707116138,
          -4.213597436747359,
          -3.006774003996861,
          -2.908773627744193,
          -2.6134894531087443,
          -3.062540203047516,
          -3.176207055478685,
          -3.332034277027518,
          -3.618910596192326,
          -7,
          -3.930872653792662,
          -3.965906915495192,
          -7,
          -7,
          -3.9121954771094196,
          -7,
          -4.212400702780119,
          -3.23807120613056,
          -7,
          -2.3719048431670435,
          -3.30252933962341,
          -3.9292911732550975,
          -4.263612400668982,
          -3.935053589231065,
          -2.681969076348861,
          -2.921686475483602,
          -7,
          -3.2876026948754578,
          -7,
          -3.6212541984361724,
          -3.8125345758070877,
          -7,
          -3.277485792612607,
          -2.9118289775122443,
          -7,
          -7,
          -3.800739983505454,
          -2.4112047787845436,
          -2.7231186834574888,
          -2.3249870307193867,
          -7,
          -7,
          -7,
          -3.425187657417824,
          -2.993964998195119,
          -7,
          -7,
          -3.657629431388952,
          -7,
          -3.168669320925909,
          -3.613260260001968,
          -2.865991800126275,
          -7,
          -3.750379810251768,
          -2.603851081315202,
          -3.3758725475060314,
          -2.615994902631364,
          -2.852795753117633,
          -3.2657370805458465,
          -7,
          -2.5166355178955753,
          -3.5226615437344733,
          -3.430679613881531,
          -7,
          -4.225438516805497,
          -7,
          -2.7601024937899448,
          -3.3818768603693616,
          -3.1730613335266535,
          -3.549346636005761,
          -7,
          -7,
          -2.3792692494736474,
          -4.213012778808009,
          -7,
          -7,
          -4.301702630953145,
          -3.9135754546260832,
          -2.5246492705057113,
          -7,
          -7,
          -3.5359188393134557,
          -3.572389430331052,
          -4.057552001054533,
          -3.451742587325767,
          -3.713348361235772,
          -2.632468416673561,
          -3.3644008892496857,
          -2.957830681368091,
          -2.320932608707785,
          -3.1201061374514323,
          -3.9905830212758984,
          -3.9511431601075526,
          -3.9870211101488646,
          -3.8056405409252037,
          -2.8151564335444066,
          -4.090422660853439,
          -3.843412744894163,
          -2.5244555335652943,
          -3.642579921057928,
          -3.353423308704367,
          -4.2868829198267875,
          -4.034566629756843,
          -3.4571372583035815,
          -2.618276682014942,
          -2.827830650428466,
          -3.8690438760940067,
          -3.7068955023874866,
          -3.234812449442134,
          -7,
          -1.6926772003490882,
          -4.176149161126549,
          -3.897276490656009,
          -3.609772216589793,
          -3.794975744051132,
          -3.9428757745535403,
          -3.8405765344542693,
          -3.5860056057388867,
          -2.9519418546272673,
          -3.4104397862103464,
          -2.12827185996548,
          -3.747800090864369,
          -2.7563080253465677,
          -3.0988414244579596,
          -3.1625830742133614,
          -2.855562418553915,
          -1.9523585217464556,
          -2.449441664614968,
          -1.5814191386454624,
          -3.5601629215805253,
          -3.79509178180048,
          -3.3566899315482526,
          -1.9690079356415473,
          -1.960426769803533,
          -7,
          -1.8633124773794558,
          -2.1022194978435347,
          -7,
          -1.9837359712978422,
          -3.638988159343682,
          -3.7041290590724634,
          -3.623042434246382,
          -2.7895232336183433,
          -1.834346849885255,
          -3.8003410391868053,
          -3.7354924419253943,
          -3.1347082247787115,
          -4.214949760615447,
          -2.651785109751889,
          -4.334694958867158,
          -4.069442865465664,
          -2.631776592097428,
          -3.464977031937279,
          -4.207095540419218,
          -3.4491222254534297,
          -2.7773655477127432,
          -3.2797125608209257,
          -3.5934632939080027,
          -7,
          -1.3756529076910702,
          -2.472470358889752,
          -1.8336878797815284,
          -7,
          -1.8852044228885487,
          -2.893728892398651,
          -1.5095625244090545,
          -3.557195395395744,
          -7,
          -1.2438694482941055,
          -3.0326110132705195,
          -3.5939380039687028,
          -4.2102649990322885,
          -7,
          -7,
          -7,
          -4.317415586331099,
          -2.357652922807868,
          -3.1377921781310056,
          -1.9049102040302717,
          -7,
          -3.2428394686728192,
          -1.9507381240225095,
          -3.0512972631525717,
          -4.245833335097326,
          -7,
          -2.1679410523362126,
          -3.906981153228854,
          -2.6487892135944495,
          -2.4658265977646407,
          -3.742122617525653,
          -7,
          -3.683842216031373,
          -3.5486841714830053,
          -2.8274338954007794,
          -7,
          -3.9168748785386835,
          -3.3339508043872472,
          -7,
          -3.9208274397551555,
          -3.395426248098107,
          -3.1008987303125495,
          -7,
          -2.308378061066681,
          -7,
          -7,
          -3.6617022843828044,
          -2.9300353482108923,
          -2.7642384191572935,
          -4.205312653309609,
          -7,
          -2.506991818723615,
          -7,
          -3.036276545653646,
          -7,
          -3.2814878879400813,
          -2.2738821275668677,
          -7,
          -3.733464770185494,
          -7,
          -2.955535845981106,
          -3.4063272387861963,
          -7,
          -3.1970047280230456,
          -3.023458237643675,
          -7,
          -2.9863237770507656,
          -2.4862403588911572,
          -7,
          -7,
          -2.8321666341003913,
          -2.7974983643715756,
          -3.9450252012424625,
          -2.126360812021379,
          -7,
          -7,
          -3.768434593637725,
          -3.1341771075767664,
          -2.2870284657939095,
          -3.2664198658791035,
          -3.512217305233624,
          -7,
          -7,
          -3.1784973288215594,
          -7,
          -3.2912275344074153,
          -7,
          -2.9057713571186508,
          -2.606838988475993,
          -3.6304787262026363,
          -7,
          -2.5730317402855922,
          -2.132052669278517,
          -3.0643258308401697,
          -3.7758045569461376,
          -2.4647118247672366,
          -4.267406418752904,
          -7,
          -3.452348761457827,
          -2.234347416698314,
          -2.9618308160440634,
          -3.9317882969633793,
          -4.228990310840724,
          -7,
          -7,
          -3.4390054396547645,
          -7,
          -3.1821032558041695,
          -2.707712079213691,
          -2.1041161084632165,
          -3.6461585698621124,
          -2.8976560240030134,
          -2.3737923474189735,
          -3.605778955151077,
          -2.8319408361283087,
          -7,
          -3.2854572872473353,
          -7,
          -2.837457816805311,
          -2.3941056294279046,
          -4.310672074930124,
          -7,
          -3.198432135130042,
          -7,
          -2.0975214186846465,
          -7,
          -7,
          -7,
          -4.205880729887537,
          -7,
          -4.207553585949308,
          -3.733250779305627,
          -2.892948829012671,
          -7,
          -7,
          -7,
          -3.74196530244959,
          -3.3655414661398932,
          -3.2600448734710765,
          -4.221961651505041,
          -7,
          -2.663507637160854,
          -3.3332204954403872,
          -2.6065042033187225,
          -3.5517345546707815,
          -4.303433666006204,
          -4.220265033587232,
          -7,
          -3.5800121125294244,
          -3.740362689494244,
          -7,
          -2.752501999787115,
          -3.443262987458695,
          -3.1788200395482566,
          -2.1037106595141473,
          -7,
          -3.3554515201265174,
          -3.7314813197428696,
          -4.210211471641834,
          -3.0468608244404245,
          -4.207149453209543,
          -3.4580115820428454,
          -3.235932253986295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.797821311364024,
          -3.515741416669365,
          -4.178265177719533,
          -3.557226403727186,
          -7,
          -7,
          -2.6195434403670323,
          -2.2289494568369124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3139311012962236,
          -7,
          -7,
          -3.057116444267286,
          -3.021303027970397,
          -7,
          -7,
          -7,
          -3.887898488096872,
          -7,
          -7,
          -4.199052719385967,
          -7,
          -7,
          -7,
          -3.811709026696191,
          -3.883547879268044,
          -7,
          -2.984227178928321,
          -7,
          -7,
          -7,
          -3.3659647706873033,
          -7,
          -3.337459261290656,
          -2.45760158014135,
          -7,
          -3.046061390345488,
          -7,
          -7,
          -7,
          -3.843295082736507,
          -3.0232524596337114,
          -3.2470509203392064,
          -7,
          -3.3572358579987425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6691773631428735,
          -3.353403259377596,
          -7,
          -7,
          -3.6109261934087056,
          -7,
          -7,
          -7,
          -7,
          -3.92069713446992,
          -3.7118821817068475,
          -3.790988475088816,
          -3.5970915798771266,
          -7,
          -7,
          -3.0395463043793804,
          -3.8866598978612026,
          -3.8067225030761813,
          -7,
          -3.9252605095194353,
          -7,
          -3.2429884121947947,
          -3.182414652434554,
          -3.5721743136130595,
          -7,
          -2.605961594892811,
          -3.2595938788859486,
          -2.6028735310261824,
          -3.789439684567179,
          -7,
          -3.61768166971834,
          -3.171433900943008,
          -3.303574009998992,
          -3.374381698050882,
          -3.798236176367936,
          -3.5174598265402324,
          -7,
          -7,
          -7,
          -3.399125460874943,
          -7,
          -7,
          -7,
          -3.695043658821294,
          -3.214505343088467,
          -7,
          -7,
          -3.0632082200712114,
          -7,
          -3.1529286821843288,
          -3.5299434016586693,
          -7,
          -3.2899232395240046,
          -7,
          -3.39467052410719,
          -7,
          -4.011676149933908,
          -1.9634327504866755,
          -7,
          -7,
          -7,
          -4.416032735575399,
          -7,
          -3.448551739201578,
          -7,
          -7,
          -3.821971817642043,
          -3.0647812072898275,
          -3.634124451552187,
          -7,
          -7,
          -4.462038432969983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9818452452840774,
          -3.2629254693318317,
          -2.997167871445834,
          -7,
          -3.8230175234460493,
          -3.6437815628948647,
          -7,
          -7,
          -3.244091485200853,
          -7,
          -3.4892199729008753,
          -7,
          -3.8035936647713444,
          -7,
          -3.6068541017166744,
          -7,
          -7,
          -7,
          -3.8534548413680665,
          -7,
          -3.5533367823768884,
          -3.864689034136851,
          -7,
          -7,
          -7,
          -4.119981307304154,
          -7,
          -7,
          -3.377774222209929,
          -3.808075868091307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.544378143957812,
          -7,
          -4.091895473508298,
          -7,
          -2.99503658046845,
          -3.239854331887638,
          -3.529366180819488,
          -3.5397450161093125,
          -3.4998702905864882,
          -7,
          -3.6018427897820984,
          -3.5597869682005565,
          -3.3972445810103866,
          -7,
          -7,
          -2.9160150455495546,
          -3.8120438979302267,
          -4.011401259924744,
          -7,
          -2.764295715094164,
          -3.8816699076720615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8615941446438655,
          -7,
          -7,
          -3.7468676278504294,
          -3.895919545310016,
          -7,
          -3.6049816296074315,
          -3.7535677395933793,
          -4.106122874006655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1971426649725627,
          -3.805682059572066,
          -3.3039603780983073,
          -7,
          -7,
          -3.212986184736668,
          -3.2404868451670525,
          -7,
          -7,
          -7,
          -3.5640739789771465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6270538048638272,
          -7,
          -7,
          -7,
          -3.7995473071256147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.590395947184013,
          -4.0856116304716465,
          -3.1707895904463914,
          -7,
          -7,
          -2.9419087743655994,
          -7,
          -3.369521437296432,
          -7,
          -3.454890572811237,
          -3.8323172699222616,
          -7,
          -7,
          -3.7117228918272347,
          -2.899507835399982,
          -3.0224283711854865,
          -3.131056990114102,
          -3.252922346195411,
          -3.5566642621225686,
          -7,
          -7,
          -7,
          -3.929521100631104,
          -3.6189889203649335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5918989866912243,
          -3.45046466200715,
          -7,
          -7,
          -7,
          -2.9258676763970497,
          -4.1285285037974395,
          -7,
          -3.919844843125104,
          -7,
          -7,
          -3.977586438003851,
          -7,
          -4.166193215170067,
          -3.9458623244896174,
          -7,
          -7,
          -7,
          -3.899327949877654,
          -2.7740444161690005,
          -2.6824793547784997,
          -7,
          -7,
          -7,
          -4.053808059920658,
          -3.989983458301399,
          -7,
          -7,
          -3.9138138523837167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8387861449465945,
          -3.3883232675782713,
          -3.345765693114488,
          -3.26605241210841,
          -3.1758450890945245,
          -3.7170204972570655,
          -7,
          -3.169233451301097,
          -4,
          -7,
          -7,
          -7,
          -7,
          -3.3551640665152047,
          -4.068519806000912,
          -7,
          -7,
          -7,
          -7,
          -3.130816050034744,
          -7,
          -3.5189743111443366,
          -7,
          -4.00177696707744,
          -7,
          -3.3974069470962536,
          -7,
          -7,
          -4.35215356418076,
          -3.348566690474671,
          -4.384980295651304,
          -3.3902283624691303,
          -7,
          -2.896556007555891,
          -2.6262409978558114,
          -2.6835364503597714,
          -3.49610432191286,
          -3.064313968505352,
          -3.981501488148247,
          -3.234382283672649,
          -3.8599409698362095,
          -4.176459219407738,
          -2.6522762548686236,
          -4.430687668976669,
          -3.576143823906798,
          -3.2601346916047342,
          -4.2139690824147,
          -4.116292201435748,
          -7,
          -4.552715136150618,
          -3.60929196953529,
          -2.527585840254779,
          -3.418159186999809,
          -7,
          -3.629367119082936,
          -3.116503972397613,
          -7,
          -2.0964627896675685,
          -7,
          -4.026655813877043,
          -3.5227212849892453,
          -3.627263416568221,
          -3.5766292484476274,
          -3.771391477501237,
          -4.118892725373621,
          -2.9620107849938013,
          -4.019240950395851,
          -3.0668475109738993,
          -3.832445041174111,
          -3.046619678938016,
          -4.007288924125068,
          -3.646763038740345,
          -2.774302234212727,
          -2.7755538165527383,
          -2.2377112577136704,
          -1.630903483314324,
          -4.188844146546897,
          -7,
          -3.480033088737352,
          -2.825860172884344,
          -3.2096368533656783,
          -7,
          -2.0018841438745514,
          -2.343748662446433,
          -7,
          -2.21677901089471,
          -4.46569507426257,
          -7,
          -7,
          -3.6538875580709775,
          -2.1046905386248174,
          -3.940249653918925,
          -3.801403710017355,
          -4.020899672862536,
          -7,
          -3.155059444203544,
          -7,
          -4.113769599761249,
          -4.244252373972473,
          -4.34478512263266,
          -3.7867514221455614,
          -7,
          -2.7201726455814055,
          -3.7797014123145414,
          -3.079723775139919,
          -1.3756529076910702,
          -7,
          -3.4506134342821477,
          -1.7608630121665352,
          -7,
          -2.6280388337138167,
          -3.36901210676981,
          -1.017448486549346,
          -4.127861009273555,
          -7,
          -3.279393142747864,
          -3.5849434042753194,
          -3.6258095810155693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2567402897487763,
          -3.5958267770732233,
          -2.5042303053800343,
          -7,
          -3.876217840591642,
          -3.5378190950732744,
          -2.825209673964737,
          -7,
          -3.7989957344438814,
          -3.74795530690673,
          -7,
          -3.630173529786771,
          -2.987129767659897,
          -7,
          -7,
          -4.278593568241134,
          -7,
          -3.10623340638907,
          -7,
          -3.8147801457458046,
          -7,
          -7,
          -7,
          -3.87046243158892,
          -3.1737203067447206,
          -7,
          -4.201123897207379,
          -7,
          -7,
          -4.6541572822721164,
          -3.1087324348173704,
          -2.7136598180717924,
          -7,
          -7,
          -2.675228253593064,
          -7,
          -3.4532673635246596,
          -7,
          -3.3820170425748683,
          -2.5611945858903096,
          -7,
          -7,
          -3.904336792202495,
          -3.078396394473104,
          -2.6354837468149124,
          -7,
          -3.564784384503987,
          -3.363235804483694,
          -7,
          -7,
          -2.7681255921293118,
          -3.3273998072376996,
          -7,
          -3.179886765714693,
          -3.1031192535457137,
          -7,
          -3.690196080028514,
          -7,
          -7,
          -7,
          -3.587598729721245,
          -2.9680672298020014,
          -2.781755374652469,
          -2.002375108442567,
          -7,
          -3.817961804531994,
          -7,
          -7,
          -3.0614901766248153,
          -7,
          -3.190499779633489,
          -3.0354297381845483,
          -7,
          -7,
          -2.9256803561548907,
          -2.6290576038052467,
          -7,
          -7,
          -3.712868477066893,
          -3.4531143980466226,
          -4.043440876244474,
          -3.8464608251293324,
          -3.259779639261108,
          -2.559179629032332,
          -7,
          -7,
          -7,
          -7,
          -3.500465183284189,
          -3.6275194713376826,
          -3.3525683861793083,
          -3.080935556664588,
          -3.5958488051466677,
          -7,
          -4.002252479920538,
          -3.4642978858554994,
          -4.008174184006426,
          -3.3218054838575393,
          -7,
          -3.5676144427308447,
          -7,
          -2.9203842421783577,
          -3.709269960975831,
          -7,
          -7,
          -3.3919343639822452,
          -7,
          -3.020389861233702,
          -3.826398782187618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8635607645262424,
          -7,
          -7,
          -7,
          -3.796851749049887,
          -3.5053535061601866,
          -7,
          -7,
          -3.428836444372765,
          -3.2582181084242725,
          -3.2238026211274917,
          -4.056676215120661,
          -7,
          -7,
          -7,
          -3.4782778319196046,
          -7,
          -7,
          -3.4231522154326917,
          -3.824125833916549,
          -3.8217754671834636,
          -3.4753321417033707,
          -3.9191304138606142,
          -7,
          -3.790988475088816,
          -3.3175061899448455,
          -3.1961761850399735,
          -7,
          -4.005094675072549,
          -3.3826173114774845,
          -3.5306478535274857,
          -7,
          -3.9950260973716762,
          -7,
          -4.89657030606194,
          -3.896614390159009,
          -4.1194318594918125,
          -3.301160264469208,
          -3.043891449779881,
          -7,
          -4.4220807309448755,
          -1.929307150190183,
          -3.9218944709291024,
          -7,
          -7,
          -3.09770144457668,
          -2.631775727952187,
          -3.3098648282852214,
          -4.899497669943841,
          -7,
          -7,
          -4.419718996229201,
          -2.729700270514178,
          -2.819670459790951,
          -7,
          -3.305938282296858,
          -2.1571977400586926,
          -4.423458871819513,
          -4.296231776287164,
          -7,
          -3.413872747686039,
          -3.82246230575867,
          -4.053555850013714,
          -3.1807364413106,
          -4.201588281073518,
          -4.897214590564255,
          -7,
          -4.199782593968986,
          -4.4279997312126165,
          -4.198931869932209,
          -4.308671106715418,
          -7,
          -3.2248782201699746,
          -4.421395503250161,
          -2.7081274579060466,
          -3.9944326411643747,
          -4.598013113465622,
          -3.72969922631617,
          -3.90114215765946,
          -3.273884754313585,
          -4.5973221466588425,
          -3.5578898161615204,
          -4.3094065759545295,
          -3.521007252408604,
          -4.20477093628552,
          -1.763978013763368,
          -3.653866144211602,
          -2.9813705460996927,
          -4.02418282850698,
          -7,
          -3.9455998712518956,
          -3.245968394913303,
          -7,
          -3.42315845996139,
          -4.122456176023025,
          -7,
          -3.899535984652174,
          -3.032576351350964,
          -2.966145815394173,
          -7,
          -7,
          -3.2640231786798104,
          -7,
          -3.331681605284793,
          -4.014158125505415,
          -4.897286118766272,
          -4.20980444773022,
          -2.6276481114978902,
          -4.4199942773430445,
          -3.443861601587795,
          -7,
          -7,
          -2.72553118169117,
          -3.6042044458563303,
          -4.296297639188485,
          -7,
          -3.0163689690175235,
          -3.996533561445376,
          -2.9323669403052204,
          -3.188312816947483,
          -3.625231195952194,
          -4.602418136560929,
          -2.3220357412983232,
          -3.5324517957802373,
          -3.7443369972248948,
          -7,
          -7,
          -7,
          -3.9038547572602984,
          -3.952996819452678,
          -2.8885026908124822,
          -7,
          -3.447294314502097,
          -4.9000009651534695,
          -4.896647450295432,
          -4.595518266671238,
          -2.855846711602347,
          -7,
          -3.628265212453981,
          -4.12411823117788,
          -3.0299158432131796,
          -1.9889092796979757,
          -4.200264845080476,
          -3.9437252868815347,
          -3.859853068732257,
          -4.60107628682684,
          -2.030618256351181,
          -4.900416291286778,
          -7,
          -4.127779483108085,
          -4.01000297412706,
          -2.957317790730713,
          -7,
          -3.335919497002167,
          -2.6292256683079684,
          -4.899229372297198,
          -3.091396761403906,
          -4.899475774307042,
          -3.1609971346756005,
          -4.299300234916784,
          -3.608119360712597,
          -3.614770704069749,
          -4.897236600496572,
          -4.422502293717657,
          -2.250571908204015,
          -3.4628897771447584,
          -7,
          -4.896708054009982,
          -3.0242675420961667,
          -7,
          -7,
          -4.896625410484115,
          -3.666661106771804,
          -4.89657030606194,
          -1.889446776659733,
          -3.181973441281636,
          -3.0910382116121973,
          -3.457453809482078,
          -7,
          -4.031059878820723,
          -7,
          -4.596816935915591,
          -4.123546765923394,
          -3.697607078592231,
          -3.725533909439875,
          -7,
          -4.597097070985185,
          -4.121625492208471,
          -2.8883526261417334,
          -7,
          -4.8963553319839965,
          -4.205615719952685,
          -4.203353863290381,
          -4.295220625687153,
          -3.2392124047210666,
          -3.3715459208911014,
          -4.907782072798176,
          -3.6516871265575213,
          -4.904282657645628,
          -3.6116373406428166,
          -3.6728473065142366,
          -4.120793216482866,
          -2.2130732049854096,
          -3.4668511507782,
          -7,
          -7,
          -3.9968617684906733,
          -3.9439175024002817,
          -7,
          -7,
          -3.1895153784531334,
          -4.199217459919978,
          -3.1621005214870497,
          -7,
          -3.64340072427823,
          -2.005961638087528,
          -4.201353419532058,
          -3.414289004059428,
          -3.7106937137287193,
          -4.30031281793437,
          -4.128824522553188,
          -4.204027685271576,
          -3.6253503647640803,
          -3.9984228221379965,
          -3.9029651093763786,
          -3.5745626242687933,
          -3.9444936390440697,
          -3.8049934405673325,
          -7,
          -3.287403568562064,
          -3.582528699729632,
          -3.586344904524066,
          -4.897577611885395,
          -2.1288224143721775,
          -4.896520706103291,
          -2.684938712580087,
          -3.694901207906907,
          -3.1782600386264073,
          -3.36635153037522,
          -3.7227326146105697,
          -3.5255682376605524,
          -3.760066888531863,
          -7,
          -3.444642334143387,
          -2.233248271010596,
          -2.7075548783828673,
          -7,
          -4.896531728805878,
          -4.296127472928034,
          -4.294862862277967,
          -7,
          -4.199683885691952,
          -4.8971210359055855,
          -4.297098172131839,
          -2.882957513408003,
          -3.2241047564436607,
          -2.1929284346460203,
          -2.5728158133110224,
          -7,
          -4.053265078626461,
          -4.421960209240158,
          -4.2993438354972895,
          -7,
          -4.420142856623786,
          -4.90580667015885,
          -3.8619306724050175,
          -7,
          -7,
          -4.896289164699955,
          -7,
          -4.596860890622566,
          -7,
          -4.897181573574155,
          -4.125508374372735,
          -2.134937569307635,
          -7,
          -7,
          -7,
          -7,
          -3.3431404280146,
          -3.556806691474991,
          -7,
          -4.054695113032692,
          -2.9648512800439804,
          -3.3725329665551333,
          -3.2447048118717836,
          -2.973804948103079,
          -4.903892689512359,
          -4.896983418904129,
          -7,
          -2.190887275170587,
          -3.26143590310203,
          -2.2737798138314833,
          -4.598932695782928,
          -2.5073611639251636,
          -4.122314197968806,
          -4.420764137471791,
          -4.119937377051041,
          -2.56099245477133,
          -3.071596807492829,
          -3.038128173022914,
          -3.506780736959667,
          -3.7002098042781433,
          -4.300666121641863,
          -7,
          -4.596201102454085,
          -3.998836705660125,
          -3.478090632561218,
          -3.3769256694846685,
          -7,
          -4.119871473338342,
          -3.788021441365733,
          -3.994729470636526,
          -2.9782348791753277,
          -4.595452128776965,
          -2.8078055322706246,
          -3.008489956179166,
          -3.3698268023206466,
          -3.732726055601024,
          -3.3114223779423435,
          -1.8296101947465104,
          -3.2536660661600085,
          -4.897473136847621,
          -3.0806042203199797,
          -7,
          -4.423060098203508,
          -3.710741267979859,
          -3.9501267602586227,
          -2.958260192959905,
          -3.2033688982360395,
          -3.8852069687488022,
          -4.205664407371687,
          -2.9668454236549167,
          -3.2159557219790544,
          -2.0240841674513033,
          -2.628160093047439,
          -7,
          -7,
          -7,
          -3.3801181686358697,
          -3.3362964345490296,
          -4.898500299212667,
          -4.200434601526638,
          -3.9537865290254914,
          -7,
          -3.428134794028789,
          -3.857030798272624,
          -3.100741177063841,
          -4.8997439198220505,
          -4.202063077955703,
          -2.7107518348841255,
          -7,
          -2.868331669204607,
          -3.211925316063954,
          -2.5281314788427354,
          -4.899793153046949,
          -2.7583298903723983,
          -2.6678254243062796,
          -3.3344795275988064,
          -7,
          -3.7865439418445064,
          -4.897638085948279,
          -3.187919607508631,
          -3.2728828704665345,
          -3.377894003655977,
          -3.701314284718106,
          -4.59582126988028,
          -7,
          -2.9672358709363653,
          -4.5969817431335205,
          -4.598451252655753,
          -4.054804500220955,
          -4.3157919753496214,
          -4.421219911007847,
          -2.290401000434648,
          -7,
          -7,
          -2.2206011546095503,
          -2.1739519516906713,
          -4.141602052139997,
          -3.282864400052556,
          -3.3425464605295607,
          -2.1529583419251055,
          -3.787738714389369,
          -3.3613833738997507,
          -0.95391571228189,
          -2.6607264465669678,
          -3.0634760790072133,
          -3.0432297769069407,
          -2.969196179923055,
          -2.6931633469304495,
          -2.2203232226446072,
          -2.8671443585668537,
          -3.1438298559228537,
          -1.9578130755867933,
          -4.046709722256071,
          -2.8936120675847437,
          -4.613302581680263,
          -2.7685030703466915,
          -2.568444504925961,
          -2.2148751395299437,
          -3.703974054821806,
          -3.919561825762341,
          -3.479894689528358,
          -3.192966813152586,
          -4.906151802007568,
          -2.0448195975918297,
          -3.364874485205343,
          -3.28004693749461,
          -3.5822032661043184,
          -3.592398846115564,
          -3.863095647914823,
          -3.6775157047987577,
          -4.331801701423656,
          -2.7501858408226485,
          -3.5240482133438253,
          -2.276799916691148,
          -3.9973645380489646,
          -3.035937611771501,
          -1.1624663622221725,
          -3.226604958933488,
          -2.803115554890027,
          -3.2421489580346923,
          -4.304231942185673,
          -2.0907098018780537,
          -2.9400527111730854,
          -2.8804342467699544,
          -2.225578910053748,
          -2.389011691420147,
          -2.492137764338401,
          -4.300763908796391,
          -2.6567382459105713,
          -4.230285391495177,
          -4.420120848085703,
          -4.228189834000131,
          -3.5029815839207563,
          -2.7051183043865903,
          -4.900580126539175,
          -1.374014313167986,
          -1.8472781055600258,
          -2.515095200120832,
          -3.9436318943534263,
          -3.664798619194218,
          -4.597382512974542,
          -2.1068804851954357,
          -4.080940705963939,
          -3.1063569862135556,
          -1.4509450560382438,
          -2.926806228001346,
          -4.419663919061534,
          -1.600913671489379,
          -2.726772703727427,
          -1.8306118315036168,
          -2.828062666544521,
          -2.472470358889752,
          -3.4506134342821477,
          -7,
          -3.2590480800312243,
          -4.598834262189267,
          -1.9705540795833119,
          -2.6850159966339313,
          -3.6581598480282054,
          -2.095196476989915,
          -4.199546753633805,
          -2.572399436253159,
          -2.3503364723516253,
          -3.3680122364583953,
          -4.420313384988272,
          -4.896702544930834,
          -7,
          -7,
          -3.9674127581339027,
          -2.4590356178104207,
          -3.3875785621090952,
          -2.5423591104831424,
          -3.465993871030563,
          -2.8350072579387113,
          -1.3681036709887278,
          -3.4756442895302118,
          -3.825707333540593,
          -4.295677034017465,
          -2.1916334435642377,
          -3.817703061606812,
          -1.9197028858240717,
          -2.821508245755972,
          -3.668714720098945,
          -7,
          -2.843978894828009,
          -3.0722174492367933,
          -2.97845862997429,
          -2.838761511501365,
          -7,
          -2.990627916448299,
          -4.121017869041896,
          -3.7236307775414375,
          -3.6026784204385085,
          -3.1712423051291543,
          -7,
          -1.722413237979192,
          -4.294879380924228,
          -7,
          -2.704058018898603,
          -2.0784389533027587,
          -2.574713083213216,
          -7,
          -3.7047830444928618,
          -2.77367125082646,
          -4.055438403167174,
          -3.1768840607081366,
          -7,
          -3.384038274877458,
          -2.584540109305189,
          -7,
          -3.5751053343390393,
          -3.730922174525645,
          -3.322513078828487,
          -2.35013736535928,
          -4.199941576796646,
          -3.7894234092048125,
          -3.578797423889578,
          -7,
          -3.4726210327460354,
          -2.8161868675127377,
          -2.8513463849849727,
          -4.419713488826743,
          -3.0547725984703322,
          -3.1788331173591167,
          -4.302974532353225,
          -2.438485502098389,
          -4.199936095598896,
          -4.295451639247148,
          -2.3993945580839453,
          -3.490396121091794,
          -1.8450460753738236,
          -3.176739535862114,
          -3.22451720694511,
          -4.601810200179028,
          -4.598270573796811,
          -3.2875370837896747,
          -4.5979254325604595,
          -2.6495834057326055,
          -4.053248614045589,
          -3.197642657119169,
          -2.840208966400272,
          -3.559509455037446,
          -7,
          -2.735222746605809,
          -2.1521137507096944,
          -2.707871554701903,
          -7,
          -1.9518613306048493,
          -3.630882647692306,
          -3.50792330349193,
          -3.9985807979185166,
          -1.7150023967551769,
          -2.7381713171231103,
          -2.8004661324505897,
          -3.670747763693703,
          -7,
          -4.896438026915203,
          -3.4865549806566514,
          -3.7334005839920277,
          -3.7862434657429205,
          -3.830134036038414,
          -1.2414399903315696,
          -3.5831285727428983,
          -0.9834106257004745,
          -1.4384512519152548,
          -3.2649908769069174,
          -3.095577023862968,
          -7,
          -3.398271032027867,
          -7,
          -3.1612681529456736,
          -2.3826085158714565,
          -3.351493360537302,
          -7,
          -3.6248572269753003,
          -4.201997619583105,
          -1.9689475312906737,
          -4.422874242967947,
          -7,
          -7,
          -4.0513951081085375,
          -4.897203585179786,
          -4.595859818764418,
          -4.198486634155306,
          -2.3226958811209695,
          -4.204266532314703,
          -3.758679442661326,
          -4.898730665071061,
          -2.82614071641586,
          -4.420456357165732,
          -3.7842990115765605,
          -4.5988452003570295,
          -3.7526958379880133,
          -3.1142988325370893,
          -3.5048132696049445,
          -2.861744637352507,
          -3.124943906749929,
          -3.6628522332647964,
          -3.6689064071901316,
          -7,
          -3.4972965474240967,
          -3.8196700381046775,
          -7,
          -2.6391410942742572,
          -3.5985880805539687,
          -3.695344843418741,
          -2.976808337338066,
          -3.586222828744241,
          -3.0620606254686873,
          -4.897137547015729,
          -4.198431635107324,
          -3.7922300113372116,
          -4.896818220919975,
          -3.0036233830206034,
          -3.3974674564260865,
          -4.599435452688469,
          -4.595209536956467,
          -4.18613667169178,
          -7,
          -7,
          -7,
          -4.184705623215826,
          -7,
          -4.496929648073215,
          -7,
          -3.7115541682501694,
          -2.8978606679033883,
          -3.504396712847337,
          -7,
          -7,
          -1.8531491656109444,
          -2.8006323498354555,
          -4.495266744387811,
          -7,
          -7,
          -4.184052292391864,
          -7,
          -1.7198329870017677,
          -4.098989639401177,
          -7,
          -2.8849211734753255,
          -2.338098971306541,
          -3.590089133690572,
          -4.186476030554059,
          -7,
          -3.6606622359058285,
          -4.496334505996817,
          -4.1874925189804255,
          -3.0051216062891455,
          -4.192316504702737,
          -4.484669899885333,
          -7,
          -4.011570443597278,
          -4.20382130251655,
          -3.7082650587622488,
          -2.2813789526405572,
          -4.182371848635196,
          -4.031421930538409,
          -3.408593251333042,
          -2.504439732505021,
          -3.8835194856567163,
          -4.012232445789756,
          -2.9618954736678504,
          -7,
          -3.2567810237713575,
          -7,
          -7,
          -3.3742113633648128,
          -3.0635001547221736,
          -3.0535585922132595,
          -2.3432052719514065,
          -4.038129830486775,
          -2.7521975657445132,
          -3.44442916986232,
          -7,
          -4.491655793718779,
          -3.5605707855599604,
          -3.8900995107287524,
          -7,
          -4.49352775559078,
          -7,
          -4.013721778051063,
          -3.225735611624981,
          -2.537151705229521,
          -4.00814576996069,
          -7,
          -3.1495537774495497,
          -7,
          -3.594331152979141,
          -4.534863410548415,
          -7,
          -4.036881628034608,
          -2.9452556043235774,
          -4.48447067570193,
          -2.7510493864592833,
          -7,
          -7,
          -2.4994074638844803,
          -3.9034833881331887,
          -7,
          -7,
          -3.2136903779841535,
          -4.491067394653292,
          -3.0876368391806537,
          -2.8801377283430174,
          -3.9003124969837266,
          -7,
          -1.6723016903916712,
          -2.790363365974914,
          -1.9096308571332221,
          -3.6388884247050757,
          -4.482530584131741,
          -3.610300763470534,
          -2.2772362929775247,
          -3.0782822381018162,
          -3.1860826583241453,
          -3.4856930402936617,
          -2.7917400551248437,
          -4.190779770928018,
          -7,
          -4.48297357411599,
          -2.669195082125619,
          -4.006580127619797,
          -3.555604924999254,
          -4.497758718287268,
          -2.9654686736239295,
          -2.5218768249046994,
          -7,
          -4.185782890670649,
          -2.975891136401793,
          -3.8950908969343994,
          -2.035287051820646,
          -3.2371526076727806,
          -7,
          -3.7287054046396793,
          -4.524772477368776,
          -3.420577719678888,
          -3.4514654440388877,
          -3.289889338077369,
          -1.5440151493399303,
          -7,
          -3.8679504234198077,
          -7,
          -3.853826602306928,
          -3.8932484033466537,
          -3.91324412938236,
          -2.907372966708177,
          -7,
          -7,
          -2.239942415275768,
          -3.476159478508521,
          -7,
          -7,
          -3.612653467322403,
          -7,
          -7,
          -7,
          -4.007676669612222,
          -3.48274499054841,
          -2.485871928296167,
          -3.4339543652562603,
          -2.6062630018624766,
          -3.42739871208322,
          -3.168371192294914,
          -3.3188977146274867,
          -7,
          -7,
          -3.349818497045375,
          -4.139343756152375,
          -3.183637533042316,
          -7,
          -7,
          -4.491403720299015,
          -2.73075536687231,
          -4.18231477033948,
          -4.482444791918265,
          -4.202529183501342,
          -3.418384164038612,
          -4.484925911049592,
          -3.8959609362542365,
          -4.1993848820922866,
          -4.034307529596563,
          -7,
          -4.5027138235713355,
          -3.4947573623066033,
          -7,
          -4.48926924575802,
          -2.4321309691020256,
          -4.186928096934767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.657579387241831,
          -7,
          -3.991571601160679,
          -7,
          -2.4720991694607215,
          -1.940362892721548,
          -3.2370268123180517,
          -2.4005947059556028,
          -2.488964478096017,
          -3.6527020902669305,
          -3.093960178079215,
          -3.3231007756543756,
          -2.933569361832112,
          -3.8937478954738043,
          -4.499632105153693,
          -3.1360352997371708,
          -4.488818542833805,
          -3.693802297126462,
          -7,
          -2.1778023535384485,
          -4.027254446759137,
          -2.4980498652488414,
          -7,
          -3.7184186418296554,
          -7,
          -7,
          -7,
          -4.19867083023323,
          -7,
          -7,
          -3.508590926001464,
          -3.8087914452522758,
          -7,
          -3.5101426994025733,
          -2.7909140607501293,
          -2.7483055150312383,
          -7,
          -4.482902154674314,
          -4.487265674419202,
          -4.484000713927198,
          -7,
          -4.187436109773708,
          -7,
          -7,
          -2.978317496746751,
          -3.0094380184660547,
          -3.295786940251609,
          -2.5552255565887765,
          -7,
          -4.186744501716686,
          -3.586249638866042,
          -3.2909662309839347,
          -7,
          -7,
          -4.506545618777679,
          -4.500565776862321,
          -7,
          -7,
          -7,
          -7,
          -4.486444648100676,
          -7,
          -7,
          -7,
          -2.583808065111376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.189392045912569,
          -7,
          -7,
          -4.5413545507544155,
          -3.599651131814264,
          -2.9993722322513157,
          -2.8369090241882997,
          -2.241532645817008,
          -7,
          -4.181543478219937,
          -2.2766438601314345,
          -3.505163549810412,
          -2.6751942746956026,
          -7,
          -3.096899322550773,
          -4.493165169463191,
          -4.486458816884649,
          -4.487067637716316,
          -3.8214370998255576,
          -2.6447831309233574,
          -2.384510219368008,
          -3.3152539527018177,
          -3.335917852253625,
          -3.0667813125922603,
          -3.7128039778168795,
          -7,
          -4.496943478887435,
          -3.5618696012378313,
          -4.513909787827383,
          -7,
          -3.787814567063023,
          -7,
          -7,
          -4.500524627760176,
          -7,
          -3.2056238349015698,
          -3.1529109077659996,
          -3.650820767065712,
          -4.037253808313048,
          -7,
          -2.0456998974532627,
          -2.996580792472938,
          -7,
          -3.148002970984834,
          -7,
          -4.191297279429712,
          -3.9271521342774345,
          -4.503150341603528,
          -2.857421848243517,
          -3.5661624108509122,
          -4.557158182475332,
          -4.503708989891708,
          -4.045362102653348,
          -3.5084623812733606,
          -1.3745518607680296,
          -2.6569508479447186,
          -7,
          -7,
          -7,
          -3.472622387120777,
          -3.0004851169060904,
          -3.8858416187005536,
          -7,
          -3.365835495343365,
          -7,
          -4.20489288154292,
          -4.48807103570631,
          -3.4293546881848322,
          -7,
          -4.017409008536211,
          -3.1173860382869454,
          -1.9006401839826004,
          -2.802756626747439,
          -2.632850802194602,
          -3.1171319781420097,
          -7,
          -2.6267629209386185,
          -3.42035058816188,
          -3.4089180208467798,
          -7,
          -3.8912725631953657,
          -7,
          -3.031603901657714,
          -3.954664535067499,
          -3.7015679850559273,
          -3.8069393250886248,
          -4.483758413788249,
          -7,
          -3.5109871220675624,
          -7,
          -7,
          -7,
          -7,
          -4.487633217456876,
          -2.441617301918038,
          -7,
          -7,
          -3.3220124385824006,
          -3.4724590190584643,
          -3.8414041670516013,
          -3.0556840649194132,
          -3.869946063866585,
          -2.3216303542229584,
          -2.358098418677797,
          -2.011682253769414,
          -2.726476108692137,
          -2.485821206948855,
          -4.053219342138294,
          -3.1677168617280866,
          -3.346781030447889,
          -3.49899264875909,
          -2.6977548360067924,
          -4.1079219001862795,
          -2.231772816968974,
          -2.8639480396224033,
          -4.308532400503109,
          -3.623705748999227,
          -4.226587017939536,
          -3.8045784042024806,
          -3.4835427242299106,
          -2.3630373261769373,
          -2.5826365539208287,
          -4.409358189930165,
          -3.2645241259165214,
          -3.3333512978152764,
          -7,
          -2.180051080456895,
          -4.044755286295232,
          -3.370457012527794,
          -3.6282271039209024,
          -3.481986946998056,
          -4.2024474467730135,
          -3.5822493606940435,
          -3.573602552304502,
          -3.3339545320608925,
          -3.110801275118248,
          -2.282499252841805,
          -7,
          -2.7902624576059285,
          -3.0062847512451514,
          -2.349050573178034,
          -2.448072442801128,
          -2.8825755074974517,
          -2.581318327670128,
          -1.3994450492106825,
          -3.7544247892772584,
          -7,
          -3.9150378351369337,
          -2.3690287824635057,
          -2.656479275172621,
          -7,
          -2.1131439144706006,
          -1.9802034192957039,
          -7,
          -2.717839278097978,
          -3.074857057384218,
          -4.237857784350719,
          -4.4933186082321015,
          -2.82959643786932,
          -1.4842765317911912,
          -3.3845665101372733,
          -4.486600479306201,
          -4.240836187180583,
          -7,
          -2.897015436856953,
          -4.5557472140872095,
          -2.860354858662413,
          -3.7187818554344205,
          -4.064888326512362,
          -7,
          -3.5928341520800386,
          -2.741518756968152,
          -3.2753785478707846,
          -3.4514794051248616,
          -1.8336878797815284,
          -1.7608630121665352,
          -3.2590480800312243,
          -7,
          -7,
          -2.238680703786003,
          -2.9587701447437897,
          -2.0264278180492825,
          -3.237514472958049,
          -7,
          -3.0236639181977933,
          -1.7562256821745161,
          -3.4407079732485175,
          -4.485295438726089,
          -7,
          -7,
          -7,
          -3.846374229730093,
          -1.6830957807759497,
          -3.3616469040394903,
          -2.10320901727473,
          -7,
          -3.724849087629386,
          -3.223688497483371,
          -2.8187643531484383,
          -3.80546007741919,
          -4.486104458535134,
          -3.436333932581096,
          -7,
          -3.0165920641827304,
          -2.840797177614897,
          -4.189083059462634,
          -7,
          -2.8093385666210025,
          -4.505651841230991,
          -2.981428467644333,
          -7,
          -7,
          -3.3510349484072637,
          -7,
          -7,
          -4.5017847633885,
          -3.1237863286153718,
          -7,
          -3.2422604784110143,
          -7,
          -7,
          -3.2500069070898077,
          -2.0931871771753436,
          -2.148891215845606,
          -7,
          -7,
          -2.7998149290549836,
          -7,
          -3.135781751822861,
          -7,
          -3.2946866242794433,
          -2.2395294860605826,
          -7,
          -7,
          -4.509941404158226,
          -3.1759395741789724,
          -2.609380944250707,
          -4.489156613869192,
          -3.801650631931656,
          -3.3185085369309166,
          -4.189349924339198,
          -3.2469360469440005,
          -2.1012174708869567,
          -3.6174006916297037,
          -7,
          -2.759107523483687,
          -2.9641810319735047,
          -7,
          -2.878284021346949,
          -7,
          -4.4855226841924045,
          -3.7994209669118066,
          -3.8070476955151142,
          -2.2351909578380664,
          -2.8618661613005787,
          -2.8852198251151067,
          -4.198038188846813,
          -4.490070903572991,
          -4.568143031657702,
          -7,
          -3.440509463541816,
          -7,
          -3.2048657855557696,
          -2.566196905821079,
          -4.196286748808876,
          -4.482716409141232,
          -2.596971482238792,
          -1.9284288922720902,
          -3.5323721335678773,
          -3.906375451942542,
          -3.1556396337597765,
          -4.039387677306854,
          -4.247752382497469,
          -3.7972121249212494,
          -3.0905786601228313,
          -3.157444175325761,
          -7,
          -4.194278399010635,
          -7,
          -7,
          -3.4922425742591727,
          -4.516098877052355,
          -3.2133919170914584,
          -2.7817819605838476,
          -2.9286279602268506,
          -3.3594560201209864,
          -3.948706308904852,
          -3.027690411734007,
          -3.3916407034923877,
          -2.934179390755185,
          -7,
          -3.5011414552877826,
          -7,
          -3.0727441557987976,
          -3.23724203998423,
          -3.842397032423771,
          -7,
          -3.3872391936833566,
          -3.795337679341311,
          -2.703514281036142,
          -4.014702506699758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.485409076322577,
          -3.4454245571564948,
          -4.50018156686907,
          -4.504389297186282,
          -7,
          -7,
          -3.7073714338087607,
          -3.642393851544235,
          -7,
          -4.489184774579998,
          -2.846431244791793,
          -3.6542453192131115,
          -2.939946918317287,
          -3.7077404542737713,
          -7,
          -4.18957452553725,
          -7,
          -3.6199537588433968,
          -3.7901161997663317,
          -7,
          -3.0168492772142694,
          -3.8892456608929797,
          -3.791802891569532,
          -3.567979955556931,
          -4.212600387588411,
          -4.210719715681002,
          -4.007292482997014,
          -7,
          -3.7295022630813444,
          -4.48364434340033,
          -4.0600175425316,
          -3.3528713279019153,
          -4.493053543571646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9818186071706636,
          -3.09377178149873,
          -7,
          -7,
          -7,
          -7,
          -3.6024127123210015,
          -4.220631019448092,
          -7,
          -7,
          -7,
          -1.57377942980712,
          -7,
          -4.345158000269438,
          -7,
          -7,
          -7,
          -3.864601811346698,
          -7,
          -7,
          -7,
          -2.9034517483472246,
          -7,
          -7,
          -4.390681989145567,
          -7,
          -7,
          -7,
          -7,
          -3.367169488534681,
          -7,
          -2.925569909543376,
          -7,
          -7,
          -7,
          -3.8870136942873503,
          -7,
          -3.08278537031645,
          -3.3939260065858368,
          -2.905256048748451,
          -3.6724673130680823,
          -3.035029282202368,
          -7,
          -7,
          -7,
          -7,
          -3.4949729430284626,
          -7,
          -7,
          -3.5147469246343817,
          -7,
          -7,
          -7,
          -2.4483971034577676,
          -2.6954816764901977,
          -2.3961993470957363,
          -7,
          -7,
          -7,
          -4.1546065392836224,
          -7,
          -7,
          -7,
          -7,
          -3.75815462196739,
          -2.8179429348797176,
          -7,
          -3.478854967528663,
          -4.825442346705323,
          -7,
          -7,
          -7,
          -7,
          -3.89470365260923,
          -7,
          -2.7351995484223135,
          -7,
          -7,
          -7,
          -7,
          -3.582404298019028,
          -3.3326404103874627,
          -7,
          -3.3796195458659186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4367985102318035,
          -2.502532161581729,
          -7,
          -3.381205361238583,
          -7,
          -7,
          -7,
          -3.20960436635488,
          -7,
          -7,
          -7,
          -3.6620964454179235,
          -3.781863037624198,
          -7,
          -7,
          -7,
          -7,
          -3.009645618907136,
          -7,
          -7,
          -1.2263655314931408,
          -1.0019077918180315,
          -2.297998259220199,
          -7,
          -2.5173106692196443,
          -3.911743377855932,
          -7,
          -7,
          -3.1095785469043866,
          -3.9952972785716847,
          -7,
          -7,
          -3.6398847419163043,
          -2.9439888750737717,
          -7,
          -3.352096723073173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9620139876491844,
          -3.2771506139637965,
          -3.209306455462485,
          -7,
          -7,
          -7,
          -7,
          -2.9965116721541785,
          -3.2314695904306814,
          -7,
          -3.846708145456007,
          -7,
          -7,
          -7,
          -3.5456163329131365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.301897717195208,
          -7,
          -7,
          -7,
          -3.8955882756662628,
          -3.3053513694466234,
          -7,
          -3.9476083114045495,
          -7,
          -7,
          -7,
          -7,
          -3.0265332645232967,
          -7,
          -7,
          -3.63823959067475,
          -7,
          -4.287712175443486,
          -7,
          -7,
          -3.1688228100135096,
          -7,
          -7,
          -7,
          -7,
          -2.950202531637585,
          -7,
          -2.2534591643398376,
          -2.9222062774390163,
          -2.9874428049358013,
          -3.184596802974997,
          -7,
          -7,
          -7,
          -7,
          -3.3609718837259357,
          -7,
          -7,
          -4.086181804649749,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7670816213633223,
          -7,
          -7,
          -7,
          -7,
          -3.8720979742742268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7570162347313003,
          -7,
          -2.085290578230065,
          -2.0698556251176052,
          -3.139249217571607,
          -3.840764567859676,
          -5.412210146909904,
          -7,
          -7,
          -3.0860037056183818,
          -7,
          -7,
          -7,
          -2.7863964613723042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.342077081830135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7102020146553847,
          -7,
          -7,
          -2.7208587017418626,
          -7,
          -7,
          -7,
          -3.622731965164719,
          -7,
          -4.538083367813495,
          -3.139249217571607,
          -4.713700499337772,
          -7,
          -7,
          -7,
          -3.2271150825891253,
          -3.4633703272924072,
          -3.6742639196922253,
          -3.263951517653659,
          -7,
          -7,
          -7,
          -2.9444826721501687,
          -2.1583624920952498,
          -2.4206432497919548,
          -2.9995654882259823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3419288837458097,
          -7,
          -7,
          -7,
          -4.655788109253206,
          -3.064083435963596,
          -7,
          -4.292898175018025,
          -7,
          -7,
          -7,
          -3.3428173146357327,
          -7,
          -7,
          -3.807535028068853,
          -3.04941186087108,
          -3.5630061870617937,
          -7,
          -5.351487734879554,
          -3.888179493918325,
          -7,
          -7,
          -7,
          -3.1756567472816637,
          -7,
          -2.7431176252147416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.122625396909397,
          -7,
          -2.89707700320942,
          -7,
          -7,
          -4.256819935036449,
          -3.6936214394729348,
          -4.875477407595086,
          -7,
          -3.335992499288236,
          -3.3205741358813006,
          -3.4961682741749778,
          -7,
          -2.393867559040913,
          -7,
          -2.4921781467062147,
          -2.4602142372606046,
          -3.268499966587276,
          -3.382557321908786,
          -7,
          -7,
          -7,
          -2.3070679506612985,
          -3.110589710299249,
          -7,
          -2.6724673130680823,
          -7,
          -3.9052155343138026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4156076226641474,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.192818257048295,
          -7,
          -1.0324520237811379,
          -7,
          -3.766025974282846,
          -2.8219500053077473,
          -7,
          -4.334614571179395,
          -7,
          -4.634157225354798,
          -2.6055205234374688,
          -2.530583859645118,
          -3.8438087552360534,
          -4.185924437664244,
          -3.2678032983436163,
          -7,
          -4.441899276742038,
          -7,
          -2.946452265013073,
          -3.8140477209955996,
          -4.378434242062079,
          -3.392169149489736,
          -7,
          -3.2142608667775416,
          -4.44695352638232,
          -7,
          -2.7028611705729295,
          -2.5353785228186467,
          -7,
          -4.0537888751837405,
          -7,
          -7,
          -3.7863254343900703,
          -4.22533513181854,
          -2.60151678365001,
          -3.85076872692888,
          -3.7379238051278323,
          -4.483836819803626,
          -7,
          -7,
          -7,
          -4.598834262189267,
          -7,
          -7,
          -4.04190070985669,
          -4.112241022105839,
          -3.592398846115564,
          -3.986315982401342,
          -7,
          -7,
          -4.31011953734681,
          -7,
          -7,
          -2.893206753059848,
          -7,
          -7,
          -7,
          -3.2424244938652858,
          -2.931966114728173,
          -4.192149125018534,
          -7,
          -7,
          -7,
          -7,
          -3.0610753236297916,
          -2.9894498176666917,
          -7,
          -7,
          -4.79927850295274,
          -2.944383957640844,
          -7,
          -7,
          -4.135895575564019,
          -7,
          -2.7869287937967515,
          -7,
          -7,
          -3.1957613200360613,
          -7,
          -7,
          -3.3226327116922234,
          -1.7192323137649976,
          -7,
          -7,
          -7,
          -7,
          -4.599653861243402,
          -3.891345773877661,
          -4.789975345977952,
          -7,
          -7,
          -3.2520273296527864,
          -7,
          -3.2043913319193,
          -7,
          -2.9806849743633146,
          -3.65566656923067,
          -7,
          -7,
          -3.4320066872695985,
          -2.367355921026019,
          -7,
          -7,
          -7,
          -3.2065560440990297,
          -7,
          -3.335858911319818,
          -3.697795823376305,
          -7,
          -7,
          -2.973589623427257,
          -2.6477496180738416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1350975152303273,
          -2.655275674339117,
          -7,
          -2.9786369483844743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.917899189424106,
          -7,
          -7,
          -3.034427905025403,
          -3.9344580498777164,
          -3.647089428716555,
          -7,
          -4.311796229182407,
          -7,
          -2.715471538902324,
          -2.929674317948588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1586639808139894,
          -7,
          -7,
          -7,
          -7,
          -4.5500448095649055,
          -3.210140091523844,
          -3.1870975005834774,
          -7,
          -7,
          -7,
          -3.3702354372831773,
          -7,
          -7,
          -7,
          -2.470872305442661,
          -7,
          -4.4002097701620615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.757206173278786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.437433443797971,
          -7,
          -4.117834518543748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.502413462710515,
          -2.4291060083326967,
          -2.4173055832445254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2844307338445193,
          -7,
          -7,
          -3.1505484752433546,
          -7,
          -4.339992729686746,
          -4.340121744752816,
          -3.6206267580510696,
          -3.7722287734114994,
          -3.5487971072480162,
          -3.451419954806697,
          -2.76401274186685,
          -2.5813718616043118,
          -3.5334283871579544,
          -7,
          -4.340949506018236,
          -2.5095342818699766,
          -2.502507448197351,
          -2.632620223899974,
          -4.1665189175409445,
          -7,
          -3.9427271453659487,
          -4.46520433758063,
          -2.557499181619563,
          -3.485125843470917,
          -7,
          -2.7820595190929014,
          -1.807053650433598,
          -3.866425188468594,
          -4.040503445776426,
          -4.0968901590922195,
          -3.47278081981647,
          -3.7161556147759103,
          -3.829956579636221,
          -2.7311626256773534,
          -3.440259515107366,
          -4.465521644855828,
          -4.9427321004917895,
          -4.098930359493644,
          -3.2681097298084785,
          -3.5281005197417086,
          -3.0095619469467327,
          -4.465090248626674,
          -4.172948167029386,
          -4.040696268880752,
          -2.2816739211328607,
          -3.738740931267598,
          -3.051464211738796,
          -3.3590957107594277,
          -3.322637630953044,
          -2.7091317439789475,
          -4.244687712313355,
          -3.991339312324231,
          -3.6129234633249223,
          -3.082465665425615,
          -3.7723559402990166,
          -1.4066223881833373,
          -3.674653294607066,
          -2.464702931034069,
          -3.0660648974596776,
          -4.643092259961168,
          -3.439653361113439,
          -3.3510422057394447,
          -4.343226368551779,
          -4.343620273078088,
          -4.246759473024701,
          -7,
          -3.798586527286706,
          -2.8043362399890293,
          -2.5448603970897627,
          -3.8288283871565176,
          -7,
          -3.0539483984211167,
          -4.641126932803509,
          -2.9565309447935024,
          -3.244324706895344,
          -4.243717497987774,
          -3.748861243039218,
          -2.388176642312316,
          -4.94259333559316,
          -2.945795102198527,
          -7,
          -4.466299058751786,
          -2.2857011143608963,
          -3.5519035743682226,
          -3.797465397090131,
          -4.6409036004935205,
          -2.998448247407814,
          -3.990580555633907,
          -2.7129639995853343,
          -3.0019355292147516,
          -3.430114163564744,
          -4.6472509010376575,
          -1.741856805260137,
          -2.8518070711361267,
          -2.6589380136616834,
          -4.16428344244365,
          -4.941918703252601,
          -3.126238053970879,
          -3.3048624642031603,
          -2.569242196573409,
          -2.262852075825894,
          -4.943108524727579,
          -2.49865185631621,
          -7,
          -4.465010864717407,
          -4.641032650947389,
          -2.4012689989328777,
          -4.641305515998657,
          -3.3602437635106135,
          -3.691827770244213,
          -2.7312214971040447,
          -1.8320297478103873,
          -4.2455126678141495,
          -4.165219587753745,
          -3.366245959064888,
          -3.6246650845838033,
          -2.3165851251386878,
          -3.5836028559611703,
          -7,
          -3.2873732587262765,
          -3.026831167505327,
          -2.8227835078967374,
          -3.547454710572725,
          -2.8581231914869507,
          -2.2849265430389543,
          -7,
          -3.630534193424769,
          -3.9446109674771273,
          -3.0834042439258478,
          -3.6037986196117022,
          -3.4218119281070436,
          -3.2431287160911935,
          -4.039523174872934,
          -4.041693625905536,
          -1.923718753317517,
          -3.263838883574003,
          -7,
          -3.619788758288394,
          -3.318339014987736,
          -7,
          -7,
          -7,
          -4.097569639431371,
          -7,
          -1.505915105333337,
          -2.5098742850047193,
          -2.5657099692891188,
          -2.788780317525239,
          -4.09977433523932,
          -3.470695247147661,
          -4.942271031757259,
          -4.642202281545473,
          -3.3901055464932925,
          -3.2145833698026913,
          -2.874064137571404,
          -7,
          -4.341404845125625,
          -3.5298004013227113,
          -2.070948234903138,
          -7,
          -4.038729417174369,
          -3.1291672607368097,
          -3.344863649797128,
          -3.988430125810669,
          -3.183402394973477,
          -4.471081359869327,
          -4.049033796209662,
          -3.317737880642894,
          -4.647993878193836,
          -2.7956268447938633,
          -3.3351250742114362,
          -3.621853565463195,
          -1.9992580337565171,
          -3.424990468728342,
          -7,
          -4.941779678173749,
          -4.100040513510458,
          -4.244583864390973,
          -4.040117542542043,
          -4.465120013852074,
          -2.758182016200969,
          -4.040419367879847,
          -3.457435881002328,
          -7,
          -3.4087250711423263,
          -1.6012965834315163,
          -3.6442859194512525,
          -3.003128984279141,
          -3.1319823469987957,
          -3.8332795434419458,
          -3.4888423524253844,
          -3.743646929950466,
          -3.357612376480327,
          -3.8325433011792596,
          -3.5497583267385253,
          -2.367053946493985,
          -3.6651809221500327,
          -3.0585493860490587,
          -7,
          -3.0470710104770475,
          -3.0797042363088907,
          -3.2378348616764314,
          -7,
          -2.893955407756366,
          -4.942037832194369,
          -3.3139281203953006,
          -4.342348647043824,
          -3.9064770729424234,
          -4.244534404270211,
          -4.643210786071658,
          -2.970083775646671,
          -3.1869027780703103,
          -7,
          -2.5859439053216287,
          -2.3145906949270607,
          -2.491287464977637,
          -7,
          -4.3399579883119195,
          -3.563129908519703,
          -4.243420059770134,
          -7,
          -4.6429588794097905,
          -7,
          -3.830381365856538,
          -2.339368616002117,
          -2.4061503095447603,
          -2.837077956461961,
          -2.8024756669227284,
          -4.941819404166313,
          -3.9436676056327267,
          -3.6654328603308586,
          -3.7158608480887176,
          -4.340057242010565,
          -4.942727145365949,
          -3.996088262193923,
          -3.6470502748685387,
          -4.470988381529795,
          -7,
          -7,
          -7,
          -4.165081026825811,
          -7,
          -7,
          -3.9941997995697123,
          -1.9970857105306132,
          -7,
          -7,
          -7,
          -4.642162684587794,
          -3.272463769669973,
          -3.6657537463191843,
          -7,
          -3.7987887139512493,
          -3.883973560827824,
          -3.115948067174583,
          -3.070706396887966,
          -2.449777503300706,
          -4.2496727637035345,
          -4.465313438107631,
          -7,
          -1.9478840526363634,
          -2.725662258356222,
          -2.1090686261873266,
          -4.041989429902784,
          -2.7366893243538843,
          -4.343551365571408,
          -7,
          -4.165298745583048,
          -2.5304116602699116,
          -2.9162188771060786,
          -2.2994462066840407,
          -2.561290725973153,
          -2.8073496539487848,
          -3.0174163713523345,
          -3.9448230650732317,
          -3.7964306017613634,
          -3.6457611226334046,
          -2.779334958513331,
          -2.837879683009075,
          -7,
          -3.3867911712924914,
          -3.992740017742474,
          -4.466135768755128,
          -3.6258365028509325,
          -4.640973093964463,
          -2.5502626059169518,
          -2.79702595590107,
          -3.742405968608249,
          -3.9117724037085435,
          -3.7435195636811023,
          -2.3073699418672065,
          -1.805133287613335,
          -4.465754519833878,
          -3.1689719167337276,
          -4.6415137702896985,
          -3.282153987685595,
          -3.286193609993445,
          -3.772961916786803,
          -2.628511537066202,
          -2.4169266341952547,
          -3.2876291344721302,
          -3.5341726044491257,
          -3.293040522188929,
          -3.2346875960305317,
          -2.2679092957043285,
          -2.403764919833581,
          -4.6410227253507275,
          -4.640695053335942,
          -4.941769746107795,
          -3.2186433339985294,
          -2.4027463568008933,
          -4.040661665909112,
          -4.245665630974936,
          -3.0378927084593257,
          -4.466195154039558,
          -3.569759062947957,
          -4.098693158915045,
          -2.1005526734054927,
          -4.467800425116173,
          -3.354704236683152,
          -2.4491908282001305,
          -4.342851828039207,
          -2.7638008538551375,
          -2.674219902021187,
          -2.530911767785156,
          -4.944985767425724,
          -2.0691720545784595,
          -2.867601703139016,
          -2.8370269714709435,
          -7,
          -4.100572381131625,
          -3.480368786890804,
          -2.568742383741263,
          -2.7608484390395938,
          -3.2659022043017565,
          -3.193798082161599,
          -4.641305515998657,
          -7,
          -2.1680995417304274,
          -4.466249583417726,
          -4.4675735776765055,
          -3.9450547742554396,
          -3.4295290448490627,
          -4.341607614304764,
          -1.5622755306190403,
          -4.464703114940226,
          -4.464976129693729,
          -2.0976120062438603,
          -2.7161375485264965,
          -4.0697790608815145,
          -3.0787905863221194,
          -3.356245348290053,
          -2.062991369166478,
          -3.259456038251947,
          -2.5551880282267496,
          -1.401301031097911,
          -2.5063330525119167,
          -3.703706840716946,
          -3.2101157547109618,
          -2.912756426732738,
          -2.735152816675169,
          -1.9190176999342903,
          -3.381448022513302,
          -2.9119172679839167,
          -1.709296921685804,
          -4.291355528330632,
          -2.6587743208443566,
          -4.958119328082719,
          -2.6983874884158876,
          -2.966861870621276,
          -2.438506225611244,
          -2.5371629618741345,
          -3.712809987468449,
          -3.187405934399452,
          -2.0532640920024914,
          -4.47357941507252,
          -1.7797251329891868,
          -2.960003418425458,
          -2.853714388484917,
          -3.2625435942161194,
          -3.2549718659011795,
          -3.907826497930791,
          -3.4775597146073878,
          -3.7204028076946365,
          -2.503234411866825,
          -2.944635805429082,
          -1.98598050263825,
          -3.5652130253955923,
          -2.564375831288106,
          -1.937665082874569,
          -2.988894392169021,
          -2.0679544077499283,
          -2.624600317850178,
          -2.8356759403257485,
          -1.7180762856263596,
          -3.4177319539974764,
          -3.7788262946792774,
          -2.7793002285795017,
          -1.7979145401958574,
          -1.5104049697509885,
          -7,
          -1.1213559191731346,
          -2.458110687811594,
          -7,
          -3.065934324651937,
          -3.2305707425619747,
          -3.816084982682152,
          -3.7994390177641506,
          -2.0983757093395856,
          -1.4722734507089599,
          -2.5178660540770967,
          -4.341246520447747,
          -2.921038214613296,
          -4.165550964917679,
          -2.0711876357354817,
          -4.968763048197249,
          -3.150599766818814,
          -2.4090144205749637,
          -3.67258480109312,
          -4.641255916921171,
          -2.772043492449563,
          -2.8439050429734927,
          -2.4917169691818404,
          -3.0447595861672774,
          -1.8852044228885487,
          -2.6280388337138167,
          -1.9705540795833119,
          -2.238680703786003,
          -4.04190070985669,
          -7,
          -2.4144285369048415,
          -2.8558891544742817,
          -2.7759546315332426,
          -4.642835342363899,
          -2.5347278137414437,
          -2.7580077906876372,
          -3.5369532983211798,
          -4.097723243076378,
          -7,
          -4.941819404166313,
          -7,
          -3.7342113386428104,
          -2.0251805414512707,
          -3.0207413920716344,
          -1.928715713074086,
          -4.642009212267617,
          -3.471780506250551,
          -2.2695693006163253,
          -3.0424831440096773,
          -3.06245500039278,
          -3.7969062206302726,
          -2.577096087297863,
          -3.9009825016883535,
          -2.050429939315604,
          -2.4599012485521397,
          -3.7139695888931765,
          -4.473190039859534,
          -2.473924693416157,
          -3.4874163364389537,
          -2.5431114010135016,
          -4.468667270826408,
          -4.099157555211003,
          -2.711727577657698,
          -7,
          -3.798803504402391,
          -3.335526392136679,
          -2.729246771628713,
          -7,
          -2.6683231839204535,
          -7,
          -4.465754519833878,
          -3.1571338189519675,
          -1.668933935404147,
          -2.3832816661680436,
          -4.941968344282969,
          -3.6521350932027876,
          -2.313958872681808,
          -7,
          -2.8004024124640825,
          -7,
          -2.9784014307637876,
          -2.180523842173084,
          -7,
          -4.34087026785223,
          -3.696196156653132,
          -3.017362374468477,
          -3.1991212741882054,
          -3.9441420122234043,
          -2.882740385211145,
          -3.082254038925177,
          -4.0415111129593235,
          -2.906560310984251,
          -2.040214856216984,
          -3.548969417380984,
          -7,
          -2.6346315231555373,
          -2.648524247498229,
          -4.046582950842146,
          -2.067731459944934,
          -7,
          -4.465818910021945,
          -3.1638720742640283,
          -3.3936141954120003,
          -1.4715853537193864,
          -2.6826205370617333,
          -3.657701075470702,
          -3.7434754666528636,
          -7,
          -3.611663286550839,
          -3.1110696839689878,
          -3.204414716161362,
          -4.466600736296882,
          -2.9079045970364654,
          -2.436959672719197,
          -4.1019629894917475,
          -4.339893461241669,
          -2.448115806419691,
          -1.3964818075340644,
          -3.2351948324743183,
          -3.036516919249531,
          -2.537973874395819,
          -3.6316273438088653,
          -3.1459399887032697,
          -3.1980185268365826,
          -2.224120397960542,
          -2.8965309686284746,
          -4.101997329797019,
          -3.167676636159579,
          -4.243345668375362,
          -7,
          -2.964695295079257,
          -4.47673021369108,
          -3.2637543888400056,
          -3.5555103977981775,
          -1.8682955254059768,
          -2.9492240646946035,
          -2.5602335762820863,
          -2.367513609110171,
          -3.6000917717260705,
          -2.694027985973858,
          -4.944359275507229,
          -3.1998335061349032,
          -7,
          -2.220396547201303,
          -2.944264331148952,
          -3.849244545652974,
          -4.942102346729723,
          -3.023512115776103,
          -3.2212961066711223,
          -1.9616750071319988,
          -3.025300928950266,
          -4.943741765831314,
          -7,
          -4.464931466295046,
          -4.942652811693212,
          -7,
          -4.641880451715565,
          -2.467650247139099,
          -4.948129212291016,
          -3.6272195063025854,
          -3.4666205111116515,
          -4.944546824551128,
          -3.6003787854957343,
          -3.290059356781852,
          -3.2544000860757474,
          -3.9441518901855095,
          -2.719706525314566,
          -3.169159910621571,
          -2.347213763892428,
          -3.4233114228739034,
          -4.961701040699168,
          -3.4973246408079492,
          -4.942102346729723,
          -3.0924706854854187,
          -3.3310666545009067,
          -7,
          -2.349908131181242,
          -3.1382138561176456,
          -3.151844154295226,
          -2.8686685229153204,
          -4.475840612428527,
          -3.4606456955356406,
          -3.7119857714490196,
          -3.5624316578638844,
          -3.0868325865723842,
          -3.8630153739209696,
          -3.393143421154438,
          -2.973795787525392,
          -4.343511984943949,
          -4.941794575846803,
          -4.654883740590171,
          -4.954556053354576,
          -7,
          -7,
          -7,
          -4.960699043221426,
          -7,
          -4.654431651055449,
          -4.354737326259845,
          -2.9282686696920193,
          -4.976826661613164,
          -7,
          -7,
          -3.000442341412527,
          -2.839021836222007,
          -4.356594659032601,
          -7,
          -7,
          -7,
          -7,
          -2.563218623279188,
          -3.687042671622682,
          -7,
          -3.5938949816955623,
          -2.2413054552329488,
          -7,
          -4.4788982217971025,
          -7,
          -4.485238608775484,
          -4.481910592562872,
          -3.5089671596982126,
          -2.3451158088439428,
          -3.7537697194437687,
          -4.95506688604493,
          -7,
          -4.111296126482262,
          -4.007695632987596,
          -4.478566495593843,
          -3.34331479369941,
          -7,
          -4.486175353339631,
          -7,
          -2.2334933588947083,
          -4.353315031342222,
          -4.956677371255107,
          -4.117560097792157,
          -4.958592548578363,
          -2.994534789598222,
          -7,
          -7,
          -4.66655541812069,
          -4.356704509667284,
          -4.3587341271980105,
          -2.1120992116084665,
          -4.1874831179547645,
          -3.9481683617271317,
          -2.7010814773381697,
          -4.655455392526795,
          -4.054287403120578,
          -4.488442599438955,
          -7,
          -7,
          -4.4809454614645,
          -7,
          -7,
          -3.2705297765360086,
          -1.5695436588515528,
          -7,
          -7,
          -3.788243812055398,
          -7,
          -3.722414526478677,
          -4.370628725694252,
          -4.955129493993415,
          -4.187041040042328,
          -2.614008118910353,
          -7,
          -3.3608299960638286,
          -7,
          -7,
          -2.8928886460307943,
          -4.962274604623315,
          -4.354007540435039,
          -4.95436795417073,
          -3.3120268276113047,
          -3.752979452844521,
          -3.387108699250326,
          -3.6901167708948885,
          -3.881883722962457,
          -4.96053736742071,
          -2.349371214094059,
          -3.822583674439643,
          -3.4437626385196736,
          -4.477752934854223,
          -7,
          -4.965069934066822,
          -4.182771186796507,
          -4.185730978545133,
          -3.4932116717848376,
          -4.654460521899409,
          -3.673343511417442,
          -4.65646714762775,
          -7,
          -4.653453721491571,
          -2.97365555048346,
          -4.954758530638175,
          -4.264822543576076,
          -4.959542212459511,
          -3.7420177471401384,
          -2.5949505049713553,
          -7,
          -7,
          -4.4815525020951625,
          -3.5441491687091413,
          -2.497401951504548,
          -4.957870561119627,
          -7,
          -7,
          -3.968977668982721,
          -3.4953130222377027,
          -7,
          -3.014062856681733,
          -2.454188307497151,
          -4.9568308966253545,
          -2.825074341788919,
          -7,
          -3.1096825421353387,
          -4.259718081767896,
          -3.924222880518338,
          -3.280912700239786,
          -7,
          -4.957195302014875,
          -2.381885165105794,
          -4.364485330317109,
          -7,
          -4.954623556271786,
          -3.1491998615867844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1720863832034163,
          -3.05779895700737,
          -3.024514987157872,
          -4.498062314581983,
          -4.656232400322034,
          -4.142474385719971,
          -7,
          -7,
          -4.658001851618553,
          -3.158620923808858,
          -3.0384575826438036,
          -7,
          -7,
          -7,
          -2.2217251522999155,
          -7,
          -7,
          -4.660523976930213,
          -4.2605722081234925,
          -7,
          -4.260653238993932,
          -4.659431268195865,
          -3.8502738366161147,
          -4.009450895798694,
          -4.3591712057167005,
          -3.44311092982662,
          -4.659507371756729,
          -4.956629383444768,
          -2.199263549662286,
          -4.257184013472698,
          -7,
          -7,
          -4.656491094301585,
          -4.654931807537483,
          -7,
          -7,
          -2.7319180593504395,
          -7,
          -3.3115059646600127,
          -7,
          -3.5789782627210145,
          -1.9229710652447798,
          -3.9577413374336854,
          -3.2184756161909616,
          -3.5232399900485603,
          -4.056456992407894,
          -4.00935173048672,
          -4.115015832022429,
          -4.262265941146297,
          -7,
          -4.358101485058426,
          -3.9311295061305005,
          -7,
          -3.8280012359052726,
          -7,
          -3.6712786585118917,
          -4.262849603407645,
          -3.649537352421843,
          -7,
          -3.0919199043047665,
          -4.954459602411555,
          -3.775018486890885,
          -4.956792520370495,
          -4.115068196520122,
          -4.955923350069222,
          -7,
          -4.279379448150558,
          -7,
          -7,
          -4.486803448227884,
          -2.2626113582592984,
          -2.9277079623485593,
          -7,
          -4.9544692484698345,
          -4.256938924930791,
          -4.954840458899287,
          -7,
          -4.956365355664486,
          -7,
          -4.9567973175878075,
          -3.0209268196192873,
          -3.824256037629682,
          -3.1740851015212996,
          -2.437682710736257,
          -7,
          -4.655090390729038,
          -7,
          -4.958764500995247,
          -7,
          -7,
          -7,
          -4.960513586490487,
          -4.65934087789275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.955037987024298,
          -3.919273076788743,
          -2.155445376459069,
          -7,
          -7,
          -7,
          -7,
          -4.656313857640156,
          -4.479891882820856,
          -7,
          -4.656342603634468,
          -3.975013397518679,
          -4.183136924486553,
          -3.8666916741838224,
          -3.2042918568738163,
          -4.3588291816933245,
          -7,
          -7,
          -2.4821408576705712,
          -4.059042482306292,
          -3.321521198841677,
          -4.112327255332538,
          -2.3190687511911268,
          -4.957961473262439,
          -7,
          -7,
          -3.343911641883861,
          -3.4464503579779815,
          -3.45014789315114,
          -3.8627962621128322,
          -3.905341566811897,
          -4.357834833466437,
          -7,
          -4.955090967093244,
          -4.260252703870242,
          -3.534435092755253,
          -4.120033076541163,
          -7,
          -4.478681907362235,
          -4.482201621904094,
          -7,
          -4.960499317307279,
          -7,
          -3.8835289504000867,
          -2.7726950181443613,
          -4.35687639402912,
          -4.664331654369715,
          -4.960047217179546,
          -1.8355476285248808,
          -3.3755119467888526,
          -4.95529319520027,
          -3.273244808029194,
          -4.954960913566566,
          -7,
          -4.271683652549704,
          -3.785187420029362,
          -2.680494704168573,
          -3.6249521046631217,
          -4.503845136631561,
          -4.3595177052971295,
          -4.013941466909771,
          -4.486213159170506,
          -2.506490145776442,
          -3.481460544571774,
          -7,
          -7,
          -7,
          -3.5809158565356407,
          -3.5403619216668547,
          -4.257184013472698,
          -7,
          -4.663583150614173,
          -4.955721415247588,
          -4.962388279400015,
          -7,
          -3.560720336969559,
          -4.656241984328962,
          -4.6574096491453805,
          -3.4946461449564397,
          -4.355192820439621,
          -2.8667134247107615,
          -4.015428346874354,
          -2.4140516692585825,
          -4.656285109743019,
          -2.446815752736374,
          -2.369231662128971,
          -3.72488091090256,
          -7,
          -4.657008020434356,
          -4.955437586216608,
          -2.884786004759232,
          -3.3894387111668958,
          -4.375027707231542,
          -4.661372490991278,
          -7,
          -7,
          -3.6216199837199943,
          -4.654734699236146,
          -4.656021498642462,
          -4.656438409876108,
          -4.0188945843702,
          -4.478931861027784,
          -2.7116852039479586,
          -7,
          -7,
          -2.519063074800671,
          -2.4048572591252984,
          -3.571773065864809,
          -3.281594492277713,
          -3.1535931582676557,
          -2.467733650178315,
          -3.187534149648075,
          -2.984337778898843,
          -2.487664250163948,
          -2.7744114242269298,
          -3.479449917038245,
          -3.0352394685131796,
          -2.995892805093479,
          -2.968216018931578,
          -1.577950984534137,
          -3.252199023033889,
          -2.792140082434405,
          -1.7967694016330327,
          -3.509869954380526,
          -2.8559741898563855,
          -4.066940585379413,
          -2.8540400578056273,
          -2.7905545662675157,
          -2.671999095322251,
          -3.3661554207584863,
          -2.8797516081234797,
          -2.780965997073155,
          -3.0072172913073967,
          -7,
          -2.287525122351788,
          -2.811554061380131,
          -3.0224347162992182,
          -3.210908385564785,
          -3.1021773798589933,
          -3.52992441071121,
          -3.3348428675388484,
          -3.81111902545676,
          -2.984446149906882,
          -2.6926266329514807,
          -2.7764112555325746,
          -3.314106725411292,
          -2.6781412485624716,
          -2.485678995021301,
          -2.356873331695484,
          -3.405143222504934,
          -2.8183280278667078,
          -4.264042955041059,
          -2.048935890938645,
          -2.2475405745696984,
          -3.002471266421594,
          -1.7551506194349336,
          -1.970380140469246,
          -1.9071020789098865,
          -3.9599234024401224,
          -2.6219268392563837,
          -3.6608745087788024,
          -4.353021343506187,
          -3.7508304455965837,
          -1.7256314710525595,
          -3.10429328547008,
          -3.3448473709418876,
          -2.3203916456109437,
          -2.0008942662102447,
          -2.711872821428245,
          -4.256712936488155,
          -3.696374784805933,
          -3.4787251788694604,
          -0.2526488849797658,
          -3.7015361741036097,
          -2.9100690256570454,
          -3.0189834518139866,
          -2.0586701512560586,
          -3.7241071319763024,
          -3.3108505941855153,
          -2.0514974698808905,
          -2.499166668224345,
          -3.0729382721626735,
          -2.893728892398651,
          -3.36901210676981,
          -2.6850159966339313,
          -2.9587701447437897,
          -4.112241022105839,
          -2.4144285369048415,
          -7,
          -4.015136122818329,
          -1.9226075427970335,
          -3.677318736042354,
          -3.289128887401494,
          -2.067243312868712,
          -2.8884304517591888,
          -3.9137897777429553,
          -4.176419268765049,
          -4.95424733490676,
          -4.653959822052159,
          -3.746011107751926,
          -1.8597310679542078,
          -3.640741642283412,
          -2.885955406959308,
          -4.353353533052763,
          -3.2797192128666035,
          -2.085841949767647,
          -3.1437384944823323,
          -3.3704703854098397,
          -4.2565445707979865,
          -2.86005440509186,
          -3.331239249545775,
          -1.852576756016548,
          -2.766157140465059,
          -3.5949879216683773,
          -4.008202596193274,
          -1.862660366976328,
          -3.135583545936889,
          -2.973174052682972,
          -4.48098372529553,
          -4.178473333988442,
          -2.282136641500025,
          -4.479685657143802,
          -4.054239492601495,
          -3.6597260952377915,
          -3.376773425950115,
          -7,
          -2.833806182171555,
          -7,
          -4.654253571761437,
          -3.068715330889723,
          -1.301832343155351,
          -2.239880436218544,
          -4.954392074004006,
          -2.9868471342502714,
          -2.9957725377281763,
          -4.11287778605754,
          -3.567976301950993,
          -7,
          -3.296860645545076,
          -2.2081172670574314,
          -7,
          -4.001036244018628,
          -3.6625784121215883,
          -3.783646355064819,
          -3.148248025288188,
          -3.354156477915428,
          -3.392026389643856,
          -4.004268815714698,
          -4.258009568255152,
          -3.599308630368478,
          -3.248152870802089,
          -2.924275149904263,
          -7,
          -3.3773716406852055,
          -3.314227811461609,
          -3.600011149657793,
          -3.090312649208021,
          -4.655546595064349,
          -4.955355770534847,
          -3.113114060796176,
          -3.142289898072111,
          -1.6221062926556562,
          -2.8442088006324573,
          -3.1994762648542516,
          -3.133300533875017,
          -4.956902842964416,
          -3.4407831813593344,
          -4.354511799744273,
          -2.7799889851678676,
          -4.177916281379359,
          -3.213840180147667,
          -3.0126467625667734,
          -3.728797638546838,
          -4.653366902145936,
          -3.01205216495471,
          -2.645389296060444,
          -3.2993681849804,
          -3.884001924768787,
          -2.266548465254177,
          -3.3637012736897,
          -3.635241490628815,
          -3.3676091497883256,
          -2.7328022131463108,
          -3.2922745358653924,
          -4.005113751523483,
          -2.8468930643543624,
          -4.954768170059357,
          -4.954387250144515,
          -2.8652240048558992,
          -3.710531050569225,
          -3.878497858858221,
          -3.789557210744906,
          -2.5399156234701907,
          -2.821204883319006,
          -2.730217259371856,
          -2.025458371872805,
          -3.1671372646333364,
          -3.302373284873846,
          -4.354626976852949,
          -3.5988618448663616,
          -7,
          -3.0585139781456494,
          -2.811440943674158,
          -3.8610838454082805,
          -4.255513712819534,
          -2.884171593021045,
          -3.78216674257991,
          -1.9083761390330394,
          -3.781295712526443,
          -4.478975107638949,
          -3.8752590636046054,
          -4.954493362678243,
          -4.051899830724197,
          -4.477651734970054,
          -4.478176754287997,
          -3.659526848500998,
          -4.65934087789275,
          -4.4847030950325495,
          -3.5582236176342548,
          -4.002578793440226,
          -4.256395392373177,
          -4.478941471757991,
          -3.6349951780447043,
          -3.752336600753975,
          -3.2645155999758346,
          -3.579716923486651,
          -2.086321041875386,
          -3.146296793808566,
          -3.1036743098329627,
          -3.5766628241474274,
          -4.477381753267053,
          -3.141814671730619,
          -3.677678977013519,
          -4.653226990016805,
          -2.047247488233153,
          -3.5954147420331193,
          -3.7265786003464605,
          -3.075406572032361,
          -3.6638892986226614,
          -3.6632249190405806,
          -4.352910557168874,
          -4.256260606512207,
          -2.875526160477312,
          -4.477579434897986,
          -3.510910004340515,
          -3.637685056151331,
          -4.3558344958849355,
          -4.6531835598447415,
          -3.5569052690554477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2777237887624535,
          -4.610327395866563,
          -3.428998202825899,
          -7,
          -7,
          -2.396175776800113,
          -2.5992916070757954,
          -3.621280167550415,
          -7,
          -7,
          -7,
          -7,
          -2.718819594561594,
          -4.024690862355431,
          -7,
          -7,
          -3.0278914426406773,
          -7,
          -7,
          -7,
          -3.6953065224318027,
          -3.0265332645232967,
          -7,
          -4.183582992351017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5514499979728753,
          -2.7715874808812555,
          -7,
          -7,
          -7,
          -3.4687748900951387,
          -7,
          -3.57541879121436,
          -2.040602340114073,
          -7,
          -3.1612481803327377,
          -7,
          -3.6057358938767465,
          -7,
          -7,
          -3.188084373714938,
          -3.1827102725665637,
          -7,
          -3.338177499296536,
          -3.9588981947107715,
          -7,
          -7,
          -3.751048034820188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2370967031246045,
          -7,
          -7,
          -3.732393759822968,
          -7,
          -3.9181352261663593,
          -7,
          -7,
          -7,
          -4.093227419114197,
          -7,
          -7,
          -7,
          -7,
          -3.2384224958854797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7774268223893115,
          -2.5468852480836555,
          -3.6723749787460793,
          -7,
          -2.6537124603849924,
          -2.9555503153497313,
          -2.5097924183374514,
          -7,
          -7,
          -2.8965262174895554,
          -3.6684791029325856,
          -3.7231271587956916,
          -2.6207214890977757,
          -3.068556895072363,
          -3.3268732749874856,
          -7,
          -7,
          -7,
          -3.788239097382168,
          -7,
          -3.4202033743532962,
          -7,
          -3.3766377783551063,
          -3.5242337993653035,
          -7,
          -7,
          -3.018804483937159,
          -2.51942409281017,
          -3.257022238514035,
          -7,
          -7,
          -2.797873191167606,
          -3.8048206787211623,
          -2.7397548594693375,
          -7,
          -7,
          -2.159285509899914,
          -7,
          -7,
          -7,
          -5.0064360898728,
          -7,
          -2.3342990603276026,
          -3.839854984601885,
          -7,
          -7,
          -3.1535099893008374,
          -3.767007363949804,
          -7,
          -7,
          -4.418450450829583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.287065556036607,
          -3.6145281197475394,
          -2.5414009255363963,
          -3.585686278452497,
          -2.6334684555795866,
          -7,
          -7,
          -7,
          -3.026328938722349,
          -7,
          -2.636943561573955,
          -7,
          -7,
          -7,
          -3.4620637966651473,
          -7,
          -7,
          -7,
          -3.339153196257359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7241878485223547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8641945398768103,
          -7,
          -3.909983694939844,
          -3.404394640735732,
          -7,
          -3.8826952623815973,
          -3.2249860256767717,
          -7,
          -3.7185847200274362,
          -3.1750283506819907,
          -2.7186861810033975,
          -3.3246939138617746,
          -7,
          -2.6480549217643783,
          -7,
          -3.8750033536000412,
          -7,
          -2.9574230844522935,
          -7,
          -4.094366298336134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9243309847086785,
          -3.7077404542737713,
          -7,
          -7,
          -4.408070285887185,
          -3.6989265727162115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2665844470668635,
          -7,
          -7,
          -7,
          -3.8254261177678233,
          -3.738013790760599,
          -3.9444324811357743,
          -7,
          -7,
          -7,
          -3.623042434246382,
          -7,
          -7,
          -7,
          -3.659440781870318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1783917416380465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.17167770855167,
          -3.9736819185039836,
          -3.1899579507445543,
          -7,
          -7,
          -3.7695434784017907,
          -7,
          -3.4896186879579,
          -7,
          -4.4335698364624765,
          -3.1277525158329733,
          -7,
          -7,
          -4.103256233355051,
          -2.967495974245274,
          -3.476940260975887,
          -3.304221164444191,
          -3.2908801052671617,
          -2.7430195349869044,
          -3.111486550023024,
          -7,
          -7,
          -7,
          -3.7445276734725663,
          -7,
          -7,
          -7,
          -7,
          -3.6591552809406296,
          -7,
          -3.7032913781186614,
          -3.753812783564702,
          -7,
          -3.747567162737625,
          -7,
          -3.4082808041632413,
          -2.725870813226274,
          -7,
          -4.345981121826305,
          -7,
          -7,
          -7,
          -7,
          -4.075364446373285,
          -3.7825442840100103,
          -7,
          -7,
          -3.315550534421905,
          -7,
          -3.1036590691700097,
          -2.8066886148562817,
          -7,
          -7,
          -7,
          -7,
          -3.3680388229322835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1961761850399735,
          -7,
          -3.616160312847583,
          -3.846337112129805,
          -2.986995539724382,
          -3.643353961976863,
          -2.9874108726919797,
          -3.9577889718788883,
          -3.5907304057926903,
          -3.4797671999304147,
          -4.5532719967524224,
          -3.1669725197384757,
          -7,
          -3.6072405038317426,
          -7,
          -3.799409479615127,
          -7,
          -3.210318519826232,
          -7,
          -7,
          -7,
          -3.0288964451314704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.498874206668076,
          -7,
          -7,
          -7,
          -4.491333673931563,
          -7,
          -7,
          -4.736037762378577,
          -3.5773440554976808,
          -3.5398703234865425,
          -3.1582896875886353,
          -3.6408898107842758,
          -3.488762172066694,
          -7,
          -4.361595639318234,
          -7,
          -7,
          -3.4081445287928753,
          -7,
          -3.920862181229238,
          -4.238116387877543,
          -4.133538908370218,
          -3.8915746229185673,
          -7,
          -4.790928737920774,
          -7,
          -3.0610281561595416,
          -2.961197677184457,
          -7,
          -7,
          -3.782520398709198,
          -7,
          -2.551632247867079,
          -7,
          -4.100370545117563,
          -7,
          -4.265666699452483,
          -7,
          -7,
          -4.01628102454283,
          -4.017061177796396,
          -3.5594996572146744,
          -2.90968476924063,
          -7,
          -3.163871400527174,
          -4.5994536575971905,
          -7,
          -2.7872833199241156,
          -2.6737254469058893,
          -2.2403770800020877,
          -1.8200791452840763,
          -7,
          -3.4742891261654965,
          -3.5294731314644747,
          -2.770414736749944,
          -2.884966913359453,
          -7,
          -2.3558663952923395,
          -2.527077246100807,
          -7,
          -2.211993787829547,
          -4.422491349209966,
          -7,
          -7,
          -3.962575949894103,
          -2.3485222969110127,
          -4.453555302306861,
          -7,
          -7,
          -7,
          -3.690093441922547,
          -7,
          -4.264043292828227,
          -4.169733197942518,
          -7,
          -7,
          -7,
          -3.2199917955016972,
          -4.024478826207317,
          -3.5351041538013934,
          -1.5095625244090545,
          -1.017448486549346,
          -3.6581598480282054,
          -2.0264278180492825,
          -3.592398846115564,
          -2.8558891544742817,
          -4.015136122818329,
          -7,
          -4.654087940618245,
          -7,
          -3.0508307036242797,
          -4.160328445806977,
          -3.654830860802844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5334583477582,
          -7,
          -2.825474201745054,
          -7,
          -7,
          -3.7931090834994587,
          -7,
          -3.385069776331935,
          -7,
          -3.624642998257259,
          -7,
          -4.339378555872695,
          -3.842546836495015,
          -7,
          -7,
          -7,
          -7,
          -3.8729716307384434,
          -7,
          -7,
          -3.946255707199397,
          -7,
          -7,
          -7,
          -3.3145693943004555,
          -7,
          -3.5157745272157848,
          -7,
          -7,
          -4.149496233465742,
          -3.74249629730124,
          -3.4850992085981027,
          -7,
          -3.748962861256161,
          -3.361160995195026,
          -7,
          -3.7601207852645677,
          -7,
          -3.6500159524718385,
          -2.8515535433095853,
          -7,
          -7,
          -7,
          -2.9466487339066765,
          -3.88349109018893,
          -7,
          -7,
          -3.6191977157929474,
          -7,
          -3.6738499773429494,
          -2.9207840090040063,
          -7,
          -7,
          -3.3234583668494677,
          -7,
          -7,
          -3.9252347162317127,
          -7,
          -7,
          -7,
          -7,
          -3.466079589486035,
          -3.2806542362922633,
          -3.353082344206042,
          -3.649140064144219,
          -7,
          -7,
          -7,
          -3.9430986230054854,
          -7,
          -3.2209792909037276,
          -3.1175553648789545,
          -7,
          -7,
          -3.053222543849251,
          -3.024275600667789,
          -3.8444150404738244,
          -7,
          -4.061678615245337,
          -7,
          -3.9182925127553556,
          -3.628899564420607,
          -3.4348881208673157,
          -3.871222556759707,
          -7,
          -7,
          -7,
          -7,
          -4.410608542568368,
          -7,
          -3.601299310194338,
          -7,
          -3.450237261608906,
          -7,
          -7,
          -4.279153424927057,
          -7,
          -3.7505855273410087,
          -7,
          -7,
          -7,
          -3.8600383898071935,
          -3.873611196996467,
          -7,
          -7,
          -3.1884597362982907,
          -7,
          -3.7431176252147416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9628426812012423,
          -7,
          -3.384084473382558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4222614508136027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.234884102331191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.569360252341128,
          -7,
          -5.346955091548924,
          -5.045971979060437,
          -4.870204856809119,
          -3.2122264987691906,
          -4.445769561712997,
          -4.7452758796054475,
          -5.046863748480282,
          -2.0426176388850696,
          -4.40186369436619,
          -7,
          -7,
          -3.362579456941744,
          -3.140734536805062,
          -4.871524288726237,
          -4.56982435888469,
          -5.04587039244936,
          -5.046210223646017,
          -7,
          -3.1051248065332584,
          -3.3605650150028246,
          -7,
          -4.355056701706884,
          -2.067252249586692,
          -5.348388597857494,
          -4.171431949930172,
          -7,
          -4.17401714218392,
          -4.394529504405298,
          -4.444600977071155,
          -2.698431410789216,
          -4.3069569682845685,
          -7,
          -7,
          -5.046711672296513,
          -4.3957398100276555,
          -4.444325902788053,
          -4.448922640496831,
          -7,
          -3.888039982719819,
          -7,
          -2.159286004048917,
          -4.30588853028431,
          -5.3478372092177215,
          -4.873171354062279,
          -4.570445640792904,
          -3.3088507917845416,
          -5.046557592118178,
          -5.348367178861577,
          -3.7958684360034725,
          -4.570527373492466,
          -4.6505406388014645,
          -2.071175331434878,
          -3.6109465017556057,
          -3.6623819098923875,
          -3.8666398160622153,
          -7,
          -4.306717383322012,
          -3.989664512841722,
          -4.649245264062297,
          -4.87125760736155,
          -4.746338342087566,
          -7,
          -7,
          -3.408463532402235,
          -2.2304805461701447,
          -5.34727340695374,
          -7,
          -3.9195545664811595,
          -7,
          -3.9092999920457463,
          -4.01192205783923,
          -5.046175081023443,
          -4.749264672310713,
          -2.1828985513030816,
          -5.347156262771363,
          -4.236533385918288,
          -7,
          -4.745418341943429,
          -3.373452353063682,
          -5.350120037711959,
          -5.347601242663674,
          -7,
          -3.346798235955029,
          -4.09272844024296,
          -3.3975731161775657,
          -4.273678243554927,
          -3.793229505047091,
          -4.145231378313219,
          -2.356584118819276,
          -4.122306487424473,
          -4.043828045520829,
          -7,
          -7,
          -4.652281160545874,
          -4.872457356924434,
          -4.028501536907509,
          -3.9917363704435638,
          -7,
          -3.616818104596417,
          -4.306742711557243,
          -7,
          -5.04591728153028,
          -3.2667658843118588,
          -5.046024716583911,
          -4.2367677957015015,
          -5.04796957212993,
          -3.7521733375654627,
          -2.4611826307022295,
          -4.569746392449806,
          -4.5023607806305135,
          -4.5035358273840576,
          -5.348929563892298,
          -2.8945266176998237,
          -5.348322390274462,
          -7,
          -4.748244248991798,
          -4.206733381111317,
          -3.922956005832465,
          -5.348355495327635,
          -3.19194348272539,
          -2.7799828499205974,
          -4.648913992932156,
          -3.495855943071568,
          -4.56981656287103,
          -3.107200469352167,
          -4.746599173776715,
          -3.749318821331103,
          -4.011439716547123,
          -7,
          -5.047013822754954,
          -2.72383261448073,
          -4.50676394702445,
          -7,
          -5.347003928080234,
          -3.3721345176926727,
          -7,
          -7,
          -5.3469746268204545,
          -5.046175081023443,
          -7,
          -3.170065419875544,
          -3.382987914288671,
          -3.5600188883949224,
          -4.510338154055093,
          -5.348078893239702,
          -4.214501346733814,
          -7,
          -5.0463780880482725,
          -4.503677864643271,
          -4.367791860564098,
          -3.0550739051169837,
          -7,
          -5.347511502724772,
          -7,
          -2.871693397817705,
          -7,
          -5.3468788955925985,
          -3.781487556381919,
          -4.348984012346455,
          -5.347218743600781,
          -5.34905206331604,
          -3.3277888798400754,
          -4.3509280096547585,
          -3.5870836235508463,
          -4.2035262997736105,
          -3.1725176377328155,
          -3.497883136800558,
          -5.046783817638138,
          -2.1775500004755646,
          -4.171494377994071,
          -7,
          -5.34683590735996,
          -4.06936036427513,
          -3.985736838507217,
          -4.870296586555347,
          -5.347025414414368,
          -3.4534070626854416,
          -7,
          -3.123591776731282,
          -7,
          -3.683993042899125,
          -2.1158342216543464,
          -5.047270972348938,
          -3.9750199143327536,
          -4.50844698833347,
          -4.57086192796976,
          -4.65170628080527,
          -3.8050598346304128,
          -3.6774341478786607,
          -4.06991723951933,
          -4.0939292328222185,
          -3.87715049456365,
          -4.648769713584033,
          -3.9932502424781573,
          -7,
          -3.7720432235573,
          -3.390558578656912,
          -3.5295444172650554,
          -7,
          -2.436157032337598,
          -5.346937509053203,
          -2.664205244538261,
          -3.9860703793072267,
          -3.503915138339147,
          -4.092192169421503,
          -4.117298596651012,
          -3.45886342278972,
          -4.071618483796091,
          -7,
          -4.236814275171272,
          -2.226154552287061,
          -2.482505310216106,
          -7,
          -7,
          -5.046506870227673,
          -5.347091819999941,
          -5.347296831998954,
          -4.444593175946113,
          -4.870021339171948,
          -5.3478859466608935,
          -3.304450842619542,
          -4.052405342192183,
          -3.4794516439702257,
          -2.1965745690813323,
          -5.346851539936892,
          -4.648629287656581,
          -5.046820860589155,
          -7,
          -7,
          -7,
          -4.049148219733418,
          -4.349364960508261,
          -4.872216506284493,
          -5.3468398155569465,
          -5.346855447993205,
          -4.870083821967762,
          -4.444310290512258,
          -4.568721783427787,
          -5.046137982947624,
          -3.284596018245864,
          -2.1129300018512898,
          -7,
          -4.744916588971316,
          -7,
          -5.046362475491852,
          -4.2688879044704535,
          -4.393707762272921,
          -5.346876941674333,
          -4.503002286443708,
          -2.9890410933670744,
          -3.9517026778225817,
          -4.35774241954003,
          -3.7150988877405458,
          -4.872435996539984,
          -7,
          -7,
          -2.6694283903107014,
          -4.308657529042319,
          -3.390977543124353,
          -4.143986189041628,
          -1.9876354496935726,
          -4.87123034602681,
          -7,
          -4.87038439475624,
          -3.323090768869078,
          -3.733317662782867,
          -3.7102321082951955,
          -3.67472530682938,
          -3.35042475664405,
          -4.650173424940093,
          -4.745999416249925,
          -4.3471582154333515,
          -3.9174238127281167,
          -3.603266196253487,
          -3.5185468397288107,
          -7,
          -4.648504426480184,
          -3.7577093522289338,
          -4.068601788131928,
          -3.934323610582884,
          -7,
          -3.9523080096621253,
          -3.2755643375933237,
          -4.0062637263183625,
          -3.447994792653729,
          -3.4350807053258485,
          -2.106234717856727,
          -3.6205467693713365,
          -7,
          -2.7799308552177844,
          -4.444023314994304,
          -5.047212542627943,
          -3.2849529807279723,
          -3.769839674254719,
          -3.19554385153028,
          -3.795858784650379,
          -4.05677530559286,
          -4.119335472875041,
          -3.3609796041735946,
          -5.049528122277718,
          -2.052100755959316,
          -3.306863228890472,
          -5.346947277194261,
          -5.346818320038284,
          -5.346831999127804,
          -3.8656006168719523,
          -3.5614880122402224,
          -4.569469498508897,
          -4.268753432587635,
          -3.9530499415686555,
          -5.046415165620504,
          -4.505045269707098,
          -7,
          -3.9242965196279602,
          -4.444965523348666,
          -4.871428925150091,
          -3.0501776876640005,
          -5.348082790267155,
          -2.410481646285617,
          -3.928882994676684,
          -1.9096004257787231,
          -4.3480652533682305,
          -3.083172755871391,
          -2.4046365395859763,
          -3.448803620276374,
          -7,
          -3.8858873896236554,
          -7,
          -3.4603677039425986,
          -3.166901615996242,
          -3.426517002165785,
          -4.50505496600964,
          -4.869929551264621,
          -7,
          -3.903663497285699,
          -3.9856568286495526,
          -4.502871722256952,
          -3.8295240324621713,
          -3.7862908765224415,
          -3.9857778134583097,
          -2.8209730377477755,
          -7,
          -7,
          -2.823547604372849,
          -2.5044817491532436,
          -2.675992379029217,
          -3.8627486669658766,
          -3.251708184081412,
          -2.4468747963813797,
          -4.059493364754587,
          -3.11029794935722,
          -2.863094770417211,
          -3.326399756229908,
          -4.0526477788535225,
          -2.8802327790571143,
          -2.8103755332701614,
          -2.437470203359834,
          -2.8478625703283527,
          -2.8715639825526402,
          -3.024121895656775,
          -2.269814768180237,
          -4.06550502309839,
          -3.5581746407589234,
          -4.239349539006137,
          -2.2659229226161925,
          -3.099655335838334,
          -2.6121464739420484,
          -3.7366614272636336,
          -3.3482101573364997,
          -3.0761363519495823,
          -3.7951662739081384,
          -4.174230427986725,
          -2.667011301386366,
          -3.9930704902346563,
          -3.0567337084348547,
          -3.2743834261010925,
          -3.333751293283423,
          -4.44670022987886,
          -3.4097603888227894,
          -3.5090320510666366,
          -3.315092095446996,
          -3.1095143538438785,
          -3.181283347564006,
          -3.4135336749389187,
          -2.842481181980336,
          -1.9555751738308984,
          -3.0547381672190057,
          -3.7636141895615403,
          -3.5932789192578536,
          -4.873308973962765,
          -2.302756357937335,
          -1.8879605115175833,
          -2.766294698357867,
          -2.5258019888373338,
          -2.4479998133798366,
          -3.1849171639857268,
          -3.686261179638182,
          -3.147983575558577,
          -4.5137197362380554,
          -3.5476184492199474,
          -4.45494580269563,
          -2.163152765510742,
          -3.5989516891716944,
          -4.445263561049475,
          -1.7081361940220896,
          -1.863450981279705,
          -1.5072522144271299,
          -3.7791068199807696,
          -3.5844232261646978,
          -4.117101600989737,
          -2.005672876125111,
          -3.3003189233265715,
          -2.748842971431182,
          -2.780787255202442,
          -2.6071822797801416,
          -4.648053456819172,
          -2.5768306637209446,
          -2.080310862052228,
          -2.1337589216397337,
          -3.8222277099699213,
          -3.557195395395744,
          -4.127861009273555,
          -2.095196476989915,
          -3.237514472958049,
          -3.986315982401342,
          -2.7759546315332426,
          -1.9226075427970335,
          -4.654087940618245,
          -7,
          -7,
          -3.8094346505993877,
          -1.9709155878448599,
          -3.268671559746992,
          -4.648283880781487,
          -3.841730871182167,
          -5.045817636181431,
          -4.87002719731595,
          -4.209867209371226,
          -3.279148234766356,
          -3.386338028485665,
          -3.263900181091419,
          -5.046301971533895,
          -4.007260775655791,
          -2.287490547609792,
          -4.5056634605284716,
          -3.245671962807084,
          -4.3931070242921315,
          -3.1440352668252016,
          -5.046075494813826,
          -2.1047566320349174,
          -3.4042973855837975,
          -4.648952979124083,
          -4.748149248981986,
          -2.935910876657456,
          -3.6597416171192387,
          -3.061990705060039,
          -5.047391702200444,
          -4.87070620635306,
          -3.78927954367021,
          -4.502776210159077,
          -4.0056250349389275,
          -3.9181080350553983,
          -3.5964620508094636,
          -7,
          -3.2479564089581063,
          -5.34709767882886,
          -5.347275359089101,
          -3.0528104935015095,
          -2.153010293782384,
          -2.8971231267326427,
          -7,
          -4.4483081629668995,
          -2.8991655304327213,
          -4.649403016174663,
          -3.3736203980607287,
          -7,
          -3.805009292324597,
          -2.5643200201098937,
          -4.648037830429489,
          -4.444183419961797,
          -4.071916873438521,
          -3.886630734857297,
          -4.05424332563753,
          -4.745730424798123,
          -4.0483194224790955,
          -4.234624344891733,
          -4.7459039238674015,
          -4.048595216808917,
          -3.7016712064148596,
          -2.946553076387335,
          -5.347056665366522,
          -3.444006221109515,
          -3.369774219408229,
          -4.50486487900771,
          -3.8953838666914047,
          -4.6488145622990995,
          -4.50217927120143,
          -3.5414014660058277,
          -3.4865896136882237,
          -1.815969937516831,
          -3.9043928530236642,
          -3.92219473304098,
          -5.349192020360922,
          -5.3479288310870485,
          -3.7260065455287896,
          -4.5026845767730315,
          -2.808377404094648,
          -4.745537349984803,
          -3.4926246022881955,
          -3.49469198112742,
          -4.348910116361356,
          -7,
          -3.336454015647858,
          -2.861417552427749,
          -2.878724160018126,
          -4.236545012525752,
          -2.12532741051893,
          -3.397115031195473,
          -3.6081686862660067,
          -3.6673731692458102,
          -2.9122632327080114,
          -4.076115148448237,
          -3.780616977232055,
          -4.7465913900240135,
          -5.046028622812387,
          -4.6479225684382985,
          -2.706666122284256,
          -4.397360562979804,
          -4.570116608419219,
          -5.351558616325058,
          -2.408690408121786,
          -4.5050433304206114,
          -3.3437581932446805,
          -2.62763585627933,
          -4.208738795422854,
          -3.587817368255725,
          -7,
          -3.6680926378460614,
          -7,
          -3.2205176429386384,
          -2.9036882696704707,
          -4.179287457481868,
          -4.869833836829262,
          -3.585884509233432,
          -3.986721118781962,
          -2.385114864768354,
          -4.092841460124653,
          -5.347609045260355,
          -7,
          -4.86982211524454,
          -4.569008917702917,
          -4.170926342269268,
          -4.745213415625778,
          -4.513152888794917,
          -3.91788072846784,
          -3.9519103706754914,
          -3.6232434373330964,
          -4.347891794786546,
          -4.30588853028431,
          -4.268371227210525,
          -3.528336162914621,
          -3.508691677048606,
          -3.697423094483611,
          -3.051818806655435,
          -2.7690970145159275,
          -2.6251955317528344,
          -3.3290753634861527,
          -3.4338771116793816,
          -4.443845568406682,
          -3.8340448037769277,
          -4.005303386569579,
          -4.501737867345703,
          -2.6308431290241736,
          -3.950078476170064,
          -3.7246327574688074,
          -2.6937579306776436,
          -3.7829372345148538,
          -3.6184064694663602,
          -4.502034790128414,
          -4.6482799763089355,
          -3.4750820463296552,
          -4.501921514596224,
          -3.638579485603398,
          -3.435100153553497,
          -5.047309921129448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.204903719464446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.094883215846508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.389266521813607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.363458414291912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6078891006939875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.452001227726593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2225636610285875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.753491134989102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.379704269024447,
          -7,
          -7,
          -7,
          -7,
          -4.085344103421502,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.175743684421761,
          -4.755104633736051,
          -7,
          -7,
          -7,
          -4.994321552794073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.369531255941311,
          -7,
          -7,
          -2.722633922533812,
          -7,
          -7,
          -7,
          -7,
          -4.156821635591626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.059260404121731,
          -7,
          -7,
          -7,
          -7,
          -4.5428627572586375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9753582709428334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.654651983255935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.343684248831774,
          -7,
          -4.077549580451794,
          -7,
          -7,
          -2.997386384397313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357896749322294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.713040054517326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.942979784728125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2166935991697545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.353723937588949,
          -7,
          -7,
          -7,
          -7,
          -5.132153985533335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.351333044285805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.380325832080988,
          -7,
          -4.8753385442652055,
          -7,
          -7,
          -4.319950913553649,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.922881091208294,
          -7,
          -7,
          -7,
          -5.0870321105355965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.453532376125107,
          -7,
          -7,
          -7,
          -7,
          -4.112001395486189,
          -7,
          -7,
          -7,
          -7,
          -4.390498575676762,
          -7,
          -3.1998922435263193,
          -3.0435194602457565,
          -7,
          -4.20390278111006,
          -7,
          -4.438114963661999,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.51473364934416,
          -5.187002925027144,
          -5.4054479626103085,
          -7,
          -7,
          -7,
          -4.177594209647827,
          -7,
          -4.803404191319472,
          -3.7777167386096258,
          -3.918004110480823,
          -7,
          -3.8458419074217574,
          -4.433193591714845,
          -4.482122920092511,
          -7,
          -7,
          -7,
          -4.199546753633805,
          -7,
          -7,
          -4.642835342363899,
          -3.677318736042354,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.469822015978163,
          -7,
          -7,
          -7,
          -7,
          -3.8663070345324604,
          -7,
          -7,
          -7,
          -3.751048034820188,
          -7,
          -3.350088729351078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5705429398818973,
          -3.269979676645324,
          -7,
          -7,
          -4.014142361545006,
          -2.7715874808812555,
          -7,
          -4.597025681164456,
          -4.395735153999889,
          -4.311131986528651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3931753318356845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.776701183988411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.034468022755043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.052911867935484,
          -3.335858911319818,
          -4.1627734388351865,
          -4.246042874223341,
          -3.665674780993893,
          -7,
          -2.9903388547876015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6177165808503444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.109814695694399,
          -7,
          -3.6591552809406296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.198065714165741,
          -7,
          -7,
          -3.5324995860946626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8793253007848074,
          -3.6897526961391565,
          -3.0593740590659575,
          -7,
          -7,
          -4.3680476847285785,
          -3.9217384836845985,
          -7,
          -7,
          -2.8118984338735538,
          -3.2095373542191825,
          -2.9507541815935037,
          -7,
          -7,
          -7,
          -7,
          -3.166621628581135,
          -7,
          -7,
          -3.1929575298846564,
          -2.6401117866545993,
          -7,
          -7,
          -7,
          -3.117519866385761,
          -3.657915936829955,
          -7,
          -4.185236086141411,
          -3.6370892735303304,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7937205568135233,
          -7,
          -7,
          -7,
          -3.4519275966524705,
          -7,
          -7,
          -2.8216772586543666,
          -7,
          -3.031985216636394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0670708560453703,
          -7,
          -2.599649182211521,
          -3.4952667443878105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.638189640190837,
          -7,
          -7,
          -2.932537179217954,
          -3.4966390991807463,
          -7,
          -7,
          -3.0556076517087116,
          -7,
          -3.330768775572884,
          -7,
          -7,
          -7,
          -3.6583040093579355,
          -7,
          -3.257758548072965,
          -7,
          -7,
          -3.074084689028244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.496860487394368,
          -3.8238653093245114,
          -2.998782269831736,
          -7,
          -3.0558232833751444,
          -3.519827993775719,
          -3.356089625562946,
          -7,
          -7,
          -3.7648483571934106,
          -7,
          -7,
          -3.5440680443502757,
          -7,
          -3.5385234653327093,
          -7,
          -7,
          -7,
          -4.099507993727965,
          -7,
          -2.8987251815894934,
          -3.667639706056411,
          -2.870286828992591,
          -2.7146037676665995,
          -3.6121478383264867,
          -7,
          -3.6506959797606107,
          -3.664077590185075,
          -3.1153410244613617,
          -7,
          -7,
          -3.7265642161622448,
          -7,
          -3.8724476477890133,
          -7,
          -3.6547779745760787,
          -3.663903785487646,
          -7,
          -7,
          -7,
          -4.16253026924255,
          -7,
          -2.996000608571067,
          -3.556603989486027,
          -7,
          -3.6191977157929474,
          -2.830984707712957,
          -3.3106933123433606,
          -7,
          -7,
          -3.9460590603851236,
          -7,
          -7,
          -7,
          -2.667102574103782,
          -3.556423121371285,
          -3.1870190811827652,
          -3.1520844023826413,
          -3.940267391446012,
          -3.9029270960172626,
          -7,
          -4.030923399627219,
          -7,
          -7,
          -7,
          -3.8616240084555944,
          -2.500263040699733,
          -7,
          -7,
          -3.622731965164719,
          -3.1318477105449856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3687516195445553,
          -7,
          -7,
          -3.7437448785924614,
          -7,
          -7,
          -7,
          -3.606703741333674,
          -3.3529979066449345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062205808819712,
          -7,
          -4.3471152548414045,
          -7,
          -3.624127331511917,
          -3.4196823422019547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3991543339582164,
          -7,
          -3.680154141734373,
          -3.171901890731724,
          -7,
          -3.8915374576725643,
          -7,
          -4.08282126093933,
          -3.2334191932136345,
          -3.923295840655504,
          -7,
          -2.493225621510431,
          -7,
          -3.1701149694966517,
          -7,
          -7,
          -3.590618948206578,
          -7,
          -3.939119717648487,
          -3.7318304202881625,
          -7,
          -3.2692015103702907,
          -4.111917494923382,
          -3.313192063634804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.053923150548575,
          -3.1444496608688994,
          -3.523694452381668,
          -3.852181593605025,
          -7,
          -7,
          -7,
          -7,
          -3.557988148224913,
          -7,
          -7,
          -2.907232159417844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.344818642061682,
          -7,
          -7,
          -7,
          -3.5828584622244994,
          -2.7180862947830917,
          -2.7110687225172314,
          -7,
          -7,
          -3.4243370666764497,
          -7,
          -3.486949715838293,
          -3.6857865089215553,
          -7,
          -7,
          -7,
          -2.8317418336456384,
          -3.7169210731667612,
          -2.908648169194429,
          -7,
          -3.532579224934103,
          -7,
          -7,
          -7,
          -2.9360778889459787,
          -3.636287252098513,
          -3.3111178426625054,
          -3.4446692309385245,
          -3.30362797638389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1107019165992926,
          -7,
          -7,
          -3.083413028394797,
          -7,
          -2.881547680226655,
          -3.7648110386557376,
          -3.3549723250189762,
          -3.7695988483874463,
          -2.9777236052888476,
          -3.232933396387438,
          -2.808409580181492,
          -7,
          -3.5732971725254727,
          -7,
          -7,
          -3.846398973034675,
          -7,
          -4.085861173788451,
          -7,
          -7,
          -3.7063763558396903,
          -7,
          -2.7353593330017105,
          -3.719685794237588,
          -2.846955325019824,
          -7,
          -7,
          -7,
          -7,
          -2.9591606876059813,
          -7,
          -7,
          -7,
          -7,
          -3.4190465771041594,
          -7,
          -2.9562751760779418,
          -7,
          -7,
          -3.386617852625555,
          -7,
          -3.9725036844873167,
          -7,
          -4.057510501673362,
          -7,
          -3.493504521968632,
          -3.917545903402913,
          -3.482397122253336,
          -7,
          -7,
          -7,
          -3.3416323357780544,
          -3.965342835560622,
          -7,
          -3.7206553565517244,
          -7,
          -7,
          -2.9054874873267518,
          -7,
          -3.616265405281708,
          -7,
          -7,
          -3.594060901270418,
          -3.128548382704474,
          -7,
          -7,
          -3.0716058849177394,
          -4.19230953183702,
          -7,
          -3.3891660843645326,
          -3.738209577416493,
          -3.4728864095132606,
          -7,
          -3.9252295573903355,
          -2.3705308178486595,
          -2.954139093679364,
          -2.8505849763520317,
          -4.367057590612843,
          -7,
          -4.233059599096587,
          -2.8150081817089876,
          -4.388846893599511,
          -7,
          -3.2056604003828313,
          -4.142733511313519,
          -2.895956337455235,
          -3.8384082784941866,
          -4.694526229121204,
          -3.863976783904387,
          -3.107268464426313,
          -3.899492196138132,
          -7,
          -4.085067485564809,
          -3.0898815718051527,
          -7,
          -2.7657660113656077,
          -4.2440295890300215,
          -3.859781410816321,
          -4.383725626444643,
          -7,
          -7,
          -7,
          -7,
          -3.5438060099142876,
          -4.265572461743118,
          -2.8251703089538873,
          -3.1582619493278363,
          -3.7952541825808828,
          -3.321365831759885,
          -3.7334781411151887,
          -3.8845688149183335,
          -2.8958679123662567,
          -3.2542257208262924,
          -2.7271730084083075,
          -3.510712529777408,
          -3.796157876906914,
          -3.2835273648616936,
          -2.083171585668804,
          -2.2689030342501972,
          -3.676693609624867,
          -2.649964478499643,
          -3.086137286738593,
          -7,
          -3.067535789696351,
          -4.126180128666808,
          -3.890923771489014,
          -7,
          -3.4998888933231624,
          -2.8816355753447067,
          -4.532988656508851,
          -3.5859117103194342,
          -2.7564730949882934,
          -3.5952757118020995,
          -2.8292151798431755,
          -3.961231197044663,
          -4.632538271950371,
          -2.2930425467054785,
          -3.594083019091813,
          -7,
          -3.3028538166713055,
          -3.0478515240423842,
          -3.191355575615615,
          -2.853211334503317,
          -1.2438694482941055,
          -3.279393142747864,
          -2.572399436253159,
          -3.0236639181977933,
          -7,
          -2.5347278137414437,
          -3.289128887401494,
          -3.0508307036242797,
          -3.8094346505993877,
          -7,
          -7,
          -3.526210003841664,
          -4.359512960594626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.943828604020416,
          -3.7333577879255855,
          -2.6834736303972564,
          -7,
          -3.225309281725863,
          -1.8530557878276115,
          -3.143327129992046,
          -3.7115541682501694,
          -3.2806921642851177,
          -2.368713956878259,
          -2.4840624550927735,
          -2.998047874277389,
          -2.6825662250351265,
          -3.6133131614554594,
          -7,
          -3.916848582363452,
          -3.4172225044337696,
          -3.412236482169269,
          -7,
          -7,
          -3.9603280505301433,
          -7,
          -3.623559390005437,
          -3.3929606147967957,
          -3.811909980420099,
          -7,
          -1.9917548970447791,
          -7,
          -7,
          -3.784413494186196,
          -3.548826018446806,
          -3.332041016492325,
          -7,
          -7,
          -2.8941683183448936,
          -7,
          -3.304131339528794,
          -7,
          -3.6774244377012475,
          -2.706759401357577,
          -7,
          -2.8773713458697743,
          -7,
          -3.372819981678968,
          -3.4223709414184693,
          -7,
          -3.3861421089308186,
          -2.9488040459328113,
          -7,
          -2.9208187539523753,
          -3.0657494206748472,
          -7,
          -7,
          -2.819214799882384,
          -3.8069935136821074,
          -7,
          -2.4312616252869494,
          -7,
          -7,
          -7,
          -3.0216853522157057,
          -2.8737009429131453,
          -3.4784221877400805,
          -3.0029062314830117,
          -7,
          -7,
          -7,
          -7,
          -3.957271979992943,
          -7,
          -2.9440712135860867,
          -2.9759370424831104,
          -2.965107585849056,
          -7,
          -3.125062803023057,
          -2.7251991210907534,
          -2.68436653636779,
          -7,
          -2.364494711644551,
          -3.4801507252732806,
          -7,
          -7,
          -2.3196737645957173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.415490852171469,
          -7,
          -7,
          -3.474798818800631,
          -2.2577973416492347,
          -7,
          -2.8834392328044864,
          -2.7559430819678017,
          -3.4099331233312946,
          -2.8683504996479683,
          -7,
          -3.214137103413449,
          -7,
          -3.0313507468640846,
          -2.16006627804627,
          -7,
          -7,
          -7,
          -7,
          -2.302600682663212,
          -7,
          -7,
          -7,
          -3.5561818466529114,
          -3.5700757053216043,
          -3.563599728881531,
          -3.2750808984568587,
          -3.072663402044344,
          -7,
          -7,
          -7,
          -3.311435968289161,
          -3.2771506139637965,
          -3.594282028811806,
          -3.623766000133931,
          -7,
          -3.2692793897718984,
          -7,
          -2.7866968316757634,
          -3.9502674680135885,
          -3.883377489748339,
          -3.617000341120899,
          -7,
          -3.816373888752362,
          -7,
          -7,
          -3.047488412623774,
          -7,
          -7,
          -2.2894943600325126,
          -7,
          -3.754654069255432,
          -7,
          -7,
          -7,
          -3.5618166643189575,
          -3.88320703335239,
          -3.6783362467321803,
          -7,
          -7,
          -4.130730350227968,
          -7,
          -7,
          -7,
          -4.3057596722628215,
          -4.317415586331099,
          -7,
          -3.9078304032196507,
          -3.0070112422218074,
          -2.689705825691564,
          -4.051056001837605,
          -4.604722722859099,
          -4.60680040755567,
          -2.605493791188096,
          -3.085569767549475,
          -3.613831254971802,
          -7,
          -7,
          -4.606316861140107,
          -7,
          -2.5806841888260506,
          -3.4461441031404796,
          -7,
          -3.744644971105124,
          -2.2896969042724162,
          -4.612582551653833,
          -4.130987398931264,
          -4.6046471793073565,
          -3.667743423125636,
          -4.1376705372367555,
          -3.43253103602832,
          -2.8710311121124183,
          -3.767357323504857,
          -7,
          -4.305082539675178,
          -4.006947136561108,
          -4.621352872810209,
          -4.130247973456816,
          -3.251415136117222,
          -4.605046332184747,
          -4.14703703406944,
          -7,
          -2.4250559185103264,
          -4.305684487423615,
          -7,
          -3.719652330718798,
          -7,
          -3.011048910322697,
          -7,
          -7,
          -3.934437847785288,
          -3.1512747226484303,
          -4.3176873404861835,
          -1.975059370771855,
          -3.6291648572073134,
          -2.8272327153437096,
          -3.5836804262469997,
          -4.60916737430202,
          -3.6110857334148725,
          -3.3277164414769396,
          -4.310672074930124,
          -4.3115207624480485,
          -7,
          -7,
          -4.133538908370218,
          -2.956388564539977,
          -1.7478708307789022,
          -7,
          -7,
          -3.3475867664222134,
          -4.303854561999643,
          -3.70091514151692,
          -4.34341844163964,
          -4.60612329172563,
          -3.6739828907278897,
          -2.5624768485650953,
          -7,
          -3.3449504264625767,
          -7,
          -7,
          -2.529627893960828,
          -4.32087296522725,
          -4.608279934969188,
          -7,
          -2.8958111947786325,
          -3.707591464521357,
          -2.6670873338292944,
          -3.6821952345400715,
          -2.8329170498173046,
          -4.6181108817371745,
          -2.1688958897764117,
          -3.6359760701938337,
          -3.0103432315964427,
          -4.605595915240784,
          -7,
          -4.326970450324921,
          -3.6646524202232635,
          -3.056595854893766,
          -2.72987442952283,
          -4.12978653452034,
          -2.9046994005024,
          -7,
          -4.6048737705526355,
          -7,
          -2.7220320878181923,
          -4.304242719659696,
          -3.5111323333436464,
          -3.712681262579364,
          -2.9806060027559775,
          -1.9058797317933902,
          -4.610010364384026,
          -4.13046242928158,
          -3.835785662062868,
          -4.6155186977102085,
          -2.690979421266162,
          -4.010098454941318,
          -7,
          -4.145807366632503,
          -4.335598296533003,
          -3.343034210479198,
          -4.61240235746753,
          -3.193506227976473,
          -2.7531277550280353,
          -4.3088630883653005,
          -3.715260324665018,
          -4.309342671528001,
          -3.172166484285892,
          -4.011993114659257,
          -3.515221504900477,
          -3.340582908247528,
          -4.304974961155454,
          -4.610724025229824,
          -2.3559012253026625,
          -3.4848893472645464,
          -7,
          -4.6049924140397565,
          -3.8459864004658586,
          -7,
          -7,
          -7,
          -4.60612329172563,
          -4.604722722859099,
          -3.0898620501650678,
          -3.5084816216810326,
          -3.1642322463464287,
          -4.348694190265541,
          -7,
          -3.8304145127503877,
          -7,
          -4.6072405038317426,
          -3.8365561838816618,
          -4.232029937620133,
          -3.087108614449726,
          -7,
          -7,
          -4.3100344691359895,
          -2.3532228716177452,
          -7,
          -4.604301669918353,
          -4.143202225049597,
          -4.314951601661373,
          -4.305125563622699,
          -3.4117459360126303,
          -4.015841571684366,
          -4.149249912590282,
          -3.4787931682426243,
          -4.619698415640197,
          -3.2946958051075232,
          -3.7729081949712717,
          -4.609466342831634,
          -2.3310680174503204,
          -3.6540802353065707,
          -7,
          -7,
          -4.310417144932937,
          -4.608001568513314,
          -4.306264147948217,
          -7,
          -2.9576976220470885,
          -7,
          -3.728457085328827,
          -4.6050894618815805,
          -3.539655029536453,
          -1.9352171200597414,
          -3.3813380926383116,
          -3.4726687041948,
          -3.3386457091490778,
          -4.013953149375142,
          -3.925920296643791,
          -4.015181557509164,
          -4.017607147477976,
          -7,
          -4.6173463799861105,
          -2.7506369413912526,
          -3.654711189836538,
          -3.606136981286755,
          -7,
          -3.1688544721436047,
          -4.319959229070181,
          -3.343394525079649,
          -7,
          -2.906107664694548,
          -7,
          -3.126207830557576,
          -4.308777773664721,
          -4.140256569677416,
          -4.607894456964924,
          -7,
          -3.2943032512870527,
          -3.9245893856694183,
          -7,
          -2.9343850705382533,
          -2.115525895116428,
          -2.345411075571206,
          -7,
          -7,
          -4.60794801604128,
          -7,
          -4.3055555688380585,
          -7,
          -7,
          -4.609839764305466,
          -2.516959135876479,
          -3.3383369465610726,
          -2.919935696126473,
          -2.7748202689123707,
          -4.604150423082331,
          -4.006230646481024,
          -7,
          -4.012077599531015,
          -7,
          -7,
          -4.145465748882863,
          -3.4716583590181602,
          -7,
          -7,
          -4.6041720329983375,
          -7,
          -3.908270499495724,
          -7,
          -7,
          -4.141439320940584,
          -2.3454803518919145,
          -7,
          -7,
          -7,
          -4.607154666400511,
          -3.7658494287817996,
          -4.008238108813141,
          -7,
          -3.9120838257658943,
          -3.5031386548731835,
          -2.798964374045131,
          -3.661216185615503,
          -2.9407795229136404,
          -4.317896266492956,
          -7,
          -7,
          -2.3226037128118584,
          -3.542348146022223,
          -3.1362683085718692,
          -4.611362130666253,
          -2.995401486253443,
          -7,
          -4.30628560200552,
          -7,
          -2.81352831808339,
          -3.240674027620307,
          -3.1091965308476417,
          -2.999159551305879,
          -3.2539993085092718,
          -3.71352204300198,
          -7,
          -4.304985720206672,
          -4.013174409878867,
          -3.374514134412372,
          -3.850023034064681,
          -4.603966695368847,
          -3.8294109927999447,
          -4.3144255411267,
          -4.130151433775354,
          -4.140864047889339,
          -4.604571622612871,
          -3.224667706687742,
          -2.8903128238621623,
          -3.122649163553088,
          -3.628491104967123,
          -3.662621437602524,
          -2.3163582346557057,
          -2.622599100855059,
          -4.606488850442648,
          -3.492694236580896,
          -4.605746659595613,
          -4.611808247276516,
          -3.79492600409461,
          -3.774808830310706,
          -2.4400589014712017,
          -3.1142772965615864,
          -3.883642511234492,
          -4.31940798167448,
          -3.5933263522096612,
          -3.301649973616383,
          -2.3591801406581605,
          -2.6855663052536576,
          -7,
          -7,
          -7,
          -3.9588504516796785,
          -2.623795791562612,
          -4.608493941666254,
          -7,
          -4.024926716417962,
          -4.306392856397526,
          -3.4457909564400544,
          -4.307506734689901,
          -2.774769926364078,
          -7,
          -3.835246539996311,
          -2.3990368383908267,
          -3.3552812002137884,
          -2.8567210964328824,
          -3.445441743912532,
          -2.6311440540044337,
          -7,
          -2.4188820199132657,
          -2.7308155314228784,
          -3.103509151942946,
          -7,
          -3.6124235606645025,
          -7,
          -2.596254003169732,
          -3.3602146132953523,
          -3.4230240909444603,
          -3.6678160103390933,
          -7,
          -7,
          -2.8927334075286266,
          -4.6075622431835885,
          -4.3093746249166704,
          -4.13418773628865,
          -3.946471915902509,
          -4.307175012040345,
          -2.0939454921482628,
          -7,
          -7,
          -3.0226757619537272,
          -2.7172300777638196,
          -4.164561029265557,
          -3.412677912040056,
          -3.846846012948204,
          -2.2790374965594027,
          -3.675053913679753,
          -2.7842190856301663,
          -2.7293004384241,
          -2.9061760145910296,
          -4.339948061694351,
          -3.300095257323717,
          -3.0660379833117406,
          -3.0712452575312317,
          -2.7286559894768234,
          -3.03726282403086,
          -3.0246508319859577,
          -2.2719945114792024,
          -4.004562103992181,
          -3.5013908232543454,
          -3.4924810101288766,
          -3.072540923252852,
          -2.802625019766844,
          -2.766365628359224,
          -3.7659085216120016,
          -4.087518774750445,
          -2.511683639438494,
          -3.0593424912315332,
          -7,
          -2.9543916354735393,
          -3.779508308822964,
          -3.0109680484355525,
          -3.352454090637652,
          -3.061311084170788,
          -3.7170668969538765,
          -3.2375186046331073,
          -3.498678054959745,
          -3.4529103602313107,
          -2.739406189097407,
          -3.1291794789307543,
          -3.570840009456516,
          -3.2742432132856725,
          -2.158785476021301,
          -1.8598212968349632,
          -3.248100836962856,
          -3.58167949072423,
          -4.0214993986774745,
          -2.2106312850861856,
          -2.572748425547102,
          -3.270273663420831,
          -3.014991990808102,
          -2.543779303467573,
          -2.9508514588885464,
          -7,
          -2.945267692378855,
          -3.625069132996176,
          -7,
          -3.9637595028687533,
          -1.1779344090499038,
          -3.80240229112848,
          -7,
          -2.2806547667765416,
          -2.168510155883977,
          -3.0718843869084713,
          -4.607444299761739,
          -4.0478198278165936,
          -4.131180085665366,
          -2.087542546880814,
          -4.058663227194839,
          -3.587464304551835,
          -2.699088048927707,
          -2.2389523321619205,
          -3.8269274294752718,
          -2.484184760155121,
          -2.422114838495176,
          -2.318268587392731,
          -3.1784708516886595,
          -3.0326110132705195,
          -3.5849434042753194,
          -2.3503364723516253,
          -1.7562256821745161,
          -4.31011953734681,
          -2.7580077906876372,
          -2.067243312868712,
          -4.160328445806977,
          -1.9709155878448599,
          -7,
          -3.526210003841664,
          -7,
          -2.195198314008875,
          -7,
          -4.6049816296074315,
          -7,
          -4.605832775740528,
          -2.770445033138055,
          -2.587635303959155,
          -3.4774416871683957,
          -2.7016471896231704,
          -4.606821886016697,
          -3.540610986582727,
          -2.69221219192535,
          -4.625466793609239,
          -3.7178576585672802,
          -7,
          -3.3553269802541617,
          -7,
          -2.478852407969493,
          -2.925401353528513,
          -4.132963726130726,
          -4.321411997974006,
          -2.2479815277012127,
          -4.144781706171568,
          -2.607838532274997,
          -7,
          -4.609562396167091,
          -3.0917144760028554,
          -4.308852424944224,
          -7,
          -4.016866270828975,
          -3.3791644574345927,
          -7,
          -3.284074822337217,
          -4.304458212993763,
          -4.606488850442648,
          -3.0061532507739805,
          -1.8757383000886039,
          -2.550725195760618,
          -4.604474458972241,
          -3.8506053969224783,
          -3.031103116367241,
          -7,
          -3.453970311619139,
          -7,
          -3.917977882592908,
          -2.7858596932679207,
          -7,
          -4.305577057926727,
          -3.5110396509000643,
          -3.537231245931346,
          -3.4447569701519756,
          -4.132216983942544,
          -3.714947644666789,
          -3.6593984972774454,
          -3.911274825786263,
          -3.5780658838360915,
          -2.9008162576433216,
          -3.2118191363261213,
          -4.605283492530251,
          -3.0555392705956312,
          -3.4876534031172053,
          -3.342079681345193,
          -3.33225258250488,
          -7,
          -4.004504083022066,
          -3.2304489213782737,
          -4.14514459027186,
          -1.9641584760546043,
          -3.287221333246573,
          -3.795303884967312,
          -4.315886415708487,
          -7,
          -3.5911573950798172,
          -4.609402295470293,
          -2.903051889313784,
          -4.608322744745895,
          -3.719289844693328,
          -2.7933183562093538,
          -4.314551853781383,
          -7,
          -2.905758019331565,
          -2.3502692650982824,
          -3.4663435817339256,
          -4.146975117308223,
          -2.5426143376142067,
          -3.6759106662919567,
          -3.9562933202213877,
          -3.9157479755368123,
          -2.9868750434247,
          -3.646913208595694,
          -4.138513214157753,
          -3.915019727210068,
          -7,
          -7,
          -3.4350684440390644,
          -4.629959764611881,
          -3.9129762338315563,
          -4.152400471674778,
          -2.700922906704107,
          -3.8439072693947747,
          -3.142926666624649,
          -2.1093033285923224,
          -3.416219418368308,
          -3.0969202315815303,
          -7,
          -4.016563295318421,
          -7,
          -3.4988518534235458,
          -3.1417338533026715,
          -3.5702120340015426,
          -7,
          -3.4423961423406735,
          -4.312325482315131,
          -2.2051077514026,
          -7,
          -7,
          -7,
          -4.303649561060314,
          -4.605961917948959,
          -7,
          -4.129378342793226,
          -3.6222705557781127,
          -4.140602308020332,
          -4.143815995423801,
          -4.608943012764416,
          -4.6100636631681216,
          -3.492534750799617,
          -3.461841402144283,
          -3.6110006527050493,
          -3.3537666767989336,
          -2.6842880577485695,
          -2.935024167906121,
          -1.9611385794778147,
          -2.748599530903582,
          -3.532126927376701,
          -2.9563498823917462,
          -4.6047658847038875,
          -2.9184235414128294,
          -3.1316721192672685,
          -7,
          -2.0832314678333397,
          -3.248879101447868,
          -3.4062526845360575,
          -2.673982441385144,
          -3.5864850094217466,
          -3.422210117588728,
          -3.651418016932037,
          -3.9073791099869006,
          -2.702804123119662,
          -3.906151802007568,
          -3.3906702126261803,
          -2.9630003484681415,
          -4.311287538662283,
          -4.604096393587492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.01556930642988,
          -7,
          -7,
          -7,
          -3.3721825624561594,
          -3.6844862921887342,
          -7,
          -7,
          -3.4260731174384857,
          -3.4013266748944875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6044078535129347,
          -4.125660151674213,
          -7,
          -3.8964894735932685,
          -3.0742400121298266,
          -7,
          -7,
          -7,
          -4.323994202181974,
          -4.309332019875982,
          -3.820091941269979,
          -3.48847080648477,
          -4.003697433719652,
          -7,
          -7,
          -7,
          -4.0213340397751285,
          -7,
          -3.741348602475895,
          -7,
          -4.328053250252685,
          -7,
          -2.7213706944108016,
          -7,
          -7,
          -7,
          -7,
          -3.4143790345261684,
          -7,
          -7,
          -7,
          -4.308180101030666,
          -4.016113666358908,
          -2.99915229898292,
          -7,
          -3.732731413127401,
          -4.401831174908948,
          -7,
          -7,
          -4.337758671493417,
          -7,
          -7,
          -4.003934206173708,
          -7,
          -4.300943128080553,
          -3.8788280680681337,
          -1.64251162631971,
          -7,
          -7,
          -3.6338722626583326,
          -7,
          -3.910375352215901,
          -4.06619543102185,
          -7,
          -4.336299595763418,
          -3.0586286357672274,
          -7,
          -7,
          -7,
          -7,
          -2.7990942809571027,
          -7,
          -7,
          -7,
          -7,
          -4.301203678722446,
          -7,
          -4.051171823995435,
          -7,
          -4.315928382610187,
          -2.879093575458894,
          -3.6522656855382767,
          -3.7702774797561722,
          -7,
          -7,
          -7,
          -4.016761820389091,
          -3.6315655167545393,
          -4.0576090562294835,
          -7,
          -3.6168560768455857,
          -4.302395873152567,
          -7,
          -7,
          -3.8513500913836216,
          -7,
          -7,
          -4.3115207624480485,
          -3.667733052533267,
          -3.456001437208452,
          -4.299529089146387,
          -7,
          -4.307731306161607,
          -7,
          -3.0556096627549363,
          -7,
          -7,
          -7,
          -3.875138464437482,
          -3.5888690345141137,
          -7,
          -3.488653253269166,
          -3.3230744031087247,
          -7,
          -4.413769018024154,
          -7,
          -2.6569631495746546,
          -7,
          -7,
          -7,
          -7,
          -4.300986564044174,
          -2.818270638563707,
          -7,
          -7,
          -7,
          -3.304090270521751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.171126508351265,
          -7,
          -3.822965297912282,
          -3.7750276000988445,
          -7,
          -4.123410591862496,
          -7,
          -7,
          -4.309289410655256,
          -3.0505086461516764,
          -7,
          -7,
          -7,
          -7,
          -3.4754209652146257,
          -7,
          -7,
          -7,
          -3.61255075811203,
          -7,
          -4.312050351180238,
          -7,
          -7,
          -3.3754400598577745,
          -7,
          -3.724849087629386,
          -7,
          -7,
          -3.5025536090581117,
          -4.2964238485037765,
          -7,
          -7,
          -4.302504092355714,
          -7,
          -7,
          -7,
          -3.738288925247438,
          -7,
          -3.3014869073125475,
          -7,
          -7,
          -3.3237231691877547,
          -7,
          -7,
          -4.057799186029343,
          -7,
          -3.8523783210431803,
          -4.013237602964741,
          -3.0396645412571153,
          -7,
          -7,
          -7,
          -7,
          -3.896213795234906,
          -7,
          -7,
          -4.020651268004342,
          -2.921399787918667,
          -7,
          -3.644340098826323,
          -7,
          -4.3931187349197875,
          -7,
          -4.314541329129881,
          -7,
          -4.298328988073496,
          -3.3101089047316647,
          -4.326949994165998,
          -7,
          -7,
          -3.775100498879025,
          -3.571825249040829,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0565237240791006,
          -3.3981938297209937,
          -3.2525104653286196,
          -7,
          -3.5969927280580043,
          -7,
          -7,
          -7,
          -4.29154643969221,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015841571684366,
          -2.6738111180539055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.075711159354416,
          -7,
          -3.9215650987885304,
          -4.106156886966839,
          -7,
          -7,
          -7,
          -2.7046014348376373,
          -7,
          -3.5795794628965285,
          -7,
          -2.5876985647538873,
          -7,
          -7,
          -7,
          -3.9823918536435667,
          -3.0661483724233816,
          -3.5458481008534783,
          -4.082623825798577,
          -4.41338359662314,
          -3.409827494124425,
          -4.000173683058465,
          -4.291368850451582,
          -7,
          -4.3397097547798325,
          -3.490740829565697,
          -7,
          -7,
          -4.310629596987806,
          -7,
          -7,
          -7,
          -7,
          -3.66064416533768,
          -7,
          -7,
          -7,
          -2.880258687674373,
          -3.8260585973805052,
          -7,
          -3.628876882304244,
          -7,
          -7,
          -4.057970231710706,
          -7,
          -3.9703313765073305,
          -7,
          -3.5543680009900878,
          -3.3660492098002353,
          -3.8718063644587293,
          -7,
          -2.503720650468077,
          -3.819609732751585,
          -7,
          -7,
          -7,
          -3.6140178991060923,
          -4.063164412942957,
          -7,
          -7,
          -3.8564670670037584,
          -7,
          -4.324035392913916,
          -7,
          -3.9028546804129594,
          -4.301377292349344,
          -3.6074979143787846,
          -4.063445953123033,
          -7,
          -3.187362958111993,
          -3.938259470794594,
          -3.041518803428553,
          -7,
          -4.100111959529749,
          -3.5595369902185747,
          -4.397087956203049,
          -7,
          -7,
          -7,
          -7,
          -4.0980896903639525,
          -4.384729651619834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8030215785684427,
          -7,
          -7,
          -3.724573739627489,
          -3.3013083003719372,
          -3.6722364404445473,
          -4.365319475896217,
          -4.547657811539415,
          -3.7840974174736335,
          -4.122690884070814,
          -3.230982069913129,
          -3.4206249305410177,
          -3.852083335846628,
          -7,
          -3.269746373130767,
          -3.8531138935152702,
          -3.927355695635591,
          -3.074747891283198,
          -7,
          -3.5649880827373353,
          -2.969042967305813,
          -4.473165692313548,
          -3.450227107028447,
          -4.356599435724971,
          -3.9018313429827627,
          -3.254513550378272,
          -3.2053848312193485,
          -4.5011551526205675,
          -7,
          -3.6632431070858584,
          -3.6902214025836595,
          -7,
          -3.080937141070891,
          -4.5234472987303755,
          -3.977867257898025,
          -3.7571790442859356,
          -3.7603470785299065,
          -3.8431081419996067,
          -4.191520876040194,
          -4.122346966255079,
          -3.1694539986517043,
          -4.233846088909559,
          -3.664721509386932,
          -4.003417445202194,
          -3.49560379871742,
          -3.6401094007920802,
          -3.1949874740307362,
          -3.0481642458737346,
          -3.4287825114969546,
          -4.326909078957348,
          -2.9495564322620074,
          -3.459241664878082,
          -4.3442153756565,
          -3.0995406620105483,
          -3.25854700301131,
          -3.9802501704106534,
          -7,
          -3.5518158223510157,
          -3.63002085111341,
          -7,
          -3.6230251917855596,
          -1.7089606328996565,
          -3.5278875659527045,
          -7,
          -3.1593517822748245,
          -2.887522641700816,
          -3.782677688081816,
          -4.294267772179458,
          -7,
          -4.296116492169714,
          -2.9134871923593626,
          -4.397644587969917,
          -4.056347339540412,
          -4.18904090790901,
          -2.756108284585342,
          -7,
          -3.9995002739482257,
          -3.185409929405979,
          -3.453553118913122,
          -3.7593089314156347,
          -3.5939380039687028,
          -3.6258095810155693,
          -3.3680122364583953,
          -3.4407079732485175,
          -7,
          -3.5369532983211798,
          -2.8884304517591888,
          -3.654830860802844,
          -3.268671559746992,
          -7,
          -4.359512960594626,
          -2.195198314008875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0816712872909235,
          -3.2696027394176372,
          -4.026267622231873,
          -3.172310968521954,
          -7,
          -4.018679698624002,
          -3.043553438113086,
          -4.330555809062996,
          -7,
          -4.2934951434720245,
          -3.389856860618742,
          -3.9893385599532865,
          -3.0918320976941964,
          -3.5850280996750423,
          -3.998695158311656,
          -4.324611653328921,
          -4.032753030285057,
          -3.846378353712088,
          -3.8955698643861068,
          -7,
          -4.298612947759947,
          -7,
          -7,
          -4.000824376605606,
          -7,
          -4.04766419460156,
          -7,
          -3.261575091606645,
          -7,
          -7,
          -3.620530148253107,
          -3.5649360299941315,
          -2.995559366519752,
          -7,
          -4.337219584418181,
          -7,
          -4.304770488523259,
          -7,
          -7,
          -4.313761796292436,
          -2.9737434376601035,
          -4.289432863850786,
          -3.5934411445018064,
          -4.029018329546481,
          -4.011908613349155,
          -3.3757915976851924,
          -3.69605043980775,
          -3.537714180353135,
          -7,
          -4.300182294646901,
          -4.319043566399113,
          -3.678897576201988,
          -3.2837659364659917,
          -4.289811839117621,
          -3.874017703862186,
          -4.046241459145623,
          -7,
          -4.040905475737317,
          -7,
          -7,
          -4.127817234480274,
          -3.8470994481573415,
          -2.873870943586566,
          -4.03852081516169,
          -3.7575858013465804,
          -4.313571968439817,
          -7,
          -3.813213918024926,
          -7,
          -3.219619449979454,
          -3.8188634466898144,
          -3.8475315308233258,
          -3.1475389218886427,
          -3.708697027024642,
          -7,
          -3.0201367562556896,
          -3.166345522007818,
          -4.062863902110119,
          -4.0268599859845615,
          -3.2704237178699413,
          -3.640938348618988,
          -4.086555575051295,
          -4.0081954933208195,
          -3.6281552970774773,
          -3.770041554319669,
          -4.009960531470598,
          -4.307795448115974,
          -4.289878682790416,
          -7,
          -2.660969667837611,
          -3.7371926427047373,
          -7,
          -4.338595923576831,
          -3.6811672035972047,
          -7,
          -3.6213450835431074,
          -3.2708715098186003,
          -4.070942474030112,
          -4.036569016076007,
          -7,
          -4.016009034734362,
          -7,
          -3.6695957810243134,
          -3.6738499773429494,
          -4.376941757146759,
          -7,
          -7,
          -4.005309236848516,
          -2.6574243844044845,
          -7,
          -7,
          -7,
          -7,
          -3.990138980051281,
          -7,
          -7,
          -3.6249349378555262,
          -3.6160972451781976,
          -7,
          -3.82013575187043,
          -4.2996380249790755,
          -7,
          -7,
          -4.000867721531227,
          -4.298285285484084,
          -4.029708362514895,
          -3.7120180004512506,
          -3.3259122856009586,
          -3.916471495447239,
          -3.4673860925523505,
          -7,
          -7,
          -3.8728358439998014,
          -7,
          -7,
          -3.255487875542584,
          -7,
          -7,
          -3.746673112470323,
          -4.335698551498222,
          -3.8556604651432527,
          -7,
          -7,
          -3.724644453746363,
          -7,
          -3.768508607439089,
          -7,
          -2.6897635157677504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.602282510234337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.336419704862658,
          -7,
          -7,
          -7,
          -4.668668908051015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.186717819029356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.06268940309636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5456008773184835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1233615587462964,
          -7,
          -3.4766867429456445,
          -7,
          -7,
          -7,
          -4.45193219896035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.845098040014257,
          -7,
          -7,
          -7,
          -3.365721916747837,
          -7,
          -7,
          -7,
          -7,
          -3.676931263673469,
          -7,
          -7,
          -7,
          -7,
          -4.081743249922721,
          -7,
          -7,
          -3.3104808914626753,
          -3.5298151966446305,
          -7,
          -7,
          -7,
          -4.452522424089479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.365787395093661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024321442141565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.540354505451778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.41075423394305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.574872019591453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354050785610767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.7128710007558485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163782345773859,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.231444102917431,
          -7,
          -4.709981891514242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313234291694724,
          -3.319574469725743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.103803720955957,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.874074455499286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6049816296074315,
          -7,
          -4.555215405126073,
          -7,
          -5.2731691668058485,
          -7,
          -7,
          -4.7170793938576265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3727279408855955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.899218417851373,
          -7,
          -7,
          -3.6904729652670305,
          -4.293738117783524,
          -7,
          -7,
          -7,
          -4.069446083880313,
          -7,
          -7,
          -4.57848448648651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278593568241134,
          -7,
          -7,
          -4.620796887671208,
          -7,
          -7,
          -7,
          -5.3877083108116155,
          -7,
          -4.530161263362409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.773223105446387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.14938848527283,
          -7,
          -4.311457168381031,
          -7,
          -2.8416209136493107,
          -3.861321542455379,
          -2.2496641512224946,
          -7,
          -3.7234761958641114,
          -7,
          -4.93408415896217,
          -7,
          -7,
          -2.8357539675193832,
          -4.660998211489886,
          -7,
          -7,
          -4.133858125203335,
          -7,
          -7,
          -7,
          -4.069279499594718,
          -3.6527296960692475,
          -7,
          -3.5757871627509847,
          -4.311621080820672,
          -4.803206094655253,
          -7,
          -7,
          -7,
          -4.352737095711291,
          -7,
          -5.104097710604107,
          -3.7703732878674874,
          -7,
          -7,
          -4.318876874660981,
          -7,
          -4.78172666001846,
          -7,
          -4.2102649990322885,
          -7,
          -4.420313384988272,
          -4.485295438726089,
          -7,
          -4.097723243076378,
          -3.9137897777429553,
          -7,
          -4.648283880781487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7024305364455254,
          -7,
          -3.24551266781415,
          -4.038461196178564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.540718677399603,
          -3.5983527098692836,
          -7,
          -7,
          -4.12165831249807,
          -7,
          -3.6504046698680317,
          -7,
          -7,
          -3.766635886310268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.838639235946072,
          -4.184755292957543,
          -7,
          -3.417803722639881,
          -7,
          -3.02201573981772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.667826378950711,
          -1.6830470382388496,
          -3.1997551772534747,
          -7,
          -2.9242792860618816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4952667443878105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024759239035396,
          -7,
          -2.797613730153076,
          -7,
          -7,
          -7,
          -7,
          -3.761852694466383,
          -7,
          -7,
          -3.49087108434559,
          -7,
          -7,
          -7,
          -3.5874354265840136,
          -7,
          -7,
          -4.302352577919563,
          -7,
          -7,
          -7,
          -7,
          -3.3462551493613857,
          -7,
          -7,
          -7,
          -7,
          -3.7547495668660162,
          -7,
          -7,
          -7,
          -4.226445232748228,
          -7,
          -4.156730826499419,
          -3.7663384752512874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0695976288793294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188647295999717,
          -7,
          -1.88711696101553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1746411926604483,
          -3.4037380503638555,
          -7,
          -7,
          -7,
          -7,
          -3.036628895362161,
          -7,
          -7,
          -3.7180585877122407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0213960567419713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1886754229698315,
          -4.205258512004059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5713011255662694,
          -7,
          -7,
          -4.96954869669576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.387265215784176,
          -7,
          -7,
          -7,
          -7,
          -2.9417598138146954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.907115638871369,
          -7,
          -3.8904769089601707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145724574880668,
          -7,
          -7,
          -7,
          -7,
          -3.711975854351756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.229758611221373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6036855496146996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.079271714641203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8506462351830666,
          -4.691792939736922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.018658897585517,
          -3.707995746422929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.175263242633451,
          -7,
          -3.385069776331935,
          -2.8573324964312685,
          -7,
          -4.752985205432184,
          -7,
          -7,
          -7,
          -2.4292137870854282,
          -2.0782755220866007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.574816148523287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.137986732723532,
          -7,
          -7,
          -3.7218930162149575,
          -3.2949069106051923,
          -7,
          -7,
          -7,
          -3.837019948540908,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5514499979728753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.110589710299249,
          -7,
          -7,
          -7,
          -7,
          -2.568495067193246,
          -4.941302682607611,
          -7,
          -7,
          -7,
          -7,
          -2.888179493918325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9030899869919438,
          -4.231664945021339,
          -7,
          -7,
          -7,
          -3.9801852369473347,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4800069429571505,
          -7,
          -7,
          -2.683947130751512,
          -7,
          -7,
          -2.470924753299968,
          -2.6242820958356683,
          -3.1559430179718366,
          -7,
          -7,
          -3.9147661369258526,
          -7,
          -7,
          -7,
          -5.131069836497796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4653828514484184,
          -2.919862253555538,
          -3.48826861549546,
          -7,
          -5.8282389295255035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.675136504467994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.875153324063777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4631461367263494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3443922736851106,
          -7,
          -2.9025467793139916,
          -3.6174197467371765,
          -2.7041505168397992,
          -4.499480881230387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.878740036824943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3502480183341627,
          -7,
          -5.065041648054379,
          -3.5685537120494426,
          -7,
          -7,
          -7,
          -5.234772824533177,
          -1.9577885519831222,
          -2.6725596277632757,
          -4.436877927710658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.9734699524609507,
          -7,
          -7,
          -3.6392872259102367,
          -7,
          -4.036060818784233,
          -5.01043141261124,
          -7,
          -2.6364878963533656,
          -3.361160995195026,
          -7,
          -4.255156677797138,
          -7,
          -5.404896975382031,
          -7,
          -7,
          -7,
          -7,
          -4.427745699349721,
          -4.780742035973011,
          -7,
          -7,
          -7,
          -4.896702544930834,
          -7,
          -2.893206753059848,
          -7,
          -4.176419268765049,
          -7,
          -3.841730871182167,
          -7,
          -7,
          -4.6049816296074315,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2990712600274095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6334684555795866,
          -7,
          -7,
          -7,
          -4.318125969073185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.636888906983799,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.093551253702007,
          -7,
          -7,
          -7,
          -3.4450330705113963,
          -7,
          -3.1179338350396413,
          -7,
          -7,
          -3.766561552637531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1744959193752993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.265525335219074,
          -4.116277542184733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7895807121644256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.772834927239018,
          -7,
          -3.5864747785713966,
          -3.3053513694466234,
          -3.998302940098541,
          -7,
          -7,
          -7,
          -4.020692678682027,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.525731356850706,
          -7,
          -7,
          -4.542912526000351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313128713845194,
          -3.6379897807846855,
          -7,
          -7,
          -3.1772478362556233,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7013324461464732,
          -7,
          -7,
          -7,
          -2.8943160626844384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.494446809281385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.203168922875464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.270493668465084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7058637122839193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.605660526371362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.445588636884166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.124347694112854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.13950127473591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.501470072100412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.537668009845832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7528670703486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.653852867088518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.893428841779545,
          -7,
          -4.120837060254737,
          -5.4116592619924875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9409197134280625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.828189263324731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.769310847343161,
          -7,
          -7,
          -4.709676921319747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.996191962799318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092439911331141,
          -4.3227979683463875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.763716179607514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.134591434710877,
          -4.4838819562406345,
          -4.200129722638182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6190933306267428,
          -7,
          -7,
          -7,
          -7,
          -3.353820094897413,
          -7,
          -7,
          -7,
          -5.4047653184023146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941819404166313,
          -4.95424733490676,
          -7,
          -5.045817636181431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4636690681343865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.493695000988786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.792244564836703,
          -4.785336954534081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.045604591991318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.017492446477275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.903165981876918,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.571707667478758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.563836918664545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.839792184445329,
          -7,
          -7,
          -7,
          -7,
          -3.623766000133931,
          -7,
          -7,
          -7,
          -7,
          -2.720159303405957,
          -4.6064995975128875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5466660250701842,
          -4.448010273039476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.928925593652149,
          -7,
          -4.0124153747624325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.61627627546151,
          -2.9822712330395684,
          -7,
          -7,
          -7,
          -3.614158709509175,
          -7,
          -7,
          -4.753123244681713,
          -7,
          -7,
          -7,
          -4.090028673590874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.364701049594699,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.974961259485409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.975316900589052,
          -7,
          -7,
          -4.654153430248454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4657545198338777,
          -7,
          -3.743901550485179,
          -7,
          -7,
          -7,
          -7,
          -3.7283537820212285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.411790528526162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163494325730938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.364550995353972,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.424291655008933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.83028705968542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4693310102934105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.097042018466742,
          -7,
          -7,
          -4.0178010275503055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292023351257005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.879921229553079,
          -7,
          -7,
          -4.620495214805232,
          -7,
          -7,
          -7,
          -7,
          -4.269396182694991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4717536368068815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.449555531677028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983581186705791,
          -7,
          -3.7390340870857917,
          -7,
          -7,
          -3.1486026548060932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.487669954658609,
          -7,
          -7,
          -7,
          -7,
          -4.653506769215551,
          -3.7637274037656985,
          -7,
          -7,
          -7,
          -7,
          -3.840461585060537,
          -4.429025156711519,
          -4.3041600855231055,
          -3.580696939712437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.653959822052159,
          -7,
          -4.87002719731595,
          -7,
          -7,
          -4.605832775740528,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.465992220784308,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5289167002776547,
          -3.3330370740447055,
          -7,
          -7,
          -2.6837222824514324,
          -7,
          -2.4953130222377027,
          -2.298158125667446,
          -2.0444526488723307,
          -7,
          -7,
          -1.5947607525864629,
          -2.0247934233387634,
          -3.204933522354145,
          -7,
          -7,
          -7,
          -2.2174839442139063,
          -7,
          -3.8159096508867747,
          -4.616692519380448,
          -4.3092965124823595,
          -7,
          -3.1067007323623543,
          -7,
          -2.5185139398778875,
          -7,
          -7,
          -7,
          -7,
          -1.9852767431792937,
          -7,
          -3.0419845014867866,
          -7,
          -2.8832828000102766,
          -7,
          -2.7052933977148914,
          -7,
          -7,
          -7,
          -7,
          -3.0421252913482664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0556331242728354,
          -1.021779774323242,
          -3.5834821635264125,
          -7,
          -4.170797405996383,
          -7,
          -2.9674309630208207,
          -7,
          -2.8796692056320534,
          -3.5342165443323297,
          -7,
          -2.2340722388625216,
          -2.4712917110589387,
          -7,
          -7,
          -2.503109436671369,
          -7,
          -7,
          -4.3273895893854775,
          -3.5952757118020995,
          -7,
          -3.823887025677337,
          -3.4316853446860116,
          -7,
          -3.0806264869218056,
          -7,
          -2.795482766475396,
          -2.2017384166617116,
          -3.0549958615291417,
          -7,
          -7,
          -7,
          -3.12466721769861,
          -7,
          -7,
          -4.526752694348148,
          -7,
          -3.677728586801082,
          -4.24283946867282,
          -2.4919616863062677,
          -7,
          -2.251029538523903,
          -7,
          -2.0718820073061255,
          -7,
          -7,
          -3.3653943768547783,
          -7,
          -7,
          -7,
          -3.4881627803586124,
          -7,
          -2.167317334748176,
          -7,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -3.78738962135211,
          -1.817144512411414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5397032389478253,
          -7,
          -7,
          -3.799891684656865,
          -2.9673919516143807,
          -2.72926605924713,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8934010868997206,
          -7,
          -7,
          -7,
          -2.5477747053878224,
          -3.0681858617461617,
          -7,
          -7,
          -3.3106933123433606,
          -7,
          -2.933689708957895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4380436918998125,
          -7,
          -7,
          -7,
          -4.303606390634642,
          -4.015317833069116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3394017480193674,
          -7,
          -7,
          -7,
          -3.895680320361074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7200765727681406,
          -3.548662964853018,
          -7,
          -7,
          -7,
          -3.7212333700172775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.113581795950651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8900804415092565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.337472572794907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.361403567658646,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8435068516736086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.156594577249076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008805916155986,
          -7,
          -7,
          -7,
          -4.167861444567519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.966188680956137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7022294276288252,
          -7,
          -7,
          -3.6652056284346006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.198712057460401,
          -7,
          -7,
          -7,
          -7,
          -4.593762200380792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.940474224586627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.069926968752473,
          -7,
          -3.985695859689842,
          -4.039612381896724,
          -7,
          -3.962889987391791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9109710618483087,
          -7,
          -4.0062092405376575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.530263748713028,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7197454925295768,
          -7,
          -7,
          -7,
          -7,
          -3.555215405126073,
          -4.009020737800639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2474728128175467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03981055414835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.887763540692103,
          -7,
          -3.122941047649739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8308131351407133,
          -3.9828589423120753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6331990421206344,
          -7,
          -7,
          -7,
          -3.6542914604812795,
          -7,
          -7,
          -3.8980849663796677,
          -7,
          -7,
          -7,
          -7,
          -3.827401585429265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.222200535388768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.882882981767894,
          -7,
          -3.969276095488932,
          -7,
          -7,
          -3.3735156590247626,
          -7,
          -7,
          -7,
          -7,
          -3.894814329083301,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.258409781163722,
          -7,
          -7,
          -3.6868744999220815,
          -3.1303611463227843,
          -3.0396218207214076,
          -3.1563976972825034,
          -2.8073561540351877,
          -3.845175585676797,
          -1.7228828732324626,
          -2.221967023835514,
          -2.606001153050686,
          -3.141825894511075,
          -3.445085022719354,
          -3.1852410473078057,
          -2.2606288508494834,
          -2.5427749755100844,
          -2.9033459813889246,
          -2.9043943027764954,
          -2.251144529831166,
          -3.2631229746705865,
          -1.6887661065091777,
          -4.095552896019402,
          -2.1266724494173004,
          -2.939872919768489,
          -2.647458205191794,
          -3.204029495212759,
          -2.310424569709,
          -3.456821348021599,
          -2.5787179284944166,
          -1.3206070069540838,
          -3.519434194913703,
          -3.2733281472184315,
          -2.174945640259249,
          -2.459779837201633,
          -2.2363923022305676,
          -1.7297421890640772,
          -1.7529016789031202,
          -2.1586559793926074,
          -2.3569079722192807,
          -3.7369804812535694,
          -1.9070634317438555,
          -4.056037301237244,
          -7,
          -3.667699110681242,
          -4.237047980435429,
          -4.082282589912437,
          -3.9505108929859967,
          -3.0290792589288484,
          -7,
          -3.6780678315733484,
          -7,
          -7,
          -3.6602012013806817,
          -4.079890918334672,
          -4.417621137863894,
          -7,
          -4.200864172135313,
          -4.04241798814325,
          -7,
          -3.7248900028380363,
          -3.332873313531299,
          -3.9559762222483257,
          -7,
          -4.709626072126764,
          -3.694606591570367,
          -3.102029487303426,
          -7,
          -7,
          -7,
          -3.934691224185509,
          -7,
          -4.810751545940375,
          -7,
          -3.416786079747206,
          -7,
          -4.404491617758686,
          -4.1966182713302445,
          -3.9679823208536535,
          -7,
          -4.317415586331099,
          -7,
          -3.9674127581339027,
          -3.846374229730093,
          -7,
          -3.7342113386428104,
          -3.746011107751926,
          -7,
          -4.209867209371226,
          -7,
          -7,
          -2.770445033138055,
          -4.0816712872909235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.997103582001591,
          -7,
          -7,
          -3.7035492982382308,
          -3.4982416126858915,
          -3.576226137449605,
          -3.1347506861086147,
          -7,
          -7,
          -3.6978829086948046,
          -7,
          -3.224099069292356,
          -7,
          -3.7293268096468606,
          -7,
          -3.3463529744506384,
          -3.1124709393381393,
          -3.2554654819924638,
          -7,
          -2.6819808818607593,
          -7,
          -7,
          -3.4360035356698964,
          -7,
          -7,
          -7,
          -3.865370512911087,
          -7,
          -7,
          -3.4378397108401133,
          -3.1847894164948185,
          -1.6538959041317818,
          -7,
          -7,
          -7,
          -3.2702128548962426,
          -7,
          -7,
          -7,
          -4.045440339814774,
          -7,
          -7,
          -7,
          -7,
          -2.921213387765902,
          -3.121067167467729,
          -2.639130597679463,
          -7,
          -3.730862992046494,
          -7,
          -4.148448403523384,
          -2.5287642283562692,
          -7,
          -7,
          -7,
          -1.1449689891352024,
          -3.4191293077419758,
          -3.4223435713550034,
          -7,
          -2.8571195547835098,
          -3.8143142002074595,
          -3.190928131487656,
          -7,
          -3.618780024506215,
          -7,
          -2.4472396579718936,
          -2.641702867149843,
          -7,
          -2.866456128235913,
          -7,
          -7,
          -7,
          -2.5629616387073972,
          -7,
          -7,
          -4.070942474030112,
          -7,
          -7,
          -4.390970414162616,
          -7,
          -7,
          -7,
          -3.703635237583896,
          -2.9110122544187993,
          -3.4686426683915115,
          -3.4572761860613257,
          -7,
          -7,
          -3.205013199181547,
          -3.0154795112301587,
          -7,
          -2.743570062469853,
          -3.502984425501946,
          -3.8133808067338557,
          -4.276162980319142,
          -2.915256893802922,
          -3.1742052269401473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6018711265796486,
          -7,
          -7,
          -7,
          -3.261277741636518,
          -7,
          -7,
          -3.3860528489403894,
          -7,
          -7,
          -7,
          -3.7013088852280753,
          -3.4282158115613255,
          -7,
          -7,
          -7,
          -3.4276483711869328,
          -7,
          -7,
          -7,
          -3.7237839369653294,
          -3.834929096460576,
          -7,
          -2.9798264849916336,
          -3.405218256006282,
          -3.0457140589408676,
          -7,
          -7,
          -3.892595422828898,
          -7,
          -7,
          -2.8727024406868487,
          -7,
          -7,
          -7,
          -3.2477278329097232,
          -7,
          -7,
          -7,
          -3.822429623779357,
          -7,
          -3.3469883009877015,
          -7,
          -7,
          -7,
          -3.991654250266102,
          -4.163563865300896,
          -7,
          -7,
          -3.865192838908103,
          -3.3068394648047046,
          -3.0803522609890255,
          -3.689146005168144,
          -2.902341063964813,
          -2.61519069651607,
          -3.207313717589319,
          -7,
          -7,
          -1.8580870827174711,
          -2.0874794254002533,
          -3.8751046906685627,
          -7,
          -7,
          -3.9894794815772188,
          -3.3187339450877964,
          -1.7072040483297801,
          -3.9591249024611264,
          -7,
          -2.0108367493541595,
          -2.361788883265569,
          -3.433595295800582,
          -4.469188514747329,
          -7,
          -2.9823277781189925,
          -3.331860940572651,
          -4.470248739825372,
          -3.054200095548161,
          -3.8731316106240805,
          -7,
          -7,
          -3.771366970857781,
          -3.5839776507243726,
          -3.5648731035431913,
          -2.570103203626733,
          -3.987725834843644,
          -3.1683571576689884,
          -2.4712324257565594,
          -2.7358779665299697,
          -7,
          -2.8166389448984614,
          -2.5182733060633335,
          -3.17539583139403,
          -2.0158041779437648,
          -3.867143266506253,
          -4.174059807725025,
          -4.202651759757338,
          -3.0789495605356465,
          -2.5570486620906934,
          -1.9248511184664823,
          -3.2935835134961167,
          -2.0426826637480007,
          -2.908622155975595,
          -7,
          -3.5190108276524095,
          -3.0992247033606977,
          -3.570805538589023,
          -3.998084887936556,
          -4.475438727737104,
          -4.466348528450199,
          -3.4724346304941105,
          -2.454453609769247,
          -2.663601345551572,
          -3.425193219436662,
          -7,
          -2.5426995708464664,
          -7,
          -3.356433813056529,
          -3.0705787477018935,
          -4.466393046361356,
          -3.5935352716775633,
          -2.4419703231780603,
          -3.9888115530228063,
          -2.506025600803707,
          -7,
          -4.468524557299703,
          -1.9915809464515983,
          -3.0559443349503614,
          -3.624090474733072,
          -7,
          -3.196480167700148,
          -3.99569368149844,
          -3.657411014595813,
          -2.2502154969062373,
          -3.7856572123457646,
          -4.482845010663455,
          -1.378056211132438,
          -2.235132460652098,
          -1.6018854005791172,
          -2.8847804630386533,
          -7,
          -3.349832359203467,
          -1.8382778529086805,
          -2.2762220844992402,
          -2.156162297781227,
          -3.353235425636195,
          -2.2165201664611134,
          -4.473676704353028,
          -7,
          -7,
          -2.2979792441593623,
          -4.164189220875209,
          -3.34617128174312,
          -3.634578022853888,
          -2.40418376369826,
          -2.355393211588941,
          -3.693448465758027,
          -4.167405957232292,
          -2.9448454003779725,
          -2.910061669631165,
          -2.480593341977752,
          -2.9297253783780044,
          -4.4642510223795595,
          -2.4910644209166546,
          -2.556194049154312,
          -2.1209749788674674,
          -3.6967348842666072,
          -2.7294847709059216,
          -1.2114867846608905,
          -4.471614377603175,
          -3.7065471026403576,
          -7,
          -3.135789010791428,
          -4.477381753267053,
          -3.321722674346009,
          -2.9012855101952053,
          -7,
          -3.9955474494751373,
          -1.3857541362954808,
          -2.94346703500111,
          -4.463489848289935,
          -4.464832197849968,
          -2.0944999610199337,
          -7,
          -3.9863387164044726,
          -3.987427903514197,
          -3.2106157375232303,
          -3.0835623371877907,
          -2.6020932268788046,
          -2.79054104530852,
          -1.8216207799937747,
          -2.3037326193533505,
          -3.9957813970840017,
          -3.144035046172394,
          -7,
          -7,
          -3.097459771245042,
          -3.28029646656266,
          -3.0041739220558177,
          -7,
          -4.468686951770906,
          -7,
          -2.7444782755162587,
          -7,
          -7,
          -4.008742074877672,
          -3.0478515240423842,
          -7,
          -2.9741661461216427,
          -7,
          -3.7950592943557186,
          -3.7933992038918922,
          -3.7859274684801276,
          -3.067142878347675,
          -4.005695181118511,
          -7,
          -1.928812549985953,
          -4.168600594123457,
          -7,
          -7,
          -7,
          -7,
          -4.166977447595255,
          -4.464995978618864,
          -2.037486139848775,
          -3.1673468775856355,
          -3.2808332273459495,
          -4.464966204890961,
          -2.848471368001359,
          -1.675543884919733,
          -2.680481725745306,
          -1.8278961396555933,
          -2.0288404510802023,
          -2.6028699186636284,
          -2.439854098108879,
          -3.4814856258274136,
          -3.3085644135612386,
          -3.8757555792580543,
          -3.7035063221873417,
          -3.563705162555925,
          -7,
          -3.3763292395085953,
          -7,
          -2.7415686772957413,
          -2.8323385677415485,
          -2.744284383998204,
          -7,
          -2.7743129733104617,
          -4.464325575532697,
          -3.073756261784487,
          -3.9943171526696366,
          -3.226141456150439,
          -4.468834530432752,
          -7,
          -2.953670693054014,
          -3.2858384967689096,
          -7,
          -2.973589623427257,
          -2.276811893626411,
          -2.1663600898260897,
          -7,
          -3.862205942706113,
          -3.213133908974258,
          -3.4238116524224047,
          -4.166000639801866,
          -4.470189906285553,
          -7,
          -4.471511736976963,
          -2.345177616542704,
          -2.8877780013484498,
          -2.322811252582744,
          -2.655004010022997,
          -7,
          -3.6911699341316035,
          -2.6118560183160606,
          -2.398523541822513,
          -4.464653457449502,
          -4.466393046361356,
          -4.011824095594308,
          -4.00559515442157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.483515978390542,
          -1.763111382025732,
          -4.163042046914198,
          -3.9875322027298394,
          -7,
          -7,
          -3.5187332251549033,
          -3.3927262568919367,
          -7,
          -3.871149525585623,
          -3.923049630943971,
          -4.184180195347259,
          -2.4039905604956546,
          -2.2590012368621273,
          -2.1024597589212073,
          -4.164516429061985,
          -4.464042205438811,
          -1.6076627897985016,
          -2.4720886863444194,
          -1.4569662182585454,
          -4.473603739435952,
          -2.778374326838308,
          -3.360768133085603,
          -3.5647695962352564,
          -4.468701711894003,
          -3.0935572398057647,
          -2.3719524902252824,
          -1.8312226028239351,
          -2.7805101861860018,
          -3.597073275682156,
          -2.5702113127983788,
          -2.953452164395173,
          -4.466274321789292,
          -3.437318070354534,
          -3.0360090550537797,
          -3.2921314153833943,
          -7,
          -4.167465028843088,
          -3.8770976656512293,
          -4.468037009225747,
          -4.005552278783667,
          -7,
          -3.3131639093135794,
          -2.5263157759703248,
          -7,
          -4.196148539699125,
          -4.004192356259714,
          -2.482519614750209,
          -1.9781489374492274,
          -3.621621331667342,
          -2.939981890516324,
          -4.465873386571601,
          -3.5709221981779065,
          -2.980297527520052,
          -3.3089768152351886,
          -2.284337689848148,
          -2.922848330955433,
          -3.7633031783639455,
          -3.7077546411086244,
          -3.903496947335859,
          -3.2119912370348325,
          -2.116145767991693,
          -2.611047062431195,
          -4.163340305618251,
          -7,
          -7,
          -2.6151511448726805,
          -3.1354904389696348,
          -4.168600594123457,
          -7,
          -3.3185224421412562,
          -4.46821436276855,
          -3.7892986111594413,
          -3.8676000541351447,
          -2.441623734985907,
          -4.4729903496766585,
          -3.1972660451184867,
          -3.474851739592984,
          -2.521020484331018,
          -2.918961319225426,
          -1.8669853928572224,
          -2.932504495346671,
          -7,
          -2.7630409496258364,
          -3.2544076201709182,
          -2.970610705566062,
          -7,
          -3.6300499369039914,
          -3.865192838908103,
          -2.9875173043753707,
          -2.8074849162033497,
          -3.251638220448212,
          -3.8863073803643697,
          -4.465248972927137,
          -7,
          -3.3473857798884064,
          -4.468376873249617,
          -4.472317546316842,
          -7,
          -3.8207792582284554,
          -4.469291705846857,
          -2.2121149993345925,
          -7,
          -7,
          -2.4230980311936072,
          -2.8119620643588155,
          -3.294466226161593,
          -2.5232818316095447,
          -2.5200021753291946,
          -1.9600610429201442,
          -1.6104263490510267,
          -2.2489873811994956,
          -1.80275017045316,
          -2.0595761546756988,
          -2.322192435864935,
          -2.861356052170766,
          -2.383901844372175,
          -2.3967256942857986,
          -1.692277730333473,
          -3.0355950362195,
          -2.03567473319776,
          -1.9129909650562347,
          -2.9514037575639716,
          -2.7767543206122136,
          -4.033772123645866,
          -3.223459310119068,
          -3.131765267829788,
          -1.9476093557914202,
          -1.7993838349774411,
          -3.7451355399585355,
          -2.6925531793391446,
          -2.886609449744545,
          -3.146888794364442,
          -1.752576741650785,
          -2.424181349757642,
          -2.3109090808281607,
          -3.1049071253508416,
          -3.077141932831542,
          -2.9664119711717043,
          -3.464116794444044,
          -3.4445972265477596,
          -2.586587304671755,
          -2.103623174492221,
          -1.8762702230288588,
          -3.24417521304034,
          -2.4822890258970154,
          -2.2323788794900854,
          -2.2637568032034094,
          -2.3074300025941716,
          -2.5565996215786173,
          -2.945327877376854,
          -1.5818406616841054,
          -2.961375888020618,
          -3.7240163079266475,
          -3.0421893218318448,
          -2.4802574419693437,
          -2.011953813769505,
          -7,
          -2.01596835978946,
          -2.2881498219364174,
          -7,
          -3.0649444260386174,
          -3.572008127378336,
          -4.045479453110779,
          -3.8730734429384888,
          -2.297940489369286,
          -1.9742279440562436,
          -3.5597505795177193,
          -4.167154813209906,
          -3.6224730712781232,
          -4.469453813767127,
          -1.8508118273944065,
          -4.062945310995021,
          -3.871881587834298,
          -2.9355501421681085,
          -3.6133708647836684,
          -3.102716997946335,
          -2.9391512732498355,
          -2.9458123456233185,
          -3.165020412803073,
          -2.764723060841219,
          -2.357652922807868,
          -2.2567402897487763,
          -2.4590356178104207,
          -1.6830957807759497,
          -3.2424244938652858,
          -2.0251805414512707,
          -1.8597310679542078,
          -2.5334583477582,
          -3.279148234766356,
          -4.469822015978163,
          -2.943828604020416,
          -2.587635303959155,
          -3.2696027394176372,
          -7,
          -7,
          -4.4636690681343865,
          -4.465992220784308,
          -2.997103582001591,
          -7,
          -2.492252293640538,
          -1.1759232859412674,
          -2.620210439573049,
          -1.9574911927012917,
          -1.7542720461167403,
          -1.1202428662818602,
          -2.8947703456567213,
          -3.3881900415998545,
          -1.8830699435990796,
          -3.261069475456373,
          -1.8089182124058005,
          -1.8790904415064849,
          -2.3474778602483877,
          -3.1659928785648397,
          -1.7354019465713875,
          -2.5666717184381787,
          -2.0871825845455936,
          -2.7839618855736754,
          -2.5657150317200914,
          -1.6511105267296189,
          -3.6263256999716096,
          -2.531302696921394,
          -3.2794958384653494,
          -1.7777310331453406,
          -7,
          -1.6888866193218477,
          -3.988365695942476,
          -2.863679667875898,
          -2.293848773185784,
          -1.1262950143354775,
          -1.3053238048195381,
          -3.861967294772421,
          -2.5264226592624057,
          -1.7886949330230073,
          -3.1524776333829094,
          -2.443297610528981,
          -4.463474909963959,
          -2.4655993959782605,
          -1.1205007875965254,
          -7,
          -2.9610204328379766,
          -2.8285197970206033,
          -2.4323480341699906,
          -1.7262590452768576,
          -2.816373888752362,
          -2.077832842045998,
          -2.6425081628115623,
          -2.577830453990907,
          -2.381029081802262,
          -1.3006191504514415,
          -2.1492489190780883,
          -3.51075346917954,
          -2.114986933832905,
          -2.1176993012518817,
          -3.207804384478623,
          -1.2142070073224809,
          -3.3243559586374474,
          -3.768001359986824,
          -1.891948375590815,
          -2.5318052249185006,
          -1.221134651437184,
          -1.7425355244551888,
          -1.599799126102246,
          -2.2281914879610185,
          -2.6919503906454767,
          -3.406515849529335,
          -3.215137985872625,
          -2.2374371011262446,
          -2.900160378015098,
          -2.381491717770132,
          -1.746521162964555,
          -2.1639005948322336,
          -3.3176455432211585,
          -1.8283882350228342,
          -1.0236274499334386,
          -2.483900426858269,
          -2.998849699010446,
          -2.075546961392531,
          -2.640136227278698,
          -2.686061425390275,
          -2.344101045186752,
          -1.44360833679831,
          -1.7415820477549837,
          -2.737597390620243,
          -2.6558947921952347,
          -3.988097961819528,
          -3.8619523749214517,
          -1.8521684108312613,
          -2.026992120467688,
          -2.2391227510637246,
          -1.323246817734007,
          -1.4078192004090677,
          -2.0798270372177763,
          -1.863002557270298,
          -2.2539200856685158,
          -2.204688959253367,
          -2.2473733831061242,
          -3.7721749608246142,
          -2.6965855300976074,
          -4.163086798780062,
          -1.9882213973042904,
          -2.3087488049859366,
          -2.3980183705310725,
          -3.987338484245791,
          -2.043021327727601,
          -2.5601983327861335,
          -1.2657706323852562,
          -2.916395453771481,
          -3.8672759317711667,
          -3.8624444595730716,
          -3.9872490465625705,
          -3.6208941807700508,
          -3.4650852875574327,
          -2.8222423977763826,
          -1.6458970683831013,
          -3.120015684402852,
          -2.7217111449013283,
          -3.86812991495759,
          -2.7714110818203803,
          -3.6889386481371726,
          -3.6910225207762957,
          -4.172310968521954,
          -3.470645657886728,
          -2.4773179778843373,
          -3.2259120500140233,
          -2.2148332553701793,
          -2.4002966758658393,
          -3.3444446740811564,
          -2.5725039734840767,
          -3.765430111553846,
          -2.4740936647517855,
          -3.516447228070065,
          -4.46372879165109,
          -2.2892988830661953,
          -3.2174400738687097,
          -3.3261748728967495,
          -2.7114806713603596,
          -2.378872890939344,
          -3.171670744519088,
          -3.511512010394553,
          -3.9896425968775038,
          -3.109437921160224,
          -3.9879491492900074,
          -2.337941652904336,
          -3.119155439530316,
          -3.9977648799305885,
          -7,
          -3.05307844348342,
          -7,
          -2.5930644316587177,
          -7,
          -3.3346547668832414,
          -2.3961993470957363,
          -2.8680563618230415,
          -7,
          -7,
          -3.595813344772756,
          -7,
          -7,
          -7,
          -3.3327918116376987,
          -3.0462756204011914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.413709458318653,
          -2.9649192942866427,
          -7,
          -3.0908221633946567,
          -3.1258865574656323,
          -7,
          -7,
          -7,
          -3.080506233707164,
          -2.861683729919097,
          -7,
          -3.5322214596157986,
          -2.953920690616223,
          -7,
          -7,
          -7,
          -3.5487578285737045,
          -3.345765693114488,
          -2.379162335877126,
          -3.300378064870703,
          -3.2800089531081857,
          -7,
          -3.5438570500705913,
          -2.7299742856995555,
          -7,
          -2.8666417205660397,
          -3.1487568513217923,
          -2.2227164711475833,
          -3.058995093525416,
          -7,
          -7,
          -2.4998397612917653,
          -3.5167997040816243,
          -2.654641898988549,
          -3.0323165027604055,
          -2.313500417575471,
          -3.287129620719111,
          -3.37675939540488,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40226138245468,
          -2.222044838333418,
          -3.172091867626748,
          -3.3283796034387376,
          -3.3111178426625054,
          -1.9867717342662448,
          -3.2975416678181597,
          -2.5378820317420177,
          -2.3636871758895452,
          -7,
          -3.147882346295201,
          -3.6988541770298506,
          -7,
          -2.977151788903537,
          -7,
          -7,
          -1.51638280249711,
          -3.0778522036135776,
          -3.0599418880619544,
          -7,
          -2.552972237463008,
          -3.404320467221731,
          -2.7114322715545685,
          -3.2242740142942576,
          -3.225050696138049,
          -7,
          -3.0431948924722545,
          -2.998259338423699,
          -2.6972293427597176,
          -7,
          -7,
          -7,
          -2.7414142504968653,
          -3.5958267770732233,
          -3.428620672671939,
          -7,
          -3.2398831523208846,
          -7,
          -7,
          -7,
          -2.0679840801684466,
          -3.0038911662369103,
          -2.74707871738161,
          -3.479719235439571,
          -2.113639543632745,
          -2.8476925944963933,
          -3.3909351071033793,
          -7,
          -2.850339854583479,
          -3.4742162640762553,
          -3.234955743400412,
          -7,
          -7,
          -2.788168371141168,
          -3.2247056756774772,
          -3.7649975992848805,
          -7,
          -3.136059641017734,
          -3.6866809474663245,
          -3.389343311252078,
          -3.6260836162697796,
          -7,
          -4.000572890691385,
          -2.9766556049707797,
          -2.935809453809933,
          -3.7460890430562004,
          -3.018284308426531,
          -7,
          -1.7400274402031979,
          -2.9539528832319233,
          -7,
          -3.29928933408768,
          -3.7934411329776636,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.94023179499651,
          -2.722886934182042,
          -3.1566592665661197,
          -7,
          -7,
          -3.959232249050996,
          -7,
          -7,
          -3.1630122097748297,
          -7,
          -3.4383313469688166,
          -7,
          -3.0511525224473814,
          -7,
          -3.179767161604466,
          -7,
          -3.285107029566812,
          -3.235654676956949,
          -2.8779469516291885,
          -7,
          -7,
          -3.0292484623758416,
          -2.8258586820285867,
          -2.3329992017390233,
          -3.2275010649714306,
          -2.290615219045122,
          -2.6623530208877133,
          -2.4247001891741125,
          -3.4090416060671918,
          -7,
          -7,
          -7,
          -2.5673625074157043,
          -3.0549958615291417,
          -7,
          -7,
          -2.953627920966533,
          -7,
          -3.614833964658131,
          -7,
          -2.9856830355921042,
          -2.7821160652538497,
          -7,
          -3.321253121961899,
          -2.080167159029276,
          -3.4818724103106633,
          -3.2884728005997825,
          -2.3183416396707175,
          -2.4852050239452272,
          -2.8568798705623637,
          -2.7987887139512493,
          -3.064008486531724,
          -7,
          -3.0104413055367156,
          -7,
          -3.2412558576352395,
          -2.285182108568106,
          -3.2246995121061377,
          -7,
          -2.9221413362079565,
          -2.9903388547876015,
          -3.3831568450325724,
          -7,
          -3.4998244958395794,
          -3.3544926005894364,
          -3.3811150807098507,
          -2.5677072241765035,
          -2.572987708198205,
          -7,
          -2.388722700475175,
          -4.083592192787562,
          -3.03362477121926,
          -7,
          -3.292256071356476,
          -7,
          -7,
          -3.330819466495837,
          -3.371806458507416,
          -3.3153404766272883,
          -7,
          -3.082516096060493,
          -2.772566173085639,
          -3.399731392881681,
          -4.195689202054842,
          -7,
          -2.456935102197454,
          -2.605305046141109,
          -7,
          -7,
          -7,
          -3.262332413822626,
          -3.20682587603185,
          -3.203032887014711,
          -7,
          -7,
          -7,
          -3.0427723374976736,
          -3.28668096935493,
          -3.0161973535124393,
          -2.471024863442615,
          -3.4182964159614206,
          -3.2884728005997825,
          -2.9960736544852753,
          -7,
          -7,
          -3.4082399653118496,
          -3.0953437318725254,
          -3.284881714655453,
          -7,
          -3.5009222391903005,
          -3.5308397786165204,
          -3.2770358881721102,
          -2.7915826961282115,
          -7,
          -7,
          -7,
          -1.728232000140194,
          -7,
          -2.870647712887689,
          -2.455859567203536,
          -3.9455014103827257,
          -3.4292676664331685,
          -7,
          -7,
          -3.012492105236467,
          -3.545430829465351,
          -2.299141220240316,
          -2.8722210396534766,
          -3.3236645356081,
          -2.1231411967028095,
          -2.926856708949692,
          -2.8419848045901137,
          -2.468495024507069,
          -2.1046075980608174,
          -1.7102566530665484,
          -7,
          -3.350441856535061,
          -2.2651127598506875,
          -3.3439990690571615,
          -3.2064210652379885,
          -7,
          -2.8691143269793753,
          -2.8529589869476504,
          -3.4619484952037616,
          -3.3270522653266985,
          -7,
          -3.5924876498132257,
          -2.4902394852462875,
          -3.328583449714202,
          -3.3642799327019315,
          -3.3142886609474975,
          -2.719497016610582,
          -2.3123238548327696,
          -2.4508903227897534,
          -3.244771761495295,
          -3.3725438007590705,
          -2.625255273095499,
          -2.2107897277615662,
          -2.4287645323832137,
          -3.1046009052294363,
          -4.285278190754191,
          -2.773835184612231,
          -7,
          -7,
          -7,
          -3.1584228065848823,
          -2.7100403966611224,
          -2.8872420998960684,
          -2.2456888879350108,
          -2.609807769328702,
          -3.3463529744506384,
          -3.2570783059665684,
          -7,
          -2.430961453354948,
          -7,
          -3.1441069730493227,
          -2.908101874185159,
          -3.1043163645117278,
          -4.167104566972922,
          -3.299138371401992,
          -4.01278061660159,
          -7,
          -2.806970935923172,
          -3.609758541684431,
          -2.6415907465950124,
          -7,
          -2.6524075191391137,
          -3.3346547668832414,
          -2.916278440573439,
          -2.8797264966395772,
          -2.788554010783411,
          -3.5589484459780394,
          -3.0038911662369103,
          -7,
          -2.823800153749878,
          -2.442675706122545,
          -3.0963885466873666,
          -2.565510502554111,
          -2.491730208478279,
          -2.8825245379548803,
          -2.561992029499823,
          -7,
          -7,
          -4.611606489380638,
          -4.782866607064193,
          -7,
          -7,
          -4.725192655638864,
          -4.400019635065158,
          -3.957128197676813,
          -4.306038816336349,
          -3.774803219379627,
          -4.040958173384207,
          -7,
          -7,
          -4.731193772452004,
          -4.703244076143745,
          -4.297059824075058,
          -7,
          -4.386231350579525,
          -4.629292344154639,
          -7,
          -7,
          -7,
          -5.089599585518829,
          -7,
          -4.550802954195946,
          -3.8522969658269255,
          -7,
          -4.6723472746210035,
          -7,
          -7,
          -3.7436024005366573,
          -7,
          -4.690754099997801,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.174074351837882,
          -4.225257576924099,
          -3.328236854094916,
          -2.100862663563312,
          -4.20686184095936,
          -3.017768120712702,
          -3.059800000399848,
          -3.177969136009376,
          -3.659136240870397,
          -3.273579945676206,
          -3.6158148299730293,
          -2.2233370581702534,
          -2.167603148830162,
          -3.8622208538486498,
          -3.450976523069686,
          -3.188286757912536,
          -7,
          -3.1588748984559967,
          -3.3079771322250884,
          -7,
          -3.586812269443376,
          -3.797700234382403,
          -3.788521887222473,
          -7,
          -3.1167693598151747,
          -3.4141978319393456,
          -4.707699593599912,
          -2.6458151182966416,
          -2.323939275128193,
          -7,
          -3.339067945753538,
          -3.8757555792580543,
          -4.930813239879962,
          -3.526113023421766,
          -4.255513712819534,
          -7,
          -3.6528456212808718,
          -3.4555300473427017,
          -3.7932873732019723,
          -3.440436766105774,
          -3.1377921781310056,
          -3.5958267770732233,
          -3.3875785621090952,
          -3.3616469040394903,
          -2.931966114728173,
          -3.0207413920716344,
          -3.640741642283412,
          -7,
          -3.386338028485665,
          -7,
          -3.7333577879255855,
          -3.4774416871683957,
          -4.026267622231873,
          -7,
          -3.2990712600274095,
          -7,
          -7,
          -7,
          -2.492252293640538,
          -7,
          -1.8789046024734604,
          -7,
          -7,
          -2.716300195650392,
          -7,
          -1.683175737152787,
          -2.1881246066559927,
          -2.1281008870627143,
          -7,
          -2.5216419609600518,
          -1.6221168399989923,
          -2.6924944075030846,
          -7,
          -7,
          -7,
          -1.9716092134509804,
          -7,
          -7,
          -2.75931910713189,
          -7,
          -2.709439574132411,
          -2.1924612493910622,
          -1.6122210560164774,
          -7,
          -2.7271714243553484,
          -7,
          -3.328583449714202,
          -4.0105331576559315,
          -2.7308030624345148,
          -3.7190756631711492,
          -7,
          -3.630122642859312,
          -1.395451208268343,
          -7,
          -1.2613174455417835,
          -7,
          -1.4391836821692012,
          -1.8523459656801773,
          -7,
          -7,
          -3.59250984790068,
          -1.4993583093807943,
          -7,
          -3.0790002523038495,
          -3.509740015570382,
          -1.813866802650178,
          -3.3961993470957363,
          -1.2965236571066519,
          -2.0588844995901434,
          -3.757294782847373,
          -7,
          -1.3742947154876974,
          -1.1407535470370553,
          -7,
          -3.2355284469075487,
          -7,
          -7,
          -3.971971276399757,
          -1.7599772814550572,
          -2.078739953895659,
          -1.6405642464819516,
          -3.433209608771474,
          -2.7933712489189557,
          -7,
          -7,
          -2.095444656976254,
          -3.0251302389975376,
          -7,
          -1.469695084958144,
          -1.3925294659911405,
          -3.4753805931433615,
          -3.2893659515200318,
          -1.2451116571837162,
          -2.11653395340411,
          -2.082004405384004,
          -2.7341137402172424,
          -2.23127940943518,
          -2.94468003388131,
          -2.6636381161507066,
          -2.986473147467338,
          -2.185839694183446,
          -3.307282047033346,
          -3.4763968267253302,
          -7,
          -3.0043213737826426,
          -7,
          -7,
          -7,
          -1.7654653443605923,
          -7,
          -2.9344984512435675,
          -3.256958152560932,
          -3.203522416822585,
          -2.9955403342287124,
          -3.4827307000799426,
          -1.38594604140928,
          -7,
          -1.3776389075463482,
          -7,
          -1.3366766942669703,
          -1.8010970512692204,
          -7,
          -2.6913025633834833,
          -1.8523444248884782,
          -2.004002742453674,
          -2.2826021227981115,
          -2.0261585937576614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9902833432540814,
          -7,
          -2.462397997898956,
          -2.022690750805371,
          -7,
          -2.855317205195943,
          -7,
          -2.0605261485221984,
          -7,
          -2.2696241164908653,
          -2.5411630537068683,
          -2.609990566026695,
          -3.561220678933944,
          -7,
          -2.921166050637739,
          -2.993215720474137,
          -3.6917885244026984,
          -3.079543007402906,
          -7,
          -2.83613942742759,
          -2.325310371711061,
          -2.4450850227193537,
          -2.8401957413725274,
          -7,
          -2.563912360982884,
          -2.8380090624639394,
          -3.327563260187278,
          -2.492644002993204,
          -2.700270937356437,
          -2.6630482325495684,
          -1.9822712330395684,
          -3.1266183755229515,
          -7,
          -3.7062624873330328,
          -3.874249822778403,
          -7,
          -3.573538788190414,
          -2.453347192030566,
          -3.0964554363454075,
          -2.5986810989071634,
          -3.8797264966395772,
          -3.1883096301940044,
          -2.714369682021485,
          -2.8163517934364455,
          -7,
          -3.703348706939536,
          -2.1938236640698334,
          -1.961018183415195,
          -2.5953859808091417,
          -7,
          -7,
          -4.179293205577373,
          -3.4773528166989705,
          -1.9520735304976586,
          -3.346744054604849,
          -4.173361116894232,
          -2.5642334659748904,
          -2.2851670183537824,
          -3.593618308129536,
          -4.184180195347259,
          -3.5725812013324862,
          -2.6745462253948187,
          -2.8783849969106328,
          -3.5839917991983166,
          -3.1513204137732407,
          -2.7794854894727083,
          -7,
          -7,
          -3.7093830437734763,
          -3.372964577812118,
          -3.2787250280075306,
          -2.5349960967118763,
          -3.573654715980733,
          -3.2708857785427625,
          -3.0706629143802995,
          -2.704435569281117,
          -3.8793253007848074,
          -3.011062694729735,
          -2.4410139714466967,
          -3.499879448956432,
          -1.688740276308066,
          -7,
          -3.7183078877374,
          -4.2484392081415105,
          -2.2819474676523446,
          -2.9804311689285914,
          -2.007424337771746,
          -2.958664455093407,
          -1.3489325701049661,
          -2.9543683736575375,
          -3.34143452457814,
          -2.8109322482432924,
          -2.7046550997731758,
          -3.8925119929022363,
          -3.89473132437208,
          -4.196148539699125,
          -7,
          -1.8741716975886615,
          -2.3879426850315597,
          -2.531591308128764,
          -3.577491799837225,
          -4.1773344555057,
          -1.8582494207270297,
          -7,
          -2.8671181483544954,
          -2.7047532207811775,
          -4.178775572045411,
          -2.803280043602782,
          -2.2873217580833582,
          -7,
          -2.8623647524766747,
          -4.173390251465195,
          -3.881812462894711,
          -1.3989831930562173,
          -2.574110223183241,
          -2.9047440096065236,
          -7,
          -3.091390568954869,
          -3.492061604512599,
          -2.9233673942402945,
          -2.497366198100159,
          -2.890394401911138,
          -7,
          -1.7958326537414153,
          -2.3534755341236973,
          -1.7267344196871608,
          -3.5751300891616467,
          -7,
          -3.3316044201502746,
          -2.719598561582539,
          -2.573413164820461,
          -2.513170019187924,
          -3.4025479509123913,
          -2.102005842956844,
          -7,
          -7,
          -7,
          -2.1946154079057703,
          -4.17655425961329,
          -2.0656606596823064,
          -2.1611756115490883,
          -1.7829501332654125,
          -1.8804077149768044,
          -3.888010912245029,
          -3.404348996995556,
          -3.2961713931851344,
          -3.5042805196072773,
          -2.6181718577859976,
          -3.194403325910006,
          -7,
          -2.9662982070631547,
          -2.823450076875887,
          -2.458672707384415,
          -3.2918958564339373,
          -2.8143216000742486,
          -2.0526511985085754,
          -4.188844146546897,
          -3.553134295203366,
          -7,
          -3.305028753746333,
          -3.1578961429241805,
          -2.8571062424631903,
          -3.4234097277330933,
          -7,
          -3.7137424784090824,
          -1.202831589142154,
          -2.1159381384569778,
          -7,
          -3.4765418090274287,
          -2.646853300505588,
          -7,
          -7,
          -4.175308824585785,
          -3.4795753101749884,
          -7,
          -2.464343951785702,
          -2.5326665362571856,
          -2.116277118838028,
          -2.4143634630235606,
          -3.8903371700735754,
          -3.1396823505057303,
          -7,
          -4.181757863468677,
          -3.5994190676181264,
          -3.811256540556303,
          -2.691780309707951,
          -7,
          -3.882125919770032,
          -3.4927324592231748,
          -2.63437118943673,
          -7,
          -3.8727970399895986,
          -3.5166939913124287,
          -2.7117256126381752,
          -7,
          -2.6849269269525506,
          -3.7325277806485664,
          -3.3856573340277287,
          -3.3245653749310993,
          -3.5149990780786804,
          -2.7188969332355657,
          -2.8666363533065913,
          -3.187153953785416,
          -2.4539985977209984,
          -3.4858917046574147,
          -7,
          -7,
          -3.4144998202843357,
          -3.7065471026403576,
          -3.579726448846229,
          -7,
          -2.594278217221705,
          -3.338257230246256,
          -3.048480647473502,
          -4.176004391472253,
          -2.3380800304755907,
          -2.128652562662778,
          -3.2911745290335737,
          -2.584059705457841,
          -2.268367803193454,
          -2.973589623427257,
          -3.0806780138224896,
          -2.864511081058392,
          -2.781516028004414,
          -3.2973500894444876,
          -3.1283992687178066,
          -2.754116576016153,
          -3.7095243558763413,
          -3.6800180632491917,
          -7,
          -2.5227236124042807,
          -2.697308615276485,
          -2.715657201884874,
          -3.703061987128565,
          -2.3806094943593243,
          -4.1747573763106605,
          -3.00455780640836,
          -3.7113853790984517,
          -2.662461007332455,
          -3.484299839346786,
          -3.4091155877956507,
          -2.732437230568403,
          -3.1443925650070628,
          -7,
          -2.174018250432816,
          -3.269571313209591,
          -2.4131583231153693,
          -7,
          -4.174815456482182,
          -3.405204019876869,
          -3.3316008061043147,
          -7,
          -3.8850217948622974,
          -7,
          -4.188647295999718,
          -2.993148586498641,
          -2.2457761160975718,
          -2.73062700968143,
          -2.497475787005654,
          -7,
          -3.2300229336227826,
          -2.695142604658866,
          -2.9687301046728525,
          -7,
          -3.576542899012627,
          -3.4431847291501847,
          -2.1393361503611485,
          -4.209246848753374,
          -7,
          -4.173535895009906,
          -4.178833117359116,
          -3.704750904290671,
          -4.174088895463686,
          -4.178228510935771,
          -2.9800836156911226,
          -2.4319767053533137,
          -7,
          -3.6982745766743674,
          -7,
          -4.1815291821065035,
          -3.3464647475774694,
          -3.888937302687291,
          -7,
          -3.492872090283087,
          -3.6841718627005906,
          -3.037771671331138,
          -2.3003908572382463,
          -2.5889767978378466,
          -2.8889813672663376,
          -7,
          -7,
          -1.2639810792597537,
          -2.4381466362467488,
          -1.575003900577211,
          -3.414221033214868,
          -3.078008384692729,
          -3.0485805158968846,
          -3.704779473476742,
          -3.1827284181242677,
          -2.5778327537276855,
          -2.368385340810993,
          -1.5225415500375052,
          -2.2649068816547584,
          -2.6958480495106723,
          -2.040514435148303,
          -2.645338041178953,
          -3.7013088852280753,
          -3.5037089898917078,
          -2.7335483317430804,
          -2.5170943442299034,
          -7,
          -3.2282006765179165,
          -3.1614224558093555,
          -3.8808707325324234,
          -3.0953303204780394,
          -7,
          -2.587136432247095,
          -2.8835289504000867,
          -3.3557798057347688,
          -3.7594411971336976,
          -3.508179448873524,
          -2.744819187545737,
          -2.096515020273322,
          -7,
          -2.7644595723897676,
          -3.7005306569785916,
          -3.5915932335792364,
          -2.4834684261642916,
          -3.311568451887975,
          -2.736933594392909,
          -2.4459252900038795,
          -3.109641813636512,
          -3.215637563435062,
          -2.759082706355693,
          -2.3185589412002856,
          -2.830781771889899,
          -1.659812892549702,
          -7,
          -7,
          -7,
          -2.8128055778901238,
          -2.353263964356718,
          -3.884001924768787,
          -3.8888812140288245,
          -2.5869962448920862,
          -3.483102099521368,
          -2.3909087566812675,
          -3.038393050174673,
          -2.2903719274819245,
          -3.714245911017894,
          -2.9669143516284455,
          -2.5969712253922594,
          -2.8893857513693093,
          -2.777054076316709,
          -2.125713570858261,
          -3.052271563538768,
          -7,
          -2.589759976078929,
          -3.2823662563684763,
          -2.52336260719049,
          -7,
          -3.1539810696591877,
          -3.87952594503966,
          -2.8913677498314385,
          -2.9704525414168397,
          -3.1194318594918125,
          -3.1408221801093106,
          -7,
          -7,
          -2.4567519240544438,
          -4.18261434773635,
          -7,
          -2.9612814719845826,
          -2.8609596278508898,
          -3.5821486217835403,
          -1.8841903296890576,
          -7,
          -4.175221800343052,
          -2.9451698151286747,
          -3.298552157043863,
          -4.219440435989858,
          -3.670013796172048,
          -3.6159369069513683,
          -2.570199433985714,
          -2.850982017175569,
          -2.6579706044265934,
          -2.219481487982073,
          -3.078221118535338,
          -3.567285217961632,
          -3.6363875858131567,
          -3.244817292184848,
          -3.5002860385469017,
          -2.1505180290920993,
          -3.855349523582764,
          -3.0903991492554628,
          -2.133184446340877,
          -4.10124858623158,
          -3.1821540422305667,
          -7,
          -3.7793967967276476,
          -3.8233568364187,
          -2.6714604371096526,
          -2.5518671414727314,
          -7,
          -3.5739805970823184,
          -3.775697807765654,
          -3.621046389600625,
          -2.256824609777707,
          -3.0800248875987006,
          -3.2125030089235405,
          -3.5964871337365443,
          -3.4781478706432734,
          -3.370301561079633,
          -4.124014878887408,
          -4.0420436387878205,
          -3.0872843914537613,
          -3.1948501384831234,
          -2.1019438184669204,
          -4.195484523033764,
          -2.8319834676564324,
          -2.474687312034128,
          -2.882681528415911,
          -2.270482815851919,
          -2.607442837452188,
          -2.8249064713021124,
          -2.2111068681045203,
          -2.694282782822322,
          -3.0991378037792234,
          -3.6243852414202653,
          -2.4516753369831368,
          -2.347442339513145,
          -3.7299203662157314,
          -1.938057301280704,
          -2.2790236522979446,
          -4.178660458538169,
          -2.823810663374714,
          -3.350190990629806,
          -4.2819646232599,
          -7,
          -2.4376922862503956,
          -2.167444459932046,
          -3.9123549292524067,
          -7,
          -3.2869277849592553,
          -7,
          -2.6547014748369984,
          -7,
          -3.7480684503090216,
          -2.787328645420259,
          -3.6461795886879207,
          -7,
          -2.886184084983295,
          -2.643589159589936,
          -3.0425986729597225,
          -3.2670308532927654,
          -1.9049102040302717,
          -2.5042303053800343,
          -2.5423591104831424,
          -2.10320901727473,
          -4.192149125018534,
          -1.928715713074086,
          -2.885955406959308,
          -2.825474201745054,
          -3.263900181091419,
          -7,
          -2.6834736303972564,
          -2.7016471896231704,
          -3.172310968521954,
          -3.7024305364455254,
          -7,
          -7,
          -7,
          -7,
          -1.1759232859412674,
          -1.8789046024734604,
          -7,
          -3.4022040460651453,
          -2.7987037539114805,
          -1.786412434699108,
          -2.2063587531499906,
          -1.978287955736132,
          -3.034427905025403,
          -1.689971068634483,
          -3.700068825769947,
          -1.7887705714663293,
          -1.0402631800172553,
          -2.2818568360599505,
          -4.221179420598498,
          -2.711229034334036,
          -2.771298695058256,
          -2.231069884282878,
          -3.8952843896896177,
          -3.3424790790408303,
          -2.1626159757428707,
          -3.711582293398766,
          -2.536474268817627,
          -2.2159503314026674,
          -1.7086080382628424,
          -7,
          -2.016569101433193,
          -7,
          -3.276260695356544,
          -2.9319257996219097,
          -1.8334502422862748,
          -2.2593254108482665,
          -7,
          -3.3917162351570154,
          -1.274108033424912,
          -7,
          -1.6217621131032312,
          -7,
          -2.023170121121397,
          -0.804111708162889,
          -7,
          -3.1381591060069627,
          -3.5289423974157295,
          -1.9126260848936751,
          -2.3272908044180514,
          -3.14547892920631,
          -2.286829670251312,
          -1.7220301264804447,
          -3.5877109650189114,
          -1.6777728089309885,
          -1.2537182492765606,
          -2.590688431618049,
          -4.176525336535,
          -1.4903084222666931,
          -1.6427890468225592,
          -7,
          -1.7131629510254187,
          -3.88632148655948,
          -7,
          -3.20305232331814,
          -1.9343915611416491,
          -1.1876341890151132,
          -1.6481773094924157,
          -1.8554706961183298,
          -2.9273973806434306,
          -4.189265668934548,
          -4.333427121152962,
          -3.145535411776542,
          -2.2295678466428646,
          -3.2811470420244278,
          -1.8303389761662683,
          -1.1361883244479989,
          -2.6704095833237176,
          -3.6972002725443778,
          -1.23227990455565,
          -0.9919156165114691,
          -1.8979615866993214,
          -2.73247158340205,
          -1.5525004346117142,
          -2.0203511131266407,
          -2.5189523997656127,
          -2.5087907256424193,
          -1.483485671315326,
          -2.379546464195344,
          -2.998940114940036,
          -3.5975032204392736,
          -3.5743785644130823,
          -3.3958794676543818,
          -2.808036260432666,
          -3.1600932009756324,
          -1.9544695321741878,
          -2.4878955578888458,
          -1.5860470645033387,
          -2.650333781149533,
          -2.4176075541104693,
          -2.2634417415239945,
          -2.816812514702439,
          -1.515618012680628,
          -7,
          -2.0245454695294156,
          -7,
          -1.5341136742552226,
          -1.461718957918466,
          -3.985493836151524,
          -3.874046725512229,
          -1.9323482720593461,
          -2.10483958902677,
          -1.295472883356695,
          -2.52760188458375,
          -7,
          -7,
          -3.6977232389357932,
          -3.877256133113586,
          -3.0621189528182424,
          -3.3344537511509307,
          -2.121951467621187,
          -3.732018281336871,
          -2.7106461542699276,
          -3.2315828501736372,
          -3.4900428002642228,
          -3.065780743753253,
          -2.9530771516434475,
          -3.589977511385285,
          -3.7102584385195545,
          -2.0820304601868975,
          -2.7440230673390325,
          -2.1610780537551473,
          -2.891022534799987,
          -3.801700913633025,
          -3.110589710299249,
          -4.175134758658844,
          -2.871864702088195,
          -2.806010294559223,
          -4.173594138754633,
          -2.314229569502311,
          -3.015024263324625,
          -3.0140162292583637,
          -2.3970337739112404,
          -3.193301721983993,
          -2.8881284154728792,
          -3.5757649805367193,
          -3.7023730862857875,
          -3.019090315119938,
          -3.574089169798587,
          -2.745855195173729,
          -2.7748682601673127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426272632057094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.036029730656543,
          -7,
          -7,
          -3.658488381309017,
          -4.668708488848728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.33193317250328,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.004869271063189,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0802656273398448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.188752123630888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6685256885568625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.082354451330969,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7536902788618263,
          -7,
          -7,
          -7,
          -4.993586113386161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9967961469213473,
          -3.460747541844197,
          -7,
          -7,
          -4.065355601289965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.874365835730049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.30606181471495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.918554530550274,
          -7,
          -7,
          -7,
          -7,
          -3.876083065187758,
          -3.018284308426531,
          -7,
          -3.57541879121436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071440127177888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.735758537443739,
          -7,
          -7,
          -7,
          -3.6555801911718633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.444630230042095,
          -5.411867923528265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8628615491435725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5085970462300686,
          -7,
          -7,
          -7,
          -4.313360951244128,
          -7,
          -4.055760464687735,
          -7,
          -4.710269722412766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4434194617828173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.432622999315182,
          -3.586362223307866,
          -7,
          -4.283798572914993,
          -7,
          -7,
          -7,
          -7,
          -3.473827459679738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7143903787417765,
          -7,
          -7,
          -7,
          -7,
          -3.747644819328248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0692980121155293,
          -7,
          -7,
          -7,
          -4.385516903399025,
          -5.2731888467667005,
          -7,
          -7,
          -4.416174347457088,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.116928587217637,
          -7,
          -7,
          -7,
          -4.711773496120913,
          -7,
          -3.8718063644587293,
          -7,
          -3.733443757892789,
          -3.6707559422151332,
          -3.586249638866042,
          -4.000694315866355,
          -7,
          -4.696238405394714,
          -3.538413768461401,
          -7,
          -4.371566552483734,
          -4.018851269187425,
          -3.725870813226274,
          -7,
          -7,
          -4.910640410533396,
          -7,
          -3.752317396505286,
          -2.9862892996576695,
          -7,
          -7,
          -7,
          -7,
          -3.773340223171566,
          -3.113031287956422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.973789571309058,
          -3.1393638071453336,
          -4.612868588840168,
          -7,
          -7,
          -3.861448529146899,
          -3.879611907065851,
          -7,
          -7,
          -7,
          -4.235159645042988,
          -7,
          -7,
          -7,
          -4.485058598189106,
          -4.2023884051228775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.513994017430478,
          -4.788818618509576,
          -7,
          -7,
          -7,
          -7,
          -4.25598127408652,
          -7,
          -5.405189213807231,
          -4.072727689585266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.591064607026499,
          -7,
          -7,
          -3.465993871030563,
          -7,
          -7,
          -4.642009212267617,
          -4.353353533052763,
          -7,
          -5.046301971533895,
          -7,
          -7,
          -4.606821886016697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7035492982382308,
          -2.620210439573049,
          -7,
          -3.4022040460651453,
          -7,
          -2.552911450216509,
          -3.863005451385769,
          -2.103803720955957,
          -7,
          -7,
          -3.2605483726369795,
          -2.6334684555795866,
          -3.620177711918963,
          -3.6020599913279625,
          -2.3268476989159903,
          -7,
          -2.8204970207913975,
          -2.8184458452428167,
          -2.697907095962328,
          -2.2612628687924934,
          -2.6020599913279625,
          -2.161293117420253,
          -2.4419568376564116,
          -2.979092900638326,
          -7,
          -7,
          -7,
          -3.103376055257288,
          -7,
          -2.409087369447835,
          -3.480979310410153,
          -3.190506781616284,
          -3.038130304046716,
          -7,
          -3.4234097277330933,
          -7,
          -2.5571060060508883,
          -7,
          -7,
          -7,
          -3.101231386790699,
          -7,
          -7,
          -2.8832828000102766,
          -7,
          -2.412553873847405,
          -2.592731766393962,
          -2.2041199826559246,
          -7,
          -2.462397997898956,
          -2.9439888750737717,
          -3.378488748031808,
          -3.288081468736615,
          -2.605305046141109,
          -3.5267268673146357,
          -3.49996186559619,
          -2.979092900638326,
          -2.7429449715938286,
          -7,
          -7,
          -1.7375872659716323,
          -7,
          -3.1451084132832223,
          -7,
          -2.4641225315292545,
          -2.697519937940786,
          -2.929418925714293,
          -7,
          -7,
          -2.985501320180887,
          -2.3566631199368167,
          -7,
          -7,
          -2.015746539892464,
          -7,
          -7,
          -3.4530021891110505,
          -7,
          -7,
          -3.5247205856840464,
          -7,
          -3.7264011621029223,
          -7,
          -2.703864326067068,
          -2.3460594330525737,
          -2.535610545908793,
          -3.0888445627270045,
          -7,
          -7,
          -3.014348680847394,
          -2.661023489459825,
          -2.3121773564397787,
          -2.253983796496258,
          -3.184975190698261,
          -2.4533183400470375,
          -2.6242820958356683,
          -3.69978818845623,
          -2.870598962314376,
          -7,
          -2.429752280002408,
          -7,
          -7,
          -7,
          -7,
          -2.975431808509263,
          -7,
          -7,
          -7,
          -2.9608405922118757,
          -7,
          -2.8363241157067516,
          -7,
          -7,
          -7,
          -2.6138418218760693,
          -2.413299764081252,
          -2.7510690461887255,
          -2.7198834733033834,
          -7,
          -7,
          -2.32376758329678,
          -7,
          -7,
          -7,
          -7,
          -2.7643629658980102,
          -7,
          -3.404902104067037,
          -3.452246574520437,
          -3.341731207601339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7977382907854604,
          -7,
          -7,
          -3.5106790310322102,
          -3.1094097905463656,
          -7,
          -7,
          -2.7075701760979367,
          -7,
          -7,
          -3.34143452457814,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.243544879306084,
          -7,
          -7,
          -7,
          -3.749633267880381,
          -3.7648483571934106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6351042182738458,
          -7,
          -7,
          -2.4384293248474367,
          -3.399735263171256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.173733891880797,
          -7,
          -2.932980821923198,
          -3.2380461031287955,
          -2.6011905326153335,
          -3.5010592622177517,
          -7,
          -7,
          -7,
          -7,
          -3.291590825658001,
          -4.5429374082326195,
          -7,
          -7,
          -3.2195845262142546,
          -7,
          -3.0443045191759146,
          -7,
          -3.0646451447919367,
          -7,
          -3.3967222785037734,
          -2.560056149734406,
          -2.8882642901467257,
          -2.817014164406586,
          -3.662190990859007,
          -7,
          -7,
          -3.344588742578714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2092468487533736,
          -3.145462789979763,
          -7,
          -7,
          -2.866995813110648,
          -7,
          -7,
          -3.43568513794163,
          -7,
          -7,
          -4.174905787979731,
          -7,
          -2.8356905714924254,
          -7,
          -7,
          -3.46159856006272,
          -7,
          -7,
          -7,
          -3.595606434865603,
          -7,
          -3.3301092545928297,
          -7,
          -7,
          -7,
          -3.31387992033792,
          -3.6646419755561257,
          -3.4632956099620027,
          -2.9237619608287004,
          -7,
          -7,
          -2.6229537514399808,
          -7,
          -7,
          -7,
          -4.184237029016371,
          -7,
          -7,
          -7,
          -3.3248994970523134,
          -7,
          -7,
          -7,
          -3.735119634081872,
          -3.2845001459966476,
          -7,
          -7,
          -7,
          -7,
          -3.2287082598019725,
          -7,
          -7,
          -7,
          -7,
          -3.1340973839451696,
          -3.3649260337899753,
          -7,
          -2.9048807704973005,
          -3.318689269947746,
          -7,
          -7,
          -4.04474005060347,
          -7,
          -7,
          -3.716420733846555,
          -7,
          -7,
          -2.8919089670894906,
          -3.616685520895512,
          -7,
          -7,
          -3.4346043841601857,
          -7,
          -3.1863912156954934,
          -7,
          -7,
          -7,
          -2.842388953284813,
          -3.8145139523682383,
          -4.188365926063148,
          -3.078239253809666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.895809150169131,
          -7,
          -7,
          -7,
          -3.777837479938187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4787107555127594,
          -3.939718882354105,
          -7,
          -7,
          -3.0805087817900456,
          -7,
          -7,
          -7,
          -7,
          -3.2796669440484556,
          -7,
          -7,
          -3.0757293997408985,
          -7,
          -4.005073213063604,
          -7,
          -3.8073320392911905,
          -2.816573656226861,
          -3.3600250891893975,
          -2.539666373408828,
          -3.398634324538392,
          -2.8226583460036045,
          -2.846584502898046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0042783722001625,
          -7,
          -7,
          -7,
          -3.2115877040189345,
          -7,
          -3.536747773889752,
          -7,
          -7,
          -7,
          -7,
          -3.524266268766979,
          -7,
          -7,
          -7,
          -3.2014153333509525,
          -3.1398790864012365,
          -7,
          -7,
          -7,
          -3.222456336679247,
          -3.2489536154957075,
          -7,
          -7,
          -7,
          -2.688981530831051,
          -3.395937645080042,
          -3.5651982517156657,
          -4.567798263269426,
          -7,
          -7,
          -7,
          -3.09429639740537,
          -7,
          -7,
          -3.216297886630392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.960588455242285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0407718208896495,
          -2.688568121297955,
          -7,
          -7,
          -2.940038099187222,
          -2.7268629897004635,
          -2.9794499342929743,
          -7,
          -3.544382277123792,
          -7,
          -7,
          -7,
          -3.7392162193937257,
          -3.823213313282668,
          -2.8974579076179072,
          -3.803047210491129,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2223262109908117,
          -3.381611391532234,
          -7,
          -7,
          -3.1389339402569236,
          -3.387065510037909,
          -3.475283684857362,
          -7,
          -4.0100454126360985,
          -7,
          -7,
          -3.700617195682057,
          -3.181986424480151,
          -2.6079265932033473,
          -3.1609684672648433,
          -3.860996436757196,
          -7,
          -7,
          -7,
          -4.009525576799297,
          -3.455707512181184,
          -7,
          -7,
          -7,
          -2.9311399158597338,
          -2.8195439355418688,
          -7,
          -7,
          -3.269512944217916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.383994789441733,
          -3.247564133517697,
          -7,
          -4.5628992633333025,
          -3.930082633392371,
          -4.357423135618709,
          -7,
          -3.5650209283452936,
          -4.324422394952085,
          -2.8967710973843452,
          -7,
          -7,
          -7,
          -3.6618126855372615,
          -3.8591983615338776,
          -3.8069935136821074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0125999845343534,
          -7,
          -7,
          -2.254590341522387,
          -3.825865887784005,
          -4.296379953771385,
          -3.7285161047597666,
          -3.8189677843395207,
          -3.09191304667608,
          -2.8967265840360867,
          -4.302071053650075,
          -3.1153058148784267,
          -2.983954149351602,
          -2.9289929379588013,
          -4.328012438855587,
          -3.6140774783100187,
          -3.5253256032202396,
          -2.8446546561248995,
          -4.351796306897024,
          -4.081869155842856,
          -3.1284761989930865,
          -3.5978779313445366,
          -3.1591057860218807,
          -7,
          -4.435711680003175,
          -3.4542566949442497,
          -3.1142772965615864,
          -3.0273182383152535,
          -7,
          -4.066819584762148,
          -4.216825423266047,
          -3.5259513412480126,
          -3.276913958802221,
          -3.07678043480133,
          -4.386436536805701,
          -4.346216013155006,
          -3.6211503064479005,
          -3.009309224134771,
          -7,
          -3.6369390072874714,
          -4.1686889551577195,
          -2.98434196069803,
          -3.5842900960487443,
          -3.3656751404559175,
          -3.902456178608144,
          -2.5286826823843556,
          -2.8306873495494416,
          -3.7531232446817127,
          -3.873998355018009,
          -7,
          -3.5138103976343795,
          -3.562887381293879,
          -3.3273589343863303,
          -3.417154519038368,
          -3.9679876639285983,
          -3.544378143957812,
          -7,
          -3.8527543908053885,
          -7,
          -7,
          -7,
          -3.4901165675714214,
          -3.2842803027789684,
          -7,
          -2.7048937314310724,
          -3.6969957883137,
          -5.406369835469268,
          -7,
          -7,
          -3.286905352972375,
          -3.4982962910108375,
          -7,
          -4.80524591569032,
          -3.815212362299354,
          -3.547380832120237,
          -7,
          -3.44143982425051,
          -4.450172098924372,
          -4.091807597001675,
          -3.234179705196503,
          -3.2428394686728192,
          -3.876217840591642,
          -2.8350072579387113,
          -3.724849087629386,
          -7,
          -3.471780506250551,
          -3.2797192128666035,
          -7,
          -4.007260775655791,
          -7,
          -3.225309281725863,
          -3.540610986582727,
          -4.018679698624002,
          -3.24551266781415,
          -7,
          -7,
          -7,
          -3.4982416126858915,
          -1.9574911927012917,
          -7,
          -2.7987037539114805,
          -2.552911450216509,
          -7,
          -1.8225317226314617,
          -1.2199445427615632,
          -3.497620649781288,
          -3.2593549273080344,
          -2.2426460271625466,
          -2.621176281775035,
          -2.849583190354663,
          -2.8739015978644615,
          -1.8974156013997738,
          -3.2141813086638207,
          -2.641383961156209,
          -2.506369717095504,
          -1.5762221640507468,
          -2.0861724328371465,
          -2.4641061396561508,
          -2.165775860559767,
          -3.0170333392987803,
          -2.495147721553675,
          -3.167465028843088,
          -3.1740598077250253,
          -7,
          -2.06779903132787,
          -3.2232362731029975,
          -2.768144584737799,
          -3.3531037459299293,
          -2.6035794555086023,
          -2.6972223660854966,
          -2.8959747323590643,
          -2.9882244123901995,
          -3.9904276584852636,
          -3.0666985504229953,
          -3.0042138618420258,
          -3.1855421548543754,
          -2.962527174843811,
          -2.4753944354191564,
          -3.2132520521963968,
          -2.7713424628313694,
          -2.5474054596674893,
          -3.1330596427539095,
          -1.796182030208752,
          -2.527844632387161,
          -1.971275848738105,
          -3.3891660843645326,
          -2.8488047010518036,
          -3.4782778319196046,
          -2.4399396743370376,
          -2.8815921305506578,
          -2.9161906599805376,
          -2.9640709705579553,
          -3.1669232380950865,
          -7,
          -2.288905106221548,
          -2.829946695941636,
          -3.249442961442582,
          -2.74901124252752,
          -7,
          -2.560422414267646,
          -2.6994040818153375,
          -2.179847626177222,
          -2.4360035356698964,
          -2.718501688867274,
          -3.310640216862898,
          -7,
          -2.4658164336527726,
          -2.6830470382388496,
          -3.2149762347220667,
          -3.3963737275365067,
          -1.9027505618227292,
          -7,
          -3.3886931254483055,
          -2.695710464573313,
          -3.7224693858840308,
          -2.2531083481429803,
          -2.9666313775302093,
          -3.0038911662369103,
          -2.9138138523837167,
          -2.558365661331061,
          -2.308196304976814,
          -1.948769918041402,
          -2.5140494227353822,
          -2.4365160192993924,
          -7,
          -7,
          -2.2972314509435923,
          -2.7564187436357535,
          -7,
          -1.785442829542926,
          -2.528342484271277,
          -2.16354083719592,
          -2.111748093301207,
          -2.9257437004504925,
          -2.498922883086532,
          -3.2920344359947364,
          -7,
          -7,
          -7,
          -3.1405080430381793,
          -3.061150780928549,
          -2.821367938567036,
          -7,
          -2.988112840268352,
          -7,
          -2.273212556174888,
          -7,
          -3.286456469746983,
          -3.2062860444124324,
          -2.9017306917292185,
          -3.2340108175871793,
          -2.9182925127553556,
          -2.4668676203541096,
          -2.266643210950574,
          -3.149834696715785,
          -7,
          -7,
          -2.4740080192955194,
          -3.2518814545525276,
          -7,
          -7,
          -7,
          -3.2524889444849885,
          -3.4435758797502576,
          -3.0301324538917136,
          -3.5386993795424067,
          -3.7515100502700416,
          -3.028571252692538,
          -7,
          -2.2056682712187854,
          -3.0073209529227447,
          -7,
          -3.3092308161500323,
          -7,
          -7,
          -2.570834706424214,
          -3.1048284036536553,
          -3.5660837841679958,
          -3.230959555748569,
          -7,
          -3.529558673021163,
          -7,
          -3.2738497297176563,
          -7,
          -7,
          -3.1878026387184195,
          -3.8649854606597938,
          -7,
          -4.035249578686349,
          -3.222416302158394,
          -3.561836516419704,
          -3.1567951515677546,
          -2.0109093174202606,
          -4.340325113748292,
          -4.0448140475286385,
          -2.6864680842729807,
          -4.121247880500199,
          -7,
          -4.340166394886077,
          -3.010535512583051,
          -2.4221985394696524,
          -2.708304990392847,
          -7,
          -7,
          -7,
          -3.8601782366871342,
          -2.5383061088410503,
          -3.0297744519159444,
          -7,
          -2.5849553440962674,
          -2.488678178460122,
          -4.350790547426457,
          -4.342659504139119,
          -7,
          -3.253729320398597,
          -3.2082685564036995,
          -4.043008409879952,
          -2.9500615985548566,
          -3.748614356905319,
          -4.3386556655787,
          -7,
          -3.6452257115354163,
          -3.463332970234029,
          -3.7391172439194027,
          -4.084737097962795,
          -4.336919802200228,
          -2.908355580205547,
          -3.388870545406613,
          -3.017884063335557,
          -4.340047317661393,
          -4.044206464382898,
          -2.863136906582225,
          -4.35305023964259,
          -2.442019395215901,
          -7,
          -2.6956567599361905,
          -4.087195576859718,
          -3.27425409180854,
          -3.157286734403413,
          -2.153616806044849,
          -3.535637657401434,
          -2.210928431339089,
          -3.058077892589143,
          -7,
          -3.4450395648772703,
          -3.300993802949105,
          -7,
          -3.748594987350116,
          -7,
          -4.3388547462523235,
          -3.232937497195236,
          -2.5195129832576257,
          -2.180982024435645,
          -4.339570682001439,
          -7,
          -2.6339272981810673,
          -7,
          -3.3842230394187056,
          -3.230823445277533,
          -4.338914452663329,
          -4.078184845714645,
          -2.6349370993059553,
          -3.639247362265076,
          -2.6536762559250167,
          -7,
          -4.040701211937358,
          -2.165455437571897,
          -3.4131693257315994,
          -3.740717876059285,
          -7,
          -3.149816603750927,
          -4.347583686308583,
          -3.240317420069045,
          -2.861077351252817,
          -3.585009279902461,
          -4.059771617303871,
          -2.4240244874694508,
          -3.489606966267722,
          -2.956387992907696,
          -3.735758537443739,
          -7,
          -4.077531416354595,
          -3.584218112117405,
          -3.595845133878683,
          -2.921443688161596,
          -4.3404441148401185,
          -3.226022671672174,
          -3.746478509930031,
          -7,
          -7,
          -2.7951135650233447,
          -7,
          -2.895606686165933,
          -3.0551106378541464,
          -2.378123530264194,
          -2.107591139790693,
          -3.6469523748023223,
          -3.299903317951841,
          -3.097527237460007,
          -3.7539658658651605,
          -2.233218159615806,
          -3.504800851389655,
          -4.336039245371044,
          -3.8923914547060727,
          -3.6946929263314843,
          -3.1763466512899763,
          -4.350461235597642,
          -3.256777860100623,
          -2.878532949990976,
          -4.345902796476545,
          -3.6716818448830852,
          -4.346783143258122,
          -3.239390163072411,
          -3.3532428314337293,
          -3.301482150292958,
          -3.70399599724626,
          -4.338735308799518,
          -4.34738856792903,
          -1.8085012734625698,
          -2.8148772297450946,
          -7,
          -7,
          -3.287100374971208,
          -7,
          -7,
          -4.336519770410416,
          -2.8191249923035215,
          -3.381756668168806,
          -2.4931435578660768,
          -2.8005861681135253,
          -3.0056216943620413,
          -2.9383695974518065,
          -7,
          -3.614565797008349,
          -7,
          -7,
          -3.178228510935771,
          -3.8146337595794417,
          -2.7460578706127543,
          -7,
          -4.3419881690481885,
          -3.648925689157213,
          -2.660554467906144,
          -7,
          -7,
          -3.7627348158461476,
          -3.657896842346367,
          -3.8618130982567225,
          -3.3570004904409223,
          -3.1046577910087962,
          -3.5304192606354143,
          -3.3732247295944737,
          -3.664585570012582,
          -2.8048206787211623,
          -3.156189361686134,
          -3.6459525315178176,
          -2.282539867650608,
          -3.644162759365265,
          -7,
          -7,
          -3.6496268868405295,
          -3.6432552250247716,
          -3.8639173769578603,
          -4.337039739920378,
          -2.8578030213764305,
          -7,
          -3.2434370925285267,
          -4.336999764360528,
          -3.4231311394854274,
          -2.2733622557608473,
          -7,
          -3.210619451457561,
          -3.1438818288549104,
          -3.4537959541740304,
          -3.6740523984521385,
          -4.058312121108386,
          -3.284167445275132,
          -3.877083256650651,
          -3.3591142204149063,
          -3.9298274812306917,
          -4.344451223686138,
          -3.9358094538099326,
          -7,
          -3.7016111533360587,
          -3.1101593173871143,
          -3.7326450149540165,
          -3.8627672425040847,
          -1.7843966678397087,
          -4.035069344421104,
          -2.2003064428510677,
          -3.1146698436863396,
          -2.571975972535329,
          -2.8639173769578603,
          -3.198362483563655,
          -2.870436420869347,
          -3.291202294560029,
          -7,
          -3.227629649571009,
          -2.7608885125470173,
          -2.618509539449221,
          -7,
          -3.5578278919567095,
          -3.8650842245566794,
          -4.337718762057449,
          -4.038739348104749,
          -7,
          -7,
          -4.345765693114489,
          -3.322041995494101,
          -3.000434077479319,
          -3.179276960763326,
          -3.1664195985419643,
          -7,
          -3.643906474455095,
          -3.7432745235119333,
          -3.39919282841684,
          -7,
          -4.338914452663329,
          -3.669855926622826,
          -2.9618954736678504,
          -4.360214613295352,
          -7,
          -7,
          -7,
          -4.040068042960068,
          -7,
          -4.0374663396435,
          -3.3613878203125966,
          -2.231131517275498,
          -7,
          -7,
          -7,
          -3.8636202202703154,
          -2.481893986310889,
          -2.566260674190903,
          -7,
          -4.3481490343841624,
          -2.8964928140759403,
          -3.6648863149590496,
          -2.943877294761792,
          -3.239377695152661,
          -3.8851538250634543,
          -7,
          -7,
          -1.8514501231419902,
          -2.7029734397201044,
          -1.8337843746564788,
          -3.871358848768327,
          -2.6663139371005946,
          -3.7483237228304267,
          -4.341157437445437,
          -3.739829364386337,
          -2.0820754602559584,
          -3.064881008648573,
          -2.3583098729804317,
          -3.041425585009148,
          -3.604349502341101,
          -3.3580491199867475,
          -3.7454456581479403,
          -4.338755217322839,
          -3.753563909684063,
          -3.1264561134318045,
          -3.2646725497243874,
          -7,
          -4.040701211937358,
          -3.4015154183068543,
          -3.8639173769578603,
          -2.398226262323115,
          -7,
          -2.6960216006793116,
          -2.9407654356312176,
          -3.4000004248702242,
          -3.3001786684400054,
          -2.5712696007142037,
          -2.6466932781616226,
          -2.9853066934901156,
          -4.3395905522680405,
          -3.22743675839222,
          -4.338217366601095,
          -7,
          -2.8802764528742517,
          -3.322538787843612,
          -3.1381016558472252,
          -2.8685197614044755,
          -3.591748122447564,
          -3.323308364436474,
          -2.664659711634453,
          -2.424231786918459,
          -3.0930099610151447,
          -2.64249495859943,
          -7,
          -7,
          -7,
          -3.0316023385073954,
          -2.8984166242181457,
          -4.343290402353433,
          -3.2670739033137606,
          -3.422334447617187,
          -7,
          -2.84845038043803,
          -3.5650603397961036,
          -2.9868380590192607,
          -4.347739717920052,
          -3.750296209841865,
          -2.859652864276414,
          -7,
          -3.149256445629004,
          -3.06752864063947,
          -2.956034209511922,
          -7,
          -2.8690730733431287,
          -2.977633550844847,
          -2.8895097937792866,
          -7,
          -3.5725037282944347,
          -4.340186237916345,
          -3.090716448481099,
          -3.157234020373384,
          -3.276789945089424,
          -3.413709458318653,
          -4.036309443724438,
          -7,
          -2.7303601047963593,
          -3.864372622679366,
          -7,
          -3.570192561095726,
          -3.80704430934858,
          -3.7406192422595144,
          -2.1484235191525474,
          -7,
          -4.035389709198677,
          -2.382812400965278,
          -2.5187259778241775,
          -7,
          -2.9733673510945082,
          -3.820846061385705,
          -2.7581351874034996,
          -3.28266742031975,
          -3.478234515815185,
          -1.4745388360584113,
          -2.359749918312179,
          -2.393601262762674,
          -3.440363248545816,
          -3.524071415934022,
          -3.525214026475078,
          -1.8987911888062636,
          -3.6747387007928496,
          -3.473036098059588,
          -2.0575751273111913,
          -4.027743624288048,
          -2.841369900072221,
          -4.096614592305936,
          -3.489377920934706,
          -3.3009322684108247,
          -2.633302722941081,
          -3.275285754348347,
          -2.7893558638643454,
          -3.710371264260763,
          -3.5628992633333025,
          -4.370161366676781,
          -2.289659636281177,
          -3.0459338868658743,
          -3.4222298618548153,
          -3.3035765799789134,
          -3.611640712232615,
          -3.8875985480102555,
          -4.221935599828005,
          -7,
          -3.2034978657478983,
          -3.2833964582800528,
          -2.4655511935198726,
          -3.3959861203155404,
          -3.178951381008244,
          -2.5171165611354143,
          -2.743675563376944,
          -2.8656960599160706,
          -3.151114367869422,
          -3.7685826086289427,
          -2.7466702927662827,
          -2.2836545147247422,
          -2.3532455307117077,
          -2.0000181330027336,
          -2.4512565368187738,
          -2.545111375970089,
          -7,
          -2.5166837422777864,
          -3.541688427827535,
          -3.4934978835625743,
          -3.9613894503284546,
          -2.223246074709505,
          -2.2144532419764444,
          -3.6515881136056807,
          -2.1023679011904353,
          -2.525808134205592,
          -3.2212435936124524,
          -3.8641549560020256,
          -3.5134673141995356,
          -3.3426595041391187,
          -2.2218894833457847,
          -3.8330195470765314,
          -2.9272945385073883,
          -1.7551976671084402,
          -2.3475855441575137,
          -3.8599784416420206,
          -2.669389205292351,
          -2.68206380784874,
          -2.4987805579480185,
          -3.255548160131223,
          -1.9507381240225095,
          -3.5378190950732744,
          -1.3681036709887278,
          -3.223688497483371,
          -7,
          -2.2695693006163253,
          -2.085841949767647,
          -3.7931090834994587,
          -2.287490547609792,
          -3.8663070345324604,
          -1.8530557878276115,
          -2.69221219192535,
          -3.043553438113086,
          -4.038461196178564,
          -7,
          -7,
          -7,
          -3.576226137449605,
          -1.7542720461167403,
          -2.716300195650392,
          -1.786412434699108,
          -3.863005451385769,
          -1.8225317226314617,
          -7,
          -2.046201947356664,
          -2.5858553633220276,
          -3.8634616535278656,
          -1.4080095203436613,
          -2.975291916582815,
          -1.3696800207907336,
          -2.0640050001968224,
          -2.776681555302868,
          -3.5903401790321667,
          -2.711454666165046,
          -1.9481731218751213,
          -2.4750458298528333,
          -3.748982214411482,
          -4.044186850767364,
          -2.507936146456582,
          -3.5675360785152037,
          -2.693277378791741,
          -2.589381549515688,
          -2.54926988029305,
          -4.335257256434532,
          -1.0520053944772132,
          -3.8605775512444156,
          -7,
          -2.566106798329171,
          -1.9209980385338585,
          -2.2455179858468557,
          -4.034788831251184,
          -3.017559547973121,
          -2.0075047762576936,
          -3.027796003500773,
          -2.4606805234666274,
          -7,
          -2.7663747092874,
          -1.677145884991026,
          -4.035949779536674,
          -2.5593479441958,
          -2.974806341932808,
          -2.7546349672131645,
          -2.4989489998913625,
          -3.2305078713793014,
          -2.4283635105171277,
          -2.920664310678378,
          -3.346313847059117,
          -2.54165487206726,
          -2.318659483967699,
          -2.370071610360726,
          -3.433989724808988,
          -2.416374900038764,
          -2.580818098726168,
          -3.764250875438773,
          -1.7967906818747728,
          -4.043833654133147,
          -3.3852884293013306,
          -2.4565914962046436,
          -2.6945865312432264,
          -1.599418080433217,
          -2.4987094715497626,
          -2.4682256622556245,
          -3.316941985816457,
          -3.74401901732498,
          -2.8940851900609035,
          -3.441596956713679,
          -1.841770975803067,
          -3.0199664335597736,
          -2.4851795276536532,
          -2.1309095650419336,
          -2.731473644051034,
          -7,
          -2.135437853436796,
          -1.7279980930228536,
          -1.9319485989693566,
          -3.329915358697696,
          -1.5452882850766474,
          -2.6324934457316256,
          -2.9198296084259026,
          -2.581754942494377,
          -1.1905309123113172,
          -2.3435613799028485,
          -2.283784282700699,
          -2.670458463029679,
          -3.4340496757326173,
          -3.7336586083863925,
          -2.63837062156992,
          -3.4786927256432434,
          -3.0703295678267613,
          -2.716946437342873,
          -1.141066773176585,
          -2.9693040624631877,
          -1.2656919266736266,
          -1.317611285700861,
          -2.124244675406698,
          -2.496929648073215,
          -7,
          -2.737078997674152,
          -7,
          -2.3403415296307353,
          -1.769724761680191,
          -3.374498392344555,
          -7,
          -2.737249454070101,
          -3.205610309902521,
          -1.0178926649257336,
          -3.306931652542162,
          -7,
          -7,
          -3.056804587113032,
          -3.7364363439795194,
          -3.735339363143935,
          -3.2978997176105405,
          -2.2176434353952446,
          -3.213593642804973,
          -3.110103147722846,
          -3.3437629752857023,
          -2.7318245278608315,
          -3.3396898899664773,
          -3.2632216936676484,
          -3.393692169195935,
          -2.671054613726539,
          -2.601267970296191,
          -2.275560877376543,
          -1.8302041241340057,
          -2.4153947885491625,
          -3.179568686824779,
          -2.682459014749771,
          -3.4910613864705238,
          -2.8992908534140494,
          -3.08904115613125,
          -3.5569855749879813,
          -1.6794090213681825,
          -3.4446692309385245,
          -3.3055467775407656,
          -1.7764931142422742,
          -3.3783797292507396,
          -2.7411332683893193,
          -3.736197238918293,
          -3.640362163527487,
          -2.6444757499437666,
          -3.638089721984506,
          -2.7368540379145427,
          -2.880851686617196,
          -4.350344948249062,
          -4.335156899534743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5338991007965945,
          -2.793511005792858,
          -7,
          -7,
          -3.866700756042499,
          -7,
          -7,
          -7,
          -3.939119717648487,
          -3.213082882645646,
          -7,
          -7,
          -7,
          -7,
          -3.036628895362161,
          -2.7067548777441615,
          -7,
          -7,
          -2.3202155460556875,
          -3.670601819347056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.398657449294496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3756636139608855,
          -7,
          -7,
          -7,
          -2.391816923613249,
          -4.845612684135473,
          -7,
          -7,
          -3.2835273648616936,
          -7,
          -3.305852740224386,
          -7,
          -7,
          -7,
          -7,
          -2.8372095278012064,
          -3.254222215638808,
          -3.349374674204051,
          -3.3851592385800426,
          -3.898286278589123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7758126429361747,
          -4.475976104139765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7768464086952993,
          -7,
          -7,
          -3.5743657065242562,
          -7,
          -2.994866823015008,
          -7,
          -7,
          -3.362105319293773,
          -3.0965624383741357,
          -3.3902283624691303,
          -7,
          -7,
          -7,
          -3.681693392004564,
          -3.4139699717480614,
          -7,
          -7,
          -2.663457086695989,
          -2.8653578243211677,
          -2.8047490188774384,
          -2.740362689494244,
          -7,
          -7,
          -2.071628108157179,
          -3.612889769287485,
          -3.7424108805804925,
          -7,
          -3.3535040694754548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0756929182018036,
          -3.7087777078901545,
          -7,
          -7,
          -7,
          -7,
          -3.372443327772641,
          -2.9734357546986665,
          -7,
          -7,
          -3.7155855518931964,
          -3.299216654900513,
          -7,
          -3.7427513086038777,
          -2.2079846976535187,
          -7,
          -7,
          -7,
          -4.524196997775221,
          -7,
          -7,
          -3.7582304084577496,
          -7,
          -7,
          -2.9539005690195412,
          -3.668665415454492,
          -7,
          -7,
          -2.5207192847497857,
          -7,
          -7,
          -7,
          -3.0517311960598494,
          -3.0259199985020175,
          -3.6155993899644367,
          -3.8481891169913984,
          -3.7256938862479183,
          -2.53315637946727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.562411832949728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5052856741441323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.975459290283739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7460284279171123,
          -7,
          -7,
          -7,
          -3.841547165256553,
          -2.7800950588159346,
          -3.1484484035233837,
          -2.0780873047087587,
          -2.4391747398434687,
          -2.386704711065075,
          -2.76063785386249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.026328938722349,
          -7,
          -4.374216605428374,
          -7,
          -3.6550743748537613,
          -7,
          -3.568729599118429,
          -7,
          -7,
          -7,
          -7,
          -3.8582965245338854,
          -7,
          -7,
          -7,
          -3.273108162165656,
          -2.713243405727743,
          -7,
          -7,
          -7,
          -7,
          -3.361727836017593,
          -7,
          -7,
          -7,
          -3.147632163939886,
          -3.7407573233077707,
          -3.2280009024796756,
          -3.75519697151723,
          -7,
          -7,
          -7,
          -2.1724569744005873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6286919625857674,
          -7,
          -7,
          -7,
          -7,
          -3.4342494523964753,
          -3.4234097277330933,
          -7,
          -7,
          -7,
          -7,
          -2.845886949371798,
          -3.215848976111454,
          -2.17242523816747,
          -3.342422680822206,
          -7,
          -3.1726418447426044,
          -2.969532392033345,
          -2.1934188358195805,
          -7,
          -3.4943183242680367,
          -7,
          -7,
          -7,
          -3.759554535696884,
          -3.555094448578319,
          -2.8287404332962187,
          -3.837588438235511,
          -7,
          -7,
          -7,
          -7,
          -3.49373680227684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.285894712480839,
          -3.2284431358004935,
          -7,
          -7,
          -7,
          -3.580747624719427,
          -3.3750231289878903,
          -7,
          -4.322136564096103,
          -7,
          -7,
          -7,
          -3.074938279468222,
          -2.9148718175400505,
          -3.2105860249051563,
          -7,
          -7,
          -7,
          -7,
          -3.239042654578873,
          -3.6577727077355213,
          -7,
          -7,
          -7,
          -3.389933545757039,
          -7,
          -7,
          -7,
          -3.326949994165999,
          -7,
          -3.5769169559652068,
          -7,
          -3.523486332343228,
          -7,
          -3.1680553034591394,
          -3.766040860381389,
          -3.4318460456987254,
          -4.168037606888807,
          -3.1144608565074874,
          -4.090878765174447,
          -7,
          -3.8961954104542107,
          -4.423499820977251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8896937914441856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.294569956855799,
          -7,
          -7,
          -2.97892329990125,
          -3.742460890226512,
          -7,
          -2.767897616018091,
          -3.8232785569516707,
          -2.845235889398656,
          -2.027229653490911,
          -4.00665854393118,
          -2.544885102554565,
          -2.5534523536943654,
          -2.348927619178392,
          -3.7364363439795194,
          -3.6531079488130422,
          -3.6825705203662005,
          -2.3922351600507605,
          -4.361841115455327,
          -3.0444684886302253,
          -2.6964074870111,
          -4.093946723890583,
          -3.868977328651328,
          -7,
          -4.788841571410247,
          -3.8337206904446335,
          -2.765937135152177,
          -2.8144897448778106,
          -7,
          -3.828595456371702,
          -4.230474467361159,
          -3.2879136470760337,
          -2.723940845569182,
          -2.741939077729199,
          -3.650581244643046,
          -4.055320982366588,
          -4.236814275171272,
          -7,
          -4.139060078649301,
          -3.9636461864848433,
          -3.699129216458944,
          -3.0525143912994106,
          -2.542437654891962,
          -7,
          -3.3426379800822894,
          -3.6570963223312,
          -3.067210388410234,
          -2.8363241157067516,
          -3.582915199370299,
          -3.592731766393962,
          -2.6827758928984187,
          -4.060508975605298,
          -7,
          -3.7676307319608626,
          -3.6085911403132283,
          -3.4397974472398007,
          -7,
          -3.3485444903288952,
          -7,
          -7,
          -7,
          -7,
          -3.7995473071256147,
          -7,
          -3.6977304979257712,
          -3.2321140257972862,
          -5.008872584806385,
          -7,
          -7,
          -7,
          -3.207048242986976,
          -7,
          -5.408209427907497,
          -3.8323492162595376,
          -4.259307121211679,
          -3.336059277866349,
          -3.576667620464078,
          -4.458199556981169,
          -4.493471992809347,
          -3.452706226511029,
          -3.0512972631525717,
          -2.825209673964737,
          -3.4756442895302118,
          -2.8187643531484383,
          -7,
          -3.0424831440096773,
          -3.1437384944823323,
          -7,
          -4.5056634605284716,
          -7,
          -3.143327129992046,
          -4.625466793609239,
          -4.330555809062996,
          -7,
          -7,
          -7,
          -7,
          -3.1347506861086147,
          -1.1202428662818602,
          -7,
          -2.2063587531499906,
          -2.103803720955957,
          -1.2199445427615632,
          -2.046201947356664,
          -7,
          -7,
          -3.3697722885969625,
          -2.425485914566185,
          -2.4373541278481747,
          -3.0153867999328026,
          -2.8060291511027384,
          -1.8905734295699475,
          -2.9773806058118346,
          -2.0558192245960782,
          -2.268928822432613,
          -2.236719159078696,
          -2.6123296529322277,
          -2.2301081646076315,
          -1.9499125186171895,
          -3.4163075870598827,
          -2.2267609637969663,
          -3.5402042998420598,
          -3.222282827095675,
          -7,
          -2.151845939100076,
          -3.3420276880874717,
          -2.512264990600886,
          -2.8136762808300997,
          -2.3216767395735283,
          -2.2098569649819138,
          -7,
          -2.299348789831753,
          -3.4108615542165976,
          -2.853393977450666,
          -3.3587911623917237,
          -7,
          -7,
          -2.194096756428317,
          -7,
          -2.278753600952829,
          -2.7633210113030287,
          -3.511214701136388,
          -1.8695078128629088,
          -2.502597799680834,
          -1.7078362064167623,
          -7,
          -2.213849659558812,
          -2.7016913116170014,
          -1.7472373637694574,
          -2.7899833959966163,
          -2.7345998321264577,
          -3.011062694729735,
          -3.392169149489736,
          -3.5660837841679958,
          -1.3921904418969324,
          -2.8048206787211623,
          -3.362105319293773,
          -2.3522284727679743,
          -3.578409970331236,
          -2.3841632002260216,
          -3.1799345981374416,
          -1.7886343092918957,
          -2.208844289340738,
          -2.5718751325887794,
          -3.9400680137393524,
          -7,
          -2.7324512023839813,
          -2.4338586921311918,
          -3.103233406386929,
          -3.2038484637462346,
          -1.7674413044637363,
          -7,
          -3.5949447366950835,
          -2.0460908387151995,
          -3.2863067388432747,
          -3.2969940766702086,
          -2.7701950001292666,
          -3.3585059114902354,
          -3.373892352104008,
          -2.5306265232810774,
          -2.114901864243015,
          -1.688607900299527,
          -2.3814622108393566,
          -2.2971036501492565,
          -7,
          -7,
          -2.3292194070638392,
          -2.159237204338384,
          -2.36579986604032,
          -1.2505704519861625,
          -2.29543118794837,
          -1.8078434842931863,
          -2.2395714741767447,
          -3.2235431366244605,
          -2.3138672203691537,
          -7,
          -2.9346667498242063,
          -7,
          -7,
          -3.0829289150151302,
          -3.798650645445269,
          -2.3472290439950934,
          -7,
          -3.2364112877439664,
          -7,
          -2.0837025712527235,
          -7,
          -3.089551882886454,
          -7,
          -3.025510672852581,
          -2.872350544494723,
          -3.038023740045158,
          -2.513217600067939,
          -1.7132480512166643,
          -2.745855195173729,
          -7,
          -7,
          -2.335959106148248,
          -7,
          -7,
          -3.4360035356698964,
          -7,
          -3.3120715213029315,
          -7,
          -3.3154305138375006,
          -2.829128264854539,
          -3.312811826212088,
          -2.21649578796984,
          -7,
          -2.6624143801161035,
          -7,
          -7,
          -3.6174197467371765,
          -7,
          -7,
          -3.097691040361552,
          -2.489657199855414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7471998707621346,
          -7,
          -7,
          -7,
          -7,
          -2.6301735297867714,
          -2.7528164311882715,
          -7,
          -7,
          -2.1699681739968923,
          -7,
          -7,
          -3.3394514413064407,
          -3.8462537204442393,
          -7,
          -7,
          -7,
          -3.2748503200166645,
          -3.545455567836917,
          -7,
          -7,
          -3.2242740142942576,
          -7,
          -7,
          -3.459938782046067,
          -2.0767781650347885,
          -3.2161659022859928,
          -3.7712934426290596,
          -3.539712523108797,
          -7,
          -7,
          -3.229169702539101,
          -3.525044807036845,
          -7,
          -7,
          -3.0530493264922316,
          -2.6864575104691117,
          -3.2598326990634834,
          -7,
          -7,
          -2.231389098449744,
          -3.290479813330673,
          -3.635483746814912,
          -7,
          -7,
          -7,
          -3.8664707831458736,
          -3.2762319579218335,
          -7,
          -7,
          -2.8041394323353503,
          -2.202566154587303,
          -2.70372115992702,
          -7,
          -7,
          -3.11293997608408,
          -7,
          -3.1511954337292214,
          -3.6074550232146683,
          -2.2917371727664304,
          -3.2720157538950723,
          -7,
          -7,
          -3.127644629984225,
          -7,
          -7,
          -7,
          -7,
          -2.750893920382125,
          -2.6942541120252788,
          -3.6245178211861346,
          -7,
          -7,
          -2.462167541814003,
          -7,
          -3.523226041965701,
          -2.5968326345359145,
          -7,
          -3.2960066693136723,
          -4.088074848055238,
          -7,
          -2.9457147140598603,
          -7,
          -7,
          -2.738433697678285,
          -7,
          -3.0066799277408256,
          -7,
          -7,
          -7,
          -2.795383396956165,
          -3.377032909310364,
          -3.1893499243391976,
          -7,
          -3.2887114923125513,
          -3.6742179455767,
          -3.370142847051102,
          -3.2511513431753545,
          -7,
          -7,
          -3.4847268042986617,
          -7,
          -3.230363757247811,
          -7,
          -3.3417170844331974,
          -3.36679638328673,
          -7,
          -7,
          -3.182822096391546,
          -7,
          -7,
          -2.8367986680925994,
          -2.627444640172432,
          -2.952550293898202,
          -3.34143452457814,
          -3.2949069106051923,
          -7,
          -7,
          -3.8048717291471643,
          -7,
          -7,
          -3.233884108765886,
          -7,
          -2.8987251815894934,
          -7,
          -3.2082800785453096,
          -3.8096868795851906,
          -7,
          -3.6122539060964374,
          -7,
          -4.2213055419384045,
          -7,
          -3.005395031886706,
          -7,
          -3.2607866686549762,
          -7,
          -2.2315276052084614,
          -3.3261309567107946,
          -7,
          -7,
          -4.08988745683333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3665511298083617,
          -2.4761330984755965,
          -3.2877737461368017,
          -7,
          -7,
          -3.9464031338990546,
          -7,
          -7,
          -3.422917980767662,
          -7,
          -3.600319329751661,
          -7,
          -7,
          -7,
          -3.3265165785186688,
          -7,
          -2.6172625170913744,
          -7,
          -7,
          -7,
          -7,
          -3.469527479187014,
          -2.316319878258001,
          -1.8507687269288802,
          -2.3435492559854603,
          -1.846367536626781,
          -1.676083645364622,
          -7,
          -3.54556672041147,
          -2.8344207036815328,
          -7,
          -7,
          -2.8898617212581885,
          -2.396417311708544,
          -2.986995539724382,
          -2.9385197251764916,
          -3.98412208286111,
          -7,
          -3.8311442784902705,
          -7,
          -3.81424759573192,
          -3.0562975709559037,
          -7,
          -7,
          -2.665580991017953,
          -3.44216608578472,
          -3.0814673283885368,
          -3.1588146467242266,
          -3.192428055331207,
          -2.940184328524863,
          -2.8577846510602454,
          -3.26583941549449,
          -7,
          -3.1676864758514913,
          -7,
          -7,
          -1.7893594719752786,
          -4.366385596953946,
          -3.2753113545418118,
          -2.5139164381268553,
          -7,
          -3.144885418287142,
          -7,
          -2.226524092257544,
          -2.998912904358786,
          -3.330413773349191,
          -2.8309092995464433,
          -2.5870870682273686,
          -7,
          -2.866050924009275,
          -7,
          -2.7463746862427323,
          -7,
          -7,
          -3.3014640731432996,
          -7,
          -7,
          -3.0184924534014725,
          -7,
          -3.338257230246256,
          -3.3718525790917426,
          -2.859909919319079,
          -4.170467076385937,
          -4.7140194385588226,
          -7,
          -2.099076074764564,
          -2.7317901537745826,
          -7,
          -7,
          -7,
          -3.0533345888650136,
          -3.4708513245261177,
          -2.863768824029474,
          -3.215637563435062,
          -2.9161906599805376,
          -2.482873583608754,
          -2.2846562827885157,
          -2.744553742351106,
          -2.4104156728052764,
          -1.8123190431982061,
          -3.1700758288813535,
          -7,
          -7,
          -7,
          -7,
          -3.36078268987328,
          -2.8700135281903574,
          -7,
          -3.060508975605298,
          -3.482373285458582,
          -7,
          -3.863976783904387,
          -3.4149733479708178,
          -7,
          -7,
          -7,
          -2.4239448191097,
          -7,
          -3.7715262393269122,
          -2.1293865609616143,
          -3.60741377771562,
          -7,
          -3.2889196056617265,
          -3.2984163800612945,
          -4.044382947073537,
          -3.352504098638387,
          -2.8394780473741985,
          -2.808818425092124,
          -3.4348349343530247,
          -3.1509098737011216,
          -7,
          -3.2610248339923973,
          -2.9526310252827455,
          -2.6137361412618714,
          -1.9232665507054019,
          -3.2127201544178425,
          -2.6924062348336304,
          -1.69186516156754,
          -2.5080806036449093,
          -2.690786555281818,
          -7,
          -3.2355284469075487,
          -2.731767781875961,
          -7,
          -3.600319329751661,
          -3.456214155357989,
          -4.181637185532979,
          -3.2582061260688273,
          -7,
          -3.5349352251341584,
          -7,
          -7,
          -3.709439574132411,
          -7,
          -4.012288739834607,
          -3.046007138120972,
          -1.8508342033943512,
          -1.6796833556134474,
          -1.4575791469957626,
          -3.5509617522981762,
          -4.683074711723954,
          -2.8958242057044803,
          -7,
          -3.2127201544178425,
          -3.214578953570499,
          -3.540454613671412,
          -3.2547091655685,
          -7,
          -1.5088921272146836,
          -3.5826314394896364,
          -7,
          -3.04766419460156,
          -7,
          -3.0173811923265106,
          -3.0565237240791006,
          -2.622214022966295,
          -3.7333577879255855,
          -3.357934847000454,
          -4.3874076249281835,
          -3.5056925074122,
          -4.4136032189545995,
          -7,
          -2.756870071608761,
          -3.701465186162768,
          -3.557085936526085,
          -7,
          -3.0860037056183818,
          -3.2778383330020473,
          -3.193958978019187,
          -3.165896909992507,
          -7,
          -3.0483122987091575,
          -7,
          -7,
          -3.5733358400660675,
          -2.335792101923193,
          -3.34908316877959,
          -1.9586594270529332,
          -2.449324093098727,
          -1.9761970853273751,
          -2.4677798235250936,
          -7,
          -7,
          -7,
          -4.780965029608317,
          -7,
          -7,
          -7,
          -4.395413767475018,
          -7,
          -4.3031852539407955,
          -4.18837718436134,
          -7,
          -7,
          -7,
          -4.729051339750031,
          -5.003141587724114,
          -3.993072328895638,
          -7,
          -7,
          -4.928979299448852,
          -7,
          -7,
          -7,
          -7,
          -4.301854372269586,
          -4.547553195630555,
          -7,
          -7,
          -4.3688445068258215,
          -7,
          -7,
          -4.482201621904094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626945698847907,
          -2.537279263453857,
          -7,
          -3.8664645659717403,
          -3.473535627784848,
          -7,
          -7,
          -7,
          -4.335480467368298,
          -1.6720978579357175,
          -1.9970611158472376,
          -3.557100988756635,
          -3.8544975657150813,
          -3.2140133047697534,
          -7,
          -3.8543212266573574,
          -3.8959747323590648,
          -1.8017955841534885,
          -7,
          -4.3952564808860215,
          -7,
          -7,
          -3.565489255361976,
          -4.448283200109149,
          -7,
          -7,
          -2.6085260335771943,
          -7,
          -3.0063614376592094,
          -7,
          -7,
          -7,
          -4.249076003683611,
          -3.241795431295199,
          -3.501489624786272,
          -4.150695051142714,
          -4.314407994796529,
          -7,
          -4.245833335097326,
          -7,
          -3.825707333540593,
          -3.80546007741919,
          -3.0610753236297916,
          -3.06245500039278,
          -3.3704703854098397,
          -3.385069776331935,
          -3.245671962807084,
          -7,
          -3.7115541682501694,
          -3.7178576585672802,
          -7,
          -7,
          -2.6334684555795866,
          -7,
          -7,
          -7,
          -2.8947703456567213,
          -1.683175737152787,
          -1.978287955736132,
          -7,
          -3.497620649781288,
          -2.5858553633220276,
          -7,
          -7,
          -3.2833012287035497,
          -2.4506980578348374,
          -7,
          -2.714172956272963,
          -2.119997780003502,
          -2.8656960599160706,
          -7,
          -7,
          -2.919601023784111,
          -1.8361867990361727,
          -7,
          -7,
          -3.381656482585787,
          -3.038023740045158,
          -2.662001879389917,
          -7,
          -2.193700204113876,
          -7,
          -3.215713079777089,
          -7,
          -3.270911639410481,
          -4.007715780666695,
          -3.3742121051701033,
          -4.495530462101731,
          -7,
          -2.9995654882259823,
          -1.3332552999187972,
          -7,
          -1.9965970875309715,
          -7,
          -2.275848610309422,
          -1.952335972434747,
          -7,
          -7,
          -3.5620548296563785,
          -2.4938451572530163,
          -3.780965029608317,
          -7,
          -3.472610197596045,
          -2.627195109792065,
          -3.0459094670350093,
          -2.0542157128256915,
          -2.8910194679543166,
          -3.92667678639669,
          -7,
          -2.064083435963596,
          -1.8723044539775622,
          -7,
          -3.7054930930166874,
          -7,
          -7,
          -3.9595183769729982,
          -1.5646796659208264,
          -2.264066972315376,
          -2.6131015169669127,
          -3.013005850015737,
          -3.45484486000851,
          -7,
          -3.9184497424011577,
          -1.7232240539209986,
          -3.252731702726023,
          -7,
          -2.321701969500738,
          -2.3073225398823136,
          -7,
          -7,
          -2.4376918545429205,
          -2.4065700586274863,
          -1.477724023007823,
          -1.7639353469873473,
          -1.941345766226938,
          -2.661602373435377,
          -2.781885871793446,
          -3.121395680707223,
          -2.463856586950606,
          -7,
          -3.13481437032046,
          -7,
          -2.396697391280942,
          -7,
          -7,
          -7,
          -2.530199698203082,
          -7,
          -3.368559589517835,
          -7,
          -3.4183289173165043,
          -3.1806872647181375,
          -3.7645497190644672,
          -2.05307844348342,
          -7,
          -2.244495414087114,
          -7,
          -1.4252792663679836,
          -1.6944512483889211,
          -7,
          -2.325310371711061,
          -2.132376137978425,
          -2.494502447046173,
          -2.650893423614602,
          -1.728547016499123,
          -7,
          -7,
          -2.7523045932010324,
          -7,
          -7,
          -3.27207378750001,
          -3.5780658838360915,
          -7,
          -3.208844289340738,
          -0.8869604866914078,
          -7,
          -3.2762319579218335,
          -7,
          -1.5181149554842737,
          -7,
          -2.8661691476337707,
          -2.9816676269911824,
          -2.8042943549217694,
          -3.1468099627758708,
          -7,
          -3.049024097915049,
          -2.383815365980431,
          -7,
          -3.0287745265000883,
          -7,
          -3.0830644414577666,
          -2.4035018157410506,
          -2.350441856535061,
          -3.0593740590659575,
          -7,
          -2.975316900589052,
          -7,
          -7,
          -2.93976877545335,
          -2.9407654356312176,
          -3.0595634179012676,
          -2.1734929735676083,
          -7,
          -7,
          -2.8254261177678233,
          -7,
          -7,
          -7,
          -7,
          -3.22219604630172,
          -3.1351326513767748,
          -7,
          -2.932980821923198,
          -4.602437120867181,
          -7,
          -7,
          -7,
          -3.893012332222442,
          -4.210479042645248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.660675788338524,
          -4.156809994461382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.020390881862707,
          -7,
          -7,
          -2.400537989391946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.864511081058392,
          -4.442194326559684,
          -7,
          -2.916980047320382,
          -7,
          -7,
          -2.789177654611687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.306065647659647,
          -7,
          -3.6000467200622737,
          -3.488480208426273,
          -7,
          -7,
          -3.431524584187451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7140901489905187,
          -4.4497868469857735,
          -7,
          -7,
          -3.090258052931316,
          -7,
          -3.7280289544205187,
          -2.477637964455693,
          -7,
          -7,
          -5.12523070148519,
          -7,
          -3.3439990690571615,
          -7,
          -7,
          -2.725269745809246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1835545336188615,
          -7,
          -7,
          -7,
          -4.054091894984775,
          -7,
          -3.716128602823834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5769169559652068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9707187037201894,
          -7,
          -3.367169488534681,
          -7,
          -3.1466447454142683,
          -4.076021141783546,
          -7,
          -7,
          -7,
          -3.1420764610732848,
          -3.9066402697645035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.87046243158892,
          -4.452958827892976,
          -7,
          -7,
          -7,
          -4.148536553821937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.819982395429594,
          -3.162862993321926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7255441224863532,
          -3.7241939195143297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8222988712623667,
          -7,
          -7,
          -7,
          -4.2400122882325455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3647385550553985,
          -7,
          -7,
          -7,
          -7,
          -4.497997933100203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9197577805018944,
          -7,
          -3.977952121201462,
          -7,
          -7,
          -4.074537365086869,
          -7,
          -7,
          -3.5780658838360915,
          -7,
          -7,
          -7,
          -2.7745169657285493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2814878879400813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1953460583484197,
          -7,
          -7,
          -2.782074298464784,
          -2.8577344348976292,
          -7,
          -7,
          -7,
          -3.8491121661845775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5744942682853273,
          -7,
          -5.013942214596968,
          -7,
          -2.852479993636856,
          -2.921686475483602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2043913319193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.225567713439471,
          -3.8629756824198656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9542425094393248,
          -7,
          -7,
          -3.67641923171836,
          -7,
          -7,
          -3.811306840081336,
          -7,
          -7,
          -7,
          -2.6685765035393483,
          -7,
          -4.056053206022728,
          -7,
          -4.233309231323719,
          -7,
          -7,
          -7,
          -3.2895889525425965,
          -7,
          -3.3550202683299375,
          -3.408833321776418,
          -7,
          -3.1775364999298623,
          -7,
          -7,
          -7,
          -7,
          -2.9400181550076634,
          -7,
          -7,
          -3.1408221801093106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1152775913959014,
          -7,
          -7,
          -4.432696769735502,
          -7,
          -7,
          -4.28431791543061,
          -7,
          -7,
          -3.10151795524841,
          -7,
          -3.9522595365908204,
          -7,
          -7,
          -3.2692793897718984,
          -7,
          -7,
          -5.527332752122445,
          -3.866050924009275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0960405542954277,
          -7,
          -3.3062105081677613,
          -7,
          -3.3913762391696496,
          -7,
          -7,
          -3.3098430047160705,
          -2.9786369483844743,
          -4.856602026457208,
          -7,
          -4.671128276629089,
          -7,
          -3.786964259435733,
          -3.5557238881668107,
          -3.468716471515472,
          -7,
          -2.5674185056727485,
          -7,
          -3.5269850685599957,
          -2.999710373792598,
          -3.2374599541198688,
          -3.307282047033346,
          -7,
          -7,
          -3.3830969299490943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8999982314291435,
          -7,
          -7,
          -4.293296245148464,
          -7,
          -7,
          -7,
          -4.711967424641027,
          -7,
          -7,
          -7,
          -4.578811060322582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.58029758843657,
          -7,
          -4.37177878380567,
          -7,
          -4.027920136405803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.296489682285046,
          -7,
          -4.375370938029058,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4513258084895195,
          -4.181986424480151,
          -4.135948506676213,
          -3.0398105541483504,
          -7,
          -4.287577809078705,
          -3.880927865267085,
          -7,
          -7,
          -7,
          -4.332137884743325,
          -3.68761812957177,
          -3.481012420956573,
          -7,
          -4.661268293658268,
          -4.202597285692431,
          -7,
          -3.958643504540717,
          -3.815710539788963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.21303937125096,
          -4.408620089323603,
          -5.706356715653006,
          -7,
          -3.680335513414563,
          -7,
          -4.051943183341951,
          -7,
          -7,
          -3.7724684030532805,
          -3.914210891401378,
          -7,
          -4.32006315959498,
          -3.585589628962412,
          -4.304985720206672,
          -7,
          -7,
          -3.7989957344438814,
          -4.295677034017465,
          -4.486104458535134,
          -2.9894498176666917,
          -3.7969062206302726,
          -4.2565445707979865,
          -7,
          -4.3931070242921315,
          -7,
          -3.2806921642851177,
          -7,
          -4.2934951434720245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3881900415998545,
          -2.1881246066559927,
          -3.034427905025403,
          -7,
          -3.2593549273080344,
          -3.8634616535278656,
          -3.3697722885969625,
          -3.2833012287035497,
          -7,
          -2.835611313442766,
          -7,
          -3.31909911609709,
          -2.3218926347095654,
          -2.9434945159061026,
          -7,
          -3.822429623779357,
          -3,
          -3.1784013415337555,
          -7,
          -7,
          -3.2934362201313325,
          -7,
          -7,
          -2.9334872878487053,
          -2.0585344760699806,
          -7,
          -3.104359057505805,
          -7,
          -7,
          -4.595441104815296,
          -3.50289960722803,
          -4.787262056515856,
          -7,
          -7,
          -2.3974799238385747,
          -7,
          -2.367666464108184,
          -7,
          -2.000867721531227,
          -2.7154625954409997,
          -7,
          -7,
          -2.518137764469437,
          -1.5725047477662464,
          -3.6731131042382335,
          -7,
          -3.215108581053093,
          -2.60959440922522,
          -7,
          -2.246744709723841,
          -3.379532125886119,
          -7,
          -7,
          -2.380211241711606,
          -2.219419059683715,
          -7,
          -3.6658623002031554,
          -7,
          -7,
          -7,
          -2.305136318943639,
          -3.0019157039612216,
          -2.139091607523823,
          -7,
          -2.7041505168397992,
          -7,
          -3.842609239610562,
          -2.303196057420489,
          -7,
          -7,
          -2.1617956679336436,
          -2.4923412532549745,
          -7,
          -7,
          -2.250635230436816,
          -3.5154254660566715,
          -3.607776603741693,
          -3.0437551269686796,
          -3.126888677692568,
          -3.4497868469857735,
          -2.087929919941919,
          -2.641804498106114,
          -2.7969006863964827,
          -3.6530194510996132,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.321805483857539,
          -7,
          -3.8291622019278186,
          -2.828015064223977,
          -4.1584529606888285,
          -3.64205624987141,
          -7,
          -2.249931756634195,
          -7,
          -2.2692534315230697,
          -7,
          -2.3519792918643674,
          -2.7011840783065937,
          -3.677241845946654,
          -7,
          -2.323252100171687,
          -2.594760752586463,
          -3.137652964068974,
          -1.9929950984313414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.27669152884504,
          -7,
          -7,
          -7,
          -7,
          -2.9903388547876015,
          -2.9084850188786495,
          -2.8939466075520737,
          -7,
          -3.2594232126040716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.651873099180296,
          -7,
          -2.9689496809813427,
          -3.212453961040276,
          -7,
          -7,
          -7,
          -7,
          -2.8565275017950387,
          -7,
          -7,
          -3.1878026387184195,
          -2.733999286538387,
          -7,
          -7,
          -7,
          -7,
          -3.7243578042264267,
          -3.737907923374639,
          -3.2150424129289608,
          -2.7542092947359547,
          -7,
          -3.760271660542063,
          -3.0495186327171995,
          -3.398764385277643,
          -7,
          -7,
          -3.409129696282029,
          -2.5824559315131506,
          -2.6729499729544792,
          -3.7640266076920375,
          -7,
          -7,
          -3.7265642161622448,
          -2.7430195349869044,
          -3.399396792103312,
          -7,
          -2.594438592727116,
          -3.046531995970811,
          -7,
          -7,
          -3.721645766289746,
          -3.5391388535767745,
          -3.7939998009844706,
          -3.7532765701844184,
          -3.614686342282013,
          -3.7788744720027396,
          -7,
          -7,
          -7,
          -3.5342800052050816,
          -7,
          -3.419900701340701,
          -7,
          -3.0067104742139805,
          -3.7507397512353506,
          -3.775950081737593,
          -3.7373516958037145,
          -7,
          -3.06595298031387,
          -3.486076097372589,
          -2.119475840906798,
          -7,
          -2.8226764934027218,
          -7,
          -3.312811826212088,
          -3.819214799882384,
          -2.624144869156648,
          -3.5809819659626774,
          -2.349771556978745,
          -3.198264238006873,
          -7,
          -3.1673911880740753,
          -3.1815005884677596,
          -2.8175653695597807,
          -7,
          -7,
          -7,
          -3.066325925362038,
          -2.8888939620872947,
          -2.905611623054157,
          -7,
          -7,
          -2.6612801355233766,
          -7,
          -3.232021452903135,
          -3.1148967983141596,
          -7,
          -3.1773055843418603,
          -3.2109508249954035,
          -7,
          -2.7040892061201514,
          -7,
          -3.744214724814166,
          -2.2884408683559605,
          -2.837777769553733,
          -3.146128035678238,
          -3.719911064198339,
          -3.279381730613431,
          -3.766784515497859,
          -3.2012332086808746,
          -2.9202277114569286,
          -7,
          -7,
          -2.8703715256338183,
          -2.9179254220647413,
          -3.0079752466359797,
          -7,
          -7,
          -7,
          -3.343867921696387,
          -3.5592481040882538,
          -3.1596674343147124,
          -7,
          -3.277425832275861,
          -7,
          -7,
          -3.722057771331464,
          -2.897474358923155,
          -7,
          -3.159687479754789,
          -3.1986570869544226,
          -2.5771086551437348,
          -2.4257200579414895,
          -7,
          -3.743901550485179,
          -3.089198366805149,
          -3.7985125330313516,
          -2.706373359682506,
          -3.475235222604128,
          -3.721068301797159,
          -3.367852683427225,
          -3.319053982508718,
          -3.0054188608341708,
          -7,
          -3.340862563370483,
          -3.233179496887814,
          -7,
          -7,
          -7,
          -3.81051814410331,
          -7,
          -3.405118593299161,
          -3.647334060324388,
          -7,
          -7,
          -2.0017372877052377,
          -2.7775383515326832,
          -7,
          -7,
          -3.6715430852625737,
          -7,
          -7,
          -7,
          -3.033182413729195,
          -3.119668207244826,
          -2.847684807491839,
          -2.559136826639166,
          -3.0251237329568363,
          -2.728669353880582,
          -7,
          -3.491571785500985,
          -7,
          -7,
          -3.7938602013426697,
          -3.9089405210453623,
          -2.7822085121410036,
          -7,
          -7,
          -7,
          -2.995437743136134,
          -7,
          -3.7189996378787185,
          -3.82936810798882,
          -3.8016780590358934,
          -7,
          -3.3254472435942937,
          -3.8143142002074595,
          -3.5643109099606027,
          -3.3809946774704036,
          -3.8252313231999002,
          -2.8875469749397595,
          -3.2129196924327945,
          -7,
          -2.9428531209508777,
          -3.1476763242410986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9159272116971158,
          -3.4452148760562173,
          -3.3368779979381324,
          -7,
          -3.3047058982127653,
          -2.7473040474314554,
          -3.775756037844098,
          -2.939882147548364,
          -2.983776588036885,
          -3.8021577531869615,
          -3.8570911546735136,
          -7,
          -3.046625212091902,
          -3.189279712637177,
          -3.509202522331103,
          -7,
          -7,
          -3.976074731619874,
          -7,
          -3.536842408605631,
          -3.355962079458681,
          -3.7293754038488665,
          -3.4358443659844413,
          -2.479850035212238,
          -7,
          -2.8464608251293324,
          -3.282319942414035,
          -3.2083741645947104,
          -3.2684219472783616,
          -3.4556821645007902,
          -2.9355072658247128,
          -3.371867951531505,
          -7,
          -2.780077171419682,
          -3.16087904727443,
          -2.9008403154999742,
          -7,
          -7,
          -3.445059047392219,
          -3.7279477095447966,
          -7,
          -7,
          -7,
          -7,
          -3.414572275617945,
          -3.334905905779908,
          -3.008268884068272,
          -3.659928704049752,
          -7,
          -3.448010273039476,
          -3.0590330049637804,
          -7,
          -7,
          -7,
          -3.36579986604032,
          -3.3375258147321936,
          -7,
          -7,
          -7,
          -7,
          -3.74170298395774,
          -7,
          -7,
          -3.118859695409587,
          -3.096002916788983,
          -7,
          -7,
          -7,
          -3.740441644949766,
          -2.725614678791579,
          -2.8593634953716034,
          -7,
          -7,
          -3.9844372947960762,
          -3.826269219393726,
          -2.956728552408984,
          -3.0553400995441815,
          -7,
          -7,
          -7,
          -1.9930020488667601,
          -2.6054318104391205,
          -2.103272957302832,
          -3.2930677680163307,
          -3.795694678823433,
          -3.7777891874348675,
          -3.2643455070500926,
          -3.7451528950769006,
          -2.4143465095431558,
          -3.0134271270706963,
          -2.4795064594884484,
          -3.1556829873392385,
          -3.7686381012476144,
          -3.1070742314120694,
          -3.4657545198338777,
          -3.7321524180652137,
          -3.4958910796661877,
          -3.1077750894177876,
          -3.097373013565665,
          -7,
          -3.744214724814166,
          -3.09871293057888,
          -3.440436766105774,
          -2.7340660548499804,
          -3.721068301797159,
          -2.5886451329030864,
          -3.0443764119563244,
          -3.3153404766272883,
          -3.8783494222177755,
          -2.765600828523882,
          -3.2716123995984345,
          -2.8702661651948076,
          -7,
          -4.081779226767534,
          -7,
          -7,
          -2.8589881003426956,
          -3.224856655856958,
          -2.6212392458174656,
          -2.726890140741822,
          -3.737788791709675,
          -3.3525683861793083,
          -3.066645337841675,
          -3.1535709814337802,
          -3.621791538802892,
          -2.654818040490762,
          -7,
          -7,
          -7,
          -3.4195840447594805,
          -3.350441856535061,
          -7,
          -3.4621733047067904,
          -3.1696744340588068,
          -3.742568034366142,
          -3.1409477713426623,
          -3.7506626461340558,
          -2.9916690073799486,
          -3.7673785241141804,
          -3.4839437142904197,
          -2.673020907128896,
          -7,
          -3.9309150873258627,
          -3.067011308589492,
          -3.3977397844052803,
          -7,
          -2.7185412294947793,
          -3.623122005965013,
          -2.952873129432044,
          -7,
          -3.7790912038454993,
          -7,
          -3.0134692323091703,
          -3.134057516640611,
          -3.526511582284746,
          -3.5395778833453093,
          -7,
          -7,
          -2.631980634727735,
          -3.442244527847952,
          -7,
          -3.7704101315139065,
          -3.3632828442326597,
          -3.4470804718310024,
          -2.5204478015727347,
          -7,
          -7,
          -3.126249510323941,
          -3.314159553257814,
          -4.370383540607654,
          -3.654465333520146,
          -4.149326902872513,
          -3.249167772195713,
          -3.4900287479278442,
          -3.494830167764257,
          -2.061366019546052,
          -3.154697793596388,
          -2.6630062128618666,
          -3.69810054562339,
          -3.414342707762766,
          -3.787697956697124,
          -2.8836208828885987,
          -3.6392540064600425,
          -3.569490954348783,
          -2.9415753859227842,
          -7,
          -3.4035151549893445,
          -7,
          -4.0953419884146625,
          -3.5277955602574043,
          -2.8807575651270136,
          -3.0673436774644065,
          -4.117238142139819,
          -4.002831038473649,
          -4.003223501202289,
          -7,
          -2.5937004799072296,
          -3.3802112417116064,
          -4.020054516012569,
          -3.810618908484714,
          -4.30965145584932,
          -7,
          -4.228503016659257,
          -3.79046109860397,
          -3.289890477664777,
          -3.2615007731982804,
          -2.8283376000590046,
          -7,
          -3.370008135101853,
          -2.839399028578788,
          -3.0170681371419867,
          -2.792951708250132,
          -3.302713794348007,
          -3.371744956775117,
          -3.190012065678453,
          -2.6725447396234787,
          -3.120464247032542,
          -2.7614176776053556,
          -2.923198950972694,
          -2.8287507574419504,
          -7,
          -2.926802604741088,
          -4.058539897939781,
          -7,
          -3.264187954179907,
          -3.0056247565585017,
          -2.4040474118956006,
          -7,
          -2.617649653602112,
          -3.090878144270523,
          -3.9042352843723984,
          -3.742568034366142,
          -3.986368593570273,
          -3.2716867502389397,
          -2.8663239810637275,
          -7,
          -3.95102918525155,
          -2.0705391938699713,
          -2.8652061159153597,
          -7,
          -3.0684388733943915,
          -3.356913217543442,
          -2.880308304868466,
          -3.246301577171691,
          -2.1679410523362126,
          -3.74795530690673,
          -2.1916334435642377,
          -3.436333932581096,
          -7,
          -2.577096087297863,
          -2.86005440509186,
          -3.624642998257259,
          -3.1440352668252016,
          -3.751048034820188,
          -2.368713956878259,
          -3.3553269802541617,
          -3.389856860618742,
          -7,
          -7,
          -7,
          -7,
          -3.6978829086948046,
          -1.8830699435990796,
          -2.1281008870627143,
          -1.689971068634483,
          -3.2605483726369795,
          -2.2426460271625466,
          -1.4080095203436613,
          -2.425485914566185,
          -2.4506980578348374,
          -2.835611313442766,
          -7,
          -2.5804361804840066,
          -1.9553354391429998,
          -1.6578082654644928,
          -2.2520182138943667,
          -7,
          -2.7018796595988106,
          -1.7598631356238528,
          -2.221181284727327,
          -3.7802452838653524,
          -3.155336037465062,
          -2.554004321011903,
          -3.760271660542063,
          -2.0207378494638983,
          -2.437552390568762,
          -2.0784784602759463,
          -7,
          -1.3172311355441193,
          -3.7281913985899466,
          -3.735519058815171,
          -3.154414155554896,
          -2.1837010676471413,
          -2.631147162536491,
          -3.7203247174174416,
          -3.2769785139092744,
          -1.8669838821074494,
          -3.3014640731432996,
          -2.10283374010311,
          -7,
          -2.169168462503224,
          -1.6991097547853513,
          -7,
          -2.735119634081872,
          -2.7432081503806565,
          -2.0422922040434477,
          -2.4356623863120097,
          -2.6757019822045427,
          -2.1566164472925426,
          -2.368644417219931,
          -3.1607685618611283,
          -2.175959634723138,
          -2.287499106768442,
          -2.6559916658950637,
          -3.4252896164467943,
          -1.8947353540933787,
          -2.036607022607408,
          -3.8345478576809486,
          -1.6499674589621967,
          -7,
          -7,
          -2.898073525383819,
          -2.360467183515849,
          -2.050780311800198,
          -1.9577168838246266,
          -2.5072059920620737,
          -3.5065726742525136,
          -7,
          -3.37485828006509,
          -2.910700616959574,
          -2.0097148594798413,
          -2.970036776622557,
          -2.0719454589070714,
          -1.890301229948437,
          -2.3035444126825313,
          -7,
          -1.8602570494485853,
          -1.9812927455892713,
          -2.075645586232719,
          -3.5510228130338692,
          -2.103715576919223,
          -2.7722088296639598,
          -2.7080808104682315,
          -2.1247026428368407,
          -0.8404898135031628,
          -2.2695596400388207,
          -1.7387948376762659,
          -3.0894105109835444,
          -3.7267272090265724,
          -3.720242018287057,
          -3.010378489484261,
          -3.4081834128693056,
          -2.356467138669094,
          -2.7680116190327637,
          -1.6318249995296534,
          -3.0615781248227445,
          -1.6675233466792163,
          -2.1184190556782965,
          -2.3893526369799023,
          -1.9210138986341143,
          -7,
          -2.2116544005531824,
          -7,
          -1.9548211830517932,
          -1.9036560889385818,
          -3.6837222824514324,
          -7,
          -2.353378922399407,
          -2.9383052411083064,
          -1.3581579462144981,
          -2.866951567327725,
          -3.748962861256161,
          -3.7229628089424898,
          -3.0224283711854865,
          -3.7315887651867388,
          -3.7271344237604884,
          -3.2584776449785178,
          -2.4103259367461924,
          -3.8130469651601078,
          -2.9291633832050645,
          -3.452246574520437,
          -2.718501688867274,
          -3.13481437032046,
          -2.9694935689446047,
          -3.166800009514995,
          -2.675854687720147,
          -2.2430380486862944,
          -2.248722343662518,
          -1.9489370135764186,
          -2.7011154878043895,
          -7,
          -2.4605971888976015,
          -3.119997780003502,
          -2.5147070975462795,
          -2.452859335795852,
          -3.018534070428183,
          -2.181528697484242,
          -2.9225030280360786,
          -2.9198249446356317,
          -1.6500020632708234,
          -3.2725957412701385,
          -2.689012715585447,
          -3.1280760126687155,
          -3.2576785748691846,
          -2.1902071514295747,
          -2.8216772586543666,
          -2.6451414452320305,
          -2.5514499979728753,
          -3.4760341590784485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0884904701823963,
          -7,
          -7,
          -5.204136268393641,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3344135368371,
          -7,
          -7,
          -7,
          -4.4255214113236825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.839716812268482,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2083983548560875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.242417184417719,
          -3.8454856299390485,
          -7,
          -7,
          -3.3664229572259727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1746411926604483,
          -4.928864207465377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7723767236537498,
          -7,
          -7,
          -7,
          -7,
          -3.904138265829186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9942511454528664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02094105986232,
          -3.7126497016272113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0484029561527395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.84998264839255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.574922104783855,
          -7,
          -3.658774320844357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.766040860381389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.345177616542704,
          -4.352471951298952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.712786869886757,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941576025408112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6635124704151556,
          -7,
          -3.766710207262259,
          -7,
          -7,
          -7,
          -7,
          -4.009833178608563,
          -7,
          -3.9293167267534956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9826781933834843,
          -7,
          -7,
          -3.69810054562339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.424881636631067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.529167182538893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.8282744019060555,
          -3.8577545220594422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.273121699701525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.500236474825639,
          -7,
          -7,
          -4.115643789669941,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5638369186645447,
          -7,
          -4.180039810927176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8796462871127257,
          -4.324611653328921,
          -7,
          -4.076250230266718,
          -7,
          -4.307517431203132,
          -7,
          -7,
          -7,
          -4.529109391761361,
          -4.097048965011131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.151492428425498,
          -7,
          -7,
          -4.186419489155475,
          -3.2317243833285163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.76420976835399,
          -7,
          -7,
          -7,
          -7,
          -4.9338768645229125,
          -3.9824973691977124,
          -7,
          -4.437750562820388,
          -7,
          -7,
          -7,
          -4.433609843323718,
          -7,
          -7,
          -7,
          -4.368825930958845,
          -7,
          -7,
          -4.990618524968529,
          -4.709470662693623,
          -7,
          -7,
          -7,
          -7,
          -3.2463778783937567,
          -7,
          -7,
          -3.767341422368662,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.906981153228854,
          -7,
          -3.817703061606812,
          -7,
          -7,
          -3.9009825016883535,
          -3.331239249545775,
          -7,
          -5.046075494813826,
          -7,
          -2.4840624550927735,
          -7,
          -3.9893385599532865,
          -7,
          -7,
          -7,
          -2.5289167002776547,
          -7,
          -3.261069475456373,
          -7,
          -3.700068825769947,
          -2.6334684555795866,
          -2.621176281775035,
          -2.975291916582815,
          -2.4373541278481747,
          -7,
          -7,
          -2.5804361804840066,
          -7,
          -3.47316012696852,
          -3.2880255353883627,
          -2.1649473726218416,
          -7,
          -3.8178627297096406,
          -2.666751912411818,
          -3.341137638740964,
          -7,
          -2.8363241157067516,
          -3.459317082865925,
          -2.553883026643874,
          -2.4435237466871254,
          -3.1983821300082944,
          -7,
          -7,
          -2.7702453944880805,
          -7,
          -7,
          -3.593706862849097,
          -3.6956357536491224,
          -3.405737555618183,
          -7,
          -3.102605194126567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6429341748117063,
          -7,
          -1.5518933818622322,
          -2.5585085730707764,
          -7,
          -2.8138668026501783,
          -2.8254261177678233,
          -1.7136105305189089,
          -3.035829825252828,
          -2.4002500911501117,
          -7,
          -3.9755237129603316,
          -3.409876790951437,
          -1.9746651808046278,
          -7,
          -7,
          -3.2533380053261065,
          -3.1381763395730413,
          -7,
          -7,
          -3.405915255308017,
          -7,
          -3.7032757416722104,
          -7,
          -2.7880504684712695,
          -7,
          -2.5634810853944106,
          -7,
          -7,
          -3.278219929091885,
          -7,
          -3.2830749747354715,
          -3.485082288055845,
          -1.8573324964312685,
          -7,
          -3.7768464086952993,
          -3.782973994944048,
          -3.1150555026762046,
          -7,
          -3.123873409568474,
          -7,
          -3.7168377232995247,
          -1.885361220031512,
          -3.3236645356081,
          -2.79309160017658,
          -2.6229044753882,
          -2.56702636615906,
          -7,
          -7,
          -3.510027684973431,
          -3.4220971631317103,
          -7,
          -3.1142772965615864,
          -3.484791459355562,
          -2.973589623427257,
          -3.3087777736647213,
          -3.2879012132617578,
          -2.6364878963533656,
          -7,
          -2.8419848045901137,
          -7,
          -7,
          -7,
          -3.1659364290317904,
          -3.3631417096979495,
          -7,
          -3.192846115188842,
          -7,
          -2.3004244091989325,
          -7,
          -7,
          -7,
          -2.062581984228163,
          -2.2405492482826,
          -7,
          -1.9978230807457253,
          -3.006822459570757,
          -7,
          -7,
          -7,
          -2.161368002234975,
          -7,
          -7,
          -7,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -3.7444494574467986,
          -3.6313422864839326,
          -7,
          -7,
          -3.503245771465113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.01717251394567,
          -3.0893751608160995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6310376965367404,
          -7,
          -7,
          -7,
          -4.1950551387337205,
          -4.795184589682424,
          -4.317958924700952,
          -4.494245062612022,
          -3.9512750558456595,
          -3.2124403056987485,
          -3.439922795914063,
          -7,
          -4.099432007131712,
          -2.3263950637972677,
          -4.826974868372878,
          -7,
          -7,
          -3.2986515788116426,
          -2.487563118856403,
          -3.3536002754719343,
          -4.798802518387985,
          -7,
          -7,
          -4.795476804945366,
          -2.6832553179742296,
          -2.773373813613427,
          -7,
          -2.521985231565218,
          -2.2974027680604534,
          -3.897008193182832,
          -4.496279102458945,
          -4.494015374757144,
          -3.444404634409438,
          -3.687549540152836,
          -3.756290249756674,
          -2.1566356727947436,
          -3.5695253732681067,
          -7,
          -7,
          -4.019697730980192,
          -3.5046203591177894,
          -4.018624226973913,
          -3.4702567619633173,
          -4.79531680665612,
          -3.263243690843952,
          -4.195491445109328,
          -2.751431342261705,
          -4.194306163649559,
          -4.0992177915305135,
          -3.4844218721716147,
          -3.4997076973735277,
          -2.3868423283433025,
          -4.797371426606096,
          -4.322970043852789,
          -4.512837759385333,
          -3.32376758329678,
          -2.4961003641614714,
          -1.9809767626865695,
          -3.5098675725188127,
          -2.513954995368114,
          -2.951861342460453,
          -7,
          -3.799223343064828,
          -3.4683070414857493,
          -4.322488060518078,
          -4.0219675739438765,
          -4.499226431276069,
          -7,
          -4.321826183768503,
          -2.6883733297085577,
          -2.1366033236200126,
          -4.796241200121809,
          -7,
          -2.7471820510443075,
          -4.795226346759703,
          -3.3967093741958863,
          -3.289247845781579,
          -7,
          -3.856171486902885,
          -2.961686186921197,
          -4.7958244240923475,
          -3.1736537289204207,
          -7,
          -4.4959673257948305,
          -2.058357342596415,
          -3.851930678640268,
          -4.195304510332836,
          -7,
          -3.3958033777212555,
          -4.1000326290916975,
          -3.2107932280693396,
          -3.5852748953242775,
          -3.658393026279124,
          -4.502747942346888,
          -2.268350538181473,
          -3.4173853239538325,
          -2.8674674878590514,
          -4.7956715059460215,
          -7,
          -4.111255790782233,
          -3.5031230720768396,
          -3.6945444541986068,
          -3.370645242623348,
          -4.796546581877668,
          -3.257518584268037,
          -4.021216872447421,
          -7,
          -7,
          -2.8393926115935413,
          -4.795476804945366,
          -3.8083865463958886,
          -3.523363056347348,
          -2.654756567983414,
          -2.197454784251053,
          -4.196424913949195,
          -3.6206980868786585,
          -3.801019329998165,
          -3.7227709888066567,
          -1.9101034484834232,
          -2.1554547095577474,
          -3.11311433972209,
          -3.903781592845338,
          -3.8616206903556995,
          -3.4406270662633185,
          -4.499033775408696,
          -3.2319846838805257,
          -2.651175185897296,
          -4.497420372448701,
          -3.723992130319009,
          -4.798774909075712,
          -2.7015245409453135,
          -3.8468386188677917,
          -3.5321976642124797,
          -3.6432354749403233,
          -4.193847819973557,
          -7,
          -1.70009092165823,
          -2.979019176102845,
          -7,
          -7,
          -3.104140450597083,
          -7,
          -7,
          -7,
          -4.193910349874993,
          -4.795108024611571,
          -2.674711087015539,
          -2.797351686984816,
          -3.0960548217598056,
          -3.7105794809614463,
          -7,
          -3.611498388544544,
          -7,
          -4.495690002957289,
          -3.801520329527164,
          -3.2737845225610633,
          -2.9606863649414112,
          -4.795149789050817,
          -4.797087413265331,
          -4.197121977222839,
          -2.4972910932956123,
          -7,
          -4.3176873404861835,
          -7,
          -4.024198232206868,
          -7,
          -3.848182272264775,
          -3.28474510325095,
          -3.6329429444376293,
          -3.4859308862166265,
          -3.8047049422008414,
          -2.8914560170811243,
          -3.341024973759354,
          -4.0991486671778645,
          -1.9956480250981299,
          -3.71821095473187,
          -4.795135868017322,
          -7,
          -4.0212513367076275,
          -3.894039000804609,
          -4.319633418942298,
          -4.795358551023385,
          -2.859169259280036,
          -4.797205197435356,
          -2.8318160223023767,
          -4.795344636680122,
          -3.713316040684306,
          -1.9587220825148883,
          -3.6236144956512026,
          -2.972033255790299,
          -3.093263058089709,
          -3.339684409858061,
          -3.1449124695489097,
          -3.761736537321043,
          -3.2022566678949334,
          -3.9562576411013985,
          -3.4050251743409166,
          -3.7794915448471396,
          -4.797952728164908,
          -4.045114258618323,
          -7,
          -3.8962383070652464,
          -3.1518735616556226,
          -3.84464800191945,
          -4.796380036631384,
          -1.8934722806395246,
          -4.795045370421125,
          -1.8264516538547082,
          -2.9052491234718767,
          -2.9272676808108815,
          -2.957364336755806,
          -3.5426387273151625,
          -2.7824338841919594,
          -3.275480729561276,
          -7,
          -2.904512682924551,
          -2.188139451818331,
          -2.60677324209835,
          -7,
          -4.494015374757144,
          -4.496147490722734,
          -4.193493313706491,
          -7,
          -4.496749807394558,
          -7,
          -4.798415828201429,
          -2.9527303663895785,
          -3.2612562584760996,
          -2.8945468126404026,
          -2.6544096723290584,
          -7,
          -3.621169355173038,
          -3.62202049941778,
          -3.5222451276547213,
          -7,
          -4.796012022802761,
          -3.765214587179864,
          -3.689650312464508,
          -3.6572607893053757,
          -7,
          -7,
          -4.0970003368669365,
          -3.5924612881106253,
          -4.317736098878416,
          -4.494836124034309,
          -3.6278299485495435,
          -1.836016424279723,
          -4.794940926679733,
          -4.795226346759703,
          -7,
          -4.319529385513524,
          -2.985419564562094,
          -3.1749385054686314,
          -4.7948294923299635,
          -4.3221089837143,
          -2.793764282125484,
          -3.8048138715442734,
          -3.790975697775765,
          -3.1448282738585607,
          -4.026117701022133,
          -7,
          -7,
          -1.6729151549139654,
          -3.5271752239289236,
          -2.488796268163124,
          -3.757872028479324,
          -2.6986085824733417,
          -4.499047539376685,
          -4.7967962800566575,
          -4.194992773454235,
          -1.997850861270173,
          -3.3814503138271546,
          -2.5461004834142376,
          -3.2583395325646,
          -3.7238470364005316,
          -3.311138373930121,
          -4.196970236939209,
          -4.017735715616553,
          -4.102934262243328,
          -3.4311492447760616,
          -3.1866469562045387,
          -7,
          -3.717677436128305,
          -3.847723429663294,
          -3.7552510186268915,
          -2.7121635957440384,
          -4.795010558631446,
          -3.329540247656664,
          -2.8781201029720007,
          -3.687426051894165,
          -3.1379934577865467,
          -2.824077854285757,
          -2.4723159962011216,
          -2.7246885128491662,
          -4.31909911609709,
          -2.940409365458403,
          -4.096743211899143,
          -4.197590657733156,
          -3.355517574528589,
          -3.2024542587546296,
          -2.770459251514174,
          -3.150489469216031,
          -3.276085047995312,
          -3.659019262122172,
          -2.8358507120379075,
          -3.302256501206462,
          -2.471170466488659,
          -2.871478775477452,
          -7,
          -7,
          -4.794669255342644,
          -3.750823266316629,
          -3.0199400975188997,
          -4.320395570236469,
          -3.7194072542466587,
          -3.605318516604717,
          -4.495821753385906,
          -3.575778550967052,
          -4.019365574572488,
          -3.061530470374447,
          -4.197011625911117,
          -4.10176768870149,
          -3.056017227469607,
          -4.197011625911117,
          -3.20194306340165,
          -3.1226190995465233,
          -2.6455801819214715,
          -4.322026232058189,
          -2.802652263093126,
          -2.462887260857094,
          -3.052975943015183,
          -7,
          -3.4019447911096794,
          -7,
          -3.0823464673160794,
          -3.1077026245929917,
          -3.5718899117990004,
          -3.5274806564486534,
          -4.318327728670159,
          -7,
          -3.165062128728178,
          -4.796941871056464,
          -4.798795616224465,
          -3.6852868861271264,
          -3.4993793811041045,
          -3.7972467606932976,
          -2.1002388609194944,
          -7,
          -7,
          -2.401257981304848,
          -2.6008899920160955,
          -3.729968894052408,
          -2.938677698315028,
          -3.3143499273401513,
          -2.260934510790345,
          -2.9063099793656395,
          -3.1000688469589184,
          -2.0474673297290966,
          -2.5047157113257805,
          -3.299916512376326,
          -3.1501633583189568,
          -2.844522913823384,
          -2.8603946675787126,
          -1.7942502416106776,
          -3.5585311860973574,
          -2.7933752425966887,
          -1.675383716331126,
          -3.4461367166026426,
          -2.9023039620608135,
          -3.7381130180022746,
          -2.8201260797803505,
          -2.76882167592319,
          -2.4632874084964818,
          -3.474857031317561,
          -3.429043414844925,
          -2.9510581008223427,
          -3.369108985997604,
          -7,
          -2.216836286104777,
          -3.0966707291567483,
          -3.0473583240315048,
          -2.4996186230269615,
          -3.043513847574348,
          -3.236530453031208,
          -3.0693861561522637,
          -3.1335451697795484,
          -2.967919314432321,
          -3.1547394712862498,
          -2.611245003078948,
          -3.5211036582367834,
          -2.5900861226739664,
          -2.0270631939449606,
          -2.917399217307005,
          -3.479823878409032,
          -2.9555884130934214,
          -3.765864901136174,
          -2.487714328217087,
          -2.5771329918429693,
          -2.3092797016404227,
          -0.9327696000728138,
          -2.337613269461743,
          -1.9751876306754927,
          -3.723701893991268,
          -2.445300606978883,
          -3.6317417368754,
          -4.318835191727664,
          -3.7919329546000036,
          -2.3025248099237756,
          -2.3264346547815506,
          -2.366711037235561,
          -2.0522754028118952,
          -2.2572806664127243,
          -3.001880164887663,
          -3.796740803977907,
          -2.60784062997041,
          -3.3199245800341806,
          -1.9249605003446761,
          -3.5765972691771957,
          -3.0521000423687106,
          -2.395121957146396,
          -1.8379213235574254,
          -4.1933055166998825,
          -2.3223303532901833,
          -2.3198753769375866,
          -2.022161631575954,
          -3.1653432655224587,
          -2.6487892135944495,
          -3.630173529786771,
          -1.9197028858240717,
          -3.0165920641827304,
          -4.79927850295274,
          -2.050429939315604,
          -1.852576756016548,
          -4.339378555872695,
          -2.1047566320349174,
          -3.350088729351078,
          -2.998047874277389,
          -2.478852407969493,
          -3.0918320976941964,
          -3.540718677399603,
          -4.318125969073185,
          -4.493695000988786,
          -3.3330370740447055,
          -3.224099069292356,
          -1.8089182124058005,
          -2.5216419609600518,
          -1.7887705714663293,
          -3.620177711918963,
          -2.849583190354663,
          -1.3696800207907336,
          -3.0153867999328026,
          -2.714172956272963,
          -3.31909911609709,
          -1.9553354391429998,
          -3.47316012696852,
          -7,
          -2.05482190018818,
          -2.911060711264808,
          -2.690938586205463,
          -2.159902929311491,
          -1.6736634719517163,
          -2.369169785054117,
          -3.2813708599038294,
          -3.7981117584734614,
          -2.5133527289221607,
          -3.0573479242379045,
          -1.9766408215681843,
          -2.8073915104764544,
          -2.213975951766273,
          -3.396464377702049,
          -1.9256484258513418,
          -3.591287265058499,
          -4.194146492730399,
          -2.292411841023868,
          -1.3630551204315158,
          -1.8095524510925622,
          -4.493903967206503,
          -2.6722799280279195,
          -1.9284311273607093,
          -2.0189165076565057,
          -2.206575032733398,
          -4.794648350506729,
          -2.4344312381751503,
          -1.6443702746331539,
          -3.7538197430218148,
          -3.6200527290943953,
          -3.0368115269308613,
          -2.3289736002463024,
          -2.459576027555685,
          -2.9776751167547753,
          -2.8248312077777618,
          -2.536033815546728,
          -3.436701808477978,
          -2.3879804323128875,
          -2.354206346938359,
          -1.7251131088741447,
          -3.7161355606084956,
          -2.1055472807534796,
          -2.1801731188663362,
          -3.1617762377172385,
          -2.3211349422448873,
          -3.519109214749844,
          -3.1425146049993744,
          -1.8938785493174628,
          -2.6141076142372945,
          -1.1855364761020941,
          -2.2232796748825896,
          -2.463388589573727,
          -3.5723589989833546,
          -3.594240575973108,
          -2.7066672175675204,
          -3.43610039301166,
          -1.5224876590191092,
          -2.466108443220432,
          -2.208055890576209,
          -2.000863828451263,
          -2.8515606482504188,
          -4.493924858299271,
          -1.8720024944383251,
          -1.6923392945564069,
          -2.072350177271125,
          -3.2887842587243155,
          -1.6243973159395524,
          -2.709740945168942,
          -2.935339292710299,
          -2.9812006288632373,
          -1.629136988000415,
          -2.537103861234642,
          -2.34499385193559,
          -2.836124511281903,
          -3.7953655080278454,
          -3.840586982890639,
          -2.5720744624304026,
          -2.9977827887044515,
          -2.8162551132098277,
          -3.0111204844541164,
          -1.5001926955968021,
          -3.0498026747855222,
          -1.9804532507909565,
          -1.6689104123448641,
          -2.151177176389977,
          -2.2249155731390533,
          -3.475802584198905,
          -2.51372545859298,
          -4.49391789471334,
          -2.1295437254991,
          -1.8915327727519662,
          -3.0244400557176196,
          -4.317986769891909,
          -2.6688448027085734,
          -3.295133963911634,
          -1.2168557349039093,
          -3.117568183066225,
          -3.5184308133618134,
          -4.318021573870186,
          -3.6188078830935138,
          -3.7165736764711426,
          -3.7539936932143556,
          -3.494988973683168,
          -2.721938362035024,
          -2.233874094776021,
          -3.1616265959265073,
          -3.435802833862011,
          -3.2666259282807415,
          -3.4951139924860954,
          -3.334599323559856,
          -3.4565799526055105,
          -2.8378450212522504,
          -2.4652809689598794,
          -2.674305772490644,
          -1.6582085612684359,
          -2.339545308873615,
          -2.2446078253972623,
          -3.057735242568242,
          -4.193034110911296,
          -2.831643187009035,
          -3.253601050494452,
          -4.095741057659923,
          -1.5689077665521831,
          -3.1754013550473683,
          -3.2670336159890963,
          -2.21625344740169,
          -2.7223304252478906,
          -1.8210315087287055,
          -3.5403155682447576,
          -3.380892771727473,
          -2.5771993708172927,
          -3.5910924455241147,
          -1.851762744123039,
          -2.8674948950584738,
          -3.8968498887351135,
          -4.493660163508368,
          -3.6127838567197355,
          -3.5816083660320572,
          -7,
          -3.5833121519830775,
          -3.300704152596124,
          -3.1049136848482157,
          -3.379668034033654,
          -3.6027109449575576,
          -3.1547282074401557,
          -3.1267167672610237,
          -3.454895651714539,
          -7,
          -7,
          -2.787529031094406,
          -2.8153341918009738,
          -3.192381579384681,
          -3.6372895476781744,
          -7,
          -3.5969268143429707,
          -7,
          -2.5413711986818104,
          -3.2659963704950794,
          -3.5737995822157407,
          -3.301192825565996,
          -2.970664845450082,
          -7,
          -7,
          -3.278296208091274,
          -2.7811168235623858,
          -3.199480914862356,
          -3.62283547952152,
          -3.470150302299499,
          -2.8779469516291885,
          -7,
          -7,
          -3.3230457354817013,
          -3.4292676664331685,
          -3.130440988463926,
          -3.1082266563749283,
          -3.5837653682849995,
          -3.752125307297898,
          -7,
          -3.498341190767632,
          -3.299942900022767,
          -3.151574127994361,
          -2.8962111688853125,
          -7,
          -1.8437747597848402,
          -7,
          -7,
          -7,
          -2.7676196082318536,
          -3.7096938697277917,
          -2.573638156762303,
          -3.089551882886454,
          -2.3122543112520475,
          -3.0269416279590295,
          -7,
          -3.343900712249606,
          -3.486430478854434,
          -7,
          -3.656960182742849,
          -7,
          -7,
          -2.8606374167737547,
          -2.264879931623429,
          -2.875323139822814,
          -3.598571663482141,
          -7,
          -2.33527212215128,
          -7,
          -3.1646997561706938,
          -3.0385633951393607,
          -3.5949447366950835,
          -2.9364419285916847,
          -3.3229377518009224,
          -3.591954555046735,
          -3.1486797599073886,
          -3.5739154404215507,
          -3.610553705317095,
          -1.7478578905540405,
          -3.1323397511926045,
          -3.0138900603284386,
          -7,
          -2.673020907128896,
          -3.640978057358332,
          -2.8107028609471167,
          -2.756382505621472,
          -2.714329759745233,
          -7,
          -2.61462290914302,
          -2.7535830588929064,
          -2.475418507891467,
          -7,
          -7,
          -3.7798128631705805,
          -3.4111144185509046,
          -2.983099823925019,
          -2.9024863809435577,
          -3.6033609243483804,
          -2.861434836289783,
          -7,
          -7,
          -7,
          -2.3391772005636295,
          -7,
          -2.804971921794919,
          -2.7306028522050876,
          -2.3351425609414833,
          -2.3788479304282237,
          -7,
          -3.6101276130759956,
          -3.1925674533365456,
          -3.6828667956623247,
          -2.9781332725009353,
          -3.1762842359448387,
          -7,
          -3.043283665570575,
          -2.9914159588764146,
          -2.929021350145649,
          -3.354204511370313,
          -3.4164740791002206,
          -3.007805620305211,
          -7,
          -3.4103131758945273,
          -7,
          -3.72964214883219,
          -3.670709595223797,
          -3.0106532426610046,
          -3.8698768132667665,
          -7,
          -7,
          -1.8153973017930358,
          -2.498655095245119,
          -7,
          -7,
          -3.2800252325377413,
          -7,
          -7,
          -7,
          -3.5949447366950835,
          -7,
          -2.5896393688088346,
          -2.4466574036419377,
          -2.6534599045435847,
          -2.8714137075030672,
          -7,
          -4.03909671044145,
          -7,
          -7,
          -3.6767850304192056,
          -7,
          -3.157543108985783,
          -7,
          -7,
          -3.342126469955725,
          -2.90880431953092,
          -3.5833121519830775,
          -3.5758803156806462,
          -3.7227161674884948,
          -3.2095150145426308,
          -3.595496221825574,
          -3.211031500871904,
          -3.402175375031505,
          -3.1658376246901283,
          -3.282017561561504,
          -3.2399664702073565,
          -2.7811966938121566,
          -3.0050946750725487,
          -3.0254082811317473,
          -3.2751915932865505,
          -3.0159881053841304,
          -7,
          -7,
          -3.646893624167745,
          -7,
          -7,
          -7,
          -3.291294833496669,
          -7,
          -3.505750595352085,
          -7,
          -2.934750874663579,
          -2.65470822726565,
          -7,
          -3.909983694939844,
          -2.6009728956867484,
          -3.386409778881913,
          -3.75785134368558,
          -3.220456778931451,
          -2.674610658476574,
          -7,
          -2.9986080293150947,
          -3.8830933585756897,
          -3.3235614634628665,
          -7,
          -7,
          -3.4878098101815893,
          -3.1252372114756253,
          -3.324436797945258,
          -3.600755149639618,
          -2.750194009703799,
          -7,
          -3.3562649403160907,
          -3.6315452278343097,
          -2.919862253555538,
          -7,
          -3.3264382767957286,
          -2.834078180834267,
          -3.446770095200388,
          -7,
          -2.4583356259919475,
          -3.9392029844167507,
          -2.764342210588111,
          -7,
          -7,
          -3.1357685145678222,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.459392487759231,
          -2.3906306168140334,
          -2.8846409115206195,
          -3.4876277826957134,
          -7,
          -3.1397741716810974,
          -2.850850368903348,
          -7,
          -7,
          -3.5949447366950835,
          -3.4390957413017493,
          -3.004493337547274,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7085908451503435,
          -3.202550451648127,
          -7,
          -3.5822906827189938,
          -7,
          -7,
          -3.6432552250247716,
          -3.636588183729842,
          -7,
          -3.342620042553348,
          -3.1339644786952103,
          -3.417554724363455,
          -3.070037866607755,
          -2.9157954276020663,
          -7,
          -7,
          -7,
          -1.743161629859857,
          -2.9546444479056855,
          -2.4965342957637975,
          -3.6459132750338443,
          -3.5922243573975843,
          -7,
          -7,
          -7,
          -3.274388795550379,
          -2.644635503768153,
          -2.228414422871205,
          -2.651889840089335,
          -3.107972707737791,
          -2.4866075612144423,
          -2.7366952259948767,
          -7,
          -3.379758615842701,
          -2.713770462202507,
          -2.5002653709620417,
          -7,
          -7,
          -2.9828137621318627,
          -7,
          -3.7038929536325447,
          -7,
          -3.44271488292848,
          -3.0313350044270404,
          -7,
          -3.4832305869021027,
          -3.3944516808262164,
          -3.2177595992418233,
          -2.4216822557512594,
          -7,
          -4.054498146636677,
          -3.591064607026499,
          -7,
          -2.778332168729065,
          -3.242624237809914,
          -2.8614992695002854,
          -2.8613352388849425,
          -3.02123525372655,
          -3.0238283925348863,
          -2.7456602257060756,
          -3.1502189941321563,
          -3.716461809044155,
          -2.3660979777088698,
          -7,
          -7,
          -7,
          -3.479191276121532,
          -2.510778063328332,
          -7,
          -7,
          -2.6572029965081487,
          -3.1307624896373274,
          -3.2593549273080344,
          -7,
          -2.488028162614872,
          -3.3405432575141942,
          -3.3640817414110704,
          -2.5950899322706067,
          -2.795482766475396,
          -3.9736819185039836,
          -2.8292096066377024,
          -3.6543391188817833,
          -7,
          -2.5152341673470433,
          -3.617234290359394,
          -3.014333825736173,
          -7,
          -3.054708787938054,
          -3.601951404133522,
          -2.5748026613264443,
          -2.8946390783050586,
          -3.634275694625944,
          -2.891139058890472,
          -3.586362223307866,
          -7,
          -2.6512034378011884,
          -3.6094876898532853,
          -7,
          -3.043165720207454,
          -3.2879695948354546,
          -3.0133639615579817,
          -2.457310962806848,
          -7,
          -7,
          -3.727470088712329,
          -3.8926440828856643,
          -4.342284474225749,
          -7,
          -4.73996769675951,
          -3.31635750347846,
          -4.03734680356809,
          -3.450002630173186,
          -2.995113947880977,
          -3.63086838754785,
          -3.2615602289423533,
          -4.0697790608815145,
          -3.8425702387141323,
          -4.01203958337256,
          -3.154812096658478,
          -4.091385542078368,
          -3.7489972662694018,
          -3.0696431011141416,
          -7,
          -3.3775430081774003,
          -7,
          -4.279882704201669,
          -4.34519723192998,
          -3.5310723014339627,
          -3.5069377582913672,
          -4.3932241163612975,
          -4.688997903106314,
          -3.794185864065302,
          -7,
          -2.971047256283564,
          -7,
          -3.928489734390515,
          -4.086306430529356,
          -3.9760976755658817,
          -7,
          -4.18904090790901,
          -7,
          -3.5977911368585116,
          -3.793138220806962,
          -2.732589873839353,
          -3.354588587877241,
          -3.301880379744083,
          -2.5051463299974426,
          -2.5934047537390925,
          -2.8534769715870274,
          -3.350159881452703,
          -2.9017695878361724,
          -3.1226229161409838,
          -2.6708089041495477,
          -2.5525330271673186,
          -3.376661168894394,
          -3.1923846271401124,
          -2.8635692587023267,
          -3.694956002249818,
          -2.6101205079956773,
          -2.8515640822634887,
          -3.594503043820089,
          -3.6795187436957892,
          -3.2539999289782684,
          -2.8217863778714993,
          -7,
          -2.5741259734216677,
          -2.9004987767588752,
          -4.204074175744145,
          -3.307067950661298,
          -3.4375920322539613,
          -3.617210094557434,
          -2.6534315872359553,
          -7,
          -4.180547512138109,
          -3.4056024552093134,
          -3.2180538557946807,
          -7,
          -2.922689672356959,
          -3.2783391091415632,
          -3.0271184662702364,
          -2.962606072924127,
          -2.4658265977646407,
          -2.987129767659897,
          -2.821508245755972,
          -2.840797177614897,
          -2.944383957640844,
          -2.4599012485521397,
          -2.766157140465059,
          -3.842546836495015,
          -3.4042973855837975,
          -7,
          -2.6825662250351265,
          -2.925401353528513,
          -3.5850280996750423,
          -3.5983527098692836,
          -7,
          -7,
          -7,
          -7,
          -1.8790904415064849,
          -1.6221168399989923,
          -1.0402631800172553,
          -3.6020599913279625,
          -2.8739015978644615,
          -2.0640050001968224,
          -2.8060291511027384,
          -2.119997780003502,
          -2.3218926347095654,
          -1.6578082654644928,
          -3.2880255353883627,
          -2.05482190018818,
          -7,
          -2.096194114724361,
          -3.739018245883481,
          -3.0464431343260316,
          -2.5868283338973868,
          -1.9674253901773011,
          -3.6588695922019623,
          -3.327767489902729,
          -2.1647775936979032,
          -3.6322547766847135,
          -2.297561567219382,
          -2.3861166079483445,
          -1.5386094401174262,
          -7,
          -2.1741567592784814,
          -7,
          -3.5986810989071634,
          -3.552303109338354,
          -2.270849066453705,
          -2.712346599731528,
          -3.577721524509021,
          -7,
          -1.4609288261682685,
          -3.6570558528571038,
          -1.4348821563488658,
          -7,
          -1.5989467559038193,
          -1.3800556005286617,
          -7,
          -2.9002578584377776,
          -3.1572300416963417,
          -1.4740281763808496,
          -2.79550569467443,
          -2.5458223549672385,
          -2.526683818845363,
          -1.3993516938589772,
          -7,
          -1.283374781838098,
          -2.00941689881391,
          -3.073901558314207,
          -7,
          -1.278331409265105,
          -1.3830628243918157,
          -7,
          -2.3001200546170666,
          -7,
          -7,
          -3.1460892576540234,
          -1.914627900385701,
          -1.7928881963339756,
          -1.334118518033627,
          -2.325672585645238,
          -3.092281919036219,
          -7,
          -4.016657344822202,
          -2.7229422608370752,
          -2.2377618169642237,
          -3.1394592753662236,
          -1.4472427799973624,
          -0.9118308708506876,
          -2.983896791326306,
          -3.2768063456287626,
          -1.1743423508074868,
          -1.8841649089154773,
          -2.020952883995018,
          -2.8474955403490654,
          -1.9143998300983032,
          -2.4309439531239745,
          -2.6629565479888173,
          -2.350801612394977,
          -1.7271583656818212,
          -2.783958521961391,
          -2.83803909146875,
          -3.6703386411274423,
          -3.586587304671755,
          -7,
          -3.377157176891517,
          -3.4921315335815697,
          -1.6653893141043976,
          -2.789298611159441,
          -2.3384564936046046,
          -2.62085647728201,
          -2.8027737252919755,
          -2.2424456838620324,
          -3.119915410257991,
          -1.2465238312090121,
          -7,
          -1.7200712915540184,
          -7,
          -1.3735696006624911,
          -1.6468822374664192,
          -7,
          -7,
          -1.9368429437934995,
          -2.515590022016421,
          -1.6214444276157096,
          -2.226798122683141,
          -7,
          -7,
          -3.102548038835058,
          -7,
          -2.984414787243434,
          -3.2979792441593623,
          -2.7537632453831598,
          -7,
          -3.027920136405803,
          -2.776701183988411,
          -3.6337713460825554,
          -2.4846283111753045,
          -2.249889274536743,
          -3.1668246580284043,
          -2.671584203846386,
          -1.6763418117264048,
          -2.186903386714175,
          -1.9056857651335304,
          -2.5776832455012926,
          -3.5936736569452488,
          -2.556503516499598,
          -2.880927865267085,
          -2.268863871489262,
          -2.420368379857524,
          -3.2734642726213465,
          -2.208456496827347,
          -2.3384564936046046,
          -2.4909612378520922,
          -2.07832497394727,
          -3.0013730929411464,
          -2.72709742001302,
          -2.6873059601920692,
          -2.6421346345582744,
          -2.2807196273157855,
          -2.6807886115066824,
          -2.74707871738161,
          -2.0876039736878083,
          -3.353627758985543,
          -3.272421826371504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9894498176666917,
          -3.2177470732627937,
          -7,
          -7,
          -4.4271099688460005,
          -7,
          -7,
          -7,
          -3.9008857870767155,
          -3.5188822759238745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1965906541173066,
          -7,
          -7,
          -3.2095150145426308,
          -3.7867048864389106,
          -7,
          -7,
          -7,
          -3.363235804483694,
          -7,
          -7,
          -4.566207614748667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.00774777800074,
          -4.23895202975007,
          -7,
          -7,
          -7,
          -7,
          -2.963598962597241,
          -7,
          -7,
          -7,
          -3.1914510144648953,
          -3.296665190261531,
          -3.654235385382136,
          -7,
          -3.1378286637565806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6374897295125104,
          -2.921686475483602,
          -7,
          -7,
          -3.439332693830263,
          -7,
          -3.449478399187365,
          -2.750411959970989,
          -7,
          -7,
          -4.281023622310831,
          -7,
          -7,
          -7,
          -7,
          -2.7416579991601333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0109356647043852,
          -7,
          -3.5679975423604118,
          -3.0883723751492,
          -3.727907081406697,
          -7,
          -7,
          -7,
          -3.303412070596742,
          -7,
          -3.608632989490037,
          -7,
          -4.156700552582017,
          -7,
          -7,
          -7,
          -3.9838066419784153,
          -7,
          -7,
          -7,
          -3.6527296960692475,
          -3.6831551478893028,
          -7,
          -7,
          -3.1855421548543754,
          -7,
          -3.5436246604609187,
          -2.6554585929400747,
          -7,
          -3.3778524190067545,
          -3.5717088318086874,
          -3.3533390953113047,
          -7,
          -4.1798389280231865,
          -4.057156212228546,
          -7,
          -7,
          -7,
          -4.994945918272672,
          -7,
          -3.479143247978613,
          -7,
          -7,
          -7,
          -2.7846821175426015,
          -7,
          -7,
          -7,
          -3.7699862407512437,
          -7,
          -7,
          -7,
          -2.8976270912904414,
          -7,
          -3.2596336913699937,
          -7,
          -3.4618885263439725,
          -3.7038070652743285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.84060787900929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2352758766870524,
          -7,
          -3.239549720840473,
          -3.2801228963023075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.042181594515766,
          -3.9612495778051544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6333169310742743,
          -7,
          -3.8083010194685842,
          -7,
          -7,
          -3.6909795692123,
          -7,
          -3.697490887171057,
          -3.6097011023793995,
          -7,
          -7,
          -3.265525335219074,
          -3.3170181010481117,
          -7,
          -7,
          -7,
          -7,
          -3.6856521841155243,
          -7,
          -7,
          -3.3420276880874717,
          -7,
          -7,
          -3.781575877033917,
          -7,
          -7,
          -7,
          -2.966610986681934,
          -7,
          -7,
          -2.5533519651097434,
          -2.689131197234498,
          -7,
          -3.4214393902200495,
          -3.883396425218766,
          -3.8663464227496016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0199466816788423,
          -7,
          -7,
          -3.4459672607227367,
          -7,
          -3.8376831142120307,
          -4.457858357099747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8976270912904414,
          -3.371806458507416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7394141026986953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4960296990359896,
          -3.5289167002776547,
          -7,
          -7,
          -7,
          -2.813393320802116,
          -3.3560258571931225,
          -3.39039253072292,
          -7,
          -4.411830069000477,
          -7,
          -7,
          -7,
          -3.3991543339582164,
          -3.4559862390673195,
          -2.6070818778952654,
          -3.733598460961339,
          -7,
          -7,
          -3.0906107078284064,
          -7,
          -7,
          -3.4892551683692608,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.638289535414257,
          -7,
          -7,
          -7,
          -3.956427776718407,
          -3.6034150454129286,
          -7,
          -7,
          -2.5757649805367193,
          -7,
          -3.61066016308988,
          -3.3230457354817013,
          -3.4885977155245587,
          -3.5328817194073974,
          -7,
          -7,
          -3.5512059437479064,
          -7,
          -4.682403615511475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.638988159343682,
          -7,
          -7,
          -7,
          -7,
          -3.3636119798921444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.381181288265895,
          -4.089940418498635,
          -4.644963688854928,
          -7,
          -3.8067902715840667,
          -4.32054091992458,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.321391278311689,
          -3.7382254481425052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.660770643527697,
          -7,
          -7,
          -3.898439945099348,
          -4.77340608801514,
          -7,
          -7,
          -7,
          -3.899619900298734,
          -7,
          -4.291779415420275,
          -3.538824988937904,
          -3.6848453616444123,
          -3.1421808211559457,
          -7,
          -7,
          -4.396539324126,
          -3.5041195694658587,
          -7,
          -4.675457541641209,
          -3.6930023482613774,
          -7,
          -3.839310414647268,
          -3.5968169359155904,
          -7,
          -7,
          -4.057361762985039,
          -4.111564935454498,
          -7,
          -7,
          -7,
          -3.383456296524753,
          -3.629409599102719,
          -3.049665211124215,
          -4.377979759421654,
          -4.327440676242755,
          -7,
          -7,
          -4.090222771686575,
          -7,
          -4.455697373286557,
          -3.888993384102904,
          -3.7709045864841553,
          -7,
          -4.672107098145544,
          -3.8114334945608093,
          -3.5958267770732233,
          -3.1969127457115927,
          -4.332640410387462,
          -7,
          -4.235939821784239,
          -3.5240064455573727,
          -3.2189291850880872,
          -3.9672514815286246,
          -3.9635753487276815,
          -4.080229524884867,
          -7,
          -3.74126193189077,
          -7,
          -7,
          -7,
          -3.5983162068659507,
          -3.383456296524753,
          -7,
          -3.9132220320428264,
          -4.126446234651181,
          -5.40556917139356,
          -7,
          -7,
          -7,
          -3.5583052812817852,
          -7,
          -5.40571679555144,
          -7,
          -4.222794481113707,
          -7,
          -3.8487636892493367,
          -4.435462120559821,
          -4.307032257669135,
          -3.6241789257480224,
          -3.742122617525653,
          -7,
          -3.668714720098945,
          -4.189083059462634,
          -7,
          -3.7139695888931765,
          -3.5949879216683773,
          -7,
          -4.648952979124083,
          -7,
          -3.6133131614554594,
          -4.132963726130726,
          -3.998695158311656,
          -7,
          -7,
          -7,
          -7,
          -3.7293268096468606,
          -2.3474778602483877,
          -2.6924944075030846,
          -2.2818568360599505,
          -2.3268476989159903,
          -1.8974156013997738,
          -2.776681555302868,
          -1.8905734295699475,
          -2.8656960599160706,
          -2.9434945159061026,
          -2.2520182138943667,
          -2.1649473726218416,
          -2.911060711264808,
          -2.096194114724361,
          -7,
          -7,
          -2.8305245140972586,
          -2.314250365062644,
          -2.4756711883244296,
          -7,
          -2.743901550485179,
          -2.325062476619459,
          -3.0580462303952816,
          -2.1931245983544616,
          -2.454191294073423,
          -2.315105585855791,
          -7,
          -2.4039570705665243,
          -2.5628873812938795,
          -2.9159272116971158,
          -3.5569709750138014,
          -3.107786733638018,
          -2.907411360774586,
          -2.8041394323353503,
          -2.8683504996479683,
          -2.363166473460289,
          -3.144574207609616,
          -2.0874974724042636,
          -7,
          -2.4788069021772885,
          -1.9105651195868223,
          -7,
          -2.0123098482203265,
          -2.5688719317338045,
          -2.2922560713564764,
          -2.6176118390341196,
          -2.560305243220961,
          -1.9752019622578523,
          -1.9664350758652838,
          -2.2911467617318855,
          -2.0293837776852097,
          -2.7142856308540804,
          -3.3546845539547285,
          -2.3729120029701067,
          -2.281870273597101,
          -2.3059832544437397,
          -7,
          -2.5159046349117986,
          -7,
          -7,
          -2.7291647896927698,
          -3.0646451447919367,
          -2.768761392797599,
          -2.181986424480151,
          -2.3096301674258988,
          -2.5563025007672873,
          -3.064083435963596,
          -3.5589484459780394,
          -7,
          -2.638916922653306,
          -2.036540182363813,
          -2.0402631800172553,
          -2.3971374932322815,
          -2.042181594515766,
          -7,
          -2.3558208239930427,
          -2.7388618337689525,
          -2.5939905188892736,
          -2.920123326290724,
          -2.7519203184537346,
          -2.791690649020118,
          -2.7079570754392517,
          -1.9931605754696946,
          -1.970306441009925,
          -2.3977571093297247,
          -2.1808033611434947,
          -2.227601078505448,
          -7,
          -7,
          -2.8571062424631903,
          -3.009167506240904,
          -2.3466788990302154,
          -2.1973531158873625,
          -2.798151698966038,
          -2.212377875811997,
          -2.6335575629523102,
          -3.15031424729026,
          -2.4719331419959465,
          -2.2658492268440344,
          -7,
          -2.4478222595857493,
          -7,
          -2.2425605395871684,
          -2.8373178216631016,
          -2.8564699450416704,
          -7,
          -2.9960736544852753,
          -3.167317334748176,
          -2.3338413910185927,
          -2.808210972924222,
          -7,
          -7,
          -2.3384564936046046,
          -7,
          -7,
          -2.439332693830263,
          -2.699370706638998,
          -3.2757719001649312,
          -3.0400086360135417,
          -7,
          -2.0147495769008272,
          -2.625826713285711,
          -7,
          -2.8000293592441343,
          -2.737987326333431,
          -3.1202447955463652,
          -2.5634810853944106,
          -2.9375513237160584,
          -3.7764832558336816,
          -3.3712526291249394,
          -1.681618065583093,
          -1.909823369650912,
          -2.9548452777274856,
          -7,
          -7,
          -3.270185428658033,
          -3.0979510709941502,
          -3.085290578230065,
          -2.548020694905531,
          -3.1586639808139894,
          -3.4382258076045296,
          -2.403120521175818,
          -7,
          -7,
          -7,
          -3.1946993054635864,
          -7,
          -7,
          -7,
          -7,
          -2.662521737910115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3085644135612386,
          -7,
          -3.595455892992471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3240016916965534,
          -7,
          -7,
          -3.479719235439571,
          -4.054949478651154,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.159735490902105,
          -7,
          -7,
          -7,
          -7,
          -2.35243980157973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.24261285243832,
          -7,
          -7,
          -7,
          -7,
          -3.460747541844197,
          -7,
          -3.407900540142635,
          -7,
          -7,
          -2.8959747323590643,
          -4.438779603357378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.471731651480051,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7997233564258357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.233924659610991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3098430047160705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.277265309456845,
          -7,
          -7,
          -4.402914482831523,
          -7,
          -7,
          -7,
          -7,
          -3.932084619469911,
          -3.102605194126567,
          -3.2600713879850747,
          -7,
          -7,
          -3.75495958772171,
          -7,
          -4.2122941666623515,
          -3.919847330372185,
          -7,
          -3.4430020715710614,
          -7,
          -4.221879149166118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.63002085111341,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7814322255046484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.519827993775719,
          -7,
          -7,
          -7,
          -7,
          -3.590507462008583,
          -7,
          -3.511348515490213,
          -7,
          -7,
          -7,
          -3.9772875681464983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.010087846998524,
          -7,
          -7,
          -4.209983906602265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.122903649173324,
          -7,
          -3.375114684692225,
          -7,
          -3.4811558708280352,
          -7,
          -7,
          -2.374495518477478,
          -2.3516997004052667,
          -7,
          -7,
          -3.126383977482481,
          -2.7531743591973843,
          -7,
          -7,
          -3.329194415088451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.415974411376566,
          -4.17432152726404,
          -4.634945571955361,
          -7,
          -7,
          -7,
          -7,
          -3.2664668954402414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6642795206007728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.792881745385397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.042516447524275,
          -7,
          -3.7731401279444228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.049528122277718,
          -7,
          -3.7211095747344105,
          -3.2163638637641165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.453776859690442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.233215107208646,
          -7,
          -7,
          -3.713889373212412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.66133934000604,
          -2.2907373533959543,
          -2.8209891764160493,
          -3.675044735955893,
          -3.5667909123815917,
          -4.467548269765181,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3823773034681137,
          -3.42422807069598,
          -7,
          -7,
          -7,
          -7,
          -4.3445927865928935,
          -7,
          -7,
          -4.24619893571377,
          -3.8661100398443766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.822625678774141,
          -7,
          -7,
          -7,
          -7,
          -3.3218054838575393,
          -3.3740147402919116,
          -7,
          -3.0637085593914173,
          -7,
          -4.521647949497911,
          -7,
          -7,
          -3.147196411326264,
          -4.179810222878796,
          -7,
          -7,
          -4.423057365614425,
          -3.1183343552502207,
          -3.473389638266334,
          -4.605660526371362,
          -4.28604083928627,
          -3.034949146676372,
          -3.7275412570285567,
          -7,
          -7,
          -4.702671744161752,
          -2.5334404683641023,
          -7,
          -7,
          -2.7462653713299305,
          -4.083645927695585,
          -7,
          -7,
          -4.487283351877082,
          -4.304705898212766,
          -3.94704140525522,
          -4.149311505907915,
          -7,
          -7,
          -7,
          -7,
          -3.5051785493854672,
          -4.197914303318418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.221805317996549,
          -4.628296952067896,
          -7,
          -7,
          -4.594046155430341,
          -7,
          -7,
          -7,
          -7,
          -4.937901366175979,
          -7,
          -7,
          -3.8602331642145686,
          -4.124014878887408,
          -3.738428189717044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7790189719148706,
          -3.409087369447835,
          -7,
          -3.6701628893926337,
          -5.707601682593951,
          -7,
          -7,
          -7,
          -3.9619902874400648,
          -7,
          -7,
          -7,
          -4.2522946401444495,
          -7,
          -4.048325250931222,
          -4.453776859690442,
          -4.19038072865045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.473190039859534,
          -4.008202596193274,
          -7,
          -4.748149248981986,
          -7,
          -7,
          -4.321411997974006,
          -4.324611653328921,
          -7,
          -7,
          -7,
          -2.6837222824514324,
          -7,
          -3.1659928785648397,
          -7,
          -4.221179420598498,
          -7,
          -3.2141813086638207,
          -3.5903401790321667,
          -2.9773806058118346,
          -7,
          -7,
          -7,
          -7,
          -2.690938586205463,
          -3.739018245883481,
          -7,
          -7,
          -3.26528962586083,
          -2.2560337576766627,
          -3.174786417367337,
          -2.935171254603384,
          -7,
          -3.264463634204881,
          -2.2464607024231023,
          -2.150485541952428,
          -7,
          -7,
          -7,
          -3.366945663852573,
          -2.978864984347657,
          -7,
          -2.452879674925722,
          -3.3507359100116605,
          -3.291909716380065,
          -7,
          -0.9934804453918538,
          -4.000737673774033,
          -2.3649771503110424,
          -7,
          -3.2474822606770544,
          -7,
          -4.282939165754773,
          -3.271609301378832,
          -3.303412070596742,
          -2.4607822312872365,
          -7,
          -2.509060966110194,
          -7,
          -2.2565479670535487,
          -7,
          -1.4816585538068021,
          -7,
          -4.043401578910881,
          -2.8876428703838406,
          -2.6720978579357175,
          -7,
          -7,
          -3.5303277897780863,
          -3.8853894934914943,
          -2.5080485061997226,
          -2.6027109449575576,
          -2.621365146523349,
          -7,
          -2.995027215050598,
          -3.628695382714023,
          -2.6805827164277285,
          -3.474507639116976,
          -3.0665122778565954,
          -7,
          -3.0546130545568877,
          -2.4987299594058783,
          -2.154525408238757,
          -7,
          -7,
          -2.8526324579115143,
          -7,
          -7,
          -4.0421224759982755,
          -7,
          -2.096070564624839,
          -4.032940937780854,
          -7,
          -3.5319257549406173,
          -3.1425458840862763,
          -3.4820155764507117,
          -2.4296054845026487,
          -2.6097468199942533,
          -2.732715340349993,
          -7,
          -7,
          -3.6858491796159405,
          -2.67168698327697,
          -7,
          -3.3223226858740107,
          -3.643366302517658,
          -3.541953474458236,
          -2.995443229111311,
          -3.960886796912443,
          -2.4929073583960584,
          -7,
          -1.0760995692822106,
          -7,
          -7,
          -3.4599199557469165,
          -7,
          -3.3161101923368586,
          -7,
          -7,
          -7,
          -2.660682445518988,
          -3.089905111439398,
          -1.1095739243160885,
          -7,
          -7,
          -7,
          -7,
          -3.3016809492935764,
          -3.2843179154306097,
          -1.8403103790671382,
          -7,
          -7,
          -3.3677285460869766,
          -7,
          -7,
          -7,
          -3.3560258571931225,
          -7,
          -7,
          -3.8509830043868534,
          -3.2519422417990267,
          -2.621176281775035,
          -7,
          -7,
          -3.6798819421128623,
          -7,
          -7,
          -3.5166279077623535,
          -7,
          -7,
          -7,
          -2.829089253448099,
          -3.115388593181018,
          -3.287129620719111,
          -7,
          -7,
          -7,
          -3.069446083880313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8469862125758914,
          -7,
          -4.132099521916504,
          -2.40236142856909,
          -7,
          -7,
          -7,
          -4.452292561617729,
          -3.9842271789283203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0593740590659575,
          -7,
          -7,
          -2.486481081182706,
          -3.263685654331817,
          -7,
          -7,
          -7,
          -7,
          -4.14674801363064,
          -7,
          -4.031716401140356,
          -7,
          -7,
          -7,
          -4.129593228367933,
          -7,
          -7,
          -3.5933968423002067,
          -7,
          -7,
          -3.650825388129239,
          -4.334175046895992,
          -7,
          -7,
          -3.567761337534174,
          -7,
          -3.1890051397458556,
          -7,
          -7,
          -7,
          -7,
          -3.379668034033654,
          -2.2102621819656822,
          -2.806575635021643,
          -4.3151933756957135,
          -3.5763643890897483,
          -7,
          -7,
          -7,
          -3.136974095757829,
          -7,
          -7,
          -7,
          -7,
          -3.3096301674258988,
          -3.83312585370862,
          -3.4224913492099662,
          -7,
          -3.8796692056320534,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.050697945784732,
          -7,
          -2.603056550608781,
          -7,
          -7,
          -3.7023228111611077,
          -7,
          -3.82610721152752,
          -4.11541079013392,
          -3.073295267524642,
          -3.657629431388952,
          -3.896250562461638,
          -7,
          -7,
          -7,
          -2.761746516558966,
          -3.3612150119217006,
          -3.1870504506422686,
          -4.119024820114783,
          -7,
          -7,
          -2.8568798705623637,
          -7,
          -7,
          -7,
          -7,
          -4.136625455760932,
          -7,
          -4.116275587580544,
          -2.141240010315327,
          -7,
          -7,
          -7,
          -4.22806655265797,
          -3.306925161088451,
          -7,
          -3.5229655954919865,
          -3.4451992957056476,
          -7,
          -3.0221454662121063,
          -3.0243277596576124,
          -7,
          -7,
          -4.207957342972937,
          -7,
          -3.6623170194385057,
          -3.485500596100668,
          -2.2796580981362657,
          -7,
          -7,
          -7,
          -3.598950661412175,
          -7,
          -4.188253327026504,
          -3.0172420845476458,
          -7,
          -7,
          -2.8039923566354417,
          -4.193402903062418,
          -7,
          -7,
          -3.710709565724337,
          -7,
          -7,
          -7,
          -4.120639728415567,
          -7,
          -3.5895959185665633,
          -3.954121855324949,
          -7,
          -3.543074235033532,
          -7,
          -7,
          -7,
          -7,
          -4.146686055647526,
          -3.6813859780807774,
          -3.985381560231997,
          -7,
          -7,
          -7,
          -3.721911325425833,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.150695051142714,
          -7,
          -7,
          -7,
          -7,
          -4.3048565939970285,
          -7,
          -7,
          -2.108182553886976,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1144683064163274,
          -7,
          -4.501196242027088,
          -7,
          -4.252610340567373,
          -1.8147899877143951,
          -2.5026176418045107,
          -2.1856281472511823,
          -2.3265220536355278,
          -2.61687690940715,
          -2.571563266370119,
          -7,
          -7,
          -4.145755623637207,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3338904116161245,
          -4.164650215934297,
          -7,
          -7,
          -4.389325591817493,
          -7,
          -3.485437481076301,
          -4.131875187972593,
          -7,
          -7,
          -7,
          -4.259187582942805,
          -7,
          -7,
          -7,
          -0.8339791677991037,
          -2.0631411665497734,
          -7,
          -4.116109414063344,
          -2.949194774237982,
          -4.118661462854496,
          -7,
          -3.82791825674535,
          -7,
          -7,
          -1.8417377870110583,
          -3.915135906622012,
          -3.0369447882289555,
          -3.8257152717519975,
          -7,
          -7,
          -7,
          -3.843793198325913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6687809505328624,
          -7,
          -7,
          -7,
          -7,
          -4.135609636028679,
          -3.832381160247041,
          -7,
          -4.135800283302111,
          -7,
          -4.161368002234974,
          -3.794185864065302,
          -2.034254941351962,
          -3.0788795478889806,
          -4.11882666293329,
          -7,
          -3.1067791154359465,
          -2.573466689278932,
          -2.6039745230837372,
          -7,
          -2.8509932054387264,
          -7,
          -7,
          -3.824646414718352,
          -7,
          -7,
          -3.3831568450325724,
          -3.949999542859922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.344813169678549,
          -4.185117001142592,
          -7,
          -7,
          -4.14863349848935,
          -7,
          -3.6788217632521745,
          -7,
          -3.6933751510251853,
          -2.316032659035029,
          -7,
          -4.186221536270829,
          -3.6759310203474467,
          -2.976582156824352,
          -3.708272143674309,
          -7,
          -3.902234126966771,
          -7,
          -7,
          -7,
          -2.728924648972301,
          -1.5726392970428134,
          -2.389636684288985,
          -7,
          -7,
          -7,
          -3.696705780933917,
          -2.664337629065647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.181700704415961,
          -7,
          -3.866877814337499,
          -7,
          -4.246129125663436,
          -7,
          -4.142827294538336,
          -7,
          -3.8340390181594666,
          -4.450110481575011,
          -3.790120894105942,
          -3.782040708598562,
          -7,
          -3.018584930267812,
          -4.290053170559201,
          -7,
          -7,
          -7,
          -7,
          -3.302357990059733,
          -4.271934493817765,
          -4.2524889444849885,
          -4.168114286819532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.361088118235532,
          -7,
          -4.1165745397769165,
          -2.450451035316793,
          -2.8546824696374555,
          -3.348499570283838,
          -2.969804056523086,
          -3.302080530992586,
          -1.640317233216312,
          -2.6398977222691444,
          -3.0884651668070924,
          -2.608506315326026,
          -2.411540484058249,
          -2.786803984261438,
          -3.6700204280902877,
          -2.577343959481118,
          -2.7977964379494615,
          -1.783371722611579,
          -3.150078124560676,
          -2.2101258729288364,
          -2.0028151592538186,
          -3.2889196056617265,
          -3.241100633388555,
          -4.213889470826336,
          -3.1865435658701995,
          -2.695981727762372,
          -2.5264329298349275,
          -2.9404649600696073,
          -7,
          -3.120319621011636,
          -3.4046471506478975,
          -3.8700525816935447,
          -2.2769065190323636,
          -2.3596084935067267,
          -3.0796876276113365,
          -2.8015719634582323,
          -3.7511250715355837,
          -3.8615344108590377,
          -3.113679530602721,
          -3.2244898986163966,
          -3.164713909486058,
          -2.9261396911223496,
          -2.732986387417268,
          -3.8385972528166565,
          -3.1011106055740547,
          -2.1238174830124894,
          -2.512486428200025,
          -2.4908264559884237,
          -3.530250939366719,
          -7,
          -2.4723137566575435,
          -3.309281663075056,
          -4.196590654117307,
          -3.0598229758332827,
          -3.093667615655394,
          -2.72347007482365,
          -4.152930136422725,
          -2.680946811516913,
          -3.9831299247347003,
          -7,
          -7,
          -3.7806292966955923,
          -3.122241090573313,
          -7,
          -2.520404604548894,
          -2.3743272623116396,
          -3.523683948711941,
          -7,
          -4.242740144605627,
          -7,
          -1.8720934227629034,
          -7,
          -3.934936434427346,
          -2.735172911942689,
          -3.463848214050881,
          -7,
          -2.792495451171643,
          -3.820179558051817,
          -3.174047934618734,
          -3.6184403542867676,
          -3.683842216031373,
          -4.278593568241134,
          -2.843978894828009,
          -2.8093385666210025,
          -4.135895575564019,
          -2.473924693416157,
          -1.862660366976328,
          -7,
          -2.935910876657456,
          -7,
          -3.916848582363452,
          -2.2479815277012127,
          -4.032753030285057,
          -4.12165831249807,
          -7,
          -7,
          -7,
          -3.3463529744506384,
          -1.7354019465713875,
          -7,
          -2.711229034334036,
          -2.8204970207913975,
          -2.641383961156209,
          -2.711454666165046,
          -2.0558192245960782,
          -7,
          -3.822429623779357,
          -2.7018796595988106,
          -3.8178627297096406,
          -2.159902929311491,
          -3.0464431343260316,
          -2.8305245140972586,
          -3.26528962586083,
          -7,
          -2.84391467557119,
          -2.6108628676358716,
          -3.441475184011856,
          -3.1304945885234696,
          -1.2906528242525366,
          -3.2866168384508114,
          -2.930821728079435,
          -7,
          -3.1609866359213985,
          -7,
          -2.617133832301317,
          -4.118760590442381,
          -7,
          -2.7808613258809114,
          -1.0110508776114095,
          -2.1197997981541117,
          -3.212021048512404,
          -3.0098473307709073,
          -3.6283276135598355,
          -2.993152697040286,
          -3.8897497752640375,
          -7,
          -3.307709923404807,
          -2.828717168654868,
          -7,
          -4.122183100093868,
          -3.134640664105797,
          -7,
          -2.2869708813680116,
          -2.8990476216383856,
          -2.793456323676415,
          -3.5414856359104596,
          -3.2298417622229714,
          -2.8171144355748146,
          -2.229090858172361,
          -2.881939567275474,
          -7,
          -3.0014632759848294,
          -2.7370006044606603,
          -3.562976488666603,
          -2.1445907669858943,
          -4.13049458852347,
          -3.821087540649282,
          -1.7345536657835299,
          -7,
          -1.209496753221182,
          -2.5442090261667722,
          -2.6365406820698576,
          -2.208095245943409,
          -3.287129620719111,
          -3.088756066652953,
          -7,
          -2.8353852017492147,
          -2.870956339503118,
          -7,
          -3.2771964957959563,
          -2.8468008542794783,
          -4.115677065115837,
          -3.4962144560637816,
          -2.159414400415508,
          -3.74681576560032,
          -3.4743328375521676,
          -2.675432957123123,
          -3.2872697292733806,
          -3.3529779956963357,
          -3.669409867287783,
          -2.253473250403829,
          -2.1925111879673103,
          -2.9722645673937236,
          -2.842297134328065,
          -7,
          -7,
          -2.297952062994036,
          -3.1892656689345484,
          -2.394674502055374,
          -2.4782834938362055,
          -2.108798685448187,
          -1.4682339277267094,
          -2.226494526388427,
          -2.56989488208644,
          -2.715015187390733,
          -3.7100891449303903,
          -4.131361989115943,
          -4.157970243604713,
          -7,
          -3.5314533695566217,
          -3.935381292079985,
          -2.6961316309388828,
          -7,
          -3.0113287324559876,
          -7,
          -2.1390210173169324,
          -7,
          -3.8262368226549173,
          -7,
          -7,
          -3.642892997358405,
          -3.516072408592942,
          -3.2183713665540417,
          -2.4418337034106465,
          -2.9238837398640314,
          -7,
          -7,
          -3.052693941924968,
          -4.12251077061032,
          -4.127104798364808,
          -4.1359590921245575,
          -3.6533411745619175,
          -3.274100093497666,
          -7,
          -2.3932998649986676,
          -3.4191765753173273,
          -3.5342292372487547,
          -3.2303531105571546,
          -7,
          -2.5395397244572258,
          -3.829528904200033,
          -7,
          -2.570374714161939,
          -4.135609636028679,
          -7,
          -3.0884904701823963,
          -3.4061426048653116,
          -3.703320043475056,
          -7,
          -7,
          -3.6947221648599164,
          -4.117834518543748,
          -3.329880725319446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.48826861549546,
          -7,
          -7,
          -7,
          -3.8657848031269304,
          -7,
          -7,
          -7,
          -3.9305160483329398,
          -3.4012527964419994,
          -3.4240645254174877,
          -7,
          -7,
          -7,
          -7,
          -3.5195092317558236,
          -3.655954372078779,
          -7,
          -2.9984046603196184,
          -3.9106174457294722,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9194906795740487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0823065450398275,
          -3.330819466495837,
          -4.104136231496542,
          -3.2946866242794433,
          -7,
          -3.2431621151010512,
          -3.420945405921972,
          -2.9792447784093805,
          -7,
          -7,
          -7,
          -3.1264561134318045,
          -3.491921712586151,
          -3.2919763699421907,
          -7,
          -3.27263051589404,
          -3.5780085095732557,
          -7,
          -7,
          -7,
          -3.387033701282363,
          -7,
          -7,
          -7,
          -7,
          -2.9239344710521813,
          -3.1694098981407004,
          -7,
          -7,
          -3.110589710299249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.129796197569744,
          -7,
          -3.558468562523795,
          -7,
          -7,
          -2.9930441352384736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6497241859295224,
          -7,
          -7,
          -7,
          -3.689603110337512,
          -3.681693392004564,
          -3.5951654147902294,
          -7,
          -7,
          -7,
          -7,
          -3.575187844927661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.730620797887283,
          -7,
          -7,
          -7,
          -3.2722285058778144,
          -3.401745082237063,
          -7,
          -7,
          -7,
          -7,
          -3.065291062340054,
          -2.4382785804926073,
          -7,
          -7,
          -7,
          -3.7511250715355837,
          -7,
          -4.210960255416812,
          -3.9864358096792474,
          -7,
          -7,
          -7,
          -4.30085189841397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.601732098158817,
          -3.3344537511509307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0800850850458694,
          -3.8266577918758693,
          -7,
          -3.790988475088816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6047658847038875,
          -7,
          -7,
          -7,
          -3.7130943492255923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9488529061997135,
          -7,
          -7,
          -3.609112439335402,
          -3.329397879361043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.707910665713106,
          -7,
          -3.8196755199942927,
          -3.5297386382916294,
          -7,
          -3.7858279199958655,
          -7,
          -3.45484486000851,
          -7,
          -7,
          -3.2037126406077068,
          -3.4313637641589874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.012162067970823,
          -7,
          -4.367914738793752,
          -7,
          -2.4279032320494807,
          -7,
          -2.5920533256821177,
          -3.052693941924968,
          -2.694312646223346,
          -2.537609240282091,
          -7,
          -3.359898693821246,
          -7,
          -7,
          -2.972781203735422,
          -3.4268364538035083,
          -3.450813427021517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.977952121201462,
          -7,
          -3.5706304904278854,
          -4.333853500787942,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4827307000799426,
          -7,
          -7,
          -7,
          -3.2823955047425257,
          -3.3066394410242617,
          -7,
          -7,
          -7,
          -3.471800046620036,
          -7,
          -7,
          -7,
          -7,
          -3.3760291817281805,
          -3.3636119798921444,
          -7,
          -7,
          -3.3119656603683665,
          -7,
          -3.8688207061975177,
          -3.5957166199434245,
          -7,
          -7,
          -7,
          -2.592236256582886,
          -3.530711837981657,
          -3.3743694711197056,
          -7,
          -4.0231948243142535,
          -7,
          -7,
          -7,
          -2.703525857283128,
          -7,
          -3.174558185305092,
          -7,
          -7,
          -3.163310488963686,
          -7,
          -7,
          -7,
          -3.6241789257480224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7027176733035243,
          -7,
          -7,
          -3.5149017730441883,
          -3.1322596895310446,
          -2.9093420383613084,
          -2.7683420586445333,
          -3.8350402280936993,
          -3.359123718484473,
          -7,
          -4.315025199312605,
          -7,
          -7,
          -7,
          -3.5089335260500327,
          -3.4134255068264925,
          -7,
          -7,
          -7,
          -3.369215857410143,
          -3.083263668252353,
          -4.2610241904782855,
          -3.4649860542696933,
          -7,
          -7,
          -7,
          -3.846708145456007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.80188370712524,
          -7,
          -7,
          -3.739888655084543,
          -7,
          -4.563996948568181,
          -4.410406027068357,
          -4.160018673786781,
          -7,
          -3.3996160424210022,
          -3.9827110624208517,
          -3.8631443462526676,
          -7,
          -7,
          -7,
          -3.678973375919765,
          -7,
          -7,
          -3.5364321758220134,
          -7,
          -7,
          -3.582744965691277,
          -7,
          -7,
          -7,
          -3.759516759462188,
          -7,
          -3.088949423617117,
          -7,
          -7,
          -3.6552451804139605,
          -4.48050997294196,
          -7,
          -3.4420876295507603,
          -4.7236936888413625,
          -3.9196532823103643,
          -3.4709492267992785,
          -4.605121806343587,
          -3.4561972767710216,
          -3.1300119496719043,
          -3.4222614508136027,
          -4.331771356290927,
          -4.729715411103169,
          -5.003494998557833,
          -2.951701707062042,
          -4.355355723394707,
          -3.907402402462683,
          -3.305730009050952,
          -4.081851171517454,
          -3.7372721765355434,
          -7,
          -5.089276165036801,
          -7,
          -3.770287307201907,
          -3.6705241577820797,
          -3.355853635810542,
          -4.670653972304613,
          -3.9205928620848085,
          -7,
          -3.7422965511890913,
          -3.7193036592295328,
          -4.689131197234498,
          -4.349821269512391,
          -4.228143607597742,
          -3.51241754860084,
          -7,
          -7,
          -4.472463896606989,
          -3.7432745235119333,
          -4.02566421518471,
          -7,
          -3.7791543969313732,
          -3.6906168758571534,
          -3.4775071227876087,
          -7,
          -7,
          -3.2518814545525276,
          -4.034615924863207,
          -3.1437952038457664,
          -2.6453240015622934,
          -2.032065988195396,
          -4.190737783739713,
          -3.244736448694373,
          -7,
          -3.554413439581362,
          -7,
          -7,
          -7,
          -3.697578033651113,
          -3.075838825974687,
          -3.0991624929285946,
          -3.2894315519433857,
          -3.9983732561577563,
          -4.345793798572643,
          -7,
          -3.1899112096928057,
          -7,
          -3.2624036232587823,
          -3.865044721693099,
          -5.407630507725026,
          -2.86602464772164,
          -3.1365498395337705,
          -7,
          -2.985836342397358,
          -3.975829920744224,
          -3.1287433422317372,
          -3.7269715836828765,
          -3.5486841714830053,
          -7,
          -3.0722174492367933,
          -4.505651841230991,
          -7,
          -3.4874163364389537,
          -3.135583545936889,
          -7,
          -3.6597416171192387,
          -7,
          -3.4172225044337696,
          -4.144781706171568,
          -3.846378353712088,
          -7,
          -7,
          -7,
          -2.4953130222377027,
          -3.1124709393381393,
          -2.5666717184381787,
          -7,
          -2.771298695058256,
          -2.8184458452428167,
          -2.506369717095504,
          -1.9481731218751213,
          -2.268928822432613,
          -2.919601023784111,
          -3,
          -1.7598631356238528,
          -2.666751912411818,
          -1.6736634719517163,
          -2.5868283338973868,
          -2.314250365062644,
          -2.2560337576766627,
          -2.84391467557119,
          -7,
          -2.5408445212507855,
          -2.7041505168397992,
          -3.0478587274074567,
          -2.6861594155422437,
          -2.310210387260904,
          -0.9593742275515137,
          -2.64849940898627,
          -3.1916372870312952,
          -2.1918573243828754,
          -1.5734794322253864,
          -2.7907541645992353,
          -7,
          -3.030141476104852,
          -2.8548887593685546,
          -2.7163094690071827,
          -7,
          -2.4320066872695985,
          -2.851302038119233,
          -1.5517776163059283,
          -2.7218106152125467,
          -3.2350231594952237,
          -2.7683420586445333,
          -2.5551629186862312,
          -7,
          -2.6890867704039234,
          -2.0324765479535576,
          -2.5578078557646045,
          -2.250635230436816,
          -2.10920123623541,
          -2.0295287116034255,
          -2.9429995933660407,
          -2.6625689669332604,
          -2.8041394323353503,
          -2.9992492063863114,
          -2.2710409206551185,
          -2.6603910984024672,
          -2.725185387172794,
          -2.8831880896223963,
          -2.744423382307533,
          -2.559479127726367,
          -2.7425287512507515,
          -2.173186268412274,
          -2.455320799214393,
          -3.059815767985011,
          -2.627714946767376,
          -2.719020373369276,
          -2.267841936069823,
          -3.4671639659690903,
          -2.6580113966571126,
          -3.0770043267933502,
          -7,
          -1.5391521640319417,
          -1.8369567370595505,
          -2.4231197904747805,
          -2.736737884043391,
          -1.9193950956616108,
          -7,
          -2.834305076821983,
          -2.8363241157067516,
          -2.2006735010229588,
          -7,
          -2.287190764555977,
          -3.1484998267052453,
          -2.874610650237315,
          -2.048409430960333,
          -1.878094420045513,
          -2.2481962673843716,
          -1.2646125313574494,
          -2.380211241711606,
          -3.2645817292380777,
          -7,
          -2.8778031216951354,
          -2.4434194617828173,
          -2.7890516223748403,
          -2.2715247959581437,
          -2.5435590011736546,
          -2.4537004733597723,
          -1.9488568372466288,
          -2.3827732455867023,
          -2.0643831044121965,
          -2.7087394925064303,
          -2.3475251599986895,
          -2.791129000727286,
          -3.246252312299322,
          -2.8531656617622896,
          -2.2130009594217945,
          -3.0111473607757975,
          -7,
          -3.1911714557285586,
          -7,
          -1.8009534980203061,
          -3.080987046910887,
          -2.6255182289716377,
          -7,
          -2.5499836111596887,
          -2.8004879595844288,
          -2.7876965682898738,
          -2.384487822086762,
          -2.580696939712437,
          -1.6611062344271388,
          -3.521007252408604,
          -3.036429265626675,
          -2.510927817178866,
          -3.2946866242794433,
          -7,
          -7,
          -2.7431176252147416,
          -3.274388795550379,
          -2.8686444383948255,
          -2.2650972418515827,
          -2.673512399026766,
          -2.810083096186659,
          -2.7628660424620133,
          -7,
          -2.673665876245702,
          -3.045127306568027,
          -7,
          -2.372685248678423,
          -7,
          -7,
          -2.2174839442139063,
          -2.395544796132492,
          -1.7137937806530432,
          -3.2757719001649312,
          -7,
          -2.0684332525144025,
          -7,
          -1.7828731511714586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6370892735303304,
          -3.6535983818432896,
          -3.748498126613737,
          -3.246908718215935,
          -7,
          -3.203123582322945,
          -3.026726887267514,
          -7,
          -7,
          -3.653501946962933,
          -3.060453411515471,
          -3.526382360022874,
          -3.714413592287121,
          -7,
          -7,
          -7,
          -7,
          -2.7956426794216003,
          -3.021752951948413,
          -3.628695382714023,
          -2.849828739446336,
          -3.0928267958659172,
          -7,
          -7,
          -3.6337713460825554,
          -3.775100498879025,
          -3.7208205817703437,
          -3.1946993054635864,
          -3.410805342142755,
          -3.4016589724951523,
          -3.6461095219788477,
          -7,
          -7,
          -3.4682734645251005,
          -3.357744325180376,
          -3.539452491549461,
          -7,
          -3.488127496247458,
          -7,
          -3.389590696801049,
          -7,
          -3.677789391068861,
          -3.0806986228711293,
          -7,
          -2.6846341802729268,
          -3.6661434272915585,
          -7,
          -7,
          -2.9373506949096404,
          -3.2730784731095195,
          -2.480321244013076,
          -2.7427251313046983,
          -2.554727707734111,
          -2.7238875480472107,
          -7,
          -3.6921416093667836,
          -3.821971817642043,
          -7,
          -3.702775077901044,
          -7,
          -7,
          -7,
          -2.0657430578984863,
          -2.9742135903699447,
          -3.349374674204051,
          -7,
          -2.7255032688593155,
          -3.6361868951987244,
          -3.268297087223767,
          -2.679908635894604,
          -3.3461573022320086,
          -7,
          -3.6605524456117786,
          -7,
          -3.009592521262823,
          -7,
          -7,
          -2.4410242032009224,
          -3.1709947020363,
          -3.66661156841903,
          -7,
          -2.867663867912998,
          -3.3872118003137306,
          -2.8433573784379553,
          -3.265348565194829,
          -3.7561033715851053,
          -7,
          -2.8123574644378384,
          -3.165719029800832,
          -2.4209637116600056,
          -7,
          -7,
          -3.3373926976485757,
          -2.8487278007449355,
          -3.4972061807039547,
          -2.5228976272386414,
          -7,
          -3.213276213896695,
          -7,
          -7,
          -7,
          -2.448212784700745,
          -7,
          -3.0973961506415026,
          -7,
          -2.445496837517327,
          -2.3461951811553288,
          -7,
          -7,
          -7,
          -7,
          -2.5070955710456486,
          -3.3987210360255333,
          -7,
          -3.303412070596742,
          -3.0222515771745355,
          -3.309523709653113,
          -7,
          -3.9726193390596234,
          -3.291333037371177,
          -7,
          -4.033423755486949,
          -7,
          -3.780109668814816,
          -2.9361785093615893,
          -3.8237349883987313,
          -3.8985057855343586,
          -7,
          -7,
          -2.145388810849714,
          -3.1360860973840974,
          -7,
          -7,
          -3.656401686648149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5377291697221085,
          -2.405829968530948,
          -3.258230090449129,
          -3.9398186628213794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.706148588963142,
          -2.909473737534268,
          -7,
          -7,
          -3.690550461510359,
          -2.722712787865719,
          -7,
          -3.630529571426824,
          -7,
          -3.7298934039632377,
          -7,
          -3.731266349075492,
          -3.0451664480652285,
          -2.6563035907524855,
          -2.891955383429181,
          -2.6766936096248664,
          -2.226349785441235,
          -2.6651117370750512,
          -3.3756636139608855,
          -3.0087031950056464,
          -3.190984983213069,
          -7,
          -7,
          -3.693726948923647,
          -2.66247450375031,
          -3.658106835506393,
          -7,
          -3.1845139866958645,
          -7,
          -3.406199423663313,
          -3.33665982345442,
          -3.358030076576957,
          -2.6329460616904314,
          -3.699143687394484,
          -3.1575071357169904,
          -3.0419000056568426,
          -3.4292676664331685,
          -3.4933883352101596,
          -3.438621448045396,
          -3.4565937502444077,
          -7,
          -7,
          -3.609754439128856,
          -7,
          -3.9293678292400998,
          -7,
          -3.6302922427684865,
          -2.921017243207157,
          -3.810400556101999,
          -3.652536418593025,
          -2.748547943404879,
          -7,
          -3.2034861742721255,
          -7,
          -2.9617374047008993,
          -7,
          -7,
          -2.892975289811869,
          -3.484299839346786,
          -7,
          -3.0990587890680543,
          -3.424424243769512,
          -2.6080106916094867,
          -7,
          -7,
          -3.3624824747511743,
          -7,
          -7,
          -7,
          -7,
          -3.378851946448881,
          -2.9332341287148083,
          -3.2835273648616936,
          -3.0641333950665963,
          -4.172092285066876,
          -7,
          -3.3660492098002353,
          -7,
          -3.715836275164994,
          -7,
          -7,
          -3.477265995424853,
          -3.745465168670727,
          -2.5103084019294966,
          -7,
          -3.629307640073749,
          -3.3463529744506384,
          -2.958468318366944,
          -7,
          -3.344294005898312,
          -2.445526365746388,
          -2.866773111164473,
          -7,
          -3.3349561161368517,
          -7,
          -7,
          -7,
          -3.6844862921887342,
          -7,
          -3.2135177569963047,
          -3.2392994791268923,
          -3.2813364338908033,
          -3.150844122978294,
          -3.171935299284524,
          -3.7520484478194387,
          -7,
          -7,
          -2.447211512591213,
          -3.471144965160633,
          -2.733942048385829,
          -3.215373152783422,
          -2.9219779562319195,
          -7,
          -7,
          -7,
          -2.3924091398153755,
          -3.0678609473534806,
          -2.8116755253669115,
          -2.8771312847935695,
          -3.731387283168788,
          -3.133139557094351,
          -7,
          -3.646599751720373,
          -2.82020145948564,
          -2.7128438865094555,
          -2.187722109424307,
          -7,
          -7,
          -3.0262062970831183,
          -7,
          -7,
          -7,
          -2.7804613328617176,
          -2.944553168779153,
          -3.241878383159056,
          -3.8190171986890595,
          -7,
          -3.2351510964530643,
          -2.4623605571056313,
          -7,
          -3.762959751488572,
          -7,
          -3.3953263930693507,
          -2.607398581017968,
          -2.85582190540603,
          -2.589746565098586,
          -2.3830101417228375,
          -2.9565176821885184,
          -2.720159303405957,
          -2.251029538523903,
          -3.4886916983169405,
          -3.7373151443998833,
          -2.8471097408372383,
          -7,
          -7,
          -7,
          -3.377761438702263,
          -2.8229848832234263,
          -3.190984983213069,
          -2.682686478249768,
          -3.507248513918787,
          -7,
          -3.4740705032150436,
          -7,
          -2.946697837245742,
          -7,
          -3.710286647702891,
          -2.5400573092860066,
          -7,
          -4.034588353713625,
          -3.547774705387823,
          -3.5719548849719382,
          -7,
          -2.3971140642605224,
          -3.4900990050633047,
          -3.0372936658607066,
          -7,
          -3.7031193462360776,
          -3.6535983818432896,
          -2.5824820176812113,
          -2.917330426106554,
          -3.114468006623671,
          -3.775610448006361,
          -7,
          -7,
          -2.956991217867476,
          -2.960565902818198,
          -3.0824263008607717,
          -3.090169844444793,
          -2.9167696842831363,
          -2.819919785398216,
          -2.422499190079314,
          -7,
          -7,
          -2.459635313866705,
          -4.021106568432121,
          -4.352143912441583,
          -3.60535892548885,
          -3.965711137426735,
          -3.057808690334717,
          -3.102166811210593,
          -3.853282371443652,
          -3.211109639334388,
          -3.3464181789371965,
          -2.850479145287359,
          -4.38008455401153,
          -3.3343300029005127,
          -3.3606607212593573,
          -2.6081000254382913,
          -7,
          -3.7075446286123026,
          -3.0328375490074393,
          -2.820679034221769,
          -3.608632989490037,
          -7,
          -4.394721279992447,
          -3.8777935313390106,
          -3.4643060782515827,
          -3.139800402737301,
          -7,
          -3.9152239006415415,
          -3.981909170090792,
          -3.1805559407036412,
          -3.1777013644974312,
          -3.3578157806578566,
          -3.5968676524903462,
          -3.919078092376074,
          -3.9875322027298394,
          -3.460747541844197,
          -4.203005674728483,
          -3.7551122663950713,
          -4.2068798223063,
          -2.882934163885178,
          -3.205214033739003,
          -2.92272545799326,
          -3.5282566195152594,
          -2.7149390821628323,
          -2.8055763679355015,
          -2.922050402167174,
          -3.3211494758498192,
          -2.829946695941636,
          -3.137257654522995,
          -1.8844112025069455,
          -2.518075036877517,
          -3.020043457313073,
          -3.1604276017717767,
          -2.69115730066159,
          -3.737113094305961,
          -2.562600715951575,
          -3.0195316845312554,
          -2.9472376078706666,
          -3.7018700729474063,
          -3.359076226059263,
          -7,
          -7,
          -2.784202883354968,
          -3.053258692438889,
          -4.24725943193383,
          -2.7034824447657835,
          -2.381014746995207,
          -7,
          -2.8170056788606863,
          -3.6925384871257463,
          -4.013879965230417,
          -3.5959369062691735,
          -3.1319392952104246,
          -7,
          -2.97916300467107,
          -3.4897897886159925,
          -2.8304941217738633,
          -3.195954973023525,
          -2.8274338954007794,
          -3.10623340638907,
          -2.97845862997429,
          -2.981428467644333,
          -2.7869287937967515,
          -2.5431114010135016,
          -2.973174052682972,
          -3.8729716307384434,
          -3.061990705060039,
          -7,
          -3.412236482169269,
          -2.607838532274997,
          -3.8955698643861068,
          -3.6504046698680317,
          -3.636888906983799,
          -7,
          -2.298158125667446,
          -3.2554654819924638,
          -2.0871825845455936,
          -1.9716092134509804,
          -2.231069884282878,
          -2.697907095962328,
          -1.5762221640507468,
          -2.4750458298528333,
          -2.236719159078696,
          -1.8361867990361727,
          -3.1784013415337555,
          -2.221181284727327,
          -3.341137638740964,
          -2.369169785054117,
          -1.9674253901773011,
          -2.4756711883244296,
          -3.174786417367337,
          -2.6108628676358716,
          -2.5408445212507855,
          -7,
          -2.9254839872002525,
          -2.8986337800355617,
          -2.2808103891240723,
          -2.9809119377768436,
          -2.1945590983602625,
          -2.519441919893148,
          -2.4065401804339555,
          -7,
          -2.2644760667733554,
          -2.8626282269612133,
          -7,
          -2.6480983392885165,
          -2.341920335600977,
          -2.4591243219699734,
          -3.6321534835106326,
          -2.704678374069052,
          -1.7906369619317033,
          -2.7985643303338046,
          -2.161107477642937,
          -3.6277753752293034,
          -2.241594675741352,
          -2.058662717220406,
          -2.140589132424944,
          -2.8728358439998014,
          -2.753513421358579,
          -2.6538554368859546,
          -2.1676737520697014,
          -2.5276299008713385,
          -2.1970047280230456,
          -2.71121652432109,
          -3.08161730749073,
          -2.355719638613961,
          -2.465544485482776,
          -2.588943642740015,
          -3.037027879755775,
          -2.2061659906502573,
          -2.059830242641179,
          -3.2909986394651347,
          -2.3905671544575418,
          -2.8969852540843504,
          -2.3054490844840263,
          -2.2863067388432747,
          -2.2530000501017793,
          -2.2728122492352103,
          -2.23195291641955,
          -2.342422680822206,
          -2.890979596989689,
          -2.5034274846401083,
          -3.258717079597411,
          -2.89726044333122,
          -2.0966843468653313,
          -2.665299499499897,
          -2.376284896196881,
          -2.3609546876901435,
          -2.244936516611802,
          -3.3312247810207323,
          -2.282037920728629,
          -2.305784919389692,
          -2.180908497191226,
          -2.8847953639489807,
          -2.428607941216987,
          -3.0507019092929966,
          -3.365441183394879,
          -2.941594242145933,
          -2.225309281725863,
          -1.9878764752313967,
          -2.3083180985067657,
          -2.598874647901013,
          -7,
          -7,
          -1.8008846495627382,
          -2.462658366301181,
          -2.7427251313046983,
          -1.807186606162684,
          -2.5962497526472124,
          -2.5970366649776535,
          -2.5890936141146526,
          -1.6332240350786766,
          -2.4171082451130608,
          -2.24863590683504,
          -3.377306251068199,
          -2.1101196945803173,
          -7,
          -1.8433140432437767,
          -2.368235217008203,
          -2.4590907896005865,
          -3.3336487565147013,
          -2.090767351466499,
          -2.7077404542737713,
          -2.1005705354955055,
          -2.486784571399042,
          -3.1894903136993675,
          -7,
          -3.1567510079386705,
          -3.344686943705623,
          -3.162962476653458,
          -2.6953843774012043,
          -2.391537517062907,
          -2.206587797735214,
          -3.164278483923325,
          -2.1219816941302403,
          -2.3561169519982608,
          -1.5168785621604606,
          -1.2328602186007682,
          -0.7158076493735616,
          -1.9682961150462555,
          -0.8613293708732156,
          -1.1684328023599524,
          -1.2538560276860629,
          -1.3974531313991803,
          -2.7162120888836645,
          -1.5409548089261327,
          -1.9629660778441818,
          -1.3691249967503878,
          -1.6859322186412395,
          -3.3282776444097677,
          -1.5890927346358725,
          -0.7268769915705309,
          -0.7524833221700973,
          -1.3103988069707881,
          -2.136922862547955,
          -2.1273116216794095,
          -1.6386436178881632,
          -1.6126819933483518,
          -1.4883383994676636,
          -1.5752928357372873,
          -2.175722610349459,
          -0.3797171802809775,
          -2.2987657722618797,
          -2.3022690677795294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.164517780650602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3477787170653643,
          -7,
          -7,
          -7,
          -4.873485683733355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.686278678067201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.433881792287146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3191060593097763,
          -7,
          -7,
          -7,
          -3.1758016328482794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.629547205832985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0922819190362185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.695004215553539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.899546931090867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3487331037982857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.856003453997221,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.152052782798216,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9900278987702946,
          -7,
          -3.758003009299799,
          -4.354356262178817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3923099598928186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7782236267660965,
          -7,
          -7,
          -7,
          -4.064233296034753,
          -3.579726448846229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3011230487976233,
          -4.567219679170076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.497492403996519,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325002252165038,
          -7,
          -4.238936372332732,
          -7,
          -3.936739878637037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.686077403554104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.072762487893174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.85982853501601,
          -7,
          -5.273512280679019,
          -7,
          -7,
          -4.543443038006803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.509404160258692,
          -7,
          -7,
          -2.986575127017741,
          -4.298081281898712,
          -4.280987889004646,
          -3.066046246604769,
          -4.415415768843478,
          -3.4780070353598553,
          -2.9022749204745018,
          -4.595595414820133,
          -3.2696723726683694,
          -3.2977167512641525,
          -2.5287189791351987,
          -3.8365139988906716,
          -4.421538119690085,
          -3.999635039330251,
          -2.806891904522298,
          -3.133558866297746,
          -4.376695550700234,
          -2.994622467273687,
          -4.049218022670182,
          -3.7195384391373816,
          -3.623456048069934,
          -3.832335018177531,
          -3.8071289555924217,
          -3.361249219040631,
          -2.8634880853390756,
          -7,
          -4.6624745037503095,
          -4.198272098469347,
          -7,
          -3.379254741314769,
          -3.393253384446486,
          -4.380247431410548,
          -3.855317205195943,
          -2.973779621328686,
          -2.1953460583484197,
          -3.7978558985883404,
          -3.9021117234480043,
          -3.982301391331439,
          -3.196535414422256,
          -4.6187486814592855,
          -3.2127201544178425,
          -4.674411004165626,
          -3.9884995011345423,
          -7,
          -7,
          -3.3830969299490943,
          -7,
          -4.759484017400655,
          -3.710878617685173,
          -3.2505419780102724,
          -3.5450131567760717,
          -7,
          -4.383546091724474,
          -7,
          -4.444279064276847,
          -7,
          -7,
          -7,
          -7,
          -3.103974669386388,
          -7,
          -3.5620107348170253,
          -4.4885634067382085,
          -4.364355676677317,
          -7,
          -7,
          -7,
          -4.355585600061131,
          -7,
          -5.1051097680662885,
          -4.092790799676886,
          -7,
          -7,
          -4.029992175377847,
          -4.439427438654527,
          -4.785963015980978,
          -3.6492374723496073,
          -7,
          -7,
          -2.838761511501365,
          -7,
          -7,
          -4.468667270826408,
          -4.48098372529553,
          -7,
          -5.047391702200444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0444526488723307,
          -7,
          -2.7839618855736754,
          -7,
          -3.8952843896896177,
          -2.2612628687924934,
          -2.0861724328371465,
          -3.748982214411482,
          -2.6123296529322277,
          -7,
          -7,
          -3.7802452838653524,
          -7,
          -3.2813708599038294,
          -3.6588695922019623,
          -7,
          -2.935171254603384,
          -3.441475184011856,
          -2.7041505168397992,
          -2.9254839872002525,
          -7,
          -2.1280760126687155,
          -3.109105863755288,
          -1.8309092995464433,
          -2.5757649805367193,
          -7,
          -7,
          -7,
          -3.184731979296402,
          -1.7219937073239866,
          -7,
          -2.966927174230582,
          -3.5643910191366928,
          -2.678652458663491,
          -7,
          -2.6597804193959593,
          -7,
          -2.095839662541678,
          -7,
          -2.926342446625655,
          -7,
          -3.416117232254335,
          -7,
          -3.0362295440862943,
          -3.455758203104137,
          -7,
          -1.7711087121610372,
          -3.1283992687178066,
          -2.156145156435762,
          -7,
          -3.1562461903973444,
          -7,
          -4.005480809979401,
          -1.9493348651412958,
          -7,
          -3.5935075893317654,
          -7,
          -2.9143431571194407,
          -3.117542456671693,
          -1.0003875899247916,
          -2.075546961392531,
          -2.519565500880509,
          -7,
          -3.5845632073128884,
          -2.919470349950749,
          -2.2741578492636796,
          -7,
          -3.1489109931093564,
          -3.573683693093798,
          -7,
          -2.3231833228365364,
          -2.0467434035423264,
          -7,
          -7,
          -2.3279262688653164,
          -7,
          -7,
          -4.032920808723266,
          -7,
          -7,
          -3.615865918668555,
          -7,
          -7,
          -3.268343913951065,
          -3.2713768718940743,
          -1.8917409426693867,
          -2.683947130751512,
          -2.950364854376123,
          -7,
          -7,
          -3.5227794666236236,
          -1.1569935095207584,
          -3.2022157758011316,
          -2.433636512517248,
          -3.3305786318991895,
          -3.1067007323623543,
          -2.2004562652820434,
          -3.2727085961319107,
          -3.0013009330204183,
          -7,
          -3.1367205671564067,
          -7,
          -2.646893624167745,
          -7,
          -7,
          -2.9446471464872617,
          -7,
          -7,
          -7,
          -3.101145379367524,
          -7,
          -3.095169351431755,
          -7,
          -7,
          -7,
          -7,
          -2.330819466495837,
          -2.5737738317498766,
          -1.978761346480108,
          -7,
          -7,
          -2.846955325019824,
          -7,
          -7,
          -7,
          -3.1290450598879582,
          -7,
          -7,
          -4.122838194089266,
          -1.5789769709225503,
          -3.0923696996291206,
          -3.1610683854711747,
          -7,
          -3.2854447829074154,
          -7,
          -7,
          -3.3280124388555863,
          -7,
          -7,
          -3.57978359661681,
          -1.2577400940253047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.4675800089413817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426966462630075,
          -7,
          -7,
          -7,
          -7,
          -2.9369632542966944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9795879585788803,
          -7,
          -7,
          -7,
          -4.367957784495365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.86693681773164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.840883613589037,
          -7,
          -7,
          -3.3666097103924297,
          -7,
          -3.6582976503081897,
          -7,
          -7,
          -7,
          -7,
          -3.284881714655453,
          -4.432263590253666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6750600320545788,
          -7,
          -7,
          -3.1295287738587763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02665326111819,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9814108401658883,
          -7,
          -7,
          -7,
          -7,
          -3.9041202134761996,
          -7,
          -7,
          -7,
          -7,
          -3.7858279199958655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1783149348321595,
          -3.9105939163159213,
          -7,
          -7,
          -7,
          -4.99471298543157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.002360478449408,
          -7,
          -7,
          -7,
          -3.6720608951303078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5587885437369464,
          -7,
          -7,
          -3.699230502883409,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0626195838543415,
          -7,
          -7,
          -7,
          -7,
          -4.5439687656935615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.607505573069506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.207630520994443,
          -7,
          -7,
          -3.60400993241223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.345432547499147,
          -7,
          -3.6035052322021435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058520921099337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5370000873213385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165219587753745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318730966888098,
          -7,
          -3.757901904775561,
          -7,
          -3.5660837841679958,
          -7,
          -7,
          -7,
          -3.999174055588485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.481729196960016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7898818450576406,
          -7,
          -7,
          -4.289544361497647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008886510427643,
          -3.578467291585447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.5743693067715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.204255678480151,
          -7,
          -7,
          -4.596915827751136,
          -4.073989470694238,
          -7,
          -3.338257230246256,
          -4.0148899938902884,
          -3.6767301802519694,
          -2.4521841151090564,
          -4.592243395937578,
          -3.8018779959930336,
          -3.284250210312084,
          -3.1366148865422088,
          -4.0062092405376575,
          -3.605942880164922,
          -3.794143716132249,
          -3.1509950913066977,
          -3.127469258299212,
          -3.8967282533689866,
          -3.310143913579505,
          -2.757116212742724,
          -4.315403504634351,
          -7,
          -3.9731616149516933,
          -3.162954824898502,
          -3.834789347763296,
          -2.9046479350221572,
          -7,
          -4.057485427208782,
          -2.8083516624462996,
          -7,
          -3.6290234850671896,
          -3.3842936639163343,
          -3.599164109114247,
          -4.326356346034385,
          -3.2933349269572516,
          -2.411409240981208,
          -4.088348752288528,
          -3.885304667588968,
          -4.454890572811237,
          -3.073972002343153,
          -4.314520279061685,
          -7,
          -4.3705685987670515,
          -5.0666352267141015,
          -3.1946253294838645,
          -7,
          -3.2897713227931304,
          -7,
          -4.121847611906487,
          -3.99899997221832,
          -3.513217600067939,
          -4.443607156584516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.074615331828475,
          -3.378670385207983,
          -7,
          -4.992266249484483,
          -4.6430463929643135,
          -4.592591800242331,
          -7,
          -7,
          -7,
          -4.178021984207647,
          -7,
          -7,
          -7,
          -4.221414237842339,
          -7,
          -4.324878943111994,
          -7,
          -4.181700704415961,
          -3.1411360901207392,
          -3.9168748785386835,
          -3.8147801457458046,
          -7,
          -7,
          -7,
          -4.099157555211003,
          -4.178473333988442,
          -7,
          -4.87070620635306,
          -7,
          -7,
          -4.609562396167091,
          -4.298612947759947,
          -7,
          -7,
          -7,
          -7,
          -2.6819808818607593,
          -2.5657150317200914,
          -7,
          -3.3424790790408303,
          -2.6020599913279625,
          -2.4641061396561508,
          -4.044186850767364,
          -2.2301081646076315,
          -7,
          -7,
          -3.155336037465062,
          -2.8363241157067516,
          -3.7981117584734614,
          -3.327767489902729,
          -2.743901550485179,
          -7,
          -3.1304945885234696,
          -3.0478587274074567,
          -2.8986337800355617,
          -2.1280760126687155,
          -7,
          -3.787672964687493,
          -7,
          -2.603865792191225,
          -3.2902572693945182,
          -7,
          -7,
          -3.172269243539273,
          -7,
          -7,
          -3.3935532686509355,
          -3.481980662231437,
          -2.1372151547842573,
          -2.7664128471123997,
          -2.8604877374747018,
          -3.6428600525844916,
          -2.8260748027008264,
          -7,
          -7,
          -7,
          -3.174520134964361,
          -7,
          -2.5921767573958667,
          -2.929248580749605,
          -3.237292337567459,
          -2.3683311667764393,
          -2.167317334748176,
          -0.5664196350588286,
          -3.163757523981956,
          -2.751279103983342,
          -7,
          -3.6911699341316035,
          -2.7199386533405456,
          -2.5165353738957994,
          -7,
          -7,
          -3.0338256939533106,
          -2.848127510567875,
          -7,
          -7,
          -3.9039035266901636,
          -7,
          -3.5992200567060535,
          -7,
          -2.0097994292833405,
          -3.244277120801843,
          -1.6086905702269756,
          -3.0781546160496553,
          -7,
          -3.1806275769070043,
          -2.9740509027928774,
          -7,
          -3.811909980420099,
          -1.4587090974027928,
          -7,
          -7,
          -3.5903858080526803,
          -7,
          -7,
          -4.007513076120703,
          -7,
          -7,
          -2.4896772916636984,
          -3.259474419531075,
          -2.100090986381226,
          -3.2135177569963047,
          -2.6928469192772297,
          -7,
          -7,
          -3.106511974326567,
          -1.8440627725826517,
          -2.6321197138685406,
          -1.8829138114849069,
          -3.752944296486384,
          -2.875447131459646,
          -3.210704863182517,
          -3.849124460263414,
          -2.9742352774430265,
          -3.4665710723863543,
          -3.0281644194244697,
          -7,
          -7,
          -3.6572471298837166,
          -7,
          -1.9730389953933727,
          -7,
          -7,
          -7,
          -2.5692166356836568,
          -7,
          -7,
          -2.7895807121644256,
          -2.47928731647617,
          -2.5563025007672873,
          -2.5217916496391233,
          -1.978864984347657,
          -2.5538156262430403,
          -3.263399331334002,
          -7,
          -7,
          -1.8561244442423004,
          -7,
          -2.49182842626168,
          -7,
          -7,
          -7,
          -3.251638220448212,
          -7,
          -2.5662901488579815,
          -3.6675463395115164,
          -3.059184617631371,
          -7,
          -2.704640691250642,
          -7,
          -7,
          -4.1992888280824054,
          -7,
          -7,
          -2.9408898574862166,
          -2.243193126167643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4603339459252327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8243211248507714,
          -7,
          -3.7899330809317506,
          -2.605872556477404,
          -4.018367578387845,
          -7,
          -7,
          -4.321038892726055,
          -3.4299540428315436,
          -7,
          -7,
          -7,
          -7,
          -3.7585334222372864,
          -3.051425881072855,
          -4.112504458767161,
          -7,
          -2.4006044003534495,
          -3.4377827213819003,
          -7,
          -7,
          -7,
          -7,
          -3.821513528404773,
          -7,
          -3.8543888618404702,
          -7,
          -3.7633531087482153,
          -7,
          -3.0848621390484223,
          -7,
          -3.4720246977002813,
          -2.713385526896622,
          -7,
          -7,
          -3.7810369386211318,
          -4.043516438047088,
          -7,
          -7,
          -7,
          -7,
          -2.9033613362553186,
          -7,
          -3.2041199826559246,
          -7,
          -3.3405763000433617,
          -3.066450169242703,
          -2.4455129265851774,
          -2.580327484580072,
          -3.168202746842631,
          -4.05952555273869,
          -7,
          -3.7989267385772014,
          -7,
          -2.046021089340296,
          -7,
          -7,
          -3.462921830369343,
          -7,
          -2.8041394323353503,
          -3.3483048630481607,
          -3.067219688974141,
          -7,
          -2.986659788272094,
          -7,
          -4.027512692448811,
          -3.2008960765643213,
          -7,
          -7,
          -3.799619335919808,
          -7,
          -2.055613530125348,
          -7,
          -7,
          -2.657226639945664,
          -7,
          -3.0002170929722305,
          -3.0527708694748816,
          -2.309193251411278,
          -3.3186197661495815,
          -3.9223101632143957,
          -7,
          -3.8497264441963277,
          -7,
          -3.063892314170801,
          -7,
          -3.5940332524095524,
          -3.4594678795625455,
          -7,
          -7,
          -2.6994040818153375,
          -7,
          -3.4809167613786745,
          -7,
          -3.8098513907377116,
          -7,
          -3.7555699806288,
          -3.1518293401318713,
          -1.660352445316127,
          -3.15601883092165,
          -7,
          -3.8282086144679455,
          -3.132854081187205,
          -2.819693460240162,
          -7,
          -3.297249705130254,
          -2.970678880284106,
          -3.8257505813480277,
          -3.0890657240506734,
          -2.598858872679337,
          -3.753429841575423,
          -3.86975959478241,
          -3.4647875196459372,
          -7,
          -3.806179973983887,
          -2.59458751984308,
          -2.883226677829262,
          -7,
          -3.6080979463252794,
          -7,
          -3.78588648069122,
          -3.817036226050029,
          -3.9050399280762114,
          -2.925593339959713,
          -7,
          -7,
          -2.44872368508559,
          -3.9148718175400505,
          -7,
          -7,
          -3.3095541288225525,
          -7,
          -7,
          -7,
          -7,
          -3.7545012293869173,
          -3.087917863970426,
          -3.2470316839518056,
          -3.9892495332565354,
          -3.3040594662175993,
          -7,
          -7,
          -7,
          -3.772028165324855,
          -3.3439990690571615,
          -4.220787776165875,
          -3.7762652182681093,
          -7,
          -7,
          -7,
          -3.259908659769131,
          -7,
          -7,
          -7,
          -3.8287243271387914,
          -7,
          -3.8298181874388773,
          -7,
          -7,
          -7,
          -7,
          -3.805670736698373,
          -7,
          -7,
          -2.6283435784500924,
          -3.3031240291456903,
          -7,
          -7,
          -7,
          -3.777209258145685,
          -7,
          -7,
          -2.3039049519688835,
          -7,
          -4.084897858461355,
          -7,
          -4.021189299069938,
          -2.0916688687624085,
          -2.9003671286564705,
          -2.1428387408691347,
          -2.2639016404506758,
          -2.548098346867815,
          -2.333015212300375,
          -7,
          -3.5499224041295117,
          -3.216957207361097,
          -7,
          -3.978500069311459,
          -3.784759894664005,
          -3.693243153309189,
          -7,
          -3.8506462351830666,
          -3.858537197569639,
          -4.435015741932561,
          -7,
          -3.3880758153666863,
          -7,
          -3.3408405498123317,
          -7,
          -3.13786028215286,
          -3.7764832558336816,
          -7,
          -2.855115160771781,
          -3.3961993470957363,
          -7,
          -3.884285462339675,
          -2.4799444140560416,
          -2.91539983521227,
          -7,
          -3.452782787900721,
          -2.5190984547466106,
          -3.4586378490256493,
          -7,
          -7,
          -7,
          -3.3121068025476728,
          -2.157476477884026,
          -3.9572240578431668,
          -2.431853031350563,
          -4.126233008108469,
          -7,
          -7,
          -7,
          -3.8175653695597807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3670451557305383,
          -2.352272175741767,
          -7,
          -7,
          -7,
          -7,
          -3.496445291873353,
          -3.093421685162235,
          -7,
          -7,
          -7,
          -7,
          -3.7516254773755455,
          -2.0098793906010903,
          -2.9425041061680806,
          -3.282773119305837,
          -7,
          -2.6332832517813607,
          -2.8202611850556862,
          -2.7684613836716037,
          -7,
          -2.675832234393879,
          -7,
          -7,
          -3.7758288144646124,
          -3.5754765086019,
          -4.030963842378275,
          -3.0106330626283864,
          -7,
          -7,
          -3.355962079458681,
          -7,
          -3.4625477288026643,
          -2.9203842421783577,
          -2.3487914675605843,
          -3.1995906406036934,
          -7,
          -7,
          -3.825491029879431,
          -7,
          -3.0622058088197126,
          -7,
          -3.8705209500127644,
          -2.658393026279124,
          -7,
          -7,
          -7,
          -3.1391657840831786,
          -3.5133175029511547,
          -7,
          -3.690993032099869,
          -7,
          -2.9564428661760616,
          -3.6580113966571126,
          -2.18456799910385,
          -1.8546190242893335,
          -2.5084261181878986,
          -4.054766217838991,
          -3.8553374044695405,
          -7,
          -7,
          -3.5667211474848406,
          -3.4029831731411804,
          -7,
          -7,
          -7,
          -3.561101383649056,
          -7,
          -3.7805333253164046,
          -7,
          -3.591231611251554,
          -7,
          -3.865222456290179,
          -3.479791180189492,
          -3.5327968299462387,
          -7,
          -3.5120169694961265,
          -3.1271047983648077,
          -3.7965743332104296,
          -4.109336642421726,
          -3.6933751510251853,
          -3.738290420067439,
          -7,
          -2.37325690926109,
          -3.6780074233271307,
          -4.049024097915049,
          -7,
          -3.506369717095504,
          -7,
          -2.6352323462394964,
          -3.2080572629476225,
          -4.020982442918419,
          -7,
          -7,
          -7,
          -3.586699801624049,
          -3.774224904868919,
          -3.7933712489189557,
          -7,
          -3.3820170425748683,
          -3.778729923996112,
          -2.5020619934068473,
          -3.7508168426497543,
          -7,
          -2.693394702830789,
          -3.2767590718057047,
          -7,
          -3.4974364901339174,
          -4.152448881329991,
          -2.5711338477405756,
          -3.2027947216772894,
          -3.800019526792286,
          -2.8435442119456353,
          -2.911157608739977,
          -3.2638726768652235,
          -7,
          -3.5558196830611912,
          -3.5011920917584893,
          -2.2429367436982206,
          -4.4242771222724,
          -3.572879896515506,
          -2.4673646965972407,
          -4.2033593015223,
          -3.2963951486038936,
          -7,
          -3.9991235785945736,
          -3.9033432515780624,
          -3.101946530502681,
          -3.6518834713412964,
          -7,
          -3.8021577531869615,
          -4.312980861723379,
          -3.570426178358973,
          -2.818293237576922,
          -2.6003949625208245,
          -3.877256133113586,
          -3.817400081458108,
          -3.5398703234865425,
          -3.0756685954731195,
          -4.238823622261076,
          -3.804548308388056,
          -3.9239172231131056,
          -3.533666161312212,
          -3.6243664894996273,
          -3.5052856741441323,
          -3.4371411554875295,
          -1.9520292794553855,
          -2.2308574768946725,
          -3.687751847789659,
          -4.423769988626339,
          -7,
          -3.2702864641306397,
          -2.833958011421064,
          -3.920905604164024,
          -3.61322057968259,
          -3.3429114356402447,
          -3.2778546939989375,
          -7,
          -2.9936766592628796,
          -7,
          -7,
          -4.058463985602251,
          -4.459784382296269,
          -2.993083360698062,
          -7,
          -2.2294632784465835,
          -3.076238707188634,
          -4.330615822099622,
          -7,
          -3.7031193462360776,
          -7,
          -2.218087383804092,
          -7,
          -4.63603464296186,
          -3.3309208305952356,
          -3.637829827012092,
          -3.2803506930460054,
          -3.0559099036346367,
          -3.554448777421438,
          -3.517347676486939,
          -7,
          -3.3339508043872472,
          -7,
          -2.990627916448299,
          -3.3510349484072637,
          -3.1957613200360613,
          -2.711727577657698,
          -2.282136641500025,
          -3.946255707199397,
          -3.78927954367021,
          -7,
          -3.9603280505301433,
          -3.0917144760028554,
          -7,
          -3.766635886310268,
          -7,
          -7,
          -7,
          -7,
          -1.6511105267296189,
          -2.75931910713189,
          -2.1626159757428707,
          -2.161293117420253,
          -2.165775860559767,
          -2.507936146456582,
          -1.9499125186171895,
          -3.381656482585787,
          -3.2934362201313325,
          -2.554004321011903,
          -3.459317082865925,
          -2.5133527289221607,
          -2.1647775936979032,
          -2.325062476619459,
          -3.264463634204881,
          -1.2906528242525366,
          -2.6861594155422437,
          -2.2808103891240723,
          -3.109105863755288,
          -3.787672964687493,
          -7,
          -3.312529954073747,
          -2.755459063891662,
          -3.545554507234065,
          -2.1486026548060932,
          -3.750431248660202,
          -2.4972964389519117,
          -7,
          -3.7668588110214176,
          -3.1726515725810147,
          -1.502857768958537,
          -2.5984563004865473,
          -3.2753113545418118,
          -2.696356388733332,
          -2.798179627198126,
          -3.028503473608217,
          -2.565311056175449,
          -7,
          -2.2742220133299713,
          -2.034269509370409,
          -7,
          -3.0682600937746995,
          -3.2800089531081857,
          -2.8314858392486575,
          -2.18232684521996,
          -2.5287739107048073,
          -2.3467944909178753,
          -3.8151126581898125,
          -2.9468030399953147,
          -2.2900964722673876,
          -2.1853119149262725,
          -2.956982282900748,
          -7,
          -2.489355711136674,
          -2.1095525886555575,
          -7,
          -2.2253779069107895,
          -3.485224400125799,
          -7,
          -1.9977723246559227,
          -3.0872488677956578,
          -1.6349616438564416,
          -1.7252780880807221,
          -2.578543708157483,
          -1.2733707271961023,
          -7,
          -3.787672964687493,
          -3.3092041796704077,
          -2.7445276734725668,
          -2.778078861937455,
          -2.8661691476337707,
          -1.8906329778663251,
          -2.4616811788749517,
          -2.7515870050823104,
          -2.0684564381754846,
          -2.202435106951743,
          -3.016336796275526,
          -3.0305418969899116,
          -2.679222134851209,
          -2.954724790979063,
          -2.6106192208808556,
          -2.82013575187043,
          -2.244744296231608,
          -2.121744173030045,
          -2.9808471031895913,
          -2.9708779609577287,
          -3.457503426573305,
          -7,
          -2.2131895097881804,
          -3.0041063232796583,
          -2.7610389412724987,
          -2.4557690646750436,
          -2.4007397782617166,
          -1.1696838475727276,
          -2.2366665416716964,
          -2.8810830558880607,
          -2.608748828678732,
          -2.558544943096918,
          -7,
          -2.8896751285670677,
          -7,
          -2.4115742086626906,
          -3.5160062303860475,
          -3.400451639956946,
          -3.754806855354423,
          -1.991732246474622,
          -3.511214701136388,
          -2.0570960247337777,
          -2.7193312869837265,
          -7,
          -7,
          -3.4531653925258574,
          -7,
          -3.4578818967339924,
          -3.0676658819742486,
          -2.3965025724401565,
          -2.935444283519925,
          -3.158905021187544,
          -7,
          -3.012133913649598,
          -3.7685641095135733,
          -3.4776999283321306,
          -3.7983743766815614,
          -3.78660947264866,
          -2.4500208926115854,
          -3.233884108765886,
          -2.62076532707056,
          -3.0406418915445363,
          -3.6868149545073168,
          -2.8384992763954235,
          -7,
          -2.065533673461455,
          -3.7866804531966487,
          -7,
          -2.8917509168182045,
          -3.1951382785109965,
          -3.7951149856303634,
          -2.9780282664601656,
          -2.9428344937700954,
          -3.287745760540123,
          -7,
          -7,
          -2.9692994014258773,
          -7,
          -2.9076352585379115,
          -3.5344703322033375,
          -3.8057726319356693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.506239774721532,
          -7,
          -7,
          -7,
          -3.9003124969837266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.082516096060493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.088915346604906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3953263930693507,
          -7,
          -5.142020096199679,
          -7,
          -7,
          -7,
          -7,
          -3.66133934000604,
          -7,
          -7,
          -7,
          -7,
          -2.688642251959892,
          -4.432434774521513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.126092426202353,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.116926885756776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4174716932032934,
          -3.6063813651106047,
          -7,
          -4.156064312339866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3818908806262575,
          -7,
          -7,
          -7,
          -7,
          -3.911370707116138,
          -2.6486852034198645,
          -2.795880017344075,
          -7,
          -7,
          -2.650793039651931,
          -7,
          -7,
          -4.45498198398436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8945744943980465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7453871213200087,
          -3.859378504425601,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.498403989816759,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.285039447366519,
          -7,
          -7,
          -4.654884701981255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0398105541483504,
          -7,
          -3.073131564940993,
          -7,
          -3.2631624649622166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.882998606861143,
          -3.3877456596088638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.758885830584383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.712971392093174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.319397574051826,
          -7,
          -7,
          -7,
          -3.4571414688886586,
          -7,
          -7,
          -7,
          -4.000564216165375,
          -3.454387467146955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530462245283984,
          -7,
          -7,
          -3.6880636969463443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.787129297761864,
          -3.881441721941393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.875408560077064,
          -7,
          -7,
          -4.718418641829656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5178444351168308,
          -4.773252387838773,
          -7,
          -7,
          -4.413148824714317,
          -3.4218962826411565,
          -3.8882918453565156,
          -7,
          -4.404223451969429,
          -7,
          -3.0148354350727975,
          -4.307966447028274,
          -4.419302990800441,
          -4.521395270332305,
          -3.327654040806735,
          -7,
          -4.374216605428374,
          -3.431835679685695,
          -7,
          -4.316075234838397,
          -7,
          -5.087247091536476,
          -4.278181784567518,
          -4.0570952896126675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.821215016691195,
          -4.163697945892569,
          -4.076722343959474,
          -7,
          -4.197693975083923,
          -3.3240765797394864,
          -7,
          -7,
          -4.4553778768849766,
          -3.8884041677370464,
          -7,
          -7,
          -7,
          -5.066754416617172,
          -7,
          -7,
          -7,
          -7,
          -5.235932253986295,
          -7,
          -7,
          -3.5407985597854283,
          -7,
          -4.381106051624685,
          -2.5514499979728753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.992407697648305,
          -4.7892252348732285,
          -7,
          -7,
          -7,
          -7,
          -4.479234496909399,
          -3.7912694809102683,
          -7,
          -7,
          -4.222248116858932,
          -7,
          -2.847222944219378,
          -7,
          -4.306882315060308,
          -7,
          -7,
          -7,
          -4.121017869041896,
          -7,
          -7,
          -7,
          -4.479685657143802,
          -7,
          -4.502776210159077,
          -7,
          -7,
          -4.308852424944224,
          -7,
          -7,
          -7,
          -7,
          -1.5947607525864629,
          -7,
          -3.6263256999716096,
          -7,
          -3.711582293398766,
          -2.4419568376564116,
          -3.0170333392987803,
          -3.5675360785152037,
          -3.4163075870598827,
          -3.038023740045158,
          -7,
          -3.760271660542063,
          -2.553883026643874,
          -3.0573479242379045,
          -3.6322547766847135,
          -3.0580462303952816,
          -2.2464607024231023,
          -3.2866168384508114,
          -2.310210387260904,
          -2.9809119377768436,
          -1.8309092995464433,
          -7,
          -3.312529954073747,
          -7,
          -2.3121068025476728,
          -3.2973227142053023,
          -7,
          -7,
          -3.5419119092113363,
          -2.3729120029701067,
          -7,
          -3.342707730097314,
          -3.647808951020386,
          -3.466634635428093,
          -7,
          -2.621324682419535,
          -7,
          -1.9529538008322767,
          -7,
          -2.455606112581867,
          -7,
          -7,
          -2.348953547981164,
          -2.9116901587538613,
          -3.412460547429961,
          -7,
          -2.5183384319014017,
          -3.030599721965951,
          -2.9786369483844743,
          -7,
          -2.586587304671755,
          -7,
          -7,
          -2.3145878572394274,
          -1.8750612633917,
          -7,
          -7,
          -3.0402066275747113,
          -3.674064663366411,
          -1.5444957100489443,
          -1.637934247956542,
          -2.95052711646727,
          -7,
          -3.591591770128131,
          -7,
          -2.6565240853339462,
          -7,
          -7,
          -3.8588378514285853,
          -7,
          -2.1258786900701554,
          -2.383815365980431,
          -7,
          -7,
          -2.37185916734684,
          -7,
          -7,
          -4.155143649983192,
          -3.334051440346892,
          -7,
          -2.910304168068569,
          -3.187520720836463,
          -3.448087666692341,
          -3.1997551772534747,
          -3.4369970267054812,
          -2.3733718171813005,
          -1.9337003600874467,
          -2.8788089323592057,
          -7,
          -7,
          -3.663908131452911,
          -2.1158274961813883,
          -7,
          -3.4782778319196046,
          -3.929495559155406,
          -7,
          -3.019472366839173,
          -4.247531386233569,
          -2.498218629885796,
          -7,
          -1.9530344572503566,
          -7,
          -2.184691430817599,
          -7,
          -3.0790002523038495,
          -3.700790221374347,
          -7,
          -7,
          -7,
          -3.2837881449671475,
          -7,
          -2.383815365980431,
          -7,
          -2.8041394323353503,
          -7,
          -7,
          -2.605305046141109,
          -3.034695286583428,
          -1.8441424962142483,
          -7,
          -7,
          -2.451402613597493,
          -7,
          -7,
          -7,
          -2.552668216112193,
          -7,
          -7,
          -3.812779707008964,
          -2.4935681057700907,
          -2.714795291445831,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8986429210566396,
          -7,
          -7,
          -3.2463754640035085,
          -2.2764618041732443,
          -2.8318697742805017,
          -7,
          -7,
          -7,
          -7,
          -2.388138610113707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.205504800451809,
          -7,
          -7,
          -7,
          -4.204635401383848,
          -3.375219296154107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.646031033842023,
          -7,
          -7,
          -2.7913397039651393,
          -4.341802148803916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.168809686171092,
          -3.1740598077250253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.841356341520803,
          -7,
          -7,
          -3.0925452076056064,
          -7,
          -2.972758083903539,
          -7,
          -7,
          -7,
          -7,
          -2.83968749733336,
          -3.733972576339301,
          -7,
          -7,
          -3.5147469246343817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8249931222365388,
          -4.1546065392836224,
          -7,
          -7,
          -7,
          -7,
          -3.456973013635818,
          -3.6641717053619307,
          -7,
          -7,
          -4.825442346705323,
          -7,
          -3.413634997198556,
          -7,
          -7,
          -3.1159985963842782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.582404298019028,
          -7,
          -7,
          -3.7997386616885427,
          -3.5773768919170146,
          -3.555698894718901,
          -7,
          -7,
          -7,
          -3.3240765797394864,
          -7,
          -7,
          -7,
          -4.1596574112477045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.906837655959449,
          -7,
          -7,
          -7,
          -7,
          -2.5891336581773676,
          -2.1166681087783803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0579018215218525,
          -7,
          -7,
          -7,
          -4.092224852134988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8583653018690365,
          -2.738516308715399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7409545058228053,
          -3.7545776560447304,
          -4.1640255242878395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2314695904306814,
          -7,
          -3.846708145456007,
          -7,
          -3.018284308426531,
          -7,
          -4.545838832510257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4500950758716025,
          -7,
          -7,
          -3.8955882756662628,
          -7,
          -7,
          -3.720297152790356,
          -3.04493154614916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.63823959067475,
          -7,
          -3.8105013477665297,
          -7,
          -7,
          -3.672676916048187,
          -7,
          -7,
          -3.6200318951262975,
          -7,
          -3.1266183755229515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0473138158153885,
          -7,
          -2.7043292903498783,
          -7,
          -2.575043441108574,
          -2.7895807121644256,
          -2.589726256254237,
          -7,
          -7,
          -3.1645758949823053,
          -3.406540180433955,
          -7,
          -3.4372747974101237,
          -3.760271660542063,
          -3.8720979742742268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.141857223238367,
          -4.7132266941659084,
          -7,
          -7,
          -3.0860037056183818,
          -2.9148718175400505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.481492050349517,
          -7,
          -7,
          -7,
          -7,
          -3.130655349022031,
          -7,
          -7,
          -7,
          -3.7102020146553847,
          -7,
          -3.803934849863842,
          -7,
          -7,
          -7,
          -7,
          -2.7763898245663734,
          -7,
          -3.307231680910892,
          -7,
          -4.111590127767469,
          -7,
          -7,
          -7,
          -2.148394076647004,
          -7,
          -3.9753858489894673,
          -3.741387992479269,
          -7,
          -3.2762319579218335,
          -7,
          -7,
          -7,
          -7,
          -3.477265995424853,
          -7,
          -3.0136796972911926,
          -7,
          -7,
          -3.303196057420489,
          -7,
          -7,
          -3.643156465619706,
          -3.227372442289636,
          -7,
          -3.2821687783046416,
          -3.9567413467550643,
          -7,
          -7,
          -3.9918239268084683,
          -7,
          -7,
          -7,
          -7,
          -3.493179120682515,
          -7,
          -7,
          -3.350829273582968,
          -3.5630061870617937,
          -3.4169731726030363,
          -4.486161819770721,
          -3.888179493918325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0916669575956846,
          -4.921236055163652,
          -7,
          -3.8133808067338557,
          -4.320947640446896,
          -7,
          -7,
          -7,
          -7,
          -3.5739154404215507,
          -3.8055008581584002,
          -7,
          -3.0811672147134725,
          -7,
          -7,
          -3.447158031342219,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5528979407839887,
          -7,
          -7,
          -3.4521589665758357,
          -4.4730780298442365,
          -7,
          -7,
          -4.238037735139086,
          -3.776428756703846,
          -3.195512210674072,
          -4.593917107968336,
          -3.5393840807619363,
          -3.6892200372638357,
          -3.629817196018516,
          -4.009429647995079,
          -4.119222886923583,
          -4.0959012792258775,
          -3.092618786621763,
          -7,
          -4.074240289442827,
          -3.3797042690244474,
          -4.043283665570575,
          -3.5402042998420598,
          -7,
          -5.3884919618358005,
          -7,
          -3.757497251140972,
          -4.114844413145024,
          -7,
          -4.661036127893079,
          -7,
          -7,
          -3.697098511464285,
          -3.8661395947446504,
          -4.378870098398975,
          -7,
          -4.200959878391846,
          -3.3479151865016914,
          -7,
          -7,
          -4.457185256553668,
          -4.192818257048295,
          -3.575555201770702,
          -7,
          -4.371963248515009,
          -4.368197598914685,
          -3.9023293058583186,
          -7,
          -7,
          -3.406199423663313,
          -4.281949496845566,
          -4.00552369267328,
          -3.5328817194073974,
          -3.065034793369011,
          -4.4869827371917586,
          -3.6416543530806247,
          -7,
          -4.441899276742038,
          -7,
          -7,
          -7,
          -4.378434242062079,
          -3.215901813204032,
          -7,
          -4.038620161949702,
          -4.011171346488324,
          -7,
          -7,
          -3.7138264243805246,
          -7,
          -4.11179041463582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.026900808890256,
          -7,
          -4.78488106958609,
          -7,
          -3.9208274397551555,
          -7,
          -3.7236307775414375,
          -7,
          -7,
          -3.798803504402391,
          -4.054239492601495,
          -7,
          -4.0056250349389275,
          -2.5705429398818973,
          -3.623559390005437,
          -7,
          -4.000824376605606,
          -7,
          -7,
          -7,
          -2.0247934233387634,
          -3.4360035356698964,
          -2.531302696921394,
          -2.709439574132411,
          -2.536474268817627,
          -2.979092900638326,
          -2.495147721553675,
          -2.693277378791741,
          -2.2267609637969663,
          -2.662001879389917,
          -7,
          -2.0207378494638983,
          -2.4435237466871254,
          -1.9766408215681843,
          -2.297561567219382,
          -2.1931245983544616,
          -2.150485541952428,
          -2.930821728079435,
          -0.9593742275515137,
          -2.1945590983602625,
          -2.5757649805367193,
          -2.603865792191225,
          -2.755459063891662,
          -2.3121068025476728,
          -7,
          -2.4750482460967973,
          -2.7819945894654037,
          -1.9363880603822547,
          -2.544605409694115,
          -2.4403842548328845,
          -7,
          -3.0674537787406724,
          -3.008366279393024,
          -2.743099952936036,
          -2.8662873390841948,
          -2.250420002308894,
          -2.773932647467645,
          -1.6097468199942533,
          -2.805636766305935,
          -2.840106094456758,
          -2.581380688709987,
          -2.4842274307854315,
          -2.597146487833695,
          -2.49182842626168,
          -2.7317498835272636,
          -2.269512944217916,
          -2.2878878226021113,
          -1.953499490469544,
          -1.665223510201882,
          -1.7954628943903799,
          -1.952515690138819,
          -2.0055481951688097,
          -2.4776035362594007,
          -2.6326214246439354,
          -2.2052043639481447,
          -2.494618336168116,
          -2.4706799424243178,
          -3.364550995353972,
          -2.4274922332943896,
          -2.7741518589547103,
          -2.0090730019467866,
          -2.390078298969682,
          -2.9061553956879878,
          -2.8828921086125296,
          -2.545581986400255,
          -2.278129763907229,
          -2.8020892578817325,
          -2.4951973183654577,
          -3.263517716091967,
          -3.0770043267933502,
          -2.1647775936979032,
          -1.72222246396973,
          -2.269512944217916,
          -2.497061352238562,
          -1.8228216453031048,
          -7,
          -2.635282637998212,
          -2.8541642908673475,
          -2.530790575140356,
          -7,
          -2.7420666425654527,
          -2.805228914203426,
          -3.4572004127937683,
          -2.6276218509897133,
          -2.332478065449526,
          -2.164352855784437,
          -1.8991237997743422,
          -1.9020028913507296,
          -2.910090545594068,
          -2.8656960599160706,
          -2.9329245114554494,
          -2.350801612394977,
          -2.3774883833761327,
          -2.167317334748176,
          -2.7758466875586456,
          -2.681060243631812,
          -2.5995585423686345,
          -3.057948165085225,
          -2.0072391725850767,
          -2.3710678622717363,
          -2.1256619582273957,
          -2.6159500516564007,
          -7,
          -2.4927603890268375,
          -2.5761640871494937,
          -3.011316643366872,
          -7,
          -2.8405242885014963,
          -3.1953460583484197,
          -2.218937929477692,
          -2.663386788318517,
          -2.3364597338485296,
          -7,
          -2.576341350205793,
          -2.461898521729004,
          -2.912753303671323,
          -2.48808044630625,
          -2.4965342957637975,
          -1.3890478929141081,
          -3.3604040547299387,
          -3.0610753236297916,
          -2.1391791757229104,
          -7,
          -7,
          -7,
          -7,
          -2.9596772555121413,
          -3.286905352972375,
          -3.11723814213982,
          -2.8794542970180665,
          -3.2039389889121495,
          -2.8112397727532894,
          -7,
          -2.78993308093175,
          -7,
          -7,
          -3.0244993503595516,
          -7,
          -7,
          -3.084457113581298,
          -2.239373094599889,
          -2.4967759427161327,
          -7,
          -7,
          -3.4055171069763763,
          -2.904715545278681,
          -2.1184668132481392,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.446226401778163,
          -2.6164755138885654,
          -7,
          -7,
          -4.093548291027968,
          -7,
          -7,
          -7,
          -3.525122584158249,
          -2.6695932692069277,
          -1.4135955714364747,
          -7,
          -3.1684974835230326,
          -7,
          -7,
          -3.2128531899471113,
          -7,
          -7,
          -3.278753600952829,
          -2.864397059718746,
          -3.3492775274679554,
          -3.2598326990634834,
          -7,
          -2.651278013998144,
          -1.8587923111903113,
          -7,
          -4.093964214254529,
          -2.2658001678796333,
          -7,
          -3.212453961040276,
          -7,
          -7,
          -3.2430380486862944,
          -7,
          -7,
          -3.5245259366263757,
          -7,
          -3.889329720601343,
          -3.2271150825891253,
          -2.989004615698537,
          -3.2064210652379885,
          -3.070037866607755,
          -2.2691907672877827,
          -7,
          -2.8692317197309762,
          -3.6290016192869916,
          -2.678700434998304,
          -7,
          -3.173223363367037,
          -7,
          -2.464374148443393,
          -3.862548769524793,
          -7,
          -7,
          -3.1052830432993654,
          -7,
          -7,
          -7,
          -7,
          -2.835479184541597,
          -3.0751818546186915,
          -3.320294686755554,
          -7,
          -3.1986570869544226,
          -2.3207570223696323,
          -7,
          -3.811038508604216,
          -2.8246951871909625,
          -7,
          -3.5744942682853273,
          -3.456485559127413,
          -7,
          -7,
          -7,
          -7,
          -2.3991135714003433,
          -3.1936810295412816,
          -2.482158695411276,
          -7,
          -7,
          -2.8380090624639394,
          -3.621176281775035,
          -3.659440781870318,
          -2.9836262871245345,
          -7,
          -3.741609018477117,
          -3.655234507034294,
          -4.061866972138563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.838471279071929,
          -3.40671045860979,
          -2.2915168465279523,
          -3.0539859144018386,
          -7,
          -7,
          -3.375297738217339,
          -7,
          -1.6781969175288394,
          -7,
          -7,
          -2.6620829372459838,
          -3.6599162000698504,
          -3.4274861090957858,
          -7,
          -3.72607487021537,
          -4.285384757063689,
          -7,
          -3.902546779313991,
          -2.829303772831025,
          -2.793113454220208,
          -7,
          -3.5859117103194342,
          -7,
          -7,
          -7,
          -2.313825471320152,
          -2.650199556821398,
          -7,
          -7,
          -4.38737202701981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.070370390367003,
          -3.5067079263501197,
          -3.8844838285545573,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0870712059065353,
          -7,
          -3.1908917169221698,
          -7,
          -7,
          -2.2372085050255706,
          -4.077743283566271,
          -7,
          -7,
          -7,
          -7,
          -2.6098610929805472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6336199272367296,
          -3.4412236742426123,
          -7,
          -3.7462647282196215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.497620649781288,
          -7,
          -3.5256493733815315,
          -7,
          -7,
          -3.0222633656812588,
          -7,
          -7,
          -3.213694803261253,
          -2.806179973983887,
          -3.2328691051326137,
          -7,
          -3.163310488963686,
          -7,
          -2.9514994179522764,
          -3.7271344237604884,
          -7,
          -7,
          -7,
          -7,
          -3.4825877695267677,
          -7,
          -7,
          -2.712279215017366,
          -7,
          -3.052822146939007,
          -7,
          -2.4274861090957858,
          -3.254064452914338,
          -2.5069557791831683,
          -2.5378190950732744,
          -3.2161659022859928,
          -7,
          -3.0638335542064703,
          -7,
          -3.913336925932623,
          -7,
          -7,
          -7,
          -7,
          -3.224014811372864,
          -2.574956775764507,
          -7,
          -2.818005830532529,
          -2.9639294220265584,
          -2.9887372752888,
          -7,
          -5.014888315259641,
          -7,
          -7,
          -2.8144695709383387,
          -7,
          -7,
          -7,
          -3.203032887014711,
          -2.739888655084543,
          -7,
          -7,
          -7,
          -7,
          -3.241048150671644,
          -3.166726055580052,
          -3.207095540419218,
          -7,
          -3.6254006534766647,
          -3.1690863574870227,
          -2.8793826371743427,
          -7,
          -7,
          -3.019324037153691,
          -7,
          -7,
          -3.020568434801363,
          -3.4676820847136822,
          -3.4665710723863543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4953834355923443,
          -3.4927603890268375,
          -3.0024129251889913,
          -7,
          -3.9416521994105165,
          -3.3463529744506384,
          -7,
          -3.2518814545525276,
          -1.2149155345054852,
          -7,
          -2.341606539426177,
          -2.260141565650559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3995006613146104,
          -7,
          -2.9618954736678504,
          -7,
          -3.510545010206612,
          -2.9371530153045136,
          -7,
          -7,
          -2.946615995262667,
          -4.056037301237244,
          -3.3454227452289564,
          -7,
          -3.5306478535274857,
          -7,
          -7,
          -1.5581688314517086,
          -2.7687860469080143,
          -2.7982620922768358,
          -2.052870647076631,
          -3.855034316675884,
          -7,
          -7,
          -2.3175410324561483,
          -4.874836658990174,
          -2.8855668032220505,
          -7,
          -7,
          -7,
          -3.828788748184953,
          -2.7600034015785693,
          -7,
          -7,
          -2.409812402140273,
          -2.6402329136549687,
          -2.651554899236661,
          -7,
          -3.3045623297876885,
          -7,
          -2.8879921769079147,
          -3.4156409798961542,
          -7,
          -4.018183173433062,
          -3.706478811975557,
          -4.5334698946539165,
          -7,
          -7,
          -3.049123134141101,
          -1.9385070581749333,
          -7,
          -3.3498600821923312,
          -3.228913405994688,
          -3.0497024560521484,
          -2.257493965097264,
          -1.7274984504165358,
          -2.45484486000851,
          -2.889581802149624,
          -7,
          -3.071636573854042,
          -7,
          -3.307923703611882,
          -3.3261309567107946,
          -3.4363217001397333,
          -7,
          -2.472982377874486,
          -3.161966616364075,
          -7,
          -4.129453564839296,
          -7,
          -7,
          -7,
          -7,
          -4.391869775709361,
          -7,
          -4.602049133830196,
          -3.630789354092371,
          -7,
          -7,
          -7,
          -4.727411111842715,
          -5.002269761490024,
          -3.55135017418428,
          -7,
          -7,
          -4.325854182575375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8459905281322375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.781798443044012,
          -4.1886191672078485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4682882387076095,
          -7,
          -4.022747891057003,
          -3.346744054604849,
          -4.679800248947389,
          -4.028482521569151,
          -3.463594402187,
          -7,
          -4.349277527467955,
          -7,
          -4.636023765759377,
          -3.735119634081872,
          -2.8391636829146503,
          -3.9801700844088446,
          -3.5871822704263163,
          -3.7354746964258965,
          -7,
          -3.754302457110145,
          -3.884682104206025,
          -7,
          -7,
          -4.391711200121372,
          -7,
          -7,
          -4.041883730497782,
          -4.410207639094926,
          -7,
          -7,
          -3.294613170667107,
          -7,
          -3.4416713367267233,
          -7,
          -5.10611437035037,
          -4.113006940000935,
          -7,
          -7,
          -3.865656612667585,
          -4.147583582421641,
          -4.489093245592739,
          -7,
          -3.395426248098107,
          -3.87046243158892,
          -3.6026784204385085,
          -4.5017847633885,
          -3.3226327116922234,
          -3.335526392136679,
          -3.6597260952377915,
          -7,
          -3.9181080350553983,
          -3.269979676645324,
          -3.3929606147967957,
          -4.016866270828975,
          -7,
          -7,
          -7,
          -7,
          -3.204933522354145,
          -7,
          -3.2794958384653494,
          -2.1924612493910622,
          -2.2159503314026674,
          -7,
          -3.167465028843088,
          -2.589381549515688,
          -3.5402042998420598,
          -7,
          -2.9334872878487053,
          -2.437552390568762,
          -3.1983821300082944,
          -2.8073915104764544,
          -2.3861166079483445,
          -2.454191294073423,
          -7,
          -7,
          -2.64849940898627,
          -2.519441919893148,
          -7,
          -3.2902572693945182,
          -3.545554507234065,
          -3.2973227142053023,
          -2.4750482460967973,
          -7,
          -2.295267138296195,
          -3.1604685311190375,
          -3.35430056234536,
          -7,
          -3.2211533219547053,
          -4.130516026695155,
          -3.6508034376395506,
          -4.494126753736251,
          -7,
          -3.57978359661681,
          -2.0869527242574843,
          -3.3492775274679554,
          -2.019957892316097,
          -7,
          -2.5773276363569475,
          -2.446184640239396,
          -3.1861083798132053,
          -2.3178022622275756,
          -3.059689611271879,
          -2.5712095470456258,
          -2.9872937677065066,
          -7,
          -2.3242824552976926,
          -2.5239321817948963,
          -3.3059958827708047,
          -2.3137166067099697,
          -3.0751818546186915,
          -3.745309059940828,
          -7,
          -2.044735697450507,
          -2.3521825181113627,
          -7,
          -3.134959072444847,
          -7,
          -2.922984815708883,
          -7,
          -2.5436542334738954,
          -2.4218095100603696,
          -2.893317811616112,
          -3.6953065224318027,
          -3.1215598441875008,
          -7,
          -7,
          -2.9854264740830017,
          -2.8416097121684354,
          -2.562768543016519,
          -2.8029104894190398,
          -2.307496037913213,
          -3.401572845676446,
          -7,
          -2.2115209972402297,
          -2.1804176619850706,
          -1.775818418551172,
          -3.222456336679247,
          -2.2542815303849095,
          -2.7494050038058324,
          -2.2381817777571724,
          -2.270051437134896,
          -2.655360107882245,
          -3.7500453120117676,
          -3.101403350555331,
          -2.595863489908268,
          -3.1917303933628562,
          -3.1690863574870227,
          -4.378942698613438,
          -7,
          -2.8611359755265933,
          -7,
          -3.079393349595296,
          -7,
          -3.5889156661572823,
          -3.4448012079904675,
          -1.5745203381419075,
          -2.4028915836471096,
          -7,
          -1.7534873044041706,
          -7,
          -2.3162123596631825,
          -1.9102947457629293,
          -7,
          -7,
          -3.450864692379766,
          -1.9061810639690855,
          -2.571708831808688,
          -2.850033257689769,
          -7,
          -7,
          -2.571708831808688,
          -7,
          -7,
          -7,
          -3.8674674878590514,
          -3.13433651094868,
          -1.8161676220745815,
          -3.2771506139637965,
          -2.6972293427597176,
          -7,
          -7,
          -3.021602716028242,
          -7,
          -2.636738571385955,
          -7,
          -3.2962576521896327,
          -3.8335932939984563,
          -7,
          -7,
          -3.1772478362556233,
          -7,
          -7,
          -7,
          -3.5121905991407667,
          -7,
          -3.0117818305481068,
          -2.796177717217656,
          -3.571009672309305,
          -3.076640443670342,
          -7,
          -7,
          -7,
          -7,
          -3.2661532687922707,
          -2.308153810824874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.732393759822968,
          -3.605412798153051,
          -3.5106790310322102,
          -2.4300005901760695,
          -3.440522194608935,
          -3.8915374576725643,
          -7,
          -3.208306962353663,
          -2.389764533517935,
          -2.9533684457836418,
          -3.5922878159521305,
          -3.0754252932359982,
          -7,
          -2.724002642487717,
          -7,
          -2.723402127046082,
          -3.1097894001793462,
          -7,
          -2.779476238043183,
          -3.026344570437043,
          -3.5769169559652068,
          -7,
          -7,
          -2.7665987210642644,
          -3.1231980750319988,
          -7,
          -3.4036066130850333,
          -7,
          -3.4992745818922173,
          -7,
          -3.2359070270406924,
          -3.0611696432049054,
          -3.517195897949974,
          -3.05307844348342,
          -3.4871383754771865,
          -3.688953462637418,
          -3.229937685907934,
          -3.4087794137661467,
          -7,
          -2.940267391446012,
          -3.074907822966796,
          -2.1868433703244703,
          -2.044185585342395,
          -3.0494764543837896,
          -2.796343017901684,
          -7,
          -3.1172712956557644,
          -3.639486489268586,
          -2.602013009816451,
          -3.1288837020997735,
          -2.3697516927426494,
          -3.2464493382670443,
          -7,
          -7,
          -3.2522865422434055,
          -3.089905111439398,
          -7,
          -2.622098840766468,
          -7,
          -3.0784568180532927,
          -2.4541516523882234,
          -3.108198447191592,
          -3.0278929853644447,
          -7,
          -2.4283053396747674,
          -7,
          -3.204337075628155,
          -2.1998699333598113,
          -3.5010592622177517,
          -3.422589839851482,
          -3.4803295879249125,
          -7,
          -2.5394345754799916,
          -7,
          -3.5203525040833177,
          -2.001445240874181,
          -3.668944734457734,
          -2.4107123600509404,
          -7,
          -3.031327657761131,
          -2.7781512503836434,
          -3.7573960287930244,
          -2.4021897107849237,
          -3.6466977312993345,
          -7,
          -2.4867864709381777,
          -2.5248286863646054,
          -2.4903264264026674,
          -3.1929853790931624,
          -7,
          -3.0211892990699383,
          -2.640779477344857,
          -2.189806023929912,
          -2.212733800963175,
          -3.5114822886260013,
          -2.4963812798964615,
          -7,
          -7,
          -7,
          -2.327504891195603,
          -7,
          -3.3973315703911284,
          -3.6118294794983736,
          -2.556239002780201,
          -2.7589118923979736,
          -7,
          -3.218535505216528,
          -3.1149444157125847,
          -3.0050732130636044,
          -2.89667208170219,
          -7,
          -7,
          -1.5508540336935677,
          -1.7541130095162047,
          -2.017418636809106,
          -3.574956775764507,
          -2.5164231095855185,
          -2.8135809885681917,
          -3.54703589974001,
          -3.979092900638326,
          -3.5525465479556604,
          -3.5136600060801557,
          -3.593286067020457,
          -3.7319109421168726,
          -3.822560336942692,
          -3.022153327172555,
          -7,
          -1.770374283682813,
          -2.630662523107402,
          -7,
          -7,
          -3.510628778069135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6166395905393904,
          -2.598078862529418,
          -2.2220137501713593,
          -3.171901890731724,
          -7,
          -3.5303277897780863,
          -7,
          -7,
          -2.9978230807457256,
          -7,
          -3.1902382914634244,
          -7,
          -7,
          -7,
          -2.95944860705501,
          -7,
          -3.477265995424853,
          -7,
          -3.009981753317307,
          -7,
          -3.136931851267557,
          -3.154525408238757,
          -3.230193378869046,
          -2.695831772826692,
          -2.802284930100363,
          -2.3591021316622953,
          -2.7291647896927698,
          -3.2405492482826,
          -3.200516109714852,
          -3.5303277897780863,
          -3.182129214052998,
          -3.4740705032150436,
          -2.4154503326227226,
          -2.5220528008688223,
          -3.5160062303860475,
          -7,
          -2.7380270223694625,
          -7,
          -3.636888906983799,
          -3.1863912156954934,
          -3.417969642214737,
          -2.6699765409218195,
          -7,
          -2.865991800126275,
          -2.328583449714202,
          -3.3121773564397787,
          -2.9165416759478404,
          -3.1480882706622184,
          -2.3665704006094646,
          -3.2960066693136723,
          -2.721501472134904,
          -3.536116348245079,
          -3.5378190950732744,
          -3.2566576235323295,
          -7,
          -3.7611005389581424,
          -2.3560258571931225,
          -3.612359947967774,
          -3.5082603055123345,
          -2.880843667034579,
          -7,
          -3.443106456737266,
          -7,
          -3.1492191126553797,
          -7,
          -3.2400497721126476,
          -2.415565653474683,
          -2.505511739675187,
          -7,
          -2.493893521283257,
          -3.8013007844375624,
          -2.907993255039917,
          -7,
          -3.1805559407036412,
          -2.920905604164024,
          -3.4927603890268375,
          -2.9043097257675417,
          -2.834929096460576,
          -7,
          -2.5899496013257077,
          -2.2489128117674015,
          -2.903496947335859,
          -3.304571304204838,
          -3.936905637015932,
          -7,
          -3.051023823533444,
          -2.309755378463786,
          -7,
          -7,
          -7,
          -2.9755237129603316,
          -3.3317308928154574,
          -3.15259407792747,
          -7,
          -7,
          -3.0236639181977933,
          -3.214843848047698,
          -3.176958980586908,
          -3.4984484031739997,
          -2.170160516633716,
          -3.222388868967012,
          -7,
          -7,
          -7,
          -7,
          -3.5602653978627146,
          -7,
          -7,
          -3.2597133053907306,
          -7,
          -7,
          -3.237594000799247,
          -2.3552599055273786,
          -7,
          -7,
          -7,
          -1.8005361037952268,
          -7,
          -2.6775951034242316,
          -2.1259027647109168,
          -4.130341810910945,
          -7,
          -7,
          -7,
          -2.8887409606828927,
          -2.5839540689101295,
          -2.4430393548678095,
          -2.5886637957802043,
          -3.1994351876202076,
          -2.538762188781348,
          -2.8578147779710066,
          -3.022290870952613,
          -2.1525067474461976,
          -2.140443576569526,
          -1.8010393369976914,
          -3.4727564493172123,
          -3.5203525040833177,
          -3.6073477767684134,
          -3.5160062303860475,
          -3.6326597132939136,
          -7,
          -3.378216149749878,
          -3.089591144693822,
          -3.598790506763115,
          -7,
          -2.9231403560252005,
          -3.58363637568586,
          -2.036365534687841,
          -7,
          -3.298872915814105,
          -7,
          -3.090845652103492,
          -2.577626946713033,
          -2.80540375486411,
          -3.219846386024361,
          -2.858612380549469,
          -2.859338479128867,
          -2.6123021101568566,
          -2.77232170672292,
          -3.2121876044039577,
          -4.023818757084455,
          -2.6562724774894497,
          -3.4823017672234426,
          -7,
          -7,
          -2.875692505482342,
          -2.8271753482986925,
          -2.486366067362747,
          -2.949145952419944,
          -2.808632904835291,
          -3.517591730711908,
          -7,
          -7,
          -2.296376488208818,
          -7,
          -2.807535028068853,
          -2.983432966630845,
          -3.0808668935052506,
          -3.9180827846421873,
          -2.577588881425179,
          -3.8472998710539152,
          -7,
          -2.6634033275146614,
          -3.1201797515823153,
          -2.5317343092765503,
          -7,
          -2.3431188516609445,
          -2.90687353472207,
          -2.6323849760606866,
          -2.2613894299129877,
          -2.7797629407578768,
          -2.8254261177678233,
          -3.189069009399324,
          -7,
          -2.927027994490033,
          -2.562689299428688,
          -3.075303590984423,
          -2.8634418286137087,
          -2.249543271982791,
          -2.827110687466011,
          -2.473544089440609,
          -7,
          -3.4838724542226736,
          -3.923803369532193,
          -4.790482205963791,
          -7,
          -7,
          -4.432833051680936,
          -3.719082573901486,
          -7,
          -3.7152196541314884,
          -3.572417938449931,
          -7,
          -7,
          -4.3564656684754,
          -4.137654721417751,
          -5.008872584806385,
          -3.910656415587733,
          -4.3787793310606915,
          -4.696749435201623,
          -4.634729108081331,
          -3.8237349883987313,
          -7,
          -7,
          -4.278539038134198,
          -7,
          -3.7184779627626545,
          -3.1051410195295324,
          -7,
          -4.204987704187151,
          -4.25324105377265,
          -7,
          -3.4702144212290773,
          -7,
          -4.098037713285091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.013286746786349,
          -3.9510702531688118,
          -3.242034289782914,
          -2.248557074060829,
          -3.915320673475215,
          -2.9072211855036825,
          -3.0107238653917734,
          -3.374198257929083,
          -3.1471851128693182,
          -3.2064660628531048,
          -3.216118577374879,
          -2.559976996012837,
          -3.2779146790481093,
          -4.179020086986456,
          -3.469320263337147,
          -2.507509902999208,
          -7,
          -2.931268942740345,
          -2.786751422145561,
          -7,
          -3.643304596306801,
          -4.418035992299948,
          -3.858416877723488,
          -7,
          -2.9725921035590557,
          -3.221550244716166,
          -4.366169013886152,
          -3.216297886630392,
          -2.167789779159089,
          -3.227243781503063,
          -2.9022186525648697,
          -7,
          -4.932631015748351,
          -3.6844862921887342,
          -3.9795711358729324,
          -7,
          -3.526892871450658,
          -3.325310371711061,
          -3.6245639690895306,
          -3.2163638637641165,
          -3.1008987303125495,
          -3.1737203067447206,
          -3.1712423051291543,
          -3.1237863286153718,
          -1.7192323137649976,
          -2.729246771628713,
          -3.376773425950115,
          -3.3145693943004555,
          -3.5964620508094636,
          -7,
          -3.811909980420099,
          -3.3791644574345927,
          -4.04766419460156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7777310331453406,
          -1.6122210560164774,
          -1.7086080382628424,
          -7,
          -3.1740598077250253,
          -2.54926988029305,
          -3.222282827095675,
          -2.193700204113876,
          -2.0585344760699806,
          -2.0784784602759463,
          -7,
          -2.213975951766273,
          -1.5386094401174262,
          -2.315105585855791,
          -7,
          -3.1609866359213985,
          -3.1916372870312952,
          -2.4065401804339555,
          -7,
          -7,
          -2.1486026548060932,
          -7,
          -2.7819945894654037,
          -2.295267138296195,
          -7,
          -7,
          -2.493509055455922,
          -7,
          -7,
          -4.021757645983594,
          -2.446183662771694,
          -3.4074928794601025,
          -7,
          -3.7275412570285567,
          -1.3411158971195234,
          -3.5769169559652068,
          -1.4839205244275175,
          -7,
          -1.1488531225305814,
          -1.61783606882438,
          -7,
          -7,
          -2.9187291212991187,
          -1.1899783738265433,
          -2.963964813484758,
          -3.0632082200712114,
          -2.7878651281530042,
          -1.6921741159174137,
          -3.5518158223510157,
          -1.3539385356851514,
          -2.1277884718276874,
          -3.7836415902165057,
          -7,
          -1.3738778291825056,
          -1.2058757236399429,
          -7,
          -2.9631316941464156,
          -7,
          -7,
          -3.7179200258369938,
          -2.0012256229266927,
          -1.8834011507076147,
          -1.2448576899725807,
          -3.1132746924643504,
          -2.2956194529830842,
          -7,
          -3.98344585734134,
          -2.538824988937904,
          -2.7238659644435037,
          -7,
          -1.54669807392241,
          -1.5777379287652658,
          -3.3073890556533043,
          -2.877083256650651,
          -1.3505172146992581,
          -1.9970167545733903,
          -2.048889285630866,
          -2.9093777108309906,
          -2.2630488002706897,
          -2.6580909304879183,
          -2.1908807431004385,
          -2.1799713887242653,
          -2.0649877782305905,
          -3.554004321011903,
          -3.6093809442507068,
          -3.5928426831311002,
          -7,
          -7,
          -4.406028944963615,
          -7,
          -1.709391119989562,
          -3.4319263739116437,
          -2.684426418406065,
          -2.7153532715849886,
          -3.152466715105975,
          -2.8858110689434704,
          -2.811879538862458,
          -1.4843429861832331,
          -7,
          -1.5629767514931665,
          -7,
          -1.308824261316819,
          -1.8731473888125145,
          -3.8705209500127644,
          -3.4834446480985353,
          -1.6382812116898668,
          -2.0596666697498907,
          -2.0612945649523997,
          -2.35674271207154,
          -7,
          -7,
          -3.004894321731049,
          -7,
          -7,
          -7,
          -3.1712387562612694,
          -7,
          -1.8351537728060792,
          -2.4186836489220545,
          -7,
          -7,
          -3.226084115975824,
          -3.5615783683009608,
          -3.541079767776629,
          -2.2985911112975694,
          -3.147573276552419,
          -2.6415024392919446,
          -3.922050402167174,
          -3.850278552518037,
          -3.076154791417437,
          -7,
          -3.0779489985060278,
          -2.9383946223434494,
          -7,
          -2.745650634785171,
          -2.5581083016305497,
          -2.5121262549907444,
          -2.625018313136747,
          -7,
          -2.325395921692999,
          -2.8944545273697826,
          -2.9021389272114826,
          -2.9045352278661247,
          -7,
          -2.505088284381042,
          -2.7776339251504623,
          -3.5742628297070267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3329431601256925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8861521819707967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9017488436793126,
          -2.425968732272281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7528670703486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062205808819712,
          -7,
          -3.7315081835960253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9409197134280625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4993662825855276,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.875108743659514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100025730107863,
          -7,
          -4.369271532621027,
          -4.31863193011725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.064753658075849,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.435653285326419,
          -4.961022214372552,
          -4.67728750108277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335257256434532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.396464377702049,
          -7,
          -7,
          -7,
          -7,
          -2.1918573243828754,
          -7,
          -7,
          -7,
          -3.750431248660202,
          -7,
          -1.9363880603822547,
          -3.1604685311190375,
          -7,
          -7,
          -3.996336518095784,
          -7,
          -7,
          -7,
          -4.792244564836703,
          -7,
          -7,
          -3.3807537708039,
          -7,
          -2.220108088040055,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.427323786357247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.184577874932025,
          -2.1903316981702914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.447158031342219,
          -3.5745521086639047,
          -7,
          -4.3923647071668075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3384564936046046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.626843159658239,
          -7,
          -7,
          -3.8204860776625775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.449092531119419,
          -2.688864568054792,
          -7,
          -7,
          -4.35281901669987,
          -3.399846712712922,
          -7,
          -7,
          -4.524733559186517,
          -7,
          -7,
          -4.541953474458237,
          -3.3236645356081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.689628467489746,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8221680793680175,
          -3.2143138974243994,
          -7,
          -2.7788744720027396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.095587746918743,
          -7,
          -7,
          -7,
          -7,
          -3.1835545336188615,
          -7,
          -7,
          -4.016197353512439,
          -7,
          -7,
          -7,
          -7,
          -3.0382226383687185,
          -7,
          -7,
          -7,
          -7,
          -3.1398790864012365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9986515959983735,
          -3.6986658917468582,
          -3.7059064557003114,
          -4.051654084113286,
          -2.590507462008583,
          -7,
          -4.019199401055288,
          -3.121923860479097,
          -3.5656412436434057,
          -7,
          -7,
          -3.225343748174189,
          -2.787511076846687,
          -3.2564772062416765,
          -7,
          -7,
          -7,
          -3.523659772633833,
          -2.716448545602954,
          -3.3912376459396496,
          -7,
          -2.895146189375992,
          -3.096454474606331,
          -7,
          -7,
          -7,
          -4.065093989357153,
          -7,
          -4.015359755409214,
          -3.2557023906723335,
          -7,
          -7,
          -7,
          -7,
          -3.7611005389581424,
          -7,
          -3.6226629418839154,
          -7,
          -3.3731695589037214,
          -3.314667608117513,
          -3.3247937807091326,
          -4.006722692201684,
          -4.017909395896689,
          -3.0670708560453703,
          -3.7331571251294715,
          -2.597287647853614,
          -7,
          -4.029099566823543,
          -4.104657791008797,
          -7,
          -3.207095540419218,
          -2.6878710752582675,
          -3.789404420511141,
          -2.6745384205386324,
          -3.498255401782173,
          -7,
          -4.024526714387152,
          -3.612501296864678,
          -7,
          -4.029505525426577,
          -7,
          -7,
          -7,
          -2.642563437104388,
          -2.812348521866597,
          -7,
          -7,
          -3.0391977292952763,
          -7,
          -3.5721452356121848,
          -4.140696552546415,
          -4.0042783722001625,
          -7,
          -3.3161284299147518,
          -7,
          -3.5947239464097467,
          -7,
          -7,
          -2.566872823826931,
          -4.064270752974006,
          -7,
          -7,
          -3.613030945877725,
          -4.022799404511688,
          -3.624797578960761,
          -3.035162808562191,
          -7,
          -3.7492337269818146,
          -2.8819088886180406,
          -3.6363541438170746,
          -3.096258082214778,
          -7,
          -7,
          -4.0858968111315885,
          -4.053846426852253,
          -3.7760834366397793,
          -3.426901463081663,
          -7,
          -3.227298926507505,
          -7,
          -7,
          -7,
          -3.374037684237919,
          -7,
          -3.2308866447298628,
          -3.564902672529205,
          -2.9349400959933765,
          -2.677150521273433,
          -7,
          -4.010257542998302,
          -7,
          -4.040681439373358,
          -2.904560992080643,
          -7,
          -7,
          -3.5907675519657363,
          -7,
          -3.663355362110471,
          -7,
          -3.7859168036624746,
          -3.1980545731753773,
          -7,
          -3.915320673475215,
          -7,
          -3.7328519400012916,
          -3.7342796444928203,
          -4.090716448481099,
          -4.132739838260885,
          -7,
          -4.022387125686438,
          -2.1165090213190982,
          -3.0965276656064398,
          -7,
          -7,
          -3.0246180624451555,
          -7,
          -7,
          -3.9990870226258886,
          -3.703162360595733,
          -7,
          -2.9626275880950166,
          -2.9961028694112493,
          -3.014045480587391,
          -2.333813535941105,
          -7,
          -3.1534083167071616,
          -7,
          -7,
          -4.038023740045158,
          -3.718231727911598,
          -3.2100240738042323,
          -7,
          -4.010893313104381,
          -7,
          -3.0899443413280387,
          -7,
          -7,
          -4.058615797010562,
          -3.565217949843888,
          -7,
          -4.043165720207454,
          -4.049799277918987,
          -7,
          -3.7748452995958517,
          -7,
          -3.3288890398395607,
          -7,
          -3.71637901287223,
          -2.982956717529521,
          -3.7125655278733083,
          -7,
          -7,
          -7,
          -4.011739561388318,
          -7,
          -7,
          -3.5538830266438746,
          -7,
          -3.4561989646592375,
          -7,
          -3.470675044798936,
          -2.8803510158338645,
          -7,
          -3.3766377783551063,
          -3.280968396871078,
          -4.042772337497674,
          -4.075181854618692,
          -4.047352760753935,
          -3.755188585608325,
          -7,
          -7,
          -4.140004950619449,
          -7,
          -7,
          -7,
          -4.266443381296273,
          -7,
          -4.197459753794603,
          -7,
          -2.2576170469974515,
          -7,
          -2.9271706808539353,
          -7,
          -3.0929154916889843,
          -3.4090027034017725,
          -4.017325554561722,
          -3.3993852495462185,
          -3.769340394703022,
          -7,
          -3.076640443670342,
          -3.394249573718604,
          -2.878156073810623,
          -7,
          -3.9983465373963645,
          -4.011528153857539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.645520514905874,
          -3.5231934946968355,
          -3.3213536036656532,
          -3.356923549057265,
          -7,
          -3.5358424451061152,
          -3.71717102683231,
          -3.3364197048626583,
          -7,
          -4.0042783722001625,
          -7,
          -4.050147658020303,
          -7,
          -7,
          -7,
          -7,
          -4.0090682761922185,
          -7,
          -7,
          -4.052155067199565,
          -2.8338785384191922,
          -7,
          -7,
          -7,
          -4.008387230114159,
          -3.5464604029452773,
          -3.242417184417719,
          -7,
          -4.023992804606471,
          -3.3781555491104296,
          -7,
          -3.1505610819947703,
          -3.5068566550233227,
          -7,
          -7,
          -7,
          -2.137202378501745,
          -3.4613859617950706,
          -2.0569250609496317,
          -4.024854948305018,
          -3.3865917002612993,
          -7,
          -7,
          -4.010935664704385,
          -2.905278555134687,
          -3.33139837151611,
          -2.5048222618840112,
          -3.4688197748230705,
          -3.7385691715335407,
          -3.1997551772534747,
          -7,
          -7,
          -7,
          -3.7921114090871684,
          -7,
          -7,
          -4.0104271727170495,
          -7,
          -7,
          -3.007864112074002,
          -7,
          -3.4662372137034914,
          -3.300812794118117,
          -3.4350875123045923,
          -3.7870706389786783,
          -3.2007723524351035,
          -3.139609254468416,
          -3.3355080472724206,
          -7,
          -3.9828137621318627,
          -7,
          -7,
          -4.126748141560192,
          -7,
          -3.3138203683833587,
          -3.3259943001703647,
          -4.193986763085695,
          -7,
          -3.3309883935203723,
          -2.7702995911963613,
          -3.5694566075340854,
          -2.885438325132807,
          -7,
          -7,
          -7,
          -3.5799264331521883,
          -3.2900982395923446,
          -7,
          -7,
          -7,
          -7,
          -3.7640639936931715,
          -7,
          -7,
          -7,
          -4.0330616925381735,
          -2.856156278179049,
          -4.0231289460104955,
          -3.4957790855584014,
          -3.2995072987004876,
          -3.2508882480862953,
          -7,
          -3.0195316845312554,
          -3.3079618675777316,
          -3.712593587604018,
          -7,
          -7,
          -7,
          -3.6353496846184767,
          -3.414722721158878,
          -4.169733197942518,
          -4.065355601289965,
          -7,
          -7,
          -3.0374627178215423,
          -7,
          -7,
          -4.024813932629311,
          -4.144044637110949,
          -7,
          -2.7518904746809025,
          -7,
          -3.998956440470486,
          -2.989387516858672,
          -2.9436149885817446,
          -7,
          -2.9604390644756187,
          -4.485096501355642,
          -3.2643980119745235,
          -3.2315715255284156,
          -3.731069199110241,
          -1.9464574637475716,
          -2.5861508162245195,
          -2.1946612311654072,
          -4.472053991449704,
          -4.013139298635354,
          -4.083092338711451,
          -1.9833146731753937,
          -4.188197016558756,
          -3.639256561892579,
          -2.425760609046802,
          -7,
          -3.1760478274358737,
          -7,
          -4.149213979120526,
          -3.7527703904636067,
          -3.1068405824589407,
          -2.984507745681445,
          -4.489874142210878,
          -4.263438796505723,
          -3.6169129139475986,
          -7,
          -2.62445926333515,
          -2.962660686276774,
          -3.911180445710889,
          -4.184137565214032,
          -4.098522590941953,
          -7,
          -4.3348155125062116,
          -4.23149507644823,
          -3.4640192523981677,
          -2.861815439410074,
          -2.571734705001743,
          -3.727907081406697,
          -3.2877554109495852,
          -2.9593559844984885,
          -3.234997879686031,
          -2.9702228629562915,
          -3.374536856119436,
          -3.769266522533784,
          -3.0677833511916037,
          -2.9051885225908243,
          -2.7572579602870437,
          -2.5298116675310487,
          -2.971189916194264,
          -3.115042880588522,
          -4.046026669702541,
          -2.9976696969261343,
          -3.605601299868819,
          -7,
          -3.4182460340536993,
          -2.987653123403257,
          -3.3051977728112814,
          -7,
          -2.69966350973298,
          -2.943890048248473,
          -3.9661937108212517,
          -7,
          -3.680667831562386,
          -4.013090138125056,
          -2.7670903566949376,
          -3.7134905430939424,
          -2.512324146310632,
          -2.071120574370989,
          -3.1841902253587353,
          -4.000520840936185,
          -2.9919545302079595,
          -3.240370929872415,
          -2.71726052749008,
          -3.6536626598692936,
          -2.308378061066681,
          -4.201123897207379,
          -1.722413237979192,
          -3.2422604784110143,
          -7,
          -2.6683231839204535,
          -2.833806182171555,
          -3.5157745272157848,
          -3.2479564089581063,
          -4.014142361545006,
          -1.9917548970447791,
          -3.284074822337217,
          -3.261575091606645,
          -7,
          -7,
          -7,
          -7,
          -3.865370512911087,
          -1.6888866193218477,
          -2.7271714243553484,
          -2.016569101433193,
          -3.103376055257288,
          -2.06779903132787,
          -1.0520053944772132,
          -2.151845939100076,
          -3.215713079777089,
          -3.104359057505805,
          -1.3172311355441193,
          -2.7702453944880805,
          -1.9256484258513418,
          -2.1741567592784814,
          -2.4039570705665243,
          -3.366945663852573,
          -2.617133832301317,
          -1.5734794322253864,
          -2.2644760667733554,
          -3.184731979296402,
          -3.172269243539273,
          -2.4972964389519117,
          -3.5419119092113363,
          -2.544605409694115,
          -3.35430056234536,
          -2.493509055455922,
          -3.996336518095784,
          -7,
          -3.5245259366263757,
          -3.528445316413632,
          -2.6350386908415664,
          -2.1758151157660324,
          -2.351058713979487,
          -3.696531119969607,
          -2.744897231384195,
          -2.310258703941368,
          -2.7977968951941996,
          -2.5115667556967685,
          -7,
          -2.597068045770463,
          -1.8587888459766797,
          -7,
          -2.7259975546381723,
          -2.9612750268046986,
          -2.5108208903713702,
          -2.3454962568631608,
          -2.974930168855565,
          -2.2327225144353644,
          -2.600771282720914,
          -3.117188407119984,
          -2.4851072570571047,
          -2.404560059092356,
          -2.717878448652346,
          -3.097213912792869,
          -2.4023794041326516,
          -2.535875482088115,
          -3.760573253944394,
          -1.538415794607338,
          -7,
          -3.2277153514917414,
          -2.565571525942708,
          -2.950814047122843,
          -2.092794451687219,
          -2.4565778668777694,
          -2.2976135389667594,
          -3.0452838513951357,
          -3.5425764762605296,
          -3.3154717746546822,
          -4.017242084547646,
          -1.9979666349340235,
          -2.7562979384939723,
          -2.4099331233312946,
          -2.2457067039669436,
          -2.3652489456323726,
          -7,
          -2.262255606244936,
          -2.1754932718147155,
          -2.2611663839218252,
          -3.2936939507457654,
          -1.9011018868675789,
          -2.8373779732534894,
          -3.4752643006050032,
          -2.3910955706122814,
          -0.9610558337573624,
          -2.199125362687427,
          -1.7087205168985131,
          -2.43003472172494,
          -4.001041057986094,
          -3.9976047874604546,
          -2.5078693588926737,
          -3.1378110969861503,
          -2.770770215901832,
          -2.140593739321926,
          -1.4880132232611647,
          -2.6318194238085884,
          -1.2116210789649458,
          -1.4335810512738152,
          -2.4049580494240805,
          -2.337459261290656,
          -4.018242667457909,
          -2.6355610715693056,
          -7,
          -2.468158711741699,
          -2.018224820106199,
          -3.114883810844791,
          -7,
          -2.6359088626932117,
          -3.731467887193129,
          -1.2212825246575263,
          -3.1215188091346144,
          -3.53571596998551,
          -7,
          -2.8835740871078883,
          -3.3043181544900566,
          -3.097560966637652,
          -2.9258275746247424,
          -1.8658932424311052,
          -3.2034991183873496,
          -3.583576585633949,
          -3.714329759745233,
          -2.3346631405199663,
          -3.307410454213674,
          -3.234137489450963,
          -4.024198232206868,
          -2.567824277243263,
          -2.7972675408307164,
          -2.582572707393813,
          -2.158204767567675,
          -2.650935735392299,
          -3.1045181489741487,
          -2.67735804958144,
          -3.6977087205918364,
          -2.9061329346974785,
          -2.870069317834201,
          -3.69539410829111,
          -2.269812738261015,
          -3.5464604029452773,
          -3.5449770427414777,
          -1.766266186167217,
          -3.131297796597623,
          -2.4761792624817036,
          -3.400796934733158,
          -3.704407927386841,
          -2.52363499968979,
          -4.00060758706289,
          -2.520639467711374,
          -2.9318488804227223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.425941588018896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8574531170352664,
          -7,
          -7,
          -7,
          -5.270640411608736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.692009236142928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.151009576636842,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7658175153099185,
          -7,
          -3.7415455167762093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.181262515397696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.038386660938553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.060320028688285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.709236030394002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.432231485690214,
          -7,
          -7,
          -3.4356623863120097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.527239246803147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.592742859342505,
          -4.469195886353333,
          -7,
          -7,
          -7,
          -3.766710207262259,
          -7,
          -7,
          -4.879021291480248,
          -7,
          -7,
          -7,
          -7,
          -4.695704895512169,
          -3.9765104594534497,
          -7,
          -7,
          -4.14317619866439,
          -7,
          -7,
          -7,
          -5.387551766625729,
          -7,
          -4.529032325426976,
          -4.09684052033139,
          -7,
          -4.655992731385616,
          -7,
          -7,
          -4.29542781019911,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.764187344667675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.437369992197025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.689553025611917,
          -5.487627565303852,
          -5.007256038768518,
          -7,
          -7,
          -7,
          -4.954401721562251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.951353711427746,
          -4.781094457259969,
          -7,
          -7,
          -7,
          -4.294879380924228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.34709767882886,
          -2.7715874808812555,
          -7,
          -4.304458212993763,
          -7,
          -7,
          -7,
          -7,
          -2.2174839442139063,
          -7,
          -3.988365695942476,
          -7,
          -7,
          -7,
          -3.2232362731029975,
          -3.8605775512444156,
          -3.3420276880874717,
          -7,
          -7,
          -3.7281913985899466,
          -7,
          -3.591287265058499,
          -7,
          -2.5628873812938795,
          -2.978864984347657,
          -4.118760590442381,
          -2.7907541645992353,
          -2.8626282269612133,
          -1.7219937073239866,
          -7,
          -7,
          -2.3729120029701067,
          -2.4403842548328845,
          -7,
          -7,
          -7,
          -3.5245259366263757,
          -7,
          -7,
          -3.552225622971311,
          -4.248582743583236,
          -4.008010777850515,
          -7,
          -2.7026028413404273,
          -7,
          -2.2013971243204513,
          -7,
          -7,
          -7,
          -3.943914757063198,
          -7,
          -7,
          -7,
          -7,
          -2.6578204560156973,
          -7,
          -2.393867559040913,
          -7,
          -7,
          -7,
          -7,
          -2.436843893426568,
          -2.44870631990508,
          -7,
          -7,
          -7,
          -3.8374621714859947,
          -1.9084850188786497,
          -2.305351369446624,
          -3.8829227906025987,
          -7,
          -4.045780507558271,
          -7,
          -2.522918224802378,
          -7,
          -7,
          -3.8334658601706924,
          -7,
          -2.607071878521178,
          -2.144574207609616,
          -2.9802306913910317,
          -7,
          -2.6183967876034884,
          -7,
          -7,
          -4.628133387541083,
          -3.591954555046735,
          -7,
          -3.823235062261409,
          -2.7265642161622448,
          -7,
          -7,
          -3.7216045442801375,
          -2.5224442335063197,
          -2.397592434038117,
          -3.0433622780211294,
          -7,
          -7,
          -4.35524073941683,
          -2.2120210485124043,
          -7,
          -3.1132746924643504,
          -7,
          -7,
          -3.3085948999942936,
          -4.2424668862353405,
          -2.9379189026477803,
          -7,
          -2.2323607123535703,
          -7,
          -2.3180633349627615,
          -3.6195107208384987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.186320523991601,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9777236052888478,
          -1.9912260756924949,
          -3.4840861993579386,
          -2.1577588860468637,
          -7,
          -7,
          -2.8615344108590377,
          -7,
          -7,
          -7,
          -2.8228216453031045,
          -7,
          -7,
          -4.099956734241182,
          -2.595811042050961,
          -3.329499575762843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495127881242933,
          -7,
          -7,
          -3.1927068066128585,
          -2.0818871394235496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.514036637523143,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.204366917427087,
          -7,
          -7,
          -7,
          -7,
          -3.1671024172716122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7342996631372682,
          -7,
          -7,
          -2.751086554886017,
          -4.425620381490889,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.865240225749968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.839983696540098,
          -7,
          -7,
          -7,
          -7,
          -3.0273496077747564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.430725257445344,
          -7,
          -3.898231384513097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.554125581513013,
          -4.14789264483285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.620864475265121,
          -7,
          -7,
          -4.124996276815198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8135809885681917,
          -7,
          -7,
          -7,
          -7,
          -3.0519239160461065,
          -7,
          -7,
          -4.025919998502018,
          -3.523876475638131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8451910931478994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6205524447294355,
          -7,
          -3.692729447141836,
          -4.151484768302879,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6949998327470954,
          -7,
          -7,
          -7,
          -2.084633313128044,
          -2.3944516808262164,
          -2.4099331233312946,
          -2.0360963453482763,
          -7,
          -7,
          -4.0244446171313495,
          -3.4185498620497423,
          -7,
          -2.2373947775919705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8706964579892498,
          -7,
          -7,
          -3.7116538764683042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.961842790404378,
          -7,
          -7,
          -7,
          -7,
          -3.67183404403012,
          -2.3027637084729817,
          -2.6235312082798568,
          -2.725328138344716,
          -3.141763230275788,
          -2.649918718735419,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6540802353065707,
          -7,
          -7,
          -7,
          -4.33976934376873,
          -7,
          -3.769192637796977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8290624310732704,
          -2.8467493518208467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.792391689498254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9053100621160857,
          -7,
          -2.896428947456993,
          -5.235748904808164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.900506160093372,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8076703012304836,
          -2.741939077729199,
          -7,
          -7,
          -3.8355003278673188,
          -7,
          -2.929482787854236,
          -7,
          -4.010969543011004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6536465912546623,
          -3.2279723558282107,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.680901812206373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0576661039098294,
          -7,
          -7,
          -7,
          -3.6066321228503484,
          -4.532787375320257,
          -7,
          -7,
          -4.416045232599017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.295567099962479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8992594955985687,
          -7,
          -7,
          -3.8154891981186587,
          -7,
          -7,
          -7,
          -7,
          -4.3705685987670515,
          -7,
          -7,
          -4.034376319641359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9775521394123414,
          -7,
          -7,
          -3.9675271761766204,
          -7,
          -7,
          -7,
          -4.785642983678979,
          -7,
          -4.22914407968993,
          -4.099991233544684,
          -7,
          -7,
          -7,
          -7,
          -4.773245067425772,
          -4.154089069014421,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.180441298194719,
          -4.1353765089832155,
          -7,
          -4.367905431054023,
          -4.764527312924223,
          -3.5766868052009952,
          -3.6419695977020594,
          -7,
          -7,
          -4.633051635913091,
          -3.9863237770507656,
          -7,
          -7,
          -4.962051905293788,
          -4.3782161497498775,
          -3.1670217957902564,
          -7,
          -7,
          -7,
          -3.783832143384441,
          -7,
          -7,
          -7,
          -4.990995572563205,
          -5.186723312657822,
          -5.70631060041941,
          -7,
          -7,
          -7,
          -4.653800825418502,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.465754519833878,
          -4.654253571761437,
          -7,
          -5.347275359089101,
          -7,
          -7,
          -4.606488850442648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.863679667875898,
          -3.328583449714202,
          -3.276260695356544,
          -2.409087369447835,
          -2.768144584737799,
          -7,
          -2.512264990600886,
          -3.270911639410481,
          -7,
          -3.735519058815171,
          -7,
          -4.194146492730399,
          -3.5986810989071634,
          -2.9159272116971158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7668588110214176,
          -7,
          -7,
          -3.2211533219547053,
          -7,
          -7,
          -3.528445316413632,
          -7,
          -7,
          -4.117679981058723,
          -3.9800138658866406,
          -3.707541789910018,
          -7,
          -7,
          -3.327205626925103,
          -7,
          -3.441852175773292,
          -7,
          -3.1693804953119495,
          -2.2044684736900795,
          -7,
          -2.696356388733332,
          -7,
          -7,
          -7,
          -2.8773713458697743,
          -2.596871878604247,
          -7,
          -7,
          -2.9362623419034777,
          -3.502108338302493,
          -3.7134625412575164,
          -7,
          -3.52270499273475,
          -7,
          -7,
          -3.4421974643102136,
          -2.8767949762007006,
          -7,
          -3.5869247081448203,
          -1.8712585060577351,
          -2.982551193789339,
          -3.1362448017461424,
          -7,
          -2.8651039746411278,
          -7,
          -7,
          -7,
          -3.062506775208683,
          -7,
          -2.8239087409443187,
          -3.491081413423187,
          -3.127428777851599,
          -7,
          -7,
          -3.3734433001016995,
          -3.300704152596124,
          -7,
          -3.70022763564825,
          -3.4413808849165113,
          -7,
          -7,
          -3.725339815909737,
          -3.64777405026883,
          -7,
          -7,
          -7,
          -2.4712917110589387,
          -7,
          -2.391255974854882,
          -3.0013009330204183,
          -2.7293268096468606,
          -3.485889125183105,
          -7,
          -4.156821635591626,
          -4.067480023931482,
          -3.6466977312993345,
          -7,
          -7,
          -7,
          -7,
          -3.628899564420607,
          -3.651762447380111,
          -7,
          -2.510545010206612,
          -7,
          -7,
          -3.1131866342143066,
          -2.976808337338066,
          -7,
          -7,
          -7,
          -7,
          -2.57978359661681,
          -2.2086204838826013,
          -3.791690649020118,
          -3.1894903136993675,
          -3.268343913951065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8019864946643342,
          -7,
          -3.6398847419163043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019213251277154,
          -7,
          -7,
          -7,
          -3.4055171069763763,
          -7,
          -7,
          -7,
          -3.3234583668494677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.59315309937685,
          -7,
          -4.5933193025713,
          -7,
          -4.607143935528615,
          -3.7006388276638265,
          -7,
          -7,
          -2.638741521002334,
          -7,
          -7,
          -7,
          -4.133794300604513,
          -3.418135498425232,
          -7,
          -3.6956567599361905,
          -7,
          -7,
          -4.593618308129535,
          -2.955149043650492,
          -3.6668360970433427,
          -7,
          -3.294456205407271,
          -3.003290482940511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8774881971522934,
          -7,
          -7,
          -7,
          -7,
          -3.495907076467104,
          -4.294741706336959,
          -7,
          -7,
          -4.613027417022225,
          -3.897923849397611,
          -3.308571772551367,
          -7,
          -7,
          -4.310629596987806,
          -4.602374740744461,
          -3.4302867467096143,
          -7,
          -7,
          -7,
          -4.602830180692315,
          -3.762196103597941,
          -3.123357926443381,
          -4.618309641123433,
          -3.9709044981537835,
          -4.175705047841342,
          -7,
          -7,
          -4.618089954403986,
          -7,
          -3.278437833555403,
          -3.322077772222365,
          -7,
          -4.599173217352912,
          -3.212279823265849,
          -3.234342035215775,
          -7,
          -7,
          -3.9165486933741898,
          -7,
          -7,
          -3.6794077057902967,
          -4.59446989873833,
          -4.617325415780569,
          -3.3436156038671037,
          -7,
          -4.135736743509474,
          -7,
          -7,
          -3.62368148968865,
          -4.133528263767173,
          -7,
          -7,
          -4.618246884828072,
          -7,
          -7,
          -4.324693913861775,
          -7,
          -3.527361337086945,
          -3.0112411831706627,
          -3.8470376869548146,
          -3.788822149804023,
          -7,
          -7,
          -7,
          -4.607755172446473,
          -7,
          -4.629185257633928,
          -7,
          -4.422097163131711,
          -4.59990489536868,
          -7,
          -7,
          -4.682605310982301,
          -7,
          -7,
          -4.303476853603883,
          -7,
          -4.0185687482376276,
          -7,
          -7,
          -7,
          -7,
          -2.7258701213445855,
          -7,
          -7,
          -4.310714548718119,
          -3.9267436234751827,
          -4.156619811816865,
          -7,
          -3.775173385424787,
          -3.06571631252638,
          -3.7531341982986697,
          -3.81439030710247,
          -4.598856138249309,
          -2.916707569686794,
          -4.602678420438509,
          -7,
          -7,
          -4.594370448312677,
          -4.599195076346368,
          -2.837833439531023,
          -4.62029224791984,
          -7,
          -7,
          -2.5184717118179676,
          -7,
          -7,
          -4.29208985543996,
          -7,
          -7,
          -3.6938851650535165,
          -3.945409493427272,
          -3.7699678013294426,
          -3.296375963121168,
          -7,
          -2.392715859055194,
          -7,
          -7,
          -4.60339339779644,
          -3.8548176958191123,
          -4.65748610775906,
          -7,
          -7,
          -7,
          -3.690396931704288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604798253272669,
          -4.606628541616139,
          -7,
          -7,
          -7,
          -4.665412118002188,
          -7,
          -7,
          -2.9192578788432386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.827959748307129,
          -4.596366143491465,
          -3.0623337450205455,
          -7,
          -4.342353583021706,
          -2.9589360561417233,
          -4.123470513709713,
          -3.596896850256032,
          -3.7840668171930565,
          -4.303638768856199,
          -4.136657161873879,
          -4.605951157564873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.377260706054062,
          -7,
          -4.78335321959462,
          -4.595055089759304,
          -2.9791014989115605,
          -7,
          -4.346949230796109,
          -7,
          -4.305017995761173,
          -7,
          -7,
          -3.604500960302884,
          -4.135291704475752,
          -7,
          -4.614433158550452,
          -2.2259461349748757,
          -2.8895580718964715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.597300193190778,
          -7,
          -4.297235101842306,
          -3.4948036944645287,
          -4.628971005345094,
          -2.9465355253959706,
          -1.9941292181677637,
          -7,
          -7,
          -7,
          -3.561155612840848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5957056026935375,
          -7,
          -7,
          -7,
          -2.234434536184744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.598823323746008,
          -7,
          -4.599621106961551,
          -3.0046812200872597,
          -7,
          -3.2704847380490047,
          -3.9568500834811964,
          -4.607637281414817,
          -7,
          -7,
          -2.9467601245381916,
          -3.911466567282492,
          -2.3664980284404695,
          -7,
          -2.356750609732126,
          -4.60094024073866,
          -7,
          -7,
          -3.0834399077661003,
          -7,
          -3.299416493405678,
          -4.165620175981658,
          -7,
          -4.605391249889289,
          -7,
          -7,
          -7,
          -4.619114209667246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.611903784101518,
          -3.8288715612054722,
          -4.603220178008266,
          -7,
          -7,
          -2.753868319655627,
          -7,
          -7,
          -2.6314437690131722,
          -4.116917527602884,
          -7,
          -4.629379013907319,
          -4.006626466242401,
          -3.637507923286498,
          -7,
          -3.1887151855781966,
          -4.308137378638039,
          -4.624024124647861,
          -3.709873905727599,
          -2.5894363731585797,
          -4.664162294761991,
          -7,
          -7,
          -7,
          -4.0454501184690255,
          -4.632173744035556,
          -7,
          -7,
          -4.314899024273395,
          -7,
          -4.6109474687960565,
          -7,
          -7,
          -7,
          -4.602049133830196,
          -4.6323256678521805,
          -4.599391757793756,
          -3.596707029681446,
          -3.4574621189595107,
          -2.965275059204632,
          -4.599490065125433,
          -4.652497752773742,
          -1.8859182451512673,
          -3.6958123304324237,
          -7,
          -7,
          -7,
          -4.147820549940331,
          -2.7051928669597114,
          -4.041234731171431,
          -7,
          -7,
          -7,
          -4.3140463825880415,
          -7,
          -7,
          -7,
          -3.4041190272580537,
          -7,
          -3.5932122011334005,
          -7,
          -7,
          -2.0441470547649265,
          -2.413263990604278,
          -3.457329219483519,
          -2.786264544872704,
          -3.3119271590844845,
          -1.8590974860992797,
          -2.983175072037813,
          -3.4586322542136774,
          -2.247582651754639,
          -2.773108939489977,
          -2.6153370597431524,
          -2.854809451525546,
          -2.805697049964797,
          -2.8560078656920007,
          -1.9712042822210618,
          -3.1344958558346736,
          -2.9598326973961973,
          -1.8935198289459578,
          -2.7483025782179413,
          -2.612172884441745,
          -3.929020213693863,
          -2.9498161951184456,
          -2.3162754078854086,
          -2.3037087626829402,
          -2.932203091884407,
          -4.000665408189577,
          -3.132481759763925,
          -3.2137913435388277,
          -3.9130399071502957,
          -2.242814416095409,
          -2.4945826812703573,
          -3.333422082670884,
          -3.270889819404854,
          -3.3727439493813733,
          -3.462622574900549,
          -4.007047564562988,
          -3.761880874972859,
          -3.1825378519450087,
          -2.7352439389249232,
          -2.675057846930607,
          -4.6009620109768665,
          -3.931966114728173,
          -2.710510943898011,
          -3.9675198959264786,
          -3.103763488014902,
          -3.6020527530262783,
          -7,
          -2.974439403782802,
          -3.907921679343844,
          -4.62148786458063,
          -2.709519755741255,
          -3.0936951178653964,
          -3.4059035502713977,
          -2.9612052955616837,
          -3.2881702892508025,
          -7,
          -7,
          -4.652594410868086,
          -3.432599847601894,
          -3.937989041454751,
          -7,
          -3.1487202942127217,
          -2.744795466104949,
          -2.6146262332789756,
          -7,
          -4.037296987157902,
          -4.596750995512816,
          -3.0305423788965262,
          -2.527395527157122,
          -3.6033816839102117,
          -3.3820084612910795,
          -3.2945134637464593,
          -7,
          -2.936127472933785,
          -2.124052746679584,
          -2.3559024079364916,
          -4.630692236153442,
          -3.6617022843828044,
          -4.6541572822721164,
          -2.704058018898603,
          -3.2500069070898077,
          -4.599653861243402,
          -3.1571338189519675,
          -3.068715330889723,
          -4.149496233465742,
          -3.0528104935015095,
          -4.597025681164456,
          -3.784413494186196,
          -3.0061532507739805,
          -3.620530148253107,
          -7,
          -7,
          -7,
          -3.8159096508867747,
          -3.4378397108401133,
          -2.293848773185784,
          -4.0105331576559315,
          -2.9319257996219097,
          -3.480979310410153,
          -3.3531037459299293,
          -2.566106798329171,
          -2.8136762808300997,
          -4.007715780666695,
          -4.595441104815296,
          -3.154414155554896,
          -3.593706862849097,
          -2.292411841023868,
          -3.552303109338354,
          -3.5569709750138014,
          -2.452879674925722,
          -2.7808613258809114,
          -3.030141476104852,
          -2.6480983392885165,
          -2.966927174230582,
          -3.3935532686509355,
          -3.1726515725810147,
          -3.342707730097314,
          -3.0674537787406724,
          -4.130516026695155,
          -4.021757645983594,
          -7,
          -2.6350386908415664,
          -3.552225622971311,
          -4.117679981058723,
          -7,
          -2.39927383467822,
          -2.1397778404555856,
          -4.291723956343732,
          -2.7838930747319504,
          -3.675246601092355,
          -3.5216827902622145,
          -4.318282514840762,
          -4.115133246647497,
          -4.128506967287956,
          -2.9251657982919412,
          -4.2923668466362255,
          -4.117823481975421,
          -1.9947418610649346,
          -3.827013678162476,
          -2.62375095902467,
          -3.367015895779413,
          -2.665483945585669,
          -4.602363891112775,
          -3.3943422178182256,
          -3.763149784852867,
          -2.877479330077011,
          -2.2821566721414137,
          -3.3628039075477067,
          -3.9261468671635575,
          -3.844870492827602,
          -3.247759853835692,
          -2.43998053517108,
          -3.165870561968359,
          -3.3641866774785254,
          -2.37457916233757,
          -4.008961933117199,
          -2.3021093395845074,
          -3.9199980309640186,
          -2.6023159857249434,
          -3.7023335848920693,
          -3.3677285460869766,
          -2.54076873485839,
          -7,
          -2.779059969890307,
          -3.751499055612203,
          -4.009185223506869,
          -3.8754953408710184,
          -2.85482636272822,
          -7,
          -3.807264355276107,
          -2.72159115966934,
          -3.932960550995896,
          -3.8347067478454924,
          -3.079365855819545,
          -3.276440914085364,
          -2.5352347645179423,
          -3.3242391211845153,
          -2.801025316543808,
          -2.2856890592745738,
          -3.2235716481850916,
          -3.1106222893084463,
          -4.593640448502303,
          -7,
          -2.5859995828684834,
          -2.5409180494795067,
          -3.75530848871007,
          -2.6624220153246885,
          -2.581918971095267,
          -3.2882918201661653,
          -2.571364316383313,
          -2.6654098753610374,
          -1.746031891867261,
          -3.772803522998071,
          -3.421702618946589,
          -4.607369228176479,
          -3.1943255978407317,
          -4.333548027189907,
          -3.791690649020118,
          -2.1633534445111513,
          -7,
          -3.829207252221248,
          -7,
          -2.0472192207082234,
          -7,
          -3.751499055612203,
          -4.292078772116658,
          -3.9908824926522315,
          -4.117138666403885,
          -3.6904508209430453,
          -3.272239555081664,
          -2.3487817408115292,
          -3.061624783982095,
          -3.4333323865845595,
          -7,
          -3.092687755629679,
          -7,
          -4.596652066132439,
          -7,
          -3.8987800132898256,
          -3.8361869262013224,
          -4.605897351644974,
          -2.9952469568942646,
          -2.6923180442592787,
          -2.6250601389959516,
          -4.121800505098974,
          -7,
          -3.281714970027296,
          -7,
          -7,
          -2.6714275736474455,
          -7,
          -4.599162287443591,
          -3.2810850412893027,
          -2.7403942733989815,
          -3.46912743091224,
          -7,
          -7,
          -3.767166471434543,
          -7,
          -2.7255688345434206,
          -4.304727429383633,
          -3.3700556852672308,
          -7,
          -4.617363849384386,
          -4.616370472291269,
          -7,
          -4.792521258038025,
          -4.617010831199084,
          -4.056513325012579,
          -3.8180452184344693,
          -7,
          -3.9489366538703976,
          -1.6682477198295125,
          -4.632656340381764,
          -7,
          -4.6170073345345095,
          -3.147623242121687,
          -2.841300312661918,
          -4.494425943281818,
          -7,
          -7,
          -7,
          -4.2485127322209,
          -2.388904173729535,
          -4.273087295212427,
          -7,
          -2.331601685199343,
          -2.173289056021275,
          -4.794996633134222,
          -7,
          -7,
          -3.952982608415478,
          -4.0175167795241205,
          -4.4927534067443124,
          -3.0149138474140975,
          -4.250893773087252,
          -4.190737783739713,
          -7,
          -3.7330017659072214,
          -4.253794771352397,
          -4.094278920414607,
          -2.6503591996329794,
          -4.052109547155785,
          -4.497803581102442,
          -3.3539791447958756,
          -2.8657658594694206,
          -4.139823135037863,
          -4.191908403649229,
          -3.169446216533984,
          -4.397442891379402,
          -2.6690579115218163,
          -5.094607370220264,
          -3.618672055598137,
          -5.103013064468925,
          -3.591221175368724,
          -2.9267837763578677,
          -1.4629860836945814,
          -2.696756854265414,
          -2.8347054240009544,
          -2.916329870639243,
          -4.793877653752079,
          -4.054142784362693,
          -3.9875150122754737,
          -2.640456940990227,
          -4.493949229970773,
          -7,
          -4.139613253202229,
          -4.250277072903023,
          -2.8630116102274084,
          -2.641505723669546,
          -3.0977164374180046,
          -4.616612029993923,
          -3.1606133994250425,
          -7,
          -3.5788380110719613,
          -3.550228353055094,
          -4.792885243796325,
          -4.402292340957852,
          -2.6948003131206746,
          -4.093764782337062,
          -2.237519302805797,
          -7,
          -4.79338872098791,
          -2.295675862872818,
          -3.593760125350598,
          -3.3618606916229434,
          -3.574630969495031,
          -2.665156614154294,
          -3.603887881296596,
          -3.338933666773873,
          -3.6725288583784526,
          -3.842928048908947,
          -5.097857477901066,
          -1.8461171517183268,
          -3.2341888323857413,
          -2.6690306426372117,
          -3.947531745695593,
          -7,
          -4.800129146035911,
          -2.5813604913799524,
          -3.757765146438979,
          -3.4921605252594574,
          -4.249051528805085,
          -3.3461509887569085,
          -4.4935695729787,
          -4.315329971070087,
          -3.83806861796557,
          -1.7203746208767083,
          -3.6163284485376055,
          -4.100198171834132,
          -4.097069803977662,
          -3.0528539087031565,
          -2.234246248744979,
          -4.317004147587592,
          -3.7720526346874497,
          -2.9193849551394147,
          -4.4949195032388225,
          -2.4175264570697843,
          -2.7499880034871875,
          -4.190279159369666,
          -3.9232854767451384,
          -3.264773351385913,
          -3.6294401821443074,
          -3.5394281056065973,
          -2.5207438940479294,
          -1.6328792743501936,
          -4.7941219138720745,
          -3.7175207204583036,
          -4.618180632232297,
          -2.953076575498739,
          -3.7346572321257514,
          -3.759066626088062,
          -2.675959499234379,
          -5.093890749991982,
          -4.618288723365895,
          -1.866267135039807,
          -3.639675361483828,
          -7,
          -5.093554755017995,
          -2.92298926049107,
          -7,
          -5.09324653110384,
          -7,
          -3.602350591194482,
          -3.5369195031302656,
          -2.7901261941058086,
          -3.132023632424381,
          -3.07420462936341,
          -3.1167127610047314,
          -7,
          -4.003745460946834,
          -4.79256327196696,
          -5.09428591129531,
          -3.1985979337016874,
          -3.260493610483121,
          -3.3586327127997206,
          -4.792451225789749,
          -5.094464140741792,
          -4.794505473856937,
          -2.619032726143369,
          -4.491477256827805,
          -7,
          -4.797568741143527,
          -3.892935928788486,
          -4.7929027354282665,
          -3.8418285554494096,
          -4.319623016720785,
          -4.059163946293072,
          -3.82133766507704,
          -3.7365038932973587,
          -3.4452596250187617,
          -3.8189859902803294,
          -4.140714002992303,
          -1.2604109603899747,
          -4.094631819313487,
          -7,
          -7,
          -4.39667001368851,
          -4.492453062351789,
          -4.3953124115330064,
          -7,
          -1.8082686682108675,
          -4.7934865515862635,
          -3.541247339056982,
          -7,
          -3.3034154449502564,
          -0.8980588707318411,
          -2.584432755164712,
          -1.8885611758793897,
          -2.1077502834521247,
          -2.5884514800267557,
          -2.480284740313284,
          -4.097528008441893,
          -3.554090939110258,
          -3.774304893442617,
          -3.9214159323948645,
          -3.7641285619338616,
          -4.24976074088798,
          -4.028639021200423,
          -7,
          -3.4317476643821796,
          -3.7976587145026497,
          -3.907665102853612,
          -7,
          -3.023753872818503,
          -7,
          -2.9316093963691396,
          -3.6477845207887927,
          -3.7172577826630526,
          -3.6171751426857073,
          -7,
          -3.2412165693415527,
          -3.869138498669444,
          -7,
          -3.2937284566278207,
          -1.2119596828671277,
          -2.0498136513778378,
          -7,
          -3.8380511024893247,
          -3.102612192216802,
          -3.5620023044114753,
          -4.616944389757526,
          -3.9807932332478377,
          -7,
          -4.0158764651452445,
          -1.7275234724556605,
          -3.278620528841023,
          -2.725536651487612,
          -2.6685256544799585,
          -7,
          -4.395651336963195,
          -3.8645180609843313,
          -3.226826240808092,
          -4.792475738361253,
          -4.315736001000132,
          -3.820481469946896,
          -4.495759350270359,
          -7,
          -7,
          -5.093288574520754,
          -5.0939292328222185,
          -4.4922329107355194,
          -4.792318133397602,
          -5.093855762641554,
          -3.842630038656657,
          -1.1139979281615506,
          -7,
          -7,
          -7,
          -5.094257947097275,
          -3.387620104684051,
          -3.1169256768200073,
          -5.093327110744394,
          -4.192421084256289,
          -4.067057323249598,
          -3.5667320289862197,
          -3.379929663285281,
          -1.8873167550101948,
          -2.641317523344695,
          -3.695621748893251,
          -7,
          -1.979818970838536,
          -2.6346683329870553,
          -1.9610176464287086,
          -5.095633048907243,
          -2.1655873706582036,
          -5.095981367848225,
          -7,
          -3.7325860376752544,
          -3.481380730938571,
          -3.5423812529322762,
          -2.6801712307043437,
          -3.2459991511977875,
          -4.001520705885766,
          -3.2840522425014473,
          -3.7150941324710653,
          -4.139595758469972,
          -3.2513496376590156,
          -2.622697454895568,
          -3.352685456896385,
          -7,
          -4.617290473188997,
          -4.0555242765059525,
          -4.492229415365499,
          -3.092814413659737,
          -7,
          -3.1644324022827406,
          -2.2004357471339104,
          -4.494631082083801,
          -3.897163000414094,
          -3.473966358354253,
          -2.0258117253219763,
          -3.003732212587054,
          -4.79300417300328,
          -3.2737138444188143,
          -5.09379977701746,
          -3.203147997054803,
          -3.707178282743617,
          -2.512643299825052,
          -1.4171224151307773,
          -2.320720809309493,
          -4.413859458706849,
          -4.144338922661946,
          -4.062038134817108,
          -3.953694125087313,
          -1.657708358382131,
          -3.1298127670406317,
          -5.0934532053920565,
          -7,
          -5.09324653110384,
          -3.241724797625303,
          -3.381588418818051,
          -4.492613737514819,
          -4.493217484224955,
          -3.7582717409698585,
          -4.793315333574228,
          -3.9851811187481068,
          -4.191576757210136,
          -3.436717388027081,
          -5.095486671604796,
          -3.9501178678525184,
          -3.1711922262700494,
          -3.262510415525468,
          -3.108671821835402,
          -2.818576388835446,
          -2.5828362847759267,
          -4.794481075584251,
          -2.3013004998657527,
          -3.0670765813320258,
          -3.5100353535497364,
          -7,
          -3.734162995777309,
          -7,
          -2.733005108513303,
          -3.3964106067359956,
          -3.647416697795443,
          -3.6076556067548955,
          -7,
          -7,
          -3.4012523038768094,
          -4.793353776147056,
          -4.794289327161528,
          -4.396631682159426,
          -3.5048071575589814,
          -4.39560942237794,
          -1.7869661639365204,
          -4.491218072720135,
          -5.093491727010932,
          -1.7556541929945808,
          -2.048847991458375,
          -3.2439287022907277,
          -2.6780919194391033,
          -2.700126581535961,
          -1.303137657032866,
          -2.3696436876791966,
          -2.2991392849753933,
          -1.7163629722329221,
          -2.190523521436355,
          -2.89765782100233,
          -2.9035143691536285,
          -2.0794247965545014,
          -2.0934592796492666,
          -1.4198155884716908,
          -2.8502016121912996,
          -1.7985669223334704,
          -1.2563143900118,
          -3.2763744121854446,
          -2.7207951665970045,
          -3.8494569513801715,
          -2.250368671567358,
          -2.42419057139359,
          -1.9414629514463753,
          -2.627250609866013,
          -4.1197296465874,
          -2.561057478866997,
          -3.1291922661481304,
          -3.6522359775051445,
          -1.609297500646989,
          -2.387224813600485,
          -2.535271144672889,
          -2.6266693909392713,
          -3.213505256885292,
          -3.373948932062513,
          -3.011044733143276,
          -3.177463522640562,
          -2.416343886613213,
          -2.7094772569508208,
          -2.1915354346857767,
          -3.794826009545771,
          -2.6327416798138907,
          -1.1560214758601268,
          -1.8809732400149861,
          -2.4184379801183886,
          -3.049599606087976,
          -3.844301102714822,
          -1.6694289158435365,
          -2.9627937383396477,
          -3.5461174829126922,
          -2.5643484603220394,
          -2.4080326832694694,
          -2.113966497603125,
          -5.097472494247438,
          -2.22618371217853,
          -3.189714174255922,
          -7,
          -4.158884939598661,
          -3.0431494595623994,
          -3.2685474497400993,
          -4.39702180876549,
          -1.5742934586537918,
          -1.5372684228232258,
          -2.5021355057145747,
          -4.793315333574228,
          -3.5521238242332,
          -4.492564842670765,
          -1.2690758123899828,
          -4.635329571719198,
          -2.9388562285678494,
          -2.5059473911672296,
          -2.9931380494395485,
          -3.947398708021437,
          -2.5632183241547377,
          -2.9567902084396147,
          -2.5223114231876465,
          -3.537274397054826,
          -2.9300353482108923,
          -3.1087324348173704,
          -2.0784389533027587,
          -2.0931871771753436,
          -3.891345773877661,
          -1.668933935404147,
          -1.301832343155351,
          -3.74249629730124,
          -2.153010293782384,
          -4.395735153999889,
          -3.548826018446806,
          -1.8757383000886039,
          -3.5649360299941315,
          -3.838639235946072,
          -5.093551253702007,
          -4.792244564836703,
          -4.616692519380448,
          -3.1847894164948185,
          -1.1262950143354775,
          -2.7308030624345148,
          -1.8334502422862748,
          -3.190506781616284,
          -2.6035794555086023,
          -1.9209980385338585,
          -2.3216767395735283,
          -3.3742121051701033,
          -3.50289960722803,
          -2.1837010676471413,
          -3.6956357536491224,
          -1.3630551204315158,
          -2.270849066453705,
          -3.107786733638018,
          -3.3507359100116605,
          -1.0110508776114095,
          -2.8548887593685546,
          -2.341920335600977,
          -3.5643910191366928,
          -3.481980662231437,
          -1.502857768958537,
          -3.647808951020386,
          -3.008366279393024,
          -3.6508034376395506,
          -2.446183662771694,
          -4.792244564836703,
          -2.1758151157660324,
          -4.248582743583236,
          -3.9800138658866406,
          -2.39927383467822,
          -7,
          -1.4770836778663488,
          -3.6018147558619757,
          -2.948189037822062,
          -2.336201203518688,
          -3.3881151384632187,
          -2.7700705006688313,
          -5.093236019613618,
          -2.7535552052190964,
          -1.842919698597131,
          -7,
          -3.6789383930785604,
          -3.248487880403575,
          -2.8384420423712386,
          -2.2965011662837895,
          -2.8172084784393747,
          -2.808739845117393,
          -3.113504660424134,
          -3.4822319819836443,
          -2.707514560598585,
          -1.825356965962974,
          -2.40145085584641,
          -4.394651270323019,
          -2.591129904389959,
          -2.4854802225929227,
          -3.5801505485256566,
          -1.7957676115403478,
          -3.9187919567908267,
          -4.0940236762236575,
          -1.9457789280586943,
          -3.130133092270322,
          -0.7900158494868508,
          -2.057289489110179,
          -2.546655746275776,
          -2.2375655006215744,
          -3.6636660324894645,
          -3.050716345041008,
          -3.6634461427299287,
          -2.3745420600585905,
          -3.242891220100266,
          -2.842813720315582,
          -2.0828023643522995,
          -3.0206606640506393,
          -3.5020662836896532,
          -2.161235694155678,
          -1.2597635834634564,
          -3.0446897027771316,
          -3.4868035633279826,
          -2.2751022703904096,
          -3.2093156249993453,
          -3.005896289935211,
          -3.2389377641260206,
          -1.8397649061247883,
          -2.217655493624378,
          -3.0206850232239995,
          -3.0426660978826257,
          -4.394661772492929,
          -4.792346156238286,
          -2.030548370317692,
          -3.1617086942021646,
          -2.9101010197335384,
          -2.576953229867915,
          -1.3640214094351226,
          -1.925256900674232,
          -2.0358785286367036,
          -1.9949881177338864,
          -2.832209858620681,
          -2.6748128133041775,
          -3.890850489627583,
          -3.097361444565494,
          -7,
          -2.4819725290651156,
          -2.84651383420016,
          -2.8127539221439144,
          -4.616345958929143,
          -2.5746412931863643,
          -3.5397484973580404,
          -1.4557226282155344,
          -3.3963493184894906,
          -3.8640781064148335,
          -7,
          -4.315273937139323,
          -4.139571264660785,
          -4.093614273071337,
          -3.5140161804006493,
          -2.23757282760331,
          -3.3570056965083346,
          -3.756241807581338,
          -3.793678654697431,
          -3.5151659357206038,
          -3.771762409180194,
          -3.5758768211262666,
          -3.949358635926558,
          -3.492659134941496,
          -2.5088385055893094,
          -3.311826787232616,
          -2.025559020614836,
          -2.9493630832543674,
          -3.602043026368414,
          -3.1653455932368795,
          -4.491400218248948,
          -2.2849563718082075,
          -3.563285601908917,
          -5.093295581361213,
          -2.0062076411186065,
          -3.3242824552976926,
          -3.4930814527344283,
          -2.8098790829156988,
          -3.1868151244474543,
          -3.4282864740894166,
          -3.771468489379099,
          -3.8151441461710167,
          -3.057531251859636,
          -3.814745129621724,
          -3.0310450563595204,
          -3.2710019473768117,
          -4.016695655448349,
          -5.0932640496888615,
          -7,
          -7,
          -4.785714122351664,
          -7,
          -4.787091911760731,
          -4.493778599541865,
          -3.9475247447286654,
          -7,
          -4.789136320068675,
          -2.262693712352328,
          -3.81813348070119,
          -7,
          -7,
          -2.9084222715130106,
          -2.398270231684452,
          -7,
          -7,
          -7,
          -7,
          -3.5817577144343704,
          -1.8047641753770183,
          -4.135584210067757,
          -7,
          -3.1608352072202557,
          -2.500372706879035,
          -7,
          -7,
          -7,
          -4.0190608745376055,
          -7,
          -4.788486548560839,
          -3.1773289409373007,
          -4.790911166601595,
          -7,
          -7,
          -7,
          -4.796747738875302,
          -7,
          -4.201847573590095,
          -4.785927468480128,
          -4.798650645445269,
          -3.833897567980089,
          -3.031089518782224,
          -7,
          -7,
          -3.3824534742228978,
          -7,
          -2.892738121210747,
          -7,
          -4.790833844350289,
          -4.202787915033841,
          -4.013805927340592,
          -3.8406496682305784,
          -2.2779269716765342,
          -3.80197964291853,
          -3.128405604667181,
          -3.333291224196901,
          -4.78864908260037,
          -4.790045778582493,
          -4.324810422951253,
          -7,
          -7,
          -4.790988475088816,
          -4.786616571225525,
          -7,
          -3.316551992958615,
          -2.689215620233142,
          -4.786872042749559,
          -7,
          -3.337548761830192,
          -4.785835031358666,
          -4.041497955909414,
          -4.210218162926443,
          -7,
          -7,
          -3.1381861986579302,
          -7,
          -3.1447471299618526,
          -7,
          -4.787658801910277,
          -3.179647524546354,
          -3.8939419873734353,
          -4.788062260178738,
          -7,
          -3.9568816029042733,
          -4.789749884853146,
          -3.8042485035940143,
          -3.806864804730897,
          -4.318362505336116,
          -7,
          -2.0005574162607793,
          -3.408423144659725,
          -2.8293160278815903,
          -4.008067621748033,
          -7,
          -4.324062851231625,
          -3.2149204978830515,
          -3.845194539177392,
          -3.729927106517317,
          -4.486139907384003,
          -3.191759484998457,
          -4.790137323895,
          -7,
          -7,
          -3.3397370674146667,
          -7,
          -4.197301238322852,
          -4.315977338870528,
          -3.4896839887265743,
          -2.904638275554804,
          -7,
          -4.787630474970182,
          -3.75034707354675,
          -4.491816764062082,
          -2.19495760403611,
          -4.012450544579183,
          -4.7856145249468245,
          -4.797828229029252,
          -4.204919975839634,
          -3.6079774707180796,
          -7,
          -3.4798688671351194,
          -2.1879892336633064,
          -7,
          -7,
          -7,
          -3.5583566952997225,
          -4.79192912977267,
          -3.760614364094956,
          -4.111611959923377,
          -7,
          -4.312529954073747,
          -2.5515042136251402,
          -3.8490506905695123,
          -7,
          -7,
          -2.4526468430785457,
          -7,
          -7,
          -4.785785249373541,
          -7,
          -7,
          -2.9437081969398093,
          -3.3876995495175377,
          -3.4939167341048294,
          -2.400865826995819,
          -4.488748078231586,
          -3.719630829001067,
          -7,
          -7,
          -4.792391689498254,
          -2.7694983905214636,
          -3.3653976050539876,
          -7,
          -4.78773669147004,
          -4.789918991668926,
          -3.2388714591998307,
          -7,
          -7,
          -7,
          -4.3160332821256615,
          -7,
          -3.838946988281371,
          -7,
          -7,
          -7,
          -7,
          -4.356376467413694,
          -4.794599568642681,
          -4.186744501716686,
          -2.4672732956813768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.787425049380184,
          -7,
          -3.139217700137586,
          -4.7878570387741615,
          -3.2777183335212237,
          -7,
          -3.2741842493416127,
          -2.17972919898145,
          -3.6764966379114132,
          -2.982025009825869,
          -3.3037561196781047,
          -4.015010278861907,
          -3.8959816302471357,
          -3.112150977941765,
          -4.795664553841684,
          -4.792181496149679,
          -4.493032610522491,
          -4.335023054250718,
          -7,
          -4.337386040723217,
          -7,
          -3.3367848326610927,
          -7,
          -3.875482193380458,
          -7,
          -2.9785709156211735,
          -7,
          -3.675477189270931,
          -4.789086915088029,
          -4.493081452734428,
          -7,
          -4.788818618509576,
          -3.565001221278613,
          -4.020057280643444,
          -7,
          -3.845215214780156,
          -2.087717864069486,
          -2.578181898509458,
          -7,
          -7,
          -4.486798729097594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.912101803317774,
          -4.508071616599375,
          -2.653406667089867,
          -2.524833607996835,
          -7,
          -7,
          -4.186878675087556,
          -3.512979142422869,
          -4.785806585208766,
          -4.786637866259987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.785486437569411,
          -7,
          -7,
          -2.002222839113038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.488395583624388,
          -7,
          -7,
          -4.338609200287477,
          -4.193653224907199,
          -3.461870273308123,
          -3.0781848457146452,
          -3.9499612543414617,
          -7,
          -7,
          -2.6625915062474363,
          -3.7554867957317724,
          -1.7901419060922004,
          -7,
          -1.8424856208936586,
          -4.091779472763749,
          -4.7874392197822315,
          -4.787743771646467,
          -4.002573311204613,
          -3.541283570850919,
          -2.8510773029398084,
          -3.671985639697291,
          -4.227340280666198,
          -4.0154645435583305,
          -4.4887198891891655,
          -7,
          -7,
          -4.80263007659096,
          -4.801383126852731,
          -7,
          -7,
          -7,
          -4.787425049380184,
          -7,
          -7,
          -3.6516102551072227,
          -3.1761038471190988,
          -7,
          -4.801650631931656,
          -7,
          -1.7751789704469467,
          -3.086302615981995,
          -7,
          -3.1461987796436697,
          -7,
          -7,
          -4.332236415491443,
          -3.9506846844686647,
          -2.656261089071224,
          -3.389540902111774,
          -7,
          -7,
          -7,
          -4.196604462943301,
          -1.7272055849648744,
          -3.3699192720233055,
          -4.308535957626102,
          -7,
          -7,
          -3.5424978305931125,
          -3.7319042325346716,
          -7,
          -7,
          -7,
          -7,
          -4.195193696188285,
          -4.089219585886864,
          -3.8626017427642996,
          -7,
          -4.314372900009328,
          -3.8112129429218173,
          -3.789679404241183,
          -3.4318985066229555,
          -3.004280419991118,
          -2.9252857913595376,
          -4.789869675649222,
          -3.292887763060018,
          -2.896233410673829,
          -4.124236784040634,
          -7,
          -4.790932252099301,
          -7,
          -3.483994607181074,
          -4.045818287532453,
          -4.818667883372954,
          -7,
          -7,
          -7,
          -4.021781741232203,
          -7,
          -7,
          -7,
          -7,
          -4.788026884095804,
          -2.7495713646784057,
          -7,
          -7,
          -2.361666496845486,
          -2.4027332051731176,
          -2.394418534057963,
          -2.5945879160333667,
          -1.9120606918208591,
          -1.9722070522427055,
          -1.3267335249988885,
          -1.1140188594582874,
          -1.6654811074728242,
          -2.109722064140192,
          -2.3982791687688554,
          -2.1688410903647286,
          -1.5910039725437615,
          -1.7293426818743685,
          -1.6962648783645868,
          -2.0540071965371163,
          -1.3470906831899716,
          -1.8472706032338282,
          -1.4394306513093977,
          -2.182484084353431,
          -2.938303308337877,
          -1.8003968660120133,
          -1.9850832255533275,
          -1.6675127877368712,
          -1.5312093266203366,
          -3.120664134523185,
          -1.8973124808813662,
          -1.6647434274063997,
          -2.8523552103155794,
          -1.607291828089711,
          -2.0437751727897377,
          -1.611547280631969,
          -1.7867272544558848,
          -1.783566892227157,
          -2.0463848759412233,
          -2.0595688877160585,
          -2.150533460409309,
          -2.33449317333422,
          -1.4415908197937384,
          -2.2435349655419285,
          -4.489775728090475,
          -2.6155926176472097,
          -2.4490943841052553,
          -3.170975596352534,
          -2.583574351028345,
          -1.8344561795716325,
          -3.953082843912086,
          -1.8319076454770165,
          -3.847609671299165,
          -4.804187154381649,
          -2.97617242001532,
          -2.6481939831377432,
          -2.59396236274275,
          -4.793811330864881,
          -2.536940995549226,
          -3.048597158401606,
          -7,
          -2.8743254302416155,
          -2.9330738905666194,
          -3.8601116485509888,
          -4.012661503690474,
          -2.6949928256605835,
          -1.8605113744781039,
          -2.274319023392659,
          -7,
          -4.117019265436686,
          -4.310955155085438,
          -2.286489046836051,
          -4.522424670251202,
          -3.3304676115937397,
          -2.7909163930169654,
          -2.590357448108568,
          -4.308870197167231,
          -3.2676516413178485,
          -2.474475717141794,
          -2.7833468581688714,
          -2.0276750310603933,
          -2.7642384191572935,
          -2.7136598180717924,
          -2.574713083213216,
          -2.148891215845606,
          -4.789975345977952,
          -2.3832816661680436,
          -2.239880436218544,
          -3.4850992085981027,
          -2.8971231267326427,
          -4.311131986528651,
          -3.332041016492325,
          -2.550725195760618,
          -2.995559366519752,
          -4.184755292957543,
          -7,
          -4.785336954534081,
          -4.3092965124823595,
          -1.6538959041317818,
          -1.3053238048195381,
          -3.7190756631711492,
          -2.2593254108482665,
          -3.038130304046716,
          -2.6972223660854966,
          -2.2455179858468557,
          -2.2098569649819138,
          -4.495530462101731,
          -4.787262056515856,
          -2.631147162536491,
          -3.405737555618183,
          -1.8095524510925622,
          -2.712346599731528,
          -2.907411360774586,
          -3.291909716380065,
          -2.1197997981541117,
          -2.7163094690071827,
          -2.4591243219699734,
          -2.678652458663491,
          -2.1372151547842573,
          -2.5984563004865473,
          -3.466634635428093,
          -2.743099952936036,
          -4.494126753736251,
          -3.4074928794601025,
          -7,
          -2.351058713979487,
          -4.008010777850515,
          -3.707541789910018,
          -2.1397778404555856,
          -1.4770836778663488,
          -7,
          -3.7440154581905425,
          -2.8414969837489883,
          -3.1407530894468425,
          -3.1090087311892693,
          -3.5237738403252923,
          -4.785244391626177,
          -3.6175804115626624,
          -2.102208700116164,
          -4.484918801665807,
          -3.3241759801248705,
          -3.108482182629693,
          -3.6173219216479233,
          -1.8457064057873396,
          -2.700717899347058,
          -2.1235193223274114,
          -3.8373709559972196,
          -3.2704529682818424,
          -3.3480891924506277,
          -2.2204146672656555,
          -1.7647792549889878,
          -3.4433625685513345,
          -3.3438498292968344,
          -3.3899494256021807,
          -1.9913180954838037,
          -1.7602164742279682,
          -3.2200727321168943,
          -3.5562954043942465,
          -2.021777927452259,
          -3.39911275611016,
          -1.6313124360568332,
          -3.0459471672500875,
          -1.8824886165043124,
          -3.3955290747807227,
          -2.1365631103550466,
          -2.294349499507947,
          -4.7888044930446485,
          -2.09671105393827,
          -3.031422639278778,
          -3.4354981435439496,
          -2.8800206450425603,
          -1.8620810642481713,
          -4.785571833351669,
          -3.152086572482463,
          -1.8249202407771479,
          -3.363605265330623,
          -4.497565410086237,
          -2.7268081430156443,
          -3.189421836754017,
          -3.6734356400732615,
          -3.3770609522814232,
          -2.1928042040338416,
          -1.849699039591056,
          -2.8572763824080747,
          -2.978089173056143,
          -4.485060967233931,
          -4.785543369956593,
          -1.9864002384688655,
          -1.9534876520964986,
          -2.9444756218578463,
          -1.7812251479704675,
          -1.7593966529774778,
          -2.6986571996858566,
          -2.1568929555183947,
          -2.27688356060408,
          -2.2578200904549908,
          -3.2332225681395017,
          -3.885785128783473,
          -4.016747891765552,
          -3.744029694553289,
          -3.3210770203302395,
          -3.535380743722831,
          -1.5278802544226242,
          -7,
          -3.49373680227684,
          -4.09241182801244,
          -1.5949442024881448,
          -4.313009027913279,
          -3.6417785481765814,
          -3.1319392952104246,
          -3.882510307889449,
          -4.008309125342374,
          -3.744605875414239,
          -2.841195882321743,
          -1.9278409009449988,
          -3.053239134155262,
          -4.796498012777912,
          -4.788500684370557,
          -2.505519312608658,
          -4.309892651745501,
          -4.310891478136077,
          -4.7899894334126945,
          -3.533291784717795,
          -3.307799585981291,
          -4.316864588319736,
          -2.5964187650127157,
          -2.1953102756059963,
          -3.0724838474728275,
          -3.6754187475570377,
          -7,
          -2.711119811778399,
          -4.089785045963041,
          -7,
          -2.3370168971938905,
          -4.488867861253645,
          -4.789658257826966,
          -2.953589557642728,
          -2.1817462514719943,
          -3.845931361165108,
          -4.3092965124823595,
          -4.485799478932974,
          -4.7982361763679355,
          -4.484989890267077,
          -2.1712567871600528,
          -4.793936986698624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.229638333914494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2930751401228635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.150862315007684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.750824551038603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8733012218880476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.712716187359675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530148450992933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9404168646816653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.527177328754575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.017350592437945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.290624405760645,
          -7,
          -7,
          -7,
          -7,
          -4.367094893123658,
          -7,
          -7,
          -4.401325854091834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100370545117563,
          -7,
          -7,
          -4.920879550924153,
          -4.017992737766433,
          -7,
          -7,
          -7,
          -7,
          -4.226741639919595,
          -3.792391689498254,
          -7,
          -7,
          -7,
          -7,
          -4.294723346427345,
          -4.1483558264494045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.175047699526168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.234653928109494,
          -7,
          -7,
          -7,
          -7,
          -4.6775613311560935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.487491891558491,
          -7,
          -7,
          -7,
          -7,
          -4.652898743329887,
          -7,
          -7,
          -7,
          -4.208871138246926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.205312653309609,
          -7,
          -7,
          -7,
          -7,
          -4.941968344282969,
          -4.954392074004006,
          -7,
          -7,
          -7,
          -7,
          -4.604474458972241,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.861967294772421,
          -7,
          -7,
          -7,
          -2.8959747323590643,
          -4.034788831251184,
          -7,
          -7,
          -7,
          -3.7203247174174416,
          -7,
          -4.493903967206503,
          -3.577721524509021,
          -2.8041394323353503,
          -7,
          -3.212021048512404,
          -7,
          -3.6321534835106326,
          -7,
          -2.7664128471123997,
          -3.2753113545418118,
          -7,
          -2.8662873390841948,
          -7,
          -7,
          -7,
          -3.696531119969607,
          -7,
          -7,
          -4.291723956343732,
          -3.6018147558619757,
          -3.7440154581905425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2426159575692655,
          -7,
          -7,
          -3.317854489331469,
          -7,
          -7,
          -2.7535830588929064,
          -3.146128035678238,
          -7,
          -7,
          -7,
          -3.9708116108725178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4362898941796396,
          -7,
          -7,
          -3.4000772605521274,
          -7,
          -3.9152317214694095,
          -7,
          -7,
          -7,
          -2.800717078282385,
          -7,
          -7,
          -3.747800090864369,
          -7,
          -7,
          -7,
          -3.0622058088197126,
          -7,
          -7,
          -4.149988456491476,
          -7,
          -7,
          -4.298350837719157,
          -7,
          -7,
          -7,
          -3.7176289019215365,
          -3.151574127994361,
          -7,
          -7,
          -7,
          -7,
          -3.450037299616192,
          -7,
          -7,
          -2.6979264448065052,
          -4.224066664334767,
          -2.7728105019145324,
          -4.151124590050682,
          -3.0100254420896038,
          -3.62797998982998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6546577546495245,
          -7,
          -7,
          -7,
          -3.912080280808671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.285557309007774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.505149978319906,
          -7,
          -7,
          -7,
          -2.846955325019824,
          -7,
          -2.562852432234841,
          -7,
          -7,
          -2.8273692730538253,
          -7,
          -2.7095526127800826,
          -2.4533183400470375,
          -7,
          -2.9613931732408316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2830749747354715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5449534564447305,
          -7,
          -7,
          -7,
          -7,
          -3.5374412834079476,
          -3.4243915544102776,
          -7,
          -3.4104505028495264,
          -7,
          -7,
          -7,
          -7,
          -3.9618006391916785,
          -7,
          -2.9978230807457256,
          -7,
          -7,
          -7,
          -2.9784361776439243,
          -3.3858296186697827,
          -7,
          -3.2210228052048415,
          -3.6990255904722655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1872701029937605,
          -2.598927227835204,
          -3.4104397862103464,
          -2.632963168167261,
          -3.4565178578052627,
          -2.258005644909925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.244539968815006,
          -7,
          -3.1622656142980214,
          -7,
          -7,
          -2.850986404764101,
          -7,
          -3.5024271199844326,
          -7,
          -7,
          -7,
          -3.964861744466946,
          -7,
          -3.700919945420287,
          -3.916085299843703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.75724415102197,
          -3.635483746814912,
          -7,
          -7,
          -3.657629431388952,
          -7,
          -7,
          -2.622214022966295,
          -7,
          -7,
          -5.131955320541395,
          -7,
          -7,
          -7,
          -7,
          -3.502472641129268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.612087216539411,
          -7,
          -4.096458111717453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.425371166438941,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.305334830880316,
          -3.021602716028242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.22855433653901,
          -2.949145952419944,
          -2.9906347965243705,
          -3.650501794878367,
          -7,
          -4.303761784087927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.018621255078412,
          -3.3972445810103866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3258234190027447,
          -7,
          -7,
          -3.835817354293473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.413467412985825,
          -7,
          -3.5684364144168854,
          -7,
          -7,
          -3.286231854028553,
          -7,
          -7,
          -7,
          -3.662867457405056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.016824493667488,
          -7,
          -3.545801757159276,
          -7,
          -7,
          -3.7774249144047936,
          -3.498034723687027,
          -7,
          -3.768416088216332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4435758797502576,
          -7,
          -7,
          -7,
          -3.2610248339923973,
          -7,
          -7,
          -2.532928015757083,
          -2.6263403673750423,
          -7,
          -7,
          -3.393013327901293,
          -2.7043888651701895,
          -7,
          -7,
          -2.5349774634615505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7065044222332766,
          -2.3645885137749625,
          -3.4136070709868043,
          -4.372208800370736,
          -7,
          -2.8432327780980096,
          -7,
          -2.9214263410152657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6718838191177494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0073209529227447,
          -3.834357112718405,
          -7,
          -7,
          -3.932372282147914,
          -7,
          -7,
          -7,
          -3.1790344659320064,
          -7,
          -3.5173038881240966,
          -7,
          -3.613589771790102,
          -7,
          -7,
          -7,
          -2.958159426578339,
          -7,
          -3.4448641829020725,
          -2.815396603595091,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7198282862543346,
          -7,
          -7,
          -7,
          -3.815972841673966,
          -7,
          -7,
          -3.4255545979519635,
          -7,
          -7,
          -3.769081787118219,
          -7,
          -3.5657297878311267,
          -7,
          -2.4148655692180863,
          -2.690970914278475,
          -7,
          -7,
          -4.044297447111979,
          -7,
          -7,
          -7,
          -7,
          -3.886377906758572,
          -7,
          -3.448242412634439,
          -7,
          -3.660770643527697,
          -7,
          -7,
          -7,
          -7,
          -3.1806992012960347,
          -3.2143138974243994,
          -7,
          -7,
          -4.869002774465852,
          -3.722502298201269,
          -4.168841090364729,
          -7,
          -7,
          -3.704554950656303,
          -3.9014038268252516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8614746688571686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.506369717095504,
          -7,
          -4.228644131738731,
          -7,
          -7,
          -3.09758330530031,
          -4.309204179670408,
          -7,
          -3.793021659845983,
          -4.729172892126178,
          -3.261823435154435,
          -3.502654678010023,
          -4.612306930268642,
          -3.3727446770262515,
          -3.4575791469957626,
          -2.73253996230942,
          -4.345158000269438,
          -4.434073653785051,
          -4.161231060219129,
          -2.231029638923225,
          -4.3680450262086765,
          -4.390573044154603,
          -2.7730038314669714,
          -7,
          -3.5742628297070267,
          -7,
          -4.91436784225932,
          -4.016824493667488,
          -3.5151027924982197,
          -3.5658183139700923,
          -3.8916675221214505,
          -4.375791597685192,
          -7,
          -7,
          -2.974787932213558,
          -3.436295195334751,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.181128699747295,
          -3.9366393882144446,
          -4.157446693916665,
          -2.8992731873176036,
          -3.785178517542211,
          -3.897275115194261,
          -3.9860547807696953,
          -3.8143142002074595,
          -4.367467742117974,
          -7,
          -3.7351870627759025,
          -3.7717344253867693,
          -7,
          -3.3573043401887683,
          -3.9719759088495237,
          -3.656690453523865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9310508467773912,
          -7,
          -3.5033820634737327,
          -4.523226041965701,
          -3.8778669740330005,
          -4.753874873446505,
          -7,
          -7,
          -7,
          -3.2569722899812006,
          -7,
          -5.4087706338279675,
          -7,
          -3.567990394261677,
          -7,
          -4.060244426898225,
          -3.9859949811851734,
          -4.319668091214678,
          -7,
          -7,
          -7,
          -3.7047830444928618,
          -7,
          -7,
          -3.6521350932027876,
          -2.9868471342502714,
          -3.748962861256161,
          -4.4483081629668995,
          -7,
          -7,
          -3.8506053969224783,
          -4.337219584418181,
          -3.417803722639881,
          -7,
          -7,
          -3.1067007323623543,
          -7,
          -2.5264226592624057,
          -3.630122642859312,
          -3.3917162351570154,
          -3.4234097277330933,
          -2.9882244123901995,
          -3.017559547973121,
          -2.299348789831753,
          -2.9995654882259823,
          -7,
          -3.2769785139092744,
          -3.102605194126567,
          -2.6722799280279195,
          -7,
          -2.8683504996479683,
          -0.9934804453918538,
          -3.0098473307709073,
          -2.4320066872695985,
          -2.704678374069052,
          -2.6597804193959593,
          -2.8604877374747018,
          -2.696356388733332,
          -2.621324682419535,
          -2.250420002308894,
          -3.57978359661681,
          -3.7275412570285567,
          -3.3807537708039,
          -2.744897231384195,
          -2.7026028413404273,
          -7,
          -2.7838930747319504,
          -2.948189037822062,
          -2.8414969837489883,
          -7,
          -7,
          -3.424595822549081,
          -2.501470072100412,
          -3.212897526069033,
          -3.3783979009481375,
          -7,
          -2.9736994962949725,
          -3.3963737275365067,
          -2.64064704020671,
          -2.146328125284129,
          -7,
          -2.336846920633673,
          -2.760723972141952,
          -2.1019129120616467,
          -3.519434194913703,
          -1.0695692111150856,
          -2.984414787243434,
          -3.221637755336672,
          -2.6111796985484577,
          -3.0979510709941502,
          -3.7378285058957847,
          -3.2441121152976153,
          -7,
          -2.670436865698442,
          -2.681090414494438,
          -2.720159303405957,
          -2.472712135814607,
          -3.6147917919564176,
          -2.479114039078266,
          -7,
          -1.7437988835406757,
          -2.8568496787251725,
          -3.4705574852172743,
          -3.052501563413781,
          -2.7610252517113727,
          -2.2308929853043895,
          -2.328065806834115,
          -3.3157604906657347,
          -3.9208534961212593,
          -2.4973066943841817,
          -7,
          -3.612836816232258,
          -3.288171433357922,
          -3.486642969023512,
          -1.581701955729663,
          -3.3917973471304803,
          -2.911068786880192,
          -3.0252473310667027,
          -2.6849735288231216,
          -2.5852897810780693,
          -2.2109869738321453,
          -2.334202350575515,
          -2.195240531806313,
          -3.399846712712922,
          -7,
          -2.9801083032031275,
          -2.4536780042348014,
          -7,
          -2.425153665754839,
          -3.021955025654265,
          -2.5697993757102093,
          -2.5155294493748626,
          -3.1225552211338643,
          -1.5777702383669767,
          -3.377943380255784,
          -1.352587832636258,
          -3.5764565324056203,
          -3.386498965550653,
          -2.6576703723114363,
          -3.5197623854242224,
          -2.9309490311675233,
          -7,
          -7,
          -7,
          -2.0593987627272057,
          -2.161225353364616,
          -1.6965505302126058,
          -7,
          -7,
          -7,
          -3.400710636773231,
          -2.941345766226938,
          -2.877999241615634,
          -2.08218675618735,
          -7,
          -3.454692449239477,
          -2.690786555281818,
          -3.4220971631317103,
          -7,
          -7,
          -2.858236335429513,
          -3.345765693114488,
          -3.2591158441850663,
          -2.965701346206212,
          -3.413243866728462,
          -3.0340934464167257,
          -3.17507672117621,
          -7,
          -3.130414185953231,
          -3.461348433647983,
          -7,
          -3.0471320265779482,
          -7,
          -7,
          -2.949064570524849,
          -2.626993231531775,
          -3.3557387836020354,
          -3.1067007323623543,
          -7,
          -3.326335860928751,
          -7,
          -2.769981211895668,
          -7,
          -7,
          -7,
          -3.458889540995547,
          -7,
          -2.878678439139299,
          -7,
          -3.2317243833285163,
          -2.006902900435532,
          -2.7130236099429497,
          -3.329092647195331,
          -3.246203041837881,
          -2.9235341423585184,
          -3.2714100837230893,
          -3.9211139738366807,
          -3.453725936962835,
          -2.4010297608718005,
          -2.3759079631553948,
          -3.118595365223762,
          -3.470704429722788,
          -3.9197577805018944,
          -7,
          -7,
          -2.483462297921356,
          -2.370339227105049,
          -3.4408041673450787,
          -2.9513722165534486,
          -2.5628684747750716,
          -3.957798774929998,
          -3.636287252098513,
          -3.6196150057428067,
          -2.696749435201623,
          -2.8876641776072915,
          -3.6398847419163043,
          -2.815577748324267,
          -2.6549462265843444,
          -3.626032247829019,
          -3.6267508536833932,
          -3.242342621024643,
          -2.46169268798851,
          -2.8187840149946926,
          -2.5903879807436074,
          -3.621539773321731,
          -3.0530357378949193,
          -3.9393694700746598,
          -3.018534070428183,
          -3.3283796034387376,
          -3.1653927267698108,
          -2.6024940688072813,
          -2.660533466698088,
          -1.7877087345941876,
          -2.9827233876685453,
          -3.111598524880394,
          -3.74401901732498,
          -2.6848925855320145,
          -3.984932166067412,
          -2.199974858252197,
          -2.948779613737823,
          -1.5631994287047477,
          -2.8478193472952396,
          -3.4648371618111513,
          -2.871621576917034,
          -2.725421550074259,
          -7,
          -3.65662517127951,
          -7,
          -7,
          -2.6463547060207597,
          -2.336308661760076,
          -2.9549295985668733,
          -3.3271545124094315,
          -3.624127331511917,
          -1.9003244482493893,
          -3.9219984313082707,
          -2.439891652622822,
          -2.375071602059195,
          -3.9278321328665817,
          -2.6079908585471747,
          -2.8525354413843815,
          -3.9264453478183894,
          -2.7047937573650462,
          -3.9181876613589255,
          -3.0313579619570263,
          -1.748246333307141,
          -2.6957880262155345,
          -2.8577344348976292,
          -7,
          -3.027879409207207,
          -2.9489506102455483,
          -2.7183434903473924,
          -2.640175541918576,
          -2.9459159885729576,
          -7,
          -2.264543971936078,
          -2.576034048242217,
          -2.1177035011801437,
          -3.6241789257480224,
          -7,
          -3.722428241979694,
          -2.7808571437595684,
          -2.596385605735793,
          -2.358382804215933,
          -3.6306312440205,
          -2.1550562214147613,
          -3.9525018478630236,
          -3.921842481405858,
          -3.9210098014970343,
          -2.187495313840703,
          -7,
          -2.396411996799786,
          -2.7671558660821804,
          -1.8897592881369922,
          -2.0350264999666092,
          -7,
          -3.934952707817858,
          -3.060603418246075,
          -3.368565785360332,
          -2.7817147401787943,
          -7,
          -7,
          -2.5857209678955364,
          -2.563595902178134,
          -2.4496398236151484,
          -3.95698436774276,
          -2.529510797360305,
          -2.880490776744196,
          -3.6444878264138585,
          -3.4719075029395614,
          -7,
          -3.403855575481451,
          -3.1860612225861757,
          -2.8819142594125116,
          -3.0765312192538117,
          -3.9273703630390235,
          -7,
          -1.3828369208823523,
          -1.9367507024376451,
          -3.9177155165594932,
          -3.445085022719354,
          -3.1931245983544616,
          -7,
          -7,
          -3.9216344610537055,
          -3.9278321328665817,
          -7,
          -2.396811726205253,
          -2.285755813383243,
          -2.3081294666226277,
          -3.062923679353503,
          -3.9501213475113732,
          -2.9334310430151227,
          -7,
          -3.632001499438424,
          -3.064036594084469,
          -7,
          -2.933159642052778,
          -7,
          -3.3333464984243864,
          -3.473681568244996,
          -2.5910441739661128,
          -3.621332101120809,
          -3.6179434348289727,
          -3.690771803180663,
          -3.273695587930092,
          -3.325720858019412,
          -3.3714834772045275,
          -3.2029875322570165,
          -2.3410765519431496,
          -1.844533654643206,
          -2.3417491818783844,
          -1.6870169853097867,
          -1.991364540377839,
          -2.4635446177561664,
          -2.761238656368773,
          -2.733397909361422,
          -7,
          -3.9179254220647413,
          -2.38104186650127,
          -2.572770615225975,
          -3.3311234878466514,
          -3.9229848157088827,
          -2.596677537910252,
          -3.6354334783407656,
          -3.0878942990597675,
          -7,
          -2.839213334538938,
          -2.248952111278853,
          -3.9557358422776656,
          -3.3240079328600416,
          -2.2013597061080556,
          -3.49605279796331,
          -2.779341797976024,
          -2.8314126702682967,
          -2.5719774398876987,
          -3.0626289832522775,
          -2.83159556961061,
          -3.0433265468530726,
          -3.464638559095033,
          -2.6044350997705297,
          -7,
          -3.18440748541232,
          -1.7437922504744756,
          -3.270897092861874,
          -2.8502376796666677,
          -2.300630970538965,
          -3.4433151518310963,
          -2.771203913197322,
          -3.945222316635341,
          -2.4197263393238386,
          -3.15755749745902,
          -3.3409891196804447,
          -2.4347643707610316,
          -2.7489198511564084,
          -7,
          -2.087559066692512,
          -4.00881300905209,
          -2.5513337987796993,
          -7,
          -7,
          -3.157809218605523,
          -3.2253609803726597,
          -3.1514720011315966,
          -3.3384564936046046,
          -3.9262909868848634,
          -3.1666274307398634,
          -2.824288582459545,
          -2.182482228792729,
          -2.9880316788997914,
          -3.507111357932569,
          -7,
          -2.366549150596584,
          -2.5999822600339004,
          -7,
          -3.921790485658187,
          -3.325464349547066,
          -2.8864473369430734,
          -2.804639117480264,
          -2.7239115285711124,
          -7,
          -3.9184497424011577,
          -2.9728711024944356,
          -2.853241780329114,
          -3.2200557602513413,
          -3.023046584075505,
          -1.9842976372678365,
          -2.77724438595689,
          -3.919862253555538,
          -3.620864475265121,
          -7,
          -7,
          -3.3485968911765482,
          -3.2483166403417796,
          -7,
          -3.2518814545525276,
          -3.803115554890027,
          -3.2111650546063077,
          -2.7814119230869983,
          -2.432182415639667,
          -3.985830489858392,
          -7,
          -3.9196532823103643,
          -1.5074491231009153,
          -2.9969929818907057,
          -2.214217852914229,
          -2.0583372711707346,
          -3.149248445976245,
          -3.0020700214018694,
          -3.234213474838595,
          -3.4584363903733517,
          -2.8156515263728443,
          -2.7103777725439344,
          -2.0474565968529115,
          -2.334989586483437,
          -2.847043569352527,
          -2.3598817355463755,
          -2.9075579250873234,
          -2.5634294911583058,
          -2.302961138562647,
          -2.1280064197702564,
          -1.533045512062462,
          -3.6163179419637905,
          -2.8548624729879006,
          -1.8051273703396125,
          -2.727846132072248,
          -2.7499635402286176,
          -7,
          -2.6591812433275916,
          -2.418595284333892,
          -7,
          -3.3268681598936816,
          -3.500236474825639,
          -3.2317304480045337,
          -2.064851907151343,
          -3.92957217907655,
          -3.0189564176376464,
          -3.62490060220449,
          -3.254934589077441,
          -2.4764897696670043,
          -3.211876648386651,
          -3.3250536206057983,
          -2.485879093748479,
          -2.037963736953456,
          -2.0155940853488956,
          -1.7838157793202036,
          -1.696804163033507,
          -3.6264398375610822,
          -1.9887152789244085,
          -3.920905604164024,
          -7,
          -3.917820481993697,
          -2.7891639074176022,
          -2.44389944970457,
          -3.461698570306548,
          -1.864078461683041,
          -2.5702092522113107,
          -2.97904226290937,
          -2.2962701975267965,
          -3.4619984629288245,
          -2.090555945268356,
          -3.472902651803664,
          -2.7299742856995555,
          -2.6990785643870536,
          -3.3478664523399497,
          -3.424805437932406,
          -2.449018025870428,
          -3.497559335583093,
          -7,
          -2.4051444819154186,
          -3.2046780026252124,
          -2.5594025837993186,
          -7,
          -2.7805093291574954,
          -3.453776859690442,
          -2.7740941824480316,
          -2.5517939440868913,
          -2.7023642471251033,
          -2.5997084462241684,
          -3.9238654751855013,
          -7,
          -2.838974954955468,
          -2.552110290277687,
          -3.470655453745076,
          -2.22286364804204,
          -2.1245687128412167,
          -2.5738298090754212,
          -1.8237737061247918,
          -3.4412760841240377,
          -3.92147838037569,
          -3.975459381886746,
          -4.224150912195789,
          -7,
          -4.0824981385057795,
          -3.929214503737394,
          -3.5437370271986532,
          -4.188422214635828,
          -3.524229160681178,
          -2.944529423824312,
          -3.6373646266794686,
          -7,
          -7,
          -3.524244622768923,
          -3.8266132855775226,
          -3.4864965980488223,
          -4.465680211598278,
          -3.661355126505084,
          -3.6827386830952396,
          -3.9691129189016645,
          -3.851243056390621,
          -7,
          -4.447476741667826,
          -7,
          -3.2997770081757754,
          -2.8980075137525616,
          -4.466333688132342,
          -3.6859777483144347,
          -3.8885725968575997,
          -7,
          -3.079407382205769,
          -7,
          -3.3632122826984414,
          -4.461393467035359,
          -7,
          -7,
          -4.300769340770549,
          -7,
          -3.4448971661165024,
          -3.762753564933374,
          -2.650815298037088,
          -3.11150254819892,
          -3.339507091038311,
          -2.7942848236913926,
          -3.0775914946999468,
          -3.1387586872454243,
          -3.1859296516724465,
          -3.4032492455205543,
          -2.9400762423001052,
          -1.6866618002274048,
          -2.2582380782820484,
          -3.5958390150297412,
          -2.666211711073482,
          -2.444695882802925,
          -7,
          -2.472310103458907,
          -2.779987084404963,
          -2.624642998257259,
          -3.1071482757090045,
          -4.498076109372166,
          -7,
          -7,
          -2.6950498311524966,
          -2.888225045301837,
          -4.168980419083789,
          -3.1554372598130094,
          -2.0220226780388404,
          -3.335959106148248,
          -2.602313552390272,
          -7,
          -4.117533119495977,
          -3.182436601464549,
          -4.3870693269320205,
          -7,
          -3.0281644194244697,
          -3.3387676596864866,
          -3.0569048513364727,
          -3.120281378495627,
          -2.506991818723615,
          -2.675228253593064,
          -2.77367125082646,
          -2.7998149290549836,
          -3.2520273296527864,
          -2.313958872681808,
          -2.9957725377281763,
          -3.361160995195026,
          -2.8991655304327213,
          -7,
          -2.8941683183448936,
          -3.031103116367241,
          -7,
          -7,
          -3.4450330705113963,
          -7,
          -7,
          -7,
          -1.7886949330230073,
          -1.395451208268343,
          -1.274108033424912,
          -7,
          -3.9904276584852636,
          -2.0075047762576936,
          -3.4108615542165976,
          -1.3332552999187972,
          -2.3974799238385747,
          -1.8669838821074494,
          -7,
          -1.9284311273607093,
          -1.4609288261682685,
          -2.363166473460289,
          -4.000737673774033,
          -3.6283276135598355,
          -2.851302038119233,
          -1.7906369619317033,
          -7,
          -3.6428600525844916,
          -2.798179627198126,
          -7,
          -2.773932647467645,
          -2.0869527242574843,
          -1.3411158971195234,
          -7,
          -2.310258703941368,
          -7,
          -3.327205626925103,
          -3.675246601092355,
          -2.336201203518688,
          -3.1407530894468425,
          -7,
          -3.424595822549081,
          -7,
          -7,
          -1.2242740142942576,
          -7,
          -1.5543757252825565,
          -1.1639224845618,
          -7,
          -7,
          -3.711089840140532,
          -1.6128320019979738,
          -3.1481911962420113,
          -3.4658288153574364,
          -2.9023655589976114,
          -1.5914621306074836,
          -3.345177616542704,
          -1.4046223390223078,
          -1.816445265937485,
          -3.526339277389844,
          -7,
          -1.0528443612908982,
          -1.0872307423607976,
          -7,
          -2.4560062365109467,
          -7,
          -7,
          -3.594972327590039,
          -1.5279979470644702,
          -1.4669628805341084,
          -1.5437694575513685,
          -2.9246853240244777,
          -2.976304116552003,
          -7,
          -4.1739143398014065,
          -2.1975061070696156,
          -2.5246019076142345,
          -3.938219417812743,
          -1.5033581233797837,
          -1.4432138730134176,
          -7,
          -3.4427409988358755,
          -1.2548616304445581,
          -1.525040258236046,
          -1.5424664648514743,
          -2.2873279149265278,
          -1.5779153111051087,
          -2.5992359578069637,
          -2.519696767159853,
          -2.6233432833604797,
          -1.6739954057443227,
          -3.6183619311098782,
          -3.3692622539148505,
          -7,
          -2.8087821056864235,
          -3.919862253555538,
          -4.4881133818002965,
          -7,
          -1.721735691640912,
          -3.5524248457040857,
          -2.142782517687065,
          -3.3001605369513523,
          -2.933681925274947,
          -2.3290722907547305,
          -3.249722340340543,
          -1.3026454760706987,
          -7,
          -1.5475513896384343,
          -7,
          -1.0092351981682364,
          -1.3563206759578796,
          -4.104521252618329,
          -3.3189498101690718,
          -1.7526303780711907,
          -1.8561146882139077,
          -1.7356264276341637,
          -2.058731591462859,
          -7,
          -7,
          -3.2216228577487898,
          -7,
          -7,
          -3.452501996795578,
          -3.1105591035490403,
          -7,
          -2.347241284193564,
          -1.998076772254723,
          -7,
          -3.085035605826861,
          -2.7058134205252036,
          -2.153126132579586,
          -3.3408900787491365,
          -2.188587626698794,
          -2.654451585890892,
          -2.1999336736522723,
          -2.9038557135762706,
          -4.09282587292398,
          -2.645422269349092,
          -2.8061277719906874,
          -3.0105312308878815,
          -2.7376894903529134,
          -3.918554530550274,
          -2.3931418587761177,
          -2.379231997820056,
          -2.3433101031623416,
          -2.4239087107304087,
          -4.023787279789847,
          -2.568536957184299,
          -3.625312450961674,
          -3.025510672852581,
          -2.681456607814865,
          -3.077731179652392,
          -2.6759897286249137,
          -2.139323367218689,
          -3.956696564894651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.728781101494365,
          -7,
          -7,
          -7,
          -7,
          -4.224092588494267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8705599579152383,
          -3.9120093755869783,
          -7,
          -2.705607163404605,
          -4.794280028116081,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.567567425898288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0965624383741357,
          -4.443813527217629,
          -7,
          -7,
          -7,
          -7,
          -3.6845760873884554,
          -7,
          -7,
          -7,
          -7,
          -2.0144405287205007,
          -4.211910420101903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.457685133412637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.126910294600161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.453397341833707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3506356082589543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.288249225571986,
          -3.6744937172963503,
          -7,
          -7,
          -7,
          -7,
          -3.2796669440484556,
          -2.8733734517676273,
          -1.7731110257441203,
          -2.9429995933660407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7579423494097774,
          -7,
          -7,
          -7,
          -4.995959697491984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008451123572122,
          -7,
          -7,
          -7,
          -4.376394442037267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.547479333931025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3663264876639647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.644832328825636,
          -7,
          -3.989605530597564,
          -7,
          -7,
          -4.0755315946639925,
          -7,
          -3.415974411376566,
          -7,
          -7,
          -3.1476763242410986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7058637122839193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4647449647018136,
          -7,
          -2.034785967937848,
          -2.657374601115011,
          -7,
          -7,
          -7,
          -3.4756711883244296,
          -3.428620672671939,
          -7,
          -7,
          -3.7627723132112116,
          -3.1803552964487887,
          -7,
          -7,
          -3.075911761482778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9351040211514494,
          -7,
          -7,
          -4.868245473292132,
          -7,
          -7,
          -7,
          -3.250175948083925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0355483209306082,
          -7,
          -7,
          -7,
          -7,
          -2.8698182079793284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062581984228163,
          -7,
          -3.53848994978385,
          -7,
          -7,
          -7,
          -2.7310795776557337,
          -7,
          -7,
          -7,
          -7,
          -3.3057811512549824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.501470072100412,
          -7,
          -4.019327232480801,
          -7,
          -7,
          -4.295830894958585,
          -7,
          -7,
          -7,
          -3.368286884902131,
          -3.9766250520507276,
          -7,
          -7,
          -7,
          -3.578524605274993,
          -3.4385423487861106,
          -4.71473845170617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.796370782244777,
          -7,
          -7,
          -4.242309477629206,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8144473785224875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.509148736402258,
          -7,
          -7,
          -3.6456078256355733,
          -4.172989479689795,
          -7,
          -7,
          -7,
          -3.4776637838119564,
          -2.998368334404169,
          -7,
          -4.03763704841194,
          -3.518908573691414,
          -3.643156465619706,
          -7,
          -4.421381787662514,
          -4.522492051086991,
          -2.9942381684952073,
          -7,
          -4.376522210604112,
          -3.2082811125687116,
          -7,
          -4.020257669505882,
          -7,
          -4.543608690196552,
          -7,
          -3.9353182915022433,
          -4.1192558892779365,
          -7,
          -4.662294967076999,
          -7,
          -7,
          -3.6632876671684618,
          -7,
          -4.6811236000226275,
          -7,
          -3.727351448929302,
          -2.895238327804661,
          -7,
          -7,
          -3.982014802967955,
          -3.7192760297176806,
          -4.3174992211071315,
          -7,
          -4.19707829984804,
          -4.590555776208226,
          -3.9095025414054154,
          -7,
          -7,
          -7,
          -4.759436159177652,
          -7,
          -7,
          -2.576528116757655,
          -4.487609666333967,
          -3.906182347343318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.380844126464666,
          -3.4037209086266897,
          -2.9084850188786495,
          -4.215324660030519,
          -4.041327818151258,
          -5.2296733116017595,
          -7,
          -3.4236553925733784,
          -7,
          -3.843525053233252,
          -7,
          -7,
          -3.614862077517649,
          -4.228759555435635,
          -7,
          -4.02960695581261,
          -4.1380657456377685,
          -4.7858279199958655,
          -7,
          -7,
          -7,
          -4.055438403167174,
          -7,
          -7,
          -7,
          -4.11287778605754,
          -7,
          -4.649403016174663,
          -7,
          -7,
          -7,
          -4.304770488523259,
          -3.02201573981772,
          -7,
          -7,
          -2.5185139398778875,
          -3.2702128548962426,
          -3.1524776333829094,
          -7,
          -7,
          -2.5571060060508883,
          -3.0666985504229953,
          -3.027796003500773,
          -2.853393977450666,
          -7,
          -7,
          -3.3014640731432996,
          -7,
          -2.0189165076565057,
          -3.6570558528571038,
          -3.144574207609616,
          -2.3649771503110424,
          -2.993152697040286,
          -1.5517776163059283,
          -2.7985643303338046,
          -2.095839662541678,
          -2.8260748027008264,
          -3.028503473608217,
          -1.9529538008322767,
          -1.6097468199942533,
          -3.3492775274679554,
          -3.5769169559652068,
          -2.220108088040055,
          -2.7977968951941996,
          -2.2013971243204513,
          -7,
          -3.5216827902622145,
          -3.3881151384632187,
          -3.1090087311892693,
          -7,
          -2.501470072100412,
          -7,
          -7,
          -7,
          -2.916453948549925,
          -7,
          -3.658845776321838,
          -2.966610986681934,
          -3.028571252692538,
          -2.9751253198007745,
          -7,
          -2.1561788370346315,
          -2.420615770625765,
          -2.4865316776156754,
          -7,
          -2.546542663478131,
          -3.361727836017593,
          -7,
          -2.351338936973356,
          -2.6725596277632757,
          -7,
          -7,
          -2.9109799468508544,
          -3.4597542491145123,
          -2.272835795025385,
          -1.9789685974894828,
          -2.6868990162494977,
          -7,
          -2.9222609572605434,
          -7,
          -2.3797082949479225,
          -7,
          -3.143014800254095,
          -3.271318745081179,
          -7,
          -2.1637298142593724,
          -1.4464007609116358,
          -7,
          -7,
          -2.4336555609385724,
          -7,
          -7,
          -4.157688410663372,
          -3.35869609957381,
          -7,
          -2.866308441316016,
          -3.5229655954919865,
          -3.7683420586445333,
          -3.2638726768652235,
          -2.746673112470323,
          -2.2036819649870214,
          -1.6862127738782688,
          -2.2890436366441214,
          -7,
          -7,
          -3.6686281593438146,
          -2.114076960824089,
          -7,
          -2.6665179805548807,
          -3.2121114724935333,
          -2.927027994490033,
          -2.580486338650246,
          -3.3752367289481646,
          -2.3337538404726046,
          -7,
          -2.1248301494138593,
          -7,
          -7,
          -7,
          -3.101231386790699,
          -3.0224283711854865,
          -7,
          -7,
          -7,
          -2.6847418143802058,
          -7,
          -3.0884904701823963,
          -7,
          -2.646893624167745,
          -7,
          -7,
          -2.7234556720351857,
          -3.3526326642053124,
          -1.4859397197668511,
          -7,
          -3.1085650237328344,
          -2.8410464654093035,
          -7,
          -7,
          -7,
          -2.8211858826088454,
          -7,
          -7,
          -3.42298357920928,
          -2.586727921309507,
          -3.39208111979816,
          -7,
          -7,
          -3.2833012287035497,
          -7,
          -7,
          -2.9011039843968383,
          -7,
          -7,
          -3.5776066773625357,
          -2.411198673955554,
          -2.0343164474392905,
          -7,
          -7,
          -7,
          -7,
          -2.062492448204363,
          -7,
          -7,
          -7,
          -3.4619484952037616,
          -7,
          -2.714999967412042,
          -3.419625360887743,
          -2.968794159231461,
          -1.7844102063306588,
          -2.7089062809976463,
          -7,
          -7,
          -3.384085811808576,
          -3.8664054983780547,
          -7,
          -3.446381812222442,
          -3.020726778628466,
          -2.8501747908446484,
          -2.937893850328434,
          -3.018561812897253,
          -7,
          -7,
          -7,
          -3.0173781687181025,
          -3.039678449361962,
          -7,
          -2.928907690243953,
          -2.981346957908639,
          -7,
          -3.46553155697355,
          -3.414137362184477,
          -2.849214606209089,
          -2.59402403573142,
          -7,
          -3.3218457327785256,
          -3.0457140589408676,
          -7,
          -7,
          -3.4781334281005174,
          -3.0177635091293156,
          -2.977418730245156,
          -2.636655029117369,
          -7,
          -3.3469394626989906,
          -7,
          -3.407427989055528,
          -3.44544851426605,
          -3.4848690327204026,
          -2.8564267724702446,
          -2.6334684555795866,
          -2.0014903272465965,
          -7,
          -2.9190780923760737,
          -7,
          -2.309128961967035,
          -3.5935075893317654,
          -2.625653611314028,
          -2.915575698540003,
          -2.066499279114226,
          -3.321339474830754,
          -7,
          -3.205745540942662,
          -2.993083360698062,
          -3.5126843962171637,
          -3.523226041965701,
          -7,
          -7,
          -3.1983821300082944,
          -2.4430020715710614,
          -3.251938666314157,
          -3.14035088925253,
          -7,
          -1.9128670578471783,
          -7,
          -2.57611089412084,
          -2.604023443105566,
          -7,
          -2.6430936070305093,
          -3.4508807115632663,
          -7,
          -3.0443437348951075,
          -7,
          -3.458788881710845,
          -1.5528622465259387,
          -2.7798025621902336,
          -2.687677564973793,
          -7,
          -2.6924944075030846,
          -3.2000292665537704,
          -3.1202447955463652,
          -3.2759253069068666,
          -3.60151678365001,
          -7,
          -2.878744437967794,
          -2.9710437918360286,
          -2.567752698038627,
          -7,
          -7,
          -3.6830470382388496,
          -3.2956770340174653,
          -2.7562556487542333,
          -2.7770641547424293,
          -7,
          -2.6659560294539566,
          -7,
          -7,
          -7,
          -2.458562312981994,
          -7,
          -2.812435847543729,
          -2.716122638919687,
          -2.0609724061803028,
          -2.594191581153005,
          -3.490660653356137,
          -3.4581844355702627,
          -3.0633333589517497,
          -3.5581083016305497,
          -3.078967336244875,
          -7,
          -7,
          -3.0337252442056895,
          -2.8495729561290286,
          -2.808750972349595,
          -3.5211380837040362,
          -2.8509013873447464,
          -3.448212941467618,
          -3.188084373714938,
          -3.9586594270529334,
          -3.4956830676169153,
          -3.641478421525803,
          -7,
          -2.9954596866210643,
          -3.792951708250132,
          -3.4350476413399647,
          -7,
          -1.6594079752165853,
          -2.4528083053649254,
          -3.404320467221731,
          -7,
          -4.105493153279868,
          -7,
          -7,
          -7,
          -3.436480695009495,
          -7,
          -2.829303772831025,
          -2.5123479092054417,
          -2.913681425341403,
          -3.8449739381468877,
          -7,
          -3.142880875861225,
          -7,
          -3.452706226511029,
          -3.2487087356009177,
          -7,
          -3.248561741359574,
          -3.4163075870598827,
          -3.4604467838807205,
          -3.0269416279590295,
          -3.245359885849709,
          -7,
          -7,
          -7,
          -2.784260582566084,
          -3.4372747974101237,
          -3.2643455070500926,
          -2.436162647040756,
          -2.8224482994972595,
          -2.6141299110951928,
          -2.9037409406215384,
          -2.3926067758336975,
          -2.585009279902461,
          -2.401113213955382,
          -3.3060217652155757,
          -3.4702634469650784,
          -3.415974411376566,
          -7,
          -2.7299742856995555,
          -3.4634450317704277,
          -3.152441238058955,
          -3.4212747912103465,
          -2.9079485216122722,
          -7,
          -3.372584727534948,
          -3.420945405921972,
          -2.96649372072148,
          -2.7411611641985343,
          -7,
          -3.1409477713426623,
          -2.3280153540825674,
          -3.5644293269979834,
          -3.6554265877459184,
          -3.100485422642873,
          -2.8246680920490563,
          -2.7669083343103593,
          -2.6224442957616705,
          -3.2062185182548055,
          -3.478854967528663,
          -3.053142493993366,
          -7,
          -3.0905323648171175,
          -1.6386537936044188,
          -3.5375672571526753,
          -7,
          -2.4631772812264816,
          -2.9360107957152097,
          -2.6911920418198627,
          -2.885361220031512,
          -2.3452006933769454,
          -2.8589881003426956,
          -3.1815577738627865,
          -2.3508748293464587,
          -2.526538084663585,
          -7,
          -2.0092770195830605,
          -4.0948203803548,
          -2.6043669434285777,
          -7,
          -7,
          -3.4626974081017172,
          -3.125481265700594,
          -3.4435758797502576,
          -3.1742052269401473,
          -7,
          -2.8855025689284157,
          -3.110126552632497,
          -2.3754075333087856,
          -7,
          -3.7017808510958523,
          -7,
          -2.6214730323720974,
          -2.7065755539150183,
          -3.065206128054312,
          -7,
          -7,
          -3.6330642726914992,
          -3.2849943867229943,
          -3.5830853663476874,
          -7,
          -7,
          -3.4367985102318035,
          -2.674248595527798,
          -3.1085650237328344,
          -3.1320995219165044,
          -2.7456323657784334,
          -3.077401823751774,
          -7,
          -3.418135498425232,
          -7,
          -7,
          -7,
          -7,
          -3.4085791254086675,
          -7,
          -2.939581646768845,
          -2.7589118923979736,
          -3.4370631787035837,
          -3.09402167763423,
          -7,
          -7,
          -7,
          -1.631065576393257,
          -7,
          -2.7668324495485024,
          -2.2733417616789073,
          -3.72876758516651,
          -3.521399628115376,
          -7,
          -7,
          -2.7982507258405214,
          -3.105453410538649,
          -2.3245154042476206,
          -2.7862188721316765,
          -3.2582061260688273,
          -2.1346020532876793,
          -3.200303182981585,
          -2.4323277922616042,
          -2.709027541498756,
          -2.3969835082752007,
          -2.122670875152478,
          -7,
          -2.9810631808506,
          -2.475792212285615,
          -3.453776859690442,
          -2.6298624609601275,
          -7,
          -3.637689819118401,
          -2.795184589682424,
          -3.2467447097238415,
          -2.9890936926103255,
          -3.0974886866205247,
          -3.5364732165424573,
          -2.253558269307043,
          -3.441852175773292,
          -3.03009349218267,
          -3.1295287738587763,
          -3.212453961040276,
          -2.1945873632331065,
          -2.458098017406232,
          -3.270174000547579,
          -2.647627436477339,
          -2.7696937519421607,
          -2.6094876898532853,
          -2.4363217001397333,
          -2.6055988523188973,
          -4.00363862217658,
          -2.5473644129795048,
          -7,
          -7,
          -7,
          -3.2921452678141216,
          -2.7563594434924856,
          -3.4702634469650784,
          -2.794906106516804,
          -2.5258774093447136,
          -3.455606112581867,
          -2.7822678165784755,
          -7,
          -2.4200780505130677,
          -3.5024271199844326,
          -3.2332500095411003,
          -2.9542425094393248,
          -3.2011238972073794,
          -3.7557752085304474,
          -2.9044368413491313,
          -3.8987211410850873,
          -7,
          -2.716055539354098,
          -3.470945147978499,
          -2.628604007178344,
          -7,
          -2.8237349883987313,
          -3.446537167073644,
          -3.048053173115609,
          -2.634954313027654,
          -2.966200417217455,
          -2.9293167267534956,
          -3.4240645254174877,
          -7,
          -3.0642707529740063,
          -3.4572761860613257,
          -7,
          -2.9051209859322786,
          -2.7366620446156418,
          -2.9888561135661607,
          -2.3401220669202907,
          -7,
          -3.4164740791002206,
          -4.618299182370601,
          -4.78738962135211,
          -7,
          -7,
          -4.253200650903366,
          -3.7117566286781725,
          -7,
          -3.9147978438103976,
          -3.71618147919181,
          -4.065355601289965,
          -7,
          -4.348012638422195,
          -4.259131787155348,
          -5.0070048320815355,
          -4.303962418375775,
          -7,
          -4.391860967473324,
          -4.0303973008567615,
          -7,
          -7,
          -7,
          -5.391753492606618,
          -7,
          -3.8594265299129775,
          -3.4731364734564774,
          -7,
          -4.67817226232306,
          -7,
          -7,
          -3.710300751607476,
          -7,
          -4.219182700931299,
          -4.365413100076178,
          -7,
          -7,
          -7,
          -7,
          -4.484271360086347,
          -3.764151215182033,
          -3.255403175912266,
          -2.674992288098586,
          -3.6481203953298564,
          -2.9115800295579106,
          -3.213960237403306,
          -3.045127306568027,
          -3.290591042549338,
          -2.942900541140294,
          -3.3539861346639293,
          -2.5193174451614886,
          -2.2535218195346234,
          -3.4320504882965372,
          -3.510077924907464,
          -2.9910870235879203,
          -7,
          -2.977679362510885,
          -2.9421073089893555,
          -3.1344958558346736,
          -3.444929147447511,
          -3.8085485512404054,
          -7,
          -7,
          -3.0708502534275732,
          -3.332204135799646,
          -4.7539990265859995,
          -7,
          -2.5888317255942073,
          -3.4681995860726125,
          -3.2931697115807563,
          -7,
          -4.931889916029512,
          -3.5461723683169426,
          -3.793347951733536,
          -7,
          -3.3637247690063745,
          -3.2607866686549762,
          -3.2922491469632345,
          -3.311541958401195,
          -3.036276545653646,
          -3.4532673635246596,
          -3.1768840607081366,
          -3.135781751822861,
          -3.2043913319193,
          -2.8004024124640825,
          -3.567976301950993,
          -3.7601207852645677,
          -3.3736203980607287,
          -7,
          -3.304131339528794,
          -3.453970311619139,
          -7,
          -7,
          -3.1179338350396413,
          -7,
          -7,
          -7,
          -2.443297610528981,
          -1.2613174455417835,
          -1.6217621131032312,
          -7,
          -3.0042138618420258,
          -2.4606805234666274,
          -3.3587911623917237,
          -1.9965970875309715,
          -2.367666464108184,
          -2.10283374010311,
          -7,
          -2.206575032733398,
          -1.4348821563488658,
          -2.0874974724042636,
          -7,
          -3.8897497752640375,
          -2.7218106152125467,
          -2.161107477642937,
          -7,
          -7,
          -2.565311056175449,
          -7,
          -2.805636766305935,
          -2.019957892316097,
          -1.4839205244275175,
          -7,
          -2.5115667556967685,
          -7,
          -3.441852175773292,
          -4.318282514840762,
          -2.7700705006688313,
          -3.5237738403252923,
          -7,
          -3.212897526069033,
          -1.2242740142942576,
          -7,
          -7,
          -7,
          -1.3989386742041412,
          -1.5572683665739167,
          -7,
          -3.443888546777372,
          -7,
          -1.4328691191563043,
          -3.2388612088708095,
          -3.4823017672234426,
          -2.984864716816858,
          -1.4727162014619495,
          -3.01717251394567,
          -0.9627609703517096,
          -1.9161154053482399,
          -3.5511327007286075,
          -7,
          -1.1461280356782382,
          -1.1707535448630952,
          -7,
          -3.2529878004090285,
          -7,
          -7,
          -4.000434077479318,
          -1.770536428863159,
          -2.0031124836563117,
          -1.5043238869079565,
          -2.827081946227663,
          -2.971275848738105,
          -7,
          -7,
          -2.4002500911501117,
          -2.649443040175375,
          -3.4679039465228003,
          -1.2698720136735946,
          -1.353829848797285,
          -3.2577985291530305,
          -7,
          -1.1884851927829543,
          -1.882366565539136,
          -1.4327763469597874,
          -2.60422605308447,
          -1.912224047434943,
          -2.1528995963937474,
          -2.731876434589787,
          -2.315476407977569,
          -1.939760173603782,
          -3.827756862978617,
          -3.2586372827240764,
          -3.5413295776666933,
          -3.4243915544102776,
          -7,
          -7,
          -7,
          -1.904038968600478,
          -7,
          -2.6676712278896417,
          -3.150961006271017,
          -3.375506847812425,
          -3.0397988994599308,
          -3.048247531803974,
          -1.2880936272069723,
          -7,
          -1.0881683171508576,
          -7,
          -1.2278569950445073,
          -1.5291070133753117,
          -7,
          -2.938186037505905,
          -1.858014813118205,
          -1.8304184418497222,
          -2.014431933015437,
          -2.1227618173540255,
          -7,
          -7,
          -3.4149733479708178,
          -3.1327398382608846,
          -7,
          -7,
          -3.450659594627712,
          -3.5830853663476874,
          -2.290246669219223,
          -2.394013663157313,
          -3.4913616938342726,
          -3.44544851426605,
          -2.6872316010647745,
          -2.222305661264923,
          -7,
          -2.3564083270389813,
          -2.9747419045009504,
          -2.668007141833563,
          -3.296281174399547,
          -7,
          -3.497067936398505,
          -2.459057254641927,
          -7,
          -3.4827307000799426,
          -3.40705081480425,
          -2.809572662995666,
          -2.4222888260527875,
          -2.349832359203467,
          -2.960787780819836,
          -7,
          -2.3447664235957415,
          -2.9544033294677883,
          -3.4410664066392633,
          -2.9425041061680806,
          -2.7224693858840308,
          -2.5188428262865648,
          -2.0778951394943377,
          -3.5203525040833177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.884323253366666,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.099876225207085,
          -7,
          -7,
          -4.619615005742807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.470513392168665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.463474909963959,
          -7,
          -7,
          -7,
          -3.1855421548543754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.794648350506729,
          -7,
          -7,
          -3.2474822606770544,
          -7,
          -3.2350231594952237,
          -3.6277753752293034,
          -2.926342446625655,
          -7,
          -7,
          -2.455606112581867,
          -2.840106094456758,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.115133246647497,
          -5.093236019613618,
          -4.785244391626177,
          -7,
          -3.3783979009481375,
          -7,
          -2.916453948549925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6461095219788477,
          -7,
          -3.132579847659737,
          -7,
          -7,
          -7,
          -7,
          -3.7069736761761782,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.718501688867274,
          -2.4265112613645754,
          -3.874945436085532,
          -7,
          -5.346613081976176,
          -7,
          -3.2487087356009177,
          -7,
          -7,
          -7,
          -7,
          -3.7444494574467986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3234583668494677,
          -7,
          -7,
          -7,
          -7,
          -4.352568386179309,
          -2.9197751944228614,
          -7,
          -3.390758528738717,
          -7,
          -7,
          -4.149803938227022,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.335792101923193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.388509715314879,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.732956369575625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3643633546157306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6160551949765862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.118264726089479,
          -7,
          -7,
          -2.8130803608679105,
          -7,
          -7,
          -7,
          -3.6157828483192556,
          -7,
          -7,
          -7,
          -3.4410139714466967,
          -3.75767433350098,
          -7,
          -3.266231696689893,
          -7,
          -3.1646502159342966,
          -7,
          -3.2415081678196804,
          -3.4565684542382322,
          -7,
          -3.74170298395774,
          -3.5949912045608907,
          -7,
          -7,
          -7,
          -3.471438407389299,
          -7,
          -7,
          -3.615611083250255,
          -3.00987563371216,
          -7,
          -7,
          -2.6314437690131722,
          -3.1586639808139894,
          -7,
          -2.991779669753309,
          -7,
          -7,
          -7,
          -3.8015720810951765,
          -3.1760912590556813,
          -2.945222316635341,
          -3.180412632838324,
          -2.8575335121635788,
          -2.374998155900169,
          -7,
          -3.3089910290001643,
          -3.6094876898532853,
          -2.865893242431105,
          -7,
          -2.9531700326373262,
          -3.262332413822626,
          -2.743999441724611,
          -3.550105999347593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3136563466180315,
          -7,
          -7,
          -2.334357996662195,
          -3.685726814136828,
          -7,
          -7,
          -2.4498639247181444,
          -7,
          -3.098782124314692,
          -2.9344984512435675,
          -7,
          -3.552303109338354,
          -4.128218274974031,
          -7,
          -3.1965906541173066,
          -7,
          -7,
          -1.9608405922118757,
          -7,
          -7,
          -7,
          -2.78354628227035,
          -7,
          -3.3000517321200418,
          -3.3400473176613934,
          -3.4323277922616042,
          -7,
          -3.17516835576208,
          -3.3356584522893016,
          -2.9399030745454158,
          -7,
          -7,
          -3.5478977175630972,
          -3.4255342204982635,
          -2.914210891401378,
          -3.1958996524092336,
          -7,
          -3.2725377773752373,
          -7,
          -7,
          -7,
          -2.8350137707602987,
          -7,
          -3.514282047860378,
          -7,
          -2.7101173651118162,
          -3.0507136194470106,
          -7,
          -7,
          -3.339650157613684,
          -3.3666097103924297,
          -3.6220412382089324,
          -7,
          -7,
          -2.879955585122749,
          -2.6859406824820153,
          -3.2357808703275603,
          -3.307709923404807,
          -3.3527611917238307,
          -3.6817837664678814,
          -7,
          -3.591120282237383,
          -7,
          -4.298800696027079,
          -3.341038631677523,
          -3.5643109099606027,
          -3.6918768225593315,
          -3.1565491513317814,
          -3.2725377773752373,
          -1.9959119441113262,
          -3.2843179154306097,
          -7,
          -7,
          -3.781863037624198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.916303517484374,
          -2.7937903846908188,
          -3.276748941031243,
          -3.279134394034571,
          -7,
          -3.4495298223692266,
          -7,
          -7,
          -7,
          -7,
          -3.0339404652229804,
          -3.1202447955463652,
          -7,
          -7,
          -3.2511513431753545,
          -3.126780577012009,
          -3.1051694279993316,
          -7,
          -3.375114684692225,
          -7,
          -7,
          -7,
          -3.226857570288723,
          -2.8125122842899826,
          -2.957607287060095,
          -2.6681787645363455,
          -2.5636505661699873,
          -2.766164891363784,
          -3.729267205559747,
          -7,
          -7,
          -7,
          -2.986995539724382,
          -2.605305046141109,
          -3.1914510144648953,
          -7,
          -3.1876147137990425,
          -7,
          -4.299964668624155,
          -7,
          -3.087994255099714,
          -3.11145839180201,
          -7,
          -3.1484484035233837,
          -2.718593944732072,
          -7,
          -3.509740015570382,
          -3.3972445810103866,
          -2.8328281295393536,
          -3.3481100684802376,
          -2.7948364578145615,
          -3.234179705196503,
          -7,
          -3.439332693830263,
          -7,
          -3.514503479814343,
          -2.977266212427293,
          -3.881859970905687,
          -3.174931593528443,
          -3.20194306340165,
          -7,
          -3.819478128362123,
          -3.252610340567373,
          -3.3991543339582164,
          -7,
          -3.243286146083446,
          -2.9024108711664565,
          -3.014380511517664,
          -7,
          -2.6707758036974223,
          -4.37278316770235,
          -2.94819554675934,
          -7,
          -3.115943176939055,
          -3.2076343673889616,
          -2.8391636829146503,
          -3.17260293120986,
          -2.6268534146667255,
          -7,
          -3.2528530309798933,
          -2.8407814386722263,
          -2.8252406011131854,
          -3.380452449427833,
          -4.169582914463755,
          -7,
          -7,
          -2.645422269349092,
          -7,
          -7,
          -3.159266331093494,
          -3.4781334281005174,
          -7,
          -3.103461622094705,
          -7,
          -3.1010593549081156,
          -2.858236335429513,
          -3.1917303933628562,
          -2.8058405488146727,
          -7,
          -2.3003613358214947,
          -3.499475970480061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2814878879400813,
          -3.754806855354423,
          -7,
          -7,
          -2.827545493174686,
          -7,
          -7,
          -7,
          -1.837937142458874,
          -3.4658288153574364,
          -3.0819181438484713,
          -2.3283796034387376,
          -4.241181094571635,
          -7,
          -7,
          -7,
          -3.4265519237382676,
          -3.5029730590656314,
          -2.74342265320835,
          -3.4818724103106633,
          -3.413634997198556,
          -2.910268571619067,
          -7,
          -3.156851901070011,
          -2.5153060147156823,
          -2.3384564936046046,
          -1.986024882006687,
          -3.094471128641645,
          -3.2005769267548483,
          -2.762678563727436,
          -7,
          -3.409087369447835,
          -7,
          -3.4847268042986617,
          -3.125202335387921,
          -7,
          -3.555698894718901,
          -7,
          -3.879312558336867,
          -2.7910888551844675,
          -7,
          -4.003934206173708,
          -3.1486026548060932,
          -3.295567099962479,
          -3.0725256109749517,
          -7,
          -3.2962262872611605,
          -3.0062520513693647,
          -3.8435442119456353,
          -2.7466341989375787,
          -2.8452014311543485,
          -3.500648063371912,
          -4.448728214389335,
          -2.8379565067088195,
          -7,
          -7,
          -7,
          -3.8165726960261033,
          -3.22219604630172,
          -2.919601023784111,
          -2.962606072924127,
          -3.2347702951609167,
          -7,
          -3.471731651480051,
          -3.2227164711475833,
          -2.86421433046133,
          -7,
          -7,
          -2.9219464542294102,
          -2.9752019622578523,
          -4.561196822498337,
          -3.3606450425580268,
          -4.049657650569741,
          -7,
          -2.8478193472952396,
          -3.559617741918764,
          -3.134686992556854,
          -7,
          -2.8339965879428433,
          -2.876506504265881,
          -3.031206419827462,
          -2.799027092578261,
          -7,
          -3.1711411510283822,
          -7,
          -7,
          -2.9228551562119045,
          -2.8962505624616384,
          -7,
          -3.2860071220794747,
          -3.0227581942367694,
          -3.214578953570499,
          -2.9575540809979275,
          -7,
          -7,
          -4.604604005662973,
          -7,
          -7,
          -7,
          -7,
          -4.087497472404264,
          -7,
          -4.122849103955043,
          -3.9820280052712484,
          -4.0143104809633074,
          -7,
          -4.322136564096103,
          -4.424840817562293,
          -5.001461111811095,
          -4.590886398373238,
          -7,
          -4.2042466334108095,
          -4.227974068680214,
          -4.064570292244026,
          -7,
          -7,
          -4.544356887054272,
          -7,
          -4.241683421140342,
          -3.65571454961871,
          -7,
          -4.666265192538056,
          -7,
          -7,
          -3.9352696848113395,
          -7,
          -4.383878172624137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4185084434734003,
          -3.3085644135612386,
          -4.200941650254682,
          -3.0641947231369087,
          -3.1528486915725082,
          -3.253176407377487,
          -3.868428902768081,
          -3.190471770573345,
          -3.5746451400686006,
          -2.564012682679818,
          -3.2971036501492565,
          -7,
          -3.7113009599161657,
          -3.2898296651030074,
          -7,
          -2.9872654962543743,
          -3.873959654743353,
          -3.158060793936605,
          -3.5483894181329183,
          -7,
          -2.893603260420453,
          -7,
          -3.0970639128944124,
          -3.3918972562576584,
          -4.476681628454222,
          -7,
          -2.642312296447397,
          -7,
          -2.994943243789128,
          -7,
          -4.707845993224391,
          -3.4074588904573924,
          -3.9383695974518065,
          -7,
          -3.5608030019939636,
          -3.8435909077665396,
          -3.9436358188134504,
          -3.209336255749449,
          -3.2814878879400813,
          -3.3820170425748683,
          -3.384038274877458,
          -3.2946866242794433,
          -2.9806849743633146,
          -2.9784014307637876,
          -3.296860645545076,
          -3.6500159524718385,
          -3.805009292324597,
          -7,
          -3.6774244377012475,
          -3.917977882592908,
          -4.313761796292436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4655993959782605,
          -1.4391836821692012,
          -2.023170121121397,
          -7,
          -2.962527174843811,
          -2.7663747092874,
          -7,
          -2.275848610309422,
          -2.000867721531227,
          -2.169168462503224,
          -7,
          -2.4344312381751503,
          -1.5989467559038193,
          -2.4788069021772885,
          -7,
          -3.307709923404807,
          -2.7683420586445333,
          -2.241594675741352,
          -7,
          -7,
          -2.2742220133299713,
          -7,
          -2.581380688709987,
          -2.5773276363569475,
          -1.1488531225305814,
          -7,
          -2.597068045770463,
          -7,
          -3.1693804953119495,
          -4.128506967287956,
          -2.7535552052190964,
          -3.6175804115626624,
          -7,
          -7,
          -1.5543757252825565,
          -7,
          -1.3989386742041412,
          -7,
          -7,
          -1.918244856167806,
          -7,
          -7,
          -7,
          -1.3306868777352578,
          -3.450864692379766,
          -2.7641761323903307,
          -3.41161970596323,
          -1.5327543789924976,
          -7,
          -1.406798151621762,
          -2.2856406428815594,
          -3.6154239528859438,
          -7,
          -1.3250852078064717,
          -1.1694498158686364,
          -7,
          -3.129514123772523,
          -7,
          -7,
          -7,
          -1.932414071943652,
          -2.267696802793544,
          -1.3174007955788842,
          -3.2011238972073794,
          -2.6111920608684343,
          -7,
          -3.8975721138257304,
          -2.3947017784328417,
          -2.598404238298366,
          -7,
          -1.4516779142260183,
          -1.7000386892774444,
          -7,
          -2.507518555576424,
          -1.4764657157545893,
          -2.4183113373400764,
          -2.2623631847646597,
          -2.7191931306339363,
          -2.4570934773357136,
          -2.9719712763997563,
          -2.7557363026383275,
          -2.6532125137753435,
          -2.1453328670424816,
          -7,
          -7,
          -7,
          -3.1360860973840974,
          -7,
          -7,
          -7,
          -1.7039697867157162,
          -7,
          -3.0480406308580337,
          -2.993876914941211,
          -3.407447560198671,
          -3.1089755442778646,
          -3.433289685195026,
          -1.2708904806332533,
          -7,
          -1.414617806009165,
          -7,
          -1.3707986436567077,
          -1.9737758126634288,
          -7,
          -3.119585774961784,
          -1.5936667387290353,
          -2.3694220261687753,
          -2.322834152526903,
          -1.9784087926230391,
          -7,
          -7,
          -7,
          -7,
          -3.137670537236755,
          -7,
          -3.378942698613437,
          -7,
          -2.4978507395784066,
          -2.7538383010289067,
          -7,
          -7,
          -2.9135489579065177,
          -2.2785249647370174,
          -2.94126290931895,
          -2.190064768547934,
          -2.5491784867535645,
          -2.754157142891773,
          -3.3441301768262788,
          -7,
          -2.7895807121644256,
          -3.119585774961784,
          -3.629817196018516,
          -2.5420781463356255,
          -3.1017470739463664,
          -2.990554105139274,
          -2.1958996524092336,
          -2.2676409823459154,
          -2.5071290188367894,
          -7,
          -2.57467419083833,
          -2.8494194137968996,
          -2.6896048008603892,
          -2.8883199286752164,
          -7,
          -2.824451270036613,
          -2.1850461017086076,
          -3.0049658871068234,
          -7,
          -7,
          -3.766239292954104,
          -3.9421073089893555,
          -3.7666111098329864,
          -3.2060895755188294,
          -2.8415911806891856,
          -2.868032822188796,
          -3.548978724921236,
          -3.4096191784089713,
          -2.764291683647891,
          -2.7023130166283007,
          -7,
          -7,
          -2.183471294547756,
          -1.8582697748506578,
          -3.263849021837472,
          -3.7789948919347194,
          -7,
          -3.644635503768153,
          -3.6422913615024184,
          -1.9284255736341038,
          -2.720405641746029,
          -3.940690765404612,
          -2.4644976034256225,
          -2.370965741214641,
          -4.261048643344225,
          -3.9499508114323683,
          -4.2430132311496775,
          -2.866150961478457,
          -3.034887856589644,
          -7,
          -2.955740651181192,
          -3.0049658871068234,
          -7,
          -7,
          -3.952041340793274,
          -2.917779411584164,
          -3.403953488790828,
          -2.6296264535946183,
          -3.54476236021663,
          -3.207050607980928,
          -2.9085337585096873,
          -2.4305067377450893,
          -3.6455941844910615,
          -3.253822438708073,
          -2.750893920382125,
          -3.2219592832353405,
          -1.6823812847962216,
          -3.648993910859345,
          -3.95970902424643,
          -4.306682311019055,
          -2.2557500142024325,
          -2.931365398745314,
          -2.036197075021773,
          -3.256017623739166,
          -1.6921632174908048,
          -2.9348910465273987,
          -3.407949045697151,
          -3.0268936051269018,
          -2.8648844787899463,
          -3.958038016098337,
          -3.9599472157084987,
          -3.960232873128512,
          -7,
          -2.7640073104321687,
          -2.1781725804252074,
          -2.3383017338766767,
          -3.9461328133753497,
          -7,
          -1.9279696154297532,
          -7,
          -2.9891788795202707,
          -2.5209131930646254,
          -7,
          -3.1190798477344224,
          -2.343836681055772,
          -7,
          -3.2067809156837686,
          -7,
          -4.2499317566341945,
          -1.4591621739243248,
          -2.7119211722353125,
          -3.0464707760442677,
          -7,
          -3.2973227142053023,
          -3.4787107555127594,
          -3.100284367027806,
          -1.9949680589177388,
          -3.674240933242811,
          -4.273371711989729,
          -1.7817445817033408,
          -2.2467768032158,
          -1.836405272525313,
          -3.399797293677605,
          -7,
          -3.0154479997419172,
          -2.7056094753324085,
          -2.494513663474121,
          -2.298957986061134,
          -3.6460849959598156,
          -1.849486707095343,
          -3.957343853304138,
          -7,
          -7,
          -2.4153039871051005,
          -7,
          -2.7193536865753405,
          -2.852362676992824,
          -1.958065052462858,
          -2.2234036800839756,
          -7,
          -3.772615049849171,
          -3.485934263771752,
          -3.364199102439187,
          -2.763565073147549,
          -7,
          -7,
          -2.9609235685693225,
          -2.897330976597888,
          -2.376617961114693,
          -3.959566046637928,
          -2.795893642055278,
          -2.1090583522445936,
          -4.255031163345551,
          -3.601806578961057,
          -4.2561161466543815,
          -3.3386256077370664,
          -3.7872715070480547,
          -2.8654768631810366,
          -4.023458237643675,
          -7,
          -3.478470295686062,
          -1.196619752663687,
          -2.4121877253877053,
          -7,
          -3.4654076392388364,
          -1.896603369554253,
          -4.2413970416496465,
          -3.463220879774792,
          -3.6412261547554836,
          -3.468002515402457,
          -4.2431869241314715,
          -2.2929993067646084,
          -2.563189201196379,
          -2.141555221367973,
          -2.17947947504115,
          -3.7800291273373383,
          -3.245107089975072,
          -7,
          -4.248953615495708,
          -3.4876567673027137,
          -3.851930678640268,
          -3.03291165884321,
          -7,
          -4.250200359678991,
          -4.2576785748691846,
          -2.6640120336367628,
          -7,
          -3.9411385943096846,
          -3.5791888919086445,
          -2.7620921705056984,
          -3.769303460189082,
          -2.790613517602193,
          -3.096307373399723,
          -3.513150985376206,
          -3.112157966516305,
          -3.2350231594952237,
          -2.6409957833019644,
          -2.7154926546774614,
          -3.408627555236641,
          -2.519460226604742,
          -4.2518084986240465,
          -4.243286146083446,
          -7,
          -3.4801507252732806,
          -3.29605548290054,
          -4.249124949303172,
          -4.244079106672388,
          -2.6327660323507387,
          -2.9486574321413204,
          -3.110228850717288,
          -3.942950070077099,
          -2.3627886725708787,
          -2.232104663558627,
          -3.2595938788859486,
          -2.6469235999743512,
          -2.485199324904065,
          -3.268437552261454,
          -2.742814875476512,
          -3.191893281428276,
          -2.651808555723068,
          -3.3619166186686433,
          -3.0668614734064072,
          -2.8228012362482873,
          -3.298610521540568,
          -3.2219355998280053,
          -7,
          -2.4341989911773516,
          -2.4775805826121924,
          -2.598254368247123,
          -3.770483809431108,
          -2.3143674461762864,
          -3.941883951154944,
          -3.181157317880606,
          -4.254837993329288,
          -2.7139103541289553,
          -3.949365607393135,
          -3.9528408566757016,
          -2.104272447338898,
          -2.504697352451001,
          -7,
          -2.4231560648103123,
          -3.4533183400470375,
          -2.506035758960099,
          -7,
          -7,
          -3.5514011980984597,
          -3.642711770167333,
          -7,
          -3.9516046200484136,
          -7,
          -3.777644277696485,
          -2.8692489806948664,
          -2.4910270096971785,
          -2.293993567509566,
          -2.4554864349684373,
          -4.241870088685618,
          -3.0202637650809114,
          -2.6728995653153875,
          -2.9850717645683855,
          -3.9424297343069687,
          -3.5472330375018624,
          -3.504923724351828,
          -2.7153300367198354,
          -3.5734518220354854,
          -7,
          -7,
          -7,
          -3.470753400178036,
          -3.5432234514864356,
          -3.94485265185328,
          -3.097719940343722,
          -2.4545566959901555,
          -7,
          -3.942528893958499,
          -7,
          -7,
          -3.6554505918626528,
          -4.256043898702031,
          -7,
          -3.5586365820562924,
          -2.924060492895014,
          -3.4988616889928843,
          -2.2588006605991375,
          -2.6722826247889206,
          -2.99563519459755,
          -7,
          -7,
          -1.2533958383431552,
          -2.8029560678922834,
          -1.6038331880566845,
          -3.178593294899047,
          -2.948063489231294,
          -3.0046079422403533,
          -3.4707778833351246,
          -4.250224769901964,
          -2.966125542521808,
          -2.4259105639374527,
          -1.4326116352142744,
          -2.458078374515982,
          -2.9315849874708,
          -2.189294463936617,
          -2.793404987454742,
          -3.9451237701221196,
          -3.225262277614999,
          -3.0947549170487743,
          -2.714131144414292,
          -7,
          -3.77271278687713,
          -3.062699472253201,
          -3.4037331527937047,
          -3.4948036944645287,
          -7,
          -2.8518017263087634,
          -2.8746864162342978,
          -3.9645895874899035,
          -3.8191928486335787,
          -3.79376710997917,
          -2.7002609340449686,
          -1.945108057741629,
          -4.247236549506764,
          -2.248480619786217,
          -3.165812920092044,
          -3.6571036800122543,
          -2.646674801889762,
          -3.3229998633420332,
          -2.9684329117450887,
          -2.90760481522294,
          -2.807271876243159,
          -3.047366505192591,
          -2.3818883055109636,
          -2.4387005329007363,
          -2.9478744658331997,
          -2.2408364563492156,
          -7,
          -7,
          -4.241621180791424,
          -2.9410142437055695,
          -2.5999448332762145,
          -3.4064185122774226,
          -3.3013676489684136,
          -2.711474223671339,
          -3.4040269092889157,
          -2.959177727114837,
          -3.0751818546186915,
          -2.2596934032537566,
          -3.6550903907290384,
          -2.9611837098124356,
          -2.9640340493016373,
          -2.9776754813504196,
          -2.7957772425463525,
          -2.1153924936862136,
          -2.988758028972738,
          -7,
          -2.7969679111473877,
          -3.0228800220022025,
          -2.619681355828017,
          -7,
          -3.2192510215768,
          -3.9468941951023266,
          -3.1350053669438873,
          -2.818979550170818,
          -2.9675674753537584,
          -3.2405719381016747,
          -4.244499778833843,
          -7,
          -3.0350737955506264,
          -3.647480773173676,
          -4.256188382589775,
          -3.303651959291475,
          -2.883580326836657,
          -3.3477689676073514,
          -2.104002177228143,
          -4.241994489156781,
          -7,
          -3.0264176202165225,
          -3.767840603286548,
          -3.950462218905598,
          -3.3729733396670385,
          -3.660378441183945,
          -2.8756292278303137,
          -3.159903204454949,
          -2.8439098615708867,
          -2.4323720315236423,
          -2.931359432137285,
          -3.367894054656778,
          -3.4561907848321316,
          -3.393800752213584,
          -3.5221161996177264,
          -2.5662357477435127,
          -2.819464511838505,
          -3.275683892428806,
          -2.6607788719967416,
          -3.8418285554494096,
          -3.1428990655480398,
          -7,
          -3.178634337498273,
          -4.253338005326106,
          -2.7826091089197362,
          -2.470954121333649,
          -4.283629087730046,
          -3.7962134274930612,
          -3.4686426683915115,
          -3.9836713828601966,
          -2.4935723149618294,
          -3.135215642869843,
          -3.0771390209860074,
          -3.626500047045582,
          -3.7353593330017105,
          -7,
          -3.619436216286686,
          -4.089481202687437,
          -3.5776832455012926,
          -3.278820823997914,
          -2.120642153928635,
          -3.113991074353135,
          -2.9233053861436202,
          -2.529584855843978,
          -2.8008932412190894,
          -2.5533367823768884,
          -2.473737803040008,
          -3.138753678977215,
          -2.2563819751372423,
          -2.106685142415535,
          -2.569785593990233,
          -3.1308890762967754,
          -2.6367726520161257,
          -2.3993302273046977,
          -3.793580867368156,
          -2.281260687055013,
          -2.5143263432841403,
          -3.4679039465228003,
          -2.702261911134961,
          -2.9004206824492385,
          -3.33577873881047,
          -7,
          -2.3902359679939655,
          -2.4031340054832113,
          -3.4086543665017204,
          -4.249418507235988,
          -2.8926510338773004,
          -7,
          -2.1448000423056075,
          -3.5843500735453686,
          -3.865233662340489,
          -2.837588438235511,
          -2.9684699766014884,
          -4.244252373972473,
          -2.8888096618586907,
          -2.521296614270463,
          -2.7955380509603387,
          -3.208916571076424,
          -2.2738821275668677,
          -2.5611945858903096,
          -2.584540109305189,
          -2.2395294860605826,
          -3.65566656923067,
          -2.180523842173084,
          -2.2081172670574314,
          -2.8515535433095853,
          -2.5643200201098937,
          -7,
          -2.706759401357577,
          -2.7858596932679207,
          -2.9737434376601035,
          -7,
          -3.766561552637531,
          -7,
          -7,
          -4.045440339814774,
          -1.1205007875965254,
          -1.8523459656801773,
          -0.804111708162889,
          -3.101231386790699,
          -2.4753944354191564,
          -1.677145884991026,
          -2.194096756428317,
          -1.952335972434747,
          -2.7154625954409997,
          -1.6991097547853513,
          -3.6429341748117063,
          -1.6443702746331539,
          -1.3800556005286617,
          -1.9105651195868223,
          -4.282939165754773,
          -2.828717168654868,
          -2.5551629186862312,
          -2.058662717220406,
          -3.416117232254335,
          -3.174520134964361,
          -2.034269509370409,
          -7,
          -2.4842274307854315,
          -2.446184640239396,
          -1.61783606882438,
          -7,
          -1.8587888459766797,
          -3.943914757063198,
          -2.2044684736900795,
          -2.9251657982919412,
          -1.842919698597131,
          -2.102208700116164,
          -4.2426159575692655,
          -2.9736994962949725,
          -1.1639224845618,
          -3.658845776321838,
          -1.5572683665739167,
          -7,
          -1.918244856167806,
          -7,
          -4.244054348556946,
          -3.2056717837772264,
          -3.032931991648217,
          -1.808155685991323,
          -2.3913561974297854,
          -3.2991924258016807,
          -2.4252313570756017,
          -1.8834187583022521,
          -3.051128394305932,
          -1.6768850447403816,
          -1.4689551604370634,
          -2.4249485448383665,
          -3.466076375349264,
          -1.50250361077883,
          -1.5797610983920323,
          -4.280191247872142,
          -1.784103074779229,
          -3.776580126292323,
          -7,
          -2.6541940498694125,
          -1.4718095262845452,
          -1.252321396213063,
          -1.584555984799597,
          -1.8408142274924864,
          -2.5359033274007983,
          -7,
          -3.6827586141990913,
          -2.5889290464869177,
          -2.1039573855243545,
          -3.347988277492058,
          -1.5863065297899643,
          -1.2803158130038816,
          -2.4725441322844315,
          -3.5435217306752924,
          -1.2543395413032599,
          -1.1881122908453896,
          -1.711828523727601,
          -2.551811307878826,
          -1.4987260783768248,
          -1.8420407941839496,
          -2.586179744185137,
          -2.399294321418118,
          -1.3188443294618295,
          -2.3399176726790794,
          -2.6751200346244075,
          -3.184691430817599,
          -3.2026616633987213,
          -3.162862993321926,
          -2.736472907805405,
          -2.572608605937758,
          -2.0212136286115205,
          -2.276748941031243,
          -1.5830380370702757,
          -2.7243896635178304,
          -2.33042767321899,
          -2.2446977694747496,
          -2.742241574420333,
          -1.5786092358059542,
          -7,
          -1.9405589700314552,
          -7,
          -1.3593776211753175,
          -1.4526195693282578,
          -3.863005451385769,
          -2.9871695309342248,
          -1.7719023011066422,
          -2.021696949018919,
          -1.2099718795968286,
          -2.2493557916402818,
          -7,
          -7,
          -3.3977414286585623,
          -3.342595377241292,
          -3.1649473726218416,
          -2.967720359276515,
          -2.211210817095178,
          -3.0958664534785427,
          -2.6054884378490457,
          -2.746171833995682,
          -3.1756567472816637,
          -3.247359422468937,
          -3.0463976029545603,
          -2.7248539013834177,
          -3.2534349352410055,
          -2.163269826589994,
          -2.3381282463964803,
          -2.1183798879274023,
          -2.5233064424095346,
          -3.378882199277559,
          -2.4403519370473017,
          -2.9636387304229133,
          -2.7071228779824272,
          -3.212018019632142,
          -4.241969611913073,
          -2.238716226946245,
          -2.7791393517925442,
          -2.5642794877753574,
          -2.176738976523847,
          -2.7752020949482215,
          -2.6086820021484174,
          -3.9446553685692547,
          -3.205228977537763,
          -2.8069483569904206,
          -3.2438562328065057,
          -2.47929746034392,
          -2.4486360627696193,
          -3.6582976503081897,
          -4.241745652570644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3338904116161245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1792644643390253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145895315578768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.229786756419653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8352374734003063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8248414717537007,
          -7,
          -4.147729310675981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019116290447073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.451984355041344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.797613730153076,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.764400322956388,
          -7,
          -3.7385427409287852,
          -7,
          -7,
          -7,
          -7,
          -3.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.712764993190968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.659345635746177,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5009222391903005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.574128538797712,
          -7,
          -7,
          -4.540454613671412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.769960425341503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.101036412174182,
          -7,
          -7,
          -4.921181672460438,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.065082773894735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.135990846921625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.990423218731616,
          -7,
          -5.70620041642511,
          -7,
          -7,
          -7,
          -4.954218381297876,
          -7,
          -7,
          -7,
          -3.9093420383613084,
          -7,
          -7,
          -4.427924077684321,
          -4.780821175853473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.648037830429489,
          -7,
          -7,
          -7,
          -4.289432863850786,
          -7,
          -7,
          -7,
          -1.9852767431792937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2132520521963968,
          -4.035949779536674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7538197430218148,
          -7,
          -7,
          -3.271609301378832,
          -7,
          -7,
          -2.140589132424944,
          -7,
          -7,
          -7,
          -2.348953547981164,
          -2.597146487833695,
          -3.1861083798132053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2923668466362255,
          -7,
          -4.484918801665807,
          -7,
          -3.3963737275365067,
          -7,
          -2.966610986681934,
          -7,
          -7,
          -7,
          -4.244054348556946,
          -7,
          -2.2624510897304293,
          -7,
          -7,
          -3.3546845539547285,
          -7,
          -2.685443151803357,
          -7,
          -7,
          -7,
          -7,
          -3.408635626349605,
          -2.385606273598312,
          -7,
          -7,
          -7,
          -7,
          -2.795184589682424,
          -1.1936545489777597,
          -3.8807564445102103,
          -7,
          -4.56863971018297,
          -7,
          -2.7156452610404553,
          -7,
          -7,
          -7,
          -7,
          -2.8481121075964095,
          -7,
          -7,
          -7,
          -3.0835026198302673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.998542671094514,
          -7,
          -7,
          -7,
          -7,
          -3.3337494624819706,
          -2.304275050477128,
          -3.0281644194244697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8518085142282374,
          -4.543049360639533,
          -2.63205216670581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4869615094670436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8388490907372554,
          -7,
          -7,
          -2.8382192219076257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.740993931584886,
          -3.6268534146667255,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4945997959865975,
          -7,
          -7,
          -7,
          -2.779776808670381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.325310371711061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4202858849419178,
          -7,
          -7,
          -5.2044021823641895,
          -7,
          -7,
          -7,
          -7,
          -4.209380952346196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8039388622112926,
          -7,
          -7,
          -3.6567687792660166,
          -3.928241018789919,
          -7,
          -7,
          -7,
          -7,
          -3.1075491297446862,
          -7,
          -4.865317218342029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.765668554759014,
          -3.4699692094999595,
          -7,
          -7,
          -7,
          -4.237926844051205,
          -7,
          -7,
          -7,
          -7,
          -3.6313422864839326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7036567197634023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.555698894718901,
          -2.9711366294768062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.647962946176167,
          -7,
          -7,
          -7,
          -7,
          -3.8705209500127644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.237040791379191,
          -7,
          -4.116145210655378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.226342087163631,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9688097139128584,
          -7,
          -7,
          -3.1411360901207392,
          -7,
          -3.376010910646249,
          -7,
          -7,
          -3.0813473078041325,
          -7,
          -3.4797552093043174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8692610629614124,
          -3.908500337637823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5191057562064487,
          -7,
          -7,
          -7,
          -4.36608659902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7238659644435037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0904068162207485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.440279213235588,
          -7,
          -7,
          -7,
          -7,
          -3.671859084349393,
          -7,
          -3.668012971641832,
          -7,
          -7,
          -3.3529539117100877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.468495024507069,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.131779009369187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6048737705526355,
          -7,
          -7,
          -4.411822497698959,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3068537486930083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.096905049614187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.195161370069258,
          -7,
          -7,
          -3.8085485512404054,
          -7,
          -7,
          -7,
          -7,
          -3.2884728005997825,
          -3.6294350851202672,
          -7,
          -4.232962245954388,
          -7,
          -7,
          -7,
          -3.1414497734004674,
          -7,
          -3.6542728270977105,
          -3.7065471026403576,
          -3.832508912706236,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2000292665537704,
          -7,
          -3.0151501032294714,
          -3.922777341928798,
          -7,
          -7,
          -7,
          -4.052309099647323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0464951643347082,
          -3.0114294617807817,
          -7,
          -7,
          -7,
          -7,
          -4.87408477318204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6050894618815805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.062581984228163,
          -7,
          -7,
          -4.5553121461148125,
          -7,
          -5.273178428074985,
          -7,
          -3.482873583608754,
          -4.717146037938382,
          -7,
          -7,
          -7,
          -7,
          -3.5216610151120733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.387307669549021,
          -7,
          -7,
          -3.8948364609939157,
          -4.7710065635306425,
          -7,
          -7,
          -7,
          -7,
          -3.87075494489014,
          -7,
          -3.5369542230538054,
          -7,
          -3.2829618035343353,
          -7,
          -7,
          -7,
          -3.403417959654622,
          -7,
          -7,
          -3.459231261369113,
          -7,
          -4.0085363002297925,
          -7,
          -5.387736767329419,
          -7,
          -4.05319372760087,
          -7,
          -4.327522402716821,
          -7,
          -7,
          -7,
          -3.928154347824516,
          -7,
          -7,
          -7,
          -4.189181397180737,
          -3.255995726722402,
          -7,
          -7,
          -7,
          -4.180813775754397,
          -4.135514280998787,
          -7,
          -7,
          -4.366613444636752,
          -2.763255162964953,
          -7,
          -4.024916464556482,
          -7,
          -4.934124595123546,
          -7,
          -7,
          -7,
          -4.661074040986242,
          -4.378334296680487,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.46729355361571,
          -7,
          -7,
          -4.513914221371679,
          -4.709609121072649,
          -7,
          -7,
          -7,
          -7,
          -4.0517456530256775,
          -7,
          -7,
          -4.072065991414746,
          -4.214207829654449,
          -7,
          -7,
          -4.430220226321072,
          -7,
          -3.287801729930226,
          -3.733464770185494,
          -7,
          -3.5751053343390393,
          -7,
          -7,
          -4.34087026785223,
          -4.001036244018628,
          -7,
          -4.444183419961797,
          -7,
          -2.8773713458697743,
          -4.305577057926727,
          -3.5934411445018064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9610204328379766,
          -7,
          -3.1381591060069627,
          -7,
          -2.7713424628313694,
          -2.5593479441958,
          -2.278753600952829,
          -7,
          -7,
          -2.735119634081872,
          -1.5518933818622322,
          -3.6200527290943953,
          -2.9002578584377776,
          -2.0123098482203265,
          -3.303412070596742,
          -4.122183100093868,
          -2.6890867704039234,
          -2.8728358439998014,
          -3.0362295440862943,
          -2.5921767573958667,
          -3.0682600937746995,
          -2.9116901587538613,
          -2.49182842626168,
          -2.3178022622275756,
          -7,
          -7,
          -2.7259975546381723,
          -7,
          -2.696356388733332,
          -4.117823481975421,
          -3.6789383930785604,
          -3.3241759801248705,
          -7,
          -2.64064704020671,
          -7,
          -3.028571252692538,
          -3.443888546777372,
          -7,
          -7,
          -3.2056717837772264,
          -2.2624510897304293,
          -7,
          -2.3125235457621383,
          -7,
          -2.969602264848539,
          -2.8847953639489807,
          -1.4334061336424062,
          -7,
          -2.081244406611398,
          -3.241048150671644,
          -2.802636918082811,
          -3.8899736384039962,
          -2.5854607295085006,
          -7,
          -7,
          -7,
          -2.994882517664086,
          -7,
          -7,
          -3.5876548509957176,
          -2.998695158311656,
          -3.282180508437446,
          -7,
          -2.273348568749101,
          -2.868938178332911,
          -7,
          -3.840043330603494,
          -7,
          -2.9841521129041246,
          -2.3450468246483553,
          -7,
          -3.491991664182002,
          -1.9770700393537608,
          -7,
          -3.7839035792727347,
          -3.0155948545166624,
          -2.6473829701146196,
          -3.0356298277904386,
          -3.260873289344748,
          -2.7431960814487013,
          -7,
          -1.8920946026904806,
          -2.7703200637483674,
          -2.9492924014120256,
          -2.6554585929400747,
          -1.8961586385578335,
          -7,
          -7,
          -3.658106835506393,
          -2.960153542690461,
          -7,
          -2.584654239988151,
          -2.8103876324018415,
          -2.99563519459755,
          -3.010299956639812,
          -3.3683736731283878,
          -2.4143834074473625,
          -7,
          -7,
          -3.216957207361097,
          -7,
          -7,
          -3.3517963068970236,
          -3.372267444095655,
          -7,
          -7,
          -7,
          -2.1775899351168753,
          -7,
          -7,
          -7,
          -1.810232517995084,
          -1.590051083854947,
          -2.5943925503754266,
          -2.220108088040055,
          -2.9466627639986482,
          -2.8915374576725643,
          -2.9698816437465,
          -7,
          -1.7929301824152337,
          -2.716003343634799,
          -7,
          -7,
          -2.885926339801431,
          -3.062769949815128,
          -7,
          -3.626271915253866,
          -3.7520484478194387,
          -3.641176546613114,
          -7,
          -7,
          -3.516403148447403,
          -2.886490725172482,
          -2.4533183400470375,
          -3.894426837964188,
          -7,
          -7,
          -3.2069607291557105,
          -3.1063609088067503,
          -7,
          -2.639486489268586,
          -7,
          -7,
          -7,
          -3.339650157613684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.828839741403645,
          -7,
          -7,
          -7,
          -4.239624765246138,
          -4.254403046390677,
          -7,
          -3.119420863442087,
          -7,
          -7,
          -7,
          -2.9073186796496047,
          -7,
          -7,
          -3.498586208817518,
          -3.586854002667875,
          -3.4528593357958526,
          -7,
          -7,
          -7,
          -3.1829849670035815,
          -7,
          -3.79636037082412,
          -3.151523067564944,
          -7,
          -7,
          -7,
          -3.0874264570362855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.891199727625491,
          -7,
          -7,
          -7,
          -3.470410490975931,
          -2.877515318847026,
          -7,
          -3.45117215751254,
          -7,
          -7,
          -7,
          -3.638389407665336,
          -7,
          -3.9864582127373063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.452706226511029,
          -2.607608186496772,
          -7,
          -7,
          -3.4282968139828798,
          -3.3961412047190644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.568861467689039,
          -7,
          -7,
          -4.528739991281119,
          -7,
          -3.2938043599193367,
          -7,
          -7,
          -3.4860524616555892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.526597709103452,
          -4.058486760696795,
          -7,
          -3.7828666070641925,
          -7,
          -7,
          -7,
          -7,
          -3.6104472214421213,
          -3.7405995128111567,
          -7,
          -7,
          -7,
          -7,
          -3.322219294733919,
          -7,
          -7,
          -7,
          -7,
          -3.7735670489260587,
          -4.4074928794601025,
          -7,
          -7,
          -7,
          -7,
          -2.8443764113642773,
          -3.146283113159587,
          -7,
          -7,
          -7,
          -3.7749546890801384,
          -7,
          -7,
          -3.921842481405858,
          -3.111262513659065,
          -7,
          -2.6403157705629567,
          -3.569646964941176,
          -7,
          -7,
          -7,
          -3.0455185628844927,
          -7,
          -3.032779879191245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9450111181475167,
          -3.8467699535372186,
          -4.2022975561388,
          -3.812779707008964,
          -7,
          -3.965624967109243,
          -7,
          -7,
          -7,
          -7,
          -3.92272545799326,
          -7,
          -7,
          -7,
          -4.261084354924705,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.964118143151485,
          -7,
          -7,
          -3.852726958888889,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.700660458568172,
          -7,
          -3.7146231028714842,
          -7,
          -7,
          -3.9586422307145206,
          -7,
          -3.807873132003332,
          -3.741387992479269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5170638734826545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.131586588239808,
          -7,
          -3.868526886768204,
          -7,
          -3.2166935991697545,
          -7,
          -7,
          -2.7092093687913024,
          -3.112828346606045,
          -7,
          -3.610766594773271,
          -3.5417574891704673,
          -2.943247125137862,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9336559786575473,
          -3.292920299600006,
          -7,
          -4.182043545943064,
          -5.015393290367874,
          -7,
          -7,
          -3.4087486061842442,
          -7,
          -7,
          -7,
          -3.1017470739463664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.734321633758071,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.431524584187451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2344199320783495,
          -7,
          -7,
          -7,
          -3.5485204443196916,
          -7,
          -7,
          -7,
          -2.6105841244865338,
          -7,
          -3.430840687404714,
          -2.8808770809852247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7049222912234017,
          -7,
          -7,
          -3.513084360465144,
          -3.4556599840667923,
          -7,
          -7,
          -4.321660556848671,
          -7,
          -7,
          -2.661181443446619,
          -3.248463717551032,
          -4.028855809390444,
          -7,
          -7,
          -3.5547313766759667,
          -7,
          -7,
          -4.449235985453029,
          -7,
          -7,
          -7,
          -7,
          -3.865932668193186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5742628297070267,
          -7,
          -7,
          -7,
          -3.465977368285823,
          -7,
          -7,
          -7,
          -4.415741036222344,
          -4.554022223501833,
          -7,
          -7,
          -2.5562242647185487,
          -2.5368452760024067,
          -7,
          -7,
          -3.0595634179012676,
          -7,
          -2.1927835740087853,
          -3.3624196382493063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7829024059746446,
          -7,
          -3.7468546628685075,
          -7,
          -7,
          -3.093846008089887,
          -4.084804981876372,
          -7,
          -3.7675268994083817,
          -7,
          -3.0035811527135046,
          -3.486241511384074,
          -7,
          -3.588394972942186,
          -3.568983532526376,
          -3.146283113159587,
          -7,
          -7,
          -5.004862829229324,
          -2.606238741465192,
          -7,
          -4.68848211387478,
          -2.861651828449679,
          -4.093141404751149,
          -3.646599751720373,
          -7,
          -5.089838020117933,
          -4.009365898346244,
          -3.5522300511361626,
          -4.157486989384848,
          -7,
          -7,
          -7,
          -7,
          -3.463594402187,
          -3.9041472917242928,
          -7,
          -7,
          -3.9351544472161684,
          -3.251638220448212,
          -7,
          -7,
          -3.9999131324165713,
          -4.228733908376136,
          -4.32997723012551,
          -3.450864692379766,
          -4.685231030488811,
          -3.8416023541757394,
          -3.9698816437465,
          -7,
          -7,
          -7,
          -4.637532256267815,
          -4.059639138323725,
          -7,
          -3.864229172807904,
          -4.016099716932023,
          -4.218010042984363,
          -7,
          -4.1614428741396345,
          -7,
          -7,
          -7,
          -7,
          -3.797959643737196,
          -7,
          -3.852584546335328,
          -3.7192512084878806,
          -4.8047279217580705,
          -7,
          -2.8129133566428557,
          -7,
          -3.485948449216443,
          -3.88349109018893,
          -5.107137015619441,
          -3.6554585929400747,
          -3.559595448664063,
          -7,
          -4.053501002386415,
          -3.75876054390998,
          -3.471857266930764,
          -3.149603954933024,
          -7,
          -3.904336792202495,
          -3.730922174525645,
          -4.509941404158226,
          -3.4320066872695985,
          -3.696196156653132,
          -3.6625784121215883,
          -7,
          -4.071916873438521,
          -7,
          -7,
          -3.5110396509000643,
          -4.029018329546481,
          -7,
          -7,
          -7,
          -3.0419845014867866,
          -7,
          -2.8285197970206033,
          -3.59250984790068,
          -3.5289423974157295,
          -2.8832828000102766,
          -2.5474054596674893,
          -2.974806341932808,
          -2.7633210113030287,
          -3.5620548296563785,
          -2.518137764469437,
          -2.7432081503806565,
          -2.5585085730707764,
          -3.0368115269308613,
          -3.1572300416963417,
          -2.5688719317338045,
          -2.4607822312872365,
          -3.134640664105797,
          -2.0324765479535576,
          -2.753513421358579,
          -3.455758203104137,
          -2.929248580749605,
          -3.2800089531081857,
          -3.412460547429961,
          -2.7317498835272636,
          -3.059689611271879,
          -2.9187291212991187,
          -7,
          -2.9612750268046986,
          -7,
          -7,
          -1.9947418610649346,
          -3.248487880403575,
          -3.108482182629693,
          -3.317854489331469,
          -2.146328125284129,
          -3.711089840140532,
          -2.9751253198007745,
          -7,
          -7,
          -7,
          -3.032931991648217,
          -7,
          -2.3125235457621383,
          -7,
          -3.0304647850433484,
          -2.602670288928142,
          -3.1027766148834415,
          -1.7729881093117132,
          -3.4702634469650784,
          -1.598773142276921,
          -3.545430829465351,
          -3.576533303571085,
          -3.3344788832062546,
          -7,
          -3.4075608494863623,
          -3.088756066652953,
          -7,
          -3.0471357373231136,
          -3.403977963669355,
          -7,
          -2.8979934299725625,
          -7,
          -2.3405477545742386,
          -2.955495329184127,
          -2.6641717053619307,
          -3.2105860249051563,
          -3.415140352195873,
          -7,
          -3.4044916177586857,
          -2.836208994571047,
          -2.6864575104691117,
          -3.5781806096277777,
          -3.9020028913507296,
          -1.7817553746524688,
          -7,
          -3.4174716932032934,
          -3.367767751185798,
          -3.460822698802402,
          -2.6397077858246627,
          -3.4360035356698964,
          -2.8784260410124705,
          -1.15567179973304,
          -1.4018004294852757,
          -2.837307795588005,
          -2.469190620933241,
          -2.4513677038686126,
          -1.5890769857909857,
          -7,
          -3.3176455432211585,
          -3.611404637711593,
          -3.17666993266815,
          -3.4448251995097476,
          -2.871280972857973,
          -3.206985243407348,
          -2.7948364578145615,
          -2.8084270532729314,
          -2.997138334234319,
          -1.2986532346892896,
          -3.344490519241893,
          -2.503109436671369,
          -3.2323607123535703,
          -7,
          -7,
          -3.797059694699971,
          -2.1526959412988536,
          -7,
          -2.6881654767644583,
          -7,
          -1.7044780107893729,
          -7,
          -2.7837249675153735,
          -3.3244882333076564,
          -2.718916686014861,
          -2.037227234582274,
          -3.0334237554869494,
          -2.3989040367746544,
          -2.997713947818426,
          -2.617393545748848,
          -1.7322700115725504,
          -3.397070549959409,
          -2.2970025063809376,
          -3.359645792674543,
          -7,
          -3.4323277922616042,
          -2.801403710017355,
          -3.1333259667224587,
          -3.214578953570499,
          -2.88036222087494,
          -3.5691982833478133,
          -3.311188557387388,
          -3.1204093945560682,
          -2.8455114569725612,
          -3.100973313405724,
          -7,
          -3.312388949370592,
          -3.042509884259952,
          -3.1292063577475293,
          -2.7244397233970745,
          -2.4400340173284967,
          -3.3348556896172914,
          -3.1441589128307523,
          -3.0419845014867866,
          -3.052886235256382,
          -2.986995539724382,
          -7,
          -3.1858961319559693,
          -3.2131191388114564,
          -3.147985320683805,
          -7,
          -3.1961761850399735,
          -7,
          -7,
          -3.114610984232173,
          -3.167317334748176,
          -2.8068580295188172,
          -3.3554515201265174,
          -7,
          -3.245265839457461,
          -3.70163543360813,
          -3.7800291273373383,
          -7,
          -3.1670217957902564,
          -3.138697331979808,
          -3.2793119832751985,
          -7,
          -3.257438566859814,
          -7,
          -2.851869600729766,
          -7,
          -3.124139666498967,
          -7,
          -7,
          -7,
          -3.4454764029676785,
          -7,
          -7,
          -7,
          -2.988261596728756,
          -7,
          -7,
          -3.8293564113962555,
          -7,
          -7,
          -3.148294097434746,
          -3.225567713439471,
          -3.454387467146955,
          -3.1835545336188615,
          -2.508754102588731,
          -2.6374897295125104,
          -7,
          -7,
          -3.9134616631596444,
          -7,
          -7,
          -3.4763968267253302,
          -2.5477747053878224,
          -2.087713828597375,
          -7,
          -3.3010299956639813,
          -7,
          -2.858537197569639,
          -7,
          -2.85870218386402,
          -3.081587315813503,
          -2.530347492821457,
          -3.8489892062511672,
          -7,
          -3.27600198996205,
          -2.8567288903828825,
          -3.285557309007774,
          -7,
          -2.8277999071812294,
          -3.1470576710283598,
          -2.9618954736678504,
          -2.5082410552970478,
          -3.68517424805309,
          -7,
          -7,
          -2.3191060593097763,
          -7,
          -2.7150278702988717,
          -2.5943925503754266,
          -3.147985320683805,
          -3.547774705387823,
          -3.897604454353708,
          -7,
          -2.7132104434506292,
          -7,
          -7,
          -1.9395723545911616,
          -3.4626974081017172,
          -7,
          -7,
          -2.858537197569639,
          -7,
          -2.994537104298498,
          -2.8584369333461987,
          -3.4263485737875077,
          -7,
          -3.079548100481859,
          -3.633165353683903,
          -2.821667629171724,
          -7,
          -7,
          -3.2420442393695508,
          -2.941677035870691,
          -2.7326617601288525,
          -2.970253869594787,
          -7,
          -3.4757583289758744,
          -7,
          -7,
          -7,
          -2.545946631353733,
          -7,
          -2.8092903011763157,
          -3.36679638328673,
          -2.5601629215805253,
          -2.873584787286106,
          -7,
          -7,
          -7,
          -7,
          -3.120348760073331,
          -7,
          -7,
          -2.6307183730170616,
          -3.160568564398739,
          -2.931118710592187,
          -7,
          -3.3517411058188555,
          -3.64672787441551,
          -7,
          -3.890197386210029,
          -7,
          -3.956164063051131,
          -3.3336487565147013,
          -3.5599066250361124,
          -3.6885977750811696,
          -7,
          -7,
          -1.923637882191193,
          -3.581380688709987,
          -7,
          -7,
          -4.082300556381854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7819064730211855,
          -2.7117369491669536,
          -3.0323021042694998,
          -3.27630858685576,
          -7,
          -3.9249508889156104,
          -7,
          -7,
          -3.346744054604849,
          -7,
          -3.275196141785624,
          -7,
          -7,
          -7,
          -3.4727442635547314,
          -7,
          -7,
          -7,
          -3.0668847431297714,
          -7,
          -2.8935768378559144,
          -3.401745082237063,
          -3.5233562066547925,
          -2.904715545278681,
          -7,
          -2.808107049860337,
          -7,
          -2.534026106056135,
          -3.6209317465873228,
          -3.2113875529368587,
          -7,
          -7,
          -2.6766936096248664,
          -3.198931869932209,
          -7,
          -7,
          -3.0094981094185593,
          -7,
          -3.8219500053077473,
          -7,
          -3.307496037913213,
          -3.0779098222198,
          -7,
          -3.1455848280002856,
          -2.4374707639390873,
          -3.369586890736344,
          -3.504742636271688,
          -3.390758528738717,
          -2.426998958756537,
          -3.0394141191761372,
          -2.544245271237821,
          -7,
          -7,
          -3.7375901662857216,
          -7,
          -3.990161192898479,
          -7,
          -3.8811563210755637,
          -7,
          -2.8727045811704075,
          -7,
          -3.515873843711679,
          -7,
          -2.6923180442592787,
          -7,
          -3.2340108175871793,
          -2.8998888683433184,
          -3.1855421548543754,
          -7,
          -2.3327077063482236,
          -3.8949065379377426,
          -3.201888500365973,
          -7,
          -7,
          -7,
          -2.8273692730538253,
          -7,
          -7,
          -7,
          -2.765668554759014,
          -2.8738532112027317,
          -2.9682961150462557,
          -3.680547018019107,
          -4.145414804953056,
          -7,
          -3.2079035303860515,
          -2.7616773079942547,
          -7,
          -7,
          -7,
          -3.4727564493172123,
          -3.4032921451582543,
          -3.3984608496082234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1420764610732848,
          -2.632288535826703,
          -3.4550610931773704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2730012720637376,
          -3.751971574736327,
          -7,
          -3.8379039445929424,
          -3.022133674504637,
          -7,
          -7,
          -7,
          -1.8004462886496526,
          -7,
          -3.182278161831841,
          -2.7997998773461115,
          -4.240873600020581,
          -7,
          -7,
          -7,
          -3.1817619459703046,
          -2.8975583683720445,
          -2.404175594836316,
          -3.3029799367482493,
          -3.8889092592635315,
          -2.298307137328508,
          -3.2667019668840878,
          -2.8438554226231614,
          -3.355643050220869,
          -2.6121949827557454,
          -2.4295038277748633,
          -7,
          -3.1903316981702914,
          -2.7556843338524133,
          -7,
          -7,
          -7,
          -3.4794313371977363,
          -3.668012971641832,
          -3.343605508104172,
          -3.249931756634195,
          -7,
          -3.6572694400502246,
          -2.679680202714552,
          -7,
          -4.003137276060415,
          -7,
          -2.8093352150273203,
          -2.716003343634799,
          -2.9568085108888016,
          -3.038973211034812,
          -2.758587509600443,
          -3.841234295506041,
          -7,
          -3.143014800254095,
          -2.716003343634799,
          -4.28483341767671,
          -2.801139749344364,
          -7,
          -7,
          -7,
          -3.2116544005531824,
          -3.0938592615034377,
          -2.7331972651065692,
          -2.9537596917332287,
          -3.0537185238968583,
          -7,
          -3.1649473726218416,
          -7,
          -3.163086798780063,
          -7,
          -2.8438554226231614,
          -2.8516077409196603,
          -2.6646419755561257,
          -4.384872894492921,
          -3.1223711097261417,
          -4.1514513801528805,
          -7,
          -2.8040154544635683,
          -3.32271947927634,
          -3.053014383525799,
          -7,
          -2.456366033129043,
          -3.167317334748176,
          -2.674248595527798,
          -2.66149717917983,
          -7,
          -3.4670158184384356,
          -3.123524980942732,
          -7,
          -3.2195845262142546,
          -7,
          -7,
          -2.799570274125377,
          -3.241878383159056,
          -7,
          -2.7345731588380384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.719505301432014,
          -7,
          -7,
          -3.9005528249554966,
          -3.9818186071706636,
          -4.0127528874912155,
          -7,
          -7,
          -7,
          -4.52416235813557,
          -7,
          -4.044441758703649,
          -4.681069295110682,
          -4.926795029613981,
          -4.063183187967576,
          -7,
          -7,
          -4.435139782024201,
          -4.292521884574141,
          -4.542277546927697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8258298578112866,
          -7,
          -4.207436875114079,
          -3.8626480890490678,
          -4.214896807560221,
          -7,
          -3.8103333486611493,
          -3.9215824403934163,
          -3.9877853965912387,
          -4.2070146586829,
          -3.4181251342675383,
          -2.3944516808262164,
          -3.899519564476793,
          -3.269320178171262,
          -3.4522976709946303,
          -3.727622577969137,
          -3.8677031332700977,
          -3.4865721505183562,
          -3.5560586443269586,
          -3.3278899816485428,
          -3.2930309056064373,
          -3.7548526807047184,
          -3.53495165163851,
          -3.432292125651154,
          -7,
          -2.9174591708031667,
          -3.269396182694991,
          -7,
          -3.8472641017707643,
          -4.086680093734625,
          -3.435525851498655,
          -7,
          -3.2787623922501217,
          -3.3333683469708335,
          -4.47665008775944,
          -7,
          -3.1527468640264606,
          -7,
          -3.561254075742359,
          -7,
          -5.105733235627028,
          -3.8043439184798657,
          -4.238522812218293,
          -7,
          -3.6392872259102367,
          -3.189365525398271,
          -3.8342016289315226,
          -3.2060158767633444,
          -2.955535845981106,
          -3.078396394473104,
          -3.322513078828487,
          -3.1759395741789724,
          -2.367355921026019,
          -3.017362374468477,
          -3.783646355064819,
          -2.9466487339066765,
          -3.886630734857297,
          -7,
          -3.372819981678968,
          -3.537231245931346,
          -4.011908613349155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4323480341699906,
          -1.4993583093807943,
          -1.9126260848936751,
          -7,
          -3.1330596427539095,
          -2.7546349672131645,
          -3.511214701136388,
          -2.4938451572530163,
          -1.5725047477662464,
          -2.0422922040434477,
          -7,
          -2.3289736002463024,
          -1.4740281763808496,
          -2.2922560713564764,
          -7,
          -7,
          -2.5578078557646045,
          -2.6538554368859546,
          -7,
          -3.237292337567459,
          -2.8314858392486575,
          -7,
          -2.269512944217916,
          -2.5712095470456258,
          -1.1899783738265433,
          -7,
          -2.5108208903713702,
          -7,
          -7,
          -3.827013678162476,
          -2.8384420423712386,
          -3.6173219216479233,
          -7,
          -7,
          -1.6128320019979738,
          -7,
          -1.4328691191563043,
          -7,
          -1.3306868777352578,
          -1.808155685991323,
          -7,
          -7,
          -3.0304647850433484,
          -7,
          -3.7491950422196725,
          -2.931457870689005,
          -2.8022604758937684,
          -1.4669983859942513,
          -7,
          -1.4196949370625,
          -2.404792011671339,
          -3.7394404803282644,
          -7,
          -1.3946705241071904,
          -1.313680817884655,
          -7,
          -3.3249582172365435,
          -7,
          -7,
          -7,
          -1.9678799710438093,
          -2.273924028536512,
          -1.3775456819423355,
          -2.9755237129603316,
          -7,
          -7,
          -7,
          -2.6299190355035416,
          -2.7858473143474205,
          -7,
          -1.268798910830716,
          -1.5619728950307412,
          -3.361160995195026,
          -7,
          -1.2780707478531816,
          -2.387208782294461,
          -2.2277094415573746,
          -3.1922886125681202,
          -2.3503314002067244,
          -2.526691646157169,
          -2.6179085419287893,
          -2.743313739231126,
          -2.0608122638773674,
          -3.431202884556517,
          -3.0610753236297916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.6955277579250017,
          -3.2604291755779347,
          -3.1589025110397135,
          -3.164798819693455,
          -3.3393946485141663,
          -3.2548500689728237,
          -3.7315081835960253,
          -1.3146091060655962,
          -7,
          -1.4604324568764007,
          -7,
          -1.4825717867894328,
          -1.9056323658772685,
          -3.752662943120972,
          -7,
          -1.8345753455433524,
          -2.413299764081252,
          -2.1285333149993586,
          -2.2755416884013093,
          -7,
          -7,
          -3.1051694279993316,
          -7,
          -3.1258064581395266,
          -7,
          -3.854063011866421,
          -7,
          -2.2684219472783616,
          -2.920905604164024,
          -7,
          -2.8636202202703154,
          -2.9036325160842376,
          -7,
          -7,
          -2.2065560440990297,
          -2.609949951186873,
          -2.9031857766806537,
          -3.819083075743703,
          -7,
          -3.258876629372131,
          -7,
          -3.1484998267052453,
          -2.932220013877119,
          -7,
          -3.1108454983739153,
          -2.491128139388255,
          -2.6596785560245753,
          -2.9199144806594317,
          -7,
          -2.523876475638131,
          -2.8379039445929424,
          -2.855216194733363,
          -2.7064332788991994,
          -2.819214799882384,
          -2.7701152947871015,
          -2.6875289612146345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.369679599559816,
          -7,
          -3.4379090355394983,
          -7,
          -7,
          -3.1214698267373375,
          -7,
          -7,
          -3.670802284260944,
          -3.2952591364816795,
          -3.308286888629105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.761625795377137,
          -7,
          -7,
          -3.0355798140307355,
          -2.9994017131904993,
          -2.8140810398403664,
          -7,
          -3.3506356082589543,
          -3.1857545757350607,
          -3.036069700697702,
          -7,
          -3.9349471026077483,
          -3.7183355789085066,
          -3.663700925389648,
          -7,
          -7,
          -3.782759192623997,
          -7,
          -7,
          -7,
          -7,
          -2.7814861003965117,
          -3.792062646197921,
          -7,
          -7,
          -3.0937017848055484,
          -7,
          -2.8838678243612104,
          -7,
          -7,
          -7,
          -3.2539031250960253,
          -3.2869801217565664,
          -2.7638790808327,
          -3.0563330349511615,
          -2.738275942048923,
          -4.011993114659257,
          -7,
          -2.8618756361619213,
          -2.8785217955012063,
          -3.7115541682501694,
          -7,
          -7,
          -7,
          -3.402175375031505,
          -3.110870171711581,
          -3.166066636783229,
          -7,
          -7,
          -2.737788791709675,
          -7,
          -3.4988157877634483,
          -7,
          -7,
          -7,
          -3.456897187449348,
          -7,
          -3.500030534183874,
          -7,
          -7,
          -2.9166794974939214,
          -3.7866804531966487,
          -7,
          -7,
          -3.533581425058706,
          -7,
          -3.3783373256663736,
          -7,
          -3.769820257763592,
          -7,
          -2.883501347796778,
          -3.2734642726213465,
          -3.1200951059292272,
          -3.66029616027073,
          -7,
          -7,
          -2.685890955055167,
          -3.3334472744967503,
          -3.5961570809161723,
          -7,
          -3.958468318366944,
          -7,
          -3.6538875580709775,
          -7,
          -2.8977887493909136,
          -7,
          -3.1099158630237933,
          -3.442636525782232,
          -3.0167200331782524,
          -3.1234938576460367,
          -7,
          -7,
          -3.7296506683359203,
          -3.4396484295634737,
          -2.2954586870249005,
          -3.715501945293284,
          -7,
          -3.7937903846908188,
          -7,
          -3.6203963453512844,
          -3.7169210731667612,
          -3.8006941718512026,
          -2.6927824567955687,
          -7,
          -7,
          -7,
          -3.835259232912736,
          -3.4290251567115186,
          -3.2330595990965874,
          -3.908431398966006,
          -7,
          -3.7035492982382308,
          -2.564920867827693,
          -3.0011772023979564,
          -7,
          -7,
          -3.4831274827577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.866700756042499,
          -7,
          -3.563860630519641,
          -3.1031681798660387,
          -7,
          -3.764475027434409,
          -7,
          -7,
          -7,
          -3.489367774704734,
          -3.186270022871516,
          -7,
          -7,
          -3.7064617376313547,
          -3.7444718063201807,
          -7,
          -7,
          -7,
          -3.443262987458695,
          -3.665393350279712,
          -7,
          -7,
          -3.8165064370463573,
          -3.8085485512404054,
          -7,
          -3.5871120413150903,
          -7,
          -3.693287157005656,
          -3.0961132018222703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.979758432498712,
          -7,
          -3.8869980456710995,
          -7,
          -3.3666563861388235,
          -2.7799987809677282,
          -7,
          -2.3618272055368235,
          -2.94272439249383,
          -3.1424676821446043,
          -3.204662511748219,
          -3.4528593357958526,
          -7,
          -7,
          -3.4531653925258574,
          -3.92054071650248,
          -7,
          -7,
          -7,
          -3.8126125871077585,
          -7,
          -4.1145609474233265,
          -7,
          -2.9460153489984524,
          -7,
          -3.9902944461284386,
          -7,
          -7,
          -7,
          -7,
          -3.135904649927143,
          -3.497137064051958,
          -7,
          -3.811038508604216,
          -2.8353978544636607,
          -2.8169038393756605,
          -7,
          -7,
          -3.6806074289917876,
          -3.659250468772661,
          -7,
          -7,
          -7,
          -7,
          -2.6224641411494662,
          -2.571708831808688,
          -3.3420276880874717,
          -3.2315623356402465,
          -7,
          -3.6840370374865197,
          -7,
          -3.429671548617864,
          -7,
          -7,
          -3.490309708301158,
          -3.759516759462188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.748506684505836,
          -3.6502103546603593,
          -3.3529539117100877,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3453737305590887,
          -7,
          -3.402089350572097,
          -2.9450169861592435,
          -3.163385026762188,
          -7,
          -7,
          -2.7480469994089542,
          -2.9395905594871645,
          -2.4829650044030926,
          -7,
          -3.0188888310551025,
          -3.717087724927019,
          -7,
          -7,
          -3.0999630070456647,
          -3.9800033715837464,
          -2.612850055101375,
          -2.7340935447008627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3626081204867253,
          -3.8284020784915933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.75190866845489,
          -3.194410265239743,
          -7,
          -7,
          -7,
          -2.4857840825802984,
          -3.3748216384719947,
          -7,
          -3.5902100254885054,
          -7,
          -7,
          -3.052584021782163,
          -3.4723907276266286,
          -2.8601382850306134,
          -3.0812272540419574,
          -7,
          -7,
          -3.8687032022785366,
          -3.103050747435957,
          -2.9384760476656964,
          -3.457086728098236,
          -7,
          -7,
          -7,
          -3.2890089115394634,
          -2.707463718325151,
          -7,
          -7,
          -2.8194123112093252,
          -3.375114684692225,
          -3.310976378660635,
          -3.6857417386022635,
          -3.9564565834098997,
          -7,
          -3.4243098202457563,
          -3.9139727115509713,
          -3.4038922955594204,
          -3.8392951720994892,
          -3.3743664143331245,
          -4.137218265189426,
          -7,
          -4.010384771498377,
          -4.080866893505251,
          -2.920123326290724,
          -7,
          -3.417388646165674,
          -7,
          -7,
          -3.5281021701384736,
          -3.491455080455835,
          -3.7887338588277077,
          -3.657629431388952,
          -7,
          -3.8152455919165633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7902608916016636,
          -7,
          -7,
          -2.686485634707038,
          -3.092328393324933,
          -3.401113213955382,
          -3.0705128226472103,
          -3.6660185043849287,
          -2.5527472031596625,
          -1.6966371725035474,
          -3.310764096221262,
          -2.123289611439104,
          -2.749124111204883,
          -2.019863713967843,
          -2.8380931384455983,
          -3.042760762022057,
          -3.2902992675457483,
          -2.3219906037929525,
          -3.7052819837808864,
          -2.8692487305408685,
          -2.5866818837066483,
          -3.2662611035004745,
          -2.776009815603766,
          -7,
          -3.963618202578722,
          -3.102567091434675,
          -1.3552594090066894,
          -2.7175664928276775,
          -3.927951770866328,
          -3.3937067877220115,
          -3.140395796137267,
          -3.4947805290034273,
          -2.1675045440973943,
          -2.9424096635273034,
          -3.508184502854504,
          -3.797284856852405,
          -3.292278228672973,
          -2.8713539819330216,
          -7,
          -3.762040529978979,
          -2.837064325573253,
          -2.5849189336400373,
          -2.733999286538387,
          -7,
          -3.664590698092,
          -2.5958115596594458,
          -3.165355631362408,
          -2.549820373239367,
          -3.1992236364745255,
          -7,
          -2.6960319843565825,
          -3.5396092256382468,
          -3.854063011866421,
          -3.5460214167615582,
          -3.0885994524870846,
          -3.2680176943347163,
          -7,
          -3.0812364901250664,
          -3.7266864665450092,
          -7,
          -3.7096938697277917,
          -3.839336611526406,
          -3.6369390072874714,
          -7,
          -2.8091205530979613,
          -2.8352909915364135,
          -4.630660046928468,
          -7,
          -3.9498289589353135,
          -7,
          -3.1609946019388135,
          -7,
          -4.935080486984058,
          -3.600945683400521,
          -4.312515855663387,
          -7,
          -3.3186371431419577,
          -2.947587749368504,
          -3.5800524263882556,
          -2.247373072874618,
          -3.4063272387861963,
          -2.6354837468149124,
          -2.35013736535928,
          -2.609380944250707,
          -7,
          -3.1991212741882054,
          -3.148248025288188,
          -3.88349109018893,
          -4.05424332563753,
          -7,
          -3.4223709414184693,
          -3.4447569701519756,
          -3.3757915976851924,
          -3.667826378950711,
          -7,
          -7,
          -2.8832828000102766,
          -2.921213387765902,
          -1.7262590452768576,
          -7,
          -2.3272908044180514,
          -2.412553873847405,
          -1.796182030208752,
          -2.4989489998913625,
          -1.8695078128629088,
          -3.780965029608317,
          -3.6731131042382335,
          -2.4356623863120097,
          -2.8138668026501783,
          -2.459576027555685,
          -2.79550569467443,
          -2.6176118390341196,
          -2.509060966110194,
          -2.2869708813680116,
          -2.250635230436816,
          -2.1676737520697014,
          -1.7711087121610372,
          -2.3683311667764393,
          -2.18232684521996,
          -2.5183384319014017,
          -2.2878878226021113,
          -2.9872937677065066,
          -2.963964813484758,
          -7,
          -2.3454962568631608,
          -2.6578204560156973,
          -7,
          -2.62375095902467,
          -2.2965011662837895,
          -1.8457064057873396,
          -7,
          -2.336846920633673,
          -3.1481911962420113,
          -2.1561788370346315,
          -3.2388612088708095,
          -3.6461095219788477,
          -3.450864692379766,
          -2.3913561974297854,
          -3.3546845539547285,
          -2.969602264848539,
          -2.602670288928142,
          -3.7491950422196725,
          -7,
          -2.9135489579065177,
          -2.045246255090335,
          -7,
          -2.79605370040254,
          -3.7709992051639407,
          -2.1176895206789914,
          -1.8474637815711823,
          -2.7017598112436323,
          -2.920181321147177,
          -3.8635607645262424,
          -2.8776592441116087,
          -1.9967673882774597,
          -2.2251309633156784,
          -2.667639706056411,
          -2.0181876357676427,
          -3.311895072073712,
          -2.3345234110246715,
          -2.5821896663826887,
          -1.447333586615877,
          -3.051769746899332,
          -2.5498786795403077,
          -2.9296153946078958,
          -7,
          -1.6815593851971848,
          -2.032508873155982,
          -3.7907776013376937,
          -3.0150662140111493,
          -2.0259480753365513,
          -7,
          -3.3109905271345785,
          -2.1682978754273456,
          -3.1336453400536084,
          -3.1991378431311865,
          -2.739482441437391,
          -2.9952590191890995,
          -3.197648059295764,
          -2.5872297522473473,
          -2.220672589241897,
          -1.020829485891193,
          -2.1449332770652947,
          -2.294302896155191,
          -7,
          -7,
          -2.315384450620127,
          -1.4829942936151554,
          -3.014352500651009,
          -1.6410773133253744,
          -2.3068363763346516,
          -2.369786546693187,
          -1.5109633769042548,
          -3.087670523729859,
          -2.0764199154189162,
          -3.230959555748569,
          -2.790549039169605,
          -3.286606149046036,
          -3.0478587274074567,
          -3.4483971034577676,
          -3.3350565194390915,
          -2.171602514700333,
          -7,
          -2.9858005756496806,
          -3.024895960107485,
          -2.0175856816804645,
          -7,
          -2.904715545278681,
          -3.6534054906645013,
          -3.652343055062715,
          -7,
          -3.357076839842412,
          -2.587336734507256,
          -1.504927434383751,
          -2.1384952472636067,
          -3.478999131673357,
          -7,
          -2.187608839834818,
          -7,
          -7,
          -7,
          -3.090169844444793,
          -7,
          -7,
          -3.624436805027557,
          -1.8908252650965474,
          -2.8888939620872947,
          -3.400537989391946,
          -7,
          -3.3944516808262164,
          -7,
          -7,
          -3.4711938859696856,
          -7,
          -7,
          -3.390876255625289,
          -1.7175497146599723,
          -3.3405763000433617,
          -7,
          -7,
          -7,
          -7,
          -1.8038771296868603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163651902679467,
          -7,
          -7,
          -7,
          -4.200056665972214,
          -4.216218700837137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5635008615598887,
          -7,
          -7,
          -3.3794868137172736,
          -4.668986616818102,
          -3.1222158782728267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1222158782728267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.539787833529511,
          -7,
          -7,
          -7,
          -7,
          -3.65667304588485,
          -7,
          -7,
          -7,
          -7,
          -3.281033367247727,
          -3.6786950815004658,
          -7,
          -3.912806392661292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.108113808646113,
          -3.276584339119928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.648798963271332,
          -7,
          -2.781396305196791,
          -7,
          -7,
          -3.885304667588968,
          -7,
          -7,
          -7,
          -3.1658376246901283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8327438790877433,
          -3.5576274884268266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4092566520389096,
          -3.601081727784023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4865447338028455,
          -2.3283796034387376,
          -7,
          -7,
          -7,
          -3.3806814727378263,
          -7,
          -7,
          -7,
          -7,
          -3.9104998964054243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1358551510973984,
          -3.6763048564097263,
          -7,
          -7,
          -7,
          -4.392551871155508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2234094022589295,
          -7,
          -7,
          -7,
          -4.370864527900364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1863912156954934,
          -7,
          -3.5350408132511606,
          -7,
          -7,
          -7,
          -4.543757723163865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8090115272825527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.453573132944873,
          -7,
          -4.283934113456609,
          -7,
          -7,
          -3.1278237828537074,
          -3.1078880251827985,
          -3.3901399384676227,
          -3.3009214084695406,
          -7,
          -3.399846712712922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6028915923882656,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2769976395057503,
          -3.3769417571467586,
          -7,
          -7,
          -3.404719713605265,
          -3.384831120201789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9196532823103643,
          -7,
          -7,
          -4.93494093679307,
          -7,
          -7,
          -3.021602716028242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.165135466748402,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.04766419460156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.870273818567884,
          -7,
          -7,
          -7,
          -3.318000691817921,
          -3.342422680822206,
          -3.6326976567506746,
          -7,
          -3.7579103310516335,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7279477095447966,
          -7,
          -7,
          -7,
          -7,
          -2.8976270912904414,
          -2.876362196412118,
          -3.452246574520437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.236537261488694,
          -7,
          -7,
          -7,
          -4.178090837363468,
          -3.9007493580610793,
          -7,
          -4.289165152649889,
          -7,
          -7,
          -7,
          -7,
          -2.5623880418581058,
          -2.618962813876879,
          -7,
          -7,
          -7,
          -7,
          -4.573208868733832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6334684555795866,
          -7,
          -7,
          -4.38976836093798,
          -4.972292535465165,
          -7,
          -3.1995494966993565,
          -4.17410551615397,
          -7,
          -7,
          -7,
          -7,
          -3.076397685429307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4202858849419178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3005547261139583,
          -7,
          -7,
          -3.751499055612203,
          -7,
          -7,
          -7,
          -4.412737668240323,
          -4.375535592509499,
          -3.2831315492788855,
          -7,
          -3.8809849904867533,
          -7,
          -7,
          -7,
          -7,
          -4.3962342287858,
          -3.8836954961302164,
          -4.331852271933605,
          -4.674815229803586,
          -3.9689289479655416,
          -3.735519058815171,
          -4.315046224922345,
          -3.589055531052344,
          -5.087160045935873,
          -3.799845783427429,
          -4.533644978798763,
          -3.330718078732588,
          -7,
          -4.659440781870318,
          -4.1893780058420305,
          -7,
          -4.173113394096824,
          -3.8611459408661815,
          -4.678390894445093,
          -7,
          -4.1963420201397685,
          -3.3138672203691533,
          -7,
          -7,
          -7,
          -3.585883537734565,
          -4.6153923666841115,
          -7,
          -3.165735709164142,
          -3.7442035439045456,
          -2.188647295999717,
          -7,
          -3.6320926962641336,
          -7,
          -4.194365473068565,
          -3.6971421262754594,
          -7,
          -3.08092436232493,
          -7,
          -4.204554060135243,
          -7,
          -4.138192136407885,
          -3.8298181874388773,
          -7,
          -3.802705327074352,
          -3.676254521729781,
          -3.3771240423464564,
          -7,
          -3.6302686502254105,
          -4.232816881084013,
          -5.0075642946226235,
          -7,
          -7,
          -7,
          -3.2744465129379186,
          -7,
          -5.405597334788302,
          -7,
          -2.941275993039616,
          -7,
          -3.7223459424755814,
          -4.434345312562829,
          -4.306532247519607,
          -7,
          -7,
          -7,
          -4.199941576796646,
          -4.489156613869192,
          -7,
          -3.9441420122234043,
          -3.354156477915428,
          -7,
          -4.745730424798123,
          -7,
          -7,
          -4.132216983942544,
          -3.69605043980775,
          -1.6830470382388496,
          -7,
          -7,
          -7,
          -3.121067167467729,
          -2.816373888752362,
          -3.0790002523038495,
          -3.14547892920631,
          -2.592731766393962,
          -2.527844632387161,
          -3.2305078713793014,
          -2.502597799680834,
          -7,
          -7,
          -2.6757019822045427,
          -2.8254261177678233,
          -2.9776751167547753,
          -2.5458223549672385,
          -2.560305243220961,
          -7,
          -2.8990476216383856,
          -2.10920123623541,
          -2.5276299008713385,
          -3.1283992687178066,
          -2.167317334748176,
          -2.5287739107048073,
          -3.030599721965951,
          -1.953499490469544,
          -7,
          -3.0632082200712114,
          -2.427323786357247,
          -2.974930168855565,
          -7,
          -2.8773713458697743,
          -3.367015895779413,
          -2.8172084784393747,
          -2.700717899347058,
          -2.7535830588929064,
          -2.760723972141952,
          -3.4658288153574364,
          -2.420615770625765,
          -3.4823017672234426,
          -7,
          -2.7641761323903307,
          -3.2991924258016807,
          -7,
          -2.8847953639489807,
          -3.1027766148834415,
          -2.931457870689005,
          -2.9135489579065177,
          -7,
          -1.9588027033995024,
          -7,
          -7,
          -2.9993480692067216,
          -3.1459064003164983,
          -3.5959644342051575,
          -7,
          -3.255272505103306,
          -3.531606631932722,
          -2.8539009163221665,
          -3.0028754162503097,
          -3.00987563371216,
          -7,
          -3.203576774977973,
          -3.3527611917238307,
          -3.1767539326356737,
          -2.3285252176838247,
          -2.123851640967086,
          -2.5390760987927767,
          -2.3348556896172914,
          -3.3785190261704825,
          -7,
          -2.6339010916591,
          -2.4871383754771865,
          -3.055378331375,
          -2.6327946083041307,
          -2.0233896558066746,
          -2.7558748556724915,
          -3.500716623555479,
          -3.2511310447723267,
          -3.6303261548039467,
          -7,
          -3.7060346607143506,
          -3.4818724103106633,
          -7,
          -2.582347494084358,
          -2.8601382850306134,
          -2.6301504001043488,
          -2.250420002308894,
          -2.864511081058392,
          -7,
          -7,
          -3.0188895442801207,
          -3.1755118133634475,
          -3.1048284036536553,
          -2.6915235221681546,
          -3.4515433876937274,
          -1.8922934099642215,
          -2.9599055416319153,
          -3.0420707406931555,
          -2.670709595223797,
          -3.162713725583078,
          -2.7193312869837265,
          -7,
          -7,
          -7,
          -3.3759378186307774,
          -3.3953263930693507,
          -7,
          -2.9804578922761,
          -3.146128035678238,
          -2.187608839834818,
          -7,
          -7,
          -1.5509922837391463,
          -2.7693773260761385,
          -7,
          -2.8129133566428557,
          -2.88024177589548,
          -2.8090207204836726,
          -2.95784663370815,
          -7,
          -2.2900346113625183,
          -2.5579080274827057,
          -7,
          -2.9628426812012423,
          -3.0770043267933502,
          -7,
          -2.6300887149282057,
          -2.7693773260761385,
          -2.9352048674265814,
          -3.4701899062855524,
          -3.3647385550553985,
          -2.750893920382125,
          -7,
          -1.538143413273622,
          -3.0115704435972783,
          -7,
          -2.9941108467981485,
          -3.0729847446279304,
          -7,
          -2.8416097121684354,
          -3.147985320683805,
          -2.823963024361914,
          -7,
          -7,
          -2.528549432194961,
          -2.8027737252919755,
          -2.965953889102063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1610683854711747,
          -7,
          -7,
          -2.9048957878552057,
          -3.2105860249051563,
          -7,
          -4.128108349103107,
          -7,
          -7,
          -7,
          -3.9212181211949506,
          -3.1231226002485672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.631749987592334,
          -7,
          -7,
          -2.7947977592641324,
          -3.618611674183966,
          -7,
          -7,
          -7,
          -7,
          -3.3749315539781883,
          -7,
          -3.9685529904026318,
          -7,
          -7,
          -7,
          -2.960470777534299,
          -3.4762517960070336,
          -3.2234959409623944,
          -3.606488850442648,
          -7,
          -7,
          -7,
          -4.241334760242145,
          -7,
          -7,
          -7,
          -7,
          -3.030275802889288,
          -7,
          -7,
          -7,
          -3.3649260337899753,
          -3.4382258076045296,
          -3.2411648323430047,
          -7,
          -3.1762842359448387,
          -7,
          -7,
          -3.3085644135612386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.296884475538547,
          -3.0680930538642177,
          -3.049948192500717,
          -7,
          -7,
          -2.7662888869340487,
          -7,
          -3.5046747087698833,
          -3.0230053972499347,
          -7,
          -7,
          -3.98241985006465,
          -7,
          -2.9099569781681645,
          -7,
          -7,
          -3.026226739761552,
          -7,
          -3.2440295890300215,
          -7,
          -3.5757649805367193,
          -7,
          -7,
          -7,
          -3.4496326504700745,
          -7,
          -3.36923873849768,
          -2.9480215331411035,
          -4.058957178777311,
          -7,
          -7,
          -7,
          -3.443106456737266,
          -3.0537185238968583,
          -7,
          -7,
          -4.179206976155488,
          -7,
          -7,
          -7,
          -3.2383388812371847,
          -7,
          -7,
          -7,
          -3.7208205817703437,
          -2.932421276674442,
          -7,
          -7,
          -3.0595634179012676,
          -7,
          -3.1228881475449426,
          -2.849214606209089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2465259353438465,
          -3.2991389499032406,
          -7,
          -7,
          -7,
          -4.220090646144356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6285140388898274,
          -7,
          -7,
          -7,
          -3.239406743231971,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.288994028501752,
          -3.802636918082811,
          -3.8822968009376515,
          -3.2874284643448046,
          -7,
          -7,
          -7,
          -7,
          -3.0731682622651015,
          -3.791164125033335,
          -7,
          -7,
          -7,
          -7,
          -3.9518472968997793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4263485737875077,
          -7,
          -3.5269850685599957,
          -7,
          -3.930847191682497,
          -7,
          -7,
          -3.5903271909002226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0676287167282457,
          -7,
          -3.6032093494771824,
          -7,
          -3.7952541825808828,
          -3.139905950729172,
          -3.325310371711061,
          -3.4581844355702627,
          -2.779957051246906,
          -7,
          -3.524266268766979,
          -7,
          -3.4530123911214554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9966429913554724,
          -7,
          -4.361142087753333,
          -7,
          -2.877710029878129,
          -7,
          -7,
          -7,
          -3.116441697539312,
          -7,
          -7,
          -3.114344054609816,
          -3.205880729887537,
          -7,
          -3.2304489213782737,
          -3.4714567409470156,
          -3.431899599491494,
          -7,
          -7,
          -2.934750874663579,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.960280464436642,
          -7,
          -3.161667412437736,
          -3.794584622327861,
          -7,
          -7,
          -3.2750808984568587,
          -3.3637999454791094,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5158198968280416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0635585181109812,
          -3.45499721730946,
          -3.5459253293558426,
          -2.6706516545283736,
          -3.140036410975282,
          -7,
          -7,
          -2.8026127711598994,
          -2.781755374652469,
          -2.863966883310938,
          -7,
          -3.4885341273951536,
          -7,
          -7,
          -3.232742062720737,
          -2.8560841179056817,
          -7,
          -3.0499928569201424,
          -3.091315159697223,
          -7,
          -7,
          -3.299942900022767,
          -7,
          -3.081527326244805,
          -3.107662124276845,
          -3.564192460626198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8000293592441343,
          -3.373601541853096,
          -7,
          -3.568788212315347,
          -7,
          -3.532735274709472,
          -3.9439888750737717,
          -7,
          -3.306982282551364,
          -3.1812717715594614,
          -7,
          -3.3839050869769083,
          -3.4574276929464847,
          -3.1547282074401557,
          -2.6646419755561257,
          -3.850339854583479,
          -7,
          -7,
          -7,
          -3.977691410286653,
          -3.145351816558461,
          -7,
          -7,
          -7,
          -7,
          -3.407900540142635,
          -3.2489536154957075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3012470886362113,
          -4.385749227675279,
          -3.625946620256845,
          -4.620580189857018,
          -7,
          -3.3782767419344064,
          -4.119552797667117,
          -3.363737299322217,
          -7,
          -3.3346547668832414,
          -7,
          -3.644832328825636,
          -3.2460675192399124,
          -7,
          -7,
          -7,
          -7,
          -3.5397032389478253,
          -7,
          -7,
          -7,
          -3.731346975545955,
          -7,
          -2.9590148778070953,
          -7,
          -7,
          -3.4593817164331497,
          -4.176850610160418,
          -4.292499739685581,
          -3.236537261488694,
          -4.021685352215705,
          -3.6913997990989937,
          -2.649642251303885,
          -4.601212290310882,
          -3.0857774428096105,
          -3.240341203017829,
          -2.788433535176211,
          -7,
          -3.823580181490171,
          -3.9226605943560844,
          -2.6872613462435067,
          -3.503050994369906,
          -4.205240463402212,
          -2.939791919790285,
          -2.863434394037579,
          -4.332216205878284,
          -7,
          -4.009378294844197,
          -3.2953691485100065,
          -3.367666464108184,
          -2.8565699071538484,
          -4.349238662688126,
          -3.8890494582775337,
          -2.932447061047428,
          -3.5025636691073636,
          -3.1574063947093705,
          -3.231752684425389,
          -3.8407063757428226,
          -4.0416886941315635,
          -3.315314212257778,
          -2.5561516778861386,
          -7,
          -7,
          -3.8650002766762355,
          -3.1311907879776646,
          -3.419646017478006,
          -7,
          -3.7758833889278214,
          -4.028197720101696,
          -2.487188895396036,
          -7,
          -3.3474275986185416,
          -7,
          -3.746393108385608,
          -3.430840687404714,
          -3.3089910290001643,
          -3.4559102403827433,
          -4.189050275274487,
          -3.9901345373455035,
          -7,
          -3.8500639271210804,
          -7,
          -7,
          -7,
          -3.545041898453366,
          -2.9022360696016483,
          -7,
          -3.9957799353027403,
          -3.9210083935915856,
          -4.6658418474962895,
          -7,
          -7,
          -7,
          -3.3364835588742867,
          -7,
          -7,
          -3.633165353683903,
          -3.9411137270371017,
          -7,
          -4.0402660074460846,
          -4.146391634457859,
          -3.9444121640759975,
          -3.219060332448861,
          -3.1970047280230456,
          -3.564784384503987,
          -3.7894234092048125,
          -3.801650631931656,
          -7,
          -2.882740385211145,
          -3.392026389643856,
          -7,
          -4.0483194224790955,
          -7,
          -3.3861421089308186,
          -3.714947644666789,
          -3.537714180353135,
          -3.1997551772534747,
          -7,
          -7,
          -2.7052933977148914,
          -2.639130597679463,
          -2.077832842045998,
          -3.509740015570382,
          -2.286829670251312,
          -2.2041199826559246,
          -1.971275848738105,
          -2.4283635105171277,
          -1.7078362064167623,
          -3.472610197596045,
          -3.215108581053093,
          -2.1566164472925426,
          -1.7136105305189089,
          -2.8248312077777618,
          -2.526683818845363,
          -1.9752019622578523,
          -2.2565479670535487,
          -2.793456323676415,
          -2.0295287116034255,
          -2.1970047280230456,
          -2.156145156435762,
          -0.5664196350588286,
          -2.3467944909178753,
          -2.9786369483844743,
          -1.665223510201882,
          -2.3242824552976926,
          -2.7878651281530042,
          -7,
          -2.2327225144353644,
          -2.393867559040913,
          -2.596871878604247,
          -2.665483945585669,
          -2.808739845117393,
          -2.1235193223274114,
          -3.146128035678238,
          -2.1019129120616467,
          -2.9023655589976114,
          -2.4865316776156754,
          -2.984864716816858,
          -3.132579847659737,
          -3.41161970596323,
          -2.4252313570756017,
          -2.685443151803357,
          -1.4334061336424062,
          -1.7729881093117132,
          -2.8022604758937684,
          -2.045246255090335,
          -1.9588027033995024,
          -7,
          -2.57672517213259,
          -1.515684649859023,
          -2.449324093098727,
          -2.0414757957664404,
          -2.4541085892161996,
          -2.4674601095072637,
          -3.044245688956796,
          -2.926959488380276,
          -3.172894697752176,
          -2.081252842052782,
          -2.790519727626253,
          -2.7259116322950483,
          -2.512081284866043,
          -2.886490725172482,
          -2.5651020273557044,
          -2.738100733954366,
          -1.7882785888429444,
          -2.200884682394445,
          -1.8242188405518553,
          -3.426240081535656,
          -7,
          -2.5131541577360896,
          -2.1986570869544226,
          -2.53585649562398,
          -2.6574741619879405,
          -1.237036828856375,
          -7,
          -2.951580344903392,
          -2.2461266112866,
          -2.6266824662362946,
          -2.73413281289821,
          -2.7679182021097164,
          -2.281941933440825,
          -2.850714290418167,
          -1.3364597338485296,
          -2.301665995794215,
          -1.7561179536256082,
          -2.104163534134702,
          -1.7119052749795018,
          -2.6913762288033705,
          -7,
          -2.6196241523468924,
          -1.8912818604740502,
          -2.62283547952152,
          -1.7945234910719294,
          -2.4741911363832516,
          -2.048643178798163,
          -2.333773571713693,
          -3.052212835769748,
          -1.8745784456856038,
          -3.27207378750001,
          -2.2706788361447066,
          -2.9596772555121413,
          -7,
          -2.648034574860868,
          -2.9683272595463874,
          -2.0754709227891843,
          -3.154423973114647,
          -2.961104552884867,
          -3.348888723071438,
          -1.460834848706078,
          -3.3119656603683665,
          -2.9434945159061026,
          -3.1559430179718366,
          -1.8626961724476383,
          -1.8126227614617871,
          -1.837047036359575,
          -1.439625049601588,
          -2.049157430485653,
          -2.517855418930029,
          -2.5144001589521867,
          -2.7810369386211318,
          -1.6749317634685799,
          -7,
          -2.7651716502632686,
          -7,
          -2.9677819080757994,
          -3.230576636268741,
          -2.9373506949096404,
          -3.1845652557783897,
          -2.5038555079669074,
          -2.958802703399502,
          -2.814691432747457,
          -7,
          -2.4072408977401274,
          -2.968015713993642,
          -7,
          -3.334936032690669,
          -7,
          -7,
          -2.4860254478323944,
          -2.022525403969648,
          -3.544811911757776,
          -7,
          -7,
          -7,
          -7,
          -2.31854490346367,
          -3.413299764081252,
          -7,
          -7,
          -3.114610984232173,
          -7,
          -7,
          -7,
          -7,
          -2.8840397404753637,
          -2.8226038992559745,
          -7,
          -3.173186268412274,
          -3.844379916604807,
          -7,
          -7,
          -3.0791812460476247,
          -3.1694072252385252,
          -3.0802914129703645,
          -3.273695587930092,
          -7,
          -7,
          -7,
          -7,
          -3.070562787817278,
          -3.9181352261663593,
          -7,
          -3.23946632295603,
          -3.5470277612346184,
          -7,
          -3.1225435240687545,
          -7,
          -2.946288473013431,
          -3.291146761731886,
          -7,
          -3.7899800418403067,
          -3.241048150671644,
          -7,
          -7,
          -7,
          -2.808210972924222,
          -3.0993352776859577,
          -3.081707270097349,
          -7,
          -3.1539672216454786,
          -7,
          -3.8643049389888486,
          -7,
          -2.862429556106009,
          -2.9577668661476535,
          -7,
          -2.0643688391738695,
          -7,
          -7,
          -7,
          -2.4311339179075766,
          -7,
          -3.0657077276443823,
          -3.224403557764839,
          -2.4691615691918494,
          -3.8321255425340093,
          -7,
          -7,
          -3.2216749970707688,
          -7,
          -7,
          -7,
          -7,
          -2.4933186082321015,
          -3.329092647195331,
          -3.6811356668587436,
          -7,
          -7,
          -2.408663874063811,
          -7,
          -3.1741325234191096,
          -3.6869935662646784,
          -7,
          -3.0356965038452106,
          -3.679953248981408,
          -7,
          -3.453471233722936,
          -7,
          -2.6290696425437527,
          -1.9298033300351878,
          -2.9426693313867003,
          -2.648034574860868,
          -7,
          -2.8249064713021124,
          -7,
          -3.5666731376061165,
          -3.3085644135612386,
          -7,
          -7,
          -3.141342687508441,
          -2.905256048748451,
          -2.9628426812012423,
          -7,
          -7,
          -3.5085297189712863,
          -2.8946852037877533,
          -2.996949248495381,
          -3.343014497150768,
          -7,
          -3.2635768963716663,
          -7,
          -7,
          -7,
          -2.76733050948733,
          -7,
          -2.56643749219507,
          -3.011993114659257,
          -2.451696154995558,
          -2.956186223231246,
          -7,
          -7,
          -7,
          -7,
          -3.3154805264453038,
          -7,
          -7,
          -7,
          -3.6103407114521566,
          -3.2092468487533736,
          -3.236789099409293,
          -3.286203768893748,
          -3.8556251420846746,
          -7,
          -7,
          -7,
          -4.297462857233573,
          -3.2757719001649312,
          -3.225180008177683,
          -3.6639834546082666,
          -7,
          -3.19506899646859,
          -2.106629778521703,
          -2.5474054596674893,
          -7,
          -3.0136796972911926,
          -4.077440584471324,
          -7,
          -7,
          -7,
          -3.0557604646877348,
          -7,
          -3.2732328340430454,
          -2.6924062348336304,
          -3.170848203643309,
          -3.1300924267372516,
          -7,
          -3.433503150169539,
          -7,
          -3.09377178149873,
          -3.2907022432878543,
          -7,
          -3.384472889924203,
          -7,
          -7,
          -2.7261836614188204,
          -3.3444168371579774,
          -3.0141003215196207,
          -7,
          -7,
          -3.315130317183602,
          -3.0576661039098294,
          -2.5384480517102173,
          -3.3527611917238307,
          -3.4868553552769432,
          -3.168350140185944,
          -3.3836358683618797,
          -3.063386978864393,
          -7,
          -2.557206339765532,
          -3.840327991445741,
          -7,
          -7,
          -7,
          -3.2140486794119414,
          -7,
          -7,
          -7,
          -3.172991909723909,
          -3.116939646550756,
          -4.293252033147825,
          -7,
          -3.7652959296980564,
          -3.246879252504379,
          -7,
          -7,
          -2.8660903354600853,
          -7,
          -7,
          -2.7371926427047373,
          -2.906335041805091,
          -7,
          -2.737987326333431,
          -3.383815365980431,
          -7,
          -3.4144719496293026,
          -7,
          -7,
          -2.8026027095457597,
          -3.4498446565674765,
          -7,
          -3.492690561149542,
          -7,
          -7,
          -7,
          -3.041195233696809,
          -7,
          -7,
          -3.006323393378873,
          -3.145662470707546,
          -7,
          -2.3251636753807006,
          -7,
          -3.28397928423848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.598790506763115,
          -3.8484970180903666,
          -4.122322600329196,
          -7,
          -7,
          -2.688419822002711,
          -7,
          -7,
          -7,
          -7,
          -3.3544926005894364,
          -7,
          -7,
          -7,
          -7,
          -3.0965624383741357,
          -7,
          -3.0484418035504044,
          -3.0629578340845103,
          -3.799138619593707,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1855421548543754,
          -7,
          -7,
          -3.7307822756663893,
          -7,
          -3.519434194913703,
          -3.152349508312726,
          -7,
          -7,
          -7,
          -2.0404357682520624,
          -7,
          -2.9721027186202433,
          -2.363074486652865,
          -4.1136760118971,
          -7,
          -7,
          -7,
          -3.5389505620143615,
          -3.4815859363676225,
          -2.6626679063304084,
          -2.8564267724702446,
          -3.3961993470957363,
          -2.1481911962420113,
          -2.896801697664922,
          -3.052693941924968,
          -3.300812794118117,
          -3.057919558531498,
          -2.6651788044030984,
          -7,
          -2.6290696425437527,
          -7,
          -7,
          -7,
          -7,
          -3.1375123531221294,
          -3.257054277944658,
          -3.287129620719111,
          -7,
          -7,
          -3.811370704099495,
          -2.842609239610562,
          -3.068556895072363,
          -3.8211640307644217,
          -7,
          -7,
          -3.0434605235779117,
          -3.0879587894607328,
          -3.981909170090792,
          -2.795648331832097,
          -3.522900459461583,
          -3.095169351431755,
          -3.591621038213319,
          -2.60959440922522,
          -4.397374736429878,
          -2.644821396440092,
          -7,
          -7,
          -7,
          -7,
          -2.893206753059848,
          -7,
          -7,
          -3.0178677189635055,
          -7,
          -2.946615995262667,
          -7,
          -2.5386051486487737,
          -7,
          -2.9607085516885565,
          -3.372451701409366,
          -2.498861688992884,
          -3.9572360388763665,
          -3.2827266613816737,
          -4.242114805477301,
          -7,
          -3.130205069581069,
          -3.906939764651386,
          -3.336859820916809,
          -7,
          -3.241795431295199,
          -7,
          -3.1242868058150215,
          -3.219650005970414,
          -2.9860248820066873,
          -3.4252080511386565,
          -7,
          -7,
          -3.484157424365381,
          -7,
          -7,
          -7,
          -3.0938592615034377,
          -7,
          -2.76889361210532,
          -7,
          -7,
          -4.300236684117335,
          -7,
          -7,
          -7,
          -7,
          -4.082030981267012,
          -7,
          -4.295611076923875,
          -3.502990108608549,
          -7,
          -7,
          -7,
          -4.422335359999594,
          -4.522995988963267,
          -4.110297838172837,
          -7,
          -7,
          -4.448268198264959,
          -7,
          -4.323726367155352,
          -7,
          -4.911805458566956,
          -7,
          -4.538912893903674,
          -7,
          -7,
          -7,
          -4.2009325358991925,
          -7,
          -3.736707894580018,
          -7,
          -4.682172162503082,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983761560286165,
          -7,
          -3.257574239858015,
          -7,
          -3.897058654934976,
          -3.5238021896457496,
          -3.6145281197475394,
          -3.00552369267328,
          -3.8623898110266452,
          -7,
          -3.731553512580534,
          -4.016071816734024,
          -3.5634810853944106,
          -7,
          -3.4598540572723233,
          -3.3840934407581154,
          -7,
          -2.9534946926692696,
          -3.3784584677820555,
          -7,
          -3.8303319934519617,
          -3.683821230045629,
          -7,
          -7,
          -3.6136172198239294,
          -3.4884463604842493,
          -4.665487180782811,
          -7,
          -3.1316988442592404,
          -7,
          -3.702703320968491,
          -7,
          -7,
          -3.618919299575765,
          -3.9306434410421645,
          -7,
          -3.5546708351714558,
          -3.838801882249584,
          -3.9414688387364754,
          -7,
          -3.023458237643675,
          -3.363235804483694,
          -3.578797423889578,
          -3.3185085369309166,
          -3.2065560440990297,
          -3.082254038925177,
          -4.004268815714698,
          -3.6191977157929474,
          -4.234624344891733,
          -7,
          -2.9488040459328113,
          -3.6593984972774454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6425081628115623,
          -1.813866802650178,
          -1.7220301264804447,
          -7,
          -3.3891660843645326,
          -2.920664310678378,
          -7,
          -2.627195109792065,
          -2.60959440922522,
          -2.368644417219931,
          -3.035829825252828,
          -2.536033815546728,
          -1.3993516938589772,
          -1.9664350758652838,
          -7,
          -3.5414856359104596,
          -2.9429995933660407,
          -2.71121652432109,
          -7,
          -3.163757523981956,
          -3.8151126581898125,
          -7,
          -1.7954628943903799,
          -2.5239321817948963,
          -1.6921741159174137,
          -7,
          -2.600771282720914,
          -7,
          -7,
          -4.602363891112775,
          -3.113504660424134,
          -3.8373709559972196,
          -7,
          -3.519434194913703,
          -1.5914621306074836,
          -7,
          -1.4727162014619495,
          -7,
          -1.5327543789924976,
          -1.8834187583022521,
          -7,
          -7,
          -3.4702634469650784,
          -1.4669983859942513,
          -7,
          -7,
          -2.57672517213259,
          -7,
          -7,
          -0.7767155648384892,
          -2.7069736761761782,
          -3.908431398966006,
          -7,
          -1.332733677438973,
          -1.3799649732151271,
          -7,
          -3.1204542743702937,
          -7,
          -7,
          -7,
          -2.5794569365924565,
          -2.386287988405634,
          -1.542330061958561,
          -3.649821463224565,
          -3.3334472744967503,
          -7,
          -7,
          -3.159266331093494,
          -2.8096270418940494,
          -7,
          -1.4670743944328781,
          -1.680388070759728,
          -3.307067950661298,
          -7,
          -1.4862558922341522,
          -2.5161264550669142,
          -2.366236123718293,
          -3.454387467146955,
          -2.5512185706063266,
          -2.7584071921878865,
          -2.9979685486693444,
          -2.5100979751883425,
          -2.149998186291342,
          -7,
          -3.3085644135612386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8174331441113842,
          -3.528402437953617,
          -2.9332594512699535,
          -3.42422807069598,
          -7,
          -3.322243624275502,
          -7,
          -1.2625668398595538,
          -7,
          -1.7163916266127448,
          -7,
          -1.4382031886892928,
          -2.062923679353503,
          -7,
          -7,
          -2.1577966360127188,
          -2.41137916622742,
          -2.2567281259887664,
          -2.2087100199064014,
          -7,
          -7,
          -2.523312822759656,
          -7,
          -7,
          -2.7686381012476144,
          -7,
          -7,
          -7,
          -3.146128035678238,
          -7,
          -7,
          -2.823800153749878,
          -7,
          -3.159266331093494,
          -2.518660142364339,
          -2.7361972389182934,
          -2.948999454026953,
          -3.3235958235627225,
          -7,
          -2.887617300335736,
          -7,
          -3.2962262872611605,
          -7,
          -7,
          -3.226559207269092,
          -3.2041199826559246,
          -2.716003343634799,
          -2.890867938811441,
          -7,
          -2.8870543780509568,
          -7,
          -7,
          -3.446070935701005,
          -7,
          -3.2256538231813816,
          -2.636688447953283,
          -7,
          -7,
          -7,
          -2.53655844257153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.883012144086084,
          -7,
          -7,
          -7,
          -4.2024883170600935,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.440239816085663,
          -3.9005855866499615,
          -7,
          -3.6886867242841235,
          -3.9810434059034163,
          -7,
          -7,
          -7,
          -3.36679638328673,
          -7,
          -7,
          -2.8839688333242246,
          -2.301649973616383,
          -2.900913067737669,
          -7,
          -7,
          -2.4463818122224423,
          -7,
          -7,
          -7,
          -7,
          -3.015778756389041,
          -4.841109084468154,
          -7,
          -7,
          -7,
          -7,
          -3.062487970918584,
          -7,
          -3.1470576710283598,
          -7,
          -7,
          -3.300812794118117,
          -4.307699231631596,
          -7,
          -7,
          -7,
          -7,
          -3.1109262422664203,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2943559851451605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3981329855611953,
          -7,
          -7,
          -5.126222349463532,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.287577809078705,
          -3.908712191721561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.389272429175553,
          -2.8382192219076257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.199496156206543,
          -3.0655797147284485,
          -3.855458580386036,
          -7,
          -4.995029392086501,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.304598226343637,
          -3.20615098159626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.436639631692661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5448614576459025,
          -7,
          -7,
          -7,
          -7,
          -2.910624404889201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5900612308037427,
          -7,
          -7,
          -3.9474873313986176,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.935406489752349,
          -7,
          -7,
          -7,
          -7,
          -3.9559146976452366,
          -7,
          -7,
          -7,
          -7,
          -3.4149733479708178,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.083359264660818,
          -7,
          -7,
          -7,
          -2.9710437918360286,
          -7,
          -7,
          -2.6130863955560057,
          -2.9150478947700735,
          -7,
          -7,
          -4.360952968049115,
          -3.2650537885040145,
          -7,
          -7,
          -2.688864568054792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8291965263847696,
          -7,
          -4.67176592005093,
          -7,
          -2.528488190640618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2801228963023075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0979956320455218,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7985125330313516,
          -7,
          -3.305136318943639,
          -7,
          -7,
          -3.7180447335139175,
          -7,
          -3.934952707817858,
          -7,
          -3.867837730406542,
          -7,
          -7,
          -7,
          -7,
          -3.758609142659744,
          -3.494432898726399,
          -3.735119634081872,
          -3.854063011866421,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9403670459856652,
          -7,
          -7,
          -7,
          -4.053417803596533,
          -7,
          -7,
          -3.990072334692153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8981078474672053,
          -2.8573324964312685,
          -7,
          -7,
          -4.8285490535326625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7891751343253475,
          -4.972344030581982,
          -7,
          -7,
          -4.241430254748615,
          -3.490660653356137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.643288139836406,
          -4.773545103223439,
          -7,
          -7,
          -7,
          -3.8999663367071444,
          -3.5893910231369333,
          -4.593042261900327,
          -4.5805543564083875,
          -7,
          -3.019012379815664,
          -7,
          -7,
          -4.220513414767524,
          -2.929555153595555,
          -7,
          -7,
          -3.4048699840315244,
          -7,
          -4.015841571684366,
          -3.598899887063883,
          -5.388351683831754,
          -7,
          -7,
          -4.112202690730536,
          -3.8573324964312685,
          -4.35923767911977,
          -7,
          -7,
          -3.8215062500719243,
          -3.8637985386805003,
          -7,
          -7,
          -4.198794500175598,
          -3.3322364154914434,
          -7,
          -7,
          -4.455986239067319,
          -4.190611797813605,
          -4.31527743947181,
          -2.8447877188278463,
          -7,
          -4.367903569482139,
          -7,
          -7,
          -7,
          -7,
          -4.457856675648477,
          -4.002122846225162,
          -7,
          -4.14367043347016,
          -4.48660992182486,
          -4.682515107334342,
          -7,
          -4.440657244144619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.390497944533399,
          -4.20945857234593,
          -5.706617089429145,
          -7,
          -2.8610220696884467,
          -7,
          -4.257558587444218,
          -7,
          -7,
          -7,
          -4.223288219096948,
          -7,
          -7,
          -4.134702916820561,
          -4.182214865267536,
          -7,
          -7,
          -7,
          -7,
          -4.189349924339198,
          -7,
          -4.0415111129593235,
          -4.258009568255152,
          -7,
          -4.7459039238674015,
          -7,
          -7,
          -3.911274825786263,
          -4.300182294646901,
          -2.9242792860618816,
          -7,
          -7,
          -7,
          -3.730862992046494,
          -2.577830453990907,
          -3.3961993470957363,
          -3.5877109650189114,
          -2.462397997898956,
          -2.8488047010518036,
          -3.346313847059117,
          -2.213849659558812,
          -3.0459094670350093,
          -7,
          -3.1607685618611283,
          -2.4002500911501117,
          -3.436701808477978,
          -7,
          -2.2911467617318855,
          -1.4816585538068021,
          -3.2298417622229714,
          -2.6625689669332604,
          -3.08161730749073,
          -3.1562461903973444,
          -2.751279103983342,
          -2.9468030399953147,
          -2.586587304671755,
          -1.952515690138819,
          -3.3059958827708047,
          -3.5518158223510157,
          -7,
          -3.117188407119984,
          -7,
          -7,
          -3.3943422178182256,
          -3.4822319819836443,
          -3.2704529682818424,
          -7,
          -1.0695692111150856,
          -3.345177616542704,
          -2.546542663478131,
          -3.01717251394567,
          -7,
          -7,
          -3.051128394305932,
          -7,
          -2.081244406611398,
          -1.598773142276921,
          -7,
          -2.79605370040254,
          -7,
          -1.515684649859023,
          -7,
          -7,
          -2.4137187650610787,
          -3.9954596866210643,
          -3.4222066951579917,
          -2.8639173769578603,
          -3.5671440451956573,
          -2.8428587624452937,
          -7,
          -2.947494989360088,
          -3.0461047872460387,
          -7,
          -3.208387603795154,
          -7,
          -2.761935665168088,
          -7,
          -2.5002153572023382,
          -2.4812036769243906,
          -7,
          -3.560086048497414,
          -2.265211027637486,
          -2.707499207149024,
          -2.1557696815169702,
          -3.373463721632369,
          -3.816705183666515,
          -1.6313369446412391,
          -7,
          -3.807940721215499,
          -3.4863191329739993,
          -3.338057875419756,
          -1.3248674400236076,
          -3.6109793799229974,
          -3.1931245983544616,
          -2.750970984437319,
          -1.8567837983394515,
          -2.784260582566084,
          -2.902456178608144,
          -2.6286443222846065,
          -1.7134036349493234,
          -2.5634810853944106,
          -2.816241299991783,
          -3.363442741279142,
          -2.8866317069889784,
          -2.832508912706236,
          -2.527486687520691,
          -3.6868915113982936,
          -2.5196405150411416,
          -2.9361587817056365,
          -3.293387111239789,
          -2.1836830421216202,
          -7,
          -1.6776862831585442,
          -7,
          -7,
          -2.4853427913382387,
          -3.685204134471015,
          -3.226771698912882,
          -2.8344207036815328,
          -3.0002170929722305,
          -7,
          -1.9482924534631156,
          -1.8495558985503493,
          -2.0448880318480462,
          -7,
          -2.8305886686851442,
          -1.6789733759197651,
          -2.2630439833131657,
          -1.919078092376074,
          -2.970280444951661,
          -2.9786369483844743,
          -3.345177616542704,
          -2.5514499979728753,
          -2.466496903744401,
          -2.9375178920173464,
          -7,
          -7,
          -2.745465168670727,
          -3.1233615587462964,
          -2.6653464274249417,
          -3.114610984232173,
          -3.4766867429456445,
          -3.3730040047672736,
          -7,
          -7,
          -3.2586372827240764,
          -3.04766419460156,
          -7,
          -3.3248583881988676,
          -7,
          -7,
          -2.7059858251715236,
          -3.161517733138683,
          -3.1398790864012365,
          -2.591064607026499,
          -7,
          -3.391816923613249,
          -7,
          -3.3727279408855955,
          -7,
          -7,
          -7,
          -3.269512944217916,
          -7,
          -7,
          -7,
          -3.245265839457461,
          -2.6765411988558334,
          -3.4075608494863623,
          -7,
          -3.00987563371216,
          -3.5353857052762576,
          -3.8003733548913496,
          -7,
          -3.245018870737753,
          -3.1840716740489867,
          -3.0944461713401465,
          -3.085290578230065,
          -7,
          -7,
          -7,
          -7,
          -3.15601883092165,
          -3.6453240015622934,
          -3.1784013415337555,
          -3.0615278708905076,
          -3.2205229985629567,
          -7,
          -7,
          -7,
          -2.904038968600478,
          -2.922379406594948,
          -7,
          -3.6682577529497595,
          -2.7585334222372864,
          -7,
          -7,
          -7,
          -2.7962967400517917,
          -7,
          -2.505045568058097,
          -7,
          -3.5328817194073974,
          -7,
          -3.8437620828337336,
          -7,
          -7,
          -3.215108581053093,
          -2.6033248398913864,
          -2.07132157559902,
          -7,
          -2.8817649496862066,
          -7,
          -2.3458191151555057,
          -7,
          -2.7731714320613046,
          -2.9897834198968223,
          -2.2242548193822347,
          -3.8664054983780547,
          -3.296445794206396,
          -3.3378584290410944,
          -3.2889196056617265,
          -3.3461573022320086,
          -3.361538971269279,
          -7,
          -3.228400358703005,
          -3.025510672852581,
          -2.476849735809972,
          -3.236848334173514,
          -7,
          -3.2161659022859928,
          -2.2573185130976388,
          -7,
          -2.7726550358373743,
          -3.1316186643491255,
          -7,
          -2.979206813945708,
          -3.6817579471116177,
          -7,
          -2.8313577854420675,
          -7,
          -2.963079160641827,
          -1.7369950446660034,
          -2.901049445343407,
          -2.5770319856260313,
          -7,
          -2.6358187213644175,
          -2.8514621949945393,
          -3.3266430361026345,
          -2.886490725172482,
          -3.4709981696608736,
          -7,
          -3.0045477615939205,
          -2.815198120256473,
          -2.7842042331316814,
          -7,
          -7,
          -3.577836341292744,
          -2.7646243978509815,
          -3.071513805095089,
          -2.916980047320382,
          -7,
          -2.6763506101478534,
          -7,
          -7,
          -3.193958978019187,
          -2.2253509746632445,
          -3.2089785172762535,
          -2.9437417658313136,
          -2.8145805160103183,
          -2.330576096087729,
          -2.79485387103731,
          -7,
          -3.263636068588108,
          -2.783903579272735,
          -3.4112829130173843,
          -3.2581239524386674,
          -7,
          -7,
          -3.0398105541483504,
          -2.886960486691408,
          -2.887858329561368,
          -3.0570952896126675,
          -2.86150725642242,
          -3.648900196979764,
          -7,
          -3.6049277034284457,
          -3.0195316845312554,
          -3.884856337732354,
          -3.388278863459639,
          -2.9904498565727176,
          -3.71357453777207,
          -7,
          -7,
          -1.933466196889718,
          -2.3542151847499793,
          -7,
          -7,
          -3.6894154213820136,
          -7,
          -7,
          -7,
          -3.229169702539101,
          -7,
          -2.792686526225059,
          -2.811038508604216,
          -3.040545831821507,
          -3.4741433897608056,
          -7,
          -3.3372595397502756,
          -7,
          -3.2550311633455515,
          -2.922033079238554,
          -4.097222592519901,
          -3.0481642458737346,
          -7,
          -7,
          -3.032820149438564,
          -3.4092566520389096,
          -3.2016701796465816,
          -7,
          -3.483016420144132,
          -2.718667735316211,
          -3.2304489213782737,
          -3.1204093945560682,
          -7,
          -3.55942779975949,
          -2.6401085986457034,
          -3.473778834646725,
          -2.65745844336742,
          -2.848343094827404,
          -2.6018427897820984,
          -3.540025634074014,
          -7,
          -7,
          -7,
          -3.34143452457814,
          -7,
          -3.256717745977487,
          -7,
          -2.8305886686851442,
          -7,
          -3.7032268741481635,
          -3.2038484637462346,
          -2.9591095650677848,
          -2.8280227464330054,
          -7,
          -2.923983747103962,
          -2.06641467461787,
          -3.420120848085703,
          -2.842359573330675,
          -2.738780558484369,
          -2.5176356898679657,
          -3.394626764272209,
          -2.5343434568060275,
          -3.12985095078891,
          -2.99409708958821,
          -3.282546589969968,
          -7,
          -3.7016974770258484,
          -2.256830895064795,
          -3.460465587356657,
          -7,
          -3.2685111110587712,
          -7,
          -3.8357539675193832,
          -3.3098430047160705,
          -2.9630003484681415,
          -7,
          -7,
          -2.742594221135839,
          -3.2246625288410296,
          -7,
          -2.1636085634310516,
          -7,
          -2.961684702257791,
          -7,
          -2.890979596989689,
          -3.2706788361447066,
          -3.2135177569963047,
          -7,
          -3.290479813330673,
          -7,
          -7,
          -3.666705136119899,
          -2.578110012727244,
          -4.166430113843282,
          -3.965639236752102,
          -7,
          -2.801403710017355,
          -3.0051805125037805,
          -7,
          -7,
          -7,
          -7,
          -2.9725113957504123,
          -7,
          -7,
          -7,
          -7,
          -3.256958152560932,
          -7,
          -3.2242740142942576,
          -3.4581844355702627,
          -3.646918104564691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.773640193260026,
          -3.174786417367337,
          -3.3783979009481375,
          -2.627422757278291,
          -7,
          -7,
          -7,
          -1.8943896435119245,
          -3.5017437296279943,
          -2.9036078703683783,
          -2.6388884247050757,
          -4.02138778832472,
          -3.057475915826254,
          -7,
          -7,
          -3.038262407104784,
          -2.916980047320382,
          -2.428049496084509,
          -2.6851213670441716,
          -3.4274861090957858,
          -1.9908976866546153,
          -2.851869600729766,
          -2.5260806918020298,
          -2.6278776945799716,
          -2.4520056101349996,
          -2.5370172851730106,
          -7,
          -3.2645817292380777,
          -3.109240968588203,
          -3.256717745977487,
          -7,
          -7,
          -2.9163223242173815,
          -3.380075503475807,
          -7,
          -3.5851221863068155,
          -7,
          -3.688165476764458,
          -2.283792678888281,
          -7,
          -3.611255844847484,
          -7,
          -2.7444885672205115,
          -2.549266072612872,
          -2.875495340871019,
          -3.160854246873126,
          -2.553680794052605,
          -3.3815963601406294,
          -2.7841892053809607,
          -2.870501444747579,
          -2.7544757508452475,
          -4.3105761718588536,
          -2.674299673973244,
          -7,
          -7,
          -7,
          -3.355579216240905,
          -2.6399842480415883,
          -7,
          -3.3199384399803087,
          -2.866877814337499,
          -7,
          -2.8071289555924217,
          -3.2837533833325265,
          -2.2015408590501777,
          -3.3310221710418286,
          -3.0764583877121514,
          -3.119668207244826,
          -2.8530895298518657,
          -3.960565902818198,
          -3.175699365701362,
          -4.296128050854992,
          -7,
          -2.5832584502973877,
          -3.7678729114200067,
          -3.0040755930845697,
          -7,
          -2.5822528043462953,
          -7,
          -3.6585837154070626,
          -3.0113287324559876,
          -2.9006401839826004,
          -3.507855871695831,
          -7,
          -7,
          -3.255875273391467,
          -7,
          -7,
          -7,
          -3.1401150518957146,
          -3.27669152884504,
          -2.485933600889173,
          -7,
          -7,
          -4.607315597669501,
          -4.7799786753300575,
          -7,
          -7,
          -4.420846541601197,
          -4.0919481908785595,
          -7,
          -4.00062927088754,
          -3.5853761184457458,
          -7,
          -7,
          -7,
          -4.250785826687035,
          -4.400464593466745,
          -4.11651919378264,
          -4.351138958581849,
          -4.206520053837808,
          -4.6272378027861425,
          -7,
          -4.335076597314406,
          -7,
          -4.6909381778354655,
          -7,
          -4.244808836846276,
          -3.663700925389648,
          -7,
          -4.367570219499281,
          -4.215928229339918,
          -7,
          -3.7407286347551265,
          -7,
          -4.085067485564809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.16818800475665,
          -7,
          -3.4211101297934343,
          -2.8813846567705728,
          -4.078275522086601,
          -3.040021591492229,
          -3.244771761495295,
          -3.147985320683805,
          -3.5052081388648544,
          -3.048053173115609,
          -3.594593426642608,
          -3.0839403565513352,
          -2.720572720364261,
          -4.157275396454035,
          -3.4112829130173843,
          -3.0769422219858713,
          -7,
          -3.2234501285027197,
          -2.9332059908106287,
          -7,
          -3.262332413822626,
          -3.9156636035057732,
          -7,
          -7,
          -3.2106254789227284,
          -3.5447837581666044,
          -4.804270655346634,
          -3.2595938788859486,
          -3.174277918292213,
          -7,
          -3.337159644526856,
          -3.851869600729766,
          -5.1062249048967985,
          -3.5129177534573452,
          -3.546542663478131,
          -7,
          -3.343782654669529,
          -4.1485872321429795,
          -3.8362396965244656,
          -3.1061908972634154,
          -2.9863237770507656,
          -7,
          -3.4726210327460354,
          -3.2469360469440005,
          -3.335858911319818,
          -2.906560310984251,
          -3.599308630368478,
          -3.6738499773429494,
          -4.048595216808917,
          -7,
          -2.9208187539523753,
          -3.5780658838360915,
          -4.319043566399113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.381029081802262,
          -1.2965236571066519,
          -1.6777728089309885,
          -2.9439888750737717,
          -3.4782778319196046,
          -2.54165487206726,
          -2.7016913116170014,
          -2.0542157128256915,
          -2.246744709723841,
          -2.175959634723138,
          -7,
          -2.3879804323128875,
          -1.283374781838098,
          -2.0293837776852097,
          -7,
          -2.8171144355748146,
          -2.8041394323353503,
          -2.355719638613961,
          -7,
          -7,
          -2.2900964722673876,
          -7,
          -2.0055481951688097,
          -2.3137166067099697,
          -1.3539385356851514,
          -7,
          -2.4851072570571047,
          -7,
          -2.9362623419034777,
          -3.763149784852867,
          -2.707514560598585,
          -3.3480891924506277,
          -7,
          -2.984414787243434,
          -1.4046223390223078,
          -3.361727836017593,
          -0.9627609703517096,
          -7,
          -1.406798151621762,
          -1.6768850447403816,
          -7,
          -3.241048150671644,
          -3.545430829465351,
          -1.4196949370625,
          -3.7709992051639407,
          -2.9993480692067216,
          -2.449324093098727,
          -0.7767155648384892,
          -2.4137187650610787,
          -7,
          -1.612403878049977,
          -3.525044807036845,
          -7,
          -1.2899823276711404,
          -1.2798511362397667,
          -7,
          -2.8158086639122692,
          -7,
          -7,
          -3.6518108610117204,
          -1.853753504217767,
          -2.18519344738246,
          -1.3148722551578658,
          -3.0013009330204183,
          -2.3888436682532856,
          -7,
          -3.9112108931375533,
          -2.2973227142053028,
          -2.614338797449572,
          -3.278753600952829,
          -1.2659149386601007,
          -1.3566800444024676,
          -2.8095597146352675,
          -2.2818852037063175,
          -1.2457243123026969,
          -1.969628590819608,
          -1.970262325566553,
          -2.5298151966446305,
          -2.2445039010543644,
          -2.4237918130180067,
          -2.7349331100815006,
          -2.494154594018443,
          -2.085283143653935,
          -3.2776092143040914,
          -3.4138025167693513,
          -3.3875677794171883,
          -3.2095150145426308,
          -7,
          -3.9029270960172626,
          -7,
          -1.6914030131311042,
          -3.2935835134961167,
          -2.666393165355889,
          -2.6020599913279625,
          -3.192455938511975,
          -3.053918355714631,
          -2.9081785301701615,
          -1.1380148847219913,
          -7,
          -1.1548038032485408,
          -7,
          -1.3266469230038163,
          -1.815812058813848,
          -7,
          -3.1956229435869368,
          -1.7038382993699157,
          -2.139323367218689,
          -2.093149570816301,
          -1.9334872878487053,
          -7,
          -7,
          -7,
          -7,
          -3.210853365314893,
          -2.9375178920173464,
          -3.0925452076056064,
          -3.4459154139511234,
          -2.5348718599395945,
          -2.511437702158953,
          -3.0130479961152314,
          -7,
          -3.2771506139637965,
          -2.556101391950587,
          -3.3012470886362113,
          -2.145755623637207,
          -2.737987326333431,
          -2.7272283421926953,
          -3.837714668284911,
          -3.748885440009517,
          -3.021602716028242,
          -2.717393087162805,
          -3.0521165505499983,
          -3.3014640731432996,
          -7,
          -3.0211359262688506,
          -3.334051440346892,
          -2.4791844152834357,
          -2.7443907861817323,
          -3.277265309456845,
          -2.959279950130939,
          -7,
          -3.236537261488694,
          -3.2238851518758858,
          -2.7286242862229995,
          -3.146128035678238,
          -2.5894708640199418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.495775529716882,
          -2.7752917999785107,
          -2.913120709844209,
          -2.521644156181464,
          -3.6799726942774185,
          -3.3913762391696496,
          -3.0152362915297055,
          -2.9184928935246375,
          -7,
          -3.9807303765359454,
          -2.5138565817652143,
          -2.2448344222145216,
          -4.010469569796392,
          -3.995898323646437,
          -7,
          -3.6775613311560935,
          -3.6732052817790453,
          -2.2500774312148915,
          -3.7441364524012473,
          -7,
          -2.203181876449656,
          -2.6487906292519825,
          -4.004665233247877,
          -7,
          -3.971554153446061,
          -3.087347537450042,
          -3.4114092409812082,
          -7,
          -3.6145703180599975,
          -3.527372082827612,
          -3.977266212427293,
          -7,
          -3.9902500329278165,
          -7,
          -3.682190218984122,
          -2.2479732663618064,
          -3.9732664361085286,
          -3.271415618781008,
          -2.907993255039917,
          -3.1426196465966703,
          -7,
          -3.9923325590474645,
          -2.485957905922165,
          -3.0088981147709397,
          -2.0679538048440853,
          -7,
          -3.5268990185335793,
          -3.481550113834348,
          -2.47716383052303,
          -2.7052526322873587,
          -2.0908384551410677,
          -3.290442730593008,
          -1.888069214244454,
          -2.975718945367262,
          -3.9906495883188544,
          -3.220761653975142,
          -3.1645758949823053,
          -3.00039068924991,
          -7,
          -7,
          -3.6766021695820186,
          -2.614765431938085,
          -2.6684204324445906,
          -2.755769346221779,
          -2.978545700462739,
          -3.9755696578936623,
          -2.306922610847946,
          -7,
          -2.77509442444802,
          -2.9745774799800357,
          -3.9778607292646972,
          -3.1106271156204817,
          -2.5414995135598417,
          -7,
          -2.616105810460869,
          -7,
          -3.683272236315922,
          -1.3070412898672565,
          -2.5072604310624937,
          -3.2876226024861923,
          -3.493272117359938,
          -3.4664598146729486,
          -3.997517439414725,
          -3.6038297496598206,
          -2.6780278487139313,
          -3.429752280002408,
          -7,
          -2.093744898972794,
          -2.467079316425522,
          -1.9647492132986788,
          -3.1970047280230456,
          -7,
          -3.2185730139164606,
          -2.373565814884186,
          -2.710924711347061,
          -2.5856316106761206,
          -3.504062882678692,
          -2.233968902971278,
          -7,
          -7,
          -7,
          -2.0687398856757437,
          -3.974327435423617,
          -2.848881587744384,
          -2.812662729830916,
          -2.146261438991191,
          -2.2165476761046525,
          -7,
          -3.984212166761434,
          -3.1649473726218416,
          -3.3171436620228896,
          -2.907306471393107,
          -2.3660970326463957,
          -3.2718880526604837,
          -2.96528011476304,
          -2.917855464834902,
          -2.7582864160604745,
          -3.304619762853121,
          -2.7526154239139053,
          -1.9074980009049258,
          -7,
          -3.7231545443921883,
          -7,
          -3.855430309029509,
          -3.533560238411781,
          -2.7890980595595236,
          -3.0711788047067543,
          -7,
          -7,
          -1.4298799326440386,
          -2.7126131063474843,
          -3.9688563746146923,
          -3.671913012441587,
          -2.799907883932568,
          -7,
          -7,
          -7,
          -3.375526446675889,
          -7,
          -2.786440847338095,
          -3.1132746924643504,
          -2.4178112658140627,
          -2.605336740684594,
          -3.997779430865604,
          -3.1031719432008473,
          -7,
          -7,
          -3.411325026421723,
          -3.8306528137974243,
          -3.1144719788595743,
          -7,
          -3.9848872010643275,
          -7,
          -2.9869706781459966,
          -7,
          -7,
          -4.035389709198677,
          -2.524500814263041,
          -3.9780891730561425,
          -2.6951897138022916,
          -7,
          -7,
          -3.098797499203422,
          -7,
          -2.960734963005006,
          -3.2481776883387057,
          -3.213296347620159,
          -2.4529220306674047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.982904117792628,
          -3.9735434685324895,
          -2.377437798729648,
          -3.5083501285699255,
          -3.333012995488623,
          -7,
          -2.687897814926582,
          -2.086134111752849,
          -2.6206131348939996,
          -2.134698573897456,
          -2.0420156273858576,
          -2.841401187421594,
          -2.5882910298599247,
          -3.5462135278186464,
          -3.1292869842179925,
          -4.012373167222489,
          -3.4213570985131425,
          -2.739110644752371,
          -3.388145623856844,
          -3.433097476967988,
          -7,
          -2.8530895298518657,
          -2.6044260689687695,
          -2.6431846848842975,
          -7,
          -2.9749719942980692,
          -3.971461405024587,
          -3.0192053369187453,
          -3.9933921374490025,
          -2.9817362608522706,
          -3.985336641735613,
          -3.9917132757130895,
          -2.903993825990188,
          -3.202293662186187,
          -7,
          -2.575726528681198,
          -2.876039047832732,
          -2.3095755769561013,
          -7,
          -3.6704314093606056,
          -3.1399240420952785,
          -3.3727739637205776,
          -3.6787914343662442,
          -7,
          -7,
          -3.9934362304976116,
          -2.0671535473026466,
          -3.202045350620628,
          -3.1751250862836606,
          -3.161117232139066,
          -7,
          -3.5099637749044597,
          -2.8154006298544783,
          -2.5617400834287203,
          -7,
          -7,
          -7,
          -2.662921995161852,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.187470603188043,
          -7,
          -7,
          -7,
          -7,
          -3.697403723200488,
          -3.2962701975267965,
          -7,
          -3.998782269831736,
          -4.138176339573041,
          -2.991266360881699,
          -2.408824558860751,
          -2.1302198775923924,
          -2.5087948871576584,
          -3.498034723687027,
          -7,
          -1.5172706109957594,
          -1.990621349001281,
          -1.6733169604664826,
          -3.999695887410839,
          -2.980371353572635,
          -3.1003274582102502,
          -3.681874122128647,
          -3.0812122449879595,
          -3.494548806405942,
          -2.6522463410033232,
          -1.9017122104576005,
          -2.8266300482253013,
          -2.968428005865279,
          -1.6814996690891952,
          -2.110190848049964,
          -7,
          -2.838303257217854,
          -2.7084578503607872,
          -2.8598135415071138,
          -7,
          -3.285061975935162,
          -3.23771125771367,
          -3.982904117792628,
          -3.247768748118374,
          -7,
          -1.9761305930235014,
          -2.6950561797445025,
          -3.234390722392192,
          -3.765407750790011,
          -3.545142110961596,
          -2.9008708648852064,
          -1.798591765678604,
          -7,
          -3.0351833474357774,
          -7,
          -2.7960971103163055,
          -3.0649002270174326,
          -3.556824948270698,
          -2.180424883222142,
          -2.113289239500206,
          -7,
          -3.558468562523795,
          -3.3103746420476123,
          -2.633351902960404,
          -2.6871515323369826,
          -2.529638852931278,
          -7,
          -7,
          -7,
          -3.1642636080226607,
          -2.7723883930158575,
          -7,
          -7,
          -3.1056993786226297,
          -3.98344585734134,
          -2.8651039746411278,
          -3.2887856124025046,
          -1.797830963889765,
          -3.9978667262391445,
          -2.9282677984501237,
          -3.2712107746411596,
          -2.820551732299791,
          -3.208333844497951,
          -2.2801123594578954,
          -3.349856647581789,
          -7,
          -3.2249069709218237,
          -3.7988884028032657,
          -2.7563434766857546,
          -7,
          -3.4024763265233604,
          -7,
          -3.3136563466180315,
          -3.1342640621234383,
          -3.373402454159332,
          -3.4402004153614896,
          -7,
          -7,
          -2.777350496469624,
          -7,
          -7,
          -3.999652425366079,
          -4.125058151172073,
          -3.9867269593312185,
          -1.917010589497117,
          -3.6685256885568625,
          -7,
          -2.408702390713377,
          -3.2091254812396053,
          -4.139233459140505,
          -2.8158432906632664,
          -3.5263679996200654,
          -2.1311338865820924,
          -2.2432248018527514,
          -2.997986728734311,
          -1.8321033032122396,
          -2.35786341111216,
          -2.853461603499059,
          -3.4629667009097616,
          -3.070428626873039,
          -3.3625506487568675,
          -2.0011879629820015,
          -3.878636673026517,
          -2.6131575505462368,
          -2.1387716948758584,
          -7,
          -3.1896380429619335,
          -7,
          -4.124708385166029,
          -3.8404668106930764,
          -2.12549665884508,
          -2.5131368536733767,
          -4.481413961253745,
          -3.258278015243031,
          -3.5393808228365784,
          -7,
          -2.0324609465937584,
          -2.753302742300264,
          -3.25998670693116,
          -3.698347069034933,
          -4.088082906528282,
          -3.7340393487571233,
          -7,
          -4.216033877818673,
          -3.0390990451760107,
          -3.104487111312395,
          -2.1013592637731815,
          -7,
          -3.0731487427978834,
          -2.8983745114874,
          -2.7133592688790253,
          -2.248463717551032,
          -2.935291288456696,
          -4.047780924741197,
          -2.2896782179173534,
          -3.573683693093798,
          -7,
          -3.717504074764202,
          -2.741333451523255,
          -2.327316515095668,
          -7,
          -2.5486182064918386,
          -3.0446237442419464,
          -7,
          -3.137929259755552,
          -3.557654214241106,
          -7,
          -7,
          -3.125656086902075,
          -2.460737593625028,
          -4.195406484730991,
          -7,
          -4.139532771597939,
          -7,
          -3.09810021660978,
          -7,
          -4.077843403008046,
          -3.20455823185195,
          -4.104043029922009,
          -3.9738664498353784,
          -3.8734513937097477,
          -3.1574084097585495,
          -3.696019208407526,
          -2.8549130223078554,
          -2.4862403588911572,
          -2.7681255921293118,
          -2.8161868675127377,
          -2.1012174708869567,
          -3.697795823376305,
          -2.040214856216984,
          -3.248152870802089,
          -2.9207840090040063,
          -3.7016712064148596,
          -7,
          -3.0657494206748472,
          -2.9008162576433216,
          -3.678897576201988,
          -7,
          -7,
          -7,
          -7,
          -4.148448403523384,
          -1.3006191504514415,
          -2.0588844995901434,
          -1.2537182492765606,
          -3.378488748031808,
          -2.4399396743370376,
          -2.318659483967699,
          -1.7472373637694574,
          -2.8910194679543166,
          -3.379532125886119,
          -2.287499106768442,
          -3.9755237129603316,
          -2.354206346938359,
          -2.00941689881391,
          -2.7142856308540804,
          -4.043401578910881,
          -2.229090858172361,
          -2.9992492063863114,
          -2.465544485482776,
          -4.005480809979401,
          -3.6911699341316035,
          -2.1853119149262725,
          -7,
          -2.4776035362594007,
          -3.0751818546186915,
          -2.1277884718276874,
          -7,
          -2.404560059092356,
          -7,
          -3.502108338302493,
          -2.877479330077011,
          -1.825356965962974,
          -2.2204146672656555,
          -3.9708116108725178,
          -3.221637755336672,
          -1.816445265937485,
          -7,
          -1.9161154053482399,
          -7,
          -2.2856406428815594,
          -1.4689551604370634,
          -7,
          -2.802636918082811,
          -3.576533303571085,
          -2.404792011671339,
          -2.1176895206789914,
          -3.1459064003164983,
          -2.0414757957664404,
          -2.7069736761761782,
          -3.9954596866210643,
          -1.612403878049977,
          -7,
          -3.213747903069593,
          -3.6731591954541862,
          -2.117912478570315,
          -1.9457967260479998,
          -7,
          -1.2955932026846997,
          -7,
          -7,
          -3.0480013294385864,
          -2.6093967600697114,
          -1.362223758624564,
          -2.018085446189288,
          -2.043637998675992,
          -2.4878451201114355,
          -7,
          -3.9019212493762616,
          -3.292300384859081,
          -2.789727567230209,
          -2.9069632186628955,
          -2.349654097721151,
          -1.2769941764972297,
          -2.7365223057290464,
          -3.4936439050611052,
          -1.4237712239985465,
          -0.5505993099604394,
          -2.1964390649696863,
          -2.8725447293769673,
          -2.0694466906279434,
          -2.565035708058474,
          -2.9253727683396926,
          -3.2350231594952237,
          -1.9298934287203138,
          -1.8510599199240134,
          -3.539786789252412,
          -2.930567009900929,
          -3.9744195738522863,
          -3.970765159780768,
          -2.6027054557581097,
          -3.0705180970198693,
          -2.494589366786662,
          -2.1340645523132356,
          -1.7028743734610616,
          -2.3056697671748903,
          -2.369965093310457,
          -2.729026432136778,
          -3.0878459249737014,
          -2.0183978544157357,
          -3.992686039162128,
          -2.5494120098036346,
          -7,
          -2.03342375548695,
          -2.033750562998724,
          -3.0964359785983557,
          -3.6709412807357755,
          -2.043837786748507,
          -1.8465476663945941,
          -1.8544581971920788,
          -2.9992610711131005,
          -7,
          -7,
          -3.9717859378791145,
          -7,
          -3.974649834438722,
          -3.9796394122229075,
          -1.5739712574358031,
          -7,
          -3.037027879755775,
          -3.51241754860084,
          -2.9935684827897275,
          -3.0767314430382817,
          -3.384487822086762,
          -3.99899997221832,
          -3.9916247345340055,
          -2.5341415331616393,
          -3.323994202181974,
          -2.7019493236739613,
          -3.1250374286850575,
          -7,
          -3.296840627340024,
          -7,
          -2.9136725954360077,
          -3.2130748253088512,
          -7,
          -2.7790362224230765,
          -7,
          -3.695831772826692,
          -3.0464951643347082,
          -3.160731069351768,
          -2.756560043006683,
          -3.9766250520507276,
          -7,
          -3.570348319900194,
          -3.9739586861067036,
          -2.6633434412297596,
          -3.3235408460980116,
          -7,
          -3.9691828592322613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.221231613181412,
          -7,
          -7,
          -7,
          -3.0578897480168896,
          -7,
          -7,
          -7,
          -4.008685319195168,
          -3.649042634086176,
          -7,
          -7,
          -4.185343801582189,
          -7,
          -7,
          -2.6336110186015156,
          -3.7523942084053634,
          -7,
          -7,
          -3.4010680453089526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.283015932570804,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.934321667513431,
          -7,
          -3.6173970865153198,
          -7,
          -7,
          -4.232182634187274,
          -7,
          -2.2943298414179085,
          -7,
          -7,
          -7,
          -7,
          -3.9208274397551555,
          -3.4133541437902304,
          -7,
          -4.05952555273869,
          -3.8478193472952396,
          -7,
          -4.20306009759596,
          -7,
          -7,
          -3.9052830562719762,
          -7,
          -7,
          -7,
          -3.064949100672052,
          -2.8010706272538823,
          -7,
          -7,
          -3.3961245911816342,
          -7,
          -4.307945075845931,
          -3.9823617016331467,
          -7,
          -7,
          -4.092182412910935,
          -7,
          -7,
          -7,
          -7,
          -3.651859269246949,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7431176252147416,
          -3.1659764148756198,
          -4.264109156305809,
          -7,
          -7,
          -7,
          -7,
          -4.222716471147583,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.282939165754773,
          -3.8898057518680855,
          -7,
          -7,
          -7,
          -7,
          -2.5952066401840526,
          -4.205475036740891,
          -7,
          -7,
          -4.265266047887377,
          -3.584218112117405,
          -7,
          -4.474493075006849,
          -3.3639757106352675,
          -7,
          -4.038162978435675,
          -7,
          -3.1250562356895384,
          -7,
          -4.248046869358661,
          -7,
          -7,
          -7,
          -2.9284583038295486,
          -7,
          -7,
          -7,
          -2.8825245379548803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5050481786205916,
          -7,
          -4.465085287557433,
          -3.693265155714742,
          -7,
          -3.874713688757779,
          -7,
          -7,
          -7,
          -3.574543846224296,
          -7,
          -7,
          -7,
          -7,
          -3.851450549213087,
          -7,
          -7,
          -7,
          -4.21505564736031,
          -7,
          -7,
          -4.219977256744623,
          -7,
          -7,
          -7,
          -7,
          -4.2203957782315955,
          -7,
          -3.565916291001725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8899363358931804,
          -7,
          -3.169022388112188,
          -7,
          -4.30464129829467,
          -3.359705418354718,
          -4.205231438820003,
          -3.691656043498147,
          -3.9721565358594937,
          -7,
          -4.2372923375674585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.56696751468097,
          -7,
          -2.935572270237632,
          -7,
          -4.314604473213435,
          -7,
          -4.218614269745094,
          -7,
          -7,
          -3.532117116248804,
          -3.9329554831162303,
          -7,
          -7,
          -2.8033297854157246,
          -2.810430203137513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.760874638052189,
          -7,
          -3.1110791251778114,
          -2.7374265241697593,
          -7,
          -7,
          -4.198931869932209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7867131768474955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.725476030972769,
          -3.1804787808061468,
          -7,
          -7,
          -7,
          -3.921348270280974,
          -7,
          -7,
          -3.1033149257643444,
          -7,
          -3.2757719001649312,
          -7,
          -2.333318409122339,
          -7,
          -4.192901826109565,
          -7,
          -3.1137147160910255,
          -4.309757882316366,
          -3.6818199109880556,
          -4.002209272988015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.608085178437431,
          -7,
          -7,
          -2.9651635486826406,
          -7,
          -7,
          -7,
          -7,
          -3.7768464086952993,
          -7,
          -7,
          -7,
          -3.9601138720366857,
          -3.633392699935256,
          -2.7468102160993535,
          -3.8715145587083817,
          -7,
          -7,
          -7,
          -4.012605257946353,
          -7,
          -7,
          -7,
          -3.94126290931895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.208736877114406,
          -4.280100110054924,
          -4.202133980060819,
          -3.9386998099696515,
          -4.594315188234234,
          -3.322334046036867,
          -4.202379321079624,
          -7,
          -3.026584330956644,
          -3.8421514084022284,
          -7,
          -7,
          -7,
          -3.9623219727295846,
          -4.321826183768503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.357878345009401,
          -2.691605984637163,
          -2.2127647225826825,
          -2.802636918082811,
          -2.958518067079998,
          -2.8942029975509205,
          -2.455976496389408,
          -2.738376029233355,
          -2.357737088527054,
          -2.6607402205351565,
          -2.245256522432556,
          -1.8829559936467783,
          -2.8532514966327533,
          -2.9205688835070207,
          -2.050269725144891,
          -2.794271650788277,
          -2.5022581338025716,
          -2.2243872833409797,
          -3.129537255261788,
          -2.7086671756137686,
          -3.668269405761896,
          -3.101215445237254,
          -2.882873675280301,
          -1.9036270577576777,
          -2.563797396028862,
          -3.258110255321881,
          -3.108341874862239,
          -2.7713568794849883,
          -3.3877710651183564,
          -2.276804279785151,
          -2.6586373316420966,
          -3.0704978948302255,
          -3.2126838649269582,
          -2.926642506981403,
          -2.7190462913403337,
          -3.4310419453358856,
          -3.3961024388097374,
          -2.7152076832489747,
          -1.9242203627211898,
          -3.5438818782481594,
          -7,
          -3.6439036572971206,
          -3.3050105477691814,
          -3.876468026859822,
          -3.5889660227086835,
          -3.110890197740769,
          -7,
          -3.341730044534258,
          -3.6147039190058914,
          -3.7781029927601812,
          -2.250792024445299,
          -3.5226072263706474,
          -3.567365472210331,
          -3.74020473550745,
          -3.5464604029452773,
          -7,
          -7,
          -4.324447085505086,
          -2.940957708931293,
          -3.085847809030809,
          -3.427864626379701,
          -3.2531725590743164,
          -3.1133664244900174,
          -3.0827604445276005,
          -7,
          -4.295896818678989,
          -7,
          -3.1639022977727844,
          -3.3654463838101742,
          -4.032067283910736,
          -3.3867583135862205,
          -2.6314993658233234,
          -7,
          -2.8459609051863803,
          -2.8733517463155307,
          -2.8598885038757995,
          -3.09968064110925,
          -7,
          -3.3273998072376996,
          -2.8513463849849727,
          -3.6174006916297037,
          -7,
          -3.548969417380984,
          -2.924275149904263,
          -7,
          -2.946553076387335,
          -7,
          -7,
          -3.2118191363261213,
          -3.2837659364659917,
          -7,
          -7,
          -7,
          -3.0421252913482664,
          -2.5287642283562692,
          -2.1492489190780883,
          -3.757294782847373,
          -2.590688431618049,
          -3.288081468736615,
          -2.8815921305506578,
          -2.370071610360726,
          -2.7899833959966163,
          -3.92667678639669,
          -7,
          -2.6559916658950637,
          -3.409876790951437,
          -1.7251131088741447,
          -3.073901558314207,
          -3.3546845539547285,
          -2.8876428703838406,
          -2.881939567275474,
          -2.2710409206551185,
          -2.588943642740015,
          -1.9493348651412958,
          -2.7199386533405456,
          -2.956982282900748,
          -2.3145878572394274,
          -2.6326214246439354,
          -3.745309059940828,
          -3.7836415902165057,
          -4.184577874932025,
          -2.717878448652346,
          -2.436843893426568,
          -3.7134625412575164,
          -2.2821566721414137,
          -2.40145085584641,
          -1.7647792549889878,
          -7,
          -2.6111796985484577,
          -3.526339277389844,
          -2.351338936973356,
          -3.5511327007286075,
          -3.7069736761761782,
          -3.6154239528859438,
          -2.4249485448383665,
          -3.408635626349605,
          -3.8899736384039962,
          -3.3344788832062546,
          -3.7394404803282644,
          -1.8474637815711823,
          -3.5959644342051575,
          -2.4541085892161996,
          -3.908431398966006,
          -3.4222066951579917,
          -3.525044807036845,
          -3.213747903069593,
          -7,
          -3.4883532650390285,
          -3.4855084848338214,
          -3.7818989193511494,
          -2.764201907308401,
          -2.6734288443646643,
          -2.005023411506081,
          -3.1905557923351724,
          -2.2025192329253795,
          -3.452348761457827,
          -1.7444664398795455,
          -3.4712428012687067,
          -1.5998588226819117,
          -4.217404974401542,
          -3.1201899153438655,
          -2.7834469809135887,
          -7,
          -1.1591758179606904,
          -2.675167089663394,
          -3.1167354288396383,
          -3.1221544171577533,
          -2.3844577343685702,
          -7,
          -3.4208218220040685,
          -2.9465051692283937,
          -3.3759835025820006,
          -7,
          -2.6741781802543962,
          -2.786457682207476,
          -3.462654647851409,
          -3.6098077693287025,
          -2.4282882881236194,
          -1.7559902827779956,
          -2.5785326019327033,
          -2.6769355639062264,
          -7,
          -4.1854004831904525,
          -2.7764821024837807,
          -1.488920663651653,
          -3.505800931949501,
          -2.3815477619447862,
          -2.3576112698227605,
          -3.1506541205096408,
          -2.3502480183341627,
          -2.4688190763202438,
          -2.3309546133716443,
          -3.4688394488579064,
          -2.855326386800406,
          -4.22177925693969,
          -3.2307894109934434,
          -3.5068206042642256,
          -3.3869446243705745,
          -2.831516743132146,
          -7,
          -3.7447882918684714,
          -7,
          -1.8881200547559909,
          -4.203495235193291,
          -3.1535099893008374,
          -3.8852481077813863,
          -3.8849368971038603,
          -3.888235673270567,
          -3.2842897062472733,
          -3.0762201993238683,
          -2.6257444722246497,
          -2.1644059707459053,
          -7,
          -3.594834355583318,
          -3.053105894858664,
          -7,
          -7,
          -4.202842365194632,
          -2.8167658936635127,
          -4.238773501720696,
          -2.801904793732039,
          -2.4953866359281345,
          -1.5672944772204624,
          -2.181639454224491,
          -3.723838623672183,
          -4.186193249920351,
          -3.7852348968790297,
          -3.721040784326413,
          -4.184691430817598,
          -2.3981665380079065,
          -7,
          -7,
          -2.44502907393028,
          -1.5297811767161091,
          -2.8422097046404304,
          -7,
          -7,
          -3.1541449043022327,
          -4.187351482223461,
          -1.5843312243675307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7320518194031846,
          -7,
          -7,
          -7,
          -5.270615957861121,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752698761855619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.778675706087729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9745040169098305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.162564406523019,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.673843841896885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275219186782149,
          -7,
          -7,
          -4.750969058002591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0661394928706995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.53763023032496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.124275932006338,
          -4.536664478278395,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464300725903642,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.659250468772661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.408010882423134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.131101950794651,
          -7,
          -7,
          -3.9794800840392948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.226193127497442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.875169533985348,
          -7,
          -7,
          -5.0176634441579555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.59250984790068,
          -7,
          -7,
          -7,
          -4.23341073559512,
          -3.891295806018899,
          -7,
          -7,
          -4.57785930100737,
          -7,
          -7,
          -7,
          -7,
          -4.519512983257626,
          -3.5781920805402576,
          -7,
          -7,
          -3.7750067696282232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.772424399356814,
          -4.150664353529561,
          -4.674897865991049,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.757712270328809,
          -7,
          -7,
          -7,
          -7,
          -4.678245151927042,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.487597890293567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.067442842776381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.419713488826743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.347056665366522,
          -7,
          -7,
          -4.605283492530251,
          -4.289811839117621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.51075346917954,
          -7,
          -4.176525336535,
          -2.605305046141109,
          -2.9161906599805376,
          -3.433989724808988,
          -2.7345998321264577,
          -7,
          -7,
          -3.4252896164467943,
          -1.9746651808046278,
          -3.7161355606084956,
          -7,
          -2.3729120029701067,
          -2.6720978579357175,
          -7,
          -2.6603910984024672,
          -3.037027879755775,
          -7,
          -2.5165353738957994,
          -7,
          -1.8750612633917,
          -2.2052043639481447,
          -7,
          -7,
          -2.1903316981702914,
          -3.097213912792869,
          -2.44870631990508,
          -7,
          -3.3628039075477067,
          -4.394651270323019,
          -3.4433625685513345,
          -7,
          -3.0979510709941502,
          -7,
          -2.6725596277632757,
          -7,
          -7,
          -7,
          -3.466076375349264,
          -2.385606273598312,
          -2.5854607295085006,
          -7,
          -7,
          -2.7017598112436323,
          -7,
          -2.4674601095072637,
          -7,
          -2.8639173769578603,
          -7,
          -3.6731591954541862,
          -3.4883532650390285,
          -7,
          -7,
          -7,
          -7,
          -3.5356421758189995,
          -2.0218781088604905,
          -2.5854607295085006,
          -3.2793246654426103,
          -7,
          -4.091504775081104,
          -7,
          -2.1972206099604468,
          -3.1322596895310446,
          -7,
          -7,
          -7,
          -3.0539998606930654,
          -2.734799829588847,
          -7,
          -7,
          -2.3078524552347384,
          -7,
          -7,
          -3.9288667653964007,
          -7,
          -7,
          -3.822778104826663,
          -3.4234097277330933,
          -3.7145812088395314,
          -3.061829307294699,
          -3.7207379770184255,
          -2.6348801407665263,
          -2.4878451201114355,
          -2.5563025007672873,
          -7,
          -7,
          -3.752662943120972,
          -2.9398519178833737,
          -7,
          -2.808042085314898,
          -3.6808403640591796,
          -7,
          -3.0387424037299495,
          -7,
          -2.5192220013770665,
          -7,
          -2.3450468246483553,
          -7,
          -7,
          -7,
          -3.640779477344857,
          -7,
          -7,
          -7,
          -7,
          -3.390281408229663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.576341350205793,
          -3.004894321731049,
          -2.3756636139608855,
          -7,
          -7,
          -2.144885418287142,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7423322823571485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.385963570600697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3270522653266985,
          -7,
          -7,
          -7,
          -3.539452491549461,
          -7,
          -7,
          -3.5043349118024643,
          -3.225309281725863,
          -2.533243945589153,
          -7,
          -3.52750101098112,
          -3.261143867700667,
          -3.1986437435491863,
          -3.8986154974161855,
          -7,
          -3.225180008177683,
          -2.832910851172597,
          -2.7338160978899246,
          -3.0035682306796563,
          -3.5683190850951116,
          -7,
          -3.520614521878236,
          -7,
          -2.8447611095485645,
          -3.416515692139289,
          -7,
          -3.2651717231909316,
          -2.9306133334104154,
          -7,
          -3.241172786770047,
          -3.4998244958395794,
          -2.7269987279362624,
          -2.768109312089503,
          -7,
          -3.3131772257740724,
          -2.812133153334518,
          -7,
          -7,
          -7,
          -3.0730765131400317,
          -2.833784374656479,
          -2.8069333037164066,
          -3.504878459410216,
          -3.2227164711475833,
          -7,
          -3.4335513705142096,
          -7,
          -7,
          -2.607901598556746,
          -3.60422605308447,
          -1.8674800254095916,
          -3.0657041722395175,
          -2.9874428049358013,
          -7,
          -2.652783368995461,
          -3.174544349203273,
          -2.562600654599416,
          -2.6607074090369185,
          -1.8971308019513333,
          -2.909701871683438,
          -7,
          -3.099910730906369,
          -2.8357698150802566,
          -3.5822906827189938,
          -3.591287265058499,
          -7,
          -7,
          -2.7247438593895046,
          -2.2008504980910777,
          -3.344364199443406,
          -3.221283799492686,
          -7,
          -1.9041066737190036,
          -3.503109436671369,
          -2.6299458313993953,
          -2.6688206148564593,
          -3.5182506513085,
          -2.5276299008713385,
          -3.471186441854217,
          -7,
          -2.920123326290724,
          -7,
          -3.2355284469075487,
          -1.7065594219777749,
          -3.0780941504064105,
          -2.6973539073617196,
          -7,
          -2.6602328566510707,
          -2.726144810545967,
          -2.686189234244024,
          -2.75190866845489,
          -2.7546349672131645,
          -3.6462076122066853,
          -2.6977850942665635,
          -2.945679561323437,
          -2.38464540805471,
          -3.511749711344983,
          -7,
          -3.731266349075492,
          -3.1775364999298623,
          -3.108734108602365,
          -2.7747823052705765,
          -3.5282737771670436,
          -2.8452789583596783,
          -7,
          -7,
          -3.5005109105263372,
          -2.427918673356549,
          -7,
          -2.56118659791047,
          -3.0225314677988853,
          -1.9001129694791195,
          -2.2970608126818783,
          -3.563599728881531,
          -3.5363058723510337,
          -3.128937494690652,
          -3.3200423754796446,
          -3.1296415629730068,
          -7,
          -7,
          -2.9107133176711484,
          -2.94911107633224,
          -2.8453461374114086,
          -3.1119342763326814,
          -3.041590046889367,
          -3.3120678713554006,
          -3.2612628687924934,
          -3.9848872010643275,
          -7,
          -3.82961678096687,
          -2.605305046141109,
          -3.13956426617585,
          -3.131361989115943,
          -7,
          -7,
          -1.5977354300511866,
          -2.1708790495172456,
          -7,
          -3.0265332645232967,
          -3.374365024877566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7113853790984517,
          -2.7928763631597087,
          -2.7102712611027617,
          -3.1000257301078626,
          -7,
          -3.41073506681745,
          -3.505963518018126,
          -7,
          -3.0115704435972783,
          -7,
          -2.859738566197147,
          -7,
          -3.5381965783494542,
          -3.0978355210448445,
          -2.9108447206229275,
          -7,
          -3.4954055631461936,
          -3.666892211066536,
          -3.1484998267052453,
          -7,
          -3.3265406685165617,
          -7,
          -3.018783688874697,
          -2.5600775062037324,
          -2.814628055223535,
          -2.299878868399812,
          -2.644635503768153,
          -2.710963118995276,
          -3.268541503618488,
          -2.8464608251293324,
          -7,
          -7,
          -2.8796692056320534,
          -3.0630830451223976,
          -3.0549958615291417,
          -3.5056925074122,
          -2.8403021730559184,
          -7,
          -3.3840147208069307,
          -7,
          -2.9472158119567875,
          -2.629950556958126,
          -7,
          -3.175105740887016,
          -2.3833498485369895,
          -3.325515663363148,
          -3.229169702539101,
          -3.035929789456723,
          -2.814913181275074,
          -3.1335389083702174,
          -2.5226448314230057,
          -3.242851882584178,
          -7,
          -2.8656368876996288,
          -7,
          -3.3677285460869766,
          -2.493968958417453,
          -3.4384192768514645,
          -3.5251744278352715,
          -2.7157348093720355,
          -3.499549625905149,
          -3.0813473078041325,
          -3.5615783683009608,
          -2.7351995484223135,
          -3.2381716036301467,
          -3.255754786643044,
          -2.7393613426327974,
          -2.916453948549925,
          -7,
          -1.9461246192171453,
          -7,
          -2.788389352411851,
          -7,
          -3.4998244958395794,
          -3.238798562713917,
          -3.03261876085072,
          -7,
          -7,
          -7,
          -3.5616975326539935,
          -3.337698805964078,
          -2.1378656637782965,
          -3.5122840632818537,
          -3.715097061723223,
          -3.4934580509951885,
          -3.0671948870277648,
          -2.655018314638606,
          -7,
          -7,
          -3.5182506513085,
          -3.6868149545073168,
          -3.168202746842631,
          -2.9431976300689264,
          -7,
          -7,
          -7,
          -3.532754378992498,
          -7,
          -3.0380900496081393,
          -2.6490426340861766,
          -3.2394149932197545,
          -3.1961761850399735,
          -3.201806642957022,
          -7,
          -7,
          -3.274042330049831,
          -7,
          -7,
          -3.274734984872738,
          -3.2750232653226883,
          -3.184880624670255,
          -3.0395628247012687,
          -2.789674705127005,
          -3.653983907374069,
          -7,
          -7,
          -1.5174322594135998,
          -3.3780343224573315,
          -2.515554531259106,
          -2.3192217631820213,
          -3.830275825517338,
          -3.589726256254237,
          -7,
          -7,
          -3.018423082826786,
          -2.834791465503346,
          -2.1542606375239313,
          -2.4983105537896004,
          -3.9838517189914717,
          -2.3509617316943032,
          -3.271609301378832,
          -3.0395463043793804,
          -2.9192873405043827,
          -2.8434663744184254,
          -2.1249115923549144,
          -7,
          -3.5368108659915416,
          -2.5044185788030413,
          -3.5326270012288914,
          -2.8662873390841948,
          -7,
          -2.8447433691232478,
          -2.7928584219256614,
          -7,
          -3.2589563822842833,
          -7,
          -3.560545286566989,
          -2.488426282762359,
          -3.52270499273475,
          -3.439825930092142,
          -3.513617073787875,
          -3.2819419334408244,
          -2.4354992980773567,
          -3.1863912156954934,
          -3.224607048037594,
          -2.407280034926181,
          -2.8308353288166703,
          -2.62446961504493,
          -2.6048018496313974,
          -2.2490235558263048,
          -3.7808012637673216,
          -2.285643847711239,
          -7,
          -7,
          -7,
          -3.3224260524059526,
          -2.4719928544270404,
          -7,
          -2.8673496171887924,
          -2.358183228180746,
          -2.83416628394262,
          -2.4245186658770486,
          -3.5471591213274176,
          -2.5631984703770168,
          -7,
          -3.6009728956867484,
          -2.4543366159693427,
          -3.0959825284443285,
          -3.918828024910367,
          -2.955110230970552,
          -3.786833916184531,
          -7,
          -2.6057456809049255,
          -3.538229034708407,
          -2.6815929538723164,
          -7,
          -2.989004615698537,
          -7,
          -2.7467049482220722,
          -2.9021018307478776,
          -2.901076715726255,
          -2.602150459921541,
          -3.2066909810216324,
          -7,
          -2.568536957184299,
          -3.535547279176668,
          -7,
          -2.878406887580996,
          -2.705497167475071,
          -3.0657041722395175,
          -2.105491048217859,
          -3.494154594018443,
          -3.200440076436431,
          -4.14701639612984,
          -4.490337794344103,
          -7,
          -7,
          -4.734903791882342,
          -3.5750063009359265,
          -7,
          -3.7165562993397074,
          -3.418124443314898,
          -7,
          -3.824386202318774,
          -7,
          -3.895580385213198,
          -4.3104128948315825,
          -3.656662407539732,
          -7,
          -3.998825819040286,
          -3.7601811416654574,
          -3.827885982789856,
          -7,
          -7,
          -4.614580866997486,
          -7,
          -3.9631028015052774,
          -3.3431271326910226,
          -7,
          -4.0811852273835525,
          -3.6541283912618123,
          -7,
          -3.3160822265631986,
          -7,
          -3.856055311086805,
          -3.7737133252770216,
          -4.262308674749025,
          -7,
          -4.17076028088121,
          -4.010299956639812,
          -3.8901134942909175,
          -7,
          -2.9417796781737486,
          -7,
          -3.393320693557942,
          -2.8902712123140275,
          -3.3175619366212463,
          -3.080566364476648,
          -3.2661593022103284,
          -3.217834747530156,
          -3.2003305651247738,
          -2.3958503760187813,
          -2.586812269443376,
          -3.8797694599360364,
          -3.155202571949865,
          -3.0223596265107244,
          -7,
          -2.6911104914874224,
          -3.0151734029146566,
          -3.216429830876251,
          -3.1050233074971167,
          -3.574857708475501,
          -3.564902672529205,
          -7,
          -2.973145124860241,
          -3.0051847197848223,
          -4.1901677985567725,
          -3.2328691051326137,
          -2.535063847247395,
          -3.5446880223026773,
          -3.075537603513607,
          -3.4628470358316736,
          -4.409944952202783,
          -3.0508851820376446,
          -4.283549972002684,
          -7,
          -3.012029849231654,
          -3.0104754173446038,
          -3.2571915630244033,
          -3.526016021340753,
          -2.8321666341003913,
          -3.179886765714693,
          -3.0547725984703322,
          -2.759107523483687,
          -2.973589623427257,
          -2.6346315231555373,
          -3.3773716406852055,
          -3.3234583668494677,
          -3.444006221109515,
          -7,
          -2.819214799882384,
          -3.0555392705956312,
          -3.874017703862186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.114986933832905,
          -1.3742947154876974,
          -1.4903084222666931,
          -3.5267268673146357,
          -2.9640709705579553,
          -2.416374900038764,
          -3.011062694729735,
          -2.064083435963596,
          -2.380211241711606,
          -1.8947353540933787,
          -7,
          -2.1055472807534796,
          -1.278331409265105,
          -2.281870273597101,
          -7,
          -3.0014632759848294,
          -2.725185387172794,
          -2.2061659906502573,
          -3.5935075893317654,
          -7,
          -2.489355711136674,
          -7,
          -2.494618336168116,
          -2.044735697450507,
          -1.3738778291825056,
          -7,
          -2.4023794041326516,
          -7,
          -3.52270499273475,
          -3.9261468671635575,
          -2.591129904389959,
          -3.3438498292968344,
          -7,
          -3.7378285058957847,
          -1.0528443612908982,
          -7,
          -1.1461280356782382,
          -7,
          -1.3250852078064717,
          -1.50250361077883,
          -7,
          -7,
          -3.4075608494863623,
          -1.3946705241071904,
          -2.920181321147177,
          -3.255272505103306,
          -3.044245688956796,
          -1.332733677438973,
          -3.5671440451956573,
          -1.2899823276711404,
          -2.117912478570315,
          -3.4855084848338214,
          -7,
          -7,
          -1.0459574485589669,
          -7,
          -2.758781422699542,
          -7,
          -7,
          -3.723209310405111,
          -1.8951461893759922,
          -1.862408455607033,
          -1.3714474350404606,
          -3.1217567584878156,
          -2.8559227751038248,
          -7,
          -3.9891827512555476,
          -2.5129753158318624,
          -2.502022277744067,
          -3.5444401373176926,
          -1.2708026832045765,
          -1.4685934593401977,
          -2.9223101632143957,
          -7,
          -1.171911616738176,
          -1.8989723109196854,
          -1.900562185691819,
          -3.0970836960665213,
          -1.949041315753517,
          -2.5161074400320955,
          -2.566115951349753,
          -2.6582234545138173,
          -1.8384513851399538,
          -3.2604291755779347,
          -3.1453000192560077,
          -7,
          -3.030599721965951,
          -7,
          -7,
          -7,
          -1.631467366203099,
          -3.1407436671412032,
          -2.495580220261618,
          -3.080175365574602,
          -3.0886675525424048,
          -2.7575455534913176,
          -3.2597730063299823,
          -0.9031888588152286,
          -7,
          -1.3197856732887936,
          -7,
          -1.1760219880639236,
          -1.561138862137888,
          -3.877946951629188,
          -3.501333178645566,
          -1.8409420802430991,
          -2.1465709673656916,
          -1.9177558908826795,
          -2.0149403497929366,
          -7,
          -7,
          -3.022840610876528,
          -3.5162708827293403,
          -3.5089335260500327,
          -3.2220658425885866,
          -3.353723937588949,
          -7,
          -2.5911573950798172,
          -2.3437777349071722,
          -3.564192460626198,
          -3.525692524505011,
          -2.843606471924511,
          -2.6204830741547482,
          -3.0791812460476247,
          -2.1255668662689016,
          -2.636287252098513,
          -2.4638929889859074,
          -3.024844694749236,
          -3.8580557180503643,
          -3.09143245732978,
          -3.501333178645566,
          -3.0871422793838077,
          -2.7103591771903925,
          -3.4940153747571436,
          -2.6689855331549603,
          -3.097719940343722,
          -2.4893724660018175,
          -2.6666619535321328,
          -7,
          -2.3947017784328417,
          -7,
          -3.0444090865590487,
          -2.9952841076892596,
          -3.205610309902521,
          -2.576947229882608,
          -2.200384310237582,
          -3.5888317255942073,
          -7,
          -3.513483956704257,
          -2.996219709466273,
          -3.472317546316842,
          -7,
          -3.198519630241168,
          -2.2445863372491552,
          -2.9947569445876283,
          -2.897901874268228,
          -3.236537261488694,
          -3.3477816552152717,
          -3.8874485002499535,
          -7,
          -3.499687082618404,
          -2.861653870213911,
          -3.128099110367532,
          -3.282848602834645,
          -3.2427898094786767,
          -7,
          -3.192149125018534,
          -7,
          -2.908306260085468,
          -2.863152848577121,
          -7,
          -3.0097543224035777,
          -3.16095264798927,
          -7,
          -7,
          -7,
          -2.9644482079166607,
          -3.291479852236699,
          -7,
          -3.1396615986156613,
          -7,
          -7,
          -7,
          -3.2265999052073573,
          -2.3521825181113627,
          -3.029789470831856,
          -2.5405640806209617,
          -2.8737564217033555,
          -3.381205361238583,
          -7,
          -3.5579511712575087,
          -3.4988616889928843,
          -7,
          -3.0681858617461617,
          -2.5798978696031036,
          -1.9493257951445513,
          -3.0399426187629923,
          -3.5671440451956573,
          -7,
          -2.584670384464349,
          -3.3309208305952356,
          -2.585157724841503,
          -3.0258790832933666,
          -2.226142380929929,
          -3.6410773133253747,
          -7,
          -3.553761698390004,
          -3.2463344173155235,
          -7,
          -7,
          -7,
          -7,
          -3.5471591213274176,
          -2.4296118679475467,
          -3.373746382634832,
          -3.4955443375464483,
          -3.4838724542226736,
          -1.9705924583816672,
          -7,
          -2.4655480766670377,
          -2.4158718443377936,
          -7,
          -3.0181177205910004,
          -3.4343069710353125,
          -3.4871383754771865,
          -2.981637424655769,
          -7,
          -3.5106790310322102,
          -1.6224357506996805,
          -3.3608772971020398,
          -3.5182506513085,
          -7,
          -2.6440280643574865,
          -3.548635059814752,
          -2.9057958803678687,
          -2.9344984512435675,
          -2.9397188823541045,
          -7,
          -2.7328058051535415,
          -3.174786417367337,
          -2.531613352728796,
          -7,
          -7,
          -3.41355121317555,
          -2.9355072658247128,
          -2.5455721726119234,
          -2.8027737252919755,
          -7,
          -2.840053791875626,
          -7,
          -7,
          -7,
          -2.3094466032480514,
          -3.4800069429571505,
          -3.214667269683036,
          -7,
          -2.16409411613907,
          -2.656643331233824,
          -7,
          -7,
          -2.9815921172140816,
          -3.5998830720736876,
          -3.2234310385514684,
          -7,
          -7,
          -2.5903215880567183,
          -2.6651478515386624,
          -2.686061425390275,
          -2.9636697965031646,
          -2.860113313378828,
          -3.254423558725655,
          -7,
          -3.9757533890362873,
          -7,
          -3.8909194769224866,
          -3.5851221863068155,
          -3.7259932589247224,
          -3.817763632280368,
          -3.188365926063148,
          -7,
          -1.627499437712944,
          -2.6249164497653634,
          -7,
          -7,
          -3.810568529216413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4954782600291048,
          -2.719552245768398,
          -2.667141519042328,
          -3.8670548004767014,
          -7,
          -3.100801179244967,
          -7,
          -3.5052856741441323,
          -2.9897834198968223,
          -7,
          -3.0616880350304325,
          -7,
          -7,
          -3.5515719736742537,
          -3.173815393774398,
          -3.4761067168401913,
          -3.4665710723863543,
          -7,
          -3.002166061756508,
          -7,
          -3.606703741333674,
          -3.6245914591268478,
          -2.855259487808403,
          -2.093152188112381,
          -2.9416108021536336,
          -2.0769079055377255,
          -2.2412766228690244,
          -2.3831739621097427,
          -3.259847906091858,
          -3.520876381688342,
          -7,
          -3.4632956099620027,
          -2.376455288899979,
          -2.7353327063206136,
          -7,
          -7,
          -2.713850405963783,
          -7,
          -3.857352602191875,
          -7,
          -3.59011703478479,
          -2.7252511895279548,
          -3.5633624094866074,
          -2.820141725700813,
          -2.2952921430163506,
          -7,
          -2.9894498176666917,
          -3.1405080430381793,
          -2.6858412219337957,
          -3.111598524880394,
          -2.918659293421823,
          -3.531478917042255,
          -7,
          -2.7069614941736275,
          -7,
          -3.7583440634019762,
          -2.1858644078490883,
          -3.158380232520566,
          -3.4983105537896004,
          -2.856305866433299,
          -3.1696744340588068,
          -3.3142360032351683,
          -7,
          -2.714644048372074,
          -7,
          -7,
          -2.41161970596323,
          -2.44413668092464,
          -7,
          -2.78993308093175,
          -3.360472922041386,
          -2.660865478003869,
          -7,
          -7,
          -3.5141491344754376,
          -7,
          -7,
          -2.92272545799326,
          -7,
          -3.537063142781617,
          -2.772240187345505,
          -2.5699244335130755,
          -3.7288405683399715,
          -3.8889092592635315,
          -3.4644895474339714,
          -2.437089636681715,
          -2.4530633975789575,
          -3.5860243823869755,
          -7,
          -3.1896306576921556,
          -3.36726271478424,
          -3.3242824552976926,
          -2.922829219666649,
          -7,
          -7,
          -3.1899112096928057,
          -3.506369717095504,
          -2.989894563718773,
          -3.48826861549546,
          -2.210750561554938,
          -3.1762215278609083,
          -7,
          -7,
          -7,
          -7,
          -3.5514499979728753,
          -7,
          -7,
          -3.0745726604075623,
          -3.8656960599160706,
          -3.1654421823847256,
          -3.6321534835106326,
          -2.8424652188889956,
          -7,
          -7,
          -7,
          -1.592444509859282,
          -3.6605809124272994,
          -2.7245607930040894,
          -2.4728782881402593,
          -3.82865989653532,
          -7,
          -7,
          -3.5122840632818537,
          -3.4890791624977924,
          -3.2049877041871517,
          -2.3302634204025954,
          -2.7100609229151154,
          -3.1960840270593827,
          -2.2095150145426308,
          -2.7695004079763255,
          -2.340018961128335,
          -2.2310039303763696,
          -2.134520365244195,
          -1.546895032245456,
          -7,
          -2.605708978411961,
          -2.252411674761112,
          -3.028571252692538,
          -3.1476763242410986,
          -7,
          -3.0701302598602904,
          -2.641751652976988,
          -7,
          -3.7200765727681406,
          -7,
          -3.4768883097095413,
          -2.2385138867041006,
          -7,
          -3.2247919564926817,
          -7,
          -3.5597869682005565,
          -2.6897185709293874,
          -3.3433101031623416,
          -3.217107768805456,
          -2.9112337273068007,
          -2.3884564527002667,
          -2.165738797864829,
          -2.286830571313662,
          -2.7787841351367035,
          -3.949122824379861,
          -2.5176796445749416,
          -7,
          -7,
          -7,
          -3.613154437759265,
          -2.9777236052888476,
          -7,
          -2.2834268744391006,
          -2.8024316264307236,
          -3.507855871695831,
          -3.0617351308914453,
          -7,
          -2.2482068836250533,
          -3.5496162395190853,
          -3.578524605274993,
          -2.5920460639004768,
          -3.248341156669196,
          -3.968821379558316,
          -2.8724961912956757,
          -3.8352453860764224,
          -7,
          -2.4904601480516044,
          -3.4846739647335605,
          -3.1497321599470633,
          -7,
          -2.868879446237088,
          -7,
          -3.0755469613925306,
          -2.653872343068953,
          -3.1122697684172707,
          -3.3636119798921444,
          -7,
          -7,
          -3.000086850211649,
          -2.3294656796081408,
          -3.5439439424829065,
          -2.437750562820388,
          -2.318253107516318,
          -3.517591730711908,
          -2.5797073979181495,
          -7,
          -7,
          -4.144937265058756,
          -4.789968302089217,
          -7,
          -7,
          -4.7332935859176475,
          -3.638655621439301,
          -7,
          -3.6632820254469673,
          -3.5517992006535386,
          -7,
          -7,
          -7,
          -4.040151199035471,
          -4.40647630890183,
          -3.8306741933963115,
          -7,
          -3.997071690906057,
          -3.856109322304873,
          -4.122445256281956,
          -4.362350507594848,
          -7,
          -4.48928156309888,
          -7,
          -4.5628517332249725,
          -3.483672863806311,
          -7,
          -4.204328032253934,
          -4.251467875483525,
          -7,
          -3.449485411797984,
          -7,
          -4.222360914986827,
          -4.372193719275734,
          -7,
          -7,
          -7,
          -7,
          -4.48943813884058,
          -7,
          -3.0827255460196543,
          -3.2656431419421352,
          -4.215760900002956,
          -2.737298928882287,
          -2.893420302005442,
          -3.147614498562027,
          -3.5315701457962727,
          -3.3761205256094518,
          -3.2919372792280885,
          -2.161046976362107,
          -2.468191808662276,
          -3.8768814804300282,
          -3.32080150469275,
          -2.8954139125550196,
          -7,
          -2.69539410829111,
          -2.8804801242258704,
          -3.189069009399324,
          -3.9408152086508013,
          -4.115760242578008,
          -3.854002233126989,
          -7,
          -2.9260093638621822,
          -3.1604685311190375,
          -4.217152684288512,
          -7,
          -2.564961804462294,
          -7,
          -2.9452481227416465,
          -3.628899564420607,
          -4.807565468204041,
          -4.159537116397021,
          -3.801769470209016,
          -7,
          -3.2912763272867207,
          -3.3564524365081927,
          -3.596019484843069,
          -3.512817758564873,
          -2.7974983643715756,
          -3.1031192535457137,
          -3.1788331173591167,
          -2.9641810319735047,
          -2.6477496180738416,
          -2.648524247498229,
          -3.314227811461609,
          -7,
          -3.369774219408229,
          -7,
          -3.8069935136821074,
          -3.4876534031172053,
          -4.046241459145623,
          -3.4952667443878105,
          -3.1744959193752993,
          -7,
          -7,
          -7,
          -2.1176993012518817,
          -1.1407535470370553,
          -1.6427890468225592,
          -3.49996186559619,
          -3.1669232380950865,
          -2.580818098726168,
          -3.392169149489736,
          -1.8723044539775622,
          -2.219419059683715,
          -2.036607022607408,
          -7,
          -2.1801731188663362,
          -1.3830628243918157,
          -2.3059832544437397,
          -7,
          -2.7370006044606603,
          -2.8831880896223963,
          -2.059830242641179,
          -7,
          -7,
          -2.1095525886555575,
          -7,
          -2.4706799424243178,
          -2.3521825181113627,
          -1.2058757236399429,
          -7,
          -2.535875482088115,
          -7,
          -7,
          -3.844870492827602,
          -2.4854802225929227,
          -3.3899494256021807,
          -7,
          -3.2441121152976153,
          -1.0872307423607976,
          -7,
          -1.1707535448630952,
          -7,
          -1.1694498158686364,
          -1.5797610983920323,
          -7,
          -7,
          -3.088756066652953,
          -1.313680817884655,
          -3.8635607645262424,
          -3.531606631932722,
          -2.926959488380276,
          -1.3799649732151271,
          -2.8428587624452937,
          -1.2798511362397667,
          -1.9457967260479998,
          -3.7818989193511494,
          -7,
          -1.0459574485589669,
          -7,
          -7,
          -2.818173088643144,
          -7,
          -7,
          -3.714874382231572,
          -1.7201106402335262,
          -1.8969745014802077,
          -1.3350882209232402,
          -3.0290454103273037,
          -2.532860498597645,
          -7,
          -3.9801397777457543,
          -2.3824030249571733,
          -2.6687481953707617,
          -3.518777068926775,
          -1.2954129399365204,
          -1.3974630822209442,
          -3.1231980750319988,
          -3.1680553034591394,
          -1.1738931510871389,
          -1.9855284446213737,
          -1.8980291537927607,
          -2.2974869397629045,
          -2.0564575761112773,
          -2.7776684326775474,
          -2.4822137286093358,
          -2.358382804215933,
          -1.9490890981808844,
          -3.8507074853745373,
          -3.3002693145303565,
          -7,
          -2.8773713458697743,
          -7,
          -7,
          -7,
          -1.6753323777650668,
          -3.4260230156898763,
          -2.672073856472178,
          -2.759856627340681,
          -3.2756951764686093,
          -2.9124762123293606,
          -3.548880562637515,
          -1.1500821857422776,
          -7,
          -1.4180394841289152,
          -7,
          -1.0224261256148603,
          -1.6378847222472452,
          -7,
          -7,
          -1.5324438971546441,
          -2.09330492363931,
          -2.011818266177299,
          -1.7556249739153658,
          -7,
          -7,
          -2.9943171526696366,
          -3.4888326343824008,
          -3.1796953833245065,
          -3.19506899646859,
          -2.991275312638515,
          -7,
          -2.3711651177825903,
          -2.0416558142071124,
          -3.5397032389478253,
          -3.0211892990699383,
          -3.0402066275747113,
          -2.1316926770993665,
          -3.531861949095809,
          -2.1976806451938993,
          -2.574031267727719,
          -2.5811528919662887,
          -3.0725124857356105,
          -7,
          -3.0671948870277648,
          -2.6932871570056554,
          -2.9261954026148027,
          -2.831997677235896,
          -7,
          -2.774273595320442,
          -2.245759355967277,
          -2.2638228753077008,
          -2.686859614333764,
          -7,
          -2.470081735600318,
          -3.185825359612962,
          -3.0173116440067362,
          -2.977266212427293,
          -7,
          -2.66776416356748,
          -2.1961123854440547,
          -3.0881360887005513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2538439565439745,
          -7,
          -7,
          -7,
          -7,
          -4.244895333691861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7613263224214566,
          -7,
          -7,
          -7,
          -4.211618443694198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.396269107674459,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.103915622081331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.137079689009317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.624679808177516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4305716611898776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.330538057138943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.708760723690317,
          -7,
          -3.7102302275037986,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.407220892927397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2090590341287974,
          -4.065101466171193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.326683976381879,
          -7,
          -7,
          -7,
          -4.0900816180388215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.078166708168154,
          -7,
          -4.191562787591726,
          -3.7859701251320095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.801232153830292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.308145007944962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8313791303653706,
          -7,
          -7,
          -4.241940905630259,
          -7,
          -3.7807492311035524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8327643049405316,
          -7,
          -7,
          -7,
          -3.9028908897244614,
          -3.623352681537992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.974695871909683,
          -7,
          -4.170789590446391,
          -4.412981891778567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3149787437751113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040127441781456,
          -7,
          -3.850866695456682,
          -7,
          -3.943412067973837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8107700112343634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9890491564382202,
          -7,
          -7,
          -7,
          -4.232830996311034,
          -7,
          -7,
          -4.012457578200774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8895966069886656,
          -3.9387698227831174,
          -7,
          -7,
          -7,
          -3.842297134328065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.864617861655226,
          -7,
          -4.331932594695503,
          -7,
          -7,
          -3.643493800910431,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.307848892509035,
          -3.6669281777811387,
          -3.344283085882674,
          -3.737669627356642,
          -3.7229628089424898,
          -3.5502982539858587,
          -2.5808754128245637,
          -3.0237721320079123,
          -3.355603624458788,
          -3.3315082762863892,
          -3.240133058042887,
          -3.2507045590068007,
          -3.3137617962924364,
          -3.5258176385229847,
          -3.2726592166607227,
          -3.508664363052943,
          -3.2866360787164175,
          -3.41019420529868,
          -2.874082999847761,
          -3.735858281244711,
          -2.618309641123432,
          -3.7368159848109257,
          -3.45673465817014,
          -3.2684917546884384,
          -1.6116777049205535,
          -4.354838055584639,
          -3.766775227663688,
          -2.2757745455678955,
          -3.540454613671412,
          -3.8289676454127086,
          -3.2398831523208846,
          -3.4094258686714434,
          -3.1173687913306387,
          -2.4524621781219906,
          -2.2679994817957256,
          -2.894381228035585,
          -3.2443760940205717,
          -4.170364408028852,
          -1.4880478344452681,
          -4.3260079677596055,
          -7,
          -4.0796153235269434,
          -4.292547718850385,
          -3.951386094880293,
          -7,
          -3.3988462553946235,
          -7,
          -3.9832753825780216,
          -7,
          -7,
          -3.7614767795447017,
          -4.1234502812832154,
          -3.650175015279832,
          -7,
          -4.456639279342896,
          -7,
          -7,
          -7,
          -3.440926565388096,
          -3.7701890227359933,
          -7,
          -4.9971285274358905,
          -4.091711967160965,
          -3.205900770092607,
          -7,
          -7,
          -3.311753861055754,
          -4.058345346004422,
          -7,
          -7,
          -3.818984256414086,
          -3.207462994948207,
          -7,
          -4.347037133784953,
          -4.451924528420122,
          -4.314485193347227,
          -3.419955748489758,
          -3.9450252012424625,
          -7,
          -4.302974532353225,
          -7,
          -7,
          -4.046582950842146,
          -3.600011149657793,
          -7,
          -4.50486487900771,
          -7,
          -7,
          -3.342079681345193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.1449689891352024,
          -3.207804384478623,
          -7,
          -7,
          -2.979092900638326,
          -7,
          -3.764250875438773,
          -3.5660837841679958,
          -7,
          -7,
          -3.8345478576809486,
          -3.2533380053261065,
          -3.1617762377172385,
          -7,
          -7,
          -3.5303277897780863,
          -3.562976488666603,
          -2.744423382307533,
          -3.2909986394651347,
          -2.9143431571194407,
          -3.0338256939533106,
          -7,
          -3.0402066275747113,
          -3.364550995353972,
          -7,
          -7,
          -7,
          -3.760573253944394,
          -7,
          -7,
          -3.247759853835692,
          -3.5801505485256566,
          -1.9913180954838037,
          -7,
          -7,
          -7,
          -2.9109799468508544,
          -7,
          -7,
          -7,
          -4.280191247872142,
          -7,
          -7,
          -7,
          -7,
          -2.8776592441116087,
          -2.8539009163221665,
          -3.172894697752176,
          -7,
          -7,
          -7,
          -7,
          -2.764201907308401,
          -7,
          -7,
          -7,
          -7,
          -3.8819549713396007,
          -3.3316297176299323,
          -2.9749719942980692,
          -2.7544916751089548,
          -7,
          -3.7368355309230132,
          -7,
          -3.41237653650371,
          -7,
          -2.3873898263387296,
          -2.5947081713790734,
          -7,
          -2.900609852978509,
          -7,
          -7,
          -7,
          -1.513655821726943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9201978896837995,
          -7,
          -3.413132050434872,
          -7,
          -7,
          -3.1033895669314213,
          -2.4985226116463055,
          -7,
          -2.6089536992758626,
          -3.5906932564421776,
          -3.526597709103452,
          -3.594834355583318,
          -3.1137762838370313,
          -2.919376987420152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4395479930903456,
          -7,
          -7,
          -7,
          -3.160568564398739,
          -7,
          -7,
          -2.757901904775561,
          -7,
          -7,
          -3.2487087356009177,
          -3.274619619091238,
          -3.578696500975596,
          -7,
          -7,
          -7,
          -3.043165720207454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.892032732972888,
          -3.846955325019824,
          -3.060622304309956,
          -7,
          -7,
          -3.668758541750958,
          -7,
          -7,
          -3.052123191595359,
          -7,
          -7,
          -7,
          -3.5951654147902294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.458788881710845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.534819048547555,
          -3.3638938977741004,
          -4.175482820774772,
          -2.620522715839948,
          -4.142577160920535,
          -7,
          -3.238693296822902,
          -3.2237790380327067,
          -7,
          -7,
          -3.507105924208658,
          -2.094393478993324,
          -3.8619523749214517,
          -7,
          -7,
          -7,
          -2.721366648562226,
          -2.3000304682218546,
          -4.3213912783116895,
          -7,
          -2.261127916622565,
          -2.8817780961533748,
          -7,
          -7,
          -7,
          -7,
          -3.8642440146472476,
          -4.148479258163154,
          -3.6590249900894882,
          -4.15896526038341,
          -7,
          -7,
          -7,
          -3.882353746388714,
          -7,
          -4.212267528548938,
          -7,
          -3.5889716175206554,
          -2.730937486161556,
          -3.8799269556700935,
          -4.142139080132135,
          -3.849265817161557,
          -2.6416440555197305,
          -3.861385040442465,
          -2.385432481320828,
          -7,
          -4.158633841358625,
          -7,
          -3.8626381581186875,
          -2.971246848405424,
          -2.5585973864013347,
          -4.205014792569004,
          -2.4215627985510446,
          -3.386008212064673,
          -7,
          -3.5530026278959586,
          -3.602222821229977,
          -3.855428289576475,
          -3.857844902792016,
          -7,
          -7,
          -4.153601474288411,
          -2.780548750718452,
          -3.5036545192429593,
          -3.5391388535767745,
          -7,
          -3.021106568432122,
          -7,
          -3.571685544616966,
          -3.398683876079538,
          -4.14035088925253,
          -7,
          -2.697931199339346,
          -7,
          -3.412432545593535,
          -7,
          -7,
          -2.824902278076417,
          -2.4832448609315168,
          -7,
          -7,
          -3.903768042526874,
          -7,
          -3.9128329347228377,
          -3.1821032558041695,
          -4.17834373897622,
          -7,
          -2.370587673923368,
          -2.9431819988751764,
          -2.7202144484103994,
          -4.138807765217715,
          -7,
          -7,
          -2.9457581341004113,
          -3.893734028446905,
          -3.4542348957482654,
          -7,
          -3.0563330349511615,
          -7,
          -7,
          -7,
          -3.3548956047110607,
          -7,
          -3.5920101162931366,
          -3.2136653005621554,
          -2.7368445108368746,
          -2.7487634148774998,
          -7,
          -4.14472984082465,
          -3.6858611158657704,
          -3.8661691476337707,
          -3.0170565381707126,
          -4.157940055964767,
          -7,
          -3.886772643054438,
          -7,
          -3.544836685408386,
          -7,
          -3.4078542343317864,
          -2.4586940243408293,
          -7,
          -4.304813543394108,
          -7,
          -4.203561244770675,
          -3.8622208538486498,
          -3.904093133539673,
          -3.936739878637037,
          -7,
          -3.8525714786244296,
          -1.9527335904784822,
          -3.209649035368229,
          -7,
          -4.137037454789513,
          -2.3136036121778107,
          -4.133953844517957,
          -3.6569920751226617,
          -3.835468612492718,
          -3.361885160591638,
          -4.136244801746143,
          -3.036011561239873,
          -3.424368203361429,
          -3.023822067750505,
          -1.8177411126078982,
          -7,
          -3.2388820889151364,
          -7,
          -7,
          -3.688034006672403,
          -3.789280973760941,
          -3.1233070710124684,
          -7,
          -3.8441042306975133,
          -7,
          -3.3805006748991953,
          -7,
          -7,
          -3.5784959493756787,
          -3.8675264111997434,
          -7,
          -3.3236645356081,
          -7,
          -7,
          -7,
          -7,
          -3.8406496682305784,
          -7,
          -4.150049945162385,
          -2.4356099266236675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7772253777538043,
          -3.543478244384271,
          -3.6062335293295447,
          -7,
          -3.4218623585834393,
          -2.4577373207082234,
          -3.5554269980568862,
          -2.6738935688061143,
          -2.7690715925317253,
          -3.3233699788402276,
          -3.0464394176583074,
          -7,
          -4.17897694729317,
          -7,
          -4.172369376763842,
          -3.942454526342477,
          -7,
          -7,
          -7,
          -3.7438819695892174,
          -4.1825002473792,
          -3.701678980536721,
          -7,
          -2.690751843657941,
          -7,
          -2.976189439230457,
          -7,
          -3.269074926549013,
          -7,
          -4.14992695911359,
          -3.574447990435435,
          -3.712453270817587,
          -7,
          -3.592676297400732,
          -2.7690987497112878,
          -2.0766317760693416,
          -7,
          -4.136022599397011,
          -3.668416980992571,
          -3.536211120636487,
          -7,
          -7,
          -7,
          -7,
          -2.572382394058745,
          -3.7548832282521674,
          -2.979938401207097,
          -3.0969404022915272,
          -7,
          -3.845748993643852,
          -3.4514179729892613,
          -2.412070359196469,
          -7,
          -7,
          -7,
          -3.6971130502213594,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.9845317083029534,
          -7,
          -7,
          -7,
          -7,
          -4.154667377622576,
          -3.5503812467309923,
          -7,
          -7,
          -4.256669648687233,
          -7,
          -2.456366033129043,
          -2.88030779314603,
          -2.5835475348642203,
          -7,
          -7,
          -2.118964758392623,
          -2.5386479834077615,
          -1.0294141960937242,
          -7,
          -3.06165439200259,
          -3.313053285378446,
          -3.4446692309385245,
          -3.844135321686674,
          -3.21622247191661,
          -3.3182025096096512,
          -1.9868509706251407,
          -3.48737408483543,
          -3.702128838286881,
          -3.3252810364088172,
          -3.3755721739180373,
          -7,
          -3.6893976628212823,
          -7,
          -3.724930914192398,
          -7,
          -7,
          -7,
          -4.143826390839561,
          -3.873175231276166,
          -7,
          -2.886123958121435,
          -3.057445878513803,
          -3.863709388627451,
          -3.7259932589247224,
          -3.5692568333286103,
          -3.0254697190610558,
          -2.9243620009429816,
          -7,
          -3.470971474238306,
          -3.838156184752148,
          -4.1567610983066245,
          -3.5339499073574743,
          -3.48061050905939,
          -2.57460013973368,
          -2.9596243024569144,
          -4.286613631657004,
          -4.18098558078673,
          -4.219663100737022,
          -3.287941621856674,
          -2.732826796502639,
          -3.411682825574111,
          -7,
          -7,
          -7,
          -3.67488409438502,
          -3.4616485680634552,
          -7,
          -7,
          -7,
          -4.144200460183879,
          -3.8845971400109183,
          -3.368968325638322,
          -3.4825877695267677,
          -7,
          -4.1615776110488705,
          -4.240424433083608,
          -4.154210882206974,
          -3.2671717284030137,
          -2.5237348569878146,
          -3.188614270106468,
          -7,
          -3.6863681034730362,
          -3.769340394703022,
          -3.0784568180532927,
          -7,
          -7,
          -7,
          -3.744866446899768,
          -3.5867897782094236,
          -4.267124775110152,
          -4.185825359612962,
          -7,
          -7,
          -4.1966458867870875,
          -7,
          -7,
          -7,
          -4.246720103107109,
          -7,
          -2.7129011581876155,
          -7,
          -7,
          -2.0866368015294006,
          -2.448265378036188,
          -3.6581613625766054,
          -2.3399669095088056,
          -3.198455916033554,
          -2.074768494687751,
          -2.2119760939132904,
          -3.3021476996357157,
          -1.120130913728231,
          -1.9667086841340151,
          -1.9422406484836812,
          -3.267614925979812,
          -2.7582942184040564,
          -3.0136990008982516,
          -1.8353730173054152,
          -2.865393819355079,
          -2.741982383755251,
          -1.8086779637406265,
          -3.601426182944163,
          -2.7343222637236377,
          -3.928779787288558,
          -3.4282647523308776,
          -3.1826727446541563,
          -2.015957669406119,
          -2.1176281732215787,
          -4.5392015992941275,
          -3.237003787001136,
          -2.992523047441195,
          -3.8876454273058507,
          -1.8713288289316703,
          -2.8961481317298348,
          -2.919414846427105,
          -3.5348000348742032,
          -3.2037730116913004,
          -2.949189030779539,
          -4.1026394836913,
          -3.8399596313535307,
          -2.8774027622267004,
          -2.64698541854197,
          -1.3571357449282986,
          -7,
          -2.389217144793949,
          -3.1484115092286706,
          -3.115672905824526,
          -1.8839376639813945,
          -2.6386661486929914,
          -3.8885445298732684,
          -2.379252320088521,
          -3.760592096579792,
          -7,
          -3.4348030193176577,
          -2.614249325129989,
          -2.763706024166811,
          -7,
          -2.703635237583896,
          -3.5986810989071634,
          -7,
          -3.1120685042681973,
          -3.787920738554055,
          -7,
          -7,
          -3.2331328437628977,
          -2.3781140519032173,
          -3.9616092434165946,
          -7,
          -7,
          -7,
          -3.0550967654044965,
          -7,
          -3.84748823364797,
          -2.8195958815358186,
          -3.9959859979137993,
          -4.13760727050463,
          -3.57966929355472,
          -3.3743061732665587,
          -3.664136414560668,
          -2.9131576276683173,
          -2.126360812021379,
          -3.690196080028514,
          -2.438485502098389,
          -2.878284021346949,
          -7,
          -2.067731459944934,
          -3.090312649208021,
          -3.9252347162317127,
          -3.8953838666914047,
          -7,
          -2.4312616252869494,
          -3.33225258250488,
          -4.040905475737317,
          -7,
          -7,
          -7,
          -7,
          -3.4191293077419758,
          -1.2142070073224809,
          -3.2355284469075487,
          -1.7131629510254187,
          -2.7429449715938286,
          -2.288905106221548,
          -1.7967906818747728,
          -1.3921904418969324,
          -3.7054930930166874,
          -3.6658623002031554,
          -1.6499674589621967,
          -3.1381763395730413,
          -2.3211349422448873,
          -2.3001200546170666,
          -2.5159046349117986,
          -3.8853894934914943,
          -2.1445907669858943,
          -2.559479127726367,
          -2.3905671544575418,
          -3.117542456671693,
          -2.848127510567875,
          -2.2253779069107895,
          -3.674064663366411,
          -2.4274922332943896,
          -3.134959072444847,
          -2.9631316941464156,
          -7,
          -1.538415794607338,
          -3.8374621714859947,
          -3.4421974643102136,
          -2.43998053517108,
          -1.7957676115403478,
          -1.7602164742279682,
          -3.4362898941796396,
          -2.670436865698442,
          -2.4560062365109467,
          -3.4597542491145123,
          -3.2529878004090285,
          -7,
          -3.129514123772523,
          -1.784103074779229,
          -7,
          -2.994882517664086,
          -3.0471357373231136,
          -3.3249582172365435,
          -1.9967673882774597,
          -3.0028754162503097,
          -2.081252842052782,
          -3.1204542743702937,
          -2.947494989360088,
          -2.8158086639122692,
          -1.2955932026846997,
          -2.6734288443646643,
          -3.5356421758189995,
          -2.758781422699542,
          -2.818173088643144,
          -3.8819549713396007,
          -7,
          -3.547528576459782,
          -7,
          -2.356586974678113,
          -3.0391874223254183,
          -1.6840900900394933,
          -2.7139509594753366,
          -1.9433183777656895,
          -3.0565823808163457,
          -3.0719433440030572,
          -3.2272223343324167,
          -7,
          -2.626887596279581,
          -3.032060581504032,
          -3.18613667169178,
          -2.4072790622610785,
          -2.123641887530551,
          -3.658361236616049,
          -2.5150651850861645,
          -1.247843653300319,
          -2.858286493595753,
          -3.7137984441929106,
          -2.3775080333764484,
          -3.0307346169761686,
          -3.4925275857610627,
          -2.9602328731285126,
          -1.1648593169081123,
          -1.7801460365337847,
          -2.8442996228070254,
          -2.931786802387928,
          -3.836893516376434,
          -4.135482491335711,
          -2.114933427545565,
          -2.3217564538166924,
          -2.611267993114786,
          -1.6370485285004908,
          -1.163124429608849,
          -2.1033724596429346,
          -1.627536536289134,
          -2.4097613921943695,
          -2.2543852841984124,
          -2.9022205282793148,
          -3.5483587031513357,
          -3.3306456444075034,
          -7,
          -2.813358558611011,
          -2.870306343898879,
          -2.521936753042379,
          -7,
          -2.9713628381188473,
          -3.5589784210949995,
          -1.6661515214372502,
          -3.678488028959253,
          -3.8456560599835443,
          -4.1365303235313,
          -3.658933094831393,
          -3.53763023032496,
          -3.2346121801550183,
          -2.7978338888552106,
          -0.8646140052979363,
          -3.2700379829462642,
          -3.8813275841005512,
          -7,
          -2.752355804153501,
          -3.5398912045347903,
          -3.5442851373225057,
          -4.155001836231253,
          -3.6726211599937417,
          -2.938714257982389,
          -7,
          -2.909522600115815,
          -2.720893995028669,
          -3.7714649891354415,
          -4.153021743626138,
          -7,
          -2.66291515625562,
          -4.14989620715876,
          -7,
          -2.8041199524420146,
          -4.154667377622576,
          -3.6763277338813203,
          -2.270387656461051,
          -2.694797079605313,
          -4.197776611271387,
          -3.8384082784941866,
          -7,
          -4.189518386126378,
          -7,
          -2.7285259405518585,
          -3.8706964579892498,
          -4.158272004652084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.603019806464783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.387271150430926,
          -7,
          -7,
          -7,
          -5.094965819049405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.866830605849827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.656577291396114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.950202531637585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.628728568774205,
          -7,
          -4.02612451674545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7855077880892263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.454600977097761,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.001971557991861,
          -7,
          -7,
          -7,
          -3.8936508169859634,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.697665162647674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.151561363449798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.283911526303729,
          -7,
          -7,
          -5.052740100090059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4778444763387584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058179196100317,
          -3.862131379313037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.508954547385386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.989009564895201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.318355550225704,
          -7,
          -3.933816174257383,
          -7,
          -3.4332222533989265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8535124940543097,
          -7,
          -7,
          -4.289142835932333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.624363325033174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.176415411267064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2345062796618747,
          -3.9946616941251554,
          -4.273626206272959,
          -7,
          -3.935540852652919,
          -3.4721711466923635,
          -3.4081268530617237,
          -7,
          -4.102873723286516,
          -7,
          -2.912434633375575,
          -4.3068965975393665,
          -4.1178262411437965,
          -3.8842680192180294,
          -3.0256471576060306,
          -4.030761590951016,
          -7,
          -3.241520540023374,
          -7,
          -4.315025199312605,
          -7,
          -4.689207600753705,
          -7,
          -3.8345605710335615,
          -3.4099331233312946,
          -7,
          -4.659431268195865,
          -7,
          -3.370513089598593,
          -3.519689475629554,
          -3.3837555416836356,
          -4.678381786970454,
          -7,
          -3.594088548371163,
          -2.7103289580426293,
          -7,
          -7,
          -4.454616223792699,
          -3.2845999065332405,
          -7,
          -7,
          -7,
          -4.589432009956984,
          -7,
          -7,
          -4.331204524275846,
          -7,
          -4.934771062200509,
          -7,
          -7,
          -3.5400164697453222,
          -7,
          -4.681702430297234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.992186664642423,
          -4.64302098761995,
          -4.928380487793358,
          -7,
          -7,
          -7,
          -4.956134800175796,
          -7,
          -5.405595627967882,
          -7,
          -7,
          -7,
          -3.4211307158850603,
          -4.434329337337729,
          -7,
          -7,
          -7,
          -7,
          -4.199936095598896,
          -7,
          -7,
          -7,
          -4.655546595064349,
          -7,
          -4.6488145622990995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0556331242728354,
          -3.4223435713550034,
          -3.3243559586374474,
          -7,
          -3.88632148655948,
          -7,
          -2.829946695941636,
          -4.043833654133147,
          -2.8048206787211623,
          -7,
          -7,
          -7,
          -7,
          -3.519109214749844,
          -7,
          -7,
          -2.5080485061997226,
          -4.13049458852347,
          -2.7425287512507515,
          -2.8969852540843504,
          -1.0003875899247916,
          -7,
          -3.485224400125799,
          -1.5444957100489443,
          -2.7741518589547103,
          -7,
          -7,
          -7,
          -7,
          -1.9084850188786497,
          -2.8767949762007006,
          -3.165870561968359,
          -3.9187919567908267,
          -3.2200727321168943,
          -7,
          -2.681090414494438,
          -7,
          -2.272835795025385,
          -7,
          -2.718501688867274,
          -7,
          -3.776580126292323,
          -2.795184589682424,
          -7,
          -3.403977963669355,
          -7,
          -2.2251309633156784,
          -3.00987563371216,
          -2.790519727626253,
          -7,
          -3.0461047872460387,
          -7,
          -7,
          -2.005023411506081,
          -2.0218781088604905,
          -7,
          -7,
          -3.3316297176299323,
          -3.547528576459782,
          -7,
          -2.404833716619938,
          -3.425588558250215,
          -7,
          -3.932516692455748,
          -7,
          -2.2806000476987807,
          -7,
          -7,
          -3.85582190540603,
          -7,
          -2.3307760174955603,
          -2.3607826898732798,
          -7,
          -7,
          -2.7286242862229995,
          -7,
          -7,
          -4.330748497546924,
          -7,
          -7,
          -3.529836566775372,
          -3.0040346161083726,
          -7,
          -7,
          -7,
          -2.0639897471525535,
          -2.360376996726634,
          -2.3171675742837645,
          -7,
          -7,
          -3.4587322506088714,
          -1.4659711795948707,
          -7,
          -2.624134702492355,
          -3.928856533581911,
          -7,
          -3.017986785306103,
          -4.246916917014926,
          -2.972573080926555,
          -7,
          -2.1706807163747843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6189541113654435,
          -7,
          -2.663700925389648,
          -7,
          -7,
          -7,
          -7,
          -2.8796692056320534,
          -3.509000790741858,
          -2.1393946530192696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0107238653917734,
          -7,
          -7,
          -3.8111056070179306,
          -1.8399850957844133,
          -2.8867726430544383,
          -7,
          -7,
          -3.5490032620257876,
          -7,
          -7,
          -3.897956810006952,
          -7,
          -7,
          -3.541454428747589,
          -1.4984746552394665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7308406263593452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.903366761511649,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.336739833491843,
          -7,
          -7,
          -3.6567687792660166,
          -5.270761495592153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2182728535714475,
          -4.305845581858454,
          -7,
          -3.898944466866509,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.148093417520579,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.335858911319818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.929114813125132,
          -7,
          -4.015527404313787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5612098352620314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1703497391391835,
          -7,
          -7,
          -7,
          -7,
          -4.039193721058287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024977972095624,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.975074728368803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.800877389480626,
          -7,
          -7,
          -5.0522474932238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5935075893317654,
          -7,
          -3.2722285058778144,
          -7,
          -7,
          -7,
          -7,
          -3.4331295175804857,
          -7,
          -7,
          -7,
          -4.3543581827353215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9060116252714128,
          -7,
          -7,
          -5.41185278211309,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4649215404715346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.371437317404101,
          -7,
          -7,
          -3.8085485512404054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.710117365111816,
          -7,
          -7,
          -7,
          -2.439963935920905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.529481686378381,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9502674680135885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.925238585322531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.398118322328041,
          -7,
          -7,
          -4.1150360645086375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.775610448006361,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8948364609939157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.879617637262669,
          -7,
          -7,
          -4.301377292349344,
          -4.4167652866759886,
          -4.520059730604128,
          -3.349014550823123,
          -7,
          -7,
          -3.7176445027938008,
          -3.725135413175271,
          -4.309608877958903,
          -7,
          -5.387736767329419,
          -4.271121055704133,
          -4.5303662098847335,
          -7,
          -7,
          -4.656988885990069,
          -7,
          -7,
          -4.773340223171566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8797264966395772,
          -7,
          -3.0232524596337114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.934124595123546,
          -3.986906031380721,
          -2.997386384397313,
          -3.5940135021454704,
          -4.661074040986242,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.893447344047389,
          -7,
          -7,
          -4.690014347380175,
          -5.01064759234639,
          -5.405289998996462,
          -7,
          -7,
          -7,
          -4.954903099495695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0880943777437477,
          -4.430220226321072,
          -4.781841507164946,
          -7,
          -7,
          -7,
          -4.295451639247148,
          -4.4855226841924045,
          -7,
          -4.465818910021945,
          -4.955355770534847,
          -7,
          -4.50217927120143,
          -7,
          -7,
          -4.004504083022066,
          -7,
          -7,
          -7,
          -7,
          -1.021779774323242,
          -7,
          -3.768001359986824,
          -7,
          -7,
          -7,
          -3.249442961442582,
          -3.3852884293013306,
          -3.362105319293773,
          -7,
          -7,
          -7,
          -7,
          -3.1425146049993744,
          -7,
          -7,
          -2.6027109449575576,
          -3.821087540649282,
          -2.173186268412274,
          -2.3054490844840263,
          -2.075546961392531,
          -7,
          -7,
          -1.637934247956542,
          -2.0090730019467866,
          -2.922984815708883,
          -7,
          -2.447158031342219,
          -3.2277153514917414,
          -2.305351369446624,
          -7,
          -3.3641866774785254,
          -4.0940236762236575,
          -3.5562954043942465,
          -7,
          -2.720159303405957,
          -7,
          -1.9789685974894828,
          -7,
          -2.4265112613645754,
          -7,
          -7,
          -1.1936545489777597,
          -7,
          -7,
          -7,
          -2.667639706056411,
          -7,
          -2.7259116322950483,
          -7,
          -7,
          -7,
          -7,
          -3.1905557923351724,
          -2.5854607295085006,
          -7,
          -7,
          -2.9749719942980692,
          -7,
          -2.404833716619938,
          -7,
          -2.9849209252530855,
          -7,
          -4.004583200605057,
          -7,
          -2.4620522678964307,
          -7,
          -2.920123326290724,
          -3.840043330603494,
          -7,
          -2.6822203114510064,
          -2.824776462475546,
          -7,
          -7,
          -2.2826544758187164,
          -7,
          -7,
          -4.152033401914976,
          -3.6033609243483804,
          -7,
          -3.7005090196080914,
          -3.1420764610732848,
          -7,
          -3.1065308538223815,
          -3.4246775029107854,
          -2.60569674355833,
          -1.8434622773199978,
          -3.0824263008607717,
          -7,
          -7,
          -3.880031921104297,
          -3.1365620365899805,
          -7,
          -3.130333768495006,
          -3.9255699095433765,
          -7,
          -2.833784374656479,
          -3.766536771919034,
          -2.2114962884255043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6734816970733473,
          -7,
          -7,
          -7,
          -3.136931851267557,
          -7,
          -2.5224442335063197,
          -7,
          -2.519827993775719,
          -7,
          -7,
          -2.7007037171450192,
          -3.315200381631911,
          -1.6428716804371248,
          -7,
          -7,
          -2.919601023784111,
          -7,
          -7,
          -7,
          -2.4065401804339555,
          -7,
          -7,
          -7,
          -3.450864692379766,
          -3.0385208151616903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019393263978083,
          -7,
          -7,
          -7,
          -3.4077307280263356,
          -3.3830969299490943,
          -7,
          -7,
          -7,
          -7,
          -2.7363965022766426,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.932220013877119,
          -7,
          -3.9056340013269546,
          -3.007896027561071,
          -7,
          -7,
          -7,
          -4.358410786206337,
          -3.223087821731905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.998334510992717,
          -7,
          -7,
          -2.4240645254174877,
          -3.5670606448979316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.374322358254613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.05307844348342,
          -4.385001176125872,
          -7,
          -7,
          -7,
          -7,
          -3.458788881710845,
          -3.89707700320942,
          -3.9184497424011577,
          -7,
          -7,
          -2.9477277269633158,
          -3.181128699747295,
          -7,
          -7,
          -4.125513795904115,
          -7,
          -3.912540882790638,
          -7,
          -3.9147661369258526,
          -7,
          -7,
          -7,
          -7,
          -3.255915428213917,
          -3.7032668063071807,
          -7,
          -7,
          -3.984707294482673,
          -7,
          -7,
          -3.1540814545553224,
          -7,
          -7,
          -4.068776273957364,
          -7,
          -3.973035440686933,
          -7,
          -7,
          -7,
          -7,
          -3.897352134344313,
          -7,
          -3.995898323646437,
          -7,
          -7,
          -4.02649240705284,
          -7,
          -7,
          -3.3845767907683544,
          -4.024690862355431,
          -4.24538927117121,
          -7,
          -7,
          -7,
          -3.3477689676073514,
          -3.979548374704095,
          -4.040008636013542,
          -7,
          -4.327338496518052,
          -7,
          -7,
          -7,
          -3.7412566785720904,
          -7,
          -7,
          -7,
          -7,
          -3.8894697839695076,
          -3.9061733636440485,
          -7,
          -3.926188049107206,
          -7,
          -3.2175532041585395,
          -3.9172428579074663,
          -7,
          -7,
          -4.02669665597816,
          -7,
          -7,
          -3.497758718287268,
          -2.896233540984362,
          -3.6045500325712614,
          -3.448582659744249,
          -3.4307735806966204,
          -4.179120729609299,
          -7,
          -7,
          -7,
          -7,
          -3.9097699147327694,
          -3.1095946155190184,
          -2.7017406324372124,
          -7,
          -7,
          -2.8698467969123844,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4725858175201463,
          -3.7954281160534724,
          -7,
          -2.930657997829841,
          -7,
          -4.1673468775856355,
          -3.880927865267085,
          -7,
          -7,
          -3.0112884341835358,
          -7,
          -7,
          -7,
          -7,
          -3.923668776807718,
          -7,
          -7,
          -7,
          -3.9356583861006342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.764431226367127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5972168724961677,
          -7,
          -3.7192318188422293,
          -7,
          -3.615529223637133,
          -2.6261585957866243,
          -3.2173786479394413,
          -2.843452636935933,
          -3.261857385629898,
          -7,
          -3.073305849619936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6580113966571126,
          -7,
          -7,
          -3.3753663634022653,
          -7,
          -3.6316466629584196,
          -7,
          -7,
          -7,
          -7,
          -3.2567520979238687,
          -3.9710902131371153,
          -7,
          -7,
          -1.4197913690146289,
          -2.633499060172947,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.427972713608209,
          -2.882154404634234,
          -7,
          -1.334394071037258,
          -4.01127183969032,
          -7,
          -7,
          -7,
          -3.926959488380276,
          -7,
          -7,
          -2.663700925389648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2424450033000847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9079485216122722,
          -7,
          -3.91184979649942,
          -3.7757924276787924,
          -7,
          -7,
          -2.5771086551437348,
          -7,
          -7,
          -7,
          -3.443591518448947,
          -3.183933830133716,
          -2.844161141324878,
          -7,
          -2.9671243503847156,
          -7,
          -7,
          -3.417527049073855,
          -4.2288621285305625,
          -3.799994944688714,
          -3.169059607803795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9995220131289035,
          -3.9915361753000314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9686697017203922,
          -2.849586911831464,
          -7,
          -7,
          -3.9405662864900903,
          -3.278646919030887,
          -3.8730007223740444,
          -7,
          -3.6438637455958203,
          -7,
          -7,
          -7,
          -3.954628377507271,
          -2.759532949679413,
          -3.411156548296478,
          -7,
          -7,
          -7,
          -7,
          -3.4176715797939443,
          -7,
          -7,
          -7,
          -7,
          -3.630156568140109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9644482079166607,
          -7,
          -4.08339510788965,
          -7,
          -3.446226401778163,
          -4.05207803048417,
          -3.9107310980433807,
          -7,
          -3.1554188575044515,
          -3.888069980618693,
          -7,
          -4.124275932006338,
          -3.4559414209391317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.120442306873306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4443013689598114,
          -7,
          -7,
          -2.746709209859118,
          -3.2644373865025944,
          -7,
          -3.3544541997333255,
          -3.321147007783739,
          -2.4934011409892882,
          -2.6326061404166037,
          -3.663182477305838,
          -2.473816225498682,
          -2.963577972554372,
          -3.2656038765850357,
          -3.9581336756762355,
          -2.9951230979538104,
          -3.063178290213317,
          -2.1161420690114334,
          -3.4537310295042936,
          -3.4332176170782738,
          -2.393382333506496,
          -2.2834978755178232,
          -3.486886811075451,
          -7,
          -3.460593731895895,
          -3.3337494624819706,
          -2.5112890475342247,
          -2.623271290574289,
          -4.454677205220384,
          -3.2435836759981913,
          -3.1463218738791365,
          -3.2701662292606937,
          -2.7535765122498272,
          -2.8542047958554297,
          -3.020855097836129,
          -3.3700811092612613,
          -3.878636673026517,
          -3.478566495593843,
          -3.8063835018241674,
          -3.864333055033393,
          -3.6464772461535957,
          -2.817390356669279,
          -3.569076654313889,
          -7,
          -4.254475567803871,
          -2.706294486458381,
          -3.567790710533536,
          -3.2870175013221017,
          -3.675228253593064,
          -7,
          -3.227243781503063,
          -7,
          -4.009323393381013,
          -3.336196976263483,
          -3.6727002600533996,
          -3.0496135189928455,
          -7,
          -3.390972935985586,
          -7,
          -7,
          -7,
          -3.708958831371789,
          -4.069742076041645,
          -7,
          -3.134863987908941,
          -3.2618698203144056,
          -4.207251363794358,
          -7,
          -3.7773543130842087,
          -7,
          -3.1885222651994,
          -7,
          -4.3381226757764235,
          -3.0235268086522495,
          -3.331280021886835,
          -7,
          -3.1468719030857386,
          -3.7552394576339077,
          -3.2283040948254293,
          -3.5685537120494426,
          -3.768434593637725,
          -7,
          -2.3993945580839453,
          -3.7994209669118066,
          -7,
          -3.1638720742640283,
          -3.113114060796176,
          -7,
          -3.5414014660058277,
          -7,
          -7,
          -3.2304489213782737,
          -4.127817234480274,
          -7,
          -7,
          -7,
          -3.5834821635264125,
          -2.8571195547835098,
          -1.891948375590815,
          -3.971971276399757,
          -3.20305232331814,
          -1.7375872659716323,
          -2.74901124252752,
          -2.4565914962046436,
          -2.3522284727679743,
          -3.9595183769729982,
          -7,
          -2.898073525383819,
          -3.405915255308017,
          -1.8938785493174628,
          -3.1460892576540234,
          -2.7291647896927698,
          -2.621365146523349,
          -1.7345536657835299,
          -2.455320799214393,
          -2.2863067388432747,
          -2.519565500880509,
          -3.9039035266901636,
          -1.9977723246559227,
          -2.95052711646727,
          -2.390078298969682,
          -7,
          -3.7179200258369938,
          -3.5745521086639047,
          -2.565571525942708,
          -3.8829227906025987,
          -3.5869247081448203,
          -2.37457916233757,
          -1.9457789280586943,
          -2.021777927452259,
          -3.4000772605521274,
          -2.472712135814607,
          -3.594972327590039,
          -2.6868990162494977,
          -4.000434077479318,
          -3.874945436085532,
          -7,
          -2.6541940498694125,
          -3.8807564445102103,
          -3.5876548509957176,
          -2.8979934299725625,
          -7,
          -2.0181876357676427,
          -3.203576774977973,
          -2.512081284866043,
          -7,
          -3.208387603795154,
          -3.6518108610117204,
          -3.0480013294385864,
          -2.2025192329253795,
          -3.2793246654426103,
          -3.723209310405111,
          -3.714874382231572,
          -2.7544916751089548,
          -2.356586974678113,
          -3.425588558250215,
          -2.9849209252530855,
          -7,
          -3.9650605206111984,
          -2.0824874482169866,
          -3.299942900022767,
          -2.495504692242491,
          -2.7926917893479724,
          -2.864025383544317,
          -2.78767604349099,
          -7,
          -2.271403826616148,
          -2.7823072101548014,
          -7,
          -4.128463891064761,
          -2.338813916630284,
          -7,
          -3.8231154293976726,
          -2.7463892697195718,
          -7,
          -3.6721902511882525,
          -3.037585842826617,
          -3.221718441724624,
          -3.143465871142305,
          -7,
          -2.3974993739082215,
          -2.169885344384398,
          -2.570136677474439,
          -2.694243781641912,
          -7,
          -7,
          -2.271037506173659,
          -2.598746746928134,
          -2.7687966125269106,
          -2.109658461244828,
          -1.9404752505634317,
          -2.619994012623545,
          -2.0078421153915804,
          -2.5556730808874315,
          -2.029990281380748,
          -3.6938587997009296,
          -3.4270531135645013,
          -7,
          -7,
          -3.5833877208856357,
          -3.5919915966674587,
          -2.2208444301661006,
          -7,
          -3.647676313240871,
          -7,
          -2.008752704189001,
          -3.9133899436317554,
          -3.11887070567672,
          -7,
          -3.577491799837225,
          -3.885304667588968,
          -3.182756931040399,
          -2.8873359303991672,
          -2.523616419054371,
          -2.901656425850182,
          -7,
          -7,
          -2.951337518795918,
          -7,
          -7,
          -3.9121157290788537,
          -3.9030899869919438,
          -3.2011238972073794,
          -3.9416108021536336,
          -2.3510624376615725,
          -2.8535292190187196,
          -2.6650178254124723,
          -3.2092468487533736,
          -7,
          -3.0669054262816697,
          -7,
          -7,
          -2.5233731817819334,
          -3.9115304623071623,
          -7,
          -2.977058147228131,
          -2.91053547390048,
          -3.683272236315922,
          -7,
          -7,
          -3.9708116108725178,
          -7,
          -2.9175430182524797,
          -3.941063988219902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2659963704950794,
          -3.3038437748886547,
          -2.713630525200522,
          -3.1473671077937864,
          -7,
          -7,
          -3.9778795468239343,
          -7,
          -7,
          -7,
          -3.630275285757692,
          -2.8313035974632434,
          -7,
          -7,
          -7,
          -7,
          -3.2723058444020863,
          -3.1095785469043866,
          -2.726775136464893,
          -3.2460059040760294,
          -3.1773200201636933,
          -3.391326344070833,
          -7,
          -7,
          -7,
          -2.839980557678343,
          -7,
          -7,
          -3.2825233495096477,
          -3.1058506743851435,
          -7,
          -7,
          -7,
          -3.052565699053254,
          -3.014310480963307,
          -3.345863628503764,
          -3.266936911159173,
          -3.0864784741618685,
          -7,
          -3.6983739916872556,
          -7,
          -3.3562171342197353,
          -3.2474822606770544,
          -3.426673888021373,
          -2.1871394597445524,
          -3.331427296520743,
          -7,
          -7,
          -2.9556877503135057,
          -7,
          -3.1749104800117314,
          -3.619823500457278,
          -2.508599367673529,
          -3.8811563210755637,
          -7,
          -3.3857849588433355,
          -3.617629297757842,
          -7,
          -3.40705081480425,
          -7,
          -7,
          -3.3760291817281805,
          -2.3404441148401185,
          -3.295009672664702,
          -7,
          -7,
          -2.286793175654974,
          -3.2638726768652235,
          -3.3545565944718043,
          -2.7985739217489467,
          -7,
          -7,
          -3.9836971497497697,
          -7,
          -7,
          -7,
          -7,
          -2.302114376956201,
          -3.537189226243645,
          -3.3324384599156054,
          -7,
          -3.6191977157929474,
          -7,
          -7,
          -2.7331080601187026,
          -7,
          -7,
          -3.191986755816186,
          -3.207365037469072,
          -3.2952004520032574,
          -7,
          -7,
          -7,
          -3.5010592622177517,
          -3.5792117802314993,
          -3.4164740791002206,
          -7,
          -3.1484904774886924,
          -7,
          -7,
          -7,
          -3.2545883548258496,
          -7,
          -3.2755416884013093,
          -3.1565491513317814,
          -2.7094241574915294,
          -3.07974959296128,
          -7,
          -7,
          -3.4300750555519395,
          -7,
          -3.2946696745484663,
          -7,
          -7,
          -3.549738731264899,
          -7,
          -2.907795114870337,
          -7,
          -3.51271107196312,
          -3.6855775412674463,
          -7,
          -7,
          -7,
          -3.999930507323333,
          -7,
          -3.31921019418185,
          -7,
          -7,
          -7,
          -2.0541159367668493,
          -2.7346998423702855,
          -7,
          -7,
          -2.5271529938173596,
          -7,
          -7,
          -3.262213705476417,
          -3.2898118391176214,
          -7,
          -3.0813473078041325,
          -2.622861354256069,
          -3.114722156505122,
          -2.889371744355007,
          -7,
          -3.6509870943834453,
          -7,
          -7,
          -7,
          -7,
          -3.4304513240788883,
          -7,
          -7,
          -7,
          -3.5585405788545965,
          -7,
          -7,
          -7,
          -3.4590907896005865,
          -7,
          -7,
          -2.7068599641949294,
          -7,
          -2.493574219106595,
          -2.9064697276433242,
          -2.626389255142517,
          -2.583623788990542,
          -3.052886235256382,
          -3.6984287038382186,
          -7,
          -7,
          -7,
          -3.087603973687808,
          -2.849214606209089,
          -7,
          -7,
          -3.512061496535885,
          -7,
          -3.611702070594105,
          -7,
          -3.2195190365840465,
          -3.3263435190252575,
          -7,
          -7,
          -2.7629285173929854,
          -7,
          -3.271609301378832,
          -3.1760912590556813,
          -2.7302437827494095,
          -7,
          -3.4779889762508893,
          -7,
          -7,
          -3.3013194288515706,
          -7,
          -4.013637612453532,
          -2.3462225361009863,
          -3.891370174696148,
          -7,
          -2.658175933306894,
          -7,
          -3.550411819008074,
          -7,
          -2.3291071869258904,
          -3.3251049829714074,
          -7,
          -2.3038310838268075,
          -2.5554572172046495,
          -7,
          -2.976808337338066,
          -4.381999021683067,
          -3.4526041236583422,
          -7,
          -7,
          -3.3261309567107946,
          -2.9747419045009504,
          -7,
          -7,
          -7,
          -3.3609718837259357,
          -3.377215156263061,
          -3.0162810245428306,
          -2.792333312660757,
          -3.6420543617517414,
          -3.24699069924155,
          -3.032417278832769,
          -2.510545010206612,
          -7,
          -7,
          -3.2898118391176214,
          -3.5456781497920256,
          -2.7081375105769228,
          -7,
          -7,
          -7,
          -2.98878184345364,
          -3.3140779917792127,
          -7,
          -7,
          -2.5385178795875127,
          -3.357939731076476,
          -7,
          -7,
          -7,
          -7,
          -3.3823773034681137,
          -7,
          -7,
          -7,
          -2.945890435074559,
          -7,
          -3.3935167084911435,
          -3.4214393902200495,
          -7,
          -7,
          -7,
          -2.164233055917399,
          -7,
          -2.7716364679076344,
          -2.9093777108309906,
          -3.8773219727168056,
          -7,
          -7,
          -7,
          -3.203382607459245,
          -3.058552548706088,
          -2.6216747070193795,
          -2.8166389448984614,
          -7,
          -2.690196080028514,
          -3.378579576115775,
          -7,
          -7,
          -3.3265406685165617,
          -2.2618033722622637,
          -7,
          -7,
          -2.4070044182995427,
          -3.3138672203691533,
          -3.009592521262823,
          -7,
          -3.551327988003846,
          -3.038796722367585,
          -7,
          -3.612889769287485,
          -7,
          -4.057050861483566,
          -2.9207871677505426,
          -7,
          -2.795901073535779,
          -2.803912112528065,
          -3.09324653110384,
          -2.940267391446012,
          -3.035963105745482,
          -3.716086853774832,
          -3.182414652434554,
          -2.9187873026217193,
          -2.4750104632891783,
          -2.1627697069974556,
          -3.2637543888400056,
          -4.32410489341645,
          -3.098347009010774,
          -7,
          -7,
          -7,
          -3.3714988627144713,
          -3.2640303441321223,
          -3.3364597338485296,
          -2.3664229572259727,
          -2.8958643512472992,
          -2.8384292797022423,
          -3.2389238459924155,
          -3.3376588910261424,
          -3.104760166638525,
          -3.0782755220866007,
          -3.1204093945560682,
          -7,
          -7,
          -4.166228758210086,
          -3.4564841235748665,
          -4.076688979039402,
          -7,
          -3.577836341292744,
          -3.6439294805612317,
          -3.0864784741618685,
          -7,
          -7,
          -7,
          -3.682145076373832,
          -3.5710679786102455,
          -3.520483532740792,
          -3.54082981411108,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.607097432019576,
          -2.8067074419715725,
          -3.0299921753778474,
          -3.015490736645513,
          -7,
          -7,
          -4.308980368720045,
          -4.7818056206940485,
          -7,
          -7,
          -4.723980776891,
          -4.397453326259252,
          -7,
          -3.760271660542063,
          -3.8087453508147924,
          -7,
          -7,
          -4.332478857523364,
          -4.729998547283423,
          -7,
          -4.596487133736544,
          -4.3560258571931225,
          -4.208799537474873,
          -4.151374958362349,
          -7,
          -3.8629459114132914,
          -7,
          -4.788300973396099,
          -7,
          -4.24793646018509,
          -3.8477576883923312,
          -7,
          -4.6709783389504365,
          -7,
          -7,
          -4.085054988986404,
          -7,
          -4.388394304726096,
          -4.350499991128803,
          -7,
          -7,
          -7,
          -7,
          -4.472975734594228,
          -4.221414237842339,
          -3.7829228611700847,
          -2.8019179723413923,
          -4.381638446726156,
          -3.8949323529090556,
          -3.6553785755318513,
          -3.468495024507069,
          -3.7532574074565974,
          -3.5573868820595074,
          -3.7916054455762533,
          -2.3373222073764235,
          -2.4434585715565302,
          -3.9849771264154934,
          -4.065943652583075,
          -3.4619484952037616,
          -7,
          -3.5549432055045624,
          -7,
          -2.8109042806687006,
          -3.8795546009389743,
          -3.9201059263234987,
          -3.7779340488377793,
          -7,
          -3.5660007738899773,
          -3.808495118821508,
          -4.428804653172165,
          -3.3163897510731957,
          -2.793580867368156,
          -3.3336487565147013,
          -3.016696288653449,
          -7,
          -5.106656570334018,
          -7,
          -3.5527655261018234,
          -7,
          -3.503771233697277,
          -3.60826617378758,
          -3.7130422969110426,
          -3.7298125071609354,
          -3.1341771075767664,
          -3.587598729721245,
          -3.490396121091794,
          -3.8070476955151142,
          -7,
          -3.3936141954120003,
          -3.142289898072111,
          -7,
          -3.4865896136882237,
          -7,
          -3.0216853522157057,
          -4.14514459027186,
          -3.8470994481573415,
          -7,
          -3.265525335219074,
          -7,
          -7,
          -3.8143142002074595,
          -2.5318052249185006,
          -1.7599772814550572,
          -1.9343915611416491,
          -7,
          -7,
          -2.6945865312432264,
          -3.578409970331236,
          -1.5646796659208264,
          -2.305136318943639,
          -2.360467183515849,
          -7,
          -2.6141076142372945,
          -1.914627900385701,
          -3.0646451447919367,
          -7,
          -7,
          -3.059815767985011,
          -2.2530000501017793,
          -7,
          -7,
          -3.0872488677956578,
          -7,
          -2.9061553956879878,
          -2.5436542334738954,
          -2.0012256229266927,
          -7,
          -2.950814047122843,
          -7,
          -1.8712585060577351,
          -4.008961933117199,
          -3.130133092270322,
          -3.39911275611016,
          -7,
          -3.6147917919564176,
          -1.5279979470644702,
          -7,
          -1.770536428863159,
          -7,
          -1.932414071943652,
          -1.4718095262845452,
          -7,
          -2.998695158311656,
          -7,
          -1.9678799710438093,
          -3.311895072073712,
          -3.3527611917238307,
          -2.886490725172482,
          -2.5794569365924565,
          -7,
          -1.853753504217767,
          -2.6093967600697114,
          -3.452348761457827,
          -7,
          -1.8951461893759922,
          -1.7201106402335262,
          -7,
          -3.0391874223254183,
          -7,
          -7,
          -3.9650605206111984,
          -7,
          -2.3305861217577855,
          -2.0397271242216886,
          -2.6413914743166362,
          -3.472317546316842,
          -7,
          -7,
          -1.895462011211129,
          -2.7468137707747053,
          -3.3332456989619628,
          -1.5145871999087717,
          -2.079927407371031,
          -3.151982395457474,
          -7,
          -1.8629103407362515,
          -2.4001209713388727,
          -1.7973082833122795,
          -2.561220678933944,
          -2.1314797188836154,
          -2.0422230763899947,
          -2.8309733973226505,
          -2.536242706838319,
          -2.0508610740801623,
          -3.7740057302582093,
          -3.153052275067109,
          -3.4305587695227575,
          -2.669316880566112,
          -2.775974331129369,
          -4.384693833518213,
          -3.32479671762173,
          -2.1622480318813917,
          -7,
          -2.8127400992175207,
          -7,
          -4.1999744625304904,
          -3.164329058174529,
          -3.4720246977002813,
          -1.8988111890126687,
          -7,
          -1.9178034622952473,
          -7,
          -1.5226122251848893,
          -1.7277520576687817,
          -7,
          -1.8512583487190755,
          -1.931260059489091,
          -2.4168068718229443,
          -2.2801295979122562,
          -1.9010948950302153,
          -7,
          -7,
          -3.2593549273080344,
          -7,
          -7,
          -2.996949248495381,
          -3.040093500592591,
          -3.4837298990000236,
          -2.620656479819621,
          -2.3412366232386925,
          -3.3649260337899753,
          -3.302330928684399,
          -3.331832044436249,
          -2.266086895660994,
          -3.3531465462139796,
          -2.400365273349939,
          -2.2681975636609173,
          -2.8494194137968996,
          -3.3760900797836544,
          -3.165615232699998,
          -2.5925468421919335,
          -3.2607866686549762,
          -3.678518379040114,
          -7,
          -7,
          -3.0535288053252456,
          -2.535113201697349,
          -2.6754116937148633,
          -2.5567662429169604,
          -3.606703741333674,
          -2.8914259428479943,
          -7,
          -3.2962262872611605,
          -3.5569052690554477,
          -3.2704459080179626,
          -3.0683343131172545,
          -2.2665844470668635,
          -2.9254839872002525,
          -7,
          -3.9855045740664705,
          -3.8552846237426173,
          -3.9487082638609827,
          -4.024495441072,
          -3.338126291801089,
          -2.6405673372975262,
          -2.8069966367379076,
          -3.949101031499502,
          -3.576606809002626,
          -1.8005233458116274,
          -3.441804303701005,
          -5.045708195339422,
          -3.855640280890145,
          -2.4931434135012362,
          -2.189266777664425,
          -3.027484215567386,
          -3.3980493004965044,
          -4.647705636658856,
          -4.045927049451639,
          -3.9665445398586376,
          -2.096902767158549,
          -2.9235400612333575,
          -4.501509176591876,
          -2.458668755128016,
          -1.5869527633672311,
          -3.6577931719269867,
          -3.870130678165955,
          -4.267504168979949,
          -3.031083981800209,
          -3.0878145586758183,
          -4.201326882336002,
          -2.161629083938574,
          -3.146163152410619,
          -3.7033500097793364,
          -3.899734541432098,
          -3.455137807393583,
          -2.851655565747637,
          -3.4718801529442906,
          -2.829410346975762,
          -3.984986899788327,
          -3.3499512783389576,
          -3.4550460384689026,
          -2.273237707705318,
          -3.8998439433821988,
          -3.444226364912892,
          -2.874719133905513,
          -3.1355852630128624,
          -2.0489385872046793,
          -3.554748951661129,
          -3.3610089326644585,
          -4.0509922864820505,
          -2.9341805204045848,
          -3.0221578694079523,
          -1.5092546199558015,
          -2.947210858187439,
          -1.8890652399519134,
          -2.9660386578756874,
          -4.17140463483013,
          -3.360790493311147,
          -3.0387228771693704,
          -3.290672982696028,
          -3.685241164788095,
          -3.4728480752993205,
          -4.305558499230943,
          -2.909014990979134,
          -2.45908807414116,
          -2.214262203173111,
          -3.471710153639844,
          -4.44378109287485,
          -2.457934544280078,
          -4.392501545165524,
          -2.975226868144468,
          -2.354764024955734,
          -4.267771891925815,
          -3.305376548576951,
          -1.948236494735222,
          -4.5687725829029615,
          -2.735939519022239,
          -4.744560911018383,
          -3.855798474252288,
          -1.79928192676247,
          -3.006635214937953,
          -3.072500197917994,
          -4.067863391226035,
          -3.0787339479321156,
          -3.521522538611938,
          -3.0959844627642767,
          -2.90757760381829,
          -3.2808195391969055,
          -4.006693535071508,
          -1.484563928788008,
          -2.8772437594565354,
          -2.158260116465521,
          -3.7785579664213467,
          -7,
          -3.643292012003188,
          -2.9058211989484706,
          -2.989867387070781,
          -2.8794415101012185,
          -4.0460422943353755,
          -2.440656947429615,
          -4.306530298301876,
          -4.346734281891791,
          -4.17059220118295,
          -2.0706133304677987,
          -4.142667069274032,
          -2.8001732097794916,
          -3.0928219760363977,
          -2.2681711037010768,
          -1.889157549797829,
          -4.092365798646165,
          -3.778927200514638,
          -3.2798072880412437,
          -3.725308675038557,
          -2.082394361228675,
          -2.968783745744303,
          -4.091375767429715,
          -2.7804691164051643,
          -2.8135539162279573,
          -2.767271546839847,
          -3.521811143960067,
          -2.513555597597894,
          -1.8546868060656614,
          -3.767759122103009,
          -3.24147994288686,
          -3.1457610911129,
          -2.146758187865031,
          -3.4086044543256793,
          -3.143873651331759,
          -3.105082752277355,
          -3.6478170475939384,
          -3.856356573063003,
          -1.3575070081612544,
          -2.5974408315902817,
          -5.3466150370819205,
          -4.024493486415029,
          -2.43727961654529,
          -5.346601351156874,
          -4.443501588240124,
          -4.443644294899848,
          -3.70337541437429,
          -4.392468317043854,
          -2.384599679214964,
          -2.641639335722719,
          -2.4302382070616937,
          -2.7615760296211613,
          -4.745794763999385,
          -3.314732439818183,
          -4.346781188909013,
          -4.201020416357374,
          -3.375097154242902,
          -3.3179906233268124,
          -2.90289755953152,
          -4.869624754401409,
          -4.004794110388712,
          -3.623422895447224,
          -2.378674481411176,
          -4.4436755668075785,
          -4.305234082373335,
          -3.9345470056046117,
          -3.244512826988333,
          -3.8417347789747436,
          -2.9229263274952144,
          -3.205619067144219,
          -3.2972393665700785,
          -2.863616334522576,
          -3.353477133530903,
          -2.451559520940352,
          -3.024102248275479,
          -3.3343698044247776,
          -1.4459702182069452,
          -3.5083130299937353,
          -4.869620845360168,
          -5.346622857416885,
          -3.4726218995463567,
          -3.4837338052460667,
          -3.915747584963322,
          -4.443695110606494,
          -2.28936785799692,
          -3.8420609556687633,
          -2.9335577844776894,
          -4.17066256804232,
          -2.935099035747168,
          -1.155032859480172,
          -3.148823197531414,
          -2.411743376027878,
          -2.330203984262001,
          -3.015548843110824,
          -2.709304978291998,
          -3.184131141132529,
          -2.8785334793494717,
          -3.3939396432145785,
          -3.0811681883904147,
          -3.09340628983506,
          -3.8560639533331,
          -3.358842046056894,
          -7,
          -3.031829245646604,
          -2.575115649019939,
          -2.8428684115952803,
          -4.024802213153309,
          -2.0892217923700414,
          -4.267500259393266,
          -2.3018772792906352,
          -3.1979059063300923,
          -2.8279565728594,
          -3.293802406018653,
          -3.294081724603141,
          -2.3161806776496223,
          -2.756538835744164,
          -5.346595485628397,
          -2.4880440505901413,
          -1.6053596806286088,
          -2.1350392900048805,
          -7,
          -4.1705824271062575,
          -3.3298924476951335,
          -3.7339386976260975,
          -3.6479225684382985,
          -3.466391484406633,
          -4.068113570998315,
          -3.1217122261613652,
          -2.0483114655495376,
          -2.546018275861391,
          -2.4984814656575884,
          -2.037757352000563,
          -4.869509422891369,
          -3.1214406364012652,
          -3.0635952517578597,
          -3.2510811878677695,
          -3.9316964284988503,
          -3.8153882549088887,
          -2.8185275687875655,
          -2.9735214604632243,
          -3.715501945293284,
          -4.869497692547343,
          -4.647656763195541,
          -4.091661096631954,
          -3.6842812553010647,
          -4.116168070800589,
          -3.915493637849186,
          -2.926661984253831,
          -1.3226176461093304,
          -4.346660002085005,
          -4.02447784884254,
          -7,
          -4.870054534276521,
          -3.3981663683672236,
          -3.3980356405224597,
          -5.346663911865268,
          -3.5215791047702303,
          -3.015917053277,
          -3.2883833843997747,
          -2.738991077258886,
          -2.1964721921744053,
          -3.155626015396081,
          -4.3054569007373225,
          -5.346687369807717,
          -1.4326777481022428,
          -2.5628942100918968,
          -1.5860465135153958,
          -3.2611204538110883,
          -2.2028758014872105,
          -3.61554676628177,
          -3.8557379379199967,
          -3.5019332341249347,
          -2.2599178382806886,
          -2.928986233688613,
          -2.0873167387804843,
          -2.424804525369085,
          -3.197286263105973,
          -2.6292455153672183,
          -3.1799716890427616,
          -3.6565968348432376,
          -3.0382557792349947,
          -2.6936066086433788,
          -2.512758383307129,
          -4.869476186093696,
          -3.5988744976635094,
          -3.019504393829438,
          -3.949179151853337,
          -2.9572937964557795,
          -4.744643016404164,
          -2.6771378628204405,
          -2.424932952019074,
          -3.35695218082546,
          -3.1278203345326987,
          -2.8839754128255146,
          -1.9929038165296251,
          -2.300441888065399,
          -4.1709165757098265,
          -2.348481212264502,
          -3.6746501056927805,
          -3.15430495170648,
          -2.3990765371483125,
          -2.9684148414805858,
          -2.0885417282256857,
          -2.4383109930925673,
          -2.5573136775643146,
          -2.766089567870567,
          -2.6647563148321183,
          -2.6636289016346657,
          -1.7654434528074723,
          -2.3008443764220465,
          -4.647748640757452,
          -5.346605261465181,
          -4.64763330197941,
          -3.0550781209749545,
          -2.71676053323091,
          -3.554797767332964,
          -3.148495270466624,
          -2.863967853967334,
          -3.631033790150154,
          -2.9048342025822866,
          -3.561875241676657,
          -2.5185100861451684,
          -3.648709257986968,
          -3.0465400352110676,
          -2.8815061040436714,
          -3.4783539173187754,
          -2.605425429396821,
          -2.2898474903567414,
          -2.148795703380202,
          -4.870758843736827,
          -2.627442431481744,
          -1.9862854524046398,
          -2.458402655474184,
          -7,
          -3.0573910358048546,
          -3.6479596900461457,
          -2.915336042999824,
          -2.326599552068477,
          -2.719923162669042,
          -2.9017229120897787,
          -3.9665445398586376,
          -5.346603306315429,
          -2.788205290121511,
          -3.5209252186589897,
          -3.9163154981639994,
          -3.261118502596643,
          -2.815279300524557,
          -3.502011356235333,
          -1.5521877772198334,
          -4.1424696373647745,
          -4.024458301085093,
          -1.9902478944627011,
          -2.338376924058498,
          -2.556340652472161,
          -3.014724717747699,
          -2.6938067182423064,
          -1.8047947564795233,
          -2.6300075308019943,
          -2.2918120143098473,
          -1.5178397111018789,
          -2.4855607611392485,
          -3.0346805077668035,
          -2.954508910234011,
          -2.408794439291495,
          -2.3957825106707626,
          -1.581531830238294,
          -3.2005143208494475,
          -2.1467575146020645,
          -1.5069375528633904,
          -3.502810470898115,
          -2.7554055900734933,
          -4.122618655023341,
          -2.4749326096229574,
          -2.7471726918545585,
          -1.979057017608061,
          -2.6675199254122264,
          -3.46125191780495,
          -2.6631251964165,
          -3.2129898529812593,
          -3.844894416747932,
          -1.6894476119461646,
          -2.4214779359271756,
          -2.6344302874418735,
          -2.8337395275925594,
          -3.3335516904838083,
          -3.6592232743780433,
          -3.1893992052440003,
          -3.310710377369317,
          -2.5993545857525744,
          -2.7778645655145366,
          -1.975255533631949,
          -3.057359811393562,
          -2.5729984391183094,
          -1.5008258604492917,
          -2.485076000522817,
          -2.5814964717554,
          -2.816171405839661,
          -3.486624537921495,
          -1.7364954278650726,
          -2.3116364657450608,
          -2.7439558295413367,
          -2.3907209570806813,
          -2.043329136724385,
          -1.94185981840554,
          -4.11847091885741,
          -2.0644721772204484,
          -2.936027951220748,
          -3.85550938603252,
          -3.289226756097386,
          -2.7852108631125287,
          -2.828504069597003,
          -4.234178406311674,
          -1.7592731713118281,
          -1.5535269280041977,
          -2.473979288039574,
          -3.9321653404475576,
          -2.6964930237767444,
          -4.068576414364122,
          -1.5493542710373036,
          -4.211269325159594,
          -2.943474400663783,
          -2.400911878345167,
          -2.8354255599643508,
          -4.346790960566614,
          -2.271584888563998,
          -2.4007377331885125,
          -2.338984518829484,
          -3.2391839343012987,
          -2.2870284657939095,
          -2.9680672298020014,
          -1.8450460753738236,
          -2.2351909578380664,
          -3.1350975152303273,
          -1.4715853537193864,
          -1.6221062926556562,
          -3.466079589486035,
          -1.815969937516831,
          -4.3931753318356845,
          -2.8737009429131453,
          -1.9641584760546043,
          -2.873870943586566,
          -4.024759239035396,
          -4.116277542184733,
          -5.045604591991318,
          -4.170797405996383,
          -3.190928131487656,
          -1.221134651437184,
          -2.078739953895659,
          -1.1876341890151132,
          -3.1451084132832223,
          -2.560422414267646,
          -1.599418080433217,
          -2.3841632002260216,
          -2.264066972315376,
          -3.0019157039612216,
          -2.050780311800198,
          -3.7032757416722104,
          -1.1855364761020941,
          -1.7928881963339756,
          -2.768761392797599,
          -2.995027215050598,
          -1.209496753221182,
          -2.627714946767376,
          -2.2728122492352103,
          -3.5845632073128884,
          -3.5992200567060535,
          -1.6349616438564416,
          -3.591591770128131,
          -2.8828921086125296,
          -2.4218095100603696,
          -1.8834011507076147,
          -4.3923647071668075,
          -2.092794451687219,
          -4.045780507558271,
          -2.982551193789339,
          -2.3021093395845074,
          -0.7900158494868508,
          -1.6313124360568332,
          -3.9152317214694095,
          -2.479114039078266,
          -1.4669628805341084,
          -2.9222609572605434,
          -2.0031124836563117,
          -5.346613081976176,
          -2.267696802793544,
          -1.252321396213063,
          -4.56863971018297,
          -3.282180508437446,
          -2.3405477545742386,
          -2.273924028536512,
          -2.3345234110246715,
          -3.1767539326356737,
          -2.5651020273557044,
          -2.386287988405634,
          -2.761935665168088,
          -2.18519344738246,
          -1.362223758624564,
          -1.7444664398795455,
          -4.091504775081104,
          -1.862408455607033,
          -1.8969745014802077,
          -3.7368355309230132,
          -1.6840900900394933,
          -3.932516692455748,
          -4.004583200605057,
          -2.0824874482169866,
          -2.3305861217577855,
          -7,
          -1.9578061260017514,
          -2.3697577314189413,
          -2.267679113991627,
          -3.816108670739904,
          -3.0915566948636353,
          -2.7494564645739383,
          -2.291803437457964,
          -3.0962849601241924,
          -2.112152582492313,
          -1.6254145743535335,
          -2.853366663945809,
          -3.583052120570069,
          -1.6670636256725735,
          -0.6356793335097679,
          -1.7924393247415067,
          -2.0681148898978354,
          -1.0549175366838799,
          -1.9552950764646821,
          -1.6351238441823128,
          -2.669125374602297,
          -1.7005207901605823,
          -2.330748972067424,
          -2.857588141136608,
          -2.768337370331206,
          -3.3508312293578544,
          -3.6563114131651067,
          -2.3619123209253394,
          -3.0835394196053243,
          -2.463718413219569,
          -2.6258451726313417,
          -1.277894090983314,
          -2.3421330285112987,
          -2.0306609636259325,
          -1.8450285000466284,
          -2.3902430658089173,
          -1.9734638067201293,
          -3.657256886657311,
          -2.269112488235736,
          -4.869571979375695,
          -1.7450716082583857,
          -1.8163174258363546,
          -2.942617465122138,
          -3.5139790241916455,
          -2.3454227452289564,
          -2.5328738841522354,
          -1.2625900233526535,
          -2.502013488424476,
          -3.915931115801124,
          -5.346759690488342,
          -3.733797942367466,
          -3.422363121576346,
          -3.590765596983205,
          -3.2784330855208434,
          -2.1483644013756353,
          -3.0765684092605996,
          -2.225674775060652,
          -2.9167102323944154,
          -3.253812677241476,
          -3.471757056646584,
          -3.3016301591867827,
          -3.054904096730085,
          -3.267947678534008,
          -2.4996695373751536,
          -2.8649850707577986,
          -1.9795876955750071,
          -2.2972787559859684,
          -3.385738853559706,
          -3.10407720615511,
          -3.6933653747922923,
          -2.7899679150590524,
          -3.3343600421243718,
          -4.568475517147917,
          -1.9058828871761138,
          -3.0615930957249455,
          -3.0637827794015475,
          -2.4691775785110766,
          -3.1573424507933363,
          -2.8004219198943976,
          -3.665518453112754,
          -3.6225737162947587,
          -2.9672702005446325,
          -3.755616898414391,
          -2.695770873257886,
          -2.8111227700633705,
          -4.171985685657181,
          -4.44351136416493,
          -7,
          -7,
          -3.41077723337721,
          -7,
          -7,
          -2.8877297972880305,
          -7,
          -7,
          -3.485437481076301,
          -3.2055848656934796,
          -7,
          -7,
          -7,
          -2.971666401356065,
          -2.8666181041282894,
          -7,
          -7,
          -7,
          -3.1336985461157765,
          -7,
          -2.696465603994037,
          -3.9934362304976116,
          -7,
          -2.6532768489331393,
          -3.2537679958814194,
          -7,
          -7,
          -7,
          -7,
          -3.245636029406203,
          -7,
          -3.49791974275339,
          -3.519827993775719,
          -7,
          -7,
          -3.4742162640762553,
          -3.3163897510731957,
          -3.1496808824829383,
          -2.411198673955554,
          -3.4158077276355434,
          -7,
          -3.467312062980552,
          -3.5567415224990464,
          -3.1398790864012365,
          -3.0033168924581544,
          -3.3316297176299323,
          -3.233630580164463,
          -2.100032493818558,
          -7,
          -3.518382315545344,
          -7,
          -2.8402315949581087,
          -3.11293997608408,
          -2.74800982910615,
          -2.649069208087953,
          -2.4128265592104112,
          -3.222924466593083,
          -7,
          -7,
          -3.690373306916059,
          -2.6040909902682974,
          -3.519696767159853,
          -7,
          -7,
          -3.194653071952934,
          -2.299604971476159,
          -3.203190398327238,
          -2.7371926427047373,
          -3.4240645254174877,
          -2.461929755824591,
          -7,
          -2.922610138162019,
          -2.9043097257675417,
          -7,
          -3.382647303154711,
          -3.7342428077758956,
          -3.42781057267599,
          -2.224413521046866,
          -7,
          -7,
          -1.77500484574455,
          -3.623352681537992,
          -2.616400486768762,
          -7,
          -2.4334142191808175,
          -2.6508623548674484,
          -2.8163241727106496,
          -2.905256048748451,
          -3.1210123910935756,
          -7,
          -2.730445584805495,
          -2.704930079931728,
          -2.5418564826932464,
          -7,
          -7,
          -3.3793961751941644,
          -2.386498965550653,
          -2.7023347819567896,
          -2.6956275842630815,
          -7,
          -3.0642975059528488,
          -7,
          -3.413132050434872,
          -2.9326428495466836,
          -1.9220138307296577,
          -2.8165726960261033,
          -3.053462604925455,
          -3.2581581933407944,
          -2.371956759419767,
          -2.7148492608370254,
          -3.1855421548543754,
          -3.45408227073109,
          -2.690955115144948,
          -3.5548524343720542,
          -3.119981307304154,
          -7,
          -7,
          -2.5902539778001947,
          -2.635870232986101,
          -2.7653975864258418,
          -2.6709081903717906,
          -2.6984331912878923,
          -3.1571544399062814,
          -7,
          -3.480054875685184,
          -3.491921712586151,
          -3.827067574895181,
          -3.237166582685473,
          -3.090169844444793,
          -3.3136563466180315,
          -7,
          -7,
          -1.8246994918709745,
          -3.0090257420869104,
          -7,
          -7,
          -3.5607944737908017,
          -7,
          -7,
          -7,
          -7,
          -3.41077723337721,
          -2.708794691425808,
          -2.669200619159474,
          -2.694791266284906,
          -3.1438263908395614,
          -7,
          -3.208710019906401,
          -7,
          -7,
          -3.2453892711712102,
          -7,
          -3.4692818791793925,
          -7,
          -7,
          -7,
          -3.1357567477801735,
          -3.415140352195873,
          -7,
          -7,
          -3.08278537031645,
          -7,
          -3.261143867700667,
          -7,
          -3.6661434272915585,
          -3.353627758985543,
          -3.29939833006815,
          -2.943584441257268,
          -3.2827353726210187,
          -2.699982177716874,
          -3.180898772908726,
          -3.466274321789292,
          -7,
          -7,
          -7,
          -7,
          -3.4496326504700745,
          -7,
          -2.697893274831548,
          -7,
          -3.724419245052999,
          -3.4164740791002206,
          -2.9136372740190546,
          -2.5036065640735687,
          -7,
          -2.690955115144948,
          -2.079919214758588,
          -3.259952059922254,
          -2.8065675639086787,
          -2.9722028383790646,
          -2.3670268684921036,
          -3.2416709737841294,
          -2.7961115793233833,
          -3.107345665472095,
          -3.4749443354653877,
          -3.529045170765769,
          -7,
          -3.2658001678796333,
          -2.6582234545138173,
          -3.5370811569459977,
          -7,
          -3.104487111312395,
          -7,
          -3.418135498425232,
          -7,
          -2.973474226991902,
          -3.1565491513317814,
          -7,
          -3.2821687783046416,
          -3.64018319192134,
          -7,
          -2.273772665662463,
          -3.6963039556509614,
          -2.8518226118758494,
          -7,
          -3.4095950193968156,
          -2.855670556918036,
          -3.121067167467729,
          -3.439332693830263,
          -3.47158505418519,
          -7,
          -3.484584529282843,
          -2.970431410436084,
          -2.7735670489260587,
          -2.851758527971641,
          -3.8225427432313115,
          -7,
          -3.1630122097748297,
          -2.7027176733035243,
          -7,
          -7,
          -3.130816050034744,
          -3.6303261548039467,
          -3.583198773968623,
          -3.5800121125294244,
          -7,
          -7,
          -7,
          -7,
          -3.405346360175709,
          -7,
          -2.9863237770507656,
          -3.475646979484606,
          -7,
          -7,
          -7,
          -7,
          -3.500785172917456,
          -3.190191580575302,
          -7,
          -3.5016069224188295,
          -7,
          -2.9996741569321426,
          -3.310587114890355,
          -2.217230785080009,
          -7,
          -7,
          -7,
          -1.7978103057604256,
          -3.6216954623292787,
          -2.6953137219358365,
          -3.504470862494419,
          -4.0296596902528306,
          -7,
          -3.4499409887733377,
          -3.4565178578052627,
          -3.475053440975798,
          -2.7049508491377243,
          -2.469124104866961,
          -3.0863598306747484,
          -3.353916230920363,
          -2.4197197829952795,
          -2.797821311364024,
          -2.953115098691848,
          -2.4704349934714607,
          -2.2023652550893744,
          -2.4245186658770486,
          -7,
          -3.1533574714829737,
          -3.2530955858490316,
          -7,
          -2.9801170463604465,
          -7,
          -3.157456768134226,
          -3.0709404248961243,
          -7,
          -7,
          -3.571941635074462,
          -3.405965787718157,
          -2.580310759718442,
          -7,
          -4.030275802889288,
          -7,
          -2.7306477150202615,
          -3.078239253809666,
          -2.824884805866878,
          -2.568279968276179,
          -2.548020694905531,
          -3.9157690659836843,
          -3.130976691605617,
          -3.4370367191134883,
          -3.345079526314867,
          -3.838430136872837,
          -2.699472580721697,
          -7,
          -7,
          -7,
          -3.1936254184928794,
          -3.018423082826786,
          -3.466274321789292,
          -3.4912215762392833,
          -3.671913012441587,
          -7,
          -3.148294097434746,
          -3.4671639659690903,
          -2.675167089663394,
          -7,
          -3.531095546870028,
          -2.7555283901719436,
          -3.0210514059168814,
          -4.024532577883043,
          -3.024830339364429,
          -3.9626303167722345,
          -7,
          -2.174297741094978,
          -3.7262380468026377,
          -3.0620982702573447,
          -7,
          -2.7407573233077707,
          -7,
          -2.5390760987927767,
          -2.708474015096181,
          -3.868526886768204,
          -3.0236639181977933,
          -3.419625360887743,
          -7,
          -2.9646367037885013,
          -3.4531653925258574,
          -7,
          -3.5043349118024643,
          -3.3381243371969007,
          -3.1612182196910164,
          -2.5073674815312446,
          -7,
          -7,
          -3.6178282776177513,
          -7,
          -7,
          -7,
          -4.4290898392125735,
          -3.4558933499799442,
          -3.508035666557394,
          -3.409129696282029,
          -3.360431906796075,
          -7,
          -3.783975003412671,
          -4.347486138076573,
          -4.037035855706077,
          -4.161740095202392,
          -3.604528441456295,
          -7,
          -3.738287162119798,
          -3.5907861238608794,
          -4.109409790546366,
          -4.0538272438101375,
          -7,
          -4.613537039588475,
          -7,
          -3.859102254763127,
          -3.694312646223346,
          -7,
          -4.3768779392470645,
          -7,
          -7,
          -3.3419077084620636,
          -4.217852280259893,
          -3.79289049135988,
          -4.063839803002981,
          -7,
          -7,
          -4.153021743626138,
          -3.9843922785242656,
          -4.182828205141933,
          -4.240698979186308,
          -3.066879711943878,
          -2.4740837562241507,
          -3.6478806474013523,
          -2.5691493015140976,
          -2.470000425955779,
          -2.7794653042814748,
          -3.670561251605292,
          -7,
          -3.240294587212841,
          -3.0350657025539265,
          -3.4171394097273255,
          -3.3938383323184746,
          -3.592186013360358,
          -3.2838837251182076,
          -7,
          -2.7275708300415333,
          -2.9407654356312176,
          -7,
          -3.619719265611727,
          -4.410254078446397,
          -3.227050718827332,
          -7,
          -2.7344736994187495,
          -3.1173583818192303,
          -4.365773790016144,
          -7,
          -3.1450720377049977,
          -7,
          -2.6151760173596306,
          -3.6084190513172856,
          -4.709988666197879,
          -3.5453380480196923,
          -3.792718454857177,
          -7,
          -3.084124534836101,
          -3.35065050865804,
          -3.4549279706167253,
          -3.485863329597335,
          -3.2664198658791035,
          -2.781755374652469,
          -3.176739535862114,
          -2.8618661613005787,
          -2.655275674339117,
          -2.6826205370617333,
          -2.8442088006324573,
          -3.2806542362922633,
          -3.9043928530236642,
          -7,
          -3.4784221877400805,
          -3.287221333246573,
          -4.03852081516169,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7425355244551888,
          -1.6405642464819516,
          -1.6481773094924157,
          -7,
          -2.6994040818153375,
          -2.4987094715497626,
          -3.1799345981374416,
          -2.6131015169669127,
          -2.139091607523823,
          -1.9577168838246266,
          -7,
          -2.2232796748825896,
          -1.334118518033627,
          -2.181986424480151,
          -3.628695382714023,
          -2.5442090261667722,
          -2.719020373369276,
          -2.23195291641955,
          -2.919470349950749,
          -7,
          -1.7252780880807221,
          -7,
          -2.545581986400255,
          -2.893317811616112,
          -1.2448576899725807,
          -7,
          -2.4565778668777694,
          -7,
          -3.1362448017461424,
          -3.9199980309640186,
          -2.057289489110179,
          -3.0459471672500875,
          -7,
          -7,
          -1.5437694575513685,
          -7,
          -1.5043238869079565,
          -7,
          -1.3174007955788842,
          -1.584555984799597,
          -7,
          -7,
          -2.955495329184127,
          -1.3775456819423355,
          -2.5821896663826887,
          -2.3285252176838247,
          -2.738100733954366,
          -1.542330061958561,
          -7,
          -1.3148722551578658,
          -2.018085446189288,
          -3.4712428012687067,
          -7,
          -1.3714474350404606,
          -1.3350882209232402,
          -7,
          -2.7139509594753366,
          -7,
          -7,
          -3.299942900022767,
          -2.0397271242216886,
          -1.9578061260017514,
          -7,
          -2.825137502052331,
          -1.9942101088827324,
          -7,
          -3.961942883141387,
          -2.573596755953701,
          -2.370033892087685,
          -7,
          -1.5863729441136503,
          -1.3676237078845837,
          -3.2545480771089736,
          -1.6163597886715864,
          -1.3630906859285676,
          -2.008590292788681,
          -2.1997832969389326,
          -3.0422801074983603,
          -2.3276143266206253,
          -2.9215130698187295,
          -2.8354022910424757,
          -2.077179885446353,
          -1.926735963784648,
          -3.348629326628365,
          -3.0790605919332488,
          -3.5379449592914867,
          -3.118595365223762,
          -7,
          -4.398026858883687,
          -3.396286546068402,
          -1.6757228088459417,
          -3.2166056942039845,
          -2.5489303754800257,
          -2.0382645000952824,
          -2.7000215653386404,
          -2.712743208890336,
          -3.3479151865016914,
          -1.4121167635748022,
          -7,
          -1.698042519772291,
          -7,
          -1.355387657986574,
          -1.9620798147780567,
          -3.8424220033576497,
          -2.9336559786575473,
          -1.4882899572720143,
          -2.6829183011749445,
          -1.9039828148855922,
          -1.9521695008164597,
          -7,
          -7,
          -3.4104397862103464,
          -7,
          -3.4207806195485655,
          -7,
          -2.884177224385151,
          -7,
          -2.5323296410790315,
          -2.77232170672292,
          -7,
          -7,
          -2.762678563727436,
          -3.5022905279147727,
          -2.875784485010796,
          -2.0273496077747564,
          -2.5722906061514177,
          -2.3643164317609604,
          -2.8961954104542107,
          -3.3434085938038574,
          -2.8904210188009145,
          -7,
          -2.3069410289151175,
          -2.875928984922927,
          -7,
          -2.638087126400092,
          -2.320838389017534,
          -2.5907861238608794,
          -2.353707909300785,
          -3.379939722801916,
          -2.55201267714712,
          -3.1264561134318045,
          -2.6570558528571038,
          -2.523246069841925,
          -3.116939646550756,
          -2.7399676967595092,
          -2.5710096723093048,
          -3.215505378231818,
          -3.4008832155483626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5814945422908995,
          -7,
          -4.037046490078626,
          -3.445085022719354,
          -7,
          -7,
          -3.0447011267454616,
          -2.6856969636672376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4168506413604782,
          -7,
          -7,
          -2.9379634365364478,
          -3.606901208545657,
          -7,
          -7,
          -7,
          -3.721150843749684,
          -7,
          -7,
          -3.8842230999548395,
          -7,
          -3.571825249040829,
          -7,
          -7,
          -7,
          -7,
          -3.794627444664508,
          -7,
          -7,
          -3.297760511099134,
          -3.753150847267354,
          -7,
          -7,
          -2.8808952189104655,
          -7,
          -2.412894827472052,
          -7,
          -7,
          -7,
          -3.3527611917238307,
          -3.2157256645575676,
          -3.2913017193269773,
          -7,
          -3.4471192533180046,
          -3.9731740526829724,
          -7,
          -7,
          -3.773859552376687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.882081606267427,
          -2.952058661925562,
          -7,
          -7,
          -2.675319983339292,
          -7,
          -3.93379088414342,
          -3.873378736409141,
          -7,
          -7,
          -3.8345001792937783,
          -7,
          -7,
          -7,
          -7,
          -2.5357023683167728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.222261133522809,
          -7,
          -7,
          -2.7317045750351814,
          -2.9759567150326314,
          -2.9880171842020564,
          -7,
          -7,
          -7,
          -3.3947142795333423,
          -3.446226401778163,
          -3.846027675364379,
          -7,
          -3.2375688701981984,
          -7,
          -7,
          -7,
          -4.099956734241182,
          -7,
          -7,
          -7,
          -3.3947434473685325,
          -3.7333577879255855,
          -7,
          -7,
          -7,
          -3.665299499499897,
          -2.7556684532606974,
          -7,
          -7,
          -7,
          -7,
          -3.8732043092770407,
          -7,
          -3.780077171419682,
          -2.223970863337823,
          -7,
          -7,
          -7,
          -4.40564938958902,
          -7,
          -7,
          -7,
          -7,
          -3.319314304090512,
          -2.176395920226999,
          -7,
          -7,
          -7,
          -3.5781642220843577,
          -7,
          -7,
          -7,
          -3.5733358400660675,
          -7,
          -3.4429498695778618,
          -3.9314070135565733,
          -3.639461586348088,
          -2.948521634484761,
          -7,
          -3.730338067221792,
          -7,
          -7,
          -3.658964842664435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.579772167664273,
          -7,
          -7,
          -7,
          -3.3683798716238016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6080979463252794,
          -3.4037853762493175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7615895881903603,
          -7,
          -3.502036742895763,
          -7,
          -3.1472639867006027,
          -3.2872265141673314,
          -7,
          -3.200248413515354,
          -3.000805798884526,
          -7,
          -3.140586598610774,
          -7,
          -3.7014816356209272,
          -7,
          -7,
          -7,
          -7,
          -3.892261606915535,
          -7,
          -4.0832875693272825,
          -7,
          -4.099646117123231,
          -7,
          -2.8145660465211737,
          -7,
          -7,
          -7,
          -3.204481744011206,
          -3.592065670432247,
          -7,
          -3.240399465738641,
          -3.7328760413627067,
          -7,
          -7,
          -3.2988530764097064,
          -2.7812483667358685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.620994421851143,
          -2.654532673821854,
          -7,
          -7,
          -3.6101276130759956,
          -3.3521825181113627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0765158873126466,
          -7,
          -7,
          -7,
          -7,
          -3.6239725120169965,
          -7,
          -7,
          -3.6245914591268478,
          -3.9023836844324715,
          -7,
          -3.362529596161941,
          -7,
          -3.694956002249818,
          -7,
          -7,
          -2.424679797081162,
          -7,
          -2.487021447340703,
          -3.6267508536833932,
          -3.2894535727211567,
          -7,
          -3.586249638866042,
          -7,
          -3.1587644305616105,
          -3.460747541844197,
          -2.6410135085221333,
          -7,
          -4.003503614742536,
          -3.0736267173714387,
          -3.3205616801952367,
          -7,
          -7,
          -7,
          -3.76767522402796,
          -7,
          -7,
          -7,
          -3.2847690133490195,
          -3.6871721045948,
          -7,
          -7,
          -3.7652959296980564,
          -7,
          -7,
          -7,
          -3.0512905959414938,
          -3.341355374863705,
          -7,
          -3.272286511062136,
          -3.5692568333286103,
          -7,
          -7,
          -7,
          -3.3870693269320205,
          -3.502631927572243,
          -7,
          -3.707485011967474,
          -3.3363262895451586,
          -7,
          -3.267687879865739,
          -3.5474465024763755,
          -7,
          -7,
          -7,
          -3.947237607870666,
          -3.2614413093134877,
          -7,
          -7,
          -3.758684849882441,
          -7,
          -7,
          -7,
          -3.912062555588502,
          -7,
          -3.6469915374771227,
          -7,
          -3.321184027302314,
          -3.8756457198482495,
          -3.160926389562797,
          -4.161074725658612,
          -7,
          -7,
          -3.917598409792237,
          -3.483016420144132,
          -7,
          -7,
          -7,
          -7,
          -3.965953889102063,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7660284553347037,
          -7,
          -7,
          -3.083993764334864,
          -3.4139699717480614,
          -3.493159190231999,
          -2.0605779357471343,
          -3.6243217701134927,
          -2.9352634125839745,
          -2.3728711070256434,
          -3.7211817929377893,
          -2.6760983533759655,
          -2.0774377893428646,
          -1.831380385916425,
          -3.4127591213991164,
          -3.382205042064938,
          -3.4089180208467798,
          -2.1164603876093295,
          -3.7869110598911204,
          -3.400373910783575,
          -2.4840330875981227,
          -3.5408923160154697,
          -3.1697111624179057,
          -7,
          -4.189360455115544,
          -3.085488786659366,
          -2.6765763753194163,
          -2.6307576146032075,
          -3.9126648075972716,
          -3.4082221074413357,
          -3.3635179665825654,
          -2.7745980589006467,
          -2.3953054205960362,
          -2.8281391448173476,
          -3.382531609556752,
          -4.08289303328818,
          -3.494386526991594,
          -2.9271992125020683,
          -4.1836399042213515,
          -7,
          -3.117602691690084,
          -2.6619782346651584,
          -2.973118023373419,
          -7,
          -3.192889639956309,
          -3.931472400204468,
          -3.335818826915165,
          -2.804877401046314,
          -3.6101986574867384,
          -3.431524584187451,
          -2.6057463605514704,
          -3.8123116091311235,
          -3.797059694699971,
          -2.7792710233263387,
          -3.773132500540181,
          -3.8050078342861804,
          -7,
          -3.8824249177039785,
          -3.6893088591236203,
          -7,
          -7,
          -3.4271614029259654,
          -3.289254408054181,
          -7,
          -3.774774503479862,
          -3.2390337015827275,
          -4.430330557604345,
          -7,
          -7,
          -7,
          -3.3467998944611654,
          -3.9618480590183243,
          -4.456458821182361,
          -4.178574103379925,
          -2.8945154378485984,
          -7,
          -3.604334073102911,
          -2.3624824747511743,
          -3.5257742727724612,
          -2.899881272661842,
          -3.512217305233624,
          -2.002375108442567,
          -3.22451720694511,
          -2.8852198251151067,
          -7,
          -3.657701075470702,
          -3.1994762648542516,
          -3.353082344206042,
          -3.92219473304098,
          -7,
          -3.0029062314830117,
          -3.795303884967312,
          -3.7575858013465804,
          -2.797613730153076,
          -7,
          -7,
          -2.9674309630208207,
          -3.618780024506215,
          -1.599799126102246,
          -3.433209608771474,
          -1.8554706961183298,
          -2.4641225315292545,
          -2.179847626177222,
          -2.4682256622556245,
          -1.7886343092918957,
          -3.013005850015737,
          -7,
          -2.5072059920620737,
          -2.7880504684712695,
          -2.463388589573727,
          -2.325672585645238,
          -2.3096301674258988,
          -2.6805827164277285,
          -2.6365406820698576,
          -2.267841936069823,
          -2.342422680822206,
          -2.2741578492636796,
          -2.0097994292833405,
          -2.578543708157483,
          -2.6565240853339462,
          -2.278129763907229,
          -3.6953065224318027,
          -3.1132746924643504,
          -7,
          -2.2976135389667594,
          -2.522918224802378,
          -7,
          -2.6023159857249434,
          -2.546655746275776,
          -1.8824886165043124,
          -7,
          -1.7437988835406757,
          -2.9246853240244777,
          -2.3797082949479225,
          -2.827081946227663,
          -3.2487087356009177,
          -3.2011238972073794,
          -1.8408142274924864,
          -2.7156452610404553,
          -2.273348568749101,
          -2.6641717053619307,
          -2.9755237129603316,
          -1.447333586615877,
          -2.123851640967086,
          -1.7882785888429444,
          -3.649821463224565,
          -2.5002153572023382,
          -3.0013009330204183,
          -2.043637998675992,
          -1.5998588226819117,
          -2.1972206099604468,
          -3.1217567584878156,
          -3.0290454103273037,
          -3.41237653650371,
          -1.9433183777656895,
          -2.2806000476987807,
          -2.4620522678964307,
          -2.495504692242491,
          -2.6413914743166362,
          -2.3697577314189413,
          -2.825137502052331,
          -7,
          -2.8987251815894934,
          -2.4652766020333554,
          -3.1049136848482157,
          -7,
          -1.743946161887734,
          -2.4173055832445254,
          -3.024485667699167,
          -2.3503403330293566,
          -1.731326577491958,
          -7,
          -2.537539266144841,
          -2.1339811341121924,
          -2.747531316550332,
          -3.435525851498655,
          -2.331014665152977,
          -2.3158256288671404,
          -3.234567897635686,
          -2.5102576833804497,
          -2.146381194812135,
          -1.246613541615036,
          -1.97657921864011,
          -2.3475251599986895,
          -3.564547711755948,
          -7,
          -2.258691231511513,
          -1.7563228128879709,
          -2.5167895405103597,
          -1.4577654795018509,
          -2.3769204460896,
          -2.4631461367263494,
          -1.9974215371337367,
          -2.874959064430903,
          -1.710146556473407,
          -2.9274436926266865,
          -3.0073209529227447,
          -3.2152849801139682,
          -2.952671385348004,
          -3.0321004752575327,
          -2.3961993470957363,
          -2.62215946678484,
          -7,
          -2.9145194487727255,
          -2.9460590603851236,
          -1.7600533559612246,
          -3.326335860928751,
          -2.993766785745261,
          -3.2577985291530305,
          -3.0801452741502415,
          -3.0940050223646494,
          -2.7186202999514206,
          -2.2510005323805027,
          -1.7469567911439805,
          -2.1881570498615166,
          -7,
          -2.4538641419058598,
          -2.062743102568688,
          -3.2786392978907393,
          -7,
          -7,
          -2.8282301147269613,
          -3.2702905531667605,
          -3.680516809381255,
          -2.972066640403255,
          -2.0805177662808054,
          -3.281714970027296,
          -7,
          -7,
          -2.7745169657285493,
          -7,
          -7,
          -3.1077499885923325,
          -7,
          -7,
          -2.697631653563757,
          -1.8860331716812706,
          -3.1531285942803624,
          -3.570192561095726,
          -7,
          -2.953437514803095,
          -7,
          -1.9717975238541687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9506082247842307,
          -3.458543426918113,
          -7,
          -7,
          -7,
          -7,
          -3.7574466429160234,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.753563909684063,
          -3.9334366678262804,
          -7,
          -2.534502045262018,
          -3.9817698346980532,
          -7,
          -7,
          -7,
          -7,
          -3.3525683861793083,
          -7,
          -4.393885094130324,
          -7,
          -3.15259407792747,
          -7,
          -2.754603128608854,
          -7,
          -7,
          -2.81424759573192,
          -7,
          -7,
          -3.220631019448092,
          -4.102642600790214,
          -7,
          -7,
          -3.480438147177817,
          -7,
          -2.8740674540749565,
          -7,
          -2.829089253448099,
          -7,
          -7,
          -7,
          -3.1721835050848726,
          -2.7831886910752575,
          -3.6480182966516828,
          -7,
          -7,
          -7,
          -3.560026248912892,
          -3.291812687467119,
          -3.3092041796704077,
          -7,
          -7,
          -7,
          -3.6595359071542166,
          -3.8617434431712057,
          -2.4650852875574327,
          -7,
          -7,
          -7,
          -7,
          -2.6316973716375482,
          -7,
          -7,
          -4.128189179657028,
          -7,
          -1.7750175934288313,
          -7,
          -7,
          -3.4465889396769005,
          -3.4668676203541096,
          -2.3066930278565714,
          -2.6273658565927325,
          -3.2605483726369795,
          -7,
          -7,
          -7,
          -3.4308809464528913,
          -7,
          -3.491987848930919,
          -3.3347552398696707,
          -4.054421524462536,
          -7,
          -7,
          -7,
          -2.8210219669692687,
          -7,
          -3.6725596277632757,
          -7,
          -7,
          -7,
          -3.119915410257991,
          -3.114610984232173,
          -1.9990529802371073,
          -3.132579847659737,
          -7,
          -7,
          -7,
          -3.548406968575704,
          -3.2545480771089736,
          -7,
          -2.859938471600862,
          -7,
          -3.4968777785966436,
          -2.6014080605346837,
          -7,
          -3.0038911662369103,
          -2.7363965022766426,
          -3.712481337801919,
          -3.0043213737826426,
          -2.0047988828817687,
          -3.0882718434369,
          -7,
          -3.8917604014566716,
          -3.2631624649622166,
          -4.219571429078233,
          -7,
          -3.563243701140398,
          -2.786751422145561,
          -7,
          -7,
          -2.693266203420536,
          -3.10698371567979,
          -7,
          -7,
          -3.2372743748135773,
          -7,
          -3.09377178149873,
          -7,
          -7,
          -7,
          -7,
          -3.794418330874141,
          -7,
          -3.7558748556724915,
          -7,
          -7,
          -7,
          -7,
          -2.5047620421780743,
          -4.088065177690204,
          -3.879210605291759,
          -7,
          -7,
          -7,
          -4.075364446373285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.406540180433955,
          -7,
          -7,
          -3.433929765608464,
          -3.6236110517531817,
          -7,
          -7,
          -3.0931554842829083,
          -2.9172428579074663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1969952135148922,
          -7,
          -7,
          -7,
          -7,
          -2.4473453533502263,
          -2.6967930850817443,
          -2.240315190350821,
          -2.1625830742133614,
          -2.594760752586463,
          -2.5060989599284405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.358886204405869,
          -7,
          -7,
          -7,
          -3.5177235948337353,
          -3.250420002308894,
          -7,
          -3.2038484637462346,
          -7,
          -2.7630875039477676,
          -2.887898488096872,
          -7,
          -3.5162708827293403,
          -3.2930309056064373,
          -3.300432429830641,
          -7,
          -3.11293997608408,
          -2.2466079886517525,
          -2.8363241157067516,
          -3.1699681739968923,
          -2.527114111639805,
          -7,
          -2.130828409188458,
          -1.5750966481019517,
          -3.6706168864003255,
          -3.6813920078967692,
          -5.111635470248563,
          -7,
          -7,
          -2.945222316635341,
          -3.0394141191761372,
          -3.119585774961784,
          -7,
          -2.8739015978644615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.11544408343624,
          -2.9728131759430343,
          -7,
          -7,
          -7,
          -7,
          -3.2780673308886628,
          -7,
          -7,
          -7,
          -7,
          -3.436480695009495,
          -3.8396665568824333,
          -1.3121078748810506,
          -2.3394514413064407,
          -2.8379039445929424,
          -7,
          -3.332660600270635,
          -2.8615344108590377,
          -3.067058450998685,
          -7,
          -3.7181112296356043,
          -7,
          -7,
          -7,
          -3.5512059437479064,
          -7,
          -3.300465045540311,
          -7,
          -3.8904769089601707,
          -3.386498965550653,
          -3.2732328340430454,
          -7,
          -2.1511399228714536,
          -2.150756439860309,
          -2.645053650442902,
          -7,
          -7,
          -7,
          -7,
          -3.4075608494863623,
          -7,
          -3.4834446480985353,
          -2.7135838695113863,
          -7,
          -7,
          -7,
          -4.435669211926046,
          -3.9380691862233856,
          -7,
          -3.5264469759599937,
          -7,
          -1.9624369880545964,
          -7,
          -2.8360074591255313,
          -2.150289133478534,
          -2.6060587494103142,
          -7,
          -7,
          -3.623456048069934,
          -7,
          -4.397566032746728,
          -7,
          -7,
          -7,
          -7,
          -3.8159760009719856,
          -7,
          -7,
          -7,
          -3.0572856444182146,
          -7,
          -7,
          -7,
          -3.76767522402796,
          -7,
          -3.327563260187278,
          -7,
          -7,
          -4.385039951486824,
          -3.7031193462360776,
          -4.645336141727953,
          -7,
          -2.8472641017707647,
          -3.980734503770833,
          -7,
          -7,
          -3.3100557377508917,
          -7,
          -2.5165862191199873,
          -2.4580079801960197,
          -3.485366465708323,
          -2.7709992051639407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2441946258862364,
          -3.2121876044039577,
          -2.7277411992455693,
          -3.0989896394011773,
          -7,
          -3.2616304843292867,
          -4.477048866273474,
          -7,
          -7,
          -7,
          -2.9561150478335527,
          -3.3217537297632274,
          -4.599915806604957,
          -3.708896578694757,
          -4.013932120711204,
          -7,
          -4.321950362519417,
          -3.9475807493043225,
          -4.098271561167563,
          -3.1430259587562195,
          -4.346059433052574,
          -4.681322659957815,
          -3.3583670730080253,
          -7,
          -4.0287338793493355,
          -7,
          -5.389460241391956,
          -4.293141483450931,
          -3.8435566646554724,
          -4.132675849092962,
          -7,
          -7,
          -7,
          -7,
          -3.549709912785665,
          -3.7058352143356887,
          -4.684845361644412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.465382851448418,
          -7,
          -3.9237930177264575,
          -7,
          -4.678017331283984,
          -3.171018804632408,
          -2.03104575333472,
          -7,
          -7,
          -7,
          -3.8061121101690913,
          -3.5510431647048075,
          -7,
          -4.4543722124188445,
          -4.188492565093906,
          -3.989075878689533,
          -7,
          -3.97320484934175,
          -7,
          -7,
          -7,
          -4.388243336895596,
          -7,
          -7,
          -3.4039384266415245,
          -3.6965804265510367,
          -5.406118454624989,
          -7,
          -7,
          -7,
          -3.0449697502337134,
          -7,
          -7,
          -3.504130905935453,
          -7,
          -7,
          -7,
          -7,
          -4.78875505029906,
          -7,
          -7,
          -7,
          -4.601810200179028,
          -4.198038188846813,
          -2.9786369483844743,
          -3.7434754666528636,
          -3.133300533875017,
          -3.649140064144219,
          -5.349192020360922,
          -7,
          -7,
          -4.315886415708487,
          -4.313571968439817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2281914879610185,
          -2.7933712489189557,
          -2.9273973806434306,
          -2.697519937940786,
          -2.4360035356698964,
          -3.316941985816457,
          -2.208844289340738,
          -3.45484486000851,
          -2.7041505168397992,
          -3.5065726742525136,
          -7,
          -3.5723589989833546,
          -3.092281919036219,
          -2.5563025007672873,
          -3.474507639116976,
          -2.208095245943409,
          -3.4671639659690903,
          -2.890979596989689,
          -7,
          -3.244277120801843,
          -1.2733707271961023,
          -7,
          -2.8020892578817325,
          -3.1215598441875008,
          -2.2956194529830842,
          -7,
          -3.0452838513951357,
          -7,
          -2.8651039746411278,
          -3.7023335848920693,
          -2.2375655006215744,
          -3.3955290747807227,
          -7,
          -2.8568496787251725,
          -2.976304116552003,
          -7,
          -2.971275848738105,
          -7,
          -2.6111920608684343,
          -2.5359033274007983,
          -7,
          -2.868938178332911,
          -3.2105860249051563,
          -7,
          -3.051769746899332,
          -2.5390760987927767,
          -2.200884682394445,
          -3.3334472744967503,
          -2.4812036769243906,
          -2.3888436682532856,
          -2.4878451201114355,
          -4.217404974401542,
          -3.1322596895310446,
          -2.8559227751038248,
          -2.532860498597645,
          -7,
          -3.0565823808163457,
          -7,
          -7,
          -2.7926917893479724,
          -3.472317546316842,
          -2.267679113991627,
          -1.9942101088827324,
          -2.8987251815894934,
          -7,
          -3.255995726722402,
          -7,
          -3.2405492482826,
          -3.8303319934519617,
          -2.91301868374796,
          -3.4753805931433615,
          -2.813641631517659,
          -2.763240757310025,
          -2.2007137339640135,
          -3.0694830939346116,
          -2.599402281048723,
          -3.220020871555797,
          -2.7179477417489277,
          -3.0213960567419713,
          -2.7943718474659938,
          -3.195415296209372,
          -3.0505730767551476,
          -3.064233296034753,
          -2.888580615662831,
          -2.8898617212581885,
          -2.86053763630648,
          -7,
          -7,
          -3.295786940251609,
          -7,
          -2.517855418930029,
          -3.0874264570362855,
          -3.260836819581087,
          -1.6595481798668492,
          -3.1436675973631676,
          -3.7784045149697625,
          -3.1312175426046194,
          -3.2580383383705556,
          -7,
          -7,
          -7,
          -2.7636775163976686,
          -3.737907923374639,
          -3.754806855354423,
          -7,
          -2.1122697684172707,
          -7,
          -2.7646345803270043,
          -3.2860071220794747,
          -7,
          -7,
          -7,
          -7,
          -3.13481437032046,
          -3.168202746842631,
          -3.0099362766616276,
          -2.9254839872002525,
          -3.4531653925258574,
          -7,
          -2.9542425094393248,
          -3.1734776434529945,
          -7,
          -7,
          -3.2405492482826,
          -3.516403148447403,
          -7,
          -3.6582976503081897,
          -7,
          -7,
          -2.9640237928400337,
          -7,
          -2.395172160046634,
          -7,
          -7,
          -3.907666595015563,
          -3.2780673308886628,
          -7,
          -3.6226284261293253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.091266426750714,
          -7,
          -7,
          -7,
          -7,
          -4.217931168785781,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7409545058228053,
          -7,
          -7,
          -7,
          -4.727056500770033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.841033940514008,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.608622295084001,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.531981896330715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278997346985271,
          -7,
          -7,
          -7,
          -4.5177851177248165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7033773685123497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.85062632701075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.508779739050585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.781396305196791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.759365621655929,
          -3.388633969351789,
          -7,
          -7,
          -3.5151734143886832,
          -3.866050924009275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.412123565494064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8643676769207596,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.934649922900711,
          -7,
          -3.80962704189405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3544093944426345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6645479622465467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.272197566611441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.858296524533886,
          -7,
          -5.8754282319102185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.597442870900575,
          -4.472324865002763,
          -7,
          -3.6442415858437287,
          -3.1226274960100633,
          -3.8995286868730945,
          -2.656943297593573,
          -7,
          -3.2789535589511205,
          -3.9857407410500745,
          -3.1416587697865523,
          -7,
          -2.5658561294957485,
          -2.790381335859961,
          -3.038654218474643,
          -4.333165042543883,
          -3.5960286592709947,
          -3.2796928632569657,
          -2.0729726418384122,
          -4.316410710725809,
          -3.295017011881458,
          -4.309088736043454,
          -3.323939275128193,
          -3.6892200372638357,
          -2.854980412250097,
          -4.334051440346892,
          -2.918668816066225,
          -2.6452257115354163,
          -3.382557321908786,
          -3.8213315334803046,
          -2.4367925158703856,
          -2.929792841881867,
          -3.4819951270342555,
          -3.2434514656445983,
          -2.5471591213274176,
          -3.4877744973806672,
          -3.4106647801187093,
          -7,
          -2.6696267589109772,
          -4.315025199312605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.633407852121307,
          -7,
          -4.28168974454697,
          -7,
          -7,
          -7,
          -4.963636742118113,
          -4.682298542107937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.710063745199173,
          -5.104531494486759,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4353824437324185,
          -7,
          -7,
          -7,
          -3.817961804531994,
          -4.598270573796811,
          -4.490070903572991,
          -7,
          -7,
          -4.956902842964416,
          -7,
          -5.3479288310870485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8796692056320534,
          -2.4472396579718936,
          -2.6919503906454767,
          -7,
          -4.189265668934548,
          -2.929418925714293,
          -2.718501688867274,
          -3.74401901732498,
          -2.5718751325887794,
          -7,
          -7,
          -7,
          -2.5634810853944106,
          -3.594240575973108,
          -7,
          -3.064083435963596,
          -3.0665122778565954,
          -3.287129620719111,
          -2.6580113966571126,
          -2.5034274846401083,
          -3.1489109931093564,
          -1.6086905702269756,
          -7,
          -7,
          -2.4951973183654577,
          -7,
          -7,
          -7,
          -3.5425764762605296,
          -7,
          -7,
          -3.3677285460869766,
          -3.6636660324894645,
          -2.1365631103550466,
          -2.800717078282385,
          -3.4705574852172743,
          -7,
          -3.143014800254095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.415140352195873,
          -7,
          -2.5498786795403077,
          -2.3348556896172914,
          -1.8242188405518553,
          -7,
          -7,
          -7,
          -7,
          -3.1201899153438655,
          -7,
          -7,
          -7,
          -2.3873898263387296,
          -3.0719433440030572,
          -7,
          -2.920123326290724,
          -2.864025383544317,
          -7,
          -3.816108670739904,
          -7,
          -2.4652766020333554,
          -3.255995726722402,
          -7,
          -3.859798547480566,
          -7,
          -3.1840522923918644,
          -2.99563519459755,
          -7,
          -7,
          -1.5276573193177572,
          -7,
          -7,
          -4.632467415481234,
          -7,
          -7,
          -4.309608877958903,
          -7,
          -7,
          -7,
          -3.3406423775607053,
          -2.4209637116600056,
          -2.9245377177754897,
          -2.581209852354842,
          -7,
          -7,
          -2.915154763984291,
          -2.441909267199942,
          -2.824776462475546,
          -1.6630574484453744,
          -3.4901884068008413,
          -7,
          -3.263340126851339,
          -3.4693310102934105,
          -2.832143805932397,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0127493730851898,
          -7,
          -7,
          -7,
          -3.0359341352045495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8543060418010806,
          -2.1324731545055577,
          -2.9686830381598255,
          -2.9731278535996988,
          -7,
          -7,
          -1.8191566912166992,
          -7,
          -7,
          -7,
          -7,
          -3.4207806195485655,
          -7,
          -4.1144108023978365,
          -3.4749443354653877,
          -3.672005445022952,
          -7,
          -7,
          -3.557025722386383,
          -7,
          -7,
          -3.4215216663369774,
          -7,
          -7,
          -7,
          -3.157909866226345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.370513089598593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8858714298613544,
          -7,
          -7,
          -7,
          -4.041412425367856,
          -3.8769871844277386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6707559422151332,
          -3.1046422774442766,
          -7,
          -4.0392554438064865,
          -3.5182323296424447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.787629385435588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5170128532784437,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.639830003827776,
          -3.9585638832219674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.424051942460124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9540494467635945,
          -3.765125036304772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.864036182725775,
          -7,
          -7,
          -7,
          -7,
          -3.9239147590658896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.254377447706169,
          -7,
          -7,
          -7,
          -7,
          -4.025141949625193,
          -7,
          -3.62744779121837,
          -4.323038854969626,
          -7,
          -4.121625492208471,
          -7,
          -2.3239399715085596,
          -7,
          -3.6577249542051082,
          -7,
          -7,
          -3.8634418286137087,
          -4.419063124492548,
          -7,
          -7,
          -7,
          -3.7728056166847854,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.929393378228659,
          -3.4646758040229666,
          -4.313297626086869,
          -4.04680721355374,
          -7,
          -3.841265592625782,
          -7,
          -7,
          -7,
          -3.645422269349092,
          -4.114277296561586,
          -7,
          -7,
          -7,
          -3.6139369124465115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9303406348743843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6895160395121422,
          -7,
          -3.5591881890047756,
          -7,
          -3.585686278452497,
          -3.559032745721805,
          -7,
          -3.5666731376061165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.25956998964356,
          -7,
          -4.08019341942848,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.87052395074504,
          -3.3496983398039943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8530286147129895,
          -7,
          -7,
          -4.16025838620267,
          -7,
          -3.9966211075792013,
          -3.0281219670061663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.453948101422571,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.091702121717148,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8292501529183816,
          -7,
          -1.9821867377077855,
          -7,
          -7,
          -7,
          -4.20725725871634,
          -3.7707415837527742,
          -7,
          -4.060584531360865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8685856665587655,
          -7,
          -7,
          -7,
          -2.6091944610327804,
          -7,
          -7,
          -3.5631588895944604,
          -7,
          -7,
          -7,
          -7,
          -3.5832271212472397,
          -7,
          -4.093561757565289,
          -7,
          -7,
          -7,
          -3.188436925219375,
          -7,
          -7,
          -7,
          -7,
          -4.078601800355391,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.990299997459176,
          -7,
          -3.582044414222515,
          -7,
          -4.0965972083578945,
          -3.410290598084559,
          -7,
          -7,
          -7,
          -7,
          -3.9882467233753784,
          -3.6152484449094584,
          -4.062769949815128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.280407623567409,
          -7,
          -7,
          -3.278924999158791,
          -3.2968379697311563,
          -4.396722278503773,
          -7,
          -3.683234711411427,
          -3.5211235488395993,
          -3.53873078529734,
          -2.9919095417868324,
          -3.039027907961798,
          -3.720434958433874,
          -3.5333483150767298,
          -3.518694858223309,
          -3.026926785105189,
          -3.253017489746188,
          -3.285351804567883,
          -3.742175043223677,
          -3.09377178149873,
          -3.310152400147939,
          -2.815015488573993,
          -3.82610721152752,
          -2.886490725172482,
          -3.4163873724604112,
          -0.9967664064449114,
          -2.444088188482623,
          -3.237155148617628,
          -3.079543007402906,
          -3.316003912815251,
          -2.7535427437866438,
          -3.6282867310895144,
          -2.4686001095378365,
          -3.168897163634367,
          -3.1283992687178066,
          -2.855774116844509,
          -3.038023740045158,
          -3.9144489406985543,
          -3.0085292028130053,
          -3.139753185695353,
          -2.446577575487802,
          -2.9906415201297722,
          -3.7725508979688867,
          -7,
          -3.879759230965237,
          -3.1487798874796478,
          -3.8441042306975133,
          -4.033705151467852,
          -3.595496221825574,
          -7,
          -3.7457601584924167,
          -7,
          -3.6717743266725966,
          -3.4160385034771386,
          -3.4596984085744094,
          -3.335706570895733,
          -7,
          -3.5724972715840555,
          -7,
          -7,
          -7,
          -3.9982884066933058,
          -3.5609422722781963,
          -7,
          -3.6204358958338836,
          -3.451107081704346,
          -3.6623555521273166,
          -7,
          -7,
          -3.8499719123288503,
          -3.5073520497345663,
          -7,
          -4.81390275426885,
          -3.218535505216528,
          -2.4682513982516863,
          -7,
          -3.590300340253103,
          -3.0908978446864057,
          -3.570069212412138,
          -3.4101443047027806,
          -3.1784973288215594,
          -7,
          -3.2875370837896747,
          -4.568143031657702,
          -7,
          -3.611663286550839,
          -3.4407831813593344,
          -7,
          -3.7260065455287896,
          -7,
          -7,
          -3.5911573950798172,
          -3.813213918024926,
          -7,
          -7,
          -7,
          -3.5342165443323297,
          -2.641702867149843,
          -3.406515849529335,
          -7,
          -4.333427121152962,
          -7,
          -3.310640216862898,
          -2.8940851900609035,
          -3.9400680137393524,
          -3.9184497424011577,
          -3.842609239610562,
          -3.37485828006509,
          -7,
          -2.7066672175675204,
          -4.016657344822202,
          -3.5589484459780394,
          -7,
          -3.088756066652953,
          -3.0770043267933502,
          -3.258717079597411,
          -3.573683693093798,
          -3.0781546160496553,
          -3.787672964687493,
          -3.8588378514285853,
          -3.263517716091967,
          -7,
          -3.98344585734134,
          -7,
          -3.3154717746546822,
          -3.8334658601706924,
          -7,
          -2.54076873485839,
          -3.050716345041008,
          -2.294349499507947,
          -7,
          -3.052501563413781,
          -4.1739143398014065,
          -3.271318745081179,
          -7,
          -7,
          -3.8975721138257304,
          -3.6827586141990913,
          -7,
          -3.840043330603494,
          -7,
          -7,
          -2.9296153946078958,
          -3.3785190261704825,
          -3.426240081535656,
          -7,
          -3.560086048497414,
          -3.9112108931375533,
          -3.9019212493762616,
          -2.7834469809135887,
          -7,
          -3.9891827512555476,
          -3.9801397777457543,
          -2.5947081713790734,
          -3.2272223343324167,
          -3.85582190540603,
          -3.840043330603494,
          -2.78767604349099,
          -7,
          -3.0915566948636353,
          -3.961942883141387,
          -3.1049136848482157,
          -7,
          -3.859798547480566,
          -7,
          -7,
          -3.0858611737884503,
          -3.3724824033627847,
          -3.925621454790829,
          -4.101059354908116,
          -3.190611797813605,
          -7,
          -4.09652766560644,
          -3.6107133821919506,
          -7,
          -7,
          -3.9458295265073566,
          -7,
          -4.06881642992222,
          -3.885756881069267,
          -3.151982395457474,
          -2.528434597195507,
          -3.2880255353883627,
          -3.580696939712437,
          -7,
          -7,
          -3.2340406260556973,
          -3.9614210940664485,
          -3.8706964579892498,
          -3.1809378639837487,
          -3.187791799106236,
          -3.4464853882977966,
          -3.0614734225676257,
          -2.935496769408188,
          -2.7554335198406235,
          -3.957271979992943,
          -3.8574531170352664,
          -3.9061733636440485,
          -7,
          -7,
          -7,
          -1.64697522012513,
          -7,
          -7,
          -7,
          -2.7755404355153734,
          -7,
          -7,
          -3.528209432477408,
          -7,
          -7,
          -7,
          -7,
          -3.7996850909091004,
          -3.9014038268252516,
          -7,
          -7,
          -7,
          -3.840670561333409,
          -7,
          -7,
          -3.5548524343720542,
          -3.9406160823374075,
          -7,
          -2.918326697955654,
          -3.60404595999381,
          -3.333568174923988,
          -7,
          -7,
          -3.685338597906292,
          -7,
          -7,
          -2.9041398021650044,
          -7,
          -7,
          -3.5064148268833297,
          -3.475283684857362,
          -3.9457147140598603,
          -3.8353734524700087,
          -7,
          -3.0270436588491743,
          -7,
          -3.731629050375943,
          -7,
          -7,
          -7,
          -7,
          -2.780317312140151,
          -7,
          -7,
          -7,
          -3.2755416884013093,
          -7,
          -7,
          -7,
          -4.125863341790067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8692317197309762,
          -7,
          -4.341889355714299,
          -3.0500481493617353,
          -7,
          -3.379668034033654,
          -3.847698347974595,
          -7,
          -7,
          -7,
          -3.0488300865283504,
          -7,
          -7,
          -3.213116184718616,
          -2.34143452457814,
          -7,
          -7,
          -2.6967930850817443,
          -2.2896294858836037,
          -7,
          -7,
          -7,
          -3.387033701282363,
          -7,
          -5.141872886754569,
          -7,
          -7,
          -7,
          -2.857935264719429,
          -2.957128197676813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6787057884301517,
          -7,
          -3.435578953471198,
          -3.8047526021504607,
          -7,
          -7,
          -3.4652340949880145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.806632128612864,
          -4.152074202768228,
          -7,
          -7,
          -7,
          -7,
          -3.7453871213200087,
          -2.3221208040924033,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.584274671924987,
          -7,
          -7,
          -7,
          -3.4674601095072637,
          -7,
          -7,
          -7,
          -3.297760511099134,
          -3.2676409823459154,
          -4.116806915962344,
          -3.5578679615680224,
          -3.725135413175271,
          -7,
          -7,
          -3.44870631990508,
          -7,
          -3.4095950193968156,
          -7,
          -2.9025467793139916,
          -7,
          -7,
          -7,
          -7,
          -3.3783979009481375,
          -7,
          -7,
          -7,
          -3.6461095219788477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3877278748679,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.700646038084983,
          -7,
          -7,
          -7,
          -2.5709319183959467,
          -4.994647038353484,
          -7,
          -2.991521413671849,
          -7,
          -7,
          -7,
          -2.980025026216241,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.858256399391167,
          -2.179854874505845,
          -4.159055603513488,
          -3.6979264448065052,
          -7,
          -7,
          -2.7993405494535817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6405187032046085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9459607035775686,
          -2.556647042222806,
          -2.8239087409443187,
          -2.4207522017843215,
          -2.6646419755561257,
          -7,
          -4.021155595897658,
          -7,
          -7,
          -7,
          -3.0870712059065353,
          -7,
          -7,
          -7,
          -3.930999941956152,
          -7,
          -7,
          -7,
          -7,
          -3.7515696914384007,
          -7,
          -7,
          -3.602385590105105,
          -7,
          -2.7970943426302544,
          -3.249198357391113,
          -2.8245596945739138,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3283796034387376,
          -7,
          -7,
          -3.4779528557799653,
          -7,
          -3.7692295817365937,
          -7,
          -3.2518814545525276,
          -7,
          -7,
          -2.673711908836969,
          -2.597329464234929,
          -7,
          -3.4101020766428607,
          -7,
          -3.0835623371877907,
          -7,
          -7,
          -7,
          -7,
          -2.8847953639489807,
          -7,
          -7,
          -3.028977705208778,
          -3.618623286646383,
          -2.899163641477219,
          -7,
          -5.412070599420136,
          -7,
          -1.9176487071628685,
          -7,
          -7,
          -7,
          -2.858537197569639,
          -3.359076226059263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7481880270062007,
          -2.367355921026019,
          -2.9770373352246815,
          -3.581400491476937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.99536354504628,
          -7,
          -7,
          -2.381656482585787,
          -3.809096556968516,
          -7,
          -7,
          -7,
          -3.998520882835038,
          -7,
          -3.3653475652695106,
          -2.882036383746232,
          -3.8487431818956837,
          -7,
          -7,
          -2.8536982117761744,
          -7,
          -3.4795753101749884,
          -2.752355804153501,
          -7,
          -7,
          -2.2974869397629045,
          -2.9206450014067875,
          -3.2657609167176105,
          -7,
          -7,
          -3.0322157032979815,
          -7,
          -7,
          -7,
          -4.65525692082863,
          -3.5997193623970984,
          -7,
          -3.988135156985908,
          -7,
          -7,
          -2.903524064471262,
          -3.3087777736647213,
          -7,
          -7,
          -2.3452336581560345,
          -1.9093420383613084,
          -2.363235804483694,
          -7,
          -5.226440720641296,
          -7,
          -7,
          -7,
          -7,
          -3.765966424785714,
          -3.6321534835106326,
          -7,
          -7,
          -3.1324197980976147,
          -7,
          -7,
          -7,
          -3.4101865286571087,
          -3.0681858617461617,
          -2.6720978579357175,
          -3.633670406051444,
          -7,
          -4.556875150501956,
          -7,
          -5.2733283174018215,
          -7,
          -3.1026394836913003,
          -4.06495273646327,
          -3.4845133742926118,
          -7,
          -7,
          -7,
          -3.5542468081661105,
          -3.7940695839816327,
          -3.7327956982893293,
          -7,
          -7,
          -7,
          -7,
          -2.6304278750250236,
          -7,
          -7,
          -3.05595140532915,
          -7,
          -3.3286377925655763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.998329099002421,
          -7,
          -7,
          -7,
          -4.622224387866044,
          -7,
          -7,
          -7,
          -7,
          -4.277104727283855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.775231685855374,
          -7,
          -4.201251424585158,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.118595365223762,
          -7,
          -4.464496999231432,
          -7,
          -7,
          -7,
          -7,
          -4.934778632284937,
          -3.1527250407314686,
          -3.2099169530089915,
          -7,
          -4.185140631715381,
          -3.6401560685761862,
          -7,
          -3.3975766285797615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.390113407756115,
          -4.886071739164197,
          -7,
          -7,
          -2.2030679971228104,
          -2.968015713993642,
          -3.725546525521209,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.324570517218835,
          -4.434377261250224,
          -7,
          -7,
          -7,
          -7,
          -4.5979254325604595,
          -7,
          -7,
          -3.1110696839689878,
          -4.354511799744273,
          -7,
          -4.5026845767730315,
          -7,
          -7,
          -4.609402295470293,
          -7,
          -7,
          -2.7895807121644256,
          -7,
          -7,
          -7,
          -3.215137985872625,
          -2.095444656976254,
          -3.145535411776542,
          -7,
          -7,
          -3.441596956713679,
          -7,
          -1.7232240539209986,
          -2.303196057420489,
          -2.910700616959574,
          -7,
          -3.43610039301166,
          -2.7229422608370752,
          -7,
          -3.0546130545568877,
          -7,
          -7,
          -2.89726044333122,
          -7,
          -7,
          -3.3092041796704077,
          -7,
          -3.0770043267933502,
          -2.9854264740830017,
          -2.538824988937904,
          -7,
          -4.017242084547646,
          -7,
          -7,
          -7,
          -3.6634461427299287,
          -4.7888044930446485,
          -7,
          -2.7610252517113727,
          -2.1975061070696156,
          -7,
          -2.4002500911501117,
          -7,
          -2.3947017784328417,
          -2.5889290464869177,
          -7,
          -7,
          -3.4044916177586857,
          -2.6299190355035416,
          -7,
          -7,
          -7,
          -3.159266331093494,
          -2.265211027637486,
          -2.2973227142053028,
          -3.292300384859081,
          -7,
          -7,
          -2.5129753158318624,
          -2.3824030249571733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.895462011211129,
          -2.7494564645739383,
          -2.573596755953701,
          -7,
          -3.2405492482826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.353723937588949,
          -3.208441356438567,
          -7,
          -7,
          -2.956099794444892,
          -3.3092041796704077,
          -2.3480998137138966,
          -1.642707106377062,
          -3.077132683372356,
          -3.482158695411276,
          -3.2681878052211655,
          -7,
          -2.9952362102039363,
          -7,
          -7,
          -7,
          -2.106530853822381,
          -7,
          -7,
          -7,
          -3.105510184769974,
          -7,
          -4.053859215076276,
          -7,
          -4.164977077110886,
          -3.2688119037397803,
          -3.6725596277632757,
          -2.7641761323903307,
          -7,
          -2.6769221255374807,
          -7,
          -1.5381235426720743,
          -2.8982679813347163,
          -7,
          -1.6097468199942533,
          -2.3761205256094518,
          -2.4452927694259716,
          -3.250750999543319,
          -0.7659167939666319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.026328938722349,
          -2.143014800254095,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -7,
          -3.1089031276673134,
          -3.247973266361807,
          -2.832340809556507,
          -3.7715139899796664,
          -7,
          -3.053462604925455,
          -7,
          -3.549371152333177,
          -3.012415374762433,
          -7,
          -3.1985883640360258,
          -2.5951286428938523,
          -7,
          -7,
          -7,
          -3.427323786357247,
          -7,
          -7,
          -7,
          -7,
          -3.6658623002031554,
          -7,
          -7,
          -7,
          -3.7718078789991054,
          -7,
          -7,
          -7,
          -7,
          -3.839603729470837,
          -3.82013575187043,
          -7,
          -7,
          -3.3316165762659744,
          -7,
          -7,
          -7,
          -3.8425052294359774,
          -3.4286611380324996,
          -3.3347887257004363,
          -7,
          -7,
          -7,
          -7,
          -2.494106034228388,
          -3.4111144185509046,
          -7,
          -3.2928760493088776,
          -3.564831473888491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7788022040132385,
          -2.9451752606966317,
          -7,
          -7,
          -7,
          -7,
          -3.8566684836115352,
          -7,
          -7,
          -7,
          -3.571825249040829,
          -7,
          -3.5773315251569056,
          -7,
          -7,
          -3.865518519074774,
          -7,
          -2.563389799113065,
          -3.774078800752519,
          -7,
          -7,
          -3.813714391881145,
          -3.5400790888041724,
          -3.2722100098422344,
          -3.901240302073309,
          -3.819774182176816,
          -3.5798216909532146,
          -7,
          -3.7944880466591697,
          -7,
          -7,
          -3.8029104894190398,
          -7,
          -7,
          -7,
          -3.1027276444281937,
          -2.3868660119200196,
          -7,
          -7,
          -3.1082266563749283,
          -7,
          -7,
          -3.6754575416412085,
          -7,
          -7,
          -3.8631067550339733,
          -7,
          -3.872272846224205,
          -7,
          -7,
          -2.9570254668704434,
          -7,
          -7,
          -7,
          -3.5997739391463885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2259103952026758,
          -3.6353329239337633,
          -3.7172543127625497,
          -7,
          -7,
          -3.592953571547866,
          -7,
          -3.403120521175818,
          -3.9551583869257936,
          -7,
          -3.3822197260983238,
          -7,
          -7,
          -7,
          -3.6868744999220815,
          -7,
          -7,
          -3.824060717418653,
          -3.6744477675018934,
          -3.232547690649782,
          -7,
          -7,
          -7,
          -7,
          -2.244008706403989,
          -2.954724790979063,
          -3.748498126613737,
          -7,
          -3.9389198122447717,
          -3.374106508804013,
          -7,
          -4.001863462692524,
          -3.3941083123867233,
          -7,
          -3.781970673912552,
          -7,
          -3.654289570174457,
          -3.5116160205691376,
          -7,
          -7,
          -7,
          -7,
          -2.5166397339784603,
          -3.9114772171061025,
          -7,
          -7,
          -2.949008611624438,
          -7,
          -7,
          -7,
          -3.759516759462188,
          -7,
          -2.81929710718518,
          -3.4206569887230676,
          -4.288897276322566,
          -3.6994908452722046,
          -7,
          -4.105680462945809,
          -7,
          -7,
          -3.8171685723810556,
          -3.61689542640076,
          -4.0750357259221905,
          -7,
          -7,
          -7,
          -3.371296092257093,
          -7,
          -7,
          -7,
          -3.824581376233483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.837588438235511,
          -7,
          -3.579190698925359,
          -3.7759015788916743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.132163596050864,
          -7,
          -3.430290106054924,
          -7,
          -3.319231018160272,
          -3.2556512166305875,
          -7,
          -3.093728034887572,
          -3.955639653023252,
          -7,
          -7,
          -3.83257277484618,
          -3.545987102271373,
          -7,
          -3.8328281295393536,
          -7,
          -7,
          -7,
          -7,
          -4.149773177559665,
          -3.8546703318953357,
          -4.433993721794708,
          -7,
          -2.6986888993039364,
          -7,
          -3.560305243220961,
          -7,
          -3.532117116248804,
          -7,
          -3.7821858664920165,
          -3.4274455340986147,
          -7,
          -7,
          -3.8806421264042847,
          -3.1439511164239637,
          -3.0895872186728046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5228678877825708,
          -3.954145988829548,
          -3.317761636804117,
          -3.318952727334636,
          -7,
          -3.7749546890801384,
          -3.306425027550687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2681003598156644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0959099852263767,
          -7,
          -7,
          -4.068927611682072,
          -3.84248442441157,
          -7,
          -7,
          -2.5712023068131966,
          -3.859018143888894,
          -3.2524006351067714,
          -7,
          -2.742548008123852,
          -7,
          -7,
          -7,
          -2.482873583608754,
          -3.7272565137622964,
          -3.2008808842713874,
          -7,
          -7,
          -3.8292394281413893,
          -3.791690649020118,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.866759783495108,
          -3.5330726600488123,
          -3.816108670739904,
          -3.8976270912904414,
          -7,
          -2.702433636058207,
          -3.5111812411046364,
          -7,
          -3.27460186778912,
          -7,
          -7,
          -7,
          -7,
          -3.3069149600365777,
          -3.3203021054568276,
          -3.7512020945883533,
          -3.851441814672055,
          -7,
          -3.873436863222037,
          -3.5392265670071406,
          -3.7989267385772014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3674491072686044,
          -7,
          -3.9840150839542603,
          -3.6924356277125225,
          -3.448229758902606,
          -7,
          -3.578371751958183,
          -3.2195964323588115,
          -4.046534182750969,
          -7,
          -7,
          -7,
          -3.4576296199439165,
          -3.7500453120117676,
          -7,
          -7,
          -7,
          -7,
          -3.884228769632604,
          -7,
          -7,
          -7,
          -3.9814561665221264,
          -7,
          -3.312800085191476,
          -7,
          -7,
          -2.876765648822366,
          -3.3765364047914934,
          -3.677570455852376,
          -3.4944792655103964,
          -4.276913480580438,
          -3.417260269499742,
          -2.872636080463341,
          -4.167445339198895,
          -2.7803603084010486,
          -3.3870930757416673,
          -2.6797147174141145,
          -3.1985024450926027,
          -3.914494268631718,
          -3.843498548954459,
          -2.5849265976686113,
          -3.821071148157465,
          -3.4879780258698023,
          -2.853933601745028,
          -4.201615582313942,
          -3.3301092545928297,
          -7,
          -3.865441910416628,
          -3.534062386452289,
          -2.5494491496233778,
          -3.349107468372933,
          -3.724849087629386,
          -4.403772331808551,
          -3.6124871640450116,
          -2.6900778885780894,
          -2.5880623578472397,
          -3.5129288625798827,
          -4.119816545937216,
          -3.941312625360662,
          -3.83968749733336,
          -3.373157297798375,
          -3.9361365870214917,
          -7,
          -3.2460059040760294,
          -3.079543007402906,
          -3.3639596522893145,
          -3.8020892578817325,
          -3.091725562883123,
          -2.99768710765127,
          -3.4095273670122404,
          -3.9860099318532614,
          -3.30838379618209,
          -7,
          -3.3906334089447348,
          -2.9988403344727614,
          -3.0137322976039687,
          -1.932780239030511,
          -3.5090814946225235,
          -3.3628429259206896,
          -2.926406762728239,
          -3.557734381817368,
          -3.7702627381705933,
          -7,
          -3.754921409665169,
          -2.547911383432036,
          -3.1454184040139723,
          -2.8986566322275165,
          -2.9715625841386353,
          -3.285214082720241,
          -3.728379994487447,
          -7,
          -7,
          -3.7748817658187965,
          -3.070434676288165,
          -3.1441459284677373,
          -3.9990384774352434,
          -3.5335687131945797,
          -2.382745351375009,
          -3.752893154884594,
          -2.8598385304010416,
          -2.5815216458876193,
          -2.686099771995916,
          -2.5448786068287874,
          -3.2912275344074153,
          -3.0614901766248153,
          -2.6495834057326055,
          -3.440509463541816,
          -7,
          -3.204414716161362,
          -2.7799889851678676,
          -3.9430986230054854,
          -2.808377404094648,
          -3.776701183988411,
          -3.957271979992943,
          -2.903051889313784,
          -3.219619449979454,
          -3.761852694466383,
          -7,
          -7,
          -2.2340722388625216,
          -2.866456128235913,
          -2.2374371011262446,
          -3.0251302389975376,
          -2.2295678466428646,
          -2.985501320180887,
          -2.4658164336527726,
          -1.841770975803067,
          -2.7324512023839813,
          -3.252731702726023,
          -7,
          -2.0097148594798413,
          -3.278219929091885,
          -1.5224876590191092,
          -2.2377618169642237,
          -2.638916922653306,
          -2.4987299594058783,
          -2.8353852017492147,
          -1.5391521640319417,
          -2.0966843468653313,
          -2.3231833228365364,
          -3.1806275769070043,
          -2.7445276734725668,
          -2.1258786900701554,
          -2.1647775936979032,
          -2.8416097121684354,
          -2.7238659644435037,
          -7,
          -1.9979666349340235,
          -2.607071878521178,
          -3.062506775208683,
          -2.779059969890307,
          -2.3745420600585905,
          -2.09671105393827,
          -3.747800090864369,
          -2.2308929853043895,
          -2.5246019076142345,
          -2.1637298142593724,
          -2.649443040175375,
          -3.7444494574467986,
          -2.598404238298366,
          -2.1039573855243545,
          -2.8481121075964095,
          -2.9841521129041246,
          -2.836208994571047,
          -2.7858473143474205,
          -1.6815593851971848,
          -2.6339010916591,
          -2.5131541577360896,
          -2.8096270418940494,
          -2.707499207149024,
          -2.614338797449572,
          -2.789727567230209,
          -1.1591758179606904,
          -3.0539998606930654,
          -2.502022277744067,
          -2.6687481953707617,
          -2.900609852978509,
          -2.626887596279581,
          -2.3307760174955603,
          -2.6822203114510064,
          -2.271403826616148,
          -2.7468137707747053,
          -2.291803437457964,
          -2.370033892087685,
          -1.743946161887734,
          -3.8303319934519617,
          -3.1840522923918644,
          -3.0858611737884503,
          -7,
          -7,
          -1.9805621414192482,
          -2.5185139398778875,
          -2.2427707082765576,
          -2.31287786353935,
          -7,
          -2.361689298861358,
          -2.5986628615845535,
          -2.711479158948072,
          -3.3952681336981585,
          -2.3433913163594253,
          -2.5820092216061594,
          -2.9828055470486436,
          -2.7015679850559273,
          -1.7975996627959798,
          -1.8596286553271737,
          -2.067124016518159,
          -2.634544441219856,
          -7,
          -3.2702905531667605,
          -2.8669709739278395,
          -1.9118231942831303,
          -2.718709237010724,
          -2.7548395882408863,
          -2.175290653648693,
          -2.655438589970129,
          -2.1224851942745757,
          -2.2095477063625797,
          -2.1902865038852304,
          -2.555039457190857,
          -2.526051950563682,
          -3.0621430812277928,
          -2.843777640858486,
          -2.7482336437786707,
          -2.510768355278083,
          -3.3006824210300603,
          -7,
          -2.760924848409133,
          -7,
          -1.4827285394930332,
          -3.494432898726399,
          -2.59659709562646,
          -3.2728468287897403,
          -3.448242412634439,
          -3.4572004127937683,
          -3.151676230847048,
          -2.7611005389581424,
          -2.5666085378764327,
          -2.0280933459471977,
          -3.5533367823768884,
          -3.079398339019855,
          -2.882382216314445,
          -3.2863816107479344,
          -3.774224904868919,
          -3.4927603890268375,
          -1.946393600352454,
          -2.5998830720736876,
          -1.9846251384330458,
          -1.9667343903374412,
          -1.819094122470168,
          -1.9716615699299038,
          -2.5831278976760292,
          -3.749890841271422,
          -2.8526324579115143,
          -3.003245054813147,
          -3.444591225642957,
          -2.141335623717553,
          -3.491991664182002,
          -3.313234291694724,
          -1.7442929831226763,
          -1.9351788082734205,
          -1.7276816577351548,
          -3.28004693749461,
          -7,
          -2.2413804341476116,
          -7,
          -1.8839152129132857,
          -2.9856830355921042,
          -3.801403710017355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.505838874143429,
          -7,
          -7,
          -7,
          -7,
          -3.7363699391106717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.436520434633616,
          -7,
          -7,
          -2.669967369908504,
          -4.367822816121378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2641564367458855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.647089428716555,
          -7,
          -7,
          -7,
          -7,
          -2.7798368978412693,
          -3.8294860310311734,
          -7,
          -3.6063813651106047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5743785644130823,
          -3.6732820814542,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.638289535414257,
          -7,
          -7,
          -5.125611371897464,
          -7,
          -3.3664229572259727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.276270274078892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.26528962586083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3348556896172914,
          -4.3792148413786265,
          -7,
          -7,
          -7,
          -7,
          -2.703004620444392,
          -1.592980333476044,
          -2.0709609158009337,
          -7,
          -3.5515719736742537,
          -7,
          -7,
          -7,
          -4.4538532325881866,
          -7,
          -7,
          -7,
          -4.994202733783717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6987310766598367,
          -7,
          -7,
          -7,
          -4.369030221809153,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7302976620971497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8612632080683564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9258275746247424,
          -7,
          -7,
          -7,
          -7,
          -3.9917729345886532,
          -7,
          -3.381295623003826,
          -7,
          -7,
          -3.080987046910887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.231032454528749,
          -7,
          -2.6459510217186626,
          -7,
          -7,
          -7,
          -2.968015713993642,
          -3.7467898321526123,
          -7,
          -7,
          -7,
          -4.357382103296111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1334111559110225,
          -4.867909218171997,
          -7,
          -7,
          -7,
          -2.8379039445929424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7385774307676627,
          -7,
          -7,
          -7,
          -7,
          -3.035029282202368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3163059023458565,
          -7,
          -3.580265878156548,
          -7,
          -3.933217246191068,
          -7,
          -7,
          -7,
          -2.8468229248922086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3993339455805467,
          -7,
          -7,
          -4.286950215787549,
          -7,
          -7,
          -7,
          -3.28668096935493,
          -3.9578944872128985,
          -7,
          -7,
          -7,
          -7,
          -3.370142847051102,
          -4.925340458977568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.702775077901044,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.0971762986377085,
          -7,
          -7,
          -4.319838638494149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.786964259435733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2026789942277265,
          -7,
          -7,
          -3.554026370894214,
          -4.471122948998581,
          -4.271353622102485,
          -3.6277753752293034,
          -4.71295259213018,
          -4.072654217333034,
          -3.4025479509123913,
          -7,
          -3.9773520102903825,
          -3.978317496746751,
          -7,
          -7,
          -4.719124035974351,
          -4.219693653657075,
          -3.2387302111440825,
          -7,
          -4.372856792535229,
          -3.692126038140325,
          -4.0326590460399245,
          -4.312959735882106,
          -7,
          -7,
          -7,
          -3.8333128902027824,
          -3.8047526021504607,
          -7,
          -4.658497915660603,
          -7,
          -7,
          -3.6603764938868153,
          -7,
          -4.677488326683328,
          -7,
          -4.193597610298094,
          -3.292477593667784,
          -7,
          -7,
          -4.4531194977640025,
          -3.884228769632604,
          -4.313297626086869,
          -3.083860800866573,
          -7,
          -4.024735619217597,
          -3.887561040930009,
          -7,
          -4.329214765805725,
          -7,
          -4.758427391461484,
          -3.993920958801287,
          -3.4974825373673704,
          -2.96375635559063,
          -4.661822147187612,
          -4.379767672984586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3735556066389325,
          -3.3680078052211746,
          -3.0870712059065353,
          -4.088601155118618,
          -4.4465767030731165,
          -7,
          -7,
          -7,
          -7,
          -4.353574851673284,
          -7,
          -7,
          -3.378579576115775,
          -7,
          -7,
          -4.322488060518078,
          -4.432760907742915,
          -4.481929682430211,
          -2.8271537957574657,
          -7,
          -7,
          -4.053248614045589,
          -7,
          -7,
          -4.466600736296882,
          -4.177916281379359,
          -7,
          -4.745537349984803,
          -7,
          -7,
          -4.608322744745895,
          -3.8188634466898144,
          -7,
          -7,
          -7,
          -2.4712917110589387,
          -7,
          -2.900160378015098,
          -7,
          -3.2811470420244278,
          -2.3566631199368167,
          -2.6830470382388496,
          -3.0199664335597736,
          -2.4338586921311918,
          -7,
          -7,
          -2.970036776622557,
          -7,
          -2.466108443220432,
          -3.1394592753662236,
          -2.036540182363813,
          -2.154525408238757,
          -2.870956339503118,
          -1.8369567370595505,
          -2.665299499499897,
          -2.0467434035423264,
          -2.9740509027928774,
          -2.778078861937455,
          -2.383815365980431,
          -1.72222246396973,
          -2.562768543016519,
          -7,
          -2.3384564936046046,
          -2.7562979384939723,
          -2.144574207609616,
          -7,
          -3.751499055612203,
          -3.242891220100266,
          -3.031422639278778,
          -7,
          -2.328065806834115,
          -3.938219417812743,
          -1.4464007609116358,
          -3.4679039465228003,
          -7,
          -7,
          -3.347988277492058,
          -7,
          -2.3450468246483553,
          -2.6864575104691117,
          -7,
          -2.032508873155982,
          -2.4871383754771865,
          -2.1986570869544226,
          -7,
          -2.1557696815169702,
          -3.278753600952829,
          -2.9069632186628955,
          -2.675167089663394,
          -2.734799829588847,
          -3.5444401373176926,
          -3.518777068926775,
          -7,
          -3.032060581504032,
          -2.3607826898732798,
          -2.824776462475546,
          -2.7823072101548014,
          -3.3332456989619628,
          -3.0962849601241924,
          -7,
          -2.4173055832445254,
          -2.91301868374796,
          -2.99563519459755,
          -3.3724824033627847,
          -7,
          -1.9805621414192482,
          -7,
          -7,
          -7,
          -2.2206890840891176,
          -7,
          -7,
          -3.308178066726313,
          -3.017450729510536,
          -3.3675422735205767,
          -3.191644449765504,
          -2.5622928644564746,
          -3.260230441084052,
          -2.8555191556678,
          -2.7095526127800826,
          -2.1264370197877,
          -1.8695250628572273,
          -1.8224949852787509,
          -7,
          -7,
          -3.5818927949386175,
          -2.379758615842701,
          -2.591064607026499,
          -2.6766936096248664,
          -2.9725370989719093,
          -2.4244732731953342,
          -2.426390757900455,
          -3.3703280077795106,
          -2.3167326001184234,
          -3.4490153163477864,
          -2.499228724283611,
          -3.256717745977487,
          -7,
          -7,
          -3.668012971641832,
          -2.988112840268352,
          -7,
          -7,
          -7,
          -2.694885864251942,
          -7,
          -2.437750562820388,
          -7,
          -2.6893088591236203,
          -2.782472624166286,
          -7,
          -2.1152775913959014,
          -2.802294711397464,
          -1.9470723905090646,
          -3.3066394410242617,
          -7,
          -2.0859146287065933,
          -7,
          -7,
          -7,
          -2.0573807905423553,
          -7,
          -7,
          -3.5066403055665023,
          -2.7211358372887746,
          -2.9568404901592333,
          -3.0128372247051725,
          -7,
          -3.059184617631371,
          -7,
          -2.645422269349092,
          -3.384477484490442,
          -7,
          -7,
          -2.926213785839081,
          -2.253176407377487,
          -2.2925968281271185,
          -7,
          -7,
          -7,
          -7,
          -2.4775071227876087,
          -7,
          -7,
          -7,
          -3.329397879361043,
          -7,
          -7,
          -7,
          -3.3083509485867255,
          -2.716559774821619,
          -3.15060295179301,
          -3.3098430047160705,
          -7,
          -3.536125759194601,
          -7,
          -7,
          -7,
          -3.056218581272306,
          -3.133489777256199,
          -3.131779009369187,
          -7,
          -7,
          -7,
          -7,
          -3.0864534992789943,
          -3.181128699747295,
          -7,
          -3.781324455666988,
          -3.340154094072924,
          -7,
          -3.334252642334231,
          -7,
          -7,
          -7,
          -7,
          -3.66985708763779,
          -7,
          -7,
          -7,
          -3.351216345339342,
          -3.055250878848215,
          -3.320146286111054,
          -3.3479151865016914,
          -7,
          -7,
          -7,
          -3.6684635732806234,
          -7,
          -7,
          -2.9485352161613654,
          -2.8270460170047342,
          -2.047236679256487,
          -7,
          -7,
          -7,
          -2.9590413923210934,
          -3.499687082618404,
          -2.8734104429078826,
          -3.1444704211395553,
          -2.4530865803521715,
          -7,
          -7,
          -3.3895204658463776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.776701183988411,
          -2.4495641011080975,
          -3.3923158260022936,
          -7,
          -7,
          -2.1412257370365086,
          -7,
          -3.1337943006045124,
          -2.754271868683459,
          -7,
          -7,
          -3.95379511660877,
          -7,
          -3.2638726768652235,
          -7,
          -7,
          -1.882764132185854,
          -3.238547887681328,
          -3.33665982345442,
          -7,
          -2.7750380149595006,
          -3.3820170425748683,
          -3.353916230920363,
          -2.9909600996821992,
          -3.208306962353663,
          -7,
          -3.0236537634194707,
          -3.2092468487533736,
          -2.6412169684899625,
          -7,
          -7,
          -3.608312042697327,
          -3.5039268041935103,
          -2.978864984347657,
          -2.873320601815399,
          -7,
          -2.986071597919377,
          -7,
          -7,
          -7,
          -3.188406132930918,
          -7,
          -3.2779528470388093,
          -3.159717546180216,
          -2.287261034195944,
          -2.799616204481499,
          -7,
          -7,
          -3.433449793761596,
          -7,
          -3.409070437559028,
          -7,
          -7,
          -3.552303109338354,
          -7,
          -3.2779910116754087,
          -7,
          -3.610234175334389,
          -3.618757636846373,
          -7,
          -3.6195107208384987,
          -7,
          -4.301095134950942,
          -7,
          -3.6226284261293253,
          -7,
          -3.292477593667784,
          -7,
          -1.763133428232782,
          -2.639486489268586,
          -7,
          -7,
          -3.216799061647665,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.877551304634999,
          -2.652375288296997,
          -2.9901445333695924,
          -3.192428055331207,
          -7,
          -3.953131225183445,
          -7,
          -7,
          -3.4449811120879446,
          -4.106666761969916,
          -3.306532247519607,
          -7,
          -3.3273589343863303,
          -3.386320573894046,
          -3.236309282228153,
          -7,
          -7,
          -7,
          -3.1609184995397808,
          -3.295567099962479,
          -3.16345955176999,
          -2.789298611159441,
          -3.2899232395240046,
          -3.2764618041732443,
          -3.5121505369220305,
          -2.9092155396260058,
          -2.8887409606828927,
          -3.358315640082196,
          -3.648134265580902,
          -7,
          -7,
          -7,
          -3.091315159697223,
          -3.0299921753778474,
          -7,
          -7,
          -3.6891756195208254,
          -7,
          -3.407900540142635,
          -7,
          -3.2208922492195193,
          -3.2384043062825043,
          -7,
          -3.312388949370592,
          -2.718750734739665,
          -7,
          -3.575303333422399,
          -3.1791207296092994,
          -2.8125122842899826,
          -7,
          -3.0033168924581544,
          -3.7539658658651605,
          -7,
          -7,
          -7,
          -3.4122084658816805,
          -2.623766000133931,
          -3.8917604014566716,
          -7,
          -2.6159171891478232,
          -3.2626883443016963,
          -3.250420002308894,
          -7,
          -2.576916955965207,
          -7,
          -3.056142262059052,
          -2.476302246967727,
          -2.557988148224913,
          -7,
          -2.8820689444361483,
          -7,
          -2.725350033521565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.347720217034038,
          -7,
          -3.063520999689991,
          -3.6793824659429104,
          -2.8715729355458786,
          -3.475293376659103,
          -3.627587447405682,
          -7,
          -3.036628895362161,
          -3.3619166186686433,
          -7,
          -3.2678754193188975,
          -2.992995098431342,
          -3.5482665451707454,
          -7,
          -3.1854004831904525,
          -7,
          -7,
          -7,
          -3.3184807251745174,
          -3.2571984261393445,
          -7,
          -2.7183632683141012,
          -3.2007528138238346,
          -3.2591158441850663,
          -3.2688119037397803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3872118003137306,
          -2.88923164935963,
          -3.514282047860378,
          -3.269688027663909,
          -3.2975416678181597,
          -7,
          -7,
          -7,
          -1.672446796026297,
          -7,
          -2.869097204551567,
          -2.9131071077494677,
          -3.7225434350906466,
          -3.106870544478654,
          -7,
          -7,
          -3.4474681309497557,
          -3.0598788326016764,
          -2.5286264657570126,
          -3.216759516219574,
          -3.919444210465237,
          -2.4702634469650784,
          -3.3823773034681137,
          -7,
          -7,
          -3.152390279480791,
          -2.655031662965263,
          -7,
          -3.0236639181977933,
          -2.9769610160114275,
          -7,
          -3.490239485246287,
          -7,
          -3.252610340567373,
          -3.295347148333618,
          -3.1411360901207392,
          -3.615107987443194,
          -3.4766867429456445,
          -3.545062759071212,
          -2.707238888404291,
          -7,
          -2.7833359701684657,
          -3.28668096935493,
          -7,
          -2.942008053022313,
          -3.516403148447403,
          -3.7169627421024516,
          -2.962179852908768,
          -3.2727695865517594,
          -2.8217754671834636,
          -2.8965262174895554,
          -3.089905111439398,
          -4.1858002648308315,
          -2.7676010680503356,
          -7,
          -7,
          -7,
          -3.5490032620257876,
          -2.7876178846259387,
          -3.3406423775607053,
          -7,
          -2.9953060589380653,
          -7,
          -3.54282542695918,
          -3.040404528914159,
          -3.3283116334124774,
          -3.383456296524753,
          -7,
          -2.840106094456758,
          -3.383456296524753,
          -4.263274992597102,
          -3.5080244315589613,
          -4.018698765367438,
          -7,
          -3.1807564923035585,
          -3.505639106593364,
          -3.1670217957902564,
          -7,
          -2.9334872878487053,
          -7,
          -2.984347257585864,
          -3.0276407874584117,
          -3.5218569521701695,
          -3.2421685899736654,
          -7,
          -7,
          -2.9863237770507656,
          -7,
          -7,
          -2.7876375568784235,
          -3.4625477288026643,
          -2.732393759822968,
          -3.0023755306572752,
          -7,
          -7,
          -7,
          -4.480911977846637,
          -7,
          -7,
          -7,
          -3.7956541254765086,
          -7,
          -3.760497875226527,
          -3.6327046829529652,
          -7,
          -7,
          -7,
          -4.73016834043107,
          -4.702697579901669,
          -4.596718021556566,
          -7,
          -4.0840308334294795,
          -4.3275939007678375,
          -7,
          -4.340563083333371,
          -7,
          -4.691424546532714,
          -7,
          -4.248194037940857,
          -4.149496233465742,
          -7,
          -7,
          -7,
          -7,
          -3.742696572451403,
          -7,
          -4.212471712342394,
          -3.7487305560984945,
          -4.229579462665645,
          -7,
          -3.8288853618404413,
          -7,
          -7,
          -7,
          -3.165387610350267,
          -2.561442140419698,
          -4.080761731999528,
          -3.3718728705973113,
          -3.2581581933407944,
          -7,
          -3.878636673026517,
          -3.2586372827240764,
          -3.475237729405027,
          -2.747100931364986,
          -2.4737302041688842,
          -3.462203270516635,
          -3.521786984796864,
          -3.135944978136096,
          -3.475525915039281,
          -2.8892714106403634,
          -3.1248301494138593,
          -3.2935835134961167,
          -3.8807564445102103,
          -3.9204711793184543,
          -3.302042169044836,
          -7,
          -3.4533183400470375,
          -3.352794959068467,
          -4.327356379705393,
          -3.3207692283386865,
          -3.017450729510536,
          -7,
          -3.042248063558637,
          -3.8683504996479683,
          -4.629557397189861,
          -3.278753600952829,
          -3.951361807517263,
          -7,
          -2.9684051110267253,
          -3.307343198044698,
          -3.449807869542202,
          -2.952550293898202,
          -2.9057713571186508,
          -3.190499779633489,
          -3.197642657119169,
          -3.2048657855557696,
          -7,
          -2.9079045970364654,
          -3.213840180147667,
          -3.2209792909037276,
          -3.4926246022881955,
          -7,
          -2.9440712135860867,
          -3.719289844693328,
          -3.8475315308233258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.381491717770132,
          -1.469695084958144,
          -1.8303389761662683,
          -7,
          -3.2149762347220667,
          -2.4851795276536532,
          -3.103233406386929,
          -2.321701969500738,
          -2.1617956679336436,
          -2.0719454589070714,
          -3.2830749747354715,
          -2.208055890576209,
          -1.4472427799973624,
          -2.0402631800172553,
          -7,
          -7,
          -2.4231197904747805,
          -2.376284896196881,
          -7,
          -7,
          -2.8661691476337707,
          -7,
          -2.269512944217916,
          -2.8029104894190398,
          -1.54669807392241,
          -7,
          -2.4099331233312946,
          -2.9802306913910317,
          -2.8239087409443187,
          -4.009185223506869,
          -2.842813720315582,
          -3.4354981435439496,
          -7,
          -3.3157604906657347,
          -1.5033581233797837,
          -7,
          -1.2698720136735946,
          -7,
          -1.4516779142260183,
          -1.5863065297899643,
          -7,
          -7,
          -3.5781806096277777,
          -1.268798910830716,
          -3.7907776013376937,
          -3.055378331375,
          -2.53585649562398,
          -1.4670743944328781,
          -3.373463721632369,
          -1.2659149386601007,
          -2.349654097721151,
          -3.1167354288396383,
          -7,
          -1.2708026832045765,
          -1.2954129399365204,
          -7,
          -3.18613667169178,
          -7,
          -7,
          -7,
          -1.5145871999087717,
          -2.112152582492313,
          -1.5863729441136503,
          -3.024485667699167,
          -3.4753805931433615,
          -7,
          -3.925621454790829,
          -2.353723937588949,
          -2.5185139398778875,
          -7,
          -7,
          -1.6566918418331302,
          -7,
          -3.2600713879850747,
          -1.313578498288837,
          -2.3306524622707823,
          -2.001044267268093,
          -3.5658478186735176,
          -1.9225112682144678,
          -1.7011887621408714,
          -2.6555865901357856,
          -2.442009159140952,
          -1.8578471069651707,
          -3.4743619760326307,
          -2.677910974071308,
          -7,
          -3.2776092143040914,
          -3.2591158441850663,
          -7,
          -7,
          -1.7751396102537014,
          -3.1466447454142683,
          -2.774417984050812,
          -3.5427009694481106,
          -3.158609180248377,
          -2.8807302492686424,
          -3.2973227142053023,
          -1.294075663213465,
          -7,
          -1.3553377591547957,
          -7,
          -1.326352314905222,
          -1.5256197523772965,
          -7,
          -2.9642596301968487,
          -1.8655833439845002,
          -2.5761767511960896,
          -1.9449064485366196,
          -1.87614564468392,
          -7,
          -7,
          -3.2643455070500926,
          -3.291146761731886,
          -2.5779511277297553,
          -2.8249931222365388,
          -3.2846562827885157,
          -3.4867137759824858,
          -3.5282737771670436,
          -2.6483600109809315,
          -7,
          -7,
          -7,
          -2.910268571619067,
          -3.0557604646877348,
          -2.3229081045244717,
          -2.151705398682238,
          -2.547805461698299,
          -2.5513889972730204,
          -7,
          -2.898542359241223,
          -2.9642596301968487,
          -3.0778219507849,
          -3.05595140532915,
          -7,
          -2.775153508489039,
          -2.538896749427476,
          -2.901821443893775,
          -2.238696453314147,
          -2.762571396673986,
          -2.4144162029529017,
          -3.2884728005997825,
          -3.300812794118117,
          -2.603264692466333,
          -2.9738203243526837,
          -2.5912872650584995,
          -2.433842537445903,
          -7,
          -3.250907699700856,
          -3.8013350956745464,
          -7,
          -3.7806053058389697,
          -7,
          -3.0154994673235294,
          -3.086241154766945,
          -3.067876424980735,
          -7,
          -3.5128844243846222,
          -2.6967220860533225,
          -3.430478187932044,
          -7,
          -7,
          -2.8356905714924254,
          -2.439632448459834,
          -3.060383020128225,
          -7,
          -7,
          -3.4899584794248346,
          -3.7844033017530085,
          -2.4809167613786745,
          -3.521889599753865,
          -7,
          -2.930099638207734,
          -2.702762185550534,
          -7,
          -3.8029788553352617,
          -7,
          -2.805047523584979,
          -3.2415464805965484,
          -7,
          -3.365988720422906,
          -2.9846558789107185,
          -7,
          -7,
          -3.507653513464988,
          -3.278696453182248,
          -3.798236176367936,
          -2.1245653543272263,
          -3.0832158621559973,
          -3.419184452746418,
          -3.805636766305935,
          -3.027452297858026,
          -7,
          -3.3345877719765284,
          -2.7741799549910717,
          -3.360593413565249,
          -1.767133369022842,
          -7,
          -3.8298181874388773,
          -7,
          -2.233630580164463,
          -7,
          -2.17589311462405,
          -2.6663099352901103,
          -1.9312165724204984,
          -2.9926639550817846,
          -3.809425028797034,
          -3.345177616542704,
          -2.6901439407065344,
          -3.5241363765925686,
          -7,
          -7,
          -3.7896512087934098,
          -2.9731278535996988,
          -2.0106048316835032,
          -2.513837983934262,
          -3.792181496149679,
          -7,
          -1.8773164864644205,
          -7,
          -2.864431967389915,
          -2.88024177589548,
          -7,
          -3.316075234838397,
          -2.9354478045109147,
          -7,
          -2.718224803628757,
          -7,
          -7,
          -0.8657929080680717,
          -2.6784045552989557,
          -2.899752125747131,
          -7,
          -2.375428443512786,
          -3.5186455243303114,
          -2.8978269506965932,
          -3.1133224880382615,
          -2.966904013129798,
          -7,
          -2.363953901817385,
          -2.6764047859729647,
          -2.150619399537976,
          -3.7863964613723042,
          -7,
          -3.6154239528859438,
          -2.7529934654248027,
          -2.6978829086948046,
          -2.827415432854252,
          -3.317854489331469,
          -2.514126978289329,
          -7,
          -3.78161178249315,
          -7,
          -1.8030872037155392,
          -3.4832305869021027,
          -2.7872424278303134,
          -2.8492350913147226,
          -1.8934956267411402,
          -2.2367816506792306,
          -7,
          -7,
          -3.139816140610576,
          -3.546851001781394,
          -2.840412485349145,
          -3.8283376000590046,
          -7,
          -2.8889092592635315,
          -2.7023347819567896,
          -2.8801097112808387,
          -3.5282737771670436,
          -2.84825283857935,
          -2.9191966786934156,
          -7,
          -3.398495550138137,
          -7,
          -3.5405755469905653,
          -7,
          -2.6666219658257964,
          -3.2054750367408906,
          -7,
          -3.8191489428071344,
          -1.2009914311738055,
          -2.532703432370127,
          -7,
          -7,
          -3.230463948609012,
          -7,
          -7,
          -7,
          -3.4886916983169405,
          -7,
          -2.6538286674168488,
          -2.6762959040275653,
          -2.539758208062269,
          -2.9033404692531812,
          -3.82020145948564,
          -3.5173608721141245,
          -7,
          -3.4959603948817053,
          -3.2414219517119953,
          -7,
          -2.8583956413487304,
          -7,
          -7,
          -3.821382499747299,
          -2.80591061065459,
          -7,
          -3.7777891874348675,
          -3.8756399370041685,
          -2.3152910364949637,
          -3.7902147702439795,
          -2.7041505168397992,
          -3.862131379313037,
          -3.4308809464528913,
          -2.821404340602337,
          -3.570776368794748,
          -2.6543093434941327,
          -3.5619357633137816,
          -2.855990008555759,
          -2.97994313447669,
          -3.503994848765824,
          -7,
          -7,
          -3.8237349883987313,
          -3.1025023091854522,
          -7,
          -3.7831886910752575,
          -2.681147629339466,
          -7,
          -3.4888678612536452,
          -7,
          -2.2828971210332805,
          -2.2956666962796732,
          -7,
          -2.734968177098234,
          -1.9887466584404367,
          -3.1517987225928614,
          -3.0548865225351345,
          -3.2559355042329616,
          -2.7916321778679727,
          -3.841984804590114,
          -2.9033914757106833,
          -2.691567700438057,
          -3.3317646126401494,
          -3.4072634020530512,
          -7,
          -2.5065350967489293,
          -2.6469224244915,
          -2.8160518172305298,
          -7,
          -2.696556075836984,
          -7,
          -3.0989896394011773,
          -3.813580988568192,
          -2.857935264719429,
          -3.500167838795168,
          -7,
          -2.8691143269793753,
          -3.4161965568964496,
          -7,
          -2.1907709896295726,
          -4.452001227726593,
          -2.8246737964299387,
          -7,
          -3.7801011914679115,
          -3.8016780590358934,
          -3.1831274287013995,
          -7,
          -3.330210784571528,
          -7,
          -3.3362595520141936,
          -3.183712614093036,
          -2.306844433166965,
          -3.1352008241234657,
          -3.2414865112767166,
          -7,
          -3.104760166638525,
          -2.606448546560488,
          -3.36285930295868,
          -7,
          -3.7898626300463816,
          -7,
          -2.630308201703268,
          -3.5598468007393165,
          -7,
          -7,
          -3.7900035203904894,
          -3.7976829349148993,
          -7,
          -7,
          -3.263340126851339,
          -3.0392694469066375,
          -7,
          -7,
          -7,
          -7,
          -3.520155886944864,
          -3.8169038393756605,
          -7,
          -3.344326764297868,
          -3.5400373437681525,
          -2.792391689498254,
          -2.684134415450565,
          -2.525260820213098,
          -3.8677031332700977,
          -7,
          -7,
          -1.202763479095864,
          -3.883320678382975,
          -2.1911946670584164,
          -3.3457003905834424,
          -3.5515338599475053,
          -3.130076332517164,
          -3.1952768094473876,
          -3.800717078282385,
          -2.844138148029867,
          -2.6280350619091335,
          -1.7772683830244533,
          -2.6331047079116674,
          -2.9499125186171895,
          -1.6173816356861317,
          -2.141749896293137,
          -3.311895072073712,
          -2.6989700043360187,
          -2.2794284147221058,
          -2.382917135087531,
          -7,
          -7,
          -2.943803556324682,
          -7,
          -3.0837414400078025,
          -7,
          -2.9867717342662448,
          -3.00142462840203,
          -3.8428587624452937,
          -3.442584279829459,
          -3.254366781142282,
          -2.975376286330473,
          -2.0365035188081575,
          -3.792251571903264,
          -3.140420742400279,
          -3.78738962135211,
          -3.3484346775706944,
          -2.7187783976895714,
          -2.8727388274726686,
          -2.885093274841376,
          -2.6195405190807763,
          -3.4657545198338777,
          -3.3988077302032647,
          -2.9085824926714285,
          -2.552225622971311,
          -3.4643456035121996,
          -2.2520435349731076,
          -7,
          -7,
          -7,
          -3.0972958810760023,
          -2.4666879184866843,
          -7,
          -3.8167714123333463,
          -2.5668658433400444,
          -3.4972752863579952,
          -2.8845688149183335,
          -3.1060548400937864,
          -2.149510376031406,
          -3.8203328448994096,
          -3.35869609957381,
          -2.45430670073035,
          -3.120837060254737,
          -3.474266708363068,
          -2.4872404509036055,
          -3.351804931431722,
          -7,
          -2.359984200595567,
          -3.4969652121341888,
          -2.8572193841811426,
          -7,
          -3.0519239160461065,
          -3.31694832926197,
          -2.5551912165114072,
          -2.8103818884116567,
          -2.9204043061400116,
          -3.040093500592591,
          -3.7844033017530085,
          -7,
          -2.729596708656171,
          -3.196728722623287,
          -3.8173008783933216,
          -3.8230175234460493,
          -3.154293521704834,
          -3.3260626338156793,
          -2.2024436883925915,
          -7,
          -3.7811088357294667,
          -3.4764258270580113,
          -3.8567020439662394,
          -7,
          -3.9906495883188544,
          -3.9790093452191155,
          -3.2342641243787895,
          -7,
          -3.2332207210598045,
          -2.9057264347043352,
          -3.3992698070995253,
          -7,
          -7,
          -4.063783560597355,
          -3.94215692846749,
          -2.854007215310917,
          -3.827837567359185,
          -3.6805744785938734,
          -2.870247796549128,
          -4.212826586101233,
          -3.814480666721017,
          -7,
          -3.920537239907697,
          -3.9096629851540183,
          -3.5976513155803156,
          -3.262094964674063,
          -7,
          -4.708369903659491,
          -4.320354032817672,
          -7,
          -2.925673663220366,
          -4.300443302006029,
          -3.683783616260912,
          -3.580044747846509,
          -3.422138240878906,
          -3.0965624383741357,
          -3.94647682848594,
          -3.816373888752362,
          -3.6853321958295053,
          -3.7172334927773156,
          -2.663047513975216,
          -3.130205069581069,
          -3.4400718197081073,
          -2.08724344131914,
          -2.5071974505844183,
          -2.7988663582008604,
          -3.0863921912039465,
          -3.5922878159521305,
          -2.867950913934925,
          -2.6416440555197305,
          -3.0931714434486546,
          -3.5208894705351628,
          -2.8973275362164874,
          -2.6328979269485404,
          -7,
          -2.5194832735069945,
          -2.579068708419333,
          -7,
          -2.9916321136550907,
          -3.185765752903851,
          -3.4067955726682504,
          -7,
          -2.2375759475971955,
          -2.739829921144155,
          -3.918668585682132,
          -3.7984434603501875,
          -3.5418287667813124,
          -3.8042076050820413,
          -2.770561112325769,
          -3.762566037627078,
          -3.9095376435406557,
          -3.2427401446056274,
          -3.2295243251624277,
          -7,
          -3.1931900978616974,
          -3.0815606548059806,
          -3.0207886311085175,
          -3.379169496092038,
          -2.606838988475993,
          -3.0354297381845483,
          -2.840208966400272,
          -2.566196905821079,
          -2.917899189424106,
          -2.436959672719197,
          -3.0126467625667734,
          -3.1175553648789545,
          -3.49469198112742,
          -7,
          -2.9759370424831104,
          -2.7933183562093538,
          -3.1475389218886427,
          -3.49087108434559,
          -7,
          -7,
          -7,
          -7,
          -1.746521162964555,
          -1.3925294659911405,
          -1.1361883244479989,
          -7,
          -3.3963737275365067,
          -2.1309095650419336,
          -3.2038484637462346,
          -2.3073225398823136,
          -2.4923412532549745,
          -1.890301229948437,
          -3.485082288055845,
          -2.000863828451263,
          -0.9118308708506876,
          -2.3971374932322815,
          -7,
          -3.2771964957959563,
          -2.736737884043391,
          -2.3609546876901435,
          -7,
          -3.811909980420099,
          -1.8906329778663251,
          -7,
          -2.497061352238562,
          -2.307496037913213,
          -1.5777379287652658,
          -7,
          -2.2457067039669436,
          -7,
          -3.491081413423187,
          -3.8754953408710184,
          -2.0828023643522995,
          -2.8800206450425603,
          -7,
          -3.9208534961212593,
          -1.4432138730134176,
          -7,
          -1.353829848797285,
          -7,
          -1.7000386892774444,
          -1.2803158130038816,
          -7,
          -3.491991664182002,
          -3.9020028913507296,
          -1.5619728950307412,
          -3.0150662140111493,
          -2.6327946083041307,
          -2.6574741619879405,
          -1.680388070759728,
          -3.816705183666515,
          -1.3566800444024676,
          -1.2769941764972297,
          -3.1221544171577533,
          -7,
          -1.4685934593401977,
          -1.3974630822209442,
          -7,
          -2.4072790622610785,
          -7,
          -7,
          -4.128463891064761,
          -2.079927407371031,
          -1.6254145743535335,
          -1.3676237078845837,
          -2.3503403330293566,
          -2.813641631517659,
          -7,
          -4.101059354908116,
          -3.208441356438567,
          -2.2427707082765576,
          -7,
          -1.6566918418331302,
          -7,
          -2.4654448182719384,
          -2.933197951074577,
          -0.6597265191984446,
          -1.4238266369036738,
          -1.9919108308906996,
          -2.748630958693654,
          -1.9390025428825879,
          -2.4199041419919367,
          -2.5480127619342015,
          -2.498749013677326,
          -1.7624394624489559,
          -2.750079631382911,
          -3.149465450995452,
          -7,
          -3.4833733060890273,
          -3.7788744720027396,
          -3.609014760011556,
          -7,
          -1.8186790056099098,
          -2.969364133578134,
          -2.1252408467371016,
          -2.8051042162920505,
          -2.8863388474014275,
          -2.5952285980591694,
          -3.1026480556594813,
          -1.4447695028784557,
          -7,
          -1.77650584730532,
          -7,
          -1.5071439664174373,
          -1.7327912834039527,
          -4.017700971224117,
          -3.7808931086870787,
          -1.8460701601334177,
          -1.8950974022929163,
          -1.6253034758644873,
          -2.5200903281128424,
          -7,
          -7,
          -3.7804613328617176,
          -7,
          -3.784902449886655,
          -3.7926017811649664,
          -2.693800204297339,
          -7,
          -2.7637158918047717,
          -2.7273378880330803,
          -3.8150461760646306,
          -3.3164596126484933,
          -3.326199268859092,
          -3.822037248072585,
          -3.333514445555875,
          -1.9300848514495261,
          -2.7426647161300997,
          -2.2778717360486387,
          -3.0543448887676306,
          -4.0033743540197495,
          -3.3403780071480957,
          -3.7808931086870787,
          -2.503742058024168,
          -2.906940799413896,
          -3.7770641547424293,
          -2.5019205716318917,
          -2.917308535712038,
          -2.8636532477224708,
          -2.6060880880154507,
          -3.3144992279731516,
          -2.606327612467192,
          -3.0090966299483104,
          -3.1894201246920386,
          -2.5104332945836414,
          -3.08429022853693,
          -2.6396163943940087,
          -2.679609571779756,
          -7,
          -3.7764105888073423,
          -7,
          -7,
          -7,
          -7,
          -3.1370374547895126,
          -7,
          -7,
          -7,
          -7,
          -4.252399899119838,
          -7,
          -7,
          -7,
          -4.215848976111454,
          -3.5322701446090563,
          -7,
          -7,
          -7,
          -7,
          -3.089905111439398,
          -2.580209546390239,
          -7,
          -7,
          -3.730862992046494,
          -4.054186930134149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.092077028628151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.666567896592164,
          -7,
          -7,
          -3.461798557525109,
          -7,
          -3.00987563371216,
          -7,
          -7,
          -7,
          -7,
          -3.0960405542954277,
          -3.7983743766815614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3460594330525737,
          -3.762903528499057,
          -7,
          -7,
          -3.5141491344754376,
          -7,
          -7,
          -2.855778668362647,
          -7,
          -7,
          -4.650702451094931,
          -7,
          -7,
          -7,
          -7,
          -3.9172954009456893,
          -3.447623097760286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1500396976551133,
          -7,
          -7,
          -3.5599702588597113,
          -3.623042434246382,
          -3.7484206224675685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.00650882777529,
          -7,
          -3.495821753385906,
          -7,
          -3.7000110623221123,
          -4.391482044225046,
          -7,
          -7,
          -7,
          -7,
          -3.075094879174926,
          -7,
          -7,
          -7,
          -7,
          -3.7016543173257483,
          -7,
          -7,
          -3.555759293089335,
          -7,
          -7,
          -7,
          -4.997211582832505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2011238972073794,
          -7,
          -7,
          -7,
          -3.5362697788972914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058274146685951,
          -7,
          -7,
          -2.9000548550626433,
          -7,
          -3.9198100201701958,
          -7,
          -7,
          -7,
          -4.083538451230139,
          -7,
          -7,
          -7,
          -7,
          -4.550986177622661,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.991010555927018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9598043165083383,
          -7,
          -3.819785143258096,
          -7,
          -7,
          -3.7984664857978987,
          -7,
          -3.740362689494244,
          -3.66162340922923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3223571441183184,
          -7,
          -3.810434155922673,
          -7,
          -7,
          -7,
          -3.2081725266671217,
          -2.716420733846555,
          -2.6929937147769896,
          -7,
          -7,
          -3.5249521970606112,
          -3.5947239464097467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.455575688084891,
          -3.8939407273161857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.414427680794785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2668586105221804,
          -7,
          -3.831613855309099,
          -7,
          -7,
          -7,
          -7,
          -3.427080188436359,
          -3.445136968713304,
          -2.9742253132466328,
          -7,
          -3.3551098872819316,
          -7,
          -7,
          -7,
          -4.023293623036605,
          -3.794766797940821,
          -3.3919050068671566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.534026106056135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4649364291217326,
          -7,
          -7,
          -7,
          -7,
          -3.2043051569961905,
          -7,
          -7,
          -3.6029277128591892,
          -3.104487111312395,
          -7,
          -7,
          -3.4184670209466006,
          -3.688419822002711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.879378127844931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.184123354239671,
          -7,
          -7,
          -7,
          -7,
          -3.185825359612962,
          -7,
          -7,
          -3.300812794118117,
          -7,
          -7,
          -4.861426869337884,
          -4.098972350263975,
          -4.761772912039747,
          -7,
          -3.840482487213442,
          -3.9424132054969987,
          -3.524266268766979,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.035803164245306,
          -7,
          -7,
          -3.347492641973748,
          -3.7770423850498562,
          -4.287017501322102,
          -3.3916407034923877,
          -3.417338810319398,
          -4.0850764114720945,
          -2.517037463772293,
          -4.297475993324212,
          -3.105606683933109,
          -3.406242032884039,
          -2.627272730296267,
          -3.717129377876929,
          -3.5784345375094544,
          -3.4954532718481337,
          -2.6684532822414764,
          -3.8663661155186397,
          -4.203014745680014,
          -3.1127132523362575,
          -2.8541921384524613,
          -2.644048599831964,
          -7,
          -4.3478070778806455,
          -3.8131137540078983,
          -3.426798944023706,
          -2.353978137771715,
          -3.7422536699065936,
          -3.7617681419738305,
          -3.0006238500328752,
          -3.467608105583633,
          -3.247518382950562,
          -3.13746920199865,
          -3.604325072460819,
          -3.492540892167152,
          -3.170341737717802,
          -2.3780673876278455,
          -4.10809123558122,
          -3.9164013036038754,
          -3.9863088371831394,
          -2.319434821234563,
          -3.5799290297453163,
          -7,
          -4.676858153201195,
          -4.0686866818845795,
          -3.9245377177754897,
          -3.719497016610582,
          -3.7407770455884624,
          -7,
          -3.7186123935535487,
          -7,
          -7,
          -4.151369850247461,
          -4.66505539251443,
          -4.08487106917708,
          -3.3666097103924297,
          -4.448428035011636,
          -3.865991800126275,
          -7,
          -3.8411090844681537,
          -4.385981427736939,
          -3.029140179764322,
          -7,
          -4.149628133631338,
          -4.011762105452167,
          -4.861933617810139,
          -7,
          -7,
          -7,
          -3.657739280815576,
          -7,
          -5.406598082504823,
          -7,
          -7,
          -7,
          -7,
          -3.239033439221906,
          -4.310707470041913,
          -2.593286067020457,
          -3.6304787262026363,
          -7,
          -3.559509455037446,
          -4.196286748808876,
          -7,
          -4.1019629894917475,
          -3.728797638546838,
          -7,
          -4.348910116361356,
          -7,
          -2.965107585849056,
          -4.314551853781383,
          -3.708697027024642,
          -7,
          -7,
          -7,
          -2.503109436671369,
          -2.5629616387073972,
          -2.1639005948322336,
          -3.4753805931433615,
          -2.6704095833237176,
          -2.015746539892464,
          -1.9027505618227292,
          -2.731473644051034,
          -1.7674413044637363,
          -7,
          -7,
          -2.3035444126825313,
          -1.8573324964312685,
          -2.8515606482504188,
          -2.983896791326306,
          -2.042181594515766,
          -2.8526324579115143,
          -2.8468008542794783,
          -1.9193950956616108,
          -2.244936516611802,
          -2.3279262688653164,
          -1.4587090974027928,
          -2.4616811788749517,
          -2.37185916734684,
          -1.8228216453031048,
          -3.401572845676446,
          -3.3073890556533043,
          -7,
          -2.3652489456323726,
          -2.6183967876034884,
          -3.127428777851599,
          -2.85482636272822,
          -3.0206606640506393,
          -1.8620810642481713,
          -3.0622058088197126,
          -2.4973066943841817,
          -7,
          -2.4336555609385724,
          -3.2577985291530305,
          -7,
          -7,
          -2.4725441322844315,
          -3.0835026198302673,
          -1.9770700393537608,
          -1.7817553746524688,
          -3.361160995195026,
          -2.0259480753365513,
          -2.0233896558066746,
          -1.237036828856375,
          -3.307067950661298,
          -1.6313369446412391,
          -2.8095597146352675,
          -2.7365223057290464,
          -2.3844577343685702,
          -2.3078524552347384,
          -2.9223101632143957,
          -3.1231980750319988,
          -1.513655821726943,
          -2.123641887530551,
          -2.7286242862229995,
          -2.2826544758187164,
          -2.338813916630284,
          -3.151982395457474,
          -2.853366663945809,
          -3.2545480771089736,
          -1.731326577491958,
          -2.763240757310025,
          -1.5276573193177572,
          -3.190611797813605,
          -7,
          -2.31287786353935,
          -2.2206890840891176,
          -7,
          -2.4654448182719384,
          -7,
          -7,
          -2.9363880603822547,
          -2.9206951294678225,
          -2.7819347981137703,
          -2.5744653452070376,
          -2.904569910106494,
          -2.3792450689395857,
          -2.5563025007672873,
          -1.5237464668115646,
          -2.501173415058967,
          -1.8025625849883842,
          -1.9729269308656483,
          -2.10187590011488,
          -3.0906107078284064,
          -7,
          -2.501114799780252,
          -1.9896228285885555,
          -3.269512944217916,
          -1.497920176700931,
          -2.667377219263133,
          -2.2707564511001275,
          -2.358742193235699,
          -2.963157958515926,
          -1.8243033747578454,
          -3.2425414282983844,
          -2.912487761332324,
          -7,
          -3.0629578340845103,
          -3.7085908451503435,
          -2.948738890358178,
          -1.9151759061138112,
          -7,
          -3.096736260462469,
          -7,
          -1.8512933005908019,
          -7,
          -3.1795517911651876,
          -3.074084689028244,
          -2.1098409265242712,
          -1.2171077688054557,
          -2.0860037056183818,
          -1.5369677039323366,
          -2.0271299739606383,
          -2.3359135659099737,
          -2.8302678009336417,
          -7,
          -1.5899768306734643,
          -7,
          -7,
          -7,
          -7,
          -2.8963884118460372,
          -7,
          -3.830396176483469,
          -2.3941821837763624,
          -3.115194321434587,
          -3.2345172835126865,
          -7,
          -2.4668676203541096,
          -7,
          -7,
          -3.428620672671939,
          -7,
          -7,
          -2.9094490469812664,
          -1.9916169212103128,
          -3.513217600067939,
          -7,
          -7,
          -7,
          -7,
          -2.2355284469075487,
          -7,
          -7,
          -3.0488300865283504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.902832048060113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.031711354754593,
          -7,
          -7,
          -7,
          -4.872585108926733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.439963935920905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.20786585760749,
          -3.3951515915045425,
          -3.888010912245029,
          -7,
          -7,
          -7,
          -3.3914644118391033,
          -2.8976270912904414,
          -7,
          -7,
          -7,
          -7,
          -3.531223374533027,
          -7,
          -7,
          -2.334453751150931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.992995098431342,
          -7,
          -7,
          -7,
          -7,
          -2.669316880566112,
          -7,
          -3.3941013020400446,
          -7,
          -3.148294097434746,
          -7,
          -7,
          -7,
          -4.3265201921035406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6940198963087196,
          -7,
          -7,
          -7,
          -4.140539466972342,
          -7,
          -7,
          -7,
          -3.18089014193745,
          -7,
          -7,
          -7,
          -7,
          -3.89553303948407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.505963518018126,
          -7,
          -7,
          -3.6872910893851065,
          -4.752179100840631,
          -7,
          -7,
          -7,
          -4.992637452702946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.447778009294621,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2370282102444135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.372684981838931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4298060925892933,
          -7,
          -7,
          -7,
          -3.694956002249818,
          -3.7729756674752157,
          -7,
          -7,
          -3.072249897613515,
          -3.079904467666721,
          -3.313234291694724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9363126336621934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.121920785563038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2624510897304293,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.941083884430364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.095518042323151,
          -7,
          -7,
          -7,
          -3.609658428263034,
          -7,
          -4.530186886967461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.40840957846843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.912434633375575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1986570869544226,
          -3.639436681999548,
          -3.159115821827769,
          -7,
          -7,
          -7,
          -7,
          -5.226146688064462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4685688527234655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.495127881242933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021699123385047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.28592843841554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9334872878487053,
          -7,
          -4.06480977499933,
          -3.2646997921671455,
          -3.623352681537992,
          -7,
          -7,
          -5.234661518215525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.513039938178816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9996331075055283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.315088273088317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.482716409141232,
          -7,
          -4.339893461241669,
          -4.653366902145936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3176455432211585,
          -3.2893659515200318,
          -3.6972002725443778,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.493924858299271,
          -3.2768063456287626,
          -7,
          -7,
          -4.115677065115837,
          -7,
          -3.3312247810207323,
          -7,
          -7,
          -2.7515870050823104,
          -7,
          -7,
          -7,
          -2.877083256650651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5020662836896532,
          -4.785571833351669,
          -7,
          -7,
          -3.4427409988358755,
          -7,
          -7,
          -7,
          -2.507518555576424,
          -3.5435217306752924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7558748556724915,
          -7,
          -7,
          -7,
          -2.2818852037063175,
          -3.4936439050611052,
          -7,
          -7,
          -7,
          -3.1680553034591394,
          -7,
          -3.658361236616049,
          -7,
          -7,
          -7,
          -7,
          -3.583052120570069,
          -1.6163597886715864,
          -7,
          -2.2007137339640135,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2600713879850747,
          -2.933197951074577,
          -7,
          -7,
          -3.7695988483874463,
          -3.626996959365406,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7319914490189294,
          -4.018866863150907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.525161467496205,
          -3.251638220448212,
          -7,
          -7,
          -7,
          -3.390405156480081,
          -7,
          -3.161667412437736,
          -7,
          -3.132152917684925,
          -7,
          -7,
          -7,
          -2.8627275283179747,
          -2.975891136401793,
          -3.5440148621780065,
          -2.8830933585756897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.847572659142112,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.188225172705279,
          -7,
          -7,
          -7,
          -2.8627275283179747,
          -2.8407332346118066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.491081413423187,
          -7,
          -3.7710727832211948,
          -7,
          -3.182628608173459,
          -2.901942417287845,
          -2.9926166282706546,
          -3.484442207642407,
          -3.504062882678692,
          -2.825265766924533,
          -3.4251672627392926,
          -7,
          -7,
          -2.7801320724351024,
          -2.603244641473375,
          -2.9849771264154934,
          -3.808616035426992,
          -7,
          -3.781827152932428,
          -3.7749546890801384,
          -2.5886078047426864,
          -3.216297886630392,
          -7,
          -3.100930286261298,
          -2.7284228629426615,
          -7,
          -3.4927603890268375,
          -7,
          -2.7975560510930397,
          -2.931775592908094,
          -3.7989267385772014,
          -3.2338565584774353,
          -3.0432312493636555,
          -7,
          -7,
          -3.799891684656865,
          -3.3961993470957363,
          -3.186603221792895,
          -2.0419637496480063,
          -3.295860195625301,
          -2.985370331043443,
          -3.495474955889315,
          -2.992970913857653,
          -3.784617292632875,
          -3.5019488596712804,
          -2.8016323462331667,
          -2.8743529469323774,
          -1.7666773799436992,
          -7,
          -7,
          -7,
          -2.3371048535184054,
          -3.557567349330711,
          -2.1706181828672553,
          -2.7690078709437738,
          -1.9156636035057732,
          -2.98781517440207,
          -3.4993433592273684,
          -3.0350960505139617,
          -2.835056101720116,
          -3.2142476081039772,
          -3.821971817642043,
          -7,
          -7,
          -2.662420515562167,
          -2.0043213737826426,
          -2.4914265477852484,
          -3.481729196960016,
          -7,
          -1.8255715969364985,
          -7,
          -2.6543771120020185,
          -2.686725621074542,
          -7,
          -2.764015925386275,
          -3.0557479410565587,
          -3.778585327862962,
          -2.887561040930009,
          -3.766933093837284,
          -3.313375022247447,
          -1.0264431267973328,
          -2.796285169818761,
          -2.839408208267848,
          -7,
          -2.4820791907004085,
          -3.2086428696191542,
          -2.7861934963110553,
          -2.910333290266367,
          -3.5619357633137816,
          -7,
          -2.4050707803378453,
          -2.6700504449799825,
          -2.1838914979181148,
          -3.776991584856405,
          -7,
          -3.307228532834288,
          -2.817985819267376,
          -2.7489075617740846,
          -2.688232424165109,
          -3.786041210242554,
          -2.4501151701588846,
          -7,
          -3.772101569277012,
          -7,
          -1.842195051239908,
          -3.473778834646725,
          -2.7477446431168433,
          -3.2397998184470986,
          -1.8768041309026244,
          -2.2022517250991593,
          -7,
          -3.79049627696711,
          -3.0521807430683183,
          -3.3624824747511743,
          -2.6651704215534737,
          -7,
          -7,
          -2.7349140725151675,
          -2.5890749869470655,
          -2.909154709808426,
          -3.2184698571955574,
          -2.776166851774666,
          -3.0377199826622547,
          -3.805296916157985,
          -3.3939260065858368,
          -7,
          -3.4730404547971117,
          -3.2289774943120633,
          -2.7111215146502694,
          -3.1324883979895946,
          -3.7798849631926443,
          -3.2079707950778773,
          -1.2204912496352502,
          -2.525977214441068,
          -7,
          -7,
          -3.2036371649498285,
          -7,
          -7,
          -7,
          -3.7805333253164046,
          -7,
          -2.5727635687467134,
          -2.585218939867717,
          -2.568644429999217,
          -2.9326851104800995,
          -7,
          -3.6380230970734444,
          -7,
          -3.787956123283932,
          -3.2331865486683484,
          -4.226522575863549,
          -2.7829382019344346,
          -7,
          -3.490379920003179,
          -3.8127128667653687,
          -2.855800287422407,
          -7,
          -7,
          -7,
          -2.408114283215211,
          -3.7808931086870787,
          -3.3664229572259727,
          -3.0754861315749507,
          -3.4237918130180067,
          -2.570153612664517,
          -3.386855529184724,
          -2.4580499998837215,
          -2.7075093462803563,
          -2.7217419357655936,
          -2.988479111564272,
          -3.1936810295412816,
          -7,
          -7,
          -3.337725413884801,
          -3.491781775584166,
          -3.4872798164430687,
          -7,
          -2.6206722405382417,
          -3.7927417858347487,
          -3.243303861903959,
          -3.7735670489260587,
          -2.522566483889084,
          -2.309649141115875,
          -7,
          -2.8624721360836793,
          -1.8976748921249955,
          -7,
          -2.745855195173729,
          -3.0045670154644757,
          -2.1595671932336202,
          -2.8784579615212427,
          -2.73523028079199,
          -2.6247751793691476,
          -2.95431143960087,
          -2.9238482245059934,
          -7,
          -2.7419693368814078,
          -2.437221902399778,
          -2.8037269968989373,
          -7,
          -2.574031267727719,
          -7,
          -3.048092051812372,
          -3.8047526021504607,
          -2.8499719123288503,
          -3.013399054643686,
          -3.8021577531869615,
          -2.607732946282463,
          -2.7709086304391612,
          -7,
          -2.0632268998054837,
          -4.148926404279561,
          -2.6834626973695452,
          -7,
          -7,
          -7,
          -7,
          -3.783760695743924,
          -3.321253121961899,
          -7,
          -3.025988181951707,
          -2.987347001159854,
          -2.5674968911042226,
          -3.0477557503058947,
          -3.3535498845126734,
          -7,
          -2.9493202908598843,
          -2.6558241991760436,
          -7,
          -7,
          -7,
          -3.4032921451582543,
          -3.155336037465062,
          -3.5519376953648374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.301753217283077,
          -2.9027279240431674,
          -3.0089789965072575,
          -7,
          -7,
          -7,
          -7,
          -3.5114822886260013,
          -3.506978304246419,
          -7,
          -3.8130469651601078,
          -3.2332500095411003,
          -2.659262365784863,
          -2.9463010745913882,
          -2.442844232397271,
          -7,
          -7,
          -7,
          -1.1923525723728117,
          -3.5746677663162267,
          -2.282174309626252,
          -3.0356298277904386,
          -3.249259521320783,
          -3.8210547550468883,
          -7,
          -7,
          -2.6380326155436737,
          -2.8080917649591837,
          -1.8379315022237082,
          -2.703823426271219,
          -3.13756508756235,
          -1.7033555516661596,
          -2.1930566920949373,
          -3.7799570512469063,
          -2.8373990243420226,
          -2.4403842548328845,
          -2.2628823653189034,
          -7,
          -3.313375022247447,
          -2.9356332030394285,
          -3.7884512070234555,
          -2.8535156967569284,
          -7,
          -2.979377627903428,
          -2.997355174991824,
          -3.232169911523715,
          -7,
          -3.5476516583599693,
          -3.0276892984310293,
          -1.997006000905822,
          -7,
          -3.2796318509627507,
          -3.1755118133634475,
          -2.971342127941882,
          -2.5871963148858668,
          -2.9109207100667613,
          -2.9295992181746016,
          -2.4571751520997434,
          -3.159529596862398,
          -3.1690863574870227,
          -3.0407506394093176,
          -2.8092790719877616,
          -3.5241600544162317,
          -2.2415396580206215,
          -3.7707783961691477,
          -7,
          -7,
          -3.092213632973267,
          -2.5024271199844326,
          -3.796157876906914,
          -3.2055426785885324,
          -2.5801100111243995,
          -3.7892986111594413,
          -2.645826667299605,
          -3.194097885578952,
          -1.8844077740241894,
          -3.8116420214531512,
          -3.048894766621091,
          -2.4483880055226477,
          -2.9657391111262315,
          -3.54612746259304,
          -2.564081293595317,
          -3.3543247155352574,
          -7,
          -2.4098955692232766,
          -3.1889720317784556,
          -2.549998911569488,
          -7,
          -2.421143067071665,
          -3.78511619502192,
          -2.5488069263615474,
          -2.5975060579854494,
          -2.915115597777663,
          -2.8773713458697743,
          -3.473778834646725,
          -7,
          -2.8991088581933995,
          -3.312670913011013,
          -7,
          -3.035563141497501,
          -2.879184132798873,
          -3.794418330874141,
          -2.1102942919612793,
          -3.7675268994083817,
          -7,
          -3.6513458672100474,
          -4.5091285649614745,
          -7,
          -3.984797257089293,
          -4.1541347529656445,
          -3.3489336028856633,
          -7,
          -3.285244120563568,
          -3.0968191357320425,
          -3.5716797226239247,
          -7,
          -7,
          -3.807467375684278,
          -4.17573954495255,
          -3.2770608311398055,
          -4.427875436313166,
          -3.875854676687327,
          -3.4725468065517364,
          -3.908243677120895,
          -3.8122948820149047,
          -7,
          -3.93503619755571,
          -4.384514698685653,
          -3.897352134344313,
          -3.1796953833245065,
          -7,
          -4.4062079458419,
          -4.317624643080059,
          -7,
          -3.158503212876601,
          -4.297585445297346,
          -3.644906115230781,
          -3.821038361317505,
          -3.8456147497502875,
          -7,
          -3.943247125137862,
          -4.113107366520495,
          -3.5744557037528772,
          -4.015611204503513,
          -2.649053877131526,
          -3.1216911303075765,
          -3.4624811881074096,
          -2.20374132393189,
          -2.7551122663950713,
          -2.654351590039098,
          -2.9493086704742653,
          -3.283696889741305,
          -2.897671264567575,
          -2.625626794735946,
          -2.8898617212581885,
          -3.519171463821659,
          -2.862705131498745,
          -2.6961440038114928,
          -7,
          -2.5403827297856556,
          -2.6025302223541824,
          -3.7802452838653524,
          -2.9196756768967838,
          -3.030959348925247,
          -3.304188829614843,
          -7,
          -2.3465434795560767,
          -2.803128777106358,
          -3.8913989046384003,
          -3.488127496247458,
          -2.8082531845665653,
          -7,
          -2.7808594201090915,
          -3.456441952101687,
          -4.238434200651701,
          -3.0931464113450193,
          -3.4379882502194996,
          -7,
          -3.1203600214031,
          -2.877277570359336,
          -3.01307433535058,
          -3.1969127457115927,
          -2.5730317402855922,
          -2.9256803561548907,
          -2.735222746605809,
          -2.596971482238792,
          -3.034427905025403,
          -2.448115806419691,
          -3.01205216495471,
          -3.053222543849251,
          -3.336454015647858,
          -7,
          -3.125062803023057,
          -2.905758019331565,
          -3.0201367562556896,
          -7,
          -3.772834927239018,
          -7,
          -7,
          -7,
          -1.8283882350228342,
          -1.2451116571837162,
          -1.23227990455565,
          -7,
          -3.3886931254483055,
          -2.135437853436796,
          -3.5949447366950835,
          -2.4376918545429205,
          -2.250635230436816,
          -1.8602570494485853,
          -3.7768464086952993,
          -1.8720024944383251,
          -1.1743423508074868,
          -2.3558208239930427,
          -7,
          -3.4962144560637816,
          -2.834305076821983,
          -2.282037920728629,
          -7,
          -7,
          -2.0684564381754846,
          -7,
          -2.635282637998212,
          -2.2115209972402297,
          -1.3505172146992581,
          -7,
          -2.262255606244936,
          -7,
          -7,
          -3.807264355276107,
          -2.161235694155678,
          -3.152086572482463,
          -7,
          -3.612836816232258,
          -1.2548616304445581,
          -7,
          -1.1884851927829543,
          -7,
          -1.4764657157545893,
          -1.2543395413032599,
          -7,
          -3.7839035792727347,
          -3.4174716932032934,
          -1.2780707478531816,
          -3.3109905271345785,
          -3.500716623555479,
          -2.951580344903392,
          -1.4862558922341522,
          -3.807940721215499,
          -1.2457243123026969,
          -1.4237712239985465,
          -3.4208218220040685,
          -7,
          -1.171911616738176,
          -1.1738931510871389,
          -7,
          -2.5150651850861645,
          -7,
          -7,
          -3.8231154293976726,
          -1.8629103407362515,
          -1.6670636256725735,
          -1.3630906859285676,
          -2.537539266144841,
          -3.0694830939346116,
          -7,
          -4.09652766560644,
          -2.956099794444892,
          -2.361689298861358,
          -7,
          -1.313578498288837,
          -0.6597265191984446,
          -2.9363880603822547,
          -3.7695988483874463,
          -7,
          -1.5000305341838744,
          -1.8289772882134558,
          -2.933768402805704,
          -1.7778189334524992,
          -2.4269832351280023,
          -2.4313637641589874,
          -2.4524253858850975,
          -1.6571173838987634,
          -3.2225864233903896,
          -2.798148207810744,
          -7,
          -3.2976875755910435,
          -7,
          -4.452292561617729,
          -7,
          -1.758543655498327,
          -3.3152354096177272,
          -2.199531302573584,
          -2.9741661461216427,
          -2.9562121023022296,
          -2.5419233758836866,
          -3.0969968632197054,
          -1.1883086759638373,
          -7,
          -1.4057299595320005,
          -7,
          -1.3198078810877178,
          -1.4992287242836109,
          -3.711089840140532,
          -7,
          -1.7055765671716585,
          -1.7246115691474593,
          -1.6253274745535427,
          -2.2790896121741575,
          -7,
          -7,
          -3.1684238181031454,
          -3.7794521834040617,
          -3.7754648093457392,
          -7,
          -2.7684530982706304,
          -3.8530895298518657,
          -2.470704429722788,
          -3.0202231262979176,
          -7,
          -2.9386626557296673,
          -2.7517688440873256,
          -3.8133808067338557,
          -3.3246253644997976,
          -1.819373724102534,
          -2.505088284381042,
          -2.227093428556467,
          -3.049295568332722,
          -3.6965747917964733,
          -3.2065560440990297,
          -7,
          -2.6666164935374748,
          -2.800854491503561,
          -7,
          -2.408856423161136,
          -2.9667449661622203,
          -2.906200314184372,
          -2.712104758955936,
          -3.432595198514682,
          -2.2960066693136723,
          -2.9326186985953693,
          -3.0037476689675056,
          -2.48521019101124,
          -3.7743709598499167,
          -2.3812692068679397,
          -2.448520816457295,
          -3.82052984852352,
          -3.766784515497859,
          -3.675992076790947,
          -4.3264485170542,
          -4.025264892154508,
          -3.7824316703747614,
          -3.1373949534718495,
          -2.8990042527308097,
          -2.4822997524547086,
          -4.0273190225793565,
          -3.2338790396440125,
          -2.186162785636252,
          -2.991392228018147,
          -4.326335860928752,
          -3.327941009681113,
          -2.252289842346699,
          -2.0183876337299034,
          -2.5510162532011527,
          -4.331761240775492,
          -7,
          -4.151737481038518,
          -3.5137399148914126,
          -1.9576587855573357,
          -3.394793028193001,
          -4.626802137202601,
          -2.2435755711032357,
          -1.9160871107025628,
          -3.5554471443890283,
          -3.5890453605786625,
          -3.9282626755124257,
          -2.7674230420253365,
          -2.903532098852894,
          -4.029251845772462,
          -2.993164817641717,
          -3.157144358673168,
          -4.1514209286929065,
          -4.628726016090374,
          -3.786294990698501,
          -3.49680119804521,
          -3.1379663399603084,
          -2.4045032846576886,
          -3.782472624166286,
          -3.032323877412346,
          -3.0740236540366594,
          -2.596142567343199,
          -3.5151092854215533,
          -3.4855997583250473,
          -2.405737390282291,
          -3.459653790072658,
          -1.9738748705565081,
          -4.1535506516745295,
          -2.943575266054042,
          -3.6131496270446064,
          -2.4402024359984047,
          -2.9407554803427463,
          -1.5394602992448396,
          -2.623444347433249,
          -1.4321668029911794,
          -2.689969920318199,
          -3.786386315371722,
          -2.9514184759183264,
          -2.6150826222252115,
          -3.3326202195656403,
          -3.85658792817761,
          -4.032840283162028,
          -3.929633465282292,
          -2.639872555925874,
          -2.5202587512953705,
          -2.366950530833321,
          -3.1098852087458977,
          -4.026083620800987,
          -2.0836891886444,
          -4.025439001182824,
          -2.640150040936102,
          -2.7240591863401407,
          -3.7834952158370023,
          -2.7851542481914966,
          -1.9161042138199231,
          -4.151277893904123,
          -2.5128029425484315,
          -4.32576188531923,
          -3.374565060722765,
          -1.5025185305685673,
          -2.461782667055416,
          -2.7100153557906577,
          -3.6726929365789984,
          -2.968580225848978,
          -3.101039111382258,
          -2.749388431581154,
          -2.678173221476225,
          -2.8999895331008956,
          -7,
          -1.5619018309927175,
          -2.530892675383932,
          -1.6920185449540748,
          -3.4518375861611674,
          -7,
          -3.1575834883314,
          -2.467818013504448,
          -2.7161015891915814,
          -2.605686349075591,
          -3.515313299274702,
          -2.2278945392681075,
          -4.633741066536528,
          -4.025408281131747,
          -3.8491121661845775,
          -1.8549582075503341,
          -3.928876996969838,
          -2.547617198943898,
          -2.9045652859678013,
          -1.8130004972943008,
          -1.5179407613891247,
          -3.6322243912130614,
          -3.3745243201522004,
          -2.963214952322519,
          -3.491251605244094,
          -2.2600117280520315,
          -2.807100657788488,
          -3.928190948038757,
          -3.052910882091185,
          -2.830406713089672,
          -2.6257088170171308,
          -3.2540039620051373,
          -2.5566097483796093,
          -1.7160900952334388,
          -4.632315541250991,
          -3.512897756320646,
          -4.331720776357499,
          -2.965161456900238,
          -3.0557805676563268,
          -2.8715534774719087,
          -2.7582493530140964,
          -4.628623896431819,
          -3.632902494152879,
          -1.1993577444736312,
          -2.2677777526259044,
          -4.6267200806648345,
          -3.4812480635880934,
          -2.622534885779015,
          -7,
          -7,
          -4.6274887527352035,
          -3.248034603058738,
          -4.025264892154508,
          -2.4755715775939935,
          -2.7241009012423585,
          -2.2042842200431023,
          -2.465887682029916,
          -4.33219599532464,
          -3.1628893293628004,
          -4.627775375229303,
          -3.9307249527694874,
          -3.274800178065412,
          -3.5507825912650164,
          -2.6360578308137783,
          -4.326397313347113,
          -3.399521024913897,
          -3.4870373180056653,
          -2.318857746688286,
          -3.9286006598445242,
          -7,
          -3.6006561380617996,
          -2.7674065990040475,
          -4.026645602751596,
          -2.3769800333134876,
          -3.794746893067343,
          -3.568602576714357,
          -2.938284207555805,
          -3.6872117698137425,
          -2.6396186932498518,
          -2.9231044670500483,
          -2.9975692409571537,
          -1.8831761038277461,
          -3.138994979537685,
          -4.627427309011094,
          -7,
          -3.788572366037187,
          -3.3997246084084973,
          -3.453471233722936,
          -4.326704445074325,
          -2.133302624302217,
          -3.374850137756006,
          -2.9585995363634856,
          -3.8494808372439864,
          -2.6113260888251135,
          -1.4260844558204882,
          -2.909091575516218,
          -2.243028648271097,
          -1.9865589396383379,
          -2.9295992181746016,
          -2.565109599080669,
          -2.768648099163793,
          -2.877083256650651,
          -3.221193473064788,
          -3.176420598928824,
          -2.598365925717433,
          -3.2508873899067634,
          -3.389212730031502,
          -7,
          -2.6674615213066,
          -2.7274420645374544,
          -2.416921167679809,
          -4.629256651581539,
          -2.3204395467030783,
          -4.326243665994105,
          -2.6511865508463828,
          -3.455859567203536,
          -2.8056007947586763,
          -3.152685756036786,
          -3.5524451317812034,
          -2.711174300366762,
          -3.167671716230021,
          -7,
          -1.9705668126696234,
          -2.375792274747459,
          -2.0687890798848607,
          -7,
          -3.849060937109684,
          -3.3513283280710824,
          -3.513913880331417,
          -3.8509217930432844,
          -3.589736410795124,
          -7,
          -3.7870250509366583,
          -1.9809552818196143,
          -2.5829032804168657,
          -2.965272274026404,
          -2.576109955786417,
          -7,
          -3.5166472255324543,
          -2.882778567794427,
          -2.7961719664962326,
          -7,
          -3.8504624327615167,
          -3.6028094892346934,
          -2.7693673449336376,
          -4.162614185247574,
          -7,
          -7,
          -4.327685809541024,
          -3.453481424721092,
          -4.3260079677596055,
          -3.674115763447881,
          -2.9864831036687094,
          -1.7600494895554875,
          -4.627140456634811,
          -4.15039821661802,
          -7,
          -7,
          -3.2712454436613365,
          -3.234314768012676,
          -7,
          -3.457104414338873,
          -3.5906282374313663,
          -2.7710906787017704,
          -2.345013359928831,
          -1.9986504087043486,
          -2.764365456468543,
          -4.150991682923507,
          -4.627099462252875,
          -1.347080670472507,
          -2.093822918082407,
          -1.35109713021616,
          -3.5542872095319615,
          -2.613996088101989,
          -3.1717365381636147,
          -3.4534916154801154,
          -3.1245246022879822,
          -2.196775443561625,
          -2.587738559420033,
          -1.8349213979782772,
          -2.2709954180459664,
          -2.9098322781643,
          -2.1163708047186955,
          -2.601674231495388,
          -3.725401117975179,
          -2.973770182401431,
          -2.6241945001620497,
          -2.520072713605655,
          -4.62666878745452,
          -3.2317549484334687,
          -3.1184451059128824,
          -4.152685756036786,
          -2.7353593330017105,
          -4.6272429256634116,
          -2.0598778316475386,
          -2.2987748165342907,
          -3.2939649049909505,
          -3.172466706380776,
          -3.1613779859014137,
          -2.34923925531571,
          -1.9357412477103655,
          -3.783842349230774,
          -2.7523259318317654,
          -3.929306505534561,
          -2.7693368531734577,
          -2.6058673507596914,
          -3.1789769472931693,
          -2.074915184686576,
          -1.9460098847657648,
          -3.2499860332676347,
          -3.411570193966152,
          -3.0020412051534886,
          -2.4199854117249155,
          -2.156405666626288,
          -1.9061656116739139,
          -4.326294887818489,
          -7,
          -4.024619055253279,
          -2.9959092838978454,
          -2.365497487116762,
          -4.329916282216644,
          -3.456345785828081,
          -2.8480522019581387,
          -3.726737394049776,
          -2.4422018332921795,
          -2.9488305125930703,
          -2.0621775825245305,
          -4.633266411155424,
          -2.8282771428330555,
          -2.5341966517021137,
          -3.0643365478833755,
          -2.674512861609274,
          -2.0607577802449364,
          -2.688179392577509,
          -7,
          -2.4866756505929275,
          -2.982637157656279,
          -2.462662730904351,
          -7,
          -3.1871781457685944,
          -3.851115599375254,
          -2.816836671284734,
          -2.75060821076054,
          -2.732975756918457,
          -2.5481614810386617,
          -4.150766670469652,
          -4.626658528085447,
          -2.2328478515978616,
          -4.3290315750108395,
          -4.331751125024444,
          -3.2352556647225166,
          -3.2678097897218614,
          -3.6763073984105277,
          -1.215738424976611,
          -3.5127049161671735,
          -3.6272736616580863,
          -2.101315478526709,
          -2.7041505168397992,
          -3.828043743777702,
          -2.713169514894598,
          -3.144341815436957,
          -1.7535083087629977,
          -2.377081574961449,
          -2.40210991142646,
          -1.403694988017363,
          -2.1791309979534557,
          -3.0276245407121563,
          -3.2126851382937613,
          -2.644110200429959,
          -2.7356420508216597,
          -1.7211625537518984,
          -3.5706184747312224,
          -2.231362108759338,
          -1.6977921195260013,
          -4.1196352362091355,
          -2.8306026140807274,
          -4.358810172458563,
          -3.2440873084362094,
          -3.0423248787407227,
          -1.8524940966254402,
          -2.4748004181498424,
          -4.500545202798604,
          -2.8724800107296673,
          -3.3596837372363515,
          -4.167868469951459,
          -1.6554587420039284,
          -2.6249331307836736,
          -2.80433418322736,
          -3.3365287406782453,
          -3.680531913962837,
          -3.943138228539406,
          -3.6912503203314233,
          -3.791164125033335,
          -2.5522708062068267,
          -2.943760779227193,
          -1.7119647740280666,
          -3.9356684589162554,
          -2.520650955442134,
          -2.188065485960007,
          -2.4675023992470027,
          -2.16292458092848,
          -2.692116792460456,
          -3.100606831566212,
          -1.798681228722877,
          -2.832021234198613,
          -3.3746422429034686,
          -3.1257626964147756,
          -2.0137055223163682,
          -1.9990152048344794,
          -7,
          -1.8276261561842277,
          -2.5701116642934236,
          -7,
          -2.918238282434964,
          -3.075467327907453,
          -4.191040933375073,
          -7,
          -2.3107716124156723,
          -1.7694320620004897,
          -3.4549798528548243,
          -7,
          -3.222753620498096,
          -4.329774037157664,
          -2.519851127858414,
          -4.6807614389476635,
          -3.471381201714428,
          -2.712682071804389,
          -3.7252060359060395,
          -4.150664353529561,
          -2.991765838498609,
          -2.8247133373599675,
          -2.8425115981217535,
          -3.038269981689261,
          -2.132052669278517,
          -2.6290576038052467,
          -2.1521137507096944,
          -1.9284288922720902,
          -3.9344580498777164,
          -1.3964818075340644,
          -2.645389296060444,
          -3.024275600667789,
          -2.861417552427749,
          -7,
          -2.7251991210907534,
          -2.3502692650982824,
          -3.166345522007818,
          -3.5874354265840136,
          -7,
          -7,
          -4.3273895893854775,
          -4.070942474030112,
          -1.0236274499334386,
          -2.11653395340411,
          -0.9919156165114691,
          -3.4530021891110505,
          -2.695710464573313,
          -1.7279980930228536,
          -2.0460908387151995,
          -2.4065700586274863,
          -3.5154254660566715,
          -1.9812927455892713,
          -3.782973994944048,
          -1.6923392945564069,
          -1.8841649089154773,
          -2.7388618337689525,
          -4.0421224759982755,
          -2.159414400415508,
          -2.8363241157067516,
          -2.305784919389692,
          -4.032920808723266,
          -3.5903858080526803,
          -2.202435106951743,
          -4.155143649983192,
          -2.8541642908673475,
          -2.1804176619850706,
          -1.9970167545733903,
          -4.626843159658239,
          -2.1754932718147155,
          -4.628133387541083,
          -3.3734433001016995,
          -2.72159115966934,
          -1.2597635834634564,
          -1.8249202407771479,
          -4.149988456491476,
          -3.288171433357922,
          -1.525040258236046,
          -4.157688410663372,
          -1.882366565539136,
          -7,
          -2.4183113373400764,
          -1.1881122908453896,
          -7,
          -3.0155948545166624,
          -3.367767751185798,
          -2.387208782294461,
          -2.1682978754273456,
          -3.2511310447723267,
          -2.2461266112866,
          -2.5161264550669142,
          -3.4863191329739993,
          -1.969628590819608,
          -0.5505993099604394,
          -2.9465051692283937,
          -3.9288667653964007,
          -1.8989723109196854,
          -1.9855284446213737,
          -7,
          -1.247843653300319,
          -4.330748497546924,
          -4.152033401914976,
          -2.7463892697195718,
          -2.4001209713388727,
          -0.6356793335097679,
          -2.008590292788681,
          -2.1339811341121924,
          -2.599402281048723,
          -4.632467415481234,
          -3.6107133821919506,
          -3.3092041796704077,
          -2.5986628615845535,
          -3.308178066726313,
          -2.3306524622707823,
          -1.4238266369036738,
          -2.9206951294678225,
          -3.626996959365406,
          -1.5000305341838744,
          -7,
          -1.80312867811694,
          -2.78710609303657,
          -1.5215472333066158,
          -2.4527823002912648,
          -2.5427701169130144,
          -2.8433433124477063,
          -1.6822034347539272,
          -2.0750063044594707,
          -3.3151703553952925,
          -2.945106673042623,
          -3.6277651419682626,
          -3.781919421864166,
          -2.539790831601422,
          -3.1736911943077897,
          -2.04105414195654,
          -2.387399605873772,
          -1.2549987492914396,
          -2.510971747503651,
          -2.158963699887905,
          -2.221174975962108,
          -2.7417610824258207,
          -2.0086496781149954,
          -4.632072431957763,
          -2.3269680437679976,
          -7,
          -1.9183971468776533,
          -1.7094541093211546,
          -3.0565702209242036,
          -3.928375366184779,
          -2.222284502229978,
          -2.0908150144050226,
          -1.4534478436425606,
          -3.114610984232173,
          -7,
          -7,
          -3.72413244679981,
          -4.327512187748588,
          -4.326949994165998,
          -3.783893374865213,
          -1.6550294708928528,
          -3.7945577512547617,
          -2.632228959099475,
          -3.0743795706254873,
          -3.331042436293782,
          -3.2864462624614332,
          -3.1530217436261383,
          -3.354411752731074,
          -3.9327780700605506,
          -2.462397997898956,
          -3.0587655588941463,
          -2.293178336476699,
          -2.945331786541246,
          -4.365899620723788,
          -3.4020994719811863,
          -3.7822063554634027,
          -2.9396248374684815,
          -3.139868934471412,
          -4.626884178239356,
          -2.2816611981573267,
          -3.428994833472571,
          -3.3539364673716925,
          -2.7000688257699466,
          -3.287431711515602,
          -2.8273986480399302,
          -3.628256066711006,
          -3.9299601790626792,
          -3.1261609360385996,
          -3.928795137632244,
          -2.7110100570641573,
          -2.913863814360407,
          -7,
          -4.3257413721537965,
          -7,
          -3.2837533833325265,
          -2.804480189105993,
          -3.1091283841463793,
          -3.0024900412432993,
          -1.5141347630240631,
          -2.0744507189545915,
          -7,
          -7,
          -3.4975250381729923,
          -7,
          -7,
          -7,
          -2.9375634800593664,
          -2.649047063199393,
          -3.6726519228400023,
          -3.339053735709139,
          -3.580810972660946,
          -7,
          -7,
          -3.0999912335446846,
          -2.4746886656622498,
          -7,
          -2.7576671070627974,
          -3.1142888471310615,
          -7,
          -7,
          -3.281714970027296,
          -3.1364827496008227,
          -2.9800033715837464,
          -7,
          -3.3667002284829333,
          -3.182414652434554,
          -7,
          -7,
          -7,
          -2.777346255747414,
          -3.309949384259016,
          -3.5085970462300686,
          -7,
          -2.711500469726369,
          -7,
          -3.4440386695597027,
          -3.604442066260723,
          -3.3309208305952356,
          -3.1420764610732848,
          -2.4374707639390873,
          -2.0509821774826937,
          -3.317958924700952,
          -3.3576490329184674,
          -3.517789511883555,
          -2.8956987269593055,
          -7,
          -2.7850511532902402,
          -3.3137969404949157,
          -2.3134070001050655,
          -7,
          -3.6282867310895144,
          -3.346841769642251,
          -3.010865076409731,
          -7,
          -3.3586010159430195,
          -7,
          -7,
          -3.1652443261253107,
          -2.5937167011478612,
          -3.022194594880668,
          -3.6018427897820984,
          -7,
          -2.468864040148188,
          -7,
          -2.902447941243036,
          -2.4358216226950797,
          -7,
          -3.4833733060890273,
          -3.2220245503322613,
          -7,
          -3.2760786594797535,
          -7,
          -7,
          -2.4015608266227817,
          -3.43608309864198,
          -2.9199144806594317,
          -7,
          -3.7907776013376937,
          -3.643945912748067,
          -3.336526440627234,
          -3.2364112877439664,
          -3.4171394097273255,
          -7,
          -3.036822159992723,
          -2.9320930828571,
          -3.5397032389478253,
          -7,
          -7,
          -7,
          -3.7148325124333326,
          -2.9853516150839536,
          -3.08074670684836,
          -3.606596309179285,
          -2.827319557012113,
          -3.649334858712142,
          -7,
          -7,
          -3.1069044989356436,
          -7,
          -3.2852571745923016,
          -2.8427874848344485,
          -2.560305243220961,
          -2.7624231433300555,
          -3.636287252098513,
          -3.1357685145678222,
          -3.672836454171397,
          -3.68556261115823,
          -2.7413722369066322,
          -3.3554515201265174,
          -7,
          -3.04563587107822,
          -3.3617907726863363,
          -2.7081942032839943,
          -7,
          -3.0858136527815203,
          -3.41766661081607,
          -7,
          -3.5366005233314004,
          -7,
          -3.4769168327427638,
          -3.6734816970733473,
          -3.49045012035602,
          -3.5704845630444004,
          -3.5972562829251418,
          -7,
          -1.8994239108121036,
          -2.598174728741539,
          -7,
          -3.586587304671755,
          -4.126001456787675,
          -7,
          -7,
          -7,
          -3.598243191653623,
          -7,
          -3.1942984514279047,
          -2.407740718812563,
          -2.865794662364423,
          -3.2160602859231417,
          -3.6445370577784075,
          -4.040285798932492,
          -7,
          -3.6094876898532853,
          -3.6795187436957892,
          -7,
          -3.7033343754437698,
          -3.584444307165176,
          -7,
          -3.345079526314867,
          -3.4358671080828365,
          -7,
          -3.5793262037552553,
          -7,
          -3.3884564527002667,
          -3.598790506763115,
          -3.6911699341316035,
          -2.321788233178031,
          -2.9916690073799486,
          -2.41611074141508,
          -3.0202783941119273,
          -2.4125005469217604,
          -2.5006309216347464,
          -3.32990612340021,
          -2.947359354704174,
          -7,
          -7,
          -7,
          -3.172310968521954,
          -3.3157604906657347,
          -7,
          -7,
          -3.028793001220155,
          -7,
          -3.2050302708857896,
          -3.587598729721245,
          -3.937166703715033,
          -2.8468583713444207,
          -7,
          -3.132899769944483,
          -2.9561684304753633,
          -3.3890774437923494,
          -2.914116391219987,
          -3.7005306569785916,
          -2.3742482947379293,
          -2.897718704935313,
          -2.3353270562549815,
          -3.5836521085420436,
          -7,
          -3.4270531135645013,
          -7,
          -7,
          -1.4372999419590848,
          -3.705401815129262,
          -3.60400993241223,
          -1.7936260659291523,
          -3.2814878879400813,
          -1.9779667032419643,
          -2.3297028971532154,
          -1.8194550045531472,
          -2.1476230267651895,
          -2.092493594974741,
          -2.098792008234216,
          -2.3851397918328363,
          -7,
          -2.616400486768762,
          -4.416890030173012,
          -2.4880527674890005,
          -7,
          -7,
          -3.3152354096177272,
          -7,
          -3.603144372620182,
          -3.147985320683805,
          -3.2936939507457654,
          -2.6788217632521745,
          -2.8311543282301015,
          -2.857151502687493,
          -3.5297382554659538,
          -3.7471836863659025,
          -7,
          -2.337931919942683,
          -2.5516532717804257,
          -7,
          -7,
          -3.598243191653623,
          -3.265211027637486,
          -2.8024316264307236,
          -3.7043221408222355,
          -7,
          -3.5779511277297553,
          -3.2972131959896416,
          -2.8311229220209437,
          -3.5801263254115825,
          -3.2949069106051923,
          -2.504470862494419,
          -2.690172124901124,
          -7,
          -7,
          -7,
          -7,
          -3.0435587469147327,
          -3.639586086673426,
          -7,
          -7,
          -2.6820919614123637,
          -3.420038306133178,
          -3.2758179278775392,
          -3.3949329905627432,
          -7,
          -7,
          -7,
          -2.1003338756801364,
          -7,
          -2.7042432949819815,
          -7,
          -2.95970902424643,
          -7,
          -7,
          -3.3137617962924364,
          -2.4457366606080297,
          -3.1033149257643444,
          -2.604365428721707,
          -2.891588136764973,
          -3.410608542568368,
          -2.916980047320382,
          -3.644143050509919,
          -3.597366050266028,
          -3.0810771401550445,
          -2.753791904524199,
          -2.4188774698213766,
          -7,
          -7,
          -2.6835873175727674,
          -3.3089910290001643,
          -2.0456706229772466,
          -7,
          -3.2688119037397803,
          -2.711220195775293,
          -2.529558673021163,
          -2.5802833190970835,
          -2.2309771531262292,
          -3.744562084061763,
          -2.5152503052242317,
          -7,
          -2.7636199469282294,
          -3.2931414834509307,
          -7,
          -2.3948741756650853,
          -2.818308388529562,
          -4.094121595840561,
          -2.612518962242537,
          -2.2654190507574126,
          -2.4442092079896605,
          -1.8723549587518664,
          -2.6069185259482914,
          -4.325400198749759,
          -2.953638903390939,
          -7,
          -7,
          -3.2753113545418118,
          -7,
          -3.0310042813635367,
          -3.6217992240026677,
          -2.523045749505392,
          -2.9291268648546622,
          -7,
          -2.834976727785526,
          -3.6224212739756703,
          -3.019842969563268,
          -3.6447339274471924,
          -2.7637086966742306,
          -3.8776592441116087,
          -3.6447339274471924,
          -3.8769218431745798,
          -3.1879122240468787,
          -3.9229191264016565,
          -7,
          -3.3792148413786265,
          -3.199480914862356,
          -2.8905141650708486,
          -7,
          -2.658488381309017,
          -7,
          -2.988304089217602,
          -2.558939222448887,
          -3.0331220573283053,
          -3.1370374547895126,
          -3.112157966516305,
          -7,
          -3.166652089049701,
          -2.8334658601706924,
          -3.64018319192134,
          -2.6929447884566646,
          -3.414694864805198,
          -3.1416587697865523,
          -2.352891753316144,
          -3.578295305120826,
          -7,
          -4.329956915106239,
          -4.318890768083098,
          -7,
          -7,
          -4.74020473550745,
          -3.3894560543546906,
          -4.038540686337457,
          -4.149527013754348,
          -3.1826724835047404,
          -4.109139643904016,
          -7,
          -7,
          -7,
          -7,
          -3.2196683385331144,
          -7,
          -7,
          -3.6843116372451057,
          -7,
          -3.679300678760339,
          -7,
          -5.0928872442915525,
          -7,
          -3.9709161076671813,
          -3.7297046213121874,
          -7,
          -7,
          -7,
          -7,
          -3.8438899878252886,
          -4.249785175832251,
          -4.405935153146291,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.200426389032534,
          -4.271051261492347,
          -3.392677416406296,
          -2.9589459324939362,
          -4.001456783431275,
          -3.8231009262048943,
          -7,
          -3.5964871337365443,
          -3.7902675666555816,
          -7,
          -3.845861726455298,
          -2.4013673973861067,
          -1.9039138148998769,
          -3.260464236932625,
          -3.446619391266607,
          -3.165447834096422,
          -7,
          -3.2568026105565364,
          -4.000130268805227,
          -3.1202447955463652,
          -3.6808791744268112,
          -4.129963656273567,
          -3.9037951427410356,
          -7,
          -3.4497054723137457,
          -3.700131238924358,
          -4.9311424604222625,
          -3.6115108871266566,
          -3.314130668652575,
          -3.3191060593097763,
          -3.078647329681168,
          -7,
          -4.809030832780143,
          -3.070265260804666,
          -3.8211640307644217,
          -7,
          -2.8413415905280566,
          -3.483059261945647,
          -3.358750423731978,
          -3.5671440451956573,
          -3.0643258308401697,
          -7,
          -2.707871554701903,
          -3.5323721335678773,
          -3.647089428716555,
          -3.2351948324743183,
          -3.2993681849804,
          -3.8444150404738244,
          -2.878724160018126,
          -7,
          -2.68436653636779,
          -3.4663435817339256,
          -4.062863902110119,
          -7,
          -3.5864747785713966,
          -7,
          -3.5952757118020995,
          -7,
          -2.483900426858269,
          -2.082004405384004,
          -1.8979615866993214,
          -7,
          -3.7224693858840308,
          -1.9319485989693566,
          -3.2863067388432747,
          -1.477724023007823,
          -3.607776603741693,
          -2.075645586232719,
          -3.1150555026762046,
          -2.072350177271125,
          -2.020952883995018,
          -2.5939905188892736,
          -7,
          -3.74681576560032,
          -2.2006735010229588,
          -2.180908497191226,
          -7,
          -7,
          -3.016336796275526,
          -3.334051440346892,
          -2.530790575140356,
          -1.775818418551172,
          -2.048889285630866,
          -7,
          -2.2611663839218252,
          -3.591954555046735,
          -3.300704152596124,
          -3.932960550995896,
          -3.0446897027771316,
          -3.363605265330623,
          -7,
          -3.486642969023512,
          -1.5424664648514743,
          -3.35869609957381,
          -1.4327763469597874,
          -7,
          -2.2623631847646597,
          -1.711828523727601,
          -7,
          -2.6473829701146196,
          -3.460822698802402,
          -2.2277094415573746,
          -3.1336453400536084,
          -3.6303261548039467,
          -2.6266824662362946,
          -2.366236123718293,
          -3.338057875419756,
          -1.970262325566553,
          -2.1964390649696863,
          -3.3759835025820006,
          -7,
          -1.900562185691819,
          -1.8980291537927607,
          -7,
          -2.858286493595753,
          -7,
          -3.6033609243483804,
          -7,
          -1.7973082833122795,
          -1.7924393247415067,
          -2.1997832969389326,
          -2.747531316550332,
          -3.220020871555797,
          -7,
          -7,
          -2.3480998137138966,
          -2.711479158948072,
          -3.017450729510536,
          -2.001044267268093,
          -1.9919108308906996,
          -2.7819347981137703,
          -7,
          -1.8289772882134558,
          -1.80312867811694,
          -7,
          -2.4960835946220876,
          -1.1324203264110135,
          -1.7975602137559035,
          -2.620780298632121,
          -2.636214267562268,
          -1.8152930583882103,
          -3.2984709911247934,
          -2.605753836593265,
          -2.9734049744100606,
          -2.987219229908005,
          -2.8811563210755637,
          -4.4193774051391275,
          -3.7953933349312896,
          -2.476155081947642,
          -3.7926717891415676,
          -2.4404156056103177,
          -3.4379090355394983,
          -2.7591558917762122,
          -2.5503189632122982,
          -2.668056864156085,
          -2.1106613346882797,
          -7,
          -1.561670856908037,
          -3.581380688709987,
          -1.7758472954740794,
          -0.9323077387049005,
          -7,
          -3.584218112117405,
          -2.408324780170415,
          -2.1165128680770238,
          -1.9669130564385204,
          -2.6478717653062325,
          -7,
          -7,
          -2.8042530476353846,
          -7,
          -7,
          -3.6024940688072813,
          -3.2083965630310805,
          -3.226857570288723,
          -2.059876090852238,
          -2.3436676730228414,
          -2.790486226296973,
          -3.604442066260723,
          -7,
          -2.3007337847975,
          -3.1530013881396495,
          -2.72166075514139,
          -2.5215739035919933,
          -2.4136782342419387,
          -2.1226013182643153,
          -3.8964711004792774,
          -2.9411137270371017,
          -3.2829618035343353,
          -3.831613855309099,
          -3.6306312440205,
          -3.5781806096277777,
          -2.64851013005671,
          -3.1686938635769795,
          -2.796376070489843,
          -2.4094779220657947,
          -3.7824009524965296,
          -2.624134702492355,
          -7,
          -3.601408060534684,
          -3.147289769269514,
          -3.287577809078705,
          -2.639154332860882,
          -2.188576970603741,
          -7,
          -7,
          -7,
          -2.3448287505880847,
          -7,
          -7,
          -7,
          -7,
          -3.475235222604128,
          -7,
          -7,
          -3.7316129367486814,
          -7,
          -7,
          -7,
          -3.9358849679635246,
          -3.2972010255940374,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1641111006552047,
          -3.012133913649598,
          -7,
          -2.5596954436646264,
          -3.433528666134524,
          -7,
          -7,
          -7,
          -3.26030994579492,
          -3.4689378056654614,
          -7,
          -2.388658488974814,
          -2.1076944030298352,
          -2.241172786770047,
          -2.7244806771885997,
          -2.2620858294213435,
          -1.8236998953130263,
          -2.8735143535392917,
          -3.664077590185075,
          -7,
          -3.10698371567979,
          -7,
          -3.8451011421066204,
          -7,
          -7,
          -3.569958818096594,
          -3.153204900084284,
          -2.5676144427308447,
          -2.585836579364848,
          -7,
          -7,
          -3.4608978427565478,
          -2.8205954965444904,
          -3.536321662293841,
          -7,
          -3.077958071921229,
          -7,
          -7,
          -3.4163075870598827,
          -3.334554270647249,
          -7,
          -7,
          -7,
          -7,
          -3.4072208929273966,
          -3.419625360887743,
          -3.359806304706641,
          -7,
          -7,
          -3.6112983622964285,
          -7,
          -7,
          -2.035316439045186,
          -7,
          -7,
          -4.130420618706655,
          -7,
          -3.583198773968623,
          -7,
          -7,
          -2.878090733945318,
          -7,
          -3.36679638328673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5126843962171637,
          -3.6901403652094,
          -3.7004441010277516,
          -4.080157310970184,
          -7,
          -7,
          -7,
          -3.5246557123577773,
          -7,
          -3.430961453354948,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.040206627574711,
          -7,
          -3.596707029681446,
          -3.4838724542226736,
          -3.7657430414210444,
          -3.8035253955765325,
          -7,
          -7,
          -7,
          -7,
          -3.5667067908011667,
          -7,
          -7,
          -7,
          -3.7046651854545294,
          -7,
          -3.433609843323718,
          -3.5174070536521542,
          -3.464928984860436,
          -3.0930713063760633,
          -3.928703027430597,
          -2.9244515909567834,
          -4.097626008369331,
          -7,
          -3.1609684672648433,
          -7,
          -7,
          -7,
          -2.53058589134187,
          -2.7520484478194387,
          -7,
          -7,
          -4.3961121306114785,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5295230327534557,
          -3.237732193117367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9909305367345755,
          -7,
          -3.6160551949765862,
          -7,
          -7,
          -3.413299764081252,
          -4.083705625352265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.510813010512496,
          -3.130655349022031,
          -2.8160202287312686,
          -2.753072124149383,
          -2.634956835670927,
          -7,
          -7,
          -3.3207936392476864,
          -7,
          -7,
          -7,
          -3.4192947217534604,
          -7,
          -7,
          -7,
          -2.99638031323341,
          -7,
          -3.8373779732534894,
          -7,
          -3.8334021292318585,
          -3.2878419086342974,
          -3.429429264381788,
          -3.1981757979993914,
          -3.431765702625348,
          -2.8830933585756897,
          -2.476341051411325,
          -7,
          -3.23159700556491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021023822031585,
          -3.5482665451707454,
          -7,
          -7,
          -3.2826868363479145,
          -7,
          -7,
          -7,
          -3.2024883170600935,
          -7,
          -7,
          -2.1034305088316687,
          -2.295509228754198,
          -7,
          -3.2980885693913815,
          -4.0841113519406775,
          -2.7068181508331386,
          -7,
          -7,
          -2.7577754910119254,
          -3.315130317183602,
          -3.33665982345442,
          -3.3771240423464564,
          -7,
          -7,
          -3.288204496751523,
          -2.0901513799358766,
          -4.17900570756482,
          -5.015304417065566,
          -3.2884728005997825,
          -2.1583624920952498,
          -7,
          -7,
          -7,
          -7,
          -2.332794779762124,
          -3.5120169694961265,
          -3.2069607291557105,
          -7,
          -7,
          -3.0265332645232967,
          -7,
          -7,
          -7,
          -7,
          -2.4972434305077478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.414137362184477,
          -7,
          -7,
          -3.579954994822772,
          -3.2089785172762535,
          -7,
          -7,
          -7,
          -2.7542110775942783,
          -7,
          -3.1378043403467784,
          -3.4176377396522297,
          -3.422630871027468,
          -7,
          -7,
          -7,
          -3.578486396989049,
          -3.8483738838446016,
          -2.948779613737823,
          -2.484235111053663,
          -7,
          -7,
          -7,
          -7,
          -3.4753805931433615,
          -7,
          -2.780934207814762,
          -7,
          -7,
          -2.6310086768259344,
          -7,
          -7,
          -7,
          -7,
          -3.1558563583922012,
          -3.1649473726218416,
          -3.631240780235509,
          -7,
          -4.057612225741657,
          -3.4941081925565785,
          -7,
          -3.277650881240888,
          -7,
          -7,
          -3.131137273778607,
          -7,
          -7,
          -7,
          -2.197510282797415,
          -2.0572856444182146,
          -2.733999286538387,
          -7,
          -4.431437748768506,
          -7,
          -7,
          -7,
          -7,
          -3.2571984261393445,
          -3.45400593810379,
          -3.069112851387121,
          -2.7983052820219765,
          -2.710223174463516,
          -7,
          -3.5618166643189575,
          -7,
          -3.816174990428802,
          -2.4536580307033105,
          -2.749736315569061,
          -7,
          -3.410608542568368,
          -4.167275971399233,
          -3.4594595033417885,
          -4.319860472029068,
          -7,
          -3.5878792635995502,
          -3.519651648851301,
          -3.398229441859627,
          -7,
          -7,
          -7,
          -7,
          -3.2800089531081857,
          -3.833083334178343,
          -3.084814508594119,
          -7,
          -7,
          -3.6061663146076204,
          -3.354108439147401,
          -7,
          -7,
          -3.1727488389827436,
          -7,
          -3.201019765456387,
          -7,
          -7,
          -3.213464629039556,
          -4.482029890469332,
          -7,
          -7,
          -7,
          -3.555215405126073,
          -7,
          -7,
          -3.7749659069566945,
          -7,
          -7,
          -7,
          -7,
          -4.703368770239115,
          -2.881307826428729,
          -7,
          -7,
          -3.5152521051810535,
          -7,
          -4.343644880252506,
          -7,
          -7,
          -7,
          -3.647896190630718,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.387062202035878,
          -3.087754123432391,
          -7,
          -4.353916230920363,
          -7,
          -7,
          -7,
          -7,
          -4.1744959193753,
          -7,
          -4.629949582692884,
          -2.733999286538387,
          -7,
          -4.372779486133048,
          -3.663795122219408,
          -7,
          -4.358810172458563,
          -7,
          -4.461165750357359,
          -3.0134500940704583,
          -7,
          -4.163742630225824,
          -4.191725738520312,
          -3.3514449075074313,
          -7,
          -4.159852819341846,
          -3.9119029960440326,
          -7,
          -7,
          -4.099300726233463,
          -7,
          -7,
          -4.396277826958957,
          -3.8367811013221695,
          -7,
          -7,
          -2.7263196121107756,
          -7,
          -3.5312328417522694,
          -7,
          -7,
          -4.129303107716051,
          -7,
          -7,
          -7,
          -4.155184159694008,
          -4.4925718279855245,
          -7,
          -3.7758045569461376,
          -7,
          -7,
          -3.906375451942542,
          -7,
          -3.036516919249531,
          -3.884001924768787,
          -7,
          -4.236545012525752,
          -7,
          -7,
          -4.146975117308223,
          -4.0268599859845615,
          -7,
          -3.3053513694466234,
          -7,
          -7,
          -7,
          -2.998849699010446,
          -2.7341137402172424,
          -2.73247158340205,
          -7,
          -2.2531083481429803,
          -3.329915358697696,
          -3.2969940766702086,
          -1.7639353469873473,
          -3.0437551269686796,
          -3.5510228130338692,
          -7,
          -3.2887842587243155,
          -2.8474955403490654,
          -2.920123326290724,
          -2.096070564624839,
          -3.4743328375521676,
          -7,
          -2.8847953639489807,
          -7,
          -7,
          -3.0305418969899116,
          -7,
          -7,
          -3.222456336679247,
          -2.9093777108309906,
          -7,
          -3.2936939507457654,
          -7,
          -7,
          -3.8347067478454924,
          -3.4868035633279826,
          -4.497565410086237,
          -7,
          -1.581701955729663,
          -2.2873279149265278,
          -7,
          -2.60422605308447,
          -7,
          -2.7191931306339363,
          -2.551811307878826,
          -7,
          -3.0356298277904386,
          -2.6397077858246627,
          -3.1922886125681202,
          -3.1991378431311865,
          -7,
          -2.73413281289821,
          -3.454387467146955,
          -1.3248674400236076,
          -2.5298151966446305,
          -2.8725447293769673,
          -7,
          -7,
          -3.0970836960665213,
          -2.2974869397629045,
          -7,
          -3.7137984441929106,
          -7,
          -7,
          -3.6721902511882525,
          -2.561220678933944,
          -2.0681148898978354,
          -3.0422801074983603,
          -3.435525851498655,
          -2.7179477417489277,
          -7,
          -7,
          -1.642707106377062,
          -3.3952681336981585,
          -3.3675422735205767,
          -3.5658478186735176,
          -2.748630958693654,
          -2.5744653452070376,
          -7,
          -2.933768402805704,
          -2.78710609303657,
          -2.4960835946220876,
          -7,
          -2.744674039978551,
          -2.321134667242944,
          -2.0803859471859956,
          -3.167169590408631,
          -3.244524511570084,
          -3.0872133412316147,
          -3.480581786829169,
          -2.678518379040114,
          -2.0028137792246734,
          -7,
          -4.387852352763043,
          -7,
          -7,
          -7,
          -3.434384633690481,
          -7,
          -3.9037138370248186,
          -3.610506382373693,
          -2.8305886686851442,
          -2.788875115775417,
          -3.3902283624691303,
          -3.5199591807520685,
          -7,
          -1.7407421517131454,
          -2.674012770977095,
          -7,
          -2.118815651549511,
          -2.674467460866252,
          -3.448087666692341,
          -2.3643102026822547,
          -1.2827901651204379,
          -3.0661394928706995,
          -7,
          -7,
          -3.3244882333076564,
          -7,
          -7,
          -2.991890303936025,
          -7,
          -2.7685147746865404,
          -2.259887792766994,
          -3.396896449142524,
          -7,
          -7,
          -2.714664992862537,
          -7,
          -3.121887985103681,
          -7,
          -3.311541958401195,
          -3.8640955734242475,
          -7,
          -3.102605194126567,
          -3.3010299956639813,
          -7,
          -7,
          -7,
          -3.5187639162599584,
          -3.111766433052562,
          -2.803968953635653,
          -2.989271791641693,
          -7,
          -3.610553705317095,
          -7,
          -3.3334472744967503,
          -3.577721524509021,
          -7,
          -3.780821175853473,
          -3.500099191915723,
          -7,
          -7,
          -4.305243857506007,
          -4.299093072361705,
          -3.821644517542217,
          -3.5210508672197784,
          -3.261241234655554,
          -1.9647518554481722,
          -2.4360160992135165,
          -4.002144454528368,
          -4.309268104477122,
          -2.746423205073747,
          -3.7896512087934098,
          -4.298853076409706,
          -4.303044784243365,
          -3.14752792782225,
          -2.1996912391745638,
          -3.317080886073193,
          -3.5319682869631666,
          -3.997211582832505,
          -7,
          -3.998934672960174,
          -2.6007614933013325,
          -2.5995138354528406,
          -7,
          -2.8494194137968996,
          -2.6109625965853214,
          -4.314604473213435,
          -4.0046867154273835,
          -4.298700282631671,
          -3.1286819205220584,
          -3.4156826728335363,
          -4.307303450866765,
          -3.064200518562613,
          -3.314225470926497,
          -4.301398989173564,
          -7,
          -3.830396176483469,
          -3.030052968297048,
          -4.304275050477128,
          -3.6534054906645013,
          -4.299507298700488,
          -3.1326598503277174,
          -4.00552369267328,
          -3.1223040090061507,
          -4.302915079568861,
          -3.8314004742396546,
          -2.9915683807473004,
          -3.0610753236297916,
          -1.9344984512435677,
          -3.460554221350507,
          -3.8371674062278354,
          -4.355183236009675,
          -3.1712666394420372,
          -3.372175286115064,
          -2.3527629361796283,
          -3.8700916316852,
          -2.0569209253036416,
          -3.4094089499748597,
          -7,
          -3.408621501803481,
          -2.914499864344777,
          -3.8356905714924254,
          -4.0135113334659,
          -4.314835923004574,
          -7,
          -2.911902996044033,
          -2.4869308453661136,
          -2.597128185952831,
          -4.302395873152567,
          -7,
          -2.329617194839177,
          -7,
          -3.0940166811204226,
          -2.8304786835886837,
          -7,
          -3.500118806417088,
          -2.8291585566933986,
          -7,
          -3.257518584268037,
          -7,
          -7,
          -2.0359052102283863,
          -3.487623124274871,
          -3.7038285389563477,
          -7,
          -3.64804759698893,
          -4.311117842662505,
          -3.274119346273105,
          -3.457711625975908,
          -3.5498815946498814,
          -7,
          -2.5607880199041153,
          -3.1836114492184326,
          -2.77572692378081,
          -4.300617219806582,
          -7,
          -7,
          -4.02630850085407,
          -3.2603496926930307,
          -3.252983654280911,
          -3.826139617935915,
          -2.7251983664911528,
          -4.011210849480231,
          -7,
          -7,
          -2.8465181435963296,
          -7,
          -2.7146689821747727,
          -2.8887617418146476,
          -2.4178774724990104,
          -2.4667768618677837,
          -4.0084085289779425,
          -3.459349400851918,
          -3.6183619311098782,
          -3.5420573701746005,
          -2.5242362970977723,
          -3.468537213596077,
          -4.298547435078706,
          -3.5566441721731303,
          -3.457806229082977,
          -2.8181525516426755,
          -7,
          -3.213454508691831,
          -2.8990620586655056,
          -4.309289410655256,
          -3.2448870966392214,
          -7,
          -3.2723905327008245,
          -4.016573746269123,
          -3.745230984528141,
          -3.5258589244021965,
          -7,
          -3.3563233628438742,
          -1.481442628502305,
          -2.3650197428165347,
          -7,
          -3.9983247392945254,
          -3.4270091132974243,
          -7,
          -7,
          -4.29907126002741,
          -4.00060758706289,
          -7,
          -2.9101771619648984,
          -2.4326874301696493,
          -2.9472918061248987,
          -3.6864217498793677,
          -7,
          -4.431958501037113,
          -7,
          -3.826722520168992,
          -4.017951068830742,
          -4.011993114659257,
          -3.0948868726586736,
          -7,
          -4.305028753746333,
          -3.8344207036815328,
          -3.0712013889421295,
          -7,
          -3.996927380146128,
          -3.6307938706772975,
          -3.719186221662629,
          -4.301789346768719,
          -3.476376111016299,
          -2.496433925220682,
          -3.563303059369412,
          -2.781595824877749,
          -3.550269129965307,
          -2.5779284961856375,
          -2.744251796297106,
          -3.609252814885003,
          -2.2616399738667665,
          -3.6073048707733277,
          -7,
          -7,
          -3.534026106056135,
          -3.3508722985960704,
          -3.82687351534638,
          -7,
          -2.952354913935259,
          -4.305394366771733,
          -3.0168753032003806,
          -7,
          -3.4896772916636984,
          -2.3982883768309535,
          -7,
          -2.803115554890027,
          -2.904118345948579,
          -3.4761688995605318,
          -3.015858520286947,
          -3.2442977420825336,
          -2.619072860004698,
          -3.318021573870186,
          -2.7203453897396916,
          -4.074322643568778,
          -7,
          -3.7796505943430723,
          -7,
          -3.7542259820035175,
          -2.0470378042585065,
          -3.7722588216951434,
          -4.3028285882602555,
          -1.4665183710211236,
          -3.696465603994037,
          -1.5472866808111132,
          -2.3366963890101053,
          -2.11069425125296,
          -2.4571679344887163,
          -2.6160573404936036,
          -2.6399580644294924,
          -3.0803458442742997,
          -7,
          -2.7474516477618667,
          -2.8997585768372334,
          -1.7812158154954059,
          -7,
          -4.298700282631671,
          -4.0042783722001625,
          -3.823169812057419,
          -7,
          -3.8300109359361176,
          -7,
          -3.3545565944718043,
          -2.9932314749036784,
          -2.8745005215682826,
          -3.2170494324398886,
          -2.631499142736381,
          -7,
          -3.0043213737826426,
          -3.229148350269773,
          -4.01674092728626,
          -7,
          -4.301680949293576,
          -3.3797686793220243,
          -3.0236022242589295,
          -7,
          -7,
          -4.297738631732803,
          -3.824516328007209,
          -3.701913211212344,
          -3.9970804354717306,
          -3.6021251306149233,
          -2.8782139380544858,
          -1.7148591343418107,
          -4.298328988073496,
          -3.9981503150813658,
          -7,
          -4.00268431298973,
          -3.0097694881704116,
          -3.1635021317476606,
          -7,
          -4.311732675442349,
          -2.6428241099806553,
          -3.8517474191332637,
          -3.202062396148503,
          -3.5116828711013874,
          -4.3271545124094315,
          -4.300486787986029,
          -7,
          -1.5571600787125126,
          -3.3780747351016545,
          -2.26713900887448,
          -4.01110502981598,
          -2.3814797977204503,
          -4.013216539624441,
          -4.30412415273291,
          -3.4596939764779706,
          -2.6516656039229356,
          -3.3554515201265174,
          -2.4277218284229525,
          -2.9931186605828173,
          -3.2745042226558834,
          -3.146190073315927,
          -3.7089729784630787,
          -7,
          -3.365404778744098,
          -3.047021617404377,
          -2.6713304313164055,
          -7,
          -3.7026028413404273,
          -3.2785249647370174,
          -3.400689059603588,
          -2.3169041116345332,
          -7,
          -3.1305347842273163,
          -2.8216694633753554,
          -2.6176711958314747,
          -2.329150944343016,
          -1.9799823174336075,
          -2.7805170155714753,
          -2.821577430480578,
          -4.302417519150622,
          -2.499427906598886,
          -3.52255290221248,
          -3.835859607003717,
          -2.7752462597402365,
          -3.2874759886947014,
          -3.1530064771007162,
          -3.0756429911291083,
          -2.5418185152424937,
          -2.7972879125492702,
          -2.156012553918777,
          -2.1353656392669924,
          -3.388635223628259,
          -2.5696664623252685,
          -7,
          -7,
          -3.996402209146188,
          -3.3208383890175335,
          -2.924666875986673,
          -3.8292394281413893,
          -3.355557936162409,
          -3.019867665170659,
          -3.702150395107271,
          -2.934538848851327,
          -7,
          -3.0258221513726404,
          -4.010215125214227,
          -3.20198503030335,
          -3.1684238181031454,
          -4.311287538662283,
          -3.252924384710753,
          -2.9878250998853106,
          -3.1314339683837114,
          -4.311478367438068,
          -3.329516522848163,
          -2.9426693313867003,
          -2.7701495884132963,
          -7,
          -2.7948047956207,
          -7,
          -3.514338998289733,
          -2.715252736283062,
          -3.392609030497567,
          -3.555195248040743,
          -4.300008202553813,
          -7,
          -3.2616593037647066,
          -3.304188829614843,
          -4.0092383709684665,
          -3.0810294460597936,
          -3.2311417797607684,
          -3.4025193025742495,
          -2.238320187023523,
          -4.297804266525286,
          -7,
          -2.936040396947672,
          -3.3898634973678488,
          -7,
          -4.373886231789153,
          -4.073321134413501,
          -2.4667153093618293,
          -3.829094617724282,
          -3.590105874562201,
          -2.309547394740809,
          -3.381716596708923,
          -3.465977368285823,
          -4.120343562438025,
          -3.651726133614305,
          -3.8990759849057426,
          -2.0847449955525903,
          -4.3094065759545295,
          -3.6472329626331015,
          -2.451548972465136,
          -7,
          -3.455280024856446,
          -4.365338202346941,
          -4.006156544489312,
          -3.6792234211650037,
          -2.8636975819970516,
          -3.5071944854321804,
          -4.3098749213150755,
          -3.8582965245338854,
          -4.064108416233477,
          -4.034548247098469,
          -2.8389594999108265,
          -3.130861035664435,
          -3.6217343758620233,
          -4.005266332972769,
          -3.942256150419465,
          -4.0287338793493355,
          -4.0218092770223395,
          -4.430913151004603,
          -3.7250036359745344,
          -3.938582263081691,
          -2.8834170375771606,
          -3.6151922673739656,
          -3.2524528472130885,
          -2.8054559734849365,
          -3.2868733052667998,
          -3.2029784607370653,
          -3.706888394981618,
          -4.035189508908448,
          -2.8988821501556634,
          -2.3130291026996175,
          -2.2842945700302977,
          -2.621426678455252,
          -2.662260023490515,
          -2.785614524946824,
          -3.7210476638575587,
          -2.9210823527319962,
          -3.6377898293622293,
          -3.6024506805778724,
          -3.9320507642717413,
          -3.3324990549181783,
          -3.682506085939011,
          -7,
          -2.638403885379292,
          -2.693933677387551,
          -3.959196881074919,
          -3.8271322421466074,
          -3.3855705277254655,
          -3.7039573587561563,
          -2.180226161614204,
          -3.8034400439889096,
          -4.323383804818248,
          -2.5255045769947024,
          -3.232911444346091,
          -7,
          -1.7726772486845728,
          -2.7019244639680973,
          -2.58954640724269,
          -3.255736247252979,
          -2.4647118247672366,
          -3.712868477066893,
          -1.9518613306048493,
          -3.1556396337597765,
          -4.311796229182407,
          -2.537973874395819,
          -2.266548465254177,
          -4.061678615245337,
          -2.12532741051893,
          -7,
          -2.364494711644551,
          -2.5426143376142067,
          -3.2704237178699413,
          -4.302352577919563,
          -3.998302940098541,
          -7,
          -3.823887025677337,
          -4.390970414162616,
          -2.075546961392531,
          -2.23127940943518,
          -1.5525004346117142,
          -3.5247205856840464,
          -2.9666313775302093,
          -1.5452882850766474,
          -2.7701950001292666,
          -1.941345766226938,
          -3.126888677692568,
          -2.103715576919223,
          -3.123873409568474,
          -1.6243973159395524,
          -1.9143998300983032,
          -2.7519203184537346,
          -4.032940937780854,
          -2.675432957123123,
          -2.287190764555977,
          -2.428607941216987,
          -3.615865918668555,
          -4.007513076120703,
          -2.679222134851209,
          -2.910304168068569,
          -2.7420666425654527,
          -2.2542815303849095,
          -2.2630488002706897,
          -3.8204860776625775,
          -1.9011018868675789,
          -3.823235062261409,
          -3.70022763564825,
          -3.079365855819545,
          -2.2751022703904096,
          -2.7268081430156443,
          -4.298350837719157,
          -3.3917973471304803,
          -1.5779153111051087,
          -2.866308441316016,
          -1.912224047434943,
          -7,
          -2.4570934773357136,
          -1.4987260783768248,
          -3.998542671094514,
          -3.260873289344748,
          -3.4360035356698964,
          -2.3503314002067244,
          -2.739482441437391,
          -3.7060346607143506,
          -2.7679182021097164,
          -2.5512185706063266,
          -3.6109793799229974,
          -2.2445039010543644,
          -2.0694466906279434,
          -2.6741781802543962,
          -3.822778104826663,
          -1.949041315753517,
          -2.0564575761112773,
          -7,
          -2.3775080333764484,
          -3.529836566775372,
          -3.7005090196080914,
          -3.037585842826617,
          -2.1314797188836154,
          -1.0549175366838799,
          -2.3276143266206253,
          -2.331014665152977,
          -3.0213960567419713,
          -4.309608877958903,
          -3.9458295265073566,
          -3.077132683372356,
          -2.3433913163594253,
          -3.191644449765504,
          -1.9225112682144678,
          -1.9390025428825879,
          -2.904569910106494,
          -7,
          -1.7778189334524992,
          -1.5215472333066158,
          -1.1324203264110135,
          -2.744674039978551,
          -7,
          -1.6821531740483902,
          -2.2875372441329467,
          -3.063020444115889,
          -1.6289763335903875,
          -2.7456556904908056,
          -2.312236026195126,
          -2.954913364149901,
          -3.0205139306557727,
          -3.2979355063596474,
          -3.245964822443127,
          -3.7462838201514073,
          -2.688525755237839,
          -3.1710630510449134,
          -1.848084338954773,
          -3.2538022647686016,
          -2.1726159027748584,
          -1.9230356919061111,
          -2.7557115563729915,
          -1.9683432302185928,
          -3.8315711874815945,
          -2.0789523907738947,
          -7,
          -1.922956834920365,
          -0.6022494799944972,
          -3.6069543130590116,
          -3.821731821690044,
          -2.4980429599586,
          -2.701715371253416,
          -1.5258510550714373,
          -3.1356626020000733,
          -7,
          -4.2990494465975395,
          -3.1221066080541338,
          -3.8241475372464007,
          -3.4548013195320686,
          -3.3021360369887187,
          -2.676930586781101,
          -3.045343570734785,
          -2.761460516422466,
          -2.7495430810911663,
          -3.00774777800074,
          -3.524547568608145,
          -3.4605971888976015,
          -2.9887712324006594,
          -2.6629723510645,
          -2.4860011910312005,
          -2.550580705005715,
          -2.020462813267919,
          -1.5351210126789396,
          -3.2996162399984135,
          -3.1960060319521792,
          -3.821731821690044,
          -3.881707926973662,
          -3.609146011529596,
          -3.8205736149734113,
          -2.133720605254398,
          -3.6124659639531425,
          -3.0797131438261793,
          -2.167220775510412,
          -3.1137861131733655,
          -2.58399378491216,
          -3.6989048552774317,
          -4.0012359788389915,
          -2.973569556684414,
          -4.299834040645859,
          -2.5441957592407425,
          -2.6314230602187614,
          -7,
          -4.297585445297346,
          -7,
          -3.416640507338281,
          -3.4148062795010126,
          -7,
          -7,
          -2.588271706842329,
          -7,
          -3.447158031342219,
          -7,
          -3.7479579825589826,
          -7,
          -7,
          -7,
          -3.5527168738324733,
          -2.8178249809742413,
          -7,
          -3.495821753385906,
          -7,
          -7,
          -7,
          -3.1751855350946574,
          -3.994493122883512,
          -7,
          -2.7521124983293848,
          -3.3950994847121656,
          -7,
          -7,
          -7,
          -3.3268476989159903,
          -7,
          -7,
          -4.033366305327212,
          -3.5229655954919865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7165906667718334,
          -7,
          -7,
          -3.635282637998212,
          -3.5379449592914867,
          -2.052538695727877,
          -7,
          -7,
          -7,
          -7,
          -2.746745371210528,
          -3.4882999691020795,
          -7,
          -3.162564406523019,
          -7,
          -7,
          -7,
          -3.6924944075030846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9219835813490653,
          -3.1204451686960653,
          -7,
          -7,
          -3.1935883405041348,
          -7,
          -7,
          -2.104350519242735,
          -7,
          -7,
          -3.831261720302822,
          -7,
          -3.6466977312993345,
          -7,
          -7,
          -2.943943956577388,
          -7,
          -2.6199872475431762,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.32701565249362,
          -3.2723058444020863,
          -3.6241445302716726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4769764657595275,
          -7,
          -2.9097164532343447,
          -7,
          -7,
          -7,
          -4.063445953123033,
          -7,
          -7,
          -7,
          -3.5073160400764136,
          -4.1147944032247805,
          -7,
          -7,
          -7,
          -3.5577477416414682,
          -3.3803099337883635,
          -2.671833768853756,
          -7,
          -3.636086515103073,
          -7,
          -3.2072976788831435,
          -7,
          -7,
          -3.4693948724333543,
          -7,
          -3.958516103423041,
          -7,
          -4.401297125021583,
          -7,
          -3.092281919036219,
          -7,
          -7,
          -7,
          -2.1743625435790905,
          -3.409510452269316,
          -7,
          -7,
          -3.7073998311332486,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0306575392437978,
          -3.437221902399778,
          -3.543633532576258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.47045949458466,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0856472882968564,
          -7,
          -7,
          -2.468233685381572,
          -7,
          -3.657151501900967,
          -7,
          -3.9869507878585164,
          -3.1091283841463793,
          -7,
          -3.3281528261484916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.721645766289746,
          -3.4625477288026643,
          -3.4237167870764944,
          -7,
          -2.9663177623902586,
          -3.3401961590915024,
          -3.5173278822943734,
          -3.140759370870369,
          -3.7788744720027396,
          -2.9613024181586454,
          -2.7507012003958686,
          -3.577721524509021,
          -3.000867721531227,
          -3.068309574745689,
          -7,
          -3.5073160400764136,
          -7,
          -7,
          -7,
          -3.4429890216609986,
          -2.573188181839261,
          -4.382827209736365,
          -7,
          -2.463083841024901,
          -7,
          -2.5936736569452488,
          -3.186532564592397,
          -2.8790958795000727,
          -7,
          -3.4824447919182653,
          -2.2375894317072182,
          -2.640779477344857,
          -7,
          -7,
          -4.3958329201019835,
          -2.502991872316166,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1866738674997452,
          -3.3143729000093276,
          -2.8212222999064145,
          -3.8949249773595436,
          -3.0382150869314946,
          -3.4058583993176366,
          -3.4679039465228003,
          -3.48572142648158,
          -3.064832219738574,
          -3.4169731726030363,
          -3.4360035356698964,
          -2.51638280249711,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4573950576660026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0272136570828017,
          -2.3774569867029287,
          -7,
          -7,
          -3.4622482153549976,
          -7,
          -7,
          -7,
          -2.3010299956639813,
          -3.3229425163530153,
          -3.112844295431148,
          -7,
          -3.2971036501492565,
          -7,
          -7,
          -7,
          -3.4759252997015397,
          -3.5828584622244994,
          -3.0105312308878815,
          -2.6606283529737342,
          -7,
          -2.9689496809813427,
          -7,
          -7,
          -3.555215405126073,
          -3.70104963072914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.585573518622731,
          -7,
          -7,
          -3.0260836208009874,
          -3.2463754640035085,
          -3.0859146287065933,
          -2.6700137961720474,
          -3.55875276807147,
          -3.1528995963937474,
          -7,
          -1.932680798328356,
          -2.4274861090957858,
          -7,
          -2.4757438067481257,
          -7,
          -4.0485971584016065,
          -3.7283537820212285,
          -7,
          -3.6110857334148725,
          -3.1375914523814146,
          -7,
          -4.3383960814697495,
          -7,
          -7,
          -7,
          -7,
          -3.593230668783007,
          -3.020084925984292,
          -3.1684974835230326,
          -7,
          -3.674125982742708,
          -7,
          -7,
          -7,
          -3.854427505787861,
          -7,
          -3.2328691051326137,
          -7,
          -7,
          -4.267746494644809,
          -3.724849087629386,
          -4.120612025542255,
          -7,
          -3.9215824403934163,
          -3.3369332662477835,
          -7,
          -7,
          -3.2220658425885866,
          -7,
          -7,
          -3.136773397821505,
          -7,
          -3.327563260187278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8171024042569233,
          -7,
          -3.025587450804147,
          -7,
          -3.415974411376566,
          -3.5388563856111075,
          -4.3102187625373105,
          -4.317791816053072,
          -3.8029104894190398,
          -4.730329986497589,
          -3.456298538454589,
          -3.6852937813867843,
          -4.613820687810423,
          -3.549755432008307,
          -3.2196967711811264,
          -7,
          -4.347954169894016,
          -7,
          -4.705953468599973,
          -2.777480925923896,
          -4.069631102620343,
          -4.215725664557567,
          -3.18479786250099,
          -4.110219223689404,
          -3.7531807480888677,
          -7,
          -4.692764104726101,
          -4.0198014777812645,
          -3.6551984824411914,
          -3.8711641328029494,
          -7,
          -7,
          -7,
          -7,
          -3.257671517702943,
          -3.176564776618749,
          -4.6963126949376415,
          -3.7631845706896083,
          -7,
          -7,
          -7,
          -7,
          -3.8820831889703804,
          -7,
          -3.857794693596045,
          -3.0436242167998198,
          -7,
          -4.2288511397148065,
          -3.6913025633834833,
          -7,
          -7,
          -7,
          -3.8257505813480277,
          -4.0780578669791865,
          -3.1177682949263725,
          -3.7746045457003254,
          -3.8934380930119987,
          -3.398139738199443,
          -3.5737995822157407,
          -4.168821463009824,
          -7,
          -7,
          -7,
          -3.565358624783057,
          -3.8310374856400253,
          -7,
          -5.000984731226351,
          -3.7199489403687105,
          -4.594288830951021,
          -3.4551495211798278,
          -3.846027675364379,
          -7,
          -3.1199389460651723,
          -3.9108377649926833,
          -7,
          -3.8472332339728976,
          -7,
          -7,
          -3.585667487180534,
          -3.066653852292839,
          -3.894620626740205,
          -3.4875625602563782,
          -4.267406418752904,
          -3.4531143980466226,
          -3.630882647692306,
          -4.039387677306854,
          -7,
          -3.6316273438088653,
          -3.3637012736897,
          -7,
          -3.397115031195473,
          -7,
          -3.4801507252732806,
          -3.6759106662919567,
          -3.640938348618988,
          -7,
          -7,
          -7,
          -3.4316853446860116,
          -7,
          -2.640136227278698,
          -2.94468003388131,
          -2.0203511131266407,
          -7,
          -3.0038911662369103,
          -2.6324934457316256,
          -3.3585059114902354,
          -2.661602373435377,
          -3.4497868469857735,
          -2.7722088296639598,
          -7,
          -2.709740945168942,
          -2.4309439531239745,
          -2.791690649020118,
          -7,
          -3.2872697292733806,
          -3.1484998267052453,
          -3.0507019092929966,
          -7,
          -7,
          -2.954724790979063,
          -3.187520720836463,
          -2.805228914203426,
          -2.7494050038058324,
          -2.6580909304879183,
          -7,
          -2.8373779732534894,
          -2.7265642161622448,
          -3.4413808849165113,
          -3.276440914085364,
          -3.2093156249993453,
          -3.189421836754017,
          -7,
          -2.911068786880192,
          -2.5992359578069637,
          -3.5229655954919865,
          -2.1528995963937474,
          -7,
          -2.9719712763997563,
          -1.8420407941839496,
          -7,
          -2.7431960814487013,
          -2.8784260410124705,
          -2.526691646157169,
          -2.9952590191890995,
          -3.4818724103106633,
          -2.281941933440825,
          -2.7584071921878865,
          -3.1931245983544616,
          -2.4237918130180067,
          -2.565035708058474,
          -2.786457682207476,
          -3.4234097277330933,
          -2.5161074400320955,
          -2.7776684326775474,
          -7,
          -3.0307346169761686,
          -3.0040346161083726,
          -3.1420764610732848,
          -3.221718441724624,
          -2.0422230763899947,
          -1.9552950764646821,
          -2.9215130698187295,
          -2.3158256288671404,
          -2.7943718474659938,
          -7,
          -7,
          -3.482158695411276,
          -2.5820092216061594,
          -2.5622928644564746,
          -1.7011887621408714,
          -2.4199041419919367,
          -2.3792450689395857,
          -7,
          -2.4269832351280023,
          -2.4527823002912648,
          -1.7975602137559035,
          -2.321134667242944,
          -1.6821531740483902,
          -7,
          -2.211375947146398,
          -2.7701152947871015,
          -2.3143090428641004,
          -2.7848765342355013,
          -2.780197258377976,
          -2.33306924358772,
          -3.4239009185284166,
          -2.4538277764478607,
          -3.495110520227484,
          -2.920558099058943,
          -3.214843848047698,
          -3.6961815871685237,
          -2.855809799467775,
          -7,
          -3.106269372399645,
          -3.0029711861626316,
          -2.569373909615046,
          -2.410022054320016,
          -3.485579476984679,
          -2.1720637697726377,
          -7,
          -2.4902929895560635,
          -1.7585400649078777,
          -3.8439176380063924,
          -7,
          -2.9908935802199035,
          -2.8326366275967034,
          -1.9425765714778218,
          -3.2074997233073055,
          -3.4674601095072637,
          -7,
          -3.1131073665204956,
          -2.4307198878632823,
          -2.1890111514077963,
          -2.0546768791557097,
          -3.2284516907144,
          -3.1051694279993316,
          -2.770009947428937,
          -3.4759615891924236,
          -2.6441571283550034,
          -3.4449811120879446,
          -7,
          -3.5055569386638217,
          -3.00446468164796,
          -3.660770643527697,
          -2.8772561331135864,
          -2.696065013692612,
          -2.8560144545033554,
          -3.344981413927258,
          -3.018977737412909,
          -7,
          -7,
          -3.1809855807867304,
          -3.1051694279993316,
          -2.957723742446469,
          -7,
          -7,
          -2.506505032404872,
          -2.602150459921541,
          -2.8913515837206996,
          -7,
          -7,
          -3.6419695977020594,
          -7,
          -2.866877814337499,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.205407384356316,
          -3.7868933252613157,
          -3.726890140741822,
          -7,
          -3.324725548379901,
          -7,
          -7,
          -7,
          -3.531095546870028,
          -2.978782076032242,
          -7,
          -2.5202137247557816,
          -3.707995746422929,
          -3.245101209250068,
          -7,
          -2.865991800126275,
          -3.6163704722912695,
          -7,
          -2.9277901740740364,
          -2.9449171643218968,
          -3.0687793630095612,
          -3.4352071032407476,
          -7,
          -3.353788044826781,
          -2.9378759549297913,
          -7,
          -3.550183864786063,
          -3.4671639659690903,
          -7,
          -3.2436993270506815,
          -7,
          -3.1267157036857394,
          -7,
          -7,
          -3.712733859069952,
          -7,
          -3.739493230781615,
          -3.0547346171400873,
          -7,
          -2.7913787118676137,
          -3.8356905714924254,
          -3.2995072987004876,
          -2.1668327392036955,
          -3.736953953783146,
          -3.466348528450199,
          -7,
          -3.3025473724874854,
          -3.3322364154914434,
          -3.0689073066358095,
          -3.5726973849826984,
          -2.957538878068554,
          -3.4358443659844413,
          -7,
          -7,
          -7,
          -3.7623033632877685,
          -2.9893756490247383,
          -2.4439703985762407,
          -7,
          -3.7550359337677714,
          -3.145248215775073,
          -2.791902403152317,
          -7,
          -7,
          -3.2561763441015508,
          -7,
          -4.004450352989225,
          -2.0655404049454833,
          -7,
          -7,
          -3.6931174038890284,
          -7,
          -3.842921120759982,
          -7,
          -7,
          -2.493297151524906,
          -7,
          -3.037745129269592,
          -7,
          -3.873494982256169,
          -7,
          -7,
          -3.4362686889120932,
          -7,
          -3.3281756614383227,
          -3.361058984763492,
          -7,
          -3.7035206480101697,
          -7,
          -7,
          -7,
          -3.510545010206612,
          -3.005854359779236,
          -3.9310508467773912,
          -7,
          -3.9734511440249345,
          -3.7601207852645677,
          -7,
          -7,
          -3.3709138298239774,
          -7,
          -2.8951769043575744,
          -7,
          -3.475283684857362,
          -3.455864634787528,
          -3.7500453120117676,
          -7,
          -3.477265995424853,
          -3.4872798164430687,
          -2.3209494269230264,
          -3.464638559095033,
          -7,
          -2.720731622155907,
          -3.0100348033976156,
          -2.998501514575574,
          -7,
          -3.250442182257414,
          -3.297174328047748,
          -2.9033225824533115,
          -3.2196967711811264,
          -2.037504615484121,
          -2.9718491303519903,
          -3.4777722083492573,
          -3.396838400023691,
          -7,
          -2.60439222660167,
          -7,
          -2.1929282505859278,
          -3.0389606070796815,
          -7,
          -7,
          -4.1465621131575565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5033366375564374,
          -3.7013088852280753,
          -3.046701692585523,
          -3.376622573828982,
          -7,
          -7,
          -3.7134065321676912,
          -3.72956972630197,
          -3.1812002415449867,
          -4.206150981596259,
          -3.357591847523441,
          -7,
          -7,
          -3.7577754910119254,
          -3.693529097671857,
          -7,
          -7,
          -7,
          -3.791690649020118,
          -3.7214808547700495,
          -3.792881745385397,
          -3.1051012445496426,
          -7,
          -3.3722367269416367,
          -7,
          -3.309133141070118,
          -3.8057047044338645,
          -7,
          -2.9714345133418503,
          -3.7389390312034796,
          -7,
          -7,
          -3.760497875226527,
          -7,
          -3.730136003996678,
          -7,
          -3.3377919265554117,
          -7,
          -3.7738412766815257,
          -7,
          -3.997779430865604,
          -3.07614031416888,
          -7,
          -3.020637463567606,
          -3.329194415088451,
          -3.792181496149679,
          -3.5471591213274176,
          -7,
          -2.451319129142515,
          -7,
          -3.3231833228365364,
          -3.6514718521990424,
          -7,
          -7,
          -7,
          -7,
          -3.522900459461583,
          -4.426136988786424,
          -7,
          -3.1773528270652496,
          -7,
          -3.3184390042001923,
          -7,
          -3.8010605298478555,
          -7,
          -7,
          -2.2337272822600673,
          -2.582883679648842,
          -7,
          -3.851869600729766,
          -3.4376395975003704,
          -2.690786555281818,
          -7,
          -7,
          -7,
          -3.716086853774832,
          -3.4235735197327357,
          -2.9628426812012423,
          -7,
          -2.5705429398818973,
          -2.3416732509867053,
          -3.151318765793846,
          -3.6587266773270137,
          -4.637702321658437,
          -7,
          -3.436719078227576,
          -2.901536158923322,
          -3.77952434332479,
          -3.108734108602365,
          -3.721068301797159,
          -1.9208404681336204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5075860397630105,
          -2.222088458466134,
          -3.406965750758948,
          -3.4104397862103464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.75815462196739,
          -3.6767850304192056,
          -7,
          -7,
          -3.0956342104345573,
          -3.8109713998222077,
          -7,
          -7,
          -2.432434774521513,
          -3.8287243271387914,
          -2.8644439099992676,
          -7,
          -3.301371093057613,
          -7,
          -7,
          -7,
          -2.2270393595261635,
          -4.0080889362915775,
          -2.6334684555795866,
          -2.4736859899176977,
          -7,
          -3.4955443375464483,
          -3.7561033715851053,
          -3.4192120226230758,
          -7,
          -3.40094072657035,
          -3.566555330883055,
          -7,
          -7,
          -7,
          -7,
          -3.327631347430798,
          -7,
          -7,
          -3.274058834676048,
          -3.7825442840100103,
          -7,
          -3.1960379407345236,
          -3.447412329358754,
          -3.795741020869244,
          -7,
          -3.203649241936576,
          -7,
          -7,
          -2.073589284256462,
          -3.5167336366163866,
          -3.182478057717082,
          -3.2942457161381182,
          -3.333850145102545,
          -3.3432115901797474,
          -7,
          -3.543012046377035,
          -4.600951125994174,
          -3.48061768932015,
          -7,
          -7,
          -7,
          -3.3165993020938607,
          -3.246400090154285,
          -2.783427117917317,
          -7,
          -2.905376069332856,
          -3.7311050512159203,
          -3.8312937443770094,
          -7,
          -3.9860547807696953,
          -3.756560043006683,
          -2.731881663179229,
          -7,
          -7,
          -3.4862207199417723,
          -3.4632507733927764,
          -4.008694523323237,
          -7,
          -3.5593479441958,
          -2.1673496219002173,
          -2.145962558639885,
          -7,
          -2.5622184925953624,
          -2.7248490876293854,
          -2.9545640899663494,
          -1.712289440733966,
          -2.450513036909619,
          -2.8763461592458195,
          -7,
          -7,
          -3.855700830835437,
          -7,
          -3.753046561626529,
          -7,
          -3.1801736812604093,
          -7,
          -2.871382288272447,
          -7,
          -3.7107940999303275,
          -2.9269654172207527,
          -4.105925546289804,
          -7,
          -7,
          -4.449277790579156,
          -3.337228805205703,
          -7,
          -4.162624140307846,
          -3.5080770088490123,
          -3.3723902909904426,
          -7,
          -7,
          -4.153883431744387,
          -4.318676760084946,
          -2.553515879304976,
          -7,
          -4.714631481192941,
          -2.932330894115136,
          -7,
          -4.40134883597978,
          -7,
          -5.095153653757149,
          -7,
          -3.7426017027800285,
          -3.7633281442736357,
          -7,
          -7,
          -4.301181972138315,
          -7,
          -3.3595848033967033,
          -2.5455361868239503,
          -4.115785192710546,
          -4.109291622066701,
          -7,
          -7,
          -3.9237101943965627,
          -7,
          -7,
          -4.300204051252466,
          -4.18359247818067,
          -2.485945462845539,
          -4.234416037567035,
          -3.2974088730612636,
          -4.091983332237311,
          -7,
          -7,
          -7,
          -3.904592609709625,
          -3.4621882878701635,
          -3.4138583422700264,
          -3.907008053689199,
          -3.753682170713773,
          -3.038909793675739,
          -7,
          -3.903496947335859,
          -7,
          -7,
          -7,
          -7,
          -3.3665630296290265,
          -7,
          -3.3779962559461034,
          -3.4730209701593884,
          -4.8072981986022025,
          -3.7311050512159203,
          -2.8325545294787067,
          -7,
          -3.2867908860202397,
          -7,
          -5.413279641863039,
          -3.4417736628051845,
          -3.8485996032997494,
          -7,
          -4.409138161153864,
          -2.9322405937904947,
          -3.700876708376904,
          -3.938519725176492,
          -7,
          -4.043440876244474,
          -3.50792330349193,
          -4.247752382497469,
          -2.715471538902324,
          -3.1459399887032697,
          -3.635241490628815,
          -3.9182925127553556,
          -3.6081686862660067,
          -7,
          -7,
          -3.9562933202213877,
          -4.086555575051295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.686061425390275,
          -2.6636381161507066,
          -2.5189523997656127,
          -3.7264011621029223,
          -2.9138138523837167,
          -2.9198296084259026,
          -3.373892352104008,
          -2.781885871793446,
          -2.087929919941919,
          -2.7080808104682315,
          -3.7168377232995247,
          -2.935339292710299,
          -2.6629565479888173,
          -2.7079570754392517,
          -3.5319257549406173,
          -3.3529779956963357,
          -2.874610650237315,
          -3.365441183394879,
          -7,
          -7,
          -2.6106192208808556,
          -3.448087666692341,
          -3.4572004127937683,
          -2.2381817777571724,
          -2.1908807431004385,
          -7,
          -3.4752643006050032,
          -7,
          -7,
          -2.5352347645179423,
          -3.005896289935211,
          -3.6734356400732615,
          -7,
          -3.0252473310667027,
          -2.519696767159853,
          -3.7683420586445333,
          -2.731876434589787,
          -7,
          -2.7557363026383275,
          -2.586179744185137,
          -7,
          -7,
          -1.15567179973304,
          -2.6179085419287893,
          -3.197648059295764,
          -7,
          -2.850714290418167,
          -2.9979685486693444,
          -2.750970984437319,
          -2.7349331100815006,
          -2.9253727683396926,
          -3.462654647851409,
          -3.7145812088395314,
          -2.566115951349753,
          -2.4822137286093358,
          -7,
          -3.4925275857610627,
          -7,
          -7,
          -3.143465871142305,
          -2.8309733973226505,
          -1.6351238441823128,
          -2.8354022910424757,
          -3.234567897635686,
          -3.195415296209372,
          -7,
          -4.06881642992222,
          -3.2681878052211655,
          -2.9828055470486436,
          -3.260230441084052,
          -2.6555865901357856,
          -2.5480127619342015,
          -2.5563025007672873,
          -7,
          -2.4313637641589874,
          -2.5427701169130144,
          -2.620780298632121,
          -2.0803859471859956,
          -2.2875372441329467,
          -2.211375947146398,
          -7,
          -1.9160150455495546,
          -2.825651857221624,
          -3.120714913022346,
          -3.4883391579275007,
          -2.6629756505352096,
          -2.810568529216413,
          -7,
          -4.139233459140505,
          -3.5761685196078083,
          -2.9855761533820546,
          -3.8750612633917,
          -3.0796559960555983,
          -3.353852142602988,
          -3.327790176166056,
          -2.9463430772106367,
          -1.7815613199209546,
          -2.547716115912941,
          -7,
          -2.6614069923906154,
          -7,
          -2.633276034450208,
          -2.604507788080989,
          -3.501013592678627,
          -3.710540447933297,
          -3.2074323856093794,
          -3.171360731962648,
          -2.066318439655697,
          -2.8562000460323604,
          -7,
          -7,
          -3.7100326990657537,
          -3.7198282862543346,
          -7,
          -3.724275869600789,
          -3.740323206382993,
          -7,
          -1.2675688224251873,
          -3.042654253167793,
          -7,
          -3.7257483329955483,
          -7,
          -7,
          -7,
          -3.249504090935526,
          -7,
          -2.649833933096992,
          -3.541745608431244,
          -3.6614813978436156,
          -7,
          -7,
          -7,
          -3.7456992266025058,
          -7,
          -2.913886068299728,
          -3.1551841596940076,
          -7,
          -3.4268906288777257,
          -3.866582677063549,
          -3.255754786643044,
          -7,
          -7,
          -2.8846695179666737,
          -7,
          -3.66133934000604,
          -7,
          -3.766635886310268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.303352677683149,
          -7,
          -7,
          -7,
          -3.171912521004568,
          -3.5303277897780863,
          -3.2949069106051923,
          -3.2132520521963968,
          -7,
          -7,
          -7,
          -3.0500702643674384,
          -3.923036668670786,
          -7,
          -3.7246853882373596,
          -3.3495845998050275,
          -2.962369335670021,
          -7,
          -7,
          -2.961421094066448,
          -3.010087846998524,
          -7,
          -4.267746494644809,
          -7,
          -7,
          -7,
          -3.177824971864682,
          -3.125481265700594,
          -2.828981954007923,
          -3.2691625654317447,
          -7,
          -7,
          -7,
          -3.5750379762374167,
          -7,
          -2.7129301630395437,
          -7,
          -3.2907022432878543,
          -2.7014816356209272,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.278125892353155,
          -7,
          -3.461798557525109,
          -3.8380931384455983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8606374167737547,
          -3.1815577738627865,
          -7,
          -7,
          -3.5039268041935103,
          -7,
          -7,
          -2.99563519459755,
          -7,
          -7,
          -4.173296366404801,
          -7,
          -3.166282067316571,
          -7,
          -7,
          -2.7980660232801418,
          -7,
          -3.1559430179718366,
          -7,
          -2.934119540809263,
          -3.2229764498933915,
          -3.5776066773625357,
          -3.3184807251745174,
          -7,
          -3.373095987078727,
          -3.2493537988389694,
          -3.13756508756235,
          -3.5692958622643274,
          -2.7708520116421442,
          -7,
          -7,
          -7,
          -2.641332438840177,
          -2.7489628612561616,
          -7,
          -3.8687619582120503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.485153349903652,
          -7,
          -2.99370069482035,
          -3.3105694127898815,
          -7,
          -7,
          -7,
          -3.0236639181977933,
          -2.9644167839824984,
          -7,
          -7,
          -2.751279103983342,
          -3.017555014414844,
          -2.9160150455495546,
          -7,
          -4.192316504702737,
          -3.179188820411169,
          -7,
          -7,
          -7,
          -3.9176017753699286,
          -7,
          -3.5384480517102173,
          -7,
          -3.0870712059065353,
          -7,
          -2.478630145582756,
          -3.5609820555862357,
          -7,
          -7,
          -4.380211241711606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.731627132118333,
          -3.7800291273373383,
          -2.9691245764056418,
          -3.4389377010955284,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.779704690689162,
          -3.1679668133956205,
          -7,
          -7,
          -2.927626962444954,
          -4.550057048211167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.483301952358167,
          -7,
          -3.1354506993455136,
          -3.373463721632369,
          -7,
          -4.073096393762054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.353820094897413,
          -7,
          -4.295325147042704,
          -7,
          -7,
          -3.4794121371941125,
          -7,
          -7,
          -2.9546283775072713,
          -3.335858911319818,
          -3.4802944600030066,
          -3.35869609957381,
          -3.400710636773231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3197304943302246,
          -7,
          -3.805296916157985,
          -7,
          -7,
          -7,
          -7,
          -2.5591317907861515,
          -2.858386792552758,
          -7,
          -3.4885507165004443,
          -4.067795935294864,
          -3.192232822924277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.17260293120986,
          -7,
          -7,
          -3.3432115901797474,
          -3.3501510667807066,
          -7,
          -4.13368426512856,
          -7,
          -7,
          -3.1936810295412816,
          -7,
          -7,
          -2.788521887222473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7152510288788494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4371160930480786,
          -7,
          -3.826722520168992,
          -3.85751341477669,
          -7,
          -7,
          -7,
          -2.703987002349199,
          -7,
          -3.587935348636356,
          -7,
          -3.637206111340114,
          -7,
          -7,
          -7,
          -2.540621409441836,
          -7,
          -2.6881527555915663,
          -2.534772444926707,
          -3.878981123393736,
          -3.348694190265541,
          -7,
          -7,
          -7,
          -3.2460059040760294,
          -3.2229764498933915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.453471233722936,
          -3.1152300105158863,
          -7,
          -7,
          -7,
          -4.092561159359732,
          -3.082066934285113,
          -7,
          -3.698231075449119,
          -7,
          -7,
          -2.3087583816224817,
          -3.4056877866727775,
          -3.685024785105714,
          -3.585686278452497,
          -3.528980940272137,
          -3.111262513659065,
          -3.601951404133522,
          -7,
          -4.652723254872325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.901821443893775,
          -7,
          -7,
          -2.808346035740395,
          -7,
          -3.1381447441794874,
          -7,
          -3.752355804153501,
          -7,
          -3.28397928423848,
          -3.6822353569025643,
          -7,
          -4.860972511322973,
          -3.6996122849986963,
          -4.533239230579834,
          -7,
          -3.358315640082196,
          -3.304945993154212,
          -2.2977273601138957,
          -7,
          -7,
          -7,
          -3.3106933123433606,
          -2.5471266979833507,
          -2.925901165149684,
          -3.440279213235588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2327286876731725,
          -7,
          -7,
          -4.301257940436712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.120530060860654,
          -3.9296629703711963,
          -7,
          -3.6634182122526795,
          -4.317729133728953,
          -7,
          -7,
          -3.357710695004818,
          -7,
          -4.2023248128295485,
          -3.6034691597338386,
          -7,
          -4.024588277146048,
          -7,
          -5.0880669506065805,
          -7,
          -3.8410214152574884,
          -4.126131407261984,
          -7,
          -7,
          -7,
          -7,
          -3.778794976552835,
          -3.876160084825628,
          -4.683020006620726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.462353068559615,
          -4.20227029773729,
          -4.319688893249499,
          -7,
          -3.9771197449137747,
          -3.7258930786484834,
          -3.9205928620848085,
          -3.7131544018372984,
          -4.341454309753056,
          -7,
          -3.8056015349439924,
          -3.0650815277143657,
          -3.5744942682853273,
          -3.1719572771940903,
          -3.851681614802406,
          -3.572147472450605,
          -7,
          -4.4472510844758615,
          -3.8614746688571686,
          -7,
          -7,
          -4.083556365821537,
          -2.0335075233494724,
          -7,
          -3.437834208405836,
          -4.073814191846539,
          -5.008000260913889,
          -7,
          -3.74170298395774,
          -7,
          -3.2591493237467004,
          -7,
          -4.929340575328879,
          -3.400192488592576,
          -7,
          -7,
          -3.7327354312288112,
          -3.4007263285869342,
          -3.4252789783622632,
          -3.667452952889954,
          -3.452348761457827,
          -3.8464608251293324,
          -3.9985807979185166,
          -3.7972121249212494,
          -2.929674317948588,
          -3.1980185268365826,
          -3.3676091497883256,
          -3.628899564420607,
          -3.6673731692458102,
          -7,
          -7,
          -3.9157479755368123,
          -4.0081954933208195,
          -7,
          -7,
          -7,
          -3.0806264869218056,
          -7,
          -2.344101045186752,
          -2.986473147467338,
          -2.5087907256424193,
          -7,
          -2.558365661331061,
          -2.581754942494377,
          -2.5306265232810774,
          -3.121395680707223,
          -2.641804498106114,
          -2.1247026428368407,
          -1.885361220031512,
          -2.9812006288632373,
          -2.350801612394977,
          -1.9931605754696946,
          -3.1425458840862763,
          -3.669409867287783,
          -2.048409430960333,
          -2.941594242145933,
          -3.268343913951065,
          -2.4896772916636984,
          -2.82013575187043,
          -3.1997551772534747,
          -2.6276218509897133,
          -2.270051437134896,
          -2.1799713887242653,
          -7,
          -2.3910955706122814,
          -7,
          -7,
          -3.3242391211845153,
          -3.2389377641260206,
          -3.3770609522814232,
          -7,
          -2.6849735288231216,
          -2.6233432833604797,
          -3.2638726768652235,
          -2.315476407977569,
          -7,
          -2.6532125137753435,
          -2.399294321418118,
          -7,
          -1.8920946026904806,
          -1.4018004294852757,
          -2.743313739231126,
          -2.5872297522473473,
          -2.582347494084358,
          -1.3364597338485296,
          -2.5100979751883425,
          -1.8567837983394515,
          -2.494154594018443,
          -3.2350231594952237,
          -3.6098077693287025,
          -3.061829307294699,
          -2.6582234545138173,
          -2.358382804215933,
          -7,
          -2.9602328731285126,
          -7,
          -3.1065308538223815,
          -7,
          -2.536242706838319,
          -2.669125374602297,
          -2.077179885446353,
          -2.5102576833804497,
          -3.0505730767551476,
          -7,
          -3.885756881069267,
          -7,
          -2.7015679850559273,
          -2.8555191556678,
          -2.442009159140952,
          -2.498749013677326,
          -1.5237464668115646,
          -2.7319914490189294,
          -2.4524253858850975,
          -2.8433433124477063,
          -2.636214267562268,
          -3.167169590408631,
          -3.063020444115889,
          -2.7701152947871015,
          -1.9160150455495546,
          -7,
          -2.2462446141581744,
          -2.939103062378906,
          -1.9028811413606512,
          -2.2920344359947364,
          -7,
          -7,
          -4.371640383837884,
          -3.243905770217521,
          -2.7732987475892314,
          -3.062707303658236,
          -2.980306438226822,
          -7,
          -2.6095655687376507,
          -3.1222280177113233,
          -1.4631105402768478,
          -2.5780021341872574,
          -7,
          -2.425968732272281,
          -7,
          -2.4688683796431086,
          -2.640481436970422,
          -3.437829806408219,
          -2.7415455167762097,
          -2.3397223955516253,
          -2.803229438326343,
          -1.7035306905732894,
          -2.457124626303409,
          -7,
          -7,
          -1.9530344572503566,
          -1.9978230807457253,
          -2.36285930295868,
          -2.3222192947339195,
          -3.24086112943202,
          -3.366982975977851,
          -1.7630875039477678,
          -7,
          -2.3554788867405914,
          -3.1099158630237933,
          -3.1550322287909704,
          -7,
          -2.885078384149224,
          -2.885785128783473,
          -2.8798601462734688,
          -2.826787238816292,
          -7,
          -7,
          -2.9132839017604186,
          -7,
          -2.8284450587956416,
          -3.1869563354654122,
          -7,
          -3.144750136698065,
          -3.228913405994688,
          -3.2195845262142546,
          -2.696465603994037,
          -3.2205003456147296,
          -3.0253058652647704,
          -3.0806264869218056,
          -3.100370545117563,
          -2.6135398090113924,
          -7,
          -3.233672845210665,
          -3.0542299098633974,
          -7,
          -3.018284308426531,
          -3.554489160003819,
          -7,
          -4.019697730980192,
          -4.020775488193558,
          -3.7265642161622448,
          -3.3710678622717363,
          -2.853736226085963,
          -7,
          -3.562015144502433,
          -2.7717052452427855,
          -3.705007959333336,
          -7,
          -7,
          -3.087460275326437,
          -2.3300143608606736,
          -3.208863467300243,
          -7,
          -7,
          -7,
          -3.544605409694115,
          -2.6032814432190676,
          -3.2942947280422334,
          -4.017325554561722,
          -2.673229066355951,
          -2.848202755608424,
          -7,
          -4.0327396052094935,
          -4.019407108018883,
          -4.083215862155997,
          -3.4550733759211245,
          -3.734519807346076,
          -3.5788735345046243,
          -3.5719028431953865,
          -7,
          -7,
          -7,
          -3.4781695335569047,
          -3.7288405683399715,
          -3.5144149205803688,
          -7,
          -3.1866738674997452,
          -3.557025722386383,
          -3.4724902344224757,
          -7,
          -7,
          -2.686099771995916,
          -3.4514026135974927,
          -2.010447450097471,
          -4.033021444682911,
          -3.0938884175896426,
          -7,
          -3.4530123911214554,
          -3.59402403573142,
          -2.3839067705717834,
          -3.1528317219727446,
          -2.238825325284622,
          -3.2562097835226953,
          -7,
          -3.7432745235119333,
          -3.6296474104571437,
          -7,
          -3.7480328941301435,
          -7,
          -7,
          -4.042260406689452,
          -2.4442997758061598,
          -2.8180210108772434,
          -7,
          -7,
          -2.552355286244995,
          -7,
          -3.343098976544499,
          -3.155427138639798,
          -3.7239479764316434,
          -4.104418820647595,
          -3.091736676786907,
          -7,
          -3.390581878550435,
          -7,
          -7,
          -2.0240724665968712,
          -2.9353632928474607,
          -4.03322264667025,
          -7,
          -3.4081721014970534,
          -7,
          -3.2732328340430454,
          -2.8749003837892295,
          -7,
          -4.069075809766398,
          -2.546989318695974,
          -3.1292708601213155,
          -2.628410218473732,
          -7,
          -7,
          -4.103187748850943,
          -3.4701531312754197,
          -3.24930320456868,
          -2.994976673649691,
          -4.028205119905443,
          -3.0018598590524785,
          -7,
          -7,
          -7,
          -2.8561244442423,
          -7,
          -3.190506781616284,
          -3.3619921087578137,
          -2.5192784084468745,
          -2.3934203469720283,
          -7,
          -3.3314677882910306,
          -3.452208248219225,
          -3.5825557388650933,
          -2.7139866398277115,
          -3.7467509290772156,
          -7,
          -3.784938081382093,
          -3.654176541877961,
          -2.978940969735289,
          -7,
          -3.697682586349585,
          -3.018069554387154,
          -7,
          -3.928190948038757,
          -7,
          -3.6741139861546683,
          -3.577491799837225,
          -3.8067225030761813,
          -4.1482940974347455,
          -7,
          -7,
          -1.583612163337186,
          -2.750810139591715,
          -7,
          -7,
          -2.888701812129037,
          -7,
          -7,
          -4.020112569565467,
          -2.7448280567121106,
          -3.417388646165674,
          -2.5983063786100478,
          -2.5033082439451104,
          -2.7211472552953344,
          -2.625958853800841,
          -7,
          -3.643329279843248,
          -7,
          -3.7281913985899466,
          -7,
          -4.029505525426577,
          -2.860676455064863,
          -7,
          -3.7302572532130167,
          -4.043676585602717,
          -2.926468642816955,
          -7,
          -4.018076063645795,
          -3.7759015788916743,
          -3.459279375509105,
          -7,
          -3.216655927791676,
          -3.2230135770130466,
          -3.495509648103409,
          -3.394381627679536,
          -3.3754075333087856,
          -2.8120959658119626,
          -3.2906281126259174,
          -4.0376654933508025,
          -2.714514051108974,
          -3.7329162073263795,
          -7,
          -7,
          -3.743979865241843,
          -4.032175376961363,
          -7,
          -4.021189299069938,
          -3.060060092379906,
          -7,
          -3.6186456812328025,
          -7,
          -3.2294827486062534,
          -2.5819281733903634,
          -4.0475085055940125,
          -2.8677325799583757,
          -3.187489385327816,
          -4.061829307294699,
          -3.4906255716095282,
          -3.366945663852573,
          -3.074121305906298,
          -4.056142262059052,
          -3.464079501542737,
          -3.854214921512205,
          -7,
          -4.165926549609097,
          -7,
          -3.499549625905149,
          -3.233721143084592,
          -3.550826031030187,
          -7,
          -2.132754928671835,
          -7,
          -2.5416347058561004,
          -2.924120174691022,
          -2.666892211066536,
          -2.5379814936848337,
          -7,
          -2.889777764467921,
          -3.787247880331954,
          -7,
          -2.7131053594927255,
          -3.0091586473368697,
          -2.507473984797903,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9800990996894745,
          -3.061389642585325,
          -2.737322108939681,
          -3.3425333465625737,
          -7,
          -3.431202884556517,
          -3.1347745687824307,
          -3.2765383925663363,
          -7,
          -7,
          -3.6075979772916353,
          -3.1652814310406994,
          -4.0678516605123525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.02428037604708,
          -3.2252723503527463,
          -2.673941998634088,
          -7,
          -7,
          -7,
          -7,
          -3.198067680193197,
          -3.0861224464207355,
          -7,
          -4.043872912391425,
          -3.3258966620220436,
          -3.4729757345942285,
          -2.8068580295188172,
          -3.07240746953829,
          -3.2935098730581442,
          -7,
          -7,
          -1.5883647214454781,
          -2.8253539818184996,
          -1.80294087559935,
          -3.2661532687922707,
          -3.1156388335343226,
          -3.747489492258673,
          -7,
          -3.554125581513013,
          -2.9541547643169124,
          -3.0763042807313594,
          -2.269077790844336,
          -3.1404223298412495,
          -3.325233362316072,
          -2.9494275412788675,
          -3.74170298395774,
          -7,
          -3.7579271831133294,
          -3.3317308928154574,
          -3.1492533346704406,
          -7,
          -3.7298125071609354,
          -3.1048284036536553,
          -3.4272831961911443,
          -2.422127038242261,
          -4.019116290447073,
          -2.939447934040266,
          -3.225356280749977,
          -3.7555699806288,
          -2.9906120389336768,
          -2.808698501861456,
          -2.947083883460867,
          -2.8185435657769307,
          -4.02645154573824,
          -3.3530872831590104,
          -7,
          -4.046339055604809,
          -3.141951195862753,
          -3.376576957056512,
          -2.9567399759502986,
          -2.9159601514735285,
          -3.5083411471001154,
          -3.475053440975798,
          -2.676954760854566,
          -2.6113692154627337,
          -3.2990928815880203,
          -2.5860368997013805,
          -7,
          -7,
          -7,
          -3.3506356082589543,
          -2.9459914424728573,
          -7,
          -3.563639269509036,
          -3.3214258105330647,
          -4.030073230712518,
          -3.0826417781571314,
          -3.5569855749879813,
          -3.221877701616761,
          -7,
          -3.7514330818193473,
          -2.702676665373566,
          -7,
          -3.436220973274136,
          -2.7870807690048474,
          -3.1947717439536922,
          -7,
          -2.8865712918143793,
          -3.489977472033322,
          -2.972175602200704,
          -7,
          -3.2037320465140935,
          -7,
          -3.12830231716435,
          -3.1269427179442277,
          -3.4056024552093134,
          -3.304957028811091,
          -4.021891873919109,
          -7,
          -2.982340825938027,
          -4.030518764843543,
          -7,
          -3.442362164383881,
          -3.858115932190066,
          -3.3337293231565988,
          -2.375229755914513,
          -7,
          -7,
          -2.598013466981827,
          -2.84293686639324,
          -4.457154942486584,
          -2.809100386742738,
          -3.6755315934532256,
          -2.610647181831733,
          -3.039587604005866,
          -3.1329441849619486,
          -1.5492895682531027,
          -2.5549600128917778,
          -2.248287721868922,
          -3.6339731557896737,
          -3.226118985903011,
          -3.3313995058663104,
          -2.414328326814164,
          -3.5417040232842885,
          -3.4781334281005174,
          -2.4434754985754674,
          -7,
          -2.9653014978707772,
          -3.6612446089593336,
          -3.5989955722341023,
          -3.379879362206697,
          -2.566006465061365,
          -2.864147294190161,
          -4.1957198117305765,
          -3.5401260471738896,
          -3.4034980044519982,
          -4.087142279383808,
          -2.2391351005633666,
          -3.108048462345716,
          -3.312555128668243,
          -3.4505010436345014,
          -4.107006346381544,
          -4.076786033508079,
          -3.645520514905874,
          -3.766710207262259,
          -3.0516518159075736,
          -3.040550745877968,
          -2.193891013244078,
          -3.5713982332029914,
          -3.063455909025938,
          -2.581104556080377,
          -3.1010101904226492,
          -2.3805428677942175,
          -3.0636529945906887,
          -3.184691430817599,
          -2.8053644286916284,
          -2.716003343634799,
          -2.9127201197567394,
          -2.4356514252474963,
          -2.696283563298114,
          -2.7791754592501485,
          -4.064944426038617,
          -2.416933359904303,
          -3.2662839740877176,
          -3.5476106349355865,
          -3.0332896932905147,
          -2.9233735621008576,
          -2.4300511544770096,
          -7,
          -2.4384715316007095,
          -2.7042644827295077,
          -3.750948369230112,
          -3.7289621797138666,
          -3.2178931872102416,
          -7,
          -2.677128774472802,
          -7,
          -3.472452387696761,
          -1.910701486221636,
          -3.042395011075458,
          -4.021478732257528,
          -3.0132305819648155,
          -3.136931851267557,
          -2.6217016393133123,
          -3.1917924531631767,
          -2.234347416698314,
          -3.259779639261108,
          -1.7150023967551769,
          -3.0905786601228313,
          -7,
          -2.224120397960542,
          -2.7328022131463108,
          -3.4348881208673157,
          -2.9122632327080114,
          -4.034468022755043,
          -2.3196737645957173,
          -2.9868750434247,
          -3.6281552970774773,
          -7,
          -4.020692678682027,
          -4.017492446477275,
          -7,
          -3.703635237583896,
          -1.44360833679831,
          -2.185839694183446,
          -1.483485671315326,
          -2.703864326067068,
          -2.308196304976814,
          -1.1905309123113172,
          -2.114901864243015,
          -2.463856586950606,
          -2.7969006863964827,
          -0.8404898135031628,
          -3.3236645356081,
          -1.629136988000415,
          -1.7271583656818212,
          -1.970306441009925,
          -3.4820155764507117,
          -2.253473250403829,
          -1.878094420045513,
          -2.225309281725863,
          -3.2713768718940743,
          -3.259474419531075,
          -2.244744296231608,
          -3.4369970267054812,
          -2.332478065449526,
          -2.655360107882245,
          -2.0649877782305905,
          -7,
          -0.9610558337573624,
          -3.7216045442801375,
          -3.725339815909737,
          -2.801025316543808,
          -1.8397649061247883,
          -2.1928042040338416,
          -3.7176289019215365,
          -2.5852897810780693,
          -1.6739954057443227,
          -2.746673112470323,
          -1.939760173603782,
          -7,
          -2.1453328670424816,
          -1.3188443294618295,
          -7,
          -2.7703200637483674,
          -2.837307795588005,
          -2.0608122638773674,
          -2.220672589241897,
          -2.8601382850306134,
          -2.301665995794215,
          -2.149998186291342,
          -2.784260582566084,
          -2.085283143653935,
          -1.9298934287203138,
          -2.4282882881236194,
          -3.7207379770184255,
          -1.8384513851399538,
          -1.9490890981808844,
          -7,
          -1.1648593169081123,
          -7,
          -3.4246775029107854,
          -2.3974993739082215,
          -2.0508610740801623,
          -1.7005207901605823,
          -1.926735963784648,
          -2.146381194812135,
          -3.064233296034753,
          -3.3406423775607053,
          -3.151982395457474,
          -2.9952362102039363,
          -1.7975996627959798,
          -2.7095526127800826,
          -1.8578471069651707,
          -1.7624394624489559,
          -2.501173415058967,
          -4.018866863150907,
          -1.6571173838987634,
          -1.6822034347539272,
          -1.8152930583882103,
          -3.244524511570084,
          -1.6289763335903875,
          -2.3143090428641004,
          -2.825651857221624,
          -2.2462446141581744,
          -7,
          -2.162485955739945,
          -1.8091508569124712,
          -2.7308591487495004,
          -4.02197445511006,
          -4.018700498666243,
          -2.5015776958751967,
          -3.154863354315963,
          -2.279265624615706,
          -2.246163347678497,
          -1.2379289660703994,
          -2.549399993299562,
          -1.2948061551940808,
          -1.9204875806010393,
          -2.4044435823115102,
          -1.841583157038063,
          -3.561101383649056,
          -2.173298358871511,
          -7,
          -1.7806196381984027,
          -1.5696117214590237,
          -2.827956395600868,
          -7,
          -2.2675069615203176,
          -2.6700911622507957,
          -1.0848064277366656,
          -2.7212215815105543,
          -3.7322731057085923,
          -7,
          -3.0647075120616503,
          -3.5471591213274176,
          -3.322880573098306,
          -2.9117310971035075,
          -1.7999169191226552,
          -3.0257153839013404,
          -3.3798853986437485,
          -3.08082683498178,
          -2.6229310093415856,
          -3.026655813877043,
          -3.1294481922680633,
          -3.198499990015866,
          -2.6204563902137306,
          -2.170120274429075,
          -2.185409929405979,
          -1.8894676369974646,
          -2.514298659173731,
          -3.5593679094633317,
          -2.266056211278075,
          -3.2412973871099933,
          -2.634282198523119,
          -2.7572761297037145,
          -3.3183555502257036,
          -2.066666623656604,
          -3.198067680193197,
          -2.9621719559993496,
          -1.7853298350107671,
          -3.023458237643675,
          -2.396164462603818,
          -3.0232112923288885,
          -3.326949994165999,
          -2.320647574215737,
          -3.0666571634232116,
          -2.477452880802274,
          -2.6487727136426256,
          -3.7471786713601642,
          -4.017283821560018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.420698202908807,
          -7,
          -7,
          -3.63499934000661,
          -7,
          -7,
          -7,
          -7,
          -3.2244467303362647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.18620267890855,
          -7,
          -7,
          -3.9286006598445242,
          -3.593874237290987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.587042737459709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3651134316275773,
          -4.198983753867747,
          -7,
          -7,
          -2.735235868261925,
          -7,
          -2.834844405648704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0890804641352507,
          -7,
          -3.4722077512253953,
          -4.002900068611387,
          -7,
          -3.689486448364248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.17805561153123,
          -3.250447110981036,
          -7,
          -7,
          -2.900093901543398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.836612072683855,
          -7,
          -3.485153349903652,
          -7,
          -7,
          -2.940861147914118,
          -3.470116353151004,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.865991800126275,
          -7,
          -7,
          -2.856906803417547,
          -3.863382348440788,
          -2.950638636498252,
          -7,
          -7,
          -7,
          -3.27315566043433,
          -7,
          -7,
          -7,
          -4.254427221540668,
          -7,
          -7,
          -7,
          -4.122346966255079,
          -7,
          -7,
          -3.726808682524964,
          -3.3069073090904255,
          -3.7439172145663298,
          -7,
          -7,
          -3.712060142461075,
          -3.723701893991268,
          -2.327507119163714,
          -7,
          -7,
          -7,
          -7,
          -3.910304168068569,
          -7,
          -3.9719249491841913,
          -2.670483178363864,
          -7,
          -7,
          -7,
          -4.232373429428926,
          -7,
          -7,
          -7,
          -7,
          -3.6848453616444123,
          -2.693323823347178,
          -7,
          -7,
          -7,
          -3.287689783936075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.161996525422446,
          -7,
          -4.257942430573135,
          -2.9832753825780216,
          -7,
          -7,
          -7,
          -7,
          -3.718169405391307,
          -4.182528775278964,
          -7,
          -7,
          -7,
          -7,
          -4.286265553793083,
          -7,
          -7,
          -7,
          -3.7274599208579087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3644178393114275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.78593457821307,
          -7,
          -3.514851216368609,
          -7,
          -3.9589459324939362,
          -3.119610411536237,
          -7,
          -3.0308526157493176,
          -3.584839865239925,
          -3.7280289544205187,
          -7,
          -3.7374312005145827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.106530853822381,
          -7,
          -4.412057146690156,
          -7,
          -2.8527848686805477,
          -7,
          -3.5034274846401083,
          -7,
          -3.738304793074105,
          -7,
          -7,
          -3.272445019048976,
          -3.783331762887424,
          -7,
          -7,
          -2.769574240376453,
          -2.5909452789636784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.476940260975887,
          -3.884228769632604,
          -3.285532305727194,
          -3.237124377704049,
          -7,
          -7,
          -7,
          -3.0136796972911926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.910948213864197,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.937166703715033,
          -7,
          -3.0914471173065543,
          -3.7151673578484576,
          -3.749736315569061,
          -7,
          -7,
          -2.8317098425969034,
          -2.9912260756924947,
          -2.325794612183868,
          -7,
          -2.8115671210045012,
          -7,
          -7,
          -7,
          -2.7186932752898665,
          -3.9702073588068547,
          -2.998225795694823,
          -7,
          -7,
          -3.733277533932582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7795964912578244,
          -3.3912880485952974,
          -7,
          -7,
          -7,
          -2.5550474356478134,
          -3.588943642740015,
          -7,
          -3.4612170595896647,
          -7,
          -7,
          -3.886490725172482,
          -3.4565178578052627,
          -3.029485236506347,
          -3.2445863372491552,
          -7,
          -7,
          -7,
          -3.7877437716464666,
          -3.013794686966823,
          -7,
          -7,
          -7,
          -7,
          -3.3763944420372662,
          -3.4243915544102776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7077404542737713,
          -7,
          -7,
          -4.0344164421362345,
          -3.496129785515922,
          -4.057901706344098,
          -7,
          -3.5239631265725575,
          -4.432235498890437,
          -3.6897970549034977,
          -7,
          -7,
          -7,
          -7,
          -3.695043658821294,
          -7,
          -7,
          -7,
          -7,
          -3.499687082618404,
          -7,
          -7,
          -7,
          -3.916137983107175,
          -7,
          -3.2509929904658788,
          -7,
          -3.6321534835106326,
          -2.694252093463937,
          -3.336335493917067,
          -3.749388431581154,
          -3.2054750367408906,
          -3.6643520357957935,
          -2.643945912748067,
          -1.842240185272119,
          -3.4004567198107583,
          -2.2484416866839902,
          -2.8924220014861617,
          -2.396593009974529,
          -2.9636607158787847,
          -2.963199289389065,
          -3.083991358117948,
          -2.081597839444891,
          -3.446209130517621,
          -2.958316395227076,
          -2.4707024308114014,
          -3.385010124593375,
          -2.908270499495724,
          -7,
          -4.052204083450003,
          -3.0314277016763533,
          -2.1815879907462583,
          -2.5260490176773085,
          -7,
          -3.124363208685011,
          -3.2404584771500917,
          -2.665220071457662,
          -1.4459683637782925,
          -3.0044408002874246,
          -3.5344322734758764,
          -3.4924111373136824,
          -2.9252223797699557,
          -2.414061283620403,
          -7,
          -3.5777980724041525,
          -1.9439033000780936,
          -2.635871988956423,
          -2.812438617225954,
          -7,
          -3.361547557812611,
          -3.273471503089958,
          -3.759894374025499,
          -2.361465501680469,
          -2.9368256236283132,
          -3.7831886910752575,
          -2.5003513413022445,
          -7,
          -7,
          -3.4558826011997703,
          -3.701508905718383,
          -3.1947917577219247,
          -7,
          -3.0460350401114673,
          -7,
          -7,
          -3.399370820918436,
          -3.7390340870857917,
          -7,
          -7,
          -3.2595512186026316,
          -2.602411941428692,
          -4.709664209579645,
          -7,
          -7,
          -7,
          -3.2326542662501723,
          -7,
          -4.934722274046495,
          -3.351906688008789,
          -4.006915080181949,
          -7,
          -3.616160312847583,
          -2.7245865742611057,
          -3.8549332403885326,
          -2.5295307808865464,
          -2.9618308160440634,
          -2.559179629032332,
          -2.7381713171231103,
          -3.157444175325761,
          -7,
          -2.8965309686284746,
          -3.2922745358653924,
          -3.871222556759707,
          -4.076115148448237,
          -7,
          -7,
          -3.646913208595694,
          -3.770041554319669,
          -3.3462551493613857,
          -7,
          -7,
          -2.795482766475396,
          -2.9110122544187993,
          -1.7415820477549837,
          -3.307282047033346,
          -2.379546464195344,
          -2.3460594330525737,
          -1.948769918041402,
          -2.3435613799028485,
          -1.688607900299527,
          -7,
          -3.6530194510996132,
          -2.2695596400388207,
          -2.79309160017658,
          -2.537103861234642,
          -2.783958521961391,
          -2.3977571093297247,
          -2.4296054845026487,
          -2.1925111879673103,
          -2.2481962673843716,
          -1.9878764752313967,
          -1.8917409426693867,
          -2.100090986381226,
          -2.121744173030045,
          -2.3733718171813005,
          -2.164352855784437,
          -3.7500453120117676,
          -3.554004321011903,
          -7,
          -2.199125362687427,
          -2.5224442335063197,
          -3.64777405026883,
          -2.2856890592745738,
          -2.217655493624378,
          -1.849699039591056,
          -3.151574127994361,
          -2.2109869738321453,
          -3.6183619311098782,
          -2.2036819649870214,
          -3.827756862978617,
          -3.3234583668494677,
          -7,
          -2.3399176726790794,
          -3.3337494624819706,
          -2.9492924014120256,
          -2.469190620933241,
          -3.431202884556517,
          -1.020829485891193,
          -2.6301504001043488,
          -1.7561179536256082,
          -7,
          -2.902456178608144,
          -3.2776092143040914,
          -1.8510599199240134,
          -1.7559902827779956,
          -2.6348801407665263,
          -3.2604291755779347,
          -3.8507074853745373,
          -2.9201978896837995,
          -1.7801460365337847,
          -2.0639897471525535,
          -2.60569674355833,
          -2.169885344384398,
          -3.7740057302582093,
          -2.330748972067424,
          -3.348629326628365,
          -1.246613541615036,
          -2.888580615662831,
          -2.4209637116600056,
          -2.528434597195507,
          -7,
          -1.8596286553271737,
          -2.1264370197877,
          -3.4743619760326307,
          -2.750079631382911,
          -1.8025625849883842,
          -7,
          -3.2225864233903896,
          -2.0750063044594707,
          -3.2984709911247934,
          -3.0872133412316147,
          -2.7456556904908056,
          -2.7848765342355013,
          -3.120714913022346,
          -2.939103062378906,
          -2.162485955739945,
          -7,
          -2.0644579892269186,
          -2.0139544368112854,
          -7,
          -7,
          -2.1213337939445793,
          -1.5093059380910636,
          -2.7914274668192127,
          -1.6390359691991763,
          -2.193720747359399,
          -2.2772024156793007,
          -1.7056024795477285,
          -2.891080064811009,
          -1.913548957906518,
          -7,
          -2.442387532793123,
          -7,
          -2.782984220976423,
          -3.613471827163333,
          -3.9265996539070276,
          -1.8280924946729211,
          -7,
          -3.271066772286538,
          -3.4055171069763763,
          -2.014307391119922,
          -7,
          -2.885078384149224,
          -3.632356046239073,
          -3.631240780235509,
          -3.6429588794097905,
          -7,
          -2.6465017500316117,
          -1.4477083517730727,
          -1.9761165933464382,
          -7,
          -7,
          -2.182396242715304,
          -7,
          -7,
          -7,
          -3.0709609158009337,
          -3.4954055631461936,
          -7,
          -3.2664668954402414,
          -1.9430504992721556,
          -2.9652539784237364,
          -3.080355870349396,
          -7,
          -2.8166028104026988,
          -7,
          -7,
          -3.317190430361258,
          -7,
          -7,
          -2.951580344903392,
          -1.7694049362660398,
          -3.8036619232362243,
          -7,
          -7,
          -7,
          -7,
          -1.8592133762958247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3941013020400446,
          -3.337459261290656,
          -7,
          -7,
          -3.7594007119061725,
          -7,
          -7,
          -7,
          -7,
          -4.2316224841065795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3534353378561645,
          -3.927319024959656,
          -7,
          -2.775893494557353,
          -4.110320296840297,
          -7,
          -7,
          -7,
          -7,
          -3.328787200354535,
          -7,
          -4.0921180144435105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.143723465259768,
          -7,
          -7,
          -7,
          -7,
          -2.931118710592187,
          -3.1789769472931693,
          -7,
          -7,
          -7,
          -2.61874519875888,
          -3.9123868126570245,
          -7,
          -3.4659278562887446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9813655090785445,
          -3.285557309007774,
          -7,
          -7,
          -2.868840287093479,
          -3.616820471794698,
          -7,
          -7,
          -3.5150786750759226,
          -7,
          -7,
          -7,
          -7,
          -3.5363058723510337,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1389865023728007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153082804361832,
          -7,
          -4.049799277918987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.172281761455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3492775274679554,
          -3.3994141053637703,
          -3.6924944075030846,
          -7,
          -7,
          -7,
          -7,
          -3.443610631649284,
          -2.191031608848618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.76015850899809,
          -7,
          -7,
          -2.7556208080010745,
          -4.395155962401246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.992658696801893,
          -3.570776368794748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058539897939781,
          -3.4847979243318843,
          -4.176525336535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.083789188287978,
          -3.872272846224205,
          -7,
          -7,
          -7,
          -4.250017239260571,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.885193069546282,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9601376748637946,
          -7,
          -4.297147471801269,
          -7,
          -7,
          -4.099578979292946,
          -7,
          -7,
          -7,
          -7,
          -3.492061604512599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4348881208673157,
          -7,
          -7,
          -2.6076625217766205,
          -7,
          -2.965000000666886,
          -7,
          -3.074816440645175,
          -7,
          -7,
          -3.496445291873353,
          -3.473632926873841,
          -7,
          -3.500099191915723,
          -3.328639027551356,
          -2.992387809283771,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.041424605049602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2382035881544415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.744840396785379,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.153936754460935,
          -7,
          -3.698162707576105,
          -7,
          -3.762886868437604,
          -7,
          -7,
          -7,
          -3.7224693858840308,
          -7,
          -3.2159458392045663,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.930066690773242,
          -3.9320169064342014,
          -7,
          -4.00114935814922,
          -7,
          -7,
          -7,
          -7,
          -3.512550992904211,
          -3.5949447366950835,
          -7,
          -7,
          -3.3096301674258988,
          -3.1812717715594614,
          -4.573591603576932,
          -7,
          -7,
          -7,
          -7,
          -3.807940721215499,
          -3.688330818112266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.861468694204958,
          -4.400157923390449,
          -4.112240278641509,
          -7,
          -3.8409212001987716,
          -3.9802389553242405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9109310770872527,
          -7,
          -7,
          -3.824949798930412,
          -4.777223765819916,
          -7,
          -7,
          -4.7187424355110865,
          -3.0845584053656787,
          -3.3154980294974736,
          -7,
          -3.340013289599537,
          -7,
          -3.1936810295412816,
          -7,
          -4.724832720466561,
          -4.699863730746263,
          -3.1739143398014065,
          -7,
          -4.203078237036357,
          -3.4346513050366094,
          -7,
          -4.0262880620239425,
          -7,
          -5.088214077441379,
          -7,
          -3.5409048153170177,
          -4.12881914219451,
          -7,
          -4.66505539251443,
          -7,
          -7,
          -3.82516637225655,
          -3.8785505177314277,
          -4.081653294769661,
          -4.338017993470888,
          -4.212453961040276,
          -7,
          -7,
          -7,
          -7,
          -3.9034427079849827,
          -4.144439280361414,
          -7,
          -4.375873853024666,
          -3.706888394981618,
          -3.9248992640142837,
          -3.7200765727681406,
          -7,
          -7,
          -4.538314788965302,
          -4.023417089841105,
          -3.5839917991983166,
          -2.883231607770849,
          -4.267120079501657,
          -3.988005704058146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.085040706742194,
          -3.7293268096468606,
          -7,
          -3.693612645861557,
          -4.146493084391314,
          -4.861939586069795,
          -7,
          -3.7481880270062002,
          -7,
          -3.9588981947107715,
          -7,
          -5.105576601200196,
          -3.500030534183874,
          -3.633998375410592,
          -7,
          -3.294786768279219,
          -3.23914300480277,
          -3.4258672276790443,
          -7,
          -3.9317882969633793,
          -7,
          -2.8004661324505897,
          -7,
          -7,
          -4.101997329797019,
          -4.005113751523483,
          -7,
          -3.780616977232055,
          -7,
          -7,
          -4.138513214157753,
          -4.009960531470598,
          -7,
          -7,
          -7,
          -2.2017384166617116,
          -3.4686426683915115,
          -2.737597390620243,
          -3.4763968267253302,
          -2.998940114940036,
          -2.535610545908793,
          -2.5140494227353822,
          -2.283784282700699,
          -2.3814622108393566,
          -3.13481437032046,
          -7,
          -1.7387948376762659,
          -2.6229044753882,
          -2.34499385193559,
          -2.83803909146875,
          -2.1808033611434947,
          -2.6097468199942533,
          -2.9722645673937236,
          -1.2646125313574494,
          -2.3083180985067657,
          -2.683947130751512,
          -3.2135177569963047,
          -2.9808471031895913,
          -1.9337003600874467,
          -1.8991237997743422,
          -3.101403350555331,
          -3.6093809442507068,
          -2.449092531119419,
          -1.7087205168985131,
          -2.397592434038117,
          -7,
          -3.2235716481850916,
          -3.0206850232239995,
          -2.8572763824080747,
          -7,
          -2.334202350575515,
          -3.3692622539148505,
          -1.6862127738782688,
          -3.2586372827240764,
          -7,
          -7,
          -2.6751200346244075,
          -2.304275050477128,
          -2.6554585929400747,
          -2.4513677038686126,
          -3.0610753236297916,
          -2.1449332770652947,
          -2.250420002308894,
          -2.104163534134702,
          -3.3085644135612386,
          -2.6286443222846065,
          -3.4138025167693513,
          -3.539786789252412,
          -2.5785326019327033,
          -2.4878451201114355,
          -3.1453000192560077,
          -3.3002693145303565,
          -7,
          -2.8442996228070254,
          -2.360376996726634,
          -1.8434622773199978,
          -2.570136677474439,
          -3.153052275067109,
          -2.857588141136608,
          -3.0790605919332488,
          -1.97657921864011,
          -2.8898617212581885,
          -2.9245377177754897,
          -3.2880255353883627,
          -7,
          -2.067124016518159,
          -1.8695250628572273,
          -2.677910974071308,
          -3.149465450995452,
          -1.9729269308656483,
          -7,
          -2.798148207810744,
          -3.3151703553952925,
          -2.605753836593265,
          -3.480581786829169,
          -2.312236026195126,
          -2.780197258377976,
          -3.4883391579275007,
          -1.9028811413606512,
          -1.8091508569124712,
          -2.0644579892269186,
          -7,
          -2.1318324445562005,
          -7,
          -7,
          -3.1684974835230326,
          -2.599155000684555,
          -2.6676863818028047,
          -2.5483894181329183,
          -2.601895837393877,
          -2.849265817161557,
          -1.6458759840538448,
          -2.396443216311737,
          -1.8307405759693782,
          -2.69810054562339,
          -2.514813294999285,
          -3.0963885466873666,
          -7,
          -3.4079854213081364,
          -2.726808682524964,
          -3.045948538105334,
          -7,
          -3.0979510709941502,
          -7,
          -1.9768742733499245,
          -3.2581581933407944,
          -2.4802944600030066,
          -7,
          -2.370698092575577,
          -7,
          -7,
          -2.429752280002408,
          -2.483990181949066,
          -1.7658547474657904,
          -2.9566485792052033,
          -3.197831693328903,
          -1.937676229923422,
          -2.8353734524700087,
          -7,
          -7,
          -1.9450306778782789,
          -3.0225658278987413,
          -2.895422546039408,
          -2.6111437334348,
          -2.134692413648349,
          -2.872239542709607,
          -2.6327103038329542,
          -7,
          -2.660549282517093,
          -2.606112535339159,
          -7,
          -2.7212428392417465,
          -2.9481683617271317,
          -7,
          -2.0222763947111524,
          -2.3830455675834847,
          -2.25433319950825,
          -2.807873132003332,
          -7,
          -2.2642273477562327,
          -3.089551882886454,
          -2.01983661903724,
          -2.670802284260944,
          -2.9763499790032735,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.004536317851323,
          -7,
          -7,
          -4.905258749576383,
          -7,
          -7,
          -7,
          -7,
          -4.227732489846626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.746925965479895,
          -7,
          -7,
          -3.2415464805965484,
          -3.500452781846228,
          -7,
          -7,
          -7,
          -3.126780577012009,
          -3.296665190261531,
          -7,
          -4.392292361088971,
          -2.9457147140598603,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1431928557306,
          -7,
          -7,
          -7,
          -7,
          -3.6970548922725746,
          -7,
          -7,
          -7,
          -7,
          -3.371437317404101,
          -3.406194097216772,
          -7,
          -3.6345276494290326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0974233099838835,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.646047089387669,
          -7,
          -7,
          -4.428371322869534,
          -7,
          -3.1559430179718366,
          -7,
          -7,
          -7,
          -7,
          -3.1344958558346736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3847117429382823,
          -7,
          -3.8700933294312776,
          -7,
          -3.742764396661798,
          -7,
          -7,
          -7,
          -3.3771240423464564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.00026049854739,
          -7,
          -7,
          -7,
          -3.6872613462435067,
          -4.087852375163169,
          -7,
          -7,
          -7,
          -7,
          -2.600955339568225,
          -3.238798562713917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8558143392341657,
          -3.1806992012960347,
          -7,
          -7,
          -4.394491080756056,
          -7,
          -3.5296869537729165,
          -7,
          -7,
          -7,
          -3.270700005235491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4504415720858184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.549211771460929,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.910464315995614,
          -7,
          -7,
          -3.9480276519900452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9528408566757016,
          -7,
          -4.293804359919337,
          -7,
          -3.2897375563017555,
          -3.7312183500213,
          -3.236537261488694,
          -2.773217411418584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2895889525425965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1922537448805817,
          -7,
          -7,
          -7,
          -3.0461047872460387,
          -7,
          -7,
          -3.0874264570362855,
          -7,
          -7,
          -7,
          -3.589241947538832,
          -7,
          -7,
          -7,
          -3.1245042248342823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.641027688177414,
          -3.644635503768153,
          -3.849265817161557,
          -4.079933035415702,
          -7,
          -7,
          -7,
          -2.9818186071706636,
          -7,
          -7,
          -3.435525851498655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3016415253209725,
          -7,
          -7,
          -7,
          -7,
          -3.210853365314893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5521813388393357,
          -7,
          -7,
          -7,
          -3.628368492182033,
          -3.4219328132785085,
          -3.84244697285584,
          -7,
          -3.1839644940529617,
          -7,
          -7,
          -7,
          -2.840022407303227,
          -7,
          -3.5105003274058215,
          -2.681618065583093,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.442793225939769,
          -7,
          -3.29269900304393,
          -7,
          -7,
          -2.925949152253038,
          -7,
          -7,
          -4.298918543005097,
          -7,
          -7,
          -3.3473300153169503,
          -3.39375064034808,
          -3.38070858592305,
          -3.577836341292744,
          -3.8256857080217586,
          -7,
          -3.5943925503754266,
          -3.4602963267574753,
          -4.652678808009644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3733718171813005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.747023177451628,
          -7,
          -2.966610986681934,
          -7,
          -7,
          -7,
          -4.397522885718343,
          -4.671508966732346,
          -7,
          -7,
          -4.419001068534885,
          -2.9700146181755556,
          -7,
          -7,
          -7,
          -7,
          -3.221283799492686,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0338658673479,
          -7,
          -7,
          -3.2030981895457566,
          -4.1740161724638165,
          -7,
          -7,
          -7,
          -3.9063530023303885,
          -3.4324882557705063,
          -7,
          -3.364727190106312,
          -3.525044807036845,
          -3.179360261070836,
          -7,
          -4.422540597322725,
          -4.3981571016442675,
          -2.3047285625735836,
          -7,
          -4.076740541926454,
          -2.875174992292159,
          -7,
          -3.722057771331464,
          -7,
          -5.388978144868233,
          -3.8098738192491894,
          -3.3347301238021214,
          -4.123884293460008,
          -7,
          -4.061509024166617,
          -3.5993917577937564,
          -7,
          -3.363091034829397,
          -3.0606106822139933,
          -7,
          -7,
          -4.208387603795154,
          -3.398287305357401,
          -7,
          -7,
          -3.9841370981421775,
          -3.8993005694607925,
          -4.318970646636086,
          -7,
          -7,
          -4.165073602671241,
          -7,
          -7,
          -7,
          -7,
          -4.060760777022355,
          -4.017116849438813,
          -7,
          -3.671897605098547,
          -3.789190423837699,
          -3.5093459189172926,
          -7,
          -4.44617976779828,
          -7,
          -7,
          -7,
          -4.38338444699495,
          -3.7168377232995247,
          -7,
          -4.3920547074108764,
          -3.9088728605363263,
          -5.229793579223345,
          -7,
          -7,
          -7,
          -2.8046192945802098,
          -3.5168657614978143,
          -5.406351093443442,
          -3.619788758288394,
          -7,
          -7,
          -7,
          -3.7422536699065936,
          -4.7868294745969555,
          -3.6609602917760835,
          -4.228990310840724,
          -7,
          -3.670747763693703,
          -4.194278399010635,
          -7,
          -3.167676636159579,
          -2.8468930643543624,
          -7,
          -4.7465913900240135,
          -7,
          -7,
          -3.915019727210068,
          -4.307795448115974,
          -7,
          -7,
          -7,
          -3.0549958615291417,
          -3.4572761860613257,
          -2.6558947921952347,
          -7,
          -3.5975032204392736,
          -3.0888445627270045,
          -2.4365160192993924,
          -2.670458463029679,
          -2.2971036501492565,
          -7,
          -7,
          -3.0894105109835444,
          -2.56702636615906,
          -2.836124511281903,
          -3.6703386411274423,
          -2.227601078505448,
          -2.732715340349993,
          -2.842297134328065,
          -2.380211241711606,
          -2.598874647901013,
          -2.950364854376123,
          -2.6928469192772297,
          -2.9708779609577287,
          -2.8788089323592057,
          -1.9020028913507296,
          -2.595863489908268,
          -3.5928426831311002,
          -2.688864568054792,
          -2.43003472172494,
          -3.0433622780211294,
          -7,
          -3.1106222893084463,
          -3.0426660978826257,
          -2.978089173056143,
          -7,
          -2.195240531806313,
          -7,
          -2.2890436366441214,
          -3.5413295776666933,
          -7,
          -7,
          -3.184691430817599,
          -3.0281644194244697,
          -1.8961586385578335,
          -1.5890769857909857,
          -7,
          -2.294302896155191,
          -2.864511081058392,
          -1.7119052749795018,
          -7,
          -1.7134036349493234,
          -3.3875677794171883,
          -2.930567009900929,
          -2.6769355639062264,
          -2.5563025007672873,
          -7,
          -7,
          -3.413132050434872,
          -2.931786802387928,
          -2.3171675742837645,
          -3.0824263008607717,
          -2.694243781641912,
          -3.4305587695227575,
          -2.768337370331206,
          -3.5379449592914867,
          -2.3475251599986895,
          -2.86053763630648,
          -2.581209852354842,
          -3.580696939712437,
          -7,
          -2.634544441219856,
          -1.8224949852787509,
          -7,
          -7,
          -2.10187590011488,
          -7,
          -7,
          -2.945106673042623,
          -2.9734049744100606,
          -2.678518379040114,
          -2.954913364149901,
          -2.33306924358772,
          -2.6629756505352096,
          -2.2920344359947364,
          -2.7308591487495004,
          -2.0139544368112854,
          -2.1318324445562005,
          -7,
          -3.0362295440862943,
          -7,
          -3.290776361298428,
          -2.757142869659127,
          -2.932727367301529,
          -2.928779787288558,
          -2.912335949924013,
          -2.8252637950292847,
          -2.5220963108104413,
          -3.251893612682507,
          -2.275609912017191,
          -7,
          -2.6954816764901977,
          -3.370513089598593,
          -7,
          -7,
          -3.7157527168228595,
          -2.829303772831025,
          -7,
          -7,
          -7,
          -1.7360776370039457,
          -7,
          -7,
          -7,
          -2.4082399653118496,
          -1.5023467769110552,
          -2.433769833924866,
          -2.03085721245529,
          -2.837840861655523,
          -2.5738382050519886,
          -2.8063495871404673,
          -7,
          -1.772908194971272,
          -7,
          -7,
          -7,
          -2.688419822002711,
          -3.478854967528663,
          -7,
          -3.3483373203167313,
          -2.65479514613498,
          -3.705521613422667,
          -7,
          -7,
          -3.122652684426726,
          -7,
          -7,
          -3.505895781219751,
          -7,
          -7,
          -2.4768984824747657,
          -2.395527999795712,
          -3.015778756389041,
          -7,
          -7,
          -7,
          -3.0322157032979815,
          -2.5569052690554477,
          -3.3422252293607904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.374748346010104,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.728867596032789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.03322264667025,
          -3.396896449142524,
          -7,
          -3.167415803058745,
          -4.229180184178066,
          -2.975891136401793,
          -7,
          -7,
          -3.2692793897718984,
          -7,
          -7,
          -3.7505083948513462,
          -2.975891136401793,
          -7,
          -7,
          -2.1832698436828046,
          -7,
          -2.3607826898732798,
          -7,
          -7,
          -3.313234291694724,
          -7,
          -4.53859886586218,
          -7,
          -7,
          -7,
          -3.0265332645232967,
          -7,
          -7,
          -2.9708116108725178,
          -7,
          -7,
          -3.184975190698261,
          -3.952953800832277,
          -7,
          -3.8922059459757725,
          -7,
          -7,
          -7,
          -3.4044916177586857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.146205581340778,
          -7,
          -7,
          -3.3619166186686433,
          -7,
          -7,
          -2.4928677946121267,
          -7,
          -7,
          -7,
          -7,
          -3.3106933123433606,
          -7,
          -7,
          -3.5621738633646483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.451661090997188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.963079160641827,
          -7,
          -7,
          -7,
          -3.607025878434786,
          -4.073039808062093,
          -7,
          -7,
          -7,
          -7,
          -4.3808983308391545,
          -7,
          -7,
          -7,
          -3.5160062303860475,
          -7,
          -7,
          -4.166755638665237,
          -7,
          -7,
          -7,
          -7,
          -4.691929792837514,
          -7,
          -3.409087369447835,
          -7,
          -7,
          -7,
          -3.1803244198726213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4176377396522297,
          -7,
          -7,
          -3.6634182122526795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3564083270389813,
          -7,
          -2.606650028578439,
          -3.5631249603380444,
          -7,
          -7,
          -4.173206210830642,
          -7,
          -7,
          -7,
          -2.924795995797912,
          -7,
          -7,
          -7,
          -3.9111576087399764,
          -7,
          -7,
          -7,
          -7,
          -4.051943183341951,
          -7,
          -7,
          -3.5589484459780394,
          -7,
          -3.0273496077747564,
          -7,
          -2.909556029241175,
          -7,
          -3.1455071714096627,
          -3.607025878434786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.588980942047111,
          -7,
          -3.7401257369657306,
          -7,
          -7,
          -7,
          -7,
          -2.5460488664017342,
          -2.8236915393984545,
          -7,
          -7,
          -4.352008765565775,
          -3.5378190950732744,
          -7,
          -7,
          -7,
          -2.44870631990508,
          -2.586587304671755,
          -2.776701183988411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.712781821516307,
          -7,
          -2.4369573306694496,
          -7,
          -7,
          -7,
          -2.5327543789924976,
          -2.8018608621457806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7652263375961468,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8674674878590514,
          -7,
          -7,
          -7,
          -7,
          -3.7649229846498886,
          -3.800235789327354,
          -7,
          -7,
          -7,
          -3.465042761781937,
          -7,
          -4.053974292150365,
          -7,
          -4.106972399886674,
          -7,
          -7,
          -7,
          -3.6804714924842656,
          -7,
          -3.9494875899465036,
          -3.6960067152185454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2170099098042058,
          -7,
          -7,
          -7,
          -5.131169383089324,
          -3.8795546009389743,
          -7,
          -3.979548374704095,
          -7,
          -7,
          -3.560026248912892,
          -7,
          -3.944285220688753,
          -7,
          -2.864733511015573,
          -2.5284024379536176,
          -2.7925317619013077,
          -7,
          -5.828258923405385,
          -7,
          -7,
          -2.1492191126553797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.368100851709351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.383007041822538,
          -5.273107805909014,
          -7,
          -7,
          -4.318672590050602,
          -3.7576996250877386,
          -7,
          -2.977266212427293,
          -7,
          -3.505421327583281,
          -3.766635886310268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.620656479819621,
          -2.427323786357247,
          -3.5966245817491806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.878917994607827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.578432899740808,
          -7,
          -7,
          -4.921285803587237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325022800270452,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9814108401658883,
          -7,
          -7,
          -4.660495506382359,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.010475222427599,
          -7,
          -7,
          -3.665299499499897,
          -7,
          -4.352225945388225,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.243345668375362,
          -4.954768170059357,
          -7,
          -5.046028622812387,
          -7,
          -7,
          -7,
          -4.289878682790416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.988097961819528,
          -3.0043213737826426,
          -3.5743785644130823,
          -7,
          -7,
          -3.4340496757326173,
          -7,
          -2.396697391280942,
          -7,
          -3.7267272090265724,
          -7,
          -3.7953655080278454,
          -3.586587304671755,
          -7,
          -7,
          -7,
          -3.2645817292380777,
          -7,
          -7,
          -7,
          -3.457503426573305,
          -7,
          -2.910090545594068,
          -3.1917303933628562,
          -7,
          -7,
          -4.001041057986094,
          -7,
          -7,
          -4.593640448502303,
          -4.394661772492929,
          -4.485060967233931,
          -7,
          -3.399846712712922,
          -2.8087821056864235,
          -7,
          -3.4243915544102776,
          -7,
          -3.1360860973840974,
          -3.2026616633987213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6913762288033705,
          -7,
          -2.5634810853944106,
          -3.2095150145426308,
          -3.9744195738522863,
          -7,
          -7,
          -3.030599721965951,
          -2.8773713458697743,
          -7,
          -3.836893516376434,
          -7,
          -7,
          -7,
          -2.669316880566112,
          -3.3508312293578544,
          -3.118595365223762,
          -3.564547711755948,
          -7,
          -7,
          -7,
          -2.106530853822381,
          -7,
          -7,
          -3.2776092143040914,
          -3.4833733060890273,
          -3.0906107078284064,
          -7,
          -3.2976875755910435,
          -3.6277651419682626,
          -2.987219229908005,
          -2.0028137792246734,
          -3.0205139306557727,
          -3.4239009185284166,
          -2.810568529216413,
          -7,
          -4.02197445511006,
          -7,
          -7,
          -3.0362295440862943,
          -7,
          -7,
          -4.354895604711061,
          -7,
          -7,
          -3.41161970596323,
          -7,
          -7,
          -7,
          -4.543298040491669,
          -7,
          -7,
          -7,
          -3.1835545336188615,
          -7,
          -2.7712724322770126,
          -3.1635588985580028,
          -7,
          -7,
          -7,
          -7,
          -3.7884865485608397,
          -2.3185850100788254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.57978359661681,
          -7,
          -7,
          -3.2420442393695508,
          -2.478566495593843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.099335277685958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1938200260161125,
          -7,
          -7,
          -7,
          -7,
          -3.360593413565249,
          -7,
          -7,
          -3.300378064870703,
          -7,
          -3.6285932558512592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1541195255158465,
          -7,
          -7,
          -7,
          -5.203856611783906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.031630604606654,
          -7,
          -7,
          -7,
          -4.872580449939517,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.140429473253813,
          -7,
          -7,
          -7,
          -7,
          -3.6104472214421213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.906857389645695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2996162399984135,
          -7,
          -7,
          -5.124442271503,
          -7,
          -7,
          -7,
          -7,
          -3.8585973449946924,
          -7,
          -2.665580991017953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1832698436828046,
          -7,
          -5.229635774460915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1711411510283822,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752148362489249,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6908603082720437,
          -7,
          -7,
          -7,
          -4.362312795326511,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.806179973983887,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.558408539791075,
          -7,
          -7,
          -5.150860780769569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.694605198933569,
          -5.051860327904435,
          -7,
          -7,
          -7,
          -3.0784568180532927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7621907399180134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.240466042135798,
          -2.9827233876685453,
          -7,
          -7,
          -7,
          -3.532818053867167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.712700198049791,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.095906254104675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.308713776639004,
          -7,
          -4.530135638245461,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9456162792267317,
          -3.3878345723908105,
          -7,
          -3.101403350555331,
          -7,
          -7,
          -7,
          -3.4077307280263356,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.130915654808137,
          -7,
          -7,
          -4.278822168352688,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.82820796944373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5828584622244994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.381584334652752,
          -5.574094380606331,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.591665521925527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.401320108429818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.100359055693578,
          -7,
          -7,
          -4.61983392256601,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.527784518264025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.667200708661177,
          -7,
          -3.866877814337499,
          -7,
          -7,
          -7,
          -5.234651398044672,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.990161192898479,
          -5.487490478067235,
          -5.405118308515801,
          -7,
          -7,
          -7,
          -4.351844602085498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3150041726848976,
          -7,
          -4.780396529447265,
          -7,
          -7,
          -7,
          -4.896438026915203,
          -7,
          -7,
          -7,
          -4.954387250144515,
          -7,
          -4.6479225684382985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8619523749214517,
          -7,
          -3.3958794676543818,
          -7,
          -7,
          -3.7336586083863925,
          -7,
          -7,
          -7,
          -3.720242018287057,
          -7,
          -3.840586982890639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8656960599160706,
          -3.1690863574870227,
          -7,
          -7,
          -3.9976047874604546,
          -7,
          -2.4712917110589387,
          -7,
          -4.792346156238286,
          -4.785543369956593,
          -7,
          -7,
          -3.919862253555538,
          -7,
          -7,
          -7,
          -7,
          -3.162862993321926,
          -7,
          -7,
          -3.3176455432211585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.816241299991783,
          -7,
          -3.970765159780768,
          -4.1854004831904525,
          -7,
          -7,
          -7,
          -7,
          -4.135482491335711,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -3.6563114131651067,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2702905531667605,
          -7,
          -3.2591158441850663,
          -3.7788744720027396,
          -7,
          -7,
          -7,
          -3.781919421864166,
          -2.8811563210755637,
          -7,
          -3.2979355063596474,
          -2.4538277764478607,
          -7,
          -7,
          -4.018700498666243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.224053701674689,
          -7,
          -4.151093922785061,
          -4.542314924348526,
          -3.6278776945799716,
          -7,
          -7,
          -2.8588378514285857,
          -7,
          -3.3080305542661055,
          -2.9333860419030544,
          -7,
          -7,
          -7,
          -7,
          -3.347507423196012,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.778295991088834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.754348335711019,
          -3.3246939138617746,
          -3.1172712956557644,
          -4.0965972083578945,
          -3.258876629372131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.493778599541865,
          -7,
          -7,
          -3.4802944600030066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354050785610767,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0195483874768687,
          -4.4367349657907065,
          -7,
          -7,
          -7,
          -3.329217026937669,
          -4.370272467849528,
          -7,
          -7,
          -7,
          -7,
          -2.7783792447073528,
          -3.5206290737883683,
          -7,
          -3.3484346775706944,
          -3.044724692093926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2475322959136936,
          -7,
          -4.356083249147294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.785792361435081,
          -4.360669133987706,
          -3.2608705827096878,
          -7,
          -7,
          -4.385695625410561,
          -4.068853493671498,
          -3.5204507792823576,
          -7,
          -7,
          -7,
          -7,
          -3.9013129873424166,
          -3.004021960672549,
          -3.9196010237841112,
          -4.479676062868145,
          -4.452905258057521,
          -7,
          -7,
          -4.3964260280181024,
          -4.0651687517057455,
          -7,
          -7,
          -7,
          -7,
          -4.111363344325131,
          -3.088801396163152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3466239745960986,
          -7,
          -3.48440661994362,
          -7,
          -7,
          -4.171331460918497,
          -7,
          -4.360157764747342,
          -7,
          -7,
          -7,
          -4.101472117000238,
          -7,
          -7,
          -4.076349117493459,
          -3.015604410495885,
          -7,
          -3.9113041251051985,
          -4.3553940446231705,
          -7,
          -7,
          -3.679954545361563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.352651027608356,
          -7,
          -7,
          -7,
          -7,
          -4.061018722050734,
          -4.36321698715741,
          -7,
          -4.069242472185548,
          -7,
          -3.1889753306927693,
          -3.7649416395104787,
          -4.353570041598004,
          -7,
          -7,
          -4.12119860258469,
          -7,
          -3.3380344158933815,
          -2.854852362417834,
          -7,
          -7,
          -7,
          -2.703670619430989,
          -7,
          -3.7947319638135193,
          -4.418168662067866,
          -7,
          -7,
          -3.2257433592051816,
          -4.400088784732035,
          -7,
          -7,
          -3.4271136315361073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.671212526660277,
          -3.9623219727295846,
          -3.86223874654393,
          -3.5277587525209717,
          -7,
          -4.172033422048232,
          -7,
          -7,
          -7,
          -3.8263599174077894,
          -4.1591459278540475,
          -7,
          -7,
          -7,
          -3.5513051073181363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.835421213289978,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.530185463473508,
          -7,
          -3.0015226545932983,
          -7,
          -7,
          -2.662284635697243,
          -3.521623683742995,
          -3.128253833270144,
          -3.4146224299225225,
          -3.896673161995069,
          -3.7871238189802026,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.167592989776093,
          -7,
          -3.8327004709605674,
          -7,
          -4.144106973049323,
          -7,
          -7,
          -7,
          -7,
          -4.1410576338867795,
          -7,
          -7,
          -7,
          -3.049101678208557,
          -3.5120466546965416,
          -7,
          -7,
          -3.6604480513212954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.065852517288246,
          -7,
          -2.6367691316157806,
          -2.8356307249148243,
          -7,
          -7,
          -7,
          -4.370587100246676,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8809643628019734,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062769949815128,
          -7,
          -4.365207100231824,
          -7,
          -7,
          -4.1491112956784875,
          -3.3433934428512173,
          -4.077803798076088,
          -7,
          -7,
          -3.455179975545529,
          -4.082677680648112,
          -2.740726384592418,
          -7,
          -2.1760134858627667,
          -7,
          -4.358486888100237,
          -7,
          -7,
          -7,
          -3.591940663624408,
          -3.8346590868996135,
          -7,
          -4.375059753585813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.372819981678968,
          -7,
          -7,
          -7,
          -4.386070702406175,
          -3.3395650046154235,
          -7,
          -7,
          -7,
          -2.874280210118406,
          -3.6981440599245037,
          -7,
          -3.5034030276792736,
          -7,
          -7,
          -7,
          -3.4774106879072515,
          -2.567152449621088,
          -2.955670573321319,
          -7,
          -7,
          -7,
          -7,
          -2.8875728691520535,
          -7,
          -7,
          -7,
          -7,
          -3.8423283549514857,
          -4.118578839244122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.433593841021467,
          -7,
          -7,
          -4.11882666293329,
          -7,
          -3.718118617465126,
          -4.0656170557268725,
          -2.9059469355947005,
          -3.8877860348383715,
          -4.452323216977515,
          -3.080286255966738,
          -4.448690864310427,
          -7,
          -7,
          -7,
          -4.40784960347914,
          -4.450526229129723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9679754116075565,
          -7,
          -7,
          -2.3892159144927385,
          -3.131169383089324,
          -3.0533345888650136,
          -3.943412067973837,
          -3.1188136852015997,
          -2.9603851469606433,
          -2.5405650003943974,
          -3.338392454638033,
          -2.6996643202023733,
          -3.137464198692464,
          -2.9103241897893297,
          -2.9438138538855756,
          -2.921563734812705,
          -2.835737134448514,
          -2.428490722523472,
          -3.5965671087812012,
          -2.9764504825069613,
          -2.7396053042256097,
          -2.791227076586569,
          -3.287088853378247,
          -4.111867146804469,
          -3.331789628882886,
          -3.4355683335961067,
          -2.765730627864516,
          -2.490272090219577,
          -3.3829870641565014,
          -3.1862369644127835,
          -3.1750941332353855,
          -3.0846834979032507,
          -2.6692527401905854,
          -2.9383648306422847,
          -2.984902189915971,
          -3.312660846032607,
          -3.1134361873995866,
          -3.339469510182976,
          -3.3580237285881256,
          -3.869994000121742,
          -3.5567847823070253,
          -2.3848346308010715,
          -3.119125240272365,
          -4.367505009418113,
          -3.423100874797959,
          -2.9025185013539017,
          -2.954973030186681,
          -3.647399272154069,
          -3.257178408417606,
          -3.784795537856762,
          -2.8139581849717996,
          -4.504552412486566,
          -4.402072143635273,
          -3.1398878281506537,
          -3.3749201057441613,
          -3.413709458318653,
          -4.074322643568778,
          -3.7401432934391092,
          -4.458698268402751,
          -7,
          -7,
          -3.298055299407909,
          -4.126488570700374,
          -3.668553637533001,
          -3.273319637963899,
          -3.1318786178175038,
          -3.224719055787612,
          -7,
          -7,
          -7,
          -2.9459490851608128,
          -4.148124297389897,
          -3.8851931120167453,
          -3.753940355895292,
          -2.3959387783291315,
          -4.354665362435607,
          -4.1573963193232295,
          -3.067832201725068,
          -3.8385500169443825,
          -3.7181195409349796,
          -3.4390054396547645,
          -3.500465183284189,
          -3.4865549806566514,
          -3.4922425742591727,
          -7,
          -2.964695295079257,
          -2.8652240048558992,
          -4.410608542568368,
          -2.706666122284256,
          -7,
          -4.415490852171469,
          -3.4350684440390644,
          -2.660969667837611,
          -3.7547495668660162,
          -7,
          -7,
          -7,
          -3.205013199181547,
          -1.8521684108312613,
          -7,
          -2.808036260432666,
          -3.014348680847394,
          -2.2972314509435923,
          -2.63837062156992,
          -2.3292194070638392,
          -7,
          -7,
          -3.010378489484261,
          -3.510027684973431,
          -2.5720744624304026,
          -3.377157176891517,
          -2.8571062424631903,
          -3.6858491796159405,
          -2.297952062994036,
          -2.8778031216951354,
          -1.8008846495627382,
          -3.5227794666236236,
          -3.106511974326567,
          -2.2131895097881804,
          -3.663908131452911,
          -2.9329245114554494,
          -4.378942698613438,
          -4.406028944963615,
          -4.35281901669987,
          -2.5078693588926737,
          -4.35524073941683,
          -7,
          -2.5859995828684834,
          -2.030548370317692,
          -1.9864002384688655,
          -3.450037299616192,
          -2.9801083032031275,
          -4.4881133818002965,
          -3.6686281593438146,
          -7,
          -4.352568386179309,
          -7,
          -2.736472907805405,
          -7,
          -3.658106835506393,
          -3.611404637711593,
          -7,
          -2.315384450620127,
          -3.0188895442801207,
          -2.6196241523468924,
          -7,
          -3.363442741279142,
          -3.9029270960172626,
          -2.6027054557581097,
          -2.7764821024837807,
          -3.752662943120972,
          -7,
          -7,
          -3.1033895669314213,
          -2.114933427545565,
          -3.4587322506088714,
          -3.880031921104297,
          -2.271037506173659,
          -4.384693833518213,
          -2.3619123209253394,
          -4.398026858883687,
          -2.258691231511513,
          -3.295786940251609,
          -2.915154763984291,
          -3.2340406260556973,
          -7,
          -2.8669709739278395,
          -3.5818927949386175,
          -7,
          -3.609014760011556,
          -2.501114799780252,
          -7,
          -4.452292561617729,
          -2.539790831601422,
          -4.4193774051391275,
          -4.387852352763043,
          -3.245964822443127,
          -3.495110520227484,
          -4.139233459140505,
          -4.371640383837884,
          -2.5015776958751967,
          -2.1213337939445793,
          -3.1684974835230326,
          -3.290776361298428,
          -4.354895604711061,
          -7,
          -7,
          -2.7059683825753047,
          -3.325011592333475,
          -1.8656889096233065,
          -2.2824786342607655,
          -2.5368649376417416,
          -2.5040652696400008,
          -2.3689637403858352,
          -2.5791463818227767,
          -7,
          -4.061527870890508,
          -7,
          -7,
          -4.12252714764831,
          -7,
          -2.6731664725674644,
          -7,
          -4.378579576115775,
          -7,
          -2.222519981089832,
          -7,
          -4.360233561157832,
          -3.8768142008518582,
          -7,
          -7,
          -4.053923150548575,
          -3.1260167470971267,
          -2.3132820630167794,
          -3.5314971643262183,
          -7,
          -7,
          -2.9822335322294484,
          -7,
          -4.05903300496378,
          -7,
          -4.061075323629792,
          -3.435808987019662,
          -4.375919543704649,
          -2.264554092853232,
          -3.2691236170005356,
          -3.0629251643976625,
          -3.664961468665818,
          -7,
          -2.2956186350156695,
          -3.8849651982007325,
          -7,
          -2.2920188927402747,
          -7,
          -7,
          -3.201499540187428,
          -3.2480433647368927,
          -2.8346149517300243,
          -7,
          -7,
          -3.541579243946581,
          -4.354703744625813,
          -2.7247508753987764,
          -7,
          -3.287727102473748,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.210364007315791,
          -7,
          -7,
          -7,
          -7,
          -3.4200500988012092,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7867696174440493,
          -7,
          -7,
          -3.228015175101788,
          -4.069161463720277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.401187937219147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.670873332461625,
          -7,
          -7,
          -7,
          -7,
          -3.114076960824089,
          -7,
          -7,
          -7,
          -3.538824988937904,
          -7,
          -3.9654264492027846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7653704802916486,
          -3.8801559384642488,
          -7,
          -7,
          -2.9681092011281978,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.655167258709841,
          -7,
          -7,
          -7,
          -7,
          -3.9846623061901068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5823815773367187,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.415273909352888,
          -7,
          -7,
          -7,
          -7,
          -3.5761602878635035,
          -3.5138831856110926,
          -7,
          -7,
          -7,
          -3.8073997127594854,
          -7,
          -7,
          -3.624127331511917,
          -7,
          -7,
          -7,
          -4.7021935055383075,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4403973832463586,
          -7,
          -7,
          -7,
          -2.0305667155192975,
          -7,
          -3.3981136917305026,
          -7,
          -7,
          -7,
          -4.107989642267512,
          -7,
          -7,
          -2.5178867997228385,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.792714397167913,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.021313365484695,
          -7,
          -3.4229999772716164,
          -7,
          -3.868174040859638,
          -3.7041753111617277,
          -7,
          -3.1385553051135826,
          -3.7763379096201755,
          -2.957128197676813,
          -3.651762447380111,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8294967497201826,
          -7,
          -7,
          -7,
          -4.382197210377454,
          -7,
          -3.3676975062069,
          -7,
          -3.8948696567452528,
          -7,
          -7,
          -7,
          -7,
          -3.5828017176654714,
          -7,
          -7,
          -7,
          -3.353479077417884,
          -3.0626289832522775,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.534914104429867,
          -7,
          -3.1530939053914806,
          -3.8008075748040797,
          -7,
          -7,
          -7,
          -3.538070787043172,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1010593549081156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.841171694499532,
          -7,
          -7,
          -3.636688447953283,
          -7,
          -7,
          -7,
          -3.7555509188304823,
          -7,
          -2.7954365110794464,
          -7,
          -3.2657527953446097,
          -7,
          -7,
          -7,
          -4.076931574555656,
          -7,
          -4.051345499336539,
          -3.563303059369412,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0253877998904075,
          -7,
          -7,
          -7,
          -3.274881913341615,
          -7,
          -7,
          -3.4277497542165274,
          -7,
          -7,
          -7,
          -7,
          -4.047235915459681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5484961800176205,
          -7,
          -7,
          -7,
          -7,
          -3.8924285469452298,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.869636481314028,
          -4.122314197968806,
          -4.5147780911123805,
          -7,
          -7,
          -4.328375525537133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.230027195569308,
          -7,
          -7,
          -2.944839537394521,
          -3.114369618804565,
          -2.838723190031372,
          -2.9545870508948435,
          -4.127938555955461,
          -2.9621493926097586,
          -2.3180179422810476,
          -4.136287113116408,
          -2.9618620050408455,
          -2.9839268369509955,
          -2.246961766528978,
          -3.0454990084378832,
          -3.288392965587535,
          -3.3937164142875456,
          -2.408120326456059,
          -2.362008176736463,
          -3.112137368289655,
          -2.4620412878321645,
          -3.807940721215499,
          -3.149988456491476,
          -7,
          -3.6133272674214836,
          -4.320146286111054,
          -2.6422714468377064,
          -2.258033898662295,
          -3.893669309799605,
          -3.8995834172273165,
          -2.6715480863793686,
          -3.1581613832785496,
          -2.762579485676154,
          -2.9378608845484484,
          -3.9177680024477564,
          -4.364701049594699,
          -3.293092341218131,
          -2.7011360660925265,
          -4.152685756036786,
          -7,
          -4.006551609086649,
          -2.4310872155201055,
          -3.6812915000319597,
          -7,
          -4.6893532632422525,
          -4.295677034017465,
          -7,
          -3.8214480190175304,
          -2.6039279274630815,
          -7,
          -3.6965236329297477,
          -7,
          -3.717420836722375,
          -3.8710326501566796,
          -4.018242667457909,
          -4.000156317877956,
          -7,
          -7,
          -7,
          -7,
          -3.4429498695778618,
          -7,
          -3.828788748184953,
          -7,
          -4.222638447166434,
          -3.6914000796900464,
          -4.203020131467844,
          -7,
          -7,
          -7,
          -3.622901339450227,
          -7,
          -5.107920206498857,
          -4.147243359543369,
          -4.269676357629865,
          -7,
          -4.062281069972644,
          -3.4645193538566796,
          -4.496521440773309,
          -3.78625439578978,
          -7,
          -3.6275194713376826,
          -3.7334005839920277,
          -4.516098877052355,
          -7,
          -4.47673021369108,
          -3.710531050569225,
          -7,
          -4.397360562979804,
          -7,
          -7,
          -4.629959764611881,
          -3.7371926427047373,
          -7,
          -7,
          -7,
          -3.12466721769861,
          -3.0154795112301587,
          -2.026992120467688,
          -7,
          -3.1600932009756324,
          -2.661023489459825,
          -2.7564187436357535,
          -3.4786927256432434,
          -2.159237204338384,
          -7,
          -7,
          -3.4081834128693056,
          -3.4220971631317103,
          -2.9977827887044515,
          -3.4921315335815697,
          -3.009167506240904,
          -2.67168698327697,
          -3.1892656689345484,
          -2.4434194617828173,
          -2.462658366301181,
          -1.1569935095207584,
          -1.8440627725826517,
          -3.0041063232796583,
          -2.1158274961813883,
          -2.350801612394977,
          -7,
          -7,
          -3.399846712712922,
          -3.1378110969861503,
          -2.2120210485124043,
          -2.391255974854882,
          -2.5409180494795067,
          -3.1617086942021646,
          -1.9534876520964986,
          -7,
          -2.4536780042348014,
          -7,
          -2.114076960824089,
          -7,
          -2.9197751944228614,
          -7,
          -2.572608605937758,
          -7,
          -2.960153542690461,
          -3.17666993266815,
          -7,
          -1.4829942936151554,
          -3.1755118133634475,
          -1.8912818604740502,
          -7,
          -2.8866317069889784,
          -7,
          -3.0705180970198693,
          -1.488920663651653,
          -2.9398519178833737,
          -7,
          -7,
          -2.4985226116463055,
          -2.3217564538166924,
          -1.4659711795948707,
          -3.1365620365899805,
          -2.598746746928134,
          -3.32479671762173,
          -3.0835394196053243,
          -3.396286546068402,
          -1.7563228128879709,
          -7,
          -2.441909267199942,
          -3.9614210940664485,
          -7,
          -1.9118231942831303,
          -2.379758615842701,
          -7,
          -7,
          -1.9896228285885555,
          -7,
          -7,
          -3.1736911943077897,
          -3.7953933349312896,
          -7,
          -3.7462838201514073,
          -2.920558099058943,
          -3.5761685196078083,
          -3.243905770217521,
          -3.154863354315963,
          -1.5093059380910636,
          -2.599155000684555,
          -2.757142869659127,
          -7,
          -7,
          -2.7059683825753047,
          -7,
          -3.5114822886260013,
          -1.6575522630041335,
          -3.0634544267719757,
          -3.021912520689034,
          -2.5097294828785595,
          -3.571394349314386,
          -2.373896723704669,
          -7,
          -2.52403532248028,
          -7,
          -2.44836273248059,
          -7,
          -3.82795052830263,
          -2.4586378490256493,
          -7,
          -7,
          -3.5281450782531065,
          -2.5471104854035294,
          -7,
          -3.1609184995397808,
          -7,
          -7,
          -3.427972713608209,
          -3.117602691690084,
          -2.2863602200922686,
          -2.204745917640909,
          -1.9055612534135378,
          -7,
          -7,
          -2.336173731545205,
          -7,
          -7,
          -7,
          -3.4771212547196626,
          -3.6574383227029625,
          -7,
          -4.173856138986269,
          -0.9681884753070655,
          -2.613973886490711,
          -7,
          -7,
          -3.4403579968152878,
          -7,
          -7,
          -4.0492309479088515,
          -7,
          -7,
          -3.435525851498655,
          -0.6851016581888254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.8667808508413924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6283889300503116,
          -2.9609461957338317,
          -7,
          -7,
          -4.12653184328548,
          -3.446148675696183,
          -7,
          -7,
          -3.0299786646845117,
          -3.180829397202488,
          -3.2329961103921536,
          -7,
          -7,
          -7,
          -2.950364854376123,
          -3.067286255616976,
          -7,
          -7,
          -3.4014867017741692,
          -3.7397177364027008,
          -7,
          -7,
          -2.920123326290724,
          -7,
          -3.252124552505644,
          -7,
          -3.9139668289142224,
          -3.1970047280230456,
          -7,
          -7,
          -3.0948203803548,
          -7,
          -3.037027879755775,
          -2.838723190031372,
          -7,
          -7,
          -7,
          -3.9964366147788897,
          -7,
          -2.809222921689422,
          -2.930099638207734,
          -3.2281436075977417,
          -2.5986993354639654,
          -7,
          -3.193958978019187,
          -7,
          -2.76067373855426,
          -2.730984038495525,
          -3.06481084382274,
          -7,
          -2.4457079649469864,
          -7,
          -7,
          -7,
          -3.1992064791616577,
          -7,
          -7,
          -7,
          -7,
          -3.1451964061141817,
          -2.6569495514291095,
          -3.854746187218726,
          -7,
          -7,
          -2.464042205438811,
          -7,
          -3.4630713808122473,
          -3.671728088239558,
          -7,
          -3.0126966535817883,
          -3.5583063198302427,
          -7,
          -7,
          -7,
          -7,
          -2.1294454133258283,
          -2.5445995081921287,
          -7,
          -7,
          -3.2012605322507914,
          -7,
          -3.5464192668351915,
          -3.2902572693945182,
          -7,
          -7,
          -3.0459745835329053,
          -2.8867162741164782,
          -2.6192539127997327,
          -7,
          -7,
          -7,
          -3.3404441148401185,
          -3.1481397365012196,
          -2.9275756546911103,
          -7,
          -3.015180059737978,
          -7,
          -7,
          -7,
          -2.7863520708696945,
          -7,
          -7,
          -7,
          -2.823474229170301,
          -3.0423069707976276,
          -7,
          -7,
          -7,
          -7,
          -3.488762172066694,
          -7,
          -7,
          -2.931457870689005,
          -7,
          -2.8923729073984363,
          -7,
          -7,
          -3.3954859330755176,
          -7,
          -7,
          -7,
          -4.393645386605536,
          -7,
          -7,
          -3.6478717653062325,
          -7,
          -7,
          -2.1348187022405427,
          -3.050895086469539,
          -7,
          -7,
          -3.4209087921309544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9818186071706636,
          -2.961421094066448,
          -3.2414634653077736,
          -7,
          -3.4244460353087876,
          -7,
          -7,
          -3.251638220448212,
          -4.0712558776812955,
          -7,
          -7,
          -3.0507663112330423,
          -7,
          -3.592398846115564,
          -7,
          -7,
          -7,
          -2.800258719947592,
          -7,
          -2.581380688709987,
          -7,
          -7,
          -7,
          -7,
          -3.297651103243182,
          -7,
          -7,
          -3.829602391215558,
          -3.0755469613925306,
          -7,
          -7,
          -7,
          -3.058426024457005,
          -7,
          -7,
          -3.9433955765089546,
          -3.0572856444182146,
          -3.6873282654478152,
          -7,
          -3.752586178740409,
          -3.3285449954753994,
          -7,
          -3.235360083082256,
          -2.546953732587764,
          -7,
          -3.13956426617585,
          -3.3057811512549824,
          -2.8750612633917,
          -7,
          -7,
          -7,
          -7,
          -3.7013952690139202,
          -7,
          -3.6691773631428735,
          -2.772871562650226,
          -3.3081762173504505,
          -7,
          -3.787956123283932,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2956403924243696,
          -3.1187605904423816,
          -7,
          -2.846955325019824,
          -3.5186455243303114,
          -3.8767949762007006,
          -7,
          -7,
          -7,
          -2.9585638832219674,
          -7,
          -7,
          -7,
          -7,
          -3.932473764677153,
          -3.0225314677988853,
          -3.064520383377145,
          -4.315329550842513,
          -7,
          -7,
          -2.6354837468149124,
          -7,
          -7,
          -7,
          -7,
          -3.3209766773428235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.830504772317295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1351326513767748,
          -7,
          -3.1577588860468637,
          -7,
          -3.3554515201265174,
          -3.1099158630237933,
          -3.2389864740813414,
          -3.338257230246256,
          -7,
          -7,
          -2.2179850051081407,
          -3.087603973687808,
          -2.7049071715672994,
          -7,
          -4.71438006121222,
          -7,
          -3.034227260770551,
          -7,
          -4.009153331907709,
          -2.924574624041236,
          -2.545352940204395,
          -3.446537167073644,
          -3.863679667875898,
          -2.0836817472743014,
          -2.545616332913136,
          -7,
          -3.2626883443016963,
          -2.813714391881145,
          -2.3714941287694646,
          -7,
          -7,
          -3.2667019668840878,
          -7,
          -7,
          -7,
          -3.4114513421379375,
          -3.9482662198802956,
          -7,
          -7,
          -7,
          -4.019161044289363,
          -2.589790080853059,
          -7,
          -4.294686624279444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0774890305065017,
          -3.8129801660394804,
          -3.366236123718293,
          -3.2712606104874364,
          -2.827207675105206,
          -4.215828355014351,
          -3.0469408803270346,
          -7,
          -7,
          -7,
          -7,
          -3.1789769472931693,
          -3.0755469613925306,
          -7,
          -3.1702617153949575,
          -7,
          -7,
          -2.599155000684555,
          -2.776216750606444,
          -7,
          -3.2203696324513946,
          -3.356694958541127,
          -7,
          -4.257306505895937,
          -3.1631438287886273,
          -4.262704542325864,
          -7,
          -3.216297886630392,
          -4.065977853283259,
          -3.8029104894190398,
          -7,
          -3.197831693328903,
          -3.0141003215196207,
          -3.1056237109716145,
          -3.8109713998222077,
          -7,
          -7,
          -7,
          -7,
          -2.856577857697687,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.206906792930864,
          -7,
          -7,
          -4.298405457024487,
          -7,
          -7,
          -7,
          -7,
          -3.6809516111681853,
          -7,
          -3.691567700438057,
          -3.6518763532182574,
          -3.5166235018348,
          -3.6379897807846855,
          -7,
          -4.119890696287638,
          -4.096253732723975,
          -4.108407151772364,
          -7,
          -4.074980914982268,
          -4.924542884841503,
          -3.7453480923842912,
          -4.019178624894263,
          -7,
          -5.087602198880414,
          -7,
          -4.536798248304418,
          -3.339053735709139,
          -7,
          -4.360754303685361,
          -3.8952291148413942,
          -7,
          -3.873836274597429,
          -3.868526886768204,
          -4.203495235193291,
          -4.0300124406298,
          -7,
          -7,
          -4.096492890054361,
          -7,
          -7,
          -3.7178368674869255,
          -3.237313293174686,
          -3.1934029030624176,
          -4.071642711381079,
          -3.6523393356894247,
          -3.207311151436134,
          -2.844388408349991,
          -3.6371093051016494,
          -7,
          -3.5286142667822133,
          -3.4066678953244223,
          -7,
          -4.447220068979909,
          -3.8504482908911513,
          -3.5375942467731942,
          -7,
          -3.401463205016831,
          -3.544378143957812,
          -7,
          -3.3420276880874717,
          -4.379903507451503,
          -7,
          -7,
          -3.595138939338682,
          -3.519746158174064,
          -4.928593834480787,
          -7,
          -3.720572720364261,
          -7,
          -3.7530705265357844,
          -7,
          -4.8039519020845045,
          -3.789192776022594,
          -3.750199727829182,
          -7,
          -3.6304888957237034,
          -3.9611203854246293,
          -4.308308242998225,
          -2.9425041061680806,
          -3.1821032558041695,
          -3.3525683861793083,
          -3.7862434657429205,
          -3.2133919170914584,
          -3.1586639808139894,
          -3.2637543888400056,
          -3.878497858858221,
          -3.601299310194338,
          -4.570116608419219,
          -7,
          -7,
          -3.9129762338315563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2391227510637246,
          -1.7654653443605923,
          -1.9544695321741878,
          -2.3121773564397787,
          -7,
          -3.0703295678267613,
          -2.36579986604032,
          -2.530199698203082,
          -2.321805483857539,
          -2.356467138669094,
          -7,
          -2.8162551132098277,
          -1.6653893141043976,
          -2.3466788990302154,
          -7,
          -2.394674502055374,
          -2.7890516223748403,
          -2.7427251313046983,
          -3.2022157758011316,
          -2.6321197138685406,
          -2.7610389412724987,
          -7,
          -2.3774883833761327,
          -2.8611359755265933,
          -1.709391119989562,
          -7,
          -2.770770215901832,
          -7,
          -3.0013009330204183,
          -3.75530848871007,
          -2.9101010197335384,
          -2.9444756218578463,
          -7,
          -7,
          -1.721735691640912,
          -7,
          -1.904038968600478,
          -7,
          -1.7039697867157162,
          -2.0212136286115205,
          -7,
          -7,
          -3.4448251995097476,
          -1.6955277579250017,
          -3.014352500651009,
          -3.1048284036536553,
          -2.62283547952152,
          -1.8174331441113842,
          -2.832508912706236,
          -1.6914030131311042,
          -2.494589366786662,
          -3.505800931949501,
          -7,
          -1.631467366203099,
          -1.6753323777650668,
          -7,
          -2.611267993114786,
          -7,
          -7,
          -2.7687966125269106,
          -2.1622480318813917,
          -2.463718413219569,
          -1.6757228088459417,
          -2.5167895405103597,
          -2.517855418930029,
          -2.824776462475546,
          -3.8706964579892498,
          -3.105510184769974,
          -2.718709237010724,
          -2.591064607026499,
          -1.7751396102537014,
          -1.8186790056099098,
          -3.269512944217916,
          -7,
          -1.758543655498327,
          -2.04105414195654,
          -2.476155081947642,
          -7,
          -2.688525755237839,
          -3.214843848047698,
          -2.9855761533820546,
          -2.7732987475892314,
          -2.279265624615706,
          -2.7914274668192127,
          -2.6676863818028047,
          -2.932727367301529,
          -7,
          -7,
          -3.325011592333475,
          -3.5114822886260013,
          -7,
          -2.7267272090265724,
          -2.784591823056473,
          -2.6954816764901977,
          -3.025364391574663,
          -3.4045893877910447,
          -3.3935752032695876,
          -1.5465426634781312,
          -7,
          -2.002885688237488,
          -7,
          -1.7500754462389447,
          -2.1620721685536584,
          -3.115194321434587,
          -2.9258275746247424,
          -1.7644667275713992,
          -2.212453961040276,
          -2.469284769398786,
          -2.6881230714056485,
          -7,
          -7,
          -7,
          -7,
          -2.9537596917332287,
          -2.3988077302032647,
          -2.7839685107944083,
          -2.8371674062278354,
          -3.074084689028244,
          -7,
          -2.824451270036613,
          -7,
          -3.0670708560453703,
          -7,
          -7,
          -2.4473131088235682,
          -2.826722520168992,
          -3.0784568180532927,
          -7,
          -3.6886867242841235,
          -2.357934847000454,
          -2.9258275746247424,
          -3.1010593549081156,
          -2.8041394323353503,
          -7,
          -3.3570359400465626,
          -3.1559430179718366,
          -3.144885418287142,
          -3.0940050223646494,
          -7,
          -2.8627275283179747,
          -7,
          -7,
          -3.1177682949263725,
          -2.946452265013073,
          -3.085825533520743,
          -2.6989700043360187,
          -3.190611797813605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0684332525144025,
          -7,
          -7,
          -3.8677727313159287,
          -3.560683591907453,
          -7,
          -7,
          -4.250078287979645,
          -2.706551844648906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.669116253163979,
          -7,
          -7,
          -3.225503119926761,
          -3.858216656412867,
          -7,
          -7,
          -7,
          -7,
          -3.5407047833107623,
          -7,
          -3.7988002176790006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4100176082030527,
          -7,
          -7,
          -2.7596678446896306,
          -4.4488917441512195,
          -7,
          -7,
          -2.9279859470994287,
          -7,
          -3.2085085378884504,
          -7,
          -7,
          -7,
          -7,
          -3.2836403888003676,
          -3.3877247363085967,
          -7,
          -4.0050088206723675,
          -3.919705534549121,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.983551117157769,
          -4.481743520420445,
          -7,
          -7,
          -2.7597622462728526,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.052924683707729,
          -7,
          -7,
          -7,
          -7,
          -3.505602132948883,
          -3.6181527333785195,
          -7,
          -7,
          -3.6872613462435067,
          -7,
          -7,
          -3.269979676645324,
          -7,
          -7,
          -2.8597765299970876,
          -3.1414497734004674,
          -3.0567662983023087,
          -3.415974411376566,
          -7,
          -7,
          -2.8885164610749454,
          -3.653309012938479,
          -3.47158505418519,
          -7,
          -3.732554579851432,
          -7,
          -7,
          -7,
          -3.759554535696884,
          -7,
          -7,
          -7,
          -3.3260626338156793,
          -3.812462124192689,
          -7,
          -7,
          -7,
          -3.2474822606770544,
          -3.6424974950329125,
          -3.0310042813635367,
          -7,
          -7,
          -7,
          -3.8047526021504607,
          -7,
          -4.230321168919079,
          -2.3667837426355174,
          -7,
          -7,
          -7,
          -5.003063971227445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.616663732437289,
          -3.704407927386841,
          -7,
          -7,
          -3.006483156965472,
          -3.3896975482063856,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9125939977521056,
          -2.75960489889897,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6520851030278667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9836262871245345,
          -7,
          -7,
          -3.365273341438565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019697730980192,
          -7,
          -4.024506191528093,
          -7,
          -7,
          -3.217079406146907,
          -7,
          -2.9315849874708,
          -3.296079887636682,
          -7,
          -3.647969458362972,
          -7,
          -7,
          -7,
          -7,
          -3.803457115648414,
          -7,
          -7,
          -7,
          -4.042378598139876,
          -7,
          -7,
          -7,
          -3.3664852172048483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5805828768143675,
          -7,
          -7,
          -7,
          -3.3942239667723677,
          -2.817187475707873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.709439574132411,
          -7,
          -2.9626199946269987,
          -3.882103298105706,
          -7,
          -7,
          -7,
          -3.231851723743416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.938980958131319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.484442207642407,
          -7,
          -7,
          -3.838723190031372,
          -7,
          -3.60916737430202,
          -3.236486876375591,
          -3.5871494982543437,
          -7,
          -7,
          -2.975891136401793,
          -7,
          -2.2857992018968964,
          -7,
          -3.4057446650019667,
          -7,
          -7,
          -7,
          -4.075510464524414,
          -7,
          -2.7696882025975755,
          -3.862131379313037,
          -7,
          -7,
          -3.1896306576921556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4214805302268916,
          -7,
          -7,
          -7,
          -3.6612319765917327,
          -3.3929606147967957,
          -7,
          -4.029261995804175,
          -7,
          -7,
          -7,
          -3.5986810989071634,
          -3.1420764610732848,
          -3.4211101297934343,
          -7,
          -7,
          -7,
          -7,
          -2.9919093037691393,
          -3.977586438003851,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4596939764779706,
          -3.5487578285737045,
          -7,
          -7,
          -7,
          -3.491781775584166,
          -4.0911978303754495,
          -3.3810165714514735,
          -4.534061891739996,
          -7,
          -3.9177155165594932,
          -4.328216457500718,
          -3.905148001856016,
          -7,
          -7,
          -7,
          -3.741624257503812,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4889351046198613,
          -7,
          -7,
          -3.413058655343539,
          -3.83248762323924,
          -3.4708932853456576,
          -3.1953460583484197,
          -2.6826247307581395,
          -3.066427582089823,
          -1.4765437353767086,
          -3.498840504412899,
          -2.59756647208602,
          -2.760007594399437,
          -2.2313967649954636,
          -4.346509448774761,
          -2.65458560671649,
          -2.6974483808191083,
          -2.5011027525524465,
          -3.327563260187278,
          -2.8336428415015997,
          -2.7412736245332567,
          -2.6434186395347297,
          -4.052867009754181,
          -3.7646990637983677,
          -4.09052080802686,
          -3.620198538893282,
          -2.4338304210375745,
          -2.006331374972674,
          -3.7679717213816186,
          -3.074697614873553,
          -2.841434558110041,
          -2.6299190355035416,
          -2.853393977450666,
          -2.6963299081698104,
          -2.540901998604406,
          -3.886772643054438,
          -3.3433347279168006,
          -2.7551122663950713,
          -4.151492428425498,
          -7,
          -3.441495184218261,
          -1.935062037626079,
          -2.550096897281136,
          -7,
          -3.4099331233312946,
          -3.67560605568558,
          -3.511838815670676,
          -3.040074643230312,
          -3.006205517657194,
          -7,
          -2.4888974345488073,
          -7,
          -7,
          -4.171550945676746,
          -4.018062177109417,
          -3.552503086780776,
          -7,
          -3.7697021868101284,
          -7,
          -7,
          -3.9182400902214147,
          -7,
          -7,
          -7,
          -4.155513883900176,
          -3.232676070228884,
          -4.708174361678332,
          -7,
          -7,
          -7,
          -3.9238513610441434,
          -7,
          -5.408887531084357,
          -3.6687895794127114,
          -4.268765127447861,
          -7,
          -7,
          -7,
          -4.496251398039319,
          -3.3060674363555953,
          -2.707712079213691,
          -3.080935556664588,
          -3.830134036038414,
          -2.7817819605838476,
          -7,
          -3.5555103977981775,
          -3.789557210744906,
          -7,
          -5.351558616325058,
          -7,
          -3.474798818800631,
          -4.152400471674778,
          -4.338595923576831,
          -7,
          -7,
          -7,
          -7,
          -2.743570062469853,
          -1.323246817734007,
          -7,
          -2.4878955578888458,
          -2.253983796496258,
          -1.785442829542926,
          -2.716946437342873,
          -1.2505704519861625,
          -7,
          -7,
          -2.7680116190327637,
          -3.1142772965615864,
          -3.0111204844541164,
          -2.789298611159441,
          -2.1973531158873625,
          -3.3223226858740107,
          -2.4782834938362055,
          -2.2715247959581437,
          -1.807186606162684,
          -2.433636512517248,
          -1.8829138114849069,
          -2.4557690646750436,
          -3.4782778319196046,
          -2.167317334748176,
          -7,
          -3.4319263739116437,
          -7,
          -2.140593739321926,
          -3.1132746924643504,
          -2.7293268096468606,
          -2.6624220153246885,
          -2.576953229867915,
          -1.7812251479704675,
          -2.6979264448065052,
          -2.425153665754839,
          -3.5524248457040857,
          -2.6665179805548807,
          -7,
          -3.390758528738717,
          -7,
          -2.276748941031243,
          -7,
          -2.584654239988151,
          -2.871280972857973,
          -3.2604291755779347,
          -1.6410773133253744,
          -2.6915235221681546,
          -1.7945234910719294,
          -3.528402437953617,
          -2.527486687520691,
          -3.2935835134961167,
          -2.1340645523132356,
          -2.3815477619447862,
          -2.808042085314898,
          -3.1407436671412032,
          -3.4260230156898763,
          -2.6089536992758626,
          -1.6370485285004908,
          -2.624134702492355,
          -3.130333768495006,
          -2.109658461244828,
          -7,
          -2.6258451726313417,
          -3.2166056942039845,
          -1.4577654795018509,
          -3.0874264570362855,
          -1.6630574484453744,
          -3.1809378639837487,
          -7,
          -2.7548395882408863,
          -2.6766936096248664,
          -3.1466447454142683,
          -2.969364133578134,
          -1.497920176700931,
          -7,
          -3.3152354096177272,
          -2.387399605873772,
          -3.7926717891415676,
          -7,
          -3.1710630510449134,
          -3.6961815871685237,
          -3.8750612633917,
          -3.062707303658236,
          -2.246163347678497,
          -1.6390359691991763,
          -2.5483894181329183,
          -2.928779787288558,
          -3.41161970596323,
          -7,
          -1.8656889096233065,
          -1.6575522630041335,
          -2.7267272090265724,
          -7,
          -2.4447764653480064,
          -2.0693509006842974,
          -2.3578290118636067,
          -2.7567414073569965,
          -2.3872579622169017,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.991803723060169,
          -7,
          -3.1077750894177876,
          -3.523095838252568,
          -2.2149746005646884,
          -7,
          -3.456366033129043,
          -2.9259992664561554,
          -3.4019172505175748,
          -3.4216039268698313,
          -3.111094410509336,
          -2.007288102842785,
          -1.6757244422657747,
          -3.5742628297070267,
          -7,
          -7,
          -2.075546961392531,
          -3.1319392952104246,
          -3.4553017716570764,
          -3.4954055631461936,
          -2.5148427896837955,
          -2.0784960072323395,
          -2.486784571399042,
          -2.536793259815371,
          -2.2991327791835294,
          -3.8174992618677583,
          -2.403977963669355,
          -3.1015752462559334,
          -1.8282845410046067,
          -2.6919651027673606,
          -7,
          -2.843440425475574,
          -2.890979596989689,
          -3.187520720836463,
          -2.0933402269453776,
          -2.0785311739978143,
          -2.707759369950592,
          -3.419625360887743,
          -2.31093828432423,
          -2.6787206587279364,
          -3.1085650237328344,
          -2.139074837130837,
          -2.3878642059401316,
          -2.810098040681143,
          -3.0907869279492677,
          -4.22816928953985,
          -7,
          -7,
          -3.246537452532851,
          -3.749646150178696,
          -3.9397313561662894,
          -2.2545353570538538,
          -4.0508435809569185,
          -4.054459837239404,
          -2.453241420511788,
          -3.40655153438964,
          -7,
          -7,
          -2.9549924939289824,
          -1.9893726580880053,
          -3.155766069605062,
          -7,
          -7,
          -7,
          -3.295243603126737,
          -2.442073689143087,
          -3.76547695894516,
          -7,
          -2.3744350901089546,
          -2.444336669547818,
          -3.8357666456143447,
          -4.529533012323238,
          -7,
          -3.504619123819373,
          -3.8384586796874895,
          -4.530455843584676,
          -3.5358737182193245,
          -4.057666103909829,
          -3.924795995797912,
          -7,
          -4.229579462665645,
          -3.6420438720485455,
          -7,
          -3.443840458807008,
          -4.52580901112709,
          -3.2695006550094687,
          -3.325528490869888,
          -3.2995174339276034,
          -4.527836045164708,
          -3.8321638947835877,
          -2.7393992645779885,
          -3.9341827155103566,
          -2.248747410028291,
          -7,
          -3.0153724583497334,
          -7,
          -3.495203630280667,
          -3.036266998871953,
          -2.1387837461092274,
          -3.350332833192728,
          -2.137976018001224,
          -3.251682454964639,
          -4.053577787125283,
          -3.254064452914338,
          -3.3781313064867438,
          -3.3293088754705984,
          -3.6895752157599384,
          -7,
          -4.04988962552391,
          -3.6873378244924546,
          -2.808542631074618,
          -3.0386698268227517,
          -4.226471015317139,
          -7,
          -2.680666199170931,
          -4.224584853731531,
          -3.682224072862761,
          -3.618280588410313,
          -7,
          -3.775404112153162,
          -2.272527237654037,
          -4.049579784025463,
          -2.7143914028949405,
          -7,
          -7,
          -2.3399696410082558,
          -2.6248782618895143,
          -3.6844349723089813,
          -4.224001847164982,
          -3.6003072173984116,
          -3.9306052271529284,
          -3.8597505631165796,
          -3.386986195869725,
          -3.9409644934927996,
          -7,
          -2.191526832708817,
          -3.2006364134455194,
          -2.5293381019103465,
          -4.2254126728659545,
          -7,
          -4.553239600315695,
          -3.286880427183525,
          -3.470839085190034,
          -3.244689360492884,
          -4.528093588006807,
          -2.991964044403458,
          -7,
          -7,
          -4.2243387908596555,
          -2.7696337073496875,
          -7,
          -3.4357953789580624,
          -3.3923702932353117,
          -2.597158169482056,
          -2.362843928614233,
          -3.832687703038595,
          -3.487254103329864,
          -3.2573753848060916,
          -4.2372923375674585,
          -2.7441942081672615,
          -3.6891565819544923,
          -7,
          -3.8481644754706736,
          -3.785199289728364,
          -3.618245722588928,
          -7,
          -3.2658062062050908,
          -2.510234078042335,
          -4.531644939077263,
          -4.125101566510315,
          -7,
          -3.3633810336054455,
          -4.0595003074627485,
          -3.475441149842973,
          -3.7245450253450594,
          -7,
          -4.055442043614812,
          -1.7357602354022215,
          -2.9226289132446137,
          -4.524577851572574,
          -4.525744300194379,
          -2.6561755102498417,
          -7,
          -7,
          -7,
          -2.565731085047682,
          -2.922349113974395,
          -2.715426287355302,
          -3.262270237307056,
          -2.7444494574467986,
          -2.3630117907552672,
          -4.532818053867167,
          -3.7059919299146995,
          -4.525912528568072,
          -4.0512683188703855,
          -3.2582969314691157,
          -3.156148415962715,
          -2.792293174032692,
          -7,
          -7,
          -4.231991755088181,
          -3.15927273458622,
          -7,
          -7,
          -3.3396377405079405,
          -3.760648619581356,
          -4.049992856920142,
          -3.158349925522182,
          -4.541267138664084,
          -3.852260351006953,
          -4.248818948640947,
          -3.640071297202855,
          -3.176969682371759,
          -4.240411949590544,
          -4.230052766370181,
          -1.9809381370915902,
          -3.9278064918639526,
          -7,
          -7,
          -4.232449724062003,
          -7,
          -7,
          -7,
          -2.5546208162578674,
          -3.1863526580107426,
          -3.6758366435022687,
          -7,
          -3.304569887203933,
          -2.0320037772941855,
          -3.4926461193813223,
          -2.673182239227937,
          -2.933039743665037,
          -3.3625704305827226,
          -3.2939270038674855,
          -3.7622032550681346,
          -3.6981254114721787,
          -3.758848836937695,
          -4.2394746634651845,
          -3.4582309613062225,
          -4.530699041844945,
          -7,
          -7,
          -3.392769346877258,
          -3.845829520066492,
          -3.4619169336782014,
          -4.527784518264025,
          -2.13469679217285,
          -7,
          -2.3106368275692746,
          -3.230027195569308,
          -3.048504453322141,
          -3.0232781872177306,
          -4.230001623262765,
          -3.5073835557363866,
          -4.070862550639413,
          -7,
          -3.0310287880069935,
          -2.002570998365708,
          -2.3012918028548115,
          -7,
          -3.7470490969695196,
          -3.8302164400865957,
          -4.049153390706091,
          -7,
          -7,
          -7,
          -4.531555550483368,
          -2.349123534570507,
          -3.3907114290470077,
          -2.8751733249280984,
          -3.1735195916930334,
          -7,
          -4.529776727759189,
          -3.4518887307742987,
          -2.9560546332453033,
          -7,
          -3.6818483081437425,
          -4.069655765831316,
          -3.3949267432044627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542028281879299,
          -1.8673473998790473,
          -7,
          -7,
          -7,
          -4.528338112324839,
          -2.496878418998322,
          -2.655228102880582,
          -7,
          -7,
          -4.101495036729082,
          -4.066363202258494,
          -2.345681730913762,
          -2.5829565081628103,
          -3.337945698102355,
          -4.526390976036641,
          -7,
          -1.9000856192499211,
          -2.248686239706898,
          -1.2378704566780478,
          -7,
          -2.9045764498757327,
          -3.303793008415947,
          -3.5283252460556915,
          -3.298249291813928,
          -2.7859904363508843,
          -3.1708932853355596,
          -2.0605408948064348,
          -3.013998045006722,
          -3.69877452783365,
          -3.091993372103274,
          -3.100740597292186,
          -7,
          -4.538083367813495,
          -3.7774751552013255,
          -3.708299470109623,
          -7,
          -3.926818160391426,
          -3.8392265740134355,
          -3.9263939002696824,
          -2.676217409487349,
          -7,
          -2.713231045167001,
          -2.7848374672798744,
          -4.537302670071282,
          -3.274826041478985,
          -2.60862669869485,
          -2.6698579446524158,
          -2.7907541645992353,
          -7,
          -3.2417290583944616,
          -4.526649376997381,
          -3.9317755929080946,
          -3.186850431506691,
          -3.6984858063814814,
          -2.287551764275916,
          -2.7320094709078133,
          -4.292134185904887,
          -4.2431869241314715,
          -3.4149852789740165,
          -2.8150978852636968,
          -2.4006578648786436,
          -2.8580965785556107,
          -7,
          -7,
          -7,
          -3.01949801872729,
          -3.208581549418287,
          -7,
          -3.833083334178343,
          -3.5518645756606655,
          -7,
          -3.1142772965615864,
          -3.0821696407966246,
          -3.2580440465002014,
          -7,
          -3.6906896037283614,
          -3.2695246186438496,
          -3.8337716385611715,
          -2.9233932493257404,
          -2.5137881643916122,
          -2.7349918073029826,
          -7,
          -3.363346478137335,
          -3.535907776156941,
          -3.046706936468822,
          -7,
          -4.53487608457354,
          -4.527926202533123,
          -3.784260582566084,
          -3.446437302477664,
          -3.7384407792400953,
          -3.7010990244718034,
          -7,
          -7,
          -2.9820143951684135,
          -7,
          -7,
          -4.533365272749635,
          -4.096782601272063,
          -7,
          -2.139716276846601,
          -7,
          -7,
          -1.8924205549625608,
          -2.071589960934999,
          -4.41258653335607,
          -2.6401188376970386,
          -3.219666695309768,
          -1.8469616287811097,
          -2.781272974067587,
          -3.0786380383696725,
          -0.8717851120656792,
          -2.118578787437554,
          -2.1070551770361226,
          -2.918800028747105,
          -2.617690610641423,
          -2.729846051566213,
          -1.7151679913006146,
          -3.243837854588041,
          -2.7725716041087916,
          -1.6284648915833002,
          -3.79644547273806,
          -2.5714807915691624,
          -4.265041993273718,
          -3.0787595940382304,
          -2.5541104258018246,
          -1.922777805741903,
          -2.7247329816316608,
          -4.133921940423772,
          -3.062111714033968,
          -2.838552266388136,
          -3.769340394703022,
          -1.6504266854666678,
          -2.5807226917052044,
          -2.9610487745668284,
          -3.0699012492626916,
          -3.2717075994955067,
          -3.181781470447434,
          -3.575534218319864,
          -3.6541230408637997,
          -2.497805680042165,
          -3.1925854369172395,
          -1.6796462880176226,
          -4.057501279050107,
          -2.696531119969607,
          -2.331785136469075,
          -2.9279581791148983,
          -2.2438800675491812,
          -2.859186349350555,
          -3.702762777554604,
          -2.29209349276241,
          -3.169481875974883,
          -3.3276593802522756,
          -2.590604564498762,
          -2.289844875657108,
          -2.413748485257935,
          -4.540054042264075,
          -2.3207996990859354,
          -3.3943093735350707,
          -4.527049594892765,
          -3.1465045564041887,
          -3.5226819908643168,
          -2.9319776588193447,
          -7,
          -2.377777299026072,
          -2.2477567146336086,
          -3.396978293242532,
          -7,
          -4.2781016701595505,
          -3.7514843956354293,
          -2.598946250333827,
          -7,
          -3.330958646960376,
          -1.4083960534693816,
          -3.3146220116074567,
          -7,
          -2.744486551338886,
          -3.301514687266299,
          -3.016708424906099,
          -3.1213253059294366,
          -2.1041161084632165,
          -3.5958488051466677,
          -1.2414399903315696,
          -2.9286279602268506,
          -7,
          -1.8682955254059768,
          -2.5399156234701907,
          -3.450237261608906,
          -2.408690408121786,
          -4.052911867935484,
          -2.2577973416492347,
          -2.700922906704107,
          -3.6811672035972047,
          -4.226445232748228,
          -4.525731356850706,
          -7,
          -4.526752694348148,
          -3.502984425501946,
          -1.4078192004090677,
          -2.9344984512435675,
          -1.5860470645033387,
          -3.184975190698261,
          -2.528342484271277,
          -1.141066773176585,
          -2.29543118794837,
          -3.368559589517835,
          -3.8291622019278186,
          -1.6318249995296534,
          -3.484791459355562,
          -1.5001926955968021,
          -2.3384564936046046,
          -2.798151698966038,
          -3.643366302517658,
          -2.108798685448187,
          -2.5435590011736546,
          -2.5962497526472124,
          -3.3305786318991895,
          -3.752944296486384,
          -2.4007397782617166,
          -3.929495559155406,
          -2.7758466875586456,
          -3.079393349595296,
          -2.684426418406065,
          -4.524733559186517,
          -1.4880132232611647,
          -7,
          -3.485889125183105,
          -2.581918971095267,
          -1.3640214094351226,
          -1.7593966529774778,
          -4.224066664334767,
          -3.021955025654265,
          -2.142782517687065,
          -3.2121114724935333,
          -2.6676712278896417,
          -7,
          -3.0480406308580337,
          -1.5830380370702757,
          -7,
          -2.8103876324018415,
          -3.206985243407348,
          -3.1589025110397135,
          -2.3068363763346516,
          -3.4515433876937274,
          -2.4741911363832516,
          -2.9332594512699535,
          -3.6868915113982936,
          -2.666393165355889,
          -1.7028743734610616,
          -2.3576112698227605,
          -3.6808403640591796,
          -2.495580220261618,
          -2.672073856472178,
          -3.5906932564421776,
          -1.163124429608849,
          -3.928856533581911,
          -3.9255699095433765,
          -1.9404752505634317,
          -2.8127400992175207,
          -1.277894090983314,
          -2.5489303754800257,
          -2.3769204460896,
          -3.260836819581087,
          -3.4901884068008413,
          -3.187791799106236,
          -4.053859215076276,
          -2.175290653648693,
          -2.9725370989719093,
          -2.774417984050812,
          -2.1252408467371016,
          -2.667377219263133,
          -4.525161467496205,
          -2.199531302573584,
          -1.2549987492914396,
          -2.4404156056103177,
          -3.434384633690481,
          -1.848084338954773,
          -2.855809799467775,
          -3.0796559960555983,
          -2.980306438226822,
          -1.2379289660703994,
          -2.193720747359399,
          -2.601895837393877,
          -2.912335949924013,
          -7,
          -4.224053701674689,
          -2.2824786342607655,
          -3.0634544267719757,
          -2.784591823056473,
          -2.4447764653480064,
          -7,
          -2.7890113727979955,
          -0.9931111367443974,
          -1.69371900482725,
          -2.4079610051383122,
          -2.5653852463756084,
          -4.054166019538618,
          -2.997211582832505,
          -7,
          -2.6741748768003752,
          -2.2840002381605906,
          -2.829315261951061,
          -4.525472408936226,
          -2.868994403748707,
          -2.9327400435462407,
          -1.337860722048636,
          -3.688229077040167,
          -4.529738255465954,
          -4.525537160391059,
          -3.8263210491496613,
          -3.7486272694622023,
          -3.680943850666622,
          -3.3511518573324075,
          -1.6490746525211883,
          -3.394576747632524,
          -3.3984112726125186,
          -4.530481449815745,
          -3.012492105236467,
          -3.6825834061045346,
          -3.5294175204160725,
          -4.05600230865876,
          -3.2295154631250256,
          -2.9058326626454822,
          -3.1596298466206187,
          -2.158804092216579,
          -3.0203388819007317,
          -3.533251952091484,
          -2.878010860757683,
          -4.0482993461008,
          -3.029789470831856,
          -3.530814193504616,
          -4.223729509364877,
          -1.865900612004408,
          -3.7547559326268156,
          -3.532346638573482,
          -2.3242583813241886,
          -3.2306070390410833,
          -3.597158688659135,
          -4.049579784025463,
          -3.682222460833141,
          -3.4685073300813962,
          -3.9238654751855013,
          -3.0425986729597225,
          -3.4986363091211903,
          -4.534546439654068,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.207844328838135,
          -7,
          -7,
          -7,
          -7,
          -3.644955299203869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.160543558238841,
          -7,
          -7,
          -3.1763083520279114,
          -3.8744203511135016,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.396803566827695,
          -7,
          -7,
          -7,
          -3.3443922736851106,
          -7,
          -7,
          -3.0430674079304287,
          -7,
          -7,
          -3.3350565194390915,
          -4.4466614109543094,
          -7,
          -7,
          -3.54703589974001,
          -7,
          -2.9808362964839756,
          -7,
          -7,
          -7,
          -7,
          -3.494850021680094,
          -3.136995216462121,
          -3.1408221801093106,
          -3.495636829183877,
          -3.2779528470388093,
          -7,
          -7,
          -7,
          -2.7876375568784235,
          -7,
          -7,
          -7,
          -7,
          -2.858623119912763,
          -4.170247043036237,
          -2.992553517832136,
          -7,
          -7,
          -7,
          -7,
          -3.752969865029084,
          -7,
          -7,
          -4.2847271454137505,
          -7,
          -2.604825824595212,
          -7,
          -7,
          -3.2497363045688332,
          -7,
          -3.3296012483565187,
          -2.7715874808812555,
          -2.3839209181700145,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.407487299358585,
          -3.683587317572767,
          -3.3739413115180614,
          -7,
          -7,
          -7,
          -3.0214649540978553,
          -7,
          -7,
          -7,
          -4.190051417759206,
          -7,
          -7,
          -3.255995726722402,
          -2.18821497141379,
          -7,
          -7,
          -7,
          -7,
          -3.1465586698056422,
          -7,
          -7,
          -2.9500401482063032,
          -7,
          -3.5634810853944106,
          -3.398981066658131,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4331028172342286,
          -3.1207234559041432,
          -7,
          -7,
          -7,
          -4.154797716800404,
          -3.428944290035574,
          -7,
          -3.733277533932582,
          -7,
          -7,
          -2.7359467527259103,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.28668096935493,
          -7,
          -3.3822332349705566,
          -3.5268559871258747,
          -7,
          -3.792461731346951,
          -7,
          -7,
          -7,
          -7,
          -3.4394905903896835,
          -4.105476121121821,
          -3.907034952483417,
          -7,
          -7,
          -7,
          -3.859522564958292,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.159388533747565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7319467248046987,
          -7,
          -4.009472142562814,
          -7,
          -3.218601143315633,
          -2.666713973094915,
          -3.0960405542954277,
          -2.336316756240027,
          -2.636320699245659,
          -3.458033192496506,
          -2.7919244549379605,
          -7,
          -7,
          -3.4347285417797577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.41073506681745,
          -7,
          -7,
          -7,
          -3.8208579894396997,
          -7,
          -3.373341178041854,
          -7,
          -7,
          -3.322219294733919,
          -7,
          -3.8385972528166565,
          -7,
          -7,
          -7,
          -2.9829402547939723,
          -3.0835026198302673,
          -7,
          -3.25478968739721,
          -2.4756711883244296,
          -3.2730012720637376,
          -7,
          -7,
          -7,
          -7,
          -3.023938007498089,
          -3.71474876072506,
          -3.474274554725548,
          -4.935961307815725,
          -7,
          -7,
          -7,
          -2.952469547503639,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.858209418903174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0661394928706995,
          -7,
          -7,
          -7,
          -3.509605704611556,
          -3.5689054149828787,
          -2.53386043964867,
          -3.497620649781288,
          -7,
          -7,
          -3.0870712059065353,
          -2.930567009900929,
          -2.9590658658204045,
          -7,
          -3.4916912040791415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.321722674346009,
          -3.8169038393756605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3251049829714074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.485295438726089,
          -7,
          -3.5496162395190853,
          -2.7876818161887194,
          -7,
          -7,
          -7,
          -3.6736817501041967,
          -3.9624640460579013,
          -7,
          -4.315466523495654,
          -7,
          -7,
          -7,
          -3.511749711344983,
          -2.3695531735295496,
          -2.754157142891773,
          -7,
          -7,
          -7,
          -7,
          -3.7722354673339833,
          -3.943346098356591,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.292920299600006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.564121375515653,
          -3.933571641443591,
          -4.3445760325747065,
          -7,
          -2.7004729549281645,
          -4.547134479806692,
          -7,
          -7,
          -7,
          -7,
          -2.9811841373983543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0153073518517566,
          -7,
          -7,
          -3.018006626523271,
          -4.082677680648112,
          -7,
          -7,
          -4.723865964443504,
          -3.220631019448092,
          -3.249931756634195,
          -3.827089131715571,
          -2.9732461585033687,
          -3.557226403727186,
          -3.122625396909397,
          -4.031125575731565,
          -4.030850593183277,
          -4.003507922770787,
          -2.654917498508147,
          -7,
          -3.2874613245929347,
          -2.8869980456710995,
          -3.7815040572087324,
          -3.862667950228588,
          -3.707314633588708,
          -4.487232085266766,
          -4.003007906240602,
          -3.4693678549817437,
          -3.001486462883789,
          -4.055531225050898,
          -4.193690297357073,
          -4.222222082360713,
          -3.0742067332841834,
          -3.2921917372575997,
          -2.834171816391641,
          -4.388269982091079,
          -4.350228629754866,
          -3.9276013093257225,
          -3.213916009644023,
          -7,
          -7,
          -4.171711830697223,
          -3.618832257891557,
          -3.326581618446525,
          -7,
          -4.205402873822617,
          -2.6187489037583633,
          -2.6316852986795403,
          -3.166133970305109,
          -4.355164066515204,
          -7,
          -3.5951954985716172,
          -3.2697074770238133,
          -3.3479151865016914,
          -3.762858544866317,
          -3.927547666088493,
          -3.7893427015222065,
          -7,
          -2.9947872586547124,
          -3.901621764093357,
          -7,
          -7,
          -4.397053143018109,
          -3.0773679052841567,
          -7,
          -2.840952300877853,
          -3.3925900368430986,
          -4.666167272125798,
          -7,
          -7,
          -7,
          -2.667829235565519,
          -7,
          -4.805595998327254,
          -3.6458478396740848,
          -4.251589557275781,
          -7,
          -3.005589957599989,
          -4.152273052054602,
          -3.9470974721907366,
          -7,
          -3.6461585698621124,
          -7,
          -3.5831285727428983,
          -3.3594560201209864,
          -7,
          -2.9492240646946035,
          -2.821204883319006,
          -7,
          -4.5050433304206114,
          -3.335858911319818,
          -7,
          -3.8439072693947747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8133808067338557,
          -2.0798270372177763,
          -3.256958152560932,
          -2.650333781149533,
          -2.4533183400470375,
          -2.16354083719592,
          -2.9693040624631877,
          -1.8078434842931863,
          -7,
          -2.828015064223977,
          -3.0615781248227445,
          -2.973589623427257,
          -3.0498026747855222,
          -2.62085647728201,
          -2.212377875811997,
          -3.541953474458236,
          -1.4682339277267094,
          -2.4537004733597723,
          -2.5970366649776535,
          -3.1067007323623543,
          -2.875447131459646,
          -1.1696838475727276,
          -7,
          -2.681060243631812,
          -7,
          -2.7153532715849886,
          -7,
          -2.6318194238085884,
          -7,
          -7,
          -3.2882918201661653,
          -1.925256900674232,
          -2.6986571996858566,
          -2.7728105019145324,
          -2.5697993757102093,
          -3.3001605369513523,
          -2.927027994490033,
          -3.150961006271017,
          -7,
          -2.993876914941211,
          -2.7243896635178304,
          -7,
          -2.99563519459755,
          -2.7948364578145615,
          -3.164798819693455,
          -2.369786546693187,
          -1.8922934099642215,
          -2.048643178798163,
          -3.42422807069598,
          -2.5196405150411416,
          -2.6020599913279625,
          -2.3056697671748903,
          -3.1506541205096408,
          -7,
          -3.080175365574602,
          -2.759856627340681,
          -3.526597709103452,
          -2.1033724596429346,
          -7,
          -7,
          -2.619994012623545,
          -7,
          -2.3421330285112987,
          -2.0382645000952824,
          -2.4631461367263494,
          -1.6595481798668492,
          -7,
          -3.4464853882977966,
          -7,
          -2.655438589970129,
          -2.4244732731953342,
          -3.5427009694481106,
          -2.8051042162920505,
          -2.2707564511001275,
          -3.251638220448212,
          -2.9741661461216427,
          -2.510971747503651,
          -3.4379090355394983,
          -7,
          -3.2538022647686016,
          -7,
          -3.353852142602988,
          -7,
          -2.549399993299562,
          -2.2772024156793007,
          -2.849265817161557,
          -2.8252637950292847,
          -7,
          -7,
          -2.5368649376417416,
          -3.021912520689034,
          -2.6954816764901977,
          -2.0693509006842974,
          -2.7890113727979955,
          -7,
          -2.5537727296320045,
          -3.219751182542442,
          -2.5393713363853183,
          -3.0128372247051725,
          -3.3550682063488506,
          -3.016476194280864,
          -7,
          -2.912904969285542,
          -7,
          -3.0919481908785595,
          -7,
          -2.5903680640032447,
          -7,
          -2.2640471138775404,
          -7,
          -3.028977705208778,
          -7,
          -7,
          -3.2833012287035497,
          -2.9691828592322613,
          -2.6919651027673606,
          -2.2077431980508453,
          -3.481729196960016,
          -3.222456336679247,
          -7,
          -2.5149270491751405,
          -7,
          -3.3289908554494287,
          -3.3818367999983434,
          -3.350441856535061,
          -2.7987657055815633,
          -7,
          -3.0042599416470424,
          -3.3752367289481646,
          -3.7670816213633223,
          -7,
          -7,
          -2.015918333597989,
          -3.3506356082589543,
          -7,
          -3.3119656603683665,
          -3.37984917876283,
          -7,
          -3.069020241410887,
          -3.3039516339434503,
          -3.112157966516305,
          -7,
          -7,
          -3.2539434626692585,
          -7,
          -3.0672940863159766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5503812467309923,
          -7,
          -4.18974290024157,
          -2.976177969832669,
          -4.157940055964767,
          -7,
          -2.515994425243755,
          -7,
          -7,
          -7,
          -3.866877814337499,
          -2.9085574677038912,
          -3.5754765086019,
          -7,
          -7,
          -7,
          -3.8523579836678272,
          -2.778764227876941,
          -4.030559245291156,
          -7,
          -3.0084818837366996,
          -3.0872320042826615,
          -7,
          -7,
          -7,
          -3.898478353232805,
          -3.577692815569536,
          -4.163638359628923,
          -3.8263937997178976,
          -7,
          -4.155396773704851,
          -7,
          -7,
          -7,
          -7,
          -3.924305136154559,
          -7,
          -3.903876433238587,
          -3.4634450317704277,
          -4.036292323610829,
          -7,
          -7,
          -3.5992825013197454,
          -4.177161199726047,
          -2.751784139570337,
          -7,
          -7,
          -7,
          -7,
          -3.5882436869396193,
          -2.7876536516949577,
          -3.9172691302211917,
          -3.014960330675915,
          -4.300421557383072,
          -7,
          -3.869084973832671,
          -3.9167170775988125,
          -7,
          -4.173739713951887,
          -7,
          -7,
          -7,
          -3.036853369184079,
          -3.3216294947679144,
          -7,
          -7,
          -3.5123374623329355,
          -7,
          -3.5831760948134486,
          -3.9552065375419416,
          -7,
          -7,
          -3.4687489409171475,
          -7,
          -3.4262129542373616,
          -7,
          -7,
          -3.0718820073061255,
          -3.721728198572788,
          -7,
          -7,
          -3.917111472493697,
          -4.168939213835978,
          -7,
          -3.9357087478426633,
          -7,
          -3.887701675781762,
          -3.010496569131057,
          -3.758457688610466,
          -3.605771778568517,
          -4.154302219684665,
          -7,
          -7,
          -3.4921455180442877,
          -7,
          -3.767947020998737,
          -7,
          -3.7460422835519394,
          -7,
          -7,
          -7,
          -3.1336703790124876,
          -7,
          -4.2079035303860515,
          -3.5806399120080803,
          -3.77853711845159,
          -3.1436738997980007,
          -7,
          -7,
          -3.8766796104192007,
          -7,
          -2.4801679759527886,
          -7,
          -7,
          -4.201724770116379,
          -3.7596930204516097,
          -3.9551343096156333,
          -7,
          -3.5027153400182796,
          -3.1404094433880916,
          -7,
          -3.6163074351357913,
          -7,
          -3.846406705028264,
          -7,
          -4.218509247198932,
          -7,
          -7,
          -7,
          -2.5162760703791833,
          -3.4449031627954616,
          -7,
          -7,
          -3.66593259903762,
          -7,
          -7,
          -7,
          -3.1137914745357826,
          -7,
          -2.5797478801414493,
          -3.3778524190067545,
          -4.146345128650468,
          -3.1223329230065637,
          -7,
          -4.328827939014281,
          -7,
          -7,
          -7,
          -3.9229848157088827,
          -3.356174635493612,
          -7,
          -7,
          -7,
          -3.5722100992493604,
          -7,
          -7,
          -7,
          -4.1830989401001295,
          -7,
          -7,
          -7,
          -7,
          -4.207553585949308,
          -7,
          -7,
          -7,
          -3.8640658790902367,
          -2.8807329970954307,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0218584437341813,
          -7,
          -3.5159400420933182,
          -7,
          -4.278822168352688,
          -2.7441364524012473,
          -3.695277323219642,
          -3.225497247312828,
          -3.4000196350651586,
          -4.183298321075812,
          -4.206987694756409,
          -7,
          -3.7158919717962857,
          -3.8779181894528207,
          -7,
          -4.2557547866430445,
          -7,
          -7,
          -7,
          -7,
          -3.594309661839646,
          -7,
          -7,
          -2.260894630279264,
          -7,
          -2.9662758570396366,
          -4.166163593747834,
          -3.2834425776004537,
          -3.8596785766284483,
          -7,
          -3.4396484295634737,
          -3.9024108711664565,
          -7,
          -7,
          -2.295068142326665,
          -2.8560827272755613,
          -7,
          -4.151614972016013,
          -3.461708570064366,
          -3.250450499446079,
          -7,
          -7,
          -7,
          -7,
          -2.726190294147344,
          -3.5454803047994106,
          -2.564442126906085,
          -3.6907840966330903,
          -7,
          -7,
          -7,
          -3.5759667969424704,
          -7,
          -3.854700675614607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5705903249024113,
          -7,
          -7,
          -7,
          -7,
          -3.470410490975931,
          -3.5654050375151254,
          -7,
          -7,
          -4.268531170386822,
          -7,
          -3.0917548625614546,
          -3.0053735847160605,
          -3.7137984441929106,
          -4.1541195255158465,
          -7,
          -2.5949891349772547,
          -3.721288378818099,
          -2.0343471972167597,
          -4.170408411725318,
          -3.28200866481907,
          -7,
          -4.159206133646325,
          -7,
          -2.5705244084026475,
          -3.9831750720378127,
          -2.80174661921946,
          -3.2769670381470917,
          -7,
          -4.18514535767565,
          -7,
          -7,
          -3.880098704083314,
          -3.6181527333785195,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.887476638154133,
          -7,
          -3.9009948994400565,
          -3.023800984470638,
          -3.702171950857711,
          -3.9155317393839453,
          -3.407447560198671,
          -2.6964586647109856,
          -3.7313066641817545,
          -7,
          -4.042076489364744,
          -7,
          -3.6944004327307844,
          -3.6434279999623076,
          -3.7166987712964503,
          -2.9250063310491754,
          -3.186904991316638,
          -7,
          -4.19506899646859,
          -3.9314832970220768,
          -3.3017080511989114,
          -2.588199629329094,
          -3.32508443875409,
          -7,
          -7,
          -7,
          -3.2465657207019256,
          -3.4739733021220007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.162624140307846,
          -3.7955092611743777,
          -7,
          -4.176293882538767,
          -3.951653166268217,
          -7,
          -3.8536373819585945,
          -3.5810503444369295,
          -3.237262751459272,
          -4.169439298978941,
          -3.521225282676702,
          -3.729775730905153,
          -4.294422133112984,
          -7,
          -7,
          -7,
          -3.7576996250877386,
          -3.8198289848169766,
          -3.6765107102825536,
          -4.199755177253475,
          -7,
          -7,
          -3.9091547098084254,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.812454957991551,
          -7,
          -7,
          -2.4502573438100157,
          -2.7404284867039603,
          -7,
          -3.022549658778618,
          -3.472410684025669,
          -2.131231706151648,
          -3.096828255763481,
          -4.244524511570083,
          -1.1589200266038442,
          -2.5503036305145543,
          -2.363240756276155,
          -3.2740808398686907,
          -2.955727278345016,
          -2.981100342697114,
          -1.8854265297985533,
          -3.1292931856342396,
          -3.1504779795866655,
          -2.1309178720102264,
          -7,
          -2.8258332489949707,
          -7,
          -3.4523543754279347,
          -2.6652190398290867,
          -2.2963622293270944,
          -3.217878578027433,
          -4.0682600937746995,
          -3.4299210335094057,
          -3.3490083922712177,
          -3.600346581311417,
          -2.2019923324997857,
          -3.1474598958471045,
          -3.1957222952450492,
          -3.638052246729691,
          -3.563733164073743,
          -3.4162243170985684,
          -3.935003151453655,
          -4.327501972540084,
          -2.969964388176368,
          -3.3831268885240657,
          -2.448244007666316,
          -4.173390251465195,
          -3.334396300991193,
          -2.4282121139948085,
          -3.2162471281677285,
          -2.7282105056746593,
          -3.5900612308037427,
          -7,
          -2.991483921567074,
          -3.0095432654699916,
          -2.863426312832213,
          -2.4520720964238154,
          -2.997073010851781,
          -3.342373326372252,
          -7,
          -3.1507458562177173,
          -4.308628432599052,
          -7,
          -4.299812265495717,
          -3.4578236920187804,
          -3.1172002493079924,
          -7,
          -2.284342443665945,
          -2.841967182770774,
          -3.8605426258743467,
          -4.159507037477322,
          -7,
          -4.162026432421177,
          -2.770010546065663,
          -7,
          -3.837015086445894,
          -2.183475662326633,
          -3.4387292874597497,
          -7,
          -2.4546181138415584,
          -3.248261207021154,
          -3.0510589270197617,
          -3.072029200827922,
          -2.8976560240030134,
          -4.002252479920538,
          -0.9834106257004745,
          -3.948706308904852,
          -7,
          -2.5602335762820863,
          -2.730217259371856,
          -7,
          -3.3437581932446805,
          -4.1627734388351865,
          -2.8834392328044864,
          -3.142926666624649,
          -3.6213450835431074,
          -4.156730826499419,
          -7,
          -7,
          -3.677728586801082,
          -4.276162980319142,
          -1.863002557270298,
          -3.203522416822585,
          -2.4176075541104693,
          -2.6242820958356683,
          -2.111748093301207,
          -1.2656919266736266,
          -2.2395714741767447,
          -3.4183289173165043,
          -4.1584529606888285,
          -1.6675233466792163,
          -3.3087777736647213,
          -1.9804532507909565,
          -2.8027737252919755,
          -2.6335575629523102,
          -2.995443229111311,
          -2.226494526388427,
          -1.9488568372466288,
          -2.5890936141146526,
          -2.2004562652820434,
          -3.210704863182517,
          -2.2366665416716964,
          -3.019472366839173,
          -2.5995585423686345,
          -3.5889156661572823,
          -3.152466715105975,
          -7,
          -1.2116210789649458,
          -3.3085948999942936,
          -4.156821635591626,
          -2.571364316383313,
          -2.0358785286367036,
          -2.1568929555183947,
          -4.151124590050682,
          -2.5155294493748626,
          -2.933681925274947,
          -2.580486338650246,
          -3.375506847812425,
          -4.149803938227022,
          -3.407447560198671,
          -2.33042767321899,
          -3.8518085142282374,
          -3.010299956639812,
          -2.8084270532729314,
          -3.3393946485141663,
          -1.5109633769042548,
          -2.9599055416319153,
          -2.333773571713693,
          -7,
          -2.9361587817056365,
          -3.192455938511975,
          -2.369965093310457,
          -2.3502480183341627,
          -3.0387424037299495,
          -3.0886675525424048,
          -3.2756951764686093,
          -3.594834355583318,
          -1.627536536289134,
          -3.017986785306103,
          -2.833784374656479,
          -2.0078421153915804,
          -4.1999744625304904,
          -2.0306609636259325,
          -2.7000215653386404,
          -1.9974215371337367,
          -3.1436675973631676,
          -3.263340126851339,
          -3.0614734225676257,
          -4.164977077110886,
          -2.1224851942745757,
          -2.426390757900455,
          -3.158609180248377,
          -2.8863388474014275,
          -2.358742193235699,
          -7,
          -2.9562121023022296,
          -2.158963699887905,
          -2.7591558917762122,
          -3.9037138370248186,
          -2.1726159027748584,
          -3.106269372399645,
          -3.327790176166056,
          -2.6095655687376507,
          -1.2948061551940808,
          -1.7056024795477285,
          -1.6458759840538448,
          -2.5220963108104413,
          -7,
          -4.151093922785061,
          -2.5040652696400008,
          -2.5097294828785595,
          -3.025364391574663,
          -2.3578290118636067,
          -0.9931111367443974,
          -2.5537727296320045,
          -7,
          -1.7310881077814002,
          -1.9912260756924949,
          -3.175722610349459,
          -3.0858552339469405,
          -3.3448972999500617,
          -7,
          -3.4127724458089577,
          -2.670769013549252,
          -2.8203187697918297,
          -7,
          -3.412152427883938,
          -3.698709349442587,
          -1.6528950083522316,
          -3.69340447840352,
          -3.31650950689414,
          -4.152104800892868,
          -3.151216578856456,
          -3.553093786437186,
          -3.454448480701692,
          -3.042302838090508,
          -1.0695819409462475,
          -2.7714744128040993,
          -3.895367288773362,
          -7,
          -2.264548845239721,
          -3.458305392118017,
          -4.161757195261727,
          -7,
          -2.7162120888836645,
          -3.3051094301418535,
          -3.408041999536708,
          -2.529344787529569,
          -2.6755100930664812,
          -3.0295508737036134,
          -2.9911078842420706,
          -7,
          -3.1541702816056496,
          -3.4657990986731795,
          -7,
          -2.368403115193713,
          -3.868526886768204,
          -7,
          -2.4298547744230627,
          -2.766492517118781,
          -2.7326617601288525,
          -3.677728586801082,
          -7,
          -3.0264787870418024,
          -4.153204900084284,
          -2.50213950773425,
          -3.7089305358066165,
          -7,
          -7,
          -7,
          -4.542750756732575,
          -7,
          -4.24188253033637,
          -3.942888158023463,
          -3.7801612357769154,
          -2.9410263770393295,
          -7,
          -4.07141556509424,
          -2.543278923231109,
          -4.29700503526225,
          -7,
          -4.243955301978741,
          -3.119793994782099,
          -3.0325073142652674,
          -3.4390896638956034,
          -4.248144987287778,
          -7,
          -4.067281687644021,
          -4.543273178913283,
          -2.7946119582066142,
          -2.790988475088816,
          -7,
          -3.550417377372692,
          -2.5964964499907106,
          -4.074499499644511,
          -4.069396732234589,
          -7,
          -3.659405104516471,
          -3.7759864553175277,
          -4.246400090154285,
          -2.581998623763598,
          -3.9495363733761426,
          -4.544068044350276,
          -7,
          -7,
          -3.862679866500334,
          -4.244660516448021,
          -4.096875268059688,
          -7,
          -4.087840549742632,
          -7,
          -3.0091289241314882,
          -3.9428014663179405,
          -7,
          -3.387081201499178,
          -7,
          -2.9649887923442346,
          -7,
          -4.0743653395608534,
          -4.5756380764913755,
          -3.6503439557045767,
          -4.2576905717886175,
          -2.239857278674468,
          -3.208663307762238,
          -2.7754309567465465,
          -2.9361927798732688,
          -7,
          -4.24911271341542,
          -3.2691859328139516,
          -7,
          -3.9495241780324495,
          -4.551803633168402,
          -7,
          -4.072335693862353,
          -2.687586122524311,
          -2.3870476724736753,
          -7,
          -4.543608690196552,
          -3.266408107693024,
          -7,
          -3.29903853947173,
          -3.286703412934269,
          -7,
          -3.791538607647169,
          -2.869859699265831,
          -4.543894291804688,
          -3.6616115767205613,
          -7,
          -4.244957106607392,
          -2.7522146133891745,
          -3.4481709982818494,
          -7,
          -7,
          -3.366364580388476,
          -7,
          -3.212523418522336,
          -3.2565115772188546,
          -3.7143776660363743,
          -3.7797527706739227,
          -2.5530187035215763,
          -3.432259004032759,
          -3.1746992883707756,
          -7,
          -7,
          -4.09221753532326,
          -4.25806231201092,
          -3.612112476645736,
          -2.9485949073321223,
          -4.545183368215406,
          -3.3637730982326692,
          -4.0731560301682705,
          -7,
          -7,
          -3.1228907572854245,
          -7,
          -3.4868553552769432,
          -3.5138710931559025,
          -3.095877687895717,
          -2.2785354966808096,
          -4.071538361623433,
          -4.244907688977901,
          -3.951216054809137,
          -3.8559792519028737,
          -2.611270116902844,
          -7,
          -7,
          -4.26254600711293,
          -3.800980415439888,
          -3.4739134752498346,
          -4.250407802854353,
          -2.9069264651891564,
          -2.9637306042765084,
          -4.548598222418581,
          -3.097530741912097,
          -7,
          -2.95579570442515,
          -3.7081901540503384,
          -3.792706788898358,
          -4.284284064190723,
          -7,
          -4.549530474736012,
          -2.210364597401199,
          -3.293943784029869,
          -7,
          -7,
          -3.1701563643860604,
          -7,
          -7,
          -7,
          -4.243174519793413,
          -7,
          -2.808153075999404,
          -2.4732289564856345,
          -3.1429790911205524,
          -3.7489296824118883,
          -7,
          -3.3443302124067187,
          -7,
          -3.943383207499316,
          -3.650974968502697,
          -3.546950572002201,
          -3.215933512374288,
          -7,
          -4.068977016662719,
          -4.24889240846553,
          -2.423985572258576,
          -7,
          -4.542128005067315,
          -7,
          -3.777330140625354,
          -7,
          -3.555590156480247,
          -3.60342105844824,
          -2.7399146106536945,
          -2.9524143949959307,
          -3.0677665718200244,
          -1.8444814312609394,
          -2.913561002070361,
          -3.8490138010230566,
          -2.330235887509512,
          -3.5467400252092727,
          -7,
          -7,
          -3.4039412508343103,
          -3.701148412597393,
          -4.545603968481417,
          -7,
          -3.3760494820288316,
          -7,
          -3.1368424743801975,
          -7,
          -3.8205407905494937,
          -2.37289179868471,
          -7,
          -3.6389327540387777,
          -3.737896578909624,
          -4.55568681403678,
          -4.56589502203011,
          -4.55709797835226,
          -4.258828770593979,
          -3.951738109097343,
          -3.6538875580709775,
          -4.110746791003332,
          -4.547688576129021,
          -2.999955454691801,
          -7,
          -4.035199521115102,
          -3.6580949067971456,
          -3.1827461425895804,
          -4.243831461981921,
          -2.3588058219694283,
          -7,
          -3.2416872093953355,
          -4.247445412862625,
          -3.3263961084813074,
          -4.245216456947668,
          -3.8489646100863593,
          -3.522357278959648,
          -3.7861004389479858,
          -7,
          -3.3109056293761414,
          -2.489507574006869,
          -2.9551227939084574,
          -7,
          -4.241471767550763,
          -4.546332868319189,
          -7,
          -7,
          -4.246350836456256,
          -7,
          -7,
          -3.0053643927472597,
          -3.351966736536176,
          -3.1892276127480357,
          -2.9662942563851096,
          -7,
          -4.069631102620343,
          -4.247261126880467,
          -3.951398238052487,
          -4.542775648234625,
          -4.544229323779228,
          -4.262154339133367,
          -3.7796926698612303,
          -3.8585612575392805,
          -7,
          -3.9398436043565996,
          -4.243199328115247,
          -7,
          -7,
          -7,
          -3.604154024809671,
          -2.4904995403286,
          -7,
          -7,
          -7,
          -4.24436372360166,
          -3.9478011971439804,
          -4.248059135312142,
          -7,
          -3.9478746548976984,
          -3.4796970961954656,
          -4.082869110489787,
          -3.7041290590724634,
          -3.311192092821401,
          -4.558984415870133,
          -7,
          -7,
          -2.286513799829162,
          -3.5205788014860047,
          -2.655736154949934,
          -4.073094864515745,
          -2.973787374579753,
          -4.250432201420758,
          -4.244573972817435,
          -3.944025929336147,
          -2.7468213460131796,
          -3.202945801696211,
          -3.0049209520857496,
          -3.3673120617569547,
          -4.13931224557867,
          -3.95433900860246,
          -4.248622995006579,
          -4.544130081987965,
          -3.4753442550701354,
          -3.1733028418881863,
          -3.24699069924155,
          -7,
          -3.6427488455183137,
          -3.5547798038037937,
          -3.846535036016974,
          -3.6034932083789473,
          -7,
          -3.2208328926130463,
          -2.630661741157685,
          -3.231336067802886,
          -3.9680040266867103,
          -3.7785130117389247,
          -2.7501725423153607,
          -3.022964206517993,
          -4.067480023931482,
          -3.2113794640853506,
          -7,
          -7,
          -3.221005778388855,
          -3.7819587156422436,
          -3.0576460880332545,
          -3.319915339824355,
          -2.9256880250155644,
          -3.2815357045635154,
          -2.7305861876933264,
          -2.7374656084886224,
          -2.9443634251545596,
          -2.888252317609033,
          -7,
          -7,
          -7,
          -3.2049551958985103,
          -3.307180646118739,
          -7,
          -3.5488682907918565,
          -3.665017825412473,
          -7,
          -3.562471304977469,
          -4.2459812555626195,
          -3.3167426208727453,
          -3.9476174983825936,
          -4.075559126333692,
          -2.8449288014012546,
          -4.248696487980903,
          -3.021754067367309,
          -2.9624655257438413,
          -2.781089127667723,
          -4.549861188471943,
          -2.756110879457404,
          -2.853459860691864,
          -3.327197556612044,
          -7,
          -4.250651726858576,
          -4.243967684036416,
          -3.059092737484648,
          -3.226911231277746,
          -3.644329154042816,
          -3.562530768862261,
          -4.242218320247613,
          -7,
          -3.2658433400609064,
          -4.068717577790595,
          -3.7039420250692117,
          -3.6469915374771227,
          -2.7955997369329895,
          -3.768379075007812,
          -2.4821356148977904,
          -7,
          -4.542700969448111,
          -2.4689579482875295,
          -2.805440337421175,
          -3.520491720719448,
          -3.507563546199266,
          -2.5170435584633832,
          -2.697514929326022,
          -3.3922209233273932,
          -3.0724752248302725,
          -2.0482695669897875,
          -3.3198988389606625,
          -3.241308712641187,
          -3.3563446054510298,
          -2.1055305200027217,
          -2.4706685145458436,
          -2.361365722754338,
          -3.5700445384708317,
          -3.132846465926999,
          -2.4458894882440507,
          -2.4315865711875913,
          -3.067134195440871,
          -3.467562573700709,
          -2.9296423045259363,
          -2.918857291696986,
          -2.582784501558062,
          -2.461009143239449,
          -3.746556361410369,
          -1.5957417359449504,
          -2.542115014259059,
          -2.74287979246495,
          -2.6183549594754334,
          -2.881313314761065,
          -2.4348625067705156,
          -3.099986529255579,
          -3.179978077587035,
          -3.4463100912355067,
          -3.3451589343977806,
          -3.622597359604622,
          -3.4357820663112877,
          -3.1644228411978355,
          -2.835529158016355,
          -3.706266554579547,
          -2.752827162590486,
          -2.5188993059374263,
          -3.02153039646357,
          -3.414081572540633,
          -3.111988908987206,
          -3.564133223842105,
          -2.809587153336223,
          -2.575474042203768,
          -2.6750122057523718,
          -2.320259357867973,
          -2.61321980160087,
          -2.342342859505044,
          -4.556688368835233,
          -2.537988791073051,
          -3.334189114934161,
          -3.9420452766683427,
          -3.830716949436898,
          -2.5941218354020963,
          -3.6884976854468556,
          -2.6305381471430116,
          -2.352751603076248,
          -2.621868384681515,
          -2.972770585594578,
          -3.6424892515699323,
          -2.9212657547472802,
          -3.4003405940215106,
          -2.0282002587582526,
          -4.305630775996965,
          -3.3017140736148685,
          -2.7053655117911855,
          -2.0712580457768963,
          -7,
          -2.6481946989112175,
          -3.089063955206904,
          -2.1165112778013424,
          -3.885632569294887,
          -2.3737923474189735,
          -3.4642978858554994,
          -1.4384512519152548,
          -3.027690411734007,
          -4.5500448095649055,
          -2.367513609110171,
          -2.025458371872805,
          -4.279153424927057,
          -2.62763585627933,
          -4.246042874223341,
          -2.7559430819678017,
          -2.1093033285923224,
          -3.2708715098186003,
          -3.7663384752512874,
          -4.542912526000351,
          -7,
          -4.24283946867282,
          -2.915256893802922,
          -2.2539200856685158,
          -2.9955403342287124,
          -2.2634417415239945,
          -3.69978818845623,
          -2.9257437004504925,
          -1.317611285700861,
          -3.2235431366244605,
          -3.1806872647181375,
          -3.64205624987141,
          -2.1184190556782965,
          -3.2879012132617578,
          -1.6689104123448641,
          -2.2424456838620324,
          -3.15031424729026,
          -3.960886796912443,
          -2.56989488208644,
          -2.3827732455867023,
          -1.6332240350786766,
          -3.2727085961319107,
          -3.849124460263414,
          -2.8810830558880607,
          -4.247531386233569,
          -3.057948165085225,
          -3.4448012079904675,
          -2.8858110689434704,
          -4.541953474458237,
          -1.4335810512738152,
          -4.2424668862353405,
          -4.067480023931482,
          -2.6654098753610374,
          -1.9949881177338864,
          -2.27688356060408,
          -3.0100254420896038,
          -3.1225552211338643,
          -2.3290722907547305,
          -3.3752367289481646,
          -3.0397988994599308,
          -7,
          -3.1089755442778646,
          -2.2446977694747496,
          -4.543049360639533,
          -3.3683736731283878,
          -2.997138334234319,
          -3.2548500689728237,
          -3.087670523729859,
          -3.0420707406931555,
          -3.052212835769748,
          -3.322243624275502,
          -3.293387111239789,
          -3.053918355714631,
          -2.729026432136778,
          -2.4688190763202438,
          -7,
          -2.7575455534913176,
          -2.9124762123293606,
          -3.1137762838370313,
          -2.4097613921943695,
          -4.246916917014926,
          -3.766536771919034,
          -2.5556730808874315,
          -3.164329058174529,
          -1.8450285000466284,
          -2.712743208890336,
          -2.874959064430903,
          -3.7784045149697625,
          -3.4693310102934105,
          -2.935496769408188,
          -3.2688119037397803,
          -2.2095477063625797,
          -3.3703280077795106,
          -2.8807302492686424,
          -2.5952285980591694,
          -2.963157958515926,
          -7,
          -2.5419233758836866,
          -2.221174975962108,
          -2.5503189632122982,
          -3.610506382373693,
          -1.9230356919061111,
          -3.0029711861626316,
          -2.9463430772106367,
          -3.1222280177113233,
          -1.9204875806010393,
          -2.891080064811009,
          -2.396443216311737,
          -3.251893612682507,
          -4.543298040491669,
          -4.542314924348526,
          -2.3689637403858352,
          -3.571394349314386,
          -3.4045893877910447,
          -2.7567414073569965,
          -1.69371900482725,
          -3.219751182542442,
          -1.7310881077814002,
          -7,
          -2.639665524407431,
          -2.6823209302068585,
          -4.247248838367474,
          -3.2359851056925977,
          -7,
          -2.657730572540051,
          -2.3274824394944114,
          -3.8157437313119185,
          -4.542663625238801,
          -3.1602764026089654,
          -3.707338977449808,
          -1.5880155126080546,
          -3.319522449065454,
          -3.8476960207341655,
          -3.764450127369505,
          -3.588147160101612,
          -4.242988412194795,
          -3.7650846334933146,
          -3.4652588912700675,
          -2.823549053162249,
          -3.478181568042029,
          -3.7160749247379314,
          -3.7022335328214155,
          -2.3490237296492333,
          -2.4591681041417863,
          -2.479374231246622,
          -2.6134853541155074,
          -2.5039268041935103,
          -1.7443845311071429,
          -1.8567264148606428,
          -0.25487660158808295,
          -1.9857695200222167,
          -3.209526184524548,
          -2.1668453699832115,
          -3.5424394925233997,
          -1.9354861259295948,
          -1.8225177834877329,
          -3.7637274037656985,
          -2.2418140039845724,
          -2.234859558209032,
          -1.5897489827548932,
          -2.977500833043951,
          -2.4610279826243358,
          -2.5547326248656144,
          -2.437650707791632,
          -1.309076483900133,
          -2.8176027845485527,
          -2.483592912107618,
          -1.9007254013943047,
          -2.948376283952328,
          -3.587449037524363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.874895786353347,
          -7,
          -7,
          -3.6707016495286346,
          -7,
          -7,
          -7,
          -3.989627770745151,
          -3.1894039256177455,
          -2.1134290899827994,
          -3.2039389889121495,
          -3.6276730317666157,
          -7,
          -7,
          -2.902886363725619,
          -7,
          -7,
          -3.0242290379677126,
          -3.0415392723231385,
          -7,
          -7,
          -3.629613445378183,
          -3.169600968020925,
          -2.6743600316646345,
          -7,
          -3.319415576268741,
          -3.3981136917305026,
          -3.642068627341504,
          -2.797168578888417,
          -7,
          -3.1639064334577514,
          -3.655042341331202,
          -7,
          -7,
          -3.7863964613723042,
          -7,
          -3.5967253493187594,
          -7,
          -3.372819981678968,
          -3.777281791671015,
          -3.408155133886264,
          -2.9595183769729982,
          -7,
          -3.3971575742021414,
          -7,
          -7,
          -3.2699019227319654,
          -3.2560008516550725,
          -7,
          -3.031959017228676,
          -4.0024252646779015,
          -7,
          -7,
          -3.341895943969397,
          -7,
          -7,
          -3.700270937356437,
          -7,
          -7,
          -3.1774210574831687,
          -3.359550916763318,
          -7,
          -7,
          -3.3259943001703647,
          -7,
          -7,
          -2.003831230105671,
          -7,
          -7,
          -3.4746849021732746,
          -7,
          -7,
          -7,
          -7,
          -3.2767680767401712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.865340905624584,
          -3.752969865029084,
          -7,
          -3.3476176979760814,
          -3.5615783683009608,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3181329278612206,
          -3.407447560198671,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1300119496719043,
          -3.5395308656643945,
          -7,
          -7,
          -7,
          -3.1202447955463652,
          -1.7813244556669878,
          -3.3951515915045425,
          -7,
          -2.931893544842148,
          -3.2632216936676484,
          -3.432381286685753,
          -7,
          -4.272746411201189,
          -2.878607956493832,
          -3.6769678142947586,
          -4.031771907514002,
          -2.9813655090785445,
          -2.746523605930747,
          -7,
          -3.042247272320338,
          -7,
          -7,
          -7,
          -2.8307719153047,
          -3.054166019538618,
          -7,
          -7,
          -3.655746533599422,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3837555416836356,
          -7,
          -3.47928731647617,
          -7,
          -7,
          -3.579859781948451,
          -7,
          -7,
          -7,
          -3.483016420144132,
          -3.7216045442801375,
          -7,
          -7,
          -2.2846562827885157,
          -4.110028243534681,
          -7,
          -7,
          -7,
          -7,
          -3.342620042553348,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055913223916149,
          -7,
          -7,
          -3.3644011919351606,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3873898263387296,
          -7,
          -3.359626819150352,
          -7,
          -7,
          -3.2811621964134967,
          -7,
          -3.4567707810445487,
          -3.885361220031512,
          -7,
          -3.189209489582306,
          -3.736555847162636,
          -7,
          -7,
          -3.7368743616484226,
          -3.908699432352224,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6142309497578875,
          -7,
          -2.8329192912697265,
          -7,
          -3.037824750588342,
          -7,
          -3.3715296320992945,
          -1.6582293734253237,
          -1.6974081935732832,
          -7,
          -7,
          -2.5075761646833645,
          -2.924915149252929,
          -7,
          -7,
          -3.1823195271506552,
          -7,
          -3.64777405026883,
          -3.1905184513367484,
          -7,
          -3.375114684692225,
          -3.078166708168154,
          -3.2812038682570117,
          -3.1980069079575624,
          -4.072658392225891,
          -7,
          -7,
          -3.3736474722092176,
          -3.712397131406715,
          -3.6316466629584196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.535408776423756,
          -3.0252034252402584,
          -3.0293837776852097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6873505695580273,
          -3.4592919449918176,
          -7,
          -7,
          -4.015820634262069,
          -7,
          -7,
          -7,
          -3.212471712342394,
          -3.468125695050418,
          -2.846543280888438,
          -7,
          -3.4408933464728357,
          -7,
          -7,
          -7,
          -1.2734329281934174,
          -7,
          -2.486599130358205,
          -2.723407376846712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8256857080217586,
          -3.813714391881145,
          -7,
          -7,
          -7,
          -7,
          -3.7420177471401384,
          -7,
          -3.7788022040132385,
          -3.612889769287485,
          -3.0162810245428306,
          -7,
          -3.7344797894255772,
          -3.6252937390341455,
          -3.2202575612757083,
          -7,
          -3.1333134374911014,
          -3.6398847419163043,
          -7,
          -1.9965001510314468,
          -3.1543478812209957,
          -3.3305490465108214,
          -3.368968325638322,
          -3.519696767159853,
          -3.7599698575543075,
          -7,
          -2.744150684798368,
          -3.8962608225275375,
          -7,
          -7,
          -7,
          -7,
          -3.3758921298735,
          -3.4237918130180067,
          -3.6646419755561257,
          -7,
          -3.203168922875464,
          -7,
          -3.4710715736130306,
          -7,
          -7,
          -7,
          -3.104230965930801,
          -7,
          -3.384263785722803,
          -3.925185991397114,
          -3.605166468545595,
          -4.114020527757729,
          -7,
          -4.000781027353495,
          -2.544673895853184,
          -2.2373282608465153,
          -7,
          -3.699577591398909,
          -3.6496268868405295,
          -3.3835760193323763,
          -2.319526876598288,
          -2.423534985995795,
          -7,
          -3.6356847625472226,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3759195437046494,
          -7,
          -7,
          -2.7889053791447824,
          -3.798919838387624,
          -7,
          -3.4269447971948406,
          -3.9653898702151222,
          -2.4958472539940426,
          -3.054766217838991,
          -3.5895231155601817,
          -2.9561738896938907,
          -3.2200099682636307,
          -2.848189116991399,
          -3.7771729868397044,
          -3.9041821041340743,
          -3.900026619266373,
          -2.287780807637947,
          -4.400537989391946,
          -3.665785597585392,
          -2.692189463201086,
          -2.8609665297584645,
          -3.909038704007994,
          -7,
          -4.3532533339846005,
          -2.9060077736235383,
          -3.1150133695865434,
          -3.3730697084061685,
          -4.401297125021583,
          -4.090989492731618,
          -4.282055370683707,
          -3.1776086358791855,
          -2.9807950320434013,
          -2.9168366290301573,
          -4.1085565677610685,
          -3.4922189290866443,
          -3.509314554959585,
          -3.156321950446713,
          -4.201888500365973,
          -3.7535447596308416,
          -3.4657207449392846,
          -3.2013515984037575,
          -3.874249822778403,
          -3.3969835082752007,
          -4.403189178907667,
          -3.6649130538258987,
          -4.060584531360865,
          -7,
          -3.7008940037108062,
          -7,
          -3.621542245011795,
          -4.134782529381855,
          -3.8402315949581087,
          -3.383124584091668,
          -3.4887417131238716,
          -3.3911956392577416,
          -7,
          -4.4937925310696665,
          -7,
          -7,
          -7,
          -7,
          -3.926702494182645,
          -3.6989700043360187,
          -3.9666834625327567,
          -3.6122762328527447,
          -4.755414072917662,
          -7,
          -3.336409697039683,
          -7,
          -3.274042330049831,
          -3.9918460536448968,
          -5.110798390836454,
          -3.594806755921277,
          -3.705564390520156,
          -3.634678752178682,
          -3.9171027120527055,
          -4.012288739834607,
          -3.964030532827803,
          -7,
          -3.605778955151077,
          -4.008174184006426,
          -3.2649908769069174,
          -3.3916407034923877,
          -3.210140091523844,
          -3.6000917717260705,
          -3.1671372646333364,
          -7,
          -4.208738795422854,
          -3.665674780993893,
          -3.4099331233312946,
          -3.416219418368308,
          -4.070942474030112,
          -7,
          -7,
          -7,
          -2.4919616863062677,
          -3.1742052269401473,
          -2.204688959253367,
          -3.4827307000799426,
          -2.816812514702439,
          -2.870598962314376,
          -2.498922883086532,
          -2.124244675406698,
          -2.3138672203691537,
          -3.7645497190644672,
          -7,
          -2.3893526369799023,
          -2.6364878963533656,
          -2.151177176389977,
          -3.119915410257991,
          -2.4719331419959465,
          -2.4929073583960584,
          -2.715015187390733,
          -2.0643831044121965,
          -2.4171082451130608,
          -3.0013009330204183,
          -2.9742352774430265,
          -2.608748828678732,
          -2.498218629885796,
          -2.0072391725850767,
          -1.5745203381419075,
          -2.811879538862458,
          -3.3236645356081,
          -2.4049580494240805,
          -2.9379189026477803,
          -3.6466977312993345,
          -1.746031891867261,
          -2.832209858620681,
          -2.2578200904549908,
          -3.62797998982998,
          -1.5777702383669767,
          -3.249722340340543,
          -2.3337538404726046,
          -3.048247531803974,
          -7,
          -3.433289685195026,
          -2.742241574420333,
          -2.63205216670581,
          -2.4143834074473625,
          -1.2986532346892896,
          -3.7315081835960253,
          -2.0764199154189162,
          -2.670709595223797,
          -1.8745784456856038,
          -7,
          -2.1836830421216202,
          -2.9081785301701615,
          -3.0878459249737014,
          -2.3309546133716443,
          -2.5192220013770665,
          -3.2597730063299823,
          -3.548880562637515,
          -2.919376987420152,
          -2.2543852841984124,
          -2.972573080926555,
          -2.2114962884255043,
          -2.029990281380748,
          -3.4720246977002813,
          -2.3902430658089173,
          -3.3479151865016914,
          -1.710146556473407,
          -3.1312175426046194,
          -2.832143805932397,
          -2.7554335198406235,
          -3.6725596277632757,
          -2.1902865038852304,
          -2.3167326001184234,
          -3.2973227142053023,
          -3.1026480556594813,
          -1.8243033747578454,
          -7,
          -3.0969968632197054,
          -2.7417610824258207,
          -2.668056864156085,
          -2.8305886686851442,
          -2.7557115563729915,
          -2.569373909615046,
          -1.7815613199209546,
          -1.4631105402768478,
          -2.4044435823115102,
          -1.913548957906518,
          -1.8307405759693782,
          -2.275609912017191,
          -7,
          -3.6278776945799716,
          -2.5791463818227767,
          -2.373896723704669,
          -3.3935752032695876,
          -2.3872579622169017,
          -2.4079610051383122,
          -2.5393713363853183,
          -1.9912260756924949,
          -2.639665524407431,
          -7,
          -3.5177235948337353,
          -2.6731131042382335,
          -3.144418518602069,
          -7,
          -3.612889769287485,
          -3.2266514504548103,
          -2.160351513808608,
          -7,
          -3.446459496594692,
          -3.1032048709894418,
          -1.7889612255173273,
          -3.689930104018218,
          -2.7587226985453177,
          -7,
          -3.0274515428724906,
          -3.6418705454763125,
          -3.1588648570811704,
          -2.7427251313046983,
          -2.348996759212671,
          -2.2583179485318188,
          -2.0846903408324007,
          -7,
          -2.037055702202493,
          -7,
          -7,
          -7,
          -2.97285055584723,
          -3.7958105246674085,
          -7,
          -2.7569769267273,
          -3.135995383131673,
          -2.714067678703001,
          -3.3807537708039,
          -7,
          -2.954604270794606,
          -3.195161370069258,
          -7,
          -2.78306531546524,
          -7,
          -3.683587317572767,
          -3.252428233716468,
          -2.9665439814388943,
          -7,
          -7,
          -7,
          -2.7013520792687795,
          -7,
          -3.015778756389041,
          -3.7352794480604565,
          -3.697316541732383,
          -7,
          -7,
          -7,
          -7,
          -3.3984608496082234,
          -7,
          -2.7299742856995555,
          -3.0624566286256467,
          -7,
          -3.1699681739968923,
          -3.3232815728385168,
          -7,
          -7,
          -7,
          -3.017671538505329,
          -2.8307787007318903,
          -3.2234959409623944,
          -3.478566495593843,
          -7,
          -7,
          -3.403120521175818,
          -2.9294919102505377,
          -3.9890936926103255,
          -7,
          -3.1253511205147526,
          -3.1172562261895367,
          -7,
          -3.446537167073644,
          -7,
          -3.314183339137377,
          -3.534660575828444,
          -7,
          -3.4796156140571486,
          -3.0291131048924633,
          -7,
          -7,
          -7,
          -2.907411360774586,
          -2.832668550451795,
          -3.007491733295336,
          -7,
          -3.635785235533652,
          -3.452553063228925,
          -3.603459883471974,
          -3.4255342204982635,
          -3.4667193716815987,
          -2.776493635844961,
          -3.2210228052048415,
          -1.959594369612932,
          -3.447623097760286,
          -3.5052856741441323,
          -7,
          -2.4837817426770465,
          -7,
          -2.6670224853340585,
          -2.90444504107691,
          -2.0409537821578545,
          -3.1385132141577534,
          -7,
          -2.886913533398546,
          -3.0790002523038495,
          -7,
          -7,
          -7,
          -7,
          -2.63534010716356,
          -2.2489689159055066,
          -3.2252949198983876,
          -3.4216039268698313,
          -3.4077307280263356,
          -2.223293990490537,
          -7,
          -2.9681909858660296,
          -2.846337112129805,
          -7,
          -2.6317204190800085,
          -3.407413353850794,
          -7,
          -7,
          -7,
          -7,
          -1.6727134419961225,
          -2.569586694764772,
          -3.1470576710283598,
          -7,
          -2.53447939331355,
          -3.182557301304913,
          -2.756805094427709,
          -3.266231696689893,
          -2.887842265107357,
          -7,
          -2.7901509501858306,
          -3.137670537236755,
          -2.4036456868836145,
          -7,
          -7,
          -3.6716355966021297,
          -3.281714970027296,
          -2.49998148630061,
          -2.8138033046630917,
          -7,
          -2.9771854460106875,
          -7,
          -7,
          -7,
          -2.57951684265999,
          -7,
          -2.603242818609928,
          -2.847572659142112,
          -2.0604180114251784,
          -2.3727600307164853,
          -3.4727564493172123,
          -3.438858659420562,
          -3.525044807036845,
          -7,
          -3.1641875676827644,
          -7,
          -7,
          -2.8444771757456815,
          -3.044461360810665,
          -2.8974208899024245,
          -3.203168922875464,
          -3.2744401002736403,
          -3.3892547068486483,
          -7,
          -3.952647169758943,
          -7,
          -4.099706532297829,
          -3.5259513412480126,
          -2.904985881099363,
          -2.938162192858692,
          -7,
          -3.4824447919182653,
          -1.6490830949843571,
          -2.657142807403776,
          -7,
          -3.398287305357401,
          -3.6261007377332617,
          -7,
          -3.3827372657613304,
          -3.395675785269936,
          -3.114777731971562,
          -7,
          -2.7814476190128725,
          -2.5050319474775153,
          -2.868858087141923,
          -2.991289379312154,
          -7,
          -3.0279382361570777,
          -7,
          -7,
          -3.0567778460769324,
          -7,
          -3.0960654201442166,
          -7,
          -7,
          -3.4872798164430687,
          -3.168072999308404,
          -2.7953585510233854,
          -3.387033701282363,
          -7,
          -3.5485122563410356,
          -3.4169731726030363,
          -2.9478011971439804,
          -7,
          -3.6568644915489172,
          -3.04267393611923,
          -3.1122697684172707,
          -2.581335138918986,
          -2.87285524470481,
          -2.765072201102792,
          -3.472916355763714,
          -2.9737434376601035,
          -7,
          -7,
          -7,
          -3.4443571256560275,
          -3.4342494523964753,
          -7,
          -2.9754735856707497,
          -3.443888546777372,
          -3.282786844559675,
          -7,
          -3.2606079589006254,
          -2.8070379004300423,
          -7,
          -3.3551321154773457,
          -2.6219177784241787,
          -3.24809593109413,
          -3.6432552250247716,
          -3.262213705476417,
          -3.5901728315963144,
          -3.229297794114105,
          -2.5618166643189575,
          -3.10064620014548,
          -7,
          -3.52270499273475,
          -7,
          -3.5632041244800616,
          -2.824451270036613,
          -3.4260953830271657,
          -7,
          -2.694605198933569,
          -7,
          -3.287633800116223,
          -3.4702634469650784,
          -2.5626496722119168,
          -3.442793225939769,
          -3.464638559095033,
          -2.836439206334669,
          -3.329092647195331,
          -7,
          -2.085766126574217,
          -7,
          -2.730307169523499,
          -7,
          -7,
          -3.4435758797502576,
          -7,
          -7,
          -3.456973013635818,
          -7,
          -7,
          -3.531223374533027,
          -2.6519486241231784,
          -3.150672725821067,
          -3.7800433735207384,
          -7,
          -3.1481397365012196,
          -2.8651039746411278,
          -7,
          -7,
          -7,
          -3.6202401898458314,
          -2.9691828592322613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.111598524880394,
          -2.798650645445269,
          -3.219666980592045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4879863311293935,
          -3.358315640082196,
          -3.114054695592129,
          -3.1290450598879582,
          -3.0877307268865897,
          -7,
          -7,
          -7,
          -1.5558988438166708,
          -3.611404637711593,
          -2.5979843300652896,
          -3.490941205356787,
          -4.028863936842829,
          -3.504742636271688,
          -3.4345689040341987,
          -7,
          -3.3744917249438164,
          -2.921859811938469,
          -2.2167368891063215,
          -2.7115662221083117,
          -3.6504046698680317,
          -2.251638220448212,
          -3.0064660422492318,
          -3.4148062795010126,
          -2.8402315949581087,
          -2.786041210242554,
          -2.415529779157638,
          -7,
          -3.1381447441794874,
          -2.695731774096823,
          -7,
          -3.2703293970898586,
          -7,
          -2.7786679601196744,
          -2.9795897577601944,
          -7,
          -3.6775157047987577,
          -3.5603849229720157,
          -3.4946604700009796,
          -2.6109261934087056,
          -7,
          -3.4259823037627872,
          -3.1089031276673134,
          -3.195484523033764,
          -2.866508861395503,
          -2.8935398435646613,
          -3.3445494559097377,
          -2.7168377232995247,
          -2.95547394379502,
          -2.818665685531947,
          -2.9514184759183264,
          -2.555195248040743,
          -3.98453117086462,
          -2.3589093822301255,
          -7,
          -7,
          -3.3827372657613304,
          -3.887561040930009,
          -2.612359947967774,
          -7,
          -2.8743368353973677,
          -2.816525369214973,
          -7,
          -2.7110687225172314,
          -3.4523998459114416,
          -2.522257881011762,
          -7,
          -2.9155317393839453,
          -2.510192126070919,
          -3.4850112145785728,
          -4.267030853292765,
          -2.958629777768527,
          -3.8310311349676667,
          -7,
          -2.834844405648704,
          -3.7716119750851425,
          -2.7872969497664726,
          -7,
          -2.550771730644782,
          -7,
          -2.958882280950234,
          -2.9538670309532273,
          -3.26030994579492,
          -3.0134692323091703,
          -7,
          -7,
          -2.7506048083231383,
          -3.4379090355394983,
          -7,
          -2.711244671343486,
          -3.109443547064349,
          -7,
          -2.350041162182644,
          -7,
          -3.09377178149873,
          -4.616989850789326,
          -4.786502980070113,
          -7,
          -3.7944880466591697,
          -4.252189355651495,
          -3.6304278750250236,
          -7,
          -3.498331764235352,
          -3.529759443527333,
          -3.4583734153747776,
          -7,
          -7,
          -3.832085588672225,
          -4.006393297179845,
          -3.7584360480054384,
          -7,
          -4.089693208784839,
          -3.9786014653596657,
          -3.804990823476288,
          -7,
          -7,
          -4.613364293402583,
          -7,
          -3.778717876156957,
          -3.4694685478507536,
          -7,
          -4.0749169601414925,
          -3.938294514123816,
          -7,
          -3.4267163023532548,
          -4.215267343431722,
          -4.0931326430729955,
          -4.06199877337403,
          -7,
          -7,
          -7,
          -7,
          -4.181429096133507,
          -7,
          -2.9526310252827455,
          -3.505014240084107,
          -3.5744230695504813,
          -2.932661224370865,
          -3.9869955397243815,
          -2.969815141260817,
          -3.4645081766878896,
          -3.0274515428724906,
          -3.2763019240069164,
          -2.5397032389478253,
          -2.53164919521809,
          -3.6266336114657944,
          -3.215762754420895,
          -3.1067137971904137,
          -3.2581581933407944,
          -2.7105478667613006,
          -2.8564771400530096,
          -7,
          -3.2163242786866677,
          -3.630275285757692,
          -3.345765693114488,
          -7,
          -2.9952658503599583,
          -3.0397543442571333,
          -4.407086536735488,
          -7,
          -2.992553517832136,
          -3.449324093098727,
          -3.107110998040215,
          -7,
          -4.4087757169717054,
          -3.3660803677069033,
          -3.665440268065303,
          -7,
          -3.0822750248608437,
          -3.258921492187305,
          -3.2524230295413887,
          -3.001156577199942,
          -2.8319408361283087,
          -3.3218054838575393,
          -3.095577023862968,
          -2.934179390755185,
          -3.1870975005834774,
          -2.694027985973858,
          -3.302373284873846,
          -3.7505855273410087,
          -3.587817368255725,
          -7,
          -2.8683504996479683,
          -3.0969202315815303,
          -4.036569016076007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2473733831061242,
          -1.38594604140928,
          -1.515618012680628,
          -7,
          -3.2920344359947364,
          -2.496929648073215,
          -7,
          -2.05307844348342,
          -2.249931756634195,
          -1.9210138986341143,
          -7,
          -2.2249155731390533,
          -1.2465238312090121,
          -2.2658492268440344,
          -7,
          -3.7100891449303903,
          -2.7087394925064303,
          -2.24863590683504,
          -7,
          -3.4665710723863543,
          -2.558544943096918,
          -7,
          -2.3710678622717363,
          -2.4028915836471096,
          -1.4843429861832331,
          -7,
          -2.337459261290656,
          -7,
          -7,
          -3.772803522998071,
          -2.6748128133041775,
          -3.2332225681395017,
          -7,
          -3.377943380255784,
          -1.3026454760706987,
          -7,
          -1.2880936272069723,
          -7,
          -1.2708904806332533,
          -1.5786092358059542,
          -7,
          -7,
          -3.344490519241893,
          -1.3146091060655962,
          -3.230959555748569,
          -3.162713725583078,
          -3.27207378750001,
          -1.2625668398595538,
          -7,
          -1.1380148847219913,
          -2.0183978544157357,
          -3.4688394488579064,
          -7,
          -0.9031888588152286,
          -1.1500821857422776,
          -7,
          -2.9022205282793148,
          -7,
          -7,
          -3.6938587997009296,
          -1.8988111890126687,
          -1.9734638067201293,
          -1.4121167635748022,
          -2.9274436926266865,
          -3.2580383383705556,
          -7,
          -3.957271979992943,
          -2.7641761323903307,
          -2.555039457190857,
          -3.4490153163477864,
          -1.294075663213465,
          -1.4447695028784557,
          -3.2425414282983844,
          -3.390405156480081,
          -1.1883086759638373,
          -2.0086496781149954,
          -2.1106613346882797,
          -2.788875115775417,
          -1.9683432302185928,
          -2.410022054320016,
          -2.547716115912941,
          -2.5780021341872574,
          -1.841583157038063,
          -7,
          -2.69810054562339,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.5465426634781312,
          -7,
          -2.5653852463756084,
          -3.0128372247051725,
          -3.175722610349459,
          -2.6823209302068585,
          -3.5177235948337353,
          -7,
          -7,
          -1.3135157072120407,
          -7,
          -1.2593504175237453,
          -1.555888689890907,
          -7,
          -3.394626764272209,
          -1.745240448962118,
          -2.367222763127719,
          -1.9601667654364898,
          -2.124135493579742,
          -7,
          -7,
          -2.915751490682417,
          -7,
          -7,
          -7,
          -3.319158129866988,
          -7,
          -2.6014080605346837,
          -2.6782147827453997,
          -3.4734869700645685,
          -2.9477603819114044,
          -2.445136968713304,
          -2.885785128783473,
          -3.1630122097748297,
          -1.977425360239766,
          -2.4460828966060557,
          -2.3546402645539692,
          -2.936625429372116,
          -7,
          -2.699837725867246,
          -3.394626764272209,
          -3.035029282202368,
          -2.507855871695831,
          -7,
          -2.6093601127809265,
          -2.7870351820262234,
          -2.332149796241367,
          -2.4256157245769305,
          -7,
          -2.425457496801941,
          -3.110252917353403,
          -2.9431646302222556,
          -2.7251967440975706,
          -2.7013952690139202,
          -2.58152802295868,
          -2.2785129279170753,
          -7,
          -3.3836358683618797,
          -7,
          -2.7972675408307164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.426990834952875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.865163219506086,
          -7,
          -7,
          -7,
          -4.617862013700557,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7039196051869374,
          -7,
          -7,
          -7,
          -7,
          -3.3398487830376373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.840911803851301,
          -7,
          -7,
          -7,
          -7,
          -3.6591552809406296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.388154507768882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.178574103379925,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.002554808148482,
          -7,
          -7,
          -7,
          -4.371344983082098,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.036429265626675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.607519358372464,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.284520967479148,
          -7,
          -3.735119634081872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.08109515656134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7564078725489582,
          -3.381656482585787,
          -7,
          -7,
          -4.05869168281923,
          -3.5625902246063346,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.713122454881604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.226956631551876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.536293239983433,
          -7,
          -4.411459761879543,
          -7,
          -7,
          -7,
          -3.9995654882259823,
          -7,
          -7,
          -3.4288634082992564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.831431420994256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.496652939250918,
          -7,
          -7,
          -7,
          -5.129544888382884,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.176431033922291,
          -7,
          -7,
          -5.019361421009378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.517591730711908,
          -4.47203934482198,
          -7,
          -7,
          -7,
          -3.6768947099757874,
          -3.5858553633220276,
          -4.5923433345820435,
          -4.036069700697702,
          -3.9839869219651898,
          -3.13756508756235,
          -4.307474643569412,
          -7,
          -4.998433718864469,
          -2.7302020406314362,
          -7,
          -7,
          -3.1904458346476585,
          -7,
          -7,
          -7,
          -5.388239784079347,
          -4.277655047714709,
          -3.9318391094686325,
          -4.110084422886923,
          -7,
          -7,
          -4.1901074883140454,
          -7,
          -3.5198863039908845,
          -7,
          -7,
          -4.326540668516562,
          -7,
          -7,
          -7,
          -7,
          -3.7559358050069402,
          -4.188844146546897,
          -7,
          -7,
          -7,
          -4.7656313066366955,
          -7,
          -7,
          -7,
          -7,
          -4.93483918821054,
          -7,
          -7,
          -4.142686612105551,
          -4.486312383821238,
          -3.5355834327235693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.090166315732656,
          -7,
          -7,
          -7,
          -7,
          -4.479124035234161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1336985461157765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.944359275507229,
          -4.354626976852949,
          -7,
          -7,
          -2.9903388547876015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.251029538523903,
          -7,
          -3.7721749608246142,
          -7,
          -7,
          -2.429752280002408,
          -7,
          -7,
          -2.9346667498242063,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -3.475802584198905,
          -7,
          -7,
          -1.0760995692822106,
          -4.131361989115943,
          -2.3475251599986895,
          -3.377306251068199,
          -3.1367205671564067,
          -3.0281644194244697,
          -7,
          -1.9530344572503566,
          -2.1256619582273957,
          -7,
          -7,
          -7,
          -4.018242667457909,
          -2.2323607123535703,
          -7,
          -3.421702618946589,
          -3.890850489627583,
          -3.885785128783473,
          -7,
          -1.352587832636258,
          -7,
          -2.1248301494138593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.503109436671369,
          -7,
          -2.790549039169605,
          -2.7193312869837265,
          -2.2706788361447066,
          -7,
          -1.6776862831585442,
          -7,
          -3.992686039162128,
          -2.855326386800406,
          -2.3450468246483553,
          -7,
          -7,
          -7,
          -3.5483587031513357,
          -2.1706807163747843,
          -7,
          -3.4270531135645013,
          -7,
          -3.657256886657311,
          -7,
          -3.0073209529227447,
          -7,
          -7,
          -3.8574531170352664,
          -7,
          -2.526051950563682,
          -2.499228724283611,
          -7,
          -7,
          -2.912487761332324,
          -7,
          -7,
          -4.632072431957763,
          -7,
          -3.3902283624691303,
          -3.8315711874815945,
          -3.485579476984679,
          -7,
          -7,
          -3.561101383649056,
          -2.442387532793123,
          -2.514813294999285,
          -2.6954816764901977,
          -7,
          -7,
          -4.061527870890508,
          -2.52403532248028,
          -7,
          -7,
          -4.054166019538618,
          -3.3550682063488506,
          -3.0858552339469405,
          -4.247248838367474,
          -2.6731131042382335,
          -7,
          -7,
          -7,
          -2.4720246977002813,
          -7,
          -7,
          -3.698796251790431,
          -7,
          -7,
          -7,
          -3.118369165644749,
          -3.0948203803548,
          -0.6388219222193926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.510813010512496,
          -2.1132268916297963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8120104224238394,
          -3.170774935911056,
          -3.367169488534681,
          -7,
          -7,
          -3.552303109338354,
          -7,
          -7,
          -4.199412322193509,
          -7,
          -7,
          -3.544811911757776,
          -2.7531232446817127,
          -7,
          -7,
          -7,
          -3.3805730030668872,
          -7,
          -3.190611797813605,
          -7,
          -7,
          -7,
          -3.24699069924155,
          -3.170848203643309,
          -2.563777633362166,
          -7,
          -7,
          -2.113147211878742,
          -2.913460623830773,
          -7,
          -3.2909245593827543,
          -3.7021611731162283,
          -7,
          -7,
          -7,
          -3.181635741814027,
          -3.393474921682372,
          -7,
          -3.301897717195208,
          -7,
          -7,
          -7,
          -3.2793246654426103,
          -3.4644895474339714,
          -7,
          -3.2765383925663363,
          -3.108549913289516,
          -7,
          -3.2528530309798933,
          -3.165541076722373,
          -2.4915017662373264,
          -2.174096167093953,
          -2.7919244549379605,
          -3.5100201829742788,
          -2.5634810853944106,
          -7,
          -7,
          -7,
          -3.1818435879447726,
          -2.934245881023071,
          -3.008919388595035,
          -7,
          -7,
          -7,
          -3.6972916295266804,
          -7,
          -7,
          -3.2024883170600935,
          -2.4603339459252327,
          -2.2375599525385867,
          -7,
          -3.34143452457814,
          -7,
          -2.4681626421329956,
          -7,
          -2.8157795753077126,
          -7,
          -2.244834763479088,
          -3.383456296524753,
          -7,
          -3.318689269947746,
          -2.8796692056320534,
          -7,
          -3.3434085938038574,
          -7,
          -7,
          -3.0058237530290275,
          -2.2727695865517594,
          -3.4246886399517753,
          -7,
          -7,
          -2.1304574814945334,
          -7,
          -3.3316971703724616,
          -2.822331563082315,
          -7,
          -7,
          -3.786228560690241,
          -7,
          -3.217878578027433,
          -7,
          -3.241795431295199,
          -2.015794267183232,
          -3.490941205356787,
          -2.5548524343720542,
          -7,
          -3.103689717941284,
          -2.8318697742805017,
          -2.8389539801187342,
          -3.3554515201265174,
          -2.854002233126989,
          -7,
          -3.2154926659956033,
          -3.6524397475894204,
          -2.8042151791711407,
          -7,
          -7,
          -3.5669086552268032,
          -3.450557009418329,
          -3.2361592305796636,
          -2.783367523477168,
          -7,
          -3.2770932548562834,
          -7,
          -7,
          -7,
          -2.7871269470128004,
          -7,
          -3.057158750485419,
          -7,
          -2.420615770625765,
          -2.827177095755159,
          -3.2931414834509307,
          -3.240798771117331,
          -3.369957607346053,
          -7,
          -2.89687054041404,
          -7,
          -7,
          -3.203576774977973,
          -3.355930187078868,
          -3.4251264705087734,
          -7,
          -3.160577657190823,
          -3.8079557396120394,
          -7,
          -7,
          -7,
          -3.794243992434201,
          -7,
          -7,
          -3.4044060509212692,
          -7,
          -7,
          -1.9277901740740364,
          -2.6470568007550126,
          -7,
          -7,
          -3.9096629851540183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.027164209914138,
          -2.725230813090089,
          -3.070123153384824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0818871394235496,
          -4.093946723890583,
          -3.411339063315724,
          -7,
          -3.244524511570084,
          -3.31492005599242,
          -3.3500783389094986,
          -3.1752218003430523,
          -7,
          -7,
          -3.1017470739463664,
          -2.9041743682841634,
          -7,
          -2.7338390006971496,
          -3.2467447097238415,
          -3.231851723743416,
          -2.8568798705623637,
          -2.7557732544363507,
          -2.7363965022766426,
          -2.9802306913910317,
          -3.5963939497883994,
          -7,
          -7,
          -7,
          -2.8444771757456815,
          -7,
          -7,
          -7,
          -3.018608046407905,
          -7,
          -4.303390474113389,
          -3.1775364999298623,
          -2.8432327780980096,
          -2.992860751859648,
          -7,
          -7,
          -2.572514158162275,
          -2.9265139350708855,
          -7,
          -2.9461246192171453,
          -2.4575791469957626,
          -2.5978779313445366,
          -2.1636913256003165,
          -3.7247672456463103,
          -3.274388795550379,
          -3.7528164311882715,
          -7,
          -3.396417311708544,
          -2.1503909028621253,
          -4.060980983566012,
          -7,
          -2.747648195386783,
          -7,
          -2.983883913993666,
          -3.2893659515200318,
          -2.5786392099680726,
          -3.24699069924155,
          -2.500373714353374,
          -2.4159077455568165,
          -2.431497784984585,
          -7,
          -2.170516807608989,
          -4.375681899659375,
          -2.869338412885156,
          -7,
          -7,
          -3.248218561190075,
          -3.1878026387184195,
          -7,
          -3.269045709657623,
          -3.1961761850399735,
          -2.988112840268352,
          -3.1847860380463584,
          -2.6842167951388807,
          -4.163638359628923,
          -4.12271229119345,
          -7,
          -3.257438566859814,
          -2.4382031886892928,
          -7,
          -7,
          -7,
          -3.1990691962517417,
          -3.1341771075767664,
          -3.4310419453358856,
          -7,
          -7,
          -7,
          -3.2337573629655108,
          -7,
          -7,
          -2.965985202017604,
          -3.516055252248334,
          -7,
          -7,
          -7,
          -7,
          -3.0132586652835167,
          -2.998912904358786,
          -7,
          -3.315970345456918,
          -2.98781517440207,
          -7,
          -3.850033257689769,
          -3.2768637426396046,
          -7,
          -7,
          -7,
          -1.9248123892178863,
          -3.4886916983169405,
          -3.0991378037792234,
          -3.0189084443163274,
          -4.020609853377705,
          -7,
          -7,
          -7,
          -2.8299065411191857,
          -3.3373926976485757,
          -2.7266843220979933,
          -2.3278871661342855,
          -3.8997110945711446,
          -2.5098742850047193,
          -7,
          -7,
          -2.7883451651521183,
          -3.113051576876652,
          -2.6137243973838293,
          -7,
          -7,
          -3.3944516808262164,
          -3.2335037603411343,
          -2.832029647089928,
          -7,
          -7,
          -2.8979476545330574,
          -7,
          -3.096794185701888,
          -2.9418425759839604,
          -3.930980851109795,
          -2.689407528778004,
          -7,
          -3.1939376036814164,
          -2.893206753059848,
          -3.3289908554494287,
          -2.1520184006375565,
          -2.284355524825039,
          -3.303109622057102,
          -2.509099081939545,
          -3.007442945755542,
          -2.770557474850995,
          -2.86123561863404,
          -2.8217754671834636,
          -4.486621080900413,
          -2.8461824213064766,
          -3.1664301138432824,
          -7,
          -7,
          -3.5257572431523108,
          -2.808885867359812,
          -7,
          -7,
          -2.709027541498756,
          -7,
          -2.4501090810791015,
          -7,
          -2.778585327862962,
          -3.311541958401195,
          -2.757206173278786,
          -3.0147724740730637,
          -7,
          -4.562138156677707,
          -3.4047824189666427,
          -4.357349159048321,
          -7,
          -2.903331194708171,
          -3.3993110400675417,
          -2.335081616638203,
          -7,
          -2.3406423775607053,
          -3.2214142378423385,
          -3.1720188094245563,
          -2.6190319158657123,
          -2.6503075231319366,
          -2.715446198616883,
          -2.8813846567705728,
          -7,
          -2.7662888869340487,
          -3.2392994791268923,
          -7,
          -2.8421930493708496,
          -2.889141564421198,
          -7,
          -2.4345422920373827,
          -7,
          -2.8680563618230415,
          -4.30525460989783,
          -4.779300608532864,
          -7,
          -3.7180031682670176,
          -7,
          -3.9141667938756353,
          -7,
          -7,
          -3.8067846246122903,
          -4.020899672862536,
          -7,
          -7,
          -7,
          -5.002144454528368,
          -3.8935842363360282,
          -7,
          -4.6828307381686844,
          -4.450654465942707,
          -7,
          -7,
          -7,
          -5.389755969543411,
          -7,
          -4.544700412838673,
          -3.836893516376434,
          -7,
          -7,
          -7,
          -7,
          -4.003367171740312,
          -7,
          -4.686341277784655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9906791703965108,
          -4.212240888801534,
          -3.478174691234221,
          -2.737788791709675,
          -4.202379321079624,
          -3.2180655795999282,
          -3.2400997455874054,
          -3.442009159140952,
          -3.6495879611004387,
          -3.0356965038452106,
          -3.7327203631568318,
          -2.803336595463957,
          -2.356450802904036,
          -3.1776124321762143,
          -3.5693083507830243,
          -3.257776317896286,
          -7,
          -3.411252282521769,
          -3.1836114492184326,
          -2.9017306917292185,
          -3.859138297294531,
          -3.7890339749426714,
          -3.450787792072898,
          -7,
          -3.47727476603862,
          -3.7183637376108463,
          -4.804190562898591,
          -3.236537261488694,
          -2.923909830929517,
          -7,
          -3.482954530079902,
          -7,
          -4.929970384909012,
          -3.634779458145952,
          -3.3399480616943507,
          -7,
          -3.4969494062444113,
          -3.5448893247242212,
          -3.613644530590093,
          -3.7007037171450192,
          -3.2854572872473353,
          -3.5676144427308447,
          -3.398271032027867,
          -3.5011414552877826,
          -7,
          -3.1998335061349032,
          -3.5988618448663616,
          -7,
          -3.6680926378460614,
          -7,
          -3.214137103413449,
          -4.016563295318421,
          -4.016009034734362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6965855300976074,
          -1.3776389075463482,
          -2.0245454695294156,
          -7,
          -7,
          -2.737078997674152,
          -7,
          -2.244495414087114,
          -2.2692534315230697,
          -2.2116544005531824,
          -7,
          -2.51372545859298,
          -1.7200712915540184,
          -2.4478222595857493,
          -7,
          -4.157970243604713,
          -2.791129000727286,
          -2.1101196945803173,
          -7,
          -7,
          -2.8896751285670677,
          -7,
          -2.6159500516564007,
          -1.7534873044041706,
          -1.5629767514931665,
          -7,
          -2.6355610715693056,
          -7,
          -7,
          -4.607369228176479,
          -3.097361444565494,
          -4.016747891765552,
          -7,
          -3.5764565324056203,
          -1.5475513896384343,
          -7,
          -1.0881683171508576,
          -7,
          -1.414617806009165,
          -1.9405589700314552,
          -7,
          -3.216957207361097,
          -3.2323607123535703,
          -1.4604324568764007,
          -3.286606149046036,
          -7,
          -2.9596772555121413,
          -1.7163916266127448,
          -7,
          -1.1548038032485408,
          -2.5494120098036346,
          -4.22177925693969,
          -7,
          -1.3197856732887936,
          -1.4180394841289152,
          -7,
          -3.3306456444075034,
          -7,
          -7,
          -7,
          -1.9178034622952473,
          -2.269112488235736,
          -1.698042519772291,
          -3.2152849801139682,
          -7,
          -7,
          -3.9061733636440485,
          -2.6769221255374807,
          -3.0621430812277928,
          -3.256717745977487,
          -1.3553377591547957,
          -1.77650584730532,
          -7,
          -3.161667412437736,
          -1.4057299595320005,
          -2.3269680437679976,
          -1.561670856908037,
          -3.5199591807520685,
          -2.0789523907738947,
          -2.1720637697726377,
          -2.6614069923906154,
          -2.425968732272281,
          -2.173298358871511,
          -7,
          -3.0963885466873666,
          -3.370513089598593,
          -3.1835545336188615,
          -2.8588378514285857,
          -7,
          -7,
          -2.002885688237488,
          -7,
          -2.997211582832505,
          -3.016476194280864,
          -3.3448972999500617,
          -3.2359851056925977,
          -3.144418518602069,
          -1.3135157072120407,
          -7,
          -7,
          -7,
          -1.5111592882183627,
          -1.606284363029592,
          -7,
          -7,
          -1.843344600561001,
          -1.9690662857563495,
          -2.32916049510703,
          -2.1116405080098097,
          -7,
          -7,
          -7,
          -3.200303182981585,
          -3.184975190698261,
          -7,
          -3.263340126851339,
          -7,
          -2.3956175727530065,
          -2.9689496809813427,
          -3.2942457161381182,
          -7,
          -3.2550311633455515,
          -2.1654139227229567,
          -7,
          -2.358315640082196,
          -2.9453044216515423,
          -2.9093672192323017,
          -3.1322596895310446,
          -7,
          -3.303196057420489,
          -2.387686374306485,
          -3.1681044568157537,
          -2.979092900638326,
          -7,
          -3.0799847513312257,
          -2.357087442864468,
          -2.0964755012340386,
          -2.7350996531988936,
          -7,
          -2.6459132750338443,
          -3.1970047280230456,
          -7,
          -3.2115209972402297,
          -2.4794313371977363,
          -2.837114748515506,
          -2.03342375548695,
          -3.339053735709139,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.140438902378489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.75251196027259,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6008640363098396,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.760196229455134,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.671308354448867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.130925292767531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.226146043037373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.290646646477703,
          -7,
          -4.262996581601494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.561220678933944,
          -7,
          -7,
          -7,
          -3.878498816349271,
          -7,
          -7,
          -4.4437478744709065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.527823164012659,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.771888663626186,
          -3.8473258307854237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4361626470407565,
          -4.961174211742868,
          -7,
          -3.1085650237328344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.010367809851715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5817221599490985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0718820073061255,
          -7,
          -4.163086798780062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.49391789471334,
          -7,
          -7,
          -7,
          -7,
          -3.246252312299322,
          -7,
          -2.646893624167745,
          -7,
          -7,
          -2.184691430817599,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3180633349627615,
          -7,
          -3.1943255978407317,
          -7,
          -3.744029694553289,
          -7,
          -3.386498965550653,
          -7,
          -7,
          -7,
          -1.335792101923193,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0478587274074567,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2307894109934434,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.869571979375695,
          -7,
          -2.952671385348004,
          -7,
          -7,
          -7,
          -7,
          -2.843777640858486,
          -7,
          -7,
          -7,
          -3.0629578340845103,
          -7,
          -7,
          -7,
          -3.581380688709987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.782984220976423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.44836273248059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4720246977002813,
          -7,
          -7,
          -7,
          -7,
          -3.353627758985543,
          -7,
          -7,
          -7,
          -4.088242433511572,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7785130117389247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1340176456759834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.769561935848059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.018076063645795,
          -7,
          -7,
          -7,
          -3.642068627341504,
          -3.010299956639812,
          -3.134283382991931,
          -7,
          -3.631950826259217,
          -2.688177041143745,
          -3.7060346607143506,
          -3.331427296520743,
          -3.66029616027073,
          -3.259763720056213,
          -3.9465013905695874,
          -7,
          -3.6318494621598183,
          -2.621943546842604,
          -3.2203478430987618,
          -3.21818526771214,
          -7,
          -7,
          -3.1497321599470633,
          -7,
          -2.836631992552943,
          -2.3799801725484517,
          -3.6057358938767465,
          -3.0730896213446686,
          -2.972079277025493,
          -7,
          -3.3432115901797474,
          -3.6110857334148725,
          -2.854685504019982,
          -3.0026843129897296,
          -3.3502480183341627,
          -2.6865910208269637,
          -2.5049689845761307,
          -7,
          -3.6255182289716377,
          -2.651084089243011,
          -2.369215857410143,
          -2.594191581153005,
          -3.0478587274074567,
          -7,
          -2.9946836768553746,
          -3.6482624057480444,
          -3.3461328370047307,
          -7,
          -3.657342736814626,
          -2.918180171004722,
          -2.7383400528355843,
          -1.8898284729852795,
          -2.6893088591236203,
          -3.3813858660133773,
          -7,
          -2.9979976364080043,
          -7,
          -2.5673875601601006,
          -3.507653513464988,
          -2.2849568326149767,
          -3.039722488755794,
          -7,
          -7,
          -3.506234359612126,
          -7,
          -7,
          -7,
          -7,
          -2.967641564083011,
          -2.400746348353711,
          -3.2727286880397863,
          -7,
          -7,
          -2.407603325351417,
          -7,
          -2.751712027576497,
          -2.2621750492444925,
          -7,
          -3.5012647157334826,
          -3.483672863806311,
          -7,
          -3.073131564940993,
          -7,
          -3.6399842480415883,
          -1.9075705888173975,
          -7,
          -3.3443922736851106,
          -7,
          -2.8530895298518657,
          -3.6684791029325856,
          -3.051859685552474,
          -2.7069614941736275,
          -3.1365620365899805,
          -7,
          -2.6323316733428355,
          -2.7042731123189205,
          -2.4657545198338777,
          -3.6203442997544935,
          -7,
          -3.322563836189438,
          -3.0361496297458532,
          -2.6048737705526355,
          -2.5713593927538394,
          -3.6332664111554247,
          -2.7297536636567603,
          -7,
          -7,
          -7,
          -2.5697750745872114,
          -7,
          -3.4802944600030066,
          -2.8068580295188172,
          -2.3268891728674044,
          -2.682398447819868,
          -7,
          -7,
          -3.09324653110384,
          -3.1053398398052865,
          -3.123042319020609,
          -7,
          -7,
          -2.8606374167737547,
          -2.8997597236876644,
          -2.5756825795343086,
          -3.079452595311,
          -2.8048910915321743,
          -3.262580517382081,
          -3.6603910984024672,
          -3.32522822787085,
          -7,
          -3.7791804149414143,
          -7,
          -2.9051885225908243,
          -3.5851786285035163,
          -7,
          -7,
          -1.677365372298483,
          -2.563942294779078,
          -7,
          -7,
          -3.5859117103194342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.089198366805149,
          -2.3277966577379194,
          -2.552035169157616,
          -3.2293746309288434,
          -7,
          -3.049605612594973,
          -7,
          -7,
          -3.2247056756774772,
          -3.876015661798158,
          -3.1697164090727963,
          -7,
          -7,
          -3.0680930538642177,
          -2.902886363725619,
          -7,
          -3.306425027550687,
          -7,
          -3.2343485271546655,
          -3.148396974251975,
          -3.7132384615456617,
          -2.948331446401186,
          -2.5563025007672873,
          -2.0012495576348677,
          -2.73917663191073,
          -1.888844414342479,
          -2.326745379565322,
          -3.05375050316729,
          -3.1832016721251284,
          -3.6475785542124552,
          -7,
          -3.605305046141109,
          -2.5255075609238915,
          -2.4943534012921837,
          -7,
          -7,
          -2.8002104435489317,
          -7,
          -3.4532227541587015,
          -7,
          -3.1711899563868537,
          -2.6622180000621567,
          -7,
          -3.4476747410782496,
          -2.550635949970891,
          -7,
          -2.933053210369387,
          -3.244689360492884,
          -2.8947906150702862,
          -3.2221092481637466,
          -3.119915410257991,
          -7,
          -7,
          -3.072302427940994,
          -7,
          -3.4977932285564193,
          -2.404755990537958,
          -3.367135583118011,
          -3.3296012483565187,
          -2.72714845883997,
          -7,
          -3.0683250363930514,
          -7,
          -2.721563318357481,
          -7,
          -7,
          -2.0413926851582254,
          -2.1843177798594184,
          -7,
          -2.525476726000246,
          -3.9439394644722165,
          -2.5680397947280933,
          -7,
          -7,
          -3.1650463796852826,
          -3.1416587697865523,
          -3.63002085111341,
          -3.3498600821923312,
          -7,
          -3.3585059114902354,
          -3.0716611234417877,
          -2.151405212887992,
          -3.390026224005205,
          -3.8708209420761808,
          -3.6061663146076204,
          -2.1350332136014343,
          -2.8790958795000727,
          -7,
          -7,
          -3.625415352154408,
          -3.1597927031384208,
          -3.4268364538035083,
          -2.7701972139577498,
          -3.6055205234374688,
          -7,
          -3.022943609686901,
          -3.159266331093494,
          -3.1308696038275126,
          -3.322219294733919,
          -2.062173082510824,
          -2.9507608581826994,
          -7,
          -3.312388949370592,
          -7,
          -3.6351820486562674,
          -3.3694014136966244,
          -7,
          -7,
          -3.6711728427150834,
          -3.325207689482919,
          -3.4406729882937586,
          -3.5094713521025485,
          -2.8029019429227557,
          -7,
          -7,
          -7,
          -1.6287817789978616,
          -7,
          -2.7072017786784093,
          -2.148658732600981,
          -3.116923847417229,
          -3.6822353569025643,
          -7,
          -7,
          -3.174447484146129,
          -2.729355395130064,
          -2.4131286270329313,
          -2.5128226971247,
          -2.6414741105040997,
          -2.484718436470184,
          -3.1911714557285586,
          -2.8454081396217936,
          -2.8018323042314583,
          -2.412830002562326,
          -1.8932208126749903,
          -3.604334073102911,
          -3.0373268776897215,
          -2.121438887639747,
          -3.0340265237751103,
          -3.426592582305156,
          -7,
          -3.464564059655464,
          -2.684162875655056,
          -3.700790221374347,
          -3.2018748585358794,
          -3.719993826367604,
          -3.5521501101340105,
          -2.21507405981132,
          -3.1513698502474603,
          -3.31923859026851,
          -7,
          -3.199480914862356,
          -2.4749734329483575,
          -3.0435194602457565,
          -3.199412322193509,
          -2.7925190299131533,
          -1.8336560803707163,
          -1.9098433138304707,
          -1.9781678314360502,
          -2.818738940905639,
          -3.949844352716353,
          -2.579270968576654,
          -7,
          -3.604334073102911,
          -7,
          -3.2706788361447066,
          -2.8109042806687006,
          -3.3463529744506384,
          -2.211902040898719,
          -2.5871494982543437,
          -3.0352295563502123,
          -3.0594119374386564,
          -7,
          -2.241668433463518,
          -3.06660542412653,
          -2.845186662498373,
          -2.7445723620206373,
          -3.1917303933628562,
          -3.924164378141671,
          -2.8667691028858657,
          -3.8438646402793872,
          -7,
          -2.4216039268698313,
          -3.399754191090663,
          -2.9022749204745018,
          -7,
          -3.382647303154711,
          -7,
          -2.894931123659502,
          -2.872783607024382,
          -2.8344696134717644,
          -2.855216194733363,
          -7,
          -7,
          -3.0088130090520893,
          -2.460095636143043,
          -7,
          -2.3267081665511262,
          -2.358315640082196,
          -2.4380476517490206,
          -2.3646250417549757,
          -7,
          -7,
          -4.332549544296137,
          -4.496770562043202,
          -7,
          -7,
          -7,
          -3.434983840181938,
          -3.747489492258673,
          -3.72607487021537,
          -3.485388317827623,
          -4.117702061209315,
          -7,
          -4.3761022583701,
          -3.9028029475875803,
          -4.536183744069879,
          -3.319355941066902,
          -7,
          -4.228674059346633,
          -3.5428503141820116,
          -3.856698688047469,
          -4.383042999305744,
          -7,
          -4.491254858261633,
          -7,
          -4.098839777341088,
          -3.099202372435998,
          -7,
          -4.390484690310887,
          -3.8007857903277626,
          -7,
          -3.4194807372393323,
          -7,
          -4.010121791503448,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9028320480601133,
          -3.975891136401793,
          -3.2189048941931206,
          -2.836233665954909,
          -3.9244688176869937,
          -2.908097212236117,
          -3.354530998050396,
          -2.9563818954498764,
          -3.7947493812264192,
          -3.2920344359947364,
          -3.227011105616783,
          -2.024091421981584,
          -2.59640302644237,
          -4.017756560917876,
          -3.280150238221159,
          -2.623850648027604,
          -3.241878383159056,
          -2.656915154219173,
          -2.666900712558807,
          -3.022325250092303,
          -3.391111613702803,
          -3.832971700601181,
          -3.6163179419637905,
          -7,
          -3.01534692246958,
          -3.1213292991298016,
          -4.479043219385034,
          -7,
          -2.3023206191454757,
          -7,
          -2.689847910948187,
          -7,
          -4.934404175542786,
          -3.4929000111087034,
          -4.002856926061121,
          -7,
          -3.214578953570499,
          -3.2824096712156043,
          -3.345231725806989,
          -3.8830933585756897,
          -2.837457816805311,
          -2.9203842421783577,
          -3.1612681529456736,
          -3.0727441557987976,
          -3.3702354372831773,
          -2.220396547201303,
          -3.0585139781456494,
          -3.8600383898071935,
          -3.2205176429386384,
          -7,
          -3.0313507468640846,
          -3.4988518534235458,
          -3.6695957810243134,
          -7,
          -3.313128713845194,
          -7,
          -7,
          -7,
          -1.9882213973042904,
          -1.3366766942669703,
          -1.5341136742552226,
          -7,
          -3.1405080430381793,
          -2.3403415296307353,
          -3.0829289150151302,
          -1.4252792663679836,
          -2.3519792918643674,
          -1.9548211830517932,
          -7,
          -2.1295437254991,
          -1.3735696006624911,
          -2.2425605395871684,
          -3.4599199557469165,
          -3.5314533695566217,
          -2.8531656617622896,
          -1.8433140432437767,
          -7,
          -3.6572471298837166,
          -2.4115742086626906,
          -7,
          -2.4927603890268375,
          -2.3162123596631825,
          -1.308824261316819,
          -7,
          -2.468158711741699,
          -3.6195107208384987,
          -3.628899564420607,
          -4.333548027189907,
          -2.4819725290651156,
          -3.3210770203302395,
          -7,
          -2.6576703723114363,
          -1.0092351981682364,
          -7,
          -1.2278569950445073,
          -7,
          -1.3707986436567077,
          -1.3593776211753175,
          -7,
          -7,
          -7,
          -1.4825717867894328,
          -3.4483971034577676,
          -7,
          -2.648034574860868,
          -1.4382031886892928,
          -2.4853427913382387,
          -1.3266469230038163,
          -2.03342375548695,
          -3.5068206042642256,
          -7,
          -1.1760219880639236,
          -1.0224261256148603,
          -7,
          -2.813358558611011,
          -7,
          -7,
          -3.5833877208856357,
          -1.5226122251848893,
          -1.7450716082583857,
          -1.355387657986574,
          -3.0321004752575327,
          -2.7636775163976686,
          -7,
          -7,
          -1.5381235426720743,
          -2.7482336437786707,
          -7,
          -1.326352314905222,
          -1.5071439664174373,
          -3.7085908451503435,
          -3.132152917684925,
          -1.3198078810877178,
          -1.9183971468776533,
          -1.7758472954740794,
          -1.7407421517131454,
          -1.922956834920365,
          -2.4902929895560635,
          -2.633276034450208,
          -2.4688683796431086,
          -1.7806196381984027,
          -3.613471827163333,
          -3.4079854213081364,
          -7,
          -2.7712724322770126,
          -3.3080305542661055,
          -4.12252714764831,
          -7,
          -1.7500754462389447,
          -7,
          -2.6741748768003752,
          -2.912904969285542,
          -3.4127724458089577,
          -2.657730572540051,
          -3.612889769287485,
          -1.2593504175237453,
          -7,
          -1.5111592882183627,
          -7,
          -7,
          -1.6273438285192878,
          -3.928037206406883,
          -2.404940567274162,
          -1.5238144501376383,
          -2.127734536719233,
          -1.856956321022818,
          -1.3228241617981338,
          -7,
          -7,
          -3.3103746420476123,
          -7,
          -7,
          -3.629409599102719,
          -3.2989839997333843,
          -3.7257483329955483,
          -2.6020599913279625,
          -1.792991681970249,
          -7,
          -3.028571252692538,
          -2.643551368562945,
          -1.981610995889209,
          -7,
          -2.20987713787046,
          -2.488633652523212,
          -2.3550682063488506,
          -3.2741578492636796,
          -7,
          -2.886490725172482,
          -2.7076766077813272,
          -2.846584502898046,
          -3.0532705666813786,
          -7,
          -2.589254372459997,
          -2.304790144537288,
          -2.23101625585726,
          -2.3214038358007936,
          -7,
          -2.67493176346858,
          -3.6226284261293253,
          -3.1508587351103174,
          -2.688345653360757,
          -3.0138900603284386,
          -2.8677352568310357,
          -2.080357968800938,
          -3.681512586638962,
          -7,
          -7,
          -7,
          -3.63558426631123,
          -3.3369597851207042,
          -2.750219025946535,
          -2.1999901215285598,
          -2.341269613058443,
          -7,
          -7,
          -3.333876636650032,
          -3.355307817103565,
          -7,
          -7,
          -3.2500205694119897,
          -2.387671913248881,
          -3.11277252110537,
          -3.686099771995916,
          -3.632963168167261,
          -7,
          -3.640878778701618,
          -2.7958291701355673,
          -2.6309925539264505,
          -7,
          -2.929776432804902,
          -2.9811151224266053,
          -7,
          -3.6665179805548807,
          -3.6348801407665263,
          -2.8204933731124284,
          -2.9427519204298136,
          -3.6732052817790453,
          -3.4408528809028094,
          -3.004149341900059,
          -7,
          -7,
          -3.6744937172963503,
          -2.814839277678894,
          -7,
          -3.540141698835551,
          -7,
          -2.709340641174848,
          -7,
          -3.4810215787471606,
          -7,
          -3.6787914343662442,
          -2.876939140345395,
          -2.934750874663579,
          -1.8254802118678997,
          -3.6671726724788685,
          -3.4016589724951523,
          -7,
          -2.7157527168228595,
          -3.273926780100526,
          -2.7203699127714107,
          -3.522900459461583,
          -1.9324886865786444,
          -3.527372082827612,
          -7,
          -2.914078585389112,
          -2.779989814589074,
          -7,
          -3.70372115992702,
          -7,
          -7,
          -2.4815322014595997,
          -2.34456563320384,
          -2.925949573169082,
          -7,
          -7,
          -1.9217211483096077,
          -7,
          -2.8530895298518657,
          -2.8322959710584774,
          -7,
          -3.340510212470853,
          -3.1978285278826197,
          -7,
          -3.186744501716686,
          -7,
          -7,
          -1.8697009736738779,
          -3.074743320941003,
          -3.190144864662612,
          -7,
          -3.8236698132681366,
          -7,
          -3.1456935239042205,
          -3.391052786139976,
          -3.455758203104137,
          -7,
          -2.8393027327129636,
          -2.864748335629659,
          -2.574883781005765,
          -7,
          -7,
          -7,
          -3.452553063228925,
          -3.1966596938570437,
          -3.0419563380367,
          -3.655906418180215,
          -2.7353569124617954,
          -3.6942541120252788,
          -7,
          -7,
          -2.9185872716624233,
          -7,
          -2.4940153747571436,
          -2.5517751904118082,
          -2.1269967514723724,
          -2.511600289536558,
          -7,
          -3.0592793486780776,
          -3.715501945293284,
          -3.4258601450778405,
          -3.0014555467434025,
          -7,
          -7,
          -3.480438147177817,
          -3.3913468443013244,
          -2.6554052496393994,
          -7,
          -3.3193374362368813,
          -3.2914118222501534,
          -7,
          -3.73275552117825,
          -7,
          -3.780156291265134,
          -7,
          -3.52329112918679,
          -3.597969275225808,
          -7,
          -3.0859146287065933,
          -1.582612259836227,
          -2.113750575290176,
          -7,
          -7,
          -3.9577030415488315,
          -7,
          -7,
          -7,
          -3.6484575942825224,
          -7,
          -2.9868314269997462,
          -2.6215539291743997,
          -3.0540861434129027,
          -3.3380080224113904,
          -7,
          -4.059108817913594,
          -7,
          -7,
          -3.721563318357481,
          -4.18369680863468,
          -3.1211903890551365,
          -7,
          -7,
          -7,
          -3.332124127960269,
          -7,
          -3.330413773349191,
          -7,
          -3.4295908022233017,
          -3.6489451821656727,
          -3.0325381792600066,
          -2.2942299611370496,
          -3.503790683057181,
          -2.8927205376754648,
          -3.4572004127937683,
          -2.6245494597571613,
          -2.3817035291290907,
          -3.200394450079095,
          -3.052674253551032,
          -3.368286884902131,
          -7,
          -7,
          -2.995020606124758,
          -3.187708686423428,
          -3.6591552809406296,
          -7,
          -3.0463887326513173,
          -7,
          -3.2465553921611647,
          -7,
          -3.261548338444689,
          -2.8411318527966554,
          -7,
          -3.459392487759231,
          -2.7407009689987443,
          -3.731346975545955,
          -3.192846115188842,
          -3.4394905903896835,
          -2.235222282297123,
          -3.0194486374936367,
          -2.5928109955252414,
          -3.9114772171061025,
          -7,
          -7,
          -7,
          -3.630665129596291,
          -2.2445395004217272,
          -3.810585322955202,
          -3.6535983818432896,
          -1.7527194376029664,
          -3.3334472744967503,
          -2.1505044159392837,
          -2.679337030520794,
          -1.798691258386048,
          -2.298378385705651,
          -2.498861688992884,
          -2.6932639977211865,
          -3.0073921195729496,
          -7,
          -2.333064896491424,
          -3.9477113985684684,
          -2.366124780433001,
          -7,
          -7,
          -3.664735968518705,
          -3.341335585180992,
          -7,
          -7,
          -7,
          -3.203576774977973,
          -3.381440002819618,
          -2.680732000090073,
          -3.2865562616780064,
          -3.434875590599677,
          -7,
          -2.712556174226849,
          -2.833420339025857,
          -7,
          -7,
          -7,
          -3.7792356316758635,
          -2.6305061051399616,
          -7,
          -7,
          -7,
          -3.3474275986185416,
          -3.358030076576957,
          -3.632356046239073,
          -3.646599751720373,
          -2.517428784441516,
          -2.8108661942666147,
          -3.633165353683903,
          -3.336059277866349,
          -7,
          -3.6577249542051082,
          -2.8452752669018024,
          -3.0828750913129275,
          -7,
          -3.6919651027673606,
          -2.984177136353868,
          -3.1570788249532042,
          -2.996161293368007,
          -3.5407047833107623,
          -3.752893154884594,
          -7,
          -7,
          -1.64742734474242,
          -3.4719514546809824,
          -2.5698327279788904,
          -3.392609030497567,
          -2.956357404797833,
          -3.4013143626917874,
          -3.659345635746177,
          -3.185919720174312,
          -2.8343253137447935,
          -3.670987603010034,
          -2.2773395080498693,
          -3.0028856882374884,
          -2.9907423617216766,
          -2.655618583541222,
          -3.388367667157301,
          -7,
          -3.424146305755156,
          -2.7135551558266218,
          -2.513617073787875,
          -7,
          -3.059658066366697,
          -2.8806502929812914,
          -2.8800510030033712,
          -2.196689278957495,
          -7,
          -2.8271537957574657,
          -2.977195801518918,
          -2.8741503584336896,
          -2.864445154002189,
          -2.271761515345511,
          -3.462635047996229,
          -2.7237541049498004,
          -3.651762447380111,
          -3.1094285444913927,
          -3.343802333161655,
          -3.697490887171057,
          -2.682990720468959,
          -3.0612262251191154,
          -4.110791660771106,
          -2.8069196184690592,
          -2.742506925762298,
          -2.6830470382388496,
          -2.0731682622651015,
          -1.8388490907372554,
          -4.1065590646715435,
          -2.49380646215058,
          -7,
          -7,
          -3.3279716236230104,
          -3.201988527362111,
          -2.6468392183446987,
          -7,
          -2.9856060830524367,
          -2.631173096220426,
          -3.359076226059263,
          -2.5697395697207623,
          -7,
          -2.9472376078706666,
          -3.6901074394563307,
          -2.80694271207381,
          -2.8622940465782776,
          -3.6901074394563307,
          -3.765737312131352,
          -3.0525708294952705,
          -3.692677611096558,
          -7,
          -3.525735671341458,
          -3.46599342501868,
          -2.712383834167483,
          -7,
          -2.4458635609892205,
          -3.6546577546495245,
          -3.3866772839608377,
          -2.997167871445834,
          -3.1820340262209674,
          -3.475235222604128,
          -3.640878778701618,
          -7,
          -2.9577440727248177,
          -3.1838390370564214,
          -3.6860102913152857,
          -2.847572659142112,
          -3.218902950862829,
          -3.0645515770910676,
          -2.315835362781999,
          -3.6307328928171967,
          -7,
          -3.85766412251388,
          -4.79940258709127,
          -7,
          -7,
          -7,
          -3.7398254113853047,
          -7,
          -3.9325955124185206,
          -2.96143200516566,
          -4.125253486024798,
          -7,
          -4.380283618094059,
          -4.4487295022658,
          -4.7132510690987335,
          -3.2424793108010457,
          -7,
          -4.406744506234903,
          -3.8628814005637455,
          -7,
          -3.7849915231445306,
          -7,
          -7,
          -7,
          -3.7334151031279044,
          -3.74262040632664,
          -7,
          -7,
          -4.283233364888754,
          -7,
          -3.625305590015191,
          -7,
          -4.2339516914043775,
          -3.919269907010536,
          -7,
          -7,
          -3.9022205282793148,
          -4.056638097379652,
          -7,
          -4.282214133062335,
          -3.0087162777596426,
          -3.4014867017741692,
          -3.8594814096820422,
          -3.535941190545326,
          -3.4602587043308133,
          -3.446226401778163,
          -3.622576647353478,
          -3.7861122837198264,
          -3.315288564340599,
          -2.306152858032541,
          -2.0963411095954876,
          -3.2672269610727946,
          -3.0353387578800564,
          -3.1572972322407757,
          -3.737987326333431,
          -3.171740379820262,
          -3.418425594468589,
          -3.346841769642251,
          -3.7023443583557687,
          -3.8366247257537696,
          -7,
          -7,
          -3.259726099140045,
          -3.340689835489153,
          -4.806612356691847,
          -7,
          -3.464042205438811,
          -3.190705124231049,
          -2.6886376191642114,
          -7,
          -4.712935770420799,
          -2.942256150419465,
          -3.463509053954063,
          -7,
          -3.0327063325812817,
          -3.188633231831517,
          -3.175525297628974,
          -3.4186326873540653,
          -2.3941056294279046,
          -3.709269960975831,
          -2.3826085158714565,
          -3.23724203998423,
          -7,
          -2.944264331148952,
          -2.811440943674158,
          -3.873611196996467,
          -2.9036882696704707,
          -7,
          -2.16006627804627,
          -3.1417338533026715,
          -3.6738499773429494,
          -7,
          -3.6379897807846855,
          -7,
          -7,
          -7,
          -2.3087488049859366,
          -1.8010970512692204,
          -1.461718957918466,
          -7,
          -3.061150780928549,
          -1.769724761680191,
          -3.798650645445269,
          -1.6944512483889211,
          -2.7011840783065937,
          -1.9036560889385818,
          -3.1659364290317904,
          -1.8915327727519662,
          -1.6468822374664192,
          -2.8373178216631016,
          -7,
          -3.935381292079985,
          -2.2130009594217945,
          -2.368235217008203,
          -7,
          -7,
          -3.5160062303860475,
          -3.0790002523038495,
          -2.5761640871494937,
          -1.9102947457629293,
          -1.8731473888125145,
          -7,
          -2.018224820106199,
          -7,
          -3.651762447380111,
          -3.791690649020118,
          -2.84651383420016,
          -3.535380743722831,
          -7,
          -3.5197623854242224,
          -1.3563206759578796,
          -3.101231386790699,
          -1.5291070133753117,
          -7,
          -1.9737758126634288,
          -1.4526195693282578,
          -7,
          -3.3517963068970236,
          -3.797059694699971,
          -1.9056323658772685,
          -3.3350565194390915,
          -3.3759378186307774,
          -2.9683272595463874,
          -2.062923679353503,
          -3.685204134471015,
          -1.815812058813848,
          -2.033750562998724,
          -3.3869446243705745,
          -3.640779477344857,
          -1.561138862137888,
          -1.6378847222472452,
          -7,
          -2.870306343898879,
          -7,
          -7,
          -3.5919915966674587,
          -1.7277520576687817,
          -1.8163174258363546,
          -1.9620798147780567,
          -2.3961993470957363,
          -3.737907923374639,
          -7,
          -7,
          -2.8982679813347163,
          -2.510768355278083,
          -3.668012971641832,
          -1.5256197523772965,
          -1.7327912834039527,
          -2.948738890358178,
          -7,
          -1.4992287242836109,
          -1.7094541093211546,
          -0.9323077387049005,
          -2.674012770977095,
          -0.6022494799944972,
          -1.7585400649078777,
          -2.604507788080989,
          -2.640481436970422,
          -1.5696117214590237,
          -3.9265996539070276,
          -2.726808682524964,
          -3.7157527168228595,
          -3.1635588985580028,
          -2.9333860419030544,
          -7,
          -3.82795052830263,
          -2.1620721685536584,
          -7,
          -2.2840002381605906,
          -7,
          -2.670769013549252,
          -2.3274824394944114,
          -3.2266514504548103,
          -1.555888689890907,
          -7,
          -1.606284363029592,
          -7,
          -1.6273438285192878,
          -7,
          -7,
          -3.635986111800833,
          -2.0819262315953124,
          -2.199772312903496,
          -1.7079320554082063,
          -2.613401316227284,
          -7,
          -7,
          -2.789076831748343,
          -7,
          -3.340344949528144,
          -3.1747380145272865,
          -3.007449044497749,
          -3.7441364524012473,
          -2.724722598063189,
          -2.414973347970818,
          -2.9832653525665456,
          -7,
          -3.366142676814887,
          -2.6112806471985532,
          -3.074725039091243,
          -2.1304036975639766,
          -2.4586775995617534,
          -2.2988267818265906,
          -2.1263738165269244,
          -3.922465945298413,
          -2.9869507878585164,
          -3.3347552398696707,
          -3.861653870213911,
          -2.9777236052888476,
          -3.6306312440205,
          -2.5247854493212225,
          -3.3902283624691303,
          -2.909199319174384,
          -2.3356098422232794,
          -3.5147469246343817,
          -2.502836638621003,
          -7,
          -3.651278013998144,
          -2.939875669940144,
          -7,
          -2.5980084167230095,
          -2.2725617633734894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9336224223562404,
          -7,
          -7,
          -7,
          -4.29664325564288,
          -2.232737755546996,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.360664401848062,
          -7,
          -7,
          -3.4642907856538874,
          -3.770336441095149,
          -7,
          -7,
          -3.656194062179186,
          -7,
          -7,
          -7,
          -4.588490200062119,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.19977040897577,
          -7,
          -7,
          -7,
          -7,
          -3.62746827245971,
          -7,
          -7,
          -7,
          -7,
          -3.4665710723863543,
          -3.3062769183480922,
          -3.837967018368655,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7229628089424898,
          -7,
          -7,
          -3.4147505757259213,
          -3.395393605710807,
          -3.3709754493589705,
          -7,
          -3.2189291850880872,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.837541092506384,
          -7,
          -3.503109436671369,
          -7,
          -3.6823256186678073,
          -4.065467672465651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.684291672207031,
          -7,
          -3.686189234244024,
          -7,
          -7,
          -7,
          -3.770041554319669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.130719636562953,
          -7,
          -7,
          -7,
          -3.9228810912082936,
          -4.145972902802181,
          -7,
          -7,
          -7,
          -7,
          -2.761114365809316,
          -3.719248398447946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2789364233011,
          -3.6084618473837273,
          -7,
          -7,
          -7,
          -4.233465707171558,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.477627636283374,
          -3.8497878242376857,
          -7,
          -7,
          -4.438336623263845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.170173673806271,
          -7,
          -7,
          -2.9960249585742633,
          -7,
          -3.7661524898594236,
          -7,
          -7,
          -3.739097446117475,
          -3.3443922736851106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.63232733040593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0954831858295404,
          -7,
          -3.665918540181034,
          -7,
          -7,
          -3.352320637745696,
          -3.4173055832445254,
          -2.9051087054113625,
          -3.5991732173529125,
          -7,
          -3.8101652845431495,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9408649759667216,
          -7,
          -7,
          -7,
          -4.4163741915354215,
          -7,
          -3.6012177295644547,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.983581186705791,
          -7,
          -7,
          -7,
          -3.105558842490254,
          -3.0496443525693,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6924062348336304,
          -7,
          -7,
          -3.1848688024687895,
          -7,
          -3.343137690775371,
          -4.373949656322176,
          -7,
          -7,
          -7,
          -3.7344797894255772,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9320563015173873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.006337660374551,
          -3.3276449635986567,
          -3.7692295817365937,
          -7,
          -7,
          -3.4904676686713505,
          -7,
          -2.857753385075089,
          -7,
          -1.5214019507737675,
          -7,
          -7,
          -7,
          -7,
          -3.9820449790714902,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2478757389051127,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.214479576471884,
          -3.3853083013863463,
          -7,
          -7,
          -7,
          -7,
          -3.5755387065320834,
          -7,
          -7,
          -7,
          -7,
          -3.990338854787601,
          -3.91555811541152,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.881059242040658,
          -4.454570482102004,
          -4.187417688853972,
          -7,
          -7,
          -3.443984706747188,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5553967768062633,
          -7,
          -7,
          -3.1751317569102886,
          -3.2819419334408244,
          -3.3561788855533754,
          -7,
          -3.330359131857053,
          -2.979061471018838,
          -2.63230728977173,
          -2.8196350367166048,
          -2.844934740714757,
          -3.2287210842783987,
          -2.6247704635184332,
          -3.6850785976925997,
          -2.979702664346866,
          -3.175780637934789,
          -2.324666910859278,
          -3.149304662637318,
          -2.643222875279266,
          -2.592739228049737,
          -2.5351468666314307,
          -2.8985836484346144,
          -3.592620821321982,
          -3.426346824127506,
          -1.5702069657950393,
          -2.7944309034001953,
          -2.5328063591818957,
          -4.104845461232334,
          -3.3941013020400446,
          -2.695346948869479,
          -3.799064719351008,
          -2.505920882889847,
          -2.987030866887691,
          -3.3508376918557152,
          -3.4457079649469864,
          -3.116961764372151,
          -2.932763584161985,
          -7,
          -3.7637274037656985,
          -3.0953571428528686,
          -1.7335810253677884,
          -3.2232266527926114,
          -7,
          -3.5923903063414606,
          -3.2292743435523663,
          -4.070628844051428,
          -3.332286935410293,
          -3.705521613422667,
          -7,
          -3.611982518295699,
          -7,
          -7,
          -3.722812100254417,
          -3.5834391002295347,
          -3.937768567049936,
          -7,
          -2.991516800560143,
          -7,
          -7,
          -4.012710712741787,
          -3.840043330603494,
          -7,
          -7,
          -3.4069147043332144,
          -3.250150837583095,
          -3.745956036332752,
          -7,
          -7,
          -7,
          -3.744108823475306,
          -7,
          -5.111250748556312,
          -2.7557659962955827,
          -4.012394271505212,
          -7,
          -3.921790485658187,
          -3.4929837628169764,
          -4.509974959845468,
          -2.760260885474593,
          -4.310672074930124,
          -7,
          -3.351493360537302,
          -3.842397032423771,
          -7,
          -3.849244545652974,
          -3.8610838454082805,
          -7,
          -4.179287457481868,
          -7,
          -7,
          -3.5702120340015426,
          -4.376941757146759,
          -7,
          -7,
          -7,
          -3.3653943768547783,
          -2.6018711265796486,
          -2.3980183705310725,
          -7,
          -3.985493836151524,
          -2.975431808509263,
          -2.821367938567036,
          -3.374498392344555,
          -2.3472290439950934,
          -7,
          -3.677241845946654,
          -3.6837222824514324,
          -3.3631417096979495,
          -3.0244400557176196,
          -7,
          -2.8564699450416704,
          -3.3161101923368586,
          -2.6961316309388828,
          -3.0111473607757975,
          -2.4590907896005865,
          -2.9446471464872617,
          -1.9730389953933727,
          -3.400451639956946,
          -3.700790221374347,
          -3.011316643366872,
          -7,
          -3.8705209500127644,
          -7,
          -3.114883810844791,
          -7,
          -7,
          -2.1633534445111513,
          -2.8127539221439144,
          -1.5278802544226242,
          -3.6546577546495245,
          -2.9309490311675233,
          -4.104521252618329,
          -3.0224283711854865,
          -7,
          -7,
          -7,
          -3.863005451385769,
          -7,
          -3.372267444095655,
          -2.1526959412988536,
          -3.752662943120972,
          -2.171602514700333,
          -3.3953263930693507,
          -2.0754709227891843,
          -7,
          -3.226771698912882,
          -7,
          -3.0964359785983557,
          -2.831516743132146,
          -7,
          -3.877946951629188,
          -7,
          -2.4395479930903456,
          -2.521936753042379,
          -7,
          -3.6734816970733473,
          -2.2208444301661006,
          -7,
          -2.942617465122138,
          -3.8424220033576497,
          -2.62215946678484,
          -3.754806855354423,
          -2.0127493730851898,
          -1.64697522012513,
          -7,
          -3.3006824210300603,
          -2.988112840268352,
          -7,
          -4.017700971224117,
          -1.9151759061138112,
          -7,
          -3.711089840140532,
          -3.0565702209242036,
          -7,
          -7,
          -3.6069543130590116,
          -3.8439176380063924,
          -3.501013592678627,
          -3.437829806408219,
          -2.827956395600868,
          -1.8280924946729211,
          -3.045948538105334,
          -2.829303772831025,
          -7,
          -7,
          -2.6731664725674644,
          -2.4586378490256493,
          -3.115194321434587,
          -1.991803723060169,
          -2.829315261951061,
          -3.0919481908785595,
          -2.8203187697918297,
          -3.8157437313119185,
          -2.160351513808608,
          -7,
          -3.698796251790431,
          -7,
          -3.353627758985543,
          -3.928037206406883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.356920794010944,
          -7,
          -7,
          -3.6577249542051082,
          -7,
          -7,
          -3.6625689669332604,
          -2.7170229235078334,
          -2.552626265425669,
          -3.0612262251191154,
          -7,
          -7,
          -2.4688683796431086,
          -7,
          -3.6871721045948,
          -7,
          -7,
          -7,
          -7,
          -4.227809604075215,
          -3.089949244814966,
          -3.456264787183392,
          -3.705607163404605,
          -7,
          -3.1749896504073343,
          -7,
          -7,
          -3.852126070250302,
          -7,
          -7,
          -3.569724949226159,
          -2.926085086925144,
          -7,
          -7,
          -3.671820560183249,
          -7,
          -7,
          -3.0296373803095857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.188112537165025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3939260065858368,
          -7,
          -7,
          -4.726480367434906,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.262195896425577,
          -2.649821463224565,
          -2.4424797690644486,
          -7,
          -2.7520484478194387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.140517470457171,
          -7,
          -7,
          -7,
          -7,
          -3.613418945034573,
          -2.6866362692622934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.928672319688248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6035773681514667,
          -7,
          -7,
          -4.752363485275562,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8164622587764545,
          -3.4310419453358856,
          -7,
          -7,
          -4.362840469311725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8447566745101733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3226327116922234,
          -7,
          -3.560086048497414,
          -7,
          -7,
          -5.150903737388157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.449831168353349,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.064345657162171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2427898094786767,
          -7,
          -7,
          -3.330210784571528,
          -7,
          -7,
          -7,
          -7,
          -2.6627578316815743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.946206553842783,
          -7,
          -5.411707229364498,
          -7,
          -2.2166056942039845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.432969290874406,
          -7,
          -4.941203242555451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.309310715788175,
          -7,
          -4.530494252365142,
          -7,
          -4.708650310198278,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3807537708039,
          -7,
          -7,
          -3.0678145111618402,
          -7,
          -7,
          -7,
          -7,
          -3.913707913980483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4065401804339555,
          -7,
          -3.5538830266438746,
          -7,
          -7,
          -7,
          -2.98617435524234,
          -2.5150786750759226,
          -2.8825245379548803,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3140779917792127,
          -7,
          -3.897063242076261,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.933687179276238,
          -3.67797175281074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.186497231680861,
          -7,
          -7,
          -3.6604860157849677,
          -7,
          -3.874781294503695,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.780598108323546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.942102346729723,
          -4.255513712819534,
          -7,
          -4.869833836829262,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.987338484245791,
          -2.6913025633834833,
          -3.874046725512229,
          -7,
          -7,
          -7,
          -7,
          -2.325310371711061,
          -7,
          -7,
          -7,
          -4.317986769891909,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3336487565147013,
          -7,
          -7,
          -3.754806855354423,
          -7,
          -7,
          -7,
          -3.4834446480985353,
          -7,
          -7,
          -7,
          -2.510545010206612,
          -7,
          -4.616345958929143,
          -7,
          -7,
          -7,
          -3.3189498101690718,
          -7,
          -2.938186037505905,
          -7,
          -3.119585774961784,
          -2.9871695309342248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.154423973114647,
          -7,
          -2.8344207036815328,
          -3.1956229435869368,
          -3.6709412807357755,
          -7,
          -7,
          -3.501333178645566,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.8512583487190755,
          -3.5139790241916455,
          -2.9336559786575473,
          -7,
          -7,
          -7,
          -7,
          -1.6097468199942533,
          -7,
          -7,
          -2.9642596301968487,
          -3.7808931086870787,
          -7,
          -7,
          -7,
          -3.928375366184779,
          -3.584218112117405,
          -2.118815651549511,
          -3.821731821690044,
          -7,
          -3.710540447933297,
          -2.7415455167762097,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9258275746247424,
          -7,
          -4.525472408936226,
          -7,
          -7,
          -4.542663625238801,
          -7,
          -3.394626764272209,
          -7,
          -7,
          -7,
          -2.404940567274162,
          -3.635986111800833,
          -7,
          -7,
          -2.693140460675295,
          -2.9867717342662448,
          -4.088685256807787,
          -1.6755492229761288,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8830933585756897,
          -7,
          -7,
          -7,
          -4.097569639431371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.193110678436452,
          -7,
          -7,
          -7,
          -7,
          -3.350829273582968,
          -7,
          -7,
          -7,
          -7,
          -3.623352681537992,
          -3.1228709228644354,
          -2.940516484932567,
          -7,
          -7,
          -3.1734776434529945,
          -7,
          -7,
          -3.2237554536572413,
          -3.443106456737266,
          -7,
          -7,
          -3.292920299600006,
          -3.5082683903483165,
          -3.7944880466591697,
          -7,
          -7,
          -3.1092149901535073,
          -3.124554383000522,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2794958384653494,
          -3.6411269328035094,
          -7,
          -3.2772270809913566,
          -3.59063520421957,
          -7,
          -7,
          -7,
          -3.193958978019187,
          -7,
          -7,
          -3.570805538589023,
          -7,
          -3.203304916138483,
          -7,
          -2.6718667887725633,
          -3.484442207642407,
          -3.2380461031287955,
          -2.531052929286764,
          -7,
          -7,
          -3.2643455070500926,
          -3.6973196556576204,
          -7,
          -7,
          -3.505014240084107,
          -3.066325925362038,
          -2.4764773784239575,
          -7,
          -7,
          -7,
          -2.8976270912904414,
          -7,
          -2.815827362700702,
          -3.5829719291048057,
          -2.7007517771773712,
          -3.560205622970059,
          -7,
          -7,
          -3.5805828768143675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.165095874754218,
          -3.5632140189832664,
          -7,
          -7,
          -2.7732987475892314,
          -7,
          -3.2072303098483532,
          -2.948331446401186,
          -7,
          -3.094587577089025,
          -3.9245990727152424,
          -7,
          -2.5179872030250783,
          -7,
          -7,
          -2.044446917238644,
          -3.1908917169221698,
          -2.7798368978412693,
          -7,
          -2.5802405082653763,
          -3.010299956639812,
          -7,
          -2.753104075187242,
          -7,
          -7,
          -2.832127070576861,
          -2.874191804679071,
          -2.5271368799683067,
          -7,
          -7,
          -3.567966906823154,
          -2.848958460827495,
          -2.582315933132205,
          -2.5724247511661993,
          -3.2271150825891253,
          -2.6225306165918294,
          -7,
          -7,
          -3.1696744340588068,
          -2.3623986907281687,
          -7,
          -3.5359267413955693,
          -7,
          -2.644520647943643,
          -2.964521521588674,
          -7,
          -7,
          -3.371621927176021,
          -3.3967222785037734,
          -3.49991035702922,
          -7,
          -7,
          -2.659372822480162,
          -2.614705516854607,
          -2.880976830201113,
          -3.040602340114073,
          -2.879450884912662,
          -3.3470371337849536,
          -7,
          -3.600319329751661,
          -3.3029799367482493,
          -4.044221718804828,
          -7,
          -3.1060775192489603,
          -3.4051755462179893,
          -7,
          -7,
          -2.0329181739608138,
          -3.1264561134318045,
          -7,
          -7,
          -3.7848489971615793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.89250272192097,
          -2.9606066644196076,
          -2.822025869575364,
          -3.166578109919652,
          -7,
          -3.2359827034818394,
          -7,
          -7,
          -3.3848907965305544,
          -7,
          -3.889189612047073,
          -7,
          -7,
          -7,
          -3.3501874261496343,
          -7,
          -7,
          -7,
          -2.926856708949692,
          -7,
          -3.4075608494863623,
          -7,
          -3.5491259267581112,
          -2.754857772111842,
          -3.1598678470925665,
          -2.8534446979741572,
          -3.1367205671564067,
          -7,
          -3.7295223758548572,
          -7,
          -7,
          -7,
          -3.3242824552976926,
          -2.345128574198131,
          -7,
          -7,
          -3.195392218148846,
          -7,
          -4.002511631284908,
          -7,
          -3.09968064110925,
          -2.976173410782892,
          -3.336859820916809,
          -2.9847522781154137,
          -2.4560979776847325,
          -7,
          -3.2303211689190787,
          -3.1240148788874076,
          -3.4616485680634552,
          -7,
          -7,
          -3.7255032688593155,
          -7,
          -3.053923150548575,
          -7,
          -3.6980135039391815,
          -2.700126581535961,
          -3.2826221128780624,
          -7,
          -3.411922596466199,
          -7,
          -3.8303319934519617,
          -3.291368850451583,
          -2.949390006644913,
          -7,
          -3.282848602834645,
          -2.70209898861516,
          -2.6681195600536824,
          -7,
          -2.9361365870214917,
          -3.773676760807886,
          -3.008440475315219,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2711443179490782,
          -7,
          -7,
          -3.1852115157200926,
          -2.90759048821862,
          -3.163370120225884,
          -4.182313930896806,
          -7,
          -2.958085848521085,
          -2.6846209780269676,
          -7,
          -3.1740598077250253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.236033147117636,
          -7,
          -7,
          -2.3625138895930924,
          -3.5160993671937972,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.248157250470427,
          -2.9246238275174004,
          -7,
          -7,
          -7,
          -2.0432502611543164,
          -7,
          -3.0839842431054527,
          -7,
          -4.117610973351813,
          -7,
          -3.2362852774480286,
          -7,
          -3.7344797894255772,
          -2.8600716907681347,
          -2.486108325822895,
          -3.1923583395461788,
          -3.9002032130168933,
          -2.3339508043872472,
          -2.708845638048179,
          -3.204662511748219,
          -2.1569409049604555,
          -2.0153370951873573,
          -2.0724752248302725,
          -7,
          -3.2440295890300215,
          -2.6956567599361905,
          -3.2357808703275603,
          -7,
          -7,
          -3.2065560440990297,
          -3.023572516643862,
          -7,
          -7,
          -3.4211101297934343,
          -3.904674184959942,
          -2.2518616038128814,
          -3.215901813204032,
          -4.308585754289083,
          -7,
          -7,
          -3.690196080028514,
          -7,
          -4.002813779224673,
          -3.6264430253312945,
          -3.376455288899979,
          -2.6924062348336304,
          -2.941511432634403,
          -7,
          -4.397679353778606,
          -3.2275782202995997,
          -7,
          -7,
          -7,
          -3.3501187447859833,
          -3.4127124827451016,
          -7,
          -3.000434077479319,
          -3.255393125707304,
          -7,
          -7,
          -7,
          -2.1308452620130898,
          -7,
          -3.362105319293773,
          -3.1126050015345745,
          -7,
          -4.164216001716105,
          -3.174247988032499,
          -4.135480179269442,
          -7,
          -2.6267025813092193,
          -3.9814602868654,
          -3.8446635282402393,
          -7,
          -3.3459615418131414,
          -7,
          -2.8041394323353503,
          -3.152532948434526,
          -7,
          -7,
          -7,
          -7,
          -3.5467893516312583,
          -2.3934498476670707,
          -7,
          -3.020568434801363,
          -3.036309443724438,
          -7,
          -3.101363672652795,
          -7,
          -7,
          -4.305351369446623,
          -4.779365575669822,
          -7,
          -7,
          -7,
          -3.9143255240175927,
          -7,
          -4.300780204515047,
          -3.8446352981531975,
          -7,
          -7,
          -7,
          -4.25009456618883,
          -5.002183346765043,
          -4.29169067749809,
          -7,
          -4.682911863319907,
          -4.927842388843768,
          -7,
          -4.333366655509717,
          -7,
          -5.38977190127149,
          -7,
          -4.544811911757776,
          -4.138271111964449,
          -7,
          -4.3667777196075805,
          -7,
          -7,
          -3.9364706555715805,
          -4.188056208438369,
          -4.209264731625127,
          -4.042811691807148,
          -7,
          -7,
          -4.118231648327027,
          -3.9320676922007216,
          -4.4679926595211485,
          -7,
          -3.510472828012453,
          -3.3428173146357327,
          -3.980575989779568,
          -3.04379216985318,
          -3.094221491063981,
          -3.743901550485179,
          -7,
          -3.2132520521963968,
          -3.4669053026275845,
          -2.2828162543573365,
          -3.616265405281708,
          -4.457048826585631,
          -3.475872616012005,
          -3.309062090847971,
          -3.118430077122089,
          -3.0209287974587418,
          -3.1048284036536553,
          -7,
          -3.8596785766284483,
          -4.09029333131011,
          -3.752662943120972,
          -3.344588742578714,
          -2.8487607596866726,
          -3.451661114468938,
          -5.008323327254799,
          -7,
          -3.2931414834509307,
          -7,
          -2.6775496264220617,
          -7,
          -5.407113751472994,
          -3.8112397727532894,
          -3.942528893958499,
          -7,
          -3.3879037141941413,
          -2.879018344912913,
          -3.643685271947555,
          -7,
          -3.198432135130042,
          -3.3919343639822452,
          -3.6248572269753003,
          -3.3872391936833566,
          -2.470872305442661,
          -3.023512115776103,
          -2.884171593021045,
          -3.1884597362982907,
          -3.585884509233432,
          -7,
          -7,
          -3.4423961423406735,
          -7,
          -7,
          -3.1772478362556233,
          -7,
          -7,
          -7,
          -2.043021327727601,
          -1.8523444248884782,
          -1.9323482720593461,
          -7,
          -2.988112840268352,
          -2.737249454070101,
          -3.2364112877439664,
          -2.132376137978425,
          -2.323252100171687,
          -2.353378922399407,
          -3.192846115188842,
          -2.6688448027085734,
          -1.9368429437934995,
          -2.9960736544852753,
          -7,
          -3.0113287324559876,
          -3.1911714557285586,
          -2.090767351466499,
          -7,
          -7,
          -1.991732246474622,
          -7,
          -2.8405242885014963,
          -3.450864692379766,
          -1.6382812116898668,
          -7,
          -2.6359088626932117,
          -7,
          -7,
          -3.829207252221248,
          -2.5746412931863643,
          -3.49373680227684,
          -7,
          -7,
          -1.7526303780711907,
          -7,
          -1.858014813118205,
          -7,
          -1.5936667387290353,
          -1.7719023011066422,
          -7,
          -7,
          -2.6881654767644583,
          -1.8345753455433524,
          -2.9858005756496806,
          -2.9804578922761,
          -2.961104552884867,
          -2.1577966360127188,
          -3.0002170929722305,
          -1.7038382993699157,
          -2.043837786748507,
          -3.7447882918684714,
          -7,
          -1.8409420802430991,
          -1.5324438971546441,
          -7,
          -2.9713628381188473,
          -7,
          -7,
          -3.647676313240871,
          -1.931260059489091,
          -2.3454227452289564,
          -1.4882899572720143,
          -2.9145194487727255,
          -2.1122697684172707,
          -7,
          -7,
          -2.3761205256094518,
          -2.760924848409133,
          -7,
          -1.8655833439845002,
          -1.8460701601334177,
          -3.096736260462469,
          -2.8627275283179747,
          -1.7055765671716585,
          -2.222284502229978,
          -2.408324780170415,
          -2.674467460866252,
          -2.4980429599586,
          -2.9908935802199035,
          -3.2074323856093794,
          -2.3397223955516253,
          -2.2675069615203176,
          -3.271066772286538,
          -3.0979510709941502,
          -7,
          -7,
          -7,
          -4.378579576115775,
          -7,
          -1.7644667275713992,
          -3.1077750894177876,
          -2.868994403748707,
          -2.5903680640032447,
          -3.412152427883938,
          -3.1602764026089654,
          -3.446459496594692,
          -1.745240448962118,
          -7,
          -1.843344600561001,
          -7,
          -1.5238144501376383,
          -2.0819262315953124,
          -7,
          -2.693140460675295,
          -7,
          -1.8866851708806343,
          -2.422501842403204,
          -2.0149403497929366,
          -7,
          -7,
          -3.1696744340588068,
          -7,
          -7,
          -7,
          -3.0875448095324267,
          -7,
          -2.574176008432909,
          -2.366189402779955,
          -7,
          -3.2219355998280053,
          -7,
          -2.6182573448404014,
          -7,
          -2.3045918918728865,
          -2.821513528404773,
          -2.7416557497979346,
          -3.531159465404532,
          -7,
          -1.974226499472477,
          -2.8698182079793284,
          -3.043853283705882,
          -2.8045937153076332,
          -7,
          -3.0342673970380254,
          -2.2327844143207414,
          -2.157284034918504,
          -3.162962476653458,
          -7,
          -2.7724439571056845,
          -7,
          -7,
          -2.73453314583352,
          -3.1832698436828046,
          -2.8959747323590643,
          -2.7224693858840308,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0644579892269186,
          -2.396780343144799,
          -2.8135809885681917,
          -7,
          -7,
          -4.164669131964212,
          -2.64132153910541,
          -7,
          -7,
          -3.033396946358147,
          -3.2713768718940743,
          -7,
          -3.1758016328482794,
          -7,
          -7,
          -7,
          -3.3946656621210396,
          -3.6148445071937103,
          -2.9585638832219674,
          -3.7134905430939424,
          -3.2065048501589817,
          -2.9291633832050645,
          -3.1089031276673134,
          -7,
          -3.115943176939055,
          -2.324053698651949,
          -7,
          -3.754965460970997,
          -2.5296869537729165,
          -7,
          -7,
          -3.1370374547895126,
          -3.1029479680053735,
          -7,
          -2.707813410202252,
          -7,
          -3.4490153163477864,
          -7,
          -3.680469929748303,
          -3.061829307294699,
          -7,
          -3.428944290035574,
          -2.4790471757557007,
          -2.6896639650157703,
          -7,
          -7,
          -3.269512944217916,
          -2.568670978009897,
          -3.359076226059263,
          -2.7082391243246837,
          -7,
          -2.4983105537896004,
          -3.8294967497201826,
          -7,
          -7,
          -3.0399426187629923,
          -7,
          -7,
          -7,
          -7,
          -2.70472233322511,
          -2.846955325019824,
          -3.179521555186347,
          -7,
          -3.0195316845312554,
          -2.3677858446531794,
          -7,
          -3.773640193260026,
          -2.9042646112937147,
          -7,
          -2.425697213362591,
          -3.313825053809394,
          -7,
          -3.1458177144918276,
          -7,
          -7,
          -2.167918737160758,
          -3.1122697684172707,
          -7,
          -7,
          -7,
          -7,
          -3.5618166643189575,
          -3.605412798153051,
          -7,
          -7,
          -3.043464350877091,
          -2.6960285780634194,
          -2.784656909005254,
          -7,
          -7,
          -3.2016701796465816,
          -7,
          -2.689012715585447,
          -2.6383894076653363,
          -7,
          -2.3104389933890426,
          -3.2016701796465816,
          -7,
          -7,
          -2.6734158998636306,
          -7,
          -2.98781517440207,
          -3.3047058982127653,
          -2.447978401055593,
          -3.1318680643619947,
          -7,
          -7,
          -7,
          -2.390272567719502,
          -3.549020787680313,
          -7,
          -7,
          -3.4302363534115106,
          -3.1283992687178066,
          -3.3818367999983434,
          -7,
          -3.1880280413350803,
          -3.8041470076134645,
          -3.161368002234975,
          -7,
          -7,
          -4.21809328354526,
          -2.9647309210536292,
          -3.0434932671585737,
          -3.660106221723244,
          -3.0362295440862943,
          -7,
          -2.125728950919596,
          -3.544564097496043,
          -7,
          -7,
          -4.076695045579167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6867528114559094,
          -7,
          -2.9387845299228235,
          -3.7293268096468606,
          -3.188084373714938,
          -3.2092468487533736,
          -7,
          -7,
          -7,
          -7,
          -3.859378504425601,
          -7,
          -7,
          -3.1931245983544616,
          -3.3719663222631246,
          -7,
          -7,
          -7,
          -2.8284450587956416,
          -3.041787318971752,
          -7,
          -7,
          -7,
          -2.8606374167737547,
          -7,
          -3.207526655463334,
          -7,
          -2.846955325019824,
          -3.8848596333686762,
          -7,
          -7,
          -7,
          -3.203032887014711,
          -3.104145550554008,
          -7,
          -7,
          -3.2502735862322463,
          -7,
          -3.8151348166368138,
          -7,
          -2.983325529161058,
          -3.371862186930359,
          -7,
          -7,
          -2.6853435772341014,
          -7,
          -3.159115821827769,
          -7,
          -2.529467020708508,
          -2.9731278535996988,
          -2.7297720531082863,
          -3.2038484637462346,
          -7,
          -3.109662900499272,
          -7,
          -3.3738311450738303,
          -2.61874519875888,
          -2.586781246747011,
          -7,
          -3.315025199312605,
          -7,
          -7,
          -7,
          -3.0330214446829107,
          -7,
          -7,
          -2.4784943476608086,
          -2.357934847000454,
          -7,
          -3.1677602664356295,
          -7,
          -3.1846346565862738,
          -7,
          -7,
          -7,
          -3.0153597554092144,
          -7,
          -3.131297796597623,
          -7,
          -7,
          -3.637739827119136,
          -2.556704439233648,
          -7,
          -4.15705529761581,
          -7,
          -2.8135809885681917,
          -2.373218599863817,
          -7,
          -7,
          -7,
          -3.424881636631067,
          -3.346548558548474,
          -3.341038631677523,
          -2.957607287060095,
          -7,
          -7,
          -2.780317312140151,
          -7,
          -7,
          -3.055187138555754,
          -3.903701516648935,
          -2.9740509027928774,
          -2.6906390117159673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.426267207139606,
          -7,
          -2.7023642471251033,
          -3.8492965408347266,
          -3.36285930295868,
          -7,
          -7,
          -2.3830927975696685,
          -7,
          -2.876807514113195,
          -3.200303182981585,
          -4.016406500871118,
          -7,
          -7,
          -7,
          -3.4122084658816805,
          -3.1773200201636933,
          -2.463440504592086,
          -2.5792499247558665,
          -3.570017265641518,
          -2.0126263509540503,
          -2.3384564936046046,
          -7,
          -2.9903388547876015,
          -2.574031267727719,
          -2.7268629897004635,
          -7,
          -7,
          -2.99409708958821,
          -7,
          -7,
          -7,
          -2.9545640899663494,
          -3.2550794424275757,
          -3.2778383330020473,
          -7,
          -7,
          -4.179293205577373,
          -1.844187849680195,
          -3.05307844348342,
          -3.4521151559753847,
          -7,
          -7,
          -2.1895304166110634,
          -3.3820170425748683,
          -7,
          -3.570192561095726,
          -3.2189291850880872,
          -2.911512714632127,
          -3.5870371177434555,
          -2.6705550695214364,
          -4.624606277253296,
          -3.598571663482141,
          -7,
          -7,
          -7,
          -3.0141003215196207,
          -3.190984983213069,
          -7,
          -7,
          -2.4872798164430687,
          -2.6074550232146687,
          -3.4176377396522297,
          -2.819872821950546,
          -1.6213576534552254,
          -7,
          -2.5514499979728753,
          -3.368658712392227,
          -7,
          -4.081953072849033,
          -3.0338780932956375,
          -4.194312526129325,
          -7,
          -3.5258866515209393,
          -4.020738225867342,
          -2.6335357828383685,
          -7,
          -2.929929560084588,
          -7,
          -3.597366050266028,
          -2.973523686361632,
          -2.8064061101420315,
          -2.940682467920219,
          -2.403549454032318,
          -7,
          -3.176958980586908,
          -2.788168371141168,
          -7,
          -3.2000292665537704,
          -3.69284691927723,
          -7,
          -3.2086160065968223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.716929407273744,
          -4.382359297519319,
          -7,
          -4.596212107141384,
          -4.28113567588559,
          -7,
          -7,
          -7,
          -7,
          -4.999956568380193,
          -7,
          -7,
          -7,
          -4.925198603055123,
          -7,
          -7,
          -7,
          -7,
          -4.285602311285613,
          -4.061226225119115,
          -3.3432444303235798,
          -7,
          -7,
          -7,
          -7,
          -4.1758450890945245,
          -7,
          -4.079687627611336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5963496422097987,
          -4.318282514840762,
          -3.227372442289636,
          -7,
          -3.837402739134079,
          -3.612359947967774,
          -3.400451639956946,
          -3.7365956742507382,
          -7,
          -3.856429290988121,
          -3.059437187851868,
          -3.080987046910887,
          -7,
          -3.8858180821280595,
          -2.9598870060542675,
          -7,
          -3.7460578706127543,
          -3.007503929323978,
          -7,
          -3.5265331155907425,
          -4.382197210377454,
          -7,
          -7,
          -3.7895983373945126,
          -4.057230661599434,
          -5.706861954410581,
          -7,
          -3.2534995431676204,
          -7,
          -3.781717088051875,
          -7,
          -4.929110552332653,
          -7,
          -7,
          -7,
          -7,
          -3.9631264410819047,
          -4.309211282891381,
          -7,
          -7,
          -7,
          -4.201997619583105,
          -3.795337679341311,
          -7,
          -3.2212961066711223,
          -3.78216674257991,
          -7,
          -3.986721118781962,
          -7,
          -7,
          -4.312325482315131,
          -4.005309236848516,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5601983327861335,
          -2.004002742453674,
          -2.10483958902677,
          -7,
          -7,
          -3.205610309902521,
          -7,
          -2.494502447046173,
          -2.594760752586463,
          -2.9383052411083064,
          -7,
          -3.295133963911634,
          -2.515590022016421,
          -3.167317334748176,
          -7,
          -7,
          -7,
          -2.7077404542737713,
          -7,
          -7,
          -3.511214701136388,
          -7,
          -3.1953460583484197,
          -1.9061810639690855,
          -2.0596666697498907,
          -7,
          -3.731467887193129,
          -7,
          -7,
          -7,
          -3.5397484973580404,
          -4.09241182801244,
          -7,
          -7,
          -1.8561146882139077,
          -7,
          -1.8304184418497222,
          -7,
          -2.3694220261687753,
          -2.021696949018919,
          -7,
          -7,
          -7,
          -2.413299764081252,
          -3.024895960107485,
          -3.146128035678238,
          -3.348888723071438,
          -2.41137916622742,
          -7,
          -2.139323367218689,
          -1.8465476663945941,
          -7,
          -7,
          -2.1465709673656916,
          -2.09330492363931,
          -7,
          -3.5589784210949995,
          -7,
          -7,
          -7,
          -2.4168068718229443,
          -2.5328738841522354,
          -2.6829183011749445,
          -2.9460590603851236,
          -7,
          -7,
          -7,
          -2.4452927694259716,
          -7,
          -7,
          -2.5761767511960896,
          -1.8950974022929163,
          -7,
          -2.975891136401793,
          -1.7246115691474593,
          -2.0908150144050226,
          -2.1165128680770238,
          -3.448087666692341,
          -2.701715371253416,
          -2.8326366275967034,
          -3.171360731962648,
          -2.803229438326343,
          -2.6700911622507957,
          -3.4055171069763763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5281450782531065,
          -2.212453961040276,
          -3.523095838252568,
          -2.9327400435462407,
          -7,
          -3.698709349442587,
          -3.707338977449808,
          -3.1032048709894418,
          -2.367222763127719,
          -7,
          -1.9690662857563495,
          -7,
          -2.127734536719233,
          -2.199772312903496,
          -7,
          -2.9867717342662448,
          -1.8866851708806343,
          -7,
          -2.9715335443974213,
          -2.4216039268698313,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3574266029612865,
          -7,
          -2.7950105586314464,
          -2.5292378052696605,
          -7,
          -7,
          -7,
          -2.3474694133222886,
          -7,
          -7,
          -3.3312247810207323,
          -3.4254363954090103,
          -3.798167059715939,
          -7,
          -7,
          -2.6848453616444123,
          -7,
          -7,
          -7,
          -3.50500066392687,
          -2.7146091386431936,
          -2.8810992183890174,
          -7,
          -7,
          -3.0064660422492318,
          -7,
          -3.0511525224473814,
          -3.4396484295634737,
          -7,
          -3.2221092481637466,
          -2.7257074985747667,
          -7,
          -7,
          -3.9176805224430487,
          -4.389874558390986,
          -7,
          -3.912947931581974,
          -4.0920360389444586,
          -3.3702775172275845,
          -2.837451932032312,
          -3.9160326101885694,
          -7,
          -2.6465741881944087,
          -7,
          -7,
          -4.393083602089456,
          -2.8582308632790943,
          -2.4448360285808475,
          -3.148979483013599,
          -4.3990157256487645,
          -7,
          -7,
          -4.089551882886454,
          -1.9283455066819617,
          -3.548020694905531,
          -4.388669463976623,
          -2.766731439484117,
          -2.4342353567673647,
          -4.402502112664219,
          -7,
          -3.912363785988484,
          -3.241363826010479,
          -3.8039860045173377,
          -4.095483185829541,
          -2.8030999214991477,
          -3.255926900338438,
          -3.7895807121644256,
          -7,
          -4.09572712255598,
          -3.054179909539224,
          -3.7919186113238093,
          -3.17790506896417,
          -3.7880445724974723,
          -3.72209071485586,
          -4.094907649416061,
          -2.859604649512901,
          -4.392978186542541,
          -3.4430890609518037,
          -3.4187982905903533,
          -3.802346059593307,
          -1.9987107152217967,
          -4.395413767475018,
          -4.10124858623158,
          -4.134862127351672,
          -3.200594030012974,
          -3.2658786595628224,
          -2.0908341738705243,
          -3.127736334664101,
          -2.2928847904644725,
          -3.1588792018312803,
          -7,
          -4.400382548045428,
          -3.282492636993701,
          -3.79894398857152,
          -4.101420543187383,
          -3.925501173028865,
          -7,
          -3.700340211110526,
          -2.3259101824596113,
          -1.9209689244466794,
          -3.79039073332807,
          -7,
          -2.514088407416947,
          -7,
          -3.4695716724419987,
          -2.6449921835286525,
          -4.391975460609762,
          -3.7287594751678745,
          -2.9176989407505602,
          -7,
          -3.0051970177572516,
          -7,
          -7,
          -1.8462862609521928,
          -3.572257382889322,
          -3.492166493894078,
          -4.088118362033397,
          -3.1276392349882074,
          -3.922465945298413,
          -3.3930005495543805,
          -3.0250536617257993,
          -3.568369372971568,
          -4.4114345021650045,
          -2.222872748808266,
          -3.0970363348477785,
          -2.5968876654475994,
          -3.913919764951466,
          -7,
          -4.126212606567055,
          -3.333413685070855,
          -3.0608784167694707,
          -3.1667571956139016,
          -7,
          -2.9184406291931984,
          -4.099542528695332,
          -7,
          -7,
          -2.4320040756867116,
          -4.390617214336786,
          -3.644668314139634,
          -3.3661681643281374,
          -2.5156582441630277,
          -2.14472570968999,
          -7,
          -4.394434168598875,
          -3.2282976764748628,
          -3.7081488497104047,
          -2.2449861731746967,
          -3.1709171502194033,
          -4.389431897582197,
          -3.5159069441638047,
          -3.4863989899853727,
          -3.197265238826092,
          -7,
          -2.9466420375666296,
          -2.3899405804127625,
          -3.796001602777842,
          -3.3773482883807557,
          -3.620621804225215,
          -3.1907074866648917,
          -3.927797944526652,
          -3.2829294634880095,
          -3.6709412807357755,
          -4.3918169236132485,
          -4.09841873415025,
          -1.4547709833513456,
          -2.8630816077402663,
          -7,
          -7,
          -2.692020268786095,
          -7,
          -4.388562971398075,
          -7,
          -3.789809784381399,
          -4.389679843219249,
          -2.437926640050411,
          -2.674949986825319,
          -2.8043893467729935,
          -2.8472866865744257,
          -7,
          -3.7223047868743278,
          -4.390352125833223,
          -4.092738184494764,
          -3.6277924301285536,
          -3.850829959848531,
          -2.9312176596502852,
          -7,
          -4.394696777891884,
          -3.621747346264817,
          -2.7232707289332865,
          -7,
          -7,
          -4.415056858110851,
          -3.5047086738488433,
          -4.090998297753198,
          -3.4538108048586555,
          -3.296850746548013,
          -3.6464037262230695,
          -3.5774753862813395,
          -4.112923233491434,
          -2.8086380688088775,
          -3.2649021111188556,
          -3.7952715790631664,
          -2.483657679695685,
          -3.441328487681495,
          -7,
          -7,
          -3.798529799485261,
          -7,
          -4.393926006585837,
          -7,
          -2.769645823445991,
          -4.394994209918511,
          -3.129377671109127,
          -7,
          -2.9224881953209727,
          -2.1151526142609294,
          -3.4472441923348445,
          -2.7426345053908503,
          -2.6449541282216202,
          -3.6298341709244926,
          -3.2458744291694313,
          -4.10907208097888,
          -3.112370365525832,
          -3.706495885648506,
          -3.631883252821722,
          -3.8506156068476467,
          -4.3968790352215565,
          -3.856003453997221,
          -7,
          -3.2880255353883627,
          -3.1851086606334373,
          -3.5840766803638173,
          -7,
          -2.1943737331623745,
          -7,
          -2.7486413997448866,
          -3.6197018907049654,
          -2.932220013877119,
          -3.31530545711496,
          -3.7952019889525492,
          -2.5661722381854584,
          -3.057847945044547,
          -7,
          -2.8539940191313975,
          -2.5407495746008397,
          -2.523382794642113,
          -7,
          -4.389555888095237,
          -3.2483761775934874,
          -3.6918061854702637,
          -7,
          -4.095413464448447,
          -7,
          -3.9208534961212593,
          -2.8445582083948397,
          -2.6444698516678162,
          -2.609687187367402,
          -2.5142252978510746,
          -4.388740444524611,
          -3.5503157274607613,
          -3.552459621256164,
          -3.5017950212228697,
          -7,
          -4.391975460609762,
          -3.8165230027390296,
          -3.411047002456093,
          -4.109814695694399,
          -7,
          -7,
          -4.392010683195499,
          -7,
          -7,
          -7,
          -3.5088998897969157,
          -2.1630660097373533,
          -7,
          -4.3899807298820175,
          -7,
          -4.393662930667503,
          -3.3204924754334133,
          -3.553588313493936,
          -7,
          -3.797994219946912,
          -3.0985383930592922,
          -3.4597442042559603,
          -3.1775364999298623,
          -2.7286954435449196,
          -3.5674800954170154,
          -7,
          -7,
          -1.4750142282715528,
          -3.018550716122285,
          -1.9996202059382764,
          -3.9233303852372834,
          -2.5595770555682282,
          -4.101179784380764,
          -4.092896010921856,
          -4.0936492798811175,
          -2.478166954695277,
          -3.108712057787089,
          -2.142299301357695,
          -2.6385935525920776,
          -3.4910533754308664,
          -2.9611837098124356,
          -3.399379478152629,
          -4.090769309154487,
          -3.3273419028962246,
          -2.9525664413757333,
          -3.0289614544096257,
          -7,
          -3.7923391506976287,
          -3.3654539479394416,
          -4.393926006585837,
          -3.109629161027386,
          -7,
          -2.913267330378869,
          -2.812498908830492,
          -3.6275194713376826,
          -3.524996189261706,
          -3.205068964264459,
          -2.2379910476057443,
          -2.8493238489418755,
          -4.392573856408141,
          -2.6019192249352625,
          -3.349613033193485,
          -4.4012454079054875,
          -2.7728364862556436,
          -3.1351661410808247,
          -2.4919428312363485,
          -2.7099096642611826,
          -3.303383275046943,
          -3.373480429443243,
          -3.0394775730947807,
          -2.915152406858784,
          -2.9456071083058015,
          -2.6270750853803926,
          -4.3896090160519865,
          -7,
          -7,
          -3.394291125637746,
          -2.7960498415335424,
          -3.6967407046991165,
          -7,
          -2.9935178724720797,
          -3.916944993889482,
          -3.303611372056618,
          -3.918764031027999,
          -3.20784373080153,
          -7,
          -3.324436797945258,
          -2.8934689290303233,
          -3.445275460995549,
          -3.3800121444441236,
          -2.87143820792516,
          -2.963286852631787,
          -4.399950474386311,
          -2.609796239029571,
          -2.6520392665715007,
          -2.6835698996941697,
          -7,
          -3.40224418233262,
          -3.9159096427947526,
          -3.040950269144804,
          -2.8249642405126534,
          -3.3531909881987607,
          -3.8158764720425014,
          -7,
          -7,
          -2.9610936335556257,
          -3.917137752756444,
          -7,
          -3.7013952690139202,
          -3.30821366567681,
          -4.094348824158173,
          -2.1426920071504876,
          -3.9116369331294423,
          -7,
          -2.2411935559760434,
          -2.8856700339963552,
          -4.028479748429411,
          -3.2205695307771833,
          -3.556497774483958,
          -2.7035291823183036,
          -2.7910435886018217,
          -3.0828267823103697,
          -2.0060432699385977,
          -2.9013934461316766,
          -2.6327997957371,
          -3.182591726772166,
          -3.142190307192792,
          -3.151729033249805,
          -1.8492098198301976,
          -3.4527445088929927,
          -3.2501515351166117,
          -2.0056139668441095,
          -3.063971006964762,
          -2.718228062128552,
          -4.444372736248287,
          -3.530888353795369,
          -3.051568839187227,
          -2.42052842803183,
          -2.874493650852932,
          -3.276921132065774,
          -3.4443009228773778,
          -3.252665509389223,
          -3.3780177889279908,
          -2.1028331240006084,
          -2.8763989853208183,
          -3.2748321112406487,
          -3.3987980983714206,
          -3.342652927457154,
          -3.2103352437217962,
          -3.780173243642594,
          -4.198643343240695,
          -3.002689293174031,
          -2.8950024143828985,
          -2.39909658587198,
          -3.4989477407243084,
          -2.752029999520418,
          -2.3368591970429793,
          -2.249025531378285,
          -3.0576052527843403,
          -2.9747131347031917,
          -3.818110374400107,
          -2.505047454180356,
          -2.4407155720669604,
          -2.7894525071503864,
          -2.1046236604353257,
          -2.653709857986787,
          -2.510223434172348,
          -3.932372282147914,
          -2.3513910114435865,
          -3.231342137903896,
          -4.09083978004538,
          -3.526798605282374,
          -2.320045134490263,
          -2.3235805527428437,
          -3.5571289415150695,
          -2.2901028574074784,
          -2.4180374701498426,
          -3.422986516221185,
          -3.695026128922327,
          -3.029428873420872,
          -3.7934411329776636,
          -1.89528078671618,
          -3.436509596914933,
          -3.4357319757793103,
          -2.5122840632818537,
          -2.392556699913734,
          -4.390440506647526,
          -2.7490886413527207,
          -2.433620111870197,
          -2.181096235879441,
          -2.7937903846908188,
          -2.0975214186846465,
          -3.020389861233702,
          -1.9689475312906737,
          -2.703514281036142,
          -4.4002097701620615,
          -1.9616750071319988,
          -1.9083761390330394,
          -3.7431176252147416,
          -2.385114864768354,
          -3.6177165808503444,
          -2.302600682663212,
          -2.2051077514026,
          -2.6574243844044845,
          -3.0695976288793294,
          -7,
          -7,
          -3.4881627803586124,
          -3.261277741636518,
          -1.2657706323852562,
          -2.2826021227981115,
          -1.295472883356695,
          -2.9608405922118757,
          -2.273212556174888,
          -1.0178926649257336,
          -2.0837025712527235,
          -2.650893423614602,
          -3.137652964068974,
          -1.3581579462144981,
          -2.3004244091989325,
          -1.2168557349039093,
          -1.6214444276157096,
          -2.3338413910185927,
          -2.660682445518988,
          -2.1390210173169324,
          -1.8009534980203061,
          -2.1005705354955055,
          -3.101145379367524,
          -2.5692166356836568,
          -2.0570960247337777,
          -3.2837881449671475,
          -2.218937929477692,
          -2.571708831808688,
          -2.0612945649523997,
          -3.689628467489746,
          -1.2212825246575263,
          -3.186320523991601,
          -3.1131866342143066,
          -2.0472192207082234,
          -1.4557226282155344,
          -1.5949442024881448,
          -3.912080280808671,
          -2.0593987627272057,
          -1.7356264276341637,
          -2.6847418143802058,
          -2.014431933015437,
          -4.388509715314879,
          -2.322834152526903,
          -1.2099718795968286,
          -3.4869615094670436,
          -2.1775899351168753,
          -1.7044780107893729,
          -2.1285333149993586,
          -2.0175856816804645,
          -2.187608839834818,
          -1.460834848706078,
          -2.2567281259887664,
          -1.9482924534631156,
          -2.093149570816301,
          -1.8544581971920788,
          -1.8881200547559909,
          -3.390281408229663,
          -1.9177558908826795,
          -2.011818266177299,
          -3.160568564398739,
          -1.6661515214372502,
          -3.6189541113654435,
          -3.136931851267557,
          -2.008752704189001,
          -2.2801295979122562,
          -1.2625900233526535,
          -1.9039828148855922,
          -1.7600533559612246,
          -2.7646345803270043,
          -3.0359341352045495,
          -2.7755404355153734,
          -3.250750999543319,
          -1.4827285394930332,
          -2.694885864251942,
          -1.9449064485366196,
          -1.6253034758644873,
          -1.8512933005908019,
          -3.5440148621780065,
          -1.6253274745535427,
          -1.4534478436425606,
          -1.9669130564385204,
          -2.3643102026822547,
          -1.5258510550714373,
          -1.9425765714778218,
          -2.066318439655697,
          -1.7035306905732894,
          -1.0848064277366656,
          -2.014307391119922,
          -1.9768742733499245,
          -1.7360776370039457,
          -3.7884865485608397,
          -3.347507423196012,
          -2.222519981089832,
          -2.5471104854035294,
          -2.469284769398786,
          -2.2149746005646884,
          -1.337860722048636,
          -2.2640471138775404,
          -1.6528950083522316,
          -1.5880155126080546,
          -1.7889612255173273,
          -1.9601667654364898,
          -3.118369165644749,
          -2.32916049510703,
          -4.088242433511572,
          -1.856956321022818,
          -1.7079320554082063,
          -2.356920794010944,
          -4.088685256807787,
          -2.422501842403204,
          -2.9715335443974213,
          -7,
          -2.726969851013355,
          -3.5502633049268204,
          -3.787672964687493,
          -2.6093987370065896,
          -2.231341246495776,
          -2.3535208688836247,
          -2.0404627180322072,
          -2.138157788427899,
          -2.5761041141490666,
          -2.70680142436115,
          -3.0534276951965746,
          -2.1942683822178575,
          -3.0119579077781298,
          -2.721740474382757,
          -3.2858860643833867,
          -2.4860542124935545,
          -2.10490328559909,
          -2.2088485647553826,
          -1.6283827667413842,
          -2.337400529194833,
          -2.910853000989875,
          -2.46166601136025,
          -3.5444401373176926,
          -2.1879371259474465,
          -2.7726709022727314,
          -3.43428495862892,
          -1.740338392619813,
          -2.951961654685714,
          -2.9671664837366802,
          -1.6367282157789547,
          -2.490105540033013,
          -2.458309335786155,
          -3.186850431506691,
          -3.069562390574965,
          -2.219123803572551,
          -3.4871383754771865,
          -2.2993138989499227,
          -2.588118849042228,
          -3.9249164729965895,
          -3.911459467254995,
          -7,
          -2.295017011881458,
          -2.8943160626844384,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.029456830425565,
          -7,
          -7,
          -7,
          -4.205339721431523,
          -7,
          -7,
          -7,
          -2.8796692056320534,
          -2.9694159123539814,
          -7,
          -3.646540953360931,
          -3.002436061443105,
          -7,
          -3.6979264448065052,
          -3.8240025694369812,
          -7,
          -7,
          -7,
          -3.385963570600697,
          -7,
          -7,
          -2.8937558614379575,
          -2.4802944600030066,
          -7,
          -2.961421094066448,
          -7,
          -2.0865471476851583,
          -2.7126497016272113,
          -3.2304489213782737,
          -7,
          -7,
          -7,
          -4.841437686480623,
          -7,
          -7,
          -7,
          -3.2137832993353044,
          -2.392789484309745,
          -2.74350976472843,
          -7,
          -7,
          -7,
          -7,
          -3.5677052562909872,
          -7,
          -3.4456560872091355,
          -7,
          -7,
          -7,
          -7,
          -3.1577588860468637,
          -7,
          -7,
          -7,
          -7,
          -2.76063785386249,
          -4.155001836231253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.459675139563483,
          -2.9609461957338317,
          -7,
          -4.825526727405714,
          -7,
          -3.417969642214737,
          -7,
          -7,
          -2.992277301781418,
          -7,
          -3.0472748673841794,
          -7,
          -3.494988973683168,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7540321847750318,
          -3.1027766148834415,
          -3.7329162073263795,
          -7,
          -7,
          -3.4774106879072515,
          -7,
          -3.13956426617585,
          -3.6216954623292787,
          -7,
          -4.160438516641545,
          -7,
          -7,
          -7,
          -3.387033701282363,
          -7,
          -7,
          -3.263636068588108,
          -3.6645479622465467,
          -3.5391836728713275,
          -7,
          -7,
          -7,
          -7,
          -4.391129260417903,
          -7,
          -7,
          -3.399846712712922,
          -7,
          -7,
          -7,
          -3.484185911097994,
          -4.279978563206881,
          -7,
          -3.3844131561393755,
          -2.8165726960261033,
          -4.694451633333337,
          -2.919601023784111,
          -3.1953460583484197,
          -7,
          -7,
          -7,
          -2.556690090692079,
          -7,
          -7,
          -7,
          -4.374436714981712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5493592897669206,
          -2.5783335302215775,
          -3.863709388627451,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.591719884720196,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.269512944217916,
          -3.0060379549973173,
          -3.45408227073109,
          -2.7352794480604565,
          -2.5614989072300403,
          -2.5142709732984847,
          -3.009450895798694,
          -7,
          -3.9756829679517423,
          -7,
          -7,
          -7,
          -2.6720978579357175,
          -3.037027879755775,
          -7,
          -7,
          -3.940665872475829,
          -7,
          -3.8110832420318603,
          -7,
          -7,
          -3.646386425606992,
          -7,
          -7,
          -3.321494866739587,
          -7,
          -2.8291428932285543,
          -3.2938043599193367,
          -2.864313269858478,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3658622154025553,
          -7,
          -7,
          -3.4848334799814933,
          -7,
          -3.4820155764507117,
          -7,
          -2.9947569445876283,
          -7,
          -7,
          -2.5361869649319937,
          -2.5054891384167237,
          -7,
          -3.4413808849165113,
          -7,
          -3.0948785616774006,
          -7,
          -7,
          -3.035029282202368,
          -7,
          -2.9818186071706636,
          -7,
          -7,
          -3.1007150865730817,
          -3.6285421834125686,
          -2.714958109720149,
          -4.142670977910689,
          -5.412231999684705,
          -2.8639173769578603,
          -2.0895126175293544,
          -7,
          -7,
          -2.9014583213961123,
          -7,
          -3.0927206446840994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.951823035315912,
          -3.3203540328176717,
          -3.6653637153823238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2349388877414125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.564209087043202,
          -7,
          -4.538410339987667,
          -2.8457180179666586,
          -3.935683567701656,
          -7,
          -7,
          -7,
          -7,
          -3.7664872062396944,
          -3.021602716028242,
          -2.8973914245675183,
          -7,
          -3.2821687783046416,
          -7,
          -7,
          -7,
          -3.028706779135174,
          -3.1796953833245065,
          -7,
          -7,
          -2.6500645611776816,
          -3.0107238653917734,
          -7,
          -7,
          -7,
          -3.4682488397706415,
          -7,
          -7,
          -7,
          -4.4340097093697395,
          -3.6100743221400546,
          -7,
          -4.293473048156108,
          -7,
          -7,
          -3.3224260524059526,
          -3.3479151865016914,
          -7,
          -7,
          -2.2130748253088512,
          -1.9667282209873844,
          -2.563955464995813,
          -7,
          -4.828616722682745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.651181062444688,
          -7,
          -2.814913181275074,
          -2.8604877374747018,
          -7,
          -7,
          -7,
          -3.4261044280965076,
          -2.285235728480749,
          -3.205745540942662,
          -3.351409751925439,
          -3.1341771075767664,
          -4.2569761776910955,
          -3.547880146528284,
          -4.645035428217922,
          -7,
          -3.1156105116742996,
          -4.11691061520064,
          -3.1966596938570437,
          -7,
          -7,
          -7,
          -7,
          -3.807264355276107,
          -3.74795530690673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1192558892779365,
          -3.1470576710283598,
          -3.1990234256365437,
          -3.0453229787866576,
          -3.361228515053669,
          -7,
          -7,
          -7,
          -4.473267942835296,
          -7,
          -7,
          -7,
          -4.379069719792747,
          -7,
          -4.5942046469788265,
          -4.280100110054924,
          -7,
          -7,
          -7,
          -4.721546826892598,
          -7,
          -4.584952815690992,
          -7,
          -4.676593024518754,
          -4.225247235225021,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.661282503857652,
          -7,
          -7,
          -4.17452497792015,
          -7,
          -4.680154141734373,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.015307351851757,
          -2.574031267727719,
          -7,
          -3.9210693316079035,
          -3.9037409406215384,
          -7,
          -7,
          -7,
          -4.391169593074347,
          -3.051709777448058,
          -3.234896745731588,
          -4.4463662736803595,
          -4.362157197594989,
          -3.4527242421699578,
          -7,
          -3.4006007781992125,
          -7,
          -7,
          -7,
          -4.378906400023262,
          -3.6956567599361905,
          -7,
          -4.038734934385949,
          -4.257917039669347,
          -5.405674988022053,
          -7,
          -2.714497408649806,
          -7,
          -3.232295921471446,
          -7,
          -5.1048949244222035,
          -4.088348752288528,
          -7,
          -7,
          -4.328501922685259,
          -7,
          -4.086039331268039,
          -7,
          -7,
          -3.826398782187618,
          -4.422874242967947,
          -4.014702506699758,
          -7,
          -3.025300928950266,
          -3.781295712526443,
          -7,
          -4.092841460124653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.916395453771481,
          -2.0261585937576614,
          -2.52760188458375,
          -7,
          -7,
          -3.306931652542162,
          -7,
          -1.728547016499123,
          -1.9929950984313414,
          -2.866951567327725,
          -7,
          -3.117568183066225,
          -2.226798122683141,
          -2.808210972924222,
          -3.089905111439398,
          -7,
          -3.080987046910887,
          -2.486784571399042,
          -7,
          -7,
          -2.7193312869837265,
          -7,
          -2.663386788318517,
          -2.850033257689769,
          -2.35674271207154,
          -7,
          -3.1215188091346144,
          -7,
          -2.976808337338066,
          -7,
          -3.3963493184894906,
          -4.313009027913279,
          -7,
          -2.161225353364616,
          -2.058731591462859,
          -7,
          -2.1227618173540255,
          -7,
          -1.9784087926230391,
          -2.2493557916402818,
          -7,
          -7,
          -7,
          -2.2755416884013093,
          -7,
          -7,
          -3.3119656603683665,
          -2.2087100199064014,
          -1.8495558985503493,
          -1.9334872878487053,
          -2.9992610711131005,
          -4.203495235193291,
          -7,
          -2.0149403497929366,
          -1.7556249739153658,
          -7,
          -3.678488028959253,
          -7,
          -7,
          -3.9133899436317554,
          -1.9010948950302153,
          -2.502013488424476,
          -1.9521695008164597,
          -3.326335860928751,
          -3.2860071220794747,
          -7,
          -7,
          -0.7659167939666319,
          -3.494432898726399,
          -7,
          -1.87614564468392,
          -2.5200903281128424,
          -7,
          -2.8830933585756897,
          -2.2790896121741575,
          -3.114610984232173,
          -2.6478717653062325,
          -1.2827901651204379,
          -3.1356626020000733,
          -3.2074997233073055,
          -2.8562000460323604,
          -2.457124626303409,
          -2.7212215815105543,
          -7,
          -3.2581581933407944,
          -7,
          -2.3185850100788254,
          -7,
          -7,
          -7,
          -2.6881230714056485,
          -7,
          -3.688229077040167,
          -7,
          -3.69340447840352,
          -3.319522449065454,
          -3.689930104018218,
          -2.124135493579742,
          -3.0948203803548,
          -2.1116405080098097,
          -7,
          -1.3228241617981338,
          -2.613401316227284,
          -7,
          -1.6755492229761288,
          -2.0149403497929366,
          -2.4216039268698313,
          -2.726969851013355,
          -7,
          -3.0488300865283504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.063896038125994,
          -2.1624897277365047,
          -7,
          -2.987219229908005,
          -3.0461047872460387,
          -2.234896745731588,
          -7,
          -2.8385342705118686,
          -2.814691432747457,
          -3.003957379757683,
          -3.3079949403022577,
          -7,
          -2.819872821950546,
          -2.8965262174895554,
          -7,
          -3.0867156639448825,
          -7,
          -3.2235232653918677,
          -3.1389339402569236,
          -2.8257505813480277,
          -3.2638726768652235,
          -7,
          -2.979700093301936,
          -2.6459132750338443,
          -7,
          -2.8068580295188172,
          -2.439332693830263,
          -3.2060158767633444,
          -2.812244696800369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.727698463777806,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.038818787373656,
          -7,
          -7,
          -7,
          -4.969910735382101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.901387240163748,
          -7,
          -7,
          -7,
          -7,
          -3.3142886609474975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.141556374124269,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.607744456402258,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4515868904569045,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.989004615698537,
          -7,
          -7,
          -4.994202733783717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.300921408469541,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.031408464251625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.542526668991491,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.151411224250535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.281692267160937,
          -7,
          -7,
          -5.353585433651377,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.076567630444938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.357382103296111,
          -3.555094448578319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1334111559110225,
          -5.713017349628834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2891973858841714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6869935662646784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.534711293390327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.132067481304007,
          -3.8953120244757873,
          -7,
          -4.286950215787549,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.527408186568847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.176358702092532,
          -7,
          -7,
          -5.018841912540566,
          -3.7784406835712327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8965813275057326,
          -4.295017011881458,
          -7,
          -7,
          -4.71295259213018,
          -3.7715507369849686,
          -7,
          -7,
          -4.40337793172286,
          -3.501013592678627,
          -3.601734148260105,
          -7,
          -7,
          -4.696849823367915,
          -2.8644654403162026,
          -7,
          -7,
          -3.136788119976591,
          -7,
          -4.312959735882106,
          -7,
          -7,
          -7,
          -4.231329390593782,
          -3.8047526021504607,
          -4.330738358178876,
          -7,
          -7,
          -7,
          -4.172391277829509,
          -4.1592663310934945,
          -4.677488326683328,
          -4.323973605350882,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1853154580036565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.140727962844183,
          -4.9628616042958145,
          -3.726428342031079,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9693933187382284,
          -7,
          -7,
          -7,
          -7,
          -4.955663702334214,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.432760907742915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.943741765831314,
          -4.478975107638949,
          -7,
          -5.347609045260355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.167317334748176,
          -7,
          -3.8672759317711667,
          -7,
          -7,
          -2.8363241157067516,
          -3.286456469746983,
          -7,
          -3.089551882886454,
          -7,
          -7,
          -3.748962861256161,
          -7,
          -3.5184308133618134,
          -7,
          -7,
          -1.1095739243160885,
          -3.8262368226549173,
          -2.6255182289716377,
          -3.1894903136993675,
          -3.095169351431755,
          -7,
          -7,
          -2.383815365980431,
          -2.3364597338485296,
          -7,
          -7,
          -7,
          -3.53571596998551,
          -7,
          -7,
          -3.751499055612203,
          -3.8640781064148335,
          -3.6417785481765814,
          -7,
          -1.6965505302126058,
          -7,
          -3.0884904701823963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7837249675153735,
          -7,
          -2.904715545278681,
          -7,
          -2.9434945159061026,
          -7,
          -2.0448880318480462,
          -7,
          -7,
          -3.1535099893008374,
          -7,
          -7,
          -7,
          -7,
          -3.8456560599835443,
          -2.663700925389648,
          -2.5224442335063197,
          -3.11887070567672,
          -7,
          -3.915931115801124,
          -7,
          -2.993766785745261,
          -7,
          -7,
          -7,
          -7,
          -2.59659709562646,
          -2.437750562820388,
          -7,
          -7,
          -3.1795517911651876,
          -7,
          -7,
          -7,
          -7,
          -3.0661394928706995,
          -7,
          -3.4674601095072637,
          -7,
          -7,
          -3.7322731057085923,
          -2.885078384149224,
          -2.4802944600030066,
          -7,
          -7,
          -7,
          -4.360233561157832,
          -3.1609184995397808,
          -7,
          -3.456366033129043,
          -4.529738255465954,
          -3.028977705208778,
          -3.31650950689414,
          -3.8476960207341655,
          -2.7587226985453177,
          -7,
          -0.6388219222193926,
          -7,
          -2.6720978579357175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5502633049268204,
          -3.0488300865283504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8035253955765325,
          -2.3283796034387376,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8078055322706246,
          -3.4628470358316736,
          -3.656577291396114,
          -7,
          -7,
          -3.5368108659915416,
          -7,
          -7,
          -3.7204625143161145,
          -7,
          -7,
          -7,
          -2.956008262860823,
          -3.410608542568368,
          -7,
          -7,
          -7,
          -7,
          -3.3550682063488506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.571598206525296,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.2297202284658,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.380066452751471,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.973150953755652,
          -7,
          -7,
          -4.87582880342868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.7127431153931285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.708692780248078,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.612836816232258,
          -7,
          -7,
          -7,
          -5.131021660599472,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.398021069409893,
          -7,
          -7,
          -4.716445764507459,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8608169638645378,
          -7,
          -4.878653902034747,
          -7,
          -7,
          -4.2977167512641525,
          -7,
          -7,
          -4.577905216795529,
          -7,
          -7,
          -4.620005851260625,
          -3.2407571939326836,
          -7,
          -7,
          -5.086404325780766,
          -4.267195203145968,
          -7,
          -4.094610863032137,
          -7,
          -7,
          -3.876188963668735,
          -7,
          -7,
          -7,
          -4.674502906671874,
          -7,
          -3.8833490849946153,
          -3.2135177569963047,
          -7,
          -7,
          -7,
          -4.175975431749513,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.322529394341456,
          -7,
          -5.234734882402388,
          -7,
          -7,
          -7,
          -4.359228183542235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3675236418690195,
          -7,
          -7,
          -7,
          -5.487537120849834,
          -5.007201366690912,
          -7,
          -7,
          -7,
          -4.050935320901517,
          -7,
          -7,
          -7,
          -2.9300101317088076,
          -7,
          -7,
          -7,
          -4.780634094707888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8752590636046054,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3860528489403894,
          -3.8624444595730716,
          -7,
          -7,
          -7,
          -3.2062860444124324,
          -7,
          -7,
          -7,
          -7,
          -3.7229628089424898,
          -7,
          -4.318021573870186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7895807121644256,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.292078772116658,
          -7,
          -3.1319392952104246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3244882333076564,
          -7,
          -3.6534054906645013,
          -1.5509922837391463,
          -3.1559430179718366,
          -7,
          -7,
          -7,
          -7,
          -3.8852481077813863,
          -7,
          -7,
          -7,
          -2.757901904775561,
          -4.1365303235313,
          -7,
          -7,
          -7,
          -7,
          -5.346759690488342,
          -7,
          -3.2577985291530305,
          -7,
          -7,
          -3.528209432477408,
          -7,
          -3.2728468287897403,
          -7,
          -7,
          -7,
          -3.074084689028244,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2990494465975395,
          -7,
          -7,
          -7,
          -7,
          -3.632356046239073,
          -7,
          -7,
          -7,
          -7,
          -3.8768142008518582,
          -7,
          -7,
          -2.9259992664561554,
          -4.525537160391059,
          -7,
          -4.152104800892868,
          -3.764450127369505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6577249542051082,
          -7,
          -7,
          -7,
          -3.787672964687493,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.780677274433368,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.398495550138137,
          -7,
          -7,
          -7,
          -7,
          -3.493597449000527,
          -7,
          -7,
          -3.71594766128561,
          -7,
          -7,
          -7,
          -7,
          -3.3517963068970236,
          -2.428134794028789,
          -7,
          -2.98878184345364,
          -7,
          -3.6238692683503024,
          -7,
          -2.9429995933660407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.726784242080268,
          -7,
          -7,
          -7,
          -7,
          -3.9034698285071703,
          -3.0107238653917734,
          -7,
          -7,
          -7,
          -7,
          -4.333144876098619,
          -7,
          -7,
          -7,
          -4.668479102932586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.747411807886423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.140498615414539,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.003810454857046,
          -7,
          -3.8890214220952246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.844228581301628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.859918485200716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752560587598014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6008640363098396,
          -3.673941998634088,
          -7,
          -7,
          -7,
          -7,
          -3.777698624514739,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.691678126455561,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5943925503754266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0175758683910745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.321391278311689,
          -7,
          -3.5597271274175606,
          -7,
          -7,
          -5.150894532756141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.273712931612605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.064120905829622,
          -7,
          -7,
          -7,
          -3.129689892199301,
          -7,
          -7,
          -3.7197454925295768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.896250562461638,
          -7,
          -7,
          -5.712733859069952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.640133464494492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8319763626923518,
          -7,
          -4.22936182573706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.200394450079095,
          -7,
          -7,
          -3.690993032099869,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0782755220866007,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.528907063458861,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.203576774977973,
          -3.94146173934733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.527190874082044,
          -3.852845818014997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.256236533205923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.554228626325214,
          -7,
          -5.398014700899577,
          -7,
          -3.469895618975018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.198065714165741,
          -7,
          -7,
          -7,
          -4.769687425683675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.27649627062157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9756500498329994,
          -7,
          -7,
          -4.443846870844043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.227012095991085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.470983487381527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.56702636615906,
          -7,
          -7,
          -7,
          -5.2347070560662425,
          -3.6776981814745104,
          -7,
          -7,
          -4.9612644350180055,
          -4.677752909529766,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.990258915931302,
          -5.487521573812226,
          -7,
          -7,
          -7,
          -7,
          -4.3519508325993845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.780554920725867,
          -7,
          -4.205880729887537,
          -7,
          -4.0513951081085375,
          -7,
          -7,
          -4.464931466295046,
          -4.954493362678243,
          -7,
          -4.86982211524454,
          -7,
          -3.5561818466529114,
          -4.303649561060314,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9872490465625705,
          -7,
          -3.6977232389357932,
          -7,
          -2.9017306917292185,
          -3.056804587113032,
          -3.025510672852581,
          -2.7523045932010324,
          -7,
          -3.0224283711854865,
          -2.062581984228163,
          -3.6188078830935138,
          -3.102548038835058,
          -2.3384564936046046,
          -7,
          -7,
          -2.5499836111596887,
          -3.1567510079386705,
          -7,
          -2.47928731647617,
          -3.4531653925258574,
          -2.8041394323353503,
          -2.576341350205793,
          -2.571708831808688,
          -3.004894321731049,
          -7,
          -2.8835740871078883,
          -7,
          -7,
          -3.9908824926522315,
          -4.315273937139323,
          -3.882510307889449,
          -7,
          -7,
          -3.2216228577487898,
          -2.646893624167745,
          -3.4149733479708178,
          -7,
          -7,
          -3.3977414286585623,
          -7,
          -1.810232517995084,
          -2.718916686014861,
          -3.1051694279993316,
          -3.652343055062715,
          -2.7693773260761385,
          -1.8626961724476383,
          -2.523312822759656,
          -2.8305886686851442,
          -7,
          -3.9717859378791145,
          -3.8849368971038603,
          -7,
          -3.022840610876528,
          -2.9943171526696366,
          -7,
          -3.658933094831393,
          -7,
          -2.519827993775719,
          -3.577491799837225,
          -3.2593549273080344,
          -3.733797942367466,
          -3.4104397862103464,
          -3.0801452741502415,
          -7,
          -7,
          -7,
          -7,
          -3.448242412634439,
          -2.6893088591236203,
          -3.2643455070500926,
          -3.7804613328617176,
          -2.1098409265242712,
          -7,
          -3.1684238181031454,
          -3.72413244679981,
          -2.8042530476353846,
          -7,
          -3.1221066080541338,
          -3.1131073665204956,
          -3.7100326990657537,
          -1.9530344572503566,
          -3.0647075120616503,
          -3.631240780235509,
          -2.370698092575577,
          -2.4082399653118496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4019172505175748,
          -3.8263210491496613,
          -7,
          -3.151216578856456,
          -3.588147160101612,
          -3.0274515428724906,
          -2.915751490682417,
          -7,
          -7,
          -7,
          -3.3103746420476123,
          -2.789076831748343,
          -7,
          -7,
          -3.1696744340588068,
          -7,
          -2.6093987370065896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.0253058652647704,
          -2.0266694283375184,
          -3.7798849631926443,
          -3.140193678578631,
          -7,
          -7,
          -2.334453751150931,
          -2.5327543789924976,
          -7,
          -7,
          -2.4683473304121573,
          -3.329194415088451,
          -3.1245042248342823,
          -3.7962620284279147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.016908043972075,
          -7,
          -7,
          -3.182129214052998,
          -7,
          -7,
          -2.4099331233312946,
          -7,
          -7,
          -7,
          -3.622731965164719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.335498018419024,
          -7,
          -7,
          -7,
          -5.270689314973614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.86494990015796,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.90760481522294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5481436374348454,
          -3.971012841545116,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.615739688619155,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.627916058122411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.37520622109933,
          -7,
          -7,
          -3.058426024457005,
          -7,
          -4.080914958856625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.296116492169714,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.085290578230065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.452107050529845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.353161953283723,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.126780577012009,
          -2.836535091898369,
          -7,
          -7,
          -4.353165804965758,
          -3.8427340189482697,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.250387189204171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8276922886744456,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1893967258352185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.311669112400611,
          -7,
          -4.531912994521574,
          -7,
          -4.232437009220555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.228227068357458,
          -7,
          -7,
          -3.804775295526398,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.527266333173729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.87520600409689,
          -7,
          -7,
          -5.017926065550163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.593208507509241,
          -7,
          -7,
          -3.604657972047871,
          -7,
          -4.068593980976652,
          -7,
          -7,
          -4.277167820218901,
          -3.9681559371499704,
          -3.577146984827525,
          -7,
          -7,
          -7,
          -2.9984887718285296,
          -7,
          -7,
          -3.6661486316329417,
          -7,
          -4.007214181076625,
          -7,
          -5.387626487935149,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.180326625415149,
          -7,
          -4.772886215949434,
          -3.8515029527705447,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.367449107268604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.933967884022049,
          -7,
          -7,
          -4.438320794186449,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.88561844070513,
          -7,
          -7,
          -7,
          -7,
          -3.954517475547784,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.429219175321009,
          -7,
          -7,
          -7,
          -7,
          -4.897203585179786,
          -7,
          -7,
          -4.942652811693212,
          -4.051899830724197,
          -7,
          -4.569008917702917,
          -7,
          -3.5700757053216043,
          -4.605961917948959,
          -3.990138980051281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6208941807700508,
          -7,
          -3.877256133113586,
          -7,
          -3.2340108175871793,
          -3.7364363439795194,
          -2.872350544494723,
          -7,
          -7,
          -3.7315887651867388,
          -2.2405492482826,
          -3.7165736764711426,
          -7,
          -7,
          -7,
          -3.642892997358405,
          -2.8004879595844288,
          -3.344686943705623,
          -7,
          -2.5563025007672873,
          -7,
          -7,
          -2.461898521729004,
          -7,
          -7,
          -7,
          -3.3043181544900566,
          -7,
          -7,
          -4.117138666403885,
          -4.139571264660785,
          -4.008309125342374,
          -7,
          -7,
          -7,
          -7,
          -3.1327398382608846,
          -7,
          -7,
          -3.342595377241292,
          -7,
          -1.590051083854947,
          -2.037227234582274,
          -7,
          -7,
          -7,
          -1.8126227614617871,
          -7,
          -1.6789733759197651,
          -7,
          -7,
          -3.888235673270567,
          -7,
          -3.5162708827293403,
          -3.4888326343824008,
          -7,
          -3.53763023032496,
          -7,
          -7,
          -3.885304667588968,
          -7,
          -3.422363121576346,
          -7,
          -3.0940050223646494,
          -7,
          -7,
          -7,
          -7,
          -3.4572004127937683,
          -2.782472624166286,
          -3.291146761731886,
          -7,
          -1.2171077688054557,
          -7,
          -3.7794521834040617,
          -4.327512187748588,
          -7,
          -3.3244882333076564,
          -3.8241475372464007,
          -2.4307198878632823,
          -3.7198282862543346,
          -1.9978230807457253,
          -3.5471591213274176,
          -3.6429588794097905,
          -7,
          -1.5023467769110552,
          -7,
          -7,
          -7,
          -3.427972713608209,
          -7,
          -3.4216039268698313,
          -3.7486272694622023,
          -3.2833012287035497,
          -3.553093786437186,
          -4.242988412194795,
          -3.6418705454763125,
          -7,
          -7,
          -3.200303182981585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.231341246495776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.909823369650912,
          -1.7863457289989153,
          -3.788239097382168,
          -2.8739015978644615,
          -7,
          -7,
          -2.1020905255118367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.101403350555331,
          -3.7472563974421442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.495710808313926,
          -7,
          -7,
          -3.022153327172555,
          -2.6171751426857073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3334472744967503,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.204084694795681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.334393428283704,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3142886609474975,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.907309225063157,
          -7,
          -3.591342911734455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.447344117675954,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.12471610363175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.752719228377702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.380988656432105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.294906910605192,
          -7,
          -7,
          -7,
          -4.3638938977741,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6638892986226614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.849953507030731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.275403502745404,
          -7,
          -7,
          -5.0520221703193435,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4641540841432814,
          -7,
          -3.7405205860536648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.051036695141213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.124536828301277,
          -3.8866001478715915,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.464340484627667,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.059089865916824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8332958902132748,
          -7,
          -4.230155034520514,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5815856036702556,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.527230862584156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.273110700485775,
          -7,
          -7,
          -5.017696801710228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.29154643969221,
          -4.770144787468645,
          -7,
          -7,
          -7,
          -4.3686401285764855,
          -7,
          -7,
          -4.577905216795529,
          -7,
          -7,
          -7,
          -4.415791055742342,
          -4.996686755600171,
          -3.675239720870955,
          -7,
          -7,
          -3.8798150224247188,
          -7,
          -4.307110778380075,
          -7,
          -7,
          -7,
          -4.528865301439568,
          -3.6191281284699492,
          -7,
          -7,
          -7,
          -7,
          -4.295332480930185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.611436515265544,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.136387586102837,
          -4.961558717504052,
          -4.678318029299685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.885540725244422,
          -5.405190068017276,
          -7,
          -7,
          -7,
          -4.109183071663385,
          -3.760497875226527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.428329210721689,
          -4.781000985603031,
          -7,
          -4.207553585949308,
          -7,
          -4.595859818764418,
          -7,
          -7,
          -7,
          -4.477651734970054,
          -7,
          -4.170926342269268,
          -7,
          -3.563599728881531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4650852875574327,
          -7,
          -3.0621189528182424,
          -2.6138418218760693,
          -2.9182925127553556,
          -3.735339363143935,
          -3.038023740045158,
          -7,
          -7,
          -3.7271344237604884,
          -7,
          -3.7539936932143556,
          -2.984414787243434,
          -7,
          -7,
          -3.516072408592942,
          -2.7876965682898738,
          -3.162962476653458,
          -7,
          -2.5217916496391233,
          -3.4578818967339924,
          -7,
          -2.912753303671323,
          -7,
          -7,
          -7,
          -3.097560966637652,
          -1.9777236052888478,
          -2.57978359661681,
          -3.6904508209430453,
          -4.093614273071337,
          -3.744605875414239,
          -2.285557309007774,
          -3.400710636773231,
          -7,
          -7,
          -7,
          -7,
          -3.137670537236755,
          -3.1649473726218416,
          -7,
          -2.5943925503754266,
          -3.0334237554869494,
          -3.1258064581395266,
          -3.357076839842412,
          -2.8129133566428557,
          -1.837047036359575,
          -7,
          -2.2630439833131657,
          -3.210853365314893,
          -3.974649834438722,
          -3.2842897062472733,
          -7,
          -3.5089335260500327,
          -3.1796953833245065,
          -3.2487087356009177,
          -3.2346121801550183,
          -7,
          -7,
          -3.182756931040399,
          -7,
          -3.590765596983205,
          -3.4207806195485655,
          -2.7186202999514206,
          -3.13481437032046,
          -2.8543060418010806,
          -7,
          -7,
          -3.151676230847048,
          -7,
          -2.5779511277297553,
          -3.784902449886655,
          -2.0860037056183818,
          -7,
          -3.7754648093457392,
          -4.326949994165998,
          -7,
          -7,
          -3.4548013195320686,
          -2.1890111514077963,
          -7,
          -2.36285930295868,
          -3.322880573098306,
          -7,
          -7,
          -2.433769833924866,
          -7,
          -7,
          -4.053923150548575,
          -3.117602691690084,
          -2.9537596917332287,
          -3.111094410509336,
          -3.680943850666622,
          -2.9691828592322613,
          -3.454448480701692,
          -3.7650846334933146,
          -3.1588648570811704,
          -7,
          -7,
          -3.184975190698261,
          -7,
          -7,
          -3.340344949528144,
          -3.6625689669332604,
          -7,
          -7,
          -7,
          -2.3535208688836247,
          -7,
          -7,
          -7,
          -2.0253058652647704,
          -1.909823369650912,
          -7,
          -0.9879910925269847,
          -3.4831592097169795,
          -3.159266331093494,
          -7,
          -7,
          -2.149834696715785,
          -7,
          -2.73559889969818,
          -7,
          -7,
          -3.3416323357780544,
          -2.665893545534433,
          -4.099507993727965,
          -7,
          -3.629409599102719,
          -7,
          -7,
          -7,
          -2.814913181275074,
          -7,
          -4.494947292750087,
          -2.9079485216122722,
          -7,
          -2.7126497016272113,
          -2.6869935662646784,
          -7,
          -7,
          -7,
          -3.3014640731432996,
          -7,
          -7,
          -3.1408221801093106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.903345060079677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9334872878487053,
          -7,
          -7,
          -7,
          -3.3820170425748683,
          -7,
          -7,
          -7,
          -5.571784506559266,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2778383330020473,
          -7,
          -7,
          -7,
          -3.33665982345442,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.630529571426824,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.907894835416283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.147969876081947,
          -7,
          -7,
          -3.382917135087531,
          -7,
          -7,
          -3.320146286111054,
          -7,
          -7,
          -5.125071176229265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.531139012496997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.753629013549518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5189304872813425,
          -7,
          -7,
          -7,
          -3.462585153463974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0246498311794445,
          -7,
          -7,
          -3.372819981678968,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.975062462891647,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.876136980368427,
          -7,
          -7,
          -3.5724068675580556,
          -7,
          -7,
          -7,
          -3.2405492482826,
          -7,
          -7,
          -7,
          -7,
          -3.6545615547417434,
          -7,
          -7,
          -7,
          -4.339868640584651,
          -7,
          -3.5932122011334005,
          -7,
          -3.749040268703457,
          -7,
          -3.1815577738627865,
          -7,
          -7,
          -3.733678655677088,
          -3.325720858019412,
          -7,
          -7,
          -3.8770064005726015,
          -3.846089580357984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.650825388129239,
          -4.2214655609036065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.941933596157502,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8928363526263907,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8356060290584613,
          -7,
          -3.4531398960347057,
          -7,
          -4.7100496335954745,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.4325395915742165,
          -7,
          -7,
          -3.379803899663388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.682187639532793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.856305866433299,
          -7,
          -5.273173797465104,
          -7,
          -7,
          -5.018151043270515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.593806465329934,
          -4.77094769310584,
          -4.267476801134049,
          -7,
          -7,
          -4.069594105177555,
          -3.024485667699167,
          -7,
          -4.101363231766848,
          -7,
          -2.980571448161674,
          -7,
          -4.416698742157362,
          -4.395077279529279,
          -3.4033264618175827,
          -7,
          -7,
          -3.8078107326236483,
          -3.423614458082382,
          -4.008365930205775,
          -7,
          -5.387722539303589,
          -7,
          -4.530263748713028,
          -3.4009177230754477,
          -3.8501559224220925,
          -4.355863205457035,
          -3.4826735335033296,
          -7,
          -4.1711777555614145,
          -3.5519986190490087,
          -7,
          -4.32054091992458,
          -4.188956592526399,
          -3.254064452914338,
          -4.078239253809666,
          -7,
          -7,
          -3.48138529211277,
          -7,
          -7,
          -7,
          -4.588447257083161,
          -3.8781194846971676,
          -7,
          -3.848620117434134,
          -7,
          -4.456962904242507,
          -7,
          -7,
          -4.138113146487167,
          -4.661036127893079,
          -4.679309766985715,
          -7,
          -4.435047641339964,
          -3.812445402872756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.689978878482649,
          -4.487737769021568,
          -5.229190199730057,
          -7,
          -7,
          -7,
          -4.176665113572594,
          -3.4674601095072637,
          -7,
          -7,
          -4.213995616368085,
          -7,
          -7,
          -3.827934392823744,
          -4.7817840873880515,
          -3.5881596163830918,
          -3.733250779305627,
          -7,
          -4.198486634155306,
          -4.485409076322577,
          -7,
          -4.641880451715565,
          -4.478176754287997,
          -7,
          -4.745213415625778,
          -7,
          -3.2750808984568587,
          -4.129378342793226,
          -7,
          -7,
          -7,
          -7,
          -2.6314437690131722,
          -3.7013088852280753,
          -2.8222423977763826,
          -7,
          -3.3344537511509307,
          -2.413299764081252,
          -2.4668676203541096,
          -3.2978997176105405,
          -2.513217600067939,
          -3.27207378750001,
          -7,
          -3.2584776449785178,
          -1.9978230807457253,
          -3.494988973683168,
          -3.2979792441593623,
          -2.439332693830263,
          -3.3016809492935764,
          -3.2183713665540417,
          -2.384487822086762,
          -2.6953843774012043,
          -2.330819466495837,
          -1.978864984347657,
          -3.0676658819742486,
          -2.605305046141109,
          -2.48808044630625,
          -7,
          -7,
          -7,
          -2.9258275746247424,
          -1.9912260756924949,
          -2.2086204838826013,
          -3.272239555081664,
          -3.5140161804006493,
          -2.841195882321743,
          -7,
          -2.941345766226938,
          -3.452501996795578,
          -2.7234556720351857,
          -7,
          -7,
          -7,
          -2.967720359276515,
          -7,
          -2.220108088040055,
          -2.3989040367746544,
          -7,
          -2.587336734507256,
          -2.88024177589548,
          -1.439625049601588,
          -2.7686381012476144,
          -1.919078092376074,
          -2.9375178920173464,
          -3.9796394122229075,
          -3.0762201993238683,
          -2.576341350205793,
          -3.2220658425885866,
          -3.19506899646859,
          -3.274619619091238,
          -2.7978338888552106,
          -2.8796692056320534,
          -2.7007037171450192,
          -2.8873359303991672,
          -2.996949248495381,
          -3.2784330855208434,
          -7,
          -2.2510005323805027,
          -3.168202746842631,
          -2.1324731545055577,
          -7,
          -7,
          -2.7611005389581424,
          -2.1152775913959014,
          -2.8249931222365388,
          -3.7926017811649664,
          -1.5369677039323366,
          -7,
          -7,
          -3.783893374865213,
          -3.6024940688072813,
          -7,
          -3.3021360369887187,
          -2.0546768791557097,
          -3.724275869600789,
          -2.3222192947339195,
          -2.9117310971035075,
          -2.6465017500316117,
          -2.429752280002408,
          -2.03085721245529,
          -2.57978359661681,
          -7,
          -3.1260167470971267,
          -2.2863602200922686,
          -2.3988077302032647,
          -2.007288102842785,
          -3.3511518573324075,
          -2.6919651027673606,
          -3.042302838090508,
          -3.4652588912700675,
          -2.7427251313046983,
          -7,
          -7,
          -7,
          -7,
          -3.629409599102719,
          -3.1747380145272865,
          -2.7170229235078334,
          -7,
          -7,
          -7,
          -2.0404627180322072,
          -7,
          -7,
          -7,
          -2.0266694283375184,
          -1.7863457289989153,
          -0.9879910925269847,
          -7,
          -2.5858130982758256,
          -3.1908917169221698,
          -7,
          -7,
          -1.5715424673240241,
          -7,
          -7,
          -2.4890204780193703,
          -7,
          -3.362670929725667,
          -2.875350696579289,
          -4.103256233355051,
          -2.8472641017707647,
          -3.0377252216588575,
          -2.936513742478893,
          -7,
          -3.037692040279623,
          -7,
          -7,
          -3.8943160626844384,
          -2.9628426812012423,
          -2.9454685851318194,
          -2.6604588986495648,
          -2.32342399587229,
          -3.381656482585787,
          -7,
          -7,
          -7,
          -7,
          -2.6842467475153122,
          -2.8721562727482928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4807253789884878,
          -7,
          -7,
          -3.243719975783927,
          -3.7942788657214,
          -7,
          -3.433932386948738,
          -3.4301557119700194,
          -7,
          -7,
          -3.6289812102321743,
          -2.439472605071242,
          -7,
          -7,
          -7,
          -7,
          -2.7825442840100103,
          -2.3335112471695822,
          -7,
          -7,
          -2.3831311681517926,
          -3.1798595945524055,
          -7,
          -7,
          -7,
          -3.8850217948622974,
          -3.366111523378347,
          -3.8073320392911905,
          -3.943456042152199,
          -7,
          -3.310976378660635,
          -7,
          -7,
          -3.8806421264042847,
          -7,
          -3.3343532083835172,
          -7,
          -7,
          -2.657192487900516,
          -4.1585162774930335,
          -7,
          -7,
          -3.0432499701637923,
          -7,
          -2.549266072612872,
          -7,
          -7,
          -7,
          -7,
          -2.718383045380154,
          -2.879432926021307,
          -3.4456042032735974,
          -2.7524006087838484,
          -7,
          -7,
          -7,
          -3.921842481405858,
          -3.824776462475546,
          -7,
          -7,
          -7,
          -3.5173278822943734,
          -2.8877110498195115,
          -3.528968093033398,
          -3.791620482692814,
          -7,
          -2.7618204859340345,
          -7,
          -3.5640344779100492,
          -3.994888795364911,
          -7,
          -7,
          -3.2619668131766253,
          -7,
          -3.0496609543576354,
          -7,
          -7,
          -2.8154781280733654,
          -2.928623410282304,
          -3.8032522114304568,
          -7,
          -7,
          -3.8192806469724814,
          -7,
          -7,
          -7,
          -7,
          -2.82487074756354,
          -3.6553785755318513,
          -3.091071440262167,
          -3.7858279199958655,
          -7,
          -7,
          -3.0220747111643926,
          -7,
          -7,
          -7,
          -3.3401134757058357,
          -7,
          -7,
          -7,
          -2.999188559386703,
          -7,
          -3.9020573108084666,
          -3.849849195605258,
          -3.5166235018348,
          -3.1071509582364176,
          -7,
          -7,
          -3.53763023032496,
          -7,
          -3.076349117493459,
          -7,
          -7,
          -7,
          -3.9588504516796785,
          -7,
          -7,
          -3.3112875386622824,
          -2.864643680472179,
          -7,
          -7,
          -7,
          -4.172757175089349,
          -7,
          -3.9232440186302764,
          -3.9837164739137494,
          -7,
          -7,
          -2.2853339462641507,
          -3.2333007715634716,
          -7,
          -7,
          -2.836791139563708,
          -7,
          -7,
          -7,
          -3.1868151244474543,
          -3.7800291273373383,
          -3.366369584424885,
          -4.039453778961736,
          -3.51954361930943,
          -2.0140705937929684,
          -7,
          -3.8182588934606265,
          -7,
          -7,
          -3.8433573784379558,
          -7,
          -3.3904405066475256,
          -7,
          -7,
          -7,
          -3.9074436091675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.550228353055094,
          -7,
          -7,
          -7,
          -7,
          -4.118297801332776,
          -7,
          -7,
          -2.754312139979706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.637958544442607,
          -3.500099191915723,
          -3.7898978569176265,
          -7,
          -3.7340794072805945,
          -2.7529841877809456,
          -3.0484418035504044,
          -2.7122707911929065,
          -2.672051653937386,
          -3.5496162395190853,
          -3.2978152046930482,
          -7,
          -3.5704845630444004,
          -3.364113040786379,
          -7,
          -3.5166235018348,
          -7,
          -7,
          -7,
          -3.8610562445768735,
          -3.5776066773625357,
          -4.139406770441792,
          -7,
          -2.77832593141989,
          -7,
          -3.098682174268404,
          -3.8130469651601078,
          -3.256116146654382,
          -3.3233896221747057,
          -7,
          -3.568710059628092,
          -3.893095666096228,
          -7,
          -7,
          -2.906765889540728,
          -2.337045942694717,
          -7,
          -7,
          -3.3237332367838985,
          -2.939091165366704,
          -7,
          -7,
          -7,
          -7,
          -2.8359757807651174,
          -3.496098992132571,
          -3.1350190063461896,
          -3.474319516452789,
          -7,
          -7,
          -7,
          -2.3891660843645326,
          -7,
          -7,
          -3.5864747785713966,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2966934306284106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.439445482944493,
          -3.0038194235289084,
          -3.0214255855185868,
          -7,
          -7,
          -2.5080057059156724,
          -2.8403342502181927,
          -1.2729106902546903,
          -3.822560336942692,
          -3.1531667488581956,
          -7,
          -7,
          -7,
          -3.488325050357719,
          -4.044657333234866,
          -2.119945364700318,
          -3.187077336947106,
          -7,
          -3.377366970324768,
          -3.8194123112093252,
          -7,
          -3.846213363879387,
          -3.4495812394629826,
          -3.6163179419637905,
          -7,
          -7,
          -7,
          -7,
          -3.384652041999031,
          -7,
          -3.111486550023024,
          -3.44889174415122,
          -3.8423595733306746,
          -3.6183619311098782,
          -2.855216194733363,
          -3.135984372831044,
          -3.3484022275776355,
          -7,
          -3.550839605065785,
          -7,
          -3.5241363765925686,
          -3.975247941240681,
          -3.873320601815399,
          -2.821007062479266,
          -2.9009626645494517,
          -7,
          -7,
          -7,
          -3.294135419126248,
          -3.0769191490994303,
          -3.5116160205691376,
          -7,
          -7,
          -7,
          -7,
          -3.6865915864615024,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5471591213274176,
          -7,
          -3.534406899137877,
          -3.9883805652220086,
          -3.8198070645907563,
          -3.8893745457940083,
          -2.812622761461787,
          -3.6182452755730448,
          -7,
          -3.468679571521236,
          -4.138124995891195,
          -3.761062896966188,
          -7,
          -3.830203598925704,
          -7,
          -3.9550620696750323,
          -7,
          -4.034989216287685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.77942191922357,
          -7,
          -7,
          -2.155336037465062,
          -3.0543711077640543,
          -3.6057358938767465,
          -2.7099391015969876,
          -3.4781486307637985,
          -2.3116637023504474,
          -2.098257185804164,
          -3.8703551273285175,
          -1.337734317746204,
          -2.1218059731155416,
          -2.153676311310365,
          -3.5067586350292483,
          -2.88658095880711,
          -3.358265990350011,
          -1.8255940093165168,
          -2.8846982859778065,
          -3.022288120503866,
          -2.1339934497456396,
          -3.6103939697123133,
          -3.1606685746425667,
          -7,
          -3.6815647497582704,
          -3.2101222446610786,
          -2.2626506583095267,
          -2.377943380255784,
          -4.430574884046865,
          -2.901049445343407,
          -3.319813684538678,
          -3.8912028272602956,
          -2.2225070244468474,
          -3.1535753376869526,
          -3.1806500887021416,
          -7,
          -3.4219739065729424,
          -3.272421826371504,
          -4.247359422468937,
          -7,
          -3.0526170007462916,
          -2.7994032136888687,
          -1.6869443681868634,
          -7,
          -2.7262197341176018,
          -3.5298151966446305,
          -3.2187979981117376,
          -2.152855964055146,
          -2.93703230311591,
          -3.892984550710717,
          -2.788514525238426,
          -4.187407902422553,
          -7,
          -3.441551132284383,
          -3.0143283621784036,
          -3.1365742333036484,
          -7,
          -3.1190314237972894,
          -3.785044958331544,
          -7,
          -3.2928096654172903,
          -3.9877556167385233,
          -7,
          -7,
          -3.584004375232658,
          -2.784202841695126,
          -4.368698411516462,
          -7,
          -7,
          -7,
          -3.601081727784023,
          -7,
          -4.2686063846163975,
          -3.288348606460727,
          -4.042713299346113,
          -7,
          -4.122969094393747,
          -3.7352261832683493,
          -4.3437432950100945,
          -2.617410633529217,
          -2.892948829012671,
          -7,
          -2.3226958811209695,
          -3.4454245571564948,
          -7,
          -2.467650247139099,
          -3.659526848500998,
          -3.9628426812012423,
          -4.513152888794917,
          -7,
          -3.072663402044344,
          -3.6222705557781127,
          -3.6249349378555262,
          -7,
          -7,
          -7,
          -3.78738962135211,
          -3.4282158115613255,
          -1.6458970683831013,
          -2.9902833432540814,
          -2.121951467621187,
          -2.7510690461887255,
          -2.266643210950574,
          -2.2176434353952446,
          -1.7132480512166643,
          -3.5780658838360915,
          -7,
          -2.4103259367461924,
          -3.006822459570757,
          -2.721938362035024,
          -2.7537632453831598,
          -2.699370706638998,
          -3.2843179154306097,
          -2.4418337034106465,
          -2.580696939712437,
          -2.391537517062907,
          -2.5737738317498766,
          -2.5538156262430403,
          -2.3965025724401565,
          -3.034695286583428,
          -2.4965342957637975,
          -3.8674674878590514,
          -3.1712387562612694,
          -7,
          -1.8658932424311052,
          -3.4840861993579386,
          -3.791690649020118,
          -2.3487817408115292,
          -2.23757282760331,
          -1.9278409009449988,
          -7,
          -2.877999241615634,
          -3.1105591035490403,
          -3.3526326642053124,
          -3.450659594627712,
          -7,
          -3.378942698613437,
          -2.211210817095178,
          -7,
          -2.9466627639986482,
          -2.997713947818426,
          -3.854063011866421,
          -1.504927434383751,
          -2.8090207204836726,
          -2.049157430485653,
          -7,
          -2.970280444951661,
          -3.0925452076056064,
          -1.5739712574358031,
          -2.6257444722246497,
          -3.004894321731049,
          -3.353723937588949,
          -2.991275312638515,
          -3.578696500975596,
          -0.8646140052979363,
          -3.509000790741858,
          -3.315200381631911,
          -2.523616419054371,
          -3.040093500592591,
          -2.1483644013756353,
          -2.884177224385151,
          -1.7469567911439805,
          -3.0099362766616276,
          -2.9686830381598255,
          -3.7996850909091004,
          -7,
          -2.5666085378764327,
          -2.802294711397464,
          -3.2846562827885157,
          -2.693800204297339,
          -2.0271299739606383,
          -7,
          -2.7684530982706304,
          -1.6550294708928528,
          -3.2083965630310805,
          -2.991890303936025,
          -2.676930586781101,
          -3.2284516907144,
          -3.740323206382993,
          -3.24086112943202,
          -1.7999169191226552,
          -1.4477083517730727,
          -2.483990181949066,
          -2.837840861655523,
          -7,
          -3.778295991088834,
          -2.3132820630167794,
          -2.204745917640909,
          -2.7839685107944083,
          -1.6757244422657747,
          -1.6490746525211883,
          -2.2077431980508453,
          -1.0695819409462475,
          -2.823549053162249,
          -2.348996759212671,
          -3.319158129866988,
          -3.510813010512496,
          -3.263340126851339,
          -3.7785130117389247,
          -3.2989839997333843,
          -3.007449044497749,
          -2.552626265425669,
          -7,
          -3.0875448095324267,
          -3.3574266029612865,
          -2.138157788427899,
          -7,
          -3.8035253955765325,
          -3.780677274433368,
          -3.7798849631926443,
          -3.788239097382168,
          -3.4831592097169795,
          -2.5858130982758256,
          -7,
          -2.859438535455056,
          -7,
          -7,
          -2.333514445555875,
          -3.315900405126321,
          -3.3256524705723134,
          -7,
          -3.2079035303860515,
          -3.3010299956639813,
          -7,
          -3.419082035021574,
          -2.7522405710173974,
          -4.003029470553618,
          -3.3398487830376373,
          -7,
          -2.9522595365908204,
          -7,
          -7,
          -3.4547627993176926,
          -7,
          -3.818423855092079,
          -2.869915879065291,
          -2.592123862385521,
          -3.9089673004183876,
          -7,
          -7,
          -7,
          -7,
          -2.6392698943402007,
          -3.856910060300786,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.976705922742223,
          -7,
          -7,
          -7,
          -7,
          -3.9355828325357876,
          -7,
          -3.2823955047425257,
          -7,
          -7,
          -7,
          -3.3154741615241607,
          -7,
          -7,
          -3.269746373130767,
          -4.2942190152208815,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3147798252899086,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.240798771117331,
          -4.667210053653095,
          -7,
          -7,
          -7,
          -7,
          -3.249198357391113,
          -7,
          -7,
          -7,
          -7,
          -3.1304945885234696,
          -3.913442954859396,
          -7,
          -3.9529860651970554,
          -3.8555191556678,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8629211006820983,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.418135498425232,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1913824121648675,
          -7,
          -3.7563317673210577,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3027637084729817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.39509913731257,
          -7,
          -7,
          -7,
          -7,
          -2.2764618041732443,
          -2.840942080243099,
          -3.13640344813399,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.062627103388964,
          -7,
          -7,
          -7,
          -3.655505141739744,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7176913020483573,
          -7,
          -7,
          -7,
          -3.384962397302607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.066027594948862,
          -3.799891684656865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6754774075729344,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.367169488534681,
          -7,
          -3.824277734453902,
          -7,
          -7,
          -3.764087957385868,
          -7,
          -3.153814864344529,
          -7,
          -3.388988785124714,
          -2.6141059109580307,
          -7,
          -3.446847710155809,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6006326194945357,
          -7,
          -2.3287740580361573,
          -2.421368855425985,
          -3.4111144185509046,
          -7,
          -7,
          -2.3301431005564446,
          -2.457606678421928,
          -7,
          -7,
          -3.227464319520702,
          -3.003245054813147,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.161008437306002,
          -4.599803323786212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.838785161346223,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.914116391219987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.033544376090948,
          -3.174786417367337,
          -4.545875904696417,
          -7,
          -3.9406824679202184,
          -7,
          -7,
          -7,
          -2.5379003019699025,
          -7,
          -7,
          -7,
          -7,
          -3.400365273349939,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4967913157000425,
          -7,
          -7,
          -7,
          -3.9587358469865994,
          -7,
          -7,
          -4.3065108056433825,
          -7,
          -7,
          -7,
          -2.973589623427257,
          -3.29928933408768,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.249182904087916,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.46084697750166,
          -7,
          -7,
          -3.8463288633433605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.515714926414582,
          -7,
          -7,
          -3.2069013989399444,
          -4.301514687266299,
          -4.29161301693988,
          -7,
          -4.243236537941076,
          -3.4864659011032937,
          -3.3258234190027447,
          -7,
          -3.931260059489091,
          -3.5399538416563967,
          -3.3880123433641907,
          -3.6244471170144004,
          -3.68490245896855,
          -4.30275938280919,
          -2.576553798431761,
          -7,
          -3.681874122128647,
          -2.8361851241746323,
          -7,
          -2.898989122518341,
          -7,
          -4.544480870993537,
          -3.6926927305822153,
          -3.3127620973617313,
          -7,
          -7,
          -4.666920265359489,
          -7,
          -7,
          -3.382672494563074,
          -3.486118638421901,
          -3.9073128091789755,
          -4.3419684081799375,
          -3.615502908341466,
          -3.1539672216454786,
          -7,
          -7,
          -4.466556239671248,
          -3.4314709841279067,
          -7,
          -7,
          -7,
          -4.2243739512352265,
          -3.935053589231065,
          -7,
          -7,
          -7,
          -4.091611693937414,
          -7,
          -7,
          -2.831077154621386,
          -4.666021627895574,
          -4.211663292650559,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9124523434166374,
          -3.7451528950769006,
          -7,
          -4.995683446859352,
          -3.807881581230128,
          -7,
          -7,
          -7,
          -7,
          -4.959932927904161,
          -3.539452491549461,
          -7,
          -4.10907208097888,
          -3.9401178667477184,
          -7,
          -3.7383642922611235,
          -3.2422462910244345,
          -3.9441300172530784,
          -3.693023067923694,
          -7,
          -3.8635607645262424,
          -4.204266532314703,
          -4.50018156686907,
          -7,
          -4.948129212291016,
          -4.65934087789275,
          -7,
          -3.91788072846784,
          -7,
          -7,
          -4.140602308020332,
          -3.6160972451781976,
          -3.188647295999717,
          -7,
          -7,
          -1.817144512411414,
          -7,
          -3.120015684402852,
          -7,
          -3.732018281336871,
          -2.7198834733033834,
          -3.149834696715785,
          -3.213593642804973,
          -2.745855195173729,
          -7,
          -7,
          -3.8130469651601078,
          -7,
          -2.233874094776021,
          -7,
          -3.2757719001649312,
          -1.8403103790671382,
          -2.9238837398640314,
          -1.6611062344271388,
          -2.206587797735214,
          -1.978761346480108,
          -3.263399331334002,
          -2.935444283519925,
          -1.8441424962142483,
          -1.3890478929141081,
          -3.13433651094868,
          -7,
          -2.8221680793680175,
          -3.2034991183873496,
          -2.1577588860468637,
          -3.1894903136993675,
          -3.061624783982095,
          -3.3570056965083346,
          -3.053239134155262,
          -7,
          -2.08218675618735,
          -7,
          -1.4859397197668511,
          -3.5830853663476874,
          -7,
          -7,
          -3.0958664534785427,
          -1.8388490907372554,
          -2.8915374576725643,
          -2.617393545748848,
          -7,
          -2.1384952472636067,
          -2.95784663370815,
          -2.517855418930029,
          -7,
          -2.9786369483844743,
          -3.4459154139511234,
          -7,
          -2.1644059707459053,
          -2.3756636139608855,
          -7,
          -7,
          -7,
          -3.2700379829462642,
          -2.1393946530192696,
          -1.6428716804371248,
          -2.901656425850182,
          -3.4837298990000236,
          -3.0765684092605996,
          -7,
          -2.1881570498615166,
          -2.9254839872002525,
          -2.9731278535996988,
          -3.9014038268252516,
          -7,
          -2.0280933459471977,
          -1.9470723905090646,
          -3.4867137759824858,
          -7,
          -2.3359135659099737,
          -7,
          -3.8530895298518657,
          -3.7945577512547617,
          -3.226857570288723,
          -7,
          -3.045343570734785,
          -3.1051694279993316,
          -7,
          -3.366982975977851,
          -3.0257153839013404,
          -1.9761165933464382,
          -1.7658547474657904,
          -2.5738382050519886,
          -7,
          -7,
          -3.5314971643262183,
          -1.9055612534135378,
          -2.8371674062278354,
          -3.5742628297070267,
          -3.394576747632524,
          -3.481729196960016,
          -2.7714744128040993,
          -3.478181568042029,
          -2.2583179485318188,
          -7,
          -2.1132268916297963,
          -7,
          -7,
          -3.7257483329955483,
          -3.7441364524012473,
          -3.0612262251191154,
          -7,
          -7,
          -7,
          -2.5761041141490666,
          -7,
          -2.3283796034387376,
          -7,
          -3.140193678578631,
          -2.8739015978644615,
          -3.159266331093494,
          -3.1908917169221698,
          -2.859438535455056,
          -7,
          -7,
          -3.249442961442582,
          -2.4265112613645754,
          -7,
          -7,
          -7,
          -2.958324931644053,
          -3.225438516805496,
          -3.107040290223204,
          -3.5358002908248976,
          -2.425012231875444,
          -2.7790350244932567,
          -3.2837533833325265,
          -7,
          -3.3356584522893016,
          -7,
          -7,
          -3.1678809876266514,
          -7,
          -7,
          -3.153204900084284,
          -2.1361105172149624,
          -3.0622058088197126,
          -7,
          -7,
          -3.199618067707931,
          -7,
          -2.2241768313269548,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7748088303107057,
          -7,
          -3.276921132065774,
          -3.3372595397502756,
          -3.9775353253878825,
          -7,
          -7,
          -7,
          -3.1873155746437476,
          -3.0394884783034315,
          -7,
          -2.1958996524092336,
          -7,
          -3.2645817292380777,
          -7,
          -3.459731647856049,
          -7,
          -7,
          -3.469306445431168,
          -3.0567387302695983,
          -3.0835026198302673,
          -3.303196057420489,
          -3.226342087163631,
          -2.61870166264718,
          -2.5743620327718135,
          -3.0170333392987803,
          -3.7939765374934558,
          -7,
          -7,
          -2.782472624166286,
          -7,
          -3.513483956704257,
          -7,
          -7,
          -7,
          -3.247359422468937,
          -7,
          -3.3667839409230824,
          -7,
          -2.8530895298518657,
          -7,
          -2.1693977913346485,
          -2.3493941009438672,
          -7,
          -2.779776808670381,
          -7,
          -3.111094410509336,
          -7,
          -3.437739995916121,
          -3.6062738531699883,
          -2.966798546383361,
          -3.572639297042813,
          -7,
          -7,
          -7,
          -7,
          -2.90687353472207,
          -2.4812634271455627,
          -3.2595938788859486,
          -3.351989455435632,
          -2.9951962915971793,
          -3.3553336134554423,
          -7,
          -7,
          -3.2763468962530333,
          -7,
          -7,
          -2.147081481685561,
          -7,
          -7,
          -4.088039388997349,
          -7,
          -7,
          -7,
          -7,
          -2.7114598529873253,
          -7,
          -2.7024305364455254,
          -3.2208922492195193,
          -7,
          -7,
          -7,
          -3.3760291817281805,
          -2.8862086241674976,
          -7,
          -3.314113533503361,
          -3.6732052817790453,
          -4.0690017170456,
          -7,
          -7,
          -7,
          -3.4831592097169795,
          -2.7849737099544005,
          -3.007235537545952,
          -7,
          -3.40840957846843,
          -3.3647385550553985,
          -7,
          -7,
          -3.3286649614415253,
          -7,
          -3.0842186867392387,
          -7,
          -3.042811691807148,
          -3.497119783170118,
          -7,
          -2.991004440330755,
          -7,
          -7,
          -2.474559037955062,
          -7,
          -7,
          -2.2064403505010706,
          -2.7219937073239864,
          -2.7424894645817752,
          -7,
          -3.4300481667501534,
          -3.559622386202792,
          -3.337459261290656,
          -7,
          -2.1095983962831193,
          -3.243090291496643,
          -7,
          -3.305673745669693,
          -7,
          -2.2538224387080734,
          -7,
          -2.5040175279209977,
          -3.3250022521650378,
          -7,
          -7,
          -4.390758528738717,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.845754459710494,
          -3.2181414681576777,
          -2.9859875056581204,
          -3.7844033017530085,
          -7,
          -3.9458623244896174,
          -3.2377949932739227,
          -7,
          -3.4211101297934343,
          -4.101575246255933,
          -3.5997193623970984,
          -7,
          -7,
          -2.7556843338524133,
          -3.778946727968617,
          -7,
          -7,
          -7,
          -7,
          -2.783427117917317,
          -7,
          -2.76774936734558,
          -7,
          -7,
          -7,
          -3.165639948545658,
          -7,
          -7,
          -3.7298445624133887,
          -7,
          -2.927626962444954,
          -7,
          -7,
          -3.3001605369513523,
          -7,
          -7,
          -3.2050238216541693,
          -7,
          -3.705927825831053,
          -7,
          -7,
          -3.306244991644289,
          -7,
          -7,
          -3.406540180433955,
          -7,
          -2.8578147779710066,
          -7,
          -2.374889282075564,
          -3.416141031168329,
          -2.5024271199844326,
          -7,
          -7,
          -3.4681995860726125,
          -7,
          -7,
          -3.031408464251624,
          -4.366180057989114,
          -7,
          -3.117602691690084,
          -7,
          -3.542514216281654,
          -7,
          -3.46014581749175,
          -7,
          -3.3281756614383227,
          -2.092122568184241,
          -2.362356792654536,
          -7,
          -3.263399331334002,
          -4.379686151906955,
          -3.077627417979003,
          -7,
          -7,
          -7,
          -3.245759355967277,
          -3.270911639410481,
          -2.617000341120899,
          -3.2530955858490316,
          -2.3324384599156054,
          -2.3790962360108145,
          -2.926085086925144,
          -7,
          -4.71401020939888,
          -7,
          -7,
          -2.249198357391113,
          -7,
          -3.2314695904306814,
          -3.26030994579492,
          -2.5732585015417953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1488033442895493,
          -7,
          -7,
          -7,
          -7,
          -3.35869609957381,
          -3.345765693114488,
          -7,
          -2.8819549713396007,
          -3.3053513694466234,
          -3.1927068066128585,
          -7,
          -3.1922886125681202,
          -7,
          -7,
          -7,
          -2.8079725242641853,
          -7,
          -3.345177616542704,
          -3.062393937253195,
          -4.0224283711854865,
          -7,
          -7,
          -3.2960066693136723,
          -2.299328972154782,
          -3.5280163411892014,
          -2.599211049530462,
          -2.1701252091917578,
          -3.9115837009810757,
          -7,
          -7,
          -7,
          -3.1272668183188985,
          -7,
          -2.690196080028514,
          -7,
          -7,
          -3.4313637641589874,
          -7,
          -3.4687902620996107,
          -7,
          -7,
          -2.987263954122236,
          -3.4184670209466006,
          -3.5991185650553628,
          -7,
          -4.181602246187018,
          -3.0532705666813786,
          -7,
          -3.081940027992318,
          -7,
          -3.371621927176021,
          -1.8327712998747674,
          -3.496237545166735,
          -7,
          -2.86844850133673,
          -3.1670217957902564,
          -3.2005769267548483,
          -7,
          -7,
          -5.227148547975863,
          -3.335307426189327,
          -7,
          -7,
          -7,
          -3.8409212001987716,
          -3.253822438708073,
          -3.0086001717619175,
          -7,
          -2.347272603130747,
          -2.6852937813867843,
          -3.2225864233903896,
          -7,
          -3.0166155475571776,
          -7,
          -2.6203095992245795,
          -7,
          -7,
          -4.019318102912398,
          -3.3671016750541347,
          -4.514273958642971,
          -7,
          -3.8715729355458786,
          -2.6835592462131155,
          -2.1269824791182863,
          -3.2095150145426308,
          -2.124033012647276,
          -3.2753113545418118,
          -3.0678145111618402,
          -1.914847525422251,
          -2.3038707421637667,
          -2.5221833176186865,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9735126958773432,
          -3.3047058982127653,
          -2.8195176138665428,
          -7,
          -7,
          -3.7634386903396253,
          -4.78088591593984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.604118006192035,
          -4.410186528657109,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.553463748891934,
          -7,
          -7,
          -4.326832352550085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.783167226237643,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.476940260975887,
          -4.681530670563176,
          -4.070588240085541,
          -3.473000092791711,
          -7,
          -3.6538490123638514,
          -7,
          -4.2385328425772455,
          -3.566516054872908,
          -3.160368474792848,
          -3.858085826163788,
          -4.014184397501279,
          -3.6121743576976613,
          -7,
          -4.155244917176186,
          -3.5942267574809135,
          -7,
          -3.571009672309305,
          -7,
          -3.7685641095135733,
          -7,
          -4.218837358365702,
          -4.285526367236513,
          -5.707479901588531,
          -7,
          -2.6077408843287597,
          -7,
          -3.7059634403790094,
          -7,
          -7,
          -4.1193548812964265,
          -7,
          -7,
          -4.045538116450688,
          -2.9735742390073434,
          -4.791480116020001,
          -7,
          -7,
          -7,
          -3.758679442661326,
          -4.504389297186282,
          -2.757206173278786,
          -3.6272195063025854,
          -4.4847030950325495,
          -3.384084473382558,
          -3.9519103706754914,
          -7,
          -7,
          -4.143815995423801,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7217111449013283,
          -2.462397997898956,
          -2.7106461542699276,
          -7,
          -7,
          -3.110103147722846,
          -7,
          -3.208844289340738,
          -2.27669152884504,
          -2.9291633832050645,
          -7,
          -3.1616265959265073,
          -3.027920136405803,
          -3.0400086360135417,
          -7,
          -7,
          -3.521007252408604,
          -3.164278483923325,
          -7,
          -7,
          -3.158905021187544,
          -7,
          -3.3604040547299387,
          -1.8161676220745815,
          -1.8351537728060792,
          -3.2143138974243994,
          -3.583576585633949,
          -7,
          -3.268343913951065,
          -3.4333323865845595,
          -3.756241807581338,
          -4.796498012777912,
          -7,
          -7,
          -2.347241284193564,
          -7,
          -2.290246669219223,
          -7,
          -2.4978507395784066,
          -2.6054884378490457,
          -7,
          -2.9698816437465,
          -1.7322700115725504,
          -2.2684219472783616,
          -3.478999131673357,
          -7,
          -2.5144001589521867,
          -7,
          -3.345177616542704,
          -2.5348718599395945,
          -3.037027879755775,
          -7,
          -7,
          -2.5911573950798172,
          -2.3711651177825903,
          -7,
          -3.8813275841005512,
          -7,
          -7,
          -7,
          -2.620656479819621,
          -2.225674775060652,
          -2.5323296410790315,
          -7,
          -3.4531653925258574,
          -7,
          -7,
          -3.026328938722349,
          -3.5533367823768884,
          -3.3066394410242617,
          -3.5282737771670436,
          -2.7637158918047717,
          -2.8302678009336417,
          -7,
          -2.470704429722788,
          -2.632228959099475,
          -2.059876090852238,
          -2.7685147746865404,
          -2.761460516422466,
          -2.770009947428937,
          -1.2675688224251873,
          -1.7630875039477678,
          -3.3798853986437485,
          -7,
          -2.9566485792052033,
          -2.8063495871404673,
          -3.2420442393695508,
          -7,
          -7,
          -7,
          -3.074084689028244,
          -7,
          -3.3984112726125186,
          -3.222456336679247,
          -3.895367288773362,
          -3.7160749247379314,
          -2.0846903408324007,
          -2.6014080605346837,
          -7,
          -2.3956175727530065,
          -7,
          -2.6020599913279625,
          -2.724722598063189,
          -7,
          -7,
          -2.574176008432909,
          -2.7950105586314464,
          -2.70680142436115,
          -3.063896038125994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3022071980619376,
          -7,
          -7,
          -7,
          -7,
          -3.666705136119899,
          -3.3279716236230104,
          -7,
          -3.5147336493441603,
          -3.0572856444182146,
          -7,
          -3.6609602917760835,
          -7,
          -3.0992200954861304,
          -2.9523080096621253,
          -3.2671717284030137,
          -3.0635835285910997,
          -7,
          -3.280881754580137,
          -7,
          -3.3807537708039,
          -7,
          -7,
          -2.4456042032735974,
          -7,
          -7,
          -7,
          -3.265525335219074,
          -7,
          -7,
          -7,
          -4.602911459019037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.718501688867274,
          -7,
          -7,
          -4.03996902686746,
          -2.8509245755642554,
          -7,
          -7,
          -4.425886906586064,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7872833199241156,
          -2.8068580295188172,
          -7,
          -7,
          -7,
          -3.024895960107485,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.442743088040626,
          -7,
          -7,
          -7,
          -7,
          -2.473924693416157,
          -7,
          -3.1048284036536553,
          -7,
          -7,
          -7,
          -3.954767634541571,
          -3.4619484952037616,
          -7,
          -3.801815168581437,
          -7,
          -3.064832219738574,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9782946697786294,
          -3.54917191710199,
          -7,
          -7,
          -2.641639335722719,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.648665698738682,
          -7,
          -7,
          -7,
          -2.91539983521227,
          -2.8404482831667024,
          -7,
          -7,
          -7,
          -3.461048091670658,
          -7,
          -7,
          -7,
          -3.288249225571986,
          -7,
          -4.0845073368306215,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.153326961490906,
          -7,
          -7,
          -7,
          -3.3764400779834967,
          -7,
          -7,
          -7,
          -3.164352855784437,
          -3.681150749932421,
          -7,
          -7,
          -7,
          -7,
          -4.386962441214617,
          -7,
          -7,
          -3.3571722577230334,
          -3.5585885831081994,
          -7,
          -7,
          -4.176641017292667,
          -4.45429593073985,
          -7,
          -7,
          -7,
          -4.994457934544334,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6568601414481825,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6516817459988693,
          -3.1357685145678222,
          -4.157758886046864,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6399842480415883,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8135809885681917,
          -2.1112978955061585,
          -2.8144695709383387,
          -2.1536710820283993,
          -2.2117029006908067,
          -7,
          -4.173724392544616,
          -7,
          -7,
          -7,
          -2.7697464671794534,
          -7,
          -2.8976270912904414,
          -2.7671558660821804,
          -3.928805370893284,
          -7,
          -4.283007075553755,
          -7,
          -7,
          -3.7737710523822834,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2931414834509307,
          -7,
          -7,
          -3.6418705454763125,
          -7,
          -3.0729847446279304,
          -7,
          -7,
          -2.8415680152280833,
          -7,
          -7,
          -3.3001605369513523,
          -7,
          -3.766040860381389,
          -7,
          -2.76317832728305,
          -7,
          -7,
          -3.751279103983342,
          -3.3694014136966244,
          -7,
          -3.402777069610347,
          -4.358486888100237,
          -3.0139201038746375,
          -7,
          -7,
          -7,
          -7,
          -2.859738566197147,
          -7,
          -7,
          -7,
          -3.9175055095525466,
          -7,
          -7,
          -7,
          -7,
          -2.6459132750338443,
          -2.7024305364455254,
          -7,
          -7,
          -2.529558673021163,
          -7,
          -3.256236533205923,
          -2.9479236198317262,
          -2.690196080028514,
          -7,
          -2.833147111912785,
          -7,
          -2.41077723337721,
          -7,
          -1.9813177870322458,
          -3.6642014217072965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8228869478341507,
          -7,
          -7,
          -7,
          -2.853949830834142,
          -7,
          -4.234390722392193,
          -2.589204670642375,
          -4.410895277968898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6645479622465467,
          -3.7246035153967165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.870403905279027,
          -2.1389339402569236,
          -7,
          -2.436162647040756,
          -2.3441114495680493,
          -7,
          -7,
          -7,
          -7,
          -3.4565178578052627,
          -7,
          -7,
          -7,
          -4.831216882631442,
          -3.8985057855343586,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9606610072709816,
          -7,
          -2.645211668286901,
          -2.1566356727947436,
          -2.3029417866392774,
          -7,
          -5.351353028253276,
          -7,
          -7,
          -2.680335513414563,
          -2.383815365980431,
          -3.762753564933374,
          -7,
          -7,
          -2.2483820141396533,
          -7,
          -7,
          -7,
          -7,
          -3.406540180433955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.91184979649942,
          -4.644899460500739,
          -7,
          -3.0203612826477078,
          -4.3200797861711155,
          -7,
          -7,
          -7,
          -7,
          -3.5490032620257876,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.1265642948950374,
          -7,
          -2.2178597940702534,
          -2.954724790979063,
          -2.031913164461711,
          -3.7262380468026377,
          -7,
          -7,
          -4.596278129409967,
          -7,
          -7,
          -7,
          -7,
          -4.073718350346122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9230418536264855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.473873648418939,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.625655360163779,
          -3.9720361262003894,
          -4.112116965273502,
          -3.589670402034894,
          -7,
          -7,
          -7,
          -4.934670115130671,
          -1.9746055802306293,
          -2.658692643042924,
          -3.597413084920528,
          -4.662096445417923,
          -3.6811778981450454,
          -7,
          -3.9614210940664485,
          -7,
          -1.9764154883905163,
          -7,
          -3.7724500687215876,
          -7,
          -7,
          -3.9919301253434987,
          -4.709914138864821,
          -5.706506129530095,
          -7,
          -3.218447972316523,
          -7,
          -3.274249280187803,
          -7,
          -7,
          -7,
          -3.9188163903603797,
          -7,
          -4.022613927471968,
          -7,
          -4.783388978417696,
          -7,
          -7,
          -7,
          -4.898730665071061,
          -7,
          -7,
          -3.4666205111116515,
          -3.5582236176342548,
          -7,
          -3.6232434373330964,
          -7,
          -7,
          -4.608943012764416,
          -3.82013575187043,
          -1.88711696101553,
          -1.7013324461464732,
          -7,
          -7,
          -7,
          -3.86812991495759,
          -2.022690750805371,
          -3.2315828501736372,
          -7,
          -7,
          -3.3437629752857023,
          -7,
          -0.8869604866914078,
          -7,
          -3.452246574520437,
          -7,
          -3.435802833862011,
          -2.776701183988411,
          -7,
          -7,
          -7,
          -3.036429265626675,
          -2.1219816941302403,
          -7,
          -7,
          -7,
          -7,
          -3.0610753236297916,
          -3.2771506139637965,
          -2.4186836489220545,
          -7,
          -3.714329759745233,
          -7,
          -7,
          -7,
          -3.793678654697431,
          -4.788500684370557,
          -7,
          -3.454692449239477,
          -1.998076772254723,
          -3.1085650237328344,
          -2.394013663157313,
          -7,
          -2.7538383010289067,
          -2.746171833995682,
          -7,
          -7,
          -3.397070549959409,
          -2.920905604164024,
          -7,
          -2.2900346113625183,
          -2.7810369386211318,
          -3.146128035678238,
          -2.5514499979728753,
          -2.511437702158953,
          -3.51241754860084,
          -3.594834355583318,
          -7,
          -2.3437777349071722,
          -2.0416558142071124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3412366232386925,
          -2.9167102323944154,
          -2.77232170672292,
          -2.4538641419058598,
          -7,
          -7,
          -7,
          -2.143014800254095,
          -3.079398339019855,
          -7,
          -2.6483600109809315,
          -2.7273378880330803,
          -7,
          -7,
          -3.0202231262979176,
          -3.0743795706254873,
          -2.3436676730228414,
          -2.259887792766994,
          -2.7495430810911663,
          -3.4759615891924236,
          -3.042654253167793,
          -7,
          -3.08082683498178,
          -7,
          -3.197831693328903,
          -7,
          -2.478566495593843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530481449815745,
          -7,
          -7,
          -3.7022335328214155,
          -7,
          -2.6782147827453997,
          -7,
          -2.9689496809813427,
          -7,
          -1.792991681970249,
          -2.414973347970818,
          -7,
          -7,
          -2.366189402779955,
          -2.5292378052696605,
          -3.0534276951965746,
          -2.1624897277365047,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.249442961442582,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.532674772268436,
          -7,
          -3.4029488293444046,
          -2.759164022728366,
          -3.3323711222176793,
          -3.2909245593827543,
          -7,
          -2.734799829588847,
          -2.2624510897304293,
          -3.2427898094786767,
          -2.993876914941211,
          -7,
          -3.5962671263955155,
          -2.57902100733939,
          -2.2616593037647066,
          -3.5364321758220134,
          -7,
          -3.4202858849419178,
          -7,
          -7,
          -3.0668847431297714,
          -2.7737864449811935,
          -3.6618126855372615,
          -2.3863715504164245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.832508912706236,
          -7,
          -7,
          -3.2161659022859928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.879609931118383,
          -3.4218780161701265,
          -7,
          -3.38524868240322,
          -4.271093139365375,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.566172238185459,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.142067067435677,
          -7,
          -7,
          -7,
          -7,
          -3.185258765296585,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9095613776624525,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5928426831311002,
          -3.851930678640268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.427145161242989,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9804578922761,
          -4.026773224566896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.382161182795874,
          -7,
          -7,
          -7,
          -7,
          -3.309257450996068,
          -7,
          -7,
          -7,
          -7,
          -3.653983907374069,
          -7,
          -7,
          -4.0571105210678615,
          -7,
          -7,
          -7,
          -4.994919554787319,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8272399995056454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.544551703070268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.498426962809987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9843022319799033,
          -7,
          -7,
          -4.149721263992506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.178869079308535,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.281866292147957,
          -7,
          -7,
          -7,
          -3.883282800010276,
          -3.865991800126275,
          -7,
          -7,
          -2.979548374704095,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9229848157088827,
          -7,
          -3.8374937416151766,
          -4.332904487195654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.244643209101521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7013088852280753,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.354876422516234,
          -3.457314067737995,
          -7,
          -3.809618626557482,
          -7,
          -7,
          -7,
          -3.222629776969852,
          -3.7567121601647715,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.379124146070392,
          -3.939119717648487,
          -7,
          -7,
          -7,
          -3.5641572397284045,
          -7,
          -7,
          -3.8133808067338557,
          -7,
          -7,
          -7,
          -7,
          -3.965624967109243,
          -3.532117116248804,
          -7,
          -7,
          -7,
          -7,
          -4.652435235750351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.638389407665336,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3386556655787003,
          -7,
          -4.159272350379319,
          -7,
          -5.176453020410962,
          -7,
          -7,
          -4.718480928596619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4307198878632823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.028774526500088,
          -7,
          -7,
          -3.898374094681203,
          -4.171258274675775,
          -7,
          -7,
          -4.237166582685473,
          -4.376704671946979,
          -3.18971484232368,
          -7,
          -3.2181814592305806,
          -3.985695859689842,
          -2.9192873405043827,
          -7,
          -3.766098745914636,
          -3.8845513831738536,
          -2.9390538498961036,
          -4.333144876098619,
          -4.1982445862282365,
          -3.4608978427565478,
          -3.4368779277106576,
          -7,
          -7,
          -5.388307282618574,
          -4.278524964737017,
          -4.057285644418214,
          -3.6341076435144934,
          -7,
          -3.8148371659627713,
          -3.1492191126553797,
          -3.3823773034681137,
          -3.6615651537654403,
          -3.4649364291217326,
          -4.678973375919766,
          -4.026247181477774,
          -4.198106998873402,
          -3.3271545124094315,
          -7,
          -7,
          -4.455606112581867,
          -3.3444764855229927,
          -4.616065707908696,
          -7,
          -4.672051653937387,
          -5.0668102756258335,
          -3.8966364305295844,
          -3.6738499773429494,
          -4.332519251373731,
          -7,
          -4.235924686056476,
          -7,
          -7,
          -3.599056096864108,
          -4.963632019857728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.376540460188395,
          -7,
          -7,
          -4.992473985619664,
          -4.409015404360969,
          -5.706595753188616,
          -7,
          -7,
          -7,
          -3.877160099130066,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.325843928293292,
          -7,
          -3.7840107110782126,
          -2.7772196208195874,
          -3.74196530244959,
          -7,
          -2.82614071641586,
          -7,
          -7,
          -4.944546824551128,
          -4.002578793440226,
          -7,
          -4.347891794786546,
          -7,
          -3.311435968289161,
          -4.6100636631681216,
          -4.2996380249790755,
          -7,
          -7,
          -7,
          -7,
          -3.4276483711869328,
          -2.7714110818203803,
          -7,
          -3.4900428002642228,
          -2.32376758329678,
          -2.4740080192955194,
          -2.7318245278608315,
          -2.335959106148248,
          -7,
          -7,
          -2.718501688867274,
          -2.161368002234975,
          -3.2666259282807415,
          -3.6337713460825554,
          -2.0147495769008272,
          -3.3677285460869766,
          -3.052693941924968,
          -2.510927817178866,
          -2.3561169519982608,
          -2.846955325019824,
          -1.8561244442423004,
          -3.012133913649598,
          -2.451402613597493,
          -2.1391791757229104,
          -2.6972293427597176,
          -7,
          -2.7788744720027396,
          -2.3346631405199663,
          -2.8615344108590377,
          -7,
          -3.092687755629679,
          -3.5151659357206038,
          -2.505519312608658,
          -7,
          -2.690786555281818,
          -7,
          -2.8410464654093035,
          -3.4913616938342726,
          -7,
          -7,
          -3.1756567472816637,
          -2.8382192219076257,
          -1.7929301824152337,
          -2.2970025063809376,
          -7,
          -2.187608839834818,
          -2.5579080274827057,
          -1.6749317634685799,
          -7,
          -2.466496903744401,
          -3.0130479961152314,
          -2.9935684827897275,
          -3.053105894858664,
          -2.144885418287142,
          -3.564192460626198,
          -3.5397032389478253,
          -3.043165720207454,
          -2.752355804153501,
          -7,
          -2.919601023784111,
          -2.951337518795918,
          -3.3649260337899753,
          -3.253812677241476,
          -7,
          -2.062743102568688,
          -2.9542425094393248,
          -1.8191566912166992,
          -7,
          -7,
          -2.882382216314445,
          -2.0859146287065933,
          -7,
          -3.8150461760646306,
          -1.5899768306734643,
          -7,
          -7,
          -3.331042436293782,
          -2.790486226296973,
          -3.396896449142524,
          -3.00774777800074,
          -2.6441571283550034,
          -7,
          -2.3554788867405914,
          -2.6229310093415856,
          -2.182396242715304,
          -1.937676229923422,
          -1.772908194971272,
          -7,
          -7,
          -2.9822335322294484,
          -2.336173731545205,
          -2.824451270036613,
          -2.075546961392531,
          -3.012492105236467,
          -2.5149270491751405,
          -2.264548845239721,
          -2.3490237296492333,
          -2.037055702202493,
          -3.4734869700645685,
          -7,
          -3.2942457161381182,
          -7,
          -7,
          -2.9832653525665456,
          -2.4688683796431086,
          -7,
          -7,
          -7,
          -2.1942683822178575,
          -7,
          -7,
          -7,
          -2.334453751150931,
          -2.1020905255118367,
          -2.149834696715785,
          -1.5715424673240241,
          -2.333514445555875,
          -2.4265112613645754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.73559889969818,
          -3.420615770625765,
          -7,
          -3.6371226589692447,
          -3.0764948050097205,
          -3.671913012441587,
          -2.7748817658187965,
          -7,
          -2.7103591771903925,
          -7,
          -7,
          -3.898848543181547,
          -7,
          -7,
          -2.315105585855791,
          -2.553883026643874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9719249491841913,
          -3.26030994579492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.125188384168597,
          -7,
          -7,
          -7,
          -7,
          -4.209649035368229,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6577249542051082,
          -4.191540668110219,
          -7,
          -7,
          -7,
          -7,
          -3.1109262422664203,
          -7,
          -4.865376434126184,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.471438407389299,
          -7,
          -7,
          -7,
          -4.663958348341331,
          -7,
          -7,
          -7,
          -7,
          -3.632356046239073,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5097937283256178,
          -7,
          -3.2971036501492565,
          -3.3100557377508917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.954121855324949,
          -4.449308659474037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6748611407378116,
          -7,
          -5.125129784152959,
          -7,
          -7,
          -7,
          -7,
          -3.2686949535621777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.999644755141952,
          -7,
          -3.2373761539301436,
          -7,
          -7,
          -3.40840957846843,
          -7,
          -7,
          -7,
          -7,
          -4.146995757209465,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3613500243522663,
          -7,
          -3.62096843564429,
          -3.1454888972525032,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.753766848350539,
          -7,
          -7,
          -7,
          -7,
          -3.0874264570362855,
          -7,
          -7,
          -7,
          -7,
          -3.2180319499420165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.724275869600789,
          -3.2441946258862364,
          -4.151492428425498,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5191057562064487,
          -7,
          -7,
          -7,
          -3.5862371276818306,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.570893036218392,
          -3.2054750367408906,
          -7,
          -4.497950407312327,
          -2.841359470454855,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9218367044079674,
          -7,
          -7,
          -3.5744942682853273,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.62096843564429,
          -7,
          -3.65628990119136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.071145290451083,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5460488664017342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.71289287211251,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163911396227727,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.312811826212088,
          -7,
          -3.9306943876645355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.478566495593843,
          -7,
          -3.833147111912785,
          -3.1684974835230326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.318689269947746,
          -3.923295840655504,
          -7,
          -7,
          -7,
          -4.830556592575827,
          -3.5859117103194342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5106790310322102,
          -7,
          -4.983238270378447,
          -3.2617979705560107,
          -7,
          -7,
          -7,
          -7,
          -3.3049211619008916,
          -7,
          -2.9380190974762104,
          -7,
          -7,
          -7,
          -7,
          -3.6898414091375047,
          -7,
          -7,
          -3.306532247519607,
          -7,
          -4.856414683381129,
          -7,
          -4.513494376034757,
          -7,
          -3.784759894664005,
          -7,
          -3.7676010680503356,
          -7,
          -7,
          -7,
          -3.5229655954919865,
          -3.7763379096201755,
          -7,
          -7,
          -7,
          -7,
          -3.076094046682475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.656454147451837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.069926968752473,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.579943570379943,
          -7,
          -7,
          -4.222960855556619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9137291037285733,
          -7,
          -4.368119458615029,
          -3.919425538440869,
          -7,
          -3.6442415858437287,
          -7,
          -3.3289908554494287,
          -4.536194694903611,
          -3.9873533887357935,
          -7,
          -4.138397442990546,
          -4.059004571695273,
          -3.679309766985715,
          -7,
          -3.3936230567743357,
          -7,
          -7,
          -3.785472203306388,
          -4.370827547784376,
          -7,
          -7,
          -3.6106823385082976,
          -3.86442349007059,
          -5.229205571988446,
          -7,
          -7,
          -7,
          -4.051793839436376,
          -7,
          -4.928047457542404,
          -7,
          -3.515290862441523,
          -7,
          -3.8422138683580256,
          -4.129319230615535,
          -3.878722811233517,
          -7,
          -3.3655414661398932,
          -3.796851749049887,
          -4.420456357165732,
          -3.7073714338087607,
          -7,
          -3.6003787854957343,
          -4.256395392373177,
          -7,
          -4.30588853028431,
          -7,
          -3.2771506139637965,
          -3.492534750799617,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6889386481371726,
          -2.855317205195943,
          -3.065780743753253,
          -7,
          -3.2518814545525276,
          -3.3396898899664773,
          -7,
          -3.2762319579218335,
          -7,
          -3.13481437032046,
          -7,
          -3.4951139924860954,
          -2.4846283111753045,
          -2.625826713285711,
          -7,
          -4.12251077061032,
          -3.2946866242794433,
          -1.5168785621604606,
          -7,
          -7,
          -3.7685641095135733,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.307410454213674,
          -7,
          -7,
          -7,
          -3.771762409180194,
          -4.309892651745501,
          -2.505149978319906,
          -3.4220971631317103,
          -3.085035605826861,
          -7,
          -3.44544851426605,
          -7,
          -7,
          -3.247359422468937,
          -7,
          -2.716003343634799,
          -3.359645792674543,
          -2.8636202202703154,
          -7,
          -7,
          -7,
          -7,
          -2.9375178920173464,
          -7,
          -3.0767314430382817,
          -7,
          -7,
          -3.525692524505011,
          -3.0211892990699383,
          -7,
          -3.5398912045347903,
          -7,
          -7,
          -7,
          -3.302330928684399,
          -3.471757056646584,
          -7,
          -3.2786392978907393,
          -3.1734776434529945,
          -7,
          -3.840670561333409,
          -7,
          -3.2863816107479344,
          -7,
          -7,
          -3.3164596126484933,
          -7,
          -7,
          -2.9386626557296673,
          -3.2864462624614332,
          -3.604442066260723,
          -7,
          -3.524547568608145,
          -3.4449811120879446,
          -3.7257483329955483,
          -3.1099158630237933,
          -3.026655813877043,
          -7,
          -2.8353734524700087,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1319392952104246,
          -3.6825834061045346,
          -7,
          -3.458305392118017,
          -2.4591681041417863,
          -7,
          -2.9477603819114044,
          -7,
          -7,
          -7,
          -3.028571252692538,
          -7,
          -7,
          -7,
          -3.2219355998280053,
          -7,
          -3.0119579077781298,
          -2.987219229908005,
          -7,
          -7,
          -2.5327543789924976,
          -7,
          -7,
          -7,
          -3.315900405126321,
          -7,
          -7,
          -7,
          -7,
          -7,
          -0.8895046912839731,
          -2.0667916567545563,
          -2.1077750894177876,
          -1.4151745499581567,
          -1.6313840762796707,
          -2.0128023766022927,
          -2.0736013686667882,
          -3.642167634404945,
          -1.8553172051959428,
          -7,
          -2.4356320489516605,
          -1.6174663223693628,
          -7,
          -2.4105890203936555,
          -1.2859662492281052,
          -1.1583624920952496,
          -2.0396192169281915,
          -3.4094258686714434,
          -2.907052884087371,
          -0.5818566052396754,
          -1.9138138523837167,
          -1.9573782232921835,
          -1.7993405494535817,
          -3.164352855784437,
          -1.292256071356476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.00061029760018,
          -7,
          -7,
          -7,
          -4.197142664972563,
          -3.6111920608684343,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.670987603010034,
          -4.109506397038123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.264115066642318,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8656960599160706,
          -7,
          -7,
          -7,
          -7,
          -5.14153442905532,
          -2.826722520168992,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.139249217571607,
          -7,
          -3.3172756228920153,
          -7,
          -3.207742052606945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9708116108725178,
          -4.451479405124862,
          -7,
          -7,
          -7,
          -7,
          -3.43568513794163,
          -3.6375897858387,
          -7,
          -7,
          -4.824552105737333,
          -7,
          -7,
          -7,
          -7,
          -3.4019172505175748,
          -3.3242824552976926,
          -7,
          -7,
          -7,
          -7,
          -3.0225658278987413,
          -7,
          -7,
          -7,
          -3.815434696709049,
          -7,
          -3.720696668749796,
          -7,
          -7,
          -7,
          -7,
          -3.089551882886454,
          -3.2881373948820665,
          -7,
          -3.549095263822955,
          -7,
          -7,
          -7,
          -3.2764618041732443,
          -7,
          -3.3872118003137306,
          -7,
          -3.157859545331566,
          -2.963206442410132,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.079904467666721,
          -7,
          -4.754845043482116,
          -7,
          -7,
          -7,
          -7,
          -3.13481437032046,
          -7,
          -7,
          -7,
          -7,
          -3.154076015574228,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.553842587658613,
          -2.8870543780509568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8294324336175984,
          -7,
          -7,
          -7,
          -3.6971919664111508,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2778383330020473,
          -3.579040088400086,
          -7,
          -2.966610986681934,
          -4.130152966318875,
          -2.921686475483602,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6812970606493245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9534697432534016,
          -7,
          -4.041945072145264,
          -7,
          -3.59904568462527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3914644118391033,
          -7,
          -3.3784584677820555,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5870371177434555,
          -7,
          -4.633811715526896,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.942722190183571,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.48365860383744,
          -7,
          -7,
          -7,
          -7,
          -3.361580948311831,
          -3.3209766773428235,
          -3.455162210758403,
          -7,
          -4.410346942254636,
          -7,
          -7,
          -7,
          -3.993788813818705,
          -7,
          -3.6614813978436156,
          -3.719248398447946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.463743721247059,
          -3.13433651094868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1504494094608804,
          -7,
          -7,
          -4.831008647067558,
          -3.292532956594993,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9575594018974796,
          -7,
          -7,
          -7,
          -3.529173603261723,
          -7,
          -4.828423354273742,
          -3.3951515915045425,
          -7,
          -7,
          -7,
          -7,
          -3.621072371143626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0199466816788423,
          -7,
          -7,
          -7,
          -4.4950914223088745,
          -7,
          -3.1922188743934377,
          -4.717774488273178,
          -7,
          -7,
          -7,
          -7,
          -3.239674787646781,
          -3.485295438726089,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2991121572555873,
          -7,
          -7,
          -4.595562353005851,
          -7,
          -7,
          -7,
          -7,
          -4.37359235519894,
          -7,
          -4.289822980444232,
          -4.579440597139797,
          -7,
          -7,
          -7,
          -4.719065987963929,
          -4.997857997491355,
          -4.58155145789047,
          -7,
          -4.196682704664896,
          -4.62166432899245,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.774443968924965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.453012391121455,
          -7,
          -3.915220381223052,
          -7,
          -4.670477786047275,
          -3.7438083002149427,
          -3.5860243823869755,
          -2.958181497564948,
          -7,
          -7,
          -4.089347383665818,
          -3.5163149757779495,
          -7,
          -4.140618016861667,
          -4.184629925065294,
          -3.6805893065823088,
          -7,
          -3.1359432138552865,
          -3.345569756056392,
          -7,
          -3.7953933349312896,
          -7,
          -7,
          -7,
          -3.6297994823657387,
          -3.797656101724403,
          -5.104385525054603,
          -7,
          -3.690196080028514,
          -7,
          -4.256621546069706,
          -7,
          -4.50230248143607,
          -3.475307913956194,
          -3.7409676481411824,
          -7,
          -4.021272013951038,
          -3.9554632507055585,
          -3.7827950003893553,
          -7,
          -3.2600448734710765,
          -3.5053535061601866,
          -3.7842990115765605,
          -3.642393851544235,
          -7,
          -3.290059356781852,
          -4.478941471757991,
          -7,
          -4.268371227210525,
          -7,
          -3.594282028811806,
          -3.461841402144283,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6910225207762957,
          -7,
          -2.9530771516434475,
          -7,
          -7,
          -3.2632216936676484,
          -7,
          -7,
          -7,
          -2.9694935689446047,
          -7,
          -3.334599323559856,
          -2.249889274536743,
          -7,
          -7,
          -4.127104798364808,
          -7,
          -1.2328602186007682,
          -7,
          -2.49182842626168,
          -3.4776999283321306,
          -7,
          -7,
          -7,
          -3.226084115975824,
          -7,
          -3.234137489450963,
          -7,
          -7,
          -4.596652066132439,
          -3.5758768211262666,
          -4.310891478136077,
          -7,
          -7,
          -2.7058134205252036,
          -7,
          -2.6872316010647745,
          -7,
          -2.9135489579065177,
          -3.0463976029545603,
          -7,
          -7,
          -7,
          -2.9036325160842376,
          -7,
          -2.9628426812012423,
          -2.7651716502632686,
          -2.823800153749878,
          -7,
          -3.2771506139637965,
          -3.384487822086762,
          -7,
          -7,
          -2.843606471924511,
          -3.0402066275747113,
          -7,
          -3.5442851373225057,
          -7,
          -7,
          -7,
          -3.331832044436249,
          -3.3016301591867827,
          -2.762678563727436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.774224904868919,
          -7,
          -7,
          -3.326199268859092,
          -7,
          -7,
          -2.7517688440873256,
          -3.1530217436261383,
          -7,
          -7,
          -3.4605971888976015,
          -7,
          -7,
          -3.1550322287909704,
          -3.1294481922680633,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.05903300496378,
          -7,
          -3.0670708560453703,
          -3.4553017716570764,
          -3.5294175204160725,
          -3.3289908554494287,
          -4.161757195261727,
          -2.479374231246622,
          -7,
          -2.445136968713304,
          -7,
          -3.2550311633455515,
          -7,
          -2.643551368562945,
          -3.366142676814887,
          -3.6871721045948,
          -7,
          -7,
          -7,
          -2.721740474382757,
          -3.0461047872460387,
          -7,
          -7,
          -7,
          -7,
          -2.73559889969818,
          -7,
          -3.3256524705723134,
          -7,
          -7,
          -7,
          -7,
          -0.8895046912839731,
          -7,
          -2.0293837776852097,
          -2.18089014193745,
          -1.2603842239301006,
          -1.6456405626343629,
          -2.051875744066477,
          -1.8654808495638453,
          -7,
          -2.002166061756508,
          -7,
          -2.0979382336289936,
          -1.8388490907372554,
          -7,
          -2.4348048695286773,
          -1.0352390909111167,
          -0.8542527574035039,
          -1.844040718781357,
          -3.131297796597623,
          -2.7091002815511667,
          -1.2463344173155233,
          -1.458098017406232,
          -2.04766419460156,
          -2.2430380486862944,
          -2.809367293505889,
          -1.0260558343362822,
          -3.077731179652392,
          -1.7719023011066422,
          -7,
          -7,
          -7,
          -2.895422546039408,
          -2.979548374704095,
          -7,
          -7,
          -7,
          -7,
          -4.1263181429721,
          -7,
          -7,
          -2.979092900638326,
          -4.2046896204203605,
          -4.220683277974345,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.34519723192998,
          -3.0011385293481347,
          -2.846955325019824,
          -3.394626764272209,
          -4.0407349395278604,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.91350184863534,
          -7,
          -7,
          -7,
          -7,
          -3.0661394928706995,
          -3.0043213737826426,
          -7,
          -7,
          -3.415974411376566,
          -7,
          -3.8870199535759746,
          -7,
          -7,
          -7,
          -7,
          -2.8935768378559144,
          -3.035829825252828,
          -7,
          -7,
          -7,
          -7,
          -3.5482612020793662,
          -3.1911714557285586,
          -3.319366349687303,
          -3.5148796552227934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4253168014790023,
          -3.8535461212539044,
          -7,
          -7,
          -3.45484486000851,
          -7,
          -7,
          -2.9646367037885013,
          -7,
          -7,
          -4.649351087649642,
          -7,
          -7,
          -7,
          -7,
          -3.292422223682128,
          -7,
          -7,
          -7,
          -3.4916417934775863,
          -7,
          -3.2352758766870524,
          -7,
          -7,
          -7,
          -4.189796460324443,
          -7,
          -3.555779424013014,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9882913419074875,
          -7,
          -7,
          -7,
          -3.66228551572213,
          -3.3044905277734875,
          -7,
          -7,
          -7,
          -7,
          -4.390705541226371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8603380065709936,
          -7,
          -4.9953850742482295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8584082821730847,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7183434903473924,
          -2.638949802577757,
          -4.164085057458859,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7672300981107183,
          -7,
          -7,
          -7,
          -7,
          -3.3150190151160137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.302330928684399,
          -2.4059204236653433,
          -2.6519238051682956,
          -2.379406247075376,
          -2.227942566017301,
          -2.399673721481038,
          -7,
          -3.861675308158829,
          -7,
          -7,
          -7,
          -3.143014800254095,
          -3.0273496077747564,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6296269035573974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.694517453811156,
          -7,
          -7,
          -2.8834721588455867,
          -7,
          -2.9745116927373285,
          -3.3869980727100555,
          -7,
          -3.4802944600030066,
          -7,
          -2.9894498176666917,
          -7,
          -7,
          -3.1647245241698965,
          -3.4068806700491248,
          -7,
          -7,
          -7,
          -2.917038463418648,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4511209284376467,
          -3.3157604906657347,
          -3.8408272275743864,
          -7,
          -7,
          -2.738780558484369,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2141813086638207,
          -7,
          -7,
          -2.950364854376123,
          -2.3961993470957363,
          -7,
          -2.637989780784685,
          -2.3577231509290413,
          -3.4253464559371563,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.109240968588203,
          -7,
          -3.1332194567324945,
          -3.409172018991404,
          -3.3400473176613934,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1452378543373385,
          -7,
          -7,
          -2.66149717917983,
          -4.014680114759413,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.674355853325486,
          -7,
          -7,
          -7,
          -7,
          -2.9454685851318194,
          -2.765420173578722,
          -3.201806642957022,
          -2.149512356746132,
          -7,
          -7,
          -2.6441923209713596,
          -7,
          -7,
          -7,
          -2.920123326290724,
          -3.098693158915045,
          -7,
          -7,
          -7,
          -4.655794505154385,
          -3.064190484147994,
          -7,
          -7,
          -7,
          -7,
          -2.8419848045901137,
          -3.3432115901797474,
          -3.9705793057148506,
          -3.0678145111618402,
          -2.9036325160842376,
          -2.3059373301587254,
          -2.1256619582273957,
          -7,
          -5.226548998271254,
          -3.8882918453565156,
          -7,
          -7,
          -7,
          -7,
          -3.347622699467242,
          -7,
          -2.259389071298138,
          -7,
          -7,
          -3.3820170425748683,
          -7,
          -7,
          -7,
          -7,
          -3.34908316877959,
          -7,
          -4.557885991687047,
          -7,
          -4.185237358982509,
          -7,
          -3.2110537626799363,
          -4.174811308156082,
          -3.7974752875373343,
          -7,
          -7,
          -7,
          -3.574147064150723,
          -3.504470862494419,
          -3.7460890430562004,
          -7,
          -7,
          -7,
          -7,
          -2.531478917042255,
          -2.8095597146352675,
          -2.8379039445929424,
          -3.071697945221614,
          -2.18590624134928,
          -3.205840177622518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.378634063849602,
          -7,
          -7,
          -4.581016156545554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.776454190482185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8692317197309762,
          -4.3719816906773925,
          -4.1129027694460705,
          -7,
          -7,
          -7,
          -7,
          -4.6341622672587635,
          -1.916102861641635,
          -2.6865085919184652,
          -7,
          -4.118977648033631,
          -3.22034258343606,
          -7,
          -3.964746621944139,
          -3.84060787900929,
          -2.244524511570084,
          -7,
          -4.077404246398098,
          -7,
          -7,
          -4.147791120013851,
          -4.6432622784087,
          -7,
          -2.70372115992702,
          -2.3485588116852982,
          -7,
          -3.3884084627688495,
          -7,
          -7,
          -7,
          -3.6231717308866838,
          -7,
          -4.328012438855587,
          -7,
          -4.085868301491028,
          -7,
          -4.221961651505041,
          -7,
          -4.5988452003570295,
          -7,
          -7,
          -3.2544000860757474,
          -3.6349951780447043,
          -7,
          -3.528336162914621,
          -7,
          -3.623766000133931,
          -3.6110006527050493,
          -4.000867721531227,
          -7,
          -2.8943160626844384,
          -7,
          -7,
          -7,
          -4.172310968521954,
          -2.0605261485221984,
          -3.589977511385285,
          -7,
          -7,
          -3.393692169195935,
          -3.4360035356698964,
          -1.5181149554842737,
          -2.9903388547876015,
          -3.166800009514995,
          -7,
          -3.4565799526055105,
          -3.1668246580284043,
          -2.8000293592441343,
          -7,
          -4.1359590921245575,
          -7,
          -0.7158076493735616,
          -7,
          -7,
          -3.7983743766815614,
          -7,
          -7,
          -3.021602716028242,
          -3.5615783683009608,
          -7,
          -4.024198232206868,
          -7,
          -7,
          -7,
          -3.949358635926558,
          -4.7899894334126945,
          -7,
          -7,
          -2.153126132579586,
          -7,
          -2.222305661264923,
          -7,
          -2.2785249647370174,
          -2.7248539013834177,
          -7,
          -7,
          -3.4323277922616042,
          -7,
          -7,
          -3.0770043267933502,
          -7,
          -7,
          -7,
          -2.556101391950587,
          -3.99899997221832,
          -4.202842365194632,
          -7,
          -2.6204830741547482,
          -2.1316926770993665,
          -7,
          -4.155001836231253,
          -7,
          -7,
          -3.9121157290788537,
          -2.266086895660994,
          -3.054904096730085,
          -3.5022905279147727,
          -7,
          -7,
          -7,
          -7,
          -2.775974331129369,
          -3.4927603890268375,
          -7,
          -2.910268571619067,
          -3.822037248072585,
          -7,
          -7,
          -3.8133808067338557,
          -3.354411752731074,
          -2.3007337847975,
          -2.714664992862537,
          -2.9887712324006594,
          -3.5055569386638217,
          -7,
          -7,
          -3.198499990015866,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4954055631461936,
          -4.05600230865876,
          -3.3818367999983434,
          -7,
          -2.6134853541155074,
          -7,
          -2.885785128783473,
          -7,
          -2.1654139227229567,
          -7,
          -1.981610995889209,
          -2.6112806471985532,
          -7,
          -2.8830933585756897,
          -2.6182573448404014,
          -2.3474694133222886,
          -3.2858860643833867,
          -2.234896745731588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4890204780193703,
          -7,
          -7,
          -7,
          -1.532674772268436,
          -7,
          -2.0667916567545563,
          -2.0293837776852097,
          -7,
          -3.077731179652392,
          -1.5146654180326051,
          -1.9777236052888478,
          -2.1777377796253714,
          -1.9753953330981715,
          -7,
          -2.4119562379304016,
          -1.3716834463321412,
          -2.148626380910713,
          -2.4738517701548153,
          -7,
          -2.5506405275389614,
          -1.0089069310767398,
          -0.9494303329815315,
          -2.214843848047698,
          -2.7746629225378223,
          -2.85079934446789,
          -2.1527977807838794,
          -2.3584107862063366,
          -2.255272505103306,
          -1.8959747323590646,
          -3.681331705969166,
          -1.152596646205211,
          -2.3192548157701802,
          -2.846337112129805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.904068760153015,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1918304604119605,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.167831093602893,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.840836625751898,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3072338845509375,
          -7,
          -3.6117763969973113,
          -3.8047526021504607,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1083394747888384,
          -3.2766149674553477,
          -7,
          -7,
          -3.42845877351558,
          -7,
          -3.7453871213200087,
          -7,
          -7,
          -7,
          -4.648805462934326,
          -7,
          -3.3848907965305544,
          -7,
          -7,
          -3.8854177651109363,
          -7,
          -7,
          -7,
          -3.4674601095072637,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.6287362267356755,
          -7,
          -4.026247181477774,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.406028944963615,
          -7,
          -3.344883279369863,
          -3.6027109449575576,
          -7,
          -7,
          -7,
          -3.2054750367408906,
          -3.6093987370065896,
          -7,
          -7,
          -7,
          -7,
          -3.647969458362972,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.700919945420287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.336179453437444,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1869563354654122,
          -7,
          -3.535167485114944,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0145205387579237,
          -4.411175696829874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.450662800025085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.602963830326207,
          -7,
          -3.7692295817365937,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.058236168942767,
          -3.8623103099542706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.136625455760932,
          -4.671692775575364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.098188677117789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6959192528313998,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.017346419558815,
          -3.3428173146357327,
          -4.535989952876927,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.697403723200488,
          -7,
          -3.9676883504533125,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.354207713411756,
          -3.9008585047019917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.05034688321775,
          -3.8787515201730023,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.633670406051444,
          -7,
          -7,
          -7,
          -4.22212834524257,
          -7,
          -7,
          -4.417176804312706,
          -3.7856856682809013,
          -7,
          -7,
          -7,
          -7,
          -3.7940695839816327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.505109261303588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.375572173918037,
          -7,
          -7,
          -3.880996414629062,
          -7,
          -3.612571954065176,
          -4.3069608628831935,
          -7,
          -7,
          -4.105612359686785,
          -7,
          -7,
          -4.446122763910614,
          -7,
          -7,
          -7,
          -4.911068786880192,
          -7,
          -4.5336703976909245,
          -7,
          -7,
          -7,
          -3.8883480101780488,
          -7,
          -4.298081281898712,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.615413424407249,
          -7,
          -4.671478315597623,
          -4.1634371956104115,
          -7,
          -7,
          -7,
          -7,
          -4.633738543145729,
          -3.3960248966085933,
          -3.511214701136388,
          -3.238782899762625,
          -4.361250794303581,
          -3.8365230388765568,
          -7,
          -4.138223728353917,
          -7,
          -7,
          -7,
          -3.8982130849457537,
          -7,
          -7,
          -4.214004460658973,
          -4.585030452089273,
          -5.104477721982713,
          -7,
          -7,
          -2.968015713993642,
          -3.751885076250019,
          -3.787956123283932,
          -4.803530516138413,
          -7,
          -3.618806141984161,
          -7,
          -2.9812830767955023,
          -3.957192106805308,
          -3.6695814827928674,
          -7,
          -7,
          -7,
          -3.7526958379880133,
          -4.489184774579998,
          -7,
          -3.9441518901855095,
          -3.752336600753975,
          -7,
          -3.508691677048606,
          -7,
          -7,
          -3.3537666767989336,
          -4.298285285484084,
          -7,
          -7,
          -7,
          -2.5397032389478253,
          -3.7237839369653294,
          -3.470645657886728,
          -7,
          -3.7102584385195545,
          -7,
          -7,
          -2.671054613726539,
          -7,
          -7,
          -2.9084850188786495,
          -2.675854687720147,
          -2.826722520168992,
          -2.8378450212522504,
          -2.671584203846386,
          -2.737987326333431,
          -3.3560258571931225,
          -3.6533411745619175,
          -2.7431176252147416,
          -1.9682961150462555,
          -3.1290450598879582,
          -7,
          -3.78660947264866,
          -2.552668216112193,
          -7,
          -7,
          -3.541079767776629,
          -7,
          -2.567824277243263,
          -2.8228216453031045,
          -7,
          -3.8987800132898256,
          -3.492659134941496,
          -3.533291784717795,
          -7,
          -2.858236335429513,
          -3.3408900787491365,
          -2.8211858826088454,
          -7,
          -7,
          -2.94126290931895,
          -3.2534349352410055,
          -7,
          -2.885926339801431,
          -2.801403710017355,
          -7,
          -3.090169844444793,
          -7,
          -2.9677819080757994,
          -3.159266331093494,
          -2.745465168670727,
          -3.3012470886362113,
          -3.9916247345340055,
          -2.8167658936635127,
          -7,
          -3.0791812460476247,
          -3.531861949095809,
          -7,
          -3.6726211599937417,
          -3.0107238653917734,
          -2.4065401804339555,
          -3.9030899869919438,
          -3.3531465462139796,
          -3.267947678534008,
          -2.875784485010796,
          -2.8282301147269613,
          -3.2405492482826,
          -7,
          -3.5548524343720542,
          -7,
          -1.946393600352454,
          -2.0573807905423553,
          -3.0557604646877348,
          -3.333514445555875,
          -7,
          -7,
          -3.3246253644997976,
          -3.9327780700605506,
          -3.1530013881396495,
          -7,
          -2.6629723510645,
          -3.00446468164796,
          -7,
          -2.885078384149224,
          -2.6204563902137306,
          -3.0709609158009337,
          -1.9450306778782789,
          -2.688419822002711,
          -7,
          -2.754348335711019,
          -4.061075323629792,
          -3.4771212547196626,
          -7,
          -2.5148427896837955,
          -3.2295154631250256,
          -3.350441856535061,
          -2.7162120888836645,
          -2.5039268041935103,
          -2.97285055584723,
          -3.1630122097748297,
          -7,
          -7,
          -7,
          -7,
          -3.074725039091243,
          -7,
          -7,
          -7,
          -7,
          -2.4860542124935545,
          -7,
          -7,
          -7,
          -2.4683473304121573,
          -7,
          -7,
          -7,
          -3.2079035303860515,
          -2.958324931644053,
          -7,
          -7,
          -2.73559889969818,
          -2.1077750894177876,
          -2.18089014193745,
          -3.077731179652392,
          -7,
          -1.9867717342662448,
          -1.3744029614591415,
          -2.105612359686785,
          -1.7262624417714705,
          -3.3649260337899753,
          -1.482465220173021,
          -7,
          -2.0955429381058917,
          -2.3100557377508917,
          -2.4321672694425884,
          -2.459738214092112,
          -2.2918866162241116,
          -2.151905874537198,
          -1.2586068361221225,
          -2.4929155219028942,
          -2.0985613248146464,
          -2.362356792654536,
          -1.6830470382388496,
          -1.919078092376074,
          -2.019116290447073,
          -2.4073909044707316,
          -1.768816650063645,
          -2.6368220975871743,
          -7,
          -7,
          -7,
          -7,
          -3.0334237554869494,
          -7,
          -3.2340108175871793,
          -3.193820026016113,
          -7,
          -7,
          -3.0879883443610066,
          -7,
          -7,
          -7,
          -3.3370347431766225,
          -3.5560611590095323,
          -3.176814480674777,
          -7,
          -7,
          -7,
          -7,
          -3.1947732688446826,
          -7,
          -7,
          -3.8020892578817325,
          -3.3279693044605367,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.030698006758963,
          -3.458033192496506,
          -7,
          -7,
          -3.4050046650503694,
          -3.5690225860295635,
          -7,
          -3.375846436309156,
          -7,
          -7,
          -7,
          -4.105228305092498,
          -7,
          -7,
          -3.2847690133490195,
          -7,
          -2.782759192623997,
          -7,
          -7,
          -7,
          -3.0037476689675056,
          -7,
          -2.7227551756750508,
          -2.6083315007712975,
          -2.5707673930792567,
          -2.897901874268228,
          -7,
          -7,
          -3.6496268868405295,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.28070841812527,
          -3.361844019667805,
          -7,
          -7,
          -2.8467493518208467,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.875546758345239,
          -7,
          -3.2975416678181597,
          -7,
          -7,
          -2.0488827895528776,
          -7,
          -3.392169149489736,
          -7,
          -2.695287056508494,
          -3.130976691605617,
          -2.982994454658664,
          -3.716086853774832,
          -3.5476516583599693,
          -7,
          -3.02980974554449,
          -3.712397131406715,
          -2.5513423438970744,
          -7,
          -7,
          -3.3376588910261424,
          -3.5424519473759766,
          -3.312811826212088,
          -3.26583941549449,
          -7,
          -3.3538063594424754,
          -7,
          -7,
          -7,
          -2.3988865280773632,
          -7,
          -3.134283382991931,
          -7,
          -2.8206392563794713,
          -2.4706770949744215,
          -7,
          -7,
          -3.4784221877400805,
          -7,
          -3.459844642388208,
          -7,
          -7,
          -3.285669805960068,
          -3.716504163773217,
          -3.7774268223893115,
          -7,
          -7,
          -3.5629393628164787,
          -7,
          -3.9358094538099326,
          -7,
          -4.399297227459307,
          -3.1781132523146316,
          -3.1747380145272865,
          -7,
          -7,
          -7,
          -2.1590547896953014,
          -7,
          -7,
          -7,
          -4.398547595734928,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8616749478659766,
          -2.5914974484339126,
          -3.248545405594516,
          -3.3376588910261424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0787674351712444,
          -7,
          -7,
          -7,
          -2.9383171596692224,
          -7,
          -3.321598430465344,
          -7,
          -3.203168922875464,
          -7,
          -3.5067755366066433,
          -7,
          -7,
          -7,
          -3.2487087356009177,
          -3.1870975005834774,
          -3.531223374533027,
          -7,
          -3.4769475021740748,
          -3.395675785269936,
          -7,
          -7,
          -7,
          -7,
          -3.0746336182969043,
          -7,
          -3.157629432675573,
          -7,
          -4.317520127284809,
          -7,
          -3.541079767776629,
          -2.8857923101128033,
          -7,
          -3.8101652845431495,
          -3.4428715548211977,
          -3.505421327583281,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.474871583227693,
          -7,
          -3.8010605298478555,
          -7,
          -4.026778328659529,
          -3.0875448095324267,
          -3.8972237615049465,
          -7,
          -3.433449793761596,
          -7,
          -3.5693739096150456,
          -7,
          -3.5224442335063197,
          -7,
          -7,
          -3.25653735366673,
          -3.594171479114912,
          -7,
          -2.768003476952656,
          -3.7855077880892263,
          -2.903435311184991,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.993744756554462,
          -3.440436766105774,
          -3.2795243607444062,
          -4.080859627349738,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3191060593097763,
          -7,
          -7,
          -3.3230457354817013,
          -7,
          -3.5369370227046737,
          -3.4320942849063436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.949145952419944,
          -3.8890214220952246,
          -3.216429830876251,
          -7,
          -7,
          -7,
          -2.223798690700624,
          -7,
          -2.9979321862561354,
          -7,
          -4.424072704144278,
          -3.455758203104137,
          -7,
          -7,
          -3.2155242642956994,
          -7,
          -2.8027737252919755,
          -2.83714634390906,
          -3.6335189520021656,
          -2.911290807477995,
          -7,
          -3.353723937588949,
          -7,
          -3.6590600722409383,
          -3.6413749451921253,
          -7,
          -7,
          -3.497620649781288,
          -7,
          -7,
          -7,
          -2.985650973690949,
          -2.9652444739103614,
          -7,
          -3.6452257115354163,
          -3.517591730711908,
          -3.7057782128285974,
          -2.862819170960624,
          -7,
          -4.32236403543911,
          -7,
          -3.446847710155809,
          -3.0451664480652285,
          -3.5538830266438746,
          -3.1265778156833792,
          -2.9893608137762473,
          -7,
          -7,
          -3.400710636773231,
          -3.2997251539756367,
          -3.899971697328381,
          -2.7538701957509053,
          -7,
          -7,
          -7,
          -7,
          -2.919750317179154,
          -7,
          -7,
          -7,
          -7,
          -3.276921132065774,
          -7,
          -3.2229114697957306,
          -7,
          -7,
          -2.5605044151950564,
          -7,
          -4.02195086208636,
          -3.416007740449289,
          -3.796965553865301,
          -7,
          -2.4313082951657576,
          -4.071321397569312,
          -3.5824610945249487,
          -7,
          -7,
          -3.367355921026019,
          -2.7083359026822635,
          -3.8903092168999485,
          -7,
          -3.2774946096110122,
          -7,
          -7,
          -2.6190933306267428,
          -7,
          -3.426185825244511,
          -3.4401216031878037,
          -7,
          -7,
          -2.717761491475825,
          -7,
          -7,
          -4.613397790379954,
          -7,
          -7,
          -7,
          -4.72657236725846,
          -3.3611953702529753,
          -3.9651546459869254,
          -3.5672937724121385,
          -3.8105237427378844,
          -7,
          -7,
          -7,
          -4.130446348767577,
          -4.306004469823467,
          -3.9978339925302993,
          -7,
          -4.2116277231686166,
          -3.629969946292171,
          -7,
          -4.346392098317329,
          -7,
          -4.6127626711063305,
          -4.311160272879129,
          -4.552862814292621,
          -7,
          -7,
          -4.196747128441428,
          -4.230755374041985,
          -7,
          -3.4638361311346295,
          -7,
          -4.391199840108775,
          -4.356599435724971,
          -7,
          -7,
          -7,
          -7,
          -4.176525336535,
          -7,
          -3.631190018213138,
          -7,
          -3.7823203077273884,
          -2.763309942668417,
          -3.192846115188842,
          -2.8370971945258145,
          -3.5161385767170743,
          -3.29269900304393,
          -3.426458707426532,
          -3.0187761267869226,
          -3.2027606873931997,
          -3.512402718924654,
          -3.279932199005493,
          -3.05125779319857,
          -7,
          -2.6481797995677563,
          -3.219898739044966,
          -3.3544926005894364,
          -3.897352134344313,
          -3.448259603224894,
          -3.3229081045244717,
          -7,
          -2.9260719967632776,
          -3.2019697799138243,
          -4.452557318494008,
          -3.378216149749878,
          -3.213916009644023,
          -7,
          -3.0489247370565566,
          -3.8854177651109363,
          -4.45395843547477,
          -3.8327004709605674,
          -3.4141851761757067,
          -3.338257230246256,
          -3.0992968870134994,
          -3.9811841373983543,
          -3.1407663501232905,
          -3.2773035345575963,
          -2.663507637160854,
          -3.428836444372765,
          -3.1142988325370893,
          -2.846431244791793,
          -3.437433443797971,
          -2.719706525314566,
          -3.2645155999758346,
          -3.4222614508136027,
          -3.697423094483611,
          -7,
          -3.2692793897718984,
          -2.6842880577485695,
          -4.029708362514895,
          -7,
          -7,
          -7,
          -7,
          -3.834929096460576,
          -2.4773179778843373,
          -2.2696241164908653,
          -2.0820304601868975,
          -2.7643629658980102,
          -3.2524889444849885,
          -2.601267970296191,
          -3.3120715213029315,
          -2.8661691476337707,
          -2.8939466075520737,
          -2.2430380486862944,
          -7,
          -2.4652809689598794,
          -1.6763418117264048,
          -3.1202447955463652,
          -7,
          -3.274100093497666,
          -3.274388795550379,
          -0.8613293708732156,
          -7,
          -7,
          -2.4500208926115854,
          -7,
          -2.9596772555121413,
          -2.636738571385955,
          -2.2985911112975694,
          -7,
          -2.7972675408307164,
          -7,
          -7,
          -3.8361869262013224,
          -2.5088385055893094,
          -3.307799585981291,
          -2.846955325019824,
          -3.345765693114488,
          -2.188587626698794,
          -7,
          -2.3564083270389813,
          -7,
          -2.190064768547934,
          -2.163269826589994,
          -7,
          -3.062769949815128,
          -3.1333259667224587,
          -2.2065560440990297,
          -7,
          -2.6300887149282057,
          -3.230576636268741,
          -2.518660142364339,
          -3.1233615587462964,
          -2.145755623637207,
          -2.5341415331616393,
          -4.238773501720696,
          -7,
          -2.1255668662689016,
          -2.1976806451938993,
          -7,
          -2.938714257982389,
          -7,
          -7,
          -3.2011238972073794,
          -2.400365273349939,
          -2.4996695373751536,
          -2.0273496077747564,
          -3.2702905531667605,
          -3.516403148447403,
          -3.4207806195485655,
          -3.9406160823374075,
          -3.1089031276673134,
          -2.5998830720736876,
          -7,
          -2.3229081045244717,
          -1.9300848514495261,
          -2.8963884118460372,
          -2.847572659142112,
          -1.819373724102534,
          -2.462397997898956,
          -2.72166075514139,
          -3.121887985103681,
          -2.4860011910312005,
          -3.660770643527697,
          -3.249504090935526,
          -2.885785128783473,
          -2.170120274429075,
          -3.4954055631461936,
          -3.0225658278987413,
          -3.478854967528663,
          -7,
          -3.3246939138617746,
          -3.435808987019662,
          -3.6574383227029625,
          -2.4473131088235682,
          -2.0784960072323395,
          -2.9058326626454822,
          -2.7987657055815633,
          -3.3051094301418535,
          -1.7443845311071429,
          -3.7958105246674085,
          -1.977425360239766,
          -7,
          -2.358315640082196,
          -7,
          -2.20987713787046,
          -2.1304036975639766,
          -7,
          -7,
          -2.3045918918728865,
          -7,
          -2.10490328559909,
          -2.8385342705118686,
          -7,
          -7,
          -3.329194415088451,
          -7,
          -3.3416323357780544,
          -3.362670929725667,
          -3.3010299956639813,
          -3.225438516805496,
          -7,
          -3.4029488293444046,
          -3.420615770625765,
          -1.4151745499581567,
          -1.2603842239301006,
          -1.5146654180326051,
          -1.9867717342662448,
          -7,
          -1.3533961305050177,
          -1.3201889594210516,
          -1.666603061264704,
          -3.790988475088816,
          -1.5527196149502795,
          -2.3729120029701067,
          -1.1750283506819905,
          -1.468383357993737,
          -7,
          -1.6885097614621598,
          -1.1168864858535805,
          -1.1903316981702914,
          -1.4432861381014097,
          -2.5960970443542855,
          -1.9341827155103566,
          -1.679427896612119,
          -1.6806507621222833,
          -1.422175743255142,
          -1.6289099792812627,
          -2.1723323383021844,
          -0.9445149269299304,
          -2.2458210061174126,
          -2.3600461515081728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.516654072656089,
          -7,
          -7,
          -7,
          -4.219977256744623,
          -3.7582051477637246,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.356312741150645,
          -3.63382180730168,
          -7,
          -7,
          -3.7666312408284446,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9680332443643405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.299055679117874,
          -7,
          -7,
          -3.4847268042986617,
          -7,
          -3.722633922533812,
          -7,
          -7,
          -7,
          -3.3479151865016914,
          -7,
          -3.0930447510064027,
          -3.5660837841679958,
          -2.908241238641037,
          -3.5513889972730204,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7066229685645444,
          -3.2085607829433496,
          -7,
          -7,
          -3.0569048513364727,
          -7,
          -7,
          -3.4140536750309463,
          -7,
          -7,
          -4.429348472923662,
          -7,
          -7,
          -7,
          -7,
          -2.810284228953281,
          -3.4712917110589387,
          -7,
          -7,
          -7,
          -3.2796669440484556,
          -3.12602311790052,
          -7,
          -3.43568513794163,
          -7,
          -3.7701610584356504,
          -7,
          -3.054881054862772,
          -7,
          -7,
          -7,
          -7,
          -3.519827993775719,
          -7,
          -7,
          -3.8755531851015124,
          -7,
          -7,
          -7,
          -3.712060142461075,
          -7,
          -3.5170638734826545,
          -7,
          -2.867299091392458,
          -2.8880038865883257,
          -7,
          -7,
          -7,
          -7,
          -3.7985643303338046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8976820617964196,
          -4.284137344987011,
          -7,
          -7,
          -7,
          -4.997897275474923,
          -3.0437551269686796,
          -3.5667909123815917,
          -7,
          -7,
          -7,
          -2.7610921743529877,
          -3.587935348636356,
          -7,
          -7,
          -3.5390940296563826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3649260337899753,
          -3.1940284373527064,
          -7,
          -7,
          -7,
          -3.9279346817411795,
          -7,
          -7,
          -7,
          -7,
          -3.1815005884677596,
          -7,
          -7,
          -7,
          -3.2737077590078454,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.41161970596323,
          -7,
          -7,
          -3.137354111370733,
          -3.9262909868848634,
          -7,
          -7,
          -3.9484893763004485,
          -2.9250541203118425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9672202597829673,
          -7,
          -3.999348069206721,
          -3.1360860973840974,
          -3.7890163267933747,
          -3.5420455433005573,
          -7,
          -3.752586178740409,
          -7,
          -7,
          -7,
          -3.4008832155483626,
          -3.4391747398434687,
          -7,
          -7,
          -3.7134065321676912,
          -7,
          -7,
          -7,
          -3.992730203954143,
          -7,
          -7,
          -3.1809855807867304,
          -3.151437953506484,
          -7,
          -3.8208579894396997,
          -3.2576785748691846,
          -3.101403350555331,
          -7,
          -7,
          -3.5067079263501197,
          -3.494988973683168,
          -7,
          -3.52022143588196,
          -3.8959747323590648,
          -3.6033067965385137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.159537116397021,
          -4.391472808302644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6245865503192305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4412236742426123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9903590390407087,
          -7,
          -3.5450472044011843,
          -7,
          -4.241355521703736,
          -7,
          -7,
          -7,
          -4.029708362514895,
          -7,
          -3.398764385277643,
          -3.7845459740545224,
          -3.892150277901364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4126285205443754,
          -7,
          -7,
          -3.971832279924925,
          -7,
          -3.5582284218033258,
          -3.094994900944612,
          -3.8124135509583827,
          -3.638439335179549,
          -7,
          -7,
          -7,
          -7,
          -3.074450718954591,
          -7,
          -3.9964678902617172,
          -3.6111920608684343,
          -3.8448498008066387,
          -3.1487568513217923,
          -3.6265456590271294,
          -7,
          -4.297461182997396,
          -3.2200034261569357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5386993795424067,
          -7,
          -2.871864702088195,
          -7,
          -7,
          -7,
          -7,
          -2.856642592422956,
          -7,
          -4.862363974774405,
          -7,
          -3.9949205954815543,
          -7,
          -3.0043827972297295,
          -4.42024875711693,
          -3.8355003278673188,
          -7,
          -7,
          -7,
          -3.158463011591568,
          -3.5418287667813124,
          -7,
          -3.475525915039281,
          -7,
          -7,
          -3.2271150825891253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.172085226479833,
          -7,
          -7,
          -4.604830619429156,
          -4.778310462506569,
          -7,
          -7,
          -4.719985550860369,
          -3.4855972232092967,
          -7,
          -4.600243016285841,
          -4.408172101497054,
          -7,
          -7,
          -7,
          -4.123949591081828,
          -4.399466041004344,
          -7,
          -7,
          -7,
          -4.148890444031688,
          -4.065355601289965,
          -7,
          -7,
          -4.38948149803539,
          -7,
          -7,
          -7,
          -7,
          -4.365413100076178,
          -7,
          -7,
          -4.00238207493276,
          -7,
          -7,
          -7,
          -4.216429830876251,
          -7,
          -4.113375057094903,
          -7,
          -4.465828815357437,
          -7,
          -3.84490152901065,
          -7,
          -3.979247815423111,
          -3.5376117097515545,
          -3.6314437690131722,
          -3.4311224224012324,
          -3.442675706122545,
          -3.1934029030624176,
          -3.982324008676067,
          -2.7269715836828765,
          -3.1230890516896657,
          -3.07391682215682,
          -3.5864044349502087,
          -3.6468134968556387,
          -7,
          -2.905734219276379,
          -3.3978241813658694,
          -2.8627275283179747,
          -3.373463721632369,
          -3.2744065555635453,
          -7,
          -7,
          -3.313814511529729,
          -3.6024813908768083,
          -4.34541038552945,
          -2.898999270889789,
          -2.8042151791711407,
          -3.2229764498933915,
          -3.45425397010459,
          -7,
          -4.151534982202108,
          -3.8063156698081135,
          -3.0351043958312034,
          -7,
          -2.9071724091966717,
          -3.6677641635674796,
          -3.2570217673283017,
          -3.6886867242841235,
          -3.3332204954403872,
          -3.2582181084242725,
          -3.5048132696049445,
          -3.6542453192131115,
          -7,
          -3.169159910621571,
          -3.579716923486651,
          -7,
          -3.051818806655435,
          -7,
          -7,
          -2.935024167906121,
          -3.7120180004512506,
          -3.1746411926604483,
          -7,
          -7,
          -7,
          -7,
          -3.2259120500140233,
          -2.5411630537068683,
          -2.7440230673390325,
          -7,
          -3.4435758797502576,
          -2.275560877376543,
          -7,
          -2.9816676269911824,
          -7,
          -2.248722343662518,
          -7,
          -2.674305772490644,
          -2.186903386714175,
          -2.5634810853944106,
          -7,
          -7,
          -2.8686444383948255,
          -1.1684328023599524,
          -7,
          -3.251638220448212,
          -3.233884108765886,
          -7,
          -3.286905352972375,
          -7,
          -3.147573276552419,
          -7,
          -2.582572707393813,
          -7,
          -7,
          -4.605897351644974,
          -3.311826787232616,
          -4.316864588319736,
          -7,
          -3.2591158441850663,
          -2.654451585890892,
          -7,
          -2.9747419045009504,
          -7,
          -2.5491784867535645,
          -2.3381282463964803,
          -7,
          -7,
          -3.214578953570499,
          -2.609949951186873,
          -7,
          -2.7693773260761385,
          -2.9373506949096404,
          -2.7361972389182934,
          -2.6653464274249417,
          -2.737987326333431,
          -3.323994202181974,
          -2.801904793732039,
          -7,
          -2.636287252098513,
          -2.574031267727719,
          -7,
          -7,
          -7,
          -7,
          -3.9416108021536336,
          -2.2681975636609173,
          -2.8649850707577986,
          -2.5722906061514177,
          -3.680516809381255,
          -7,
          -7,
          -7,
          -3.247973266361807,
          -1.9846251384330458,
          -7,
          -2.151705398682238,
          -2.7426647161300997,
          -7,
          -7,
          -2.505088284381042,
          -3.0587655588941463,
          -2.5215739035919933,
          -7,
          -2.550580705005715,
          -2.8772561331135864,
          -7,
          -2.8798601462734688,
          -2.185409929405979,
          -7,
          -2.895422546039408,
          -7,
          -7,
          -3.1172712956557644,
          -4.375919543704649,
          -7,
          -2.826722520168992,
          -2.486784571399042,
          -3.1596298466206187,
          -7,
          -3.408041999536708,
          -1.8567264148606428,
          -7,
          -2.4460828966060557,
          -7,
          -2.9453044216515423,
          -7,
          -2.488633652523212,
          -2.4586775995617534,
          -7,
          -7,
          -2.821513528404773,
          -3.3312247810207323,
          -2.2088485647553826,
          -2.814691432747457,
          -7,
          -7,
          -3.1245042248342823,
          -7,
          -2.665893545534433,
          -2.875350696579289,
          -7,
          -3.107040290223204,
          -7,
          -2.759164022728366,
          -7,
          -1.6313840762796707,
          -1.6456405626343629,
          -1.9777236052888478,
          -1.3744029614591415,
          -1.3533961305050177,
          -7,
          -1.42473163539556,
          -1.6614653888518978,
          -3.730620797887283,
          -1.2143762781314738,
          -2.2774454840544975,
          -1.7726359953497612,
          -1.3545885878772408,
          -2.2010555635620648,
          -1.811284715922013,
          -1.5632437011403981,
          -1.4122628487890587,
          -0.9300539521206114,
          -2.4693310102934105,
          -2.2991097516428893,
          -1.71008600924148,
          -1.1927969525585338,
          -1.372730958925838,
          -1.6144357966418779,
          -2.582144562216779,
          -0.9866043276989207,
          -2.073610544839325,
          -2.8041394323353503,
          -7,
          -4.097812407365289,
          -7,
          -4.098332167847684,
          -3.803013034258028,
          -4.140162229613637,
          -4.130526745384164,
          -7,
          -7,
          -2.6793469026880157,
          -7,
          -7,
          -7,
          -3.744574596327337,
          -3.607684747886464,
          -3.524396122103842,
          -3.8144473785224875,
          -7,
          -3.6252781451453204,
          -7,
          -3.4884994390363193,
          -3.9953719060281623,
          -7,
          -3.9221283467963626,
          -2.887396965867297,
          -4.122215878272827,
          -4.108362034955172,
          -7,
          -3.67391132703678,
          -3.5268882610813685,
          -3.809694358716924,
          -2.6653770298617583,
          -3.8211203237768236,
          -7,
          -7,
          -7,
          -3.8476960207341655,
          -4.106020819140269,
          -7,
          -7,
          -4.157184682201611,
          -7,
          -3.296457344130786,
          -4.103872108403055,
          -7,
          -3.454112800025813,
          -7,
          -2.800161697509443,
          -7,
          -7,
          -7,
          -3.28190951735707,
          -7,
          -2.3663547276041825,
          -2.940721513523347,
          -2.783427117917317,
          -2.6925849445879813,
          -7,
          -7,
          -3.6942541120252788,
          -7,
          -3.6449307079135873,
          -7,
          -7,
          -7,
          -2.4390555435452326,
          -2.276592468177811,
          -7,
          -7,
          -3.2609950704669153,
          -7,
          -3.28807525427587,
          -3.213623993416087,
          -7,
          -7,
          -3.618783009440332,
          -7,
          -3.5545800070874893,
          -7,
          -7,
          -2.4972418495113913,
          -3.548235821497576,
          -7,
          -7,
          -3.092106304605236,
          -7,
          -3.034828915655837,
          -7,
          -3.3648010569597884,
          -3.837998551821702,
          -2.932882805129326,
          -3.7141061271543476,
          -2.9719712763997563,
          -7,
          -7,
          -3.8672022338494396,
          -4.141951195862753,
          -3.6838572054003462,
          -3.298361762129775,
          -7,
          -3.418002818524436,
          -7,
          -7,
          -7,
          -2.8998002437923684,
          -7,
          -3.4612583528618397,
          -4.132451812729004,
          -2.957341191541751,
          -2.2370823187516176,
          -3.636955706104427,
          -4.106700732362354,
          -7,
          -3.4320066872695985,
          -2.90614341663761,
          -7,
          -7,
          -3.852479993636856,
          -3.715474072849549,
          -3.6118029390588564,
          -7,
          -3.4766223338421334,
          -3.246650061258412,
          -7,
          -3.4334955282268766,
          -7,
          -3.5124018465749907,
          -3.427713259052271,
          -3.695043658821294,
          -7,
          -7,
          -7,
          -2.129824800037075,
          -3.3321786712443293,
          -7,
          -7,
          -3.4349372103306783,
          -7,
          -7,
          -7,
          -4.101918833680424,
          -7,
          -2.7431271938070174,
          -2.1419552372400017,
          -3.8185557792978027,
          -4.22816928953985,
          -7,
          -3.5150344563229545,
          -7,
          -7,
          -3.8279827974620537,
          -3.369976134872427,
          -2.994178178434242,
          -7,
          -4.107209969647869,
          -4.117569563463827,
          -2.4053379610598817,
          -7,
          -4.096075366085106,
          -7,
          -4.132707844855448,
          -7,
          -3.530999651425947,
          -3.837556874989602,
          -3.2601310397236345,
          -2.928666900449495,
          -3.66661156841903,
          -2.893695198415863,
          -3.5369054869618646,
          -3.510243312047968,
          -2.9047450178455057,
          -3.4102034170894533,
          -7,
          -7,
          -7,
          -3.8067902715840667,
          -4.105714510570921,
          -7,
          -3.2689607038867696,
          -7,
          -3.3470092300017322,
          -7,
          -3.5397032389478253,
          -2.5259755974116596,
          -7,
          -3.322839272686321,
          -3.724876364863443,
          -4.132931749214915,
          -7,
          -7,
          -4.143951116423963,
          -7,
          -3.291305408119733,
          -7,
          -4.11143055176598,
          -3.6206044653897242,
          -7,
          -4.021458064854097,
          -3.448551739201578,
          -4.0550851346254175,
          -7,
          -2.606381365110605,
          -7,
          -3.045591884218734,
          -3.8125457211365865,
          -3.3585376152886144,
          -4.107549129744687,
          -4.112370365525832,
          -3.4672627029211815,
          -3.553306415318742,
          -7,
          -3.3827372657613304,
          -2.3334094862099475,
          -2.701976775583116,
          -7,
          -4.0971878725708955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7483172620858336,
          -3.5020718912066613,
          -3.3668472801536247,
          -3.778387251620757,
          -7,
          -7,
          -4.113140836867081,
          -4.127202017590354,
          -4.0978817447138685,
          -7,
          -4.152563514256539,
          -4.138933940256924,
          -3.4388270387221676,
          -7,
          -3.7945577512547617,
          -7,
          -7,
          -7,
          -7,
          -3.8394780473741985,
          -2.6020556133373285,
          -7,
          -7,
          -7,
          -7,
          -3.816440167956139,
          -7,
          -7,
          -3.640481436970422,
          -3.750354088762708,
          -3.84326393153455,
          -4.258254053507148,
          -3.0650893162830104,
          -4.141606530118251,
          -7,
          -7,
          -2.247772101653081,
          -3.4507724103773856,
          -3.084895978565494,
          -7,
          -3.656344656846971,
          -7,
          -7,
          -7,
          -3.0842783057223655,
          -7,
          -3.121723945637367,
          -3.1227450294577785,
          -3.977266212427293,
          -3.657756790475467,
          -7,
          -4.101643985490313,
          -7,
          -3.572116155664274,
          -3.390581878550435,
          -7,
          -3.8057386695128246,
          -7,
          -4.105714510570921,
          -3.6615918551563493,
          -7,
          -3.0741152033076804,
          -2.7799994503958123,
          -2.89707700320942,
          -3.692935002531138,
          -3.3573630306151427,
          -3.096409181545141,
          -2.8348371039433498,
          -3.625826713285711,
          -3.4172501991365754,
          -7,
          -7,
          -2.9002851785700106,
          -3.445635334378726,
          -2.8044492222635324,
          -3.069098604983803,
          -3.9584444238670944,
          -3.6688826790912064,
          -3.041025918107178,
          -3.458214677865592,
          -3.402811300216939,
          -2.841381819328237,
          -7,
          -7,
          -7,
          -3.647162832668712,
          -2.97847590970199,
          -7,
          -3.5129844039304507,
          -3.466274321789292,
          -7,
          -3.247697143973421,
          -7,
          -3.117628173221579,
          -7,
          -3.823963024361914,
          -2.6060318539477323,
          -3.8159428271964737,
          -3.623156217322164,
          -3.8627394429551383,
          -3.173234179107539,
          -7,
          -2.5030496272043883,
          -3.031946790297499,
          -3.2555137128195333,
          -7,
          -7,
          -3.803013034258028,
          -2.7265304858618973,
          -3.0027178820160247,
          -3.636538042936402,
          -3.452154585714663,
          -3.798167059715939,
          -7,
          -3.083233790058822,
          -3.80539889912943,
          -4.115510662384999,
          -7,
          -3.5177499628542592,
          -4.1085988459735665,
          -2.4694836796325514,
          -7,
          -4.097673699449098,
          -3.4099246739401154,
          -3.5300349535029074,
          -4.186122525982875,
          -4.21133416373255,
          -3.6575611879403125,
          -2.724593738503572,
          -4.292433298244021,
          -3.5033139228158845,
          -3.2448953336918613,
          -3.6340538534220705,
          -4.2046896204203605,
          -4.507828896045528,
          -3.7295494884361307,
          -3.81685321027451,
          -3.037045218591266,
          -4.523694452381668,
          -3.357128221306194,
          -2.9630655210967376,
          -3.8808326398666764,
          -4.035789833127757,
          -7,
          -3.684426983291642,
          -3.6440022469547033,
          -3.6634841951143935,
          -3.916980047320382,
          -4.524266268766978,
          -3.5839314291637243,
          -4.136546180350109,
          -7,
          -3.3225537065176844,
          -3.644175898105283,
          -3.2433663825535968,
          -3.0568128857204915,
          -3.362026703997158,
          -7,
          -3.3035919995390772,
          -3.5135948904405634,
          -3.703259127330976,
          -3.2059363836944823,
          -3.220026323099231,
          -3.3433101031623416,
          -2.6998895859055763,
          -2.52194468698677,
          -2.7498466966808266,
          -3.5204049202902374,
          -3.1609901905696485,
          -3.200759326791928,
          -3.0823459420467962,
          -2.462138341981881,
          -2.4218347504106905,
          -2.209448542593025,
          -2.759541943983747,
          -2.2627366580503083,
          -4.1355778533449294,
          -2.37726626057981,
          -3.0947039943211667,
          -4.101781431327967,
          -3.784617292632875,
          -2.421812577729229,
          -3.5233562066547925,
          -2.2029266830692276,
          -2.44224154929421,
          -2.9249826236060295,
          -3.6789959046615417,
          -3.2606164705566645,
          -2.5930541202839628,
          -2.994215598949566,
          -2.120914451235308,
          -7,
          -3.429533699751271,
          -2.734963395399042,
          -1.8413594704548548,
          -7,
          -2.4868209570763073,
          -2.989371940260124,
          -2.0227566114894464,
          -3.6036314622515433,
          -2.6065042033187225,
          -3.2238026211274917,
          -2.861744637352507,
          -2.939946918317287,
          -4.117834518543748,
          -2.347213763892428,
          -2.086321041875386,
          -7,
          -2.7690970145159275,
          -4.109814695694399,
          -2.7866968316757634,
          -1.9611385794778147,
          -3.3259122856009586,
          -3.4037380503638555,
          -7,
          -7,
          -3.799891684656865,
          -2.9798264849916336,
          -2.2148332553701793,
          -2.609990566026695,
          -2.1610780537551473,
          -3.404902104067037,
          -3.0301324538917136,
          -1.8302041241340057,
          -3.3154305138375006,
          -2.8042943549217694,
          -3.2594232126040716,
          -1.9489370135764186,
          -7,
          -1.6582085612684359,
          -1.9056857651335304,
          -2.9375513237160584,
          -3.8509830043868534,
          -2.3932998649986676,
          -2.2650972418515827,
          -1.2538560276860629,
          -4.122838194089266,
          -7,
          -2.62076532707056,
          -3.812779707008964,
          -3.11723814213982,
          -3.2962576521896327,
          -2.6415024392919446,
          -4.095587746918743,
          -2.158204767567675,
          -4.099956734241182,
          -3.8019864946643342,
          -2.9952469568942646,
          -2.025559020614836,
          -2.5964187650127157,
          -2.562852432234841,
          -2.965701346206212,
          -2.1999336736522723,
          -3.42298357920928,
          -2.668007141833563,
          -7,
          -2.754157142891773,
          -2.1183798879274023,
          -7,
          -3.626271915253866,
          -2.88036222087494,
          -2.9031857766806537,
          -3.624436805027557,
          -2.9352048674265814,
          -3.1845652557783897,
          -2.948999454026953,
          -3.114610984232173,
          -2.7272283421926953,
          -2.7019493236739613,
          -2.4953866359281345,
          -7,
          -2.4638929889859074,
          -2.5811528919662887,
          -2.892032732972888,
          -2.909522600115815,
          -3.8111056070179306,
          -7,
          -2.3510624376615725,
          -2.8494194137968996,
          -1.9795876955750071,
          -2.3643164317609604,
          -2.972066640403255,
          -3.6582976503081897,
          -4.1144108023978365,
          -2.918326697955654,
          -2.832340809556507,
          -1.9667343903374412,
          -3.5066403055665023,
          -2.547805461698299,
          -2.2778717360486387,
          -3.830396176483469,
          -7,
          -2.227093428556467,
          -2.293178336476699,
          -2.4136782342419387,
          -3.311541958401195,
          -2.020462813267919,
          -2.696065013692612,
          -2.649833933096992,
          -2.826787238816292,
          -1.8894676369974646,
          -3.2664668954402414,
          -2.6111437334348,
          -3.3483373203167313,
          -4.099335277685958,
          -4.0965972083578945,
          -2.264554092853232,
          -4.173856138986269,
          -3.0784568180532927,
          -2.536793259815371,
          -2.158804092216579,
          -3.0042599416470424,
          -2.529344787529569,
          -0.25487660158808295,
          -2.7569769267273,
          -2.3546402645539692,
          -3.8120104224238394,
          -2.9093672192323017,
          -7,
          -2.3550682063488506,
          -2.2988267818265906,
          -4.227809604075215,
          -4.097569639431371,
          -2.7416557497979346,
          -3.4254363954090103,
          -1.6283827667413842,
          -3.003957379757683,
          -3.8078055322706246,
          -3.398495550138137,
          -3.7962620284279147,
          -4.101403350555331,
          -4.099507993727965,
          -4.103256233355051,
          -3.419082035021574,
          -3.5358002908248976,
          -3.3022071980619376,
          -3.3323711222176793,
          -3.6371226589692447,
          -2.0128023766022927,
          -2.051875744066477,
          -2.1777377796253714,
          -2.105612359686785,
          -1.3201889594210516,
          -1.42473163539556,
          -7,
          -1.6561465161471933,
          -3.0722236300668953,
          -1.7269067066451238,
          -3.0969447551769402,
          -1.559752605194504,
          -1.3636994158662474,
          -3.31722734917642,
          -0.17667281526607695,
          -1.807617016832907,
          -1.7952120167866616,
          -1.226212174618504,
          -2.769111350065843,
          -2.167257037006753,
          -2.1075596150108513,
          -1.990387803953575,
          -0.8312446358989443,
          -2.371102729959275,
          -2.2749006866771184,
          -1.4670676927742645,
          -2.527894170739935,
          -3.1406127806443553,
          -7,
          -7,
          -7,
          -3.7402837196818792,
          -7,
          -3.051602668541331,
          -3.8105013477665297,
          -7,
          -7,
          -3.510292623460062,
          -7,
          -7,
          -7,
          -7,
          -3.3287260851987845,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.030292004582297,
          -3.8043439184798657,
          -7,
          -3.9857407410500745,
          -3.5862875532129364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.89463723318385,
          -7,
          -3.747411807886423,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9807243231871605,
          -7,
          -7,
          -7,
          -3.8010605298478555,
          -2.742077896487582,
          -7,
          -7,
          -7,
          -3.803934849863842,
          -7,
          -3.17068649287322,
          -3.5921212174658845,
          -3.1154773741864688,
          -3.5742628297070267,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7637772854038287,
          -3.4425712173591396,
          -7,
          -7,
          -3.0329064302537683,
          -7,
          -4.018908444316327,
          -3.9698816437465,
          -7,
          -7,
          -3.8626522704255013,
          -7,
          -7,
          -7,
          -7,
          -3.2535456858028002,
          -3.5500448095649055,
          -7,
          -7,
          -7,
          -3.7812525942484565,
          -3.610180897473572,
          -7,
          -7,
          -7,
          -3.589664195567082,
          -3.62797998982998,
          -3.4912496033750355,
          -7,
          -7,
          -3.8859828113549733,
          -3.8340390181594666,
          -7,
          -3.948119424380536,
          -7,
          -3.981274832706589,
          -7,
          -7,
          -7,
          -3.3813257060905904,
          -7,
          -3.569724949226159,
          -3.8145139523682383,
          -3.1902382914634244,
          -3.0626421420676335,
          -7,
          -7,
          -7,
          -7,
          -3.3873601604019097,
          -3.7905666251460763,
          -7,
          -7,
          -3.931610406362962,
          -3.668618844816744,
          -7,
          -4.299790489253733,
          -3.645057162575253,
          -7,
          -4.077840102734994,
          -7,
          -4.061284894874462,
          -7,
          -7,
          -7,
          -7,
          -3.7805333253164046,
          -2.5500360674635556,
          -3.9036867317365025,
          -7,
          -7,
          -2.7793815471891445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4975930308120327,
          -2.714329759745233,
          -4.28564730890073,
          -3.391949041795651,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5924358498630324,
          -7,
          -7,
          -7,
          -3.755286690608231,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.816174990428802,
          -3.5261453526347117,
          -7,
          -3.8701111553644005,
          -7,
          -3.622352201294506,
          -3.8283376000590046,
          -3.771954748963949,
          -3.4511073667886003,
          -3.7652213663049805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.127493544756782,
          -7,
          -3.5369009816688104,
          -7,
          -4.012457578200774,
          -3.3849887735590265,
          -7,
          -3.5137501500818233,
          -3.9486085498764365,
          -3.21305266686185,
          -7,
          -3.823213313282668,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8457799671118895,
          -7,
          -7,
          -2.1692737957643833,
          -7,
          -2.6496998632008384,
          -3.774443968924965,
          -2.743313739231126,
          -3.459844642388208,
          -7,
          -3.546542663478131,
          -7,
          -7,
          -7,
          -3.1875050533647573,
          -2.2413443286912247,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8192806469724814,
          -7,
          -3.365581572755049,
          -3.558586083017636,
          -7,
          -7,
          -7,
          -3.8035253955765325,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8312296938670634,
          -2.4711737520274553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.214667269683036,
          -7,
          -7,
          -4.063520999689991,
          -7,
          -7,
          -7,
          -2.755197064693086,
          -3.850217241798389,
          -2.920567344816164,
          -7,
          -3.1599371992043745,
          -7,
          -7,
          -7,
          -3.8705502062680823,
          -7,
          -3.673941998634088,
          -3.5324995860946626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.596377143997599,
          -3.8873922189718466,
          -7,
          -7,
          -7,
          -7,
          -3.5265331155907425,
          -7,
          -3.556965499896943,
          -4.130687493982032,
          -3.3289908554494287,
          -3.2871856695650172,
          -3.219060332448861,
          -3.308474709179702,
          -3.807467375684278,
          -7,
          -3.483052121938875,
          -3.7456992266025058,
          -7,
          -7,
          -7,
          -3.5456781497920256,
          -7,
          -7,
          -7,
          -3.320405953970451,
          -3.8649261915390056,
          -3.6383164263566528,
          -3.492725476491596,
          -7,
          -7,
          -7,
          -4.029992175377847,
          -3.962274604623315,
          -3.7652213663049805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.485674115137571,
          -7,
          -3.932033835682918,
          -4.167538857059484,
          -3.5475481338589487,
          -7,
          -3.447778009294621,
          -3.95981225658644,
          -7,
          -7,
          -7,
          -7,
          -3.9275756546911103,
          -4.045518562884493,
          -7,
          -3.8529676910288186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.362293937964231,
          -7,
          -7,
          -3.102600295396306,
          -3.0583378875755454,
          -2.9929767082011125,
          -3.06126394230025,
          -4.2758025858486794,
          -2.648664886024623,
          -2.5654310959658013,
          -4.041056964240598,
          -3.151638616799286,
          -3.014310480963307,
          -2.5893667208240703,
          -3.144781706171568,
          -3.4572686093294647,
          -3.4625103009160636,
          -2.3784689561522443,
          -2.5318437171325017,
          -3.355393211588941,
          -2.4520429504065073,
          -3.7204074008031087,
          -3.0640664031375557,
          -7,
          -3.625729137422857,
          -3.7745717052805707,
          -2.635427892595569,
          -2.574646851788124,
          -7,
          -3.424511976727283,
          -3.2667233307073897,
          -3.8591983615338776,
          -2.8444028825329357,
          -3.287667391274135,
          -3.7663550034322113,
          -3.938903149306872,
          -3.468495024507069,
          -3.062769949815128,
          -4.233554492714523,
          -7,
          -3.921205104140926,
          -2.7038500115766535,
          -3.6224024370611825,
          -7,
          -4.413400361189813,
          -3.4406336268506807,
          -3.802739527529692,
          -3.979457318097848,
          -2.7467169895057046,
          -3.8611160441613954,
          -3.6349783452242814,
          -3.0246322452029726,
          -2.794648886540733,
          -2.6667853209646175,
          -3.494181534527859,
          -3.3431541139519694,
          -3.8209891764160497,
          -3.468588985513581,
          -7,
          -7,
          -3.7493497605974766,
          -3.4563508477418177,
          -3.507271023804603,
          -3.4915017662373264,
          -3.053462604925455,
          -3.4415853127846754,
          -3.970235265877339,
          -7,
          -3.995152376891454,
          -3.7641761323903307,
          -3.1270911037675013,
          -7,
          -4.45958345491435,
          -3.7518177877368792,
          -2.840187066673251,
          -7,
          -2.024778530093382,
          -3.2752029198527173,
          -2.8337180367331363,
          -7,
          -3.5517345546707815,
          -4.056676215120661,
          -3.124943906749929,
          -3.7077404542737713,
          -7,
          -3.4233114228739034,
          -3.146296793808566,
          -7,
          -2.6251955317528344,
          -7,
          -3.9502674680135885,
          -2.748599530903582,
          -3.916471495447239,
          -7,
          -7,
          -7,
          -2.9673919516143807,
          -3.405218256006282,
          -2.4002966758658393,
          -3.561220678933944,
          -2.891022534799987,
          -3.452246574520437,
          -3.5386993795424067,
          -2.4153947885491625,
          -2.829128264854539,
          -3.1468099627758708,
          -7,
          -2.7011154878043895,
          -3.7444494574467986,
          -2.339545308873615,
          -2.5776832455012926,
          -3.7764832558336816,
          -3.2519422417990267,
          -3.4191765753173273,
          -2.673512399026766,
          -1.3974531313991803,
          -1.5789769709225503,
          -2.5662901488579815,
          -3.0406418915445363,
          -2.4935681057700907,
          -2.8794542970180665,
          -3.8335932939984563,
          -3.922050402167174,
          -7,
          -2.650935735392299,
          -2.595811042050961,
          -7,
          -2.6923180442592787,
          -2.9493630832543674,
          -2.1953102756059963,
          -7,
          -3.413243866728462,
          -2.9038557135762706,
          -2.586727921309507,
          -3.296281174399547,
          -3.732956369575625,
          -3.3441301768262788,
          -2.5233064424095346,
          -3.740993931584886,
          -3.7520484478194387,
          -3.5691982833478133,
          -3.819083075743703,
          -1.8908252650965474,
          -3.4701899062855524,
          -2.5038555079669074,
          -3.3235958235627225,
          -3.4766867429456445,
          -3.837714668284911,
          -3.1250374286850575,
          -1.5672944772204624,
          -3.7423322823571485,
          -3.024844694749236,
          -3.0725124857356105,
          -3.846955325019824,
          -2.720893995028669,
          -1.8399850957844133,
          -3.450864692379766,
          -2.8535292190187196,
          -3.3760900797836544,
          -2.2972787559859684,
          -2.8961954104542107,
          -2.0805177662808054,
          -7,
          -3.4749443354653877,
          -3.60404595999381,
          -3.7715139899796664,
          -1.819094122470168,
          -2.7211358372887746,
          -2.5513889972730204,
          -3.0543448887676306,
          -2.3941821837763624,
          -7,
          -3.049295568332722,
          -2.945331786541246,
          -2.1226013182643153,
          -3.8640955734242475,
          -1.5351210126789396,
          -2.8560144545033554,
          -3.541745608431244,
          -7,
          -2.514298659173731,
          -1.9430504992721556,
          -2.134692413648349,
          -2.65479514613498,
          -7,
          -3.258876629372131,
          -3.2691236170005356,
          -0.9681884753070655,
          -7,
          -2.2991327791835294,
          -3.0203388819007317,
          -3.3752367289481646,
          -2.6755100930664812,
          -1.9857695200222167,
          -3.135995383131673,
          -2.936625429372116,
          -3.170774935911056,
          -3.1322596895310446,
          -3.1340176456759834,
          -3.2741578492636796,
          -2.1263738165269244,
          -3.089949244814966,
          -7,
          -3.531159465404532,
          -3.798167059715939,
          -2.337400529194833,
          -3.3079949403022577,
          -3.4628470358316736,
          -7,
          -7,
          -3.7472563974421442,
          -7,
          -2.8472641017707647,
          -2.7522405710173974,
          -2.425012231875444,
          -7,
          -3.2909245593827543,
          -3.0764948050097205,
          -2.0736013686667882,
          -1.8654808495638453,
          -1.9753953330981715,
          -1.7262624417714705,
          -1.666603061264704,
          -1.6614653888518978,
          -1.6561465161471933,
          -7,
          -2.654451585890892,
          -2.360418623725794,
          -7,
          -2.1486444762209174,
          -2.4066142226269402,
          -3.034708651341069,
          -1.944190840255279,
          -1.8107788654424986,
          -1.8032195366042487,
          -1.4369712595163502,
          -0.2285455990501929,
          -2.1316769784790424,
          -2.1607369894368547,
          -2.2271852867246182,
          -2.130333768495006,
          -2.5352941200427703,
          -0.4126325672878087,
          -1.5228325412820065,
          -3.490169250834894,
          -3.131056990114102,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.13552752600499,
          -7,
          -7,
          -7,
          -7,
          -4.001300933020418,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.930728348759478,
          -3.281222808682314,
          -7,
          -3.924486043733915,
          -3.790804110222411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3913719860159928,
          -7,
          -7,
          -7,
          -7,
          -3.460070543294161,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5846092940960688,
          -7,
          -7,
          -7,
          -7,
          -3.9109444057499787,
          -7,
          -7,
          -7,
          -7,
          -3.741939077729199,
          -3.9738920729868967,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.814713612695977,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2704459080179626,
          -2.7326663010819305,
          -7,
          -7,
          -7,
          -7,
          -3.66133934000604,
          -3.6050355490912556,
          -7,
          -7,
          -3.8151633044075393,
          -7,
          -3.4794313371977363,
          -7,
          -7,
          -4.052655473039527,
          -7,
          -7,
          -7,
          -3.815710539788963,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.035729838034267,
          -3.8585973449946924,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6834973176798114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.441757958508164,
          -7,
          -7,
          -3.7052648623174043,
          -7,
          -2.755890404784822,
          -7,
          -7,
          -7,
          -7,
          -2.6489018631808574,
          -7,
          -3.229286150986481,
          -4.305186506919846,
          -7,
          -7,
          -7,
          -3.6120841852279186,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.073754998123192,
          -7,
          -7,
          -7,
          -2.7237775027823625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6828968412870142,
          -7,
          -4.256019813380122,
          -3.9342964068194055,
          -7,
          -4.054498146636677,
          -7,
          -7,
          -7,
          -4.180240600955741,
          -7,
          -7,
          -7,
          -7,
          -3.741185377248953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.736077637003946,
          -7,
          -7,
          -7,
          -7,
          -3.7373516958037145,
          -7,
          -3.980881682840616,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4041111915939406,
          -7,
          -7,
          -3.9134031970453065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9237101943965627,
          -7,
          -7,
          -7,
          -4.410709764916316,
          -7,
          -3.5919267717577323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.968062460076449,
          -3.77757180469141,
          -7,
          -7,
          -3.381197154693257,
          -3.4347684420491507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8568043870335558,
          -3.1931262703866703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.006523088680669,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6744937172963503,
          -7,
          -7,
          -3.0293330393847953,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6830470382388496,
          -3.3099060475906565,
          -7,
          -7,
          -7,
          -3.1779531201340987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.08771044886063,
          -7,
          -7,
          -7,
          -3.681219397305083,
          -4.063220735581995,
          -7,
          -3.1071534172053243,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.215373152783422,
          -3.7547304690237535,
          -3.3737699294162615,
          -7,
          -4.600354596150628,
          -7,
          -7,
          -7,
          -7,
          -3.975063996095236,
          -7,
          -7,
          -7,
          -3.8009231818132183,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.924790257954725,
          -7,
          -3.9042394603397237,
          -7,
          -3.997779430865604,
          -2.9291814974678476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2933183494610736,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4345689040341987,
          -7,
          -4.551510990105817,
          -7,
          -7,
          -3.5205137645101057,
          -4.798567783267658,
          -4.350015298234692,
          -7,
          -7,
          -4.437004965477303,
          -3.7517024117392372,
          -3.78519759407694,
          -3.9011312513553715,
          -7,
          -7,
          -3.775919768093692,
          -7,
          -4.536642600014271,
          -3.9228603433350857,
          -7,
          -3.803550997782215,
          -3.900078993301414,
          -3.6838272261450347,
          -4.083932401638626,
          -7,
          -4.353132539312616,
          -7,
          -3.9751329846551604,
          -3.7394404803282644,
          -4.400106070428546,
          -7,
          -3.4351159893241427,
          -7,
          -4.022538340036338,
          -3.656409670222731,
          -4.232928378875812,
          -3.917155272048159,
          -3.5077659463446653,
          -7,
          -3.5008125896329667,
          -4.0520009801013,
          -4.506450911340324,
          -3.501082095186496,
          -4.35078086534774,
          -3.214667269683036,
          -4.004605077491578,
          -4.125517410220768,
          -3.756864224060549,
          -7,
          -3.6996990068748015,
          -7,
          -4.290541610857977,
          -2.9274986816932005,
          -2.931902616741086,
          -2.44414242309212,
          -3.7494680374713956,
          -3.7587941814657166,
          -2.2767079331012847,
          -4.492830205678688,
          -7,
          -7,
          -3.998215732370958,
          -2.944546347024838,
          -3.9231403560252005,
          -3.692935002531138,
          -3.7524496752187972,
          -4.15072156097165,
          -3.745669552326026,
          -7,
          -7,
          -7,
          -3.3495180415860877,
          -2.3125644482543892,
          -3.996658141016183,
          -7,
          -2.452002523936502,
          -7,
          -3.3135157072120407,
          -3.1076338783998296,
          -3.2768198514902487,
          -3.588103560302743,
          -4.303433666006204,
          -7,
          -3.6628522332647964,
          -7,
          -7,
          -4.961701040699168,
          -3.1036743098329627,
          -7,
          -3.3290753634861527,
          -3.6591552809406296,
          -3.883377489748339,
          -3.532126927376701,
          -3.4673860925523505,
          -7,
          -7,
          -7,
          -2.72926605924713,
          -3.0457140589408676,
          -3.3444446740811564,
          -7,
          -3.801700913633025,
          -3.341731207601339,
          -3.7515100502700416,
          -3.179568686824779,
          -3.312811826212088,
          -7,
          -7,
          -7,
          -3.6313422864839326,
          -2.2446078253972623,
          -3.5936736569452488,
          -3.3712526291249394,
          -2.621176281775035,
          -3.5342292372487547,
          -2.810083096186659,
          -2.7162120888836645,
          -3.0923696996291206,
          -3.6675463395115164,
          -3.6868149545073168,
          -2.714795291445831,
          -3.2039389889121495,
          -7,
          -3.850278552518037,
          -7,
          -3.1045181489741487,
          -3.329499575762843,
          -3.6398847419163043,
          -2.6250601389959516,
          -3.602043026368414,
          -3.0724838474728275,
          -7,
          -3.0340934464167257,
          -4.09282587292398,
          -3.39208111979816,
          -7,
          -7,
          -7,
          -3.378882199277559,
          -3.6268534146667255,
          -3.641176546613114,
          -3.311188557387388,
          -7,
          -2.8888939620872947,
          -3.3647385550553985,
          -2.958802703399502,
          -7,
          -3.3730040047672736,
          -3.748885440009517,
          -7,
          -2.181639454224491,
          -7,
          -3.8580557180503643,
          -7,
          -3.060622304309956,
          -3.7714649891354415,
          -2.8867726430544383,
          -3.0385208151616903,
          -2.6650178254124723,
          -3.165615232699998,
          -3.385738853559706,
          -3.3434085938038574,
          -3.281714970027296,
          -7,
          -3.672005445022952,
          -3.333568174923988,
          -7,
          -1.9716615699299038,
          -2.9568404901592333,
          -7,
          -4.0033743540197495,
          -3.115194321434587,
          -7,
          -3.6965747917964733,
          -4.365899620723788,
          -3.8964711004792774,
          -7,
          -3.2996162399984135,
          -3.344981413927258,
          -3.6614813978436156,
          -7,
          -3.5593679094633317,
          -2.9652539784237364,
          -2.872239542709607,
          -3.705521613422667,
          -7,
          -7,
          -3.0629251643976625,
          -2.613973886490711,
          -3.6886867242841235,
          -3.8174992618677583,
          -3.533251952091484,
          -3.7670816213633223,
          -3.0295508737036134,
          -3.209526184524548,
          -2.714067678703001,
          -7,
          -3.367169488534681,
          -7,
          -7,
          -7,
          -3.922465945298413,
          -3.456264787183392,
          -7,
          -7,
          -7,
          -2.910853000989875,
          -7,
          -3.656577291396114,
          -7,
          -7,
          -7,
          -3.629409599102719,
          -3.0377252216588575,
          -4.003029470553618,
          -2.7790350244932567,
          -7,
          -7,
          -3.671913012441587,
          -3.642167634404945,
          -7,
          -7,
          -3.3649260337899753,
          -3.790988475088816,
          -3.730620797887283,
          -3.0722236300668953,
          -2.654451585890892,
          -7,
          -7,
          -7,
          -3.5532153014021377,
          -7,
          -3.6181527333785195,
          -3.166269727827661,
          -7,
          -7,
          -3.0718820073061255,
          -2.765058638089037,
          -3.019324037153691,
          -3.6337713460825554,
          -7,
          -3.2997251539756367,
          -7,
          -2.7684795320928424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0913747147621224,
          -7,
          -7,
          -7,
          -7,
          -3.917899189424106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8667204327514666,
          -7,
          -7,
          -3.6901074394563307,
          -4.0669929309681,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.566413920620156,
          -7,
          -7,
          -7,
          -7,
          -3.3552599055273786,
          -7,
          -3.52022143588196,
          -7,
          -7,
          -7,
          -4.239061615868581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.529419659434229,
          -3.181986424480151,
          -3.918344928962275,
          -3.510545010206612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2961164921697144,
          -3.5514042482512638,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6582022533870147,
          -7,
          -7,
          -5.126274307886984,
          -7,
          -7,
          -7,
          -7,
          -3.4138583422700264,
          -3.3656751404559175,
          -7,
          -7,
          -3.4824447919182653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.712397131406715,
          -7,
          -3.1848536020225837,
          -7,
          -7,
          -7,
          -3.3109056293761414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6842617229289067,
          -7,
          -7,
          -7,
          -7,
          -3.4795573161627673,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1808424146466825,
          -3.580149164384105,
          -7,
          -7,
          -7,
          -4.9950996733824,
          -3.197280558125619,
          -7,
          -7,
          -7,
          -7,
          -3.4019387667543897,
          -7,
          -7,
          -7,
          -3.895606686165933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4372747974101237,
          -3.749736315569061,
          -7,
          -7,
          -7,
          -3.8938726787950815,
          -7,
          -7,
          -7,
          -7,
          -3.541641638096807,
          -7,
          -7,
          -7,
          -3.641796241478543,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2880255353883627,
          -7,
          -7,
          -3.3236645356081,
          -3.590953235187986,
          -7,
          -7,
          -3.934144811792477,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.286299250942829,
          -7,
          -7,
          -3.6295019187038324,
          -7,
          -3.399327532158679,
          -3.613418945034573,
          -2.94423584379348,
          -3.4176377396522297,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6624272644527265,
          -7,
          -7,
          -7,
          -3.606667933568316,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4579008115869776,
          -3.86840930331496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6239725120169965,
          -7,
          -3.6626319309756905,
          -4.671779370567489,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.378216149749878,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.906335041805091,
          -7,
          -3.4250250914043128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5422027824340283,
          -7,
          -4.060118394661378,
          -7,
          -7,
          -7,
          -7,
          -2.9916690073799486,
          -7,
          -7,
          -3.972480549876476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.166726055580052,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.210853365314893,
          -7,
          -7,
          -4.354537397297181,
          -3.605305046141109,
          -7,
          -4.2915020491896,
          -7,
          -7,
          -3.313128713845194,
          -7,
          -7,
          -3.059689611271879,
          -7,
          -7,
          -7,
          -7,
          -4.5275164797878,
          -3.8846254632562345,
          -7,
          -7,
          -7,
          -3.7735670489260587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.858537197569639,
          -7,
          -4.495213518763391,
          -7,
          -3.8091555317471806,
          -4.718651133527875,
          -3.792951708250132,
          -7,
          -7,
          -7,
          -3.566555330883055,
          -3.801197834459149,
          -3.740993931584886,
          -3.3710678622717363,
          -7,
          -7,
          -3.4372747974101237,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3019789772725154,
          -7,
          -7,
          -4.597881585468683,
          -4.472617511351939,
          -7,
          -3.648164778574001,
          -7,
          -4.3774519630245745,
          -3.891425942847994,
          -7,
          -4.103478733439318,
          -3.9875322027298394,
          -7,
          -7,
          -4.419765806330483,
          -4.6977392085535925,
          -3.629522858845675,
          -7,
          -4.198620436084584,
          -3.6683496721951165,
          -7,
          -4.3172482684453195,
          -7,
          -5.388380098226059,
          -4.279461609257673,
          -4.5349774634615505,
          -7,
          -7,
          -4.359389580131493,
          -7,
          -7,
          -3.9307962629833004,
          -3.8642736968043794,
          -7,
          -4.328155261969947,
          -4.199233930536901,
          -7,
          -7,
          -7,
          -4.45622934552542,
          -4.191059581827398,
          -4.139333252881835,
          -7,
          -4.1952721924613625,
          -3.890767421900135,
          -3.8988896559265864,
          -7,
          -4.333346498424387,
          -7,
          -3.804578580195262,
          -3.2242308245491174,
          -7,
          -3.842827579929976,
          -3.9223384913862973,
          -3.728272597895017,
          -7,
          -3.9637248815548944,
          -7,
          -7,
          -7,
          -3.4739429223184204,
          -3.6877964113812944,
          -7,
          -3.28464301844565,
          -3.908397530346767,
          -4.706615382568476,
          -7,
          -3.708505880955237,
          -7,
          -3.57621173370578,
          -7,
          -4.502662640381697,
          -3.6079194520225313,
          -3.3782940524345144,
          -7,
          -7,
          -3.0550755705285217,
          -3.48313065555793,
          -7,
          -4.220265033587232,
          -7,
          -3.6689064071901316,
          -4.18957452553725,
          -7,
          -3.4973246408079492,
          -3.5766628241474274,
          -7,
          -3.4338771116793816,
          -7,
          -3.617000341120899,
          -2.9563498823917462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5725039734840767,
          -2.921166050637739,
          -3.110589710299249,
          -7,
          -3.028571252692538,
          -2.682459014749771,
          -2.21649578796984,
          -3.049024097915049,
          -7,
          -2.4605971888976015,
          -7,
          -3.057735242568242,
          -2.556503516499598,
          -1.681618065583093,
          -7,
          -3.2303531105571546,
          -2.7628660424620133,
          -1.5409548089261327,
          -3.1610683854711747,
          -3.059184617631371,
          -2.8384992763954235,
          -7,
          -2.8112397727532894,
          -7,
          -3.076154791417437,
          -7,
          -2.67735804958144,
          -7,
          -7,
          -4.121800505098974,
          -3.1653455932368795,
          -3.6754187475570377,
          -2.8273692730538253,
          -3.17507672117621,
          -2.645422269349092,
          -7,
          -3.497067936398505,
          -7,
          -2.7895807121644256,
          -2.4403519370473017,
          -7,
          -7,
          -3.1204093945560682,
          -3.258876629372131,
          -3.400537989391946,
          -2.750893920382125,
          -2.814691432747457,
          -2.887617300335736,
          -7,
          -3.021602716028242,
          -3.296840627340024,
          -3.723838623672183,
          -7,
          -3.09143245732978,
          -3.0671948870277648,
          -7,
          -4.153021743626138,
          -7,
          -7,
          -3.2092468487533736,
          -2.5925468421919335,
          -3.10407720615511,
          -2.8904210188009145,
          -7,
          -2.9640237928400337,
          -7,
          -7,
          -3.053462604925455,
          -2.5831278976760292,
          -3.0128372247051725,
          -2.898542359241223,
          -3.3403780071480957,
          -3.2345172835126865,
          -7,
          -3.2065560440990297,
          -3.4020994719811863,
          -2.9411137270371017,
          -3.102605194126567,
          -3.1960060319521792,
          -3.018977737412909,
          -7,
          -2.9132839017604186,
          -2.266056211278075,
          -3.080355870349396,
          -2.6327103038329542,
          -7,
          -7,
          -7,
          -3.664961468665818,
          -7,
          -2.357934847000454,
          -2.403977963669355,
          -2.878010860757683,
          -7,
          -2.9911078842420706,
          -2.1668453699832115,
          -3.3807537708039,
          -2.699837725867246,
          -7,
          -3.303196057420489,
          -7,
          -2.886490725172482,
          -2.9869507878585164,
          -3.705607163404605,
          -7,
          -1.974226499472477,
          -7,
          -2.46166601136025,
          -2.819872821950546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.936513742478893,
          -3.3398487830376373,
          -3.2837533833325265,
          -7,
          -2.734799829588847,
          -2.7748817658187965,
          -1.8553172051959428,
          -2.002166061756508,
          -2.4119562379304016,
          -1.482465220173021,
          -1.5527196149502795,
          -1.2143762781314738,
          -1.7269067066451238,
          -2.360418623725794,
          -7,
          -7,
          -1.593676912538275,
          -1.8421685551669627,
          -1.6749010593445681,
          -7,
          -2.1129163556418598,
          -1.818850727921582,
          -1.4561437549623364,
          -1.286707687770264,
          -2.618346991756171,
          -2.4409090820652177,
          -1.9389642436205232,
          -1.3380135619171512,
          -1.7900504736833514,
          -1.5935321959484976,
          -2.526892871450658,
          -1.3343519355410627,
          -2.6699364163086976,
          -2.5017437296279943,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3939260065858368,
          -7,
          -7,
          -4.969525404133492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4437322414015967,
          -7,
          -7,
          -7,
          -5.140517470457171,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.207995007816801,
          -7,
          -7,
          -3.7742979384992776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5342800052050816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.860278099752235,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530716956330775,
          -7,
          -4.008216801589691,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9606610072709816,
          -7,
          -7,
          -7,
          -3.60151678365001,
          -4.373169558903721,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.992743452515999,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.992597696102038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7062909572587635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.538385197019912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.542410429811593,
          -7,
          -2.90603559031291,
          -2.6745549761273852,
          -7,
          -5.150903737388157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.750876579084994,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4190465771041594,
          -7,
          -7,
          -7,
          -7,
          -3.8357539675193832,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8965813275057326,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.339113414771401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.008238108813141,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9469923407483725,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.061452479087193,
          -7,
          -3.079362164393046,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.252610340567373,
          -7,
          -7,
          -7,
          -3.765072201102792,
          -3.2161659022859928,
          -3.00774777800074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.229169702539101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.875141745177931,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.674456957849724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.667462292455807,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.75759086081304,
          -3.024120637644558,
          -2.9714304844819157,
          -4.135498386458118,
          -7,
          -4.677807630689279,
          -7,
          -4.43240803142708,
          -7,
          -2.456366033129043,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.885461582484264,
          -7,
          -7,
          -7,
          -7,
          -4.653029106272008,
          -7,
          -7,
          -4.065654393514962,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.942102346729723,
          -4.477381753267053,
          -7,
          -4.443845568406682,
          -7,
          -7,
          -4.6047658847038875,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.765430111553846,
          -2.993215720474137,
          -4.175134758658844,
          -7,
          -7,
          -3.4910613864705238,
          -7,
          -2.383815365980431,
          -7,
          -3.119997780003502,
          -7,
          -4.193034110911296,
          -2.880927865267085,
          -1.909823369650912,
          -7,
          -7,
          -7,
          -1.9629660778441818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1772478362556233,
          -7,
          -7,
          -3.6977087205918364,
          -7,
          -7,
          -7,
          -4.491400218248948,
          -7,
          -7,
          -7,
          -2.8061277719906874,
          -7,
          -2.459057254641927,
          -7,
          -3.119585774961784,
          -2.9636387304229133,
          -7,
          -7,
          -2.8455114569725612,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.717393087162805,
          -7,
          -4.186193249920351,
          -7,
          -3.501333178645566,
          -2.6932871570056554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2607866686549762,
          -3.6933653747922923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.749890841271422,
          -7,
          -2.9642596301968487,
          -3.7808931086870787,
          -7,
          -7,
          -7,
          -3.7822063554634027,
          -3.2829618035343353,
          -3.3010299956639813,
          -3.821731821690044,
          -7,
          -7,
          -7,
          -3.2412973871099933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9258275746247424,
          -3.1015752462559334,
          -4.0482993461008,
          -7,
          -7,
          -3.5424394925233997,
          -7,
          -3.394626764272209,
          -7,
          -2.387686374306485,
          -7,
          -2.7076766077813272,
          -3.3347552398696707,
          -7,
          -7,
          -2.8698182079793284,
          -2.6848453616444123,
          -3.5444401373176926,
          -2.8965262174895554,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.2624510897304293,
          -7,
          -7,
          -7,
          -1.3716834463321412,
          -7,
          -2.3729120029701067,
          -2.2774454840544975,
          -3.0969447551769402,
          -7,
          -7,
          -1.593676912538275,
          -7,
          -3.015219998535312,
          -7,
          -2.0453229787866576,
          -3.49391789471334,
          -1.9132249784197266,
          -1.8018400929397844,
          -2.366925571380331,
          -3.377306251068199,
          -3.350829273582968,
          -7,
          -7,
          -2.9876662649262746,
          -2.0064660422492318,
          -3.623352681537992,
          -1.9375178920173466,
          -2.940516484932567,
          -2.0086001717619175,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2336372538662697,
          -7,
          -7,
          -7,
          -3.962984584316997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4856149687087945,
          -7,
          -7,
          -2.7834867041809632,
          -3.736004819709059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.036275202822311,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.911766184046292,
          -7,
          -7,
          -7,
          -3.9735034636555957,
          -7,
          -7,
          -7,
          -7,
          -3.2459442801693057,
          -7,
          -7,
          -7,
          -3.602168551378997,
          -3.344883279369863,
          -2.9348107061271715,
          -2.95784663370815,
          -3.7281913985899466,
          -3.647969458362972,
          -7,
          -7,
          -3.735119634081872,
          -3.097719940343722,
          -7,
          -7,
          -7,
          -7,
          -2.8028421127390746,
          -3.3135157072120407,
          -3.514547752660286,
          -7,
          -3.414555556229215,
          -7,
          -7,
          -3.8428587624452937,
          -7,
          -7,
          -4.020016872748719,
          -3.506505032404872,
          -2.5453954864899164,
          -7,
          -7,
          -2.80303012271076,
          -3.675136504467994,
          -3.5363058723510337,
          -7,
          -2.890261292987454,
          -7,
          -3.762453482363547,
          -7,
          -7,
          -7,
          -3.3617504942690473,
          -7,
          -3.2730343599066476,
          -7,
          -7,
          -7,
          -3.649140064144219,
          -3.7061201097027037,
          -3.8134475442648212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.121413924158609,
          -3.1983821300082944,
          -7,
          -7,
          -7,
          -2.8790630951351517,
          -7,
          -7,
          -3.5998830720736876,
          -7,
          -3.388585562915087,
          -3.1031192535457137,
          -7,
          -7,
          -7,
          -3.8426716337607885,
          -7,
          -3.098173830542939,
          -3.518908573691414,
          -7,
          -7,
          -7,
          -3.528196562395411,
          -3.6006462356623947,
          -7,
          -3.224468315012689,
          -7,
          -7,
          -2.8618041111314847,
          -3.4504800546060603,
          -7,
          -7,
          -3.7159699350819997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4267714347926965,
          -3.4274861090957858,
          -4.2288621285305625,
          -3.875234946450165,
          -7,
          -3.311160272879129,
          -7,
          -7,
          -3.130226522048751,
          -7,
          -3.971971276399757,
          -7,
          -7,
          -7,
          -3.494502447046173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.009110806132213,
          -3.6403820447095683,
          -7,
          -3.2006179734428333,
          -3.538824988937904,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.042496757433736,
          -7,
          -3.433989724808988,
          -7,
          -7,
          -2.6800892113547894,
          -3.278410601475816,
          -3.0922526548953835,
          -3.114610984232173,
          -7,
          -3.0988167170489413,
          -7,
          -7,
          -7,
          -7,
          -3.841484609335393,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8615941446438655,
          -7,
          -3.6227837254272086,
          -7,
          -7,
          -7,
          -7,
          -3.612571954065176,
          -7,
          -7,
          -7,
          -3.102930835735232,
          -2.9488573477695916,
          -7,
          -7,
          -3.2310871205848226,
          -7,
          -7,
          -3.543322900646912,
          -7,
          -7,
          -2.829223340479299,
          -7,
          -3.510652230175532,
          -3.5846536420330626,
          -7,
          -7,
          -7,
          -3.3002693145303565,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.644832328825636,
          -3.273921964852061,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5602653978627146,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5468747110475065,
          -3.648067129448935,
          -7,
          -7,
          -3.088527756680114,
          -3.372451701409366,
          -3.0095453179062304,
          -7,
          -3.6188523459824924,
          -7,
          -7,
          -7,
          -4.096249383189612,
          -7,
          -4.0718083918331285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.912859475162355,
          -2.838691709151223,
          -3.7283537820212285,
          -7,
          -3.529045170765769,
          -7,
          -7,
          -7,
          -7,
          -3.6854730197227594,
          -2.8999376945524498,
          -7,
          -7,
          -7,
          -3.8849903531831114,
          -3.3208107260676276,
          -7,
          -3.496652939250918,
          -7,
          -7,
          -7,
          -7,
          -2.4521231704399007,
          -2.9217607710071607,
          -7,
          -7,
          -7,
          -7,
          -4.114053839214257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5830853663476874,
          -7,
          -7,
          -3.3562171342197353,
          -7,
          -3.969637197040949,
          -4.131121218232961,
          -3.7153104543716355,
          -3.5674968911042226,
          -2.602750365351694,
          -3.229742771130175,
          -3.9355072658247128,
          -7,
          -7,
          -7,
          -2.637203727209186,
          -3.64033234004778,
          -3.8987251815894934,
          -7,
          -7,
          -7,
          -3.410524172586188,
          -7,
          -7,
          -3.571242850560224,
          -7,
          -7,
          -2.993045536208752,
          -7,
          -7,
          -3.2613663215042505,
          -4.489909284707066,
          -7,
          -7,
          -4.035381702958746,
          -3.2427401446056274,
          -4.008600171761918,
          -4.141992954947583,
          -3.61627646616399,
          -7,
          -3.343014497150768,
          -7,
          -3.785922728593503,
          -3.8629189739820413,
          -3.6560129752094572,
          -7,
          -4.2201778486187775,
          -3.5556636584567096,
          -4.127007557371327,
          -3.762809807339,
          -7,
          -4.489527836582873,
          -4.33128554558701,
          -3.786242554893265,
          -2.805330913142769,
          -7,
          -3.983707456077561,
          -3.9537838453708924,
          -7,
          -3.7138474083382946,
          -3.7543993062505883,
          -4.098617771188012,
          -4.374766670285203,
          -7,
          -7,
          -4.168968646554766,
          -4.00770511436478,
          -7,
          -3.2533380053261065,
          -4.163956058605712,
          -7,
          -3.6147742187886363,
          -2.791153148992849,
          -2.093635192114032,
          -3.3782767419344064,
          -3.174768266934489,
          -7,
          -3.6291310202406026,
          -3.250594242825535,
          -3.459241664878082,
          -3.480782802561479,
          -3.527657515157577,
          -3.8006741277327873,
          -7,
          -3.221530150162211,
          -3.1216536240371213,
          -7,
          -3.3453737305590887,
          -3.464638559095033,
          -3.862429556106009,
          -7,
          -2.997995908477958,
          -3.6164068895888386,
          -4.293668467719096,
          -7,
          -3.876391061819188,
          -7,
          -2.950069818943341,
          -7,
          -4.205701595473211,
          -7,
          -2.6367613528522122,
          -3.4983105537896004,
          -3.418908657676565,
          -4.171741076116891,
          -3.3095340131587996,
          -3.823213313282668,
          -3.5800121125294244,
          -3.4782778319196046,
          -3.4972965474240967,
          -3.6199537588433968,
          -7,
          -3.0924706854854187,
          -3.141814671730619,
          -7,
          -3.8340448037769277,
          -7,
          -3.816373888752362,
          -2.9184235414128294,
          -3.8728358439998014,
          -3.036628895362161,
          -7,
          -7,
          -7,
          -3.892595422828898,
          -2.4740936647517855,
          -3.6917885244026984,
          -2.871864702088195,
          -7,
          -2.2056682712187854,
          -2.8992908534140494,
          -2.6624143801161035,
          -7,
          -7,
          -2.5147070975462795,
          -3.503245771465113,
          -2.831643187009035,
          -2.268863871489262,
          -2.9548452777274856,
          -3.6798819421128623,
          -2.5395397244572258,
          -2.673665876245702,
          -1.3691249967503878,
          -3.2854447829074154,
          -2.704640691250642,
          -2.065533673461455,
          -7,
          -2.78993308093175,
          -7,
          -3.0779489985060278,
          -3.1835545336188615,
          -2.9061329346974785,
          -7,
          -7,
          -3.281714970027296,
          -2.2849563718082075,
          -2.711119811778399,
          -2.7095526127800826,
          -3.130414185953231,
          -3.0105312308878815,
          -3.2833012287035497,
          -7,
          -7,
          -3.629817196018516,
          -2.7071228779824272,
          -7,
          -3.516403148447403,
          -3.100973313405724,
          -3.1484998267052453,
          -3.3944516808262164,
          -1.538143413273622,
          -2.4072408977401274,
          -3.2962262872611605,
          -3.2586372827240764,
          -3.0521165505499983,
          -2.9136725954360077,
          -3.7852348968790297,
          -7,
          -3.0871422793838077,
          -2.9261954026148027,
          -3.668758541750958,
          -2.66291515625562,
          -3.5490032620257876,
          -7,
          -3.0669054262816697,
          -3.678518379040114,
          -2.7899679150590524,
          -2.3069410289151175,
          -2.7745169657285493,
          -2.395172160046634,
          -3.557025722386383,
          -3.685338597906292,
          -3.549371152333177,
          -2.8526324579115143,
          -3.059184617631371,
          -3.0778219507849,
          -2.503742058024168,
          -2.4668676203541096,
          -3.188225172705279,
          -2.6666164935374748,
          -2.9396248374684815,
          -3.831613855309099,
          -7,
          -3.881707926973662,
          -7,
          -7,
          -2.8284450587956416,
          -2.634282198523119,
          -2.8166028104026988,
          -2.660549282517093,
          -3.122652684426726,
          -7,
          -7,
          -2.2956186350156695,
          -3.4403579968152878,
          -3.1010593549081156,
          -1.8282845410046067,
          -3.029789470831856,
          -2.015918333597989,
          -3.1541702816056496,
          -1.9354861259295948,
          -2.954604270794606,
          -3.035029282202368,
          -3.552303109338354,
          -3.1681044568157537,
          -7,
          -2.846584502898046,
          -3.861653870213911,
          -3.1749896504073343,
          -7,
          -3.043853283705882,
          -7,
          -2.1879371259474465,
          -7,
          -3.5368108659915416,
          -3.493597449000527,
          -7,
          -7,
          -7,
          -3.037692040279623,
          -2.9522595365908204,
          -3.3356584522893016,
          -3.666705136119899,
          -3.2427898094786767,
          -2.7103591771903925,
          -2.4356320489516605,
          -2.0979382336289936,
          -2.148626380910713,
          -2.0955429381058917,
          -1.1750283506819905,
          -1.7726359953497612,
          -1.559752605194504,
          -2.1486444762209174,
          -3.5532153014021377,
          -1.8421685551669627,
          -3.015219998535312,
          -7,
          -1.8755645015498659,
          -3.184123354239671,
          -1.8695714308265334,
          -1.663492885987207,
          -1.8105990628039323,
          -1.6849509138339958,
          -2.7712607594199907,
          -1.9420936198597298,
          -2.6597804193959593,
          -2.0291131048924633,
          -1.7192391876340223,
          -2.214843848047698,
          -2.0688040746361804,
          -1.6840000193202802,
          -2.5382766083964956,
          -2.6373467519040084,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1997551772534747,
          -7,
          -7,
          -3.561421238043235,
          -7,
          -7,
          -7,
          -4.20013885385738,
          -7,
          -3.165541076722373,
          -7,
          -7,
          -7,
          -7,
          -4.341909120179768,
          -7,
          -7,
          -7,
          -4.210317356400843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.264758811598086,
          -3.1231980750319988,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.442880953337685,
          -7,
          -7,
          -7,
          -7,
          -3.1794560366764517,
          -7,
          -7,
          -7,
          -3.172310968521954,
          -7,
          -3.3904747828500743,
          -2.865548114255671,
          -3.4356320489516605,
          -3.5036545192429593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2847690133490195,
          -3.498662748618196,
          -7,
          -7,
          -3.428620672671939,
          -7,
          -3.745465168670727,
          -7,
          -7,
          -7,
          -4.426946963787001,
          -7,
          -3.385069776331935,
          -7,
          -7,
          -3.0396973239347242,
          -7,
          -7,
          -7,
          -3.166282067316571,
          -7,
          -3.5149460053080044,
          -7,
          -3.2979792441593623,
          -7,
          -3.888284185954415,
          -7,
          -3.725176301419137,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.601408060534684,
          -7,
          -4.154667377622576,
          -7,
          -7,
          -7,
          -3.378443326865433,
          -7,
          -3.406199423663313,
          -7,
          -3.6462076122066853,
          -3.0378790294829785,
          -7,
          -7,
          -7,
          -7,
          -4.086680093734625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.278524964737017,
          -7,
          -7,
          -7,
          -7,
          -3.168202746842631,
          -7,
          -7,
          -7,
          -7,
          -3.0719902426915837,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.859138297294531,
          -7,
          -4.035509785089559,
          -3.2643455070500926,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5435714239623652,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4239009185284166,
          -7,
          -3.302114376956201,
          -3.5852350633657752,
          -7,
          -3.0149403497929366,
          -4.306432686997816,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.921166050637739,
          -7,
          -3.6299190355035416,
          -7,
          -7,
          -7,
          -7,
          -3.6375820900165774,
          -7,
          -7,
          -3.6024940688072813,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4102709642521845,
          -7,
          -3.8623699371228826,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.136657161873879,
          -5.111038081401025,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.733999286538387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.0981936258632885,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.076276255404218,
          -7,
          -3.3055663135153037,
          -7,
          -3.8257505813480277,
          -7,
          -7,
          -7,
          -3.141763230275788,
          -3.041590046889367,
          -4.058830772372511,
          -7,
          -4.7123129086813655,
          -7,
          -7,
          -7,
          -3.697447307372525,
          -7,
          -3.96773513178388,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3679147387937527,
          -3.2366883817646155,
          -3.182699903336043,
          -7,
          -7,
          -4.287257721739699,
          -3.900913067737669,
          -7,
          -7,
          -7,
          -7,
          -3.6034691597338386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.787099647059502,
          -3.577664104732127,
          -7,
          -7,
          -7,
          -7,
          -3.3310221710418286,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7114697818743276,
          -7,
          -7,
          -2.8546096380957953,
          -7,
          -4.556881174379756,
          -7,
          -4.159329992391703,
          -7,
          -3.0233896558066746,
          -7,
          -3.785756799962643,
          -7,
          -7,
          -7,
          -3.076761771924212,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9429995933660407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3005954838899636,
          -7,
          -7,
          -4.295710008808256,
          -7,
          -7,
          -7,
          -7,
          -3.898396045930009,
          -7,
          -7,
          -4.403960831399213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.281737671706917,
          -7,
          -7,
          -4.224258466480802,
          -7,
          -7,
          -7,
          -5.087165375759767,
          -7,
          -4.533683106579122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.298088569391382,
          -7,
          -7,
          -4.326069466588894,
          -4.196424913949195,
          -7,
          -4.087852375163169,
          -7,
          -7,
          -4.188197016558756,
          -3.9163697135728093,
          -7,
          -4.069372054308515,
          -3.522261608845393,
          -3.1938478199735574,
          -3.190705124231049,
          -7,
          -3.0757293997408985,
          -4.08962255158434,
          -3.521094477651296,
          -7,
          -3.841234295506041,
          -4.361255520058149,
          -4.079624362195828,
          -7,
          -3.3597722616567713,
          -7,
          -7,
          -7,
          -3.5301081810850734,
          -7,
          -7,
          -3.649595923467478,
          -3.7978100169799,
          -4.752287521541528,
          -7,
          -3.398547595734928,
          -7,
          -3.654941420288582,
          -7,
          -4.5604839331487765,
          -3.604262062742623,
          -3.0442260771126826,
          -7,
          -3.5462341061067835,
          -4.133331291536332,
          -3.742167894637497,
          -7,
          -3.740362689494244,
          -7,
          -3.8196700381046775,
          -3.7901161997663317,
          -7,
          -3.3310666545009067,
          -3.677678977013519,
          -7,
          -4.005303386569579,
          -7,
          -7,
          -3.1316721192672685,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.516447228070065,
          -3.079543007402906,
          -2.806010294559223,
          -7,
          -3.0073209529227447,
          -3.08904115613125,
          -7,
          -3.0287745265000883,
          -7,
          -2.452859335795852,
          -7,
          -3.253601050494452,
          -2.420368379857524,
          -7,
          -7,
          -3.829528904200033,
          -3.045127306568027,
          -1.6859322186412395,
          -7,
          -7,
          -3.7866804531966487,
          -7,
          -7,
          -7,
          -2.9383946223434494,
          -7,
          -2.870069317834201,
          -7,
          -7,
          -7,
          -3.563285601908917,
          -4.089785045963041,
          -2.4533183400470375,
          -3.461348433647983,
          -2.7376894903529134,
          -7,
          -3.4827307000799426,
          -7,
          -2.5420781463356255,
          -3.212018019632142,
          -7,
          -2.886490725172482,
          -7,
          -2.932220013877119,
          -7,
          -3.0115704435972783,
          -2.968015713993642,
          -7,
          -3.04766419460156,
          -3.3014640731432996,
          -3.2130748253088512,
          -3.721040784326413,
          -7,
          -2.7103591771903925,
          -2.831997677235896,
          -7,
          -4.14989620715876,
          -7,
          -7,
          -7,
          -7,
          -3.3343600421243718,
          -2.875928984922927,
          -7,
          -7,
          -7,
          -7,
          -3.012415374762433,
          -3.003245054813147,
          -7,
          -3.05595140532915,
          -2.906940799413896,
          -7,
          -7,
          -2.800854491503561,
          -3.139868934471412,
          -3.6306312440205,
          -7,
          -3.609146011529596,
          -3.1809855807867304,
          -3.7456992266025058,
          -3.1869563354654122,
          -2.7572761297037145,
          -7,
          -2.606112535339159,
          -7,
          -7,
          -7,
          -3.8849651982007325,
          -7,
          -2.8041394323353503,
          -2.6919651027673606,
          -3.530814193504616,
          -3.3506356082589543,
          -3.4657990986731795,
          -1.8225177834877329,
          -3.195161370069258,
          -2.507855871695831,
          -7,
          -2.979092900638326,
          -7,
          -3.0532705666813786,
          -2.9777236052888476,
          -7,
          -7,
          -2.8045937153076332,
          -7,
          -2.7726709022727314,
          -3.0867156639448825,
          -7,
          -7,
          -7,
          -7,
          -2.814913181275074,
          -7,
          -7,
          -7,
          -3.3279716236230104,
          -2.993876914941211,
          -7,
          -1.6174663223693628,
          -1.8388490907372554,
          -2.4738517701548153,
          -2.3100557377508917,
          -1.468383357993737,
          -1.3545885878772408,
          -1.3636994158662474,
          -2.4066142226269402,
          -7,
          -1.6749010593445681,
          -7,
          -1.8755645015498659,
          -7,
          -2.255272505103306,
          -1.7731284916647108,
          -1.6766936096248666,
          -1.845098040014257,
          -1.4940220052578637,
          -3.4497868469857735,
          -2.2771178382585697,
          -1.7494786504876951,
          -1.6544172149137142,
          -1.2014587307439752,
          -1.8920946026904806,
          -2.8197319011288338,
          -1.5216610151120733,
          -2.5115491597450657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.400537989391946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.8757170352614105,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8178296997456056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4778444763387584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.875111059637361,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.865400118179301,
          -7,
          -7,
          -3.2780673308886628,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.366441636156833,
          -7,
          -7,
          -4.689011234360268,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.953812827963013,
          -7,
          -5.404772158708847,
          -7,
          -3.7309436934277356,
          -7,
          -4.314478175864182,
          -7,
          -4.7802164692102265,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.653226990016805,
          -7,
          -4.501737867345703,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.46372879165109,
          -7,
          -4.173594138754633,
          -7,
          -7,
          -3.5569855749879813,
          -7,
          -7,
          -7,
          -3.018534070428183,
          -7,
          -4.095741057659923,
          -3.2734642726213465,
          -7,
          -7,
          -7,
          -7,
          -3.3282776444097677,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.69539410829111,
          -7,
          -7,
          -7,
          -5.093295581361213,
          -7,
          -7,
          -7,
          -3.918554530550274,
          -7,
          -3.40705081480425,
          -7,
          -3.1017470739463664,
          -4.241969611913073,
          -7,
          -2.4533183400470375,
          -3.312388949370592,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.184691430817598,
          -7,
          -3.4940153747571436,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.568475517147917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.444591225642957,
          -2.645422269349092,
          -7,
          -3.7770641547424293,
          -7,
          -7,
          -7,
          -4.626884178239356,
          -3.5781806096277777,
          -7,
          -3.8205736149734113,
          -3.1051694279993316,
          -7,
          -7,
          -3.3183555502257036,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.223729509364877,
          -7,
          -7,
          -3.7637274037656985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6306312440205,
          -7,
          -7,
          -7,
          -7,
          -3.43428495862892,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4321672694425884,
          -7,
          -2.2010555635620648,
          -3.31722734917642,
          -3.034708651341069,
          -3.6181527333785195,
          -7,
          -2.0453229787866576,
          -3.184123354239671,
          -2.255272505103306,
          -7,
          -3.590144934086627,
          -2.845098040014257,
          -2.519827993775719,
          -2.006097026608113,
          -7,
          -3.3404441148401185,
          -7,
          -7,
          -2.9756615331810585,
          -7,
          -3.6178387477170033,
          -7,
          -7,
          -7,
          -7,
          -4.494265937303735,
          -7,
          -4.494474629054753,
          -4.019628552674895,
          -3.909622879773425,
          -4.030518764843543,
          -7,
          -4.02360907957383,
          -2.531785552707462,
          -4.254608492283572,
          -7,
          -4.195733648273212,
          -3.286419041860382,
          -3.2249860256767717,
          -3.8069935136821074,
          -4.200412701197246,
          -7,
          -4.018991594705612,
          -7,
          -2.893637567918888,
          -2.9213697694196323,
          -7,
          -3.3725806350309133,
          -2.630698004360275,
          -4.027050460056304,
          -4.197473535014777,
          -7,
          -3.7381857702399692,
          -3.8080353284442587,
          -4.1984646353719155,
          -2.484841345882423,
          -3.8051472978004104,
          -4.495738547239104,
          -7,
          -4.499714568741124,
          -3.7371661281907387,
          -4.196521603400585,
          -3.8300366292735153,
          -7,
          -3.9169406120116785,
          -4.4990681845107945,
          -2.984571029906977,
          -4.195650622404186,
          -7,
          -3.7391238429861597,
          -3.6605538012167345,
          -2.9651397854416572,
          -7,
          -3.9019348574378614,
          -4.530878153458473,
          -3.426904171590417,
          -4.211053762679936,
          -2.2926173616597527,
          -3.1633299348401485,
          -2.9155682164446812,
          -2.89483434203002,
          -7,
          -7,
          -3.3208470333280387,
          -7,
          -3.805133693575249,
          -4.5043757014788,
          -7,
          -4.501812117075094,
          -2.7161172171175747,
          -2.3744663365963614,
          -7,
          -4.495225090106221,
          -3.179303656465203,
          -7,
          -3.256849986066561,
          -3.265537737431737,
          -7,
          -3.8253352245089047,
          -3.081241379736605,
          -4.495544337546448,
          -3.740638970811629,
          -7,
          -4.19685294676045,
          -2.497523633254155,
          -3.914038885724392,
          -7,
          -7,
          -3.3790852708537966,
          -7,
          -3.299045597055003,
          -3.4205650352890364,
          -3.667826378950711,
          -3.9091680930993435,
          -2.640755354769382,
          -3.534026106056135,
          -3.083017551279961,
          -7,
          -7,
          -4.046768219660838,
          -4.512524307323576,
          -3.61751143775027,
          -3.1405080430381793,
          -4.496984968687506,
          -3.350674348233281,
          -4.025551622782544,
          -7,
          -7,
          -3.0717196036338423,
          -7,
          -3.617236306615377,
          -3.5540447449409966,
          -2.999553067213758,
          -2.3463289211437783,
          -4.0237461631524765,
          -4.196797740419523,
          -4.028923533513322,
          -3.662730856031272,
          -2.68185985669508,
          -3.4620983811351556,
          -7,
          -4.216456214915742,
          -3.6896259318411455,
          -3.5444773290864293,
          -4.202937636552238,
          -2.852222588740421,
          -3.0495360706389203,
          -4.500798881491561,
          -3.084137899575048,
          -7,
          -2.888034807041142,
          -3.6029141680346397,
          -3.680452069509349,
          -4.54161668151239,
          -7,
          -4.200782121411112,
          -2.1340345939992327,
          -3.486430478854434,
          -7,
          -7,
          -3.141489972824933,
          -7,
          -7,
          -7,
          -4.495918807079969,
          -7,
          -2.9263844500573724,
          -2.4274570408261784,
          -3.3106546980922547,
          -4.074194530401818,
          -7,
          -3.3044224938606197,
          -7,
          -3.895215295030033,
          -3.8080082999104,
          -3.545296805458288,
          -3.192880935351771,
          -7,
          -4.020885876319437,
          -4.201246870680715,
          -2.405154189748663,
          -7,
          -4.4935695729787,
          -7,
          -3.6633508724665367,
          -7,
          -3.9066985977508377,
          -4.210064237291544,
          -2.687633863263913,
          -2.8960141473867185,
          -3.0211759564845853,
          -1.8026158669942771,
          -2.876741321509722,
          -3.7219342108540117,
          -2.353090061965932,
          -3.799891684656865,
          -7,
          -7,
          -3.4611300237200586,
          -3.7992578188157653,
          -4.497454909613176,
          -7,
          -3.313423156443038,
          -7,
          -3.2056495748651743,
          -7,
          -3.7782115648732764,
          -2.3838017055920684,
          -7,
          -3.6472117617451385,
          -3.584733162833891,
          -4.508704748138777,
          -4.520064101808785,
          -4.510276844417355,
          -4.212320803141976,
          -3.904539736714001,
          -3.5558733559874045,
          -3.9423305520097855,
          -4.499783276438258,
          -2.9681387192007698,
          -7,
          -3.996632049605175,
          -3.5605575122983906,
          -3.1775364999298623,
          -4.195595263005526,
          -2.6106192208808556,
          -7,
          -3.0428140768022023,
          -4.199631780610535,
          -3.4687634306105437,
          -4.021023822031585,
          -4.199110385681477,
          -3.4455323537437947,
          -3.6731131042382335,
          -7,
          -3.3163111433656165,
          -2.4748625905317962,
          -2.9440692989142505,
          -7,
          -4.494015374757144,
          -4.498269190440657,
          -7,
          -7,
          -4.198409633537761,
          -7,
          -7,
          -2.9764730006818385,
          -3.538561167233788,
          -3.230959555748569,
          -2.9805589206857506,
          -7,
          -4.498792835329338,
          -3.801403710017355,
          -4.506302043627209,
          -4.494293768665333,
          -4.495918807079969,
          -4.039903003595179,
          -3.8121643883928478,
          -3.665607790220819,
          -7,
          -4.016225245647056,
          -4.1948888114159875,
          -4.19641109941299,
          -7,
          -4.495655325147846,
          -3.5574804670426556,
          -2.547063203346281,
          -7,
          -7,
          -7,
          -4.196190007050506,
          -4.02511462433611,
          -4.200316874268984,
          -7,
          -3.9002305365868106,
          -3.852016173286643,
          -4.036376015529204,
          -4.088750166273466,
          -3.292524215549357,
          -4.512377507312931,
          -7,
          -7,
          -2.2304147438003934,
          -3.670709595223797,
          -3.0056228426882443,
          -4.025483370754005,
          -3.270774088928408,
          -7,
          -7,
          -3.89593334272974,
          -2.9444934006362775,
          -3.354876422516234,
          -2.909599687897347,
          -3.3512405258734037,
          -3.973797259774123,
          -3.8105013477665297,
          -7,
          -4.194750156641199,
          -3.4282293130141395,
          -3.128063077420776,
          -3.201527172077645,
          -7,
          -3.5946273153522026,
          -3.507693992654917,
          -3.7983743766815614,
          -3.4695408715573652,
          -7,
          -3.313168308546585,
          -2.6002948575060483,
          -3.275988458642023,
          -3.92263464618843,
          -3.6646688327641304,
          -2.9208623994457943,
          -2.860733410301672,
          -4.019213251277154,
          -3.2076777920604744,
          -7,
          -7,
          -3.196339507959142,
          -3.8146869966218184,
          -3.0190944165906677,
          -3.3263102531878377,
          -2.857793512133298,
          -3.2350763753367193,
          -2.7753868598238993,
          -3.740901932571898,
          -2.9464497931401237,
          -3.089665858974108,
          -7,
          -7,
          -7,
          -3.3851413476046583,
          -3.3118784613957004,
          -7,
          -3.4596802769848254,
          -3.6774505159720032,
          -7,
          -3.5620416016746557,
          -7,
          -3.2740848933351994,
          -3.8999435533286775,
          -4.028232251440524,
          -2.88860378026851,
          -4.201028227093125,
          -3.071331704755304,
          -3.0686515762089925,
          -2.8071793729279872,
          -4.20115122765526,
          -2.7464926657826996,
          -2.8485276350613553,
          -3.2856046796973826,
          -7,
          -4.203209725325918,
          -4.19574748437503,
          -3.027935408120664,
          -3.203942924360925,
          -3.6531642561518813,
          -3.7382783463742273,
          -4.193792230279798,
          -7,
          -3.375180069808788,
          -4.020596047624484,
          -3.656194062179186,
          -3.599364446251949,
          -2.745186363703905,
          -3.7995473071256147,
          -2.4551104023475094,
          -7,
          -4.494210269229327,
          -2.481261868548562,
          -2.8452482721624146,
          -3.4628646357053148,
          -3.64018319192134,
          -2.492893110691421,
          -2.724982248479115,
          -3.3274270536683934,
          -3.064320690534863,
          -2.592807487530051,
          -3.428037553035308,
          -3.7620906057314665,
          -3.3259430428795245,
          -2.0863757697442034,
          -2.460411189357846,
          -2.7573327528430465,
          -3.5703093854358796,
          -3.105549270910429,
          -2.801826592423241,
          -2.394335622779952,
          -3.0462830464055406,
          -3.423434930523369,
          -2.931909144999707,
          -2.9014319539092193,
          -2.639183518940812,
          -2.4447296125141382,
          -3.6754617093945177,
          -1.5741752586053788,
          -2.5054251214759526,
          -2.6966607992196483,
          -2.7835414519189197,
          -2.868037067135169,
          -2.411815395815549,
          -3.0800808854947244,
          -3.1881313117838195,
          -3.4724505940728925,
          -3.3092853524161985,
          -3.5826427934453213,
          -3.4288045757556866,
          -3.118311975665972,
          -3.0703952134392365,
          -3.6587879323179417,
          -2.720558665026306,
          -2.5080905010569623,
          -2.970924885385915,
          -3.644044492814749,
          -3.12469646635406,
          -3.518105774529618,
          -2.9858538902073053,
          -2.530092029003328,
          -2.6953271324584724,
          -2.2701451708811593,
          -2.632842096574864,
          -2.2970055092917994,
          -4.50982058221228,
          -2.4990106464473296,
          -3.293292754890996,
          -3.893720160977218,
          -3.8686209306148043,
          -2.5595692527659755,
          -3.6454345512591875,
          -2.5776285553511253,
          -2.4328708171745355,
          -2.807813258486935,
          -2.9638136486207034,
          -3.5943372931093807,
          -2.851441814672055,
          -3.3223020096150195,
          -2.062930815889548,
          -4.264109156305809,
          -3.3052812228291697,
          -2.7836075540653025,
          -2.0390959615616686,
          -7,
          -2.6397987097716804,
          -3.028684194331513,
          -2.099685469420008,
          -3.9387698227831174,
          -2.752501999787115,
          -3.4231522154326917,
          -2.6391410942742572,
          -3.0168492772142694,
          -4.502413462710515,
          -2.349908131181242,
          -2.047247488233153,
          -4.234884102331191,
          -2.6308431290241736,
          -4.198065714165741,
          -3.047488412623774,
          -2.0832314678333397,
          -3.255487875542584,
          -3.7180585877122407,
          -4.494446809281385,
          -7,
          -3.8934010868997206,
          -2.8727024406868487,
          -2.2892988830661953,
          -2.83613942742759,
          -2.314229569502311,
          -3.7977382907854604,
          -3.3092308161500323,
          -1.6794090213681825,
          -3.6174197467371765,
          -3.0830644414577666,
          -3.651873099180296,
          -2.181528697484242,
          -7,
          -1.5689077665521831,
          -2.208456496827347,
          -3.270185428658033,
          -3.5166279077623535,
          -2.570374714161939,
          -2.372685248678423,
          -1.5890927346358725,
          -3.3280124388555863,
          -4.1992888280824054,
          -2.8917509168182045,
          -3.8986429210566396,
          -3.0244993503595516,
          -3.5121905991407667,
          -2.745650634785171,
          -4.016197353512439,
          -2.269812738261015,
          -4.495127881242933,
          -4.019213251277154,
          -2.6714275736474455,
          -2.0062076411186065,
          -2.3370168971938905,
          -2.9613931732408316,
          -3.0471320265779482,
          -2.3931418587761177,
          -2.9011039843968383,
          -2.809572662995666,
          -7,
          -2.990554105139274,
          -2.238716226946245,
          -4.4945997959865975,
          -3.894426837964188,
          -3.042509884259952,
          -3.1108454983739153,
          -3.4711938859696856,
          -2.9941108467981485,
          -3.334936032690669,
          -3.226559207269092,
          -3.3248583881988676,
          -3.0211359262688506,
          -2.7790362224230765,
          -2.3981665380079065,
          -7,
          -2.6689855331549603,
          -2.774273595320442,
          -3.052123191595359,
          -2.8041199524420146,
          -3.897956810006952,
          -4.019393263978083,
          -2.5233731817819334,
          -3.0535288053252456,
          -1.9058828871761138,
          -2.638087126400092,
          -3.1077499885923325,
          -3.907666595015563,
          -3.4215216663369774,
          -2.9041398021650044,
          -3.1985883640360258,
          -2.141335623717553,
          -3.384477484490442,
          -2.775153508489039,
          -2.5019205716318917,
          -3.428620672671939,
          -7,
          -2.408856423161136,
          -2.2816611981573267,
          -2.64851013005671,
          -3.5187639162599584,
          -2.133720605254398,
          -2.957723742446469,
          -2.913886068299728,
          -3.144750136698065,
          -2.066666623656604,
          -3.317190430361258,
          -2.7212428392417465,
          -3.505895781219751,
          -4.1938200260161125,
          -4.493778599541865,
          -2.2920188927402747,
          -4.0492309479088515,
          -3.3570359400465626,
          -2.843440425475574,
          -1.865900612004408,
          -3.3119656603683665,
          -2.368403115193713,
          -2.78306531546524,
          -2.6093601127809265,
          -4.199412322193509,
          -3.0799847513312257,
          -7,
          -2.589254372459997,
          -2.5247854493212225,
          -3.852126070250302,
          -4.193110678436452,
          -3.0342673970380254,
          -3.50500066392687,
          -1.740338392619813,
          -3.2235232653918677,
          -3.7204625143161145,
          -3.71594766128561,
          -4.016908043972075,
          -4.495710808313926,
          -4.494947292750087,
          -3.8943160626844384,
          -3.4547627993176926,
          -3.1678809876266514,
          -3.5147336493441603,
          -3.5962671263955155,
          -3.898848543181547,
          -2.4105890203936555,
          -2.4348048695286773,
          -2.5506405275389614,
          -2.459738214092112,
          -1.6885097614621598,
          -1.811284715922013,
          -0.17667281526607695,
          -1.944190840255279,
          -3.166269727827661,
          -2.1129163556418598,
          -3.49391789471334,
          -1.8695714308265334,
          -1.7731284916647108,
          -3.590144934086627,
          -7,
          -2.1892399324978666,
          -2.17803565716981,
          -1.579904306623212,
          -2.86966188853846,
          -1.212640474666788,
          -2.501618091969828,
          -2.3821706787275887,
          -1.2576917341781915,
          -2.745018994770533,
          -1.2438901187636742,
          -1.85062416092448,
          -2.900790291266021,
          -3.5388389432951035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0906107078284064,
          -3.862992822376717,
          -7,
          -7,
          -7,
          -3.425968732272281,
          -7,
          -3.2095150145426308,
          -7,
          -7,
          -7,
          -7,
          -4.344981413927258,
          -3.6032526619816467,
          -7,
          -7,
          -3.948933164706531,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.168756686444427,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9995654882259823,
          -3.527243116388089,
          -7,
          -7,
          -7,
          -4.239230637369824,
          -7,
          -7,
          -3.392345155361204,
          -7,
          -2.8925583448401535,
          -7,
          -7,
          -7,
          -2.737457698850837,
          -7,
          -3.089926509999768,
          -3.490941205356787,
          -2.878730641132499,
          -3.5141491344754376,
          -7,
          -7,
          -3.4879863311293935,
          -7,
          -3.1711411510283822,
          -7,
          -7,
          -7,
          -2.4543002900538933,
          -3.853378760138451,
          -7,
          -7,
          -2.975431808509263,
          -2.8842287696326037,
          -3.28004693749461,
          -3.060697840353612,
          -7,
          -7,
          -4.348265911123662,
          -7,
          -7,
          -7,
          -7,
          -2.893206753059848,
          -3.3756636139608855,
          -7,
          -7,
          -3.4900990050633047,
          -7,
          -7,
          -3.2801228963023075,
          -7,
          -7,
          -3.4827434594492797,
          -3.576341350205793,
          -3.1289643884877254,
          -7,
          -7,
          -3.1709947020363,
          -3.322219294733919,
          -3.1340176456759834,
          -2.501585871330296,
          -7,
          -3.8582965245338854,
          -7,
          -7,
          -7,
          -3.032842520184797,
          -7,
          -7,
          -7,
          -7,
          -2.951571353764591,
          -7,
          -7,
          -7,
          -7,
          -3.7883451651521183,
          -3.161368002234975,
          -7,
          -3.39375064034808,
          -2.979206813945708,
          -3.6630409748939745,
          -7,
          -4.182386117037066,
          -4.154758619154177,
          -7,
          -7,
          -7,
          -7,
          -3.2119210843085093,
          -7,
          -7,
          -7,
          -7,
          -2.9075188461066293,
          -7,
          -7,
          -7,
          -4.373794416714731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.196136691157174,
          -3.0543065658483997,
          -3.862667950228588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1466860556475256,
          -7,
          -7,
          -7,
          -3.2230135770130466,
          -7,
          -2.8512583487190755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.44870631990508,
          -2.9521464117135063,
          -3.0332226466702497,
          -2.7475227813077256,
          -2.8254261177678233,
          -3.075911761482778,
          -3.9475945305730864,
          -3.041392685158225,
          -7,
          -7,
          -7,
          -2.3205616801952367,
          -7,
          -7,
          -3.9389198122447717,
          -7,
          -7,
          -2.591621038213319,
          -7,
          -3.4964760607131895,
          -7,
          -7,
          -3.6190933306267428,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9694159123539814,
          -3.60859734044574,
          -7,
          -7,
          -7,
          -2.986995539724382,
          -7,
          -7,
          -3.288994028501752,
          -7,
          -7,
          -7,
          -7,
          -3.1721356966495664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0884904701823963,
          -3.325515663363148,
          -7,
          -3.840482487213442,
          -5.111169224446162,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3879234669734366,
          -7,
          -2.81778565588553,
          -7,
          -2.8438554226231614,
          -2.944975908412048,
          -7,
          -7,
          -2.9344984512435675,
          -2.612359947967774,
          -3.7978657801465183,
          -7,
          -2.582063362911709,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.129689892199301,
          -7,
          -7,
          -3.8033205235787544,
          -7,
          -7,
          -7,
          -7,
          -3.3671073265819653,
          -3.3727279408855955,
          -3.7596930204516097,
          -7,
          -4.713624926782461,
          -7,
          -7,
          -7,
          -3.704193429194155,
          -3.161368002234975,
          -3.6738499773429494,
          -3.740678425227455,
          -3.5571461423183632,
          -7,
          -7,
          -7,
          -2.762678563727436,
          -3.023938007498089,
          -2.6291182240619984,
          -7,
          -7,
          -3.245018870737753,
          -7,
          -7,
          -7,
          -3.0946457896059547,
          -3.943840626401261,
          -7,
          -7,
          -7,
          -4.530814193504615,
          -2.7036137543417307,
          -7,
          -3.9916247345340055,
          -7,
          -7,
          -3.142493751023144,
          -7,
          -3.668944734457734,
          -3.066450169242703,
          -7,
          -3.04766419460156,
          -2.9591606876059813,
          -7,
          -4.828594167470897,
          -3.2852759390712047,
          -7,
          -7,
          -7,
          -3.476324317420228,
          -3.346548558548474,
          -2.739572344450092,
          -3.1048284036536553,
          -7,
          -7,
          -7,
          -7,
          -2.9454685851318194,
          -7,
          -3.1961761850399735,
          -3.171726453653231,
          -7,
          -4.85886189474819,
          -3.915382244962084,
          -4.231980183961163,
          -7,
          -2.966878904322697,
          -4.116765429332974,
          -3.7967130632808965,
          -7,
          -3.172310968521954,
          -7,
          -3.0952856128383934,
          -3.2024201977780304,
          -2.9662982070631547,
          -7,
          -7,
          -7,
          -3.445759836488631,
          -3.0056094453602804,
          -7,
          -7,
          -3.070684206978637,
          -7,
          -3.2279948928142463,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7151171474915134,
          -4.077367905284157,
          -7,
          -7,
          -4.5809534717539675,
          -7,
          -7,
          -7,
          -7,
          -4.999013030891847,
          -7,
          -7,
          -7,
          -4.924077602515123,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.139900066304233,
          -2.466274321789292,
          -3.8277199645519246,
          -3.487104869552999,
          -3.6007006960652372,
          -3.682506085939011,
          -7,
          -3.1032904715577496,
          -4.060047800629704,
          -2.4838681350548732,
          -7,
          -3.8436687229791437,
          -3.787857038774162,
          -3.2202433892972593,
          -7,
          -3.162438624324789,
          -3.2374809016410064,
          -7,
          -7,
          -4.378270683096358,
          -7,
          -7,
          -3.474097008828839,
          -4.056924604372458,
          -5.007699994446809,
          -2.6989700043360187,
          -3.0134271270706963,
          -7,
          -3.4652532922333523,
          -7,
          -4.627700325714928,
          -7,
          -3.525925466513464,
          -7,
          -4.026717075588475,
          -4.13581616679784,
          -3.6707024644784183,
          -7,
          -3.443262987458695,
          -3.824125833916549,
          -3.5985880805539687,
          -3.8892456608929797,
          -2.4291060083326967,
          -3.1382138561176456,
          -3.5954147420331193,
          -7,
          -3.950078476170064,
          -7,
          -7,
          -3.248879101447868,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2174400738687097,
          -2.325310371711061,
          -3.015024263324625,
          -7,
          -7,
          -3.4446692309385245,
          -7,
          -2.4035018157410506,
          -7,
          -2.9225030280360786,
          -7,
          -3.1754013550473683,
          -2.3384564936046046,
          -3.0979510709941502,
          -7,
          -4.135609636028679,
          -7,
          -0.7268769915705309,
          -7,
          -7,
          -3.1951382785109965,
          -7,
          -7,
          -7,
          -2.5581083016305497,
          -7,
          -3.5464604029452773,
          -7,
          -7,
          -7,
          -3.3242824552976926,
          -4.488867861253645,
          -7,
          -7,
          -2.379231997820056,
          -7,
          -2.4222888260527875,
          -7,
          -2.1958996524092336,
          -2.7791393517925442,
          -7,
          -7,
          -3.1292063577475293,
          -2.491128139388255,
          -7,
          -3.0729847446279304,
          -7,
          -3.2041199826559246,
          -7,
          -3.334051440346892,
          -7,
          -7,
          -7,
          -3.097719940343722,
          -2.245759355967277,
          -7,
          -4.154667377622576,
          -7,
          -7,
          -3.9115304623071623,
          -2.535113201697349,
          -3.0615930957249455,
          -2.320838389017534,
          -7,
          -3.2780673308886628,
          -7,
          -7,
          -2.5951286428938523,
          -3.491991664182002,
          -7,
          -2.538896749427476,
          -2.917308535712038,
          -7,
          -2.8627275283179747,
          -2.9667449661622203,
          -3.428994833472571,
          -3.1686938635769795,
          -3.111766433052562,
          -3.6124659639531425,
          -7,
          -3.1551841596940076,
          -3.228913405994688,
          -3.198067680193197,
          -7,
          -2.9481683617271317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1559430179718366,
          -2.890979596989689,
          -3.7547559326268156,
          -3.37984917876283,
          -3.868526886768204,
          -2.2418140039845724,
          -7,
          -2.7870351820262234,
          -7,
          -2.357087442864468,
          -7,
          -2.304790144537288,
          -3.3902283624691303,
          -7,
          -7,
          -2.2327844143207414,
          -2.7146091386431936,
          -2.951961654685714,
          -3.1389339402569236,
          -7,
          -7,
          -7,
          -7,
          -2.9079485216122722,
          -2.9628426812012423,
          -7,
          -7,
          -3.0572856444182146,
          -2.57902100733939,
          -7,
          -1.2859662492281052,
          -1.0352390909111167,
          -1.0089069310767398,
          -2.2918866162241116,
          -1.1168864858535805,
          -1.5632437011403981,
          -1.807617016832907,
          -1.8107788654424986,
          -7,
          -1.818850727921582,
          -1.9132249784197266,
          -1.663492885987207,
          -1.6766936096248666,
          -2.845098040014257,
          -2.1892399324978666,
          -7,
          -0.4843273272091896,
          -1.7188609631806762,
          -2.9954889428763822,
          -2.243348148293831,
          -1.178401341533755,
          -1.5365584425715302,
          -1.5756568260144563,
          -1.5133334273741073,
          -2.637125693881889,
          -0.7282449109488612,
          -2.159266331093494,
          -2.1354506993455136,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.077731179652392,
          -3.9265807069892746,
          -7,
          -7,
          -7,
          -3.5042261205990135,
          -4.219453537076811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.601299310194338,
          -7,
          -7,
          -3.89088538729425,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.826051231125912,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9836262871245345,
          -7,
          -7,
          -7,
          -7,
          -3.9960423505978575,
          -7,
          -7,
          -3.385963570600697,
          -7,
          -3.36707624226875,
          -7,
          -7,
          -7,
          -2.7278122676344823,
          -7,
          -3.1099693811795874,
          -7,
          -2.87684740506319,
          -3.3355247615134567,
          -7,
          -7,
          -3.482873583608754,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.450359098058306,
          -4.153921520067111,
          -7,
          -7,
          -3.447623097760286,
          -7,
          -3.453547660380749,
          -2.8808135922807914,
          -7,
          -7,
          -4.649198511689143,
          -7,
          -7,
          -7,
          -7,
          -2.937071889942818,
          -3.3690302218091532,
          -7,
          -7,
          -3.4850112145785728,
          -7,
          -3.530583859645118,
          -3.27600198996205,
          -3.3234583668494677,
          -7,
          -3.5406792623976844,
          -7,
          -3.1275097349740077,
          -7,
          -7,
          -3.4670158184384356,
          -3.314709692955174,
          -3.4295908022233017,
          -2.612359947967774,
          -7,
          -3.681060243631812,
          -7,
          -7,
          -7,
          -3.207589490666431,
          -7,
          -3.426185825244511,
          -7,
          -3.055187138555754,
          -2.967349935411163,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0860037056183818,
          -2.9750869934995627,
          -3.3584107862063366,
          -7,
          -7,
          -4.057559608844285,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.799232824169164,
          -3.5120169694961265,
          -7,
          -7,
          -4.373132774549157,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1366413091067473,
          -2.749736315569061,
          -3.5604446731931874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.066586796470695,
          -3.3665474682594816,
          -7,
          -7,
          -7,
          -3.314437307092213,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.742882171437273,
          -3.4240645254174877,
          -3.0259199985020175,
          -2.635930322156989,
          -2.99409708958821,
          -3.062581984228163,
          -3.9755742521196726,
          -7,
          -7,
          -7,
          -7,
          -3.00774777800074,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.873320601815399,
          -7,
          -3.56845179951805,
          -7,
          -7,
          -3.6153186566114788,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.347505649475902,
          -2.9523080096621253,
          -3.3853202242009113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7637274037656985,
          -3.3988077302032647,
          -7,
          -7,
          -7,
          -3.0907281958534445,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0755469613925306,
          -3.62490060220449,
          -7,
          -4.140445188347875,
          -5.014227269985497,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8097840982527122,
          -7,
          -2.8208579894397,
          -7,
          -2.9800033715837464,
          -7,
          -7,
          -2.7019994748896368,
          -3.7677147687058827,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1179338350396413,
          -7,
          -7,
          -3.8008544915035607,
          -7,
          -7,
          -7,
          -7,
          -3.2064937513760277,
          -7,
          -3.3910611905654067,
          -7,
          -4.713322504987028,
          -7,
          -7,
          -7,
          -4.003762020828246,
          -3.061603249608375,
          -3.1946993054635864,
          -7,
          -3.8561244442423,
          -7,
          -7,
          -7,
          -2.7535830588929064,
          -2.8937617620579434,
          -2.1425682249120177,
          -7,
          -7,
          -3.236033147117636,
          -7,
          -7,
          -7,
          -2.911867530405052,
          -3.6409284208668327,
          -7,
          -7,
          -7,
          -4.530699041844945,
          -2.9523080096621253,
          -7,
          -7,
          -7,
          -7,
          -3.0135744775494535,
          -2.8559227751038248,
          -3.6672661193822744,
          -3.061954844073114,
          -3.327086350362379,
          -2.86411536851903,
          -2.7782718709876417,
          -3.4094258686714434,
          -4.682437775007122,
          -3.885643871835764,
          -7,
          -7,
          -7,
          -3.473705886887772,
          -3.343014497150768,
          -3.0269416279590295,
          -2.7906369619317033,
          -7,
          -7,
          -3.373463721632369,
          -7,
          -3.2440295890300215,
          -7,
          -7,
          -3.0430674079304287,
          -7,
          -4.557603433787706,
          -4.3919402351671355,
          -4.252165055604942,
          -7,
          -3.1108589567318674,
          -4.174616292119658,
          -3.316808752053022,
          -7,
          -7,
          -7,
          -3.267406418752904,
          -3.325036498467299,
          -3.7424108805804925,
          -3.374381698050882,
          -7,
          -7,
          -3.138776215729349,
          -2.989894563718773,
          -3.095169351431755,
          -7,
          -3.3687516195445553,
          -7,
          -3.163757523981956,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5324631749035365,
          -7,
          -4.593418993965913,
          -4.881789657203351,
          -7,
          -7,
          -7,
          -4.720960973800096,
          -7,
          -7,
          -7,
          -4.675943232322869,
          -4.9238913499200505,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.776112526813905,
          -7,
          -4.378461495902037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.01456253812761,
          -2.855216194733363,
          -7,
          -3.6689112256610885,
          -3.8998751960210107,
          -7,
          -4.333709182897272,
          -3.0970836960665213,
          -4.156882164439376,
          -2.5239631265725575,
          -2.9242792860618816,
          -3.968078040985985,
          -3.8846254632562345,
          -3.360241681417266,
          -7,
          -3.1853847390413126,
          -3.8376515578463923,
          -7,
          -7,
          -4.3776158305597805,
          -7,
          -7,
          -3.5453380480196923,
          -3.8349742581415307,
          -4.9284863208502925,
          -2.5060538173181506,
          -2.8057556510562356,
          -7,
          -3.50931295469693,
          -7,
          -5.104773814899298,
          -4.085825533520743,
          -3.621954820044902,
          -7,
          -4.3270522653266985,
          -4.436305797450854,
          -3.8813703893061944,
          -3.629613445378183,
          -3.1788200395482566,
          -3.8217754671834636,
          -3.695344843418741,
          -3.791802891569532,
          -2.4173055832445254,
          -3.151844154295226,
          -3.7265786003464605,
          -7,
          -3.7246327574688074,
          -7,
          -7,
          -3.4062526845360575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3261748728967495,
          -2.4450850227193537,
          -3.0140162292583637,
          -7,
          -7,
          -3.3055467775407656,
          -7,
          -2.350441856535061,
          -2.9689496809813427,
          -2.9198249446356317,
          -7,
          -3.2670336159890963,
          -2.4909612378520922,
          -3.085290578230065,
          -7,
          -7,
          -7,
          -0.7524833221700973,
          -7,
          -7,
          -3.7951149856303634,
          -7,
          -7,
          -3.0117818305481068,
          -2.5121262549907444,
          -7,
          -3.5449770427414777,
          -7,
          -7,
          -4.599162287443591,
          -3.4930814527344283,
          -4.789658257826966,
          -7,
          -7,
          -2.3433101031623416,
          -7,
          -2.349832359203467,
          -7,
          -2.2676409823459154,
          -2.5642794877753574,
          -7,
          -7,
          -2.7244397233970745,
          -2.6596785560245753,
          -7,
          -7,
          -7,
          -2.716003343634799,
          -7,
          -2.4791844152834357,
          -3.695831772826692,
          -7,
          -7,
          -2.4893724660018175,
          -2.2638228753077008,
          -7,
          -3.6763277338813203,
          -7,
          -7,
          -7,
          -2.6754116937148633,
          -3.0637827794015475,
          -2.5907861238608794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.313234291694724,
          -7,
          -2.901821443893775,
          -2.8636532477224708,
          -7,
          -2.8407332346118066,
          -2.906200314184372,
          -3.3539364673716925,
          -2.796376070489843,
          -2.803968953635653,
          -3.0797131438261793,
          -7,
          -7,
          -3.2195845262142546,
          -2.9621719559993496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.144885418287142,
          -3.187520720836463,
          -3.532346638573482,
          -7,
          -7,
          -2.234859558209032,
          -3.683587317572767,
          -2.332149796241367,
          -7,
          -2.0964755012340386,
          -7,
          -2.23101625585726,
          -2.909199319174384,
          -7,
          -7,
          -2.157284034918504,
          -2.8810992183890174,
          -2.9671664837366802,
          -2.8257505813480277,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9454685851318194,
          -3.818423855092079,
          -7,
          -7,
          -2.2616593037647066,
          -7,
          -1.1583624920952496,
          -0.8542527574035039,
          -0.9494303329815315,
          -2.151905874537198,
          -1.1903316981702914,
          -1.4122628487890587,
          -1.7952120167866616,
          -1.8032195366042487,
          -7,
          -1.4561437549623364,
          -1.8018400929397844,
          -1.8105990628039323,
          -1.845098040014257,
          -2.519827993775719,
          -2.17803565716981,
          -0.4843273272091896,
          -7,
          -1.735024716699371,
          -2.9901908082608895,
          -2.3288498736329326,
          -1.1981787890185196,
          -1.4655952723291037,
          -1.6998738433342633,
          -1.1951914409557332,
          -2.6754116937148633,
          -0.7473115494495717,
          -2.305044121834302,
          -1.903768042526874,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6060587494103142,
          -7,
          -7,
          -3.5487017862716375,
          -7,
          -7,
          -7,
          -3.9615397375535686,
          -3.9755696578936623,
          -3.291701770729981,
          -7,
          -7,
          -7,
          -7,
          -3.6095410528172773,
          -3.3144150134136665,
          -7,
          -7,
          -3.499120804923696,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8809907025954717,
          -3.5776066773625357,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7531232446817127,
          -7,
          -7,
          -7,
          -4.149437744906596,
          -7,
          -7,
          -7,
          -7,
          -2.6968554344439792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0183519664861995,
          -3.254467510467076,
          -3.327522402716821,
          -2.7986999606649783,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7191931306339363,
          -2.780161942131146,
          -7,
          -7,
          -3.4094258686714434,
          -7,
          -7,
          -3.839037873388306,
          -7,
          -7,
          -3.9296264433432477,
          -7,
          -7,
          -7,
          -7,
          -3.3065108056433825,
          -7,
          -7,
          -7,
          -3.4302363534115106,
          -7,
          -3.2804265987495813,
          -7,
          -7,
          -3.6340740254874686,
          -3.437378050057053,
          -3.782973994944048,
          -3.4172723536273164,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8093576702111056,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1763083520279114,
          -7,
          -7,
          -7,
          -3.36027776962236,
          -2.809148956558773,
          -7,
          -7,
          -3.1156105116742996,
          -7,
          -3.3876001266898017,
          -7,
          -7,
          -7,
          -7,
          -3.838849090737255,
          -7,
          -7,
          -3.8196243530000937,
          -7,
          -7,
          -7,
          -4.528166530720789,
          -3.5939502952639875,
          -7,
          -7,
          -3.500648063371912,
          -3.557025722386383,
          -2.7388192156993934,
          -7,
          -7,
          -7,
          -3.714949737697635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0819688735880715,
          -2.669316880566112,
          -7,
          -3.871689665685515,
          -7,
          -4.007875743767586,
          -7,
          -7,
          -7,
          -7,
          -3.1234782951612408,
          -7,
          -7,
          -7,
          -3.2303211689190787,
          -7,
          -3.4781334281005174,
          -7,
          -7,
          -7,
          -3.3138672203691533,
          -3.1551335219650514,
          -3.70816585785554,
          -7,
          -3.3479151865016914,
          -4.00650882777529,
          -7,
          -7,
          -3.7079866314297973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7339592206237033,
          -7,
          -3.895643504824079,
          -3.3088330016116188,
          -7,
          -3.867408556522791,
          -7,
          -3.614053105987219,
          -7,
          -3.6262376851469007,
          -7,
          -7,
          -7,
          -3.8376515578463923,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7792657147626283,
          -7,
          -3.2213620672035708,
          -7,
          -3.3261309567107946,
          -7,
          -7,
          -3.6093275616088962,
          -7,
          -7,
          -3.7011360660925265,
          -3.2892114990916705,
          -3.033468433690981,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.730984038495525,
          -3.807940721215499,
          -3.9071156388713693,
          -3.944211571736122,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.675778341674085,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2224177849842386,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.552911450216509,
          -7,
          -7,
          -3.2679340087937794,
          -7,
          -3.9372670722114127,
          -3.6602012013806817,
          -7,
          -7,
          -7,
          -2.9857444809540734,
          -3.668012971641832,
          -3.1674473082034846,
          -7,
          -4.431452222544104,
          -7,
          -7,
          -7,
          -3.4918517497214157,
          -7,
          -4.069557104582695,
          -7,
          -3.6771961860105447,
          -7,
          -7,
          -7,
          -7,
          -3.7380667147774695,
          -3.42217931474113,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.833784374656479,
          -3.743588150159904,
          -3.5994463757252757,
          -3.7265642161622448,
          -3.3223226858740107,
          -3.6486275257525964,
          -3.2390073481041712,
          -7,
          -3.4954452174999373,
          -7,
          -7,
          -3.2081725266671217,
          -3.6522463410033232,
          -3.764512374855157,
          -3.4620234446356335,
          -3.939918420369057,
          -3.656194062179186,
          -3.1715802019320636,
          -7,
          -4.122449110339567,
          -3.1551624585331335,
          -7,
          -7,
          -7,
          -3.9184497424011577,
          -3.8287243271387914,
          -7,
          -7,
          -3.235949071135977,
          -3.518382315545344,
          -3.671728088239558,
          -7,
          -7,
          -7,
          -7,
          -2.9256987611930096,
          -7,
          -4.094243964322999,
          -4.130140705819276,
          -3.5421075775291375,
          -7,
          -2.82910575870157,
          -3.7987602916703658,
          -3.4550987591574565,
          -7,
          -7,
          -7,
          -3.17832933714299,
          -7,
          -3.5942267574809135,
          -3.6721902511882525,
          -7,
          -7,
          -3.0068937079479006,
          -7,
          -3.5536403362313544,
          -7,
          -3.8457180179666586,
          -7,
          -3.2144779988742656,
          -7,
          -7,
          -4.020796188104522,
          -4.489480351850566,
          -7,
          -7,
          -4.7339271652304165,
          -3.639967665270556,
          -3.704879450830578,
          -7,
          -3.5936515182654305,
          -4.081635301502951,
          -3.515211304327802,
          -4.356580328640258,
          -7,
          -4.707859609285525,
          -3.24757837069717,
          -7,
          -4.395754359792703,
          -3.355643050220869,
          -7,
          -4.36383752883614,
          -7,
          -4.489420548875373,
          -3.7278664494674896,
          -3.9616583486377155,
          -4.185117001142592,
          -7,
          -7,
          -7,
          -7,
          -3.61646851190577,
          -7,
          -4.700201652550818,
          -3.771477239864823,
          -4.259402728142589,
          -7,
          -4.167169590408632,
          -7,
          -4.189490313699367,
          -3.775076200645214,
          -3.225040747463099,
          -7,
          -3.994572286223859,
          -3.359251556898101,
          -3.166133970305109,
          -3.0060991361599037,
          -3.4237918130180067,
          -3.3832766504076504,
          -3.32247585881818,
          -2.694359467902212,
          -3.056218581272306,
          -2.6521885909973335,
          -3.406250093617719,
          -3.1713133807585514,
          -7,
          -2.970361406717804,
          -3.9644482079166607,
          -7,
          -3.6436007061922973,
          -2.753882675656707,
          -3.381415942849977,
          -7,
          -3.189451441189139,
          -3.2684083975867497,
          -4.140369580790315,
          -3.217088951479172,
          -3.173419384081802,
          -3.5293019977879805,
          -3.1410892522830585,
          -7,
          -4.1309547125837796,
          -3.161368002234975,
          -2.4717270710635377,
          -7,
          -2.563814687624541,
          -3.6266336114657944,
          -2.961104552884867,
          -3.5180530800797216,
          -2.1037106595141473,
          -3.4753321417033707,
          -2.976808337338066,
          -3.567979955556931,
          -7,
          -2.8686685229153204,
          -3.075406572032361,
          -7,
          -2.6937579306776436,
          -3.5324995860946626,
          -2.2894943600325126,
          -2.673982441385144,
          -3.746673112470323,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7114806713603596,
          -2.8401957413725274,
          -2.3970337739112404,
          -3.5106790310322102,
          -2.570834706424214,
          -1.7764931142422742,
          -3.097691040361552,
          -3.0593740590659575,
          -3.212453961040276,
          -1.6500020632708234,
          -3.01717251394567,
          -2.21625344740169,
          -2.07832497394727,
          -2.548020694905531,
          -7,
          -3.0884904701823963,
          -2.2174839442139063,
          -1.3103988069707881,
          -3.57978359661681,
          -2.9408898574862166,
          -2.9780282664601656,
          -3.2463754640035085,
          -3.084457113581298,
          -2.796177717217656,
          -2.625018313136747,
          -7,
          -1.766266186167217,
          -3.1927068066128585,
          -7,
          -3.2810850412893027,
          -2.8098790829156988,
          -2.953589557642728,
          -7,
          -2.949064570524849,
          -2.4239087107304087,
          -3.5776066773625357,
          -2.960787780819836,
          -7,
          -2.5071290188367894,
          -2.176738976523847,
          -7,
          -3.2069607291557105,
          -2.4400340173284967,
          -2.9199144806594317,
          -3.390876255625289,
          -2.8416097121684354,
          -2.4860254478323944,
          -2.890867938811441,
          -2.7059858251715236,
          -2.7443907861817323,
          -3.0464951643347082,
          -2.44502907393028,
          -7,
          -2.6666619535321328,
          -2.686859614333764,
          -7,
          -2.270387656461051,
          -3.541454428747589,
          -7,
          -2.977058147228131,
          -2.5567662429169604,
          -2.4691775785110766,
          -2.353707909300785,
          -2.697631653563757,
          -3.6226284261293253,
          -7,
          -3.5064148268833297,
          -7,
          -1.7442929831226763,
          -2.926213785839081,
          -2.238696453314147,
          -2.6060880880154507,
          -2.9094490469812664,
          -7,
          -2.712104758955936,
          -2.7000688257699466,
          -2.4094779220657947,
          -2.989271791641693,
          -2.167220775510412,
          -2.506505032404872,
          -3.4268906288777257,
          -2.696465603994037,
          -1.7853298350107671,
          -2.951580344903392,
          -2.0222763947111524,
          -2.4768984824747657,
          -7,
          -3.4802944600030066,
          -3.201499540187428,
          -3.435525851498655,
          -3.0940050223646494,
          -2.0933402269453776,
          -2.3242583813241886,
          -3.069020241410887,
          -2.4298547744230627,
          -1.5897489827548932,
          -3.252428233716468,
          -2.4256157245769305,
          -3.544811911757776,
          -2.7350996531988936,
          -7,
          -2.3214038358007936,
          -2.3356098422232794,
          -3.569724949226159,
          -7,
          -3.162962476653458,
          -7,
          -1.6367282157789547,
          -3.2638726768652235,
          -7,
          -7,
          -3.182129214052998,
          -3.022153327172555,
          -2.7126497016272113,
          -2.6604588986495648,
          -2.869915879065291,
          -3.153204900084284,
          -3.6609602917760835,
          -3.5364321758220134,
          -2.315105585855791,
          -2.0396192169281915,
          -1.844040718781357,
          -2.214843848047698,
          -1.2586068361221225,
          -1.4432861381014097,
          -0.9300539521206114,
          -1.226212174618504,
          -1.4369712595163502,
          -3.0718820073061255,
          -1.286707687770264,
          -2.366925571380331,
          -1.6849509138339958,
          -1.4940220052578637,
          -2.006097026608113,
          -1.579904306623212,
          -1.7188609631806762,
          -1.735024716699371,
          -7,
          -2.2254760294652516,
          -1.921773152358833,
          -2.093561757565289,
          -1.5807824672307302,
          -1.2961115457914827,
          -2.01976069751232,
          -2.172689860892129,
          -1.3228968213641614,
          -2.493225621510431,
          -2.7752462597402365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.209871418668929,
          -7,
          -7,
          -7,
          -7,
          -4.261072451390823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.959976522554131,
          -7,
          -7,
          -3.8184898222042136,
          -4.159138980494756,
          -7,
          -7,
          -7,
          -7,
          -3.5221833176186865,
          -7,
          -4.576231898813378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.670304621143013,
          -7,
          -7,
          -7,
          -7,
          -2.8457868498048096,
          -7,
          -7,
          -7,
          -3.5150786750759226,
          -7,
          -3.8394937596254946,
          -7,
          -7,
          -3.912062555588502,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0518468383137356,
          -3.877515318847026,
          -7,
          -7,
          -3.04766419460156,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.654577589539578,
          -7,
          -7,
          -7,
          -7,
          -3.976304116552003,
          -3.6027109449575576,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8735126691141897,
          -7,
          -3.792706788898358,
          -7,
          -7,
          -7,
          -3.571825249040829,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.055148889889394,
          -7,
          -7,
          -7,
          -7,
          -4.111128036345124,
          -7,
          -7,
          -7,
          -7,
          -3.4181189156542,
          -7,
          -7,
          -7,
          -7,
          -3.493597449000527,
          -7,
          -7,
          -3.6897453025712523,
          -7,
          -7,
          -7,
          -4.701399587752211,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4947904572094903,
          -7,
          -7,
          -7,
          -2.7021029686899287,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.20980980578538,
          -3.2285286773571817,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.565434570307759,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8594985581877763,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.023886248324208,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.623456048069934,
          -7,
          -7,
          -3.7659950553707966,
          -7,
          -3.5251096222719336,
          -3.762753564933374,
          -2.9344984512435675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.361948074467151,
          -7,
          -7,
          -7,
          -3.5531545481696254,
          -7,
          -7,
          -3.3960248966085933,
          -7,
          -7,
          -7,
          -3.437468690682047,
          -2.7802212717855133,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.703248376536181,
          -7,
          -3.490716778256952,
          -3.6730276130332227,
          -7,
          -7,
          -7,
          -3.514282047860378,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0940827414918974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8742240379133537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.053136089367437,
          -7,
          -3.0257514993660317,
          -7,
          -3.221454991793657,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.552242228356702,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3668596440286906,
          -7,
          -7,
          -3.180719663237752,
          -7,
          -7,
          -7,
          -7,
          -3.562728923030002,
          -3.7102020146553847,
          -7,
          -7,
          -7,
          -7,
          -3.7256898131853,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4363217001397333,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.567514525876742,
          -4.420351882127958,
          -4.320082210826953,
          -7,
          -3.910037123553051,
          -4.725589057037808,
          -7,
          -7,
          -7,
          -7,
          -3.7300551523755,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.227668217528221,
          -7,
          -7,
          -3.0711874222402025,
          -3.0775317725206657,
          -2.932008441562367,
          -2.883590466204705,
          -4.427510452274621,
          -2.9008960175253944,
          -2.4419722269826796,
          -4.009376523937582,
          -3.1502259782112434,
          -3.0148258961140812,
          -2.404833716619938,
          -3.112585289100924,
          -3.478967099332149,
          -3.4742934117900868,
          -2.3736671551606547,
          -2.4772904274083833,
          -3.3683754441361047,
          -2.459617346642649,
          -3.6255182289716377,
          -2.9885589568786157,
          -7,
          -3.6836155489902587,
          -3.839100782707153,
          -2.6042988785196877,
          -2.4909740240681018,
          -7,
          -3.471749972663032,
          -3.195043800258105,
          -3.616790486329716,
          -2.8473315065761877,
          -3.2580250191096125,
          -4.0922819190362185,
          -4.361236616731331,
          -3.4647875196459372,
          -2.806179973983887,
          -4.147026715222231,
          -7,
          -3.8789524296286104,
          -2.6317734235564716,
          -3.6794379916710307,
          -3.4916417934775863,
          -4.687716193623689,
          -4.031724199984835,
          -7,
          -7,
          -2.7016055229341567,
          -7,
          -3.777764206446543,
          -7,
          -3.7018269303971394,
          -3.214711421005384,
          -4.272700056789586,
          -3.998555743525529,
          -3.5476516583599693,
          -7,
          -7,
          -7,
          -3.9105710484812586,
          -4.406948735950354,
          -7,
          -7,
          -3.958555196376776,
          -3.6453647152002744,
          -4.0547789790079305,
          -7,
          -7,
          -7,
          -3.5842275392635443,
          -7,
          -5.107608455539725,
          -7,
          -7,
          -7,
          -4.058805486675907,
          -3.2855273048983347,
          -3.951108444044104,
          -7,
          -7,
          -3.9191304138606142,
          -3.586222828744241,
          -4.212600387588411,
          -7,
          -4.475840612428527,
          -3.6638892986226614,
          -7,
          -3.7829372345148538,
          -7,
          -7,
          -3.5864850094217466,
          -4.335698551498222,
          -7,
          -7,
          -7,
          -2.5477747053878224,
          -3.2477278329097232,
          -2.378872890939344,
          -7,
          -3.193301721983993,
          -3.1094097905463656,
          -3.1048284036536553,
          -3.3783797292507396,
          -2.489657199855414,
          -7,
          -7,
          -3.2725957412701385,
          -3.0893751608160995,
          -2.7223304252478906,
          -3.0013730929411464,
          -3.1586639808139894,
          -2.829089253448099,
          -3.4061426048653116,
          -2.395544796132492,
          -2.136922862547955,
          -1.2577400940253047,
          -2.243193126167643,
          -2.9428344937700954,
          -2.2764618041732443,
          -2.239373094599889,
          -3.571009672309305,
          -7,
          -7,
          -3.131297796597623,
          -2.0818871394235496,
          -3.4055171069763763,
          -2.7403942733989815,
          -3.1868151244474543,
          -2.1817462514719943,
          -7,
          -2.626993231531775,
          -4.023787279789847,
          -2.411198673955554,
          -7,
          -3.3643633546157306,
          -7,
          -2.7752020949482215,
          -2.779776808670381,
          -3.1063609088067503,
          -3.3348556896172914,
          -7,
          -1.7175497146599723,
          -3.147985320683805,
          -2.022525403969648,
          -7,
          -3.161517733138683,
          -3.277265309456845,
          -3.160731069351768,
          -1.5297811767161091,
          -3.385963570600697,
          -7,
          -7,
          -3.5951654147902294,
          -2.694797079605313,
          -1.4984746552394665,
          -3.4077307280263356,
          -2.91053547390048,
          -3.606703741333674,
          -3.1573424507933363,
          -3.379939722801916,
          -1.8860331716812706,
          -7,
          -3.157909866226345,
          -3.475283684857362,
          -7,
          -1.9351788082734205,
          -2.253176407377487,
          -2.762571396673986,
          -3.3144992279731516,
          -1.9916169212103128,
          -7,
          -3.432595198514682,
          -3.287431711515602,
          -3.7824009524965296,
          -7,
          -3.1137861131733655,
          -2.602150459921541,
          -3.866582677063549,
          -3.2205003456147296,
          -3.023458237643675,
          -1.7694049362660398,
          -2.3830455675834847,
          -2.395527999795712,
          -7,
          -7,
          -3.2480433647368927,
          -0.6851016581888254,
          -7,
          -2.0785311739978143,
          -3.2306070390410833,
          -3.3039516339434503,
          -2.766492517118781,
          -2.977500833043951,
          -2.9665439814388943,
          -7,
          -2.7531232446817127,
          -7,
          -2.769561935848059,
          -7,
          -3.5147469246343817,
          -2.926085086925144,
          -7,
          -7,
          -7,
          -2.490105540033013,
          -7,
          -2.956008262860823,
          -7,
          -7,
          -2.6171751426857073,
          -2.6869935662646784,
          -2.32342399587229,
          -2.592123862385521,
          -2.1361105172149624,
          -7,
          -7,
          -2.553883026643874,
          -3.4094258686714434,
          -3.131297796597623,
          -2.7746629225378223,
          -2.4929155219028942,
          -2.5960970443542855,
          -2.4693310102934105,
          -2.769111350065843,
          -0.2285455990501929,
          -2.765058638089037,
          -2.618346991756171,
          -3.377306251068199,
          -2.7712607594199907,
          -3.4497868469857735,
          -7,
          -2.86966188853846,
          -2.9954889428763822,
          -2.9901908082608895,
          -2.2254760294652516,
          -7,
          -2.2835961655447004,
          -3.093596768608228,
          -2.624797578960761,
          -2.7151673578484576,
          -3.083323418473525,
          -0.04312571374013441,
          -2.645053650442902,
          -3.1889284837608534,
          -3.3658622154025553,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.246867721899116,
          -7,
          -7,
          -7,
          -3.746993680946003,
          -7,
          -7,
          -7,
          -3.9419584165308135,
          -3.4793113232466855,
          -3.4927603890268375,
          -7,
          -7,
          -7,
          -7,
          -3.896085085423285,
          -3.5010592622177517,
          -7,
          -2.7663452368558756,
          -3.6100082786464394,
          -3.4733409641859354,
          -7,
          -7,
          -7,
          -3.202079441007388,
          -3.419955748489758,
          -2.9947800791984687,
          -3.1720188094245563,
          -7,
          -7,
          -3.4222614508136027,
          -3.5809249756756194,
          -3.3960248966085933,
          -3.3851592385800426,
          -7,
          -3.309949384259016,
          -3.4144719496293026,
          -4.032984289505631,
          -7,
          -7,
          -3.5974757898703773,
          -2.6433116488889414,
          -2.8359722608046543,
          -7,
          -3.471731651480051,
          -7,
          -2.893067889914971,
          -3.0737183503461227,
          -3.019605257246508,
          -7,
          -2.991757539534348,
          -3.4271614029259654,
          -7,
          -7,
          -3.1820340262209674,
          -7,
          -3.473194909204938,
          -7,
          -7,
          -7,
          -2.7849341224714053,
          -3.4773672852240134,
          -7,
          -7,
          -2.4876433104043176,
          -7,
          -3.857995495560924,
          -7,
          -7,
          -7,
          -4.176965401689464,
          -7,
          -3.609914410085998,
          -7,
          -7,
          -2.216448676782301,
          -7,
          -7,
          -7,
          -3.183459657707637,
          -7,
          -7,
          -3.4234097277330933,
          -7,
          -7,
          -3.4865291479340192,
          -7,
          -3.3895913074551967,
          -7,
          -7,
          -7,
          -3.555094448578319,
          -7,
          -3.751279103983342,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2041587572179706,
          -7,
          -3.6226284261293253,
          -7,
          -2.5507317995589878,
          -2.917437743688254,
          -7,
          -3.3995006613146104,
          -7,
          -3.210853365314893,
          -3.072951369451591,
          -2.3183615117557332,
          -7,
          -7,
          -3.725012725341157,
          -3.784831178124469,
          -7,
          -3.6207344897857445,
          -3.9228588613062128,
          -7,
          -7,
          -7,
          -3.47006442579016,
          -3.4940153747571436,
          -3.6620964454179235,
          -3.766784515497859,
          -7,
          -3.4470028984661623,
          -2.235427436444969,
          -3.2016701796465816,
          -7,
          -7,
          -3.9231403560252005,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6195802468903406,
          -3.252731702726023,
          -4.206015876763344,
          -3.8218409272004545,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.929776432804902,
          -7,
          -7,
          -7,
          -3.6093334933375862,
          -7,
          -7,
          -7,
          -3.5182506513085,
          -7,
          -7,
          -7,
          -3.6334684555795866,
          -3.3200423754796446,
          -7,
          -3.1919165461654937,
          -3.242913946818925,
          -3.4282968139828798,
          -3.6555850665814984,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5303704785756733,
          -7,
          -3.6205316347204755,
          -7,
          -7,
          -3.2883065634754933,
          -7,
          -3.817036226050029,
          -3.274619619091238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2335037603411343,
          -3.4823017672234426,
          -7,
          -7,
          -7,
          -7,
          -3.275886960301226,
          -7,
          -7,
          -2.5774279658572614,
          -7,
          -2.644206811219827,
          -7,
          -3.0580462303952816,
          -3.1024337056813365,
          -3.4276483711869328,
          -3.5639554649958125,
          -3.304167271724397,
          -7,
          -2.8459244807620387,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6971421262754594,
          -3.7496590320949,
          -3.7087041048933,
          -3.755292559435586,
          -7,
          -3.4111144185509046,
          -2.9535986331436197,
          -7,
          -7,
          -7,
          -3.5947239464097467,
          -3.0657041722395175,
          -7,
          -7,
          -7,
          -7,
          -3.09324653110384,
          -7,
          -3.3710678622717363,
          -7,
          -3.629006478444398,
          -7,
          -7,
          -7,
          -7,
          -3.4520932490177314,
          -3.441695135640717,
          -7,
          -7,
          -3.8203328448994096,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.313906259830001,
          -3.284092190642834,
          -3.8572601079850797,
          -7,
          -4.123851640967086,
          -7,
          -7,
          -7,
          -3.0642707529740063,
          -7,
          -2.8614149186359965,
          -3.844725627973226,
          -3.9398186628213794,
          -3.5276299008713385,
          -7,
          -3.373095987078727,
          -7,
          -7,
          -3.3502480183341627,
          -7,
          -3.400192488592576,
          -7,
          -3.3944516808262164,
          -2.940142791106066,
          -7,
          -3.298525595321999,
          -4.011866356527724,
          -7,
          -3.655234507034294,
          -3.5309676815719153,
          -4.058381732260055,
          -2.8352374734003063,
          -7,
          -3.8472846790838813,
          -7,
          -7,
          -3.752739693935328,
          -7,
          -4.034387783589566,
          -3.220631019448092,
          -3.2952921430163506,
          -7,
          -3.409510452269316,
          -3.6120417446452695,
          -4.3243750674682415,
          -3.361963801512071,
          -7,
          -7,
          -7,
          -3.873959654743353,
          -7,
          -7,
          -3.4413808849165113,
          -7,
          -7,
          -3.58983794314746,
          -7,
          -3.3546205789259758,
          -7,
          -3.485863329597335,
          -3.1719457389302472,
          -7,
          -4.168709570145828,
          -3.940831798389784,
          -3.9677663165382757,
          -3.45117215751254,
          -2.998586244334432,
          -3.724865454175407,
          -3.2870175013221017,
          -7,
          -3.473778834646725,
          -7,
          -3.241048150671644,
          -3.5948895496460347,
          -3.848312303627284,
          -7,
          -7,
          -7,
          -3.154017995537149,
          -7,
          -7,
          -3.4560622244549513,
          -3.4914317356829696,
          -3.409087369447835,
          -2.8180446732975755,
          -7,
          -7,
          -4.614485917334474,
          -4.784809794314824,
          -4.310204588898006,
          -7,
          -4.250257314731827,
          -7,
          -3.969974730121715,
          -4.30894838630958,
          -4.0452391300593185,
          -3.7504698234687637,
          -7,
          -7,
          -7,
          -5.005450789574089,
          -3.5594713511516147,
          -7,
          -4.212542710296108,
          -3.8176518028993587,
          -7,
          -4.348402227577635,
          -7,
          -5.39111337840658,
          -7,
          -7,
          -7,
          -4.364813556261336,
          -4.6748519589392314,
          -4.2333769034738955,
          -7,
          -4.48602646088109,
          -7,
          -4.215998664514626,
          -7,
          -4.2396747876467815,
          -7,
          -7,
          -7,
          -7,
          -4.2322335211147335,
          -4.030296054911111,
          -7,
          -3.644885992908976,
          -3.730095580067584,
          -7,
          -7,
          -4.062337507279505,
          -7,
          -4.198507132018743,
          -3.109953326425318,
          -2.843321781988454,
          -2.4081506686153484,
          -3.766793803133404,
          -3.115934425853832,
          -3.5299434016586693,
          -3.4228583372213346,
          -3.924641047417163,
          -7,
          -7,
          -3.4500265994660992,
          -3.8073320392911905,
          -3.4727564493172123,
          -3.522048449634903,
          -3.8468851178579158,
          -4.260742423565542,
          -7,
          -3.345765693114488,
          -3.4109458586877746,
          -3.6415826941573264,
          -7,
          -4.505289065996569,
          -3.659821158055705,
          -3.220155653286464,
          -7,
          -3.3568477513592394,
          -3.505436397572418,
          -3.347775931528265,
          -7,
          -3.3554515201265174,
          -7,
          -3.0620606254686873,
          -4.210719715681002,
          -7,
          -3.4606456955356406,
          -3.6632249190405806,
          -7,
          -3.6184064694663602,
          -7,
          -3.754654069255432,
          -3.422210117588728,
          -3.8556604651432527,
          -7,
          -7,
          -7,
          -3.0681858617461617,
          -7,
          -3.171670744519088,
          -2.563912360982884,
          -2.8881284154728792,
          -7,
          -3.5660837841679958,
          -2.7411332683893193,
          -7,
          -2.975316900589052,
          -7,
          -2.689012715585447,
          -7,
          -1.8210315087287055,
          -2.72709742001302,
          -3.4382258076045296,
          -3.115388593181018,
          -3.703320043475056,
          -1.7137937806530432,
          -2.1273116216794095,
          -7,
          -7,
          -3.287745760540123,
          -2.8318697742805017,
          -2.4967759427161327,
          -3.076640443670342,
          -2.325395921692999,
          -3.0382226383687185,
          -2.4761792624817036,
          -7,
          -7,
          -3.46912743091224,
          -3.4282864740894166,
          -3.845931361165108,
          -7,
          -3.3557387836020354,
          -2.568536957184299,
          -2.0343164474392905,
          -2.3447664235957415,
          -7,
          -2.57467419083833,
          -2.6086820021484174,
          -7,
          -7,
          -3.1441589128307523,
          -2.523876475638131,
          -3.3405763000433617,
          -2.823963024361914,
          -3.544811911757776,
          -2.8870543780509568,
          -3.1398790864012365,
          -2.959279950130939,
          -2.756560043006683,
          -2.8422097046404304,
          -7,
          -2.3947017784328417,
          -2.470081735600318,
          -7,
          -4.197776611271387,
          -7,
          -3.3830969299490943,
          -3.683272236315922,
          -2.8914259428479943,
          -2.8004219198943976,
          -2.55201267714712,
          -3.1531285942803624,
          -7,
          -7,
          -3.9457147140598603,
          -3.427323786357247,
          -1.7276816577351548,
          -2.2925968281271185,
          -2.4144162029529017,
          -2.606327612467192,
          -3.513217600067939,
          -7,
          -2.2960066693136723,
          -2.8273986480399302,
          -2.624134702492355,
          -3.610553705317095,
          -2.58399378491216,
          -2.8913515837206996,
          -3.255754786643044,
          -3.0253058652647704,
          -2.396164462603818,
          -3.8036619232362243,
          -2.25433319950825,
          -3.015778756389041,
          -3.360593413565249,
          -7,
          -2.8346149517300243,
          -7,
          -2.8627275283179747,
          -2.707759369950592,
          -3.597158688659135,
          -3.112157966516305,
          -2.7326617601288525,
          -2.4610279826243358,
          -7,
          -2.425457496801941,
          -7,
          -2.6459132750338443,
          -7,
          -2.67493176346858,
          -2.502836638621003,
          -7,
          -3.350829273582968,
          -2.7724439571056845,
          -3.0064660422492318,
          -2.458309335786155,
          -2.979700093301936,
          -3.410608542568368,
          -3.3517963068970236,
          -7,
          -7,
          -7,
          -3.381656482585787,
          -3.9089673004183876,
          -3.0622058088197126,
          -3.0992200954861304,
          -3.4202858849419178,
          -7,
          -2.907052884087371,
          -2.7091002815511667,
          -2.85079934446789,
          -2.0985613248146464,
          -1.9341827155103566,
          -2.2991097516428893,
          -2.167257037006753,
          -2.1316769784790424,
          -3.019324037153691,
          -2.4409090820652177,
          -3.350829273582968,
          -1.9420936198597298,
          -2.2771178382585697,
          -3.3404441148401185,
          -1.212640474666788,
          -2.243348148293831,
          -2.3288498736329326,
          -1.921773152358833,
          -2.2835961655447004,
          -7,
          -2.7664128471123997,
          -2.261537362311736,
          -2.0054225267100447,
          -2.8808135922807914,
          -0.18221499328361404,
          -2.2488762999185097,
          -2.9922588811302626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.204152553520675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.341221485894443,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.38773380319581,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.14082846053363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6285932558512592,
          -7,
          -3.8948696567452528,
          -3.781468142841798,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.06905111359728,
          -4.448010273039476,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5650209283452936,
          -3.2753113545418118,
          -7,
          -7,
          -7,
          -7,
          -3.166873950858819,
          -7,
          -7,
          -7,
          -4.229914666155714,
          -7,
          -4.0124153747624325,
          -7,
          -7,
          -3.3939260065858368,
          -3.20682587603185,
          -3.3492775274679554,
          -3.5634810853944106,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4880333912672628,
          -7,
          -7,
          -7,
          -3.6121478383264867,
          -3.4204508591060683,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.614158709509175,
          -7,
          -7,
          -4.452077913489846,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4504910489855627,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.419625360887743,
          -3.714664992862537,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.814713612695977,
          -7,
          -7,
          -7,
          -3.9374928165543124,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.673922062342239,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.4668676203541096,
          -7,
          -4.030842502824917,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.235697586817248,
          -7,
          -7,
          -7,
          -7,
          -2.4345689040341987,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.163494325730938,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2271150825891253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.70922754733432,
          -7,
          -4.230704313612569,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4287825114969546,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6177863946963984,
          -7,
          -7,
          -7,
          -5.131323474743548,
          -3.8822968009376515,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.983184100935266,
          -3.558048229082988,
          -7,
          -7,
          -7,
          -7,
          -3.5970366649776535,
          -7,
          -7,
          -7,
          -7,
          -3.280805928393667,
          -7,
          -7,
          -7,
          -7,
          -3.2974322048101694,
          -7,
          -4.855906637526463,
          -7,
          -4.79600507614726,
          -7,
          -3.778729923996112,
          -5.0178760546701096,
          -3.7613263224214566,
          -7,
          -7,
          -7,
          -3.5118833609788744,
          -3.7701890227359933,
          -7,
          -7,
          -7,
          -7,
          -3.3619166186686433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8014860329219524,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.879193398354936,
          -7,
          -7,
          -7,
          -4.717196014288484,
          -7,
          -7,
          -7,
          -7,
          -4.921535616470937,
          -7,
          -7,
          -7,
          -5.387605140301401,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.310841945164296,
          -7,
          -4.66838591669,
          -4.0652696604655,
          -3.57316180901509,
          -7,
          -7,
          -7,
          -4.757841230761179,
          -3.983581186705791,
          -3.4641913706409997,
          -3.9609461957338317,
          -4.359674251406698,
          -4.2015518767496935,
          -7,
          -3.9568085108888016,
          -7,
          -7,
          -7,
          -4.369271532621027,
          -7,
          -7,
          -3.9114461543905747,
          -4.311539132333878,
          -5.706258501394493,
          -7,
          -7,
          -7,
          -4.255537826224604,
          -7,
          -5.103998596797865,
          -7,
          -4.212240888801534,
          -7,
          -7,
          -4.127962816184046,
          -3.8269525871117778,
          -7,
          -3.7314813197428696,
          -3.790988475088816,
          -4.897137547015729,
          -4.007292482997014,
          -7,
          -3.7119857714490196,
          -4.352910557168874,
          -7,
          -4.502034790128414,
          -7,
          -7,
          -3.651418016932037,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.511512010394553,
          -2.8380090624639394,
          -3.5757649805367193,
          -7,
          -3.230959555748569,
          -3.736197238918293,
          -7,
          -7,
          -7,
          -3.1280760126687155,
          -7,
          -3.5403155682447576,
          -2.6873059601920692,
          -2.403120521175818,
          -3.287129620719111,
          -7,
          -3.2757719001649312,
          -1.6386436178881632,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8944545273697826,
          -7,
          -3.400796934733158,
          -7,
          -7,
          -7,
          -3.771468489379099,
          -4.3092965124823595,
          -7,
          -3.1067007323623543,
          -3.625312450961674,
          -7,
          -2.9544033294677883,
          -7,
          -2.8494194137968996,
          -3.9446553685692547,
          -7,
          -2.639486489268586,
          -3.0419845014867866,
          -2.8379039445929424,
          -7,
          -7,
          -7,
          -7,
          -2.591064607026499,
          -7,
          -3.9766250520507276,
          -7,
          -7,
          -7,
          -3.185825359612962,
          -7,
          -3.8384082784941866,
          -7,
          -7,
          -7,
          -7,
          -3.665518453112754,
          -3.1264561134318045,
          -3.570192561095726,
          -7,
          -7,
          -3.8353734524700087,
          -7,
          -3.28004693749461,
          -7,
          -3.2884728005997825,
          -3.0090966299483104,
          -7,
          -7,
          -2.9326186985953693,
          -3.628256066711006,
          -7,
          -7,
          -3.6989048552774317,
          -7,
          -7,
          -3.0806264869218056,
          -3.0232112923288885,
          -7,
          -2.807873132003332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.419625360887743,
          -4.049579784025463,
          -7,
          -3.677728586801082,
          -2.5547326248656144,
          -7,
          -3.110252917353403,
          -7,
          -3.1970047280230456,
          -7,
          -3.6226284261293253,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.186850431506691,
          -2.6459132750338443,
          -7,
          -2.428134794028789,
          -2.4099331233312946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9523080096621253,
          -7,
          -7,
          -0.5818566052396754,
          -1.2463344173155233,
          -2.1527977807838794,
          -2.362356792654536,
          -1.679427896612119,
          -1.71008600924148,
          -2.1075596150108513,
          -2.1607369894368547,
          -3.6337713460825554,
          -1.9389642436205232,
          -7,
          -2.6597804193959593,
          -1.7494786504876951,
          -7,
          -2.501618091969828,
          -1.178401341533755,
          -1.1981787890185196,
          -2.093561757565289,
          -3.093596768608228,
          -2.7664128471123997,
          -7,
          -1.6020599913279623,
          -1.8681435345415003,
          -1.872156272748293,
          -3.0308020487722676,
          -1.3627205095512707,
          -2.6852937813867843,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.125112419666765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.2706986292759455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.564168766882124,
          -3.0211892990699383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.663870464975706,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.652386032176815,
          -3.1240148788874076,
          -3.295567099962479,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2522460504731185,
          -4.448876295154121,
          -7,
          -7,
          -3.3811150807098507,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.1250386128538095,
          -7,
          -7,
          -7,
          -7,
          -3.267054335651413,
          -7,
          -7,
          -7,
          -3.4243915544102776,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.230057880349691,
          -7,
          -4.014772474073064,
          -7,
          -7,
          -7,
          -7,
          -3.3600250891893975,
          -3.5700757053216043,
          -7,
          -3.845035993513415,
          -7,
          -7,
          -7,
          -3.666845449884052,
          -7,
          -3.3560258571931225,
          -7,
          -3.618048096712093,
          -3.7738412766815257,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0141003215196207,
          -7,
          -4.75355241975346,
          -7,
          -7,
          -7,
          -7,
          -3.0773679052841567,
          -7,
          -7,
          -7,
          -7,
          -3.393684859748368,
          -7,
          -7,
          -7,
          -4.0646825662285115,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.024239306069092,
          -3.0196977309801922,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.215967850531294,
          -7,
          -7,
          -7,
          -3.762053049458416,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.452146919101275,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.052143512563366,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5928426831311002,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7328760413627067,
          -3.3236645356081,
          -7,
          -7,
          -4.052943906657025,
          -3.368100851709351,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.9347096555283905,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.242963591821483,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3697722885969625,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4092143375767625,
          -7,
          -4.055301864347441,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.954531942626914,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.407900540142635,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6207084880206177,
          -7,
          -7,
          -7,
          -4.8304667668642045,
          -3.4081268530617237,
          -7,
          -4.282984440133955,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.527294707559675,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.603144372620182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6873505695580273,
          -7,
          -7,
          -3.30352003690728,
          -7,
          -4.555203310987142,
          -7,
          -4.6991240068041105,
          -7,
          -3.4815859363676225,
          -4.540971472183699,
          -3.7655195430979527,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.294466226161593,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.899191030527895,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.069409070671793,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.416615547168045,
          -7,
          -7,
          -7,
          -7,
          -4.620786488646187,
          -7,
          -7,
          -7,
          -4.785634090525506,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.773208463509772,
          -7,
          -4.675879115620618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.311435968289161,
          -7,
          -7,
          -4.024078722515256,
          -7,
          -3.6414741105040997,
          -3.8484149324724117,
          -7,
          -4.456937629729642,
          -3.9860996250551297,
          -7,
          -3.8368619025833786,
          -3.961942883141387,
          -4.07710434122473,
          -7,
          -3.3931762188759738,
          -7,
          -7,
          -3.7834747875822465,
          -4.370309495258699,
          -3.652536418593025,
          -7,
          -3.844730063328676,
          -4.186665390621664,
          -4.928146539379594,
          -7,
          -7,
          -7,
          -4.1766169196757135,
          -7,
          -5.405127706268088,
          -7,
          -4.213730203854841,
          -7,
          -4.017763509129315,
          -4.42992983624063,
          -3.82735491122635,
          -7,
          -4.210211471641834,
          -3.3175061899448455,
          -4.198431635107324,
          -7,
          -7,
          -3.5624316578638844,
          -4.256260606512207,
          -7,
          -4.6482799763089355,
          -7,
          -7,
          -3.9073791099869006,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9896425968775038,
          -3.327563260187278,
          -3.7023730862857875,
          -2.7075701760979367,
          -7,
          -3.640362163527487,
          -7,
          -7,
          -7,
          -3.2576785748691846,
          -7,
          -3.380892771727473,
          -2.6421346345582744,
          -7,
          -7,
          -7,
          -7,
          -1.6126819933483518,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9021389272114826,
          -7,
          -3.704407927386841,
          -7,
          -7,
          -7,
          -3.8151441461710167,
          -4.485799478932974,
          -7,
          -7,
          -3.025510672852581,
          -7,
          -3.4410664066392633,
          -7,
          -2.6896048008603892,
          -3.205228977537763,
          -7,
          -7,
          -3.052886235256382,
          -2.855216194733363,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.236537261488694,
          -7,
          -7,
          -7,
          -3.0444090865590487,
          -3.0173116440067362,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2962262872611605,
          -3.6225737162947587,
          -2.6570558528571038,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.300812794118117,
          -3.1894201246920386,
          -7,
          -7,
          -3.0037476689675056,
          -3.9299601790626792,
          -3.601408060534684,
          -3.3334472744967503,
          -4.0012359788389915,
          -7,
          -7,
          -3.100370545117563,
          -3.326949994165999,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.31093828432423,
          -3.682222460833141,
          -7,
          -7,
          -2.437650707791632,
          -7,
          -2.9431646302222556,
          -7,
          -7,
          -7,
          -3.1508587351103174,
          -3.651278013998144,
          -3.671820560183249,
          -7,
          -7,
          -3.0511525224473814,
          -3.069562390574965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2671717284030137,
          -7,
          -7,
          -1.9138138523837167,
          -1.458098017406232,
          -2.3584107862063366,
          -1.6830470382388496,
          -1.6806507621222833,
          -1.1927969525585338,
          -1.990387803953575,
          -2.2271852867246182,
          -7,
          -1.3380135619171512,
          -7,
          -2.0291131048924633,
          -1.6544172149137142,
          -7,
          -2.3821706787275887,
          -1.5365584425715302,
          -1.4655952723291037,
          -1.5807824672307302,
          -2.624797578960761,
          -2.261537362311736,
          -1.6020599913279623,
          -7,
          -1.6818870285457388,
          -1.765916793966632,
          -2.4903598606751274,
          -1.237360915794604,
          -2.0038911662369103,
          -2.4099331233312946,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3052304166418587,
          -7,
          -7,
          -7,
          -4.2356041893398375,
          -7,
          -3.1478308499434595,
          -7,
          -7,
          -7,
          -7,
          -4.3677844122811535,
          -3.9645895874899035,
          -7,
          -3.7885925559203595,
          -3.5911713115781194,
          -7,
          -7,
          -7,
          -7,
          -3.4608978427565478,
          -7,
          -3.8332340664594575,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8035284989545763,
          -7,
          -7,
          -3.563599728881531,
          -7,
          -3.0704073217401198,
          -7,
          -7,
          -7,
          -3.452706226511029,
          -7,
          -3.05240929690904,
          -3.1549309119861473,
          -3.075501339828131,
          -2.932980821923198,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7148325124333326,
          -2.52134380601364,
          -7,
          -7,
          -3.6055205234374688,
          -7,
          -7,
          -3.285932185579952,
          -7,
          -7,
          -4.528225519543581,
          -7,
          -7,
          -7,
          -7,
          -2.9548693710664784,
          -3.5524248457040857,
          -7,
          -7,
          -7,
          -7,
          -2.965107585849056,
          -7,
          -7,
          -7,
          -3.702597774525026,
          -3.6957442751973235,
          -3.29968885235135,
          -7,
          -7,
          -7,
          -3.517591730711908,
          -3.5930644316587173,
          -3.1252372114756253,
          -7,
          -3.8927900303521317,
          -7,
          -7,
          -7,
          -3.1924878028123604,
          -7,
          -3.1131631489984994,
          -7,
          -3.761702367541413,
          -2.956682855238677,
          -7,
          -7,
          -7,
          -7,
          -3.711992713282365,
          -3.4220971631317103,
          -7,
          -3.564547711755948,
          -3.3988077302032647,
          -3.763128376799137,
          -7,
          -3.7379343926406476,
          -4.76583985498647,
          -7,
          -3.9259305978684713,
          -7,
          -4.398456511847029,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.988072261480011,
          -3.651278013998144,
          -7,
          -7,
          -3.616842959534867,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.04429025803639,
          -2.5557306843819765,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1101181270103275,
          -3.214949760615447,
          -7,
          -7,
          -7,
          -3.1124254445460724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5035183127240748,
          -3.602385590105105,
          -3.589279221235967,
          -7,
          -3.479191276121532,
          -3.2043913319193,
          -7,
          -3.9494174541647484,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.693682989767589,
          -7,
          -4.313445370426414,
          -7,
          -7,
          -3.3389408586501794,
          -7,
          -3.796921075330169,
          -3.728597243383432,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.194097885578952,
          -7,
          -3.371437317404101,
          -7,
          -7,
          -7,
          -7,
          -4.370846038235976,
          -7,
          -3.42719388446982,
          -7,
          -3.859018143888894,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.685096533739927,
          -3.0323668937196664,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.50781091134775,
          -7,
          -3.7002132007860378,
          -4.435452056925035,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.504742636271688,
          -3.0232524596337114,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.511749711344983,
          -3.745708976279389,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8003733548913496,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0439317931257013,
          -7,
          -3.8536617149080574,
          -7,
          -4.422483140648195,
          -7,
          -7,
          -7,
          -3.576418141733162,
          -7,
          -3.7255441224863532,
          -3.348499570283838,
          -3.924744352479949,
          -7,
          -7,
          -7,
          -7,
          -3.64018319192134,
          -3.6216954623292787,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5660837841679958,
          -3.521835185750824,
          -7,
          -3.625723909525756,
          -3.4912215762392833,
          -4.291555951352488,
          -3.1232447909446885,
          -7,
          -7,
          -7,
          -7,
          -3.7293268096468606,
          -7,
          -4.022304622935068,
          -3.6714505542124947,
          -7,
          -7,
          -7,
          -7,
          -4.382181127004978,
          -3.1043895499322467,
          -7,
          -7,
          -7,
          -7,
          -3.751048034820188,
          -7,
          -7,
          -3.006359059989323,
          -7,
          -3.254064452914338,
          -7,
          -3.2101177828307916,
          -7,
          -7,
          -2.9061810639690853,
          -7,
          -4.388829153898841,
          -4.112001395486189,
          -3.807852333206259,
          -7,
          -2.884965198200733,
          -3.6629260984538985,
          -3.5713011255662694,
          -7,
          -7,
          -7,
          -2.914078585389112,
          -3.5781806096277777,
          -3.5284667540562014,
          -3.5559404378185113,
          -7,
          -7,
          -3.2990712600274095,
          -7,
          -3.393399695293102,
          -7,
          -3.470116353151004,
          -7,
          -3.267341239709708,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.7249881836146805,
          -3.79742336017649,
          -7,
          -4.129657673312688,
          -4.587699742794285,
          -7,
          -7,
          -4.334956116136851,
          -4.730992107059345,
          -7,
          -7,
          -7,
          -4.209899096974045,
          -3.975880934391388,
          -7,
          -7,
          -7,
          -4.691604806712127,
          -4.3070251187186726,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3078097005972085,
          -7,
          -4.389485040708147,
          -4.051808294317092,
          -3.75495958772171,
          -7,
          -4.13325141247232,
          -7,
          -4.4747697096158685,
          -3.4462004946297733,
          -3.8511461924705577,
          -2.822494985278751,
          -3.139114126747177,
          -3.0886085331114645,
          -2.882144909887086,
          -3.4774830160749435,
          -3.403234944699574,
          -3.2706788361447066,
          -4.008677806857828,
          -2.8218601782690493,
          -2.455320799214393,
          -2.7381670529898856,
          -3.5070132546179886,
          -3.1617026236005494,
          -7,
          -2.927626962444954,
          -3.6078837443569896,
          -7,
          -7,
          -2.9671664837366802,
          -7,
          -3.426998958756537,
          -3.152428134995643,
          -3.7495269157653,
          -4.365235196874075,
          -3.34143452457814,
          -2.8020892578817325,
          -2.8798601462734688,
          -2.9979369293522593,
          -7,
          -4.261726661736097,
          -3.525304009958239,
          -2.7091972493398817,
          -7,
          -3.271880311984758,
          -3.3759073599933274,
          -3.0070688591807055,
          -7,
          -3.0468608244404245,
          -3.1961761850399735,
          -3.7922300113372116,
          -3.7295022630813444,
          -7,
          -3.0868325865723842,
          -2.875526160477312,
          -7,
          -3.4750820463296552,
          -7,
          -7,
          -2.702804123119662,
          -3.724644453746363,
          -3.0213960567419713,
          -7,
          -7,
          -3.3106933123433606,
          -3.822429623779357,
          -3.109437921160224,
          -2.492644002993204,
          -3.019090315119938,
          -7,
          -3.529558673021163,
          -2.6444757499437666,
          -7,
          -2.93976877545335,
          -2.8565275017950387,
          -2.1902071514295747,
          -7,
          -2.5771993708172927,
          -2.2807196273157855,
          -7,
          -7,
          -3.6947221648599164,
          -2.0684332525144025,
          -1.4883383994676636,
          -7,
          -7,
          -2.9692994014258773,
          -7,
          -3.4055171069763763,
          -7,
          -2.9045352278661247,
          -7,
          -2.52363499968979,
          -7,
          -3.3234583668494677,
          -3.767166471434543,
          -3.057531251859636,
          -4.7982361763679355,
          -3.2830749747354715,
          -3.326335860928751,
          -2.681456607814865,
          -7,
          -2.9425041061680806,
          -7,
          -2.8883199286752164,
          -2.8069483569904206,
          -7,
          -7,
          -2.986995539724382,
          -2.7064332788991994,
          -7,
          -2.528549432194961,
          -7,
          -3.446070935701005,
          -3.391816923613249,
          -3.2238851518758858,
          -3.570348319900194,
          -3.1541449043022327,
          -7,
          -2.9952841076892596,
          -2.977266212427293,
          -7,
          -4.189518386126378,
          -7,
          -7,
          -3.9708116108725178,
          -3.5569052690554477,
          -2.9672702005446325,
          -2.523246069841925,
          -2.953437514803095,
          -7,
          -7,
          -3.0270436588491743,
          -7,
          -2.2413804341476116,
          -7,
          -2.603264692466333,
          -2.5104332945836414,
          -7,
          -7,
          -2.48521019101124,
          -3.1261609360385996,
          -3.147289769269514,
          -3.577721524509021,
          -2.973569556684414,
          -3.6419695977020594,
          -2.8846695179666737,
          -2.6135398090113924,
          -2.320647574215737,
          -7,
          -2.2642273477562327,
          -7,
          -3.300378064870703,
          -7,
          -3.541579243946581,
          -7,
          -3.1177682949263725,
          -2.6787206587279364,
          -3.4685073300813962,
          -3.2539434626692585,
          -3.0264787870418024,
          -1.309076483900133,
          -2.7013520792687795,
          -2.7251967440975706,
          -3.3805730030668872,
          -3.2115209972402297,
          -7,
          -2.688345653360757,
          -2.939875669940144,
          -7,
          -7,
          -2.73453314583352,
          -3.4396484295634737,
          -2.219123803572551,
          -2.8068580295188172,
          -7,
          -2.98878184345364,
          -7,
          -7,
          -3.3014640731432996,
          -7,
          -7,
          -3.199618067707931,
          -3.0635835285910997,
          -3.0668847431297714,
          -7,
          -1.9573782232921835,
          -2.04766419460156,
          -2.255272505103306,
          -1.919078092376074,
          -1.422175743255142,
          -1.372730958925838,
          -0.8312446358989443,
          -2.130333768495006,
          -3.2997251539756367,
          -1.7900504736833514,
          -2.9876662649262746,
          -1.7192391876340223,
          -1.2014587307439752,
          -2.9756615331810585,
          -1.2576917341781915,
          -1.5756568260144563,
          -1.6998738433342633,
          -1.2961115457914827,
          -2.7151673578484576,
          -2.0054225267100447,
          -1.8681435345415003,
          -1.6818870285457388,
          -7,
          -2.1789769472931693,
          -2.375480714618573,
          -1.4458136965328934,
          -2.1881837659757917,
          -3.2750808984568587,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.601967693943614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.726528116611382,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.5385674505657745,
          -7,
          -7,
          -7,
          -7,
          -3.617734035364018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8279290141975606,
          -7,
          -3.4143046881283317,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.760045327965811,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.608312042697327,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.8627275283179747,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530821869196451,
          -7,
          -4.009960531470598,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6614813978436156,
          -7,
          -7,
          -7,
          -7,
          -3.771752789954584,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.692384188868911,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.061728851738383,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.562530768862261,
          -7,
          -7,
          -5.15096663048619,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.507905964887182,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.7647737169110402,
          -7,
          -3.7393349601960795,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.351815625616891,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.1240475191100305,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.6464037262230695,
          -7,
          -7,
          -7,
          -4.640367133908332,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.009110806132213,
          -7,
          -4.531018832208792,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3881012015705165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.053462604925455,
          -7,
          -7,
          -4.830100855967594,
          -3.577836341292744,
          -7,
          -7,
          -7,
          -7,
          -3.5588285248170117,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1899112096928057,
          -7,
          -5.129277309831823,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6770591773921617,
          -7,
          -7,
          -3.5922878159521305,
          -7,
          -7,
          -7,
          -5.097008441935764,
          -7,
          -3.7745169657285498,
          -5.017634254197808,
          -3.756940236046724,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8651039746411278,
          -7,
          -7,
          -7,
          -4.022593314021462,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.710506616470952,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.996621107579201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.772373056075185,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.667845041827829,
          -4.286931523511091,
          -7,
          -7,
          -7,
          -7,
          -5.234825937948012,
          -3.378624983035352,
          -3.1541195255158465,
          -4.437211322624582,
          -4.961487538412329,
          -4.377133154598361,
          -7,
          -3.587775086454419,
          -7,
          -7,
          -7,
          -4.368193878266824,
          -7,
          -7,
          -4.513328601853055,
          -4.373610728312931,
          -5.706208958819606,
          -7,
          -7,
          -7,
          -4.352177692590311,
          -7,
          -5.103899460366908,
          -4.067182485523405,
          -7,
          -7,
          -7,
          -7,
          -4.081865559037354,
          -7,
          -4.207149453209543,
          -7,
          -4.896818220919975,
          -4.48364434340033,
          -7,
          -3.8630153739209696,
          -4.477579434897986,
          -7,
          -4.501921514596224,
          -7,
          -3.5618166643189575,
          -3.906151802007568,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9879491492900074,
          -2.700270937356437,
          -3.574089169798587,
          -7,
          -7,
          -3.638089721984506,
          -7,
          -2.9407654356312176,
          -7,
          -2.8216772586543666,
          -7,
          -3.5910924455241147,
          -2.6807886115066824,
          -7,
          -7,
          -4.117834518543748,
          -7,
          -1.5752928357372873,
          -7,
          -7,
          -7,
          -7,
          -2.904715545278681,
          -7,
          -7,
          -7,
          -4.00060758706289,
          -7,
          -7,
          -7,
          -3.814745129621724,
          -4.484989890267077,
          -7,
          -7,
          -3.077731179652392,
          -7,
          -2.7224693858840308,
          -7,
          -7,
          -3.2438562328065057,
          -7,
          -7,
          -7,
          -2.819214799882384,
          -7,
          -2.8027737252919755,
          -7,
          -7,
          -7,
          -2.7286242862229995,
          -3.9739586861067036,
          -4.187351482223461,
          -7,
          -3.205610309902521,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2704459080179626,
          -3.755616898414391,
          -3.116939646550756,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9738203243526837,
          -3.08429022853693,
          -7,
          -7,
          -3.7743709598499167,
          -3.928795137632244,
          -3.287577809078705,
          -7,
          -4.299834040645859,
          -7,
          -7,
          -7,
          -3.0666571634232116,
          -7,
          -3.089551882886454,
          -3.0322157032979815,
          -7,
          -7,
          -4.354703744625813,
          -7,
          -2.946452265013073,
          -3.1085650237328344,
          -3.9238654751855013,
          -7,
          -4.153204900084284,
          -2.8176027845485527,
          -7,
          -2.7013952690139202,
          -7,
          -2.4794313371977363,
          -7,
          -3.0138900603284386,
          -7,
          -7,
          -7,
          -3.1832698436828046,
          -7,
          -3.4871383754771865,
          -2.439332693830263,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.7737864449811935,
          -7,
          -1.7993405494535817,
          -2.2430380486862944,
          -1.8959747323590646,
          -2.019116290447073,
          -1.6289099792812627,
          -1.6144357966418779,
          -2.371102729959275,
          -2.5352941200427703,
          -7,
          -1.5935321959484976,
          -2.0064660422492318,
          -2.214843848047698,
          -1.8920946026904806,
          -7,
          -2.745018994770533,
          -1.5133334273741073,
          -1.1951914409557332,
          -2.01976069751232,
          -3.083323418473525,
          -2.8808135922807914,
          -1.872156272748293,
          -1.765916793966632,
          -2.1789769472931693,
          -7,
          -3.627570664180543,
          -1.4142910312838815,
          -2.2576785748691846,
          -2.155336037465062,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.438463235117634,
          -7,
          -7,
          -7,
          -3.6124924639062823,
          -7,
          -7,
          -7,
          -3.9880235619286597,
          -3.4569513503619937,
          -3.7048366062114035,
          -7,
          -7,
          -7,
          -7,
          -2.9597907046081344,
          -3.5823664295547846,
          -7,
          -2.844010944373043,
          -3.542598380426847,
          -3.693023067923694,
          -7,
          -7,
          -7,
          -3.7113853790984517,
          -7,
          -3.131111922645758,
          -3.693023067923694,
          -7,
          -7,
          -3.6629466143326246,
          -3.7610252517113727,
          -3.648067129448935,
          -3.5323083932754162,
          -7,
          -3.4800788400654854,
          -3.658488381309017,
          -3.9768449851151355,
          -7,
          -7,
          -3.772028165324855,
          -2.857073910843454,
          -2.653694795315082,
          -7,
          -3.6920533650340808,
          -7,
          -3.007150105366685,
          -3.0421027680373025,
          -2.9682365578051644,
          -7,
          -3.0707764628434346,
          -3.522009286567709,
          -7,
          -7,
          -3.3371263410122576,
          -7,
          -3.692935002531138,
          -7,
          -7,
          -7,
          -2.9175055095525466,
          -3.550595207489328,
          -7,
          -7,
          -2.5408159235773624,
          -7,
          -3.9623219727295846,
          -7,
          -7,
          -7,
          -4.137442733854849,
          -7,
          -3.7803893284709527,
          -7,
          -7,
          -2.3000983660999252,
          -7,
          -7,
          -7,
          -3.5143484893019368,
          -7,
          -7,
          -3.5599066250361124,
          -7,
          -7,
          -3.3530464870062326,
          -7,
          -3.374687259508575,
          -7,
          -7,
          -7,
          -3.4429498695778618,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.2741248469093267,
          -7,
          -3.7890163267933747,
          -7,
          -2.6726410656136697,
          -2.9221905350019726,
          -7,
          -3.6500159524718385,
          -7,
          -3.4156409798961542,
          -2.8127579461985768,
          -2.646849110819487,
          -7,
          -7,
          -3.86135516019326,
          -3.6047119317276204,
          -7,
          -3.668874921546896,
          -3.526798605282374,
          -7,
          -7,
          -7,
          -3.4784561468433646,
          -3.705607163404605,
          -3.8163075994319398,
          -7,
          -7,
          -3.677333151419902,
          -2.252704839216663,
          -3.3509583358370834,
          -7,
          -7,
          -2.715263899914411,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5578078557646045,
          -3.260739019910411,
          -3.9548693710664784,
          -3.3317814715707588,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.019739232674706,
          -7,
          -7,
          -7,
          -3.6319620874766763,
          -7,
          -7,
          -7,
          -3.7206553565517244,
          -7,
          -7,
          -7,
          -3.796435558810175,
          -3.3106933123433606,
          -7,
          -3.3538777790648417,
          -3.4359239581191647,
          -3.6664243725187595,
          -3.4987724041202775,
          -3.6578204560156973,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6068111469189637,
          -7,
          -3.455244683982738,
          -7,
          -7,
          -3.178242157957572,
          -7,
          -3.4531143980466226,
          -3.1818435879447726,
          -3.118677985690463,
          -3.485437481076301,
          -7,
          -7,
          -7,
          -3.4299136977637543,
          -3.6036855496146996,
          -7,
          -7,
          -7,
          -7,
          -3.4573519461106943,
          -7,
          -7,
          -2.5194090466884345,
          -7,
          -2.799570274125377,
          -7,
          -3.129125716306038,
          -3.351216345339342,
          -3.666049738480516,
          -3.268577971882843,
          -3.4761792624817036,
          -7,
          -3.0118522700068455,
          -3.468363743347739,
          -2.889781762778371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5989363410431636,
          -3.8794972872494284,
          -3.538925450303585,
          -3.4879554190332436,
          -7,
          -3.656577291396114,
          -3.190705124231049,
          -3.7062909572587635,
          -7,
          -7,
          -3.7701890227359933,
          -3.2591158441850663,
          -7,
          -7,
          -7,
          -7,
          -3.3460594330525737,
          -7,
          -3.634275694625944,
          -7,
          -2.9961736756972437,
          -7,
          -7,
          -7,
          -7,
          -3.680335513414563,
          -3.6742179455767,
          -7,
          -7,
          -3.455656815340888,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.3268387244988404,
          -3.4627722284106115,
          -3.010299956639812,
          -7,
          -3.184801803914325,
          -7,
          -7,
          -7,
          -3.0178997784978576,
          -7,
          -2.963180469568511,
          -3.4746047207049298,
          -4.027920136405803,
          -3.7265642161622448,
          -7,
          -3.6353832040474985,
          -7,
          -7,
          -3.5077209766856137,
          -7,
          -3.6504046698680317,
          -7,
          -3.6471872978959894,
          -3.1337783429891113,
          -7,
          -3.4723907276266286,
          -4.087603973687808,
          -7,
          -3.510343901389912,
          -3.4274861090957858,
          -3.317296035535606,
          -2.9160024989438855,
          -7,
          -3.5176859234556574,
          -7,
          -7,
          -3.881783955593385,
          -7,
          -3.5043349118024643,
          -3.5407047833107623,
          -3.391508491461765,
          -7,
          -3.5497999641845497,
          -3.781827152932428,
          -3.6157691968961876,
          -3.445720933413234,
          -7,
          -7,
          -7,
          -3.9749259860897626,
          -7,
          -3.6578204560156973,
          -3.674034000431255,
          -7,
          -7,
          -3.766933093837284,
          -7,
          -3.464688218289176,
          -7,
          -3.700617195682057,
          -3.2956220704684576,
          -7,
          -4.180091451515921,
          -3.847186928162049,
          -3.9231276844541685,
          -3.6797911709803546,
          -3.0939467238905833,
          -3.8297458846919756,
          -3.3848907965305544,
          -7,
          -3.693287157005656,
          -7,
          -3.254185409462092,
          -3.9925093350677754,
          -3.954724790979063,
          -7,
          -7,
          -7,
          -3.4939457483871506,
          -7,
          -7,
          -3.682686478249768,
          -3.610606937465461,
          -3.6554265877459184,
          -2.8259280154703044,
          -7,
          -7,
          -3.0899151994635075,
          -3.081838720394356,
          -2.9510848355357298,
          -2.9965116721541785,
          -4.044022061416491,
          -2.930821728079435,
          -2.5060022200171628,
          -3.852134209659975,
          -3.137163053129165,
          -3.0064660422492318,
          -2.5038474053823325,
          -3.1470030416463004,
          -3.4932798661842517,
          -3.4571709418412215,
          -2.3604532331928016,
          -2.5101618655131217,
          -3.3639536750174837,
          -2.444300082182316,
          -3.683737275960329,
          -2.9861444647105206,
          -7,
          -3.6868097001081455,
          -3.875620660301091,
          -2.620933784949581,
          -2.5420569281178227,
          -4.400054211274874,
          -3.4617368034318816,
          -3.2007365309762705,
          -3.7748817658187965,
          -2.840457680151218,
          -3.258110255321881,
          -3.8648584454950887,
          -4.394294045352843,
          -3.5076984901097985,
          -2.9744349283567657,
          -4.199919651590568,
          -7,
          -3.9042691229519955,
          -2.6647795193361836,
          -3.5724068675580556,
          -7,
          -3.6620534634123754,
          -3.602475990905145,
          -4.057856208741888,
          -7,
          -2.725059716266424,
          -7,
          -3.676436539951696,
          -3.177728835841732,
          -2.989831056446319,
          -2.5445696679092684,
          -3.7494543917836216,
          -3.1104297662155624,
          -7,
          -3.4925369002881332,
          -4.01556930642988,
          -7,
          -3.998084887936556,
          -3.7377172970215713,
          -7,
          -3.692670699156369,
          -3.463496250272348,
          -3.47587783963758,
          -3.8834224248181477,
          -7,
          -3.3327918116376987,
          -3.6564815157904986,
          -3.4165064451418456,
          -7,
          -4.809640506093394,
          -3.7178091444980614,
          -3.5278446323871613,
          -7,
          -3.438507188934901,
          -3.232699706990279,
          -3.361201508369878,
          -3.889077492650064,
          -3.4580115820428454,
          -4.005094675072549,
          -3.0036233830206034,
          -4.0600175425316,
          -7,
          -3.393143421154438,
          -3.510910004340515,
          -7,
          -3.638579485603398,
          -7,
          -3.88320703335239,
          -3.3906702126261803,
          -3.768508607439089,
          -7,
          -7,
          -7,
          -2.933689708957895,
          -3.3469883009877015,
          -2.337941652904336,
          -2.6630482325495684,
          -2.745855195173729,
          -3.34143452457814,
          -3.2738497297176563,
          -2.7368540379145427,
          -2.7471998707621346,
          -3.0595634179012676,
          -7,
          -2.6451414452320305,
          -3.6310376965367404,
          -1.851762744123039,
          -2.74707871738161,
          -3.1946993054635864,
          -3.069446083880313,
          -3.329880725319446,
          -1.7828731511714586,
          -2.175722610349459,
          -1.4675800089413817,
          -2.4603339459252327,
          -2.9076352585379115,
          -2.388138610113707,
          -2.1184668132481392,
          -3.2661532687922707,
          -2.505088284381042,
          -3.1398790864012365,
          -2.520639467711374,
          -2.514036637523143,
          -7,
          -2.7255688345434206,
          -3.0310450563595204,
          -2.1712567871600528,
          -7,
          -2.769981211895668,
          -2.6759897286249137,
          -2.062492448204363,
          -2.5188428262865648,
          -3.6160551949765862,
          -2.824451270036613,
          -2.47929746034392,
          -3.325310371711061,
          -3.339650157613684,
          -3.1858961319559693,
          -2.7701152947871015,
          -1.8038771296868603,
          -2.965953889102063,
          -2.31854490346367,
          -3.2256538231813816,
          -3.3727279408855955,
          -3.146128035678238,
          -2.6633434412297596,
          -1.5843312243675307,
          -3.3270522653266985,
          -2.576947229882608,
          -2.66776416356748,
          -3.458788881710845,
          -2.7285259405518585,
          -1.7308406263593452,
          -2.7363965022766426,
          -2.9175430182524797,
          -3.0683343131172545,
          -2.695770873257886,
          -2.7399676967595092,
          -1.9717975238541687,
          -7,
          -3.370513089598593,
          -3.731629050375943,
          -3.6658623002031554,
          -1.8839152129132857,
          -2.4775071227876087,
          -2.5912872650584995,
          -2.6396163943940087,
          -2.2355284469075487,
          -7,
          -2.3812692068679397,
          -2.7110100570641573,
          -2.639154332860882,
          -3.780821175853473,
          -2.5441957592407425,
          -2.866877814337499,
          -3.66133934000604,
          -3.233672845210665,
          -2.477452880802274,
          -1.8592133762958247,
          -2.01983661903724,
          -2.5569052690554477,
          -3.6285932558512592,
          -7,
          -2.7247508753987764,
          -0.8667808508413924,
          -3.085825533520743,
          -2.139074837130837,
          -3.0425986729597225,
          -3.0672940863159766,
          -2.50213950773425,
          -2.483592912107618,
          -3.015778756389041,
          -2.58152802295868,
          -3.190611797813605,
          -2.837114748515506,
          -3.018076063645795,
          -2.8677352568310357,
          -2.5980084167230095,
          -3.0296373803095857,
          -3.623352681537992,
          -2.8959747323590643,
          -3.2221092481637466,
          -2.2993138989499227,
          -3.2060158767633444,
          -3.3550682063488506,
          -3.6238692683503024,
          -3.622731965164719,
          -3.3334472744967503,
          -7,
          -2.6842467475153122,
          -2.6392698943402007,
          -2.2241768313269548,
          -3.280881754580137,
          -3.6618126855372615,
          -2.9719249491841913,
          -3.164352855784437,
          -2.809367293505889,
          -3.681331705969166,
          -2.4073909044707316,
          -2.1723323383021844,
          -2.582144562216779,
          -2.2749006866771184,
          -0.4126325672878087,
          -2.7684795320928424,
          -2.526892871450658,
          -3.623352681537992,
          -2.0688040746361804,
          -2.8197319011288338,
          -3.6178387477170033,
          -1.2438901187636742,
          -2.637125693881889,
          -2.6754116937148633,
          -2.172689860892129,
          -0.04312571374013441,
          -0.18221499328361404,
          -3.0308020487722676,
          -2.4903598606751274,
          -2.375480714618573,
          -3.627570664180543,
          -7,
          -2.6135979047217197,
          -3.3897860623169342,
          -3.315655525231531,
          -7,
          -7,
          -7,
          -3.1300119496719043,
          -3.1809855807867304,
          -3.417803722639881,
          -3.0629578340845103,
          -7,
          -7,
          -3.4509024629823473,
          -7,
          -7,
          -7,
          -3.7424632714945925,
          -3.7579271831133294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.457074094628222,
          -7,
          -3.7424894645817752,
          -3.4023415632229432,
          -7,
          -7,
          -7,
          -7,
          -3.3562171342197353,
          -3.2340108175871793,
          -3.9168047518661746,
          -3.313445370426414,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.199618067707931,
          -7,
          -3.6668548025233454,
          -7,
          -7,
          -3.1818435879447726,
          -7,
          -2.9427519204298136,
          -7,
          -7,
          -7,
          -3.0443437348951075,
          -7,
          -2.8513115352333664,
          -2.7854484784978877,
          -2.7444885672205115,
          -2.8092535500248417,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.258828770593979,
          -3.349875009222593,
          -7,
          -7,
          -2.628261177591116,
          -7,
          -3.4978277360835044,
          -3.111766433052562,
          -2.8606374167737547,
          -7,
          -4.128250600818072,
          -7,
          -7,
          -7,
          -7,
          -2.6442830677179567,
          -3.469674772551798,
          -7,
          -7,
          -3.5640739789771465,
          -3.2771506139637965,
          -2.7559836877697665,
          -3.6422666189026733,
          -7,
          -7,
          -3.5081331656581813,
          -3.6378898165807905,
          -3.151523067564944,
          -7,
          -7,
          -3.5491259267581112,
          -7,
          -3.518382315545344,
          -2.895238327804661,
          -7,
          -3.574089169798587,
          -7,
          -7,
          -7,
          -3.0577928497102045,
          -7,
          -2.815577748324267,
          -7,
          -2.4082399653118496,
          -2.5925292262557798,
          -7,
          -7,
          -7,
          -7,
          -3.622214022966295,
          -7,
          -7,
          -7,
          -3.6427612032653203,
          -7,
          -7,
          -7,
          -4.062175700706289,
          -7,
          -7,
          -7,
          -4.997849268568125,
          -2.6424645202421213,
          -3.5654936298688624,
          -7,
          -7,
          -7,
          -2.584016950902841,
          -7,
          -7,
          -7,
          -4.384209999793958,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.218235318937493,
          -2.6478019710944465,
          -3.7032913781186614,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.088738365273999,
          -3.034513867051594,
          -7,
          -7,
          -3.2826221128780624,
          -3.0606734753233433,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.8066886148562817,
          -2.9265996539070276,
          -3.2125870781238937,
          -3.4369573306694496,
          -2.693623508532089,
          -2.809391350809975,
          -3.2467447097238415,
          -3.8408111814354173,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4893959217271293,
          -7,
          -7,
          -7,
          -3.4870676377163163,
          -3.196272162145656,
          -7,
          -3.7517408738109004,
          -7,
          -7,
          -7,
          -3.398981066658131,
          -3.1360860973840974,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9922441440467713,
          -2.8535461212539044,
          -7,
          -7,
          -2.958836809849585,
          -7,
          -3.3427515672308834,
          -7,
          -2.9230712338729132,
          -7,
          -7,
          -3.329736774799155,
          -7,
          -7,
          -2.8187535904977166,
          -4.3729672063871545,
          -3.12515582958053,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.255272505103306,
          -3.9563605536733224,
          -7,
          -7,
          -4.672306974556731,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.5010592622177517,
          -7,
          -7,
          -3.162862993321926,
          -2.8929289823552056,
          -7,
          -3.1565491513317814,
          -2.640150040936102,
          -3.5487725584928786,
          -7,
          -2.8254261177678233,
          -7,
          -7,
          -7,
          -3.266936911159173,
          -7,
          -3.2837533833325265,
          -3.7555699806288,
          -3.4394905903896835,
          -7,
          -3.8706964579892498,
          -3.425371166438941,
          -7,
          -7,
          -2.7879662326772423,
          -7,
          -3.5449109978822997,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.329967072734659,
          -3.8048206787211623,
          -3.398287305357401,
          -3.004894321731049,
          -7,
          -3.3898745583909853,
          -7,
          -7,
          -3.364550995353972,
          -3.5737995822157407,
          -2.7728105019145324,
          -7,
          -7,
          -3.3677285460869766,
          -7,
          -7,
          -7,
          -2.786041210242554,
          -3.125667119766511,
          -3.3527611917238307,
          -3.5569052690554477,
          -7,
          -4.0932688273621345,
          -2.6820447426591882,
          -7,
          -4.004149341900059,
          -7,
          -3.297760511099134,
          -2.5599066250361124,
          -2.839006415311301,
          -3.694868327982456,
          -2.7054360465852505,
          -3.543012046377035,
          -3.4483971034577676,
          -2.7790808857337654,
          -3.5020172148271476,
          -4.413969971748061,
          -2.9637353731535834,
          -7,
          -7,
          -7,
          -3.8172347304254983,
          -2.796227314029439,
          -7,
          -2.6629937971760524,
          -3.236033147117636,
          -7,
          -3.473194909204938,
          -7,
          -3.166578109919652,
          -7,
          -7,
          -2.495110520227484,
          -7,
          -4.561256461130405,
          -7,
          -3.9949142356445018,
          -7,
          -2.7690078709437738,
          -4.0679795950683815,
          -3.0560150335589764,
          -7,
          -7,
          -7,
          -2.788572366037187,
          -3.1428272945383364,
          -3.1854004831904525,
          -7,
          -7,
          -7,
          -2.826981336911994,
          -3.2005769267548483,
          -2.9668454236549167,
          -7,
          -3.4220149959794637,
          -7,
          -2.713930335011934,
          -7,
          -7,
          -4.60471193172762,
          -7,
          -7,
          -7,
          -7,
          -3.786573978023827,
          -7,
          -7,
          -4.04008784346988,
          -7,
          -7,
          -7,
          -4.72596877254668,
          -5.0015043932368455,
          -4.590997787350715,
          -7,
          -4.681494501961706,
          -4.625996286305002,
          -7,
          -7,
          -7,
          -4.9123655573140255,
          -7,
          -7,
          -7,
          -7,
          -4.666358834886494,
          -7,
          -7,
          -4.002302882576187,
          -7,
          -4.383967880647654,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.164605624889347,
          -7,
          -3.719807589302826,
          -2.8327217499964084,
          -4.201032783290775,
          -3.290705949488817,
          -3.9320169064342014,
          -3.1288837020997735,
          -3.5674772960726626,
          -2.890281261927012,
          -3.82255531024074,
          -2.3821398923654864,
          -2.4202858849419178,
          -3.852510490774041,
          -3.4479657068003102,
          -3.182584042752654,
          -7,
          -3.034936816821393,
          -3.5733938349225207,
          -7,
          -7,
          -3.786414216302987,
          -7,
          -7,
          -3.2390534871210988,
          -3.544442954987437,
          -4.665756617515032,
          -2.416640507338281,
          -2.4773497706322765,
          -7,
          -3.4969821074492327,
          -7,
          -4.292862432927566,
          -4.107040290223204,
          -3.394301553101531,
          -7,
          -3.384791331426507,
          -3.8437465242516153,
          -3.5098813506672766,
          -7,
          -3.235932253986295,
          -3.3826173114774845,
          -3.3974674564260865,
          -3.3528713279019153,
          -3.2844307338445193,
          -2.973795787525392,
          -3.637685056151331,
          -7,
          -3.435100153553497,
          -7,
          -3.6783362467321803,
          -2.9630003484681415,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.119155439530316,
          -1.9822712330395684,
          -2.7748682601673127,
          -7,
          -7,
          -2.880851686617196,
          -7,
          -2.1734929735676083,
          -3.1878026387184195,
          -2.5514499979728753,
          -7,
          -2.8674948950584738,
          -2.0876039736878083,
          -7,
          -7,
          -7,
          -7,
          -0.3797171802809775,
          -7,
          -7,
          -3.5344703322033375,
          -7,
          -7,
          -2.308153810824874,
          -2.7776339251504623,
          -7,
          -2.9318488804227223,
          -7,
          -7,
          -4.304727429383633,
          -3.2710019473768117,
          -4.793936986698624,
          -7,
          -7,
          -2.139323367218689,
          -7,
          -2.0778951394943377,
          -7,
          -2.1850461017086076,
          -2.4486360627696193,
          -7,
          -7,
          -3.2131191388114564,
          -2.6875289612146345,
          -7,
          -7,
          -3.413299764081252,
          -2.636688447953283,
          -7,
          -2.5894708640199418,
          -3.3235408460980116,
          -7,
          -7,
          -2.200384310237582,
          -2.1961123854440547,
          -7,
          -3.8706964579892498,
          -7,
          -7,
          -3.941063988219902,
          -2.2665844470668635,
          -2.8111227700633705,
          -2.5710096723093048,
          -7,
          -7,
          -7,
          -7,
          -7,
          -2.9856830355921042,
          -7,
          -2.433842537445903,
          -2.679609571779756,
          -7,
          -7,
          -2.448520816457295,
          -2.913863814360407,
          -2.188576970603741,
          -3.500099191915723,
          -2.6314230602187614,
          -7,
          -7,
          -3.0542299098633974,
          -2.6487727136426256,
          -7,
          -2.670802284260944,
          -3.3422252293607904,
          -7,
          -7,
          -7,
          -7,
          -2.6989700043360187,
          -2.3878642059401316,
          -3.4986363091211903,
          -7,
          -3.7089305358066165,
          -1.9007254013943047,
          -3.7352794480604565,
          -2.2785129279170753,
          -7,
          -2.03342375548695,
          -7,
          -2.080357968800938,
          -2.2725617633734894,
          -7,
          -3.1228709228644354,
          -2.7224693858840308,
          -2.7257074985747667,
          -2.588118849042228,
          -2.812244696800369,
          -7,
          -7,
          -7,
          -7,
          -3.1408221801093106,
          -2.8721562727482928,
          -3.856910060300786,
          -7,
          -7,
          -2.3863715504164245,
          -3.26030994579492,
          -1.292256071356476,
          -1.0260558343362822,
          -1.152596646205211,
          -1.768816650063645,
          -0.9445149269299304,
          -0.9866043276989207,
          -1.4670676927742645,
          -1.5228325412820065,
          -7,
          -1.3343519355410627,
          -1.9375178920173466,
          -1.6840000193202802,
          -1.5216610151120733,
          -7,
          -1.85062416092448,
          -0.7282449109488612,
          -0.7473115494495717,
          -1.3228968213641614,
          -2.645053650442902,
          -2.2488762999185097,
          -1.3627205095512707,
          -1.237360915794604,
          -1.4458136965328934,
          -1.4142910312838815,
          -2.6135979047217197,
          -7,
          -2.3047058982127653,
          -2.2528530309798933,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3607205081851985,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.531000232674238,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.868473978153819,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.682506085939011,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.007635777016201,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.314709692955174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.126835711721174,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.084933574936716,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.757767905015857,
          -7,
          -7,
          -7,
          -4.393772565000729,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.007961033336183,
          -7,
          -7,
          -7,
          -4.375974366176192,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.547196080987191,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.4667193716815987,
          -3.44870631990508,
          -7,
          -3.6004828134659586,
          -7,
          -7,
          -5.151988516548684,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.812957897382539,
          -7,
          -7,
          -4.6553247955498565,
          -7,
          -3.7152510288788494,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1283992687178066,
          -7,
          -7,
          -7,
          -3.775173385424787,
          -3.424881636631067,
          -7,
          -7,
          -4.36451347369151,
          -3.577319426553794,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.145289659054146,
          -5.412302593443167,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.467568644894248,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.324138352655017,
          -7,
          -7,
          -7,
          -4.413576350079674,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.832237393796547,
          -3.6145281197475394,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5758803156806462,
          -7,
          -4.1126133790479455,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1436392352745433,
          -7,
          -7,
          -7,
          -7,
          -3.7340794072805945,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.176576818277254,
          -7,
          -7,
          -3.4886543840544424,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.508839337975575,
          -7,
          -7,
          -7,
          -4.29777509673101,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.3763122852475576,
          -4.623652376727108,
          -7,
          -7,
          -7,
          -7,
          -4.283391697297128,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.590470293581849,
          -7,
          -7,
          -7,
          -7,
          -5.236509550399869,
          -4.010215125214227,
          -7,
          -7,
          -4.663601996724677,
          -7,
          -7,
          -4.142561522784965,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.69237977954167,
          -4.789548279872023,
          -7,
          -7,
          -7,
          -7,
          -4.179274044963151,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.785664326504347,
          -7,
          -7,
          -3.5306478535274857,
          -4.599435452688469,
          -4.493053543571646,
          -7,
          -4.343511984943949,
          -4.3558344958849355,
          -7,
          -5.047309921129448,
          -7,
          -7,
          -4.311287538662283,
          -2.6897635157677504,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9977648799305885,
          -3.1266183755229515,
          -7,
          -7,
          -7,
          -4.350344948249062,
          -7,
          -7,
          -2.733999286538387,
          -3.4760341590784485,
          -7,
          -3.8968498887351135,
          -3.353627758985543,
          -7,
          -7,
          -7,
          -7,
          -2.2987657722618797,
          -7,
          -7,
          -3.8057726319356693,
          -7,
          -7,
          -7,
          -3.5742628297070267,
          -7,
          -7,
          -7,
          -7,
          -3.3700556852672308,
          -4.016695655448349,
          -7,
          -7,
          -7,
          -3.956696564894651,
          -7,
          -3.5203525040833177,
          -7,
          -3.0049658871068234,
          -3.6582976503081897,
          -7,
          -7,
          -3.147985320683805,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5888317255942073,
          -3.0881360887005513,
          -7,
          -4.158272004652084,
          -7,
          -7,
          -7,
          -2.9254839872002525,
          -4.171985685657181,
          -3.215505378231818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.801403710017355,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.82052984852352,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.766635886310268,
          -7,
          -3.7471786713601642,
          -7,
          -2.9763499790032735,
          -7,
          -7,
          -7,
          -3.287727102473748,
          -7,
          -3.190611797813605,
          -2.810098040681143,
          -4.534546439654068,
          -7,
          -7,
          -2.948376283952328,
          -3.697316541732383,
          -7,
          -7,
          -3.339053735709139,
          -7,
          -3.681512586638962,
          -7,
          -7,
          -2.940516484932567,
          -7,
          -7,
          -3.9249164729965895,
          -7,
          -7,
          -2.9429995933660407,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.3807537708039,
          -7,
          -7,
          -7,
          -3.077731179652392,
          -2.3192548157701802,
          -2.6368220975871743,
          -2.2458210061174126,
          -2.073610544839325,
          -2.527894170739935,
          -3.490169250834894,
          -7,
          -2.6699364163086976,
          -2.940516484932567,
          -2.5382766083964956,
          -2.5115491597450657,
          -7,
          -2.900790291266021,
          -2.159266331093494,
          -2.305044121834302,
          -2.493225621510431,
          -3.1889284837608534,
          -2.9922588811302626,
          -2.6852937813867843,
          -2.0038911662369103,
          -2.1881837659757917,
          -2.2576785748691846,
          -3.3897860623169342,
          -2.3047058982127653,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.203764258404371,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.140322595530777,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.42953157865769,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.530558259451653,
          -7,
          -4.005566571133294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5439439424829065,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9577030415488315,
          -7,
          -7,
          -7,
          -7,
          -4.372027792657405,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.451841677951873,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.6916118742144164,
          -4.875699689346818,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.5306478535274857,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.940894833619059,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.228644131738731,
          -7,
          -4.708123336243728,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9439394644722165,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.395675785269936,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.828186038050364,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.498351913199365,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.763697472032553,
          -7,
          -3.6194064108867776,
          -7,
          -7,
          -5.234565367069626,
          -3.9762582492570453,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.431412016420789,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.512871092039323,
          -5.010315507270583,
          -7,
          -7,
          -7,
          -7,
          -4.6527296960692475,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.595209536956467,
          -7,
          -7,
          -4.941794575846803,
          -4.6531835598447415,
          -7,
          -7,
          -7,
          -7,
          -4.604096393587492,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.1878026387184195,
          -4.335156899534743,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.493660163508368,
          -3.272421826371504,
          -7,
          -7,
          -7,
          -7,
          -2.3022690677795294,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -5.0932640496888615,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.241745652570644,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.9691828592322613,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -4.44351136416493,
          -3.4008832155483626,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.250907699700856,
          -3.7764105888073423,
          -3.0488300865283504,
          -7,
          -3.766784515497859,
          -4.3257413721537965,
          -7,
          -7,
          -4.297585445297346,
          -7,
          -7,
          -3.018284308426531,
          -4.017283821560018,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.0907869279492677,
          -7,
          -7,
          -7,
          -3.587449037524363,
          -7,
          -3.3836358683618797,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -3.911459467254995,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -7,
          -1.7719023011066422,
          -2.846337112129805,
          -7,
          -2.3600461515081728,
          -2.8041394323353503,
          -3.1406127806443553,
          -3.131056990114102,
          -7,
          -2.5017437296279943,
          -2.0086001717619175,
          -2.6373467519040084,
          -7,
          -7,
          -3.5388389432951035,
          -2.1354506993455136,
          -1.903768042526874,
          -2.7752462597402365,
          -3.3658622154025553,
          -7,
          -7,
          -2.4099331233312946,
          -3.2750808984568587,
          -2.155336037465062,
          -3.315655525231531,
          -2.2528530309798933,
          -7,
          -7
         ],
         "xaxis": "x",
         "yaxis": "y"
        }
       ],
       "layout": {
        "barmode": "overlay",
        "legend": {
         "title": {
          "text": "series"
         },
         "tracegroupgap": 0
        },
        "template": {
         "data": {
          "bar": [
           {
            "error_x": {
             "color": "#2a3f5f"
            },
            "error_y": {
             "color": "#2a3f5f"
            },
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             }
            },
            "type": "bar"
           }
          ],
          "barpolar": [
           {
            "marker": {
             "line": {
              "color": "#E5ECF6",
              "width": 0.5
             }
            },
            "type": "barpolar"
           }
          ],
          "carpet": [
           {
            "aaxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "baxis": {
             "endlinecolor": "#2a3f5f",
             "gridcolor": "white",
             "linecolor": "white",
             "minorgridcolor": "white",
             "startlinecolor": "#2a3f5f"
            },
            "type": "carpet"
           }
          ],
          "choropleth": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "choropleth"
           }
          ],
          "contour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "contour"
           }
          ],
          "contourcarpet": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "contourcarpet"
           }
          ],
          "heatmap": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmap"
           }
          ],
          "heatmapgl": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "heatmapgl"
           }
          ],
          "histogram": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "histogram"
           }
          ],
          "histogram2d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2d"
           }
          ],
          "histogram2dcontour": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "histogram2dcontour"
           }
          ],
          "mesh3d": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "type": "mesh3d"
           }
          ],
          "parcoords": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "parcoords"
           }
          ],
          "pie": [
           {
            "automargin": true,
            "type": "pie"
           }
          ],
          "scatter": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter"
           }
          ],
          "scatter3d": [
           {
            "line": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatter3d"
           }
          ],
          "scattercarpet": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattercarpet"
           }
          ],
          "scattergeo": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergeo"
           }
          ],
          "scattergl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattergl"
           }
          ],
          "scattermapbox": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scattermapbox"
           }
          ],
          "scatterpolar": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolar"
           }
          ],
          "scatterpolargl": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterpolargl"
           }
          ],
          "scatterternary": [
           {
            "marker": {
             "colorbar": {
              "outlinewidth": 0,
              "ticks": ""
             }
            },
            "type": "scatterternary"
           }
          ],
          "surface": [
           {
            "colorbar": {
             "outlinewidth": 0,
             "ticks": ""
            },
            "colorscale": [
             [
              0,
              "#0d0887"
             ],
             [
              0.1111111111111111,
              "#46039f"
             ],
             [
              0.2222222222222222,
              "#7201a8"
             ],
             [
              0.3333333333333333,
              "#9c179e"
             ],
             [
              0.4444444444444444,
              "#bd3786"
             ],
             [
              0.5555555555555556,
              "#d8576b"
             ],
             [
              0.6666666666666666,
              "#ed7953"
             ],
             [
              0.7777777777777778,
              "#fb9f3a"
             ],
             [
              0.8888888888888888,
              "#fdca26"
             ],
             [
              1,
              "#f0f921"
             ]
            ],
            "type": "surface"
           }
          ],
          "table": [
           {
            "cells": {
             "fill": {
              "color": "#EBF0F8"
             },
             "line": {
              "color": "white"
             }
            },
            "header": {
             "fill": {
              "color": "#C8D4E3"
             },
             "line": {
              "color": "white"
             }
            },
            "type": "table"
           }
          ]
         },
         "layout": {
          "annotationdefaults": {
           "arrowcolor": "#2a3f5f",
           "arrowhead": 0,
           "arrowwidth": 1
          },
          "autotypenumbers": "strict",
          "coloraxis": {
           "colorbar": {
            "outlinewidth": 0,
            "ticks": ""
           }
          },
          "colorscale": {
           "diverging": [
            [
             0,
             "#8e0152"
            ],
            [
             0.1,
             "#c51b7d"
            ],
            [
             0.2,
             "#de77ae"
            ],
            [
             0.3,
             "#f1b6da"
            ],
            [
             0.4,
             "#fde0ef"
            ],
            [
             0.5,
             "#f7f7f7"
            ],
            [
             0.6,
             "#e6f5d0"
            ],
            [
             0.7,
             "#b8e186"
            ],
            [
             0.8,
             "#7fbc41"
            ],
            [
             0.9,
             "#4d9221"
            ],
            [
             1,
             "#276419"
            ]
           ],
           "sequential": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ],
           "sequentialminus": [
            [
             0,
             "#0d0887"
            ],
            [
             0.1111111111111111,
             "#46039f"
            ],
            [
             0.2222222222222222,
             "#7201a8"
            ],
            [
             0.3333333333333333,
             "#9c179e"
            ],
            [
             0.4444444444444444,
             "#bd3786"
            ],
            [
             0.5555555555555556,
             "#d8576b"
            ],
            [
             0.6666666666666666,
             "#ed7953"
            ],
            [
             0.7777777777777778,
             "#fb9f3a"
            ],
            [
             0.8888888888888888,
             "#fdca26"
            ],
            [
             1,
             "#f0f921"
            ]
           ]
          },
          "colorway": [
           "#636efa",
           "#EF553B",
           "#00cc96",
           "#ab63fa",
           "#FFA15A",
           "#19d3f3",
           "#FF6692",
           "#B6E880",
           "#FF97FF",
           "#FECB52"
          ],
          "font": {
           "color": "#2a3f5f"
          },
          "geo": {
           "bgcolor": "white",
           "lakecolor": "white",
           "landcolor": "#E5ECF6",
           "showlakes": true,
           "showland": true,
           "subunitcolor": "white"
          },
          "hoverlabel": {
           "align": "left"
          },
          "hovermode": "closest",
          "mapbox": {
           "style": "light"
          },
          "paper_bgcolor": "white",
          "plot_bgcolor": "#E5ECF6",
          "polar": {
           "angularaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "radialaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "scene": {
           "xaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "yaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           },
           "zaxis": {
            "backgroundcolor": "#E5ECF6",
            "gridcolor": "white",
            "gridwidth": 2,
            "linecolor": "white",
            "showbackground": true,
            "ticks": "",
            "zerolinecolor": "white"
           }
          },
          "shapedefaults": {
           "line": {
            "color": "#2a3f5f"
           }
          },
          "ternary": {
           "aaxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "baxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           },
           "bgcolor": "#E5ECF6",
           "caxis": {
            "gridcolor": "white",
            "linecolor": "white",
            "ticks": ""
           }
          },
          "title": {
           "x": 0.05
          },
          "xaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          },
          "yaxis": {
           "automargin": true,
           "gridcolor": "white",
           "linecolor": "white",
           "ticks": "",
           "title": {
            "standoff": 15
           },
           "zerolinecolor": "white",
           "zerolinewidth": 2
          }
         }
        },
        "title": {
         "text": "Connectivity Pre-2000 vs. Post-2000"
        },
        "xaxis": {
         "anchor": "y",
         "domain": [
          0,
          1
         ],
         "nticks": 20,
         "range": [
          -7.5,
          0.5
         ],
         "title": {
          "text": "Connectivity"
         }
        },
        "yaxis": {
         "anchor": "x",
         "domain": [
          0,
          1
         ],
         "title": {
          "text": "Count"
         },
         "type": "log"
        }
       }
      },
      "text/html": [
       "<div>                            <div id=\"7959d97e-0b64-4df8-a59d-fa579c8c4f98\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>            <script type=\"text/javascript\">                require([\"plotly\"], function(Plotly) {                    window.PLOTLYENV=window.PLOTLYENV || {};                                    if (document.getElementById(\"7959d97e-0b64-4df8-a59d-fa579c8c4f98\")) {                    Plotly.newPlot(                        \"7959d97e-0b64-4df8-a59d-fa579c8c4f98\",                        [{\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"hovertemplate\": \"series=pre-2000 mean: 0.001<br>data=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"pre-2000 mean: 0.001\", \"marker\": {\"color\": \"#636efa\", \"opacity\": 0.5}, \"name\": \"pre-2000 mean: 0.001\", \"nbinsx\": 100, \"offsetgroup\": \"pre-2000 mean: 0.001\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [-7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658602779715658, -2.966610986681934, -7.0, -7.0, -3.6050894618815805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731335458395129, -7.0, -7.0, -7.0, -7.0, -7.0, -2.513217600067939, -4.558408539791075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335838869579954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.002166061756508, -7.0, -7.0, -3.073351702386901, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5504729571065634, -7.0, -7.0, -7.0, -7.0, -3.298197867109815, -7.0, -7.0, -7.0, -3.740546896566616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.437750562820388, -7.0, -2.8808135922807914, -7.0, -7.0, -7.0, -3.6151870003574307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3240765797394864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5224442335063197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5137501500818233, -4.096910013008056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.373187949912719, -3.4072208929273966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.959004679486049, -7.0, -7.0, -7.0, -2.632457292184724, -7.0, -7.0, -7.0, -7.0, -2.6522463410033232, -7.0, -7.0, -7.0, -7.0, -3.8248739727439425, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3384564936046046, -2.1931245983544616, -3.214843848047698, -7.0, -7.0, -7.0, -7.0, -3.078642684050268, -7.0, -7.0, -2.7075701760979367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.824451270036613, -7.0, -7.0, -7.0, -3.914660430589222, -7.0, -3.318272080211627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149354616033284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1740598077250253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.496749807394558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.330413773349191, -2.7188337183038622, -7.0, -7.0, -7.0, -4.305480348653206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.711807229041191, -7.0, -7.0, -7.0, -7.0, -4.495828686511949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.690196080028514, -7.0, -3.9498289589353135, -7.0, -5.131964935456146, -7.0, -2.4349678884278125, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6314437690131722, -7.0, -7.0, -7.0, -7.0, -7.0, -2.485011214578573, -7.0, -7.0, -7.0, -7.0, -2.334453751150931, -3.3643633546157306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732851940001292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153021743626138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7351995484223135, -3.968646361965884, -3.603144372620182, -3.428701599623054, -7.0, -7.0, -7.0, -3.94019263553191, -3.300885206703846, -2.890700397698875, -4.067405658437824, -3.836672171482981, -3.094994900944612, -7.0, -7.0, -7.0, -7.0, -3.4818724103106633, -7.0, -7.0, -7.0, -3.121830095896224, -4.076444730438234, -7.0, -7.0, -7.0, -7.0, -4.309747240843205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8538806501245424, -7.0, -7.0, -3.325169853067657, -4.261607787677791, -7.0, -4.331619598814896, -7.0, -7.0, -3.116939646550756, -7.0, -2.5490032620257876, -7.0, -7.0, -7.0, -7.0, -3.9872639541222354, -7.0, -3.0425755124401905, -7.0, -7.0, -3.9873086737311825, -7.0, -2.571708831808688, -7.0, -7.0, -7.0, -4.326489475673702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.468184808873887, -4.640431743683348, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7041505168397992, -4.177889851651956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6766936096248664, -7.0, -7.0, -7.0, -3.593618308129536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.722798396870905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.149126699742614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.450403086155366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.399962001930988, -7.0, -7.0, -7.0, -7.0, -2.214843848047698, -7.0, -4.55735077960453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0863598306747484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517301488634157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.593286067020457, -7.0, -4.7356707439453665, -7.0, -2.921166050637739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5575072019056577, -2.403120521175818, -7.0, -7.0, -7.0, -4.426316028957644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.192437349923709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0863598306747484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.832508912706236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6020599913279623, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9807757739626215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5327543789924976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.114610984232173, -7.0, -7.0, -7.0, -7.0, -7.0, -2.756636108245848, -1.9614210940664483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7122286696195355, -2.171726453653231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5327543789924976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9455178220778397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9956351945975501, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.61655952887783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.089993373706118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.000434077479319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.97919770198058, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.60336092434838, -4.5616141210401855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.682190218984122, -7.0, -7.0, -7.0, -7.0, -7.0, -2.979548374704095, -2.45484486000851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.660865478003869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.466882442438441, -7.0, -7.0, -7.0, -2.8581360017148696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5800121125294244, -7.0, -3.68761812957177, -7.0, -7.0, -7.0, -2.423245873936808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.381714192303751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5877109650189114, -3.2092468487533736, -7.0, -7.0, -3.5837653682849995, -7.0, -2.7505083948513462, -3.7080808104682315, -7.0, -7.0, -7.0, -3.715501945293284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008834287045376, -7.0, -7.0, -7.0, -7.0, -7.0, -2.846337112129805, -7.0, -7.0, -2.5921767573958667, -2.9273703630390235, -7.0, -7.0, -7.0, -7.0, -3.845315132986487, -7.0, -2.655138434811382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.876927608974731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.568201724066995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080601236508595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0718820073061255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.214658438879918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.516905391125257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.496929648073215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9637878273455553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9819997141298784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.819214799882384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.309268104477122, -7.0, -7.0, -4.277792518931442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274342616116883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3364597338485296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603025223127586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779564026171181, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.787460474518415, -7.0, -3.404234866653423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6202401898458314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.575932206504239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7271751242414615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.294466226161593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.037426497940624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9400181550076634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.731959248048951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.609615749953064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151584339359897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505014240084107, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626401965060686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639327085896673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779592884145819, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7061201097027037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30941722577814, -7.0, -7.0, -4.277952847038809, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14569352390422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.649983543645145, -7.0, -7.0, -7.0, -7.0, -2.9935464435376407, -7.0, -7.0, -2.6665179805548807, -7.0, -7.0, -7.0, -3.8950355974523228, -3.575534218319864, -7.0, -7.0, -4.57610513115158, -7.0, -2.167317334748176, -7.0, -7.0, -7.0, -7.0, -4.5574350139981465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334212409393176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8318697742805017, -7.0, -7.0, -7.0, -3.517156294823795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.792391689498254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.598790506763115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9570802596579, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6254839394069043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426372980809529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669660832034381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149105133899851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304608994731877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7151673578484576, -7.0, -7.0, -7.0, -5.097628609835998, -7.0, -7.0, -7.0, -7.0, -7.0, -2.747411807886423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -3.9458623244896174, -3.0681858617461617, -7.0, -7.0, -7.0, -4.2422680448276875, -7.0, -7.0, -2.640481436970422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.348888723071438, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0641458839444216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7159198174335795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979229593022155, -5.17205387889541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9043800949900676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4653828514484184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.337459261290656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779701084475718, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.909556029241175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8506462351830666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.649983543645145, -7.0, -4.658402562724309, -7.0, -7.0, -7.0, -2.4538641419058598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8983411657275093, -7.0, -7.0, -7.0, -3.9231576348444315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.558156353686574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7000110623221123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1702617153949575, -7.0, -7.0, -3.1025524356630036, -2.6757783416740852, -7.0, -7.0, -7.0, -7.0, -7.0, -2.269512944217916, -1.6842467475153124, -7.0, -3.3197304943302246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8109042806687006, -7.0, -7.0, -2.6757783416740852, -7.0, -4.05865374157237, -7.0, -7.0, -7.0, -2.0521165505499983, -2.1182174713718545, -7.0, -7.0, -3.795080179420615, -2.2304489213782737, -7.0, -7.0, -4.736205211208257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.403635189790548, -2.2975079898311006, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.771954748963949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.12579833129549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8529676910288186, -7.0, -7.0, -3.439472017303169, -2.2741578492636796, -7.0, -7.0, -7.0, -2.8363241157067516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3192548157701802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4221519325979415, -7.0, -7.0, -3.1152775913959014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1142772965615864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1271047983648077, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7466341989375787, -2.791690649020118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0791812460476247, -7.0, -7.0, -7.0, -4.544068044350276, -2.9827233876685453, -7.0, -2.3935752032695876, -7.0, -2.620656479819621, -3.118264726089479, -7.0, -7.0, -7.0, -7.0, -2.77232170672292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7326831930105575, -7.0, -7.0, -7.0, -7.0, -4.5009770535891995, -7.0, -7.0, -7.0, -4.651268319816693, -7.0, -4.607637281414817, -3.899382705533265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.448860845607441, -7.0, -4.703600863886312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3263358609287517, -4.570531265142131, -7.0, -3.426998958756537, -2.786751422145561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6957442751973235, -7.0, -3.7209031708134575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.051422666089034, -4.502363382364717, -5.172229183784123, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464578960565791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.531478917042255, -3.281433803271223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9863237770507656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080954608767231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7034633418832934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658602779715658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658402562724309, -7.0, -4.364044179182894, -7.0, -7.0, -3.35049470648729, -3.263697423853724, -4.658440706411126, -4.661500335378259, -7.0, -4.362718030694413, -7.0, -3.1129318090463487, -3.412593163181993, -7.0, -3.24940533901592, -2.1417289398469945, -7.0, -3.88024177589548, -4.6576389846160815, -3.659021982916067, -4.357668093043634, -4.35837273025802, -2.3413646240800943, -4.658802904446173, -7.0, -4.357639502542187, -4.3582395081717715, -4.183516585741525, -4.6576103243042395, -4.659317087843722, -4.657524332018719, -4.193829290866235, -7.0, -2.611723308007342, -4.6576389846160815, -3.881935972915227, -7.0, -7.0, -4.658326265298826, -7.0, -7.0, -7.0, -4.056209042104069, -3.2541016739018396, -2.4131607314521517, -2.7121424991293415, -7.0, -3.667340862430717, -7.0, -4.658078206053737, -4.658202253387015, -7.0, -3.9627196609848174, -3.9675573359128724, -4.658602779715658, -7.0, -7.0, -3.2852157604593244, -4.6576007704466384, -7.0, -7.0, -7.0, -3.2943100431280117, -3.8167146455230045, -3.6577631574494944, -7.0, -2.850491311089423, -7.0, -3.8810421081934057, -7.0, -7.0, -7.0, -7.0, -4.18089014193745, -7.0, -3.3601577647473424, -3.8143332281816082, -3.2651387047066582, -7.0, -3.405422255930527, -4.361482295825142, -2.5353220082369856, -4.058909780686973, -4.357200878999709, -7.0, -7.0, -7.0, -7.0, -4.35723903776805, -7.0, -7.0, -3.6758974356443237, -7.0, -7.0, -4.65748610775906, -3.1055196464203245, -4.6576007704466384, -4.3568000093778245, -4.65909815822552, -4.658059118703411, -3.3835697189547274, -4.658068662483436, -7.0, -3.4054317419673734, -4.3589812256253495, -2.9403708783959486, -3.4279154943087975, -4.358325155632681, -4.658240414670103, -3.882619393144054, -3.9662919491725086, -4.658049574713654, -3.129582486614012, -3.0370354042411027, -7.0, -7.0, -4.3587341271980105, -2.9153823903389724, -3.277695147981495, -3.5508865888362537, -3.387474128991608, -3.816042340921997, -7.0, -4.357744325180375, -4.65955492971097, -7.0, -7.0, -2.738892615890152, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5852263815565872, -3.533753906434624, -3.123815357539862, -3.9638161499751687, -7.0, -3.087722277824171, -4.658135463071869, -4.356752262147557, -3.5820633629117085, -3.7763833355374703, -4.188103149551257, -7.0, -4.357105467407888, -4.181004666040053, -2.470993581501898, -7.0, -7.0, -7.0, -7.0, -4.356637647372692, -7.0, -4.187059861038297, -7.0, -3.815378484965918, -7.0, -3.883547879268044, -4.056838178206314, -4.357353493960548, -2.1291708907423548, -4.657944576981328, -7.0, -7.0, -4.658316727178102, -4.657935030474059, -4.658393026279124, -7.0, -3.127049234748905, -7.0, -3.464365331981961, -7.0, -3.6644163094134004, -1.8363677743629234, -3.9592608703276713, -3.8832922699131758, -3.815957044839122, -3.758684849882441, -4.18587254245639, -3.7626504349355674, -4.6603151495574515, -7.0, -4.183269843682805, -4.658945794243111, -3.7553507194191824, -3.627356544861648, -7.0, -4.657820456015697, -7.0, -3.104747167896156, -7.0, -3.31367468753116, -7.0, -3.709166275871844, -7.0, -4.658316727178102, -7.0, -4.657849102464169, -4.659925703127408, -7.0, -7.0, -7.0, -3.6747325778893765, -3.881403679327327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.707806655538521, -3.320788091434305, -2.952693805985888, -2.7933043927733774, -7.0, -7.0, -7.0, -3.9630129593770773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657772707735521, -7.0, -7.0, -3.7049222912234017, -2.3313316316749564, -7.0, -7.0, -7.0, -4.657992306370206, -4.658412098960092, -4.05641885542015, -7.0, -3.8812514755383583, -3.7115916680435577, -3.657982760912062, -4.201415333350953, -2.9974328623333713, -7.0, -7.0, -7.0, -3.2585636110560623, -3.816288657767513, -3.3575017219202703, -4.183241364422366, -2.5205177076292187, -7.0, -7.0, -7.0, -3.3711558562912662, -3.7096844540272005, -3.7618151176130694, -3.1917676303072247, -4.367775101747835, -7.0, -7.0, -7.0, -4.357868173870295, -3.2819324789996647, -3.8824486388840995, -7.0, -4.057542491129928, -7.0, -7.0, -4.658011396657113, -3.8139239429018104, -4.181195472458439, -2.963833215283299, -3.5494654330043325, -4.183516585741525, -4.181843587944773, -2.3842957067946604, -4.659136240870398, -7.0, -3.215390216393895, -7.0, -4.180632352233786, -3.8155872347755277, -4.181252698040852, -2.8154842088373986, -3.5818264448534065, -3.712528112078682, -3.756778694670736, -3.7616459815267613, -4.659250468772661, -2.003901031014158, -3.461095033798302, -7.0, -7.0, -7.0, -3.82187832849502, -3.708005198806338, -7.0, -4.658240414670103, -3.7571776877918075, -7.0, -4.657552998005808, -4.657533887557986, -4.659516883764218, -4.3576585630856135, -4.65786819904679, -3.7065850372590567, -7.0, -3.052252948311862, -4.076813326169952, -2.512971799832511, -4.182547792837783, -3.1609466070925256, -2.454763218034042, -3.5862308719545637, -7.0, -7.0, -4.357620441162185, -3.302312102385248, -3.1752671276454327, -3.3864895783427094, -7.0, -4.657572107612741, -7.0, -3.620561903494791, -4.357048210389756, -4.0572285467366145, -4.658269033432031, -3.552331205374715, -4.357324882740209, -2.6894095629680157, -7.0, -7.0, -2.420536096425766, -2.68940369736512, -2.8795805260758676, -4.661377226639747, -2.377081515976082, -3.3737760513703203, -3.0772727117618524, -2.5610268074521003, -2.3127610850765197, -7.0, -3.104262021903205, -2.6859997629642085, -2.4235455007027262, -2.279007948555511, -2.7364151785299615, -2.949457775152798, -2.4883689390699706, -2.5425202730917387, -2.9016320265580866, -3.0818238136507157, -3.102605194126567, -2.307519041408115, -2.501482514820539, -2.3653972637477167, -3.2118982321165546, -2.679633008202028, -2.640955609396501, -2.562619949426298, -3.5904981702001146, -2.5560793781615727, -2.7411938214377605, -2.245871057494562, -2.6868945016279873, -2.7745241924673554, -3.2059314148945273, -2.733818089486326, -2.9059345858229104, -2.837491808816075, -2.731320101718905, -3.456549814132931, -4.365572214876125, -2.6844440291990255, -1.629708726347577, -3.148028219473996, -7.0, -3.1718187977917682, -7.0, -2.7009648094994096, -3.2474483777449596, -3.7165875776756923, -3.08308309635478, -2.840600504023395, -4.701619786477204, -7.0, -3.5900182997846484, -4.669084326621116, -7.0, -7.0, -3.6682998808693528, -3.773347541980823, -7.0, -1.7038472506330558, -2.303370621853087, -2.230840899270554, -4.658860066006634, -4.196489375975232, -7.0, -2.975229752334916, -3.419329537729261, -3.2361608677864693, -2.9756968646553625, -3.355045196760146, -7.0, -2.925242148353079, -3.6638971457345137, -3.344487131834023, -4.067925949681522, -4.219121520999956, -4.085575969718504, -2.290903952080366, -3.504271453579076, -7.0, -2.800421747228451, -2.9435742893274437, -7.0, -2.325655782561224, -4.366133331018571, -4.196470959229819, -3.6130574113800384, -3.0905950403567006, -7.0, -4.357677622792537, -7.0, -4.661481397843616, -2.830901668228616, -2.8417632701717763, -4.659193358577049, -3.7635309391043776, -4.058644255742717, -2.7172405854118513, -2.6819391031748543, -3.9671359498564263, -4.358819677179949, -4.357324882740209, -2.9166237274738633, -7.0, -2.3003855638904804, -3.6646701755809334, -4.061235654721493, -3.4436402707776104, -2.6069915285261684, -3.6710802327388494, -3.036801229045618, -7.0, -3.8843138059182074, -2.7959341597745686, -4.187370289770912, -4.188937853551512, -4.661916752355482, -4.659764122861992, -4.658049574713654, -3.062347957827833, -3.8154544055975217, -7.0, -2.6926601937121126, -1.923894846387566, -2.158818812869884, -4.356905034810079, -3.2790278056227207, -4.0588528961494434, -3.8904210188009145, -4.358420299672387, -7.0, -7.0, -3.3372958595898874, -7.0, -7.0, -3.5457134697726813, -7.0, -2.8873835596662767, -3.759809439370634, -4.071605884917739, -7.0, -7.0, -4.658993413729996, -3.8877672897973903, -2.7328773476313475, -4.660372112436349, -4.658621843187422, -7.0, -3.3673647967677733, -3.004894321731049, -4.663748026358395, -4.662880549738856, -3.0539771977423924, -7.0, -2.025167138603114, -3.2994314973289582, -4.378061601404729, -3.8152930583882103, -4.360877297102039, -2.6824784516700206, -7.0, -2.9772144017362656, -4.66335221936459, -4.05759954755417, -3.8825909387625783, -3.769146453452604, -7.0, -4.357315345247881, -2.9131689938402077, -4.362218500326052, -7.0, -3.3606450425580268, -4.363734166777149, -3.504778859928894, -4.187389096503919, -2.660917197172924, -3.521469346698325, -3.6305573026766758, -4.193792230279798, -7.0, -7.0, -2.696383695123476, -4.07683152032504, -4.357944370897822, -3.718667735316211, -2.2266800247178287, -3.3060145500599503, -2.5394058622888096, -2.706812575414054, -3.477044607753807, -4.357649032918467, -4.362765126555426, -7.0, -7.0, -3.7576522021542784, -4.364119300390762, -2.949136910740208, -7.0, -4.056657156668353, -7.0, -2.8040954442382904, -7.0, -3.9624072223037277, -7.0, -7.0, -7.0, -4.6592409509282415, -7.0, -3.5653845905590975, -3.77244090126548, -4.662635078938201, -4.357725268400632, -4.186881028636386, -4.6576103243042395, -7.0, -7.0, -4.359038228379384, -4.659716587811443, -4.3591522114468955, -3.084584995993608, -3.986709048064589, -3.837326844932794, -4.65900293700084, -7.0, -3.4459245638311797, -7.0, -7.0, -2.705795856951702, -7.0, -7.0, -3.970644363685447, -3.9042375403597336, -4.36369657447383, -4.657562552914381, -7.0, -4.359465510718378, -7.0, -3.8435531067748108, -7.0, -4.6601632120103025, -7.0, -2.966610986681934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.364044179182894, -7.0, -7.0, -7.0, -2.8943160626844384, -2.9965116721541785, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0317113547545933, -7.0, -7.0, -7.0, -3.48333049525732, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.089398727914103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.202741238033296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0577421558287528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.971739590887778, -7.0, -7.0, -7.0, -7.0, -7.0, -3.452553063228925, -7.0, -7.0, -7.0, -7.0, -3.1256438923573917, -7.0, -7.0, -3.1344958558346736, -2.933461978575007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7936351963804653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9122220565324155, -1.9907510041972791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295347148333618, -2.9150038821546924, -7.0, -7.0, -7.0, -4.440759570913159, -7.0, -7.0, -3.2477278329097232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.733277533932582, -7.0, -2.5634810853944106, -3.1383026981662816, -7.0, -3.3581252852766488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9439888750737717, -7.0, -3.621003083574573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5292538542887826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4166959692478005, -7.0, -7.0, -4.375681899659375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.702645906884803, -7.0, -7.0, -7.0, -2.1729391872871573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.373279893277496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.713448539662225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6403394410620447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.74020473550745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8756399370041685, -3.205745540942662, -7.0, -7.0, -7.0, -2.928907690243953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.613841821876069, -2.99211148778695, -7.0, -3.323870606540509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.844891183862738, -3.2187979981117376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.13640344813399, -7.0, -3.8319113468728965, -7.0, -7.0, -3.7744804688604328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.738328593727102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.789411473551423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5880923482183755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.989583289311005, -7.0, -3.97657921864011, -4.316892503761295, -3.782114147479071, -7.0, -4.074816440645175, -7.0, -3.346304064660407, -7.0, -7.0, -7.0, -4.158935141829918, -7.0, -7.0, -3.29827071697695, -7.0, -7.0, -3.570426178358973, -7.0, -7.0, -7.0, -4.0648509228019005, -3.7784542460202473, -4.87325373741082, -7.0, -7.0, -7.0, -7.0, -7.0, -3.547040829274825, -7.0, -7.0, -7.0, -3.711807229041191, -7.0, -7.0, -7.0, -3.4025193025742495, -3.6108730003800513, -7.0, -3.517855418930029, -7.0, -3.8334021292318585, -7.0, -3.2177470732627937, -4.639556209850188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8129133566428557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334051440346892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.278296208091274, -7.0, -7.0, -7.0, -3.3119656603683665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216231899472033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0170333392987803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.250200359678991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.889021422095225, -7.0, -7.0, -7.0, -7.0, -4.067470728941126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.919601023784111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.368100851709351, -7.0, -7.0, -7.0, -4.543223451486436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3473300153169503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.569736645661217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.13494171073536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351177653684284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6314437690131722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9833104857941155, -7.0, -7.0, -7.0, -3.7694511794020378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6989700043360187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8129133566428557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576076315158132, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3931363002692168, -7.0, -7.0, -3.040602340114073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.769561935848059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5599066250361124, -2.4065401804339555, -7.0, -7.0, -7.0, -4.125269759964129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1924559385119755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5390760987927767, -7.0, -7.0, -2.7955324427101544, -7.0, -7.0, -7.0, -3.910090545594068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1152775913959014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.79657433321043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.131827101333347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.950364854376123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3479151865016914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.569771733076458, -7.0, -7.0, -7.0, -7.0, -7.0, -4.541254649786259, -7.0, -7.0, -7.0, -4.135037191549618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6050894618815805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9935464435376407, -2.4538641419058598, -3.35049470648729, -2.8943160626844384, -7.0, -7.0, -7.0, -2.674699080477742, -7.0, -7.0, -7.0, -2.8810992183890174, -7.0, -1.935257176946508, -3.2802368096096894, -7.0, -3.3697722885969625, -2.695756933177721, -7.0, -7.0, -7.0, -3.611723308007342, -3.6063813651106047, -3.313023110323238, -3.397211955499955, -7.0, -7.0, -7.0, -3.6127838567197355, -7.0, -7.0, -3.1355566635968395, -3.592731766393962, -3.7280289544205187, -7.0, -2.540020759009994, -7.0, -3.321391278311689, -3.620864475265121, -3.596047007545439, -7.0, -2.999130541287371, -7.0, -7.0, -7.0, -2.8690640060845967, -2.944630701856278, -7.0, -3.605628222007619, -3.696531119969607, -3.3067466080777117, -3.5991185650553628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7782115648732764, -7.0, -7.0, -7.0, -7.0, -3.15904054763018, -3.641275757231913, -7.0, -2.6940198963087196, -2.8148273565661532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6372895476781744, -7.0, -3.055187138555754, -1.6554254840764648, -7.0, -3.6475785542124552, -1.5563274251256347, -2.4245754000580986, -2.7546758991321316, -3.5935075893317654, -7.0, -3.1157214284114376, -3.121887985103681, -2.6455314297070633, -2.553883026643874, -3.5931752634781025, -2.185363193491215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5990092398233435, -7.0, -7.0, -3.62096843564429, -3.4049761783177557, -7.0, -7.0, -3.6009728956867484, -3.328787200354535, -1.9589478044569444, -7.0, -3.1488493429592204, -1.589134592627297, -3.5997739391463885, -7.0, -7.0, -4.288405740175751, -7.0, -3.673020907128896, -3.68761812957177, -7.0, -3.6045500325712614, -7.0, -7.0, -7.0, -7.0, -3.634275694625944, -7.0, -7.0, -7.0, -7.0, -7.0, -2.782626166498415, -3.324830980134619, -1.4192204025471138, -2.9512403503243405, -2.6050894618815805, -2.9969929818907057, -7.0, -7.0, -7.0, -3.7983052820219765, -3.3738311450738303, -7.0, -7.0, -7.0, -2.9380469252711707, -7.0, -7.0, -7.0, -3.32376758329678, -7.0, -7.0, -7.0, -3.635081436010873, -7.0, -7.0, -7.0, -7.0, -7.0, -2.864541505555368, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6027109449575576, -3.5959369062691735, -7.0, -7.0, -3.5616180933850865, -7.0, -2.9686697017203922, -2.7837142054247326, -7.0, -7.0, -7.0, -7.0, -3.6527296960692475, -2.09443434895989, -3.6240757311456826, -7.0, -7.0, -7.0, -7.0, -2.930694387664535, -7.0, -7.0, -7.0, -2.6001012556913907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6585837154070626, -3.5438818782481594, -2.931969120319917, -7.0, -7.0, -7.0, -3.34143452457814, -7.0, -3.5949447366950835, -7.0, -3.2979792441593623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.599992177584098, -2.4653828514484184, -3.4215216663369774, -7.0, -7.0, -7.0, -3.452553063228925, -7.0, -2.9344984512435675, -7.0, -3.6429712311818627, -7.0, -7.0, -7.0, -3.895753942073728, -1.2235402589870163, -2.7684530982706304, -3.111598524880394, -2.929674317948588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.315655525231531, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1075491297446862, -3.0562376589802276, -7.0, -7.0, -2.76315203827082, -3.6110857334148725, -7.0, -3.1288606460924466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.369957607346053, -7.0, -2.433722385233559, -2.8311381767490547, -7.0, -7.0, -7.0, -1.7866968316757637, -3.6462076122066853, -7.0, -7.0, -3.6250036010148636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.330007700872759, -3.000650953629595, -2.72191361402292, -2.677536763713164, -3.6192767787643367, -7.0, -7.0, -3.4747204434733674, -7.0, -7.0, -3.3328422669943514, -7.0, -7.0, -3.8086835091289695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6869935662646784, -7.0, -7.0, -7.0, -7.0, -4.655464993695882, -4.775479375409764, -7.0, -7.0, -3.639699884317628, -7.0, -3.9408649759667216, -2.900882755786381, -3.917077681247535, -7.0, -7.0, -3.7127443776037308, -4.389493897263608, -4.128341100382978, -7.0, -4.355987591676388, -3.97283514522388, -7.0, -4.134081437462512, -4.345608950540594, -7.0, -3.835263241125063, -4.047274867384179, -3.3332456989619628, -4.191618663369469, -7.0, -4.360952968049115, -3.503804297090878, -7.0, -3.1217359506263405, -7.0, -3.507357589416977, -7.0, -4.273279131626577, -3.9974737588029803, -4.322177931384976, -7.0, -3.7170210718966303, -4.450403086155366, -2.765566961445306, -2.8419848045901137, -3.093676328665223, -3.0148856148402015, -3.359408564022824, -2.799242058812066, -2.9986661172549796, -2.4924810101288766, -1.7228205553179063, -3.14515199291356, -3.7279477095447966, -3.888319928675217, -2.736869386655646, -2.7956814373306003, -7.0, -2.7255273008700516, -2.070424498052958, -7.0, -2.6278137478108206, -3.979001748474721, -3.7746629225378223, -7.0, -2.900797319812092, -2.058551657819114, -3.7206582057950017, -7.0, -7.0, -7.0, -3.4185839684998247, -7.0, -3.0844714150301855, -3.1099158630237933, -4.180011119057717, -7.0, -3.6154239528859438, -3.0610438792188233, -3.5092793478189916, -3.7196626830180466, -2.63085590953734, -2.4733653019080357, -3.4787107555127594, -2.034739066153002, -7.0, -2.816033430174598, -3.3747160071678457, -3.3757550347552243, -3.16367373995895, -7.0, -3.449478399187365, -2.886547123391106, -3.668634368917545, -7.0, -7.0, -7.0, -7.0, -7.0, -2.953308577080214, -7.0, -3.2119210843085093, -7.0, -7.0, -3.6530838148614064, -7.0, -7.0, -7.0, -3.9893608137762473, -7.0, -4.66468897458024, -3.369679599559816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.618048096712093, -7.0, -7.0, -7.0, -7.0, -4.520837112780868, -3.9774949690730366, -3.7697612262993307, -7.0, -7.0, -3.631139250256811, -7.0, -7.0, -7.0, -7.0, -3.8020892578817325, -7.0, -7.0, -7.0, -7.0, -3.46453922366873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.751901678305574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.629715332647132, -7.0, -7.0, -7.0, -3.5859680500071183, -7.0, -7.0, -3.953373050726696, -7.0, -7.0, -7.0, -3.957607287060095, -3.9207492612757084, -7.0, -7.0, -7.0, -7.0, -4.349083168779591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3591522114468955, -7.0, -7.0, -7.0, -7.0, -7.0, -3.630122642859312, -7.0, -7.0, -7.0, -3.3057811512549824, -7.0, -3.775270548461582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9223101632143957, -7.0, -3.82013575187043, -7.0, -7.0, -7.0, -7.0, -7.0, -4.356293621448165, -7.0, -7.0, -3.716504163773217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6202401898458314, -7.0, -7.0, -3.263697423853724, -2.9965116721541785, -7.0, -7.0, -2.674699080477742, -7.0, -3.328685336983151, -3.360309344342059, -3.637189422148762, -7.0, -3.621384028481653, -2.3107299261343788, -3.0510973704399538, -7.0, -2.9942291408176986, -2.594892570014196, -7.0, -7.0, -3.621280167550415, -7.0, -7.0, -3.640282629696681, -3.172484007140436, -3.3325394468901104, -7.0, -7.0, -3.6388884247050757, -3.6532125137753435, -7.0, -7.0, -7.0, -7.0, -3.625209525381881, -2.7094904451648456, -7.0, -7.0, -3.043853283705882, -3.6231458746379395, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1619342799296826, -2.6337088621630316, -7.0, -7.0, -3.4169731726030363, -3.6343764940883676, -7.0, -7.0, -7.0, -3.6641717053619307, -3.408833321776418, -7.0, -7.0, -7.0, -3.212661014432471, -7.0, -7.0, -7.0, -7.0, -3.4790711958039306, -3.364550995353972, -7.0, -3.3726358805817207, -2.562356601630755, -3.6236627073562047, -3.6388884247050757, -7.0, -7.0, -7.0, -7.0, -3.625723909525756, -7.0, -7.0, -7.0, -3.6814221557210085, -3.1620663052160913, -3.3554515201265174, -7.0, -2.380376790839503, -3.1792644643390253, -7.0, -3.319522449065454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4877744973806672, -7.0, -7.0, -7.0, -3.370050237074868, -7.0, -7.0, -7.0, -3.625826713285711, -3.371806458507416, -3.6259294927162946, -7.0, -7.0, -7.0, -2.21221594798249, -3.632356046239073, -3.63978521298682, -7.0, -7.0, -7.0, -7.0, -2.7831886910752575, -2.122229202028619, -7.0, -7.0, -7.0, -3.113579431846841, -7.0, -3.394626764272209, -7.0, -7.0, -7.0, -7.0, -2.9419087743655994, -7.0, -7.0, -2.640944966994348, -7.0, -7.0, -7.0, -3.620656479819621, -7.0, -3.2434845220064585, -3.341895943969397, -3.2214142378423385, -3.0723418215173193, -3.1559430179718366, -3.4064124279747596, -3.6266482684740105, -3.3218054838575393, -3.6610550848533787, -2.254534650373201, -3.6977522741677546, -7.0, -7.0, -7.0, -3.2007684447831717, -7.0, -7.0, -7.0, -3.6504046698680317, -3.6217992240026677, -7.0, -3.085379783217932, -7.0, -7.0, -3.6417714706539592, -3.6644539285811577, -3.6353832040474985, -7.0, -2.5477747053878224, -7.0, -7.0, -7.0, -7.0, -7.0, -3.629409599102719, -7.0, -3.0549193271238146, -7.0, -3.349588320562463, -7.0, -3.691435152144062, -2.6475373859320346, -7.0, -7.0, -3.6582022533870147, -7.0, -3.073993133323909, -2.470168274303783, -7.0, -3.337459261290656, -3.6506959797606107, -7.0, -3.6313422864839326, -3.4295100408131383, -7.0, -7.0, -7.0, -3.3099139273065608, -7.0, -2.385606273598312, -7.0, -2.726002327603283, -3.3271545124094315, -3.15106325335375, -7.0, -3.0208789778835277, -7.0, -7.0, -7.0, -7.0, -7.0, -3.642662331442035, -7.0, -3.622006673006805, -7.0, -7.0, -7.0, -3.3292961591399655, -7.0, -7.0, -3.6684791029325856, -3.682145076373832, -3.3831568450325724, -3.027277639180358, -3.621072371143626, -7.0, -3.623766000133931, -2.46014581749175, -7.0, -3.6221103603612193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.639187559935754, -3.1360543495510553, -7.0, -7.0, -7.0, -7.0, -3.629613445378183, -7.0, -7.0, -7.0, -2.925398047854587, -7.0, -2.962030915578165, -3.4419306745501714, -7.0, -7.0, -7.0, -3.772761647144032, -7.0, -2.2442276257329077, -7.0, -2.7554691280706067, -7.0, -7.0, -7.0, -1.9311187105921872, -3.2091574233475386, -3.0930713063760633, -2.5867480056844685, -3.7297315952870354, -7.0, -7.0, -7.0, -7.0, -3.3709754493589705, -3.3521825181113627, -7.0, -3.1652443261253107, -7.0, -7.0, -3.625312450961674, -2.9375178920173464, -7.0, -2.520418023353549, -2.400401640330525, -2.9534697432534016, -7.0, -3.1158062279831116, -3.6372895476781744, -7.0, -3.031094132296288, -3.62283547952152, -7.0, -3.176958980586908, -7.0, -3.7229628089424898, -7.0, -7.0, -7.0, -2.4121509531021377, -7.0, -2.6642239827597556, -3.097344090487375, -7.0, -7.0, -7.0, -2.935423287388426, -3.0678145111618402, -7.0, -7.0, -3.349180358996378, -7.0, -7.0, -7.0, -3.641275757231913, -3.6327608884794387, -3.623766000133931, -7.0, -7.0, -2.5786055058446684, -3.2081052932151874, -3.349136902644719, -3.6432552250247716, -3.710709565724337, -3.011158499816333, -2.8549130223078554, -7.0, -3.658964842664435, -3.3311234878466514, -3.388988785124714, -3.3481100684802376, -3.0010410579860936, -7.0, -7.0, -7.0, -3.6679196853173615, -7.0, -7.0, -7.0, -3.7091002815511667, -7.0, -2.8478467484424077, -7.0, -7.0, -3.6577249542051082, -3.9991015293309222, -3.8758519242862692, -7.0, -3.4883109423296537, -7.0, -2.9109637921655658, -2.770431183622876, -3.0391146831688234, -7.0, -7.0, -3.203147997054803, -3.914545886349628, -3.714903366650505, -3.3789275745695604, -3.661699129651687, -3.4122161068666275, -3.785756799962643, -4.142107771731307, -3.950092117510449, -3.4767229688690007, -3.51266438833237, -3.153433737087157, -3.3206955935760587, -3.499467130989543, -7.0, -3.622816660564442, -3.251759854528801, -7.0, -3.305407105902434, -4.315130317183602, -3.4197492856943774, -3.8495217813829723, -3.6769221255374807, -4.008429826797229, -3.850196802968261, -7.0, -4.119272389514709, -3.675992076790947, -3.163128231581581, -3.7102020146553847, -3.4111144185509046, -3.2676409823459154, -2.972804322336578, -3.368565785360332, -3.3374307352647072, -7.0, -2.030522403689804, -2.9596483728278686, -3.048519487922654, -2.161200018291969, -3.0730336902474913, -2.9546283775072713, -7.0, -2.8544461895402313, -3.7319914490189294, -7.0, -3.548573662418466, -3.50745106090197, -3.315410507181645, -7.0, -2.7999474153427037, -2.872611870862621, -3.5402412871049003, -7.0, -2.923983747103962, -3.3369597851207042, -3.132676818696156, -3.937216890862705, -3.370019362693744, -2.2963360546020466, -3.8861521819707967, -7.0, -3.6285932558512592, -3.6715739245654024, -3.8822588331549723, -3.4390167283875126, -2.9697781910347425, -1.9876662649262746, -2.7051982724309926, -2.8675984177611293, -7.0, -2.6617732597751806, -3.306800181689314, -2.698013503939182, -3.3491664760112605, -7.0, -3.4686426683915115, -3.2992348258376047, -3.5514499979728753, -7.0, -7.0, -7.0, -3.66133934000604, -7.0, -3.0236955527159197, -7.0, -2.532924157916436, -7.0, -3.325720858019412, -2.7567628540462232, -3.7062055418819706, -3.343703931783211, -7.0, -3.398200507219428, -3.6510840892430116, -2.7063425737932336, -3.392609030497567, -3.378488748031808, -7.0, -3.9795028487874013, -3.750354088762708, -3.8258802989361795, -3.7061201097027037, -3.672005445022952, -3.8452841263479915, -3.6909045540549665, -3.7054360465852505, -2.5171015988546297, -3.643847310299714, -7.0, -3.2530551694438183, -7.0, -3.325515663363148, -3.8250754246136784, -3.3774792785745746, -3.127678960206914, -7.0, -3.7992026563005252, -3.3549723250189762, -3.4271614029259654, -3.640779477344857, -7.0, -3.63205216670581, -2.703622017252944, -7.0, -7.0, -3.899382705533265, -7.0, -3.3519411763536078, -7.0, -3.770557474850995, -7.0, -3.692758818154724, -7.0, -3.1020905255118367, -7.0, -7.0, -7.0, -7.0, -3.8859828113549733, -2.7366899869982735, -7.0, -3.675136504467994, -3.9359604689891663, -3.6578204560156973, -2.9805138004226635, -7.0, -3.3345207667334886, -7.0, -7.0, -4.092439911331141, -7.0, -3.6586313746095143, -7.0, -7.0, -3.353627758985543, -3.4584112014697164, -7.0, -7.0, -2.3791681219185326, -2.7745169657285493, -3.6714505542124947, -2.548153093111087, -2.9936125579388904, -3.3491479646740636, -3.691081492122968, -3.969602264848539, -3.4564672554769906, -3.7576996250877386, -3.4466924663715273, -7.0, -7.0, -3.7518177877368792, -3.8107028609471167, -7.0, -3.7652213663049805, -3.18527648256255, -7.0, -3.337026415142606, -3.4605971888976015, -3.0337364064361574, -7.0, -7.0, -7.0, -7.0, -3.655234507034294, -2.5484771632553307, -2.401528180600803, -7.0, -7.0, -7.0, -3.1118623514410926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.337725413884801, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.643353961976863, -7.0, -3.9353056902899253, -3.8585973449946924, -3.53535742366243, -7.0, -7.0, -3.793580867368156, -7.0, -7.0, -3.7589497212801803, -7.0, -7.0, -3.7371926427047373, -3.8361341494653747, -7.0, -7.0, -7.0, -7.0, -7.0, -3.878406887580996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658440706411126, -7.0, -7.0, -7.0, -7.0, -3.328685336983151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6468821035034504, -7.0, -7.0, -7.0, -2.45484486000851, -2.0663259253620376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.287801729930226, -7.0, -7.0, -7.0, -2.357934847000454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.518237482689147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.220108088040055, -7.0, -7.0, -7.0, -7.0, -7.0, -2.283531196663333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.273392460053555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.672836454171397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2479732663618064, -3.772101569277012, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7279395842212315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2384085612286544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7113853790984517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5010592622177517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6824158616773586, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6349248811067227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4163075870598827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7863964613723042, -2.3944516808262164, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9786369483844743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6148972160331345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6748611407378116, -7.0, -7.0, -7.0, -5.1319376926448035, -7.0, -7.0, -4.544117675169358, -2.201852121200103, -7.0, -7.0, -7.0, -2.924795995797912, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8618329976579449, -7.0, -7.0, -7.0, -7.0, -7.0, -2.757965097861435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431669271313745, -7.0, -7.0, -7.0, -7.0, -7.0, -4.392309959892819, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.301919388035856, -7.0, -2.7895807121644256, -7.0, -7.0, -4.2410606158912, -7.0, -3.187520720836463, -4.066773037085025, -4.137227476442907, -3.6960941599952233, -7.0, -3.243781916093795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.875369985268502, -4.377433751703389, -7.0, -7.0, -3.262213705476417, -7.0, -7.0, -7.0, -4.6407000199084365, -3.293473048156108, -7.0, -7.0, -3.648067129448935, -7.0, -7.0, -7.0, -3.0360297306565434, -7.0, -3.3089910290001643, -7.0, -7.0, -3.1121182879546594, -7.0, -7.0, -4.632497783955012, -7.0, -2.783665413935314, -3.592620821321982, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45484486000851, -2.733999286538387, -7.0, -7.0, -3.3842189645780287, -7.0, -7.0, -7.0, -3.4735599546008133, -7.0, -4.025244404149697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5910646070264993, -7.0, -7.0, -3.8258154449852038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.496929648073215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6658154279909354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.442703689915969, -2.8543060418010806, -7.0, -2.9350872111620183, -7.0, -3.1215598441875008, -7.0, -3.4202033743532962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -4.010342366139568, -7.0, -7.0, -7.0, -3.0550723824494175, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2595938788859486, -7.0, -7.0, -7.0, -7.0, -3.847510965203248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6665179805548807, -7.0, -4.661500335378259, -7.0, -7.0, -7.0, -7.0, -3.360309344342059, -7.0, -7.0, -1.7220353084047122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.464105320046255, -7.0, -7.0, -7.0, -7.0, -2.443262987458695, -7.0, -3.9599234024401224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2702128548962426, -7.0, -4.04083959468534, -7.0, -2.851869600729766, -7.0, -2.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.426185825244511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1436392352745433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.951823035315912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9237619608287004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8254261177678233, -3.697245198420693, -7.0, -3.0888445627270045, -7.0, -2.3106933123433606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0965624383741357, -7.0, -7.0, -7.0, -3.783760695743924, -7.0, -7.0, -7.0, -7.0, -2.3492775274679554, -7.0, -7.0, -7.0, -7.0, -2.8102325179950842, -7.0, -7.0, -7.0, -3.952316087981373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8723893884178207, -7.0, -7.0, -4.196074810185649, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788875115775417, -2.3879827199214656, -7.0, -7.0, -3.215373152783422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6757783416740852, -2.3961993470957363, -7.0, -7.0, -7.0, -5.150292740338675, -7.0, -7.0, -2.6702458530741238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.998259338423699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1225435240687545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3402457615679317, -7.0, -7.0, -7.0, -4.500949647254549, -7.0, -7.0, -7.0, -2.942008053022313, -7.0, -2.386320573894046, -3.229169702539101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.308745776330676, -7.0, -7.0, -7.0, -7.0, -7.0, -2.410496045616074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.797928522794656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5634810853944106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9644482079166607, -7.0, -4.588369362086652, -7.0, -7.0, -3.0031896290810205, -2.5054891384167237, -7.0, -7.0, -7.0, -3.0655797147284485, -2.6235446283772546, -2.504130905935453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3979400086720375, -7.0, -7.0, -4.654417214913714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.574320700915308, -4.308841761261316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.679945470619215, -7.0, -7.0, -3.3326404103874627, -7.0, -4.6140319822010385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1304302676581415, -7.0, -7.0, -4.635745049128339, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7831886910752575, -3.1486026548060932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.649334858712142, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6943711725332387, -7.0, -7.0, -7.0, -3.40840957846843, -7.0, -7.0, -2.803457115648414, -7.0, -7.0, -7.0, -7.0, -7.0, -3.622731965164719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7693773260761385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7597649431594515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.716003343634799, -7.0, -7.0, -2.9804578922761, -7.0, -3.0784568180532927, -2.693140460675295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275472601069419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4774106879072515, -7.0, -7.0, -2.4313637641589874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.507855871695831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.637189422148762, -7.0, -1.7220353084047122, -7.0, -7.0, -7.0, -7.0, -3.590953235187986, -7.0, -7.0, -4.2758351870121984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.559068334034537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.663700925389648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0608488730388075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.622214022966295, -4.134702916820561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.497620649781288, -7.0, -7.0, -4.728524219304322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.229169702539101, -7.0, -7.0, -7.0, -7.0, -4.670922750442565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6875289612146345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3872118003137306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0203336548935145, -7.0, -7.0, -7.0, -3.616265405281708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.607122472989352, -7.0, -7.0, -3.75564621945668, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3384564936046046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.433086262195134, -7.0, -7.0, -3.2020670448127246, -7.0, -7.0, -2.75815462196739, -7.0, -7.0, -2.6522463410033232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.574841195063384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.977494969073036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276300924570774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5633149300417255, -7.0, -4.633225990988621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.808885867359812, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.596047007545439, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9740509027928774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604092791382165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6148972160331345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.269676357629865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.458939861890326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.362718030694413, -7.0, -7.0, -7.0, -2.8810992183890174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4510184521554574, -7.0, -7.0, -7.0, -3.880636409709007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.96277171225233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9344984512435675, -7.0, -7.0, -7.0, -3.443262987458695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.842297134328065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2708728475314053, -7.0, -7.0, -7.0, -7.0, -2.8003733548913496, -7.0, -7.0, -7.0, -3.9307962629833004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1156105116742996, -7.0, -7.0, -7.0, -2.9683661870310103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9461246192171453, -7.0, -7.0, -7.0, -3.0770043267933502, -2.832508912706236, -7.0, -7.0, -2.862131379313037, -3.083860800866573, -7.0, -7.0, -7.0, -7.0, -4.0796153235269434, -7.0, -7.0, -7.0, -2.405260961594782, -7.0, -7.0, -3.279552881150386, -3.4162076611902306, -7.0, -7.0, -2.656577291396114, -7.0, -7.0, -7.0, -3.2116544005531824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9860996250551297, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7218106152125467, -7.0, -3.0232524596337114, -7.0, -7.0, -3.8264635490928014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.711526041280055, -7.0, -7.0, -7.0, -2.9885589568786157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.033447882287984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8861521819707967, -7.0, -7.0, -3.529072695212456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.989894563718773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.096860376516557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8887409606828927, -7.0, -2.8692317197309762, -2.1056993786226297, -7.0, -7.0, -4.0370125409780915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4667193716815987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2529338976558373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.28668096935493, -7.0, -7.0, -2.850033257689769, -7.0, -2.912753303671323, -7.0, -3.002166061756508, -7.0, -2.101354224998816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.010225730048655, -2.2216749970707688, -7.0, -7.0, -7.0, -7.0, -2.705007959333336, -7.0, -7.0, -7.0, -3.2216749970707688, -7.0, -7.0, -7.0, -4.1966562421307065, -3.180125875164054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0149403497929366, -7.0, -3.975615597966895, -7.0, -4.392445926608398, -7.0, -3.214843848047698, -3.9489017609702137, -7.0, -7.0, -2.422014995979464, -7.0, -2.8454081396217936, -2.9014583213961123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.456214155357989, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.436226275270583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.580468783951002, -7.0, -4.805881293844513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9293167267534956, -7.0, -7.0, -4.7884158626098525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.586508539462949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983265352566545, -1.6638671413061645, -3.6226629418839154, -4.012858306449886, -7.0, -7.0, -4.069631102620343, -3.1604685311190375, -3.16828873237199, -3.037227234582274, -3.3226327116922234, -7.0, -3.4554539687786283, -3.265211027637486, -7.0, -3.464116794444044, -2.976808337338066, -7.0, -3.5536403362313544, -7.0, -7.0, -7.0, -3.664152883958131, -3.6596717642835825, -4.696746525053621, -7.0, -7.0, -2.929418925714293, -4.13939626869514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024895960107485, -7.0, -7.0, -3.213960237403306, -7.0, -7.0, -7.0, -2.0472748673841794, -3.029586671630457, -7.0, -7.0, -4.638149675666846, -7.0, -3.378216149749878, -7.0, -4.0313680628857735, -7.0, -2.9020028913507296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.011020355516257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.646893624167745, -2.8627275283179747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.041525465650097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0288422632984635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9916468715211346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4079854213081364, -7.0, -7.0, -2.9175055095525466, -7.0, -7.0, -7.0, -7.0, -3.9883136494546534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6919651027673606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.621384028481653, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5928426831311002, -7.0, -7.0, -7.0, -4.877037144635965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4608978427565478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216086692421913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.093421685162236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.655042341331202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.12515582958053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669484242333031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.82865989653532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.49548189455384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6847556221086237, -7.0, -4.033013394664247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.447638591400498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7267272090265724, -4.045088161542816, -7.0, -4.541079767776629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.678103917207136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.439174739843469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9656719712201065, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3188977146274867, -7.0, -7.0, -7.0, -7.0, -4.779632560730201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.582404298019028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.378579576115775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8950355974523228, -3.8983411657275093, -3.1129318090463487, -3.0317113547545933, -7.0, -7.0, -1.935257176946508, -2.3107299261343788, -7.0, -7.0, -7.0, -3.4510184521554574, -3.5928426831311002, -7.0, -3.459844642388208, -7.0, -3.234820879807401, -2.0762486368402864, -7.0, -3.05307844348342, -7.0, -3.124178055474675, -3.5990092398233435, -3.2047709362855197, -3.2266891142671636, -3.423300498738075, -7.0, -7.0, -3.426077292323316, -7.0, -7.0, -3.9035782936630543, -7.0, -3.3638938977741004, -3.4186878954494686, -2.5157994514673847, -3.893928126542607, -3.4311492447760616, -2.675400905264045, -7.0, -3.5967619862752436, -7.0, -7.0, -7.0, -7.0, -2.595016709265098, -2.1592974644303227, -7.0, -3.2003579455416356, -3.6471872978959894, -3.122270503074094, -3.1177682949263725, -3.596047007545439, -7.0, -3.616212862243485, -3.9435439771534546, -3.5983527098692836, -7.0, -7.0, -2.3251909714733467, -3.8937062930647133, -7.0, -7.0, -7.0, -3.6848004941944112, -3.4409090820652177, -7.0, -3.44544851426605, -3.06096750474098, -7.0, -3.1247215350624358, -7.0, -7.0, -7.0, -7.0, -3.8963057074660803, -7.0, -3.216746333609975, -3.6037396302426137, -3.3246939138617746, -3.125101566510315, -2.8328281295393536, -7.0, -1.7642236073088604, -2.4186754297187782, -3.295072052054132, -3.8936508169859634, -7.0, -7.0, -3.2942457161381182, -2.9938218538340813, -7.0, -7.0, -2.688642251959892, -3.5958267770732233, -7.0, -7.0, -3.4439927191170185, -7.0, -7.0, -3.9023293058583186, -3.8963608454693164, -3.3199384399803087, -3.896415976473123, -7.0, -7.0, -3.430290106054924, -1.6791918413383962, -3.5987358062804047, -3.6027651470770543, -7.0, -3.309949384259016, -2.7047559460483073, -7.0, -2.892571587342385, -2.0253058652647704, -3.595661530898903, -3.912434633375575, -7.0, -3.362000495735565, -7.0, -2.9802559418042427, -2.942454526342477, -3.613366056465805, -7.0, -7.0, -3.1262396696287182, -7.0, -7.0, -2.668075151394519, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5602935243774274, -3.00987563371216, -2.54883401242041, -2.691289562306325, -3.5993371329924893, -2.9365451573208112, -7.0, -7.0, -3.6144753660903954, -3.10452978752546, -2.8561244442423, -7.0, -3.896911840826025, -7.0, -2.8126683008872484, -7.0, -7.0, -7.0, -3.6085795148261877, -7.0, -7.0, -3.328430573978307, -3.914977472444331, -3.9107844347928373, -7.0, -3.9175055095525466, -3.90151280912994, -7.0, -2.3050789541538186, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5971464878336956, -7.0, -2.6672661193822744, -7.0, -3.1709947020363, -7.0, -2.5688136938468413, -2.1517877352979724, -7.0, -2.9609989878668697, -3.436692597664054, -2.917190308511564, -3.145662470707546, -2.404884002555489, -3.0634941988333124, -7.0, -3.909876817990393, -7.0, -7.0, -3.9557358422776656, -7.0, -7.0, -7.0, -3.2011785563833253, -7.0, -2.7846618607977156, -7.0, -3.2278353057755873, -7.0, -7.0, -7.0, -7.0, -3.429698460746883, -7.0, -7.0, -7.0, -3.985695859689842, -7.0, -7.0, -7.0, -3.894758994371892, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4424275042491854, -2.624488362513449, -2.6935270987144677, -2.807464739663779, -3.893817223967463, -3.2932520331478248, -3.8952567531448947, -2.9180303367848803, -7.0, -7.0, -3.4290521089243864, -3.896526217489555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7754723435777815, -7.0, -7.0, -7.0, -7.0, -3.898396045930009, -3.8991088581933995, -7.0, -3.1259148015308593, -3.940267391446012, -7.0, -2.7007037171450192, -2.6827149543979574, -7.0, -7.0, -3.8961954104542107, -2.9804578922761, -3.9158745028576916, -2.17827488687209, -7.0, -2.3475543120201428, -7.0, -7.0, -7.0, -2.8392191755333216, -2.5660530133297814, -2.8549130223078554, -2.2373697070918968, -3.1765253365349997, -7.0, -3.41791434273266, -7.0, -3.9012948171655673, -2.9667672920577095, -3.911370707116138, -7.0, -3.604388073038561, -3.90449915539782, -7.0, -7.0, -3.902546779313991, -3.4207256768599095, -2.5058703771963513, -2.7219651042692194, -3.6101276130759956, -3.901785145303599, -1.4464814546640163, -3.601408060534684, -7.0, -2.6919651027673606, -7.0, -7.0, -3.2125604579711435, -3.898396045930009, -2.9502674680135885, -3.1356096360286796, -3.945222316635341, -7.0, -3.456973013635818, -7.0, -2.262959805400504, -2.5931349642708077, -3.8952567531448947, -7.0, -3.893928126542607, -2.903731084963894, -2.538238500689552, -7.0, -7.0, -3.131030225594209, -7.0, -7.0, -7.0, -3.904715545278681, -7.0, -3.8952567531448947, -3.4356320489516605, -3.2962262872611605, -2.9404902712924867, -2.2762883465645865, -3.221921559353994, -7.0, -3.2445739728174354, -3.0169824105995837, -2.790888071786576, -7.0, -3.0106179269885396, -7.0, -3.630936119064191, -3.236075179005586, -3.15946692901018, -7.0, -7.0, -7.0, -3.919444210465237, -7.0, -7.0, -7.0, -3.164352855784437, -3.898176483497677, -2.656098202012832, -7.0, -7.0, -2.7260358406419276, -3.246252312299322, -3.3039101528616395, -3.9151887051731564, -2.9923009843277657, -3.9869507878585164, -2.4170216650043423, -2.3797015850547303, -2.425683042498169, -7.0, -2.883448493505859, -2.596143564636393, -3.1669478796158117, -3.420218655274665, -2.5944060266909417, -3.470443160662778, -3.0432267304289233, -3.0663342093933186, -3.2889692223054343, -2.94199902862763, -3.893345571818231, -3.5356770471526247, -2.72899112978433, -2.412936196270033, -2.7191520486477514, -4.039731296098691, -3.191765303091737, -2.7893740181644615, -7.0, -2.5349043560660567, -3.306246268757506, -2.6808029121706944, -3.617367343179719, -2.8490737449449446, -2.7083894215363657, -3.354527507512407, -3.7987426959928587, -3.362467974826899, -2.69207373070237, -2.881047300339714, -3.4663237943053677, -3.1746992883707756, -2.950992629105126, -2.4138025167693513, -2.742934505531679, -3.129459704839323, -3.633165353683903, -1.873993814550635, -3.291115025498768, -3.3638469241672295, -2.9640799562089097, -2.6569947892596133, -2.846611982064236, -7.0, -3.0331555896976927, -3.479191276121532, -7.0, -3.428175304684282, -2.5593555501202285, -3.3914644118391033, -7.0, -2.8772705363797146, -2.398105624862588, -3.5407436856394208, -7.0, -3.2802140293383997, -7.0, -2.634594213071113, -7.0, -3.7230130335521174, -3.3668337082390027, -3.6775157047987577, -3.899492196138132, -4.084862139048422, -2.8675902357985654, -3.5204507792823576, -2.4141134532146724, -2.849852805415638, -2.378634853476651, -2.926104889240625, -2.004536317851323, -3.906065544755237, -2.4572433221712098, -2.4968011980452105, -3.2380963076814093, -3.101549466237807, -7.0, -2.8644197947770462, -2.833746914486369, -2.6598918323053944, -7.0, -7.0, -7.0, -7.0, -3.247013055017526, -2.19380739181105, -3.9028727854460796, -2.71230299905154, -7.0, -2.5831551591574486, -2.659065083745527, -3.162663958267158, -7.0, -3.898176483497677, -2.8792233507313676, -3.210692980817999, -2.9586333717289905, -3.088439861957448, -3.4487578345818384, -3.079452595311, -3.1196846918240504, -3.6664243725187595, -2.6909972448905215, -3.6401334644944923, -3.44440915878158, -3.1819660221367885, -3.4551495211798278, -3.24149667332751, -3.9181876613589255, -3.4287825114969546, -7.0, -2.9535482900828445, -7.0, -3.896856772737204, -2.95545307898588, -2.2558453684520914, -2.260309246403442, -7.0, -2.9970367108825267, -3.435578953471198, -3.351989455435632, -3.6033067965385137, -7.0, -7.0, -2.8955925243123817, -7.0, -2.9632104824903385, -2.5702415557741025, -7.0, -2.065471512398471, -7.0, -2.937609063316496, -7.0, -3.154880244718762, -3.9017306917292185, -3.161767169985413, -2.7724115266843383, -3.909556029241175, -7.0, -3.9018395920512297, -3.3554515201265174, -2.472725336054176, -3.627109711211139, -3.9235030669421045, -2.76559760320161, -3.9138138523837167, -2.4745847150335125, -7.0, -2.774087396473049, -7.0, -3.9182400902214147, -3.4263485737875077, -7.0, -2.641781720821696, -3.6249521046631217, -3.905849826642319, -3.309789805171458, -2.5081813078158945, -7.0, -3.4207806195485655, -2.6831596518740986, -3.925621454790829, -3.1427543537803806, -2.6167972574221303, -3.1551841596940076, -2.9730858501679815, -3.086868074713916, -2.9661417327390325, -2.472078282328687, -3.67089495352021, -2.6856003283393646, -3.89470365260923, -3.894814329083301, -2.7944548500620274, -2.962885687041937, -3.9017306917292185, -2.829303772831025, -2.7002864012059606, -3.951677437343301, -2.8235003121397035, -3.0845437818078687, -2.803424597623472, -7.0, -7.0, -7.0, -7.0, -3.9123814989188004, -3.9359101364305076, -2.697727386944923, -7.0, -7.0, -3.893484346218486, -2.1222968014541115, -7.0, -3.915610862661467, -7.0, -3.9020028913507296, -3.217431299267857, -7.0, -3.9085386321719593, -2.751236322671984, -3.6882863093259703, -3.4448251995097476, -7.0, -2.7523045932010324, -7.0, -7.0, -7.0, -3.9079485216122722, -7.0, -7.0, -3.3895204658463776, -3.3370597263205246, -3.720696668749796, -3.901785145303599, -7.0, -3.5169758348685476, -7.0, -7.0, -3.0820996162644265, -7.0, -7.0, -3.260262244714977, -3.3222606541436837, -7.0, -7.0, -7.0, -7.0, -7.0, -3.204042423144708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.575534218319864, -7.0, -3.412593163181993, -7.0, -7.0, -7.0, -3.2802368096096894, -3.0510973704399538, -7.0, -7.0, -3.590953235187986, -7.0, -7.0, -3.459844642388208, -7.0, -3.5742628297070267, -7.0, -2.9055866375456456, -7.0, -7.0, -7.0, -3.5917322389518356, -7.0, -3.5943925503754266, -2.1739392332058043, -3.285894712480839, -7.0, -7.0, -2.6368220975871743, -2.829518186304599, -3.5728716022004803, -7.0, -7.0, -7.0, -7.0, -3.100973313405724, -7.0, -7.0, -7.0, -3.575303333422399, -7.0, -2.9786369483844743, -7.0, -7.0, -2.978750981332984, -7.0, -3.2369904646531475, -7.0, -3.585347911094591, -3.378942698613437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.375785504077291, -7.0, -7.0, -7.0, -7.0, -2.9014583213961123, -7.0, -7.0, -7.0, -3.1268238205131804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9401178667477184, -7.0, -7.0, -7.0, -3.0575947931384415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2794387882870204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590618948206578, -7.0, -3.6306312440205, -7.0, -7.0, -3.6126779183165016, -3.601408060534684, -3.3997025581386566, -7.0, -7.0, -3.5804687839510017, -3.6108730003800513, -3.6585837154070626, -7.0, -3.137354111370733, -4.206933761880598, -7.0, -7.0, -3.598571663482141, -2.8599109900635233, -7.0, -3.65571454961871, -3.67089495352021, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6280481732796694, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9205928620848085, -3.3120362371917773, -3.31694832926197, -7.0, -3.586812269443376, -3.989672247623873, -7.0, -7.0, -3.6174197467371765, -7.0, -3.6578204560156973, -7.0, -7.0, -7.0, -2.6688093294971598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0444417587036496, -3.1386184338994925, -2.9079485216122722, -3.1184851801459406, -2.9213742954184743, -2.986211715514367, -7.0, -2.8860636902492818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.117105502761251, -7.0, -3.3322364154914434, -7.0, -7.0, -2.838055133510821, -7.0, -7.0, -3.614264287358705, -7.0, -7.0, -7.0, -3.604657972047871, -7.0, -7.0, -7.0, -7.0, -2.8476607781404675, -7.0, -7.0, -7.0, -2.867393822439164, -7.0, -2.4294446515270676, -7.0, -3.3389542523776075, -7.0, -3.103803720955957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.625621081424908, -7.0, -3.356089625562946, -3.069674111945659, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2728854447575695, -3.598899887063883, -7.0, -3.2821687783046416, -7.0, -3.571941635074462, -2.795416522655575, -3.273579945676206, -7.0, -3.571825249040829, -2.893317811616112, -3.64525847734945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1876147137990425, -7.0, -3.2998703301367427, -3.707314633588708, -7.0, -7.0, -3.5779511277297553, -7.0, -7.0, -7.0, -2.759236033088654, -3.39750549689802, -7.0, -7.0, -3.578524605274993, -7.0, -3.1681044568157537, -2.751086554886017, -3.698448538015329, -2.993083360698062, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6089536992758626, -7.0, -7.0, -3.595055089759304, -2.9763499790032735, -7.0, -7.0, -7.0, -2.4694011879588946, -3.640978057358332, -7.0, -7.0, -3.740402169016284, -7.0, -7.0, -3.6648299411430907, -7.0, -7.0, -7.0, -7.0, -3.2079035303860515, -7.0, -1.9159836783557305, -2.4845188481673137, -1.7240759641970738, -7.0, -3.165156610994007, -3.3589812256253495, -7.0, -7.0, -3.2719577125342236, -7.0, -3.6277753752293034, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1084522639030685, -7.0, -3.6121478383264867, -7.0, -3.6201013378002385, -7.0, -3.587255520806597, -7.0, -3.194514341882467, -3.285411019391177, -3.66143405039392, -7.0, -7.0, -7.0, -3.649529565947819, -3.7960884286806684, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5787537844264343, -2.9907826918031377, -3.103233406386929, -2.589018238151037, -3.280805928393667, -2.59402403573142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.45983711033396, -7.0, -7.0, -7.0, -4.688909017620555, -4.826172021926372, -4.451771089158385, -7.0, -7.0, -7.0, -7.0, -4.6448520064261425, -7.0, -4.812485532959049, -7.0, -7.0, -7.0, -7.0, -4.660258179206216, -7.0, -7.0, -4.432640641207875, -7.0, -4.619635859719037, -4.317666442356502, -4.2689989585426735, -3.9893608137762473, -7.0, -7.0, -7.0, -7.0, -3.8020550061776333, -3.193958978019187, -4.13375174566039, -3.771881320190099, -3.9529376677509807, -7.0, -3.6929643596462265, -7.0, -3.470840026689671, -2.1990234256365437, -2.276972138523276, -3.0073209529227447, -3.159241249837855, -3.2345172835126865, -7.0, -3.647480773173676, -3.6952189189051508, -2.513217600067939, -7.0, -4.275863950712521, -7.0, -7.0, -3.3029799367482493, -3.716789460800791, -4.4045115809285225, -3.5878231713189552, -2.780877124642547, -2.6874174750166397, -7.0, -7.0, -4.181162087386154, -7.0, -3.873611196996467, -7.0, -3.207365037469072, -3.8340071958856363, -3.748885440009517, -7.0, -3.901621764093357, -7.0, -2.996560313525334, -3.793301353613115, -7.0, -3.5621936991445007, -3.700281762108918, -7.0, -3.6261069635526333, -7.0, -7.0, -3.877083256650651, -3.839037873388306, -7.0, -2.9835135272947686, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0701302598602904, -7.0, -7.0, -3.2788841961972057, -7.0, -2.5179652417860705, -7.0, -3.6799726942774185, -7.0, -3.2000292665537704, -3.653501946962933, -3.6379897807846855, -7.0, -7.0, -7.0, -3.7965049515532963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.712439236645189, -7.0, -7.0, -3.7401389043873006, -7.0, -7.0, -7.0, -7.0, -2.9122220565324155, -7.0, -7.0, -7.0, -7.0, -2.833925861701843, -7.0, -7.0, -7.0, -3.578409970331236, -7.0, -7.0, -7.0, -7.0, -3.652343055062715, -7.0, -7.0, -3.699178415672612, -7.0, -3.585009279902461, -3.5896145406312665, -7.0, -7.0, -7.0, -7.0, -3.913336925932623, -2.834632606336092, -3.4702914591867704, -7.0, -7.0, -7.0, -7.0, -3.121960871649443, -7.0, -3.461048091670658, -3.6379897807846855, -3.2965555060882235, -7.0, -7.0, -7.0, -7.0, -3.5754765086019, -2.9373172477624943, -3.327665387050042, -2.86411536851903, -3.652922887567942, -7.0, -3.650501794878367, -3.4713895141179947, -7.0, -3.7231271587956916, -7.0, -7.0, -7.0, -4.044422155711843, -7.0, -7.0, -7.0, -3.904913807999268, -7.0, -7.0, -3.3552982352111687, -7.0, -3.5859117103194342, -7.0, -7.0, -7.0, -3.6109793799229974, -2.701088048570016, -7.0, -7.0, -7.0, -7.0, -3.293362554711446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.285557309007774, -7.0, -7.0, -7.0, -7.0, -3.6020599913279625, -7.0, -3.1258064581395266, -7.0, -7.0, -3.5067079263501197, -3.589502796263764, -3.5722906061514177, -7.0, -7.0, -3.5728716022004803, -3.27315566043433, -7.0, -7.0, -3.2234094022589295, -7.0, -3.1750283506819907, -7.0, -7.0, -7.0, -7.0, -3.375114684692225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5742628297070267, -7.0, -7.0, -4.399938946535649, -7.0, -7.0, -7.0, -2.3222192947339195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.0043213737826426, -7.0, -3.392609030497567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023992804606471, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6972293427597176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3450468246483553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.760422483423212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727329751292091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.586024382386976, -7.0, -7.0, -7.0, -7.0, -3.221898380435438, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.515873843711679, -7.0, -2.531478917042255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8920946026904806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7853298350107671, -7.0, -1.5440680443502757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.224014811372864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2576785748691846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.446640706109038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5786392099680726, -7.0, -2.582063362911709, -2.6263403673750423, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9429995933660407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6994040818153375, -7.0, -7.0, -7.0, -7.0, -7.0, -2.582063362911709, -7.0, -7.0, -1.8260748027008264, -7.0, -1.462397997898956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0382226383687185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.300291066777081, -7.0, -7.0, -7.0, -7.0, -4.240124730168566, -3.294172187909397, -3.1658376246901283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.376576957056512, -7.0, -7.0, -7.0, -7.0, -3.873920951019782, -4.979179477476769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.272908612690247, -7.0, -7.0, -7.0, -3.851074805228887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.44870631990508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.598790506763115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080698622871129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.24940533901592, -7.0, -7.0, -7.0, -3.3697722885969625, -2.9942291408176986, -7.0, -7.0, -7.0, -7.0, -7.0, -3.234820879807401, -7.0, -7.0, -7.0, -3.218124327999076, -7.0, -2.948412965778601, -7.0, -2.681241237375587, -2.9599948383284165, -2.993876914941211, -4.089092255842719, -7.0, -2.909020854211156, -2.9585638832219674, -7.0, -3.0484418035504044, -7.0, -7.0, -7.0, -3.3459615418131414, -2.92272545799326, -3.5705234818079274, -7.0, -7.0, -3.020775488193558, -7.0, -7.0, -7.0, -2.6278776945799716, -7.0, -2.637989780784685, -1.2704459080179626, -2.6395631046841332, -2.9380190974762104, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9595183769729982, -2.789228057267335, -7.0, -2.9542425094393248, -7.0, -7.0, -4.053846426852253, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6183967876034884, -7.0, -3.126131407261984, -3.7575731524225557, -7.0, -2.382917135087531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.08278537031645, -7.0, -2.450864692379766, -2.9907826918031377, -7.0, -7.0, -3.1840975149130593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4423229557455746, -7.0, -7.0, -7.0, -2.4153072922255676, -7.0, -7.0, -7.0, -7.0, -2.519171463821659, -7.0, -7.0, -2.7607993116307177, -7.0, -3.78265175161032, -1.594593426642608, -7.0, -7.0, -7.0, -2.9057958803678687, -7.0, -2.991004440330755, -2.6703121322779007, -2.929929560084588, -7.0, -7.0, -4.264447885773872, -7.0, -7.0, -2.76317832728305, -7.0, -7.0, -2.484774218948188, -2.5211380837040362, -7.0, -7.0, -2.526339277389844, -7.0, -7.0, -7.0, -7.0, -2.5938396610812715, -3.7311857076340007, -3.5070458724273257, -3.215108581053093, -3.1300119496719043, -7.0, -7.0, -7.0, -7.0, -3.0791812460476247, -2.7197454925295768, -7.0, -2.9036325160842376, -7.0, -7.0, -3.2518467151626838, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.828053896840553, -2.919601023784111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.151905874537198, -7.0, -7.0, -7.0, -7.0, -2.371806458507416, -7.0, -2.4782056360118823, -2.5895772957033327, -2.1363681983890817, -2.3544285972760934, -7.0, -7.0, -2.9867717342662448, -3.0382226383687185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.59090549565564, -7.0, -2.5493098589194982, -7.0, -7.0, -7.0, -7.0, -3.0166155475571776, -7.0, -7.0, -7.0, -3.12057393120585, -3.0043213737826426, -7.0, -2.906335041805091, -2.910624404889201, -7.0, -7.0, -7.0, -7.0, -7.0, -2.805160901599434, -7.0, -2.985089506926381, -4.850345984314136, -7.0, -7.0, -7.0, -1.6692453387684207, -7.0, -2.90687353472207, -2.406965750758948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2685354252766956, -7.0, -7.0, -7.0, -7.0, -2.9444826721501687, -2.9508514588885464, -7.0, -7.0, -7.0, -7.0, -2.8805277781988052, -2.3293978793610424, -7.0, -7.0, -7.0, -7.0, -2.231542403656085, -2.153895059060278, -7.0, -4.204730280256104, -7.0, -7.0, -2.624797578960761, -3.1981069988734014, -7.0, -2.4974825373673704, -2.833784374656479, -2.9962927185413215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.621176281775035, -7.0, -2.3364597338485296, -2.611590557133038, -3.1556396337597765, -2.7466341989375787, -7.0, -4.13640344813399, -7.0, -7.0, -3.020637463567606, -7.0, -7.0, -3.053462604925455, -2.9444826721501687, -2.49876988168213, -2.288174674978394, -7.0, -7.0, -7.0, -7.0, -3.821313521414233, -7.0, -7.0, -7.0, -7.0, -7.0, -3.113943352306837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.696356388733332, -7.0, -7.0, -2.7589118923979736, -7.0, -3.980866554582079, -3.488973524726508, -4.053769689599309, -7.0, -2.9427519204298136, -3.774164034126966, -2.9138138523837167, -7.0, -3.0711452904510828, -7.0, -2.5774917998372255, -3.2184041992497217, -3.2143138974243994, -7.0, -7.0, -7.0, -2.500716623555479, -7.0, -7.0, -7.0, -3.239549720840473, -7.0, -2.3233994435087757, -7.0, -7.0, -3.925291459442737, -4.14997308296338, -7.0, -7.0, -4.4380516115621225, -7.0, -3.7481104674949837, -7.0, -3.1812638243618423, -7.0, -3.7543865641765075, -4.581779045728458, -4.360867837306531, -4.204560839154543, -3.4495469620768637, -7.0, -4.3989290729854345, -3.481461738950127, -7.0, -4.6148761332650095, -7.0, -5.103564280050957, -7.0, -3.642916527809786, -3.792951708250132, -7.0, -4.63136258488696, -4.158196584044788, -7.0, -3.4303551661442375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.360612344908592, -4.098297536494698, -3.3860974812287905, -7.0, -3.976281183510049, -3.315970345456918, -2.7374095188550136, -2.809896246602439, -7.0, -7.0, -3.6472117617451385, -3.3462225361009863, -7.0, -4.091279964228837, -3.6809093578706777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.202215775801132, -7.0, -7.0, -3.410889657525366, -3.86854045204139, -5.174213950544837, -7.0, -7.0, -7.0, -4.0156426254063415, -7.0, -7.0, -3.18620267890855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7014816356209272, -7.0, -3.0599418880619544, -7.0, -7.0, -3.5319682869631666, -4.269384504815968, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7348798027926278, -7.0, -7.0, -7.0, -7.0, -7.0, -2.432927116124977, -7.0, -2.339699822486733, -7.0, -3.1718726561396826, -3.0609495323235096, -2.3242824552976926, -7.0, -7.0, -2.9756287228095775, -7.0, -3.1150857941900143, -7.0, -3.146438135285775, -3.111262513659065, -2.8339965879428433, -3.0499928569201424, -7.0, -3.230704313612569, -7.0, -2.7122888420452504, -7.0, -3.2286569581089353, -7.0, -3.009450895798694, -7.0, -3.390287301803129, -7.0, -7.0, -3.398330697921948, -2.7315396318493663, -3.8429834701222174, -7.0, -2.7646243978509815, -7.0, -2.6906390117159673, -7.0, -7.0, -7.0, -2.727270077199637, -7.0, -3.0972573096934197, -7.0, -2.926342446625655, -3.14713505089171, -2.8341026557127935, -2.922552466761376, -7.0, -2.711244671343486, -7.0, -2.924795995797912, -3.8667204327514666, -7.0, -7.0, -2.9745116927373285, -7.0, -2.890855530574932, -7.0, -3.130655349022031, -2.9409313235178423, -7.0, -3.087064026120594, -2.782114147479071, -3.0141003215196207, -2.4369573306694496, -7.0, -7.0, -7.0, -3.4572004127937683, -3.146438135285775, -7.0, -2.753199914199416, -3.374198257929083, -7.0, -2.942008053022313, -2.2586372827240764, -3.1436392352745433, -3.117602691690084, -3.466274321789292, -7.0, -3.5217916496391233, -7.0, -3.171433900943008, -3.415140352195873, -2.6691308473733324, -3.345177616542704, -7.0, -7.0, -3.9824973691977124, -7.0, -7.0, -7.0, -3.1488698939816735, -2.6782907017180433, -3.6840819838753727, -3.994185128202317, -3.3261309567107946, -7.0, -7.0, -2.952792443044092, -7.0, -3.0565237240791006, -7.0, -3.2397998184470986, -7.0, -7.0, -7.0, -3.127016398361401, -7.0, -7.0, -7.0, -7.0, -3.0874264570362855, -7.0, -7.0, -3.1971426649725627, -7.0, -3.1222158782728267, -7.0, -3.1684974835230326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7188337183038622, -3.2829618035343353, -7.0, -2.9740509027928774, -7.0, -2.6728672017718136, -7.0, -7.0, -4.291945750170066, -7.0, -7.0, -7.0, -3.540954808926133, -7.0, -7.0, -7.0, -3.041787318971752, -7.0, -3.319522449065454, -7.0, -7.0, -7.0, -3.731335458395129, -4.399962001930988, -4.876927608974731, -7.0, -7.0, -7.0, -4.575932206504239, -4.57610513115158, -3.9231576348444315, -2.1417289398469945, -3.48333049525732, -7.0, -4.576076315158132, -2.695756933177721, -2.594892570014196, -3.6468821035034504, -3.464105320046255, -4.2758351870121984, -3.880636409709007, -4.877037144635965, -2.0762486368402864, -2.9055866375456456, -4.399938946535649, -3.218124327999076, -7.0, -3.39963334694337, -2.83887218782187, -3.575782282761056, -2.6134201009969362, -2.7523084438585426, -2.55976210781365, -2.287230877686913, -2.7238197536852606, -4.576059024644269, -4.178648945509116, -3.386320573894046, -3.7026143259031574, -4.1779979630965665, -3.9237101943965627, -7.0, -3.212516276244047, -7.0, -1.9205173958532884, -4.0988224822367725, -3.401113213955382, -3.535806039376913, -7.0, -4.275351671786708, -4.576398945124239, -3.7632494007603223, -4.032319382401304, -3.5549965066930604, -3.4860392250921777, -2.196453638006586, -3.763341586861342, -3.5349774634615505, -3.0071102312643196, -4.178752551784779, -3.8771927530671593, -3.59841033994433, -4.178660458538169, -3.703274177996601, -3.928128319128786, -4.099404372345543, -4.876921843174579, -7.0, -2.3455779218656394, -4.877008322140324, -7.0, -4.576335590293832, -4.274890680081923, -3.2638445159718152, -3.1081061568911568, -4.877210039451698, -3.800814417138437, -2.14197367709603, -7.0, -3.599066782849663, -4.876956436827322, -4.576283747648257, -4.876956436827322, -7.0, -3.9741085282798463, -4.8770256158672485, -3.0397646092150197, -3.8780792331116247, -2.748727687356933, -4.032900678732676, -2.300728780389829, -4.180974129232144, -1.8243995969787599, -3.5364149547842194, -4.032232984867467, -4.575961032060751, -7.0, -7.0, -4.576272226219881, -4.178407101369325, -4.576168519607808, -4.876985262766487, -2.90946030951289, -4.877348305763564, -7.0, -4.876939140345395, -3.1389798130022526, -4.877008322140324, -3.6216896970649146, -4.032745358864123, -3.59832389196373, -2.5789442910971676, -4.57624918244613, -4.399996582729268, -3.3104636635935303, -3.4632151307661956, -2.235624770342187, -4.400509208154525, -4.577037736309381, -4.1783783014275455, -3.6235134632921726, -3.7354163846789343, -4.2751846188287805, -2.6887978851749255, -2.324022596211637, -3.8772273251482074, -3.732715340349993, -3.5163456465629728, -2.170604608513454, -4.1784416587786515, -1.967557300945524, -3.191696193356389, -3.556767567185354, -4.877584408926619, -4.576686805200995, -3.4154684148357113, -7.0, -7.0, -3.0502198796550055, -7.0, -7.0, -7.0, -4.876996792606452, -7.0, -2.7249800027309923, -3.009081707149539, -3.0329990831515152, -3.8800872563019415, -4.032549691831266, -3.3302481843706953, -4.032163854463103, -4.5760878417849495, -3.310722009900572, -3.1996824306402645, -2.3462839237339175, -7.0, -4.4001982491921465, -3.223628600158525, -2.149791189004268, -7.0, -4.576001384625881, -4.17856834575881, -3.556250795965523, -3.478843432329472, -7.0, -3.389309014917708, -3.536604348652848, -3.463554192128399, -3.8366865479533994, -3.310928576352893, -3.7015737410745344, -4.099283449476349, -1.7019773666297375, -3.9228810912082936, -4.57603596955491, -4.876933374698336, -4.576398945124239, -4.576168519607808, -3.555036838379667, -4.178113252314632, -2.839030505034086, -7.0, -2.965349706108749, -4.8770256158672485, -3.3757321813607444, -1.5208106485077677, -4.178418620811301, -3.8378810064031437, -3.3473070513532233, -3.517631867509287, -3.3235900970681924, -3.2795129520575665, -3.5773998759334207, -3.923681432601159, -3.799409479615127, -3.836312604966299, -3.9744253318550826, -3.057058345431303, -7.0, -4.031973689091717, -7.0, -2.4295006001874326, -7.0, -2.8534559683972103, -4.575949502067735, -3.375108963026137, -4.178412861128507, -3.923105796324239, -4.177980667073867, -4.576116657013627, -3.8369050117306402, -4.877083256650651, -7.0, -4.8770025574116485, -3.6320634252958612, -4.276151482986834, -7.0, -4.399927418378985, -3.9739471576440217, -7.0, -4.399864008046825, -3.8360420147017673, -4.576162757403178, -3.6218856731304694, -3.3609088282656576, -2.8000981801747757, -3.1948749479303777, -1.9898918994693524, -3.6215513077550128, -3.6729171619800405, -3.9228349834772342, -3.464443687404161, -4.876967967432585, -4.399933182495568, -3.3464852909784732, -4.400157923390449, -3.9232094671777817, -7.0, -7.0, -4.576064788225377, -4.399967765588587, -7.0, -4.876962202168221, -4.179028714410914, -2.701665621471304, -7.0, -4.2748503200166645, -7.0, -4.275150048123735, -4.400353756504531, -3.836065050225192, -7.0, -3.2442023004929483, -3.4838724542226736, -3.798034555379355, -3.0695111297549458, -2.752913044000912, -7.0, -4.3998870674206625, -4.40012335543708, -3.682686478249768, -3.5569167422407153, -2.6178845514336007, -3.73242248205319, -2.503868588928999, -4.87727917811011, -4.877060201255311, -4.275201903149397, -2.4600107006492493, -3.3892232622307072, -2.9311148982994553, -1.7653912419080031, -3.158948212402123, -4.576064788225377, -4.400025397957946, -7.0, -3.9234685360935613, -3.1804871588298704, -3.322173335214124, -7.0, -3.975081244262648, -3.974971994298069, -7.0, -3.877152415493926, -4.099726668821858, -3.0843686801856824, -2.3369330363913186, -2.8419962702029213, -3.648233694151396, -3.836347136272441, -2.1753078349067776, -3.8778318914928938, -4.877083256650651, -2.8457234051996587, -4.03195063308439, -4.576082078509781, -2.328350640239603, -3.974327435423617, -3.083297812242457, -3.1382108046537596, -3.2193851792311725, -3.836950990105, -3.7351310513165665, -4.0328374069729644, -1.9785670656068557, -2.536862479985503, -4.877169703484078, -7.0, -7.0, -3.405306509594342, -2.1570754865616193, -7.0, -4.5763528698005445, -2.899895344556287, -3.8769333746983357, -4.575937971768604, -7.0, -3.5992048550135713, -4.03250939649661, -3.9228349834772342, -3.0859577327195216, -4.03235393660285, -2.4359702501023976, -3.2460675192399124, -2.100510739194386, -4.401136207098224, -2.588025756201648, -2.218837876764699, -1.935912236167164, -7.0, -3.4987354489364773, -3.974482907684665, -2.7525300290346935, -2.6719466265655902, -2.419163774190302, -4.57610513115158, -3.9738203243526837, -4.876927608974731, -2.891882167768502, -4.576266465391071, -3.836554266470963, -4.275317114377382, -3.0303431158216347, -4.032307863723146, -2.364528392331072, -7.0, -7.0, -2.837737818927626, -3.0832902249210807, -3.178805273804607, -4.277196495795956, -2.811203458094404, -3.6570558528571038, -3.488610368239004, -2.8658874442230333, -2.3525148327209098, -4.877135126815562, -3.4566038682343416, -2.9611431678226436, -2.924456409691413, -2.4965860992984648, -2.8429799822823734, -3.1949488814069302, -2.9144218415753604, -2.86589928955951, -3.3271187286686343, -2.9870500630767345, -3.597460114481666, -2.5035434751067442, -3.2728854447575695, -2.6145382207807, -3.182884965971133, -3.1247474752869913, -2.8560353749424916, -2.9093749020813826, -4.407317240973132, -2.53712497340571, -3.0814136390692934, -2.8915643707545753, -2.8640258120883804, -3.1415607147757774, -3.65493554585486, -3.072909432901749, -3.254729297425354, -3.033892647546583, -2.893460309733855, -2.6404452028433893, -3.450813427021517, -2.3350545700813736, -2.308150269457855, -2.630000273287136, -3.1632818171729102, -2.679417801318545, -3.148408403505286, -1.8568379988483543, -2.8255065858864694, -3.2125106115949857, -2.8373027824636576, -1.4763353612855514, -2.365083934123616, -3.98045221370234, -2.7397781891936, -3.2021987362922757, -4.179114979230523, -2.9479514383577072, -2.685221486931221, -3.3567005768760696, -4.180905413562809, -2.101876182215234, -1.9092655725827472, -2.2665525867583787, -3.974598036449844, -2.821005006647399, -4.099778444168306, -2.3105572539897095, -3.788005112766247, -2.1256628615011692, -3.016824493667488, -2.7835613852761036, -4.576571684065291, -3.2673463937576654, -2.73877544549828, -2.6596704390534436, -3.3527044930956182, -2.514300718383189, -2.8488711984461923, -2.3823499028148887, -2.8524072395241404, -3.764227878947755, -1.8985153536370132, -2.285557309007774, -3.173626112391373, -2.239349687763895, -4.183799217793253, -2.505660746145801, -2.763334385526816, -2.9812024817976854, -4.100060223931153, -4.576646516274588, -7.0, -4.578312506832515, -3.4766167808859505, -2.8137092617421473, -3.701717616751476, -2.7983994992871044, -7.0, -3.110572876853564, -2.586299508635064, -3.84069905030844, -3.702125963963316, -4.877475011224193, -2.9947247797882426, -3.9244056496686226, -2.53137864938941, -3.181860730809662, -4.181471992946307, -3.845706753536257, -3.375033901249075, -3.7090437070077527, -3.399601156258678, -4.103991760529103, -3.97683696867815, -3.5705596175371634, -4.1821863167395446, -4.103946182653774, -3.1466160554402265, -3.5770664885839754, -7.0, -3.0492764487705313, -4.878860596838407, -7.0, -2.8912835950189386, -2.4355155492092426, -2.6257078337736153, -7.0, -3.610110785065819, -3.3873381488811636, -3.804412059137714, -3.3864299194080996, -7.0, -4.178620161601131, -3.157736514148242, -4.276162980319142, -3.557180541881304, -3.254207397942776, -4.032123523311559, -2.973633058847854, -4.035126569752172, -3.295313299732073, -7.0, -4.036155338400719, -3.8363413812454157, -3.580856577457996, -3.0019319261726443, -4.87868261552967, -4.032457582714929, -3.9235260859825862, -3.5541531359965925, -3.0021287152533693, -4.403583750366688, -4.579160279808659, -3.4544909672215263, -3.879038505237237, -2.088702509314734, -3.976241047772464, -3.5281394817829104, -4.276668561845278, -4.034456560924718, -3.1150173197373445, -4.032549691831266, -3.385719990896485, -4.03532107949519, -4.276191722318338, -3.536300130411311, -3.7097277645597693, -4.399881302691986, -3.7311914682335705, -2.475472322889589, -3.3118225640429104, -3.7336958383326047, -2.990544591752271, -3.62588952582799, -3.0097024355116977, -3.1994351876202076, -3.029848940638572, -3.288489155230087, -3.73956104337977, -3.340659367297437, -4.2750175015885965, -4.877123600647619, -2.7887450123625794, -3.93568076981809, -4.032682064470379, -3.6557709903483695, -2.7338216935736406, -3.929072487398351, -3.0553628323897706, -2.7715551279285786, -2.943198706108668, -4.275576227946301, -4.035601249204444, -3.877492286377779, -4.877210039451698, -3.5170064590194547, -3.3497344992127642, -3.71594766128561, -4.275178857235708, -4.400572524359314, -4.876985262766487, -2.5384162586458476, -4.27534591240944, -4.578295305120826, -4.877659244111609, -4.400733651239303, -3.925134394436687, -4.400854457181176, -4.276479037739323, -3.5679389439305034, -3.984825366582568, -3.027992403440902, -4.178700751736516, -3.880802163328254, -7.0, -7.0, -7.0, -4.276415844653449, -4.100077469815475, -4.276484782109383, -3.003395081957638, -3.496004750814479, -3.3733523197972075, -4.576813403214398, -7.0, -3.5266370221906365, -4.877331024881724, -7.0, -2.768129153306671, -7.0, -7.0, -3.5618960672777495, -3.687902231588367, -3.8020264610272116, -4.876985262766487, -7.0, -3.732491407656525, -7.0, -3.4808247611406684, -7.0, -4.878556261949533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.39963334694337, -7.0, -2.1367205671564067, -7.0, -2.019116290447073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334011188761349, -7.0, -2.194514341882467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.722921711759407, -7.0, -7.0, -7.0, -7.0, -7.0, -2.395326393069351, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9965116721541785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.891323695765261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1024337056813365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.57978359661681, -7.0, -7.0, -2.6273658565927325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.225309281725863, -1.6901960800285138, -1.5910646070264993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.470802365112064, -7.0, -7.0, -1.8864907251724818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0455185628844927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.244277120801843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.631748074396569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983220214648103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.167317334748176, -7.0, -3.88024177589548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.05307844348342, -7.0, -7.0, -2.948412965778601, -2.83887218782187, -2.1367205671564067, -7.0, -7.0, -1.8512583487190755, -7.0, -2.1931245983544616, -4.558264451377498, -1.9120448296448702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.189209489582306, -7.0, -3.7334179686894733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0982109460284746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.027268042466619, -7.0, -7.0, -7.0, -7.0, -7.0, -2.761927838420529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7307822756663893, -7.0, -2.571708831808688, -7.0, -1.8957907482504441, -7.0, -3.916164322342523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8041394323353503, -7.0, -7.0, -7.0, -7.0, -2.8169038393756605, -7.0, -7.0, -7.0, -7.0, -4.058995093525416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5121505369220305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.256236533205923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.722633922533812, -7.0, -2.9694159123539814, -7.0, -7.0, -7.0, -3.596120392892336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9143431571194407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6864250009637516, -2.2013971243204513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2116544005531824, -7.0, -7.0, -7.0, -2.9344984512435675, -3.391213768955675, -7.0, -7.0, -7.0, -7.0, -2.8419848045901137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3157604906657347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.848281510243934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2041199826559246, -7.0, -2.2576785748691846, -7.0, -3.1705550585212086, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6828667956623247, -7.0, -4.496583734489095, -7.0, -7.0, -7.0, -7.0, -2.906335041805091, -7.0, -2.437750562820388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.305351369446624, -3.1157768761589635, -2.88024177589548, -7.0, -7.0, -4.305351369446623, -7.0, -7.0, -3.7505083948513462, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7015679850559273, -7.0, -2.574031267727719, -2.6473829701146196, -7.0, -4.620732756383168, -2.678973375919765, -7.0, -7.0, -7.0, -7.0, -1.7853298350107671, -7.0, -7.0, -2.3170181010481117, -7.0, -2.0718820073061255, -7.0, -7.0, -7.0, -7.0, -2.6794278966121188, -7.0, -3.6481159567559627, -3.382197210377454, -5.432978906143947, -7.0, -2.7327956982893293, -4.067008827268302, -2.0253058652647704, -7.0, -7.0, -7.0, -7.0, -3.4211101297934343, -2.6830470382388496, -7.0, -7.0, -7.0, -2.7788744720027396, -7.0, -7.0, -7.0, -7.0, -7.0, -2.514737442325631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.483416112701048, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703678200880355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.57063632650346, -4.302027726021775, -3.7289216463728594, -7.0, -7.0, -2.949390006644913, -4.24112293662285, -2.931457870689005, -7.0, -7.0, -3.660137883917105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.653540523484712, -4.201347045549598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5952757118020995, -7.0, -7.0, -7.0, -4.001430812246398, -4.2747580543520085, -7.0, -7.0, -7.0, -3.8535156967569284, -7.0, -7.0, -3.7009415623278796, -7.0, -7.0, -4.030427670038405, -7.0, -7.0, -3.1156105116742996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779949842979917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6576389846160815, -7.0, -7.0, -7.0, -7.0, -3.621280167550415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.575782282761056, -7.0, -7.0, -7.0, -1.8173449714419305, -7.0, -7.0, -4.557194300943595, -7.0, -7.0, -7.0, -2.019116290447073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.484299839346786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9867717342662448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7558748556724915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.99211148778695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426210241414335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.970430565175467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.824125833916549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.59955559098598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0572856444182146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.642958879409791, -7.0, -7.0, -7.0, -7.0, -3.406199423663313, -2.9429995933660407, -7.0, -7.0, -7.0, -2.709269960975831, -7.0, -7.0, -7.0, -2.989004615698537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721645766289746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.134559577422625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.997561115633588, -7.0, -7.0, -7.0, -7.0, -4.151890568735089, -7.0, -7.0, -4.001095211443513, -7.0, -7.0, -7.0, -7.0, -3.2412973871099933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.416640507338281, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.155336037465062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.895422546039408, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2600713879850747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080666163176663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.659021982916067, -7.0, -7.0, -7.0, -3.611723308007342, -7.0, -2.45484486000851, -7.0, -7.0, -7.0, -7.0, -3.124178055474675, -3.5917322389518356, -2.3222192947339195, -2.681241237375587, -2.6134201009969362, -2.019116290447073, -1.8512583487190755, -1.8173449714419305, -7.0, -2.1931245983544616, -7.0, -3.9570203296921784, -2.509202522331103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.508395033133053, -7.0, -4.337079711800931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1319392952104246, -3.165541076722373, -3.229681842317676, -2.429752280002408, -7.0, -7.0, -7.0, -2.392696953259666, -2.110589710299249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.81424759573192, -7.0, -7.0, -3.9183187216495976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3096301674258988, -7.0, -1.8309092995464433, -7.0, -4.042102768037303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.851869600729766, -7.0, -7.0, -2.5490032620257876, -2.084576277934331, -2.863322860120456, -2.3909351071033793, -7.0, -2.443262987458695, -2.655138434811382, -3.5845196793420233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.220631019448092, -4.099058789068055, -7.0, -7.0, -7.0, -4.037832711917421, -7.0, -2.992995098431342, -2.7570162347313003, -7.0, -7.0, -2.507855871695831, -2.60422605308447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4771212547196626, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7749911461195644, -7.0, -7.0, -7.0, -7.0, -2.3138672203691537, -7.0, -7.0, -7.0, -2.708420900134713, -7.0, -2.5024271199844326, -7.0, -7.0, -3.4495352349815573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.929418925714293, -7.0, -7.0, -7.0, -7.0, -2.921779342902304, -7.0, -7.0, -2.7573960287930244, -7.0, -2.885926339801431, -2.727947709544797, -2.6830470382388496, -7.0, -7.0, -7.0, -2.4756711883244296, -3.1458177144918276, -7.0, -7.0, -7.0, -7.0, -7.0, -3.029586671630457, -7.0, -2.6143698395482886, -7.0, -2.4345689040341987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5308397786165204, -2.067655263657066, -7.0, -4.672411914830631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.294466226161593, -7.0, -2.4065401804339555, -7.0, -2.490520309363349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6910814921229687, -4.497606840516214, -7.0, -7.0, -7.0, -7.0, -7.0, -2.99211148778695, -2.2029119304669567, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5556988947189017, -2.717670503002262, -7.0, -7.0, -7.0, -7.0, -2.380211241711606, -7.0, -7.0, -2.8262368226549173, -2.441433275830611, -2.716003343634799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3364597338485296, -2.1197506238845842, -7.0, -2.8135809885681917, -7.0, -3.0729847446279304, -7.0, -2.682145076373832, -7.0, -4.496043558539809, -2.1630761439921695, -7.0, -7.0, -7.0, -7.0, -2.2405492482826, -7.0, -7.0, -2.388278863459639, -2.305351369446624, -7.0, -7.0, -7.0, -7.0, -7.0, -2.741939077729199, -7.0, -7.0, -2.9175055095525466, -5.132064277112742, -7.0, -2.5847080525750368, -3.9429624514287713, -2.1685816572769356, -7.0, -2.7634279935629373, -7.0, -7.0, -7.0, -2.166895074645, -7.0, -7.0, -7.0, -2.5269850685599957, -7.0, -7.0, -7.0, -3.056142262059052, -7.0, -2.139508685967779, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.256196408063205, -7.0, -7.0, -7.0, -4.656222816103602, -4.802589025376433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784987960564955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.38888237082715, -7.0, -7.0, -4.0943313492770965, -3.525260820213098, -3.4336898459916987, -2.5397032389478253, -7.0, -7.0, -3.764823478524604, -7.0, -7.0, -7.0, -3.6624745037503095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.575745755034518, -4.2808741725572155, -7.0, -2.5171958979499744, -3.2805783703680764, -7.0, -7.0, -7.0, -7.0, -3.302114376956201, -7.0, -7.0, -7.0, -7.0, -4.276461804173244, -7.0, -7.0, -7.0, -2.979912410334717, -7.0, -7.0, -3.525563058270067, -7.0, -3.0115704435972783, -7.0, -7.0, -3.2801228963023075, -3.3000517321200418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7645497190644672, -7.0, -7.0, -3.2114765203615074, -7.0, -2.6384892569546374, -7.0, -3.47928731647617, -7.0, -4.628174284448325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8135809885681917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5943925503754266, -7.0, -7.0, -3.4173055832445254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.00199317382353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4424797690644486, -2.8211858826088454, -2.8998205024270964, -7.0, -3.7206553565517244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.998259338423699, -7.0, -7.0, -7.0, -7.0, -3.5487885153415606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5593080109070123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.214843848047698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357668093043634, -7.0, -7.0, -7.0, -3.6063813651106047, -7.0, -2.0663259253620376, -2.443262987458695, -7.0, -7.0, -7.0, -3.5990092398233435, -7.0, -7.0, -2.9599948383284165, -2.7523084438585426, -7.0, -7.0, -7.0, -2.1931245983544616, -7.0, -7.0, -4.0813833174622856, -2.1319392952104246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.035009249707063, -7.0, -2.621176281775035, -2.603144372620182, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3483048630481607, -3.1504494094608804, -3.7028611705729295, -7.0, -2.4099331233312946, -2.775974331129369, -7.0, -7.0, -2.3222192947339195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028245816572474, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7795964912578244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.749736315569061, -7.0, -7.0, -7.0, -2.401400540781544, -7.0, -3.8195439355418688, -7.0, -7.0, -2.164352855784437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.482873583608754, -7.0, -2.530199698203082, -7.0, -7.0, -2.705007959333336, -7.0, -2.8033432919072556, -2.413299764081252, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3743896719509805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0644579892269186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6755033847279566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.741939077729199, -7.0, -2.678518379040114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5740312677277188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7280289544205187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4941731532151254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.651601029618764, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3207692283386865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5899496013257077, -3.5082603055123345, -4.848355410696216, -7.0, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1335389083702174, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5390760987927767, -7.0, -7.0, -7.0, -2.875928984922927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.495224021995183, -7.0, -2.667452952889954, -2.187520720836463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.673941998634088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1197506238845842, -2.591621038213319, -7.0, -7.0, -4.6066607716609465, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4819201376014313, -7.0, -3.0982975364946976, -2.4191293077419758, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6897526961391565, -7.0, -7.0, -7.0, -7.0, -2.5118833609788744, -7.0, -7.0, -1.7273378880330803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.950413539369381, -7.0, -5.433017365093436, -7.0, -3.044147620878723, -3.942342951035721, -1.6573290799701759, -7.0, -7.0, -7.0, -2.9395192526186187, -7.0, -2.2130748253088512, -7.0, -1.8512583487190755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.519265314601474, -7.0, -7.0, -4.617608347205152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431902277007789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784631554943246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8253395531907173, -7.0, -7.0, -7.0, -7.0, -4.542476856009627, -3.7791634237644987, -7.0, -7.0, -3.837051550831765, -3.0960405542954277, -7.0, -3.7236198355154633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.654003174669913, -4.678613967933965, -7.0, -7.0, -7.0, -7.0, -4.610926193408706, -7.0, -7.0, -3.5979144712025284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.340344949528144, -7.0, -3.8542452970661185, -7.0, -7.0, -3.8261828227192676, -7.0, -7.0, -4.331741009037769, -7.0, -3.268577971882843, -3.5958267770732233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9878002857518724, -7.0, -7.0, -7.0, -3.3664229572259727, -3.510545010206612, -3.022840610876528, -7.0, -7.0, -3.7768464086952993, -7.0, -3.782441909184704, -2.9595183769729982, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.298853076409707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3395011289081085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4082399653118496, -2.931118710592187, -7.0, -2.780317312140151, -7.0, -7.0, -3.3952390010815514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9670436946040506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6875289612146345, -7.0, -7.0, -1.871183608328498, -2.9922220374838435, -2.8715729355458786, -7.0, -3.239049093140191, -7.0, -7.0, -7.0, -3.422589839851482, -3.6585837154070626, -7.0, -3.1947917577219247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.010956838955719, -7.0, -3.9550620696750323, -7.0, -3.4556821645007902, -7.0, -7.0, -2.0916669575956846, -7.0, -2.6910814921229687, -2.673941998634088, -7.0, -7.0, -7.0, -7.0, -3.5472515145799526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277334112215984, -7.0, -7.0, -7.0, -7.0, -2.954724790979063, -7.0, -7.0, -7.0, -7.0, -3.547528576459782, -7.0, -7.0, -7.0, -2.513217600067939, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.35837273025802, -7.0, -7.0, -7.0, -3.313023110323238, -3.640282629696681, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2047709362855197, -3.5943925503754266, -7.0, -2.993876914941211, -2.55976210781365, -7.0, -2.1931245983544616, -7.0, -7.0, -7.0, -7.0, -3.714197990190072, -2.236789099409293, -7.0, -7.0, -2.5998830720736876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8603579736743696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9301846522986197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.730136003996678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5010592622177517, -7.0, -2.076068010623482, -7.0, -7.0, -7.0, -3.4053332230254467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.575187844927661, -7.0, -7.0, -7.0, -2.677606952720493, -4.062694773342393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.497620649781288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0678145111618402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6638892986226614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.432969290874406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0128372247051725, -7.0, -7.0, -7.0, -2.796902832645105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788168371141168, -7.0, -7.0, -7.0, -2.5599066250361124, -7.0, -3.1599896745229517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.859438535455056, -7.0, -7.0, -3.09074056116527, -7.0, -7.0, -7.0, -7.0, -2.8992731873176036, -3.0394141191761372, -7.0, -2.597695185925512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4983105537896004, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149619341533153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.603144372620182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.392696953259666, -3.1983821300082944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.49793814174857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4771212547196626, -2.830107278114626, -7.0, -7.0, -7.0, -3.6530409067467735, -7.0, -7.0, -3.758003009299799, -7.0, -7.0, -2.745855195173729, -7.0, -7.0, -7.0, -3.081707270097349, -7.0, -7.0, -7.0, -4.320021590369593, -2.54448146130858, -7.0, -7.0, -7.0, -7.0, -2.381415942849977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4578818967339924, -7.0, -7.0, -7.0, -4.433107089399942, -7.0, -2.770483809431108, -4.06822297934645, -2.0211892990699383, -7.0, -7.0, -7.0, -2.2723058444020863, -3.4369573306694496, -3.0269416279590295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.065206128054312, -7.0, -3.3802112417116064, -7.0, -7.0, -4.618382845341753, -7.0, -7.0, -7.0, -4.428863408299256, -7.0, -7.0, -7.0, -4.4324962773898475, -7.0, -7.0, -7.0, -7.0, -4.802753206957748, -7.0, -7.0, -7.0, -7.0, -7.0, -4.608782683529647, -7.0, -7.0, -7.0, -4.785158931428092, -7.0, -7.0, -7.0, -7.0, -7.0, -4.227363866089596, -7.0, -4.581312362231848, -4.237116270535057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9620376865650124, -2.591435640352701, -3.793511005792858, -3.6050031982042876, -7.0, -2.8567288903828825, -7.0, -2.6928469192772297, -3.94126290931895, -3.7844746437625165, -2.611988688083979, -3.5933229952532844, -2.9354127889420147, -2.556647042222806, -7.0, -7.0, -3.158060793936605, -7.0, -7.0, -3.7090437070077527, -7.0, -7.0, -3.4000004248702242, -4.025674449410344, -4.871505801505925, -7.0, -2.9845273133437926, -7.0, -3.708474015096181, -7.0, -4.465110092336941, -3.605951157564873, -4.058198187878253, -7.0, -7.0, -4.005652315355074, -4.277012939376528, -7.0, -3.6488477083728936, -7.0, -4.157577640520729, -7.0, -7.0, -3.760012985109646, -3.4494546633573377, -7.0, -4.156377499418026, -7.0, -2.807535028068853, -3.1263479050141765, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073315020560628, -7.0, -7.0, -7.0, -7.0, -7.0, -3.991137435120312, -7.0, -7.0, -7.0, -7.0, -7.0, -4.628419585049459, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1641247417062335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8090207204836726, -7.0, -7.0, -7.0, -7.0, -4.604204445856331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.28244083582987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.279027805622721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.558408539791075, -4.55735077960453, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5574350139981465, -4.558156353686574, -2.3413646240800943, -4.089398727914103, -7.0, -7.0, -3.397211955499955, -3.172484007140436, -7.0, -3.9599234024401224, -4.559068334034537, -3.96277171225233, -7.0, -3.2266891142671636, -2.1739392332058043, -7.0, -4.089092255842719, -2.287230877686913, -7.0, -4.558264451377498, -4.557194300943595, -3.9570203296921784, -4.0813833174622856, -3.714197990190072, -7.0, -3.5584445544261687, -3.7790671278701122, -2.955519386488213, -3.354792490450614, -2.614453783201774, -7.0, -7.0, -7.0, -3.8748875108461127, -7.0, -2.5049072879073857, -4.557194300943595, -3.518765111973402, -3.8611280030902804, -7.0, -4.2570062179123065, -3.516415170606379, -7.0, -7.0, -7.0, -3.6177107625232265, -2.825840962449408, -7.0, -7.0, -3.171094292723705, -7.0, -7.0, -7.0, -4.558540578854597, -4.261334253799131, -3.6140296350502608, -7.0, -7.0, -7.0, -2.896404763954549, -7.0, -7.0, -7.0, -7.0, -3.800625445307701, -3.043314635810413, -4.557567349330712, -4.26256973321755, -3.0468520107260044, -7.0, -7.0, -7.0, -7.0, -4.255983682892567, -7.0, -7.0, -7.0, -4.084945479775793, -4.559595448664063, -3.7193668057996536, -4.2583019756569245, -4.260393410079865, -7.0, -2.4952147551681585, -4.561459171241916, -7.0, -4.55713410182759, -4.256031856208043, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5800806438630075, -7.0, -7.0, -7.0, -4.2622374497415825, -7.0, -7.0, -4.2579783984792305, -7.0, -4.26246295553778, -7.0, -7.0, -4.561459171241916, -3.8611399616898683, -2.950566907345739, -7.0, -4.082210716601243, -4.557952095720065, -4.084087496160286, -3.4526473239486646, -7.0, -3.177747325191253, -3.012235739791244, -4.557819877590791, -3.86221488945307, -3.714653024705956, -2.6644201679395536, -4.55808427360864, -3.9643892861748222, -4.267359490827859, -3.7834747875822465, -7.0, -7.0, -4.258553480224311, -7.0, -7.0, -2.754802988015006, -7.0, -7.0, -7.0, -7.0, -7.0, -2.721050076134882, -3.2046060299125667, -3.330470142287151, -7.0, -4.257570587678587, -4.147078307006692, -7.0, -7.0, -3.959863863555982, -3.6302696332736275, -3.452553063228925, -7.0, -4.557843920244874, -7.0, -2.365983220970808, -7.0, -3.711975854351756, -7.0, -7.0, -4.256200420744306, -7.0, -3.5652573434202135, -2.7896165593379805, -3.3844848356953223, -3.236920956251943, -3.1639123887749165, -4.0816832818909905, -7.0, -2.224391022988587, -7.0, -7.0, -7.0, -4.256994202073168, -7.0, -7.0, -7.0, -3.620471511314936, -7.0, -3.1866133147403364, -7.0, -4.264876826403677, -2.3814459294110506, -7.0, -7.0, -4.561637954564607, -4.562566443285449, -3.9618480590183243, -4.5675439155731015, -4.560564148979884, -4.559248104088254, -4.259653596243472, -4.55884051842334, -7.0, -3.529756909124659, -7.0, -7.0, -7.0, -3.498556682717641, -7.0, -3.4335412578764823, -4.557110019844558, -4.2635887314599445, -7.0, -4.256994202073168, -7.0, -7.0, -3.4458436158937196, -4.557302638328947, -7.0, -7.0, -7.0, -4.5597271274175615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.55755532051209, -7.0, -4.261881149383667, -3.360226455806278, -2.6128730479675517, -2.808829255943203, -7.0, -4.557567349330712, -7.0, -4.562756657400079, -7.0, -7.0, -3.781659651821598, -7.0, -4.558264451377498, -7.0, -7.0, -4.55735077960453, -4.557362814089654, -7.0, -7.0, -4.082138831393448, -2.941893498711568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.860469772491684, -3.567473376960255, -7.0, -3.8051495651298395, -4.096028949745415, -7.0, -7.0, -7.0, -3.9755811433675645, -7.0, -3.496088332375765, -2.887473644846725, -3.1114951644986593, -4.557711669173163, -4.557254491716343, -4.557747741641468, -3.203739808633858, -3.866228247379647, -3.5662842540845943, -3.173500945013356, -3.6679896519391977, -7.0, -7.0, -7.0, -7.0, -4.262356151598692, -4.0838727351483755, -7.0, -4.559739096233808, -3.714269869449075, -4.5578078557646045, -7.0, -4.559080321020141, -7.0, -2.97245120664604, -3.719497016610582, -4.561017857447836, -7.0, -2.6230721544503495, -4.559080321020141, -7.0, -2.587249250978184, -4.557374848241307, -7.0, -3.657915936829955, -4.08099906042334, -4.269220981530011, -7.0, -1.983613128335068, -2.639126308050443, -2.5468154354551418, -7.0, -2.7713956218704094, -3.66381866823486, -7.0, -7.0, -4.557194300943595, -3.5274424120197287, -4.563184334797349, -3.8582122574519104, -7.0, -4.259617766814334, -7.0, -7.0, -7.0, -4.2585055858202585, -3.6552825351772134, -7.0, -4.561399560442028, -7.0, -2.934712049839496, -4.583855954817508, -2.5089605755382696, -4.08262981000055, -3.8694898721419673, -1.8600833612246932, -3.4207923920775887, -7.0, -3.7164922461934813, -4.558492569294311, -3.866700756042499, -2.39259484773975, -4.090011024007147, -7.0, -7.0, -7.0, -7.0, -3.7795002913500433, -2.9456006716552943, -7.0, -2.3364834179016465, -3.955988237755026, -3.3269613588176865, -7.0, -7.0, -3.6580057819539546, -3.547533311024088, -4.434856209740375, -7.0, -4.320077015119296, -3.4649364291217326, -4.310395894010226, -4.006187833539161, -3.840144713858491, -7.0, -3.8904955374150134, -3.865885356849177, -4.307389055653304, -3.766561552637531, -3.5783526415103615, -4.040103683227775, -3.6664315738532856, -3.429736134926033, -4.058407042640009, -3.521530341278711, -4.040226421767277, -3.260202745013895, -4.159296426688385, -4.082834719158263, -7.0, -3.8551469168353636, -4.59142636838178, -4.20452694299984, -7.0, -3.857684212927998, -4.419550989026631, -3.72285125039637, -3.2195354099174534, -3.5926464265465854, -4.624168607391142, -3.3448751004890465, -3.769977021138206, -4.463997445885867, -4.178624479308948, -3.954281111677642, -3.0113589537066106, -3.4015134379172833, -3.349821269512391, -3.6615813366225707, -7.0, -3.593904201112881, -7.0, -2.8575847767956573, -2.586951772374066, -3.573730052453567, -2.2597027012768227, -2.8956505175479332, -2.765359830990325, -3.064972473084506, -3.916000993326847, -4.571569089924529, -4.559487681797765, -7.0, -3.0272731407471967, -4.103746723189368, -4.086039331268039, -2.631399000232247, -2.7551719956158522, -2.7555775342988365, -4.2576785748691846, -3.196533112615811, -3.7139463190564657, -2.64759901722542, -3.0887587486171286, -3.077752331902897, -4.299757822843316, -2.738642308311227, -4.558408539791075, -3.907314601225792, -3.1056047919987337, -2.6722810323070783, -4.271713854077303, -4.304296603018355, -4.594734988590292, -3.5245691995124906, -3.983829181069782, -7.0, -2.977637880812752, -2.4370267586220122, -7.0, -2.846392345502033, -4.092018470752797, -4.577250458079471, -3.7553738764518165, -3.433317943937392, -7.0, -4.257510583190615, -7.0, -4.084862139048422, -4.6784091088214215, -3.6592314328752287, -4.258098269990316, -4.568647527350753, -7.0, -4.105442054801695, -3.26101530988617, -4.567931673283491, -3.5183703477185686, -7.0, -4.020143666491209, -7.0, -2.370548307718535, -4.265195306285716, -4.564381964057547, -2.3139482984020416, -4.015213009510909, -3.9721449594582214, -3.984347257585864, -7.0, -4.5633861472626736, -4.5899049414992605, -4.088691158069201, -4.266772463513072, -7.0, -7.0, -7.0, -3.8516455748718625, -7.0, -7.0, -2.3354209998400677, -3.520614521878236, -3.4964572283200215, -7.0, -2.3852968368328855, -3.716146494044897, -4.571044657029212, -7.0, -7.0, -4.55845655864088, -3.8070499529448028, -7.0, -4.562602114778459, -3.696913099635797, -7.0, -4.611659592651788, -4.563979170379509, -4.100198171834132, -7.0, -3.4518808627642996, -7.0, -7.0, -3.2809803088344367, -7.0, -7.0, -4.081755242535474, -7.0, -4.325197419924709, -7.0, -4.086620803576045, -3.8294324336175984, -3.9594587825328493, -2.575067860586362, -7.0, -3.8850217948622974, -7.0, -7.0, -4.043941605805343, -4.081455327822574, -2.912859475162355, -4.564381964057547, -7.0, -4.084051710032526, -4.575672690363307, -7.0, -4.55810830163055, -3.9014583213961123, -4.263221693667648, -3.0184389399350797, -3.768923379908386, -7.0, -4.586587304671755, -3.9637524214609017, -3.916022071490407, -7.0, -4.575384157099592, -4.573903855991725, -4.557362814089654, -7.0, -3.2587091005698268, -4.583878598498626, -7.0, -3.877475011224193, -3.973328014143002, -3.96827275520536, -4.175473156148423, -3.2628701517374172, -3.540058216787737, -4.558528576962073, -2.9512308693093825, -4.558372522169157, -7.0, -3.199015465037119, -3.964530684927539, -7.0, -7.0, -4.558624582816597, -7.0, -3.107523049907903, -3.5578318990842086, -3.114193834568074, -7.0, -4.558960436273091, -7.0, -7.0, -7.0, -4.584625178418518, -3.7345483893175566, -4.563481085394411, -3.655366571648936, -7.0, -7.0, -7.0, -7.0, -4.560277351854042, -7.0, -7.0, -3.306113939864634, -3.9902056151848067, -2.4549915753995015, -4.558912473106539, -7.0, -4.581038948772167, -7.0, -7.0, -2.998045230323877, -7.0, -7.0, -7.0, -4.111105619410548, -3.1183355985266434, -7.0, -7.0, -4.5608149411970516, -7.0, -3.180533896417463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658802904446173, -7.0, -7.0, -7.0, -7.0, -3.3325394468901104, -7.0, -7.0, -7.0, -7.0, -7.0, -3.423300498738075, -3.285894712480839, -7.0, -7.0, -2.7238197536852606, -7.0, -1.9120448296448702, -7.0, -2.509202522331103, -2.1319392952104246, -2.236789099409293, -3.5584445544261687, -7.0, -7.0, -7.0, -2.5224442335063197, -7.0, -2.1958996524092336, -7.0, -7.0, -7.0, -7.0, -4.035189508908448, -2.2041199826559246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.402433346219312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02861191506623, -7.0, -7.0, -7.0, -7.0, -7.0, -2.306067436355595, -7.0, -7.0, -3.741099049455883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.413299764081252, -7.0, -2.1046577910087962, -7.0, -3.9165986892551152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1818435879447726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3585693167727633, -7.0, -7.0, -7.0, -7.0, -4.060244426898225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.13443212489584, -7.0, -2.271841606536499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9845273133437926, -7.0, -7.0, -7.0, -3.472317546316842, -7.0, -7.0, -7.0, -7.0, -2.2174839442139063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6866931316334, -7.0, -7.0, -7.0, -7.0, -7.0, -2.378397900948138, -7.0, -3.2203696324513946, -7.0, -3.8555191556678, -7.0, -7.0, -3.2387614348007605, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0128372247051725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3226327116922234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.89707700320942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985695859689842, -7.0, -7.0, -7.0, -7.0, -7.0, -2.404833716619938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6532125137753435, -4.497040282255931, -7.0, -7.0, -2.3138672203691537, -3.311435968289161, -7.0, -7.0, -1.7549214096651689, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5010592622177517, -2.3710678622717363, -2.944811558558846, -2.8987251815894934, -7.0, -7.0, -4.305705970134437, -7.0, -7.0, -3.753046561626529, -7.0, -7.0, -1.904895787855206, -7.0, -7.0, -7.0, -3.0576661039098294, -7.0, -7.0, -7.0, -5.097982264210186, -2.99563519459755, -7.0, -7.0, -7.0, -7.0, -2.517855418930029, -7.0, -7.0, -2.1722136039924793, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2648178230095364, -2.708420900134713, -7.0, -3.9508514588885464, -7.0, -5.433031786321499, -7.0, -2.0871501757189, -4.243534101832062, -1.5641195526675085, -7.0, -7.0, -7.0, -2.0339261204728705, -7.0, -2.394889257167419, -7.0, -7.0, -7.0, -2.8020892578817325, -7.0, -7.0, -7.0, -3.0402066275747113, -7.0, -2.8904210188009145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.802308404843316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.800335528704904, -7.0, -4.784695729544385, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703961652091485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.388154507768882, -7.0, -7.0, -7.0, -4.001668823327807, -7.0, -7.0, -7.0, -7.0, -4.542588927185314, -3.7798128631705805, -3.1981069988734014, -7.0, -3.292951904190633, -3.6994040818153375, -7.0, -3.7243578042264267, -3.137986732723532, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0522320902523346, -4.201497264541644, -4.871316018745736, -7.0, -3.2711443179490782, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7983052820219765, -7.0, -7.0, -7.0, -3.854518581489548, -7.0, -7.0, -3.4903367141452675, -7.0, -7.0, -4.632882267597585, -7.0, -3.2706788361447066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4463818122224423, -7.0, -7.0, -3.9882467233753784, -7.0, -2.595496221825574, -7.0, -7.0, -7.0, -4.627754908466091, -2.661812685537261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8282731120520697, -7.0, -7.0, -7.0, -4.3395905522680405, -7.0, -7.0, -3.05595140532915, -2.7075701760979367, -7.0, -7.0, -7.0, -7.0, -3.4104397862103464, -7.0, -2.786751422145561, -7.0, -7.0, -7.0, -7.0, -3.2730012720637376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.758742522719065, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4456042032735974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1183749671059116, -2.5746099413401873, -2.525044807036845, -3.7172543127625497, -7.0, -3.4291060083326967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6989700043360187, -2.9800033715837464, -7.0, -2.305351369446624, -7.0, -7.0, -4.149773177559665, -2.0588054866759067, -7.0, -7.0, -2.4871383754771865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.909020854211156, -4.576059024644269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7790671278701122, -7.0, -7.0, -7.0, -2.3483048630481607, -2.56702636615906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0394141191761372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.663700925389648, -7.0, -7.0, -7.0, -7.0, -7.0, -4.51728829120251, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.997386384397313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.381656482585787, -7.0, -7.0, -7.0, -7.0, -3.7694511794020378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6424645202421213, -7.0, -7.0, -7.0, -7.0, -7.0, -3.22169943522332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.190611797813605, -7.0, -7.0, -7.0, -7.0, -3.628007884353261, -7.0, -7.0, -7.0, -2.69810054562339, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.444044795918076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2813970218487563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.919601023784111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.404149249209695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0136796972911926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426023015689876, -7.0, -7.0, -7.0, -4.732136323845126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9833104857941155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2641091563058082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.478627811914573, -2.6665179805548807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.749736315569061, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.309885559660194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357639502542187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9585638832219674, -4.178648945509116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.955519386488213, -7.0, -7.0, -7.0, -7.0, -2.669316880566112, -7.0, -7.0, -7.0, -7.0, -7.0, -4.336019211951666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0398105541483504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7774268223893115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.457503426573305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.259291184676737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.949918320775918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9156636035057732, -7.0, -7.0, -7.0, -7.0, -4.193337981247228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.575187844927661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.285827252753274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.310162065204453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.751279103983342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.649140064144219, -7.0, -4.955884893531976, -7.0, -7.0, -3.5027994256068076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.610894278373339, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6044096711329505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.942008053022313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7518562395924007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9523080096621253, -7.0, -7.0, -4.330920830595236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.177922287911278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8195439355418688, -7.0, -7.0, -3.4271614029259654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.280692164285117, -2.9777236052888476, -7.0, -2.600428325732131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.149403879508583, -7.0, -2.739572344450092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6611498572447867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277265309456845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3582395081717715, -7.0, -7.0, -7.0, -3.6127838567197355, -3.6388884247050757, -7.0, -7.0, -7.0, -7.0, -7.0, -3.426077292323316, -2.6368220975871743, -7.0, -7.0, -3.386320573894046, -7.0, -7.0, -2.019116290447073, -7.0, -7.0, -2.5998830720736876, -3.354792490450614, -2.5224442335063197, -2.3483048630481607, -7.0, -7.0, -2.2438644894340767, -1.7032913781186614, -7.0, -7.0, -7.0, -7.0, -4.337279516037941, -7.0, -2.6794278966121188, -7.0, -7.0, -7.0, -2.4502491083193614, -7.0, -7.0, -7.0, -7.0, -3.008344629252689, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4913616938342726, -2.3106933123433606, -2.216957207361097, -7.0, -2.7528164311882715, -7.0, -4.519407928955734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5848963441374497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.523226041965701, -7.0, -7.0, -7.0, -2.639486489268586, -4.7369459952260415, -7.0, -7.0, -3.062581984228163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4192947217534604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9616401028869763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6546577546495245, -7.0, -7.0, -7.0, -2.509202522331103, -2.5428254269591797, -7.0, -3.1598759699845607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.18700767354478, -7.0, -7.0, -7.0, -7.0, -2.3819516782648016, -7.0, -7.0, -7.0, -7.0, -2.1077750894177876, -7.0, -2.3891660843645326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4502491083193614, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3138672203691537, -7.0, -7.0, -7.0, -7.0, -2.354108439147401, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8394780473741985, -7.0, -7.0, -5.149576257678986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.987978915875482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.699837725867246, -4.497744913411731, -7.0, -7.0, -7.0, -3.316808752053022, -7.0, -7.0, -2.6866362692622934, -7.0, -7.0, -7.0, -7.0, -2.5378190950732744, -7.0, -7.0, -7.0, -7.0, -2.606381365110605, -7.0, -7.0, -7.0, -7.0, -2.195248291984317, -2.623766000133931, -7.0, -7.0, -4.130140705819276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.472390727626629, -7.0, -7.0, -7.0, -5.098158983460533, -7.0, -7.0, -7.0, -7.0, -7.0, -2.852479993636856, -7.0, -7.0, -2.699837725867246, -7.0, -7.0, -7.0, -7.0, -2.509202522331103, -7.0, -2.749736315569061, -7.0, -7.0, -7.0, -4.95598583468028, -7.0, -2.588458460008786, -4.244165748963329, -3.022840610876528, -7.0, -7.0, -2.5037906830571814, -1.649334858712142, -2.7344797894255772, -3.0211892990699383, -7.0, -7.0, -7.0, -2.8356905714924254, -7.0, -2.591064607026499, -7.0, -3.0599418880619544, -7.0, -2.5303826746043154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092808336654493, -7.0, -7.0, -4.351119609737672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.403352197532708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.064832219738574, -7.0, -3.8266362136341487, -3.7356787259059048, -7.0, -7.0, -7.0, -4.242168589973666, -3.4823017672234426, -3.2119210843085093, -7.0, -4.140036410975282, -3.4026052419199146, -7.0, -7.0, -3.153814864344529, -7.0, -7.0, -4.185881978409979, -7.0, -7.0, -4.053212938645568, -4.3778387731760615, -7.0, -7.0, -2.9813655090785445, -7.0, -4.00944027202683, -7.0, -7.0, -3.604442066260723, -7.0, -7.0, -7.0, -7.0, -4.276691528845039, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.127925077465084, -7.0, -7.0, -4.633397750722679, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5118833609788744, -7.0, -7.0, -7.0, -3.6893532632422525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.327226071047025, -7.0, -7.0, -7.0, -7.0, -7.0, -3.43568513794163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6374897295125104, -7.0, -7.0, -7.0, -7.0, -7.0, -4.340096937139528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.499687082618404, -7.0, -7.0, -2.821513528404773, -7.0, -7.0, -7.0, -7.0, -3.2846562827885157, -7.0, -2.6798819421128623, -2.5477747053878224, -7.0, -7.0, -7.0, -7.0, -2.246744709723841, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9050975707722384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.737987326333431, -7.0, -7.0, -7.0, -3.123960473064361, -7.0, -2.859138297294531, -7.0, -7.0, -7.0, -2.9731278535996988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.313297626086869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2608660716137683, -7.0, -7.0, -2.403120521175818, -7.0, -7.0, -3.6740953241367937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8674674878590514, -7.0, -7.0, -7.0, -7.0, -2.3201462861110542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.183516585741525, -7.0, -7.0, -7.0, -7.0, -3.6532125137753435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.829518186304599, -7.0, -3.0484418035504044, -3.7026143259031574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.614453783201774, -7.0, -2.56702636615906, -2.669316880566112, -2.2438644894340767, -7.0, -7.0, -7.0, -7.0, -3.249442961442582, -7.0, -3.339828924582621, -7.0, -2.4927603890268375, -2.7831886910752575, -7.0, -7.0, -2.3283796034387376, -7.0, -7.0, -2.632457292184724, -7.0, -3.2427898094786767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8981764834976764, -7.0, -7.0, -7.0, -7.0, -4.036549054479152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9903388547876015, -7.0, -2.852479993636856, -7.0, -3.7430391548049333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9474337218870508, -7.0, -7.0, -2.8530895298518657, -7.0, -4.067628716728246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8438554226231614, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8674674878590514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.216517771441886, -2.8397921844453293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4002500911501117, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3032320670786417, -7.0, -2.251638220448212, -7.0, -7.0, -7.0, -7.0, -3.021602716028242, -2.3932826505593647, -2.3443922736851106, -2.747411807886423, -2.597695185925512, -2.694605198933569, -7.0, -3.3870822809891834, -7.0, -7.0, -7.0, -7.0, -7.0, -2.639486489268586, -7.0, -3.269045709657623, -7.0, -7.0, -7.0, -7.0, -3.1947732688446826, -7.0, -7.0, -7.0, -2.906335041805091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.361538971269279, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.775974331129369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.993876914941211, -3.535167485114944, -4.848989206251168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6933311562440196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.741939077729199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5085297189712867, -4.499755794663781, -7.0, -7.0, -7.0, -7.0, -7.0, -3.056142262059052, -3.2062860444124324, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9429995933660407, -2.8312296938670634, -7.0, -7.0, -2.740362689494244, -7.0, -7.0, -7.0, -7.0, -2.4970832990501948, -2.9951962915971793, -7.0, -7.0, -4.006744072853106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7913898563391086, -2.47928731647617, -2.4448251995097476, -7.0, -4.496583734489095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6232492903979003, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6711728427150834, -7.0, -2.850033257689769, -7.0, -7.0, -7.0, -4.588230076620279, -7.0, -3.118264726089479, -4.245968930781295, -7.0, -7.0, -7.0, -7.0, -2.7299742856995555, -2.454692449239477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7291647896927698, -7.0, -2.330413773349191, -7.0, -3.1020905255118367, -7.0, -7.0, -4.142598010892065, -7.0, -7.0, -7.0, -7.0, -7.0, -3.712397131406715, -4.099542528695332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3964260280181024, -7.0, -4.090134556033146, -4.352529814796726, -7.0, -7.0, -7.0, -5.102049325662146, -7.0, -4.786098069954851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.582813067170428, -7.0, -4.181614951728961, -3.8042757671290937, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8145805160103183, -4.573312639954846, -7.0, -3.269746373130767, -7.0, -7.0, -7.0, -4.24398006574108, -2.8897217842562033, -2.7710973064704123, -7.0, -7.0, -3.716170347859854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357076839842412, -4.37850237345544, -5.172926780108456, -7.0, -2.836745965649491, -2.2380461031287955, -4.6131121016412875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9789561652175918, -7.0, -3.6615287401319825, -7.0, -4.161547673125727, -7.0, -7.0, -4.12949654301666, -7.0, -7.0, -3.7896512087934098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.629766267319319, -7.0, -7.0, -2.6306312440205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.471394403692833, -4.3415433318876095, -4.742725131304698, -7.0, -2.7902851640332416, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1411360901207392, -7.0, -7.0, -3.613630434925241, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7415455167762097, -7.0, -7.0, -4.335136825371625, -7.0, -7.0, -2.699837725867246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7014384544643515, -7.0, -3.425044874551389, -7.0, -7.0, -7.0, -2.677606952720493, -3.723537761532057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.617105230502378, -7.0, -2.3339508043872472, -7.0, -7.0, -7.0, -7.0, -7.0, -3.677789391068861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6832272060414346, -7.0, -7.0, -3.0034605321095067, -7.0, -7.0, -2.5409548089261325, -7.0, -7.0, -7.0, -7.0, -2.5428254269591797, -4.1557913523576175, -2.6314437690131722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.077912702949456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.679836558918098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6576103243042395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5728716022004803, -7.0, -7.0, -4.1779979630965665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1958996524092336, -7.0, -7.0, -1.7032913781186614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.33374946248197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0293837776852097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023499381548012, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6866362692622934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8920946026904806, -7.0, -7.0, -7.0, -7.0, -7.0, -2.591064607026499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426185825244511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4387005329007363, -7.0, -2.6483600109809315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4771212547196626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.14903426716125, -7.0, -1.8195439355418688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6901960800285138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9084850188786497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0413926851582254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.09754882443547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.167317334748176, -7.0, -7.0, -2.079181246047625, -7.0, -7.0, -7.0, -7.0, -2.9960736544852753, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8773713458697743, -7.0, -7.0, -1.7403626894942439, -7.0, -7.0, -2.403977963669355, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1627634871966417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.134463991534289, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3988077302032647, -7.0, -4.12602311790052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.430639336164655, -7.0, -7.0, -7.0, -7.0, -3.4559102403827433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.338346910071675, -7.0, -7.0, -3.3328422669943514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8937617620579434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.302468022284192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2806921642851177, -7.0, -2.4353665066126613, -3.7067177823367587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.574031267727719, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145910834132374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659317087843722, -7.0, -7.0, -7.0, -3.1355566635968395, -7.0, -7.0, -7.0, -7.0, -2.9344984512435675, -7.0, -3.9035782936630543, -7.0, -7.0, -7.0, -3.9237101943965627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8195439355418688, -7.0, -7.0, -4.337339439388419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.456366033129043, -7.0, -3.40705081480425, -7.0, -7.0, -3.1000257301078626, -7.0, -7.0, -2.436162647040756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.729691133696481, -2.3222192947339195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.876217840591642, -7.0, -7.0, -2.5877109650189114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.795880017344075, -7.0, -2.921686475483602, -7.0, -2.7551122663950713, -7.0, -3.263728098236335, -2.4533183400470375, -7.0, -7.0, -7.0, -7.0, -2.1156105116742996, -7.0, -7.0, -7.0, -7.0, -2.429752280002408, -7.0, -7.0, -1.4913616938342726, -7.0, -7.0, -7.0, -7.0, -2.3915231836751634, -7.0, -7.0, -2.4533183400470375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -3.2223262109908117, -3.622248571670176, -7.0, -7.0, -7.0, -4.435923958119165, -7.0, -2.998695158311656, -2.155336037465062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.681241237375587, -7.0, -2.7309436934277356, -2.8830933585756897, -7.0, -7.0, -7.0, -7.0, -2.486430478854434, -3.4102709642521845, -7.0, -7.0, -7.0, -7.0, -3.231032454528749, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.546542663478131, -7.0, -3.473138096777888, -2.3909351071033793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5332635167787148, -7.0, -7.0, -7.0, -7.0, -2.3752248996285106, -7.0, -2.795184589682424, -1.9130565819531333, -2.821513528404773, -2.4138583422700264, -7.0, -2.694605198933569, -7.0, -7.0, -2.5453071164658243, -2.494154594018443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.359835482339888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9258275746247424, -3.215373152783422, -4.371403463765366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.164352855784437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.988112840268352, -7.0, -7.0, -7.0, -7.0, -2.1658376246901283, -2.4885507165004443, -7.0, -7.0, -7.0, -2.428134794028789, -7.0, -2.7171154940041666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9508514588885464, -2.5189523997656127, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9319661147281728, -1.6434526764861874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9535986331436197, -7.0, -2.7267272090265724, -7.0, -4.607337050667031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.31998348175068, -3.0187004986662433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6138418218760693, -7.0, -7.0, -7.0, -2.171726453653231, -7.0, -2.7944880466591697, -4.734135483006706, -7.0, -2.4638929889859074, -4.545257621396889, -7.0, -2.296665190261531, -2.292994040067439, -7.0, -2.6679196853173615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0610753236297916, -7.0, -2.9003671286564705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.961516011448949, -3.06595298031387, -4.270597325510137, -3.6047658847038875, -2.0117005400505548, -7.0, -7.0, -7.0, -3.6980135039391815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1547282074401557, -7.0, -3.4924810101288766, -7.0, -7.0, -7.0, -3.239934426758005, -3.4883050259234247, -7.0, -7.0, -7.0, -7.0, -4.310544628636955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2767604225577776, -7.0, -3.64777405026883, -3.540454613671412, -7.0, -2.7285161047597666, -2.639486489268586, -4.30407024797259, -4.563552275376031, -3.0170333392987803, -4.633428054213735, -7.0, -7.0, -3.3014640731432996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9906052114239197, -7.0, -3.0711452904510828, -7.0, -3.3780343224573315, -3.9906495883188544, -7.0, -7.0, -7.0, -3.781396305196791, -7.0, -4.6283071728057354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8317418336456384, -7.0, -7.0, -7.0, -3.862926062941731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1180993120779945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808278509582768, -7.0, -7.0, -7.0, -7.0, -4.236159230579664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.740362689494244, -7.0, -7.0, -2.462397997898956, -2.999130541287371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.270142914565645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.74350976472843, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1514311436611395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3521825181113627, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1740598077250253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657524332018719, -7.0, -7.0, -7.0, -3.592731766393962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8195439355418688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9912260756924949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2487903775753857, -1.3424226808222062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.069668096911595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1838390370564214, -7.0, -7.0, -7.0, -7.0, -3.8241537379985804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7371926427047373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.304275050477128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.540917314258837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.093421685162235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.678044676072082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.193829290866235, -7.0, -7.0, -7.0, -3.7280289544205187, -7.0, -7.0, -3.2702128548962426, -7.0, -7.0, -7.0, -3.3638938977741004, -7.0, -7.0, -3.3459615418131414, -3.212516276244047, -7.0, -3.189209489582306, -7.0, -2.508395033133053, -7.0, -7.0, -3.8748875108461127, -7.0, -7.0, -7.0, -7.0, -3.249442961442582, -7.0, -7.0, -7.0, -7.0, -7.0, -3.406937392374276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3254472435942937, -7.0, -7.0, -3.398287305357401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6011179990900035, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2805783703680764, -7.0, -7.0, -4.251126984977872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3176455432211585, -7.0, -2.9566485792052033, -2.9934362304976116, -4.234416037567035, -3.258397804095509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2938043599193367, -7.0, -7.0, -3.20682587603185, -7.0, -7.0, -7.0, -7.0, -3.258397804095509, -7.0, -3.50443687881101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.359835482339888, -3.839352328895421, -7.0, -7.0, -7.0, -4.445705371207266, -7.0, -3.3502480183341627, -3.0790002523038495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7812525942484565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.665580991017953, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6423655808449733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.247236549506764, -7.0, -2.975891136401793, -7.0, -7.0, -3.416117232254335, -7.0, -7.0, -3.1583624920952498, -7.0, -7.0, -7.0, -7.0, -3.4709981696608736, -7.0, -7.0, -7.0, -7.0, -3.009541300362376, -7.0, -7.0, -2.561101383649056, -7.0, -3.0049658871068234, -7.0, -7.0, -7.0, -7.0, -3.2024883170600935, -7.0, -3.1227072543183483, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2300655512060468, -7.0, -3.016824493667488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.153394080644413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.17435059747938, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1792644643390253, -7.0, -3.147521743537597, -7.0, -7.0, -7.0, -3.505421327583281, -7.0, -7.0, -7.0, -2.284846834042906, -7.0, -7.0, -7.0, -3.1295287738587763, -7.0, -3.3498600821923312, -2.8296253533580495, -3.4220971631317103, -7.0, -7.0, -3.16345955176999, -7.0, -2.818005830532529, -2.948412965778601, -7.0, -7.0, -3.2174839442139063, -3.1784013415337555, -7.0, -7.0, -7.0, -3.5958267770732233, -7.0, -2.7713424628313694, -7.0, -3.9214159323948645, -3.2079035303860515, -7.0, -3.541454428747589, -7.0, -7.0, -3.252610340567373, -7.0, -7.0, -7.0, -3.085825533520743, -7.0, -3.3463529744506384, -7.0, -3.9262669702523056, -2.149411576421837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1818435879447726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.708633321015398, -7.0, -3.6714952268360177, -7.0, -3.382557321908786, -4.259319073229125, -3.060320028688285, -7.0, -7.0, -7.0, -3.3376588910261424, -7.0, -2.8830933585756897, -7.0, -7.0, -7.0, -3.285782273779395, -7.0, -7.0, -3.182699903336043, -2.5318437171325017, -7.0, -3.258876629372131, -7.0, -7.0, -2.897606730077943, -2.992812429876849, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.044280988044567, -7.0, -4.079940597152362, -2.706706555470474, -4.3670482644844935, -4.811098897643041, -3.9380023999433105, -3.40256227437282, -7.0, -4.664058764701992, -7.0, -3.1740390295759937, -7.0, -4.804773026242165, -7.0, -3.0076778354173825, -4.116474911908331, -4.191506904624152, -4.33693979412059, -7.0, -7.0, -4.112847883836081, -4.253725595250898, -4.2940692274708905, -3.9659773740003734, -7.0, -7.0, -3.966751664051378, -3.795880017344075, -4.372893600271661, -3.933419793174251, -3.7157109316222785, -7.0, -4.10872283832555, -4.329926440795451, -3.8252313231999002, -7.0, -4.0973267357157725, -7.0, -4.257390549337304, -3.864511081058392, -7.0, -7.0, -3.8764776465309354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2197940266919804, -7.0, -7.0, -7.0, -3.0353757656518012, -4.477129940522443, -7.0, -2.7207104386092404, -7.0, -4.624601767442247, -7.0, -7.0, -3.721645766289746, -4.1026394836913, -7.0, -3.762078087334639, -7.0, -7.0, -7.0, -3.7548832282521674, -3.673389578188305, -7.0, -7.0, -7.0, -4.3172691867066195, -4.1008872548535935, -7.0, -3.8005894413487176, -7.0, -7.0, -3.7200765727681406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.383994789441733, -7.0, -7.0, -4.042575512440191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6419695977020594, -7.0, -4.450233707532753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5877109650189114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7545012293869173, -7.0, -7.0, -7.0, -3.6960941599952233, -7.0, -7.0, -7.0, -7.0, -7.0, -5.085754244209699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.093421685162235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.309502414966703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30629632863675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.625209525381881, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4186878954494686, -7.0, -7.0, -2.92272545799326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334574371754929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8185557792978027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0526239959621972, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4806296561576167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7965743332104296, -7.0, -7.0, -7.0, -7.0, -7.0, -3.386320573894046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9632095769583877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.197831693328903, -7.0, -7.0, -7.0, -7.0, -3.493476639981276, -7.0, -2.6866362692622934, -7.0, -2.720159303405957, -2.506505032404872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149160586760595, -7.0, -7.0, -7.0, -2.2528530309798933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5046067706419537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3656751404559175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.200759326791928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.932980821923198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4085791254086675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097691040361552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.071513805095089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.616821971013603, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6880636969463443, -7.0, -4.130237247885229, -7.0, -7.0, -7.0, -7.0, -7.0, -4.090434416175122, -7.0, -7.0, -3.951813330302852, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8809064413723564, -7.0, -7.0, -7.0, -7.0, -7.0, -4.226084115975824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1222158782728267, -7.0, -7.0, -7.0, -4.064370622354286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.205835671581546, -7.0, -3.0170333392987803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325843928293292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.338755217322839, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3960248966085933, -7.0, -7.0, -7.0, -7.0, -3.388633969351789, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6807886115066824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.35430056234536, -7.0, -4.302615890543056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9838517189914717, -7.0, -7.0, -3.7102020146553847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.009365898346244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335838869579954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334212409393176, -7.0, -2.611723308007342, -3.202741238033296, -4.334051440346892, -7.0, -2.540020759009994, -2.7094904451648456, -7.0, -4.04083959468534, -7.0, -3.443262987458695, -7.0, -2.5157994514673847, -3.100973313405724, -7.0, -3.5705234818079274, -1.9205173958532884, -4.334011188761349, -3.7334179686894733, -7.0, -4.337079711800931, -4.035009249707063, -3.8603579736743696, -2.5049072879073857, -4.035189508908448, -7.0, -4.336019211951666, -4.337279516037941, -3.339828924582621, -4.33374946248197, -4.337339439388419, -7.0, -3.406937392374276, -4.334574371754929, -7.0, -7.0, -3.6400240441088667, -7.0, -7.0, -7.0, -4.335237186909729, -7.0, -4.335397717145591, -4.335257256434532, -3.079085995585152, -2.4853251723647625, -7.0, -3.6368087344744513, -3.3540123456672206, -4.035309640156801, -3.8575335121635788, -4.334996280243225, -3.8588578876206907, -7.0, -7.0, -7.0, -7.0, -7.0, -1.94270070784522, -7.0, -4.032538179260007, -7.0, -7.0, -3.0263103588818407, -3.865597435075882, -7.0, -3.1678684699514594, -2.0556719515266586, -4.334272757407155, -3.7350996531988936, -7.0, -4.334835601526356, -7.0, -7.0, -7.0, -7.0, -4.342007929017339, -3.7356388146361157, -4.346137730160444, -3.7352395000788343, -3.8636994819362567, -7.0, -1.960740761500965, -3.340563083333371, -4.335096674261542, -4.333709182897272, -7.0, -4.03259861685471, -7.0, -4.0341068297076434, -4.033363432619723, -7.0, -2.414230329001037, -3.7327354312288112, -7.0, -7.0, -3.042181594515766, -7.0, -7.0, -4.035809829650629, -7.0, -3.440968085459358, -3.55636281525692, -3.7320115734128025, -2.997664332875219, -4.0377650359678245, -2.9977833992178162, -4.335979142340354, -3.6383294870707776, -7.0, -3.3860230915330054, -3.747703052659987, -4.334674863340148, -2.3316758706381853, -2.112321759496482, -7.0, -7.0, -3.434947947911181, -3.040762816328596, -7.0, -2.9010884025090147, -3.397862793900405, -4.341394951524042, -3.858537197569639, -4.336239528754922, -7.0, -4.333507728917455, -7.0, -3.2807348293181673, -7.0, -7.0, -7.0, -4.333689041703905, -7.0, -2.699837725867246, -3.534588111892698, -3.058227126133445, -4.043676585602717, -3.557847927224487, -3.3990440809475486, -7.0, -3.555799554003604, -2.8492608615268398, -4.077803798076088, -3.203091193315651, -7.0, -4.334895863011881, -7.0, -2.788430262532993, -7.0, -4.333850145102545, -4.3357386470050505, -3.108525229488806, -4.333910543472979, -7.0, -3.142858551113391, -3.7393943184250933, -3.4946713037544734, -4.337858429041094, -3.6433934504731535, -7.0, -7.0, -2.1268753382290857, -7.0, -3.555618350489831, -7.0, -4.335237186909729, -4.033363432619723, -7.0, -4.334152052992287, -3.459675139563483, -7.0, -3.1129704155080913, -7.0, -2.884834412185107, -2.24256846111836, -7.0, -4.3419881690481885, -3.739038047296087, -7.0, -3.5667516576717624, -3.651859269246949, -3.7372522944432975, -3.8600383898071935, -4.339670024244455, -3.1318391234923233, -3.2939849689526044, -3.0343037076079074, -7.0, -3.7320115734128025, -7.0, -2.3892694755046238, -7.0, -3.3294903316193807, -7.0, -3.6470698522337863, -7.0, -4.034167049413581, -4.333689041703905, -7.0, -3.7364363439795194, -7.0, -7.0, -7.0, -7.0, -4.338037934903125, -4.333467426905371, -7.0, -4.033041569076784, -7.0, -7.0, -4.335618349377605, -7.0, -3.8577344348976292, -3.3888114134735234, -3.869094758435343, -3.3120715213029315, -2.266591201940714, -3.8565677869842427, -4.33443364445948, -7.0, -3.497738996902168, -4.333588321723421, -7.0, -4.338376799232071, -7.0, -2.2938185388802057, -7.0, -7.0, -7.0, -4.334091688202155, -7.0, -4.333568174923988, -4.036269495742816, -3.714245911017894, -7.0, -7.0, -4.333507728917455, -3.635423423947685, -4.03436772148161, -4.03462845662532, -7.0, -3.6385890832927172, -3.1745830891776, -4.334895863011881, -2.9133935997862364, -2.96140210810033, -7.0, -4.333809874855226, -7.0, -3.5892605847872807, -7.0, -3.038305485793075, -3.0836618478730786, -2.8350231169115405, -7.0, -7.0, -4.334735147131833, -3.3649260337899753, -3.232859333958687, -3.172622388412072, -3.181672122068266, -2.95820062484609, -7.0, -4.03322264667025, -4.0327396052094935, -4.035429738184548, -3.3023702901274774, -3.385665843515682, -7.0, -3.383496207794542, -4.33767884895367, -7.0, -4.033524274983268, -7.0, -4.33531745944485, -3.1017832395359197, -4.045283851395136, -4.340186237916345, -3.7344997988467563, -2.553353730509349, -3.734779833986647, -4.333991061569507, -2.758927990197405, -3.856910060300786, -7.0, -3.4951080400257655, -4.335437840434784, -3.8782727899035083, -4.0402462150577065, -3.273541391414393, -4.037705313135537, -3.445545826436101, -7.0, -2.4423754319047664, -3.270601207315846, -3.7321121813966434, -7.0, -7.0, -3.3117153409899256, -3.7416045736602705, -7.0, -4.335076597314406, -3.7374312005145827, -7.0, -7.0, -7.0, -3.2959667268431296, -7.0, -7.0, -4.039751111967191, -3.8583165857151207, -2.5501563844606956, -3.2979427962988312, -2.648525621044213, -7.0, -3.574301411369372, -2.4475611176714263, -3.23605254695602, -7.0, -3.864174748390403, -4.034909073367748, -3.7458746873072974, -2.949317708578839, -3.5050530267664497, -4.334212409393176, -7.0, -7.0, -3.564902672529205, -7.0, -3.3828372023616065, -3.857935264719429, -3.029287128195125, -7.0, -3.052584021782163, -7.0, -7.0, -3.7983536494378956, -4.042862284965543, -3.9022640425804287, -7.0, -3.3401375306780454, -7.0, -3.943890048248473, -3.109231587666042, -3.415146109816988, -7.0, -7.0, -2.871661594213514, -3.7098958959608153, -3.041331151474711, -3.5175540478934977, -3.0486683441400135, -3.1981829145283434, -3.8668319172660026, -3.892817824309576, -3.6158729303734223, -3.865932668193186, -2.798789303893418, -3.7601660533515986, -3.3588281256465544, -3.742685862397225, -3.5518767631329724, -3.404922618201421, -3.5487753641351265, -7.0, -3.39451206240183, -3.8812590869948047, -3.695007137399929, -3.410248449698567, -3.4146988443936896, -3.9634572601167077, -3.4728126868675537, -3.513150985376206, -4.038461196178564, -3.5819591348886286, -2.595725204619729, -3.1214632849497366, -2.601754985726854, -2.8242413391651398, -2.5870436333497824, -3.866444877666462, -2.6482797891073147, -3.8717091176588196, -2.1432653081007023, -3.0951534951918838, -3.281866292147957, -3.3434742418248278, -2.5264883913765117, -2.7671558660821804, -3.754233630120203, -3.3123238548327696, -3.3158177338478967, -7.0, -2.74350976472843, -2.6542716385214287, -3.258397804095509, -4.042752659005548, -2.54725846811543, -2.395734989139622, -2.5389528728350346, -3.859178341043755, -2.6489789179974625, -3.859938471600862, -2.633720878999598, -3.461148228743249, -2.0662955011492445, -3.3249166245928636, -3.0676950810079404, -4.335838869579954, -3.50985750359542, -3.1549493349815436, -3.1572084425277938, -3.7573770469760275, -3.0128372247051725, -3.0517311960598494, -3.0897955195268247, -2.848225351982192, -3.296465743882869, -2.605864781665245, -2.61491227452664, -3.395578760073066, -2.5295417018298836, -3.8764872659889766, -3.1358058893081124, -2.8715385971800256, -2.8267776004800336, -3.860916680183462, -7.0, -7.0, -7.0, -4.520902558987522, -3.3790404105101395, -4.337079711800931, -3.39824873054884, -7.0, -4.375517300649672, -3.130990657630152, -4.351622399736366, -4.037426497940624, -7.0, -7.0, -7.0, -3.1710934753828313, -4.047780924741197, -7.0, -7.0, -4.430171841456267, -7.0, -4.38172861853511, -7.0, -4.34411706783031, -4.086146190685901, -7.0, -7.0, -3.7405995128111567, -7.0, -7.0, -3.4490770892633167, -7.0, -7.0, -3.6266482684740105, -3.3662227753916363, -3.3648465072411535, -7.0, -7.0, -3.8636004025933444, -7.0, -4.337658891026142, -7.0, -7.0, -3.4253349238884816, -7.0, -3.4974825373673704, -3.9262566770031975, -7.0, -4.120343562438025, -7.0, -3.8898430655962555, -7.0, -7.0, -7.0, -7.0, -3.853647520853222, -7.0, -7.0, -7.0, -4.39929289804391, -3.966626619751244, -7.0, -7.0, -7.0, -4.341137638740964, -2.966485288615243, -4.34206720353101, -4.076822423342773, -7.0, -7.0, -3.5191422616644465, -4.336199479466631, -3.946091841038187, -7.0, -7.0, -4.039453778961736, -7.0, -7.0, -4.034267397038025, -3.362276794197056, -3.7434117630396684, -4.0429297333431595, -3.5799631549550854, -4.348733103798286, -3.0387285143512552, -3.7460695605412515, -3.6483762763872707, -4.4145221155206515, -4.363818737564178, -3.8842098704188714, -7.0, -7.0, -3.371056991184941, -7.0, -7.0, -7.0, -3.719289844693328, -7.0, -4.006180697638505, -3.2453087762064916, -3.734351707294765, -7.0, -7.0, -4.33577873881047, -7.0, -7.0, -3.747353535486769, -4.3846221884515435, -7.0, -7.0, -7.0, -3.1185463975292795, -4.335237186909729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4409090820652177, -4.0351294308208, -4.347193361847937, -7.0, -7.0, -7.0, -4.338954252377607, -4.338177499296536, -3.861992160051738, -3.335474616860434, -4.090011024007147, -3.384389260324799, -4.336679827345716, -7.0, -4.071918810363806, -7.0, -7.0, -3.24369573586642, -7.0, -7.0, -4.3588291816933245, -4.083538451230139, -7.0, -7.0, -7.0, -3.8626480890490678, -7.0, -4.3969835082752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6576389846160815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.893928126542607, -7.0, -7.0, -7.0, -4.0988224822367725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557194300943595, -2.2041199826559246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3242824552976926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4920616045125992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.595496221825574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.467830005178976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426210241414335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.669307580798836, -7.0, -2.651278013998144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1436392352745433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.444044795918076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1007150865730817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9385197251764916, -7.0, -7.0, -7.0, -7.0, -2.7315887651867388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432836257800043, -7.0, -2.6954816764901977, -4.543074235033532, -7.0, -7.0, -2.6201360549737576, -7.0, -2.576916955965207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8670744611517724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.093999192869392, -7.0, -7.0, -7.0, -7.0, -4.6546577546495245, -4.500428598023598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.100952660908403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.579177447294851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.300095257323717, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7709256146389993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.049876719873882, -7.0, -5.1719954282039575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603220178008266, -7.0, -7.0, -4.63164666295842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.389343311252078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.881935972915227, -7.0, -7.0, -7.0, -3.321391278311689, -7.0, -7.0, -2.851869600729766, -2.663700925389648, -7.0, -7.0, -3.4311492447760616, -7.0, -7.0, -7.0, -3.401113213955382, -2.194514341882467, -7.0, -2.484299839346786, -7.0, -2.621176281775035, -7.0, -3.518765111973402, -7.0, -7.0, -7.0, -2.6794278966121188, -2.4927603890268375, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6400240441088667, -7.0, -7.0, -7.0, -7.0, -2.576341350205793, -7.0, -7.0, -7.0, -2.576341350205793, -2.8937617620579434, -3.414722721158878, -7.0, -7.0, -7.0, -7.0, -7.0, -2.561101383649056, -7.0, -2.56643749219507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.222117928758222, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5171958979499744, -7.0, -3.7423584833454764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5440680443502757, -7.0, -7.0, -7.0, -3.2871669874200933, -7.0, -7.0, -7.0, -2.329058719264225, -3.0484418035504044, -7.0, -3.5352941200427703, -3.8015409061903185, -7.0, -7.0, -7.0, -4.135585799233926, -7.0, -7.0, -3.0965624383741357, -7.0, -7.0, -7.0, -2.7041505168397992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6893976628212823, -7.0, -3.144262773761991, -7.0, -7.0, -7.0, -1.9432471251378618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.778766065508379, -7.0, -7.0, -7.0, -2.7745169657285493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.127315412520904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.256717745977487, -7.0, -7.0, -7.0, -7.0, -3.3928634949578282, -7.0, -7.0, -7.0, -7.0, -2.638988159343682, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.351603072419129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8948696567452528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.886490725172482, -7.0, -7.0, -2.7267272090265724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6989700043360187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0251009610468134, -7.0, -3.035829825252828, -2.8904210188009145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.842765208181785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8041394323353503, -7.0, -7.0, -2.833147111912785, -2.807873132003332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.906335041805091, -7.0, -7.0, -2.294466226161593, -1.8750612633917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.480533912223829, -2.935339292710299, -4.8311944620597, -7.0, -7.0, -3.4669293757018003, -3.0599418880619544, -7.0, -2.5327543789924976, -1.1449332770652945, -3.010299956639812, -2.5442231218316245, -7.0, -7.0, -7.0, -7.0, -2.188084373714938, -7.0, -7.0, -7.0, -3.0941215958405612, -7.0, -2.916629385628418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.734183542152668, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9705793057148506, -3.4024763265233604, -7.0, -2.423245873936808, -7.0, -7.0, -4.067219688974141, -7.0, -7.0, -7.0, -3.6657372963937283, -7.0, -7.0, -3.736077637003946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8788854701365376, -4.37826613891235, -4.871739266495737, -7.0, -3.002166061756508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.880705760006643, -7.0, -7.0, -4.333296101617611, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5173278822943734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3205616801952367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.341028729729668, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6127838567197355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9675983721901957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.15060295179301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.154210882206974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.919601023784111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4743619760326307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.620864475265121, -3.043853283705882, -7.0, -7.0, -7.0, -7.0, -2.4608978427565478, -2.675400905264045, -7.0, -7.0, -3.020775488193558, -3.535806039376913, -7.0, -7.0, -7.0, -7.0, -2.603144372620182, -7.0, -3.8611280030902804, -7.0, -7.0, -7.0, -7.0, -2.7831886910752575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.712369058979705, -3.714497408649806, -7.0, -2.595496221825574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.916980047320382, -4.221674997070769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.315904776726982, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6101276130759956, -7.0, -7.0, -2.808885867359812, -7.0, -3.763951826033324, -7.0, -7.0, -7.0, -7.0, -3.041787318971752, -7.0, -7.0, -2.8220647947787074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.611723308007342, -2.386498965550653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.079253622430078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.473738309626689, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7745169657285493, -7.0, -7.0, -7.0, -3.0090257420869104, -3.495442573988997, -7.0, -2.8438554226231614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3483048630481607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.526339277389844, -4.672679607538666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.142493751023144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3927848582254354, -7.0, -4.021630263171184, -7.0, -7.0, -2.5237464668115646, -7.0, -7.0, -3.028977705208778, -2.885643871835764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.443106456737266, -7.0, -7.0, -7.0, -3.9090744014009045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.841672250073634, -7.0, -7.0, -7.0, -7.0, -2.6599162000698504, -3.7558575389603575, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5949447366950835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.831167235523549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7883451651521183, -7.0, -7.0, -3.919987588054925, -7.0, -7.0, -7.0, -4.12881914219451, -7.0, -3.103974669386388, -3.554108260657051, -3.779676641573066, -7.0, -7.0, -4.5759264411633405, -4.05493846198963, -4.104159218143249, -3.5499136595638374, -7.0, -3.9127886970523704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8824178010972825, -7.0, -7.0, -4.325094710984229, -4.451479405124862, -7.0, -3.3067080309848262, -7.0, -3.736794754924361, -7.0, -7.0, -7.0, -4.239524703156667, -7.0, -4.049760551762476, -3.9132308711135604, -3.965013450272248, -7.0, -3.970381748583891, -7.0, -7.0, -7.0, -3.7536213547777604, -7.0, -2.7793352090989942, -7.0, -7.0, -4.07291131585408, -3.187708686423428, -7.0, -7.0, -3.73471984165568, -7.0, -7.0, -3.502700175310563, -7.0, -7.0, -7.0, -7.0, -3.679073411294163, -7.0, -7.0, -7.0, -7.0, -4.612381153235321, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1774403000220808, -2.5057664361691927, -7.0, -7.0, -7.0, -4.60591887481288, -4.263375650509443, -2.0863598306747484, -7.0, -7.0, -3.2995072987004876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.391552566610928, -7.0, -2.795880017344075, -7.0, -7.0, -3.993920958801287, -7.0, -7.0, -7.0, -3.7866804531966487, -7.0, -3.9300112058961556, -3.0203612826477078, -7.0, -7.0, -3.052155067199565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.993201015824255, -3.31929447555578, -3.4631461367263494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40705081480425, -7.0, -3.3016809492935764, -7.0, -7.0, -7.0, -2.5906932564421776, -4.33374946248197, -7.0, -7.0, -7.0, -7.0, -3.512083758343917, -7.0, -7.0, -7.0, -7.0, -3.719680686428995, -7.0, -2.7133225049870275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.795184589682424, -7.0, -7.0, -7.0, -2.566276751530018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8923729073984363, -7.0, -7.0, -7.0, -7.0, -3.7946506733159673, -7.0, -7.0, -7.0, -4.31492005599242, -2.845098040014257, -3.6604860157849677, -3.982791170279078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.852601969338235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4216039268698313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6742179455767, -3.5221833176186865, -7.0, -7.0, -7.0, -3.366236123718293, -7.0, -7.0, -3.9793890131122187, -7.0, -7.0, -7.0, -3.4718781993072905, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5640739789771465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.596047007545439, -3.6231458746379395, -7.0, -2.361727836017593, -7.0, -7.0, -7.0, -7.0, -3.575303333422399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3729120029701067, -7.0, -7.0, -4.517367469777369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.056294887076228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.094016681120422, -7.0, -7.0, -2.44870631990508, -4.735710652281123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.863322860120456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4263567096139225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669642247025738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2487903775753857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.60151678365001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0236639181977933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6980508096542675, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1078880251827985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.391146906415991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9835360816029923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626689305465622, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4456042032735974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6085260335771943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.973589623427257, -7.0, -7.0, -7.0, -2.3010299956639813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.235589763228279, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.584331224367531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.187520720836463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658326265298826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5967619862752436, -7.0, -7.0, -7.0, -4.275351671786708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2570062179123065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.576341350205793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2278867046136734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.51807942810387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1903316981702914, -7.0, -7.0, -7.0, -3.581076933158591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.435095486058288, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3636119798921444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.671728088239558, -7.0, -3.414137362184477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.852479993636856, -7.0, -7.0, -4.192985379093162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3121773564397787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7708520116421442, -7.0, -3.2013971243204513, -5.149265311738653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.98344585734134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9668454236549167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6073477767684134, -7.0, -2.949877704036875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.620673816578646, -2.9731278535996988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.379124146070392, -4.733968836780335, -7.0, -7.0, -7.0, -2.677150521273433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.24551266781415, -7.0, -7.0, -3.358886204405869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1368473499574545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0512683188703855, -7.0, -7.0, -7.0, -7.0, -7.0, -4.309438524641924, -7.0, -7.0, -3.2921452678141216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.126834630715719, -4.0851478121269045, -7.0, -4.632376297316548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985965078304871, -7.0, -3.0310042813635367, -7.0, -7.0, -7.0, -7.0, -2.2329961103921536, -7.0, -7.0, -7.0, -3.7820219199132845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7481880270062007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6627578316815743, -7.0, -2.1760912590556813, -7.0, -7.0, -2.7988232242204005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0232524596337114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.678518379040114, -3.399345569666288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.269512944217916, -7.0, -2.367355921026019, -7.0, -2.4312790981129244, -2.936513742478893, -2.9431646302222556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.267711326726692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.279826581794015, -7.0, -7.0, -7.0, -2.3180633349627615, -7.0, -2.6532125137753435, -2.173671784932268, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2576785748691846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5010592622177517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.657533887557986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276392863069535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0863598306747484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.999130541287371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9786369483844743, -7.0, -7.0, -4.576398945124239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.516415170606379, -7.0, -7.0, -7.0, -2.4502491083193614, -2.3283796034387376, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335237186909729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9003671286564703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.225309281725863, -7.0, -7.0, -3.024074987307426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.156851901070011, -7.0, -7.0, -4.040892300326412, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.146128035678238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9647309210536292, -7.0, -3.509740015570382, -3.794766797940821, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8109042806687006, -7.0, -7.0, -7.0, -7.0, -2.100370545117563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7371926427047373, -7.0, -7.0, -4.426787690457996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.068018793276356, -7.0, -7.0, -7.0, -7.0, -2.8305886686851442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5276299008713385, -7.0, -2.296665190261531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1652443261253107, -7.0, -7.0, -7.0, -7.0, -7.0, -3.681241237375587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5943925503754266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9497964591611532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.566241023301467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0394141191761372, -7.0, -7.0, -7.0, -3.471047107007469, -7.0, -5.131916858753586, -7.0, -7.0, -4.242901534681515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.459392487759231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.776119799052988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2591158441850663, -7.0, -4.610479169346105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603988314428608, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.126621980658712, -7.0, -7.0, -7.0, -7.0, -7.0, -2.357934847000454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.846337112129805, -2.3131639093135794, -7.0, -7.0, -7.0, -7.0, -3.7203247174174416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6522463410033232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.255272505103306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6278776945799716, -3.7632494007603223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9003671286564703, -7.0, -7.0, -7.0, -2.8296253533580495, -3.220108088040055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2810333672477277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1156105116742996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4756711883244296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.649334858712142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0145205387579237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8920946026904806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.869190961954971, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.523588546610636, -7.0, -7.0, -7.0, -2.251232527301566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9242792860618816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9867717342662448, -7.0, -7.0, -1.6232492903979006, -7.0, -7.0, -7.0, -2.7558748556724915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7442929831226763, -7.0, -1.9912260756924949, -1.8920946026904806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9268567089496924, -2.2648178230095364, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1595671932336202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1335389083702174, -7.0, -7.0, -2.3349561161368517, -2.8257505813480277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.110589710299249, -7.0, -7.0, -3.4109458586877746, -7.0, -7.0, -2.367355921026019, -7.0, -7.0, -7.0, -3.747644819328248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9474337218870508, -7.0, -5.432919608590166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.301225384221708, -2.8216772586543666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.67833624673218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5911759503117913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8523884893737295, -7.0, -7.0, -4.302731264944306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.022840610876528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7723950610820003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1627833902457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.77981646845598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5881596163830918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.009663316679379, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.032319382401304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335397717145591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.319522449065454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9647309210536292, -7.0, -7.0, -7.0, -3.7719180361289046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1492868696291, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.0978332097322445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.94875518016827, -7.0, -4.955835215464196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.10122450682362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.347505649475902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542053214823124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.377410986477962, -4.871190424556114, -7.0, -7.0, -7.0, -7.0, -7.0, -4.339625323047164, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274527304396044, -7.0, -7.0, -7.0, -7.0, -3.4127964287165433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.056209042104069, -7.0, -7.0, -7.0, -7.0, -7.0, -2.287801729930226, -7.0, -7.0, -7.0, -7.0, -7.0, -2.978750981332984, -1.0043213737826426, -2.637989780784685, -3.5549965066930604, -7.0, -7.0, -7.0, -2.1319392952104246, -2.3483048630481607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.632457292184724, -2.0293837776852097, -2.456366033129043, -1.9912260756924949, -7.0, -7.0, -4.335257256434532, -7.0, -2.576341350205793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2218487496163566, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2278867046136734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.026574118150334, -2.0253058652647704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.20682587603185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8530895298518655, -7.0, -2.186579670669986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6989700043360187, -1.7930916001765804, -7.0, -7.0, -2.3654879848909, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9590413923210934, -7.0, -2.5440680443502757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4704839943156855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3201462861110542, -7.0, -7.0, -7.0, -7.0, -3.7276957537986664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7288946220436823, -7.0, -7.0, -7.0, -7.0, -2.8114912218475876, -7.0, -7.0, -2.682145076373832, -7.0, -7.0, -2.6893088591236203, -2.5921767573958667, -7.0, -2.302114376956201, -7.0, -2.3180633349627615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149265311738653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9956351945975501, -7.0, -1.0791812460476249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.180412632838324, -7.0, -7.0, -7.0, -3.165541076722373, -7.0, -7.0, -7.0, -7.0, -7.0, -3.681331705969166, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6073477767684134, -7.0, -7.0, -2.6554585929400747, -7.0, -7.0, -7.0, -7.0, -2.3873898263387296, -2.7993405494535817, -2.6344772701607315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7805573201495222, -2.2335037603411343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.645422269349092, -2.2810333672477277, -2.479647278769387, -2.079181246047625, -7.0, -7.0, -7.0, -7.0, -5.097808940207254, -2.9731278535996988, -7.0, -7.0, -7.0, -7.0, -2.786041210242554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7259116322950483, -7.0, -7.0, -7.0, -2.6893088591236203, -7.0, -2.918554530550274, -7.0, -7.0, -2.113943352306837, -7.0, -1.6532125137753437, -2.061452479087193, -7.0, -7.0, -2.24551266781415, -7.0, -7.0, -1.5069692271226607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4315728185856536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.39826560744918, -3.7275412570285567, -7.0, -7.0, -7.0, -7.0, -3.776192514747072, -7.0, -7.0, -4.1368473499574545, -3.695043658821294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.39778556539804, -4.502326956667444, -7.0, -7.0, -7.0, -7.0, -4.610489818125192, -7.0, -4.941680347291402, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274365706447425, -7.0, -7.0, -7.0, -3.308625384287424, -7.0, -7.0, -3.7587713562655973, -7.0, -7.0, -7.0, -7.0, -7.0, -3.591287265058499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.773859552376687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.33909352266184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3283796034387376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9668959012123954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6343652953033616, -2.367355921026019, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7204074008031087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.148232359644905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2541016739018396, -7.0, -7.0, -7.0, -2.8690640060845967, -2.1619342799296826, -7.0, -7.0, -7.0, -7.0, -7.0, -2.595016709265098, -7.0, -7.0, -1.2704459080179626, -3.4860392250921777, -7.0, -7.0, -7.0, -3.165541076722373, -3.1504494094608804, -7.0, -3.6177107625232265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.079085995585152, -7.0, -2.8937617620579434, -2.712369058979705, -7.0, -7.0, -7.0, -2.8296253533580495, -7.0, -7.0, -7.0, -2.6440867345657413, -3.13640344813399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2392994791268923, -7.0, -7.0, -7.0, -7.0, -4.0726909550128685, -7.0, -7.0, -7.0, -7.0, -3.498172660636544, -2.765420173578722, -7.0, -7.0, -4.2473102774556555, -7.0, -2.4671639659690903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2335037603411343, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8161902935342806, -7.0, -7.0, -7.0, -7.0, -7.0, -3.130333768495006, -7.0, -7.0, -7.0, -3.213384924916388, -7.0, -7.0, -7.0, -2.9564085711958326, -7.0, -7.0, -7.0, -7.0, -3.2624510897304293, -7.0, -3.12057393120585, -2.6156870819348312, -7.0, -3.40212376240064, -1.4781071677013136, -1.9312184910594619, -7.0, -7.0, -3.3251049829714074, -7.0, -3.6460114095912393, -2.383815365980431, -7.0, -7.0, -7.0, -4.444489797808013, -7.0, -7.0, -2.873320601815399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.732647658971915, -7.0, -7.0, -7.0, -3.1122697684172707, -3.110252917353403, -7.0, -7.0, -2.975431808509263, -2.965906915495192, -7.0, -7.0, -7.0, -7.0, -2.929418925714293, -3.262094964674063, -3.3234583668494677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2016701796465816, -7.0, -7.0, -7.0, -2.749736315569061, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0615721938673013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2670151976815847, -7.0, -3.9196532823103643, -7.0, -7.0, -2.526211824863059, -3.1370374547895126, -2.385095338854789, -3.2232362731029975, -2.2385478876813276, -2.008363563484802, -7.0, -2.8976270912904414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0332896932905147, -7.0, -2.046701692585523, -7.0, -3.137354111370733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.638156336676239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.807535028068853, -3.3395508108256715, -4.0389012666222, -7.0, -7.0, -7.0, -1.6731233471534077, -7.0, -7.0, -3.18440748541232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.130170852059858, -7.0, -7.0, -7.0, -7.0, -3.1405080430381793, -2.8429211207599825, -7.0, -2.873320601815399, -3.339053735709139, -7.0, -2.8497878242376853, -7.0, -7.0, -3.1142772965615864, -7.0, -3.4837298990000236, -2.451530591934032, -2.394013663157313, -7.0, -3.667279467298674, -7.0, -7.0, -3.1293675957229854, -7.0, -7.0, -2.7151673578484576, -3.105510184769974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.673596818209052, -3.286231854028553, -2.731320101718905, -2.857935264719429, -3.773619296135908, -7.0, -7.0, -3.133283365860989, -7.0, -7.0, -3.212986184736668, -3.1405080430381793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4783878216585498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1501421618485588, -7.0, -7.0, -7.0, -3.7019563451928037, -3.554489160003819, -4.036839604795666, -7.0, -7.0, -3.558288469433135, -7.0, -7.0, -7.0, -7.0, -3.3053513694466234, -3.581038948772167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9304395947667, -4.454875335744946, -7.0, -7.0, -7.0, -7.0, -3.48422863769372, -4.416607226792504, -3.3800145058160997, -7.0, -4.074267742553358, -4.110286608403566, -7.0, -4.810050963782019, -3.5092529405903825, -4.302590648306554, -7.0, -3.548417768495678, -7.0, -4.3190852293386985, -7.0, -4.327093167048512, -3.9306434410421645, -3.678644425908479, -4.1112625136590655, -7.0, -7.0, -7.0, -7.0, -3.281849481182487, -7.0, -4.593396842300207, -7.0, -7.0, -7.0, -4.2641564367458855, -7.0, -7.0, -3.9307792854229726, -3.4079429827990975, -7.0, -3.6808791744268112, -3.047254366806777, -2.734333025494258, -7.0, -7.0, -7.0, -2.9994205543077666, -7.0, -7.0, -7.0, -3.6958026089088825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6756133883967066, -3.7059401975314, -4.874635446114873, -7.0, -7.0, -7.0, -4.6229907048100864, -7.0, -7.0, -3.7085908451503435, -7.0, -7.0, -7.0, -7.0, -4.301029995663981, -7.0, -3.441616594274755, -2.9590413923210934, -3.48973354378241, -3.0988743654836055, -7.0, -4.01456253812761, -4.0990933597731, -3.327767489902729, -3.945222316635341, -7.0, -7.0, -7.0, -3.578333530221577, -7.0, -7.0, -7.0, -2.3250536206057983, -7.0, -2.5152715769643432, -7.0, -2.8771793076256973, -3.2119210843085093, -2.761551988564182, -3.257838506552783, -3.3432115901797474, -7.0, -7.0, -3.074450718954591, -3.203576774977973, -2.5613720064670162, -3.3140779917792127, -2.977952121201462, -3.188365926063148, -2.7078975748936176, -2.48223818557017, -7.0, -3.343014497150768, -3.2598326990634834, -2.8360074591255313, -2.829089253448099, -2.863521122841043, -7.0, -7.0, -2.826722520168992, -3.2938595539820534, -7.0, -7.0, -3.5305554148925595, -2.499891724766401, -3.4073290897914963, -7.0, -2.9309490311675233, -7.0, -2.241973165892279, -7.0, -7.0, -7.0, -2.967079734144497, -7.0, -3.243781916093795, -3.2259980915164155, -7.0, -2.940872085117753, -3.271609301378832, -2.876506504265881, -7.0, -2.2276725026453836, -7.0, -2.5595076406424986, -3.8764872659889766, -7.0, -7.0, -7.0, -7.0, -3.0303105200628067, -7.0, -3.2678754193188975, -2.7582304084577496, -7.0, -2.9839339903647955, -7.0, -2.954121855324949, -7.0, -7.0, -7.0, -7.0, -3.0953088613853814, -2.195207549502754, -7.0, -2.735864930017006, -7.0, -7.0, -7.0, -2.5278016945768633, -2.975891136401793, -2.4104156728052764, -2.9572651342952905, -3.0113589537066106, -7.0, -7.0, -2.963247995726138, -2.9103194227966793, -2.125558714560702, -2.8309092995464433, -7.0, -7.0, -3.11806622171401, -3.2534591643398376, -3.159266331093494, -3.4689378056654614, -3.189069009399324, -3.081527326244805, -3.706077387310076, -4.306167591572845, -3.057729481433751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.952165426358076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0850526086449856, -3.508798965403905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4913616938342726, -3.1815577738627865, -7.0, -3.758609142659744, -7.0, -3.600210306409328, -7.0, -7.0, -2.743901550485179, -7.0, -7.0, -4.001863462692524, -7.0, -7.0, -7.0, -7.0, -2.8339965879428433, -7.0, -7.0, -7.0, -7.0, -3.0674428427763805, -7.0, -7.0, -7.0, -3.002166061756508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7000110623221123, -2.4131607314521517, -3.0577421558287528, -7.0, -3.3931363002692168, -2.944630701856278, -2.6337088621630316, -7.0, -3.426185825244511, -7.0, -2.842297134328065, -7.0, -2.1592974644303227, -3.2369904646531475, -3.392609030497567, -2.6395631046841332, -2.196453638006586, -7.0, -3.0982109460284746, -7.0, -3.229681842317676, -3.7028611705729295, -2.9301846522986197, -2.825840962449408, -3.402433346219312, -7.0, -7.0, -3.008344629252689, -3.2427898094786767, -7.0, -3.40705081480425, -7.0, -3.3254472435942937, -7.0, -2.4853251723647625, -7.0, -3.414722721158878, -3.714497408649806, -7.0, -7.0, -7.0, -3.220108088040055, -7.0, -3.2218487496163566, -2.6440867345657413, -7.0, -2.7433355242117883, -2.7007037171450192, -2.00469190062186, -2.7998572591896123, -7.0, -3.6981875698661226, -2.7984779980639836, -3.2522055549271984, -3.4681995860726125, -3.7018269303971394, -3.691346764134822, -7.0, -2.2297387094752668, -7.0, -7.0, -7.0, -7.0, -2.7157462885921344, -2.8268034169712943, -3.2182728535714475, -3.1354506993455136, -2.5627029631478573, -3.695043658821294, -2.8037131100453947, -7.0, -3.697490887171057, -7.0, -7.0, -3.395588463568244, -7.0, -2.5494120098036346, -3.107718610520263, -2.3793449363557286, -7.0, -2.7676505067756327, -3.736157375273132, -2.0042041932514953, -2.9443181355003873, -3.698622429702098, -3.3913762391696496, -7.0, -7.0, -3.697316541732383, -3.2215011749824356, -7.0, -3.6923180442592787, -2.723518819179158, -7.0, -7.0, -3.390405156480081, -2.370505044202905, -7.0, -7.0, -3.4050901140387224, -3.09429639740537, -2.0770043267933502, -3.2194972045125625, -3.3934874581471752, -2.5750228080714463, -7.0, -2.640991471652534, -3.401228167498113, -7.0, -3.3973315703911284, -2.8758051307992005, -2.9132839017604186, -7.0, -2.7909344146565678, -2.7592900330243038, -7.0, -3.4208630205509762, -3.712397131406715, -3.9947569445876283, -2.9204711793184543, -3.1545000516787205, -2.9901908082608895, -3.0256335110606978, -7.0, -3.4023473728483684, -3.409172018991404, -7.0, -7.0, -3.1020280999717116, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3412274163300966, -2.7856263829785224, -2.6924944075030846, -2.834738518903841, -7.0, -3.4372747974101237, -7.0, -7.0, -2.5485941291816783, -7.0, -3.059108817913594, -7.0, -3.3965480379871322, -3.697839368218363, -2.0315147656796184, -7.0, -7.0, -3.2239283760094772, -2.762261654333892, -7.0, -7.0, -3.750199727829182, -2.421850615022958, -2.5712095470456258, -3.0108085975122063, -2.774354733944107, -2.9259992664561554, -3.3988077302032647, -2.0356385582547913, -3.218360421770535, -7.0, -7.0, -7.0, -7.0, -3.699924402742477, -3.3933119147002, -2.1692368714947654, -7.0, -3.599810319835993, -3.692935002531138, -3.452016565962548, -1.6835520910142645, -3.3979400086720375, -3.12515582958053, -2.723044991643445, -3.1283184772596804, -3.740362689494244, -3.1610683854711747, -2.8128298304416357, -2.803542463881351, -3.115527305527498, -2.5889178182660926, -3.400365273349939, -2.609380944250707, -7.0, -7.0, -7.0, -2.8342868171349913, -7.0, -2.3146331720348976, -7.0, -2.965828614858199, -7.0, -3.3980268588836866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8309092995464433, -7.0, -7.0, -7.0, -7.0, -7.0, -3.692670699156369, -3.700876708376904, -7.0, -3.3967222785037734, -2.7319109421168726, -2.6642501190990586, -3.1246128935404425, -3.1218253591650096, -7.0, -3.6957442751973235, -3.695131297704026, -7.0, -7.0, -3.693726948923647, -3.235191653961703, -7.0, -3.700790221374347, -7.0, -7.0, -3.694166295933198, -7.0, -7.0, -7.0, -3.40705081480425, -2.47573170452071, -7.0, -7.0, -7.0, -2.9965992227001665, -3.0975176000709466, -3.001560652642573, -7.0, -2.863747598033922, -3.287054877670668, -3.6977522741677546, -2.6500037994452423, -2.275416066894797, -7.0, -7.0, -7.0, -3.824581376233483, -3.426185825244511, -2.7265008135244413, -3.7178368674869255, -3.1106618462485724, -7.0, -7.0, -3.6970548922725746, -2.7705083659594516, -3.271609301378832, -2.7554937284151193, -2.445816416559962, -3.00774777800074, -3.3929606147967957, -3.217659381292399, -7.0, -3.005008820672367, -2.454925054724259, -2.764840064462161, -7.0, -7.0, -3.0100454126360985, -3.697490887171057, -7.0, -3.7066324508732946, -2.7439450604267974, -2.192769056392809, -3.0457922327295592, -3.2427898094786767, -3.1028622998954396, -2.6576834670780443, -1.42753011836615, -3.6938148538894167, -3.1148194089047454, -7.0, -3.694429690957083, -2.8752266774031847, -1.678094487894716, -2.1620979090990606, -2.4918558654960536, -2.992995098431342, -7.0, -2.97657921864011, -7.0, -3.023493360732307, -2.325272344086861, -3.695131297704026, -7.0, -3.693023067923694, -3.4720246977002813, -2.733598460961339, -7.0, -3.3973315703911284, -3.2403828200445397, -7.0, -3.6922298357727557, -7.0, -2.4282200752233494, -7.0, -7.0, -2.6798406848590526, -3.7004441010277516, -2.880432465023419, -3.158844773634988, -3.3433108911761096, -7.0, -2.0910305188634193, -2.7007037171450192, -2.5833499380780163, -7.0, -2.8790958795000727, -7.0, -2.2854020929654126, -2.406011305416004, -2.8058028185264856, -3.2173084362374205, -7.0, -7.0, -2.5545295388316016, -3.6972293427597176, -7.0, -3.2213272832956665, -2.7672300981107183, -7.0, -1.7967634995939228, -7.0, -7.0, -2.676429606544869, -3.8795474371414054, -7.0, -3.2488720042050603, -3.243286146083446, -3.3553237864544485, -3.2888749458352793, -3.1715948293206875, -2.8141883831772025, -3.694605198933569, -7.0, -3.9273703630390235, -3.5230176972834117, -3.0772212348020416, -2.924574624041236, -7.0, -3.1424192643611137, -2.931168431656111, -3.8639173769578603, -3.7531711647163974, -7.0, -3.913260701649197, -3.3854990271520573, -3.2606873945370265, -3.7415980121808308, -4.279142006491639, -3.7681847038928176, -3.5630589791948317, -7.0, -2.922552466761376, -3.183981218914592, -3.3527409004337323, -3.5634810853944106, -3.994866823015008, -4.03929511808431, -3.74030346348121, -3.7262652369408156, -3.830396176483469, -3.1640106397198697, -3.0622058088197126, -2.7266531289441915, -3.091221989003633, -1.8363564880287062, -2.1374581672330395, -2.955527405293444, -3.5045795924147223, -3.7554937284151193, -2.292864986031581, -2.4504516993954346, -2.6548638255819332, -2.8004526998229493, -2.612501296864678, -2.2371036915866878, -7.0, -2.855908366581291, -3.311188557387388, -3.7095243558763413, -3.4161965568964496, -2.8387839742393597, -3.8424220033576497, -7.0, -1.7709177292002485, -2.357611434806292, -3.6176632694789093, -3.7041505168397992, -2.8209235878813175, -3.7073998311332486, -2.581221817873486, -7.0, -3.2743463860506234, -2.4764718236140304, -3.0933408536053615, -3.7018269303971394, -3.011476460804896, -3.325925955771466, -2.8952936014803914, -3.7958105246674085, -2.756445920162273, -3.00939777434038, -2.1959688020761106, -2.914166793875635, -3.2346859743215286, -2.296694434696538, -2.596998642902258, -3.1577588860468637, -2.6946417541696412, -7.0, -2.9179647680549445, -2.345851073918755, -3.0613654722789483, -3.7115541682501694, -7.0, -7.0, -7.0, -3.6164755138885654, -2.557085936526085, -3.104572459545332, -2.4891440150652615, -7.0, -2.401154272285065, -2.387178600948196, -3.0664750137541312, -2.757564719601866, -3.6997510316895146, -2.9170204900714385, -7.0, -2.764074608884626, -3.2778383330020473, -3.7430391548049333, -7.0, -2.780613773351461, -3.503586421323274, -2.8709888137605755, -7.0, -7.0, -2.525326542033364, -7.0, -3.4641913706409997, -3.2534995431676204, -3.411030146797094, -7.0, -2.855670556918036, -7.0, -7.0, -3.57935162711144, -2.295671153476217, -3.185629314451658, -7.0, -7.0, -2.7672383453307243, -3.48422863769372, -3.7096091210726487, -7.0, -3.702171950857711, -2.688241795977712, -7.0, -3.7311050512159203, -3.63753976055708, -7.0, -2.9089315942207272, -3.2629254693318317, -3.822625678774141, -7.0, -7.0, -3.404149249209695, -3.463519723400486, -4.418450450829583, -7.0, -3.7019994748896368, -3.404320467221731, -3.625312450961674, -2.8155386842826937, -7.0, -7.0, -3.6710802327388494, -3.4229999772716164, -2.6173173711074478, -3.4268364538035083, -3.55834850876162, -7.0, -7.0, -4.118033128828567, -3.2259120500140233, -3.5168437434754565, -7.0, -7.0, -3.02201573981772, -3.511749711344983, -7.0, -3.3984608496082234, -2.134753718901899, -3.042732979621721, -3.4347285417797577, -2.9571717731027167, -3.453624073591451, -3.173186268412274, -7.0, -2.7978299584283435, -3.1245508004664684, -3.5100756113539493, -3.3251734566778013, -7.0, -7.0, -3.221581886746912, -3.858416877723488, -3.705350462885712, -3.0390834800418545, -2.788857891778036, -3.1789769472931693, -2.837588438235511, -3.015305073292771, -3.4186326873540653, -7.0, -7.0, -7.0, -7.0, -3.119420863442087, -3.155411956437706, -3.403977963669355, -7.0, -3.402175375031505, -3.6923180442592787, -2.541394319744552, -3.699230502883409, -7.0, -7.0, -7.0, -3.7288405683399715, -7.0, -7.0, -3.0165558301996542, -3.8361974807789254, -3.4358443659844413, -3.402175375031505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.716086853774832, -2.7660873761509297, -3.6004283257321315, -7.0, -7.0, -7.0, -3.1436392352745433, -3.697578033651113, -7.0, -3.1192008839606693, -7.0, -7.0, -3.3157604906657347, -3.5801263254115825, -7.0, -7.0, -7.0, -3.4176377396522297, -7.0, -3.618414214801256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7121424991293415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9380190974762104, -3.763341586861342, -7.0, -7.0, -7.0, -2.429752280002408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.13640344813399, -2.7433355242117883, -7.0, -7.0, -2.7592900330243038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.745855195173729, -7.0, -7.0, -4.216904498521672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5593080109070123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4871383754771865, -7.0, -2.1072099696478683, -7.0, -2.1760912590556813, -2.500373714353374, -7.0, -7.0, -2.183744223284207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9493900066449128, -7.0, -7.0, -7.0, -7.0, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.705007959333336, -7.0, -7.0, -7.0, -2.2041199826559246, -7.0, -3.117786691388597, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3873898263387296, -7.0, -3.5234456722537035, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2671717284030137, -7.0, -2.90444504107691, -7.0, -7.0, -7.0, -7.0, -3.0673219820337434, -7.0, -7.0, -7.0, -7.0, -2.82865989653532, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0043213737826426, -3.1152775913959014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.767897616018091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.756636108245848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.155336037465062, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2041199826559246, -7.0, -2.8627275283179747, -7.0, -7.0, -7.0, -7.0, -7.0, -3.680969718465897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.132579847659737, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7965743332104296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2576785748691846, -7.0, -2.8680563618230415, -2.6283889300503116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.780677274433368, -2.6830470382388496, -7.0, -7.0, -7.0, -7.0, -4.796758141013766, -2.669316880566112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9867717342662448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9482172935599706, -7.0, -4.830875644426505, -7.0, -2.724275869600789, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6143698395482886, -3.4176377396522297, -7.0, -7.0, -7.0, -7.0, -7.0, -2.187520720836463, -7.0, -7.0, -7.0, -7.0, -2.5780658838360915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.396251668580277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3867485908293835, -7.0, -7.0, -7.0, -7.0, -5.101186665056354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6024289848375455, -3.7272158209084925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.136720567156407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.175627764367181, -4.5023087426730655, -4.695061188012712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6323357942172505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0293837776852097, -7.0, -7.0, -3.985830489858392, -7.0, -7.0, -7.0, -7.0, -7.0, -4.627201940953156, -2.9375178920173464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.037983949447127, -4.74074943414471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.478829733882481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.987219229908005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3521825181113627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.605628222007619, -7.0, -2.357934847000454, -7.0, -7.0, -7.0, -7.0, -3.2003579455416356, -3.585347911094591, -7.0, -7.0, -3.5349774634615505, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6368087344744513, -7.0, -7.0, -2.595496221825574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7007037171450192, -7.0, -7.0, -3.0751818546186915, -2.4345689040341987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7268494135432264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.916822284595912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4768711343703425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3251049829714074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6989700043360187, -7.0, -3.214086577617114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2131191388114564, -3.619823500457278, -7.0, -7.0, -7.0, -4.435366506612661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9611837098124356, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3736474722092176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.977266212427293, -7.0, -7.0, -7.0, -3.7729081949712717, -7.0, -2.164352855784437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7737458244431754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4941081925565785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.319314304090512, -7.0, -7.0, -7.0, -7.0, -7.0, -2.220108088040055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.371187969667537, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0111473607757975, -7.0, -7.0, -3.1755118133634475, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6843964784190204, -7.0, -7.0, -7.0, -7.0, -7.0, -2.831763159702354, -7.0, -7.0, -2.5406422544096534, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8221680793680175, -2.667452952889954, -7.0, -7.0, -2.5276299008713385, -7.0, -7.0, -7.0, -2.3404441148401185, -7.0, -2.8898617212581885, -2.665580991017953, -7.0, -4.305534078686048, -2.478566495593843, -7.0, -7.0, -7.0, -7.0, -2.677606952720493, -7.0, -7.0, -2.716003343634799, -7.0, -7.0, -7.0, -7.0, -4.05646479274284, -2.6866362692622934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6374897295125104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.694605198933569, -7.0, -7.0, -7.0, -5.1319729477225025, -7.0, -7.0, -4.544390543337748, -2.6924062348336304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3222192947339195, -7.0, -7.0, -2.8874297406343095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.033857832966269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.269781376648798, -7.0, -7.0, -7.0, -7.0, -7.0, -3.843320002089389, -7.0, -7.0, -4.067591548301512, -3.4387005329007363, -3.6980135039391815, -7.0, -7.0, -7.0, -7.0, -3.4825877695267677, -7.0, -7.0, -7.0, -7.0, -4.201424437579911, -5.172305127265699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5971464878336956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.640878778701618, -3.2303211689190787, -3.85403262355994, -7.0, -7.0, -3.649951132399792, -7.0, -7.0, -4.6327204212336115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5658478186735176, -7.0, -7.0, -3.3852039627942734, -7.0, -2.5774917998372255, -7.0, -7.0, -7.0, -4.150428933047859, -2.9561684304753633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4077307280263356, -7.0, -7.0, -7.0, -7.0, -3.695831772826692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3028610245195775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1166077439882485, -7.0, -7.0, -3.7159198174335795, -7.0, -7.0, -2.9410142437055695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.834674974462744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.972665592266111, -7.0, -7.0, -7.0, -7.0, -4.149280710341023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.558708570533166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.073351702386901, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.667340862430717, -7.0, -7.0, -3.040602340114073, -3.696531119969607, -3.4169731726030363, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6471872978959894, -3.378942698613437, -7.0, -7.0, -3.0071102312643196, -7.0, -7.0, -7.0, -7.0, -2.775974331129369, -7.0, -3.171094292723705, -7.0, -3.0394141191761372, -7.0, -7.0, -7.0, -7.0, -3.1000257301078626, -7.0, -3.398287305357401, -7.0, -3.3540123456672206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.00469190062186, -2.7592900330243038, -3.0751818546186915, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1809855807867304, -7.0, -7.0, -7.0, -7.0, -3.219060332448861, -7.0, -7.0, -7.0, -7.0, -3.4670158184384356, -2.8842287696326037, -7.0, -7.0, -3.2414717675507636, -7.0, -7.0, -7.0, -3.0546130545568877, -7.0, -7.0, -7.0, -3.034227260770551, -7.0, -7.0, -2.929929560084588, -7.0, -7.0, -7.0, -2.653752633125999, -3.158060793936605, -7.0, -7.0, -7.0, -7.0, -3.0538464268522527, -3.0610753236297916, -7.0, -7.0, -2.7846172926328756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6036855496147, -3.0523090996473234, -7.0, -7.0, -7.0, -3.4915367772802655, -7.0, -7.0, -7.0, -2.8512583487190755, -2.9763499790032735, -7.0, -3.6240757311456826, -3.429299990833608, -7.0, -7.0, -7.0, -4.044798378643768, -3.0633333589517497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0036328370044085, -7.0, -7.0, -7.0, -7.0, -7.0, -3.75350645699097, -3.2425414282983844, -3.5524248457040857, -7.0, -3.079904467666721, -7.0, -7.0, -3.041392685158225, -3.171433900943008, -7.0, -2.797959643737196, -7.0, -7.0, -7.0, -2.1617121341720806, -7.0, -3.0354297381845483, -7.0, -3.137670537236755, -7.0, -7.0, -2.9481683617271317, -2.0468252095542914, -2.3626709297256667, -2.807196660710947, -3.1818435879447726, -2.6081693235104026, -7.0, -2.7898049799111613, -7.0, -7.0, -7.0, -7.0, -7.0, -3.065206128054312, -3.041392685158225, -3.4122925093230463, -7.0, -3.6069722055085722, -7.0, -7.0, -2.8327278295294405, -7.0, -7.0, -7.0, -7.0, -3.2177470732627937, -7.0, -7.0, -2.619788758288394, -3.1386184338994925, -3.0863598306747484, -7.0, -2.88024177589548, -7.0, -7.0, -7.0, -2.681431675651782, -7.0, -3.4807253789884878, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1215598441875008, -7.0, -7.0, -7.0, -7.0, -3.1119342763326814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5324995860946626, -7.0, -3.8968751295426642, -7.0, -7.0, -7.0, -3.189770956346874, -7.0, -7.0, -7.0, -7.0, -3.0689276116820716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1000257301078626, -3.246703697921374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8048206787211623, -7.0, -7.0, -3.044539760392411, -2.5396137029240258, -7.0, -7.0, -7.0, -7.0, -2.871280972857973, -3.284054558436069, -3.137670537236755, -4.509619137576773, -7.0, -7.0, -7.0, -3.399673721481038, -7.0, -2.792391689498254, -2.8902346663063563, -3.355834495884936, -7.0, -7.0, -7.0, -7.0, -3.204933522354145, -3.1473671077937864, -7.0, -3.1122697684172707, -3.1058506743851435, -7.0, -7.0, -7.0, -7.0, -2.852601969338235, -7.0, -2.845098040014257, -7.0, -3.574956775764507, -2.4892551683692603, -7.0, -3.3412366232386925, -7.0, -7.0, -7.0, -2.587336734507256, -2.861733491532661, -3.1640552918934515, -7.0, -7.0, -7.0, -7.0, -3.8706104335298415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.503109436671369, -7.0, -7.0, -7.0, -7.0, -3.6924503234060153, -7.0, -4.07271012126439, -7.0, -7.0, -3.555662651664352, -2.504244254358882, -7.0, -2.863322860120456, -7.0, -2.7776684326775474, -2.776095557782467, -7.0, -7.0, -7.0, -7.0, -7.0, -3.053462604925455, -7.0, -7.0, -7.0, -7.0, -2.666250475475956, -7.0, -7.0, -7.0, -4.754256573662172, -7.0, -7.0, -4.14146545161862, -7.0, -7.0, -4.111900712865614, -4.263217745338578, -7.0, -7.0, -7.0, -4.664594971445261, -4.331434045411302, -7.0, -7.0, -7.0, -4.660523976930213, -7.0, -7.0, -7.0, -4.5024544332438925, -3.442061474322838, -4.79122734162645, -7.0, -7.0, -4.634235368289326, -7.0, -7.0, -4.410768800392774, -7.0, -4.113809702672945, -7.0, -4.201888500365973, -7.0, -3.7817553746524686, -7.0, -7.0, -7.0, -4.000911062131223, -7.0, -7.0, -3.7200765727681406, -3.4990681845107945, -7.0, -4.084147133154448, -7.0, -3.210999118023019, -7.0, -3.096736260462469, -3.255651485675603, -3.124652402693, -2.4690852991231202, -7.0, -7.0, -3.361160995195026, -7.0, -7.0, -3.4314709841279067, -7.0, -7.0, -3.8935213452372426, -3.603455631785735, -4.174986747747709, -7.0, -3.144262773761991, -3.0965624383741357, -3.2585435894214507, -7.0, -4.101329660136574, -7.0, -3.0096633166793794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.182756931040399, -3.2493206766376344, -7.0, -3.6142009437289793, -3.067872555625634, -7.0, -4.642118133694582, -7.0, -3.4452927694259716, -3.2104968748521077, -4.0471969600412665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7264826967848297, -7.0, -7.0, -7.0, -3.839729375206388, -7.0, -3.595506242348686, -7.0, -7.0, -7.0, -3.808953299155911, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8044996528482944, -4.447344117675954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7710727832211948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.863322860120456, -7.0, -7.0, -7.0, -7.0, -3.880191706122409, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.779380011491656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.209783014848515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.289945516176668, -7.0, -7.0, -7.0, -4.331326050575092, -7.0, -7.0, -3.4561056387081894, -3.822494985278751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.575043441108574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9628426812012423, -3.6152133348013584, -7.0, -7.0, -7.0, -3.4940153747571436, -7.0, -7.0, -3.3948017771627113, -7.0, -7.0, -3.373279893277496, -7.0, -3.2631624649622166, -7.0, -7.0, -7.0, -7.0, -3.649334858712142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3067466080777117, -3.6343764940883676, -7.0, -7.0, -7.0, -7.0, -7.0, -3.122270503074094, -7.0, -7.0, -7.0, -4.178752551784779, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.035309640156801, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7998572591896123, -7.0, -2.4345689040341987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028855809390444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.847572659142112, -3.519302849235429, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.564363543741234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0281644194244697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.796747738875302, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0453229787866576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9622272313500853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.12205196263325, -2.8549130223078554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4183012913197457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.82509329083244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.67066324328588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.438753248138029, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.672304175802286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.208889036595623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.926856708949692, -2.497390438017666, -7.0, -7.0, -2.2528530309798933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6857417386022635, -7.0, -4.606821886016697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.319817150451569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9559137362541525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9689613428677815, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5424394925233997, -7.0, -7.0, -7.0, -4.1386184338994925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.353416091053356, -4.678682232836399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604604005662973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6407000199084365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658078206053737, -7.0, -7.0, -7.0, -3.5991185650553628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1177682949263725, -7.0, -7.0, -7.0, -3.8771927530671593, -7.0, -7.0, -7.0, -2.392696953259666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8575335121635788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6658935455344326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0255106728525805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9152414973061944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.391816923613249, -7.0, -7.0, -7.0, -2.161368002234975, -7.0, -3.8186612898165646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7562556487542333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.205068964264459, -7.0, -7.0, -7.0, -7.0, -4.735934071215523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45484486000851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6693168805661123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0043213737826426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7168377232995247, -7.0, -7.0, -3.7274843233085995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2000292665537704, -7.0, -7.0, -7.0, -7.0, -3.3473114255351692, -7.0, -7.0, -7.0, -7.0, -7.0, -2.979548374704095, -2.5622928644564746, -7.0, -7.0, -7.0, -2.2600713879850747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8530895298518657, -7.0, -4.848149073810197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.553883026643874, -7.0, -7.0, -7.0, -7.0, -7.0, -3.678973375919765, -2.5728716022004803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.125481265700594, -3.103803720955957, -7.0, -7.0, -7.0, -7.0, -7.0, -2.304275050477128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4099331233312946, -7.0, -7.0, -7.0, -4.304888879148899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.62058365787334, -2.9609461957338317, -7.0, -7.0, -7.0, -7.0, -2.7671558660821804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432909992007674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.876025291494317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.395867831233988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.38635625808797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.233554492714523, -4.173739713951887, -7.0, -4.234390722392193, -4.046456142412592, -7.0, -7.0, -7.0, -7.0, -7.0, -4.000021714181245, -7.0, -7.0, -4.0468462039458215, -7.0, -3.939506772712817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351834943477441, -4.20115122765526, -7.0, -7.0, -7.0, -7.0, -4.610212864974371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9726887170222147, -3.146438135285775, -7.0, -7.0, -4.153296449355305, -7.0, -7.0, -7.0, -4.562007207036461, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.068111617027303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626976455884445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.740575836289971, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9863237770507656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603696366279048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.286231854028553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658202253387015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.596047007545439, -7.0, -7.0, -7.0, -3.59841033994433, -7.0, -7.0, -1.9867717342662448, -2.110589710299249, -2.3222192947339195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.436162647040756, -7.0, -7.0, -7.0, -4.334996280243225, -7.0, -2.561101383649056, -7.0, -7.0, -2.2278867046136734, -2.225309281725863, -7.0, -7.0, -2.2278867046136734, -7.0, -3.6981875698661226, -7.0, -7.0, -7.0, -7.0, -1.6658935455344326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.655138434811382, -7.0, -4.517908137366838, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6424645202421213, -3.017450729510536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4000196350651586, -3.4119562379304016, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7275412570285567, -7.0, -7.0, -4.250582628965692, -7.0, -7.0, -7.0, -7.0, -7.0, -2.24551266781415, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9190780923760737, -3.555856841947366, -7.0, -7.0, -2.6702458530741238, -7.0, -7.0, -2.9854264740830017, -7.0, -2.428134794028789, -2.591064607026499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9637878273455553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.161368002234975, -7.0, -1.872156272748293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5877109650189114, -4.1951105670203095, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9434945159061026, -3.129689892199301, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7902851640332416, -7.0, -7.0, -7.0, -2.462397997898956, -7.0, -7.0, -7.0, -7.0, -3.1107580088798876, -2.5605044151950564, -7.0, -7.0, -4.128915978453837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9344984512435675, -7.0, -4.620628739565589, -2.6651117370750512, -7.0, -7.0, -7.0, -3.0402066275747113, -7.0, -7.0, -7.0, -2.5877109650189114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.947776708464738, -7.0, -4.830861220005249, -7.0, -7.0, -4.0666364684442025, -2.6711728427150834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7126497016272113, -7.0, -3.0549958615291417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.396094685212617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.386588133907789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.233884108765886, -4.174117981254267, -7.0, -4.234719704621876, -4.046963154123424, -7.0, -7.0, -7.0, -7.0, -7.0, -4.301377292349344, -3.4252896164467943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.835341727828342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.502267758392556, -7.0, -7.0, -7.0, -7.0, -4.610351363626693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274065436350914, -7.0, -7.0, -7.0, -3.852601969338235, -7.0, -7.0, -4.302806962741421, -4.5621619614618565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.068593980976652, -7.0, -7.0, -3.0257153839013404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.740678425227455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603743235378374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2380461031287955, -3.287689783936075, -2.8388490907372557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2900346113625183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1478308499434595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.971739590887778, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9595183769729982, -4.178660458538169, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.558540578854597, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8588578876206907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7984779980639836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028205119905443, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7788744720027396, -7.0, -7.0, -3.916980047320382, -7.0, -2.205475036740891, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.041432164680265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.339782584655998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9836262871245345, -7.0, -3.037559289405319, -7.0, -7.0, -7.0, -7.0, -4.435414316217528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9614685553507862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.926342446625655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2805702410901008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9161906599805376, -7.0, -7.0, -7.0, -7.0, -3.1016449143243836, -7.0, -7.0, -2.414137362184477, -7.0, -2.8561244442423, -7.0, -7.0, -2.506505032404872, -2.3434085938038574, -7.0, -2.3944516808262164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8887409606828927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.123851640967086, -2.1958996524092336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7993405494535817, -7.0, -7.0, -5.14938848527283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5774917998372255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.08278537031645, -7.0, -7.0, -7.0, -7.0, -3.379305517750582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6849350826408895, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3103746420476123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1492191126553797, -2.346352974450639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.119585774961784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7501225267834002, -2.18998131938412, -2.7209857441537393, -7.0, -7.0, -7.0, -7.0, -4.796910677093591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.830946156923676, -7.0, -7.0, -4.067294086315977, -7.0, -7.0, -7.0, -7.0, -2.636989101812229, -3.424881636631067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6659560294539566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703875777319706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3481490343841624, -7.0, -7.0, -7.0, -7.0, -3.8253179093501952, -3.2533380053261065, -7.0, -7.0, -7.0, -4.2414094968594185, -3.7790912038454993, -7.0, -7.0, -3.837019948540908, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979648514925287, -7.0, -7.0, -7.0, -7.0, -4.610915555324175, -7.0, -7.0, -7.0, -4.055340099544181, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5323721335678773, -7.0, -3.4183012913197457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.510455640007325, -7.0, -7.0, -7.0, -7.0, -3.9878002857518724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4398062113933303, -7.0, -7.0, -7.0, -2.824776462475546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9235229873366637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2706788361447066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.803934849863842, -7.0, -7.0, -7.0, -7.0, -4.235928650226638, -7.0, -7.0, -2.6541765418779604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8709888137605755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6232492903979003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6722210445716033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7363965022766426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9627196609848174, -7.0, -7.0, -7.0, -7.0, -3.6641717053619307, -7.0, -7.0, -7.0, -7.0, -7.0, -3.616212862243485, -7.0, -7.0, -2.789228057267335, -3.703274177996601, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.261334253799131, -7.0, -7.0, -7.0, -7.0, -2.8981764834976764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.56643749219507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2392994791268923, -3.2522055549271984, -7.0, -7.0, -3.1809855807867304, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5256925245050108, -7.0, -7.0, -7.0, -4.041116227969485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.038620161949703, -7.0, -2.9175055095525466, -2.9943171526696366, -4.522822283327583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.693726948923647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7707783961691477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039984870959395, -7.0, -7.0, -3.15106325335375, -7.0, -7.0, -7.0, -2.3483048630481607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.703978825008386, -7.0, -3.4708513245261177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.784759894664005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.741939077729199, -3.1390956495216904, -7.0, -7.0, -7.0, -2.734799829588847, -7.0, -7.0, -7.0, -3.295127085252191, -7.0, -7.0, -7.0, -7.0, -3.394405594501357, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1277525158329733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.931915317081246, -7.0, -3.3827372657613304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9786369483844743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6697816152085365, -7.0, -2.681241237375587, -2.5428254269591797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.160368474792848, -2.866793509866322, -7.0, -4.501333178645567, -7.0, -7.0, -7.0, -3.3433101031623416, -7.0, -7.0, -2.934750874663579, -3.2195845262142546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.624134702492355, -2.741151598851785, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7763379096201755, -7.0, -7.0, -7.0, -7.0, -3.197280558125619, -7.0, -7.0, -7.0, -7.0, -7.0, -4.496981511355553, -3.114610984232173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2121876044039577, -7.0, -7.0, -3.440279213235588, -4.354314968159569, -7.0, -7.0, -2.4279615760912017, -2.8172347304254983, -7.0, -7.0, -7.0, -2.7741518589547103, -3.474507639116976, -2.5135505203463375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1489109931093564, -7.0, -3.422753941301348, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.258365863632017, -7.0, -7.0, -7.0, -7.0, -7.0, -4.398426146305484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.257304790554309, -7.0, -4.786914606730178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1528995963937474, -3.8755821043278855, -3.464084829296133, -3.2786011901837955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0796153235269434, -7.0, -3.7256666603141784, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1932081084944945, -7.0, -7.0, -3.7570922201189325, -4.503972168426268, -3.89440351920064, -7.0, -3.338257230246256, -7.0, -7.0, -7.0, -4.6424348407896066, -3.3305152321703284, -7.0, -7.0, -7.0, -7.0, -3.80543288813214, -7.0, -7.0, -7.0, -3.2614710422736133, -7.0, -2.841359470454855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8027737252919755, -7.0, -7.0, -3.422589839851482, -3.7008334670285428, -7.0, -7.0, -2.739572344450092, -7.0, -7.0, -4.1537742267023265, -3.0906107078284064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5397032389478253, -7.0, -7.0, -7.0, -7.0, -3.35878385060598, -4.643728957803573, -7.0, -7.0, -7.0, -7.0, -2.9135489579065177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1480882706622184, -2.7134905430939424, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788168371141168, -7.0, -7.0, -7.0, -7.0, -2.7895807121644256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.68411614002016, -7.0, -7.0, -2.888179493918325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.738780558484369, -3.1514720011315966, -7.0, -7.0, -3.7424894645817752, -7.0, -2.776701183988411, -3.079543007402906, -7.0, -7.0, -2.8262908158770794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8415680152280833, -7.0, -7.0, -7.0, -3.0810591230013196, -7.0, -7.0, -2.7558748556724915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6665179805548807, -4.1592663310934945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6972293427597176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4988616889928843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9675573359128724, -7.0, -7.0, -7.0, -7.0, -3.408833321776418, -7.0, -3.1436392352745433, -7.0, -7.0, -7.0, -3.9435439771534546, -7.0, -7.0, -7.0, -3.928128319128786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6140296350502608, -7.0, -7.0, -3.0398105541483504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.024074987307426, -7.0, -7.0, -7.0, -7.0, -3.4681995860726125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5256925245050108, -7.0, -3.0362295440862943, -7.0, -7.0, -3.759856627340681, -7.0, -7.0, -7.0, -7.0, -3.4523998459114416, -7.0, -7.0, -7.0, -4.239499684031626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.127428777851599, -7.0, -3.927331860048449, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0034605321095067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.613136798211654, -7.0, -7.0, -7.0, -2.6437815628948647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.781396305196791, -3.964840815368866, -7.0, -7.0, -7.0, -1.8003242293348352, -7.0, -7.0, -7.0, -7.0, -7.0, -3.99943504987633, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8999767515678005, -7.0, -3.540454613671412, -7.0, -7.0, -3.8455940931600243, -7.0, -7.0, -7.0, -3.524266268766979, -7.0, -7.0, -7.0, -7.0, -3.6265456590271294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1383026981662816, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1780412001399494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9028727854460796, -7.0, -7.0, -3.7238112811795303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0068937079479006, -7.0, -2.864511081058392, -7.0, -3.608312042697327, -4.67482135154191, -7.0, -7.0, -3.0043213737826426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2080380493531804, -7.0, -7.0, -7.0, -7.0, -3.4363217001397333, -2.6652682113991735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.247236549506764, -2.8717674683517753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.540579716504454, -7.0, -7.0, -7.0, -4.314488702046227, -7.0, -7.0, -3.3347887257004363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2940250940953226, -7.0, -7.0, -7.0, -4.401838061585477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.989271791641693, -3.514547752660286, -4.13326259642578, -7.0, -3.288249225571986, -2.1102947233754246, -3.262213705476417, -7.0, -2.6567368704836722, -7.0, -3.2317243833285163, -2.1396272484806373, -3.2612628687924934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.411333448612567, -4.438558169790535, -7.0, -7.0, -7.0, -7.0, -7.0, -4.40725490056078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.104203634837933, -7.0, -7.0, -7.0, -7.0, -7.0, -4.462068408086943, -7.0, -4.7109969149162225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.402588055411201, -7.0, -2.6834973176798114, -3.978420203258263, -4.019178624894263, -3.793511005792858, -7.0, -7.0, -7.0, -4.075583455193813, -3.8356271662098975, -3.3809344633307017, -7.0, -3.862667950228588, -3.7657430414210444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.36891880234938, -4.28443073384452, -4.475764137731008, -7.0, -7.0, -7.0, -4.017596721365986, -7.0, -7.0, -3.680969718465897, -4.086181804649749, -7.0, -7.0, -3.735997884091794, -3.993061296812981, -7.0, -7.0, -7.0, -3.7027463765507442, -7.0, -2.6035052322021435, -3.835109009618324, -4.271562825432305, -7.0, -4.039037170468973, -7.0, -7.0, -7.0, -3.7422929779105942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.636126669925523, -3.2420442393695508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.174277918292213, -7.0, -3.8785217955012063, -7.0, -7.0, -3.8783781558498545, -4.648769713584033, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0711452904510828, -7.0, -3.037824750588342, -3.2300655512060468, -7.0, -7.0, -3.374289987675311, -2.5344491888776157, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0523090996473234, -7.0, -4.347583686308583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5787000814126397, -3.146128035678238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.678518379040114, -7.0, -7.0, -7.0, -7.0, -2.6989700043360187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9982811398083022, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6972293427597176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1795517911651876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.43288915534841, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.994998640442741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658602779715658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5983527098692836, -7.0, -7.0, -2.9542425094393248, -4.099404372345543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2810333672477277, -7.0, -7.0, -7.0, -3.7018269303971394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0362295440862943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7708520116421442, -7.0, -7.0, -3.916690771866838, -7.0, -7.0, -2.100370545117563, -2.278753600952829, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7151673578484576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1931245983544616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.772725002459211, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.643338459312974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.940516484932567, -3.414824845838442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.433769833924866, -7.0, -7.0, -4.496749807394558, -7.0, -7.0, -1.9614210940664483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4712917110589387, -7.0, -3.4191293077419758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7514330818193473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097909476553979, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.955870471452533, -7.0, -7.0, -7.0, -2.99211148778695, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9903388547876015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.651471852199043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.387781226906038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.065156292208035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.876921843174579, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.691346764134822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.992553517832136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.08059762918686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5504729571065634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2852157604593244, -3.452553063228925, -7.0, -7.0, -2.7782115648732764, -3.212661014432471, -7.0, -7.0, -7.0, -3.2708728475314053, -7.0, -2.3251909714733467, -3.375785504077291, -4.023992804606471, -4.053846426852253, -2.3455779218656394, -3.722921711759407, -4.027268042466619, -7.0, -7.0, -4.028245816572474, -3.730136003996678, -2.896404763954549, -4.02861191506623, -7.0, -7.0, -7.0, -4.036549054479152, -4.023499381548012, -3.729691133696481, -7.0, -3.6011179990900035, -7.0, -1.94270070784522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.026574118150334, -4.0726909550128685, -2.2297387094752668, -7.0, -3.7268494135432264, -3.219060332448861, -4.028855809390444, -4.0255106728525805, -7.0, -4.028205119905443, -4.041116227969485, -3.759856627340681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.978882520617143, -7.0, -7.0, -3.1996376574362504, -2.70429623966108, -7.0, -4.0306806639999015, -7.0, -7.0, -4.023087766995445, -7.0, -7.0, -7.0, -3.5629269868278, -7.0, -3.571165138386463, -4.030963842378275, -3.7368743616484226, -7.0, -2.2581541481427756, -3.338735308799518, -7.0, -7.0, -7.0, -7.0, -7.0, -3.42410541751129, -7.0, -3.7221812966649073, -2.866356848444443, -7.0, -7.0, -7.0, -3.140468759922789, -7.0, -7.0, -7.0, -7.0, -3.4425581544959227, -3.7243578042264267, -7.0, -3.134376352651557, -4.03382569395331, -2.345093540561045, -7.0, -7.0, -7.0, -3.4350476413399647, -4.055836851018404, -7.0, -3.1814624606874005, -2.551640569954477, -4.025756314534414, -7.0, -3.7316693318286362, -3.267835239110218, -7.0, -2.9398263372924727, -4.060811119791346, -7.0, -3.3282572497312364, -7.0, -7.0, -7.0, -7.0, -3.211698859219537, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9697147408599875, -3.6358187213644175, -3.035496444963253, -4.045674966769105, -3.727378569451489, -3.5204311260215415, -7.0, -4.024321442141565, -2.834500179293778, -7.0, -3.151905874537198, -4.023705042622037, -4.0258381642297, -3.7247672456463103, -2.5746589460548055, -7.0, -7.0, -7.0, -2.80365790832937, -7.0, -7.0, -3.5739926620579388, -3.7382254481425052, -3.433889788208712, -4.031852631395629, -7.0, -4.029261995804175, -7.0, -2.762528522447, -7.0, -7.0, -7.0, -4.026533264523296, -7.0, -7.0, -7.0, -3.0806986228711293, -7.0, -2.942776694080424, -7.0, -2.341337525385835, -2.1934628459235785, -4.02649240705284, -3.7390578478058996, -3.5613399414589013, -4.041708420891436, -3.745270023988988, -3.358734127198011, -3.189450207084212, -4.0305997219659515, -7.0, -4.029221394253928, -4.027634965777544, -2.8386639300088468, -7.0, -3.4220971631317103, -7.0, -2.454446134185004, -7.0, -3.3976967356393635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0322157032979815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.724808168565719, -3.5656510827780115, -3.446459496594692, -3.179775136236658, -2.524514399128848, -7.0, -7.0, -7.0, -7.0, -4.023170121121397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1881926846818818, -7.0, -7.0, -4.023005397249935, -7.0, -7.0, -3.4251672627392926, -7.0, -3.7304592600457687, -3.581190866388724, -7.0, -3.20378055748671, -3.1724204775324703, -7.0, -7.0, -4.02530586526477, -3.3907938501556703, -7.0, -3.484071952954621, -4.035389709198677, -2.543243510293341, -7.0, -7.0, -7.0, -3.1607685618611283, -3.4483971034577676, -3.209055200331437, -2.9251646981563364, -3.0691869251519095, -3.4218506150229584, -4.024608796126557, -7.0, -7.0, -3.4422053085873574, -7.0, -7.0, -4.032256025890453, -7.0, -7.0, -7.0, -7.0, -7.0, -3.211887757793364, -7.0, -4.036549054479152, -3.7283537820212285, -2.174052881785803, -7.0, -4.023992804606471, -3.058968011900246, -3.7231271587956916, -4.02428037604708, -3.5597869682005565, -7.0, -7.0, -4.038818787373656, -4.062243441026478, -7.0, -4.053923150548575, -7.0, -2.7967734227159236, -3.3572104190061216, -3.7234967187231707, -7.0, -7.0, -3.5856486950954656, -3.7426465899387362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4293484729236616, -7.0, -3.7234967187231707, -3.56054423863114, -3.181516927920419, -3.0066461633496013, -4.108666482553972, -2.811559527360728, -3.731346975545955, -3.3619921087578137, -2.5117872143143454, -3.3577062107846425, -7.0, -3.0840596627601995, -3.7269308641214662, -3.574956775764507, -3.0741845459702977, -4.056828652637812, -4.0244446171313495, -7.0, -7.0, -4.042693618178643, -7.0, -7.0, -7.0, -4.060546755126169, -7.0, -2.9279175919435616, -7.0, -7.0, -3.3923283959700776, -3.590618948206578, -3.682941905826968, -7.0, -3.968167620369607, -7.0, -3.7091285660594253, -3.1164601502801488, -3.023265956261281, -7.0, -3.5463986973189114, -2.9895860127950473, -7.0, -3.8267284040809275, -3.0395752145302946, -3.2115358218543153, -3.4275485247671114, -3.595921175236594, -7.0, -3.5930644316587173, -4.2641800750358305, -3.171370276441817, -4.2499806059095295, -3.296421410023919, -3.6467956887784694, -3.4371866354801193, -4.243434936520088, -3.4096288416375478, -7.0, -3.3223690256376273, -3.9547890547379705, -4.08334134193701, -3.2643297543348835, -3.023732456741596, -2.8759027157874644, -3.486886811075451, -3.6354033144631863, -3.4350875123045923, -2.950090118806048, -3.0851790462224917, -2.780923392631927, -2.7125216046549006, -3.0060379549973173, -1.8952364476239492, -3.7423715832469, -2.7311050512159203, -4.053923150548575, -2.389949983431617, -2.031381530425332, -2.8218409272004545, -2.094441179707738, -3.0019319261726443, -3.342197014679481, -3.76748981033693, -2.9645646414975544, -3.371621927176021, -7.0, -3.0867803295915035, -1.3226638131779507, -3.321322205630525, -4.043833654133147, -2.3808361546624934, -2.4593222480023207, -2.9128490780700087, -4.028855809390444, -4.088702960351474, -4.0303973008567615, -1.976211511558734, -3.6997799316716846, -3.2913022357598494, -4.157456768134225, -2.0827650918170697, -3.5504729571065634, -3.6954816764901977, -2.4756498276534518, -3.0853500502578064, -2.959848290501177, -3.3244882333076564, -3.839289456006147, -2.9004199914746116, -2.8126125871077585, -3.2541047755068098, -2.5002744574000397, -1.7507143703221413, -3.579059168622478, -2.1600081910853546, -7.0, -3.6113692154627337, -2.3976046343494333, -2.181630311663954, -3.1867949476962183, -4.028286509426278, -7.0, -4.039929414108561, -3.5674772960726626, -3.099097680917744, -3.5529924979879306, -3.0194184346331205, -7.0, -3.6276730317666157, -2.177623935903965, -4.059260404121731, -3.7320316968741922, -4.026778328659529, -2.7982787042255786, -3.558388530369896, -2.240873600020581, -3.0116473234845214, -7.0, -7.0, -7.0, -3.078746734273607, -3.2709448868349495, -4.05922251252969, -3.4421268594394014, -4.126488570700374, -7.0, -7.0, -7.0, -3.7315887651867388, -7.0, -2.834674974462744, -7.0, -7.0, -3.320834749256372, -2.8933757439385097, -2.9013652777557017, -7.0, -3.625723909525756, -3.4354860207578644, -7.0, -3.730338067221792, -7.0, -4.027920136405803, -3.1124038927178743, -3.7311857076340007, -3.0869527242574843, -3.854548935812951, -7.0, -3.2322335211147335, -3.5691006825019738, -3.0883487522885287, -7.0, -4.053347392169267, -4.029424364058016, -4.058577849133225, -2.996921912886755, -7.0, -7.0, -4.029505525426577, -4.148263229636879, -3.6224730712781232, -4.049334335972284, -3.744644971105124, -4.176293882538767, -3.7373516958037145, -2.700350867630475, -3.5630457817631846, -3.154559214682701, -7.0, -7.0, -3.2725841491100423, -7.0, -2.387305061142422, -7.0, -3.731387283168788, -3.2586771829934693, -3.606488850442648, -7.0, -3.424432415724877, -3.04196933677907, -3.5700757053216043, -3.743078391782139, -2.9372949482332396, -7.0, -3.4175381194013275, -3.2740808398686907, -2.7029305877176997, -3.396606125927017, -3.480581786829169, -3.7771367125041726, -7.0, -4.02428037604708, -3.029834524463506, -7.0, -3.4271207975795845, -7.0, -3.167472060642541, -7.0, -3.1116433067408074, -2.8152529759306737, -3.7301629511925354, -4.02816441942447, -7.0, -4.027634965777544, -7.0, -4.037386652582377, -3.3558727748926644, -7.0, -7.0, -4.02848991652189, -7.0, -2.2511191040920613, -3.725421550074259, -7.0, -7.0, -4.029627239047413, -7.0, -7.0, -7.0, -3.8098626051382367, -3.7952889748486287, -3.5674577001569503, -4.02848991652189, -7.0, -7.0, -7.0, -7.0, -3.0791812460476247, -4.03249788285711, -3.4322475382686006, -2.629875392934101, -3.531255325570886, -2.5283562564155875, -3.5521813388393357, -7.0, -4.100198171834132, -7.0, -7.0, -2.864333055033393, -7.0, -7.0, -2.59402403573142, -3.5194670251274163, -7.0, -7.0, -7.0, -3.4335698364624765, -7.0, -3.444918753773256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6576007704466384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8937062930647133, -7.0, -7.0, -7.0, -4.877008322140324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3222192947339195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0253058652647704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.432969290874406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.069963937850763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426177686216186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7078539359785987, -7.0, -7.0, -7.0, -7.0, -3.465038774776985, -7.0, -7.0, -7.0, -7.0, -2.7795964912578244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8407332346118066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7539658658651605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.936513742478893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7058637122839193, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8662873390841948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092381402367751, -7.0, -3.2438644894340767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979120242557178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151768102895178, -7.0, -7.0, -4.126012287479145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3961993470957363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.740181037453737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080651735867012, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.032538179260007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.214843848047698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4987239707479048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.069742076041645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.364550995353972, -7.0, -7.0, -4.7271751242414615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368333380751638, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8388490907372557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432820226967818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.315970345456918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.569479251294796, -7.0, -3.7208205817703437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576335590293832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1522883443830563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3404441148401185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.072323438293041, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028709489232689, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8316565189450587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3790334318179673, -7.0, -4.496182129257268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3654879848909, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.796730401424177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.131899229295741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.617052788978206, -4.746657547475629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.655234507034295, -7.0, -4.391887391645515, -7.0, -7.0, -4.65107439073182, -7.0, -7.0, -7.0, -5.101159141699892, -3.86457040685343, -4.784253445375443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.579863590864233, -7.0, -7.0, -7.0, -7.0, -7.0, -4.34713478291002, -4.3870515144724935, -7.0, -7.0, -7.0, -4.301398989173564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.35210530333973, -4.67837267930482, -5.172170756683376, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941620737855168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6322547766847135, -7.0, -7.0, -7.0, -4.00702192557868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0261245167454502, -7.0, -7.0, -3.9854713832895876, -7.0, -7.0, -7.0, -7.0, -7.0, -4.326069466588894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.467578510402737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.399846712712922, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028835490094027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779845309661779, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7528164311882715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.147861748487239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.795184589682424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274890680081923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388278863459639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.1461280356782382, -4.727191403365907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1075491297446862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.60535892548885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.4328234331816025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.579085879525616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.134304634954544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080637308078068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.298197867109815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2943100431280117, -3.1256438923573917, -3.278296208091274, -7.0, -3.15904054763018, -3.4790711958039306, -7.0, -7.0, -7.0, -2.8003733548913496, -7.0, -3.6848004941944112, -2.9014583213961123, -7.0, -7.0, -3.2638445159718152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.800625445307701, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0263103588818407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.498172660636544, -2.7157462885921344, -7.0, -7.0, -3.4670158184384356, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4523998459114416, -7.0, -7.0, -7.0, -2.978882520617143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3845326154942486, -3.0566190372544866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7913020858835584, -3.0492180226701815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4370707382903847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.518777068926775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0002604985473904, -3.0390478577317825, -7.0, -7.0, -3.023046584075505, -4.750076199567835, -7.0, -7.0, -7.0, -3.3552599055273786, -3.2971036501492565, -7.0, -7.0, -7.0, -7.0, -3.4346088189721344, -7.0, -7.0, -7.0, -7.0, -7.0, -3.811038508604216, -3.332337449453026, -3.037924256713626, -7.0, -3.302114376956201, -2.6173314844704563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.271648027535343, -7.0, -7.0, -2.8191050325414984, -3.0362295440862943, -7.0, -7.0, -3.41161970596323, -3.0555694400609896, -7.0, -7.0, -7.0, -3.3062105081677613, -2.08278537031645, -2.7912647463631677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2794387882870204, -3.5298151966446305, -7.0, -3.949194774237982, -7.0, -3.418135498425232, -3.363746249326481, -7.0, -7.0, -7.0, -3.368286884902131, -7.0, -3.440279213235588, -2.635282637998212, -7.0, -7.0, -3.004536317851323, -7.0, -2.254135607904569, -7.0, -7.0, -7.0, -3.396068515800304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3941013020400446, -4.15464608517337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3251049829714074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6160551949765862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.816837630902035, -7.0, -4.0431001811622975, -7.0, -7.0, -3.2860071220794747, -3.7652959296980564, -3.107718610520263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.381295623003826, -7.0, -7.0, -3.0203612826477078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721676680229461, -7.0, -7.0, -3.0898462599613077, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.598561402497095, -3.433929765608464, -7.0, -7.0, -7.0, -3.4602963267574753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1820068258650944, -7.0, -3.812408772969734, -3.322839272686321, -7.0, -3.2427779850240452, -7.0, -7.0, -2.7518562395924007, -7.0, -3.4158077276355434, -3.643057683751453, -7.0, -7.0, -7.0, -7.0, -3.3729120029701067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8139677453372975, -7.0, -7.0, -7.0, -4.668078260148475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.59982850903801, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.432086985778083, -7.0, -3.8916377965385367, -3.7363765800544826, -3.8522359394118872, -3.376576957056512, -7.0, -7.0, -2.899737259826841, -3.1898270631206618, -3.2177470732627937, -7.0, -3.344336123386771, -2.982206601075478, -7.0, -2.565785701176179, -3.4913616938342726, -3.317436496535099, -7.0, -4.2308829988575924, -7.0, -7.0, -3.6069900972210145, -3.2880702826432477, -4.87632755539097, -7.0, -3.0778522036135776, -7.0, -4.1518395454985555, -7.0, -3.908923478766375, -7.0, -4.117105502761251, -7.0, -7.0, -7.0, -4.313550871333505, -7.0, -3.485295438726089, -7.0, -3.9039847969050228, -7.0, -7.0, -2.96865932865102, -7.0, -7.0, -4.649996507466041, -7.0, -3.555215405126073, -7.0, -4.077404246398098, -7.0, -2.9995654882259823, -7.0, -7.0, -7.0, -4.059108817913594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055340099544181, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.485199533870229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7535830588929064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7163581508819816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1998648337322555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.302114376956201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3233896221747057, -3.6924944075030846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7132174481438476, -7.0, -7.0, -7.0, -3.6591552809406296, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7212333700172775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8167146455230045, -7.0, -7.0, -7.0, -3.641275757231913, -3.364550995353972, -7.0, -2.951823035315912, -7.0, -7.0, -7.0, -3.4409090820652177, -7.0, -2.6972293427597176, -2.6183967876034884, -3.1081061568911568, -2.395326393069351, -2.761927838420529, -7.0, -2.81424759573192, -2.7795964912578244, -7.0, -3.043314635810413, -2.306067436355595, -7.0, -2.7774268223893115, -2.5185139398778875, -7.0, -2.6866362692622934, -7.0, -7.0, -3.2805783703680764, -7.0, -3.865597435075882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.765420173578722, -2.8268034169712943, -2.745855195173729, -7.0, -2.8842287696326037, -7.0, -7.0, -7.0, -2.7788744720027396, -7.0, -7.0, -2.7708520116421442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.709693869727792, -4.226883328390917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7259116322950483, -7.0, -7.0, -7.0, -7.0, -7.0, -1.79987050007688, -7.0, -3.8239695379160965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.624797578960761, -7.0, -3.373243118267363, -7.0, -2.524396122103842, -7.0, -7.0, -7.0, -7.0, -2.9552065375419416, -3.8078055322706246, -7.0, -7.0, -7.0, -4.040119522407977, -7.0, -2.6259979988260516, -7.0, -2.3339508043872472, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1986570869544226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.462996612028056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6473829701146196, -7.0, -2.6334684555795866, -7.0, -7.0, -2.432969290874406, -3.3872118003137306, -7.0, -7.0, -7.0, -2.8915374576725643, -7.0, -7.0, -2.1647245241698965, -7.0, -2.2972131959896416, -7.0, -2.1158481557195747, -7.0, -7.0, -3.2533218482368023, -7.0, -2.696356388733332, -7.0, -2.267953536862395, -7.0, -7.0, -7.0, -2.8208579894397, -7.0, -3.8750033536000412, -7.0, -7.0, -2.873163691847328, -7.0, -7.0, -7.0, -7.0, -3.024074987307426, -7.0, -7.0, -2.339782584655998, -7.0, -7.0, -2.7686381012476144, -2.3789167713586075, -7.0, -7.0, -7.0, -7.0, -2.6910814921229687, -3.0843975191411492, -2.6830470382388496, -7.0, -7.0, -7.0, -7.0, -7.0, -2.15896526038341, -2.3944516808262164, -7.0, -7.0, -7.0, -2.845098040014257, -7.0, -7.0, -7.0, -7.0, -2.6857417386022635, -7.0, -7.0, -2.7363965022766426, -2.9863237770507656, -7.0, -2.705007959333336, -4.548352559894337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8555191556678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.343080204765978, -2.8529589869476504, -7.0, -7.0, -7.0, -2.7209857441537393, -7.0, -2.765668554759014, -7.0, -2.5327543789924976, -2.8353734524700087, -7.0, -7.0, -2.2193939834967513, -7.0, -7.0, -7.0, -7.0, -2.4727564493172123, -3.111766433052562, -2.8915374576725643, -4.501565871851012, -7.0, -7.0, -7.0, -2.946452265013073, -3.0674428427763805, -7.0, -2.236033147117636, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0038911662369103, -7.0, -7.0, -7.0, -2.2278867046136734, -7.0, -7.0, -7.0, -7.0, -2.6266336114657944, -3.049605612594973, -7.0, -7.0, -4.610276792917653, -2.507855871695831, -7.0, -2.3264821619178067, -2.7024305364455254, -7.0, -1.9515533709285438, -7.0, -7.0, -2.9370161074648142, -2.318957251879195, -7.0, -3.097604328874411, -7.0, -4.798084105211312, -2.338788396167112, -7.0, -7.0, -7.0, -7.0, -2.516755660221549, -2.0881360887005513, -2.2616593037647066, -7.0, -7.0, -2.681241237375587, -7.0, -2.534026106056135, -7.0, -7.0, -7.0, -7.0, -3.4892551683692608, -3.4429498695778618, -4.58844138876869, -7.0, -3.1598678470925665, -2.776368707370917, -2.422917980767662, -7.0, -2.6364878963533656, -7.0, -2.780317312140151, -2.7768464086952993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5224442335063197, -7.0, -2.246744709723841, -7.0, -2.822494985278751, -7.0, -7.0, -4.621134720505861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.434608818972134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.706777504386875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8564267724702446, -4.27378807956752, -3.4644469632811794, -3.4561381965502913, -7.0, -7.0, -7.0, -4.546666025070184, -3.200440076436431, -3.2803506930460054, -7.0, -7.0, -2.948086796418994, -7.0, -7.0, -7.0, -2.530199698203082, -7.0, -7.0, -7.0, -7.0, -3.757415009780414, -4.379101469283612, -7.0, -7.0, -3.0402066275747113, -7.0, -4.313455921670493, -7.0, -7.0, -7.0, -7.0, -2.4683473304121573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165481742822164, -7.0, -2.851869600729766, -3.5664696331901315, -7.0, -7.0, -4.335146862569169, -7.0, -7.0, -7.0, -7.0, -7.0, -2.780317312140151, -7.0, -7.0, -7.0, -3.001863462692524, -7.0, -2.8606374167737547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.800717078282385, -7.0, -4.028987861649464, -2.7948364578145615, -2.559108289366632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5199591807520685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.473326360897987, -3.9448477208632444, -7.0, -7.0, -3.415974411376566, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9849771264154934, -7.0, -2.973589623427257, -3.149834696715785, -7.0, -7.0, -7.0, -3.3432115901797474, -7.0, -3.0923696996291206, -7.0, -7.0, -7.0, -7.0, -7.0, -2.801403710017355, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9324737646771535, -3.391748601849537, -7.0, -7.0, -2.8976270912904414, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8494194137968996, -7.0, -7.0, -7.0, -7.0, -2.9309490311675233, -2.5554975061310574, -2.698535492562001, -3.442636525782232, -3.094471128641645, -2.699693225955115, -3.0856472882968564, -3.7506626461340558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.288383384399775, -3.002957585345823, -7.0, -7.0, -2.7686381012476144, -7.0, -2.918554530550274, -3.1085650237328344, -7.0, -7.0, -7.0, -7.0, -3.3813257060905904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.704579449696299, -2.783903579272735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6923180442592787, -7.0, -7.0, -7.0, -7.0, -3.40226138245468, -7.0, -7.0, -4.285016917629171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6577631574494944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.877210039451698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557567349330712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2182728535714475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.53655844257153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.056790548274383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.47712125471966255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3951515915045425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.359984200595567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727508724388225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.493411575048662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6804714924842656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0689276116820716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0107238653917734, -4.543459606069367, -7.0, -7.0, -7.0, -7.0, -2.8965262174895554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.300769340770549, -7.0, -7.0, -7.0, -7.0, -4.541454428747589, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8743465023900985, -4.377192379575923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.631960961368071, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1344958558346736, -7.0, -7.0, -2.6940198963087196, -3.3726358805817207, -7.0, -7.0, -7.0, -7.0, -7.0, -3.44544851426605, -7.0, -7.0, -3.126131407261984, -3.800814417138437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.26256973321755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.876217840591642, -7.0, -7.0, -7.0, -3.1678684699514594, -7.0, -7.0, -2.916980047320382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1354506993455136, -7.0, -7.0, -7.0, -2.847572659142112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1996376574362504, -7.0, -7.0, -7.0, -7.0, -3.3845326154942486, -2.709693869727792, -7.0, -7.0, -3.7518946880437474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.244953855620354, -2.9694159123539814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.104487111312395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.075692918201804, -7.0, -7.0, -7.0, -7.0, -2.664328518680805, -7.0, -3.5683190850951116, -3.4125949311184796, -7.0, -7.0, -7.0, -4.739841223173554, -7.0, -7.0, -3.1818435879447726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.71281800020785, -7.0, -3.485863329597335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.140193678578631, -7.0, -7.0, -7.0, -3.4872798164430687, -7.0, -7.0, -7.0, -2.9375178920173464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7772414967636383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.385202520149573, -7.0, -7.0, -3.771229095215522, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1601682929585118, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7708520116421442, -7.0, -7.0, -7.0, -2.6566024919927442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7792356316758635, -7.0, -3.8718339990495183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.450403086155366, -7.0, -7.0, -7.0, -2.7902851640332416, -7.0, -7.0, -2.9425867266347816, -7.0, -4.50275476578036, -7.0, -7.0, -7.0, -7.0, -2.796921075330169, -7.0, -7.0, -3.2460059040760294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.611202692182174, -2.8651039746411278, -2.7671558660821804, -3.482659240683335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.756853857758851, -7.0, -7.0, -7.0, -7.0, -3.1975562131535367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2827353726210187, -7.0, -7.0, -7.0, -7.0, -3.4933186082321015, -7.0, -4.178370941136013, -7.0, -7.0, -4.072543985643648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.80514729780041, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.102800608390914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2790278056227207, -7.0, -4.575845718353445, -7.0, -3.4626974081017172, -7.0, -3.764512374855157, -3.126780577012009, -3.4334990460631887, -7.0, -7.0, -7.0, -7.0, -3.0344680227550427, -7.0, -7.0, -7.0, -7.0, -3.5403294747908736, -7.0, -7.0, -7.0, -4.361236616731331, -3.8353371955474906, -4.8725291977811604, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040829711665509, -3.642167634404945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6817837664678814, -7.0, -7.0, -3.182414652434554, -7.0, -3.9099516346165966, -4.266772463513072, -7.0, -4.637069241035025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.086003705618382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.644753609506606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.740546896566616, -7.0, -7.0, -4.214658438879918, -7.0, -7.0, -7.0, -7.0, -7.0, -2.850491311089423, -2.933461978575007, -3.3119656603683665, -7.0, -2.8148273565661532, -2.562356601630755, -7.0, -7.0, -7.0, -3.9307962629833004, -7.0, -3.06096750474098, -3.1268238205131804, -7.0, -3.7575731524225557, -2.14197367709603, -7.0, -7.0, -7.0, -3.9183187216495976, -7.0, -7.0, -3.0468520107260044, -3.741099049455883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.251126984977872, -7.0, -2.0556719515266586, -7.0, -4.222117928758222, -4.221674997070769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2473102774556555, -2.5627029631478573, -4.216904498521672, -3.916822284595912, -3.2414717675507636, -3.519302849235429, -3.9152414973061944, -7.0, -3.916980047320382, -7.0, -4.239499684031626, -3.916690771866838, -7.0, -7.0, -2.70429623966108, -7.0, -4.214843848047698, -7.0, -7.0, -3.0566190372544866, -4.226883328390917, -7.0, -3.7518946880437474, -7.0, -3.9146339999844666, -7.0, -7.0, -3.7392294144195337, -7.0, -7.0, -7.0, -7.0, -4.225851810818157, -4.220369632451394, -7.0, -4.2198463860243605, -3.7471786713601642, -3.6263146990939448, -2.19571222376197, -3.622214022966295, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216904498521672, -4.215928229339918, -7.0, -2.831751312022354, -7.0, -7.0, -7.0, -3.927319024959656, -7.0, -7.0, -7.0, -7.0, -3.4504800546060603, -4.216297886630392, -4.215611129612849, -3.622214022966295, -4.221701064384597, -3.401369205272897, -7.0, -7.0, -4.216772698429039, -3.746763897156223, -4.236108801587282, -4.216245097705822, -2.7578647280763793, -2.31492005599242, -7.0, -3.37863146935062, -4.221022805204841, -3.3053513694466234, -4.217062605852551, -3.193453484763139, -3.5402293377182827, -4.225050696138049, -4.217641840773327, -7.0, -3.5212165635672568, -4.214711421005384, -7.0, -3.501692431974699, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5437784181428738, -3.797521439979663, -2.797890483058349, -7.0, -3.9171640314290026, -3.7486918264884537, -7.0, -4.215558257141162, -3.92451188152325, -4.273417994771454, -3.934826573088993, -7.0, -3.7393085761565885, -7.0, -2.3848440940143085, -7.0, -7.0, -3.916559219301114, -3.5235383717036526, -7.0, -7.0, -4.233097687864703, -7.0, -7.0, -4.220421922437841, -3.925441019653158, -7.0, -7.0, -2.188550161961675, -7.0, -7.0, -7.0, -7.0, -7.0, -3.518013555046075, -7.0, -3.6509143340199595, -4.214684930750601, -3.4662372137034914, -4.215082115013175, -7.0, -2.6306215619417825, -7.0, -7.0, -3.7475930498107353, -7.0, -4.229886529245892, -4.237543738142874, -7.0, -3.617393545748848, -3.9217124803626198, -3.7414930150254317, -4.2176944602053785, -3.3422746006428197, -7.0, -7.0, -7.0, -1.7347722492070448, -7.0, -3.485295438726089, -7.0, -7.0, -7.0, -3.9159008580770402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.261334253799131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.227629649571009, -3.5322701446090563, -4.289633539009645, -2.5372058865181337, -7.0, -7.0, -7.0, -4.227243781503063, -7.0, -4.21532025132993, -4.221101119961506, -3.5171694962671247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1126720171171325, -7.0, -7.0, -7.0, -3.7388598020722004, -4.217246991685393, -7.0, -3.9141579738331505, -7.0, -7.0, -7.0, -2.947643745820492, -3.471144965160633, -4.214896807560221, -7.0, -7.0, -3.7817793020639456, -3.924641047417163, -2.5738451016256025, -3.9216344610537055, -3.086378085628699, -3.069430221462924, -3.3698252448806407, -7.0, -3.7063550077687095, -3.387313538406589, -3.1555637545804265, -3.343580898698759, -3.203527358754229, -7.0, -4.215743282637605, -4.2151085810530935, -4.218640521413849, -4.228656958108935, -3.922439985497939, -7.0, -7.0, -4.2201865679032755, -7.0, -7.0, -7.0, -4.217088951479171, -3.3729580063049203, -3.754297359188641, -3.2230024392104095, -4.218876715052756, -3.221483277582076, -3.7420177471401384, -7.0, -3.0176890582210874, -7.0, -7.0, -7.0, -4.217246991685393, -7.0, -4.2249472187770865, -3.9392695863387313, -3.92054071650248, -3.9337655925566613, -7.0, -2.6493132876666134, -3.9354568807116097, -7.0, -7.0, -7.0, -3.462397997898956, -3.6259551837738253, -7.0, -7.0, -4.222716471147583, -7.0, -7.0, -3.9137344010040573, -7.0, -7.0, -7.0, -7.0, -4.217352319881362, -1.8397016936749504, -3.9706257766882946, -2.3551696329233685, -4.220813896785491, -7.0, -2.805619780113231, -3.4584615778161254, -7.0, -7.0, -7.0, -3.7565093254448008, -3.1001866778489813, -3.6345528368718063, -7.0, -7.0, -7.0, -3.9263939002696824, -7.0, -7.0, -7.0, -3.3938258059781585, -7.0, -3.1894669186239772, -7.0, -7.0, -4.159198608378712, -4.012855294834725, -4.541254649786259, -7.0, -3.934720591598597, -4.261999948651827, -4.326540668516562, -3.711733434874681, -3.9439518176496353, -7.0, -7.0, -4.031634642470658, -4.010808597512207, -3.26743370009934, -4.612423560664503, -4.546308179871572, -3.910197369966001, -4.78597723416667, -4.416640507338281, -3.9761894392304566, -7.0, -3.4909076706335322, -7.0, -4.410254078446397, -7.0, -4.007050413245592, -3.6523132991844616, -4.647402532488529, -7.0, -3.9797824326358735, -3.914911441141365, -4.035917794967079, -4.524370154542358, -3.8926371317827746, -7.0, -3.9226605943560844, -3.8364665358773564, -4.284994386722994, -4.132355761753956, -3.1245728608647534, -4.239549720840473, -3.3129012281886356, -2.9795843128465216, -4.034187120793453, -3.9269081017054357, -3.4384948823144637, -4.234846169921364, -2.5018548537616296, -3.5694324359249388, -3.7738839187739726, -4.145320738918325, -2.599970358674706, -4.02639024655699, -4.244573972817435, -3.856265556939869, -7.0, -7.0, -3.9845723156216324, -2.719096395032266, -3.9645660274236105, -7.0, -2.591087102920519, -2.7746925762144707, -3.0895835270087257, -7.0, -3.780869132399668, -7.0, -3.0397343447526954, -7.0, -2.5205572453155787, -3.191343513169289, -3.5378977644842133, -7.0, -3.2022577163595325, -3.8180608567577408, -3.3689807055782293, -4.2486352446993285, -3.314330782520869, -4.293738117783524, -3.7068457481036043, -3.7987887139512493, -4.220944476323413, -3.0979972823670283, -3.0142569205658902, -4.2364364854163306, -2.7751873723527694, -3.9399682905513362, -4.258038338370556, -3.350807759477898, -2.9304889211886853, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8125122842899826, -7.0, -3.637689819118401, -7.0, -4.269139196792179, -4.113625867244077, -4.2383723290283255, -7.0, -7.0, -3.869954941350072, -7.0, -3.7270085981532355, -4.234770295160916, -7.0, -7.0, -7.0, -4.2518084986240465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.220970587520289, -7.0, -7.0, -7.0, -7.0, -3.960489804258006, -3.6985644735424197, -4.154393537956997, -7.0, -7.0, -3.622058519778418, -4.244994166139669, -4.2201604095245955, -7.0, -7.0, -3.3712757194554817, -7.0, -7.0, -4.304512069624235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.23792056635038, -4.275138523943827, -7.0, -3.9167433817375144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.387494700369401, -7.0, -4.2721666251407875, -7.0, -7.0, -3.913760886412323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.074084689028244, -3.753302119172978, -7.0, -3.428357555885853, -7.0, -7.0, -7.0, -4.03243743124139, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6386015599717445, -7.0, -7.0, -7.0, -3.963386391534554, -7.0, -7.0, -3.849284251626279, -3.8646692651730175, -7.0, -7.0, -7.0, -7.0, -4.224014811372864, -3.633443205166375, -7.0, -7.0, -7.0, -7.0, -3.783331762887424, -7.0, -4.2255935481548, -7.0, -7.0, -7.0, -7.0, -7.0, -4.273279131626577, -7.0, -4.228810845011355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.288919605661727, -3.9797759327296856, -7.0, -7.0, -4.2659022043017565, -7.0, -7.0, -3.8474369209063135, -7.0, -7.0, -4.247703281934172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6236627073562047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334272757407155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.695043658821294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9146339999844666, -7.0, -1.501254934436382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517433440897774, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0413926851582254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0253058652647704, -7.0, -2.6201360549737576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8920946026904806, -2.6646419755561257, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070960915800934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3944516808262164, -7.0, -7.0, -3.3291130026818196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1936810295412816, -7.0, -7.0, -7.0, -7.0, -3.465289884631858, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9689496809813427, -7.0, -7.0, -2.5490032620257876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3016809492935764, -7.0, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6434526764861874, -1.5185139398778875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4959603948817053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9812294874200007, -7.0, -7.0, -7.0, -0.6690067809585756, -1.26884531229258, -1.7018556925735069, -7.0, -2.4082399653118496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3664229572259727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4616485680634552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8239087409443189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432873126468675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8715729355458786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9995220131289035, -2.7679799545304054, -7.0, -7.0, -7.0, -4.5413545507544155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.17206264582066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4533795039767075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5064599319861283, -7.0, -7.0, -7.0, -7.0, -3.682686478249768, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024619055253279, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.338605881147866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779711903026216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5848963441374497, -7.0, -7.0, -3.4077307280263356, -7.0, -7.0, -7.0, -3.716337287889549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0090470096602795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.321598430465344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8810421081934057, -7.0, -7.0, -7.0, -7.0, -3.6388884247050757, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1247215350624358, -7.0, -7.0, -2.382917135087531, -3.599066782849663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5877109650189114, -7.0, -7.0, -7.0, -3.7350996531988936, -2.3242824552976926, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1156105116742996, -7.0, -7.0, -2.4671639659690903, -2.8037131100453947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.205475036740891, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0306806639999015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.501254934436382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3138672203691537, -7.0, -2.4409090820652177, -7.0, -2.7528164311882715, -7.0, -3.439937652477201, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9311187105921872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9463294268049558, -7.0, -7.0, -7.0, -7.0, -2.0170333392987803, -2.103803720955957, -7.0, -1.8991949431084194, -7.0, -3.3628969678025444, -2.5037906830571814, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8232133132826673, -3.6221449173122546, -7.0, -7.0, -7.0, -4.7369459952260415, -7.0, -7.0, -2.5839540689101295, -7.0, -7.0, -7.0, -2.311753861055754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8260748027008264, -2.298853076409707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9330532103693867, -7.0, -7.0, -7.0, -7.0, -7.0, -4.076458387712152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8115750058705933, -7.0, -7.0, -2.81887727846276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.18700767354478, -7.0, -7.0, -7.0, -7.0, -2.3819516782648016, -7.0, -2.1868151244474543, -2.7649229846498886, -2.5171958979499744, -2.412180447786648, -7.0, -7.0, -7.0, -2.7024305364455254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.855115160771781, -7.0, -2.1383026981662816, -2.143014800254095, -7.0, -2.311753861055754, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3126004392612596, -7.0, -1.8016323462331667, -1.255272505103306, -2.0492180226701815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5162708827293403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5106790310322102, -7.0, -7.0, -7.0, -2.089905111439398, -1.184524426592544, -0.7991541969590241, -2.334453751150931, -2.6085260335771943, -7.0, -2.423245873936808, -7.0, -2.1894903136993675, -7.0, -7.0, -7.0, -7.0, -7.0, -3.690373306916059, -7.0, -4.020568434801363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.561101383649056, -7.0, -7.0, -7.0, -7.0, -2.5378190950732744, -2.011630850368626, -2.7259116322950483, -7.0, -7.0, -7.0, -7.0, -2.3979400086720375, -7.0, -7.0, -2.651116416049525, -7.0, -2.1172712956557644, -1.4419568376564116, -3.8290463368531826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.269512944217916, -7.0, -7.0, -7.0, -7.0, -7.0, -3.984132478110988, -2.5386575016693786, -7.0, -7.0, -7.0, -7.0, -2.550228353055094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9533246963891853, -3.397070549959409, -5.433113497569717, -7.0, -2.4627722284106115, -7.0, -7.0, -7.0, -7.0, -7.0, -2.489489731962272, -3.4347285417797577, -7.0, -7.0, -7.0, -7.0, -2.3560258571931225, -7.0, -7.0, -7.0, -3.0599418880619544, -7.0, -2.4720246977002813, -7.0, -7.0, -4.618236424563806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.39776625612645, -7.0, -7.0, -7.0, -4.097870189257832, -7.0, -4.501613763802906, -4.393873404149383, -3.977266212427293, -3.4852776801653578, -4.175009000975738, -7.0, -7.0, -7.0, -4.800510876894368, -7.0, -4.182956469055351, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7043993494928875, -4.2224563366792465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.087994255099714, -7.0, -7.0, -4.094447835204867, -3.349255936352989, -2.020052401871201, -7.0, -7.0, -7.0, -4.242168589973666, -3.7834747875822465, -2.910357557272878, -7.0, -4.140036410975282, -3.7038070652743285, -7.0, -3.427323786357247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.450922358675277, -3.979844176893234, -4.695367834387965, -7.0, -7.0, -7.0, -3.9125090106953726, -7.0, -7.0, -2.825209673964737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0424846400112133, -3.1269427179442277, -7.0, -3.701848502207992, -4.086347964543191, -7.0, -4.332347551556558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8431882693117134, -2.5728716022004803, -3.070037866607755, -7.0, -3.3774883833761327, -2.9897167199481047, -3.04688519083771, -7.0, -7.0, -3.081635301502951, -7.0, -3.7250434005491395, -2.6852937813867843, -7.0, -7.0, -3.0461828907408814, -7.0, -7.0, -7.0, -7.0, -2.47928731647617, -7.0, -7.0, -7.0, -2.334453751150931, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -2.833714719570962, -4.13946977558943, -7.0, -7.0, -2.4463818122224423, -7.0, -7.0, -7.0, -7.0, -3.4189638307036225, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5893910231369333, -7.0, -7.0, -7.0, -2.244277120801843, -3.0398105541483504, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808075868091307, -7.0, -7.0, -7.0, -7.0, -3.512828569933557, -2.1896306576921556, -7.0, -2.2287424575642567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4353665066126613, -3.250175948083925, -7.0, -1.9746651808046278, -2.7551122663950713, -2.905256048748451, -7.0, -7.0, -7.0, -7.0, -2.9731278535996988, -3.251232527301566, -7.0, -7.0, -7.0, -7.0, -7.0, -3.968996326648312, -7.0, -7.0, -3.2681097298084785, -3.358717226442781, -3.1222158782728267, -7.0, -4.282123418809911, -7.0, -7.0, -7.0, -7.0, -7.0, -2.741151598851785, -7.0, -7.0, -7.0, -2.214843848047698, -7.0, -4.151339200296363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8674674878590514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.632457292184724, -7.0, -3.6670792054642165, -7.0, -7.0, -7.0, -7.0, -3.351603072419129, -7.0, -7.0, -4.278707883337975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.876956436827322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.100370545117563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8808135922807914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9030899869919435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.069631102620343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7271507044105965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6431070774941166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576283747648257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334835601526356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.20682587603185, -7.0, -3.697490887171057, -7.0, -7.0, -3.0546130545568877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.278753600952829, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7392294144195337, -7.0, -7.0, -1.8808135922807914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5070458724273257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.398634324538392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6658935455344326, -7.0, -4.071992407124176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.297760511099134, -7.0, -2.7209857441537393, -7.0, -2.2278867046136734, -4.125562586641175, -7.0, -7.0, -7.0, -7.0, -7.0, -2.225309281725863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067833086234314, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9818186071706636, -7.0, -2.414973347970818, -7.0, -7.0, -7.0, -3.1095785469043866, -7.0, -7.0, -7.0, -3.9120093755869783, -7.0, -3.307709923404807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149200631645913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.478566495593843, -7.0, -7.0, -7.0, -7.0, -2.214843848047698, -7.0, -7.0, -2.61066016308988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.667452952889954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1318848046615555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8769871844277386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784189205380961, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351931519893126, -4.9793707966348855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941576025408112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.676205706771244, -7.0, -7.0, -4.3027204498961344, -7.0, -7.0, -4.632163613891242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.627027712771981, -2.6268534146667255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3394514413064407, -7.0, -2.44870631990508, -7.0, -2.287801729930226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9294189257142926, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2833012287035497, -2.367355921026019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4787684460657005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.588047496986083, -2.833784374656479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3010299956639813, -7.0, -2.271841606536499, -7.0, -2.632457292184724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.876956436827322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.255983682892567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023087766995445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3979400086720375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.552668216112193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.801383126852731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080619272667835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.827553882825746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.830749013705206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.952550293898202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.18089014193745, -7.0, -7.0, -7.0, -7.0, -3.625723909525756, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8963057074660803, -7.0, -7.0, -7.0, -3.9741085282798463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8920946026904806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.395588463568244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7259116322950483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9030899869919435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7715874808812555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.756141445883285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.434864187741935, -7.0, -7.0, -3.0107238653917734, -7.0, -7.0, -2.305351369446624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.773233679871393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7209857441537393, -7.0, -7.0, -7.0, -7.0, -3.1251744325010917, -7.0, -7.0, -2.3521825181113627, -7.0, -2.812244696800369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.848189116991399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7489628612561616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.855216194733363, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2012149920125177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1245042248342823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4063698354692677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.594760752586463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7649229846498886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.131871982362283, -7.0, -7.0, -4.543608690196552, -7.0, -7.0, -7.0, -7.0, -2.1997551772534747, -3.413467412985825, -2.963787827345555, -2.0043213737826426, -7.0, -7.0, -2.7442929831226763, -7.0, -7.0, -7.0, -7.0, -7.0, -2.234750837958704, -7.0, -7.0, -4.315823457751156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.10110064877518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703282778142782, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9999565683801928, -3.4239827296771757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351776987317764, -4.9793343613877905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.302633919813779, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5073610516826004, -2.3873898263387296, -3.0191162904470725, -7.0, -7.0, -3.683587317572767, -7.0, -7.0, -7.0, -3.7717344253867693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4144719496293026, -7.0, -7.0, -3.4628470358316736, -7.0, -7.0, -7.0, -2.1789769472931693, -7.0, -3.823148059810694, -7.0, -7.0, -7.0, -3.5256726091346264, -7.0, -7.0, -7.0, -7.0, -7.0, -2.436162647040756, -7.0, -1.7829501332654125, -3.396896449142524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8672710189654482, -7.0, -3.7992026563005252, -7.0, -7.0, -7.0, -7.0, -3.6334684555795866, -2.391816923613249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.682483531630788, -2.82865989653532, -2.7730546933642626, -3.710625015060797, -7.0, -3.416141031168329, -2.9084850188786495, -3.7180031682670176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.310544628636955, -7.0, -3.951677437343301, -4.27916484306227, -7.0, -7.0, -7.0, -2.2528530309798933, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3010299956639813, -7.0, -4.147336174036738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4807253789884878, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6547539332529304, -7.0, -7.0, -7.0, -7.0, -3.0242803760470798, -7.0, -7.0, -4.275725867573664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.583198773968623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8770256158672485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.034227260770551, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9030899869919435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4353665066126613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9916690073799486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.125139551371345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.523095838252568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7134905430939424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.441852175773292, -7.0, -7.0, -7.0, -7.0, -7.0, -3.674677467873199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1005428500124648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0569048513364727, -2.6159500516564007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9444826721501687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.866877814337499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.482773570074737, -7.0, -7.0, -7.0, -7.0, -7.0, -4.40185699938287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9826781933834843, -7.0, -7.0, -7.0, -2.8666810784419927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7319914490189294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6850148190800835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2355212326535785, -7.0, -7.0, -2.5289167002776547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.265996370495079, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145972902802181, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.437750562820388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3601577647473424, -7.0, -7.0, -7.0, -3.6372895476781744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.216746333609975, -7.0, -7.0, -3.08278537031645, -3.0397646092150197, -7.0, -2.7307822756663893, -7.0, -7.0, -2.749736315569061, -2.5010592622177517, -4.084945479775793, -7.0, -2.663700925389648, -7.0, -2.4913616938342726, -7.0, -7.0, -2.795880017344075, -7.0, -7.0, -7.0, -4.342007929017339, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2335037603411343, -2.5494120098036346, -7.0, -7.0, -7.0, -7.0, -2.391816923613249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5629269868278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.225851810818157, -7.0, -2.3138672203691537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.559836242654968, -1.8129133566428557, -7.0, -2.603144372620182, -7.0, -3.5680712857173424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7928584219256614, -7.0, -7.0, -7.0, -2.6928469192772297, -2.028932562598488, -7.0, -7.0, -2.2024883170600935, -7.0, -3.7699309201369524, -7.0, -7.0, -7.0, -2.8965262174895554, -7.0, -2.6919651027673606, -3.5531545481696254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788875115775417, -1.6637334093630283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.975431808509263, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7019994748896368, -3.1556396337597765, -3.4674601095072637, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3242824552976926, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5915313394539066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0580462303952816, -7.0, -7.0, -7.0, -2.9474337218870508, -7.0, -7.0, -2.563887264210333, -2.682145076373832, -2.6599162000698504, -7.0, -7.0, -7.0, -2.419955748489758, -7.0, -1.9804578922761003, -7.0, -7.0, -7.0, -7.0, -2.1420343984273713, -2.009450895798694, -2.45484486000851, -2.9138138523837167, -2.3483048630481607, -3.0073209529227447, -3.1202447955463652, -7.0, -7.0, -2.870403905279027, -7.0, -2.737987326333431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.378579576115775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6589648426644352, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5466660250701842, -4.451313518411642, -7.0, -7.0, -7.0, -2.9609461957338317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.724275869600789, -2.254467510467076, -7.0, -2.808885867359812, -7.0, -2.7015679850559273, -7.0, -2.044588752944993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.501018159848659, -7.0, -7.0, -7.0, -3.6422666189026733, -7.0, -7.0, -2.928907690243953, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2837533833325265, -7.0, -7.0, -2.82020145948564, -7.0, -7.0, -2.688419822002711, -2.1760912590556813, -2.416640507338281, -2.1394292733295357, -3.0338256939533106, -2.885361220031512, -7.0, -3.706611115387456, -7.0, -7.0, -3.7746629225378223, -7.0, -7.0, -7.0, -7.0, -2.4896772916636984, -2.916453948549925, -7.0, -7.0, -7.0, -7.0, -4.195844324747282, -2.325310371711061, -7.0, -7.0, -7.0, -2.859438535455056, -2.49876988168213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9400735532451134, -2.7275412570285567, -7.0, -7.0, -4.479226493384303, -7.0, -1.4767921190601778, -7.0, -7.0, -7.0, -2.9180303367848803, -7.0, -1.7993405494535817, -3.471144965160633, -7.0, -7.0, -7.0, -7.0, -2.360309344342059, -7.0, -7.0, -7.0, -3.141763230275788, -7.0, -2.3010299956639813, -7.0, -7.0, -4.319668091214678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9250025076809774, -4.258182160366098, -7.0, -7.0, -7.0, -3.9595469793998377, -4.105258050483448, -4.398026858883687, -7.0, -4.392820015230385, -4.353416091053356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.081635301502951, -7.0, -4.627795841028035, -4.1528843255738686, -7.0, -4.405389053169786, -7.0, -4.106689409193445, -7.0, -4.184237029016371, -3.8105013477665297, -7.0, -7.0, -4.353935455571521, -4.393259237826838, -7.0, -2.8441664104502005, -3.7961115793233833, -2.566276751530018, -2.1805288320314995, -7.0, -7.0, -7.0, -3.4319325523895805, -3.322770429937203, -2.79309160017658, -7.0, -3.8463680436836736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5903401790321667, -7.0, -7.0, -2.54347585490142, -3.4366305511632125, -5.173195012508446, -7.0, -3.3336487565147013, -7.0, -3.291442854793911, -7.0, -4.943360942394186, -3.026737494238748, -3.7655195430979527, -7.0, -3.377670439334323, -7.0, -3.43675312229406, -3.24699069924155, -3.67015304519218, -7.0, -3.084457113581298, -2.9875173043753707, -7.0, -3.4032063416448066, -3.524702893919724, -7.0, -3.936744902547847, -7.0, -7.0, -2.6256210814249075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6997943809416243, -7.0, -7.0, -7.0, -7.0, -3.3016375827268716, -7.0, -7.0, -7.0, -3.4967913157000425, -7.0, -4.028581418642887, -7.0, -7.0, -7.0, -3.763951826033324, -7.0, -7.0, -7.0, -7.0, -3.5146805441249818, -7.0, -7.0, -7.0, -2.8273692730538253, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1958107295133327, -4.7434470461953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4566696294237573, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0073209529227447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7730546933642626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040681439373358, -2.45687190911158, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731024379815688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.740678425227455, -7.0, -7.0, -7.0, -3.747567162737625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.017221214537218, -3.193958978019187, -7.0, -3.9864134054654685, -7.0, -7.0, -7.0, -7.0, -7.0, -2.89707700320942, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3801207542684404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.824125833916549, -2.553883026643874, -3.6887756552728446, -7.0, -7.0, -7.0, -7.0, -3.0939467238905833, -7.0, -7.0, -3.983039616046102, -7.0, -7.0, -2.9360107957152097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8143332281816082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6037396302426137, -7.0, -7.0, -7.0, -3.8780792331116247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.559595448664063, -7.0, -7.0, -7.0, -2.3106933123433606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7356388146361157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.107718610520263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.220369632451394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.559836242654968, -7.0, -2.6319508262592173, -7.0, -2.4705574852172743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3944516808262164, -7.0, -7.0, -7.0, -7.0, -2.8847953639489807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.92389134992005, -7.0, -7.0, -7.0, -7.0, -4.436114919749988, -7.0, -7.0, -2.290776361298428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.423737249982329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2989258164621176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.281285035693031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2357808703275603, -7.0, -7.0, -7.0, -7.0, -2.777807762110115, -2.4885507165004443, -2.8115750058705933, -7.0, -2.35729944896187, -2.60422605308447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.515873843711679, -7.0, -7.0, -2.8561244442423, -7.0, -3.519827993775719, -4.195367600199167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9891827512555476, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0387525889920166, -7.0, -7.0, -3.0492180226701815, -7.0, -7.0, -1.7087041048932998, -7.0, -7.0, -7.0, -7.0, -2.808885867359812, -7.0, -7.0, -4.49811749111387, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0081741840064264, -3.172894697752176, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5774917998372255, -2.747411807886423, -7.0, -7.0, -7.0, -7.0, -7.0, -2.59659709562646, -7.0, -2.7349597612724454, -7.0, -7.0, -7.0, -4.607594404013138, -7.0, -7.0, -3.7589875468676195, -7.0, -7.0, -7.0, -2.5037906830571814, -2.8257505813480277, -7.0, -7.0, -7.0, -7.0, -7.0, -5.098252511606886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7701152947871015, -7.0, -7.0, -7.0, -4.433127915606001, -7.0, -2.1687920203141817, -4.244499778833843, -3.0338256939533106, -7.0, -7.0, -7.0, -2.0714217057453848, -3.137670537236755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4983105537896004, -2.682145076373832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.802842112739074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.10164054878698, -7.0, -7.0, -4.073974819866659, -7.0, -4.625631365330661, -7.0, -7.0, -4.704630893182262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.389538177331949, -7.0, -7.0, -4.2708767268752394, -3.157737313164466, -2.958882280950234, -7.0, -7.0, -7.0, -4.242504158866157, -7.0, -7.0, -4.07107154998365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.885559095608426, -7.0, -7.0, -3.2403956244812444, -4.281042462324887, -4.87154374810799, -7.0, -7.0, -7.0, -3.912795775382462, -7.0, -4.34022592125719, -3.3061032087275857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6501131644435714, -7.0, -3.5557290949540867, -3.4326486600131068, -7.0, -4.128216119832209, -3.9617057840025054, -7.0, -4.156508768749401, -7.0, -7.0, -3.605305046141109, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9916690073799486, -7.0, -3.079904467666721, -7.0, -7.0, -3.9917132757130895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.999130541287371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.18440748541232, -7.0, -7.0, -7.0, -2.3607826898732798, -7.0, -7.0, -7.0, -7.0, -7.0, -3.796197556622054, -4.741789566577141, -7.0, -7.0, -2.7693773260761385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45178643552429, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.178246517332496, -2.5118833609788744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.496929648073215, -7.0, -7.0, -7.0, -3.723701893991268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.270702122087818, -7.0, -7.0, -7.0, -7.0, -7.0, -3.959232249050996, -4.282735372621018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.552668216112193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.413299764081252, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6589648426644352, -7.0, -3.6695957810243134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.27932466544261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8808135922807914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8318697742805017, -7.0, -3.2651387047066582, -7.0, -7.0, -7.0, -3.055187138555754, -3.6814221557210085, -7.0, -7.0, -7.0, -3.1156105116742996, -7.0, -3.3246939138617746, -2.9401178667477184, -2.3450468246483553, -2.450864692379766, -2.748727687356933, -7.0, -2.571708831808688, -7.0, -2.3096301674258988, -7.0, -2.076068010623482, -3.7193668057996536, -2.413299764081252, -7.0, -7.0, -2.216957207361097, -2.9903388547876015, -7.0, -2.921686475483602, -7.0, -3.3176455432211585, -7.0, -4.346137730160444, -1.4920616045125992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8530895298518655, -7.0, -2.3793449363557286, -2.5593080109070123, -7.0, -2.929929560084588, -7.0, -7.0, -7.0, -7.0, -3.038620161949703, -7.0, -7.0, -7.0, -7.0, -3.571165138386463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.53655844257153, -7.0, -7.0, -7.0, -2.4409090820652177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8129133566428557, -2.6319508262592173, -7.0, -7.0, -2.0969100130080562, -7.0, -3.483600262724949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8615344108590377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.218235318937493, -7.0, -7.0, -7.0, -7.0, -2.0681858617461617, -7.0, -7.0, -2.704579449696299, -7.0, -3.3001967991717134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5779511277297553, -7.0, -7.0, -7.0, -2.946452265013073, -7.0, -2.385606273598312, -3.15896526038341, -2.2980339102154357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7197454925295768, -7.0, -3.4974825373673704, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4207806195485655, -7.0, -2.5616975326539935, -2.82020145948564, -7.0, -7.0, -2.072417666398705, -7.0, -2.82020145948564, -7.0, -2.977266212427293, -7.0, -7.0, -3.131297796597623, -3.0203612826477078, -2.50740605862413, -2.935003151453655, -3.0398105541483504, -7.0, -7.0, -2.677396973050582, -2.537189226243645, -2.824125833916549, -7.0, -7.0, -7.0, -2.8680563618230415, -2.829946695941636, -1.9448937412598015, -7.0, -7.0, -7.0, -2.8419848045901137, -2.1400652631443045, -7.0, -3.028977705208778, -2.710963118995276, -3.044539760392411, -7.0, -2.706148588963142, -7.0, -7.0, -2.3738311450738303, -7.0, -2.8790958795000727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1137762838370313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8744818176994666, -7.0, -7.0, -2.7547304690237535, -2.6314437690131722, -7.0, -4.305817969913129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8739015978644615, -7.0, -7.0, -2.8273692730538253, -2.123851640967086, -7.0, -2.8109042806687006, -2.921686475483602, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8692317197309762, -2.8767949762007006, -7.0, -2.629409599102719, -7.0, -7.0, -7.0, -2.3977228071261734, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4271614029259654, -2.977266212427293, -3.725598588011667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.677606952720493, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9841521129041246, -7.0, -7.0, -7.0, -2.4512745975370516, -7.0, -7.0, -2.432434774521513, -7.0, -1.5552838836565568, -1.6965311199696071, -7.0, -7.0, -3.381295623003826, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9960736544852753, -2.8692317197309762, -2.2415464805965484, -2.410355383434471, -2.9135489579065177, -7.0, -2.8512583487190755, -7.0, -4.099646117123231, -1.9599353092375267, -7.0, -7.0, -2.81888541459401, -7.0, -2.214843848047698, -7.0, -2.858537197569639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.290744823265525, -7.0, -7.0, -7.0, -4.155019432182956, -7.0, -1.6454222693490919, -3.7054849439852404, -2.5728716022004803, -7.0, -3.0161973535124393, -7.0, -1.691179759909767, -2.721398375521505, -2.571708831808688, -7.0, -7.0, -7.0, -1.761453026621882, -7.0, -2.9232440186302764, -7.0, -2.9014583213961123, -2.3873898263387296, -1.73814608871206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.706683651763288, -3.9587788272906477, -7.0, -7.0, -7.0, -4.058473475370126, -4.027492310213354, -7.0, -4.2884728005997825, -7.0, -7.0, -7.0, -7.0, -7.0, -4.199947057925218, -7.0, -7.0, -7.0, -7.0, -4.62993940053517, -4.457139784659526, -7.0, -7.0, -7.0, -4.10906081946941, -4.24789965088881, -3.7129301630395437, -7.0, -4.248708735600918, -7.0, -7.0, -7.0, -3.9821354948037695, -2.7283537820212285, -3.6735507734166104, -2.767897616018091, -2.3864246445986614, -3.061829307294699, -4.0687052196919415, -7.0, -2.9457393192824894, -2.910357557272878, -3.0159881053841304, -4.086324231307385, -3.308442446423766, -3.1381447441794874, -7.0, -3.7634279935629373, -7.0, -7.0, -7.0, -3.8972971220594963, -7.0, -7.0, -2.575206779572527, -3.273935843952804, -4.270675925314027, -2.8959747323590643, -2.4683473304121573, -7.0, -3.469895618975018, -7.0, -4.166198151877356, -3.34908316877959, -4.074377537644804, -7.0, -3.697578033651113, -7.0, -3.4414931434230693, -2.81778565588553, -7.0, -3.5928426831311002, -3.215784388711792, -7.0, -2.944975908412048, -3.0528435107623086, -3.7905314524809914, -7.0, -3.5584985707795957, -7.0, -3.3736474722092176, -3.0458117739782704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.908753019184534, -7.0, -7.0, -3.708845638048179, -7.0, -7.0, -7.0, -3.812244696800369, -7.0, -4.331781471570759, -3.151982395457474, -7.0, -7.0, -3.779380011491656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8003537053355636, -7.0, -7.0, -7.0, -2.7019994748896368, -7.0, -7.0, -7.0, -7.0, -3.4874212113594747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.003640014891705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1701638903057043, -3.097604328874411, -3.068556895072363, -3.756940236046724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.322653372213238, -3.2487087356009177, -3.978864984347657, -3.689974444666774, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9995654882259823, -7.0, -7.0, -7.0, -7.0, -7.0, -4.164858246962555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.967547976218862, -3.104487111312395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6866362692622934, -7.0, -7.0, -3.287353772714747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1702617153949575, -7.0, -7.0, -7.0, -7.0, -1.6554254840764648, -3.1620663052160913, -7.0, -7.0, -7.0, -7.0, -7.0, -3.125101566510315, -7.0, -7.0, -2.9907826918031377, -4.032900678732676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2583019756569245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7352395000788343, -7.0, -7.0, -7.0, -2.3729120029701067, -7.0, -2.156851901070011, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.030963842378275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2198463860243605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.455797870134525, -2.456366033129043, -1.9669235411984138, -7.0, -7.0, -7.0, -2.4265112613645754, -7.0, -1.529650305995847, -2.3222192947339195, -3.3400473176613934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062431553162612, -7.0, -7.0, -2.44870631990508, -7.0, -1.5766956594091306, -7.0, -3.22284647997415, -2.09719067832643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1860612225861757, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6816029987308685, -7.0, -1.5574902574651688, -2.03342375548695, -7.0, -7.0, -7.0, -7.0, -2.791690649020118, -7.0, -7.0, -7.0, -7.0, -7.0, -3.775610448006361, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.825515369420171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.859018143888894, -7.0, -7.0, -3.6295671250801513, -7.0, -2.797959643737196, -7.0, -7.0, -7.0, -7.0, -2.69810054562339, -7.0, -7.0, -7.0, -7.0, -3.15106325335375, -7.0, -7.0, -7.0, -3.3164421483082114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9143431571194407, -4.547519343910926, -7.0, -7.0, -7.0, -7.0, -7.0, -2.354108439147401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.595496221825574, -3.9882913419074875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3914644118391033, -2.718224803628757, -7.0, -7.0, -7.0, -7.0, -7.0, -3.690993032099869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.0351437358812237, -2.394889257167419, -3.1670217957902564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.607379953483188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.797146309343345, -3.0203612826477078, -7.0, -7.0, -7.0, -1.2320426643848312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6979264448065052, -4.831055108269423, -7.0, -7.0, -4.545307116465824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6522366684127165, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7851090718786775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.094529356768286, -7.0, -3.4350476413399647, -2.852479993636856, -4.052039507001472, -7.0, -3.338817425576695, -7.0, -7.0, -7.0, -4.140256569677416, -3.704407927386841, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.053347392169267, -3.7757014473743005, -5.172521201440062, -7.0, -7.0, -7.0, -4.611638352122505, -7.0, -4.942216464358906, -2.9053640687668922, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.948412965778601, -3.540954808926133, -3.856275634663985, -7.0, -7.0, -3.906108675522897, -4.26254600711293, -2.7168377232995247, -4.633468455579586, -7.0, -3.28397928423848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.14515199291356, -7.0, -2.59402403573142, -7.0, -7.0, -3.513528333599192, -7.0, -7.0, -7.0, -7.0, -7.0, -4.628348053351905, -2.9903388547876015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6444385894678386, -7.0, -7.0, -7.0, -7.0, -7.0, -4.641216233580327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.719828286254335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0425755124401905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.081250066810652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.74350976472843, -7.0, -7.0, -7.0, -3.6022770843001926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4280537613796307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.313445370426414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7466341989375787, -7.0, -7.0, -7.0, -2.5276299008713385, -7.0, -4.151553704542976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.405422255930527, -7.0, -7.0, -7.0, -7.0, -3.3554515201265174, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8328281295393536, -7.0, -7.0, -7.0, -2.300728780389829, -7.0, -1.8957907482504441, -7.0, -1.8309092995464433, -2.401400540781544, -7.0, -4.260393410079865, -2.1046577910087962, -7.0, -7.0, -2.7528164311882715, -2.852479993636856, -2.591064607026499, -2.7551122663950713, -7.0, -2.9566485792052033, -7.0, -3.8636994819362567, -7.0, -2.5171958979499744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.186579670669986, -7.0, -2.7676505067756327, -7.0, -7.0, -7.0, -7.0, -2.161368002234975, -2.655138434811382, -7.0, -2.9175055095525466, -3.127428777851599, -7.0, -7.0, -7.0, -3.7368743616484226, -7.0, -7.0, -7.0, -7.0, -7.0, -1.79987050007688, -7.0, -7.0, -3.7471786713601642, -7.0, -2.7528164311882715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.603144372620182, -2.4705574852172743, -2.0969100130080562, -7.0, -7.0, -7.0, -3.6185187633048668, -2.8744818176994666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.476638437013566, -7.0, -7.0, -2.7371926427047373, -7.0, -2.359835482339888, -7.0, -7.0, -2.0223694478447944, -7.0, -3.290442730593008, -7.0, -7.0, -7.0, -2.864511081058392, -7.0, -7.0, -2.846337112129805, -7.0, -7.0, -7.0, -7.0, -4.261239071182586, -7.0, -1.4385423487861106, -7.0, -2.888179493918325, -7.0, -7.0, -2.167317334748176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4483971034577676, -7.0, -7.0, -7.0, -7.0, -2.6483600109809315, -7.0, -2.048108713045591, -7.0, -2.776701183988411, -7.0, -7.0, -7.0, -3.605771778568517, -7.0, -7.0, -7.0, -2.532117116248804, -7.0, -7.0, -7.0, -7.0, -2.846955325019824, -7.0, -7.0, -2.725094521081469, -7.0, -3.3680523082026887, -2.6283889300503116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7993405494535817, -7.0, -3.5682604085454175, -7.0, -7.0, -2.6496500552675855, -7.0, -7.0, -2.8830933585756897, -2.9253120914996495, -7.0, -2.7996850909091004, -2.82865989653532, -2.751279103983342, -2.8363241157067516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.368286884902131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6522463410033232, -2.9410142437055695, -2.404833716619938, -7.0, -4.305001089817488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0644579892269186, -2.627024295834346, -2.6503075231319366, -7.0, -2.4616485680634552, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7062055418819706, -7.0, -4.199192752823317, -7.0, -7.0, -7.0, -7.0, -3.030194785356751, -3.0696680969115957, -1.5814528920040938, -7.0, -7.0, -7.0, -7.0, -7.0, -2.658488381309017, -2.8536982117761744, -7.0, -7.0, -7.0, -7.0, -2.6354837468149124, -7.0, -2.367355921026019, -2.376728994335118, -2.228314791865588, -7.0, -2.7291647896927698, -3.286606149046036, -7.0, -7.0, -3.770557474850995, -7.0, -2.611723308007342, -2.076154791417437, -7.0, -7.0, -7.0, -2.6599162000698504, -2.504470862494419, -7.0, -7.0, -4.399791363015452, -2.6088824508987196, -7.0, -7.0, -7.0, -7.0, -1.7323937598229684, -7.0, -7.0, -1.9816244801547354, -2.595496221825574, -7.0, -7.0, -7.0, -2.400537989391946, -7.0, -2.3921104650113136, -7.0, -3.3596932228588203, -7.0, -4.5302925683609425, -7.0, -2.2810333672477277, -4.070296518197765, -1.9695592675234308, -7.0, -2.887617300335736, -7.0, -3.0461047872460387, -3.4628470358316736, -1.9352192721258945, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45484486000851, -7.0, -2.519827993775719, -2.6720978579357175, -2.0403615145545038, -7.0, -7.0, -4.3190852293386985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100163688966044, -4.433841810470936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.610574998959417, -7.0, -7.0, -7.0, -4.786353846576917, -7.0, -7.0, -7.0, -7.0, -7.0, -4.40491065174079, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.392274761571942, -3.969928189428116, -7.0, -3.728492919511281, -3.462397997898956, -2.9710437918360286, -7.0, -7.0, -7.0, -3.6422171294738805, -3.096771016533225, -7.0, -4.0767496406240005, -4.145724574880668, -3.417969642214737, -7.0, -3.7430391548049333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.357420246145415, -3.866700756042499, -5.173031760343499, -7.0, -7.0, -7.0, -4.613492978211986, -7.0, -4.6420438720485455, -3.146128035678238, -4.064532861131578, -7.0, -7.0, -7.0, -4.280851425694206, -3.2329961103921536, -7.0, -7.0, -3.6853834098014873, -7.0, -7.0, -3.5276299008713385, -7.0, -7.0, -4.334182232241241, -7.0, -7.0, -2.9218944709291024, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.28362424432417, -7.0, -3.1080573737838537, -3.998520882835038, -7.0, -2.494850021680094, -7.0, -3.316669129971156, -7.0, -4.3290824690943, -2.583198773968623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7895807121644256, -7.0, -3.8430458105345693, -7.0, -7.0, -7.0, -4.642948997739193, -4.743007762670625, -7.0, -7.0, -2.8709888137605755, -7.0, -2.287054877670668, -7.0, -7.0, -2.970346876230093, -7.0, -7.0, -7.0, -2.3384564936046046, -7.0, -7.0, -7.0, -7.0, -7.0, -2.425697213362591, -2.8048206787211623, -7.0, -7.0, -2.392696953259666, -2.7299742856995555, -7.0, -3.5190400386483445, -7.0, -7.0, -7.0, -7.0, -3.619345252023765, -2.90687353472207, -3.4308809464528913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.786041210242554, -2.8627275283179747, -7.0, -7.0, -2.6711728427150834, -2.6649552063536226, -7.0, -7.0, -3.736237098904729, -3.0595634179012676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.317122737714539, -7.0, -7.0, -3.6840370374865197, -7.0, -7.0, -7.0, -7.0, -7.0, -2.385606273598312, -3.074816440645175, -7.0, -7.0, -7.0, -7.0, -3.554640561254055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2605483726369795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2062860444124324, -7.0, -7.0, -7.0, -7.0, -3.3854275148051305, -7.0, -7.0, -3.805636766305935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.361482295825142, -7.0, -7.0, -7.0, -3.6475785542124552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.180974129232144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9934362304976116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.736157375273132, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9943171526696366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6263146990939448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.546542663478131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.248463717551032, -2.890979596989689, -4.438613538767731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7876375568784235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.129319230615535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5775492423982382, -7.0, -7.0, -3.9751927658771193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.441695135640717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0141003215196207, -7.0, -7.0, -4.548549101029368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.201383467046534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7821858664920165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.099279994042449, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.492248057013865, -7.0, -3.9564469813917054, -7.0, -7.0, -3.2267226219309495, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4861469968065726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.922746212311292, -3.971955834543654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659583461983928, -4.804990823476288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.500641206758236, -7.0, -4.088462130302983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.245290528606833, -7.0, -7.0, -7.0, -4.0643831044121965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.360801612967852, -4.078325386022452, -4.219208918263775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983400738180538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.034718674639405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.005395031886706, -2.8549130223078554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.805092878342673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8721125496264306, -4.644527211951955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30433252154373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1162755875805446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.675778341674085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.289811839117621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6979264448065052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.286456469746983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6151870003574307, -4.517301488634157, -7.0, -4.516905391125257, -7.0, -7.0, -7.0, -3.517156294823795, -3.1025524356630036, -2.5353220082369856, -2.7936351963804653, -4.216231899472033, -7.0, -1.5563274251256347, -2.380376790839503, -4.518237482689147, -7.0, -7.0, -2.9683661870310103, -4.216086692421913, -1.7642236073088604, -3.0575947931384415, -7.0, -3.1840975149130593, -1.8243995969787599, -7.0, -3.916164322342523, -7.0, -4.042102768037303, -3.8195439355418688, -3.4053332230254467, -2.4952147551681585, -3.9165986892551152, -4.51728829120251, -7.0, -4.519407928955734, -3.7430391548049333, -7.0, -3.263728098236335, -7.0, -4.234416037567035, -3.8185557792978027, -1.960740761500965, -7.0, -3.7423584833454764, -3.315904776726982, -4.517367469777369, -4.51807942810387, -4.040892300326412, -7.0, -7.0, -7.0, -2.8161902935342806, -2.0042041932514953, -7.0, -3.4768711343703425, -2.653752633125999, -3.564363543741234, -3.8186612898165646, -4.517908137366838, -4.041432164680265, -4.522822283327583, -3.927331860048449, -7.0, -7.0, -7.0, -2.2581541481427756, -7.0, -7.0, -7.0, -7.0, -2.7913020858835584, -3.8239695379160965, -7.0, -3.244953855620354, -2.19571222376197, -4.517433440897774, -3.439937652477201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5680712857173424, -7.0, -3.483600262724949, -2.455797870134525, -3.6185187633048668, -7.0, -7.0, -1.93670887875277, -2.591501862960277, -3.4754070189233994, -3.4753541657552796, -3.402777069610347, -2.677130665542173, -2.5712454995937803, -2.8086477890631767, -3.4375523905687615, -2.071211164815486, -4.040681439373358, -7.0, -7.0, -3.409555990461098, -7.0, -7.0, -4.51914518196853, -3.9155713028246213, -3.244836803876376, -4.216667229548209, -7.0, -3.407547779153598, -3.2647129082893973, -2.6945263277191858, -4.041379524519975, -4.042352336152693, -3.614686342282013, -3.1230149001807717, -2.171700340886371, -3.91555811541152, -2.791739032986512, -1.5441390597182538, -4.216759516219574, -4.521608750296811, -4.520090328112842, -3.232712164986875, -4.5181057745296185, -3.322839272686321, -3.066300215293246, -3.919979755708313, -3.8193201504349257, -7.0, -4.519775507887456, -4.516931808868013, -7.0, -2.8012789486025635, -7.0, -7.0, -7.0, -7.0, -7.0, -2.385582910615795, -3.115893909272309, -1.9356806163177214, -2.991994404486493, -3.262978146205194, -2.848569762828942, -4.517815875902376, -7.0, -3.160089935812264, -3.3707597427257125, -3.0497605517624757, -7.0, -4.216785880238395, -7.0, -2.140778728145066, -7.0, -4.517156294823795, -3.916256497088509, -3.2900739122522697, -7.0, -7.0, -3.680943850666622, -4.221179420598498, -3.8221288341175814, -4.519788629954198, -4.221805317996549, -4.217891726314075, -4.518184804218403, -1.8805861967308912, -7.0, -4.216179102525562, -7.0, -7.0, -7.0, -3.8190962499555887, -4.216297886630392, -2.9444826721501687, -7.0, -2.976884683384128, -4.517116688085895, -3.164404585220732, -1.824246144417384, -7.0, -3.4082530148297936, -3.743718761114515, -3.376550888177972, -3.1260014567876744, -2.7561201505007595, -3.479169445805911, -3.9172428579074663, -4.219924913188828, -3.673679028912518, -4.518421807033958, -2.775361299557757, -7.0, -4.040206627574711, -7.0, -2.2364300521070484, -7.0, -3.1990941600088276, -4.517037463772294, -4.224235143716918, -7.0, -3.9159272116971158, -7.0, -7.0, -4.043113289762588, -4.5172486965011185, -7.0, -7.0, -4.239749810446363, -3.8208317472884548, -7.0, -7.0, -4.517327882294373, -7.0, -7.0, -4.518316488416471, -7.0, -4.517868599139189, -3.9212832006133365, -3.7470750149405774, -3.1080936541800073, -1.9514668045128307, -4.517103485037208, -7.0, -3.818371074186973, -3.2675106848795448, -7.0, -4.517235497465091, -4.2190734450070035, -4.51774996285426, -4.217246991685393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.218391066469307, -2.855437017653531, -7.0, -7.0, -7.0, -4.216561735047927, -4.518197974435138, -3.740086232305504, -4.517195897949974, -4.042523010689413, -3.8295481957452853, -4.517842238320856, -2.570369028299623, -3.0868045767268297, -4.517024258314842, -7.0, -4.216614485501277, -3.4979343783811503, -3.8233829264392476, -2.559825308445932, -4.043768215815501, -2.539846263642648, -7.0, -7.0, -4.517736779044113, -3.787979711502274, -2.01949214030342, -2.924253434430462, -3.0274005783143263, -3.040385381112445, -4.040127441781456, -4.040272604708435, -7.0, -4.217839130778947, -3.678687433531933, -3.67609236517432, -7.0, -3.5654673821665757, -7.0, -7.0, -7.0, -7.0, -4.217062605852551, -3.0038665700721023, -4.048221622337202, -4.521321181329137, -7.0, -2.00959373153784, -3.217668151286279, -4.5172486965011185, -2.647883126093151, -4.216271492970176, -4.517341078522992, -4.04431759147577, -4.518197974435138, -3.4898051268519477, -4.221009751372294, -3.4882557883675878, -7.0, -3.5268559871258747, -7.0, -1.4915811312752698, -2.681073174258163, -3.9153074784494066, -7.0, -7.0, -2.514676676986443, -3.5234603103244715, -7.0, -7.0, -4.21988565138146, -7.0, -7.0, -7.0, -3.1767487829994527, -7.0, -4.517446633919386, -3.6184664921990803, -3.1559430179718366, -2.3962098539237355, -2.3635870776856063, -2.6070916851790966, -4.218929185088087, -3.2068387209907216, -2.6444385894678386, -3.6828667956623247, -7.0, -3.442636525782232, -4.518553419399928, -3.247301223820282, -2.979978789341033, -7.0, -7.0, -7.0, -7.0, -3.6200709579966586, -4.04058915550344, -3.741204141890008, -4.0408264172755874, -3.449863924718144, -7.0, -3.0670956650757906, -7.0, -7.0, -3.1455306163719823, -3.8333727117977894, -3.4790500017126824, -7.0, -3.2058989954366655, -7.0, -2.7552394576339077, -2.4357382204426923, -2.532935563607061, -7.0, -3.275911969341105, -2.619397717259811, -3.2103686895810273, -2.867916010514917, -2.7083981345910604, -4.014167583607013, -2.9707963815537974, -3.173152635632317, -3.629073043426928, -3.3733510618714013, -3.4954909680247956, -2.9309435565337925, -3.222629776969852, -2.494509447937863, -2.8839549765516828, -3.893669309799605, -3.157816961558364, -2.791912529111286, -7.0, -2.5921715180832483, -3.5471415203838537, -2.9979398687097745, -3.3000299678823013, -3.2469542651406975, -3.2886068903909687, -3.4942937686653326, -3.496474961863589, -3.378579576115775, -2.8421828934051807, -2.472495250968145, -3.2279766379455532, -2.4267489259439063, -2.5384149714282267, -2.506654059799193, -2.889040982413291, -2.5577954361732025, -3.2962262872611605, -1.3388058084949108, -2.7058637122839193, -3.2127328262241575, -2.9565898139962505, -2.4235565785971245, -2.363565556109962, -4.2310233428503805, -2.6698790890013155, -2.746008552259242, -4.519644265409076, -2.659782160442492, -2.948123049558286, -4.242019364975552, -7.0, -2.239398798651167, -1.5707693706090062, -2.6440084295323794, -3.916677618403313, -3.1405583202415124, -4.218259716818564, -2.2665337307243667, -4.572499854279727, -2.3055885681982082, -3.0324765479535576, -3.181528196150299, -3.2392336020722494, -3.291602505421389, -2.6165417892021465, -2.646200848074611, -2.931127192823453, -2.5418970074937137, -2.5827642863448856, -2.662035257986414, -2.217024327282991, -3.3435923832614898, -1.8664891445287781, -2.3525241236469903, -3.050031562368402, -2.459328928945867, -4.229208133978611, -3.0759746270911994, -2.627996640264847, -2.3765973450330384, -4.5199591807520685, -4.518632367678986, -7.0, -7.0, -3.305615149607283, -1.9755258014718424, -4.042102768037303, -2.630041469090016, -4.0442652999153195, -3.2657237281336005, -2.702081614845795, -2.948155484012653, -3.674952948048565, -4.518145291171665, -3.082156803810918, -4.219977256744623, -2.8255594089315244, -2.8727000147927284, -3.6797522632579414, -4.540104133899875, -3.303502991379405, -3.933689708957895, -3.434900393753358, -3.574429992161969, -3.523681447800753, -3.0469704624639555, -4.04945061813155, -3.7504955381044454, -3.9208925777394548, -3.7417816961431667, -7.0, -3.1643198031962783, -4.521308105487026, -7.0, -3.190800763000039, -2.339104758662789, -2.127707357576145, -4.517565353082339, -3.464762696435282, -3.4800723044565447, -4.05512338890692, -7.0, -7.0, -4.041340040212176, -2.7201716499108235, -7.0, -3.568605834163208, -3.7187863010659177, -4.0405495992697675, -2.8193476390283543, -3.482912543686698, -2.982019832464153, -4.517077077735613, -3.1645985157488954, -3.819925420670676, -3.0093221052868215, -2.9474819330823383, -7.0, -3.9163486522754605, -3.6737710864286717, -3.5195296940992455, -2.6508766945653943, -3.8264765013148656, -7.0, -3.425778686860983, -3.6186755388851397, -2.3523111788979363, -3.568110421335942, -2.8551481540375985, -3.67583069469469, -7.0, -3.8354368948018585, -4.51869814695026, -3.032975442566309, -4.0478327947340205, -4.519998529118848, -3.2906760809696594, -3.3065007149823713, -4.517116688085895, -4.217075778865637, -2.464561079412046, -3.5246557123577773, -4.222781480425739, -3.1984738016670837, -3.623701445026877, -3.770986940942376, -3.6813963148569364, -3.164673081360996, -2.9579925120750126, -4.05986622041094, -4.535420718056173, -7.0, -7.0, -3.0373077988643398, -3.3154640523400225, -4.217944315480356, -3.0323668937196664, -2.7247590605996757, -3.385133679818153, -3.1730509206636928, -3.1118839301593266, -3.5433567985654086, -7.0, -7.0, -7.0, -4.517538973850582, -4.044422155711843, -3.682248252589059, -3.5508884680813524, -4.517684039800974, -3.7404153280594743, -4.517024258314842, -2.4947987194361336, -4.217009909804205, -7.0, -7.0, -4.519066326864926, -4.221635893166133, -7.0, -4.5206538109166265, -3.148590316719418, -4.54184123916057, -4.222963454651633, -4.217641840773327, -3.8268778287230028, -7.0, -7.0, -7.0, -3.918371134693579, -4.218942301606471, -3.918528335883243, -3.249373088627388, -3.409075275308904, -3.596731455692808, -4.519013748840418, -7.0, -3.463756162184995, -3.9156767877161505, -4.517090281587123, -3.0998826777007147, -7.0, -7.0, -3.4194473557107146, -3.509459136176865, -3.924783085544135, -7.0, -7.0, -4.5210988384536, -7.0, -3.413132050434872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6757783416740852, -4.058909780686973, -7.0, -7.0, -7.0, -2.4245754000580986, -3.1792644643390253, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4186754297187782, -7.0, -7.0, -7.0, -3.5364149547842194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.561459171241916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4533183400470375, -7.0, -3.258397804095509, -7.0, -3.340563083333371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9443181355003873, -7.0, -7.0, -3.158060793936605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.338735308799518, -7.0, -7.0, -7.0, -7.0, -3.0492180226701815, -7.0, -7.0, -2.9694159123539814, -3.622214022966295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.456366033129043, -2.8744818176994666, -7.0, -1.93670887875277, -7.0, -2.357934847000454, -7.0, -7.0, -7.0, -1.9395192526186187, -2.183744223284207, -7.0, -7.0, -2.467977875279793, -7.0, -7.0, -7.0, -2.9561684304753633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0690017170456, -7.0, -7.0, -7.0, -7.0, -2.2322698652699, -7.0, -7.0, -2.990919165834241, -7.0, -7.0, -7.0, -4.437354127848175, -7.0, -7.0, -3.1264561134318045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3960248966085933, -7.0, -2.5025788385822736, -2.9749719942980692, -2.7101173651118162, -3.5060989599284405, -7.0, -7.0, -2.9003671286564705, -3.4396484295634737, -7.0, -7.0, -7.0, -7.0, -4.083072412284536, -7.0, -7.0, -7.0, -2.835056101720116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.553826411010125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9761206182998157, -7.0, -3.5683190850951116, -7.0, -3.0519239160461065, -3.2573369850674387, -7.0, -7.0, -7.0, -2.9258275746247424, -7.0, -7.0, -2.5269850685599957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.781755374652469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.672839529029401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9960736544852753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.120080134129453, -7.0, -7.0, -7.0, -2.6384892569546374, -3.330210784571528, -7.0, -3.2288279401906332, -7.0, -4.500263926200883, -7.0, -7.0, -7.0, -7.0, -1.8738186460006043, -3.070037866607755, -3.2161659022859928, -3.1986570869544226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.782472624166286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.007139425162523, -7.0, -7.0, -3.4694538137671267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7764348125004576, -3.087781417809542, -2.621176281775035, -7.0, -7.0, -2.442793225939769, -7.0, -7.0, -7.0, -2.835056101720116, -7.0, -7.0, -7.0, -2.7715874808812555, -7.0, -7.0, -7.0, -2.680335513414563, -3.96208508051736, -2.5224442335063197, -4.433377752211042, -7.0, -7.0, -4.547479333931025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4097641042663462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9240551874495404, -4.7348957956663345, -7.0, -4.039731296098691, -4.099979734081352, -4.658068662483436, -4.502863926138332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.801139485303378, -3.881783955593385, -4.485316748040482, -7.0, -7.0, -7.0, -4.453104198432209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3676354197905107, -7.0, -4.272688467413575, -7.0, -3.2726150608493985, -2.3434085938038574, -7.0, -7.0, -3.026186472960786, -3.4951973183654577, -7.0, -7.0, -4.145755623637207, -3.418052578237505, -7.0, -3.4419306745501714, -2.904715545278681, -7.0, -3.516931808868013, -7.0, -7.0, -7.0, -3.88058495606498, -3.461953037961793, -4.69590175824009, -7.0, -7.0, -7.0, -4.6135035533500375, -7.0, -4.6420488232200245, -3.623766000133931, -7.0, -2.694605198933569, -7.0, -4.012837224705172, -4.2808741725572155, -7.0, -3.062393937253195, -2.862489166905897, -3.8615642787784408, -3.1556396337597765, -7.0, -3.264184372768502, -4.2646289582612225, -3.0863598306747484, -4.334192291524873, -7.0, -7.0, -7.0, -3.718377112354902, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1528995963937474, -7.0, -2.654497409629463, -7.0, -3.4095950193968156, -3.5212688755983854, -3.11293997608408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2060158767633444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.471936804594729, -4.165798096658618, -4.743015610916935, -7.0, -7.0, -2.8715729355458786, -7.0, -7.0, -7.0, -7.0, -3.146902869928199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3240765797394864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8202671571609645, -7.0, -7.0, -3.685024785105714, -7.0, -3.935726732763876, -2.907411360774586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5943925503754266, -7.0, -3.3197304943302246, -7.0, -7.0, -3.435127379609151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.016071816734024, -7.0, -7.0, -4.286254320828791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.85582190540603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.282871245335206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357200878999709, -7.0, -7.0, -7.0, -2.7546758991321316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295072052054132, -7.0, -7.0, -7.0, -4.032232984867467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335096674261542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.698622429702098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9669235411984138, -7.0, -7.0, -2.591501862960277, -2.357934847000454, -7.0, -7.0, -7.0, -7.0, -2.1789769472931693, -1.9242792860618816, -7.0, -1.9731278535996988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058046230395282, -7.0, -7.0, -7.0, -7.0, -2.961421094066448, -7.0, -7.0, -3.493353473120484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0195316845312554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.11143055176598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.957607287060095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.42673079296728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.82486004404595, -7.0, -7.0, -7.0, -7.0, -2.8260748027008264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.113943352306837, -7.0, -2.08278537031645, -7.0, -3.6115640020881243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149240672839162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.413299764081252, -2.9459607035775686, -7.0, -3.1099158630237933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.004009515801031, -2.413299764081252, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1946426687347085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.271841606536499, -7.0, -7.0, -5.4329388411163535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3891660843645326, -3.918990875891816, -4.431508504864177, -7.0, -7.0, -7.0, -7.0, -7.0, -4.391957848245589, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784281993434279, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703463341883293, -4.219610719301437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3871227599275855, -7.0, -7.0, -7.0, -7.0, -3.726890140741822, -7.0, -7.0, -7.0, -3.6386015599717445, -7.0, -7.0, -7.0, -4.136593747333078, -7.0, -7.0, -7.0, -2.515211304327802, -7.0, -3.4765418090274287, -4.1827854420846835, -7.0, -7.0, -4.051113916777601, -4.076276255404218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941640608576343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2249213455840313, -7.0, -3.1089031276673134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590395947184013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5083052193633395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1629027893892045, -4.740717876059285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9943171526696366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6580113966571126, -7.0, -4.603761260608287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.589502796263764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.310990527134579, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.147985320683805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5935075893317654, -3.319522449065454, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8936508169859634, -7.0, -7.0, -7.0, -4.575961032060751, -7.0, -7.0, -7.0, -7.0, -2.164352855784437, -7.0, -4.55713410182759, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333709182897272, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3913762391696496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4754070189233994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.09321149181366, -7.0, -7.0, -7.0, -4.735527043564013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426169547035326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368379871623802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149028104289625, -7.0, -7.0, -1.7558748556724915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.373095987078727, -7.0, -4.495280628260573, -7.0, -7.0, -7.0, -7.0, -7.0, -2.910624404889201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605391249889289, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.796504951553296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.731999498888382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.841934810980999, -7.0, -7.0, -4.063445953123033, -4.134400255918984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.678076576148942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.215901813204032, -7.0, -3.3984608496082234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6813769331998136, -7.0, -2.998695158311656, -7.0, -7.0, -7.0, -2.971275848738105, -7.0, -7.0, -3.7681939616330715, -7.0, -4.325402764963596, -7.0, -7.0, -7.0, -7.0, -3.1702617153949575, -7.0, -7.0, -7.0, -7.0, -7.0, -2.967079734144497, -7.0, -7.0, -7.0, -3.820004306808318, -7.0, -7.0, -7.0, -7.0, -4.7401731378151295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1398790864012365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.795880017344075, -7.0, -7.0, -7.0, -7.0, -4.779610919406259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2242740142942576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.256031856208043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4753541657552796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.796491073891664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9907826918031377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5409548089261325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979097457744342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.996949248495381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080633701055939, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1157214284114376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03259861685471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.402777069610347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9956351945975501, -7.0, -7.0, -2.8232568101510402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.95502131363761, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542987168420799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.121887985103681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2942457161381182, -7.0, -7.0, -7.0, -4.576272226219881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1156105116742996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.130333768495006, -3.697316541732383, -7.0, -7.0, -3.0538464268522527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0413926851582254, -1.9311187105921872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4265112613645754, -7.0, -7.0, -2.677130665542173, -1.9395192526186187, -2.1789769472931693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6464037262230695, -7.0, -3.7563698216020813, -7.0, -7.0, -7.0, -7.0, -2.9542425094393248, -7.0, -7.0, -2.88993167285404, -7.0, -7.0, -7.0, -4.735958002142925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1089031276673134, -2.3242824552976926, -7.0, -7.0, -7.0, -7.0, -2.385606273598312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5813156161174313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2008504980910777, -7.0, -7.0, -7.0, -7.0, -2.8298163247172368, -7.0, -7.0, -2.660865478003869, -2.7291647896927698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4742162640762553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1491944711346544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.940108802990022, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1586639808139894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.582063362911709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605972678066446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0755469613925306, -7.0, -7.0, -7.0, -7.0, -7.0, -4.097666762890238, -7.0, -7.0, -7.0, -7.0, -3.0362295440862943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4533183400470375, -7.0, -7.0, -7.0, -1.9294189257142926, -7.0, -3.3749315539781883, -5.432914800325537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431387890960021, -7.0, -7.0, -4.573602552304502, -7.0, -7.0, -4.090628333058493, -7.0, -7.0, -3.9519200735202937, -7.0, -7.0, -7.0, -7.0, -7.0, -4.78417492853611, -3.767304317453273, -7.0, -7.0, -4.448381636854661, -7.0, -4.402287181360576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.085789890327987, -7.0, -7.0, -4.57016919245616, -4.000086850211649, -3.248218561190075, -7.0, -7.0, -7.0, -3.842609239610562, -7.0, -7.0, -7.0, -7.0, -3.693023067923694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351892891903961, -4.377274370059828, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6351820486562674, -3.524266268766979, -7.0, -2.929929560084588, -7.0, -4.603750445560116, -4.562042924490958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.551224026542675, -7.0, -7.0, -7.0, -3.052886235256382, -3.9849771264154934, -2.516755660221549, -7.0, -7.0, -7.0, -7.0, -4.627007210742902, -7.0, -7.0, -7.0, -3.735997884091794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8616638236770844, -4.439553732943139, -7.0, -3.041787318971752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.218535505216528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5559404378185113, -7.0, -7.0, -7.0, -7.0, -7.0, -4.235701553060869, -7.0, -7.0, -2.5888317255942073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.286568734057264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2380461031287955, -4.310672074930124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3690611665868144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.792391689498254, -2.269512944217916, -4.35723903776805, -7.0, -7.0, -7.0, -2.6455314297070633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9938218538340813, -7.0, -7.0, -7.0, -4.178407101369325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0341068297076434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2215011749824356, -7.0, -7.0, -3.0610753236297916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.42410541751129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216904498521672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8615344108590377, -7.0, -7.0, -7.0, -2.5712454995937803, -2.183744223284207, -1.9242792860618816, -7.0, -7.0, -1.9956351945975501, -7.0, -7.0, -2.1367205671564067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.500373714353374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2278867046136734, -2.3453737305590883, -2.3584107862063366, -7.0, -7.0, -3.3172622140648027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.370142847051102, -3.401572845676446, -2.5080244315589613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.373353433957022, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727809558365384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.971062360951899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6009728956867484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.912912551176097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.672119418119499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1914510144648953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.419955748489758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.734799829588847, -7.0, -7.0, -7.0, -3.9216067174769838, -2.971275848738105, -7.0, -7.0, -7.0, -3.0437551269686796, -7.0, -7.0, -7.0, -2.597695185925512, -7.0, -7.0, -7.0, -2.481442628502305, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5984257066728684, -7.0, -7.0, -3.0261245167454502, -4.066748209617138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7634279935629373, -7.0, -2.45484486000851, -7.0, -7.0, -7.0, -3.3581252852766488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.570391143779831, -7.0, -3.4260230156898763, -7.0, -4.0477031081343045, -7.0, -4.0647449281249015, -7.0, -7.0, -7.0, -4.136720567156407, -2.995020606124758, -7.0, -7.0, -7.0, -7.0, -3.1758016328482794, -7.0, -7.0, -7.0, -4.352259719157145, -4.2804417782984165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153967221645479, -3.4109458586877746, -7.0, -3.3995114795956187, -7.0, -7.0, -4.6323357942172505, -7.0, -7.0, -3.5908418347816027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985785617772605, -7.0, -7.0, -7.0, -7.0, -3.985830489858392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.640103625305096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080911354139791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6842467475153124, -7.0, -7.0, -7.0, -7.0, -2.553883026643874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576168519607808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.033363432619723, -7.0, -7.0, -7.0, -7.0, -7.0, -2.146128035678238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.215928229339918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.529650305995847, -7.0, -7.0, -2.8086477890631767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1367205671564067, -7.0, -7.0, -3.30941722577814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8129133566428557, -2.307496037913213, -2.0354297381845483, -7.0, -7.0, -3.1396692316100534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.09377178149873, -2.2891771688689815, -7.0, -7.0, -3.7846885995014214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4689746837261892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.250354934591055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.192604618582549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.968482948553935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.153204900084284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.021779774323242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1789769472931693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7126497016272113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0107238653917734, -4.242404758074511, -7.0, -7.0, -7.0, -7.0, -2.8965262174895554, -3.4114513421379375, -7.0, -7.0, -7.0, -7.0, -2.734799829588847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0081741840064264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.541454428747589, -7.0, -7.0, -7.0, -3.8344524956717305, -2.78710609303657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.134126997288191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.287577809078705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.633367445117007, -7.0, -7.0, -7.0, -7.0, -3.6033609243483804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5068206042642256, -7.0, -3.0141003215196207, -7.0, -7.0, -3.9841671271469883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.918554530550274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4653828514484184, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639735439967236, -4.740457434318508, -7.0, -7.0, -2.3191060593097763, -7.0, -7.0, -7.0, -7.0, -3.093421685162235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779740751176741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6074550232146687, -7.0, -7.0, -7.0, -3.5857990090130007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7170044070405472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9122220565324155, -7.0, -7.0, -3.5931752634781025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.876985262766487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1818435879447726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6923180442592787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7221812966649073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3222192947339195, -7.0, -7.0, -3.4375523905687615, -7.0, -1.9731278535996988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727191403365907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149018859818209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1075491297446862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.60535892548885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495450669690435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.938832324687507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3770146804081005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080637308078068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3240765797394864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3197304943302246, -3.6758974356443237, -1.9907510041972791, -7.0, -7.0, -2.185363193491215, -3.4877744973806672, -7.0, -7.0, -7.0, -2.9461246192171453, -7.0, -2.688642251959892, -3.2794387882870204, -7.0, -3.4423229557455746, -2.90946030951289, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5800806438630075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.414230329001037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.319522449065454, -7.0, -3.213384924916388, -2.723518819179158, -7.0, -3.3251049829714074, -2.7846172926328756, -3.0281644194244697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.866356848444443, -7.0, -7.0, -7.0, -7.0, -2.4370707382903847, -7.0, -7.0, -3.104487111312395, -2.831751312022354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3400473176613934, -7.0, -7.0, -2.071211164815486, -2.467977875279793, -7.0, -7.0, -7.0, -2.8232568101510402, -7.0, -7.0, -3.30941722577814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.404320467221731, -7.0, -7.0, -7.0, -2.7507012003958686, -4.125025586819949, -7.0, -7.0, -7.0, -7.0, -2.6034536991873214, -3.3119656603683665, -2.806095142558302, -2.446823361859061, -7.0, -7.0, -7.0, -4.273865140887861, -3.3184807251745174, -3.144418518602069, -7.0, -7.0, -3.3230457354817013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8062769038987865, -7.0, -2.7244806771885997, -3.302330928684399, -7.0, -7.0, -7.0, -7.0, -3.449169732165201, -7.0, -3.3142886609474975, -7.0, -3.057539321108782, -7.0, -7.0, -3.021602716028242, -2.210280291360743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8667755227942764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.306425027550687, -7.0, -7.0, -3.477796299015296, -7.0, -3.1365620365899805, -3.3860439219322616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7264555202583103, -7.0, -3.3068537486930083, -7.0, -2.2059984408197937, -7.0, -3.59659709562646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3517963068970236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.447197566155191, -3.302330928684399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.312811826212088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5122943328400638, -3.526597709103452, -7.0, -7.0, -7.0, -3.5743785644130823, -7.0, -3.04720994556899, -7.0, -4.521870011498159, -7.0, -7.0, -7.0, -7.0, -2.2202715717543526, -3.1441069730493227, -7.0, -2.9014583213961123, -7.0, -3.307923703611882, -7.0, -7.0, -7.0, -7.0, -7.0, -2.86844850133673, -7.0, -7.0, -7.0, -7.0, -7.0, -3.65263306808311, -7.0, -3.36679638328673, -7.0, -3.9271136119337604, -7.0, -3.3047058982127653, -2.6979844861673534, -7.0, -7.0, -7.0, -7.0, -3.4929000111087034, -7.0, -7.0, -7.0, -7.0, -7.0, -3.277814400881507, -3.4530123911214554, -7.0, -7.0, -7.0, -3.4782778319196046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0419845014867866, -3.326335860928751, -7.0, -7.0, -3.3207692283386865, -2.952469547503639, -3.6326597132939136, -3.616231969538357, -7.0, -7.0, -3.5252804524478916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313023110323238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.155730671278588, -7.0, -7.0, -4.1271534106979635, -4.446568231376214, -7.0, -7.0, -7.0, -7.0, -4.513736844287251, -4.4242934715668065, -7.0, -4.118330874057302, -7.0, -7.0, -7.0, -7.0, -4.80664455621679, -7.0, -4.797676014934945, -4.134400255918984, -7.0, -7.0, -7.0, -7.0, -4.242392331375743, -7.0, -4.123993117376059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.084377652510378, -7.0, -3.688808999699281, -3.8637787291390504, -7.0, -2.9204711793184543, -3.036129648862875, -3.442636525782232, -2.6600468488873688, -3.293638735631343, -3.5347873586294916, -7.0, -3.347748075174585, -2.720413760411568, -7.0, -3.553093786437186, -2.299942900022767, -7.0, -2.9906939606797516, -4.233985478780212, -7.0, -7.0, -3.2409056656041253, -3.167898869393933, -4.332582719834521, -7.0, -7.0, -3.3372595397502756, -3.931193348542249, -7.0, -3.4192071574778993, -7.0, -4.1211328899984085, -7.0, -7.0, -3.598790506763115, -4.015045239174416, -3.5217916496391233, -3.1925674533365456, -3.4202033743532962, -3.9072769666896816, -2.951337518795918, -7.0, -3.1048697542030097, -4.107164728282974, -7.0, -3.872932838859368, -7.0, -7.0, -7.0, -4.08181520063228, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7626035495668035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357572784051678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.533136288278639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.087713997583522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7628285531890904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5958267770732233, -7.0, -7.0, -7.0, -4.877348305763564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.429752280002408, -7.0, -7.0, -7.0, -3.7327354312288112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9030899869919435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040681439373358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.095308861385381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.07213956323974, -7.0, -7.0, -7.0, -2.279894980011638, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7275575224348954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.192827543293699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9122220565324155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6797911709803546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3729120029701067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097749994285252, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.955796751121542, -7.0, -7.0, -4.242702892223277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.801849439205396, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1439511164239637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.570239294602916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.182528775278964, -7.0, -7.0, -7.0, -4.979389013112218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941595898175119, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.562114350588686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080864490098036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9522595365908204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.65748610775906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.876939140345395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.390405156480081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7259116322950483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.12501744535038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1921677259471775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2528530309798933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.569409026347427, -3.822538554147357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.873436863222037, -4.979065556997999, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1055196464203245, -7.0, -7.0, -7.0, -7.0, -3.370050237074868, -7.0, -7.0, -7.0, -3.0770043267933502, -7.0, -3.4439927191170185, -7.0, -7.0, -2.4153072922255676, -3.1389798130022526, -7.0, -2.8041394323353503, -7.0, -2.851869600729766, -7.0, -7.0, -4.2622374497415825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4913616938342726, -2.2487903775753857, -3.2938043599193367, -7.0, -3.042181594515766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4756711883244296, -7.0, -7.0, -2.9564085711958326, -2.370505044202905, -2.4871383754771865, -7.0, -7.0, -7.0, -7.0, -7.0, -2.339782584655998, -7.0, -7.0, -7.0, -7.0, -7.0, -3.140468759922789, -2.432969290874406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.927319024959656, -7.0, -1.9463294268049558, -7.0, -7.0, -7.0, -7.0, -2.7715874808812555, -2.4353665066126613, -1.7928584219256614, -2.3944516808262164, -2.218235318937493, -7.0, -2.476638437013566, -7.0, -3.409555990461098, -2.9561684304753633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7259116322950483, -7.0, -1.8808135922807914, -7.0, -7.0, -7.0, -1.9084850188786497, -7.0, -2.7535830588929064, -1.6842467475153124, -7.0, -7.0, -7.0, -7.0, -7.0, -2.245018870737753, -7.0, -7.0, -2.3573391885859913, -3.6336367541602255, -7.0, -7.0, -7.0, -4.262466910734854, -2.4913616938342726, -3.124178055474675, -2.392696953259666, -7.0, -7.0, -2.2194535370768107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.733999286538387, -2.4265112613645754, -3.7104558643354246, -7.0, -3.4818724103106633, -7.0, -7.0, -3.8175653695597807, -7.0, -7.0, -1.5214286788851048, -7.0, -3.131297796597623, -7.0, -2.4771212547196626, -7.0, -2.7861833455676335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8363241157067516, -7.0, -2.696235006222717, -2.2833012287035497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8690143007117155, -7.0, -7.0, -7.0, -7.0, -1.9400745984269563, -2.790988475088816, -2.9813655090785445, -1.2454076516168293, -2.6967930850817443, -1.9984178689901253, -7.0, -7.0, -7.0, -2.924795995797912, -2.8356905714924254, -1.8976270912904414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0689276116820716, -7.0, -7.0, -2.733999286538387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4479328655921804, -7.0, -7.0, -7.0, -7.0, -7.0, -3.011993114659257, -3.0707764628434346, -3.558708570533166, -5.150612162606934, -7.0, -2.762678563727436, -7.0, -7.0, -7.0, -7.0, -2.8898617212581885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2540644529143377, -3.1571544399062814, -7.0, -7.0, -7.0, -7.0, -1.9451871240189849, -1.5826314394896364, -7.0, -7.0, -7.0, -2.7795964912578244, -7.0, -1.585580716933467, -7.0, -7.0, -7.0, -3.058995093525416, -2.979548374704095, -3.1166907434117026, -2.9232440186302764, -4.502372488311689, -7.0, -7.0, -2.7737864449811935, -7.0, -7.0, -2.8218409272004545, -2.6515202982342205, -7.0, -7.0, -7.0, -2.03342375548695, -1.6394864892685859, -0.9289177202554291, -2.236033147117636, -7.0, -7.0, -7.0, -2.7774268223893115, -2.7686381012476144, -7.0, -2.7944880466591697, -2.332149796241367, -2.593286067020457, -7.0, -2.537189226243645, -4.008781090107339, -7.0, -2.745855195173729, -3.781827152932428, -7.0, -2.271066772286538, -7.0, -7.0, -2.4369573306694496, -2.3607826898732798, -7.0, -7.0, -7.0, -7.0, -5.099324912538834, -3.139249217571607, -7.0, -7.0, -7.0, -3.189770956346874, -2.5419950357274104, -7.0, -7.0, -7.0, -7.0, -2.7315887651867388, -7.0, -2.569958818096594, -7.0, -7.0, -2.4747017805962495, -2.801403710017355, -7.0, -7.0, -4.956525391661737, -7.0, -1.8879724546272227, -4.24831664034178, -7.0, -2.7259116322950483, -2.3621996388688866, -7.0, -2.0544737683203174, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7075701760979367, -2.2952004520032574, -2.0092080017868237, -7.0, -2.0179272562152137, -2.315970345456918, -1.9953101238623854, -7.0, -7.0, -4.320696597770426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.102828027919261, -4.258972331109386, -7.0, -7.0, -4.578914137904182, -7.0, -7.0, -3.922552466761376, -7.0, -7.0, -4.655416985727724, -7.0, -7.0, -7.0, -7.0, -7.0, -4.787453389721934, -7.0, -7.0, -7.0, -4.455453968778628, -7.0, -4.406233511374323, -4.231138136029719, -7.0, -7.0, -4.187041040042328, -7.0, -4.2459812555626195, -7.0, -7.0, -7.0, -7.0, -2.6972293427597176, -3.5753148805829507, -2.4693096496224327, -1.7744393091379262, -7.0, -7.0, -3.117602691690084, -3.9452592658135237, -2.7641761323903307, -3.2935835134961167, -7.0, -3.5482665451707454, -3.7318304202881625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.482835485930594, -3.6590555379726695, -7.0, -2.829946695941636, -3.0517311960598494, -7.0, -3.500932780958173, -7.0, -4.341760864759556, -2.939619078956698, -4.070296518197765, -2.812244696800369, -3.6877964113812944, -4.019282495761732, -3.9832879197666284, -7.0, -3.679246145413859, -3.5803546611065915, -3.1252446090735795, -3.479719235439571, -2.886490725172482, -3.462301715051026, -4.090328606823422, -7.0, -4.159627340658673, -7.0, -7.0, -3.3362595520141936, -7.0, -2.8825245379548803, -7.0, -7.0, -7.0, -7.0, -3.1014893069102683, -2.851869600729766, -2.0940050223646494, -7.0, -2.8318697742805017, -3.5279304952743336, -7.0, -2.4138583422700264, -7.0, -3.8047526021504607, -7.0, -3.400933960963036, -2.2675069615203176, -7.0, -7.0, -3.7712934426290596, -7.0, -3.0086001717619175, -7.0, -3.0277572046905536, -2.924795995797912, -7.0, -7.0, -7.0, -2.4076741092293186, -7.0, -3.5514499979728753, -7.0, -7.0, -7.0, -2.708302294449341, -4.744222551279631, -7.0, -7.0, -1.9444826721501685, -7.0, -7.0, -7.0, -7.0, -2.8684974938893117, -7.0, -7.0, -7.0, -7.0, -7.0, -2.745855195173729, -3.0532705666813786, -2.73559889969818, -7.0, -2.53655844257153, -3.1562461903973444, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8302678009336417, -7.0, -7.0, -7.0, -2.961421094066448, -3.1133574320107926, -2.378397900948138, -7.0, -2.1456107104450566, -7.0, -3.94146173934733, -7.0, -7.0, -7.0, -7.0, -2.09541844491831, -7.0, -7.0, -1.664207898076807, -1.9367598714069336, -2.7554937284151193, -7.0, -3.4472355770047596, -7.0, -7.0, -7.0, -3.45400593810379, -7.0, -7.0, -7.0, -7.0, -7.0, -3.675663797434491, -7.0, -7.0, -7.0, -3.84314969134017, -2.617000341120899, -7.0, -3.988625834862769, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6464037262230695, -2.826398782187618, -7.0, -7.0, -2.824125833916549, -7.0, -2.984617313236748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0310042813635367, -2.824125833916549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.396286546068402, -7.0, -7.0, -7.0, -7.0, -2.367525335688555, -7.0, -7.0, -3.9852692552788476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6273658565927325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6576007704466384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.832508912706236, -7.0, -7.0, -7.0, -7.0, -7.0, -4.877008322140324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3424226808222062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8808135922807914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.499549625905149, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8195439355418688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.627859092854612, -7.0, -7.0, -2.6074550232146687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4409090820652177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6159500516564007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.172281761455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.569549464888704, -4.300008202553813, -3.2438644894340767, -7.0, -7.0, -7.0, -7.0, -3.770631127777807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.350867996286564, -4.979120242557178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5848963441374497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.584331224367531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3568000093778245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6216896970649146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1072099696478683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.693726948923647, -3.0034605321095067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0170333392987803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.434696618924666, -7.0, -2.446640706109038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426389251395546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.06756366989378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1760912590556813, -7.0, -7.0, -7.0, -2.8382192219076257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1504494094608804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.601951404133522, -7.0, -7.0, -2.2098499890921364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5809249756756194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.593286067020457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6473829701146196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7853298350107671, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9459607035775686, -7.0, -5.432871523548164, -7.0, -7.0, -4.543347759379176, -2.9556877503135057, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9537596917332287, -7.0, -7.0, -7.0, -7.0, -7.0, -2.378397900948138, -7.0, -7.0, -7.0, -3.3492775274679554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.135259898515659, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.126293790693266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779708296872661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2835273648616936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.716003343634799, -4.146686055647526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.767897616018091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.65909815822552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9023293058583186, -3.590618948206578, -7.0, -7.0, -4.032745358864123, -7.0, -7.0, -7.0, -2.5490032620257876, -2.482873583608754, -7.0, -4.2579783984792305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.20682587603185, -7.0, -4.035809829650629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4050901140387224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7371926427047373, -2.546542663478131, -4.51914518196853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8573324964312685, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4756711883244296, -7.0, -7.0, -7.0, -7.0, -7.0, -3.520614521878236, -4.0987129305788805, -7.0, -7.0, -7.0, -4.736786793449335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2900346113625183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.679155241283354, -7.0, -3.4274861090957858, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7746264379339527, -7.0, -2.285557309007774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4955443375464483, -7.0, -7.0, -3.449454038712713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8573928109209015, -7.0, -7.0, -3.76767522402796, -7.0, -7.0, -7.0, -7.0, -2.88024177589548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3289908554494287, -7.0, -2.0005425290922942, -2.414973347970818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.44870631990508, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149514701900688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.376576957056512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3866772839608377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6885977750811696, -7.0, -4.497468723709966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.660549282517093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7535830588929064, -7.0, -7.0, -2.677606952720493, -7.0, -4.620954575698162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9523564773237907, -7.0, -4.433052616138876, -7.0, -7.0, -4.067802127338805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0128372247051725, -7.0, -7.0, -7.0, -2.8228216453031045, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0726174765452368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9604232070778296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.782042416620554, -7.0, -7.0, -4.139406770441792, -7.0, -7.0, -7.0, -7.0, -2.582063362911709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.172442376021389, -7.0, -3.278296208091274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.156549151331781, -7.0, -7.0, -4.303822199862847, -7.0, -7.0, -4.633195673394554, -7.0, -7.0, -3.600210306409328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7607993116307177, -7.0, -7.0, -3.989627770745151, -7.0, -7.0, -7.0, -3.7797407511767407, -7.0, -4.025950682379089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.640948276144205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.303030374525659, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5993371329924893, -2.8943160626844384, -7.0, -3.7198282862543346, -7.0, -7.0, -7.0, -3.7270530113538576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.312875222239046, -7.0, -7.0, -4.281669563107719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.993876914941211, -7.0, -7.0, -7.0, -7.0, -3.84963435786558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278250442299367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658059118703411, -7.0, -7.0, -7.0, -7.0, -3.625826713285711, -2.220108088040055, -7.0, -7.0, -2.862131379313037, -7.0, -3.8963608454693164, -7.0, -7.0, -7.0, -3.59832389196373, -7.0, -7.0, -7.0, -2.084576277934331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6989700043360187, -7.0, -3.09429639740537, -2.1760912590556813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1522883443830563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6928469192772297, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9155713028246213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0170333392987803, -7.0, -7.0, -1.8728843441374254, -7.0, -7.0, -7.0, -7.0, -4.057285644418214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1271047983648077, -7.0, -7.0, -7.0, -2.1931245983544616, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1476763242410986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6691308473733324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6459132750338443, -7.0, -7.0, -7.0, -3.770631127777807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9493818737132953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.721260875288632, -7.0, -7.0, -7.0, -7.0, -3.3077471101313116, -7.0, -7.0, -2.3531465462139796, -2.725094521081469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3062105081677613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4988616889928843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.110589710299249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4424797690644486, -7.0, -2.1335389083702174, -7.0, -3.1571544399062814, -7.0, -7.0, -7.0, -7.0, -2.688419822002711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.604334073102911, -7.0, -7.0, -3.1248301494138593, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7795964912578244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8893017025063104, -3.4095950193968156, -7.0, -7.0, -7.0, -4.60591887481288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097711848542565, -2.2571984261393445, -7.0, -7.0, -7.0, -3.034227260770551, -7.0, -7.0, -7.0, -7.0, -7.0, -1.361727836017593, -7.0, -1.9622114391106, -7.0, -1.716003343634799, -2.3334472744967503, -7.0, -7.0, -7.0, -5.131873585170395, -7.0, -3.0161973535124393, -4.5436211115640335, -7.0, -7.0, -2.663700925389648, -7.0, -2.9036325160842376, -7.0, -2.9642596301968487, -7.0, -7.0, -7.0, -2.7450747915820575, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3961993470957363, -7.0, -1.8195439355418688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732393759822968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.386766415717314, -7.0, -7.0, -7.0, -3.397657625474316, -3.725258066359961, -7.0, -7.0, -7.0, -7.0, -3.4729757345942285, -7.0, -7.0, -3.5337085232398597, -3.3913762391696496, -7.0, -3.7179200258369938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3514484229091166, -4.377251596478043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590284403718162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5509922837391463, -7.0, -7.0, -4.12653184328548, -7.0, -7.0, -4.154930911986147, -7.0, -7.0, -3.286905352972375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.984707294482673, -7.0, -2.5407464642438433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.001564258766185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8079857748471495, -2.829303772831025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.279187678432147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.654850090561394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275748884479195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5224442335063197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8109042806687006, -3.3835697189547274, -7.0, -7.0, -7.0, -7.0, -3.371806458507416, -7.0, -7.0, -7.0, -3.083860800866573, -7.0, -3.3199384399803087, -3.6306312440205, -2.760422483423212, -2.519171463821659, -2.5789442910971676, -7.0, -2.8169038393756605, -7.0, -2.863322860120456, -2.530199698203082, -2.575187844927661, -4.26246295553778, -2.3585693167727633, -7.0, -7.0, -7.0, -2.9474337218870508, -7.0, -2.3915231836751634, -7.0, -7.0, -7.0, -3.440968085459358, -7.0, -7.0, -2.6101276130759956, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7930916001765804, -3.2624510897304293, -2.0770043267933502, -2.500373714353374, -7.0, -2.6036855496147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4425581544959227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4504800546060603, -7.0, -2.0170333392987803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.028932562598488, -2.8847953639489807, -2.0681858617461617, -7.0, -2.359835482339888, -7.0, -3.244836803876376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.500373714353374, -7.0, -7.0, -3.404320467221731, -7.0, -7.0, -7.0, -1.9084850188786497, -7.0, -7.0, -2.8573324964312685, -1.8728843441374254, -7.0, -7.0, -2.767897616018091, -2.360309344342059, -7.0, -3.598097124391873, -7.0, -7.0, -7.0, -2.957128197676813, -7.0, -7.0, -3.2659963704950794, -7.0, -7.0, -7.0, -7.0, -4.438724255549354, -7.0, -2.82865989653532, -2.7009919975949694, -7.0, -7.0, -2.837588438235511, -2.583198773968623, -7.0, -7.0, -3.980821166644336, -7.0, -7.0, -7.0, -2.7489628612561616, -7.0, -3.012415374762433, -2.996803438696495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.683947130751512, -7.0, -2.3560258571931225, -7.0, -7.0, -7.0, -2.3956294534922296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.640978057358332, -2.885926339801431, -2.397070549959409, -2.5459253293558426, -7.0, -2.775861155715095, -2.0726174765452363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.311753861055754, -7.0, -7.0, -7.0, -7.0, -2.1646884198754046, -7.0, -7.0, -2.493225621510431, -7.0, -7.0, -7.0, -2.9283958522567137, -7.0, -7.0, -2.1436392352745433, -2.8228216453031045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.699143687394484, -7.0, -3.075911761482778, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7944880466591697, -2.7180862947830917, -7.0, -2.9582054065347525, -5.15067049322578, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788168371141168, -7.0, -7.0, -7.0, -7.0, -2.7641761323903307, -7.0, -2.7442929831226763, -2.8709888137605755, -4.00358976718914, -7.0, -7.0, -7.0, -2.7810369386211318, -2.3317646126401494, -2.3404441148401185, -7.0, -2.8819549713396007, -7.0, -2.1868151244474543, -3.1476763242410986, -2.1010593549081156, -7.0, -7.0, -7.0, -7.0, -2.988112840268352, -3.419625360887743, -7.0, -4.502631927572243, -7.0, -7.0, -7.0, -7.0, -3.095518042323151, -3.129689892199301, -2.41161970596323, -2.765668554759014, -7.0, -7.0, -7.0, -2.5434471800817002, -1.9481683617271317, -2.6464037262230695, -7.0, -2.8915374576725643, -2.8808135922807914, -2.790988475088816, -2.782472624166286, -2.5575072019056577, -1.554880913632493, -2.2497018038950065, -3.0788191830988487, -7.0, -2.8512583487190755, -3.569501593215114, -2.859738566197147, -2.760422483423212, -3.4820155764507117, -7.0, -2.765668554759014, -2.651762447380111, -2.1072099696478683, -2.218010042984363, -1.6788536861072663, -7.0, -7.0, -7.0, -7.0, -4.254251057483062, -1.8321894610685132, -7.0, -7.0, -7.0, -3.19506899646859, -1.9789685974894828, -7.0, -7.0, -7.0, -7.0, -2.7466341989375787, -7.0, -1.7912226592314022, -7.0, -7.0, -1.7169848005087767, -7.0, -3.6690843266211157, -7.0, -4.319701694006469, -7.0, -1.593465688370741, -4.248549489593387, -2.847572659142112, -7.0, -2.975891136401793, -7.0, -1.8948696567452525, -2.708562525598842, -7.0, -2.7686381012476144, -7.0, -2.739572344450092, -1.3258803868629827, -2.788875115775417, -7.0, -7.0, -3.1772478362556233, -7.0, -1.5208696693061823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7297315952870354, -4.4042177445149235, -3.4807333549387898, -7.0, -7.0, -7.0, -7.0, -4.8050860754309666, -7.0, -7.0, -4.394889257167419, -4.3545501955078825, -7.0, -7.0, -7.0, -4.801732908048583, -7.0, -4.486543819882519, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008404269288749, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055129764292919, -7.0, -3.977952121201462, -2.399962001930988, -3.8766796104192007, -2.6192211457496266, -2.530350390252444, -3.0257153839013404, -7.0, -3.123851640967086, -3.4011789054198043, -2.630224410752432, -2.2938043599193367, -3.605771778568517, -2.5466351879571025, -2.237154410925494, -7.0, -3.0569048513364727, -3.2506639194632436, -7.0, -7.0, -3.496652939250918, -7.0, -7.0, -2.471691675306919, -3.248667908857583, -4.474545503517712, -7.0, -7.0, -7.0, -3.770104761201152, -7.0, -3.943855453545965, -2.5249450723982387, -4.0709977969934235, -7.0, -3.388278863459639, -4.020071103533841, -3.3301882244051946, -7.0, -2.7766103938800204, -3.5825178836040625, -2.5023677374066544, -7.0, -2.89707700320942, -2.756153779095104, -3.965589710687253, -7.0, -3.522795219079118, -7.0, -2.576341350205793, -2.2732529640336354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2274153207496505, -2.863322860120456, -2.1378717791808004, -7.0, -3.4379090355394983, -2.572441309406038, -7.0, -7.0, -7.0, -2.8048206787211623, -7.0, -3.552495842828762, -2.6444385894678386, -7.0, -7.0, -7.0, -7.0, -3.488973524726508, -7.0, -7.0, -3.2287852009806493, -7.0, -7.0, -2.7054360465852505, -7.0, -7.0, -3.3763944420372662, -7.0, -7.0, -7.0, -3.4402496657082047, -4.744371227331861, -7.0, -7.0, -2.962369335670021, -7.0, -7.0, -7.0, -7.0, -2.9965116721541785, -7.0, -3.0081741840064264, -7.0, -7.0, -3.731346975545955, -7.0, -3.358315640082196, -7.0, -7.0, -7.0, -3.161966616364075, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5303277897780863, -7.0, -7.0, -7.0, -7.0, -3.2495795919611683, -7.0, -3.458033192496506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9556877503135057, -7.0, -7.0, -7.0, -2.0631405624169377, -3.0644579892269186, -7.0, -3.272460480145897, -7.0, -7.0, -7.0, -2.9777236052888476, -7.0, -7.0, -7.0, -7.0, -7.0, -3.977220446635385, -7.0, -2.8506462351830666, -7.0, -3.320374802023668, -7.0, -3.1960379407345236, -3.687930074726357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1341771075767664, -7.0, -7.0, -2.8363241157067516, -7.0, -3.3166591552474705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.534026106056135, -7.0, -2.751279103983342, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2216749970707688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8095597146352675, -7.0, -7.0, -2.9647309210536292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658068662483436, -7.0, -7.0, -7.0, -3.5990092398233435, -3.6259294927162946, -7.0, -7.0, -7.0, -7.0, -7.0, -3.896415976473123, -7.0, -7.0, -7.0, -4.57624918244613, -7.0, -7.0, -7.0, -2.3909351071033793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.55636281525692, -7.0, -2.5440680443502757, -7.0, -7.0, -2.1903316981702914, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2194972045125625, -7.0, -7.0, -3.0523090996473234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7243578042264267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216297886630392, -2.0253058652647704, -2.103803720955957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216667229548209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.1856365769619115, -2.3394514413064407, -7.0, -4.057323705369284, -7.0, -7.0, -7.0, -7.0, -2.9523080096621253, -7.0, -7.0, -3.7938602013426697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8864907251724818, -1.8512583487190755, -7.0, -7.0, -3.1082266563749283, -7.0, -7.0, -7.0, -7.0, -1.0314084642516241, -2.0773679052841567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.264768986551449, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6283146059185416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.342422680822206, -7.0, -7.0, -7.0, -2.0086001717619175, -7.0, -3.9116901587538613, -7.0, -3.306425027550687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8195439355418688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6811054991397882, -7.0, -7.0, -7.0, -7.0, -2.214843848047698, -2.2479732663618064, -7.0, -7.0, -7.0, -7.0, -7.0, -3.157456768134226, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6788824146707357, -7.0, -7.0, -7.0, -7.0, -2.110589710299249, -7.0, -2.8819549713396007, -2.936513742478893, -7.0, -3.103461622094705, -7.0, -7.0, -7.0, -2.3364597338485296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.271066772286538, -7.0, -7.0, -7.0, -7.0, -2.60422605308447, -2.354108439147401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.620580189857018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.447158031342219, -7.0, -7.0, -7.0, -7.0, -7.0, -3.072801149409849, -5.131875187972593, -7.0, -7.0, -4.543633532576258, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4138025167693513, -2.9647309210536292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0257153839013404, -7.0, -7.0, -7.0, -4.541629159983864, -7.0, -7.0, -7.0, -4.135990846921625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.172126931198854, -7.0, -3.2528530309798933, -7.0, -4.61020220940222, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.484299839346786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9847522781154137, -7.0, -3.0199466816788423, -7.0, -3.353531559077762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626966203780956, -7.0, -7.0, -7.0, -7.0, -3.184691430817599, -7.0, -7.0, -7.0, -7.0, -7.0, -2.989894563718773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3026411313125035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5873741720730656, -7.0, -2.7745169657285493, -3.233334609615762, -7.0, -7.0, -7.0, -3.718169405391307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.009514632972974, -7.0, -7.0, -4.279210512601395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6549462265843444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275771900164932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.399996582729268, -7.0, -7.0, -1.7558748556724915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7320115734128025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.12057393120585, -3.3934874581471752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.215611129612849, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7535830588929064, -7.0, -7.0, -7.0, -7.0, -2.767897616018091, -1.1856365769619115, -7.0, -1.9084850188786497, -7.0, -4.0563330349511615, -2.2174839442139063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.000434077479319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3679767852945943, -2.660865478003869, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070813359702716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1357277820214926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1925674533365456, -7.0, -7.0, -7.0, -7.0, -3.555485109936394, -7.0, -7.0, -2.6314437690131722, -2.7041505168397992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.910304168068569, -7.0, -3.300812794118117, -7.0, -2.353467413965482, -7.0, -7.0, -1.3891660843645326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.981048058913173, -7.0, -7.0, -7.0, -7.0, -1.8325089127062362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3847117429382825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.24551266781415, -7.0, -7.0, -7.0, -7.0, -2.575187844927661, -1.9956351945975501, -4.605649758517102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097625141210313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0472748673841794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.300508529343292, -3.245759355967277, -7.0, -7.0, -7.0, -4.240249631518799, -3.7723217067229196, -7.0, -7.0, -4.135164466656955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.874114435154633, -4.67818593005568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.851380667965597, -7.0, -7.0, -4.603425868816548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9836262871245345, -7.0, -7.0, -7.0, -7.0, -7.0, -4.149537273365785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639615961441463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.303196057420489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2355933698010935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.123851640967086, -2.9817053769570374, -2.510545010206612, -7.0, -3.106020819140269, -7.0, -7.0, -7.0, -3.716003343634799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6283889300503116, -7.0, -7.0, -7.0, -7.0, -4.146593102096305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.24551266781415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6757783416740852, -3.4054317419673734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6126779183165016, -7.0, -2.7607993116307177, -3.3104636635935303, -7.0, -7.0, -7.0, -2.443262987458695, -2.705007959333336, -7.0, -4.561459171241916, -7.0, -7.0, -7.0, -7.0, -2.8530895298518657, -7.0, -2.4533183400470375, -7.0, -3.258397804095509, -7.0, -2.997664332875219, -2.595496221825574, -7.0, -2.808885867359812, -7.0, -7.0, -7.0, -2.649334858712142, -7.0, -2.3654879848909, -2.6156870819348312, -2.5750228080714463, -2.183744223284207, -2.6989700043360187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.134376352651557, -7.0, -7.0, -7.0, -7.0, -7.0, -2.624797578960761, -7.0, -7.0, -3.622214022966295, -2.6201360549737576, -1.8991949431084194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2024883170600935, -7.0, -2.704579449696299, -7.0, -2.0223694478447944, -7.0, -3.407547779153598, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6464037262230695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6842467475153124, -7.0, -7.0, -7.0, -7.0, -2.360309344342059, -2.3394514413064407, -1.9084850188786497, -7.0, -7.0, -7.0, -2.7007037171450192, -7.0, -7.0, -2.385606273598312, -7.0, -7.0, -2.8464608251293324, -3.503416129793859, -7.0, -7.0, -7.0, -4.738399987861007, -7.0, -3.0707764628434346, -2.040074643230312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5888317255942073, -2.582063362911709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6138418218760693, -0.2759571039631571, -7.0, -2.7770641547424293, -7.0, -7.0, -7.0, -3.383815365980431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.036628895362161, -7.0, -2.5453071164658243, -7.0, -7.0, -2.423245873936808, -7.0, -2.836802721861793, -2.629409599102719, -7.0, -7.0, -2.667452952889954, -7.0, -2.6748611407378116, -7.0, -2.429752280002408, -7.0, -3.8694664100808667, -7.0, -7.0, -2.0906088327618333, -2.6665179805548807, -7.0, -2.0316969361864436, -2.623766000133931, -2.504244254358882, -7.0, -2.829303772831025, -7.0, -7.0, -7.0, -2.3891660843645326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3626709297256667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9945371042984978, -7.0, -7.0, -7.0, -2.3820170425748683, -7.0, -7.0, -2.639486489268586, -3.00987563371216, -3.539828558377898, -5.15013908827447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7937903846908188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9700367766225568, -3.694956002249818, -7.0, -7.0, -7.0, -7.0, -2.069112851387121, -1.9822712330395684, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5984257066728684, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4050901140387224, -2.5327543789924976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.612518962242537, -7.0, -7.0, -2.621176281775035, -7.0, -2.2422100322640643, -1.835446654338076, -1.761551988564182, -2.574031267727719, -7.0, -7.0, -7.0, -2.6364878963533656, -2.741151598851785, -2.6711728427150834, -2.8564267724702446, -3.0111473607757975, -2.373524980463404, -1.4728424567403875, -4.132099521916504, -7.0, -7.0, -3.770631127777807, -7.0, -2.6127838567197355, -7.0, -7.0, -2.571417652125032, -2.584331224367531, -7.0, -7.0, -7.0, -7.0, -4.195654082132311, -2.786041210242554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7041505168397992, -7.0, -7.0, -2.3774883833761327, -7.0, -2.9500401482063032, -7.0, -7.0, -2.4287825114969546, -4.547479333931025, -7.0, -7.0, -7.0, -7.0, -2.4420876295507603, -3.462996612028056, -7.0, -7.0, -7.0, -7.0, -2.459392487759231, -7.0, -1.8443218208944798, -2.6627578316815743, -2.520155886944864, -2.1921956258464497, -2.2005427182177972, -7.0, -7.0, -4.62014646958466, -4.748955119752549, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100180930742329, -7.0, -7.0, -7.0, -7.0, -7.0, -4.803907564918058, -7.0, -7.0, -4.090786927949267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7954744865504764, -2.81512766887421, -1.970141919942742, -7.0, -4.0587675553704194, -7.0, -3.2897994595306046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2062860444124324, -7.0, -7.0, -7.0, -7.0, -7.0, -2.941855307225644, -3.701840554823391, -7.0, -7.0, -7.0, -7.0, -4.136339996533044, -7.0, -7.0, -2.719227673841901, -7.0, -7.0, -7.0, -4.012837224705172, -4.2808741725572155, -7.0, -3.187520720836463, -2.959637541326031, -3.120663652202327, -2.5517548730165664, -2.7895807121644256, -3.5276406399690727, -4.2646289582612225, -2.7846172926328756, -7.0, -7.0, -7.0, -3.3205616801952367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0948203803548, -7.0, -2.8312296938670634, -7.0, -3.4095950193968156, -3.219977256744623, -7.0, -2.4955443375464483, -7.0, -3.4929698053204894, -7.0, -3.9310915663388015, -7.0, -7.0, -7.0, -3.4586378490256493, -7.0, -7.0, -7.0, -7.0, -3.5073160400764136, -7.0, -7.0, -2.926342446625655, -2.4878451201114355, -7.0, -3.8431081419996067, -7.0, -7.0, -7.0, -3.051142623884847, -4.743015610916935, -7.0, -7.0, -7.0, -7.0, -2.767897616018091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.983175072037813, -3.022634539944119, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6838356205451257, -2.907411360774586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.863322860120456, -7.0, -7.0, -7.0, -2.665059566436283, -7.0, -2.957128197676813, -7.0, -7.0, -3.4653828514484184, -3.050379756261458, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.31714366202289, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6796701132842666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.963787827345555, -2.7101173651118162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0842186867392387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3589812256253495, -7.0, -7.0, -7.0, -3.62096843564429, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.430290106054924, -3.601408060534684, -7.0, -7.0, -3.4632151307661956, -7.0, -7.0, -7.0, -2.655138434811382, -7.0, -2.677606952720493, -3.8611399616898683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0377650359678245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03382569395331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.221701064384597, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2647129082893973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7507012003958686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.065093989357153, -7.0, -7.0, -2.546542663478131, -7.0, -2.1335389083702174, -7.0, -7.0, -3.624831922757537, -7.0, -7.0, -7.0, -4.436520434633616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8000981801747757, -7.0, -7.0, -7.0, -7.0, -3.039017321997412, -7.0, -7.0, -7.0, -3.4770126675252215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8312296938670634, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6877396932891924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.671802067369607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.67268268350736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4038066105474227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3960248966085933, -7.0, -4.49882037810471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.608140774044056, -7.0, -7.0, -2.6819945671081067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.02201573981772, -7.0, -4.496348355776995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6866362692622934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530126028436784, -7.0, -7.0, -3.7679099677901626, -2.575187844927661, -7.0, -7.0, -7.0, -7.0, -3.4470028984661623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3916407034923877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4330093530931425, -7.0, -7.0, -7.0, -4.657065418709505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.404020791388131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.004450352989225, -3.7418603940652635, -7.0, -4.054766217838991, -7.0, -3.464737871805711, -3.7890163267933747, -7.0, -3.7718446011470075, -4.142483323659504, -2.1481911962420113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7536022072574475, -4.378193425501022, -7.0, -7.0, -3.3001605369513523, -7.0, -4.612391755480837, -7.0, -4.24355888962248, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278479223046323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7026889681591335, -3.786171502733773, -3.0472748673841794, -4.15702336561913, -7.0, -7.0, -7.0, -4.015108160645837, -7.0, -7.0, -7.0, -7.0, -7.0, -3.993920958801287, -2.655138434811382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.709269960975831, -7.0, -7.0, -7.0, -7.0, -7.0, -4.641920074413117, -4.742190769699096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.595496221825574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6364878963533656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604434867552265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7349597612724454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05865374157237, -2.9403708783959486, -7.0, -7.0, -7.0, -3.4049761783177557, -2.21221594798249, -2.283531196663333, -2.9237619608287004, -3.0608488730388075, -4.0796153235269434, -7.0, -1.6791918413383962, -3.3997025581386566, -7.0, -3.78265175161032, -2.235624770342187, -7.0, -4.058995093525416, -7.0, -3.5845196793420233, -2.8033432919072556, -4.062694773342393, -2.950566907345739, -4.060244426898225, -7.0, -3.457503426573305, -3.5848963441374497, -4.067628716728246, -7.0, -7.0, -7.0, -3.50443687881101, -7.0, -2.9977833992178162, -7.0, -3.2871669874200933, -3.763951826033324, -4.056294887076228, -3.581076933158591, -7.0, -7.0, -7.0, -7.0, -3.40212376240064, -2.640991471652534, -7.0, -3.214086577617114, -3.4915367772802655, -7.0, -3.7562556487542333, -7.0, -7.0, -3.7707783961691477, -3.613136798211654, -7.0, -7.0, -7.0, -2.345093540561045, -7.0, -7.0, -7.0, -7.0, -3.518777068926775, -3.373243118267363, -4.056790548274383, -4.075692918201804, -3.401369205272897, -7.0, -3.3628969678025444, -7.0, -7.0, -7.0, -7.0, -3.756141445883285, -7.0, -3.7699309201369524, -7.0, -3.3001967991717134, -4.062431553162612, -3.290442730593008, -7.0, -2.6945263277191858, -4.0690017170456, -4.058046230395282, -7.0, -7.0, -7.0, -3.7563698216020813, -7.0, -7.0, -7.0, -4.125025586819949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.057285644418214, -3.598097124391873, -4.057323705369284, -4.0563330349511615, -7.0, -4.065093989357153, -7.0, -7.0, -7.0, -3.5807349540222253, -7.0, -3.240085468038522, -4.057247580131245, -3.315640528098325, -3.5299250889736333, -7.0, -7.0, -3.5868497522450995, -1.781165293585858, -7.0, -3.482266003688865, -3.7891574919114395, -3.370624100841536, -7.0, -3.759101003867064, -3.585949270923298, -7.0, -7.0, -4.007854418758035, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4438803215809832, -2.882935427564857, -4.141481129270804, -4.076130494543006, -7.0, -3.9391696796251776, -7.0, -4.056256735850139, -4.070665753453728, -7.0, -2.8801344764553045, -7.0, -7.0, -3.0155502605146522, -3.000679233840276, -7.0, -7.0, -7.0, -3.76544501809015, -4.05579865953248, -7.0, -3.177752871842618, -3.7691187404883246, -3.3680264161136764, -4.063258279950456, -3.168386980706974, -3.759743367597725, -7.0, -2.5833000057543316, -7.0, -7.0, -7.0, -3.757206173278786, -3.7556843338524133, -3.7575099022757996, -7.0, -3.2639740409646225, -7.0, -2.757633231530858, -7.0, -3.480474061544751, -2.267754435393497, -7.0, -3.468716471515472, -4.069557104582695, -3.5951654147902294, -3.231251077479202, -2.9728434433197877, -3.7651094972067183, -3.760987603193131, -3.46437775512603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.238376289780375, -7.0, -2.6620309788225325, -4.058236168942767, -3.279780976996965, -4.0553783313750005, -3.7553411838115474, -3.3654131000761778, -7.0, -7.0, -7.0, -7.0, -3.7624910040260096, -7.0, -4.055875039146097, -4.05618042334214, -7.0, -7.0, -3.155411956437706, -7.0, -7.0, -3.2950537061049516, -3.3004867879860287, -3.6822654462420923, -3.290083149124708, -7.0, -7.0, -3.7554174628109362, -3.595753342091326, -7.0, -7.0, -3.763128376799137, -7.0, -3.7578892650549034, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062281069972644, -2.418888402527995, -7.0, -7.0, -7.0, -7.0, -3.7575858013465804, -3.581911750244118, -7.0, -3.761890268068682, -2.6088824508987196, -7.0, -3.8327962184124127, -3.258979166140853, -7.0, -7.0, -7.0, -3.515377033954657, -4.070850253427573, -2.672396706235079, -4.066549538761934, -2.3982277298043977, -7.0, -7.0, -7.0, -0.6128725059078792, -4.080806804334363, -3.0045005012266763, -2.684258267110064, -4.0987129305788805, -7.0, -7.0, -7.0, -3.759592308645975, -3.375773316604984, -3.5904331219738412, -7.0, -4.063633545230784, -3.460634782014431, -7.0, -3.755989128658785, -3.760460180960834, -4.058463985602251, -2.708515322242249, -3.036991623589965, -3.766524381029522, -7.0, -1.1212463653081923, -7.0, -7.0, -3.0802914129703645, -7.0, -7.0, -2.5341754764727074, -7.0, -2.9487970654459246, -3.0690758097663977, -3.79049627696711, -7.0, -3.606560492554639, -3.7609122963641055, -2.955247987438747, -3.307709923404807, -7.0, -7.0, -3.7545012293869173, -4.0922292421628566, -3.295823569483015, -7.0, -3.7569022317166274, -3.2210041567525165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3695498016648924, -2.9788269866677775, -2.980890327323183, -3.8340390181594666, -2.968253249161065, -7.0, -7.0, -1.9142950651552806, -2.1724659855008337, -4.054995861529141, -2.7897662050480823, -3.3604419331026376, -3.3829890619644596, -2.144923510396036, -2.121043692724776, -4.056371179475529, -4.055340099544181, -7.0, -2.8681299149575903, -7.0, -3.2838663484734685, -4.058122215782914, -2.833536661357987, -4.058539897939781, -2.5980498568165213, -7.0, -7.0, -2.9143679524576918, -3.4460255809433114, -3.7741080255082182, -4.070370390367003, -4.278570701610516, -3.8206939499733856, -3.0617754947078137, -2.601878997584187, -2.869165023196728, -7.0, -3.7388598020722004, -3.541543586121371, -4.274727294773987, -3.918624375272506, -2.584647295942839, -4.479100018108288, -3.4052975630428595, -3.203957091681244, -4.3233758719338615, -3.713885176907469, -3.6806527317073043, -3.7067651814617064, -2.7235963873885836, -2.9706306045562396, -7.0, -4.104640726057345, -3.5508884680813524, -2.9708779609577287, -7.0, -2.665164685826289, -3.3652227097019267, -3.613251442466525, -3.453104198432209, -3.138967138122855, -3.1981820519249844, -3.4993968451810296, -3.7482849569210996, -3.2459280618983324, -3.4725980077291743, -4.00650882777529, -3.244948282443099, -3.1933670027973036, -2.962940070683585, -2.9638402752028625, -3.295567099962479, -3.4472937271664454, -3.7827233819060297, -2.7325734959401977, -3.005003769884945, -2.47033526537637, -2.0809966834445737, -2.8048555856441326, -3.130038777017368, -3.796435558810175, -2.937966366237449, -3.6224212739756703, -3.585573518622731, -3.5518767631329724, -2.5230051670436797, -3.2813256137230815, -3.5971464878336956, -2.5623187299448182, -2.386880986817247, -3.672244590979858, -4.060471192797679, -2.327040530515065, -3.7607993116307177, -2.627953160620053, -4.199727758807056, -3.8180586558425884, -2.67425817319393, -3.010396335877664, -7.0, -3.018783688874697, -3.2481776883387057, -2.6372431155203353, -1.963612955395577, -2.8494194137968996, -3.123049400051291, -2.5916980263724967, -2.447790652695018, -3.762903528499057, -2.1476292279157922, -2.5798750174111493, -7.0, -3.0003376533044324, -4.092580300691311, -3.270811881862804, -3.2771506139637965, -2.898623623119816, -3.7626410582667367, -4.059941888061955, -7.0, -2.0253058652647704, -3.884153167842544, -2.801091739253345, -3.1581739553083064, -2.7091285660594253, -3.7668588110214176, -3.4323919847799242, -2.377854510283913, -3.4865367369347835, -4.064457989226918, -3.7574339899382694, -2.771638157016891, -3.7657057996869474, -1.9408213367147171, -2.8272256334024735, -3.4757438067481257, -3.5167666716053274, -3.444929147447511, -2.492146882358005, -2.1105261844479104, -4.088773767310448, -3.773859552376687, -3.549677489710556, -3.304023525101023, -2.352325472188329, -1.6743252109433453, -3.3647760572774246, -3.278715503274669, -2.930633736245974, -7.0, -4.057628072955568, -2.935614448747319, -2.6734658159009137, -2.719561449945234, -7.0, -3.0877491606340604, -3.2902572693945182, -2.5643527078960786, -2.885738048239018, -7.0, -4.059601279762754, -3.2356862287374053, -2.33547682460851, -3.168939213835978, -2.2400555832772624, -3.756217584467264, -2.5075320532526666, -7.0, -3.1618669046240195, -3.754348335711019, -4.0832875693272825, -3.2824710539263124, -4.088171539864352, -2.630976218273112, -7.0, -3.3602525081936707, -7.0, -7.0, -3.1653679968502697, -4.079543007402906, -2.13037074388832, -3.7218106152125467, -3.592139731565084, -2.2839979374679777, -3.468864040148188, -2.8558696887096082, -4.0669591978671225, -7.0, -3.5921545422761962, -4.060130999531045, -2.055443399092839, -2.4623249396967646, -7.0, -3.113423372534924, -3.266231696689893, -7.0, -3.2799709653992704, -2.3706056009381484, -2.6958099000719393, -3.773640193260026, -2.3924038081375647, -7.0, -2.325831307306037, -2.5360892666199084, -2.818516206243704, -2.3814066886605665, -2.6466065096424285, -2.31713817377725, -7.0, -4.056218581272306, -3.8717626060934567, -3.532945375615925, -4.060999853218289, -3.8131471445804674, -2.9820518369844335, -7.0, -2.43961383958441, -2.962053485123806, -1.708183718356779, -3.5825557388650933, -3.4775191756421684, -3.280805928393667, -7.0, -3.767304317453273, -2.5511269556556435, -3.067597743260208, -3.7561033715851053, -3.7590253691608635, -7.0, -2.338906665336077, -7.0, -7.0, -7.0, -3.45890212176587, -3.7704101315139065, -3.760874638052189, -3.7646243978509815, -3.438067450453494, -1.9006853974365008, -2.5960103102213306, -4.060130999531045, -2.9035602180181637, -7.0, -7.0, -7.0, -3.588047496986083, -7.0, -7.0, -2.9424765625193063, -3.2550311633455515, -2.8038914411897666, -4.061037590063418, -7.0, -3.649918718735419, -7.0, -4.055493006677845, -2.934281971477399, -7.0, -7.0, -3.198347748146906, -3.192691325123439, -3.0412490929989064, -4.055301864347441, -7.0, -3.7658919764300154, -7.0, -2.735687594578893, -7.0, -3.588346417745989, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4279154943087975, -7.0, -7.0, -7.0, -7.0, -3.632356046239073, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5987358062804047, -7.0, -7.0, -1.594593426642608, -4.400509208154525, -7.0, -7.0, -7.0, -7.0, -2.413299764081252, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335979142340354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4781071677013136, -3.401228167498113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5037906830571814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.041379524519975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4756711883244296, -7.0, -7.0, -7.0, -2.2174839442139063, -2.7007037171450192, -7.0, -7.0, -7.0, -2.03342375548695, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6198929764583707, -7.0, -7.0, -7.0, -4.736428375931341, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8025049560183866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.192818257048295, -7.0, -7.0, -7.0, -7.0, -2.2479732663618064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3197304943302246, -7.0, -2.0345711656177965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149376169491331, -7.0, -7.0, -7.0, -2.0007232216190958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0813473078041325, -7.0, -7.0, -7.0, -7.0, -2.3560258571931225, -1.8957907482504441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2616593037647066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4608978427565478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.620798620817837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.131976152587657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3656751404559175, -7.0, -7.0, -4.14039280248941, -7.0, -7.0, -7.0, -7.0, -2.826722520168992, -7.0, -7.0, -4.732908174430821, -7.0, -7.0, -7.0, -7.0, -4.5011688495213615, -4.0916669575956846, -7.0, -7.0, -4.651539675135214, -7.0, -7.0, -7.0, -7.0, -7.0, -4.483551639143684, -7.0, -7.0, -7.0, -7.0, -7.0, -4.402794248640903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.570858039282002, -3.347850206404031, -3.0308425028249166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4653828514484184, -4.137986732723531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.051962449783047, -4.3775430081774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8540933980467313, -7.0, -7.0, -4.604388073038561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6864575104691117, -7.0, -7.0, -7.0, -3.3654879848909, -3.9876215821254837, -7.0, -7.0, -7.0, -7.0, -7.0, -2.945407031098423, -7.0, -7.0, -3.286231854028553, -7.0, -2.9006401839826004, -7.0, -7.0, -7.0, -7.0, -2.335959106148248, -7.0, -7.0, -2.56702636615906, -2.2764618041732443, -7.0, -7.0, -7.0, -7.0, -3.0835026198302673, -4.440019125975593, -7.0, -7.0, -7.0, -2.640481436970422, -7.0, -7.0, -7.0, -3.4080702858871854, -7.0, -7.0, -7.0, -2.2810333672477277, -7.0, -7.0, -2.9682493941079175, -7.0, -7.0, -7.0, -3.0132586652835167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8438554226231614, -7.0, -7.0, -3.7586920594058713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.228400358703005, -2.571708831808688, -7.0, -2.6830470382388496, -7.0, -7.0, -7.0, -2.8945375849957466, -7.0, -2.8182258936139557, -7.0, -7.0, -7.0, -7.0, -3.7233735670189843, -7.0, -2.526597709103452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8347173384565254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.450125886731954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5469126431812423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.358325155632681, -7.0, -7.0, -7.0, -7.0, -3.63978521298682, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6027651470770543, -7.0, -7.0, -7.0, -4.577037736309381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.082210716601243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6383294870707776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9312184910594619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.524396122103842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.042352336152693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.03342375548695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.076786033508079, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9496257954341845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7679439333520977, -7.0, -7.0, -7.0, -2.8254261177678233, -2.5943925503754266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6242820958356683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9875768947269874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.391816923613249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6911699341316035, -7.0, -4.497869141497094, -7.0, -7.0, -7.0, -7.0, -7.0, -3.000434077479319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.130976691605617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.733502207751304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.652256013378507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5016939865380676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979966989370279, -7.0, -7.0, -7.0, -7.0, -4.611659592651788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.60518648804185, -4.563623453690032, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2661907795538254, -7.0, -7.0, -7.0, -7.0, -3.2219355998280053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039116555285152, -7.0, -7.0, -7.0, -7.0, -2.538762188781348, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.598899887063883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.236180841212548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3096301674258988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2135177569963047, -7.0, -7.0, -4.2702827839652135, -7.0, -7.0, -7.0, -4.313487573864755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6414741105040997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3533390953113047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9867717342662448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658240414670103, -7.0, -7.0, -7.0, -3.6009728956867484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5804687839510017, -7.0, -7.0, -4.1783783014275455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557952095720065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3973315703911284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216772698429039, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.44870631990508, -7.0, -7.0, -3.614686342282013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2278867046136734, -1.8129133566428557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.546542663478131, -3.5807349540222253, -7.0, -7.0, -7.0, -1.2798406965940432, -2.4819201376014313, -7.0, -2.9057958803678687, -3.7944880466591697, -7.0, -7.0, -7.0, -4.435023717004075, -7.0, -7.0, -7.0, -2.682145076373832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.67089495352021, -3.400710636773231, -2.934834983210739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1931245983544616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0287338793493355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.465661632552612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1958996524092336, -2.157607853361668, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7888751157754168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.86123561863404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8920946026904804, -2.9454685851318194, -3.130976691605617, -7.0, -7.0, -7.0, -7.0, -2.3710678622717363, -2.79309160017658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4127964287165433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7327956982893293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.041787318971752, -7.0, -7.0, -7.0, -2.2889196056617265, -7.0, -7.0, -7.0, -2.4742162640762553, -7.0, -2.0969100130080562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.765581637503615, -2.673020907128896, -7.0, -7.0, -7.0, -7.0, -3.4168068718229443, -2.9731278535996988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3571722577230334, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4743619760326307, -7.0, -7.0, -7.0, -3.6942541120252788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.592398846115564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153814864344529, -7.0, -1.6476623490125806, -4.603901831731672, -4.56220956711611, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6844413876256064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7187783976895714, -7.0, -7.0, -7.0, -7.0, -7.0, -4.037934206072325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3138672203691537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.084576277934331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.802009934029908, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.640481436970422, -7.0, -7.0, -7.0, -3.5893910231369333, -7.0, -7.0, -7.0, -7.0, -3.1180993120779945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.494850021680094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.598790506763115, -2.0521165505499983, -3.882619393144054, -7.0, -7.0, -7.0, -3.328787200354535, -7.0, -7.0, -7.0, -7.0, -2.405260961594782, -7.0, -3.309949384259016, -3.6108730003800513, -7.0, -7.0, -3.6235134632921726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.084087496160286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3860230915330054, -7.0, -2.329058719264225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8758051307992005, -7.0, -7.0, -2.8512583487190755, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6437815628948647, -7.0, -7.0, -7.0, -3.4350476413399647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.746763897156223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8965262174895554, -7.0, -7.0, -7.0, -2.864511081058392, -7.0, -3.1230149001807717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3453737305590883, -2.307496037913213, -7.0, -7.0, -7.0, -7.0, -7.0, -2.245018870737753, -7.0, -7.0, -7.0, -7.0, -2.957128197676813, -7.0, -7.0, -2.385606273598312, -7.0, -7.0, -7.0, -7.0, -1.2798406965940432, -7.0, -1.7834522078668837, -7.0, -1.9552572166343505, -7.0, -7.0, -2.553883026643874, -2.7795964912578244, -3.9600345198563254, -7.0, -7.0, -2.6424645202421213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3945392313722045, -2.7456992266025058, -3.155336037465062, -7.0, -7.0, -7.0, -7.0, -7.0, -2.41161970596323, -3.4369573306694496, -7.0, -7.0, -7.0, -7.0, -3.178869079308535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.029789470831856, -7.0, -2.8369567370595505, -7.0, -7.0, -7.0, -7.0, -3.1853883377542935, -2.611723308007342, -7.0, -7.0, -7.0, -2.61066016308988, -7.0, -7.0, -2.9722028383790646, -7.0, -7.0, -7.0, -7.0, -2.662146501450624, -7.0, -7.0, -2.3944516808262164, -7.0, -2.6734816970733473, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6766936096248664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.669316880566112, -7.0, -2.6364878963533656, -1.6355895561666118, -7.0, -7.0, -7.0, -7.0, -7.0, -2.603144372620182, -7.0, -7.0, -7.0, -2.47928731647617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9953280090774097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7573960287930244, -7.0, -2.3314272965207428, -7.0, -1.7936869319790616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0637085593914173, -3.2116544005531824, -7.0, -7.0, -7.0, -7.0, -2.2278867046136734, -2.3478177127089124, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1554878621412814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8506462351830666, -2.660865478003869, -7.0, -2.8767949762007006, -3.1332194567324945, -2.795880017344075, -3.0569048513364727, -7.0, -4.621598595728911, -3.081707270097349, -7.0, -7.0, -7.0, -3.1389339402569236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.603144372620182, -2.862131379313037, -7.0, -7.0, -3.123688341667586, -4.734396540337467, -7.0, -3.1248301494138593, -3.4678176803976513, -3.0863598306747484, -7.0, -2.8785217955012063, -2.6857417386022635, -2.1899312421881114, -2.9827233876685453, -3.0849335749367164, -7.0, -7.0, -7.0, -2.929929560084588, -7.0, -2.7450747915820575, -7.0, -1.9637878273455553, -7.0, -3.105510184769974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.001001063405748, -4.573544585314933, -3.1929532452325295, -3.049140463158965, -7.0, -7.0, -7.0, -4.244227625732908, -2.949250563881826, -3.254064452914338, -7.0, -7.0, -3.018201022496291, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.402910666384635, -4.503541016777294, -7.0, -7.0, -2.840942080243099, -2.734799829588847, -4.13616016663698, -7.0, -7.0, -7.0, -4.063933524163039, -2.6794278966121188, -7.0, -7.0, -3.9794117826344353, -7.0, -7.0, -3.5603849229720157, -7.0, -7.0, -0.9905303695254535, -3.4926744454294854, -3.963350952906355, -7.0, -4.334021252007486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1521572498058466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.792951708250132, -7.0, -4.629969946292171, -7.0, -7.0, -7.0, -7.0, -7.0, -3.160018096006677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9242792860618816, -7.0, -7.0, -7.0, -7.0, -7.0, -3.642612887088148, -7.0, -7.0, -7.0, -2.8615344108590377, -7.0, -7.0, -7.0, -2.075546961392531, -7.0, -7.0, -7.0, -7.0, -2.625312450961674, -7.0, -2.975431808509263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.576514112051963, -2.2928096654172903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8530895298518657, -7.0, -7.0, -7.0, -3.6191977157929474, -7.0, -7.0, -7.0, -7.0, -3.4628470358316736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8086610190597323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6954816764901977, -7.0, -3.8553071052068284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9556877503135057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3811150807098507, -7.0, -7.0, -7.0, -7.0, -3.382557321908786, -7.0, -7.0, -3.805274250022863, -2.2844307338445193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.529558673021163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1182174713718545, -3.9662919491725086, -7.0, -7.0, -7.0, -1.9589478044569444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7047559460483073, -3.6585837154070626, -7.0, -2.9057958803678687, -3.7354163846789343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4526473239486646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.747703052659987, -7.0, -3.0484418035504044, -3.041787318971752, -7.0, -7.0, -2.9647309210536292, -7.0, -7.0, -7.0, -3.3251049829714074, -2.9132839017604186, -7.0, -7.0, -2.9763499790032735, -7.0, -7.0, -7.0, -2.9836262871245345, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055836851018404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.664328518680805, -4.236108801587282, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5766956594091306, -7.0, -7.0, -2.171700340886371, -2.2322698652699, -2.961421094066448, -7.0, -7.0, -7.0, -2.9542425094393248, -2.3584107862063366, -2.0354297381845483, -7.0, -2.6034536991873214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9523080096621253, -7.0, -7.0, -2.1335389083702174, -3.240085468038522, -7.0, -7.0, -2.4819201376014313, -1.7834522078668837, -7.0, -7.0, -2.753035605798981, -2.527398532748866, -2.9556877503135057, -7.0, -7.0, -4.042976940975573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.02201573981772, -7.0, -7.0, -3.214932110314418, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1328198114646653, -3.0363627019845945, -1.7294347893793671, -2.542514216281654, -7.0, -3.5359899528769274, -7.0, -7.0, -7.0, -7.0, -2.9175055095525466, -7.0, -7.0, -7.0, -3.496895069110507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1889284837608534, -2.4892551683692603, -7.0, -7.0, -3.1099158630237933, -7.0, -7.0, -3.6922699327603388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2930861980480297, -7.0, -7.0, -3.472573626968942, -7.0, -7.0, -7.0, -7.0, -3.151982395457474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6496268868405295, -7.0, -3.446070935701005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.124178055474675, -7.0, -3.593618308129536, -3.365843818161034, -7.0, -7.0, -2.6399842480415883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0115704435972783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.238798562713917, -7.0, -7.0, -3.0419845014867866, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4424797690644486, -7.0, -4.205434446574788, -7.0, -7.0, -7.0, -3.680335513414563, -1.7219283261448037, -3.2127201544178425, -7.0, -3.3089910290001643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2220658425885866, -7.0, -7.0, -7.0, -3.437729428754742, -3.0034605321095067, -7.0, -2.957128197676813, -7.0, -7.0, -7.0, -2.9694159123539814, -7.0, -7.0, -3.2631624649622166, -7.0, -2.906335041805091, -7.0, -3.924182765452105, -7.0, -2.6399842480415883, -7.0, -7.0, -1.9356991555801393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.718501688867274, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2613328542058917, -4.434108819200736, -7.0, -7.0, -3.552850654460561, -7.0, -7.0, -3.089905111439398, -7.0, -7.0, -2.9236325331770483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.409053505010069, -4.136427240094511, -7.0, -3.7563698216020813, -7.0, -4.662408367294865, -7.0, -4.404953387586245, -7.0, -7.0, -4.357267654644208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.095866453478543, -7.0, -4.330839741208471, -4.460040429961608, -7.0, -7.0, -7.0, -4.588383768378728, -7.0, -4.195512210674072, -3.535547279176668, -4.2533864729877715, -7.0, -7.0, -4.400261610744863, -3.9907383285075375, -3.2555137128195333, -3.800739983505454, -3.5390760987927767, -3.48280214772046, -2.8270460170047342, -4.075765878215734, -7.0, -3.2496141023445815, -3.525821952156663, -2.655330558009341, -3.6158448828747023, -3.682476013267746, -2.7126497016272113, -2.8236915393984545, -3.77757180469141, -3.31492005599242, -7.0, -7.0, -4.203631126330513, -7.0, -7.0, -3.2197902864981054, -3.4510501018233475, -4.697232249674232, -7.0, -7.0, -7.0, -3.4138757862674542, -7.0, -4.945345468339527, -3.367355921026019, -3.4790711958039306, -7.0, -7.0, -7.0, -3.990072334692153, -7.0, -7.0, -7.0, -2.7945461345990545, -7.0, -2.4261044280965076, -3.031365936393981, -3.5294186871545548, -3.2245330626060857, -4.03769535853163, -7.0, -7.0, -7.0, -4.038063526997859, -7.0, -7.0, -7.0, -3.098643725817057, -4.095692282839792, -2.937893850328434, -7.0, -2.9573678084315276, -7.0, -7.0, -3.1143607425185924, -3.2440295890300215, -7.0, -7.0, -3.5237464668115646, -7.0, -4.333719253143685, -3.207095540419218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7198834733033834, -7.0, -7.0, -7.0, -7.0, -3.569549464888704, -7.0, -7.0, -4.478580923742277, -4.170291058625393, -4.44554193436792, -7.0, -7.0, -3.079543007402906, -7.0, -7.0, -7.0, -2.678518379040114, -3.212453961040276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9978230807457256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8793611369153265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.284881714655453, -7.0, -7.0, -3.074450718954591, -7.0, -7.0, -7.0, -3.666049738480516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7777167386096258, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9836713828601966, -7.0, -7.0, -7.0, -4.025531148300212, -7.0, -3.9875322027298394, -4.2964019016921435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.216429830876251, -7.0, -7.0, -2.9867717342662448, -7.0, -3.693287157005656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5919298588776174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3283796034387376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658049574713654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2751846188287805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -7.0, -4.334674863340148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216245097705822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6919651027673606, -7.0, -7.0, -7.0, -7.0, -7.0, -3.91555811541152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3119656603683665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.057247580131245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505963518018126, -3.7937903846908188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0107238653917734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.669037800885156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.714329759745233, -7.0, -7.0, -4.727606314999153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5495549806880504, -7.0, -7.0, -2.8693807441750576, -7.0, -7.0, -2.655138434811382, -7.0, -2.812244696800369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5947607525864629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.60422605308447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495627580906491, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.220108088040055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.122625396909397, -7.0, -7.0, -7.0, -4.5416042026823655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1122697684172707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.678295256434399, -7.0, -7.0, -7.0, -7.0, -4.610180897473572, -7.0, -7.0, -3.5901728315963144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1053398398052865, -7.0, -4.302633919813779, -4.56197148664423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9846623061901068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626945698847907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639854885632376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5137501500818233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.129582486614012, -3.295347148333618, -7.0, -7.0, -3.1488493429592204, -2.7831886910752575, -7.0, -7.0, -7.0, -3.279552881150386, -7.0, -2.892571587342385, -3.137354111370733, -7.0, -2.991004440330755, -2.6887978851749255, -7.0, -3.5121505369220305, -7.0, -3.220631019448092, -7.0, -7.0, -3.177747325191253, -7.0, -7.0, -7.0, -3.523226041965701, -7.0, -7.0, -3.2223262109908117, -7.0, -3.359835482339888, -7.0, -2.3316758706381853, -7.0, -3.5352941200427703, -7.0, -7.0, -7.0, -3.509740015570382, -7.0, -7.0, -7.0, -3.6460114095912393, -2.7909344146565678, -7.0, -3.2131191388114564, -3.6240757311456826, -7.0, -3.205068964264459, -7.0, -3.037559289405319, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1814624606874005, -7.0, -3.4987239707479048, -7.0, -7.0, -3.0002604985473904, -2.9552065375419416, -7.0, -3.5683190850951116, -2.7578647280763793, -7.0, -2.8232133132826673, -7.0, -3.5070458724273257, -7.0, -7.0, -7.0, -7.0, -3.5531545481696254, -2.92389134992005, -3.5779511277297553, -3.22284647997415, -2.846337112129805, -7.0, -2.791739032986512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.806095142558302, -7.0, -7.0, -7.0, -2.3573391885859913, -3.499549625905149, -7.0, -3.520614521878236, -7.0, -3.2659963704950794, -7.0, -7.0, -2.8464608251293324, -7.0, -3.315640528098325, -7.0, -7.0, -2.9057958803678687, -1.9552572166343505, -2.753035605798981, -3.505963518018126, -7.0, -2.774629244550763, -7.0, -3.544564097496043, -3.2286569581089353, -3.2970054131398028, -7.0, -3.118595365223762, -2.657586970059049, -3.24809593109413, -7.0, -7.0, -7.0, -7.0, -7.0, -2.828588295763267, -7.0, -7.0, -7.0, -3.4992745818922173, -7.0, -3.1105335962760554, -3.269045709657623, -3.0523090996473234, -2.723221045080855, -7.0, -3.661954588653016, -3.507180977260241, -7.0, -2.549738731264899, -3.2645817292380777, -7.0, -7.0, -3.50745106090197, -7.0, -3.130538438197742, -7.0, -7.0, -7.0, -3.5381965783494542, -7.0, -7.0, -3.586249638866042, -3.249198357391113, -3.5407047833107623, -7.0, -2.7769431981946755, -7.0, -7.0, -2.5649366840364607, -3.504470862494419, -7.0, -7.0, -3.0320812676114404, -3.203032887014711, -7.0, -7.0, -2.4103084859146473, -7.0, -3.405132832229078, -7.0, -3.590618948206578, -2.227111556054666, -7.0, -7.0, -2.6434526764861874, -3.5577477416414682, -3.571825249040829, -7.0, -3.2357808703275603, -3.5229655954919865, -2.582315933132205, -2.9156636035057732, -3.212054364801163, -3.0369281680157196, -7.0, -7.0, -7.0, -3.0959051485809788, -7.0, -3.707995746422929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8009918612601714, -3.5021538928713607, -7.0, -3.499549625905149, -3.5122840632818537, -7.0, -7.0, -2.479647278769387, -3.5788683286660286, -2.9489017609702137, -3.180276823857626, -7.0, -7.0, -3.5033820634737327, -3.5596672783880576, -7.0, -7.0, -2.8303319934519617, -7.0, -3.034494765849475, -7.0, -7.0, -3.5018804937550585, -7.0, -7.0, -7.0, -2.61870166264718, -3.5008194435414155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5260806918020298, -7.0, -3.20615098159626, -7.0, -1.6732012744666738, -7.0, -3.1987945001755986, -7.0, -3.6909045540549665, -3.074938279468222, -3.1956782994574984, -3.0605719396477284, -3.390240992999803, -7.0, -7.0, -3.205068964264459, -3.3740147402919116, -7.0, -3.2946866242794433, -2.94507448847873, -7.0, -3.2005769267548483, -7.0, -7.0, -2.8180938691466357, -2.416996924659806, -2.6372394877989302, -7.0, -3.5282737771670436, -7.0, -7.0, -7.0, -7.0, -7.0, -2.709038563501977, -3.5792117802314993, -3.5418287667813124, -7.0, -3.558468562523795, -3.5211380837040362, -7.0, -3.0921188508484487, -7.0, -3.2009872191631663, -7.0, -3.5110808455391185, -3.1524921906585206, -3.548880562637515, -3.1399839757827155, -7.0, -3.29269900304393, -7.0, -3.288283107975391, -3.601299310194338, -7.0, -7.0, -7.0, -3.318167720128966, -3.0863598306747484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.526339277389844, -2.9123549292524067, -3.0257153839013404, -3.545801757159276, -7.0, -2.7743344507093037, -3.736157375273132, -3.4462834977916423, -7.0, -3.137248584828626, -3.117259863694777, -3.0, -7.0, -7.0, -3.5146805441249818, -2.9863237770507656, -2.752432609261474, -2.7558748556724915, -7.0, -7.0, -7.0, -3.560743301054712, -3.205339721431523, -3.2227164711475833, -7.0, -2.3302000983230338, -3.510545010206612, -2.6464037262230695, -7.0, -7.0, -4.347017601324948, -4.769879281205094, -7.0, -3.5509617522981762, -3.9967888550237687, -7.0, -7.0, -3.543229667726184, -4.27933988355467, -7.0, -7.0, -3.829614637842637, -4.382674293893472, -3.977220446635385, -4.442777558468063, -4.040048241547462, -7.0, -7.0, -3.8079069279242788, -4.338057875419756, -7.0, -4.208441356438567, -4.016448318259037, -4.027376792806965, -4.169733197942518, -4.236738743506645, -3.9556685120366013, -4.49352775559078, -7.0, -3.883815499236417, -7.0, -3.768320905020316, -3.7031838661780445, -4.255224247479844, -7.0, -4.0050088206723675, -4.1525329484345255, -4.403206341644807, -3.9612945052782886, -3.383564048536695, -2.834950266583269, -3.4002572909326387, -3.1073607401690504, -2.5234863323432277, -7.0, -3.6755950563867463, -7.0, -2.9755007386708083, -2.8752542402808574, -7.0, -3.8663168819216542, -2.992917205061587, -2.823148059810694, -3.3337494624819706, -3.6181527333785195, -3.3399480616943507, -7.0, -3.7822575736633017, -3.7850924507567543, -3.7149999674120426, -3.2629254693318317, -3.15172727327314, -3.5015230515328484, -3.6895007669133824, -7.0, -3.386320573894046, -7.0, -3.2990018498562894, -3.5817221599490985, -3.4121916552415694, -3.843481943039958, -3.555275870769318, -7.0, -3.874365835730049, -3.1614678285730546, -3.6405609344046366, -3.651278013998144, -3.3914644118391033, -3.3301431005564446, -4.2383472434264755, -3.27330999394054, -2.3215725418490862, -3.237382858540404, -3.3664009809846007, -3.6008640363098396, -3.5158643859762524, -7.0, -7.0, -3.3649260337899753, -3.820398522703982, -3.52865964523499, -7.0, -7.0, -7.0, -4.169586273321913, -2.990236366413815, -3.0442783733957133, -2.7110687225172314, -7.0, -7.0, -3.803934849863842, -7.0, -3.229809782952539, -7.0, -3.652826302561005, -7.0, -3.5780563219853025, -2.8937617620579434, -7.0, -7.0, -3.6293586225803405, -7.0, -3.15175279223674, -7.0, -3.5659658174466666, -2.9981866592365316, -7.0, -7.0, -7.0, -2.7502511875699738, -7.0, -7.0, -7.0, -7.0, -4.033544376090948, -3.1503842538862474, -3.7640864237491396, -7.0, -7.0, -3.0680621134957438, -7.0, -7.0, -7.0, -3.212986184736668, -3.445136968713304, -7.0, -7.0, -3.839729375206388, -7.0, -3.6010273151444854, -3.571825249040829, -3.210764270129043, -7.0, -7.0, -3.217878578027433, -3.129689892199301, -4.3881012015705165, -7.0, -7.0, -3.519434194913703, -7.0, -7.0, -7.0, -7.0, -3.58029758843657, -7.0, -3.2652544343851564, -3.2522460504731185, -7.0, -2.5833247477133505, -7.0, -4.055148889889394, -7.0, -7.0, -7.0, -7.0, -3.066325925362038, -7.0, -7.0, -3.510410948010177, -2.886553389407769, -7.0, -3.5652573434202135, -3.9147661369258526, -7.0, -7.0, -3.5901728315963144, -3.9193919267738595, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333970933444835, -7.0, -7.0, -7.0, -4.3715296320992945, -3.32990612340021, -7.0, -3.566044465487791, -7.0, -3.5150786750759226, -7.0, -7.0, -7.0, -3.5444401373176926, -3.5974757898703773, -7.0, -7.0, -3.5161385767170743, -7.0, -3.2788805690817564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.499687082618404, -7.0, -7.0, -7.0, -3.529045170765769, -3.535547279176668, -3.1812717715594614, -7.0, -2.9207939364157585, -7.0, -7.0, -3.113358331267094, -7.0, -7.0, -3.5630853728550487, -7.0, -7.0, -3.6475785542124552, -7.0, -7.0, -7.0, -7.0, -3.2384224958854797, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096910013008056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.795080179420615, -3.0370354042411027, -2.9150038821546924, -7.0, -7.0, -1.589134592627297, -2.122229202028619, -7.0, -7.0, -7.0, -3.4162076611902306, -4.093421685162236, -2.0253058652647704, -4.206933761880598, -7.0, -2.6703121322779007, -2.324022596211637, -7.0, -7.0, -7.0, -4.099058789068055, -7.0, -3.497620649781288, -3.012235739791244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.622248571670176, -7.0, -3.839352328895421, -3.0526239959621972, -2.112321759496482, -7.0, -3.8015409061903185, -2.8220647947787074, -4.094016681120422, -7.0, -3.794766797940821, -7.0, -7.0, -7.0, -2.383815365980431, -2.7592900330243038, -7.0, -3.619823500457278, -3.429299990833608, -3.796747738875302, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.551640569954477, -7.0, -7.0, -7.0, -7.0, -3.0390478577317825, -3.8078055322706246, -7.0, -3.4125949311184796, -2.31492005599242, -7.0, -3.6221449173122546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.09719067832643, -7.0, -7.0, -1.5441390597182538, -2.990919165834241, -3.493353473120484, -4.09321149181366, -7.0, -7.0, -2.88993167285404, -3.3172622140648027, -3.1396692316100534, -7.0, -2.446823361859061, -4.095308861385381, -7.0, -7.0, -3.6336367541602255, -7.0, -7.0, -4.0987129305788805, -7.0, -7.0, -3.7938602013426697, -7.0, -3.503416129793859, -3.624831922757537, -3.5299250889736333, -3.6198929764583707, -7.0, -3.7944880466591697, -7.0, -2.527398532748866, -3.7937903846908188, -2.774629244550763, -7.0, -7.0, -7.0, -7.0, -3.5020172148271476, -7.0, -3.642728248491855, -2.6319344788110417, -7.0, -3.6194759536382315, -7.0, -7.0, -7.0, -7.0, -2.9314985521074135, -7.0, -7.0, -7.0, -7.0, -7.0, -2.471317450841545, -3.869583707713424, -2.0247711295330606, -3.157456768134226, -2.773925686560425, -3.566154548823162, -7.0, -4.093981703914113, -3.3287192940950106, -3.2142844367533643, -7.0, -7.0, -7.0, -7.0, -2.9040841065189205, -7.0, -7.0, -7.0, -3.8023289442025816, -7.0, -7.0, -4.117039167877679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.096520818131028, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096144981294344, -7.0, -2.886678690759447, -7.0, -3.1412929600815933, -7.0, -3.8172347304254983, -2.2884260153495157, -7.0, -2.9023768874830473, -3.2606845578001846, -3.1540518415007632, -2.9658398015278347, -3.5205817782975743, -3.802020751771976, -4.099335277685958, -7.0, -7.0, -7.0, -2.831197665069386, -7.0, -4.094051655509965, -7.0, -2.2055394577870526, -7.0, -7.0, -7.0, -4.114711040558363, -7.0, -4.095866453478543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100715086573081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0426598769592315, -2.1982728443452566, -7.0, -4.094471128641644, -7.0, -2.785804214612169, -7.0, -4.093666782227903, -7.0, -3.7939300067726847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5903680640032447, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096666739975382, -7.0, -3.799064719351008, -3.645978700535912, -7.0, -2.1964405298523033, -3.837304286407038, -4.0931063569779065, -4.093386660001371, -4.0948203803548, -4.150572247668998, -3.630122642859312, -2.6746570549812816, -4.1034273973827675, -2.9065046393767022, -4.0948901970066505, -7.0, -7.0, -4.213198891723608, -1.9017306917292187, -2.8884107740313127, -3.3566631199368167, -3.4338338136659807, -4.093841766912128, -3.7931265661185423, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7996506490611184, -7.0, -7.0, -7.0, -7.0, -7.0, -3.172223341427753, -4.114977744785308, -7.0, -7.0, -2.633236593363552, -7.0, -7.0, -2.7600818411990895, -7.0, -7.0, -7.0, -7.0, -3.1756406459012965, -7.0, -7.0, -7.0, -3.642068627341504, -7.0, -2.2335970419994844, -3.1667589255503157, -4.09422648522204, -7.0, -7.0, -2.2299573599427696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.105510184769974, -3.6190933306267428, -2.129003424907397, -2.9618065669531717, -3.050042006104736, -4.100921680320846, -7.0, -2.8473976833632433, -4.121953583545299, -7.0, -3.504198918539445, -4.09715314984596, -7.0, -3.872360255801214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.862489166905897, -7.0, -7.0, -3.5537050669363817, -3.9299933471863993, -4.010850957373923, -7.0, -3.4148731146014684, -7.0, -2.5999084478943093, -2.8133117167318837, -2.891104357461312, -7.0, -3.515703572953595, -3.0528075800932757, -3.3976906898536563, -3.0030179697199246, -2.867549978297747, -3.891593204348965, -3.333328711983892, -3.224502594352818, -3.8669761488747474, -3.768243332915101, -3.828423569175315, -3.3487695036242493, -3.690550461510359, -2.938948375793857, -3.037354049115382, -4.121920785563038, -3.559220144744601, -3.1743613637320154, -7.0, -2.7838272880918025, -3.7614767795447017, -3.4225725624070504, -4.468893547858615, -3.957926386620302, -3.7879325337843524, -4.168320665518865, -4.0689646659444465, -3.583891177811344, -3.183696808634681, -2.406704305139731, -4.125448733060263, -2.961104552884867, -3.147124958647896, -2.4168887891206565, -4.1103539826640025, -2.4428529063688726, -4.119321886463977, -1.3251953821249525, -3.306925161088451, -7.0, -3.679990842434873, -2.723053376758989, -3.1569023388474213, -7.0, -3.289390735066813, -2.986995539724382, -7.0, -2.519171463821659, -3.3980979052314586, -3.6818440056637476, -7.0, -2.8970144490903236, -2.197975494850741, -3.1933110552062804, -7.0, -4.149403879508583, -7.0, -2.788981849269942, -4.22716656673143, -2.136994597878688, -3.2551116255008354, -3.5277403474828533, -3.7958105246674085, -3.9222582234329666, -3.143697730052988, -3.7144415328720637, -3.5349774634615505, -2.3419222959903934, -1.837908225908228, -3.3096956669331346, -2.323134189499164, -7.0, -2.745224339164012, -2.747286769372282, -2.1282726609921685, -3.1849357906889892, -4.127396390776607, -3.5470975149038937, -3.5100890297927787, -2.9703856231170267, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7954416809560518, -4.099058789068055, -3.083860800866573, -4.104726044109975, -3.0166454031569487, -3.3000814088684325, -2.630591889711026, -4.101506496139928, -7.0, -3.783570111217814, -7.0, -3.395048266590487, -3.077169627477378, -3.6367218642178245, -3.306394388411241, -3.248929133718768, -7.0, -3.8725350221946804, -3.822788990355016, -3.8100644148453546, -3.1819292955032332, -4.1181323999209045, -7.0, -7.0, -4.101128175838757, -7.0, -3.8009231818132183, -7.0, -4.095239112010478, -4.142441611701165, -2.5045958370768617, -2.683487604346112, -7.0, -3.3163897510731957, -7.0, -7.0, -7.0, -7.0, -4.097048965011131, -2.8684680990209865, -7.0, -4.10893692358826, -3.36275167111627, -7.0, -2.757421336591866, -7.0, -3.450433875172564, -7.0, -2.8388822164366654, -7.0, -2.6590961883427093, -3.248102386173046, -7.0, -7.0, -4.0984014222700775, -3.9005582854095375, -2.7368649969088095, -7.0, -7.0, -3.925441019653158, -3.8049567998574916, -2.8078961003912637, -3.8065530355273407, -2.4159565554639775, -2.989038878211426, -7.0, -4.012584163914151, -7.0, -3.636663384067435, -3.812879948090056, -7.0, -3.6277412634214152, -4.145103133146382, -7.0, -7.0, -2.50745106090197, -4.1136760118971, -3.8098626051382367, -3.6396856612426816, -4.119024820114783, -3.6966766756507976, -3.6409449669943474, -3.465680211598278, -2.881903155497279, -4.144325078400488, -3.0982975364946976, -7.0, -7.0, -2.9693029325193425, -4.166873950858819, -7.0, -2.7309064484998022, -3.099720473067752, -3.829657498318051, -3.4823222022067144, -3.893900403553743, -3.2538950571317695, -7.0, -7.0, -7.0, -7.0, -3.804037153146142, -4.120376479744434, -3.8771985152717896, -7.0, -3.796435558810175, -7.0, -2.851506257287449, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.963817330044653, -4.156094630639427, -4.11143055176598, -7.0, -4.116408480629899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.22618732283988, -3.7113853790984517, -3.877342545546019, -3.7972675408307164, -7.0, -3.460206027457451, -7.0, -7.0, -3.7948782483762575, -7.0, -7.0, -4.136022599397011, -3.7010208151180817, -4.118892725373621, -7.0, -7.0, -7.0, -7.0, -3.5957717020009405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -7.0, -3.5997739391463885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.595661530898903, -7.0, -7.0, -2.929929560084588, -3.8772273251482074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557819877590791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.025756314534414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216759516219574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1271047983648077, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9556877503135057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.41077723337721, -2.806179973983887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.072029200827922, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8943160626844384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028644442224251, -7.0, -7.0, -7.0, -7.0, -2.08278537031645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067842373472633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.49996186559619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9825425823029432, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6795187436957892, -7.0, -4.496071276220637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.127428777851599, -7.0, -7.0, -7.0, -1.9542425094393248, -7.0, -2.482873583608754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.625312450961674, -7.0, -7.0, -7.0, -3.030194785356751, -2.5289167002776547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.955791942839168, -7.0, -7.0, -3.76544501809015, -2.9698816437465, -7.0, -7.0, -2.296665190261531, -7.0, -3.4149733479708178, -2.3631417096979495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0115704435972783, -7.0, -7.0, -7.0, -7.0, -4.616968869365974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.39174644414508, -7.0, -7.0, -4.650996794844283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0170333392987803, -7.0, -4.301225384221708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.83511959042455, -3.693287157005656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3519508325993845, -7.0, -7.0, -7.0, -3.2545480771089736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.632173744035556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985067033150501, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.510545010206612, -7.0, -7.0, -7.0, -4.627037963423587, -7.0, -7.0, -3.2734642726213465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.584444307165176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7998228309933197, -7.0, -7.0, -3.6568644915489172, -7.0, -4.03938887924493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9132839017604186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4510184521554574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.147614498562027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.593286067020457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.912434633375575, -7.0, -7.0, -7.0, -3.732715340349993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.86221488945307, -7.0, -7.0, -7.0, -7.0, -2.8438554226231614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4208630205509762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.37863146935062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.248463717551032, -4.521608750296811, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.553883026643874, -7.0, -7.0, -3.544564097496043, -7.0, -7.0, -7.0, -7.0, -4.738280991116689, -7.0, -7.0, -7.0, -2.88024177589548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4802585307800777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2524322813650826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2741578492636796, -7.0, -7.0, -7.0, -7.0, -3.6310561626158684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2776092143040914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.368286884902131, -2.611723308007342, -2.6384892569546374, -2.230959555748569, -2.7015679850559273, -7.0, -7.0, -7.0, -7.0, -7.0, -2.926342446625655, -7.0, -7.0, -2.7831886910752575, -2.629409599102719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9954157985424152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7589118923979736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.705007959333336, -7.0, -4.500057998579122, -7.0, -7.0, -7.0, -3.635282637998212, -7.0, -7.0, -3.2121876044039577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.910047808486978, -7.0, -7.0, -3.4683473304121573, -7.0, -7.0, -2.851869600729766, -7.0, -7.0, -7.0, -2.6554585929400747, -2.494850021680094, -7.0, -7.0, -4.621605515488349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.660248683421062, -7.0, -4.17805561153123, -7.0, -7.0, -3.547072869887322, -2.6085260335771943, -7.0, -7.0, -7.0, -7.0, -7.0, -2.481442628502305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8175653695597807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.433729841799795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.102124855734526, -7.0, -4.48521019101124, -7.0, -7.0, -7.0, -7.0, -7.0, -4.404790968996309, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8441974969884125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.190611797813605, -7.0, -7.0, -7.0, -7.0, -4.871955109930143, -7.0, -7.0, -7.0, -4.1361813269606005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.264451822935162, -7.0, -4.635091498324376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.696749435201623, -7.0, -3.1280760126687155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.32893995062819, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5052856741441323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040691325767884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6848453616444123, -7.0, -7.0, -7.0, -3.615950051656401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9678646537908753, -7.0, -7.0, -2.832508912706236, -7.0, -7.0, -7.0, -3.725339815909737, -7.0, -7.0, -2.8543060418010806, -3.2893659515200318, -7.0, -7.0, -7.0, -7.0, -2.949877704036875, -3.2576785748691846, -3.0542299098633974, -3.1618170401676924, -2.7427251313046983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.316829691494307, -3.1740598077250253, -7.0, -4.285917196728309, -3.4726833296130404, -7.0, -7.0, -7.0, -7.0, -2.8567288903828825, -7.0, -7.0, -7.0, -7.0, -7.0, -3.855367701618522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6546577546495245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.682506085939011, -7.0, -3.485863329597335, -7.0, -7.0, -7.0, -7.0, -7.0, -4.282531483812228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3587341271980105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8254261177678233, -2.622214022966295, -2.656577291396114, -7.0, -7.0, -3.598571663482141, -7.0, -7.0, -3.5163456465629728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.714653024705956, -7.0, -7.0, -7.0, -2.639486489268586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.434947947911181, -7.0, -7.0, -7.0, -2.44870631990508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.712397131406715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.781396305196791, -7.0, -7.0, -7.0, -3.7316693318286362, -7.0, -7.0, -7.0, -7.0, -3.023046584075505, -7.0, -7.0, -7.0, -4.221022805204841, -7.0, -7.0, -7.0, -7.0, -2.3979400086720375, -7.0, -7.0, -7.0, -7.0, -7.0, -2.946452265013073, -7.0, -7.0, -2.890979596989689, -4.520090328112842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5868497522450995, -7.0, -7.0, -7.0, -2.7795964912578244, -7.0, -7.0, -3.2286569581089353, -7.0, -7.0, -7.0, -7.0, -3.9591288787339476, -7.0, -7.0, -7.0, -1.7958800173440752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6856521841155243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.028571252692538, -7.0, -7.0, -7.0, -3.2998340406458584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9809119377768436, -7.0, -7.0, -7.0, -2.845098040014257, -7.0, -7.0, -3.4983754295385956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.944975908412048, -7.0, -7.0, -7.0, -7.0, -3.525192941934471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.73559889969818, -7.0, -2.7450747915820575, -7.0, -7.0, -3.1646502159342966, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0419845014867866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.413299764081252, -2.5477747053878224, -7.0, -2.5037906830571814, -1.7427855380760457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.432969290874406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.796227314029439, -3.208710019906401, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9952841076892596, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1459211795267192, -7.0, -3.0187004986662433, -3.180125875164054, -7.0, -7.0, -7.0, -7.0, -2.598790506763115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6078623183483565, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1680553034591394, -7.0, -7.0, -7.0, -7.0, -2.708420900134713, -7.0, -7.0, -5.098339093786907, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8830933585756897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4578818967339924, -7.0, -7.0, -7.0, -7.0, -4.95606913351297, -7.0, -3.0860037056183818, -3.000954398406458, -3.0437551269686796, -7.0, -2.807535028068853, -7.0, -2.513217600067939, -2.1823195271506552, -2.437750562820388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0791812460476247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3947842790470375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.605305046141109, -4.572220834365276, -3.827756862978617, -7.0, -7.0, -7.0, -7.0, -4.543869464336801, -3.787176992470554, -3.225567713439471, -7.0, -4.141669216966209, -3.708250888591378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.753104075187242, -4.980162507941342, -7.0, -7.0, -7.0, -7.0, -4.3110647990615965, -7.0, -7.0, -7.0, -3.7585334222372864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.857633985150008, -7.0, -2.6857417386022635, -4.3045982263436375, -4.564133223842105, -7.0, -4.332872537394924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9928185200666797, -7.0, -7.0, -7.0, -3.4837298990000236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.12602311790052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.850912790647412, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5984778397360007, -7.0, -3.7328760413627067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.314393957221963, -7.0, -7.0, -3.8060894865407215, -3.7652959296980564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.41774840202559, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.370698092575577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.802682525274441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7520484478194387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7356707439453665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.736205211208257, -2.9153823903389724, -4.440759570913159, -7.0, -7.0, -4.288405740175751, -3.113579431846841, -3.273392460053555, -3.697245198420693, -4.134702916820561, -7.0, -7.0, -3.362000495735565, -2.8599109900635233, -7.0, -4.264447885773872, -2.170604608513454, -7.0, -7.0, -7.0, -4.037832711917421, -3.3743896719509805, -7.0, -2.6644201679395536, -4.13443212489584, -7.0, -4.259291184676737, -4.7369459952260415, -7.0, -7.0, -4.435923958119165, -7.0, -4.445705371207266, -7.0, -3.040762816328596, -7.0, -4.135585799233926, -7.0, -4.735710652281123, -4.435095486058288, -7.0, -7.0, -7.0, -7.0, -4.444489797808013, -3.9947569445876283, -7.0, -4.435366506612661, -4.044798378643768, -7.0, -4.735934071215523, -7.0, -4.435414316217528, -4.039984870959395, -3.964840815368866, -7.0, -7.0, -7.0, -3.267835239110218, -7.0, -7.0, -7.0, -7.0, -4.750076199567835, -4.040119522407977, -7.0, -4.739841223173554, -3.3053513694466234, -7.0, -4.7369459952260415, -7.0, -7.0, -7.0, -7.0, -4.434864187741935, -7.0, -7.0, -4.436114919749988, -7.0, -7.0, -4.261239071182586, -4.438613538767731, -3.232712164986875, -4.437354127848175, -7.0, -4.735527043564013, -7.0, -7.0, -4.735958002142925, -7.0, -7.0, -7.0, -4.273865140887861, -7.0, -7.0, -7.0, -4.262466910734854, -7.0, -4.434696618924666, -4.736786793449335, -7.0, -4.438724255549354, -7.0, -7.0, -4.738399987861007, -4.436520434633616, -1.781165293585858, -4.736428375931341, -7.0, -4.435023717004075, -3.9600345198563254, -4.042976940975573, -7.0, -3.2970054131398028, -3.5020172148271476, -7.0, -4.738280991116689, -3.9591288787339476, -7.0, -7.0, -3.787405367499166, -4.743039154804933, -3.893397121772088, -7.0, -4.435486020757864, -4.260015705635886, -7.0, -7.0, -3.625785594701899, -7.0, -7.0, -7.0, -7.0, -7.0, -3.624399974504209, -3.9092426495998436, -3.9097775515524833, -7.0, -7.0, -3.5021538928713607, -4.735981931751734, -4.434656712055763, -4.437710935603617, -3.975768696456831, -3.5956143061554546, -7.0, -7.0, -3.7816357178169127, -3.778743066712205, -7.0, -7.0, -4.736332747948591, -4.737876158125802, -7.0, -7.0, -4.741072772373322, -7.0, -4.738034961141285, -7.0, -4.261889070345975, -7.0, -7.0, -2.8697777859314675, -7.0, -7.0, -7.0, -4.435087512304593, -4.735814396794525, -7.0, -7.0, -3.793021659845983, -7.0, -2.8840019247687874, -7.0, -4.741380114764399, -2.604558668716702, -4.258972331109386, -4.437782261990645, -3.8933257432834987, -4.2619841106268845, -3.563765775330468, -3.6631038705467858, -4.260651650298644, -7.0, -4.260746961730889, -7.0, -7.0, -4.443982303007413, -7.0, -7.0, -7.0, -4.494648462275092, -7.0, -3.258976961303746, -7.0, -3.8953278149927018, -4.435071564357987, -4.258980305302306, -7.0, -4.735742576309504, -4.0384452964007185, -7.0, -7.0, -7.0, -4.448992149239026, -7.0, -7.0, -7.0, -4.735686707719744, -7.0, -4.735535028166055, -3.833083334178343, -7.0, -7.0, -3.8361816488163294, -4.138452701260987, -4.28227459870558, -2.077761476485917, -7.0, -7.0, -3.957527475522261, -7.0, -7.0, -7.0, -4.0383498855076025, -7.0, -4.7362769552331105, -7.0, -7.0, -4.7356707439453665, -7.0, -7.0, -7.0, -7.0, -3.072467759719054, -7.0, -4.735447189468635, -7.0, -7.0, -7.0, -7.0, -7.0, -4.436075143000658, -3.4412236742426123, -7.0, -4.275978986467148, -3.599914247873701, -7.0, -7.0, -7.0, -3.749140877763003, -4.738796408358713, -3.5671513990768036, -4.737876158125802, -3.023399816762231, -7.0, -7.0, -7.0, -1.8620778387246808, -4.740954505822805, -3.9635281171363457, -3.364871360852042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.136014661495803, -7.0, -7.0, -4.259952059922254, -7.0, -4.735878227256237, -4.736818638473778, -7.0, -3.499442685041947, -3.7862149248791837, -4.738106403558114, -4.736707170670822, -3.2198280150476593, -7.0, -7.0, -3.0954962573424885, -7.0, -4.73569468938689, -3.056221760948491, -7.0, -3.7441442802773826, -4.039525157450326, -4.442291586286071, -4.436496591295506, -7.0, -4.7369141595391175, -2.217537806855908, -4.043110668074183, -7.0, -7.0, -7.0, -4.442432731013761, -3.894355628528032, -7.0, -4.736069662371753, -3.5071730310804767, -4.735574948974428, -7.0, -7.0, -7.0, -7.0, -4.258605359868985, -4.738360325902248, -7.0, -3.25594754939894, -3.8502325702897666, -2.3500284998172463, -7.0, -4.442087629550761, -2.163800920094078, -2.732054581246163, -4.434393234712605, -4.261429415559447, -4.25927524755698, -3.6619151757715462, -3.1635130490182313, -3.0010016694117185, -4.735726614588647, -4.133403170134419, -7.0, -4.2621820444366785, -4.735950025313642, -4.037960073338272, -7.0, -3.40023176389234, -7.0, -3.430067373207018, -7.0, -7.0, -3.05074358222705, -2.858754796828139, -3.907554668639903, -7.0, -3.629624171479566, -4.148147455851064, -4.170188348643891, -3.8193848844515053, -3.1532691472062484, -7.0, -3.4321271294654903, -3.2379418864745153, -3.2570236949030695, -3.0091182022183838, -2.9773819838616995, -3.563059639055887, -3.4975156883526086, -2.535576378609283, -3.806641166905534, -2.9546421521708908, -3.492564842670765, -3.1731790417536367, -4.187612364222886, -3.0392781152661854, -3.372129199790205, -3.5565881268755133, -3.198156625567903, -3.4241858713584445, -4.444778414819479, -3.0752150588300236, -3.435213235221657, -3.4735811413625797, -3.376430951177879, -3.442059381836555, -3.8267584761637057, -3.511427568232574, -3.453829990084514, -3.2601622826027996, -3.1170557525484806, -4.023417089841105, -4.0440534546854, -3.0160023755050576, -3.1984406460667385, -3.4133872411492066, -7.0, -3.639639195951458, -7.0, -3.431134614595152, -3.779892172536556, -3.792376123108822, -3.1108932604638193, -2.974204553769857, -4.0735937247670435, -4.04563587107822, -4.297636513446362, -4.745152895076901, -4.737089226944776, -4.758078822249613, -3.1981632898780257, -3.797075094121358, -7.0, -3.241387983090901, -2.870770656446694, -3.1394464176042884, -7.0, -3.3869175103792855, -7.0, -3.138572689317992, -3.2780821008003054, -3.11735109929666, -3.723433281297394, -3.3251778739655737, -7.0, -3.689449456593836, -3.9630453857472343, -3.0305818650744536, -7.0, -3.864896553945115, -4.760821910929019, -3.317056153661989, -4.152746864026461, -4.260182731270367, -3.050227801195228, -3.179312365346288, -7.0, -3.2311922774468314, -4.74355679768502, -4.146864161030103, -4.162728654665835, -2.770412835511627, -4.4362342281438885, -4.736476182027697, -7.0, -3.5080779604155277, -3.185588270541374, -3.4076967576338975, -3.958635543065691, -3.5124960502155544, -7.0, -4.275434214468909, -3.2491915608671667, -4.742717277807254, -4.737431200514583, -7.0, -3.3815049580804746, -4.436885868659852, -2.5158105730293747, -3.963362766103736, -4.740346896680485, -4.1474985516858025, -3.662249162440235, -3.968739713458941, -3.800839225514776, -3.964479629577269, -4.4386372661686115, -4.058501943429649, -4.7413328454741555, -3.8974542815321183, -2.886776612422209, -3.6232095180198423, -7.0, -2.880899299839252, -4.738098466092143, -7.0, -2.6281594701971898, -2.790961787868363, -3.033658596404163, -7.0, -3.797782877883888, -3.69680102095226, -3.8416018942970567, -3.622962847945896, -7.0, -4.736404470909626, -3.6402902778133663, -3.9590334381368626, -7.0, -3.485504748083348, -4.133818235928276, -3.4934213598717854, -4.262925469331831, -4.050016080603039, -7.0, -7.0, -4.134591434710877, -7.0, -2.840273036699264, -4.737852332664364, -4.4353425998364004, -4.259562026270737, -3.3821671876003583, -3.879375470539603, -7.0, -3.8367512361816107, -3.593404226314317, -4.136379654870003, -2.216030105101232, -4.261706851652487, -4.276431165033798, -4.43691763100473, -4.438107045154885, -2.381283029465036, -4.736516016421845, -3.325720858019412, -3.8951540877215907, -4.737303985990029, -3.960010711374667, -3.9696798881274287, -7.0, -3.890979596989689, -3.091988565813422, -3.308501175617602, -4.739635625010004, -3.2173450062486335, -4.74154551677621, -3.0140926774414027, -3.7869800210123445, -3.5192809544265256, -3.623064602118739, -3.9694858039103753, -3.667367330842684, -7.0, -7.0, -2.8274829540948496, -3.908255172627239, -4.259546099087022, -4.049458369168608, -3.1326671225668004, -4.267218676620119, -3.2566078014860538, -2.961272744113886, -2.6423481186113245, -4.435406348315538, -4.740733655388644, -3.9581177338764024, -7.0, -4.136165456814543, -3.5111674626951785, -3.610104774904159, -7.0, -7.0, -4.73550308887706, -3.135170829433316, -4.7361334553295675, -7.0, -4.736436343979519, -7.0, -7.0, -4.736906200252733, -4.73770140771463, -3.9757227725765003, -3.303103447444255, -3.4172106347347677, -4.435470087438645, -4.138815652231705, -7.0, -7.0, -7.0, -7.0, -7.0, -4.135601690575795, -3.3378584290410944, -3.913995400974908, -3.911279392043913, -4.736707170670822, -7.0, -3.7099788120776522, -7.0, -7.0, -2.8419848045901137, -7.0, -7.0, -4.143553428678768, -3.9112337273068007, -3.263935750640936, -7.0, -7.0, -4.13586381379987, -7.0, -3.1929816157909645, -7.0, -4.260524535842226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.277695147981495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1784416587786515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.55808427360864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9590413923210934, -7.0, -2.9204711793184543, -1.9493900066449128, -7.0, -3.0633333589517497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.47712125471966255, -7.0, -4.217062605852551, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.385606273598312, -7.0, -7.0, -7.0, -4.5181057745296185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3184807251745174, -7.0, -7.0, -7.0, -2.4913616938342726, -7.0, -7.0, -7.0, -2.1931245983544616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4955443375464483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9138138523837167, -7.0, -2.092825126714171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2833012287035497, -4.0288232980598355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1380703930086145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3222192947339195, -3.1172712956557644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.204933522354145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4871383754771865, -7.0, -7.0, -7.0, -2.864511081058392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1344958558346736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.271841606536499, -2.8115750058705933, -7.0, -7.0, -7.0, -7.0, -7.0, -2.08278537031645, -7.0, -7.0, -7.0, -7.0, -7.0, -3.084576277934331, -2.688419822002711, -7.0, -7.0, -7.0, -7.0, -5.0978158744956446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0128372247051725, -7.0, -7.0, -7.0, -7.0, -2.665580991017953, -7.0, -3.9485107688376573, -7.0, -5.4329548675709285, -7.0, -2.7267272090265724, -7.0, -7.0, -7.0, -7.0, -7.0, -2.919601023784111, -7.0, -7.0, -7.0, -7.0, -7.0, -2.767897616018091, -7.0, -7.0, -7.0, -7.0, -7.0, -2.579211780231499, -7.0, -7.0, -4.617199609291268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.396356292642913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278970693925059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.570461210112099, -3.824494643099857, -7.0, -7.0, -7.0, -7.0, -4.0648197505822, -3.7763379096201755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4490153163477864, -3.979393567112165, -7.0, -7.0, -7.0, -7.0, -4.610511114900085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604020741000524, -7.0, -7.0, -4.632396547449762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9860996250551297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779895777163634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590618948206578, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.921166050637739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5508865888362537, -7.0, -7.0, -7.0, -3.673020907128896, -3.394626764272209, -7.0, -3.0888445627270045, -7.0, -7.0, -7.0, -2.9802559418042427, -3.65571454961871, -7.0, -7.0, -1.967557300945524, -7.0, -2.256236533205923, -7.0, -2.992995098431342, -7.0, -7.0, -3.9643892861748222, -2.271841606536499, -7.0, -7.0, -7.0, -7.0, -7.0, -2.998695158311656, -7.0, -3.3502480183341627, -7.0, -2.9010884025090147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1545000516787205, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6424645202421213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9398263372924727, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6259979988260516, -7.0, -7.0, -3.193453484763139, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788875115775417, -7.0, -3.15896526038341, -7.0, -1.4385423487861106, -7.0, -3.322839272686321, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.144418518602069, -7.0, -7.0, -7.0, -3.124178055474675, -7.0, -2.446640706109038, -7.0, -7.0, -2.82865989653532, -7.0, -7.0, -3.0707764628434346, -7.0, -3.482266003688865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.118595365223762, -3.642728248491855, -7.0, -7.0, -7.0, -3.787405367499166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.009450895798694, -7.0, -7.0, -3.9921999297955852, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2555137128195333, -7.0, -3.218010042984363, -7.0, -7.0, -3.835246539996311, -2.9410142437055695, -7.0, -2.785329835010767, -7.0, -2.430290106054924, -7.0, -7.0, -2.9425041061680806, -3.252610340567373, -7.0, -7.0, -2.962369335670021, -7.0, -7.0, -7.0, -3.180412632838324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.478037132206131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.893817223967463, -7.0, -3.1914510144648953, -3.157594120512708, -7.0, -7.0, -7.0, -7.0, -2.8410464654093035, -7.0, -7.0, -7.0, -2.7450747915820575, -7.0, -7.0, -7.0, -7.0, -2.9242792860618816, -7.0, -3.4719758703932535, -7.0, -3.4413808849165113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9429995933660407, -3.1142772965615864, -2.4599952560473914, -7.0, -3.9209025391581, -7.0, -2.9304395947667, -7.0, -7.0, -7.0, -7.0, -3.020775488193558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.713280485299326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.705007959333336, -7.0, -7.0, -3.4865721505183562, -3.337459261290656, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4401216031878037, -7.0, -3.8070070597740875, -7.0, -7.0, -7.0, -7.0, -3.1760912590556813, -7.0, -1.9650733570910066, -3.3025473724874854, -7.0, -2.926856708949692, -7.0, -7.0, -3.127428777851599, -3.0576661039098294, -7.0, -2.5352941200427703, -3.0060379549973173, -7.0, -7.0, -7.0, -7.0, -3.041787318971752, -3.1622656142980214, -7.0, -2.984077033902831, -3.8355426114309683, -7.0, -7.0, -3.8009918612601714, -7.0, -7.0, -2.0549958615291413, -7.0, -7.0, -7.0, -2.6524880857810116, -2.7271344237604884, -7.0, -7.0, -3.66872405285837, -2.516667559099043, -7.0, -7.0, -7.0, -3.26030994579492, -2.213517756996305, -7.0, -7.0, -2.343605508104172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0689276116820716, -7.0, -3.1362221332448503, -7.0, -3.9568756646371357, -7.0, -3.2496874278053016, -3.5524857010929476, -2.314393957221963, -7.0, -3.0791812460476247, -7.0, -2.709269960975831, -2.822560336942692, -2.215373152783422, -7.0, -7.0, -7.0, -2.6338049875467577, -7.0, -7.0, -7.0, -3.245018870737753, -7.0, -2.696938553005363, -7.0, -7.0, -4.0224489924661775, -4.752248254177775, -4.282961803534335, -7.0, -3.7393032991563406, -3.128722284338427, -7.0, -4.107481318911243, -3.8931036018217346, -7.0, -7.0, -4.280976518699718, -4.361075905224315, -3.692704593194761, -7.0, -7.0, -4.09824558428674, -4.180871051650544, -4.0216440360874435, -4.615107987443194, -7.0, -4.325454086056255, -7.0, -4.187280946665672, -4.0948203803548, -4.173361116894232, -4.3305355210905585, -4.158528336790152, -7.0, -4.010562828804489, -7.0, -4.2869950739688525, -3.7746385998091383, -7.0, -7.0, -3.951580344903392, -4.074304344001435, -3.8838317133294527, -4.399742926242862, -3.989405318001516, -7.0, -3.800396278249509, -3.7146231028714842, -3.781827152932428, -7.0, -4.074670188924007, -7.0, -3.2280335249267362, -3.523876475638131, -7.0, -4.092053606425475, -3.2553026633951765, -3.2758486103094215, -7.0, -3.775391971696612, -7.0, -7.0, -3.2686949535621777, -3.9017306917292185, -3.1528995963937474, -7.0, -3.462491585763105, -3.6207650116107004, -4.219988887789219, -7.0, -7.0, -7.0, -4.015872975925313, -7.0, -3.5647597371096733, -3.364550995353972, -7.0, -7.0, -7.0, -7.0, -3.8132695547205664, -7.0, -3.0037189638231143, -3.6104472214421213, -3.2205148668713357, -7.0, -7.0, -3.407178379640504, -4.093526743699675, -2.738516308715399, -3.7362869187437133, -7.0, -7.0, -3.0613582209247174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.01674092728626, -7.0, -2.9501213475113732, -7.0, -7.0, -3.71566914240099, -7.0, -7.0, -7.0, -3.5217916496391233, -7.0, -3.935416568411959, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0187004986662433, -7.0, -7.0, -7.0, -7.0, -4.478147870643273, -4.045039225299072, -4.047321605082491, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1048284036536553, -7.0, -7.0, -3.148833929054163, -7.0, -3.404149249209695, -7.0, -7.0, -7.0, -3.231979026831504, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8474492624991727, -7.0, -7.0, -7.0, -7.0, -3.5919043645847664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8169984054036665, -7.0, -7.0, -3.166578109919652, -3.197280558125619, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3494717992143856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8487841956346793, -7.0, -3.5088886771335988, -3.8185337947129234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.208441356438567, -3.543819805142658, -7.0, -7.0, -7.0, -3.868556277657932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8985880720439496, -7.0, -2.650954757949053, -7.0, -3.174931593528443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.243203462697779, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8152234391209294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.387474128991608, -3.2477278329097232, -7.0, -7.0, -3.68761812957177, -7.0, -7.0, -7.0, -7.0, -3.2116544005531824, -7.0, -2.942454526342477, -3.67089495352021, -7.0, -2.76317832728305, -3.191696193356389, -2.9965116721541785, -7.0, -2.99211148778695, -2.7570162347313003, -7.0, -3.0678145111618402, -4.267359490827859, -7.0, -2.997386384397313, -7.0, -3.062581984228163, -7.0, -7.0, -2.155336037465062, -7.0, -3.0790002523038495, -7.0, -3.397862793900405, -7.0, -3.0965624383741357, -7.0, -7.0, -7.0, -7.0, -3.0145205387579237, -7.0, -2.5440680443502757, -2.873320601815399, -2.9901908082608895, -7.0, -7.0, -7.0, -3.0453229787866576, -7.0, -3.017450729510536, -7.0, -3.15106325335375, -7.0, -7.0, -7.0, -7.0, -4.060811119791346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1818435879447726, -3.5402293377182827, -7.0, -2.5839540689101295, -7.0, -7.0, -7.0, -7.0, -3.0107238653917734, -2.9916690073799486, -1.6637334093630283, -2.290776361298428, -2.2980339102154357, -7.0, -7.0, -7.0, -3.066300215293246, -3.1264561134318045, -3.0195316845312554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.392696953259666, -7.0, -7.0, -7.0, -7.0, -2.7009919975949694, -7.0, -3.000434077479319, -2.040074643230312, -7.0, -3.7891574919114395, -7.0, -7.0, -7.0, -2.6424645202421213, -7.0, -3.0107238653917734, -2.657586970059049, -2.6319344788110417, -7.0, -7.0, -7.0, -4.743039154804933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0729847446279304, -7.0, -7.0, -3.0955616090064297, -7.0, -7.0, -7.0, -7.0, -2.9867717342662448, -3.7456992266025058, -7.0, -3.5399538416563967, -7.0, -7.0, -3.5441921107650325, -7.0, -7.0, -2.233313461142046, -7.0, -2.9506082247842307, -7.0, -7.0, -7.0, -2.9266167956441933, -2.380211241711606, -7.0, -7.0, -7.0, -7.0, -7.0, -2.92272545799326, -7.0, -7.0, -3.073351702386901, -7.0, -3.0492180226701815, -7.0, -2.356332505359126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7161848669318633, -7.0, -7.0, -7.0, -7.0, -1.9682317095729847, -3.02201573981772, -2.2947810463869796, -1.8178957571617955, -1.9423181526298499, -1.816097135847089, -7.0, -7.0, -7.0, -7.0, -7.0, -2.554691016610708, -2.7351995484223135, -7.0, -7.0, -7.0, -3.2577265605586323, -7.0, -3.465977368285823, -7.0, -3.205745540942662, -2.4170562991191105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.863322860120456, -7.0, -7.0, -4.151887507509935, -7.0, -7.0, -7.0, -2.682145076373832, -7.0, -7.0, -3.08278537031645, -7.0, -7.0, -7.0, -7.0, -7.0, -2.998259338423699, -7.0, -7.0, -7.0, -3.0203612826477078, -7.0, -7.0, -7.0, -3.0081741840064264, -3.0265332645232967, -3.0318122713303706, -7.0, -2.7690078709437738, -7.0, -2.313023110323238, -2.9059307334917293, -1.7747090039726263, -7.0, -7.0, -3.00987563371216, -7.0, -2.5384480517102173, -2.6380282224294906, -7.0, -3.6630005371638217, -7.0, -7.0, -7.0, -3.6920533650340808, -3.2203696324513946, -2.944729360303296, -2.7456602257060756, -7.0, -7.0, -2.7007037171450192, -7.0, -2.568983532526376, -2.328088228398017, -2.813247300897605, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7547304690237535, -3.024074987307426, -1.906437663375016, -3.2079035303860515, -7.0, -3.0511525224473814, -3.5738943775920253, -7.0, -7.0, -7.0, -7.0, -2.999130541287371, -7.0, -7.0, -2.235317981925527, -2.5289167002776547, -3.2931414834509307, -2.788168371141168, -2.940267391446012, -7.0, -3.8965985479517316, -3.2581581933407944, -7.0, -7.0, -7.0, -3.2971036501492565, -3.1711411510283822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7263196121107756, -3.9890936926103255, -3.5140161804006493, -4.288177337719967, -7.0, -2.1049421081920463, -3.952526071556139, -7.0, -7.0, -2.832189461068513, -7.0, -2.3240250955971815, -3.543074235033532, -7.0, -3.000867721531227, -7.0, -7.0, -2.461798557525109, -7.0, -3.064832219738574, -7.0, -3.2830749747354715, -7.0, -2.192985379093163, -7.0, -7.0, -4.325176880079742, -7.0, -7.0, -3.1383026981662816, -7.0, -7.0, -7.0, -4.411266066512139, -3.7852032462226073, -7.0, -4.062431553162612, -4.282803314291728, -3.709251110979869, -3.6316196159084075, -3.6288655408018107, -7.0, -7.0, -3.960518342780708, -7.0, -7.0, -7.0, -4.627055047305291, -3.9140785853891122, -4.091491094267951, -4.100405011565889, -7.0, -3.934165027520354, -4.160948480864697, -7.0, -4.233808065724531, -7.0, -7.0, -4.2557547866430445, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4991885949036172, -7.0, -3.2860071220794747, -3.434078220883039, -2.762407618151054, -1.6678905292311565, -7.0, -7.0, -7.0, -3.5524857010929476, -3.135895575564019, -3.3802112417116064, -7.0, -3.686397907850216, -3.76544501809015, -7.0, -7.0, -3.3416323357780544, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7237913946490377, -3.3597993573621676, -4.475752520143048, -7.0, -7.0, -7.0, -3.7164415928308245, -7.0, -3.9459016787990917, -2.8344207036815328, -7.0, -7.0, -7.0, -3.5596672783880576, -3.6918547497031398, -7.0, -3.7170044070405472, -3.3260284683370087, -3.4806679478217943, -2.8380931384455983, -3.0806264869218056, -3.533909685986936, -3.5723603667301402, -7.0, -4.163956058605712, -7.0, -7.0, -3.6788824146707357, -7.0, -3.0780941504064105, -7.0, -7.0, -7.0, -7.0, -3.546131204914049, -7.0, -3.289142835932333, -7.0, -3.4991369945373827, -4.023458237643675, -7.0, -7.0, -7.0, -7.0, -7.0, -4.636086515103073, -7.0, -7.0, -7.0, -3.0232524596337114, -7.0, -3.2425414282983844, -7.0, -7.0, -2.733770288651772, -7.0, -7.0, -7.0, -7.0, -7.0, -3.878291949249796, -7.0, -7.0, -7.0, -2.9234395410907656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.064008486531724, -2.8887409606828927, -7.0, -7.0, -7.0, -7.0, -7.0, -4.347505649475902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.734799829588847, -7.0, -3.5653146367896102, -3.144885418287142, -7.0, -2.806519134080705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3769417571467586, -7.0, -7.0, -3.4796472787693866, -7.0, -3.545059584694003, -7.0, -7.0, -3.731346975545955, -7.0, -7.0, -7.0, -7.0, -4.2876897839360755, -3.514282047860378, -7.0, -7.0, -3.8520731603687888, -3.0199466816788423, -7.0, -3.8220590560256844, -3.8158432906632664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.395908557341382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5229655954919865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.432568465297358, -7.0, -7.0, -7.0, -7.0, -2.6328909362366324, -7.0, -7.0, -3.818775563959327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.816042340921997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3106933123433606, -7.0, -7.0, -7.0, -3.613366056465805, -7.0, -7.0, -7.0, -3.556767567185354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7834747875822465, -7.0, -7.0, -7.0, -7.0, -2.8674674878590514, -7.0, -7.0, -7.0, -7.0, -7.0, -4.341394951524042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0256335110606978, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8003242293348352, -2.7151673578484576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3552599055273786, -2.3339508043872472, -7.0, -7.0, -4.225050696138049, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.888179493918325, -7.0, -3.919979755708313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.370624100841536, -7.0, -7.0, -2.682145076373832, -7.0, -7.0, -7.0, -3.24809593109413, -7.0, -2.6720978579357175, -2.88024177589548, -1.7958800173440752, -3.893397121772088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3981136917305026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0874264570362855, -7.0, -7.0, -7.0, -3.0418231769977724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3439990690571615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9097423747827356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.41740710243536, -7.0, -7.0, -7.0, -7.0, -2.993876914941211, -7.0, -7.0, -7.0, -2.5496162395190853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3729120029701067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7058637122839193, -7.0, -7.0, -2.3483048630481607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.330413773349191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.113943352306837, -7.0, -7.0, -2.946943270697825, -7.0, -7.0, -7.0, -7.0, -2.4366925976640545, -3.7083359026822635, -7.0, -4.500593207431217, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7770641547424293, -2.920905604164024, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7596678446896306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.468568852723465, -7.0, -7.0, -2.8750612633917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.621740428764866, -3.0962145853464054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6620964454179235, -7.0, -4.956317333363374, -7.0, -7.0, -3.0284726614362905, -3.1007150865730817, -7.0, -7.0, -7.0, -3.0557604646877348, -1.7181632495953605, -2.4951973183654577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.657693115600798, -4.272966527115369, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9436552443683515, -3.496860487394368, -2.6603910984024672, -7.0, -3.6692548783557273, -7.0, -7.0, -3.74499667403856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.503727145256533, -7.0, -2.7371926427047373, -3.0259199985020175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.28141974015399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.527898298680946, -7.0, -7.0, -4.635483746814912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8068580295188172, -7.0, -7.0, -7.0, -7.0, -3.9951084577447404, -4.643195972076743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.451939869365103, -7.0, -7.0, -3.318793504793297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.780867933550551, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6893088591236203, -3.0595634179012676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.809582158214607, -3.475525915039281, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.157638064100917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2723058444020863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.208530929395862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.806202592899124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6045500325712614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.877584408926619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.858537197569639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3282572497312364, -7.0, -7.0, -7.0, -7.0, -3.2971036501492565, -7.0, -7.0, -7.0, -4.217641840773327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8193201504349257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3230457354817013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6194759536382315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6273658565927325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426990834952875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.670366473678122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.646076820312336, -7.0, -7.0, -7.0, -3.0105649480946766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.848303065841533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.195622943586937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3054266119721705, -7.0, -7.0, -3.751048034820188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097892144361428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4722687519252506, -7.0, -4.830920517340211, -7.0, -7.0, -4.2432117317447595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4803902567348173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.678536588070615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.640759614348585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604258461911163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357744325180375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.484774218948188, -4.576686805200995, -7.0, -7.0, -7.0, -2.507855871695831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.336239528754922, -7.0, -7.0, -2.611723308007342, -7.0, -2.3636119798921444, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4023473728483684, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3404441148401185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.305351369446624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2194535370768107, -7.0, -7.0, -7.0, -7.0, -2.837588438235511, -7.0, -7.0, -7.0, -7.0, -3.759101003867064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.435486020757864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.660770643527697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7752462597402365, -7.0, -7.0, -3.8250364412213536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6704314093606056, -7.0, -2.7551122663950713, -2.2438644894340767, -7.0, -2.8615344108590377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.509336958017644, -4.67228262478892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.207050607980928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5788683286660286, -7.0, -3.6857417386022635, -7.0, -7.0, -7.0, -7.0, -7.0, -3.311329952303793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4224256763712044, -7.0, -7.0, -7.0, -4.305695228911858, -7.0, -7.0, -3.752969865029084, -7.0, -7.0, -7.0, -7.0, -2.7993405494535817, -2.7283537820212285, -7.0, -2.60959440922522, -7.0, -7.0, -7.0, -2.9951962915971793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.955902519867588, -7.0, -3.0472748673841794, -4.243521707406287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0398105541483504, -2.0681858617461617, -2.8902346663063563, -7.0, -7.0, -4.617692143352612, -7.0, -7.0, -7.0, -7.0, -3.307496037913213, -7.0, -7.0, -4.431966532447148, -7.0, -4.030316305988586, -7.0, -7.0, -7.0, -4.091895473508298, -7.0, -7.0, -3.952618109269662, -7.0, -7.0, -7.0, -7.0, -7.0, -4.48364434340033, -4.07107154998365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.388136739763074, -7.0, -7.0, -7.0, -3.7005306569785916, -7.0, -7.0, -7.0, -7.0, -4.542576476260529, -7.0, -7.0, -4.068148740973294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5749375144503044, -4.3776021772931735, -7.0, -7.0, -3.270911639410481, -7.0, -4.133847488421549, -7.0, -4.941923667610981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6423655808449733, -7.0, -4.155578931476932, -7.0, -7.0, -3.458119623559412, -4.5628992633333025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7505083948513462, -7.0, -3.2095596927466623, -2.507855871695831, -2.445993181787647, -7.0, -3.3679147387937527, -3.510902307208997, -3.0261245167454502, -2.2911467617318855, -7.0, -3.7774268223893115, -7.0, -3.7245113899980535, -7.0, -7.0, -7.0, -3.74170298395774, -7.0, -7.0, -7.0, -7.0, -3.4743619760326307, -7.0, -3.0224283711854865, -2.7846172926328756, -7.0, -7.0, -3.8282086144679455, -2.678518379040114, -7.0, -3.8663316525868, -3.5264486326524866, -4.042134300345594, -7.0, -3.3571722577230334, -2.7067177823367587, -7.0, -7.0, -7.0, -7.0, -2.9324737646771535, -7.0, -7.0, -3.2909245593827543, -7.0, -3.395937645080042, -7.0, -7.0, -7.0, -2.478566495593843, -7.0, -7.0, -3.4277700279826964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6634182122526795, -2.7209857441537393, -3.364731342718344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2295111961536325, -7.0, -7.0, -2.694605198933569, -7.0, -7.0, -7.0, -2.6398183918310933, -2.876217840591642, -2.826722520168992, -2.938186037505905, -2.658488381309017, -2.5819009187422806, -7.0, -3.7244397233970745, -3.659345635746177, -7.0, -7.0, -7.0, -7.0, -4.268858674994137, -2.910446524697526, -7.0, -7.0, -3.83499260373303, -2.803115554890027, -3.9554472105776957, -4.280942405998698, -3.456290100882691, -7.0, -7.0, -7.0, -7.0, -7.0, -2.979548374704095, -7.0, -7.0, -7.0, -7.0, -3.2462215189159713, -7.0, -7.0, -7.0, -7.0, -2.765668554759014, -7.0, -7.0, -3.399846712712922, -3.3191060593097763, -2.8356905714924254, -2.1398790864012365, -2.921166050637739, -7.0, -7.0, -7.0, -7.0, -2.576341350205793, -7.0, -3.662190990859007, -3.0273496077747564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2775175329691715, -7.0, -7.0, -7.0, -2.9748186146454407, -7.0, -7.0, -7.0, -7.0, -7.0, -2.848558572123763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.65955492971097, -7.0, -7.0, -7.0, -7.0, -2.9419087743655994, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1262396696287182, -7.0, -7.0, -2.5211380837040362, -3.4154684148357113, -7.0, -7.0, -7.0, -2.60422605308447, -2.0644579892269186, -7.0, -4.258553480224311, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7041505168397992, -2.386498965550653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.409172018991404, -7.0, -7.0, -7.0, -7.0, -2.45484486000851, -7.0, -7.0, -2.3483048630481607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5212165635672568, -7.0, -2.311753861055754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.167317334748176, -7.0, -4.519775507887456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2900346113625183, -2.1476763242410986, -2.583198773968623, -7.0, -7.0, -7.0, -7.0, -3.585949270923298, -7.0, -7.0, -7.0, -7.0, -3.02201573981772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.260015705635886, -2.4955443375464483, -3.009450895798694, -3.0729847446279304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.266325791475637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1225435240687545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.077476919504343, -7.0, -7.0, -7.0, -7.0, -2.3873898263387296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.237040791379191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.152232733334654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.037227234582274, -7.0, -2.9360107957152097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.469822015978163, -7.0, -2.459392487759231, -7.0, -5.149662421113644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.456366033129043, -7.0, -7.0, -7.0, -2.401400540781544, -7.0, -7.0, -7.0, -2.6180480967120925, -3.688108228551808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.917330426106554, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5071809772602407, -2.3467085164122916, -7.0, -4.498131284151583, -7.0, -7.0, -7.0, -3.018284308426531, -7.0, -3.0086001717619175, -2.4718781993072905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.444044795918076, -7.0, -2.496929648073215, -2.530039530588542, -2.637989780784685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.756636108245848, -7.0, -7.0, -2.486430478854434, -7.0, -7.0, -3.000867721531227, -7.0, -5.098255975225523, -3.028977705208778, -7.0, -7.0, -7.0, -7.0, -2.165541076722373, -7.0, -7.0, -2.1164416975393117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.47736246243589, -3.4019172505175748, -4.734175532664321, -7.0, -3.0773679052841567, -4.244512145378027, -3.034227260770551, -7.0, -7.0, -7.0, -7.0, -3.4391747398434687, -2.7307822756663893, -7.0, -7.0, -7.0, -2.5508396050657853, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2995799292687487, -7.0, -7.0, -4.618529216771113, -7.0, -7.0, -7.0, -4.4290898392125735, -7.0, -7.0, -7.0, -4.256501266211318, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3943641126271284, -7.0, -7.0, -4.65243974758942, -7.0, -7.0, -7.0, -7.0, -7.0, -4.785258633357701, -7.0, -7.0, -7.0, -7.0, -7.0, -4.227483917481322, -7.0, -4.581471773962398, -4.237468333249569, -7.0, -7.0, -7.0, -7.0, -4.048810680621964, -7.0, -7.0, -7.0, -3.7936739986571855, -7.0, -7.0, -7.0, -7.0, -7.0, -4.242516582365605, -7.0, -7.0, -7.0, -3.441695135640717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354818870847722, -4.5029139488008685, -7.0, -7.0, -7.0, -7.0, -4.611861325884996, -7.0, -7.0, -3.6074550232146683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.680758419669491, -7.0, -7.0, -4.128226895434375, -7.0, -7.0, -7.0, -7.0, -7.0, -3.304167271724397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.298489193286698, -7.0, -3.0811672147134725, -3.6906390117159673, -7.0, -7.0, -7.0, -3.4820155764507117, -7.0, -7.0, -7.0, -7.0, -7.0, -3.74795530690673, -7.0, -7.0, -7.0, -7.0, -3.485863329597335, -2.9849771264154934, -7.0, -2.8382192219076257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5998334695972587, -7.0, -7.0, -7.0, -2.467608105583633, -7.0, -7.0, -7.0, -7.0, -2.945796726048, -7.0, -2.8394780473741985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7489628612561616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.67089495352021, -7.0, -3.3175518450809616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7596678446896306, -7.0, -7.0, -7.0, -2.1675361229048957, -2.31492005599242, -7.0, -2.8195439355418688, -7.0, -7.0, -7.0, -3.7309436934277356, -7.0, -7.0, -3.218535505216528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.711701804964474, -7.0, -3.6581545470672103, -7.0, -3.763502865467597, -7.0, -7.0, -7.0, -7.0, -2.762678563727436, -2.7126497016272113, -7.0, -7.0, -7.0, -7.0, -3.3737393183514452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0555694400609896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333507728917455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.214711421005384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.516931808868013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727134423760488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.4328122113298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9570802596579, -7.0, -2.738892615890152, -7.0, -7.0, -7.0, -3.634275694625944, -2.640944966994348, -7.0, -7.0, -7.0, -3.9860996250551297, -3.655042341331202, -2.668075151394519, -3.6280481732796694, -7.0, -2.526339277389844, -3.0502198796550055, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6638892986226614, -2.754802988015006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4806296561576167, -3.2807348293181673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.732647658971915, -3.1020280999717116, -7.0, -3.9611837098124356, -4.0036328370044085, -3.9622272313500853, -7.0, -7.0, -3.9614685553507862, -7.0, -3.99943504987633, -7.0, -7.0, -7.0, -3.211698859219537, -7.0, -7.0, -7.0, -7.0, -3.4346088189721344, -3.1986570869544226, -7.0, -7.0, -3.501692431974699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.975431808509263, -7.0, -7.0, -3.1860612225861757, -7.0, -7.0, -2.8012789486025635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.980821166644336, -7.0, -7.0, -7.0, -7.0, -4.007854418758035, -7.0, -7.0, -7.0, -7.0, -3.214932110314418, -7.0, -2.828588295763267, -2.9314985521074135, -7.0, -7.0, -7.0, -3.625785594701899, -7.0, -3.9921999297955852, -3.0955616090064297, -7.0, -7.0, -3.660770643527697, -3.266325791475637, -7.0, -7.0, -7.0, -3.478037132206131, -3.478037132206131, -3.0520683999338503, -7.0, -7.0, -2.9873789381001123, -3.4566696294237573, -3.3623316518700257, -1.7383958575537897, -7.0, -7.0, -7.0, -7.0, -7.0, -3.454501860531497, -7.0, -7.0, -7.0, -7.0, -3.413697824610152, -7.0, -7.0, -7.0, -3.9698350930757975, -7.0, -7.0, -3.6871274768927718, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1238375049273124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0679383299743406, -7.0, -3.0908546858840182, -7.0, -7.0, -2.5560831047121524, -3.959470702075107, -3.9753858489894673, -3.3712526291249394, -3.9771746760201876, -3.203984244420126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7090578513345434, -7.0, -7.0, -7.0, -3.5342292372487547, -7.0, -3.7395327894173307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.490192663567421, -7.0, -7.0, -7.0, -4.036708721569886, -7.0, -7.0, -7.0, -3.9568404901592333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.2377501940906657, -2.924482559869432, -7.0, -7.0, -7.0, -2.897718704935313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.964495339555093, -3.0123919266355528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.996555449633365, -7.0, -3.575187844927661, -3.715627349158221, -7.0, -7.0, -7.0, -3.5554975061310574, -3.9752019622578523, -2.2350807535650064, -7.0, -3.242962512642639, -7.0, -7.0, -7.0, -7.0, -3.6864575104691117, -2.6893976628212823, -3.4101020766428607, -3.4073484078239042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9467922511424818, -7.0, -7.0, -7.0, -3.1012357969686812, -3.9635989625972416, -7.0, -2.3882939162119032, -7.0, -7.0, -7.0, -7.0, -3.5288310321677203, -7.0, -7.0, -7.0, -7.0, -7.0, -3.269921362515407, -3.693155132538336, -7.0, -7.0, -7.0, -4.001690454232153, -3.979548374704095, -3.655330558009341, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4722443526734725, -3.5766868052009952, -3.0733890027618425, -7.0, -3.999782798454136, -2.58737317819709, -7.0, -7.0, -7.0, -7.0, -3.9893608137762473, -3.4602587043308133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3504806137955305, -7.0, -7.0, -3.224343108953842, -3.305633461726069, -3.0390967104414504, -7.0, -4.074999186064199, -2.8606174625142047, -3.2375751529847925, -3.352928220652557, -2.91150349477443, -7.0, -2.969216160193203, -3.3652726562364186, -3.3182319446859947, -3.6037276129072717, -2.9232051480529364, -3.188397198393092, -3.3178936555380973, -2.566433428221703, -3.9714382148239724, -3.2311706772347133, -7.0, -3.143491254545802, -3.910090545594068, -3.1804749464164352, -3.3605092642757195, -3.886866575028829, -3.503467224264229, -3.8695016026972224, -7.0, -2.853925332171701, -3.3272908044180514, -3.208700758415077, -3.8140976983042227, -3.532608801355367, -3.47845105314715, -3.462298148609655, -4.302850212702309, -3.001691849737373, -3.160429381388825, -2.9527682342042683, -3.522226814487059, -2.7703421100328383, -3.3152504207468403, -2.675503384727957, -3.133584525142688, -2.2900782787982696, -7.0, -2.899641457036817, -4.173244559061566, -4.019407108018883, -3.271609301378832, -2.9558800862253753, -4.142514604999374, -2.8932494712502037, -3.8505849763520317, -7.0, -7.0, -2.796683860632784, -4.082210716601243, -7.0, -7.0, -3.6521772463437383, -2.988062779908248, -3.2102357529251764, -7.0, -7.0, -7.0, -3.5501147400413813, -3.285235728480749, -3.5065275808580276, -3.8078055322706246, -4.306382132150198, -7.0, -7.0, -3.046311501179504, -3.401369205272897, -7.0, -7.0, -3.7886632131208575, -3.5199404421814484, -4.061037590063418, -7.0, -3.6495826527746433, -3.2419007136463427, -7.0, -3.5681598017268974, -7.0, -4.031165999660659, -7.0, -3.5027456678452404, -3.9663294951638783, -7.0, -7.0, -7.0, -4.314983145039124, -2.184998828988206, -7.0, -3.3978097007803054, -7.0, -2.8725447293769673, -3.792578442664711, -2.6532125137753435, -7.0, -7.0, -3.473107252633462, -3.9701608430373136, -3.218391490113583, -3.388855763178122, -3.6830019846071993, -3.7333577879255855, -3.8571816735501194, -4.020609853377705, -3.2842426868695513, -3.218841731507062, -3.980321586008756, -3.119292555619459, -3.3873898263387296, -3.9970804354717306, -3.977220446635385, -7.0, -7.0, -3.0466344997274475, -7.0, -2.2377563480984297, -2.718114759110934, -3.0670046917014813, -2.616455053232196, -7.0, -4.0475085055940125, -7.0, -3.406625327867206, -3.965248750967121, -3.654850090561394, -7.0, -2.0557488898291396, -7.0, -3.977311973396926, -7.0, -3.958277125547698, -3.442511124934785, -7.0, -2.9893689057927917, -7.0, -7.0, -3.485579476984679, -3.0417434884744745, -2.867740479949696, -3.9696954111184732, -7.0, -7.0, -3.7975099023288803, -2.7347426968541853, -3.50870923513873, -3.9818638909913506, -2.85000097173786, -2.7960189693471493, -2.780128801657813, -3.9755696578936623, -3.3554515201265174, -3.6692238739308056, -3.6761446803562063, -4.236285277448029, -7.0, -2.6663619559503995, -7.0, -3.364128689628175, -3.971971276399757, -3.5483075066875784, -7.0, -7.0, -2.9309490311675233, -3.9837164739137494, -7.0, -3.3035662999679793, -3.513617073787875, -7.0, -7.0, -3.6744937172963503, -3.2249860256767717, -7.0, -4.019282495761732, -7.0, -7.0, -3.4840782847471243, -1.893946607552074, -3.962889987391791, -2.9485759586429285, -3.1667704294521917, -7.0, -3.65076877671263, -3.300253776544204, -3.5621441079960707, -7.0, -7.0, -7.0, -3.3552599055273786, -3.9721565358594937, -3.5154322631124733, -7.0, -7.0, -3.9618006391916785, -7.0, -2.472300437219242, -7.0, -7.0, -7.0, -7.0, -3.373693397708325, -7.0, -3.0138199506371244, -3.2110060574081962, -3.2614611315130806, -7.0, -7.0, -3.385069776331935, -7.0, -7.0, -7.0, -3.6671726724788685, -7.0, -7.0, -4.12949654301666, -2.3883694792886034, -2.575374101516656, -7.0, -7.0, -4.044343734895107, -7.0, -7.0, -3.3649260337899753, -7.0, -7.0, -4.0135955235372895, -2.3405937554590173, -7.0, -7.0, -7.0, -7.0, -7.0, -2.349824798081177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.478037132206131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.12501744535038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368277585134854, -7.0, -7.0, -7.0, -2.673020907128896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432810608184443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.616254897182604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.731910942116873, -7.0, -7.0, -7.0, -7.0, -7.0, -4.390546539888802, -7.0, -7.0, -4.650336669434548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.702775077901044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6808791744268112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8750612633917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.386498965550653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080608451062176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.478037132206131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727126283206558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067210388410234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7203247174174416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6808791744268112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5622928644564746, -7.0, -4.639267294545039, -4.7400862323055035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779571240844613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2214142378423385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145507171409663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0520683999338503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7649229846498886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.190611797813605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.79989512705351, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.870942050060529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6848453616444123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080644522032454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.844725627973226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.620656479819621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.876996792606452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333689041703905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1122697684172707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8260748027008264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.733999286538387, -7.0, -7.0, -7.0, -7.0, -2.7489628612561616, -1.8864907251724818, -7.0, -2.5888317255942073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4992745818922173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.7269987279362623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5808679779090298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.88394519503428, -7.0, -7.0, -7.0, -7.0, -3.7150278702988717, -7.0, -7.0, -7.0, -7.0, -2.7781512503836434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8169038393756605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5910646070264993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.696356388733332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.05307844348342, -2.100370545117563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.196728722623287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0293837776852097, -3.09968064110925, -7.0, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.61066016308988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4051755462179893, -7.0, -7.0, -7.0, -7.0, -2.7041505168397992, -7.0, -7.0, -7.0, -7.0, -7.0, -3.343802333161655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.731991449018929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.650433809651895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.952792443044092, -7.0, -7.0, -4.299964668624155, -3.118595365223762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151706857022576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6813769331998136, -7.0, -7.0, -7.0, -3.466941725717638, -7.0, -4.6264430253312945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.16220583117701, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7958105246674085, -7.0, -7.0, -7.0, -7.0, -5.080644522032454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2364532830524073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8322959710584774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5938396610812715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8920946026904806, -7.0, -7.0, -3.110252917353403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.298853076409707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4265112613645754, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8512583487190755, -7.0, -2.582063362911709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9867717342662448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.7269987279362623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.881963113267065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1838390370564214, -7.0, -7.0, -7.0, -7.0, -3.7661431884987495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7708520116421442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.673665876245702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4000196350651586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1180993120779945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.162146039825377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3093746249166704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.373187949912719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5852263815565872, -3.733277533932582, -7.0, -7.0, -2.782626166498415, -3.2434845220064585, -3.672836454171397, -7.0, -7.0, -3.7218106152125467, -7.0, -2.5602935243774274, -3.9205928620848085, -7.0, -3.7311857076340007, -2.7249800027309923, -7.0, -7.0, -7.0, -7.0, -3.6755033847279566, -7.0, -2.721050076134882, -7.0, -7.0, -7.0, -7.0, -3.216517771441886, -7.0, -3.681241237375587, -7.0, -3.7812525942484565, -7.0, -2.699837725867246, -7.0, -3.6893976628212823, -7.0, -7.0, -3.671728088239558, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3412274163300966, -7.0, -3.3736474722092176, -3.75350645699097, -7.0, -3.6693168805661123, -7.0, -7.0, -3.703978825008386, -2.8999767515678005, -7.0, -7.0, -7.0, -1.9697147408599875, -7.0, -7.0, -7.0, -7.0, -3.811038508604216, -7.0, -7.0, -3.71281800020785, -3.5437784181428738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7019994748896368, -7.0, -3.7197454925295768, -3.6816029987308685, -7.0, -7.0, -2.385582910615795, -3.3960248966085933, -7.0, -7.0, -7.0, -7.0, -7.0, -3.370142847051102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7104558643354246, -7.0, -7.0, -3.679155241283354, -3.6691308473733324, -3.012415374762433, -7.0, -7.0, -7.0, -7.0, -2.4438803215809832, -7.0, -7.0, -3.67089495352021, -3.3945392313722045, -3.1328198114646653, -3.669037800885156, -3.1105335962760554, -2.471317450841545, -7.0, -7.0, -3.6856521841155243, -3.624399974504209, -7.0, -3.2555137128195333, -3.7456992266025058, -3.3981136917305026, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9873789381001123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2450806260854437, -3.2493818233440925, -3.2363692883742803, -7.0, -4.027186461836736, -7.0, -7.0, -3.7011360660925265, -7.0, -2.733277533932582, -7.0, -7.0, -7.0, -2.813981075636472, -7.0, -3.6652056284346006, -7.0, -7.0, -7.0, -7.0, -3.4245549766067134, -7.0, -3.6931991451537174, -7.0, -3.403034683744586, -3.200303182981585, -7.0, -3.2310871205848226, -3.668012971641832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.485934263771752, -7.0, -3.4634450317704277, -7.0, -3.4277294795038933, -2.412345401424098, -7.0, -7.0, -7.0, -7.0, -3.414137362184477, -3.739888655084543, -2.734977527824511, -7.0, -7.0, -3.2002118967002393, -7.0, -3.765072201102792, -7.0, -7.0, -7.0, -3.5015727138817785, -7.0, -3.8173008783933216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6843964784190204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.020775488193558, -2.3641244218181514, -3.2033706558529422, -3.6648299411430907, -3.6679196853173615, -7.0, -3.7066324508732946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6663307443019684, -7.0, -7.0, -7.0, -3.849357981661299, -7.0, -7.0, -3.6636067081245205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.991036109451118, -3.776555910703262, -7.0, -7.0, -7.0, -7.0, -7.0, -3.366843038975866, -7.0, -3.2990712600274095, -7.0, -7.0, -7.0, -3.1539672216454786, -3.121969981607635, -7.0, -2.9230218541705404, -2.918180171004722, -3.6662370958958044, -7.0, -7.0, -7.0, -3.7113009599161657, -3.694166295933198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9479236198317262, -7.0, -7.0, -7.0, -2.237322669869924, -7.0, -7.0, -2.890507000682388, -3.365207100231823, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146128035678238, -7.0, -3.731346975545955, -7.0, -3.139433582260135, -3.1341771075767664, -7.0, -2.885078384149224, -3.665017825412473, -3.7500453120117676, -3.2322335211147335, -3.3644571851188294, -7.0, -3.691435152144062, -7.0, -7.0, -7.0, -3.683137131483007, -3.6754116937148633, -3.3660492098002353, -7.0, -3.371714202642618, -3.4276808163314625, -3.361979527987491, -3.5590762202465087, -7.0, -2.9677039447900855, -2.6757783416740852, -7.0, -7.0, -2.6181352956847586, -7.0, -3.1252372114756253, -2.3443922736851106, -3.7374312005145827, -7.0, -7.0, -7.0, -3.1048284036536553, -3.669502834104343, -3.681512586638962, -3.6711728427150834, -3.443966678374579, -7.0, -3.0536545582907473, -7.0, -7.0, -3.707712079213691, -4.780526126607946, -7.0, -7.0, -7.0, -7.0, -7.0, -3.623382217343356, -2.600957985056156, -7.0, -4.18150058846776, -3.924196555424065, -4.696670854360099, -4.354697347829673, -3.2341598394744815, -4.369123049528199, -4.15956719323362, -3.6135158906856466, -4.155761012877924, -3.808220621661337, -7.0, -4.162162649359897, -3.374345016224609, -3.383702357611819, -7.0, -3.970974150579461, -7.0, -3.3669563247869063, -7.0, -2.900770714997175, -4.32434419893904, -7.0, -4.335698551498222, -3.9880458832342387, -3.7257891635772458, -7.0, -7.0, -3.4272913145278627, -4.159942978047153, -2.7506369413912526, -2.44216608578472, -2.5313008910172563, -2.245172795269417, -2.299164733747734, -2.4272810597615218, -2.990366607893781, -7.0, -2.2186248823129056, -2.541121412738247, -2.523457418892806, -2.3854979437195007, -3.1459848380679163, -2.559031448926597, -7.0, -2.3042301459140004, -2.6181975699477458, -7.0, -3.574956775764507, -2.4936018736013543, -2.976873777627786, -7.0, -1.9375343341579927, -2.2739733552614925, -4.10595276923698, -3.6768764319731373, -3.801472313521471, -3.379124146070392, -2.274933652403, -3.6577727077355213, -3.7592805835202423, -3.1474186591597326, -3.354135890522645, -7.0, -3.6506474416793195, -2.469190620933241, -3.024578950016235, -1.8014564829054331, -2.438937701095528, -3.050821505295759, -2.0148460455784836, -2.7031685051564884, -2.906335041805091, -1.618700389595784, -2.1551535630443066, -7.0, -3.051832155289801, -7.0, -3.198863190485256, -3.02129269021003, -2.9619843621856914, -3.2072752236993582, -3.6755950563867463, -7.0, -7.0, -3.9094490469812664, -2.770545198148703, -3.378851946448881, -2.7043065414442804, -3.6947806360120614, -3.0535905832619945, -2.516150885953567, -3.7424894645817752, -3.6864575104691117, -7.0, -3.0185756834672515, -7.0, -2.971312966338393, -2.582874673593952, -7.0, -7.0, -7.0, -3.305852740224386, -3.3763335866484043, -3.7424108805804925, -3.711132072306842, -3.394568410965853, -7.0, -7.0, -3.404149249209695, -3.6854730197227594, -7.0, -3.203576774977973, -7.0, -3.669967369908504, -3.830793899704099, -3.0486405033272277, -3.6608873599424494, -7.0, -3.5275654607077214, -3.21923513401367, -3.285482294847141, -7.0, -7.0, -7.0, -3.1479235389806064, -7.0, -3.404320467221731, -3.320613576530592, -3.3680078052211746, -2.9328425922848016, -3.414137362184477, -3.3246253644997976, -7.0, -7.0, -7.0, -3.4398850808173016, -3.714212366993632, -7.0, -7.0, -3.0757293997408985, -3.910304168068569, -3.1894903136993675, -7.0, -7.0, -3.9577030415488315, -2.998520882835038, -2.8704282921999926, -2.797959643737196, -3.539452491549461, -7.0, -7.0, -3.8066208304825055, -3.3748399596549756, -2.8330559979961802, -7.0, -3.685024785105714, -3.6954816764901977, -7.0, -7.0, -3.6720978579357175, -2.64407561871382, -7.0, -3.710625015060797, -3.082111871372628, -7.0, -3.2518814545525276, -3.2511513431753545, -3.0860482372238454, -3.1099640296607753, -3.7900739484263046, -7.0, -7.0, -3.6665179805548807, -7.0, -7.0, -7.0, -7.0, -3.2511165453321484, -7.0, -2.6811119638274077, -3.2578077550334497, -3.706888394981618, -7.0, -3.72222246396973, -7.0, -7.0, -2.6526857769225343, -3.131378035763099, -3.863382348440788, -3.668944734457734, -7.0, -7.0, -2.676247950804945, -3.6716355966021297, -3.7011360660925265, -7.0, -7.0, -7.0, -7.0, -7.0, -3.241172786770047, -3.816241299991783, -3.711807229041191, -3.6760531246518715, -7.0, -7.0, -7.0, -7.0, -3.6885088076565213, -3.383815365980431, -7.0, -3.0020700214018694, -7.0, -2.959756672990995, -7.0, -7.0, -3.823474229170301, -7.0, -7.0, -3.3276561037821124, -7.0, -7.0, -3.7710727832211948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.602005701124516, -7.0, -7.0, -7.0, -3.4072208929273966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.403635189790548, -3.533753906434624, -7.0, -7.0, -7.0, -3.324830980134619, -3.341895943969397, -7.0, -7.0, -7.0, -7.0, -7.0, -3.00987563371216, -3.3120362371917773, -7.0, -3.5070458724273257, -3.009081707149539, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2046060299125667, -7.0, -7.0, -7.0, -3.4192947217534604, -2.8397921844453293, -7.0, -7.0, -7.0, -7.0, -7.0, -3.534588111892698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7856263829785224, -7.0, -7.0, -3.2425414282983844, -7.0, -7.0, -3.4000196350651586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6358187213644175, -7.0, -7.0, -7.0, -3.388278863459639, -3.332337449453026, -3.462996612028056, -3.3951515915045425, -7.0, -3.797521439979663, -7.0, -7.0, -7.0, -3.398634324538392, -7.0, -7.0, -7.0, -7.0, -3.1556396337597765, -3.423737249982329, -7.0, -7.0, -3.4483971034577676, -7.0, -3.115893909272309, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.401572845676446, -3.09377178149873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.996803438696495, -7.0, -7.0, -7.0, -7.0, -2.882935427564857, -7.0, -7.0, -3.400710636773231, -2.7456992266025058, -3.0363627019845945, -7.0, -3.269045709657623, -3.869583707713424, -7.0, -7.0, -7.0, -3.9092426495998436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1225435240687545, -7.0, -7.0, -3.4566696294237573, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2450806260854437, -7.0, -3.0909630765957314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.381024781409826, -7.0, -7.0, -3.0977777345392834, -7.0, -2.3551300540393427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0202231262979176, -7.0, -2.9636304457595233, -7.0, -2.4164892115757675, -3.1121020547708906, -3.403635189790548, -2.842156613741657, -7.0, -3.089728533074736, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5970366649776535, -7.0, -3.4987239707479048, -7.0, -7.0, -2.9915273183833317, -7.0, -7.0, -7.0, -7.0, -7.0, -3.220238879934404, -7.0, -2.941180036600083, -2.17801718009172, -7.0, -7.0, -3.5624118329497274, -7.0, -7.0, -7.0, -7.0, -7.0, -2.38431358157012, -7.0, -2.8852198251151067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6330642726914992, -3.4255342204982635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0111473607757975, -3.2648964924204757, -3.8775592589857277, -3.389343311252078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.103803720955957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4757801114070315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.422917980767662, -7.0, -7.0, -7.0, -2.9778378782751416, -7.0, -7.0, -7.0, -7.0, -7.0, -3.85394144588049, -2.960470777534299, -3.7493626513079716, -7.0, -7.0, -7.0, -3.328243652746783, -7.0, -3.208441356438567, -2.965906915495192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.12434117077496, -7.0, -7.0, -7.0, -7.0, -3.402777069610347, -2.9146075677710805, -3.1879435290625273, -7.0, -7.0, -3.5165252041365958, -7.0, -7.0, -3.59955559098598, -3.392345155361204, -7.0, -3.4448251995097476, -3.4038066105474227, -7.0, -7.0, -2.9331074937869817, -7.0, -3.0296542818869807, -3.4186326873540653, -3.525821952156663, -3.038620161949703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4382258076045296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146438135285775, -7.0, -7.0, -3.1980152497483316, -3.9314419784748638, -7.0, -2.753199914199416, -3.2098761935936153, -3.2166935991697545, -7.0, -3.150756439860309, -3.40840957846843, -2.7218106152125467, -2.7400994009248563, -7.0, -7.0, -7.0, -7.0, -3.165095874754218, -7.0, -7.0, -3.401228167498113, -2.7507654498940113, -3.1017470739463664, -7.0, -7.0, -7.0, -4.0389577711393665, -4.463564532213337, -4.318418142209945, -7.0, -3.764400322956388, -7.0, -7.0, -7.0, -4.148949520009529, -7.0, -7.0, -7.0, -3.9782444462250335, -4.340582908247528, -3.95432292689755, -7.0, -7.0, -4.071219018399975, -4.084325995016827, -4.631971096240407, -4.011443562022075, -5.109186931698511, -3.985695859689842, -7.0, -7.0, -7.0, -7.0, -4.483515978390542, -7.0, -4.4221711002794475, -7.0, -3.0489163245115374, -7.0, -7.0, -7.0, -4.290568798984483, -7.0, -4.39084682689535, -7.0, -7.0, -2.8318697742805017, -3.5967729767595324, -3.203071758751761, -3.4081834128693056, -3.469380135849925, -7.0, -7.0, -3.3657686880021926, -2.1429618407415725, -2.32871929409501, -7.0, -2.949200198545658, -2.4287345655395307, -7.0, -3.034685740076159, -7.0, -2.9444826721501687, -7.0, -7.0, -7.0, -7.0, -3.2809808919291505, -3.609589963108257, -4.48000406682523, -2.9339931638312424, -1.8838220767244906, -3.418135498425232, -2.9261708904385917, -3.840482487213442, -4.174965460984311, -3.796851749049887, -3.8344207036815328, -7.0, -7.0, -3.0120283186865047, -7.0, -7.0, -2.7822771281099112, -3.4554539687786283, -3.5209810814192983, -3.214755567839669, -7.0, -2.518801729103482, -3.208609290581607, -3.515741416669365, -3.257073500468536, -7.0, -2.662967585118109, -7.0, -3.4952667443878105, -7.0, -2.7091002815511667, -7.0, -7.0, -7.0, -3.301572524756275, -3.4176377396522297, -3.0560150335589764, -7.0, -7.0, -3.1253004979635812, -7.0, -2.649497120803289, -3.403120521175818, -3.13956426617585, -7.0, -3.5364321758220134, -3.205610309902521, -7.0, -7.0, -7.0, -3.591064607026499, -7.0, -7.0, -7.0, -3.421027775667483, -7.0, -7.0, -7.0, -3.4274861090957858, -7.0, -3.109867691044164, -7.0, -3.398981066658131, -7.0, -3.361453955329276, -4.156776233418996, -7.0, -7.0, -2.4448251995097476, -7.0, -3.121067167467729, -7.0, -3.1065308538223815, -2.68556261115823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388988785124714, -7.0, -3.11277252110537, -3.22219604630172, -7.0, -7.0, -3.1061908972634154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6032990634435107, -3.0973777355179872, -7.0, -7.0, -7.0, -7.0, -4.027104865879351, -1.9538976944296247, -3.8684680990209865, -7.0, -7.0, -3.44544851426605, -7.0, -7.0, -7.0, -2.890909813992527, -3.182414652434554, -3.1707016558160697, -2.618280588410313, -3.5060989599284405, -3.6971421262754594, -7.0, -3.034800284315753, -7.0, -7.0, -7.0, -7.0, -7.0, -4.319439203046049, -7.0, -7.0, -7.0, -4.05715240481542, -7.0, -4.053808059920658, -2.6562409647638097, -7.0, -3.4089180208467798, -7.0, -7.0, -7.0, -2.745855195173729, -3.033959590819456, -7.0, -7.0, -3.1089031276673134, -7.0, -3.311674409676095, -3.1007150865730817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.807196660710947, -7.0, -7.0, -7.0, -7.0, -7.0, -3.426673888021373, -7.0, -2.199295849360945, -3.137274968868117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6531714437973566, -7.0, -7.0, -3.571941635074462, -7.0, -7.0, -7.0, -7.0, -2.837114748515506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6254839394069043, -2.2975079898311006, -3.123815357539862, -2.5634810853944106, -7.0, -7.0, -1.4192204025471138, -3.2214142378423385, -7.0, -7.0, -7.0, -3.0232524596337114, -7.0, -2.54883401242041, -3.31694832926197, -7.0, -3.215108581053093, -3.0329990831515152, -7.0, -7.0, -7.0, -7.0, -7.0, -3.432969290874406, -3.330470142287151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7309436934277356, -7.0, -7.0, -7.0, -3.058227126133445, -7.0, -3.144262773761991, -7.0, -7.0, -3.414137362184477, -2.8109042806687006, -7.0, -7.0, -7.0, -2.975431808509263, -2.6924944075030846, -7.0, -7.0, -3.5524248457040857, -3.12205196263325, -7.0, -3.4119562379304016, -7.0, -3.4708513245261177, -3.540454613671412, -7.0, -7.0, -7.0, -3.035496444963253, -7.0, -7.0, -7.0, -7.0, -3.037924256713626, -7.0, -7.0, -3.485863329597335, -2.797890483058349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4674601095072637, -7.0, -3.4974825373673704, -1.5574902574651688, -7.0, -7.0, -1.9356806163177214, -2.5025788385822736, -3.11143055176598, -7.0, -7.0, -7.0, -3.1089031276673134, -2.5080244315589613, -2.2891771688689815, -7.0, -2.8062769038987865, -7.0, -7.0, -7.0, -3.4818724103106633, -7.0, -7.0, -3.4274861090957858, -7.0, -7.0, -3.1082266563749283, -7.0, -7.0, -7.0, -4.141481129270804, -7.0, -7.0, -2.934834983210739, -3.155336037465062, -1.7294347893793671, -7.0, -3.0523090996473234, -2.0247711295330606, -3.41077723337721, -7.0, -7.0, -3.9097775515524833, -7.0, -3.218010042984363, -3.5399538416563967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3623316518700257, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2493818233440925, -3.0909630765957314, -7.0, -2.531052929286764, -3.4219328132785085, -2.9307962629833004, -7.0, -7.0, -7.0, -3.211031500871904, -7.0, -7.0, -7.0, -7.0, -3.006496603769381, -7.0, -7.0, -7.0, -2.9714304844819157, -7.0, -7.0, -3.50745106090197, -3.4641913706409997, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1336167877718255, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4153072922255676, -7.0, -3.604657972047871, -7.0, -3.678108473882829, -7.0, -3.2113875529368587, -2.8582894438957243, -7.0, -7.0, -3.4614985267830187, -7.0, -7.0, -7.0, -3.447778009294621, -7.0, -7.0, -7.0, -7.0, -3.570659670021534, -7.0, -7.0, -7.0, -2.531478917042255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.446614823664267, -3.2811243094492752, -7.0, -7.0, -7.0, -3.4753805931433615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.532117116248804, -7.0, -2.722633922533812, -2.9857631799909927, -7.0, -7.0, -7.0, -7.0, -7.0, -3.158724253450531, -7.0, -3.625273856727731, -7.0, -7.0, -7.0, -7.0, -1.3660182950222062, -2.6723617865259754, -2.9740509027928774, -2.869349080759093, -7.0, -3.406028944963615, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4369573306694496, -7.0, -7.0, -7.0, -3.428134794028789, -7.0, -3.222282827095675, -7.0, -7.0, -7.0, -3.1995317172630013, -7.0, -7.0, -3.4271614029259654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2434101416537113, -7.0, -2.9138138523837167, -7.0, -3.236367018022369, -2.922595721029815, -7.0, -7.0, -7.0, -1.7392149424344683, -3.480581786829169, -7.0, -7.0, -3.449169732165201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4163075870598827, -3.2742733377584177, -2.229809782952539, -3.604079865575918, -7.0, -7.0, -3.2106906559695236, -7.0, -7.0, -3.161368002234975, -7.0, -3.510813010512496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4316853446860116, -7.0, -3.5390760987927767, -7.0, -3.671913012441587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464534256300944, -7.0, -7.0, -3.834325313744794, -4.75159469981361, -7.0, -7.0, -4.2999102450746784, -4.3768779392470645, -4.34104523285067, -4.432632622254583, -7.0, -7.0, -4.372930404888793, -7.0, -4.632679950216724, -7.0, -4.410426282868454, -7.0, -4.801225290173022, -7.0, -7.0, -4.6485161337405545, -4.484513374292612, -7.0, -4.246638070980783, -7.0, -4.305673745669693, -7.0, -4.239499684031626, -7.0, -7.0, -7.0, -4.39208111979816, -7.0, -3.359949256382866, -2.761301241165817, -3.4513258084895195, -3.873862888966365, -3.5883277412249504, -3.4795753101749884, -3.8317418336456384, -7.0, -2.551614188051973, -3.321184027302314, -7.0, -2.9711211579147765, -3.252610340567373, -2.78686967796165, -7.0, -3.5833121519830775, -7.0, -7.0, -7.0, -4.246843122251319, -7.0, -7.0, -3.3548241031327466, -2.755808015428896, -4.032995569091898, -7.0, -7.0, -7.0, -3.254779622985036, -7.0, -3.7772769564795263, -3.5005109105263372, -7.0, -7.0, -3.835563751669097, -3.6171751426857073, -3.5484303680628813, -7.0, -3.227050718827332, -3.761927838420529, -3.619771386161673, -7.0, -7.0, -3.166358649407166, -3.174585324070688, -3.223625716693796, -3.701750221946291, -7.0, -7.0, -7.0, -3.622697454895568, -7.0, -7.0, -7.0, -7.0, -7.0, -2.905508053677255, -7.0, -2.84248442441157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9218944709291024, -7.0, -4.174127676084932, -3.2149762347220667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.137354111370733, -7.0, -7.0, -7.0, -7.0, -7.0, -4.663503045519445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.99370069482035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5324995860946626, -7.0, -7.0, -7.0, -3.4260230156898763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8341450755684536, -7.0, -7.0, -7.0, -7.0, -4.02995164203684, -7.0, -3.8725641430906514, -7.0, -7.0, -3.456214155357989, -7.0, -7.0, -7.0, -2.895767744755542, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5121505369220305, -3.8845688149183335, -3.84060787900929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.030559245291156, -7.0, -7.0, -7.0, -7.0, -7.0, -3.456821348021599, -7.0, -7.0, -3.409087369447835, -3.4219328132785085, -7.0, -3.7397568869831948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.484157424365381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5413295776666933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.027512692448811, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9638161499751687, -3.1383026981662816, -7.0, -7.0, -2.9512403503243405, -3.0723418215173193, -7.0, -7.0, -7.0, -7.0, -7.0, -2.691289562306325, -7.0, -7.0, -3.1300119496719043, -3.8800872563019415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8830933585756897, -7.0, -7.0, -2.7965743332104296, -4.043676585602717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.965906915495192, -2.834738518903841, -7.0, -7.0, -7.0, -2.8549130223078554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.045674966769105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.03342375548695, -7.0, -7.0, -2.991994404486493, -2.9749719942980692, -7.0, -7.0, -7.0, -7.0, -2.3242824552976926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.076130494543006, -7.0, -7.0, -7.0, -7.0, -2.542514216281654, -7.0, -2.723221045080855, -3.157456768134226, -2.806179973983887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7383958575537897, -7.0, -7.0, -2.7649229846498886, -7.0, -7.0, -3.2363692883742803, -7.0, -2.531052929286764, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9951962915971793, -7.0, -7.0, -7.0, -7.0, -7.0, -4.089975722687729, -7.0, -7.0, -7.0, -2.9434945159061026, -7.0, -7.0, -3.1078880251827985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1870934679310956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0184924534014725, -7.0, -3.8806992892187013, -7.0, -7.0, -3.211645201640165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.937768567049936, -7.0, -3.403120521175818, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.216045881701589, -4.071486177340895, -7.0, -7.0, -7.0, -2.720572720364261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1509098737011216, -2.8102325179950842, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0066757349199578, -7.0, -3.9007766472930405, -7.0, -7.0, -7.0, -7.0, -2.401055725771844, -2.3550682063488506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.044539760392411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4877038631637265, -7.0, -7.0, -7.0, -3.8330727036452936, -2.569958818096594, -7.0, -3.483515978390541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7375832559402493, -7.0, -7.0, -7.0, -7.0, -2.597146487833695, -3.037027879755775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.249504090935526, -3.607431015117042, -7.0, -7.0, -4.549861188471943, -3.1556396337597765, -7.0, -7.0, -7.0, -7.0, -7.0, -3.154423973114647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4413808849165113, -7.0, -7.0, -7.0, -7.0, -4.277655047714709, -2.9916690073799486, -4.434696618924666, -7.0, -3.731427587050948, -4.404577167740624, -3.3558663952923395, -7.0, -3.746244871720198, -7.0, -7.0, -4.504185316870708, -3.7013261633598793, -4.2868829198267875, -7.0, -4.35475171759385, -7.0, -7.0, -7.0, -4.023585085498241, -7.0, -4.4866925351069185, -7.0, -7.0, -4.62921585647718, -7.0, -7.0, -4.008583140271812, -7.0, -4.5854268870614865, -7.0, -7.0, -7.0, -4.246966106558744, -7.0, -7.0, -4.395693247503584, -3.1332651070696262, -7.0, -4.098816717048941, -7.0, -3.7647737169110402, -1.5487493628768414, -3.1112251630263263, -7.0, -3.4684334914047827, -7.0, -7.0, -7.0, -3.5494937132150133, -3.7350397050337207, -7.0, -3.456897187449348, -7.0, -7.0, -2.695231434776617, -7.0, -7.0, -7.0, -7.0, -3.358016473630128, -4.2193108595141835, -7.0, -7.0, -7.0, -4.314499227973151, -7.0, -4.944048160376151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5848963441374497, -3.8673201445219627, -7.0, -7.0, -3.4627294755267726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0519667310983327, -7.0, -3.1908917169221698, -7.0, -3.4412236742426123, -4.006936451364293, -3.1734776434529945, -7.0, -7.0, -7.0, -7.0, -7.0, -2.828015064223977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.504470862494419, -4.4747697096158685, -4.6448716831351105, -3.465500254778325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9995654882259823, -7.0, -3.0170333392987803, -7.0, -7.0, -3.7330366829335797, -7.0, -3.362293937964231, -7.0, -7.0, -7.0, -3.168202746842631, -7.0, -7.0, -7.0, -7.0, -7.0, -2.877563299235066, -7.0, -7.0, -3.702085721435825, -2.9800033715837464, -3.906453567547994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4409090820652177, -7.0, -2.906335041805091, -7.0, -7.0, -7.0, -7.0, -3.3394514413064407, -7.0, -7.0, -3.7515100502700416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3016809492935764, -7.0, -7.0, -3.977700747083, -3.1571544399062814, -7.0, -3.0470800728162564, -3.84397984447816, -7.0, -3.975615597966895, -4.290591042549338, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.463534660185131, -7.0, -7.0, -7.0, -7.0, -3.0051805125037805, -7.0, -7.0, -2.6887163699704657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.700963178159549, -3.258397804095509, -7.0, -7.0, -7.0, -7.0, -2.806179973983887, -7.0, -4.287241711178348, -7.0, -7.0, -7.0, -3.212453961040276, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2969940766702086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6050894618815805, -3.1559430179718366, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5993371329924893, -3.586812269443376, -7.0, -7.0, -4.032549691831266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.257570587678587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.557847927224487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.079904467666721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.727378569451489, -7.0, -7.0, -7.0, -7.0, -3.302114376956201, -7.0, -7.0, -7.0, -3.9171640314290026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.262978146205194, -2.7101173651118162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7244806771885997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.773925686560425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4219328132785085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.126115165579008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8253704710918672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.915610862661467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304275050477128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0791812460476247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9222062774390163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305673745669693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.252832234257769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.473389638266334, -7.0, -4.478758831505713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.269933025967809, -7.0, -7.0, -7.0, -4.049683089088249, -7.0, -3.5009097804074516, -7.0, -7.0, -7.0, -4.138334282071019, -3.699143687394484, -7.0, -7.0, -3.1370374547895126, -7.0, -7.0, -7.0, -7.0, -7.0, -4.35324283143373, -3.7007629061106853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163712841181165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4194600727860704, -7.0, -4.303455260341883, -7.0, -2.2900346113625183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.087722277824171, -3.3581252852766488, -7.0, -7.0, -2.9969929818907057, -3.4064124279747596, -7.0, -7.0, -7.0, -3.8264635490928014, -7.0, -2.9365451573208112, -3.989672247623873, -7.0, -7.0, -3.3302481843706953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.147078307006692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3990440809475486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4372747974101237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8455940931600243, -7.0, -7.0, -7.0, -3.5204311260215415, -7.0, -7.0, -7.0, -7.0, -2.6173314844704563, -7.0, -7.0, -7.0, -3.7486918264884537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.848569762828942, -3.5060989599284405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7846885995014214, -7.0, -3.302330928684399, -7.0, -7.0, -7.0, -3.8175653695597807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8000981801747757, -3.9391696796251776, -7.0, -7.0, -7.0, -7.0, -3.5359899528769274, -7.0, -3.661954588653016, -3.566154548823162, -7.0, -7.0, -7.0, -3.5021538928713607, -7.0, -3.835246539996311, -3.5441921107650325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.027186461836736, -7.0, -2.9307962629833004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.404393825711008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8041394323353503, -7.0, -7.0, -7.0, -3.788168371141168, -3.3754002144995283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.639021399134131, -7.0, -3.832061614590727, -3.6427694415679754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5018121170750933, -3.792181496149679, -7.0, -3.082066934285113, -7.0, -7.0, -7.0, -3.5481129050651687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.897791981939225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7198962835797453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6182050422592695, -7.0, -7.0, -7.0, -3.7854010249923875, -7.0, -7.0, -4.031448861859383, -3.8027737252919755, -3.079741264799503, -7.0, -7.0, -7.0, -3.9999565683801928, -7.0, -7.0, -7.0, -3.5589484459780394, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8048887446223913, -7.0, -7.0, -3.7960884286806684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188243942455559, -3.4924111373136824, -7.0, -3.1594543943545212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1086943298492145, -7.0, -7.0, -7.0, -7.0, -3.070037866607755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7963661549775214, -7.0, -7.0, -7.0, -7.0, -3.471936804594729, -3.6202401898458314, -3.153976644053331, -7.0, -7.0, -2.9035368248903057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7951149856303634, -7.0, -3.8449118739121406, -7.0, -7.0, -7.0, -7.0, -3.4447334600751223, -3.1669161974037845, -3.5425053212702986, -7.0, -7.0, -7.0, -7.0, -3.6440867345657413, -3.286195614804735, -7.0, -3.521556479191024, -2.5942719800021083, -4.106921475168692, -4.0627198336125625, -3.883803338269372, -4.0939292328222185, -3.0337682969424686, -3.7509795462660587, -7.0, -3.411479407308512, -3.5399538416563967, -3.576910381921401, -3.0812490844673115, -3.0682444670336, -7.0, -3.605024765730024, -3.9826781933834843, -3.9300061034825893, -7.0, -3.496345278086235, -3.875736307687334, -4.041027329343209, -4.062506775208683, -4.018970808600747, -4.08188713942355, -4.063126860458549, -3.932042300059813, -3.3707597427257125, -3.3677715207203325, -3.5737995822157407, -7.0, -3.731659261815723, -3.812462124192689, -4.052693941924968, -3.8165064370463573, -3.756154136574281, -7.0, -2.956307194643153, -4.076385543954533, -7.0, -7.0, -3.448087666692341, -3.3383369465610726, -7.0, -3.5719804234888946, -7.0, -7.0, -7.0, -3.627017461878423, -7.0, -7.0, -3.8520528086978505, -3.2810247868116487, -3.17583819826466, -7.0, -7.0, -7.0, -4.067517201903676, -3.2439883200147483, -3.367849580426129, -3.994361151908001, -4.237267189503993, -7.0, -7.0, -3.9021117234480043, -4.092668021001432, -7.0, -4.0124153747624325, -3.969276095488932, -7.0, -3.629817196018516, -7.0, -3.433223740977953, -3.849644590644391, -3.837967018368655, -4.2116366158122185, -7.0, -7.0, -7.0, -3.9064158583202704, -7.0, -7.0, -7.0, -7.0, -4.247334850657456, -7.0, -7.0, -7.0, -7.0, -7.0, -4.194042327886423, -7.0, -7.0, -7.0, -7.0, -7.0, -4.207131483023054, -7.0, -7.0, -7.0, -7.0, -7.0, -3.933284772348695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4022957806553165, -7.0, -7.0, -2.990733398972723, -7.0, -4.086324231307385, -7.0, -7.0, -7.0, -3.8590782247469693, -7.0, -7.0, -7.0, -3.928037206406883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.959566046637928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.506843136339351, -3.4483455459718755, -7.0, -7.0, -7.0, -7.0, -3.6766021695820186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.748226801568246, -7.0, -7.0, -7.0, -7.0, -7.0, -4.38868721020124, -7.0, -7.0, -7.0, -4.421965688225113, -7.0, -7.0, -3.92069713446992, -3.5880101174205477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9413623357117613, -7.0, -7.0, -7.0, -4.301420684913891, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3058885302843097, -7.0, -7.0, -3.9180827846421873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2304489213782737, -4.658135463071869, -7.0, -7.0, -7.0, -7.0, -3.6266482684740105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.032163854463103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9432471251378618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6483600109809315, -7.0, -4.517815875902376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.507180977260241, -7.0, -7.0, -7.0, -7.0, -4.735981931751734, -7.0, -2.9410142437055695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7709256146389993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727679493568708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7234556720351857, -7.0, -7.0, -7.0, -2.91539983521227, -2.811304977239847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1099158630237933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7558748556724915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.710625015060797, -7.0, -7.0, -7.0, -4.606004956819436, -7.0, -7.0, -7.0, -7.0, -7.0, -2.625312450961674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9474337218870508, -7.0, -5.432919608590166, -7.0, -7.0, -4.242665636645263, -7.0, -7.0, -7.0, -1.6812412373755874, -2.428674625648206, -3.4149733479708178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0115704435972783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.101131616599028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.579772167664273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.570204244943991, -4.301225384221708, -3.424718337331567, -7.0, -7.0, -7.0, -4.240661551299707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.67833624673218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.302731264944306, -7.0, -7.0, -7.0, -7.0, -7.0, -3.589055531052344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.467460109507264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.356752262147557, -7.0, -7.0, -7.0, -7.0, -3.3218054838575393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5760878417849495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.555799554003604, -7.0, -7.0, -7.0, -1.863322860120456, -7.0, -2.100370545117563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.041392685158225, -7.0, -2.0043213737826426, -7.0, -7.0, -7.0, -7.0, -2.1931245983544616, -7.0, -7.0, -4.024321442141565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.215558257141162, -1.8920946026904806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.0314084642516241, -1.3679767852945943, -2.6138418218760693, -7.0, -4.056256735850139, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.093981703914113, -7.0, -7.0, -7.0, -4.434656712055763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.258876629372131, -7.0, -7.0, -7.0, -7.0, -3.773022142436208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1920095926536702, -7.0, -7.0, -7.0, -7.0, -3.6694656497657867, -7.0, -7.0, -7.0, -7.0, -2.7944880466591697, -2.9661417327390325, -7.0, -2.354108439147401, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.679836558918098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1489109931093564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0043213737826426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9708116108725178, -7.0, -2.575187844927661, -7.0, -7.0, -7.0, -7.0, -1.662757831681574, -7.0, -7.0, -7.0, -7.0, -7.0, -2.296665190261531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.4328635088568635, -7.0, -7.0, -4.543285609880379, -7.0, -7.0, -7.0, -7.0, -7.0, -3.107718610520263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.04688519083771, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.002166061756508, -7.0, -7.0, -3.120491670672996, -7.0, -7.0, -7.0, -7.0, -3.7721749608246142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2460059040760294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4424797690644486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.478645844479148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4072208929273966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5820633629117085, -7.0, -7.0, -7.0, -7.0, -3.6610550848533787, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6144753660903954, -3.6174197467371765, -7.0, -3.0791812460476247, -3.310722009900572, -7.0, -2.722633922533812, -7.0, -2.4771212547196626, -2.741939077729199, -7.0, -3.959863863555982, -7.0, -7.0, -7.0, -7.0, -2.4002500911501117, -7.0, -2.486430478854434, -7.0, -2.665580991017953, -7.0, -2.8492608615268398, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.929418925714293, -2.5485941291816783, -2.705007959333336, -7.0, -3.171433900943008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.834500179293778, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6473829701146196, -7.0, -7.0, -3.92451188152325, -2.6646419755561257, -1.9330532103693867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3242824552976926, -7.0, -2.4207806195485655, -2.791690649020118, -2.048108713045591, -7.0, -3.160089935812264, -2.9003671286564705, -7.0, -7.0, -7.0, -7.0, -2.385606273598312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5214286788851048, -7.0, -7.0, -7.0, -7.0, -2.683947130751512, -2.0773679052841567, -2.660865478003869, -0.2759571039631571, -7.0, -4.070665753453728, -7.0, -7.0, -7.0, -2.41161970596323, -7.0, -7.0, -2.549738731264899, -3.3287192940950106, -7.0, -7.0, -7.0, -4.437710935603617, -7.0, -2.785329835010767, -2.233313461142046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7011360660925265, -7.0, -7.0, -2.9951962915971793, -7.0, -7.0, -7.0, -2.3560258571931225, -7.0, -7.0, -2.79309160017658, -7.0, -7.0, -7.0, -3.3061747446331835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8744818176994666, -7.0, -7.0, -2.7611758131557314, -7.0, -2.8720267099544015, -2.673020907128896, -7.0, -7.0, -2.2270292621201366, -7.0, -7.0, -7.0, -2.1358138977625867, -7.0, -7.0, -7.0, -7.0, -2.0410924859104984, -7.0, -7.0, -2.2052043639481447, -2.4693310102934105, -2.5241796783007557, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7299742856995555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0265332645232967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8613352388849425, -7.0, -7.0, -7.0, -2.7234556720351857, -7.0, -7.0, -2.6613393400060397, -7.0, -3.244153372551425, -4.451282791695256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.824125833916549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9352192721258945, -3.696924008405422, -7.0, -7.0, -7.0, -7.0, -2.2355284469075487, -1.8717396832852677, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6799827766807411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8627275283179747, -4.500881123850455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.926342446625655, -7.0, -7.0, -2.665580991017953, -7.0, -2.05307844348342, -1.7928584219256614, -2.0969100130080562, -7.0, -2.8135809885681917, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6864873087113894, -2.727947709544797, -2.5774917998372255, -1.5378190950732742, -4.132579847659737, -2.7752462597402365, -7.0, -3.4727564493172123, -7.0, -7.0, -7.0, -7.0, -3.188084373714938, -7.0, -3.15259407792747, -7.0, -7.0, -7.0, -4.253808605250558, -2.401745082237063, -2.665580991017953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.416640507338281, -7.0, -3.1336985461157765, -4.9563509495317035, -7.0, -2.363298523016824, -7.0, -7.0, -7.0, -2.912753303671323, -7.0, -2.5850845541000504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5111403420090934, -2.7032913781186614, -2.132899769944483, -2.2321487062561682, -2.334453751150931, -7.0, -7.0, -4.620614868774087, -4.7493033508713305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3926442017384275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.972063916008022, -7.0, -3.795995813767079, -2.8022604758937684, -1.8729433234927009, -7.0, -4.060471192797679, -7.0, -3.341558167136101, -7.0, -3.2688119037397803, -7.0, -4.147150525210071, -7.0, -7.0, -7.0, -3.2182728535714475, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9960736544852753, -3.5828039875901907, -7.0, -7.0, -7.0, -7.0, -4.312928045193233, -7.0, -7.0, -3.0257153839013404, -7.0, -7.0, -7.0, -4.0147304950017535, -4.281896550246061, -7.0, -3.3680078052211746, -2.7212215815105543, -3.2604887781968306, -2.616850455189505, -2.82020145948564, -3.6073477767684134, -7.0, -3.1020905255118367, -7.0, -7.0, -7.0, -3.325207689482919, -3.720242018287057, -2.815577748324267, -7.0, -7.0, -7.0, -7.0, -3.301160264469208, -7.0, -7.0, -7.0, -3.4171394097273255, -3.301203678722446, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1534388209846105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8208579894397, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2449892250514107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3332456989619628, -7.0, -7.0, -2.7641761323903307, -3.121887985103681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.905918148971727, -2.9309490311675233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3025473724874854, -7.0, -7.0, -3.022943609686901, -3.0136796972911926, -2.978180516937414, -7.0, -7.0, -7.0, -2.765668554759014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318084214003265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.68103007067304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9845273133437926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7649229846498886, -7.0, -3.3935752032695876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7763833355374703, -7.0, -7.0, -7.0, -3.7983052820219765, -2.254534650373201, -7.0, -7.0, -7.0, -7.0, -7.0, -3.10452978752546, -7.0, -7.0, -2.7197454925295768, -3.1996824306402645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6302696332736275, -7.0, -3.381656482585787, -7.0, -7.0, -7.0, -7.0, -3.4102709642521845, -7.0, -7.0, -3.386320573894046, -4.077803798076088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.262094964674063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.524266268766979, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.273417994771454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3707597427257125, -3.4396484295634737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4369573306694496, -7.0, -7.0, -3.2645817292380777, -3.2142844367533643, -7.0, -7.0, -7.0, -3.975768696456831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.454501860531497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.381024781409826, -3.211031500871904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3710678622717363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4899584794248346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.556122290708796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.890867938811441, -7.0, -3.3710678622717363, -7.0, -7.0, -2.6804688266371786, -7.0, -3.448087666692341, -7.0, -3.45408227073109, -3.1705550585212086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.336059277866349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.627263416568221, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.458788881710845, -7.0, -3.0382226383687185, -4.378067663160357, -7.0, -7.0, -7.0, -2.9787889856630807, -7.0, -7.0, -2.639154332860882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7126497016272113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.66661156841903, -2.424881636631067, -7.0, -7.0, -7.0, -7.0, -7.0, -3.373095987078727, -7.0, -3.924770174906564, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5020172148271476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7849126306122294, -7.0, -7.0, -3.4202308796246506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7075599572840225, -7.0, -7.0, -7.0, -7.0, -3.229681842317676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7467898321526123, -7.0, -3.905016084650832, -7.0, -7.0, -3.7262147396149374, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9116901587538613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8622606143926705, -4.287032452247534, -7.0, -7.0, -2.6614370567346723, -7.0, -7.0, -3.656146134740865, -3.796250457270067, -7.0, -3.811507979945327, -4.122412495411281, -3.157667357356373, -3.1635588985580028, -3.254048322829027, -4.325659309801641, -2.919601023784111, -3.4964591381210437, -3.6050175766737853, -3.728160944936087, -3.5317343092765503, -2.6856094356904237, -3.9831299247347003, -4.101327694887568, -3.3011230487976233, -3.5178026940930205, -3.744048379071207, -3.637432544117484, -7.0, -3.4671968807807247, -4.275886960301226, -2.6951464433728933, -3.4431959097719598, -3.0050542751160636, -7.0, -3.288897276322566, -3.4292030104137097, -3.787672964687493, -3.522851601026952, -3.4520932490177314, -7.0, -4.295292143016351, -3.6494711629423424, -3.1828709639889086, -7.0, -7.0, -7.0, -3.6151431060686856, -7.0, -7.0, -3.0642707529740063, -3.726618553914196, -3.2573785441270937, -7.0, -3.399846712712922, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.785498892166861, -3.731519696167285, -7.0, -3.6131015169669127, -7.0, -3.5547717329908126, -7.0, -4.475748647544665, -2.946943270697825, -4.1336985461157765, -7.0, -7.0, -7.0, -4.3241795297179, -7.0, -3.343867921696387, -7.0, -7.0, -3.6871721045948, -7.0, -3.627847001305857, -3.3330440298234874, -7.0, -4.654927001082143, -7.0, -2.9130717403092508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3679767852945943, -3.1231980750319988, -7.0, -7.0, -7.0, -7.0, -3.600791448229794, -7.0, -7.0, -7.0, -7.0, -7.0, -3.649879819144556, -7.0, -7.0, -7.0, -3.5883837683787276, -7.0, -7.0, -7.0, -3.1631613749770184, -3.717504074764202, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1741567592784814, -7.0, -7.0, -4.500318823746387, -3.3397069170049827, -3.3778903218424934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8582965245338854, -7.0, -3.31270614559789, -7.0, -7.0, -7.0, -7.0, -4.0731866097643925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9894498176666917, -7.0, -3.7272052047543145, -7.0, -7.0, -7.0, -7.0, -3.5474875414068956, -7.0, -3.8651039746411278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3135860326080175, -7.0, -7.0, -7.0, -7.0, -3.6921416093667836, -7.0, -3.8773137433122384, -3.83257277484618, -7.0, -7.0, -7.0, -7.0, -3.7160659777452225, -7.0, -7.0, -3.6062738531699883, -2.8373971106488654, -7.0, -4.05161552300499, -4.0279812200433875, -3.90080393481037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.404063614883892, -7.0, -7.0, -7.0, -3.514441490246763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024916464556482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.188103149551257, -7.0, -7.0, -7.0, -3.3738311450738303, -3.6977522741677546, -7.0, -3.0965624383741357, -7.0, -7.0, -7.0, -2.8561244442423, -3.6578204560156973, -7.0, -7.0, -2.3462839237339175, -7.0, -2.9694159123539814, -7.0, -7.0, -2.678518379040114, -3.0128372247051725, -3.452553063228925, -2.9845273133437926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203091193315651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9647309210536292, -7.0, -3.3234583668494677, -3.059108817913594, -7.0, -2.977266212427293, -2.797959643737196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.151905874537198, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6334684555795866, -7.0, -3.140193678578631, -3.934826573088993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5616975326539935, -7.0, -2.776701183988411, -7.0, -3.0497605517624757, -7.0, -2.957607287060095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.449169732165201, -7.0, -7.0, -7.0, -3.131297796597623, -7.0, -7.0, -7.0, -2.6459132750338443, -2.3560258571931225, -7.0, -7.0, -2.7770641547424293, -3.039017321997412, -2.8801344764553045, -7.0, -7.0, -7.0, -7.0, -2.9175055095525466, -7.0, -7.0, -7.0, -7.0, -7.0, -3.028571252692538, -3.5956143061554546, -7.0, -2.430290106054924, -2.9506082247842307, -3.0874264570362855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.733277533932582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.79309160017658, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8673288131610093, -7.0, -7.0, -2.972665592266111, -7.0, -7.0, -7.0, -7.0, -7.0, -3.061829307294699, -7.0, -2.628729419665481, -7.0, -7.0, -2.893818027711187, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9647309210536292, -7.0, -3.068556895072363, -7.0, -3.8950355974523228, -7.0, -7.0, -3.074121305906298, -7.0, -7.0, -7.0, -3.111262513659065, -7.0, -7.0, -3.0507663112330423, -7.0, -7.0, -2.9912260756924947, -7.0, -3.3098430047160705, -7.0, -2.9355072658247128, -7.0, -3.950364854376123, -7.0, -2.967079734144497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6896048008603892, -3.1151665612324684, -4.306382132150198, -2.924795995797912, -7.0, -7.0, -3.1166077439882485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0081741840064264, -3.4130062226831868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188365926063148, -3.3418300569205104, -7.0, -7.0, -7.0, -3.4129642719966626, -7.0, -3.043440876244474, -7.0, -3.904242052299247, -2.9474337218870508, -7.0, -7.0, -2.5984257066728684, -7.0, -7.0, -2.5407464642438433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7641761323903307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2210228052048415, -2.564961804462294, -7.0, -7.0, -3.1985302053792193, -7.0, -7.0, -3.2000292665537704, -7.0, -7.0, -2.591435640352701, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0051805125037805, -3.9241551841945124, -2.4427409988358755, -7.0, -7.0, -7.0, -7.0, -2.080495299945456, -7.0, -7.0, -2.752432609261474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7752462597402365, -2.967547976218862, -3.6817385815870307, -7.0, -4.229956868102761, -7.0, -2.7769431981946755, -3.4065280151520345, -2.2684739617082585, -7.0, -3.0870712059065353, -7.0, -3.1936810295412816, -2.7459851262089248, -2.4450850227193537, -7.0, -7.0, -7.0, -2.417969642214737, -7.0, -3.009450895798694, -7.0, -3.250420002308894, -7.0, -2.8767949762007006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9317290081923666, -3.323101304852948, -7.0, -7.0, -4.281226596668253, -7.0, -7.0, -4.404816618075401, -7.0, -4.399691023705375, -7.0, -7.0, -7.0, -7.0, -4.802677964770796, -7.0, -4.011316643366872, -7.0, -7.0, -7.0, -4.4599199557469165, -7.0, -4.107676246526482, -7.0, -4.588294121462958, -4.252391803181244, -7.0, -7.0, -4.253192569878443, -7.0, -7.0, -7.0, -3.990383258906234, -2.4055658794489867, -3.733678655677088, -3.618131808061986, -2.782114147479071, -2.4245549766067134, -4.075473964588946, -2.6020599913279625, -2.9819287487799087, -2.745855195173729, -2.309049171376836, -3.138021851349023, -1.8908315357418142, -2.976044137806195, -7.0, -3.776991584856405, -7.0, -7.0, -7.0, -3.9023293058583186, -7.0, -7.0, -3.1103464971511974, -3.463987950842169, -5.174341876619092, -2.987219229908005, -3.1051694279993316, -3.0038911662369103, -3.538814522875754, -7.0, -4.468165105160079, -7.0, -3.7799570512469063, -7.0, -3.7133225049870275, -7.0, -4.290969008948517, -3.3344537511509307, -2.70372115992702, -7.0, -3.397418542351348, -3.52022143588196, -3.0273496077747564, -3.1641190727500446, -3.570741362455255, -7.0, -2.957557406567787, -7.0, -2.500716623555479, -3.1885535262742306, -3.7366354976868212, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7165458727270932, -3.0025979807199086, -3.256958152560932, -7.0, -3.4795753101749884, -3.0169498130975607, -7.0, -7.0, -7.0, -3.824386202318774, -7.0, -4.0325683991086905, -2.9033613362553186, -7.0, -7.0, -3.792461731346951, -3.359835482339888, -7.0, -7.0, -3.133858125203335, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -3.8702282790117946, -7.0, -7.0, -7.0, -3.9483249241899148, -4.144418518602069, -7.0, -3.1699681739968923, -7.0, -7.0, -2.2325726150081295, -7.0, -7.0, -3.2113875529368587, -7.0, -2.810568529216413, -7.0, -7.0, -3.753046561626529, -7.0, -3.407900540142635, -7.0, -7.0, -7.0, -7.0, -4.34478512263266, -7.0, -7.0, -7.0, -7.0, -3.371437317404101, -7.0, -7.0, -7.0, -3.08278537031645, -3.5919832327066707, -7.0, -7.0, -7.0, -7.0, -3.9558800862253753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1878026387184195, -7.0, -7.0, -7.0, -7.0, -7.0, -3.196452541703389, -3.7771367125041726, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9834909718151668, -7.0, -7.0, -7.0, -3.5480821705205963, -7.0, -3.5098742850047193, -3.8190171986890595, -3.204052118841129, -7.0, -7.0, -2.973589623427257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.324840768927558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504470862494419, -3.4423229557455746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0461047872460387, -3.4212747912103465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.622214022966295, -3.9918460536448968, -7.0, -7.0, -2.8488047010518036, -7.0, -7.0, -7.0, -7.0, -3.0588054866759067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9036325160842376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023705042622037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.82020145948564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727272789836275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.643847310299714, -7.0, -5.432839463895481, -7.0, -7.0, -4.543099108002921, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357105467407888, -2.9439888750737717, -2.0170333392987803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.896911840826025, -7.0, -7.0, -7.0, -4.4001982491921465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557843920244874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334895863011881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3965480379871322, -2.2041199826559246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0258381642297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7393085761565885, -7.0, -7.0, -7.0, -1.6658935455344326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216785880238395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3142886609474975, -7.0, -7.0, -7.0, -2.4771212547196626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.50745106090197, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9138138523837167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0977777345392834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2935835134961167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0286607048897425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6698094834789914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.110589710299249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9826329943948497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1398790864012365, -7.0, -7.0, -2.461898521729004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.482873583608754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.796709595569177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.919078092376074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.947531745695593, -7.0, -5.131889612926185, -7.0, -2.718501688867274, -4.543745305703089, -7.0, -7.0, -7.0, -7.0, -7.0, -3.113943352306837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3554515201265174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.301268791966063, -7.0, -7.0, -7.0, -7.0, -4.5417414500957305, -7.0, -7.0, -7.0, -3.8351830698490437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351989455435632, -4.502244987676499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153540486438023, -7.0, -7.0, -4.302752894232717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9304395947667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.645422269349092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9444826721501685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080860884962276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.307496037913213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.181004666040053, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2479732663618064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.223628600158525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.697839368218363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7247672456463103, -7.0, -7.0, -7.0, -7.0, -7.0, -2.432969290874406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0155502605146522, -7.0, -7.0, -2.1931245983544616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7816357178169127, -7.0, -2.9425041061680806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.07213956323974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727703883685354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368937374244523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1109262422664203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8920946026904806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5619682391901555, -7.0, -7.0, -2.524396122103842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1565491513317814, -7.0, -7.0, -7.0, -7.0, -7.0, -3.74787770581979, -7.0, -7.0, -2.325310371711061, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.965201701025912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1015179552484096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1318912156692305, -7.0, -7.0, -4.242702892223277, -1.9628426812012423, -7.0, -7.0, -7.0, -7.0, -7.0, -2.118689787331298, -7.0, -1.9344984512435677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.355643050220869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.301290494211371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.352008765565775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.635785235533652, -7.0, -7.0, -7.0, -7.0, -4.001690454232153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.734799829588847, -2.499687082618404, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639974298454951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779827284132608, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.58849580100721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.752432609261474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.959004679486049, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.771954748963949, -2.470993581501898, -3.621003083574573, -7.0, -3.769561935848059, -2.9380469252711707, -3.2007684447831717, -3.772101569277012, -3.783760695743924, -7.0, -2.711526041280055, -7.0, -2.8126683008872484, -2.6688093294971598, -7.0, -3.2518467151626838, -2.149791189004268, -7.0, -3.596120392892336, -7.0, -3.7749911461195644, -7.0, -2.796902832645105, -2.365983220970808, -3.472317546316842, -3.7694511794020378, -7.0, -2.9616401028869763, -3.3032320670786417, -7.0, -3.231032454528749, -4.069668096911595, -3.6423655808449733, -7.0, -2.788430262532993, -3.467830005178976, -3.778766065508379, -4.079253622430078, -7.0, -7.0, -7.0, -7.0, -3.7719180361289046, -3.4704839943156855, -7.0, -2.0315147656796184, -3.117786691388597, -3.7729081949712717, -2.1617121341720806, -7.0, -7.0, -7.0, -7.0, -3.784759894664005, -3.6265456590271294, -3.772725002459211, -7.0, -7.0, -2.5746589460548055, -4.069963937850763, -4.069742076041645, -4.072323438293041, -7.0, -2.271648027535343, -3.3872118003137306, -2.359984200595567, -3.4872798164430687, -2.3848440940143085, -4.070960915800934, -4.076458387712152, -4.069631102620343, -4.071992407124176, -7.0, -7.0, -7.0, -7.0, -2.5915313394539066, -3.2989258164621176, -2.072417666398705, -3.775610448006361, -3.605771778568517, -3.7876375568784235, -2.140778728145066, -4.083072412284536, -7.0, -7.0, -7.0, -2.95502131363761, -7.0, -3.373353433957022, -3.4689746837261892, -7.0, -3.057539321108782, -4.07213956323974, -7.0, -7.0, -2.7861833455676335, -7.0, -7.0, -3.7746264379339527, -3.770631127777807, -2.3956294534922296, -7.0, -4.070813359702716, -3.383815365980431, -3.4770126675252215, -3.000679233840276, -7.0, -4.076786033508079, -7.0, -3.178869079308535, -3.496895069110507, -7.0, -3.130538438197742, -2.9040841065189205, -4.072029200827922, -3.4802585307800777, -3.2998340406458584, -3.778743066712205, -2.092825126714171, -3.252610340567373, -2.9266167956441933, -3.0418231769977724, -7.0, -7.0, -4.077476919504343, -7.0, -7.0, -3.413697824610152, -7.0, -7.0, -7.0, -7.0, -7.0, -2.813981075636472, -2.3551300540393427, -3.006496603769381, -4.089975722687729, -7.0, -3.404393825711008, -3.7709256146389993, -7.0, -3.3061747446331835, -3.3710678622717363, -2.8673288131610093, -7.0, -3.2935835134961167, -4.07213956323974, -7.0, -7.0, -4.07018568637838, -3.596377143997599, -3.381440002819618, -7.0, -7.0, -3.3165294629875106, -3.23872695603908, -2.824920914325174, -3.600246650564494, -2.7835820252012704, -3.472902651803664, -3.1694539986517043, -1.892923507255603, -4.071292733834574, -4.070407321740119, -7.0, -3.595459477929287, -4.0712558776812955, -3.7719180361289046, -3.2922191399833594, -2.5886670891458565, -7.0, -3.369864957856229, -3.59280571403281, -3.6191281284699492, -1.7325864900722077, -7.0, -4.085004999076652, -3.6063455307542247, -3.6091317690974987, -3.6133484255114983, -3.6238692683503024, -3.4780973196422216, -3.47410694801697, -3.1772117398019684, -3.3758829915452284, -3.596450473585262, -3.4130313911501697, -7.0, -7.0, -7.0, -2.7394624604624846, -7.0, -3.135959092124557, -7.0, -3.137775961313472, -7.0, -3.595459477929287, -7.0, -7.0, -4.078891619840223, -7.0, -7.0, -7.0, -4.133379211923518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7723217067229196, -4.071219018399975, -3.7710727832211948, -3.086857915659847, -3.3142535565153644, -3.325515663363148, -3.41253457748711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.078456818053293, -7.0, -3.374124860179727, -7.0, -7.0, -7.0, -3.7695250201710504, -7.0, -7.0, -3.5993007126409307, -2.8213087787513165, -7.0, -7.0, -7.0, -4.071476967698918, -4.073094864515745, -3.2280335249267362, -7.0, -3.3779979478618998, -3.8004421213362565, -3.37283838749711, -3.3675733244970245, -2.583798674353646, -7.0, -7.0, -7.0, -4.130237247885229, -3.385606273598312, -3.1740598077250253, -3.381440002819618, -3.2906213728473426, -7.0, -7.0, -4.0718083918331285, -3.240965040063429, -3.617245043616472, -3.7969557343208025, -2.834085909892286, -3.4126285205443754, -3.769488101355888, -4.0709977969934235, -7.0, -3.597768293321006, -2.9741218253833677, -3.4795393214049737, -7.0, -2.9630609744865137, -4.077186154085896, -4.071992407124176, -7.0, -4.075875295259833, -3.4705942260050717, -2.169952718952251, -3.189279712637177, -3.7806412916269427, -3.598097124391873, -2.9158519113966404, -3.29735921414077, -2.605973420133687, -3.0056598802090075, -7.0, -7.0, -4.082210716601243, -3.7719914586957577, -2.962064769456804, -3.1801975823353392, -3.3264724100516823, -3.6019152023678274, -3.4951626011919386, -7.0, -3.025004034678297, -2.7179477417489277, -7.0, -7.0, -4.0701117827822, -3.406335758457056, -2.623855025918205, -7.0, -7.0, -3.7795964912578244, -7.0, -4.0697790608815145, -7.0, -2.930257508276295, -7.0, -7.0, -2.3386375628096054, -7.0, -2.766710207262259, -7.0, -3.104187106078922, -7.0, -2.158639730841915, -2.590952299169162, -2.7978558985883404, -7.0, -3.7827950003893553, -3.7729814503449637, -2.1928073248846807, -2.2986378584396854, -3.32156391196738, -7.0, -7.0, -7.0, -2.269800223528476, -4.071882007306125, -3.77557404291963, -3.771440486639912, -2.8718818587232695, -4.072948031792886, -2.518043669683693, -7.0, -7.0, -4.423712694379625, -4.1300055108623965, -7.0, -7.0, -3.504584122237375, -7.0, -3.9177680024477564, -3.6084428274303924, -3.7032649161102507, -7.0, -7.0, -3.9922883537970923, -3.8004726807059277, -3.5739501918571133, -4.082833223821198, -4.484627216681783, -4.079253622430078, -3.429005904106777, -4.030194785356751, -4.2401080739408314, -3.592354437456401, -3.5264748156360772, -4.278181784567518, -3.906017616655766, -4.067610132912504, -3.935053589231065, -3.688783739005256, -3.7540423867854362, -7.0, -3.7520484478194387, -4.450726262021876, -3.28060463314932, -3.096849585224196, -3.220059030922857, -3.7723950610820003, -3.0117667348918755, -3.658755264064613, -4.052950314117716, -4.556724526395461, -3.470410490975931, -2.6548638255819332, -2.812333910950622, -2.5203525040833177, -2.413789632942366, -3.610731120443506, -3.1533765391396362, -2.8922685640314416, -2.2734501064563295, -2.282380559390902, -2.6553371814315407, -2.594186470553561, -2.4716023034943726, -2.0571977987215453, -7.0, -2.9256987611930096, -3.413567971273289, -7.0, -3.4665117384861452, -2.884309756948811, -7.0, -3.389059713506695, -2.115184637844681, -2.578496459283649, -3.2906968195221182, -7.0, -2.285752937156083, -3.1213774364894507, -2.194216614222509, -7.0, -3.464200143469367, -2.810596518420296, -2.4033684007191196, -7.0, -3.6039829097645595, -3.255995726722402, -2.95118032364108, -4.116242357963335, -2.8600656362378873, -7.0, -2.739673319684656, -3.0731070983354316, -3.7771367125041726, -2.1944591769417783, -2.2783344944909594, -4.099611590392529, -3.082753465050354, -4.105918740286373, -3.429719989249435, -2.6097067170825574, -3.6396657481551746, -3.6007188480153314, -3.5970366649776535, -7.0, -7.0, -3.8913887648758014, -3.328501922685259, -3.5988269699243727, -3.5020855592260456, -7.0, -4.143826390839561, -2.822474560866872, -4.1022621494942735, -4.078674273360466, -4.072948031792886, -3.290455091857383, -7.0, -2.8175169990655613, -3.3188282441831407, -7.0, -7.0, -3.932169245920792, -3.643288139836406, -7.0, -7.0, -4.0888445627270045, -4.163578765188774, -7.0, -4.101953177477199, -7.0, -7.0, -7.0, -3.5639080503462868, -7.0, -7.0, -4.612805041299721, -3.1188942981663943, -3.7099936168613983, -7.0, -4.142045148157744, -3.383599959933904, -7.0, -3.7760470711817797, -7.0, -3.596707029681446, -3.850125259486936, -7.0, -7.0, -4.19041574703329, -4.0717715794167555, -3.742148831165734, -3.4883391579275007, -3.5270173329247743, -7.0, -7.0, -7.0, -7.0, -3.916756533209448, -7.0, -7.0, -4.0754009555138975, -7.0, -4.2545239086857, -7.0, -7.0, -7.0, -4.083466785473887, -3.0671696446545726, -3.482873583608754, -7.0, -7.0, -7.0, -4.299790489253733, -3.4722077512253953, -3.3769417571467586, -4.091807597001675, -4.078094150406411, -3.7812525942484565, -4.124504224834283, -7.0, -4.07291131585408, -2.8892456608929797, -7.0, -7.0, -3.748265572668741, -7.0, -4.154667377622576, -4.096249383189612, -3.7505341072033804, -4.208360724978379, -3.646436403284287, -7.0, -7.0, -7.0, -3.4000052274986206, -7.0, -7.0, -4.126942717944228, -4.205637359479429, -4.109443547064349, -3.712060142461075, -2.8730652846523115, -3.9373172477624943, -7.0, -7.0, -7.0, -7.0, -3.383240712265224, -4.098539897992862, -7.0, -7.0, -4.0744873049856905, -7.0, -3.066969349796947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.149342299291265, -7.0, -4.089127629044278, -3.7733841341771543, -7.0, -7.0, -7.0, -7.0, -7.0, -4.078094150406411, -4.079940597152362, -2.627392810478352, -3.868938178332911, -7.0, -7.0, -7.0, -3.8384082784941866, -7.0, -7.0, -2.892708063453812, -7.0, -7.0, -3.4157410362223435, -4.159206133646325, -7.0, -7.0, -7.0, -3.603865792191225, -7.0, -4.179810222878796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.380211241711606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727126283206558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1921677259471775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4191293077419758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576001384625881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.711975854351756, -7.0, -7.0, -7.0, -7.0, -2.251638220448212, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333850145102545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.164352855784437, -3.0354297381845483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.82020145948564, -7.0, -7.0, -7.0, -4.517156294823795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.285557309007774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6652056284346006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.07018568637838, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426226518098315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1878026387184195, -7.0, -7.0, -7.0, -7.0, -3.8912493191278426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2971036501492565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.674952948048565, -2.214843848047698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.009450895798694, -2.459392487759231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6020599913279623, -7.0, -2.7331972651065692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432839463895481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0439514182632768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.293657141449485, -3.163757523981956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.350984143686028, -7.0, -7.0, -7.0, -7.0, -2.0086001717619175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603241834260485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.437750562820388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080673376651764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5825178836040625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278227557594742, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.650793039651931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274781122605907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.17856834575881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3357386470050505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2239283760094772, -7.0, -7.0, -7.0, -2.4183012913197457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8191050325414984, -7.0, -7.0, -7.0, -3.916559219301114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.916256497088509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.021602716028242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.736332747948591, -7.0, -2.962369335670021, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.972665592266111, -7.0, -7.0, -7.0, -3.596377143997599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7278908290871864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.432969290874406, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9143960521297863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.681874122128647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.961421094066448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.620757023389678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.949585151326652, -7.0, -4.529877701316842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.065093989357153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.172275919805895, -7.0, -7.0, -7.0, -7.0, -7.0, -4.94179954162426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604258461911163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.632457292184724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.32376758329678, -3.6504046698680317, -7.0, -7.0, -7.0, -2.9885589568786157, -7.0, -3.6085795148261877, -7.0, -7.0, -7.0, -3.556250795965523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.108525229488806, -7.0, -2.7745169657285493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2016701796465816, -2.762261654333892, -7.0, -7.0, -3.137670537236755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.80365790832937, -7.0, -7.0, -7.0, -7.0, -3.0362295440862943, -2.8915374576725643, -7.0, -2.9375178920173464, -3.5235383717036526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.977266212427293, -7.0, -2.532117116248804, -7.0, -3.2900739122522697, -2.835056101720116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.210280291360743, -2.279894980011638, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.76544501809015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5381965783494542, -3.8023289442025816, -7.0, -7.0, -7.0, -4.737876158125802, -7.0, -7.0, -7.0, -7.0, -2.6273658565927325, -7.0, -7.0, -7.0, -7.0, -3.9698350930757975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9714304844819157, -2.9434945159061026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -7.0, -7.0, -3.381440002819618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.688055599800202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7238659644435037, -3.495812509045674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1782573208121887, -7.0, -2.79309160017658, -7.0, -7.0, -3.1835545336188615, -7.0, -7.0, -7.0, -3.225154148849806, -7.0, -7.0, -7.0, -2.9786369483844743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304801242437977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.08278537031645, -7.0, -3.4104397862103464, -3.2258259914618934, -7.0, -7.0, -7.0, -7.0, -7.0, -3.700617195682057, -7.0, -7.0, -2.569373909615046, -7.0, -7.0, -3.630122642859312, -3.003029470553618, -7.0, -3.1983821300082944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.449324093098727, -2.9822712330395684, -7.0, -7.0, -4.131394081817373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.253424550927697, -7.0, -7.0, -7.0, -7.0, -3.1231980750319988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4169731726030363, -4.391876181587, -7.0, -7.0, -3.944532020991981, -7.0, -7.0, -2.243658026638696, -7.0, -7.0, -3.4530123911214554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.101949743219734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.391129260417903, -3.66576855071938, -2.8048206787211623, -4.572976098995143, -7.0, -3.7449185424413534, -2.9148718175400505, -7.0, -3.037824750588342, -3.265475722826399, -3.3143588613003385, -7.0, -7.0, -7.0, -3.7137424784090824, -7.0, -3.737907923374639, -7.0, -7.0, -7.0, -4.189181397180737, -7.0, -7.0, -4.356523002341826, -3.7250309035037272, -4.69570927120908, -7.0, -3.3085644135612386, -7.0, -4.311753861055754, -7.0, -4.94276183005964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.658774320844357, -7.0, -4.160678574400385, -7.0, -7.0, -4.129184854827195, -7.0, -7.0, -4.634578022853888, -7.0, -3.3081373786380386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.742497322199888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.780673676286881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.315760490665735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4776999283321306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.356637647372692, -7.0, -7.0, -7.0, -7.0, -3.6217992240026677, -7.0, -2.3492775274679554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.478843432329472, -7.0, -7.0, -7.0, -2.3138672203691537, -1.5740312677277188, -7.0, -4.256200420744306, -2.2174839442139063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333910543472979, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05579865953248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3873898263387296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426250931980546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368472838440362, -7.0, -7.0, -7.0, -7.0, -2.4835872969688944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8273692730538253, -7.0, -7.0, -1.6127838567197355, -7.0, -1.8260748027008264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495419442581866, -7.0, -7.0, -7.0, -3.2988530764097064, -7.0, -7.0, -2.507855871695831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.574031267727719, -7.0, -7.0, -7.0, -3.0107238653917734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.645422269349092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5859117103194342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3022226663176655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.004665233247877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639476528271741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.381685338403339, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1461590556048185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.187059861038297, -7.0, -7.0, -7.0, -7.0, -3.085379783217932, -7.0, -7.0, -7.0, -7.0, -7.0, -3.328430573978307, -3.0444417587036496, -7.0, -7.0, -3.389309014917708, -7.0, -2.9143431571194407, -7.0, -7.0, -7.0, -7.0, -3.5652573434202135, -7.0, -7.0, -7.0, -2.6546577546495245, -3.021602716028242, -7.0, -7.0, -7.0, -7.0, -7.0, -3.142858551113391, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.750199727829182, -7.0, -7.0, -2.9481683617271317, -7.0, -7.0, -7.0, -2.926342446625655, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5739926620579388, -7.0, -7.0, -7.0, -7.0, -3.41161970596323, -2.1647245241698965, -7.0, -7.0, -4.233097687864703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0580462303952816, -7.0, -3.131297796597623, -7.0, -7.0, -7.0, -3.680943850666622, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.036628895362161, -7.0, -3.177752871842618, -7.0, -7.0, -7.0, -3.029789470831856, -3.1889284837608534, -7.0, -3.586249638866042, -4.117039167877679, -2.8943160626844384, -7.0, -2.9809119377768436, -4.741072772373322, -7.0, -3.180412632838324, -2.92272545799326, -2.3439990690571615, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6871274768927718, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4245549766067134, -3.0202231262979176, -3.50745106090197, -3.1078880251827985, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4899584794248346, -7.0, -7.0, -7.0, -7.0, -3.3165294629875106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7478000908643687, -3.0178677189635055, -7.0, -3.0678145111618402, -7.0, -7.0, -2.961083084112392, -7.0, -2.8692317197309762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.86421433046133, -2.984802764398631, -7.0, -7.0, -3.0425755124401905, -7.0, -2.5098742850047193, -7.0, -2.526769911517248, -7.0, -3.0107238653917734, -7.0, -7.0, -3.285557309007774, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2767899450894244, -7.0, -2.1264561134318045, -2.200303182981585, -2.2993983300681498, -7.0, -2.8773713458697743, -2.285107029566812, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.57978359661681, -2.8965262174895554, -7.0, -7.0, -3.5802405082653763, -3.7893139474454895, -2.863322860120456, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3774883833761327, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8727388274726686, -7.0, -7.0, -7.0, -3.311329952303793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6651117370750512, -1.854029860881183, -7.0, -3.473778834646725, -7.0, -7.0, -7.0, -7.0, -7.0, -3.056142262059052, -7.0, -7.0, -4.027702880532386, -7.0, -7.0, -7.0, -7.0, -7.0, -3.179838928023187, -3.2973227142053023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.357934847000454, -3.13481437032046, -2.7197454925295768, -2.942008053022313, -3.709619715559004, -7.0, -7.0, -2.2992752680974307, -7.0, -7.0, -7.0, -7.0, -3.263636068588108, -7.0, -7.0, -7.0, -2.873029812061044, -7.0, -4.099898079134955, -7.0, -7.0, -7.0, -2.5622928644564746, -7.0, -7.0, -2.8686444383948255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9122220565324155, -3.977815026083187, -7.0, -4.354730929958319, -7.0, -7.0, -2.809939059242838, -3.197280558125619, -7.0, -2.743901550485179, -7.0, -2.683347276399375, -2.3309546133716443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.222456336679247, -7.0, -2.9857257811120115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.407033803328038, -4.436544276662768, -7.0, -7.0, -4.581016156545554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.78875505029906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.622214022966295, -4.1004739362576546, -7.0, -3.4742162640762553, -7.0, -7.0, -7.0, -3.6463914716912074, -3.040404528914159, -2.552262522965547, -3.134106242849204, -3.855034316675884, -3.746400644491561, -7.0, -7.0, -7.0, -2.965201701025912, -7.0, -7.0, -7.0, -7.0, -7.0, -4.681250285083047, -7.0, -2.9344984512435675, -3.085825533520743, -2.651278013998144, -4.014940349792936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0268599859845615, -4.288495151773556, -7.0, -7.0, -7.0, -3.2179224041016314, -3.505421327583281, -7.0, -3.707431775903971, -4.569654763999852, -7.0, -3.7934111840437565, -7.0, -7.0, -3.6555225962534177, -3.7321926510062684, -7.0, -2.9273703630390235, -7.0, -7.0, -7.0, -4.013005850015737, -2.4727564493172123, -7.0, -7.0, -7.0, -3.313740708405768, -7.0, -7.0, -7.0, -3.5159400420933182, -7.0, -3.855317205195943, -3.17376882313665, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2132520521963968, -7.0, -7.0, -3.1640552918934515, -7.0, -7.0, -2.9800033715837464, -7.0, -3.386320573894046, -7.0, -7.0, -3.9996814005458545, -4.34523646004688, -4.4446146287028, -7.0, -7.0, -7.0, -3.278982116865443, -7.0, -7.0, -2.92272545799326, -3.0199466816788423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388633969351789, -7.0, -7.0, -7.0, -3.208710019906401, -4.04153084778685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.714329759745233, -2.5622928644564746, -3.358513089911424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7532765701844184, -3.12515582958053, -2.9777236052888476, -7.0, -2.8838506290062735, -7.0, -7.0, -3.1772478362556233, -2.5181848042184027, -7.0, -2.681618065583093, -2.2648178230095364, -7.0, -3.1646502159342966, -7.0, -3.710709565724337, -3.0555694400609896, -7.0, -7.0, -7.0, -4.282055370683707, -7.0, -7.0, -7.0, -4.324158941674477, -7.0, -7.0, -3.4484191976496126, -3.7989267385772014, -7.0, -7.0, -2.9190780923760737, -7.0, -7.0, -2.70557864861638, -7.0, -7.0, -7.0, -7.0, -2.887202586250158, -7.0, -7.0, -7.0, -7.0, -2.7611758131557314, -7.0, -3.0, -7.0, -3.4245549766067134, -3.09968064110925, -7.0, -2.8466463285771173, -7.0, -7.0, -7.0, -2.9951962915971793, -7.0, -7.0, -2.934245881023071, -3.5765716840652906, -7.0, -7.0, -7.0, -3.44216608578472, -7.0, -7.0, -3.4450924439560473, -7.0, -7.0, -3.001949941084268, -3.054868296692888, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -3.6137361412618714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.635081436010873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.914977472444331, -3.1386184338994925, -7.0, -7.0, -3.536604348652848, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788168371141168, -2.7896165593379805, -7.0, -2.6424645202421213, -7.0, -7.0, -2.3932826505593647, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7393943184250933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.749736315569061, -2.421850615022958, -7.0, -7.0, -2.0468252095542914, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1383026981662816, -7.0, -7.0, -7.0, -3.7382254481425052, -7.0, -7.0, -7.0, -7.0, -3.0555694400609896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0203612826477078, -7.0, -7.0, -7.0, -4.221179420598498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8312296938670634, -3.7691187404883246, -7.0, -7.0, -7.0, -7.0, -2.4892551683692603, -7.0, -3.249198357391113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4641913706409997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.23872695603908, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7478000908643687, -7.0, -2.163757523981956, -1.6341892764619133, -2.026328938722349, -2.145351816558461, -7.0, -2.8968178969406244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.41749014594413, -7.0, -7.0, -7.0, -7.0, -2.9978230807457256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.210853365314893, -7.0, -7.0, -7.0, -3.9296232515152405, -7.0, -3.374565060722765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6263403673750423, -7.0, -2.6599162000698504, -7.0, -7.0, -7.0, -3.5439439424829065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.816241299991783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.780317312140151, -3.151894941876449, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7937903846908188, -7.0, -7.0, -3.4268364538035083, -3.2506639194632436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.500716623555479, -7.0, -7.0, -2.6748611407378116, -7.0, -7.0, -2.6035052322021435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8739015978644615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.861385040442465, -7.0, -7.0, -2.7558748556724915, -4.308564413561239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7058637122839193, -7.0, -7.0, -2.3000983660999252, -2.829303772831025, -2.167317334748176, -7.0, -4.320720809309493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.690196080028514, -7.0, -7.0, -7.0, -7.0, -2.1889284837608534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.588342148897704, -7.0, -7.0, -4.070714961111136, -2.625312450961674, -7.0, -7.0, -7.0, -7.0, -3.4679039465228003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2121876044039577, -3.13481437032046, -2.7024305364455254, -3.4153072922255676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658383489624529, -4.8041326144720715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.660549282517093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.244845909032436, -2.650723713371649, -3.2659963704950794, -4.077985291029502, -4.146778989307833, -2.417803722639881, -7.0, -7.0, -7.0, -2.790988475088816, -7.0, -4.191953767152995, -7.0, -7.0, -4.358410786206337, -7.0, -7.0, -7.0, -2.7259116322950483, -2.7730546933642626, -4.011728993455529, -7.0, -4.642212180220815, -7.0, -4.065803712575022, -7.0, -7.0, -7.0, -4.281624151440202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.607412127814179, -3.611640712232615, -7.0, -4.158412754751622, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7708520116421442, -7.0, -7.0, -7.0, -7.0, -7.0, -2.82020145948564, -7.0, -7.0, -7.0, -4.329428390782099, -7.0, -7.0, -3.345177616542704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8129133566428557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.303879730883368, -2.924795995797912, -7.0, -7.0, -7.0, -7.0, -2.7371926427047373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7389390312034796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275080898456858, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2869950739688525, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8847953639489807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7371926427047373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.283617786365643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6522463410033232, -2.5575072019056577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.815378484965918, -7.0, -7.0, -2.5599066250361124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9107844347928373, -2.9079485216122722, -7.0, -7.0, -3.463554192128399, -7.0, -7.0, -7.0, -2.708420900134713, -7.0, -7.0, -3.3844848356953223, -7.0, -7.0, -7.0, -7.0, -2.3443922736851106, -7.0, -7.0, -7.0, -3.247236549506764, -7.0, -3.4946713037544734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3201462861110542, -7.0, -2.5712095470456258, -7.0, -7.0, -2.3626709297256667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.433889788208712, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2972131959896416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.297760511099134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.50740605862413, -7.0, -2.846955325019824, -7.0, -3.8221288341175814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.640978057358332, -7.0, -7.0, -2.5453071164658243, -7.0, -3.3680264161136764, -7.0, -7.0, -7.0, -2.8369567370595505, -7.0, -7.0, -3.5407047833107623, -7.0, -7.0, -7.0, -7.0, -4.738034961141285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6931991451537174, -2.9636304457595233, -7.0, -7.0, -7.0, -3.8041394323353503, -7.0, -2.258876629372131, -2.8744818176994666, -7.0, -3.061829307294699, -7.0, -7.0, -7.0, -2.824920914325174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0178677189635055, -2.163757523981956, -7.0, -2.1335389083702174, -1.528566132938369, -1.516629796003336, -7.0, -3.3870094093910237, -7.0, -7.0, -7.0, -2.1409268419924303, -2.5786392099680726, -7.0, -7.0, -2.96543689977626, -7.0, -7.0, -7.0, -7.0, -2.9812637281762018, -7.0, -7.0, -2.554489160003819, -7.0, -7.0, -3.0856472882968564, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5854607295085006, -7.0, -7.0, -7.0, -7.0, -7.0, -3.359835482339888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.687974620034556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.760422483423212, -7.0, -2.159366641633703, -7.0, -2.224014811372864, -2.5575072019056577, -2.255272505103306, -7.0, -2.526339277389844, -2.416640507338281, -3.2947306904843314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4321672694425884, -7.0, -7.0, -7.0, -2.929418925714293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.595496221825574, -7.0, -7.0, -3.052693941924968, -3.2038484637462346, -3.185825359612962, -7.0, -7.0, -7.0, -2.6830470382388496, -7.0, -1.972467329545524, -7.0, -2.7481880270062007, -1.635986111800833, -7.0, -7.0, -7.0, -7.0, -2.605458969404072, -7.0, -7.0, -7.0, -4.307720614914806, -2.7032913781186614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.859738566197147, -2.645422269349092, -2.2952004520032574, -2.1958996524092336, -7.0, -4.3204474864238644, -3.0711452904510828, -7.0, -7.0, -2.541579243946581, -7.0, -2.928907690243953, -7.0, -1.6957005197711714, -7.0, -7.0, -7.0, -7.0, -2.7363965022766426, -2.6627578316815743, -7.0, -7.0, -7.0, -3.9598995878659435, -7.0, -4.9562052606727915, -7.0, -2.511214701136388, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7263196121107756, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -2.6127838567197355, -7.0, -7.0, -2.617000341120899, -2.3273589343863303, -2.6283889300503116, -2.357068164449998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6100956392991375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.226006694729179, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.41161970596323, -7.0, -3.306403580380042, -3.269045709657623, -2.9253120914996495, -7.0, -7.0, -4.544923382058467, -1.9320018841538737, -2.768884649356367, -3.7740057302582093, -4.144325078400488, -2.634393291724445, -7.0, -7.0, -7.0, -1.9453044216515423, -7.0, -7.0, -7.0, -7.0, -3.315130317183602, -4.503409316743605, -7.0, -2.677606952720493, -2.5325420619597168, -7.0, -3.767791729273228, -7.0, -7.0, -3.3177500288422337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6840370374865197, -3.4499409887733377, -7.0, -3.9075080987704354, -3.963008230329139, -7.0, -3.7895605681684152, -7.0, -7.0, -3.3157604906657347, -4.0175758683910745, -7.0, -1.8081144737610868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5192590585137475, -7.0, -1.9107768156582345, -7.0, -3.7909181952145783, -7.0, -3.93062306071968, -7.0, -7.0, -7.0, -7.0, -7.0, -3.456973013635818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8402315949581087, -7.0, -7.0, -7.0, -4.642504089690639, -4.742654444714546, -7.0, -7.0, -2.1398790864012365, -7.0, -7.0, -7.0, -2.656098202012832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.53655844257153, -7.0, -2.690196080028514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8543060418010806, -3.8263879867643107, -7.0, -3.4235735197327357, -7.0, -7.0, -7.0, -2.3664229572259727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6273658565927325, -7.0, -2.973589623427257, -2.9344984512435675, -3.732634967539196, -7.0, -7.0, -7.0, -3.739651443709377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.285219643202061, -7.0, -7.0, -7.0, -7.0, -7.0, -2.357934847000454, -7.0, -7.0, -7.0, -2.3664229572259727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9628426812012423, -7.0, -7.0, -7.0, -2.5390760987927767, -7.0, -7.0, -7.0, -3.679700380871964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.281828466560518, -7.0, -7.0, -3.2113875529368587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.403120521175818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4065401804339555, -7.0, -3.6417714706539592, -7.0, -2.8102325179950842, -7.0, -7.0, -7.0, -7.0, -3.1184851801459406, -7.0, -7.0, -3.8366865479533994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.236920956251943, -7.0, -7.0, -7.0, -7.0, -2.747411807886423, -7.0, -7.0, -7.0, -7.0, -7.0, -4.337858429041094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0108085975122063, -7.0, -7.0, -2.807196660710947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.031852631395629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.220421922437841, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.935003151453655, -7.0, -7.0, -7.0, -4.519788629954198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.885926339801431, -7.0, -7.0, -7.0, -7.0, -4.063258279950456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.073351702386901, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.600246650564494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6341892764619133, -2.1335389083702174, -7.0, -2.5282737771670436, -2.0957503474808177, -7.0, -2.3789459686077294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.240798771117331, -7.0, -7.0, -7.0, -7.0, -3.466950987999048, -7.0, -7.0, -7.0, -7.0, -2.907411360774586, -7.0, -7.0, -7.0, -7.0, -2.576341350205793, -7.0, -3.1577588860468637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.378397900948138, -7.0, -7.0, -7.0, -7.0, -2.6541765418779604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6702458530741238, -7.0, -2.5171958979499744, -7.0, -2.359835482339888, -7.0, -2.404833716619938, -7.0, -7.0, -2.6190933306267428, -3.989271791641693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2024883170600935, -7.0, -7.0, -7.0, -7.0, -7.0, -3.692935002531138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1734776434529945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.655138434811382, -7.0, -2.1598678470925665, -7.0, -7.0, -7.0, -3.1341771075767664, -7.0, -7.0, -7.0, -4.306564408349157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.305351369446624, -2.080987046910887, -2.3966351669836934, -7.0, -5.098259438816537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.132126754578685, -7.0, -2.473486970064568, -4.244524511570083, -7.0, -7.0, -7.0, -7.0, -7.0, -3.439332693830263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6825060859390115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.429106008332696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.581483158275855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.737987326333431, -7.0, -7.0, -7.0, -4.543583846395738, -3.3081373786380386, -7.0, -7.0, -3.839854984601885, -2.8601668223031473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354838055584639, -7.0, -7.0, -7.0, -3.2893659515200318, -2.6085260335771943, -4.6118719408282765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.641434447096437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604258461911163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.883547879268044, -7.0, -7.0, -7.0, -7.0, -3.6644539285811577, -7.0, -7.0, -2.497620649781288, -7.0, -7.0, -3.9175055095525466, -2.9213742954184743, -7.0, -7.0, -3.310928576352893, -7.0, -7.0, -7.0, -2.5024271199844326, -7.0, -7.0, -3.1639123887749165, -7.0, -7.0, -7.0, -2.509202522331103, -2.597695185925512, -7.0, -7.0, -7.0, -2.975891136401793, -7.0, -3.6433934504731535, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7371926427047373, -7.0, -7.0, -7.0, -7.0, -2.774354733944107, -7.0, -7.0, -3.1818435879447726, -7.0, -2.7168377232995247, -2.7275412570285567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.364550995353972, -7.0, -7.0, -7.0, -2.1158481557195747, -7.0, -7.0, -3.925441019653158, -2.3944516808262164, -2.8115750058705933, -7.0, -2.7209857441537393, -7.0, -7.0, -7.0, -7.0, -2.9474337218870508, -7.0, -3.0398105541483504, -7.0, -7.0, -7.0, -4.221805317996549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4955443375464483, -7.0, -2.397070549959409, -7.0, -7.0, -7.0, -7.0, -3.168386980706974, -7.0, -7.0, -7.0, -7.0, -3.1099158630237933, -2.714329759745233, -2.7769431981946755, -7.0, -7.0, -7.0, -2.845098040014257, -4.261889070345975, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7752462597402365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.403034683744586, -2.4164892115757675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.628729419665481, -7.0, -7.0, -7.0, -2.7835820252012704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0678145111618402, -2.026328938722349, -1.528566132938369, -2.5282737771670436, -7.0, -2.1811286997472954, -7.0, -3.3154212801108605, -7.0, -7.0, -7.0, -1.8228216453031048, -7.0, -2.74350976472843, -7.0, -3.295786940251609, -7.0, -3.874191804679071, -7.0, -7.0, -3.009931003697816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8785217955012063, -2.8102325179950842, -2.885361220031512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9054360671891235, -7.0, -3.0409976924234905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7032913781186614, -7.0, -7.0, -2.741151598851785, -3.549861188471943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.688419822002711, -7.0, -7.0, -7.0, -2.8135809885681917, -3.522313795156667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.346352974450639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.86844850133673, -7.0, -7.0, -2.5814945422908995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0989896394011773, -2.7589118923979736, -2.9188163903603797, -7.0, -7.0, -2.3738311450738303, -2.7846172926328756, -2.9978230807457256, -1.7092699609758308, -7.0, -2.8369567370595505, -1.6949425150529753, -2.7209857441537393, -7.0, -7.0, -7.0, -2.468790262099611, -3.044147620878723, -7.0, -7.0, -4.610127613075996, -7.0, -7.0, -3.776555910703262, -7.0, -7.0, -7.0, -2.4424797690644486, -7.0, -2.929929560084588, -2.158060793936605, -2.074938279468222, -2.3909351071033793, -7.0, -4.621937534348392, -2.5115491597450657, -7.0, -7.0, -7.0, -7.0, -2.9894498176666917, -7.0, -1.5631419252975927, -2.8836614351536176, -7.0, -7.0, -7.0, -7.0, -7.0, -2.395326393069351, -7.0, -7.0, -7.0, -7.0, -4.8314666335845295, -7.0, -2.4542348957482654, -3.946341712189376, -7.0, -7.0, -2.629409599102719, -7.0, -7.0, -3.4749443354653877, -7.0, -7.0, -7.0, -7.0, -2.977266212427293, -2.718501688867274, -7.0, -2.4305587695227575, -2.1022465501163183, -2.1351326513767748, -2.2425414282983844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.434497047900033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.153814864344529, -4.273626206272959, -4.309502414966703, -3.4550733759211245, -7.0, -7.0, -7.0, -7.0, -2.070490928340032, -7.0, -7.0, -3.369803180547177, -3.248463717551032, -7.0, -7.0, -7.0, -1.9704797083100105, -7.0, -4.193291602579516, -7.0, -7.0, -4.058255158229489, -4.680086107821505, -7.0, -2.780317312140151, -2.2934630044590665, -7.0, -3.4679567540619156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.863976783904387, -7.0, -7.0, -3.2650537885040145, -3.9645071216655343, -7.0, -3.6816532195389895, -7.0, -7.0, -3.630122642859312, -7.0, -7.0, -1.9160777731414746, -7.0, -7.0, -7.0, -7.0, -2.1986570869544226, -7.0, -7.0, -7.0, -3.2234959409623944, -7.0, -1.721747219185589, -7.0, -3.7997539664118856, -7.0, -4.028845649861069, -2.78993308093175, -7.0, -7.0, -7.0, -7.0, -3.475816413031318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.005930867219212, -7.0, -2.3443922736851106, -7.0, -1.9777236052888478, -2.982874001327729, -7.0, -7.0, -3.6259294927162946, -2.716003343634799, -7.0, -7.0, -7.0, -2.673020907128896, -3.0874264570362855, -2.7902851640332416, -7.0, -7.0, -7.0, -2.761927838420529, -2.4892551683692603, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6232492903979003, -3.469168017429083, -2.9489017609702137, -7.0, -7.0, -7.0, -7.0, -2.167317334748176, -7.0, -7.0, -2.8407332346118066, -2.909020854211156, -7.0, -7.0, -2.741151598851785, -2.929521100631104, -3.028571252692538, -2.9943171526696366, -3.26528962586083, -7.0, -7.0, -3.0806264869218056, -3.749581734865559, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318835191727664, -7.0, -7.0, -3.509695249865874, -7.0, -7.0, -7.0, -2.75815462196739, -7.0, -2.0596175052644243, -2.625312450961674, -7.0, -7.0, -2.7737864449811935, -7.0, -3.3809043531298437, -2.4345689040341987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8603380065709938, -7.0, -7.0, -7.0, -2.6748611407378116, -7.0, -2.8407332346118066, -7.0, -3.691081492122968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5063246026216772, -7.0, -7.0, -2.9425041061680806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.056838178206314, -7.0, -7.0, -7.0, -7.0, -3.6353832040474985, -7.0, -7.0, -7.0, -7.0, -7.0, -3.90151280912994, -2.986211715514367, -7.0, -7.0, -3.7015737410745344, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5599066250361124, -4.0816832818909905, -7.0, -7.0, -7.0, -2.5428254269591797, -2.694605198933569, -7.0, -2.546542663478131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9259992664561554, -2.3873898263387296, -7.0, -2.6081693235104026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.029261995804175, -7.0, -7.0, -7.0, -7.0, -3.3062105081677613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.725094521081469, -7.0, -4.217891726314075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8363241157067516, -7.0, -7.0, -7.0, -7.0, -2.5459253293558426, -7.0, -7.0, -2.423245873936808, -7.0, -3.759743367597725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0492180226701815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.200303182981585, -3.1121020547708906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7611758131557314, -7.0, -7.0, -7.0, -7.0, -7.0, -3.472902651803664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.145351816558461, -1.516629796003336, -2.0957503474808177, -2.1811286997472954, -7.0, -7.0, -3.8831826769763365, -7.0, -7.0, -7.0, -7.0, -2.010723865391773, -7.0, -7.0, -3.2245330626060857, -7.0, -7.0, -7.0, -7.0, -3.4151681799908333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.137986732723532, -7.0, -7.0, -7.0, -7.0, -7.0, -3.024485667699167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5877109650189114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8169038393756605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2174839442139063, -1.9708116108725178, -7.0, -7.0, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.569373909615046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.497261466106855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.187520720836463, -2.3629848397370954, -2.3935752032695876, -7.0, -2.5888317255942073, -2.56702636615906, -1.4873404199013485, -7.0, -7.0, -2.095169351431755, -3.123851640967086, -7.0, -7.0, -7.0, -4.6069292623911515, -2.5224442335063197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6273658565927325, -2.010959191586587, -7.0, -5.098037713285091, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8305886686851442, -7.0, -1.893946607552074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.955929759161037, -7.0, -2.575187844927661, -7.0, -3.0081741840064264, -7.0, -7.0, -7.0, -7.0, -3.1277525158329733, -7.0, -7.0, -7.0, -7.0, -2.8129133566428557, -7.0, -7.0, -2.079181246047625, -3.0464951643347082, -2.403120521175818, -3.0698530211136243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7331490966888365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.704099016416958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.348655273245765, -7.0, -7.0, -3.0515383905153275, -7.0, -3.6039450752328426, -3.4316853446860116, -7.0, -7.0, -7.0, -7.0, -2.2852668595858776, -2.900913067737669, -7.0, -7.0, -3.0982109460284746, -7.0, -7.0, -7.0, -1.7745169657285496, -7.0, -7.0, -7.0, -7.0, -3.7514330818193473, -4.50262737734167, -7.0, -7.0, -7.0, -7.0, -3.9121369966522233, -7.0, -7.0, -3.29939833006815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4568820206232487, -7.0, -7.0, -3.65029672770863, -4.5631012082812745, -7.0, -4.633044053669549, -7.0, -7.0, -3.2973227142053023, -7.0, -7.0, -1.8512583487190755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.988960070390338, -7.0, -1.8239087409443189, -7.0, -3.7786576319473553, -7.0, -4.326868159893682, -7.0, -7.0, -7.0, -7.0, -3.210318519826232, -3.4300750555519395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.829303772831025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7209857441537393, -7.0, -7.0, -7.0, -7.0, -3.413132050434872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8057047044338645, -7.0, -7.0, -7.0, -2.734799829588847, -4.126863456607053, -7.0, -3.3944516808262164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.296445794206396, -7.0, -7.0, -3.7185847200274362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2833012287035497, -7.0, -7.0, -7.0, -7.0, -4.312558149521521, -7.0, -7.0, -4.281328859801704, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7126497016272113, -2.987219229908005, -7.0, -7.0, -7.0, -7.0, -3.8491736330988267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9867717342662448, -7.0, -7.0, -7.0, -2.2405492482826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277907045047425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357353493960548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.099283449476349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3988077302032647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.741939077729199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.1461280356782382, -2.08278537031645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2278867046136734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.518184804218403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2833012287035497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.403635189790548, -7.0, -7.0, -7.0, -3.788168371141168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1694539986517043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.250753321439791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.068102335544942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1192558892779365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6820547770738075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.004181603069199, -2.439332693830263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097836676696532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6711728427150834, -7.0, -7.0, -7.0, -5.432964483159803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.92272545799326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3604040547299387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.802020751771976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.580092064700632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.570531265142131, -7.0, -7.0, -7.0, -7.0, -7.0, -4.241010752866155, -7.0, -7.0, -7.0, -3.659852841038167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604085586881876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080954608767231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8248739727439425, -4.426316028957644, -7.0, -7.0, -7.0, -7.0, -4.7271751242414615, -4.426372980809529, -4.12579833129549, -2.1291708907423548, -3.5292538542887826, -4.250200359678991, -4.125269759964129, -2.864541505555368, -2.5477747053878224, -4.7279395842212315, -3.952316087981373, -4.728524219304322, -4.033447882287984, -4.12515582958053, -2.3050789541538186, -2.8860636902492818, -4.727329751292091, -1.828053896840553, -1.7019773666297375, -7.0, -3.6864250009637516, -4.426210241414335, -3.4495352349815573, -3.7280289544205187, -3.1599896745229517, -2.224391022988587, -3.6866931316334, -3.22169943522332, -3.949918320775918, -3.1598759699845607, -3.3870822809891834, -4.426185825244511, -3.473138096777888, -7.0, -3.416117232254335, -2.9632095769583877, -2.1268753382290857, -4.426210241414335, -4.127315412520904, -3.473738309626689, -4.4263567096139225, -7.0, -4.426787690457996, -2.869190961954971, -7.0, -3.7276957537986664, -2.0615721938673013, -2.0356385582547913, -3.5234456722537035, -3.7737458244431754, -2.7898049799111613, -3.82509329083244, -3.7274843233085995, -4.250582628965692, -3.2805702410901008, -3.1390956495216904, -3.1780412001399494, -2.643338459312974, -7.0, -7.0, -2.762528522447, -4.426177686216186, -4.7271751242414615, -4.028709489232689, -4.727191403365907, -2.7912647463631677, -3.2533218482368023, -4.727508724388225, -3.7772414967636383, -2.188550161961675, -3.3291130026818196, -2.81887727846276, -4.7271507044105965, -4.125562586641175, -7.0, -7.0, -3.773233679871393, -4.125139551371345, -2.563887264210333, -3.281285035693031, -2.677396973050582, -3.825515369420171, -3.3680523082026887, -4.129319230615535, -1.8805861967308912, -3.553826411010125, -4.42673079296728, -4.426169547035326, -7.0, -7.0, -3.5813156161174313, -4.727809558365384, -4.250354934591055, -4.727191403365907, -2.8667755227942764, -3.7275575224348954, -7.0, -4.12501744535038, -2.696235006222717, -7.0, -4.426389251395546, -3.449454038712713, -3.9493818737132953, -2.775861155715095, -3.264768986551449, -3.1357277820214926, -2.836802721861793, -3.6877396932891924, -2.5833000057543316, -2.8025049560183866, -2.9496257954341845, -4.0287338793493355, -3.1853883377542935, -3.6922699327603388, -4.727606314999153, -2.5649366840364607, -2.096520818131028, -4.028644442224251, -3.2524322813650826, -3.4983754295385956, -2.8697777859314675, -4.0288232980598355, -3.478037132206131, -2.356332505359126, -2.9097423747827356, -4.426990834952875, -3.8250364412213536, -3.237040791379191, -4.727134423760488, -7.0, -2.1238375049273124, -4.12501744535038, -4.727126283206558, -7.0, -3.5808679779090298, -3.881963113267065, -3.2310871205848226, -2.842156613741657, -3.1336167877718255, -3.1870934679310956, -4.126115165579008, -3.3754002144995283, -4.727679493568708, -3.773022142436208, -2.8720267099544015, -2.556122290708796, -2.893818027711187, -4.727272789836275, -4.0286607048897425, -4.727703883685354, -1.892923507255603, -4.727126283206558, -4.426226518098315, -3.7278908290871864, -3.688055599800202, -4.426250931980546, -7.0, -2.961083084112392, -2.8968178969406244, -3.3870094093910237, -2.3789459686077294, -3.3154212801108605, -3.8831826769763365, -4.250753321439791, -7.0, -4.028481782066952, -4.727321614398654, -7.0, -4.125725182854944, -7.0, -4.028863936842829, -4.426348573787507, -2.062545750245087, -7.0, -3.525339998131806, -4.42620210284358, -3.4106406792031247, -1.0077450772374068, -3.1474403631674783, -2.4847227399449667, -2.7032589244882543, -2.6049078342007888, -2.4431940560100167, -3.6927267769512566, -3.428199609263877, -4.029611012535356, -3.6502751360569445, -3.019987346336959, -3.329723224057897, -3.064067490359177, -7.0, -4.426364845287927, -7.0, -2.769973475081076, -4.727272789836275, -2.561441012527098, -4.727199542699307, -1.9129494697951093, -3.4487713900601857, -3.6484738560346033, -3.5808679779090298, -4.125326713949941, -3.406661814514544, -7.0, -7.0, -7.0, -3.150339140453838, -3.406426624548381, -4.426071864965211, -3.6479531777128638, -3.949145952419944, -7.0, -4.250070148646245, -3.88279278907293, -4.727500590847347, -4.250558238849045, -2.8787563722006486, -3.7322006971472383, -3.002528594136107, -2.5785538211080494, -7.0, -4.125399929529946, -4.4264055213720175, -2.55252221023356, -7.0, -4.028286509426278, -2.330634661374436, -7.0, -3.4724313785820478, -7.0, -4.727166984450405, -4.72736229734141, -4.125261623070691, -7.0, -4.727158844506786, -3.8254829163960453, -1.7315565343446218, -7.0, -4.727134423760488, -7.0, -3.405012803773642, -2.7219656140431185, -2.9417150342629825, -4.727297202803587, -3.582501658910611, -3.6202401898458314, -4.0286607048897425, -2.393366632040518, -2.378509956288727, -7.0, -3.4259171567401974, -4.426543791568096, -3.896037794686384, -2.0942184429580704, -1.8316472780798594, -3.5252473225368557, -2.6952498398147355, -4.426560055756167, -7.0, -2.9070284317165918, -2.8705407076999516, -3.778376381752652, -2.9129784850676734, -2.722857464681718, -3.2177789568624706, -4.426316028957644, -4.4264055213720175, -4.250102705064626, -3.4727970660562555, -2.838130320707927, -3.331532567271932, -7.0, -3.95074607416863, -3.950592004332609, -4.125562586641175, -2.9557774090066586, -2.477693393952372, -3.3657808883706317, -2.132160282103326, -3.300587433274399, -2.6827384693289797, -2.51359339336404, -2.347449358810914, -3.774159975774139, -7.0, -2.591583964972279, -4.426332301677428, -4.125277896705118, -3.6158125181252205, -3.385151106409871, -2.1789931049835896, -2.733083728305306, -3.0019339278663946, -3.7748979720461997, -3.390662182998049, -4.42758347362526, -2.2333728424577397, -3.1651801371648745, -7.0, -7.0, -7.0, -3.588983606160755, -2.9900804134622208, -7.0, -4.426722664145779, -3.951377999243531, -7.0, -4.72718326387996, -7.0, -3.6147187910628036, -4.427120797579584, -4.250297992339864, -2.9810253750197253, -3.7735751766826517, -2.72352583496175, -3.422925790625542, -2.4176620338083574, -4.4279727136082085, -2.40113470291114, -2.2015017826004426, -3.0801452741502415, -7.0, -3.2674792279092797, -4.250980807096349, -2.634162771445941, -2.3954478504814185, -3.043065401325682, -4.426372980809529, -4.727199542699307, -4.7271100016409155, -2.9238994354584613, -3.8824513497936164, -3.649351087649641, -3.9495607630362115, -2.907684032886376, -4.125773949850886, -2.1013088384840706, -7.0, -7.0, -2.38836211745815, -3.179807033301188, -3.9525200157595273, -4.253289532254802, -3.311531088810858, -3.108092810484286, -3.232689740335693, -3.4613428736466783, -2.2945643764286494, -7.0, -3.106061643964693, -3.241311761772201, -3.252495566964527, -3.1854638683319636, -2.4671089777077575, -4.159133885693975, -3.0631764626789213, -2.2845202514129914, -4.0214993986774745, -3.33817842648472, -4.309452723304164, -3.129563910021561, -3.703047646167912, -2.4958815048717864, -3.1219683083643344, -4.129960436522729, -3.410827372065674, -3.679775150575617, -7.0, -2.41400876822251, -3.144549301118705, -3.0404879542618537, -3.290856641538179, -3.2422355332465385, -3.2680365213593214, -3.449558616691692, -3.7674257399338993, -3.178453177304058, -2.5846911866607476, -2.839023892302064, -3.504214919957298, -2.5508420193755015, -2.122116633990356, -1.8251445416738838, -3.8860634722671143, -3.3614984895639037, -3.733277533932582, -1.990160790410788, -2.7624431817322277, -3.18178802771381, -2.9853192094259917, -2.1716508690254384, -2.3686143205822265, -7.0, -3.5116754437726105, -3.782655731381152, -4.1266994838399125, -3.6708408988553822, -3.2118956929098874, -4.743431365146684, -4.731330851449278, -2.1532484973821076, -2.2361703147138603, -2.8678429063865183, -3.523933342263851, -2.4154026577248313, -3.49789674291322, -2.309159412716156, -4.762213266928569, -2.6480066689858415, -2.8584001216829997, -3.146694137624876, -4.125968963092556, -3.6817536437363345, -3.3384221443751882, -3.0716647453946364, -3.7834747875822465, -3.096947776103763, -3.4516636494104094, -2.5214488119418825, -3.299328264363879, -3.4983511022684035, -2.3082523908915555, -2.268999741029523, -3.8307249657259144, -2.753528668400722, -4.258246065968053, -2.961832252984734, -2.7688363674494263, -3.2577608328052667, -3.88380739196289, -4.7281832778243835, -7.0, -4.253378395419779, -3.9675947726718896, -2.0816644831892415, -3.8253774273163, -2.901450307917467, -3.884722557505038, -2.467505773250982, -2.581813728522774, -3.110637802263409, -3.729010814729995, -4.72788270269935, -2.7332782702751555, -4.252513226416275, -2.1374213769188546, -3.2858063702375837, -4.033093888137047, -3.5652494649908055, -2.2271465125877086, -3.307099675302965, -2.8165376190019558, -4.433489811682095, -3.6173149332982937, -2.449914523871852, -4.255979668208399, -3.6203362921859834, -3.952671385348004, -3.7746953507239045, -4.426560055756167, -2.8522257675089486, -7.0, -3.5813481536324794, -2.952313278148243, -1.5125997457466591, -2.452979280821311, -4.426478728724244, -3.3820797181144515, -3.428758239517558, -3.1920574373719934, -4.251662549989795, -7.0, -4.250956439331893, -2.939300802474012, -7.0, -3.952687528323953, -3.434234234551041, -3.949390006644913, -2.7949525327803473, -3.300071883219573, -3.0241855933138573, -7.0, -3.3527210309601645, -3.8832151518408686, -3.189786987593324, -3.191194759164397, -7.0, -4.728093939379775, -4.1263181429721, -3.851724506256658, -2.732130471253581, -7.0, -4.430679613881531, -2.6920933411840697, -4.429186844904713, -1.8251823856386462, -3.3152354096177272, -3.423081958297231, -3.1609144478506357, -7.0, -4.789270390978015, -3.949991421335047, -3.246670139929375, -3.5558116315501107, -4.251873348943444, -3.1383026981662816, -3.593499679766006, -4.42620210284358, -3.7735020213967823, -2.4172535172774223, -3.163274222705834, -3.6172665493319, -2.5413699526015563, -3.6917965522497167, -3.1234549503883753, -3.653791187387812, -2.8795947904433206, -3.137836192154967, -3.0955021988092257, -3.659266331383175, -4.028335335818388, -7.0, -2.5681044059002835, -3.422941409919984, -4.728410601881194, -3.4613879368708793, -2.216977478288399, -2.9794605133896948, -2.8952896369361607, -2.7207928476202827, -3.0291549471648436, -4.251005173493635, -4.732522420609542, -3.8828577947020895, -7.0, -4.030980018424236, -3.1648991988610664, -3.7941471074965745, -7.0, -4.029188910280547, -7.0, -2.368104755322076, -4.727833941178848, -4.730507727707434, -7.0, -4.728451182944577, -4.253539918241502, -7.0, -4.428385899200131, -3.254158099637722, -3.4413258676537932, -3.5851786285035163, -4.029188910280547, -3.778344227272801, -4.727232098507561, -7.0, -7.0, -4.72934300831835, -3.8838317133294527, -7.0, -2.7737110636466, -3.7511789891068097, -4.271400120441062, -4.728418718397232, -7.0, -2.5709450534801004, -7.0, -4.727232098507561, -2.736094552405685, -7.0, -7.0, -3.6959908142764144, -3.794139355767774, -3.9550861509904007, -4.727191403365907, -7.0, -4.030672570475327, -7.0, -3.4983718255845533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657944576981328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.919601023784111, -3.9228810912082936, -7.0, -2.2013971243204513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3909351071033793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.218360421770535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.682145076373832, -7.0, -2.537189226243645, -7.0, -2.6283889300503116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2833012287035497, -1.8195439355418688, -7.0, -7.0, -7.0, -2.0726174765452363, -7.0, -7.0, -2.629409599102719, -7.0, -7.0, -7.0, -7.0, -7.0, -2.611723308007342, -7.0, -7.0, -3.504470862494419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.668012971641832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.673020907128896, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071292733834574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028481782066952, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.289133536961551, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.372298159077237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4382031886892928, -1.916829798406272, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.161368002234975, -3.4075608494863623, -7.0, -7.0, -7.0, -4.605789719802564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.649334858712142, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9542425094393248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6242820958356683, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5323296410790315, -7.0, -7.0, -7.0, -7.0, -7.0, -2.89707700320942, -7.0, -7.0, -7.0, -7.0, -7.0, -2.255272505103306, -7.0, -7.0, -1.8260748027008264, -7.0, -7.0, -3.0497992779189866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.268917131979661, -3.044779227016736, -3.246826721711981, -7.0, -7.0, -7.0, -7.0, -3.773274348337454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.952695599586917, -4.979284257931421, -7.0, -7.0, -7.0, -7.0, -4.6100636631681216, -7.0, -7.0, -2.742500689706988, -7.0, -7.0, -7.0, -3.998956440470486, -4.273441134312813, -7.0, -7.0, -7.0, -3.374412263872896, -7.0, -7.0, -4.302514912793019, -4.5618404867309605, -7.0, -4.330920830595236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.683092087197129, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325782397515805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.394976719554564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.640481436970422, -4.381782712635187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5859117103194342, -7.0, -7.0, -3.40849436021236, -7.0, -7.0, -7.0, -3.717087724927019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6127838567197355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.57603596955491, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.555618350489831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.696356388733332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6599162000698504, -7.0, -2.824125833916549, -7.0, -7.0, -7.0, -4.216179102525562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.089728533074736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070407321740119, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8692317197309762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727321614398654, -7.0, -7.0, -7.0, -2.0681858617461617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9705049418128855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3187587626244128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.346352974450639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4034637013453173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.367355921026019, -5.432849082039786, -7.0, -3.000867721531227, -4.543173718365064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8672710189654482, -7.0, -2.5136614370834756, -7.0, -3.346548558548474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7715139899796664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.243781916093795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30225514786152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.876933374698336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1583624920952498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669316880566112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.929929560084588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9813655090785445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658316727178102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576398945124239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.256994202073168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335237186909729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.734799829588847, -7.0, -7.0, -7.0, -7.0, -4.026533264523296, -7.0, -7.0, -7.0, -7.0, -7.0, -2.267953536862395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.667452952889954, -7.0, -3.757206173278786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0320812676114404, -7.0, -7.0, -7.0, -7.0, -4.435087512304593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2270292621201366, -7.0, -7.0, -7.0, -7.0, -7.0, -3.595459477929287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1409268419924303, -7.0, -1.8228216453031048, -7.0, -7.0, -4.125725182854944, -7.0, -2.0681858617461617, -7.0, -7.0, -1.8388490907372554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5907489792763627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.447158031342219, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9130717403092508, -2.0453229787866576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7701152947871015, -2.8680563618230415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.661181443446619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1652443261253107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9923325590474643, -7.0, -7.0, -7.0, -7.0, -3.6072405038317426, -7.0, -7.0, -3.1335389083702174, -7.0, -7.0, -7.0, -7.0, -2.385606273598312, -2.496237545166735, -1.5713911715615105, -7.0, -7.0, -2.4800069429571505, -7.0, -7.0, -2.424881636631067, -7.0, -7.0, -7.0, -7.0, -7.0, -4.606209333228022, -7.0, -7.0, -3.7491176623563223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.037824750588342, -2.552668216112193, -7.0, -7.0, -4.796768542903085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9294189257142926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.123851640967086, -7.0, -7.0, -7.0, -7.0, -5.432950059696654, -7.0, -3.0273496077747564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.418135498425232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.155336037465062, -7.0, -1.9697546756175726, -7.0, -2.8808135922807914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8244295818805045, -3.426267207139606, -7.0, -7.0, -7.0, -7.0, -2.8207121796408137, -7.0, -7.0, -4.136815657726849, -7.0, -7.0, -7.0, -7.0, -1.7664128471123997, -7.0, -7.0, -7.0, -7.0, -4.051249021610516, -4.979461871381611, -7.0, -7.0, -2.957607287060095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274342616116883, -7.0, -7.0, -7.0, -4.154058610376971, -7.0, -7.0, -7.0, -7.0, -7.0, -4.632366171895849, -7.0, -7.0, -7.0, -7.0, -2.510545010206612, -2.3483048630481607, -7.0, -7.0, -7.0, -7.0, -7.0, -3.030599721965951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.358886204405869, -7.0, -2.478566495593843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.403120521175818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.381923325770788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1127166884277973, -7.0, -7.0, -3.712986233594383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.279803779994103, -7.0, -2.342422680822206, -7.0, -7.0, -7.0, -7.0, -2.9561684304753633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6574383227029625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276369880269439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657935030474059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576168519607808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.033363432619723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7556843338524133, -7.0, -7.0, -7.0, -2.61066016308988, -7.0, -7.0, -3.203032887014711, -7.0, -2.08278537031645, -7.0, -7.0, -4.735814396794525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0712558776812955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5786392099680726, -7.0, -7.0, -2.010723865391773, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8388490907372554, -7.0, -7.0, -7.0, -3.1958996524092336, -7.0, -7.0, -7.0, -7.0, -3.8245534996152175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.380211241711606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1986570869544226, -7.0, -1.7634279935629373, -7.0, -7.0, -7.0, -7.0, -1.675778341674085, -3.9815921172140816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.153204900084284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5550944485783194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.002166061756508, -7.0, -2.591064607026499, -7.0, -7.0, -7.0, -2.079181246047625, -7.0, -7.0, -7.0, -3.4073909044707316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4409090820652177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7781512503836436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9464031338990546, -7.0, -5.43288594961979, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.130333768495006, -2.7007037171450192, -2.164352855784437, -3.3510228525841237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.698578963307436, -3.7241939195143297, -7.0, -7.0, -7.0, -7.0, -2.6924062348336304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.050476427265063, -7.0, -7.0, -7.0, -2.401400540781544, -7.0, -4.610053003934577, -7.0, -4.941476647930497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.152838509892218, -7.0, -7.0, -4.603555728624722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.481442628502305, -7.0, -7.0, -2.5634810853944106, -4.32577214153862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4653828514484184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.622214022966295, -7.0, -7.0, -7.0, -2.2405492482826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2355284469075487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603642280263075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6074550232146687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9020028913507296, -7.0, -7.0, -7.0, -3.171433900943008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2788907249286785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.845872874264218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275449569516267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3384564936046046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658393026279124, -7.0, -7.0, -7.0, -3.6027109449575576, -3.629409599102719, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5971464878336956, -7.0, -7.0, -7.0, -3.555036838379667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.378397900948138, -7.0, -7.0, -7.0, -2.639486489268586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.699924402742477, -2.2671717284030137, -7.0, -3.065206128054312, -7.0, -7.0, -2.24551266781415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.518013555046075, -7.0, -7.0, -7.0, -2.225309281725863, -7.0, -7.0, -7.0, -7.0, -2.419955748489758, -7.0, -2.8680563618230415, -7.0, -7.0, -7.0, -3.8190962499555887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6748611407378116, -7.0, -3.7575099022757996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096144981294344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4153072922255676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9647309210536292, -7.0, -7.0, -7.0, -3.7719180361289046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.74350976472843, -7.0, -7.0, -4.028863936842829, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1271047983648077, -3.2089785172762535, -7.0, -7.0, -7.0, -7.0, -3.2225492597345475, -2.271841606536499, -7.0, -2.688419822002711, -7.0, -7.0, -7.0, -2.5998830720736876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9134959596171237, -7.0, -3.3136563466180315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1492868696291, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.214843848047698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.865991800126275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.894302213787551, -7.0, -7.0, -7.0, -3.6080979463252794, -7.0, -7.0, -2.8344207036815328, -7.0, -7.0, -7.0, -7.0, -7.0, -2.197969367916172, -2.6414741105040997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.635651266385708, -7.0, -7.0, -7.0, -3.4299029384459896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7967962800566575, -2.273695587930092, -7.0, -7.0, -7.0, -7.0, -2.0863598306747484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6702458530741238, -7.0, -7.0, -7.0, -5.131929679727997, -7.0, -3.030599721965951, -7.0, -2.680335513414563, -7.0, -7.0, -7.0, -2.3170181010481117, -7.0, -2.678518379040114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7209857441537393, -7.0, -2.6597260952377915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.427112676054709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.655416985727724, -4.80201390056662, -4.392221958741192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.10122450682362, -3.8656960599160706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703592270036801, -7.0, -4.580080643863007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.000737673774033, -3.7281101841003403, -7.0, -7.0, -7.0, -3.8429834701222174, -7.0, -7.0, -7.0, -3.659821158055705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8752735332544463, -4.502358829319633, -5.172226262615762, -7.0, -7.0, -7.0, -4.61056435226876, -7.0, -4.941715115684539, -7.0, -7.0, -7.0, -7.0, -4.000997730357794, -7.0, -3.1565491513317814, -3.638189640190837, -7.0, -7.0, -7.0, -7.0, -3.9050183100925886, -4.562399937566829, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9429995933660407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.669316880566112, -7.0, -2.4899584794248346, -7.0, -2.346352974450639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.342422680822206, -2.416640507338281, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779913799850263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5911759503117913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3324384599156054, -7.0, -2.6599162000698504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1931245983544616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5959369062691735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.178113252314632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334152052992287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3933119147002, -7.0, -7.0, -3.041392685158225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2794387882870204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.829946695941636, -7.0, -7.0, -7.0, -4.216297886630392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.306425027550687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2922191399833594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426348573787507, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1271047983648077, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.970588600307352, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605628222007619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0637085593914173, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097618203875831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3483048630481607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0457140589408676, -7.0, -7.0, -7.0, -7.0, -7.0, -4.13510083376572, -3.388988785124714, -7.0, -7.0, -7.0, -7.0, -3.469674772551798, -7.0, -7.0, -7.0, -7.0, -4.979215925719661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.001279282706004, -7.0, -7.0, -7.0, -7.0, -3.24551266781415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.214843848047698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.127049234748905, -7.0, -2.889021422095225, -7.0, -7.0, -3.0549193271238146, -7.0, -7.0, -3.229169702539101, -7.0, -7.0, -2.6672661193822744, -3.117105502761251, -2.586024382386976, -2.151905874537198, -2.839030505034086, -7.0, -3.2116544005531824, -7.0, -2.929418925714293, -7.0, -7.0, -3.620471511314936, -3.2203696324513946, -3.190611797813605, -2.9156636035057732, -2.18700767354478, -3.269045709657623, -7.0, -2.5332635167787148, -3.1838390370564214, -3.4709981696608736, -3.197831693328903, -3.459675139563483, -7.0, -3.256717745977487, -2.7745169657285493, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7288946220436823, -2.2670151976815847, -2.1692368714947654, -2.90444504107691, -7.0, -3.4122925093230463, -7.0, -3.2000292665537704, -7.0, -2.9161906599805376, -3.295127085252191, -7.0, -7.0, -7.0, -7.0, -3.0806986228711293, -2.7078539359785987, -7.0, -7.0, -7.0, -3.5298151966446305, -2.8208579894397, -7.0, -7.0, -3.6509143340199595, -3.1936810295412816, -2.18700767354478, -7.0, -7.0, -7.0, -7.0, -2.7209857441537393, -7.0, -1.9804578922761003, -2.2357808703275603, -1.9448937412598015, -7.0, -2.7993405494535817, -7.0, -2.9444826721501687, -2.9761206182998157, -7.0, -7.0, -7.0, -7.0, -3.2008504980910777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8690143007117155, -7.0, -7.0, -7.0, -2.721260875288632, -2.311753861055754, -7.0, -3.1925674533365456, -2.429752280002408, -7.0, -3.2639740409646225, -7.0, -7.0, -7.0, -2.9722028383790646, -7.0, -7.0, -2.4103084859146473, -2.886678690759447, -7.0, -3.2741578492636796, -2.944975908412048, -3.793021659845983, -7.0, -7.0, -1.7161848669318633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0679383299743406, -7.0, -7.0, -7.0, -2.88394519503428, -3.1838390370564214, -3.485934263771752, -3.5970366649776535, -3.604657972047871, -3.0184924534014725, -7.0, -7.0, -2.7234556720351857, -3.1920095926536702, -2.1358138977625867, -2.890867938811441, -3.068556895072363, -7.0, -7.0, -7.0, -2.5886670891458565, -7.0, -3.1878026387184195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.96543689977626, -3.240798771117331, -3.295786940251609, -3.2245330626060857, -7.0, -2.062545750245087, -7.0, -7.0, -7.0, -7.0, -3.1958996524092336, -3.2089785172762535, -7.0, -7.0, -7.0, -3.931915317081246, -7.0, -7.0, -1.4727977870291447, -2.505421327583281, -1.4473965891520644, -1.761551988564182, -1.4936903561528552, -1.586111033321402, -2.903993825990188, -2.5591881890047756, -2.754857772111842, -2.659440781870318, -2.92272545799326, -2.912487761332324, -3.1359273350054684, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2404244330836076, -7.0, -3.3350565194390915, -3.2062860444124324, -3.20682587603185, -7.0, -7.0, -3.250175948083925, -7.0, -7.0, -7.0, -7.0, -7.0, -3.182414652434554, -2.5854607295085006, -2.8898617212581885, -7.0, -7.0, -2.910357557272878, -7.0, -7.0, -2.8271537957574657, -7.0, -7.0, -4.153589277403475, -7.0, -7.0, -7.0, -2.698535492562001, -7.0, -7.0, -2.9457147140598603, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4102146756795046, -7.0, -3.1838390370564214, -3.2342641243787895, -2.283261543549604, -7.0, -7.0, -7.0, -3.1975562131535367, -2.9079485216122722, -2.364684974834258, -7.0, -2.6354837468149124, -7.0, -7.0, -2.9752019622578523, -1.8703114792547921, -3.184975190698261, -7.0, -7.0, -3.0387525889920166, -2.8109042806687006, -2.5368389039838624, -2.9607085516885565, -3.561247184547739, -7.0, -7.0, -3.2000292665537704, -3.1360860973840974, -7.0, -3.064083435963596, -2.665893545534433, -7.0, -2.88930170250631, -7.0, -3.187238619831479, -2.6198756085000428, -1.888006588777431, -2.968015713993642, -7.0, -7.0, -7.0, -7.0, -7.0, -2.927883410330707, -3.2079035303860515, -1.0909969190427458, -2.8587376566001557, -3.269045709657623, -2.747670701773019, -3.222882875472395, -7.0, -7.0, -3.245265839457461, -7.0, -3.1917303933628562, -7.0, -3.2095150145426308, -2.0529113107194163, -2.019116290447073, -3.100198171834132, -7.0, -3.060697840353612, -7.0, -3.7223665188137702, -2.7714037303044066, -7.0, -7.0, -3.187238619831479, -3.4046627008737222, -2.6089536992758626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2177470732627937, -3.193958978019187, -2.496006598880036, -7.0, -3.4109037084978153, -3.582404298019028, -4.1564248034664555, -7.0, -1.8042111928249227, -3.21842807601491, -3.3769417571467586, -7.0, -2.5024271199844326, -7.0, -2.0453229787866576, -2.7609607093960578, -2.89835945989891, -2.589111464400596, -7.0, -7.0, -3.0023820749327608, -3.2005769267548483, -7.0, -7.0, -2.6138418218760693, -7.0, -1.5460488664017342, -7.0, -7.0, -3.3304949423022174, -3.912540882790638, -7.0, -7.0, -4.1485563851735865, -3.532754378992498, -7.0, -3.943362591700379, -3.5676457844583123, -7.0, -3.605628222007619, -3.987990077819066, -4.191702463559194, -4.112625107295181, -3.302214337325348, -7.0, -3.4112660665121393, -3.363442741279142, -4.050341081834084, -4.62260771535978, -7.0, -4.106027623544182, -3.6414741105040997, -3.590089133690572, -3.641936582803575, -7.0, -4.036688766393468, -4.470278153606753, -7.0, -3.4365894474446383, -7.0, -3.8969669019331548, -7.0, -3.9130717403092508, -3.8781769804915065, -7.0, -7.0, -4.073333361861047, -3.235427436444969, -3.5429498488141786, -2.6956567599361905, -3.5866098063935756, -2.7066771503975513, -1.567188673731501, -7.0, -3.799064719351008, -7.0, -3.3037478776800056, -2.5884781135660653, -3.4708513245261177, -4.1165745397769165, -3.4807253789884878, -3.5039268041935103, -7.0, -3.824776462475546, -7.0, -7.0, -7.0, -3.9208534961212593, -7.0, -7.0, -2.6447485068361107, -3.2530551694438183, -4.477367285224013, -3.2219355998280053, -2.6646419755561257, -3.2317243833285163, -3.1334667946657992, -7.0, -4.471580166756362, -2.949390006644913, -3.6281845080734128, -7.0, -7.0, -3.7575099022757996, -3.159481253887955, -7.0, -7.0, -7.0, -3.1157768761589635, -7.0, -7.0, -3.127188429114518, -3.0099674143453172, -7.0, -3.801393908632056, -7.0, -7.0, -3.249361442065167, -4.064607720130627, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5520398850766086, -2.929418925714293, -2.9206450014067875, -7.0, -2.8698182079793284, -3.0036171757475993, -3.0863598306747484, -3.2487087356009177, -7.0, -3.088726563953855, -7.0, -3.4108764326654217, -2.5814945422908995, -7.0, -7.0, -2.5812414937873656, -3.4750898033890065, -3.130440988463926, -7.0, -3.313234291694724, -2.3347552398696707, -7.0, -3.0847549631793543, -7.0, -2.767897616018091, -7.0, -3.608044405736923, -7.0, -7.0, -4.011217903207838, -2.381037405021494, -3.7975445143617264, -7.0, -7.0, -2.798190099822149, -3.4326486600131068, -3.238297067875394, -7.0, -7.0, -2.8969669019331548, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5434471800817002, -2.909556029241175, -7.0, -7.0, -3.225567713439471, -7.0, -4.3582395081717715, -7.0, -3.215373152783422, -3.226084115975824, -7.0, -7.0, -7.0, -7.0, -3.4760341590784485, -7.0, -2.917687664328476, -2.812690584397959, -3.584670384464349, -2.4168781513835556, -7.0, -7.0, -7.0, -7.0, -7.0, -3.244771761495295, -2.971507781711256, -7.0, -7.0, -2.9066043717249803, -2.3421758524655174, -7.0, -3.3119656603683665, -7.0, -7.0, -3.6090605499300867, -3.0542299098633974, -3.3475251599986895, -7.0, -3.4888326343824008, -7.0, -7.0, -7.0, -3.822778104826663, -7.0, -3.225567713439471, -3.2013971243204513, -3.1638170938993255, -2.9459607035775686, -3.716128602823834, -3.5328817194073974, -7.0, -3.2174839442139063, -7.0, -2.912487761332324, -7.0, -3.273926780100526, -7.0, -7.0, -7.0, -7.0, -7.0, -2.866905912191609, -7.0, -7.0, -7.0, -3.226857570288723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.244771761495295, -7.0, -2.997386384397313, -7.0, -7.0, -7.0, -7.0, -2.50944691990756, -7.0, -7.0, -3.5296869537729165, -7.0, -7.0, -3.1486026548060932, -7.0, -7.0, -7.0, -7.0, -2.9635517335740964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.214684930750601, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8129133566428557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9440876794154343, -7.0, -4.955682940824174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8529676910288186, -3.464365331981961, -3.4166959692478005, -7.0, -7.0, -3.5616180933850865, -3.349588320562463, -7.0, -3.8723893884178207, -7.0, -3.8861521819707967, -7.0, -3.1709947020363, -3.3322364154914434, -7.0, -7.0, -2.965349706108749, -7.0, -7.0, -7.0, -7.0, -7.0, -3.859438535455056, -3.1866133147403364, -3.8555191556678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1129704155080913, -7.0, -7.0, -7.0, -7.0, -3.852479993636856, -7.0, -7.0, -7.0, -7.0, -3.9196532823103643, -3.599810319835993, -7.0, -7.0, -3.6069722055085722, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9028727854460796, -7.0, -7.0, -7.0, -2.942776694080424, -7.0, -7.0, -7.0, -7.0, -3.949194774237982, -3.8750033536000412, -7.0, -2.385202520149573, -3.4662372137034914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.859018143888894, -3.5682604085454175, -3.5775492423982382, -2.976884683384128, -3.5683190850951116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.477796299015296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8573928109209015, -7.0, -7.0, -7.0, -7.0, -3.8694664100808667, -7.0, -2.757633231530858, -7.0, -7.0, -7.0, -7.0, -3.2930861980480297, -3.5495549806880504, -3.405132832229078, -3.1412929600815933, -7.0, -7.0, -7.0, -2.8840019247687874, -7.0, -3.893817223967463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0908546858840182, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4634450317704277, -3.4987239707479048, -3.678108473882829, -3.8806992892187013, -7.0, -3.639021399134131, -7.0, -7.0, -7.0, -3.3710678622717363, -3.8950355974523228, -7.0, -7.0, -7.0, -3.369864957856229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.874191804679071, -7.0, -7.0, -3.525339998131806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.931915317081246, -7.0, -7.0, -7.0, -3.8910354153153106, -3.349609355807689, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2962262872611605, -3.865044721693099, -3.8584770418133405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.89990685758534, -7.0, -3.351409751925439, -7.0, -7.0, -3.8522969658269255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4716339254486073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.849910558301496, -7.0, -7.0, -7.0, -3.4028629579685634, -2.8593002162054635, -3.8479426388452236, -7.0, -7.0, -3.5746677663162267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.014257950635828, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.598133645813238, -7.0, -3.49084770815903, -3.924382677201973, -7.0, -7.0, -7.0, -3.466818209752554, -7.0, -3.592361839214949, -7.0, -2.94873131349413, -7.0, -7.0, -7.0, -2.8937221420714265, -3.888010912245029, -3.8937062930647133, -3.91902576458736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9792751475910233, -3.885361220031512, -7.0, -7.0, -2.7002340851124638, -7.0, -7.0, -2.9516496988610452, -7.0, -7.0, -3.5669086552268032, -7.0, -7.0, -7.0, -3.904715545278681, -7.0, -7.0, -7.0, -3.034066020351715, -3.896415976473123, -7.0, -7.0, -7.0, -3.9056879677118523, -7.0, -7.0, -7.0, -3.5644293269979834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0845487813702075, -2.9276502821475883, -3.0165873673554606, -7.0, -3.903307079964174, -2.978180516937414, -3.4197905861063624, -7.0, -3.8708134239155974, -7.0, -7.0, -3.5030639822276726, -3.2945213361777705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.663748026358395, -7.0, -7.0, -3.269018738474736, -3.518631675212612, -3.024040746405299, -7.0, -3.3807537708039, -7.0, -3.471365065418019, -3.1600454084072833, -3.1717335866238385, -7.0, -3.2039225311945088, -3.1028843304520466, -3.512967742271094, -3.355346451621734, -3.220493466955287, -3.5666394818031004, -3.2647345104508063, -3.509362160076662, -3.6214878645806303, -3.445466833516987, -3.5698418994037615, -3.1893825770776196, -3.2509381626112535, -2.9381410984255703, -3.229216285664953, -3.28315726254433, -3.4114867925782897, -3.502923456589202, -7.0, -3.179067762715081, -3.166892434227915, -3.47643549340525, -3.536450216176842, -3.561757102571363, -3.8149464337908365, -4.382359297519319, -4.257510583190615, -3.350933519151349, -3.1336360861599792, -3.60151678365001, -3.9029813997975027, -3.3891168418357758, -3.47633237460754, -3.2436049203372175, -7.0, -3.4793593328069714, -3.1932916025795164, -3.3417260043823003, -3.8098626051382367, -3.6265456590271294, -3.1224967326576327, -3.235107414899873, -3.3760291817281805, -3.9138138523837167, -3.784866815467607, -3.9170851906405675, -7.0, -3.5201777376898518, -3.231528402060794, -7.0, -3.878004470268025, -3.3225146327132733, -3.2460483982279698, -3.060932757396147, -7.0, -3.4649364291217326, -7.0, -3.502372488311689, -4.061490176624815, -3.6524397475894204, -3.7346798421638807, -3.146914779664304, -3.8542452970661185, -3.7547686638684996, -3.928190948038757, -3.632406672162299, -3.3200943339030964, -3.574956775764507, -3.7119337041617966, -3.070304726837112, -7.0, -7.0, -3.5590130051978, -3.433469803182775, -7.0, -3.053288028212929, -7.0, -3.94215692846749, -3.4327288399232216, -3.1535862281287175, -7.0, -7.0, -7.0, -3.1728363601227105, -3.3675422735205767, -2.9409356881329756, -7.0, -3.301355594441124, -3.867820908045573, -2.9224895437705523, -2.8973914245675183, -3.298033910215436, -3.862250674597925, -3.8527848686805477, -2.904749346460307, -3.865991800126275, -2.828483325349808, -3.8925398046586355, -3.184237029016371, -3.343851525491311, -3.315130317183602, -3.150500596270051, -2.6363054963162855, -2.9452496866988067, -3.878866336956725, -3.2157256645575676, -3.288305130120162, -3.054175147303347, -3.2725377773752373, -3.3842339054735975, -7.0, -2.7525605875980133, -3.5660837841679958, -7.0, -2.5575072019056577, -3.2413059789193195, -2.9340001857393228, -3.8500945943867007, -3.058378568358843, -7.0, -3.0108827245590275, -3.5585885831081994, -7.0, -7.0, -2.9751099896861612, -3.015180059737978, -3.175627764367181, -2.599923484718011, -7.0, -3.295860195625301, -3.10300507069192, -2.9002677932301673, -7.0, -3.192455938511975, -7.0, -7.0, -2.7786591702013523, -3.865400118179301, -3.8543667780408697, -3.8568496787251725, -3.119915410257991, -3.122117536313263, -2.8850217948622974, -3.1813861950832174, -2.883396425218766, -3.170672340315576, -2.7963658130592655, -7.0, -3.0671638826028436, -3.388870545406613, -7.0, -3.0683286043873492, -3.3779736964389593, -2.798468909458224, -3.8836614351536176, -3.5601458398490475, -3.8682916880178557, -2.8550141033002596, -7.0, -3.5515719736742537, -3.557426992378806, -3.0373695748811147, -3.4011706945301334, -2.8028457117801073, -3.4148619761323045, -2.833784374656479, -2.8483011062859602, -3.0060736450562517, -2.8817649496862066, -3.331680308168973, -2.8851041041149954, -7.0, -3.3716834463321415, -2.8996666397554955, -3.12441105858231, -3.8567288903828825, -3.0933716483533886, -3.2613739070666825, -3.4344624462614135, -3.087180544900543, -2.9085352815350225, -2.5419950357274104, -7.0, -3.409087369447835, -7.0, -3.8499719123288503, -3.391170433298193, -3.1157768761589635, -2.9077247853330963, -3.8506462351830666, -7.0, -7.0, -2.7410271294508175, -3.3750536497006407, -3.5709513581793884, -3.8547310172139424, -3.857030798272624, -3.1740016264024247, -3.5571461423183632, -3.8642736968043794, -3.2737880795675203, -3.2536287301937543, -3.5781806096277777, -7.0, -2.8867726430544383, -7.0, -7.0, -7.0, -3.2612033723225187, -7.0, -3.864333055033393, -3.4577683903130203, -2.8565562773114914, -3.2095150145426308, -3.555638487947554, -7.0, -3.355930187078868, -7.0, -7.0, -2.934111116821407, -3.547528576459782, -7.0, -3.221101119961505, -2.7559644840871944, -3.1925674533365456, -7.0, -7.0, -3.8662873390841948, -7.0, -2.6941872061371988, -3.8483738838446016, -3.5629467882404056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8770256158672485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.692935002531138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.215082115013175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517116688085895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.59280571403281, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.42620210284358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669465649765787, -7.0, -7.0, -7.0, -7.0, -7.0, -2.957607287060095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3961993470957363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9885589568786157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.162862993321926, -7.0, -7.0, -3.6885977750811696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979133912871117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.302157695941016, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6644163094134004, -7.0, -7.0, -7.0, -2.9686697017203922, -3.691435152144062, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5688136938468413, -7.0, -7.0, -7.0, -3.3757321813607444, -7.0, -2.9344984512435675, -7.0, -7.0, -7.0, -7.0, -4.264876826403677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.884834412185107, -7.0, -7.0, -3.0090257420869104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.452016565962548, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9190780923760737, -7.0, -7.0, -7.0, -2.940516484932567, -7.0, -7.0, -2.341337525385835, -7.0, -7.0, -7.0, -7.0, -3.418135498425232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8419848045901137, -7.0, -7.0, -7.0, -3.164404585220732, -3.0519239160461065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1365620365899805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.480474061544751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590618948206578, -3.8172347304254983, -7.0, -7.0, -7.0, -4.741380114764399, -7.0, -3.1914510144648953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4277294795038933, -7.0, -3.2113875529368587, -7.0, -7.0, -3.832061614590727, -2.91539983521227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6191281284699492, -7.0, -7.0, -7.0, -2.7238659644435037, -7.0, -7.0, -2.86421433046133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4106406792031247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8910354153153106, -7.0, -7.0, -3.773018073398652, -7.0, -7.0, -7.0, -7.0, -7.0, -3.215108581053093, -2.720159303405957, -7.0, -7.0, -7.0, -7.0, -3.2942457161381182, -7.0, -1.5314789170422551, -7.0, -3.946845113960623, -7.0, -3.433449793761596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7894335518935525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.711174300366762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2182728535714475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.922898380345496, -7.0, -3.436162647040756, -7.0, -3.6601469298342457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3057811512549824, -2.6881972780665557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.512817758564873, -3.1470576710283598, -7.0, -7.0, -3.1502799204175456, -7.0, -7.0, -2.8934843462184863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0311079538669303, -7.0, -7.0, -7.0, -7.0, -7.0, -3.104487111312395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.091519876777007, -7.0, -7.0, -4.2510417205264535, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5160062303860475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.469232742506612, -7.0, -7.0, -4.624055089282426, -7.0, -3.9807530758424656, -7.0, -7.0, -7.0, -3.745933158459443, -3.1518463489431174, -4.7378999822802434, -7.0, -7.0, -3.882399297374088, -7.0, -7.0, -4.403583750366688, -4.290969008948517, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325282992157282, -3.601625479553945, -4.010808597512207, -3.791971201020768, -7.0, -7.0, -3.680531913962837, -7.0, -4.408129681227052, -7.0, -4.110320296840297, -7.0, -4.193291602579516, -7.0, -7.0, -7.0, -7.0, -4.097812407365289, -3.686055033960141, -7.0, -4.100921680320846, -4.315760490665735, -7.0, -7.0, -7.0, -7.0, -2.735648025254694, -7.0, -7.0, -7.0, -3.8562151648112137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.063839803002981, -3.5508667518642625, -4.696999635006528, -7.0, -7.0, -7.0, -4.015349275203567, -7.0, -3.7986950293949935, -7.0, -7.0, -7.0, -7.0, -3.7273378880330803, -4.289365951520032, -7.0, -3.699056854547668, -3.3038437748886547, -7.0, -7.0, -7.0, -4.008961933117199, -4.09294276329501, -3.203304916138483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092896010921856, -7.0, -7.0, -3.2392994791268923, -7.0, -7.0, -4.014688511872338, -7.0, -7.0, -7.0, -7.0, -7.0, -4.633963067531229, -3.184975190698261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.444918753773256, -7.0, -7.0, -7.0, -7.0, -2.9836262871245345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.129002037005967, -7.0, -7.0, -7.0, -7.0, -3.9524049395770247, -7.0, -3.7562556487542333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.168173262170234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.078642684050268, -4.192437349923709, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669660832034381, -3.439472017303169, -1.8363677743629234, -4.375681899659375, -4.067470728941126, -4.1924559385119755, -2.7837142054247326, -2.6475373859320346, -3.2384085612286544, -4.196074810185649, -4.670922750442565, -3.529072695212456, -4.669484242333031, -2.1517877352979724, -2.838055133510821, -3.221898380435438, -2.371806458507416, -1.5208106485077677, -3.891323695765261, -3.391213768955675, -3.970430565175467, -2.921779342902304, -3.4941731532151254, -3.09074056116527, -2.3814459294110506, -3.2387614348007605, -3.628007884353261, -4.193337981247228, -2.3819516782648016, -3.1947732688446826, -3.4387005329007363, -2.3752248996285106, -3.8241537379985804, -3.009541300362376, -3.493476639981276, -2.24256846111836, -3.669307580798836, -3.3928634949578282, -3.495442573988997, -4.669642247025738, -4.192985379093162, -4.068018793276356, -3.523588546610636, -7.0, -2.8114912218475876, -2.526211824863059, -1.6835520910142645, -3.0673219820337434, -3.4941081925565785, -2.8327278295294405, -4.67066324328588, -3.3473114255351692, -3.555856841947366, -3.1016449143243836, -3.394405594501357, -3.7238112811795303, -3.414824845838442, -7.0, -7.0, -2.1934628459235785, -3.465038774776985, -4.368333380751638, -7.0, -7.0, -3.363746249326481, -2.873163691847328, -3.493411575048662, -3.771229095215522, -2.6306215619417825, -3.465289884631858, -2.3819516782648016, -7.0, -4.067833086234314, -7.0, -7.0, -3.1251744325010917, -3.523095838252568, -2.1420343984273713, -2.777807762110115, -2.1400652631443045, -3.6295671250801513, -2.6496500552675855, -3.9751927658771193, -1.824246144417384, -3.2573369850674387, -3.82486004404595, -4.368379871623802, -7.0, -7.0, -2.8298163247172368, -3.971062360951899, -4.192604618582549, -7.0, -3.3860439219322616, -4.192827543293699, -7.0, -4.1921677259471775, -1.9400745984269563, -3.627859092854612, -4.06756366989378, -3.76767522402796, -3.3077471101313116, -2.1646884198754046, -3.6283146059185416, -3.555485109936394, -2.0906088327618333, -4.671802067369607, -2.267754435393497, -3.192818257048295, -3.7679439333520977, -3.465661632552612, -2.662146501450624, -3.472573626968942, -2.8693807441750576, -2.227111556054666, -2.2884260153495157, -4.067842373472633, -3.6310561626158684, -3.525192941934471, -2.604558668716702, -3.1380703930086145, -3.157594120512708, -1.9682317095729847, -3.41740710243536, -4.670366473678122, -3.6704314093606056, -3.152232733334654, -7.0, -7.0, -2.5560831047121524, -4.368277585134854, -4.067210388410234, -7.0, -3.7150278702988717, -3.7661431884987495, -2.412345401424098, -2.9915273183833317, -2.8582894438957243, -3.211645201640165, -3.8253704710918672, -3.6427694415679754, -2.811304977239847, -3.6694656497657867, -2.0410924859104984, -2.6804688266371786, -3.074121305906298, -7.0, -3.6698094834789914, -4.368937374244523, -1.7325864900722077, -4.1921677259471775, -3.8912493191278426, -7.0, -3.495812509045674, -4.368472838440362, -7.0, -2.984802764398631, -3.41749014594413, -2.9812637281762018, -3.466950987999048, -3.009931003697816, -3.4151681799908333, -4.068102335544942, -1.0077450772374068, -3.289133536961551, -3.9705049418128855, -4.669316880566112, -3.5907489792763627, -3.8245534996152175, -3.2225492597345475, -3.970588600307352, -1.4727977870291447, -7.0, -3.349609355807689, -4.669465649765787, -3.773018073398652, -7.0, -2.7142272757687214, -2.0318216577267725, -2.0734792672231546, -1.9937510507229985, -1.894427214702641, -3.1454066540283647, -2.8928363526263907, -3.3282498332470345, -2.9900797402371215, -3.0902766208563244, -2.704905528094701, -3.1483939488110453, -7.0, -7.0, -7.0, -3.4161965568964496, -4.669493538318174, -2.726512260525233, -4.669409867287783, -2.787350048968867, -2.719089096287673, -3.555968299533478, -4.067303385087657, -4.1925209923060756, -3.630122642859312, -7.0, -7.0, -3.590042627883181, -3.343480209334696, -3.467034339643714, -4.192158425582441, -3.2376926476186703, -3.3905260793492746, -4.368277585134854, -4.6694377594224, -3.493959674554181, -4.067638008337918, -3.9709509343454243, -2.5283524591538877, -2.8227388533320608, -2.7317551363799857, -2.5817098278976522, -4.368407763758419, -3.76654296723122, -4.192539577314719, -3.104911380171239, -7.0, -4.192390874971884, -3.4160021857814553, -4.067795935294864, -3.391213768955675, -7.0, -4.368324081979958, -4.067480023931482, -3.177685412596826, -7.0, -3.7661431884987495, -3.0368609076345705, -1.8030605934580088, -7.0, -4.368286884902131, -4.669335479503264, -3.5234491575534, -2.928861184436562, -2.611341248488478, -4.368472838440362, -3.0370371541027277, -3.5634354446522214, -2.799387125085768, -2.9565241471648407, -1.5183510800440148, -3.970356175798233, -4.368426357519688, -2.8834100830783638, -3.22250119856757, -2.845939884498351, -2.2215638729371334, -3.0279145829217957, -2.5490200674618704, -4.669874502489803, -4.669521425079791, -3.493550987970057, -2.3664748411615104, -3.277361630267923, -3.0324355992428838, -2.4224256763712044, -3.0775949873713713, -3.766375662773843, -3.715306800611545, -3.669307580798836, -2.818160816145953, -1.9318626317634804, -2.7214308130498446, -4.669298280832415, -3.495090843570958, -2.9713871920233976, -4.192790397120652, -3.555671015714629, -3.1139804699071245, -2.913255991700841, -1.246372417574952, -2.765355755262699, -3.2247734691895307, -2.9138881796955367, -2.0761361797273654, -3.4945812550135593, -4.192400170360129, -2.7921748216786346, -4.368565785360332, -3.1126701557128023, -3.0485435302695847, -3.1132746924643504, -1.6083564501871657, -2.067913944212041, -2.996411332117376, -3.5254057973664397, -3.2610797766810538, -4.671043183218105, -2.2778454830341475, -2.557470466556451, -4.3686494205837585, -4.6693912715361305, -3.891230722978062, -3.146593102096305, -2.5478209546538007, -4.669540015259445, -3.4937089351985215, -3.3707813182108777, -7.0, -4.0672754881753015, -7.0, -3.3699205499219165, -3.494163873715923, -3.824488447213163, -2.6061403530336102, -2.6471406962754473, -2.873815282752997, -3.14553379809076, -2.6323899806850464, -4.671487568998327, -1.6706849001349, -2.3883298406118683, -2.7165536640656525, -4.1921677259471775, -2.747171268150613, -3.628899564420607, -1.793735581621422, -2.446084263545658, -2.7070387720538625, -3.066875435390042, -4.067294086315977, -4.368258985002859, -2.522055578229381, -3.41433256951902, -3.0576104477254815, -3.5237186027131404, -2.499283752832909, -3.2225306767139887, -1.3069645223546313, -4.669298280832415, -4.067210388410234, -2.1830749482495064, -3.013926173025573, -3.6091339945083023, -3.468716471515472, -3.4178452084766517, -2.9866821797795056, -3.155057554299442, -2.9039309228438346, -2.336011372536, -4.669642247025738, -3.0329454951737977, -2.866686256844357, -3.075769668011446, -2.8583115705066877, -2.3397805350094547, -3.8618130982567225, -2.7890101881385543, -2.2137294343074028, -3.575026109423261, -3.133289356859643, -4.2594903493437135, -2.946653770402097, -3.2843179154306097, -2.4589044615454947, -2.7309167946335178, -3.8295610562993927, -3.275424086374576, -3.316663311410181, -4.681395022773371, -2.399606128061048, -2.9131530351912573, -3.171053801432508, -3.2599827474128915, -3.145182275133918, -3.1532791307030545, -3.4620302575790087, -3.858446960810253, -3.165282220472543, -2.237749208835019, -3.012282485301065, -2.5585711775988758, -2.3656343704164615, -1.5025532094804224, -1.3242559139073553, -3.5276759237063207, -3.1378512485602417, -3.9774675246367477, -1.986032139177172, -2.1561071928505533, -2.483737164091958, -2.5958485054524854, -2.505867886525835, -2.7614548059120496, -7.0, -3.090879205198259, -3.449877525251001, -3.716856246874708, -3.4648488414960115, -2.590458060239311, -3.5737460987713385, -7.0, -1.4447201491172896, -1.8903131072361514, -2.840684167333266, -3.391575762261328, -2.6876640576421096, -3.629437401956792, -1.999376963319447, -3.805976350717563, -2.4215353775078543, -2.470168274303783, -2.731897397433134, -3.327600400007021, -3.245052943739646, -3.1088800834859853, -2.462464848431206, -3.425968732272281, -2.830793899704099, -3.1183169490065796, -2.1140592839654127, -2.4931871179946894, -2.8850922984181877, -2.0499724842459552, -1.9982710654658589, -3.773868689935876, -2.444930287804152, -4.377715941401723, -3.6056641155967877, -2.3135808237099367, -3.063279732418138, -3.0797006039934045, -3.6289552336843007, -7.0, -7.0, -3.765765384928689, -1.919244045161112, -3.2391418455233265, -2.6232218372873692, -3.827304641089735, -2.182519056204964, -2.341675935576924, -2.928597003413005, -3.114694366104735, -4.670190170724935, -2.594517165016293, -4.371178731816287, -2.2133103433761163, -2.7665321827419165, -3.633459273781007, -4.083663837854232, -2.119027360004553, -3.235077325560345, -2.6037564736529744, -4.200622533946479, -3.3516766956918618, -2.1640064186301355, -4.199023425636544, -3.563544974376491, -3.0393956715301442, -3.15243660570801, -7.0, -2.6914826123553053, -7.0, -3.590581789320403, -3.1318076361798615, -1.3300330586491649, -2.4575980750387347, -4.192623200012946, -3.7343374736148895, -2.8862780102586014, -3.638634451316608, -3.3698742236946972, -7.0, -3.39136231553266, -2.7453232539625274, -7.0, -3.4692603825691135, -3.588866164710985, -3.7666730483760844, -2.746794906209887, -2.770179807426844, -2.7103334589000303, -4.067321982033744, -3.5300074899760445, -3.2231342182366127, -2.936276058415254, -3.1691375262036536, -7.0, -3.3690487889403373, -3.391724185094446, -3.3995785469236655, -2.7828019969642233, -4.675420863687349, -7.0, -2.7342634585311685, -3.5934891334542405, -1.7091014698616578, -2.7222918382381724, -3.4113095114320773, -2.726171300154445, -7.0, -3.739493230781615, -3.971535605346295, -3.1810445178354394, -3.771817059827186, -3.89325303090974, -2.9081058394817405, -3.4047347157118026, -4.192307207523569, -3.089709941701364, -1.9275041833607214, -2.992847954780297, -3.35162147940743, -2.6439585524687246, -4.074313493881491, -3.1732657537216933, -3.244359600050387, -2.7264499166393055, -3.105884708669233, -3.3822152230475337, -3.7280470067735045, -4.669605074622326, -7.0, -2.385350881364017, -3.4858367262946746, -3.670626158173298, -3.0304827790555695, -2.2868412551961677, -2.7238477374538714, -2.743392160047862, -2.592343002156279, -3.126630854711548, -3.6703386411274423, -7.0, -3.4659866511569004, -7.0, -3.1037575071243726, -3.013222034507356, -3.3711030620190323, -4.067749492151028, -3.2899418034805743, -4.368351977697725, -2.147473108182756, -3.9710902131371153, -4.673186847835966, -7.0, -4.068723756708053, -4.1962406839924995, -7.0, -4.370910748617717, -3.389440755221461, -3.987978915875482, -3.3517503064858096, -3.524210605449204, -3.721315880605899, -7.0, -7.0, -4.067340578183524, -4.370809056545495, -3.4670991576426897, -3.9729245192283265, -2.6063643015001317, -3.7936419870291562, -3.4893343477460994, -4.369753752372034, -7.0, -2.316492290815025, -4.368909516103976, -4.36839846657925, -2.6100343496463325, -4.368519314386888, -7.0, -3.1123513354275403, -3.848461840439585, -3.8981490303871453, -7.0, -7.0, -3.180357146127899, -7.0, -3.620413692497615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2741578492636796, -3.9592608703276713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.178418620811301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1370374547895126, -3.3979400086720375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02649240705284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.009450895798694, -2.4885507165004443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.790988475088816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6665179805548807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.258972331109386, -7.0, -7.0, -3.02201573981772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.959470702075107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1474403631674783, -7.0, -7.0, -7.0, -7.0, -7.0, -2.271841606536499, -7.0, -2.505421327583281, -7.0, -7.0, -7.0, -7.0, -2.7142272757687214, -7.0, -7.0, -2.199572354905204, -2.443262987458695, -2.829946695941636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.672125577975422, -7.0, -7.0, -7.0, -2.75815462196739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2840244503226454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.863322860120456, -7.0, -7.0, -7.0, -3.2678754193188975, -7.0, -7.0, -7.0, -4.496320655774951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4139699717480614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2764618041732443, -2.0766404436703416, -7.0, -7.0, -7.0, -7.0, -7.0, -4.796765075634327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.131915256105172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9175055095525466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0570952896126675, -7.0, -7.0, -3.838901538594562, -4.746735366871247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.13049458852347, -7.0, -7.0, -7.0, -4.655330558009341, -4.801952234854282, -3.6137361412618714, -7.0, -7.0, -4.049053192149191, -7.0, -7.0, -7.0, -7.0, -7.0, -4.78432481200424, -7.0, -7.0, -7.0, -7.0, -7.0, -4.226359279795683, -4.219767844658398, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9564565834098997, -7.0, -7.0, -3.523247738789921, -2.6464037262230695, -7.0, -7.0, -7.0, -7.0, -3.7760470711817797, -7.0, -4.066251361968962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.397746945996307, -4.678418215723125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2919235758838847, -4.053731315887608, -7.0, -7.0, -7.0, -4.274319524558622, -7.0, -3.6372895476781744, -7.0, -4.154028149603197, -7.0, -7.0, -4.603977505033251, -4.261239071182586, -7.0, -7.0, -7.0, -7.0, -3.591064607026499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.383546091724474, -7.0, -7.0, -7.0, -2.880432465023419, -3.6848004941944112, -7.0, -7.0, -7.0, -3.7737133252770216, -7.0, -4.3261719452891745, -7.0, -7.0, -7.0, -3.436480695009495, -7.0, -7.0, -7.0, -7.0, -3.4668676203541096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2779578252250885, -4.439719438480728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3979400086720375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.001658007471607, -2.717670503002262, -7.0, -2.611723308007342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.311117842662505, -7.0, -3.9529860651970554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.148170613077387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8532925186295284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8832922699131758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9609989878668697, -7.0, -7.0, -2.4782056360118823, -3.8378810064031437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6483600109809315, -2.795184589682424, -7.0, -7.0, -2.6866362692622934, -4.3419881690481885, -2.651278013998144, -7.0, -2.8438554226231614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.385095338854789, -3.12515582958053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7390578478058996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1868151244474543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45484486000851, -2.8115750058705933, -3.028977705208778, -2.797959643737196, -7.0, -7.0, -3.4082530148297936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9813655090785445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.468716471515472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9023768874830473, -7.0, -7.0, -7.0, -4.437782261990645, -7.0, -7.0, -2.2947810463869796, -7.0, -7.0, -2.7551122663950713, -7.0, -7.0, -7.0, -3.9753858489894673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.448087666692341, -7.0, -7.0, -7.0, -7.0, -4.085004999076652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4847227399449667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4473965891520644, -7.0, -7.0, -7.0, -7.0, -2.0318216577267725, -7.0, -7.0, -1.8222770753484876, -1.462397997898956, -1.7124724747396658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3783979009481375, -7.0, -3.030194785356751, -2.7134905430939424, -7.0, -7.0, -7.0, -2.837588438235511, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5482266039717745, -7.0, -7.0, -7.0, -2.960470777534299, -7.0, -7.0, -2.829946695941636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.674467460866252, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4302363534115106, -7.0, -2.6434526764861874, -7.0, -7.0, -7.0, -2.931457870689005, -2.709354775834396, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.258876629372131, -7.0, -7.0, -7.0, -3.229137673741424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7234556720351857, -2.5868684924328913, -2.6138418218760693, -7.0, -7.0, -7.0, -7.0, -3.92279117659816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7267272090265724, -7.0, -7.0, -4.956365355664486, -7.0, -2.6690067809585756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9410142437055695, -7.0, -7.0, -3.666299530410274, -4.050341081834084, -7.0, -2.4456042032735974, -7.0, -3.063896038125994, -2.8739015978644615, -4.402175375031505, -3.354748519560839, -7.0, -3.5645871661717736, -3.7325316092073675, -7.0, -7.0, -3.167004404880978, -7.0, -3.6144753660903954, -3.375355528567644, -7.0, -4.133996379664722, -7.0, -7.0, -7.0, -3.507735178133635, -3.0016255582867375, -7.0, -7.0, -7.0, -7.0, -3.7062738755272857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.353916230920363, -2.8736023939381226, -7.0, -7.0, -4.273313851575582, -3.7067391125831666, -1.8064954803413185, -7.0, -7.0, -7.0, -3.767885263894712, -7.0, -7.0, -4.078746734273607, -4.147428968698656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8816128724783483, -4.077849178425541, -4.571114618015548, -7.0, -3.3334472744967503, -7.0, -3.710836360863743, -7.0, -4.943355994438028, -7.0, -7.0, -2.739572344450092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.987368292714309, -7.0, -4.130473149293476, -3.611888452446593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5212252826767023, -7.0, -3.149834696715785, -7.0, -2.815577748324267, -4.000911062131223, -2.5266622930104643, -7.0, -7.0, -3.3204924754334133, -7.0, -4.0285712526925375, -7.0, -7.0, -7.0, -2.615799802742291, -7.0, -3.1705550585212086, -7.0, -7.0, -2.3649528098608803, -7.0, -7.0, -7.0, -7.0, -7.0, -3.369092109159725, -7.0, -7.0, -4.472727202912817, -2.6371923965070563, -4.0444064726812945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1190908524217216, -2.705007959333336, -7.0, -7.0, -7.0, -7.0, -7.0, -4.035889806536247, -7.0, -2.741151598851785, -7.0, -7.0, -3.3464181789371965, -7.0, -7.0, -3.6898414091375047, -7.0, -3.5136818186999896, -7.0, -7.0, -2.8744818176994666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8943160626844384, -3.3044905277734875, -7.0, -7.0, -3.6265456590271294, -7.0, -7.0, -3.7405995128111567, -7.0, -7.0, -7.0, -3.446304113951924, -3.3848012789620823, -3.2990712600274095, -7.0, -7.0, -7.0, -3.1288375888610482, -3.1354506993455136, -7.0, -2.717046067981814, -3.2764618041732443, -3.1936810295412816, -3.2697930438612297, -4.287465805343229, -3.4776999283321306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8574531170352664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.050379756261458, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.09377178149873, -7.0, -7.0, -4.284092190642834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7075701760979367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.815957044839122, -7.0, -7.0, -7.0, -7.0, -3.6582022533870147, -7.0, -7.0, -7.0, -7.0, -7.0, -3.436692597664054, -3.614264287358705, -7.0, -2.5895772957033327, -3.3473070513532233, -7.0, -7.0, -7.0, -2.7573960287930244, -7.0, -7.0, -4.561637954564607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9130565819531333, -7.0, -2.561101383649056, -7.0, -3.739038047296087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.682145076373832, -3.2232362731029975, -2.723044991643445, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6702458530741238, -2.414137362184477, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5613399414589013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7475930498107353, -7.0, -2.7649229846498886, -7.0, -7.0, -7.0, -7.0, -2.3521825181113627, -7.0, -2.9138138523837167, -7.0, -2.710963118995276, -7.0, -2.8830933585756897, -7.0, -3.743718761114515, -7.0, -7.0, -7.0, -7.0, -7.0, -2.660865478003869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.2454076516168293, -2.6074550232146687, -7.0, -7.0, -2.3531465462139796, -2.493225621510431, -7.0, -2.6314437690131722, -2.0316969361864436, -7.0, -4.069557104582695, -7.0, -7.0, -7.0, -2.3944516808262164, -7.0, -2.655138434811382, -2.6434526764861874, -3.2606845578001846, -7.0, -7.0, -7.0, -3.8933257432834987, -7.0, -7.0, -1.8178957571617955, -7.0, -7.0, -2.2438644894340767, -7.0, -7.0, -7.0, -3.3712526291249394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4614985267830187, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2052043639481447, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6063455307542247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0425755124401905, -7.0, -2.554489160003819, -7.0, -7.0, -7.0, -7.0, -2.7032589244882543, -7.0, -7.0, -7.0, -7.0, -7.0, -2.688419822002711, -7.0, -1.761551988564182, -7.0, -7.0, -7.0, -7.0, -2.0734792672231546, -2.199572354905204, -1.8222770753484876, -7.0, -2.0822723230247666, -1.9395192526186187, -2.805160901599434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6273658565927325, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9489017609702137, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6364878963533656, -2.941511432634403, -7.0, -7.0, -7.0, -2.6589648426644352, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.695612995691491, -7.0, -7.0, -7.0, -7.0, -2.690196080028514, -2.7015679850559273, -7.0, -7.0, -7.0, -2.665580991017953, -3.4239009185284166, -2.0346785800579923, -2.603144372620182, -7.0, -2.6532125137753435, -7.0, -7.0, -2.8614490626261007, -7.0, -4.199412322193509, -7.0, -7.0, -2.6580113966571126, -7.0, -7.0, -7.0, -2.741939077729199, -7.0, -7.0, -7.0, -2.3085644135612386, -7.0, -1.8095597146352678, -2.2576785748691846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2012453527019566, -7.0, -7.0, -2.439332693830263, -3.910368234326188, -7.0, -7.0, -3.7717344253867693, -7.0, -2.325310371711061, -7.0, -7.0, -2.398518682284506, -2.8948696567452528, -7.0, -7.0, -7.0, -7.0, -4.195705974747098, -3.0930713063760633, -7.0, -7.0, -7.0, -7.0, -2.9590413923210934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6364878963533656, -7.0, -2.3909351071033793, -7.0, -3.1288837020997735, -4.831360987247442, -7.0, -7.0, -4.547663964631684, -7.0, -7.0, -2.2911467617318855, -7.0, -2.3502480183341627, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9459607035775686, -7.0, -2.7693773260761385, -7.0, -2.4274861090957858, -2.383815365980431, -2.1764317486708507, -2.591064607026499, -7.0, -3.7170668969538765, -4.74907122781966, -4.2735336801512975, -7.0, -7.0, -7.0, -3.716754357432697, -7.0, -3.620880470789483, -7.0, -3.7392162193937257, -7.0, -7.0, -7.0, -3.795167189715199, -7.0, -3.9149246482051483, -4.353030975765281, -7.0, -4.008621460185338, -7.0, -4.801190970259465, -3.8826383616960385, -3.8321113371375928, -3.6029277128591892, -7.0, -7.0, -7.0, -7.0, -3.802884849425611, -7.0, -7.0, -7.0, -4.1830989401001295, -3.8078055322706246, -4.242541428298384, -4.058957178777311, -4.353165804965758, -3.2159722526627705, -3.9706722426897194, -3.1332194567324945, -7.0, -3.7059064557003114, -2.269590767796998, -7.0, -7.0, -7.0, -3.846609234225857, -7.0, -7.0, -4.07733156112899, -3.845129059940837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.057000080912976, -4.135673194419237, -5.173078410081454, -7.0, -3.325515663363148, -7.0, -4.011538726678542, -7.0, -4.943162980164098, -3.625312450961674, -7.0, -7.0, -7.0, -7.0, -4.281215232611316, -7.0, -3.6664243725187595, -7.0, -3.6858611158657704, -7.0, -7.0, -3.7619922371773242, -4.264806021368701, -7.0, -4.635393259371746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2205874658721743, -2.7573960287930244, -2.288760085189078, -7.0, -2.711807229041191, -3.69810054562339, -7.0, -2.3283796034387376, -7.0, -3.0956574403284893, -7.0, -3.550890503921033, -7.0, -7.0, -7.0, -3.2835273648616936, -7.0, -3.466125870418199, -3.117602691690084, -7.0, -7.0, -7.0, -7.0, -7.0, -2.194514341882467, -7.0, -3.8440420420410164, -7.0, -7.0, -7.0, -3.074193540963896, -4.743133317595437, -7.0, -7.0, -2.2747349848727385, -7.0, -7.0, -7.0, -7.0, -2.847572659142112, -7.0, -7.0, -7.0, -7.0, -3.1158600345090313, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8102325179950842, -7.0, -7.0, -7.0, -7.0, -3.5931752634781025, -3.8212514315459414, -7.0, -7.0, -7.0, -7.0, -3.282215572818346, -2.91539983521227, -7.0, -2.8512583487190755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2665844470668635, -3.2960066693136723, -7.0, -1.8297631007235549, -2.058910834034071, -3.000867721531227, -7.0, -3.4363217001397333, -7.0, -7.0, -7.0, -3.7444494574467986, -3.682506085939011, -7.0, -7.0, -7.0, -7.0, -4.2746657690813885, -7.0, -7.0, -7.0, -4.0163855906671175, -7.0, -3.9673139182870836, -3.8093801242339063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0806264869218056, -3.4893959217271293, -7.0, -2.722633922533812, -7.0, -3.5551246908736487, -7.0, -7.0, -7.0, -7.0, -2.9206450014067875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2077241069247497, -7.0, -7.0, -7.0, -7.0, -3.388278863459639, -7.0, -7.0, -3.805998980240112, -7.0, -7.0, -3.227372442289636, -7.0, -7.0, -7.0, -7.0, -2.851869600729766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.758684849882441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.917190308511564, -7.0, -7.0, -2.1363681983890817, -3.517631867509287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.562566443285449, -7.0, -2.69810054562339, -7.0, -7.0, -2.906335041805091, -7.0, -2.821513528404773, -7.0, -7.0, -2.720159303405957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.251232527301566, -7.0, -7.0, -2.2385478876813276, -3.1283184772596804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.041708420891436, -7.0, -7.0, -7.0, -7.0, -3.368286884902131, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5171958979499744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3483048630481607, -2.35729944896187, -3.044539760392411, -7.0, -2.9253120914996495, -7.0, -3.376550888177972, -2.9258275746247424, -7.0, -7.0, -7.0, -7.0, -2.7291647896927698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6967930850817443, -7.0, -7.0, -7.0, -2.725094521081469, -7.0, -7.0, -2.7041505168397992, -2.623766000133931, -7.0, -3.5951654147902294, -7.0, -2.8254261177678233, -7.0, -7.0, -7.0, -7.0, -3.5577477416414682, -3.1540518415007632, -7.0, -7.0, -7.0, -4.2619841106268845, -7.0, -7.0, -1.9423181526298499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9771746760201876, -2.673020907128896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4693310102934105, -3.45408227073109, -3.111262513659065, -7.0, -7.0, -7.0, -3.6091317690974987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6049078342007888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4936903561528552, -7.0, -7.0, -7.0, -7.0, -1.9937510507229985, -2.443262987458695, -1.462397997898956, -2.0822723230247666, -7.0, -1.7294205830535974, -7.0, -2.885361220031512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3854275148051305, -7.0, -2.743901550485179, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7007037171450192, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6834973176798114, -7.0, -3.551327988003846, -4.849388698815317, -7.0, -7.0, -7.0, -2.3738311450738303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.821513528404773, -2.3733061592354647, -7.0, -7.0, -7.0, -2.7193312869837265, -7.0, -7.0, -7.0, -2.833784374656479, -7.0, -7.0, -3.436480695009495, -3.2650537885040145, -7.0, -7.0, -7.0, -3.348694190265541, -2.6488477083728936, -3.111598524880394, -7.0, -4.024362504353283, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1031192535457137, -2.9385197251764916, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7011360660925265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0508554673866186, -7.0, -7.0, -7.0, -3.655842471411064, -7.0, -7.0, -3.7774268223893115, -7.0, -7.0, -7.0, -7.0, -2.3530089588591445, -2.6339731557896737, -3.1670217957902564, -7.0, -7.0, -7.0, -3.894890402801413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.73457262535556, -7.0, -3.159266331093494, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0813473078041325, -7.0, -3.1225435240687545, -2.705007959333336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.189506827111484, -7.0, -2.0653929615619915, -3.390332367662027, -4.74967448988999, -4.2753343934257675, -7.0, -4.132019415952632, -7.0, -3.723209310405111, -4.402845781655725, -3.589303181209229, -7.0, -3.5661230992888213, -3.276748941031243, -4.181795965324855, -4.804541496940634, -3.3983740861513563, -7.0, -3.351743615110992, -3.5084527607498646, -4.007619774517403, -4.611574624300936, -7.0, -4.500414877756268, -3.8870543780509568, -3.582688206299978, -3.6057358938767465, -7.0, -4.628184508073413, -7.0, -7.0, -3.803550997782215, -7.0, -4.584285983002637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6948157149250407, -3.9742813588778305, -7.0, -4.097650577155367, -3.3551747163388153, -2.1382641781004526, -7.0, -7.0, -7.0, -3.9445073472720127, -3.8027737252919755, -7.0, -7.0, -3.6713888558913363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8925398046586355, -7.0, -7.0, -3.4561951669015265, -4.078026116493543, -7.0, -7.0, -3.3412366232386925, -7.0, -4.137322456100344, -7.0, -7.0, -3.332034277027518, -7.0, -7.0, -7.0, -7.0, -4.282984440133955, -7.0, -7.0, -7.0, -3.688182437748698, -7.0, -7.0, -4.130891023495683, -3.721539758930226, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023334782538309, -7.0, -7.0, -7.0, -7.0, -7.0, -2.326466600325224, -7.0, -7.0, -7.0, -2.8220045340895257, -4.002597980719909, -2.137354111370733, -2.857935264719429, -7.0, -3.3231833228365364, -7.0, -3.5169013267145064, -3.0958664534785427, -7.0, -7.0, -2.9207939364157585, -3.286456469746983, -3.1762359997608716, -7.0, -7.0, -2.7402310651617, -7.0, -3.140193678578631, -7.0, -7.0, -7.0, -3.547713186231703, -7.0, -7.0, -4.172237947171315, -2.6552077674159724, -4.044712189670485, -7.0, -7.0, -2.92272545799326, -2.9175055095525466, -7.0, -7.0, -7.0, -3.462397997898956, -7.0, -7.0, -7.0, -7.0, -3.724849087629386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.86053763630648, -7.0, -7.0, -7.0, -7.0, -3.82633400562222, -7.0, -7.0, -3.39208111979816, -7.0, -3.4692111685525626, -7.0, -7.0, -2.8965262174895554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.312811826212088, -7.0, -7.0, -3.0278590441755795, -7.0, -2.9995654882259823, -7.0, -7.0, -3.478999131673357, -7.0, -3.449324093098727, -3.689486448364248, -3.307496037913213, -3.279210512601395, -7.0, -7.0, -3.7992486255497773, -2.965201701025912, -7.0, -2.548184610545108, -3.473737151713407, -3.2043913319193, -3.669828061332521, -4.288338669395164, -3.7816835845073506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5574771250690587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.782472624166286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6921416093667836, -3.2461291256634364, -7.0, -7.0, -7.0, -3.4019172505175748, -7.0, -7.0, -4.2849718546478694, -7.0, -7.0, -7.0, -3.1987945001755986, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1094660499520925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8363241157067516, -4.18587254245639, -7.0, -7.0, -7.0, -3.6527296960692475, -3.073993133323909, -7.0, -7.0, -7.0, -7.0, -7.0, -3.145662470707546, -7.0, -7.0, -2.3544285972760934, -3.3235900970681924, -7.0, -2.8419848045901137, -7.0, -2.885926339801431, -7.0, -2.8992731873176036, -3.9618480590183243, -7.0, -7.0, -7.0, -2.1077750894177876, -7.0, -7.0, -2.4138583422700264, -7.0, -3.0049658871068234, -2.506505032404872, -3.5667516576717624, -7.0, -2.638988159343682, -7.0, -7.0, -7.0, -2.8305886686851442, -7.0, -7.0, -7.0, -2.008363563484802, -3.740362689494244, -2.82865989653532, -7.0, -3.2177470732627937, -7.0, -7.0, -7.0, -2.8561244442423, -7.0, -7.0, -7.0, -7.0, -7.0, -3.745270023988988, -2.7795964912578244, -7.0, -7.0, -7.0, -7.0, -3.024074987307426, -7.0, -7.0, -4.229886529245892, -7.0, -2.412180447786648, -7.0, -7.0, -7.0, -7.0, -2.812244696800369, -7.0, -3.0073209529227447, -2.60422605308447, -7.0, -7.0, -7.0, -7.0, -3.1260014567876744, -7.0, -2.8260748027008264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9984178689901253, -7.0, -7.0, -2.88024177589548, -7.0, -7.0, -7.0, -7.0, -2.504244254358882, -7.0, -3.231251077479202, -2.2479732663618064, -2.5943925503754266, -7.0, -2.6734816970733473, -3.151982395457474, -2.812244696800369, -3.571825249040829, -2.9658398015278347, -7.0, -7.0, -7.0, -3.563765775330468, -7.0, -2.8410464654093035, -1.816097135847089, -2.993876914941211, -7.0, -2.8615344108590377, -7.0, -7.0, -7.0, -3.203984244420126, -7.0, -7.0, -7.0, -2.7781512503836434, -7.0, -3.414137362184477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7944880466591697, -2.5241796783007557, -3.1705550585212086, -7.0, -7.0, -7.0, -7.0, -3.6133484255114983, -7.0, -7.0, -7.0, -7.0, -2.4835872969688944, -7.0, -2.5098742850047193, -2.9978230807457256, -7.0, -2.907411360774586, -7.0, -7.0, -7.0, -2.4431940560100167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.586111033321402, -7.0, -7.0, -7.0, -7.0, -1.894427214702641, -2.829946695941636, -1.7124724747396658, -1.9395192526186187, -1.7294205830535974, -7.0, -3.1690863574870227, -7.0, -7.0, -2.9537596917332287, -2.8709888137605755, -2.847572659142112, -2.7781512503836434, -7.0, -7.0, -7.0, -7.0, -7.0, -2.803115554890027, -7.0, -2.48572142648158, -2.34960126544933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388988785124714, -7.0, -2.7701152947871015, -2.787460474518415, -7.0, -7.0, -7.0, -2.842609239610562, -7.0, -7.0, -3.035829825252828, -2.78993308093175, -3.565611724902059, -4.849754066288477, -7.0, -7.0, -7.0, -2.5510431647048075, -7.0, -7.0, -2.921166050637739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7026028413404273, -7.0, -7.0, -2.7715874808812555, -7.0, -7.0, -2.3654879848909, -7.0, -7.0, -7.0, -2.8195439355418688, -3.1536624535754956, -2.1403284340687447, -2.776701183988411, -7.0, -7.0, -3.3712526291249394, -2.7032913781186614, -2.8779469516291885, -2.9523080096621253, -3.5029184960299538, -7.0, -7.0, -7.0, -3.0549001914148866, -7.0, -3.1420764610732848, -2.567966906823154, -7.0, -7.0, -7.0, -7.0, -7.0, -2.749736315569061, -2.967079734144497, -7.0, -7.0, -2.9025467793139916, -7.0, -7.0, -7.0, -7.0, -1.834536299764702, -7.0, -7.0, -2.5722906061514177, -3.2493259940843204, -7.0, -7.0, -3.3085644135612386, -7.0, -7.0, -7.0, -7.0, -2.384583802303419, -2.99211148778695, -7.0, -7.0, -7.0, -7.0, -4.099463094164411, -3.1571544399062814, -7.0, -7.0, -7.0, -7.0, -3.044147620878723, -7.0, -7.0, -7.0, -7.0, -2.775974331129369, -7.0, -7.0, -2.8561244442423, -7.0, -2.9809119377768436, -7.0, -3.9720175986740154, -7.0, -4.354529398223967, -7.0, -2.715446198616883, -3.85101360682367, -7.0, -7.0, -7.0, -7.0, -2.2145127046981408, -3.1922886125681202, -2.6815427260943268, -2.7965743332104296, -7.0, -7.0, -7.0, -2.815577748324267, -2.2894774663446023, -7.0, -2.7101173651118162, -2.8344207036815328, -2.3615704544315608, -7.0, -7.0, -3.8440938665398194, -4.750593239836581, -7.0, -2.6976651626476746, -7.0, -7.0, -7.0, -7.0, -3.4140496895261268, -7.0, -3.348772013844623, -4.278524964737017, -4.359038228379384, -7.0, -3.001975881244265, -7.0, -7.0, -3.7015775783778904, -7.0, -4.3117856375382315, -7.0, -7.0, -7.0, -3.78773669147004, -4.087248867795658, -7.0, -7.0, -7.0, -7.0, -3.7533957859406746, -7.0, -4.108463541203595, -3.9455178220778397, -7.0, -7.0, -7.0, -7.0, -4.35694321958013, -3.4926731024258193, -7.0, -7.0, -3.877129363769828, -3.3577019756452953, -1.873993263073632, -7.0, -7.0, -7.0, -4.070936326599144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.196921944819459, -7.0, -7.0, -3.6626822956379184, -3.867666888451123, -7.0, -7.0, -7.0, -7.0, -3.7125023868498763, -7.0, -7.0, -7.0, -4.072433725968388, -7.0, -7.0, -7.0, -4.285669805960068, -7.0, -3.6844862921887342, -3.5869247081448203, -4.168939213835978, -7.0, -7.0, -3.910272131395313, -3.8691143269793753, -7.0, -4.637369631484764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.683732992153464, -7.0, -2.8943160626844384, -7.0, -3.1427022457376155, -3.5304131631775952, -3.17868923977559, -7.0, -7.0, -7.0, -7.0, -3.2701216261422252, -3.1354506993455136, -7.0, -7.0, -3.0759846847441197, -3.0109356647043852, -3.494432898726399, -7.0, -7.0, -2.4911069009364373, -3.1248301494138593, -7.0, -2.7218106152125467, -7.0, -7.0, -3.8561244442423, -7.0, -7.0, -7.0, -2.740402169016284, -3.7031271673456327, -7.0, -7.0, -7.0, -2.9476787399369364, -7.0, -7.0, -2.851869600729766, -3.479863113023098, -7.0, -3.024485667699167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1316186643491255, -7.0, -3.1734776434529945, -4.039037170468973, -7.0, -7.0, -2.8750612633917, -3.6144753660903954, -3.532818053867167, -7.0, -7.0, -3.703635237583896, -7.0, -3.179052438944499, -7.0, -7.0, -2.655618583541222, -7.0, -7.0, -7.0, -7.0, -3.082066934285113, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0398105541483504, -7.0, -3.0484418035504044, -3.752893154884594, -3.1335389083702174, -3.194514341882467, -7.0, -3.759592308645975, -7.0, -2.728962179713866, -7.0, -7.0, -7.0, -3.8019750750279386, -7.0, -7.0, -7.0, -3.6224212739756703, -2.7573960287930244, -7.0, -3.5126176996829153, -3.7901443650429005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.509202522331103, -7.0, -7.0, -3.464072042578179, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6290696425437527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9235030669421045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5092697453761876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.656098202012832, -7.0, -3.2989621819201167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7626504349355674, -7.0, -7.0, -7.0, -2.09443434895989, -2.470168274303783, -7.0, -7.0, -7.0, -7.0, -7.0, -2.404884002555489, -7.0, -7.0, -7.0, -3.2795129520575665, -7.0, -7.0, -7.0, -2.727947709544797, -7.0, -3.0394141191761372, -4.5675439155731015, -3.0128372247051725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.651859269246949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6893088591236203, -7.0, -3.1610683854711747, -7.0, -7.0, -7.0, -7.0, -2.979548374704095, -2.9854264740830017, -7.0, -3.1277525158329733, -7.0, -7.0, -7.0, -7.0, -3.358734127198011, -7.0, -7.0, -7.0, -7.0, -3.440279213235588, -7.0, -7.0, -3.1601682929585118, -4.237543738142874, -2.9689496809813427, -7.0, -7.0, -2.9818186071706636, -7.0, -7.0, -7.0, -7.0, -3.1202447955463652, -7.0, -2.706148588963142, -7.0, -2.7996850909091004, -7.0, -2.7561201505007595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9728434433197877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5205817782975743, -7.0, -7.0, -7.0, -3.6631038705467858, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.739888655084543, -3.220238879934404, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9661417327390325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6238692683503024, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0856472882968564, -7.0, -7.0, -7.0, -7.0, -3.6927267769512566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.903993825990188, -7.0, -3.2962262872611605, -2.957607287060095, -3.215108581053093, -3.1454066540283647, -7.0, -7.0, -2.805160901599434, -7.0, -3.1690863574870227, -7.0, -2.7734207232906103, -7.0, -3.079543007402906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.607439703915141, -7.0, -7.0, -2.9694159123539814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0425755124401905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9459607035775686, -7.0, -3.7481104674949837, -7.0, -3.427783543301038, -7.0, -7.0, -7.0, -3.384263785722803, -3.2005769267548483, -7.0, -2.856326019777088, -3.0195316845312554, -7.0, -7.0, -7.0, -7.0, -3.1547282074401557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5284024379536176, -2.583765368285, -7.0, -7.0, -3.383931471978156, -7.0, -7.0, -3.8069257768837317, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1085650237328344, -7.0, -7.0, -7.0, -7.0, -2.464132404475205, -1.7791840558214114, -7.0, -7.0, -7.0, -7.0, -3.1489109931093564, -7.0, -7.0, -3.0784568180532927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7983052820219765, -7.0, -3.684665864025861, -7.0, -3.902644287189708, -7.0, -7.0, -3.8546946070403574, -3.243286146083446, -7.0, -7.0, -7.0, -7.0, -3.533772058384718, -3.2422929049829308, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.486430478854434, -7.0, -7.0, -4.324416222094499, -7.0, -3.439558242774259, -7.0, -7.0, -7.0, -3.1539672216454786, -2.683981060007928, -4.1368790398755175, -7.0, -3.7585334222372864, -2.6727134419961223, -4.185787609647107, -3.9042149799590122, -7.0, -3.9929288899577164, -4.400814192267559, -7.0, -7.0, -4.616023654653256, -7.0, -3.9277500763288153, -7.0, -2.7673396555398124, -7.0, -7.0, -7.0, -3.9837164739137494, -7.0, -7.0, -7.0, -4.287969594835454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9240551874495404, -7.0, -7.0, -4.579657861593733, -4.318626717029967, -3.7880268840958036, -7.0, -7.0, -7.0, -2.8101224941992746, -7.0, -3.3666097103924297, -7.0, -3.5591881890047756, -7.0, -7.0, -3.7816835845073506, -7.0, -7.0, -3.5800121125294244, -4.205177287388274, -7.0, -7.0, -4.066400475955629, -3.535682839461785, -4.174478483315079, -7.0, -7.0, -7.0, -3.539494292837515, -7.0, -7.0, -7.0, -7.0, -7.0, -3.718750734739665, -3.0332628758844793, -4.292411148837825, -7.0, -7.0, -3.0169289290369714, -7.0, -3.051023823533444, -7.0, -3.7673149191811577, -3.7934411329776636, -7.0, -3.1484235191525474, -7.0, -3.1157768761589635, -3.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.719248398447946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03322264667025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3469589986735295, -3.8438320895564417, -7.0, -7.0, -3.09968064110925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.346059433052574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7288405683399715, -7.0, -4.042328460240732, -3.1212314551496214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1763806922432702, -7.0, -3.7754648093457392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.28602960050819, -3.5043349118024643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.596377143997599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5543680009900878, -7.0, -7.0, -7.0, -7.0, -7.0, -3.631950826259217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6603151495574515, -7.0, -7.0, -7.0, -3.6240757311456826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0634941988333124, -3.604657972047871, -2.515873843711679, -7.0, -3.5773998759334207, -7.0, -7.0, -7.0, -2.6830470382388496, -7.0, -7.0, -4.560564148979884, -7.0, -7.0, -7.0, -2.3891660843645326, -7.0, -7.0, -2.694605198933569, -7.0, -7.0, -7.0, -3.7372522944432975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5921767573958667, -2.8976270912904414, -2.8128298304416357, -7.0, -7.0, -7.0, -7.0, -2.5622928644564746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.189450207084212, -7.0, -7.0, -7.0, -7.0, -2.635282637998212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.69810054562339, -2.82865989653532, -7.0, -3.479169445805911, -2.5269850685599957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9283958522567137, -7.0, -7.0, -2.829303772831025, -7.0, -3.7651094972067183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2357808703275603, -3.802020751771976, -7.0, -7.0, -2.73559889969818, -4.260651650298644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.734977527824511, -7.0, -3.447778009294621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0507663112330423, -7.0, -7.0, -7.0, -3.4780973196422216, -7.0, -7.0, -7.0, -2.1782573208121887, -7.0, -7.0, -2.526769911517248, -7.0, -7.0, -7.0, -2.8785217955012063, -7.0, -7.0, -3.428199609263877, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5998830720736876, -7.0, -2.5591881890047756, -7.0, -3.865044721693099, -7.0, -2.720159303405957, -2.8928363526263907, -7.0, -7.0, -7.0, -2.885361220031512, -7.0, -2.7734207232906103, -7.0, -2.08278537031645, -1.8210037503009116, -2.6589648426644352, -7.0, -2.7027176733035243, -7.0, -7.0, -7.0, -7.0, -7.0, -3.052886235256382, -7.0, -2.6725596277632757, -2.5888317255942073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2972131959896416, -7.0, -7.0, -4.371726504556958, -7.0, -2.5440680443502757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2234959409623944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.022057020601165, -7.0, -7.0, -7.0, -3.6292056571023035, -7.0, -3.041392685158225, -2.717670503002262, -2.875928984922927, -7.0, -7.0, -7.0, -7.0, -2.9237619608287004, -7.0, -7.0, -7.0, -2.709269960975831, -7.0, -7.0, -7.0, -7.0, -2.8449429071382, -7.0, -7.0, -7.0, -3.830203598925704, -7.0, -7.0, -3.765072201102792, -7.0, -7.0, -2.8135809885681917, -2.6020599913279625, -3.1528995963937474, -2.8419848045901137, -7.0, -7.0, -7.0, -7.0, -3.984506541488811, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6344772701607315, -2.2317243833285163, -7.0, -7.0, -7.0, -3.4154741681092355, -4.831216882631442, -7.0, -2.5014016307667424, -3.504915494713347, -3.065206128054312, -7.0, -1.1903316981702914, -7.0, -2.0552083863593693, -2.271221849767887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.39375064034808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.399950474386311, -7.0, -7.0, -7.0, -4.576283747648257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7858279199958655, -7.0, -7.0, -7.0, -7.0, -7.0, -4.705324784486743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1955537388251134, -4.572871602200481, -7.0, -3.2667802957655163, -7.0, -7.0, -7.0, -3.502923456589202, -3.791129000727286, -2.9382694834629115, -7.0, -4.143420785129937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.188928483760853, -7.0, -7.0, -4.356350978030569, -4.503277576759695, -5.1728159401009215, -7.0, -3.3066394410242617, -7.0, -4.612709702550948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.180412632838324, -3.55339751012388, -7.0, -2.8424532150060804, -2.2528530309798933, -3.827993553315733, -4.087627637093355, -7.0, -4.15732578507467, -7.0, -7.0, -7.0, -3.5390760987927767, -7.0, -7.0, -7.0, -7.0, -7.0, -3.517943279436479, -7.0, -2.806519134080705, -7.0, -7.0, -7.0, -7.0, -2.4401216031878037, -7.0, -7.0, -7.0, -4.629379013907319, -2.7311857076340007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.497067936398505, -7.0, -7.0, -2.583765368285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.64221712947388, -7.0, -7.0, -7.0, -2.523095838252568, -7.0, -7.0, -7.0, -2.6273658565927325, -3.436480695009495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.625312450961674, -2.665580991017953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.513217600067939, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7299742856995555, -7.0, -7.0, -7.0, -2.2933625547114453, -2.833890494261626, -2.6580113966571126, -7.0, -3.1277525158329733, -7.0, -2.7538893314598334, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5224442335063197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.284566077266973, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5165353738957994, -7.0, -7.0, -7.0, -7.0, -7.0, -4.15463695951842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.926856708949692, -2.6414741105040997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.281169773409736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.337459261290656, -7.0, -2.788875115775417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9867717342662448, -3.923681432601159, -7.0, -7.0, -7.0, -7.0, -7.0, -2.597695185925512, -4.559248104088254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8600383898071935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.803542463881351, -7.0, -7.0, -2.619788758288394, -7.0, -7.0, -2.428134794028789, -2.506505032404872, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0305997219659515, -7.0, -7.0, -7.0, -7.0, -7.0, -2.339782584655998, -7.0, -7.0, -3.617393545748848, -7.0, -7.0, -7.0, -2.414973347970818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.751279103983342, -7.0, -3.9172428579074663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.760987603193131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5229655954919865, -4.099335277685958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.941180036600083, -7.0, -7.0, -7.0, -7.0, -7.0, -2.354108439147401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.47410694801697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8102325179950842, -7.0, -7.0, -4.029611012535356, -7.0, -7.0, -7.0, -2.447158031342219, -2.380211241711606, -7.0, -7.0, -2.754857772111842, -7.0, -3.8584770418133405, -7.0, -7.0, -3.3282498332470345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.08278537031645, -7.0, -2.7007037171450192, -2.5390760987927767, -7.0, -2.5443781439578124, -7.0, -7.0, -7.0, -3.918344928962275, -7.0, -3.3326404103874627, -2.305351369446624, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6522463410033232, -2.3384564936046046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4756711883244296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5854607295085006, -3.686770290087891, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.606381365110605, -3.037824750588342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6178387477170033, -7.0, -2.693726948923647, -7.0, -7.0, -7.0, -7.0, -2.3201462861110542, -7.0, -7.0, -2.724275869600789, -7.0, -7.0, -2.60422605308447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.546542663478131, -4.607283416186098, -2.2600713879850747, -7.0, -3.7567881987681178, -7.0, -7.0, -2.7331972651065692, -7.0, -3.1179338350396413, -2.7671558660821804, -2.7741518589547103, -7.0, -7.0, -7.0, -5.098152054648372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0, -7.0, -7.0, -7.0, -7.0, -3.652101229519464, -3.3967222785037734, -5.132077093735961, -7.0, -7.0, -4.244140995786811, -7.0, -7.0, -1.9837765880368856, -7.0, -7.0, -2.734159513244467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7573960287930244, -7.0, -3.377306251068199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.733413956897983, -7.0, -7.0, -7.0, -7.0, -4.802643759466887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.101540872558349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.961278679085043, -7.0, -4.571592383361307, -4.3038006237651745, -7.0, -7.0, -3.7505855273410087, -7.0, -4.066027594948862, -3.1808424146466825, -3.2113875529368587, -7.0, -7.0, -3.703635237583896, -7.0, -7.0, -7.0, -2.6020599913279625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.871459093443646, -7.0, -3.2823955047425257, -7.0, -7.0, -7.0, -7.0, -3.60422605308447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6472851450253665, -7.0, -7.0, -7.0, -7.0, -4.127903511010362, -7.0, -7.0, -4.633377547220539, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0692980121155293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9863237770507656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.641126932803509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5453071164658243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.760422483423212, -4.081217648307154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6304278750250236, -7.0, -7.0, -7.0, -7.0, -3.601299310194338, -2.9041743682841634, -7.0, -2.8752266774031847, -7.0, -3.4369573306694496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.282078054577154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0017337128090005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278662160909981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.496929648073215, -7.0, -7.0, -7.0, -7.0, -7.0, -4.183269843682805, -7.0, -7.0, -2.5390760987927767, -7.0, -3.6506959797606107, -7.0, -2.3879827199214656, -2.6875289612146345, -2.989894563718773, -7.0, -3.909876817990393, -7.0, -2.531478917042255, -3.0382226383687185, -3.799409479615127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.259653596243472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.339670024244455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.302114376956201, -7.0, -3.115527305527498, -7.0, -7.0, -3.1386184338994925, -7.0, -7.0, -2.591064607026499, -2.3434085938038574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9217124803626198, -2.5490032620257876, -2.7024305364455254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.870403905279027, -7.0, -2.3738311450738303, -7.0, -2.8363241157067516, -7.0, -4.219924913188828, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6009728956867484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.924795995797912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.46437775512603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.582315933132205, -7.0, -7.0, -7.0, -2.7450747915820575, -4.260746961730889, -7.0, -2.7450747915820575, -7.0, -2.5496162395190853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.17801718009172, -7.0, -7.0, -7.0, -3.5018121170750933, -7.0, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1772117398019684, -7.0, -7.0, -7.0, -2.79309160017658, -7.0, -7.0, -3.0107238653917734, -7.0, -7.0, -7.0, -2.885361220031512, -7.0, -7.0, -3.6502751360569445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.659440781870318, -7.0, -7.0, -7.0, -7.0, -2.9900797402371215, -7.0, -7.0, -7.0, -7.0, -2.9537596917332287, -3.079543007402906, -1.8210037503009116, -2.7007037171450192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.356599435724971, -7.0, -7.0, -7.0, -2.60422605308447, -7.0, -7.0, -2.756636108245848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6242820958356683, -2.5575072019056577, -7.0, -2.125481265700594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0556331242728354, -7.0, -7.0, -7.0, -3.9933039379194746, -7.0, -7.0, -7.0, -2.5658478186735176, -2.6148972160331345, -2.6283889300503116, -7.0, -2.7209857441537393, -7.0, -7.0, -7.0, -3.2265999052073573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.79309160017658, -4.198340871447986, -7.0, -7.0, -7.0, -3.0277572046905536, -7.0, -7.0, -3.1992064791616577, -7.0, -7.0, -7.0, -7.0, -7.0, -2.929929560084588, -2.81424759573192, -7.0, -2.734799829588847, -2.7193312869837265, -7.0, -7.0, -7.0, -2.6085260335771943, -2.8468008542794783, -7.0, -2.8129133566428557, -7.0, -7.0, -7.0, -7.0, -3.4647875196459372, -7.0, -7.0, -2.3417641598743475, -7.0, -2.8549130223078554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.064832219738574, -7.0, -7.0, -7.0, -7.0, -2.920123326290724, -7.0, -7.0, -2.79309160017658, -7.0, -7.0, -7.0, -2.722633922533812, -7.0, -7.0, -7.0, -7.0, -3.6579636693663447, -7.0, -7.0, -7.0, -2.631105401655266, -4.069532435768039, -3.0696680969115957, -7.0, -1.9395192526186187, -7.0, -2.542410429811593, -7.0, -2.366236123718293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.624625819226704, -7.0, -2.354108439147401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657466994367546, -4.803477600754047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.281465173199528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4058583993176366, -7.0, -3.704236337308788, -3.7451528950769006, -7.0, -7.0, -7.0, -4.067541985450457, -7.0, -2.94126290931895, -4.0744873049856905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.657457437356336, -4.980471520550195, -7.0, -7.0, -7.0, -7.0, -4.612836816232258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4615585495157384, -7.0, -2.7427251313046983, -7.0, -4.564938152655192, -7.0, -4.157446693916665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3909351071033793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7897216939809217, -7.0, -4.6295013417672655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.74350976472843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.718501688867274, -7.0, -7.0, -3.438384107034714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6374897295125104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.802838513668216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313128713845194, -2.663700925389648, -7.0, -3.128722284338427, -7.0, -3.4559102403827433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.315823457751156, -7.0, -7.0, -4.284836637642396, -7.0, -7.0, -7.0, -2.632457292184724, -7.0, -2.826722520168992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.678154038010437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.281442457270873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.801403710017355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658945794243111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.836312604966299, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.55884051842334, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5453071164658243, -7.0, -3.2024883170600935, -7.0, -3.1318391234923233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5889178182660926, -7.0, -7.0, -3.0863598306747484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.029221394253928, -7.0, -7.0, -7.0, -7.0, -3.004536317851323, -7.0, -7.0, -7.0, -3.7414930150254317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.673679028912518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8356905714924254, -7.0, -7.0, -7.0, -7.0, -2.1436392352745433, -2.342422680822206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9156636035057732, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2002118967002393, -7.0, -7.0, -7.0, -7.0, -3.792181496149679, -7.0, -7.0, -7.0, -7.0, -2.9912260756924947, -7.0, -7.0, -7.0, -3.3758829915452284, -7.0, -7.0, -2.432969290874406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.576341350205793, -7.0, -7.0, -7.0, -3.019987346336959, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.92272545799326, -7.0, -7.0, -7.0, -7.0, -3.0902766208563244, -7.0, -7.0, -7.0, -7.0, -2.8709888137605755, -7.0, -2.6589648426644352, -2.5390760987927767, -7.0, -7.0, -1.3204924754334133, -2.8360074591255313, -7.0, -7.0, -7.0, -3.4392273975557974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3263358609287517, -7.0, -7.0, -7.0, -2.568201724066995, -7.0, -2.0549958615291413, -7.0, -3.18440748541232, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6871721045948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9804578922761, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8419848045901137, -7.0, -7.0, -7.0, -2.2624510897304293, -7.0, -7.0, -7.0, -7.0, -3.425044874551389, -7.0, -2.693726948923647, -7.0, -4.606918525948291, -2.2174839442139063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.951580344903392, -7.0, -4.734072998165133, -2.593286067020457, -3.053462604925455, -7.0, -7.0, -7.0, -7.0, -7.0, -2.951337518795918, -7.0, -2.7041505168397992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0461047872460387, -7.0, -2.767897616018091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30306639792351, -3.7327956982893293, -7.0, -7.0, -7.0, -4.0656046090841285, -7.0, -7.0, -7.0, -3.8378093167503406, -3.3995006613146104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3535892815794845, -4.280755875857311, -7.0, -7.0, -2.9731278535996988, -7.0, -7.0, -7.0, -4.640963167006545, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275863950712521, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.905644795140426, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1209028176145273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.780122808375505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5975855017522043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7553507194191824, -7.0, -7.0, -7.0, -7.0, -3.6313422864839326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9744253318550826, -7.0, -7.0, -7.0, -2.4756711883244296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.494154594018443, -7.0, -7.0, -7.0, -3.2939849689526044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3180633349627615, -7.0, -3.400365273349939, -2.0043213737826426, -7.0, -7.0, -7.0, -2.2600713879850747, -7.0, -2.3944516808262164, -7.0, -7.0, -7.0, -7.0, -7.0, -4.027634965777544, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7686381012476144, -7.0, -7.0, -4.2176944602053785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.737987326333431, -7.0, -2.8790958795000727, -7.0, -7.0, -7.0, -4.518421807033958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8976270912904414, -7.0, -7.0, -7.0, -7.0, -2.8228216453031045, -7.0, -7.0, -2.3891660843645326, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6766936096248664, -7.0, -7.0, -3.212054364801163, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3222192947339195, -7.0, -2.554691016610708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7299742856995555, -7.0, -7.0, -7.0, -7.0, -7.0, -3.596450473585262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.329723224057897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.912487761332324, -7.0, -7.0, -7.0, -7.0, -2.704905528094701, -7.0, -7.0, -7.0, -7.0, -2.847572659142112, -7.0, -7.0, -7.0, -7.0, -1.3204924754334133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.361727836017593, -7.0, -7.0, -7.0, -1.792391689498254, -7.0, -2.3921104650113136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.629409599102719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.962369335670021, -7.0, -3.1212314551496214, -7.0, -7.0, -7.0, -7.0, -2.514547752660286, -7.0, -7.0, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7183355789085066, -7.0, -7.0, -7.0, -4.6064995975128875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097899077321453, -2.9849771264154934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432993328649117, -7.0, -2.7363965022766426, -7.0, -7.0, -7.0, -7.0, -7.0, -2.931966114728173, -7.0, -7.0, -7.0, -7.0, -7.0, -2.482873583608754, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3637999454791094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.00114935814922, -3.030032704936171, -7.0, -7.0, -7.0, -3.7640141449764357, -3.778078861937455, -7.0, -7.0, -4.1376705372367555, -3.697316541732383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6537140754412487, -3.657183380234882, -7.0, -7.0, -7.0, -7.0, -4.6107665947732706, -7.0, -4.6407695459602785, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7977521286507105, -3.1622656142980214, -7.0, -7.0, -3.853789440530192, -7.0, -7.0, -7.0, -4.56262589414616, -7.0, -4.331589240955137, -7.0, -7.0, -3.594171479114912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9871297676598974, -7.0, -7.0, -7.0, -7.0, -3.9871745010875417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.815577748324267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6404019249815684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.267406418752904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603883812335287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1157214284114376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14903426716125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.824451270036613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.627356544861648, -2.702645906884803, -7.0, -2.7955324427101544, -2.930694387664535, -3.4295100408131383, -7.0, -3.215373152783422, -7.0, -7.0, -7.0, -3.9557358422776656, -2.8476607781404675, -7.0, -7.0, -3.057058345431303, -7.0, -7.0, -7.0, -3.1458177144918276, -2.651601029618764, -7.0, -3.529756909124659, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1227072543183483, -7.0, -3.0343037076079074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.609380944250707, -3.1152775913959014, -7.0, -2.88024177589548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8386639300088468, -7.0, -7.0, -7.0, -7.0, -2.254135607904569, -2.3789167713586075, -7.0, -2.7708520116421442, -3.3422746006428197, -7.0, -7.0, -7.0, -3.1095785469043866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.15106325335375, -7.0, -7.0, -2.775361299557757, -7.0, -3.113943352306837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7264555202583103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0369281680157196, -2.831197665069386, -7.0, -7.0, -3.1646502159342966, -4.443982303007413, -3.1172712956557644, -7.0, -2.7351995484223135, -7.0, -2.646076820312336, -7.0, -7.0, -7.0, -7.0, -3.7090578513345434, -7.0, -7.0, -7.0, -7.0, -7.0, -3.765072201102792, -3.5624118329497274, -3.570659670021534, -7.0, -7.0, -3.082066934285113, -3.1099158630237933, -7.0, -7.0, -7.0, -3.3098430047160705, -7.0, -3.110589710299249, -3.1109262422664203, -3.4130313911501697, -7.0, -7.0, -7.0, -3.1835545336188615, -7.0, -7.0, -3.285557309007774, -3.210853365314893, -2.5854607295085006, -3.1577588860468637, -7.0, -3.137986732723532, -3.1192558892779365, -3.064067490359177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1359273350054684, -7.0, -7.0, -7.0, -3.2942457161381182, -3.1483939488110453, -7.0, -7.0, -7.0, -7.0, -2.7781512503836434, -7.0, -2.7027176733035243, -2.5443781439578124, -7.0, -2.8360074591255313, -7.0, -7.0, -7.0, -3.098643725817057, -7.0, -2.5040722658303283, -7.0, -3.5021538928713607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1690863574870227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.634275694625944, -3.7211966936121548, -7.0, -3.1027766148834415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03148925570975, -7.0, -7.0, -3.0867156639448825, -3.1048284036536553, -7.0, -7.0, -7.0, -3.1556396337597765, -7.0, -7.0, -3.2404244330836076, -7.0, -7.0, -7.0, -3.1061908972634154, -7.0, -7.0, -3.772834927239018, -7.0, -4.210612766352898, -7.0, -7.0, -7.0, -7.0, -3.2821687783046416, -7.0, -3.395675785269936, -7.0, -7.0, -7.0, -7.0, -7.0, -3.244524511570084, -2.5885518064856425, -7.0, -7.0, -2.853393977450666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8399073111296422, -7.0, -7.0, -3.828595456371702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.300812794118117, -7.0, -3.871136636456436, -7.0, -7.0, -7.0, -7.0, -3.048053173115609, -7.0, -2.392696953259666, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8546096380957953, -7.0, -7.0, -7.0, -2.6424645202421213, -2.920123326290724, -7.0, -4.003305718493799, -7.0, -7.0, -3.326889823407641, -2.3140779917792127, -7.0, -7.0, -7.0, -7.0, -3.2723058444020863, -7.0, -7.0, -7.0, -7.0, -3.2329961103921536, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5328817194073974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.586722297518069, -7.0, -7.0, -4.411485020124997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.10505691956627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.261833620575751, -7.0, -7.0, -4.262617181538574, -7.0, -7.0, -7.0, -3.103803720955957, -7.0, -3.9812634968287997, -3.848209650524033, -3.5094713521025485, -7.0, -3.3903344475118518, -7.0, -3.351300971319075, -3.1517374810385186, -7.0, -7.0, -3.2676409823459154, -3.306567981627654, -7.0, -7.0, -2.911335197980604, -7.0, -3.0132586652835167, -7.0, -3.513350798805957, -7.0, -3.4701899062855524, -3.72913778048962, -4.330349987099072, -7.0, -3.4687902620996107, -7.0, -4.622317660833844, -7.0, -3.6683074285531756, -7.0, -7.0, -7.0, -7.0, -4.046963154123424, -4.2996162399984135, -7.0, -3.737669627356642, -7.0, -4.187097500583477, -2.9661417327390325, -7.0, -3.3852171160984486, -4.575511135352897, -7.0, -3.9445813642269263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.033785516842231, -7.0, -7.0, -7.0, -7.0, -7.0, -4.337579050143133, -7.0, -3.2643455070500926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.651200454486927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.127428777851599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1398790864012365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.482884297978607, -7.0, -7.0, -7.0, -7.0, -3.974373507081423, -7.0, -7.0, -7.0, -7.0, -3.196452541703389, -7.0, -7.0, -3.1179338350396413, -3.7007037171450192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334413536837101, -7.0, -7.0, -3.7025813069667075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1319392952104246, -7.0, -4.181672122068266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.699338997845602, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657820456015697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.031973689091717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7320115734128025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4220971631317103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040206627574711, -7.0, -2.08278537031645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3068537486930083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0086001717619175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.094051655509965, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9242792860618816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9355072658247128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426364845287927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5314789170422551, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.098643725817057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.547023575658172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.972665592266111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.094471128641645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.575187844927661, -7.0, -4.605649758517102, -7.0, -7.0, -3.7450747915820575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983598533574965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432866714751133, -7.0, -7.0, -4.543310470747173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.862131379313037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7630284585928058, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.104145550554008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024909629847714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6321534835106326, -3.5203525040833177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.342422680822206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542887642342412, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.478530423125539, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1832698436828046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.914660430589222, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.104747167896156, -2.1729391872871573, -7.0, -3.910090545594068, -2.6001012556913907, -3.3099139273065608, -7.0, -7.0, -7.0, -3.096860376516557, -7.0, -3.2011785563833253, -2.867393822439164, -7.0, -7.0, -2.4295006001874326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.498556682717641, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3892694755046238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8342868171349913, -7.0, -7.0, -2.681431675651782, -3.438753248138029, -7.0, -7.0, -7.0, -3.931915317081246, -7.0, -7.0, -7.0, -7.0, -2.454446134185004, -7.0, -7.0, -7.0, -7.0, -3.396068515800304, -7.0, -7.0, -2.6566024919927442, -1.7347722492070448, -7.0, -7.0, -7.0, -3.9120093755869783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3164421483082114, -7.0, -7.0, -2.2364300521070484, -7.0, -3.6115640020881243, -7.0, -7.0, -7.0, -7.0, -3.912912551176097, -7.0, -7.0, -2.2059984408197937, -3.9122220565324155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9116901587538613, -3.910304168068569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6496268868405295, -7.0, -3.0959051485809788, -2.2055394577870526, -7.0, -7.0, -7.0, -4.494648462275092, -7.0, -3.4719758703932535, -3.2577265605586323, -7.0, -3.0105649480946766, -7.0, -7.0, -7.0, -7.0, -3.5342292372487547, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5015727138817785, -7.0, -2.531478917042255, -3.937768567049936, -3.915610862661467, -3.5481129050651687, -7.0, -7.0, -7.0, -7.0, -3.950364854376123, -7.0, -7.0, -7.0, -2.7394624604624846, -7.0, -7.0, -3.9143960521297863, -3.225154148849806, -7.0, -7.0, -7.0, -3.9296232515152405, -7.0, -7.0, -7.0, -7.0, -7.0, -2.769973475081076, -7.0, -7.0, -7.0, -3.9130717403092508, -7.0, -3.9134959596171237, -7.0, -7.0, -7.0, -2.89990685758534, -7.0, -3.946845113960623, -3.4161965568964496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.918344928962275, -7.0, -3.4392273975557974, -7.0, -2.5040722658303283, -7.0, -7.0, -7.0, -7.0, -3.9093955459671053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1432425020627006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9451976821033337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9196010237841112, -7.0, -7.0, -2.2178234357159727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.850986404764101, -7.0, -3.4486732001001474, -7.0, -7.0, -7.0, -7.0, -3.3418300569205104, -3.1035105098621796, -7.0, -3.9685296443748395, -3.909983694939844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0166677935099506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.926033596678845, -7.0, -3.9065146136422175, -3.01378489154674, -3.9097699147327694, -3.2886324266102918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1509784117298585, -7.0, -7.0, -7.0, -7.0, -3.181128699747295, -3.9353056902899253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.919705534549121, -7.0, -7.0, -7.0, -7.0, -2.424959376626245, -3.5397032389478253, -2.8087672119302907, -3.6196150057428067, -7.0, -2.7869439937109552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.693920316367327, -4.503913193999621, -7.0, -7.0, -4.063596033291059, -7.0, -7.0, -4.517354274350649, -4.315473525026916, -7.0, -7.0, -4.657925483756938, -3.880936026472807, -3.8535096116017584, -7.0, -7.0, -4.510182947257836, -7.0, -4.250541978010273, -7.0, -3.7249581862877257, -4.650767159135146, -7.0, -4.536962249650276, -4.295215123866298, -4.346352974450639, -3.921669138032477, -4.557591405968501, -7.0, -4.4663559484189665, -7.0, -3.963938860030751, -7.0, -7.0, -7.0, -7.0, -7.0, -4.480825865259064, -7.0, -2.815552206848569, -7.0, -3.0746047445737625, -3.602401088721594, -4.125318578123527, -3.63382180730168, -3.328016973644657, -3.9483151406893477, -2.7791288410764556, -3.6681994841986616, -7.0, -3.992398858487621, -2.9206650533255254, -4.1126050015345745, -7.0, -3.8213169705910977, -3.9698350930757975, -7.0, -3.5644687921697042, -3.0869215395030887, -7.0, -7.0, -3.068799322509493, -3.2146041885781704, -3.8524439488043782, -7.0, -3.9921999297955852, -7.0, -3.4839348074213596, -7.0, -2.6725413491836623, -3.2979792441593623, -3.808885867359812, -7.0, -3.617559458651492, -4.255778886667017, -4.1272992150577075, -7.0, -3.3922395603981106, -7.0, -3.2679925903655827, -3.5474054596674898, -7.0, -3.1910000242876015, -3.6068404347418768, -7.0, -3.6273231761856515, -3.960232873128512, -7.0, -7.0, -2.896813671100868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02234587626988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.468229138961733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.409865523598587, -7.0, -7.0, -7.0, -7.0, -4.2123474379880115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.774407465921632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7331009229280614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.730685396203913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6910814921229687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.441695135640717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2776092143040914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727272789836275, -7.0, -7.0, -7.0, -2.0453229787866576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669493538318174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9093955459671053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3710678622717363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.367355921026019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.904715545278681, -7.0, -4.796529236394143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0128372247051725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0253058652647704, -2.989894563718773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.469895618975018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2422929049829308, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.272746411201189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.318272080211627, -7.0, -7.0, -7.0, -7.0, -7.0, -3.294466226161593, -7.0, -7.0, -3.31367468753116, -7.0, -7.0, -7.0, -7.0, -2.385606273598312, -2.7113853790984517, -7.0, -7.0, -7.0, -7.0, -2.7846618607977156, -2.4294446515270676, -7.0, -2.59090549565564, -2.8534559683972103, -7.0, -3.3157604906657347, -7.0, -3.029586671630457, -3.3207692283386865, -7.0, -3.4335412578764823, -3.3226327116922234, -7.0, -7.0, -7.0, -3.361538971269279, -7.0, -7.0, -7.0, -3.2300655512060468, -7.0, -3.3294903316193807, -7.0, -3.351603072419129, -3.3483048630481607, -7.0, -3.3121773564397787, -7.0, -7.0, -7.0, -7.0, -3.0332896932905147, -2.3146331720348976, -7.0, -3.319314304090512, -3.4807253789884878, -7.0, -7.0, -7.0, -7.0, -3.3827372657613304, -7.0, -7.0, -7.0, -7.0, -3.3976967356393635, -7.0, -7.0, -2.8316565189450587, -7.0, -7.0, -3.0843975191411492, -7.0, -7.0, -3.485295438726089, -3.3016809492935764, -2.855115160771781, -7.0, -3.307709923404807, -7.0, -7.0, -7.0, -7.0, -3.378579576115775, -7.0, -3.1137762838370313, -7.0, -3.368286884902131, -7.0, -3.1990941600088276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.59659709562646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3289908554494287, -3.3062105081677613, -2.699143687394484, -3.306425027550687, -3.300812794118117, -7.0, -7.0, -2.238376289780375, -3.3197304943302246, -7.0, -7.0, -7.0, -3.446070935701005, -7.0, -3.707995746422929, -7.0, -7.0, -7.0, -3.0419845014867866, -3.258976961303746, -7.0, -3.4413808849165113, -3.465977368285823, -3.3729120029701067, -7.0, -7.0, -3.037227234582274, -7.0, -7.0, -3.7395327894173307, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8173008783933216, -2.38431358157012, -7.0, -3.403120521175818, -7.0, -7.0, -7.0, -7.0, -7.0, -3.336059277866349, -2.967079734144497, -7.0, -7.0, -7.0, -3.135959092124557, -7.0, -3.2971036501492565, -7.0, -7.0, -7.0, -7.0, -2.2767899450894244, -3.374565060722765, -3.359835482339888, -7.0, -2.9054360671891235, -3.024485667699167, -7.0, -2.561441012527098, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3136563466180315, -7.0, -3.2404244330836076, -7.0, -3.351409751925439, -7.0, -3.433449793761596, -2.726512260525233, -7.0, -3.3783979009481375, -7.0, -3.3854275148051305, -2.803115554890027, -7.0, -3.052886235256382, -3.3326404103874627, -3.356599435724971, -7.0, -7.0, -3.5021538928713607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.811712462583848, -2.531265975394496, -2.3081373786380386, -7.0, -2.395326393069351, -3.3463529744506384, -7.0, -7.0, -7.0, -3.2811470420244278, -3.0392157659039505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.303196057420489, -3.0073209529227447, -7.0, -7.0, -3.40226138245468, -3.5865660181861325, -7.0, -3.001949941084268, -7.0, -7.0, -7.0, -7.0, -3.3439990690571615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5669124528516787, -7.0, -7.0, -7.0, -7.0, -2.5338144099847226, -3.0153597554092144, -7.0, -3.0360297306565434, -2.2479732663618064, -7.0, -7.0, -3.2216749970707688, -7.0, -7.0, -7.0, -3.5711262770843115, -3.377670439334323, -2.7814942626759254, -7.0, -3.198761786685379, -7.0, -7.0, -7.0, -2.198731369770289, -7.0, -7.0, -2.8092903011763157, -3.5005109105263372, -7.0, -7.0, -7.0, -7.0, -3.3979400086720375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0113589537066106, -2.745465168670727, -2.8139144200486035, -2.4042634020509106, -2.6263403673750423, -3.263697804915245, -7.0, -7.0, -3.0953437318725254, -7.0, -7.0, -7.0, -7.0, -3.1876617026529592, -3.0707764628434346, -3.1702617153949575, -3.3479151865016914, -1.9372589788376664, -3.0308020487722676, -3.781888667731667, -3.44870631990508, -7.0, -7.0, -7.0, -3.4742162640762553, -3.09324653110384, -7.0, -3.3102683666324477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0661394928706995, -7.0, -3.7302976620971497, -3.629817196018516, -3.904354304879218, -7.0, -3.1664301138432824, -3.021708959667232, -3.4507108781469196, -7.0, -3.3727279408855955, -7.0, -3.12985095078891, -2.7478000908643687, -3.4500950758716025, -7.0, -7.0, -7.0, -3.0884904701823963, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4395432098217347, -7.0, -7.0, -3.4899685184785194, -4.062032658656056, -4.308436347167652, -7.0, -4.456366033129043, -7.0, -3.8312296938670634, -3.950575783275147, -2.9830816586339246, -7.0, -3.097812407365289, -4.595010951898408, -4.6729471353465035, -4.814593827514569, -3.0428707165856252, -7.0, -7.0, -3.5895679839722483, -7.0, -4.6271507046257, -7.0, -4.630451606315535, -3.361586195156881, -3.6833726716448614, -7.0, -7.0, -7.0, -7.0, -7.0, -3.200269990190228, -3.664006990415448, -4.299801377511212, -7.0, -3.924615217311472, -3.6016798173058957, -7.0, -7.0, -7.0, -3.94215692846749, -7.0, -2.98915306706963, -4.114577627000166, -4.0393546227061625, -3.3805730030668872, -3.393399695293102, -7.0, -3.136879039875517, -3.78640829807341, -2.9393528243805584, -2.163835222252474, -2.7143942477521676, -2.9361785093615893, -2.930120893290665, -7.0, -7.0, -7.0, -3.33665982345442, -7.0, -4.233275391293944, -7.0, -3.394976719554564, -3.272626949394092, -3.5563025007672873, -4.478641516731935, -7.0, -2.9639058261187046, -2.7283537820212285, -3.3508394641028696, -7.0, -4.047712835972715, -2.4812917270129815, -3.8191160105241306, -7.0, -3.498517311461634, -4.0750357259221905, -3.3609508662563887, -3.2168254232660476, -3.3156905165284845, -3.719082573901486, -2.229442192497785, -7.0, -3.3428173146357327, -3.3223330236343784, -3.504584122237375, -7.0, -2.8863740159456666, -7.0, -2.9636697965031646, -3.1588146467242266, -3.4785304231255387, -7.0, -7.0, -7.0, -3.075911761482778, -7.0, -2.857407888234583, -7.0, -2.2337424492627256, -7.0, -3.1409268419924303, -2.0920108321869253, -3.158513262616432, -2.4977192746214762, -7.0, -2.6355395938518185, -7.0, -2.425277259051414, -2.532435864506711, -2.9341616582977217, -3.5759956202032677, -7.0, -2.326975564214103, -2.8737080188633053, -2.981969534880924, -3.397592434038117, -7.0, -2.5854607295085006, -2.5018197150156265, -2.9077695418108918, -7.0, -7.0, -2.3973264538510293, -7.0, -7.0, -3.3480822335510885, -3.3792577957042833, -3.307717560224521, -7.0, -2.9126471062183175, -2.666892211066536, -2.4159466351953087, -3.336859820916809, -7.0, -3.3191060593097763, -2.6869340371737893, -3.341038631677523, -7.0, -3.4570488265856314, -3.0049658871068234, -2.9866437936313814, -3.1048284036536553, -2.611487278391802, -7.0, -7.0, -7.0, -2.9793966030856, -3.219939869134243, -2.877563299235066, -3.0172420845476458, -3.0257153839013404, -7.0, -2.736077637003946, -2.639154332860882, -7.0, -3.808075868091307, -2.8926510338773004, -2.759778274692473, -7.0, -2.9320676922007216, -3.3581252852766488, -7.0, -4.007363654312278, -7.0, -3.362356792654536, -2.9341616582977217, -3.040602340114073, -2.886866575028829, -3.5499836111596887, -7.0, -7.0, -2.4792494083469703, -2.060869464336048, -3.3965480379871322, -1.8045915935946966, -2.589790080853059, -3.3525683861793083, -3.1314582601065255, -2.40219995031908, -2.6572607893053752, -2.0930462684998408, -2.7514074226375196, -7.0, -3.3001605369513523, -3.6103407114521566, -3.0273496077747564, -7.0, -3.559068334034537, -2.5473644129795048, -7.0, -2.51418538761473, -2.9393320163657064, -2.5529577650807846, -3.0189084443163274, -3.420120848085703, -2.83968749733336, -7.0, -3.3654879848909, -1.796445242184168, -3.668106237932731, -7.0, -7.0, -3.2949069106051923, -2.459118225368112, -3.0105119627372137, -7.0, -7.0, -7.0, -3.3809344633307017, -3.332034277027518, -7.0, -3.3354579006893843, -2.6870828446043706, -3.398981066658131, -3.3220124385824006, -3.1227072543183483, -7.0, -7.0, -7.0, -3.048247531803974, -7.0, -3.351989455435632, -2.764447863656448, -2.552320502337091, -3.668572269184558, -7.0, -7.0, -7.0, -3.307923703611882, -7.0, -3.061389642585325, -7.0, -7.0, -2.910224071953891, -3.0653929615619915, -3.436162647040756, -7.0, -7.0, -3.358315640082196, -7.0, -2.88284966953054, -3.297760511099134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.575949502067735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557110019844558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6830470382388496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517037463772294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727199542699307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669409867287783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.305351369446624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.674125982742708, -7.0, -4.495252860071183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1078880251827985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.357934847000454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.941511432634403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8418955262504215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.08064091507024, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5814945422908995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.709166275871844, -7.0, -7.0, -7.0, -7.0, -2.726002327603283, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2278353057755873, -3.3389542523776075, -7.0, -2.5493098589194982, -3.375108963026137, -7.0, -7.0, -7.0, -2.6143698395482886, -7.0, -7.0, -4.2635887314599445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.016824493667488, -7.0, -3.6470698522337863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.046701692585523, -2.965828614858199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8887409606828927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3560258571931225, -2.1383026981662816, -7.0, -7.0, -7.0, -7.0, -2.848189116991399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.224235143716918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0689276116820716, -7.0, -7.0, -2.0005425290922942, -7.0, -3.075911761482778, -7.0, -2.353467413965482, -7.0, -7.0, -2.6620309788225325, -2.0345711656177965, -2.6242820958356683, -7.0, -7.0, -7.0, -7.0, -7.0, -4.114711040558363, -7.0, -7.0, -7.0, -3.8953278149927018, -7.0, -7.0, -3.205745540942662, -7.0, -7.0, -7.0, -2.9360107957152097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8169038393756605, -7.0, -7.0, -2.8852198251151067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0265332645232967, -7.0, -7.0, -7.0, -7.0, -7.0, -3.137775961313472, -7.0, -7.0, -7.0, -2.9786369483844743, -7.0, -7.0, -2.1264561134318045, -7.0, -7.0, -7.0, -3.0409976924234905, -7.0, -7.0, -1.9129494697951093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3350565194390915, -7.0, -7.0, -7.0, -7.0, -2.787350048968867, -7.0, -3.030194785356751, -7.0, -2.743901550485179, -2.48572142648158, -7.0, -2.6725596277632757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.811712462583848, -7.0, -7.0, -1.8530895298518655, -2.385606273598312, -2.3371263410122576, -2.835056101720116, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9410142437055695, -2.8095597146352675, -2.8254261177678233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6738285029024995, -7.0, -7.0, -7.0, -2.7501225267834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1566356727947436, -7.0, -7.0, -7.0, -2.8444771757456815, -1.907291901419713, -2.576341350205793, -7.0, -2.932980821923198, -2.7103994661168005, -7.0, -3.4634450317704277, -7.0, -7.0, -7.0, -7.0, -7.0, -3.028571252692538, -2.8243699338659654, -7.0, -3.901785145303599, -7.0, -7.0, -2.850033257689769, -2.6195676066178586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.900913067737669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0613267969905547, -7.0, -7.0, -2.651278013998144, -3.1119342763326814, -1.6302429114439048, -1.631781872947651, -4.134952320751409, -7.0, -7.0, -3.488762172066694, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0161973535124393, -7.0, -7.0, -7.0, -7.0, -4.196580297209667, -2.8721562727482928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.392410739305955, -7.0, -7.0, -3.249271753073101, -3.1775364999298623, -7.0, -2.7155855518931964, -7.0, -3.140193678578631, -3.2000292665537704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9751253198007745, -7.0, -7.0, -4.622928621352165, -7.0, -7.0, -7.0, -4.435876204588752, -3.403635189790548, -7.0, -7.0, -3.736890281242343, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4983794839511457, -7.0, -7.0, -3.5771182378818316, -7.0, -7.0, -7.0, -4.802058431469606, -7.0, -3.943077404269343, -7.0, -7.0, -4.629969946292171, -7.0, -7.0, -4.708250888591378, -7.0, -4.109094603121803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576836417070687, -3.5351041538013934, -2.9242792860618816, -7.0, -7.0, -7.0, -3.6455327940379245, -3.814580516010319, -2.470452494407648, -3.307923703611882, -3.8529067587969537, -3.7409150764812824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5175352052581, -3.4501947501639734, -7.0, -2.8976270912904414, -3.374565060722765, -2.6159500516564007, -4.13916516599753, -7.0, -7.0, -3.1730890999406967, -7.0, -7.0, -3.3966351669836934, -7.0, -7.0, -7.0, -3.689486448364248, -7.0, -2.9143137682186073, -7.0, -7.0, -3.7646990637983677, -7.0, -7.0, -3.358816175464692, -7.0, -7.0, -3.1712387562612694, -7.0, -7.0, -7.0, -7.0, -3.0277572046905536, -7.0, -3.1063609088067503, -7.0, -2.3628054903717945, -7.0, -7.0, -2.8046930263961647, -7.0, -7.0, -7.0, -2.908417992953383, -7.0, -2.4227875693463337, -2.5490032620257876, -7.0, -7.0, -7.0, -2.5438611881987567, -7.0, -7.0, -3.0718820073061255, -7.0, -7.0, -3.1920095926536702, -3.0461047872460387, -7.0, -2.848189116991399, -3.1600481395528757, -7.0, -7.0, -7.0, -3.469232742506612, -4.444068228441408, -7.0, -3.443888546777372, -3.0051805125037805, -2.1103491705634387, -7.0, -7.0, -7.0, -3.0101585617234066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3760291817281805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5363690286780414, -7.0, -7.0, -7.0, -7.0, -3.0609746934997224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8000293592441343, -2.9444826721501687, -7.0, -7.0, -7.0, -7.0, -2.6462076122066853, -2.0117818305481068, -7.0, -2.1071328508548213, -7.0, -7.0, -3.143327129992046, -2.6480596170682786, -7.0, -2.6428600525844916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0432174545734725, -7.0, -3.3766681858105296, -3.9911595969595175, -3.7940695839816327, -7.0, -7.0, -7.0, -7.0, -7.0, -1.978940969735289, -7.0, -7.0, -7.0, -7.0, -3.050290502385774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7126497016272113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.406114192678464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6867032848448513, -7.0, -7.0, -7.0, -7.0, -2.671481400086431, -7.0, -7.0, -7.0, -7.0, -3.305028753746333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3271545124094315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.178412861128507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.143014800254095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.414973347970818, -7.0, -7.0, -7.0, -7.0, -2.3626709297256667, -7.0, -4.058236168942767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.435071564357987, -7.0, -7.0, -2.4170562991191105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.200303182981585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4487713900601857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2062860444124324, -7.0, -3.8522969658269255, -7.0, -7.0, -2.719089096287673, -7.0, -2.7134905430939424, -7.0, -7.0, -2.34960126544933, -7.0, -2.5888317255942073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.531265975394496, -7.0, -1.8530895298518655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.672122498058382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5060086700150377, -7.0, -7.0, -7.0, -7.0, -2.2741578492636796, -2.303196057420489, -7.0, -7.0, -2.5163149757779495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.607025878434786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8107364373885813, -7.0, -7.0, -7.0, -4.30513631894364, -7.0, -7.0, -3.748962861256161, -7.0, -7.0, -7.0, -7.0, -2.7810369386211318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7246853882373596, -3.844862216137521, -7.0, -7.0, -7.0, -7.0, -2.916980047320382, -3.417803722639881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2648178230095364, -3.358315640082196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5704028222869075, -7.0, -3.4261044280965076, -7.0, -7.0, -7.0, -7.0, -3.775974331129369, -2.8816699076720615, -4.066214075471244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.352279017274498, -4.979452764766347, -7.0, -2.3710678622717363, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5930644316587173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8529067587969537, -7.0, -7.0, -7.0, -7.0, -7.0, -4.632345920346211, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5085746049701796, -7.0, -7.0, -7.0, -3.773640193260026, -7.0, -4.025090713297739, -2.9380190974762104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.443262987458695, -2.5185139398778875, -7.0, -3.8248414717537007, -7.0, -7.0, -7.0, -4.640113571929359, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3263358609287517, -3.401400540781544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3961993470957363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0016544021263485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8506462351830666, -7.0, -2.6464037262230695, -7.0, -7.0, -2.2624510897304293, -2.890197386210029, -2.3654879848909, -7.0, -2.933824603968112, -7.0, -7.0, -7.0, -3.4189638307036225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.010024193899956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.311753861055754, -7.0, -7.0, -2.3502480183341627, -7.0, -7.0, -7.0, -7.0, -4.14813973650122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276323911020188, -7.0, -7.0, -7.0, -7.0, -2.932980821923198, -7.0, -7.0, -7.0, -7.0, -3.5420781463356255, -7.0, -7.0, -7.0, -7.0, -2.0863598306747484, -7.0, -1.9637878273455553, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658316727178102, -7.0, -7.0, -7.0, -7.0, -3.15106325335375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.103803720955957, -7.0, -7.0, -3.923105796324239, -7.0, -7.0, -7.0, -2.4345689040341987, -7.0, -7.0, -4.256994202073168, -7.0, -7.0, -7.0, -2.4502491083193614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.034167049413581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.137354111370733, -3.3980268588836866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9159008580770402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9159272116971158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.279780976996965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.095866453478543, -7.0, -7.0, -7.0, -4.258980305302306, -7.0, -7.0, -7.0, -7.0, -7.0, -2.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.595459477929287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2993983300681498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6484738560346033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.20682587603185, -7.0, -7.0, -7.0, -7.0, -3.555968299533478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.60422605308447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3081373786380386, -7.0, -2.385606273598312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.093421685162235, -7.0, -7.0, -2.298853076409707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7589118923979736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983400738180538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9960736544852753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.380030247967831, -7.0, -4.496334505996817, -7.0, -7.0, -7.0, -2.907411360774586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.798650645445269, -2.6334684555795866, -7.0, -7.0, -7.0, -2.2041199826559246, -7.0, -7.0, -7.0, -3.414137362184477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7491176623563223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.552668216112193, -2.940516484932567, -7.0, -5.0978054730215385, -2.670709595223797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9483640559883693, -3.378942698613437, -7.0, -7.0, -7.0, -3.941821886920197, -2.9786369483844743, -7.0, -7.0, -7.0, -7.0, -2.7178368674869255, -2.976808337338066, -7.0, -7.0, -7.0, -7.0, -2.1958996524092336, -7.0, -7.0, -7.0, -7.0, -2.8808135922807914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732610852795199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1736232576980816, -2.402834330403087, -7.0, -4.136815657726849, -3.694956002249818, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1829849670035815, -7.0, -7.0, -4.352317610936827, -4.979461871381611, -7.0, -7.0, -3.2591158441850663, -2.1351326513767748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.199328471994455, -7.0, -7.0, -7.0, -7.0, -7.0, -4.155204413132518, -7.0, -7.0, -3.5911759503117913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6848004941944112, -7.0, -2.7287594751678745, -7.0, -7.0, -3.207365037469072, -7.0, -2.5352941200427703, -7.0, -3.7737864449811935, -7.0, -4.025111208554085, -2.636989101812229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0013009330204183, -2.747411807886423, -7.0, -7.0, -3.824971461123693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.100370545117563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7190356989651443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7026889681591335, -7.0, -7.0, -2.6483600109809315, -7.0, -7.0, -7.0, -3.1127166884277973, -2.5440680443502757, -7.0, -2.7114697818743276, -7.0, -3.4207806195485655, -7.0, -3.7203247174174416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.010066630335587, -7.0, -3.6519076720869994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6522463410033232, -2.4771212547196626, -7.0, -7.0, -7.0, -7.0, -3.8471097408372383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8027737252919755, -2.357934847000454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.177980667073867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333689041703905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9242792860618816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.311753861055754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.733999286538387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3891660843645326, -7.0, -7.0, -4.0553783313750005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5808679779090298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067303385087657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3371263410122576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5910646070264993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.414973347970818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.05307844348342, -2.100370545117563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1082266563749283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.5070844780971057, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.61066016308988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.343802333161655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.770483809431108, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151706857022576, -7.0, -7.0, -4.603155202771475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325392500017263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639366942225054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.177504034843219, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.03342375548695, -2.802317533567358, -2.091315159697223, -7.0, -3.006808208492579, -7.0, -7.0, -7.0, -3.2364532830524073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008429826797229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.312283165791478, -7.0, -7.0, -7.0, -7.0, -4.145817714491828, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657849102464169, -7.0, -7.0, -7.0, -7.0, -3.0208789778835277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576116657013627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.220108088040055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7553411838115474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.735742576309504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8773713458697743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.125326713949941, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1925209923060756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.395326393069351, -7.0, -2.835056101720116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.300704152596124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4058583993176366, -2.360467183515849, -7.0, -7.0, -7.0, -7.0, -7.0, -3.745309059940828, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097635547004261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4424797690644486, -7.0, -4.066176785772006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3492775274679554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.300573746885434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1696744340588068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8514723847971446, -7.0, -7.0, -4.126293790693266, -7.0, -7.0, -4.330819466495837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6826413871962154, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626730338579967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7075701760979367, -7.0, -7.0, -3.8217754671834636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779708296872661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.814913181275074, -7.0, -3.407645797062556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3100982718562, -7.0, -3.9506568825045107, -7.0, -3.749890841271422, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6299190355035416, -7.0, -7.0, -7.0, -7.0, -4.146686055647526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659925703127408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.429698460746883, -7.0, -7.0, -3.0166155475571776, -3.8369050117306402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4458436158937196, -7.0, -7.0, -7.0, -7.0, -2.775974331129369, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7364363439795194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1215598441875008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.15896526038341, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.043113289762588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3517963068970236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3654131000761778, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0384452964007185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.490192663567421, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.078891619840223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.285107029566812, -7.0, -7.0, -2.378397900948138, -7.0, -7.0, -7.0, -3.406661814514544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.250175948083925, -7.0, -7.0, -7.0, -7.0, -3.630122642859312, -7.0, -2.837588438235511, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6522463410033232, -2.756636108245848, -7.0, -7.0, -3.1690863574870227, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3463529744506384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.9012139819931883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4885507165004443, -7.0, -2.4002500911501117, -7.0, -3.525044807036845, -4.371600393412442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6898414091375047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.762678563727436, -7.0, -7.0, -3.2127201544178425, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6962689967455327, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8458212616333527, -7.0, -3.024895960107485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4415380387021606, -7.0, -7.0, -2.6242820958356683, -4.130858893597252, -7.0, -7.0, -3.2845811128217504, -7.0, -7.0, -7.0, -7.0, -3.140193678578631, -2.815577748324267, -2.621868384681515, -7.0, -2.7155855518931964, -7.0, -5.098391034810722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45484486000851, -7.0, -2.754348335711019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.956093159053612, -7.0, -2.6127838567197355, -3.5044090720010512, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4452927694259716, -3.048053173115609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4803663095328092, -7.0, -3.3896975482063856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.652816642878804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.544055635759241, -3.4870676377163163, -7.0, -7.0, -7.0, -3.106955425644155, -7.0, -7.0, -7.0, -2.6711728427150834, -7.0, -3.710540447933297, -7.0, -7.0, -3.8783685781837227, -4.077077066845761, -5.172696317831423, -7.0, -2.450029045237934, -7.0, -4.612275116542189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605811248305117, -7.0, -7.0, -4.031953515152245, -7.0, -7.0, -3.60959440922522, -4.014646524684032, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5161385767170743, -2.6444385894678386, -3.0941215958405612, -7.0, -3.3895204658463776, -3.9934803190699966, -7.0, -7.0, -7.0, -7.0, -2.457124626303409, -4.32791039358105, -7.0, -2.161368002234975, -7.0, -3.750970984437319, -7.0, -7.0, -7.0, -7.0, -3.4913616938342726, -7.0, -7.0, -2.5599066250361124, -7.0, -7.0, -3.835817354293473, -7.0, -7.0, -3.8680857845717336, -4.164650215934297, -3.83890416082117, -7.0, -3.077912702949456, -7.0, -7.0, -2.6720978579357175, -7.0, -7.0, -2.582874673593952, -7.0, -7.0, -3.0024900412432993, -7.0, -7.0, -2.9273703630390235, -2.519171463821659, -7.0, -3.0111473607757975, -2.6232492903979003, -7.0, -3.7313671298249993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6744937172963503, -2.8095597146352675, -3.549814370675745, -7.0, -7.0, -2.46014581749175, -7.0, -7.0, -7.0, -3.7170044070405472, -7.0, -7.0, -7.0, -2.788168371141168, -7.0, -7.0, -3.608739919068788, -2.9400181550076634, -2.8976270912904414, -3.124422705456867, -7.0, -2.970036776622557, -2.3005954838899636, -3.7340794072805945, -7.0, -3.26030994579492, -7.0, -7.0, -7.0, -4.271632537487123, -3.4089180208467798, -7.0, -3.2835273648616936, -3.7125234348776948, -7.0, -3.9611362173872253, -4.283640388800368, -2.158513262616432, -7.0, -7.0, -7.0, -7.0, -7.0, -3.030599721965951, -3.4705574852172743, -7.0, -7.0, -7.0, -3.0064660422492318, -7.0, -7.0, -7.0, -7.0, -2.846337112129805, -2.649334858712142, -7.0, -7.0, -2.7399676967595092, -7.0, -7.0, -2.677150521273433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.28023680960969, -7.0, -7.0, -7.0, -3.470410490975931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.877083256650651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557302638328947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3944516808262164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5172486965011185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3384564936046046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.9012139819931883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7218106152125467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9180303367848803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7323937598229684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.242131288530818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.280173021838674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.330687657787511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.004751155591001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626596966780973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.466823151065687, -7.0, -4.740283719681879, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788875115775417, -3.2460059040760294, -7.0, -7.0, -2.2764618041732443, -7.0, -4.328868673852926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.617000341120899, -4.302511306010539, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2081725266671217, -7.0, -7.0, -7.0, -2.806179973983887, -7.0, -3.7077404542737713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278387725209282, -2.70594142445768, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9253120914996495, -7.0, -7.0, -7.0, -7.0, -4.146283113159587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295127085252191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274942566083686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8770025574116485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3138672203691537, -7.0, -1.4771212547196626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9637878273455553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590042627883181, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.611723308007342, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9360107957152097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432828242457897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7242758696007892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.260468911566059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.126001456787675, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5826314394896364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.583198773968623, -7.0, -7.0, -7.0, -7.0, -3.3884564527002667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.462397997898956, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.478566495593843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.56702636615906, -7.0, -7.0, -7.0, -3.104145550554008, -2.7965743332104296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1583624920952498, -7.0, -2.1172712956557644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145848756590544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6747325778893765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985695859689842, -7.0, -7.0, -3.12057393120585, -3.6320634252958612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8309092995464433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.261334253799131, -7.0, -3.3126004392612596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.239749810446363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.448992149239026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.036708721569886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6330642726914992, -7.0, -7.0, -7.0, -3.897791981939225, -7.0, -7.0, -7.0, -3.627263416568221, -7.0, -7.0, -7.0, -7.0, -4.133379211923518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.150339140453838, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4716339254486073, -7.0, -7.0, -3.343480209334696, -7.0, -7.0, -7.0, -7.0, -3.388988785124714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2811470420244278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.842609239610562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.915839360077133, -5.154685627462485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2322643587752227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.31722734917642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3592661646067485, -3.5165353738957994, -7.0, -3.2644898803209164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.323808795527016, -7.0, -7.0, -3.8682916880178557, -7.0, -7.0, -7.0, -7.0, -2.9970950093565927, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6413168032733307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.356564405427492, -7.0, -7.0, -4.264357321211541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6351820486562674, -4.158211669214101, -4.005244879445366, -7.0, -3.375343489545472, -2.22695122879284, -7.0, -4.426153268215979, -3.5703171726079854, -7.0, -3.1914160794625115, -4.593917107968336, -3.630455612769106, -3.8595852430479183, -3.0234829244540182, -7.0, -3.115627150990863, -3.0545009496306323, -3.461085645778676, -7.0, -3.9865478134147243, -3.615685384838915, -7.0, -4.018575683467251, -3.8292394281413893, -7.0, -7.0, -4.174219766183947, -7.0, -3.286697594339884, -3.149361247980459, -3.4855685558706275, -2.9335102949995018, -3.922050402167174, -3.5962671263955155, -3.6754575416412085, -4.111464151586654, -3.778458766742468, -3.4631959668545558, -7.0, -7.0, -4.590641242012281, -3.296665190261531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.826690157228338, -3.49043608119321, -3.827756862978617, -7.0, -3.5453071164658243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.084165022655899, -4.084303641312077, -5.177348890367912, -7.0, -7.0, -7.0, -3.5147622417727225, -7.0, -7.0, -3.1527468640264606, -4.1169396465507555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.727703883685354, -7.0, -7.0, -3.8444771757456815, -3.3520803191505655, -7.0, -4.649947891142217, -7.0, -7.0, -7.0, -4.077222510411053, -7.0, -7.0, -7.0, -7.0, -3.652922887567942, -2.714901024547078, -7.0, -3.1527468640264606, -3.0427723374976736, -2.7616057013194175, -3.016805502720029, -3.4446692309385245, -7.0, -7.0, -3.1084522639030685, -7.0, -2.4778048789297906, -3.1204093945560682, -3.394976719554564, -3.2631624649622166, -1.8848322900885788, -2.7427251313046983, -2.7968715576878025, -3.444513206334043, -3.0786380383696725, -2.7166524440808852, -2.813247300897605, -3.1419198739138805, -7.0, -3.3230457354817013, -3.284205067701794, -3.1484484035233837, -3.3422252293607904, -3.286456469746983, -2.3893208102588974, -2.401140510148946, -3.013342904345347, -3.2819419334408244, -3.3005954838899636, -7.0, -3.484299839346786, -7.0, -7.0, -7.0, -3.155336037465062, -7.0, -7.0, -2.6025250577460293, -7.0, -2.9221413362079565, -3.388988785124714, -2.953034457250357, -7.0, -3.118430077122089, -7.0, -7.0, -2.7504143122960287, -3.0346284566253203, -7.0, -3.306425027550687, -3.430478187932044, -3.004536317851323, -3.1008872548535935, -2.908306260085468, -1.8447453851171665, -7.0, -2.603669484764532, -7.0, -7.0, -2.8609366207000937, -2.7645497190644672, -3.525821952156663, -7.0, -2.6009728956867484, -3.394976719554564, -7.0, -3.345765693114488, -3.0600679715239822, -7.0, -7.0, -3.452016565962548, -7.0, -3.378942698613437, -3.5399538416563967, -3.4207806195485655, -2.688320927665063, -7.0, -3.0007438674075004, -3.3209766773428235, -3.5345337560051155, -3.2166935991697545, -7.0, -2.97657921864011, -3.0513669359209556, -3.619823500457278, -3.3059958827708047, -2.94423584379348, -2.6551188256238, -2.519827993775719, -3.0305592452911556, -3.276628888711961, -2.526867723387192, -7.0, -3.1020905255118367, -7.0, -7.0, -7.0, -7.0, -2.8796692056320534, -7.0, -2.9995654882259823, -7.0, -2.751086554886017, -7.0, -7.0, -7.0, -7.0, -3.362670929725667, -7.0, -7.0, -3.0239722565010565, -3.5805828768143675, -3.0800850850458694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3220124385824006, -7.0, -2.8963884118460372, -3.214578953570499, -2.813008795492136, -3.004751155591001, -7.0, -3.291701770729981, -3.286231854028553, -7.0, -3.31492005599242, -7.0, -7.0, -3.1983821300082944, -3.1811763955885275, -7.0, -7.0, -7.0, -3.037625669914719, -7.0, -3.243368813730389, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.881403679327327, -7.0, -7.0, -7.0, -7.0, -3.642662331442035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0043213737826426, -4.276151482986834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5597271274175615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.338037934903125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1119342763326814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0322157032979815, -7.0, -7.0, -7.0, -7.0, -7.0, -2.845098040014257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8208317472884548, -2.781755374652469, -7.0, -7.0, -7.0, -7.0, -2.4742162640762553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7624910040260096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100715086573081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6843964784190204, -3.4255342204982635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6541765418779604, -7.0, -2.5877109650189114, -7.0, -3.406426624548381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.467034339643714, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0392157659039505, -7.0, -2.9410142437055695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.842609239610562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.219977256744623, -3.718169405391307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.236564251109213, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2997251539756367, -7.0, -7.0, -7.0, -4.19721161702191, -7.0, -7.0, -7.0, -3.622006673006805, -7.0, -3.0128372247051725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30666087655063, -7.0, -7.0, -3.7598188773748262, -7.0, -7.0, -7.0, -7.0, -2.829303772831025, -7.0, -3.090258052931316, -2.3935752032695876, -7.0, -7.0, -4.195152133593287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.734191551493303, -7.0, -7.0, -4.545690512112002, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0831441431430524, -7.0, -7.0, -4.317582839780199, -4.446785619301188, -7.0, -7.0, -4.429251503330693, -2.723044991643445, -7.0, -7.0, -3.692181714500473, -7.0, -4.033946202990361, -7.0, -7.0, -7.0, -3.3942239667723677, -7.0, -7.0, -3.6981392252174574, -7.0, -7.0, -7.0, -7.0, -3.873436863222037, -3.882140162435669, -7.0, -7.0, -7.0, -7.0, -7.0, -4.102613766771564, -3.92236209678479, -4.581585603670256, -7.0, -7.0, -7.0, -7.0, -7.0, -4.350073489951687, -7.0, -3.485863329597335, -7.0, -4.271004725785696, -3.5262961904825314, -3.73870130043471, -7.0, -7.0, -7.0, -4.242640797817615, -3.7861833455676335, -7.0, -4.071476967698918, -7.0, -3.707058940627596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.053942329354995, -4.134946257916835, -7.0, -7.0, -7.0, -7.0, -4.009843792773555, -7.0, -7.0, -3.6085260335771943, -7.0, -7.0, -3.359076226059263, -7.0, -7.0, -7.0, -7.0, -7.0, -4.158302169228023, -7.0, -7.0, -3.605305046141109, -3.609535123922841, -7.0, -4.031660887671635, -7.0, -7.0, -3.128937494690652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3898303126080624, -7.0, -7.0, -7.0, -3.384353414137506, -3.9921999297955852, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5870677698578, -7.0, -7.0, -7.0, -2.793246982819348, -3.229425847920695, -3.441695135640717, -7.0, -2.8847953639489807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4695422107716865, -3.1093899325453607, -4.139768925279731, -7.0, -3.3740147402919116, -7.0, -3.151676230847048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.300812794118117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7528164311882715, -3.5546102852261643, -7.0, -7.0, -7.0, -7.0, -3.3332456989619628, -7.0, -7.0, -3.1943292994928325, -7.0, -3.4900881970129864, -7.0, -3.40705081480425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1280760126687155, -7.0, -2.8813846567705728, -3.7246035153967165, -3.0013009330204183, -2.9655152710625696, -7.0, -3.7317498835272636, -7.0, -7.0, -7.0, -7.0, -2.423245873936808, -4.2709581850920975, -7.0, -7.0, -3.276921132065774, -3.410713982002206, -7.0, -3.6586313746095143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7701152947871015, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8514112423949736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.415140352195873, -2.734199560686231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5170638734826545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.466125870418199, -7.0, -7.0, -7.0, -7.0, -7.0, -3.55942779975949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333467426905371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.123851640967086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6434526764861874, -1.8016323462331667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8195439355418688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426071864965211, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.182414652434554, -7.0, -7.0, -7.0, -7.0, -4.192158425582441, -7.0, -7.0, -7.0, -7.0, -2.7701152947871015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8095597146352675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.1139433523068367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.060697840353612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3991543339582164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4190465771041594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639257328519408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.622006673006805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.906335041805091, -4.399927418378985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9867717342662448, -7.0, -7.0, -2.638156336676239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1958996524092336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5185139398778875, -1.255272505103306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6589648426644352, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9945371042984978, -7.0, -4.055875039146097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8009918612601714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5910646070264993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8613352388849425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6479531777128638, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5854607295085006, -7.0, -7.0, -7.0, -7.0, -3.2376926476186703, -7.0, -7.0, -7.0, -7.0, -2.787460474518415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8254261177678233, -7.0, -7.0, -1.5910646070264993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.1139433523068367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149065080207621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.436162647040756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6793824659429104, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6532125137753437, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5418911250960012, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7520484478194387, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9242792860618816, -7.0, -7.0, -3.4032921451582543, -7.0, -2.2576785748691846, -1.787696568289874, -4.605520523437469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0599418880619544, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097583515541089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.945222316635341, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.395186557446505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.10097675539313, -7.0, -4.7838750063274365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.300247561194085, -2.8761353300030206, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1652443261253107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.17201588684082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.152104800892868, -7.0, -7.0, -4.603295970166954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9830847727377883, -7.0, -7.0, -7.0, -3.769081787118219, -7.0, -4.626576444406813, -7.0, -7.0, -7.0, -3.732634967539196, -7.0, -7.0, -7.0, -7.0, -3.1560946306394277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.940446753156396, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603555728624722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2076343673889616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8887409606828927, -3.7149999674120426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30977916448048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14622108881188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.894758994371892, -7.0, -7.0, -2.910624404889201, -3.9739471576440217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.354108439147401, -7.0, -7.0, -2.359835482339888, -7.0, -7.0, -7.0, -4.033041569076784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0492180226701815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517327882294373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4479328655921804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05618042334214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5021538928713607, -7.0, -7.0, -7.0, -7.0, -4.735686707719744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9568404901592333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.949145952419944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8898617212581885, -7.0, -7.0, -7.0, -7.0, -3.3905260793492746, -7.0, -7.0, -2.6273658565927325, -2.7007037171450192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.093421685162235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.041392685158225, -7.0, -2.155336037465062, -7.0, -7.0, -2.4240645254174877, -2.833784374656479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.167317334748176, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6699364163086976, -7.0, -7.0, -7.0, -7.0, -2.661812685537261, -3.6761446803562063, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6011905326153335, -7.0, -7.0, -3.1152775913959014, -7.0, -7.0, -7.0, -7.0, -7.0, -2.75815462196739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0629578340845103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.74350976472843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.616580530085886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.245430407281296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.609882420608204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983400738180538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626658528085447, -7.0, -7.0, -7.0, -3.733277533932582, -7.0, -7.0, -7.0, -7.0, -3.4586378490256493, -7.0, -7.0, -2.7015679850559273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.639396832071146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2900346113625183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9045280136121536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9812521606551154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5943925503754266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368277585134854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.041392685158225, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7007037171450192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1386184338994925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9819997141298784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1621061743506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6034727671155, -7.0, -7.0, -2.509202522331103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.279210512601395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.558708570533166, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145507171409663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313445370426414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.399864008046825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6232492903979006, -7.0, -7.0, -7.0, -3.692670699156369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6857417386022635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.499549625905149, -7.0, -7.0, -7.0, -2.413299764081252, -4.735535028166055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6263403673750423, -7.0, -7.0, -7.0, -7.0, -7.0, -4.250070148646245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6694377594224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3222192947339195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.911157608739977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.550228353055094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.344195715871435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.609679765845366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9825425823029432, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626463554010928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639386869017684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6035160533584065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7972675408307164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3292961591399655, -7.0, -7.0, -7.0, -2.8887409606828927, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8360420147017673, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4983105537896004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335618349377605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.700876708376904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.515873843711679, -2.8744818176994666, -7.0, -7.0, -7.0, -4.518316488416471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1760912590556813, -2.44870631990508, -7.0, -7.0, -7.0, -7.0, -2.3820170425748683, -7.0, -3.155411956437706, -7.0, -7.0, -7.0, -2.669316880566112, -7.0, -7.0, -3.5122840632818537, -7.0, -7.0, -2.368286884902131, -2.5477747053878224, -3.833083334178343, -7.0, -7.0, -7.0, -2.7058637122839193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7234556720351857, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7723217067229196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.88279278907293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.910357557272878, -7.0, -7.0, -7.0, -7.0, -3.493959674554181, -7.0, -7.0, -7.0, -7.0, -2.842609239610562, -7.0, -7.0, -2.4756711883244296, -2.6242820958356683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.298853076409707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.155336037465062, -7.0, -7.0, -7.0, -1.7103994661168005, -7.0, -1.6887163699704657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.05307844348342, -7.0, -2.1789769472931693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0043213737826426, -7.0, -7.0, -2.8692317197309762, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6829569263012085, -2.621176281775035, -7.0, -7.0, -7.0, -7.0, -2.8300537573206825, -7.0, -7.0, -2.535610545908793, -7.0, -7.0, -7.0, -7.0, -1.9344984512435677, -7.0, -2.6522463410033232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.432969290874406, -7.0, -7.0, -7.0, -3.27315566043433, -7.0, -7.0, -7.0, -7.0, -3.090258052931316, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097871344817271, -7.0, -7.0, -7.0, -7.0, -3.0523090996473234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1818435879447726, -7.0, -7.0, -3.9492924014120256, -3.3823773034681137, -7.0, -7.0, -7.0, -3.4299509394978513, -2.5083052193633395, -7.0, -7.0, -7.0, -2.44870631990508, -3.119915410257991, -2.9854264740830017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.362293937964231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.553883026643874, -7.0, -4.302049390376251, -7.0, -7.0, -7.0, -7.0, -7.0, -3.777499319590365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8754856994168585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4638929889859074, -7.0, -7.0, -7.0, -7.0, -7.0, -2.558708570533166, -7.0, -7.0, -7.0, -4.627427309011094, -7.0, -7.0, -7.0, -7.0, -3.197280558125619, -7.0, -7.0, -7.0, -7.0, -7.0, -3.009450895798694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.505149978319906, -7.0, -2.367355921026019, -3.4050046650503694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.130333768495006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.001730108092166, -2.733999286538387, -7.0, -2.3293978793610424, -7.0, -7.0, -7.0, -3.7043221408222355, -2.863322860120456, -7.0, -7.0, -7.0, -2.103803720955957, -7.0, -7.0, -2.857935264719429, -7.0, -7.0, -7.0, -3.1225435240687545, -2.6309361190641916, -7.0, -7.0, -7.0, -3.188365926063148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1487876840563125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.815577748324267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6757783416740852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576162757403178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.55755532051209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0068937079479006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.611723308007342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071219018399975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.57978359661681, -2.6599162000698504, -7.0, -7.0, -2.7032913781186614, -7.0, -7.0, -4.727500590847347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.849910558301496, -7.0, -7.0, -4.067638008337918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5575072019056577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.303196057420489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4885507165004443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7103994661168005, -7.0, -7.0, -2.1319392952104246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.745933158459443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432884346746606, -7.0, -7.0, -3.7651716502632686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7058637122839193, -7.0, -4.300747612466259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.135514280998787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351525754547836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9180303367848803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080774352724805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3961993470957363, -7.0, -2.8692317197309762, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6218856731304694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8577344348976292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3967222785037734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.724808168565719, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7363965022766426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6522463410033232, -7.0, -4.517868599139189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7944880466591697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1958996524092336, -2.6364878963533656, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6384892569546374, -2.5037906830571814, -7.0, -7.0, -2.9429995933660407, -7.0, -7.0, -7.0, -7.0, -2.469822015978163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7710727832211948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8965262174895554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.250558238849045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9709509343454243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0073209529227447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9046382755548041, -7.0, -3.5005109105263372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.462896900288001, -2.6503075231319366, -7.0, -7.0, -7.0, -7.0, -2.05307844348342, -7.0, -2.6180480967120925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.606047991425154, -7.0, -7.0, -3.446770095200388, -7.0, -7.0, -2.3263358609287517, -7.0, -7.0, -7.0, -7.0, -7.0, -2.932980821923198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6465017500316117, -7.0, -5.432926019526862, -7.0, -3.0211892990699383, -3.8447007891455773, -2.971739590887778, -7.0, -7.0, -7.0, -7.0, -3.1142772965615864, -2.9698816437465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.054421524462536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.539912084579118, -7.0, -3.6991219808103533, -3.425044874551389, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.050959459771651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.562126253796315, -7.0, -4.331164007951355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.024485667699167, -7.0, -7.0, -3.985291718592888, -7.0, -7.0, -7.0, -7.0, -7.0, -4.627078963610722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6572471298837166, -7.0, -4.381869249183214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.147738141119988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.792391689498254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.707806655538521, -7.0, -7.0, -7.0, -7.0, -3.6684791029325856, -7.0, -7.0, -7.0, -2.1056993786226297, -7.0, -3.4424275042491854, -3.625621081424908, -7.0, -2.805160901599434, -3.3609088282656576, -7.0, -7.0, -7.0, -2.5308397786165204, -7.0, -7.0, -4.261881149383667, -7.0, -7.0, -7.0, -2.8394780473741985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3888114134735234, -7.0, -2.8948696567452528, -7.0, -2.2487903775753857, -2.7708520116421442, -7.0, -2.7558748556724915, -7.0, -7.0, -7.0, -2.7319109421168726, -2.767897616018091, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7993405494535817, -2.9786369483844743, -2.864511081058392, -7.0, -7.0, -7.0, -3.5656510827780115, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9863237770507656, -7.0, -7.0, -4.227629649571009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7489628612561616, -2.7134905430939424, -7.0, -2.8561244442423, -2.7547304690237535, -7.0, -2.9410142437055695, -3.0141003215196207, -3.9212832006133365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.011993114659257, -7.0, -7.0, -7.0, -7.0, -2.7180862947830917, -7.0, -7.0, -2.639486489268586, -7.0, -3.2950537061049516, -7.0, -7.0, -2.157607853361668, -1.6355895561666118, -3.124178055474675, -7.0, -2.479647278769387, -7.0, -7.0, -2.230959555748569, -1.7427855380760457, -3.8361816488163294, -7.0, -3.1142772965615864, -2.863322860120456, -2.3483048630481607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7558748556724915, -7.0, -2.6613393400060397, -3.458788881710845, -7.0, -7.0, -7.0, -7.0, -3.086857915659847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8169038393756605, -7.0, -2.8787563722006486, -7.0, -7.0, -7.0, -2.7701152947871015, -7.0, -7.0, -7.0, -2.8271537957574657, -7.0, -7.0, -7.0, -7.0, -2.5283524591538877, -7.0, -7.0, -2.9489017609702137, -2.6834973176798114, -3.035829825252828, -7.0, -2.2972131959896416, -7.0, -2.125481265700594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4002500911501117, -2.7218106152125467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4240645254174877, -2.7007037171450192, -2.2304489213782737, -1.6887163699704657, -2.1319392952104246, -1.9046382755548041, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2405492482826, -2.088726563953855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7015679850559273, -7.0, -2.841359470454855, -3.302157695941016, -7.0, -7.0, -7.0, -2.7442929831226763, -7.0, -2.786751422145561, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6188990588803125, -7.0, -7.0, -7.0, -7.0, -2.486666572625893, -2.8124955649012526, -7.0, -7.0, -7.0, -7.0, -2.751279103983342, -2.9492924014120256, -7.0, -7.0, -3.2477278329097232, -7.0, -7.0, -7.0, -7.0, -2.5118833609788744, -2.714329759745233, -2.6216954623292787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6308635491781667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.933704163998982, -2.7267272090265724, -7.0, -2.226342087163631, -2.7774268223893115, -1.9975501969906566, -2.0413926851582254, -3.1760912590556813, -7.0, -7.0, -7.0, -4.4971405201458134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2536610209467267, -2.9390197764486667, -7.0, -3.666798683666174, -7.0, -4.655437789832168, -7.0, -7.0, -2.8153071215317156, -2.174479774899102, -7.0, -2.169772369448083, -7.0, -2.2430380486862944, -2.3312826522290138, -2.4310419453358856, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8432327780980096, -7.0, -2.4614985267830187, -7.0, -2.061354122279638, -7.0, -7.0, -3.6212490044269763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4348402532975735, -7.0, -7.0, -7.0, -7.0, -7.0, -4.098158983460533, -7.0, -4.394031192348731, -4.655128826420096, -7.0, -4.134740071165334, -7.0, -5.102601765021186, -7.0, -4.787240792066473, -7.0, -7.0, -7.0, -7.0, -7.0, -4.707024836855785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.394469192347434, -7.0, -1.6152690965883847, -7.0, -3.3100344691359895, -2.43426466970869, -7.0, -7.0, -7.0, -3.9448896324940845, -3.2024201977780304, -2.6834973176798114, -7.0, -3.6723441962757897, -3.4282158115613255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.514813294999285, -4.680281109863301, -7.0, -7.0, -3.3473300153169503, -2.835056101720116, -4.313761796292436, -7.0, -7.0, -7.0, -4.06918692515191, -2.791690649020118, -7.0, -7.0, -4.283685590141156, -7.0, -7.0, -7.0, -4.166341291983498, -7.0, -1.6471383660631504, -4.6083869514996945, -4.567144045195657, -7.0, -3.858236335429513, -7.0, -7.0, -3.6344772701607315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7984779980639836, -2.833147111912785, -2.8692317197309762, -7.0, -2.9523080096621253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02928229515597, -7.0, -7.0, -7.0, -3.4679039465228003, -7.0, -3.0043213737826426, -7.0, -7.0, -2.5674185056727485, -7.0, -7.0, -2.3811150807098507, -2.017629488303718, -7.0, -3.85076872692888, -7.0, -7.0, -4.172690481755848, -2.9530393949118094, -7.0, -7.0, -7.0, -2.9385197251764916, -7.0, -2.3716834463321415, -7.0, -2.492061604512599, -3.4670158184384356, -7.0, -7.0, -3.329092647195331, -7.0, -7.0, -2.733999286538387, -2.568788212315347, -7.0, -7.0, -7.0, -2.8454081396217936, -4.338356873353703, -7.0, -2.79309160017658, -2.341104638894293, -7.0, -3.8283376000590046, -7.0, -7.0, -7.0, -7.0, -3.0402174245188593, -2.364550995353972, -7.0, -1.8222770753484876, -7.0, -7.0, -2.8041394323353503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7873592521704675, -3.0457140589408676, -7.0, -7.0, -2.8027737252919755, -2.5269133613887105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.674975896844148, -7.0, -7.0, -7.0, -4.018658897585517, -7.0, -3.972387999107473, -3.686837284994604, -3.7839035792727347, -2.798650645445269, -7.0, -2.3096301674258988, -7.0, -2.9334872878487053, -7.0, -7.0, -7.0, -2.5017437296279943, -7.0, -3.257138370205915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.968907271481587, -2.8041394323353503, -7.0, -7.0, -7.0, -7.0, -7.0, -2.866877814337499, -7.0, -3.092281919036219, -7.0, -7.0, -7.0, -7.0, -2.3242824552976926, -7.0, -7.0, -3.6834748147920684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.611723308007342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.832508912706236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.320788091434305, -7.0, -7.0, -7.0, -3.6585837154070626, -3.682145076373832, -7.0, -7.0, -7.0, -7.0, -7.0, -2.624488362513449, -7.0, -7.0, -7.0, -2.8000981801747757, -7.0, -7.0, -2.824125833916549, -2.067655263657066, -2.5899496013257077, -7.0, -3.360226455806278, -2.89707700320942, -7.0, -7.0, -7.0, -2.993876914941211, -7.0, -2.9258275746247424, -7.0, -7.0, -7.0, -3.869094758435343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.807535028068853, -2.6642501190990586, -7.0, -7.0, -2.5324995860946626, -7.0, -2.8530895298518657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.446459496594692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7792356316758635, -3.5322701446090563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6314437690131722, -7.0, -2.404833716619938, -7.0, -3.7470750149405774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0707764628434346, -7.0, -2.8382192219076257, -7.0, -7.0, -7.0, -7.0, -7.0, -3.00987563371216, -7.0, -3.3004867879860287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5788683286660286, -7.0, -7.0, -2.7015679850559273, -7.0, -4.138452701260987, -7.0, -2.4599952560473914, -7.0, -7.0, -7.0, -7.0, -2.459392487759231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.020775488193558, -3.0111473607757975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6896048008603892, -7.0, -7.0, -7.0, -3.3142535565153644, -7.0, -7.0, -7.0, -7.0, -2.8273692730538253, -7.0, -7.0, -7.0, -2.687974620034556, -7.0, -2.741151598851785, -7.0, -7.0, -3.7322006971472383, -7.0, -7.0, -7.0, -2.8680563618230415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8227388533320608, -7.0, -7.0, -7.0, -7.0, -2.78993308093175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.833784374656479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.57275546515422, -4.372795439374628, -2.520483532740792, -2.2380461031287955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9258275746247424, -4.007875743767586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9355072658247128, -7.0, -7.0, -7.0, -2.4578818967339924, -7.0, -7.0, -7.0, -7.0, -7.0, -3.42781057267599, -2.678973375919765, -4.202937636552238, -7.0, -7.0, -7.0, -3.060697840353612, -7.0, -2.859138297294531, -2.0450927670230357, -7.0, -7.0, -7.0, -7.0, -7.0, -3.074450718954591, -2.6928469192772297, -7.0, -7.0, -2.9344984512435675, -7.0, -7.0, -7.0, -7.0, -2.5937013287080988, -2.6351485136976085, -7.0, -2.9084850188786495, -3.49797104570027, -7.0, -7.0, -7.0, -2.833784374656479, -7.0, -2.9995654882259823, -7.0, -7.0, -7.0, -2.7390446475663306, -2.961421094066448, -7.0, -7.0, -4.058274146685951, -7.0, -7.0, -7.0, -7.0, -2.7437709944998567, -2.285557309007774, -7.0, -7.0, -1.7356928113607588, -2.824776462475546, -7.0, -7.0, -7.0, -7.0, -7.0, -3.00774777800074, -7.0, -3.673711908836969, -3.4699692094999595, -4.229675444296448, -7.0, -2.908753019184534, -7.0, -2.575187844927661, -7.0, -7.0, -7.0, -2.663386788318517, -7.0, -2.876217840591642, -7.0, -7.0, -7.0, -3.0572856444182146, -7.0, -7.0, -7.0, -2.7269987279362624, -2.8715729355458786, -2.753429841575423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4359557908892375, -7.0, -7.0, -4.104862518141077, -4.2599202335673745, -7.0, -7.0, -7.0, -7.0, -7.0, -3.924606606934837, -7.0, -7.0, -4.656558137964639, -7.0, -7.0, -7.0, -5.103112403420998, -7.0, -4.089269093046149, -7.0, -7.0, -7.0, -7.0, -7.0, -4.106182394938962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096005739715113, -7.0, -2.6050355490912556, -3.1961531473781424, -3.2717571463102697, -2.866508861395503, -2.586212104232087, -7.0, -2.6769982707961844, -3.6455941844910615, -3.1154107901339194, -3.3191060593097763, -7.0, -3.0742982439742996, -2.837114748515506, -7.0, -3.7640266076920375, -7.0, -7.0, -7.0, -3.499412125672275, -7.0, -7.0, -2.899499746196925, -3.680793140101235, -7.0, -7.0, -2.595496221825574, -7.0, -3.3855957604117104, -7.0, -3.9901167660679047, -3.6510840892430116, -7.0, -7.0, -7.0, -3.1786070026077806, -3.6848453616444123, -7.0, -2.9108910886445285, -3.292477593667784, -2.868585666558766, -2.7964355588101744, -7.0, -2.8233673153857817, -3.6656396121264856, -3.1740598077250253, -3.9389298097006464, -7.0, -2.89726044333122, -3.6492374723496073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.231681928224919, -2.9190780923760737, -2.6087933739869307, -7.0, -3.453471233722936, -4.010299956639812, -7.0, -2.954724790979063, -7.0, -3.812779707008964, -7.0, -4.3318623853290035, -2.8527848686805477, -7.0, -7.0, -3.7799570512469063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.746244871720198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1536968735859676, -4.4441072798376, -7.0, -7.0, -3.0073209529227447, -7.0, -2.6319508262592173, -7.0, -7.0, -3.187238619831479, -7.0, -7.0, -7.0, -2.852479993636856, -3.039731296098691, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.341315794596473, -7.0, -7.0, -7.0, -7.0, -3.837840861655523, -7.0, -7.0, -7.0, -2.7126497016272113, -3.326652014564429, -3.0338256939533106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6994040818153375, -7.0, -7.0, -7.0, -2.948706308904852, -7.0, -2.592916611888093, -3.757547853469244, -7.0, -3.504198918539445, -7.0, -3.7641761323903307, -7.0, -7.0, -7.0, -2.5308397786165204, -7.0, -7.0, -7.0, -7.0, -7.0, -4.322818621007395, -7.0, -7.0, -3.8151348166368138, -3.794418330874141, -7.0, -7.0, -7.0, -7.0, -2.1527250407314686, -3.1649473726218416, -7.0, -2.8506462351830666, -7.0, -7.0, -3.5628576747729945, -2.164352855784437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.479863113023098, -7.0, -3.076640443670342, -2.895422546039408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.406540180433955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8117983509420643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.952693805985888, -7.0, -7.0, -7.0, -3.5438818782481594, -3.3831568450325724, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6935270987144677, -3.356089625562946, -7.0, -2.985089506926381, -3.1948749479303777, -7.0, -7.0, -7.0, -7.0, -3.5082603055123345, -7.0, -2.6128730479675517, -7.0, -7.0, -7.0, -7.0, -3.535167485114944, -7.0, -3.215373152783422, -7.0, -7.0, -7.0, -3.3120715213029315, -7.0, -7.0, -3.526339277389844, -7.0, -3.2013971243204513, -7.0, -7.0, -7.0, -7.0, -3.3395508108256715, -3.1246128935404425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.608312042697327, -7.0, -7.0, -7.0, -3.179775136236658, -7.0, -7.0, -7.0, -7.0, -3.3941013020400446, -2.705007959333336, -7.0, -7.0, -4.289633539009645, -3.4959603948817053, -3.5162708827293403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5466660250701842, -3.519827993775719, -7.0, -2.9143431571194407, -7.0, -7.0, -3.1080936541800073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.558708570533166, -7.0, -7.0, -7.0, -3.4988616889928843, -2.9582054065347525, -7.0, -7.0, -3.539828558377898, -7.0, -3.6822654462420923, -7.0, -7.0, -7.0, -7.0, -3.593618308129536, -7.0, -2.9489017609702137, -3.0426598769592315, -3.49996186559619, -7.0, -7.0, -4.28227459870558, -7.0, -7.0, -7.0, -7.0, -7.0, -3.509336958017644, -7.0, -7.0, -7.0, -1.2377501940906657, -7.0, -7.0, -3.190611797813605, -7.0, -7.0, -2.3641244218181514, -3.2648964924204757, -3.446614823664267, -2.216045881701589, -7.0, -7.0, -7.0, -7.0, -3.244153372551425, -3.0382226383687185, -3.1151665612324684, -7.0, -7.0, -7.0, -3.325515663363148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5802405082653763, -3.5439439424829065, -7.0, -7.0, -3.549861188471943, -7.0, -7.0, -3.002528594136107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4028629579685634, -7.0, -7.0, -2.7317551363799857, -7.0, -7.0, -7.0, -3.551327988003846, -3.565611724902059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.634275694625944, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40226138245468, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.525044807036845, -7.0, -7.0, -7.0, -2.915839360077133, -3.219977256744623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5005109105263372, -7.0, -3.57275546515422, -7.0, -3.300646803056269, -7.0, -7.0, -7.0, -3.0756685954731195, -7.0, -7.0, -3.523486332343228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.516667559099043, -3.322770429937203, -7.0, -7.0, -7.0, -3.49789674291322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7287594751678745, -2.9499751778296535, -7.0, -7.0, -7.0, -7.0, -3.5460488664017342, -2.686356926304246, -7.0, -3.6907781255710885, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5900612308037427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4466924663715273, -7.0, -7.0, -3.5122840632818537, -3.6829368988867754, -7.0, -7.0, -2.340240674395174, -7.0, -7.0, -7.0, -7.0, -3.323355245756284, -3.5423273827739745, -7.0, -7.0, -7.0, -7.0, -3.7462110006796334, -3.2942457161381182, -7.0, -7.0, -7.0, -7.0, -3.2563568863955257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2379205663503803, -7.0, -3.5975489342043447, -3.0322963447394726, -3.7473848529183247, -7.0, -3.60916737430202, -2.3227504288805587, -3.5969268143429707, -7.0, -7.0, -7.0, -7.0, -2.9708116108725178, -7.0, -7.0, -7.0, -7.0, -2.64957822912025, -7.0, -7.0, -7.0, -7.0, -7.0, -3.245594912768832, -7.0, -7.0, -3.8693001841848957, -3.8151274306134306, -4.331912948773648, -7.0, -3.569900362684715, -7.0, -3.898176483497677, -4.144652031188698, -3.551739634346346, -7.0, -4.135895575564019, -3.7040646794085674, -3.603865792191225, -3.7427251313046983, -3.596659918493907, -4.0389974726186795, -3.835087847232495, -3.5999649037760753, -3.027281637748496, -3.7933612645639485, -7.0, -3.768836471411452, -7.0, -4.106211302163002, -3.690934048739477, -4.235402180158032, -3.8759578791368297, -3.714497408649806, -7.0, -3.6492212391658385, -3.9909379276601444, -3.2903420614839938, -3.827024458044125, -3.9528650614677883, -3.960232873128512, -3.60580048418724, -4.150909873701122, -3.8001325865508604, -3.9604549212944278, -3.4786386315431668, -3.130976691605617, -3.2234202205399374, -2.747979909234419, -3.318793504793297, -3.2555137128195333, -2.8490199494984036, -7.0, -3.4014350072298702, -3.9529376677509807, -3.655906418180215, -3.864748335629659, -3.2681617816431308, -3.5995009867887746, -7.0, -7.0, -7.0, -7.0, -2.9995654882259823, -3.2606198751723716, -7.0, -7.0, -2.9585980084317365, -3.44854732180148, -3.7828050260346147, -7.0, -7.0, -7.0, -3.2791509426840255, -3.879841055986563, -3.91484299810463, -3.1406965525464146, -7.0, -3.5066403055665023, -3.871280972857973, -3.210920174711518, -3.435266886361759, -7.0, -7.0, -3.803934849863842, -2.730302712943313, -3.7466341989375787, -7.0, -3.172310968521954, -3.3658182050172414, -7.0, -3.9626912667546974, -7.0, -7.0, -3.236537261488694, -3.4205168312286167, -7.0, -7.0, -7.0, -7.0, -3.8669368177316397, -2.6388677870923787, -7.0, -3.3087777736647213, -2.7568895628675167, -3.4217684012069243, -3.625963747121952, -3.6034691597338386, -7.0, -7.0, -3.951386094880293, -7.0, -3.542767989462867, -3.1101405949728718, -7.0, -7.0, -3.149116430427238, -3.6586790285824486, -3.750199727829182, -7.0, -7.0, -2.771881320190099, -7.0, -7.0, -7.0, -7.0, -7.0, -3.508754102588731, -7.0, -3.500099191915723, -3.3957429438643922, -3.2060811050336295, -3.231851723743416, -7.0, -7.0, -2.5368108659915416, -7.0, -7.0, -7.0, -7.0, -2.837982785381378, -7.0, -3.250420002308894, -7.0, -7.0, -3.4219328132785085, -3.565611724902059, -3.2060158767633444, -7.0, -7.0, -7.0, -7.0, -4.086092764263604, -7.0, -7.0, -7.0, -7.0, -3.3674025166466746, -7.0, -7.0, -1.8005274714328756, -3.5412046906832586, -3.1989706073934725, -3.54703589974001, -3.4323277922616042, -3.5328817194073974, -7.0, -3.5758418740358406, -7.0, -7.0, -7.0, -7.0, -3.53731527311201, -3.3688445068258215, -7.0, -7.0, -2.9926166282706546, -7.0, -7.0, -3.4346221231362692, -3.285782273779395, -7.0, -7.0, -7.0, -3.875928984922927, -7.0, -3.655618583541222, -7.0, -7.0, -3.00987563371216, -3.7320719409998664, -7.0, -3.0743592403903977, -3.416011443521709, -3.1481911962420113, -3.777209258145685, -3.7411713032360767, -3.460797647928118, -7.0, -7.0, -7.0, -7.0, -3.5378190950732744, -7.0, -3.762453482363547, -7.0, -7.0, -7.0, -3.117628173221579, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.227372442289636, -3.436162647040756, -7.0, -7.0, -7.0, -3.5780658838360915, -7.0, -7.0, -7.0, -7.0, -3.5221833176186865, -7.0, -3.8776592441116087, -3.4877038631637265, -2.9839268369509955, -7.0, -7.0, -2.807196660710947, -7.0, -7.0, -3.7382056096443677, -7.0, -7.0, -7.0, -3.461198288622493, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5108799847561176, -7.0, -7.0, -7.0, -5.149354616033284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149105133899851, -7.0, -2.7933043927733774, -4.373279893277496, -7.0, -7.0, -2.931969120319917, -3.027277639180358, -7.0, -5.150292740338675, -7.0, -4.0370125409780915, -7.0, -2.807464739663779, -3.069674111945659, -7.0, -4.850345984314136, -1.9898918994693524, -7.0, -4.848281510243934, -7.0, -4.672411914830631, -4.848355410696216, -5.149619341533153, -2.808829255943203, -7.0, -7.0, -7.0, -5.149576257678986, -4.848989206251168, -5.14903426716125, -4.371403463765366, -7.0, -5.153394080644413, -5.149160586760595, -2.266591201940714, -7.0, -7.0, -4.672679607538666, -7.0, -5.149265311738653, -7.0, -7.0, -5.1492868696291, -5.149265311738653, -4.0389012666222, -3.1218253591650096, -7.0, -4.371187969667537, -3.8968751295426642, -4.672304175802286, -4.848149073810197, -7.0, -5.14938848527283, -7.0, -4.67482135154191, -7.0, -7.0, -7.0, -2.524514399128848, -7.0, -7.0, -7.0, -7.0, -4.15464608517337, -4.548352559894337, -7.0, -3.8718339990495183, -2.5372058865181337, -7.0, -7.0, -7.0, -5.149200631645913, -7.0, -7.0, -7.0, -7.0, -4.451313518411642, -4.195367600199167, -4.305817969913129, -4.547519343910926, -4.305001089817488, -4.548549101029368, -1.9514668045128307, -3.672839529029401, -5.149240672839162, -5.149028104289625, -7.0, -7.0, -5.1491944711346544, -4.672119418119499, -7.0, -5.149018859818209, -3.447197566155191, -7.0, -7.0, -7.0, -5.150612162606934, -7.0, -7.0, -5.149514701900688, -7.0, -5.15067049322578, -7.0, -7.0, -5.15013908827447, -4.67268268350736, -3.290083149124708, -5.149376169491331, -7.0, -7.0, -7.0, -3.365843818161034, -7.0, -3.180276823857626, -2.1982728443452566, -7.0, -7.0, -7.0, -2.077761476485917, -7.0, -3.9209025391581, -4.151887507509935, -7.0, -4.848303065841533, -4.67228262478892, -5.149662421113644, -7.0, -7.0, -2.924482559869432, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2033706558529422, -3.8775592589857277, -3.2811243094492752, -4.071486177340895, -4.304275050477128, -3.7198962835797453, -7.0, -7.0, -4.451282791695256, -4.378067663160357, -4.306382132150198, -7.0, -7.0, -7.0, -3.41253457748711, -7.0, -7.0, -7.0, -4.304801242437977, -7.0, -7.0, -3.7893139474454895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5785538211080494, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1492868696291, -7.0, -4.153589277403475, -7.0, -2.8593002162054635, -7.0, -3.7894335518935525, -2.5817098278976522, -4.672125577975422, -4.5482266039717745, -7.0, -4.849388698815317, -4.849754066288477, -3.607439703915141, -4.371726504556958, -7.0, -7.0, -7.0, -7.0, -3.7211966936121548, -7.0, -4.547023575658172, -7.0, -3.1432425020627006, -7.0, -3.5865660181861325, -7.0, -4.6738285029024995, -4.672122498058382, -7.0, -7.0, -7.0, -4.371600393412442, -7.0, -7.0, -7.0, -5.154685627462485, -3.718169405391307, -7.0, -5.149065080207621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.372795439374628, -3.300646803056269, -7.0, -7.0, -7.0, -5.1491174573697025, -4.451479405124862, -7.0, -7.0, -7.0, -5.149188310536008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0304869561303556, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149333061505514, -7.0, -5.149643958959544, -3.1969648714132997, -7.0, -3.532408552392377, -5.153195744095671, -7.0, -7.0, -7.0, -3.8755242639493086, -7.0, -3.3567068974160033, -5.14993618427544, -2.6286728307087173, -7.0, -4.8480227595874315, -7.0, -5.161014432494907, -3.4432537813307675, -4.4524488813344085, -4.249748522900275, -3.8303411630372226, -4.848047409150086, -4.848081300014507, -7.0, -7.0, -5.150642863909234, -7.0, -7.0, -5.1496962663578945, -7.0, -7.0, -7.0, -7.0, -5.149274550965593, -3.7585515963427407, -4.150931350113742, -4.848989206251168, -5.149483920739446, -2.116804385513106, -4.848490862207165, -7.0, -2.4172984115998495, -3.9185422038449507, -7.0, -5.150065315969936, -7.0, -5.1524290085454965, -5.150200555623702, -7.0, -7.0, -7.0, -7.0, -1.7741780084420744, -4.197302004237172, -7.0, -7.0, -7.0, -3.720591085320366, -4.548506115255735, -5.149065080207621, -7.0, -5.14993618427544, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1491174573697025, -4.849087576982787, -4.450310706005005, -2.9213725507652892, -4.1559703121583915, -1.930604544490573, -4.246578587998662, -4.306844566247316, -2.449620212881275, -4.85059722880952, -7.0, -4.548131344747943, -7.0, -4.248120459883603, -4.457715410495883, -7.0, -7.0, -7.0, -7.0, -4.849465482196628, -7.0, -7.0, -7.0, -7.0, -7.0, -4.456699977383792, -7.0, -7.0, -2.823206621070081, -2.819623688454021, -3.5585476707260986, -4.071003943554348, -2.980237184494648, -3.9505595616118, -3.510112883771509, -2.6434316192735525, -2.9012505800321833, -4.848062814416318, -2.5905031402619314, -2.362084192831113, -2.872282676291554, -2.5778275760908556, -2.840972784367111, -3.3900814326936954, -3.0440475554523125, -2.9001912510847543, -3.1241953803612605, -2.6260252699140123, -3.7251616989168106, -2.7366250525486784, -3.6520469834853126, -2.5764885701434403, -3.021257753888522, -2.890446296648246, -2.8444224209905213, -2.971525815752038, -3.948819315356727, -2.3958563241394613, -2.859412255610798, -2.954870831225884, -3.482321023291508, -3.366063161378102, -3.5759039703862934, -3.474133763936972, -3.750296924443472, -3.190670462474224, -3.0559527218697293, -2.596064481371864, -4.110507067122859, -2.5623689099317946, -3.4986132244051467, -2.990800554937705, -3.946350925999629, -2.329607016300816, -4.6742547252584545, -1.8093214507765927, -3.513270884465516, -3.9772143441653935, -2.8767235900989143, -2.754542969597536, -3.8848609218813404, -3.737452603142504, -3.8220550910247537, -3.948556606440763, -7.0, -3.514158198043977, -2.8081718973340783, -5.1552388418104504, -5.1505906704038935, -3.000045292154698, -1.6859897129364445, -2.1517212641187347, -7.0, -7.0, -5.149554714149009, -2.774831384045746, -2.560351291091242, -2.472436699106128, -3.881768950998944, -3.232385003072715, -7.0, -3.656834583726364, -2.0972084650238587, -2.823452401213676, -4.374901024683465, -3.362174189572871, -3.0246124170224853, -3.034457362461151, -3.3500268159642492, -5.149727032473089, -3.110911824815142, -2.551762876952401, -4.1101273185900435, -2.4618437822769756, -4.851108460676247, -4.0402492600992455, -3.444264050864443, -2.9324795300180524, -5.149705496421304, -5.149394643032612, -7.0, -7.0, -3.651765295390196, -3.1277207308231225, -7.0, -3.2650476611516357, -5.150053019367417, -4.456696942683218, -3.406395824613479, -4.110363169253384, -5.149763948934585, -7.0, -3.6893562233554094, -3.7880945575640985, -2.828724089405057, -3.6888093829536683, -4.8498584005624314, -4.45552091861866, -4.210957286602528, -4.55140119809846, -3.7763772790230172, -4.6746805297242355, -4.451642158270915, -4.31251887678985, -4.373095987078727, -4.452795036470653, -5.1504279092018646, -5.149730108964738, -7.0, -3.6123334399272435, -4.003814298596238, -7.0, -2.290001099692923, -3.116115307828765, -2.650583755051115, -7.0, -4.155463573759529, -4.849084503234671, -4.111176942004578, -4.450640105302473, -7.0, -7.0, -3.263854480804389, -4.672565781378651, -3.6731346140810803, -4.461456505933693, -7.0, -3.1763031311338112, -5.1507901999565835, -3.5858751617487856, -7.0, -4.306207442837337, -4.547402381300456, -4.1103080468020226, -2.7372302618724946, -4.3717449567751165, -5.149360774273305, -4.672353431245972, -4.118273746860196, -3.5547697644770895, -5.151023379854834, -7.0, -4.317403637191061, -3.9739955751309255, -2.4833757317425307, -7.0, -2.6435775608419076, -7.0, -4.8493948419854185, -2.999527557175333, -7.0, -3.2140725258594047, -4.8498584005624314, -4.1954229886237, -4.0038696446688835, -3.7557620768491304, -7.0, -5.149277630664228, -3.5370541354192144, -4.196575310462342, -7.0, -3.357791963471643, -3.4267659138622935, -5.156758071220854, -3.872420052218972, -3.70204408731056, -2.8452059258630054, -4.112318545682975, -3.4048581419444237, -7.0, -4.547014332367282, -2.902434777692052, -3.5223077273031205, -4.848444690301653, -4.074828626065748, -3.4219947885604296, -4.675329155248394, -3.485063432960738, -3.00428327132953, -3.7032884126289742, -5.149385406360198, -4.673911327036779, -5.149345378509518, -7.0, -5.150089908130527, -4.037469404238489, -4.680081571848349, -7.0, -5.1494100370500995, -7.0, -2.4900290301077472, -4.848226076651172, -4.849241236657997, -7.0, -7.0, -3.718824498690825, -3.751473107116081, -4.108414329015705, -3.7581455266997557, -4.309803485676787, -7.0, -7.0, -4.037101498348468, -7.0, -5.149028104289625, -7.0, -4.848798549528324, -4.149659344142463, -4.37168959776849, -4.208208380252703, -3.504833189750311, -2.983147802415998, -7.0, -7.0, -3.7401470072175327, -7.0, -5.14903426716125, -2.977168136967076, -7.0, -7.0, -3.584545139959466, -3.4409000039084243, -4.03733147605049, -7.0, -7.0, -5.14997308296338, -7.0, -3.4430161248818374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.621072371143626, -7.0, -7.0, -7.0, -7.0, -7.0, -3.893817223967463, -7.0, -7.0, -7.0, -3.6215513077550128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8565677869842427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517103485037208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.302330928684399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6648299411430907, -3.389343311252078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.924795995797912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6127838567197355, -7.0, -2.863322860120456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8479426388452236, -7.0, -7.0, -4.368407763758419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.520483532740792, -7.0, -7.0, -7.0, -7.0, -1.7781512503836436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.807873132003332, -7.0, -7.0, -1.7781512503836436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7075701760979363, -7.0, -2.5658478186735176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7299742856995555, -7.0, -7.0, -2.513217600067939, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6419695977020594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.350906715537863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9974737588029803, -7.0, -7.0, -7.0, -7.0, -4.151829340131871, -7.0, -7.0, -4.302146866599888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278136006715478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6504046698680317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274688842237558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2932520331478248, -7.0, -1.8920946026904806, -7.0, -3.6729171619800405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557567349330712, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8195439355418688, -7.0, -7.0, -7.0, -7.0, -4.33443364445948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6957442751973235, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.762678563727436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.094471128641644, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9304395947667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6679196853173615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.125399929529946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.76654296723122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5440680443502757, -7.0, -7.0, -7.0, -7.0, -3.1027766148834415, -7.0, -7.0, -7.0, -7.0, -7.0, -3.001949941084268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2380461031287955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.929418925714293, -3.12057393120585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.287801729930226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4073909044707316, -7.0, -7.0, -7.0, -4.605778955151077, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097666762890238, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7558748556724915, -7.0, -2.12057393120585, -2.5550944485783194, -7.0, -7.0, -7.0, -7.0, -2.2576785748691846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0025979807199086, -7.0, -2.8731267636145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.39137623916965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784046415808113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0081741840064264, -7.0, -4.300769340770549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6582976503081897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.050476427265063, -4.979279702785111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.152838509892218, -7.0, -7.0, -4.603555728624722, -7.0, -7.0, -4.631960961368071, -7.0, -3.2489536154957075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.060697840353612, -2.5352941200427703, -7.0, -7.0, -7.0, -7.0, -1.87069645798925, -7.0, -3.7708520116421442, -7.0, -4.149660369801945, -2.6164755138885654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.861733491532661, -2.1409268419924303, -7.0, -7.0, -7.0, -7.0, -2.694429690957083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0232524596337114, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3364597338485296, -3.8253828376360515, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2741578492636796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.28454352295875, -2.8208579894397, -2.284054558436069, -3.107040290223204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.310289623796099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4573771965239053, -7.0, -7.0, -7.0, -7.0, -3.845872874264218, -1.8388490907372554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2741578492636796, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4578818967339924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.623766000133931, -7.0, -2.6702458530741238, -7.0, -7.0, -7.0, -3.8952567531448947, -7.0, -7.0, -7.0, -3.9228349834772342, -7.0, -7.0, -7.0, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.695131297704026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0043213737826426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.818371074186973, -7.0, -7.0, -1.7558748556724915, -7.0, -7.0, -7.0, -7.0, -1.968482948553935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7554174628109362, -7.0, -7.0, -1.7888751157754168, -2.603144372620182, -2.6399842480415883, -7.0, -3.5033820634737327, -7.0, -7.0, -7.0, -7.0, -3.957527475522261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8260748027008264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4264055213720175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.192539577314719, -7.0, -7.0, -2.6364878963533656, -7.0, -7.0, -2.9694159123539814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1491174573697025, -1.7781512503836436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.376576957056512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8698182079793284, -2.9258275746247424, -2.8165726960261033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.406199423663313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2922560713564764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097642484061715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.546542663478131, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9344984512435677, -7.0, -7.0, -3.9460590603851236, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6546577546495245, -7.0, -7.0, -7.0, -7.0, -7.0, -2.954724790979063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.34966598409663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.54136703675979, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.97924781542311, -7.0, -7.0, -2.946206553842783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9838066419784153, -7.0, -2.709269960975831, -7.0, -7.0, -3.9838517189914717, -7.0, -2.4712917110589387, -7.0, -3.770336441095149, -7.0, -4.02462931413766, -2.9148718175400505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4065401804339555, -1.7435097647284297, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639665748155174, -7.0, -7.0, -7.0, -2.1335389083702174, -7.0, -7.0, -7.0, -1.9164539485499252, -3.3935752032695876, -7.0, -7.0, -7.0, -1.720159303405957, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3096301674258988, -2.9763499790032735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3293978793610424, -3.7188661858175696, -2.677606952720493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5998830720736876, -7.0, -7.0, -2.1398790864012365, -3.1074361058060123, -7.0, -7.0, -7.0, -2.9116901587538613, -3.4129642719966626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2041199826559246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.669502834104343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.289291592392737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9630129593770773, -7.0, -7.0, -7.0, -3.34143452457814, -2.46014581749175, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9180303367848803, -7.0, -7.0, -1.6692453387684207, -3.464443687404161, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.562756657400079, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2528530309798933, -3.497738996902168, -7.0, -2.886490725172482, -7.0, -7.0, -7.0, -7.0, -2.7442929831226763, -7.0, -7.0, -1.6731233471534077, -7.0, -2.756636108245848, -7.0, -3.189770956346874, -7.0, -7.0, -7.0, -7.0, -2.6697816152085365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.227243781503063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9609461957338317, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2675106848795448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.595753342091326, -2.0007232216190958, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -3.5596672783880576, -2.785804214612169, -7.0, -2.926342446625655, -7.0, -7.0, -7.0, -7.0, -2.682145076373832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.897718704935313, -7.0, -7.0, -7.0, -2.696356388733332, -7.0, -3.7066324508732946, -7.0, -3.4753805931433615, -2.720572720364261, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9787889856630807, -3.1166077439882485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.55252221023356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.698535492562001, -7.0, -3.5746677663162267, -7.0, -7.0, -3.104911380171239, -2.75815462196739, -2.960470777534299, -2.941511432634403, -2.3738311450738303, -2.5510431647048075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7501225267834, -7.0, -2.7589118923979736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0756685954731195, -4.451479405124862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.045887759365902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8438554226231614, -7.0, -7.0, -2.8360074591255313, -7.0, -7.0, -2.3988077302032647, -7.0, -7.0, -7.0, -2.7599195366595284, -7.0, -7.0, -7.0, -7.0, -2.739572344450092, -7.0, -7.0, -3.1085650237328344, -2.543074235033532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.775391971696612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7566015347886865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6660965854124314, -2.9673919516143807, -4.25744496879504, -7.0, -7.0, -3.9466855619314516, -7.0, -7.0, -7.0, -2.786041210242554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.621280167550415, -4.448752683389127, -7.0, -7.0, -7.0, -7.0, -3.4233278085624455, -4.403120521175818, -3.589430945413185, -7.0, -4.044029909946466, -7.0, -7.0, -7.0, -4.097899077321453, -7.0, -4.092703104165027, -4.353935455571521, -7.0, -7.0, -7.0, -4.625415352154408, -3.887954703808801, -4.3099848383169075, -7.0, -7.0, -7.0, -7.0, -7.0, -4.007858683843716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.39420644536023, -3.1293675957229854, -7.0, -3.8759405428391736, -4.00902574208691, -3.155867191785367, -7.0, -3.7617775375081783, -7.0, -3.546616684638195, -7.0, -7.0, -4.080734686353143, -4.149126699742614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.379164961302967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.575187844927661, -7.0, -3.1718726561396826, -2.8603380065709936, -4.307175012040345, -7.0, -7.0, -4.636337421853309, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.722936853279324, -7.0, -2.6881230714056485, -7.0, -3.4276483711869328, -4.003288158826075, -3.147985320683805, -7.0, -7.0, -3.1992064791616577, -7.0, -3.932199707406741, -3.101403350555331, -3.0433622780211294, -2.8819549713396007, -7.0, -2.9885589568786157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.473530762258132, -3.5298546483723983, -3.6297388416996674, -7.0, -3.116939646550756, -7.0, -3.2232362731029975, -7.0, -7.0, -7.0, -2.987070115921337, -7.0, -2.9800033715837464, -7.0, -7.0, -7.0, -7.0, -2.7427251313046983, -7.0, -2.7955324427101544, -7.0, -2.4409090820652177, -7.0, -7.0, -7.0, -7.0, -7.0, -3.526210003841664, -7.0, -7.0, -7.0, -7.0, -3.7599770457776187, -7.0, -3.448242412634439, -2.603144372620182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6216954623292787, -7.0, -7.0, -7.0, -2.727642905825253, -3.0398105541483504, -7.0, -3.4437322414015967, -3.0993352776859577, -7.0, -7.0, -3.7517408738109004, -7.0, -3.009450895798694, -7.0, -7.0, -7.0, -7.0, -3.44544851426605, -2.8095597146352675, -7.0, -3.8422138683580256, -7.0, -3.272352240906794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0247592390353963, -7.0, -7.0, -7.0, -3.3147397510568504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7693773260761385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5888317255942073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.876967967432585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333588321723421, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023170121121397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9796849238270258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.43281862385205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9790883434844915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639317121243033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603490803574361, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40705081480425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.747334109615905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5949447366950835, -3.6221103603612193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2728854447575695, -7.0, -2.90687353472207, -4.399933182495568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9912260756924949, -7.0, -7.0, -7.0, -3.693726948923647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.681241237375587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.21532025132993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.354108439147401, -7.0, -7.0, -4.517235497465091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.093666782227903, -7.0, -7.0, -2.432969290874406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028286509426278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.192390874971884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2405492482826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146128035678238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8603380065709936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.307496037913213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.011993114659257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0195316845312554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8836614351536176, -3.4075608494863623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.998259338423699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.609807769328702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603306796538514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.429752280002408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080695016358215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4290521089243864, -3.598899887063883, -7.0, -2.406965750758948, -3.3464852909784732, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.781659651821598, -7.0, -2.444044795918076, -2.575187844927661, -7.0, -7.0, -7.0, -2.164352855784437, -7.0, -7.0, -7.0, -4.338376799232071, -7.0, -2.7267272090265724, -7.0, -7.0, -7.0, -2.5276299008713385, -1.8920946026904806, -7.0, -7.0, -3.18440748541232, -3.235191653961703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5774917998372255, -2.5428254269591797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3251049829714074, -2.8555191556678, -7.0, -7.0, -4.221101119961506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2190734450070035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8898617212581885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7937903846908188, -7.0, -3.763128376799137, -7.0, -7.0, -7.0, -2.47928731647617, -7.0, -7.0, -2.8303319934519617, -7.0, -7.0, -2.7831886910752575, -7.0, -4.0383498855076025, -7.0, -3.020775488193558, -3.08278537031645, -2.330413773349191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.824125833916549, -2.639154332860882, -7.0, -7.0, -7.0, -7.0, -4.078456818053293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3774883833761327, -2.816241299991783, -2.760422483423212, -2.6702458530741238, -7.0, -7.0, -7.0, -2.330634661374436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9457147140598603, -7.0, -7.0, -7.0, -7.0, -3.4160021857814553, -7.0, -2.829946695941636, -7.0, -7.0, -2.921166050637739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3439990690571615, -7.0, -7.0, -7.0, -7.0, -2.414973347970818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.436162647040756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.088726563953855, -7.0, -3.523486332343228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.510723695451636, -7.0, -7.0, -7.0, -7.0, -2.5403294747908736, -2.2528530309798933, -7.0, -7.0, -7.0, -7.0, -3.098470665650629, -3.2095150145426308, -7.0, -7.0, -7.0, -7.0, -7.0, -3.394013663157313, -7.0, -4.498503530678758, -7.0, -7.0, -2.494154594018443, -3.623766000133931, -7.0, -2.7180862947830917, -3.1809855807867304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.484299839346786, -7.0, -7.0, -7.0, -7.0, -7.0, -2.130333768495006, -4.306843035820824, -7.0, -7.0, -3.7611005389581424, -7.0, -7.0, -2.4742162640762553, -7.0, -7.0, -7.0, -2.3145693943004555, -7.0, -3.012415374762433, -7.0, -4.797312561051118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.478662674197249, -7.0, -7.0, -7.0, -7.0, -3.43166061617458, -3.04493154614916, -7.0, -2.8095597146352675, -7.0, -2.9934362304976116, -2.663700925389648, -2.438937701095528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7785130117389247, -7.0, -3.3875677794171883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5722557216594995, -4.305028753746333, -3.262609273845055, -7.0, -7.0, -7.0, -4.543906705006407, -7.0, -7.0, -7.0, -7.0, -3.4073059070182823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.355336561512381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6103407114521566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.158814646724227, -7.0, -2.688419822002711, -4.304630530707381, -4.263115076181341, -7.0, -7.0, -7.0, -7.0, -7.0, -4.014142361545006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9929509605704463, -7.0, -7.0, -2.5352941200427703, -7.0, -7.0, -4.628838319987492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6893088591236203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4927603890268375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.673389578188305, -7.0, -3.683374887886742, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6074550232146683, -7.0, -7.0, -3.7259932589247224, -3.0086001717619175, -2.666205875272384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3144571227346775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153021743626138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8987251815894934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2979792441593623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.896526217489555, -7.0, -7.0, -7.0, -4.400157923390449, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5171694962671247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.51774996285426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.312811826212088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.376576957056512, -2.110589710299249, -2.788168371141168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7939300067726847, -7.0, -2.629409599102719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.456366033129043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.214843848047698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067795935294864, -7.0, -7.0, -2.6589648426644352, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149188310536008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.143014800254095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6790643181213127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4101020766428607, -7.0, -7.0, -7.0, -4.605951157564873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.143424253450913, -7.0, -7.0, -7.0, -7.0, -3.0354297381845483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.955783928916912, -7.0, -7.0, -4.242603536912276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.354108439147401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.240599164319883, -7.0, -7.0, -7.0, -4.136054349551055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9793525793934315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4073909044707316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.020775488193558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080835648173974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2821687783046416, -7.0, -7.0, -3.9232094671777817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.558264451377498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2938185388802057, -7.0, -7.0, -7.0, -7.0, -7.0, -2.296665190261531, -7.0, -7.0, -7.0, -7.0, -3.700790221374347, -7.0, -7.0, -3.0689276116820716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8739015978644615, -7.0, -7.0, -7.0, -4.217246991685393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7578892650549034, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.034494765849475, -7.0, -7.0, -7.0, -7.0, -4.7362769552331105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.103803720955957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.374124860179727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.159366641633703, -2.5171958979499744, -7.0, -7.0, -7.0, -3.4724313785820478, -7.0, -1.3187587626244128, -7.0, -7.0, -2.1986570869544226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.391213768955675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1492191126553797, -7.0, -2.060697840353612, -2.1775364999298623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4804491980685899, -7.0, -7.0, -7.0, -7.0, -3.307923703611882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.651278013998144, -7.0, -2.530199698203082, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8140810398403664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4405155211122285, -2.574031267727719, -2.6473829701146196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0519239160461065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.555900189963248, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9273703630390235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7752462597402365, -1.9800033715837464, -2.066118773208383, -7.0, -2.8842287696326037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.73275552117825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1826365304361923, -3.696531119969607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1020905255118367, -1.8364215020692862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.639187559935754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2629254693318317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.678518379040114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5886078047426864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779949842979917, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3909351071033793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.814913181275074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2922560713564764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8937617620579434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9344984512435677, -7.0, -1.9867717342662448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7695988483874463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6020599913279623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.571941635074462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9956351945975501, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.224014811372864, -2.359835482339888, -7.0, -2.2174839442139063, -7.0, -4.727166984450405, -7.0, -7.0, -7.0, -7.0, -1.7634279935629373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368324081979958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6127838567197355, -7.0, -7.0, -7.0, -3.9796849238270258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.400192488592576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097521069555645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0170333392987803, -3.3428173146357327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.989894563718773, -7.0, -4.299855814704268, -7.0, -7.0, -7.0, -7.0, -7.0, -3.29269900304393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.35073245171613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151553704542976, -7.0, -7.0, -7.0, -4.56132801668009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080626486921806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.795416522655575, -7.0, -7.0, -4.576064788225377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.55735077960453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.694166295933198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8273692730538253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5018804937550585, -7.0, -7.0, -7.0, -7.0, -4.7356707439453665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.401400540781544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5575072019056577, -7.0, -2.688419822002711, -1.9708116108725178, -7.0, -4.72736229734141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067480023931482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.558308483464886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5327543789924976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2671717284030137, -7.0, -2.5705429398818973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1029479680053735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1271047983648077, -7.0, -4.796567395543485, -7.0, -7.0, -7.0, -1.7075701760979363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.13182389536808, -7.0, -7.0, -7.0, -2.951337518795918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5759571887637573, -2.9947569445876283, -7.0, -3.3475251599986895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1693804953119495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.383815365980431, -7.0, -7.0, -7.0, -7.0, -7.0, -4.97919770198058, -7.0, -7.0, -2.7669083343103593, -2.3364597338485296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.60336092434838, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.0807130486232985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657772707735521, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.273579945676206, -1.7853298350107671, -7.0, -4.399967765588587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557362814089654, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6901960800285138, -7.0, -7.0, -7.0, -7.0, -4.334091688202155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.0791812460476249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.123851640967086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7641761323903307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.998259338423699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6663307443019684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7695250201710504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8727388274726686, -7.0, -2.255272505103306, -2.404833716619938, -7.0, -7.0, -7.0, -4.125261623070691, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4102146756795046, -7.0, -7.0, -7.0, -7.0, -3.177685412596826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0556331242728354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1492191126553797, -7.0, -1.6127838567197355, -7.0, -7.0, -7.0, -1.6020599913279623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495544337546448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5573353062050552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.062581984228163, -2.6314437690131722, -7.0, -7.0, -2.911157608739977, -7.0, -7.0, -7.0, -7.0, -7.0, -1.716003343634799, -7.0, -2.7427251313046983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7015679850559273, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8870543780509568, -7.0, -7.0, -1.8573324964312685, -7.0, -1.5314789170422551, -2.7209857441537393, -7.0, -7.0, -7.0, -7.0, -7.0, -1.874261825555464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.99932632131709, -7.0, -7.0, -7.0, -7.0, -7.0, -3.771954748963949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351216345339342, -7.0, -7.0, -7.0, -7.0, -7.0, -4.609871756925298, -7.0, -4.9413921591914685, -7.0, -7.0, -7.0, -7.0, -7.0, -3.971948113409703, -7.0, -7.0, -7.0, -4.152318927424645, -7.0, -7.0, -4.126207193752344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.456366033129043, -7.0, -7.0, -7.0, -4.6266482684740105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.439332693830263, -7.0, -7.0, -7.0, -7.0, -7.0, -4.63956616901964, -7.0, -7.0, -7.0, -2.60422605308447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080716654986472, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2329961103921536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.05307844348342, -7.0, -7.0, -2.7015679850559273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1958996524092336, -7.0, -2.53655844257153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097507191450545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.350654978678079, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626350634262713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1072099696478683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.591064607026499, -5.080612058294023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145538235712233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.571825249040829, -1.5440680443502757, -7.0, -4.876962202168221, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333568174923988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8109042806687006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7442929831226763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.526339277389844, -7.0, -7.0, -7.0, -7.0, -4.727158844506786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1838390370564214, -7.0, -7.0, -7.0, -7.0, -3.7661431884987495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.060697840353612, -7.0, -7.0, -7.0, -1.6020599913279623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3404441148401185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.60422605308447, -7.0, -7.0, -2.89707700320942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0128372247051725, -2.4367587960456936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.540917314258837, -7.0, -7.0, -7.0, -4.134177107576766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7049222912234017, -7.0, -7.0, -7.0, -7.0, -3.639187559935754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.893317811616112, -7.0, -7.0, -4.179028714410914, -7.0, -7.0, -7.0, -7.0, -7.0, -2.603144372620182, -4.082138831393448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.036269495742816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40705081480425, -7.0, -7.0, -3.1000257301078626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.343080204765978, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.921686475483602, -2.595496221825574, -7.0, -7.0, -4.218391066469307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2540644529143377, -7.0, -7.0, -7.0, -7.0, -2.8709888137605755, -7.0, -7.0, -1.9700367766225568, -7.0, -4.062281069972644, -7.0, -7.0, -7.0, -7.0, -3.0115704435972783, -7.0, -2.61870166264718, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6180480967120925, -7.0, -7.0, -3.964495339555093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9352192721258945, -7.0, -3.0081741840064264, -7.0, -7.0, -7.0, -3.5993007126409307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.780317312140151, -2.416640507338281, -2.6190933306267428, -2.8135809885681917, -2.2430380486862944, -7.0, -3.8254829163960453, -7.0, -2.346352974450639, -7.0, -1.661181443446619, -1.675778341674085, -7.0, -7.0, -3.2342641243787895, -7.0, -7.0, -7.0, -7.0, -3.0368609076345705, -7.0, -7.0, -7.0, -2.821513528404773, -7.0, -7.0, -7.0, -2.5854607295085006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3222192947339195, -2.1789769472931693, -7.0, -7.0, -2.841359470454855, -2.9258275746247424, -3.516667559099043, -7.0, -7.0, -7.0, -2.376576957056512, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1775364999298623, -2.2922560713564764, -7.0, -1.558308483464886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.469822015978163, -2.184691430817599, -7.0, -7.0, -7.0, -7.0, -3.390758528738717, -2.494154594018443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1658376246901283, -7.0, -7.0, -7.0, -2.330413773349191, -2.2380461031287955, -1.7732987475892317, -2.0228406108765276, -7.0, -1.9222062774390165, -7.0, -2.1189257528257768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7571681922142726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0284808782292205, -7.0, -4.79713245216118, -1.930269649751069, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4424797690644486, -7.0, -7.0, -2.311753861055754, -7.0, -2.6138418218760693, -7.0, -7.0, -7.0, -7.0, -3.476155081947642, -7.0, -5.433118303634996, -7.0, -2.7664128471123997, -4.545257621396889, -3.024074987307426, -7.0, -7.0, -7.0, -2.9698816437465, -3.4352071032407476, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9344984512435677, -2.5943925503754266, -1.2253092817258628, -2.279134394034571, -1.9807606420143298, -3.378216149749878, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2242524199585794, -3.2584776449785178, -7.0, -7.0, -7.0, -7.0, -2.124141799308865, -2.73453314583352, -7.0, -7.0, -3.4028629579685634, -7.0, -7.0, -7.0, -1.8998205024270962, -7.0, -7.0, -7.0, -7.0, -3.3539931244194845, -4.9799397007098865, -7.0, -7.0, -2.582744965691277, -7.0, -4.009472142562814, -7.0, -7.0, -3.6047658847038875, -7.0, -7.0, -7.0, -4.00518051250378, -7.0, -7.0, -7.0, -7.0, -4.1572451604751945, -7.0, -7.0, -4.605121806343587, -4.563552275376031, -7.0, -7.0, -7.0, -7.0, -3.6027109449575576, -7.0, -7.0, -2.515873843711679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9906495883188544, -7.0, -2.651278013998144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.640481436970422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.44870631990508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.553883026643874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.127000353468564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4205333226934997, -7.0, -3.13640344813399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.583039995006035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.040074643230312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.366142676814887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.579623563905115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9807757739626215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3313316316749564, -3.713448539662225, -7.0, -7.0, -7.0, -3.1360543495510553, -7.0, -3.998259338423699, -7.0, -7.0, -7.0, -2.7754723435777815, -3.64525847734945, -7.0, -2.2685354252766956, -2.701665621471304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.941893498711568, -3.985695859689842, -3.2813970218487563, -3.285827252753274, -3.987978915875482, -3.6933311562440196, -7.0, -3.988112840268352, -7.0, -7.0, -3.5046067706419537, -3.714245911017894, -7.0, -7.0, -7.0, -7.0, -3.98344585734134, -7.0, -7.0, -7.0, -7.0, -2.130170852059858, -2.47573170452071, -7.0, -7.0, -3.246703697921374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1881926846818818, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8529589869476504, -3.6804714924842656, -7.0, -4.1126720171171325, -3.9812294874200007, -3.5106790310322102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9891827512555476, -7.0, -3.9882913419074875, -7.0, -7.0, -2.855437017653531, -3.9960736544852753, -7.0, -7.0, -7.0, -7.0, -2.940108802990022, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1571544399062814, -7.0, -7.0, -7.0, -7.0, -4.00358976718914, -3.6811054991397882, -3.981048058913173, -3.694956002249818, -7.0, -2.418888402527995, -3.0813473078041325, -2.9875768947269874, -7.0, -3.9953280090774097, -7.0, -7.0, -3.5008194435414155, -2.5903680640032447, -3.9825425823029432, -3.9954157985424152, -7.0, -3.072467759719054, -3.204933522354145, -3.713280485299326, -3.0203612826477078, -7.0, -7.0, -3.207050607980928, -3.688108228551808, -7.0, -7.0, -3.0123919266355528, -7.0, -7.0, -7.0, -7.0, -7.0, -3.849357981661299, -3.4757801114070315, -7.0, -7.0, -7.0, -7.0, -7.0, -3.679836558918098, -3.696924008405422, -2.7126497016272113, -3.4130062226831868, -7.0, -3.9826329943948497, -7.0, -2.8213087787513165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.311329952303793, -3.151894941876449, -3.2947306904843314, -3.989271791641693, -3.522313795156667, -7.0, -7.0, -1.7315565343446218, -7.0, -7.0, -7.0, -7.0, -3.9815921172140816, -7.0, -7.0, -2.283261543549604, -7.0, -3.014257950635828, -7.0, -3.711174300366762, -1.8030605934580088, -3.2840244503226454, -2.674467460866252, -3.695612995691491, -2.3733061592354647, -2.7026028413404273, -7.0, -7.0, -3.686770290087891, -3.9933039379194746, -7.0, -7.0, -4.03148925570975, -7.0, -7.0, -7.0, -3.9451976821033337, -7.0, -2.5669124528516787, -7.0, -2.1566356727947436, -3.5060086700150377, -3.983400738180538, -7.0, -7.0, -3.6898414091375047, -7.0, -7.0, -7.0, -2.2322643587752227, -2.236564251109213, -7.0, -3.6793824659429104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.302157695941016, -4.007875743767586, -3.322770429937203, -3.0304869561303556, -7.0, -7.0, -7.0, -3.045887759365902, -3.9796849238270258, -7.0, -2.510723695451636, -7.0, -7.0, -7.0, -3.9796849238270258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6827315646221837, -3.6833172619218826, -7.0, -7.0, -3.2399664702073565, -7.0, -4.071845201129409, -3.082865123228602, -7.0, -7.0, -7.0, -3.751933133091522, -3.6971421262754594, -2.5716169014188077, -3.993171605030765, -2.838592983118509, -3.9821354948037695, -7.0, -7.0, -2.651116416049525, -7.0, -3.315004172684897, -3.255071396286606, -7.0, -3.6796549786993333, -7.0, -7.0, -7.0, -3.702085721435825, -7.0, -7.0, -7.0, -3.988870966064645, -7.0, -3.9819544444699737, -7.0, -7.0, -2.8754230247469814, -7.0, -2.952175797631502, -3.0829199448613176, -2.9111051914786596, -7.0, -7.0, -2.854363886031574, -7.0, -7.0, -7.0, -3.9838517189914717, -2.411578647633547, -3.1513260639408345, -3.0677732303783953, -3.388988785124714, -3.536263763030023, -3.9878002857518724, -2.7661702832117463, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5250880182683524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9890491564382202, -7.0, -3.981274832706589, -7.0, -7.0, -3.359598357309753, -7.0, -3.2405073887976155, -7.0, -3.4192947217534604, -2.5662213715228304, -3.7157944980035067, -7.0, -3.9970804354717306, -7.0, -3.312388949370592, -3.1266724494173004, -4.01674092728626, -7.0, -7.0, -7.0, -3.7000977046130537, -7.0, -7.0, -7.0, -4.020816887028907, -3.6825511910418096, -2.8376255685293743, -7.0, -7.0, -2.3764306067663643, -2.879009148031945, -3.4456042032735974, -3.9976921179417264, -2.9777236052888476, -1.8978609601608767, -2.8547916940539855, -3.4942937686653326, -2.4358112844425377, -7.0, -2.6582716350441484, -3.5572850469162516, -3.0467578737546326, -2.9921831989050203, -2.0978941621746445, -3.753077236473406, -2.587336734507256, -1.8615739051907794, -3.0794978037097187, -3.5844095155942375, -3.9386698010226793, -3.3918233302705025, -2.9934362304976116, -2.563599107795837, -2.575332200748137, -3.8964343519192703, -3.2968085816258053, -3.370096544531531, -7.0, -2.5152477338444026, -2.8231898900874377, -2.97648753730519, -3.008960296866488, -3.345445022795782, -3.288780028452779, -3.310954610877564, -3.2342008115305245, -3.2964732247752924, -2.676332889201492, -3.225121234750895, -3.720242018287057, -3.66854432140747, -2.216233017981978, -2.7882273104751665, -4.002079626393121, -3.7118704712055, -7.0, -3.3670517004498173, -3.0111191405943716, -3.73917663191073, -3.2097211833012635, -2.983438337806717, -4.158332331708981, -4.029627239047413, -3.467963090535135, -7.0, -3.6876627068858356, -7.0, -3.350688434639935, -3.586399744970328, -7.0, -2.73206648438781, -2.312113774786506, -3.721673245455936, -7.0, -3.273039874302055, -3.9876662649262746, -2.4212207821763405, -7.0, -3.8100083659994484, -2.8695902233197508, -3.4719409903840868, -7.0, -3.141794563523657, -3.8119323028729784, -3.304536687573914, -7.0, -4.139375264439972, -4.1075830311913215, -2.58726921598461, -3.4777722083492573, -7.0, -2.87499984366751, -2.327788480037824, -7.0, -2.9115737192268285, -7.0, -7.0, -2.8230827965328036, -2.9299739347123883, -7.0, -3.508035666557394, -7.0, -3.6970548922725746, -3.023869501388332, -2.078581487279682, -7.0, -3.0211892990699383, -3.994844849553398, -2.4429274953741063, -2.493583739705195, -2.9044658550752316, -3.6895752157599384, -7.0, -2.8055858057345935, -3.9934803190699966, -2.023414699392505, -3.4111144185509046, -3.307410454213674, -2.6212917088805394, -1.5771546503583544, -2.926540311899433, -2.699837725867246, -3.5420781463356255, -3.525821952156663, -2.0124082212308045, -3.1664301138432824, -3.541745608431244, -3.397853141088609, -7.0, -7.0, -2.808346035740395, -2.879404687616423, -7.0, -2.143366864941437, -1.4821003029929867, -2.379431142858117, -7.0, -2.52050224789375, -3.5185139398778875, -2.4961560487352887, -3.9888264070452757, -7.0, -7.0, -3.0773315611289904, -3.989761187718778, -3.699143687394484, -2.2743887955503785, -7.0, -2.340779583365695, -3.7041505168397992, -3.0097212316193764, -7.0, -2.732647658971915, -3.6854730197227594, -3.063750228327108, -2.780006516518213, -7.0, -7.0, -7.0, -2.667119265219367, -2.616033061656062, -7.0, -3.40226138245468, -2.0486501936741845, -3.695437894597736, -1.831817817997653, -3.29928933408768, -3.2284736882906677, -3.148029445091453, -3.5229221725572004, -3.0178432012520418, -3.6844413876256064, -3.0463450608244513, -3.0517954455579925, -3.5126843962171637, -3.295874845217379, -2.8990384123869903, -7.0, -3.9836262871245345, -2.422917980767662, -3.3070251187186726, -2.6586183771638874, -2.1631191920347383, -2.3371830263196416, -2.0054591837669906, -3.4098063651997617, -2.492403703373851, -2.7454183419434295, -2.462516210796815, -3.0394537789617364, -3.5035183127240748, -7.0, -2.68902830712297, -3.294833494244287, -7.0, -3.0942381380341772, -2.1392609992026075, -2.6459950553715124, -2.3985582892632116, -2.7720312240705764, -2.1871135061025466, -3.985201858364572, -2.9286944977199605, -7.0, -7.0, -3.5180750368775167, -3.1692964762592784, -2.705614291809137, -7.0, -3.985561187773345, -3.979821430030225, -2.259362396535251, -7.0, -3.152419399400468, -7.0, -7.0, -2.821731821690044, -3.6866362692622934, -3.2928760493088776, -2.712430083679723, -2.3154741615241607, -3.157845166862068, -3.985561187773345, -4.009833178608563, -7.0, -7.0, -7.0, -3.5144149205803688, -3.688864568054792, -7.0, -2.652558244551564, -2.5794371311162627, -3.485366465708323, -3.3843086022423106, -7.0, -2.8324337687520904, -7.0, -7.0, -2.76973109256287, -7.0, -7.0, -7.0, -3.086786795626624, -3.4106928961632534, -7.0, -7.0, -3.99370069482035, -7.0, -2.9646299732016494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2748503200166645, -7.0, -7.0, -7.0, -7.0, -2.1335389083702174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.735447189468635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8920946026904806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727134423760488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368286884902131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1051694279993316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4955443375464483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9375178920173464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.616265405281708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.134081437462512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.628695382714023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333507728917455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023005397249935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6636067081245205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669335479503264, -7.0, -7.0, -7.0, -7.0, -2.7715874808812555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0867156639448825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7204074008031087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657992306370206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275150048123735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.17435059747938, -7.0, -3.635423423947685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9965992227001665, -2.155336037465062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7209857441537393, -7.0, -7.0, -3.7388598020722004, -0.6690067809585756, -2.089905111439398, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216561735047927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7810369386211318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0081741840064264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071476967698918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.405012803773642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1975562131535367, -7.0, -7.0, -7.0, -7.0, -3.5234491575534, -7.0, -7.0, -7.0, -2.7193312869837265, -7.0, -7.0, -7.0, -7.0, -2.5658478186735176, -2.3263358609287517, -7.0, -3.1048284036536553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8444771757456815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7442929831226763, -7.0, -3.49789674291322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4712917110589387, -1.7403626894942439, -1.9030899869919435, -7.0, -7.0, -7.0, -7.0, -3.1550322287909704, -7.0, -7.0, -7.0, -7.0, -2.682145076373832, -7.0, -7.0, -7.0, -7.0, -7.0, -2.08278537031645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.294466226161593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40840957846843, -7.0, -7.0, -2.3384564936046046, -7.0, -2.3654879848909, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6455696293511517, -7.0, -5.131862365389385, -7.0, -7.0, -4.242479310801046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9609461957338317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5720967679505193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2689755810978065, -4.300899687772249, -2.9457147140598603, -7.0, -7.0, -7.0, -4.541529322171493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.050592404072384, -7.0, -5.1721035557986665, -7.0, -7.0, -7.0, -7.0, -7.0, -4.94150646356156, -3.589502796263764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.851930678640268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9843922785242656, -7.0, -7.0, -7.0, -7.0, -3.6833172619218826, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325833673769085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080799593075126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5864747785713966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3244882333076564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.037426497940624, -7.0, -7.0, -4.658412098960092, -7.0, -7.0, -7.0, -7.0, -3.629613445378183, -7.0, -7.0, -7.0, -7.0, -7.0, -3.898396045930009, -7.0, -7.0, -2.9444826721501687, -4.400353756504531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1658376246901283, -7.0, -7.0, -7.0, -4.03436772148161, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9268567089496924, -7.0, -7.0, -3.1405080430381793, -3.0975176000709466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.217246991685393, -1.26884531229258, -1.184524426592544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.724275869600789, -7.0, -2.8692317197309762, -7.0, -7.0, -7.0, -4.518197974435138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9451871240189849, -7.0, -7.0, -7.0, -7.0, -2.3317646126401494, -2.214843848047698, -1.8325089127062362, -2.069112851387121, -7.0, -3.7575858013465804, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0265332645232967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.05307844348342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2355284469075487, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073094864515745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7219656140431185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9079485216122722, -7.0, -7.0, -7.0, -7.0, -2.928861184436562, -7.0, -7.0, -2.690196080028514, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6148972160331345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5338144099847226, -7.0, -1.907291901419713, -2.2741578492636796, -7.0, -2.05307844348342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5403294747908736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.469822015978163, -3.6827315646221837, -7.0, -7.0, -7.0, -1.4712917110589387, -7.0, -1.1257135708582608, -7.0, -7.0, -7.0, -7.0, -3.3736474722092176, -3.168202746842631, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3809344633307017, -7.0, -7.0, -7.0, -7.0, -2.2174839442139063, -3.608312042697327, -7.0, -7.0, -3.1367205671564067, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1993437186893927, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4771212547196626, -7.0, -1.9822712330395684, -2.9380190974762104, -7.0, -1.9344984512435677, -1.806179973983887, -4.606316861140107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0870712059065353, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097840143633142, -7.0, -7.0, -7.0, -7.0, -7.0, -2.792391689498254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.544080452586784, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4197905861063624, -7.0, -7.0, -7.0, -7.0, -2.7730546933642626, -7.0, -7.0, -7.0, -3.0236639181977933, -7.0, -2.660106221723244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431645160139889, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6512780139981444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3014640731432996, -2.549901999869041, -7.0, -7.0, -7.0, -4.241023219159143, -3.7768464086952993, -7.0, -3.7655568008067135, -7.0, -7.0, -7.0, -3.720985744153739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3521632157054433, -4.377420092711333, -7.0, -7.0, -7.0, -7.0, -4.30953435660478, -7.0, -4.941725048999923, -2.8151348166368138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.977418730245156, -7.0, -7.0, -3.5624875232080653, -7.0, -7.0, -4.632467415481234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7327956982893293, -7.0, -7.0, -2.871393289428776, -7.0, -7.0, -7.0, -3.1720188094245563, -7.0, -3.348212602828127, -7.0, -7.0, -7.0, -3.7385427409287852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8256208250035, -7.0, -7.0, -7.0, -3.7370036914610756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.825563143070667, -2.7267272090265724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.686747956155516, -2.852479993636856, -7.0, -3.0141843975012796, -7.0, -7.0, -2.9283958522567137, -3.721150843749684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5329878079053483, -7.0, -7.0, -4.280031744138702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4819201376014313, -7.0, -7.0, -7.0, -7.0, -3.8474184078594025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.658393026279124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276599653557644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05641885542015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8991088581933995, -7.0, -7.0, -2.9508514588885464, -3.836065050225192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.404833716619938, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4885507165004443, -7.0, -7.0, -7.0, -4.03462845662532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2648178230095364, -7.0, -7.0, -2.8429211207599825, -3.001560652642573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.08278537031645, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4251672627392926, -7.0, -7.0, -7.0, -7.0, -7.0, -2.765668554759014, -7.0, -7.0, -7.0, -1.7018556925735069, -0.7991541969590241, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.254467510467076, -2.0387525889920166, -2.8767949762007006, -7.0, -7.0, -7.0, -3.740086232305504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5826314394896364, -7.0, -7.0, -7.0, -7.0, -2.3404441148401185, -2.2479732663618064, -7.0, -1.9822712330395684, -7.0, -3.581911750244118, -1.8957907482504441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096666739975382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0318122713303706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.100370545117563, -1.7708520116421442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8717396832852677, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2280335249267362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9417150342629825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.364684974834258, -7.0, -7.0, -7.0, -7.0, -2.611341248488478, -7.0, -7.0, -2.7015679850559273, -7.0, -2.3654879848909, -7.0, -7.0, -7.0, -2.6283889300503116, -7.0, -2.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0153597554092144, -7.0, -2.576341350205793, -2.303196057420489, -7.0, -2.100370545117563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.060697840353612, -1.6532125137753437, -2.167317334748176, -7.0, -7.0, -7.0, -7.0, -7.0, -2.786751422145561, -7.0, -7.0, -5.149333061505514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2528530309798933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.184691430817599, -3.6833172619218826, -7.0, -7.0, -7.0, -1.7403626894942439, -1.1257135708582608, -7.0, -2.1367205671564067, -2.514547752660286, -7.0, -7.0, -7.0, -2.870403905279027, -7.0, -7.0, -7.0, -7.0, -2.7307822756663893, -3.382107135819026, -7.0, -7.0, -7.0, -7.0, -2.250420002308894, -3.6097011023793995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.424881636631067, -1.6840162914303594, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2329961103921536, -7.0, -7.0, -2.638156336676239, -7.0, -2.351216345339342, -1.323939275128193, -4.129292358783856, -7.0, -7.0, -7.0, -2.167317334748176, -7.0, -7.0, -7.0, -2.613136798211654, -7.0, -2.7450747915820575, -7.0, -7.0, -7.0, -4.495804420086552, -2.983175072037813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1931245983544616, -7.0, -7.0, -7.0, -7.0, -4.955859253948511, -7.0, -3.036628895362161, -4.544241727408741, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4219328132785085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7271344237604884, -7.0, -2.5830097448113825, -7.0, -7.0, -4.316358309697511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.09564001802453, -4.732795698289329, -7.0, -4.029221394253928, -7.0, -7.0, -4.802116657300177, -7.0, -7.0, -4.387211800313731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9685646629459224, -3.301745991025256, -2.277772882850179, -7.0, -7.0, -2.951823035315912, -7.0, -3.4766142820325037, -2.7120882348626436, -7.0, -7.0, -3.696967640744023, -7.0, -3.722057771331464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4494012529962212, -4.979566583734596, -7.0, -7.0, -7.0, -7.0, -4.3096727432292665, -7.0, -4.941789610012567, -2.8165726960261033, -7.0, -7.0, -7.0, -4.001647191346038, -7.0, -7.0, -7.0, -7.0, -3.154210882206974, -7.0, -2.5490032620257876, -4.3031852539407955, -4.562578334108671, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5403294747908736, -7.0, -7.0, -7.0, -7.0, -3.208351765003097, -7.0, -7.0, -7.0, -3.061452479087193, -2.9861892997368242, -7.0, -7.0, -7.0, -3.7754648093457392, -7.0, -3.9284163373623473, -2.950364854376123, -7.0, -7.0, -3.739572344450092, -7.0, -7.0, -7.0, -2.510545010206612, -3.470410490975931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2671717284030137, -7.0, -3.463992472317439, -4.439908738851784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.845098040014257, -2.7884040804994115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.802705327074352, -7.0, -7.0, -7.0, -7.0, -3.7798380995398886, -2.7371926427047373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6702458530741238, -3.2304489213782737, -7.0, -7.0, -3.1152775913959014, -2.5581083016305497, -2.808885867359812, -3.4137187650610787, -7.0, -7.0, -2.935003151453655, -3.72222246396973, -7.0, -7.0, -7.0, -7.0, -7.0, -4.268226837664629, -7.0, -7.0, -7.0, -3.4082399653118496, -7.0, -7.0, -3.6781312565441797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.37045140442245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2405492482826, -7.0, -3.182129214052998, -7.0, -7.0, -7.0, -7.0, -3.0346284566253203, -7.0, -7.0, -3.674700431229815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9141579738331505, -7.0, -2.334453751150931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517195897949974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727297202803587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368472838440362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9030899869919435, -7.0, -2.1367205671564067, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1451964061141817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.569654763999852, -7.0, -3.722057771331464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351042205739445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5859117103194342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.004665233247877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8812514755383583, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5010592622177517, -7.0, -7.0, -7.0, -7.0, -3.1259148015308593, -7.0, -7.0, -7.0, -3.2442023004929483, -7.0, -2.2041199826559246, -7.0, -2.294466226161593, -2.5390760987927767, -7.0, -3.860469772491684, -7.0, -7.0, -7.0, -7.0, -2.741939077729199, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6385890832927172, -7.0, -2.6989700043360187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.180412632838324, -2.873320601815399, -2.863747598033922, -7.0, -7.0, -2.8048206787211623, -7.0, -7.0, -2.161368002234975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7304592600457687, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5327543789924976, -7.0, -7.0, -7.0, -2.4082399653118496, -2.6085260335771943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.808885867359812, -7.0, -2.629409599102719, -7.0, -2.0644579892269186, -7.0, -4.042523010689413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4424797690644486, -2.8819549713396007, -7.0, -7.0, -7.0, -7.0, -3.761890268068682, -7.0, -7.0, -7.0, -2.7573960287930244, -7.0, -7.0, -3.5260806918020298, -3.799064719351008, -7.0, -2.7589118923979736, -7.0, -4.436075143000658, -2.4871383754771865, -2.705007959333336, -2.7690078709437738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.422917980767662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3779979478618998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6651117370750512, -2.7937903846908188, -2.4321672694425884, -7.0, -2.346352974450639, -2.569373909615046, -7.0, -3.582501658910611, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6354837468149124, -7.0, -7.0, -7.0, -7.0, -3.0370371541027277, -7.0, -7.0, -7.0, -2.833784374656479, -7.0, -3.0425755124401905, -7.0, -2.606381365110605, -2.7209857441537393, -2.568201724066995, -7.0, -3.1556396337597765, -7.0, -7.0, -7.0, -3.9196010237841112, -2.3710678622717363, -3.0360297306565434, -7.0, -2.932980821923198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.31722734917642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9355072658247128, -7.0, -5.149643958959544, -7.0, -7.0, -7.0, -2.8438554226231614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.514547752660286, -7.0, -7.0, -7.0, -7.0, -7.0, -2.898999270889789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6203442997544935, -7.0, -7.0, -2.8698182079793284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.74350976472843, -7.0, -7.0, -2.3263358609287517, -7.0, -7.0, -7.0, -7.0, -2.3516997004052667, -2.6349808000512285, -2.741939077729199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1258064581395266, -7.0, -3.084576277934331, -2.379305517750582, -7.0, -7.0, -4.253095585849032, -3.0265332645232967, -7.0, -7.0, -7.0, -7.0, -2.2600713879850747, -7.0, -7.0, -2.718501688867274, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -3.6532607660371457, -7.0, -4.530036326633662, -7.0, -2.7734207232906103, -4.244437940830307, -3.0318122713303706, -7.0, -2.484299839346786, -7.0, -7.0, -3.4382258076045296, -2.7283537820212285, -7.0, -7.0, -7.0, -2.8494194137968996, -7.0, -7.0, -7.0, -2.5895772957033327, -7.0, -2.4245186658770486, -7.0, -7.0, -4.61846649219908, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.733606481099323, -7.0, -7.0, -7.0, -4.656529406233498, -4.802807920361628, -4.093193971108387, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9056340013269546, -4.624488362513449, -7.0, -4.785215906761976, -7.0, -7.0, -7.0, -7.0, -7.0, -4.704588024033806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.827110687466011, -3.436242180871562, -7.0, -7.0, -7.0, -4.242442036037531, -3.0855046394264978, -7.0, -7.0, -4.140727962844183, -3.7056926965377035, -7.0, -7.0, -7.0, -2.6273658565927325, -7.0, -7.0, -7.0, -7.0, -3.8775057221332867, -4.377938832645777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3055663135153037, -7.0, -7.0, -7.0, -7.0, -3.9761206182998157, -7.0, -7.0, -7.0, -3.8567288903828825, -7.0, -7.0, -3.4589182965065093, -4.563777633362166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.991447598003803, -7.0, -7.0, -7.0, -7.0, -3.9914918889101596, -7.0, -2.669316880566112, -7.0, -7.0, -7.0, -4.3274508928931175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8344207036815328, -7.0, -7.0, -7.0, -7.0, -7.0, -4.469571672441998, -7.0, -4.44070447487986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8554383867477418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6703386411274423, -7.0, -4.236227660561736, -7.0, -7.0, -7.0, -7.0, -7.0, -2.546542663478131, -3.7132384615456617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3026555539507187, -2.916980047320382, -7.0, -7.0, -7.0, -7.0, -2.983175072037813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.282622112878062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.674769314015426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6691308473733324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.279210512601395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7115916680435577, -7.0, -7.0, -7.0, -7.0, -2.925398047854587, -7.0, -3.1225435240687545, -7.0, -7.0, -7.0, -3.940267391446012, -3.1876147137990425, -7.0, -7.0, -3.4838724542226736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.567473376960255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1745830891776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.339053735709139, -3.287054877670668, -7.0, -3.0111473607757975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.581190866388724, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8353734524700087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0492180226701815, -7.0, -7.0, -2.627024295834346, -7.0, -3.8295481957452853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6088824508987196, -7.0, -7.0, -7.0, -7.0, -3.238798562713917, -7.0, -7.0, -3.645978700535912, -7.0, -7.0, -7.0, -3.4412236742426123, -7.0, -7.0, -7.0, -3.113943352306837, -7.0, -7.0, -7.0, -7.0, -7.0, -3.996555449633365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.532117116248804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8004421213362565, -7.0, -7.0, -7.0, -3.08278537031645, -7.0, -7.0, -1.854029860881183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6202401898458314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.598133645813238, -7.0, -3.2182728535714475, -3.5634354446522214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.037824750588342, -7.0, -7.0, -7.0, -7.0, -7.0, -2.972665592266111, -7.0, -7.0, -7.0, -2.2479732663618064, -7.0, -2.7103994661168005, -2.5163149757779495, -2.9960736544852753, -7.0, -7.0, -2.762678563727436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0043213737826426, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1969648714132997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2399664702073565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.507424060094855, -7.0, -7.0, -7.0, -2.643362936950399, -7.0, -7.0, -2.8587376566001557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.532244643626582, -3.1908917169221698, -7.0, -7.0, -4.012721256813116, -7.0, -7.0, -2.200371635102761, -7.0, -7.0, -7.0, -7.0, -3.3059958827708047, -7.0, -7.0, -7.0, -7.0, -7.0, -3.954390695763905, -7.0, -7.0, -7.0, -7.0, -3.2833012287035497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.509023209990858, -7.0, -4.1119646410441515, -7.0, -3.2732328340430454, -2.542849826210958, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9324737646771535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1484278325456465, -4.7530082150208885, -7.0, -7.0, -7.0, -3.445759836488631, -3.7573960287930244, -7.0, -7.0, -7.0, -7.0, -4.583153414473892, -4.66305984454625, -4.330332589222979, -4.4061312402136235, -7.0, -7.0, -7.0, -7.0, -4.616149802205346, -7.0, -5.1039780876687395, -7.0, -4.790080990601768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.240524288112364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.401452239428341, -7.0, -7.0, -4.1026280541372, -7.0, -7.0, -7.0, -4.078275522086601, -7.0, -4.250895513938375, -7.0, -3.3688445068258215, -2.536768805608776, -3.860697274052039, -3.459618623917375, -7.0, -7.0, -7.0, -7.0, -7.0, -3.728272597895017, -7.0, -7.0, -4.066624050983426, -3.8690872318374687, -4.060552567068463, -7.0, -7.0, -7.0, -4.619030687481902, -3.7318304202881625, -4.468544244712472, -7.0, -4.083824996053337, -7.0, -7.0, -7.0, -4.292676867185116, -7.0, -7.0, -3.620864475265121, -3.575851484766047, -7.0, -7.0, -3.8344101058342694, -3.872785398110417, -7.0, -3.3848907965305544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0962145853464054, -7.0, -3.4185912766763797, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2199873220898207, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2347702951609167, -7.0, -7.0, -7.0, -2.915135906622012, -3.2586372827240764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1172136357403977, -4.64812572155865, -4.048092051812373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8356905714924254, -7.0, -7.0, -3.7589118923979736, -7.0, -3.4207806195485655, -7.0, -7.0, -7.0, -7.0, -3.647167725824425, -2.779957051246906, -7.0, -7.0, -3.6464037262230695, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6065067620786353, -7.0, -3.508395033133053, -7.0, -7.0, -7.0, -7.0, -3.290034611362518, -7.0, -7.0, -7.0, -3.3958503760187813, -7.0, -7.0, -3.6724673130680823, -2.878234468675044, -7.0, -3.2989258164621176, -2.9222062774390163, -3.236033147117636, -7.0, -7.0, -3.7263196121107756, -7.0, -7.0, -7.0, -2.971275848738105, -7.0, -3.505963518018126, -7.0, -7.0, -4.0269416279590295, -7.0, -7.0, -4.297913635807866, -2.9658062406544436, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2342641243787895, -7.0, -7.0, -7.0, -7.0, -3.1720188094245563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9765028188717886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7287594751678745, -2.994976673649691, -3.255272505103306, -7.0, -7.0, -7.0, -7.0, -7.0, -4.294620516587421, -7.0, -7.0, -7.0, -3.0782150732756044, -7.0, -7.0, -7.0, -7.0, -7.0, -3.33193317250328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.657982760912062, -7.0, -7.0, -7.0, -3.599992177584098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.798034555379355, -7.0, -2.2576785748691846, -7.0, -2.4065401804339555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.428134794028789, -7.0, -3.1792644643390253, -7.0, -4.334895863011881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6977522741677546, -2.2041199826559246, -7.0, -7.0, -7.0, -7.0, -1.872156272748293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.423245873936808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7015679850559273, -7.0, -7.0, -7.0, -2.6503075231319366, -7.0, -4.517842238320856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7795964912578244, -7.0, -7.0, -7.0, -2.1335389083702174, -2.1868151244474543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3314272965207428, -7.0, -7.0, -3.20615098159626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.313023110323238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.37283838749711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0286607048897425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.799387125085768, -7.0, -7.0, -2.665580991017953, -7.0, -2.8195439355418688, -7.0, -7.0, -7.0, -7.0, -2.0549958615291413, -1.792391689498254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.143014800254095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.858537197569639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1280760126687155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.808210972924222, -7.0, -7.0, -7.0, -4.304974961155454, -7.0, -7.0, -7.0, -7.0, -2.03342375548695, -7.0, -7.0, -7.0, -2.6702458530741238, -7.0, -7.0, -7.0, -7.0, -5.097746526628908, -2.9647309210536292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4608978427565478, -7.0, -7.0, -7.0, -7.0, -3.947531745695593, -7.0, -5.432922814070343, -7.0, -3.0203612826477078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7528164311882715, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5753803086941183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8018425852969475, -7.0, -7.0, -7.0, -7.0, -3.9904276584852636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.000195388557727, -7.0, -7.0, -7.0, -7.0, -4.064570292244026, -7.0, -7.0, -7.0, -7.0, -3.693463127219531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.050920836935403, -4.502244987676499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05311687492293, -7.0, -7.0, -7.0, -4.273949892550008, -7.0, -7.0, -7.0, -3.8524494943579435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2880255353883627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0236639181977933, -7.0, -7.0, -3.985201858364572, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9304395947667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639964348640366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3988077302032647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.989894563718773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.47877926219127, -2.7041505168397992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1108140939166935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1476763242410986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.201415333350953, -2.6403394410620447, -7.0, -7.0, -2.4653828514484184, -2.962030915578165, -7.0, -7.0, -3.3872118003137306, -3.4667193716815987, -7.0, -2.7007037171450192, -3.2998703301367427, -7.0, -2.8805277781988052, -3.0695111297549458, -7.0, -7.0, -7.0, -7.0, -7.0, -3.392696953259666, -3.8051495651298395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3656751404559175, -2.9133935997862364, -7.0, -7.0, -2.142493751023144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8497878242376853, -2.6500037994452423, -7.0, -7.0, -3.044539760392411, -7.0, -7.0, -7.0, -3.379305517750582, -7.0, -3.2080380493531804, -7.0, -7.0, -7.0, -3.20378055748671, -7.0, -7.0, -7.0, -7.0, -3.6160551949765862, -7.0, -7.0, -3.450403086155366, -2.947643745820492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3914644118391033, -7.0, -7.0, -2.570369028299623, -3.120080134129453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5122943328400638, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3866772839608377, -7.0, -3.1476763242410986, -7.0, -7.0, -7.0, -3.4038066105474227, -3.8327962184124127, -7.0, -3.391816923613249, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1964405298523033, -7.0, -7.0, -2.796227314029439, -4.275978986467148, -7.0, -3.4865721505183562, -2.9059307334917293, -7.0, -7.0, -7.0, -2.917330426106554, -7.0, -7.0, -3.575187844927661, -7.0, -7.0, -7.0, -7.0, -7.0, -2.991036109451118, -7.0, -2.722633922533812, -3.1509098737011216, -3.0791812460476247, -3.6182050422592695, -7.0, -7.0, -7.0, -3.66661156841903, -3.188365926063148, -7.0, -7.0, -7.0, -3.3675733244970245, -7.0, -7.0, -7.0, -3.4104397862103464, -7.0, -7.0, -3.473778834646725, -3.4268364538035083, -7.0, -7.0, -7.0, -7.0, -7.0, -2.393366632040518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9752019622578523, -7.0, -3.49084770815903, -7.0, -7.0, -2.9565241471648407, -7.0, -3.4302363534115106, -3.4239009185284166, -3.436480695009495, -3.1536624535754956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2404244330836076, -7.0, -7.0, -7.0, -2.2178234357159727, -7.0, -7.0, -7.0, -3.4634450317704277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7287594751678745, -3.532408552392377, -7.0, -7.0, -7.0, -2.8360074591255313, -7.0, -7.0, -3.098470665650629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.390758528738717, -4.071845201129409, -7.0, -7.0, -7.0, -7.0, -3.3736474722092176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4295908022233017, -1.5381155755594067, -7.0, -4.0482734397251114, -7.0, -7.0, -7.0, -7.0, -3.1702617153949575, -3.0086001717619175, -3.5482665451707454, -3.2389238459924155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.397070549959409, -7.0, -7.0, -7.0, -3.0860037056183818, -7.0, -3.6784273224338673, -7.0, -7.0, -7.0, -3.8507279001855457, -3.3873898263387296, -7.0, -3.4139699717480614, -7.0, -7.0, -7.0, -2.895790748250444, -3.5296869537729165, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5487373695237934, -3.493179120682515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.139839746351216, -7.0, -3.680367325199071, -7.0, -7.0, -3.871070638121196, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3793961751941644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3479151865016914, -7.0, -7.0, -4.162225759798416, -4.763338130235672, -7.0, -7.0, -7.0, -7.0, -3.2477892042772956, -7.0, -3.670392758338277, -7.0, -7.0, -4.297289861640372, -4.675732527603479, -4.816605821725513, -2.9507055347738613, -7.0, -4.122854558785159, -4.069649600159877, -7.0, -4.153082804361832, -7.0, -5.108612374132366, -3.6768764319731373, -3.8452221064290137, -7.0, -7.0, -4.646168378774083, -7.0, -7.0, -3.1301275018172254, -7.0, -7.0, -4.28602960050819, -3.631240780235509, -3.6178387477170033, -3.985695859689842, -7.0, -3.609505478236499, -4.123263475902825, -3.0493343359722838, -7.0, -3.3159482602535313, -7.0, -2.760480478279665, -3.4435758797502576, -3.52283531366053, -3.4837298990000236, -2.561573648247468, -3.433609843323718, -3.5683190850951116, -4.140602308020332, -3.297295337240443, -2.8977492385228323, -7.0, -3.569490954348783, -3.5436956323092446, -7.0, -3.412880358464974, -7.0, -7.0, -7.0, -7.0, -3.2484057839901737, -4.400327842485654, -7.0, -7.0, -7.0, -4.030913288350967, -3.8296896408989713, -3.2275617228280855, -7.0, -7.0, -7.0, -3.8200700343123257, -4.085968077046074, -7.0, -7.0, -3.5126176996829153, -7.0, -7.0, -2.7725967217074574, -7.0, -3.304244259277009, -3.508001960690125, -7.0, -7.0, -7.0, -3.600755149639618, -7.0, -4.091596620810058, -7.0, -7.0, -7.0, -7.0, -7.0, -2.959078102052902, -7.0, -7.0, -7.0, -3.3478177127089124, -7.0, -3.20194306340165, -7.0, -7.0, -3.9092350033683076, -7.0, -4.171794687605212, -7.0, -7.0, -7.0, -3.5820065143636985, -7.0, -3.681150749932421, -7.0, -7.0, -3.4067955726682504, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9472866446777983, -7.0, -7.0, -7.0, -3.29909022733675, -3.414851850003344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1536624535754956, -3.3005954838899636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7663278496599504, -7.0, -3.184028602525124, -7.0, -7.0, -7.0, -7.0, -3.557206339765532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0041063232796583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.87075494489014, -3.22284647997415, -7.0, -3.567966906823154, -7.0, -7.0, -3.537525269964369, -3.659821158055705, -7.0, -3.5939502952639875, -3.877774349991398, -7.0, -3.4449421391905433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5114287843162253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6959192528313998, -7.0, -7.0, -3.3341520529922866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1740598077250253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3192548157701802, -2.9974328623333713, -7.0, -7.0, -7.0, -3.4215216663369774, -3.4419306745501714, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6827149543979574, -3.707314633588708, -7.0, -2.3293978793610424, -2.752913044000912, -7.0, -3.1705550585212086, -7.0, -2.490520309363349, -2.875928984922927, -3.1983821300082944, -4.096028949745415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7171154940041666, -7.0, -3.147521743537597, -7.0, -2.96140210810033, -3.1436392352745433, -7.0, -7.0, -7.0, -7.0, -3.1652443261253107, -3.1595671932336202, -7.0, -3.165541076722373, -7.0, -2.275416066894797, -2.8627275283179747, -3.1755118133634475, -2.5396137029240258, -7.0, -2.553883026643874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1724204775324703, -2.8407332346118066, -2.8388490907372557, -7.0, -7.0, -7.0, -2.2193939834967513, -7.0, -7.0, -3.471144965160633, -7.0, -2.1894903136993675, -7.0, -7.0, -7.0, -7.0, -2.855216194733363, -2.441852175773292, -2.044588752944993, -1.7087041048932998, -2.3977228071261734, -2.718224803628757, -2.4616485680634552, -7.0, -3.0868045767268297, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1586639808139894, -7.0, -3.153204900084284, -7.0, -3.526597709103452, -7.0, -7.0, -7.0, -1.585580716933467, -7.0, -3.1504494094608804, -7.0, -3.1571544399062814, -2.1010593549081156, -3.157456768134226, -7.0, -1.5984257066728684, -7.0, -3.258979166140853, -7.0, -7.0, -2.86123561863404, -1.7936869319790616, -3.0419845014867866, -7.0, -1.6732012744666738, -3.837304286407038, -7.0, -7.0, -3.208710019906401, -3.599914247873701, -2.864511081058392, -3.337459261290656, -1.7747090039726263, -2.946943270697825, -7.0, -7.0, -7.0, -7.0, -7.0, -3.715627349158221, -7.0, -7.0, -7.0, -7.0, -7.0, -3.776555910703262, -2.9778378782751416, -2.9857631799909927, -2.8102325179950842, -7.0, -7.0, -7.0, -3.1489109931093564, -1.6799827766807411, -2.424881636631067, -3.3418300569205104, -7.0, -7.0, -7.0, -2.583798674353646, -7.0, -7.0, -7.0, -3.2258259914618934, -7.0, -7.0, -7.0, -3.2506639194632436, -2.929418925714293, -3.2024883170600935, -7.0, -7.0, -7.0, -2.378509956288727, -2.372298159077237, -7.0, -7.0, -3.1652443261253107, -3.153204900084284, -2.865991800126275, -7.0, -1.8703114792547921, -7.0, -3.924382677201973, -7.0, -7.0, -1.5183510800440148, -2.863322860120456, -7.0, -2.0346785800579923, -3.2650537885040145, -2.1403284340687447, -7.0, -3.2234959409623944, -7.0, -3.2265999052073573, -3.18440748541232, -2.3921104650113136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2216749970707688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2127201544178425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5418911250960012, -2.6699364163086976, -3.1386184338994925, -7.0, -2.8692317197309762, -7.0, -7.0, -1.6188990588803125, -2.4578818967339924, -2.9499751778296535, -5.153195744095671, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146128035678238, -3.2095150145426308, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.494154594018443, -3.082865123228602, -7.0, -7.0, -7.0, -3.1550322287909704, -3.168202746842631, -2.870403905279027, -3.1451964061141817, -2.898999270889789, -7.0, -2.858537197569639, -7.0, -7.0, -7.0, -3.1436392352745433, -7.0, -3.496514518697745, -2.651278013998144, -2.6361295379850636, -2.4450850227193537, -4.212693542421026, -7.0, -7.0, -3.1577588860468637, -3.4256157245769305, -3.3161800988934527, -7.0, -2.3392857748989755, -3.4112829130173843, -7.0, -2.8494194137968996, -2.6652682113991735, -2.7052933977148914, -2.018423082826786, -2.1872642729507104, -7.0, -7.0, -3.2000292665537704, -7.0, -3.1556396337597765, -3.190051417759206, -2.1190758459608126, -1.9254266961927287, -3.3062105081677613, -7.0, -2.7078539359785987, -3.774569098791682, -7.0, -7.0, -2.934561570854449, -7.0, -2.1893967258352185, -7.0, -3.168202746842631, -2.0893751608160995, -1.9153244434089554, -3.3754807146185724, -7.0, -3.3334472744967503, -7.0, -4.324045689986502, -2.4992942336708537, -7.0, -7.0, -7.0, -2.900913067737669, -2.2730012720637376, -7.0, -7.0, -3.2258259914618934, -7.0, -7.0, -7.0, -3.2011238972073794, -3.1772478362556233, -7.0, -2.93976877545335, -7.0, -3.5296869537729165, -3.2641091563058082, -4.073203361152041, -7.0, -1.8401821596959231, -3.559379888183303, -2.087347537450042, -7.0, -2.467608105583633, -2.8744818176994666, -1.7926039027846181, -2.744851561311451, -2.56839730816483, -3.149834696715785, -7.0, -7.0, -2.1513462735539934, -7.0, -2.4152516526787737, -7.0, -1.810232517995084, -2.8654001181793016, -1.8882419149722454, -7.0, -7.0, -4.15325576317293, -7.0, -4.29569901748951, -7.0, -4.447344117675954, -7.0, -3.791830947674836, -7.0, -4.043770833537528, -7.0, -7.0, -7.0, -7.0, -4.810662565790494, -3.7149999674120426, -7.0, -7.0, -3.8182353223974452, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015171073002388, -3.637055885524786, -7.0, -4.637339601787825, -7.0, -7.0, -4.237258806492558, -3.9510702531688118, -4.59440360098501, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.710405106268253, -4.014100321519621, -3.369586890736344, -3.3059958827708047, -2.5267289171353124, -1.7989348563069356, -2.7974983643715756, -7.0, -7.0, -3.4434314959344703, -2.956708560488622, -7.0, -7.0, -3.476483821914464, -3.095448326538122, -7.0, -7.0, -3.114610984232173, -7.0, -7.0, -3.615871177457818, -7.0, -7.0, -2.4814793786171485, -3.2858542379017495, -7.0, -7.0, -3.4912215762392833, -7.0, -3.0669054262816697, -7.0, -4.248992783468489, -2.483125616393796, -7.0, -7.0, -3.2797429693408864, -7.0, -3.700811844739728, -7.0, -2.970966411972679, -7.0, -2.7275132117938496, -3.586812269443376, -3.2079035303860515, -2.9354127889420147, -3.21507405981132, -7.0, -3.741939077729199, -7.0, -3.490941205356787, -3.2372085050255706, -7.0, -3.2060158767633444, -3.177824971864682, -7.0, -7.0, -7.0, -2.56054423863114, -7.0, -2.5248595673317964, -7.0, -2.705619383455026, -3.136363791969793, -2.8829038344697353, -3.2111205412580492, -7.0, -3.159266331093494, -7.0, -4.038063526997859, -3.031408464251624, -7.0, -7.0, -2.9253120914996495, -7.0, -2.8920946026904804, -7.0, -7.0, -2.2217792569396897, -7.0, -3.359076226059263, -7.0, -2.427323786357247, -7.0, -3.6001012556913907, -7.0, -7.0, -7.0, -2.6131918182858205, -4.273626206272959, -7.0, -7.0, -2.9395192526186187, -7.0, -7.0, -7.0, -2.8736111969964675, -2.977609302226758, -7.0, -7.0, -3.71121652432109, -3.157456768134226, -7.0, -2.81424759573192, -2.53585649562398, -7.0, -7.0, -3.185825359612962, -2.754157142891773, -7.0, -7.0, -3.1746411926604483, -3.1863912156954934, -7.0, -3.8813275841005512, -7.0, -7.0, -2.862280493299705, -7.0, -2.9877270261586526, -2.3502480183341627, -7.0, -1.7674209222282797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7594160067690314, -7.0, -7.0, -2.688419822002711, -2.2036107453704106, -7.0, -7.0, -3.5081929260254405, -7.0, -7.0, -3.3265406685165617, -3.8152455919165633, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5976293787457663, -7.0, -7.0, -3.1808424146466825, -3.8603380065709936, -2.6190933306267428, -4.011062694729735, -4.308116015865615, -3.84223468634724, -7.0, -7.0, -3.173186268412274, -7.0, -3.238547887681328, -7.0, -3.6094876898532853, -7.0, -2.5754765086019, -7.0, -3.1063042456868444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.282848602834645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.76544501809015, -7.0, -7.0, -7.0, -7.0, -2.355387657986574, -7.0, -7.0, -4.304899640332865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.214896807560221, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517024258314842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0931063569779065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.184975190698261, -7.0, -7.0, -7.0, -7.0, -3.970356175798233, -7.0, -2.6434526764861874, -2.603144372620182, -7.0, -2.776701183988411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.674034000431255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097531477843443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.118430077122089, -7.0, -7.0, -7.0, -4.540967306429246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9791020148025416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603133542198807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3998870674206625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333809874855226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1142772965615864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1987945001755986, -4.093386660001371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4259171567401974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368426357519688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3988077302032647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1436392352745433, -7.0, -7.0, -7.0, -7.0, -7.0, -3.674769314015426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9132839017604186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.402089350572097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.783824999149303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603220178008266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7685641095135733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639426719860243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080666163176663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5822906827189938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8961954104542107, -3.5779511277297553, -7.0, -7.0, -4.40012335543708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02530586526477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7902851640332416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216614485501277, -2.6384892569546374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5947607525864629, -7.0, -4.0948203803548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.00987563371216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7854010249923875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426543791568096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8834100830783638, -7.0, -7.0, -2.6532125137753435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1061908972634154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495918807079969, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304835069229006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495620644569206, -7.0, -7.0, -7.0, -7.0, -3.0330214446829107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4093694704528195, -7.0, -7.0, -5.131868776728313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.027064062151045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703265577680112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.946042669130686, -7.0, -7.0, -7.0, -4.541579243946581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.473194909204938, -7.0, -7.0, -7.0, -7.0, -4.678286146953918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.333144876098619, -7.0, -7.0, -3.1049989492996337, -7.0, -7.0, -4.561947671417096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9845723156216324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639834980302741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2585636110560623, -7.0, -7.0, -7.0, -3.452553063228925, -3.772761647144032, -7.0, -3.3402457615679317, -7.0, -7.0, -7.0, -2.9804578922761, -7.0, -7.0, -7.0, -3.682686478249768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9755811433675645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505421327583281, -7.0, -3.5892605847872807, -7.0, -7.0, -7.0, -7.0, -2.9668454236549167, -7.0, -7.0, -7.0, -7.0, -3.4837298990000236, -3.824581376233483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4363217001397333, -7.0, -7.0, -7.0, -3.3907938501556703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7817793020639456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4979343783811503, -3.330210784571528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5743785644130823, -7.0, -7.0, -7.0, -3.058995093525416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.515377033954657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6909045540549665, -4.150572247668998, -7.0, -7.0, -7.0, -3.749140877763003, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5788683286660286, -7.0, -7.0, -7.0, -3.5554975061310574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4129642719966626, -7.0, -7.0, -7.0, -4.130237247885229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.86844850133673, -7.0, -7.0, -3.896037794686384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0387525889920166, -7.0, -3.466818209752554, -7.0, -2.922898380345496, -3.22250119856757, -3.2678754193188975, -7.0, -7.0, -3.348694190265541, -3.3712526291249394, -2.9459607035775686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5711262770843115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2997251539756367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8755242639493086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.751933133091522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.496514518697745, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5100085129402347, -7.0, -3.263201951663331, -7.0, -7.0, -7.0, -7.0, -3.3912880485952974, -7.0, -3.1806992012960347, -7.0, -7.0, -7.0, -7.0, -3.2826221128780624, -3.362293937964231, -3.3230457354817013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6303261548039467, -7.0, -7.0, -7.0, -3.4194187409295647, -7.0, -7.0, -3.5613399414589013, -7.0, -7.0, -7.0, -7.0, -3.4602963267574753, -7.0, -7.0, -7.0, -7.0, -7.0, -3.158492706081757, -3.4171394097273255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.405903034554918, -7.0, -3.1362448017461424, -4.087083052293845, -7.0, -7.0, -3.3348556896172914, -7.0, -3.398287305357401, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0521165505499983, -7.0, -7.0, -7.0, -7.0, -3.269512944217916, -7.0, -7.0, -7.0, -2.9344176447530743, -3.528886466403724, -3.458853593929194, -7.0, -7.0, -7.0, -3.215967850531294, -3.82239693934044, -3.365292945375382, -7.0, -4.091561448144972, -3.160890737208172, -4.193968239905537, -3.968102524143074, -3.575303333422399, -3.166218603352615, -3.7165542140372105, -3.3243011664190374, -3.582404298019028, -3.1932276949678604, -7.0, -3.463173317505048, -7.0, -3.0244578372293143, -3.649918718735419, -4.200522191802113, -4.641236075704003, -4.473851770154815, -7.0, -3.638314505630271, -3.5623880418581058, -3.9965773367182584, -3.4962606330422306, -4.22057875463283, -7.0, -3.974327435423617, -3.505895781219751, -4.378851946448881, -3.114410802397837, -4.030235296012245, -7.0, -3.987420452611655, -2.9932357714670954, -3.3685348052638817, -7.0, -7.0, -7.0, -3.8632752635965546, -3.281033367247727, -7.0, -3.6473503641998253, -3.885785128783473, -3.52022143588196, -7.0, -3.8403570592033565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.002436061443105, -3.384608753685633, -3.585781667754338, -7.0, -7.0, -7.0, -3.4515715370380673, -7.0, -4.10475529215573, -7.0, -3.8125791554090465, -7.0, -3.3084932702271614, -3.4654943853655413, -4.010299956639812, -7.0, -3.3016809492935764, -3.7024305364455254, -3.247591421035026, -3.628695382714023, -7.0, -3.4753182974419126, -3.5815742220419535, -7.0, -3.116871334402459, -7.0, -3.5425764762605296, -7.0, -3.295127085252191, -7.0, -7.0, -7.0, -7.0, -7.0, -3.577912868954951, -2.6857417386022635, -2.356185260565036, -7.0, -7.0, -3.2096681778247347, -7.0, -2.6040099324122306, -3.269512944217916, -3.102890857809762, -7.0, -3.2456409631411085, -2.6254839394069043, -7.0, -7.0, -3.853759033074769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.302330928684399, -7.0, -3.922050402167174, -7.0, -7.0, -3.3775444087229904, -3.542298632022125, -3.6074550232146683, -7.0, -7.0, -2.7257074985747667, -7.0, -3.295567099962479, -7.0, -7.0, -3.0201540316383326, -7.0, -7.0, -7.0, -7.0, -3.8197412972730103, -7.0, -7.0, -7.0, -7.0, -2.9829492885744986, -2.948412965778601, -3.408315357115164, -7.0, -7.0, -7.0, -3.4225077658680756, -3.9030899869919438, -7.0, -7.0, -7.0, -3.3324384599156054, -3.1725246190207876, -2.8639173769578603, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9231792324017825, -7.0, -7.0, -2.722839505724351, -3.5251744278352715, -7.0, -3.2692793897718984, -2.790128717892536, -2.8979934299725625, -3.36078268987328, -2.8796692056320534, -7.0, -3.0317113547545933, -7.0, -3.840482487213442, -3.79155030502733, -3.5219222448835, -3.203576774977973, -7.0, -7.0, -3.401874214845746, -7.0, -7.0, -7.0, -3.7430980089414754, -7.0, -3.726197258403274, -3.538028848509809, -7.0, -7.0, -3.386320573894046, -7.0, -7.0, -2.849009701991132, -2.710963118995276, -3.649334858712142, -7.0, -7.0, -3.249198357391113, -2.8340888222552794, -7.0, -7.0, -7.0, -7.0, -3.343802333161655, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9777236052888476, -7.0, -7.0, -7.0, -7.0, -3.3096301674258988, -7.0, -7.0, -3.4924810101288766, -3.6833172619218826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5348718599395945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.816288657767513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9158745028576916, -7.0, -7.0, -2.231542403656085, -3.5569167422407153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.451530591934032, -3.426185825244511, -7.0, -7.0, -2.871280972857973, -7.0, -7.0, -7.0, -7.0, -2.160368474792848, -2.6652682113991735, -2.433769833924866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4727564493172123, -7.0, -7.0, -3.924641047417163, -2.3664229572259727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.808885867359812, -7.0, -7.0, -7.0, -7.0, -3.8233829264392476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.979548374704095, -7.0, -7.0, -7.0, -2.688419822002711, -2.988112840268352, -7.0, -7.0, -7.0, -7.0, -4.070850253427573, -2.2616593037647066, -7.0, -7.0, -7.0, -7.0, -7.0, -3.074938279468222, -3.630122642859312, -7.0, -7.0, -7.0, -4.738796408358713, -7.0, -7.0, -2.5384480517102173, -2.4366925976640545, -7.0, -7.0, -2.5071809772602407, -7.0, -7.0, -3.9752019622578523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.385606273598312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.056142262059052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0942184429580704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8109042806687006, -7.0, -7.0, -7.0, -7.0, -2.845939884498351, -7.0, -2.931457870689005, -7.0, -2.6488477083728936, -2.7032913781186614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.377670439334323, -7.0, -3.028571252692538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3592661646067485, -7.0, -7.0, -7.0, -2.661812685537261, -7.0, -7.0, -7.0, -7.0, -7.0, -2.486666572625893, -7.0, -3.5460488664017342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6971421262754594, -7.0, -7.0, -7.0, -2.682145076373832, -7.0, -2.7307822756663893, -7.0, -7.0, -7.0, -7.0, -3.4295908022233017, -2.651278013998144, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2284859086849425, -7.0, -4.500949647254549, -7.0, -7.0, -2.3873898263387296, -7.0, -7.0, -3.0881360887005513, -2.927626962444954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.108057373783854, -2.766710207262259, -7.0, -7.0, -2.7686381012476144, -7.0, -7.0, -7.0, -3.296884475538547, -7.0, -7.0, -2.8898617212581885, -7.0, -2.1424463518981964, -2.2105860249051563, -7.0, -7.0, -7.0, -7.0, -4.320779603142665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9644482079166607, -7.0, -4.655319353156804, -7.0, -7.0, -3.9459607035775686, -2.807873132003332, -7.0, -7.0, -7.0, -3.0655797147284485, -2.8674674878590514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.335290703581678, -7.0, -7.0, -4.620666881958084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.036261505705524, -7.0, -4.041708420891436, -7.0, -7.0, -4.804248503594015, -4.3979400086720375, -7.0, -7.0, -4.353367970314268, -7.0, -4.611117634384384, -7.0, -7.0, -7.0, -4.087689155914309, -7.0, -7.0, -7.0, -7.0, -7.0, -4.229238022747195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0921063046052355, -7.0, -7.0, -4.574320700915308, -3.6097011023793995, -2.907871825014827, -7.0, -7.0, -7.0, -7.0, -3.7998228309933197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.756560043006683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.628899564420607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.164144582470177, -7.0, -7.0, -4.306542968060749, -4.089104047230036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -3.0969968632197054, -7.0, -2.367355921026019, -7.0, -2.638156336676239, -3.699620957965614, -7.0, -7.0, -7.0, -3.1951382785109965, -7.0, -3.7274192470595273, -2.6020599913279625, -7.0, -7.0, -3.064008486531724, -7.0, -2.993583175003126, -7.0, -7.0, -2.667319508586583, -7.0, -7.0, -7.0, -7.0, -7.0, -3.846213363879387, -7.0, -7.0, -7.0, -2.8941775538387726, -4.141300802092444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.622731965164719, -7.0, -7.0, -2.7032913781186614, -2.4283373095287994, -7.0, -7.0, -7.0, -3.123524980942732, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3461573022320086, -7.0, -7.0, -3.689486448364248, -7.0, -3.318290070795012, -2.9334872878487053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.412740466538526, -7.0, -7.0, -7.0, -2.5826830459874577, -7.0, -7.0, -3.7402837196818792, -7.0, -7.0, -7.0, -3.269746373130767, -7.0, -2.9967305154351527, -7.0, -7.0, -7.0, -3.974396541077658, -7.0, -7.0, -7.0, -3.2763782377920156, -2.5888317255942073, -7.0, -3.9863013670565963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.078577639999239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.507855871695831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -7.0, -3.387122759927585, -7.0, -7.0, -7.0, -7.0, -2.3114006325028105, -7.0, -7.0, -3.9829267037708376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3575017219202703, -2.74020473550745, -7.0, -7.0, -2.9344984512435675, -2.2442276257329077, -3.6824158616773586, -7.0, -7.0, -3.2529338976558373, -2.82865989653532, -2.17827488687209, -7.0, -7.0, -2.153895059060278, -2.6178845514336007, -7.0, -3.6828667956623247, -7.0, -7.0, -7.0, -7.0, -3.496088332375765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.200759326791928, -3.038305485793075, -7.0, -7.0, -2.3927848582254354, -7.0, -7.0, -3.681241237375587, -7.0, -7.0, -3.681331705969166, -2.394013663157313, -2.7265008135244413, -3.680969718465897, -3.6843964784190204, -3.284054558436069, -3.208889036595623, -3.678973375919765, -7.0, -3.6849350826408895, -2.866793509866322, -7.0, -7.0, -7.0, -7.0, -3.484071952954621, -7.0, -7.0, -3.3790334318179673, -7.0, -2.816837630902035, -3.111766433052562, -7.0, -2.9425867266347816, -2.5738451016256025, -7.0, -3.690373306916059, -7.0, -7.0, -7.0, -2.827553882825746, -3.2012149920125177, -3.674677467873199, -7.0, -7.0, -3.4271614029259654, -3.690993032099869, -3.7062055418819706, -7.0, -2.559825308445932, -3.2288279401906332, -7.0, -3.373095987078727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.04720994556899, -3.6797911709803546, -7.0, -7.0, -3.1166907434117026, -7.0, -7.0, -3.6885977750811696, -7.0, -3.419625360887743, -3.6788824146707357, -7.0, -3.4050901140387224, -3.3960248966085933, -2.672396706235079, -7.0, -3.6911699341316035, -7.0, -7.0, -3.4424797690644486, -7.0, -3.1956782994574984, -2.6746570549812816, -3.6795187436957892, -3.705007959333336, -2.9952841076892596, -3.5671513990768036, -7.0, -3.4401216031878037, -2.6380282224294906, -3.7083359026822635, -7.0, -3.6857417386022635, -2.3467085164122916, -7.0, -7.0, -2.2350807535650064, -7.0, -7.0, -7.0, -3.196728722623287, -3.673665876245702, -3.366843038975866, -3.85394144588049, -3.158724253450531, -2.0066757349199578, -7.0, -4.031448861859383, -7.0, -7.0, -7.0, -3.373095987078727, -3.043440876244474, -7.0, -7.0, -7.0, -3.1740598077250253, -7.0, -3.674952948048565, -2.681874122128647, -3.700617195682057, -7.0, -7.0, -7.0, -7.0, -7.0, -3.692935002531138, -7.0, -7.0, -3.6820547770738075, -1.8316472780798594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5368389039838624, -7.0, -3.592361839214949, -7.0, -3.436162647040756, -2.2215638729371334, -7.0, -2.709354775834396, -2.8614490626261007, -3.111598524880394, -2.8779469516291885, -3.7481104674949837, -7.0, -7.0, -7.0, -3.6871721045948, -7.0, -3.772834927239018, -7.0, -7.0, -7.0, -2.850986404764101, -7.0, -2.7814942626759254, -3.674125982742708, -2.8243699338659654, -7.0, -3.380030247967831, -7.0, -7.0, -3.6962689967455327, -7.0, -7.0, -7.0, -3.5165353738957994, -7.0, -7.0, -7.0, -3.6761446803562063, -7.0, -7.0, -3.6829569263012085, -7.0, -7.0, -2.8124955649012526, -3.42781057267599, -2.686356926304246, -3.3567068974160033, -7.0, -7.0, -7.0, -2.7599195366595284, -7.0, -7.0, -3.394013663157313, -3.6790643181213127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5716169014188077, -7.0, -7.0, -7.0, -7.0, -3.3809344633307017, -3.382107135819026, -7.0, -7.0, -7.0, -7.0, -1.5381155755594067, -2.6361295379850636, -3.674034000431255, -3.674769314015426, -7.0, -3.5100085129402347, -2.2284859086849425, -7.0, -7.0, -3.4095829393867487, -2.979001748474721, -7.0, -3.377761438702263, -2.488046836084362, -3.4318460456987254, -2.7856461456452184, -2.661011336773302, -2.8678356276470556, -7.0, -7.0, -7.0, -7.0, -3.7200765727681406, -7.0, -7.0, -3.6938148538894167, -3.6921416093667836, -7.0, -3.6783362467321803, -3.2114765203615074, -3.3803921600570273, -2.625856945055025, -3.126699483839912, -7.0, -3.386498965550653, -3.221385254927856, -3.688953462637418, -7.0, -2.9298444960392853, -7.0, -7.0, -3.704236337308788, -7.0, -2.5080057059156724, -2.6648982721005385, -7.0, -7.0, -7.0, -7.0, -2.9278264349968235, -3.267562808557224, -7.0, -7.0, -7.0, -3.456897187449348, -2.9395192526186187, -7.0, -7.0, -3.3994141053637703, -7.0, -7.0, -3.0711452904510828, -7.0, -7.0, -7.0, -7.0, -7.0, -2.953308577080214, -2.803270843082014, -2.9784853842188284, -3.6942541120252788, -7.0, -2.9155427295901104, -3.04641711698399, -7.0, -7.0, -7.0, -7.0, -3.1602283571978584, -3.444513206334043, -7.0, -7.0, -7.0, -3.415056858110851, -7.0, -7.0, -7.0, -3.7532765701844184, -7.0, -2.254637107064722, -7.0, -7.0, -3.1711694902913683, -4.0030582213054675, -4.3634803555596005, -3.709439574132411, -3.7179338840140583, -3.8195439355418688, -3.024074987307426, -3.5157267000606347, -1.9442479613427892, -7.0, -2.5486322043143623, -3.582734646353692, -3.7432047979332004, -3.9293358908906413, -2.638608449924449, -7.0, -3.420510834177029, -3.0803272587424058, -7.0, -3.7512213482173284, -7.0, -4.075347850294719, -4.077440584471324, -2.781263241134869, -3.514282047860378, -7.0, -4.067405658437824, -3.7365425706549265, -7.0, -2.656842345127794, -4.025428761407241, -3.5882003798974735, -4.33779857726225, -7.0, -7.0, -4.037386652582377, -4.197941836490006, -3.65097092646721, -3.1832848320171543, -2.1036423871445606, -3.754271868683459, -2.8070351926151433, -3.54647215540396, -2.6159938644667187, -1.9604877657203366, -2.835276892005453, -3.0401274417814563, -2.639840509652488, -4.024977972095624, -3.7886632131208575, -3.609140670672294, -2.705031753031844, -3.0261245167454502, -7.0, -3.2949949938591003, -3.7740057302582093, -7.0, -2.8395923053285284, -3.996905510695666, -7.0, -7.0, -3.73430366675543, -2.837383780552244, -4.231206147302349, -7.0, -3.808616035426992, -7.0, -3.878837635606425, -7.0, -4.060881904438374, -3.454133151696751, -7.0, -7.0, -7.0, -3.6881527555915663, -4.0686681432859, -3.781468142841798, -3.6511325785504813, -3.299942900022767, -2.9325660009484786, -3.3799095435529614, -7.0, -2.879280592584869, -3.0692768548844684, -3.7446840632768863, -3.9777510335478743, -7.0, -3.0296542818869807, -3.2311126290563523, -3.47088069752548, -7.0, -7.0, -7.0, -7.0, -4.213331780706593, -1.979089800538877, -7.0, -2.548926578970604, -3.101317377184387, -2.6065710271626346, -2.5509617522981762, -2.4927603890268375, -3.3945392313722045, -7.0, -2.5159565901122156, -7.0, -3.140073420241109, -3.739493230781615, -3.124259620782813, -3.813981075636472, -2.747023177451628, -3.489536629482095, -2.5791214245707335, -7.0, -3.4187154968655955, -2.4772949377781273, -7.0, -3.749968083509403, -2.8099803388636957, -7.0, -7.0, -2.426782271970501, -3.225567713439471, -3.679609571779756, -3.3267070035930515, -2.460725807287314, -2.17340020840208, -7.0, -3.8354368948018585, -3.7057782128285974, -3.469527479187014, -3.089463530840192, -7.0, -7.0, -3.0750600841196736, -7.0, -3.714413592287121, -3.22901594276341, -7.0, -2.579829309419537, -3.1214777702040943, -2.853833358651982, -7.0, -3.7385427409287852, -3.68761812957177, -2.1196328810393728, -3.414772858093331, -7.0, -3.684126925613075, -7.0, -7.0, -1.5080244315589613, -3.730216840568694, -7.0, -2.9618480590183243, -7.0, -2.5288608316878944, -3.4100176082030527, -2.614711156273672, -3.0989896394011773, -7.0, -3.8101652845431495, -7.0, -2.9843022319799033, -3.726808682524964, -7.0, -3.2271150825891253, -2.8950770727239954, -7.0, -7.0, -1.7695355678275353, -2.879996481067212, -3.7194141597025934, -2.6268311208610227, -7.0, -3.1611882569822596, -3.1344958558346736, -2.411353838503502, -2.6578204560156973, -3.3200077330768902, -3.009592521262823, -7.0, -7.0, -2.932060168758189, -3.0001860863337346, -7.0, -2.546679729750976, -2.212415419531334, -2.9206450014067875, -2.283850212395074, -3.1430883098145115, -2.755747850412951, -3.6848453616444123, -7.0, -7.0, -7.0, -7.0, -2.9633155113861114, -7.0, -7.0, -7.0, -7.0, -2.6162770806491906, -7.0, -7.0, -7.0, -7.0, -3.712060142461075, -3.689930104018218, -7.0, -1.5774014253739082, -3.823148059810694, -3.4193774051391275, -7.0, -2.9537596917332287, -7.0, -7.0, -7.0, -3.6977522741677546, -3.694341910364181, -7.0, -3.183459657707637, -3.413020205344915, -3.8698768132667665, -7.0, -7.0, -2.429235339626655, -3.378307034856813, -7.0, -3.1947547791802955, -7.0, -7.0, -2.999855211039865, -3.392169149489736, -3.73870130043471, -7.0, -7.0, -7.0, -7.0, -3.2094077680963755, -7.0, -7.0, -7.0, -7.0, -2.5327543789924976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.183241364422366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.759236033088654, -2.224014811372864, -7.0, -3.73242248205319, -7.0, -7.0, -7.0, -2.6910814921229687, -7.0, -7.0, -2.887473644846725, -2.6532125137753435, -7.0, -7.0, -2.699837725867246, -2.5085297189712867, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0836618478730786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7178368674869255, -7.0, -7.0, -3.137670537236755, -7.0, -2.5728716022004803, -2.5877109650189114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.035389709198677, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8915374576725643, -7.0, -7.0, -3.9216344610537055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.977266212427293, -7.0, -7.0, -7.0, -4.043768215815501, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9232440186302764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5327543789924976, -7.0, -4.066549538761934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0605719396477284, -4.1034273973827675, -7.0, -7.0, -7.0, -4.737876158125802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.960470777534299, -7.0, -7.0, -7.0, -3.8027737252919755, -7.0, -7.0, -2.8627275283179747, -7.0, -7.0, -7.0, -7.0, -7.0, -3.381440002819618, -7.0, -2.214843848047698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5814945422908995, -7.0, -7.0, -3.5252473225368557, -7.0, -7.0, -7.0, -1.9923325590474643, -2.5550944485783194, -7.0, -7.0, -2.9607085516885565, -7.0, -7.0, -7.0, -7.0, -3.0279145829217957, -7.0, -7.0, -7.0, -7.0, -2.9523080096621253, -7.0, -7.0, -7.0, -2.79309160017658, -7.0, -2.629409599102719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.621176281775035, -7.0, -7.0, -7.0, -2.678973375919765, -7.0, -5.14993618427544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4804491980685899, -7.0, -7.0, -2.5327543789924976, -7.0, -7.0, -7.0, -7.0, -3.993171605030765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4450850227193537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.897214590564255, -7.0, -7.0, -7.0, -7.0, -7.0, -3.04493154614916, -3.1983821300082944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7180862947830915, -7.0, -7.0, -2.414137362184477, -7.0, -7.0, -7.0, -7.0, -2.331660850966761, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7657430414210444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9624369880545964, -2.055378331375, -2.735997884091794, -7.0, -4.797527208690113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9589459324939362, -7.0, -4.734318079475221, -7.0, -3.1085650237328344, -4.546666025070184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9182051383496885, -2.113943352306837, -1.8349855478280104, -2.12602311790052, -2.7953585510233854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.572976098995143, -7.0, -3.4437322414015967, -7.0, -7.0, -7.0, -4.544675631413166, -2.88768761434575, -3.2420442393695508, -7.0, -3.541454428747589, -7.0, -7.0, -7.0, -7.0, -2.7151673578484576, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9804578922761005, -5.172842194238305, -2.3560258571931225, -2.189468718289905, -7.0, -7.0, -7.0, -4.94276183005964, -7.0, -4.062092892630169, -7.0, -7.0, -7.0, -4.279370318179108, -7.0, -7.0, -7.0, -4.160678574400385, -7.0, -7.0, -4.60634911432292, -4.564902672529205, -7.0, -4.333527878521092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6910814921229687, -7.0, -7.0, -7.0, -7.0, -7.0, -2.143014800254095, -2.6074550232146687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.741151598851785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.225309281725863, -7.0, -7.0, -7.0, -7.0, -3.4379090355394983, -7.0, -7.0, -7.0, -2.571708831808688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.127410785330337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731024379815688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5856186260679217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.050379756261458, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.629409599102719, -2.6503075231319366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0752731600919394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.582222499269305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.496749807394558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5205177076292187, -7.0, -7.0, -7.0, -3.6429712311818627, -2.7554691280706067, -7.0, -4.500949647254549, -4.0203336548935145, -7.0, -7.0, -2.3475543120201428, -3.39750549689802, -7.0, -4.204730280256104, -2.503868588928999, -7.0, -4.496583734489095, -7.0, -4.497606840516214, -7.0, -4.49793814174857, -3.1114951644986593, -4.497040282255931, -7.0, -7.0, -4.497744913411731, -4.499755794663781, -7.0, -7.0, -7.0, -2.284846834042906, -7.0, -2.8350231169115405, -7.0, -7.0, -4.021630263171184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.667279467298674, -3.1106618462485724, -7.0, -7.0, -4.509619137576773, -7.0, -7.0, -4.1951105670203095, -7.0, -4.501333178645567, -7.0, -4.496749807394558, -7.0, -7.0, -2.543243510293341, -7.0, -7.0, -4.496182129257268, -7.0, -4.0431001811622975, -4.501565871851012, -7.0, -4.50275476578036, -3.086378085628699, -7.0, -4.020568434801363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.501018159848659, -4.49811749111387, -3.725598588011667, -7.0, -4.199192752823317, -4.201383467046534, -2.539846263642648, -4.500263926200883, -7.0, -4.495280628260573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.521870011498159, -7.0, -7.0, -7.0, -4.502372488311689, -7.0, -7.0, -4.497468723709966, -7.0, -4.502631927572243, -7.0, -7.0, -7.0, -4.49882037810471, -2.3982277298043977, -7.0, -4.497869141497094, -7.0, -7.0, -4.205434446574788, -7.0, -3.390240992999803, -2.9065046393767022, -4.496071276220637, -4.500057998579122, -7.0, -3.023399816762231, -7.0, -3.8070070597740875, -3.6630005371638217, -4.500593207431217, -4.195622943586937, -7.0, -4.498131284151583, -7.0, -7.0, -3.242962512642639, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2990712600274095, -3.7493626513079716, -3.625273856727731, -3.9007766472930405, -7.0, -3.079741264799503, -7.0, -7.0, -4.500881123850455, -3.924770174906564, -3.904242052299247, -7.0, -7.0, -7.0, -3.2906213728473426, -7.0, -7.0, -7.0, -7.0, -4.495419442581866, -7.0, -4.027702880532386, -4.500716623555479, -7.0, -7.0, -7.0, -4.497261466106855, -7.0, -2.6952498398147355, -7.0, -7.0, -7.0, -7.0, -7.0, -3.894302213787551, -7.0, -3.561247184547739, -7.0, -2.94873131349413, -7.0, -3.6601469298342457, -2.5490200674618704, -4.496320655774951, -7.0, -4.199412322193509, -4.024362504353283, -3.5029184960299538, -3.427783543301038, -4.022057020601165, -7.0, -4.198340871447986, -7.0, -7.0, -4.210612766352898, -7.0, -7.0, -7.0, -3.4486732001001474, -7.0, -3.198761786685379, -4.495252860071183, -3.901785145303599, -7.0, -4.496334505996817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2644898803209164, -4.19721161702191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.202937636552238, -3.6907781255710885, -2.6286728307087173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.498503530678758, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495544337546448, -7.0, -7.0, -7.0, -2.838592983118509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.507424060094855, -7.0, -4.0482734397251114, -4.212693542421026, -7.0, -7.0, -4.495918807079969, -3.263201951663331, -4.500949647254549, -3.4095829393867487, -3.897214590564255, -7.0, -7.0, -7.0, -7.0, -3.7685764423447066, -4.027499104398127, -4.028882900306921, -3.6091006121488234, -4.21045229296202, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499783276438258, -7.0, -7.0, -7.0, -7.0, -4.495891079666188, -7.0, -7.0, -3.2728468287897403, -3.8049567998574916, -4.499755794663781, -4.497330562965051, -1.580058363422686, -7.0, -7.0, -3.243026230988586, -7.0, -7.0, -7.0, -7.0, -3.8113202523041845, -3.898396045930009, -4.207715133805567, -4.021602716028243, -4.204757384698596, -7.0, -2.287333578528713, -4.029546100423748, -7.0, -7.0, -4.495350040967404, -4.207957342972937, -4.025073633178575, -7.0, -7.0, -4.499357113387459, -7.0, -7.0, -7.0, -7.0, -3.6516379303968227, -7.0, -3.5457330907430338, -7.0, -3.221957309667391, -4.525951341248012, -2.3489462973533097, -4.498351913199365, -4.207365037469072, -3.027454830703138, -3.603617939358176, -7.0, -3.7222910674738463, -7.0, -4.204160695855202, -3.926728200446934, -3.8077649673797778, -7.0, -7.0, -7.0, -7.0, -7.0, -4.497827736083504, -7.0, -4.20710901924425, -7.0, -3.2453178149811928, -7.0, -7.0, -2.568532660960909, -2.5286807375109595, -2.2713556554038865, -7.0, -2.7568995976299173, -4.043401578910881, -2.6747161423005723, -1.7059554726320614, -2.4788898586149566, -7.0, -2.9580026583126315, -2.281986672793383, -2.46013723174059, -2.7163631071361705, -2.5773667285287103, -3.0755035123922543, -2.3736380105588673, -2.6639134136854725, -2.968164434068149, -2.8952950186616295, -3.269512944217916, -2.6548088037201225, -1.439853147684109, -2.285552541544157, -2.883205003706557, -2.993158177701961, -2.5681838490463007, -2.143460916864359, -4.035856484623753, -2.148734210507529, -2.6861162052190437, -2.3281705933368784, -2.602837406048462, -2.537553998479111, -2.937272906875669, -2.6179308015164584, -2.7058946115604905, -2.6885830844691663, -2.3910848271399927, -3.562876579157752, -3.906200314184372, -2.8992668191298856, -2.902062412283037, -3.41604582768641, -4.502153892871361, -2.9726450358936027, -4.204757384698596, -2.776760599965476, -3.247259956560877, -3.611324933588425, -3.309082392097567, -3.017770780394343, -3.327046250042698, -7.0, -3.004285539426262, -4.511883360978874, -4.196935743115919, -3.7554937284151193, -2.7255455311635712, -3.9204494466649153, -7.0, -2.7239025063511586, -2.208779157348013, -2.7606260839609345, -4.019946681678842, -3.615147495697204, -7.0, -2.4561351579216315, -4.252331078830706, -3.450571665931902, -3.590829455194586, -3.5867407023828584, -7.0, -3.949450998777855, -3.1228181332982032, -3.744458148811997, -3.1324331378141674, -3.647162832668712, -3.693111115462141, -2.9321194300820244, -4.051178257654162, -7.0, -2.9439644754792935, -2.410457246805854, -7.0, -2.1284278322668913, -7.0, -3.916256497088509, -3.9429005411402938, -2.467428389499807, -4.498324340697171, -7.0, -7.0, -7.0, -2.8249998911127463, -2.8542101251778975, -7.0, -3.8094519693064504, -4.198821977603206, -3.4102709642521845, -3.179370903847892, -3.729421293380923, -4.197528655522771, -4.019240950395851, -3.2266584788782136, -4.198395881990749, -2.916235045643907, -3.9036325160842376, -4.503627281356413, -4.042299807413626, -2.8467889696388013, -3.9128462051453377, -2.925879089301501, -3.3934267011372112, -3.4608158668890816, -2.868950945128882, -3.6020464194133406, -4.030410798533004, -7.0, -4.498434620204358, -7.0, -3.3473644589859757, -7.0, -7.0, -2.3752622911871337, -2.0509222543479053, -1.9422270456024011, -7.0, -3.7455041870869885, -4.199124114623325, -3.5110406808136645, -7.0, -7.0, -4.496805150920314, -3.5273849773654584, -4.4982967664443425, -3.5471180513494303, -3.0386077448439592, -7.0, -3.0945072711564916, -3.5487032689653533, -3.175551345592731, -7.0, -3.9034698285071703, -4.196259110505376, -4.206407565044267, -2.403412075058249, -4.1982583425666515, -7.0, -7.0, -3.462073403738634, -3.6196381767656955, -3.056305786810995, -4.201888500365973, -3.1908187119380673, -4.023238737632354, -2.3361535020288478, -4.501059262217751, -3.571760576653489, -4.198450885566405, -3.6563035907524855, -1.8469915299921025, -7.0, -2.7941513842532384, -3.804548308388056, -4.197308131503102, -4.022813140401051, -3.154278394368455, -7.0, -4.195346058348419, -3.7666606613741327, -3.725217185813792, -3.8033205235787544, -2.991333857417245, -3.90355117991359, -4.051898224988576, -3.660092651504926, -3.3850220555965733, -2.66421447824638, -3.436785272573282, -3.036668810300097, -7.0, -7.0, -2.11808822309481, -3.062854183849674, -4.497316744472857, -3.4381070451548847, -3.132647219307249, -3.46888415925913, -3.489504162507767, -2.9924668807264574, -3.361940210731115, -7.0, -4.203236924830023, -7.0, -7.0, -4.198986805670933, -3.5060041550265835, -1.6781215307589266, -7.0, -7.0, -7.0, -2.6282346582199416, -4.496334505996817, -4.500881123850455, -7.0, -4.196328202966489, -4.0240202005681205, -7.0, -4.197996897597136, -4.049657265126183, -3.822220400852558, -7.0, -7.0, -3.7263332048395883, -7.0, -7.0, -7.0, -7.0, -4.197308131503102, -4.4990681845107945, -3.7076796483033396, -2.9325752234982905, -3.3265662626752697, -7.0, -7.0, -3.2670151976815847, -7.0, -7.0, -2.942756266786523, -7.0, -7.0, -3.9106110664017573, -2.9279346817411795, -3.8065598154991136, -7.0, -7.0, -7.0, -7.0, -2.915588257481659, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.87727917811011, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557711669173163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.069430221462924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0948901970066505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9474337218870508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.569373909615046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426560055756167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8129133566428557, -7.0, -7.0, -7.0, -4.669874502489803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9821354948037695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.979001748474721, -7.0, -7.0, -7.0, -0.8325089127062363, -7.0, -7.0, -7.0, -2.9355072658247128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.09770838058163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.845098040014257, -7.0, -7.0, -7.0, -7.0, -7.0, -2.799586678381622, -7.0, -4.2567690438832475, -7.0, -7.0, -4.543608690196552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4022355820161305, -4.219060332448861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.570099078991958, -7.0, -7.0, -7.0, -4.046729222266487, -2.6242820958356683, -4.5416042026823655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.810568529216413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.502194887898237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.99943504987633, -7.0, -7.0, -3.031913164461711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.957607287060095, -4.331032303786008, -7.0, -3.2518814545525276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.984707294482673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080821226493627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.147336174036738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.877060201255311, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557254491716343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3698252448806407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669521425079791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8480227595874315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.8325089127062363, -7.0, -7.0, -7.0, -7.0, -2.9159272116971158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.620441446490588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6439952055784817, -7.0, -4.733861444276489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7029558528042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.569654763999852, -7.0, -7.0, -7.0, -4.045244720478147, -2.906335041805091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0993352776859577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9791612522081605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941347423203868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.329499575762843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2425414282983844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.982994454658664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.08068419663977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1461590556048185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.578524605274993, -7.0, -2.624797578960761, -4.275201903149397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557747741641468, -2.3138672203691537, -7.0, -7.0, -7.0, -7.0, -1.9084850188786497, -7.0, -7.0, -7.0, -7.0, -4.334735147131833, -7.0, -7.0, -2.5237464668115646, -7.0, -7.0, -7.0, -2.1335389083702174, -7.0, -7.0, -3.1293675957229854, -3.6970548922725746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9614210940664483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2860071220794747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517736779044113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7737864449811935, -7.0, -7.0, -7.0, -7.0, -7.0, -2.110589710299249, -1.3847117429382825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.205068964264459, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0043213737826426, -7.0, -7.0, -7.0, -7.0, -2.1398790864012365, -7.0, -4.0718083918331285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6748611407378116, -2.595496221825574, -7.0, -7.0, -7.0, -7.0, -2.9070284317165918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2000292665537704, -7.0, -7.0, -7.0, -7.0, -3.493550987970057, -7.0, -7.0, -2.6580113966571126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.850033257689769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.751279103983342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.739572344450092, -7.0, -7.0, -2.494154594018443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.08278537031645, -2.2174839442139063, -2.250420002308894, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1577588860468637, -7.0, -7.0, -7.0, -7.0, -2.3873898263387296, -3.377761438702263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9370161074648142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.089905111439398, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.947139517642829, -7.0, -5.1318767907688745, -7.0, -3.0170333392987803, -4.543645953233247, -7.0, -7.0, -7.0, -7.0, -2.6026025204202563, -7.0, -2.965201701025912, -7.0, -7.0, -7.0, -2.7466341989375787, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7507012003958686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.570134137138968, -7.0, -7.0, -7.0, -7.0, -7.0, -4.541641638096808, -7.0, -7.0, -7.0, -7.0, -3.391552566610928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979348024963666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590507462008583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6348801407665263, -7.0, -4.153296449355305, -7.0, -7.0, -3.9046614579155245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.984842231405276, -7.0, -7.0, -7.0, -3.771954748963949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4149733479708178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639884741916304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.381833194383693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.286231854028553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.267101296559969, -7.0, -7.0, -7.0, -4.310608356458523, -3.0784568180532927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3711558562912662, -7.0, -7.0, -7.0, -3.895753942073728, -1.9311187105921872, -1.6349248811067227, -2.942008053022313, -3.616265405281708, -7.0, -7.0, -2.8392191755333216, -7.0, -7.0, -3.1981069988734014, -2.4600107006492493, -7.0, -7.0, -3.59955559098598, -7.0, -2.495224021995183, -7.0, -3.203739808633858, -3.311435968289161, -7.0, -3.310162065204453, -3.316808752053022, -7.0, -7.0, -7.0, -7.0, -3.1295287738587763, -7.0, -3.3649260337899753, -7.0, -3.0251009610468134, -7.0, -3.60151678365001, -3.6073477767684134, -7.0, -7.0, -7.0, -3.6073477767684134, -7.0, -2.7705083659594516, -7.0, -2.831763159702354, -3.399673721481038, -7.0, -7.0, -7.0, -3.3103746420476123, -3.3433101031623416, -7.0, -7.0, -7.0, -7.0, -3.1607685618611283, -7.0, -7.0, -7.0, -7.0, -3.7652959296980564, -2.946452265013073, -7.0, -7.0, -3.7063550077687095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6422666189026733, -7.0, -7.0, -7.0, -7.0, -7.0, -3.787979711502274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.601951404133522, -7.0, -3.604334073102911, -7.0, -7.0, -7.0, -7.0, -7.0, -0.6128725059078792, -7.0, -7.0, -7.0, -7.0, -3.680335513414563, -7.0, -3.3740147402919116, -4.213198891723608, -7.0, -3.635282637998212, -3.1459211795267192, -1.8620778387246808, -7.0, -7.0, -3.6920533650340808, -7.0, -7.0, -3.311329952303793, -3.018284308426531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1539672216454786, -3.328243652746783, -7.0, -7.0, -7.0, -3.9999565683801928, -7.0, -7.0, -7.0, -7.0, -2.5984257066728684, -7.0, -7.0, -2.5619682391901555, -3.240965040063429, -7.0, -7.0, -7.0, -3.630122642859312, -3.2988530764097064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8705407076999516, -7.0, -7.0, -7.0, -3.6072405038317426, -7.0, -3.6080979463252794, -7.0, -3.1360860973840974, -7.0, -2.8937221420714265, -7.0, -7.0, -2.3664748411615104, -7.0, -7.0, -7.0, -7.0, -3.0549001914148866, -3.384263785722803, -3.6292056571023035, -3.6178387477170033, -3.0277572046905536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.198731369770289, -7.0, -2.6195676066178586, -3.607025878434786, -2.907411360774586, -7.0, -3.300704152596124, -2.8458212616333527, -7.0, -7.0, -7.0, -7.0, -3.622006673006805, -7.0, -7.0, -3.6011905326153335, -7.0, -7.0, -2.8300537573206825, -7.0, -7.0, -2.9492924014120256, -3.060697840353612, -7.0, -5.161014432494907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.623766000133931, -7.0, -3.307923703611882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.651116416049525, -7.0, -7.0, -7.0, -7.0, -3.608312042697327, -3.6097011023793995, -7.0, -3.6203442997544935, -2.643362936950399, -7.0, -7.0, -3.4256157245769305, -7.0, -7.0, -7.0, -7.0, -7.0, -2.488046836084362, -7.0, -3.7685764423447066, -7.0, -7.0, -7.0, -7.0, -3.668012971641832, -2.89835945989891, -2.7168377232995247, -7.0, -7.0, -7.0, -7.0, -7.0, -3.652922887567942, -3.6332664111554247, -7.0, -7.0, -7.0, -7.0, -3.3025473724874854, -7.0, -7.0, -2.577829588204494, -2.884512159190394, -7.0, -7.0, -2.8966639794199422, -7.0, -7.0, -3.277471685042826, -7.0, -7.0, -2.2315715255284156, -7.0, -2.5575072019056577, -2.5953960038761497, -7.0, -7.0, -3.675778341674085, -3.1400888398377713, -3.9969896179397217, -2.9028184680822537, -7.0, -7.0, -3.59955559098598, -7.0, -2.871961914059928, -7.0, -7.0, -3.15259407792747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3350565194390915, -3.608739919068788, -2.990646174872535, -7.0, -3.4344677170621885, -7.0, -3.3919050068671566, -2.2584136227948823, -1.8317677956630702, -3.597804842404293, -2.6372895476781744, -2.911370707116138, -2.590507462008583, -2.5084623812733606, -2.0415762803763062, -3.601734148260105, -3.1212314551496214, -7.0, -2.499785239355606, -7.0, -3.0159881053841304, -7.0, -2.991757539534348, -7.0, -2.307781195166992, -7.0, -7.0, -3.8107316409130148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9818186071706636, -3.315077761428482, -7.0, -7.0, -7.0, -4.6909841851064815, -7.0, -2.7294857138983044, -7.0, -4.450787792072898, -3.841949095456571, -7.0, -4.34609858337099, -7.0, -4.813267329389584, -4.049218022670182, -4.112068504268197, -7.0, -7.0, -4.1853154580036565, -4.504729051621258, -7.0, -3.890365121448124, -7.0, -7.0, -7.0, -3.5752802381801962, -3.30033456800233, -7.0, -7.0, -4.4169565453903425, -7.0, -4.111094410509336, -3.692582562274909, -3.7681728007939364, -3.263945453485738, -3.3617750393741854, -3.6504046698680317, -3.875928984922927, -7.0, -3.4112829130173843, -3.3906702126261803, -2.134765383294081, -2.0764299345734836, -3.098025336873187, -3.3432115901797474, -7.0, -3.1812717715594614, -7.0, -3.619927710291468, -7.0, -3.3266089162548815, -3.778295991088834, -3.651278013998144, -2.888625423907928, -3.3943247011763185, -4.484365334559296, -3.6133131614554594, -2.303350363509127, -3.1397741716810974, -3.3272226637602036, -7.0, -4.057318947932813, -2.396705419573164, -3.5792117802314993, -7.0, -2.9182400902214147, -3.6652369210441833, -2.646076820312336, -3.7237839369653294, -2.79896919886926, -3.256958152560932, -2.548329190632523, -3.206893307827949, -3.6231458746379395, -2.4505272220763104, -3.459640154554527, -7.0, -3.590479585986756, -7.0, -3.151982395457474, -3.1909476791001867, -3.5451833682154064, -7.0, -3.6118294794983736, -7.0, -1.7515870050823101, -7.0, -3.529654887137106, -2.5735045308749096, -2.7381637253943056, -7.0, -7.0, -2.35735333232053, -7.0, -7.0, -7.0, -2.5579080274827057, -3.630834517828051, -2.1170140037193885, -2.829303772831025, -3.660770643527697, -3.2833012287035497, -7.0, -2.3885210126055294, -1.9977548758799546, -7.0, -3.0500896140736904, -7.0, -3.3712526291249394, -1.9887772958912515, -1.2348502205820062, -3.3220124385824006, -3.0015173768235046, -3.244730562948387, -7.0, -7.0, -3.2657740008324536, -3.635419767747034, -3.9920377723523495, -7.0, -3.0853619436861295, -3.1586639808139894, -2.5631419252975927, -2.4127754437448354, -7.0, -3.3096301674258988, -2.9014583213961123, -2.0346917694735853, -3.0436569480416416, -2.210768061785912, -3.126888677692568, -3.4670158184384356, -7.0, -2.851105401197895, -3.5991185650553628, -7.0, -2.658859007527588, -7.0, -3.079422453763852, -7.0, -2.8314431588415765, -7.0, -7.0, -3.229767140261955, -3.664735968518705, -2.118147969798274, -7.0, -3.33665982345442, -2.508770502066406, -3.341335585180992, -2.6500992783512007, -7.0, -7.0, -7.0, -3.612359947967774, -2.322662226421373, -2.4820155764507117, -7.0, -2.855620095698912, -3.0443045191759146, -3.5994463757252757, -2.7031838661780445, -2.0498448336824775, -2.4811558708280352, -7.0, -2.252075943799801, -7.0, -2.2400767855157726, -2.414230329001037, -2.9591368311703743, -2.443210816819927, -2.563639269509036, -2.112474209640226, -7.0, -7.0, -4.35005409357903, -7.0, -3.3135508713335047, -7.0, -3.0431299728634627, -7.0, -2.3808594680117827, -3.2134798091189682, -1.3853156915992284, -3.0088130090520893, -3.3641756327706194, -2.7637487823121547, -7.0, -3.6351820486562674, -2.1678709288089903, -7.0, -3.604118006192035, -7.0, -7.0, -2.6284619145865564, -7.0, -7.0, -7.0, -3.6153186566114788, -3.643551368562945, -7.0, -3.6278776945799716, -3.8013350956745464, -1.928591626251906, -2.504859058705207, -7.0, -2.586399744970328, -7.0, -7.0, -7.0, -3.6267508536833932, -7.0, -3.62797998982998, -3.0791812460476247, -3.243719975783927, -3.5222485612876895, -3.6148972160331345, -7.0, -3.7790912038454993, -7.0, -3.2979792441593623, -3.180622801527713, -7.0, -7.0, -2.87456464300379, -3.3456350782317283, -2.9748799730069306, -7.0, -7.0, -3.6313422864839326, -7.0, -2.823948220466359, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4221519325979415, -3.7096844540272005, -2.8756399370041685, -7.0, -7.0, -1.2235402589870163, -3.2091574233475386, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5660530133297814, -3.1681044568157537, -7.0, -7.0, -3.3892232622307072, -7.0, -2.906335041805091, -7.0, -7.0, -7.0, -7.0, -3.866228247379647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9508514588885464, -7.0, -7.0, -7.0, -3.232859333958687, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5943925503754266, -7.0, -7.0, -7.0, -7.0, -3.271609301378832, -7.0, -7.0, -7.0, -2.926856708949692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4483971034577676, -7.0, -7.0, -7.0, -7.0, -3.107718610520263, -3.0674428427763805, -7.0, -2.796921075330169, -3.387313538406589, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.0351437358812237, -3.030194785356751, -7.0, -2.01949214030342, -1.8738186460006043, -2.413299764081252, -7.0, -7.0, -7.0, -2.582063362911709, -2.1914510144648953, -2.021779774323242, -7.0, -2.2202715717543526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.095518042323151, -2.8819549713396007, -7.0, -7.0, -7.0, -4.080806804334363, -7.0, -7.0, -2.8920946026904804, -7.0, -1.7219283261448037, -7.0, -7.0, -1.9017306917292187, -7.0, -7.0, -7.0, -4.740954505822805, -7.0, -3.1760912590556813, -3.2203696324513946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6864575104691117, -7.0, -7.0, -7.0, -7.0, -7.0, -3.121969981607635, -7.0, -1.3660182950222062, -2.401055725771844, -2.9222062774390163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.617245043616472, -7.0, -7.0, -7.0, -3.003029470553618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.778376381752652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.888010912245029, -7.0, -7.0, -3.277361630267923, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2005769267548483, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2821687783046416, -7.0, -7.0, -7.0, -3.3418300569205104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4432537813307675, -7.0, -7.0, -2.8698182079793284, -7.0, -7.0, -2.8603380065709936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1702617153949575, -3.3161800988934527, -7.0, -7.0, -7.0, -3.3912880485952974, -7.0, -3.4318460456987254, -7.0, -4.027499104398127, -7.0, -7.0, -7.0, -3.668012971641832, -7.0, -2.8739015978644615, -3.2940250940953226, -7.0, -7.0, -2.8698182079793284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1649685903213305, -7.0, -7.0, -3.191311257590993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.230193378869046, -7.0, -3.1702617153949575, -7.0, -3.4093809808881947, -3.1894903136993675, -2.8698182079793284, -7.0, -7.0, -1.4256972133625911, -7.0, -7.0, -7.0, -3.003029470553618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4998244958395794, -2.474653253362063, -4.203423275608664, -7.0, -7.0, -3.6481769831710005, -7.0, -7.0, -7.0, -7.0, -7.0, -3.508798965403905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.959566046637928, -7.0, -7.0, -3.5614762013962973, -7.0, -7.0, -7.0, -7.0, -4.661140380936254, -4.806105323204325, -7.0, -7.0, -4.39750549689802, -4.657036720520181, -7.0, -7.0, -7.0, -4.626148674240376, -3.8998205024270964, -4.186546696952168, -4.091174360706882, -7.0, -4.630529571426824, -3.9808362964839756, -7.0, -3.667155679972336, -4.2354274364449696, -4.285827252753274, -4.249320676637634, -3.890700397698875, -3.8281441073037863, -7.0, -7.0, -7.0, -7.0, -3.9847522781154137, -2.7437709944998567, -3.6742179455767, -3.6154871183986583, -3.7742979384992776, -2.1231253958448315, -3.225309281725863, -3.1702617153949575, -2.3845573271208678, -3.5170638734826545, -3.329397879361043, -7.0, -3.456457134303779, -3.1427022457376155, -7.0, -3.1652443261253107, -3.285782273779395, -7.0, -3.2563568863955257, -7.0, -7.0, -7.0, -3.1079821158913807, -2.6358338724756276, -4.328842487609549, -7.0, -7.0, -7.0, -4.139742692322187, -7.0, -3.990363524302897, -3.3546845539547285, -7.0, -7.0, -7.0, -3.725135413175271, -3.6859655440604007, -7.0, -2.7900211284701975, -3.2979792441593623, -3.569958818096594, -2.803320523578754, -7.0, -3.2676409823459154, -4.092311181205276, -2.8867726430544383, -3.793261408387223, -7.0, -7.0, -7.0, -3.3334069668739175, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2337996156757547, -7.0, -2.5245259366263757, -7.0, -7.0, -4.0124153747624325, -7.0, -7.0, -7.0, -7.0, -7.0, -3.855165680690631, -2.8677620246502005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.044020099261835, -4.745543201998024, -7.0, -7.0, -3.0281644194244697, -7.0, -7.0, -7.0, -7.0, -2.8926510338773004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7264555202583103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8788806869206085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.752125307297898, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.748866082541131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.767897616018091, -3.709439574132411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.981501488148247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6201360549737576, -7.0, -3.467371287647479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7618151176130694, -3.205745540942662, -2.919601023784111, -7.0, -2.7684530982706304, -3.0930713063760633, -7.0, -2.386320573894046, -7.0, -7.0, -7.0, -2.8549130223078554, -2.751086554886017, -7.0, -2.4974825373673704, -2.9311148982994553, -7.0, -7.0, -7.0, -2.99211148778695, -2.667452952889954, -7.0, -3.5662842540845943, -7.0, -2.919601023784111, -7.0, -7.0, -3.056142262059052, -7.0, -2.5189523997656127, -7.0, -3.3498600821923312, -2.932980821923198, -3.172622388412072, -7.0, -3.035829825252828, -3.028977705208778, -7.0, -2.949877704036875, -7.0, -2.3349561161368517, -7.0, -7.0, -2.7151673578484576, -2.7554937284151193, -7.0, -7.0, -2.792391689498254, -2.497390438017666, -7.0, -2.9434945159061026, -7.0, -7.0, -3.247236549506764, -7.0, -7.0, -7.0, -3.209055200331437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1555637545804265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0081741840064264, -7.0, -2.394889257167419, -3.0696680969115957, -7.0, -2.924253434430462, -3.070037866607755, -2.9459607035775686, -2.910624404889201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1441069730493227, -7.0, -7.0, -7.0, -2.8218409272004545, -7.0, -7.0, -7.0, -7.0, -3.129689892199301, -2.936513742478893, -7.0, -7.0, -7.0, -3.0045005012266763, -7.0, -3.000434077479319, -2.9454685851318194, -3.0637085593914173, -3.2127201544178425, -7.0, -3.2946866242794433, -2.8884107740313127, -7.0, -7.0, -3.0187004986662433, -3.9635281171363457, -7.0, -7.0, -2.944729360303296, -2.7770641547424293, -7.0, -7.0, -3.0086001717619175, -7.0, -7.0, -2.6893976628212823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.208441356438567, -2.6723617865259754, -2.3550682063488506, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5020172148271476, -7.0, -7.0, -2.461898521729004, -7.0, -3.7969557343208025, -7.0, -7.0, -2.961421094066448, -7.0, -7.0, -7.0, -3.179838928023187, -2.6035052322021435, -3.052693941924968, -7.0, -3.0989896394011773, -7.0, -7.0, -2.9129784850676734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.064083435963596, -7.0, -3.8937062930647133, -7.0, -7.0, -3.0324355992428838, -7.0, -7.0, -7.0, -3.1031192535457137, -3.1420764610732848, -7.0, -3.041392685158225, -2.693726948923647, -7.0, -2.9804578922761, -2.962369335670021, -7.0, -7.0, -7.0, -7.0, -3.1035105098621796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.024895960107485, -2.9180303367848803, -7.0, -7.0, -7.0, -3.0128372247051725, -7.0, -7.0, -7.0, -7.0, -2.911157608739977, -7.0, -7.0, -2.462896900288001, -7.0, -2.859138297294531, -3.5900612308037427, -4.4524488813344085, -7.0, -2.929418925714293, -2.9258275746247424, -3.1085650237328344, -7.0, -7.0, -2.7180862947830917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.315004172684897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0086001717619175, -7.0, -7.0, -2.9132839017604186, -7.0, -7.0, -3.0881360887005513, -2.7856461456452184, -3.04493154614916, -4.028882900306921, -2.9355072658247128, -2.9159272116971158, -2.9370161074648142, -2.89835945989891, -2.8739015978644615, -7.0, -2.53571596998551, -3.302114376956201, -7.0, -2.9258275746247424, -7.0, -2.979092900638326, -2.8251014115980033, -3.0569048513364727, -7.0, -3.0132586652835167, -7.0, -7.0, -7.0, -2.9894498176666917, -7.0, -3.0415242696106493, -7.0, -7.0, -7.0, -3.9147238574785934, -2.9894498176666917, -7.0, -3.02201573981772, -7.0, -2.921686475483602, -2.359076226059263, -7.0, -2.680335513414563, -3.0773679052841567, -2.7774268223893115, -7.0, -7.0, -7.0, -3.738380674663982, -2.9156636035057732, -7.0, -7.0, -7.0, -2.958324931644053, -2.6421346345582744, -7.0, -7.0, -3.04493154614916, -7.0, -7.0, -7.0, -3.0068937079479006, -2.3640817414110704, -2.9258275746247424, -7.0, -7.0, -3.1361314474057442, -2.6450009650490482, -3.9288373482799925, -7.0, -7.0, -3.2969940766702086, -2.9190780923760737, -7.0, -7.0, -7.0, -7.0, -3.2210228052048415, -2.261130643344097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7664128471123997, -7.0, -2.873320601815399, -7.0, -7.0, -7.0, -4.752232887721093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6241471761742603, -7.0, -7.0, -7.0, -4.662105900888295, -4.806797047853278, -3.9272163305912646, -7.0, -7.0, -4.658011396657113, -7.0, -7.0, -7.0, -5.1036327052097405, -7.0, -4.7893691535914815, -7.0, -7.0, -4.631565516754539, -7.0, -7.0, -4.408536744878563, -7.0, -4.588025069632833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5120169694961265, -3.2477278329097232, -3.73340364069255, -3.617629297757842, -3.4805099729419604, -2.6398183918310933, -3.597329464234929, -7.0, -3.319877289829984, -3.5237464668115646, -7.0, -7.0, -3.681512586638962, -3.2756951764686093, -7.0, -3.7752462597402365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6666864241923705, -3.6602825959861374, -7.0, -7.0, -3.402433346219312, -7.0, -4.617974836042385, -7.0, -3.831126207699967, -7.0, -7.0, -7.0, -3.7113009599161657, -7.0, -7.0, -7.0, -3.7032053706954864, -3.13268651460904, -4.175163774491954, -7.0, -7.0, -3.569990699550751, -4.570671341310066, -7.0, -4.63949645003697, -7.0, -7.0, -3.663795122219408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1710574719371976, -7.0, -2.7730546933642626, -7.0, -3.4761067168401913, -7.0, -7.0, -7.0, -7.0, -3.8228216453031045, -7.0, -4.333396889383647, -3.1983821300082944, -7.0, -7.0, -3.489606966267722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.103461622094705, -3.0178677189635055, -7.0, -7.0, -7.0, -2.940516484932567, -7.0, -3.7439113406021054, -4.144231618090547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9656719712201065, -3.2081725266671217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.929929560084588, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1478617484872387, -7.0, -7.0, -7.0, -7.0, -3.7030978374585235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1855421548543754, -7.0, -3.124178055474675, -7.0, -7.0, -2.8243862023187742, -2.711526041280055, -3.775391971696612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6268123931797867, -7.0, -7.0, -4.29569901748951, -3.5037226064864795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.692347443107278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.501196242027089, -7.0, -2.6503075231319366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5864747785713966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292388998301932, -7.0, -7.0, -7.0, -3.5434471800817002, -7.0, -7.0, -7.0, -7.0, -7.0, -3.62283547952152, -7.0, -7.0, -7.0, -7.0, -3.114610984232173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1917676303072247, -7.0, -7.0, -3.1152775913959014, -3.111598524880394, -2.5867480056844685, -7.0, -3.229169702539101, -7.0, -3.28668096935493, -7.0, -2.2373697070918968, -3.698448538015329, -7.0, -2.833784374656479, -1.7653912419080031, -7.0, -2.437750562820388, -7.0, -2.2029119304669567, -2.187520720836463, -7.0, -3.173500945013356, -1.7549214096651689, -7.0, -7.0, -2.6866362692622934, -3.2062860444124324, -7.0, -7.0, -7.0, -2.8296253533580495, -7.0, -3.181672122068266, -7.0, -2.8904210188009145, -2.885643871835764, -7.0, -7.0, -7.0, -2.8257505813480277, -7.0, -2.6554585929400747, -3.105510184769974, -2.445816416559962, -3.132579847659737, -2.5406422544096534, -2.8902346663063563, -7.0, -3.125481265700594, -3.129689892199301, -7.0, -2.934750874663579, -2.8717674683517753, -7.0, -7.0, -7.0, -2.9251646981563364, -7.0, -7.0, -7.0, -3.1075491297446862, -7.0, -2.236033147117636, -7.0, -7.0, -3.343580898698759, -7.0, -2.561101383649056, -7.0, -7.0, -7.0, -7.0, -3.1245042248342823, -7.0, -2.928907690243953, -3.172894697752176, -2.677606952720493, -3.1670217957902564, -1.5814528920040938, -7.0, -3.0274005783143263, -3.2161659022859928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1075491297446862, -7.0, -7.0, -7.0, -7.0, -2.6515202982342205, -7.0, -2.2098499890921364, -7.0, -3.1248301494138593, -2.41161970596323, -7.0, -7.0, -2.612518962242537, -7.0, -2.684258267110064, -7.0, -7.0, -3.130976691605617, -3.2116544005531824, -7.0, -7.0, -2.94507448847873, -3.3566631199368167, -3.127428777851599, -3.2121876044039577, -3.180125875164054, -3.364871360852042, -3.1344958558346736, -1.9650733570910066, -2.7456602257060756, -2.920905604164024, -7.0, -7.0, -2.4718781993072905, -7.0, -7.0, -3.4101020766428607, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9230218541705404, -2.965906915495192, -2.9740509027928774, -7.0, -7.0, -7.0, -7.0, -7.0, -2.926342446625655, -7.0, -2.5407464642438433, -7.0, -7.0, -2.524396122103842, -2.834085909892286, -7.0, -7.0, -7.0, -3.1983821300082944, -2.507855871695831, -7.0, -3.2973227142053023, -7.0, -3.2038484637462346, -3.1734776434529945, -2.7589118923979736, -7.0, -7.0, -2.722857464681718, -7.0, -7.0, -7.0, -3.1335389083702174, -7.0, -2.8344207036815328, -7.0, -2.665893545534433, -7.0, -3.91902576458736, -7.0, -3.3057811512549824, -2.4224256763712044, -7.0, -7.0, -2.741939077729199, -2.9385197251764916, -2.567966906823154, -2.856326019777088, -2.717670503002262, -7.0, -3.1992064791616577, -7.0, -7.0, -3.395675785269936, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8092903011763157, -3.1078880251827985, -7.0, -7.0, -7.0, -3.1082266563749283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1152775913959014, -7.0, -7.0, -2.535610545908793, -7.0, -2.6503075231319366, -3.2477278329097232, -2.0450927670230357, -7.0, -4.249748522900275, -2.807873132003332, -3.12057393120585, -2.8165726960261033, -2.543074235033532, -7.0, -7.0, -3.1809855807867304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1658376246901283, -3.255071396286606, -7.0, -3.1051694279993316, -7.0, -7.0, -3.1367205671564067, -7.0, -7.0, -2.8698182079793284, -2.8587376566001557, -3.1280760126687155, -3.5482665451707454, -2.3392857748989755, -7.0, -7.0, -7.0, -3.1806992012960347, -2.927626962444954, -2.661011336773302, -3.1983821300082944, -3.6091006121488234, -7.0, -7.0, -7.0, -2.7168377232995247, -3.2940250940953226, -2.53571596998551, -7.0, -3.3935752032695876, -7.0, -7.0, -7.0, -7.0, -2.6539357353944397, -2.358478734963716, -7.0, -7.0, -2.6925531793391446, -7.0, -3.1231980750319988, -7.0, -2.353467413965482, -2.191381141649701, -2.582744965691277, -3.2062860444124324, -7.0, -3.577115624428775, -3.1601682929585118, -7.0, -3.1325158349126387, -3.1152775913959014, -7.0, -1.6343092970463176, -7.0, -2.900913067737669, -2.919862253555538, -2.576149311961716, -2.582915199370299, -7.0, -7.0, -3.7593106494104322, -1.5308289376514321, -3.118264726089479, -7.0, -7.0, -2.65915528094063, -1.7323937598229684, -7.0, -7.0, -1.9336559786575473, -3.110589710299249, -7.0, -7.0, -3.1720188094245563, -2.8447877188278463, -2.8165726960261033, -2.7366620446156418, -7.0, -3.0988599540923243, -3.55303301620244, -4.092347357161475, -7.0, -2.393867559040913, -3.1598438024418076, -1.5182981413731227, -7.0, -3.22219604630172, -3.1451964061141817, -3.3027637084729817, -2.3455466988249936, -1.5819346385669724, -7.0, -7.0, -7.0, -2.4656306657101514, -7.0, -2.688419822002711, -7.0, -2.500079576528447, -2.6570558528571038, -2.1722982700385423, -7.0, -7.0, -3.6749631476629787, -7.0, -7.0, -7.0, -3.9685607721330167, -7.0, -3.3071393278464214, -3.513084360465144, -3.3102211247655564, -7.0, -4.073828284401109, -4.587318014514068, -4.666527340248891, -4.809970248652032, -3.9351880613401717, -7.0, -4.407339907995509, -4.6624745037503095, -7.0, -7.0, -7.0, -4.804200788288911, -3.930031614950973, -3.3943956392128856, -4.110858956731867, -7.0, -4.335257256434532, -4.466585904594887, -7.0, -3.634183274561929, -3.948559662108962, -3.8942052591420837, -4.263091379851672, -7.0, -7.0, -7.0, -4.091103944090286, -4.369790824030776, -3.8056027932561345, -7.0, -7.0, -3.6295681544737826, -2.9105012648245125, -2.8588712445685736, -3.2511513431753545, -7.0, -3.3121773564397787, -3.1756567472816637, -3.854427505787861, -3.4324882557705063, -4.108192805135042, -2.7562556487542333, -2.832366963209335, -7.0, -3.330819466495837, -7.0, -7.0, -3.6214878645806303, -3.73814608871206, -7.0, -7.0, -3.0727827856185654, -3.4793728345396158, -4.874600667081689, -7.0, -2.629700778786374, -7.0, -3.719631625379967, -7.0, -7.0, -7.0, -4.09684052033139, -7.0, -3.448087666692341, -4.049024097915049, -7.0, -7.0, -2.837667336315827, -3.657629431388952, -2.95724097214691, -2.97231857308512, -7.0, -2.5931805404783503, -4.275069372441866, -7.0, -4.16699223083011, -7.0, -7.0, -3.705949194910296, -7.0, -3.1772478362556233, -7.0, -7.0, -7.0, -7.0, -3.5585885831081994, -7.0, -2.1160996371702, -7.0, -2.8394780473741985, -3.2573585347059146, -7.0, -2.481442628502305, -7.0, -3.250053869521799, -7.0, -3.8609067095817995, -2.6108730003800518, -7.0, -7.0, -7.0, -7.0, -3.5803546611065915, -7.0, -3.256958152560932, -3.61394747678035, -7.0, -7.0, -2.9387698227831174, -2.272421826371504, -7.0, -3.5944478006117335, -7.0, -7.0, -7.0, -3.2362561929560214, -4.050951735479182, -7.0, -3.230959555748569, -2.433769833924866, -7.0, -2.5667320289862197, -7.0, -3.144262773761991, -2.9656719712201065, -7.0, -3.240798771117331, -3.7024305364455254, -2.823474229170301, -2.7431532888962975, -7.0, -3.0, -7.0, -7.0, -3.1556396337597765, -3.3372595397502756, -7.0, -7.0, -2.8419848045901137, -3.1562461903973444, -7.0, -3.096678327496078, -7.0, -7.0, -3.457503426573305, -3.219060332448861, -2.9506511583497743, -2.929674317948588, -7.0, -7.0, -7.0, -7.0, -3.1486026548060932, -3.7939998009844706, -7.0, -2.876506504265881, -3.210853365314893, -7.0, -7.0, -2.8334658601706924, -2.3592316365035417, -2.7965743332104296, -2.7774268223893115, -3.3249680031620703, -3.0088130090520893, -2.802203410722948, -2.8269382114979367, -3.507180977260241, -7.0, -7.0, -3.130655349022031, -7.0, -7.0, -3.8173008783933216, -7.0, -2.854002233126989, -7.0, -3.733297598821213, -7.0, -3.5293875730556277, -3.828702851333031, -3.358379073147656, -2.8444771757456815, -7.0, -3.1420764610732848, -7.0, -2.510813010512496, -3.017450729510536, -7.0, -2.822494985278751, -7.0, -7.0, -3.1412216625781246, -2.8318697742805017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.259952059922254, -7.0, -1.971422347131096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4565178578052627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7004873811595234, -7.0, -7.0, -7.0, -7.0, -3.30941722577814, -7.0, -7.0, -7.0, -7.0, -3.668944734457734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1152775913959014, -4.367775101747835, -7.0, -7.0, -7.0, -2.929674317948588, -3.7297315952870354, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1765253365349997, -2.993083360698062, -7.0, -2.9962927185413215, -3.158948212402123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6679896519391977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4220971631317103, -7.0, -2.95820062484609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.00774777800074, -7.0, -7.0, -3.355834495884936, -7.0, -3.103803720955957, -7.0, -7.0, -3.2195845262142546, -7.0, -7.0, -7.0, -7.0, -3.0691869251519095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2460059040760294, -3.203527358754229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.040385381112445, -3.1986570869544226, -3.1099158630237933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9014583213961123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.660549282517093, -7.0, -2.765668554759014, -3.103461622094705, -7.0, -7.0, -7.0, -4.0987129305788805, -7.0, -7.0, -7.0, -7.0, -3.3089910290001643, -7.0, -7.0, -3.4338338136659807, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3025473724874854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4073484078239042, -7.0, -7.0, -7.0, -7.0, -7.0, -2.918180171004722, -7.0, -2.869349080759093, -7.0, -7.0, -3.5589484459780394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4126285205443754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.185825359612962, -7.0, -2.9188163903603797, -7.0, -7.0, -3.2177789568624706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6881972780665557, -3.0775949873713713, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0195316845312554, -2.875928984922927, -7.0, -7.0, -7.0, -3.1212314551496214, -7.0, -7.0, -3.094471128641645, -7.0, -3.9685296443748395, -7.0, -3.5005109105263372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8303411630372226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2389238459924155, -3.4112829130173843, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8678356276470556, -7.0, -4.21045229296202, -7.0, -7.0, -7.0, -7.0, -7.0, -3.302114376956201, -3.3935752032695876, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2415464805965484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.714801107435411, -3.140193678578631, -7.0, -2.8725447293769673, -7.0, -7.0, -7.0, -7.0, -3.36679638328673, -7.0, -3.042181594515766, -7.0, -2.5974757898703773, -7.0, -3.5829203569251127, -3.3126004392612596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.698622429702098, -7.0, -3.5423928634933244, -7.0, -3.3384564936046046, -3.4781334281005174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.229937685907934, -7.0, -7.0, -3.110589710299249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.114260605446002, -7.0, -7.0, -7.0, -4.2855348061200305, -7.0, -4.809532780808976, -7.0, -3.4555626483622643, -4.406233511374323, -4.66185999172781, -7.0, -7.0, -7.0, -2.6215087658759972, -7.0, -4.491172524399044, -7.0, -7.0, -4.635654616118119, -7.0, -7.0, -4.235848158468363, -7.0, -4.592543142904612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.006979190574277, -3.3372595397502756, -3.9811274432111134, -4.325166609792962, -7.0, -3.2350231594952237, -3.6119002460753435, -7.0, -2.9865659734610817, -3.004628404182071, -7.0, -7.0, -3.5685537120494426, -3.3057095504829292, -7.0, -3.803798407989674, -7.0, -7.0, -2.6127838567197355, -3.611431202502372, -7.0, -7.0, -3.7711463488149852, -3.507126940370548, -2.5157571700194685, -7.0, -7.0, -7.0, -4.321142565229448, -7.0, -4.345089336334675, -7.0, -7.0, -7.0, -7.0, -3.267953536862395, -7.0, -7.0, -3.25927524755698, -2.8722534194843883, -3.8856721269011203, -3.089905111439398, -7.0, -3.5742733523184973, -3.973243342094437, -7.0, -4.166351161976156, -7.0, -3.4667193716815987, -3.0977777345392834, -7.0, -7.0, -3.1264561134318045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0333031013725735, -7.0, -7.0, -7.0, -7.0, -7.0, -4.638509224058013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.560743301054712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1354506993455136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.385924282316242, -3.2143138974243994, -7.0, -7.0, -7.0, -7.0, -3.1280760126687155, -7.0, -7.0, -7.0, -3.1931245983544616, -7.0, -7.0, -7.0, -3.3984608496082234, -3.2593549273080344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.831613855309099, -7.0, -7.0, -7.0, -7.0, -3.1942367487238292, -7.0, -7.0, -7.0, -7.0, -7.0, -3.88024177589548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576064788225377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3929606147967957, -7.0, -7.0, -7.0, -2.2528530309798933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4218506150229584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040127441781456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2005769267548483, -4.093841766912128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6662370958958044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.769488101355888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426316028957644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.88930170250631, -7.0, -7.0, -7.0, -7.0, -3.766375662773843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.909983694939844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.848047409150086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6796549786993333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.796567395543485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.368286884902131, -5.432857096997329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.720159303405957, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3475251599986895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.395291438384484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.240174695019277, -7.0, -7.0, -7.0, -7.0, -3.6898414091375047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.134044986160437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.100198171834132, -7.0, -4.126196367920531, -7.0, -2.9429995933660407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.928907690243953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.850033257689769, -7.0, -3.41791434273266, -7.0, -7.0, -7.0, -4.400025397957946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03322264667025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.217659381292399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024608796126557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.215743282637605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040272604708435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.307923703611882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.621176281775035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7931265661185423, -7.0, -7.0, -7.0, -7.0, -7.0, -2.926856708949692, -2.7007037171450192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.406028944963615, -7.0, -7.0, -7.0, -7.0, -7.0, -2.665580991017953, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0709977969934235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4264055213720175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.715306800611545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.848081300014507, -1.7781512503836436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8494194137968996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8698182079793284, -2.9258275746247424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097642484061715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.569876978316741, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5411422337216347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.502108338302493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6326597132939136, -3.521007252408604, -7.0, -3.4034637013453173, -7.0, -7.0, -7.0, -2.948412965778601, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.16345955176999, -7.0, -4.0327396052094935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2151085810530935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.03342375548695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9542425094393248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3738311450738303, -7.0, -7.0, -4.250102705064626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.187238619831479, -7.0, -7.0, -7.0, -7.0, -3.669307580798836, -7.0, -7.0, -2.3085644135612386, -7.0, -7.0, -7.0, -7.0, -2.3201462861110542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.330413773349191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6652682113991735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9606293081007256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6201360549737576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9947569445876283, -7.0, -3.999021736456061, -3.721645766289746, -7.0, -7.0, -7.0, -7.0, -3.2935098730581442, -3.1631613749770184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.241795431295199, -7.0, -4.609722437865238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9978230807457253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.255272505103306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3816673037420495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0569048513364727, -3.5822906827189938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357868173870295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.912753303671323, -7.0, -3.9012948171655673, -7.0, -2.2576785748691846, -7.0, -3.9234685360935613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5378190950732744, -7.0, -7.0, -1.9319661147281728, -7.0, -7.0, -7.0, -4.035429738184548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3873898263387296, -7.0, -3.005008820672367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1492191126553797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3654879848909, -7.0, -7.0, -7.0, -7.0, -7.0, -4.218640521413849, -7.0, -2.5378190950732744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.217839130778947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6394864892685859, -7.0, -7.0, -7.0, -7.0, -2.5434471800817002, -2.3364597338485296, -7.0, -2.2422100322640643, -7.0, -3.759592308645975, -7.0, -7.0, -2.3710678622717363, -2.2278867046136734, -7.0, -7.0, -2.8180938691466357, -7.0, -7.0, -7.0, -2.598790506763115, -7.0, -7.0, -7.0, -2.568983532526376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9708116108725178, -2.05307844348342, -7.0, -7.0, -7.0, -7.0, -7.0, -3.597768293321006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6830470382388496, -7.0, -2.7846172926328756, -2.187520720836463, -7.0, -3.4727970660562555, -1.4382031886892928, -7.0, -7.0, -2.385606273598312, -2.002166061756508, -7.0, -7.0, -2.6198756085000428, -7.0, -7.0, -7.0, -7.0, -2.818160816145953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.900913067737669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9344984512435677, -7.0, -2.05307844348342, -2.5118833609788744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2671717284030137, -7.0, -2.1958996524092336, -7.0, -2.2380461031287955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.424881636631067, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7052933977148914, -7.0, -7.0, -7.0, -3.2826221128780624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.979092900638326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.2511165453321484, -1.6334684555795866, -7.0, -7.0, -1.8536982117761742, -7.0, -7.0, -7.0, -7.0, -2.821513528404773, -7.0, -7.0, -2.015639134307175, -4.30583484408832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.796986925047644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2922560713564764, -7.0, -7.0, -7.0, -7.0, -5.4330510138807, -7.0, -2.7505083948513462, -4.544737582325772, -7.0, -7.0, -2.741151598851785, -7.0, -7.0, -7.0, -3.004751155591001, -7.0, -7.0, -7.0, -2.8102325179950842, -1.7283537820212285, -7.0, -1.7634279935629373, -7.0, -7.0, -2.8926510338773004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.704064679408567, -4.221440320811741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3479151865016914, -4.093993363295885, -2.6576858792288287, -2.499525364321282, -7.0, -7.0, -7.0, -7.0, -2.66500337566178, -7.0, -7.0, -7.0, -3.7004441010277516, -7.0, -7.0, -7.0, -2.5599066250361124, -7.0, -7.0, -7.0, -7.0, -2.77232170672292, -7.0, -7.0, -7.0, -2.9724342769573653, -7.0, -4.133985746268579, -7.0, -7.0, -2.644219691034826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.553731361029655, -7.0, -2.113943352306837, -4.002544014335011, -4.563053700270299, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.456366033129043, -7.0, -7.0, -7.0, -3.9887372752888, -2.525044807036845, -7.0, -7.0, -3.3703280077795106, -3.6876627068858356, -7.0, -2.6085260335771943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1280760126687155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.59659709562646, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163598630910796, -7.0, -7.0, -7.0, -2.0119931146592567, -7.0, -7.0, -7.0, -2.4424797690644486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7315887651867388, -3.93492748380264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7058637122839193, -7.0, -7.0, -7.0, -2.994537104298498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.269162565431745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4065401804339555, -7.0, -7.0, -7.0, -1.9807606420143298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1598678470925665, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -2.756636108245848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2819324789996647, -7.0, -7.0, -7.0, -7.0, -3.3709754493589705, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9667672920577095, -7.0, -7.0, -7.0, -3.1804871588298704, -7.0, -7.0, -7.0, -2.5556988947189017, -7.0, -7.0, -4.262356151598692, -7.0, -7.0, -7.0, -7.0, -2.9429995933660407, -7.0, -1.6434526764861874, -2.7371926427047373, -2.818005830532529, -7.0, -3.3023702901274774, -2.444044795918076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7993405494535817, -7.0, -2.454925054724259, -2.7965743332104296, -2.8221680793680175, -3.204933522354145, -7.0, -7.0, -2.7902851640332416, -2.346352974450639, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4422053085873574, -7.0, -7.0, -7.0, -7.0, -3.381295623003826, -3.0038911662369103, -7.0, -7.0, -4.228656958108935, -2.4616485680634552, -2.011630850368626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2837533833325265, -2.5774917998372255, -1.9841521129041246, -7.0, -2.658488381309017, -7.0, -3.678687433531933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.9289177202554291, -2.4409090820652177, -7.0, -7.0, -2.7795964912578244, -1.9481683617271317, -7.0, -7.0, -1.835446654338076, -7.0, -3.375773316604984, -7.0, -7.0, -2.79309160017658, -2.3478177127089124, -7.0, -7.0, -2.416996924659806, -7.0, -2.482873583608754, -7.0, -7.0, -7.0, -7.0, -3.127428777851599, -2.328088228398017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7113009599161657, -7.0, -7.0, -3.044539760392411, -7.0, -7.0, -7.0, -7.0, -1.7928584219256614, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9741218253833677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9978230807457256, -2.3629848397370954, -7.0, -2.838130320707927, -1.916829798406272, -7.0, -7.0, -2.496237545166735, -7.0, -2.197969367916172, -7.0, -1.888006588777431, -7.0, -7.0, -7.0, -7.0, -1.9318626317634804, -7.0, -7.0, -1.8095597146352678, -2.7011360660925265, -2.749736315569061, -3.1547282074401557, -2.9237619608287004, -7.0, -2.929929560084588, -2.8419848045901137, -2.514547752660286, -3.244524511570084, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3979400086720375, -7.0, -7.0, -7.0, -2.798650645445269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7520484478194387, -2.75815462196739, -7.0, -7.0, -7.0, -7.0, -7.0, -2.714329759745233, -3.074450718954591, -7.0, -5.150642863909234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7732987475892317, -3.702085721435825, -7.0, -7.0, -7.0, -2.294466226161593, -2.1993437186893927, -1.6840162914303594, -7.0, -7.0, -7.0, -7.0, -7.0, -2.018423082826786, -7.0, -7.0, -7.0, -3.362293937964231, -7.0, -3.7200765727681406, -7.0, -7.0, -7.0, -7.0, -7.0, -3.652922887567942, -7.0, -2.8251014115980033, -2.6539357353944397, -3.2415464805965484, -7.0, -7.0, -1.9606293081007256, -1.2511165453321484, -7.0, -1.6974344889524329, -2.7315887651867388, -2.886490725172482, -2.5734518220354854, -7.0, -7.0, -2.5520595341878844, -7.0, -2.223293990490537, -3.0755469613925306, -2.9429995933660407, -2.5434471800817002, -3.610819800835439, -7.0, -2.7535830588929064, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2203696324513946, -7.0, -7.0, -7.0, -3.1209028176145273, -7.0, -4.622224387866044, -2.2935203938852355, -7.0, -7.0, -7.0, -3.1925674533365456, -2.242624237809914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.255754786643044, -7.0, -7.0, -7.0, -4.5885518064856425, -7.0, -1.9403992822650356, -3.8504256629406837, -7.0, -7.0, -2.4927603890268375, -7.0, -2.3246253644997976, -3.1855421548543754, -2.666829861704301, -7.0, -7.0, -7.0, -2.409087369447835, -1.7265049308598654, -2.8674674878590514, -2.1889284837608534, -2.570834706424214, -2.500373714353374, -2.087491016941548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9268738405440184, -4.435159270818, -7.0, -7.0, -7.0, -4.659631011607001, -4.202924027637802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.625603941040815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.58508831746747, -7.0, -4.187323269375047, -3.817763632280368, -7.0, -7.0, -7.0, -4.395169074827421, -7.0, -2.219526313697325, -3.575430335305532, -2.2381319193582705, -1.8703114792547921, -7.0, -7.0, -7.0, -3.769241895684789, -2.4826694498884723, -2.389609016051986, -7.0, -4.1508178199016665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.384235177015444, -3.83525560640304, -4.872476774544123, -2.534026106056135, -2.5749952958303357, -2.859738566197147, -3.573631005995515, -7.0, -4.943899931943058, -2.596996722507111, -4.070665753453728, -2.81888541459401, -7.0, -4.019697730980192, -3.6823933026828906, -7.0, -7.0, -3.5814945422908995, -3.0876927048111944, -7.0, -2.412740466538526, -3.2659428694809183, -4.090446171178625, -3.1411360901207392, -4.335838869579954, -7.0, -7.0, -3.3372595397502756, -4.026247181477774, -7.0, -2.8273692730538253, -7.0, -7.0, -7.0, -3.5283166683311595, -2.2522460504731185, -3.182414652434554, -7.0, -3.436480695009495, -3.704536575469313, -7.0, -2.59659709562646, -7.0, -7.0, -7.0, -4.330758636678257, -2.8182258936139557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0318122713303706, -3.227629649571009, -7.0, -7.0, -7.0, -2.8926510338773004, -7.0, -7.0, -7.0, -7.0, -7.0, -3.212700441984192, -7.0, -7.0, -7.0, -2.255272505103306, -7.0, -2.8750612633917, -7.0, -2.821513528404773, -3.1715802019320636, -7.0, -7.0, -7.0, -7.0, -7.0, -2.749736315569061, -3.356599435724971, -7.0, -7.0, -2.5428254269591797, -2.857633985150008, -7.0, -7.0, -2.82020145948564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9661417327390325, -3.605208046467365, -2.382917135087531, -3.4566696294237573, -2.9339931638312424, -7.0, -3.9419584165308135, -2.8305886686851442, -7.0, -7.0, -7.0, -2.649334858712142, -7.0, -7.0, -2.499687082618404, -2.5563025007672873, -3.0610753236297916, -7.0, -3.2717641852898542, -7.0, -3.4891143693789193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.845098040014257, -7.0, -7.0, -7.0, -7.0, -3.9888486871264353, -7.0, -7.0, -7.0, -7.0, -7.0, -2.250420002308894, -2.8296253533580495, -7.0, -7.0, -2.8305886686851442, -2.437750562820388, -3.3163897510731957, -2.798650645445269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3508938095043144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3971575742021414, -7.0, -7.0, -7.0, -7.0, -2.9361785093615893, -7.0, -7.0, -3.985493836151524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.632457292184724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9614210940664483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8824486388840995, -7.0, -7.0, -7.0, -7.0, -3.3521825181113627, -7.0, -7.0, -7.0, -3.002166061756508, -7.0, -3.911370707116138, -3.6089536992758626, -7.0, -7.0, -3.322173335214124, -7.0, -7.0, -7.0, -2.717670503002262, -2.673941998634088, -7.0, -4.0838727351483755, -7.0, -7.0, -7.0, -7.0, -2.8312296938670634, -7.0, -7.0, -7.0, -2.948412965778601, -7.0, -3.385665843515682, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6344772701607315, -7.0, -2.764840064462161, -7.0, -2.667452952889954, -3.1473671077937864, -7.0, -2.304275050477128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.922439985497939, -7.0, -2.7259116322950483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.747411807886423, -7.0, -7.0, -2.8536982117761744, -7.0, -3.67609236517432, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.236033147117636, -7.0, -2.5809249756756194, -7.0, -7.0, -2.6464037262230695, -7.0, -7.0, -1.761551988564182, -7.0, -3.5904331219738412, -7.0, -7.0, -7.0, -2.541579243946581, -7.0, -2.60422605308447, -2.6372394877989302, -7.0, -7.0, -7.0, -7.0, -4.136014661495803, -7.0, -3.0576661039098294, -2.813247300897605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.694166295933198, -7.0, -7.0, -7.0, -7.0, -3.8048887446223913, -7.0, -2.575187844927661, -2.0969100130080562, -7.0, -2.7641761323903307, -7.0, -7.0, -7.0, -3.4795393214049737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8739015978644615, -1.972467329545524, -7.0, -1.7092699609758308, -2.3935752032695876, -7.0, -3.331532567271932, -7.0, -7.0, -7.0, -1.5713911715615105, -2.591064607026499, -2.6414741105040997, -7.0, -2.968015713993642, -7.0, -7.0, -7.0, -7.0, -2.7214308130498446, -7.0, -7.0, -2.2576785748691846, -7.0, -2.967079734144497, -7.0, -7.0, -2.724275869600789, -2.81424759573192, -7.0, -7.0, -2.5885518064856425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6334684555795866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.550228353055094, -2.6522463410033232, -7.0, -2.6180480967120925, -2.6216954623292787, -2.6928469192772297, -7.0, -7.0, -7.0, -2.287801729930226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.651278013998144, -7.0, -7.0, -2.5705429398818973, -7.0, -2.53655844257153, -7.0, -2.0228406108765276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.74350976472843, -7.0, -7.0, -7.0, -2.1872642729507104, -7.0, -7.0, -7.0, -3.3230457354817013, -7.0, -7.0, -1.7180862947830915, -4.499783276438258, -7.0, -7.0, -7.0, -3.6332664111554247, -7.0, -3.0569048513364727, -2.358478734963716, -7.0, -7.0, -7.0, -7.0, -1.6334684555795866, -1.6974344889524329, -7.0, -7.0, -7.0, -2.2616593037647066, -7.0, -7.0, -2.7126497016272113, -2.6374897295125104, -2.5488498823731596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8394780473741985, -2.6434526764861874, -7.0, -7.0, -3.127428777851599, -2.7831886910752575, -2.4456042032735974, -7.0, -4.621536312932009, -2.2933625547114453, -7.0, -7.0, -2.251638220448212, -2.831549851995756, -2.9344984512435675, -7.0, -2.3222192947339195, -2.812244696800369, -2.5563025007672873, -2.5440680443502757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.655183271160184, -7.0, -2.8172347304254983, -4.547048223472135, -2.7781512503836434, -7.0, -7.0, -7.0, -7.0, -3.4577305482459986, -7.0, -7.0, -2.546542663478131, -7.0, -2.9206450014067875, -2.3064250275506875, -2.0253058652647704, -2.6283889300503116, -1.8712981525680923, -2.3364597338485296, -2.800717078282385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.734615835313205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.391675953237296, -7.0, -2.6384892569546374, -4.096168183884541, -2.9443539096403843, -2.901302604477304, -7.0, -7.0, -7.0, -4.2440048280914535, -2.3127413753267194, -7.0, -7.0, -3.8435753430507633, -3.415140352195873, -7.0, -7.0, -7.0, -2.740362689494244, -7.0, -7.0, -7.0, -7.0, -3.1524221292928356, -4.202402030831502, -7.0, -2.6875289612146345, -2.3575113516164294, -7.0, -4.135969677314899, -7.0, -4.942915400414438, -3.6201360549737576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.68436653636779, -3.451632947456991, -7.0, -3.4924810101288766, -7.0, -7.0, -3.789671348585748, -7.0, -7.0, -3.6181527333785195, -7.0, -7.0, -2.6748611407378116, -7.0, -7.0, -7.0, -3.695875515031685, -2.0119931146592567, -2.2725046516758276, -7.0, -7.0, -7.0, -7.0, -1.8595885767354927, -7.0, -3.490520309363349, -7.0, -3.930735140659794, -2.747023177451628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8512583487190755, -7.0, -7.0, -7.0, -7.0, -7.0, -4.341563112106319, -7.0, -7.0, -7.0, -1.6570558528571038, -7.0, -2.4385423487861106, -7.0, -2.1856365769619117, -2.965044831065058, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0948203803548, -7.0, -7.0, -2.361727836017593, -1.9146956688935866, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8609366207000937, -3.382499724125919, -2.888179493918325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6384892569546374, -2.5358213684769635, -2.9786369483844743, -7.0, -3.7335182514344876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.316410710725809, -7.0, -7.0, -4.2854672904600575, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -2.1405080430381798, -3.0622058088197126, -7.0, -2.603144372620182, -2.376576957056512, -7.0, -3.8547613566936363, -2.6334684555795866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2440295890300215, -1.9731278535996988, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7611758131557314, -7.0, -3.680698029697635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.282078054577154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.82020145948564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.574031267727719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669298280832415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7315887651867388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3412366232386925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7200765727681406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.08059762918686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5801263254115825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.057542491129928, -7.0, -7.0, -7.0, -3.315655525231531, -3.1652443261253107, -7.0, -7.0, -7.0, -2.101354224998816, -7.0, -3.604388073038561, -7.0, -7.0, -7.0, -3.975081244262648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.559739096233808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.383496207794542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1122697684172707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.032256025890453, -7.0, -7.0, -7.0, -7.0, -3.0203612826477078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.478566495593843, -7.0, -7.0, -7.0, -7.0, -2.82020145948564, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5654673821665757, -2.782472624166286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.86844850133673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8915374576725643, -7.0, -7.0, -7.0, -7.0, -4.063633545230784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5282737771670436, -3.7996506490611184, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5352941200427703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.12434117077496, -3.4369573306694496, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8135809885681917, -7.0, -7.0, -7.0, -2.482873583608754, -7.0, -2.9630609744865137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7481880270062007, -2.655138434811382, -2.8369567370595505, -2.5888317255942073, -7.0, -3.95074607416863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3961993470957363, -7.0, -3.495090843570958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.734799829588847, -7.0, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -3.0166677935099506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1496962663578945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.530199698203082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9222062774390165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.397070549959409, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6938148538894167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0132586652835167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.886490725172482, -7.0, -7.0, -7.0, -2.3434085938038574, -7.0, -7.0, -7.0, -7.0, -3.4371160930480786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.424881636631067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.098231729314952, -3.0334237554869494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6540802353065707, -7.0, -5.132142772994083, -7.0, -3.0813473078041325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4742162640762553, -7.0, -7.0, -3.074450718954591, -7.0, -2.90687353472207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9632209865229884, -7.0, -7.0, -4.304684365974386, -7.0, -7.0, -7.0, -3.0056094453602804, -3.698460961159398, -2.7849737099544005, -3.22219604630172, -7.0, -4.14126159062209, -7.0, -7.0, -7.0, -2.8639173769578603, -2.34143452457814, -7.0, -7.0, -7.0, -7.0, -4.0539615073145, -4.201906688806218, -5.172614605635793, -7.0, -7.0, -7.0, -7.0, -7.0, -4.942375186846578, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.158332331708981, -7.0, -7.0, -3.8272507737711705, -4.563979170379509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0842186867392387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0043213737826426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7781512503836434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.595496221825574, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7902851640332416, -4.60429446888234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1525329484345255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.90449915539782, -3.595055089759304, -7.0, -7.0, -3.974971994298069, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.714269869449075, -7.0, -7.0, -7.0, -2.606381365110605, -2.740362689494244, -7.0, -7.0, -7.0, -3.2174839442139063, -7.0, -4.33767884895367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0100454126360985, -7.0, -2.5276299008713385, -3.1058506743851435, -7.0, -7.0, -2.462397997898956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2278867046136734, -7.0, -7.0, -4.2201865679032755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4512745975370516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8808135922807914, -7.0, -7.0, -7.0, -7.0, -3.460634782014431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.259952059922254, -7.0, -3.0060379549973173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7960884286806684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.077186154085896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.635986111800833, -7.0, -1.6949425150529753, -2.56702636615906, -7.0, -3.950592004332609, -7.0, -7.0, -7.0, -2.4800069429571505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9713871920233976, -7.0, -7.0, -7.0, -7.0, -2.9025467793139916, -7.0, -2.709269960975831, -2.60422605308447, -2.7193312869837265, -2.2624510897304293, -7.0, -2.853393977450666, -7.0, -7.0, -7.0, -7.0, -2.367355921026019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9344984512435675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3404441148401185, -7.0, -3.988870966064645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3263358609287517, -7.0, -7.0, -7.0, -3.2000292665537704, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6921416093667836, -2.414137362184477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6925531793391446, -7.0, -7.0, -7.0, -7.0, -1.8536982117761742, -2.5734518220354854, -2.2616593037647066, -7.0, -2.3434085938038574, -7.0, -1.7387805584843692, -7.0, -7.0, -7.0, -2.3162930011046736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -7.0, -4.496147490722734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.1878523699414716, -7.0, -7.0, -7.0, -7.0, -2.6314437690131722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.132112337499659, -7.0, -2.595863489908268, -4.244413203163297, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4379090355394983, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9622114391106, -2.6127838567197355, -7.0, -2.4631461367263494, -2.184691430817599, -2.0959947450572747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.733590440675243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3496875548360436, -3.7372721765355434, -7.0, -7.0, -7.0, -7.0, -2.020971553022808, -7.0, -7.0, -7.0, -3.228057990154014, -7.0, -7.0, -7.0, -1.4515671502472742, -7.0, -7.0, -7.0, -7.0, -3.4001156732959967, -7.0, -7.0, -2.5550944485783194, -2.9858753573083936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277150613963797, -7.0, -3.6494322232416168, -7.0, -3.2542458751053367, -7.0, -7.0, -7.0, -7.0, -7.0, -3.934548947666147, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8286598965353198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5141048209728325, -7.0, -2.059752694209299, -7.0, -3.7826159320316033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.641345191182597, -7.0, -7.0, -7.0, -1.9100142263808144, -7.0, -7.0, -7.0, -2.526339277389844, -3.4222614508136027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2706788361447066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.002101236846782, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7535830588929064, -7.0, -7.0, -2.4871383754771865, -3.3024391640698574, -7.0, -2.8709888137605755, -3.7231271587956916, -7.0, -7.0, -7.0, -3.4291060083326967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.282576800709218, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45408227073109, -3.0111473607757975, -7.0, -7.0, -2.5440680443502757, -7.0, -7.0, -2.4800069429571505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.061954844073114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.668944734457734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.27916484306227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9763499790032735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5578078557646045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1784013415337555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.697490887171057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7774268223893115, -7.0, -7.0, -7.0, -7.0, -2.790988475088816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071992407124176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1598678470925665, -2.7209857441537393, -1.4873404199013485, -7.0, -4.125562586641175, -7.0, -7.0, -7.0, -7.0, -2.079181246047625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.192790397120652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2041199826559246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1189257528257768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7387805584843692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.325310371711061, -7.0, -5.09773612349375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.693140460675295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7505083948513462, -7.0, -7.0, -1.8836614351536176, -3.0111473607757975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3910822009174537, -2.699837725867246, -4.065542370519139, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7355988996981797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.644832328825636, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153448988600982, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.287689783936075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.509202522331103, -7.0, -7.0, -7.0, -4.627027712771981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658011396657113, -7.0, -7.0, -7.0, -7.0, -3.625312450961674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.621176281775035, -3.877152415493926, -7.0, -7.0, -7.0, -2.380211241711606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.033524274983268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.110589710299249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3979400086720375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.688419822002711, -7.0, -7.0, -7.0, -2.6354837468149124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7686381012476144, -7.0, -7.0, -7.0, -7.0, -2.782472624166286, -1.271066772286538, -1.24551266781415, -2.6364878963533656, -7.0, -3.755989128658785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.735878227256237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.444044795918076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.662757831681574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9557774090066586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.555671015714629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0613267969905547, -7.0, -7.0, -0.5070844780971057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9242792860618816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.484299839346786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9819544444699737, -7.0, -7.0, -7.0, -7.0, -1.4771212547196626, -2.2329961103921536, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1556396337597765, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6783362467321803, -7.0, -4.495891079666188, -7.0, -7.0, -2.089905111439398, -3.3025473724874854, -7.0, -7.0, -3.1231980750319988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1073795828044486, -7.0, -7.0, -2.342422680822206, -4.304813543394108, -7.0, -7.0, -3.7466341989375787, -7.0, -7.0, -2.611723308007342, -7.0, -7.0, -2.656098202012832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6314437690131722, -7.0, -7.0, -7.0, -5.432898772392294, -7.0, -3.0141003215196207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4127964287165433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0511525224473814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.391517306849448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.10108688458908, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4236553925733784, -7.0, -7.0, -7.0, -7.0, -3.472610197596045, -3.1746411926604483, -7.0, -4.135800283302111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.172109399766667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6341748717626, -7.0, -3.4538685055562, -7.0, -7.0, -4.126477751880373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.683407299132095, -7.0, -7.0, -7.0, -7.0, -7.0, -3.848650886818957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03769535853163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.934585012945061, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8779469516291882, -2.630653834698125, -2.121887985103681, -7.0, -2.806010294559223, -7.0, -7.0, -7.0, -3.1151110355043476, -7.0, -7.0, -7.0, -7.0, -7.0, -4.266936911159173, -7.0, -7.0, -7.0, -3.6113196194600805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1573560154410694, -7.0, -7.0, -7.0, -7.0, -3.846120529546089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8139239429018104, -7.0, -7.0, -7.0, -7.0, -2.9375178920173464, -7.0, -7.0, -7.0, -7.0, -7.0, -3.902546779313991, -7.0, -7.0, -7.0, -4.099726668821858, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.559080321020141, -2.5010592622177517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7066324508732946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4712917110589387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1760912590556813, -2.59659709562646, -2.432434774521513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2528530309798933, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5575072019056577, -7.0, -7.0, -2.741151598851785, -7.0, -3.760460180960834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.736818638473778, -7.0, -7.0, -2.7547304690237535, -2.7596678446896306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.428134794028789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.075875295259833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.477693393952372, -7.0, -7.0, -7.0, -2.424881636631067, -7.0, -7.0, -7.0, -2.927883410330707, -7.0, -7.0, -7.0, -7.0, -3.1139804699071245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.307496037913213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0860037056183818, -3.190051417759206, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2114765203615074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9894498176666917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5520595341878844, -2.7126497016272113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7280289544205183, -2.9175055095525466, -7.0, -7.0, -4.306081745657977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.797066624507168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7371926427047373, -7.0, -7.0, -7.0, -4.9559602010555945, -7.0, -7.0, -4.545022442756734, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4321672694425884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0538464268522527, -7.0, -2.7715874808812555, -7.0, -7.0, -4.317018101048111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7333016116877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9035782936630543, -4.800455873318712, -7.0, -4.78494520733039, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.57142930306149, -4.3034984457923136, -7.0, -7.0, -7.0, -7.0, -3.7647488339659567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7517985605323645, -4.979853275304856, -4.871418219767973, -7.0, -3.279210512601395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8555797225017177, -7.0, -7.0, -4.127752515832973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.640987983975901, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604096393587492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5997739391463885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.330413773349191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.181195472458439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4207256768599095, -7.0, -7.0, -2.3364597338485296, -3.0843686801856824, -7.0, -2.305351369446624, -7.0, -7.0, -7.0, -2.4771212547196626, -7.0, -2.3710678622717363, -7.0, -7.0, -7.0, -7.0, -2.0413926851582254, -7.0, -7.0, -7.0, -7.0, -4.33531745944485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7805573201495222, -7.0, -2.7439450604267974, -2.2576785748691846, -2.3404441148401185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.217088951479171, -7.0, -7.0, -7.0, -2.214843848047698, -7.0, -7.0, -7.0, -7.0, -2.416640507338281, -7.0, -7.0, -7.0, -2.367355921026019, -7.0, -4.217062605852551, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7944880466591697, -7.0, -7.0, -7.0, -1.8893017025063104, -1.554880913632493, -7.0, -7.0, -2.6711728427150834, -7.0, -4.058463985602251, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.271841606536499, -7.0, -3.024074987307426, -7.0, -7.0, -7.0, -2.496929648073215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0293837776852097, -7.0, -7.0, -3.402777069610347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4705942260050717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.095169351431755, -7.0, -3.3657808883706317, -2.161368002234975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2079035303860515, -7.0, -7.0, -7.0, -7.0, -2.913255991700841, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6085260335771943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0113589537066106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149274550965593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9822712330395684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1190758459608126, -7.0, -7.0, -7.0, -7.0, -2.108057373783854, -3.3803921600570273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.353467413965482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6374897295125104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9370161074648142, -2.8721562727482928, -7.0, -7.0, -4.606252347587676, -7.0, -7.0, -3.749427099121749, -7.0, -7.0, -2.3453737305590883, -2.287801729930226, -2.7831886910752575, -1.2661924845114636, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6725596277632757, -7.0, -7.0, -7.0, -3.0464951643347082, -1.9344984512435677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4913616938342726, -7.0, -7.0, -2.3636119798921444, -7.0, -3.948559662108962, -7.0, -5.131923269288103, -7.0, -2.550228353055094, -4.544005997849434, -2.678518379040114, -7.0, -7.0, -7.0, -2.06871581236946, -3.1174370252826193, -2.9786369483844743, -7.0, -7.0, -7.0, -1.6028348255779234, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8423751816787837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8294404736513274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784360490921301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.956696564894651, -7.0, -4.269419537511049, -3.398330697921948, -3.426592582305156, -7.0, -4.047975405279086, -7.0, -4.542003347503985, -3.7764105888073423, -7.0, -7.0, -4.136942412775367, -3.3941013020400446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.330007700872759, -7.0, -3.147695642960966, -3.979398121064359, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.640655318711145, -3.116164812300795, -7.0, -7.0, -3.6471872978959894, -7.0, -4.274434970074042, -7.0, -2.9380190974762104, -3.5276299008713385, -2.6471383660631504, -7.0, -7.0, -4.001906704040885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.68497993618928, -7.0, -2.730378468587643, -7.0, -7.0, -3.031183964643677, -7.0, -7.0, -7.0, -3.074523887934952, -7.0, -4.326223175572686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.524071415934022, -7.0, -7.0, -7.0, -4.33912336048452, -7.0, -7.0, -7.0, -2.057856208741888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1986570869544226, -3.693111115462141, -7.0, -3.261976191397813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.334453751150931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8255415103705555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4115074706655637, -2.8488047010518036, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4194600727860704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.709036634671606, -7.0, -3.953227971559854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5460797451732575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7188337183038622, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1142772965615864, -2.963833215283299, -7.0, -7.0, -7.0, -3.1075491297446862, -2.520418023353549, -3.4163075870598827, -7.0, -7.0, -7.0, -7.0, -2.5058703771963513, -2.4694011879588946, -2.446640706109038, -2.611590557133038, -2.3369330363913186, -3.1024337056813365, -3.1157768761589635, -7.0, -2.8262368226549173, -3.1197506238845842, -2.830107278114626, -2.97245120664604, -2.944811558558846, -3.404149249209695, -7.0, -2.195248291984317, -2.4970832990501948, -7.0, -2.9535986331436197, -7.0, -3.5958267770732233, -3.4085791254086675, -3.1017832395359197, -3.1007150865730817, -2.842765208181785, -3.443106456737266, -7.0, -7.0, -7.0, -3.4109458586877746, -7.0, -2.2335037603411343, -2.673596818209052, -2.192769056392809, -7.0, -7.0, -2.852601969338235, -7.0, -3.4099331233312946, -3.1107580088798876, -3.119585774961784, -2.624134702492355, -3.540579716504454, -3.4191293077419758, -7.0, -7.0, -3.211887757793364, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6266336114657944, -7.0, -7.0, -3.3729580063049203, -7.0, -2.651116416049525, -7.0, -7.0, -7.0, -7.0, -2.4063698354692677, -3.1005428500124648, -2.1394292733295357, -2.7349597612724454, -1.5552838836565568, -7.0, -2.376728994335118, -7.0, -3.0038665700721023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.65263306808311, -7.0, -7.0, -7.0, -2.332149796241367, -7.0, -7.0, -7.0, -3.4095950193968156, -2.2497018038950065, -7.0, -7.0, -2.8564267724702446, -7.0, -2.708515322242249, -7.0, -3.130976691605617, -3.4127964287165433, -3.1554878621412814, -3.2220658425885866, -7.0, -2.709038563501977, -3.172223341427753, -7.0, -7.0, -7.0, -3.499442685041947, -2.8115750058705933, -3.041787318971752, -1.906437663375016, -7.0, -7.0, -3.4224256763712044, -2.530039530588542, -7.0, -7.0, -2.9467922511424818, -7.0, -7.0, -7.0, -3.09968064110925, -3.4000196350651586, -2.9479236198317262, -2.9146075677710805, -3.222282827095675, -3.4877038631637265, -7.0, -7.0, -2.710625015060797, -7.0, -2.6864873087113894, -7.0, -3.2210228052048415, -7.0, -7.0, -7.0, -2.169952718952251, -7.0, -7.0, -7.0, -3.449324093098727, -7.0, -7.0, -2.357934847000454, -2.861385040442465, -2.605458969404072, -3.1341771075767664, -2.468790262099611, -3.123851640967086, -7.0, -2.132160282103326, -3.4075608494863623, -3.4034637013453173, -7.0, -7.0, -3.4073909044707316, -2.635651266385708, -7.0, -1.0909969190427458, -7.0, -3.9792751475910233, -7.0, -3.512817758564873, -1.246372417574952, -3.4139699717480614, -2.258876629372131, -2.2012453527019566, -2.0508554673866186, -1.834536299764702, -2.5284024379536176, -2.8449429071382, -7.0, -2.8468008542794783, -3.425044874551389, -2.7183355789085066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.745465168670727, -7.0, -2.651278013998144, -2.8107364373885813, -3.414137362184477, -7.0, -3.4058583993176366, -3.4415380387021606, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3991543339582164, -3.4032921451582543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6308635491781667, -2.5937013287080988, -3.4466924663715273, -3.7585515963427407, -7.0, -3.4073909044707316, -3.406199423663313, -2.775391971696612, -7.0, -7.0, -7.0, -3.4101020766428607, -2.8140810398403664, -7.0, -3.400192488592576, -3.1029479680053735, -2.5573353062050552, -7.0, -7.0, -7.0, -2.8754230247469814, -7.0, -7.0, -7.0, -3.40840957846843, -2.9380190974762104, -2.638156336676239, -7.0, -2.3516997004052667, -3.532244643626582, -2.808210972924222, -3.6784273224338673, -1.9254266961927287, -7.0, -3.402089350572097, -7.0, -3.6303261548039467, -2.766710207262259, -2.625856945055025, -2.331660850966761, -3.2728468287897403, -7.0, -7.0, -7.0, -2.577829588204494, -7.0, -3.0415242696106493, -2.191381141649701, -7.0, -7.0, -7.0, -7.0, -2.821513528404773, -2.223293990490537, -2.5488498823731596, -7.0, -3.4371160930480786, -2.3162930011046736, -7.0, -3.1073795828044486, -2.7280289544205183, -2.9370161074648142, -7.0, -2.094541001456839, -3.152441238058955, -7.0, -2.958401207070927, -7.0, -7.0, -3.6034150454129286, -7.0, -3.404833716619938, -2.9780282664601656, -3.1144441724452543, -2.105874984860221, -2.2820931765145813, -2.588582917519855, -3.442793225939769, -3.0391496280096777, -7.0, -3.5617996475103078, -2.620656479819621, -7.0, -7.0, -3.1007150865730817, -7.0, -2.1742052269401473, -7.0, -2.8097280132159064, -2.846337112129805, -7.0, -3.400537989391946, -7.0, -7.0, -2.8178957571617955, -3.406199423663313, -2.455910240382743, -7.0, -3.450557009418329, -7.0, -3.8238923221840366, -7.0, -1.7794418738651383, -3.0280830070178384, -2.5709319183959467, -7.0, -2.762678563727436, -2.9425041061680806, -1.8765752054416793, -2.4686947660162097, -2.524396122103842, -2.8024316264307236, -3.4008832155483626, -3.398981066658131, -2.6972293427597176, -3.4102709642521845, -7.0, -3.1119342763326814, -2.5369370227046737, -2.7148325124333326, -1.537086602941622, -7.0, -7.0, -3.386171858184651, -4.464094419087544, -4.3198968588148885, -3.163608563431052, -4.163489358192699, -7.0, -3.864748335629659, -3.4819996714322374, -3.5752956351447946, -7.0, -3.6396192807332817, -4.299921130330193, -4.3768870566640485, -4.517156294823795, -3.3183202379468297, -7.0, -4.126780577012009, -3.3949030681890893, -3.785756799962643, -4.030569364813529, -7.0, -4.331241660919753, -3.3865435520177014, -3.624948671355888, -3.6732974397596356, -7.0, -4.34747638204818, -4.007349420982268, -7.0, -3.4930888401537827, -4.278822168352688, -3.9076800242424197, -4.291413254570215, -3.7623033632877685, -3.630275285757692, -3.991070942816438, -7.0, -3.914907038697517, -3.386531392526096, -3.75815462196739, -2.9380190974762104, -3.1347375088987737, -2.5779783607363376, -1.8317026370805913, -3.479719235439571, -4.132867788319085, -7.0, -2.8374364459801273, -2.1939117917581363, -2.8958643512472992, -3.0334237554869494, -2.9759991429882495, -3.1679668133956205, -7.0, -3.8845121591903937, -7.0, -3.1324197980976147, -7.0, -3.468470412312344, -7.0, -7.0, -2.4962287772975196, -3.007205282237773, -4.137751045204818, -2.945796726048, -2.321494866739587, -3.429752280002408, -3.011389172854374, -7.0, -4.175308824585785, -2.846405845924663, -3.359297812956692, -7.0, -7.0, -4.094471128641644, -3.1220724554718475, -3.283188116453424, -3.528402437953617, -3.2845811128217504, -2.789293385338263, -3.0958664534785427, -3.4387005329007363, -2.9656617533678844, -3.0095179873019924, -7.0, -3.479795976082418, -7.0, -7.0, -3.4992745818922173, -3.2544790209024517, -7.0, -2.7209857441537393, -7.0, -7.0, -7.0, -2.7589839445726563, -2.9514994179522764, -2.5863372070651294, -7.0, -2.8257042442466873, -3.1790847884927227, -2.9320930828571, -2.740362689494244, -7.0, -3.143275090631622, -7.0, -3.3498988914039116, -3.0387525889920166, -7.0, -7.0, -2.9927743642553555, -7.0, -3.2249644667161625, -7.0, -3.4831592097169795, -2.57978359661681, -7.0, -3.533772058384718, -2.870403905279027, -3.438858659420562, -7.0, -3.055187138555754, -7.0, -7.0, -4.502071891206661, -2.5437837891976143, -3.613093956327272, -7.0, -3.66661156841903, -2.9807606420143298, -7.0, -3.433929765608464, -7.0, -7.0, -2.9144313118912653, -7.0, -7.0, -3.797613730153076, -7.0, -3.388574805196408, -2.8873359303991672, -2.848086434763257, -7.0, -7.0, -3.4258601450778405, -2.929801957767847, -4.376595204340475, -7.0, -7.0, -3.426185825244511, -3.7806053058389697, -3.1629127378362583, -7.0, -7.0, -3.5422027824340283, -3.461048091670658, -2.809449842484887, -3.166726055580052, -7.0, -3.4510184521554574, -7.0, -7.0, -7.0, -3.8726223790252883, -7.0, -3.438067450453494, -7.0, -7.0, -7.0, -7.0, -2.0683959195407784, -2.7141900028713306, -3.1809855807867304, -2.975718945367262, -7.0, -3.2258259914618934, -7.0, -3.4072775708370235, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3663399300342265, -7.0, -3.1245042248342823, -3.619823500457278, -3.2799709653992704, -3.083263668252353, -3.7554174628109362, -3.4282765647938374, -3.606596309179285, -3.119420863442087, -7.0, -7.0, -7.0, -2.9792447784093805, -3.219715475855501, -3.716086853774832, -7.0, -3.4220971631317103, -7.0, -2.985716980907719, -3.11277252110537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6880636969463443, -7.0, -3.1829849670035815, -2.9443181355003873, -7.0, -7.0, -7.0, -3.401745082237063, -7.0, -7.0, -7.0, -2.938582263081691, -7.0, -7.0, -7.0, -7.0, -2.8798601462734688, -7.0, -7.0, -3.4252284439018794, -7.0, -7.0, -3.5801263254115825, -7.0, -7.0, -7.0, -7.0, -3.149834696715785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5494654330043325, -7.0, -7.0, -7.0, -3.0562376589802276, -2.400401640330525, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7219651042692194, -3.640978057358332, -7.0, -3.1556396337597765, -2.8419962702029213, -7.0, -2.88024177589548, -7.0, -2.441433275830611, -2.591621038213319, -7.0, -3.719497016610582, -2.8987251815894934, -7.0, -7.0, -2.623766000133931, -2.9951962915971793, -7.0, -7.0, -7.0, -7.0, -7.0, -4.045283851395136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.286231854028553, -3.0457922327295592, -2.8680563618230415, -2.8898617212581885, -7.0, -7.0, -7.0, -2.5605044151950564, -7.0, -2.741151598851785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.049605612594973, -7.0, -7.0, -3.754297359188641, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0338256939533106, -7.0, -1.6965311199696071, -7.0, -2.228314791865588, -7.0, -4.048221622337202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.593286067020457, -7.0, -7.0, -7.0, -7.0, -3.0788191830988487, -7.0, -7.0, -3.0111473607757975, -7.0, -3.036991623589965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5792117802314993, -4.114977744785308, -7.0, -7.0, -7.0, -3.7862149248791837, -7.0, -3.1622656142980214, -3.2079035303860515, -7.0, -7.0, -7.0, -2.637989780784685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1879435290625273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.727947709544797, -7.0, -2.564961804462294, -7.0, -7.0, -2.1565491513317814, -3.189279712637177, -7.0, -7.0, -7.0, -2.9822712330395684, -7.0, -7.0, -3.13481437032046, -7.0, -7.0, -7.0, -3.044147620878723, -7.0, -7.0, -3.300587433274399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8587376566001557, -7.0, -3.885361220031512, -7.0, -3.1470576710283598, -2.765355755262699, -7.0, -7.0, -7.0, -7.0, -7.0, -2.583765368285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8139144200486035, -7.0, -3.1119342763326814, -7.0, -7.0, -7.0, -2.360467183515849, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6351485136976085, -7.0, -4.150931350113742, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6349808000512285, -3.1908917169221698, -7.0, -7.0, -3.3062105081677613, -7.0, -7.0, -7.0, -7.0, -7.0, -3.126699483839912, -7.0, -3.8049567998574916, -7.0, -7.0, -7.0, -2.884512159190394, -7.0, -7.0, -2.582744965691277, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0755469613925306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9175055095525466, -2.8721562727482928, -2.094541001456839, -7.0, -7.0, -7.0, -3.356567590116751, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3961993470957363, -7.0, -3.2487087356009177, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145448488330583, -2.474798818800631, -7.0, -7.0, -7.0, -7.0, -1.945620065594431, -7.0, -7.0, -2.680335513414563, -2.826722520168992, -7.0, -7.0, -7.0, -7.0, -7.0, -2.707144188342445, -7.0, -2.8276461582923424, -7.0, -4.053563391020801, -7.0, -2.7329295951554746, -3.509226968278699, -2.478566495593843, -7.0, -7.0, -7.0, -2.538762188781348, -2.899546931090867, -2.877083256650651, -7.0, -7.0, -7.0, -3.058426024457005, -7.0, -7.0, -7.0, -2.6023313405913373, -7.0, -2.9763499790032735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9287883153242555, -3.65774087263201, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9246582666341787, -7.0, -7.0, -4.6565868677950935, -7.0, -4.613514128230588, -7.0, -4.802085832832881, -3.596102047718113, -4.487272745488699, -7.0, -7.0, -7.0, -3.980124623621081, -3.294466226161593, -4.708318901195369, -7.0, -4.285298455375746, -7.0, -4.190471770573345, -3.8251014115980033, -4.248978095892654, -4.068742292932981, -7.0, -4.397122766597578, -3.681512586638962, -7.0, -4.576928460302419, -3.711448682718111, -2.991964044403458, -7.0, -7.0, -7.0, -3.344404555595206, -3.337725413884801, -3.3197304943302246, -3.785614524946824, -4.154241330167298, -3.2641091563058082, -7.0, -7.0, -7.0, -7.0, -7.0, -4.198684573077143, -7.0, -7.0, -3.5176859234556574, -3.583851425939607, -4.696705780933917, -7.0, -7.0, -7.0, -3.838156184752148, -7.0, -7.0, -3.3501510667807066, -4.074779882331932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6504252739580907, -7.0, -7.0, -3.308575084056243, -4.267875419318898, -7.0, -4.035889806536247, -7.0, -7.0, -3.649529565947819, -3.729691133696481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7350663496842955, -7.0, -7.0, -2.930312142239915, -7.0, -7.0, -7.0, -3.8129801660394804, -2.9854264740830017, -3.5913479701696387, -7.0, -7.0, -7.0, -7.0, -3.0242803760470798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.01416037745305, -7.0, -7.0, -4.475961589192424, -4.645677661583387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.739572344450092, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8901414600645774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5913626556153853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0461047872460387, -2.7996850909091004, -7.0, -2.4762823328149426, -7.0, -7.0, -3.1458177144918276, -3.2869801217565664, -7.0, -2.8670744611517724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5445227813677804, -7.0, -3.678245151927042, -3.4470472277998647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6875289612146345, -7.0, -7.0, -7.0, -7.0, -3.6879449236700936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.775974331129369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.008344629252689, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5107013638161044, -7.0, -7.0, -7.0, -7.0, -3.1522883443830563, -7.0, -7.0, -2.9876662649262746, -7.0, -3.6071332043915665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.183516585741525, -7.0, -7.0, -7.0, -7.0, -2.9534697432534016, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6101276130759956, -7.0, -7.0, -2.7466341989375787, -3.648233694151396, -7.0, -7.0, -7.0, -2.716003343634799, -7.0, -7.0, -4.561017857447836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7267272090265724, -7.0, -2.7713424628313694, -7.0, -4.340186237916345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.731320101718905, -3.2427898094786767, -2.6283889300503116, -2.665580991017953, -2.845098040014257, -2.6857417386022635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.036549054479152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2230024392104095, -7.0, -2.1172712956557644, -7.0, -2.61066016308988, -7.0, -7.0, -7.0, -7.0, -2.885361220031512, -7.0, -7.0, -7.0, -7.0, -7.0, -4.521321181329137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.36679638328673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.60422605308447, -2.575187844927661, -2.373524980463404, -7.0, -3.766524381029522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5418287667813124, -7.0, -7.0, -7.0, -7.0, -4.738106403558114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5774917998372255, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7806412916269427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7197454925295768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6827384693289797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.269045709657623, -7.0, -7.0, -7.0, -7.0, -3.2247734691895307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8129133566428557, -2.693726948923647, -7.0, -7.0, -7.0, -2.575187844927661, -7.0, -3.926033596678845, -7.0, -2.4042634020509106, -7.0, -1.6302429114439048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2576785748691846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.848989206251168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.952175797631502, -7.0, -7.0, -7.0, -7.0, -1.9344984512435677, -2.351216345339342, -7.0, -2.741939077729199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499755794663781, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2062860444124324, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9429995933660407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.152441238058955, -7.0, -7.0, -1.4978507395784066, -4.608868199820542, -7.0, -7.0, -3.767897616018091, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8651039746411278, -7.0, -7.0, -3.0492180226701815, -7.0, -4.39966680039829, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9603280505301433, -7.0, -4.530234927152524, -7.0, -2.6398183918310933, -3.6437610147894506, -7.0, -7.0, -2.866877814337499, -7.0, -3.0318122713303706, -3.4574276929464847, -3.077731179652392, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4265112613645754, -7.0, -2.6334684555795866, -7.0, -3.1020905255118367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.734599832126458, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.102049325662146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.667125941485989, -7.0, -4.573312639954846, -3.8297753428197034, -3.445993181787647, -7.0, -7.0, -7.0, -3.9429005411402938, -7.0, -2.9476787399369364, -7.0, -4.144605338714745, -3.4149733479708178, -7.0, -7.0, -7.0, -7.0, -7.0, -4.189995339964319, -7.0, -7.0, -7.0, -4.980589614348293, -5.172926780108456, -7.0, -2.836745965649491, -2.718501688867274, -4.31206093637058, -7.0, -4.942905494288165, -7.0, -7.0, -7.0, -7.0, -4.011274328904725, -7.0, -7.0, -7.0, -7.0, -3.4623380910801975, -7.0, -7.0, -3.761433797113758, -7.0, -7.0, -4.157708547654237, -7.0, -7.0, -2.9181352261663593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.519653016141642, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6753607458971653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.178674849395301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6757783416740852, -2.9390197764486667, -3.130816050034744, -3.0457140589408676, -7.0, -3.035829825252828, -3.740362689494244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015296870381437, -7.0, -7.0, -3.984347257585864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7596678446896306, -7.0, -7.0, -7.0, -7.0, -3.854700675614607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.379305517750582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9809573162296203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.181843587944773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.901785145303599, -7.0, -7.0, -7.0, -3.836347136272441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7344997988467563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.367355921026019, -7.0, -7.0, -2.857935264719429, -3.1028622998954396, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7283537820212285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.218876715052756, -1.8239087409443189, -1.4419568376564116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7291647896927698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3729120029701067, -7.0, -7.0, -2.537189226243645, -7.0, -7.0, -7.0, -7.0, -2.8512583487190755, -2.354108439147401, -1.9956351945975501, -1.4728424567403875, -7.0, -7.0, -2.4608978427565478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.736707170670822, -7.0, -2.984077033902831, -3.0511525224473814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.296665190261531, -1.5378190950732742, -7.0, -7.0, -7.0, -7.0, -7.0, -3.598097124391873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.942008053022313, -2.7558748556724915, -7.0, -7.0, -7.0, -7.0, -7.0, -2.51359339336404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.747670701773019, -7.0, -7.0, -7.0, -7.0, -2.9138881796955367, -7.0, -7.0, -2.439332693830263, -7.0, -2.5722906061514177, -7.0, -7.0, -2.546542663478131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6263403673750423, -7.0, -1.631781872947651, -7.0, -7.0, -2.2430380486862944, -7.0, -2.6242820958356683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.787696568289874, -7.0, -7.0, -7.0, -2.432969290874406, -7.0, -7.0, -7.0, -2.9084850188786495, -3.5122840632818537, -5.149483920739446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.130333768495006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0829199448613176, -7.0, -7.0, -7.0, -2.3384564936046046, -1.806179973983887, -1.323939275128193, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7078539359785987, -7.0, -7.0, -7.0, -7.0, -2.7686381012476144, -3.386498965550653, -7.0, -4.497330562965051, -7.0, -7.0, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.015639134307175, -2.5434471800817002, -7.0, -7.0, -7.0, -7.0, -7.0, -2.342422680822206, -7.0, -7.0, -7.0, -7.0, -1.4978507395784066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1085650237328344, -7.0, -7.0, -7.0, -7.0, -7.0, -5.0980550396692434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.830995829309531, -7.0, -7.0, -4.243794303095747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0086001717619175, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2528530309798933, -7.0, -3.0484418035504044, -7.0, -2.7690078709437738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.733189237407942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784845433412646, -7.0, -7.0, -7.0, -7.0, -7.0, -4.704141933860088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0940982836485, -3.2235392038485093, -2.3142724592544885, -7.0, -7.0, -7.0, -4.241795431295198, -7.0, -2.7256394326735376, -7.0, -4.139091607523823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3119271590844845, -4.678750487010251, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6965747917964733, -7.0, -7.0, -7.0, -4.003762020828246, -7.0, -7.0, -3.6445370577784075, -7.0, -3.252731702726023, -7.0, -7.0, -4.00264114900004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.210541452166173, -7.0, -3.0588054866759067, -7.0, -7.0, -3.143550085221494, -7.0, -7.0, -7.0, -3.7790189719148706, -7.0, -3.3053411313607923, -7.0, -7.0, -7.0, -7.0, -2.910090545594068, -7.0, -7.0, -7.0, -3.1762359997608716, -7.0, -3.031408464251624, -7.0, -7.0, -7.0, -3.8296253533580495, -7.0, -7.0, -7.0, -3.5992576664691955, -4.741340724046487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6654871807828107, -7.0, -3.719295250433741, -7.0, -7.0, -2.6830470382388496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.598243191653623, -2.586587304671755, -7.0, -2.8729051282527607, -7.0, -7.0, -7.0, -3.7262380468026377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.710477011779341, -7.0, -3.9565045903166975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9894498176666917, -7.0, -7.0, -7.0, -7.0, -3.849327262334538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.345765693114488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305480348653206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304608994731877, -7.0, -2.3842957067946604, -4.613841821876069, -7.0, -7.0, -2.76315203827082, -3.1158062279831116, -7.0, -4.308745776330676, -4.607122472989352, -4.010225730048655, -7.0, -1.4464814546640163, -3.740402169016284, -7.0, -4.13640344813399, -2.1753078349067776, -7.0, -4.305351369446623, -7.0, -7.0, -4.6066607716609465, -3.6530409067467735, -2.6230721544503495, -4.305705970134437, -7.0, -7.0, -4.130140705819276, -4.006744072853106, -7.0, -4.607337050667031, -7.0, -3.9214159323948645, -7.0, -2.553353730509349, -7.0, -7.0, -3.9090744014009045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.773619296135908, -2.6576834670780443, -7.0, -4.305534078686048, -3.574956775764507, -4.606821886016697, -4.304888879148899, -4.128915978453837, -7.0, -7.0, -4.314488702046227, -7.0, -7.0, -7.0, -2.174052881785803, -7.0, -7.0, -7.0, -4.60535892548885, -3.721676680229461, -4.610276792917653, -7.0, -4.611202692182174, -3.221483277582076, -7.0, -3.8290463368531826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.706611115387456, -4.607594404013138, -3.381295623003826, -4.607379953483188, -3.286606149046036, -7.0, -2.00959373153784, -4.007139425162523, -4.004009515801031, -4.605391249889289, -7.0, -7.0, -4.605972678066446, -7.0, -7.0, -4.60535892548885, -3.9271136119337604, -7.0, -7.0, -7.0, -4.008781090107339, -7.0, -7.0, -7.0, -4.60591887481288, -3.569501593215114, -7.0, -4.605649758517102, -4.132099521916504, -4.608140774044056, -1.1212463653081923, -7.0, -7.0, -7.0, -7.0, -3.437729428754742, -7.0, -3.558468562523795, -2.633236593363552, -7.0, -3.910047808486978, -4.6078623183483565, -3.2198280150476593, -7.0, -3.8355426114309683, -3.5738943775920253, -7.0, -4.3054266119721705, -4.305695228911858, -7.0, -7.0, -7.0, -3.1012357969686812, -7.0, -7.0, -7.0, -7.0, -7.0, -2.237322669869924, -3.5165252041365958, -3.1995317172630013, -3.8330727036452936, -4.305673745669693, -3.188243942455559, -4.606004956819436, -7.0, -4.132579847659737, -3.7849126306122294, -3.1985302053792193, -7.0, -7.0, -7.0, -2.9158519113966404, -7.0, -7.0, -7.0, -4.131394081817373, -7.0, -7.0, -3.709619715559004, -4.308564413561239, -4.307720614914806, -4.306564408349157, -4.610127613075996, -4.6069292623911515, -4.004181603069199, -2.347449358810914, -4.605789719802564, -7.0, -7.0, -4.606209333228022, -7.0, -3.4299029384459896, -4.605628222007619, -3.222882875472395, -7.0, -2.7002340851124638, -7.0, -3.1502799204175456, -2.0761361797273654, -7.0, -3.229137673741424, -3.910368234326188, -3.655842471411064, -3.2493259940843204, -3.383931471978156, -3.830203598925704, -4.607283416186098, -7.0, -4.606918525948291, -4.6064995975128875, -3.8399073111296422, -7.0, -4.605649758517102, -7.0, -3.9065146136422175, -7.0, -3.263697804915245, -7.0, -4.134952320751409, -4.30513631894364, -7.0, -7.0, -7.0, -4.130858893597252, -7.0, -7.0, -7.0, -4.323808795527016, -4.30666087655063, -7.0, -4.605520523437469, -7.0, -7.0, -7.0, -7.0, -7.0, -4.606047991425154, -7.0, -3.49797104570027, -3.6829368988867754, -2.116804385513106, -7.0, -4.605778955151077, -7.0, -7.0, -7.0, -7.0, -4.306843035820824, -4.605951157564873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9111051914786596, -7.0, -7.0, -7.0, -7.0, -4.606316861140107, -4.129292358783856, -7.0, -7.0, -4.012721256813116, -4.304974961155454, -3.8507279001855457, -3.774569098791682, -7.0, -7.0, -4.304835069229006, -3.4194187409295647, -7.0, -3.221385254927856, -7.0, -1.580058363422686, -7.0, -7.0, -7.0, -2.8966639794199422, -3.1649685903213305, -3.9147238574785934, -3.577115624428775, -3.714801107435411, -7.0, -7.0, -7.0, -4.30583484408832, -3.610819800835439, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304813543394108, -4.306081745657977, -4.606252347587676, -2.958401207070927, -3.356567590116751, -4.608868199820542, -7.0, -7.0, -7.0, -7.0, -3.116304068086073, -7.0, -7.0, -4.307955761568559, -7.0, -3.5029730590656314, -4.609477016473619, -4.615897470449012, -7.0, -4.136424596607705, -7.0, -2.1298838478853956, -3.6141059109580307, -7.0, -7.0, -7.0, -4.013963663325294, -3.496610353010258, -7.0, -7.0, -4.608558123116898, -7.0, -7.0, -7.0, -7.0, -4.606650028578438, -7.0, -3.3535743172231056, -4.305308367864144, -3.066955652692866, -4.629379013907319, -2.434855787991721, -7.0, -3.7123866044592306, -2.925781264081862, -3.7111954128570748, -7.0, -3.405068753367744, -7.0, -3.5337085232398597, -3.552272669914343, -3.7111531868500505, -7.0, -7.0, -7.0, -4.133357914626442, -7.0, -7.0, -4.606155559286679, -4.138260582719981, -7.0, -3.372646110468112, -7.0, -7.0, -2.591524783818118, -2.894896864485349, -3.077560700952694, -3.463252908572469, -3.1622981016733482, -4.147985320683805, -2.6935240233774413, -2.086441189701195, -2.3187758238582155, -4.605638990395859, -3.1037951717678367, -2.6306638191535563, -2.976436594866021, -3.0144659335044777, -2.354912894977539, -3.2796669440484556, -3.0769302271770527, -2.8417901249167743, -3.166943531213748, -2.822859424823976, -2.7463535562900727, -2.7227020245606064, -1.8681633440829502, -2.287497933400103, -3.1707979642445716, -3.6214479305574576, -2.9321565530043676, -2.2897007312907953, -7.0, -2.0536292292032847, -2.757150543316607, -2.6508543881639977, -2.906221190213982, -2.543166115347827, -2.7893926651894576, -2.9003823029015727, -3.1301982948974314, -2.4809669269555825, -2.733069074034461, -2.858722920116735, -3.6611498572447867, -2.6242088081307733, -2.59009456910925, -2.5353420781776848, -3.1788171333145847, -2.6919141740681636, -4.312537003107304, -1.78497131886655, -2.9230366686707856, -3.54104853143455, -2.6335946856289865, -2.625806478248694, -2.7288560129418293, -4.015558831279868, -2.6689620060235493, -3.6181422708462816, -7.0, -3.129780495005279, -2.648501656974582, -3.325310371711061, -4.30977916448048, -2.2918854502530666, -1.6406181228166998, -2.7819676747631523, -7.0, -4.322405381067654, -3.8289712226057087, -1.8098832547271022, -3.7479165080965102, -3.19694681550591, -3.264010638853782, -2.8657298689917874, -7.0, -3.2512974636775698, -2.601808027451869, -2.9248255035083397, -1.684862742461716, -2.8918112322610328, -2.7080908169076845, -2.44973545423003, -2.743234794886994, -4.3067787530377135, -2.3282378357250217, -1.8332496962960916, -3.61406366749503, -2.5190242649545627, -4.616191843248132, -3.020568434801363, -3.26382339410336, -2.523573061146692, -4.607755172446473, -7.0, -7.0, -3.9107204299073945, -3.061444101412217, -2.5751090851604386, -4.6071975872368265, -3.3600777430711926, -4.608964385524357, -3.180545705995641, -2.8454998168095504, -3.5734623643151497, -4.130794626668426, -7.0, -2.7935072291713214, -3.6542193379444026, -2.4652716859508375, -3.613366056465805, -4.611882555512116, -3.846027675364379, -2.9866669346232935, -3.541350388672851, -3.0995892481040115, -3.8367986680925994, -4.133826214076394, -3.115671015224398, -3.7679823068299627, -3.8367143411134936, -4.309214834458301, -4.306789467495679, -7.0, -3.348462489920785, -7.0, -7.0, -3.285638559729586, -2.1656723176143293, -2.0453183375247277, -4.304748959487096, -3.326253910842292, -4.132035438327499, -3.6634496339132876, -4.130344491683163, -7.0, -4.606574819558959, -3.676287061987499, -4.130569617494949, -3.405847737990737, -2.6334882587980255, -7.0, -2.305847233799526, -4.310470267690811, -3.447158031342219, -4.605402024154815, -3.571825249040829, -4.606972205508573, -3.915821787620399, -2.5750319221719042, -4.608526033577194, -7.0, -4.606993675475054, -3.641523684670229, -3.1107767046969292, -3.8340708381017388, -4.009227741996455, -3.1061714631343613, -4.007256892965124, -2.2089790645019827, -4.007758443254898, -3.21409969545611, -4.608675764480902, -4.133112920614726, -2.67966172189638, -7.0, -2.3825108726800726, -3.1963781552840014, -4.130623201682595, -3.830791762380773, -3.144293927198531, -7.0, -4.129098832497685, -3.196718862042681, -4.009663316679379, -4.008802369664495, -2.983770193312903, -3.83523596228257, -3.677434579437062, -3.709990359852276, -3.3147670747986746, -2.3589155946326024, -3.4173263504642257, -2.761614652799469, -7.0, -4.605617453352368, -2.9417783440288416, -3.32798182779077, -7.0, -3.543385044809843, -2.8733780187455484, -3.5756810811895403, -2.9349146499694263, -3.000985245323685, -3.3601861899515217, -4.129475054459623, -4.31135115757134, -7.0, -7.0, -4.609092600000719, -4.011802963585356, -2.555429791511689, -4.605897351644974, -4.60672522457584, -7.0, -2.2067772700461354, -7.0, -7.0, -4.606617797736322, -4.6070258784347855, -3.655575925143535, -4.607251232317852, -4.608322744745895, -3.2678957991631954, -3.324292746514193, -4.310023834437932, -4.60672522457584, -3.658244654605687, -7.0, -7.0, -7.0, -4.608205007704326, -4.607787318992725, -4.307282047033346, -3.1588292245226572, -3.2748503200166645, -3.6332360963830093, -4.129818743848935, -7.0, -3.4804484087285745, -7.0, -7.0, -3.0384140840327856, -7.0, -7.0, -3.7157736079156267, -3.252681139281379, -4.136287113116408, -7.0, -7.0, -7.0, -7.0, -3.1484235191525474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659136240870398, -2.99211148778695, -7.0, -7.0, -3.6110857334148725, -3.6372895476781744, -7.0, -7.0, -7.0, -2.2216749970707688, -7.0, -3.601408060534684, -7.0, -7.0, -7.0, -3.8778318914928938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.559080321020141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2079035303860515, -7.0, -3.734779833986647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.42753011836615, -7.0, -2.478566495593843, -2.4892551683692603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.507855871695831, -7.0, -2.8651039746411278, -3.7420177471401384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.217668151286279, -7.0, -2.413299764081252, -7.0, -7.0, -7.0, -7.0, -2.419955748489758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.541579243946581, -7.0, -2.859738566197147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0034605321095067, -7.0, -3.5211380837040362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9635989625972416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.569958818096594, -7.0, -3.4924111373136824, -7.0, -7.0, -2.7752462597402365, -7.0, -7.0, -7.0, -7.0, -7.0, -3.29735921414077, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7032913781186614, -7.0, -7.0, -2.5224442335063197, -2.439332693830263, -3.774159975774139, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4945812550135593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2600713879850747, -7.0, -2.2174839442139063, -7.0, -7.0, -7.0, -7.0, -7.0, -3.01378489154674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.848490862207165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3654879848909, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3873898263387296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.688953462637418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9894498176666917, -3.1601682929585118, -3.140193678578631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4409090820652177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.496022769118216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.803912112528065, -7.0, -7.0, -7.0, -7.0, -3.952550293898202, -7.0, -5.132054664397105, -7.0, -7.0, -4.545022442756734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.388775930448715, -7.0, -7.0, -4.57142930306149, -7.0, -3.734399742520567, -7.0, -7.0, -2.9813655090785445, -4.241969611913073, -7.0, -7.0, -7.0, -3.66228551572213, -2.7008767083769034, -7.0, -7.0, -3.1489109931093564, -7.0, -7.0, -7.0, -7.0, -7.0, -4.353973902321006, -4.280846876178632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.641062426376377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.156670276554126, -7.0, -7.0, -3.563308455169777, -4.563326800389584, -7.0, -4.1560744186748915, -7.0, -7.0, -3.1230890516896657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.688642251959892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.62811293764317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7363965022766426, -7.0, -7.0, -7.0, -2.4771212547196626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.530199698203082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604096393587492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5997739391463885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.877083256650651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333991061569507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6938148538894167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023992804606471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7671558660821804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5172486965011185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3047058982127653, -7.0, -7.0, -7.0, -2.745855195173729, -7.0, -7.0, -7.0, -7.0, -2.760422483423212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.08278537031645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.605973420133687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.192400170360129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9097699147327694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7535830588929064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3873898263387296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0013009330204183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.300291066777081, -3.7223870941771238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2120099425148356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.050050913799034, -4.678140369274087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603317622640193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9831299247347003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080698622871129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5833121519830775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5877109650189114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.215390216393895, -3.323870606540509, -7.0, -7.0, -3.1288606460924466, -3.031094132296288, -7.0, -7.0, -3.75564621945668, -7.0, -7.0, -2.6919651027673606, -3.6648299411430907, -7.0, -3.020637463567606, -2.8457234051996587, -7.0, -3.7505083948513462, -7.0, -7.0, -7.0, -3.758003009299799, -2.587249250978184, -3.753046561626529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.541454428747589, -7.0, -2.758927990197405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.747644819328248, -7.0, -7.0, -3.133283365860989, -3.1148194089047454, -7.0, -7.0, -3.3412366232386925, -7.0, -7.0, -7.0, -7.0, -3.7763379096201755, -3.3347887257004363, -3.7514330818193473, -7.0, -7.0, -3.058968011900246, -7.0, -7.0, -7.0, -7.0, -3.0898462599613077, -2.3264821619178067, -7.0, -3.482659240683335, -3.0176890582210874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7746629225378223, -3.7589875468676195, -7.0, -7.0, -3.770557474850995, -3.7821858664920165, -2.647883126093151, -3.4694538137671267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6979844861673534, -7.0, -7.0, -7.0, -3.781827152932428, -7.0, -7.0, -7.0, -7.0, -3.4820155764507117, -7.0, -7.0, -3.770631127777807, -2.6819945671081067, -3.0802914129703645, -7.0, -7.0, -7.0, -7.0, -2.957128197676813, -7.0, -3.0921188508484487, -2.7600818411990895, -7.0, -3.4683473304121573, -7.0, -3.0954962573424885, -7.0, -3.8009918612601714, -7.0, -2.468568852723465, -3.751048034820188, -3.752969865029084, -7.0, -7.0, -7.0, -2.3882939162119032, -7.0, -7.0, -7.0, -7.0, -7.0, -2.890507000682388, -3.59955559098598, -3.4271614029259654, -3.483515978390541, -7.0, -3.1594543943545212, -7.0, -7.0, -3.4727564493172123, -3.4202308796246506, -3.2000292665537704, -7.0, -7.0, -3.74787770581979, -3.0056598802090075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2992752680974307, -7.0, -7.0, -7.0, -3.776555910703262, -7.0, -7.0, -2.591583964972279, -7.0, -7.0, -7.0, -3.7491176623563223, -7.0, -7.0, -7.0, -3.245265839457461, -7.0, -2.9516496988610452, -7.0, -2.8934843462184863, -2.7921748216786346, -7.0, -7.0, -3.7717344253867693, -3.7774268223893115, -3.3085644135612386, -3.8069257768837317, -3.765072201102792, -3.7567881987681178, -3.4647875196459372, -7.0, -7.0, -3.828595456371702, -7.0, -3.7450747915820575, -7.0, -3.2886324266102918, -7.0, -3.0953437318725254, -7.0, -3.488762172066694, -3.748962861256161, -3.7491176623563223, -7.0, -3.745309059940828, -3.2845811128217504, -7.0, -7.0, -7.0, -3.8682916880178557, -3.7598188773748262, -7.0, -7.0, -7.0, -7.0, -7.0, -3.27315566043433, -3.745933158459443, -3.446770095200388, -2.933704163998982, -7.0, -2.340240674395174, -2.4172984115998495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7611005389581424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7571681922142726, -2.854363886031574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.200371635102761, -7.0, -3.4139699717480614, -2.934561570854449, -7.0, -7.0, -7.0, -3.5613399414589013, -3.296884475538547, -2.9298444960392853, -3.7657430414210444, -3.243026230988586, -7.0, -7.0, -7.0, -3.277471685042826, -3.191311257590993, -3.02201573981772, -3.1325158349126387, -2.8725447293769673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7466341989375787, -7.0, -3.749427099121749, -3.6034150454129286, -7.0, -3.767897616018091, -7.0, -3.116304068086073, -7.0, -7.0, -7.0, -3.142232991794714, -7.0, -3.291442854793911, -7.0, -3.345046824648355, -3.2946866242794433, -3.5132842045434782, -7.0, -7.0, -7.0, -3.2406889987319323, -7.0, -7.0, -7.0, -7.0, -3.338257230246256, -3.781180720937262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.377215156263061, -7.0, -3.1809289492744997, -3.4590907896005865, -7.0, -2.2594744195310756, -3.02626080875407, -7.0, -3.2949069106051923, -7.0, -3.319175485332129, -2.2678263615859806, -7.0, -7.0, -7.0, -7.0, -3.7792356316758635, -7.0, -3.7573960287930244, -7.0, -3.510276844417355, -7.0, -2.9835135272947686, -7.0, -7.0, -3.6705241577820797, -3.786950073527685, -4.378488748031808, -7.0, -3.905188522590824, -3.86993541064686, -4.01456253812761, -3.879841055986563, -3.4517060437782163, -7.0, -3.4285397306379886, -3.678224906041909, -3.859404233025727, -3.6333611311829688, -3.302027726021775, -7.0, -4.474201690191393, -3.5245605472800365, -4.182728418124268, -3.5828017176654714, -7.0, -3.8406210760399038, -4.105986795521472, -3.6171445574903074, -3.5353447636766573, -4.292831794508626, -3.5976220662213403, -3.379007509979479, -7.0, -3.4253401015808675, -4.342817314635733, -4.160828543144547, -4.353704703572165, -7.0, -7.0, -4.354338976788081, -4.219741661046302, -3.7431176252147416, -3.571271989040687, -3.3822872662579013, -2.8111056070179306, -3.675228253593064, -3.2592866312736266, -3.731145381297382, -7.0, -3.3745912490715475, -7.0, -2.777394357033012, -3.0563711794755286, -2.9966992588600987, -2.8162668009742573, -3.1673400601861292, -3.0156949885265183, -3.8256208250035, -7.0, -7.0, -7.0, -3.323716062508784, -3.8381771981539616, -3.878866336956725, -7.0, -3.2696841376874044, -3.278792414018181, -3.284253031569433, -7.0, -3.559068334034537, -7.0, -3.3219654120767506, -3.2220224326748212, -3.3339905934841787, -3.9709044981537835, -3.4456042032735974, -3.274003816815921, -3.693023067923694, -4.188844146546897, -3.481191725893641, -3.8361974807789254, -3.2906132849749863, -3.6432552250247716, -3.4488829162201706, -3.602548297999073, -3.760648619581356, -3.57966929355472, -3.321132199092705, -3.5027684123256932, -2.91225809382997, -7.0, -7.0, -7.0, -3.494098911669254, -7.0, -3.752432609261474, -7.0, -7.0, -3.7571681922142726, -3.3339076675505632, -7.0, -3.335858911319818, -7.0, -7.0, -3.275886960301226, -7.0, -7.0, -7.0, -3.3565612207148794, -3.2888451700660513, -3.0353660539727025, -7.0, -7.0, -7.0, -4.037386652582377, -3.241919853150198, -3.428836444372765, -7.0, -7.0, -3.6212282277689853, -7.0, -3.8085485512404054, -7.0, -7.0, -7.0, -3.304813543394108, -3.466645228363979, -3.7477224620355085, -2.670408845938452, -3.514715948325943, -3.577305059024824, -7.0, -3.8841153620116686, -2.991299929018394, -3.2242740142942576, -3.155867191785367, -7.0, -3.7517408738109004, -2.9454685851318194, -7.0, -3.777644277696485, -3.6669857183296606, -7.0, -3.413090111901509, -7.0, -3.5595475555804343, -7.0, -3.4974134646862063, -3.7545776560447304, -7.0, -2.996219709466273, -3.7655195430979527, -7.0, -3.2773035345575963, -3.956696564894651, -4.070333455853063, -7.0, -7.0, -7.0, -3.4702634469650784, -2.858329728745217, -7.0, -3.1951798424319033, -2.9876662649262746, -7.0, -3.836640541572774, -7.0, -3.3208522198317545, -7.0, -2.8562000460323604, -3.467977875279793, -3.374442827543826, -7.0, -7.0, -3.2703060911529134, -2.7864674767402824, -7.0, -2.76847365804917, -2.397731497273984, -7.0, -3.496098992132571, -3.183147776558217, -3.3953263930693507, -3.1508178199016665, -3.2399248132621516, -7.0, -3.744840396785379, -3.9021842630309194, -3.893595333819883, -7.0, -3.856366323659248, -3.333799806709918, -7.0, -3.5563326590591577, -3.184123354239671, -3.3461573022320086, -3.752202153176521, -7.0, -3.7512020945883533, -3.746011107751926, -7.0, -2.9558938212459145, -7.0, -7.0, -7.0, -7.0, -2.4742386844826463, -7.0, -7.0, -7.0, -7.0, -3.076057595762826, -3.279134394034571, -2.985201858364572, -3.8972421028053654, -3.8731461513282555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7641761323903307, -2.9188163903603797, -3.3311741373868458, -2.8346855658486145, -3.754654069255432, -7.0, -3.8794972872494284, -7.0, -3.743352951409556, -3.155085857531935, -7.0, -7.0, -3.3564083270389813, -3.0108827245590275, -3.4975515990645665, -7.0, -7.0, -3.766635886310268, -7.0, -3.171628957978357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.62283547952152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03195063308439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557374848241307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.856910060300786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7231271587956916, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7024305364455254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216271492970176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.365207100231823, -3.392345155361204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426332301677428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368565785360332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7267272090265724, -2.833784374656479, -7.0, -3.9185422038449507, -1.7075701760979363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.167317334748176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1152775913959014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.142232991794714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0149403497929366, -7.0, -7.0, -7.0, -4.79657433321043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5352941200427703, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8864907251724818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.066089764020343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.026001817357177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.650637733412055, -7.0, -4.606939998568596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.541254649786259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979206813945709, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3544926005894364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.330748497546924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6232492903979003, -4.381721405479332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.90687353472207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14646913307187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1271047983648077, -4.180632352233786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576082078509781, -7.0, -7.0, -7.0, -2.3364597338485296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.694429690957083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02428037604708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.611723308007342, -7.0, -4.517341078522992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.271066772286538, -7.0, -7.0, -7.0, -7.0, -2.765668554759014, -7.0, -7.0, -2.6127838567197355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2009872191631663, -7.0, -7.0, -7.0, -7.0, -4.73569468938689, -7.0, -7.0, -2.999130541287371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.125277896705118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1917303933628562, -7.0, -7.0, -7.0, -7.0, -3.1126701557128023, -7.0, -7.0, -2.325310371711061, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.03342375548695, -7.0, -2.1893967258352185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.921686475483602, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.424881636631067, -7.0, -7.0, -7.0, -7.0, -7.0, -3.404833716619938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.946452265013073, -7.0, -7.0, -7.0, -3.022840610876528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0043213737826426, -4.543273178913283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2422100322640643, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3481100684802376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.300443302006029, -3.24551266781415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.135069013823448, -3.6901074394563307, -7.0, -7.0, -7.0, -7.0, -7.0, -4.181414796254284, -7.0, -7.0, -4.351255033547635, -4.979211369856581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5871494982543437, -7.0, -7.0, -7.0, -7.0, -4.2730707536224655, -7.0, -7.0, -7.0, -3.851288931760664, -7.0, -7.0, -4.60339339779644, -7.0, -7.0, -7.0, -7.0, -7.0, -3.585009279902461, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9834909718151668, -7.0, -7.0, -7.0, -3.7697464671794534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.606381365110605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779686659322491, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.282848602834645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8155872347755277, -7.0, -7.0, -7.0, -7.0, -3.176958980586908, -7.0, -2.410496045616074, -7.0, -2.705007959333336, -7.0, -3.2125604579711435, -7.0, -2.5786392099680726, -3.053462604925455, -2.328350640239603, -2.57978359661681, -7.0, -7.0, -2.1197506238845842, -1.4819201376014313, -2.745855195173729, -3.657915936829955, -1.904895787855206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.252610340567373, -7.0, -3.4951080400257655, -7.0, -2.8041394323353503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.645422269349092, -3.212986184736668, -2.8752266774031847, -7.0, -2.677606952720493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5597869682005565, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9515533709285438, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.552668216112193, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9960736544852753, -7.0, -2.076154791417437, -7.0, -4.04431759147577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.593286067020457, -7.0, -7.0, -2.651762447380111, -7.0, -7.0, -7.0, -7.0, -2.5341754764727074, -7.0, -7.0, -7.0, -2.8506462351830666, -7.0, -7.0, -7.0, -7.0, -2.625312450961674, -2.851869600729766, -2.1680553034591394, -3.056221760948491, -7.0, -2.0549958615291413, -7.0, -2.8750612633917, -7.0, -7.0, -2.756636108245848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4448251995097476, -7.0, -7.0, -7.0, -7.0, -2.625312450961674, -7.0, -7.0, -7.0, -2.591435640352701, -7.0, -7.0, -2.325310371711061, -4.082210716601243, -7.0, -7.0, -7.0, -7.0, -2.574031267727719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6158125181252205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5669086552268032, -7.0, -7.0, -3.0485435302695847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8135809885681917, -2.7331972651065692, -2.3417641598743475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3263358609287517, -2.226342087163631, -2.9995654882259823, -7.0, -5.150065315969936, -2.5658478186735176, -7.0, -2.2922560713564764, -7.0, -7.0, -7.0, -2.4742162640762553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8898617212581885, -3.704236337308788, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2315715255284156, -7.0, -2.359076226059263, -1.6343092970463176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8394780473741985, -7.0, -7.0, -7.0, -7.0, -2.611723308007342, -7.0, -2.3453737305590883, -2.9780282664601656, -2.3961993470957363, -7.0, -7.0, -4.307955761568559, -7.0, -7.0, -3.291442854793911, -7.0, -7.0, -7.0, -2.351216345339342, -2.5643701225153204, -2.3932826505593647, -2.829303772831025, -7.0, -7.0, -7.0, -7.0, -2.7774268223893115, -7.0, -7.0, -7.0, -7.0, -2.3349561161368517, -7.0, -7.0, -1.8075350280688534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.857935264719429, -7.0, -3.4836348361821106, -7.0, -4.655200884173701, -7.0, -2.8208579894397, -3.166405442926589, -1.408471239559919, -7.0, -2.5722906061514177, -7.0, -2.7351995484223135, -3.158060793936605, -1.6319695947927622, -2.591064607026499, -2.256477206241677, -7.0, -2.926342446625655, -7.0, -7.0, -7.0, -2.414639146737009, -7.0, -2.360868697296455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.350441856535061, -7.0, -7.0, -4.433657846692988, -7.0, -7.0, -7.0, -7.0, -7.0, -4.396652590685603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -3.7050721993278177, -7.0, -2.936513742478893, -7.0, -7.0, -4.068024982143691, -3.7946971268919985, -3.2523675144598987, -4.075911761482778, -3.3665474682594816, -3.416057729263038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.755150427678159, -4.980648649207456, -7.0, -7.0, -3.0159881053841304, -7.0, -7.0, -7.0, -4.641929979522693, -7.0, -7.0, -7.0, -7.0, -4.011824095594308, -7.0, -7.0, -7.0, -7.0, -4.161936705245781, -7.0, -7.0, -4.004675974470456, -7.0, -7.0, -3.4886111428830153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7267272090265724, -2.4235735197327357, -7.0, -3.4055171069763763, -3.395195298492141, -7.0, -7.0, -7.0, -3.3150602414300163, -7.0, -3.5883022719472812, -2.44870631990508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9041743682841634, -2.4705574852172743, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6427216572370735, -7.0, -7.0, -7.0, -2.8573324964312685, -7.0, -2.143014800254095, -7.0, -2.6766936096248664, -2.9667672920577095, -7.0, -7.0, -3.3137617962924364, -2.6180480967120925, -7.0, -7.0, -7.0, -7.0, -7.0, -2.709269960975831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8674674878590514, -3.2300997622960104, -2.8943160626844384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8488047010518036, -3.287353772714747, -2.56702636615906, -2.346352974450639, -2.662547976890391, -2.0221074695639487, -7.0, -3.034788831251184, -2.7489628612561616, -2.682145076373832, -2.338854746252323, -3.263951517653659, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.01556930642988, -7.0, -7.0, -7.0, -2.8690849738326705, -7.0, -7.0, -2.6702458530741238, -7.0, -2.8512583487190755, -2.3643633546157306, -7.0, -7.0, -7.0, -7.0, -3.31072364970371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6802347607214068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.217220655644519, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.181252698040852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.898396045930009, -7.0, -7.0, -2.9444826721501687, -3.974327435423617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.08099906042334, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335437840434784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2810333672477277, -3.1405080430381793, -1.678094487894716, -7.0, -7.0, -2.587336734507256, -7.0, -7.0, -7.0, -1.7501225267834002, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.217246991685393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5037906830571814, -2.8692317197309762, -7.0, -7.0, -7.0, -4.518197974435138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1072099696478683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.660865478003869, -2.9694159123539814, -7.0, -3.5110808455391185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4038066105474227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7719914586957577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7058637122839193, -7.0, -7.0, -2.4424797690644486, -7.0, -7.0, -3.385151106409871, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2095150145426308, -7.0, -7.0, -7.0, -7.0, -3.1132746924643504, -2.2764618041732443, -2.7234556720351857, -7.0, -7.0, -7.0, -7.0, -2.6020599913279625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7774268223893115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9838517189914717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.895790748250444, -3.168202746842631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6434526764861874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.287801729930226, -3.1144441724452543, -7.0, -7.0, -7.0, -7.0, -2.4409090820652177, -7.0, -7.0, -7.0, -7.0, -2.351216345339342, -7.0, -1.9645134657464558, -2.391816923613249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.031408464251624, -3.7658051038819447, -2.983175072037813, -7.0, -2.2166056942039845, -7.0, -2.444044795918076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45484486000851, -7.0, -7.0, -4.140109809610688, -7.0, -7.0, -7.0, -4.126082680390729, -7.0, -7.0, -4.396478322202103, -7.0, -7.0, -7.0, -7.0, -4.655436189551822, -4.324878943111994, -7.0, -7.0, -7.0, -4.350228629754866, -7.0, -4.6076480001038265, -7.0, -7.0, -7.0, -4.483359036280687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9779749661809207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.387425422788231, -7.0, -2.7271344237604884, -4.570542939881897, -4.000781027353495, -3.728272597895017, -7.0, -7.0, -7.0, -7.0, -3.7768464086952993, -7.0, -7.0, -4.137132476008993, -3.695831772826692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.172232104932835, -7.0, -3.2615007731982804, -7.0, -7.0, -7.0, -7.0, -3.5943925503754266, -4.054153240345694, -7.0, -7.0, -7.0, -7.0, -7.0, -3.638389407665336, -7.0, -7.0, -7.0, -7.0, -4.604096393587492, -7.0, -7.0, -4.632467415481234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.986368593570273, -7.0, -7.0, -7.0, -3.3604040547299387, -3.9864134054654685, -7.0, -7.0, -7.0, -7.0, -7.0, -4.627335127122439, -7.0, -7.0, -7.0, -3.4373541278481747, -7.0, -3.4207806195485655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.177277706914103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.500648063371912, -7.0, -7.0, -7.0, -7.0, -3.8503939374562877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.29014595464781, -2.852479993636856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.010278750336827, -3.0909630765957314, -7.0, -4.280031744138702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8474184078594025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.658393026279124, -7.0, -7.0, -7.0, -7.0, -3.032014034159506, -7.0, -7.0, -4.276599653557644, -7.0, -7.0, -3.1455071714096627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8154842088373986, -7.0, -7.0, -7.0, -7.0, -3.7229628089424898, -2.7863964613723042, -7.0, -7.0, -7.0, -7.0, -2.9502674680135885, -3.2079035303860515, -2.582063362911709, -2.49876988168213, -3.083297812242457, -7.0, -7.0, -3.0572856444182146, -2.8135809885681917, -3.0982975364946976, -7.0, -4.269220981530011, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8782727899035083, -7.0, -7.0, -2.841672250073634, -7.0, -7.0, -7.0, -7.0, -7.0, -2.479647278769387, -7.0, -2.1620979090990606, -2.780677274433368, -7.0, -2.861733491532661, -7.0, -7.0, -7.0, -2.18998131938412, -3.197280558125619, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7539658658651605, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0689276116820716, -7.0, -7.0, -7.0, -2.269512944217916, -7.0, -7.0, -7.0, -7.0, -2.594760752586463, -3.0569048513364727, -2.4896772916636984, -2.8257505813480277, -2.2415464805965484, -7.0, -7.0, -7.0, -3.4898051268519477, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0755469613925306, -7.0, -7.0, -7.0, -3.4929000111087034, -7.0, -7.0, -7.0, -2.4369573306694496, -7.0, -7.0, -7.0, -7.0, -2.218010042984363, -7.0, -7.0, -2.571417652125032, -7.0, -2.9487970654459246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1524921906585206, -3.1756406459012965, -7.0, -7.0, -7.0, -3.7441442802773826, -3.084576277934331, -7.0, -2.235317981925527, -7.0, -7.0, -2.7993405494535817, -7.0, -7.0, -7.0, -3.5288310321677203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188084373714938, -7.0, -7.0, -7.0, -7.0, -7.0, -2.962064769456804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.263636068588108, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1789931049835896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0637085593914173, -2.0529113107194163, -7.0, -7.0, -7.0, -7.0, -1.6083564501871657, -2.0766404436703416, -2.5868684924328913, -2.398518682284506, -2.3530089588591445, -2.384583802303419, -7.0, -3.1528995963937474, -3.1179338350396413, -2.8549130223078554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1876617026529592, -7.0, -7.0, -2.7810369386211318, -7.0, -7.0, -7.0, -3.140193678578631, -7.0, -7.0, -7.0, -2.9970950093565927, -2.829303772831025, -7.0, -3.0599418880619544, -3.0629578340845103, -7.0, -7.0, -3.090258052931316, -7.0, -7.0, -1.9975501969906566, -7.0, -3.323355245756284, -5.1524290085454965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.062581984228163, -7.0, -7.0, -7.0, -2.411578647633547, -7.0, -7.0, -7.0, -7.0, -3.0870712059065353, -2.613136798211654, -7.0, -3.1258064581395266, -3.3059958827708047, -7.0, -3.5296869537729165, -2.0893751608160995, -7.0, -7.0, -7.0, -3.4602963267574753, -2.1424463518981964, -2.5080057059156724, -7.0, -3.8113202523041845, -7.0, -7.0, -7.0, -2.5575072019056577, -7.0, -2.680335513414563, -2.900913067737669, -3.36679638328673, -7.0, -7.0, -7.0, -7.0, -3.2203696324513946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7831886910752575, -2.105874984860221, -3.2487087356009177, -7.0, -3.1085650237328344, -3.5029730590656314, -7.0, -7.0, -3.345046824648355, -7.0, -7.0, -2.5643701225153204, -1.9645134657464558, -7.0, -1.3371471560081591, -7.0, -7.0, -7.0, -7.0, -3.5213308159082533, -3.2946866242794433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1264561134318045, -7.0, -7.0, -7.0, -7.0, -7.0, -3.534660575828444, -4.531488496961931, -7.0, -1.7762310063625517, -3.85751341477669, -2.9960736544852753, -7.0, -3.1818435879447726, -7.0, -2.1851642610024675, -7.0, -3.296665190261531, -7.0, -7.0, -7.0, -3.2081725266671217, -3.0751818546186915, -7.0, -7.0, -2.714329759745233, -7.0, -1.2549817153489515, -7.0, -7.0, -2.9835237793982574, -4.277548095564673, -3.9890714250951618, -3.185825359612962, -4.443435106114942, -2.522299299588104, -3.773859552376687, -4.413936485917295, -3.5364716381249224, -7.0, -7.0, -4.585652453577532, -3.664970861964803, -3.9057891366123747, -3.205255127948347, -7.0, -3.228246326255246, -3.229217148268312, -7.0, -4.317415586331099, -7.0, -4.803696048445993, -7.0, -3.51262823139563, -7.0, -7.0, -4.634819733995179, -4.464385208841898, -7.0, -3.2969097705624963, -3.643798000679235, -3.8925620527814804, -4.25956998964356, -3.9023836844324715, -3.377306251068199, -4.260357641636152, -7.0, -4.06597163517446, -3.501914678058426, -3.7023012628973455, -7.0, -3.883252494933286, -2.730823670555798, -2.2079311274173823, -7.0, -7.0, -7.0, -3.440400412823879, -3.242913946818925, -2.804990823476288, -3.625895235608653, -3.6911109747937583, -3.4759615891924236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9236325331770483, -3.870084122344106, -4.874171496513056, -7.0, -3.153204900084284, -7.0, -3.2058391377710587, -7.0, -4.9467714818461905, -3.3935752032695876, -7.0, -7.0, -7.0, -7.0, -4.29754166781816, -7.0, -3.252610340567373, -7.0, -3.1838959153856106, -3.5576274884268266, -3.1344958558346736, -3.4686004895460547, -3.1266299633528254, -7.0, -4.040572674177254, -7.0, -7.0, -2.257145043497534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.580558430866771, -3.1152775913959014, -2.719952447254438, -7.0, -1.8555864516285612, -3.029221394253928, -3.0090257420869104, -7.0, -7.0, -3.5422027824340283, -7.0, -3.433259658266407, -2.977494969073036, -7.0, -7.0, -2.0899730070827633, -3.111598524880394, -2.1961401255504294, -7.0, -7.0, -2.0860259719918854, -7.0, -3.3085644135612386, -2.2947417063369593, -3.13481437032046, -7.0, -3.1879153546499897, -7.0, -3.0770043267933502, -4.48274499054841, -2.005313299120557, -3.5444866265309787, -7.0, -7.0, -2.871864702088195, -7.0, -3.1248301494138593, -7.0, -2.7937903846908188, -3.249442961442582, -7.0, -3.2022157758011316, -7.0, -3.074084689028244, -3.2979063453791824, -2.2744144486696105, -2.5505340865995074, -7.0, -7.0, -3.1082266563749283, -2.82865989653532, -4.350596864828633, -7.0, -3.0948203803548, -7.0, -7.0, -3.389402370813181, -7.0, -7.0, -3.2699019227319654, -7.0, -2.765080808180291, -2.7134905430939424, -7.0, -2.5550944485783194, -7.0, -7.0, -7.0, -3.482373285458582, -2.93976877545335, -7.0, -2.8677620246502005, -3.1314582601065255, -3.0569048513364727, -3.085290578230065, -2.2250417766469384, -2.9375178920173464, -7.0, -3.0925803006913113, -7.0, -7.0, -2.970346876230093, -7.0, -3.442793225939769, -7.0, -3.1061908972634154, -7.0, -7.0, -2.607901598556746, -3.534914104429867, -7.0, -3.4446692309385245, -2.8542047958554297, -2.30788484230973, -3.3979834359489, -3.8255126650941165, -3.5251096222719336, -7.0, -7.0, -2.7913397039651393, -7.0, -7.0, -2.808885867359812, -7.0, -7.0, -7.0, -7.0, -2.89915787514118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2219355998280053, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1455071714096627, -2.654818040490762, -3.1492191126553797, -3.445136968713304, -7.0, -7.0, -7.0, -7.0, -1.9119981789673555, -7.0, -7.0, -3.69727294443456, -7.0, -7.0, -2.9059756752294317, -7.0, -3.27669152884504, -7.0, -7.0, -7.0, -7.0, -3.6549462265843444, -7.0, -7.0, -7.0, -2.711807229041191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5818264448534065, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3944516808262164, -7.0, -7.0, -7.0, -7.0, -3.1356096360286796, -7.0, -2.6263403673750423, -2.288174674978394, -3.1382108046537596, -2.6273658565927325, -2.7015679850559273, -7.0, -7.0, -2.4191293077419758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0402462150577065, -7.0, -2.833147111912785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.079181246047625, -7.0, -2.4918558654960536, -2.6830470382388496, -2.716003343634799, -3.1640552918934515, -7.0, -7.0, -7.0, -2.7209857441537393, -7.0, -7.0, -7.0, -7.0, -7.0, -4.038818787373656, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9370161074648142, -7.0, -7.0, -4.2249472187770865, -7.0, -7.0, -7.0, -2.667452952889954, -7.0, -7.0, -7.0, -2.6159500516564007, -2.916453948549925, -7.0, -2.410355383434471, -7.0, -7.0, -7.0, -4.221009751372294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3607826898732798, -7.0, -7.0, -2.7535830588929064, -7.0, -1.6788536861072663, -7.0, -7.0, -2.584331224367531, -7.0, -3.0690758097663977, -7.0, -7.0, -7.0, -2.8767949762007006, -7.0, -7.0, -3.548880562637515, -7.0, -7.0, -7.0, -7.0, -4.039525157450326, -2.688419822002711, -7.0, -2.5289167002776547, -7.0, -7.0, -2.7283537820212285, -2.486430478854434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.61066016308988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1801975823353392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.859738566197147, -7.0, -2.929929560084588, -7.0, -7.0, -2.733083728305306, -2.649334858712142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.019116290447073, -7.0, -7.0, -7.0, -7.0, -2.067913944212041, -7.0, -2.6138418218760693, -2.8948696567452528, -2.6339731557896737, -2.99211148778695, -3.1085650237328344, -2.8419848045901137, -2.7671558660821804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0707764628434346, -7.0, -3.0161973535124393, -7.0, -7.0, -2.61066016308988, -7.0, -2.815577748324267, -7.0, -7.0, -2.611723308007342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0413926851582254, -7.0, -3.5423273827739745, -5.150200555623702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6314437690131722, -7.0, -2.60422605308447, -7.0, -3.1513260639408345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6702458530741238, -7.0, -1.9153244434089554, -7.0, -7.0, -7.0, -7.0, -2.2105860249051563, -2.6648982721005385, -7.0, -3.898396045930009, -7.0, -7.0, -7.0, -2.5953960038761497, -7.0, -3.0773679052841567, -2.919862253555538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.656098202012832, -7.0, -1.2661924845114636, -2.2820931765145813, -7.0, -2.8651039746411278, -7.0, -4.609477016473619, -7.0, -7.0, -3.2946866242794433, -7.0, -7.0, -2.3932826505593647, -2.391816923613249, -1.3371471560081591, -7.0, -7.0, -7.0, -7.0, -7.0, -4.098799421026242, -3.0948203803548, -7.0, -7.0, -7.0, -7.0, -2.356503891894005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.956310929988667, -7.0, -2.835056101720116, -4.246670885690703, -2.797613730153076, -7.0, -2.8992731873176036, -7.0, -2.1457400995364067, -2.988261596728756, -7.0, -1.780214410947417, -7.0, -7.0, -2.1653432655224587, -7.0, -7.0, -7.0, -3.130655349022031, -7.0, -0.657335977420039, -7.0, -7.0, -3.4439718866479825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3729760062834497, -7.0, -4.040523226445596, -7.0, -4.658259494054264, -4.20194306340165, -3.6190933306267428, -7.0, -4.392204356370863, -4.0520106121467645, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8833135764397375, -7.0, -7.0, -4.150275329169186, -4.453410082711584, -7.0, -3.927900501473422, -7.0, -4.282406837957956, -7.0, -7.0, -7.0, -4.242665636645263, -7.0, -7.0, -4.3926442017384275, -7.0, -7.0, -4.272920196193132, -3.161517733138683, -2.5451524256424958, -2.958085848521085, -7.0, -7.0, -3.5912996316026833, -7.0, -7.0, -3.600246650564494, -3.3679147387937527, -3.419707981354444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.153471864867516, -4.378761175316373, -7.0, -7.0, -3.3265406685165617, -7.0, -4.61371500205274, -7.0, -4.943187730378209, -3.3245910857609267, -7.0, -7.0, -7.0, -7.0, -3.8041167057081755, -7.0, -3.1893967258352185, -3.564784384503987, -2.8398370426266326, -7.0, -7.0, -3.3058348440883205, -3.963787827345555, -7.0, -4.635443532501082, -7.0, -7.0, -3.3226327116922234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1537713238680873, -7.0, -2.357934847000454, -7.0, -2.4560284548128597, -2.9192960569888813, -7.0, -2.8115750058705933, -7.0, -3.3181329278612206, -7.0, -3.483953893345673, -3.0696680969115957, -7.0, -7.0, -2.8058782758252425, -3.269746373130767, -2.6872316010647745, -7.0, -7.0, -2.809963521714014, -7.0, -7.0, -2.4573771965239053, -7.0, -7.0, -3.366982975977851, -7.0, -7.0, -7.0, -2.677567282066718, -4.743172546066673, -7.0, -7.0, -2.5809249756756194, -7.0, -2.782472624166286, -7.0, -7.0, -3.4513258084895195, -7.0, -7.0, -7.0, -7.0, -3.7188337183038622, -2.3873898263387296, -2.8502376796666677, -7.0, -7.0, -2.7450747915820575, -2.811909980420099, -7.0, -7.0, -2.2329961103921536, -7.0, -7.0, -3.520418023353549, -7.0, -7.0, -3.6868149545073168, -7.0, -3.035905475957212, -7.0, -7.0, -2.5520595341878844, -7.0, -7.0, -7.0, -7.0, -7.0, -2.800717078282385, -2.8750612633917, -7.0, -7.0, -2.3873898263387296, -1.8476577398519354, -2.3005954838899636, -7.0, -3.13537120918662, -7.0, -3.4683473304121573, -7.0, -3.443654067612905, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1280529137413957, -7.0, -2.7450747915820575, -7.0, -3.5392015992941275, -2.7058637122839193, -3.967547976218862, -4.286703412934269, -7.0, -2.720159303405957, -7.0, -2.4065401804339555, -7.0, -7.0, -2.3805730030668872, -7.0, -7.0, -7.0, -7.0, -2.980579017498445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1405080430381793, -7.0, -2.9731278535996988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.800717078282385, -7.0, -3.6856521841155243, -7.0, -7.0, -7.0, -7.0, -2.2080828797513523, -7.0, -7.0, -4.283323847618786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7122286696195355, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7151673578484576, -7.0, -3.712528112078682, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2216749970707688, -7.0, -3.945222316635341, -1.9159836783557305, -7.0, -7.0, -3.2193851792311725, -7.0, -7.0, -7.0, -3.0729847446279304, -7.0, -3.081707270097349, -1.983613128335068, -3.0576661039098294, -3.0136796972911926, -2.751279103983342, -2.472390727626629, -1.7913898563391086, -7.0, -7.0, -7.0, -3.085825533520743, -7.0, -3.273541391414393, -7.0, -2.807873132003332, -7.0, -7.0, -7.0, -1.9497964591611532, -7.0, -7.0, -7.0, -7.0, -2.992995098431342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2940250940953226, -7.0, -7.0, -7.0, -4.062243441026478, -7.0, -7.0, -7.0, -7.0, -7.0, -2.318957251879195, -7.0, -7.0, -3.9392695863387313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9135489579065177, -7.0, -2.6599162000698504, -7.0, -3.4882557883675878, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.734799829588847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.79049627696711, -7.0, -7.0, -2.7327956982893293, -3.1332194567324945, -3.2631624649622166, -7.0, -3.1399839757827155, -7.0, -3.030194785356751, -2.6554585929400747, -7.0, -4.442291586286071, -7.0, -2.6524880857810116, -3.2931414834509307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146128035678238, -2.9331074937869817, -3.2434101416537113, -7.0, -7.0, -7.0, -7.0, -7.0, -3.15259407792747, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3264724100516823, -7.0, -3.009450895798694, -7.0, -7.0, -3.0107238653917734, -7.0, -7.0, -2.3000983660999252, -2.645422269349092, -2.305351369446624, -2.158060793936605, -7.0, -7.0, -3.0019339278663946, -7.0, -7.0, -7.0, -3.037824750588342, -7.0, -7.0, -7.0, -3.100198171834132, -7.0, -3.904715545278681, -7.0, -7.0, -2.996411332117376, -7.0, -7.0, -7.0, -3.1670217957902564, -7.0, -7.0, -7.0, -2.7741518589547103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1702617153949575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.621868384681515, -7.0, -7.0, -7.0, -7.0, -3.090258052931316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1760912590556813, -2.7390446475663306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.011993114659257, -2.3145693943004555, -7.0, -2.4405155211122285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0677732303783953, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7450747915820575, -7.0, -3.084576277934331, -7.0, -7.0, -7.0, -3.3754807146185724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9624369880545964, -4.207715133805567, -7.0, -7.0, -7.0, -7.0, -3.230193378869046, -2.7774268223893115, -2.576149311961716, -3.042181594515766, -7.0, -7.0, -7.0, -7.0, -7.0, -3.127428777851599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.588582917519855, -7.0, -7.0, -7.0, -4.615897470449012, -7.0, -7.0, -3.5132842045434782, -3.0149403497929366, -7.0, -2.829303772831025, -7.0, -7.0, -7.0, -7.0, -1.3328123682313433, -1.4131425344354496, -7.0, -3.822075124343057, -3.2671717284030137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1172712956557644, -7.0, -7.0, -7.0, -7.0, -2.449478399187365, -2.7168377232995247, -2.65864725984816, -7.0, -3.2121876044039577, -7.0, -4.112124420332844, -7.0, -2.595055089759304, -3.3242824552976926, -2.968716377466786, -7.0, -7.0, -7.0, -7.0, -2.7011977951071855, -7.0, -7.0, -7.0, -7.0, -7.0, -3.028571252692538, -1.9915952167958098, -3.035829825252828, -1.5523405703162654, -3.0402066275747113, -2.804412059137714, -7.0, -7.0, -4.6266174881854045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7398728450231316, -7.0, -7.0, -7.0, -7.0, -7.0, -4.407832623263632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.992995098431342, -7.0, -4.32095593690098, -7.0, -7.0, -7.0, -7.0, -4.553166699496046, -2.757206173278786, -3.387033701282363, -7.0, -3.863679667875898, -7.0, -7.0, -7.0, -7.0, -3.0831441431430524, -7.0, -7.0, -7.0, -7.0, -4.068482713761754, -4.983590207164233, -5.174856107981183, -7.0, -2.4788870081411605, -7.0, -4.3190227334304145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2948848870000305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.534311732164361, -4.573010925673387, -7.0, -4.3404441148401185, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7528164311882715, -7.0, -7.0, -7.0, -7.0, -3.0729847446279304, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7965743332104296, -7.0, -7.0, -7.0, -4.3354177792535475, -7.0, -7.0, -2.8452531174956057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.63574217852852, -7.0, -7.0, -7.0, -7.0, -2.835056101720116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2474822606770544, -7.0, -7.0, -7.0, -7.0, -7.0, -3.06595298031387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8287994840969963, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7547304690237535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6816029987308685, -3.2076343673889616, -3.185258765296585, -3.7835462822703496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0145205387579237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8228869478341507, -7.0, -7.0, -3.2229764498933915, -7.0, -7.0, -2.8318697742805017, -3.258876629372131, -7.0, -7.0, -7.0, -7.0, -3.874365835730049, -2.735997884091794, -3.15259407792747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.43560550202284, -7.0, -3.5684364144168854, -7.0, -7.0, -7.0, -7.0, -7.0, -3.819609732751585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.171726453653231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.756778694670736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4845188481673137, -7.0, -7.0, -3.836950990105, -7.0, -2.574031267727719, -7.0, -7.0, -7.0, -7.0, -2.639126308050443, -7.0, -7.0, -7.0, -7.0, -2.47928731647617, -7.0, -7.0, -7.0, -7.0, -7.0, -4.037705313135537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.92054071650248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.504470862494419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.795880017344075, -7.0, -7.0, -7.0, -7.0, -2.5289167002776547, -2.494850021680094, -2.708420900134713, -4.436496591295506, -7.0, -2.7271344237604884, -2.788168371141168, -7.0, -7.0, -2.60959440922522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6019152023678274, -7.0, -2.459392487759231, -7.0, -7.0, -7.0, -7.0, -7.0, -2.829303772831025, -2.2952004520032574, -2.080987046910887, -2.074938279468222, -2.6273658565927325, -7.0, -3.7748979720461997, -7.0, -7.0, -7.0, -2.552668216112193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5254057973664397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3479151865016914, -7.0, -7.0, -7.0, -2.552668216112193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3935752032695876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.961421094066448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.574031267727719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388988785124714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.379305517750582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.055378331375, -4.021602716028243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.582915199370299, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7831886910752575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.442793225939769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3328123682313433, -7.0, -1.971022689604208, -7.0, -4.496337968483268, -2.568983532526376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5998830720736876, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530121223452704, -7.0, -2.792391689498254, -4.245092976101281, -7.0, -7.0, -7.0, -7.0, -7.0, -3.446537167073644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.667452952889954, -7.0, -2.2380461031287955, -1.9506082247842307, -2.9132839017604186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.395186557446505, -7.0, -7.0, -4.652893914321198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.572488232028253, -7.0, -3.741624257503812, -7.0, -7.0, -7.0, -7.0, -2.942858083269675, -3.2314695904306814, -7.0, -7.0, -3.4090027034017725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6961378757818526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278410601475816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605897351644974, -7.0, -7.0, -4.634154704380864, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6020599913279625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.993832866613986, -7.0, -2.1089031276673134, -7.0, -7.0, -7.0, -4.629042434519568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.169292274879936, -7.0, -7.0, -7.0, -3.3807537708039, -2.803457115648414, -7.0, -7.0, -7.0, -7.0, -3.431202884556517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.814913181275074, -3.9353380926686246, -7.0, -7.0, -7.0, -7.0, -7.0, -2.304275050477128, -3.717670503002262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3083509485867255, -7.0, -2.422699247707434, -3.426429925193928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4771212547196626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.982745983047542, -7.0, -7.0, -7.0, -7.0, -7.0, -2.494154594018443, -2.7319914490189294, -7.0, -7.0, -7.0, -7.0, -7.0, -2.249198357391113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6074550232146687, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7024305364455254, -7.0, -3.674034000431255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.979343470486138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7616459815267613, -7.0, -7.0, -7.0, -3.369957607346053, -2.4121509531021377, -7.0, -7.0, -7.0, -7.0, -7.0, -3.456973013635818, -1.7240759641970738, -7.0, -7.0, -3.7351310513165665, -7.0, -2.6473829701146196, -7.0, -2.682145076373832, -7.0, -7.0, -2.5468154354551418, -7.0, -7.0, -7.0, -7.0, -2.4448251995097476, -7.0, -7.0, -7.0, -3.3463529744506384, -7.0, -3.445545826436101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.97657921864011, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9344984512435675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.053923150548575, -7.0, -7.0, -7.0, -7.0, -7.0, -3.097604328874411, -7.0, -7.0, -3.9337655925566613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8512583487190755, -7.0, -7.0, -7.0, -3.5268559871258747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.677606952720493, -7.0, -7.0, -7.0, -7.0, -7.0, -3.02201573981772, -3.606560492554639, -7.0, -7.0, -7.0, -3.0569048513364727, -2.906335041805091, -7.0, -3.29269900304393, -3.642068627341504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.940267391446012, -7.0, -7.0, -7.0, -3.000867721531227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731346975545955, -3.0296542818869807, -2.9138138523837167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4951626011919386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.873029812061044, -2.167317334748176, -2.1958996524092336, -2.3966351669836934, -2.3909351071033793, -2.010959191586587, -7.0, -3.390662182998049, -7.0, -7.0, -7.0, -7.0, -2.4409090820652177, -7.0, -7.0, -3.060697840353612, -7.0, -7.0, -7.0, -7.0, -3.2610797766810538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.300812794118117, -7.0, -7.0, -7.0, -7.0, -2.904715545278681, -1.9372589788376664, -7.0, -7.0, -7.0, -2.940516484932567, -7.0, -7.0, -2.7155855518931964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.932980821923198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.012415374762433, -7.0, -2.6473829701146196, -2.8937617620579434, -7.0, -2.1271047983648077, -2.911157608739977, -7.0, -2.89707700320942, -2.0284808782292205, -3.536263763030023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3334472744967503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.735997884091794, -4.204757384698596, -7.0, -7.0, -7.0, -3.675778341674085, -3.1702617153949575, -7.0, -7.0, -2.5974757898703773, -7.0, -7.0, -7.0, -7.0, -3.1209028176145273, -2.4456042032735974, -7.0, -7.0, -2.5185139398778875, -2.325310371711061, -7.0, -7.0, -7.0, -3.0391496280096777, -7.0, -3.0492180226701815, -7.0, -4.136424596607705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4131425344354496, -1.971022689604208, -7.0, -7.0, -3.6686550668554445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.936513742478893, -7.0, -7.0, -2.8987251815894934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4892551683692608, -4.287888068556725, -7.0, -2.943247125137862, -3.9503283370492603, -7.0, -7.0, -7.0, -7.0, -3.1818435879447726, -3.0423129401940403, -7.0, -7.0, -7.0, -7.0, -3.105510184769974, -7.0, -2.9912260756924947, -2.0278590441755795, -2.761927838420529, -2.4643901779147406, -2.7734938922709707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.738138151971374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9417598138146954, -7.0, -3.839184647626194, -7.0, -7.0, -7.0, -7.0, -3.8514295860194783, -2.037824750588342, -2.1361257789120067, -3.7902499685648565, -3.8571213297287215, -3.052155067199565, -7.0, -7.0, -7.0, -2.146128035678238, -7.0, -7.0, -7.0, -7.0, -3.5201465220033143, -4.505462015353893, -7.0, -2.968015713993642, -2.6989700043360187, -2.506505032404872, -3.6633763131685053, -7.0, -7.0, -3.6638892986226614, -4.079543007402906, -7.0, -3.2323183194127485, -7.0, -7.0, -7.0, -7.0, -7.0, -3.174117981254267, -7.0, -7.0, -3.766179064078007, -3.616031831994069, -3.2113875529368587, -3.736087605088271, -7.0, -3.398981066658131, -3.3608772971020398, -3.5587885437369464, -7.0, -2.659440781870318, -7.0, -7.0, -7.0, -7.0, -2.984077033902831, -2.945222316635341, -7.0, -7.0, -3.1122697684172707, -7.0, -1.8908078032841642, -7.0, -3.821644517542217, -7.0, -3.487875383480801, -3.1934029030624176, -7.0, -3.4129642719966626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4650852875574327, -2.359076226059263, -7.0, -7.0, -7.0, -7.0, -3.205745540942662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9745116927373285, -7.0, -7.0, -7.0, -2.9561684304753633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5888317255942073, -3.7215238812040106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0587106521997347, -2.665893545534433, -7.0, -2.7662640906519957, -7.0, -7.0, -3.184691430817599, -3.472902651803664, -7.0, -7.0, -7.0, -7.0, -7.0, -4.283617786365643, -7.0, -7.0, -7.0, -4.325577231940418, -7.0, -3.985291718592888, -3.693111115462141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.724821808681988, -7.0, -7.0, -7.0, -7.0, -3.5668203510856804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.358886204405869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.417803722639881, -7.0, -7.0, -7.0, -7.0, -3.4528593357958526, -7.0, -7.0, -3.6897970549034977, -7.0, -7.0, -3.3180633349627615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659250468772661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0328374069729644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6599162000698504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7609122963641055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7369141595391175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4186326873540653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0051805125037805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.42758347362526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.671043183218105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0308020487722676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9878002857518724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1400888398377713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.953131225183445, -7.0, -5.433107089399942, -7.0, -7.0, -4.545170991450791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.141031478658857, -4.747505027465768, -7.0, -7.0, -3.951386094880293, -3.3176455432211585, -3.699577591398909, -4.398009490230765, -4.131289771865652, -7.0, -4.032256025890453, -7.0, -4.656280318241814, -7.0, -4.393803257655081, -7.0, -4.388545220095957, -4.050012210075463, -7.0, -7.0, -7.0, -4.800497126653524, -3.8709888137605755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7043650362227245, -7.0, -4.581107318275928, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8720591042767154, -4.388988785124714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4406887318721586, -3.7034633418832934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.172489089107628, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3400721281091075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.072654217333034, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.783014897628913, -7.0, -7.0, -7.0, -3.745465168670727, -3.218535505216528, -7.0, -7.0, -7.0, -3.481299273332856, -7.0, -7.0, -2.8175653695597807, -7.0, -7.0, -7.0, -7.0, -7.0, -4.168129031408031, -4.641107085692552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5974757898703773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.382276460538189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9079485216122722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721150843749684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.313213178178013, -7.0, -7.0, -4.2820326856053805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.000867721531227, -7.0, -7.0, -7.0, -7.0, -3.850125259486936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.666705136119899, -7.0, -7.0, -7.0, -7.0, -3.350829273582968, -7.0, -7.0, -4.278616433667833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495828686511949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097628609835998, -7.0, -2.003901031014158, -3.844891183862738, -7.0, -4.79657433321043, -2.433722385233559, -2.6642239827597556, -7.0, -4.797928522794656, -7.0, -4.1966562421307065, -4.49548189455384, -2.262959805400504, -3.165156610994007, -7.0, -3.821313521414233, -1.9785670656068557, -7.0, -4.620732756383168, -7.0, -4.496043558539809, -7.0, -4.320021590369593, -2.7713956218704094, -5.097982264210186, -7.0, -7.0, -5.098158983460533, -4.496583734489095, -5.09754882443547, -4.31998348175068, -7.0, -3.9262669702523056, -5.097691040361552, -2.4423754319047664, -7.0, -7.0, -3.7558575389603575, -7.0, -4.620673816578646, -7.0, -7.0, -5.0978332097322445, -5.097808940207254, -3.4783878216585498, -3.023493360732307, -4.796758141013766, -4.05646479274284, -3.8706104335298415, -4.319817150451569, -4.62058365787334, -4.620628739565589, -4.796910677093591, -4.496981511355553, -4.401838061585477, -5.097909476553979, -7.0, -7.0, -2.7967734227159236, -7.0, -7.0, -4.796730401424177, -7.0, -3.598561402497095, -4.798084105211312, -7.0, -3.756853857758851, -2.6493132876666134, -7.0, -3.984132478110988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.195844324747282, -5.098252511606886, -4.099646117123231, -4.797146309343345, -4.399791363015452, -4.099279994042449, -1.4915811312752698, -3.7764348125004576, -4.1946426687347085, -4.796504951553296, -4.796491073891664, -7.0, -4.097666762890238, -3.9216067174769838, -7.0, -4.495450669690435, -3.277814400881507, -5.097749994285252, -7.0, -7.0, -5.099324912538834, -7.0, -7.0, -4.620954575698162, -5.097711848542565, -4.254251057483062, -4.620580189857018, -5.097625141210313, -4.195654082132311, -4.496348355776995, -2.955247987438747, -4.620798620817837, -7.0, -7.0, -4.621598595728911, -3.924182765452105, -4.495627580906491, -3.288283107975391, -2.2335970419994844, -7.0, -4.621605515488349, -5.098339093786907, -2.217537806855908, -5.0978158744956446, -3.66872405285837, -3.8965985479517316, -4.621740428764866, -5.097892144361428, -7.0, -5.098255975225523, -7.0, -7.0, -3.269921362515407, -7.0, -7.0, -7.0, -7.0, -7.0, -3.139433582260135, -3.525821952156663, -3.236367018022369, -3.7375832559402493, -4.252832234257769, -3.1086943298492145, -7.0, -7.0, -4.253808605250558, -3.7075599572840225, -3.9241551841945124, -7.0, -4.796709595569177, -7.0, -3.025004034678297, -7.0, -7.0, -4.620757023389678, -4.253424550927697, -7.0, -7.0, -4.099898079134955, -4.320720809309493, -4.3204474864238644, -5.098259438816537, -4.621937534348392, -5.098037713285091, -5.097836676696532, -2.2333728424577397, -7.0, -7.0, -7.0, -4.796768542903085, -7.0, -4.7967962800566575, -5.097618203875831, -3.7223665188137702, -7.0, -3.034066020351715, -7.0, -3.0311079538669303, -2.2778454830341475, -4.796765075634327, -3.92279117659816, -4.195705974747098, -3.894890402801413, -4.099463094164411, -2.464132404475205, -3.984506541488811, -5.098152054648372, -7.0, -7.0, -5.097899077321453, -3.871136636456436, -7.0, -3.983598533574965, -7.0, -3.1509784117298585, -4.796529236394143, -3.781888667731667, -7.0, -4.196580297209667, -7.0, -5.0978054730215385, -7.0, -5.097635547004261, -5.098391034810722, -7.0, -7.0, -7.0, -3.6413168032733307, -4.195152133593287, -7.0, -5.097583515541089, -7.0, -7.0, -7.0, -5.097871344817271, -7.0, -7.0, -4.4971405201458134, -4.058274146685951, -3.7462110006796334, -1.7741780084420744, -7.0, -5.097666762890238, -5.097642484061715, -3.7566015347886865, -7.0, -7.0, -4.797312561051118, -4.143424253450913, -7.0, -7.0, -5.097521069555645, -4.796567395543485, -7.0, -5.097507191450545, -7.0, -4.79713245216118, -2.7661702832117463, -7.0, -7.0, -7.0, -7.0, -5.097840143633142, -4.495804420086552, -7.0, -4.253095585849032, -3.954390695763905, -5.097746526628908, -3.5487373695237934, -4.324045689986502, -5.097531477843443, -7.0, -4.495620644569206, -3.158492706081757, -4.320779603142665, -2.9278264349968235, -4.797527208690113, -2.287333578528713, -5.09770838058163, -4.620441446490588, -7.0, -3.9969896179397217, -3.4093809808881947, -3.738380674663982, -3.7593106494104322, -3.5829203569251127, -4.796567395543485, -5.097642484061715, -7.0, -4.796986925047644, -4.622224387866044, -4.621536312932009, -7.0, -4.098231729314952, -4.496147490722734, -5.09773612349375, -7.0, -4.797066624507168, -7.0, -3.5617996475103078, -4.145448488330583, -4.39966680039829, -5.0980550396692434, -2.1298838478853956, -4.496022769118216, -7.0, -3.2406889987319323, -4.79657433321043, -7.0, -7.0, -7.0, -3.5213308159082533, -4.098799421026242, -3.822075124343057, -4.496337968483268, -3.6686550668554445, -7.0, -7.0, -3.00968230860832, -7.0, -7.0, -7.0, -4.059553091366152, -3.95307593186189, -7.0, -7.0, -4.797527208690113, -7.0, -7.0, -7.0, -7.0, -5.097947604942953, -5.097642484061715, -4.1956367832160675, -3.529402604807416, -2.715369182682153, -3.74353362266181, -1.902546329729361, -4.39931367884421, -3.845473576797768, -2.8209859108312103, -4.401476363357558, -7.0, -3.984845690775141, -5.0979337404615395, -4.321860681427759, -3.827304641089735, -4.197321917535383, -7.0, -7.0, -7.0, -4.6220654322136685, -7.0, -4.399182050312353, -4.495707340823701, -3.799636871557091, -5.097826275720638, -3.502713823571336, -7.0, -7.0, -2.553400657766973, -2.330137607834728, -2.507919802775988, -4.621785390545154, -2.750003397874441, -3.4602552839485896, -2.0516492556611436, -1.6871170615951079, -2.025145309578206, -7.0, -2.688493710291997, -1.8570936807822036, -2.5585778133847756, -2.4389243543919146, -2.5486213518850827, -2.563699534230925, -1.9435533693981495, -2.3306564089493405, -3.1655636472734026, -2.3894252872859263, -2.9991403569240753, -2.063180094011885, -2.762494295245261, -1.7735402503935993, -2.550474234050802, -3.193924634469308, -2.554254122485101, -2.126452084878187, -4.4030484188737224, -2.1804201501602662, -2.8256937024148434, -2.4049034996171, -2.696393180099337, -2.7329794067090094, -3.056487250895864, -2.693445042976239, -2.782606976675294, -2.7654053845042528, -2.181661112505638, -2.8858386969884844, -5.100842497666186, -2.465334349505298, -2.394777641646316, -3.12792263183849, -3.3665094270086184, -2.788513892301845, -3.6086295397104116, -1.6141130308781895, -3.5489966305126153, -3.988425170006303, -3.063228371987673, -2.6811375522716006, -3.1996949881491026, -4.499456818023205, -3.1699748475961473, -3.316008177334867, -4.797184414314642, -3.3512299205417593, -3.035730613217524, -4.201390295737178, -5.099300726233463, -2.5998446272877014, -1.595422951718882, -2.085481870600912, -5.098003058442917, -4.149143814728642, -4.496053952877427, -2.7742464484398566, -3.882249899076638, -2.461068669666279, -3.362024457636707, -3.4813088318164627, -7.0, -3.07018568637838, -2.7398951080054355, -3.0173116440067362, -3.955886953789943, -2.9938466532119907, -2.795578236741683, -2.5297891748700816, -1.7410930796679323, -4.621193597796724, -2.4018192554030393, -2.568561278550861, -3.351848051536318, -2.128563561760865, -5.101049030827831, -3.6408445394191995, -3.1556767254229467, -2.605253418938421, -5.098304462986223, -7.0, -7.0, -7.0, -2.4978603240083523, -2.413575895419909, -4.620989224734163, -3.739011358223984, -4.496614877996609, -3.8038768673049046, -2.995151085215237, -3.4771488280971456, -4.797333338040433, -7.0, -3.297355896091576, -4.79755143643729, -2.5411021991707288, -3.9240000069741874, -3.953424852971817, -4.325529346023533, -2.916057288417842, -4.32436477820229, -3.9300146074718962, -4.021420172059839, -3.737472675456183, -3.5629416965348217, -4.401076422394576, -4.100587638089793, -5.099117557629357, -4.797295246134027, -7.0, -3.5513477757329275, -5.098661028041393, -7.0, -2.847079426081227, -2.0291321571086742, -1.708462991770448, -5.097673699449098, -3.928655258893143, -4.2536321900321274, -4.499515254927971, -4.143926867032187, -7.0, -5.097923341810007, -3.4523385438459995, -7.0, -4.320938652442784, -4.33219599532464, -5.097715316475808, -2.6191302542928296, -4.321339474830754, -3.598106255035145, -7.0, -4.197008176980776, -4.620916458565429, -3.078712230584682, -2.394350064207708, -5.098553743137019, -4.796879480889998, -4.319872601296413, -3.071412410230531, -2.719019543968662, -4.1454899125036295, -4.798433098500429, -3.404816953347451, -4.253691003067721, -1.9694903473303493, -4.621858011281787, -3.2789548377038624, -4.797565280257441, -4.019863713967843, -2.885916546299353, -5.097971866720445, -3.105072497338436, -4.321456887184841, -7.0, -4.057261422076152, -3.5345166153504253, -7.0, -7.0, -2.741570864062097, -7.0, -5.099331822664403, -3.772188303409967, -4.498086455177259, -4.6291002495336295, -5.1000809189101615, -3.239489675978027, -3.0289877777129104, -3.8723208379738385, -4.324255010861404, -7.0, -7.0, -2.604779561858258, -3.4716634728471267, -4.79701464825772, -3.163113373376317, -2.468104066031306, -3.897183637209576, -2.7400994009248563, -2.852171882663223, -4.002415298194856, -5.0979441388640945, -4.798774909075712, -7.0, -7.0, -4.621602055622412, -7.0, -3.4832203908795663, -5.097704912593001, -4.620836748293895, -7.0, -2.879878922786258, -7.0, -4.7979112324184685, -7.0, -5.098068900278887, -4.797990762449812, -7.0, -4.253348391708968, -3.196612816217494, -4.024933550857837, -7.0, -7.0, -4.145596906666468, -7.0, -7.0, -7.0, -7.0, -4.144016929377213, -7.0, -3.7508034364302163, -3.4642354323751117, -4.106704129255459, -4.620919923897559, -7.0, -3.612999071304003, -4.495658793053397, -7.0, -2.869316416441605, -7.0, -7.0, -4.10191196459515, -3.5044198859720406, -4.32196760676029, -7.0, -7.0, -5.098605658496943, -7.0, -3.4185988830152456, -7.0, -4.496396826529734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.461095033798302, -3.2187979981117376, -7.0, -7.0, -2.8311381767490547, -3.097344090487375, -2.9786369483844743, -7.0, -7.0, -3.180125875164054, -7.0, -2.5931349642708077, -3.3589812256253495, -2.9429995933660407, -7.0, -2.536862479985503, -7.0, -2.678973375919765, -7.0, -2.1630761439921695, -2.6897526961391565, -2.54448146130858, -3.66381866823486, -2.99563519459755, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0187004986662433, -7.0, -2.149411576421837, -7.0, -3.270601207315846, -2.9385197251764916, -7.0, -7.0, -7.0, -2.9731278535996988, -7.0, -7.0, -7.0, -2.9731278535996988, -7.0, -2.325272344086861, -2.669316880566112, -2.6866362692622934, -7.0, -7.0, -2.9609461957338317, -2.6651117370750512, -7.0, -3.114610984232173, -7.0, -7.0, -7.0, -7.0, -3.3572104190061216, -2.936513742478893, -7.0, -7.0, -7.0, -3.433929765608464, -2.338788396167112, -7.0, -7.0, -3.9354568807116097, -7.0, -2.5386575016693786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.325310371711061, -7.0, -1.9599353092375267, -3.0203612826477078, -2.6088824508987196, -7.0, -2.681073174258163, -3.087781417809542, -7.0, -7.0, -7.0, -7.0, -7.0, -2.971275848738105, -7.0, -7.0, -3.4530123911214554, -7.0, -7.0, -7.0, -3.139249217571607, -7.0, -2.6473829701146196, -7.0, -2.2571984261393445, -1.8321894610685132, -7.0, -7.0, -2.786041210242554, -7.0, -3.307709923404807, -7.0, -7.0, -7.0, -3.081707270097349, -7.0, -7.0, -3.601299310194338, -3.1667589255503157, -7.0, -7.0, -7.0, -4.043110668074183, -7.0, -2.516667559099043, -3.2581581933407944, -3.0962145853464054, -7.0, -2.9951962915971793, -3.028977705208778, -7.0, -7.0, -3.693155132538336, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1341771075767664, -3.038620161949703, -2.922595721029815, -7.0, -7.0, -7.0, -7.0, -7.0, -2.401745082237063, -7.0, -2.4427409988358755, -7.0, -7.0, -2.965201701025912, -2.7179477417489277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0711452904510828, -7.0, -2.5115491597450657, -7.0, -7.0, -3.1651801371648745, -2.9542425094393248, -7.0, -2.929929560084588, -7.0, -7.0, -2.273695587930092, -7.0, -2.7714037303044066, -7.0, -3.896415976473123, -7.0, -7.0, -2.557470466556451, -7.0, -7.0, -3.0930713063760633, -7.0, -3.1571544399062814, -1.7791840558214114, -7.0, -7.0, -3.064832219738574, -7.0, -2.9849771264154934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.44870631990508, -7.0, -2.8721562727482928, -7.0, -2.670709595223797, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9360107957152097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2942457161381182, -4.197302004237172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.930269649751069, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.983175072037813, -7.0, -3.0265332645232967, -7.0, -2.9647309210536292, -3.493179120682515, -2.4992942336708537, -7.0, -7.0, -7.0, -3.4171394097273255, -7.0, -3.267562808557224, -7.0, -4.029546100423748, -7.0, -7.0, -7.0, -2.9028184680822537, -3.1894903136993675, -2.9156636035057732, -1.5308289376514321, -3.3126004392612596, -7.0, -7.0, -7.0, -7.0, -2.2935203938852355, -2.2933625547114453, -7.0, -3.0334237554869494, -7.0, -7.0, -7.0, -7.0, -2.6725596277632757, -2.620656479819621, -2.474798818800631, -7.0, -7.0, -3.6141059109580307, -7.0, -7.0, -7.0, -7.0, -2.946452265013073, -2.7774268223893115, -7.0, -3.2946866242794433, -3.0948203803548, -3.2671717284030137, -2.568983532526376, -7.0, -7.0, -3.00968230860832, -7.0, -7.0, -7.0, -7.0, -7.0, -2.088619264513679, -7.0, -7.0, -2.5850845541000504, -2.9390197764486667, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5581833806318435, -7.0, -3.9839869219651898, -2.5421335445730757, -4.053879995137211, -7.0, -2.354588587877241, -4.252221753598687, -2.452553063228925, -7.0, -7.0, -7.0, -2.419680442945259, -3.227372442289636, -2.531223374533027, -7.0, -7.0, -7.0, -1.5356019968889618, -7.0, -3.0199466816788423, -7.0, -2.298367831128048, -2.975431808509263, -2.1152486297419344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.262773046675905, -4.1365620365899805, -7.0, -7.0, -3.104782913501534, -3.9635233936946834, -4.205028336126359, -4.4052438798633045, -3.8159096508867747, -7.0, -7.0, -7.0, -4.138439545167638, -7.0, -4.200662436310718, -7.0, -3.3121844111986243, -7.0, -7.0, -4.63206229944999, -4.460296326757476, -7.0, -4.107888025182799, -4.239224378487128, -3.986447011352735, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0608488730388075, -4.099490725214397, -3.9914918889101596, -7.0, -4.27814745163087, -3.539431589396556, -3.006323393378873, -3.1341771075767664, -3.034263748439709, -7.0, -2.61984189224511, -3.225632297346483, -7.0, -7.0, -3.0803859471859956, -3.2794387882870204, -7.0, -7.0, -7.0, -7.0, -2.3678216524185376, -4.204092838402539, -7.0, -7.0, -3.3249555483094935, -3.2581581933407944, -4.475421288176064, -7.0, -3.1094097905463656, -7.0, -3.576885578951076, -7.0, -4.24641979006955, -3.192660360488874, -7.0, -7.0, -3.414221033214868, -3.731266349075492, -3.8143142002074595, -3.3394514413064407, -2.6263403673750423, -2.659493631822546, -2.874452825110791, -2.3739622924346047, -7.0, -2.825511246424534, -3.6679896519391977, -2.625312450961674, -3.598392527828595, -7.0, -7.0, -3.367169488534681, -4.038739348104749, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5414128157085205, -7.0, -2.0248235837250323, -7.0, -7.0, -3.541454428747589, -7.0, -3.042181594515766, -7.0, -3.5248503032721983, -7.0, -4.3338904116161245, -2.510545010206612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.871689665685515, -7.0, -7.0, -7.0, -4.045499008437883, -7.0, -7.0, -7.0, -3.0856472882968564, -7.0, -3.0253058652647704, -7.0, -7.0, -2.9131513129998394, -7.0, -7.0, -7.0, -2.960470777534299, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5036007586148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9749719942980692, -2.4091814234778517, -3.1646502159342966, -7.0, -3.7725417326409434, -7.0, -3.530711837981657, -7.0, -3.4777722083492573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.849746905174019, -7.0, -7.0, -3.5184042557045796, -7.0, -7.0, -7.0, -7.0, -7.0, -2.780317312140151, -3.2208922492195193, -7.0, -7.0, -7.0, -7.0, -3.4718195861103727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0557604646877348, -3.121969981607635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5943262408124452, -7.0, -7.0, -3.331832044436249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3384564936046046, -7.0, -7.0, -3.8952567531448947, -7.0, -7.0, -7.0, -4.877169703484078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7321121813966434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.695131297704026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7234967187231707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9153074784494066, -2.621176281775035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6399842480415883, -7.0, -7.0, -4.09422648522204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.665580991017953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3686494205837585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8698182079793284, -7.0, -3.118264726089479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.543372616688624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1058506743851435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3024283417450855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.740402169016284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7797155091498285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14674801363064, -7.0, -7.0, -7.0, -7.0, -7.0, -2.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.885078384149224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6693912715361305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.130333768495006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.000997730357794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.893928126542607, -3.2719577125342236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557194300943595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.693023067923694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7545012293869173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.665017825412473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0701117827822, -7.0, -1.6020599913279623, -7.0, -7.0, -7.0, -7.0, -2.5622928644564746, -7.0, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.187238619831479, -7.0, -7.0, -7.0, -7.0, -3.891230722978062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7075701760979363, -1.716003343634799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495350040967404, -7.0, -7.0, -7.0, -3.59955559098598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.251638220448212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1007150865730817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.130333768495006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432836257800043, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6201360549737576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732039745997672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.308671106715418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.997561115633588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.302168525012116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.303196057420489, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4345689040341987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2600713879850747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080666163176663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8000293592441343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.751279103983342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7466341989375787, -3.82187832849502, -7.0, -7.0, -7.0, -1.7866968316757637, -2.935423287388426, -7.0, -7.0, -7.0, -7.0, -7.0, -2.903731084963894, -7.0, -7.0, -7.0, -3.405306509594342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5274424120197287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3117153409899256, -7.0, -7.0, -7.0, -3.0236639181977933, -7.0, -2.566241023301467, -7.0, -7.0, -7.0, -7.0, -3.4720246977002813, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0402066275747113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5856486950954656, -7.0, -7.0, -7.0, -7.0, -3.4602963267574753, -7.0, -7.0, -3.1975562131535367, -3.462397997898956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.859438535455056, -7.0, -7.0, -1.2320426643848312, -7.0, -7.0, -2.514676676986443, -2.442793225939769, -7.0, -7.0, -7.0, -7.0, -3.0362295440862943, -3.0437551269686796, -2.1789769472931693, -7.0, -3.4782778319196046, -7.0, -7.0, -7.0, -3.189770956346874, -7.0, -7.0, -7.0, -3.034227260770551, -3.19506899646859, -7.0, -7.0, -7.0, -7.0, -4.0922292421628566, -7.0, -7.0, -3.041787318971752, -3.1389339402569236, -1.9356991555801393, -7.0, -3.318167720128966, -2.2299573599427696, -7.0, -7.0, -7.0, -4.442432731013761, -7.0, -3.26030994579492, -3.2971036501492565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.001690454232153, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7500453120117676, -7.0, -1.7392149424344683, -2.597146487833695, -7.0, -3.070037866607755, -7.0, -7.0, -7.0, -3.229681842317676, -7.0, -7.0, -7.0, -7.0, -3.406335758457056, -7.0, -7.0, -7.0, -3.1231980750319988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.588983606160755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4046627008737222, -7.0, -3.9056879677118523, -7.0, -7.0, -3.146593102096305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.048053173115609, -7.0, -7.0, -7.0, -3.181128699747295, -7.0, -3.4742162640762553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0523090996473234, -7.0, -7.0, -7.0, -2.7437709944998567, -7.0, -3.720591085320366, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0195316845312554, -7.0, -3.0354297381845483, -3.0519239160461065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2833012287035497, -7.0, -7.0, -2.900913067737669, -7.0, -7.0, -3.0330214446829107, -7.0, -7.0, -3.456897187449348, -7.0, -4.207957342972937, -7.0, -7.0, -7.0, -7.0, -1.4256972133625911, -2.958324931644053, -2.65915528094063, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1925674533365456, -2.831549851995756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0464951643347082, -7.0, -7.0, -7.0, -7.0, -4.013963663325294, -7.0, -7.0, -3.338257230246256, -7.0, -3.022840610876528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.059553091366152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.78993308093175, -7.0, -7.0, -7.0, -7.0, -3.0878701126902555, -3.521399628115376, -4.002989535796033, -7.0, -3.2997251539756367, -3.7100931764971508, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5499836111596887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295567099962479, -7.0, -3.506910725551518, -7.0, -7.0, -7.0, -4.7539122931976445, -7.0, -7.0, -3.7427251313046983, -3.463743721247059, -7.0, -7.0, -4.438969313737987, -7.0, -4.064532861131578, -7.0, -4.062055247375354, -4.109254476760142, -3.930949031167523, -7.0, -4.403051852588134, -4.359047728111032, -7.0, -7.0, -7.0, -4.405383930232088, -7.0, -4.790911166601595, -7.0, -4.179637952157813, -4.332731257471133, -7.0, -7.0, -4.410389146513233, -7.0, -4.113308149918387, -3.9560242822806773, -7.0, -7.0, -7.0, -7.0, -4.0640459628644825, -4.40348085323734, -7.0, -7.0, -4.5811414989920385, -4.020257669505882, -3.194653071952934, -7.0, -7.0, -7.0, -3.511749711344983, -3.5377561492826133, -7.0, -3.622352201294506, -3.6880636969463443, -2.9907087504593135, -3.3404441148401185, -3.4897476056737124, -7.0, -7.0, -7.0, -3.9075994426517067, -7.0, -7.0, -3.524563019364041, -3.6824699984835996, -4.0608953340692775, -7.0, -7.0, -7.0, -3.7750380149595006, -7.0, -3.9047745419933935, -3.6856521841155243, -7.0, -7.0, -7.0, -7.0, -3.6930891052509565, -7.0, -7.0, -7.0, -3.579240388938858, -3.545059584694003, -7.0, -3.835658870008277, -3.7949525327803477, -7.0, -4.039552912583547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.025715383901341, -7.0, -7.0, -7.0, -7.0, -3.5484713141320112, -7.0, -7.0, -7.0, -3.836893516376434, -7.0, -4.159486983706769, -7.0, -7.0, -3.4510184521554574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5803546611065915, -7.0, -7.0, -4.004091982792546, -3.8710277796645003, -4.7480406520901814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6802448370426077, -7.0, -3.76774936734558, -7.0, -7.0, -7.0, -7.0, -7.0, -3.28397928423848, -7.0, -7.0, -7.0, -7.0, -3.6578204560156973, -3.8606374167737547, -7.0, -7.0, -3.739255803268511, -7.0, -3.938036986977661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6832272060414346, -7.0, -7.0, -7.0, -7.0, -2.851991747962157, -7.0, -3.489888199550597, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.029343187519107, -7.0, -7.0, -4.300486787986029, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.569958818096594, -7.0, -7.0, -7.0, -4.175975431749513, -7.0, -3.158060793936605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7382254481425052, -7.0, -3.5705429398818973, -7.0, -7.0, -7.0, -7.0, -7.0, -4.297213195989642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.747411807886423, -2.791690649020118, -3.708005198806338, -7.0, -7.0, -7.0, -3.6462076122066853, -3.0678145111618402, -7.0, -7.0, -7.0, -7.0, -7.0, -2.538238500689552, -3.6277753752293034, -7.0, -3.113943352306837, -2.1570754865616193, -7.0, -1.7853298350107671, -7.0, -2.2405492482826, -2.5118833609788744, -2.381415942849977, -4.563184334797349, -2.517855418930029, -7.0, -7.0, -2.852479993636856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7416045736602705, -2.7315887651867388, -2.906335041805091, -2.5949447366950835, -7.0, -7.0, -7.0, -7.0, -7.0, -2.786041210242554, -7.0, -2.733598460961339, -7.0, -7.0, -7.0, -7.0, -2.7671558660821804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7426465899387362, -7.0, -7.0, -7.0, -7.0, -7.0, -2.516755660221549, -7.0, -7.0, -3.6259551837738253, -7.0, -2.550228353055094, -7.0, -7.0, -7.0, -7.0, -2.7649229846498886, -7.0, -2.49876988168213, -7.0, -2.214843848047698, -7.0, -1.7323937598229684, -7.0, -3.5234603103244715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5419950357274104, -7.0, -7.0, -7.0, -7.0, -1.9789685974894828, -7.0, -7.0, -7.0, -7.0, -3.295823569483015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0863598306747484, -7.0, -7.0, -7.0, -2.8830933585756897, -3.894355628528032, -7.0, -2.213517756996305, -3.1711411510283822, -7.0, -7.0, -7.0, -2.165541076722373, -7.0, -7.0, -3.979548374704095, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2322335211147335, -7.0, -3.480581786829169, -3.037027879755775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.080495299945456, -7.0, -7.0, -7.0, -2.623855025918205, -7.0, -2.7331972651065692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.928907690243953, -7.0, -2.9894498176666917, -2.8305886686851442, -7.0, -2.9900804134622208, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0863598306747484, -7.0, -2.6089536992758626, -7.0, -7.0, -7.0, -3.104487111312395, -2.5478209546538007, -7.0, -7.0, -2.9590413923210934, -7.0, -3.044147620878723, -3.1489109931093564, -7.0, -7.0, -2.920123326290724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9353056902899253, -7.0, -3.09324653110384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.74350976472843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.285557309007774, -3.2563568863955257, -4.548506115255735, -2.7299742856995555, -2.7558748556724915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7427251313046983, -7.0, -7.0, -7.0, -3.5250880182683524, -7.0, -7.0, -7.0, -7.0, -2.792391689498254, -7.0, -7.0, -2.2600713879850747, -7.0, -7.0, -7.0, -2.2730012720637376, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9395192526186187, -7.0, -4.025073633178575, -7.0, -7.0, -7.0, -2.871961914059928, -7.0, -2.6421346345582744, -1.7323937598229684, -7.0, -7.0, -7.0, -7.0, -7.0, -2.242624237809914, -2.9344984512435675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9344984512435677, -2.1742052269401473, -1.945620065594431, -7.0, -7.0, -3.496610353010258, -7.0, -7.0, -3.781180720937262, -7.0, -7.0, -2.3349561161368517, -7.0, -7.0, -2.356503891894005, -7.0, -7.0, -7.0, -7.0, -3.95307593186189, -2.088619264513679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1351326513767748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6473829701146196, -2.795184589682424, -3.667779718248877, -3.4507108781469196, -4.588521404407797, -7.0, -2.127399335155957, -3.770986940942376, -1.7846821175426015, -7.0, -2.9628426812012423, -7.0, -2.621176281775035, -3.484157424365381, -2.437750562820388, -7.0, -7.0, -7.0, -2.2231496826367745, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0844137729813017, -7.0, -7.0, -3.9226009112525433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.403738050363856, -3.7359101389693814, -7.0, -7.0, -4.277758155206577, -4.358401272531884, -4.804895550625822, -3.922396715715211, -7.0, -7.0, -4.655330558009341, -7.0, -4.61212662166355, -7.0, -5.102673770548927, -3.8899736384039962, -4.185287112575202, -7.0, -7.0, -7.0, -4.154256553346994, -7.0, -4.406156810261728, -7.0, -7.0, -3.9438653380278805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.976670880624811, -7.0, -7.0, -3.4074758852912557, -3.0615278708905076, -3.0141003215196207, -3.763128376799137, -7.0, -3.3427926605253178, -3.8063156698081135, -3.291590825658001, -3.7809290706364975, -2.4753001814119373, -3.1285608065593205, -7.0, -3.754348335711019, -7.0, -7.0, -3.5356738034257504, -4.19506899646859, -7.0, -7.0, -3.280938615533181, -3.7259887245144285, -5.173457253562059, -7.0, -3.0499928569201424, -7.0, -3.6606230820578123, -7.0, -4.642766146265666, -3.3372595397502756, -4.069963937850763, -7.0, -7.0, -7.0, -3.681964458994683, -2.967079734144497, -3.075820590183628, -7.0, -3.467756051244033, -3.177103432436536, -7.0, -2.9173876039727284, -3.7891222049334066, -7.0, -3.858446960810253, -7.0, -3.3510228525841237, -2.634779458145952, -4.025469719061056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2180684590826294, -7.0, -3.433449793761596, -3.4025193025742495, -7.0, -7.0, -7.0, -3.5029730590656314, -7.0, -4.154454406139564, -2.811909980420099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5264685124694775, -7.0, -7.0, -7.0, -2.8819549713396007, -7.0, -3.8520528086978505, -7.0, -7.0, -7.0, -3.8661395947446504, -4.744152108012428, -7.0, -7.0, -2.646893624167745, -7.0, -2.3844131561393755, -7.0, -2.808885867359812, -7.0, -7.0, -7.0, -7.0, -2.7664128471123997, -3.729083757043612, -7.0, -7.0, -7.0, -7.0, -2.5308397786165204, -2.851869600729766, -7.0, -7.0, -2.3276994240014997, -2.532117116248804, -7.0, -3.5285310606354114, -7.0, -7.0, -7.0, -7.0, -3.4911317334850387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.942008053022313, -7.0, -7.0, -2.788875115775417, -2.3533998825578037, -7.0, -7.0, -3.446537167073644, -7.0, -7.0, -7.0, -3.7545012293869173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019095510309654, -7.0, -7.0, -4.289499765873857, -7.0, -2.8129133566428557, -7.0, -2.8041394323353503, -7.0, -7.0, -3.12515582958053, -7.0, -7.0, -7.0, -7.0, -3.382827209736365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.696705780933917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985067033150501, -7.0, -7.0, -7.0, -7.0, -3.110252917353403, -7.0, -7.0, -2.924795995797912, -7.0, -3.5928426831311002, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8582122574519104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0881360887005513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.655330558009341, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3644571851188294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8686444383948255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669540015259445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.392696953259666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45484486000851, -1.7323937598229684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149065080207621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432847479030527, -7.0, -7.0, -4.242106419122238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.72222246396973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658240414670103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5763528698005445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6232492903979003, -7.0, -7.0, -7.0, -3.1818435879447726, -7.0, -4.335076597314406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3973315703911284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2616593037647066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.858537197569639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7569022317166274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.736069662371753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.690196080028514, -1.6957005197711714, -7.0, -1.5631419252975927, -1.893946607552074, -7.0, -4.426722664145779, -7.0, -7.0, -7.0, -1.9294189257142926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4937089351985215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0128372247051725, -3.3102683666324477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.12057393120585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4424797690644486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3222192947339195, -7.0, -7.0, -1.1878523699414716, -1.693140460675295, -7.0, -7.0, -7.0, -2.8097280132159064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.936513742478893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432937238438368, -7.0, -3.024074987307426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.173186268412274, -7.0, -7.0, -2.3138672203691537, -7.0, -2.399865929708076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.824256037629682, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4300457222310743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6020599913279623, -7.0, -7.0, -7.0, -7.0, -3.874964742781923, -4.979425443774774, -7.0, -7.0, -3.2571984261393445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153814864344529, -7.0, -7.0, -4.126737329204574, -4.56220956711611, -7.0, -4.331234909038874, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8471612005780302, -7.0, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -7.0, -7.0, -3.9856060830524367, -7.0, -1.7337321105952306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6541765418779604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3027060294129456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5893910231369333, -7.0, -7.0, -3.4111144185509046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6503075231319366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.037426497940624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5327543789924976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7571776877918075, -7.0, -7.0, -7.0, -3.6250036010148636, -3.349180358996378, -2.6148972160331345, -2.5634810853944106, -7.0, -7.0, -7.0, -3.131030225594209, -7.0, -7.0, -7.0, -2.899895344556287, -2.225309281725863, -2.3170181010481117, -7.0, -2.388278863459639, -1.7273378880330803, -7.0, -4.259617766814334, -2.1722136039924793, -7.0, -7.0, -2.699837725867246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7374312005145827, -7.0, -2.294466226161593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2403828200445397, -7.0, -2.6374897295125104, -7.0, -7.0, -7.0, -2.5877109650189114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.222716471147583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9816244801547354, -7.0, -4.21988565138146, -2.835056101720116, -7.0, -7.0, -7.0, -7.0, -7.0, -2.597695185925512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2210041567525165, -7.0, -7.0, -2.2889196056617265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5071730310804767, -7.0, -2.343605508104172, -7.0, -7.0, -7.0, -7.0, -2.1164416975393117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.691435152144062, -3.4382258076045296, -3.449169732165201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.752432609261474, -7.0, -7.0, -2.1015179552484096, -3.7795964912578244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8836614351536176, -7.0, -7.0, -3.951377999243531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5644293269979834, -7.0, -7.0, -3.3707813182108777, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0784568180532927, -7.0, -7.0, -2.79309160017658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.754348335711019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7356928113607588, -7.0, -5.14993618427544, -2.513217600067939, -2.5550944485783194, -2.546542663478131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4955443375464483, -7.0, -7.0, -7.0, -7.0, -7.0, -2.718501688867274, -7.0, -7.0, -7.0, -3.2258259914618934, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3994141053637703, -7.0, -4.499357113387459, -7.0, -7.0, -7.0, -3.15259407792747, -3.003029470553618, -3.04493154614916, -1.9336559786575473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.812244696800369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.846337112129805, -2.680335513414563, -7.0, -7.0, -4.608558123116898, -7.0, -7.0, -7.0, -2.5352941200427703, -7.0, -1.8075350280688534, -7.0, -7.0, -7.0, -3.1172712956557644, -7.0, -7.0, -7.0, -4.797527208690113, -2.5850845541000504, -7.0, -7.0, -7.0, -7.0, -2.1351326513767748, -7.0, -7.0, -7.0, -2.5171958979499744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.356599435724971, -3.4169731726030363, -4.831231295244944, -7.0, -7.0, -3.4324265460524686, -1.912677450997669, -7.0, -7.0, -7.0, -7.0, -2.6060741174982827, -1.7297046213121872, -7.0, -2.506505032404872, -7.0, -2.9041743682841634, -7.0, -2.705007959333336, -7.0, -3.1020905255118367, -7.0, -3.0970836960665213, -7.0, -7.0, -4.619458568994316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.734367719627033, -7.0, -7.0, -4.576387426751579, -7.0, -7.0, -4.0948552900836805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.785891918069435, -7.0, -4.158754386632288, -7.0, -7.0, -7.0, -4.705401815129262, -7.0, -7.0, -4.2396997966866605, -7.0, -7.0, -4.240524288112364, -7.0, -7.0, -7.0, -7.0, -3.1065308538223815, -4.572976098995143, -4.306360682861051, -7.0, -2.9148718175400505, -7.0, -7.0, -4.243620852909535, -7.0, -7.0, -7.0, -4.14370162942477, -3.2362852774480286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.754348335711019, -4.5033184658590395, -7.0, -7.0, -3.3085644135612386, -7.0, -3.9137502924428413, -7.0, -4.641721924765832, -7.0, -7.0, -7.0, -7.0, -4.0100454126360985, -4.279370318179108, -7.0, -7.0, -3.2532168125021292, -3.8595885767354927, -3.446847710155809, -7.0, -3.492147669460123, -7.0, -7.0, -4.333527878521092, -7.0, -7.0, -3.6148972160331345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.694517453811156, -7.0, -3.111262513659065, -7.0, -7.0, -3.9956790605116224, -7.0, -7.0, -7.0, -7.0, -7.0, -4.328420380348951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9432570234747906, -7.0, -7.0, -3.388278863459639, -7.0, -7.0, -7.0, -7.0, -2.6364878963533656, -3.4379090355394983, -7.0, -7.0, -3.3093107157881754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8419848045901137, -3.7593476255559497, -7.0, -3.4202858849419178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8221680793680175, -7.0, -7.0, -2.606381365110605, -3.614053105987219, -7.0, -2.9242792860618816, -7.0, -7.0, -3.1541195255158465, -7.0, -3.7380667147774695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.315760490665735, -7.0, -7.0, -4.2847690133490195, -3.4689378056654614, -7.0, -7.0, -2.629409599102719, -7.0, -2.3450468246483553, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8538198458567634, -2.6009728956867484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.629409599102719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6778805815115905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9802988641377226, -7.0, -7.0, -7.0, -7.0, -3.03261876085072, -7.0, -7.0, -7.0, -7.0, -3.568788212315347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8769333746983357, -1.6901960800285138, -7.0, -7.0, -2.305351369446624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8750612633917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.595496221825574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7853298350107671, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.735574948974428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.824776462475546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.110589710299249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5563025007672873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.826722520168992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9390197764486667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5171958979499744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.643798000679235, -7.0, -5.43283786085072, -7.0, -7.0, -7.0, -2.6434526764861874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6875289612146345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.134591434710877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603231006269363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779632560730201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.582404298019028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657552998005808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.575937971768604, -1.5910646070264993, -2.0718820073061255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6922298357727557, -1.9867717342662448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.681241237375587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7315887651867388, -7.0, -7.0, -7.0, -1.361727836017593, -2.7466341989375787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0128372247051725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.919078092376074, -7.0, -4.0697790608815145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.72718326387996, -7.0, -7.0, -7.0, -7.0, -1.7781512503836436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0672754881753015, -7.0, -7.0, -7.0, -7.0, -2.775974331129369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.311753861055754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5440680443502757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.400537989391946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8987251815894934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432821830077669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0253058652647704, -3.3432115901797474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6743711737058353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080633701055939, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657533887557986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9137344010040573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0711452904510828, -7.0, -7.0, -1.845098040014257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.654651341985247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.952550293898202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3364597338485296, -7.0, -7.0, -7.0, -7.0, -4.659516883764218, -7.0, -7.0, -7.0, -7.0, -3.641275757231913, -7.0, -7.0, -7.0, -7.0, -7.0, -3.904715545278681, -7.0, -7.0, -2.696356388733332, -3.5992048550135713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2585055858202585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6138418218760693, -7.0, -7.0, -7.0, -3.2959667268431296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4282200752233494, -7.0, -7.0, -2.503109436671369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4293484729236616, -7.0, -7.0, -7.0, -7.0, -7.0, -2.534026106056135, -7.0, -2.2827353726210187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1767487829994527, -2.7715874808812555, -7.0, -7.0, -7.0, -7.0, -2.4533183400470375, -2.481442628502305, -1.7126497016272113, -7.0, -3.0419845014867866, -7.0, -7.0, -7.0, -2.569958818096594, -7.0, -7.0, -7.0, -1.9622114391106, -1.7912226592314022, -2.447158031342219, -7.0, -7.0, -2.6866362692622934, -7.0, -7.0, -7.0, -2.4742162640762553, -7.0, -2.718501688867274, -7.0, -3.526339277389844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.683137131483007, -7.0, -7.0, -7.0, -7.0, -3.7963661549775214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.930257508276295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1889284837608534, -2.7363965022766426, -7.0, -7.0, -7.0, -7.0, -3.6147187910628036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3699205499219165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0, -2.722633922533812, -7.0, -7.0, -2.8546096380957953, -7.0, -7.0, -2.342422680822206, -3.919705534549121, -7.0, -7.0, -2.357934847000454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6138418218760693, -3.9890491564382202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4608978427565478, -7.0, -3.2011238972073794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0068937079479006, -3.1720188094245563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6314437690131722, -7.0, -7.0, -7.0, -2.4913616938342726, -7.0, -7.0, -7.0, -7.0, -7.0, -1.803912112528065, -2.3873898263387296, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1264561134318045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.78993308093175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6533572544805337, -3.0998532198843813, -4.831082341835677, -7.0, -2.597329464234929, -4.2444626770883245, -2.7307822756663893, -7.0, -2.48572142648158, -7.0, -2.979548374704095, -3.1371958119405483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9041743682841634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.733622520930981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7375901662857216, -7.0, -7.0, -7.0, -4.543521730675292, -7.0, -7.0, -7.0, -3.839697967180202, -1.7462448717201984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6509331989884437, -7.0, -7.0, -4.63364011946669, -7.0, -3.287801729930226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3636119798921444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.303188855130554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.756636108245848, -7.0, -7.0, -7.0, -3.1265642948950374, -2.9180303367848803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7596678446896306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -4.3576585630856135, -7.0, -7.0, -7.0, -7.0, -3.6327608884794387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1084522639030685, -7.0, -7.0, -4.03250939649661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6552825351772134, -7.0, -7.0, -7.0, -2.509202522331103, -2.6711728427150834, -2.167317334748176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0394141191761372, -7.0, -7.0, -7.0, -3.1501421618485588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.400537989391946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.326335860928751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7041505168397992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9123549292524067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6754116937148633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6627578316815743, -7.0, -7.0, -7.0, -7.0, -4.427120797579584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2177470732627937, -7.0, -7.0, -7.0, -7.0, -3.494163873715923, -7.0, -7.0, -7.0, -7.0, -2.8561244442423, -7.0, -2.6344772701607315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2576785748691846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1772478362556233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6516379303968227, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3640817414110704, -2.8447877188278463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8178957571617955, -7.0, -7.0, -7.0, -4.606650028578438, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.449478399187365, -2.5998830720736876, -7.0, -7.0, -5.097947604942953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.830946156923676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3664229572259727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.041392685158225, -7.0, -4.302525732960741, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3016809492935764, -7.0, -7.0, -4.138113146487167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.184151775723396, -7.0, -7.0, -4.052039507001472, -4.979648514925287, -7.0, -7.0, -7.0, -7.0, -4.610915555324175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1553056661596255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.584331224367531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.287129620719111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6989700043360187, -7.0, -7.0, -7.0, -7.0, -3.4087486061842442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.302882647346662, -7.0, -7.0, -7.0, -7.0, -3.9212181211949506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.354108439147401, -7.0, -7.0, -2.5185139398778875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.280737673504682, -7.0, -7.0, -7.0, -7.0, -7.0, -2.690196080028514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.27731117917403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.65786819904679, -7.0, -7.0, -7.0, -7.0, -3.623766000133931, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8952567531448947, -7.0, -7.0, -7.0, -3.9228349834772342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2648178230095364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7234967187231707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517446633919386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.716003343634799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0969100130080562, -2.603144372620182, -7.0, -7.0, -3.0257153839013404, -7.0, -7.0, -7.0, -2.4578818967339924, -4.258605359868985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3660492098002353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.395326393069351, -7.0, -7.0, -4.250297992339864, -7.0, -7.0, -7.0, -2.123851640967086, -7.0, -7.0, -7.0, -3.193958978019187, -7.0, -7.0, -7.0, -7.0, -3.824488447213163, -7.0, -7.0, -2.6364878963533656, -7.0, -7.0, -7.0, -2.2317243833285163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1818435879447726, -7.0, -7.0, -2.2536610209467267, -7.0, -7.0, -5.1491174573697025, -7.0, -7.0, -1.9344984512435677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.981274832706589, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1931245983544616, -7.0, -2.4099331233312946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9258275746247424, -2.8165726960261033, -7.0, -7.0, -7.0, -7.0, -2.2922560713564764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.406199423663313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8864907251724818, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7168377232995247, -7.0, -7.0, -7.0, -5.097642484061715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9460590603851236, -7.0, -7.0, -7.0, -7.0, -4.242317763715195, -7.0, -7.0, -2.34143452457814, -7.0, -7.0, -2.9324737646771535, -2.954724790979063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.520701826026063, -7.0, -3.34966598409663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7726883546821415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2477278329097232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3024283417450855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0111473607757975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9148718175400505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6148972160331345, -7.0, -2.404833716619938, -7.0, -7.0, -3.3935752032695876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3096301674258988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.632457292184724, -4.080687803242536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5998830720736876, -7.0, -7.0, -2.1398790864012365, -3.2837533833325265, -7.0, -7.0, -7.0, -2.9116901587538613, -3.4129642719966626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278730742746982, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14674801363064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7693773260761385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.652922887567942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275288314435602, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.690196080028514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7065850372590567, -7.0, -7.0, -7.0, -3.330007700872759, -7.0, -2.6748611407378116, -7.0, -7.0, -3.0149403497929366, -7.0, -3.4356320489516605, -3.6121478383264867, -7.0, -2.7589118923979736, -3.0859577327195216, -7.0, -2.6794278966121188, -7.0, -2.741939077729199, -7.0, -2.4578818967339924, -4.561399560442028, -2.708420900134713, -7.0, -7.0, -2.749736315569061, -2.850033257689769, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039751111967191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6798406848590526, -7.0, -2.694605198933569, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2121876044039577, -7.0, -7.0, -7.0, -7.0, -3.56054423863114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9400735532451134, -2.7701152947871015, -1.290744823265525, -7.0, -2.3921104650113136, -7.0, -3.6184664921990803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4747017805962495, -7.0, -7.0, -7.0, -2.3334472744967503, -1.7169848005087767, -7.0, -7.0, -7.0, -7.0, -3.3695498016648924, -7.0, -7.0, -7.0, -2.862131379313037, -7.0, -7.0, -3.545801757159276, -4.105510184769974, -7.0, -7.0, -7.0, -4.738360325902248, -2.665580991017953, -3.0689276116820716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146438135285775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7752462597402365, -7.0, -7.0, -7.0, -2.3386375628096054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6711728427150834, -2.9810253750197253, -2.6242820958356683, -7.0, -7.0, -7.0, -7.0, -2.6702458530741238, -7.0, -2.496006598880036, -7.0, -7.0, -7.0, -7.0, -2.6061403530336102, -7.0, -7.0, -7.0, -7.0, -2.9809119377768436, -2.7983052820219765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0661394928706995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9390197764486667, -3.00774777800074, -3.2379205663503803, -4.849087576982787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.93976877545335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5457330907430338, -7.0, -7.0, -7.0, -3.3350565194390915, -7.0, -7.0, -2.7366620446156418, -7.0, -7.0, -7.0, -7.0, -7.0, -2.255754786643044, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6314437690131722, -2.7371926427047373, -2.3636119798921444, -2.455910240382743, -2.707144188342445, -7.0, -7.0, -3.3535743172231056, -7.0, -7.0, -7.0, -7.0, -7.0, -2.857935264719429, -7.0, -7.0, -7.0, -2.65864725984816, -7.0, -7.0, -7.0, -4.1956367832160675, -1.5581833806318435, -7.0, -7.0, -7.0, -7.0, -2.6473829701146196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530286164160012, -7.0, -2.1692824715034074, -3.8483492528054675, -2.308919955522892, -7.0, -7.0, -7.0, -2.0839801289293933, -2.9845273133437926, -2.2398355349224595, -7.0, -7.0, -7.0, -1.3562990843061946, -7.0, -7.0, -7.0, -7.0, -7.0, -2.451956914223988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100094715014989, -4.734855812377757, -7.0, -7.0, -4.099922232196922, -4.356971855954572, -4.32672491280211, -7.0, -4.282395504742525, -7.0, -4.653887558070977, -7.0, -7.0, -7.0, -3.9559418903973125, -7.0, -4.78632543439007, -7.0, -7.0, -7.0, -4.453027693687722, -7.0, -7.0, -7.0, -4.282123418809911, -4.241222631195891, -4.182528775278964, -7.0, -7.0, -7.0, -7.0, -7.0, -3.668618844816744, -3.126780577012009, -3.6704314093606056, -3.228015175101788, -3.448474428212161, -2.9459607035775686, -7.0, -7.0, -3.129838563786958, -3.3186197661495815, -2.9554472105776957, -3.775501223589831, -3.446381812222442, -3.2413804341476116, -7.0, -3.7427251313046983, -7.0, -7.0, -7.0, -3.5886637957802043, -7.0, -7.0, -2.743375903237164, -3.2990667156532036, -4.0268162428984065, -7.0, -7.0, -7.0, -4.312399526311494, -7.0, -3.8637737766125007, -3.145714224801858, -4.0643831044121965, -7.0, -3.673389578188305, -4.01262635095405, -3.6785639001849493, -2.9304395947667, -3.36332987888716, -7.0, -3.258996253248911, -3.456214155357989, -7.0, -3.0499498468203896, -4.264569921179731, -7.0, -3.635010993287761, -7.0, -3.0195316845312554, -2.6653724963034815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.998302940098541, -7.0, -3.131297796597623, -7.0, -7.0, -3.3960248966085933, -7.0, -7.0, -7.0, -3.7937903846908188, -7.0, -4.630092107840592, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.84279639517558, -7.0, -7.0, -7.0, -4.165748681559414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.382931521415937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.31921019418185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.742882171437273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.286141975203335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.855670556918036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.000650953629595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2962262872611605, -7.0, -7.0, -7.0, -4.03235393660285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.079181246047625, -2.171726453653231, -7.0, -7.0, -7.0, -3.8583165857151207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7004441010277516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.181516927920419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.217352319881362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7275412570285567, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1559430179718366, -2.680335513414563, -2.271841606536499, -7.0, -7.0, -7.0, -1.9294189257142926, -7.0, -7.0, -7.0, -3.3207692283386865, -7.0, -7.0, -7.0, -2.801403710017355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3774883833761327, -7.0, -2.9788269866677775, -7.0, -7.0, -7.0, -7.0, -7.0, -2.220108088040055, -7.0, -3.6190933306267428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7263196121107756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.371714202642618, -7.0, -3.4163075870598827, -7.0, -7.0, -7.0, -7.0, -7.0, -2.416640507338281, -7.0, -2.967547976218862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9122220565324155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7735751766826517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6471406962754473, -7.0, -2.7267272090265724, -2.3909351071033793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6424645202421213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.450310706005005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4093694704528195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.608739919068788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305308367864144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.529402604807416, -7.0, -7.0, -7.0, -7.0, -7.0, -2.795184589682424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.38147609027503, -5.432972495987906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.617314933298294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.396548037987132, -4.732723376813052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3870515144724935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.387496606935564, -3.957176130404846, -7.0, -7.0, -7.0, -2.8243699338659654, -7.0, -7.0, -7.0, -3.541903595684562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.126131407261984, -7.0, -7.0, -4.183383742052695, -7.0, -7.0, -7.0, -4.3774383046052785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8711263248776597, -7.0, -4.604139617721083, -4.5624713049774686, -7.0, -7.0, -7.0, -7.0, -3.1151665612324684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9865478134147243, -7.0, -2.734399742520567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9459607035775686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6402726869436295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8020892578817325, -7.0, -7.0, -7.0, -7.0, -4.6038369584054015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7141620460988536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9498289589353135, -3.9455178220778397, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9458623244896174, -7.0, -3.052252948311862, -3.13640344813399, -7.0, -7.0, -2.72191361402292, -2.5786055058446684, -7.0, -3.9644482079166607, -7.0, -3.975615597966895, -7.0, -2.9404902712924867, -3.6201013378002385, -7.0, -3.980866554582079, -2.4359702501023976, -7.0, -3.6481159567559627, -7.0, -7.0, -3.950413539369381, -7.0, -2.934712049839496, -3.9508514588885464, -7.0, -3.649140064144219, -7.0, -7.0, -7.0, -7.0, -7.0, -3.708633321015398, -7.0, -2.5501563844606956, -7.0, -3.480533912223829, -7.0, -7.0, -7.0, -3.471047107007469, -3.9474337218870508, -3.94875518016827, -7.0, -3.7019563451928037, -2.880432465023419, -3.9482172935599706, -7.0, -3.6924503234060153, -7.0, -7.0, -3.947776708464738, -7.0, -7.0, -3.989271791641693, -7.0, -7.0, -7.0, -3.0066461633496013, -7.0, -7.0, -7.0, -7.0, -3.1820068258650944, -3.4892551683692608, -7.0, -3.4933186082321015, -1.8397016936749504, -7.0, -3.9533246963891853, -3.6431070774941166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3596932228588203, -3.492248057013865, -2.3962098539237355, -3.96208508051736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.952469547503639, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9459607035775686, -3.9523564773237907, -7.0, -3.6690843266211157, -7.0, -7.0, -7.0, -7.0, -2.980890327323183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7743344507093037, -2.129003424907397, -7.0, -3.660248683421062, -7.0, -3.25594754939894, -3.9485107688376573, -3.1362221332448503, -3.9890936926103255, -3.6620964454179235, -3.4722687519252506, -7.0, -3.47736246243589, -7.0, -7.0, -3.4722443526734725, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4276808163314625, -7.0, -3.2742733377584177, -7.0, -3.473389638266334, -3.471936804594729, -3.9474337218870508, -7.0, -7.0, -3.7467898321526123, -3.6817385815870307, -3.643847310299714, -3.947531745695593, -7.0, -2.766710207262259, -7.0, -7.0, -3.949585151326652, -7.0, -7.0, -7.0, -3.977815026083187, -7.0, -3.9598995878659435, -7.0, -7.0, -7.0, -7.0, -2.72352583496175, -7.0, -7.0, -7.0, -7.0, -3.9464031338990546, -7.0, -7.0, -3.4109037084978153, -3.9440876794154343, -3.0845487813702075, -7.0, -7.0, -2.873815282752997, -7.0, -7.0, -7.0, -7.0, -3.9720175986740154, -3.684665864025861, -7.0, -3.652101229519464, -3.6579636693663447, -3.951580344903392, -7.0, -2.920123326290724, -7.0, -7.0, -7.0, -2.424959376626245, -7.0, -3.7302976620971497, -7.0, -7.0, -7.0, -3.9483640559883693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.945222316635341, -7.0, -7.0, -7.0, -3.9492924014120256, -7.0, -3.6465017500316117, -3.666798683666174, -3.673711908836969, -3.5975489342043447, -2.9213725507652892, -7.0, -7.0, -3.9460590603851236, -3.6660965854124314, -7.0, -7.0, -3.478662674197249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.476155081947642, -3.359598357309753, -7.0, -7.0, -7.0, -3.6455696293511517, -7.0, -7.0, -7.0, -3.6532607660371457, -3.509023209990858, -3.947531745695593, -3.139839746351216, -3.5296869537729165, -7.0, -7.0, -7.0, -7.0, -3.9644482079166607, -2.953308577080214, -3.9589459324939362, -3.221957309667391, -2.799586678381622, -3.6439952055784817, -3.947139517642829, -2.990646174872535, -3.4998244958395794, -3.1361314474057442, -3.0988599540923243, -3.698622429702098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6540802353065707, -7.0, -7.0, -7.0, -7.0, -3.948559662108962, -3.450557009418329, -2.8276461582923424, -3.9603280505301433, -7.0, -3.066955652692866, -3.952550293898202, -7.0, -3.377215156263061, -7.0, -7.0, -3.4836348361821106, -7.0, -7.0, -7.0, -3.2121876044039577, -7.0, -7.0, -3.953131225183445, -2.715369182682153, -3.9839869219651898, -7.0, -7.0, -7.0, -3.0878701126902555, -3.667779718248877, -7.0, -7.0, -3.356599435724971, -3.643798000679235, -7.0, -7.0, -3.6533572544805337, -7.0, -3.9460590603851236, -7.0, -7.0, -7.0, -3.567731962548069, -2.5727857511946253, -7.0, -3.6885088076565213, -2.781635717816913, -3.2059708324774667, -7.0, -7.0, -3.9501700598082, -3.6778349886836756, -3.275234549433838, -3.3820620915331476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.98878184345364, -7.0, -3.4384236728783075, -7.0, -7.0, -3.6205957957123824, -3.508361355145994, -3.5888317255942073, -7.0, -3.5949079461082594, -7.0, -7.0, -3.270691772933909, -3.7559164129647007, -7.0, -7.0, -3.7612698875591977, -3.731604879710846, -3.2238399127102326, -3.6780238421039844, -4.13951702345246, -3.741099049455883, -3.5239008479609306, -3.789909598573103, -3.6918679935514755, -4.220683277974345, -3.467089898520816, -7.0, -3.5198842216180046, -3.832998282627148, -3.4563470513120462, -3.450308995076148, -3.5242190397438335, -7.0, -3.8181525516426755, -3.8007342573129406, -3.627896295508615, -3.412090777733802, -3.8965078459300058, -4.170936108609079, -3.2986011898012517, -4.297826142585328, -3.411170590636853, -3.820634880594385, -3.3456677356353532, -7.0, -3.430956718067923, -3.0596239952953614, -3.243781916093795, -7.0, -3.3434523602537487, -7.0, -2.3702937992424595, -3.6892200372638357, -7.0, -3.463167493195676, -2.592235212807746, -3.4360035356698964, -3.998259338423699, -3.2990712600274095, -3.699837725867246, -7.0, -3.465977368285823, -3.2025064803976218, -3.2561964080632047, -7.0, -2.830225931135402, -2.84294413666749, -3.3391752955084275, -7.0, -4.0218092770223395, -7.0, -3.2468150066618233, -3.645978700535912, -2.7560471605673933, -3.0210858833099774, -3.3468092004059016, -7.0, -3.641110393607365, -3.2303095531954753, -2.9069210167624506, -4.005395031886706, -3.2116544005531824, -3.604262062742623, -3.0814799602050034, -3.273695587930092, -7.0, -3.0448870428359847, -3.1631998609074703, -7.0, -2.8421030098272815, -7.0, -7.0, -3.2548586942269258, -3.233987782369209, -7.0, -7.0, -7.0, -7.0, -4.3100982718562, -3.787129727467307, -7.0, -3.989983458301399, -3.9607560909017727, -7.0, -3.66216735642827, -7.0, -7.0, -7.0, -3.5632733812690205, -3.959279950130939, -3.406948735950354, -7.0, -7.0, -7.0, -4.15124723746237, -7.0, -7.0, -7.0, -7.0, -4.0655797147284485, -7.0, -7.0, -3.966517176446792, -7.0, -7.0, -3.885926339801431, -7.0, -7.0, -3.6260208317947957, -3.4399805351710797, -3.4819951270342555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.050031562368401, -7.0, -7.0, -7.0, -7.0, -4.13443212489584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.700054385628239, -3.9588027033995026, -7.0, -7.0, -7.0, -3.699577591398909, -7.0, -7.0, -3.8213169705910977, -7.0, -3.3704727148375038, -7.0, -7.0, -7.0, -3.9665640840973104, -3.9293422787484373, -7.0, -3.8369567370595505, -7.0, -3.955495329184127, -7.0, -7.0, -7.0, -7.0, -3.4978277360835044, -7.0, -7.0, -3.2963830892565467, -3.9805487393597705, -3.3551065529544917, -7.0, -3.8435130786088068, -4.12100143498964, -3.7138683912822246, -7.0, -7.0, -7.0, -3.5315906696251984, -7.0, -7.0, -7.0, -3.8627870982353443, -7.0, -3.7701152947871015, -3.8410308092337435, -3.856366323659248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.060130999531045, -7.0, -7.0, -7.0, -3.5789446747120905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9573678084315276, -7.0, -7.0, -3.8208907898990563, -4.073645045513152, -4.0603200286882855, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8386759678553695, -7.0, -7.0, -3.702645906884803, -4.060093183824469, -3.980367026184775, -7.0, -7.0, -7.0, -7.0, -3.7847242485457184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0681858617461617, -3.0791812460476247, -4.076813326169952, -7.0, -3.368100851709351, -7.0, -2.677536763713164, -3.2081052932151874, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2762883465645865, -7.0, -7.0, -3.488973524726508, -3.2460675192399124, -7.0, -3.382197210377454, -7.0, -2.9175055095525466, -7.0, -7.0, -4.583855954817508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7944880466591697, -7.0, -7.0, -3.071513805095089, -3.2979427962988312, -7.0, -2.935339292710299, -7.0, -7.0, -3.379124146070392, -7.0, -7.0, -7.0, -7.0, -3.554489160003819, -3.158844773634988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.440279213235588, -3.514547752660286, -7.0, -7.0, -7.0, -4.108666482553972, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4429498695778618, -7.0, -7.0, -3.9706257766882946, -7.0, -3.397070549959409, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6979264448065052, -7.0, -7.0, -2.3635870776856063, -2.5224442335063197, -7.0, -7.0, -7.0, -7.0, -3.3749315539781883, -2.5984257066728684, -7.0, -7.0, -3.6326597132939136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.072801149409849, -7.0, -2.9500401482063032, -7.0, -3.8340390181594666, -7.0, -7.0, -7.0, -3.123688341667586, -2.2613328542058917, -7.0, -3.736157375273132, -2.9618065669531717, -7.0, -7.0, -7.0, -3.8502325702897666, -7.0, -7.0, -3.5140161804006493, -7.0, -7.0, -7.0, -3.4019172505175748, -7.0, -7.0, -3.5766868052009952, -7.0, -7.0, -7.0, -7.0, -7.0, -3.361979527987491, -3.1980152497483316, -2.229809782952539, -2.249504090935526, -7.0, -3.6202401898458314, -7.0, -7.0, -3.1336985461157765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4169731726030363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.422925790625542, -7.0, -3.367355921026019, -7.0, -7.0, -7.0, -7.0, -7.0, -3.582404298019028, -7.0, -2.9276502821475883, -7.0, -7.0, -3.14553379809076, -7.0, -7.0, -3.1288837020997735, -7.0, -7.0, -7.0, -3.4154741681092355, -3.3967222785037734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5397032389478253, -7.0, -3.629817196018516, -7.0, -7.0, -7.0, -3.378942698613437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3823773034681137, -7.0, -7.0, -7.0, -3.4699692094999595, -3.0322963447394726, -4.1559703121583915, -7.0, -7.0, -7.0, -2.9673919516143807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2641091563058082, -7.0, -7.0, -7.0, -7.0, -7.0, -2.803270843082014, -7.0, -4.525951341248012, -7.0, -7.0, -7.0, -7.0, -2.474653253362063, -2.6450009650490482, -3.55303301620244, -7.0, -3.368286884902131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.629379013907319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.534660575828444, -7.0, -7.0, -7.0, -3.4892551683692608, -7.0, -3.74353362266181, -2.5421335445730757, -7.0, -7.0, -7.0, -3.521399628115376, -3.4507108781469196, -7.0, -7.0, -3.4169731726030363, -7.0, -7.0, -7.0, -3.0998532198843813, -7.0, -7.0, -7.0, -3.38147609027503, -3.567731962548069, -7.0, -3.436167419481368, -7.0, -7.0, -4.269536292755967, -3.0227032411199173, -7.0, -3.431524584187451, -3.385606273598312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.096736260462469, -7.0, -7.0, -7.0, -3.652922887567942, -7.0, -7.0, -3.940725613108034, -3.918442256565788, -4.315676520348013, -7.0, -3.984347257585864, -7.0, -7.0, -3.8311175827395134, -3.9048545961465555, -7.0, -4.1101181270103275, -4.598768627396784, -4.676089749249794, -4.81686411550272, -4.128334636753716, -7.0, -7.0, -3.9730816496013674, -4.0796153235269434, -4.028520419371018, -4.005866601875385, -4.263605638169458, -7.0, -4.322694690306876, -4.144293927198531, -7.0, -4.646550753640342, -4.481643246275584, -7.0, -4.120030723527898, -7.0, -4.127396390776607, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4851888764676953, -4.123900618785896, -4.0515383905153275, -3.514813294999285, -3.9934031611308507, -4.046085259177423, -3.5769169559652068, -7.0, -3.8252637950292847, -7.0, -3.2460176409716963, -3.611882555512116, -7.0, -7.0, -3.7246035153967165, -3.8553374044695405, -7.0, -7.0, -3.0708994401858685, -7.0, -7.0, -7.0, -7.0, -7.0, -3.915856931822878, -3.627499437712944, -7.0, -7.0, -7.0, -7.0, -3.9343772358689417, -7.0, -4.651491231261623, -3.787672964687493, -7.0, -7.0, -3.5214649896147696, -4.0873554300540516, -3.845449469511614, -7.0, -3.3389874160202413, -3.2691236170005356, -3.5175389738505816, -3.680516809381255, -3.4055171069763763, -3.6728672017718136, -3.8888082879416745, -2.895146189375992, -4.052097290944154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9953426418873272, -7.0, -2.8166389448984614, -7.0, -7.0, -3.7742614232193215, -7.0, -3.4075608494863623, -7.0, -7.0, -7.0, -4.172174652067981, -3.4888326343824008, -7.0, -7.0, -7.0, -3.2749656245392864, -7.0, -7.0, -7.0, -3.7113009599161657, -7.0, -3.2060158767633444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499302094133328, -4.059487684274447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.385069776331935, -3.374106508804013, -7.0, -7.0, -7.0, -3.374198257929083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.204798038190855, -7.0, -7.0, -3.3847117429382823, -7.0, -7.0, -3.45408227073109, -7.0, -7.0, -3.8305886686851442, -7.0, -3.8099458187476407, -3.4371160930480786, -3.6652056284346006, -3.4187982905903533, -7.0, -4.0217266644137775, -7.0, -3.860697274052039, -3.465977368285823, -7.0, -7.0, -7.0, -3.3656751404559175, -3.37984917876283, -2.8816699076720615, -3.464638559095033, -7.0, -3.8678797834583794, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5871494982543437, -3.5725230978496376, -7.0, -7.0, -4.316704039700037, -7.0, -7.0, -7.0, -4.054651350441742, -7.0, -4.048752457699489, -4.026471976876103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.49373680227684, -7.0, -7.0, -7.0, -7.0, -3.734426426461585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.669688708056208, -7.0, -3.153204900084284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.829753918924975, -7.0, -7.0, -7.0, -7.0, -3.6392872259102367, -7.0, -7.0, -4.023396514477751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.131964935456146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.512971799832511, -3.8319113468728965, -7.0, -5.131827101333347, -3.6192767787643367, -3.349136902644719, -5.1319376926448035, -4.588369362086652, -5.433086262195134, -4.392445926608398, -7.0, -3.221921559353994, -3.587255520806597, -7.0, -4.053769689599309, -2.100510739194386, -7.0, -5.432978906143947, -7.0, -5.132064277112742, -5.433017365093436, -4.433107089399942, -2.5089605755382696, -5.433031786321499, -7.0, -4.955884893531976, -4.95598583468028, -4.588230076620279, -7.0, -4.734135483006706, -7.0, -3.6714952268360177, -7.0, -2.648525621044213, -5.432836257800043, -4.8311944620597, -4.831167235523549, -7.0, -4.733968836780335, -5.131916858753586, -5.432919608590166, -4.955835215464196, -7.0, -4.036839604795666, -3.3433108911761096, -4.830875644426505, -5.1319729477225025, -4.07271012126439, -4.9559137362541525, -5.432909992007674, -4.830861220005249, -4.830946156923676, -4.354314968159569, -4.13326259642578, -4.955870471452533, -7.0, -7.0, -2.811559527360728, -7.0, -5.432820226967818, -5.131899229295741, -5.4328234331816025, -3.812408772969734, -4.58844138876869, -7.0, -4.178370941136013, -2.3551696329233685, -5.432873126468675, -5.433113497569717, -7.0, -5.1318848046615555, -7.0, -4.830749013705206, -5.131871982362283, -7.0, -4.479226493384303, -4.433127915606001, -4.155019432182956, -4.831055108269423, -4.5302925683609425, -3.9564469813917054, -2.6070916851790966, -4.433377752211042, -5.4329388411163535, -7.0, -7.0, -7.0, -5.432914800325537, -7.0, -7.0, -7.0, -3.616231969538357, -4.955796751121542, -7.0, -7.0, -4.956525391661737, -7.0, -5.432871523548164, -4.433052616138876, -5.131873585170395, -4.319701694006469, -5.131875187972593, -7.0, -7.0, -4.530126028436784, -2.968253249161065, -5.131976152587657, -7.0, -7.0, -4.734396540337467, -4.434108819200736, -7.0, -3.4462834977916423, -3.050042006104736, -4.955791942839168, -4.17805561153123, -4.95606913351297, -2.3500284998172463, -5.4329548675709285, -3.9568756646371357, -4.288177337719967, -4.956317333363374, -4.830920517340211, -4.955902519867588, -4.734175532664321, -5.4328122113298, -7.0, -3.0733890027618425, -5.432810608184443, -7.0, -7.0, -7.0, -7.0, -3.5590762202465087, -3.9314419784748638, -3.604079865575918, -3.607431015117042, -4.478758831505713, -3.153976644053331, -5.432919608590166, -5.4328635088568635, -4.9563509495317035, -3.905016084650832, -4.229956868102761, -5.432839463895481, -5.131889612926185, -5.1318912156692305, -3.104187106078922, -7.0, -5.432839463895481, -4.529877701316842, -4.391876181587, -7.0, -7.0, -4.354730929958319, -4.588342148897704, -4.9562052606727915, -5.132126754578685, -4.8314666335845295, -4.955929759161037, -5.432964483159803, -2.4176620338083574, -7.0, -5.432849082039786, -7.0, -5.432950059696654, -5.43288594961979, -5.131929679727997, -7.0, -4.1564248034664555, -4.955682940824174, -3.0165873673554606, -7.0, -4.091519876777007, -2.6323899806850464, -5.131915256105172, -4.956365355664486, -4.831360987247442, -4.73457262535556, -4.354529398223967, -3.902644287189708, -4.831216882631442, -5.132077093735961, -7.0, -4.734072998165133, -5.432993328649117, -4.003305718493799, -7.0, -5.432866714751133, -7.0, -2.8087672119302907, -7.0, -3.904354304879218, -7.0, -4.392410739305955, -7.0, -7.0, -7.0, -7.0, -4.956093159053612, -7.0, -7.0, -5.432828242457897, -4.356564405427492, -4.734191551493303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432884346746606, -5.432926019526862, -4.655437789832168, -4.229675444296448, -3.7473848529183247, -1.930604544490573, -7.0, -7.0, -7.0, -4.25744496879504, -5.43281862385205, -7.0, -7.0, -4.955783928916912, -7.0, -7.0, -7.0, -5.13182389536808, -7.0, -7.0, -7.0, -5.433118303634996, -3.2405073887976155, -7.0, -7.0, -7.0, -5.131862365389385, -7.0, -4.955859253948511, -7.0, -4.530036326633662, -4.1119646410441515, -5.432922814070343, -3.680367325199071, -4.073203361152041, -7.0, -7.0, -5.131868776728313, -3.405903034554918, -4.655319353156804, -2.9784853842188284, -4.734318079475221, -2.3489462973533097, -4.2567690438832475, -4.733861444276489, -5.1318767907688745, -3.4344677170621885, -4.203423275608664, -3.9288373482799925, -4.092347357161475, -3.5423928634933244, -5.432857096997329, -7.0, -7.0, -5.4330510138807, -4.5885518064856425, -4.655183271160184, -7.0, -5.132142772994083, -5.132112337499659, -7.0, -5.432898772392294, -4.9559602010555945, -5.131923269288103, -3.8238923221840366, -4.053563391020801, -4.530234927152524, -4.830995829309531, -2.434855787991721, -5.132054664397105, -7.0, -3.1809289492744997, -7.0, -7.0, -4.655200884173701, -7.0, -4.531488496961931, -4.956310929988667, -4.112124420332844, -4.530121223452704, -4.287888068556725, -5.433107089399942, -1.902546329729361, -4.053879995137211, -7.0, -7.0, -5.432836257800043, -4.002989535796033, -4.588521404407797, -5.432847479030527, -5.432937238438368, -4.831231295244944, -5.43283786085072, -5.432821830077669, -4.654651341985247, -4.831082341835677, -4.830946156923676, -7.0, -4.530286164160012, -5.432972495987906, -2.5727857511946253, -3.436167419481368, -7.0, -4.5880667195099605, -4.155554967713714, -2.532533014758181, -4.479917454374542, -7.0, -4.530330991583461, -5.131976152587657, -4.32000560114646, -3.9052576374727983, -4.230011213054175, -5.432868317689393, -7.0, -7.0, -4.655428188061645, -7.0, -5.132089909980955, -5.432942046454581, -4.155524611715298, -5.131926474519878, -4.004862511111595, -7.0, -7.0, -2.399707371851248, -2.1770840312500357, -2.699167503092759, -4.111182472655152, -2.571949559344863, -4.3566089889521, -3.343162719448533, -2.451196709825884, -2.3524888120884007, -7.0, -3.0237489456041193, -2.436191028312803, -2.3218407230624645, -2.181047732071891, -2.6734979339537297, -2.6960118329538734, -2.687264596421026, -2.354808681214491, -3.0256797214930673, -2.3844656697933324, -3.1917771990622015, -1.9546295403204343, -3.210736131009443, -2.233722657037703, -3.0156709638787342, -2.6859085515648258, -2.2965418374290882, -2.5684866678419978, -4.258779310981983, -2.4073595772172585, -2.7383985318837345, -2.4174801954167795, -2.647142153553563, -2.648544774585949, -3.0761600276347485, -2.547903632190475, -2.6709176923704128, -2.5861897606478075, -2.6710029687975694, -3.3259523628369316, -4.288186923454454, -2.5127638510577164, -2.8248633390471047, -3.4279821568454762, -4.154816235509648, -3.097332906380686, -4.3548412529584, -2.618613863442435, -3.544262765666502, -4.20460350467072, -3.1927198927453326, -2.54910919481154, -3.553804245922432, -3.5956128231697226, -3.5376617134872417, -4.003331258561327, -4.831072730183766, -3.7840987774360624, -2.6123416404291726, -3.867754066822242, -4.319660090166736, -2.629613445378183, -2.0525609515701713, -1.9281786549499058, -4.9559137362541525, -4.356347791752488, -4.955974620155648, -2.469878149039962, -3.5476106349355865, -2.246955636469541, -3.5521718487949716, -2.88464876873764, -5.432998136044408, -3.504947933895744, -3.1600335826302413, -2.711176934779885, -4.1338517431655255, -3.594248866857383, -3.7054645707376306, -2.942073717201575, -3.7645338283040592, -5.4331919899766925, -2.6916399187247166, -2.4752289628972193, -4.479890284548756, -2.153802931760111, -4.179125521533452, -4.113277878999596, -3.3081152246316403, -3.1075599661112743, -4.588063515815065, -7.0, -7.0, -4.734500599204428, -3.0755916158353096, -3.2627534503405666, -4.58798021145153, -4.434350105015772, -4.956234082127034, -3.9890634721344744, -3.059774409166059, -4.355065010645541, -4.655043943063447, -4.830890068368691, -3.2832729534027876, -4.956184443988461, -2.4969868665452117, -4.354836456888931, -4.588682991045723, -3.891515156998247, -3.6349635008969448, -4.288980208081459, -4.158040143768389, -4.355063412785068, -4.7346830422588, -4.094847356300792, -5.132966923692817, -4.392842386388172, -4.831487439682331, -5.433193591714845, -7.0, -3.4054842160241834, -5.433345729907803, -4.65475393325293, -2.8029798713080614, -2.5788475046876065, -2.5174078045308987, -7.0, -3.8026146430623937, -4.734414152052344, -4.288536658044671, -4.734161115213043, -7.0, -5.131971345281056, -3.746338659979659, -5.433177574067476, -4.956432577966348, -3.815429100194955, -7.0, -3.7327673383614615, -4.734763036969308, -4.43554815511796, -7.0, -4.320051968271859, -5.4330638317805935, -4.2037525929992885, -2.8169694414205235, -5.132262892280901, -4.830931734844233, -4.734084214055121, -3.7661833610329696, -3.4601207275421837, -7.0, -4.530607858456049, -3.715468813697298, -4.4791560560027355, -2.171040824173655, -4.655332158678962, -4.021461244518642, -5.132285310868588, -4.831489040110107, -3.278000357605805, -4.955899315132505, -3.364755888417643, -5.43380022547713, -4.956057921139135, -4.655207288728793, -4.435313909967652, -7.0, -5.432958072790875, -3.599796084276918, -4.530673448440382, -4.2874866082211796, -3.4720924168132257, -4.392618622936648, -3.6963325562988216, -4.433974535927756, -3.354262774332554, -3.7584513768787224, -4.17997604864288, -4.2889291750270715, -5.432858699971087, -7.0, -2.7338848026885336, -3.9592720003147788, -5.4330638317805935, -4.35624581850903, -2.7501210305035375, -4.355402027786844, -3.335834053210056, -2.738789581254155, -3.596347284832664, -7.0, -4.588761362909286, -7.0, -5.43288594961979, -4.734398141431968, -4.434080047708787, -4.039090359899945, -7.0, -5.433026979298686, -7.0, -3.075530164051766, -5.432950059696654, -4.9563509495317035, -5.433010955505026, -7.0, -4.831445826489906, -4.9559778243350925, -5.433265663818217, -4.0563060138858935, -4.037896397296606, -4.530566259674217, -4.734044155975036, -4.530804598699046, -4.830761838749707, -5.432828242457897, -7.0, -4.8311784466569145, -4.53007317068778, -4.433238437984877, -3.5000976136989457, -3.8247717053170036, -3.7648705879895643, -4.830995829309531, -7.0, -3.8919116195854024, -5.131886407422347, -7.0, -2.734447892803061, -5.432852288040553, -7.0, -3.943424303172156, -3.931856574894348, -4.229868942751505, -7.0, -7.0, -4.734337295690939, -7.0, -3.794627444664508, -7.0, -4.956133198668, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.182547792837783, -7.0, -7.0, -7.0, -7.0, -3.6432552250247716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.401136207098224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.08262981000055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731346975545955, -7.0, -7.0, -7.0, -7.0, -3.322839272686321, -7.0, -7.0, -7.0, -4.220813896785491, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.218929185088087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100921680320846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4279727136082085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.671487568998327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.593286067020457, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6196150057428067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4424797690644486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.246578587998662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6942541120252788, -7.0, -4.498351913199365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4590907896005865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.39931367884421, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5880667195099605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.097777734539283, -7.0, -7.0, -4.034187120793453, -4.575545759343288, -7.0, -4.802958346690387, -7.0, -4.279347492410732, -4.389396465218475, -7.0, -7.0, -7.0, -7.0, -4.624563969089531, -7.0, -7.0, -7.0, -4.156549151331781, -4.625806154480438, -7.0, -7.0, -7.0, -7.0, -7.0, -4.237870341476738, -4.17868923977559, -7.0, -7.0, -7.0, -7.0, -3.912647106218317, -7.0, -7.0, -4.5721277878771, -7.0, -7.0, -7.0, -7.0, -7.0, -4.543770140269609, -7.0, -7.0, -7.0, -3.8403256965399084, -7.0, -7.0, -7.0, -3.1670217957902564, -7.0, -7.0, -3.8860392755664424, -7.0, -7.0, -7.0, -4.502986698753511, -4.69549626947358, -7.0, -7.0, -7.0, -4.6120311338515405, -7.0, -4.641360068442172, -7.0, -4.059336177389288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.564038428178439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7419233421368165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1248301494138593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4349678884278125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1609466070925256, -7.0, -7.0, -7.0, -7.0, -3.710709565724337, -7.0, -7.0, -7.0, -3.214843848047698, -7.0, -3.2445739728174354, -3.194514341882467, -2.6994040818153375, -2.9427519204298136, -2.588025756201648, -7.0, -2.7327956982893293, -7.0, -2.5847080525750368, -3.044147620878723, -2.770483809431108, -3.8694898721419673, -2.0871501757189, -7.0, -7.0, -2.588458460008786, -3.118264726089479, -2.9960736544852753, -2.4638929889859074, -7.0, -3.382557321908786, -7.0, -3.574301411369372, -2.6954816764901977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7259116322950483, -7.0, -2.0910305188634193, -2.724275869600789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.288249225571986, -7.0, -7.0, -7.0, -3.3619921087578137, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1598678470925665, -3.0107238653917734, -7.0, -7.0, -7.0, -2.4627722284106115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4767921190601778, -2.1687920203141817, -1.6454222693490919, -7.0, -2.2810333672477277, -7.0, -3.2068387209907216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0261245167454502, -3.0107238653917734, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8879724546272227, -7.0, -7.0, -7.0, -3.0161973535124393, -1.593465688370741, -7.0, -7.0, -2.4287825114969546, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1248301494138593, -7.0, -7.0, -3.137248584828626, -7.0, -7.0, -7.0, -3.0860037056183818, -4.442087629550761, -2.7267272090265724, -3.2496874278053016, -2.1049421081920463, -7.0, -7.0, -3.0472748673841794, -3.0773679052841567, -7.0, -7.0, -3.999782798454136, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9677039447900855, -2.753199914199416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.363298523016824, -7.0, -2.7769431981946755, -7.0, -2.718501688867274, -7.0, -2.158639730841915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.511214701136388, -2.473486970064568, -2.4542348957482654, -2.575187844927661, -7.0, -2.40113470291114, -2.5323296410790315, -3.000867721531227, -7.0, -3.0273496077747564, -7.0, -3.030599721965951, -7.0, -1.8042111928249227, -7.0, -3.903307079964174, -7.0, -7.0, -1.6706849001349, -7.0, -2.6690067809585756, -7.0, -3.159266331093494, -2.715446198616883, -7.0, -2.5014016307667424, -7.0, -2.631105401655266, -3.053462604925455, -2.7363965022766426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1664301138432824, -7.0, -7.0, -2.7246853882373596, -7.0, -7.0, -7.0, -2.6127838567197355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0211892990699383, -7.0, -2.908753019184534, -3.60916737430202, -4.306844566247316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.555900189963248, -7.0, -7.0, -7.0, -2.7015679850559273, -7.0, -7.0, -2.7664128471123997, -3.4192947217534604, -7.0, -7.0, -7.0, -7.0, -7.0, -3.036628895362161, -7.0, -2.7734207232906103, -3.2732328340430454, -3.0203612826477078, -7.0, -1.8401821596959231, -7.0, -7.0, -7.0, -3.1362448017461424, -7.0, -7.0, -3.1085650237328344, -4.207365037469072, -7.0, -7.0, -3.0170333392987803, -3.3919050068671566, -7.0, -7.0, -2.393867559040913, -3.3384564936046046, -7.0, -7.0, -7.0, -2.7505083948513462, -1.9403992822650356, -2.8172347304254983, -7.0, -3.0813473078041325, -2.595863489908268, -7.0, -3.0141003215196207, -7.0, -2.550228353055094, -1.7794418738651383, -2.7329295951554746, -2.6398183918310933, -7.0, -3.7123866044592306, -7.0, -3.0013009330204183, -7.0, -7.0, -3.0043213737826426, -2.8208579894397, -3.031408464251624, -1.7762310063625517, -2.835056101720116, -2.595055089759304, -2.792391689498254, -2.943247125137862, -7.0, -3.845473576797768, -2.354588587877241, -7.0, -7.0, -7.0, -3.2997251539756367, -2.127399335155957, -7.0, -3.024074987307426, -7.0, -7.0, -7.0, -7.0, -2.597329464234929, -7.0, -7.0, -2.1692824715034074, -7.0, -3.6885088076565213, -7.0, -4.155554967713714, -7.0, -7.0, -4.077634336195216, -2.4835872969688944, -7.0, -2.5337085232398597, -7.0, -1.128736828938368, -2.9417598138146954, -2.961658348637715, -7.0, -7.0, -7.0, -1.9267055185280078, -3.0178677189635055, -2.767526899408382, -2.546542663478131, -2.3279262688653164, -3.029789470831856, -1.9871912749350684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.441129320514776, -7.0, -7.0, -3.411164973755188, -4.040633981546597, -7.0, -7.0, -4.282939165754773, -3.8855119905526943, -3.4652746699851855, -7.0, -7.0, -3.8001325865508604, -4.358629543218151, -3.5514499979728753, -4.616926903478089, -7.0, -4.326045551412314, -7.0, -4.313452404617617, -4.100818395731537, -7.0, -3.9342863021303813, -4.4621882878701635, -7.0, -4.012026910580204, -7.0, -3.811720193231691, -7.0, -7.0, -7.0, -4.256837965904041, -7.0, -4.063220735581995, -3.925535542646001, -3.9970367108825267, -2.6852937813867843, -3.3498258358900697, -2.4851157303738223, -1.9859892855571855, -7.0, -7.0, -7.0, -3.251358332713241, -2.2402291373505103, -2.425244304277949, -3.7969903905456865, -2.9325931255359237, -3.163831985102053, -7.0, -3.310410061407572, -7.0, -7.0, -7.0, -3.165568043997485, -7.0, -7.0, -2.3398450362288328, -3.0482068592753193, -4.572703193349392, -2.3479151865016914, -2.3487914675605843, -2.762678563727436, -2.617734035364018, -7.0, -3.5478731179153007, -2.726002327603283, -3.4841930324891988, -3.0394141191761372, -3.7258299903205803, -4.037426497940624, -3.117602691690084, -7.0, -2.8719063670262903, -3.628491104967123, -2.7162048924416333, -3.061954844073114, -2.4807253789884878, -2.736821292120416, -2.785982944618427, -7.0, -3.4104695715094544, -7.0, -7.0, -2.598790506763115, -4.043715858061207, -2.780677274433368, -2.7427251313046983, -7.0, -7.0, -4.10064620014548, -2.7000440709473397, -3.0633333589517497, -2.385606273598312, -7.0, -3.500785172917456, -3.1783601976294182, -7.0, -2.61066016308988, -7.0, -3.055314609787049, -7.0, -3.594613509160098, -2.463395230212905, -7.0, -7.0, -3.200440076436431, -7.0, -7.0, -7.0, -2.5757649805367193, -3.5816083660320572, -7.0, -7.0, -7.0, -3.085290578230065, -7.0, -3.577836341292744, -7.0, -7.0, -7.0, -2.749697186414885, -3.969470273425397, -7.0, -7.0, -2.649983543645145, -7.0, -2.77232170672292, -7.0, -3.0409976924234905, -2.832381160247041, -7.0, -7.0, -7.0, -3.0166155475571776, -7.0, -2.8920946026904804, -2.653051634172873, -2.99563519459755, -7.0, -2.7535830588929064, -7.0, -4.347739717920052, -7.0, -3.0402066275747113, -2.754348335711019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.298341166700119, -1.9943800073599416, -7.0, -2.810568529216413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.645422269349092, -7.0, -2.695043658821294, -2.2471546148811266, -2.598060599899029, -3.2005769267548483, -7.0, -3.4805099729419604, -7.0, -7.0, -3.2362852774480286, -3.787956123283932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4211101297934343, -4.028449242723508, -3.323870606540509, -7.0, -3.6003847306224874, -7.0, -3.0433622780211294, -7.0, -3.0382226383687185, -7.0, -2.2761334151353645, -3.252610340567373, -7.0, -7.0, -7.0, -7.0, -2.710671665738311, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1818435879447726, -2.7446840632768863, -7.0, -7.0, -7.0, -7.0, -3.0972573096934197, -3.0835026198302673, -3.101403350555331, -3.0351094029445753, -7.0, -7.0, -7.0, -7.0, -2.6346211954253143, -7.0, -2.694166295933198, -3.5971025620238164, -7.0, -7.0, -2.509202522331103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2422680448276875, -4.544068044350276, -2.454763218034042, -3.7744804688604328, -4.543223451486436, -7.0, -3.4747204434733674, -3.011158499816333, -4.544117675169358, -3.0031896290810205, -3.2020670448127246, -3.9489017609702137, -7.0, -3.0169824105995837, -3.285411019391177, -7.0, -3.774164034126966, -2.218837876764699, -7.0, -4.067008827268302, -7.0, -3.9429624514287713, -3.942342951035721, -4.06822297934645, -1.8600833612246932, -4.243534101832062, -7.0, -3.5027994256068076, -4.244165748963329, -4.245968930781295, -7.0, -4.545257621396889, -7.0, -4.259319073229125, -7.0, -2.4475611176714263, -4.543074235033532, -3.4669293757018003, -7.0, -3.6980508096542675, -7.0, -4.242901534681515, -7.0, -7.0, -7.0, -3.558288469433135, -2.7007037171450192, -7.0, -4.544390543337748, -3.555662651664352, -7.0, -7.0, -4.0666364684442025, -4.067294086315977, -2.4279615760912017, -2.1102947233754246, -7.0, -7.0, -7.0, -2.5117872143143454, -7.0, -7.0, -7.0, -7.0, -3.2427779850240452, -2.776368707370917, -4.543459606069367, -4.072543985643648, -2.805619780113231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.543608690196552, -7.0, -7.0, -4.244499778833843, -3.7054849439852404, -4.545307116465824, -4.070296518197765, -3.2267226219309495, -2.6444385894678386, -4.547479333931025, -7.0, -7.0, -7.0, -4.542987168420799, -7.0, -4.066748209617138, -4.242404758074511, -7.0, -3.5252804524478916, -4.242702892223277, -7.0, -7.0, -4.24831664034178, -7.0, -4.543347759379176, -4.067802127338805, -4.5436211115640335, -4.248549489593387, -4.543633532576258, -7.0, -4.547479333931025, -3.7679099677901626, -1.9142950651552806, -7.0, -7.0, -3.765581637503615, -3.4678176803976513, -3.552850654460561, -7.0, -3.117259863694777, -2.8473976833632433, -3.76544501809015, -3.547072869887322, -3.000954398406458, -2.163800920094078, -7.0, -3.5524857010929476, -3.952526071556139, -3.0284726614362905, -4.2432117317447595, -4.243521707406287, -4.244512145378027, -7.0, -7.0, -2.58737317819709, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6757783416740852, -3.2098761935936153, -3.2106906559695236, -4.549861188471943, -7.0, -2.9035368248903057, -4.242665636645263, -4.543285609880379, -7.0, -3.7262147396149374, -3.4065280151520345, -4.543099108002921, -4.543745305703089, -4.242702892223277, -2.590952299169162, -7.0, -7.0, -7.0, -3.944532020991981, -7.0, -7.0, -2.809939059242838, -4.070714961111136, -7.0, -4.244524511570083, -3.946341712189376, -7.0, -7.0, -2.2015017826004426, -7.0, -4.543173718365064, -7.0, -7.0, -7.0, -7.0, -7.0, -3.21842807601491, -7.0, -2.978180516937414, -7.0, -4.2510417205264535, -2.3883298406118683, -7.0, -7.0, -4.547663964631684, -7.0, -3.85101360682367, -3.8546946070403574, -3.504915494713347, -4.244140995786811, -4.069532435768039, -7.0, -7.0, -3.326889823407641, -7.0, -4.543310470747173, -4.542887642342412, -2.7869439937109552, -7.0, -3.021708959667232, -7.0, -3.249271753073101, -3.844862216137521, -3.941821886920197, -7.0, -4.066176785772006, -3.5044090720010512, -4.242131288530818, -7.0, -7.0, -4.264357321211541, -4.545690512112002, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4299509394978513, -3.7651716502632686, -3.8447007891455773, -2.8153071215317156, -7.0, -2.3227504288805587, -2.449620212881275, -7.0, -7.0, -7.0, -3.9466855619314516, -7.0, -7.0, -3.43166061617458, -4.242603536912276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.545257621396889, -2.5662213715228304, -7.0, -7.0, -7.0, -4.242479310801046, -4.544080452586784, -4.544241727408741, -7.0, -4.244437940830307, -2.542849826210958, -7.0, -3.871070638121196, -3.559379888183303, -7.0, -7.0, -7.0, -4.087083052293845, -3.9459607035775686, -2.9155427295901104, -4.546666025070184, -3.027454830703138, -4.543608690196552, -7.0, -4.543645953233247, -2.2584136227948823, -3.6481769831710005, -3.2969940766702086, -3.1598438024418076, -3.4781334281005174, -7.0, -7.0, -7.0, -4.544737582325772, -3.8504256629406837, -4.547048223472135, -7.0, -7.0, -4.244413203163297, -7.0, -7.0, -4.545022442756734, -4.544005997849434, -3.0280830070178384, -3.509226968278699, -3.6437610147894506, -4.243794303095747, -2.925781264081862, -4.545022442756734, -7.0, -2.2594744195310756, -4.066089764020343, -4.543273178913283, -3.166405442926589, -3.7658051038819447, -3.85751341477669, -4.246670885690703, -3.3242824552976926, -4.245092976101281, -3.9503283370492603, -4.545170991450791, -2.8209859108312103, -4.252221753598687, -4.543372616688624, -7.0, -7.0, -3.7100931764971508, -3.770986940942376, -4.242106419122238, -7.0, -3.4324265460524686, -7.0, -7.0, -7.0, -4.2444626770883245, -7.0, -4.242317763715195, -3.8483492528054675, -7.0, -2.781635717816913, -4.269536292755967, -2.532533014758181, -7.0, -4.077634336195216, -7.0, -2.8278932903105773, -4.542875199978764, -3.0999394835616743, -3.589974410356128, -3.2089907177589394, -2.1117340347757962, -2.759509447553341, -3.941188324583631, -7.0, -7.0, -4.548929646552791, -7.0, -3.943160505065108, -7.0, -3.192312866699809, -4.544030817513511, -3.3928961789790506, -7.0, -7.0, -3.4193916593043943, -3.84318963888085, -4.425550522537713, -4.246880021200512, -4.187055155865771, -4.565741592358979, -4.2979573758101095, -3.5717597681877002, -3.1556102627468885, -4.543298040491669, -4.055741366005619, -3.4274380197942302, -3.823963024361914, -3.3014552187546453, -3.2553602325012214, -3.6883470019945825, -3.658040764690793, -3.438214888275288, -4.172272025329505, -3.514922928167204, -3.9317222318174236, -2.9387982031410798, -3.3020937473494185, -3.461975751039211, -3.764596394810861, -4.088127225457418, -3.8066942630765674, -3.0656073750355657, -7.0, -3.3509821062800262, -3.756576947544535, -3.6316645608153735, -3.4365978118886917, -3.5826838398856826, -3.8338374377003355, -3.601784293878116, -4.361378371630884, -3.978119623151293, -3.6582242699211025, -3.465680211598278, -2.789920935042697, -2.981383642081278, -3.005855493321154, -3.281033367247727, -4.248120459883603, -3.300378064870703, -7.0, -2.8081046439393478, -3.0534306044478297, -3.237663401572365, -2.4599764321962345, -2.6711998127813477, -3.0076055495789995, -3.955037987024298, -4.000596744744559, -7.0, -7.0, -3.8785907256627516, -2.892138099558853, -3.789286852973362, -4.54928533913167, -2.7355228610948337, -2.7132394661449837, -2.2623458143395654, -3.942528893958499, -2.846586880971535, -4.545133859040489, -2.7698156462193806, -3.147665284586758, -2.8504823840745614, -3.8889989918461803, -2.770427135219635, -3.942194139356048, -4.116618811494573, -2.746906520474098, -2.478484971625684, -4.081983039279172, -4.592731766393962, -3.9796735463731157, -2.897334389207353, -4.095587746918743, -3.1835545336188615, -3.0680872527130307, -2.5120549607425273, -4.252173155771533, -2.80630333557594, -4.078287610839212, -4.086608944572948, -3.3833889379388244, -3.611481912591253, -4.545739957873238, -7.0, -7.0, -4.070899440185869, -3.55360298720468, -3.129142823317654, -3.544873843234801, -3.855834011006842, -4.547134479806692, -3.9671734229555398, -3.170603929784626, -4.25310771003719, -4.54597474839116, -3.589589711034215, -3.706899056046803, -3.8476836861516825, -2.5778312515364696, -4.0752549005329, -3.8514295860194783, -4.087580308992842, -4.304016336520766, -3.7154661089656273, -3.4590675733665495, -4.554149829550869, -7.0, -3.974695871909683, -7.0, -3.9519200735202937, -3.247138226100887, -3.3694014136966244, -4.543608690196552, -3.71474876072506, -7.0, -7.0, -2.307543880874639, -3.2508079879608007, -2.9889126149271394, -4.543484456978157, -3.6142056361665484, -4.246350836456256, -4.08020545491413, -3.7671806115015145, -7.0, -4.067207288178004, -3.571883445956414, -4.5457152356963135, -4.24760506415077, -2.3769508166030784, -4.066462591676076, -3.997102296115629, -7.0, -3.9617650709235295, -7.0, -4.0751087964165, -3.9427023688886678, -7.0, -3.3021375840925624, -4.546629020271727, -4.54435334413586, -3.9427271453659487, -3.8064061101420315, -3.71099480274821, -4.551010601573511, -3.6466242486875178, -3.448728398371921, -3.702368982412129, -2.175522015573569, -3.6449307079135873, -4.093655114075085, -3.9446677014003875, -4.548647338252487, -3.2027001754129008, -4.544551703070268, -3.1685411312096927, -3.596059239297757, -4.5457770385001215, -7.0, -4.2610962581323335, -4.242006927244273, -4.0668475109739, -3.265087487396905, -3.7721138020629263, -4.248341156669196, -3.3709917589490144, -3.9502187666418633, -2.1714150956351084, -3.153522188412702, -3.561133921976699, -3.9925424725624366, -3.8627870982353443, -3.715083670694927, -4.543248315911594, -7.0, -3.0541483460871173, -4.269559640038821, -4.544836685408386, -4.261988070187269, -3.7424423158873648, -4.556712474209863, -3.738106403558114, -3.0144155225606033, -2.439786761936646, -7.0, -4.073925980204891, -4.067120472689078, -7.0, -4.0701117827822, -3.9507176969896345, -3.6207258227036743, -4.242541428298384, -3.942417337758467, -7.0, -2.8245091988420703, -4.543956354265588, -7.0, -7.0, -4.54489861335298, -4.54831569852736, -4.545158614333448, -4.245339902695324, -7.0, -3.524761863664937, -2.748704736742231, -4.544551703070268, -3.8523213739920474, -7.0, -4.543012046377036, -7.0, -4.546258798765529, -7.0, -7.0, -3.0501808225071074, -3.62490060220449, -2.920980860300983, -4.544849071703771, -7.0, -3.4534594745817477, -7.0, -7.0, -3.0132019567134645, -7.0, -7.0, -3.9565645914886343, -3.729904959419274, -4.075133150516151, -7.0, -7.0, -3.643551368562945, -7.0, -3.7379306114157003, -7.0, -3.546135321429913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9400181550076634, -7.0, -2.9827233876685453, -3.5862308719545637, -7.0, -7.0, -7.0, -7.0, -2.8549130223078554, -2.201852121200103, -2.5054891384167237, -7.0, -7.0, -7.0, -2.790888071786576, -3.66143405039392, -7.0, -2.9138138523837167, -1.935912236167164, -2.470802365112064, -2.0253058652647704, -2.642958879409791, -2.1685816572769356, -1.6573290799701759, -2.0211892990699383, -3.4207923920775887, -1.5641195526675085, -7.0, -7.0, -3.022840610876528, -7.0, -7.0, -7.0, -7.0, -3.060320028688285, -7.0, -3.23605254695602, -7.0, -3.0599418880619544, -7.0, -7.0, -2.677150521273433, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5833499380780163, -7.0, -2.6924062348336304, -2.504244254358882, -7.0, -7.0, -2.6711728427150834, -7.0, -2.8172347304254983, -3.262213705476417, -2.99211148778695, -7.0, -7.0, -3.3577062107846425, -7.0, -7.0, -7.0, -7.0, -7.0, -2.422917980767662, -7.0, -7.0, -3.4584615778161254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9444826721501687, -7.0, -3.0338256939533106, -2.5728716022004803, -7.0, -1.9695592675234308, -7.0, -3.6828667956623247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9556877503135057, -7.0, -7.0, -2.847572659142112, -7.0, -7.0, -7.0, -2.575187844927661, -2.1724659855008337, -7.0, -7.0, -2.673020907128896, -3.0863598306747484, -7.0, -7.0, -3.0, -4.121953583545299, -2.9698816437465, -2.6085260335771943, -3.0437551269686796, -2.732054581246163, -7.0, -2.314393957221963, -7.0, -3.1007150865730817, -7.0, -7.0, -3.034227260770551, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2166935991697545, -7.0, -3.1556396337597765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2684739617082585, -7.0, -7.0, -1.9628426812012423, -2.7978558985883404, -7.0, -7.0, -7.0, -7.0, -2.645422269349092, -7.0, -3.197280558125619, -2.625312450961674, -7.0, -7.0, -7.0, -3.0081741840064264, -7.0, -3.0801452741502415, -7.0, -7.0, -7.0, -7.0, -7.0, -2.680335513414563, -7.0, -3.3769417571467586, -7.0, -3.4197905861063624, -7.0, -7.0, -2.7165536640656525, -7.0, -7.0, -7.0, -7.0, -7.0, -3.243286146083446, -3.065206128054312, -7.0, -3.0696680969115957, -7.0, -7.0, -2.3140779917792127, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4507108781469196, -2.941511432634403, -3.1775364999298623, -7.0, -2.9786369483844743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5083052193633395, -7.0, -2.971739590887778, -2.174479774899102, -2.575187844927661, -3.5969268143429707, -4.85059722880952, -2.6419695977020594, -7.0, -2.6546577546495245, -7.0, -7.0, -7.0, -3.04493154614916, -7.0, -7.0, -7.0, -7.0, -2.951337518795918, -7.0, -7.0, -7.0, -3.024074987307426, -3.7157944980035067, -7.0, -2.9375178920173464, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0318122713303706, -7.0, -7.0, -7.0, -2.087347537450042, -7.0, -7.0, -7.0, -7.0, -2.807873132003332, -3.04641711698399, -7.0, -3.603617939358176, -7.0, -7.0, -7.0, -1.8317677956630702, -7.0, -2.9190780923760737, -1.5182981413731227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7781512503836434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.678518379040114, -2.5709319183959467, -2.478566495593843, -7.0, -7.0, -3.7111954128570748, -7.0, -7.0, -3.02626080875407, -7.0, -7.0, -1.408471239559919, -2.983175072037813, -2.9960736544852753, -2.797613730153076, -2.968716377466786, -7.0, -7.0, -7.0, -4.401476363357558, -2.452553063228925, -7.0, -7.0, -7.0, -7.0, -1.7846821175426015, -7.0, -7.0, -1.912677450997669, -2.6434526764861874, -7.0, -7.0, -2.7307822756663893, -7.0, -7.0, -2.308919955522892, -7.0, -3.2059708324774667, -3.0227032411199173, -4.479917454374542, -7.0, -2.4835872969688944, -2.8278932903105773, -7.0, -7.0, -3.100370545117563, -2.6932871570056554, -2.3557524580768203, -2.5280163411892014, -1.5803148437557177, -7.0, -2.639486489268586, -7.0, -2.8302678009336417, -7.0, -3.0253058652647704, -7.0, -2.958085848521085, -7.0, -2.580069222725036, -7.0, -7.0, -4.324138352655017, -7.0, -7.0, -7.0, -4.439348486069748, -7.0, -7.0, -7.0, -4.2616196765479355, -7.0, -7.0, -7.0, -7.0, -7.0, -3.803303446549009, -7.0, -7.0, -7.0, -4.024116072826771, -7.0, -7.0, -5.103844754716462, -7.0, -4.488762172066695, -4.096910013008056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.099715162351024, -7.0, -7.0, -4.278296208091274, -3.0385574192539826, -7.0, -7.0, -7.0, -7.0, -3.5970366649776535, -3.5277587525209717, -2.8836614351536176, -3.315655525231531, -3.0459545487272597, -2.7564839644426096, -7.0, -3.08019341942848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1359179942343682, -4.204766419136863, -5.174452327912134, -3.0038911662369103, -2.6331316626337404, -7.0, -3.8403675129212234, -7.0, -4.644453361137774, -3.0687422929329817, -7.0, -7.0, -3.716504163773217, -4.032900678732676, -4.291812687467119, -7.0, -3.4073059070182823, -3.616790486329716, -3.0971415749873645, -3.5251744278352715, -7.0, -3.1645228008000683, -4.27034104958934, -7.0, -3.6857118891584975, -7.0, -2.934834983210739, -3.6695957810243134, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096736260462469, -3.718127852075301, -2.539912084579118, -2.2617385473525378, -7.0, -2.784902449886655, -3.17368564886044, -7.0, -7.0, -7.0, -7.0, -7.0, -3.680667831562386, -2.736927424692279, -7.0, -3.426185825244511, -7.0, -7.0, -3.229809782952539, -7.0, -7.0, -7.0, -7.0, -7.0, -2.037758400503131, -2.5642714304385623, -7.0, -3.395093308677923, -7.0, -7.0, -4.177954721748205, -4.647744731469901, -4.445775396743086, -7.0, -3.4768316285122607, -2.788521887222473, -3.311753861055754, -2.1218059731155416, -7.0, -7.0, -3.216429830876251, -3.039017321997412, -3.1248301494138593, -2.886678690759447, -2.6646419755561257, -3.2785249647370174, -7.0, -3.4143046881283317, -7.0, -7.0, -3.00987563371216, -3.24699069924155, -4.345530558034622, -7.0, -2.992995098431342, -3.0107238653917734, -7.0, -7.0, -7.0, -3.1562461903973444, -7.0, -7.0, -2.989392397889798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7645497190644672, -3.1711411510283822, -3.0409976924234905, -2.78354628227035, -7.0, -7.0, -2.501971645918664, -2.5876174376185492, -2.690196080028514, -3.1439511164239637, -3.1709947020363, -3.2135177569963047, -2.2727438360858954, -2.2482458076207688, -3.7798849631926443, -7.0, -3.3845326154942486, -3.3609718837259357, -2.951823035315912, -7.0, -4.285422274188247, -7.0, -7.0, -7.0, -4.327215849106363, -7.0, -7.0, -3.8198509039368695, -2.7284214238688698, -7.0, -7.0, -2.3860528489403894, -7.0, -7.0, -2.7461150183833354, -7.0, -7.0, -7.0, -7.0, -3.2166935991697545, -2.9786369483844743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7927099705545686, -3.0, -3.1920095926536702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4243915544102776, -3.5933968423002067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.992686039162128, -7.0, -7.0, -7.0, -3.55108386518578, -7.0, -7.0, -7.0, -3.0729847446279304, -7.0, -3.6292056571023035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.296665190261531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7259116322950483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.054995861529141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.434393234712605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1921677259471775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.597804842404293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542875199978764, -7.0, -7.0, -2.603144372620182, -7.0, -2.5676144427308447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3418300569205104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9876662649262746, -7.0, -7.0, -3.7203247174174416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3873898263387296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.640481436970422, -2.3935752032695876, -7.0, -7.0, -7.0, -7.0, -3.3328422669943514, -3.658964842664435, -7.0, -7.0, -2.75815462196739, -2.422014995979464, -7.0, -3.0106179269885396, -7.0, -7.0, -3.0711452904510828, -3.4987354489364773, -7.0, -7.0, -7.0, -2.7634279935629373, -7.0, -7.0, -3.7164922461934813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.292994040067439, -2.304275050477128, -7.0, -7.0, -3.864174748390403, -2.6201360549737576, -2.5327543789924976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6893088591236203, -7.0, -2.8790958795000727, -7.0, -7.0, -2.863322860120456, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6567368704836722, -7.0, -7.0, -7.0, -3.0840596627601995, -7.0, -7.0, -7.0, -7.0, -2.7518562395924007, -2.6364878963533656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9180303367848803, -7.0, -3.0161973535124393, -7.0, -2.887617300335736, -7.0, -3.442636525782232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3621996388688866, -2.6159500516564007, -7.0, -7.0, -2.663700925389648, -2.975891136401793, -7.0, -7.0, -7.0, -7.0, -2.7897662050480823, -7.0, -7.0, -7.0, -2.8785217955012063, -3.089905111439398, -7.0, -7.0, -3.504198918539445, -7.0, -7.0, -2.807535028068853, -4.261429415559447, -7.0, -3.0791812460476247, -2.832189461068513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6181352956847586, -3.150756439860309, -3.161368002234975, -7.0, -7.0, -7.0, -7.0, -7.0, -2.912753303671323, -7.0, -3.0870712059065353, -7.0, -7.0, -7.0, -3.7827950003893553, -7.0, -7.0, -7.0, -2.243658026638696, -7.0, -7.0, -2.743901550485179, -7.0, -7.0, -7.0, -2.629409599102719, -7.0, -7.0, -3.2674792279092797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5024271199844326, -7.0, -3.8708134239155974, -7.0, -7.0, -2.747171268150613, -7.0, -7.0, -2.2911467617318855, -7.0, -7.0, -7.0, -1.1903316981702914, -1.9837765880368856, -1.9395192526186187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3727279408855955, -7.0, -2.7155855518931964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.169772369448083, -7.0, -7.0, -4.548131344747943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8095597146352675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9970804354717306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.484299839346786, -7.0, -7.0, -7.0, -2.467608105583633, -7.0, -7.0, -7.0, -3.3348556896172914, -7.0, -7.0, -7.0, -3.7222910674738463, -7.0, -7.0, -7.0, -2.6372895476781744, -7.0, -7.0, -3.22219604630172, -7.0, -7.0, -7.0, -2.6201360549737576, -2.741151598851785, -2.4927603890268375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.762678563727436, -7.0, -2.866877814337499, -7.0, -3.405068753367744, -7.0, -7.0, -3.2949069106051923, -7.0, -7.0, -2.5722906061514177, -2.2166056942039845, -3.1818435879447726, -2.8992731873176036, -7.0, -7.0, -7.0, -7.0, -3.984845690775141, -7.0, -7.0, -7.0, -2.6201360549737576, -7.0, -2.9628426812012423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.48572142648158, -7.0, -2.34143452457814, -7.0, -7.0, -7.0, -3.431524584187451, -4.530330991583461, -7.0, -2.5337085232398597, -3.0999394835616743, -3.100370545117563, -2.603144372620182, -7.0, -7.0, -1.932161434939202, -2.098116806370615, -3.0989896394011773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.810568529216413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.735079671396599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8830933585756897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9710437918360286, -1.9220114246060596, -4.09684052033139, -4.308265533209933, -3.0522320902523346, -7.0, -7.0, -7.0, -3.431536952492574, -3.3205616801952367, -2.6601537141484544, -7.0, -4.14646913307187, -3.721150843749684, -7.0, -7.0, -7.0, -7.0, -3.5199591807520685, -7.0, -7.0, -7.0, -3.6590981582255195, -4.202665377206015, -7.0, -7.0, -7.0, -7.0, -4.1365831773426445, -7.0, -7.0, -3.3248994970523134, -7.0, -7.0, -7.0, -7.0, -7.0, -3.239049093140191, -7.0, -7.0, -3.862250674597925, -2.760271660542063, -2.3256524705723134, -3.9082490417283884, -4.565954019011971, -7.0, -4.158312223621103, -7.0, -7.0, -3.6241789257480224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9995220131289035, -2.4608978427565478, -2.536242706838319, -7.0, -7.0, -3.698448538015329, -7.0, -2.8135809885681917, -2.693726948923647, -3.795741020869244, -7.0, -7.0, -2.5921767573958667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9380190974762104, -2.5037906830571814, -7.0, -7.0, -7.0, -7.0, -7.0, -4.166025333724231, -7.0, -7.0, -7.0, -2.405403283235218, -7.0, -2.7846172926328756, -7.0, -7.0, -3.45178643552429, -7.0, -7.0, -3.318689269947746, -2.6646419755561257, -7.0, -7.0, -7.0, -7.0, -7.0, -2.747411807886423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5904535067980072, -2.919601023784111, -7.0, -7.0, -7.0, -7.0, -7.0, -3.728434950974255, -7.0, -2.500373714353374, -2.8767949762007006, -7.0, -7.0, -1.7242758696007892, -2.9235548580675492, -3.0043213737826426, -7.0, -3.4369573306694496, -7.0, -2.563629384689655, -3.059184617631371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.317624643080059, -7.0, -7.0, -3.8095597146352675, -7.0, -7.0, -7.0, -2.409087369447835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4583960874262516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9745116927373285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8027737252919755, -2.8363241157067516, -3.208441356438567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.806179973983887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357620441162185, -7.0, -7.0, -7.0, -7.0, -3.3311234878466514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.974482907684665, -1.8864907251724818, -7.0, -7.0, -7.0, -7.0, -7.0, -4.558492569294311, -7.0, -7.0, -7.0, -2.5037906830571814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.034909073367748, -7.0, -1.1449332770652945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7269308641214662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.518553419399928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3604419331026376, -7.0, -7.0, -7.0, -2.6857417386022635, -7.0, -7.0, -3.5146805441249818, -4.09715314984596, -2.296665190261531, -7.0, -7.0, -4.25927524755698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40840957846843, -7.0, -7.0, -7.0, -7.0, -1.6812412373755874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7729814503449637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.250980807096349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.628899564420607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.786041210242554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8744818176994666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.911370707116138, -7.0, -7.0, -3.1451964061141817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9425041061680806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.0979337404615395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9501700598082, -3.385606273598312, -5.131976152587657, -7.0, -7.0, -3.589974410356128, -2.6932871570056554, -7.0, -7.0, -7.0, -2.6349808000512285, -2.5188428262865648, -2.9934362304976116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0346284566253203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.392732117381129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.570858039282002, -4.001365877488586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.137986732723531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.353030975765281, -7.0, -7.0, -7.0, -3.2678754193188975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2751961417856235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.649972740165452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5907304057926903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.967025673712249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.823800153749878, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6314437690131722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.620656479819621, -3.302312102385248, -7.0, -7.0, -7.0, -7.0, -3.388988785124714, -2.924795995797912, -3.0655797147284485, -7.0, -2.8454081396217936, -7.0, -3.630936119064191, -3.649529565947819, -2.582063362911709, -2.5774917998372255, -2.7525300290346935, -7.0, -7.0, -7.0, -7.0, -2.9395192526186187, -2.2723058444020863, -3.866700756042499, -2.0339261204728705, -7.0, -7.0, -1.649334858712142, -2.7299742856995555, -2.8773713458697743, -2.6679196853173615, -7.0, -3.3376588910261424, -7.0, -3.7458746873072974, -2.576916955965207, -3.010299956639812, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.918554530550274, -3.3053513694466234, -2.2854020929654126, -2.6143698395482886, -7.0, -2.7776684326775474, -7.0, -7.0, -7.0, -2.636989101812229, -2.7741518589547103, -3.2317243833285163, -7.0, -7.0, -7.0, -3.574956775764507, -7.0, -7.0, -7.0, -7.0, -3.4158077276355434, -2.780317312140151, -2.8965262174895554, -7.0, -3.7565093254448008, -7.0, -2.489489731962272, -7.0, -7.0, -7.0, -7.0, -2.1997551772534747, -7.0, -1.7993405494535817, -2.0714217057453848, -1.691179759909767, -7.0, -3.0461047872460387, -7.0, -3.247301223820282, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8965262174895554, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0544737683203174, -7.0, -7.0, -7.0, -2.9036325160842376, -1.8948696567452525, -7.0, -7.0, -2.4420876295507603, -7.0, -3.3829890619644596, -7.0, -7.0, -7.0, -2.1899312421881114, -7.0, -7.0, -2.9863237770507656, -7.0, -7.0, -7.0, -2.513217600067939, -3.6619151757715462, -2.919601023784111, -2.709269960975831, -2.3240250955971815, -3.0557604646877348, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9893608137762473, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1252372114756253, -2.7218106152125467, -3.510813010512496, -7.0, -7.0, -7.0, -2.428674625648206, -7.0, -2.5850845541000504, -7.0, -3.1936810295412816, -7.0, -7.0, -7.0, -2.1928073248846807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.683347276399375, -7.0, -2.7263196121107756, -7.0, -7.0, -7.0, -2.92272545799326, -2.634162771445941, -2.89707700320942, -7.0, -7.0, -7.0, -7.0, -2.3170181010481117, -7.0, -2.0453229787866576, -7.0, -7.0, -7.0, -7.0, -1.793735581621422, -2.9175055095525466, -7.0, -2.3502480183341627, -3.0813473078041325, -2.2145127046981408, -7.0, -2.0552083863593693, -7.0, -2.542410429811593, -2.951337518795918, -2.931966114728173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.12985095078891, -7.0, -3.140193678578631, -2.916980047320382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.44870631990508, -7.0, -7.0, -2.2430380486862944, -2.663386788318517, -7.0, -4.248120459883603, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8836614351536176, -2.9934362304976116, -7.0, -2.9273703630390235, -7.0, -7.0, -7.0, -2.8870543780509568, -7.0, -7.0, -2.9698816437465, -3.312388949370592, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7926039027846181, -7.0, -7.0, -7.0, -3.398287305357401, -3.0655797147284485, -7.0, -7.0, -4.204160695855202, -7.0, -7.0, -2.6026025204202563, -2.590507462008583, -7.0, -7.0, -3.3027637084729817, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3246253644997976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.06871581236946, -1.8765752054416793, -2.538762188781348, -3.0318122713303706, -7.0, -3.5337085232398597, -7.0, -7.0, -3.319175485332129, -7.0, -7.0, -2.7351995484223135, -2.444044795918076, -2.1851642610024675, -2.1457400995364067, -7.0, -7.0, -3.1818435879447726, -7.0, -4.321860681427759, -2.419680442945259, -7.0, -7.0, -7.0, -7.0, -2.621176281775035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.979548374704095, -7.0, -7.0, -2.0839801289293933, -7.0, -3.6778349886836756, -7.0, -4.32000560114646, -7.0, -1.128736828938368, -3.2089907177589394, -2.3557524580768203, -2.5676144427308447, -1.932161434939202, -2.6349808000512285, -7.0, -2.25433319950825, -2.5018804937550585, -2.4110582391986624, -7.0, -7.0, -2.1822005912381215, -7.0, -2.971275848738105, -7.0, -2.625312450961674, -7.0, -1.9390652071178751, -7.0, -7.0, -4.322859923383261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.930269649751069, -4.2606357630261105, -7.0, -7.0, -7.0, -4.059402468155198, -3.8520256716529677, -4.4033436191304505, -7.0, -4.398200507219428, -4.657419207208257, -4.018991594705612, -4.614433158550452, -7.0, -4.501340024343219, -3.9020028913507296, -7.0, -4.092580300691311, -7.0, -4.630936119064192, -7.0, -7.0, -4.231902649456643, -7.0, -3.888269377393971, -7.0, -7.0, -7.0, -7.0, -7.0, -4.35981651710126, -4.097569639431371, -3.9865478134147243, -2.1121407636689873, -3.9757993096794073, -2.8371252805687592, -2.358593700955241, -3.0972573096934197, -4.072323438293041, -7.0, -3.508321550521236, -2.7402310651617, -2.4899584794248346, -4.089799173036164, -3.37842818542093, -2.902313767872166, -7.0, -3.168202746842631, -7.0, -7.0, -7.0, -3.723838623672183, -7.0, -7.0, -2.6384139011253755, -3.379989513978221, -4.696958914626985, -2.3419288837458097, -2.788521887222473, -7.0, -3.0851541116211387, -7.0, -4.099725025058975, -3.3585059114902354, -4.077948998506027, -7.0, -3.404833716619938, -4.027879409207207, -3.3856509518023437, -3.0153597554092144, -2.7422012536996743, -3.302330928684399, -2.9683661870310103, -3.031139050792672, -2.081437326351849, -3.1479427135532005, -3.247259956560877, -3.199480914862356, -3.638698865768533, -7.0, -3.089905111439398, -3.055282745486664, -4.034307529596563, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9339510299983784, -2.358886204405869, -2.632204133050827, -7.0, -3.1656893760176175, -3.1684974835230326, -2.918554530550274, -7.0, -7.0, -3.341368567484551, -7.0, -3.730590514118412, -2.577204473011063, -3.1332194567324945, -7.0, -7.0, -7.0, -3.5149460053080044, -7.0, -2.803798407989674, -2.774395297572017, -7.0, -7.0, -7.0, -2.386498965550653, -7.0, -3.865163219506086, -7.0, -7.0, -7.0, -3.10179615508807, -4.444809605172975, -7.0, -7.0, -3.044147620878723, -7.0, -2.977266212427293, -7.0, -2.456366033129043, -7.0, -7.0, -3.0824263008607717, -3.653983907374069, -2.424881636631067, -7.0, -3.1222158782728267, -2.78993308093175, -7.0, -7.0, -2.9537596917332287, -7.0, -4.343093345096137, -7.0, -7.0, -2.954724790979063, -7.0, -3.843481943039958, -7.0, -7.0, -7.0, -7.0, -3.225409801222181, -2.218985395949339, -7.0, -2.2422100322640643, -7.0, -7.0, -7.0, -3.755188585608325, -7.0, -7.0, -3.038620161949703, -7.0, -7.0, -2.9206450014067875, -2.7527205075033088, -2.82865989653532, -7.0, -3.764325605625984, -7.0, -3.2149762347220667, -2.870403905279027, -3.7708520116421442, -7.0, -3.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023602224258929, -3.27207378750001, -7.0, -3.448971187456634, -3.800648355363988, -7.0, -7.0, -2.6299190355035416, -7.0, -2.738384123512156, -3.1908917169221698, -7.0, -7.0, -2.463395230212905, -7.0, -3.2130452804616065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.806519134080705, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0060379549973173, -7.0, -7.0, -2.9363461582661623, -7.0, -7.0, -7.0, -7.0, -2.843076977385342, -7.0, -7.0, -3.3876122562959106, -2.8847953639489807, -7.0, -7.0, -7.0, -3.1781132523146316, -7.0, -7.0, -2.420368379857524, -7.0, -3.6163704722912695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.118264726089479, -3.1752671276454327, -7.0, -7.0, -7.0, -3.8086835091289695, -3.3481100684802376, -7.0, -2.6235446283772546, -2.6522463410033232, -2.9014583213961123, -7.0, -3.236075179005586, -3.7960884286806684, -7.0, -3.2184041992497217, -2.6719466265655902, -7.0, -3.4211101297934343, -3.406199423663313, -7.0, -7.0, -3.4369573306694496, -2.39259484773975, -7.0, -7.0, -7.0, -2.7344797894255772, -2.454692449239477, -7.0, -7.0, -7.0, -7.0, -7.0, -2.949317708578839, -7.0, -2.5442231218316245, -7.0, -3.1078880251827985, -7.0, -7.0, -7.0, -7.0, -7.0, -3.581038948772167, -2.406011305416004, -3.4176377396522297, -7.0, -2.776095557782467, -7.0, -7.0, -7.0, -3.424881636631067, -3.474507639116976, -2.1396272484806373, -7.0, -7.0, -7.0, -3.0741845459702977, -7.0, -7.0, -7.0, -7.0, -3.643057683751453, -2.7768464086952993, -7.0, -7.0, -3.1001866778489813, -7.0, -3.4347285417797577, -7.0, -7.0, -7.0, -7.0, -3.413467412985825, -7.0, -3.471144965160633, -3.137670537236755, -2.721398375521505, -7.0, -3.4628470358316736, -3.4861469968065726, -2.979978789341033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4114513421379375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.708562525598842, -3.4138025167693513, -7.0, -3.462996612028056, -3.4470028984661623, -2.144923510396036, -7.0, -7.0, -3.4168068718229443, -2.9827233876685453, -2.9236325331770483, -7.0, -2.752432609261474, -3.872360255801214, -3.4149733479708178, -7.0, -2.1823195271506552, -3.1635130490182313, -7.0, -2.822560336942692, -3.543074235033532, -1.7181632495953605, -7.0, -7.0, -3.4391747398434687, -7.0, -7.0, -3.4602587043308133, -7.0, -7.0, -7.0, -3.4051755462179893, -7.0, -2.3443922736851106, -2.7400994009248563, -7.0, -7.0, -7.0, -7.0, -3.4149733479708178, -3.107718610520263, -7.0, -2.9116901587538613, -2.7459851262089248, -7.0, -3.113943352306837, -7.0, -2.2986378584396854, -7.0, -7.0, -7.0, -3.4530123911214554, -7.0, -7.0, -2.3309546133716443, -3.4679039465228003, -7.0, -3.439332693830263, -3.4749443354653877, -3.1277525158329733, -7.0, -2.3954478504814185, -7.0, -7.0, -7.0, -3.418135498425232, -7.0, -7.0, -7.0, -2.7609607093960578, -7.0, -3.5030639822276726, -7.0, -3.5160062303860475, -2.446084263545658, -7.0, -7.0, -7.0, -7.0, -3.1922886125681202, -3.533772058384718, -2.271221849767887, -2.734159513244467, -7.0, -7.0, -7.0, -3.2723058444020863, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7478000908643687, -7.0, -3.2000292665537704, -3.417803722639881, -2.7178368674869255, -7.0, -7.0, -3.4452927694259716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.119915410257991, -7.0, -3.1142772965615864, -2.3312826522290138, -7.0, -2.9708116108725178, -4.457715410495883, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4075608494863623, -2.663700925389648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4352071032407476, -3.1266724494173004, -7.0, -7.0, -7.0, -7.0, -3.4197905861063624, -3.4219328132785085, -7.0, -3.4382258076045296, -2.9324737646771535, -7.0, -3.3793961751941644, -2.744851561311451, -7.0, -7.0, -7.0, -7.0, -2.8674674878590514, -3.1602283571978584, -7.0, -3.926728200446934, -7.0, -7.0, -7.0, -2.5084623812733606, -3.508798965403905, -3.2210228052048415, -2.3455466988249936, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1855421548543754, -3.4577305482459986, -7.0, -7.0, -3.4379090355394983, -7.0, -3.4127964287165433, -3.4321672694425884, -3.1174370252826193, -2.4686947660162097, -2.899546931090867, -3.4574276929464847, -7.0, -3.552272669914343, -7.0, -7.0, -2.2678263615859806, -7.0, -7.0, -3.158060793936605, -7.0, -7.0, -2.988261596728756, -2.7011977951071855, -3.446537167073644, -3.0423129401940403, -7.0, -3.827304641089735, -3.227372442289636, -7.0, -7.0, -7.0, -3.5499836111596887, -3.484157424365381, -7.0, -7.0, -2.6060741174982827, -7.0, -7.0, -7.0, -3.1371958119405483, -7.0, -2.9324737646771535, -2.9845273133437926, -7.0, -3.275234549433838, -7.0, -3.9052576374727983, -7.0, -2.9417598138146954, -2.1117340347757962, -2.5280163411892014, -7.0, -2.098116806370615, -2.5188428262865648, -2.25433319950825, -7.0, -2.2952436031267367, -2.9317967661271176, -7.0, -7.0, -7.0, -7.0, -3.43568513794163, -7.0, -2.5399538416563967, -7.0, -2.6725596277632757, -7.0, -7.0, -4.340969313301004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.973558854042434, -7.0, -4.117668940562442, -4.601234046916447, -7.0, -4.51731468566477, -3.733935179300555, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015443587951102, -4.632372922202545, -3.9899390132845354, -4.801396849070872, -7.0, -7.0, -7.0, -4.484869032720402, -7.0, -4.723997176191744, -7.0, -7.0, -7.0, -4.240124730168566, -3.9326259440217823, -7.0, -7.0, -7.0, -7.0, -4.060168811945148, -2.1059515089530225, -3.8989554282244407, -3.3969931804349707, -2.986995539724382, -7.0, -7.0, -7.0, -3.2284353584597953, -2.7773750312638663, -2.693726948923647, -3.3703897104835856, -3.5087720482709264, -2.964907523353008, -7.0, -3.4085226171161014, -7.0, -7.0, -7.0, -4.247457695814812, -7.0, -7.0, -3.1923583395461788, -3.6892289202673214, -4.702137461143438, -7.0, -2.346455924429052, -2.9558480361547432, -3.38009058759723, -7.0, -7.0, -7.0, -3.43930110762843, -7.0, -7.0, -3.7942091163464964, -3.548941916664869, -7.0, -3.8311015645013593, -7.0, -3.142884596540962, -7.0, -2.359835482339888, -2.8802724280098246, -3.6871497913170237, -7.0, -3.4256301060619636, -7.0, -7.0, -3.5009222391903005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4812275779993205, -7.0, -3.0679383299743406, -7.0, -7.0, -3.3842817128855844, -7.0, -2.841359470454855, -7.0, -3.4458635609892205, -3.45408227073109, -3.475167366363165, -3.2182728535714475, -7.0, -3.636989101812229, -7.0, -3.60151678365001, -7.0, -7.0, -7.0, -3.729974285699556, -7.0, -7.0, -3.4768316285122607, -2.9648879044212895, -7.0, -3.9600900679049196, -7.0, -7.0, -3.223154240460178, -4.061622092243773, -3.9144111638066694, -7.0, -7.0, -3.4620983811351556, -3.570192561095726, -3.437750562820388, -7.0, -7.0, -3.6955692270361853, -3.4410664066392633, -7.0, -2.566610773321697, -3.1124374173218436, -3.8673496171887924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.075966455076692, -7.0, -3.4234097277330933, -7.0, -7.0, -3.9427519204298136, -7.0, -7.0, -3.8448498008066387, -3.464638559095033, -2.8871110573475165, -7.0, -7.0, -2.9769610160114275, -7.0, -7.0, -7.0, -3.874017703862186, -3.4983105537896004, -7.0, -7.0, -3.6144753660903954, -7.0, -3.117602691690084, -3.500373714353374, -3.019393263978083, -7.0, -3.102262149494273, -7.0, -2.168185403160118, -2.668785145596836, -3.8859828113549733, -3.842172229385616, -3.134283382991931, -3.59802407233419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3600250891893975, -7.0, -3.5801643896985524, -3.217706602245906, -2.7614982691650285, -7.0, -7.0, -7.0, -7.0, -3.4605971888976015, -3.22284647997415, -3.4168900301730125, -7.0, -3.4260230156898763, -7.0, -2.937939998216925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.690196080028514, -3.173186268412274, -2.8847953639489807, -7.0, -3.5082603055123345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.763490387713164, -7.0, -7.0, -7.0, -7.0, -3.6612446089593336, -7.0, -7.0, -3.2146604767734983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.675167089663394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3864895783427094, -7.0, -7.0, -2.950364854376123, -7.0, -3.0010410579860936, -7.0, -2.504130905935453, -7.0, -7.0, -7.0, -3.15946692901018, -7.0, -7.0, -3.2143138974243994, -2.419163774190302, -7.0, -2.6830470382388496, -2.9429995933660407, -2.166895074645, -2.2130748253088512, -3.0269416279590295, -4.090011024007147, -2.394889257167419, -7.0, -7.0, -3.0211892990699383, -7.0, -7.0, -7.0, -7.0, -2.8830933585756897, -7.0, -3.5050530267664497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8058028185264856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5135505203463375, -3.2612628687924934, -2.9903388547876015, -7.0, -7.0, -4.056828652637812, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6345528368718063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.963787827345555, -7.0, -7.0, -7.0, -2.571708831808688, -7.0, -1.9352192721258945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9537596917332287, -3.0128372247051725, -2.9642596301968487, -7.0, -2.9647309210536292, -7.0, -7.0, -7.0, -2.121043692724776, -7.0, -7.0, -2.9731278535996988, -3.0849335749367164, -7.0, -7.0, -2.7558748556724915, -7.0, -2.3631417096979495, -2.481442628502305, -2.437750562820388, -3.0010016694117185, -7.0, -2.215373152783422, -7.0, -2.4951973183654577, -7.0, -7.0, -2.7307822756663893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7374312005145827, -7.0, -7.0, -3.154423973114647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4450850227193537, -7.0, -7.0, -2.118689787331298, -3.32156391196738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.043065401325682, -7.0, -7.0, -7.0, -7.0, -7.0, -2.678518379040114, -7.0, -2.89835945989891, -7.0, -3.2945213361777705, -7.0, -7.0, -2.7070387720538625, -7.0, -7.0, -7.0, -3.1225435240687545, -2.6815427260943268, -3.2422929049829308, -7.0, -7.0, -2.366236123718293, -2.7041505168397992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4500950758716025, -7.0, -7.0, -7.0, -2.976808337338066, -7.0, -7.0, -3.048053173115609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9854264740830017, -7.0, -2.9698816437465, -2.4310419453358856, -2.876217840591642, -7.0, -7.0, -7.0, -7.0, -2.954724790979063, -7.0, -7.0, -7.0, -2.438937701095528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.01674092728626, -7.0, -7.0, -7.0, -2.9609461957338317, -7.0, -7.0, -7.0, -2.7283537820212285, -7.0, -7.0, -7.0, -2.56839730816483, -7.0, -7.0, -7.0, -7.0, -7.0, -3.444513206334043, -7.0, -3.8077649673797778, -7.0, -7.0, -2.965201701025912, -2.0415762803763062, -7.0, -2.261130643344097, -1.5819346385669724, -7.0, -7.0, -7.0, -7.0, -3.004751155591001, -2.666829861704301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9786369483844743, -2.524396122103842, -2.877083256650651, -3.077731179652392, -3.0086001717619175, -3.7111531868500505, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6319695947927622, -7.0, -3.296665190261531, -7.0, -7.0, -7.0, -7.0, -7.0, -4.197321917535383, -2.531223374533027, -7.0, -7.0, -7.0, -7.0, -2.437750562820388, -7.0, -7.0, -1.7297046213121872, -7.0, -7.0, -7.0, -7.0, -7.0, -2.954724790979063, -2.2398355349224595, -7.0, -3.3820620915331476, -7.0, -4.230011213054175, -7.0, -2.961658348637715, -2.759509447553341, -1.5803148437557177, -7.0, -3.0989896394011773, -2.9934362304976116, -2.5018804937550585, -2.2952436031267367, -7.0, -7.0, -7.0, -7.0, -2.828981954007923, -7.0, -7.0, -7.0, -2.655138434811382, -7.0, -2.440336511801791, -7.0, -7.0, -7.0, -4.7526782943689865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.261587972170946, -7.0, -7.0, -4.582665500466235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.10383107722707, -3.9084850188786495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.25321681250213, -7.0, -7.0, -4.254016060861037, -7.0, -7.0, -4.400710636773232, -7.0, -2.9602328731285126, -4.278250442299367, -3.3176037419331044, -3.308422115236931, -3.1370374547895126, -7.0, -7.0, -4.250371202434478, -7.0, -7.0, -4.094016681120422, -3.382047075732925, -3.456366033129043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3251236586893103, -4.505805449051175, -5.174440702782961, -7.0, -2.506843136339351, -7.0, -4.618581480328452, -7.0, -4.945473509077624, -3.670987603010034, -7.0, -7.0, -7.0, -4.0327396052094935, -7.0, -7.0, -7.0, -7.0, -3.33139837151611, -7.0, -3.0409976924234905, -3.381423019450003, -7.0, -7.0, -3.68567208670853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019116290447073, -7.0, -7.0, -7.0, -3.8265930539340482, -7.0, -4.6350311209460076, -7.0, -7.0, -7.0, -7.0, -7.0, -3.530583859645118, -7.0, -7.0, -7.0, -7.0, -7.0, -2.215174739097536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3466560922695425, -7.0, -7.0, -7.0, -7.0, -7.0, -3.028977705208778, -7.0, -7.0, -7.0, -7.0, -7.0, -3.665393350279712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6685292718594495, -3.1109262422664203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.752432609261474, -3.205745540942662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.327134064918578, -7.0, -7.0, -3.819763220818885, -3.206353560072406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2982290899777897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2478096594727353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8164622587764545, -2.9479236198317262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8260748027008264, -7.0, -4.57610513115158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7403626894942439, -7.0, -7.0, -7.0, -7.0, -4.334212409393176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.113943352306837, -7.0, -3.2173084362374205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0244446171313495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0043213737826426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7686381012476144, -7.0, -7.0, -7.0, -7.0, -4.056371179475529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.735726614588647, -7.0, -7.0, -3.000867721531227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426372980809529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.589111464400596, -7.0, -7.0, -7.0, -7.0, -3.066875435390042, -7.0, -7.0, -7.0, -2.705007959333336, -2.7965743332104296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7242758696007892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8573324964312685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.149834696715785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.601734148260105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8024316264307236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.591064607026499, -7.0, -7.0, -1.780214410947417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432868317689393, -7.0, -7.0, -3.941188324583631, -7.0, -7.0, -7.0, -7.0, -2.4110582391986624, -2.9317967661271176, -7.0, -7.0, -7.0, -7.0, -2.7259116322950483, -7.0, -7.0, -7.0, -7.0, -7.0, -1.731387283168788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4311546090522445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.300530269612207, -3.723291446477584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351332399626383, -7.0, -7.0, -7.0, -7.0, -7.0, -4.308884414422017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6752588323279403, -7.0, -7.0, -4.126272143076777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.009450895798694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.292625212459791, -7.0, -4.325659309801641, -2.912753303671323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.307496037913213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9003671286564703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9667083835601757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.628502456251952, -2.511214701136388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008983203815472, -7.0, -7.0, -4.278639297890739, -7.0, -7.0, -7.0, -2.1931245983544616, -7.0, -2.5998830720736876, -7.0, -7.0, -7.0, -7.0, -7.0, -4.146624088824005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4638929889859074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.652536418593025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2751961417856235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657572107612741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9738203243526837, -7.0, -7.0, -7.0, -7.0, -1.8512583487190755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055340099544181, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.133403170134419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9344984512435677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727199542699307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067294086315977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1212314551496214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.546542663478131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4008832155483626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.256477206241677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.506505032404872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.639486489268586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.343605508104172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.430937302851301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.783774986212391, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721068301797159, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.350809910936365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603144372620182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325382234828304, -2.8981764834976764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.682145076373832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1335389083702174, -3.3881012015705165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3816420539580045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.103917694052505, -2.795184589682424, -7.0, -3.4051755462179893, -7.0, -7.0, -7.0, -3.7138264243805246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.916980047320382, -7.0, -7.0, -7.0, -7.0, -4.145786670174155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.462397997898956, -7.0, -4.876927608974731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6532125137753437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.739572344450092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -7.0, -7.0, -7.0, -7.0, -4.7271100016409155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368258985002859, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5314789170422551, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.398981066658131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0400086360135417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.29970337336519, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979056442068636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.485011214578573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.77232170672292, -3.620561903494791, -7.0, -7.0, -7.0, -7.0, -3.6679196853173615, -1.8618329976579449, -7.0, -7.0, -7.0, -7.0, -3.919444210465237, -7.0, -7.0, -2.500716623555479, -2.891882167768502, -7.0, -2.7788744720027396, -2.709269960975831, -2.5269850685599957, -7.0, -7.0, -7.0, -2.8020892578817325, -7.0, -7.0, -2.8356905714924254, -7.0, -2.403977963669355, -7.0, -7.0, -3.285782273779395, -7.0, -3.564902672529205, -7.0, -2.188084373714938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.061452479087193, -7.0, -2.5545295388316016, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.042693618178643, -2.7058637122839193, -7.0, -7.0, -7.0, -3.3729120029701067, -7.0, -7.0, -7.0, -3.9263939002696824, -7.0, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -2.7442929831226763, -7.0, -2.360309344342059, -7.0, -1.761453026621882, -7.0, -7.0, -7.0, -3.6200709579966586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7634279935629373, -2.734799829588847, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7075701760979367, -7.0, -7.0, -2.8228216453031045, -2.7450747915820575, -1.3258803868629827, -7.0, -7.0, -2.459392487759231, -7.0, -2.8681299149575903, -7.0, -7.0, -7.0, -2.929929560084588, -7.0, -7.0, -3.560743301054712, -7.0, -7.0, -7.0, -7.0, -4.2621820444366785, -2.767897616018091, -2.6338049875467577, -2.461798557525109, -7.0, -7.0, -7.0, -2.5508396050657853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7041505168397992, -7.0, -3.1048284036536553, -3.165095874754218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.417969642214737, -7.0, -7.0, -7.0, -2.269800223528476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6127838567197355, -7.0, -2.977266212427293, -2.8129133566428557, -7.0, -2.9238994354584613, -2.255272505103306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0023820749327608, -7.0, -7.0, -7.0, -7.0, -2.522055578229381, -7.0, -7.0, -2.9459607035775686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.482873583608754, -3.2329961103921536, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0884904701823963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0572856444182146, -2.64957822912025, -4.849465482196628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7209857441537393, -7.0, -7.0, -7.0, -3.7000977046130537, -7.0, -7.0, -7.0, -7.0, -2.7730546933642626, -7.0, -7.0, -2.8494194137968996, -7.0, -2.7528164311882715, -7.0, -2.1513462735539934, -7.0, -7.0, -7.0, -3.0521165505499983, -7.0, -3.415056858110851, -7.0, -7.0, -7.0, -7.0, -2.7466341989375787, -2.499785239355606, -7.0, -7.0, -2.4656306657101514, -3.229937685907934, -2.720159303405957, -7.0, -7.0, -2.8102325179950842, -2.409087369447835, -2.9206450014067875, -7.0, -7.0, -7.0, -2.7505083948513462, -7.0, -7.0, -1.6028348255779234, -2.6972293427597176, -3.058426024457005, -7.0, -7.0, -4.133357914626442, -7.0, -7.0, -3.7792356316758635, -7.0, -2.2422100322640643, -2.926342446625655, -7.0, -3.2081725266671217, -2.1653432655224587, -7.0, -7.0, -3.105510184769974, -7.0, -4.6220654322136685, -1.5356019968889618, -7.0, -7.0, -7.0, -7.0, -2.2231496826367745, -7.0, -7.0, -2.9041743682841634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3562990843061946, -7.0, -7.0, -7.0, -4.655428188061645, -7.0, -1.9267055185280078, -4.548929646552791, -2.8302678009336417, -7.0, -7.0, -7.0, -2.1822005912381215, -7.0, -2.828981954007923, -2.7259116322950483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.859438535455056, -7.0, -1.957722850186747, -7.0, -7.0, -4.6213736435061765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.403274985811686, -3.6942860407476794, -7.0, -7.0, -7.0, -4.659193358577049, -4.804711751085301, -7.0, -7.0, -7.0, -4.655071171607829, -4.008685319195168, -7.0, -7.0, -7.0, -7.0, -4.310048648328322, -7.0, -7.0, -4.628440020513509, -4.153845340080965, -7.0, -4.405926625612947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4608862829944553, -3.230640479632605, -2.552668216112193, -2.3001605369513523, -7.0, -3.105510184769974, -3.643687033559034, -3.327086350362379, -3.285557309007774, -3.7799570512469063, -3.0024746191278555, -2.88284966953054, -7.0, -3.2748503200166645, -3.237040791379191, -7.0, -7.0, -3.2908412041830033, -3.404320467221731, -7.0, -2.881802960668849, -3.4369164966752686, -7.0, -7.0, -3.3461573022320086, -7.0, -3.5353363234811113, -7.0, -4.466531517353593, -2.9360107957152097, -7.0, -7.0, -3.207095540419218, -4.017784353096679, -3.283142863303242, -7.0, -2.5598145842427398, -7.0, -2.5841823863380733, -3.474507639116976, -7.0, -2.3301438206546727, -3.868009281278586, -7.0, -3.937377450772812, -7.0, -3.0443437348951075, -2.6780122672453888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7025166974381505, -7.0, -2.467756051244033, -7.0, -3.4291060083326967, -2.923546226642205, -7.0, -7.0, -7.0, -3.023458237643675, -7.0, -3.589746565098586, -2.8027737252919755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0128372247051725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8504011479971583, -7.0, -7.0, -7.0, -3.439707604467424, -7.0, -7.0, -7.0, -1.8839194063414246, -7.0, -2.3679767852945943, -7.0, -7.0, -3.466125870418199, -7.0, -7.0, -7.0, -2.745855195173729, -3.726890140741822, -3.0334237554869494, -3.347720217034038, -7.0, -7.0, -7.0, -2.8435442119456353, -4.338237298881058, -7.0, -2.486430478854434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1132279196600905, -2.6646419755561257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7427774843253034, -7.0, -7.0, -7.0, -7.0, -3.4825877695267677, -7.0, -3.0528477834008605, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277035888172111, -7.0, -7.0, -7.0, -3.3650301536825658, -7.0, -7.0, -3.6867032848448513, -7.0, -2.7944880466591697, -7.0, -7.0, -7.0, -2.6283889300503116, -7.0, -7.0, -7.0, -2.8000293592441343, -7.0, -3.5582284218033258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2168693557411143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808323528187753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9956351945975501, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357048210389756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5787537844264343, -7.0, -7.0, -4.576266465391071, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7795002913500433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6972293427597176, -2.187520720836463, -7.0, -3.053462604925455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.04058915550344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313023110323238, -7.0, -7.0, -7.0, -2.2952004520032574, -7.0, -7.0, -7.0, -7.0, -2.788875115775417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.205339721431523, -7.0, -7.0, -7.0, -7.0, -4.735950025313642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.669502834104343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071882007306125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.718501688867274, -7.0, -7.0, -3.8824513497936164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2005769267548483, -7.0, -7.0, -7.0, -7.0, -3.41433256951902, -7.0, -7.0, -7.0, -7.0, -2.815577748324267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1958996524092336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9344984512435677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7283537820212285, -1.7265049308598654, -2.3064250275506875, -7.0, -2.4742162640762553, -1.9622114391106, -7.0, -7.0, -7.0, -7.0, -3.4102709642521845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0751818546186915, -7.0, -3.028571252692538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.173186268412274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0178677189635055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.423245873936808, -1.693140460675295, -3.00987563371216, -1.4913616938342726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703325776319297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0153597554092144, -7.0, -4.000065139286961, -3.7255849722706946, -7.0, -7.0, -7.0, -7.0, -2.428944290035574, -3.1772478362556233, -7.0, -7.0, -3.692935002531138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.39732190576478, -4.678318029299685, -7.0, -2.330413773349191, -2.4055658794489867, -7.0, -4.610234175334389, -7.0, -7.0, -7.0, -4.0528862352563815, -2.271841606536499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5620310189991775, -7.0, -4.0300124406298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.505149978319906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4899584794248346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.639486489268586, -7.0, -7.0, -7.0, -2.2810333672477277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0569048513364727, -7.0, -7.0, -7.0, -7.0, -7.0, -2.656098202012832, -4.235697947386347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.286456469746983, -7.0, -7.0, -3.4098486220211917, -7.0, -7.0, -7.0, -3.7184186418296554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1481911962420113, -2.465878338646378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8260748027008264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0572285467366145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9907826918031377, -7.0, -7.0, -3.836554266470963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9456006716552943, -7.0, -7.0, -7.0, -2.591064607026499, -2.7291647896927698, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3828372023616065, -7.0, -7.0, -7.0, -7.0, -7.0, -2.459392487759231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.315970345456918, -7.0, -7.0, -7.0, -2.5224442335063197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9232440186302764, -7.0, -2.45484486000851, -7.0, -3.741204141890008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45484486000851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0092080017868237, -7.0, -2.378397900948138, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8443218208944798, -7.0, -3.2838663484734685, -7.0, -7.0, -7.0, -2.7450747915820575, -7.0, -7.0, -3.2227164711475833, -7.0, -7.0, -7.0, -7.0, -4.037960073338272, -7.0, -7.0, -3.064832219738574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.681512586638962, -7.0, -3.4316853446860116, -7.0, -7.0, -3.7951149856303634, -7.0, -7.0, -1.5111403420090934, -7.0, -3.009450895798694, -7.0, -7.0, -7.0, -3.77557404291963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.649351087649641, -7.0, -1.8672710189654482, -7.0, -2.155336037465062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0576104477254815, -7.0, -7.0, -2.7693773260761385, -7.0, -2.2894774663446023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8432327780980096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7752462597402365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5943925503754266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4152516526787737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9182051383496885, -4.497827736083504, -7.0, -7.0, -7.0, -3.0159881053841304, -7.0, -7.0, -2.688419822002711, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8674674878590514, -2.0253058652647704, -7.0, -7.0, -2.6127838567197355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4265112613645754, -2.2528530309798933, -7.0, -7.0, -7.0, -3.7573960287930244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9915952167958098, -2.667452952889954, -2.9912260756924947, -7.0, -4.399182050312353, -3.0199466816788423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.705007959333336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.096736260462469, -5.132089909980955, -7.0, -2.767526899408382, -3.943160505065108, -3.0253058652647704, -7.0, -7.0, -7.0, -2.971275848738105, -3.43568513794163, -7.0, -7.0, -7.0, -7.0, -7.0, -2.423245873936808, -7.0, -2.45178643552429, -1.6279957254223623, -2.164352855784437, -3.3787611753163733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274053883354042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.484057706083955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0670708560453703, -4.27063226051252, -4.303973202540306, -2.8901015084080566, -7.0, -7.0, -7.0, -4.543298040491669, -3.7839035792727347, -7.0, -7.0, -3.8391322339496554, -7.0, -7.0, -3.7290027092721902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05332818707134, -4.979953345254416, -7.0, -7.0, -2.4363898479258244, -7.0, -4.611627731468287, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1573358620972805, -7.0, -2.6424645202421213, -3.906097893232545, -7.0, -7.0, -4.633458355590473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9907826918031377, -7.0, -7.0, -7.0, -7.0, -7.0, -4.327287397639064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.08131129515998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8709888137605755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658269033432031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.103233406386929, -7.0, -7.0, -4.275317114377382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.182699903336043, -7.0, -3.857935264719429, -7.0, -7.0, -7.0, -7.0, -2.24551266781415, -7.0, -7.0, -7.0, -2.24551266781415, -7.0, -3.2213272832956665, -7.0, -2.3222192947339195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0408264172755874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6627578316815743, -7.0, -4.058122215782914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6711728427150834, -3.401228167498113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7032913781186614, -7.0, -7.0, -7.0, -7.0, -7.0, -3.771440486639912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2121876044039577, -2.617000341120899, -7.0, -2.4305587695227575, -2.079181246047625, -7.0, -3.9495607630362115, -1.8260748027008264, -7.0, -7.0, -7.0, -2.130333768495006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5237186027131404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0253058652647704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9800033715837464, -1.9344984512435677, -7.0, -1.5759571887637573, -7.0, -7.0, -7.0, -1.2253092817258628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.113943352306837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.110589710299249, -7.0, -7.0, -7.0, -1.7634279935629373, -2.1889284837608534, -2.6283889300503116, -7.0, -7.0, -7.0, -1.8836614351536176, -7.0, -7.0, -7.0, -3.1119342763326814, -7.0, -7.0, -7.0, -4.606155559286679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.035829825252828, -7.0, -2.0278590441755795, -7.0, -4.495707340823701, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432942046454581, -7.0, -2.546542663478131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.693140460675295, -2.45178643552429, -7.0, -2.7155855518931964, -1.9518230353159118, -3.0563330349511615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.396216788290972, -4.732570658579406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.579932145636578, -7.0, -7.0, -7.0, -7.0, -4.047235915459681, -7.0, -7.0, -7.0, -7.0, -7.0, -3.602385590105105, -7.0, -7.0, -7.0, -7.0, -7.0, -2.569447066270134, -2.7041505168397992, -3.7649975992848805, -7.0, -7.0, -7.0, -7.0, -7.0, -2.469822015978163, -7.0, -7.0, -7.0, -7.0, -3.5068914154213755, -4.678400001728747, -7.0, -7.0, -7.0, -2.4313637641589874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6463056802847587, -7.0, -7.0, -7.0, -7.0, -7.0, -3.454692449239477, -7.0, -7.0, -3.758706478093696, -7.0, -7.0, -4.3312652916762255, -7.0, -7.0, -3.590618948206578, -7.0, -7.0, -2.3384564936046046, -7.0, -7.0, -7.0, -7.0, -7.0, -3.028571252692538, -7.0, -7.0, -3.9857407410500745, -7.0, -2.225309281725863, -7.0, -7.0, -7.0, -4.627181447147527, -2.936513742478893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6570558528571038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.673020907128896, -4.302716844820226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2884728005997825, -2.8432327780980096, -7.0, -3.4113671357427338, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9786141382013285, -7.0, -2.3324384599156054, -7.0, -7.0, -7.0, -2.6473829701146196, -2.9537596917332287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.975178970940877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.552331205374715, -7.0, -7.0, -7.0, -3.6869935662646784, -3.7091002815511667, -7.0, -7.0, -7.0, -7.0, -7.0, -3.164352855784437, -2.589018238151037, -7.0, -3.239549720840473, -3.0303431158216347, -7.0, -7.0, -2.989004615698537, -3.056142262059052, -7.0, -3.065206128054312, -2.3364834179016465, -3.0402066275747113, -7.0, -7.0, -3.0599418880619544, -2.330413773349191, -7.0, -3.0610753236297916, -7.0, -2.5318437171325017, -7.0, -3.029287128195125, -7.0, -3.0941215958405612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7672300981107183, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7126497016272113, -7.0, -3.1489109931093564, -7.0, -7.0, -7.0, -7.0, -4.060546755126169, -7.0, -7.0, -7.0, -7.0, -7.0, -2.246744709723841, -7.0, -7.0, -3.3938258059781585, -7.0, -3.0599418880619544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.141763230275788, -7.0, -2.9014583213961123, -7.0, -2.519827993775719, -7.0, -3.449863924718144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0179272562152137, -7.0, -7.0, -7.0, -7.0, -3.1772478362556233, -7.0, -7.0, -2.520155886944864, -7.0, -2.833536661357987, -7.0, -7.0, -7.0, -1.9637878273455553, -7.0, -7.0, -2.3302000983230338, -7.0, -3.0115704435972783, -2.8175653695597807, -3.0791812460476247, -3.40023176389234, -7.0, -3.245018870737753, -3.2830749747354715, -7.0, -7.0, -3.0398105541483504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.443966678374579, -2.7507654498940113, -3.5390760987927767, -7.0, -7.0, -3.8449118739121406, -3.0115704435972783, -7.0, -2.132899769944483, -7.0, -3.250420002308894, -7.0, -7.0, -7.0, -2.8718818587232695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.222456336679247, -3.13481437032046, -2.3273589343863303, -7.0, -2.1022465501163183, -3.0464951643347082, -7.0, -2.907684032886376, -7.0, -2.5136614370834756, -2.9813655090785445, -1.9697546756175726, -2.7007037171450192, -2.7209857441537393, -7.0, -2.6138418218760693, -7.0, -7.0, -2.9885589568786157, -7.0, -2.499283752832909, -7.0, -7.0, -2.4274861090957858, -7.0, -2.7101173651118162, -7.0, -7.0, -2.7573960287930244, -2.624625819226704, -3.0461047872460387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.989894563718773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4803663095328092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4614985267830187, -2.7269987279362624, -7.0, -7.0, -7.0, -3.0025979807199086, -7.0, -7.0, -7.0, -7.0, -2.7785130117389247, -7.0, -2.066118773208383, -7.0, -7.0, -2.9947569445876283, -7.0, -7.0, -7.0, -2.279134394034571, -4.020816887028907, -7.0, -7.0, -7.0, -7.0, -3.0236639181977933, -2.7271344237604884, -7.0, -2.5895772957033327, -7.0, -7.0, -7.0, -1.810232517995084, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7532765701844184, -1.8349855478280104, -4.20710901924425, -7.0, -7.0, -7.0, -2.991757539534348, -7.0, -2.7664128471123997, -2.500079576528447, -7.0, -7.0, -7.0, -7.0, -7.0, -2.570834706424214, -1.8712981525680923, -7.0, -3.074450718954591, -2.4631461367263494, -3.0111473607757975, -7.0, -3.0538464268522527, -7.0, -2.5369370227046737, -2.6023313405913373, -2.6334684555795866, -3.0484418035504044, -4.138260582719981, -7.0, -7.0, -3.510276844417355, -7.0, -7.0, -2.414639146737009, -7.0, -2.714329759745233, -3.130655349022031, -1.5523405703162654, -2.2380461031287955, -2.761927838420529, -7.0, -3.799636871557091, -2.298367831128048, -7.0, -7.0, -7.0, -3.295567099962479, -7.0, -7.0, -2.3138672203691537, -3.1020905255118367, -2.6875289612146345, -7.0, -7.0, -7.0, -7.0, -2.520701826026063, -7.0, -7.0, -3.98878184345364, -7.0, -4.155524611715298, -7.0, -2.3279262688653164, -3.192312866699809, -2.958085848521085, -7.0, -7.0, -3.0346284566253203, -2.625312450961674, -2.5399538416563967, -2.655138434811382, -7.0, -7.0, -7.0, -2.859438535455056, -3.00987563371216, -1.6279957254223623, -2.7155855518931964, -7.0, -2.417471693203293, -2.651554899236661, -7.0, -7.0, -4.626155521880912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.583776692634928, -7.0, -7.0, -3.9298785236567833, -7.0, -7.0, -4.659497859540902, -7.0, -7.0, -7.0, -5.104166051776575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.363931473001837, -7.0, -7.0, -2.8064061101420315, -7.0, -3.064041798987206, -2.64479015953634, -7.0, -7.0, -7.0, -4.552619552939762, -2.719458776925022, -7.0, -7.0, -3.686189234244024, -3.463743721247059, -7.0, -7.0, -7.0, -2.462397997898956, -7.0, -4.206987694756409, -7.0, -7.0, -3.1640366873790486, -3.9041066737190038, -4.873689624369535, -3.0425755124401905, -1.7811706911574223, -7.0, -3.716368582002373, -7.0, -7.0, -3.3787611753163733, -3.7846885995014214, -7.0, -3.724275869600789, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7024305364455254, -7.0, -2.7763379096201755, -3.5716453183444794, -3.7272507007309033, -7.0, -4.038927992647938, -7.0, -7.0, -3.200759326791928, -7.0, -7.0, -3.037027879755775, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8095597146352675, -7.0, -7.0, -4.023170121121397, -7.0, -3.0824263008607717, -7.0, -3.8328919447597904, -7.0, -3.9369658971078705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4742162640762553, -7.0, -7.0, -7.0, -7.0, -7.0, -3.870413660211742, -7.0, -7.0, -7.0, -2.6437815628948647, -7.0, -7.0, -7.0, -3.0334237554869494, -3.0523090996473234, -7.0, -7.0, -7.0, -3.0086001717619175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.570153612664517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.761670147858042, -3.1427022457376155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.117602691690084, -7.0, -7.0, -7.0, -3.074907822966796, -3.1953460583484197, -3.172310968521954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.696924008405422, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5148796552227934, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5719125414899997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1763806922432702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7331972651065697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.693639026161548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.334453751150931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357324882740209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.898176483497677, -3.280805928393667, -7.0, -7.0, -4.032307863723146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.955988237755026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4983105537896004, -2.3873898263387296, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.315970345456918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1921956258464497, -7.0, -4.058539897939781, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.510545010206612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0681858617461617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1017470739463664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2321487062561682, -7.0, -7.0, -7.0, -7.0, -7.0, -4.072948031792886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7024305364455254, -2.6283889300503116, -7.0, -2.1351326513767748, -2.403120521175818, -7.0, -4.125773949850886, -7.0, -7.0, -7.0, -7.0, -2.164352855784437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2225306767139887, -7.0, -7.0, -2.383815365980431, -7.0, -2.8344207036815328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2648178230095364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8715729355458786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9867717342662448, -2.0170333392987803, -7.0, -7.0, -7.0, -2.0128372247051725, -1.9807606420143298, -3.6825511910418096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8654001181793016, -7.0, -7.0, -7.0, -3.269512944217916, -7.0, -7.0, -2.12602311790052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6570558528571038, -7.0, -7.0, -7.0, -7.0, -7.0, -2.500373714353374, -2.3364597338485296, -7.0, -7.0, -2.184691430817599, -7.0, -7.0, -7.0, -7.0, -2.7148325124333326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0402066275747113, -1.9506082247842307, -2.4643901779147406, -7.0, -5.097826275720638, -2.975431808509263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0253058652647704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.131926474519878, -7.0, -3.029789470831856, -4.544030817513511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4913616938342726, -2.164352855784437, -1.9518230353159118, -2.417471693203293, -7.0, -3.058426024457005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.000694315866355, -3.7279477095447966, -7.0, -7.0, -7.0, -7.0, -2.628534886859584, -7.0, -7.0, -4.137005776429098, -7.0, -7.0, -7.0, -7.0, -2.1818435879447726, -7.0, -7.0, -7.0, -7.0, -3.875234946450165, -7.0, -7.0, -7.0, -3.2605483726369795, -7.0, -4.133379211923518, -7.0, -7.0, -7.0, -7.0, -7.0, -3.64738297011462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9049966910328284, -4.5623761458235395, -7.0, -4.030306180567886, -7.0, -7.0, -7.0, -7.0, -7.0, -2.359835482339888, -7.0, -7.0, -7.0, -3.6850696293911485, -7.0, -2.2508264548251344, -7.0, -7.0, -7.0, -7.0, -1.8337843746564788, -7.0, -7.0, -7.0, -3.8490404437875823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.640193136723481, -7.0, -7.0, -7.0, -1.811000161998575, -7.0, -7.0, -7.0, -7.0, -2.7996850909091004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -7.0, -7.0, -2.1089031276673134, -7.0, -7.0, -7.0, -7.0, -7.0, -2.380211241711606, -3.7383697008739407, -2.7234556720351857, -7.0, -7.0, -7.0, -7.0, -2.0644579892269186, -7.0, -7.0, -7.0, -2.6541765418779604, -7.0, -7.0, -2.2810333672477277, -2.9882244123901995, -2.850033257689769, -7.0, -2.9344984512435675, -7.0, -7.0, -7.0, -3.243368813730389, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.978864984347657, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9513375187959177, -2.1760912590556813, -7.0, -7.0, -7.0, -7.0, -4.148386687666821, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8068580295188172, -2.369215857410143, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5224442335063197, -7.0, -3.356790460351716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.975431808509263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3643633546157306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.348888723071438, -7.0, -2.6894095629680157, -7.0, -3.3473300153169503, -3.3479151865016914, -7.0, -2.8478467484424077, -2.757965097861435, -7.0, -7.0, -3.456214155357989, -7.0, -2.656098202012832, -2.59402403573142, -2.0382226383687185, -2.3233994435087757, -2.364528392331072, -3.0455185628844927, -2.514737442325631, -7.0, -2.139508685967779, -2.519265314601474, -3.3802112417116064, -3.3269613588176865, -2.8904210188009145, -7.0, -7.0, -2.5303826746043154, -3.1020905255118367, -2.1627634871966417, -2.9003671286564705, -7.0, -3.258876629372131, -7.0, -3.052584021782163, -2.8670744611517724, -2.916629385628418, -2.7883451651521183, -7.0, -3.358886204405869, -7.0, -7.0, -7.0, -1.5069692271226607, -7.0, -1.7967634995939228, -2.5780658838360915, -2.8874297406343095, -2.666250475475956, -7.0, -2.876025291494317, -3.0549958615291417, -2.6659560294539566, -3.422753941301348, -7.0, -7.0, -7.0, -7.0, -2.9279175919435616, -2.8662873390841948, -7.0, -7.0, -7.0, -7.0, -2.822494985278751, -7.0, -7.0, -3.1894669186239772, -2.8715729355458786, -2.4720246977002813, -7.0, -2.8769871844277386, -7.0, -7.0, -2.234750837958704, -2.866877814337499, -2.3010299956639813, -2.682145076373832, -1.73814608871206, -7.0, -2.0403615145545038, -7.0, -3.0670956650757906, -3.4097641042663462, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3581252852766488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9953101238623854, -7.0, -3.3492775274679554, -3.0726174765452368, -2.3961993470957363, -1.5208696693061823, -7.0, -3.0472748673841794, -2.2005427182177972, -3.3916407034923877, -2.5980498568165213, -3.3656751404559175, -7.0, -3.3571722577230334, -3.105510184769974, -7.0, -7.0, -2.6464037262230695, -3.862489166905897, -7.0, -7.0, -7.0, -3.430067373207018, -2.579211780231499, -2.696938553005363, -2.192985379093163, -7.0, -7.0, -2.8902346663063563, -2.2995799292687487, -7.0, -7.0, -3.3504806137955305, -7.0, -7.0, -7.0, -3.343802333161655, -7.0, -3.0536545582907473, -7.0, -3.671913012441587, -3.4413808849165113, -7.0, -7.0, -7.0, -3.04688519083771, -2.334453751150931, -7.0, -2.8767949762007006, -7.0, -3.3554515201265174, -3.355643050220869, -2.518043669683693, -7.0, -3.0439514182632768, -7.0, -7.0, -7.0, -7.0, -2.9857257811120115, -3.4153072922255676, -2.357068164449998, -2.6825060859390115, -2.2425414282983844, -3.0698530211136243, -3.3604040547299387, -2.1013088384840706, -3.0497992779189866, -3.346548558548474, -7.0, -2.8808135922807914, -3.3510228525841237, -2.6597260952377915, -3.3483048630481607, -1.5460488664017342, -7.0, -3.663748026358395, -7.0, -3.469232742506612, -1.3069645223546313, -3.0570952896126675, -2.9410142437055695, -2.1764317486708507, -2.189506827111484, -2.3615704544315608, -2.486430478854434, -2.39375064034808, -3.377306251068199, -2.354108439147401, -2.767897616018091, -3.3637999454791094, -3.5328817194073974, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4395432098217347, -7.0, -2.9751253198007745, -3.358315640082196, -2.8808135922807914, -3.343802333161655, -3.3492775274679554, -3.3896975482063856, -7.0, -7.0, -2.260468911566059, -7.0, -3.0831441431430524, -7.0, -7.0, -7.0, -7.0, -3.344195715871435, -3.362293937964231, -7.0, -3.054421524462536, -2.061354122279638, -2.753429841575423, -3.245594912768832, -4.456699977383792, -7.0, -2.8731267636145, -3.34966598409663, -7.0, -7.0, -7.0, -3.3875677794171883, -3.354108439147401, -2.8842287696326037, -7.0, -3.3428173146357327, -3.3475251599986895, -1.874261825555464, -7.0, -2.4367587960456936, -3.378216149749878, -2.8376255685293743, -7.0, -7.0, -7.0, -2.5720967679505193, -2.660106221723244, -2.5830097448113825, -7.0, -2.4245186658770486, -7.0, -2.5753803086941183, -3.3479151865016914, -1.8882419149722454, -7.0, -7.0, -7.0, -7.0, -2.335290703581678, -2.254637107064722, -2.7953585510233854, -3.2453178149811928, -7.0, -7.0, -2.7507012003958686, -2.307781195166992, -7.0, -2.873320601815399, -2.1722982700385423, -7.0, -3.3475251599986895, -7.0, -7.0, -2.8926510338773004, -2.087491016941548, -2.800717078282385, -3.3412366232386925, -2.90687353472207, -2.0959947450572747, -7.0, -3.0511525224473814, -2.7715874808812555, -1.8423751816787837, -1.537086602941622, -2.9763499790032735, -3.1020905255118367, -2.7690078709437738, -3.372646110468112, -7.0, -7.0, -2.9835135272947686, -7.0, -3.3481100684802376, -2.360868697296455, -2.45484486000851, -1.2549817153489515, -0.657335977420039, -2.804412059137714, -2.9132839017604186, -2.7734938922709707, -7.0, -3.502713823571336, -2.1152486297419344, -7.0, -7.0, -7.0, -3.506910725551518, -2.0844137729813017, -7.0, -2.399865929708076, -3.0970836960665213, -7.0, -3.3432115901797474, -7.0, -2.9041743682841634, -3.3664229572259727, -3.34966598409663, -2.451956914223988, -7.0, -3.4384236728783075, -3.652922887567942, -4.004862511111595, -7.0, -1.9871912749350684, -3.3928961789790506, -2.580069222725036, -3.3418300569205104, -2.810568529216413, -7.0, -1.9390652071178751, -2.6725596277632757, -2.440336511801791, -1.731387283168788, -3.343605508104172, -3.0400086360135417, -1.957722850186747, -7.0, -3.3787611753163733, -3.0563330349511615, -2.651554899236661, -3.058426024457005, -7.0, -3.3412366232386925, -2.7385823862327427, -2.8816949207450295, -3.917625525991019, -7.0, -3.114610984232173, -7.0, -3.3098430047160705, -7.0, -3.95433900860246, -2.7792938551187123, -7.0, -4.106428894793411, -4.296522595433707, -3.7207012587514545, -3.639864837955078, -3.0289126983633317, -7.0, -3.94558346265713, -3.2082003443615728, -4.075656433597934, -7.0, -7.0, -4.409378494659984, -3.974787932213558, -3.24230671556541, -4.1408849802658665, -7.0, -4.04336227802113, -4.179020086986456, -7.0, -3.2736377706522455, -3.9705793057148506, -4.126218019314304, -7.0, -7.0, -7.0, -3.8079857748471495, -7.0, -4.386588133907789, -3.5198607942350755, -4.0473138158153885, -3.0224283711854865, -3.5527124506286203, -2.444321555122064, -2.109288363833595, -2.954724790979063, -3.8217099972983766, -7.0, -2.975467158676708, -2.8647267723873364, -3.560026248912892, -3.234865136540417, -2.6785735555720014, -2.847572659142112, -7.0, -3.5653755027140734, -7.0, -3.3809344633307017, -7.0, -4.239149264858293, -7.0, -7.0, -2.5759512759327388, -3.3451018214939543, -4.576229018141046, -3.3694014136966244, -2.9905608299940196, -7.0, -3.251648357922843, -7.0, -4.048844640389108, -3.080337823247567, -7.0, -7.0, -3.81544491624435, -7.0, -3.205953506508051, -7.0, -2.963180469568511, -3.737987326333431, -2.4549785096424017, -3.369308645463461, -3.386498965550653, -2.5163287539376213, -3.4102371919840464, -7.0, -3.476802655265517, -7.0, -3.5930644316587173, -2.630500517741912, -7.0, -3.083860800866573, -7.0, -7.0, -7.0, -7.0, -2.6068629883857906, -2.7726883546821415, -1.9883080726752824, -7.0, -1.9608653102315436, -2.500503495624946, -3.1922886125681202, -2.2704100618306695, -7.0, -2.7579380162362646, -3.399673721481038, -3.0242217034609458, -2.4705574852172743, -7.0, -7.0, -2.3068016295330462, -3.262213705476417, -2.4163630914988237, -7.0, -7.0, -2.2501585103901642, -7.0, -3.4923412532549745, -2.307496037913213, -3.085290578230065, -7.0, -2.942950070077099, -7.0, -7.0, -4.196742527060023, -2.0541999775313315, -3.911872597102229, -7.0, -3.6364878963533656, -2.05915016485424, -7.0, -2.475489589123831, -7.0, -3.3651134316275773, -2.5839540689101295, -7.0, -7.0, -7.0, -3.353723937588949, -3.2447099622092566, -2.5389191721490083, -2.5921767573958667, -3.344195715871435, -3.471438407389299, -2.671543085262574, -2.3737605108568895, -7.0, -7.0, -2.3195791985677108, -2.894500672456359, -7.0, -2.8455114569725612, -7.0, -7.0, -3.5223790192285636, -2.8085485512404054, -2.3806973336208213, -3.4194600727860704, -7.0, -2.6204830741547482, -7.0, -7.0, -3.066325925362038, -7.0, -7.0, -3.3857849588433355, -2.559222427207474, -3.5776066773625357, -7.0, -2.65915528094063, -1.3442422978540296, -2.1637261681116198, -2.8323492162595376, -2.4784462423792015, -3.472317546316842, -3.1981987286196296, -2.9909305367345755, -3.020834628178929, -3.8207267628238344, -7.0, -3.258397804095509, -7.0, -7.0, -2.659345635746177, -7.0, -3.371990911464915, -3.586137025230793, -2.808249566586551, -2.478041509755478, -3.567222480175445, -3.4219328132785085, -3.890700397698875, -2.586212104232087, -7.0, -2.663323933628212, -7.0, -2.627195109792065, -2.3608554664937946, -7.0, -7.0, -7.0, -7.0, -2.5531545481696254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.95970902424643, -7.0, -2.7373516958037145, -2.8898617212581885, -7.0, -7.0, -7.0, -3.344588742578714, -7.0, -2.9079485216122722, -7.0, -3.1231980750319988, -7.0, -7.0, -7.0, -7.0, -1.8932486652855034, -7.0, -7.0, -3.4768730155120444, -7.0, -7.0, -3.241795431295199, -7.0, -7.0, -7.0, -7.0, -3.400537989391946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669298280832415, -7.0, -7.0, -2.591064607026499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3412366232386925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8195439355418688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067210388410234, -7.0, -7.0, -7.0, -2.0653929615619915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7385823862327427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779571240844613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.279210512601395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.61655952887783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.420536096425766, -7.0, -7.0, -7.0, -4.655464993695882, -3.6577249542051082, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7260358406419276, -7.0, -7.0, -3.925291459442737, -2.837737818927626, -7.0, -7.0, -7.0, -7.0, -4.617608347205152, -4.618382845341753, -3.6580057819539546, -7.0, -7.0, -7.0, -7.0, -4.142598010892065, -7.0, -7.0, -7.0, -2.897606730077943, -4.616821971013603, -3.7983536494378956, -7.0, -7.0, -3.919987588054925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9304395947667, -2.676429606544869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3923283959700776, -7.0, -7.0, -4.617052788978206, -7.0, -7.0, -4.621134720505861, -7.0, -7.0, -4.159198608378712, -7.0, -4.618236424563806, -7.0, -7.0, -7.0, -7.0, -4.315823457751156, -7.0, -4.319668091214678, -7.0, -7.0, -7.0, -4.3190852293386985, -3.922746212311292, -3.1455306163719823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.320696597770426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.62014646958466, -7.0, -2.9143679524576918, -4.14039280248941, -7.0, -7.0, -7.0, -7.0, -7.0, -4.347017601324948, -3.5537050669363817, -4.616968869365974, -7.0, -7.0, -3.05074358222705, -4.617199609291268, -4.0224489924661775, -4.325176880079742, -7.0, -7.0, -4.617692143352612, -4.618529216771113, -7.0, -7.0, -3.224343108953842, -4.616254897182604, -7.0, -7.0, -7.0, -7.0, -3.707712079213691, -4.0389577711393665, -7.0, -7.0, -7.0, -3.4447334600751223, -7.0, -7.0, -4.620614868774087, -3.8622606143926705, -7.0, -7.0, -7.0, -7.0, -4.423712694379625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.38836211745815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3304949423022174, -7.0, -3.269018738474736, -7.0, -4.624055089282426, -2.1830749482495064, -3.838901538594562, -3.666299530410274, -3.7170668969538765, -3.390332367662027, -3.8440938665398194, -4.324416222094499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.693920316367327, -7.0, -3.4899685184785194, -7.0, -4.622928621352165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6351820486562674, -4.317582839780199, -7.0, -7.0, -4.616580530085886, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6212490044269763, -7.0, -3.8693001841848957, -2.823206621070081, -7.0, -7.0, -7.0, -4.621280167550415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3764306067663643, -7.0, -4.616265405281708, -7.0, -7.0, -7.0, -4.316358309697511, -7.0, -4.61846649219908, -4.1484278325456465, -7.0, -4.162225759798416, -4.15325576317293, -7.0, -7.0, -7.0, -2.9344176447530743, -4.620666881958084, -3.1711694902913683, -7.0, -2.568532660960909, -7.0, -7.0, -7.0, -3.8107316409130148, -7.0, -7.0, -3.6749631476629787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.317018101048111, -7.0, -3.386171858184651, -7.0, -7.0, -7.0, -2.591524783818118, -7.0, -7.0, -3.6705241577820797, -7.0, -7.0, -7.0, -4.140109809610688, -2.9835237793982574, -3.4439718866479825, -4.6266174881854045, -7.0, -7.0, -4.141031478658857, -2.553400657766973, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9226009112525433, -7.0, -7.0, -4.619458568994316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.617314933298294, -3.6205957957123824, -3.940725613108034, -2.399707371851248, -7.0, -7.0, -3.4193916593043943, -4.324138352655017, -7.0, -7.0, -7.0, -4.322859923383261, -4.340969313301004, -7.0, -7.0, -7.0, -7.0, -4.6213736435061765, -7.0, -7.0, -7.0, -4.626155521880912, -7.0, -2.8816949207450295, -7.0, -7.0, -7.0, -1.7940019717695033, -3.076356403030099, -3.5063384844973986, -3.3133622304450867, -3.2201684584243107, -2.830352759588388, -2.968298747062242, -1.6733066117118942, -4.616612029993923, -2.2047218097709047, -1.6956711079089126, -2.8825950517530385, -2.7955053743286897, -1.6734325831718475, -2.6980860398874245, -2.8712876105538077, -1.8357841033689075, -3.1632210267155783, -1.4368256494961977, -3.788389352411851, -2.5267777372775697, -2.9144596969074215, -1.333050212822552, -2.3700601605169713, -3.400993002709646, -2.9608626434200027, -2.920858518855485, -4.629868118746123, -1.4660437125923544, -2.197942749161937, -3.3304247430131744, -3.174656089737317, -2.803751883915081, -2.776351710401327, -3.1861977163087007, -3.3764774129184203, -2.7111073515371458, -2.3036039178951855, -3.3788562684105763, -7.0, -3.1778915151088025, -2.093637827346512, -2.7690686889664704, -7.0, -4.020294973084726, -7.0, -3.267949726576494, -4.674015601630943, -4.631068165146266, -3.2457346934565856, -3.148214944835215, -3.9655027326071046, -7.0, -3.968277427274059, -7.0, -7.0, -4.645805301402646, -3.5755573000600256, -4.6371894221487615, -7.0, -2.4395729484199693, -2.234503776841132, -2.6471647853430955, -7.0, -4.633993331603568, -4.6181631956587115, -2.7362424132931857, -4.661036127893079, -3.8789169817717633, -3.2228512943685397, -4.419559253195721, -7.0, -3.1149158459000446, -3.5053280703957066, -3.346729576432997, -3.4536648218070845, -4.181567304029932, -4.047235915459681, -2.6183234022565913, -4.340572995903572, -7.0, -2.914017096150432, -2.6506555784991606, -7.0, -2.8706990460717736, -7.0, -3.730741911850021, -3.2923812935028804, -3.312701917838379, -4.317624643080059, -7.0, -7.0, -4.319595276245265, -2.9671454827935495, -2.516724197586558, -7.0, -3.626247954462277, -3.920801381825654, -2.2761896045517336, -2.513904639138496, -3.346682328514696, -7.0, -7.0, -2.358194936957607, -4.14236860613267, -2.3194023977668876, -3.8460792634718106, -4.020578789815774, -3.2029119304669567, -2.8229615672766832, -3.6311798650966334, -2.59852191098963, -3.3466720399800094, -3.7766077995980156, -2.972094463035642, -3.7787712283360455, -3.584115257228258, -7.0, -4.6187591293929335, -7.0, -2.8597840073240657, -4.318699694558155, -4.315928382610187, -1.7319155356220892, -1.69422218095535, -2.2036635512088645, -7.0, -3.4617385679564108, -4.319033150039682, -3.929480233548934, -4.618435126515527, -7.0, -4.617524534886292, -3.436639631692661, -4.61865463874404, -4.320094333903096, -2.874848889727198, -7.0, -2.73846910433268, -3.923295840655504, -3.4577002722181076, -7.0, -3.9251573271758984, -7.0, -3.4792255786863295, -2.154205326806114, -4.619427274881493, -4.617503579279065, -4.6179329672532745, -3.2534058585380095, -2.464794874398846, -3.3440094211096474, -3.8439280063704695, -2.8743297038713655, -7.0, -1.8459163788095763, -4.319699293893277, -3.3385660494937994, -4.6195732947860035, -4.621134720505861, -3.217290881538176, -7.0, -2.6635218951063355, -3.5432918252304986, -4.618706887211025, -4.01781561717208, -3.3311741373868458, -7.0, -7.0, -2.8336589271377535, -3.9235548580675492, -4.01964584828431, -3.0322625896790933, -3.5448635219352487, -3.2615106830542264, -3.778791879032985, -2.6971355608850085, -2.8598718466898005, -3.5907405368822554, -3.32962158001926, -4.616570029608803, -7.0, -2.3982038036681437, -3.1768393978830747, -7.0, -3.4869564550939383, -1.7515604805317466, -3.513780854205835, -2.507794956556955, -2.4113584238044, -2.673783970267478, -7.0, -3.509016311883662, -7.0, -7.0, -4.6199798058330535, -7.0, -3.211792701460719, -7.0, -7.0, -7.0, -2.356945754549756, -7.0, -3.666205875272384, -4.617566443067537, -4.015841571684366, -3.7756312495430016, -4.618184119463009, -4.318178157265793, -2.986363614185373, -3.1732365194371384, -7.0, -4.617671195831475, -3.66904814036834, -7.0, -7.0, -7.0, -4.619114209667246, -4.317655992914544, -7.0, -3.7062814674908884, -3.1025023091854522, -3.602129078136506, -4.316871567348347, -7.0, -2.8803020025606587, -7.0, -4.616391482643317, -2.4335080004270413, -7.0, -7.0, -3.629470763032389, -3.074747273672198, -4.624230513855454, -7.0, -7.0, -7.0, -7.0, -3.016236272275966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.68940369736512, -7.0, -7.0, -7.0, -4.775479375409764, -3.9991015293309222, -7.0, -7.0, -7.0, -7.0, -7.0, -3.246252312299322, -7.0, -7.0, -4.14997308296338, -3.0832902249210807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.547533311024088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.992812429876849, -7.0, -4.042862284965543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.454875335744946, -3.8795474371414054, -7.0, -7.0, -4.754256573662172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590618948206578, -7.0, -7.0, -4.746657547475629, -7.0, -7.0, -7.0, -7.0, -7.0, -4.012855294834725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.971955834543654, -3.8333727117977894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.748955119752549, -7.0, -3.4460255809433114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.769879281205094, -3.9299933471863993, -7.0, -7.0, -7.0, -2.858754796828139, -7.0, -4.752248254177775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.305633461726069, -7.0, -7.0, -7.0, -7.0, -7.0, -4.780526126607946, -4.463564532213337, -7.0, -7.0, -7.0, -3.1669161974037845, -7.0, -7.0, -4.7493033508713305, -4.287032452247534, -7.0, -7.0, -7.0, -7.0, -4.1300055108623965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.179807033301188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.912540882790638, -7.0, -3.518631675212612, -7.0, -7.0, -3.013926173025573, -4.746735366871247, -4.050341081834084, -4.74907122781966, -4.74967448988999, -4.750593239836581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.503913193999621, -7.0, -4.062032658656056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.158211669214101, -4.446785619301188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8151274306134306, -2.819623688454021, -7.0, -7.0, -7.0, -4.448752683389127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.879009148031945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7530082150208885, -7.0, -4.763338130235672, -7.0, -7.0, -7.0, -7.0, -3.528886466403724, -7.0, -4.0030582213054675, -7.0, -2.5286807375109595, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752232887721093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464094419087544, -7.0, -7.0, -7.0, -2.894896864485349, -7.0, -7.0, -3.786950073527685, -7.0, -7.0, -7.0, -7.0, -4.277548095564673, -7.0, -7.0, -7.0, -7.0, -4.747505027465768, -2.330137607834728, -7.0, -7.0, -7.0, -7.0, -4.7539122931976445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.508361355145994, -3.918442256565788, -2.1770840312500357, -7.0, -7.0, -3.84318963888085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7526782943689865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.917625525991019, -7.0, -7.0, -1.7940019717695033, -7.0, -2.761158171936227, -4.050209563013909, -2.94162242901577, -3.982301391331439, -3.0570414004594033, -2.8255451158954044, -2.080104209578498, -4.746330553658598, -2.7990055901015256, -1.8039393715334233, -2.4705769939872124, -2.645513917019889, -2.3016148599756447, -2.1262302051431767, -2.533213285085639, -2.0153615186155944, -2.860371284566635, -1.9136473000407377, -3.169120569796846, -2.146409072851802, -2.97211990499589, -1.732888876318965, -2.8449170462704814, -2.011539376573685, -2.4162019299772806, -2.701083998656677, -3.340848170016427, -1.9458360528338758, -2.4719460063595164, -2.639123277221592, -2.556428521510324, -2.399630307847778, -2.990479804575254, -2.6589289015478585, -2.670572483616967, -2.6668821312373145, -2.095610685225035, -3.96559810533305, -7.0, -3.1677391846909155, -3.206251564282058, -3.881947847027854, -4.44897670381325, -3.6484901171778015, -7.0, -3.4510280603341705, -4.4885789165252525, -7.0, -3.3651457334284163, -3.054882937183978, -4.180283615315395, -4.7550741017584714, -3.3527683310263616, -7.0, -7.0, -7.0, -3.281843801655201, -7.0, -7.0, -3.3610330758599813, -2.281859415013462, -2.5473879297857804, -7.0, -7.0, -7.0, -2.949764859826652, -4.001488523881566, -2.939704886918824, -3.5705721253583307, -3.7464395789558753, -7.0, -4.176539798314922, -3.354459496605008, -3.5928543569294185, -4.279180066775598, -4.300805552195441, -3.992627145785504, -3.13623546780067, -4.463975064379387, -7.0, -3.1884748650838253, -2.53868278690593, -7.0, -2.6297950538396533, -4.452943522899956, -4.157169561317188, -3.695430597186528, -3.1842555313968237, -7.0, -7.0, -7.0, -4.749326556354335, -2.6194886947365785, -3.0900449904924545, -7.0, -4.151530727012073, -4.271586064027271, -4.063776061059595, -2.8948496596085533, -4.452123918449042, -7.0, -7.0, -2.9823277781189925, -7.0, -2.3759652965954845, -4.752071507091245, -4.449809971741877, -3.9816676269911824, -2.999864706876925, -3.979092900638326, -4.163258304891918, -4.151055585657497, -4.449162012678147, -3.813276972408157, -3.973589623427257, -4.150994239213408, -7.0, -7.0, -7.0, -3.1920026148585094, -7.0, -7.0, -2.506741604257435, -2.0066645422071834, -2.553126141145082, -7.0, -4.160273399926485, -7.0, -4.0561727913537755, -7.0, -7.0, -7.0, -4.162489727736505, -7.0, -7.0, -3.7329344633546433, -7.0, -3.1905974381230235, -4.449547819044489, -4.4583053921180165, -7.0, -4.450933891015594, -7.0, -4.7530312233905745, -2.383349427409276, -4.271268362216237, -7.0, -7.0, -3.429979715014304, -2.877160567640068, -4.274026925166107, -7.0, -3.234972598405242, -7.0, -2.1398740830950502, -4.749403899010527, -4.064749916689788, -4.748529124399832, -7.0, -2.9787594900540326, -7.0, -3.3054875130416663, -4.449809971741877, -7.0, -4.748800260694086, -3.6788899955025243, -7.0, -7.0, -3.9964897817596627, -7.0, -7.0, -3.938705525724461, -7.0, -4.163332851646521, -7.0, -2.9142430678512703, -3.824863139350777, -4.75804849865779, -3.9118877968391073, -4.74629939854591, -7.0, -3.0564826596487484, -3.462330602146786, -4.747295255267241, -4.2816544264128105, -2.214341623289299, -4.055752825315675, -3.053664658749656, -2.6699656178768523, -3.0707693669341825, -4.747054280687472, -4.274080839868691, -7.0, -7.0, -7.0, -7.0, -3.487540245067744, -7.0, -7.0, -7.0, -2.9446388201696494, -7.0, -4.7493033508713305, -7.0, -7.0, -4.272329043274018, -7.0, -4.447227823061555, -3.6178163114809454, -3.8577469894826386, -7.0, -7.0, -4.751417686492172, -7.0, -7.0, -7.0, -7.0, -7.0, -4.44723557700476, -3.603144372620182, -3.1251632285648294, -4.766598721064264, -4.446257488316375, -7.0, -4.284618699431484, -7.0, -7.0, -2.6802009545811027, -7.0, -7.0, -4.153936754460935, -3.1126869080645676, -4.751994638090036, -7.0, -7.0, -7.0, -7.0, -3.1276495344679027, -7.0, -4.748250064643889, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8795805260758676, -7.0, -7.0, -7.0, -7.0, -3.8758519242862692, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3039101528616395, -7.0, -7.0, -7.0, -3.178805273804607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.434856209740375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9022640425804287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.682941905826968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.541254649786259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4790500017126824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7741080255082182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.010850957373923, -7.0, -7.0, -7.0, -3.907554668639903, -7.0, -4.282961803534335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0390967104414504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318418142209945, -7.0, -4.277655047714709, -7.0, -3.5425053212702986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9525200157595273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.024040746405299, -7.0, -3.9807530758424656, -3.6091339945083023, -7.0, -7.0, -4.2735336801512975, -4.2753343934257675, -7.0, -3.439558242774259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.308436347167652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.005244879445366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.331912948773648, -3.5585476707260986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4456042032735974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.29569901748951, -7.0, -7.0, -7.0, -3.458853593929194, -7.0, -4.3634803555596005, -7.0, -2.2713556554038865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3198968588148885, -7.0, -7.0, -7.0, -3.077560700952694, -7.0, -7.0, -4.378488748031808, -7.0, -7.0, -7.0, -7.0, -3.9890714250951618, -7.0, -7.0, -7.0, -7.0, -7.0, -2.507919802775988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5888317255942073, -4.315676520348013, -2.699167503092759, -7.0, -7.0, -4.425550522537713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.076356403030099, -2.761158171936227, -7.0, -7.0, -2.337717301886588, -4.3069180203772985, -2.7010796971545665, -1.2379149026031688, -2.1649498074924685, -7.0, -3.0297444125258646, -1.9450404100170748, -2.1655466215325143, -2.443595160256843, -3.9339931638312424, -2.6187765029283483, -1.541695519187481, -3.7997884000675555, -3.4068806700491248, -3.1890542193679265, -2.6102941051163335, -2.365964057019836, -3.085766126574217, -1.7787469321412472, -2.7434952473550966, -2.459513646772962, -1.9095103513348428, -2.115810141409786, -7.0, -2.686724987438468, -2.9080733475736693, -2.1412346783573293, -2.574080546575145, -2.74925142902884, -3.345943741035112, -2.494068357258403, -2.5860095587848955, -3.4315353034055756, -1.4530461540732107, -4.135736743509474, -4.286725855353823, -3.0109356647043852, -4.282384171231339, -7.0, -7.0, -3.106811486925355, -7.0, -3.5489623660813248, -7.0, -7.0, -4.476280806025541, -3.300568312464303, -7.0, -7.0, -3.257475499803275, -7.0, -7.0, -4.3282980381306, -3.525239223729745, -7.0, -7.0, -7.0, -3.054904018624125, -2.585881903537832, -7.0, -7.0, -7.0, -3.926224815400152, -7.0, -4.069873563387445, -4.346607216606133, -3.693155132538336, -7.0, -4.356542111948761, -3.5486043622015986, -4.09221753532326, -7.0, -7.0, -7.0, -3.813487581861325, -7.0, -7.0, -3.8125791554090465, -4.0396995888283325, -7.0, -2.538633705624185, -7.0, -7.0, -3.7440581658788354, -3.977159418076437, -7.0, -7.0, -7.0, -7.0, -2.712272243588091, -3.0145827585978444, -7.0, -7.0, -7.0, -7.0, -4.446770095200388, -7.0, -7.0, -7.0, -4.384407182308992, -7.0, -3.2384905702096987, -3.9813655090785445, -7.0, -7.0, -3.0528953899583056, -7.0, -4.019448637493637, -7.0, -4.276921132065774, -7.0, -7.0, -7.0, -7.0, -4.27009628142033, -7.0, -4.397522885718343, -7.0, -7.0, -3.6365061321444245, -2.6631240515498513, -2.432432786244021, -4.265643141942135, -4.312156191475623, -7.0, -4.29161301693988, -7.0, -7.0, -7.0, -4.017304688562155, -7.0, -7.0, -7.0, -7.0, -3.5875613115088494, -7.0, -4.303563215917248, -7.0, -7.0, -7.0, -4.285264680481154, -2.3020149037518745, -7.0, -7.0, -7.0, -2.9780812292019267, -3.545960629240598, -7.0, -7.0, -4.057818194432099, -4.273441134312813, -2.0256407807690597, -7.0, -4.015024263324626, -7.0, -3.6731822392279376, -2.8324597815922177, -7.0, -3.668907502301862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.045009860905824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.769728017574238, -3.6589457942431114, -7.0, -7.0, -7.0, -7.0, -3.118229285533303, -4.315718507536319, -7.0, -3.3986126439612017, -3.4742162640762553, -4.290390809440229, -3.833497722133357, -3.492725476491596, -4.379559310918327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8466463285771173, -7.0, -7.0, -7.0, -3.555551218886293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.317101812398005, -4.00702192557868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.057571020279038, -3.552911450216509, -4.32395300754292, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4909762616172006, -7.0, -7.0, -7.0, -3.478484039834738, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5596872289809776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.661377226639747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9151887051731564, -7.0, -7.0, -7.0, -4.277196495795956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2488720042050603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070370390367003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5509617522981762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1383026981662816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9916690073799486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.253289532254802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.468716471515472, -7.0, -2.4456042032735974, -7.0, -7.0, -2.6976651626476746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071003943554348, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9976921179417264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.709439574132411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.163608563431052, -7.0, -7.0, -7.0, -3.463252908572469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.185825359612962, -7.0, -7.0, -7.0, -7.0, -7.0, -4.621785390545154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.111182472655152, -7.0, -7.0, -4.246880021200512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.114610984232173, -7.0, -7.0, -3.5063384844973986, -4.050209563013909, -7.0, -7.0, -7.0, -7.0, -7.0, -4.401882822321282, -3.5588764972551363, -1.1674267426041278, -3.740086232305504, -7.0, -4.658421634986483, -4.80415988528302, -3.4431934252142176, -7.0, -7.0, -3.5401176191224257, -4.005223424858136, -4.309928110434921, -7.0, -5.102303329160087, -7.0, -3.8834342936830093, -7.0, -7.0, -4.627611614110506, -3.4119715286436114, -7.0, -4.007244079839634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.971693238949861, -7.0, -7.0, -4.308564413561239, -3.752893154884594, -7.0, -7.0, -7.0, -3.943815913368455, -7.0, -7.0, -3.6008640363098396, -7.0, -7.0, -7.0, -3.746011107751926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.281919242436253, -7.0, -7.0, -7.0, -7.0, -4.312843525382345, -7.0, -4.642231976894675, -7.0, -7.0, -7.0, -7.0, -4.014394516273535, -3.980639567443737, -7.0, -3.6684791029325856, -7.0, -7.0, -7.0, -7.0, -4.005330687197071, -4.265065583413968, -7.0, -4.635614417623872, -7.0, -3.3296012483565187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4785304231255387, -3.2215446370271956, -7.0, -7.0, -7.0, -7.0, -3.3008562431183934, -2.646730386247423, -7.0, -7.0, -3.7967130632808965, -7.0, -3.215037322655668, -7.0, -7.0, -7.0, -3.7626035495668035, -3.273695587930092, -3.469380135849925, -7.0, -7.0, -7.0, -7.0, -2.82052984852352, -7.0, -7.0, -7.0, -3.2429760021854523, -7.0, -7.0, -3.5691836446191725, -3.195632829081318, -3.6291742729079046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.637489729512511, -7.0, -7.0, -7.0, -7.0, -3.220238879934404, -7.0, -7.0, -3.387122759927585, -7.0, -3.9680516729654616, -7.0, -3.1356096360286796, -7.0, -7.0, -7.0, -7.0, -3.72956972630197, -7.0, -7.0, -7.0, -3.300812794118117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1436392352745433, -7.0, -3.295347148333618, -7.0, -7.0, -7.0, -3.9740970037941312, -7.0, -7.0, -3.316808752053022, -3.086799347067046, -7.0, -3.4910346824303082, -4.287084776433677, -3.777644277696485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.555789489124939, -7.0, -7.0, -7.0, -7.0, -2.931966114728173, -7.0, -7.0, -3.444513206334043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6871721045948, -7.0, -7.0, -7.0, -7.0, -3.392169149489736, -7.0, -7.0, -4.2837081890474655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.377081515976082, -7.0, -7.0, -7.0, -3.639699884317628, -3.4883109423296537, -7.0, -7.0, -7.0, -4.436226275270583, -7.0, -2.9923009843277657, -7.0, -7.0, -4.4380516115621225, -2.811203458094404, -7.0, -7.0, -7.0, -7.0, -7.0, -4.428863408299256, -4.320077015119296, -7.0, -4.426023015689876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3401375306780454, -7.0, -7.0, -4.12881914219451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.243286146083446, -7.0, -7.0, -4.14146545161862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.968167620369607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.934720591598597, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2058989954366655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.155730671278588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278570701610516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9967888550237687, -3.4148731146014684, -7.0, -7.0, -7.0, -3.629624171479566, -7.0, -3.7393032991563406, -7.0, -7.0, -7.0, -7.0, -4.4290898392125735, -7.0, -7.0, -4.074999186064199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.764400322956388, -4.464534256300944, -4.434696618924666, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6614370567346723, -7.0, -7.0, -7.0, -7.0, -3.504584122237375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.429106008332696, -7.0, -7.0, -7.0, -3.311531088810858, -7.0, -7.0, -7.0, -7.0, -7.0, -4.427112676054709, -7.0, -4.1485563851735865, -7.0, -3.3807537708039, -7.0, -7.0, -3.4178452084766517, -7.0, -7.0, -7.0, -4.132019415952632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.063596033291059, -7.0, -4.456366033129043, -7.0, -4.435876204588752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.375343489545472, -4.429251503330693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4359557908892375, -3.569900362684715, -2.980237184494648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9777236052888476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.447344117675954, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7179338840140583, -7.0, -2.7568995976299173, -7.0, -7.0, -7.0, -7.0, -3.959566046637928, -7.0, -3.9685607721330167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163489358192699, -7.0, -7.0, -7.0, -3.1622981016733482, -7.0, -7.0, -3.905188522590824, -7.0, -7.0, -7.0, -4.126082680390729, -4.443435106114942, -7.0, -7.0, -7.0, -7.0, -3.951386094880293, -2.750003397874441, -7.0, -7.0, -7.0, -7.0, -3.7427251313046983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5949079461082594, -3.984347257585864, -2.571949559344863, -7.0, -4.441129320514776, -4.187055155865771, -4.439348486069748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3133622304450867, -2.94162242901577, -2.337717301886588, -7.0, -7.0, -3.97810439837059, -2.905616011041668, -1.7084480887903148, -2.836767587938306, -7.0, -3.6163704722912695, -3.0981617006115987, -1.217931901429386, -1.1158241306554086, -3.1903316981702914, -3.2418815732989663, -1.674344029296868, -3.2846867533932405, -1.7401646189215598, -3.3636832867606903, -2.729696191601458, -2.215048167079102, -2.7153990227625053, -2.8685099487418886, -2.9287257725066422, -3.0410831267035316, -1.3612329996313997, -1.7981696015670017, -3.4920149788770503, -2.936536333156518, -2.7582960793867843, -0.6587639854612518, -2.2536275242685075, -2.7413617328739823, -3.1156105116742996, -2.597206379506389, -2.7359574241167413, -3.3263002323564437, -2.920713371359016, -3.8523335775602088, -7.0, -3.096153170585375, -3.554004321011903, -4.503627281356413, -4.132739838260885, -3.2750232653226883, -4.137021615898141, -3.2962333698623643, -4.51216389140557, -4.448335233740176, -3.502609175942623, -2.9316958462012455, -4.498351913199365, -7.0, -3.9002715187187222, -7.0, -7.0, -3.868438702162959, -4.621061978712945, -7.0, -7.0, -4.088579020388005, -2.854456080613144, -2.8141034167340453, -7.0, -7.0, -7.0, -3.3092945756319394, -4.493193071453686, -3.3752367289481646, -3.8817126791523484, -4.27720796549665, -7.0, -3.235374115894248, -3.386629739543263, -3.7534202636980663, -7.0, -4.012612289062748, -7.0, -4.1335708406140395, -7.0, -7.0, -3.5688077482898857, -3.4771901848812075, -4.439079939868871, -3.5626309001629304, -7.0, -3.607470341973842, -4.0064089883235185, -4.263884503895953, -7.0, -7.0, -7.0, -7.0, -2.2579884368367824, -2.2467022836522106, -7.0, -4.1401936785786315, -7.0, -3.982693258667742, -3.5588645046423837, -3.4858002672700152, -7.0, -7.0, -4.210679612769305, -7.0, -3.20444810450135, -4.438035772093079, -4.435525851498655, -4.1529454056319, -3.7270801505184905, -3.749689947134912, -3.5616975326539935, -7.0, -3.5308717578869526, -7.0, -3.7384158516303687, -3.96296881959362, -7.0, -7.0, -7.0, -3.919418069406337, -7.0, -7.0, -3.2699019227319654, -3.0260749454085736, -1.8176997483689172, -4.426364845287927, -4.45901533230183, -7.0, -7.0, -7.0, -7.0, -7.0, -4.463459971124135, -7.0, -4.433129517580485, -7.0, -7.0, -3.6527434983124007, -7.0, -3.411206332727312, -7.0, -4.437845653390831, -7.0, -4.440011242111454, -2.972175602200704, -4.430478187932044, -7.0, -7.0, -3.47928731647617, -3.671609166801616, -4.135132651376775, -4.434728541779758, -3.378565603800744, -7.0, -2.316910755195275, -7.0, -4.160768561861128, -7.0, -3.0521646958282362, -2.8084735565101373, -7.0, -3.8004971266535237, -4.435525851498655, -7.0, -7.0, -3.37112945995738, -7.0, -7.0, -3.8813275841005512, -7.0, -7.0, -4.200179941968094, -7.0, -7.0, -7.0, -4.025264892154508, -3.4505709997374705, -4.149203711868772, -4.448288825667122, -7.0, -7.0, -2.738519532242188, -3.984377272063356, -7.0, -2.4899893680793217, -3.028034892512139, -3.966423345943693, -3.7722483399718536, -2.1287802856493667, -3.6628657175303223, -7.0, -4.436305797450854, -7.0, -7.0, -7.0, -7.0, -3.2364631637113215, -7.0, -7.0, -7.0, -3.377905927931074, -7.0, -7.0, -4.427599698924868, -7.0, -7.0, -7.0, -7.0, -3.9853665879160696, -4.155062619223921, -7.0, -7.0, -3.9595024859218646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5381965783494542, -3.870579460552685, -3.4671935894118153, -7.0, -7.0, -4.156730826499419, -7.0, -7.0, -2.127327923920255, -7.0, -7.0, -4.44617976779828, -3.865222456290179, -7.0, -7.0, -7.0, -7.0, -7.0, -3.875480878609511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3737760513703203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9869507878585164, -7.0, -7.0, -7.0, -3.6570558528571038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4649364291217326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3553237864544485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.261999948651827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8206939499733856, -2.826722520168992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.148147455851064, -7.0, -3.128722284338427, -7.0, -7.0, -7.0, -3.307496037913213, -7.0, -7.0, -7.0, -2.8606174625142047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.108092810484286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.532754378992498, -7.0, -7.0, -7.0, -7.0, -2.9866821797795056, -7.0, -3.063896038125994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.403635189790548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.22695122879284, -2.723044991643445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9505595616118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8978609601608767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.445759836488631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8195439355418688, -7.0, -4.043401578910881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.147985320683805, -7.0, -7.0, -3.86993541064686, -7.0, -7.0, -3.350441856535061, -7.0, -2.522299299588104, -7.0, -7.0, -7.0, -7.0, -3.3176455432211585, -3.4602552839485896, -7.0, -7.0, -7.0, -7.0, -3.463743721247059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3566089889521, -7.0, -7.0, -4.565741592358979, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3098430047160705, -7.0, -7.0, -3.2201684584243107, -3.982301391331439, -4.3069180203772985, -7.0, -3.97810439837059, -7.0, -3.5254983106766704, -7.0, -2.749681672112621, -7.0, -3.0538813029399567, -4.1170612806313445, -3.894048239048872, -3.814001070318085, -2.7134575995695465, -7.0, -3.1384024289877326, -2.541973161871005, -4.064420548433594, -4.325371969396705, -7.0, -3.3007381059912815, -3.659440781870318, -3.592662429045383, -3.830139387425343, -7.0, -4.1653234794461484, -7.0, -7.0, -3.1866987985351756, -2.8483786204227477, -4.600079442261521, -3.277127671229863, -3.6216435721945732, -3.898944466866509, -3.977220446635385, -3.5101426994025733, -3.426601617025341, -3.6398515681407924, -3.433009353093142, -7.0, -7.0, -2.620976431565856, -3.8536373819585945, -7.0, -7.0, -7.0, -4.563836918664545, -7.0, -7.0, -3.3502157035544387, -3.588187641710234, -7.0, -7.0, -3.8481891169913984, -7.0, -7.0, -7.0, -3.6292566515815383, -7.0, -7.0, -3.686618396693641, -3.5102008339963153, -3.9732231338246757, -7.0, -7.0, -7.0, -3.1372622025975456, -7.0, -4.1053690465448724, -2.9113859244283526, -7.0, -7.0, -2.3438304437465964, -4.072433725968388, -3.836830286488879, -7.0, -7.0, -7.0, -2.4785937181144218, -7.0, -7.0, -3.6686136699931597, -2.66755544932639, -7.0, -3.8050054042112746, -3.4652340949880145, -7.0, -2.7545776560447304, -7.0, -7.0, -7.0, -7.0, -3.062769949815128, -3.4318460456987254, -2.6107741960383892, -7.0, -7.0, -2.8717674683517753, -2.4318995994914934, -3.0178677189635055, -2.7488080049586023, -7.0, -7.0, -3.411395206355283, -7.0, -2.552984591554074, -7.0, -2.494328555359404, -2.867820908045573, -1.782929561800477, -3.2245330626060857, -2.564567439411901, -3.4488608456074408, -7.0, -2.192474526304651, -2.5738657906893656, -3.447623097760286, -7.0, -7.0, -7.0, -3.024742145874638, -2.7444885672205115, -7.0, -2.115943176939055, -2.006763212270037, -3.2629254693318317, -7.0, -3.30362797638389, -7.0, -3.48826861549546, -7.0, -7.0, -7.0, -3.6356847625472226, -7.0, -7.0, -2.973897197435795, -7.0, -2.7473470602930266, -7.0, -2.9564085711958326, -7.0, -7.0, -3.3119656603683665, -7.0, -3.4106835243506506, -2.6410773133253747, -7.0, -7.0, -7.0, -3.307496037913213, -3.40705081480425, -7.0, -2.522032189374934, -7.0, -2.5470930503307074, -3.3660492098002353, -2.924795995797912, -2.866484253384509, -3.3729120029701067, -4.004321373782642, -7.0, -3.3578713490133674, -2.922033079238554, -7.0, -7.0, -3.0635835285910997, -7.0, -7.0, -3.4541585899443437, -3.398287305357401, -3.383994789441733, -3.064083435963596, -3.1240148788874076, -2.6910814921229687, -7.0, -2.847202363980924, -2.62228311762588, -2.7586596156078977, -3.5216610151120733, -7.0, -7.0, -2.7265985355333875, -3.622731965164719, -2.708633321015398, -3.249198357391113, -2.286405251825869, -2.877515318847026, -2.188051718153, -3.619886029358387, -2.5090855878980047, -7.0, -3.106870544478654, -7.0, -7.0, -7.0, -7.0, -3.183933830133716, -7.0, -7.0, -7.0, -2.969169146329657, -7.0, -3.0622058088197126, -7.0, -7.0, -3.3679147387937527, -7.0, -3.3378584290410944, -2.450557009418329, -2.6790870506964652, -7.0, -7.0, -2.9344984512435675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.501196242027089, -3.217045041213536, -3.360688062030678, -3.3121773564397787, -7.0, -2.7496259063954898, -7.0, -7.0, -3.6167485032003, -7.0, -7.0, -3.2022157758011316, -3.66133934000604, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7231271587956916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0772727117618524, -7.0, -7.0, -7.0, -3.9408649759667216, -2.9109637921655658, -7.0, -7.0, -7.0, -7.0, -3.6847556221086237, -2.4170216650043423, -7.0, -7.0, -3.7481104674949837, -3.488610368239004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.310395894010226, -7.0, -7.0, -7.0, -7.0, -3.712397131406715, -7.0, -7.0, -7.0, -7.0, -3.6880636969463443, -3.943890048248473, -7.0, -7.0, -3.103974669386388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.48422863769372, -3.2888749458352793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7091285660594253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.326540668516562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7552394576339077, -7.0, -3.3891660843645326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7297315952870354, -7.0, -7.0, -7.0, -7.0, -3.0617754947078137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5999084478943093, -7.0, -7.0, -7.0, -4.170188348643891, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2375751529847925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731427587050948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9177680024477564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.232689740335693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.471365065418019, -7.0, -3.745933158459443, -3.155057554299442, -7.0, -2.8739015978644615, -3.716754357432697, -3.723209310405111, -7.0, -3.1539672216454786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8312296938670634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.898176483497677, -3.510112883771509, -7.0, -7.0, -7.0, -3.4233278085624455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8547916940539855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7573960287930244, -7.0, -3.2477892042772956, -3.791830947674836, -7.0, -7.0, -7.0, -3.215967850531294, -7.0, -3.024074987307426, -7.0, -2.6747161423005723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3071393278464214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.864748335629659, -7.0, -7.0, -7.0, -2.6935240233774413, -7.0, -7.0, -4.01456253812761, -7.0, -7.0, -7.0, -7.0, -3.773859552376687, -7.0, -7.0, -7.0, -7.0, -3.699577591398909, -2.0516492556611436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.343162719448533, -7.0, -7.0, -4.2979573758101095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.830352759588388, -3.0570414004594033, -2.7010796971545665, -7.0, -2.905616011041668, -3.5254983106766704, -7.0, -1.5480968800198602, -2.5234342867464368, -7.0, -2.1165848448038345, -2.589825534910951, -2.8648599400071073, -2.968968851039916, -2.4831711067291815, -2.7182432681376736, -1.7100584417711244, -2.915584489837296, -2.087028677751426, -3.0014356218422553, -2.897008193182832, -2.86557305244909, -2.904282657645628, -2.3786583674477253, -1.8745468407664116, -3.577836341292744, -2.953583143592621, -2.4056877866727775, -3.3106225169268044, -2.49410713792028, -1.8979614050769982, -2.8515538946121692, -3.03818286599066, -2.053303140550675, -1.847366978587994, -3.061154752002178, -3.0540929905136385, -3.1752218003430523, -1.517455397407657, -3.3606565148340706, -3.762528522447, -3.260226984027309, -2.7293585021344358, -7.0, -3.726890140741822, -2.237217718184282, -7.0, -2.487237830963865, -7.0, -7.0, -3.5150786750759226, -3.4871855275842742, -3.9860099318532614, -7.0, -3.299768711919799, -7.0, -7.0, -2.8457743357365493, -3.6981658154401953, -7.0, -7.0, -2.854178148262086, -2.5619484129365397, -3.532340972815915, -7.0, -7.0, -7.0, -3.453719571202035, -7.0, -4.119397299540836, -3.033172354911534, -7.0, -7.0, -3.660912887477406, -3.469409608516755, -3.5264315920850375, -7.0, -3.0025020358433663, -2.7024843890690557, -3.1987716009911846, -3.017986785306103, -7.0, -3.421555540208102, -2.932980821923198, -7.0, -3.9787464205898777, -7.0, -3.514614153467984, -3.9360107957152097, -3.327825823614288, -7.0, -7.0, -7.0, -3.719497016610582, -1.4509619291538933, -1.6975930787551952, -7.0, -3.462397997898956, -3.4119562379304016, -2.844725627973226, -3.1581513253927027, -2.4550733759211245, -7.0, -7.0, -2.9480460080196305, -3.710540447933297, -2.7029861134458204, -3.446847710155809, -3.1330596427539095, -3.8211858826088454, -2.6084404498776554, -2.9523772475230774, -2.823948220466359, -2.716003343634799, -2.5222811794469977, -3.038449839253787, -7.0, -2.756940236046724, -7.0, -3.704236337308788, -7.0, -3.211806811322216, -7.0, -7.0, -3.2098723115450163, -2.3715024827552478, -1.4376211862677986, -7.0, -2.8870543780509568, -7.0, -2.572363273177757, -7.0, -7.0, -7.0, -3.160948480864697, -3.7033773685123497, -7.0, -3.456619044777273, -7.0, -1.7833837773173207, -3.130333768495006, -2.45178643552429, -7.0, -3.2696685774329497, -7.0, -2.8534700560147392, -2.4135847287244094, -3.40849436021236, -7.0, -7.0, -2.0507027915758727, -2.4494981780548124, -2.9599948383284165, -3.4303975913869666, -2.35128711383822, -3.716420733846555, -2.5985361084603706, -7.0, -2.6478717653062325, -7.0, -2.44165379985028, -3.1143106768684246, -7.0, -2.6262957259110666, -7.0, -7.0, -3.7138264243805246, -2.2103391029908557, -7.0, -7.0, -2.6113692154627337, -3.7348798027926278, -3.7283537820212285, -3.5180311221717915, -3.446381812222442, -3.5659658174466666, -7.0, -2.8519132286851905, -2.3825383761127745, -3.3274951622675926, -3.0965624383741357, -7.0, -7.0, -2.6320634252958612, -2.2570012883774924, -7.0, -1.811809860462303, -2.700738320904402, -2.8705502062680823, -3.0948203803548, -3.3757915976851924, -2.974804668354214, -7.0, -3.039889797736181, -7.0, -7.0, -7.0, -7.0, -2.353700623519698, -7.0, -7.0, -7.0, -2.6489173347428867, -7.0, -3.719248398447946, -3.3931363002692168, -3.3964608915070755, -7.0, -7.0, -3.4068806700491248, -2.855640280890145, -2.8749325644777626, -7.0, -7.0, -2.8953436049355092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5516717465004923, -7.0, -7.0, -7.0, -2.721747219185589, -7.0, -7.0, -3.4188350827355722, -7.0, -7.0, -3.7865384804978026, -2.5310141823998307, -3.446070935701005, -7.0, -7.0, -7.0, -7.0, -2.531957654348021, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5610268074521003, -7.0, -7.0, -7.0, -2.900882755786381, -2.770431183622876, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3797015850547303, -7.0, -7.0, -7.0, -2.8658874442230333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.006187833539161, -7.0, -7.0, -7.0, -7.0, -4.099542528695332, -7.0, -7.0, -7.0, -7.0, -7.0, -3.109231587666042, -4.093999192869392, -7.0, -3.554108260657051, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.416607226792504, -3.1715948293206875, -4.396251668580277, -7.0, -4.111900712865614, -7.0, -4.395867831233988, -4.396094685212617, -7.0, -7.0, -4.411333448612567, -7.0, -7.0, -7.0, -3.1164601502801488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.711733434874681, -7.0, -3.39776625612645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9250025076809774, -7.0, -3.706683651763288, -7.0, -4.100163688966044, -7.0, -2.4357382204426923, -3.9240551874495404, -3.918990875891816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1271534106979635, -7.0, -7.0, -7.0, -4.102828027919261, -7.0, -7.0, -7.0, -7.0, -4.4042177445149235, -7.0, -7.0, -4.100180930742329, -7.0, -2.601878997584187, -7.0, -7.0, -7.0, -7.0, -4.409053505010069, -7.0, -3.543229667726184, -2.8133117167318837, -7.0, -7.0, -7.0, -3.8193848844515053, -4.396356292642913, -4.107481318911243, -4.411266066512139, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.352928220652557, -7.0, -7.0, -7.0, -7.0, -7.0, -3.623382217343356, -7.0, -3.834325313744794, -4.404577167740624, -7.0, -3.6440867345657413, -7.0, -7.0, -7.0, -3.656146134740865, -3.9317290081923666, -7.0, -7.0, -7.0, -3.6084428274303924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.407033803328038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4613428736466783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.943362591700379, -7.0, -3.1600454084072833, -7.0, -3.1518463489431174, -2.9039309228438346, -7.0, -4.402175375031505, -7.0, -4.402845781655725, -7.0, -2.683981060007928, -4.399950474386311, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517354274350649, -7.0, -3.950575783275147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426153268215979, -7.0, -7.0, -4.395186557446505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.104862518141077, -4.144652031188698, -2.6434316192735525, -7.0, -7.0, -7.0, -4.403120521175818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4942937686653326, -7.0, -7.0, -7.0, -7.0, -7.0, -4.09564001802453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.82239693934044, -7.0, -3.5157267000606347, -7.0, -1.7059554726320614, -7.0, -7.0, -7.0, -3.9818186071706636, -3.5614762013962973, -7.0, -3.513084360465144, -4.114260605446002, -4.395291438384484, -7.0, -7.0, -7.0, -3.9268738405440184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4819996714322374, -3.9287883153242555, -7.0, -7.0, -2.086441189701195, -7.0, -7.0, -3.879841055986563, -7.0, -7.0, -7.0, -4.396478322202103, -4.413936485917295, -7.0, -7.0, -7.0, -7.0, -4.398009490230765, -1.6871170615951079, -3.262773046675905, -7.0, -7.0, -7.0, -7.0, -4.403738050363856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100094715014989, -4.396548037987132, -3.270691772933909, -3.8311175827395134, -2.451196709825884, -4.097777734539283, -3.411164973755188, -3.5717597681877002, -7.0, -7.0, -7.0, -7.0, -3.930269649751069, -7.0, -7.0, -7.0, -7.0, -7.0, -4.403274985811686, -7.0, -7.0, -4.396216788290972, -7.0, -7.0, -3.95433900860246, -7.0, -7.0, -2.968298747062242, -2.8255451158954044, -1.2379149026031688, -4.401882822321282, -1.7084480887903148, -7.0, -1.5480968800198602, -7.0, -2.2459534824845075, -7.0, -2.6721101781717973, -1.6143017679111997, -1.6180546047026807, -1.9892637435437004, -2.859959044875594, -1.6685292718594495, -1.2261354849433992, -3.077943992402701, -2.319169559153719, -2.7447408575982504, -2.138410667831999, -1.6666884526570873, -2.0250850890094454, -1.752061582665237, -2.4030124712965577, -2.508327674547125, -1.5353058117916345, -1.3253166704439294, -4.116159272795033, -2.251559446395231, -2.245725338344771, -1.435836639979589, -1.9941457669893958, -1.8025366557361748, -2.1507493020831574, -1.7405023288426078, -1.86465533932495, -2.4959538825135468, -1.769874929688702, -3.3521181734217267, -7.0, -2.6499976347365273, -2.72493870639439, -3.574768941501752, -3.6252952983922326, -2.2977910670286694, -3.5629043555363977, -2.16371760904402, -7.0, -7.0, -3.4813590104042285, -3.0040383904652064, -3.472200430565602, -4.414756146424954, -3.0288325872597874, -3.4154908521714686, -7.0, -2.751231956995085, -2.8370221280830727, -4.429106008332696, -7.0, -2.7432791373097536, -1.8459505141455332, -2.3492307781211794, -7.0, -7.0, -7.0, -2.9958943380318903, -7.0, -3.0534393320846642, -3.678761103362153, -3.7115903288209764, -4.396826789268784, -4.163727735958904, -3.0349165873947777, -3.191131504072038, -3.7184020305163026, -2.7058187146688035, -2.4679428579636253, -3.3864320772662224, -2.7357106522811234, -7.0, -2.478997784566411, -2.861484626428204, -3.505946584808965, -2.9205420041231145, -7.0, -3.821742733474618, -3.1774757445725914, -3.0649818216973053, -4.398807730203265, -7.0, -7.0, -7.0, -2.013031599703814, -3.10462618871794, -7.0, -4.411602872517545, -7.0, -7.0, -3.9345237001887745, -4.109511052229932, -7.0, -7.0, -3.708364237014807, -7.0, -3.364046122136441, -3.8059933229700182, -7.0, -7.0, -3.7016111533360587, -7.0, -7.0, -7.0, -4.404029356425098, -4.441805069695703, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4970541095473315, -7.0, -7.0, -3.8298744145878594, -2.6599289558040393, -1.5460343682984186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4350476413399647, -7.0, -7.0, -7.0, -7.0, -3.3578029561814304, -4.404885008214813, -4.123001813306024, -7.0, -7.0, -7.0, -7.0, -2.597184351345655, -7.0, -7.0, -7.0, -2.7979135378417332, -4.492089577491379, -7.0, -7.0, -4.466615567492372, -7.0, -2.14725185319735, -7.0, -3.9564085711958326, -7.0, -7.0, -2.9994996151681876, -7.0, -4.172705071797739, -7.0, -7.0, -7.0, -3.8194945810919148, -7.0, -7.0, -3.9794724955247456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.175743684421761, -3.5114971497645353, -7.0, -7.0, -7.0, -7.0, -3.4595935034915413, -4.132243675427468, -7.0, -4.121822376752185, -3.540935581295993, -4.113057156163552, -3.925505469379759, -2.8691919291329455, -4.181772152056479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.160199906751567, -7.0, -7.0, -7.0, -3.474541246737956, -7.0, -7.0, -7.0, -4.397627204021875, -7.0, -4.397992120883196, -7.0, -4.434361287200313, -4.4275023380332845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.399742926242862, -3.6881230714056485, -4.144153719132131, -4.138539521483194, -7.0, -7.0, -4.128221507666712, -4.395972547794993, -7.0, -2.867697143868812, -7.0, -7.0, -3.939685617103282, -4.138444807652802, -7.0, -7.0, -7.0, -7.0, -7.0, -4.149373090491385, -7.0, -7.0, -7.0, -4.732851940001292, -7.0, -7.0, -7.0, -7.0, -7.0, -4.731959248048951, -7.0, -4.7326831930105575, -2.3127610850765197, -4.738328593727102, -7.0, -7.0, -3.917077681247535, -3.0391146831688234, -4.431669271313745, -7.0, -7.0, -7.0, -4.033013394664247, -2.425683042498169, -4.45983711033396, -7.0, -3.1812638243618423, -2.3525148327209098, -7.0, -7.0, -7.0, -4.256196408063205, -4.431902277007789, -4.4324962773898475, -3.840144713858491, -7.0, -4.732136323845126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.044280988044567, -4.130237247885229, -3.415146109816988, -7.0, -4.734183542152668, -3.779676641573066, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4315728185856536, -3.3800145058160997, -2.8141883831772025, -7.0, -4.033857832966269, -4.263217745338578, -7.0, -7.0, -7.0, -7.0, -4.258365863632017, -4.438558169790535, -7.0, -7.0, -7.0, -3.023265956261281, -7.0, -7.0, -7.0, -7.0, -7.0, -4.434608818972134, -7.0, -7.0, -3.9439518176496353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.258182160366098, -7.0, -3.9587788272906477, -7.0, -4.433841810470936, -7.0, -2.532935563607061, -4.7348957956663345, -4.431508504864177, -4.731999498888382, -7.0, -7.0, -4.431387890960021, -7.0, -7.0, -7.0, -4.446568231376214, -7.0, -7.0, -7.0, -4.258972331109386, -7.0, -7.0, -7.0, -4.732393759822968, -3.4807333549387898, -7.0, -7.0, -7.0, -4.4330093530931425, -2.869165023196728, -4.732908174430821, -4.733502207751304, -7.0, -7.0, -4.136427240094511, -7.0, -4.27933988355467, -2.891104357461312, -7.0, -4.433729841799795, -7.0, -3.1532691472062484, -7.0, -3.8931036018217346, -3.7852032462226073, -7.0, -7.0, -4.431966532447148, -4.256501266211318, -7.0, -7.0, -2.91150349477443, -4.731910942116873, -7.0, -7.0, -4.731991449018929, -7.0, -2.600957985056156, -4.148949520009529, -4.75159469981361, -3.3558663952923395, -7.0, -3.286195614804735, -7.0, -7.0, -7.0, -3.796250457270067, -3.323101304852948, -7.0, -7.0, -7.0, -3.7032649161102507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.436544276662768, -7.0, -7.0, -7.0, -4.434497047900033, -4.7331490966888365, -7.0, -2.2945643764286494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5676457844583123, -7.0, -3.1717335866238385, -7.0, -4.7378999822802434, -2.336011372536, -4.13049458852347, -3.354748519560839, -3.620880470789483, -3.589303181209229, -3.4140496895261268, -4.1368790398755175, -7.0, -4.733413956897983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.315473525026916, -7.0, -2.9830816586339246, -7.0, -3.736890281242343, -7.0, -4.732610852795199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5703171726079854, -3.692181714500473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4348402532975735, -4.2599202335673745, -3.551739634346346, -2.9012505800321833, -7.0, -7.0, -7.0, -3.589430945413185, -7.0, -7.0, -7.0, -7.0, -4.73275552117825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4358112844425377, -7.0, -7.0, -7.0, -7.0, -4.431645160139889, -4.732795698289329, -7.0, -4.733606481099323, -7.0, -7.0, -3.670392758338277, -4.043770833537528, -7.0, -7.0, -7.0, -3.365292945375382, -4.036261505705524, -1.9442479613427892, -7.0, -2.4788898586149566, -7.0, -7.0, -7.0, -3.315077761428482, -7.0, -3.6241471761742603, -3.3102211247655564, -7.0, -7.0, -7.0, -7.0, -7.0, -4.435159270818, -4.734615835313205, -7.0, -7.0, -4.733590440675243, -7.0, -7.0, -4.7333016116877, -3.8294404736513274, -3.5752956351447946, -3.65774087263201, -4.734599832126458, -4.733189237407942, -2.3187758238582155, -7.0, -7.0, -3.4517060437782163, -7.0, -7.0, -4.433657846692988, -7.0, -3.5364716381249224, -3.3729760062834497, -4.7398728450231316, -7.0, -4.738138151971374, -4.131289771865652, -2.025145309578206, -4.1365620365899805, -7.0, -7.0, -4.732039745997672, -4.438969313737987, -3.7359101389693814, -7.0, -7.0, -4.734367719627033, -7.0, -7.0, -7.0, -4.733622520930981, -7.0, -7.0, -4.734855812377757, -4.732723376813052, -3.7559164129647007, -3.9048545961465555, -2.3524888120884007, -7.0, -4.040633981546597, -3.1556102627468885, -4.2616196765479355, -7.0, -4.735079671396599, -7.0, -4.2606357630261105, -3.973558854042434, -4.261587972170946, -4.4311546090522445, -4.430937302851301, -7.0, -3.6942860407476794, -7.0, -7.0, -4.732570658579406, -7.0, -7.0, -2.7792938551187123, -7.0, -7.0, -1.6733066117118942, -2.080104209578498, -2.1649498074924685, -3.5588764972551363, -2.836767587938306, -2.749681672112621, -2.5234342867464368, -2.2459534824845075, -7.0, -4.431138516024918, -1.9595438289602904, -1.3763213526893203, -2.130418300968995, -2.2212418109995706, -1.5462364444869212, -2.626664467749713, -2.607856961681029, -1.7386774334906772, -2.3920370982602477, -2.0771409968833208, -3.091118028327024, -2.5311273253818536, -2.3595920918742195, -0.9082622277483057, -2.5196681185140672, -3.061177635447784, -2.381861901549193, -1.4218571139257665, -4.265226748420167, -1.029734020966166, -2.0982023330127793, -2.4495402967153828, -2.6972047765079417, -2.1098658593045085, -2.1733771154648243, -2.812674229639345, -2.903364685186985, -2.0797269661897304, -2.2391198446200864, -2.4007329088562077, -7.0, -2.444232220713578, -2.498405219017697, -2.926107152304904, -2.956904441636584, -2.6262598343477097, -3.834937035377519, -2.4464138741235977, -4.077811059250664, -3.8401060944567575, -2.8020227472483574, -2.5109980542805, -2.948879554937643, -7.0, -2.7406209017049608, -4.0426699996003075, -7.0, -3.6084037659857606, -2.860489313314953, -4.7480406520901814, -4.736069662371753, -2.4682786183667798, -2.0329793553070608, -2.8251465839459926, -7.0, -7.0, -7.0, -2.6395971516419463, -4.465583591880342, -3.7185570447378358, -2.448986546550028, -3.4713117180220143, -7.0, -3.5100010569209736, -2.9592049889385117, -3.6850068460949137, -3.1291001439415806, -2.877191780219873, -3.501964050635706, -1.3425548681430048, -3.575172444141053, -7.0, -1.6359740309170805, -2.3349294350274246, -4.039604453125454, -2.5190924328316933, -7.0, -2.5729892769856284, -3.346187411389113, -3.483831728933643, -4.4327208225983075, -7.0, -7.0, -4.434233473644771, -1.861943596297561, -1.9676457541126968, -7.0, -2.774501097901883, -3.479127237417261, -2.722261297472855, -1.5595677521030744, -2.899320807326632, -4.733919151012391, -7.0, -1.5843082985891896, -3.956192450523593, -1.9223060969787602, -3.290527486484116, -3.338536173355659, -3.5998596887549335, -2.817609435764669, -3.1747667952445253, -2.8160253712016736, -3.1704678690973567, -3.0193719645920116, -2.599729355835965, -3.783482732017722, -3.3586010159430195, -4.434600836278021, -4.131722895345994, -7.0, -2.0003367588821965, -4.4335458305766196, -4.732466136205421, -2.0389758684485395, -1.7090164350751587, -1.4005481065017522, -4.4312591991966865, -3.4060056926824207, -4.257694570688118, -3.5950156811695013, -4.733582420241032, -7.0, -4.732884074852628, -3.0259624536056147, -4.432704787504453, -3.6215277949321476, -3.298408846961862, -7.0, -1.9769622734382644, -3.4575472663217233, -2.7664363303175405, -4.73200754860863, -4.1359114555750605, -4.256027841969174, -2.113388887581343, -1.879222692401706, -4.257190419161368, -4.431821944337311, -4.256043898702031, -2.685756915498769, -1.1683168621903026, -3.6230583497564854, -3.736316807904109, -2.4452897737854538, -7.0, -1.5742845569137742, -3.957128197676813, -2.9362971598951773, -3.692902974323973, -2.9788849817912846, -2.7584983620147856, -7.0, -2.347873520992558, -3.782488549597868, -4.733790903406896, -3.620600464021688, -2.7517345945216576, -4.732031696874192, -4.7326510432913365, -1.73331505003569, -3.782416880556456, -4.258988279348813, -2.7399861623675457, -4.03903320084723, -3.575603459860452, -4.135760572021129, -1.5644135192609991, -2.1681024455343647, -3.2967043564681595, -3.280444918828487, -4.732152418065214, -7.0, -2.3967017120816574, -2.7801546506773587, -4.034146977106046, -2.77514438901695, -0.8208455107670904, -3.149250702303481, -1.2523921106247071, -1.9050790087053022, -2.675924914230962, -4.431886211662398, -3.623114049449181, -4.431781772429124, -4.732289194860667, -3.9565365919733257, -3.5076892305931007, -2.7060562169997526, -7.0, -4.033962268335752, -7.0, -2.1292125228753833, -7.0, -4.258102265137589, -4.7329162073263795, -4.733221347312165, -4.434393234712605, -4.1312817469854, -3.5878552249378273, -1.6475990265972849, -3.516574256073354, -7.0, -4.732996528111129, -2.781779302063946, -4.032981193097368, -7.0, -7.0, -3.8309012866592043, -4.43274487412905, -4.734199560686231, -3.3187860602767865, -2.78129693567756, -3.9079178445986336, -4.256035870409809, -7.0, -3.2424948410083423, -4.130349853177955, -4.732015598179676, -1.9741594396760127, -7.0, -7.0, -3.223196915940392, -2.7603455395182035, -3.737892041040643, -7.0, -7.0, -4.43341777677003, -7.0, -2.707501741954049, -4.431033896809084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.877135126815562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.694605198933569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669642247025738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.848062814416318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605638990395859, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.543298040491669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.616612029993923, -4.746330553658598, -7.0, -1.1674267426041278, -7.0, -7.0, -7.0, -7.0, -4.431138516024918, -7.0, -4.02612451674545, -7.0, -7.0, -7.0, -4.391146906415991, -7.0, -7.0, -4.650666857562813, -7.0, -7.0, -7.0, -7.0, -7.0, -4.783953577404038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.54129211534237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.273117068486742, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603415045412929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.06707085604537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626689305465622, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165896909992507, -7.0, -4.740354793159152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.080731080139699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008940661377087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.104262021903205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.883448493505859, -7.0, -7.0, -3.7543865641765075, -3.4566038682343416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8904955374150134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.079940597152362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.074267742553358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5463986973189114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.275911969341105, -4.039731296098691, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7388598020722004, -7.0, -7.0, -7.0, -7.0, -3.7563698216020813, -7.0, -7.0, -3.515703572953595, -7.0, -7.0, -7.0, -3.4321271294654903, -7.0, -7.0, -4.062431553162612, -7.0, -7.0, -4.030316305988586, -7.0, -7.0, -7.0, -2.969216160193203, -7.0, -7.0, -7.0, -7.0, -7.0, -4.18150058846776, -7.0, -7.0, -3.746244871720198, -7.0, -3.521556479191024, -7.0, -7.0, -7.0, -3.811507979945327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.106061643964693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.605628222007619, -7.0, -3.2039225311945088, -7.0, -7.0, -3.0329454951737977, -7.0, -3.5645871661717736, -3.7392162193937257, -3.5661230992888213, -3.348772013844623, -3.7585334222372864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.097812407365289, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1914160794625115, -4.033946202990361, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.135895575564019, -2.5905031402619314, -7.0, -7.0, -7.0, -4.044029909946466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6582716350441484, -7.0, -7.0, -7.0, -7.0, -7.0, -4.029221394253928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.027064062151045, -4.091561448144972, -4.041708420891436, -2.5486322043143623, -7.0, -2.9580026583126315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073828284401109, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6396192807332817, -7.0, -7.0, -7.0, -3.1037951717678367, -7.0, -7.0, -3.4285397306379886, -4.026001817357177, -7.0, -7.0, -7.0, -7.0, -4.040523226445596, -7.0, -7.0, -7.0, -4.032256025890453, -2.688493710291997, -7.0, -7.0, -7.0, -7.0, -4.064532861131578, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1101181270103275, -3.0237489456041193, -4.034187120793453, -7.0, -4.055741366005619, -7.0, -7.0, -7.0, -7.0, -7.0, -4.117668940562442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.106428894793411, -7.0, -7.0, -2.2047218097709047, -2.7990055901015256, -3.0297444125258646, -3.740086232305504, -3.6163704722912695, -3.0538813029399567, -2.1165848448038345, -2.6721101781717973, -1.9595438289602904, -4.02612451674545, -7.0, -2.4034855972580953, -3.0462297460965346, -3.1043929144826357, -1.9857140145065368, -2.350173442137207, -2.7774768217540804, -2.356787290504102, -2.4784157250726615, -2.7716302024333626, -3.4868081673068962, -2.9173463457004742, -2.9949278545756846, -2.1765046760139852, -2.1951679674318276, -3.2458826475172615, -3.097017539281824, -2.3760779765022546, -4.075619945928776, -2.051105441902926, -1.5020080105202644, -3.180134839207975, -3.3272174217282786, -2.267292540746008, -2.096432358024415, -3.596769836649545, -3.5570457946939182, -3.0372405216509115, -2.136695307197003, -2.7579762486280295, -7.0, -3.376987335620002, -3.2536942589200692, -2.9197935241116775, -3.5678886061861617, -3.6364678360987646, -7.0, -3.7019227969115684, -7.0, -7.0, -3.6460899012744283, -3.4292137870854282, -3.5866154316418695, -7.0, -3.5948619534914963, -7.0, -7.0, -7.0, -4.410490420003448, -7.0, -7.0, -3.372043597924024, -2.722123655881506, -3.375387870556721, -7.0, -7.0, -7.0, -3.096452173674266, -7.0, -3.9116191898049486, -2.483875486804185, -7.0, -7.0, -3.5717379390424977, -3.1974714148555217, -3.9897018963460247, -7.0, -3.8701111553644005, -7.0, -2.6434703017162744, -3.8152455919165633, -7.0, -3.1990777777050927, -2.5457441400572276, -7.0, -3.6480508524599364, -7.0, -3.612889769287485, -3.4589700516287487, -3.5369159991305725, -7.0, -7.0, -7.0, -4.041629508475138, -2.4037711497348146, -1.9609813912022167, -7.0, -3.217634323191137, -3.5613399414589013, -2.762542164705617, -1.9929204347492253, -2.855632711553374, -7.0, -7.0, -2.0717476631092104, -3.4350875123045923, -2.5332502999681688, -7.0, -3.1457400995364067, -3.1382325034866554, -2.3067273749127253, -3.3024391640698574, -2.584198148073582, -2.6788975762019875, -2.868918601850143, -2.5573445996041952, -3.0993352776859577, -3.214995143810212, -7.0, -4.034427905025403, -7.0, -1.8242039608286242, -3.737113094305961, -7.0, -2.0111629144226377, -2.0606081092457327, -1.8977493894870296, -7.0, -3.0623768380354477, -7.0, -3.292292999589303, -7.0, -7.0, -7.0, -2.96744768112233, -7.0, -3.264975147583582, -3.010027225211449, -7.0, -2.1209742817146546, -3.7469454096151047, -2.5831633372681906, -7.0, -3.577721524509021, -4.031165999660659, -3.214654654195042, -1.7696844959347846, -3.337698805964078, -4.029586671630457, -7.0, -2.269948576750441, -1.8148067561120336, -2.9361269120606015, -3.746322765089953, -2.5027756709516997, -7.0, -2.3468919571765694, -7.0, -1.8383646573552883, -3.4352469595691293, -2.9285927844153066, -3.159497782005977, -7.0, -2.23700120905058, -3.1457400995364067, -7.0, -3.7378285058957847, -2.514511856104337, -7.0, -7.0, -2.81424759573192, -7.0, -7.0, -3.3492775274679554, -3.452935870201179, -4.118198568045036, -4.054268239547188, -1.9418670254250672, -2.022045226491996, -3.3058885302843097, -2.4332241692194554, -7.0, -7.0, -2.482075842814299, -2.1548238775544104, -3.7300551523755, -2.2637794829316564, -1.569934431839561, -2.705417442867802, -1.8575159365530678, -2.508699866624639, -2.5728175888328457, -7.0, -2.9712371811975107, -7.0, -3.7255441224863532, -7.0, -7.0, -2.7065536684845606, -7.0, -4.030235296012245, -7.0, -2.169581255505934, -7.0, -3.040800061256529, -4.029830019310658, -4.0313680628857735, -3.7413092088995694, -4.0322157032979815, -2.9561684304753633, -2.079999897528305, -2.841428996506697, -7.0, -7.0, -3.051499819132745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.222456336679247, -2.2550794424275757, -3.4240972394005476, -4.031206419827462, -7.0, -3.1010593549081156, -4.027512692448811, -7.0, -2.5573289383908295, -7.0, -7.0, -3.472573626968942, -2.2316416747484227, -7.0, -7.0, -7.0, -7.0, -7.0, -2.259977184344511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6859997629642085, -7.0, -7.0, -7.0, -3.7127443776037308, -3.203147997054803, -7.0, -7.0, -4.574841195063384, -4.580468783951002, -7.0, -2.596143564636393, -7.0, -7.0, -4.581779045728458, -2.9611431678226436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.865885356849177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.706706555470474, -7.0, -2.871661594213514, -7.0, -7.0, -4.5759264411633405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.110286608403566, -3.9273703630390235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9895860127950473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.031634642470658, -7.0, -4.097870189257832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.619397717259811, -4.099979734081352, -7.0, -7.0, -7.0, -7.0, -4.573602552304502, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.578914137904182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.541543586121371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.829614637842637, -3.0528075800932757, -7.0, -7.0, -7.0, -3.2379418864745153, -7.0, -4.280976518699718, -4.282803314291728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3652726562364186, -7.0, -7.0, -7.0, -7.0, -7.0, -3.924196555424065, -7.0, -4.2999102450746784, -7.0, -7.0, -2.5942719800021083, -7.0, -7.0, -7.0, -4.122412495411281, -4.281226596668253, -7.0, -7.0, -7.0, -3.9922883537970923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.581016156545554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.241311761772201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.987990077819066, -7.0, -3.1028843304520466, -7.0, -3.882399297374088, -2.866686256844357, -7.0, -3.7325316092073675, -7.0, -3.276748941031243, -4.278524964737017, -2.6727134419961223, -4.576283747648257, -7.0, -7.0, -7.0, -7.0, -4.586722297518069, -7.0, -7.0, -7.0, -4.657925483756938, -7.0, -4.595010951898408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.593917107968336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7040646794085674, -2.362084192831113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5572850469162516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.583153414473892, -7.0, -4.297289861640372, -7.0, -7.0, -7.0, -7.0, -3.160890737208172, -7.0, -3.582734646353692, -7.0, -2.281986672793383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.587318014514068, -4.2855348061200305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.299921130330193, -7.0, -7.0, -7.0, -2.6306638191535563, -7.0, -7.0, -3.678224906041909, -7.0, -7.0, -7.0, -7.0, -4.585652453577532, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8570936807822036, -3.104782913501534, -7.0, -7.0, -7.0, -7.0, -4.277758155206577, -7.0, -7.0, -4.576387426751579, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.099922232196922, -7.0, -3.7612698875591977, -4.598768627396784, -2.436191028312803, -4.575545759343288, -4.282939165754773, -3.4274380197942302, -7.0, -7.0, -7.0, -7.0, -7.0, -4.601234046916447, -4.582665500466235, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274053883354042, -7.0, -4.583776692634928, -7.0, -4.296522595433707, -7.0, -7.0, -1.6956711079089126, -1.8039393715334233, -1.9450404100170748, -7.0, -3.0981617006115987, -4.1170612806313445, -2.589825534910951, -1.6143017679111997, -1.3763213526893203, -7.0, -2.4034855972580953, -7.0, -2.6245095125320517, -2.8085052866303437, -2.6472281288748, -1.524095582761675, -2.2986184244854564, -2.751422464410734, -3.038814169209334, -1.812689050285849, -2.7092506825613607, -1.7272531802324826, -2.761722869731802, -0.696236093792431, -2.390319447159678, -2.616297605937538, -2.6144632758080677, -2.299410066465394, -3.6846209780269676, -1.6863367526203503, -2.242305130766777, -2.6655520394035577, -2.4754544644931236, -2.6087516128943555, -2.873210325172087, -2.341418438405759, -2.4032198906950484, -2.6976541809638137, -1.7773155443668243, -3.6658997943309437, -7.0, -3.0324844498918937, -3.343052406603564, -3.2491779675001773, -4.578730871952774, -3.1407862902279273, -7.0, -2.5460646087948833, -7.0, -7.0, -3.4854019748438567, -2.943238591907711, -3.6257341909969014, -7.0, -3.6287668572312906, -7.0, -7.0, -4.304339704892339, -2.8620236540286195, -4.595925894606198, -7.0, -3.5724504575628, -2.3571035853767603, -2.3303996308647994, -7.0, -7.0, -7.0, -3.360738161692183, -4.0199570515283405, -4.250858954599295, -3.916106373916004, -4.385793891176033, -7.0, -4.620542039849599, -3.0308020487722676, -3.7946971268919985, -3.9859314351032813, -3.841296887490282, -3.193777262607969, -3.0039249234108576, -3.521377838762743, -7.0, -2.8272287565088057, -2.9921586590995553, -3.980389744490009, -2.3463857600530322, -7.0, -4.291335544382936, -3.614770704069749, -3.144418518602069, -7.0, -7.0, -7.0, -7.0, -2.701968350796342, -2.8855280531785423, -7.0, -3.9819544444699737, -4.5768249102949845, -3.8985057855343586, -3.2243202842554037, -3.9812634968287997, -7.0, -7.0, -3.0441073814140625, -4.576468048945627, -2.8832573030914483, -4.2807149194910075, -4.579966418965081, -7.0, -4.029038640290407, -7.0, -3.6011034909311253, -3.1514266037049206, -3.624580005156098, -3.905558437120276, -3.8823309691042955, -3.9811614606115753, -7.0, -7.0, -7.0, -3.643156465619706, -4.5767098257666845, -7.0, -2.3607432641111994, -2.8315095089267874, -1.9759362742204192, -7.0, -3.9948118872762843, -7.0, -3.8081321668795662, -4.575257141709752, -7.0, -7.0, -3.6457605771884154, -7.0, -7.0, -4.0124048232620035, -7.0, -2.602328757112121, -3.977449227382341, -3.6892533475901, -7.0, -4.104464348950593, -7.0, -7.0, -1.5777084362726672, -7.0, -7.0, -7.0, -2.948264092763587, -3.3841841004893225, -3.6260208317947957, -4.278341969060907, -3.342692732167322, -4.577273448787888, -2.3165348356252076, -7.0, -3.519565500880509, -4.576514112051963, -3.9761091470843497, -2.9504889426054746, -7.0, -2.812604872328782, -4.278913574715962, -7.0, -7.0, -3.2681989577058395, -7.0, -7.0, -4.0127528874912155, -7.0, -7.0, -4.327021586507191, -4.58169940355087, -7.0, -4.581414847918365, -3.452593912052705, -3.02951905084684, -4.590585505352095, -3.4749443354653877, -7.0, -7.0, -2.997799697426971, -2.7844746437625165, -7.0, -3.415296164886454, -2.8110324767782995, -4.585776465241712, -3.073614968155805, -2.9575686704055344, -4.031105362355941, -7.0, -4.279473019293323, -7.0, -7.0, -7.0, -7.0, -3.8247872980310382, -7.0, -7.0, -7.0, -3.130316836606199, -7.0, -4.1004969087243035, -7.0, -7.0, -7.0, -7.0, -4.5761339452331775, -3.5200903281128424, -4.117668940562442, -7.0, -7.0, -3.7355646839741787, -7.0, -7.0, -7.0, -7.0, -7.0, -4.576145470330555, -4.621685084798318, -2.660606789731412, -4.603101049314056, -7.0, -7.0, -3.81778565588553, -7.0, -4.5729993170909475, -2.9564085711958326, -7.0, -7.0, -4.28657995889235, -2.6517352463427852, -7.0, -7.0, -7.0, -7.0, -7.0, -2.664225170809302, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4235455007027262, -7.0, -7.0, -7.0, -4.389493897263608, -3.914545886349628, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1669478796158117, -4.688909017620555, -7.0, -4.360867837306531, -2.924456409691413, -7.0, -7.0, -7.0, -4.656222816103602, -7.0, -7.0, -4.307389055653304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3670482644844935, -7.0, -3.7098958959608153, -4.6546577546495245, -7.0, -4.05493846198963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5230176972834117, -7.0, -7.0, -4.664594971445261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.655234507034295, -7.0, -7.0, -7.0, -7.0, -7.0, -4.010808597512207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9595469793998377, -7.0, -4.058473475370126, -7.0, -7.0, -4.659583461983928, -3.2103686895810273, -4.658068662483436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657065418709505, -4.274727294773987, -7.0, -7.0, -7.0, -7.0, -4.662408367294865, -7.0, -4.382674293893472, -3.3976906898536563, -7.0, -7.0, -7.0, -3.2570236949030695, -7.0, -4.361075905224315, -3.709251110979869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3182319446859947, -7.0, -7.0, -7.0, -7.0, -7.0, -4.696670854360099, -3.9782444462250335, -4.3768779392470645, -7.0, -7.0, -4.106921475168692, -7.0, -7.0, -7.0, -3.157667357356373, -7.0, -7.0, -7.0, -7.0, -3.8004726807059277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658383489624529, -7.0, -7.0, -7.0, -7.0, -7.0, -3.252495566964527, -7.0, -7.0, -7.0, -7.0, -7.0, -4.655416985727724, -7.0, -4.191702463559194, -7.0, -3.512967742271094, -7.0, -7.0, -3.075769668011446, -4.655330558009341, -7.0, -7.0, -4.181795965324855, -4.359038228379384, -4.185787609647107, -7.0, -7.0, -4.657466994367546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.880936026472807, -7.0, -4.6729471353465035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.630455612769106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.603865792191225, -2.872282676291554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0467578737546326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.656529406233498, -4.66305984454625, -7.0, -4.675732527603479, -7.0, -7.0, -7.0, -7.0, -4.193968239905537, -7.0, -3.7432047979332004, -7.0, -2.46013723174059, -7.0, -7.0, -7.0, -4.6909841851064815, -4.661140380936254, -4.662105900888295, -4.666527340248891, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659631011607001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3768870566640485, -7.0, -7.0, -7.0, -2.976436594866021, -7.0, -7.0, -3.859404233025727, -7.0, -7.0, -7.0, -4.655436189551822, -3.664970861964803, -4.658259494054264, -7.0, -7.0, -7.0, -4.656280318241814, -2.5585778133847756, -3.9635233936946834, -7.0, -7.0, -7.0, -4.062055247375354, -4.358401272531884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.356971855954572, -7.0, -3.731604879710846, -4.676089749249794, -2.3218407230624645, -7.0, -3.8855119905526943, -3.823963024361914, -7.0, -7.0, -7.0, -7.0, -4.059402468155198, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659193358577049, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7207012587514545, -7.0, -7.0, -2.8825950517530385, -2.4705769939872124, -2.1655466215325143, -4.658421634986483, -1.217931901429386, -3.894048239048872, -2.8648599400071073, -1.6180546047026807, -2.130418300968995, -7.0, -3.0462297460965346, -2.6245095125320517, -7.0, -0.5850697397728666, -2.6954066191149084, -2.8649541239714815, -1.9139805312038227, -2.809075037968811, -1.4943973409520923, -2.8237136038871316, -2.456151407732086, -1.9670038464124309, -2.419162729792661, -2.320941902387436, -2.0447937214805347, -2.486467376967633, -0.6105273838866435, -1.2922979507438739, -2.505940940259191, -2.504857425609683, -2.684201936106831, -0.8317798231285242, -2.266600329981704, -2.262795212964954, -2.480819371951067, -2.1743336224075307, -2.3157831192937968, -2.981973846330603, -2.6013628035857117, -3.887906519358385, -7.0, -2.8886191946371276, -3.1406617980802882, -7.0, -7.0, -2.739611120396931, -7.0, -3.1775473891428585, -4.707680864506185, -7.0, -4.151400498035618, -2.961851022585581, -7.0, -7.0, -7.0, -7.0, -7.0, -3.450900876048348, -4.780180448202641, -7.0, -7.0, -3.7155148088947807, -2.5745912864795972, -2.7125911868423653, -7.0, -7.0, -7.0, -3.0755570988671614, -7.0, -3.7240332524737676, -4.689850279440748, -3.9727349628407977, -7.0, -4.6943858028784335, -2.933629625037472, -3.691047471169451, -7.0, -3.9945107159839948, -4.684908168288119, -4.074018770866754, -7.0, -7.0, -3.568584306222322, -3.132601183145576, -7.0, -3.013897483044927, -7.0, -4.670755942215133, -3.7352972015395354, -3.7876887005649507, -7.0, -7.0, -7.0, -7.0, -1.793387832594586, -2.2418676805830136, -7.0, -4.186673867499745, -4.6578013573335815, -3.896838415155804, -3.2753272435580905, -3.4076646720454744, -7.0, -7.0, -3.384848171418199, -7.0, -3.001276047508862, -7.0, -4.660410083538616, -7.0, -3.2114822595695567, -4.668357956917772, -3.0646953435415623, -4.362199638868886, -3.513236630960425, -3.534624345371937, -4.1844358883083705, -7.0, -7.0, -7.0, -7.0, -3.7135409418501917, -7.0, -7.0, -3.269057396650046, -2.5355059169532805, -1.4606571321955282, -4.654975063241963, -7.0, -7.0, -7.0, -4.656500672601419, -7.0, -7.0, -4.07515445923309, -7.0, -7.0, -4.6893177403105595, -7.0, -3.4196427559764406, -4.057970231710706, -3.4664505419101532, -7.0, -7.0, -7.0, -4.362039283400967, -2.902193001921932, -7.0, -7.0, -7.0, -3.0429511919940255, -3.153789466263765, -4.359759616415701, -7.0, -3.3148499463011056, -7.0, -2.4168996802699305, -7.0, -3.6346970640915686, -4.356494336354738, -3.056170883335728, -2.7083473456160125, -7.0, -3.5233648829137834, -7.0, -7.0, -7.0, -3.1918234797380713, -7.0, -7.0, -3.911370707116138, -7.0, -7.0, -4.399699674559056, -4.661850530901924, -7.0, -7.0, -3.3393995873126787, -3.1262542976085608, -4.368203179826712, -4.367010957968254, -7.0, -7.0, -2.7011223473421095, -3.8309001419489586, -4.178861887156875, -2.5780052441433385, -2.650041256312705, -3.966198069990564, -3.284930006263787, -1.7819409234599481, -3.663546741039115, -7.0, -4.359825999824098, -7.0, -7.0, -7.0, -7.0, -2.8333201757088684, -7.0, -7.0, -7.0, -3.214829135925814, -7.0, -7.0, -4.354655766358007, -7.0, -7.0, -7.0, -4.055110637854146, -3.3976290339439115, -4.6727995541771605, -7.0, -7.0, -3.405507622803944, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7028420403429068, -4.093237771546323, -3.6035773681514667, -4.378670385207983, -7.0, -7.0, -3.4974641190598588, -7.0, -7.0, -1.7804520698080468, -7.0, -7.0, -4.666789329818256, -3.6002829916784354, -4.661812685537261, -7.0, -7.0, -7.0, -7.0, -3.5396226573571123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5009770535891995, -2.279007948555511, -7.0, -7.0, -7.0, -4.128341100382978, -3.714903366650505, -7.0, -7.0, -7.0, -4.805881293844513, -7.0, -3.420218655274665, -4.826172021926372, -7.0, -4.204560839154543, -2.4965860992984648, -7.0, -7.0, -7.0, -4.802589025376433, -7.0, -4.802753206957748, -3.766561552637531, -4.802308404843316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.811098897643041, -7.0, -3.041331151474711, -4.500428598023598, -7.0, -4.104159218143249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.810050963782019, -3.0772212348020416, -7.0, -7.0, -4.331434045411302, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8267284040809275, -7.0, -7.0, -7.0, -7.0, -4.8139677453372975, -7.0, -7.0, -4.80514729780041, -3.26743370009934, -7.0, -4.501613763802906, -7.0, -7.0, -4.801383126852731, -7.0, -7.0, -7.0, -4.105258050483448, -4.802842112739074, -4.027492310213354, -7.0, -7.0, -4.804990823476288, -2.867916010514917, -4.502863926138332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.513736844287251, -4.801849439205396, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8050860754309666, -7.0, -7.0, -4.803907564918058, -7.0, -3.918624375272506, -4.5011688495213615, -7.0, -7.0, -7.0, -7.0, -7.0, -3.977220446635385, -3.0030179697199246, -7.0, -7.0, -7.0, -3.0091182022183838, -7.0, -3.692704593194761, -3.6316196159084075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6037276129072717, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354697347829673, -4.340582908247528, -4.34104523285067, -4.504185316870708, -7.0, -4.0627198336125625, -7.0, -7.0, -7.0, -3.1635588985580028, -7.0, -7.0, -7.0, -7.0, -3.5739501918571133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8041326144720715, -7.0, -7.0, -7.0, -7.0, -4.802020751771976, -3.1854638683319636, -7.0, -7.0, -7.0, -7.0, -7.0, -4.80201390056662, -7.0, -4.112625107295181, -7.0, -3.355346451621734, -7.0, -7.0, -2.8583115705066877, -4.801952234854282, -7.0, -7.0, -4.804541496940634, -7.0, -3.9042149799590122, -7.0, -4.802643759466887, -4.803477600754047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8535096116017584, -7.0, -4.814593827514569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8595852430479183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7427251313046983, -2.5778275760908556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9921831989050203, -7.0, -7.0, -7.0, -7.0, -7.0, -4.802116657300177, -7.0, -4.802807920361628, -4.330332589222979, -4.8018425852969475, -4.816605821725513, -4.810662565790494, -7.0, -7.0, -7.0, -3.968102524143074, -4.804248503594015, -3.9293358908906413, -7.0, -2.7163631071361705, -7.0, -7.0, -7.0, -7.0, -4.806105323204325, -4.806797047853278, -4.809970248652032, -4.809532780808976, -7.0, -7.0, -7.0, -7.0, -4.202924027637802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517156294823795, -7.0, -7.0, -7.0, -3.0144659335044777, -7.0, -7.0, -3.6333611311829688, -7.0, -7.0, -7.0, -4.324878943111994, -3.9057891366123747, -4.20194306340165, -7.0, -7.0, -7.0, -7.0, -2.4389243543919146, -4.205028336126359, -7.0, -7.0, -7.0, -4.109254476760142, -4.804895550625822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.32672491280211, -7.0, -3.2238399127102326, -4.81686411550272, -2.181047732071891, -4.802958346690387, -3.4652746699851855, -3.3014552187546453, -7.0, -7.0, -7.0, -7.0, -3.8520256716529677, -4.51731468566477, -7.0, -7.0, -7.0, -7.0, -4.804711751085301, -7.0, -7.0, -7.0, -7.0, -7.0, -3.639864837955078, -7.0, -7.0, -2.7955053743286897, -2.645513917019889, -2.443595160256843, -4.80415988528302, -1.1158241306554086, -3.814001070318085, -2.968968851039916, -1.9892637435437004, -2.2212418109995706, -7.0, -3.1043929144826357, -2.8085052866303437, -0.5850697397728666, -7.0, -2.7662541717427485, -3.15777478116927, -1.8470303083432993, -2.839014481702124, -1.833317997418344, -2.862345583352883, -2.7432524631136483, -2.0808367528530765, -2.719646613671655, -2.419173400790585, -2.168099365491275, -2.4096843767942002, -0.7765305929618449, -1.525750993485581, -2.590605436252191, -2.5837941584262274, -2.800209581421612, -1.2671336945344718, -2.2005769267548483, -2.515521733423875, -2.786405888859511, -2.3911039883571332, -2.6626112046901063, -3.0014486357757595, -2.643846314201172, -3.9556516778452013, -7.0, -2.8832972577942737, -2.569646790072784, -4.835944100093848, -7.0, -2.714370798675753, -7.0, -2.945064720281746, -4.3627902422598535, -4.811092188164497, -3.83268306006481, -2.6434413311320966, -4.833497722133357, -4.809303775819338, -3.7560589473513573, -4.809721282524744, -7.0, -3.7067834105169974, -4.116336501942694, -7.0, -7.0, -2.8711666731384202, -2.4188093285612, -2.3952086266982553, -7.0, -7.0, -7.0, -3.052417893995362, -4.530077976203537, -3.5055598235459433, -4.525815481690079, -3.8721621021653023, -7.0, -4.353024554282955, -2.6896603915706647, -3.5519006071983443, -7.0, -4.051345499336539, -4.045042487886878, -3.3973736557725545, -7.0, -7.0, -3.2077227048870984, -3.1592619692400405, -7.0, -2.600269964081599, -4.808346035740395, -4.335865591694248, -3.8723893884178207, -3.8240370362712772, -7.0, -7.0, -7.0, -7.0, -1.9802756676681168, -2.3232310470421824, -7.0, -3.962856197781499, -4.5026728775022065, -3.5606371457834687, -3.293995271707848, -3.464916126290365, -7.0, -7.0, -3.7256415271680376, -7.0, -3.093504086164646, -4.204554060135243, -4.504538821884575, -4.512517635672204, -3.5354840032266903, -4.334138639319558, -3.1365356092018986, -4.506572674252514, -3.628729419665481, -3.497929599454888, -4.028211902948119, -4.205461507107036, -7.0, -7.0, -7.0, -3.698088112165083, -4.803648272401481, -7.0, -3.2938936063940814, -2.6412618772743763, -1.575071049300453, -4.801698628227434, -7.0, -7.0, -7.0, -4.501743729627995, -7.0, -7.0, -3.817598419632618, -7.0, -4.804561930962418, -4.826470025252119, -7.0, -3.3858359982701076, -4.027132066235224, -3.4905938285395868, -7.0, -4.806573375125132, -7.0, -4.330352886677328, -3.0126572169237327, -4.803436629576479, -7.0, -7.0, -3.1711216273491813, -3.297660482139467, -4.805867712592634, -7.0, -3.286456469746983, -7.0, -2.296868235981207, -4.804303028952768, -3.4742957493856745, -4.502488572402794, -3.079570297920983, -2.8894174177364684, -4.802287864512625, -3.6577949909195624, -7.0, -4.8029651830129545, -7.0, -3.243413492394054, -7.0, -4.801993346302042, -3.872337595748262, -7.0, -7.0, -4.135812990145166, -4.806614051463206, -7.0, -7.0, -3.3436499602697234, -3.2620211364576672, -4.811930070679321, -4.112048372722411, -7.0, -7.0, -2.685256430754045, -3.5155957002684515, -4.501401630766742, -2.5501006203716683, -2.747854787410412, -3.767520156176435, -3.426716040549097, -2.0158562649538196, -3.992868978354398, -4.802233085547551, -4.504871669262045, -7.0, -7.0, -7.0, -7.0, -2.9434219625521845, -7.0, -7.0, -7.0, -3.155009715988005, -7.0, -4.804214421768175, -7.0, -4.8024795364967785, -7.0, -7.0, -3.900121231991279, -3.402009928252042, -4.337339439388419, -7.0, -7.0, -3.6297968252555064, -7.0, -7.0, -7.0, -7.0, -7.0, -4.502270035398499, -4.05266188475707, -3.6455663552275963, -3.9743142711950683, -4.5014084753854915, -7.0, -3.6689181403863924, -7.0, -7.0, -2.0144795598484855, -7.0, -7.0, -4.208058223605032, -3.6431762192974477, -4.806586934327803, -7.0, -7.0, -7.0, -7.0, -3.5685471963453623, -7.0, -7.0, -7.0, -7.0, -4.089993373706118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7364151785299615, -7.0, -7.0, -7.0, -7.0, -3.3789275745695604, -4.392309959892819, -4.3979400086720375, -7.0, -7.0, -7.0, -2.5944060266909417, -4.451771089158385, -7.0, -3.4495469620768637, -2.8429799822823734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5783526415103615, -7.0, -7.0, -7.0, -4.092808336654493, -4.3964260280181024, -7.0, -7.0, -7.0, -3.9380023999433105, -4.090434416175122, -3.5175540478934977, -7.0, -7.0, -3.5499136595638374, -4.391146906415991, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5092529405903825, -2.924574624041236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.398426146305484, -4.40725490056078, -7.0, -7.0, -7.0, -3.0395752145302946, -7.0, -7.0, -4.391887391645515, -7.0, -7.0, -7.0, -7.0, -7.0, -4.612423560664503, -7.0, -4.393873404149383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.398026858883687, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7083981345910604, -7.0, -4.391957848245589, -7.0, -7.0, -7.0, -4.090628333058493, -7.0, -7.0, -7.0, -4.4242934715668065, -7.0, -7.0, -7.0, -3.922552466761376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.584647295942839, -4.0916669575956846, -7.0, -7.0, -7.0, -4.404953387586245, -7.0, -4.442777558468063, -2.867549978297747, -4.39174644414508, -7.0, -4.3947842790470375, -2.9773819838616995, -7.0, -7.0, -3.6288655408018107, -7.0, -7.0, -4.091895473508298, -4.3943641126271284, -7.0, -7.0, -2.9232051480529364, -4.390546539888802, -7.0, -7.0, -7.0, -7.0, -3.2341598394744815, -3.95432292689755, -4.432632622254583, -3.7013261633598793, -7.0, -3.883803338269372, -7.0, -7.0, -7.0, -3.254048322829027, -4.404816618075401, -7.0, -7.0, -7.0, -4.082833223821198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4671089777077575, -7.0, -7.0, -7.0, -7.0, -7.0, -4.392221958741192, -7.0, -3.302214337325348, -7.0, -3.220493466955287, -7.0, -4.403583750366688, -2.3397805350094547, -3.6137361412618714, -3.167004404880978, -3.795167189715199, -3.3983740861513563, -3.001975881244265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.411485020124997, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0428707165856252, -7.0, -3.4983794839511457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0234829244540182, -3.3942239667723677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.098158983460533, -3.924606606934837, -3.596659918493907, -2.840972784367111, -7.0, -4.39137623916965, -7.0, -4.097899077321453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0978941621746445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.093193971108387, -4.4061312402136235, -7.0, -2.9507055347738613, -3.7149999674120426, -7.0, -7.0, -7.0, -3.575303333422399, -4.3979400086720375, -2.638608449924449, -7.0, -2.5773667285287103, -7.0, -7.0, -7.0, -2.7294857138983044, -7.0, -3.9272163305912646, -3.9351880613401717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.391517306849448, -7.0, -7.0, -3.3183202379468297, -3.9246582666341787, -7.0, -7.0, -2.354912894977539, -7.0, -7.0, -3.302027726021775, -7.0, -7.0, -4.396652590685603, -7.0, -3.205255127948347, -3.6190933306267428, -4.407832623263632, -4.395186557446505, -7.0, -4.393803257655081, -2.5486213518850827, -4.4052438798633045, -7.0, -7.0, -7.0, -3.930949031167523, -3.922396715715211, -7.0, -7.0, -4.0948552900836805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6780238421039844, -4.128334636753716, -2.6734979339537297, -7.0, -7.0, -3.2553602325012214, -3.803303446549009, -7.0, -7.0, -4.392732117381129, -4.4033436191304505, -3.733935179300555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9298785236567833, -7.0, -3.0289126983633317, -7.0, -7.0, -1.6734325831718475, -2.3016148599756447, -3.9339931638312424, -3.4431934252142176, -3.1903316981702914, -2.7134575995695465, -2.4831711067291815, -2.859959044875594, -1.5462364444869212, -4.391146906415991, -1.9857140145065368, -2.6472281288748, -2.6954066191149084, -2.7662541717427485, -7.0, -2.964119146768021, -2.9244397100550508, -1.019155129159485, -2.5071172538023325, -2.337614386939072, -3.4689914454459165, -2.924305280564163, -2.5974072058672815, -1.8597919065431519, -2.687878300113581, -4.286422784794196, -2.3983412166786438, -2.4209387490986507, -4.413199143665641, -1.677122166906849, -2.0107939376664237, -3.0169289290369714, -3.3637999454791094, -2.6494123095453936, -2.602902048623008, -3.276910698188711, -3.4376895963737515, -2.560074836702499, -2.5728626696840635, -2.9334094084470976, -7.0, -2.674345246591718, -2.5970974632045323, -2.6032029107631343, -3.9222755373836495, -3.1364644505475163, -4.404097870640489, -2.2127957562079024, -4.483687123306974, -4.415173745335861, -2.4147311988249274, -2.6113463608656016, -3.565626484523529, -7.0, -3.1504640348791213, -7.0, -7.0, -7.0, -2.716607331253602, -3.7260911906333236, -7.0, -2.8133770987925284, -2.112532898581015, -3.288585800358648, -7.0, -4.419972261273999, -7.0, -1.7994092050146753, -4.1623403316284255, -4.349898891403912, -2.2335377888069625, -4.0767496406240005, -7.0, -3.256612526235748, -3.2821183785735992, -3.1444536790632514, -3.7143800612122204, -3.7606636911394395, -2.841562802829042, -2.485011214578573, -4.432391984779924, -7.0, -2.548146339077636, -1.5520219332595657, -7.0, -3.0796075759467434, -7.0, -3.8177801500889426, -3.4986168263565274, -3.36337377330266, -3.792444221943763, -7.0, -7.0, -3.4945719842301988, -2.556423121371285, -1.9223833109680446, -7.0, -2.944176243511598, -3.6974734557764086, -2.4753609954591043, -1.893256289727396, -2.7058466137393826, -7.0, -7.0, -2.094307274845359, -3.492708019171449, -1.5343616725084905, -3.5587428465666395, -3.4980002326031903, -2.431347181387955, -1.948264737345508, -2.681492492506635, -2.4170119131533196, -3.201840752085797, -3.0567316531360103, -2.3775043562510274, -3.256906648066348, -2.8252894289691803, -3.6995949385452396, -3.917558020825436, -4.3915878235099495, -1.8837400773686257, -3.69729910333844, -4.0906988268267614, -1.820592172832555, -1.3603581917080152, -1.791597655058112, -7.0, -2.163118526130661, -7.0, -2.6381845601587646, -7.0, -7.0, -4.091614206074446, -2.9992755720056676, -3.3942590074761068, -3.194097885578952, -2.1796294144440775, -7.0, -2.2382851204611374, -3.1961070683879766, -2.5543978789552284, -7.0, -2.9257245269360626, -3.791164125033335, -2.6884369360445195, -1.9900008485916754, -3.617541997119941, -4.3926442017384275, -7.0, -2.916268114365702, -1.9772489428837123, -3.1710550105433617, -3.2538915993869204, -2.088675910869215, -4.397261980280511, -1.5575024593102262, -4.097014231178033, -2.3540432933463484, -3.6177863946963984, -3.6203963453512844, -2.9018302967482485, -7.0, -2.352479370126955, -3.038844688341721, -3.9174704985096076, -3.7945577512547617, -2.7348664749479745, -7.0, -7.0, -2.287183736966603, -3.4466579602153113, -3.3202155460556875, -2.3679620131222126, -2.759015054316643, -2.3689252622290744, -3.226943424688905, -2.1686218349748922, -2.121441287898854, -2.6089770751029318, -2.2835543583265596, -3.913884463632048, -7.0, -2.3697967307610486, -2.4262183798325783, -7.0, -2.794305433965554, -1.5244718860824604, -2.7959308586000873, -1.5337102405281544, -2.2611721081987155, -1.9790193923221266, -3.5474758163938844, -2.767259442157535, -7.0, -4.39137623916965, -4.09572712255598, -7.0, -2.454973164446654, -4.3915701954182165, -4.39292546917228, -7.0, -1.8454921471858483, -7.0, -2.828398593415644, -4.091684540012315, -3.438893790829892, -2.87862623087069, -3.439262499150636, -3.617210094557434, -2.3226099351757314, -2.3825952979193326, -3.554714079964416, -7.0, -2.799185416577525, -4.0897108712889345, -7.0, -7.0, -3.4920091503206274, -7.0, -4.094488597899382, -3.140013939525097, -2.3268120088570554, -3.532467726469376, -3.5480382602549603, -7.0, -2.905812228431408, -7.0, -4.3907761898062825, -2.4060360075402034, -7.0, -7.0, -3.0899555492168083, -2.317613388741308, -3.7047680460278367, -7.0, -7.0, -7.0, -7.0, -2.3121930335260323, -4.390917452497312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.949457775152798, -7.0, -7.0, -7.0, -4.355987591676388, -3.661699129651687, -7.0, -7.0, -7.0, -7.0, -7.0, -3.470443160662778, -7.0, -7.0, -7.0, -3.1949488814069302, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040103683227775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40256227437282, -7.0, -3.0486683441400135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.302590648306554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2115358218543153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.546308179871572, -7.0, -3.977266212427293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2884728005997825, -7.0, -7.0, -7.0, -4.014167583607013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.479100018108288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040048241547462, -3.891593204348965, -7.0, -7.0, -7.0, -3.563059639055887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188397198393092, -7.0, -7.0, -7.0, -7.0, -7.0, -4.369123049528199, -7.0, -7.0, -4.2868829198267875, -7.0, -4.0939292328222185, -7.0, -7.0, -7.0, -4.325659309801641, -7.0, -7.0, -7.0, -7.0, -4.484627216681783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.159133885693975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5666394818031004, -7.0, -4.290969008948517, -3.8618130982567225, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9929288899577164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0389974726186795, -3.3900814326936954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.753077236473406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.166218603352615, -7.0, -7.0, -7.0, -3.0755035123922543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4555626483622643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2796669440484556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.563699534230925, -3.8159096508867747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.282395504742525, -7.0, -4.13951702345246, -7.0, -2.6960118329538734, -4.279347492410732, -7.0, -3.6883470019945825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6980860398874245, -2.1262302051431767, -2.6187765029283483, -7.0, -3.2418815732989663, -7.0, -2.7182432681376736, -1.6685292718594495, -2.626664467749713, -7.0, -2.350173442137207, -1.524095582761675, -2.8649541239714815, -3.15777478116927, -2.964119146768021, -7.0, -2.1613475571506147, -2.6018950380505843, -3.07391682215682, -2.6304868323618735, -2.1568270934567235, -1.0811420100434221, -3.512183922360945, -1.9306385248238294, -2.516880120476239, -2.21079991039675, -2.9836907081706965, -2.283760884003622, -3.5250231998087056, -2.3818526137441314, -1.06325296821847, -2.907564903106715, -2.330328187240235, -2.3648375122504968, -2.6941838605722133, -2.341422311057268, -2.1637634223580404, -2.5378937646885324, -1.9378727145318462, -4.142154733486203, -7.0, -2.894986523001123, -4.110858956731867, -7.0, -7.0, -2.8110793523514945, -7.0, -3.552278757969826, -7.0, -7.0, -3.7830598861333127, -3.334118518033627, -7.0, -7.0, -4.379305517750582, -7.0, -7.0, -3.7343396976581213, -2.6366421750341718, -7.0, -7.0, -4.313919922812262, -2.9844395836343924, -1.7309884791846206, -7.0, -7.0, -7.0, -3.628074956706411, -7.0, -4.247658268207367, -4.053424204069344, -4.477381753267053, -7.0, -4.364250731245976, -3.855958073963892, -4.2730707536224655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292802288802934, -3.294363860431569, -7.0, -3.374191200992188, -7.0, -7.0, -4.053059226488266, -3.983325529161058, -7.0, -7.0, -7.0, -7.0, -2.541220482974948, -3.3065016159437794, -7.0, -7.0, -4.281873856870123, -4.020796188104522, -3.9758605296515843, -7.0, -7.0, -7.0, -4.090575455222202, -4.281169773409736, -3.4846485588079306, -7.0, -7.0, -7.0, -4.082156803810918, -7.0, -7.0, -3.5955623530058514, -3.683969609180228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.103478733439318, -7.0, -7.0, -3.124839199383788, -3.3966665291438467, -2.322088535059173, -7.0, -4.019614715691417, -7.0, -3.99947853367931, -7.0, -7.0, -7.0, -2.437173810435618, -7.0, -7.0, -7.0, -7.0, -4.373445342297979, -7.0, -3.613122686057697, -7.0, -7.0, -7.0, -7.0, -2.600842261159698, -4.280942405998698, -7.0, -7.0, -3.202040480346924, -3.796227314029439, -3.51061202578917, -4.286927784959255, -3.4120123012470613, -7.0, -3.0424317425409426, -7.0, -4.023478810083077, -7.0, -3.807444822547311, -3.653051634172873, -7.0, -3.7733658384643807, -7.0, -7.0, -7.0, -4.309140245453068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7635777244666455, -4.007534417897258, -4.305867056602291, -7.0, -7.0, -3.7255616300072774, -3.119441480806942, -4.27763213161403, -3.708548365130561, -4.1157990532759525, -3.9982811398083022, -3.7429920657525093, -3.178378301427545, -4.085807712290026, -7.0, -4.289142835932333, -7.0, -7.0, -7.0, -7.0, -3.4287825114969546, -7.0, -7.0, -7.0, -3.3109188957449325, -7.0, -7.0, -7.0, -4.277746700027364, -7.0, -7.0, -7.0, -4.325536187192074, -4.316704039700037, -7.0, -7.0, -4.289678120899732, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.366310866766735, -3.5610814979153176, -7.0, -7.0, -7.0, -4.017930232863559, -7.0, -7.0, -3.1766468005217803, -7.0, -7.0, -7.0, -3.5537819221196365, -7.0, -7.0, -7.0, -7.0, -7.0, -3.567731962548069, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4883689390699706, -7.0, -7.0, -7.0, -3.97283514522388, -3.4122161068666275, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0432267304289233, -7.0, -7.0, -4.3989290729854345, -2.9144218415753604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6664315738532856, -7.0, -7.0, -7.0, -7.0, -4.090134556033146, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1981829145283434, -7.0, -7.0, -3.9127886970523704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1424192643611137, -4.3867485908293835, -7.0, -7.0, -7.0, -4.38635625808797, -4.386588133907789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4275485247671114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.910197369966001, -7.0, -3.4852776801653578, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.392820015230385, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9707963815537974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.118330874057302, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.394889257167419, -7.0, -7.0, -4.090786927949267, -7.0, -3.4052975630428595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.333328711983892, -7.0, -7.0, -7.0, -3.4975156883526086, -7.0, -4.09824558428674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3178936555380973, -7.0, -7.0, -7.0, -7.0, -7.0, -4.15956719323362, -7.0, -7.0, -7.0, -7.0, -3.0337682969424686, -7.0, -7.0, -4.3926442017384275, -2.919601023784111, -4.399691023705375, -7.0, -7.0, -7.0, -4.079253622430078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0631764626789213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4112660665121393, -7.0, -3.2647345104508063, -7.0, -7.0, -2.7890101881385543, -7.0, -3.6144753660903954, -3.9149246482051483, -3.351743615110992, -7.0, -4.400814192267559, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.510182947257836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.115627150990863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.394031192348731, -7.0, -3.835087847232495, -3.0440475554523125, -7.0, -7.0, -7.0, -4.092703104165027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.587336734507256, -7.0, -7.0, -7.0, -7.0, -7.0, -4.387211800313731, -7.0, -7.0, -7.0, -7.0, -4.122854558785159, -7.0, -7.0, -7.0, -7.0, -3.7165542140372105, -7.0, -3.420510834177029, -7.0, -2.3736380105588673, -7.0, -7.0, -7.0, -4.450787792072898, -4.39750549689802, -7.0, -4.407339907995509, -4.406233511374323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.126780577012009, -7.0, -7.0, -7.0, -3.0769302271770527, -7.0, -7.0, -4.474201690191393, -7.0, -7.0, -7.0, -7.0, -3.228246326255246, -4.392204356370863, -7.0, -7.0, -7.0, -4.388545220095957, -1.9435533693981495, -7.0, -7.0, -7.0, -7.0, -4.403051852588134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3870515144724935, -3.741099049455883, -7.0, -2.687264596421026, -4.389396465218475, -3.8001325865508604, -3.658040764690793, -7.0, -7.0, -7.0, -7.0, -4.398200507219428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.94558346265713, -7.0, -7.0, -2.8712876105538077, -2.533213285085639, -1.541695519187481, -7.0, -1.674344029296868, -3.1384024289877326, -1.7100584417711244, -1.2261354849433992, -2.607856961681029, -7.0, -2.7774768217540804, -2.2986184244854564, -1.9139805312038227, -1.8470303083432993, -2.9244397100550508, -2.1613475571506147, -7.0, -2.7231334787020036, -2.7444340690293507, -2.515988671209838, -2.595985843615769, -1.9954555630977564, -2.8345727312834774, -2.4309164433481816, -2.7904671640422904, -2.3902854006591365, -1.6488737217779532, -2.109662900499272, -3.709066337709506, -2.5264445396360236, -2.43995535374684, -1.9497756399458581, -1.891836055588394, -2.40444240490541, -2.5396095858813386, -2.2796987702089755, -2.2250979492320373, -2.534026106056135, -2.091780526547107, -3.567130971321703, -7.0, -3.1641757589822834, -2.8885932766328066, -3.8680563618230415, -4.394276526767821, -2.683306160151271, -7.0, -3.0542225383825152, -4.479416937274596, -7.0, -3.407876285333665, -3.2162921490146195, -4.4645044509010345, -4.405653656099307, -3.8667450273840727, -4.4067104586097905, -7.0, -7.0, -3.233580959426479, -4.42030238517869, -7.0, -3.0774890305065017, -2.5102819608455094, -2.623890979325472, -7.0, -7.0, -7.0, -3.6083923016340576, -3.613645537405791, -3.0557604646877348, -4.4488144936695235, -3.772015930126536, -7.0, -3.757593390524166, -3.931915317081246, -3.052886235256382, -7.0, -4.455240877870955, -3.7410727723733213, -3.8065756350216424, -3.3132505321629835, -7.0, -3.6623462708433094, -2.969272509849161, -7.0, -3.062413394164839, -7.0, -4.414990051283522, -4.448520816457295, -3.6908160579809155, -7.0, -7.0, -7.0, -7.0, -1.941180036600083, -2.429687696095396, -7.0, -4.402433346219312, -4.391358602487403, -3.8205954965444904, -3.4881531577034988, -3.254806940132614, -7.0, -7.0, -3.6336848274923423, -7.0, -2.772635995349761, -4.097847077423337, -4.396164462603818, -4.416357541374134, -2.3715259398882167, -3.9334704151634567, -3.9511431601075526, -4.4013660715976775, -3.7925317619013077, -3.2022959527507755, -4.398339375914612, -4.401228167498113, -7.0, -4.389502753638463, -7.0, -4.188478495913935, -4.391182196261369, -7.0, -3.05588235138324, -1.8772018661195997, -1.6892501029585778, -4.3861242584003115, -4.421817731364133, -7.0, -4.405943680512197, -7.0, -7.0, -7.0, -3.523339938201984, -7.0, -7.0, -7.0, -7.0, -2.8294084996129136, -4.39557099712082, -3.9379690029514527, -7.0, -4.3987036951130785, -7.0, -3.6227492192709927, -2.360489612854706, -7.0, -4.38737202701981, -7.0, -3.0632082200712114, -3.161695916932489, -7.0, -7.0, -3.2539737133906796, -7.0, -2.0813564630850223, -7.0, -3.82272367309186, -7.0, -3.5482138746859433, -3.1687250976725663, -7.0, -3.2612628687924934, -7.0, -7.0, -4.391499675895142, -3.4581844355702627, -7.0, -7.0, -3.334082400566609, -7.0, -7.0, -4.467622902417825, -7.0, -7.0, -7.0, -3.468657430019694, -3.0421664366887087, -4.4122757019358305, -7.0, -7.0, -7.0, -2.851166586670228, -3.7254869263323838, -7.0, -3.05148807933632, -2.8424922264125208, -3.2584320234141178, -3.4789860278193347, -3.188114548770146, -3.5205854165951167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2263259684529233, -7.0, -7.0, -7.0, -3.220449201670816, -7.0, -4.3926442017384275, -7.0, -7.0, -7.0, -7.0, -3.9131071077494677, -3.4711612727092858, -3.7195632907571934, -7.0, -7.0, -4.096371153688629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.458350742139663, -3.2057773538923087, -7.0, -7.0, -7.0, -3.575187844927661, -7.0, -7.0, -3.202417674636456, -7.0, -7.0, -4.407815642384198, -3.226309849143952, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1627372975844534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.651268319816693, -2.5425202730917387, -7.0, -7.0, -7.0, -7.0, -3.785756799962643, -7.0, -4.654417214913714, -7.0, -7.0, -7.0, -3.0663342093933186, -7.0, -7.0, -3.481461738950127, -2.86589928955951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.429736134926033, -7.0, -7.0, -7.0, -4.351119609737672, -4.352529814796726, -7.0, -7.0, -7.0, -4.664058764701992, -3.951813330302852, -3.8668319172660026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.548417768495678, -2.931168431656111, -7.0, -7.0, -4.660523976930213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.651471852199043, -7.0, -7.0, -3.595921175236594, -7.0, -7.0, -4.65107439073182, -7.0, -4.668078260148475, -7.0, -7.0, -7.0, -4.78597723416667, -7.0, -4.175009000975738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.353416091053356, -7.0, -7.0, -4.6522366684127165, -7.0, -7.0, -3.173152635632317, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9519200735202937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.655416985727724, -7.0, -7.0, -7.0, -7.0, -4.3545501955078825, -7.0, -7.0, -7.0, -7.0, -3.203957091681244, -4.651539675135214, -4.652256013378507, -7.0, -7.0, -4.357267654644208, -7.0, -7.0, -3.224502594352818, -4.650996794844283, -7.0, -7.0, -2.535576378609283, -7.0, -4.180871051650544, -3.960518342780708, -7.0, -7.0, -3.952618109269662, -4.65243974758942, -7.0, -7.0, -2.566433428221703, -4.650336669434548, -7.0, -7.0, -4.650433809651895, -7.0, -3.6135158906856466, -4.071219018399975, -4.372930404888793, -4.35475171759385, -7.0, -3.7509795462660587, -7.0, -7.0, -7.0, -3.4964591381210437, -7.0, -7.0, -7.0, -7.0, -3.429005904106777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2845202514129914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.363442741279142, -7.0, -3.509362160076662, -7.0, -7.0, -2.2137294343074028, -4.049053192149191, -3.375355528567644, -4.353030975765281, -3.5084527607498646, -3.7015775783778904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5895679839722483, -7.0, -3.5771182378818316, -7.0, -7.0, -7.0, -7.0, -4.652816642878804, -7.0, -7.0, -7.0, -3.0545009496306323, -3.6981392252174574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.655128826420096, -4.656558137964639, -3.5999649037760753, -2.9001912510847543, -7.0, -7.0, -7.0, -4.353935455571521, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8615739051907794, -7.0, -7.0, -7.0, -7.0, -4.6512780139981444, -7.0, -7.0, -7.0, -7.0, -7.0, -4.069649600159877, -3.8182353223974452, -7.0, -7.0, -7.0, -3.3243011664190374, -4.353367970314268, -3.0803272587424058, -7.0, -2.6639134136854725, -7.0, -7.0, -7.0, -3.841949095456571, -4.657036720520181, -4.658011396657113, -4.6624745037503095, -4.66185999172781, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3949030681890893, -4.6565868677950935, -7.0, -7.0, -2.8417901249167743, -7.0, -7.0, -3.5245605472800365, -4.650637733412055, -7.0, -7.0, -4.350228629754866, -3.229217148268312, -4.0520106121467645, -7.0, -4.652893914321198, -7.0, -4.050012210075463, -2.3306564089493405, -7.0, -7.0, -7.0, -7.0, -4.359047728111032, -4.655330558009341, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.653887558070977, -7.0, -3.5239008479609306, -3.9730816496013674, -2.354808681214491, -7.0, -4.358629543218151, -3.438214888275288, -7.0, -7.0, -7.0, -7.0, -4.657419207208257, -7.0, -7.0, -7.0, -7.0, -7.0, -4.655071171607829, -7.0, -7.0, -7.0, -4.659497859540902, -7.0, -3.2082003443615728, -7.0, -7.0, -1.8357841033689075, -2.0153615186155944, -3.7997884000675555, -3.5401176191224257, -3.2846867533932405, -2.541973161871005, -2.915584489837296, -3.077943992402701, -1.7386774334906772, -4.650666857562813, -2.356787290504102, -2.751422464410734, -2.809075037968811, -2.839014481702124, -1.019155129159485, -2.6018950380505843, -2.7231334787020036, -7.0, -2.6925344800721915, -2.5659504281203986, -3.2575710014738584, -2.2123857790043826, -2.7745589123632373, -2.065363643234313, -2.809954243007838, -3.426673888021373, -2.9414612373659264, -2.8736800724992526, -4.66293717714878, -1.96691887785885, -2.321732417461062, -3.024222455723751, -2.976871764227438, -2.9046132121511077, -2.9640109253001876, -3.0577787686700186, -3.214360683794701, -2.029688248483908, -2.5862078866547544, -3.386863629502398, -4.6596215020988625, -2.858483962811246, -2.1997470131327894, -2.86485122194783, -7.0, -3.445105801862532, -7.0, -3.246345363478317, -4.402948829344405, -7.0, -2.7151131180137207, -2.8725223278596834, -3.740783619483002, -7.0, -3.493370904515132, -7.0, -7.0, -7.0, -2.6046638058499907, -3.4933743907101054, -7.0, -2.559639953262714, -2.195629541422008, -2.416572585148292, -7.0, -7.0, -4.652101229519464, -2.070410425073812, -7.0, -2.9293694776072994, -2.3663372223585455, -3.5432762866884153, -4.651471852199043, -2.3816600539542963, -3.180532059343106, -3.1784013415337555, -4.362048717714715, -3.78652960566293, -4.379975935132622, -2.292733285312222, -4.372792371489067, -7.0, -2.517474255510426, -1.8786372226067107, -7.0, -2.4202208779093466, -4.660191704349621, -3.8215322435577312, -2.8094519693064504, -2.918078016916882, -3.953527748437723, -7.0, -7.0, -3.809184414431453, -2.8200468375055814, -2.1964995291548655, -7.0, -3.3169324704744563, -3.5072871015801907, -2.58609420577366, -2.138534043739593, -3.114458473109267, -4.65275868027325, -7.0, -2.379986070579087, -3.808153075999404, -1.5537955387832671, -3.75458720843136, -3.6147151038234466, -2.547802879191111, -1.944828705873858, -3.083841956595991, -2.7135643854323326, -3.0902771226811176, -3.5413199722505695, -2.4065217679829454, -3.481136746915929, -3.403492287455705, -4.177680759848778, -4.175492485186052, -7.0, -2.255024314814158, -7.0, -4.04888829904528, -2.037032065055308, -1.2598672111551346, -1.926156913205765, -7.0, -2.668739918089131, -7.0, -2.9283010012108646, -7.0, -7.0, -4.17435059747938, -3.210401556278205, -3.953508414237079, -3.4504511930355624, -2.654185541400976, -4.650928887067893, -2.4060103914302835, -3.5417999830005087, -3.0127997435208993, -7.0, -3.295547978155418, -4.174708970233648, -2.851621383349694, -2.0334103511294153, -3.6530966864691754, -7.0, -7.0, -3.220405695184753, -2.148243082243774, -3.1245905227942092, -3.701424059791345, -2.3413988733390205, -4.352992445447028, -1.5790475932029566, -3.7000977046130537, -2.6210371101014225, -3.6118198286171186, -3.6546769920742537, -3.120837060254737, -7.0, -2.5632612896096174, -3.178622080587683, -4.652604075494435, -3.6993462298794717, -2.974361284464857, -7.0, -7.0, -2.4787918806639824, -3.8779661253552415, -4.178276526334763, -2.615739688619155, -3.242302466202193, -2.9329992492179184, -3.5781232505202647, -2.320744609167914, -2.527372082827612, -2.9082968496894392, -2.7228796657889593, -4.650628024927767, -4.650647441679319, -2.521193450160244, -2.360899198300868, -4.350819592367575, -2.9932016415641796, -1.5817755344763664, -2.8210385989122053, -2.0011505154097025, -2.393819419861694, -2.3414563143680662, -4.174408732073123, -3.076276255404218, -7.0, -4.349743633744951, -4.176621739306073, -4.3570959250957335, -2.4714393298509454, -7.0, -4.1744862327616, -7.0, -2.1105220719631896, -7.0, -3.1914317403283383, -7.0, -4.049799277918987, -3.2924390761642086, -3.7488951184201675, -3.807873132003332, -2.6753060861382254, -2.7588278164163147, -4.178410941217267, -7.0, -3.124887640134107, -4.04834467854007, -7.0, -7.0, -3.87473300575909, -7.0, -4.653096686469175, -3.06758446824051, -2.2395294860605826, -3.976744196285903, -4.049760551762476, -4.650414383346564, -3.035578650851512, -4.650996794844283, -4.650462947480702, -2.583081929290774, -7.0, -7.0, -3.5163653623524644, -2.242676758047947, -3.9586689802800628, -7.0, -7.0, -7.0, -7.0, -2.2393999584530446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9016320265580866, -7.0, -7.0, -7.0, -4.134081437462512, -4.142107771731307, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2889692223054343, -7.0, -7.0, -7.0, -3.3271187286686343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058407042640009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.892817824309576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8639173769578603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.416640507338281, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.629073043426928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3233758719338615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8079069279242788, -3.8669761488747474, -7.0, -7.0, -7.0, -3.806641166905534, -7.0, -4.0216440360874435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9714382148239724, -7.0, -7.0, -7.0, -7.0, -7.0, -4.155761012877924, -4.084325995016827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6050175766737853, -7.0, -7.0, -7.0, -7.0, -4.030194785356751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0214993986774745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.050341081834084, -7.0, -3.6214878645806303, -7.0, -7.0, -3.575026109423261, -7.0, -7.0, -7.0, -4.007619774517403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.250541978010273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.461085645778676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.027281637748496, -3.1241953803612605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0794978037097187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9904276584852636, -7.0, -7.0, -7.0, -7.0, -7.0, -3.582404298019028, -7.0, -7.0, -7.0, -2.968164434068149, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.785756799962643, -7.0, -7.0, -7.0, -3.166943531213748, -7.0, -7.0, -4.182728418124268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1655636472734026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.789909598573103, -4.0796153235269434, -3.0256797214930673, -7.0, -3.5514499979728753, -4.172272025329505, -4.024116072826771, -7.0, -7.0, -7.0, -4.018991594705612, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008685319195168, -7.0, -7.0, -7.0, -7.0, -7.0, -4.075656433597934, -7.0, -7.0, -3.1632210267155783, -2.860371284566635, -3.4068806700491248, -4.005223424858136, -1.7401646189215598, -4.064420548433594, -2.087028677751426, -2.319169559153719, -2.3920370982602477, -7.0, -2.4784157250726615, -3.038814169209334, -1.4943973409520923, -1.833317997418344, -2.5071172538023325, -3.07391682215682, -2.7444340690293507, -2.6925344800721915, -7.0, -2.991634283960961, -2.8278661207020015, -2.7423595527399964, -2.285246821429292, -2.566970612326016, -2.396486524640049, -3.120921081780979, -1.6727723848149636, -1.728138849772079, -3.565217949843888, -2.8334658601706924, -2.0747389401070246, -1.4864562142914062, -2.744814345108343, -1.7289777684531455, -1.5899061015528484, -2.6480508524599364, -2.8850469465668223, -2.7859865304210274, -2.4795573161627673, -4.271051261492347, -7.0, -3.62875107815486, -3.994800899294604, -4.174873528887417, -7.0, -2.6436836227728864, -7.0, -3.647686087933524, -7.0, -7.0, -3.7255441224863532, -2.649858871767756, -7.0, -7.0, -3.695043658821294, -7.0, -7.0, -3.4018828223212823, -3.69637386502081, -7.0, -7.0, -4.205799621570576, -3.194568182694128, -3.3729943935509152, -7.0, -7.0, -7.0, -3.4010902195951336, -7.0, -4.1418527478442595, -3.654337005386863, -3.843710218725583, -7.0, -4.147769046260147, -3.3384122207586615, -4.453731029504294, -7.0, -7.0, -4.113441953965322, -4.377979759421654, -7.0, -7.0, -3.852000471450028, -3.4875342941571197, -7.0, -4.2430876795053765, -7.0, -3.7570542290869438, -3.4317496322269334, -4.296511624661299, -7.0, -7.0, -7.0, -7.0, -1.5027776034972864, -2.5757310526056134, -7.0, -7.0, -3.5251312252008757, -7.0, -3.683384791579453, -3.1809855807867304, -7.0, -7.0, -3.41355121317555, -7.0, -3.2384475771411187, -4.020692678682027, -4.014100321519621, -7.0, -3.479373734640201, -3.747139803102036, -2.0039237178426834, -4.026533264523296, -3.311245120878208, -4.098643725817057, -7.0, -3.5489214662854756, -7.0, -7.0, -7.0, -3.4338231510303165, -7.0, -7.0, -2.6109961743112087, -2.9933382398649977, -1.395068880768949, -3.512195050270289, -4.073535065058784, -7.0, -7.0, -3.9965116721541785, -7.0, -7.0, -4.0842544591112295, -7.0, -7.0, -4.129657673312688, -7.0, -2.9858753573083936, -2.86544240791904, -3.154918245723459, -7.0, -7.0, -7.0, -7.0, -2.9992287931945603, -4.000650953629595, -7.0, -7.0, -2.6012037192276076, -3.0880269900422115, -7.0, -7.0, -2.1543432221004943, -7.0, -3.159443530693639, -7.0, -3.0796876276113365, -7.0, -2.7050507870521128, -2.760495443437143, -7.0, -3.3207395846758714, -7.0, -7.0, -7.0, -2.6709412807357755, -7.0, -7.0, -4.130719636562953, -7.0, -7.0, -7.0, -4.020444155366574, -7.0, -7.0, -3.695102086708091, -3.2467139512350784, -3.7508553832258906, -7.0, -7.0, -7.0, -2.381317407516167, -3.234155582415821, -3.9943171526696366, -2.4848382845757517, -3.6331509149824406, -3.4328090050331683, -3.6671726724788685, -2.240227565671911, -2.9530486891810788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.467467158083198, -7.0, -7.0, -7.0, -2.8049678348367264, -7.0, -7.0, -3.089154157054828, -7.0, -7.0, -7.0, -3.698709349442587, -3.3828092224315145, -3.589204670642375, -7.0, -7.0, -3.4148480526441123, -7.0, -7.0, -7.0, -7.0, -7.0, -3.999869692108268, -3.3726972562858792, -3.2025564256592927, -3.7926717891415676, -3.994361151908001, -7.0, -3.3712895730645562, -7.0, -7.0, -2.2379228771710533, -7.0, -7.0, -4.04166896647561, -3.18998131938412, -7.0, -7.0, -7.0, -4.001300933020418, -7.0, -3.213882835868511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.607637281414817, -3.0818238136507157, -7.0, -7.0, -7.0, -4.345608950540594, -3.950092117510449, -7.0, -7.0, -7.0, -7.0, -7.0, -2.94199902862763, -4.6448520064261425, -7.0, -4.6148761332650095, -2.9870500630767345, -7.0, -7.0, -7.0, -7.0, -7.0, -4.608782683529647, -3.521530341278711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1740390295759937, -7.0, -3.6158729303734223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3190852293386985, -3.7531711647163974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5930644316587173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9761894392304566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.610574998959417, -7.0, -3.3733510618714013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.713885176907469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.338057875419756, -3.768243332915101, -7.0, -7.0, -7.0, -2.9546421521708908, -7.0, -4.615107987443194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2311706772347133, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808220621661337, -4.631971096240407, -4.632679950216724, -7.0, -7.0, -3.411479407308512, -7.0, -7.0, -7.0, -3.728160944936087, -7.0, -7.0, -7.0, -7.0, -4.2401080739408314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6100956392991375, -7.0, -7.0, -7.0, -7.0, -3.33817842648472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.62260771535978, -7.0, -3.445466833516987, -7.0, -7.0, -3.133289356859643, -7.0, -4.133996379664722, -4.008621460185338, -4.611574624300936, -4.3117856375382315, -4.616023654653256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6271507046257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.134740071165334, -7.0, -3.7933612645639485, -2.6260252699140123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5844095155942375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.616149802205346, -7.0, -4.153082804361832, -7.0, -7.0, -7.0, -7.0, -3.1932276949678604, -4.611117634384384, -3.7512213482173284, -7.0, -2.8952950186616295, -7.0, -7.0, -7.0, -4.34609858337099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.030569364813529, -4.613514128230588, -7.0, -7.0, -2.822859424823976, -7.0, -7.0, -3.5828017176654714, -4.606939998568596, -7.0, -7.0, -4.6076480001038265, -4.317415586331099, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3894252872859263, -4.138439545167638, -7.0, -7.0, -7.0, -7.0, -4.61212662166355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6918679935514755, -4.028520419371018, -2.3844656697933324, -7.0, -4.616926903478089, -3.514922928167204, -7.0, -7.0, -7.0, -7.0, -4.614433158550452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4368256494961977, -1.9136473000407377, -3.1890542193679265, -4.309928110434921, -3.3636832867606903, -4.325371969396705, -3.0014356218422553, -2.7447408575982504, -2.0771409968833208, -7.0, -2.7716302024333626, -1.812689050285849, -2.8237136038871316, -2.862345583352883, -2.337614386939072, -2.6304868323618735, -2.515988671209838, -2.5659504281203986, -2.991634283960961, -7.0, -3.7802903029370016, -2.6174459461448945, -3.4225716025288726, -1.681420099237966, -2.6500897014770786, -3.0114667067087155, -2.9466318368502, -2.6780979584052456, -3.717285540869072, -1.3370327400260669, -2.209592265024327, -3.041981724889763, -3.2966576267250685, -2.921938578371734, -2.9759098741639316, -3.1358592762153634, -3.507282278310011, -2.9694367766828114, -2.3760494820288316, -3.7391238429861597, -7.0, -3.2356967454881875, -3.317919314241195, -3.6180195550634915, -4.612052355179759, -3.3891829662320165, -7.0, -3.2126970136435244, -7.0, -7.0, -3.7156607840741795, -3.2006332643543884, -4.178765980418437, -3.7737551094725466, -3.95970902424643, -7.0, -7.0, -4.335748670303386, -3.540470253496464, -4.628000445988902, -7.0, -3.5426940540960583, -2.609346857296908, -3.0401260605057816, -7.0, -7.0, -7.0, -3.4035976824789262, -3.697945792788684, -3.7445208726381987, -3.800677809374912, -7.0, -7.0, -4.349860082192332, -2.556536769126058, -3.3401061253096755, -4.319647288183423, -4.649986784636648, -4.163260789989906, -3.33875919891799, -7.0, -7.0, -3.041727876544049, -3.0154673753195924, -7.0, -3.171460029734501, -7.0, -7.0, -7.0, -3.447743589284149, -7.0, -7.0, -7.0, -7.0, -3.0924950697064624, -3.016989838073532, -7.0, -4.139847614646311, -4.61028744666005, -3.930470177808289, -3.356269286063917, -4.014247443807829, -7.0, -7.0, -3.233428590374369, -4.6099570590580345, -2.7036921696255547, -7.0, -4.613196769750614, -4.023437664229715, -3.5466470486443358, -4.320997416794221, -3.933942602741261, -4.315308959193267, -4.311255725712636, -3.85782481981019, -7.0, -4.315224901518623, -7.0, -7.0, -7.0, -3.5580343650072894, -7.0, -7.0, -2.5019820979257474, -2.5755986777665982, -2.1599163201638714, -7.0, -4.628940389245031, -7.0, -4.141992954947583, -4.608836133184731, -7.0, -7.0, -4.029830019310658, -7.0, -7.0, -3.7420767398479198, -7.0, -3.424929654153577, -3.4986391993469956, -3.721583931807987, -7.0, -7.0, -7.0, -7.0, -2.6210066189222463, -4.308799103911129, -7.0, -7.0, -3.2110512892020617, -3.1000164069826135, -7.0, -7.0, -3.4213425748284356, -7.0, -2.4001013067225925, -4.611202692182174, -3.5514398317845557, -7.0, -4.310544628636955, -3.2092468487533736, -7.0, -3.1376513664730057, -4.613196769750614, -4.609113965400532, -7.0, -2.8662666060683937, -7.0, -7.0, -3.94657997990354, -4.135937920969854, -7.0, -3.958888646524424, -7.0, -7.0, -4.614538669710055, -3.3573821032961106, -3.3725825735902633, -4.623042434246382, -4.144553452299717, -7.0, -7.0, -3.292196979651928, -3.6762565555673197, -4.307249939305207, -3.7208412305035896, -2.668106237932731, -4.016458771976905, -3.1871768858027356, -2.674868486036911, -3.548578385603278, -7.0, -7.0, -7.0, -7.0, -4.610415271187788, -4.61523440120683, -3.520433141781531, -7.0, -4.608055114382654, -7.0, -2.8099523099190993, -7.0, -7.0, -4.3068965975393665, -4.608354849309348, -7.0, -4.608579514826188, -4.609647759078724, -4.3302818414364435, -3.3713655035168926, -4.612391755480837, -7.0, -3.914914082586252, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.174815456482182, -4.161098356450925, -4.63466868029747, -7.0, -7.0, -3.9290611240847655, -7.0, -4.606746706755346, -2.666842135908416, -7.0, -7.0, -4.319251841140254, -4.03248780817215, -4.137596725153168, -7.0, -7.0, -7.0, -7.0, -3.863362519906055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.899382705533265, -3.102605194126567, -7.0, -7.0, -7.0, -7.0, -3.4767229688690007, -7.0, -7.0, -7.0, -3.9293167267534956, -7.0, -3.893345571818231, -7.0, -7.0, -7.0, -3.597460114481666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040226421767277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.865932668193186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2641800750358305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4954909680247956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6806527317073043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.828423569175315, -7.0, -7.0, -7.0, -3.492564842670765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.011443562022075, -7.0, -7.0, -7.0, -3.5399538416563967, -7.0, -7.0, -7.0, -3.5317343092765503, -7.0, -7.0, -7.0, -7.0, -3.592354437456401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.309452723304164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5698418994037615, -7.0, -7.0, -4.2594903493437135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7249581862877257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9865478134147243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7251616989168106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9386698010226793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9056340013269546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.269512944217916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9035782936630543, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7463535562900727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9991403569240753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.220683277974345, -4.005866601875385, -3.1917771990622015, -7.0, -7.0, -3.9317222318174236, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015443587951102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.788389352411851, -3.169120569796846, -2.6102941051163335, -7.0, -2.729696191601458, -7.0, -2.897008193182832, -2.138410667831999, -3.091118028327024, -7.0, -3.4868081673068962, -2.7092506825613607, -2.456151407732086, -2.7432524631136483, -3.4689914454459165, -2.1568270934567235, -2.595985843615769, -3.2575710014738584, -2.8278661207020015, -3.7802903029370016, -7.0, -1.970174748629278, -3.2747638215303567, -2.996632208183235, -3.0098309440144564, -2.6316227980017204, -2.62740962701253, -1.7018263005471468, -3.3591712057167005, -3.2464538150912925, -2.056414769115683, -2.3827736283347782, -2.3838857369571556, -1.9608053853307488, -2.374969449427609, -2.2182252419733373, -2.2380228583148147, -2.9445987781478937, -2.8430024442385116, -7.0, -3.9445813642269263, -3.6109793799229974, -3.9664077055553992, -7.0, -7.0, -3.099887727411467, -7.0, -3.4527572689371206, -4.137195811940549, -7.0, -3.2457817752162765, -3.8541440369565634, -7.0, -7.0, -4.113709438449504, -7.0, -7.0, -7.0, -3.516081861799344, -2.257545253461567, -7.0, -3.7816405047233714, -3.2420189433633753, -2.7745002499864304, -7.0, -7.0, -7.0, -3.9077337369976552, -7.0, -3.3060095854337113, -3.7657057996869474, -3.979070114390943, -7.0, -3.7844389742226907, -3.9483151406893477, -3.9468941951023266, -7.0, -7.0, -3.56839730816483, -3.8652422000895097, -7.0, -7.0, -3.60114520058165, -3.94680584505315, -7.0, -4.005403610458412, -7.0, -7.0, -3.4638183615294293, -3.9521868168381484, -7.0, -7.0, -7.0, -7.0, -2.0162155442381913, -3.638938294887355, -7.0, -7.0, -7.0, -3.7000110623221123, -3.1992813424620823, -7.0, -7.0, -7.0, -3.835087847232495, -3.9111043178040363, -3.398738376245611, -7.0, -7.0, -7.0, -7.0, -3.9684362477117046, -3.41338359662314, -7.0, -3.92272545799326, -4.028327198467569, -7.0, -3.6406801532776654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0922292421628566, -3.564682969118945, -2.379354335648669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9007493580610793, -3.534068432890329, -7.0, -7.0, -7.0, -7.0, -4.1028451642454185, -3.6241789257480224, -3.6796549786993333, -7.0, -7.0, -7.0, -7.0, -3.5610268074521003, -7.0, -7.0, -7.0, -3.1006002697893584, -4.148263229636879, -3.929214503737394, -7.0, -4.089905111439398, -7.0, -2.999901594008469, -7.0, -7.0, -7.0, -2.964154829404375, -2.949091699517699, -7.0, -7.0, -3.9270622434930003, -7.0, -7.0, -3.6729286904427223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.113776283837032, -4.088384186097703, -7.0, -3.966939163021113, -7.0, -7.0, -3.8172181918591903, -4.005952286887383, -7.0, -7.0, -3.848312303627284, -7.0, -4.22318432089504, -3.2514110789776036, -4.1275583020046325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5451008497880436, -7.0, -7.0, -7.0, -3.4352868122401277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9307962629833004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.089445858273834, -4.037107632667927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.248969935913661, -7.0, -7.0, -7.0, -4.02234587626988, -7.0, -7.0, -7.0, -7.0, -7.0, -4.050341081834084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.307519041408115, -7.0, -7.0, -7.0, -3.835263241125063, -3.51266438833237, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5356770471526247, -4.812485532959049, -7.0, -5.103564280050957, -2.5035434751067442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.260202745013895, -4.800335528704904, -7.0, -7.0, -7.0, -5.102049325662146, -7.0, -7.0, -7.0, -4.804773026242165, -7.0, -2.798789303893418, -5.100952660908403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.10122450682362, -7.0, -4.327093167048512, -3.913260701649197, -5.101186665056354, -7.0, -4.5024544332438925, -7.0, -7.0, -7.0, -7.0, -4.257304790554309, -5.104203634837933, -7.0, -7.0, -7.0, -3.171370276441817, -7.0, -7.0, -5.101159141699892, -7.0, -7.0, -7.0, -7.0, -5.102800608390914, -3.4909076706335322, -7.0, -4.800510876894368, -7.0, -7.0, -7.0, -7.0, -5.10110064877518, -7.0, -7.0, -5.10164054878698, -4.199947057925218, -7.0, -7.0, -4.500641206758236, -2.9309435565337925, -4.801139485303378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.80664455621679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.801732908048583, -7.0, -7.0, -7.0, -7.0, -3.7067651814617064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.208441356438567, -3.3487695036242493, -7.0, -5.102124855734526, -7.0, -3.1731790417536367, -7.0, -4.325454086056255, -4.627055047305291, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.143491254545802, -7.0, -7.0, -4.79989512705351, -7.0, -7.0, -4.162162649359897, -5.109186931698511, -4.410426282868454, -4.023585085498241, -7.0, -3.576910381921401, -5.101131616599028, -7.0, -7.0, -2.6856094356904237, -4.802677964770796, -7.0, -7.0, -7.0, -3.5264748156360772, -7.0, -7.0, -7.0, -5.101949743219734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.129563910021561, -7.0, -7.0, -7.0, -7.0, -7.0, -5.10122450682362, -7.0, -4.106027623544182, -7.0, -3.1893825770776196, -7.0, -4.325282992157282, -2.946653770402097, -7.0, -7.0, -4.801190970259465, -4.500414877756268, -7.0, -3.9277500763288153, -7.0, -5.101540872558349, -7.0, -7.0, -7.0, -5.10505691956627, -7.0, -7.0, -7.0, -4.650767159135146, -7.0, -4.630451606315535, -7.0, -4.802058431469606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.615685384838915, -7.0, -7.0, -5.10097675539313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.102601765021186, -5.103112403420998, -3.768836471411452, -2.7366250525486784, -7.0, -7.0, -7.0, -4.625415352154408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3918233302705025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.624488362513449, -5.1039780876687395, -7.0, -5.108612374132366, -7.0, -7.0, -7.0, -7.0, -3.463173317505048, -7.0, -4.075347850294719, -7.0, -2.6548088037201225, -7.0, -7.0, -7.0, -4.813267329389584, -4.626148674240376, -5.1036327052097405, -4.804200788288911, -2.6215087658759972, -7.0, -7.0, -7.0, -7.0, -4.625603941040815, -7.0, -7.0, -7.0, -7.0, -7.0, -5.10108688458908, -4.800455873318712, -7.0, -4.331241660919753, -4.802085832832881, -5.102049325662146, -7.0, -2.7227020245606064, -7.0, -7.0, -3.8406210760399038, -7.0, -7.0, -7.0, -7.0, -4.803696048445993, -7.0, -7.0, -7.0, -7.0, -4.800497126653524, -2.063180094011885, -4.200662436310718, -7.0, -7.0, -7.0, -4.405383930232088, -5.102673770548927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9559418903973125, -7.0, -3.467089898520816, -4.263605638169458, -1.9546295403204343, -4.624563969089531, -4.326045551412314, -2.9387982031410798, -5.103844754716462, -7.0, -7.0, -7.0, -4.501340024343219, -4.632372922202545, -5.10383107722707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.104166051776575, -7.0, -4.409378494659984, -7.0, -7.0, -2.5267777372775697, -2.146409072851802, -2.365964057019836, -5.102303329160087, -2.215048167079102, -3.3007381059912815, -2.86557305244909, -1.6666884526570873, -2.5311273253818536, -7.0, -2.9173463457004742, -1.7272531802324826, -1.9670038464124309, -2.0808367528530765, -2.924305280564163, -1.0811420100434221, -1.9954555630977564, -2.2123857790043826, -2.7423595527399964, -2.6174459461448945, -1.970174748629278, -7.0, -3.2613378390379486, -1.9088946947321648, -2.6645850002222424, -2.373887355935082, -2.0936316718609898, -1.8946530416508809, -2.88155548819778, -2.494454185160028, -1.5763666781634307, -2.0245083220671165, -2.2126606051311555, -2.306117205810236, -2.7045002939710105, -2.157067143420605, -2.1568823890800446, -2.6600809295199155, -2.2796587768571377, -3.6833462044894683, -7.0, -2.754968130603507, -3.209842548019534, -4.273454356354353, -7.0, -2.696359566292455, -4.802534284386976, -2.945479406917248, -4.342495057204659, -5.105806425828049, -3.306030608776958, -2.983128367847432, -4.272179886040999, -4.502819583051974, -3.61294271588699, -7.0, -7.0, -3.33955923092641, -2.1712034547730594, -4.806830927613483, -5.102680627595637, -3.3202545608791008, -2.440666173142421, -0.6355151074541456, -7.0, -4.504708673848843, -7.0, -3.1803474772636906, -4.417086220770336, -3.2682217466752914, -3.9376917087542616, -4.023897959084491, -7.0, -3.4525330814266306, -3.718645386607124, -3.1647492907566503, -4.406465236880978, -4.416277611713044, -4.413024679701589, -3.578688759389185, -7.0, -7.0, -2.6541476783893043, -3.008774197448603, -5.103786622411421, -2.5458736297858944, -4.62728049158373, -4.629647410457143, -3.8126560444689828, -3.590000635504518, -7.0, -7.0, -7.0, -5.10234107375727, -2.5445533197545602, -3.442207709868362, -7.0, -4.803221467457776, -4.8010433637188035, -4.330187096366115, -3.564282100933567, -4.4050525185551175, -7.0, -7.0, -3.9163552340406005, -7.0, -2.8051544359686225, -4.62642591735698, -5.10301991616068, -4.629925823953525, -3.428501732235372, -4.503824717341271, -4.410530922787965, -3.7614801984190636, -3.801571769357205, -4.1562630271060215, -4.501367406054805, -5.104019104958513, -7.0, -7.0, -7.0, -4.043758399217367, -4.624910903184837, -5.101135057332041, -2.9975123995683486, -2.8219038108655123, -1.9010202559024967, -7.0, -4.5060989599284405, -7.0, -4.063497122643505, -5.1016130541812235, -7.0, -7.0, -2.7078143789900295, -5.101685223809193, -7.0, -5.1136760118971, -7.0, -3.7746728723524074, -4.801866573503306, -3.902594337119436, -7.0, -4.626384855468794, -7.0, -5.103988342354368, -2.599433350934423, -7.0, -7.0, -7.0, -3.2928901294360298, -3.9456589370603736, -4.148866468878797, -4.801811741370298, -3.2521977882265785, -7.0, -2.4433073453168954, -5.10237538418105, -4.409814816892981, -7.0, -4.0610410205231116, -3.484539250183401, -7.0, -3.670275679967574, -4.801983068804944, -7.0, -4.801070829199609, -3.992291754360717, -7.0, -5.1012141866686385, -4.812749630172364, -7.0, -7.0, -4.163717806163838, -7.0, -5.109561674219138, -7.0, -3.942120541404521, -4.074397497406827, -4.3280464486194905, -4.628661343094779, -7.0, -7.0, -3.381608385295533, -3.932565078682726, -5.101441173447477, -4.152274751228799, -3.206354301944434, -4.326585030766405, -3.7153121629007257, -2.9512055563264705, -4.2745503849095305, -7.0, -4.6260527959344335, -7.0, -7.0, -7.0, -7.0, -3.5535324302784037, -7.0, -7.0, -7.0, -3.326574793726331, -7.0, -4.801293921864864, -7.0, -5.10145836458231, -7.0, -7.0, -4.323688582255868, -4.1089132667197426, -4.408535049571333, -7.0, -7.0, -4.103208295336138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.212819934885117, -3.83241814508691, -4.030832389665022, -7.0, -7.0, -4.408907857830475, -7.0, -7.0, -2.9534505265771154, -7.0, -7.0, -5.105333024616749, -3.8089094696794237, -7.0, -7.0, -7.0, -7.0, -7.0, -3.833549702423101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.501482514820539, -7.0, -7.0, -7.0, -4.047274867384179, -3.153433737087157, -7.0, -7.0, -7.0, -7.0, -7.0, -2.72899112978433, -7.0, -7.0, -7.0, -3.2728854447575695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.159296426688385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7601660533515986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9306434410421645, -3.3854990271520573, -7.0, -7.0, -3.442061474322838, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2499806059095295, -7.0, -7.0, -3.86457040685343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.222629776969852, -3.881783955593385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7235963873885836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.016448318259037, -3.690550461510359, -7.0, -7.0, -7.0, -4.187612364222886, -7.0, -7.0, -3.9140785853891122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.910090545594068, -7.0, -7.0, -7.0, -7.0, -7.0, -3.374345016224609, -3.985695859689842, -7.0, -7.0, -7.0, -3.0812490844673115, -7.0, -7.0, -7.0, -3.9831299247347003, -7.0, -7.0, -7.0, -7.0, -4.278181784567518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.703047646167912, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8656960599160706, -7.0, -3.6414741105040997, -7.0, -3.2509381626112535, -7.0, -3.601625479553945, -3.2843179154306097, -7.0, -7.0, -3.8826383616960385, -3.8870543780509568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.862131379313037, -7.0, -7.0, -7.0, -3.361586195156881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.873436863222037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6520469834853126, -7.0, -7.0, -7.0, -3.887954703808801, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9934362304976116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6768764319731373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.077440584471324, -7.0, -1.439853147684109, -7.0, -7.0, -7.0, -4.049218022670182, -3.8998205024270964, -7.0, -3.930031614950973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3865435520177014, -3.596102047718113, -7.0, -7.0, -1.8681633440829502, -7.0, -7.0, -4.105986795521472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8709888137605755, -2.762494295245261, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8899736384039962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.210736131009443, -7.0, -7.0, -3.3020937473494185, -7.0, -7.0, -3.8830933585756897, -7.0, -3.9020028913507296, -3.9899390132845354, -3.9084850188786495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.974787932213558, -7.0, -7.0, -2.9144596969074215, -2.97211990499589, -3.085766126574217, -7.0, -2.7153990227625053, -3.659440781870318, -2.904282657645628, -2.0250850890094454, -2.3595920918742195, -7.0, -2.9949278545756846, -2.761722869731802, -2.419162729792661, -2.719646613671655, -2.5974072058672815, -3.512183922360945, -2.8345727312834774, -2.7745589123632373, -2.285246821429292, -3.4225716025288726, -3.2747638215303567, -3.2613378390379486, -7.0, -2.218856164715301, -2.583591999539007, -3.483974250740474, -2.49938550769493, -1.8857582713800698, -3.9325244970505424, -1.7649961974579178, -2.869195037904703, -2.266375552376499, -2.525710502874475, -2.4115800968171492, -2.7235541775696275, -2.4385783047808247, -2.6479075092177413, -2.1357775059548194, -2.616033061656062, -3.6072673245501026, -7.0, -3.416052828653338, -2.799436728056987, -3.7954976699424585, -7.0, -2.881527305640932, -7.0, -3.078291064706725, -7.0, -3.9384696883676455, -3.575026109423261, -3.318835191727664, -3.0408899047542124, -7.0, -2.730220354860967, -7.0, -7.0, -3.005909446494559, -4.049024097915049, -7.0, -7.0, -3.1291183845233452, -2.5154691970223673, -3.7300551523755, -7.0, -3.952695599586917, -7.0, -3.026642198989762, -7.0, -4.27681552966027, -3.4419306745501714, -3.3630475945210936, -7.0, -7.0, -3.1549562434033382, -2.950968833510342, -3.0876800300462937, -3.281828466560518, -3.0670295045117135, -2.7162069987296933, -7.0, -7.0, -2.9666477694787634, -2.9229947879131495, -3.606650028578439, -3.4949629235687794, -7.0, -3.173962834523349, -3.4411843626805214, -3.6364878963533656, -3.8736692927067944, -7.0, -7.0, -7.0, -2.3691462533580823, -2.9700109249911373, -7.0, -7.0, -7.0, -7.0, -3.271531838704605, -7.0, -7.0, -7.0, -3.5147469246343817, -7.0, -2.836368077532691, -3.9042285163400785, -7.0, -7.0, -3.623766000133931, -3.939918420369057, -3.2116099373351346, -7.0, -3.5897821032911432, -3.5262961904825314, -7.0, -3.9114239653762946, -7.0, -7.0, -7.0, -3.66373232660306, -3.879611907065851, -7.0, -2.775664154857271, -2.8355277555128513, -2.0072213000164245, -3.8629657589777624, -3.3697722885969625, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9856060830524367, -7.0, -7.0, -3.3425805773816273, -7.0, -3.1785093257409924, -3.8937062930647133, -3.475768010191268, -7.0, -3.9035782936630543, -7.0, -7.0, -2.852174904420303, -7.0, -7.0, -7.0, -2.855034316675884, -2.98265882296436, -7.0, -3.5916766421416844, -3.3692529750104305, -7.0, -2.937654331748257, -7.0, -3.9806849743633146, -7.0, -3.887167020894774, -0.8739585862819435, -7.0, -2.8296967833716815, -7.0, -7.0, -7.0, -3.6447831309233574, -7.0, -7.0, -7.0, -7.0, -7.0, -4.090469680231161, -7.0, -3.9906495883188544, -7.0, -3.4912916406875922, -2.8103818884116567, -3.0408988880818284, -7.0, -7.0, -7.0, -3.5061666650469663, -3.6787459370657043, -3.5682604085454175, -3.347232410084063, -2.7236608666914495, -3.2235997646496934, -3.5083680909523376, -2.8041560608213065, -2.643690860483486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4706391271917423, -7.0, -7.0, -7.0, -2.863179234041462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8767372971406644, -3.9828589423120753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5907675519657363, -3.5355894580221245, -3.69640007813349, -7.0, -7.0, -3.6672193984439363, -7.0, -7.0, -2.801654645762421, -7.0, -7.0, -7.0, -3.5199591807520685, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5495754012584975, -7.0, -3.8765642139838454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3653972637477167, -4.789411473551423, -7.0, -7.0, -3.3332456989619628, -3.3206955935760587, -7.0, -7.0, -7.0, -4.7884158626098525, -7.0, -2.412936196270033, -7.0, -7.0, -3.642916527809786, -2.6145382207807, -7.0, -4.483416112701048, -7.0, -4.784987960564955, -4.784631554943246, -4.785158931428092, -4.082834719158263, -4.784695729544385, -7.0, -7.0, -7.0, -4.786098069954851, -7.0, -7.0, -7.0, -3.0076778354173825, -3.8809064413723564, -3.3588281256465544, -7.0, -7.0, -3.8824178010972825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.678644425908479, -3.2606873945370265, -7.0, -7.0, -4.79122734162645, -7.0, -7.0, -7.0, -7.0, -4.786914606730178, -7.0, -7.0, -7.0, -7.0, -3.296421410023919, -7.0, -7.0, -4.784253445375443, -7.0, -7.0, -7.0, -7.0, -7.0, -4.410254078446397, -7.0, -4.182956469055351, -7.0, -4.784189205380961, -7.0, -7.0, -7.0, -4.482773570074737, -7.0, -7.0, -7.0, -4.7851090718786775, -4.786353846576917, -4.088462130302983, -2.494509447937863, -4.485316748040482, -4.784281993434279, -7.0, -7.0, -7.0, -4.78417492853611, -7.0, -7.0, -7.0, -4.797676014934945, -7.0, -7.0, -7.0, -4.787453389721934, -7.0, -7.0, -7.0, -7.0, -4.486543819882519, -7.0, -7.0, -7.0, -7.0, -2.9706306045562396, -4.483551639143684, -7.0, -7.0, -7.0, -7.0, -7.0, -4.027376792806965, -2.938948375793857, -7.0, -4.48521019101124, -7.0, -3.0392781152661854, -7.0, -4.187280946665672, -4.091491094267951, -7.0, -7.0, -4.48364434340033, -4.785258633357701, -7.0, -7.0, -3.1804749464164352, -7.0, -7.0, -7.0, -7.0, -7.0, -3.383702357611819, -7.0, -4.801225290173022, -4.4866925351069185, -7.0, -3.0682444670336, -7.0, -7.0, -7.0, -4.101327694887568, -4.011316643366872, -7.0, -7.0, -7.0, -3.906017616655766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.78875505029906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4958815048717864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590089133690572, -7.0, -2.9381410984255703, -7.0, -4.010808597512207, -2.4589044615454947, -4.78432481200424, -3.507735178133635, -3.8321113371375928, -3.582688206299978, -3.78773669147004, -2.7673396555398124, -4.7858279199958655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.536962249650276, -7.0, -3.6833726716448614, -7.0, -3.943077404269343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.018575683467251, -3.882140162435669, -7.0, -4.7838750063274365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.787240792066473, -4.089269093046149, -4.106211302163002, -2.5764885701434403, -7.0, -4.784046415808113, -7.0, -4.3099848383169075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.563599107795837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.785215906761976, -4.790080990601768, -7.0, -3.8452221064290137, -4.015171073002388, -7.0, -4.783824999149303, -7.0, -3.0244578372293143, -4.087689155914309, -2.781263241134869, -7.0, -2.285552541544157, -7.0, -7.0, -7.0, -4.112068504268197, -4.186546696952168, -4.7893691535914815, -3.3943956392128856, -4.491172524399044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.78494520733039, -4.784360490921301, -3.624948671355888, -4.487272745488699, -7.0, -4.784845433412646, -2.287497933400103, -7.0, -7.0, -3.6171445574903074, -7.0, -7.0, -7.0, -4.483359036280687, -3.51262823139563, -3.8833135764397375, -7.0, -7.0, -7.0, -7.0, -1.7735402503935993, -3.3121844111986243, -7.0, -7.0, -7.0, -4.790911166601595, -4.185287112575202, -7.0, -7.0, -4.785891918069435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.78632543439007, -7.0, -3.5198842216180046, -4.322694690306876, -2.233722657037703, -7.0, -4.313452404617617, -3.461975751039211, -4.488762172066695, -7.0, -7.0, -7.0, -7.0, -4.801396849070872, -7.0, -7.0, -4.783774986212391, -7.0, -4.310048648328322, -7.0, -4.484057706083955, -7.0, -7.0, -7.0, -3.24230671556541, -7.0, -7.0, -1.333050212822552, -1.732888876318965, -1.7787469321412472, -3.8834342936830093, -2.8685099487418886, -3.592662429045383, -2.3786583674477253, -1.752061582665237, -0.9082622277483057, -4.783953577404038, -2.1765046760139852, -0.696236093792431, -2.320941902387436, -2.419173400790585, -1.8597919065431519, -1.9306385248238294, -2.4309164433481816, -2.065363643234313, -2.566970612326016, -1.681420099237966, -2.996632208183235, -1.9088946947321648, -2.218856164715301, -7.0, -2.387910164180042, -2.769063163755874, -2.42319904720951, -2.1386055309629564, -3.792888742179074, -1.039208860811914, -2.2814310988609674, -2.4689324896507245, -2.428522865815281, -2.4329982170349678, -2.632463823370773, -2.4152432218225366, -2.4553687449617696, -2.2315151568930105, -1.6457745688215348, -3.3959064795712126, -7.0, -2.837108073138243, -2.7655605803956953, -3.048053173115609, -3.94215692846749, -2.7685653225944606, -7.0, -2.3656714715140623, -4.221714097454803, -4.492795298755718, -3.1344116809154454, -2.8490682559189415, -3.4018245530016085, -7.0, -3.205771922578067, -7.0, -7.0, -3.4613143143363385, -2.955126283548938, -7.0, -7.0, -2.858165668009299, -1.9123537888869968, -2.313199520872477, -7.0, -7.0, -7.0, -2.766786662945696, -4.5136170737878745, -3.9663852215103717, -3.5089469798218746, -3.743232287238435, -7.0, -3.6673728912283936, -2.88924011792284, -3.6960176467785573, -3.537623233756723, -3.199721739891994, -3.020347695447247, -2.5027771598856288, -3.3535934043217672, -7.0, -2.5211034302444606, -2.4595410083588636, -3.8353311524327784, -2.189466104551766, -7.0, -3.4338046066925614, -3.4295840726793774, -3.1421808211559457, -4.3082085802911045, -7.0, -7.0, -7.0, -2.595116585856597, -2.2178339146037684, -7.0, -3.375332931974451, -4.007939712514268, -3.0579771412316132, -2.4551495211798278, -3.488931262422253, -7.0, -7.0, -2.3712322494503155, -4.484897472816146, -2.0652001274811633, -3.5585462266892547, -4.186002268850776, -3.5920795578567235, -2.777683803329668, -3.714706878813469, -2.9876456426663927, -3.245674792956368, -3.163679503398851, -3.13080579429975, -3.7096514974674624, -3.8869769191447054, -4.787028090288343, -4.785415261588475, -7.0, -2.9950477386687933, -4.786090962897912, -4.784203481756495, -2.017264452938816, -1.7341710790487073, -1.4238031121981767, -4.306910879548736, -3.4559793306455244, -4.786318331052916, -3.791971201020768, -7.0, -7.0, -7.0, -3.4024608541039107, -7.0, -4.088015533093001, -3.207243784491376, -7.0, -1.6840836382549131, -3.583531737692542, -3.105044184864794, -7.0, -4.010914489420639, -7.0, -2.8297913511939936, -1.6527263796754403, -4.0868436925849005, -7.0, -7.0, -2.974789285895967, -2.2941062855654346, -3.7882744561838897, -4.185648378282055, -2.642270631311907, -7.0, -1.6912451854953618, -4.184670141350603, -3.0067489005964645, -4.7859701251320095, -3.508026205525405, -2.270621570318383, -7.0, -2.2398880538155255, -3.9429217685191538, -7.0, -4.309069196393278, -2.9305582840293467, -7.0, -7.0, -2.4607150375092623, -4.486996888431823, -4.787467559199322, -3.3557486858509193, -4.010956838955719, -3.5460008283927995, -4.311852713589172, -2.6774085632045024, -2.3116933279896723, -3.5903820058174034, -3.202222766175473, -4.482880726551359, -7.0, -2.549952733015442, -2.745233748499208, -4.483794054640928, -3.016434379577117, -1.795590161015244, -3.750178674359477, -2.3270097863841452, -2.3808158408475273, -3.1980611267337333, -4.483573034190131, -3.9432683355836136, -4.784524576197029, -4.483002138604418, -4.7862472912906115, -4.312318429847517, -2.950323707873046, -7.0, -4.784674339064312, -7.0, -2.3929840436331347, -7.0, -3.9414972351325823, -7.0, -4.784873942585328, -4.08781689793553, -4.30787383097522, -4.484691239914095, -2.745689562989966, -3.5183684580315613, -7.0, -4.784674339064312, -3.445901272848216, -4.783803565738718, -7.0, -7.0, -7.0, -4.308229938510919, -7.0, -3.7728815535896785, -2.5377027750519026, -4.10355059372542, -4.784845433412646, -7.0, -3.2294327686725683, -7.0, -4.783803565738718, -2.388050584882719, -7.0, -7.0, -4.315718507536319, -2.5304820004707973, -4.3120009502137435, -7.0, -7.0, -7.0, -7.0, -2.521410522381751, -4.482816435838172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2118982321165546, -7.0, -7.0, -7.0, -4.191618663369469, -3.499467130989543, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7191520486477514, -7.0, -7.0, -3.792951708250132, -3.182884965971133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.116474911908331, -7.0, -3.742685862397225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1112625136590655, -3.7415980121808308, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6467956887784694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.081635301502951, -4.073974819866659, -7.0, -7.0, -7.0, -7.0, -2.8839549765516828, -7.0, -7.0, -7.0, -7.0, -7.0, -3.767304317453273, -7.0, -7.0, -7.0, -4.134400255918984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.095866453478543, -7.0, -4.169733197942518, -3.037354049115382, -7.0, -7.0, -7.0, -3.372129199790205, -7.0, -4.0948203803548, -4.100405011565889, -7.0, -7.0, -4.07107154998365, -7.0, -7.0, -7.0, -3.3605092642757195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3011230487976233, -7.0, -7.0, -7.0, -7.0, -4.067610132912504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1219683083643344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.641936582803575, -7.0, -3.229216285664953, -7.0, -3.791971201020768, -2.7309167946335178, -7.0, -3.0016255582867375, -3.6029277128591892, -3.6057358938767465, -4.087248867795658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.295215123866298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8292394281413893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.690934048739477, -3.021257753888522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.575332200748137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.637055885524786, -7.0, -7.0, -7.0, -3.649918718735419, -7.0, -3.514282047860378, -7.0, -2.883205003706557, -7.0, -7.0, -7.0, -7.0, -4.091174360706882, -7.0, -4.110858956731867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6732974397596356, -7.0, -7.0, -7.0, -3.1707979642445716, -7.0, -7.0, -3.5353447636766573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.550474234050802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.832998282627148, -4.144293927198531, -3.0156709638787342, -7.0, -4.100818395731537, -3.764596394810861, -4.096910013008056, -7.0, -7.0, -7.0, -4.092580300691311, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1408849802658665, -7.0, -7.0, -2.3700601605169713, -2.8449170462704814, -2.7434952473550966, -7.0, -2.9287257725066422, -3.830139387425343, -1.8745468407664116, -2.4030124712965577, -2.5196681185140672, -7.0, -2.1951679674318276, -2.390319447159678, -2.0447937214805347, -2.168099365491275, -2.687878300113581, -2.516880120476239, -2.7904671640422904, -2.809954243007838, -2.396486524640049, -2.6500897014770786, -3.0098309440144564, -2.6645850002222424, -2.583591999539007, -2.387910164180042, -7.0, -2.9948245653712453, -1.8246764291958442, -2.0135747566806343, -2.1058166374336857, -2.443460333175155, -2.164634570474998, -2.684810171879624, -3.0256547388348216, -2.39435254569581, -2.3402953583797146, -2.995059990083075, -3.452706226511029, -3.528672501601294, -0.9328829155012494, -3.4103764856662915, -7.0, -3.9888264070452757, -3.3850835409542803, -3.0507405516030395, -7.0, -3.151561363449798, -7.0, -3.2344610386791035, -7.0, -7.0, -3.7632594845682545, -3.4989477407243084, -3.2170626058525507, -7.0, -3.9241758703019207, -7.0, -7.0, -3.6856521841155243, -4.427940290264142, -7.0, -4.084933574936716, -3.8331088463960503, -3.130834353972563, -2.929519470369024, -7.0, -7.0, -7.0, -3.873561394487116, -7.0, -4.39346551909628, -3.587205677606586, -3.7570162347313003, -7.0, -3.7264011621029223, -7.0, -3.783160071056011, -4.1130738935942075, -3.1212588303888062, -7.0, -3.5664206554863935, -3.848958460827495, -7.0, -3.59956399102238, -3.149608480460239, -7.0, -3.735766517790886, -7.0, -4.1258714674176815, -7.0, -4.035829825252828, -7.0, -7.0, -7.0, -7.0, -2.1940137903903576, -2.2465275443812533, -7.0, -7.0, -3.175040443810621, -3.2373237705991307, -3.6278163058623765, -3.3997429262428613, -7.0, -7.0, -3.128200370394246, -4.077513251497662, -3.476324317420228, -3.792916728226602, -3.787354190433722, -3.8274338954007794, -3.2761808644533152, -7.0, -2.895146189375992, -2.565187822933127, -3.0433622780211294, -3.8596485787364037, -3.490590487028833, -7.0, -7.0, -7.0, -7.0, -3.218941109212078, -4.078275522086601, -7.0, -2.948083249753727, -2.5436806026151135, -1.6174777148654325, -7.0, -3.6618126855372615, -7.0, -4.10809123558122, -7.0, -7.0, -7.0, -7.0, -7.0, -4.083108279194735, -4.187746269780459, -7.0, -2.7841416140728312, -3.484975673477698, -2.9792230848365144, -7.0, -7.0, -7.0, -7.0, -2.4174517633625174, -4.077149794716969, -7.0, -7.0, -1.3484858437877367, -2.8531138935152702, -3.311435968289161, -7.0, -2.8634039785371357, -7.0, -2.964401400808145, -7.0, -3.1443562273681835, -4.0776585490841315, -2.8514741829727863, -2.59659709562646, -7.0, -3.2194011303575603, -7.0, -7.0, -4.078927833680719, -2.324979051522652, -7.0, -7.0, -3.8875891715438677, -7.0, -4.085254891103877, -3.9219464542294102, -4.093806775615175, -7.0, -7.0, -3.0785086030032023, -2.882497432666564, -3.643321052153644, -3.417106167392593, -7.0, -7.0, -2.399164523999909, -2.3625138895930924, -7.0, -2.1540797992204612, -3.143082717133099, -2.803900743413759, -3.081114231941639, -2.0465674178963407, -3.75878577232103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.182273491306374, -7.0, -7.0, -7.0, -2.960419808988687, -7.0, -3.780173243642594, -4.070628844051428, -7.0, -7.0, -7.0, -3.377196935008914, -2.9149650437896093, -4.132995700692265, -7.0, -7.0, -2.859456190061124, -7.0, -7.0, -7.0, -7.0, -4.074633618296904, -7.0, -3.9055260484350485, -2.4741865209346554, -3.855428289576475, -7.0, -7.0, -2.6432297408766043, -7.0, -7.0, -2.0443945648168875, -7.0, -7.0, -3.634544441219856, -2.4632224050091973, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4840963750741945, -7.0, -7.0, -7.0, -4.153021743626138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.679633008202028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039731296098691, -7.0, -7.0, -7.0, -3.1247474752869913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8551469168353636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.191506904624152, -7.0, -3.5518767631329724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.279142006491639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4371866354801193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.007050413245592, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.893669309799605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.104640726057345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.236738743506645, -4.121920785563038, -7.0, -7.0, -7.0, -3.5565881268755133, -7.0, -4.173361116894232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.886866575028829, -7.0, -7.0, -7.0, -7.0, -7.0, -3.970974150579461, -7.0, -7.0, -7.0, -7.0, -3.605024765730024, -7.0, -7.0, -7.0, -3.5178026940930205, -7.0, -7.0, -7.0, -7.0, -3.935053589231065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.129960436522729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.28315726254433, -7.0, -7.0, -3.8295610562993927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.346352974450639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.235402180158032, -2.890446296648246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8964343519192703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.200522191802113, -7.0, -7.0, -7.0, -2.993158177701961, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6214479305574576, -7.0, -7.0, -4.292831794508626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.193924634469308, -7.0, -7.0, -7.0, -7.0, -4.179637952157813, -7.0, -7.0, -7.0, -4.158754386632288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4563470513120462, -7.0, -2.6859085515648258, -4.156549151331781, -7.0, -4.088127225457418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.400993002709646, -2.011539376573685, -2.459513646772962, -7.0, -3.0410831267035316, -7.0, -3.577836341292744, -2.508327674547125, -3.061177635447784, -7.0, -3.2458826475172615, -2.616297605937538, -2.486467376967633, -2.4096843767942002, -4.286422784794196, -2.21079991039675, -2.3902854006591365, -3.426673888021373, -3.120921081780979, -3.0114667067087155, -2.6316227980017204, -2.373887355935082, -3.483974250740474, -2.769063163755874, -2.9948245653712453, -7.0, -2.977336015364056, -2.43659912394373, -4.188168858586696, -3.3180700702467916, -2.684645915265751, -2.677037386105213, -2.532054039419485, -2.509730962204628, -3.1573272246636446, -2.4340083069744263, -2.643036884705358, -3.4452568203759215, -2.1914785023272993, -7.0, -7.0, -3.1288921961097267, -4.054842779228683, -4.2867482966137125, -7.0, -2.937656213375918, -7.0, -3.989770080726568, -4.30072588307482, -7.0, -3.505980450567084, -3.266216012243372, -7.0, -7.0, -3.3301431005564446, -7.0, -7.0, -7.0, -3.4244955574683114, -7.0, -7.0, -3.099478220000061, -3.1352797775136847, -2.8777435688491266, -7.0, -7.0, -7.0, -3.275914728871076, -7.0, -3.892193100130382, -7.0, -4.4036694793552815, -7.0, -3.420568659438226, -3.9035421416209206, -4.2151085810530935, -7.0, -4.2637070646074315, -7.0, -3.9741738279230225, -7.0, -7.0, -4.43288915534841, -3.1345991834276594, -7.0, -3.5508014270092443, -7.0, -7.0, -3.952138330237461, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1547113111232354, -4.07359005876739, -7.0, -7.0, -7.0, -7.0, -2.9423571865178624, -3.8757555792580543, -7.0, -7.0, -4.300029967882302, -7.0, -3.3359282794322196, -7.0, -7.0, -4.201670179646581, -7.0, -3.4138583422700264, -7.0, -7.0, -4.165570740632901, -4.229041573173397, -7.0, -4.176583180765493, -7.0, -7.0, -7.0, -4.014835435072798, -7.0, -7.0, -3.9381693463903202, -3.8066547239918607, -3.1665875547656306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277448759264485, -7.0, -4.199700338629511, -7.0, -7.0, -7.0, -7.0, -2.9459852948678504, -4.158663980813989, -7.0, -7.0, -3.6441184131829005, -7.0, -7.0, -7.0, -4.268835289996586, -4.161068385471174, -2.7636094789320236, -7.0, -7.0, -7.0, -7.0, -3.0053365371082617, -7.0, -7.0, -4.168055303459139, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.284791555950147, -7.0, -7.0, -7.0, -7.0, -7.0, -3.60908725848653, -7.0, -7.0, -7.0, -3.8385594645298533, -7.0, -7.0, -4.042129045119864, -7.0, -7.0, -4.169498094684968, -7.0, -7.0, -7.0, -7.0, -3.74808461124624, -7.0, -7.0, -7.0, -3.971229447276241, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.205447977051676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9151887051731564, -7.0, -7.0, -3.886490725172482, -7.0, -4.172398577939305, -7.0, -7.0, -7.0, -7.0, -4.243038048686294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.640955609396501, -7.0, -7.0, -7.0, -4.360952968049115, -3.622816660564442, -7.0, -7.0, -7.0, -7.0, -7.0, -3.191765303091737, -4.660258179206216, -7.0, -4.63136258488696, -2.8560353749424916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.59142636838178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.33693979412059, -7.0, -3.404922618201421, -7.0, -7.0, -4.325094710984229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7681847038928176, -7.0, -7.0, -4.634235368289326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.243434936520088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6523132991844616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.627795841028035, -4.625631365330661, -4.62993940053517, -7.0, -7.0, -7.0, -3.157816961558364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5508884680813524, -7.0, -7.0, -7.0, -7.0, -4.330839741208471, -7.0, -3.9556685120366013, -3.559220144744601, -7.0, -7.0, -7.0, -3.198156625567903, -7.0, -4.3305355210905585, -3.934165027520354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.503467224264229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6485161337405545, -4.62921585647718, -7.0, -3.9826781933834843, -7.0, -7.0, -7.0, -3.744048379071207, -7.0, -7.0, -7.0, -7.0, -3.688783739005256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.410827372065674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.036688766393468, -7.0, -3.4114867925782897, -7.0, -7.0, -3.275424086374576, -7.0, -7.0, -7.0, -4.628184508073413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.921669138032477, -7.0, -7.0, -7.0, -4.629969946292171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8759578791368297, -2.8444224209905213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2968085816258053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.646168378774083, -4.637339601787825, -7.0, -7.0, -7.0, -4.641236075704003, -7.0, -4.067405658437824, -7.0, -2.5681838490463007, -7.0, -7.0, -7.0, -4.1853154580036565, -4.630529571426824, -4.631565516754539, -4.335257256434532, -4.635654616118119, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.34747638204818, -7.0, -7.0, -7.0, -2.9321565530043676, -7.0, -7.0, -3.5976220662213403, -7.0, -7.0, -7.0, -7.0, -4.634819733995179, -4.150275329169186, -7.0, -7.0, -7.0, -7.0, -2.554254122485101, -4.63206229944999, -7.0, -7.0, -7.0, -4.332731257471133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.450308995076148, -4.646550753640342, -2.2965418374290882, -4.625806154480438, -3.9342863021303813, -3.8066942630765674, -7.0, -7.0, -7.0, -7.0, -4.630936119064192, -7.0, -7.0, -7.0, -7.0, -7.0, -4.628440020513509, -7.0, -7.0, -7.0, -7.0, -7.0, -4.04336227802113, -7.0, -7.0, -2.9608626434200027, -2.4162019299772806, -1.9095103513348428, -4.627611614110506, -1.3612329996313997, -4.1653234794461484, -2.953583143592621, -1.5353058117916345, -2.381861901549193, -7.0, -3.097017539281824, -2.6144632758080677, -0.6105273838866435, -0.7765305929618449, -2.3983412166786438, -2.9836907081706965, -1.6488737217779532, -2.9414612373659264, -1.6727723848149636, -2.9466318368502, -2.62740962701253, -2.0936316718609898, -2.49938550769493, -2.42319904720951, -1.8246764291958442, -2.977336015364056, -7.0, -1.3912061101745812, -2.213233791698999, -2.5239875432589938, -3.1331376987883193, -1.1452718670818902, -2.48296979991094, -2.5167044408135446, -2.7610941899352284, -2.4547116884997537, -2.582771286369577, -3.058419245331889, -2.637779303052618, -4.008267937169863, -7.0, -3.4208025946779483, -3.6157537159921604, -4.072387776173931, -7.0, -3.1803552964487887, -7.0, -2.9811047634637635, -7.0, -7.0, -4.029894889003178, -2.9962223171445928, -4.670950545585898, -4.635312810258236, -3.7704653911235964, -7.0, -7.0, -3.8072740250669654, -4.757107415601235, -7.0, -7.0, -3.9639024551700692, -2.661580842457, -2.891590005962673, -7.0, -7.0, -7.0, -2.972134435189285, -4.667490309948332, -3.555245639000004, -7.0, -4.249084161669954, -7.0, -7.0, -2.9903304761428657, -3.8802131653034277, -7.0, -4.188056208438369, -4.354933966559146, -4.272429557401614, -7.0, -7.0, -3.768077564256461, -2.9392140854464, -4.63202176705472, -3.3840460396756726, -7.0, -7.0, -3.8158717320006788, -3.6374396927036643, -7.0, -7.0, -7.0, -7.0, -2.111149081998313, -2.583325687678573, -7.0, -4.633417953284989, -4.626945698847907, -3.86722188785143, -3.369907073710945, -3.678396965988749, -7.0, -7.0, -3.7256031264971328, -7.0, -3.0385995203317187, -4.631352435804037, -7.0, -7.0, -3.471282540892828, -7.0, -3.216947446947529, -7.0, -3.6744835066510486, -3.873543408844003, -4.631017382942784, -4.632710303832954, -7.0, -7.0, -7.0, -4.385633081072282, -7.0, -7.0, -3.3612463733898506, -2.672898626627781, -1.704064865625262, -4.6239105687622875, -4.644911033878752, -7.0, -4.635483746814912, -4.625549087265309, -7.0, -7.0, -4.045694513294837, -7.0, -7.0, -4.359645792674543, -7.0, -3.8255095744151486, -3.9303478327178527, -3.5615386395828335, -7.0, -7.0, -7.0, -4.632619236619118, -2.9876662649262746, -7.0, -7.0, -7.0, -3.126293790693266, -3.5071359469857537, -7.0, -7.0, -3.2866155022896026, -7.0, -2.361118647856173, -4.6278265379179295, -4.044627943008132, -7.0, -3.2127201544178425, -3.027999846677336, -7.0, -3.7173838369155834, -7.0, -7.0, -7.0, -3.597884575183753, -7.0, -4.624354300317013, -3.961961845481778, -7.0, -7.0, -4.672891798284876, -7.0, -7.0, -7.0, -3.6321258539987804, -3.387764379602052, -7.0, -4.336899809359534, -7.0, -7.0, -2.9543289276033557, -4.1694098981407, -4.625034495895203, -2.883232955012356, -3.0161624858249008, -4.032810082226799, -3.6273231761856515, -1.3570647125607291, -4.2003853242323865, -7.0, -4.630244761469706, -7.0, -7.0, -7.0, -7.0, -2.9682299255667552, -7.0, -7.0, -7.0, -3.2852701156989976, -7.0, -7.0, -7.0, -4.625085982478932, -7.0, -7.0, -4.3252795695916895, -3.368110644916976, -7.0, -7.0, -7.0, -3.426063723800878, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7811191057733784, -4.065019214136254, -3.8756495750348585, -4.650433809651895, -4.323994202181974, -7.0, -3.6439360535105743, -7.0, -7.0, -1.3559007787531197, -7.0, -7.0, -4.636588183729843, -3.872127124489488, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8788854701365376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.448860845607441, -2.562619949426298, -7.0, -7.0, -7.0, -3.503804297090878, -3.251759854528801, -7.0, -7.0, -7.0, -7.0, -4.447638591400498, -2.7893740181644615, -7.0, -7.0, -4.158196584044788, -2.9093749020813826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.20452694299984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5487753641351265, -7.0, -7.0, -4.451479405124862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5630589791948317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.462068408086943, -7.0, -7.0, -7.0, -3.4096288416375478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.647402532488529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1528843255738686, -7.0, -4.457139784659526, -7.0, -7.0, -7.0, -2.791912529111286, -4.453104198432209, -7.0, -7.0, -7.0, -7.0, -4.448381636854661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.455453968778628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9708779609577287, -7.0, -7.0, -7.0, -7.0, -4.460040429961608, -7.0, -4.49352775559078, -3.1743613637320154, -7.0, -7.0, -7.0, -3.4241858713584445, -7.0, -4.158528336790152, -4.160948480864697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8695016026972224, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3669563247869063, -4.483515978390542, -4.484513374292612, -7.0, -7.0, -3.9300061034825893, -7.0, -7.0, -7.0, -3.637432544117484, -4.4599199557469165, -7.0, -7.0, -7.0, -3.7540423867854362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.679775150575617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.470278153606753, -7.0, -3.502923456589202, -7.0, -3.680531913962837, -3.316663311410181, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9837164739137494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557591405968501, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.174219766183947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.714497408649806, -2.971525815752038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.370096544531531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.473851770154815, -7.0, -3.7365425706549265, -7.0, -2.143460916864359, -7.0, -7.0, -7.0, -4.504729051621258, -3.9808362964839756, -7.0, -4.466585904594887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.007349420982268, -3.980124623621081, -7.0, -7.0, -2.2897007312907953, -7.0, -7.0, -3.379007509979479, -7.0, -7.0, -7.0, -7.0, -4.464385208841898, -4.453410082711584, -7.0, -7.0, -7.0, -7.0, -2.126452084878187, -4.460296326757476, -7.0, -7.0, -7.0, -7.0, -4.154256553346994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.453027693687722, -7.0, -3.5242190397438335, -4.481643246275584, -2.5684866678419978, -7.0, -4.4621882878701635, -3.0656073750355657, -7.0, -7.0, -7.0, -7.0, -7.0, -4.484869032720402, -7.0, -7.0, -7.0, -7.0, -4.153845340080965, -7.0, -7.0, -7.0, -7.0, -7.0, -4.179020086986456, -7.0, -7.0, -2.920858518855485, -2.701083998656677, -2.115810141409786, -3.4119715286436114, -1.7981696015670017, -7.0, -2.4056877866727775, -1.3253166704439294, -1.4218571139257665, -7.0, -2.3760779765022546, -2.299410066465394, -1.2922979507438739, -1.525750993485581, -2.4209387490986507, -2.283760884003622, -2.109662900499272, -2.8736800724992526, -1.728138849772079, -2.6780979584052456, -1.7018263005471468, -1.8946530416508809, -1.8857582713800698, -2.1386055309629564, -2.0135747566806343, -2.43659912394373, -1.3912061101745812, -7.0, -2.7174921845920776, -1.935735031066966, -1.9795404055227785, -1.3880986365523587, -1.9496363869101598, -1.222367170185466, -1.357887675311113, -1.8038128089007281, -1.9602925034159957, -2.4372451537473085, -2.0872973851301997, -3.421392368296887, -7.0, -2.7256773723606216, -3.233132146252907, -4.044748756778496, -4.455210427775805, -2.621477817010842, -3.680984807303974, -2.599556286536565, -7.0, -7.0, -3.366565775695184, -2.9849980366194937, -3.5624118329497274, -7.0, -3.1980152497483316, -3.620760489994206, -7.0, -3.074619551851069, -3.355975507128502, -4.477916732304635, -7.0, -3.380107825951645, -2.2775309162337645, -2.6840607460515464, -7.0, -7.0, -7.0, -2.7017330170879843, -4.511923447850146, -3.7194518238931606, -3.247250203774978, -3.5521038307411423, -7.0, -3.7316559050928637, -2.915262153350638, -3.3469952774377774, -3.990383258906234, -2.8640523809944796, -3.0796959696157464, -2.891609720508594, -3.639030895749854, -7.0, -2.2281642565150674, -2.5973430149761865, -4.15917603179347, -3.4881090860079356, -7.0, -3.5699734307202693, -3.5024817447857, -3.5806627239884357, -7.0, -7.0, -7.0, -7.0, -1.1807785634456034, -2.643847310299714, -7.0, -4.462308134571691, -4.151614972016013, -4.480064461595988, -3.097430853944242, -3.6161152654468784, -7.0, -7.0, -3.081848602267315, -7.0, -3.1743382274128167, -4.459241664878082, -7.0, -7.0, -4.04641711698399, -4.168423818103146, -3.3384564936046046, -4.461378456425079, -3.199785640163872, -4.489283322690485, -7.0, -4.46125835286184, -7.0, -7.0, -7.0, -3.840055884099814, -7.0, -7.0, -3.3262448043225046, -3.008892036344074, -1.3733789136471066, -7.0, -4.002065218826583, -7.0, -7.0, -7.0, -7.0, -7.0, -3.881341852971215, -7.0, -7.0, -7.0, -7.0, -3.3120185940611497, -3.75724415102197, -3.1718288005614204, -7.0, -7.0, -4.449817679720294, -7.0, -2.840415361234832, -4.452047240809425, -7.0, -7.0, -2.333509813402564, -2.817323773419625, -7.0, -7.0, -3.307067950661298, -7.0, -2.6998964917388424, -4.45399066996823, -3.636659803394231, -7.0, -3.1987639676613915, -2.3734806492785756, -7.0, -3.4385687168066346, -7.0, -7.0, -7.0, -3.1088884329683015, -7.0, -7.0, -3.657356393229636, -7.0, -7.0, -4.2185748892664225, -4.459151146001476, -7.0, -7.0, -3.2650668939397445, -3.0188480832550355, -4.470895383280216, -4.469011558655687, -7.0, -7.0, -3.1892563062138293, -3.7033773685123497, -4.449817679720294, -3.0737183503461227, -2.491668890310033, -7.0, -2.9863237770507656, -2.091967735086787, -3.74795530690673, -4.449339526174968, -7.0, -7.0, -7.0, -7.0, -7.0, -2.587398338914126, -7.0, -7.0, -7.0, -3.145403607683906, -7.0, -7.0, -4.449308659474037, -4.449894751981211, -7.0, -7.0, -3.9745730944738797, -3.7835319842742696, -4.4764838219144645, -7.0, -7.0, -3.2814424572708725, -7.0, -7.0, -7.0, -7.0, -4.450987704555041, -4.150710399135644, -3.733130363083499, -3.7932594110294806, -4.1862498207790875, -7.0, -7.0, -3.523601966899433, -7.0, -7.0, -2.0905560367890903, -7.0, -7.0, -7.0, -3.7881400774194143, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7979458124824967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5904981702001146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.407317240973132, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1439511164239637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.444778414819479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.681395022773371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.948819315356727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.035856484623753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.294466226161593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4030484188737224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.258779310981983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.629868118746123, -3.340848170016427, -7.0, -7.0, -3.4920149788770503, -7.0, -3.3106225169268044, -4.116159272795033, -4.265226748420167, -7.0, -4.075619945928776, -3.6846209780269676, -2.505940940259191, -2.590605436252191, -4.413199143665641, -3.5250231998087056, -3.709066337709506, -4.66293717714878, -3.565217949843888, -3.717285540869072, -3.3591712057167005, -2.88155548819778, -3.9325244970505424, -3.792888742179074, -2.1058166374336857, -4.188168858586696, -2.213233791698999, -2.7174921845920776, -7.0, -4.014923565140791, -3.5516695295755802, -3.5143817062113496, -7.0, -7.0, -7.0, -3.963953016652479, -7.0, -3.592361839214949, -2.9304905653062696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.174117981254267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216667229548209, -7.0, -7.0, -7.0, -4.081869155842856, -4.330645644407504, -7.0, -7.0, -7.0, -4.623373356812658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5100756113539493, -4.037824750588342, -7.0, -7.0, -3.2216749970707688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.63964583415458, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351138958581849, -3.5460102648496363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.752221362521766, -7.0, -7.0, -7.0, -3.384353414137506, -7.0, -7.0, -7.0, -3.762378429311964, -7.0, -4.386331279460089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.797406049676382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.222651452136772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.184577874932025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.641275757231913, -7.0, -7.0, -7.0, -3.226857570288723, -7.0, -7.0, -2.219388027689568, -7.0, -7.0, -7.0, -3.6035773681514667, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6734816970733473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703600863886312, -2.5560793781615727, -7.0, -7.0, -7.0, -3.1217359506263405, -3.305407105902434, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5349043560660567, -4.432640641207875, -7.0, -3.4303551661442375, -2.53712497340571, -7.0, -4.703678200880355, -7.0, -7.0, -7.0, -4.227363866089596, -3.857684212927998, -4.703961652091485, -7.0, -7.0, -4.403352197532708, -7.0, -7.0, -7.0, -7.0, -4.112847883836081, -4.226084115975824, -3.39451206240183, -7.0, -7.0, -3.3067080309848262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.281849481182487, -2.922552466761376, -7.0, -7.0, -4.410768800392774, -7.0, -7.0, -7.0, -4.703875777319706, -7.0, -4.7109969149162225, -7.0, -7.0, -7.0, -3.3223690256376273, -7.0, -7.0, -7.0, -7.0, -7.0, -4.706777504386875, -7.0, -7.0, -3.9797824326358735, -7.0, -4.7043993494928875, -7.0, -7.0, -7.0, -7.0, -4.703282778142782, -4.40185699938287, -4.405389053169786, -4.704630893182262, -7.0, -7.0, -4.40491065174079, -7.0, -2.5921715180832483, -7.0, -4.703463341883293, -7.0, -7.0, -7.0, -4.402287181360576, -7.0, -7.0, -7.0, -4.242392331375743, -7.0, -7.0, -7.0, -4.406233511374323, -7.0, -7.0, -7.0, -7.0, -4.008404269288749, -7.0, -7.0, -7.0, -4.404020791388131, -2.665164685826289, -4.402794248640903, -7.0, -7.0, -7.0, -7.0, -7.0, -3.883815499236417, -2.7838272880918025, -7.0, -4.404790968996309, -7.0, -3.0752150588300236, -7.0, -4.010562828804489, -4.233808065724531, -7.0, -7.0, -7.0, -4.227483917481322, -7.0, -7.0, -2.853925332171701, -4.702775077901044, -7.0, -7.0, -7.0, -7.0, -2.900770714997175, -4.4221711002794475, -4.246638070980783, -4.008583140271812, -7.0, -3.496345278086235, -7.0, -7.0, -7.0, -3.4671968807807247, -4.107676246526482, -7.0, -7.0, -7.0, -3.7520484478194387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.704099016416958, -7.0, -2.41400876822251, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703592270036801, -7.0, -3.4365894474446383, -7.0, -3.179067762715081, -7.0, -4.408129681227052, -2.399606128061048, -4.226359279795683, -3.7062738755272857, -3.802884849425611, -3.803550997782215, -3.7533957859406746, -7.0, -4.705324784486743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4663559484189665, -7.0, -3.200269990190228, -7.0, -4.708250888591378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.286697594339884, -4.102613766771564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.707024836855785, -4.106182394938962, -3.6492212391658385, -2.3958563241394613, -7.0, -7.0, -7.0, -4.007858683843716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5152477338444026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.704588024033806, -7.0, -7.0, -3.1301275018172254, -4.237258806492558, -7.0, -7.0, -4.703265577680112, -3.638314505630271, -4.229238022747195, -2.656842345127794, -7.0, -2.148734210507529, -4.4022355820161305, -4.7029558528042, -7.0, -3.890365121448124, -3.667155679972336, -4.408536744878563, -3.634183274561929, -4.235848158468363, -7.0, -7.0, -7.0, -4.704064679408567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4930888401537827, -4.708318901195369, -7.0, -4.704141933860088, -2.0536292292032847, -7.0, -7.0, -3.4253401015808675, -7.0, -7.0, -7.0, -7.0, -3.2969097705624963, -3.927900501473422, -7.0, -7.0, -7.0, -4.7043650362227245, -2.1804201501602662, -4.107888025182799, -7.0, -7.0, -7.0, -4.410389146513233, -4.406156810261728, -7.0, -7.0, -4.705401815129262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8181525516426755, -4.120030723527898, -2.4073595772172585, -7.0, -4.012026910580204, -3.3509821062800262, -7.0, -7.0, -7.0, -7.0, -4.231902649456643, -4.723997176191744, -7.0, -7.0, -7.0, -7.0, -4.405926625612947, -4.703325776319297, -7.0, -7.0, -7.0, -7.0, -3.2736377706522455, -7.0, -7.0, -1.4660437125923544, -1.9458360528338758, -2.686724987438468, -4.007244079839634, -2.936536333156518, -3.1866987985351756, -2.49410713792028, -2.251559446395231, -1.029734020966166, -7.0, -2.051105441902926, -1.6863367526203503, -2.504857425609683, -2.5837941584262274, -1.677122166906849, -2.3818526137441314, -2.5264445396360236, -1.96691887785885, -2.8334658601706924, -1.3370327400260669, -3.2464538150912925, -2.494454185160028, -1.7649961974579178, -1.039208860811914, -2.443460333175155, -3.3180700702467916, -2.5239875432589938, -1.935735031066966, -4.014923565140791, -7.0, -1.9176650178191754, -2.5938347213980166, -2.947485316123156, -2.3137396338363545, -2.3379368216171166, -2.919962188820542, -3.1755330262265606, -1.3807688691855144, -2.1455802603499063, -2.874973296107238, -7.0, -2.514672557816041, -2.5082845223131955, -3.020658300284545, -3.451581772710935, -2.360312905256625, -3.4787107555127594, -1.9551346223165285, -4.148548673088884, -4.237794993273923, -2.9462978342205512, -2.6679503290207967, -2.5443761695015814, -7.0, -2.7306176618021176, -3.314894817807367, -7.0, -2.6879460134808286, -3.016655354567462, -4.242847744653152, -4.406173856124117, -2.5723445457257155, -1.640458686908127, -2.7749792130712096, -7.0, -4.416315913177959, -7.0, -2.6313097304603423, -4.438755883731937, -3.607499175819488, -3.0525416492983686, -3.6137502334963427, -4.703781295454297, -3.784260582566084, -2.018178732002881, -3.2953282901525034, -3.333506049741619, -2.0169685917053837, -2.4044671718110897, -2.4286565668208406, -3.218010042984363, -7.0, -2.1080732087659397, -2.3471711118641507, -2.9531405612996258, -2.7453272910995308, -4.7115204156674295, -2.8528224411993004, -3.620248199186466, -3.1091475495168543, -4.102648055659481, -7.0, -7.0, -4.229220943702738, -2.6032146934613314, -2.151101406384551, -7.0, -3.179095359718127, -3.475004239923217, -2.8567206159793326, -2.2304708807665583, -3.263001660603791, -7.0, -7.0, -2.176474521057038, -4.006423252507643, -2.0746336182969043, -3.4080533142979808, -3.2604462057323165, -3.5417040232842885, -2.6514030808044518, -3.3530963019716764, -2.808902315104778, -3.2187387393887366, -3.1046236604353257, -2.733737564808792, -3.2937279257888608, -3.596394067309122, -7.0, -4.7048280367803335, -7.0, -2.6173065165235503, -4.2284859086849425, -4.703368770239115, -2.0223401021493177, -1.5688887641010931, -1.5084400205733615, -4.703196769016287, -3.465209297290123, -4.006876609403363, -3.2071881988941064, -7.0, -7.0, -4.703815654874549, -3.2456031364077282, -4.70474233316836, -3.7066324508732946, -2.829697676172511, -7.0, -2.1137040935650018, -3.5033990969678186, -2.8353651041047767, -4.702878387059499, -3.709151192339796, -4.40308618823917, -2.655486914153674, -1.9798488744665137, -3.750996669417183, -4.226642860005068, -4.704150516839799, -3.1517407044935295, -1.9155992462576952, -3.4776999283321306, -3.7532595366903325, -2.7251501016282584, -4.706060297176204, -1.6569337735489773, -4.007423429204934, -2.5155592635276585, -4.006457484638183, -3.451214843792629, -2.0164676404572313, -7.0, -2.2346251685731877, -3.804854713005252, -4.403738050363856, -3.5014187421113556, -2.937066312017428, -7.0, -7.0, -2.249465632986819, -4.230831953431828, -3.8040882957516735, -2.9440672930585112, -3.430295763840919, -3.308744955855214, -4.107031804511505, -2.2603320571010896, -1.4881782505045555, -3.3006038439866345, -2.935784279507291, -4.401986098723474, -7.0, -2.4404456585152707, -2.901540875900876, -4.226977761697296, -3.062882690130364, -1.5197512654844683, -3.1435886388415737, -2.0128297618954236, -2.419735097623596, -2.575780568156982, -4.22671157884568, -4.009442396801993, -4.226599905207357, -4.402132364931751, -4.705829514521635, -4.4086553999424645, -2.328627177542981, -7.0, -4.226780286814562, -7.0, -2.2514848516286277, -4.7035235131180295, -4.405303662984316, -4.7038500115766535, -4.704176264761226, -3.9283104872477113, -3.801146350316844, -3.860012698749663, -2.4693586096046616, -3.2563195389747777, -4.7074168686367095, -4.703935891442843, -3.2310701141047367, -4.225731307354037, -7.0, -7.0, -4.404072179076356, -3.5004080174600545, -4.705222055705383, -3.483959548273282, -2.726710912492605, -3.6838490294450406, -4.22698634552522, -7.0, -3.0661519241936213, -7.0, -4.7028869950468515, -2.43930110762843, -7.0, -7.0, -3.935549248954129, -2.6861605098427175, -4.010282991680263, -7.0, -7.0, -7.0, -7.0, -2.6918760125660888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7411938214377605, -7.0, -7.0, -7.0, -7.0, -4.315130317183602, -7.0, -7.0, -7.0, -7.0, -7.0, -3.306246268757506, -7.0, -7.0, -7.0, -3.0814136390692934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.419550989026631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.253725595250898, -7.0, -3.8812590869948047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.183981218914592, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9547890547379705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.914911441141365, -7.0, -4.2224563366792465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5471415203838537, -7.0, -4.219610719301437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.231138136029719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3652227097019267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7614767795447017, -7.0, -7.0, -7.0, -3.435213235221657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3272908044180514, -7.0, -7.0, -7.0, -7.0, -7.0, -4.32434419893904, -7.0, -7.0, -7.0, -7.0, -3.875736307687334, -7.0, -7.0, -7.0, -4.275886960301226, -7.0, -7.0, -7.0, -7.0, -4.450726262021876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.226006694729179, -7.0, -7.0, -7.0, -7.0, -3.144549301118705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.166892434227915, -7.0, -7.0, -2.9131530351912573, -4.219767844658398, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.664006990415448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.149361247980459, -3.92236209678479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9909379276601444, -2.859412255610798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8231898900874377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.240524288112364, -7.0, -7.0, -3.9510702531688118, -7.0, -7.0, -7.0, -3.5623880418581058, -7.0, -4.025428761407241, -7.0, -2.6861162052190437, -4.219060332448861, -7.0, -7.0, -7.0, -4.2354274364449696, -7.0, -3.948559662108962, -7.0, -7.0, -7.0, -7.0, -4.221440320811741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278822168352688, -7.0, -7.0, -7.0, -2.757150543316607, -7.0, -7.0, -4.342817314635733, -7.0, -7.0, -7.0, -7.0, -3.643798000679235, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8256937024148434, -4.239224378487128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8007342573129406, -7.0, -2.7383985318837345, -7.0, -7.0, -3.756576947544535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9705793057148506, -7.0, -7.0, -2.197942749161937, -2.4719460063595164, -2.9080733475736693, -7.0, -2.7582960793867843, -2.8483786204227477, -1.8979614050769982, -2.245725338344771, -2.0982023330127793, -7.0, -1.5020080105202644, -2.242305130766777, -2.684201936106831, -2.800209581421612, -2.0107939376664237, -1.06325296821847, -2.43995535374684, -2.321732417461062, -2.0747389401070246, -2.209592265024327, -2.056414769115683, -1.5763666781634307, -2.869195037904703, -2.2814310988609674, -2.164634570474998, -2.684645915265751, -3.1331376987883193, -1.9795404055227785, -3.5516695295755802, -1.9176650178191754, -7.0, -2.7850097358756543, -2.44714499709855, -1.7734801471798123, -1.7653058970960558, -2.685572997375497, -2.6826674931136196, -2.904952098322955, -1.981576361720284, -3.803610730393364, -4.242218320247613, -3.0849985064583896, -2.221921125998809, -3.2229764498933915, -7.0, -2.9481604689796845, -4.237543738142874, -3.4082399653118496, -4.048791273848409, -4.253701381011985, -3.493550987970057, -3.13569630425525, -7.0, -7.0, -4.335618349377605, -7.0, -7.0, -3.8108371511404884, -3.4208630205509762, -7.0, -7.0, -2.399167832403589, -2.8980908084740675, -2.256239193305345, -7.0, -7.0, -4.222274149796563, -2.7874452382539627, -7.0, -3.6359651915242375, -2.4298598985091915, -3.442605178964801, -7.0, -3.716754357432697, -3.643666480980489, -3.203799078428703, -4.251248762305845, -3.5385946772872883, -3.596948786692873, -2.6522463410033232, -4.278456350394209, -7.0, -3.150049945162385, -2.5658560713786627, -7.0, -3.8698548372107338, -7.0, -7.0, -4.307688539595161, -3.7254869263323838, -7.0, -7.0, -7.0, -7.0, -1.7500945520027595, -2.115416198356651, -7.0, -3.4641665133315516, -3.1845623877377895, -2.5208810563217763, -2.499955165640437, -2.6829969783596055, -7.0, -7.0, -2.694312646223346, -3.7484464587198087, -2.560144354449341, -3.5382971851679743, -2.9538105399339547, -3.1828424585586923, -2.1914188442053857, -3.1746896062920578, -2.91677425847629, -3.0097757327440036, -3.2308829988575924, -2.528036670631238, -3.634426885047629, -3.1262813018154407, -7.0, -4.223755453657241, -7.0, -2.6989888862943228, -3.9251315277591385, -7.0, -2.09738265416373, -2.0152757593060646, -1.5682914132996109, -4.218797998111738, -3.1558030208239303, -7.0, -3.645422269349092, -7.0, -7.0, -3.9196010237841112, -2.6625274978220763, -7.0, -4.2296562496672125, -3.306425027550687, -7.0, -2.4689009244729716, -3.7553920379663954, -2.8617494140448767, -7.0, -4.237166582685473, -4.221648928192229, -3.9395192526186187, -2.415761415240735, -4.2254126728659545, -7.0, -4.221701064384597, -2.543305455072855, -2.541310366621995, -3.0577421558287528, -7.0, -2.828888478052161, -7.0, -2.1902931382032444, -4.2286826097129655, -2.8933687039646, -3.7485497883614816, -2.092382702652577, -2.944729360303296, -7.0, -2.988173701342641, -4.233478391931892, -3.922543815390706, -3.7494528755696246, -2.6533813732422042, -7.0, -7.0, -3.35293250260102, -7.0, -3.930108140365738, -3.5555377913202615, -3.6351065913575105, -3.2793246654426103, -4.2366883817646155, -2.4754694067467145, -2.6374063316280676, -3.955639653023252, -2.9975319986424003, -7.0, -7.0, -2.7154794810755183, -2.65959158058081, -3.744423382307533, -2.5491475698795507, -2.0796244220539357, -2.7005306569785916, -2.509805434070105, -2.6338624181709775, -2.94509420180716, -7.0, -3.456315413106618, -4.22050034561473, -4.2187455122234745, -4.226780286814562, -7.0, -2.502336063378186, -7.0, -3.7438232216037504, -7.0, -2.5369742892668388, -7.0, -3.3829428246253754, -3.61857102812013, -3.92069713446992, -7.0, -7.0, -3.5257443001943787, -3.2338956292773764, -3.3624117830472824, -3.930465080784248, -7.0, -3.120776352315039, -7.0, -7.0, -7.0, -4.2246366386814405, -3.922543815390706, -7.0, -3.844021310509786, -2.6985466393218007, -7.0, -4.221674997070769, -7.0, -3.0635913440707676, -7.0, -7.0, -2.648273526438782, -7.0, -7.0, -3.6481159567559627, -2.690355133127491, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6841883019367963, -4.218062617826375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.245871057494562, -4.5880923482183755, -7.0, -7.0, -3.507357589416977, -3.4197492856943774, -7.0, -7.0, -7.0, -4.586508539462949, -7.0, -2.6808029121706944, -4.619635859719037, -7.0, -7.0, -2.8915643707545753, -7.0, -7.0, -7.0, -7.0, -7.0, -4.581312362231848, -3.72285125039637, -7.0, -7.0, -7.0, -7.0, -4.582813067170428, -7.0, -7.0, -7.0, -4.2940692274708905, -7.0, -3.695007137399929, -4.579177447294851, -7.0, -3.736794754924361, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.593396842300207, -3.3527409004337323, -7.0, -7.0, -4.113809702672945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.08334134193701, -7.0, -7.0, -4.579863590864233, -4.579085879525616, -4.59982850903801, -7.0, -7.0, -7.0, -4.035917794967079, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.106689409193445, -7.0, -4.10906081946941, -7.0, -7.0, -7.0, -2.9979398687097745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.123993117376059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.613251442466525, -7.0, -7.0, -7.0, -7.0, -4.588383768378728, -7.0, -3.768320905020316, -3.4225725624070504, -7.0, -7.0, -7.0, -3.4735811413625797, -4.278970693925059, -4.2869950739688525, -7.0, -7.0, -7.0, -7.0, -4.581471773962398, -7.0, -7.0, -3.208700758415077, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0489163245115374, -4.305673745669693, -4.5854268870614865, -7.0, -4.041027329343209, -4.579772167664273, -7.0, -7.0, -2.6951464433728933, -4.588294121462958, -7.0, -7.0, -7.0, -3.28060463314932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.581483158275855, -7.0, -7.0, -4.580092064700632, -3.0404879542618537, -7.0, -7.0, -7.0, -7.0, -7.0, -4.580080643863007, -7.0, -3.8969669019331548, -7.0, -3.47643549340525, -7.0, -4.110320296840297, -3.171053801432508, -7.0, -7.0, -7.0, -4.584285983002637, -4.108463541203595, -4.287969594835454, -7.0, -7.0, -4.281465173199528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.963938860030751, -7.0, -4.299801377511212, -7.0, -4.109094603121803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4855685558706275, -4.581585603670256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2903420614839938, -2.954870831225884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.97648753730519, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.59440360098501, -7.0, -7.0, -7.0, -3.9965773367182584, -7.0, -3.5882003798974735, -7.0, -2.3281705933368784, -7.0, -7.0, -7.0, -7.0, -4.285827252753274, -4.588025069632833, -3.8942052591420837, -4.592543142904612, -7.0, -7.0, -7.0, -7.0, -4.58508831746747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9076800242424197, -4.285298455375746, -7.0, -7.0, -2.6508543881639977, -7.0, -7.0, -4.160828543144547, -7.0, -7.0, -7.0, -3.9779749661809207, -3.8925620527814804, -4.282406837957956, -7.0, -7.0, -7.0, -4.581107318275928, -2.4049034996171, -3.986447011352735, -7.0, -7.0, -7.0, -4.113308149918387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.282123418809911, -7.0, -3.627896295508615, -4.127396390776607, -2.4174801954167795, -7.0, -3.811720193231691, -3.6316645608153735, -7.0, -7.0, -7.0, -7.0, -3.888269377393971, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.579932145636578, -7.0, -7.0, -4.126218019314304, -7.0, -7.0, -3.3304247430131744, -2.639123277221592, -2.1412346783573293, -7.0, -0.6587639854612518, -4.600079442261521, -2.8515538946121692, -1.435836639979589, -2.4495402967153828, -7.0, -3.180134839207975, -2.6655520394035577, -0.8317798231285242, -1.2671336945344718, -3.0169289290369714, -2.907564903106715, -1.9497756399458581, -3.024222455723751, -1.4864562142914062, -3.041981724889763, -2.3827736283347782, -2.0245083220671165, -2.266375552376499, -2.4689324896507245, -2.684810171879624, -2.677037386105213, -1.1452718670818902, -1.3880986365523587, -3.5143817062113496, -2.5938347213980166, -2.7850097358756543, -7.0, -2.1831498341535824, -2.223182988705421, -2.6411170093614063, -1.985781911791651, -2.2427243654065663, -3.0791160969890377, -2.5313946888721164, -3.391946724279145, -7.0, -2.5897053117637743, -3.6482999488182797, -4.334202350575516, -4.584794676832955, -2.925774277148833, -3.8887634042622317, -3.0154196374474895, -7.0, -4.595110255778039, -3.791278259413112, -3.012356283057885, -4.154200732412475, -7.0, -3.9353056902899253, -7.0, -7.0, -3.7658707031269545, -3.946681470082918, -7.0, -7.0, -3.6665251803374077, -2.5895893105452106, -2.5945400247532024, -7.0, -3.695043658821294, -7.0, -3.0687339932285886, -7.0, -3.00357517805747, -4.620739689951964, -3.9925358452657775, -7.0, -4.023931157373373, -3.475516833845267, -4.054137904817809, -7.0, -3.926023297896978, -4.614939378499252, -3.938569756221061, -4.305512587470589, -7.0, -3.1756121573812774, -3.1302226216788993, -4.588529405160941, -3.3881711982636977, -7.0, -4.121100029976307, -3.4741433897608056, -3.9823074227385105, -7.0, -7.0, -7.0, -7.0, -2.0242625200121336, -2.2977835894049323, -7.0, -4.112906490253314, -4.281862509737461, -4.3023201036621055, -3.4724821869260936, -3.5891897589878594, -7.0, -7.0, -3.7960388160046143, -7.0, -3.084061470177998, -4.587789512472801, -4.58601311649554, -4.599162287443591, -3.557136108599234, -4.294378035587241, -3.327917913524882, -4.589379844241917, -3.806801565307348, -3.765104169387963, -3.6841718627005906, -3.987163318162591, -7.0, -7.0, -7.0, -3.694166295933198, -7.0, -7.0, -3.0272071821786755, -2.8454883017723622, -1.5651070109504064, -4.579554960400999, -7.0, -4.583164754791726, -7.0, -7.0, -7.0, -7.0, -3.7607239721419514, -7.0, -7.0, -7.0, -7.0, -3.6309259600101225, -4.585629902197222, -3.753145151639366, -7.0, -4.587654850995718, -7.0, -7.0, -2.9263865501223236, -7.0, -7.0, -7.0, -3.3161696136272876, -3.5308889765187996, -4.586486032493526, -4.585449448985846, -3.149598825945172, -7.0, -2.380360629254868, -7.0, -4.127612259002789, -7.0, -3.1212767649547644, -2.5443331814048498, -4.103370350201992, -3.5528607876775875, -7.0, -7.0, -7.0, -3.2345502933923744, -7.0, -7.0, -4.143295907124072, -4.585911710319434, -7.0, -4.0313680628857735, -4.587722186953561, -4.607165397007267, -7.0, -3.5201911837557343, -3.5474670224263853, -3.994361151908001, -7.0, -7.0, -7.0, -2.6521457355293707, -4.303530832062248, -7.0, -2.4875802256342365, -2.866945032758351, -4.114577627000166, -3.628788204481048, -2.2170128461158742, -3.5591782023538547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0517311960598494, -7.0, -7.0, -7.0, -3.2233451849791965, -7.0, -7.0, -4.580423138411845, -7.0, -4.5840031176456115, -7.0, -4.582233863920993, -3.8270352376582064, -4.123514088042597, -7.0, -7.0, -3.984707294482673, -7.0, -7.0, -7.0, -4.582108836392919, -7.0, -4.2811925036053236, -3.422753941301348, -3.834388909363871, -3.9097806062427685, -7.0, -7.0, -3.7566469736211103, -7.0, -7.0, -2.2158522301944057, -7.0, -7.0, -4.292521884574141, -3.9097164532343447, -7.0, -7.0, -7.0, -4.105453410538649, -7.0, -3.9171482644162796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6868945016279873, -7.0, -7.0, -7.0, -7.0, -3.8495217813829723, -7.0, -7.0, -7.0, -7.0, -7.0, -3.617367343179719, -4.317666442356502, -7.0, -7.0, -2.8640258120883804, -7.0, -7.0, -7.0, -7.0, -7.0, -4.237116270535057, -3.2195354099174534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9659773740003734, -7.0, -3.410248449698567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5634810853944106, -7.0, -7.0, -7.0, -7.0, -4.233554492714523, -4.233884108765886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2643297543348835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.524370154542358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.24789965088881, -7.0, -7.0, -4.245290528606833, -3.3000299678823013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.453104198432209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7031838661780445, -4.468893547858615, -7.0, -7.0, -7.0, -3.376430951177879, -7.0, -3.7746385998091383, -4.2557547866430445, -7.0, -7.0, -7.0, -4.237468333249569, -7.0, -7.0, -3.8140976983042227, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335698551498222, -7.0, -7.0, -7.0, -7.0, -4.062506775208683, -7.0, -7.0, -7.0, -3.4431959097719598, -4.252391803181244, -7.0, -7.0, -7.0, -3.096849585224196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.290856641538179, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.536450216176842, -7.0, -7.0, -3.2599827474128915, -7.0, -7.0, -7.0, -7.0, -3.9455178220778397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.261833620575751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9335102949995018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.827024458044125, -3.482321023291508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.008960296866488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.28602960050819, -7.0, -7.0, -7.0, -7.0, -3.4962606330422306, -7.0, -4.33779857726225, -7.0, -2.602837406048462, -7.0, -7.0, -7.0, -7.0, -4.249320676637634, -7.0, -4.263091379851672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.291413254570215, -7.0, -7.0, -7.0, -2.906221190213982, -7.0, -7.0, -4.353704703572165, -7.0, -7.0, -7.0, -7.0, -4.25956998964356, -7.0, -7.0, -7.0, -7.0, -7.0, -2.696393180099337, -7.0, -7.0, -7.0, -7.0, -3.9560242822806773, -3.9438653380278805, -7.0, -7.0, -4.2396997966866605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.241222631195891, -7.0, -3.412090777733802, -7.0, -2.647142153553563, -4.237870341476738, -7.0, -3.4365978118886917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.25321681250213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.174656089737317, -2.556428521510324, -2.574080546575145, -7.0, -2.2536275242685075, -3.277127671229863, -3.03818286599066, -1.9941457669893958, -2.6972047765079417, -7.0, -3.3272174217282786, -2.4754544644931236, -2.266600329981704, -2.2005769267548483, -3.3637999454791094, -2.330328187240235, -1.891836055588394, -2.976871764227438, -2.744814345108343, -3.2966576267250685, -2.3838857369571556, -2.2126606051311555, -2.525710502874475, -2.428522865815281, -3.0256547388348216, -2.532054039419485, -2.48296979991094, -1.9496363869101598, -7.0, -2.947485316123156, -2.44714499709855, -2.1831498341535824, -7.0, -1.1405712936568675, -1.6694973429466924, -0.7789146439391479, -0.7124645792659058, -2.920367592655386, -2.77629050359667, -3.9380190974762104, -7.0, -3.079735823647553, -3.6137126531882093, -4.047352760753935, -7.0, -2.814417958920844, -4.251370505496702, -3.2514368201863437, -7.0, -7.0, -3.456335661823607, -3.0235220799647475, -4.34086036206488, -7.0, -2.898470515114087, -4.262213705476417, -7.0, -3.522009286567709, -2.834610068414402, -4.281056104583504, -7.0, -3.3655100073792745, -2.591990301559195, -2.734673526117867, -7.0, -7.0, -7.0, -3.0364933078027514, -7.0, -3.638297858979117, -4.018804483937159, -3.974373507081423, -7.0, -3.6313016868314865, -4.130011949671904, -3.8545125103702715, -7.0, -3.7263196121107756, -3.529836566775372, -3.795421160051872, -4.291057894434276, -7.0, -3.414236244397732, -3.2652408424311914, -7.0, -3.36178593172792, -4.257342526505176, -7.0, -3.4741329781460157, -3.8314698345875327, -7.0, -7.0, -7.0, -7.0, -2.014878638321159, -3.1240148788874076, -7.0, -3.9551583869257936, -7.0, -4.28443073384452, -3.38396217250729, -4.2547655324161475, -7.0, -7.0, -3.581627333755595, -7.0, -2.4965469189520992, -4.251297463677569, -7.0, -7.0, -3.049140463158965, -3.4893255507504053, -3.991004440330755, -7.0, -3.2449200439124537, -3.9977357765978985, -7.0, -3.9534697432534016, -7.0, -7.0, -7.0, -4.37383114507383, -7.0, -7.0, -3.2503824644306647, -2.760020172619173, -2.024550799858992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2479509599604097, -7.0, -7.0, -3.8414220444023592, -7.0, -3.2259451449169103, -4.24659704910637, -3.2735336801512975, -7.0, -4.251005173493635, -7.0, -7.0, -2.9596205198487553, -3.938544741419228, -7.0, -7.0, -3.313192063634804, -3.765053551849675, -4.248463717551032, -7.0, -3.076963910388137, -7.0, -2.586901841614534, -4.242789809478676, -7.0, -4.239974801116937, -3.641498898294518, -2.8331126386247925, -7.0, -3.6434921560082274, -7.0, -7.0, -4.240848658485361, -3.315923719821369, -7.0, -7.0, -3.84210976344061, -7.0, -3.944137073158098, -3.867801281134174, -7.0, -7.0, -7.0, -3.5013918525528274, -3.553701021549961, -7.0, -3.9658834267863567, -7.0, -7.0, -3.3736597194838454, -7.0, -7.0, -4.272282644290865, -3.028455053499362, -4.259832699063484, -3.5106790310322102, -3.4100176082030527, -3.877640056831926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5172618951360146, -7.0, -7.0, -7.0, -3.1488269225528294, -4.234188147853202, -7.0, -7.0, -7.0, -7.0, -7.0, -4.239149264858293, -3.811217414675501, -7.0, -7.0, -7.0, -4.249222823996674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6335290505821596, -7.0, -3.8185337947129234, -7.0, -7.0, -3.804093977891654, -7.0, -7.0, -3.408203611015591, -7.0, -7.0, -4.263754388840006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7745241924673554, -7.0, -7.0, -7.0, -4.273279131626577, -3.6769221255374807, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8490737449449446, -4.2689989585426735, -7.0, -7.0, -3.1415607147757774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5926464265465854, -7.0, -7.0, -7.0, -7.0, -4.181614951728961, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4146988443936896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.994866823015008, -7.0, -7.0, -4.201888500365973, -7.0, -4.173739713951887, -4.174117981254267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.023732456741596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8926371317827746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.184237029016371, -7.0, -3.7129301630395437, -7.0, -7.0, -7.0, -3.2469542651406975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.187041040042328, -4.172281761455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.138967138122855, -7.0, -7.0, -7.0, -7.0, -4.195512210674072, -7.0, -4.255224247479844, -3.957926386620302, -7.0, -7.0, -7.0, -3.442059381836555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.532608801355367, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9880458832342387, -7.0, -4.239499684031626, -7.0, -7.0, -4.018970808600747, -7.0, -7.0, -7.0, -3.0050542751160636, -7.0, -7.0, -7.0, -7.0, -3.220059030922857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2422355332465385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9130717403092508, -7.0, -3.561757102571363, -7.0, -4.193291602579516, -3.145182275133918, -7.0, -7.0, -4.1830989401001295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.924615217311472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.922050402167174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9528650614677883, -3.366063161378102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.345445022795782, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.631240780235509, -7.0, -7.0, -7.0, -7.0, -4.22057875463283, -7.0, -7.0, -7.0, -2.537553998479111, -7.0, -7.0, -7.0, -3.5752802381801962, -3.890700397698875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.187323269375047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7623033632877685, -4.190471770573345, -7.0, -7.0, -2.543166115347827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9023836844324715, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7329794067090094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.182528775278964, -7.0, -3.8965078459300058, -7.0, -2.648544774585949, -4.17868923977559, -7.0, -3.5826838398856826, -7.0, -7.0, -7.0, -7.0, -7.0, -4.240124730168566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.803751883915081, -2.399630307847778, -2.74925142902884, -7.0, -2.7413617328739823, -3.6216435721945732, -2.053303140550675, -1.8025366557361748, -2.1098658593045085, -7.0, -2.267292540746008, -2.6087516128943555, -2.262795212964954, -2.515521733423875, -2.6494123095453936, -2.3648375122504968, -2.40444240490541, -2.9046132121511077, -1.7289777684531455, -2.921938578371734, -1.9608053853307488, -2.306117205810236, -2.4115800968171492, -2.4329982170349678, -2.39435254569581, -2.509730962204628, -2.5167044408135446, -1.222367170185466, -7.0, -2.3137396338363545, -1.7734801471798123, -2.223182988705421, -1.1405712936568675, -7.0, -0.21937830136385722, -0.9752514664795041, -1.0716821704400683, -3.023511136233352, -2.2259606842620747, -4.075711159354416, -7.0, -2.901634334061141, -3.1606935736054114, -3.223604090098074, -4.186589091272407, -2.6484273121560085, -7.0, -3.1149970393952513, -7.0, -7.0, -2.8408156856746296, -3.175038534391645, -3.8176534974987812, -7.0, -2.885274213223267, -3.303006957714623, -7.0, -3.1698947576359866, -3.114813973009836, -7.0, -7.0, -3.0142521135405436, -2.3832551832908417, -2.892070625520591, -7.0, -7.0, -7.0, -2.886216462781363, -7.0, -3.778853217960016, -3.6692703797381965, -4.115277591395902, -7.0, -2.647883126093151, -3.7919186113238093, -3.747696582675378, -3.510062192500516, -3.678905156769131, -3.2579664095081773, -3.2581581933407944, -3.4607224866342263, -7.0, -2.906335041805091, -2.78413311507613, -7.0, -3.4595206460387544, -7.0, -4.219532135300155, -2.667149307610973, -3.3551204963352967, -7.0, -7.0, -7.0, -7.0, -1.4610328412341147, -2.4164257492763435, -7.0, -7.0, -4.181872159010333, -3.4532418730194783, -3.0652773122016446, -3.3525683861793083, -7.0, -7.0, -2.9000308247140794, -7.0, -2.7260260578286495, -7.0, -7.0, -7.0, -2.8899693344316466, -3.9116369331294423, -3.063483478027528, -2.6776898887432607, -2.8436574052692456, -3.2932151863754866, -3.7158919717962857, -4.197749067622612, -7.0, -7.0, -7.0, -3.4279929769690853, -4.181586363736856, -7.0, -3.152712368637574, -2.6247079736616548, -1.597781449602805, -4.173361116894232, -3.531018832208792, -7.0, -3.359835482339888, -7.0, -7.0, -7.0, -3.9366142619752114, -7.0, -7.0, -3.7928584219256614, -7.0, -3.0895297965599102, -3.410242820877784, -2.8383767747778115, -7.0, -7.0, -7.0, -7.0, -2.5385930662861886, -7.0, -7.0, -4.176583180765493, -2.6392255306230408, -2.4518279094757043, -3.287325760041347, -7.0, -2.753064605916495, -7.0, -2.729842160327929, -7.0, -3.088161411255697, -3.4026625253707534, -3.1434122718610147, -2.8302111525957407, -7.0, -2.8041394323353503, -3.712397131406715, -7.0, -7.0, -2.834500179293778, -7.0, -7.0, -3.7936274355090864, -7.0, -7.0, -3.600319329751661, -7.0, -7.0, -7.0, -3.3009865640441736, -2.469255421661786, -7.0, -3.0972840133231454, -7.0, -7.0, -2.742568034366142, -2.954826255726187, -7.0, -3.4394905903896835, -2.531615310222658, -3.60154396017653, -3.2610797766810538, -2.9047412987985335, -3.3557919596966648, -7.0, -4.191003634067977, -7.0, -4.173302841888186, -7.0, -7.0, -2.862926062941731, -7.0, -7.0, -7.0, -2.8458690979382313, -7.0, -7.0, -7.0, -4.176669932668149, -7.0, -7.0, -4.1801545594533485, -3.536987475130602, -3.7480587534580208, -7.0, -7.0, -4.191674531959229, -7.0, -7.0, -7.0, -4.1798389280231865, -7.0, -7.0, -3.683542319957651, -3.252731702726023, -3.545232871746966, -7.0, -7.0, -3.750893920382125, -7.0, -7.0, -2.9028055343752106, -7.0, -7.0, -3.4298060925892933, -3.243806689744405, -7.0, -7.0, -7.0, -7.0, -7.0, -3.260834312172319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2059314148945273, -7.0, -7.0, -7.0, -3.9974737588029803, -4.008429826797229, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7083894215363657, -3.9893608137762473, -7.0, -7.0, -3.65493554585486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.624168607391142, -7.0, -7.0, -7.0, -7.0, -3.8042757671290937, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9634572601167077, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03929511808431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8759027157874644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8105013477665297, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2886068903909687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1981820519249844, -7.0, -7.0, -7.0, -7.0, -3.535547279176668, -7.0, -7.0, -3.7879325337843524, -7.0, -7.0, -7.0, -3.8267584761637057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.47845105314715, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7257891635772458, -7.0, -7.0, -7.0, -7.0, -4.08188713942355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7723950610820003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2680365213593214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8781769804915065, -7.0, -3.8149464337908365, -7.0, -7.0, -3.1532791307030545, -7.0, -7.0, -3.8078055322706246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6016798173058957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5962671263955155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.960232873128512, -3.5759039703862934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.288780028452779, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6178387477170033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.937272906875669, -7.0, -7.0, -7.0, -3.30033456800233, -3.8281441073037863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.817763632280368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.630275285757692, -3.8251014115980033, -7.0, -7.0, -2.7893926651894576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.377306251068199, -7.0, -7.0, -7.0, -7.0, -7.0, -3.056487250895864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.170936108609079, -7.0, -3.0761600276347485, -7.0, -7.0, -3.8338374377003355, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9326259440217823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.776351710401327, -2.990479804575254, -3.345943741035112, -7.0, -3.1156105116742996, -3.898944466866509, -1.847366978587994, -2.1507493020831574, -2.1733771154648243, -7.0, -2.096432358024415, -2.873210325172087, -2.480819371951067, -2.786405888859511, -2.602902048623008, -2.6941838605722133, -2.5396095858813386, -2.9640109253001876, -1.5899061015528484, -2.9759098741639316, -2.374969449427609, -2.7045002939710105, -2.7235541775696275, -2.632463823370773, -2.3402953583797146, -3.1573272246636446, -2.7610941899352284, -1.357887675311113, -7.0, -2.3379368216171166, -1.7653058970960558, -2.6411170093614063, -1.6694973429466924, -0.21937830136385722, -7.0, -1.6160248753575683, -1.548220391758879, -3.018006626523271, -2.281568898995792, -3.8747426639375546, -7.0, -2.90135740013014, -3.1835210503697873, -2.972395712424915, -3.816042340921997, -2.6515330462926907, -7.0, -3.2877377643241155, -7.0, -7.0, -2.663725716009965, -3.5149238897392205, -4.03734680356809, -7.0, -3.0482863931061255, -2.9574276904698027, -7.0, -3.0479073469968614, -3.325638791790539, -7.0, -7.0, -3.0731835519016713, -2.526024644625345, -3.3195871224577425, -7.0, -7.0, -7.0, -2.996614123163156, -7.0, -4.4931000578465925, -3.516755660221549, -7.0, -7.0, -2.379115708334564, -3.60078237386667, -3.916418852628301, -3.2650537885040145, -3.534829611339736, -3.013960158703525, -3.225739915853267, -3.4532673635246596, -7.0, -3.009866199603352, -2.813601514822185, -7.0, -3.3661560276036155, -7.0, -3.8897497752640375, -2.9924209560520243, -3.5081255360831993, -7.0, -7.0, -7.0, -7.0, -1.5622280530904329, -2.24447392037623, -7.0, -7.0, -3.8048887446223913, -3.215848976111454, -2.9625086085063823, -2.9383946223434494, -7.0, -7.0, -2.693067093924229, -7.0, -2.7235639186612075, -7.0, -7.0, -7.0, -2.6753581983493837, -3.5739154404215507, -2.785482370684724, -2.319768310036801, -2.5140826625258312, -2.993142192245416, -3.353852142602988, -3.841797298874355, -7.0, -7.0, -7.0, -3.197728408739593, -3.8042076050820413, -7.0, -3.1670341139296614, -2.572686824116956, -1.7036282801644569, -3.7843319480221482, -3.212826586101233, -7.0, -3.0128372247051725, -7.0, -7.0, -7.0, -3.6265456590271294, -7.0, -7.0, -3.5141048209728325, -7.0, -2.9562885174336575, -3.1214285183679626, -2.5455320229865954, -7.0, -7.0, -7.0, -7.0, -2.4605459930373628, -7.0, -7.0, -3.792181496149679, -2.6168634908024817, -2.22645669185671, -2.9218814741317494, -7.0, -2.500061743589364, -7.0, -2.808238540175844, -7.0, -2.8417243581163993, -3.0242119239259035, -2.909154709808426, -2.948596328450484, -7.0, -2.5471392492424014, -3.345765693114488, -7.0, -7.0, -2.6012019841699203, -7.0, -7.0, -3.6917443685913742, -7.0, -7.0, -3.4433412316678793, -7.0, -7.0, -7.0, -3.0941992941110796, -2.2149279077560613, -7.0, -2.757863012151893, -7.0, -7.0, -2.615646953908509, -2.618100418196633, -7.0, -3.1868433703244703, -2.418582994066992, -3.2529136823984546, -3.131764434995244, -2.9053605846695008, -3.1101780389942686, -7.0, -3.82633400562222, -7.0, -3.7841892053809607, -7.0, -7.0, -2.7089704819510434, -7.0, -7.0, -7.0, -2.6762362167633116, -7.0, -7.0, -7.0, -3.792391689498254, -7.0, -7.0, -3.8007857903277626, -3.225154148849806, -3.4246094370095563, -7.0, -7.0, -3.827885982789856, -7.0, -7.0, -7.0, -3.8000293592441343, -7.0, -7.0, -3.5434057575549005, -2.916358225719054, -3.338904502164837, -7.0, -7.0, -3.4305587695227575, -7.0, -7.0, -2.902739608205772, -7.0, -7.0, -3.16577833129364, -2.8985756053931113, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9321969382690316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.733818089486326, -7.0, -7.0, -7.0, -4.322177931384976, -3.850196802968261, -7.0, -7.0, -7.0, -7.0, -7.0, -3.354527507512407, -7.0, -7.0, -7.0, -3.072909432901749, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3448751004890465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.966751664051378, -7.0, -3.4728126868675537, -7.0, -7.0, -4.239524703156667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2641564367458855, -3.74030346348121, -7.0, -7.0, -3.7817553746524686, -7.0, -4.234390722392193, -4.234719704621876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.486886811075451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9226605943560844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.248708735600918, -7.0, -7.0, -7.0, -3.4942937686653326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2459812555626195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4993968451810296, -7.0, -7.0, -7.0, -7.0, -4.2533864729877715, -7.0, -4.0050088206723675, -4.168320665518865, -7.0, -7.0, -7.0, -3.511427568232574, -7.0, -3.951580344903392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.462298148609655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.290568798984483, -7.0, -4.246966106558744, -7.0, -4.063126860458549, -7.0, -7.0, -7.0, -3.288897276322566, -4.253192569878443, -7.0, -7.0, -7.0, -3.0117667348918755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.449558616691692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.382359297519319, -7.0, -7.0, -3.4620302575790087, -7.0, -7.0, -4.242541428298384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.262617181538574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6754575416412085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.60580048418724, -3.474133763936972, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.310954610877564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985695859689842, -7.0, -7.0, -7.0, -7.0, -3.974327435423617, -7.0, -4.037386652582377, -7.0, -2.6179308015164584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.991070942816438, -4.248978095892654, -7.0, -7.0, -2.9003823029015727, -7.0, -7.0, -4.354338976788081, -7.0, -7.0, -7.0, -7.0, -4.260357641636152, -4.242665636645263, -7.0, -7.0, -7.0, -7.0, -2.693445042976239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.240524288112364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2986011898012517, -7.0, -2.547903632190475, -7.0, -4.256837965904041, -3.601784293878116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.254016060861037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8079857748471495, -7.0, -7.0, -3.1861977163087007, -2.6589289015478585, -2.494068357258403, -7.0, -2.597206379506389, -3.977220446635385, -3.061154752002178, -1.7405023288426078, -2.812674229639345, -7.0, -3.596769836649545, -2.341418438405759, -2.1743336224075307, -2.3911039883571332, -3.276910698188711, -2.341422311057268, -2.2796987702089755, -3.0577787686700186, -2.6480508524599364, -3.1358592762153634, -2.2182252419733373, -2.157067143420605, -2.4385783047808247, -2.4152432218225366, -2.995059990083075, -2.4340083069744263, -2.4547116884997537, -1.8038128089007281, -3.963953016652479, -2.919962188820542, -2.685572997375497, -1.985781911791651, -0.7789146439391479, -0.9752514664795041, -1.6160248753575683, -7.0, -0.52937342075733, -2.8001070595005255, -2.6464985883185874, -3.813597666223458, -7.0, -3.189305792594432, -3.966399885150024, -7.0, -7.0, -2.8251787446137353, -7.0, -3.371806458507416, -7.0, -7.0, -3.456836516966673, -3.3406848506563924, -4.341513659870251, -7.0, -2.9313796264798206, -7.0, -7.0, -3.6989048552774317, -2.894532183356678, -7.0, -7.0, -3.4824667915374334, -2.6156317506865383, -2.8270039497469024, -7.0, -7.0, -7.0, -3.079851773445166, -7.0, -3.763423833634184, -4.019490162997508, -3.849910558301496, -7.0, -3.8539009163221665, -4.431604971875214, -4.553980064848256, -3.9643539292921934, -4.028103361550306, -3.8316991783902976, -4.494961186838928, -3.5926430126038604, -7.0, -3.325470051381601, -3.2227083443035465, -7.0, -3.415314549032263, -7.0, -7.0, -3.08905271767822, -3.8319976772358966, -7.0, -7.0, -7.0, -7.0, -2.085699540165808, -3.425909012675203, -7.0, -7.0, -7.0, -4.28517460125202, -3.949032013496317, -7.0, -7.0, -7.0, -4.05952555273869, -7.0, -2.6964151297660224, -7.0, -7.0, -7.0, -4.050476427265063, -7.0, -4.29280966541729, -7.0, -3.7689585865041044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.374436714981712, -7.0, -7.0, -3.303993832369804, -3.191329177652473, -2.1187055223535607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.688330818112266, -7.0, -7.0, -7.0, -7.0, -3.73883999253075, -4.24740856192157, -4.274711914167965, -7.0, -7.0, -7.0, -7.0, -3.121140821355396, -7.0, -7.0, -7.0, -3.137586179545643, -3.8906445362952473, -7.0, -7.0, -3.430216194454889, -4.242442036037531, -2.7620039203165594, -7.0, -7.0, -7.0, -7.0, -2.7202626945460486, -7.0, -3.564922384068158, -7.0, -7.0, -7.0, -3.794092842489171, -7.0, -7.0, -4.320000804264728, -7.0, -7.0, -4.044578954876613, -7.0, -7.0, -7.0, -3.648242882068844, -3.633589637131385, -7.0, -3.9666578842017577, -7.0, -7.0, -3.3460104901909786, -7.0, -7.0, -7.0, -3.211457181167326, -4.260619875172372, -3.9373674175172897, -3.35237549500052, -4.054402366806568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.694166295933198, -7.0, -7.0, -7.0, -3.492047617347526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.032256025890453, -4.003180390771252, -4.296467738800115, -7.0, -7.0, -4.282055370683707, -7.0, -7.0, -3.3505629614916206, -7.0, -7.0, -4.264534495078272, -4.296336054602047, -7.0, -7.0, -7.0, -7.0, -7.0, -4.311457168381031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9059345858229104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7987426959928587, -7.0, -7.0, -7.0, -3.254729297425354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.769977021138206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.795880017344075, -7.0, -3.513150985376206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7262652369408156, -7.0, -7.0, -7.0, -7.0, -4.046456142412592, -4.046963154123424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6354033144631863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8364665358773564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0643831044121965, -3.496474961863589, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7482849569210996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1525329484345255, -4.0689646659444465, -7.0, -7.0, -7.0, -3.453829990084514, -7.0, -4.074304344001435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.302850212702309, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.932042300059813, -7.0, -7.0, -7.0, -3.4292030104137097, -7.0, -7.0, -7.0, -7.0, -3.658755264064613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7674257399338993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.257510583190615, -7.0, -7.0, -3.858446960810253, -7.0, -7.0, -4.058957178777311, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.111464151586654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.150909873701122, -3.750296924443472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2342008115305245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505895781219751, -7.0, -4.197941836490006, -7.0, -2.7058946115604905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.091103944090286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.068742292932981, -7.0, -7.0, -3.1301982948974314, -7.0, -7.0, -4.219741661046302, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.782606976675294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.297826142585328, -7.0, -2.6709176923704128, -7.0, -7.0, -4.361378371630884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.047235915459681, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3764774129184203, -2.670572483616967, -2.5860095587848955, -7.0, -2.7359574241167413, -3.5101426994025733, -3.0540929905136385, -1.86465533932495, -2.903364685186985, -7.0, -3.5570457946939182, -2.4032198906950484, -2.3157831192937968, -2.6626112046901063, -3.4376895963737515, -2.1637634223580404, -2.2250979492320373, -3.214360683794701, -2.8850469465668223, -3.507282278310011, -2.2380228583148147, -2.1568823890800446, -2.6479075092177413, -2.4553687449617696, -3.452706226511029, -2.643036884705358, -2.582771286369577, -1.9602925034159957, -7.0, -3.1755330262265606, -2.6826674931136196, -2.2427243654065663, -0.7124645792659058, -1.0716821704400683, -1.548220391758879, -0.52937342075733, -7.0, -2.9076341666338137, -2.8397860270784148, -4.000412383906452, -7.0, -3.1257883982795844, -4.0142124192119, -4.212533836186607, -7.0, -2.6620491649778457, -7.0, -3.660732703938095, -7.0, -7.0, -3.87735214586615, -3.391975460609762, -3.724930914192398, -7.0, -3.0633333589517497, -7.0, -7.0, -3.030724241924342, -2.8262077466008173, -7.0, -7.0, -3.825724633180373, -2.7262847745317265, -2.9233503834761776, -7.0, -7.0, -7.0, -3.2821687783046416, -7.0, -4.038712865119077, -7.0, -4.3481490343841624, -7.0, -3.4093130649092758, -7.0, -7.0, -7.0, -3.7078255683322316, -3.6793067375983877, -7.0, -3.4328090050331683, -7.0, -3.3105148857863513, -3.500117498811224, -7.0, -3.2684569231845684, -7.0, -7.0, -3.268958047188312, -3.7230860771627894, -7.0, -7.0, -7.0, -7.0, -2.2076401784239836, -3.3146465641692635, -7.0, -7.0, -7.0, -4.122445256281956, -3.7128600646644574, -7.0, -7.0, -7.0, -3.626032247829019, -7.0, -2.881001310598059, -7.0, -7.0, -7.0, -3.516746850913505, -7.0, -7.0, -7.0, -3.7633905527696125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.702419765119444, -3.245663880400659, -2.3130975003830856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8291107101552946, -7.0, -7.0, -7.0, -7.0, -3.5022905279147727, -4.066363202258494, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1291794789307543, -7.0, -7.0, -7.0, -3.3856956254105612, -3.7608244218895726, -7.0, -7.0, -3.5889716175206554, -7.0, -2.85991086583364, -7.0, -7.0, -7.0, -4.061979947074879, -3.1382575743175316, -7.0, -3.3591576384658945, -7.0, -7.0, -7.0, -3.402880133602107, -7.0, -7.0, -4.1722233414277525, -7.0, -7.0, -4.207849711130526, -7.0, -7.0, -7.0, -3.9091279419892606, -4.189995339964319, -7.0, -4.09684052033139, -7.0, -7.0, -3.9925829705113984, -7.0, -7.0, -7.0, -3.241809257706174, -7.0, -3.998847592007072, -3.5741181179393675, -4.221283799492686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5363690286780414, -7.0, -7.0, -7.0, -3.699542895027404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8897497752640375, -4.14992695911359, -7.0, -7.0, -7.0, -3.816804522879766, -7.0, -7.0, -3.571941635074462, -7.0, -7.0, -4.092088739255806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.837491808816075, -7.0, -7.0, -7.0, -3.7170210718966303, -4.119272389514709, -7.0, -7.0, -7.0, -7.0, -7.0, -3.362467974826899, -7.0, -7.0, -4.360612344908592, -3.033892647546583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.463997445885867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.372893600271661, -7.0, -4.038461196178564, -7.0, -7.0, -4.049760551762476, -7.0, -7.0, -7.0, -7.0, -4.347505649475902, -7.0, -7.0, -3.830396176483469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3481490343841624, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4350875123045923, -7.0, -7.0, -4.34713478291002, -7.0, -7.0, -7.0, -7.0, -7.0, -4.284994386722994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.353935455571521, -7.0, -7.0, -7.0, -7.0, -7.0, -3.378579576115775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055129764292919, -7.0, -7.0, -7.0, -7.0, -3.2459280618983324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.403206341644807, -3.583891177811344, -7.0, -7.0, -7.0, -3.2601622826027996, -7.0, -3.8838317133294527, -7.0, -7.0, -7.0, -7.0, -4.048810680621964, -7.0, -7.0, -3.001691849737373, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4272913145278627, -4.39084682689535, -4.39208111979816, -7.0, -7.0, -3.3707597427257125, -7.0, -7.0, -7.0, -3.787672964687493, -7.0, -7.0, -7.0, -7.0, -4.052950314117716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.348655273245765, -7.0, -3.178453177304058, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073333361861047, -7.0, -3.350933519151349, -7.0, -7.0, -3.165282220472543, -7.0, -4.353916230920363, -4.353165804965758, -7.0, -4.35694321958013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.480825865259064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.778458766742468, -4.350073489951687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8001325865508604, -3.190670462474224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2964732247752924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.609505478236499, -7.0, -7.0, -7.0, -7.0, -4.378851946448881, -7.0, -3.65097092646721, -7.0, -2.6885830844691663, -7.0, -7.0, -7.0, -4.4169565453903425, -7.0, -7.0, -4.369790824030776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.914907038697517, -7.0, -7.0, -7.0, -2.4809669269555825, -7.0, -7.0, -3.7431176252147416, -7.0, -7.0, -7.0, -7.0, -4.06597163517446, -7.0, -7.0, -7.0, -7.0, -3.8720591042767154, -2.7654053845042528, -4.0608488730388075, -7.0, -7.0, -7.0, -4.0640459628644825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.411170590636853, -3.4851888764676953, -2.5861897606478075, -7.0, -4.063220735581995, -3.978119623151293, -7.0, -7.0, -7.0, -7.0, -4.35981651710126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.363931473001837, -7.0, -4.386588133907789, -7.0, -7.0, -2.7111073515371458, -2.6668821312373145, -3.4315353034055756, -7.0, -3.3263002323564437, -3.426601617025341, -3.1752218003430523, -2.4959538825135468, -2.0797269661897304, -7.0, -3.0372405216509115, -2.6976541809638137, -2.981973846330603, -3.0014486357757595, -2.560074836702499, -2.5378937646885324, -2.534026106056135, -2.029688248483908, -2.7859865304210274, -2.9694367766828114, -2.9445987781478937, -2.6600809295199155, -2.1357775059548194, -2.2315151568930105, -3.528672501601294, -3.4452568203759215, -3.058419245331889, -2.4372451537473085, -3.592361839214949, -1.3807688691855144, -2.904952098322955, -3.0791160969890377, -2.920367592655386, -3.023511136233352, -3.018006626523271, -2.8001070595005255, -2.9076341666338137, -7.0, -3.4363591159343594, -3.7939300067726847, -7.0, -2.9024659741903083, -3.132290682892835, -3.6595993124367445, -7.0, -2.6563870314854445, -3.8834532266769703, -2.8454119666286792, -4.447824471981958, -7.0, -2.9706825677927085, -3.155044385219346, -3.050814606421516, -7.0, -2.944180088937908, -4.369104485571629, -7.0, -2.951129274015182, -2.7780228109816956, -7.0, -4.355700492781882, -3.0048292520634114, -2.290191529906219, -2.9908897569526816, -7.0, -7.0, -4.048130927028968, -2.867751632633979, -7.0, -3.0893413967336993, -2.895238327804661, -4.046430125849839, -7.0, -3.946141007378952, -3.125481265700594, -3.2888558045037004, -7.0, -2.91559767644957, -3.2008334049303198, -3.015371732477427, -4.3918169236132485, -7.0, -2.6651677940598373, -2.821915301608853, -4.361841115455327, -3.81253903397321, -7.0, -3.17345943823902, -4.414505394200718, -3.165473651207667, -4.350151066780707, -7.0, -7.0, -7.0, -3.273129932850311, -3.0386064602955156, -7.0, -3.665318271278418, -7.0, -3.306996561743261, -2.9209878672938134, -4.363292251571082, -7.0, -7.0, -2.7214372827791666, -7.0, -2.758560466760875, -3.7584198168439795, -7.0, -7.0, -3.66162340922923, -3.896213795234906, -3.9154350135754097, -7.0, -3.510659887731922, -3.4434542262000387, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4170034022680262, -7.0, -4.045929003009548, -3.2958207519595093, -2.4764699889823, -2.337916965537088, -7.0, -4.084486907735044, -4.352761191723831, -4.067201087647148, -7.0, -7.0, -4.348012638422195, -4.390811509786938, -7.0, -4.354722934448935, -3.8116587737331162, -7.0, -2.953308577080214, -4.055875039146097, -3.423773626101113, -7.0, -3.8831691450660495, -7.0, -3.5846138761717827, -2.7333878793499453, -7.0, -4.347973660278038, -7.0, -3.932575223498291, -2.9900171721769127, -7.0, -7.0, -3.580044747846509, -7.0, -2.584701927901414, -7.0, -3.43435596238644, -7.0, -3.7525285965492787, -2.407218010802163, -7.0, -2.78836123376675, -7.0, -7.0, -4.352491239988165, -3.8984326288792706, -7.0, -7.0, -3.1127055210308923, -7.0, -7.0, -3.7360297870141546, -7.0, -4.0917372829916605, -7.0, -3.0207595645137237, -2.156198160789173, -3.8979751203757345, -4.372819981678968, -4.3462355816990375, -7.0, -3.4040100848543777, -4.087497472404264, -4.348733103798286, -4.376996450740673, -2.2346412260026556, -4.367244071135225, -2.75812654954038, -3.0948309593568566, -3.4014318740294134, -7.0, -4.358524934046989, -7.0, -7.0, -7.0, -4.361255520058149, -3.3951341074778125, -7.0, -4.348285387522612, -7.0, -3.0386803610657083, -4.347349533731457, -7.0, -7.0, -7.0, -4.354185298625861, -7.0, -7.0, -3.3894141817616843, -4.3821251522253215, -7.0, -7.0, -3.881783955593385, -7.0, -7.0, -7.0, -7.0, -4.049140463158965, -7.0, -7.0, -4.1006806447251, -7.0, -7.0, -7.0, -3.906909410520852, -7.0, -7.0, -3.067644645080264, -7.0, -7.0, -4.370309495258699, -3.7932664017413886, -4.059336177389288, -7.0, -7.0, -7.0, -7.0, -3.708403901974985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.731320101718905, -7.0, -7.0, -7.0, -4.450403086155366, -3.675992076790947, -7.0, -7.0, -7.0, -7.0, -7.0, -2.69207373070237, -7.0, -7.0, -4.098297536494698, -2.893460309733855, -7.0, -7.0, -7.0, -4.38888237082715, -7.0, -7.0, -4.178624479308948, -4.388154507768882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.933419793174251, -7.0, -3.5819591348886286, -7.0, -7.0, -3.9132308711135604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9307792854229726, -3.1640106397198697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.402588055411201, -4.387781226906038, -7.0, -7.0, -2.950090118806048, -7.0, -7.0, -4.3870515144724935, -7.0, -7.0, -7.0, -7.0, -7.0, -4.132355761753956, -7.0, -4.087994255099714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.393259237826838, -4.389538177331949, -7.0, -7.0, -4.392274761571942, -7.0, -2.8421828934051807, -7.0, -4.3871227599275855, -7.0, -7.0, -7.0, -4.085789890327987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.386766415717314, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4725980077291743, -7.0, -7.0, -7.0, -7.0, -4.400261610744863, -7.0, -3.9612945052782886, -3.183696808634681, -7.0, -7.0, -7.0, -3.1170557525484806, -7.0, -4.399742926242862, -3.4991885949036172, -7.0, -7.0, -4.388136739763074, -7.0, -7.0, -7.0, -3.160429381388825, -7.0, -7.0, -7.0, -7.0, -7.0, -4.159942978047153, -7.0, -7.0, -4.395693247503584, -7.0, -3.3677715207203325, -7.0, -7.0, -7.0, -3.522851601026952, -7.0, -7.0, -7.0, -7.0, -4.556724526395461, -7.0, -7.0, -7.0, -4.391129260417903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5846911866607476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.235427436444969, -7.0, -3.1336360861599792, -7.0, -4.097812407365289, -2.237749208835019, -7.0, -2.8736023939381226, -3.2159722526627705, -3.6948157149250407, -3.4926731024258193, -3.9240551874495404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.94215692846749, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4631959668545558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.394469192347434, -4.096005739715113, -3.9604549212944278, -3.0559527218697293, -7.0, -7.0, -7.0, -4.39420644536023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.676332889201492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.401452239428341, -7.0, -4.123263475902825, -3.710405106268253, -7.0, -7.0, -7.0, -3.114410802397837, -4.0921063046052355, -3.1832848320171543, -7.0, -2.3910848271399927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8056027932561345, -7.0, -7.0, -7.0, -7.0, -7.0, -4.395169074827421, -4.391675953237296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.386531392526096, -4.397122766597578, -7.0, -7.0, -2.733069074034461, -4.388775930448715, -7.0, -3.571271989040687, -7.0, -7.0, -7.0, -4.387425422788231, -3.501914678058426, -4.3926442017384275, -7.0, -7.0, -7.0, -4.388988785124714, -2.181661112505638, -4.099490725214397, -7.0, -7.0, -7.0, -4.40348085323734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.387496606935564, -3.820634880594385, -4.123900618785896, -2.6710029687975694, -3.912647106218317, -3.925535542646001, -3.6582242699211025, -4.099715162351024, -7.0, -7.0, -7.0, -4.097569639431371, -7.0, -4.400710636773232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5198607942350755, -7.0, -7.0, -2.3036039178951855, -2.095610685225035, -1.4530461540732107, -7.0, -2.920713371359016, -3.6398515681407924, -1.517455397407657, -1.769874929688702, -2.2391198446200864, -7.0, -2.136695307197003, -1.7773155443668243, -2.6013628035857117, -2.643846314201172, -2.5728626696840635, -1.9378727145318462, -2.091780526547107, -2.5862078866547544, -2.4795573161627673, -2.3760494820288316, -2.8430024442385116, -2.2796587768571377, -2.616033061656062, -1.6457745688215348, -0.9328829155012494, -2.1914785023272993, -2.637779303052618, -2.0872973851301997, -2.9304905653062696, -2.1455802603499063, -1.981576361720284, -2.5313946888721164, -2.77629050359667, -2.2259606842620747, -2.281568898995792, -2.6464985883185874, -2.8397860270784148, -3.4363591159343594, -7.0, -3.6766544233925074, -7.0, -2.9298444960392853, -2.8383964648683504, -2.65577359512805, -7.0, -2.934941634040361, -7.0, -3.179537061079481, -4.479776792192939, -7.0, -3.378191910508821, -3.115771140513356, -3.619600109432393, -7.0, -3.2927580264854317, -4.407135862191559, -7.0, -3.5895187615052655, -2.8389594999108265, -4.420714687488031, -7.0, -2.8975618630201563, -2.6460026549925924, -2.033876869603903, -7.0, -7.0, -7.0, -3.2561094575340532, -3.4590304248104546, -4.047769253139, -3.545894439602858, -3.044686721472795, -7.0, -3.4153679817843448, -3.4549083487129435, -3.332256624164205, -4.40888414320084, -3.5011353674456522, -3.8384082784941866, -3.283662990058831, -4.126926506574775, -7.0, -3.0086407202407206, -2.7247571938130504, -7.0, -2.7044690074905664, -7.0, -4.4154074254501365, -3.846754502341561, -3.359936616294331, -4.389803762974429, -7.0, -7.0, -7.0, -1.8267847498158771, -2.131062516186049, -7.0, -4.402862957968563, -3.6926883243864563, -3.1438198253427676, -3.4158718443377936, -3.6234904981141276, -7.0, -7.0, -3.0806841966397704, -4.391252767350556, -2.849125244980034, -3.7002362963352886, -7.0, -3.8146137940059597, -3.040323913328225, -3.3315285188686907, -2.804155664912373, -3.039310641815175, -3.014117838691425, -3.7345598215794764, -3.620448384711709, -3.1970219725378053, -7.0, -7.0, -7.0, -3.2589892174623056, -4.391623077546977, -7.0, -2.550415895149083, -2.289479082290999, -1.3758611680711457, -7.0, -4.121165747534411, -7.0, -3.8042076050820413, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092913543651593, -3.447994792653729, -7.0, -2.4443901474007856, -3.5506999661491356, -2.9675145470935016, -7.0, -7.0, -7.0, -7.0, -1.8752177377158223, -7.0, -7.0, -7.0, -1.4033613482029006, -3.0691555877932926, -3.552024726583321, -7.0, -2.9528378309818355, -7.0, -2.448102176466944, -4.3933119147002, -3.0265659477323656, -4.391323326974091, -2.9458552965590736, -2.658911183001439, -7.0, -2.9337402994969355, -7.0, -7.0, -7.0, -2.384272242023868, -7.0, -7.0, -4.448783589628957, -7.0, -4.395029188533373, -4.166933094871154, -4.0981763050073265, -7.0, -7.0, -3.469026307750861, -2.775610448006361, -4.1116321117086, -3.565240460896473, -7.0, -7.0, -2.212197891476426, -2.364386402582388, -4.388509715314879, -2.2021598921798446, -2.9960736544852753, -3.1495783093880108, -3.1401543670165406, -2.871492413717169, -3.630151721833672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8462907933844055, -7.0, -7.0, -7.0, -2.7553855866496852, -7.0, -3.9158920731816305, -4.086857915659847, -7.0, -7.0, -7.0, -3.545430829465351, -3.221463142125021, -3.640762924911052, -7.0, -7.0, -3.283509973952415, -7.0, -7.0, -7.0, -7.0, -4.3898568606187425, -7.0, -3.3444225054544248, -2.3804833911645416, -3.8292555152075627, -7.0, -7.0, -3.07778069353109, -4.386908988489542, -7.0, -2.877553198541244, -7.0, -7.0, -3.806078174284573, -2.37461859451139, -7.0, -7.0, -7.0, -4.3913409650889035, -7.0, -2.385843450427921, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.456549814132931, -3.989583289311005, -7.0, -7.0, -2.765566961445306, -3.163128231581581, -7.0, -7.0, -7.0, -3.983265352566545, -7.0, -2.881047300339714, -3.8020550061776333, -7.0, -3.3860974812287905, -2.6404452028433893, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9620376865650124, -3.954281111677642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.961516011448949, -7.0, -3.7157109316222785, -7.0, -2.595725204619729, -7.0, -7.0, -3.965013450272248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4079429827990975, -3.0622058088197126, -7.0, -7.0, -4.000911062131223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0851790462224917, -7.0, -7.0, -7.0, -7.0, -3.432086985778083, -7.0, -7.0, -3.2790278056227207, -3.1245728608647534, -7.0, -7.0, -7.0, -7.0, -7.0, -3.952550293898202, -7.0, -7.0, -7.0, -7.0, -3.9821354948037695, -7.0, -3.969928189428116, -7.0, -2.472495250968145, -3.3676354197905107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.084377652510378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9604232070778296, -7.0, -3.977952121201462, -7.0, -7.0, -7.0, -7.0, -4.00650882777529, -7.0, -7.0, -7.0, -7.0, -3.9907383285075375, -7.0, -3.383564048536695, -2.406704305139731, -7.0, -7.0, -7.0, -4.023417089841105, -7.0, -3.989405318001516, -7.0, -7.0, -3.4803902567348173, -7.0, -7.0, -7.0, -7.0, -2.9527682342042683, -7.0, -7.0, -7.0, -3.952792443044092, -7.0, -2.7506369413912526, -7.0, -3.359949256382866, -3.1332651070696262, -7.0, -3.5737995822157407, -7.0, -7.0, -3.972063916008022, -3.4520932490177314, -3.990383258906234, -7.0, -7.0, -7.0, -3.470410490975931, -7.0, -7.0, -7.0, -3.66576855071938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.839023892302064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5429498488141786, -7.0, -3.60151678365001, -7.0, -3.686055033960141, -3.012282485301065, -3.9564565834098997, -7.0, -3.9706722426897194, -3.9742813588778305, -7.0, -7.0, -7.0, -3.961278679085043, -7.0, -7.0, -7.0, -3.103803720955957, -7.0, -7.0, -7.0, -2.815552206848569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.485863329597335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4786386315431668, -2.596064481371864, -7.0, -7.0, -7.0, -3.1293675957229854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.225121234750895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0493343359722838, -4.014100321519621, -7.0, -7.0, -7.0, -4.030235296012245, -7.0, -2.1036423871445606, -7.0, -3.562876579157752, -7.0, -7.0, -7.0, -4.111094410509336, -3.9847522781154137, -3.5120169694961265, -7.0, -4.006979190574277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9632209865229884, -7.0, -7.0, -7.0, -7.0, -3.956696564894651, -3.75815462196739, -3.681512586638962, -3.667125941485989, -7.0, -2.858722920116735, -7.0, -7.0, -3.3822872662579013, -7.0, -7.0, -7.0, -7.0, -3.7023012628973455, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8858386969884844, -3.9914918889101596, -7.0, -7.0, -7.0, -7.0, -3.976670880624811, -7.0, -7.0, -7.0, -7.0, -7.0, -3.952550293898202, -7.0, -7.0, -7.0, -3.668618844816744, -3.957176130404846, -3.3456677356353532, -4.0515383905153275, -3.3259523628369316, -7.0, -3.9970367108825267, -3.465680211598278, -7.0, -7.0, -3.9710437918360286, -7.0, -3.9865478134147243, -4.060168811945148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0473138158153885, -7.0, -7.0, -3.3788562684105763, -3.96559810533305, -4.135736743509474, -3.971693238949861, -3.8523335775602088, -3.433009353093142, -3.3606565148340706, -3.3521181734217267, -2.4007329088562077, -7.0, -2.7579762486280295, -3.6658997943309437, -3.887906519358385, -3.9556516778452013, -2.9334094084470976, -4.142154733486203, -3.567130971321703, -3.386863629502398, -4.271051261492347, -3.7391238429861597, -7.0, -3.6833462044894683, -3.6072673245501026, -3.3959064795712126, -3.4103764856662915, -7.0, -4.008267937169863, -3.421392368296887, -7.0, -2.874973296107238, -3.803610730393364, -3.391946724279145, -3.9380190974762104, -4.075711159354416, -3.8747426639375546, -3.813597666223458, -4.000412383906452, -3.7939300067726847, -3.6766544233925074, -7.0, -7.0, -1.7990876794565267, -3.557522239542885, -3.307006760878611, -2.8961586385578335, -2.756157762417882, -2.4671370338130614, -2.357924821619692, -4.17140463483013, -7.0, -3.3575113516164294, -2.7839421883745876, -3.0258413119868632, -7.0, -2.918307929943518, -3.104487111312395, -7.0, -2.772028165324855, -3.1774823901037768, -7.0, -7.0, -3.4549002688478176, -2.4889282435288567, -3.4895173193519526, -7.0, -7.0, -7.0, -3.0617154169664507, -3.8275954092119693, -2.311967937219121, -3.5045048435188018, -4.003955724542691, -7.0, -7.0, -3.0448624331635377, -7.0, -3.4102287485066443, -2.671833768853756, -3.3090265613775127, -2.8858698609039064, -2.9437988035219163, -7.0, -2.554658369696338, -3.1648131980042757, -3.9913146981766108, -3.4349217089943167, -7.0, -3.027879409207207, -4.106122874006655, -3.434317926102869, -7.0, -7.0, -7.0, -7.0, -3.7114697818743276, -2.835714052581448, -7.0, -3.6962689967455327, -7.0, -4.047274867384179, -3.1886238554663477, -7.0, -7.0, -7.0, -3.4712623658457846, -7.0, -3.294330540936119, -3.289053557592641, -3.981274832706589, -7.0, -3.679124935677682, -7.0, -4.06039561731991, -3.9946690218255294, -7.0, -4.0718083918331285, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1912273818740102, -7.0, -7.0, -3.737124459255048, -3.3398322343881826, -3.1329065742417876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.755379324985937, -7.0, -3.9744195738522863, -7.0, -7.0, -2.8375253094496014, -3.9797304306622854, -7.0, -7.0, -7.0, -7.0, -3.215329068686353, -3.8786223149975245, -7.0, -7.0, -7.0, -4.096423330595271, -2.189348476789841, -7.0, -7.0, -3.826787238816292, -7.0, -3.213611891844391, -3.972665592266111, -4.052309099647323, -7.0, -7.0, -4.234694407142218, -7.0, -7.0, -7.0, -7.0, -3.969042967305813, -7.0, -7.0, -7.0, -2.7822678165784755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.304336626328912, -3.4272588402704054, -7.0, -4.016657344822202, -7.0, -7.0, -3.659266331383175, -7.0, -7.0, -4.026083620800987, -2.6593813179855252, -7.0, -3.136915602292458, -3.7467120225166606, -4.162504664521149, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0664377464539925, -7.0, -7.0, -7.0, -2.9793966030856, -7.0, -7.0, -7.0, -3.9601376748637946, -7.0, -3.9611362173872253, -7.0, -2.589602982202344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9635044994142907, -7.0, -7.0, -4.079759919660093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7443712273318606, -7.0, -7.0, -7.0, -4.066400475955629, -7.0, -7.0, -7.0, -7.0, -7.0, -4.091772441419683, -7.0, -7.0, -7.0, -2.7351995484223135, -3.000434077479319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3263358609287517, -4.365572214876125, -7.0, -7.0, -7.0, -2.8419848045901137, -3.7102020146553847, -7.0, -7.0, -7.0, -1.6638671413061645, -7.0, -3.4663237943053677, -3.193958978019187, -7.0, -7.0, -3.450813427021517, -7.0, -7.0, -7.0, -7.0, -7.0, -2.591435640352701, -3.0113589537066106, -7.0, -7.0, -7.0, -3.064832219738574, -2.8145805160103183, -7.0, -3.06595298031387, -7.0, -7.0, -7.0, -3.1214632849497366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7266531289441915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1528995963937474, -2.6834973176798114, -7.0, -7.0, -7.0, -2.780923392631927, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8564267724702446, -7.0, -7.0, -4.239549720840473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8441664104502005, -7.0, -2.7283537820212285, -7.0, -7.0, -7.0, -3.2279766379455532, -7.0, -7.0, -7.0, -2.9907826918031377, -7.0, -7.0, -7.0, -3.0081741840064264, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6972293427597176, -7.0, -7.0, -7.0, -7.0, -2.399962001930988, -7.0, -7.0, -7.0, -7.0, -3.244948282443099, -7.0, -7.0, -7.0, -2.001001063405748, -3.2555137128195333, -7.0, -2.834950266583269, -4.125448733060263, -3.0170333392987803, -7.0, -2.605305046141109, -4.0440534546854, -7.0, -7.0, -3.2860071220794747, -2.657693115600798, -7.0, -7.0, -7.0, -7.0, -7.0, -3.522226814487059, -7.0, -7.0, -7.0, -7.0, -7.0, -2.44216608578472, -2.8318697742805017, -2.761301241165817, -7.0, -7.0, -7.0, -7.0, -3.002166061756508, -7.0, -7.0, -2.4055658794489867, -7.0, -7.0, -7.0, -2.6548638255819332, -7.0, -7.0, -7.0, -2.8048206787211623, -7.0, -7.0, -2.622214022966295, -2.660549282517093, -2.41161970596323, -7.0, -3.153814864344529, -3.0515383905153275, -7.0, -3.504214919957298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6956567599361905, -7.0, -3.9029813997975027, -7.0, -7.0, -2.5585711775988758, -7.0, -7.0, -3.1332194567324945, -7.0, -7.0, -7.0, -2.1955537388251134, -7.0, -2.4058583993176366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.98915306706963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.553883026643874, -2.7058637122839193, -2.539912084579118, -1.6152690965883847, -2.6050355490912556, -3.130976691605617, -4.110507067122859, -7.0, -3.0081741840064264, -7.0, -7.0, -7.0, -2.998259338423699, -7.0, -7.0, -7.0, -7.0, -2.989894563718773, -7.0, -7.0, -7.0, -7.0, -7.0, -3.720242018287057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.369586890736344, -7.0, -7.0, -7.0, -7.0, -7.0, -3.754271868683459, -7.0, -3.906200314184372, -7.0, -7.0, -7.0, -3.692582562274909, -2.7437709944998567, -3.2477278329097232, -7.0, -3.3372595397502756, -7.0, -7.0, -2.9947569445876283, -2.3479151865016914, -2.219526313697325, -2.6384892569546374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9380190974762104, -7.0, -7.0, -7.0, -3.6611498572447867, -7.0, -7.0, -2.8111056070179306, -7.0, -7.0, -2.81888541459401, -2.7271344237604884, -7.0, -7.0, -2.992995098431342, -7.0, -2.9417598138146954, -7.0, -5.100842497666186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1065308538223815, -7.0, -7.0, -7.0, -7.0, -3.041392685158225, -7.0, -3.126780577012009, -7.0, -7.0, -3.514813294999285, -4.288186923454454, -7.0, -2.6852937813867843, -2.789920935042697, -7.0, -2.9876662649262746, -1.9220114246060596, -7.0, -2.1121407636689873, -2.1059515089530225, -2.9602328731285126, -7.0, -7.0, -7.0, -7.0, -3.0153597554092144, -3.0670708560453703, -7.0, -2.8064061101420315, -7.0, -3.0224283711854865, -7.0, -7.0, -7.0, -7.0, -4.286725855353823, -7.0, -7.0, -7.0, -3.762528522447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6596215020988625, -7.0, -7.0, -3.9445813642269263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.242218320247613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.602164376494167, -2.284148632839535, -7.0, -7.0, -7.0, -3.6495173993026695, -1.504141007490718, -1.1001615990072522, -2.841428996506697, -7.0, -2.810456554359043, -7.0, -7.0, -7.0, -2.7697464671794534, -3.589055531052344, -3.9062542102482167, -2.6994040818153375, -7.0, -2.397042473902774, -4.080292702211703, -4.873727380646679, -1.9598360759497873, -2.583522632657682, -2.101899752619728, -3.113943352306837, -3.43608309864198, -4.46887879425401, -2.9814561665221264, -3.240727493506486, -1.9134062554679199, -7.0, -4.037187370937113, -3.515807635238054, -7.0, -2.87140612375896, -7.0, -3.0031444621427994, -7.0, -1.1644343445700975, -3.3577549119189194, -3.1741412484842906, -7.0, -3.1492191126553797, -7.0, -7.0, -3.6794278966121188, -7.0, -7.0, -2.192328457926367, -7.0, -7.0, -7.0, -4.023663918197793, -1.7685212664313505, -2.8124676978229344, -7.0, -3.022290870952613, -2.908773627744193, -7.0, -7.0, -3.0273496077747564, -3.231278397611435, -7.0, -3.681743602361508, -2.9410142437055695, -3.2013971243204513, -7.0, -7.0, -3.386498965550653, -3.243286146083446, -3.2764618041732443, -7.0, -7.0, -7.0, -7.0, -3.1577588860468637, -2.301391757019262, -7.0, -3.2762319579218335, -7.0, -7.0, -4.480553062699267, -3.6943906795506427, -7.0, -7.0, -3.492061604512599, -3.1264561134318045, -7.0, -3.0718820073061255, -7.0, -3.038620161949703, -2.831613855309099, -7.0, -7.0, -3.1981987286196296, -2.409510452269316, -3.7640266076920375, -7.0, -7.0, -7.0, -7.0, -2.751279103983342, -7.0, -4.347622699467242, -7.0, -2.559108289366632, -2.449478399187365, -7.0, -7.0, -7.0, -7.0, -3.7352794480604565, -3.1319392952104246, -3.026364792307931, -2.5428254269591797, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1699681739968923, -7.0, -2.7795964912578244, -3.121887985103681, -7.0, -2.9943171526696366, -3.0269416279590295, -7.0, -7.0, -2.5722906061514177, -7.0, -2.9395192526186187, -2.5435714239623657, -3.2347702951609167, -3.4863596256881286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2942898271007177, -3.019859346807118, -3.816241299991783, -3.0409976924234905, -7.0, -3.035829825252828, -7.0, -2.6447667303840188, -7.0, -7.0, -3.0128372247051725, -7.0, -7.0, -3.0947039943211667, -2.723044991643445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.576341350205793, -2.742332282357148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0993352776859577, -2.5277104376322375, -7.0, -2.864748335629659, -3.053462604925455, -7.0, -7.0, -7.0, -7.0, -3.0400966434067005, -2.6972293427597176, -7.0, -2.877563299235066, -7.0, -3.2400497721126476, -7.0, -7.0, -2.062411035797732, -7.0, -3.6399842480415883, -7.0, -3.0979510709941502, -7.0, -3.968646361965884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.570531265142131, -2.6844440291990255, -3.97657921864011, -4.569736645661217, -4.569771733076458, -3.093676328665223, -3.4111144185509046, -7.0, -4.574320700915308, -7.0, -3.6226629418839154, -7.0, -3.1746992883707756, -4.13375174566039, -7.0, -3.976281183510049, -2.3350545700813736, -7.0, -4.57063632650346, -7.0, -4.0943313492770965, -7.0, -3.793511005792858, -3.4015134379172833, -7.0, -7.0, -7.0, -7.0, -4.573312639954846, -7.0, -4.270597325510137, -7.0, -4.10872283832555, -7.0, -2.601754985726854, -7.0, -3.9705793057148506, -3.970381748583891, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6808791744268112, -3.091221989003633, -7.0, -4.269781376648798, -7.0, -3.9689613428677815, -7.0, -7.0, -7.0, -3.8755821043278855, -3.978420203258263, -7.0, -7.0, -7.0, -2.7125216046549006, -4.092381402367751, -4.569479251294796, -7.0, -7.0, -3.8916377965385367, -4.27378807956752, -7.0, -4.575845718353445, -3.3129012281886356, -7.0, -4.094447835204867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7961115793233833, -4.2708767268752394, -3.6735507734166104, -4.094529356768286, -3.728492919511281, -7.0, -2.4267489259439063, -4.272688467413575, -7.0, -7.0, -7.0, -7.0, -4.57016919245616, -4.570391143779831, -7.0, -7.0, -3.688808999699281, -4.570239294602916, -7.0, -4.569409026347427, -3.5753148805829507, -4.569549464888704, -7.0, -7.0, -7.0, -3.8766796104192007, -7.0, -7.0, -3.7954744865504764, -7.0, -3.1933670027973036, -4.570858039282002, -7.0, -7.0, -4.573544585314933, -3.800739983505454, -7.0, -3.4002572909326387, -2.961104552884867, -7.0, -7.0, -4.572220834365276, -3.0160023755050576, -4.570461210112099, -3.800396278249509, -3.434078220883039, -4.272966527115369, -7.0, -7.0, -3.7936739986571855, -7.0, -7.0, -2.7703421100328383, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5313008910172563, -3.5967729767595324, -3.4513258084895195, -4.098816717048941, -4.269933025967809, -3.731659261815723, -4.570204244943991, -7.0, -3.795995813767079, -4.295292143016351, -3.733678655677088, -7.0, -7.0, -7.0, -2.812333910950622, -7.0, -7.0, -7.0, -4.572976098995143, -7.0, -7.0, -4.1004739362576546, -7.0, -7.0, -7.0, -4.273626206272959, -7.0, -4.570531265142131, -2.5508420193755015, -4.268917131979661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5866098063935756, -7.0, -3.3891168418357758, -7.0, -4.100921680320846, -2.3656343704164615, -7.0, -4.273313851575582, -7.0, -4.097650577155367, -3.877129363769828, -4.579657861593733, -4.572871602200481, -4.571592383361307, -7.0, -7.0, -7.0, -3.9812634968287997, -7.0, -7.0, -7.0, -3.0746047445737625, -7.0, -4.114577627000166, -7.0, -4.576836417070687, -4.5704028222869075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.590641242012281, -4.271004725785696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1961531473781424, -3.2234202205399374, -2.5623689099317946, -7.0, -7.0, -7.0, -3.8759405428391736, -7.0, -7.0, -4.5722557216594995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.66854432140747, -7.0, -7.0, -7.0, -4.2689755810978065, -7.0, -3.9685646629459224, -4.569654763999852, -7.0, -4.1026280541372, -7.0, -3.3159482602535313, -3.3059958827708047, -7.0, -7.0, -7.0, -3.987420452611655, -4.574320700915308, -2.8070351926151433, -4.572976098995143, -2.8992668191298856, -4.570099078991958, -4.569654763999852, -4.570134137138968, -3.7681728007939364, -3.6742179455767, -3.73340364069255, -3.6295681544737826, -3.9811274432111134, -7.0, -4.569876978316741, -7.0, -4.093993363295885, -3.575430335305532, -4.096168183884541, -7.0, -7.0, -7.0, -7.0, -7.0, -4.57142930306149, -4.269419537511049, -3.1347375088987737, -4.576928460302419, -4.573312639954846, -4.0940982836485, -2.6242088081307733, -4.57142930306149, -7.0, -3.675228253593064, -7.0, -7.0, -7.0, -4.570542939881897, -3.883252494933286, -4.272920196193132, -7.0, -4.572488232028253, -7.0, -7.0, -2.465334349505298, -4.27814745163087, -7.0, -7.0, -7.0, -4.5811414989920385, -7.0, -7.0, -7.0, -4.572976098995143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6704314093606056, -7.0, -3.430956718067923, -3.9934031611308507, -2.5127638510577164, -4.5721277878771, -3.3498258358900697, -2.981383642081278, -4.278296208091274, -7.0, -4.09684052033139, -4.570858039282002, -3.9757993096794073, -3.8989554282244407, -4.278250442299367, -7.0, -7.0, -7.0, -3.4608862829944553, -7.0, -4.27063226051252, -7.0, -7.0, -7.0, -3.5527124506286203, -7.0, -7.0, -3.1778915151088025, -3.1677391846909155, -3.0109356647043852, -7.0, -3.096153170585375, -7.0, -3.260226984027309, -2.6499976347365273, -2.444232220713578, -7.0, -3.376987335620002, -3.0324844498918937, -2.8886191946371276, -2.8832972577942737, -2.674345246591718, -2.894986523001123, -3.1641757589822834, -2.858483962811246, -3.62875107815486, -3.2356967454881875, -3.6109793799229974, -2.754968130603507, -3.416052828653338, -2.837108073138243, -3.9888264070452757, -3.1288921961097267, -3.4208025946779483, -2.7256773723606216, -7.0, -2.514672557816041, -3.0849985064583896, -2.5897053117637743, -3.079735823647553, -2.901634334061141, -2.90135740013014, -3.189305792594432, -3.1257883982795844, -2.9024659741903083, -2.9298444960392853, -1.7990876794565267, -7.0, -7.0, -2.750317413906191, -2.424953964798759, -3.6720863073969623, -2.6988252153758836, -2.2076157982730913, -2.0927833055510514, -3.7880673136696466, -3.8076139425335747, -2.721747908322589, -2.739770065592548, -3.581277159547442, -7.0, -2.5406706777534835, -3.105793944650636, -4.571825249040829, -2.8606646256502417, -2.4408086323175966, -4.592665202751882, -7.0, -2.378339042491099, -1.9776834142348059, -2.325649322444365, -7.0, -4.589122650205851, -4.270480855202127, -2.411929234954811, -4.016887157902775, -2.8870263877196316, -3.10623340638907, -3.3616199233615767, -7.0, -3.617273000838871, -3.370947721650145, -3.331411721757633, -3.739504533616649, -2.837072617748184, -2.664750011697359, -3.0188363111861225, -3.149823711791301, -7.0, -2.1048164029455747, -2.494374636005587, -3.1471952256995244, -2.7772632504185997, -7.0, -3.634678752178682, -3.833582675940881, -3.104929817244617, -2.556887724520987, -7.0, -7.0, -7.0, -3.7334380270910614, -3.4928813974244086, -7.0, -3.978602732660473, -7.0, -3.5148907142742933, -3.177322348477116, -4.278982116865444, -4.0951577235791214, -7.0, -3.2174839442139063, -7.0, -2.531781628412806, -3.6239725120169965, -7.0, -4.59001658245561, -4.327103391877102, -3.807940721215499, -4.297026951616813, -7.0, -4.274561924706311, -4.601418934071117, -7.0, -3.97780359953627, -7.0, -7.0, -7.0, -3.7371826999516857, -7.0, -7.0, -3.6176489379831436, -2.932608678125612, -2.683539951532966, -7.0, -4.292632592082427, -7.0, -4.282009999342054, -7.0, -7.0, -7.0, -3.6937049699018094, -7.0, -4.574852754517795, -4.3103533890449945, -7.0, -3.777395748455203, -3.1284108091278755, -3.6347906462565187, -7.0, -7.0, -7.0, -4.278776457955645, -3.590083553256622, -7.0, -4.269746373130767, -4.571277816502185, -4.608836133184731, -3.1891492893536912, -7.0, -7.0, -4.1415856324913625, -4.573869100848107, -2.695830665371915, -4.097245737610607, -3.896691526562884, -4.573103783163991, -7.0, -3.752969865029084, -7.0, -3.208306962353663, -4.09941588705348, -7.0, -4.272456614923269, -4.587565053475168, -7.0, -7.0, -3.332619156864805, -7.0, -4.575545759343288, -3.394266221387696, -7.0, -7.0, -4.276989989368231, -3.3468263424137072, -3.773075617672614, -4.587284316492772, -4.585844093045212, -7.0, -7.0, -3.4220110828701387, -7.0, -7.0, -4.58840617721658, -3.2149421962885567, -4.281385662250469, -3.516242534833948, -2.9695556842208437, -7.0, -3.7256549915343533, -7.0, -7.0, -7.0, -7.0, -7.0, -4.599839422193567, -7.0, -4.570986347596933, -7.0, -2.943826991798443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.554665330979803, -7.0, -7.0, -4.269933025967809, -4.577422858733517, -7.0, -7.0, -7.0, -7.0, -4.572139419778374, -7.0, -2.99450568945658, -4.6037828898966975, -3.696651206927901, -7.0, -7.0, -4.291735048725623, -4.570204244943991, -7.0, -2.9611953874821224, -7.0, -7.0, -4.283255987338656, -4.29877668624019, -4.101116706440969, -7.0, -7.0, -3.874052529609521, -7.0, -4.130247973456816, -7.0, -4.572685768016257, -7.0, -3.603144372620182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.629708726347577, -4.316892503761295, -7.0, -7.0, -3.0148856148402015, -3.2676409823459154, -4.301919388035856, -4.308841761261316, -7.0, -4.012858306449886, -7.0, -2.950992629105126, -3.771881320190099, -4.300291066777081, -3.315970345456918, -2.308150269457855, -7.0, -4.302027726021775, -7.0, -3.525260820213098, -3.8253395531907173, -3.6050031982042876, -3.349821269512391, -4.001668823327807, -7.0, -7.0, -3.8266362136341487, -7.0, -7.0, -3.6047658847038875, -7.0, -4.329926440795451, -7.0, -2.8242413391651398, -4.300095257323717, -3.4024763265233604, -7.0, -7.0, -7.0, -7.0, -4.301225384221708, -7.0, -3.39826560744918, -3.047254366806777, -1.8363564880287062, -3.6024289848375455, -7.0, -3.7200765727681406, -7.0, -4.000021714181245, -4.301377292349344, -3.8253179093501952, -3.464084829296133, -4.019178624894263, -7.0, -7.0, -7.0, -3.0060379549973173, -7.0, -7.0, -4.301398989173564, -7.0, -3.7363765800544826, -3.4644469632811794, -4.300769340770549, -7.0, -2.9795843128465216, -3.9995220131289035, -3.349255936352989, -7.0, -7.0, -7.0, -7.0, -3.9999565683801928, -7.0, -2.566276751530018, -3.157737313164466, -2.767897616018091, -7.0, -3.462397997898956, -7.0, -2.5384149714282267, -7.0, -7.0, -7.0, -7.0, -7.0, -4.000086850211649, -7.0, -7.0, -7.0, -3.8637787291390504, -7.0, -7.0, -3.822538554147357, -2.4693096496224327, -4.300008202553813, -7.0, -7.0, -3.397657625474316, -2.6192211457496266, -7.0, -4.300508529343292, -2.81512766887421, -4.004450352989225, -2.962940070683585, -3.347850206404031, -7.0, -7.0, -3.1929532452325295, -3.5390760987927767, -7.0, -3.1073607401690504, -3.147124958647896, -4.301225384221708, -7.0, -3.827756862978617, -3.1984406460667385, -3.824494643099857, -3.7146231028714842, -2.762407618151054, -7.0, -7.0, -3.7005306569785916, -7.0, -7.0, -7.0, -3.3152504207468403, -7.0, -7.0, -7.0, -4.299964668624155, -7.0, -2.245172795269417, -3.203071758751761, -3.873862888966365, -7.0, -7.0, -3.812462124192689, -4.301225384221708, -7.0, -2.8022604758937684, -3.6494711629423424, -3.618131808061986, -7.0, -4.301268791966063, -4.301290494211371, -2.5203525040833177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.306403580380042, -7.0, -4.309502414966703, -3.6039450752328426, -7.0, -2.122116633990356, -3.044779227016736, -7.0, -7.0, -3.8244295818805045, -3.698578963307436, -4.000737673774033, -7.0, -2.7066771503975513, -7.0, -3.47633237460754, -7.0, -4.315760490665735, -1.5025532094804224, -3.523247738789921, -3.7067391125831666, -3.7059064557003114, -3.3551747163388153, -3.3577019756452953, -4.318626717029967, -7.0, -4.3038006237651745, -3.704236337308788, -4.30306639792351, -4.00114935814922, -3.848209650524033, -7.0, -7.0, -7.0, -3.602401088721594, -7.0, -4.0393546227061625, -7.0, -3.5351041538013934, -7.0, -7.0, -7.0, -4.300573746885434, -7.0, -7.0, -7.0, -7.0, -3.296665190261531, -3.5262961904825314, -7.0, -4.300247561194085, -7.0, -7.0, -7.0, -4.302049390376251, -4.300747612466259, -3.6991219808103533, -3.3100344691359895, -3.2717571463102697, -2.747979909234419, -3.4986132244051467, -7.0, -4.300769340770549, -7.0, -4.00902574208691, -7.0, -7.0, -4.305028753746333, -7.0, -7.0, -7.0, -4.299855814704268, -7.0, -3.99932632131709, -7.0, -7.0, -3.2242524199585794, -2.216233017981978, -7.0, -7.0, -7.0, -4.300899687772249, -3.3014640731432996, -3.301745991025256, -7.0, -3.827110687466011, -7.0, -4.000195388557727, -7.0, -2.5267289171353124, -7.0, -7.0, -7.0, -2.9932357714670954, -3.6097011023793995, -3.54647215540396, -7.0, -2.902062412283037, -7.0, -7.0, -7.0, -3.263945453485738, -3.6154871183986583, -3.617629297757842, -2.9105012648245125, -4.325166609792962, -7.0, -7.0, -3.999021736456061, -2.6576858792288287, -2.2381319193582705, -2.9443539096403843, -7.0, -4.304684365974386, -3.3496875548360436, -7.0, -7.0, -4.3034984457923136, -3.398330697921948, -2.5779783607363376, -3.711448682718111, -3.8297753428197034, -3.2235392038485093, -2.59009456910925, -7.0, -4.300291066777081, -3.2592866312736266, -7.0, -4.300443302006029, -3.7050721993278177, -4.000781027353495, -2.730823670555798, -3.161517733138683, -4.32095593690098, -7.0, -3.839184647626194, -7.0, -2.394777641646316, -3.539431589396556, -7.0, -7.0, -7.0, -4.020257669505882, -3.4074758852912557, -7.0, -3.824256037629682, -4.306360682861051, -7.0, -7.0, -7.0, -7.0, -4.302525732960741, -7.0, -3.228015175101788, -7.0, -3.0596239952953614, -4.046085259177423, -2.8248633390471047, -7.0, -2.4851157303738223, -3.005855493321154, -3.0385574192539826, -7.0, -4.308265533209933, -4.001365877488586, -2.8371252805687592, -3.3969931804349707, -3.3176037419331044, -4.300530269612207, -7.0, -4.29970337336519, -3.230640479632605, -4.000065139286961, -4.303973202540306, -3.602385590105105, -3.064041798987206, -4.000694315866355, -2.444321555122064, -7.0, -7.0, -2.093637827346512, -3.206251564282058, -4.282384171231339, -4.308564413561239, -3.554004321011903, -2.620976431565856, -2.7293585021344358, -2.72493870639439, -2.498405219017697, -7.0, -3.2536942589200692, -3.343052406603564, -3.1406617980802882, -2.569646790072784, -2.5970974632045323, -4.110858956731867, -2.8885932766328066, -2.1997470131327894, -3.994800899294604, -3.317919314241195, -3.9664077055553992, -3.209842548019534, -2.799436728056987, -2.7655605803956953, -3.3850835409542803, -4.054842779228683, -3.6157537159921604, -3.233132146252907, -7.0, -2.5082845223131955, -2.221921125998809, -3.6482999488182797, -3.6137126531882093, -3.1606935736054114, -3.1835210503697873, -3.966399885150024, -4.0142124192119, -3.132290682892835, -2.8383964648683504, -3.557522239542885, -2.602164376494167, -2.750317413906191, -7.0, -2.247102308100418, -4.0096420792661425, -3.189967298351272, -7.0, -2.6053449574108987, -2.2107767559059837, -2.3258644366153463, -2.718487848797103, -2.86178108426316, -3.1898410886816086, -7.0, -3.037149237069725, -4.3257413721537965, -4.003158833950862, -3.7567311710637616, -3.2894650772224656, -2.1719467399789805, -7.0, -0.7071420466449847, -2.1463918829342066, -2.977746849688124, -3.7006820883952, -3.5573868820595074, -3.400300487121445, -2.508180313730055, -3.9107310980433807, -3.121389599386456, -1.7647529287258061, -2.567082407772391, -3.456929686007518, -1.9458381834644687, -3.3956321266137643, -2.3607543603462675, -3.5494937132150133, -3.206987694756408, -3.462397997898956, -1.3932312730031822, -4.350771183053166, -3.702710497195296, -2.2925046365073523, -2.666247158263108, -7.0, -2.1560455027012795, -3.6224005533247965, -3.221273764150597, -2.9945920748044763, -3.175859573543703, -3.190288589878837, -3.457211238355728, -7.0, -7.0, -3.4576204434805464, -2.066692567004262, -3.2618033722622637, -3.0187628928164694, -3.3067894674956784, -1.7258668430871862, -2.1314843764626303, -2.9203738085519615, -3.606015715870653, -4.000694315866355, -2.378448845578422, -3.829303772831025, -2.0732821674750395, -2.7834621696507282, -3.271186609747914, -3.6382096210738157, -2.073927724573103, -3.0074632745631806, -2.4915756751290963, -3.62015688394582, -3.8340178035693295, -1.8103072096251425, -4.315634529100032, -3.841922311679451, -4.30977916448048, -3.4015297758611776, -7.0, -2.496748489605601, -4.005888024713317, -7.0, -2.8713340715842777, -1.4715151312274832, -2.5355099562291943, -3.999739345106568, -3.6447536095066053, -3.2279937659927205, -3.722633922533812, -2.960924597102376, -7.0, -2.9792881623045173, -2.9014583213961123, -7.0, -4.30982172568023, -3.772725002459211, -4.301073422940844, -2.262256231598923, -3.1355990420591975, -3.104808335056258, -7.0, -3.537714180353135, -3.3997818490757465, -4.31893939156067, -3.1375229005224505, -4.005223424858136, -3.1256330524746545, -3.0013658774885856, -3.8932622858879915, -2.872672289326085, -7.0, -3.834738518903841, -2.6531946412066914, -4.308009186238258, -1.7284436834387493, -2.3708744173977294, -3.8703453710809597, -3.226943424688905, -4.309800445601733, -3.3351337369564797, -4.302677187010019, -2.980195726856603, -3.4096161586059464, -3.5264469759599937, -2.8437481337859585, -3.4295706132786914, -4.300073495267144, -3.699555906491557, -2.560237810473034, -3.5344491888776157, -3.7089093129228483, -2.7338250600018092, -4.015129132443987, -2.806470698851535, -4.014604533436051, -2.233293770257954, -2.6859923929665883, -3.218010042984363, -3.5514906603465675, -7.0, -7.0, -2.6134212196672615, -4.0461243144366135, -3.4578170395546044, -3.2200275811379977, -2.2201189888691593, -2.269867206668517, -2.1332790851606114, -2.789155251553628, -3.6285421834125686, -3.0229707105775065, -4.314035845679718, -3.4568646864591064, -7.0, -2.9641095666974007, -4.01598810538413, -3.0988359340440947, -7.0, -3.09790774336585, -4.299921130330193, -2.3276951156740915, -4.301637582726872, -7.0, -4.001387523486641, -7.0, -7.0, -4.303735889039906, -4.30588853028431, -3.2340692861153584, -3.7379277754753852, -4.311393565000522, -7.0, -3.712355022085704, -7.0, -7.0, -7.0, -4.305652261364764, -3.827606174663971, -4.305910002904616, -2.794827527685904, -3.75949787011256, -4.0537888751837405, -3.8259883673374397, -7.0, -2.749716500604673, -7.0, -7.0, -2.8627612481426667, -7.0, -7.0, -3.8498696508006978, -3.877544107715944, -4.316117183498905, -7.0, -7.0, -3.4612626428467945, -7.0, -3.6688702669537956, -7.0, -7.0, -7.0, -3.428701599623054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.426998958756537, -3.148028219473996, -3.782114147479071, -7.0, -7.0, -3.359408564022824, -2.972804322336578, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4138025167693513, -3.9529376677509807, -7.0, -2.7374095188550136, -2.630000273287136, -7.0, -3.7289216463728594, -3.721645766289746, -3.4336898459916987, -7.0, -7.0, -3.6615813366225707, -7.0, -7.0, -7.0, -3.7356787259059048, -3.269746373130767, -7.0, -2.0117005400505548, -7.0, -3.8252313231999002, -3.1222158782728267, -2.5870436333497824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8216772586543666, -7.0, -3.7275412570285567, -2.734333025494258, -2.1374581672330395, -3.7272158209084925, -7.0, -3.4990681845107945, -7.0, -7.0, -3.4252896164467943, -3.2533380053261065, -3.2786011901837955, -3.793511005792858, -7.0, -7.0, -7.0, -1.8952364476239492, -3.2438644894340767, -3.7208205817703437, -7.0, -7.0, -3.8522359394118872, -3.4561381965502913, -7.0, -3.4626974081017172, -4.034187120793453, -2.7679799545304054, -2.020052401871201, -7.0, -7.0, -7.0, -7.0, -3.4239827296771757, -7.0, -2.1805288320314995, -2.958882280950234, -2.3864246445986614, -3.4350476413399647, -2.9710437918360286, -7.0, -2.506654059799193, -3.2726150608493985, -3.726890140741822, -7.0, -7.0, -7.0, -3.248218561190075, -3.4260230156898763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7744393091379262, -3.2438644894340767, -7.0, -7.0, -3.725258066359961, -2.530350390252444, -3.0257153839013404, -3.245759355967277, -1.970141919942742, -3.7418603940652635, -2.9638402752028625, -3.0308425028249166, -7.0, -7.0, -3.049140463158965, -3.48280214772046, -3.122625396909397, -2.5234863323432277, -2.4168887891206565, -7.0, -7.0, -7.0, -3.4133872411492066, -7.0, -3.781827152932428, -1.6678905292311565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.675503384727957, -7.0, -3.7203247174174416, -7.0, -3.118595365223762, -3.1180993120779945, -2.299164733747734, -3.4081834128693056, -3.5883277412249504, -3.7647737169110402, -7.0, -4.052693941924968, -3.424718337331567, -3.120491670672996, -1.8729433234927009, -3.1828709639889086, -2.782114147479071, -7.0, -7.0, -7.0, -2.413789632942366, -3.4191293077419758, -7.0, -7.0, -3.7449185424413534, -7.0, -7.0, -3.4742162640762553, -7.0, -3.269045709657623, -3.737987326333431, -3.4550733759211245, -3.4316853446860116, -7.0, -1.8251445416738838, -3.246826721711981, -7.0, -7.0, -3.426267207139606, -3.7241939195143297, -3.7281101841003403, -7.0, -1.567188673731501, -7.0, -3.2436049203372175, -7.0, -7.0, -1.3242559139073553, -2.6464037262230695, -1.8064954803413185, -2.269590767796998, -2.1382641781004526, -1.873993263073632, -3.7880268840958036, -3.2667802957655163, -7.0, -3.7451528950769006, -3.7327956982893293, -3.030032704936171, -3.5094713521025485, -7.0, -7.0, -7.0, -4.125318578123527, -7.0, -3.3805730030668872, -7.0, -2.9242792860618816, -3.4261044280965076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.73870130043471, -3.4190465771041594, -2.8761353300030206, -3.245430407281296, -7.0, -7.0, -7.0, -7.0, -3.425044874551389, -2.43426466970869, -2.866508861395503, -3.318793504793297, -2.990800554937705, -7.0, -7.0, -7.0, -3.155867191785367, -7.0, -7.0, -3.262609273845055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2584776449785178, -2.7882273104751665, -7.0, -7.0, -3.7204074008031087, -2.9457147140598603, -2.549901999869041, -2.277772882850179, -3.722057771331464, -3.436242180871562, -7.0, -7.0, -2.760480478279665, -1.7989348563069356, -3.118430077122089, -7.0, -2.946042669130686, -3.3685348052638817, -2.907871825014827, -2.6159938644667187, -3.4437322414015967, -3.41604582768641, -7.0, -7.0, -7.0, -3.3617750393741854, -3.7742979384992776, -3.4805099729419604, -2.8588712445685736, -7.0, -7.0, -7.0, -3.721645766289746, -2.499525364321282, -1.8703114792547921, -2.901302604477304, -3.7200765727681406, -7.0, -3.7372721765355434, -7.0, -3.4236553925733784, -7.0, -3.426592582305156, -1.8317026370805913, -2.991964044403458, -3.445993181787647, -2.3142724592544885, -2.5353420781776848, -3.734399742520567, -3.7223870941771238, -3.731145381297382, -7.0, -3.24551266781415, -7.0, -3.728272597895017, -2.2079311274173823, -2.5451524256424958, -7.0, -3.741624257503812, -7.0, -7.0, -3.12792263183849, -3.006323393378873, -7.0, -7.0, -7.0, -3.194653071952934, -3.0615278708905076, -3.72222246396973, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7375901662857216, -7.0, -7.0, -3.448474428212161, -2.8243699338659654, -3.243781916093795, -3.5769169559652068, -3.4279821568454762, -7.0, -1.9859892855571855, -3.281033367247727, -7.0, -3.7203247174174416, -3.0522320902523346, -7.0, -2.358593700955241, -2.986995539724382, -3.308422115236931, -3.723291446477584, -3.721068301797159, -7.0, -2.552668216112193, -3.7255849722706946, -2.8901015084080566, -7.0, -2.64479015953634, -3.7279477095447966, -2.109288363833595, -7.0, -7.0, -2.7690686889664704, -3.881947847027854, -7.0, -3.752893154884594, -4.503627281356413, -3.8536373819585945, -7.0, -3.574768941501752, -2.926107152304904, -7.0, -2.9197935241116775, -3.2491779675001773, -7.0, -4.835944100093848, -2.6032029107631343, -7.0, -3.8680563618230415, -2.86485122194783, -4.174873528887417, -3.6180195550634915, -7.0, -4.273454356354353, -3.7954976699424585, -3.048053173115609, -3.0507405516030395, -4.2867482966137125, -4.072387776173931, -4.044748756778496, -7.0, -3.020658300284545, -3.2229764498933915, -4.334202350575516, -4.047352760753935, -3.223604090098074, -2.972395712424915, -7.0, -4.212533836186607, -3.6595993124367445, -2.65577359512805, -3.307006760878611, -2.284148632839535, -2.424953964798759, -2.247102308100418, -7.0, -3.760573253944394, -3.91171676912009, -3.7803893284709527, -2.350127510310411, -2.0614127939332474, -2.264292995777203, -2.5798355426107604, -3.372175286115064, -3.226299102605581, -7.0, -4.017409008536211, -3.811709026696191, -3.2596735002046984, -3.61066016308988, -2.2364554365485083, -3.16345955176999, -7.0, -2.1618775133441885, -2.6974115296424017, -3.9828137621318627, -3.4308809464528913, -3.3661738280168447, -3.735119634081872, -2.401114801918744, -3.988603543345664, -4.188375307998576, -2.557795833605628, -3.1371166405827675, -2.774354733944107, -3.6808338953273694, -2.3076694666603705, -3.4250811413139908, -3.1190578375232376, -3.6765107102825536, -3.0849845933781146, -2.9448190303561415, -2.470840026689671, -2.73814608871206, -3.064659538033753, -2.3278748299030187, -7.0, -2.847971643535726, -7.0, -3.843419665204918, -2.180679778900204, -2.905852665734307, -2.3737912227975784, -3.7309436934277356, -7.0, -3.7537362221750104, -4.227423895933663, -2.056726239579111, -3.7348798027926278, -3.015778756389041, -7.0, -2.547129786025174, -2.915194571282631, -2.7475530418655225, -7.0, -7.0, -2.8981372642370817, -3.745465168670727, -2.9950132843541937, -2.934209787569329, -7.0, -7.0, -2.70251259492133, -7.0, -2.7759183689513516, -7.0, -2.6815427260943268, -2.3241741119063604, -3.7777891874348675, -3.312318429847517, -3.75724415102197, -3.739651443709377, -7.0, -2.868203455637116, -7.0, -3.7259932589247224, -4.060874040047298, -1.9824710381122468, -3.007986327869048, -7.0, -7.0, -3.749581734865559, -7.0, -7.0, -7.0, -3.730216840568694, -3.283018392821262, -3.7388598020722004, -2.8019370074044843, -7.0, -7.0, -3.526511582284746, -2.216957207361097, -2.3215293907256065, -7.0, -7.0, -3.255754786643044, -7.0, -3.821824563121178, -7.0, -3.7300551523755, -3.7333577879255855, -3.9433955765089546, -3.1565112927708103, -7.0, -7.0, -3.51018741901152, -7.0, -2.6707772914123376, -2.5215995264411646, -7.0, -2.6648769198312108, -7.0, -4.129012793126035, -7.0, -3.7075701760979363, -7.0, -3.739255803268511, -3.271066772286538, -3.5336449787987627, -3.721563318357481, -3.426673888021373, -2.876506504265881, -7.0, -7.0, -3.4114934392137135, -7.0, -7.0, -3.07838430874819, -3.062581984228163, -3.2069607291557105, -7.0, -7.0, -7.0, -7.0, -2.9755788462970836, -3.5770319856260313, -3.7331972651065697, -3.2371036915866878, -2.7540423867854362, -2.900913067737669, -3.3047981671445035, -3.128022113260405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7826875682349663, -3.5989545668854097, -7.0, -3.2539031250960253, -7.0, -2.188436857621509, -7.0, -7.0, -7.0, -3.2561562792129193, -3.7552648914122466, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731346975545955, -3.4728295567127057, -7.0, -7.0, -7.0, -7.0, -3.438067450453494, -7.0, -2.7814412051174204, -3.9194964878630616, -3.9003671286564705, -7.0, -7.0, -2.0638537112918005, -7.0, -3.721398375521505, -3.1253185781235264, -7.0, -7.0, -2.860737174321432, -3.900039235487325, -7.0, -3.720985744153739, -7.0, -2.7444494574467986, -7.0, -3.9367649976099415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.786751422145561, -7.0, -7.0, -7.0, -7.0, -2.799242058812066, -3.368565785360332, -2.7895807121644256, -7.0, -7.0, -7.0, -2.7267272090265724, -2.742934505531679, -7.0, -7.0, -2.809896246602439, -3.1632818171729102, -7.0, -7.0, -7.0, -2.5397032389478253, -7.0, -2.8567288903828825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.866444877666462, -7.0, -2.423245873936808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.955527405293444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7423715832469, -7.0, -7.0, -7.0, -7.0, -3.376576957056512, -7.0, -7.0, -7.0, -3.9269081017054357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.061829307294699, -2.852479993636856, -7.0, -7.0, -2.889040982413291, -2.3434085938038574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9204711793184543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0257153839013404, -7.0, -7.0, -7.0, -7.0, -3.295567099962479, -7.0, -7.0, -7.0, -7.0, -2.8270460170047342, -7.0, -7.0, -4.1103539826640025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.133584525142688, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4272810597615218, -3.469380135849925, -3.4795753101749884, -1.5487493628768414, -7.0, -3.8165064370463573, -7.0, -7.0, -7.0, -7.0, -2.4245549766067134, -7.0, -7.0, -7.0, -3.610731120443506, -7.0, -7.0, -7.0, -2.9148718175400505, -7.0, -7.0, -7.0, -7.0, -2.9253120914996495, -7.0, -7.0, -7.0, -7.0, -3.8860634722671143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5276759237063207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.63382180730168, -7.0, -3.393399695293102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.586212104232087, -3.2555137128195333, -3.946350925999629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.002079626393121, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4435758797502576, -2.7974983643715756, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9604877657203366, -7.0, -4.502153892871361, -7.0, -7.0, -7.0, -3.6504046698680317, -2.1231253958448315, -2.6398183918310933, -3.2511513431753545, -3.2350231594952237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.479719235439571, -7.0, -7.0, -7.0, -3.1788171333145847, -7.0, -7.0, -7.0, -7.0, -7.0, -2.936513742478893, -7.0, -7.0, -2.958085848521085, -7.0, -7.0, -7.0, -7.0, -3.3665094270086184, -3.1341771075767664, -7.0, -7.0, -7.0, -7.0, -3.0141003215196207, -7.0, -7.0, -2.9148718175400505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9459607035775686, -7.0, -7.0, -7.0, -4.154816235509648, -7.0, -7.0, -4.248120459883603, -7.0, -7.0, -7.0, -7.0, -3.0972573096934197, -7.0, -3.1370374547895126, -7.0, -7.0, -7.0, -2.3001605369513523, -7.0, -7.0, -7.0, -7.0, -7.0, -2.954724790979063, -7.0, -7.0, -7.0, -4.44897670381325, -7.0, -7.0, -4.132739838260885, -7.0, -3.726890140741822, -3.6252952983922326, -2.956904441636584, -7.0, -3.5678886061861617, -4.578730871952774, -7.0, -7.0, -3.9222755373836495, -7.0, -4.394276526767821, -7.0, -7.0, -4.612052355179759, -7.0, -7.0, -7.0, -3.94215692846749, -7.0, -7.0, -7.0, -4.455210427775805, -7.0, -3.451581772710935, -7.0, -4.584794676832955, -7.0, -4.186589091272407, -3.816042340921997, -7.0, -7.0, -7.0, -7.0, -2.8961586385578335, -7.0, -3.6720863073969623, -4.0096420792661425, -3.760573253944394, -7.0, -2.9839643910590135, -3.1122697684172707, -2.6820955996306606, -7.0, -7.0, -4.081779226767534, -3.6727749524390982, -7.0, -7.0, -2.907795114870337, -2.6384892569546374, -7.0, -3.5347873586294916, -7.0, -7.0, -7.0, -3.5150786750759226, -2.610050179649368, -5.173436862713784, -7.0, -7.0, -7.0, -7.0, -7.0, -4.642731544081733, -7.0, -7.0, -7.0, -7.0, -3.717504074764202, -7.0, -7.0, -3.677789391068861, -3.578524605274993, -3.467548913204926, -3.1760912590556813, -7.0, -2.412083448112903, -4.567308742295084, -3.132899769944483, -4.636628292196984, -7.0, -7.0, -7.0, -3.179592822341174, -7.0, -7.0, -7.0, -7.0, -7.0, -4.004493337547275, -7.0, -7.0, -7.0, -7.0, -3.527243116388089, -7.0, -7.0, -7.0, -3.8036619232362243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5504729571065634, -7.0, -7.0, -7.0, -4.343270700650801, -4.141990345122414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7285161047597666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5257572431523108, -7.0, -7.0, -7.0, -7.0, -4.040979729669609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9353056902899253, -7.0, -7.0, -3.7471786713601642, -7.0, -7.0, -7.0, -3.7539658658651605, -3.3922571613416745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4746740514121064, -7.0, -3.671913012441587, -3.988269033214435, -7.0, -7.0, -7.0, -7.0, -7.0, -2.940516484932567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6130863955560057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.394889257167419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9849096841478056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1718187977917682, -4.074816440645175, -7.0, -7.0, -2.9986661172549796, -3.3374307352647072, -7.0, -7.0, -7.0, -4.069631102620343, -4.045088161542816, -3.129459704839323, -3.6929643596462265, -7.0, -7.0, -2.679417801318545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.593904201112881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0973267357157725, -7.0, -2.6482797891073147, -7.0, -7.0, -3.7536213547777604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5045795924147223, -7.0, -7.0, -4.084147133154448, -7.0, -4.0468462039458215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7311050512159203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.764512374855157, -3.4384948823144637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0687052196919415, -4.052039507001472, -7.0, -7.0, -2.5577954361732025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0477031081343045, -7.0, -7.0, -3.036129648862875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0587675553704194, -4.054766217838991, -3.4472937271664454, -7.0, -7.0, -7.0, -7.0, -4.075765878215734, -7.0, -3.6755950563867463, -2.4428529063688726, -7.0, -7.0, -7.0, -3.639639195951458, -7.0, -4.074670188924007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2900782787982696, -7.0, -7.0, -7.0, -7.0, -7.0, -2.990366607893781, -7.0, -3.8317418336456384, -3.1112251630263263, -4.049683089088249, -3.756154136574281, -7.0, -7.0, -4.060471192797679, -7.0, -4.075473964588946, -7.0, -7.0, -7.0, -3.1533765391396362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3614984895639037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0457140589408676, -3.799064719351008, -7.0, -3.4793593328069714, -7.0, -7.0, -3.1378512485602417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7505855273410087, -7.0, -7.0, -7.0, -3.3903344475118518, -7.0, -7.0, -7.0, -3.328016973644657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8490199494984036, -2.329607016300816, -7.0, -7.0, -7.0, -3.7617775375081783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7118704712055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.078275522086601, -7.0, -3.52283531366053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.835276892005453, -7.0, -2.9726450358936027, -4.046729222266487, -4.045244720478147, -7.0, -3.875928984922927, -3.225309281725863, -3.597329464234929, -7.0, -3.6119002460753435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.047975405279086, -4.132867788319085, -7.0, -7.0, -7.0, -2.6919141740681636, -7.0, -7.0, -3.3745912490715475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788513892301845, -3.034263748439709, -7.0, -7.0, -7.0, -7.0, -3.763128376799137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3434523602537487, -3.8252637950292847, -3.097332906380686, -7.0, -7.0, -3.300378064870703, -7.0, -7.0, -7.0, -7.0, -4.072323438293041, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8217099972983766, -7.0, -7.0, -4.020294973084726, -3.6484901171778015, -3.106811486925355, -7.0, -3.2750232653226883, -7.0, -2.237217718184282, -2.2977910670286694, -2.6262598343477097, -7.0, -3.6364678360987646, -3.1407862902279273, -2.739611120396931, -2.714370798675753, -3.1364644505475163, -2.8110793523514945, -2.683306160151271, -3.445105801862532, -2.6436836227728864, -3.3891829662320165, -3.099887727411467, -2.696359566292455, -2.881527305640932, -2.7685653225944606, -3.151561363449798, -2.937656213375918, -3.1803552964487887, -2.621477817010842, -7.0, -2.360312905256625, -2.9481604689796845, -2.925774277148833, -2.814417958920844, -2.6484273121560085, -2.6515330462926907, -2.8251787446137353, -2.6620491649778457, -2.6563870314854445, -2.934941634040361, -2.756157762417882, -7.0, -2.6988252153758836, -3.189967298351272, -3.91171676912009, -2.9839643910590135, -7.0, -3.374675041177133, -2.3124147930253374, -3.627109711211139, -3.79619259685592, -2.454111254290318, -2.8349326248860227, -2.8209673146717194, -7.0, -2.9307077936771586, -2.596668024008441, -7.0, -0.952877875223359, -2.709469498990783, -4.117867626566016, -7.0, -3.0055834614855628, -2.0544809452212145, -2.925674902660467, -7.0, -4.107209969647869, -7.0, -3.0698782319505344, -3.191674531959229, -2.9921955081228835, -3.5710679786102455, -3.6492179924562715, -4.048985302570711, -3.4888326343824008, -2.9595598291522704, -3.519623846347367, -3.394521722674913, -2.0920703092729895, -2.979912410334717, -3.171123924298172, -3.530103604722902, -7.0, -2.6777604106572355, -2.783051077562302, -3.297724044876189, -3.3886259019870084, -7.0, -2.9020028913507296, -3.6955108619666306, -3.245841554222827, -3.57611089412084, -7.0, -7.0, -4.060584531360865, -2.9573007307447923, -3.035724574911353, -7.0, -4.081239260911698, -7.0, -7.0, -3.1685816572769356, -7.0, -4.054114900510586, -7.0, -3.529327672138844, -7.0, -3.0733761552166086, -7.0, -7.0, -7.0, -7.0, -7.0, -4.133826214076394, -4.0790002523038495, -4.064869625059806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5479961022227244, -7.0, -7.0, -3.4593601729795065, -3.180723073467645, -2.0826984719813044, -7.0, -7.0, -3.7574339899382694, -7.0, -4.052501563413781, -7.0, -7.0, -7.0, -7.0, -7.0, -4.171550945676746, -7.0, -3.5995282897455563, -7.0, -3.8063835018241674, -7.0, -4.073388381115178, -4.050573076755148, -4.07838430874819, -3.1293138563822125, -7.0, -7.0, -7.0, -3.1639064334577514, -3.0915162219609544, -7.0, -7.0, -3.714245911017894, -7.0, -3.209799552659082, -7.0, -4.127007557371327, -7.0, -7.0, -3.6830019846071993, -7.0, -3.162917259782312, -4.0680002261451715, -7.0, -4.058008232715403, -3.8013694042010013, -7.0, -7.0, -3.871426978736606, -7.0, -7.0, -3.6058973516449746, -7.0, -7.0, -7.0, -3.733250779305627, -3.235584553681337, -7.0, -7.0, -7.0, -7.0, -3.5666142382391173, -3.5241688532784616, -7.0, -3.2595256204210687, -3.174917769318039, -7.0, -3.454779547656796, -3.3010589476643855, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05816020349183, -3.7740057302582093, -4.138933940256924, -7.0, -4.049683089088249, -7.0, -3.284465441307329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2830749747354715, -3.512317438458193, -7.0, -4.049683089088249, -3.593433761115369, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05545478494124, -7.0, -3.6729901704091192, -3.6618442235701645, -7.0, -7.0, -3.640978057358332, -7.0, -7.0, -3.2988821738926766, -7.0, -7.0, -4.092439911331141, -3.5366531185480494, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6832272060414346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4924810101288766, -7.0, -7.0, -7.0, -7.0, -3.1604685311190375, -7.0, -3.633165353683903, -7.0, -7.0, -7.0, -3.148408403505286, -7.0, -2.949390006644913, -7.0, -7.0, -7.0, -2.6928469192772297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8717091176588196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7554937284151193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.053923150548575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.126780577012009, -4.234846169921364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2962262872611605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.442636525782232, -7.0, -7.0, -7.0, -3.117602691690084, -7.0, -7.0, -7.0, -7.0, -3.123851640967086, -7.0, -7.0, -7.0, -7.0, -3.7827233819060297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.119321886463977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6020599913279625, -7.0, -7.0, -7.0, -2.8922685640314416, -7.0, -7.0, -7.0, -3.037824750588342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.733277533932582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1932916025795164, -7.0, -7.0, -3.9774675246367477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9483151406893477, -7.0, -3.136879039875517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6769982707961844, -7.0, -4.6742547252584545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.951823035315912, -7.0, -7.0, -7.0, -7.0, -3.4837298990000236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0401274417814563, -7.0, -4.204757384698596, -2.6242820958356683, -2.906335041805091, -7.0, -7.0, -3.1702617153949575, -7.0, -3.3121773564397787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0056094453602804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.312537003107304, -2.9813655090785445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6086295397104116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3548412529584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.105510184769974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.137021615898141, -7.0, -7.0, -3.5629043555363977, -3.834937035377519, -7.0, -7.0, -7.0, -7.0, -7.0, -4.404097870640489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.802534284386976, -7.0, -7.0, -7.0, -7.0, -7.0, -3.680984807303974, -7.0, -3.4787107555127594, -4.237543738142874, -3.8887634042622317, -4.251370505496702, -7.0, -7.0, -7.0, -7.0, -3.8834532266769703, -7.0, -2.4671370338130614, -7.0, -2.2076157982730913, -7.0, -3.7803893284709527, -3.1122697684172707, -3.374675041177133, -7.0, -2.4757450374642254, -7.0, -7.0, -7.0, -2.5222015261402246, -3.450557009418329, -7.0, -2.5957900611344176, -1.5317069530054377, -7.0, -2.964848663898841, -4.20227029773729, -7.0, -7.0, -4.064401826826439, -2.632284751300133, -4.873183954880855, -2.968015713993642, -3.399327532158679, -7.0, -4.140623253015846, -7.0, -3.6226826639407017, -7.0, -7.0, -7.0, -7.0, -7.0, -4.290034611362518, -7.0, -2.4197818916091722, -2.349385466944565, -4.174641192660449, -2.4706242843379016, -7.0, -2.6905803358869598, -3.9683311524518685, -2.4305587695227575, -7.0, -7.0, -3.398981066658131, -7.0, -7.0, -3.0068937079479006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015946243657567, -7.0, -7.0, -7.0, -7.0, -7.0, -4.63426561339283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7461981289915505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.384410766617083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.66133934000604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325577231940418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.963787827345555, -7.0, -4.169056932744852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.94019263553191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0641458839444216, -7.0, -2.7009648094994096, -3.346304064660407, -7.0, -4.541254649786259, -1.7228205553179063, -2.030522403689804, -4.2410606158912, -7.0, -7.0, -3.16828873237199, -4.541079767776629, -1.873993814550635, -3.470840026689671, -4.240124730168566, -3.6472117617451385, -1.8568379988483543, -7.0, -4.24112293662285, -7.0, -3.764823478524604, -4.542476856009627, -3.94126290931895, -2.8575847767956573, -4.542588927185314, -7.0, -7.0, -4.242168589973666, -4.24398006574108, -7.0, -3.6980135039391815, -4.540917314258837, -4.257390549337304, -4.064370622354286, -2.1432653081007023, -7.0, -4.067219688974141, -2.7793352090989942, -7.0, -7.0, -7.0, -7.0, -4.542053214823124, -7.0, -2.9994205543077666, -2.292864986031581, -7.0, -3.843320002089389, -3.210999118023019, -3.5424394925233997, -3.939506772712817, -7.0, -4.2414094968594185, -7.0, -4.075583455193813, -4.065156292208035, -7.0, -7.0, -2.389949983431617, -7.0, -7.0, -7.0, -7.0, -2.899737259826841, -4.546666025070184, -4.541454428747589, -3.4334990460631887, -2.5018548537616296, -4.5413545507544155, -4.242168589973666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4319325523895805, -4.242504158866157, -2.9457393192824894, -3.338817425576695, -3.6422171294738805, -7.0, -1.3388058084949108, -3.026186472960786, -3.6386015599717445, -3.841934810980999, -4.5409548089261325, -7.0, -3.842609239610562, -4.0647449281249015, -4.541454428747589, -3.938832324687507, -2.6600468488873688, -7.0, -7.0, -7.0, -3.9452592658135237, -7.0, -7.0, -7.0, -7.0, -3.4011789054198043, -4.541629159983864, -4.240249631518799, -3.2897994595306046, -3.464737871805711, -2.7325734959401977, -7.0, -3.5016939865380676, -7.0, -4.244227625732908, -3.2496141023445815, -4.5416042026823655, -2.9755007386708083, -1.3251953821249525, -7.0, -7.0, -4.543869464336801, -3.431134614595152, -4.0648197505822, -3.2280335249267362, -3.5524857010929476, -3.9436552443683515, -7.0, -4.542576476260529, -4.242516582365605, -7.0, -7.0, -2.899641457036817, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2186248823129056, -3.3657686880021926, -2.551614188051973, -3.4684334914047827, -3.5009097804074516, -2.956307194643153, -4.240661551299707, -7.0, -3.341558167136101, -3.6151431060686856, -2.9819287487799087, -7.0, -4.5417414500957305, -7.0, -2.2734501064563295, -7.0, -7.0, -4.065093989357153, -3.265475722826399, -7.0, -7.0, -3.6463914716912074, -4.244845909032436, -4.544923382058467, -4.543583846395738, -7.0, -7.0, -4.241010752866155, -1.990160790410788, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8429834701222174, -7.0, -3.3037478776800056, -7.0, -3.3417260043823003, -7.0, -2.735648025254694, -1.986032139177172, -7.0, -3.767885263894712, -3.846609234225857, -3.9445073472720127, -4.070936326599144, -2.8101224941992746, -3.502923456589202, -4.066027594948862, -4.067541985450457, -4.0656046090841285, -3.7640141449764357, -3.351300971319075, -7.0, -3.7630284585928058, -7.0, -2.7791288410764556, -7.0, -3.78640829807341, -7.0, -3.6455327940379245, -7.0, -7.0, -7.0, -7.0, -4.544055635759241, -7.0, -7.0, -7.0, -7.0, -4.242640797817615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9448896324940845, -3.6455941844910615, -3.4014350072298702, -1.8093214507765927, -7.0, -7.0, -4.54136703675979, -3.546616684638195, -7.0, -7.0, -4.543906705006407, -4.240599164319883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.540917314258837, -7.0, -3.3670517004498173, -7.0, -7.0, -7.0, -4.541529322171493, -4.241023219159143, -7.0, -7.0, -4.242442036037531, -4.250895513938375, -4.064570292244026, -2.561573648247468, -3.4434314959344703, -4.540967306429246, -7.0, -4.541579243946581, -3.8632752635965546, -7.0, -2.639840509652488, -4.544675631413166, -2.776760599965476, -4.5416042026823655, -7.0, -4.541641638096808, -3.4112829130173843, -2.3845573271208678, -3.319877289829984, -3.1756567472816637, -2.9865659734610817, -4.240174695019277, -3.5411422337216347, -7.0, -7.0, -3.769241895684789, -4.2440048280914535, -7.0, -3.698460961159398, -7.0, -7.0, -7.0, -3.7647488339659567, -4.542003347503985, -2.8374364459801273, -3.344404555595206, -3.9429005411402938, -4.241795431295198, -1.78497131886655, -4.241969611913073, -7.0, -2.777394357033012, -4.541254649786259, -7.0, -4.068024982143691, -7.0, -3.440400412823879, -3.5912996316026833, -4.553166699496046, -7.0, -3.8514295860194783, -7.0, -1.6141130308781895, -2.61984189224511, -7.0, -7.0, -7.0, -3.511749711344983, -3.3427926605253178, -7.0, -7.0, -4.243620852909535, -7.0, -7.0, -7.0, -4.543521730675292, -7.0, -7.0, -3.129838563786958, -3.541903595684562, -2.3702937992424595, -3.2460176409716963, -2.618613863442435, -4.543770140269609, -3.251358332713241, -2.8081046439393478, -3.5970366649776535, -7.0, -3.431536952492574, -7.0, -3.508321550521236, -3.2284353584597953, -4.250371202434478, -7.0, -7.0, -7.0, -3.643687033559034, -7.0, -4.543298040491669, -7.0, -4.552619552939762, -7.0, -2.975467158676708, -7.0, -7.0, -3.267949726576494, -3.4510280603341705, -3.5489623660813248, -3.943815913368455, -3.2962333698623643, -4.563836918664545, -2.487237830963865, -2.16371760904402, -2.4464138741235977, -4.54129211534237, -3.7019227969115684, -2.5460646087948833, -3.1775473891428585, -2.945064720281746, -2.2127957562079024, -3.552278757969826, -3.0542225383825152, -3.246345363478317, -3.647686087933524, -3.2126970136435244, -3.4527572689371206, -2.945479406917248, -3.078291064706725, -2.3656714715140623, -3.2344610386791035, -3.989770080726568, -2.9811047634637635, -2.599556286536565, -7.0, -1.9551346223165285, -3.4082399653118496, -3.0154196374474895, -3.2514368201863437, -3.1149970393952513, -3.2877377643241155, -3.371806458507416, -3.660732703938095, -2.8454119666286792, -3.179537061079481, -2.357924821619692, -3.6495173993026695, -2.0927833055510514, -2.6053449574108987, -2.350127510310411, -2.6820955996306606, -2.3124147930253374, -2.4757450374642254, -7.0, -3.3296226500804065, -3.655174464385555, -2.8936301291765147, -2.17626421402828, -2.661372380859304, -4.555227498928218, -2.302218818934974, -2.6349141007233494, -7.0, -2.2973064047319234, -3.0740498129405394, -3.8665944864062345, -7.0, -2.2243032322201834, -1.000773975679654, -2.760634118061711, -4.542663625238801, -3.5616737023990064, -4.06596541697663, -2.388313690603355, -4.292588312465555, -2.5193772952596425, -3.1084748182112922, -3.66228551572213, -4.5423273827739745, -3.9898723372297638, -2.3887741660237527, -2.9489017609702137, -3.3527370957112907, -1.645939469700875, -1.3548575254232875, -2.700899887533364, -1.8886500259978922, -4.54383222047354, -1.8504177381054372, -2.358446191254353, -1.829341470368647, -2.7176199065692925, -3.553288194064595, -2.812364175873973, -2.994114021477017, -2.596256415228722, -4.543745305703089, -7.0, -7.0, -7.0, -3.5868778622235498, -2.3266820975646683, -3.9409644934927996, -3.2514557054289663, -7.0, -3.7891457299039937, -3.0226639846359435, -3.229499004575783, -4.242926358601607, -7.0, -3.4942188340129245, -7.0, -3.010802949218461, -3.471010404514505, -3.7702504531336944, -4.562839849885065, -3.4569188534250026, -4.0816113093209765, -4.270364353650405, -7.0, -4.246437026762404, -3.7297315952870354, -7.0, -4.074926097123956, -4.546653690487702, -7.0, -7.0, -3.5368844618610713, -7.0, -7.0, -3.851889960987706, -2.464373428003822, -2.4404704155029875, -7.0, -4.566743806304003, -3.6421552597562883, -7.0, -4.543459606069367, -7.0, -7.0, -3.3657453030046423, -7.0, -7.0, -3.8865132853388156, -7.0, -2.676583438522829, -3.593667507425168, -4.0848145085941185, -7.0, -4.073143797726908, -4.5428378707488655, -3.1897221619552822, -3.4694344260533714, -7.0, -7.0, -7.0, -4.105680462945809, -2.9884103022538873, -7.0, -7.0, -3.74813262876875, -4.244573972817435, -2.6783441182258394, -3.847140617413406, -2.819461675009015, -4.067641105496968, -7.0, -3.7877437716464666, -7.0, -3.5192919019689546, -7.0, -4.543782557020339, -3.5450224427567334, -4.259175627306078, -7.0, -7.0, -2.828806829568114, -4.548413988554237, -7.0, -3.754806855354423, -4.550387361358583, -4.571534147426671, -4.550081524469066, -3.6977522741677546, -2.785307585748132, -4.5599305524475895, -4.558396534248996, -7.0, -7.0, -3.0259118157686538, -4.267676155960548, -4.2417829871489525, -3.3054469132775894, -2.934143232399106, -7.0, -3.4633653465369476, -3.428604485471956, -4.128366953938082, -7.0, -7.0, -7.0, -7.0, -4.545294743227404, -3.94875518016827, -3.795022162871388, -7.0, -4.24149667332751, -4.540967306429246, -3.0959378878980806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7242641633922977, -4.564488523410793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0666116331675966, -4.54441534103564, -3.814957517396995, -4.2764273349893775, -4.272294244501396, -7.0, -7.0, -4.088620337639316, -4.064545338527522, -7.0, -3.473178677841271, -7.0, -7.0, -3.778488903688076, -4.272224638590053, -7.0, -7.0, -7.0, -7.0, -7.0, -4.280282366567866, -7.0, -7.0, -7.0, -3.300885206703846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2474483777449596, -7.0, -7.0, -7.0, -3.14515199291356, -2.9596483728278686, -7.0, -7.0, -7.0, -3.037227234582274, -7.0, -3.291115025498768, -2.1990234256365437, -3.294172187909397, -3.3462225361009863, -2.8255065858864694, -7.0, -2.931457870689005, -7.0, -7.0, -3.7791634237644987, -3.7844746437625165, -2.586951772374066, -3.7798128631705805, -7.0, -7.0, -3.4823017672234426, -2.8897217842562033, -7.0, -7.0, -7.0, -3.864511081058392, -7.0, -3.0951534951918838, -3.7709256146389993, -7.0, -7.0, -7.0, -7.0, -3.776119799052988, -7.0, -7.0, -3.776192514747072, -7.0, -2.4504516993954346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7790912038454993, -7.0, -3.8356271662098975, -7.0, -7.0, -7.0, -2.031381530425332, -7.0, -7.0, -7.0, -7.0, -3.1898270631206618, -3.200440076436431, -7.0, -7.0, -3.5694324359249388, -7.0, -3.7834747875822465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.322770429937203, -7.0, -2.910357557272878, -7.0, -3.096771016533225, -7.0, -2.7058637122839193, -3.4951973183654577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.293638735631343, -7.0, -7.0, -7.0, -2.7641761323903307, -3.770631127777807, -7.0, -3.782042416620554, -3.4729757345942285, -2.630224410752432, -7.0, -3.7723217067229196, -7.0, -3.7890163267933747, -3.005003769884945, -7.0, -7.0, -3.4743619760326307, -2.949250563881826, -3.525821952156663, -7.0, -2.8752542402808574, -3.306925161088451, -7.0, -7.0, -3.787176992470554, -3.779892172536556, -3.7763379096201755, -3.523876475638131, -3.135895575564019, -3.496860487394368, -7.0, -7.0, -7.0, -7.0, -7.0, -4.173244559061566, -7.0, -7.0, -7.0, -7.0, -7.0, -2.541121412738247, -2.1429618407415725, -3.321184027302314, -7.0, -7.0, -4.076385543954533, -7.0, -3.7721749608246142, -7.0, -7.0, -2.745855195173729, -7.0, -7.0, -7.0, -2.282380559390902, -7.0, -3.293657141449485, -7.0, -3.3143588613003385, -7.0, -7.0, -3.040404528914159, -2.650723713371649, -1.9320018841538737, -3.3081373786380386, -2.070490928340032, -2.2852668595858776, -7.0, -2.7624431817322277, -3.773274348337454, -3.7715139899796664, -7.0, -2.8207121796408137, -2.6924062348336304, -7.0, -7.0, -2.5884781135660653, -7.0, -3.8098626051382367, -7.0, -7.0, -2.1561071928505533, -3.7760470711817797, -7.0, -7.0, -3.8027737252919755, -7.0, -7.0, -3.791129000727286, -3.1808424146466825, -7.0, -7.0, -3.778078861937455, -3.1517374810385186, -7.0, -7.0, -7.0, -3.6681994841986616, -3.469895618975018, -2.9393528243805584, -7.0, -3.814580516010319, -3.775974331129369, -3.1736232576980816, -3.770483809431108, -7.0, -3.4870676377163163, -7.0, -7.0, -7.0, -7.0, -3.7861833455676335, -7.0, -7.0, -7.0, -7.0, -7.0, -3.777499319590365, -7.0, -7.0, -3.2024201977780304, -3.1154107901339194, -3.9529376677509807, -3.513270884465516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7695988483874463, -3.29269900304393, -3.1693804953119495, -3.771954748963949, -7.0, -7.0, -2.124141799308865, -3.0111191405943716, -7.0, -7.0, -7.0, -7.0, -3.7768464086952993, -3.4766142820325037, -7.0, -3.0855046394264978, -7.0, -7.0, -3.433609843323718, -2.956708560488622, -7.0, -7.0, -7.0, -3.281033367247727, -3.7998228309933197, -4.024977972095624, -2.88768761434575, -3.247259956560877, -7.0, -7.0, -7.0, -3.3906702126261803, -3.5170638734826545, -3.5237464668115646, -3.854427505787861, -3.004628404182071, -7.0, -7.0, -3.2935098730581442, -2.66500337566178, -2.4826694498884723, -2.3127413753267194, -7.0, -2.7849737099544005, -2.020971553022808, -2.3910822009174537, -3.472610197596045, -7.0, -3.7764105888073423, -2.1939117917581363, -3.337725413884801, -7.0, -7.0, -2.9230366686707856, -7.0, -7.0, -3.0563711794755286, -7.0, -7.0, -3.7946971268919985, -3.7768464086952993, -3.242913946818925, -7.0, -2.757206173278786, -2.942858083269675, -2.037824750588342, -7.0, -3.5489966305126153, -3.225632297346483, -7.0, -7.0, -7.0, -3.5377561492826133, -3.8063156698081135, -7.0, -2.4300457222310743, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3016809492935764, -3.7726883546821415, -3.3186197661495815, -7.0, -3.6892200372638357, -3.611882555512116, -3.544262765666502, -7.0, -2.2402291373505103, -3.0534306044478297, -3.5277587525209717, -7.0, -3.3205616801952367, -7.0, -2.7402310651617, -2.7773750312638663, -7.0, -7.0, -7.0, -7.0, -3.327086350362379, -2.428944290035574, -3.7839035792727347, -2.569447066270134, -2.719458776925022, -2.628534886859584, -2.8647267723873364, -7.0, -7.0, -4.674015601630943, -4.4885789165252525, -7.0, -7.0, -4.51216389140557, -7.0, -7.0, -7.0, -4.077811059250664, -7.0, -7.0, -7.0, -4.707680864506185, -4.3627902422598535, -4.483687123306974, -7.0, -4.479416937274596, -4.402948829344405, -7.0, -7.0, -4.137195811940549, -4.342495057204659, -7.0, -4.221714097454803, -7.0, -4.30072588307482, -7.0, -7.0, -7.0, -4.148548673088884, -4.048791273848409, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.447824471981958, -4.479776792192939, -4.17140463483013, -1.504141007490718, -3.7880673136696466, -2.2107767559059837, -2.0614127939332474, -7.0, -3.627109711211139, -7.0, -3.3296226500804065, -7.0, -1.246186925353108, -2.490635595254875, -3.3353241481530937, -2.5665797073098218, -7.0, -3.0881754787039255, -7.0, -1.4294537668773173, -7.0, -2.46260594354904, -2.5959369062691735, -3.8064513232472623, -1.8590231903699448, -2.9587962505265497, -3.6323026013613955, -2.4551350183502896, -2.17666993266815, -2.6673092419416196, -2.2432833168740873, -3.0610333972425505, -3.668325334908289, -2.8400164290322825, -2.72652345838624, -2.6626125583964253, -3.1640978135052644, -2.766054643351031, -3.047770314206707, -7.0, -4.005652315355074, -3.9618006391916785, -2.666822611197495, -7.0, -2.6713152810508642, -2.93721499711337, -2.2214298254626015, -7.0, -1.9235765957120772, -7.0, -3.5800121125294244, -2.8391636829146503, -3.357771547700954, -7.0, -1.6324875102811671, -7.0, -7.0, -7.0, -3.411142505502048, -2.2596373105057563, -3.3592661646067485, -7.0, -3.4298060925892933, -2.235244649941361, -7.0, -1.9657442753044998, -7.0, -2.725391830339634, -3.3148499463011056, -2.783822195683155, -2.868252475839426, -3.8131137540078983, -7.0, -4.0514998191327445, -3.2637543888400056, -2.6681269610554104, -7.0, -3.330075405991285, -3.4633454229438665, -7.0, -3.832189461068513, -3.501675331410371, -2.9410853055533765, -7.0, -2.981260880814982, -7.0, -7.0, -3.76766286557764, -3.1751514649813335, -4.085190646885893, -7.0, -7.0, -2.2109940047208836, -7.0, -2.9388769633984144, -7.0, -2.999710373792598, -2.3979400086720375, -3.7863254343900703, -3.3255840723546894, -3.6834973176798114, -3.296811392747983, -4.030235296012245, -7.0, -3.4043775248953203, -7.0, -7.0, -3.7812525942484565, -7.0, -4.1331555381979905, -7.0, -2.6627578316815743, -2.523674222865311, -3.9736357734174077, -7.0, -7.0, -3.809761665107125, -7.0, -2.378677369736355, -2.581855976646831, -3.0215338405254566, -7.0, -7.0, -7.0, -4.148972634509205, -3.3021865728639233, -2.9199225150410633, -7.0, -2.9407298799816086, -3.794975744051132, -3.395908557341382, -7.0, -3.0769315745556556, -2.943809173206347, -2.7318572625565913, -3.3296690168644045, -2.3546685610810214, -3.521987527782068, -7.0, -2.9175055095525466, -2.4720840748654966, -7.0, -7.0, -3.5631249603380444, -7.0, -7.0, -3.686743489231213, -7.0, -3.7812525942484565, -3.877601679729272, -3.3397991351974112, -3.544873843234801, -3.0223989105144513, -2.760176931025949, -4.059298292408071, -2.823619114736917, -7.0, -3.1755842863685224, -7.0, -2.376787456042087, -2.3305446835180503, -7.0, -3.4728295567127057, -3.7795964912578244, -7.0, -2.339804651904391, -2.9301482197259796, -7.0, -7.0, -7.0, -3.8010605298478555, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0078654490661223, -7.0, -7.0, -7.0, -2.655064518636937, -3.3120362371917773, -7.0, -2.7890163267933747, -2.5347873586294916, -3.951386094880293, -2.932727367301529, -3.303915683901469, -3.770336441095149, -7.0, -3.774735882551753, -3.7707047682157793, -2.767791729273228, -3.7716609593488872, -7.0, -2.1600824724895236, -7.0, -3.3455044240544782, -3.770336441095149, -7.0, -2.9466627639986482, -3.469527479187014, -3.6663307443019684, -7.0, -3.4888326343824008, -7.0, -2.890700397698875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7165875776756923, -7.0, -7.0, -7.0, -3.7279477095447966, -3.048519487922654, -3.187520720836463, -7.0, -7.0, -3.3226327116922234, -7.0, -3.3638469241672295, -2.276972138523276, -3.1658376246901283, -7.0, -3.2125106115949857, -7.0, -7.0, -7.0, -7.0, -7.0, -2.611988688083979, -3.573730052453567, -3.1981069988734014, -7.0, -7.0, -3.2119210843085093, -2.7710973064704123, -7.0, -7.0, -7.0, -7.0, -7.0, -3.281866292147957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6548638255819332, -7.0, -7.0, -3.096736260462469, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3809344633307017, -7.0, -7.0, -7.0, -2.8218409272004545, -7.0, -7.0, -7.0, -7.0, -3.2177470732627937, -3.2803506930460054, -7.0, -7.0, -3.7738839187739726, -7.0, -2.910357557272878, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.79309160017658, -7.0, -3.0159881053841304, -7.0, -7.0, -7.0, -3.2127328262241575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5347873586294916, -7.0, -7.0, -7.0, -3.2935835134961167, -7.0, -7.0, -7.0, -7.0, -2.2938043599193367, -7.0, -7.0, -7.0, -7.0, -2.47033526537637, -7.0, -7.0, -7.0, -3.254064452914338, -2.655330558009341, -7.0, -7.0, -7.0, -7.0, -7.0, -3.225567713439471, -3.792376123108822, -7.0, -7.0, -3.3802112417116064, -2.6603910984024672, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019407108018883, -7.0, -7.0, -7.0, -7.0, -7.0, -2.523457418892806, -2.32871929409501, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2688119037397803, -7.0, -2.309049171376836, -7.0, -7.0, -7.0, -2.6553371814315407, -7.0, -3.163757523981956, -7.0, -7.0, -7.0, -7.0, -2.552262522965547, -3.2659963704950794, -2.768884649356367, -7.0, -7.0, -2.900913067737669, -7.0, -3.18178802771381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4708513245261177, -7.0, -3.6265456590271294, -3.162862993321926, -7.0, -2.483737164091958, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3666097103924297, -2.9382694834629115, -3.2113875529368587, -2.94126290931895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.163835222252474, -7.0, -2.470452494407648, -2.8816699076720615, -2.402834330403087, -7.0, -3.1696744340588068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1652443261253107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6834973176798114, -3.3191060593097763, -3.655906418180215, -3.9772143441653935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.73453314583352, -3.73917663191073, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7120882348626436, -7.0, -7.0, -3.3688445068258215, -7.0, -3.5683190850951116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7886632131208575, -3.2420442393695508, -3.611324933588425, -7.0, -7.0, -7.0, -2.134765383294081, -3.329397879361043, -7.0, -3.4324882557705063, -7.0, -7.0, -7.0, -3.1631613749770184, -7.0, -2.389609016051986, -7.0, -7.0, -3.22219604630172, -7.0, -2.699837725867246, -3.1746411926604483, -7.0, -7.0, -2.8958643512472992, -3.3197304943302246, -2.9476787399369364, -2.7256394326735376, -3.54104853143455, -7.0, -7.0, -2.9966992588600987, -7.0, -7.0, -3.2523675144598987, -7.0, -2.804990823476288, -7.0, -3.387033701282363, -3.2314695904306814, -2.1361257789120067, -7.0, -3.988425170006303, -7.0, -7.0, -7.0, -7.0, -7.0, -3.291590825658001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9554472105776957, -7.0, -7.0, -7.0, -4.20460350467072, -7.0, -2.425244304277949, -3.237663401572365, -2.8836614351536176, -7.0, -2.6601537141484544, -7.0, -2.4899584794248346, -2.693726948923647, -7.0, -7.0, -7.0, -7.0, -3.285557309007774, -3.1772478362556233, -7.0, -2.7041505168397992, -7.0, -7.0, -3.560026248912892, -7.0, -7.0, -4.631068165146266, -7.0, -7.0, -7.0, -4.448335233740176, -7.0, -7.0, -7.0, -3.8401060944567575, -7.0, -7.0, -7.0, -7.0, -4.811092188164497, -4.415173745335861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.105806425828049, -3.9384696883676455, -4.492795298755718, -7.0, -7.0, -7.0, -7.0, -7.0, -4.237794993273923, -4.253701381011985, -4.595110255778039, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.1001615990072522, -3.8076139425335747, -2.3258644366153463, -2.264292995777203, -7.0, -3.79619259685592, -7.0, -3.655174464385555, -1.246186925353108, -7.0, -2.1892162585640143, -3.876448786878341, -2.593216818119425, -7.0, -3.5181848042184027, -7.0, -2.0331555896976927, -7.0, -3.014861666129001, -2.695106259827803, -3.2920344359947364, -2.0210965506484637, -3.453776859690442, -4.2729896907231355, -2.114499783493657, -2.720572720364261, -1.8987251815894937, -3.1468719030857386, -7.0, -4.103158395042915, -2.7659995088477323, -2.739365930719066, -2.890700397698875, -3.460822698802402, -3.754348335711019, -3.1576941641846092, -7.0, -3.453624073591451, -7.0, -2.482901594475409, -7.0, -2.2663885100087673, -3.663899761406957, -2.914251150449555, -3.358315640082196, -2.6571347401888503, -7.0, -7.0, -3.1174370252826193, -4.061490176624815, -7.0, -2.2889196056617265, -7.0, -7.0, -7.0, -3.3432115901797474, -1.9701280053765742, -2.780677274433368, -7.0, -3.0823065450398275, -2.3858445042581002, -3.3727279408855955, -2.321184027302314, -7.0, -2.9073516352045403, -7.0, -2.840245537219845, -2.742332282357148, -3.313445370426414, -7.0, -7.0, -2.6159500516564007, -2.8197632208188845, -3.3725438007590705, -7.0, -3.330007700872759, -7.0, -7.0, -2.6766936096248664, -3.225050696138049, -7.0, -2.8622398309260126, -7.0, -7.0, -4.186164961727415, -3.4769668114456653, -4.149165207512734, -7.0, -7.0, -2.298610521540568, -3.4191293077419758, -2.6133131614554594, -7.0, -7.0, -2.682934395395032, -3.222456336679247, -7.0, -7.0, -2.69810054562339, -3.0981589834605336, -7.0, -7.0, -3.161966616364075, -7.0, -2.9020028913507296, -3.3694014136966244, -3.8794590739205956, -7.0, -2.7146091386431936, -2.7259116322950483, -7.0, -7.0, -3.322219294733919, -3.3027637084729817, -7.0, -2.256477206241677, -2.8697431530747894, -2.5710096723093048, -7.0, -7.0, -7.0, -7.0, -7.0, -3.105986795521473, -7.0, -2.52270499273475, -2.951823035315912, -3.480581786829169, -7.0, -2.707002099520009, -3.241878383159056, -2.1598678470925665, -7.0, -2.347498248703483, -3.3443922736851106, -3.2988530764097064, -3.3394514413064407, -2.7388465958116313, -3.7679717213816186, -3.4769764657595275, -7.0, -7.0, -7.0, -4.298176009766551, -3.573103783163991, -3.203576774977973, -7.0, -3.7366354976868212, -3.1085650237328344, -2.711132072306842, -2.52880961249955, -3.545059584694003, -2.7168377232995247, -7.0, -2.410496045616074, -7.0, -2.952792443044092, -2.268928822432613, -7.0, -3.1755118133634475, -3.197280558125619, -2.859138297294531, -2.641927149514438, -2.8822398480188234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.529173603261723, -3.2971036501492565, -2.8956987269593055, -7.0, -7.0, -7.0, -2.6842467475153122, -3.2337573629655108, -7.0, -2.63321588535909, -2.0299096034648, -7.0, -2.6148972160331345, -7.0, -7.0, -7.0, -7.0, -7.0, -2.555720466529754, -7.0, -7.0, -2.2280472867866634, -7.0, -7.0, -3.1607685618611283, -7.0, -2.1251057408333547, -7.0, -7.0, -3.1646502159342966, -7.0, -7.0, -4.067405658437824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.08308309635478, -7.0, -7.0, -7.0, -3.888319928675217, -2.161200018291969, -4.066773037085025, -7.0, -7.0, -7.0, -7.0, -2.9640799562089097, -3.0073209529227447, -7.0, -4.091279964228837, -2.8373027824636576, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5933229952532844, -2.2597027012768227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3434742418248278, -7.0, -7.0, -4.07291131585408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8004526998229493, -7.0, -4.067591548301512, -3.255651485675603, -7.0, -7.0, -7.0, -7.0, -4.0796153235269434, -7.0, -7.0, -7.0, -7.0, -2.094441179707738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145320738918325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.07107154998365, -4.086324231307385, -7.0, -4.0767496406240005, -7.0, -2.9565898139962505, -7.0, -7.0, -4.063445953123033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.605771778568517, -7.0, -7.0, -7.0, -3.7718446011470075, -2.0809966834445737, -3.4653828514484184, -7.0, -7.0, -7.0, -3.6158448828747023, -7.0, -3.8663168819216542, -3.679990842434873, -7.0, -7.0, -7.0, -3.1108932604638193, -7.0, -4.092053606425475, -7.0, -7.0, -7.0, -4.068148740973294, -7.0, -7.0, -7.0, -3.271609301378832, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3854979437195007, -7.0, -2.9711211579147765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0642707529740063, -3.138021851349023, -7.0, -7.0, -7.0, -2.594186470553561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.134106242849204, -4.077985291029502, -3.7740057302582093, -7.0, -7.0, -7.0, -7.0, -2.9853192094259917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1165745397769165, -7.0, -3.1224967326576327, -7.0, -7.0, -2.5958485054524854, -4.066251361968962, -4.078746734273607, -4.07733156112899, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0744873049856905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.992398858487621, -7.0, -2.7143942477521676, -7.0, -3.307923703611882, -4.066214075471244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.826690157228338, -4.071476967698918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.864748335629659, -2.8767235900989143, -7.0, -7.0, -7.0, -4.080734686353143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2097211833012635, -7.0, -7.0, -7.0, -7.0, -3.7655568008067135, -7.0, -7.0, -7.0, -2.536768805608776, -7.0, -4.140602308020332, -7.0, -7.0, -7.0, -7.0, -3.6473503641998253, -7.0, -3.609140670672294, -7.0, -3.309082392097567, -7.0, -7.0, -7.0, -2.0764299345734836, -7.0, -7.0, -4.108192805135042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.065542370519139, -7.0, -7.0, -7.0, -3.0334237554869494, -3.785614524946824, -7.0, -7.0, -2.6335946856289865, -7.0, -7.0, -2.8162668009742573, -7.0, -7.0, -4.075911761482778, -7.0, -3.625895235608653, -3.600246650564494, -7.0, -7.0, -3.7902499685648565, -7.0, -3.063228371987673, -7.0, -7.0, -7.0, -7.0, -3.622352201294506, -3.7809290706364975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.775501223589831, -7.0, -3.463167493195676, -7.0, -3.1927198927453326, -7.0, -3.7969903905456865, -2.4599764321962345, -3.315655525231531, -7.0, -7.0, -7.0, -4.089799173036164, -3.3703897104835856, -4.094016681120422, -7.0, -7.0, -7.0, -3.7799570512469063, -7.0, -7.0, -3.7649975992848805, -7.0, -7.0, -3.234865136540417, -7.0, -7.0, -3.2457346934565856, -3.3651457334284163, -4.476280806025541, -3.6008640363098396, -3.502609175942623, -3.3502157035544387, -3.5150786750759226, -3.4813590104042285, -2.8020227472483574, -7.0, -3.6460899012744283, -3.4854019748438567, -4.151400498035618, -3.83268306006481, -2.4147311988249274, -3.7830598861333127, -3.407876285333665, -2.7151131180137207, -3.7255441224863532, -3.7156607840741795, -3.2457817752162765, -3.306030608776958, -3.575026109423261, -3.1344116809154454, -3.7632594845682545, -3.505980450567084, -4.029894889003178, -3.366565775695184, -7.0, -2.9462978342205512, -3.493550987970057, -3.791278259413112, -3.456335661823607, -2.8408156856746296, -2.663725716009965, -3.456836516966673, -3.87735214586615, -2.9706825677927085, -3.378191910508821, -3.3575113516164294, -2.841428996506697, -2.721747908322589, -2.718487848797103, -2.5798355426107604, -4.081779226767534, -2.454111254290318, -7.0, -2.8936301291765147, -2.490635595254875, -2.1892162585640143, -7.0, -2.77625137091671, -2.569719632560632, -3.4055853869044945, -3.222742476026601, -7.0, -4.070739562849198, -7.0, -2.2038073097049544, -2.1228806438077106, -3.0814553278225736, -1.8319566260711162, -2.6150606136353867, -2.9629894767010017, -3.591138839055037, -3.6461095219788477, -3.7687120803776635, -2.03252734362003, -3.0909088846213786, -3.351374593497417, -2.168577571549112, -2.178822497153501, -7.0, -2.517663162081145, -2.4368962527589484, -2.2062599065001196, -3.5081592323614412, -7.0, -3.2677875202836364, -2.5567610204106916, -7.0, -3.594613509160098, -3.0046332186164886, -1.79996678529663, -7.0, -2.428875883579378, -3.0200158093322957, -3.521039963927612, -3.283188116453424, -3.079362164393046, -2.769192637796977, -4.067888806685398, -7.0, -3.7774268223893115, -3.6662183637910806, -2.81888541459401, -3.467423102606649, -7.0, -7.0, -3.359898693821246, -2.151976149357102, -7.0, -7.0, -4.066512277856596, -2.859413523534532, -3.7735304721389142, -1.1759541927828367, -3.488973524726508, -4.085647288296856, -3.523713958522923, -3.5296356460190728, -2.1448786552084167, -2.767403256850421, -3.6189541113654435, -4.082641778157131, -4.158362492095249, -3.612819163778972, -3.1411360901207392, -3.4779167323046356, -4.071918810363806, -7.0, -2.548955148750172, -3.1717995610487244, -7.0, -2.645229985477441, -2.6676903371439664, -2.9586947598580036, -7.0, -2.9595819353635555, -7.0, -2.394417342460363, -3.468495024507069, -7.0, -7.0, -3.543602479379584, -7.0, -4.080265627339845, -3.407079165783919, -7.0, -2.8333596367430127, -3.2389059505937725, -3.4243915544102776, -7.0, -3.7897216939809217, -7.0, -4.095622595021622, -2.456698912578988, -3.5970000511866353, -4.067480023931482, -3.767897616018091, -3.5763989451242386, -3.0735228432889, -3.4848690327204026, -3.1802692776688746, -3.4264028097516, -7.0, -2.4871715039561493, -7.0, -3.187708686423428, -7.0, -7.0, -3.3413905542954354, -7.0, -2.0611529213699096, -2.7832602328729488, -3.4694538137671267, -7.0, -3.6415402081348343, -7.0, -4.066475013754132, -3.885361220031512, -3.483052121938875, -7.0, -2.772400300205005, -4.091033516054471, -4.149342299291265, -3.4878804271706723, -2.6191716218534493, -3.1617218284861597, -2.7013354666845983, -7.0, -7.0, -7.0, -3.2212258143152708, -3.539640565669428, -7.0, -7.0, -2.670000141903834, -4.103530063428375, -2.4816778851648396, -2.5578650995755288, -3.154271775993095, -7.0, -4.087390944997188, -3.465010864717408, -7.0, -4.076203381088768, -3.4902043694603857, -4.153967221645479, -7.0, -7.0, -7.0, -2.1709171502194033, -7.0, -7.0, -7.0, -7.0, -3.778151250383644, -7.0, -7.0, -3.2984787921447394, -2.6815642529962074, -4.08292891501513, -7.0, -3.787141544200371, -7.0, -7.0, -7.0, -3.2946498990262056, -4.0717347638797605, -2.5943557129792554, -2.485694132104429, -2.8018509291711813, -2.2144125418657885, -7.0, -7.0, -7.0, -4.0655797147284485, -7.0, -2.6169859707394836, -7.0, -7.0, -2.2469838680804592, -3.3084729414195233, -2.7672619079535177, -7.0, -7.0, -3.1712143570094913, -7.0, -2.8726514940644776, -7.0, -4.073461729279835, -7.0, -3.836672171482981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.840600504023395, -4.158935141829918, -4.13494171073536, -4.135037191549618, -2.736869386655646, -3.0730336902474913, -4.137227476442907, -7.0, -7.0, -3.4554539687786283, -7.0, -2.6569947892596133, -3.159241249837855, -7.0, -3.6809093578706777, -1.4763353612855514, -7.0, -3.660137883917105, -4.134559577422625, -3.6624745037503095, -3.837051550831765, -2.9354127889420147, -2.8956505175479332, -3.292951904190633, -7.0, -7.0, -4.140036410975282, -7.0, -4.134463991534289, -7.0, -7.0, -3.8764776465309354, -7.0, -2.5264883913765117, -7.0, -3.6657372963937283, -3.187708686423428, -7.0, -4.1368473499574545, -7.0, -7.0, -7.0, -4.1368473499574545, -3.6958026089088825, -2.612501296864678, -4.136720567156407, -3.4387005329007363, -3.124652402693, -4.1386184338994925, -7.0, -3.835341727828342, -3.837019948540908, -7.0, -3.862667950228588, -7.0, -7.0, -7.0, -3.0019319261726443, -7.0, -7.0, -7.0, -4.134304634954544, -3.344336123386771, -7.0, -7.0, -7.0, -2.599970358674706, -7.0, -4.140036410975282, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8463680436836736, -7.0, -3.308442446423766, -4.140256569677416, -4.145724574880668, -7.0, -2.4235565785971245, -4.145755623637207, -4.136593747333078, -4.134400255918984, -7.0, -7.0, -7.0, -4.136720567156407, -3.8344524956717305, -7.0, -3.347748075174585, -7.0, -7.0, -7.0, -3.5482665451707454, -7.0, -4.135259898515659, -4.139406770441792, -3.5337085232398597, -2.5466351879571025, -4.135990846921625, -4.135164466656955, -7.0, -4.142483323659504, -2.8048555856441326, -4.137986732723531, -7.0, -7.0, -7.0, -3.682476013267746, -7.0, -2.992917205061587, -2.723053376758989, -3.83511959042455, -3.8441974969884125, -4.141669216966209, -2.974204553769857, -7.0, -3.2553026633951765, -3.686397907850216, -3.6692548783557273, -7.0, -7.0, -3.441695135640717, -7.0, -7.0, -2.9558800862253753, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1459848380679163, -2.949200198545658, -3.252610340567373, -3.5494937132150133, -4.138334282071019, -3.448087666692341, -7.0, -7.0, -4.147150525210071, -3.726618553914196, -1.8908315357418142, -7.0, -3.8351830698490437, -7.0, -2.4716023034943726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.855034316675884, -4.146778989307833, -4.144325078400488, -3.839854984601885, -3.369803180547177, -7.0, -3.659852841038167, -2.1716508690254384, -7.0, -7.0, -7.0, -4.136815657726849, -7.0, -3.659821158055705, -4.13510083376572, -3.4807253789884878, -7.0, -3.235107414899873, -7.0, -3.8562151648112137, -2.505867886525835, -7.0, -4.147428968698656, -3.845129059940837, -3.6713888558913363, -7.0, -3.5591881890047756, -4.143420785129937, -7.0, -7.0, -3.8378093167503406, -4.1376705372367555, -3.2676409823459154, -7.0, -7.0, -7.0, -2.9206650533255254, -7.0, -2.9361785093615893, -7.0, -3.8529067587969537, -7.0, -4.136815657726849, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.49043608119321, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.135514280998787, -7.0, -3.6723441962757897, -3.0742982439742996, -3.2681617816431308, -2.754542969597536, -7.0, -3.6582976503081897, -7.0, -4.149126699742614, -7.0, -7.0, -7.0, -4.136054349551055, -3.1826365304361923, -7.0, -7.0, -7.0, -7.0, -7.0, -4.134177107576766, -7.0, -2.983438337806717, -7.0, -4.134081437462512, -7.0, -7.0, -7.0, -7.0, -7.0, -4.140727962844183, -3.860697274052039, -7.0, -3.297295337240443, -3.476483821914464, -7.0, -7.0, -7.0, -3.885785128783473, -7.0, -2.705031753031844, -3.541454428747589, -3.017770780394343, -7.0, -7.0, -7.0, -3.098025336873187, -3.456457134303779, -3.681512586638962, -2.7562556487542333, -3.5685537120494426, -7.0, -7.0, -7.0, -7.0, -4.1508178199016665, -3.8435753430507633, -7.0, -4.14126159062209, -7.0, -7.0, -4.135800283302111, -7.0, -4.136942412775367, -2.9759991429882495, -4.154241330167298, -4.144605338714745, -4.139091607523823, -2.625806478248694, -3.66228551572213, -7.0, -3.1673400601861292, -7.0, -4.135069013823448, -3.3665474682594816, -4.137132476008993, -3.6911109747937583, -3.3679147387937527, -3.863679667875898, -7.0, -3.8571213297287215, -3.4406887318721586, -2.6811375522716006, -3.0803859471859956, -7.0, -7.0, -7.0, -3.6880636969463443, -2.4753001814119373, -7.0, -7.0, -4.14370162942477, -4.134591434710877, -7.0, -7.0, -3.839697967180202, -4.138113146487167, -7.0, -3.446381812222442, -7.0, -2.592235212807746, -3.7246035153967165, -2.54910919481154, -3.8403256965399084, -2.9325931255359237, -2.6711998127813477, -3.0459545487272597, -7.0, -4.14646913307187, -4.137986732723531, -3.37842818542093, -3.5087720482709264, -3.382047075732925, -7.0, -7.0, -7.0, -3.0024746191278555, -7.0, -3.8391322339496554, -7.0, -3.686189234244024, -4.137005776429098, -2.6785735555720014, -7.0, -7.0, -3.148214944835215, -3.054882937183978, -3.300568312464303, -7.0, -2.9316958462012455, -3.588187641710234, -3.4871855275842742, -3.0040383904652064, -2.5109980542805, -7.0, -3.4292137870854282, -2.943238591907711, -2.961851022585581, -2.6434413311320966, -2.6113463608656016, -3.334118518033627, -3.2162921490146195, -2.8725223278596834, -2.649858871767756, -3.2006332643543884, -3.8541440369565634, -2.983128367847432, -3.318835191727664, -2.8490682559189415, -3.4989477407243084, -3.266216012243372, -2.9962223171445928, -2.9849980366194937, -4.174117981254267, -2.6679503290207967, -3.13569630425525, -3.012356283057885, -3.0235220799647475, -3.175038534391645, -3.5149238897392205, -3.3406848506563924, -3.391975460609762, -3.155044385219346, -3.115771140513356, -2.7839421883745876, -7.0, -2.739770065592548, -2.86178108426316, -3.372175286115064, -3.6727749524390982, -2.8349326248860227, -2.5222015261402246, -2.17626421402828, -3.3353241481530937, -3.876448786878341, -2.77625137091671, -7.0, -2.2798712318513092, -3.8687032022785366, -2.286844593855551, -2.8482184503122636, -7.0, -2.8948960007737647, -2.9263575806831863, -3.8936230762889528, -3.6730516416734686, -2.791859969324879, -2.364933273834648, -2.9442143738269984, -3.8375253094496014, -2.5602198558336093, -7.0, -2.151283895176477, -4.25779852915303, -2.752186612410317, -3.5424519473759766, -3.072249897613515, -7.0, -3.6520286555911117, -2.8022373422687794, -3.0464682530395018, -3.2711152399482035, -2.159646073401281, -2.7637635255241637, -2.819214799882384, -2.9755669553850708, -4.14157518330082, -2.507197252114352, -2.049041329359675, -3.045443348654918, -2.841668389969892, -7.0, -1.9152954430762743, -2.939169679625177, -3.2280885697501356, -7.0, -7.0, -7.0, -7.0, -3.3226327116922234, -2.740776106452548, -7.0, -3.6869935662646784, -3.843793198325913, -3.7215908027407387, -2.7730922490960315, -3.463205932194144, -7.0, -7.0, -2.92649902572, -7.0, -2.975735486453204, -3.857030798272624, -4.153326961490906, -3.8869698767408543, -3.278113115979834, -3.8772849391681783, -3.5089335260500327, -3.6851443595783593, -3.849665055478733, -3.9151887051731564, -4.15712419550487, -3.5599066250361124, -4.148664339982236, -7.0, -7.0, -2.9065074321941373, -7.0, -7.0, -3.0294243640580163, -2.801708531564807, -2.8759829615659807, -7.0, -3.7200214102529, -3.8444771757456815, -4.170291058625393, -3.839540892968969, -7.0, -7.0, -3.426917713880816, -7.0, -7.0, -3.4617235692693926, -7.0, -2.9864417053328878, -3.675044735955893, -3.8849368971038603, -7.0, -4.157758886046864, -7.0, -3.559637350780155, -3.241434406207398, -4.143608034837595, -4.137828663756581, -7.0, -3.932980821923198, -2.805062154669504, -7.0, -7.0, -3.5580362135762877, -7.0, -2.8731126826094333, -3.8464608251293324, -3.600155784473169, -3.666798683666174, -7.0, -3.63978521298682, -3.837241116300468, -3.268297087223767, -7.0, -7.0, -7.0, -4.181843587944773, -7.0, -7.0, -2.659315585270557, -4.153052275067108, -3.8494808372439864, -3.572383617766466, -7.0, -3.6061663146076204, -4.157184682201611, -2.7951149856303634, -3.1764530204109622, -7.0, -4.177449920971824, -7.0, -7.0, -3.057869784474744, -3.35646293810248, -4.139060078649301, -3.8828943560930194, -2.8674931076851453, -3.691435152144062, -3.1474444325481796, -2.878214415521801, -3.50478791537113, -7.0, -3.8537286234901957, -7.0, -7.0, -4.14525857696561, -7.0, -4.212427332726591, -7.0, -7.0, -7.0, -3.0783307071320714, -4.136815657726849, -3.8460586289641854, -7.0, -7.0, -3.8467699535372186, -7.0, -4.143014800254095, -3.425262429712809, -4.191953767152995, -4.151001907992831, -7.0, -4.15554857715353, -7.0, -7.0, -7.0, -7.0, -3.6642030725557553, -7.0, -2.8940992466856414, -3.267328202727136, -3.9114772171061025, -7.0, -7.0, -3.7177814197394, -4.136213065513025, -7.0, -2.918715693733087, -7.0, -7.0, -4.173506770208104, -3.366982975977851, -3.680577224555854, -7.0, -7.0, -3.666829861704301, -7.0, -3.230218939887381, -7.0, -7.0, -7.0, -3.094994900944612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6957442751973235, -4.701619786477204, -7.0, -7.0, -7.0, -2.7956814373306003, -2.9546283775072713, -3.6960941599952233, -7.0, -7.0, -3.265211027637486, -7.0, -2.846611982064236, -3.2345172835126865, -7.0, -7.0, -2.365083934123616, -7.0, -7.0, -7.0, -7.0, -3.0960405542954277, -2.556647042222806, -2.765359830990325, -3.6994040818153375, -7.0, -7.0, -3.4026052419199146, -3.716170347859854, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7671558660821804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.695043658821294, -7.0, -2.2371036915866878, -7.0, -3.6980135039391815, -2.4690852991231202, -7.0, -7.0, -7.0, -7.0, -3.7256666603141784, -3.7657430414210444, -7.0, -7.0, -7.0, -3.342197014679481, -7.0, -7.0, -7.0, -7.0, -2.982206601075478, -2.948086796418994, -7.0, -3.0344680227550427, -4.02639024655699, -7.0, -3.7038070652743285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1381447441794874, -3.704407927386841, -3.417969642214737, -7.0, -2.363565556109962, -3.418052578237505, -7.0, -7.0, -7.0, -7.0, -3.693023067923694, -2.995020606124758, -2.78710609303657, -7.0, -2.720413760411568, -7.0, -7.0, -7.0, -3.7318304202881625, -7.0, -7.0, -7.0, -3.3913762391696496, -2.237154410925494, -7.0, -7.0, -7.0, -2.1481911962420113, -3.130038777017368, -7.0, -7.0, -3.6942541120252788, -3.018201022496291, -2.7126497016272113, -7.0, -2.823148059810694, -3.1569023388474213, -3.693287157005656, -7.0, -3.708250888591378, -4.0735937247670435, -7.0, -3.2758486103094215, -3.76544501809015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.142514604999374, -7.0, -7.0, -7.0, -7.0, -7.0, -2.559031448926597, -2.4287345655395307, -2.78686967796165, -3.7350397050337207, -3.699143687394484, -3.3383369465610726, -7.0, -7.0, -7.0, -3.2573785441270937, -2.976044137806195, -7.0, -7.0, -7.0, -2.0571977987215453, -7.0, -7.0, -7.0, -3.7137424784090824, -7.0, -7.0, -3.746400644491561, -2.417803722639881, -2.634393291724445, -2.8601668223031473, -3.248463717551032, -3.0982109460284746, -7.0, -2.3686143205822265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388988785124714, -3.5039268041935103, -7.0, -3.3760291817281805, -3.6885977750811696, -7.0, -2.7614548059120496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.703635237583896, -7.0, -3.3995006613146104, -3.697316541732383, -3.306567981627654, -7.0, -7.0, -7.0, -4.1126050015345745, -7.0, -2.930120893290665, -2.8418955262504215, -3.7409150764812824, -7.0, -3.694956002249818, -7.0, -7.0, -3.106955425644155, -7.0, -7.0, -7.0, -3.827756862978617, -3.707058940627596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4282158115613255, -2.837114748515506, -3.5995009867887746, -3.8848609218813404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4073059070182823, -7.0, -3.696531119969607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4028629579685634, -4.158332331708981, -7.0, -7.0, -7.0, -7.0, -7.0, -3.696967640744023, -7.0, -3.7056926965377035, -3.459618623917375, -3.693463127219531, -2.8977492385228323, -3.095448326538122, -7.0, -7.0, -7.0, -3.52022143588196, -7.0, -3.0261245167454502, -7.0, -3.327046250042698, -7.0, -7.0, -3.391552566610928, -3.3432115901797474, -3.1427022457376155, -3.2756951764686093, -2.832366963209335, -3.3057095504829292, -3.6898414091375047, -7.0, -7.0, -3.7004441010277516, -7.0, -3.415140352195873, -7.0, -7.0, -3.228057990154014, -7.0, -7.0, -7.0, -3.3941013020400446, -3.1679668133956205, -3.2641091563058082, -3.4149733479708178, -7.0, -2.7288560129418293, -2.7008767083769034, -3.2120099425148356, -3.0156949885265183, -7.0, -3.6901074394563307, -3.416057729263038, -3.695831772826692, -3.4759615891924236, -3.419707981354444, -7.0, -3.4090027034017725, -3.052155067199565, -3.7034633418832934, -3.1996949881491026, -3.2794387882870204, -7.0, -7.0, -7.0, -2.9907087504593135, -3.1285608065593205, -7.0, -7.0, -3.2362852774480286, -7.0, -7.0, -7.0, -1.7462448717201984, -7.0, -7.0, -3.2413804341476116, -7.0, -3.4360035356698964, -3.8553374044695405, -3.553804245922432, -7.0, -3.163831985102053, -3.0076055495789995, -2.7564839644426096, -7.0, -3.721150843749684, -7.0, -2.902313767872166, -2.964907523353008, -3.456366033129043, -7.0, -7.0, -7.0, -2.88284966953054, -3.692935002531138, -7.0, -7.0, -3.463743721247059, -7.0, -2.847572659142112, -7.0, -7.0, -3.9655027326071046, -4.180283615315395, -7.0, -7.0, -4.498351913199365, -7.0, -3.9860099318532614, -3.472200430565602, -2.948879554937643, -7.0, -3.5866154316418695, -3.6257341909969014, -7.0, -4.833497722133357, -3.565626484523529, -7.0, -4.4645044509010345, -3.740783619483002, -7.0, -4.178765980418437, -7.0, -4.272179886040999, -3.0408899047542124, -3.4018245530016085, -3.2170626058525507, -7.0, -4.670950545585898, -3.5624118329497274, -7.0, -2.5443761695015814, -7.0, -4.154200732412475, -4.34086036206488, -3.8176534974987812, -4.03734680356809, -4.341513659870251, -3.724930914192398, -3.050814606421516, -3.619600109432393, -3.0258413119868632, -2.810456554359043, -3.581277159547442, -3.1898410886816086, -3.226299102605581, -7.0, -2.8209673146717194, -3.450557009418329, -2.661372380859304, -2.5665797073098218, -2.593216818119425, -2.569719632560632, -2.2798712318513092, -7.0, -3.780677274433368, -2.507072025030196, -3.182628608173459, -7.0, -3.413467412985825, -3.824125833916549, -7.0, -7.0, -2.6706136891913346, -2.966319935150028, -4.340798091941712, -3.699924402742477, -2.3840811520853626, -3.225739915853267, -2.369321624595056, -7.0, -4.186565539383188, -3.336859820916809, -3.3031420373343563, -3.094994900944612, -3.9641653106217354, -3.127958405334193, -4.071513805095089, -7.0, -2.2831568248844625, -3.3082441767406063, -3.5011049269548633, -3.1670217957902564, -3.4067955726682504, -2.0761662517354678, -2.371481885568941, -3.0569810366681134, -3.7238112811795303, -7.0, -2.0554319844088447, -3.3359090116234906, -3.697345604166356, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9830847727377883, -7.0, -3.289514631590605, -7.0, -7.0, -3.08020545491413, -7.0, -3.407815642384198, -7.0, -3.029221394253928, -7.0, -2.6422425686696984, -3.4503261040614124, -7.0, -7.0, -3.70922754733432, -3.500236474825639, -7.0, -3.7623033632877685, -7.0, -3.284374328300976, -3.447778009294621, -3.761702367541413, -7.0, -7.0, -7.0, -3.757965097861435, -7.0, -7.0, -4.232119017142043, -3.2868245882246527, -3.6627723563377486, -7.0, -3.5439439424829065, -3.417554724363455, -3.4807253789884878, -7.0, -7.0, -3.3967222785037734, -3.86308482532036, -7.0, -3.7271344237604884, -7.0, -7.0, -3.6857865089215553, -3.7364761820276966, -7.0, -3.688330818112266, -7.0, -7.0, -3.7610252517113727, -3.8154781280733654, -3.7134905430939424, -7.0, -3.7013088852280753, -7.0, -4.045322978786658, -7.0, -7.0, -7.0, -3.720159303405957, -3.277803625816607, -7.0, -7.0, -7.0, -7.0, -4.116408480629899, -3.3979400086720375, -2.814647069451856, -3.4379882502194996, -7.0, -3.71758729685546, -7.0, -7.0, -7.0, -2.9369658971078705, -7.0, -3.7319914490189294, -3.6961815871685237, -7.0, -3.86975959478241, -7.0, -3.3018110230174766, -3.9679222067305173, -7.0, -3.7992026563005252, -7.0, -7.0, -4.367281357632943, -7.0, -3.7011360660925265, -7.0, -3.703067723380233, -3.476759191770886, -3.837177937004182, -3.0975312952440524, -4.018908444316327, -3.698448538015329, -3.2656038765850357, -7.0, -7.0, -3.1153608453944126, -7.0, -7.0, -7.0, -7.0, -7.0, -3.128376186977645, -7.0, -3.7229628089424898, -7.0, -7.0, -7.0, -7.0, -7.0, -3.859438535455056, -3.833083334178343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7638022240745928, -7.0, -3.577664104732127, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0947836302399567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.98045221370234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.064972473084506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.754233630120203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.76748981033693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.244573972817435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2310233428503805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.796435558810175, -7.0, -7.0, -7.0, -7.0, -2.8236915393984545, -7.0, -3.3337494624819706, -7.0, -7.0, -7.0, -7.0, -4.04563587107822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8932494712502037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9138138523837167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.737452603142504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.029627239047413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015558831279868, -7.0, -7.0, -3.8256208250035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499456818023205, -7.0, -7.0, -7.0, -7.0, -3.3404441148401185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.998259338423699, -7.0, -3.5956128231697226, -7.0, -7.0, -3.955037987024298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7550741017584714, -7.0, -7.0, -7.0, -7.0, -7.0, -4.414756146424954, -7.0, -7.0, -7.0, -7.0, -7.0, -4.809303775819338, -7.0, -7.0, -4.405653656099307, -7.0, -7.0, -3.7737551094725466, -7.0, -4.502819583051974, -7.0, -7.0, -7.0, -7.0, -4.635312810258236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.555227498928218, -7.0, -7.0, -3.4055853869044945, -3.8687032022785366, -3.780677274433368, -7.0, -7.0, -7.0, -7.0, -7.0, -3.911663546757045, -7.0, -7.0, -3.895496211459295, -4.382269256575679, -3.573063160454811, -7.0, -7.0, -7.0, -4.320789977698806, -2.12346273211876, -3.7427447644270044, -7.0, -4.093386660001371, -7.0, -3.4403579968152878, -3.266623623872799, -3.151916806922742, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.273926780100526, -7.0, -3.944127194858972, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.859918485200716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6792006957270504, -7.0, -7.0, -7.0, -7.0, -3.8900855267163252, -7.0, -7.0, -2.8802703846028392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.043337266512166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1845494813206976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.096005739715113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.353882302989257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7159198174335795, -3.7209031708134575, -3.5900182997846484, -3.29827071697695, -7.0, -7.0, -2.7255273008700516, -2.8544461895402313, -3.243781916093795, -7.0, -7.0, -3.464116794444044, -7.0, -3.0331555896976927, -3.647480773173676, -7.0, -7.0, -2.7397781891936, -7.0, -7.0, -7.0, -7.0, -3.7236198355154633, -7.0, -3.916000993326847, -3.7243578042264267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3123238548327696, -7.0, -3.736077637003946, -3.73471984165568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.855908366581291, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9645646414975544, -7.0, -7.0, -7.0, -7.0, -2.565785701176179, -7.0, -7.0, -7.0, -3.856265556939869, -7.0, -3.427323786357247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7634279935629373, -7.0, -3.7430391548049333, -7.0, -2.6698790890013155, -3.4419306745501714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.553093786437186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7179200258369938, -3.0569048513364727, -7.0, -7.0, -7.0, -7.0, -2.937966366237449, -7.0, -7.0, -7.0, -7.0, -3.77757180469141, -7.0, -3.6181527333785195, -3.289390735066813, -7.0, -7.0, -7.0, -4.297636513446362, -7.0, -3.775391971696612, -7.0, -3.74499667403856, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8505849763520317, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3042301459140004, -3.034685740076159, -3.5833121519830775, -3.456897187449348, -7.0, -3.5719804234888946, -7.0, -7.0, -7.0, -3.399846712712922, -3.776991584856405, -7.0, -7.0, -7.0, -2.9256987611930096, -7.0, -7.0, -7.0, -3.737907923374639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5116754437726105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.824776462475546, -7.0, -3.784866815467607, -7.0, -7.0, -3.090879205198259, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7816835845073506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8213169705910977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5453071164658243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7640266076920375, -7.0, -3.8220550910247537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.467963090535135, -7.0, -7.0, -7.0, -7.0, -3.720985744153739, -3.722057771331464, -7.0, -7.0, -7.0, -7.0, -3.569490954348783, -7.0, -7.0, -7.0, -7.0, -3.8403570592033565, -7.0, -3.2949949938591003, -7.0, -3.004285539426262, -7.0, -7.0, -7.0, -3.1812717715594614, -3.1652443261253107, -3.7752462597402365, -3.330819466495837, -3.803798407989674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8845121591903937, -7.0, -7.0, -7.0, -2.6689620060235493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1699748475961473, -7.0, -7.0, -7.0, -7.0, -3.4897476056737124, -3.754348335711019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7427251313046983, -7.0, -3.2990712600274095, -7.0, -3.5376617134872417, -7.0, -3.310410061407572, -4.000596744744559, -3.08019341942848, -7.0, -7.0, -7.0, -3.168202746842631, -3.4085226171161014, -7.0, -7.0, -7.0, -7.0, -3.2748503200166645, -7.0, -3.7290027092721902, -7.0, -7.0, -7.0, -3.5653755027140734, -7.0, -7.0, -3.968277427274059, -3.3527683310263616, -3.257475499803275, -3.746011107751926, -3.9002715187187222, -3.8481891169913984, -3.299768711919799, -3.0288325872597874, -2.7406209017049608, -7.0, -3.5948619534914963, -3.6287668572312906, -7.0, -3.7560589473513573, -3.1504640348791213, -4.379305517750582, -3.8667450273840727, -3.493370904515132, -3.695043658821294, -3.95970902424643, -4.113709438449504, -3.61294271588699, -2.730220354860967, -3.205771922578067, -3.9241758703019207, -3.3301431005564446, -3.7704653911235964, -3.1980152497483316, -7.0, -2.7306176618021176, -4.335618349377605, -3.9353056902899253, -2.898470515114087, -2.885274213223267, -3.0482863931061255, -2.9313796264798206, -3.0633333589517497, -2.944180088937908, -3.2927580264854317, -2.918307929943518, -7.0, -2.5406706777534835, -3.037149237069725, -4.017409008536211, -2.907795114870337, -2.9307077936771586, -2.5957900611344176, -2.302218818934974, -3.0881754787039255, -3.5181848042184027, -3.222742476026601, -2.286844593855551, -2.507072025030196, -7.0, -7.0, -2.4223572566023504, -7.0, -2.6748611407378116, -3.1932530688425755, -3.857573704147496, -7.0, -2.639249260616867, -1.351966010973972, -3.533305917997387, -7.0, -3.5368108659915416, -7.0, -2.68185985669508, -7.0, -4.011838183029051, -2.95288926491093, -3.913442954859396, -7.0, -3.9779064276371185, -3.223841923439887, -3.0985890826880103, -3.3352572564345317, -2.0209542276260914, -2.3785536271729235, -3.206511055806463, -2.6028022288404826, -7.0, -1.5596980647057543, -3.086621501154378, -2.7356714695842044, -3.7776714519557197, -7.0, -2.7572694676725296, -3.475525915039281, -3.279609916344099, -7.0, -7.0, -7.0, -7.0, -4.225128287982088, -3.168291188851266, -7.0, -3.4872091017181868, -7.0, -3.8664645659717403, -2.7694954853699985, -7.0, -7.0, -7.0, -3.4394905903896835, -7.0, -3.119356714269176, -3.4725370532620774, -7.0, -7.0, -7.0, -3.5200903281128424, -7.0, -7.0, -7.0, -3.602005701124516, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070148736152306, -7.0, -7.0, -7.0, -3.0850853371959324, -3.260056925723567, -7.0, -7.0, -7.0, -3.802636918082811, -3.7300551523755, -7.0, -7.0, -3.880356199419236, -7.0, -7.0, -7.0, -7.0, -3.6988396964442867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.75564621945668, -7.0, -7.0, -7.0, -7.0, -3.093809893765957, -7.0, -7.0, -7.0, -7.0, -3.523876475638131, -7.0, -7.0, -7.0, -3.7321524180652137, -7.0, -7.0, -7.0, -7.0, -2.775003297785982, -7.0, -7.0, -7.0, -7.0, -3.886772643054438, -7.0, -3.536474268817627, -3.6804261708581456, -3.8274985081334587, -7.0, -7.0, -7.0, -3.8955698643861068, -7.0, -7.0, -7.0, -3.406931720475127, -3.7988577317474856, -3.6702767846279922, -3.603973901841678, -7.0, -7.0, -7.0, -7.0, -7.0, -3.042260406689452, -7.0, -3.417859036208306, -7.0, -7.0, -7.0, -3.327268092053331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3805730030668872, -7.0, -7.0, -7.0, -7.0, -7.0, -3.417388646165674, -7.0, -3.6012630540285273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669084326621116, -7.0, -7.0, -7.0, -2.070424498052958, -3.7319914490189294, -7.0, -7.0, -7.0, -2.976808337338066, -7.0, -3.479191276121532, -3.6952189189051508, -7.0, -7.0, -3.2021987362922757, -7.0, -7.0, -7.0, -7.0, -7.0, -3.158060793936605, -4.571569089924529, -3.137986732723532, -7.0, -7.0, -3.153814864344529, -7.0, -7.0, -3.1547282074401557, -3.093421685162235, -7.0, -7.0, -3.3158177338478967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.311188557387388, -7.0, -7.0, -3.361160995195026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.371621927176021, -7.0, -7.0, -7.0, -7.0, -3.4913616938342726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.746008552259242, -2.904715545278681, -2.515211304327802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.299942900022767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2506639194632436, -7.0, -7.0, -3.2062860444124324, -7.0, -3.6224212739756703, -7.0, -7.0, -7.0, -7.0, -3.31492005599242, -3.1122697684172707, -3.3399480616943507, -2.986995539724382, -7.0, -7.0, -7.0, -4.745152895076901, -7.0, -7.0, -3.3416323357780544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6181975699477458, -7.0, -7.0, -7.0, -3.1370374547895126, -7.0, -7.0, -7.0, -3.2182728535714475, -7.0, -7.0, -7.0, -7.0, -7.0, -3.413567971273289, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.782655731381152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9170851906405675, -7.0, -7.0, -3.449877525251001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.911335197980604, -7.0, -3.104145550554008, -7.0, -3.9698350930757975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.948556606440763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5436956323092446, -3.114610984232173, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7740057302582093, -7.0, -4.511883360978874, -2.810568529216413, -3.0993352776859577, -7.0, -7.0, -3.285782273779395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8639173769578603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6181422708462816, -3.1489109931093564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.316008177334867, -7.0, -3.1058506743851435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.126131407261984, -3.699837725867246, -3.0708994401858685, -4.003331258561327, -3.1670217957902564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.237040791379191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4154908521714686, -4.0426699996003075, -7.0, -7.0, -7.0, -7.0, -4.809721282524744, -7.0, -7.0, -4.4067104586097905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.620760489994206, -7.0, -3.314894817807367, -7.0, -7.0, -4.262213705476417, -3.303006957714623, -2.9574276904698027, -7.0, -7.0, -4.369104485571629, -4.407135862191559, -3.104487111312395, -7.0, -3.105793944650636, -4.3257413721537965, -3.811709026696191, -2.6384892569546374, -2.596668024008441, -1.5317069530054377, -2.6349141007233494, -7.0, -7.0, -7.0, -2.8482184503122636, -3.182628608173459, -7.0, -2.4223572566023504, -7.0, -7.0, -1.9264281993126555, -7.0, -7.0, -7.0, -3.595496221825574, -2.549229553718974, -7.0, -7.0, -7.0, -7.0, -3.6680751513945196, -7.0, -4.248306833423288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2874818076454804, -2.395520534548625, -4.187548920861271, -2.101794462727242, -7.0, -2.3952257583370415, -3.4962606330422306, -2.2338418642756133, -7.0, -7.0, -3.169527489553293, -3.225309281725863, -4.053731315887608, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5571060060508883, -7.0, -7.0, -7.0, -7.0, -4.034427905025403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.174195533840527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.482158695411276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.482941436820657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.182129214052998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.513217600067939, -2.376576957056512, -7.0, -4.179114979230523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.559487681797765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7095243558763413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.317436496535099, -2.530199698203082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.519644265409076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.582063362911709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.585573518622731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.737089226944776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9444826721501687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.965201701025912, -2.790988475088816, -1.9453044216515423, -7.0, -1.9704797083100105, -1.7745169657285496, -7.0, -4.1266994838399125, -7.0, -7.0, -7.0, -1.7664128471123997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.716856246874708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6020599913279625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.33665982345442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6711728427150834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.383815365980431, -7.0, -7.0, -7.0, -1.8998205024270962, -3.6876627068858356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6273658565927325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7151673578484576, -4.196935743115919, -7.0, -7.0, -7.0, -3.619927710291468, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5599066250361124, -7.0, -2.740362689494244, -7.0, -2.34143452457814, -1.4515671502472742, -1.7355988996981797, -7.0, -7.0, -7.0, -3.1324197980976147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0831441431430524, -7.0, -2.146128035678238, -7.0, -4.797184414314642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6020599913279623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.831072730183766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.469822015978163, -2.462397997898956, -2.1818435879447726, -3.3809344633307017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7697464671794534, -4.571825249040829, -4.003158833950862, -3.2596735002046984, -7.0, -7.0, -7.0, -7.0, -1.4294537668773173, -2.0331555896976927, -4.070739562849198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3529539117100877, -7.0, -3.7524518084163105, -7.0, -7.0, -2.552668216112193, -2.5861370252307934, -2.59659709562646, -4.134591434710877, -7.0, -7.0, -3.305136318943639, -4.058350092210653, -7.0, -7.0, -7.0, -4.277104727283855, -7.0, -7.0, -7.0, -3.4584867637982066, -7.0, -7.0, -7.0, -4.262676484650911, -7.0, -3.3779635912797032, -7.0, -7.0, -7.0, -7.0, -7.0, -0.9110008520221934, -7.0, -7.0, -7.0, -7.0, -7.0, -3.076640443670342, -7.0, -7.0, -3.5140161804006493, -7.0, -1.4943534012921837, -7.0, -3.782472624166286, -7.0, -3.7832397935618616, -2.3904935265041733, -2.919601023784111, -7.0, -7.0, -7.0, -3.1371958119405483, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8318697742805017, -7.0, -7.0, -3.8327004709605674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1560946306394277, -7.0, -7.0, -7.0, -7.0, -2.944153536490684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.332559641467404, -7.0, -2.5211380837040362, -2.571708831808688, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4727564493172123, -3.6832416162372654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1259148015308593, -7.0, -7.0, -2.8768773615716965, -7.0, -7.0, -7.0, -3.730136003996678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.531478917042255, -7.0, -7.0, -7.0, -2.7551122663950713, -2.4056877866727775, -7.0, -7.0, -7.0, -7.0, -3.8507993444678896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5668955742647115, -7.0, -7.0, -7.0, -2.3560258571931225, -7.0, -7.0, -2.6972293427597176, -7.0, -7.0, -7.0, -2.5705429398818973, -2.3443922736851106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.700126581535961, -7.0, -7.0, -7.0, -7.0, -7.0, -2.354108439147401, -7.0, -7.0, -7.0, -7.0, -3.4818724103106633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.570426178358973, -7.0, -7.0, -2.6278137478108206, -3.548573662418466, -7.0, -7.0, -7.0, -3.5536403362313544, -7.0, -3.428175304684282, -7.0, -7.0, -7.0, -2.9479514383577072, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4924810101288766, -7.0, -7.0, -7.0, -2.74350976472843, -7.0, -7.0, -3.502700175310563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4161965568964496, -7.0, -3.4825877695267677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0867803295915035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5403294747908736, -3.9845723156216324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.659782160442492, -3.516931808868013, -3.4765418090274287, -7.0, -7.0, -7.0, -7.0, -3.1758016328482794, -7.0, -7.0, -2.9906939606797516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5518767631329724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7822575736633017, -2.519171463821659, -7.0, -7.0, -7.0, -4.758078822249613, -7.0, -3.2686949535621777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.796683860632784, -7.0, -7.0, -7.0, -7.0, -7.0, -3.574956775764507, -7.0, -7.0, -2.695231434776617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4665117384861452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6708408988553822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.469674772551798, -7.0, -7.0, -3.5201777376898518, -7.0, -7.0, -3.4648488414960115, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5800121125294244, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0132586652835167, -7.0, -7.0, -7.0, -3.5644687921697042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9995654882259823, -3.514158198043977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.412880358464974, -7.0, -7.0, -7.0, -3.473194909204938, -7.0, -7.0, -2.8395923053285284, -7.0, -3.7554937284151193, -7.0, -7.0, -7.0, -7.0, -3.2563568863955257, -7.0, -3.6214878645806303, -2.6127838567197355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.129780495005279, -7.0, -7.0, -3.323716062508784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3512299205417593, -2.3678216524185376, -7.0, -7.0, -7.0, -7.0, -3.5356738034257504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.465977368285823, -7.0, -3.7840987774360624, -7.0, -7.0, -3.8785907256627516, -7.0, -7.0, -3.5199591807520685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.645805301402646, -7.0, -4.3282980381306, -7.0, -3.868438702162959, -7.0, -2.8457743357365493, -2.751231956995085, -3.6084037659857606, -7.0, -7.0, -4.304339704892339, -3.450900876048348, -3.7067834105169974, -7.0, -3.7343396976581213, -7.0, -7.0, -3.4018828223212823, -4.335748670303386, -7.0, -3.33955923092641, -3.005909446494559, -3.4613143143363385, -3.6856521841155243, -7.0, -3.8072740250669654, -3.074619551851069, -7.0, -2.6879460134808286, -3.8108371511404884, -3.7658707031269545, -3.522009286567709, -3.1698947576359866, -3.0479073469968614, -3.6989048552774317, -3.030724241924342, -2.951129274015182, -3.5895187615052655, -2.772028165324855, -3.589055531052344, -2.8606646256502417, -3.7567311710637616, -3.61066016308988, -3.5347873586294916, -0.952877875223359, -2.964848663898841, -2.2973064047319234, -7.0, -7.0, -7.0, -2.8948960007737647, -3.413467412985825, -7.0, -2.6748611407378116, -1.9264281993126555, -7.0, -7.0, -3.7795724432785334, -7.0, -7.0, -4.1025709018543, -2.2931325489131047, -3.3738311450738303, -7.0, -7.0, -7.0, -3.7943286798459863, -7.0, -4.353387219249733, -3.82885315967664, -3.849388698815317, -2.6350526852590237, -7.0, -2.9033613362553186, -4.335076597314406, -3.6282867310895144, -1.870478618324812, -2.195189788763281, -3.5333398359919688, -3.0329409377808534, -7.0, -3.0306300769965593, -3.816395982944207, -2.4258135993962244, -3.961003210960297, -7.0, -3.188741045483493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.619823500457278, -7.0, -7.0, -7.0, -3.641523684670229, -7.0, -4.354185298625861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.97799780995874, -7.0, -7.0, -4.507613030501773, -4.366292182210539, -3.0057748851496804, -7.0, -7.0, -3.214843848047698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4840624550927735, -7.0, -7.0, -7.0, -7.0, -4.312794214562137, -7.0, -7.0, -7.0, -7.0, -4.046221937221636, -7.0, -3.895753942073728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5259513412480126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9071425310031405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.717504074764202, -7.0, -7.0, -4.066176785772006, -7.0, -7.0, -4.339828924582621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.748885440009517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4983105537896004, -7.0, -3.867290669854884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.33683982531461, -7.0, -7.0, -7.0, -7.0, -3.5660837841679958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6682998808693528, -7.0, -7.0, -7.0, -3.979001748474721, -3.50745106090197, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5593555501202285, -4.275863950712521, -7.0, -4.202215775801132, -2.685221486931221, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7090437070077527, -3.0272731407471967, -7.0, -7.0, -7.0, -4.185881978409979, -7.0, -7.0, -7.0, -7.0, -4.2197940266919804, -7.0, -2.6542716385214287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8387839742393597, -7.0, -7.0, -3.4314709841279067, -7.0, -7.0, -7.0, -7.0, -4.1932081084944945, -7.0, -7.0, -7.0, -7.0, -1.3226638131779507, -7.0, -7.0, -7.0, -7.0, -4.2308829988575924, -7.0, -7.0, -7.0, -2.719096395032266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5903401790321667, -3.885559095608426, -3.8972971220594963, -7.0, -7.0, -7.0, -2.948123049558286, -7.0, -4.1827854420846835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.233985478780212, -4.182528775278964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.496652939250918, -7.0, -7.0, -7.0, -7.0, -2.5230051670436797, -7.0, -7.0, -7.0, -7.0, -4.203631126330513, -7.0, -3.7850924507567543, -3.3980979052314586, -7.0, -4.190611797813605, -7.0, -3.1981632898780257, -7.0, -3.9017306917292185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.082210716601243, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4936018736013543, -7.0, -4.246843122251319, -7.0, -7.0, -3.627017461878423, -7.0, -7.0, -7.0, -7.0, -3.9023293058583186, -7.0, -7.0, -7.0, -2.884309756948811, -7.0, -7.0, -7.0, -4.189181397180737, -7.0, -7.0, -7.0, -4.191953767152995, -7.0, -7.0, -4.193291602579516, -7.0, -7.0, -3.2118956929098874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9208534961212593, -7.0, -3.231528402060794, -7.0, -7.0, -2.590458060239311, -7.0, -7.0, -7.0, -3.8925398046586355, -4.196921944819459, -4.205177287388274, -4.188928483760853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0869215395030887, -7.0, -4.233275391293944, -7.0, -7.0, -7.0, -4.1829849670035815, -7.0, -7.0, -3.710540447933297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.499412125672275, -3.2606198751723716, -2.8081718973340783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.350688434639935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.728272597895017, -7.0, -7.0, -3.615871177457818, -7.0, -7.0, -7.0, -7.0, -7.0, -3.996905510695666, -7.0, -2.7255455311635712, -7.0, -7.0, -7.0, -3.3266089162548815, -7.0, -7.0, -3.73814608871206, -3.611431202502372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.468470412312344, -4.198684573077143, -4.189995339964319, -7.0, -2.648501656974582, -7.0, -7.0, -3.8381771981539616, -7.0, -4.181414796254284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.035730613217524, -4.204092838402539, -7.0, -7.0, -7.0, -3.9075994426517067, -4.19506899646859, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.184151775723396, -7.0, -3.5886637957802043, -4.183383742052695, -3.2025064803976218, -7.0, -2.6123416404291726, -3.8860392755664424, -3.165568043997485, -2.892138099558853, -7.0, -7.0, -7.0, -7.0, -3.723838623672183, -4.247457695814812, -7.0, -7.0, -7.0, -7.0, -3.2908412041830033, -7.0, -7.0, -7.0, -4.206987694756409, -7.0, -4.239149264858293, -7.0, -7.0, -3.5755573000600256, -3.281843801655201, -3.525239223729745, -7.0, -4.621061978712945, -3.6292566515815383, -3.6981658154401953, -2.8370221280830727, -2.860489313314953, -7.0, -4.410490420003448, -2.8620236540286195, -4.780180448202641, -4.116336501942694, -2.716607331253602, -2.6366421750341718, -3.233580959426479, -2.6046638058499907, -3.69637386502081, -3.540470253496464, -3.516081861799344, -2.1712034547730594, -4.049024097915049, -2.955126283548938, -4.427940290264142, -3.4244955574683114, -4.757107415601235, -3.355975507128502, -4.216667229548209, -3.016655354567462, -3.4208630205509762, -3.946681470082918, -2.834610068414402, -3.114813973009836, -3.325638791790539, -2.894532183356678, -2.8262077466008173, -2.7780228109816956, -2.8389594999108265, -3.1774823901037768, -3.9062542102482167, -2.4408086323175966, -3.2894650772224656, -2.2364554365485083, -7.0, -2.709469498990783, -4.20227029773729, -3.0740498129405394, -2.46260594354904, -3.014861666129001, -2.2038073097049544, -2.9263575806831863, -3.824125833916549, -3.911663546757045, -3.1932530688425755, -7.0, -7.0, -3.7795724432785334, -7.0, -3.33193317250328, -4.19512442298668, -2.559604515206681, -2.5875805480347904, -1.9251627584367712, -7.0, -3.926188049107206, -7.0, -2.4173384968683047, -3.8159760009719856, -3.4663379282749043, -3.977220446635385, -2.261204620583918, -3.706604003325916, -3.590752693877779, -2.9358719492185936, -3.0666728624046575, -3.6148972160331345, -3.5094041602586916, -7.0, -3.236211136661891, -3.769254209283846, -7.0, -2.6065710271626346, -1.8028997166794674, -7.0, -2.3008710783668844, -7.0, -3.7499938278694627, -1.9632032023186512, -1.882937978459839, -3.3416323357780544, -7.0, -7.0, -4.1923722835985116, -3.313526527244975, -3.438893790829892, -7.0, -4.207715133805567, -7.0, -3.9380441425719126, -2.35623838202335, -7.0, -4.187605315418148, -7.0, -2.843896900535604, -4.1893780058420305, -2.330360364447703, -3.5999649037760753, -7.0, -3.7520996889830758, -3.232678527575879, -3.521347331832345, -3.469208172085293, -7.0, -4.1955398965493185, -3.953977026127774, -4.201287854101759, -4.205826659359341, -7.0, -7.0, -7.0, -2.873801481567676, -7.0, -7.0, -3.4712036694702526, -2.9165280855391633, -2.9471978777896175, -7.0, -3.4592919449918176, -4.1908637331287455, -4.213198891723608, -7.0, -7.0, -7.0, -3.399673721481038, -4.187012807018954, -3.8926232292432177, -3.975845225467567, -7.0, -3.601647215470563, -3.418494636403444, -3.7502511875699738, -7.0, -4.201861216277263, -7.0, -7.0, -3.0293837776852097, -7.0, -4.183895915385611, -4.185060282521393, -3.9702771231209835, -4.3301295624875245, -7.0, -3.719248398447946, -7.0, -3.7141061271543476, -2.70713293016933, -3.715418322595056, -3.5431985856376467, -7.0, -7.0, -3.669354077643939, -7.0, -2.474325008970507, -4.197859231738088, -4.187153953785416, -7.0, -3.922595721029815, -7.0, -7.0, -3.8004650410651006, -4.197611323169714, -4.195373754817413, -3.1591803321859055, -4.202024895104038, -7.0, -3.9002578584377776, -2.891708963048237, -3.5925320448535816, -3.620812485741877, -7.0, -7.0, -7.0, -3.2245848537315305, -4.241919853150198, -3.8839168273879126, -7.0, -3.102788856634514, -3.734506468448954, -3.4263124127148887, -2.7182844553673173, -3.8394151926838935, -4.184123354239671, -7.0, -7.0, -7.0, -4.190583795977179, -7.0, -4.251540888649978, -7.0, -4.184350674046956, -7.0, -2.4701673913428643, -4.1829849670035815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.24355888962248, -3.9317882969633793, -7.0, -7.0, -7.0, -7.0, -4.180813775754397, -7.0, -3.409820451263753, -7.0, -3.7113572411942726, -2.565758741761729, -3.481896274611678, -2.819031838898129, -7.0, -7.0, -3.2810081021450763, -7.0, -7.0, -2.7163629652763714, -7.0, -7.0, -3.0692980121155293, -3.64931051416874, -3.502727471403209, -7.0, -7.0, -3.587289933011235, -7.0, -3.4898647703982753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.773347541980823, -7.0, -7.0, -7.0, -3.7746629225378223, -3.315410507181645, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3914644118391033, -7.0, -7.0, -7.0, -3.3567005768760696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.103746723189368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.258397804095509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8424220033576497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.321322205630525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9645660274236105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.242019364975552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2813256137230815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7149999674120426, -3.6818440056637476, -7.0, -7.0, -7.0, -3.797075094121358, -7.0, -3.1528995963937474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.976873777627786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.743431365146684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5737460987713385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.513350798805957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1552388418104504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.586399744970328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9204494466649153, -7.0, -7.0, -7.0, -3.778295991088834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.330007700872759, -7.0, -7.0, -7.0, -7.0, -3.325310371711061, -7.0, -7.0, -3.878866336956725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.201390295737178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2561964080632047, -7.0, -3.867754066822242, -7.0, -7.0, -3.789286852973362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.404320467221731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6371894221487615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.429106008332696, -4.7480406520901814, -7.0, -7.0, -4.595925894606198, -7.0, -7.0, -3.7260911906333236, -7.0, -4.42030238517869, -3.4933743907101054, -7.0, -4.628000445988902, -2.257545253461567, -4.806830927613483, -7.0, -7.0, -7.0, -7.0, -7.0, -4.477916732304635, -7.0, -4.242847744653152, -7.0, -7.0, -4.281056104583504, -7.0, -7.0, -7.0, -7.0, -7.0, -4.420714687488031, -7.0, -2.6994040818153375, -4.592665202751882, -2.1719467399789805, -3.16345955176999, -7.0, -4.117867626566016, -7.0, -3.8665944864062345, -2.5959369062691735, -2.695106259827803, -2.1228806438077106, -3.8936230762889528, -7.0, -7.0, -3.857573704147496, -7.0, -3.3529539117100877, -7.0, -3.33193317250328, -7.0, -7.0, -1.9187691217956822, -3.87421858322649, -7.0, -7.0, -7.0, -7.0, -3.5166167233974357, -3.8153120435243593, -3.6086475723466056, -2.620879328271566, -3.219388027689568, -3.3352572564345317, -2.5017437296279943, -7.0, -3.061284894874462, -7.0, -3.7988577317474856, -7.0, -2.846928464489655, -7.0, -3.358886204405869, -3.779390322499192, -3.438531047715789, -7.0, -3.8734659237113185, -3.4875625602563782, -7.0, -7.0, -3.3845326154942486, -3.357553719743082, -3.3378584290410944, -7.0, -7.0, -4.135990846921625, -3.463482379191176, -7.0, -7.0, -7.0, -3.0243830340033324, -2.3459766034400795, -7.0, -7.0, -7.0, -2.8169038393756605, -7.0, -2.47071034590996, -3.149373090491385, -3.425697213362591, -7.0, -3.393107024292132, -2.698721765128401, -7.0, -7.0, -7.0, -2.9891827512555476, -7.0, -7.0, -3.400192488592576, -7.0, -7.0, -3.6352323462394964, -3.37675939540488, -7.0, -3.6504601725336117, -3.211473343267295, -4.056889612666252, -7.0, -7.0, -3.0811672147134725, -3.5094713521025485, -7.0, -7.0, -3.336059277866349, -3.048247531803974, -7.0, -7.0, -3.064907027159636, -7.0, -3.536621562182411, -2.942338818066408, -3.27600198996205, -7.0, -7.0, -3.3434085938038574, -7.0, -3.765929202203141, -7.0, -7.0, -7.0, -7.0, -3.9180303367848803, -7.0, -7.0, -7.0, -7.0, -2.9078667452917313, -2.916102861641635, -3.3389542523776075, -7.0, -7.0, -4.010893313104381, -7.0, -3.543757723163865, -3.425697213362591, -3.3581252852766488, -7.0, -3.560026248912892, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5512059437479064, -3.4497868469857735, -3.6617180576946593, -2.9681715147063095, -2.9024863809435577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0074956138870546, -3.200713733964013, -3.1349337530532146, -3.6230838133595475, -3.404890706906996, -3.3372595397502756, -7.0, -7.0, -7.0, -3.3807537708039, -7.0, -7.0, -7.0, -7.0, -7.0, -2.579211780231499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.413132050434872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.812779707008964, -7.0, -3.6762362167633116, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7169210731667612, -7.0, -7.0, -3.2227164711475833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.180905413562809, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.086039331268039, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.042752659005548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.043833654133147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5971464878336956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2629254693318317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.389059713506695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.731330851449278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.878004470268025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.394976719554564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1505906704038935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.651278013998144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30977916448048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.099300726233463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.319660090166736, -7.0, -7.0, -4.54928533913167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.736069662371753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.102680627595637, -7.0, -7.0, -4.084933574936716, -7.0, -7.0, -7.0, -7.0, -4.406173856124117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.355700492781882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8064513232472623, -3.2920344359947364, -3.0814553278225736, -3.6730516416734686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.19512442298668, -7.0, -7.0, -4.3605744813966325, -4.680385377350414, -4.474469771414706, -7.0, -7.0, -7.0, -3.7698307982522015, -7.0, -7.0, -7.0, -1.9533367854783008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.608632989490037, -3.2244977469336202, -7.0, -4.636718522707071, -7.0, -3.351409751925439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7038070652743285, -7.0, -7.0, -7.0, -3.8042757671290937, -7.0, -2.564839453627283, -7.0, -7.0, -7.0, -7.0, -3.2984163800612945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.996905510695666, -4.644409044620594, -4.142060804897724, -7.0, -7.0, -7.0, -3.2329961103921536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7292458072253067, -3.04493154614916, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0377451292695925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304289418956787, -7.0, -7.0, -7.0, -7.0, -3.9411137270371017, -7.0, -2.959438915902078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.74787770581979, -7.0, -7.0, -7.0, -7.0, -3.3930484664167784, -7.0, -7.0, -7.0, -7.0, -3.323091602776659, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.388424986483075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1258064581395266, -7.0, -7.0, -7.0, -7.0, -3.5590983008782198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7911326033509545, -7.0, -3.5082603055123345, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3850403290293087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.121830095896224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.051422666089034, -1.7038472506330558, -4.0648509228019005, -4.351177653684284, -7.0, -2.900797319812092, -2.7999474153427037, -3.875369985268502, -7.0, -7.0, -3.664152883958131, -7.0, -2.8772705363797146, -3.3029799367482493, -3.873920951019782, -3.410889657525366, -2.101876182215234, -7.0, -3.653540523484712, -7.0, -3.575745755034518, -3.654003174669913, -3.4000004248702242, -2.631399000232247, -4.0522320902523346, -7.0, -7.0, -4.053212938645568, -4.357076839842412, -7.0, -3.239934426758005, -7.0, -7.0, -7.0, -2.54725846811543, -4.049876719873882, -3.8788854701365376, -7.0, -7.0, -4.0512683188703855, -7.0, -7.0, -7.0, -3.39778556539804, -3.6756133883967066, -1.7709177292002485, -3.175627764367181, -7.0, -3.8935213452372426, -4.353416091053356, -4.351834943477441, -7.0, -7.0, -3.7570922201189325, -4.36891880234938, -7.0, -7.0, -7.0, -2.3808361546624934, -7.0, -7.0, -4.35210530333973, -7.0, -3.6069900972210145, -3.757415009780414, -3.8743465023900985, -4.361236616731331, -2.591087102920519, -7.0, -3.450922358675277, -7.0, -4.351931519893126, -7.0, -7.0, -4.351776987317764, -7.0, -2.54347585490142, -3.2403956244812444, -2.575206779572527, -4.053347392169267, -3.357420246145415, -4.360801612967852, -2.239398798651167, -3.88058495606498, -4.051113916777601, -7.0, -7.0, -7.0, -4.351892891903961, -4.352259719157145, -7.0, -7.0, -3.2409056656041253, -7.0, -7.0, -3.873436863222037, -2.482835485930594, -4.350867996286564, -7.0, -7.0, -3.3514484229091166, -2.471691675306919, -7.0, -3.874114435154633, -2.941855307225644, -3.7536022072574475, -2.5623187299448182, -4.051962449783047, -7.0, -7.0, -3.402910666384635, -3.2197902864981054, -7.0, -3.15172727327314, -2.8970144490903236, -4.3519508325993845, -7.0, -3.753104075187242, -3.241387983090901, -3.4490153163477864, -3.462491585763105, -2.7237913946490377, -7.0, -7.0, -3.5749375144503044, -4.354818870847722, -7.0, -7.0, -3.6521772463437383, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9375343341579927, -3.2809808919291505, -3.3548241031327466, -7.0, -4.35324283143373, -3.8520528086978505, -7.0, -7.0, -2.9960736544852753, -7.0, -3.1103464971511974, -7.0, -4.351989455435632, -4.352008765565775, -2.115184637844681, -7.0, -4.350984143686028, -7.0, -4.356523002341826, -7.0, -7.0, -7.0, -4.358410786206337, -3.315130317183602, -4.354838055584639, -4.058255158229489, -3.7514330818193473, -7.0, -2.1532484973821076, -2.952695599586917, -7.0, -7.0, -4.051249021610516, -4.050476427265063, -3.8752735332544463, -7.0, -2.6447485068361107, -7.0, -3.3225146327132733, -7.0, -4.063839803002981, -1.4447201491172896, -3.397746945996307, -3.8816128724783483, -4.057000080912976, -3.4561951669015265, -3.6626822956379184, -4.066400475955629, -4.356350978030569, -7.0, -3.657457437356336, -4.3535892815794845, -3.6537140754412487, -3.4701899062855524, -7.0, -7.0, -7.0, -3.068799322509493, -7.0, -3.272626949394092, -7.0, -3.5175352052581, -4.352279017274498, -4.352317610936827, -7.0, -7.0, -3.8783685781837227, -7.0, -7.0, -7.0, -4.084165022655899, -4.053942329354995, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8754856994168585, -4.351525754547836, -4.050959459771651, -3.514813294999285, -2.899499746196925, -2.9585980084317365, -3.000045292154698, -4.350906715537863, -4.050476427265063, -7.0, -7.0, -7.0, -7.0, -4.355336561512381, -7.0, -7.0, -7.0, -4.35073245171613, -7.0, -4.351216345339342, -4.350654978678079, -7.0, -3.3539931244194845, -2.73206648438781, -7.0, -7.0, -7.0, -4.050592404072384, -3.3521632157054433, -3.4494012529962212, -4.351042205739445, -3.8775057221332867, -4.066624050983426, -4.050920836935403, -7.0, -2.4814793786171485, -7.0, -7.0, -7.0, -3.002436061443105, -3.756560043006683, -3.73430366675543, -7.0, -2.7239025063511586, -7.0, -7.0, -7.0, -2.888625423907928, -3.1079821158913807, -3.6666864241923705, -3.0727827856185654, -3.7711463488149852, -7.0, -7.0, -7.0, -2.77232170672292, -2.384235177015444, -3.1524221292928356, -7.0, -4.0539615073145, -3.4001156732959967, -7.0, -7.0, -3.7517985605323645, -3.147695642960966, -2.4962287772975196, -3.5176859234556574, -7.0, -3.3119271590844845, -2.2918854502530666, -4.353973902321006, -4.050050913799034, -3.2696841376874044, -7.0, -4.351255033547635, -3.755150427678159, -7.0, -2.9236325331770483, -3.153471864867516, -4.068482713761754, -7.0, -3.5201465220033143, -7.0, -2.5998446272877014, -3.3249555483094935, -7.0, -7.0, -7.0, -3.524563019364041, -3.280938615533181, -7.0, -3.874964742781923, -3.754348335711019, -7.0, -7.0, -7.0, -7.0, -4.052039507001472, -7.0, -2.743375903237164, -7.0, -2.830225931135402, -3.915856931822878, -2.629613445378183, -7.0, -2.3398450362288328, -2.7355228610948337, -3.1359179942343682, -7.0, -3.6590981582255195, -4.353030975765281, -2.6384139011253755, -3.1923583395461788, -3.3251236586893103, -4.351332399626383, -4.350809910936365, -7.0, -2.881802960668849, -3.39732190576478, -4.05332818707134, -3.5068914154213755, -3.1640366873790486, -3.875234946450165, -2.5759512759327388, -7.0, -7.0, -2.4395729484199693, -3.3610330758599813, -7.0, -7.0, -4.088579020388005, -3.686618396693641, -2.854178148262086, -2.7432791373097536, -2.4682786183667798, -7.0, -3.372043597924024, -3.5724504575628, -3.7155148088947807, -2.8711666731384202, -2.8133770987925284, -4.313919922812262, -3.0774890305065017, -2.559639953262714, -4.205799621570576, -3.5426940540960583, -3.7816405047233714, -3.3202545608791008, -3.1291183845233452, -2.858165668009299, -3.8331088463960503, -3.099478220000061, -3.9639024551700692, -3.380107825951645, -7.0, -2.5723445457257155, -2.399167832403589, -3.6665251803374077, -3.3655100073792745, -3.0142521135405436, -3.0731835519016713, -3.4824667915374334, -3.825724633180373, -3.0048292520634114, -2.8975618630201563, -3.4549002688478176, -2.397042473902774, -2.378339042491099, -0.7071420466449847, -2.1618775133441885, -3.5150786750759226, -3.0055834614855628, -4.064401826826439, -2.2243032322201834, -1.8590231903699448, -2.0210965506484637, -1.8319566260711162, -2.791859969324879, -2.6706136891913346, -3.895496211459295, -2.639249260616867, -3.595496221825574, -3.7524518084163105, -4.1025709018543, -2.559604515206681, -1.9187691217956822, -4.3605744813966325, -7.0, -1.747630450848589, -2.8251383512033783, -3.5080870228492893, -3.2361952477037432, -3.149450058942079, -2.143608523452319, -3.2252931246365586, -2.073179528365288, -1.871019397759376, -1.9587908314652507, -3.0969679150789244, -1.8954857836801475, -2.66908769785759, -2.3527153948431287, -3.5973843421258556, -3.0272354120535976, -3.5645138908321785, -1.4345612582962384, -3.4417823871692685, -3.4518631592206126, -1.9199113500563203, -2.1348892809686673, -4.0655797147284485, -1.8575104719484488, -3.2234588550581065, -3.6044240692658422, -3.0958830375160398, -2.7622363290860354, -2.9925150982919564, -3.507817334539596, -7.0, -7.0, -3.628848527992802, -2.2475481260755785, -3.353743170753935, -3.1133118672541786, -3.755074101758472, -2.0656802408725516, -1.8600035372297603, -3.2536920674836742, -3.2758486103094215, -4.352433371350281, -2.3401496516240496, -4.05558854630511, -1.9673259155379277, -2.784241800233638, -3.3206749005691742, -7.0, -2.6426686096873704, -2.6051223545340476, -3.0539510467143005, -3.668944734457734, -3.758684849882441, -2.187311774726153, -7.0, -4.367914738793752, -7.0, -3.4006914571198217, -7.0, -2.3654275949190438, -4.055989583385691, -7.0, -3.0594203544061824, -1.814272014037218, -2.664039261993672, -7.0, -4.390104563825434, -3.078227800040302, -3.331243195423496, -3.877448137397143, -7.0, -3.311194985427823, -2.8029139956252727, -7.0, -3.882410684373968, -3.6397686226140973, -7.0, -2.3106933123433606, -3.3614634023667214, -3.127050778278675, -4.350867996286564, -7.0, -4.052617000746292, -3.890551417985771, -3.121460358577064, -7.0, -3.3983837273914785, -3.450364596814099, -7.0, -3.041438238134359, -4.0621681733517825, -3.406956298169804, -3.198527717134609, -4.056923898922357, -1.9094208172150455, -2.5858238440164927, -3.5480909520409916, -3.7545585506411285, -7.0, -3.640836223757495, -4.35324283143373, -2.7545394443970084, -3.4590907896005865, -3.3547996852632904, -3.101479757044251, -3.6811688489293988, -7.0, -3.8752156517622924, -2.71803642078278, -3.516950677700458, -4.360744841210403, -2.7943771299220317, -4.365300748637988, -3.1414149308891646, -3.4614797679776728, -2.271634765541776, -2.8962505624616384, -3.3002511868257978, -3.9003124969837266, -7.0, -7.0, -3.0541340708512235, -7.0, -3.6545615547417434, -3.90444504107691, -2.400113741375228, -2.584442453586196, -2.080197932774685, -2.513714244622591, -3.4054239806799105, -3.311310673889323, -7.0, -3.6537140754412487, -7.0, -3.2430762267428355, -3.6669483178403244, -3.399587200018076, -7.0, -3.449883192013988, -7.0, -2.1364542995951337, -4.051249021610516, -7.0, -4.051981715369472, -7.0, -7.0, -4.354185298625861, -7.0, -3.4909061462664024, -3.6876002973649102, -4.361009712608143, -4.35324283143373, -4.062751156916884, -7.0, -7.0, -7.0, -3.878694100396108, -4.355144896174567, -3.577778936695224, -2.5236326771538353, -3.2295623970436256, -2.830536652178616, -4.353704703572165, -7.0, -3.086964573877051, -4.3519508325993845, -4.049818639702361, -2.621864856342066, -7.0, -7.0, -2.976203202107988, -4.399881302691986, -3.666105954192445, -7.0, -7.0, -3.2423502691413284, -7.0, -3.712733859069952, -7.0, -7.0, -7.0, -4.076444730438234, -4.97919770198058, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979229593022155, -4.502363382364717, -2.303370621853087, -3.7784542460202473, -7.0, -7.0, -2.058551657819114, -2.872611870862621, -4.377433751703389, -4.679945470619215, -7.0, -3.6596717642835825, -4.678103917207136, -2.398105624862588, -3.716789460800791, -4.979179477476769, -3.86854045204139, -1.9092655725827472, -7.0, -4.201347045549598, -7.0, -4.2808741725572155, -4.678613967933965, -4.025674449410344, -2.7551719956158522, -4.201497264541644, -7.0, -7.0, -4.3778387731760615, -4.37850237345544, -7.0, -3.4883050259234247, -4.678044676072082, -3.0353757656518012, -7.0, -2.395734989139622, -7.0, -4.37826613891235, -3.679073411294163, -7.0, -7.0, -7.0, -4.67833624673218, -4.377410986477962, -4.502326956667444, -3.7059401975314, -2.357611434806292, -4.5023087426730655, -4.201424437579911, -3.603455631785735, -4.678682232836399, -4.20115122765526, -4.502267758392556, -4.979648514925287, -4.503972168426268, -4.28443073384452, -7.0, -7.0, -7.0, -2.4593222480023207, -4.979120242557178, -7.0, -4.67837267930482, -7.0, -3.2880702826432477, -4.379101469283612, -4.377192379575923, -3.8353371955474906, -2.7746925762144707, -7.0, -3.979844176893234, -7.0, -4.9793707966348855, -7.0, -7.0, -4.9793343613877905, -7.0, -3.4366305511632125, -4.281042462324887, -3.273935843952804, -3.7757014473743005, -3.866700756042499, -4.078325386022452, -1.5707693706090062, -3.461953037961793, -4.076276255404218, -4.678076576148942, -4.979097457744342, -7.0, -4.377274370059828, -4.2804417782984165, -4.134126997288191, -4.3770146804081005, -3.167898869393933, -4.979389013112218, -7.0, -4.979065556997999, -3.6590555379726695, -4.979120242557178, -7.0, -7.0, -4.377251596478043, -3.248667908857583, -7.0, -4.67818593005568, -3.701840554823391, -4.378193425501022, -2.386880986817247, -4.3775430081774, -4.979966989370279, -7.0, -4.503541016777294, -3.4510501018233475, -4.678295256434399, -3.5015230515328484, -2.197975494850741, -7.0, -7.0, -4.980162507941342, -2.870770656446694, -3.979393567112165, -3.6207650116107004, -3.3597993573621676, -4.503727145256533, -4.678536588070615, -4.3776021772931735, -4.5029139488008685, -7.0, -7.0, -2.988062779908248, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2739733552614925, -3.609589963108257, -2.755808015428896, -3.358016473630128, -3.7007629061106853, -3.2810247868116487, -4.67833624673218, -7.0, -3.5828039875901907, -3.785498892166861, -3.463987950842169, -7.0, -4.502244987676499, -7.0, -2.578496459283649, -7.0, -7.0, -7.0, -3.7250309035037272, -7.0, -7.0, -4.681250285083047, -7.0, -4.503409316743605, -7.0, -4.680086107821505, -4.50262737734167, -7.0, -2.2361703147138603, -4.979284257931421, -7.0, -7.0, -4.979461871381611, -7.0, -4.502358829319633, -4.979215925719661, -3.2530551694438183, -7.0, -3.2460483982279698, -4.979133912871117, -3.5508667518642625, -1.8903131072361514, -4.678418215723125, -4.077849178425541, -4.135673194419237, -4.078026116493543, -3.867666888451123, -3.535682839461785, -4.503277576759695, -7.0, -4.980471520550195, -4.280755875857311, -3.657183380234882, -3.72913778048962, -7.0, -4.024909629847714, -7.0, -3.2146041885781704, -7.0, -3.5563025007672873, -7.0, -3.4501947501639734, -4.979452764766347, -4.979461871381611, -7.0, -7.0, -4.077077066845761, -4.280173021838674, -7.0, -7.0, -4.084303641312077, -4.134946257916835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.680281109863301, -3.680793140101235, -3.44854732180148, -1.6859897129364445, -7.0, -4.979279702785111, -4.97924781542311, -4.379164961302967, -4.9790883434844915, -7.0, -7.0, -4.9793525793934315, -7.0, -7.0, -7.0, -4.97919770198058, -7.0, -7.0, -7.0, -4.9799397007098865, -2.312113774786506, -7.0, -7.0, -7.0, -7.0, -4.377420092711333, -4.979566583734596, -7.0, -4.377938832645777, -3.8690872318374687, -4.502244987676499, -3.2484057839901737, -3.2858542379017495, -4.9791020148025416, -7.0, -4.678286146953918, -3.384608753685633, -7.0, -2.837383780552244, -4.9804578922761005, -2.208779157348013, -4.502194887898237, -4.9791612522081605, -4.979348024963666, -3.3943247011763185, -2.6358338724756276, -3.6602825959861374, -3.4793728345396158, -3.507126940370548, -4.134044986160437, -4.502108338302493, -7.0, -7.0, -3.83525560640304, -4.202402030831502, -7.0, -4.201906688806218, -7.0, -7.0, -7.0, -4.979853275304856, -3.979398121064359, -3.007205282237773, -3.583851425939607, -4.980589614348293, -4.678750487010251, -1.6406181228166998, -4.280846876178632, -4.678140369274087, -3.278792414018181, -4.979206813945709, -4.979211369856581, -4.980648649207456, -7.0, -3.870084122344106, -4.378761175316373, -4.983590207164233, -7.0, -4.505462015353893, -7.0, -1.595422951718882, -3.2581581933407944, -7.0, -7.0, -7.0, -3.6824699984835996, -3.7259887245144285, -7.0, -4.979425443774774, -4.5033184658590395, -7.0, -7.0, -7.0, -7.0, -4.979648514925287, -7.0, -3.2990667156532036, -4.3774383046052785, -2.84294413666749, -3.627499437712944, -2.0525609515701713, -4.502986698753511, -3.0482068592753193, -2.7132394661449837, -4.204766419136863, -7.0, -4.202665377206015, -7.0, -3.379989513978221, -3.6892289202673214, -4.505805449051175, -7.0, -7.0, -4.979056442068636, -3.4369164966752686, -4.678318029299685, -4.979953345254416, -4.678400001728747, -3.9041066737190038, -7.0, -3.3451018214939543, -7.0, -7.0, -2.234503776841132, -2.281859415013462, -3.054904018624125, -4.281919242436253, -2.854456080613144, -3.5102008339963153, -2.5619484129365397, -1.8459505141455332, -2.0329793553070608, -7.0, -2.722123655881506, -2.3571035853767603, -2.5745912864795972, -2.4188093285612, -2.112532898581015, -2.9844395836343924, -2.5102819608455094, -2.195629541422008, -3.194568182694128, -2.609346857296908, -3.2420189433633753, -2.440666173142421, -2.5154691970223673, -1.9123537888869968, -3.130834353972563, -3.1352797775136847, -2.661580842457, -2.2775309162337645, -4.081869155842856, -1.640458686908127, -2.8980908084740675, -2.5895893105452106, -2.591990301559195, -2.3832551832908417, -2.526024644625345, -2.6156317506865383, -2.7262847745317265, -2.290191529906219, -2.6460026549925924, -2.4889282435288567, -4.080292702211703, -1.9776834142348059, -2.1463918829342066, -2.6974115296424017, -2.610050179649368, -2.0544809452212145, -2.632284751300133, -1.000773975679654, -2.9587962505265497, -3.453776859690442, -2.6150606136353867, -2.364933273834648, -2.966319935150028, -4.382269256575679, -1.351966010973972, -2.549229553718974, -7.0, -2.2931325489131047, -2.5875805480347904, -3.87421858322649, -4.680385377350414, -1.747630450848589, -7.0, -2.341424640638167, -7.0, -3.9453656171122073, -4.134741587601687, -2.238647399728776, -3.493636646629202, -2.421350030521526, -2.9382694834629115, -3.2787903348347553, -4.979598447701, -3.61800012981326, -2.330522106345977, -2.546630782476486, -3.228719959339479, -1.9940933059313122, -1.995603730660035, -2.2279710176578824, -2.244982936312322, -4.980148869966749, -1.4938986418652622, -2.064907698019913, -2.5638900641249864, -2.0251841199184506, -4.506577183334457, -3.1228709228644354, -2.8946149153826797, -2.512227672063213, -4.679077957809192, -4.979657617436882, -7.0, -7.0, -3.0741091006233097, -2.7115288124910117, -4.678841475892305, -3.2348244927709917, -4.378543247161644, -3.608517119395359, -2.6421609791755407, -3.9831524989729203, -4.980203419295704, -7.0, -2.954754915800072, -4.07733610431472, -2.3415571717649177, -3.5509888914628096, -4.282866716929532, -3.987125294063701, -2.6665786416553043, -3.8394376418318696, -3.8142387143633596, -4.080076055960704, -4.504353041020471, -3.250969731009272, -4.283432402016652, -4.138040914556538, -4.5040447413439955, -4.980153416005866, -7.0, -3.208236548850757, -4.679545994115586, -4.979379904969063, -2.638548805251015, -1.9117170735037696, -2.052593350948046, -7.0, -3.5734830426589057, -3.701813305543457, -3.5528348912085557, -4.502873021596449, -7.0, -7.0, -3.5748011791913576, -4.679068864731537, -4.136040742626403, -3.4273852129070925, -7.0, -2.7066132925258684, -4.282712723035266, -3.840639221302228, -4.678081133111508, -4.079380252083097, -4.377697741146842, -3.414625592612454, -2.703212850278049, -4.679405181871566, -4.50246808922949, -7.0, -3.6936478192387985, -2.8750998656300175, -3.8680110921631368, -4.282640236421941, -3.385815458734226, -4.3787203221163375, -1.9598446499148852, -4.282014536689525, -3.264773286837431, -4.202311184698005, -4.504049276748714, -2.9495203932009812, -7.0, -3.1616196942048727, -4.282866716929532, -4.5029912452209455, -4.135514280998787, -3.7308002139362295, -7.0, -7.0, -2.7797724115753364, -4.680793140101235, -4.504325846909658, -3.032302413919488, -3.836315071579222, -3.4587266981425513, -4.137295321174881, -3.071817053124699, -2.8272164116669023, -3.605695520054009, -3.466737343913133, -7.0, -7.0, -2.9757572159420054, -3.365817681057219, -4.377697741146842, -4.032247065637881, -2.5103335129592623, -3.9427023688886678, -2.843345672544991, -3.015622630549385, -3.239851544802794, -4.377556663304251, -4.0789414130924255, -4.678545692299574, -7.0, -4.50354555744551, -4.681706949373032, -3.6107532922391736, -7.0, -4.678641275182585, -4.9791020148025416, -2.628221247239599, -7.0, -4.135809359656516, -7.0, -4.50266832770066, -3.8048479063618035, -4.67886422013453, -4.980357938529916, -3.484299839346786, -3.4312118238758584, -4.504389297186282, -4.678641275182585, -4.380116229401339, -7.0, -7.0, -4.979129356147615, -4.378220694456968, -4.5029912452209455, -4.503223051971403, -3.3752846655239948, -3.1596733301284265, -3.9497092886669005, -4.502650128017808, -7.0, -3.7840642670723494, -4.502235879055773, -7.0, -3.05219091130959, -7.0, -7.0, -3.754334842507978, -3.1517117392567644, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1548119446999063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.17205387889541, -5.172229183784123, -2.230840899270554, -4.87325373741082, -7.0, -7.0, -3.7206582057950017, -3.5402412871049003, -7.0, -7.0, -7.0, -4.696746525053621, -7.0, -3.5407436856394208, -4.4045115809285225, -7.0, -5.174213950544837, -2.2665525867583787, -7.0, -7.0, -7.0, -7.0, -7.0, -4.871505801505925, -2.7555775342988365, -4.871316018745736, -7.0, -7.0, -7.0, -5.172926780108456, -7.0, -7.0, -7.0, -4.477129940522443, -7.0, -2.5389528728350346, -5.1719954282039575, -4.871739266495737, -7.0, -7.0, -7.0, -7.0, -7.0, -4.871190424556114, -7.0, -4.874635446114873, -3.6176632694789093, -4.695061188012712, -5.172305127265699, -4.174986747747709, -7.0, -7.0, -7.0, -7.0, -3.89440351920064, -4.475764137731008, -7.0, -7.0, -7.0, -2.9128490780700087, -7.0, -7.0, -5.172170756683376, -7.0, -4.87632755539097, -7.0, -7.0, -4.8725291977811604, -3.0895835270087257, -5.17206264582066, -4.695367834387965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.173195012508446, -4.87154374810799, -4.270675925314027, -5.172521201440062, -5.173031760343499, -4.219208918263775, -2.6440084295323794, -4.69590175824009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.332582719834521, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.172442376021389, -7.0, -4.474545503517712, -5.172126931198854, -7.0, -7.0, -7.0, -3.672244590979858, -7.0, -7.0, -7.0, -7.0, -4.697232249674232, -7.0, -3.6895007669133824, -3.1933110552062804, -7.0, -4.871955109930143, -7.0, -3.1394464176042884, -7.0, -4.219988887789219, -4.475752520143048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2102357529251764, -7.0, -7.0, -4.870942050060529, -7.0, -7.0, -4.10595276923698, -4.48000406682523, -4.032995569091898, -4.2193108595141835, -7.0, -3.17583819826466, -7.0, -7.0, -7.0, -3.731519696167285, -5.174341876619092, -7.0, -7.0, -7.0, -3.2906968195221182, -7.0, -7.0, -5.172275919805895, -4.69570927120908, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8678429063865183, -7.0, -7.0, -7.0, -7.0, -7.0, -5.172226262615762, -7.0, -4.477367285224013, -7.0, -3.060932757396147, -7.0, -4.696999635006528, -2.840684167333266, -7.0, -4.571114618015548, -5.173078410081454, -7.0, -7.0, -4.174478483315079, -5.1728159401009215, -4.871459093443646, -7.0, -7.0, -7.0, -4.330349987099072, -7.0, -7.0, -7.0, -3.8524439488043782, -7.0, -4.478641516731935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.172696317831423, -7.0, -7.0, -7.0, -5.177348890367912, -7.0, -7.0, -5.17201588684082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7828050260346147, -2.1517212641187347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721673245455936, -7.0, -7.0, -7.0, -5.1721035557986665, -7.0, -7.0, -7.0, -7.0, -4.060552567068463, -7.0, -4.400327842485654, -7.0, -7.0, -7.0, -7.0, -3.585781667754338, -7.0, -4.231206147302349, -5.172842194238305, -2.7606260839609345, -7.0, -7.0, -7.0, -4.484365334559296, -4.328842487609549, -7.0, -4.874600667081689, -2.5157571700194685, -7.0, -7.0, -7.0, -7.0, -4.872476774544123, -7.0, -7.0, -5.172614605635793, -7.0, -7.0, -5.172109399766667, -4.871418219767973, -7.0, -4.137751045204818, -4.696705780933917, -5.172926780108456, -7.0, -2.7819676747631523, -7.0, -7.0, -3.284253031569433, -7.0, -7.0, -7.0, -5.172232104932835, -4.874171496513056, -7.0, -5.174856107981183, -7.0, -7.0, -5.172489089107628, -2.085481870600912, -4.475421288176064, -7.0, -7.0, -7.0, -4.0608953340692775, -5.173457253562059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0268162428984065, -7.0, -3.3391752955084275, -7.0, -1.9281786549499058, -4.69549626947358, -4.572703193349392, -2.2623458143395654, -5.174452327912134, -7.0, -7.0, -7.0, -4.696958914626985, -4.702137461143438, -5.174440702782961, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.873689624369535, -7.0, -4.576229018141046, -7.0, -7.0, -2.6471647853430955, -2.5473879297857804, -2.585881903537832, -7.0, -2.8141034167340453, -3.9732231338246757, -3.532340972815915, -2.3492307781211794, -2.8251465839459926, -7.0, -3.375387870556721, -2.3303996308647994, -2.7125911868423653, -2.3952086266982553, -3.288585800358648, -1.7309884791846206, -2.623890979325472, -2.416572585148292, -3.3729943935509152, -3.0401260605057816, -2.7745002499864304, -0.6355151074541456, -3.7300551523755, -2.313199520872477, -2.929519470369024, -2.8777435688491266, -2.891590005962673, -2.6840607460515464, -4.330645644407504, -2.7749792130712096, -2.256239193305345, -2.5945400247532024, -2.734673526117867, -2.892070625520591, -3.3195871224577425, -2.8270039497469024, -2.9233503834761776, -2.9908897569526816, -2.033876869603903, -3.4895173193519526, -4.873727380646679, -2.325649322444365, -2.977746849688124, -3.9828137621318627, -5.173436862713784, -2.925674902660467, -4.873183954880855, -2.760634118061711, -3.6323026013613955, -4.2729896907231355, -2.9629894767010017, -2.9442143738269984, -4.340798091941712, -3.573063160454811, -3.533305917997387, -7.0, -7.0, -3.3738311450738303, -1.9251627584367712, -7.0, -4.474469771414706, -2.8251383512033783, -2.341424640638167, -7.0, -7.0, -4.5748787621653415, -7.0, -2.7731882494590696, -3.5511690398945315, -2.854352194733876, -3.9524533964230333, -3.3223580508773014, -7.0, -3.4681626421329956, -3.0231152201059763, -2.827736554353427, -3.920456691003599, -4.18413472305636, -4.4032320844788675, -3.1139246438338923, -4.878119484697168, -7.0, -3.185214973180491, -2.850942982561628, -4.69727003779242, -1.960728263701163, -4.572859989893312, -4.3318175956470295, -3.904083156295295, -3.436719078227576, -4.327490297721857, -5.172328491819344, -7.0, -7.0, -2.778358008055677, -3.783996977708136, -5.1724715722890915, -4.873768037582299, -7.0, -4.576226137449605, -3.323642548936354, -5.174626667518491, -7.0, -7.0, -3.9333438491251504, -7.0, -2.916077773141475, -4.697078156386674, -4.872715540280947, -7.0, -4.342247799786142, -4.062191334025707, -4.401107465479456, -4.475630516702674, -4.872470949349374, -5.180166032638616, -7.0, -7.0, -5.173308669740682, -7.0, -7.0, -4.014626929273559, -4.570846373009805, -7.0, -2.954609777522019, -3.3589812256253495, -2.1881025299472006, -7.0, -4.576061906444384, -7.0, -7.0, -7.0, -7.0, -7.0, -2.934951266485025, -4.695484595126102, -7.0, -4.279692604072538, -7.0, -4.144410024868985, -4.872616555783219, -4.875943432270175, -7.0, -7.0, -7.0, -7.0, -2.8138144174810424, -7.0, -7.0, -7.0, -2.784517042296126, -4.2866669415288365, -7.0, -4.571528323403687, -4.143355512469716, -5.173066748116727, -2.4828622066657835, -4.872167931504066, -4.5766004672102065, -7.0, -4.571234108634844, -3.6510425226700334, -7.0, -3.4455136273681837, -7.0, -5.172632116686294, -4.87194052929306, -4.135103726372142, -7.0, -7.0, -4.705783913315986, -7.0, -7.0, -4.283394524137035, -7.0, -5.17931619719864, -5.174120889726191, -3.824920600351519, -4.4856902015728215, -5.176481948305591, -5.176111525658619, -7.0, -7.0, -3.114858477397568, -4.333493335771041, -7.0, -4.699638303379863, -3.5647792408154557, -7.0, -4.083155177608267, -3.0772406874323766, -4.886919168061725, -5.17231973025903, -7.0, -7.0, -7.0, -5.1729880216628, -4.572235371078456, -3.9243798055581998, -7.0, -7.0, -7.0, -3.462504953811799, -7.0, -7.0, -4.394133431866444, -7.0, -4.696099989021025, -5.172486169686935, -7.0, -4.701683090935717, -4.8765526726537205, -7.0, -5.1723430940270845, -7.0, -7.0, -7.0, -5.1719895827021185, -4.871710090234615, -7.0, -4.327647881293372, -3.9293990555775653, -4.101546601696882, -3.32202393317598, -4.871377342245107, -7.0, -4.478912638929306, -7.0, -7.0, -3.0831103583450727, -7.0, -7.0, -3.9451759445910755, -4.138296955391362, -4.697049076049325, -7.0, -7.0, -7.0, -7.0, -4.102510883861542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658860066006634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5878231713189552, -7.0, -7.0, -3.974598036449844, -7.0, -7.0, -7.0, -2.5171958979499744, -7.0, -7.0, -4.2576785748691846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.859178341043755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7041505168397992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028855809390444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8959747323590643, -7.0, -7.0, -7.0, -3.916677618403313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.829946695941636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.060471192797679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7371926427047373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6768764319731373, -2.9339931638312424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.987219229908005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9344984512435675, -7.0, -2.677606952720493, -7.0, -2.780317312140151, -7.0, -7.0, -3.523933342263851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2219355998280053, -7.0, -7.0, -7.0, -7.0, -3.391575762261328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8976270912904414, -2.3710678622717363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1020905255118367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3560258571931225, -4.019946681678842, -7.0, -7.0, -7.0, -3.6133131614554594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.534026106056135, -2.6875289612146345, -7.0, -7.0, -2.5550944485783194, -7.0, -7.0, -7.0, -7.0, -2.945796726048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.968015713993642, -7.0, -5.098003058442917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9559137362541525, -7.0, -2.3479151865016914, -3.942528893958499, -3.0038911662369103, -7.0, -7.0, -7.0, -2.3419288837458097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.330413773349191, -7.0, -7.0, -3.0425755124401905, -7.0, -3.3694014136966244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9598360759497873, -7.0, -3.7006820883952, -3.4308809464528913, -7.0, -7.0, -2.968015713993642, -4.542663625238801, -2.4551350183502896, -2.114499783493657, -3.591138839055037, -3.8375253094496014, -3.699924402742477, -7.0, -7.0, -7.0, -2.552668216112193, -7.0, -7.0, -7.0, -7.0, -3.5080870228492893, -7.0, -7.0, -7.0, -1.5502283530550942, -2.2174839442139063, -3.9120306483690306, -3.6664243725187595, -7.0, -3.298307137328508, -4.05595140532915, -7.0, -7.0, -7.0, -4.275656809537014, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5888317255942073, -4.604604005662973, -4.261928672990642, -7.0, -3.5913479701696387, -7.0, -7.0, -7.0, -7.0, -7.0, -2.447158031342219, -7.0, -7.0, -7.0, -7.0, -1.9071425310031405, -7.0, -7.0, -7.0, -3.988514365833666, -7.0, -7.0, -7.0, -3.476759191770886, -7.0, -4.025694917138129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6407000199084365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0810627264918615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5780658838360915, -7.0, -3.4165573011914794, -7.0, -7.0, -2.951823035315912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.435730637625475, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -7.0, -2.9827233876685453, -7.0, -7.0, -7.0, -7.0, -4.149957708891059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9631264410819047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.43230486406257, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1986570869544226, -7.0, -2.1893967258352185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.196489375975232, -7.0, -7.0, -7.0, -7.0, -2.923983747103962, -3.262213705476417, -3.3326404103874627, -2.977494969073036, -7.0, -7.0, -3.2802140293383997, -2.780877124642547, -7.0, -7.0, -2.821005006647399, -3.244277120801843, -7.0, -7.0, -3.2805783703680764, -7.0, -2.9845273133437926, -3.196533112615811, -3.2711443179490782, -7.0, -7.0, -2.9813655090785445, -2.836745965649491, -7.0, -7.0, -7.0, -2.7207104386092404, -7.0, -2.6489789179974625, -7.0, -3.002166061756508, -7.0, -7.0, -7.0, -3.2591158441850663, -7.0, -7.0, -7.0, -7.0, -2.8209235878813175, -7.0, -7.0, -3.144262773761991, -7.0, -7.0, -7.0, -7.0, -3.338257230246256, -7.0, -7.0, -7.0, -7.0, -4.088702960351474, -7.0, -7.0, -7.0, -7.0, -3.0778522036135776, -3.0402066275747113, -7.0, -7.0, -3.780869132399668, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3336487565147013, -7.0, -2.4683473304121573, -7.0, -7.0, -7.0, -3.1405583202415124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0517311960598494, -7.0, -7.0, -3.278296208091274, -7.0, -7.0, -3.2528530309798933, -7.0, -7.0, -3.3001605369513523, -2.327040530515065, -7.0, -7.0, -7.0, -2.840942080243099, -7.0, -7.0, -3.386320573894046, -4.149403879508583, -3.2545480771089736, -7.0, -7.0, -3.3869175103792855, -7.0, -7.0, -7.0, -3.0259199985020175, -7.0, -3.270911639410481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.801472313521471, -1.8838220767244906, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2460059040760294, -7.0, -3.6131015169669127, -3.1051694279993316, -7.0, -7.0, -7.0, -2.285752937156083, -7.0, -7.0, -7.0, -3.3085644135612386, -7.0, -7.0, -3.085825533520743, -2.7259116322950483, -2.5325420619597168, -3.2893659515200318, -2.2934630044590665, -7.0, -7.0, -2.4154026577248313, -7.0, -3.243781916093795, -7.0, -2.957607287060095, -2.401400540781544, -7.0, -7.0, -2.6646419755561257, -7.0, -3.4649364291217326, -7.0, -7.0, -2.6876640576421096, -7.0, -3.3334472744967503, -3.325515663363148, -3.3412366232386925, -7.0, -7.0, -3.3066394410242617, -3.2823955047425257, -7.0, -2.9731278535996988, -7.0, -3.4687902620996107, -7.0, -7.0, -7.0, -3.9921999297955852, -3.2422929049829308, -2.9639058261187046, -7.0, -3.374565060722765, -7.0, -3.2591158441850663, -7.0, -7.0, -2.450029045237934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3473300153169503, -2.595496221825574, -7.0, -7.0, -7.0, -7.0, -2.946206553842783, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8364215020692862, -7.0, -7.0, -2.7669083343103593, -7.0, -7.0, -7.0, -2.582744965691277, -3.273039874302055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4912215762392833, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808616035426992, -2.189468718289905, -3.615147495697204, -7.0, -7.0, -7.0, -2.303350363509127, -7.0, -3.402433346219312, -2.629700778786374, -7.0, -7.0, -7.0, -3.241795431295199, -2.9724342769573653, -2.5749952958303357, -2.3575113516164294, -7.0, -7.0, -2.9858753573083936, -7.0, -7.0, -3.279210512601395, -7.0, -2.321494866739587, -7.0, -2.836745965649491, -7.0, -4.322405381067654, -7.0, -7.0, -3.559068334034537, -7.0, -7.0, -3.0159881053841304, -3.2615007731982804, -3.153204900084284, -3.3265406685165617, -2.4788870081411605, -2.6961378757818526, -2.6989700043360187, -7.0, -4.149143814728642, -3.1094097905463656, -7.0, -7.0, -7.0, -7.0, -3.0499928569201424, -7.0, -3.2571984261393445, -3.3085644135612386, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2477278329097232, -7.0, -7.0, -4.0218092770223395, -7.0, -4.356347791752488, -7.0, -2.3487914675605843, -2.846586880971535, -2.6331316626337404, -7.0, -7.0, -3.2678754193188975, -2.788521887222473, -2.346455924429052, -2.506843136339351, -7.0, -7.0, -7.0, -3.3461573022320086, -2.4055658794489867, -2.4363898479258244, -7.0, -1.7811706911574223, -3.2605483726369795, -2.9905608299940196, -7.0, -7.0, -4.633993331603568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.419972261273999, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.504708673848843, -3.952695599586917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.416315913177959, -7.0, -3.695043658821294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.583522632657682, -4.589122650205851, -3.5573868820595074, -3.3661738280168447, -7.0, -4.107209969647869, -3.399327532158679, -3.5616737023990064, -2.17666993266815, -2.720572720364261, -3.6461095219788477, -2.5602198558336093, -2.3840811520853626, -7.0, -3.5368108659915416, -7.0, -2.5861370252307934, -7.0, -3.926188049107206, -7.0, -7.0, -3.2361952477037432, -3.9453656171122073, -4.5748787621653415, -1.5502283530550942, -7.0, -2.803229438326343, -3.212074865862435, -7.0, -4.949726576410017, -3.744762237065578, -4.112403892717874, -3.266231696689893, -7.0, -3.220817628174335, -3.8333596367430127, -7.0, -3.076786033508079, -3.699143687394484, -4.201233208680875, -7.0, -2.9923325590474645, -3.240632438491053, -3.3505330445844037, -7.0, -3.7453968780059266, -7.0, -2.7584071921878865, -3.7432745235119333, -7.0, -7.0, -2.7912226592314022, -7.0, -7.0, -7.0, -7.0, -2.1963604423536847, -7.0, -7.0, -7.0, -4.053769689599309, -7.0, -2.5160944657544744, -7.0, -7.0, -3.3100557377508917, -3.529499453738052, -3.3988077302032647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.355058619168376, -7.0, -7.0, -7.0, -2.620552444729435, -7.0, -7.0, -7.0, -7.0, -3.0161973535124393, -7.0, -7.0, -2.961104552884867, -3.2528530309798933, -7.0, -7.0, -7.0, -7.0, -2.9189036418889307, -3.2757719001649312, -7.0, -7.0, -7.0, -7.0, -3.2762319579218335, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0232524596337114, -3.2170284253606174, -7.0, -7.0, -7.0, -7.0, -3.997211582832505, -1.7795964912578246, -7.0, -7.0, -7.0, -7.0, -3.52022143588196, -7.0, -7.0, -3.7426465899387362, -3.3688445068258215, -7.0, -3.2300655512060468, -7.0, -2.8513602838168097, -2.915575698540003, -7.0, -7.0, -7.0, -3.499687082618404, -7.0, -7.0, -4.304447440866175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.138912913629216, -7.0, -7.0, -7.0, -3.265525335219074, -7.0, -2.8411508254919644, -3.404833716619938, -7.0, -3.252124552505644, -7.0, -3.2397998184470986, -3.417554724363455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.753008215020888, -2.5696079675468244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7102584385195545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.135747334120506, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9382694834629115, -7.0, -2.6104472214421213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3369597851207042, -7.0, -7.0, -7.0, -2.929418925714293, -7.0, -7.0, -2.6874174750166397, -7.0, -7.0, -4.099778444168306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7139463190564657, -7.0, -7.0, -7.0, -7.0, -2.2380461031287955, -7.0, -7.0, -7.0, -7.0, -7.0, -3.859938471600862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7073998311332486, -7.0, -7.0, -3.0965624383741357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0303973008567615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.218259716818564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3372595397502756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7607993116307177, -7.0, -7.0, -7.0, -2.734799829588847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.379124146070392, -3.418135498425232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0038911662369103, -7.0, -7.0, -7.0, -3.1213774364894507, -7.0, -2.0086001717619175, -7.0, -7.0, -7.0, -7.0, -2.651278013998144, -2.7730546933642626, -7.0, -2.6085260335771943, -7.0, -7.0, -7.0, -3.49789674291322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2317243833285163, -7.0, -7.0, -7.0, -7.0, -3.629437401956792, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7283537820212285, -7.0, -2.6159500516564007, -7.0, -2.1351326513767748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.835056101720116, -7.0, -7.0, -5.149554714149009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3364597338485296, -7.0, -7.0, -7.0, -7.0, -3.9876662649262746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1397741716810974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.859738566197147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.429752280002408, -7.0, -2.718501688867274, -7.0, -3.8289712226057087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.506505032404872, -7.0, -4.496053952877427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.955974620155648, -7.0, -2.762678563727436, -4.545133859040489, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9558480361547432, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4313637641589874, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6181631956587115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.652101229519464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.222274149796563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.048130927028968, -7.0, -7.0, -2.101899752619728, -4.270480855202127, -3.400300487121445, -3.735119634081872, -7.0, -7.0, -7.0, -4.06596541697663, -2.6673092419416196, -1.8987251815894937, -3.7687120803776635, -7.0, -3.225739915853267, -7.0, -7.0, -7.0, -2.59659709562646, -7.0, -7.0, -7.0, -7.0, -3.149450058942079, -4.134741587601687, -7.0, -2.2174839442139063, -2.803229438326343, -7.0, -3.3807006116325176, -7.0, -4.9421470050253875, -3.6036855496146996, -4.057399817266062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4577305482459986, -7.0, -7.0, -4.605013982101039, -3.416996924659806, -7.0, -3.855074740604978, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.072543985643648, -7.0, -7.0, -7.0, -7.0, -3.376211850282673, -3.3878790219565733, -7.0, -7.0, -7.0, -3.780677274433368, -7.0, -4.151042805862897, -2.682145076373832, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0437551269686796, -7.0, -7.0, -7.0, -7.0, -2.815577748324267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.340027468282661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.417803722639881, -7.0, -7.0, -7.0, -7.0, -3.399846712712922, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.332054495108195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.756636108245848, -4.002003981335927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.419707981354444, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2422929049829308, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6564815157904986, -3.0023934410715984, -7.0, -7.0, -7.0, -2.4800069429571505, -7.0, -7.0, -2.9995654882259823, -7.0, -7.0, -7.0, -7.0, -4.151124590050682, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.432969290874406, -7.0, -3.4602963267574753, -7.0, -7.0, -7.0, -2.4082399653118496, -7.0, -3.0224971049803444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9982593384236988, -7.0, -7.0, -7.0, -7.0, -7.0, -4.309747240843205, -7.0, -7.0, -7.0, -7.0, -7.0, -4.609615749953064, -7.0, -7.0, -2.975229752334916, -7.0, -7.0, -7.0, -3.4185839684998247, -3.132676818696156, -7.0, -4.6140319822010385, -7.0, -4.13939626869514, -7.0, -2.634594213071113, -7.0, -7.0, -4.0156426254063415, -2.3105572539897095, -7.0, -7.0, -7.0, -7.0, -4.610926193408706, -3.708474015096181, -2.64759901722542, -7.0, -7.0, -4.610894278373339, -4.00944027202683, -4.6131121016412875, -7.0, -4.310544628636955, -7.0, -4.624601767442247, -7.0, -2.633720878999598, -7.0, -7.0, -4.612381153235321, -7.0, -4.309438524641924, -4.610479169346105, -7.0, -7.0, -4.610489818125192, -4.6229907048100864, -2.581221817873486, -7.0, -7.0, -3.2585435894214507, -7.0, -4.610212864974371, -4.610351363626693, -4.610915555324175, -7.0, -4.017596721365986, -7.0, -7.0, -7.0, -1.976211511558734, -7.0, -7.0, -7.0, -7.0, -4.1518395454985555, -4.313455921670493, -7.0, -7.0, -3.0397343447526954, -7.0, -3.9125090106953726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.291442854793911, -3.912795775382462, -3.469895618975018, -4.611638352122505, -4.613492978211986, -7.0, -2.2665337307243667, -4.6135035533500375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.931193348542249, -7.0, -7.0, -7.0, -3.500932780958173, -7.0, -7.0, -7.0, -7.0, -3.770104761201152, -4.61020220940222, -7.0, -4.136339996533044, -4.612391755480837, -2.627953160620053, -7.0, -4.611659592651788, -7.0, -4.13616016663698, -3.4138757862674542, -4.610180897473572, -3.2990018498562894, -2.788981849269942, -7.0, -4.1361813269606005, -4.3110647990615965, -3.138572689317992, -4.610511114900085, -4.015872975925313, -3.7164415928308245, -7.0, -7.0, -4.133847488421549, -4.611861325884996, -7.0, -7.0, -3.5501147400413813, -7.0, -7.0, -7.0, -7.0, -7.0, -2.274933652403, -2.9261708904385917, -3.254779622985036, -4.314499227973151, -7.0, -4.067517201903676, -7.0, -7.0, -4.312928045193233, -3.5547717329908126, -3.538814522875754, -7.0, -7.0, -7.0, -2.194216614222509, -7.0, -7.0, -7.0, -4.311753861055754, -7.0, -7.0, -4.014940349792936, -4.011728993455529, -3.767791729273228, -4.6118719408282765, -3.4679567540619156, -3.9121369966522233, -7.0, -2.309159412716156, -4.6100636631681216, -7.0, -7.0, -7.0, -4.610053003934577, -4.61056435226876, -7.0, -3.1334667946657992, -7.0, -3.502372488311689, -7.0, -4.015349275203567, -1.999376963319447, -7.0, -3.710836360863743, -4.011538726678542, -4.137322456100344, -3.7125023868498763, -3.539494292837515, -4.612709702550948, -7.0, -4.612836816232258, -7.0, -4.6107665947732706, -4.622317660833844, -7.0, -7.0, -7.0, -3.4839348074213596, -7.0, -3.3508394641028696, -7.0, -4.13916516599753, -7.0, -7.0, -7.0, -7.0, -4.612275116542189, -7.0, -7.0, -7.0, -3.5147622417727225, -4.009843792773555, -7.0, -7.0, -4.609882420608204, -7.0, -4.609679765845366, -7.0, -7.0, -7.0, -4.313761796292436, -3.3855957604117104, -3.2791509426840255, -2.774831384045746, -7.0, -7.0, -7.0, -7.0, -7.0, -4.609807769328702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.609871756925298, -7.0, -7.0, -4.009472142562814, -2.4212207821763405, -7.0, -7.0, -7.0, -7.0, -4.30953435660478, -4.3096727432292665, -7.0, -7.0, -4.619030687481902, -7.0, -4.030913288350967, -3.0669054262816697, -7.0, -7.0, -7.0, -3.4515715370380673, -7.0, -3.878837635606425, -7.0, -2.4561351579216315, -7.0, -7.0, -7.0, -3.3272226637602036, -4.139742692322187, -4.617974836042385, -3.719631625379967, -4.321142565229448, -7.0, -7.0, -4.609722437865238, -4.133985746268579, -3.573631005995515, -4.135969677314899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.011389172854374, -3.838156184752148, -4.31206093637058, -7.0, -1.8098832547271022, -7.0, -7.0, -3.3219654120767506, -7.0, -7.0, -7.0, -7.0, -3.2058391377710587, -4.61371500205274, -4.3190227334304145, -7.0, -3.6633763131685053, -7.0, -2.7742464484398566, -3.576885578951076, -7.0, -7.0, -4.308671106715418, -3.7750380149595006, -3.6606230820578123, -7.0, -7.0, -3.9137502924428413, -7.0, -7.0, -7.0, -7.0, -4.610915555324175, -7.0, -4.312399526311494, -7.0, -3.2468150066618233, -3.9343772358689417, -2.469878149039962, -4.6120311338515405, -2.617734035364018, -2.7698156462193806, -3.8403675129212234, -7.0, -4.1365831773426445, -7.0, -3.0851541116211387, -3.38009058759723, -4.618581480328452, -4.308884414422017, -7.0, -7.0, -3.5353363234811113, -4.610234175334389, -4.611627731468287, -7.0, -3.716368582002373, -4.133379211923518, -3.251648357922843, -7.0, -7.0, -2.7362424132931857, -2.949764859826652, -3.926224815400152, -4.312843525382345, -3.3092945756319394, -3.1372622025975456, -3.453719571202035, -2.9958943380318903, -2.6395971516419463, -7.0, -3.096452173674266, -3.360738161692183, -3.0755570988671614, -3.052417893995362, -1.7994092050146753, -3.628074956706411, -3.6083923016340576, -2.070410425073812, -3.4010902195951336, -3.4035976824789262, -3.9077337369976552, -3.1803474772636906, -3.026642198989762, -2.766786662945696, -3.873561394487116, -3.275914728871076, -2.972134435189285, -2.7017330170879843, -4.623373356812658, -2.6313097304603423, -2.7874452382539627, -3.0687339932285886, -3.0364933078027514, -2.886216462781363, -2.996614123163156, -3.079851773445166, -3.2821687783046416, -2.867751632633979, -3.2561094575340532, -3.0617154169664507, -3.113943352306837, -2.411929234954811, -2.508180313730055, -2.401114801918744, -7.0, -3.0698782319505344, -4.140623253015846, -2.388313690603355, -2.2432833168740873, -3.1468719030857386, -2.03252734362003, -2.151283895176477, -2.369321624595056, -4.320789977698806, -2.68185985669508, -3.6680751513945196, -4.134591434710877, -3.7943286798459863, -2.4173384968683047, -3.5166167233974357, -3.7698307982522015, -2.143608523452319, -2.238647399728776, -2.7731882494590696, -3.9120306483690306, -3.212074865862435, -3.3807006116325176, -7.0, -4.177834584296637, -3.4635876137370167, -2.7331874752103325, -2.3593969628545057, -3.832540844950058, -2.9805835268278567, -2.0355258626011894, -2.463407497136473, -2.890058593275497, -2.9615276325601068, -3.1654520728319286, -2.5245036399592644, -3.936252282852836, -4.134920489925607, -2.124140950466047, -0.5737700405534676, -7.0, -2.1852503345221805, -3.9213118324682164, -3.2653613770351475, -3.0348338037447746, -2.790465388800819, -4.13484620892477, -4.610936831232662, -4.6096584282630335, -7.0, -3.8735198880329156, -1.8277856781648085, -4.310406519601563, -3.4734869700645685, -4.312156191475623, -3.4015424438972985, -2.4148254260236968, -3.2966129631576377, -3.1802958284928002, -4.610543058104407, -2.688372980123584, -3.8346220136585734, -2.0198368367089063, -3.025893771247669, -3.837840861655523, -3.7831580266967495, -2.0799293848750184, -2.9707703212585392, -3.594171479114912, -7.0, -4.314162271709985, -2.4597542491145123, -4.61740926653153, -3.9201024462463967, -3.5350830413110805, -3.532680079837371, -7.0, -2.8606420214726844, -4.312050351180238, -7.0, -3.172192885318626, -1.5121870816038474, -2.5141733450977126, -7.0, -2.7216274458796317, -3.334305574736688, -3.776794548303097, -4.310714548718119, -7.0, -3.4344517990487256, -2.9806294763724175, -7.0, -3.711279852556345, -3.1850534366695835, -4.008078279150566, -2.8577918243237983, -3.615550274725666, -3.673236003278857, -4.609679765845366, -3.5760270615789516, -3.766008960973985, -7.0, -3.1582572723535107, -7.0, -4.309768523528787, -3.497057300398213, -4.043519460245756, -3.2560049909796183, -7.0, -4.138407968917471, -3.256352072908259, -3.232922028504549, -1.7682696892308192, -2.922905436938399, -3.3110066962547022, -3.3114889665785556, -7.0, -3.4102620770678205, -3.911934912643038, -2.977266212427293, -4.315046224922345, -3.3106083564585234, -3.6588801766183723, -3.722901161709392, -4.132547842465581, -4.3094811192361036, -3.3257110890434034, -3.501806856884548, -4.314099063295284, -2.3099848383169075, -3.7724684030532805, -3.489476331740672, -3.7141934973413555, -3.047844496253999, -3.574947145214187, -3.3467543414336545, -3.1468409340350676, -7.0, -7.0, -2.992752284666042, -3.9343974407809883, -4.134070806148772, -3.848650886818957, -2.6471972978840603, -2.987104798161707, -2.5561792042169356, -2.2713047640541584, -3.0625443813464646, -4.008781090107339, -4.315561034645111, -4.309715314859149, -7.0, -3.181420092560748, -2.926919638018857, -4.160218347068163, -7.0, -3.3553557233947067, -7.0, -2.175705047841342, -4.008355279859826, -7.0, -4.133719826715639, -4.611287733324417, -4.614222059298785, -4.31045964365906, -4.612571954065176, -3.8558622560965636, -3.7845765405936316, -4.138134211870816, -3.610798519192768, -3.8386077489795007, -7.0, -7.0, -4.6097011023793995, -3.8341980945620744, -3.912986846699656, -4.612582551653833, -2.292304660484183, -3.7377689332546584, -3.358315640082196, -4.134081437462512, -7.0, -3.1251354817237127, -7.0, -7.0, -2.284312753102662, -4.60982909957511, -7.0, -3.622970011310206, -4.035249578686349, -4.617650247299917, -7.0, -7.0, -3.40849436021236, -7.0, -3.9452814338116067, -7.0, -4.612540159747515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.419329537729261, -7.0, -7.0, -7.0, -7.0, -3.937216890862705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.788005112766247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0887587486171286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.461148228743249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6997799316716846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.572499854279727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.199727758807056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5817221599490985, -4.22716656673143, -7.0, -7.0, -7.0, -3.2780821008003054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.285235728480749, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6577727077355213, -3.840482487213442, -7.0, -7.0, -7.0, -3.2439883200147483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.762213266928569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.061490176624815, -7.0, -7.0, -3.805976350717563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.879841055986563, -2.560351291091242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7318304202881625, -7.0, -3.8296896408989713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.252331078830706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7479165080965102, -7.0, -7.0, -3.2220224326748212, -3.3544926005894364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.882249899076638, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.645978700535912, -7.0, -3.5476106349355865, -7.0, -7.0, -3.147665284586758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.661036127893079, -4.001488523881566, -7.0, -7.0, -4.493193071453686, -7.0, -7.0, -7.0, -4.465583591880342, -7.0, -7.0, -4.0199570515283405, -7.0, -4.530077976203537, -4.1623403316284255, -7.0, -3.613645537405791, -7.0, -7.0, -3.697945792788684, -7.0, -4.417086220770336, -7.0, -4.5136170737878745, -7.0, -7.0, -4.667490309948332, -4.511923447850146, -7.0, -4.438755883731937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4590304248104546, -3.8275954092119693, -3.43608309864198, -4.016887157902775, -3.9107310980433807, -3.988603543345664, -7.0, -3.191674531959229, -7.0, -4.292588312465555, -3.0610333972425505, -7.0, -3.0909088846213786, -4.25779852915303, -7.0, -2.12346273211876, -7.0, -7.0, -7.0, -7.0, -3.8159760009719856, -3.8153120435243593, -7.0, -3.2252931246365586, -3.493636646629202, -3.5511690398945315, -3.6664243725187595, -7.0, -7.0, -4.177834584296637, -7.0, -2.5540590113117894, -7.0, -3.4180249346563296, -7.0, -3.4689378056654614, -3.8577846510602454, -2.9175055095525466, -7.0, -7.0, -7.0, -4.270911639410481, -7.0, -7.0, -4.3480905842171556, -3.7085165023886946, -7.0, -3.6746315375170773, -7.0, -7.0, -3.618100418196633, -3.686397907850216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.370266296307733, -7.0, -7.0, -7.0, -4.014604533436051, -3.681964458994683, -3.391055882526162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.743627337570885, -7.0, -7.0, -2.6287768084463567, -7.0, -4.7741810787947205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8403570592033565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.633097968969741, -3.681060243631812, -7.0, -7.0, -3.9042285163400785, -7.0, -7.0, -7.0, -7.0, -7.0, -3.774148380271373, -7.0, -3.8334658601706924, -7.0, -7.0, -7.0, -7.0, -3.3728659947618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721398375521505, -7.0, -3.719331286983727, -3.984707294482673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8929104579899185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7892280572673354, -7.0, -7.0, -7.0, -7.0, -7.0, -3.67015304519218, -7.0, -7.0, -3.8086835091289695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.951628893836638, -7.0, -2.2612323588004264, -7.0, -7.0, -7.0, -3.659250468772661, -7.0, -3.8901228164155626, -7.0, -7.0, -3.06310808299862, -3.856547644856748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464578960565791, -3.2361608677864693, -3.547040829274825, -7.0, -7.0, -3.0844714150301855, -3.370019362693744, -4.6407000199084365, -7.0, -7.0, -7.0, -7.0, -3.7230130335521174, -4.181162087386154, -7.0, -7.0, -2.1256628615011692, -7.0, -7.0, -7.0, -7.0, -7.0, -4.465110092336941, -3.077752331902897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0662955011492445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.339625323047164, -4.941680347291402, -7.0, -3.2743463860506234, -7.0, -7.0, -4.101329660136574, -7.0, -7.0, -7.0, -7.0, -4.6424348407896066, -7.0, -7.0, -7.0, -7.0, -3.2913022357598494, -7.0, -7.0, -4.941620737855168, -7.0, -3.908923478766375, -7.0, -7.0, -4.040829711665509, -2.5205572453155787, -7.0, -7.0, -7.0, -4.941576025408112, -7.0, -7.0, -7.0, -7.0, -4.943360942394186, -4.34022592125719, -4.166198151877356, -4.942216464358906, -4.6420438720485455, -7.0, -2.3055885681982082, -4.6420488232200245, -4.941640608576343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4192071574778993, -4.941595898175119, -7.0, -7.0, -4.341760864759556, -7.0, -7.0, -7.0, -7.0, -3.943855453545965, -7.0, -7.0, -7.0, -4.24355888962248, -3.8180586558425884, -7.0, -7.0, -7.0, -7.0, -4.945345468339527, -7.0, -3.4121916552415694, -2.136994597878688, -7.0, -7.0, -7.0, -3.11735109929666, -7.0, -3.5647597371096733, -3.9459016787990917, -7.0, -4.640759614348585, -4.941923667610981, -7.0, -7.0, -7.0, -3.5065275808580276, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7592805835202423, -4.174965460984311, -3.7772769564795263, -4.944048160376151, -4.163712841181165, -3.367849580426129, -7.0, -7.0, -7.0, -4.475748647544665, -4.468165105160079, -7.0, -7.0, -7.0, -3.464200143469367, -7.0, -7.0, -4.94179954162426, -4.94276183005964, -7.0, -7.0, -7.0, -4.642212180220815, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6480066689858415, -7.0, -7.0, -7.0, -7.0, -4.941476647930497, -4.941715115684539, -7.0, -4.471580166756362, -7.0, -3.6524397475894204, -7.0, -3.7986950293949935, -2.4215353775078543, -7.0, -4.943355994438028, -4.943162980164098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.640963167006545, -4.6407695459602785, -3.6683074285531756, -7.0, -7.0, -7.0, -2.6725413491836623, -7.0, -4.047712835972715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9901167660679047, -3.91484299810463, -2.472436699106128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9413921591914685, -7.0, -7.0, -7.0, -3.8100083659994484, -7.0, -7.0, -7.0, -4.94150646356156, -4.941725048999923, -4.941789610012567, -7.0, -7.0, -4.468544244712472, -7.0, -3.2275617228280855, -4.248992783468489, -7.0, -7.0, -7.0, -4.10475529215573, -7.0, -4.060881904438374, -4.94276183005964, -3.450571665931902, -7.0, -4.941347423203868, -7.0, -4.057318947932813, -3.990363524302897, -3.831126207699967, -7.0, -4.345089336334675, -7.0, -7.0, -7.0, -7.0, -4.943899931943058, -4.942915400414438, -7.0, -4.942375186846578, -7.0, -7.0, -7.0, -7.0, -4.640655318711145, -4.175308824585785, -7.0, -4.942905494288165, -7.0, -3.19694681550591, -4.641062426376377, -7.0, -3.3339905934841787, -7.0, -7.0, -4.641929979522693, -7.0, -4.9467714818461905, -4.943187730378209, -7.0, -7.0, -7.0, -4.3400721281091075, -2.461068669666279, -4.24641979006955, -7.0, -7.0, -7.0, -3.9047745419933935, -4.642766146265666, -7.0, -7.0, -4.641721924765832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8637737766125007, -7.0, -2.7560471605673933, -4.651491231261623, -2.246955636469541, -4.641360068442172, -3.5478731179153007, -2.8504823840745614, -4.644453361137774, -7.0, -7.0, -7.0, -4.099725025058975, -7.0, -4.945473509077624, -7.0, -7.0, -7.0, -4.466531517353593, -7.0, -7.0, -7.0, -7.0, -7.0, -4.048844640389108, -7.0, -7.0, -3.8789169817717633, -2.939704886918824, -4.069873563387445, -4.642231976894675, -3.3752367289481646, -4.1053690465448724, -4.119397299540836, -3.0534393320846642, -3.7185570447378358, -7.0, -3.9116191898049486, -4.250858954599295, -3.7240332524737676, -3.5055598235459433, -4.349898891403912, -4.247658268207367, -3.0557604646877348, -2.9293694776072994, -4.1418527478442595, -3.7445208726381987, -3.3060095854337113, -3.2682217466752914, -4.27681552966027, -3.9663852215103717, -4.39346551909628, -3.892193100130382, -3.555245639000004, -3.7194518238931606, -7.0, -3.607499175819488, -3.6359651915242375, -3.00357517805747, -3.638297858979117, -3.778853217960016, -4.4931000578465925, -3.763423833634184, -4.038712865119077, -3.0893413967336993, -4.047769253139, -2.311967937219121, -4.46887879425401, -2.8870263877196316, -3.121389599386456, -4.188375307998576, -4.642731544081733, -2.9921955081228835, -3.6226826639407017, -2.5193772952596425, -3.668325334908289, -4.103158395042915, -3.351374593497417, -2.752186612410317, -4.186565539383188, -3.7427447644270044, -4.011838183029051, -4.248306833423288, -7.0, -4.353387219249733, -3.4663379282749043, -3.6086475723466056, -7.0, -2.073179528365288, -2.421350030521526, -2.854352194733876, -7.0, -4.949726576410017, -4.9421470050253875, -3.4635876137370167, -2.5540590113117894, -7.0, -3.6586552022495993, -3.671353595772017, -7.0, -3.706874179820924, -3.8417258468257574, -2.8845532148030903, -7.0, -4.007539160371849, -4.480078840065485, -3.462154039880011, -3.8071773174683865, -7.0, -3.3055117346226393, -2.9392801385228218, -4.64436964836413, -3.1693604467873184, -4.946314683884897, -7.0, -4.260767609784481, -3.842435380053072, -4.942390064106153, -7.0, -7.0, -7.0, -4.217334766955894, -4.509336958017644, -7.0, -7.0, -7.0, -4.474857031317561, -2.8298703143525383, -7.0, -7.0, -7.0, -3.9278973940429562, -7.0, -3.0745883201315842, -4.945084345254798, -4.944304969875082, -7.0, -4.3650853271063745, -4.24944785211867, -4.953653399765918, -7.0, -7.0, -7.0, -4.9449216798358355, -7.0, -7.0, -7.0, -7.0, -2.6166381388054543, -4.942900541140294, -7.0, -3.4329618370306085, -3.1526073658091818, -3.445344690578751, -7.0, -4.95172112186057, -7.0, -7.0, -7.0, -7.0, -7.0, -4.254146707031936, -7.0, -7.0, -4.959580346517151, -7.0, -4.964646126434858, -4.944137073158098, -4.949765582122831, -7.0, -7.0, -7.0, -7.0, -3.7805773148311355, -7.0, -7.0, -7.0, -4.657390532388537, -7.0, -4.9445122821281515, -4.9440580404731085, -4.962889987391791, -7.0, -3.09150156431672, -7.0, -7.0, -7.0, -7.0, -4.3781570642294785, -7.0, -4.186984572160061, -7.0, -4.942404940856107, -7.0, -7.0, -7.0, -7.0, -4.658698088707615, -7.0, -7.0, -4.488611814240041, -7.0, -7.0, -7.0, -4.063009488011954, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070074826267528, -7.0, -7.0, -7.0, -3.7769028718580566, -4.946825479950723, -4.983301459523824, -3.747628471726236, -7.0, -4.339784239738522, -7.0, -4.6407695459602785, -7.0, -4.943009497346199, -7.0, -4.653391020371839, -7.0, -7.0, -7.0, -3.6075493781848884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.641558383219824, -7.0, -7.0, -3.962743321425236, -4.111022346378763, -3.8082013239727357, -7.0, -7.0, -4.173127969938208, -7.0, -7.0, -3.7705042733011505, -7.0, -7.0, -3.993313738751798, -4.954425839520279, -4.945035059137207, -7.0, -7.0, -4.641781379153336, -7.0, -4.9577939887621, -7.0, -4.942637943431793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9756968646553625, -7.0, -7.0, -7.0, -3.1099158630237933, -2.2963360546020466, -3.293473048156108, -7.0, -7.0, -7.0, -7.0, -3.3668337082390027, -7.0, -7.0, -3.18620267890855, -3.016824493667488, -7.0, -3.5952757118020995, -7.0, -3.302114376956201, -3.5979144712025284, -3.605951157564873, -4.299757822843316, -7.0, -7.0, -7.0, -3.604442066260723, -7.0, -7.0, -7.0, -7.0, -3.721645766289746, -7.0, -3.3249166245928636, -7.0, -7.0, -7.0, -7.0, -3.2921452678141216, -7.0, -3.5911759503117913, -7.0, -7.0, -3.7085908451503435, -2.4764718236140304, -7.0, -3.5971464878336956, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3305152321703284, -3.680969718465897, -7.0, -7.0, -7.0, -4.157456768134225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.642167634404945, -3.191343513169289, -7.0, -2.825209673964737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.026737494238748, -3.3061032087275857, -3.34908316877959, -2.9053640687668922, -3.146128035678238, -7.0, -3.0324765479535576, -3.623766000133931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.287577809078705, -7.0, -7.0, -7.0, -7.0, -7.0, -2.939619078956698, -3.5848963441374497, -7.0, -7.0, -3.590284403718162, -2.5249450723982387, -7.0, -7.0, -2.719227673841901, -7.0, -2.67425817319393, -7.0, -7.0, -3.592398846115564, -7.0, -3.367355921026019, -3.5901728315963144, -3.843481943039958, -3.2551116255008354, -7.0, -7.0, -7.0, -3.723433281297394, -7.0, -3.364550995353972, -2.8344207036815328, -7.0, -7.0, -7.0, -3.6074550232146683, -7.0, -7.0, -3.8078055322706246, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1474186591597326, -3.796851749049887, -3.5005109105263372, -7.0, -7.0, -3.994361151908001, -7.0, -7.0, -3.0257153839013404, -2.946943270697825, -7.0, -7.0, -7.0, -7.0, -2.810596518420296, -7.0, -7.0, -7.0, -7.0, -3.5859117103194342, -7.0, -7.0, -7.0, -3.3177500288422337, -7.0, -7.0, -3.29939833006815, -7.0, -2.8584001216829997, -2.742500689706988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.949390006644913, -7.0, -3.7346798421638807, -7.0, -7.0, -2.470168274303783, -3.2919235758838847, -7.0, -3.625312450961674, -3.332034277027518, -7.0, -7.0, -7.0, -3.60422605308447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2979792441593623, -7.0, -2.4812917270129815, -7.0, -3.1730890999406967, -3.5930644316587173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1527468640264606, -3.6085260335771943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6510840892430116, -3.1406965525464146, -3.881768950998944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6103407114521566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6047658847038875, -2.8695902233197508, -7.0, -7.0, -7.0, -3.589502796263764, -2.8151348166368138, -2.8165726960261033, -3.5859117103194342, -3.3055663135153037, -7.0, -7.0, -7.0, -2.483125616393796, -7.0, -7.0, -7.0, -7.0, -3.628899564420607, -3.454133151696751, -7.0, -3.590829455194586, -7.0, -7.0, -3.590507462008583, -2.396705419573164, -3.3546845539547285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.644219691034826, -2.596996722507111, -3.6201360549737576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.116164812300795, -2.846405845924663, -3.3501510667807066, -7.0, -2.6965747917964733, -3.264010638853782, -7.0, -7.0, -3.9709044981537835, -7.0, -3.5871494982543437, -7.0, -3.5943925503754266, -3.3935752032695876, -3.3245910857609267, -7.0, -7.0, -3.6638892986226614, -7.0, -3.362024457636707, -3.192660360488874, -7.0, -7.0, -7.0, -3.6856521841155243, -3.3372595397502756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.145714224801858, -7.0, -3.0210858833099774, -3.787672964687493, -3.5521718487949716, -7.0, -2.726002327603283, -3.8889989918461803, -3.0687422929329817, -7.0, -3.3248994970523134, -7.0, -3.3585059114902354, -7.0, -3.670987603010034, -7.0, -7.0, -7.0, -2.9360107957152097, -7.0, -7.0, -7.0, -3.3787611753163733, -7.0, -3.080337823247567, -7.0, -7.0, -3.2228512943685397, -3.5705721253583307, -4.346607216606133, -7.0, -3.8817126791523484, -2.9113859244283526, -3.033172354911534, -3.678761103362153, -2.448986546550028, -7.0, -2.483875486804185, -3.916106373916004, -4.689850279440748, -4.525815481690079, -2.2335377888069625, -4.053424204069344, -4.4488144936695235, -2.3663372223585455, -3.654337005386863, -3.800677809374912, -3.7657057996869474, -3.9376917087542616, -3.4419306745501714, -3.5089469798218746, -3.587205677606586, -7.0, -7.0, -3.247250203774978, -7.0, -3.0525416492983686, -2.4298598985091915, -4.620739689951964, -4.018804483937159, -3.6692703797381965, -3.516755660221549, -4.019490162997508, -7.0, -2.895238327804661, -3.545894439602858, -3.5045048435188018, -2.9814561665221264, -3.10623340638907, -1.7647529287258061, -2.557795833605628, -7.0, -3.5710679786102455, -7.0, -3.1084748182112922, -2.8400164290322825, -2.7659995088477323, -2.168577571549112, -3.5424519473759766, -3.336859820916809, -7.0, -2.95288926491093, -7.0, -3.305136318943639, -3.82885315967664, -3.977220446635385, -2.620879328271566, -7.0, -1.871019397759376, -2.9382694834629115, -3.9524533964230333, -3.298307137328508, -3.744762237065578, -3.6036855496146996, -2.7331874752103325, -7.0, -3.6586552022495993, -7.0, -2.972781203735422, -3.59659709562646, -2.0353756440844717, -3.6612130273513563, -2.6351356149470493, -3.4119562379304016, -2.7598296634141892, -7.0, -1.535171570689024, -3.4994808812303866, -3.6097011023793995, -2.44086924401704, -2.970292805028701, -7.0, -3.014641859190304, -2.986861270290045, -2.1148967983141596, -3.2807490500644776, -3.8423595733306746, -3.6089536992758626, -7.0, -7.0, -7.0, -3.4900990050633047, -2.6635709651936, -3.6033609243483804, -2.9827233876685453, -3.620864475265121, -2.699042380718472, -1.6400823780113092, -3.3756636139608855, -3.6109793799229974, -7.0, -1.7092513181271274, -7.0, -2.59357951244709, -3.6636067081245205, -2.948706308904852, -7.0, -3.1184536935598395, -2.7683914130944873, -3.201328833655651, -7.0, -7.0, -2.8230175234460493, -7.0, -3.6760531246518715, -3.633367445117007, -3.3085644135612386, -7.0, -1.900068277686376, -7.0, -7.0, -3.5195786292939832, -2.7199478493318203, -3.1154551806365287, -7.0, -7.0, -7.0, -3.7005306569785916, -7.0, -7.0, -7.0, -2.8926510338773004, -7.0, -3.332337449453026, -3.57966929355472, -3.590395947184013, -3.2385980342643643, -7.0, -3.0457922327295592, -7.0, -7.0, -3.601081727784023, -7.0, -3.399812119978673, -7.0, -7.0, -7.0, -7.0, -2.468521082957745, -7.0, -7.0, -3.4415904106626587, -7.0, -2.6237976154612452, -3.1521863853540864, -7.0, -7.0, -3.6334684555795866, -7.0, -7.0, -3.3412861070286284, -2.948706308904852, -7.0, -3.320457868916649, -3.733758835587203, -7.0, -7.0, -2.8022604758937684, -3.3463529744506384, -7.0, -2.6926511147284202, -7.0, -3.5033139228158845, -7.0, -1.6175169423917877, -3.439332693830263, -3.4305587695227575, -3.721315880605899, -7.0, -3.5871494982543437, -3.8703648833569106, -7.0, -7.0, -3.1371958119405483, -1.7276008070360236, -3.2182728535714475, -1.9988519464694439, -2.712573180706935, -3.6725134728685087, -7.0, -3.6532125137753435, -7.0, -7.0, -3.6221103603612193, -3.0642707529740063, -3.814647069451856, -7.0, -7.0, -7.0, -2.4552133746525167, -7.0, -7.0, -3.5974757898703773, -3.300378064870703, -3.329499575762843, -7.0, -7.0, -3.4912916406875922, -7.0, -7.0, -7.0, -3.6555225962534177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0144155225606033, -3.537000087321339, -7.0, -7.0, -7.0, -3.7697464671794534, -3.5911759503117913, -7.0, -2.9066043717249803, -7.0, -7.0, -2.9309490311675233, -3.814580516010319, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8588979572320037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.355045196760146, -7.0, -7.0, -7.0, -4.180011119057717, -3.8861521819707967, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6775157047987577, -3.873611196996467, -7.0, -7.0, -2.7835613852761036, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058198187878253, -2.738642308311227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1026394836913, -7.0, -3.0676950810079404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0933408536053615, -7.0, -7.0, -3.0096633166793794, -7.0, -7.0, -7.0, -4.055340099544181, -7.0, -4.086181804649749, -7.0, -7.0, -7.0, -2.0827650918170697, -7.0, -7.0, -7.0, -7.0, -4.117105502761251, -7.0, -7.0, -7.0, -3.5378977644842133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7655195430979527, -7.0, -4.074377537644804, -7.0, -4.064532861131578, -7.0, -3.181528196150299, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1211328899984085, -7.0, -7.0, -7.0, -4.070296518197765, -7.0, -7.0, -7.0, -7.0, -4.0709977969934235, -7.0, -7.0, -7.0, -7.0, -3.010396335877664, -7.0, -7.0, -7.0, -4.063933524163039, -3.4790711958039306, -7.0, -3.555275870769318, -3.5277403474828533, -7.0, -7.0, -3.7585334222372864, -3.3251778739655737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.306382132150198, -7.0, -7.0, -7.0, -7.0, -7.0, -3.354135890522645, -3.8344207036815328, -7.0, -7.0, -7.0, -4.237267189503993, -7.0, -7.0, -7.0, -4.1336985461157765, -3.7799570512469063, -7.0, -7.0, -7.0, -2.4033684007191196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.065803712575022, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146694137624876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6281845080734128, -7.0, -3.146914779664304, -7.0, -7.0, -2.731897397433134, -4.053731315887608, -7.0, -7.0, -7.0, -4.072433725968388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808885867359812, -7.0, -3.8191160105241306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1169396465507555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.06918692515191, -7.0, -7.0, -3.232385003072715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4719409903840868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.083824996053337, -4.05311687492293, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8125791554090465, -7.0, -7.0, -4.062092892630169, -3.5867407023828584, -7.0, -7.0, -7.0, -3.5792117802314993, -7.0, -7.0, -4.09684052033139, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070665753453728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.359297812956692, -4.074779882331932, -7.0, -7.0, -2.8657298689917874, -7.0, -7.0, -3.4456042032735974, -7.0, -7.0, -7.0, -4.054153240345694, -7.0, -7.0, -7.0, -7.0, -4.079543007402906, -7.0, -3.4813088318164627, -7.0, -7.0, -7.0, -7.0, -7.0, -4.069963937850763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0643831044121965, -7.0, -3.3468092004059016, -7.0, -2.88464876873764, -4.059336177389288, -3.4841930324891988, -2.770427135219635, -7.0, -7.0, -7.0, -7.0, -4.077948998506027, -3.43930110762843, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0528862352563815, -7.0, -7.0, -3.7846885995014214, -7.0, -7.0, -7.0, -7.0, -4.419559253195721, -3.7464395789558753, -3.693155132538336, -7.0, -4.27720796549665, -7.0, -7.0, -3.7115903288209764, -3.4713117180220143, -7.0, -7.0, -4.385793891176033, -3.9727349628407977, -3.8721621021653023, -4.0767496406240005, -4.477381753267053, -3.772015930126536, -3.5432762866884153, -3.843710218725583, -7.0, -3.979070114390943, -4.023897959084491, -3.3630475945210936, -3.743232287238435, -3.7570162347313003, -4.4036694793552815, -4.249084161669954, -3.5521038307411423, -7.0, -3.6137502334963427, -3.442605178964801, -3.9925358452657775, -3.974373507081423, -4.115277591395902, -7.0, -3.849910558301496, -4.3481490343841624, -4.046430125849839, -3.044686721472795, -4.003955724542691, -3.240727493506486, -3.3616199233615767, -2.567082407772391, -3.1371166405827675, -7.0, -3.6492179924562715, -7.0, -3.66228551572213, -2.72652345838624, -2.739365930719066, -2.178822497153501, -3.072249897613515, -3.3031420373343563, -4.093386660001371, -3.913442954859396, -7.0, -4.058350092210653, -3.849388698815317, -2.261204620583918, -3.219388027689568, -1.9533367854783008, -1.9587908314652507, -3.2787903348347553, -3.3223580508773014, -4.05595140532915, -4.112403892717874, -4.057399817266062, -2.3593969628545057, -3.4180249346563296, -3.671353595772017, -2.972781203735422, -7.0, -4.054919327123815, -3.7151115682046143, -2.962739823876104, -2.8623932040412763, -3.496860487394368, -4.189686782592971, -7.0, -2.8472641017707647, -7.0, -7.0, -3.479532970135968, -2.1053713216250967, -7.0, -2.7626624327434466, -7.0, -7.0, -3.1352483321344415, -3.1238924561996617, -4.059260404121731, -7.0, -4.05080494781346, -7.0, -3.659973215296316, -3.7162746928981742, -7.0, -7.0, -7.0, -3.349309912127894, -2.4012744207046004, -7.0, -7.0, -4.053999860693065, -2.8161902935342806, -4.062356318085437, -1.9719940652558725, -4.079434510633743, -4.073681699476284, -7.0, -3.9191565722392943, -3.3251049829714074, -3.837619999187664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.648725835359072, -7.0, -7.0, -3.3517855739035376, -3.104669696391788, -2.7982361763679355, -7.0, -3.4267064060463146, -7.0, -4.093981703914113, -7.0, -7.0, -4.055072382449418, -3.5331999071876963, -4.059184617631371, -7.0, -3.698796251790431, -7.0, -3.6037125907704572, -3.3731695589037214, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7625446007781327, -7.0, -3.753889331459834, -7.0, -4.168998077278994, -7.0, -4.0752183791115355, -3.5945766905019516, -3.5935352716775633, -7.0, -2.8062196942237123, -3.589465541751032, -2.6989378331828577, -7.0, -7.0, -2.663566323038686, -7.0, -2.4987428758380212, -4.073681699476284, -7.0, -7.0, -4.107718610520263, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5130577076386054, -7.0, -7.0, -7.0, -3.436162647040756, -3.893484346218486, -4.106870544478654, -7.0, -7.0, -7.0, -2.5613369970995135, -7.0, -7.0, -7.0, -3.545348358048107, -7.0, -3.826269219393726, -2.186385385887224, -3.748317262085834, -7.0, -7.0, -7.0, -7.0, -7.0, -4.080698622871129, -4.143764014612251, -7.0, -3.7545012293869173, -7.0, -2.5666627441806, -7.0, -7.0, -7.0, -7.0, -7.0, -4.057475915826254, -7.0, -4.13350697377835, -3.8185887540885934, -7.0, -7.0, -4.076349117493459, -7.0, -7.0, -7.0, -7.0, -7.0, -4.061301656206044, -1.8990773475784999, -3.2002118967002393, -2.487954954870889, -4.0565237240791, -4.0507276712150535, -3.0812490844673115, -7.0, -7.0, -2.179680733238253, -7.0, -7.0, -3.0557257391864248, -3.6664867801179333, -3.601806578961057, -7.0, -7.0, -3.2840169229681395, -4.050920836935403, -3.386617852625555, -7.0, -4.061150780928549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.899492196138132, -7.0, -7.0, -7.0, -4.576571684065291, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.558408539791075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335838869579954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7018269303971394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5504729571065634, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4683473304121573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2392336020722494, -2.694605198933569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.812244696800369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6794278966121188, -7.0, -7.0, -7.0, -3.7958105246674085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.125968963092556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8542452970661185, -7.0, -7.0, -3.327600400007021, -7.0, -2.739572344450092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.791690649020118, -7.0, -3.5066403055665023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.274003816815921, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432998136044408, -7.0, -3.0394141191761372, -3.942194139356048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.271841606536499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.396826789268784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.651471852199043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703781295454297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9134062554679199, -7.0, -3.456929686007518, -2.774354733944107, -7.0, -4.048985302570711, -7.0, -4.5423273827739745, -2.6626125583964253, -2.890700397698875, -7.0, -7.0, -3.094994900944612, -7.0, -7.0, -7.0, -7.0, -2.6350526852590237, -3.706604003325916, -3.3352572564345317, -7.0, -3.0969679150789244, -4.979598447701, -7.0, -7.0, -3.266231696689893, -7.0, -3.832540844950058, -7.0, -7.0, -3.59659709562646, -4.054919327123815, -7.0, -3.348499570283838, -7.0, -7.0, -3.1631613749770184, -7.0, -7.0, -4.154971441544471, -7.0, -2.075546961392531, -4.303260872655577, -3.960530233278372, -7.0, -4.030549125532981, -7.0, -7.0, -3.594503043820089, -7.0, -7.0, -2.403120521175818, -7.0, -7.0, -7.0, -2.9864582127373067, -7.0, -3.0425755124401905, -7.0, -3.3641756327706194, -3.686189234244024, -3.0178677189635055, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4747017805962495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1701149694966517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.862181089664136, -4.439963935920905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9290781689436507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.383815365980431, -2.45178643552429, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03956552796684, -2.7427251313046983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6766936096248664, -7.0, -7.0, -7.0, -3.593618308129536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3117750456357395, -3.0979510709941502, -3.4771695069814648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.41161970596323, -7.0, -4.149126699742614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.925242148353079, -3.711807229041191, -7.0, -7.0, -3.6154239528859438, -3.6285932558512592, -3.648067129448935, -7.0, -7.0, -7.0, -7.0, -4.084862139048422, -3.207365037469072, -7.0, -7.0, -3.2673463937576654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.907314601225792, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.762078087334639, -7.0, -3.50985750359542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.011476460804896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6954816764901977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2022577163595325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.377670439334323, -7.0, -3.697578033651113, -7.0, -7.0, -7.0, -3.291602505421389, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6877964113812944, -7.0, -7.0, -7.0, -7.0, -3.388278863459639, -7.0, -7.0, -7.0, -7.0, -3.018783688874697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.874365835730049, -3.9222582234329666, -7.0, -7.0, -7.0, -3.689449456593836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6506474416793195, -7.0, -3.835563751669097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7133225049870275, -7.0, -7.0, -7.0, -3.6039829097645595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6817536437363345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7547686638684996, -7.0, -7.0, -3.245052943739646, -7.0, -7.0, -7.0, -7.0, -7.0, -3.718750734739665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.617559458651492, -7.0, -3.498517311461634, -7.0, -3.3966351669836934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.359076226059263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.871280972857973, -3.656834583726364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.141794563523657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8200700343123257, -3.2797429693408864, -7.0, -7.0, -7.0, -3.3084932702271614, -7.0, -7.0, -7.0, -3.949450998777855, -7.0, -7.0, -7.0, -2.9182400902214147, -7.0, -3.7113009599161657, -3.448087666692341, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.644832328825636, -7.0, -7.0, -3.6471872978959894, -7.0, -7.0, -7.0, -7.0, -3.2512974636775698, -7.0, -7.0, -3.693023067923694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2323183194127485, -7.0, -3.07018568637838, -3.414221033214868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.673389578188305, -7.0, -3.641110393607365, -3.5214649896147696, -3.504947933895744, -7.0, -3.7258299903205803, -4.116618811494573, -3.716504163773217, -7.0, -7.0, -7.0, -3.404833716619938, -7.0, -7.0, -7.0, -7.0, -7.0, -3.207095540419218, -7.0, -3.3560258571931225, -3.6463056802847587, -3.724275869600789, -3.64738297011462, -3.81544491624435, -7.0, -7.0, -3.1149158459000446, -4.176539798314922, -4.356542111948761, -7.0, -3.235374115894248, -2.3438304437465964, -3.660912887477406, -4.163727735958904, -3.5100010569209736, -7.0, -3.5717379390424977, -4.620542039849599, -4.6943858028784335, -4.353024554282955, -3.256612526235748, -4.364250731245976, -3.757593390524166, -2.3816600539542963, -4.147769046260147, -4.349860082192332, -3.7844389742226907, -3.4525330814266306, -7.0, -3.6673728912283936, -3.7264011621029223, -3.420568659438226, -7.0, -3.7316559050928637, -7.0, -3.784260582566084, -3.716754357432697, -4.023931157373373, -3.6313016868314865, -2.647883126093151, -2.379115708334564, -3.8539009163221665, -3.4093130649092758, -3.946141007378952, -3.4153679817843448, -7.0, -7.0, -3.617273000838871, -1.9458381834644687, -3.6808338953273694, -7.0, -3.4888326343824008, -7.0, -3.9898723372297638, -3.1640978135052644, -3.460822698802402, -2.517663162081145, -3.6520286555911117, -3.9641653106217354, -3.4403579968152878, -3.9779064276371185, -7.0, -7.0, -7.0, -3.590752693877779, -2.5017437296279943, -7.0, -1.8954857836801475, -3.61800012981326, -3.4681626421329956, -7.0, -7.0, -7.0, -2.9805835268278567, -3.4689378056654614, -3.706874179820924, -2.0353756440844717, -3.7151115682046143, -3.348499570283838, -7.0, -3.455179975545529, -2.1183239920793673, -3.754348335711019, -7.0, -7.0, -1.9106051781102933, -3.834611420722687, -7.0, -3.32508541707219, -3.4057411103246222, -7.0, -2.956491665902276, -3.1276716039590733, -3.783045572114693, -3.212027711974624, -3.858115932190066, -3.660675788338524, -7.0, -7.0, -2.899181901036258, -7.0, -3.1020905255118367, -7.0, -3.12393326759676, -3.6712654329471586, -2.814180981040187, -2.939082242393672, -3.4202858849419178, -7.0, -7.0, -3.3090336675041403, -7.0, -2.7923263069129183, -3.232063874830583, -7.0, -7.0, -3.3853828136078388, -2.721285878569211, -3.05874226599279, -3.2439470470774965, -7.0, -2.9524897355097743, -3.104145550554008, -7.0, -7.0, -3.66143405039392, -7.0, -2.782273506982521, -7.0, -7.0, -3.2249860256767717, -2.9012857317920555, -3.7315594645200223, -7.0, -7.0, -7.0, -3.441695135640717, -3.658488381309017, -7.0, -7.0, -2.875704186502311, -7.0, -7.0, -3.9092350033683076, -7.0, -3.00798472191076, -3.3917288224907427, -7.0, -7.0, -7.0, -3.6536947953150816, -3.4187982905903533, -3.027926923900929, -3.667452952889954, -7.0, -7.0, -3.8961402514420196, -3.42217931474113, -3.0969968632197054, -2.689930104018218, -3.6438966143222347, -7.0, -2.712300326291085, -2.7234556720351857, -3.8239304551255637, -7.0, -7.0, -3.7976829349148993, -7.0, -2.8881326722394585, -7.0, -3.183459657707637, -7.0, -7.0, -7.0, -3.6472851450253665, -3.21160104414524, -3.217659381292399, -7.0, -1.8619040595057519, -7.0, -7.0, -7.0, -2.935690435157628, -7.0, -2.9924062244673513, -7.0, -7.0, -7.0, -3.8802799204198477, -7.0, -7.0, -7.0, -3.1884890478416423, -3.03893791903862, -2.354340301363435, -3.1907424491833214, -3.9967305154351527, -3.6506959797606107, -7.0, -3.171921379366514, -7.0, -3.6723749787460793, -3.1099158630237933, -7.0, -7.0, -7.0, -7.0, -3.0317410385347316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8270460170047342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3634239329171765, -7.0, -3.1882720955600496, -3.098693158915045, -2.062731169926413, -2.6700602174731345, -7.0, -7.0, -7.0, -7.0, -7.0, -3.21793492502484, -7.0, -7.0, -2.4474681309497557, -3.370142847051102, -3.1061058665275776, -7.0, -7.0, -7.0, -7.0, -3.189321841020497, -3.640282629696681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6638971457345137, -7.0, -7.0, -7.0, -3.0610438792188233, -3.6715739245654024, -7.0, -7.0, -7.0, -4.024895960107485, -7.0, -2.8675902357985654, -3.8340071958856363, -7.0, -7.0, -2.73877544549828, -7.0, -4.001430812246398, -3.997561115633588, -7.0, -7.0, -4.005652315355074, -3.1056047919987337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1549493349815436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.325925955771466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.735997884091794, -7.0, -7.0, -7.0, -2.4756498276534518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8180608567577408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6165417892021465, -4.012837224705172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.598790506763115, -7.0, -7.0, -7.0, -4.019282495761732, -7.0, -7.0, -7.0, -7.0, -4.020071103533841, -7.0, -7.0, -4.012837224705172, -7.0, -3.2481776883387057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1614678285730546, -3.143697730052988, -7.0, -7.0, -7.0, -3.9630453857472343, -7.0, -7.0, -3.5596672783880576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.046311501179504, -7.0, -7.0, -7.0, -7.0, -7.0, -2.469190620933241, -3.0120283186865047, -3.6171751426857073, -7.0, -7.0, -3.9021117234480043, -7.0, -7.0, -4.0147304950017535, -7.0, -7.0, -7.0, -7.0, -7.0, -3.255995726722402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0268599859845615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3384221443751882, -3.998956440470486, -7.0, -7.0, -7.0, -7.0, -4.000997730357794, -7.0, -3.7575099022757996, -7.0, -3.928190948038757, -7.0, -3.7273378880330803, -3.1088800834859853, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0332628758844793, -7.0, -7.0, -7.0, -7.0, -7.0, -4.046963154123424, -7.0, -7.0, -7.0, -4.255778886667017, -7.0, -4.0750357259221905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1786070026077806, -3.210920174711518, -2.0972084650238587, -3.9974737588029803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.00518051250378, -3.8119323028729784, -7.0, -7.0, -7.0, -7.0, -7.0, -4.001647191346038, -7.0, -7.0, -7.0, -7.0, -4.085968077046074, -7.0, -7.0, -7.0, -7.0, -3.4654943853655413, -7.0, -3.6881527555915663, -7.0, -3.1228181332982032, -3.99943504987633, -7.0, -7.0, -3.6652369210441833, -3.725135413175271, -7.0, -4.049024097915049, -3.267953536862395, -7.0, -7.0, -7.0, -7.0, -4.019697730980192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.094471128641644, -7.0, -4.011274328904725, -4.003762020828246, -2.601808027451869, -7.0, -7.0, -4.188844146546897, -7.0, -7.0, -4.011824095594308, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7398951080054355, -3.731266349075492, -7.0, -7.0, -3.997561115633588, -7.0, -7.0, -7.0, -7.0, -4.0100454126360985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.01262635095405, -7.0, -3.2303095531954753, -4.0873554300540516, -3.1600335826302413, -7.0, -4.037426497940624, -2.746906520474098, -4.032900678732676, -7.0, -7.0, -7.0, -4.027879409207207, -3.7942091163464964, -4.0327396052094935, -7.0, -7.0, -7.0, -4.017784353096679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5053280703957066, -3.354459496605008, -3.5486043622015986, -4.014394516273535, -3.386629739543263, -4.072433725968388, -3.469409608516755, -3.0349165873947777, -2.9592049889385117, -7.0, -3.1974714148555217, -3.0308020487722676, -2.933629625037472, -2.6896603915706647, -3.2821183785735992, -3.855958073963892, -3.931915317081246, -3.180532059343106, -3.3384122207586615, -2.556536769126058, -3.9483151406893477, -3.718645386607124, -3.1549562434033382, -2.88924011792284, -7.0, -3.9035421416209206, -2.9903304761428657, -2.915262153350638, -7.0, -2.018178732002881, -3.643666480980489, -3.475516833845267, -4.130011949671904, -3.7919186113238093, -3.60078237386667, -4.431604971875214, -7.0, -3.125481265700594, -3.4549083487129435, -3.0448624331635377, -4.037187370937113, -3.370947721650145, -3.3956321266137643, -2.3076694666603705, -3.717504074764202, -2.9595598291522704, -7.0, -2.3887741660237527, -2.766054643351031, -3.754348335711019, -2.4368962527589484, -2.8022373422687794, -3.127958405334193, -3.266623623872799, -3.223841923439887, -7.0, -7.0, -2.9033613362553186, -2.9358719492185936, -7.0, -7.0, -2.66908769785759, -2.330522106345977, -3.0231152201059763, -7.0, -3.220817628174335, -7.0, -2.0355258626011894, -3.8577846510602454, -3.8417258468257574, -3.6612130273513563, -2.962739823876104, -7.0, -3.455179975545529, -7.0, -2.715015187390733, -3.0094122626552355, -2.946452265013073, -2.6875289612146345, -2.9037228717450034, -4.093911741049379, -3.7060346607143506, -3.0451055597673964, -2.270366342963542, -3.7311050512159203, -2.1245042248342823, -7.0, -2.919190202125499, -3.292382669369879, -2.676192630404192, -7.0, -7.0, -7.0, -7.0, -4.032538179260007, -3.9893163049899516, -7.0, -4.0377451292695925, -7.0, -7.0, -2.9673027695242467, -7.0, -7.0, -7.0, -3.7207379770184255, -7.0, -2.78193896987055, -7.0, -4.023087766995445, -7.0, -7.0, -4.05656185185946, -7.0, -4.035269600099436, -7.0, -4.106054840093787, -4.028205119905443, -7.0, -4.01678271248684, -4.007192823557041, -7.0, -3.740731025540231, -7.0, -7.0, -2.7282981780928632, -3.3300239510638483, -2.978750981332984, -7.0, -7.0, -7.0, -4.045831314347755, -7.0, -7.0, -7.0, -3.6146511867000206, -7.0, -7.0, -3.65931391573872, -7.0, -3.0545541312161957, -7.0, -4.066661302300677, -7.0, -7.0, -7.0, -7.0, -3.5399816774775767, -7.0, -7.0, -4.003805073565025, -3.827756862978617, -3.9073844852845, -7.0, -7.0, -7.0, -7.0, -2.9587175448355043, -4.015275906681875, -3.610802066205635, -7.0, -7.0, -3.6563138576401566, -7.0, -3.5703093854358796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6988252153758836, -7.0, -3.1922886125681202, -7.0, -3.4794025368739816, -3.076974014842062, -4.0602066210673495, -7.0, -7.0, -7.0, -3.7535677395933793, -3.388172275047789, -7.0, -7.0, -3.782443956917726, -3.742568034366142, -3.4290136052510922, -3.506129052395325, -4.190499779633488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.799994944688714, -7.0, -7.0, -7.0, -3.2988530764097064, -7.0, -7.0, -7.0, -7.0, -7.0, -4.00483706093831, -7.0, -7.0, -3.773347541980823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5554874342498453, -3.2679088999866783, -3.322770429937203, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5038663111778603, -7.0, -7.0, -3.572832893302384, -3.255548160131223, -3.7280289544205187, -7.0, -7.0, -7.0, -7.0, -3.279047385047397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.344487131834023, -7.0, -7.0, -7.0, -3.5092793478189916, -3.8822588331549723, -7.0, -7.0, -4.276300924570774, -7.0, -7.0, -3.5204507792823576, -3.748885440009517, -4.272908612690247, -7.0, -2.6596704390534436, -7.0, -4.2747580543520085, -7.0, -4.276461804173244, -7.0, -4.277012939376528, -2.6722810323070783, -3.7983052820219765, -7.0, -7.0, -4.276691528845039, -3.9789561652175918, -7.0, -4.2767604225577776, -7.0, -7.0, -7.0, -3.1572084425277938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274527304396044, -4.274365706447425, -4.301029995663981, -2.8952936014803914, -7.0, -7.0, -7.0, -7.0, -3.9726887170222147, -4.274065436350914, -7.0, -3.80543288813214, -3.993061296812981, -7.0, -7.0, -7.0, -3.0853500502578064, -7.0, -7.0, -7.0, -7.0, -4.313550871333505, -7.0, -7.0, -7.0, -3.3689807055782293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.43675312229406, -7.0, -3.4414931434230693, -7.0, -4.280851425694206, -3.983400738180538, -2.646200848074611, -4.2808741725572155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015045239174416, -7.0, -7.0, -7.0, -3.9832879197666284, -7.0, -7.0, -7.0, -7.0, -3.3301882244051946, -7.0, -7.0, -4.2808741725572155, -4.278479223046323, -2.6372431155203353, -7.0, -7.0, -7.0, -3.9794117826344353, -3.990072334692153, -7.0, -3.6405609344046366, -3.7144415328720637, -7.0, -7.0, -7.0, -3.0305818650744536, -7.0, -3.8132695547205664, -3.6918547497031398, -4.28141974015399, -7.0, -7.0, -7.0, -7.0, -7.0, -3.401369205272897, -7.0, -7.0, -7.0, -7.0, -7.0, -3.024578950016235, -7.0, -3.5484303680628813, -7.0, -7.0, -4.092668021001432, -7.0, -7.0, -4.281896550246061, -4.3241795297179, -4.290969008948517, -7.0, -7.0, -7.0, -2.95118032364108, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.288495151773556, -4.281624151440202, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0716647453946364, -4.273441134312813, -7.0, -7.0, -4.274342616116883, -7.0, -7.0, -7.0, -3.159481253887955, -7.0, -3.632406672162299, -7.0, -4.289365951520032, -2.462464848431206, -4.274319524558622, -7.0, -4.281215232611316, -4.282984440133955, -4.285669805960068, -4.292411148837825, -7.0, -7.0, -7.0, -4.275863950712521, -3.7977521286507105, -4.2996162399984135, -7.0, -7.0, -7.0, -4.1272992150577075, -4.272746411201189, -3.3609508662563887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.283685590141156, -3.6848453616444123, -3.435266886361759, -2.823452401213676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.971948113409703, -7.0, -7.0, -7.0, -3.304536687573914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9761206182998157, -4.292676867185116, -4.273949892550008, -7.0, -3.700811844739728, -7.0, -7.0, -7.0, -4.010299956639812, -7.0, -4.0686681432859, -4.279370318179108, -3.744458148811997, -7.0, -7.0, -7.0, -2.646076820312336, -3.6859655440604007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6823933026828906, -7.0, -7.0, -7.0, -4.277150613963797, -7.0, -7.0, -7.0, -4.274434970074042, -3.1220724554718475, -7.0, -7.0, -7.0, -2.9248255035083397, -7.0, -7.0, -3.481191725893641, -7.0, -4.2730707536224655, -7.0, -7.0, -4.29754166781816, -3.8041167057081755, -4.2948848870000305, -4.278410601475816, -7.0, -7.0, -3.0173116440067362, -3.8143142002074595, -7.0, -7.0, -7.0, -3.6930891052509565, -3.681964458994683, -7.0, -7.0, -4.279370318179108, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6785639001849493, -7.0, -2.9069210167624506, -3.845449469511614, -2.711176934779885, -7.0, -3.117602691690084, -2.478484971625684, -4.291812687467119, -7.0, -7.0, -4.2751961417856235, -3.3856509518023437, -3.548941916664869, -7.0, -7.0, -7.0, -7.0, -3.283142863303242, -7.0, -7.0, -7.0, -7.0, -7.0, -3.205953506508051, -7.0, -7.0, -3.346729576432997, -3.5928543569294185, -4.09221753532326, -3.980639567443737, -3.7534202636980663, -3.836830286488879, -3.5264315920850375, -3.191131504072038, -3.6850068460949137, -4.273117068486742, -3.9897018963460247, -3.7946971268919985, -3.691047471169451, -3.5519006071983443, -3.1444536790632514, -4.2730707536224655, -3.052886235256382, -3.1784013415337555, -4.453731029504294, -3.3401061253096755, -3.9468941951023266, -3.1647492907566503, -2.950968833510342, -3.6960176467785573, -3.783160071056011, -4.2151085810530935, -3.8802131653034277, -3.3469952774377774, -7.0, -3.2953282901525034, -3.203799078428703, -4.054137904817809, -3.8545125103702715, -3.747696582675378, -3.916418852628301, -4.553980064848256, -7.0, -3.2888558045037004, -3.332256624164205, -7.0, -3.515807635238054, -3.331411721757633, -2.3607543603462675, -3.4250811413139908, -7.0, -3.519623846347367, -4.290034611362518, -2.9489017609702137, -3.047770314206707, -3.1576941641846092, -2.2062599065001196, -3.0464682530395018, -4.071513805095089, -3.151916806922742, -3.0985890826880103, -7.0, -4.277104727283855, -4.335076597314406, -3.0666728624046575, -3.061284894874462, -7.0, -2.3527153948431287, -2.546630782476486, -2.827736554353427, -4.275656809537014, -3.8333596367430127, -7.0, -2.463407497136473, -2.9175055095525466, -2.8845532148030903, -2.6351356149470493, -2.8623932040412763, -7.0, -2.1183239920793673, -2.715015187390733, -7.0, -2.7957062647984876, -3.4577494696916786, -3.7401257369657306, -2.249726155748044, -4.326479236380961, -7.0, -2.859753377160808, -2.5629349075011825, -7.0, -2.4895536818701456, -4.295501126169623, -3.5321596295356965, -2.9368036393469454, -3.3799095435529614, -3.8004421213362565, -7.0, -7.0, -3.6797684752325557, -4.482173004713658, -3.9747419045009504, -7.0, -3.993414184532892, -7.0, -4.320374802023668, -2.7514638708365453, -7.0, -7.0, -4.274481139688916, -3.6120417446452695, -7.0, -2.242692633759777, -3.9888932438600233, -7.0, -3.835056101720116, -7.0, -3.702818126370317, -3.0256130404386536, -7.0, -7.0, -4.333628612518691, -3.988157472556753, -4.292942423054936, -7.0, -7.0, -7.0, -3.403000344021163, -7.0, -7.0, -3.189218551259706, -3.5154345883966154, -3.1108140939166935, -7.0, -4.319189369204891, -3.9796621686211364, -3.8217754671834636, -4.277127671229863, -7.0, -7.0, -3.4219328132785085, -4.277609214304091, -7.0, -3.8747523219012376, -7.0, -7.0, -4.285669805960068, -7.0, -7.0, -7.0, -7.0, -4.292743271377071, -2.938476215234873, -7.0, -7.0, -4.276024992238579, -7.0, -7.0, -7.0, -4.2853097130902675, -4.365207100231824, -4.281124309449275, -2.9663357525135394, -4.282191456275556, -4.021995097954464, -7.0, -7.0, -2.966901992934652, -7.0, -2.5265792547944046, -4.286434013402093, -7.0, -7.0, -4.307602993826055, -7.0, -7.0, -3.653463367014262, -4.286231854028553, -3.983333050649128, -2.928286094162898, -4.289834121485031, -3.4242485095261084, -7.0, -3.377706841369624, -7.0, -3.528702498309365, -7.0, -7.0, -7.0, -4.268905441212015, -4.322694690306876, -4.275978986467148, -7.0, -3.8139033097892776, -7.0, -3.486461965440535, -2.705123700208126, -4.084522658021688, -4.275265273107007, -4.287533011050722, -7.0, -7.0, -7.0, -4.2907467156120855, -7.0, -7.0, -7.0, -7.0, -2.9224060357250012, -7.0, -3.8046845149069406, -7.0, -4.276093991759217, -4.282418170877648, -7.0, -7.0, -7.0, -4.014121342041001, -4.2847239246361575, -7.0, -3.9869955397243815, -7.0, -7.0, -4.272653697429817, -3.801403710017355, -7.0, -3.2784792230463227, -2.5496445099116336, -3.16134803421355, -3.0997009480543785, -3.9749259860897626, -7.0, -3.715313771574569, -4.273903666420971, -7.0, -2.7033843399602757, -7.0, -7.0, -2.958042364718105, -3.552323401102493, -3.8125345758070877, -7.0, -7.0, -3.4342722781648516, -4.27263051589404, -3.4413022866931673, -4.272815933543096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067925949681522, -7.0, -7.0, -7.0, -3.7196626830180466, -3.4390167283875126, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4141134532146724, -7.0, -7.0, -7.0, -3.3527044930956182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.271713854077303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7573770469760275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7958105246674085, -7.0, -7.0, -7.0, -7.0, -3.146438135285775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.959848290501177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2486352446993285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.24699069924155, -7.0, -2.81778565588553, -7.0, -3.2329961103921536, -7.0, -2.931127192823453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5217916496391233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.963612955395577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.651278013998144, -3.5349774634615505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8014564829054331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3344537511509307, -7.0, -7.0, -7.0, -4.116242357963335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7834747875822465, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1565491513317814, -7.0, -7.0, -7.0, -3.3200943339030964, -7.0, -7.0, -3.425968732272281, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1622656142980214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2168254232660476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.374901024683465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.781468142841798, -7.0, -3.1324331378141674, -7.0, -7.0, -7.0, -3.7237839369653294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.283188116453424, -7.0, -7.0, -7.0, -1.684862742461716, -7.0, -7.0, -3.8361974807789254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.955886953789943, -3.3394514413064407, -7.0, -7.0, -7.0, -7.0, -2.967079734144497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9304395947667, -7.0, -4.005395031886706, -7.0, -4.1338517431655255, -7.0, -7.0, -4.081983039279172, -7.0, -7.0, -3.239049093140191, -7.0, -3.0153597554092144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4536648218070845, -4.279180066775598, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7184020305163026, -3.1291001439415806, -7.0, -7.0, -3.9859314351032813, -7.0, -7.0, -3.7143800612122204, -7.0, -7.0, -4.362048717714715, -7.0, -4.319647288183423, -7.0, -4.406465236880978, -3.0876800300462937, -3.537623233756723, -4.1130738935942075, -7.0, -7.0, -3.990383258906234, -7.0, -3.333506049741619, -4.251248762305845, -7.0, -7.0, -3.510062192500516, -3.2650537885040145, -3.9643539292921934, -7.0, -7.0, -4.40888414320084, -3.4102287485066443, -7.0, -3.739504533616649, -3.5494937132150133, -3.1190578375232376, -7.0, -3.394521722674913, -7.0, -3.3527370957112907, -7.0, -7.0, -3.5081592323614412, -3.2711152399482035, -7.0, -7.0, -3.3352572564345317, -7.0, -7.0, -3.6282867310895144, -3.6148972160331345, -7.0, -7.0, -3.5973843421258556, -3.228719959339479, -3.920456691003599, -7.0, -7.0, -7.0, -2.890058593275497, -7.0, -7.0, -3.4119562379304016, -3.496860487394368, -3.1631613749770184, -3.754348335711019, -3.0094122626552355, -2.7957062647984876, -7.0, -3.747023177451628, -3.1863912156954934, -3.075827604040037, -3.5826314394896364, -7.0, -3.274388795550379, -3.113839662201766, -7.0, -4.644802810753064, -7.0, -3.18440748541232, -7.0, -3.35839175864902, -7.0, -7.0, -7.0, -7.0, -3.811809515181134, -2.8913383039652625, -7.0, -3.365300748637987, -7.0, -3.2463754640035085, -3.1348939624551835, -3.0523090996473234, -7.0, -7.0, -3.010663332325691, -7.0, -3.6396358768118477, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5878231713189552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.296829664598624, -7.0, -7.0, -4.184734006620967, -4.050234709397242, -3.494958099302044, -7.0, -7.0, -7.0, -3.402089350572097, -3.1894903136993675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.886561221801466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6555993877807866, -7.0, -7.0, -7.0, -7.0, -3.5780658838360915, -7.0, -7.0, -7.0, -7.0, -3.829996661202949, -7.0, -7.0, -7.0, -7.0, -3.3774883833761327, -7.0, -2.620552444729435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.710878617685173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8574665172568663, -3.0608488730388075, -7.0, -3.4424797690644486, -7.0, -7.0, -4.295962732394023, -7.0, -7.0, -7.0, -3.491461750160462, -7.0, -3.3101833275716896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6055205234374688, -3.1451964061141817, -7.0, -7.0, -3.7078255683322316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9662590937671496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6429588794097905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.420615770625765, -3.605412798153051, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3738311450738303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.219121520999956, -3.4025193025742495, -3.6314437690131722, -7.0, -2.63085590953734, -2.9697781910347425, -3.0360297306565434, -7.0, -7.0, -3.213960237403306, -7.0, -2.849852805415638, -3.901621764093357, -7.0, -3.7014816356209272, -2.514300718383189, -7.0, -7.0, -7.0, -7.0, -3.340344949528144, -3.6488477083728936, -4.304296603018355, -7.0, -7.0, -7.0, -7.0, -3.6615287401319825, -7.0, -3.64777405026883, -7.0, -3.7548832282521674, -7.0, -3.0128372247051725, -7.0, -7.0, -3.1774403000220808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.441616594274755, -2.756445920162273, -7.0, -3.640878778701618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3244882333076564, -7.0, -7.0, -7.0, -7.0, -3.485295438726089, -7.0, -7.0, -3.6817837664678814, -3.314330782520869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.67015304519218, -3.6501131644435714, -7.0, -2.948412965778601, -7.0, -7.0, -2.5418970074937137, -3.062393937253195, -7.0, -7.0, -7.0, -7.0, -3.6351820486562674, -7.0, -3.633367445117007, -7.0, -3.1925674533365456, -7.0, -7.0, -7.0, -3.679246145413859, -7.0, -7.0, -7.0, -7.0, -2.7766103938800204, -7.0, -7.0, -3.187520720836463, -7.0, -2.8494194137968996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3914644118391033, -2.3419222959903934, -7.0, -7.0, -7.0, -3.864896553945115, -7.0, -3.0037189638231143, -3.7170044070405472, -7.0, -7.0, -3.6423655808449733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.438937701095528, -2.7822771281099112, -3.227050718827332, -7.0, -7.0, -4.0124153747624325, -7.0, -7.0, -3.3680078052211746, -3.343867921696387, -2.70372115992702, -7.0, -7.0, -3.635785235533652, -2.8600656362378873, -7.0, -7.0, -7.0, -3.658774320844357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.096947776103763, -7.0, -7.0, -7.0, -7.0, -7.0, -3.638189640190837, -7.0, -7.0, -7.0, -3.574956775764507, -7.0, -3.699056854547668, -2.830793899704099, -3.6372895476781744, -7.0, -3.6664243725187595, -7.0, -3.6844862921887342, -7.0, -3.180412632838324, -3.6472851450253665, -7.0, -7.0, -7.0, -3.737669627356642, -7.0, -3.6321534835106326, -7.0, -3.3922395603981106, -7.0, -3.3156905165284845, -7.0, -3.689486448364248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9108910886445285, -7.0, -3.362174189572871, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.639187559935754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.139375264439972, -7.0, -3.628695382714023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5126176996829153, -2.970966411972679, -7.0, -7.0, -3.333144876098619, -3.3016809492935764, -7.0, -3.6511325785504813, -7.0, -3.647162832668712, -3.031913164461711, -3.329499575762843, -3.6348801407665263, -2.79896919886926, -2.7900211284701975, -3.7032053706954864, -2.837667336315827, -3.25927524755698, -7.0, -3.6326597132939136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6494322232416168, -7.0, -3.6341748717626, -7.0, -2.9380190974762104, -3.528402437953617, -7.0, -7.0, -3.6445370577784075, -2.8918112322610328, -7.0, -7.0, -3.2906132849749863, -7.0, -7.0, -7.0, -3.638389407665336, -3.252610340567373, -3.1893967258352185, -7.0, -7.0, -7.0, -7.0, -2.9938466532119907, -2.6263403673750423, -7.0, -7.0, -7.0, -7.0, -3.075820590183628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.36332987888716, -7.0, -3.2116544005531824, -3.3389874160202413, -3.594248866857383, -7.0, -2.8719063670262903, -4.592731766393962, -3.4073059070182823, -7.0, -7.0, -7.0, -2.7422012536996743, -3.8311015645013593, -7.0, -7.0, -7.0, -7.0, -2.5598145842427398, -7.0, -7.0, -7.0, -7.0, -7.0, -2.963180469568511, -7.0, -7.0, -4.181567304029932, -4.300805552195441, -7.0, -3.6684791029325856, -4.012612289062748, -7.0, -3.0025020358433663, -2.7058187146688035, -2.877191780219873, -7.0, -3.8701111553644005, -3.841296887490282, -3.9945107159839948, -4.051345499336539, -3.7606636911394395, -7.0, -4.455240877870955, -3.78652960566293, -7.0, -4.649986784636648, -7.0, -4.416277611713044, -3.281828466560518, -3.199721739891994, -3.1212588303888062, -4.2637070646074315, -4.188056208438369, -2.8640523809944796, -7.0, -2.0169685917053837, -3.5385946772872883, -3.926023297896978, -3.7263196121107756, -3.678905156769131, -3.534829611339736, -4.028103361550306, -3.7078255683322316, -2.91559767644957, -3.5011353674456522, -2.671833768853756, -2.87140612375896, -2.837072617748184, -3.206987694756408, -3.6765107102825536, -3.677789391068861, -2.0920703092729895, -2.4197818916091722, -1.645939469700875, -4.005652315355074, -3.453624073591451, -7.0, -2.159646073401281, -2.2831568248844625, -7.0, -2.0209542276260914, -2.2874818076454804, -7.0, -1.870478618324812, -3.5094041602586916, -3.7988577317474856, -7.0, -3.0272354120535976, -1.9940933059313122, -4.18413472305636, -7.0, -3.076786033508079, -7.0, -2.9615276325601068, -7.0, -4.007539160371849, -2.7598296634141892, -4.189686782592971, -7.0, -7.0, -2.946452265013073, -3.4577494696916786, -3.747023177451628, -7.0, -1.381024468922903, -3.0884668537446456, -2.1504624790069746, -7.0, -2.2133690616540425, -3.089969303957718, -1.5705429398818975, -4.0704442499729465, -7.0, -1.2679374313022551, -3.3039516339434503, -4.15633710087081, -7.0, -7.0, -7.0, -7.0, -4.200905191684992, -3.0264389722525658, -7.0, -2.4144719496293026, -7.0, -3.2065560440990297, -2.088886014145426, -7.0, -7.0, -7.0, -2.3472649475991116, -7.0, -3.58849580100721, -2.6582716350441484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8506462351830666, -7.0, -3.71281800020785, -3.6737579365495767, -3.652343055062715, -7.0, -2.7112848782112553, -7.0, -7.0, -4.224222186084649, -3.600264821501586, -3.471093592379599, -7.0, -7.0, -2.9647309210536292, -7.0, -7.0, -7.0, -7.0, -3.1253511205147526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4108615542165976, -7.0, -7.0, -3.6405808064896528, -7.0, -3.890867938811441, -3.3212669395747887, -7.0, -7.0, -7.0, -3.666049738480516, -3.0379678925594034, -7.0, -3.8176975547630243, -7.0, -7.0, -3.7943834687844653, -3.642167634404945, -3.963882228928777, -7.0, -7.0, -3.3619166186686433, -7.0, -7.0, -7.0, -2.411293781383653, -7.0, -7.0, -3.3672161041609696, -7.0, -7.0, -7.0, -2.716791410904716, -3.335808805235897, -3.764250875438773, -7.0, -7.0, -7.0, -4.054593905348044, -7.0, -3.6444385894678386, -7.0, -2.858820171667875, -7.0, -3.5161385767170743, -3.365244562017571, -7.0, -3.6413749451921253, -7.0, -7.0, -7.0, -7.0, -3.4032063416448066, -7.0, -7.0, -7.0, -3.629409599102719, -2.767897616018091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.651859269246949, -7.0, -3.0358798102309463, -7.0, -7.0, -7.0, -7.0, -7.0, -3.334252642334231, -7.0, -3.3624259223086304, -7.0, -7.0, -2.8980195852004846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.085575969718504, -3.6108730003800513, -7.0, -7.0, -2.4733653019080357, -1.9876662649262746, -7.0, -7.0, -7.0, -7.0, -7.0, -2.378634853476651, -7.0, -7.0, -7.0, -2.8488711984461923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.594734988590292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.540454613671412, -7.0, -3.673389578188305, -7.0, -3.0517311960598494, -7.0, -7.0, -2.5057664361691927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9590413923210934, -3.00939777434038, -7.0, -3.2303211689190787, -7.0, -7.0, -7.0, -7.0, -3.5323721335678773, -7.0, -7.0, -7.0, -7.0, -7.0, -3.839289456006147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.293738117783524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5928426831311002, -3.540954808926133, -7.0, -7.0, -2.5827642863448856, -2.862489166905897, -3.2249213455840313, -3.215901813204032, -7.0, -7.0, -3.524266268766979, -7.0, -7.0, -7.0, -3.4202033743532962, -7.0, -7.0, -7.0, -3.5803546611065915, -7.0, -7.0, -7.0, -7.0, -3.5825178836040625, -7.0, -7.0, -2.959637541326031, -7.0, -3.123049400051291, -7.0, -7.0, -7.0, -3.5603849229720157, -7.0, -7.0, -3.3301431005564446, -1.837908225908228, -7.0, -7.0, -7.0, -4.760821910929019, -7.0, -3.6104472214421213, -3.3260284683370087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7886632131208575, -7.0, -7.0, -7.0, -7.0, -7.0, -3.050821505295759, -3.4554539687786283, -3.761927838420529, -3.5848963441374497, -7.0, -3.969276095488932, -7.0, -7.0, -2.7212215815105543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4516636494104094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7119337041617966, -7.0, -3.3038437748886547, -3.1183169490065796, -7.0, -7.0, -7.0, -7.0, -3.5869247081448203, -3.0169289290369714, -3.55339751012388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5203525040833177, -7.0, -7.0, -7.0, -3.719082573901486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.292477593667784, -3.803934849863842, -3.0246124170224853, -7.0, -7.0, -7.0, -3.575187844927661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1075830311913215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.620864475265121, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7024305364455254, -7.0, -3.299942900022767, -7.0, -3.693111115462141, -7.0, -7.0, -7.0, -3.256958152560932, -3.2979792441593623, -3.13268651460904, -3.657629431388952, -2.8722534194843883, -7.0, -3.521007252408604, -7.0, -7.0, -3.5814945422908995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5276299008713385, -3.2845811128217504, -7.0, -7.0, -7.0, -2.7080908169076845, -7.0, -7.0, -3.6432552250247716, -7.0, -7.0, -7.0, -7.0, -7.0, -3.564784384503987, -7.0, -7.0, -7.0, -7.0, -2.795578236741683, -2.659493631822546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2532168125021292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.604262062742623, -3.2691236170005356, -3.7054645707376306, -7.0, -3.628491104967123, -3.9796735463731157, -3.616790486329716, -7.0, -7.0, -7.0, -3.302330928684399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.737987326333431, -7.0, -7.0, -4.047235915459681, -3.992627145785504, -7.0, -7.0, -7.0, -7.0, -2.7024843890690557, -2.4679428579636253, -3.501964050635706, -7.0, -7.0, -3.193777262607969, -4.684908168288119, -4.045042487886878, -2.841562802829042, -7.0, -3.7410727723733213, -4.379975935132622, -4.113441953965322, -4.163260789989906, -3.56839730816483, -4.413024679701589, -3.0670295045117135, -3.020347695447247, -7.0, -7.0, -4.354933966559146, -3.0796959696157464, -7.0, -2.4044671718110897, -3.596948786692873, -4.614939378499252, -3.529836566775372, -3.2579664095081773, -3.013960158703525, -3.8316991783902976, -3.6793067375983877, -3.2008334049303198, -3.8384082784941866, -3.3090265613775127, -7.0, -2.664750011697359, -3.462397997898956, -3.0849845933781146, -3.578524605274993, -2.979912410334717, -2.349385466944565, -1.3548575254232875, -3.9618006391916785, -7.0, -3.2677875202836364, -2.7637635255241637, -3.3082441767406063, -7.0, -2.3785536271729235, -2.395520534548625, -7.0, -2.195189788763281, -7.0, -7.0, -7.0, -3.5645138908321785, -1.995603730660035, -4.4032320844788675, -7.0, -3.699143687394484, -7.0, -3.1654520728319286, -7.0, -4.480078840065485, -7.0, -7.0, -7.0, -7.0, -2.6875289612146345, -3.7401257369657306, -3.1863912156954934, -1.381024468922903, -7.0, -3.5424768560096274, -1.8744431604844423, -7.0, -2.6308003100834934, -3.006751199503011, -1.189499829979621, -3.818273035484493, -7.0, -2.6974037232004875, -3.151001907992831, -3.3473300153169503, -7.0, -7.0, -7.0, -7.0, -3.872360255801214, -3.154694414148935, -7.0, -3.3280736545131555, -7.0, -3.737907923374639, -4.109511052229932, -3.623042434246382, -7.0, -7.0, -3.482968813185257, -7.0, -4.3576585630856135, -7.0, -3.5907304057926903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5565529830285247, -3.184870669153574, -7.0, -7.0, -3.084099424214281, -7.0, -3.5424519473759766, -7.0, -7.0, -2.9775711945198147, -7.0, -7.0, -7.0, -7.0, -2.703560041586495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.390440506647526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.660710922305739, -3.5692568333286103, -2.9020806313459078, -7.0, -7.0, -4.060168811945148, -7.0, -3.614211501642213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0712067312776554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9262395210458623, -3.1077750894177876, -7.0, -7.0, -7.0, -7.0, -4.336619812907439, -7.0, -7.0, -7.0, -4.072892956720603, -7.0, -7.0, -7.0, -3.9472866446777983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6346535720376747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8538806501245424, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151584339359897, -7.0, -7.0, -2.290903952080366, -7.0, -7.0, -7.0, -3.4787107555127594, -2.7051982724309926, -3.3089910290001643, -7.0, -7.0, -7.0, -7.0, -2.926104889240625, -2.996560313525334, -3.851074805228887, -3.0599418880619544, -2.3823499028148887, -7.0, -3.8535156967569284, -4.151890568735089, -2.979912410334717, -3.8542452970661185, -4.157577640520729, -3.5245691995124906, -3.854518581489548, -7.0, -7.0, -7.0, -4.161547673125727, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0897955195268247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8523884893737295, -7.0, -3.308625384287424, -3.48973354378241, -2.1959688020761106, -7.0, -3.85403262355994, -4.182756931040399, -7.0, -4.153296449355305, -3.852601969338235, -7.0, -3.2614710422736133, -3.7027463765507442, -7.0, -7.0, -7.0, -2.9004199914746116, -4.151768102895178, -7.0, -7.0, -7.0, -3.9039847969050228, -4.165481742822164, -7.0, -7.0, -3.7068457481036043, -3.4533795039767075, -3.0424846400112133, -7.0, -3.676205706771244, -7.0, -7.0, -7.0, -7.0, -3.084457113581298, -3.5557290949540867, -3.215784388711792, -3.856275634663985, -3.6853834098014873, -7.0, -2.662035257986414, -3.8615642787784408, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153967221645479, -7.0, -7.0, -3.9072769666896816, -7.0, -7.0, -7.0, -3.1252446090735795, -7.0, -7.0, -4.156549151331781, -3.5509922837391463, -2.5023677374066544, -7.0, -3.851380667965597, -3.120663652202327, -7.0, -2.5916980263724967, -3.8540933980467313, -7.0, -4.153814864344529, -7.0, -2.7945461345990545, -7.0, -4.2383472434264755, -3.3096956669331346, -7.0, -7.0, -3.857633985150008, -3.317056153661989, -7.0, -3.2205148668713357, -3.4806679478217943, -7.0, -7.0, -4.155578931476932, -3.680758419669491, -7.0, -7.0, -3.5199404421814484, -7.0, -7.0, -7.0, -4.151706857022576, -7.0, -2.0148460455784836, -3.5209810814192983, -3.619771386161673, -3.8673201445219627, -7.0, -7.0, -7.0, -7.0, -3.2604887781968306, -7.0, -3.397418542351348, -7.0, -4.153540486438023, -7.0, -2.739673319684656, -7.0, -7.0, -7.0, -4.160678574400385, -7.0, -7.0, -3.2179224041016314, -7.0, -3.6840370374865197, -7.0, -3.863976783904387, -3.4568820206232487, -7.0, -2.5214488119418825, -3.374412263872896, -7.0, -7.0, -4.154058610376971, -4.152838509892218, -7.0, -7.0, -3.1157768761589635, -7.0, -3.070304726837112, -7.0, -7.0, -2.1140592839654127, -4.154028149603197, -7.0, -3.6858611158657704, -3.688182437748698, -4.168939213835978, -7.0, -7.0, -7.0, -3.4615585495157384, -7.0, -3.853789440530192, -4.187097500583477, -7.0, -7.0, -7.0, -3.2679925903655827, -7.0, -2.229442192497785, -7.0, -2.9143137682186073, -3.8529067587969537, -3.199328471994455, -4.151706857022576, -3.8514723847971446, -7.0, -7.0, -7.0, -7.0, -3.727703883685354, -4.158302169228023, -7.0, -4.152104800892868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.166341291983498, -2.868585666558766, -2.730302712943313, -3.034457362461151, -4.151829340131871, -4.152838509892218, -7.0, -7.0, -7.0, -7.0, -4.158814646724227, -7.0, -7.0, -7.0, -4.151553704542976, -7.0, -4.152318927424645, -7.0, -7.0, -4.1572451604751945, -2.58726921598461, -7.0, -7.0, -7.0, -3.851930678640268, -2.977418730245156, -3.154210882206974, -7.0, -3.8567288903828825, -3.575851484766047, -3.8524494943579435, -7.0, -2.7275132117938496, -7.0, -7.0, -7.0, -3.247591421035026, -4.164144582470177, -2.9325660009484786, -4.160678574400385, -2.9321194300820244, -7.0, -7.0, -4.153296449355305, -2.548329190632523, -3.569958818096594, -4.175163774491954, -2.95724097214691, -3.8856721269011203, -7.0, -7.0, -7.0, -3.553731361029655, -3.0876927048111944, -3.68436653636779, -7.0, -4.158332331708981, -3.2542458751053367, -4.153448988600982, -3.4538685055562, -3.8555797225017177, -2.6471383660631504, -2.789293385338263, -2.6504252739580907, -3.4623380910801975, -3.252731702726023, -2.44973545423003, -4.156670276554126, -7.0, -3.4488829162201706, -7.0, -3.851288931760664, -4.161936705245781, -7.0, -3.1838959153856106, -2.8398370426266326, -7.0, -7.0, -3.174117981254267, -7.0, -2.5297891748700816, -2.874452825110791, -7.0, -7.0, -7.0, -3.579240388938858, -3.467756051244033, -7.0, -4.153814864344529, -3.8595885767354927, -7.0, -3.6743711737058353, -7.0, -7.0, -4.1553056661596255, -7.0, -3.258996253248911, -7.0, -3.0814799602050034, -3.5175389738505816, -2.942073717201575, -7.0, -2.7162048924416333, -2.897334389207353, -3.0971415749873645, -7.0, -3.862250674597925, -7.0, -2.9683661870310103, -3.142884596540962, -3.33139837151611, -3.6752588323279403, -7.0, -7.0, -2.5841823863380733, -7.0, -4.1573358620972805, -3.454692449239477, -3.7024305364455254, -7.0, -2.4549785096424017, -7.0, -7.0, -2.6183234022565913, -3.13623546780067, -3.813487581861325, -7.0, -4.1335708406140395, -2.4785937181144218, -3.1987716009911846, -3.3864320772662224, -1.3425548681430048, -7.0, -2.6434703017162744, -3.0039249234108576, -4.074018770866754, -3.3973736557725545, -2.485011214578573, -7.0, -3.8065756350216424, -2.292733285312222, -4.377979759421654, -3.33875919891799, -3.8652422000895097, -3.578688759389185, -2.7162069987296933, -2.5027771598856288, -3.5664206554863935, -3.9741738279230225, -4.272429557401614, -2.891609720508594, -7.0, -2.4286565668208406, -2.6522463410033232, -3.938569756221061, -3.795421160051872, -3.2581581933407944, -3.225739915853267, -4.494961186838928, -7.0, -3.015371732477427, -3.283662990058831, -2.8858698609039064, -3.0031444621427994, -3.0188363111861225, -1.3932312730031822, -2.9448190303561415, -3.467548913204926, -3.171123924298172, -4.174641192660449, -2.700899887533364, -2.666822611197495, -2.482901594475409, -2.5567610204106916, -2.819214799882384, -3.5011049269548633, -7.0, -3.206511055806463, -4.187548920861271, -3.4584867637982066, -3.5333398359919688, -3.236211136661891, -2.846928464489655, -7.0, -1.4345612582962384, -2.2279710176578824, -3.1139246438338923, -7.0, -4.201233208680875, -3.4577305482459986, -2.5245036399592644, -4.270911639410481, -3.462154039880011, -1.535171570689024, -2.8472641017707647, -4.154971441544471, -1.9106051781102933, -2.9037228717450034, -2.249726155748044, -3.075827604040037, -3.0884668537446456, -3.5424768560096274, -7.0, -3.9205146413632144, -7.0, -2.2859456643213187, -2.8833086265318304, -3.8753796292918614, -2.415873026123643, -7.0, -2.6310047550946627, -3.1402420571552554, -3.5394345754799916, -3.8573324964312685, -7.0, -7.0, -7.0, -3.369907073710945, -2.625624754276346, -3.855761372339948, -3.1384749461121815, -3.559577489376628, -2.3176080294298718, -1.4142259545382132, -3.5764565324056203, -3.8579051461659373, -7.0, -1.7563016807504868, -3.558648580964467, -2.2268451186946043, -3.132579847659737, -3.470733812658553, -7.0, -3.2906355262615454, -2.989115958983829, -3.0759898930799845, -3.0640257837025393, -7.0, -2.737782385855657, -7.0, -4.1784301399477375, -3.5632140189832664, -3.857573704147496, -7.0, -1.7369932022994319, -7.0, -7.0, -3.0242753677211147, -2.385037929389288, -2.6856029843554237, -7.0, -4.2122941666623515, -3.5602355114447897, -3.885191540606848, -3.8566382770747882, -7.0, -3.854002233126989, -3.043283665570575, -7.0, -3.688271472050148, -3.776555910703262, -4.1532659350758685, -2.13593313027341, -4.168939213835978, -3.502263204344856, -7.0, -7.0, -7.0, -3.7009343568115676, -2.43605164525564, -7.0, -7.0, -7.0, -7.0, -2.3233810283251954, -4.1711704349016205, -3.566231197523304, -3.228470355396186, -7.0, -2.281167099190864, -3.385933807075215, -3.175327282032053, -7.0, -4.165481742822164, -3.2354118942883665, -7.0, -3.0019385633322884, -3.8688500772104053, -3.857422965024847, -3.684815450526118, -3.418991414588919, -7.0, -3.8531199842175665, -2.431875257677071, -3.022781743444123, -7.0, -2.2541785637644396, -4.174379665748987, -3.444643230730063, -7.0, -1.5688414901761636, -2.776560597696845, -2.8531448998375213, -3.347748075174585, -7.0, -4.152380087047603, -3.282342167993069, -4.216772698429039, -4.156215882676762, -3.722249906671828, -1.4622099218397608, -3.707485011967474, -1.2179593624134388, -2.2205063163424663, -3.015999120957349, -3.678032523045486, -7.0, -7.0, -4.152838509892218, -4.162175936530162, -2.4737496570134776, -3.925879089301501, -7.0, -7.0, -7.0, -2.061750828376922, -7.0, -7.0, -4.155214539497588, -4.156367400133521, -7.0, -7.0, -7.0, -2.204572137284902, -3.9060925019869828, -4.167701234971368, -7.0, -4.17207725696948, -7.0, -7.0, -7.0, -3.8585973449946924, -7.0, -4.160048139552876, -3.269606330839479, -3.0594119374386564, -3.323638769865047, -4.156246190397344, -7.0, -3.4317121323179034, -7.0, -7.0, -2.8008227846190157, -7.0, -7.0, -2.826412862771272, -3.381527638581548, -3.572028904135723, -7.0, -7.0, -7.0, -7.0, -3.097852030062842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504271453579076, -3.517855418930029, -7.0, -7.0, -2.034739066153002, -2.8675984177611293, -7.0, -7.0, -7.0, -7.0, -7.0, -2.004536317851323, -3.793301353613115, -7.0, -7.0, -2.8524072395241404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983829181069782, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3988077302032647, -2.7285161047597666, -7.0, -7.0, -7.0, -2.848225351982192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4127964287165433, -7.0, -3.0988743654836055, -2.914166793875635, -7.0, -7.0, -3.2493206766376344, -7.0, -7.0, -7.0, -3.4183012913197457, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8126125871077585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.182414652434554, -3.7987887139512493, -7.0, -3.1269427179442277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9875173043753707, -3.4326486600131068, -7.0, -7.0, -7.0, -7.0, -2.217024327282991, -3.1556396337597765, -3.1089031276673134, -3.3984608496082234, -7.0, -7.0, -2.929929560084588, -3.4109458586877746, -7.0, -7.0, -2.951337518795918, -7.0, -7.0, -7.0, -3.479719235439571, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5517548730165664, -7.0, -2.447790652695018, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1053398398052865, -3.27330999394054, -2.323134189499164, -7.0, -7.0, -7.0, -4.152746864026461, -7.0, -7.0, -2.8380931384455983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.061037590063418, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7031685051564884, -3.214755567839669, -7.0, -7.0, -3.4194600727860704, -3.629817196018516, -7.0, -7.0, -2.616850455189505, -3.6871721045948, -3.52022143588196, -7.0, -7.0, -7.0, -3.0731070983354316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505421327583281, -7.0, -3.4499409887733377, -7.0, -7.0, -7.0, -7.0, -3.299328264363879, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4931871179946894, -7.0, -2.987368292714309, -7.0, -7.0, -7.0, -3.051023823533444, -2.8424532150060804, -7.0, -7.0, -7.0, -7.0, -2.9661417327390325, -7.0, -7.0, -7.0, -3.5474054596674898, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7964355588101744, -3.7466341989375787, -3.3500268159642492, -7.0, -7.0, -7.0, -3.1718726561396826, -7.0, -7.0, -7.0, -3.4073909044707316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4777722083492573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7725967217074574, -3.586812269443376, -7.0, -7.0, -3.1049989492996337, -3.628695382714023, -7.0, -3.3799095435529614, -7.0, -4.051178257654162, -7.0, -7.0, -7.0, -3.206893307827949, -2.803320523578754, -7.0, -2.97231857308512, -3.089905111439398, -3.100198171834132, -3.4034637013453173, -7.0, -7.0, -7.0, -3.451632947456991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0958664534785427, -7.0, -7.0, -7.0, -2.743234794886994, -7.0, -7.0, -3.602548297999073, -7.0, -7.0, -7.0, -7.0, -3.5576274884268266, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7410930796679323, -2.3739622924346047, -7.0, -7.0, -7.0, -3.545059584694003, -3.177103432436536, -7.0, -7.0, -3.446847710155809, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.456214155357989, -1.8711263248776597, -3.273695587930092, -3.680516809381255, -3.7645338283040592, -7.0, -3.061954844073114, -4.095587746918743, -3.5251744278352715, -7.0, -2.760271660542063, -7.0, -3.031139050792672, -7.0, -7.0, -7.0, -7.0, -7.0, -3.474507639116976, -7.0, -7.0, -7.0, -7.0, -7.0, -3.369308645463461, -7.0, -7.0, -4.340572995903572, -4.463975064379387, -7.0, -7.0, -7.0, -7.0, -3.017986785306103, -2.7357106522811234, -3.575172444141053, -7.0, -3.8152455919165633, -3.521377838762743, -7.0, -7.0, -4.432391984779924, -7.0, -3.3132505321629835, -4.372792371489067, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3535934043217672, -3.848958460827495, -7.0, -7.0, -3.639030895749854, -7.0, -3.218010042984363, -4.278456350394209, -4.305512587470589, -4.291057894434276, -3.4607224866342263, -3.4532673635246596, -3.5926430126038604, -3.4328090050331683, -4.3918169236132485, -4.126926506574775, -2.9437988035219163, -7.0, -3.149823711791301, -4.350771183053166, -2.470840026689671, -3.1760912590556813, -3.530103604722902, -2.4706242843379016, -1.8886500259978922, -7.0, -7.0, -7.0, -2.9755669553850708, -3.1670217957902564, -7.0, -2.6028022288404826, -2.101794462727242, -7.0, -3.0329409377808534, -3.769254209283846, -7.0, -7.0, -3.4417823871692685, -2.244982936312322, -4.878119484697168, -7.0, -7.0, -7.0, -3.936252282852836, -7.0, -3.8071773174683865, -3.4994808812303866, -7.0, -7.0, -3.834611420722687, -4.093911741049379, -4.326479236380961, -3.5826314394896364, -2.1504624790069746, -1.8744431604844423, -3.9205146413632144, -7.0, -7.0, -2.8798635551649716, -3.6355284250189435, -2.1367205671564067, -3.8777551677965714, -7.0, -3.323355245756284, -2.518098148097058, -3.4971716237529193, -7.0, -7.0, -7.0, -7.0, -7.0, -2.935003151453655, -7.0, -2.69397805877852, -7.0, -7.0, -7.0, -7.0, -3.438067450453494, -7.0, -3.619979805833053, -7.0, -4.651142275762345, -2.81424759573192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.264968855694732, -3.296476062321468, -7.0, -7.0, -3.1547282074401557, -7.0, -7.0, -7.0, -3.4171394097273255, -3.6920533650340808, -7.0, -7.0, -7.0, -3.40705081480425, -3.0191756567901225, -7.0, -7.0, -7.0, -7.0, -3.423245873936808, -2.8305886686851442, -7.0, -7.0, -3.4168068718229443, -7.0, -7.0, -3.6396358768118477, -7.0, -7.0, -7.0, -7.0, -3.834092050101445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.871689665685515, -7.0, -7.0, -3.15259407792747, -7.0, -7.0, -7.0, -2.952861603722939, -7.0, -7.0, -3.5775492423982382, -7.0, -7.0, -7.0, -7.0, -3.8396665568824333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1406127806443553, -7.0, -7.0, -7.0, -4.331326050575092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4194600727860704, -7.0, -3.9155053617543767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.841547165256553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.328277644409767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.531478917042255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0472748673841794, -7.0, -3.906065544755237, -7.0, -7.0, -7.0, -3.764227878947755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.639486489268586, -7.0, -7.0, -7.0, -3.296465743882869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2346859743215286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.841359470454855, -2.6035052322021435, -7.0, -7.0, -7.0, -3.2541047755068098, -7.0, -7.0, -7.0, -7.0, -7.0, -2.851869600729766, -7.0, -7.0, -4.220944476323413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.944975908412048, -7.0, -7.0, -7.0, -3.3435923832614898, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.886490725172482, -7.0, -7.0, -7.0, -7.0, -2.89707700320942, -2.484299839346786, -7.0, -2.7895807121644256, -7.0, -3.762903528499057, -7.0, -7.0, -1.6476623490125806, -0.9905303695254535, -2.4261044280965076, -7.0, -2.3215725418490862, -7.0, -7.0, -7.0, -2.6857417386022635, -4.260182731270367, -7.0, -7.0, -3.0806264869218056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.906335041805091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4424797690644486, -2.82020145948564, -7.0, -3.0273496077747564, -7.0, -7.0, -7.0, -3.7771367125041726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4983511022684035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8850922984181877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2528530309798933, -7.0, -2.7427251313046983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3428173146357327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6471383660631504, -7.0, -7.0, -5.149727032473089, -7.0, -7.0, -7.0, -2.8603380065709936, -7.0, -7.0, -2.688419822002711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5490032620257876, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2079035303860515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6231458746379395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.113943352306837, -2.412740466538526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4387005329007363, -7.0, -7.0, -7.0, -4.3067787530377135, -7.0, -7.0, -3.760648619581356, -7.0, -7.0, -7.0, -7.0, -3.1344958558346736, -7.0, -7.0, -7.0, -7.0, -7.0, -4.621193597796724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4055171069763763, -5.4331919899766925, -7.0, -2.4807253789884878, -3.1835545336188615, -7.0, -2.3873898263387296, -2.3256524705723134, -7.0, -2.081437326351849, -2.359835482339888, -3.0409976924234905, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6424645202421213, -7.0, -2.7763379096201755, -7.0, -3.386498965550653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.1644343445700975, -7.0, -3.702710497195296, -2.73814608871206, -7.0, -7.0, -7.0, -4.54383222047354, -2.6713152810508642, -2.2663885100087673, -3.594613509160098, -4.14157518330082, -3.4067955726682504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.358886204405869, -7.0, -3.4518631592206126, -4.980148869966749, -7.0, -2.5888317255942073, -2.9923325590474645, -7.0, -4.134920489925607, -7.0, -7.0, -3.6097011023793995, -7.0, -2.075546961392531, -7.0, -3.7060346607143506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1284531213413365, -4.263043983313166, -7.0, -3.6794884634460368, -7.0, -7.0, -3.306425027550687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9926418698783976, -2.323252100171687, -7.0, -7.0, -3.386320573894046, -7.0, -7.0, -7.0, -2.224014811372864, -3.7846885995014214, -7.0, -4.628777066916437, -7.0, -7.0, -7.0, -7.0, -7.0, -2.840419777736486, -7.0, -7.0, -3.4888326343824008, -7.0, -7.0, -2.8512583487190755, -1.667452952889954, -7.0, -3.834674974462744, -7.0, -7.0, -7.0, -4.340582908247528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5622928644564746, -7.0, -7.0, -7.0, -7.0, -1.8736111969964673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.549749537701614, -2.1245042248342823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.526339277389844, -3.6068111469189637, -7.0, -7.0, -7.0, -7.0, -3.1436392352745433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.584082338518372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5786392099680726, -7.0, -4.152838509892218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1920095926536702, -2.5786392099680726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9719249491841913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.580674129529291, -1.8195439355418688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.044539760392411, -7.0, -7.0, -7.0, -7.0, -7.0, -3.325169853067657, -4.60336092434838, -7.0, -7.0, -4.603025223127586, -7.0, -7.0, -3.9043800949900676, -3.281433803271223, -2.800421747228451, -3.8334021292318585, -7.0, -7.0, -2.816033430174598, -2.6617732597751806, -3.1121182879546594, -4.1304302676581415, -7.0, -3.029586671630457, -7.0, -2.4572433221712098, -3.5621936991445007, -7.0, -3.5319682869631666, -1.8985153536370132, -7.0, -3.7009415623278796, -4.001095211443513, -3.525563058270067, -3.8261828227192676, -3.760012985109646, -2.977637880812752, -3.4903367141452675, -7.0, -4.6044096711329505, -4.127925077465084, -4.12949654301666, -4.12602311790052, -4.30407024797259, -7.0, -4.3172691867066195, -7.0, -2.605864781665245, -4.603220178008266, -2.880705760006643, -4.60591887481288, -7.0, -4.126834630715719, -4.603988314428608, -4.302731264944306, -7.0, -3.7587713562655973, -4.01456253812761, -2.296694434696538, -7.0, -3.649951132399792, -3.6142009437289793, -4.604604005662973, -7.0, -4.302806962741421, -7.0, -7.0, -3.835109009618324, -7.0, -7.0, -7.0, -2.5002744574000397, -4.126012287479145, -7.0, -7.0, -7.0, -2.96865932865102, -3.5664696331901315, -7.0, -3.9099516346165966, -3.0979972823670283, -7.0, -3.701848502207992, -7.0, -4.3027204498961344, -7.0, -7.0, -4.302633919813779, -7.0, -3.4032063416448066, -4.128216119832209, -3.0528435107623086, -3.906108675522897, -3.5276299008713385, -7.0, -1.8664891445287781, -3.264184372768502, -7.0, -7.0, -7.0, -7.0, -4.603750445560116, -3.3995114795956187, -3.6033609243483804, -7.0, -3.1048697542030097, -7.0, -7.0, -7.0, -3.462301715051026, -7.0, -4.126293790693266, -4.303822199862847, -4.12653184328548, -2.756153779095104, -7.0, -4.603425868816548, -3.5276406399690727, -3.7026889681591335, -2.1476292279157922, -4.604388073038561, -4.60518648804185, -4.603901831731672, -3.4926744454294854, -3.031365936393981, -4.302633919813779, -3.237382858540404, -2.745224339164012, -7.0, -7.0, -4.3045982263436375, -3.050227801195228, -4.604020741000524, -3.407178379640504, -3.533909685986936, -3.527898298680946, -4.604258461911163, -3.458119623559412, -4.128226895434375, -7.0, -7.0, -3.6495826527746433, -7.0, -7.0, -7.0, -7.0, -7.0, -1.618700389595784, -2.518801729103482, -3.166358649407166, -3.4627294755267726, -4.303455260341883, -3.433223740977953, -4.302731264944306, -7.0, -3.6073477767684134, -3.627847001305857, -3.1641190727500446, -7.0, -4.302752894232717, -4.001690454232153, -2.1944591769417783, -7.0, -4.603241834260485, -4.604258461911163, -4.129184854827195, -4.3022226663176655, -7.0, -3.707431775903971, -4.607412127814179, -3.9075080987704354, -7.0, -3.2650537885040145, -3.65029672770863, -4.604085586881876, -2.3082523908915555, -4.302514912793019, -4.30225514786152, -7.0, -7.0, -4.603555728624722, -3.9050183100925886, -4.001279282706004, -3.127188429114518, -7.0, -3.5590130051978, -4.302157695941016, -4.008961933117199, -2.0499724842459552, -4.603977505033251, -4.130473149293476, -3.7619922371773242, -4.130891023495683, -3.910272131395313, -3.7673149191811577, -3.827993553315733, -4.127903511010362, -7.0, -3.905644795140426, -7.0, -3.3852171160984486, -7.0, -7.0, -7.0, -3.1910000242876015, -7.0, -3.3223330236343784, -7.0, -3.7646990637983677, -7.0, -7.0, -4.603155202771475, -4.126293790693266, -4.605811248305117, -7.0, -7.0, -4.126001456787675, -3.8444771757456815, -3.605305046141109, -7.0, -4.603295970166954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6083869514996945, -2.8233673153857817, -3.172310968521954, -3.110911824815142, -4.302146866599888, -4.603555728624722, -7.0, -4.307175012040345, -7.0, -4.603306796538514, -4.304630530707381, -7.0, -7.0, -7.0, -7.0, -4.60336092434838, -4.126207193752344, -7.0, -7.0, -4.605121806343587, -2.87499984366751, -7.0, -7.0, -7.0, -7.0, -3.5624875232080653, -4.3031852539407955, -7.0, -3.4589182965065093, -3.8344101058342694, -7.0, -3.304244259277009, -2.9354127889420147, -4.603133542198807, -4.603220178008266, -7.0, -3.4753182974419126, -4.306542968060749, -2.879280592584869, -4.60634911432292, -2.9439644754792935, -7.0, -7.0, -3.9046614579155245, -2.4505272220763104, -3.2676409823459154, -3.569990699550751, -2.5931805404783503, -3.5742733523184973, -4.126196367920531, -7.0, -7.0, -4.002544014335011, -3.2659428694809183, -3.4924810101288766, -7.0, -3.8272507737711705, -7.0, -7.0, -4.126477751880373, -4.127752515832973, -4.001906704040885, -2.9656617533678844, -3.308575084056243, -3.761433797113758, -4.00264114900004, -2.3282378357250217, -3.563308455169777, -4.603317622640193, -3.57966929355472, -7.0, -4.60339339779644, -4.004675974470456, -4.604096393587492, -3.4686004895460547, -3.3058348440883205, -3.534311732164361, -4.605897351644974, -3.766179064078007, -7.0, -2.4018192554030393, -2.825511246424534, -4.3024283417450855, -4.000997730357794, -4.302168525012116, -3.835658870008277, -2.9173876039727284, -7.0, -4.126737329204574, -3.492147669460123, -4.603231006269363, -7.0, -7.0, -3.6509331989884437, -7.0, -4.3024283417450855, -3.0499498468203896, -4.604139617721083, -3.0448870428359847, -3.6728672017718136, -2.6916399187247166, -7.0, -2.736821292120416, -3.0680872527130307, -3.1645228008000683, -7.0, -3.9082490417283884, -3.649972740165452, -3.1479427135532005, -2.8802724280098246, -3.381423019450003, -4.126272143076777, -4.603144372620182, -7.0, -2.3301438206546727, -7.0, -3.906097893232545, -3.758706478093696, -3.5716453183444794, -3.9049966910328284, -2.5163287539376213, -7.0, -7.0, -2.914017096150432, -3.1884748650838253, -3.8125791554090465, -4.005330687197071, -3.5688077482898857, -3.6686136699931597, -3.421555540208102, -2.478997784566411, -1.6359740309170805, -4.603415045412929, -3.1990777777050927, -2.8272287565088057, -3.568584306222322, -3.2077227048870984, -2.548146339077636, -4.292802288802934, -3.6623462708433094, -2.517474255510426, -3.852000471450028, -3.041727876544049, -3.60114520058165, -2.6541476783893043, -2.9666477694787634, -2.5211034302444606, -3.59956399102238, -4.43288915534841, -3.768077564256461, -2.2281642565150674, -7.0, -2.1080732087659397, -3.150049945162385, -3.1756121573812774, -3.414236244397732, -2.906335041805091, -3.009866199603352, -3.325470051381601, -3.3105148857863513, -2.6651677940598373, -3.0086407202407206, -2.554658369696338, -3.3577549119189194, -2.1048164029455747, -2.2925046365073523, -3.064659538033753, -2.412083448112903, -2.6777604106572355, -2.6905803358869598, -1.8504177381054372, -2.93721499711337, -3.663899761406957, -3.0046332186164886, -2.507197252114352, -2.0761662517354678, -7.0, -1.5596980647057543, -2.3952257583370415, -7.0, -3.0306300769965593, -2.6065710271626346, -3.779390322499192, -4.608632989490037, -1.9199113500563203, -1.4938986418652622, -3.185214973180491, -4.604604005662973, -3.240632438491053, -4.605013982101039, -2.124140950466047, -4.3480905842171556, -3.3055117346226393, -2.44086924401704, -3.479532970135968, -4.303260872655577, -3.32508541707219, -3.0451055597673964, -2.859753377160808, -3.274388795550379, -2.2133690616540425, -2.6308003100834934, -2.2859456643213187, -2.8798635551649716, -4.1284531213413365, -7.0, -2.4846313880499444, -3.2894296777830814, -3.2648230680803016, -3.835764532624219, -2.7624910040260096, -3.6880538004138907, -3.0464864930994575, -4.3044905277734875, -4.6044528640996845, -7.0, -7.0, -3.2660552139992545, -2.541412229580903, -4.303930064275368, -2.6525863391471938, -4.606757447446635, -3.4217170096674763, -2.239436555168604, -3.6126991080645925, -4.00362206995102, -7.0, -2.542435784521191, -4.305372868641297, -2.5955968983040805, -2.9476574395062145, -7.0, -7.0, -3.1129591096853653, -3.919559212435094, -3.851390859681218, -7.0, -4.608793373986931, -2.7504170360248934, -7.0, -4.311743268378236, -3.493865396394858, -3.8273692730538253, -7.0, -2.810484550780126, -7.0, -7.0, -3.610440956871625, -2.2308324786210756, -2.7283675405386587, -7.0, -4.6255593728759745, -3.4306017402583806, -4.314646564169264, -4.128129905388509, -7.0, -4.30330407743893, -3.3494717992143856, -7.0, -4.608087238735641, -4.340999022531442, -4.126542660758098, -3.3096785486972573, -3.6549141836078363, -3.2785457548220838, -4.302125207107494, -4.611245214834831, -3.826495928923713, -2.904068176024568, -3.5573798033833013, -7.0, -3.759106405842074, -3.905720344324213, -3.940606123624698, -2.2921992525584747, -7.0, -7.0, -4.171736202017041, -4.607176127348896, -2.113498426251389, -2.9345951413783444, -3.8492248488826877, -4.606467355504293, -4.608076530882, -3.2062860444124324, -3.172581311073855, -3.374507165084317, -4.308639101521262, -4.605574376060999, -3.5274258075430835, -4.1427126678463475, -4.603209349477183, -4.604042357370141, -2.023585287134652, -4.308543071784684, -3.9096736792967133, -3.110050716147654, -7.0, -3.629562492778617, -4.611043195143434, -2.4884734467765677, -3.472112573021507, -4.017492446477275, -4.016155511951455, -4.603371749100861, -4.60339339779644, -3.1232129397311224, -4.326243665994105, -4.604755094644832, -3.7754335947062185, -2.301559831150869, -3.1231242235002017, -2.7590453913944355, -2.6724377682208376, -3.9605754142007257, -3.650005149798325, -4.1330489863973865, -7.0, -7.0, -2.8422325328084246, -3.4975462870162044, -3.9322301667562654, -7.0, -4.00238207493276, -7.0, -2.518118139018857, -3.75876054390998, -7.0, -4.604398872220019, -7.0, -4.607787318992725, -7.0, -7.0, -2.9279961994449373, -4.623590387791532, -7.0, -4.127342406950523, -7.0, -7.0, -7.0, -7.0, -7.0, -3.827315413751728, -7.0, -2.6468348655844047, -4.157789086282048, -7.0, -7.0, -7.0, -3.6245399138793952, -4.302731264944306, -7.0, -2.696460051338408, -7.0, -7.0, -4.1396902216529226, -4.154109373586023, -7.0, -7.0, -7.0, -3.828219364730503, -7.0, -4.0362095668797355, -7.0, -7.0, -7.0, -4.261607787677791, -4.5616141210401855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9435742893274437, -7.0, -7.0, -7.0, -3.3747160071678457, -3.306800181689314, -7.0, -7.0, -4.5633149300417255, -7.0, -7.0, -2.4968011980452105, -3.700281762108918, -7.0, -4.269384504815968, -2.285557309007774, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4494546633573377, -2.4370267586220122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.563552275376031, -7.0, -4.1008872548535935, -7.0, -2.61491227452664, -7.0, -7.0, -4.263375650509443, -7.0, -4.0851478121269045, -7.0, -7.0, -7.0, -7.0, -4.0990933597731, -2.596998642902258, -7.0, -7.0, -3.067872555625634, -7.0, -4.562007207036461, -4.5621619614618565, -7.0, -7.0, -4.271562825432305, -7.0, -7.0, -7.0, -1.7507143703221413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.266772463513072, -3.0142569205658902, -7.0, -4.086347964543191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.524702893919724, -3.9617057840025054, -3.7905314524809914, -4.26254600711293, -7.0, -7.0, -2.3525241236469903, -4.2646289582612225, -7.0, -7.0, -7.0, -7.0, -4.562042924490958, -7.0, -7.0, -7.0, -4.107164728282974, -4.562114350588686, -7.0, -7.0, -4.090328606823422, -7.0, -7.0, -7.0, -7.0, -3.965589710687253, -7.0, -7.0, -4.2646289582612225, -3.786171502733773, -2.5798750174111493, -7.0, -4.563623453690032, -4.56220956711611, -3.963350952906355, -3.5294186871545548, -4.56197148664423, -3.3664009809846007, -2.747286769372282, -7.0, -4.264451822935162, -4.564133223842105, -3.179312365346288, -7.0, -4.093526743699675, -3.5723603667301402, -7.0, -7.0, -4.5628992633333025, -7.0, -7.0, -7.0, -3.2419007136463427, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1551535630443066, -3.208609290581607, -3.174585324070688, -7.0, -7.0, -3.849644590644391, -7.0, -7.0, -7.0, -3.3330440298234874, -3.570741362455255, -7.0, -7.0, -7.0, -2.2783344944909594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.569654763999852, -3.611640712232615, -3.963008230329139, -7.0, -3.9645071216655343, -4.5631012082812745, -7.0, -2.268999741029523, -4.5618404867309605, -7.0, -7.0, -7.0, -7.0, -4.562399937566829, -7.0, -3.0099674143453172, -7.0, -3.433469803182775, -7.0, -4.09294276329501, -1.9982710654658589, -4.261239071182586, -3.611888452446593, -4.264806021368701, -3.721539758930226, -3.8691143269793753, -3.7934411329776636, -4.087627637093355, -7.0, -4.564938152655192, -7.0, -4.56262589414616, -4.575511135352897, -7.0, -7.0, -7.0, -3.6068404347418768, -7.0, -3.504584122237375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3520803191505655, -3.609535123922841, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.562126253796315, -4.567144045195657, -3.6656396121264856, -3.3658182050172414, -2.551762876952401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.263115076181341, -7.0, -7.0, -7.0, -4.56132801668009, -7.0, -7.0, -7.0, -7.0, -4.563552275376031, -2.327788480037824, -7.0, -7.0, -7.0, -7.0, -7.0, -4.562578334108671, -7.0, -4.563777633362166, -3.872785398110417, -7.0, -3.508001960690125, -3.21507405981132, -7.0, -7.0, -4.561947671417096, -3.5815742220419535, -4.089104047230036, -3.0692768548844684, -4.564902672529205, -2.410457246805854, -7.0, -7.0, -7.0, -3.459640154554527, -4.092311181205276, -4.570671341310066, -4.275069372441866, -3.973243342094437, -7.0, -7.0, -7.0, -4.563053700270299, -4.090446171178625, -7.0, -7.0, -4.563979170379509, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0095179873019924, -4.267875419318898, -7.0, -7.0, -1.8332496962960916, -4.563326800389584, -7.0, -3.321132199092705, -7.0, -7.0, -7.0, -7.0, -3.1266299633528254, -3.963787827345555, -4.573010925673387, -7.0, -3.616031831994069, -7.0, -2.568561278550861, -3.6679896519391977, -7.0, -7.0, -7.0, -3.7949525327803477, -3.7891222049334066, -7.0, -4.56220956711611, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.264569921179731, -4.5624713049774686, -3.1631998609074703, -3.8888082879416745, -2.4752289628972193, -4.564038428178439, -2.785982944618427, -2.5120549607425273, -4.27034104958934, -7.0, -4.565954019011971, -7.0, -3.247259956560877, -3.6871497913170237, -7.0, -7.0, -7.0, -7.0, -3.868009281278586, -4.5620310189991775, -7.0, -7.0, -3.7272507007309033, -4.5623761458235395, -3.4102371919840464, -7.0, -7.0, -2.6506555784991606, -2.53868278690593, -4.0396995888283325, -4.265065583413968, -3.4771901848812075, -2.66755544932639, -2.932980821923198, -2.861484626428204, -2.3349294350274246, -7.0, -2.5457441400572276, -2.9921586590995553, -3.132601183145576, -3.1592619692400405, -1.5520219332595657, -3.294363860431569, -2.969272509849161, -1.8786372226067107, -3.4875342941571197, -3.0154673753195924, -3.94680584505315, -3.008774197448603, -2.9229947879131495, -2.4595410083588636, -3.149608480460239, -3.1345991834276594, -2.9392140854464, -2.5973430149761865, -7.0, -2.3471711118641507, -2.5658560713786627, -3.1302226216788993, -3.2652408424311914, -2.78413311507613, -2.813601514822185, -3.2227083443035465, -3.500117498811224, -2.821915301608853, -2.7247571938130504, -3.1648131980042757, -3.1741412484842906, -2.494374636005587, -2.666247158263108, -2.3278748299030187, -4.567308742295084, -2.783051077562302, -3.9683311524518685, -2.358446191254353, -2.2214298254626015, -2.914251150449555, -1.79996678529663, -2.049041329359675, -2.371481885568941, -4.273926780100526, -3.086621501154378, -3.4962606330422306, -4.262676484650911, -3.816395982944207, -1.8028997166794674, -3.438531047715789, -3.2244977469336202, -2.1348892809686673, -2.064907698019913, -2.850942982561628, -4.261928672990642, -3.3505330445844037, -3.416996924659806, -0.5737700405534676, -3.7085165023886946, -2.9392801385228218, -2.970292805028701, -2.1053713216250967, -3.960530233278372, -3.4057411103246222, -2.270366342963542, -2.5629349075011825, -3.113839662201766, -3.089969303957718, -3.006751199503011, -2.8833086265318304, -3.6355284250189435, -4.263043983313166, -2.4846313880499444, -7.0, -3.7929283885474976, -2.064000901642323, -3.670083426263088, -3.2005883290017714, -2.8473778063091553, -2.8954693687278734, -3.86494990015796, -4.562816082229735, -7.0, -7.0, -3.450900876048348, -1.5044884175991484, -4.262344282872842, -3.3683333807516376, -3.6109202833939147, -3.1388663510447565, -2.150196735710199, -2.880778604742453, -3.333411709141367, -7.0, -2.492843133456706, -3.5233562066547925, -1.8427318620121902, -3.025563322053369, -3.245888517670497, -3.5406365695176527, -1.7965078471454785, -2.964673473933623, -3.386008212064673, -4.094913466730015, -3.868526886768204, -2.13268651460904, -3.967910516906905, -3.7267504887286442, -3.867726690780445, -3.4846675287062974, -7.0, -2.6358897433686486, -4.2641800750358305, -4.56209054319465, -2.941392159191468, -1.3049624593163323, -2.3062498686537425, -4.561852397446954, -2.3755443405179504, -3.5239828175558485, -3.398761495462114, -4.262688344301696, -7.0, -3.7844389742226907, -2.8171618438797363, -7.0, -3.612383509312248, -3.0350401101934903, -4.0848264166974335, -2.62215055900234, -3.225262277614999, -3.3022739518555517, -7.0, -3.339463133018275, -3.7179081470475372, -3.726645720240912, -2.7960687999951257, -7.0, -4.261631565092629, -3.5629586686546233, -3.601212290310882, -2.783382848542842, -7.0, -4.5679903942616775, -2.7587413551231554, -3.3349856489294853, -1.649593059957502, -2.866240066363793, -3.019082592425777, -2.9620495355379868, -7.0, -3.287383001404188, -7.0, -2.5974209235343935, -4.091409000337585, -3.449822423023631, -3.662190990859007, -3.5795549604009986, -4.084278305722365, -4.562364249463112, -3.188863610434584, -3.5268442505473905, -7.0, -2.257107413023032, -3.5287297662461867, -3.548958648077225, -3.72482570577938, -2.682533359351777, -3.179115405187117, -3.278010092736105, -2.9538171981860746, -7.0, -7.0, -2.6066599758861706, -3.6334684555795866, -3.8640836959342795, -3.3249565862275174, -2.197373495100488, -2.72784322950962, -2.1039887903218193, -2.171607230416448, -2.7643629658980102, -3.9606491203532737, -3.967021168372457, -7.0, -7.0, -3.389071533777558, -2.978882520617143, -4.115088823225195, -7.0, -3.4486468722994976, -7.0, -1.9621879551647274, -7.0, -7.0, -3.784486532958129, -4.086039331268039, -3.4522583665480764, -3.961326155934711, -4.087473801905176, -3.547013492058355, -3.5422141112149736, -4.266631458809917, -3.8638104239716684, -3.6661785553856663, -4.561423405743846, -7.0, -4.260381487592611, -3.5228826933940454, -3.8649854606597938, -4.087485637315985, -2.1874668989130193, -3.3171172311500428, -3.1767811277123865, -4.085991829752375, -7.0, -3.0528523073252756, -3.9599472157084987, -7.0, -2.183768127867326, -7.0, -7.0, -3.214210135751011, -3.6889979031063134, -4.269256027417773, -4.26030994579492, -7.0, -3.5234153595283777, -7.0, -3.453547660380749, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2177470732627937, -7.0, -7.0, -3.3757550347552243, -2.698013503939182, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2380963076814093, -7.0, -7.0, -7.0, -3.173626112391373, -7.0, -7.0, -7.0, -3.0115704435972783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0170333392987803, -7.0, -7.0, -7.0, -3.395578760073066, -7.0, -7.0, -2.0863598306747484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.327767489902729, -3.1577588860468637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.579059168622478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2364364854163306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7168377232995247, -7.0, -7.0, -3.050031562368402, -3.0863598306747484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7846172926328756, -3.0472748673841794, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2245330626060857, -7.0, -3.6008640363098396, -2.1282726609921685, -7.0, -7.0, -7.0, -7.0, -7.0, -2.738516308715399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.515741416669365, -3.223625716693796, -7.0, -2.2900346113625183, -3.837967018368655, -7.0, -7.0, -3.1020905255118367, -7.0, -7.0, -7.0, -7.0, -7.0, -4.099611590392529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8307249657259144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203304916138483, -3.773868689935876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1740598077250253, -7.0, -4.1101273185900435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7446840632768863, -7.0, -7.0, -2.957607287060095, -7.0, -7.0, -7.0, -2.8867726430544383, -7.0, -7.0, -7.0, -2.9429995933660407, -2.948412965778601, -7.0, -7.0, -3.1411360901207392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.61406366749503, -7.0, -7.0, -3.5027684123256932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2113875529368587, -7.0, -3.351848051536318, -2.625312450961674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.895146189375992, -4.479890284548756, -7.0, -7.0, -4.252173155771533, -7.0, -7.0, -7.0, -7.0, -3.199480914862356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.439079939868871, -7.0, -7.0, -3.505946584808965, -4.039604453125454, -7.0, -7.0, -3.980389744490009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.103786622411421, -3.606650028578439, -3.8353311524327784, -7.0, -7.0, -4.63202176705472, -4.15917603179347, -7.0, -2.9531405612996258, -7.0, -4.588529405160941, -7.0, -7.0, -7.0, -7.0, -7.0, -4.361841115455327, -7.0, -3.9913146981766108, -7.0, -3.1471952256995244, -7.0, -7.0, -3.132899769944483, -3.297724044876189, -2.4305587695227575, -1.829341470368647, -7.0, -3.358315640082196, -7.0, -3.045443348654918, -3.0569810366681134, -7.0, -2.7356714695842044, -2.2338418642756133, -7.0, -2.4258135993962244, -7.0, -7.0, -7.0, -4.0655797147284485, -2.5638900641249864, -4.69727003779242, -7.0, -7.0, -7.0, -7.0, -7.0, -4.64436964836413, -7.0, -7.0, -7.0, -7.0, -3.7311050512159203, -7.0, -7.0, -1.5705429398818975, -1.189499829979621, -3.8753796292918614, -2.1367205671564067, -7.0, -3.2894296777830814, -3.7929283885474976, -7.0, -7.0, -7.0, -2.709439574132411, -3.668012971641832, -4.0385804259615785, -7.0, -7.0, -7.0, -7.0, -7.0, -4.018534070428183, -7.0, -3.261976191397813, -7.0, -7.0, -3.7174624577374917, -7.0, -7.0, -7.0, -7.0, -7.0, -4.63490027448999, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.647578554212455, -3.9684595987605533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5154764413823756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7786576319473553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.296687123772402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7241939195143297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.293384655649437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.331619598814896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.325655782561224, -4.639556209850188, -7.0, -7.0, -3.16367373995895, -3.3491664760112605, -4.632497783955012, -4.635745049128339, -4.633225990988621, -4.638149675666846, -7.0, -3.101549466237807, -3.6261069635526333, -7.0, -7.0, -2.239349687763895, -4.631748074396569, -4.030427670038405, -7.0, -7.0, -4.331741009037769, -4.156377499418026, -2.846392345502033, -4.632882267597585, -7.0, -7.0, -4.633397750722679, -3.7896512087934098, -7.0, -4.633428054213735, -7.0, -3.8005894413487176, -7.0, -2.5295417018298836, -4.63164666295842, -4.333296101617611, -7.0, -7.0, -4.632376297316548, -7.0, -7.0, -7.0, -7.0, -3.945222316635341, -2.6946417541696412, -4.6323357942172505, -4.6327204212336115, -4.642118133694582, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039037170468973, -7.0, -7.0, -7.0, -2.1600081910853546, -7.0, -7.0, -4.6322547766847135, -7.0, -4.649996507466041, -4.335146862569169, -4.631960961368071, -4.637069241035025, -2.7751873723527694, -7.0, -4.332347551556558, -7.0, -4.632163613891242, -7.0, -7.0, -7.0, -7.0, -3.936744902547847, -4.156508768749401, -3.5584985707795957, -4.633468455579586, -4.334182232241241, -4.034718674639405, -2.459328928945867, -4.334192291524873, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6323357942172505, -7.0, -7.0, -3.872932838859368, -7.0, -7.0, -7.0, -4.159627340658673, -7.0, -7.0, -4.633195673394554, -4.154930911986147, -3.522795219079118, -7.0, -7.0, -7.0, -4.15702336561913, -3.0003376533044324, -7.0, -7.0, -7.0, -4.334021252007486, -4.03769535853163, -7.0, -3.5158643859762524, -3.1849357906889892, -4.632173744035556, -4.635091498324376, -4.332872537394924, -3.2311922774468314, -4.632396547449762, -3.7362869187437133, -4.163956058605712, -4.635483746814912, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5681598017268974, -7.0, -7.0, -7.0, -7.0, -7.0, -3.051832155289801, -3.257073500468536, -3.701750221946291, -7.0, -7.0, -4.2116366158122185, -7.0, -7.0, -7.0, -4.654927001082143, -2.957557406567787, -7.0, -7.0, -7.0, -3.082753465050354, -7.0, -7.0, -7.0, -4.634578022853888, -7.0, -7.0, -3.7934111840437565, -4.158412754751622, -3.7895605681684152, -7.0, -3.6816532195389895, -4.633044053669549, -7.0, -2.753528668400722, -4.330920830595236, -7.0, -7.0, -4.632366171895849, -7.0, -7.0, -7.0, -3.801393908632056, -7.0, -3.053288028212929, -7.0, -7.0, -2.444930287804152, -7.0, -7.0, -4.635393259371746, -7.0, -4.637369631484764, -3.1484235191525474, -4.15732578507467, -4.633377547220539, -4.157446693916665, -7.0, -4.331589240955137, -3.9445813642269263, -7.0, -7.0, -7.0, -3.6273231761856515, -7.0, -2.8863740159456666, -7.0, -3.358816175464692, -4.632345920346211, -4.155204413132518, -7.0, -4.330819466495837, -4.031953515152245, -4.330687657787511, -7.0, -7.0, -4.649947891142217, -4.031660887671635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.331164007951355, -3.858236335429513, -3.9389298097006464, -3.9626912667546974, -2.4618437822769756, -7.0, -4.631960961368071, -7.0, -4.636337421853309, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9115737192268285, -7.0, -7.0, -7.0, -7.0, -4.632467415481234, -7.0, -7.0, -7.0, -3.3848907965305544, -7.0, -7.0, -3.741939077729199, -7.0, -7.0, -7.0, -3.116871334402459, -7.0, -3.9777510335478743, -4.333527878521092, -2.1284278322668913, -4.331032303786008, -7.0, -7.0, -3.590479585986756, -3.793261408387223, -4.63949645003697, -4.16699223083011, -4.166351161976156, -7.0, -7.0, -7.0, -7.0, -4.335838869579954, -3.789671348585748, -7.0, -7.0, -3.934548947666147, -7.0, -7.0, -7.0, -7.0, -3.479795976082418, -4.035889806536247, -4.157708547654237, -7.0, -2.5190242649545627, -4.1560744186748915, -7.0, -2.91225809382997, -4.330748497546924, -7.0, -3.4886111428830153, -4.632467415481234, -4.040572674177254, -4.635443532501082, -4.3404441148401185, -4.634154704380864, -3.736087605088271, -7.0, -2.128563561760865, -3.598392527828595, -7.0, -7.0, -7.0, -4.039552912583547, -3.858446960810253, -7.0, -4.331234909038874, -4.333527878521092, -7.0, -7.0, -7.0, -4.63364011946669, -7.0, -7.0, -3.635010993287761, -7.0, -2.8421030098272815, -4.052097290944154, -2.153802931760111, -7.0, -3.4104695715094544, -2.80630333557594, -3.6857118891584975, -7.0, -4.158312223621103, -7.0, -3.638698865768533, -3.4256301060619636, -3.68567208670853, -7.0, -7.0, -7.0, -3.937377450772812, -4.0300124406298, -4.633458355590473, -4.3312652916762255, -4.038927992647938, -4.030306180567886, -3.476802655265517, -7.0, -7.0, -2.8706990460717736, -2.6297950538396533, -2.538633705624185, -4.635614417623872, -3.5626309001629304, -3.8050054042112746, -3.9787464205898777, -2.9205420041231145, -2.5190924328316933, -7.0, -3.6480508524599364, -2.3463857600530322, -3.013897483044927, -2.600269964081599, -3.0796075759467434, -3.374191200992188, -3.062413394164839, -2.4202208779093466, -4.2430876795053765, -3.171460029734501, -4.005403610458412, -2.5458736297858944, -3.4949629235687794, -2.189466104551766, -3.735766517790886, -3.5508014270092443, -3.3840460396756726, -3.4881090860079356, -7.0, -2.7453272910995308, -3.8698548372107338, -3.3881711982636977, -3.36178593172792, -3.4595206460387544, -3.3661560276036155, -3.415314549032263, -3.2684569231845684, -3.81253903397321, -2.7044690074905664, -3.4349217089943167, -3.1492191126553797, -2.7772632504185997, -2.1560455027012795, -2.847971643535726, -4.636628292196984, -3.3886259019870084, -7.0, -2.7176199065692925, -1.9235765957120772, -2.6571347401888503, -2.428875883579378, -2.841668389969892, -3.7238112811795303, -3.944127194858972, -3.7776714519557197, -7.0, -3.3779635912797032, -3.961003210960297, -2.3008710783668844, -3.8734659237113185, -4.636718522707071, -1.8575104719484488, -2.0251841199184506, -1.960728263701163, -3.5913479701696387, -3.7453968780059266, -3.855074740604978, -2.1852503345221805, -3.6746315375170773, -3.1693604467873184, -3.014641859190304, -2.7626624327434466, -4.030549125532981, -2.956491665902276, -2.1245042248342823, -2.4895536818701456, -4.644802810753064, -4.0704442499729465, -3.818273035484493, -2.415873026123643, -3.8777551677965714, -3.6794884634460368, -3.2648230680803016, -2.064000901642323, -7.0, -7.0, -7.0, -3.9495558852137727, -2.6710325168610387, -2.9442111532404787, -4.332771627853622, -3.3536834439309335, -7.0, -4.635724954531139, -4.133762384787346, -3.3386722591208517, -4.031176105055047, -3.56191591574931, -4.6349606700606385, -4.175994738445905, -2.2721936013114594, -4.16354896490181, -3.592419030368671, -7.0, -3.023529789754866, -4.157486989384848, -2.2068982162472084, -3.5598866845194808, -4.33665982345442, -7.0, -3.4037705275894505, -3.742852730737543, -3.4008448706355794, -4.6407000199084365, -3.9378186846983563, -3.8811182534521094, -4.638958241356926, -4.339570682001439, -3.937136588642368, -4.031781998819799, -7.0, -3.414603952694696, -7.0, -7.0, -3.0056517115817107, -2.517130143653564, -2.932264542286491, -7.0, -4.050486093182022, -3.680778547794163, -3.9442950953941773, -3.7883704155653297, -7.0, -7.0, -2.750845748402496, -4.633801623517603, -4.335156899534743, -3.889871048788647, -4.02998204239725, -3.5985899046347534, -4.160208336707736, -3.8034863797892493, -7.0, -4.639167623995889, -4.155922798949886, -4.64053112457209, -2.784236791474462, -7.0, -4.632690068324521, -3.9340538293702187, -4.364813556261336, -4.08841075955748, -7.0, -4.035089374144706, -3.720177685852126, -3.4889634626461374, -2.2870790764685953, -4.158663980813989, -4.052289848578728, -4.634688823826319, -7.0, -4.008625717744802, -4.331801701423656, -2.6904883743107986, -7.0, -3.8555999095694653, -3.8567892887533164, -3.8690164754407816, -7.0, -4.632416796638804, -3.4920709290390546, -3.2391993420543015, -4.159647387949369, -2.75432102760387, -3.794009770670591, -3.878291949249796, -3.735748561803585, -2.804502896720539, -3.975128385758762, -3.868771750094851, -4.3447163997142635, -7.0, -7.0, -2.4702006168679937, -3.8090207204836726, -7.0, -4.647998761995242, -2.7498466966808266, -4.642800745692909, -3.3908173961711223, -2.9572339246004073, -3.9064427938170323, -7.0, -7.0, -4.155477742147295, -7.0, -3.5934874556083014, -3.2241643703992757, -4.055865492428976, -4.632072431957763, -4.632851925998251, -4.154403683246536, -2.3352263798583643, -4.3313159246822295, -4.635694810891918, -7.0, -4.332084820464514, -3.8576741678371116, -4.6333472402049605, -4.634356336067436, -7.0, -4.349704810656211, -4.159787693079161, -3.518665764554107, -4.638439335179549, -7.0, -7.0, -4.154464550007314, -3.935194783852778, -7.0, -2.9802660415584765, -3.1967931395743268, -3.1985054080977675, -3.0552253838538195, -3.678690322780319, -7.0, -4.350771183053166, -7.0, -3.932565078682726, -3.02539768750682, -4.631748074396569, -7.0, -2.501842838364596, -3.5785819114018698, -3.8609366207000937, -7.0, -7.0, -4.032578471924312, -4.33056595269382, -3.55044474059212, -4.631697371637548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.366133331018571, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.183799217793253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092018470752797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8764872659889766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9399682905513362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.229208133978611, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092580300691311, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.127396390776607, -7.0, -7.0, -7.0, -4.74355679768502, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.105918740286373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.258246065968053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.377715941401723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.960232873128512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.851108460676247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.616191843248132, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.101049030827831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.179125521533452, -7.0, -7.0, -4.078287610839212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.452943522899956, -7.0, -7.0, -7.0, -3.4652340949880145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.808346035740395, -7.0, -7.0, -7.0, -4.660191704349621, -7.0, -7.0, -7.0, -4.62728049158373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7115204156674295, -7.0, -7.0, -4.257342526505176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6224005533247965, -7.0, -7.0, -7.0, -7.0, -3.553288194064595, -7.0, -7.0, -3.0200158093322957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4875625602563782, -7.0, -3.2234588550581065, -4.506577183334457, -4.572859989893312, -7.0, -7.0, -7.0, -3.9213118324682164, -7.0, -4.946314683884897, -2.986861270290045, -7.0, -7.0, -3.1276716039590733, -7.0, -4.295501126169623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.835764532624219, -3.670083426263088, -7.0, -7.0, -7.0, -7.0, -7.0, -3.74472315193016, -7.0, -7.0, -7.0, -7.0, -7.0, -3.725012725341157, -7.0, -7.0, -7.0, -7.0, -3.548880562637515, -7.0, -7.0, -7.0, -3.8375253094496014, -7.0, -3.405978791431299, -7.0, -7.0, -7.0, -7.0, -3.397070549959409, -7.0, -7.0, -7.0, -3.5877109650189114, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8820689444361483, -3.1354506993455136, -7.0, -3.4811558708280352, -4.649373807143351, -4.447072715118013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.348791467560584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.438858659420562, -7.0, -3.783127871279766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.413467412985825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.330616667294438, -7.0, -3.996248914569132, -3.9996306927125405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.699027906406887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.297432204810169, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.196470959229819, -7.0, -7.0, -7.0, -3.449478399187365, -3.4686426683915115, -2.783665413935314, -7.0, -7.0, -3.378216149749878, -7.0, -2.8644197947770462, -7.0, -7.0, -7.0, -2.505660746145801, -7.0, -7.0, -3.2412973871099933, -3.2801228963023075, -3.268577971882843, -2.807535028068853, -4.577250458079471, -3.2706788361447066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1358058893081124, -7.0, -7.0, -3.2995072987004876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9179647680549445, -7.0, -7.0, -3.4452927694259716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6113692154627337, -7.0, -7.0, -7.0, -7.0, -3.555215405126073, -7.0, -7.0, -7.0, -4.258038338370556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3736474722092176, -3.28397928423848, -7.0, -7.0, -3.0759746270911994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.576341350205793, -7.0, -7.0, -7.0, -7.0, -3.270811881862804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5470975149038937, -7.0, -7.0, -7.0, -4.146864161030103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.031165999660659, -7.0, -7.0, -7.0, -7.0, -7.0, -3.198863190485256, -2.662967585118109, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9130717403092508, -2.500716623555479, -7.0, -7.0, -7.0, -3.429719989249435, -7.0, -7.0, -7.0, -3.3081373786380386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.961832252984734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.24551266781415, -7.0, -7.0, -3.94215692846749, -7.0, -7.0, -3.6056641155967877, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1157768761589635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9636697965031646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.89726044333122, -7.0, -4.0402492600992455, -7.0, -3.2489536154957075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2629254693318317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.600755149639618, -3.490941205356787, -7.0, -7.0, -7.0, -3.5425764762605296, -7.0, -3.0296542818869807, -7.0, -3.916256497088509, -3.2518814545525276, -3.2425414282983844, -7.0, -3.151982395457474, -7.0, -7.0, -7.0, -3.4667193716815987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.020568434801363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.398981066658131, -7.0, -3.6408445394191995, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3510228525841237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.287801729930226, -7.0, -7.0, -3.0195316845312554, -7.0, -7.0, -7.0, -4.113277878999596, -7.0, -7.0, -4.086608944572948, -2.934834983210739, -7.0, -7.0, -7.0, -3.089905111439398, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0443437348951075, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5930644316587173, -7.0, -7.0, -3.730741911850021, -4.157169561317188, -7.0, -3.3296012483565187, -3.607470341973842, -7.0, -3.514614153467984, -3.821742733474618, -2.5729892769856284, -7.0, -3.612889769287485, -4.291335544382936, -4.670755942215133, -4.335865591694248, -3.8177801500889426, -7.0, -4.414990051283522, -3.8215322435577312, -3.7570542290869438, -7.0, -7.0, -4.629647410457143, -3.173962834523349, -3.4338046066925614, -4.1258714674176815, -7.0, -7.0, -3.5699734307202693, -7.0, -2.8528224411993004, -7.0, -4.121100029976307, -7.0, -4.219532135300155, -3.8897497752640375, -7.0, -7.0, -3.17345943823902, -4.4154074254501365, -3.027879409207207, -7.0, -3.634678752178682, -3.221273764150597, -3.843419665204918, -7.0, -2.9020028913507296, -3.398981066658131, -2.812364175873973, -3.5800121125294244, -7.0, -3.521039963927612, -1.9152954430762743, -2.0554319844088447, -7.0, -2.7572694676725296, -3.169527489553293, -7.0, -3.188741045483493, -3.7499938278694627, -7.0, -3.351409751925439, -3.6044240692658422, -3.1228709228644354, -4.3318175956470295, -7.0, -2.7584071921878865, -7.0, -3.2653613770351475, -7.0, -7.0, -2.1148967983141596, -7.0, -7.0, -3.783045572114693, -2.919190202125499, -3.5321596295356965, -3.18440748541232, -1.2679374313022551, -2.6974037232004875, -2.6310047550946627, -3.323355245756284, -7.0, -2.7624910040260096, -3.2005883290017714, -2.709439574132411, -3.9495558852137727, -7.0, -7.0, -3.4419306745501714, -3.7710727832211948, -7.0, -7.0, -7.0, -7.0, -4.125708925972653, -3.7525477914613012, -7.0, -3.131137273778607, -7.0, -7.0, -2.1336167877718255, -7.0, -7.0, -7.0, -2.798880735242388, -7.0, -3.8654099861535784, -3.3984608496082234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8047683130754844, -7.0, -7.0, -4.190205594369269, -4.355039444172483, -3.6071485345061802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0159881053841304, -7.0, -7.0, -7.0, -7.0, -3.5159400420933182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5997739391463885, -7.0, -7.0, -7.0, -7.0, -3.639422450302014, -3.333850145102545, -3.3058885302843097, -7.0, -7.0, -3.3948017771627113, -3.269979676645324, -3.824581376233483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2650537885040145, -7.0, -7.0, -3.229937685907934, -7.0, -7.0, -7.0, -2.690196080028514, -3.7887338588277077, -3.516667559099043, -7.0, -7.0, -7.0, -4.003331258561327, -7.0, -3.2753113545418118, -7.0, -3.0427132993461132, -7.0, -3.4233687700792785, -3.4702004128593673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.92668535582776, -7.0, -7.0, -7.0, -7.0, -3.1954291424570624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.091315159697223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4670369854657044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3106933123433606, -7.0, -7.0, -7.0, -7.0, -7.0, -3.116939646550756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6130574113800384, -7.0, -7.0, -7.0, -2.886547123391106, -3.2992348258376047, -3.592620821321982, -7.0, -7.0, -7.0, -7.0, -2.833746914486369, -3.877083256650651, -7.0, -7.0, -2.763334385526816, -7.0, -3.1156105116742996, -7.0, -3.3000517321200418, -3.5958267770732233, -3.1263479050141765, -3.7553738764518165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3014640731432996, -7.0, -3.7200765727681406, -7.0, -2.8715385971800256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.591287265058499, -7.0, -2.345851073918755, -7.0, -7.0, -3.2104968748521077, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3976046343494333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.350807759477898, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6256210814249075, -3.605305046141109, -3.0458117739782704, -7.0, -2.9218944709291024, -7.0, -2.627996640264847, -7.0, -3.590395947184013, -7.0, -7.0, -7.0, -7.0, -3.5908418347816027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3362595520141936, -7.0, -7.0, -3.600210306409328, -3.286905352972375, -2.2732529640336354, -7.0, -7.0, -3.3205616801952367, -7.0, -3.2771506139637965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3649260337899753, -3.5100890297927787, -7.0, -7.0, -7.0, -4.162728654665835, -7.0, -3.0613582209247174, -3.6788824146707357, -7.0, -7.0, -7.0, -3.304167271724397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.02129269021003, -7.0, -7.0, -7.0, -7.0, -7.0, -3.589055531052344, -7.0, -3.325207689482919, -7.0, -3.1885535262742306, -7.0, -7.0, -7.0, -2.6097067170825574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6555225962534177, -7.0, -3.3157604906657347, -7.0, -3.630122642859312, -3.2973227142053023, -7.0, -2.7688363674494263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.249361442065167, -7.0, -3.4327288399232216, -7.0, -7.0, -2.3135808237099367, -3.591064607026499, -7.0, -7.0, -7.0, -7.0, -3.6720978579357175, -7.0, -7.0, -7.0, -3.1209028176145273, -3.594171479114912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1588146467242266, -7.0, -3.1712387562612694, -7.0, -3.5911759503117913, -7.0, -7.0, -3.60959440922522, -7.0, -7.0, -3.5826314394896364, -7.0, -3.128937494690652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6344772701607315, -3.6492374723496073, -3.236537261488694, -3.444264050864443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6027109449575576, -2.8230827965328036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2880255353883627, -7.0, -3.2372085050255706, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2311126290563523, -7.0, -3.9429005411402938, -7.0, -7.0, -7.0, -3.1909476791001867, -7.0, -3.663795122219408, -3.705949194910296, -3.0977777345392834, -7.0, -7.0, -7.0, -7.0, -3.3372595397502756, -3.6181527333785195, -7.0, -7.0, -7.0, -3.287689783936075, -7.0, -7.0, -7.0, -3.4992745818922173, -3.649529565947819, -2.9181352261663593, -7.0, -3.26382339410336, -3.1230890516896657, -7.0, -7.0, -7.0, -3.585009279902461, -7.0, -7.0, -2.257145043497534, -3.3226327116922234, -7.0, -7.0, -3.3608772971020398, -7.0, -3.1556767254229467, -3.367169488534681, -7.0, -7.0, -7.0, -7.0, -2.634779458145952, -7.0, -7.0, -3.6148972160331345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6653724963034815, -3.1151665612324684, -3.2548586942269258, -7.0, -3.3081152246316403, -7.0, -2.598790506763115, -3.3833889379388244, -3.6695957810243134, -7.0, -3.6241789257480224, -7.0, -3.055282745486664, -3.5009222391903005, -7.0, -7.0, -7.0, -7.0, -2.6780122672453888, -7.0, -7.0, -3.590618948206578, -3.200759326791928, -7.0, -2.630500517741912, -7.0, -7.0, -3.2923812935028804, -3.695430597186528, -3.7440581658788354, -7.0, -4.0064089883235185, -2.7545776560447304, -3.9360107957152097, -3.1774757445725914, -3.346187411389113, -7.0, -3.4589700516287487, -3.614770704069749, -3.7352972015395354, -3.8723893884178207, -3.4986168263565274, -4.053059226488266, -4.448520816457295, -2.8094519693064504, -3.4317496322269334, -7.0, -3.4638183615294293, -3.8126560444689828, -3.4411843626805214, -3.4295840726793774, -7.0, -3.952138330237461, -3.8158717320006788, -3.5024817447857, -7.0, -3.620248199186466, -4.307688539595161, -3.4741433897608056, -3.4741329781460157, -2.667149307610973, -2.9924209560520243, -3.08905271767822, -3.268958047188312, -4.414505394200718, -3.846754502341561, -4.106122874006655, -3.6794278966121188, -3.833582675940881, -2.9945920748044763, -2.180679778900204, -7.0, -3.6955108619666306, -7.0, -2.994114021477017, -2.8391636829146503, -3.1174370252826193, -3.283188116453424, -2.939169679625177, -3.3359090116234906, -7.0, -3.475525915039281, -3.225309281725863, -7.0, -7.0, -1.9632032023186512, -7.0, -7.0, -3.0958830375160398, -2.8946149153826797, -3.904083156295295, -7.0, -3.7432745235119333, -7.0, -3.0348338037447746, -3.618100418196633, -4.260767609784481, -3.2807490500644776, -3.1352483321344415, -3.594503043820089, -3.212027711974624, -3.292382669369879, -2.9368036393469454, -7.0, -3.3039516339434503, -3.151001907992831, -3.1402420571552554, -2.518098148097058, -3.306425027550687, -3.6880538004138907, -2.8473778063091553, -3.668012971641832, -2.6710325168610387, -7.0, -3.4419306745501714, -7.0, -2.609311859583047, -7.0, -7.0, -7.0, -7.0, -3.4103272455302913, -3.223625716693796, -7.0, -3.680698029697635, -7.0, -3.175946470095546, -2.870826418185298, -7.0, -7.0, -7.0, -3.382692286787451, -7.0, -3.106813947817089, -3.360593413565249, -7.0, -7.0, -2.4833495228146365, -7.0, -3.102982230518263, -3.675044735955893, -7.0, -2.675123395867703, -7.0, -7.0, -7.0, -7.0, -7.0, -4.017200343523835, -7.0, -7.0, -3.9174267307364943, -2.3865590291510017, -3.513654043515571, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7953933349312896, -7.0, -3.6316466629584196, -3.5785819114018698, -7.0, -3.6358856852812727, -7.0, -7.0, -7.0, -3.660675788338524, -7.0, -3.6734816970733473, -3.496462599613991, -7.0, -7.0, -7.0, -3.564547711755948, -4.002036402259529, -7.0, -7.0, -3.616790486329716, -7.0, -2.6790242918538194, -3.6277753752293034, -7.0, -7.0, -7.0, -3.778838339511192, -7.0, -3.4653828514484184, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5917322389518356, -3.102890857809762, -7.0, -7.0, -3.6475296664449806, -3.6612446089593336, -7.0, -7.0, -3.1743021460393894, -7.0, -3.730216840568694, -7.0, -7.0, -7.0, -3.568846817602785, -7.0, -7.0, -7.0, -3.0819590663004783, -3.6940784620807596, -4.103666913746792, -2.9413776300597516, -3.9727580839035395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5757772516888866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.458939861890326, -3.639087871083737, -7.0, -7.0, -7.0, -7.0, -7.0, -3.611404637711593, -3.6072405038317426, -3.6126779183165016, -2.534607738735867, -3.8369567370595505, -3.813714391881145, -2.819872821950546, -7.0, -3.1658376246901283, -7.0, -7.0, -2.938500480932248, -7.0, -7.0, -2.92933376158383, -7.0, -7.0, -7.0, -7.0, -3.616160312847583, -7.0, -3.8577545220594422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0905950403567006, -7.0, -7.0, -7.0, -3.668634368917545, -3.5514499979728753, -7.0, -7.0, -7.0, -4.0313680628857735, -7.0, -2.6598918323053944, -3.839037873388306, -7.0, -3.7348798027926278, -2.9812024817976854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.433317943937392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8267776004800336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.578333530221577, -3.0613654722789483, -7.0, -7.0, -4.0471969600412665, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7422929779105942, -7.0, -7.0, -7.0, -2.181630311663954, -7.0, -7.0, -4.00702192557868, -7.0, -4.077404246398098, -7.0, -7.0, -7.0, -2.9304889211886853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3765973450330384, -3.718377112354902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.08181520063228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015108160645837, -2.898623623119816, -7.0, -7.0, -7.0, -7.0, -4.038063526997859, -7.0, -3.820398522703982, -2.9703856231170267, -7.0, -7.0, -7.0, -2.770412835511627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5027456678452404, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9619843621856914, -3.4952667443878105, -3.622697454895568, -7.0, -7.0, -3.9064158583202704, -7.0, -7.0, -3.720242018287057, -7.0, -3.7366354976868212, -7.0, -7.0, -7.0, -3.6396657481551746, -7.0, -7.0, -7.0, -7.0, -4.004665233247877, -7.0, -3.7321926510062684, -7.0, -4.0175758683910745, -7.0, -7.0, -7.0, -7.0, -3.2577608328052667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.064607720130627, -7.0, -3.1535862281287175, -7.0, -7.0, -3.063279732418138, -7.0, -7.0, -7.0, -4.023334782538309, -7.0, -7.0, -3.5390760987927767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.896813671100868, -7.0, -3.4785304231255387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.014646524684032, -7.0, -7.0, -7.0, -4.077222510411053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4205168312286167, -2.9324795300180524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.014142361545006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9299739347123883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.004665233247877, -7.0, -7.0, -7.0, -4.091596620810058, -7.0, -7.0, -7.0, -7.0, -3.295127085252191, -7.0, -3.47088069752548, -7.0, -2.467428389499807, -7.0, -7.0, -7.0, -3.5451833682154064, -3.3334069668739175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.026247181477774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2544790209024517, -3.729691133696481, -7.0, -7.0, -2.523573061146692, -7.0, -7.0, -3.494098911669254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5587885437369464, -7.0, -2.605253418938421, -4.038739348104749, -7.0, -7.0, -7.0, -7.0, -4.025469719061056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.233987782369209, -7.0, -3.1075599661112743, -7.0, -4.043715858061207, -3.611481912591253, -7.0, -7.0, -7.0, -7.0, -4.034307529596563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.312701917838379, -3.1842555313968237, -3.977159418076437, -7.0, -4.263884503895953, -7.0, -3.327825823614288, -3.0649818216973053, -3.483831728933643, -7.0, -3.5369159991305725, -3.144418518602069, -3.7876887005649507, -3.8240370362712772, -3.36337377330266, -3.983325529161058, -3.6908160579809155, -2.918078016916882, -4.296511624661299, -3.447743589284149, -3.9521868168381484, -3.590000635504518, -3.6364878963533656, -3.1421808211559457, -4.035829825252828, -7.0, -3.6374396927036643, -3.5806627239884357, -7.0, -3.1091475495168543, -3.7254869263323838, -3.9823074227385105, -3.8314698345875327, -3.3551204963352967, -3.5081255360831993, -3.8319976772358966, -3.7230860771627894, -3.165473651207667, -3.359936616294331, -3.434317926102869, -7.0, -3.104929817244617, -3.175859573543703, -2.905852665734307, -3.179592822341174, -3.245841554222827, -7.0, -2.596256415228722, -3.357771547700954, -4.061490176624815, -3.079362164393046, -3.2280885697501356, -3.697345604166356, -7.0, -3.279609916344099, -4.053731315887608, -7.0, -7.0, -1.882937978459839, -3.3845326154942486, -7.0, -2.7622363290860354, -2.512227672063213, -3.436719078227576, -7.0, -7.0, -7.0, -2.790465388800819, -3.686397907850216, -3.842435380053072, -3.8423595733306746, -3.1238924561996617, -7.0, -3.858115932190066, -2.676192630404192, -3.3799095435529614, -3.35839175864902, -4.15633710087081, -3.3473300153169503, -3.5394345754799916, -3.4971716237529193, -7.0, -3.0464864930994575, -2.8954693687278734, -4.0385804259615785, -2.9442111532404787, -3.74472315193016, -3.7710727832211948, -2.609311859583047, -7.0, -3.712481337801919, -7.0, -7.0, -7.0, -3.85959857764468, -3.2142476081039772, -7.0, -3.7429214225992955, -4.018325945402921, -3.4868199647800893, -2.787416192644107, -4.041629508475138, -7.0, -7.0, -3.2476459909266477, -4.017033339298781, -3.0850083208438113, -3.5586685784080947, -7.0, -4.075181854618692, -7.0, -7.0, -4.101024940352695, -3.7404811172953423, -7.0, -4.11143055176598, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8988557218778017, -7.0, -7.0, -2.8695527265119622, -3.160857720233285, -2.6499254252092936, -7.0, -3.6098077693287025, -4.019240950395851, -4.0520009801013, -7.0, -7.0, -7.0, -3.4951973183654577, -7.0, -4.023458237643675, -7.0, -7.0, -3.1733319803686495, -3.550921040371087, -3.5952757118020995, -7.0, -7.0, -7.0, -7.0, -3.350164918327805, -7.0, -7.0, -7.0, -7.0, -4.212720154417842, -4.031287248876998, -7.0, -3.861803148214179, -4.019946681678842, -2.9103508839812586, -3.7207792813583587, -3.7925667729442467, -7.0, -7.0, -3.7850924507567543, -7.0, -3.097344090487375, -7.0, -7.0, -3.416349216054106, -3.367840271289815, -7.0, -4.00770511436478, -3.841515888422295, -3.7281101841003403, -7.0, -3.2771506139637965, -7.0, -4.101368963249251, -3.733598460961339, -3.5809249756756194, -3.206885815923174, -3.588906340229199, -3.760271660542063, -7.0, -7.0, -2.7052220557053834, -3.2475173509272977, -7.0, -4.069889996506938, -3.529330524750806, -4.049876719873882, -3.2361936106265383, -3.207215337532426, -3.7176982348423726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.106530853822381, -7.0, -7.0, -7.0, -2.875043167411285, -4.0074917332953355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.794243992434201, -3.779127315306203, -7.0, -4.009535876619219, -7.0, -7.0, -7.0, -7.0, -3.714245911017894, -4.013721778051063, -3.71474876072506, -3.258996253248911, -3.641441057915941, -3.4074588904573924, -7.0, -7.0, -3.606918525948291, -4.006679927740826, -7.0, -3.2049636242070005, -7.0, -7.0, -3.7551122663950713, -3.6292396540870877, -4.035549803010057, -7.0, -7.0, -7.0, -7.0, -3.527436551688697, -7.0, -2.783903579272735, -7.0, -2.5490032620257876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100060223931153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.860916680183462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7115541682501694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1867949476962183, -2.3961993470957363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5199591807520685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8825245379548803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7626410582667367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.52865964523499, -7.0, -7.0, -7.0, -7.0, -4.4362342281438885, -7.0, -7.0, -3.0780941504064105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9663294951638783, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2072752236993582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.815577748324267, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6007188480153314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.88380739196289, -7.0, -7.0, -7.0, -2.510545010206612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0797006039934045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149705496421304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5403294747908736, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2060158767633444, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -7.0, -4.498324340697171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1772478362556233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.607755172446473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.098304462986223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.588063515815065, -7.0, -2.780677274433368, -4.545739957873238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.083860800866573, -7.0, -7.0, -4.317624643080059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.398807730203265, -4.4327208225983075, -7.0, -7.0, -7.0, -7.0, -7.0, -3.792444221943763, -7.0, -7.0, -3.953527748437723, -7.0, -7.0, -7.0, -7.0, -3.8736692927067944, -4.3082085802911045, -7.0, -7.0, -7.0, -7.0, -7.0, -4.102648055659481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.350151066780707, -4.389803762974429, -7.0, -7.0, -2.556887724520987, -3.190288589878837, -2.3737912227975784, -7.0, -3.57611089412084, -3.0068937079479006, -4.543745305703089, -7.0, -7.0, -2.769192637796977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3416323357780544, -3.357553719743082, -7.0, -2.9925150982919564, -4.679077957809192, -4.327490297721857, -7.0, -7.0, -7.0, -4.13484620892477, -7.0, -4.942390064106153, -3.6089536992758626, -4.059260404121731, -7.0, -3.660675788338524, -7.0, -3.8004421213362565, -7.0, -7.0, -7.0, -3.8573324964312685, -7.0, -7.0, -4.3044905277734875, -3.86494990015796, -7.0, -4.332771627853622, -7.0, -7.0, -7.0, -3.712481337801919, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5150344563229545, -7.0, -7.0, -7.0, -2.6051254000240065, -3.14674801363064, -3.0629578340845103, -7.0, -7.0, -3.483016420144132, -7.0, -3.2665282306934134, -7.0, -7.0, -7.0, -7.0, -3.2304489213782737, -3.4423229557455746, -7.0, -2.8870543780509568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8342299028516775, -7.0, -7.0, -7.0, -3.4951774803204194, -3.7875391867038415, -7.0, -2.594760752586463, -7.0, -2.8512583487190755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1026909129627085, -1.7542390929782323, -2.446270810437326, -7.0, -3.000434077479319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8109042806687006, -7.0, -7.0, -3.6721902511882525, -7.0, -3.8772129204488945, -7.0, -3.1063609088067503, -2.74350976472843, -7.0, -3.926548224635619, -7.0, -3.4137187650610787, -2.6299190355035416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4308809464528913, -3.0655797147284485, -2.952792443044092, -3.22219604630172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.314183339137378, -7.0, -3.6588219591356244, -3.9819997141298784, -3.7645497190644672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.896311834256591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8603380065709936, -7.0, -1.9614210940664483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.670987603010034, -7.0, -3.467608105583633, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9785913268200748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357677622792537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9020028913507296, -7.0, -7.0, -2.9835135272947686, -7.0, -7.0, -4.576646516274588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.257510583190615, -7.0, -7.0, -7.0, -2.5118833609788744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028286509426278, -7.0, -7.0, -7.0, -7.0, -2.9995654882259823, -2.780317312140151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.518632367678986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.059941888061955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.736476182027697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6755950563867463, -2.7091002815511667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5970366649776535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9273703630390235, -7.0, -1.8081144737610868, -7.0, -1.9160777731414746, -1.8512583487190755, -7.0, -4.7281832778243835, -7.0, -7.0, -7.0, -2.3483048630481607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6289552336843007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149394643032612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.515873843711679, -3.508035666557394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.177824971864682, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6118294794983736, -7.0, -7.0, -7.0, -3.1264561134318045, -7.0, -7.0, -7.0, -2.456366033129043, -2.8273692730538253, -2.6748611407378116, -7.0, -7.0, -1.8286598965353198, -7.0, -7.0, -7.0, -7.0, -2.7209857441537393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.752432609261474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7528164311882715, -2.6020599913279625, -2.659440781870318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8471612005780302, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7427251313046983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3384564936046046, -3.037027879755775, -2.359835482339888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.192328457926367, -7.0, -3.457211238355728, -3.7309436934277356, -7.0, -7.0, -7.0, -7.0, -1.6324875102811671, -2.2889196056617265, -4.067888806685398, -7.0, -7.0, -7.0, -7.0, -7.0, -0.9110008520221934, -7.0, -7.0, -3.3378584290410944, -7.0, -3.507817334539596, -4.979657617436882, -5.172328491819344, -2.447158031342219, -2.7912226592314022, -7.0, -4.610936831232662, -7.0, -7.0, -7.0, -7.0, -2.403120521175818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6044528640996845, -4.562816082229735, -7.0, -3.3536834439309335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.194514341882467, -7.0, -7.0, -7.0, -3.987889609997745, -7.0, -1.9777236052888478, -7.0, -7.0, -7.0, -4.326622564515655, -7.0, -7.0, -7.0, -7.0, -7.0, -3.426185825244511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.220108088040055, -7.0, -7.0, -7.0, -7.0, -3.409087369447835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9882615967287558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.001816613039424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.568201724066995, -7.0, -7.0, -7.0, -2.357934847000454, -3.595055089759304, -2.8721562727482928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.268694953562178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.280783177955887, -7.0, -7.0, -7.0, -7.0, -7.0, -1.904895787855206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3483048630481607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.2430380486862944, -7.0, -7.0, -7.0, -2.1760912590556813, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4523998459114416, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277357044047016, -7.0, -7.0, -3.1556396337597765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6096584282630335, -7.0, -7.0, -7.0, -4.05080494781346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.661481397843616, -7.0, -7.0, -7.0, -7.0, -3.66133934000604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.578312506832515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.084862139048422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3250536206057983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039929414108561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0253058652647704, -7.0, -7.0, -7.0, -7.0, -3.098643725817057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5080779604155277, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7505083948513462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.253378395419779, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1728363601227105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.075911761482778, -7.0, -3.0277572046905536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6970548922725746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7515870050823101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9107204299073945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.734500599204428, -7.0, -7.0, -4.070899440185869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.319595276245265, -4.749326556354335, -7.0, -7.0, -7.0, -3.062769949815128, -3.719497016610582, -7.0, -4.434233473644771, -7.0, -4.041629508475138, -7.0, -7.0, -7.0, -3.4945719842301988, -7.0, -7.0, -3.809184414431453, -7.0, -7.0, -7.0, -5.10234107375727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.229220943702738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7537362221750104, -7.0, -4.060584531360865, -7.0, -7.0, -7.0, -7.0, -3.7774268223893115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1923722835985116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.899181901036258, -7.0, -3.6797684752325557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.635724954531139, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.00060758706289, -7.0, -7.0, -2.886490725172482, -2.9398519178833737, -4.000650953629595, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8440797640919517, -7.0, -7.0, -2.5680060518483647, -7.0, -2.093655114075086, -1.5736450565133797, -2.4268364538035083, -2.9822712330395684, -7.0, -1.5535698523148875, -1.8122446968003691, -2.167317334748176, -7.0, -7.0, -3.3687206527020948, -2.5786392099680726, -7.0, -3.2417222253140894, -3.944383957640844, -3.8982000133541193, -7.0, -2.502597799680834, -7.0, -2.0539012308755322, -7.0, -7.0, -7.0, -7.0, -1.5640391252808956, -2.649334858712142, -2.776182127536158, -7.0, -3.021520064114033, -3.0043213737826426, -2.330210784571528, -7.0, -2.5969634343085812, -7.0, -7.0, -2.9379389434628047, -2.15896526038341, -7.0, -7.0, -7.0, -3.823409014892545, -2.2536610209467267, -0.9229848157088828, -3.3881012015705165, -7.0, -3.851556891005012, -7.0, -2.4358443659844413, -7.0, -7.0, -3.9361617409111576, -7.0, -2.263513634396092, -1.8308024488922192, -7.0, -7.0, -2.6024940688072813, -7.0, -7.0, -3.6259294927162946, -3.0149403497929366, -7.0, -3.7401257369657306, -7.0, -7.0, -2.766784515497859, -3.747023177451628, -2.2180281729591895, -2.178534241360947, -1.841984804590114, -7.0, -7.0, -4.275426536741639, -2.958085848521085, -7.0, -7.0, -3.715961582542224, -7.0, -2.8886474332825305, -3.588182036789483, -2.17070165581607, -7.0, -1.9150343529019414, -7.0, -2.371990911464915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0785172332278914, -7.0, -2.446640706109038, -7.0, -7.0, -7.0, -7.0, -2.8512583487190755, -2.8432327780980096, -1.360732888315757, -7.0, -7.0, -2.139485525448247, -7.0, -7.0, -7.0, -2.5422027824340283, -7.0, -7.0, -7.0, -2.9390197764486667, -2.377418341527436, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505579536394238, -7.0, -7.0, -3.2357808703275603, -2.7937903846908188, -2.4720246977002813, -7.0, -7.0, -7.0, -7.0, -2.6258838159722577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.830901668228616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.247013055017526, -7.0, -7.0, -7.0, -3.4766167808859505, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073315020560628, -4.6784091088214215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.520902558987522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6164755138885654, -7.0, -7.0, -7.0, -7.0, -4.068111617027303, -4.068593980976652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5674772960726626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.086003705618382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.305615149607283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.884153167842544, -7.0, -7.0, -7.0, -7.0, -4.095692282839792, -7.0, -4.169586273321913, -7.0, -7.0, -7.0, -7.0, -3.185588270541374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.314983145039124, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9094490469812664, -7.0, -7.0, -7.0, -7.0, -4.247334850657456, -7.0, -7.0, -7.0, -3.3679767852945943, -7.0, -7.0, -7.0, -7.0, -3.8913887648758014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9675947726718896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3675422735205767, -7.0, -4.092896010921856, -3.765765384928689, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.652922887567942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8669368177316397, -3.651765295390196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.023869501388332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.213331780706593, -7.0, -2.8249998911127463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.061444101412217, -7.0, -7.0, -3.7571681922142726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.072654217333034, -2.4978603240083523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3100982718562, -7.0, -3.0755916158353096, -7.0, -4.10064620014548, -3.55360298720468, -4.096736260462469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9671454827935495, -2.6194886947365785, -2.712272243588091, -3.4785304231255387, -2.2579884368367824, -3.4318460456987254, -1.4509619291538933, -2.013031599703814, -1.861943596297561, -4.06707085604537, -2.4037711497348146, -2.701968350796342, -1.793387832594586, -1.9802756676681168, -2.556423121371285, -2.541220482974948, -1.941180036600083, -2.8200468375055814, -1.5027776034972864, -3.0924950697064624, -2.0162155442381913, -2.5445533197545602, -2.3691462533580823, -2.595116585856597, -2.1940137903903576, -3.1547113111232354, -2.111149081998313, -1.1807785634456034, -3.5100756113539493, -2.6032146934613314, -1.7500945520027595, -2.0242625200121336, -2.014878638321159, -1.4610328412341147, -1.5622280530904329, -2.085699540165808, -2.2076401784239836, -3.273129932850311, -1.8267847498158771, -3.7114697818743276, -7.0, -3.7334380270910614, -3.4576204434805464, -4.227423895933663, -7.0, -2.9573007307447923, -7.0, -3.5868778622235498, -7.0, -7.0, -3.6662183637910806, -3.3226327116922234, -7.0, -7.0, -4.225128287982088, -7.0, -7.0, -7.0, -3.313526527244975, -4.135990846921625, -7.0, -3.628848527992802, -3.0741091006233097, -2.778358008055677, -7.0, -7.0, -4.072543985643648, -3.8735198880329156, -7.0, -4.217334766955894, -3.4900990050633047, -3.659973215296316, -7.0, -7.0, -4.032538179260007, -4.482173004713658, -3.811809515181134, -4.200905191684992, -3.872360255801214, -3.369907073710945, -7.0, -7.0, -3.2660552139992545, -3.450900876048348, -7.0, -4.133762384787346, -7.0, -4.125708925972653, -3.4103272455302913, -3.85959857764468, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2143884608174753, -7.0, -7.0, -4.078456818053293, -3.6634496339132876, -2.894418633356818, -2.9517883735590873, -7.0, -7.0, -2.9406409781201486, -4.07733156112899, -2.602578242561184, -4.093841766912128, -3.389024250763695, -4.128366953938082, -2.737808008704828, -3.2136837399839564, -3.0714524076988035, -3.496514518697745, -2.9081989694812487, -3.8594985581877763, -4.092685562937491, -3.143708561554825, -7.0, -4.074633618296904, -7.0, -3.1809855807867304, -7.0, -7.0, -2.957596646369117, -2.455685333041747, -1.3590553766801345, -3.766524381029522, -3.439679990515626, -7.0, -3.630665129596291, -7.0, -7.0, -7.0, -3.369679599559816, -7.0, -4.08292891501513, -7.0, -7.0, -2.6965417074824223, -3.1322596895310446, -2.7822445368764037, -7.0, -3.394171400415131, -4.071661123441788, -3.7970943426302544, -2.280074923864183, -7.0, -7.0, -4.0717347638797605, -1.4858740086009528, -2.8359099798631497, -4.0897638544916886, -7.0, -2.6486310215868576, -4.079868335175173, -2.411444049316433, -7.0, -3.0300701134793617, -4.077476919504343, -2.58937299251887, -2.354307185767559, -7.0, -2.7558748556724915, -3.787176992470554, -7.0, -7.0, -2.465118360281959, -7.0, -7.0, -3.2850507117969214, -7.0, -7.0, -4.222898472609422, -3.7925317619013077, -7.0, -7.0, -2.9454945000097643, -2.9259360194675317, -3.5181518769291116, -3.815079418399363, -7.0, -7.0, -2.6186726361479105, -2.912753303671323, -3.770557474850995, -2.5773933091957093, -2.5070376829046563, -3.2024883170600935, -2.9309490311675233, -2.6641717053619307, -3.156145156435762, -7.0, -4.090011024007147, -7.0, -7.0, -7.0, -7.0, -2.3893188704635238, -7.0, -7.0, -7.0, -2.699140282511854, -7.0, -4.08109515656134, -3.166836981760529, -4.071845201129409, -7.0, -7.0, -3.297760511099134, -3.300781756456363, -3.530583859645118, -7.0, -7.0, -3.245336376160865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.126699483839912, -3.2123651936445854, -3.3779130619562214, -7.0, -7.0, -3.2328055885720755, -4.068334313117254, -7.0, -2.689294534245845, -7.0, -7.0, -3.810534939790517, -3.2014578181199917, -7.0, -7.0, -7.0, -7.0, -7.0, -3.222224975159809, -7.0, -7.0, -7.0, -3.9872639541222354, -3.682190218984122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9863237770507656, -2.8417632701717763, -7.0, -7.0, -7.0, -2.953308577080214, -3.0236955527159197, -7.0, -7.0, -7.0, -7.0, -7.0, -2.19380739181105, -7.0, -7.0, -2.432927116124977, -2.8137092617421473, -7.0, -7.0, -7.0, -7.0, -3.9878002857518724, -7.0, -3.6592314328752287, -7.0, -7.0, -7.0, -3.6893532632422525, -7.0, -7.0, -3.9906052114239197, -7.0, -7.0, -3.205835671581546, -3.3790404105101395, -7.0, -3.5173278822943734, -3.391552566610928, -3.9835360816029923, -3.985965078304871, -7.0, -7.0, -7.0, -7.0, -2.5152715769643432, -2.557085936526085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.510455640007325, -7.0, -7.0, -7.0, -7.0, -7.0, -3.099097680917744, -7.0, -7.0, -7.0, -7.0, -4.059108817913594, -3.001863462692524, -7.0, -7.0, -3.8125122842899826, -3.5064599319861283, -2.8431882693117134, -7.0, -7.0, -7.0, -7.0, -3.5073610516826004, -3.9826781933834843, -3.6997943809416243, -3.9916690073799486, -7.0, -3.14515199291356, -7.0, -4.005395031886706, -1.9755258014718424, -3.1528995963937474, -3.5083052193633395, -3.6813769331998136, -7.0, -7.0, -2.551224026542675, -3.985785617772605, -3.5068206042642256, -7.0, -3.7626035495668035, -7.0, -7.0, -7.0, -3.1014893069102683, -7.0, -7.0, -7.0, -3.984707294482673, -3.2274153207496505, -3.9847522781154137, -7.0, -3.0948203803548, -3.993920958801287, -2.801091739253345, -3.6864575104691117, -7.0, -3.6844413876256064, -3.1521572498058466, -2.937893850328434, -3.9846623061901068, -2.990236366413815, -1.7954416809560518, -3.985067033150501, -3.696749435201623, -7.0, -3.4076967576338975, -7.0, -4.01674092728626, -3.546131204914049, -7.0, -7.0, -3.2095596927466623, -7.0, -7.0, -7.0, -2.184998828988206, -3.6808791744268112, -3.6808791744268112, -7.0, -7.0, -7.0, -2.770545198148703, -3.301572524756275, -2.905508053677255, -3.0519667310983327, -7.0, -7.0, -7.0, -7.0, -3.301160264469208, -3.1231980750319988, -3.7165458727270932, -7.0, -7.0, -7.0, -3.328501922685259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.013005850015737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0816644831892415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5520398850766086, -7.0, -2.9409356881329756, -7.0, -7.0, -1.919244045161112, -3.383546091724474, -2.5212252826767023, -3.2205874658721743, -2.326466600325224, -2.683732992153464, -3.719248398447946, -3.517943279436479, -7.0, -7.0, -7.0, -3.9871297676598974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.857407888234583, -7.0, -3.1063609088067503, -7.0, -3.6848004941944112, -7.0, -7.0, -3.5161385767170743, -7.0, -7.0, -7.0, -2.714901024547078, -3.3898303126080624, -7.0, -7.0, -3.983400738180538, -3.9819997141298784, -3.9825425823029432, -7.0, -7.0, -7.0, -2.7984779980639836, -3.231681928224919, -2.6388677870923787, -3.1277207308231225, -7.0, -7.0, -3.9838066419784153, -2.722936853279324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.078581487279682, -7.0, -7.0, -7.0, -3.9843922785242656, -7.0, -3.208351765003097, -7.0, -3.991447598003803, -7.0, -7.0, -2.959078102052902, -2.56054423863114, -7.0, -7.0, -3.9845723156216324, -3.577912868954951, -3.0969968632197054, -1.979089800538877, -7.0, -2.8542101251778975, -7.0, -7.0, -7.0, -3.529654887137106, -3.2337996156757547, -3.1710574719371976, -3.5585885831081994, -7.0, -7.0, -7.0, -7.0, -3.9887372752888, -3.5283166683311595, -3.695875515031685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.68497993618928, -2.7589839445726563, -7.0, -7.0, -3.210541452166173, -2.5751090851604386, -3.688642251959892, -3.9831299247347003, -3.3339076675505632, -7.0, -7.0, -7.0, -3.986368593570273, -2.580558430866771, -3.1537713238680873, -7.0, -7.0, -7.0, -7.0, -2.413575895419909, -3.5414128157085205, -7.0, -7.0, -7.0, -4.025715383901341, -7.0, -7.0, -7.0, -3.694517453811156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.998302940098541, -3.9865478134147243, -3.787129727467307, -2.9953426418873272, -3.2627534503405666, -7.0, -2.7000440709473397, -3.129142823317654, -3.718127852075301, -7.0, -3.9995220131289035, -7.0, -2.9339510299983784, -3.4812275779993205, -7.0, -7.0, -7.0, -7.0, -3.7025166974381505, -7.0, -7.0, -7.0, -7.0, -3.6850696293911485, -2.6068629883857906, -7.0, -7.0, -2.516724197586558, -3.0900449904924545, -3.0145827585978444, -3.2215446370271956, -2.2467022836522106, -2.6107741960383892, -1.6975930787551952, -3.10462618871794, -1.9676457541126968, -7.0, -1.9609813912022167, -2.8855280531785423, -2.2418676805830136, -2.3232310470421824, -1.9223833109680446, -3.3065016159437794, -2.429687696095396, -2.1964995291548655, -2.5757310526056134, -3.016989838073532, -3.638938294887355, -3.442207709868362, -2.9700109249911373, -2.2178339146037684, -2.2465275443812533, -4.07359005876739, -2.583325687678573, -2.643847310299714, -4.037824750588342, -2.151101406384551, -2.115416198356651, -2.2977835894049323, -3.1240148788874076, -2.4164257492763435, -2.24447392037623, -3.425909012675203, -3.3146465641692635, -3.0386064602955156, -2.131062516186049, -2.835714052581448, -4.023663918197793, -3.4928813974244086, -2.066692567004262, -2.056726239579111, -4.004493337547275, -3.035724574911353, -7.0, -2.3266820975646683, -3.411142505502048, -3.3432115901797474, -2.81888541459401, -2.740776106452548, -2.9830847727377883, -7.0, -3.168291188851266, -3.5571060060508883, -7.0, -7.0, -3.438893790829892, -3.463482379191176, -7.0, -2.2475481260755785, -2.7115288124910117, -3.783996977708136, -7.0, -7.0, -7.0, -1.8277856781648085, -7.0, -4.509336958017644, -2.6635709651936, -3.7162746928981742, -2.9864582127373067, -3.1020905255118367, -3.9893163049899516, -3.9747419045009504, -2.8913383039652625, -3.0264389722525658, -3.154694414148935, -2.625624754276346, -2.935003151453655, -3.9926418698783976, -2.541412229580903, -1.5044884175991484, -4.018534070428183, -3.3386722591208517, -3.725012725341157, -3.7525477914613012, -3.223625716693796, -3.2142476081039772, -3.5150344563229545, -7.0, -7.0, -4.00060758706289, -2.2143884608174753, -7.0, -3.6889090176205546, -1.9351712546033841, -1.8929917203032336, -1.394212816864615, -1.6306340876669476, -0.9756270071664029, -3.1475438298641407, -7.0, -1.5979729679705894, -2.401533089075539, -1.8219474187922904, -1.9815878426831302, -1.7459036485794046, -2.4858364866178744, -1.5290888052036686, -1.9976428464804807, -1.5938584784075553, -2.134629995670311, -1.9969492484953812, -1.3601736010625614, -2.7117650624814313, -2.0043213737826426, -3.098903186831587, -2.6104383466072485, -7.0, -1.485258562995629, -3.0419187839286823, -2.6407975338258964, -2.063572160369598, -1.1276063051325063, -1.282364597847086, -3.0292484623758416, -1.9665580317819267, -3.1526377365836415, -2.5679183080896295, -3.145684651788881, -3.9825877907016625, -2.986637395610154, -1.6529485393502215, -3.5149460053080044, -2.308324802806524, -2.3365909505522704, -3.9847522781154137, -1.4669544236323824, -2.065848845441796, -1.4957483370250002, -7.0, -2.094615974413513, -2.5554079701072574, -2.026191965559533, -1.8620822651944848, -2.9532323686103794, -2.907187347522648, -2.8418955262504215, -2.4245483075166123, -1.2149977822221742, -2.4055171069763763, -3.1032904715577496, -1.4925138875642157, -2.9188600183158036, -1.5384947096017696, -2.0341302127096714, -1.633125305538721, -1.9101040122984183, -2.1270609988103453, -2.5669037499121905, -3.9880682033926353, -1.7166238530729816, -2.4378362309303223, -3.2931414834509307, -2.3504242384550236, -1.6379613380280913, -3.2833464653560465, -3.2868156134365862, -1.620945335488336, -2.8614917388391654, -3.159653115576744, -2.2216390395875636, -3.060613910605181, -2.906981153228854, -2.455225653090252, -1.3873070326139714, -1.5122123719657488, -2.2795017397802226, -2.16144786514103, -7.0, -3.98344585734134, -1.4452522466870956, -1.6106448470319037, -2.3946312526633426, -0.9982889935990089, -1.4357087770442, -1.6844576212664344, -1.4170531363008534, -2.069859983248331, -1.8099139515895757, -3.209112703738592, -2.5776194396564844, -3.6860102913152857, -3.284791555950146, -2.532973908129206, -3.0623312368297984, -1.930215397978364, -3.984617313236748, -2.58798021145153, -3.9823617016331467, -1.2349774943255392, -3.9859202201235675, -3.045540289014811, -3.3852933974078314, -2.811976944336954, -2.9213395948885608, -2.9479681286180224, -2.156228362582564, -1.601831355112151, -2.3593800878746345, -3.403549454032318, -3.686948920211501, -1.9155036320177758, -3.681467373533731, -7.0, -7.0, -3.039237809630672, -2.628788608010636, -3.3923891456860735, -2.178069395892812, -1.9216161842344557, -2.858041548804122, -2.6448412733000293, -7.0, -2.0907774555677956, -3.1394292733295357, -3.681467373533731, -2.1949404664294887, -3.9831750720378127, -7.0, -2.370625709491545, -1.9146836013030524, -3.169758380030249, -3.681241237375587, -7.0, -3.150537154583293, -3.9825877907016625, -1.887624160740319, -3.681828946648094, -7.0, -3.9820449790714902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659193358577049, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45484486000851, -2.7831886910752575, -7.0, -7.0, -7.0, -3.9028727854460796, -7.0, -7.0, -7.0, -3.701717616751476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.258098269990316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.337079711800931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.104572459545332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8027737252919755, -7.0, -7.0, -7.0, -7.0, -3.5529924979879306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5728716022004803, -7.0, -7.0, -7.0, -7.0, -2.3873898263387296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8549130223078554, -4.042102768037303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.851869600729766, -7.0, -7.0, -7.0, -7.0, -2.863322860120456, -7.0, -7.0, -7.0, -2.655138434811382, -3.1581739553083064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0442783733957133, -4.099058789068055, -7.0, -7.0, -7.0, -3.958635543065691, -7.0, -7.0, -7.0, -7.0, -7.0, -2.507855871695831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.378851946448881, -3.4176377396522297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0025979807199086, -7.0, -7.0, -7.0, -3.5988269699243727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4727564493172123, -2.7708520116421442, -7.0, -7.0, -2.1986570869544226, -7.0, -7.0, -3.8253774273163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.929418925714293, -7.0, -7.0, -7.0, -7.0, -3.2391418455233265, -7.0, -7.0, -2.7573960287930244, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3909351071033793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6444385894678386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4638929889859074, -7.0, -7.0, -2.833147111912785, -2.9190780923760737, -7.0, -7.0, -7.0, -2.060697840353612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6857417386022635, -7.0, -7.0, -2.6910814921229687, -7.0, -7.0, -7.0, -7.0, -2.5735045308749096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9978230807457253, -2.525044807036845, -2.2522460504731185, -2.0119931146592567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9514994179522764, -7.0, -7.0, -7.0, -4.6071975872368265, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7267272090265724, -7.0, -3.1152775913959014, -7.0, -3.0729847446279304, -7.0, -2.984077033902831, -7.0, -4.620989224734163, -7.0, -7.0, -7.0, -2.303196057420489, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.58798021145153, -7.0, -3.0633333589517497, -3.544873843234801, -2.539912084579118, -7.0, -2.4608978427565478, -7.0, -2.358886204405869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7726883546821415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7685212664313505, -7.0, -3.2618033722622637, -3.7348798027926278, -7.0, -7.0, -7.0, -3.9409644934927996, -2.2596373105057563, -1.9701280053765742, -3.467423102606649, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.353743170753935, -4.678841475892305, -5.1724715722890915, -1.9071425310031405, -2.1963604423536847, -7.0, -4.310406519601563, -7.0, -7.0, -3.6033609243483804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.855761372339948, -7.0, -2.323252100171687, -4.303930064275368, -4.262344282872842, -7.0, -4.031176105055047, -7.0, -7.0, -7.0, -7.0, -7.0, -2.194514341882467, -7.0, -7.0, -7.0, -3.6889090176205546, -7.0, -2.3643633546157306, -7.0, -3.3756636139608855, -3.2114765203615074, -7.0, -1.4998984695692326, -7.0, -3.177969136009376, -7.0, -3.673768164267726, -1.893484346218486, -2.6026025204202563, -7.0, -7.0, -3.216957207361097, -2.956328539041934, -7.0, -7.0, -7.0, -7.0, -7.0, -2.028706779135174, -1.656417653650555, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6408688495876156, -4.74149826548613, -7.0, -7.0, -1.7741112725819037, -7.0, -1.327058280527384, -7.0, -1.6232492903979006, -2.4143046881283317, -7.0, -2.814913181275074, -3.1192558892779365, -1.906694111260769, -7.0, -7.0, -7.0, -7.0, -7.0, -1.1832698436828046, -2.5571060060508883, -7.0, -7.0, -2.0, -1.4300212762834783, -7.0, -7.0, -7.0, -7.0, -7.0, -1.968482948553935, -2.852155039111322, -2.0842186867392387, -7.0, -7.0, -7.0, -7.0, -1.8948696567452525, -3.710540447933297, -2.904715545278681, -2.1409268419924303, -1.8750612633917, -7.0, -2.3010299956639813, -1.413299764081252, -2.483861490097456, -2.048108713045591, -7.0, -2.941677035870691, -2.6780629049743454, -2.7354392032514814, -2.3636119798921444, -3.426673888021373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2317243833285163, -7.0, -4.313086475517802, -7.0, -3.6563378127675463, -3.2814878879400813, -3.283225823810244, -2.1903316981702914, -7.0, -1.290034611362518, -7.0, -1.6754450381412995, -2.2157256645575676, -7.0, -2.080987046910887, -2.2013971243204513, -2.285557309007774, -3.247512964801066, -2.130333768495006, -7.0, -7.0, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -7.0, -1.949999542859922, -1.4800069429571505, -2.9425041061680806, -7.0, -7.0, -1.9934362304976116, -7.0, -7.0, -2.369215857410143, -2.6644539285811577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2780673308886628, -2.3242824552976926, -7.0, -3.1702617153949575, -7.0, -2.978180516937414, -7.0, -7.0, -1.8459834521087115, -7.0, -7.0, -7.0, -2.66838591669, -7.0, -3.0425755124401905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7635309391043776, -7.0, -7.0, -7.0, -3.2119210843085093, -2.532924157916436, -2.733999286538387, -3.1486026548060932, -7.0, -7.0, -7.0, -2.71230299905154, -3.0701302598602904, -7.0, -2.339699822486733, -2.7983994992871044, -7.0, -7.0, -7.0, -2.7645497190644672, -7.0, -7.0, -4.568647527350753, -2.4463818122224423, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0711452904510828, -7.0, -3.383994789441733, -3.0170333392987803, -3.39824873054884, -7.0, -7.0, -2.795880017344075, -7.0, -3.0310042813635367, -7.0, -3.022840610876528, -7.0, -7.0, -2.8771793076256973, -2.4891440150652615, -3.0293837776852097, -2.5658478186735176, -7.0, -7.0, -7.0, -3.0257153839013404, -7.0, -7.0, -7.0, -7.0, -2.992553517832136, -7.0, -3.0194184346331205, -7.0, -7.0, -3.0261245167454502, -7.0, -7.0, -2.8606374167737547, -7.0, -7.0, -3.637689819118401, -7.0, -3.070037866607755, -7.0, -7.0, -7.0, -7.0, -3.0191162904470725, -7.0, -7.0, -3.079904467666721, -2.908753019184534, -2.59402403573142, -2.28362424432417, -7.0, -2.630041469090016, -2.654497409629463, -7.0, -2.998695158311656, -2.996949248495381, -7.0, -7.0, -7.0, -3.0141003215196207, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0940050223646494, -7.0, -7.0, -2.7607993116307177, -2.5407464642438433, -2.1378717791808004, -3.0199466816788423, -7.0, -2.8312296938670634, -7.0, -2.7091285660594253, -7.0, -7.0, -7.0, -7.0, -2.9573678084315276, -7.0, -2.7110687225172314, -3.083860800866573, -7.0, -3.1280760126687155, -7.0, -3.5124960502155544, -7.0, -2.9501213475113732, -3.289142835932333, -7.0, -7.0, -2.445993181787647, -2.298489193286698, -7.0, -7.0, -3.3978097007803054, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7043065414442804, -3.0560150335589764, -2.84248442441157, -3.1908917169221698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.256958152560932, -7.0, -7.0, -7.0, -3.5020855592260456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.901450307917467, -7.0, -7.0, -7.0, -3.030599721965951, -7.0, -7.0, -7.0, -2.9206450014067875, -7.0, -3.301355594441124, -7.0, -3.2392994791268923, -2.6232218372873692, -7.0, -3.149834696715785, -2.288760085189078, -7.0, -2.8943160626844384, -7.0, -2.806519134080705, -3.0692980121155293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2337424492627256, -7.0, -2.3628054903717945, -7.0, -2.7287594751678745, -7.0, -7.0, -3.0941215958405612, -3.004751155591001, -7.0, -7.0, -3.1527468640264606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.024485667699167, -2.8692317197309762, -2.6087933739869307, -3.3087777736647213, -3.2650476611516357, -7.0, -2.5352941200427703, -2.709269960975831, -2.6881230714056485, -7.0, -7.0, -7.0, -3.020775488193558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0211892990699383, -7.0, -7.0, -7.0, -7.0, -2.7327956982893293, -7.0, -7.0, -7.0, -7.0, -3.0236639181977933, -7.0, -2.5248595673317964, -7.0, -7.0, -7.0, -2.356185260565036, -2.367355921026019, -2.548926578970604, -7.0, -3.8094519693064504, -7.0, -7.0, -7.0, -2.7381637253943056, -2.5245259366263757, -2.7730546933642626, -2.1160996371702, -7.0, -7.0, -7.0, -7.0, -7.0, -3.182414652434554, -2.2725046516758276, -7.0, -3.0842186867392387, -7.0, -7.0, -7.0, -7.0, -2.730378468587643, -2.5863372070651294, -2.7350663496842955, -7.0, -3.0588054866759067, -3.3600777430711926, -7.0, -7.0, -3.335858911319818, -7.0, -7.0, -2.4235735197327357, -7.0, -2.719952447254438, -2.357934847000454, -7.0, -7.0, -2.945222316635341, -7.0, -3.739011358223984, -2.0248235837250323, -7.0, -7.0, -7.0, -7.0, -2.2180684590826294, -7.0, -7.0, -3.111262513659065, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0111473607757975, -3.131297796597623, -2.734399742520567, -3.989983458301399, -2.8166389448984614, -4.434350105015772, -7.0, -2.385606273598312, -3.855834011006842, -2.2617385473525378, -7.0, -2.536242706838319, -7.0, -2.632204133050827, -3.0679383299743406, -7.0, -3.009450895798694, -7.0, -7.0, -2.467756051244033, -7.0, -7.0, -3.028571252692538, -2.8095597146352675, -2.2508264548251344, -1.9883080726752824, -7.0, -7.0, -3.626247954462277, -4.151530727012073, -7.0, -7.0, -4.1401936785786315, -7.0, -3.462397997898956, -4.411602872517545, -2.774501097901883, -7.0, -3.217634323191137, -3.9819544444699737, -4.186673867499745, -3.962856197781499, -2.944176243511598, -7.0, -4.402433346219312, -3.3169324704744563, -7.0, -4.139847614646311, -7.0, -4.803221467457776, -7.0, -3.375332931974451, -7.0, -7.0, -4.633417953284989, -4.462308134571691, -7.0, -3.179095359718127, -3.4641665133315516, -4.112906490253314, -3.9551583869257936, -7.0, -7.0, -7.0, -7.0, -3.665318271278418, -4.402862957968563, -3.6962689967455327, -2.8124676978229344, -3.978602732660473, -3.0187628928164694, -3.015778756389041, -7.0, -4.081239260911698, -7.0, -3.2514557054289663, -3.3592661646067485, -2.780677274433368, -7.0, -3.6869935662646784, -3.289514631590605, -7.0, -3.4872091017181868, -7.0, -3.076640443670342, -7.0, -4.207715133805567, -7.0, -7.0, -3.1133118672541786, -3.2348244927709917, -4.873768037582299, -7.0, -7.0, -7.0, -3.4734869700645685, -7.0, -7.0, -2.9827233876685453, -7.0, -3.0425755124401905, -3.12393326759676, -4.0377451292695925, -3.993414184532892, -3.365300748637987, -2.4144719496293026, -3.3280736545131555, -3.1384749461121815, -2.69397805877852, -7.0, -2.6525863391471938, -3.3683333807516376, -3.261976191397813, -3.56191591574931, -7.0, -3.131137273778607, -3.680698029697635, -3.7429214225992955, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9351712546033841, -2.3643633546157306, -7.0, -2.645422269349092, -2.134093917368313, -2.3040677598990422, -1.7746346766608063, -1.6953357196809247, -7.0, -2.112076246921947, -2.6351485136976085, -2.6706692894713875, -0.7333389059672814, -1.8512583487190755, -3.1441069730493227, -2.655550023357655, -2.6090605499300867, -2.2405492482826, -3.2796669440484556, -2.480581786829169, -1.8904675944331004, -7.0, -2.7997998773461115, -2.0407848551333188, -1.9326911474206108, -7.0, -2.2953934631978936, -7.0, -2.721398375521505, -3.179178229209794, -2.5159719117897525, -2.838032418536004, -3.0149403497929366, -2.714469471659548, -1.371938715745616, -3.33665982345442, -1.761927838420529, -7.0, -2.1943160791618803, -1.3337598790079583, -3.084576277934331, -2.1151564661735565, -3.3757550347552243, -2.1698423097786796, -2.43985879260072, -2.494711025205263, -1.7102335465419447, -2.296665190261531, -3.2430380486862944, -1.7207497786592607, -1.461906714495997, -3.268285379752997, -2.6317818729476508, -1.8001508005876772, -1.9360495046133057, -7.0, -2.004996554372444, -2.7382518980637593, -7.0, -3.133858125203335, -1.870208760597288, -2.1343129127724483, -1.996886764575857, -1.9922990706346086, -1.9600628615851772, -3.1622656142980214, -7.0, -3.049605612594973, -2.7721749608246142, -2.7269987279362624, -2.3046341199328064, -1.0937228602657776, -2.148876744106389, -3.000434077479319, -1.716003343634799, -1.2642147757264757, -1.4762517960070336, -2.576341350205793, -1.7048962149658333, -2.124604535374491, -2.264320634080703, -2.1918573243828754, -2.0568329661286775, -2.3139482984020416, -2.8026027095457597, -2.7801372190494913, -7.0, -3.00774777800074, -2.925424205107909, -2.611988688083979, -2.149988456491476, -2.1615343667196383, -2.4574727253433495, -2.0393097340099327, -2.367355921026019, -2.7541516790028147, -2.669316880566112, -1.8305084739693955, -3.2182728535714475, -2.25927524755698, -7.0, -1.9138138523837167, -1.3549499934509917, -3.264463634204881, -7.0, -2.0003946338135266, -7.0, -1.909139839001463, -2.3283796034387376, -7.0, -7.0, -2.5816842319562445, -2.852479993636856, -7.0, -2.8020892578817325, -2.0408659483054157, -3.1652443261253107, -2.2770358881721102, -2.3475251599986895, -2.3178022622275756, -2.9995654882259823, -7.0, -3.0, -3.1000257301078626, -2.236968894270856, -3.104145550554008, -2.268464994147538, -2.906765889540728, -7.0, -2.356790460351716, -2.6954816764901977, -2.6357708836729112, -2.2405492482826, -2.9995654882259823, -2.8180278418592564, -7.0, -7.0, -2.4523615331345736, -3.2643455070500926, -7.0, -7.0, -7.0, -2.6368220975871743, -2.6976651626476746, -3.6413749451921253, -3.003029470553618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058644255742717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2119210843085093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0442652999153195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7668588110214176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.104726044109975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6947806360120614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.884722557505038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.867820908045573, -7.0, -7.0, -3.827304641089735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0427723374976736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7568895628675167, -5.150053019367417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.994844849553398, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0962145853464054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.101317377184387, -7.0, -4.198821977603206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.608964385524357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.496614877996609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9607560909017727, -7.0, -4.956234082127034, -7.0, -7.0, -4.547134479806692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.920801381825654, -4.271586064027271, -7.0, -7.0, -7.0, -2.8717674683517753, -3.4119562379304016, -7.0, -3.479127237417261, -7.0, -3.5613399414589013, -4.5768249102949845, -4.6578013573335815, -4.5026728775022065, -3.6974734557764086, -4.281873856870123, -4.391358602487403, -3.5072871015801907, -3.5251312252008757, -4.61028744666005, -7.0, -4.8010433637188035, -7.0, -4.007939712514268, -3.175040443810621, -7.0, -4.626945698847907, -4.151614972016013, -3.2216749970707688, -3.475004239923217, -3.1845623877377895, -4.281862509737461, -7.0, -4.181872159010333, -3.8048887446223913, -7.0, -7.0, -7.0, -3.6926883243864563, -7.0, -7.0, -7.0, -3.3067894674956784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.843793198325913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.755074101758472, -4.378543247161644, -7.0, -7.0, -7.0, -7.0, -4.312156191475623, -7.0, -7.0, -3.620864475265121, -7.0, -7.0, -3.6712654329471586, -7.0, -7.0, -7.0, -7.0, -7.0, -3.559577489376628, -7.0, -7.0, -4.606757447446635, -3.6109202833939147, -7.0, -4.6349606700606385, -7.0, -7.0, -7.0, -4.018325945402921, -7.0, -7.0, -7.0, -2.886490725172482, -4.078456818053293, -1.8929917203032336, -7.0, -2.645422269349092, -7.0, -2.254237237671701, -2.917199067185785, -1.6374182465921117, -7.0, -7.0, -2.8881092595069315, -2.519171463821659, -2.9386830705406757, -3.0515383905153275, -1.5658478186735176, -2.2875981702912034, -2.107672395049396, -1.9949034429806192, -1.6866049133919572, -2.05482190018818, -2.946452265013073, -1.6457354385455876, -2.5599066250361124, -1.9145194487727255, -7.0, -2.2900346113625183, -7.0, -2.3188219281371274, -2.835056101720116, -2.622214022966295, -2.8793458839494313, -2.484528800490016, -2.695741910151855, -2.119475840906798, -2.158894389873804, -7.0, -2.065321112032189, -7.0, -7.0, -7.0, -2.1594722066517003, -7.0, -2.61066016308988, -2.768215121441203, -7.0, -2.1405589996233214, -2.66838591669, -1.8142046196810313, -7.0, -2.4424797690644486, -2.403120521175818, -2.4931093601037926, -3.2556945307314797, -2.814913181275074, -7.0, -7.0, -3.1108140939166935, -1.9641248816751649, -2.7024305364455254, -2.660865478003869, -1.3936726770623664, -7.0, -2.735869743544286, -2.28668096935493, -2.381853188778583, -1.9118231942831303, -2.128722284338427, -3.232945312745227, -7.0, -2.820037171803748, -2.0764583877121514, -7.0, -2.3667341679034988, -1.999542607138445, -7.0, -7.0, -2.616160312847583, -7.0, -7.0, -3.2566375808675403, -7.0, -7.0, -7.0, -2.00851982868854, -2.0805709895756306, -2.677378796959058, -2.4026297928954663, -7.0, -7.0, -2.4855585296880656, -2.074217826516075, -1.7906369619317033, -1.6203171430538974, -2.66149717917983, -1.5929166118880926, -2.2705600108732593, -2.807196660710947, -2.3893137784594445, -7.0, -2.528488190640618, -7.0, -7.0, -7.0, -7.0, -2.6364878963533656, -7.0, -2.6857417386022635, -7.0, -2.3599578188144723, -7.0, -2.5826314394896364, -7.0, -2.4073909044707316, -7.0, -2.12057393120585, -2.0170333392987803, -2.0285712526925375, -2.4029297482837086, -7.0, -7.0, -2.235107414899873, -2.5599066250361124, -7.0, -7.0, -7.0, -2.2863067388432747, -7.0, -2.565211888976517, -2.6273658565927325, -3.4840149626675627, -2.226170123398999, -7.0, -2.533299860933881, -2.3180633349627615, -7.0, -3.0261926680962223, -7.0, -7.0, -2.737987326333431, -2.526626414247843, -3.04766419460156, -2.553883026643874, -7.0, -7.0, -7.0, -2.6685023963693637, -2.569373909615046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7172405854118513, -7.0, -7.0, -7.0, -7.0, -3.325720858019412, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5831551591574486, -7.0, -7.0, -3.1718726561396826, -3.110572876853564, -7.0, -7.0, -7.0, -7.0, -3.3664229572259727, -7.0, -4.105442054801695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3780343224573315, -7.0, -7.0, -7.0, -4.375517300649672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.761551988564182, -2.401154272285065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.422589839851482, -7.0, -7.0, -7.0, -7.0, -3.6276730317666157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.269139196792179, -7.0, -3.3774883833761327, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8666810784419927, -7.0, -7.0, -7.0, -7.0, -3.1080573737838537, -7.0, -3.2657237281336005, -3.4095950193968156, -7.0, -7.0, -7.0, -7.0, -3.052886235256382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8318697742805017, -7.0, -7.0, -7.0, -7.0, -3.4379090355394983, -3.353531559077762, -7.0, -3.4095950193968156, -7.0, -3.4323919847799242, -3.3654879848909, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0166454031569487, -7.0, -7.0, -7.0, -4.275434214468909, -7.0, -7.0, -3.4991369945373827, -7.0, -7.0, -3.3679147387937527, -3.0811672147134725, -7.0, -7.0, -2.8725447293769673, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0535905832619945, -7.0, -7.0, -3.4412236742426123, -7.0, -7.0, -7.0, -7.0, -3.4171394097273255, -7.0, -3.4795753101749884, -7.0, -7.0, -7.0, -4.143826390839561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.467505773250982, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8698182079793284, -7.0, -2.9224895437705523, -7.0, -7.0, -2.182519056204964, -2.880432465023419, -2.815577748324267, -2.711807229041191, -2.8220045340895257, -3.1427022457376155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1409268419924303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3895204658463776, -7.0, -7.0, -7.0, -2.7616057013194175, -3.384353414137506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9523080096621253, -3.453471233722936, -3.4217684012069243, -4.456696942683218, -7.0, -7.0, -7.0, -3.4276483711869328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4429274953741063, -7.0, -7.0, -7.0, -7.0, -7.0, -3.061452479087193, -7.0, -7.0, -7.0, -7.0, -3.3478177127089124, -2.705619383455026, -7.0, -7.0, -7.0, -7.0, -2.638156336676239, -2.6065710271626346, -7.0, -3.4102709642521845, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4761067168401913, -2.8394780473741985, -7.0, -7.0, -7.0, -7.0, -3.3703280077795106, -3.436480695009495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8257042442466873, -7.0, -7.0, -7.0, -3.180545705995641, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4055171069763763, -3.3604040547299387, -1.8555864516285612, -2.4560284548128597, -7.0, -7.0, -7.0, -7.0, -3.8038768673049046, -7.0, -7.0, -7.0, -7.0, -7.0, -3.433449793761596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9890634721344744, -7.0, -3.500785172917456, -3.9671734229555398, -2.784902449886655, -7.0, -7.0, -7.0, -3.1656893760176175, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4291060083326967, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9608653102315436, -7.0, -7.0, -2.2761896045517336, -4.063776061059595, -7.0, -7.0, -3.982693258667742, -2.4318995994914934, -2.844725627973226, -7.0, -2.722261297472855, -7.0, -2.762542164705617, -3.8985057855343586, -3.896838415155804, -3.5606371457834687, -2.4753609954591043, -4.020796188104522, -3.8205954965444904, -2.58609420577366, -7.0, -3.930470177808289, -3.7000110623221123, -4.330187096366115, -7.0, -3.0579771412316132, -3.2373237705991307, -7.0, -3.86722188785143, -4.480064461595988, -7.0, -2.8567206159793326, -2.5208810563217763, -4.3023201036621055, -4.28443073384452, -3.4532418730194783, -3.215848976111454, -4.28517460125202, -4.122445256281956, -3.306996561743261, -3.1438198253427676, -4.047274867384179, -3.022290870952613, -3.5148907142742933, -1.7258668430871862, -2.547129786025174, -7.0, -7.0, -7.0, -3.7891457299039937, -3.4298060925892933, -3.0823065450398275, -3.359898693821246, -3.7215908027407387, -7.0, -7.0, -3.8664645659717403, -7.0, -7.0, -7.0, -3.9380441425719126, -3.0243830340033324, -7.0, -2.0656802408725516, -3.608517119395359, -4.576226137449605, -7.0, -7.0, -3.376211850282673, -3.4015424438972985, -7.0, -4.474857031317561, -2.699042380718472, -3.349309912127894, -3.3641756327706194, -2.814180981040187, -7.0, -4.320374802023668, -3.2463754640035085, -3.2065560440990297, -3.737907923374639, -2.3176080294298718, -7.0, -3.386320573894046, -3.4217170096674763, -3.1388663510447565, -7.0, -4.175994738445905, -7.0, -7.0, -3.175946470095546, -3.4868199647800893, -2.6051254000240065, -7.0, -7.0, -2.9398519178833737, -3.6634496339132876, -1.394212816864615, -3.3756636139608855, -2.134093917368313, -2.254237237671701, -7.0, -1.5934332447899435, -1.1330596427539097, -3.3884564527002667, -7.0, -1.961641800198452, -2.3963737275365067, -2.5385658797413004, -2.1890024502912038, -1.6919651027673603, -2.755548195648138, -2.174466858886018, -2.1097472377132287, -1.080468045453941, -2.2332782113971383, -2.2858786515913603, -1.802107049908688, -2.8652520716525895, -2.2838663484734685, -3.123851640967086, -2.606560492554639, -7.0, -1.4664823852680764, -3.403120521175818, -3.3550682063488506, -2.6507791752811687, -1.9682891363042425, -2.272448705188279, -7.0, -2.6805369487066266, -3.1072099696478683, -2.7496075021373283, -2.7777891874348675, -7.0, -2.5848963441374497, -1.8400095309250863, -2.90687353472207, -2.1182647260894796, -2.659769972970185, -7.0, -1.6200260717887942, -2.664328518680805, -1.7334265652607361, -7.0, -2.7711463488149852, -2.5244888507220873, -2.585883537734565, -2.6614414777862088, -2.550577745255679, -3.063145637106638, -2.8943160626844384, -2.9786369483844743, -1.7650828574593154, -2.6088315520434717, -2.358886204405869, -2.1093336632777238, -2.8083797948823843, -2.0870769671078984, -2.2101847054724066, -2.1575834883314, -2.2820815443017564, -2.578311687718837, -3.5398703234865425, -7.0, -2.2697586553882063, -2.5440680443502757, -2.9077695418108918, -2.4492211919059925, -1.832745392146821, -7.0, -7.0, -2.148632029792198, -2.5426698494966873, -2.588191645180769, -2.60404595999381, -2.772028165324855, -2.8293956772820934, -2.2332947998687853, -1.70372115992702, -1.7107859199198063, -2.367006294428387, -1.9592860652751163, -7.0, -7.0, -1.9687411114278788, -2.1558256040617167, -2.5244888507220873, -1.3877066784034473, -1.9477603819114044, -2.0086001717619175, -1.743582870756548, -2.4964959215304496, -2.2524578842218443, -2.888179493918325, -2.979092900638326, -3.3636119798921444, -3.04941186087108, -2.627024295834346, -2.8752060040968903, -2.5407762338899396, -7.0, -2.5202027086237306, -7.0, -1.8306329077074808, -7.0, -2.9393528243805584, -3.3656751404559175, -2.8948696567452528, -2.8178957571617955, -2.8987251815894934, -2.3114006325028105, -1.7581447785956712, -2.6148972160331345, -3.437433443797971, -7.0, -1.8693861355483907, -7.0, -7.0, -7.0, -2.6126072783550733, -2.3823773034681137, -2.9168047518661746, -2.6165411519876707, -2.513716884831001, -2.910624404889201, -2.1623029745700477, -7.0, -2.116649245682762, -3.053462604925455, -7.0, -2.7767219333485307, -7.0, -7.0, -2.1389970140326358, -2.4308272668926096, -3.47158505418519, -7.0, -7.0, -3.400365273349939, -7.0, -2.382173714467586, -7.0, -7.0, -3.3418300569205104, -3.9873086737311825, -7.0, -7.0, -3.9819997141298784, -7.0, -7.0, -3.505014240084107, -7.0, -7.0, -2.6819391031748543, -7.0, -3.9833104857941155, -7.0, -3.6530838148614064, -2.7567628540462232, -3.3842189645780287, -7.0, -7.0, -4.011020355516257, -7.0, -2.659065083745527, -3.2788841961972057, -7.0, -3.0609495323235096, -2.586299508635064, -3.983220214648103, -7.0, -7.0, -3.2114765203615074, -3.510545010206612, -3.991137435120312, -3.26101530988617, -3.9882467233753784, -3.9833104857941155, -7.0, -7.0, -7.0, -7.0, -3.9906495883188544, -7.0, -4.042575512440191, -7.0, -3.130990657630152, -7.0, -7.0, -3.993920958801287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.257838506552783, -2.387178600948196, -3.985830489858392, -3.3852039627942734, -3.7264826967848297, -7.0, -7.0, -7.0, -3.9878002857518724, -3.7008334670285428, -7.0, -7.0, -7.0, -7.0, -2.177623935903965, -7.0, -7.0, -3.9854713832895876, -7.0, -7.0, -7.0, -7.0, -7.0, -4.113625867244077, -3.682686478249768, -2.9897167199481047, -7.0, -7.0, -7.0, -7.0, -3.683587317572767, -7.0, -3.3016375827268716, -3.9917132757130895, -3.708845638048179, -3.513528333599192, -3.998520882835038, -7.0, -2.702081614845795, -3.5212688755983854, -7.0, -7.0, -7.0, -7.0, -3.9849771264154934, -3.985830489858392, -3.9841671271469883, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5279304952743336, -7.0, -7.0, -3.989627770745151, -7.0, -2.572441309406038, -7.0, -3.9836262871245345, -3.219977256744623, -7.0, -2.377854510283913, -3.9876215821254837, -7.0, -7.0, -7.0, -3.1143607425185924, -7.0, -3.803934849863842, -3.3000814088684325, -7.0, -7.0, -3.9928185200666797, -3.2491915608671667, -3.9860996250551297, -3.71566914240099, -4.023458237643675, -7.0, -7.0, -3.510902307208997, -3.6906390117159673, -7.0, -7.0, -3.792578442664711, -7.0, -7.0, -7.0, -3.6813769331998136, -7.0, -2.516150885953567, -3.1253004979635812, -7.0, -4.006936451364293, -7.0, -4.194042327886423, -7.0, -7.0, -3.301203678722446, -3.600791448229794, -3.0169498130975607, -7.0, -7.0, -7.0, -2.822474560866872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313740708405768, -7.0, -3.5192590585137475, -7.0, -3.2234959409623944, -3.988960070390338, -7.0, -2.581813728522774, -3.683092087197129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0036171757475993, -7.0, -2.8973914245675183, -7.0, -4.014688511872338, -2.341675935576924, -3.6848004941944112, -4.000911062131223, -3.69810054562339, -4.002597980719909, -3.5304131631775952, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9871745010875417, -4.033785516842231, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0920108321869253, -7.0, -2.8046930263961647, -3.5085746049701796, -3.207365037469072, -7.0, -3.6826413871962154, -3.9934803190699966, -7.0, -7.0, -7.0, -3.016805502720029, -3.9921999297955852, -7.0, -3.9830847727377883, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985291718592888, -7.0, -4.010299956639812, -3.625963747121952, -3.406395824613479, -7.0, -7.0, -3.9838517189914717, -4.003288158826075, -7.0, -7.0, -3.9929509605704463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9906495883188544, -2.493583739705195, -7.0, -7.0, -7.0, -3.6833172619218826, -2.871393289428776, -2.9861892997368242, -7.0, -3.9914918889101596, -3.4185912766763797, -3.985201858364572, -7.0, -3.136363791969793, -7.0, -7.0, -7.0, -3.2096681778247347, -3.699620957965614, -2.5509617522981762, -7.0, -3.179370903847892, -3.984707294482673, -3.982994454658664, -3.984842231405276, -2.35735333232053, -4.0124153747624325, -7.0, -3.2573585347059146, -4.0333031013725735, -7.0, -7.0, -7.0, -3.6876627068858356, -3.704536575469313, -7.0, -7.0, -7.0, -3.5141048209728325, -7.0, -3.683407299132095, -7.0, -3.031183964643677, -3.1790847884927227, -2.930312142239915, -3.519653016141642, -3.143550085221494, -2.8454998168095504, -7.0, -7.0, -3.275886960301226, -7.0, -3.9834909718151668, -3.395195298492141, -3.9864134054654685, -3.029221394253928, -2.9192960569888813, -7.0, -3.993832866613986, -3.1122697684172707, -7.0, -2.995151085215237, -3.541454428747589, -7.0, -7.0, -7.0, -3.5484713141320112, -3.4025193025742495, -7.0, -3.9856060830524367, -3.9956790605116224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3960248966085933, -7.0, -3.66216735642827, -3.7742614232193215, -3.059774409166059, -7.0, -3.1783601976294182, -3.170603929784626, -3.17368564886044, -7.0, -3.698448538015329, -7.0, -3.1684974835230326, -3.3842817128855844, -4.019116290447073, -7.0, -7.0, -7.0, -2.923546226642205, -7.0, -3.9907826918031377, -3.9857407410500745, -4.023170121121397, -7.0, -2.500503495624946, -7.0, -7.0, -2.513904639138496, -2.8948496596085533, -4.446770095200388, -3.3008562431183934, -3.5588645046423837, -3.0178677189635055, -3.1581513253927027, -3.9345237001887745, -1.5595677521030744, -7.0, -1.9929204347492253, -3.2243202842554037, -3.2753272435580905, -3.293995271707848, -1.893256289727396, -3.9758605296515843, -3.4881531577034988, -2.138534043739593, -3.683384791579453, -3.356269286063917, -3.1992813424620823, -3.564282100933567, -3.271531838704605, -2.4551495211798278, -3.6278163058623765, -2.9423571865178624, -3.369907073710945, -3.097430853944242, -7.0, -2.2304708807665583, -2.499955165640437, -3.4724821869260936, -3.38396217250729, -3.0652773122016446, -2.9625086085063823, -3.949032013496317, -3.7128600646644574, -2.9209878672938134, -3.4158718443377936, -3.1886238554663477, -2.908773627744193, -3.177322348477116, -2.1314843764626303, -2.915194571282631, -3.527243116388089, -3.1685816572769356, -4.015946243657567, -3.0226639846359435, -2.235244649941361, -2.3858445042581002, -2.151976149357102, -2.7730922490960315, -3.08020545491413, -7.0, -2.7694954853699985, -4.034427905025403, -3.5140161804006493, -3.619823500457278, -2.35623838202335, -2.3459766034400795, -3.7038070652743285, -1.8600035372297603, -2.6421609791755407, -3.323642548936354, -3.988514365833666, -4.053769689599309, -3.3878790219565733, -2.4148254260236968, -3.370266296307733, -2.8298703143525383, -1.6400823780113092, -2.4012744207046004, -3.686189234244024, -2.939082242393672, -2.9673027695242467, -2.7514638708365453, -3.1348939624551835, -2.088886014145426, -4.109511052229932, -1.4142259545382132, -7.0, -7.0, -2.239436555168604, -2.150196735710199, -3.7174624577374917, -2.2721936013114594, -3.548880562637515, -2.1336167877718255, -2.870826418185298, -2.787416192644107, -3.14674801363064, -3.987889609997745, -7.0, -4.000650953629595, -2.894418633356818, -1.6306340876669476, -3.2114765203615074, -2.3040677598990422, -2.917199067185785, -1.5934332447899435, -7.0, -1.8331896251996778, -3.089507709110095, -7.0, -1.4231551533678946, -2.739220617780206, -1.5131376612116403, -2.3492775274679554, -2.3148556699654823, -3.278296208091274, -2.215755027627245, -1.8617119736967596, -2.3640817414110704, -3.2431621151010512, -2.925441019653158, -2.383498555402076, -3.1107580088798876, -2.42717806043141, -2.825339553190717, -2.991934549718948, -7.0, -1.1381797817338746, -3.6957880262155345, -3.985156921277057, -2.4660021221677813, -1.750996697610618, -1.954049996921635, -3.9842572017054163, -2.5352941200427703, -2.7415455167762097, -2.599155000684555, -3.9913590026379504, -7.0, -3.51018741901152, -2.1096372294004264, -3.292964545382929, -2.5087685749709543, -2.823604628355158, -3.1391591616911594, -2.157722276885424, -2.6634867656723524, -2.1733028418881863, -7.0, -3.060404015244707, -3.143505503331407, -2.5875030989919194, -2.0524350335421793, -3.1499225661105013, -3.2880702826432477, -3.3869000790623756, -3.038056896092195, -1.5580431623435886, -3.3116267318705064, -2.9647737403272063, -2.2133145855992264, -3.2997251539756367, -1.7049214924545777, -2.677128774472802, -2.4006298316495482, -3.092457462483194, -3.303368876556038, -2.801991388702298, -3.6869935662646784, -1.751446065406006, -2.501358849455384, -3.3901841527188092, -2.917549269387528, -2.4657349662676826, -7.0, -3.6850696293911485, -1.9041212102514586, -2.305609289566193, -4.005309236848516, -1.8488899607206744, -3.111892321593538, -3.0420024227314255, -2.867299091392458, -1.2346093048038251, -2.158425319506846, -2.2161856039886256, -2.3140263025987355, -7.0, -3.682370742516557, -2.3538271299621987, -2.6935437564115863, -3.0854243788417226, -2.2910882984509326, -0.9875831142025345, -2.447606788068159, -1.1866026905786375, -1.0812433931844716, -2.0596799053912447, -3.2091574233475386, -3.4089180208467798, -3.5098742850047193, -3.9841671271469883, -2.955600296732481, -2.065477859320429, -3.0095217143038493, -3.9846623061901068, -3.3857849588433355, -3.982406928863795, -1.1636368510098085, -3.985965078304871, -3.6994040818153375, -7.0, -2.757485343853885, -3.2229331309085762, -3.512995511348242, -2.8797132763086255, -2.0750305588561777, -2.7819820024964894, -3.4035923240271115, -3.6869935662646784, -2.612275116542189, -7.0, -7.0, -7.0, -2.594171479114912, -3.691390960388043, -2.5775801698613177, -1.9418973906489527, -2.6086985300968797, -2.809630585144874, -2.732393759822968, -7.0, -2.7861160241069776, -3.683992086445554, -3.505330896665327, -1.1517477758067503, -7.0, -7.0, -1.7622744882848056, -2.8578643942098227, -2.8681824452850693, -7.0, -7.0, -2.8489364984779035, -7.0, -2.5798508196618952, -3.982994454658664, -7.0, -7.0, -7.0, -2.979548374704095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9671359498564263, -7.0, -7.0, -7.0, -7.0, -3.7062055418819706, -7.0, -7.0, -7.0, -7.0, -7.0, -3.162663958267158, -7.0, -7.0, -2.3242824552976926, -3.84069905030844, -7.0, -7.0, -7.0, -7.0, -3.022840610876528, -7.0, -4.567931673283491, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351622399736366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3432115901797474, -3.0664750137541312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.059260404121731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2383723290283255, -7.0, -3.04688519083771, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.948155484012653, -3.11293997608408, -7.0, -2.971275848738105, -7.0, -7.0, -2.516755660221549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4865367369347835, -7.0, -7.0, -7.0, -7.0, -3.2440295890300215, -7.0, -7.0, -2.630591889711026, -7.0, -7.0, -7.0, -4.742717277807254, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0261245167454502, -7.0, -7.0, -7.0, -2.6532125137753435, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7424894645817752, -7.0, -7.0, -3.1734776434529945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1022621494942735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.110637802263409, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0863598306747484, -7.0, -3.298033910215436, -7.0, -7.0, -2.928597003413005, -7.0, -2.5266622930104643, -7.0, -2.137354111370733, -3.17868923977559, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.158513262616432, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4446692309385245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6034691597338386, -4.110363169253384, -7.0, -7.0, -7.0, -3.147985320683805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9044658550752316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.20194306340165, -2.8829038344697353, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4927603890268375, -7.0, -3.729421293380923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9320930828571, -7.0, -7.0, -7.0, -3.5734623643151497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0090257420869104, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4771488280971456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.355065010645541, -7.0, -7.0, -4.25310771003719, -7.0, -7.0, -7.0, -7.0, -2.918554530550274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1922886125681202, -7.0, -7.0, -3.346682328514696, -4.452123918449042, -7.0, -2.646730386247423, -3.4858002672700152, -2.7488080049586023, -2.4550733759211245, -4.109511052229932, -2.899320807326632, -7.0, -2.855632711553374, -3.9812634968287997, -3.4076646720454744, -3.464916126290365, -2.7058466137393826, -7.0, -3.254806940132614, -3.114458473109267, -3.1809855807867304, -4.014247443807829, -7.0, -4.4050525185551175, -7.0, -3.488931262422253, -3.3997429262428613, -3.8757555792580543, -3.678396965988749, -3.6161152654468784, -7.0, -3.263001660603791, -2.6829969783596055, -3.5891897589878594, -4.2547655324161475, -3.3525683861793083, -2.9383946223434494, -7.0, -7.0, -4.363292251571082, -3.6234904981141276, -7.0, -7.0, -4.278982116865444, -2.9203738085519615, -2.7475530418655225, -7.0, -7.0, -7.0, -3.229499004575783, -7.0, -3.3727279408855955, -7.0, -3.463205932194144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2536920674836742, -3.9831524989729203, -5.174626667518491, -7.0, -7.0, -7.0, -3.2966129631576377, -7.0, -7.0, -3.3756636139608855, -7.0, -3.0178677189635055, -3.4202858849419178, -7.0, -7.0, -3.0523090996473234, -7.0, -3.623042434246382, -3.5764565324056203, -7.0, -7.0, -3.6126991080645925, -2.880778604742453, -7.0, -4.16354896490181, -7.0, -7.0, -7.0, -4.041629508475138, -3.0629578340845103, -7.0, -7.0, -7.0, -2.9517883735590873, -0.9756270071664029, -7.0, -1.7746346766608063, -1.6374182465921117, -1.1330596427539097, -1.8331896251996778, -7.0, -3.070037866607755, -7.0, -2.2127720755706215, -1.906694111260769, -2.7045643180994903, -1.9426606368895096, -1.4702724510905236, -2.530519856331775, -1.9138844636320478, -2.070037866607755, -1.68241978486113, -2.145889346756647, -1.7339376451385384, -1.5755524408482517, -2.7440320672350427, -1.8913677498314387, -3.143327129992046, -2.587336734507256, -7.0, -1.8383143550055454, -3.1000257301078626, -2.2949069106051923, -2.678749548136708, -2.1638683451957634, -2.2249634182287825, -2.509650479546582, -2.305351369446624, -3.1109262422664203, -2.3205616801952367, -7.0, -7.0, -2.414973347970818, -1.5579444478342641, -3.0622058088197126, -2.09627785207853, -2.628110148946118, -7.0, -1.8623947148370348, -2.131502012593951, -1.354321904121914, -7.0, -2.0442783733957133, -2.7327956982893293, -1.6882220108027965, -2.721849855734995, -2.61066016308988, -2.7168377232995247, -2.556704439233648, -3.1709458747292723, -1.657220533485756, -2.7218106152125467, -3.1740598077250253, -2.024567757196038, -2.814913181275074, -2.4235994898822537, -2.653534094302368, -1.9454412288607073, -1.581255782710964, -2.44216608578472, -3.3582204731086795, -7.0, -2.404015205403452, -2.2813174984203766, -2.7623033632877685, -1.891746470822618, -1.6237931783611625, -7.0, -7.0, -1.8164307001177258, -2.484584529282843, -3.1622656142980214, -2.599737555408931, -2.7510223528780795, -3.0623312368297984, -2.137775961313472, -1.8271048087310866, -1.7691758440581877, -2.2769917547965424, -2.221227885347781, -7.0, -7.0, -2.3141391643241276, -1.9073837961475004, -1.9109526078006482, -1.1700329989066187, -2.2407348574378876, -1.5167257974365613, -1.9485306889830238, -2.7405381265727367, -2.228359829144681, -3.02201573981772, -2.4210552287780143, -7.0, -7.0, -2.5034501934420117, -2.9380190974762104, -2.172700208504903, -7.0, -2.1164416975393117, -7.0, -1.883242924469617, -7.0, -3.1277525158329733, -7.0, -2.4321672694425884, -2.6567368704836722, -2.3428173146357327, -1.7905444111627002, -1.6805552563738542, -2.374901024683465, -3.1664301138432824, -7.0, -1.7628729845648419, -7.0, -7.0, -7.0, -7.0, -2.0572856444182146, -3.08278537031645, -2.649497120803289, -2.59802407233419, -3.0814673283885368, -2.1850967453424945, -7.0, -2.4294586393678927, -2.695043658821294, -7.0, -3.03906142848015, -2.978180516937414, -7.0, -2.3428173146357327, -2.556181846652911, -3.2281436075977417, -7.0, -7.0, -7.0, -7.0, -2.6334684555795866, -2.975891136401793, -7.0, -7.0, -2.571708831808688, -2.45484486000851, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4653828514484184, -7.0, -4.358819677179949, -7.0, -7.0, -7.0, -7.0, -3.343703931783211, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5179652417860705, -2.44870631990508, -7.0, -3.702125963963316, -7.0, -7.0, -7.0, -2.6384892569546374, -7.0, -7.0, -3.5183703477185686, -2.595496221825574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.037426497940624, -7.0, -7.0, -7.0, -7.0, -2.2329961103921536, -7.0, -7.0, -7.0, -7.0, -7.0, -2.757564719601866, -7.0, -2.5774917998372255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7320316968741922, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.494850021680094, -7.0, -3.674952948048565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4138583422700264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4955443375464483, -7.0, -4.064457989226918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.229809782952539, -4.101506496139928, -2.510545010206612, -7.0, -7.0, -4.737431200514583, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2911467617318855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6864575104691117, -2.649497120803289, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.078674273360466, -7.0, -2.437750562820388, -7.0, -7.0, -7.0, -7.0, -7.0, -2.82020145948564, -1.9107768156582345, -7.0, -1.721747219185589, -1.8239087409443189, -7.0, -3.729010814729995, -7.0, -7.0, -7.0, -7.0, -2.481442628502305, -7.0, -7.0, -3.2487087356009177, -7.0, -3.862250674597925, -7.0, -7.0, -3.114694366104735, -7.0, -7.0, -2.3283796034387376, -2.857935264719429, -7.0, -7.0, -2.4401216031878037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -2.4977192746214762, -7.0, -7.0, -7.0, -2.5352941200427703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.558708570533166, -7.0, -7.0, -7.0, -2.954724790979063, -7.0, -5.149763948934585, -7.0, -1.87069645798925, -2.4712917110589387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.456366033129043, -7.0, -7.0, -2.651278013998144, -3.6895752157599384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.669316880566112, -7.0, -7.0, -7.0, -3.2111205412580492, -7.0, -7.0, -7.0, -2.6040099324122306, -7.0, -3.3945392313722045, -2.143014800254095, -4.197528655522771, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.481442628502305, -7.0, -7.0, -7.0, -7.0, -2.6085260335771943, -2.59659709562646, -1.8595885767354927, -7.0, -7.0, -2.059752694209299, -2.509202522331103, -7.0, -7.0, -7.0, -2.740362689494244, -7.0, -7.0, -7.0, -4.130794626668426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8115750058705933, -2.7965743332104296, -2.1089031276673134, -1.8908078032841642, -7.0, -4.797333338040433, -3.042181594515766, -7.0, -7.0, -2.4345689040341987, -7.0, -7.0, -7.0, -1.7337321105952306, -7.0, -7.0, -7.0, -7.0, -7.0, -2.584331224367531, -7.0, -7.0, -7.0, -7.0, -3.4075608494863623, -4.655043943063447, -7.0, -2.61066016308988, -4.54597474839116, -7.0, -7.0, -2.8135809885681917, -7.0, -7.0, -2.841359470454855, -7.0, -7.0, -7.0, -7.0, -7.0, -2.505149978319906, -7.0, -2.225309281725863, -3.0824263008607717, -1.8337843746564788, -2.2704100618306695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.733919151012391, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.65275868027325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0951577235791214, -3.606015715870653, -7.0, -7.0, -4.054114900510586, -7.0, -4.242926358601607, -1.9657442753044998, -2.321184027302314, -7.0, -7.0, -3.407815642384198, -7.0, -7.0, -7.0, -1.4943534012921837, -7.0, -4.187605315418148, -7.0, -7.0, -3.2758486103094215, -4.980203419295704, -7.0, -7.0, -2.5160944657544744, -7.0, -3.1802958284928002, -7.0, -7.0, -3.6109793799229974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8579051461659373, -3.438067450453494, -7.0, -4.00362206995102, -3.333411709141367, -7.0, -3.592419030368671, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9777236052888478, -7.0, -7.0, -7.0, -3.1475438298641407, -1.4998984695692326, -1.6953357196809247, -7.0, -3.3884564527002667, -3.089507709110095, -3.070037866607755, -7.0, -7.0, -2.9395905594871645, -2.7551122663950713, -3.230469358284793, -1.8895171798026698, -2.462397997898956, -7.0, -7.0, -2.9337402994969355, -2.665580991017953, -7.0, -7.0, -3.490520309363349, -7.0, -7.0, -2.5563025007672873, -1.9885589568786155, -7.0, -3.3580618151293815, -7.0, -7.0, -4.470145775899696, -3.600160741295671, -4.441011349520877, -7.0, -7.0, -1.2430380486862944, -7.0, -7.0, -7.0, -1.9673139182870836, -2.0412281485084436, -7.0, -7.0, -7.0, -2.018423082826786, -3.706888394981618, -7.0, -3.298197867109815, -2.123851640967086, -7.0, -2.0086001717619175, -7.0, -7.0, -7.0, -2.0922526548953835, -1.7612833250963482, -7.0, -3.8121777741587537, -2.6599162000698504, -7.0, -7.0, -1.4778444763387584, -2.8130108588032003, -7.0, -3.4109458586877746, -7.0, -7.0, -7.0, -1.9834007381805383, -3.716504163773217, -2.941511432634403, -1.9840770339028309, -2.303915683901469, -3.2648178230095364, -7.0, -2.059437187851868, -2.1877375969867394, -1.6164755138885656, -1.9311187105921872, -2.037509497364078, -7.0, -3.1455071714096627, -7.0, -2.7321524180652137, -7.0, -7.0, -3.2271150825891253, -7.0, -7.0, -3.9704166181377833, -7.0, -7.0, -7.0, -4.0135113334659, -7.0, -3.4835397525513194, -3.50512735822657, -7.0, -1.9742813588778305, -7.0, -2.568201724066995, -7.0, -1.6217695803398526, -1.5116677767193454, -7.0, -2.496929648073215, -2.2889196056617265, -2.4216039268698313, -3.0385284580292, -1.7442929831226763, -7.0, -7.0, -2.622214022966295, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5998830720736876, -0.7678976160180906, -7.0, -7.0, -7.0, -2.1271047983648077, -2.7234556720351857, -2.690196080028514, -7.0, -3.0701302598602904, -3.2187979981117376, -7.0, -7.0, -7.0, -3.061829307294699, -2.510545010206612, -7.0, -3.5809477726878765, -2.4502491083193614, -7.0, -2.4893959217271293, -7.0, -7.0, -7.0, -7.0, -7.0, -2.125481265700594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357324882740209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.898176483497677, -7.0, -7.0, -7.0, -4.877475011224193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6997510316895146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.739572344450092, -7.0, -7.0, -7.0, -7.0, -4.026778328659529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.518145291171665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7574339899382694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.403120521175818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.072948031792886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.72788270269935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8527848686805477, -7.0, -7.0, -4.670190170724935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5352941200427703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.269512944217916, -7.0, -7.0, -2.6074550232146687, -4.019240950395851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.830890068368691, -7.0, -7.0, -3.589589711034215, -7.0, -7.0, -2.693726948923647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0273496077747564, -7.0, -4.000694315866355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.066512277856596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.352433371350281, -7.0, -7.0, -7.0, -7.0, -7.0, -4.610543058104407, -7.0, -7.0, -7.0, -4.053999860693065, -7.0, -7.0, -7.0, -4.274481139688916, -7.0, -7.0, -7.0, -7.0, -7.0, -2.224014811372864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6148972160331345, -4.025172688520482, -2.6399842480415883, -7.0, -7.0, -3.7382254481425052, -7.0, -7.0, -7.0, -7.0, -3.4679039465228003, -7.0, -7.0, -7.0, -1.8195439355418688, -7.0, -7.0, -7.0, -7.0, -4.467830005178976, -3.9411435675933406, -7.0, -7.0, -7.0, -2.667452952889954, -7.0, -7.0, -7.0, -2.342422680822206, -2.9249680958524342, -7.0, -2.4510184521554574, -2.8079857748471495, -1.3979400086720375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2023066418924566, -3.2291805286407804, -2.7234556720351857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8555191556678, -2.5224442335063197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4122925093230463, -7.0, -1.9204263107095962, -2.321184027302314, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1172712956557644, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -3.089551882886454, -7.0, -3.5015613104372822, -3.452935870201179, -7.0, -7.0, -7.0, -7.0, -2.6580113966571126, -7.0, -7.0, -7.0, -2.0644579892269186, -7.0, -3.3699267263788624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8941775538387728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5224442335063197, -7.0, -3.356790460351716, -7.0, -7.0, -7.0, -7.0, -3.031206419827462, -7.0, -7.0, -3.4981266865210188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6201360549737576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9166237274738633, -7.0, -3.7694511794020378, -7.0, -3.9893608137762473, -3.398200507219428, -3.4735599546008133, -7.0, -7.0, -7.0, -7.0, -2.8792233507313676, -3.6799726942774185, -7.0, -2.9756287228095775, -2.9947247797882426, -7.0, -7.0, -7.0, -3.47928731647617, -3.7768464086952993, -7.0, -4.020143666491209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.781396305196791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7866804531966487, -7.0, -7.0, -7.0, -3.7723950610820003, -7.0, -3.773859552376687, -3.074450718954591, -2.9170204900714385, -7.0, -7.0, -3.839729375206388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7982787042255786, -7.0, -7.0, -7.0, -7.0, -7.0, -3.800717078282385, -7.0, -7.0, -3.869954941350072, -7.0, -3.081635301502951, -7.0, -7.0, -7.0, -7.0, -3.7717344253867693, -7.0, -3.4967913157000425, -7.0, -3.812244696800369, -7.0, -3.316669129971156, -3.805092878342673, -3.082156803810918, -7.0, -7.0, -3.7681939616330715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8047526021504607, -7.0, -7.0, -3.7797407511767407, -7.0, -2.8048206787211623, -7.0, -7.0, -3.4929698053204894, -7.0, -2.771638157016891, -7.0, -7.0, -7.0, -3.792951708250132, -3.5237464668115646, -7.0, -3.652826302561005, -3.783570111217814, -7.0, -7.0, -3.4837298990000236, -3.3815049580804746, -7.0, -3.5217916496391233, -7.0, -7.0, -7.0, -3.7774268223893115, -3.4820155764507117, -7.0, -7.0, -3.473107252633462, -7.0, -7.0, -7.0, -3.466941725717638, -7.0, -3.0185756834672515, -3.13956426617585, -3.9218944709291024, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.824386202318774, -7.0, -7.0, -7.0, -3.290455091857383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5159400420933182, -7.0, -3.7909181952145783, -7.0, -3.7997539664118856, -3.7786576319473553, -7.0, -2.7332782702751555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.088726563953855, -7.0, -2.904749346460307, -7.0, -7.0, -2.594517165016293, -3.7737133252770216, -3.3204924754334133, -3.0956574403284893, -3.3231833228365364, -7.0, -7.0, -7.0, -7.0, -3.7897216939809217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6355395938518185, -7.0, -2.908417992953383, -3.773640193260026, -3.7737864449811935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1084522639030685, -7.0, -7.0, -3.769081787118219, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.812779707008964, -3.951386094880293, -3.6893562233554094, -7.0, -3.7708520116421442, -3.770336441095149, -3.1992064791616577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8055858057345935, -7.0, -7.0, -7.0, -7.0, -3.1720188094245563, -3.7754648093457392, -7.0, -7.0, -7.0, -7.0, -3.9092350033683076, -3.159266331093494, -7.0, -3.7685641095135733, -7.0, -3.102890857809762, -3.1951382785109965, -2.5159565901122156, -7.0, -3.2266584788782136, -7.0, -7.0, -3.771954748963949, -2.5579080274827057, -7.0, -3.8228216453031045, -3.250053869521799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.490520309363349, -7.0, -7.0, -3.7826159320316033, -7.0, -7.0, -7.0, -3.074523887934952, -3.143275090631622, -3.8129801660394804, -7.0, -3.7790189719148706, -2.7935072291713214, -7.0, -7.0, -3.3565612207148794, -7.0, -3.7697464671794534, -3.3150602414300163, -7.0, -3.5422027824340283, -3.3181329278612206, -7.0, -7.0, -3.821644517542217, -7.0, -3.297355896091576, -3.5248503032721983, -7.0, -7.0, -7.0, -3.836893516376434, -3.5029730590656314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7937903846908188, -7.0, -3.5632733812690205, -7.0, -3.2832729534027876, -7.0, -3.055314609787049, -3.706899056046803, -7.0, -7.0, -3.795741020869244, -7.0, -3.341368567484551, -3.4458635609892205, -3.8265930539340482, -3.292625212459791, -7.0, -7.0, -3.023458237643675, -7.0, -7.0, -7.0, -3.8328919447597904, -7.0, -2.7579380162362646, -7.0, -7.0, -2.358194936957607, -2.9823277781189925, -4.384407182308992, -3.7967130632808965, -4.210679612769305, -3.411395206355283, -2.9480460080196305, -3.708364237014807, -1.5843082985891896, -7.0, -2.0717476631092104, -3.0441073814140625, -3.384848171418199, -3.7256415271680376, -2.094307274845359, -4.090575455222202, -3.6336848274923423, -2.379986070579087, -3.41355121317555, -3.233428590374369, -3.835087847232495, -3.9163552340406005, -3.5147469246343817, -2.3712322494503155, -3.128200370394246, -4.300029967882302, -3.7256031264971328, -3.081848602267315, -7.0, -2.176474521057038, -2.694312646223346, -3.7960388160046143, -3.581627333755595, -2.9000308247140794, -2.693067093924229, -4.05952555273869, -3.626032247829019, -2.7214372827791666, -3.0806841966397704, -3.4712623658457846, -3.231278397611435, -3.2174839442139063, -2.378448845578422, -2.8981372642370817, -3.8036619232362243, -3.529327672138844, -7.0, -3.4942188340129245, -2.725391830339634, -2.9073516352045403, -2.859413523534532, -2.92649902572, -3.029221394253928, -7.0, -3.4394905903896835, -7.0, -3.782472624166286, -3.641523684670229, -2.843896900535604, -2.8169038393756605, -3.8042757671290937, -2.3401496516240496, -2.954754915800072, -3.9333438491251504, -3.476759191770886, -7.0, -3.780677274433368, -2.688372980123584, -4.014604533436051, -3.9278973940429562, -1.7092513181271274, -2.8161902935342806, -7.0, -3.3090336675041403, -3.7207379770184255, -3.6120417446452695, -3.010663332325691, -2.3472649475991116, -3.482968813185257, -1.7563016807504868, -3.619979805833053, -3.7846885995014214, -2.542435784521191, -2.492843133456706, -7.0, -3.023529789754866, -3.8375253094496014, -2.798880735242388, -3.382692286787451, -3.2476459909266477, -3.483016420144132, -7.0, -7.0, -7.0, -2.9406409781201486, -1.5979729679705894, -3.177969136009376, -2.112076246921947, -2.8881092595069315, -1.961641800198452, -1.4231551533678946, -2.2127720755706215, -2.9395905594871645, -7.0, -7.0, -2.253850917968512, -1.9131952057475696, -2.0903046464095296, -1.9962516524468363, -3.281601443825655, -2.2460997903611926, -1.9803367332623687, -2.193806915041398, -2.750058182093764, -2.480349203580037, -2.2912981981773917, -3.341895943969397, -2.245577599335823, -2.799409479615127, -3.085219201044942, -7.0, -1.3475107078437523, -3.3140779917792127, -7.0, -2.608936302494925, -1.7948926855002934, -2.017586859089031, -3.469822015978163, -2.4220423867575565, -2.7924617313469504, -2.6414741105040997, -3.305136318943639, -7.0, -3.4750898033890065, -2.126466755426485, -3.482873583608754, -2.1223204729384233, -2.5182415695447813, -3.1693804953119495, -2.1249249928945724, -2.4074928794601025, -1.9846149758131035, -7.0, -2.539538289847167, -2.73610663443214, -2.348694190265541, -2.160606408821159, -3.488127496247458, -2.6953357196809247, -2.8236915393984545, -2.891955383429181, -1.2859896776998598, -3.211320815405893, -3.0287745265000883, -2.310438394815848, -3.016057865962853, -1.8469843374489812, -2.650238119299283, -2.2953256836728166, -3.0114294617807817, -2.8966639794199422, -2.942937688372435, -7.0, -1.930118836392619, -2.5297949502875765, -3.4832305869021027, -2.64479015953634, -2.037545417569489, -7.0, -3.171653333949059, -1.7688102344864032, -2.359564471733962, -3.026056354698398, -1.9386661412531396, -3.218601143315633, -2.8436998451606685, -2.296665190261531, -0.8790425431179267, -1.8936577518833586, -2.201871892863938, -2.444405156454783, -3.7695988483874463, -7.0, -2.3360087436712353, -2.5870692294283315, -2.8235466779955427, -2.179973641107927, -1.461425610653809, -2.696293967679412, -1.2172361865017254, -2.015217024496122, -2.1434774309043974, -3.077149794716969, -2.9683495042505643, -3.4745804523423796, -3.7708520116421442, -2.8889513237201387, -2.4989010290429046, -2.8893526431528884, -3.7716609593488872, -3.077731179652392, -3.7679717213816186, -1.398839659577722, -7.0, -3.7972675408307164, -3.776555910703262, -2.573016729848248, -2.952930753389816, -3.17832933714299, -2.7866804531966487, -1.9979039022741811, -2.714162046098853, -2.901798757630448, -3.777281791671015, -2.4147060075610813, -7.0, -3.7681939616330715, -7.0, -3.008316226356639, -3.4832305869021027, -2.7072862306926577, -1.9958071924144132, -2.532411353713923, -3.3296520757287933, -2.874916474431565, -7.0, -2.59477915450515, -3.2949803145573493, -3.4671639659690903, -2.1352220142203384, -7.0, -7.0, -1.6940683505690908, -2.3968657182226067, -2.974906266794061, -7.0, -7.0, -3.187873089603788, -3.0687793630095612, -2.406350904125924, -3.7689339421867816, -3.7877437716464666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6510840892430116, -7.0, -7.0, -7.0, -7.0, -7.0, -3.210692980817999, -7.0, -7.0, -7.0, -3.9244056496686226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203576774977973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.558388530369896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.219977256744623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7657057996869474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.436885868659852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9701608430373136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.252513226416275, -7.0, -7.0, -7.0, -7.0, -2.5634810853944106, -7.0, -7.0, -7.0, -7.0, -3.865991800126275, -7.0, -7.0, -4.371178731816287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.457124626303409, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7880945575640985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9934803190699966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.198395881990749, -7.0, -7.0, -7.0, -3.630834517828051, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9854264740830017, -7.0, -7.0, -3.6542193379444026, -7.0, -7.0, -3.2888451700660513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.79755143643729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.959279950130939, -7.0, -4.956184443988461, -7.0, -7.0, -3.8476836861516825, -7.0, -7.0, -7.0, -7.0, -7.0, -3.45408227073109, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.399673721481038, -7.0, -7.0, -4.14236860613267, -7.0, -7.0, -7.0, -7.0, -7.0, -3.710540447933297, -7.0, -3.956192450523593, -7.0, -3.4350875123045923, -4.576468048945627, -7.0, -7.0, -3.492708019171449, -4.281169773409736, -7.0, -3.808153075999404, -7.0, -4.6099570590580345, -3.9111043178040363, -7.0, -7.0, -4.484897472816146, -4.077513251497662, -7.0, -7.0, -7.0, -7.0, -4.006423252507643, -3.7484464587198087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.391252767350556, -7.0, -7.0, -7.0, -3.829303772831025, -3.745465168670727, -7.0, -7.0, -7.0, -7.0, -3.3148499463011056, -7.0, -3.7735304721389142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1893780058420305, -7.0, -7.0, -4.05558854630511, -4.07733610431472, -7.0, -7.0, -3.3100557377508917, -7.0, -3.8346220136585734, -3.681964458994683, -7.0, -7.0, -4.062356318085437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.558648580964467, -7.0, -7.0, -4.305372868641297, -3.5233562066547925, -7.0, -4.157486989384848, -7.0, -7.0, -7.0, -4.017033339298781, -7.0, -7.0, -7.0, -7.0, -4.07733156112899, -2.401533089075539, -7.0, -2.6351485136976085, -2.519171463821659, -2.3963737275365067, -2.739220617780206, -1.906694111260769, -2.7551122663950713, -2.6148972160331345, -2.253850917968512, -7.0, -3.267365612149139, -3.0394141191761372, -2.010017120757524, -2.8488047010518036, -3.0557604646877348, -2.40287522634755, -2.015639134307175, -2.488198061603354, -2.0796979557836552, -2.652522609767031, -2.4216039268698313, -2.2401925382158083, -2.415529779157638, -2.2663885100087673, -2.5774917998372255, -2.3734827339184386, -2.814913181275074, -7.0, -3.1917891870789785, -3.16467994075426, -2.942236465326841, -7.0, -2.3064250275506875, -7.0, -2.5734518220354854, -2.4191293077419758, -7.0, -7.0, -2.288760085189078, -1.9526310252827455, -1.260804993703267, -2.208226305935583, -7.0, -2.38662634331426, -2.476638437013566, -1.3738311450738303, -7.0, -1.67502804868833, -7.0, -3.0863598306747484, -3.1299717055462297, -2.4913616938342726, -7.0, -7.0, -3.2836403888003676, -2.735731935227449, -2.9907826918031377, -2.6459132750338443, -2.5312051157416637, -2.3667341679034988, -3.047541666264042, -7.0, -2.1367205671564067, -2.803457115648414, -2.416085498340186, -7.0, -7.0, -2.488633652523212, -2.062111714033968, -2.4401216031878037, -7.0, -1.7460677893601901, -7.0, -7.0, -2.9149774724443307, -2.665580991017953, -2.927883410330707, -2.4499247658980847, -2.432568465297358, -2.9787889856630807, -1.4814860601221125, -2.45700493649091, -2.193310154640943, -2.1541663775016415, -1.89006518553078, -7.0, -2.241795431295199, -3.231098715530343, -2.335625033453388, -2.0709609158009337, -2.113943352306837, -2.809454494893529, -2.6827465923729044, -2.4696320151080635, -2.8523896191735396, -2.247378036552128, -7.0, -2.5149902330672873, -7.0, -7.0, -2.5269850685599957, -2.574417135795665, -2.522299299588104, -7.0, -7.0, -7.0, -1.8032754011625363, -7.0, -7.0, -2.6473829701146196, -1.3705812577593128, -1.9167463043212505, -1.7862188721316767, -1.4748294579400776, -2.4724313785820478, -2.4485130854271855, -7.0, -7.0, -1.6645524395323255, -7.0, -7.0, -7.0, -7.0, -2.4401216031878037, -7.0, -3.678518379040114, -3.22698634552522, -7.0, -2.6794278966121188, -7.0, -3.3749315539781883, -2.5877109650189114, -7.0, -3.3781252456193727, -7.0, -7.0, -2.4270531135645013, -2.699114745041209, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9668454236549167, -7.0, -7.0, -7.0, -4.326489475673702, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626401965060686, -7.0, -7.0, -2.3003855638904804, -7.0, -7.0, -7.0, -4.66468897458024, -2.7063425737932336, -4.025244404149697, -7.0, -7.0, -7.0, -7.0, -2.9586333717289905, -3.2000292665537704, -7.0, -3.1150857941900143, -2.53137864938941, -7.0, -7.0, -7.0, -4.628174284448325, -3.782441909184704, -4.628419585049459, -2.370548307718535, -4.627754908466091, -7.0, -7.0, -4.327226071047025, -4.629766267319319, -7.0, -4.6283071728057354, -7.0, -7.0, -4.325843928293292, -3.1710934753828313, -7.0, -7.0, -3.9300112058961556, -4.626689305465622, -3.7820219199132845, -7.0, -7.0, -7.0, -7.0, -2.5613720064670162, -2.764074608884626, -4.627201940953156, -4.150428933047859, -3.595506242348686, -7.0, -4.626976455884445, -7.0, -7.0, -4.1537742267023265, -4.636126669925523, -7.0, -7.0, -7.0, -2.240873600020581, -7.0, -7.0, -4.326069466588894, -7.0, -7.0, -4.028987861649464, -7.0, -7.0, -3.7270085981532355, -4.024619055253279, -3.7250434005491395, -7.0, -4.627027712771981, -7.0, -7.0, -7.0, -7.0, -4.028581418642887, -7.0, -4.331781471570759, -4.628348053351905, -4.3290824690943, -7.0, -2.8255594089315244, -7.0, -7.0, -4.325402764963596, -7.0, -7.0, -4.627007210742902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.400933960963036, -7.0, -7.0, -4.025950682379089, -7.0, -3.552495842828762, -4.626966203780956, -4.149537273365785, -3.9310915663388015, -7.0, -1.9408213367147171, -2.945407031098423, -3.2661907795538254, -7.0, -4.629969946292171, -4.333719253143685, -4.626945698847907, -3.5780563219853025, -3.395048266590487, -4.627037963423587, -4.32893995062819, -7.0, -2.5158105730293747, -7.0, -3.935416568411959, -4.636086515103073, -7.0, -7.0, -3.7245113899980535, -7.0, -7.0, -7.0, -3.218391490113583, -7.0, -7.0, -7.0, -4.6264430253312945, -7.0, -2.971312966338393, -3.5364321758220134, -4.174127676084932, -7.0, -7.0, -4.207131483023054, -7.0, -7.0, -4.1534388209846105, -3.649879819144556, -4.0325683991086905, -7.0, -7.0, -7.0, -2.8175169990655613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.855317205195943, -4.329428390782099, -3.93062306071968, -7.0, -4.028845649861069, -4.326868159893682, -7.0, -2.1374213769188546, -4.325782397515805, -7.0, -7.0, -7.0, -4.32577214153862, -7.0, -7.0, -3.4108764326654217, -7.0, -2.828483325349808, -7.0, -4.633963067531229, -2.2133103433761163, -4.3261719452891745, -4.0285712526925375, -3.550890503921033, -3.5169013267145064, -3.2701216261422252, -4.03322264667025, -4.629379013907319, -7.0, -4.6295013417672655, -7.0, -7.0, -4.337579050143133, -7.0, -7.0, -7.0, -7.0, -7.0, -2.425277259051414, -7.0, -2.4227875693463337, -4.025090713297739, -4.025111208554085, -4.325392500017263, -4.626730338579967, -4.32791039358105, -4.626596966780973, -7.0, -7.0, -2.4778048789297906, -3.5870677698578, -7.0, -4.626576444406813, -4.626658528085447, -7.0, -4.626463554010928, -4.627427309011094, -7.0, -4.627078963610722, -4.02928229515597, -4.3318623853290035, -3.542767989462867, -2.828724089405057, -7.0, -4.149660369801945, -4.02462931413766, -3.932199707406741, -7.0, -7.0, -4.628838319987492, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6266482684740105, -4.626350634262713, -7.0, -7.0, -2.023414699392505, -7.0, -7.0, -7.0, -4.325833673769085, -3.348212602828127, -3.9284163373623473, -7.0, -4.3274508928931175, -3.2199873220898207, -7.0, -4.171794687605212, -4.038063526997859, -7.0, -7.0, -7.0, -3.2456409631411085, -3.7274192470595273, -3.140073420241109, -7.0, -2.916235045643907, -7.0, -7.0, -7.0, -2.1170140037193885, -3.855165680690631, -4.333396889383647, -3.8609067095817995, -4.638509224058013, -7.0, -7.0, -7.0, -7.0, -4.330758636678257, -3.930735140659794, -7.0, -7.0, -7.0, -4.627027712771981, -3.848650886818957, -7.0, -4.326223175572686, -3.3498988914039116, -3.5913479701696387, -3.6753607458971653, -3.3053411313607923, -2.4652716859508375, -4.62811293764317, -7.0, -3.0353660539727025, -7.0, -7.0, -3.5883022719472812, -4.627335127122439, -3.433259658266407, -3.483953893345673, -4.3354177792535475, -4.629042434519568, -3.487875383480801, -3.783014897628913, -2.5411021991707288, -4.3338904116161245, -7.0, -7.0, -7.0, -4.159486983706769, -4.154454406139564, -7.0, -7.0, -4.328420380348951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.630092107840592, -7.0, -3.406948735950354, -4.172174652067981, -2.4969868665452117, -7.0, -3.594613509160098, -2.5778312515364696, -3.680667831562386, -7.0, -7.0, -7.0, -3.730590514118412, -3.475167366363165, -4.6350311209460076, -4.325659309801641, -4.325382234828304, -7.0, -3.589746565098586, -7.0, -4.327287397639064, -4.627181447147527, -3.9369658971078705, -3.8490404437875823, -3.0242217034609458, -7.0, -7.0, -2.3194023977668876, -2.3759652965954845, -3.2384905702096987, -3.215037322655668, -3.20444810450135, -2.552984591554074, -2.7029861134458204, -3.364046122136441, -1.9223060969787602, -4.626689305465622, -2.5332502999681688, -2.8832573030914483, -3.001276047508862, -3.093504086164646, -1.5343616725084905, -3.4846485588079306, -2.772635995349761, -1.5537955387832671, -3.2384475771411187, -2.7036921696255547, -3.398738376245611, -2.8051544359686225, -2.836368077532691, -2.0652001274811633, -3.476324317420228, -3.3359282794322196, -3.0385995203317187, -3.1743382274128167, -4.63964583415458, -2.0746336182969043, -2.560144354449341, -3.084061470177998, -2.4965469189520992, -2.7260260578286495, -2.7235639186612075, -2.6964151297660224, -2.881001310598059, -2.758560466760875, -2.849125244980034, -3.294330540936119, -3.681743602361508, -2.531781628412806, -2.0732821674750395, -2.9950132843541937, -7.0, -3.0733761552166086, -4.63426561339283, -3.010802949218461, -2.783822195683155, -2.840245537219845, -1.1759541927828367, -2.975735486453204, -2.6422425686696984, -3.859918485200716, -3.119356714269176, -7.0, -3.7832397935618616, -4.354185298625861, -2.330360364447703, -2.47071034590996, -2.564839453627283, -1.9673259155379277, -2.3415571717649177, -2.916077773141475, -4.025694917138129, -3.529499453738052, -4.151042805862897, -2.0198368367089063, -3.391055882526162, -3.0745883201315842, -2.59357951244709, -1.9719940652558725, -7.0, -2.7923263069129183, -2.78193896987055, -2.242692633759777, -3.6396358768118477, -3.58849580100721, -4.3576585630856135, -2.2268451186946043, -4.651142275762345, -4.628777066916437, -2.5955968983040805, -1.8427318620121902, -4.63490027448999, -2.2068982162472084, -3.405978791431299, -3.8654099861535784, -3.106813947817089, -3.0850083208438113, -3.2665282306934134, -4.326622564515655, -7.0, -2.8440797640919517, -2.602578242561184, -1.8219474187922904, -3.673768164267726, -2.6706692894713875, -2.9386830705406757, -2.5385658797413004, -1.5131376612116403, -2.7045643180994903, -3.230469358284793, -4.025172688520482, -1.9131952057475696, -3.267365612149139, -7.0, -2.7877437716464666, -2.7678570049761775, -2.4237422105415773, -1.919787632510354, -1.5146351616014173, -2.283497024424779, -2.927088432084736, -3.233361678159449, -2.4260075068343268, -2.7631952011483123, -1.7066415383751545, -3.074084689028244, -3.3731675154102025, -2.8333013741535655, -1.9406109939725837, -3.0056706869146232, -4.627048213833253, -2.0379458854634454, -1.1749632431151515, -1.573530615642056, -3.8485893458691725, -2.170608552457273, -2.9759727438585846, -1.7907349194108384, -3.180760584229199, -7.0, -3.6273965838888484, -2.5144207816759283, -2.946482969137085, -3.139147540217198, -2.6159879440749574, -3.585368425713485, -1.9425832713408406, -2.706331625343998, -2.4705872752836098, -4.325413029667313, -2.854771469382554, -3.2657813960273496, -3.2926486926420218, -1.4718679935980048, -2.956403463201103, -3.3967837584701703, -3.3488580131576775, -2.874643380285549, -2.14457874581053, -3.076053545471786, -2.6525008054635846, -1.7129082987055229, -3.307628455637662, -1.108702641586889, -3.3081068600700276, -2.506975366260944, -3.784362529628032, -3.329692733344092, -2.5131916475068894, -4.627724206512672, -1.432332135228138, -2.1100967539672038, -3.3731164249470056, -3.152227171838142, -2.5429349200735434, -4.325443822322886, -3.2844307338445193, -2.361101134642786, -2.681373376172547, -3.6315452278343097, -1.974449907837994, -3.1712118328707235, -3.0711840961949233, -3.2020339865636913, -1.7674303855279894, -2.1435053686359833, -1.9411631563074063, -2.28025136025892, -4.325597752860019, -4.325618272810029, -2.1478649397608756, -2.4791844152834357, -3.1960635448521066, -2.6968426818935267, -1.3795811117693013, -2.5902612875245725, -1.712142298806098, -1.7887104335455841, -1.8902377676676874, -3.423215144466514, -2.8395084576685545, -3.4511311747360724, -4.62682264891478, -3.267804082331647, -2.4856504575326674, -2.845747057728752, -4.626935446018323, -3.7244909150330834, -7.0, -1.3004700206746918, -3.8489789580184515, -3.027747019428486, -4.02550043476675, -3.0590719375910913, -3.1831274287013995, -3.4237986329154935, -3.0374060648802375, -2.598614659259323, -1.9068685051676264, -3.4554945456712955, -4.025602804765786, -2.6270310620213944, -4.626473817986867, -4.6264532897924076, -7.0, -2.956096873522117, -3.783515643130903, -3.0264004636880624, -1.9804825499397798, -2.5047262575624543, -2.2382902341806235, -3.7247365509259858, -4.626422495681244, -2.8899402626241506, -4.024916464556482, -7.0, -1.7353587434987676, -3.7813860417059795, -7.0, -2.3929179375969776, -2.53334702057068, -2.2620740670103863, -4.626422495681244, -4.626473817986867, -3.2867421763851072, -7.0, -1.973118147285219, -4.149393616745378, -7.0, -4.149188310536008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6646701755809334, -7.0, -7.0, -7.0, -3.369679599559816, -3.392609030497567, -7.0, -7.0, -7.0, -7.0, -7.0, -3.088439861957448, -3.653501946962933, -7.0, -7.0, -3.181860730809662, -7.0, -7.0, -7.0, -7.0, -2.9595183769729982, -7.0, -4.265195306285716, -2.661812685537261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.047780924741197, -7.0, -7.0, -3.0203612826477078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3140779917792127, -3.2778383330020473, -2.9375178920173464, -2.9561684304753633, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0906107078284064, -3.2420442393695508, -7.0, -7.0, -7.0, -3.0116473234845214, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7948364578145615, -7.0, -7.0, -4.234770295160916, -7.0, -2.6852937813867843, -7.0, -2.6268534146667255, -7.0, -7.0, -7.0, -7.0, -7.0, -2.999130541287371, -3.151982395457474, -2.9903388547876015, -2.583198773968623, -7.0, -2.8727000147927284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.918554530550274, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2675069615203176, -7.0, -7.0, -7.0, -7.0, -2.6444385894678386, -7.0, -7.0, -7.0, -7.0, -2.8272256334024735, -7.0, -7.0, -7.0, -7.0, -3.207095540419218, -7.0, -2.8937617620579434, -3.077169627477378, -7.0, -7.0, -7.0, -3.963362766103736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388855763178122, -7.0, -7.0, -7.0, -7.0, -7.0, -2.582874673593952, -3.205610309902521, -3.2149762347220667, -2.828015064223977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9033613362553186, -7.0, -2.9304395947667, -7.0, -3.3188282441831407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.17376882313665, -7.0, -7.0, -7.0, -2.78993308093175, -7.0, -7.0, -3.2858063702375837, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9429995933660407, -7.0, -2.5814945422908995, -7.0, -3.8925398046586355, -7.0, -3.184975190698261, -2.7665321827419165, -7.0, -7.0, -7.0, -3.0958664534785427, -3.1354506993455136, -7.0, -2.7311857076340007, -2.9863237770507656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.532435864506711, -7.0, -2.5490032620257876, -2.9380190974762104, -2.636989101812229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1204093945560682, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9180303367848803, -7.0, -7.0, -2.8527848686805477, -3.1101405949728718, -3.6888093829536683, -7.0, -2.6164755138885654, -2.9148718175400505, -3.101403350555331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4111144185509046, -7.0, -7.0, -7.0, -7.0, -7.0, -2.950364854376123, -7.0, -7.0, -7.0, -2.9304395947667, -7.0, -3.031408464251624, -7.0, -7.0, -7.0, -2.6254839394069043, -2.6020599913279625, -3.739493230781615, -7.0, -3.9036325160842376, -7.0, -7.0, -7.0, -2.829303772831025, -2.8677620246502005, -3.1983821300082944, -2.6108730003800518, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8182258936139557, -2.747023177451628, -7.0, -3.0043213737826426, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0387525889920166, -7.0, -7.0, -7.0, -3.613366056465805, -7.0, -7.0, -7.0, -7.0, -7.0, -2.44870631990508, -7.0, -2.977494969073036, -3.0696680969115957, -7.0, -7.0, -3.1934029030624176, -7.0, -3.9240000069741874, -2.510545010206612, -7.0, -7.0, -7.0, -7.0, -2.811909980420099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9148718175400505, -7.0, -2.9459607035775686, -7.0, -3.4888326343824008, -4.354836456888931, -7.0, -2.463395230212905, -4.0752549005329, -2.736927424692279, -7.0, -2.5921767573958667, -7.0, -2.577204473011063, -3.2182728535714475, -7.0, -2.912753303671323, -2.8981764834976764, -7.0, -2.8027737252919755, -7.0, -7.0, -2.936513742478893, -7.0, -7.0, -2.4705574852172743, -7.0, -7.0, -3.8460792634718106, -4.752071507091245, -3.9813655090785445, -7.0, -4.438035772093079, -7.0, -3.446847710155809, -3.8059933229700182, -3.290527486484116, -7.0, -7.0, -4.2807149194910075, -7.0, -4.204554060135243, -3.5587428465666395, -7.0, -4.097847077423337, -3.75458720843136, -4.020692678682027, -7.0, -7.0, -4.62642591735698, -3.9042285163400785, -3.5585462266892547, -3.792916728226602, -7.0, -4.631352435804037, -4.459241664878082, -7.0, -3.4080533142979808, -3.5382971851679743, -4.587789512472801, -4.251297463677569, -7.0, -7.0, -7.0, -7.0, -3.7584198168439795, -3.7002362963352886, -3.289053557592641, -2.9410142437055695, -3.6239725120169965, -2.7834621696507282, -2.934209787569329, -7.0, -7.0, -7.0, -3.471010404514505, -2.868252475839426, -2.742332282357148, -3.488973524726508, -3.857030798272624, -3.4503261040614124, -7.0, -3.4725370532620774, -7.0, -2.3904935265041733, -7.0, -3.5999649037760753, -3.149373090491385, -7.0, -2.784241800233638, -3.5509888914628096, -4.697078156386674, -7.0, -3.3988077302032647, -2.682145076373832, -3.025893771247669, -7.0, -4.945084345254798, -3.6636067081245205, -4.079434510633743, -2.4747017805962495, -3.232063874830583, -7.0, -3.9888932438600233, -7.0, -2.6582716350441484, -7.0, -3.132579847659737, -2.81424759573192, -7.0, -2.9476574395062145, -3.025563322053369, -7.0, -3.5598866845194808, -7.0, -3.3984608496082234, -3.360593413565249, -3.5586685784080947, -7.0, -7.0, -7.0, -7.0, -4.093841766912128, -1.9815878426831302, -1.893484346218486, -0.7333389059672814, -3.0515383905153275, -2.1890024502912038, -2.3492775274679554, -1.9426606368895096, -1.8895171798026698, -2.6399842480415883, -2.0903046464095296, -3.0394141191761372, -2.7877437716464666, -7.0, -1.8331471119127851, -3.412460547429961, -2.507997821192732, -2.747994102251068, -2.312283165791478, -3.2304489213782737, -2.4176377396522297, -1.993925852287807, -2.8816699076720615, -2.624797578960761, -1.8289461816359327, -1.8208579894397, -7.0, -2.48465567261692, -7.0, -2.929929560084588, -3.574523189437531, -2.4004738457372032, -2.780966592974337, -2.4403842548328845, -3.163310488963686, -1.4763162600834328, -3.2938043599193367, -1.725185387172794, -7.0, -1.865794662364423, -1.512529472402638, -7.0, -2.0485124262811727, -2.958181497564948, -2.142493751023144, -2.5431364147862197, -2.0492180226701815, -1.8704748452468267, -2.294466226161593, -2.887617300335736, -1.3217145945238322, -1.872685900230887, -3.302114376956201, -3.0354297381845483, -1.591570483009036, -1.6551384348113822, -3.3330440298234874, -2.7305959498221712, -2.8573324964312685, -7.0, -3.2423757618909193, -1.978864984347657, -2.2148184542099716, -1.616550528049198, -2.4891143693789193, -2.258876629372131, -7.0, -3.9537113804275554, -2.6603910984024672, -2.6102037316428195, -2.2386732432838445, -2.0457574905606752, -1.0205069823830017, -2.290776361298428, -2.5993371329924893, -1.6948631701213757, -1.6747722764708364, -1.8531856942575955, -2.6388219222193925, -1.8200792048011627, -2.4099331233312946, -2.5653229914411844, -1.8947240425001657, -2.212409579610376, -2.8119936837029837, -2.668944734457734, -2.8670744611517724, -7.0, -7.0, -2.8845234909272777, -3.4891143693789193, -1.6320232147054057, -2.481979789339991, -3.0237050426220375, -2.197280558125619, -2.62144723602022, -2.45338482217222, -3.103940485083021, -1.595596416654004, -2.859438535455056, -1.8623301865867783, -7.0, -1.7403626894942439, -1.4486188281513872, -3.239674787646781, -2.622214022966295, -1.7438036371758014, -2.8976270912904414, -1.9990404978546072, -2.3339508043872472, -7.0, -2.957607287060095, -2.3706056009381484, -2.6085260335771943, -7.0, -2.5490032620257876, -2.7187783976895714, -2.9574476493145365, -2.272835795025385, -2.4833495228146365, -2.866582677063549, -7.0, -7.0, -7.0, -3.0232524596337114, -1.9568666532654737, -7.0, -1.8882816327903629, -2.8048206787211623, -3.541579243946581, -2.973589623427257, -2.8976270912904414, -2.217019209571482, -2.6273658565927325, -2.9003671286564705, -2.456433021146642, -7.0, -7.0, -2.537189226243645, -2.8408585540418794, -3.189770956346874, -7.0, -7.0, -2.4369573306694496, -2.295017011881458, -2.841463755359163, -7.0, -3.0265332645232967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.061235654721493, -7.0, -7.0, -7.0, -7.0, -3.378488748031808, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4487578345818384, -3.6379897807846855, -7.0, -3.146438135285775, -4.181471992946307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.564381964057547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.977952121201462, -3.7430391548049333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.559108289366632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6797522632579414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4757438067481257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6367218642178245, -7.0, -7.0, -7.0, -4.740346896680485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6830019846071993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.033093888137047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.184237029016371, -7.0, -7.0, -3.633459273781007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2643455070500926, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9341616582977217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.161368002234975, -7.0, -7.0, -7.0, -3.394976719554564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8498584005624314, -7.0, -7.0, -7.0, -3.0433622780211294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.307410454213674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.124259620782813, -7.0, -4.503627281356413, -7.0, -7.0, -7.0, -3.660770643527697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.611882555512116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.953424852971817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.588682991045723, -7.0, -7.0, -3.8514295860194783, -7.0, -7.0, -7.0, -7.0, -3.1332194567324945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.020578789815774, -4.449809971741877, -7.0, -7.0, -4.435525851498655, -2.494328555359404, -3.1330596427539095, -7.0, -3.338536173355659, -7.0, -3.1457400995364067, -4.579966418965081, -4.660410083538616, -4.504538821884575, -3.4980002326031903, -7.0, -4.396164462603818, -3.6147151038234466, -4.014100321519621, -4.613196769750614, -7.0, -5.10301991616068, -7.0, -4.186002268850776, -3.787354190433722, -7.0, -7.0, -7.0, -7.0, -3.2604462057323165, -2.9538105399339547, -4.58601311649554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.981274832706589, -3.2013971243204513, -7.0, -3.271186609747914, -7.0, -7.0, -7.0, -7.0, -3.7702504531336944, -3.8131137540078983, -3.313445370426414, -4.085647288296856, -4.153326961490906, -7.0, -7.0, -7.0, -7.0, -2.919601023784111, -7.0, -7.0, -3.425697213362591, -7.0, -3.3206749005691742, -4.282866716929532, -4.872715540280947, -7.0, -7.0, -7.0, -3.837840861655523, -7.0, -4.944304969875082, -2.948706308904852, -4.073681699476284, -7.0, -7.0, -4.023087766995445, -7.0, -7.0, -7.0, -3.5907304057926903, -3.470733812658553, -7.0, -7.0, -7.0, -3.245888517670497, -7.0, -4.33665982345442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.389024250763695, -1.7459036485794046, -2.6026025204202563, -1.8512583487190755, -1.5658478186735176, -1.6919651027673603, -2.3148556699654823, -1.4702724510905236, -2.462397997898956, -7.0, -1.9962516524468363, -2.010017120757524, -2.7678570049761775, -1.8331471119127851, -7.0, -2.5378190950732744, -1.9912260756924949, -2.361937589454128, -1.7603086596820539, -2.4071075149129415, -2.281790637678311, -1.8461308454520247, -2.8341026557127935, -2.100370545117563, -1.9493900066449128, -2.084831520070331, -7.0, -1.9800648211037504, -2.5024271199844326, -7.0, -2.8615781193128953, -2.460561571363903, -2.57831729805555, -7.0, -2.1118703436839716, -2.693726948923647, -2.5565437084835145, -2.216957207361097, -7.0, -2.8721562727482928, -1.5416694494681231, -7.0, -1.5690393221702197, -2.0671814799805035, -7.0, -1.9495526333017104, -2.300305567669649, -1.6112403829248851, -7.0, -2.1367205671564067, -1.88309335857569, -2.579497782534824, -3.164134662201509, -2.6651117370750512, -2.3915231836751634, -2.8943160626844384, -3.1405080430381793, -1.8058536085353702, -2.327018177615688, -2.7745169657285493, -2.132155803755665, -1.878610165525299, -2.433244135631517, -2.3205616801952367, -2.0465251788122005, -1.7281149618436935, -2.433369746856586, -3.644881521155292, -7.0, -2.464599350456727, -1.6975199379407861, -2.6314437690131722, -1.9003671286564703, -1.7737052001054718, -7.0, -2.8549130223078554, -2.1933234056282025, -2.0039628970954273, -2.5828206333422923, -2.245589772915445, -2.442793225939769, -2.1327050627088058, -1.4974690606336676, -1.5817632448704808, -1.9219068065125802, -2.187722109424307, -1.9227686950366432, -7.0, -7.0, -2.537131920116768, -2.2860071220794747, -1.8016323462331667, -1.7193707521554475, -2.4213956421399727, -1.6958935252473812, -2.0460675901682115, -2.608414593151163, -2.013479936380004, -7.0, -2.809222921689422, -2.388574805196408, -7.0, -2.288696260590256, -2.1513698502474603, -2.5644030148909867, -2.833784374656479, -2.096330567315823, -7.0, -1.9942716315248012, -7.0, -3.017450729510536, -2.8744818176994666, -1.9850895069263812, -3.0269416279590295, -2.428134794028789, -1.907020280620376, -1.8853016909406226, -2.7089305358066165, -2.3647385550553985, -7.0, -1.7232503803830987, -7.0, -7.0, -2.8048206787211623, -2.952792443044092, -2.3283796034387376, -7.0, -2.3797801801557177, -2.786514813868446, -3.521399628115376, -1.672674993544776, -1.8878984880968723, -3.4274861090957858, -2.5378190950732744, -2.8041394323353503, -2.824754043226546, -7.0, -7.0, -2.072111975265909, -2.8205954965444904, -7.0, -7.0, -7.0, -2.9740509027928774, -7.0, -2.9040660519145027, -7.0, -7.0, -2.795880017344075, -7.0, -2.660865478003869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4436402707776104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.079452595311, -7.0, -7.0, -3.111262513659065, -3.845706753536257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3139482984020416, -7.0, -3.2641091563058082, -7.0, -7.0, -2.6306312440205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3205616801952367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188365926063148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.540104133899875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5167666716053274, -3.286231854028553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.306394388411241, -3.2734642726213465, -7.0, -7.0, -4.1474985516858025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7333577879255855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.345177616542704, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5652494649908055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.343851525491311, -7.0, -7.0, -4.083663837854232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5759956202032677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2631624649622166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.45552091861866, -7.0, -7.0, -7.0, -2.8819549713396007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6212917088805394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.813981075636472, -7.0, -4.042299807413626, -7.0, -7.0, -7.0, -3.2833012287035497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.846027675364379, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8452531174956057, -7.0, -3.4129642719966626, -7.0, -4.325529346023533, -7.0, -7.0, -7.0, -7.0, -3.4510184521554574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.287129620719111, -7.0, -7.0, -7.0, -7.0, -7.0, -3.891515156998247, -7.0, -7.0, -4.087580308992842, -3.426185825244511, -7.0, -7.0, -7.0, -7.0, -3.636989101812229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2029119304669567, -3.9816676269911824, -7.0, -7.0, -4.1529454056319, -2.867820908045573, -3.8211858826088454, -7.0, -3.5998596887549335, -7.0, -3.1382325034866554, -7.0, -7.0, -4.512517635672204, -2.431347181387955, -7.0, -4.416357541374134, -2.547802879191111, -7.0, -4.023437664229715, -7.0, -4.629925823953525, -7.0, -3.5920795578567235, -3.8274338954007794, -4.201670179646581, -7.0, -7.0, -7.0, -3.5417040232842885, -3.1828424585586923, -4.599162287443591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8146137940059597, -7.0, -7.0, -4.59001658245561, -3.6382096210738157, -7.0, -7.0, -7.0, -7.0, -4.562839849885065, -7.0, -7.0, -3.523713958522923, -3.8869698767408543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7520996889830758, -7.0, -7.0, -7.0, -3.987125294063701, -7.0, -7.0, -7.0, -7.0, -3.7831580266967495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.835056101720116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5406365695176527, -7.0, -7.0, -7.0, -7.0, -7.0, -4.075181854618692, -7.0, -7.0, -7.0, -2.5680060518483647, -4.128366953938082, -2.4858364866178744, -7.0, -3.1441069730493227, -2.2875981702912034, -2.755548195648138, -3.278296208091274, -2.530519856331775, -7.0, -7.0, -3.281601443825655, -2.8488047010518036, -2.4237422105415773, -3.412460547429961, -2.5378190950732744, -7.0, -2.552972237463008, -1.8912790259589563, -2.234820879807401, -2.3179026933918885, -3.068371418032643, -2.820951698466259, -2.018769824946525, -2.01137522581669, -7.0, -7.0, -7.0, -2.7185535852026295, -2.3273589343863303, -7.0, -2.374847006058018, -2.8427340189482697, -3.0050732130636044, -3.269045709657623, -0.973074438129254, -7.0, -2.1922445687080447, -7.0, -3.2605483726369795, -7.0, -7.0, -3.3092041796704077, -3.05595140532915, -2.1969258872346105, -7.0, -2.183501582177713, -2.901094895030216, -2.314610663315729, -7.0, -1.5547028876074942, -2.9923325590474645, -3.432969290874406, -2.7493591928622245, -2.721398375521505, -3.285107029566812, -7.0, -3.4259415880188953, -2.580979252309059, -2.4869615094670436, -2.6755950563867463, -2.3311828694692, -7.0, -2.800139895326366, -7.0, -2.408557935660577, -3.327563260187278, -3.0557604646877348, -3.5233995862165233, -7.0, -2.3951645421816643, -1.9784544333652287, -3.3102683666324477, -3.3346547668832414, -2.751150747404337, -7.0, -7.0, -3.748885440009517, -7.0, -2.4114326310165928, -3.138113146487167, -3.1100844228869238, -7.0, -7.0, -2.498059806391236, -2.165484568429807, -2.105903033717524, -2.124123670090858, -7.0, -7.0, -2.983089073130224, -2.088619264513679, -2.815799044880344, -2.3321858896951086, -3.141390975041025, -2.563035883426256, -2.5078967407008865, -3.1705969485122614, -2.181664976187411, -7.0, -0.9572480195790501, -7.0, -2.967079734144497, -7.0, -7.0, -3.175898196379951, -7.0, -7.0, -7.0, -2.487858966359126, -3.2778383330020473, -1.0132330645412966, -7.0, -7.0, -7.0, -7.0, -3.3207692283386865, -2.4720246977002813, -1.6248278824518179, -7.0, -7.0, -2.3530589956679915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0177287669604316, -2.6059332229989143, -2.954145988829548, -7.0, -7.0, -7.0, -3.2734642726213465, -7.0, -3.0122887398346068, -7.0, -7.0, -2.889021422095225, -2.571999816397063, -2.7104558643354246, -7.0, -7.0, -7.0, -7.0, -2.567866231982406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6069915285261684, -7.0, -7.0, -7.0, -7.0, -3.9795028487874013, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1196846918240504, -7.0, -7.0, -2.8339965879428433, -3.375033901249075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015213009510909, -7.0, -7.0, -7.0, -7.0, -7.0, -3.430639336164655, -7.0, -7.0, -7.0, -7.0, -4.430171841456267, -7.0, -7.0, -3.052155067199565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7078975748936176, -2.780613773351461, -7.0, -7.0, -3.808953299155911, -7.0, -7.0, -7.0, -3.4398062113933303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0461828907408814, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7319914490189294, -3.763951826033324, -7.0, -3.779380011491656, -7.0, -7.0, -7.0, -3.303502991379405, -7.0, -7.0, -7.0, -7.0, -7.0, -3.735997884091794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7712934426290596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4586378490256493, -7.0, -3.444929147447511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6293586225803405, -3.248929133718768, -7.0, -7.0, -7.0, -3.662249162440235, -7.0, -7.0, -3.0232524596337114, -7.0, -7.0, -3.74170298395774, -3.74795530690673, -7.0, -7.0, -3.8571816735501194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5883837683787276, -3.792461731346951, -7.0, -7.0, -7.0, -3.932169245920792, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2271465125877086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5812414937873656, -7.0, -3.315130317183602, -7.0, -7.0, -2.119027360004553, -3.436480695009495, -2.615799802742291, -3.2835273648616936, -2.9207939364157585, -3.0759846847441197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.750970984437319, -7.0, -7.0, -7.0, -1.8848322900885788, -2.793246982819348, -7.0, -3.732634967539196, -3.733277533932582, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4679039465228003, -3.7799570512469063, -3.149116430427238, -4.210957286602528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5771546503583544, -7.0, -7.0, -7.0, -7.0, -3.7385427409287852, -3.739572344450092, -7.0, -7.0, -7.0, -7.0, -3.5820065143636985, -2.9253120914996495, -7.0, -7.0, -7.0, -3.853759033074769, -3.064008486531724, -2.747023177451628, -7.0, -2.8467889696388013, -7.0, -7.0, -7.0, -7.0, -7.0, -3.489606966267722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9927743642553555, -7.0, -7.0, -7.0, -2.9866669346232935, -7.0, -7.0, -4.037386652582377, -7.0, -7.0, -7.0, -3.4373541278481747, -2.0899730070827633, -2.8058782758252425, -7.0, -7.0, -7.0, -3.745465168670727, -2.916057288417842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.15124723746237, -7.0, -3.6349635008969448, -7.0, -3.200440076436431, -4.304016336520766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3068016295330462, -7.0, -7.0, -2.8229615672766832, -2.999864706876925, -3.0528953899583056, -3.7626035495668035, -3.7270801505184905, -1.782929561800477, -2.6084404498776554, -3.7016111533360587, -2.817609435764669, -7.0, -2.3067273749127253, -4.029038640290407, -3.2114822595695567, -3.5354840032266903, -1.948264737345508, -4.082156803810918, -2.3715259398882167, -1.944828705873858, -3.479373734640201, -3.5466470486443358, -7.0, -3.428501732235372, -3.623766000133931, -2.777683803329668, -3.2761808644533152, -7.0, -3.471282540892828, -4.04641711698399, -7.0, -2.6514030808044518, -2.1914188442053857, -3.557136108599234, -3.049140463158965, -2.8899693344316466, -2.6753581983493837, -4.050476427265063, -3.516746850913505, -3.66162340922923, -3.040323913328225, -3.679124935677682, -7.0, -4.327103391877102, -2.073927724573103, -2.70251259492133, -7.0, -7.0, -7.0, -3.4569188534250026, -4.0514998191327445, -7.0, -3.5296356460190728, -3.278113115979834, -3.70922754733432, -7.0, -7.0, -7.0, -7.0, -7.0, -3.232678527575879, -3.393107024292132, -7.0, -2.6426686096873704, -2.6665786416553043, -4.342247799786142, -7.0, -7.0, -7.0, -2.0799293848750184, -7.0, -4.3650853271063745, -3.1184536935598395, -3.9191565722392943, -7.0, -3.3853828136078388, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2906355262615454, -7.0, -7.0, -3.1129591096853653, -1.7965078471454785, -7.0, -3.4037705275894505, -7.0, -7.0, -2.4833495228146365, -7.0, -7.0, -7.0, -7.0, -7.0, -2.737808008704828, -1.5290888052036686, -7.0, -2.655550023357655, -2.107672395049396, -2.174466858886018, -2.215755027627245, -1.9138844636320478, -7.0, -3.7382254481425052, -2.2460997903611926, -3.0557604646877348, -1.919787632510354, -2.507997821192732, -1.9912260756924949, -2.552972237463008, -7.0, -2.027964091636153, -1.8828456471121318, -2.718501688867274, -2.6910814921229687, -0.8720557532519746, -2.638988159343682, -2.0349730482929402, -3.7668588110214176, -2.491750672348322, -7.0, -1.9581155093926923, -3.455758203104137, -3.736316807904109, -2.429247462461082, -0.9602761381695825, -2.2035009923023567, -2.653775123528, -2.1538734696319675, -7.0, -2.7017007968251283, -7.0, -7.0, -3.137907705431547, -2.491977674764168, -3.748885440009517, -3.1645015613095686, -2.6808124456850986, -7.0, -1.9426606368895096, -2.324429449539036, -2.1296527163487453, -7.0, -2.4847268042986617, -2.324440754727877, -3.1955537388251134, -2.708404555762662, -3.4533947936132776, -2.697308615276485, -2.662600450095542, -3.103999085098659, -1.851566004435052, -2.876939140345395, -3.296957546032856, -1.643544912757513, -3.760648619581356, -1.3654797333403765, -2.057818194432099, -2.4521841151090564, -2.095672926234173, -2.6512034378011884, -2.8096238360707755, -7.0, -2.4198287060778814, -2.282278499425753, -3.448087666692341, -2.476816379675971, -2.362105319293773, -7.0, -3.73814608871206, -2.61842847289748, -3.174859011514084, -7.0, -2.554426495768532, -3.788875115775417, -2.7835737770936886, -3.309701124779525, -1.6938984542993198, -1.9565580257265802, -2.375379771654777, -2.4150375879653, -3.7331972651065697, -7.0, -1.974975719445768, -2.3502480183341627, -1.9708916872960696, -1.993813987391742, -1.9939870162174769, -1.1685080872847577, -1.8002524377062963, -2.480276495763096, -2.1358770816547334, -3.7409150764812824, -2.700775805199281, -7.0, -7.0, -3.1560946306394277, -3.791760804012905, -2.3985367534165967, -7.0, -3.0419450721452637, -7.0, -1.776993439828789, -7.0, -3.063633545230785, -3.7407573233077707, -3.7437448785924614, -3.2875031431313193, -7.0, -2.5466968599938298, -2.2827353726210187, -2.6322786069397006, -7.0, -7.0, -2.3818728544985426, -7.0, -7.0, -7.0, -3.752278985460119, -2.5428254269591797, -7.0, -2.32584571166409, -2.4316749748365134, -3.6061663146076204, -3.14090067888619, -7.0, -1.792995127808348, -7.0, -7.0, -2.649208612936733, -7.0, -7.0, -2.9785717732538797, -2.4267280833770184, -7.0, -7.0, -7.0, -3.153204900084284, -7.0, -2.4349180354194466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6710802327388494, -7.0, -7.0, -7.0, -7.0, -3.750354088762708, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6664243725187595, -7.0, -7.0, -3.0499928569201424, -3.7090437070077527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9721449594582214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.48223818557017, -3.503586421323274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.078746734273607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2518084986240465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.933689708957895, -7.0, -7.0, -3.1702617153949575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.184691430817599, -7.0, -7.0, -7.0, -2.492146882358005, -2.9006401839826004, -3.2219355998280053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.968739713458941, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.020609853377705, -7.0, -7.0, -7.0, -7.0, -7.0, -3.305852740224386, -3.591064607026499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.359835482339888, -7.0, -7.0, -7.0, -3.643288139836406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.210318519826232, -7.0, -3.307099675302965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4750898033890065, -7.0, -3.150500596270051, -7.0, -7.0, -3.235077325560345, -7.0, -7.0, -7.0, -3.286456469746983, -3.0109356647043852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.326975564214103, -7.0, -2.5438611881987567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7427251313046983, -3.229425847920695, -7.0, -7.0, -7.0, -7.0, -7.0, -3.197280558125619, -7.0, -7.0, -7.0, -7.0, -3.6586790285824486, -4.55140119809846, -7.0, -7.0, -7.0, -2.9885589568786157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.926540311899433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.489536629482095, -7.0, -3.9128462051453377, -7.0, -7.0, -7.0, -2.3885210126055294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0242803760470798, -7.0, -2.910090545594068, -3.541350388672851, -7.0, -7.0, -3.241919853150198, -7.0, -7.0, -7.0, -7.0, -3.111598524880394, -3.269746373130767, -7.0, -7.0, -7.0, -3.218535505216528, -4.32436477820229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2749656245392864, -4.288980208081459, -7.0, -7.0, -3.7154661089656273, -7.0, -7.0, -7.0, -7.0, -7.0, -3.60151678365001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.262213705476417, -7.0, -7.0, -3.6311798650966334, -3.979092900638326, -7.0, -3.273695587930092, -3.749689947134912, -3.2245330626060857, -2.9523772475230774, -7.0, -3.1747667952445253, -7.0, -3.3024391640698574, -7.0, -4.668357956917772, -4.334138639319558, -2.681492492506635, -7.0, -3.9334704151634567, -3.083841956595991, -3.747139803102036, -4.320997416794221, -3.9684362477117046, -4.503824717341271, -3.939918420369057, -3.714706878813469, -7.0, -3.4138583422700264, -7.0, -4.168423818103146, -7.0, -3.3530963019716764, -3.1746896062920578, -4.294378035587241, -3.4893255507504053, -3.9116369331294423, -3.5739154404215507, -7.0, -7.0, -3.896213795234906, -3.3315285188686907, -7.0, -3.386498965550653, -3.807940721215499, -3.0074632745631806, -7.0, -7.0, -7.0, -7.0, -4.0816113093209765, -3.2637543888400056, -2.6159500516564007, -2.1448786552084167, -3.8772849391681783, -3.500236474825639, -7.0, -3.5200903281128424, -7.0, -7.0, -7.0, -3.521347331832345, -2.698721765128401, -3.2984163800612945, -2.6051223545340476, -3.8394376418318696, -4.062191334025707, -7.0, -7.0, -7.0, -2.9707703212585392, -7.0, -4.24944785211867, -2.7683914130944873, -3.3251049829714074, -7.0, -2.721285878569211, -4.05656185185946, -3.702818126370317, -7.0, -7.0, -7.0, -2.989115958983829, -7.0, -7.0, -3.919559212435094, -2.964673473933623, -7.0, -3.742852730737543, -3.397070549959409, -7.0, -7.0, -7.0, -3.2304489213782737, -7.0, -7.0, -2.093655114075086, -3.2136837399839564, -1.9976428464804807, -3.216957207361097, -2.6090605499300867, -1.9949034429806192, -2.1097472377132287, -1.8617119736967596, -2.070037866607755, -2.9337402994969355, -7.0, -1.9803367332623687, -2.40287522634755, -1.5146351616014173, -2.747994102251068, -2.361937589454128, -1.8912790259589563, -2.027964091636153, -7.0, -1.8036138077292478, -2.374565060722765, -2.2559300290470774, -2.166093107068167, -2.1631613749770184, -0.6067195539755574, -2.5859117103194342, -7.0, -1.7547010860879888, -1.6932339035574901, -1.9240330175654028, -3.1869563354654122, -2.516542481650632, -2.2912734051814825, -2.45178643552429, -2.8796692056320534, -1.882796675552491, -2.785567089582034, -1.280563918213139, -3.2245330626060857, -7.0, -2.8998205024270964, -2.383366482755039, -2.046625212091902, -2.506730464271809, -1.930949031167523, -7.0, -1.7994826615235353, -2.130333768495006, -1.718262357736775, -7.0, -2.0869527242574843, -2.6077230235205526, -3.374748346010104, -2.248571774044563, -2.1638568026386698, -7.0, -7.0, -2.8523928471568003, -2.04001724621947, -2.3706569876129886, -1.819324539486734, -1.8640752762509714, -7.0, -2.319035902573456, -3.2785249647370174, -2.0265916256712586, -2.7737864449811935, -2.3806633963405828, -2.9434045719310675, -7.0, -1.7983646063869205, -1.326563418954342, -2.929674317948588, -2.958802703399502, -1.7369863760269566, -3.171433900943008, -3.1934029030624176, -2.6786838876099157, -2.2338418642756133, -2.998912904358786, -1.9425855949537412, -2.649529565947819, -3.1256980877130376, -2.741939077729199, -1.7613995242895237, -1.7206186312984866, -1.317686397735075, -1.7138326419551946, -3.1758016328482794, -7.0, -2.4147095262667024, -1.922984815708883, -2.363074486652865, -1.8822398480188236, -2.3815963601406294, -2.0858509911532663, -1.6727105265930131, -2.305867056602291, -1.78890692406502, -3.203032887014711, -2.020775488193558, -3.199480914862356, -7.0, -2.959756672990995, -2.1480625354554377, -2.470452494407648, -3.1838390370564214, -7.0, -7.0, -1.7160325448102618, -7.0, -2.0376608084302044, -3.2024883170600935, -2.30588853028431, -2.3745192273121476, -2.7400994009248563, -2.0053319489492862, -2.0075632564697243, -1.3332039819952237, -3.303412070596742, -7.0, -1.845511456972561, -7.0, -7.0, -7.0, -2.460396637297684, -3.231214647962601, -3.2440295890300215, -2.447158031342219, -2.373396004448824, -2.314814887210721, -7.0, -7.0, -2.846708145456007, -7.0, -7.0, -2.3537196154121895, -2.873029812061044, -7.0, -2.0019259210360385, -2.182372377102884, -1.8460975674563835, -7.0, -7.0, -3.252124552505644, -7.0, -1.7163743769610007, -3.173186268412274, -7.0, -2.8656960599160706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.036801229045618, -7.0, -7.0, -7.0, -7.0, -3.8258802989361795, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6909972448905215, -3.7965049515532963, -7.0, -7.0, -3.399601156258678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.984347257585864, -7.0, -7.0, -7.0, -3.43568513794163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.38172861853511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8709888137605755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2709448868349495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4144719496293026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.434900393753358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0086001717619175, -7.0, -7.0, -7.0, -7.0, -3.488973524726508, -7.0, -7.0, -7.0, -7.0, -2.1105261844479104, -7.0, -7.0, -7.0, -3.160018096006677, -7.0, -7.0, -3.15175279223674, -3.8725350221946804, -7.0, -7.0, -7.0, -3.800839225514776, -7.0, -7.0, -3.2425414282983844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2842426868695513, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3763335866484043, -7.0, -7.0, -7.0, -7.0, -3.933284772348695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.456973013635818, -7.0, -3.475816413031318, -3.4300750555519395, -7.0, -2.8165376190019558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.130440988463926, -7.0, -2.6363054963162855, -7.0, -7.0, -2.6037564736529744, -7.0, -3.1705550585212086, -3.466125870418199, -3.1762359997608716, -3.494432898726399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8737080188633053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7968715576878025, -3.441695135640717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0043213737826426, -7.0, -3.750199727829182, -3.7763772790230172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.699837725867246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2347702951609167, -7.0, -3.681150749932421, -2.8920946026904804, -7.0, -7.0, -7.0, -7.0, -2.993583175003126, -2.5791214245707335, -7.0, -2.925879089301501, -7.0, -7.0, -3.4149733479708178, -1.9977548758799546, -7.0, -7.0, -3.5803546611065915, -7.0, -7.0, -7.0, -7.0, -3.1280760126687155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2249644667161625, -7.0, -7.0, -7.0, -3.0995892481040115, -7.0, -7.0, -3.428836444372765, -7.0, -7.0, -7.0, -3.4207806195485655, -2.1961401255504294, -2.6872316010647745, -7.0, -7.0, -7.0, -7.0, -3.9300146074718962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.158040143768389, -7.0, -7.0, -3.4590675733665495, -3.229809782952539, -7.0, -7.0, -7.0, -3.5149460053080044, -7.0, -3.530583859645118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4163630914988237, -7.0, -7.0, -2.59852191098963, -4.163258304891918, -4.019448637493637, -3.469380135849925, -3.5616975326539935, -2.564567439411901, -2.823948220466359, -7.0, -2.8160253712016736, -7.0, -2.584198148073582, -3.6011034909311253, -3.0646953435415623, -3.1365356092018986, -2.4170119131533196, -7.0, -3.9511431601075526, -2.7135643854323326, -2.0039237178426834, -3.933942602741261, -3.41338359662314, -4.410530922787965, -3.2116099373351346, -2.9876456426663927, -2.895146189375992, -7.0, -3.216947446947529, -3.3384564936046046, -7.0, -2.808902315104778, -2.91677425847629, -3.327917913524882, -3.991004440330755, -3.063483478027528, -2.785482370684724, -4.29280966541729, -7.0, -3.9154350135754097, -2.804155664912373, -4.06039561731991, -3.243286146083446, -4.297026951616813, -2.4915756751290963, -2.7759183689513516, -7.0, -4.133826214076394, -7.0, -4.270364353650405, -2.6681269610554104, -2.8197632208188845, -2.767403256850421, -3.5089335260500327, -7.0, -7.0, -7.0, -7.0, -3.1371958119405483, -7.0, -3.469208172085293, -7.0, -7.0, -3.0539510467143005, -3.8142387143633596, -4.401107465479456, -7.0, -7.0, -7.0, -3.594171479114912, -7.0, -4.953653399765918, -3.201328833655651, -3.837619999187664, -7.0, -3.05874226599279, -7.0, -3.0256130404386536, -3.5878231713189552, -7.0, -7.0, -3.0759898930799845, -7.0, -2.840419777736486, -3.851390859681218, -3.386008212064673, -7.0, -3.4008448706355794, -7.0, -7.0, -3.102982230518263, -4.101024940352695, -3.4423229557455746, -3.426185825244511, -7.0, -1.5736450565133797, -3.0714524076988035, -1.5938584784075553, -2.956328539041934, -2.2405492482826, -1.6866049133919572, -1.080468045453941, -2.3640817414110704, -1.68241978486113, -2.665580991017953, -7.0, -2.193806915041398, -2.015639134307175, -2.283497024424779, -2.312283165791478, -1.7603086596820539, -2.234820879807401, -1.8828456471121318, -1.8036138077292478, -7.0, -2.0119419037067887, -1.9734165172739373, -1.7872520498458428, -2.3988744062580363, -1.5864549179973864, -2.5725812013324862, -2.7433529514095554, -3.1131073665204956, -1.660875407117872, -1.8670641135389987, -7.0, -2.0686443960596153, -1.8962867793220939, -1.9672039793497955, -2.632963168167261, -2.1584567298046142, -7.0, -1.9275136000066488, -2.6589648426644352, -3.40671045860979, -7.0, -2.0762584823084365, -1.6374241062905812, -2.0910804693473324, -2.263636068588108, -3.4148062795010126, -1.6249795495865822, -2.0724478633886565, -1.4418478143140785, -7.0, -2.3389874160202413, -2.5253687865236367, -2.631570588836501, -2.245162645730847, -2.27307847310952, -3.4243915544102776, -3.129689892199301, -2.781468142841798, -1.687626890792445, -2.1371338529752912, -1.5959369062691735, -1.6382947241487407, -2.98781517440207, -2.3198467849581808, -2.9947569445876283, -1.7524649928865, -2.3379965170582664, -2.055584137246456, -3.2526507983886237, -3.426998958756537, -1.9247544441857607, -1.9584795623825795, -3.442793225939769, -2.4164892115757675, -1.513955834871233, -7.0, -3.419955748489758, -2.2170681524330766, -2.6511395051524786, -7.0, -2.6754919244099264, -2.8195439355418688, -3.1032904715577496, -2.6113249335884254, -1.8164738850726685, -1.4142348088269365, -1.6811308843113666, -1.6667690244306506, -3.4095950193968156, -7.0, -1.4909429692613971, -1.7617608341954742, -2.3479801568783407, -1.3006887927013713, -2.115523938469208, -1.8627153701879953, -1.8554605345592676, -2.3326424498122176, -1.844108633096734, -7.0, -2.2710211507221385, -3.4235735197327357, -7.0, -2.7613263224214566, -2.745465168670727, -2.0482897721854596, -7.0, -2.9492273190678455, -7.0, -1.7430413347300022, -3.4191293077419758, -2.6236922220853542, -2.5199919713052874, -2.428620672671939, -2.694312646223346, -2.4320066872695985, -2.1221378309221084, -1.522566190763858, -1.5370508399960496, -3.4885507165004443, -2.9492273190678455, -1.6648664026559605, -7.0, -7.0, -2.145783220668538, -2.2684219472783616, -2.09373996621855, -2.671018481781557, -2.166562368053224, -1.8321894610685132, -2.4148062795010126, -2.280545852343135, -3.4058583993176366, -1.5371191843949479, -2.8129133566428557, -7.0, -2.4339748638984138, -2.039672704763951, -7.0, -1.9202393082601417, -1.8430534957192342, -2.8190171986890595, -7.0, -7.0, -2.8527848686805477, -2.288661889613078, -1.745089958408157, -2.0019067040408847, -3.1487568513217923, -2.704322140822235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7061201097027037, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6401334644944923, -7.0, -7.0, -3.230704313612569, -4.103991760529103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.343014497150768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05922251252969, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.574429992161969, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.088773767310448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.822788990355016, -7.0, -7.0, -7.0, -3.964479629577269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.218841731507062, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7424108805804925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2132520521963968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.433489811682095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9452496866988067, -7.0, -7.0, -4.200622533946479, -7.0, -7.0, -3.117602691690084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.981969534880924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.444513206334043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6746805297242355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5420781463356255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3934267011372112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8367986680925994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021420172059839, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.355063412785068, -7.0, -7.0, -4.554149829550869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3466720399800094, -4.151055585657497, -7.0, -7.0, -7.0, -3.4488608456074408, -2.716003343634799, -7.0, -3.1704678690973567, -7.0, -2.6788975762019875, -3.1514266037049206, -4.362199638868886, -4.506572674252514, -3.201840752085797, -3.5955623530058514, -4.4013660715976775, -3.0902771226811176, -4.026533264523296, -4.315308959193267, -7.0, -3.7614801984190636, -7.0, -3.245674792956368, -2.565187822933127, -7.0, -7.0, -4.461378456425079, -7.0, -3.2187387393887366, -3.0097757327440036, -4.589379844241917, -7.0, -2.6776898887432607, -2.319768310036801, -7.0, -7.0, -7.0, -3.039310641815175, -3.9946690218255294, -3.2764618041732443, -7.0, -3.62015688394582, -7.0, -7.0, -4.0790002523038495, -7.0, -7.0, -7.0, -3.3725438007590705, -3.6189541113654435, -3.6851443595783593, -3.7623033632877685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.668944734457734, -4.080076055960704, -4.475630516702674, -7.0, -7.0, -3.0437551269686796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2439470470774965, -4.035269600099436, -7.0, -7.0, -7.0, -7.0, -3.0640257837025393, -7.0, -7.0, -7.0, -4.094913466730015, -7.0, -4.6407000199084365, -7.0, -7.0, -3.675044735955893, -3.7404811172953423, -7.0, -7.0, -7.0, -2.4268364538035083, -3.496514518697745, -2.134629995670311, -7.0, -3.2796669440484556, -2.05482190018818, -2.2332782113971383, -3.2431621151010512, -2.145889346756647, -7.0, -7.0, -2.750058182093764, -2.488198061603354, -2.927088432084736, -3.2304489213782737, -2.4071075149129415, -2.3179026933918885, -2.718501688867274, -2.374565060722765, -2.0119419037067887, -7.0, -2.2047227509440854, -2.531711098005766, -1.744697542520262, -2.305351369446624, -7.0, -7.0, -7.0, -2.572639297042813, -2.093421685162235, -7.0, -2.4353230387678386, -2.9571868900861062, -2.486794348864476, -7.0, -2.0148679975258963, -7.0, -1.7170727716115393, -7.0, -2.36688968965338, -7.0, -2.443393386643552, -2.760045327965811, -3.1436392352745433, -3.193773698800548, -7.0, -1.6901176379652818, -3.1784013415337555, -1.8949534731079374, -7.0, -2.446640706109038, -7.0, -2.959756672990995, -1.9079845757798979, -2.1807708138746293, -3.018284308426531, -7.0, -2.9486085498764365, -2.648786776141029, -0.8585931489330124, -2.3251636753807006, -2.4059721038560276, -7.0, -3.1802513549450664, -3.1316186643491255, -1.9975501969906566, -3.09377178149873, -2.294466226161593, -3.6593932114138483, -7.0, -2.1091659155366207, -2.1829849670035815, -7.0, -7.0, -2.1633017189698065, -7.0, -7.0, -2.8281072417647883, -3.1855421548543754, -7.0, -3.7777891874348675, -2.625312450961674, -3.539828558377898, -3.222456336679247, -2.419237193590724, -1.707064005315809, -2.0066442874731183, -2.190705124231049, -7.0, -7.0, -2.854216046570607, -0.9478593213085527, -7.0, -1.7856769928884877, -3.2139874522473995, -2.1609399149830604, -2.1530073751464793, -2.8500113496270156, -2.394721010746106, -7.0, -2.154783499881748, -7.0, -7.0, -7.0, -7.0, -2.409087369447835, -7.0, -7.0, -7.0, -2.517342544745865, -7.0, -2.005642422654947, -3.020775488193558, -7.0, -2.833147111912785, -7.0, -1.9949034429806192, -2.079181246047625, -1.915679114299964, -7.0, -7.0, -2.427323786357247, -7.0, -7.0, -7.0, -3.0780941504064105, -3.0637085593914173, -7.0, -3.730378468587643, -1.2411575891607545, -2.2533380053261065, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9719602465585666, -7.0, -7.0, -3.3461573022320086, -1.1944804985563715, -7.0, -7.0, -7.0, -7.0, -7.0, -1.2529312892884035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8843138059182074, -7.0, -7.0, -7.0, -7.0, -3.672005445022952, -7.0, -7.0, -7.0, -7.0, -7.0, -3.44440915878158, -7.0, -7.0, -7.0, -3.97683696867815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5633861472626736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.34411706783031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2598326990634834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.824776462475546, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4421268594394014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.523681447800753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0277572046905536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.773859552376687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5659658174466666, -3.8100644148453546, -7.0, -7.0, -7.0, -4.4386372661686115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.980321586008756, -7.0, -7.0, -7.0, -7.0, -7.0, -3.711132072306842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1631613749770184, -3.133858125203335, -7.0, -7.0, -7.0, -4.0888445627270045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6173149332982937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313234291694724, -7.0, -3.878866336956725, -7.0, -7.0, -3.3516766956918618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.815577748324267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.397592434038117, -7.0, -3.0718820073061255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0786380383696725, -2.8847953639489807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.451642158270915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.525821952156663, -7.0, -7.0, -7.0, -7.0, -7.0, -2.510545010206612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4187154968655955, -7.0, -3.4608158668890816, -7.0, -7.0, -7.0, -3.0500896140736904, -7.0, -7.0, -3.256958152560932, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0318122713303706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4831592097169795, -7.0, -7.0, -7.0, -4.133826214076394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.737472675456183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7346830422588, -7.0, -2.5757649805367193, -7.0, -7.0, -7.0, -7.0, -7.0, -2.803798407989674, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0128372247051725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7766077995980156, -4.449162012678147, -4.276921132065774, -7.0, -3.5308717578869526, -7.0, -2.5222811794469977, -4.404029356425098, -3.0193719645920116, -7.0, -2.868918601850143, -3.624580005156098, -3.513236630960425, -3.628729419665481, -3.0567316531360103, -3.683969609180228, -3.7925317619013077, -3.5413199722505695, -3.311245120878208, -4.311255725712636, -3.92272545799326, -3.801571769357205, -3.5897821032911432, -3.163679503398851, -3.0433622780211294, -4.165570740632901, -3.6744835066510486, -3.199785640163872, -7.0, -3.1046236604353257, -3.2308829988575924, -3.806801565307348, -3.2449200439124537, -2.8436574052692456, -2.5140826625258312, -3.7689585865041044, -3.7633905527696125, -3.510659887731922, -3.014117838691425, -7.0, -7.0, -4.274561924706311, -3.8340178035693295, -2.6815427260943268, -7.0, -4.064869625059806, -7.0, -4.246437026762404, -3.330075405991285, -7.0, -4.082641778157131, -3.849665055478733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1955398965493185, -7.0, -7.0, -3.758684849882441, -4.504353041020471, -4.872470949349374, -7.0, -7.0, -7.0, -4.314162271709985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.608793373986931, -3.868526886768204, -7.0, -3.9378186846983563, -7.0, -7.0, -7.0, -7.0, -2.8870543780509568, -7.0, -7.0, -2.9822712330395684, -2.9081989694812487, -1.9969492484953812, -7.0, -2.480581786829169, -2.946452265013073, -2.2858786515913603, -2.925441019653158, -1.7339376451385384, -7.0, -7.0, -2.480349203580037, -2.0796979557836552, -3.233361678159449, -2.4176377396522297, -2.281790637678311, -3.068371418032643, -2.6910814921229687, -2.2559300290470774, -1.9734165172739373, -2.2047227509440854, -7.0, -2.623766000133931, -2.504130905935453, -2.2023066418924566, -3.0025979807199086, -2.8915374576725643, -7.0, -2.572137583183095, -2.941511432634403, -7.0, -3.026358134008697, -2.880004941816317, -2.1261290246570215, -2.7701152947871015, -2.309138605990394, -7.0, -2.9352552817840474, -7.0, -7.0, -7.0, -2.6257532845118607, -2.583765368285, -2.09429639740537, -2.6783160050933468, -7.0, -2.263513634396092, -1.8348973393414871, -0.5661427555146684, -7.0, -2.6368220975871743, -2.541579243946581, -2.4572761860613257, -2.7465344047134894, -2.623766000133931, -2.5165353738957994, -2.845098040014257, -2.9093420383613084, -2.2128369682837645, -2.1709947020363, -2.5658478186735176, -2.5832859904528807, -2.965201701025912, -3.021013027860414, -2.9867717342662448, -1.941697731835903, -2.932980821923198, -1.548639607424759, -3.640729818150714, -7.0, -2.78406228363478, -2.761927838420529, -7.0, -2.6483600109809315, -1.4732145313868534, -2.7442929831226763, -7.0, -2.488752105088288, -7.0, -7.0, -3.1465156256030298, -7.0, -3.4888326343824008, -2.060697840353612, -2.3541852986258607, -2.034583897605951, -2.364446760508421, -2.112381541544101, -7.0, -7.0, -2.70819113900254, -1.8864907251724818, -2.3642382157351927, -1.5401208298279834, -3.064541179435372, -2.315970345456918, -2.6103823923852376, -3.1131631489984994, -2.5803546611065915, -7.0, -2.4774830160749435, -7.0, -7.0, -2.9523080096621253, -7.0, -1.6861612792710872, -7.0, -2.829303772831025, -7.0, -2.0609414155040815, -7.0, -2.9809119377768436, -2.2168254232660476, -2.367355921026019, -2.9912260756924947, -2.859738566197147, -1.6957005197711714, -2.3811150807098507, -2.6148972160331345, -7.0, -7.0, -1.6401500409361018, -7.0, -7.0, -7.0, -7.0, -2.586587304671755, -7.0, -7.0, -2.3214887739865633, -3.510276844417355, -7.0, -7.0, -2.5081929260254405, -7.0, -2.7427251313046983, -3.5081480005591854, -7.0, -7.0, -2.562768543016519, -2.225853169689125, -2.81424759573192, -7.0, -7.0, -7.0, -2.7427251313046983, -2.33568073008468, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7959341597745686, -7.0, -7.0, -7.0, -7.0, -3.8452841263479915, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1819660221367885, -7.0, -7.0, -2.7122888420452504, -3.5705596175371634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5899049414992605, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4559102403827433, -7.0, -7.0, -7.0, -7.0, -4.086146190685901, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8360074591255313, -2.525326542033364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.126488570700374, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5199591807520685, -7.0, -7.0, -7.0, -7.0, -2.47928731647617, -7.0, -7.0, -7.0, -7.0, -3.4628470358316736, -7.0, -3.5146805441249818, -3.18440748541232, -7.0, -7.0, -7.0, -7.0, -3.0469704624639555, -3.2060158767633444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.924795995797912, -7.0, -7.0, -7.0, -7.0, -3.2287852009806493, -7.0, -7.0, -3.5073160400764136, -7.0, -3.549677489710556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9981866592365316, -3.1819292955032332, -7.0, -3.5052856741441323, -7.0, -4.058501943429649, -7.0, -7.0, -2.733770288651772, -7.0, -7.0, -3.4743619760326307, -3.485863329597335, -7.0, -7.0, -3.119292555619459, -7.0, -7.0, -7.0, -7.0, -7.0, -3.394568410965853, -3.421027775667483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.717504074764202, -7.0, -7.0, -7.0, -7.0, -4.163578765188774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.449914523871852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3347552398696707, -7.0, -3.2157256645575676, -7.0, -7.0, -2.1640064186301355, -3.4668676203541096, -2.3649528098608803, -7.0, -2.7402310651617, -2.4911069009364373, -7.0, -3.497067936398505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4913616938342726, -7.0, -7.0, -7.0, -2.7166524440808852, -7.0, -7.0, -3.1560946306394277, -3.4586378490256493, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5674185056727485, -7.0, -2.771881320190099, -4.31251887678985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0124082212308045, -7.0, -7.0, -7.0, -7.0, -7.0, -3.470410490975931, -7.0, -7.0, -7.0, -7.0, -3.4067955726682504, -2.2217792569396897, -7.0, -7.0, -7.0, -7.0, -2.667319508586583, -2.4772949377781273, -7.0, -2.868950945128882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.61394747678035, -7.0, -7.0, -7.0, -7.0, -7.0, -3.227629649571009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.57978359661681, -7.0, -7.0, -3.1762359997608716, -3.115671015224398, -7.0, -7.0, -3.6212282277689853, -7.0, -7.0, -7.0, -7.0, -2.0860259719918854, -2.809963521714014, -7.0, -7.0, -7.0, -3.481299273332856, -3.5629416965348217, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5264685124694775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0655797147284485, -3.7113009599161657, -4.094847356300792, -7.0, -3.5816083660320572, -3.974695871909683, -7.0, -7.0, -7.0, -7.0, -2.774395297572017, -3.729974285699556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2501585103901642, -7.0, -7.0, -2.972094463035642, -3.813276972408157, -7.0, -7.0, -7.0, -2.192474526304651, -3.038449839253787, -4.441805069695703, -2.599729355835965, -7.0, -2.5573445996041952, -3.905558437120276, -3.534624345371937, -3.497929599454888, -2.3775043562510274, -7.0, -3.2022959527507755, -2.4065217679829454, -4.098643725817057, -3.85782481981019, -4.028327198467569, -4.1562630271060215, -3.5262961904825314, -3.13080579429975, -3.8596485787364037, -4.229041573173397, -3.873543408844003, -4.489283322690485, -7.0, -2.733737564808792, -2.528036670631238, -3.765104169387963, -3.9977357765978985, -3.2932151863754866, -2.993142192245416, -7.0, -7.0, -3.4434542262000387, -3.7345598215794764, -4.0718083918331285, -7.0, -4.601418934071117, -1.8103072096251425, -2.3241741119063604, -7.0, -7.0, -7.0, -3.7297315952870354, -3.4633454229438665, -3.330007700872759, -4.158362492095249, -3.9151887051731564, -3.284374328300976, -7.0, -3.602005701124516, -7.0, -7.0, -7.0, -3.953977026127774, -2.9891827512555476, -7.0, -2.187311774726153, -3.250969731009272, -5.180166032638616, -7.0, -7.0, -7.0, -2.4597542491145123, -7.0, -7.0, -2.8230175234460493, -7.0, -3.1701149694966517, -2.9524897355097743, -4.106054840093787, -4.333628612518691, -7.0, -3.8506462351830666, -7.0, -2.737782385855657, -7.0, -3.4888326343824008, -2.7504170360248934, -2.13268651460904, -7.0, -3.8811182534521094, -3.5877109650189114, -7.0, -2.675123395867703, -4.11143055176598, -7.0, -7.0, -7.0, -7.0, -3.8594985581877763, -1.3601736010625614, -7.0, -1.8904675944331004, -1.6457354385455876, -1.802107049908688, -2.383498555402076, -1.5755524408482517, -3.490520309363349, -3.4679039465228003, -2.2912981981773917, -2.652522609767031, -2.4260075068343268, -1.993925852287807, -1.8461308454520247, -2.820951698466259, -0.8720557532519746, -2.166093107068167, -1.7872520498458428, -2.531711098005766, -2.623766000133931, -7.0, -3.2534591643398376, -2.2915557844830508, -3.042181594515766, -3.0112884341835358, -7.0, -2.098690486999541, -3.5021538928713607, -2.986622466527397, -2.71968440507334, -1.3363544940555752, -2.389219108536737, -2.681693392004564, -2.3712438324856118, -3.506505032404872, -2.523638096385075, -2.8816699076720615, -7.0, -2.6251654069508215, -1.6115765241815292, -7.0, -2.4380146519023493, -2.7396382614999117, -7.0, -1.9901888852467187, -2.2077241069247497, -1.8084360542881113, -7.0, -2.6524880857810116, -2.3950350180286306, -2.365838835440669, -2.934552554328816, -3.1965906541173066, -2.7715874808812555, -2.5725812013324862, -3.326745379565322, -1.7825714622372415, -2.9417598138146954, -7.0, -1.6577013855925506, -3.031139050792672, -1.6753495516750914, -1.7061945193192638, -2.2772270809913566, -1.2807300889659174, -2.9171114724936964, -3.4411057288794913, -7.0, -2.508978370335467, -2.3899251194809668, -7.0, -2.1769176998034636, -2.1213708020384168, -2.756027212973441, -7.0, -1.8818879143670435, -2.5359267413955693, -2.9250541203118425, -2.2120210485124043, -2.8580557180503643, -2.6503075231319366, -2.855034316675884, -1.8147063437620037, -1.8231911528255964, -2.6879251249656204, -2.397224110388342, -2.9807606420143298, -7.0, -1.9991055550292, -2.4533183400470375, -2.3950350180286306, -1.8564416356431923, -2.1239275732134377, -0.9727835222753004, -1.9222366116209038, -2.6834273048663455, -2.3193143040905118, -3.1715802019320636, -2.9426280309747153, -3.4709981696608736, -7.0, -2.4610344348262077, -3.085290578230065, -2.700310298799515, -3.4626974081017172, -2.32413541128684, -7.0, -1.9055313408689762, -3.4670158184384356, -3.0356965038452106, -7.0, -3.4781334281005174, -7.0, -2.878234468675044, -2.5902286212401577, -1.975687050645263, -2.833784374656479, -3.228400358703005, -3.4740705032150436, -2.466496903744401, -3.4559102403827433, -7.0, -7.0, -7.0, -2.444044795918076, -7.0, -2.4126405161383464, -2.991964044403458, -3.4424797690644486, -2.7774268223893115, -3.4551495211798278, -1.755966643579819, -3.4641913706409997, -7.0, -2.789963270670173, -7.0, -7.0, -2.6609708253620337, -2.9642596301968487, -3.5575072019056577, -3.4551495211798278, -7.0, -2.89707700320942, -7.0, -2.839617691903345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.187370289770912, -7.0, -7.0, -7.0, -7.0, -3.6909045540549665, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4551495211798278, -7.0, -7.0, -7.0, -4.1821863167395446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.088691158069201, -7.0, -7.0, -2.942008053022313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.829089253448099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.04945061813155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.304023525101023, -2.335959106148248, -7.0, -7.0, -7.0, -2.7198834733033834, -7.0, -7.0, -4.1181323999209045, -7.0, -7.0, -7.0, -4.7413328454741555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9849771264154934, -7.0, -7.0, -3.3873898263387296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1640552918934515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.255979668208399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.288305130120162, -7.0, -7.0, -4.199023425636544, -7.0, -7.0, -7.0, -7.0, -3.1248301494138593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5854607295085006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.813247300897605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.373095987078727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1664301138432824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.915135906622012, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6020464194133406, -7.0, -7.0, -7.0, -3.3712526291249394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7679823068299627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.401076422394576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.132966923692817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7787712283360455, -3.973589623427257, -7.0, -7.0, -3.7384158516303687, -2.5738657906893656, -7.0, -7.0, -3.783482732017722, -7.0, -3.0993352776859577, -3.8823309691042955, -4.1844358883083705, -4.028211902948119, -3.256906648066348, -7.0, -4.398339375914612, -3.481136746915929, -7.0, -7.0, -7.0, -4.501367406054805, -7.0, -3.7096514974674624, -3.490590487028833, -7.0, -4.631017382942784, -7.0, -7.0, -3.2937279257888608, -3.634426885047629, -3.6841718627005906, -7.0, -3.7158919717962857, -3.353852142602988, -7.0, -7.0, -7.0, -3.620448384711709, -7.0, -7.0, -7.0, -4.315634529100032, -3.7777891874348675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.612819163778972, -4.15712419550487, -3.447778009294621, -2.6792006957270504, -7.0, -7.0, -7.0, -7.0, -4.201287854101759, -7.0, -7.0, -7.0, -4.283432402016652, -7.0, -7.0, -7.0, -7.0, -4.61740926653153, -7.0, -4.9449216798358355, -7.0, -7.0, -7.0, -3.104145550554008, -4.028205119905443, -3.988157472556753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.967910516906905, -7.0, -4.638958241356926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5535698523148875, -4.092685562937491, -2.7117650624814313, -7.0, -7.0, -2.5599066250361124, -2.8652520716525895, -3.1107580088798876, -2.7440320672350427, -7.0, -7.0, -3.341895943969397, -2.4216039268698313, -2.7631952011483123, -2.8816699076720615, -2.8341026557127935, -2.018769824946525, -2.638988159343682, -2.1631613749770184, -2.3988744062580363, -1.744697542520262, -2.504130905935453, -3.2534591643398376, -7.0, -2.0078011016525847, -7.0, -7.0, -2.907411360774586, -2.86457040685343, -2.3324384599156054, -7.0, -2.896482704641704, -3.1018746733792106, -3.0824575360795645, -2.9020028913507296, -2.1108956592248314, -7.0, -1.7961115793233833, -7.0, -2.402547950912391, -7.0, -3.5021538928713607, -1.9012766462284751, -2.78354628227035, -2.8756399370041685, -7.0, -2.28024859203978, -3.1248301494138593, -2.2762850101622933, -7.0, -2.478566495593843, -2.957607287060095, -3.2174839442139063, -2.285736493934199, -1.8980497623524202, -7.0, -7.0, -7.0, -2.8013413337900444, -1.5221180641467127, -1.7055216134226672, -2.7615102073835347, -3.0538464268522527, -3.23151984311686, -3.071513805095089, -1.92067396499224, -7.0, -2.606381365110605, -7.0, -7.0, -2.031951963271931, -1.9506893179563278, -7.0, -7.0, -2.520577100441661, -7.0, -7.0, -3.657915936829955, -3.132899769944483, -7.0, -2.722035308404712, -7.0, -3.5173278822943734, -2.696065013692612, -2.593286067020457, -1.896595103917157, -1.7462448717201984, -2.029789470831856, -7.0, -7.0, -3.6806074289917876, -1.8601187950839286, -2.957607287060095, -2.4245186658770486, -3.2830338249835074, -2.6704777860472753, -2.4757165762621733, -3.391111613702803, -2.193750533339446, -7.0, -1.547968919216163, -7.0, -1.9378520932511556, -7.0, -3.1931245983544616, -2.9339931638312424, -7.0, -2.946452265013073, -7.0, -2.719242477232849, -7.0, -1.9107768156582345, -7.0, -7.0, -3.0751818546186915, -7.0, -2.7122286696195355, -2.588691788592222, -1.8380201260230709, -7.0, -7.0, -2.3096301674258988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.716003343634799, -2.2135754974048063, -2.535167485114944, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5920434496293616, -7.0, -7.0, -3.3104808914626753, -2.1153544418072685, -2.8788089323592057, -7.0, -7.0, -7.0, -7.0, -2.1339644786952103, -2.886490725172482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.188937853551512, -7.0, -7.0, -7.0, -7.0, -3.7054360465852505, -7.0, -7.0, -7.0, -7.0, -7.0, -3.24149667332751, -7.0, -7.0, -3.2286569581089353, -4.103946182653774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.266772463513072, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.863521122841043, -3.4641913706409997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7504955381044454, -7.0, -7.0, -2.967079734144497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.989894563718773, -7.0, -7.0, -7.0, -2.352325472188329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8974542815321183, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0224283711854865, -7.0, -7.0, -7.0, -3.9970804354717306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.101953177477199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6203362921859834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0847549631793543, -7.0, -3.054175147303347, -7.0, -7.0, -3.563544974376491, -7.0, -7.0, -7.0, -3.140193678578631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5018197150156265, -7.0, -3.1920095926536702, -7.0, -3.0013009330204183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1419198739138805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.009450895798694, -7.0, -7.0, -7.0, -7.0, -7.0, -4.452795036470653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.541745608431244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2586372827240764, -7.0, -7.0, -3.359076226059263, -7.0, -7.0, -7.0, -7.0, -7.0, -3.749968083509403, -7.0, -4.030410798533004, -7.0, -7.0, -7.0, -1.9887772958912515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.533772058384718, -7.0, -7.0, -3.031408464251624, -3.8367143411134936, -7.0, -7.0, -3.8085485512404054, -7.0, -7.0, -7.0, -7.0, -3.3085644135612386, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100587638089793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2060158767633444, -4.392842386388172, -7.0, -7.0, -3.9519200735202937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4923412532549745, -7.0, -7.0, -3.584115257228258, -4.150994239213408, -7.0, -2.82052984852352, -3.96296881959362, -3.447623097760286, -2.756940236046724, -7.0, -3.3586010159430195, -7.0, -3.214995143810212, -3.9811614606115753, -7.0, -4.205461507107036, -2.8252894289691803, -7.0, -4.401228167498113, -3.403492287455705, -3.5489214662854756, -4.315224901518623, -3.6406801532776654, -5.104019104958513, -3.9114239653762946, -3.8869769191447054, -7.0, -4.176583180765493, -4.632710303832954, -4.46125835286184, -7.0, -3.596394067309122, -3.1262813018154407, -3.987163318162591, -3.9534697432534016, -4.197749067622612, -3.841797298874355, -7.0, -7.0, -7.0, -3.1970219725378053, -7.0, -7.0, -3.97780359953627, -3.841922311679451, -3.312318429847517, -7.0, -7.0, -7.0, -4.074926097123956, -3.832189461068513, -7.0, -3.1411360901207392, -3.5599066250361124, -3.761702367541413, -7.0, -7.0, -7.0, -7.0, -7.0, -4.205826659359341, -7.0, -7.0, -4.367914738793752, -4.138040914556538, -7.0, -7.0, -7.0, -7.0, -3.9201024462463967, -7.0, -7.0, -3.6760531246518715, -7.0, -7.0, -7.0, -7.0, -4.292942423054936, -7.0, -3.71281800020785, -7.0, -4.1784301399477375, -7.0, -7.0, -4.311743268378236, -3.7267504887286442, -7.0, -4.339570682001439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8122446968003691, -3.143708561554825, -2.0043213737826426, -7.0, -2.7997998773461115, -1.9145194487727255, -2.2838663484734685, -2.42717806043141, -1.8913677498314387, -7.0, -7.0, -2.245577599335823, -2.2401925382158083, -1.7066415383751545, -2.624797578960761, -2.100370545117563, -2.01137522581669, -2.0349730482929402, -0.6067195539755574, -1.5864549179973864, -2.305351369446624, -2.2023066418924566, -2.2915557844830508, -2.0078011016525847, -7.0, -2.0543576623225928, -7.0, -1.4852480809503588, -2.0977924267526817, -1.9109799468508541, -2.9934362304976116, -2.513333427374107, -2.4302048853621963, -2.5090226886261187, -7.0, -1.8598263408763092, -3.1078880251827985, -1.4033211139451396, -7.0, -7.0, -3.015778756389041, -2.374879216730366, -1.8160462429564344, -2.1818435879447726, -2.3659557226656793, -7.0, -1.8559382914396632, -2.170848203643309, -1.4815125406856344, -7.0, -1.7481880270062005, -2.3287872003545345, -2.7812765493758462, -2.4403383022601792, -2.037426497940624, -2.7130703258556395, -3.0318122713303706, -3.04493154614916, -1.994397711264469, -2.0442036624920537, -1.7966346560776567, -1.900615367864088, -7.0, -2.521372256190692, -2.8273692730538253, -1.94420840975905, -2.789228057267335, -2.233313461142046, -3.114468006623671, -7.0, -2.053304461954253, -1.4053219622946371, -7.0, -2.801403710017355, -1.7821141474790712, -2.9689496809813427, -3.0034605321095067, -2.557414651136655, -2.579497782534824, -7.0, -2.3107299261343788, -2.4461227639106142, -3.538824988937904, -7.0, -1.9348642345397662, -1.7533557390856211, -1.5719120796713575, -1.519298927858262, -7.0, -2.976808337338066, -2.438361496362737, -1.8325089127062362, -2.070243158259842, -1.7133855268966218, -2.570092108028933, -2.0244424564676597, -1.9912260756924949, -2.7054470176347998, -1.841263185235105, -7.0, -2.078902762882005, -7.0, -7.0, -3.104487111312395, -2.456619044777273, -2.4755501306283416, -7.0, -7.0, -7.0, -1.9792447784093805, -7.0, -2.076872040931254, -7.0, -2.330819466495837, -2.2833012287035497, -2.562689299428688, -1.864065879090237, -2.002975557763293, -1.3047175819263184, -3.163757523981956, -7.0, -1.728213799914649, -7.0, -7.0, -7.0, -3.0751818546186915, -7.0, -3.079543007402906, -2.6867174989421154, -2.272394214426179, -2.778633531923382, -7.0, -7.0, -2.8695250628572273, -7.0, -7.0, -2.499797903125245, -2.6720978579357175, -7.0, -2.2992496924024803, -1.968482948553935, -1.7977468064470243, -7.0, -7.0, -3.091315159697223, -7.0, -1.815307890596743, -2.971739590887778, -7.0, -2.6603910984024672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.661916752355482, -7.0, -2.6989700043360187, -7.0, -7.0, -2.5171015988546297, -1.5910646070264993, -2.649334858712142, -2.808885867359812, -7.0, -7.0, -3.9181876613589255, -7.0, -7.0, -7.0, -3.1466160554402265, -7.0, -7.0, -7.0, -2.8135809885681917, -2.298853076409707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7405995128111567, -7.0, -7.0, -7.0, -7.0, -2.7481880270062007, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2534995431676204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9208925777394548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7054360465852505, -7.0, -7.0, -2.926342446625655, -7.0, -1.6743252109433453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.886776612422209, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7846172926328756, -2.8382192219076257, -7.0, -7.0, -3.977220446635385, -7.0, -7.0, -7.0, -7.0, -7.0, -3.404149249209695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -2.734799829588847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.952671385348004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2725377773752373, -7.0, -7.0, -3.0393956715301442, -7.0, -7.0, -7.0, -7.0, -2.7218106152125467, -7.0, -2.583765368285, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9077695418108918, -7.0, -3.0461047872460387, -2.443262987458695, -2.747411807886423, -7.0, -2.7075701760979367, -2.5599066250361124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7015679850559273, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3811150807098507, -2.746244871720198, -7.0, -5.1504279092018646, -7.0, -7.0, -2.4065401804339555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.397853141088609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8344207036815328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8099803388636957, -7.0, -7.0, -7.0, -7.0, -7.0, -1.2348502205820062, -7.0, -3.103461622094705, -2.9387698227831174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.870403905279027, -7.0, -7.0, -7.0, -4.309214834458301, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9041743682841634, -7.0, -2.2947417063369593, -2.4573771965239053, -7.0, -7.0, -7.0, -2.8175653695597807, -5.099117557629357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.966517176446792, -7.0, -4.831487439682331, -7.0, -7.0, -3.247138226100887, -2.037758400503131, -7.0, -2.9380190974762104, -7.0, -7.0, -3.4768316285122607, -2.215174739097536, -7.0, -2.682145076373832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.307496037913213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.434600836278021, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6995949385452396, -7.0, -7.0, -4.177680759848778, -7.0, -7.0, -7.0, -7.0, -7.0, -4.787028090288343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1577588860468637, -7.0, -4.30977916448048, -3.75724415102197, -7.0, -7.0, -7.0, -4.546653690487702, -3.501675331410371, -2.6766936096248664, -3.4779167323046356, -4.148664339982236, -7.0, -7.0, -7.0, -7.0, -2.8318697742805017, -7.0, -7.0, -3.400192488592576, -7.0, -7.0, -4.5040447413439955, -5.173308669740682, -7.0, -7.0, -2.815577748324267, -3.5350830413110805, -7.0, -7.0, -3.633367445117007, -7.0, -7.0, -7.0, -4.01678271248684, -7.0, -7.0, -3.6737579365495767, -7.0, -3.5632140189832664, -7.0, -2.8512583487190755, -3.493865396394858, -3.867726690780445, -7.0, -3.937136588642368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.167317334748176, -7.0, -3.098903186831587, -2.028706779135174, -2.0407848551333188, -7.0, -3.123851640967086, -2.825339553190717, -3.143327129992046, -2.5563025007672873, -7.0, -2.799409479615127, -2.415529779157638, -3.074084689028244, -1.8289461816359327, -1.9493900066449128, -7.0, -3.7668588110214176, -2.5859117103194342, -2.5725812013324862, -7.0, -3.0025979807199086, -3.042181594515766, -7.0, -2.0543576623225928, -7.0, -2.2461291256634364, -2.725094521081469, -3.2464985807958007, -7.0, -7.0, -4.4733117571189815, -3.798670372205142, -7.0, -7.0, -7.0, -2.0718820073061255, -2.9177680024477564, -1.5811260844923194, -7.0, -2.292994040067439, -2.1137914745357826, -1.8344207036815325, -2.1903316981702914, -2.780934207814762, -2.7267272090265724, -3.724930914192398, -7.0, -2.3394514413064407, -2.6848453616444123, -7.0, -1.6685292718594495, -7.0, -4.337758671493417, -7.0, -1.715243423087623, -2.0962145853464054, -7.0, -3.525239223729745, -7.0, -2.2346859743215286, -3.6933751510251853, -2.3268476989159903, -2.6554958892506404, -2.476155081947642, -2.7456992266025058, -2.89707700320942, -7.0, -7.0, -7.0, -2.691161894693207, -2.432969290874406, -2.8488047010518036, -2.0644579892269186, -2.835056101720116, -7.0, -1.7371926427047373, -1.8114493237739548, -1.5030242056865204, -7.0, -1.900608068735828, -3.0941215958405612, -2.1951710924633283, -2.0788191830988487, -2.7076475835452323, -2.91053547390048, -2.460038278929382, -2.159983427793689, -2.7007037171450192, -7.0, -7.0, -3.141763230275788, -2.3194530784907674, -7.0, -3.204662511748219, -3.204662511748219, -2.9701608430373136, -3.2879584058601505, -1.809596708926521, -2.0726174765452363, -7.0, -1.6720978579357175, -7.0, -2.214843848047698, -1.4241553915088128, -7.0, -2.724275869600789, -7.0, -7.0, -2.6808791744268112, -7.0, -7.0, -7.0, -2.1965906541173066, -7.0, -7.0, -2.39909658587198, -3.4533183400470375, -2.6027832129470583, -1.8177856558855299, -2.4807253789884878, -2.5869621812439334, -7.0, -7.0, -7.0, -2.8721562727482928, -7.0, -7.0, -2.913195513751178, -7.0, -3.5010592622177517, -2.8000293592441343, -7.0, -7.0, -7.0, -2.6857417386022635, -3.4396258846219, -7.0, -7.0, -2.5462958351214424, -3.500236474825639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659764122861992, -7.0, -7.0, -7.0, -3.618048096712093, -3.643847310299714, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4287825114969546, -7.0, -7.0, -3.009450895798694, -3.5770664885839754, -7.0, -7.0, -2.416640507338281, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6374897295125104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4456042032735974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.411030146797094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5397032389478253, -2.174277918292213, -7.0, -7.0, -7.0, -3.7315887651867388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.220970587520289, -7.0, -2.334453751150931, -7.0, -7.0, -7.0, -7.0, -2.1789769472931693, -7.0, -2.8273692730538253, -2.3607826898732798, -7.0, -2.6444385894678386, -2.7895807121644256, -7.0, -3.7417816961431667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4653828514484184, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4076741092293186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4878451201114355, -2.709269960975831, -3.3647760572774246, -2.56702636615906, -7.0, -1.7187783976895714, -1.9242792860618816, -7.0, -7.0, -2.7502511875699738, -4.101128175838757, -7.0, -7.0, -7.0, -3.6232095180198423, -7.0, -3.0187004986662433, -7.0, -2.8068580295188172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6854730197227594, -3.4274861090957858, -3.137354111370733, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8208579894397, -7.0, -7.0, -7.0, -7.0, -2.499687082618404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9800033715837464, -2.8129133566428557, -7.0, -7.0, -2.541579243946581, -7.0, -7.0, -3.7746953507239045, -7.0, -7.0, -7.0, -7.0, -2.4653828514484184, -7.0, -7.0, -2.767897616018091, -7.0, -3.3842339054735975, -7.0, -7.0, -3.15243660570801, -7.0, -7.0, -2.194514341882467, -7.0, -7.0, -7.0, -7.0, -7.0, -2.74350976472843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3230457354817013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.017629488303718, -7.0, -7.0, -5.149730108964738, -7.0, -7.0, -1.7435097647284297, -7.0, -7.0, -2.429752280002408, -2.6893088591236203, -7.0, -7.0, -7.0, -7.0, -7.0, -2.439332693830263, -7.0, -7.0, -2.640481436970422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.427323786357247, -7.0, -7.0, -7.0, -3.302330928684399, -7.0, -7.0, -2.741151598851785, -4.498434620204358, -7.0, -7.0, -7.0, -3.3220124385824006, -7.0, -3.0178677189635055, -2.272421826371504, -7.0, -7.0, -7.0, -7.0, -2.59659709562646, -2.8926510338773004, -1.8512583487190755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.438858659420562, -7.0, -7.0, -7.0, -4.306789467495679, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4705574852172743, -7.0, -3.13481437032046, -7.0, -7.0, -7.0, -7.0, -7.0, -4.797295246134027, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8819549713396007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.433193591714845, -7.0, -3.085290578230065, -3.3694014136966244, -2.5642714304385623, -7.0, -2.5037906830571814, -7.0, -2.386498965550653, -2.9648879044212895, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4899584794248346, -7.0, -7.0, -2.4742162640762553, -7.0, -3.085290578230065, -7.0, -7.0, -4.6187591293929335, -7.0, -4.27009628142033, -7.0, -7.0, -7.0, -3.704236337308788, -7.0, -4.131722895345994, -7.0, -4.034427905025403, -7.0, -7.0, -7.0, -3.917558020825436, -7.0, -4.389502753638463, -4.175492485186052, -7.0, -7.0, -7.0, -7.0, -7.0, -4.785415261588475, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7048280367803335, -4.223755453657241, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.301391757019262, -7.0, -3.4015297758611776, -3.739651443709377, -7.0, -7.0, -7.0, -7.0, -2.9410853055533765, -3.225050696138049, -4.071918810363806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4006914571198217, -4.980153416005866, -7.0, -7.0, -7.0, -7.0, -3.532680079837371, -7.0, -7.0, -3.3085644135612386, -7.0, -7.0, -3.66143405039392, -4.007192823557041, -7.0, -7.0, -3.652343055062715, -7.0, -3.857573704147496, -7.0, -1.667452952889954, -3.8273692730538253, -3.4846675287062974, -7.0, -4.031781998819799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.074633618296904, -2.6104383466072485, -1.656417653650555, -1.9326911474206108, -2.2900346113625183, -2.606560492554639, -2.991934549718948, -2.587336734507256, -1.9885589568786155, -1.8195439355418688, -3.085219201044942, -2.2663885100087673, -3.3731675154102025, -1.8208579894397, -2.084831520070331, -7.0, -2.491750672348322, -7.0, -2.7433529514095554, -7.0, -2.8915374576725643, -3.0112884341835358, -7.0, -7.0, -2.2461291256634364, -7.0, -7.0, -2.7920731750124674, -7.0, -7.0, -3.8678356276470556, -2.9002081810665623, -3.5656589539252037, -2.4683473304121573, -3.074816440645175, -1.5895772957033327, -7.0, -1.6384892569546374, -7.0, -1.2397603389250587, -2.166331421766525, -7.0, -2.8530895298518657, -2.903524064471262, -1.0565734553021526, -2.9269423601642295, -2.6164755138885654, -2.338013561917151, -7.0, -2.7019994748896368, -1.816241299991783, -7.0, -4.333205372625344, -7.0, -2.561101383649056, -1.3141014045117398, -7.0, -3.334051440346892, -2.6546577546495245, -2.910090545594068, -3.0703149874181173, -2.093421685162235, -2.7161985370430206, -1.418439403733663, -2.9312883237487672, -7.0, -2.550228353055094, -7.0, -2.57978359661681, -3.4143883269310753, -2.6339731557896737, -1.7643629658980102, -1.8625785677670705, -2.7841416140728312, -7.0, -1.7363965022766423, -2.5253687865236367, -2.1481911962420113, -2.888179493918325, -2.7700333601614644, -7.0, -2.264660441423504, -2.0343164474392905, -2.651762447380111, -2.9692294798626433, -7.0, -2.7461150183833354, -7.0, -7.0, -3.572081257156328, -3.406028944963615, -1.74707871738161, -2.8016323462331667, -3.41096693224878, -2.4367985102318035, -2.880098704083314, -3.437886400119698, -2.9191528354245166, -2.2671717284030137, -2.9599948383284165, -1.6952314347766169, -7.0, -1.9250172547728448, -2.7218106152125467, -7.0, -7.0, -1.8715729355458788, -7.0, -2.559476934347587, -7.0, -7.0, -7.0, -2.002166061756508, -7.0, -2.632457292184724, -2.1164416975393117, -2.8140810398403664, -3.3398487830376373, -1.5968863360513395, -2.0980665902079987, -2.971275848738105, -7.0, -7.0, -7.0, -7.0, -2.3774883833761327, -7.0, -3.069112851387121, -2.9157954276020663, -7.0, -2.606381365110605, -7.0, -3.059752694209299, -2.4955443375464483, -7.0, -3.501470072100412, -7.0, -7.0, -2.885926339801431, -2.864955827110473, -7.0, -2.403120521175818, -7.0, -2.0453229787866576, -7.0, -2.958085848521085, -2.424881636631067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658049574713654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.826722520168992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.278715503274669, -2.2764618041732443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426560055756167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.848189116991399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.284205067701794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0015173768235046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.543608690196552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3915878235099495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5774917998372255, -2.8333013741535655, -7.0, -7.0, -7.0, -7.0, -1.7547010860879888, -3.1131073665204956, -7.0, -7.0, -7.0, -2.907411360774586, -1.4852480809503588, -2.725094521081469, -7.0, -7.0, -7.0, -2.6009728956867484, -7.0, -7.0, -4.639854885632376, -7.0, -7.0, -7.0, -7.0, -2.2476226046698424, -7.0, -7.0, -7.0, -7.0, -2.4683473304121573, -2.7267272090265724, -3.2821687783046416, -7.0, -7.0, -7.0, -2.952792443044092, -7.0, -7.0, -7.0, -7.0, -4.32956058217531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.801403710017355, -7.0, -7.0, -3.8254261177678233, -7.0, -2.7743344507093037, -7.0, -7.0, -7.0, -7.0, -3.2228031480228143, -2.3547485195608395, -7.0, -7.0, -3.217220655644519, -7.0, -7.0, -7.0, -7.0, -7.0, -3.710625015060797, -2.921686475483602, -7.0, -7.0, -7.0, -3.0492180226701815, -2.429752280002408, -2.3263358609287517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.27916484306227, -2.7501225267834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.448118620292148, -7.0, -7.0, -7.0, -7.0, -2.7032913781186614, -2.3961993470957363, -2.5428254269591797, -7.0, -2.298634783124436, -7.0, -7.0, -2.576341350205793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5765716840652906, -7.0, -7.0, -7.0, -7.0, -2.4403842548328845, -7.0, -7.0, -7.0, -7.0, -2.692217233097753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.819214799882384, -7.0, -7.0, -7.0, -7.0, -7.0, -3.062347957827833, -7.0, -7.0, -7.0, -7.0, -3.2530551694438183, -3.8258154449852038, -7.0, -7.0, -7.0, -7.0, -2.9535482900828445, -3.712439236645189, -7.0, -3.390287301803129, -3.0492764487705313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8516455748718625, -3.8282731120520697, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8317418336456384, -7.0, -7.0, -7.0, -3.4490770892633167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2938595539820534, -2.855670556918036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8785217955012063, -7.0, -7.0, -7.0, -2.834674974462744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.823148059810694, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8430458105345693, -7.0, -3.1643198031962783, -7.0, -7.0, -3.820004306808318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5514499979728753, -7.0, -7.0, -7.0, -7.0, -3.3763944420372662, -7.0, -7.0, -3.8431081419996067, -7.0, -2.930633736245974, -7.0, -7.0, -7.0, -7.0, -3.569549464888704, -7.0, -7.0, -3.8009231818132183, -7.0, -7.0, -7.0, -2.880899299839252, -7.0, -7.0, -3.878291949249796, -7.0, -7.0, -3.8282086144679455, -7.0, -7.0, -7.0, -3.0466344997274475, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203576774977973, -3.109867691044164, -7.0, -7.0, -7.0, -3.4022957806553165, -7.0, -7.0, -7.0, -3.1741567592784814, -3.8702282790117946, -7.0, -7.0, -7.0, -3.5639080503462868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.386320573894046, -7.0, -3.8402315949581087, -7.0, -7.0, -3.829303772831025, -7.0, -2.8522257675089486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.608044405736923, -7.0, -2.7525605875980133, -7.0, -7.0, -2.6914826123553053, -7.0, -3.369092109159725, -3.8440420420410164, -3.547713186231703, -3.8561244442423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3973264538510293, -7.0, -3.1600481395528757, -3.8248414717537007, -3.824971461123693, -7.0, -3.8217754671834636, -3.835817354293473, -7.0, -7.0, -7.0, -3.1484484035233837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.85076872692888, -7.0, -3.508754102588731, -3.6123334399272435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.808346035740395, -7.0, -7.0, -7.0, -7.0, -3.8256208250035, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9472866446777983, -3.6001012556913907, -7.0, -7.0, -7.0, -3.922050402167174, -3.846213363879387, -2.426782271970501, -7.0, -3.3473644589859757, -7.0, -7.0, -7.0, -3.244730562948387, -7.0, -7.0, -3.5944478006117335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.524071415934022, -3.055187138555754, -3.01416037745305, -7.0, -3.8296253533580495, -3.348462489920785, -7.0, -7.0, -3.304813543394108, -7.0, -7.0, -7.0, -7.0, -3.1879153546499897, -3.366982975977851, -7.0, -7.0, -7.0, -7.0, -3.5513477757329275, -3.871689665685515, -7.0, -7.0, -7.0, -3.5803546611065915, -3.8520528086978505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.84279639517558, -7.0, -3.885926339801431, -7.0, -3.4054842160241834, -7.0, -3.577836341292744, -3.71474876072506, -3.395093308677923, -7.0, -7.0, -7.0, -3.865163219506086, -3.9600900679049196, -7.0, -7.0, -7.0, -7.0, -3.8504011479971583, -7.0, -7.0, -7.0, -7.0, -7.0, -2.942950070077099, -7.0, -7.0, -2.8597840073240657, -3.1920026148585094, -4.397522885718343, -3.2429760021854523, -3.919418069406337, -3.024742145874638, -3.211806811322216, -4.4970541095473315, -2.0003367588821965, -7.0, -1.8242039608286242, -3.643156465619706, -3.7135409418501917, -3.698088112165083, -1.8837400773686257, -4.103478733439318, -4.188478495913935, -2.255024314814158, -3.4338231510303165, -3.5580343650072894, -7.0, -4.043758399217367, -3.66373232660306, -2.9950477386687933, -3.218941109212078, -4.014835435072798, -4.385633081072282, -3.840055884099814, -7.0, -2.6173065165235503, -2.6989888862943228, -3.694166295933198, -4.37383114507383, -3.4279929769690853, -3.197728408739593, -4.374436714981712, -7.0, -3.4170034022680262, -3.2589892174623056, -3.1912273818740102, -3.2762319579218335, -3.7371826999516857, -2.496748489605601, -2.868203455637116, -3.5504729571065634, -3.5479961022227244, -7.0, -3.5368844618610713, -2.981260880814982, -2.8622398309260126, -2.548955148750172, -2.9065074321941373, -3.757965097861435, -3.8900855267163252, -4.070148736152306, -7.0, -3.8327004709605674, -3.97799780995874, -2.873801481567676, -3.6352323462394964, -7.0, -2.3654275949190438, -3.208236548850757, -4.014626929273559, -7.0, -7.0, -7.0, -2.8606420214726844, -3.743627337570885, -2.6166381388054543, -1.900068277686376, -3.648725835359072, -7.0, -2.782273506982521, -3.740731025540231, -3.403000344021163, -3.296829664598624, -2.7112848782112553, -7.0, -1.7369932022994319, -7.0, -3.834674974462744, -2.810484550780126, -2.6358897433686486, -7.0, -3.414603952694696, -3.8820689444361483, -2.8047683130754844, -4.017200343523835, -2.8988557218778017, -3.8342299028516775, -7.0, -7.0, -3.3687206527020948, -3.1809855807867304, -1.485258562995629, -7.0, -2.2953934631978936, -2.3188219281371274, -1.4664823852680764, -1.1381797817338746, -1.8383143550055454, -3.3580618151293815, -7.0, -1.3475107078437523, -2.3734827339184386, -1.9406109939725837, -2.48465567261692, -1.9800648211037504, -2.7185535852026295, -1.9581155093926923, -1.6932339035574901, -1.660875407117872, -2.572639297042813, -2.572137583183095, -2.098690486999541, -2.86457040685343, -2.0977924267526817, -3.2464985807958007, -2.7920731750124674, -7.0, -7.0, -2.994882517664086, -7.0, -2.330511565396869, -1.9073510438211967, -2.0378793560502615, -3.3451122255191814, -2.142460113467407, -3.1432646820112207, -2.382411062610103, -3.531606631932722, -7.0, -3.349795392465258, -2.186498450104975, -3.055314609787049, -2.340072128109108, -2.671299097228857, -3.3458962687263867, -1.9174860593215874, -2.4056877866727775, -1.7596138917133635, -7.0, -2.4839437142904197, -3.130076332517164, -2.5940434390367693, -2.513389967131988, -2.8835352601144084, -3.127558302004633, -3.3523111788979363, -2.858021306221821, -1.3368036386957756, -2.818105873029551, -2.7397548594693375, -1.9740108109874572, -3.3664229572259727, -2.0382107975861454, -2.9427519204298136, -2.0920382658475796, -2.935696157954651, -2.7684530982706304, -3.471144965160633, -7.0, -2.1163939712975304, -2.377549077175673, -2.9304395947667, -2.761301241165817, -1.9795700520347994, -7.0, -7.0, -2.0085150076314546, -2.3918472991671624, -3.5515719736742537, -1.9788269866677775, -3.0884904701823963, -3.2615007731982804, -2.6334090405056987, -0.9972133578212427, -1.8423092984741956, -1.8011017257894453, -2.009759837289156, -7.0, -3.821382499747299, -2.1153375006452233, -2.2116939195924656, -2.6817579471116177, -1.7493334197103008, -1.352208814286594, -2.0746336182969043, -0.9777575677116924, -1.643008639801591, -1.8956200972968704, -3.1280760126687155, -2.683347276399375, -3.525563058270067, -7.0, -3.239674787646781, -2.389106992659985, -2.6651586852921563, -7.0, -3.526920532638649, -3.8198070645907563, -1.3576593668250876, -3.824971461123693, -3.0671328759643477, -3.5262746454257536, -2.505085346355816, -2.9433708381373886, -3.131746945100879, -2.454463732751138, -1.667124678416392, -2.4661002702247345, -3.5524248457040857, -7.0, -2.028534835394969, -7.0, -7.0, -7.0, -2.756319081819694, -3.0556331242728354, -2.882398032133449, -2.2119489373443315, -2.4632140854837288, -2.9258744064015607, -2.5721613902974734, -3.8198070645907563, -2.6339731557896737, -3.1242433089466486, -3.82013575187043, -2.2354765609057865, -7.0, -7.0, -1.6808402002950058, -2.4333462008411337, -2.8244216950097427, -7.0, -7.0, -3.237292337567459, -7.0, -2.3424665467362784, -3.5194998528595387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8154544055975217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.878860596838407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.521308105487026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.738098466092143, -7.0, -7.0, -7.0, -7.0, -7.0, -2.678518379040114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5660837841679958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3422252293607904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.003814298596238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.879404687616423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.225567713439471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.466645228363979, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.098661028041393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.433345729907803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318699694558155, -7.0, -7.0, -7.0, -7.0, -2.7444885672205115, -7.0, -7.0, -4.4335458305766196, -7.0, -3.737113094305961, -4.5767098257666845, -7.0, -4.803648272401481, -3.69729910333844, -7.0, -4.391182196261369, -7.0, -7.0, -7.0, -7.0, -4.624910903184837, -3.879611907065851, -4.786090962897912, -4.078275522086601, -7.0, -7.0, -7.0, -7.0, -4.2284859086849425, -3.9251315277591385, -7.0, -7.0, -4.181586363736856, -3.8042076050820413, -7.0, -7.0, -7.0, -4.391623077546977, -7.0, -7.0, -7.0, -4.005888024713317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1717995610487244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.37675939540488, -7.0, -4.055989583385691, -4.679545994115586, -4.570846373009805, -7.0, -7.0, -7.0, -4.312050351180238, -7.0, -4.942900541140294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2641800750358305, -7.0, -7.0, -3.1354506993455136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5786392099680726, -7.0, -3.0419187839286823, -7.0, -7.0, -2.835056101720116, -3.403120521175818, -3.6957880262155345, -3.1000257301078626, -7.0, -7.0, -3.3140779917792127, -2.814913181275074, -3.0056706869146232, -7.0, -2.5024271199844326, -2.3273589343863303, -3.455758203104137, -1.9240330175654028, -1.8670641135389987, -2.093421685162235, -2.941511432634403, -3.5021538928713607, -2.3324384599156054, -1.9109799468508541, -7.0, -7.0, -2.6009728956867484, -2.994882517664086, -7.0, -7.0, -2.9519259539267946, -3.6009926853694614, -3.5963850013313894, -7.0, -2.0433622780211294, -7.0, -1.9182051383496885, -7.0, -7.0, -7.0, -3.4423229557455746, -2.7551122663950713, -2.907411360774586, -2.5700119525533682, -7.0, -2.598032502044919, -7.0, -2.1341771075767664, -7.0, -2.3408405498123317, -7.0, -7.0, -2.5263998611218113, -2.808210972924222, -7.0, -7.0, -7.0, -3.118264726089479, -2.0907869279492677, -2.656098202012832, -2.9819091700907925, -7.0, -3.400232091171582, -7.0, -2.468018941374278, -7.0, -2.6047658847038875, -7.0, -7.0, -2.6424645202421213, -2.130793096387536, -7.0, -7.0, -2.6807886115066824, -7.0, -7.0, -3.617000341120899, -7.0, -7.0, -3.130735706961367, -2.4409090820652177, -7.0, -7.0, -2.8942369201818225, -2.311938040228109, -2.159057919756901, -2.644684718395879, -7.0, -7.0, -3.671242287239694, -1.9819359999222645, -7.0, -2.453099827095558, -3.7141620460988536, -2.8656960599160706, -2.9224895437705523, -3.6832046891531913, -2.4683473304121573, -7.0, -2.1527250407314686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6766936096248664, -7.0, -2.480862816368531, -7.0, -2.095169351431755, -7.0, -7.0, -2.1083394747888384, -1.6215224710973946, -2.1889284837608534, -2.6528906949522417, -2.0965238017937176, -7.0, -7.0, -2.052223532809907, -7.0, -7.0, -7.0, -2.485011214578573, -7.0, -7.0, -3.6804261708581456, -2.381501865193101, -3.004894321731049, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6798138655421604, -7.0, -7.0, -2.911956189072687, -2.1977882080746, -7.0, -7.0, -7.0, -7.0, -7.0, -2.569958818096594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.325515663363148, -7.0, -7.0, -7.0, -7.0, -7.0, -3.896856772737204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.057628072955568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.095239112010478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2377563480984297, -1.8750612633917, -1.5622928644564746, -7.0, -7.0, -7.0, -3.669967369908504, -3.398981066658131, -7.0, -2.504470862494419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5813481536324794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590581789320403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.286456469746983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.500099191915723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2671717284030137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.679609571779756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.940516484932567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7477224620355085, -7.0, -7.0, -7.0, -7.0, -3.0770043267933502, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.65475393325293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.315928382610187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732466136205421, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0906988268267614, -7.0, -7.0, -4.04888829904528, -7.0, -7.0, -7.0, -5.101135057332041, -7.0, -4.784203481756495, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703368770239115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.045929003009548, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7259932589247224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979379904969063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.56209054319465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6407975338258964, -7.0, -2.721398375521505, -2.622214022966295, -3.3550682063488506, -3.985156921277057, -2.2949069106051923, -7.0, -7.0, -7.0, -7.0, -4.627048213833253, -2.929929560084588, -7.0, -7.0, -3.736316807904109, -3.1869563354654122, -7.0, -7.0, -7.0, -2.986622466527397, -7.0, -2.9934362304976116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.794736940288484, -3.626498292642929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9922883537970923, -7.0, -2.734799829588847, -7.0, -7.0, -3.6911699341316035, -7.0, -2.6532125137753435, -7.0, -2.9237619608287004, -7.0, -2.6875289612146345, -4.329763875013317, -7.0, -7.0, -2.3710678622717363, -7.0, -7.0, -7.0, -7.0, -3.656960182742849, -1.7442929831226763, -3.2810694577020554, -2.7032913781186614, -7.0, -2.593286067020457, -7.0, -7.0, -7.0, -3.2236689666546843, -7.0, -7.0, -2.6304278750250236, -7.0, -7.0, -7.0, -2.9855387383932825, -2.5327543789924976, -7.0, -3.0118240955943087, -2.624797578960761, -7.0, -7.0, -3.7188337183038622, -3.652826302561005, -7.0, -3.177824971864682, -7.0, -7.0, -4.267265619762563, -2.596047007545439, -7.0, -2.6354837468149124, -4.3107570183526045, -3.080987046910887, -7.0, -4.279393142747864, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6344772701607315, -2.9474337218870508, -7.0, -7.0, -7.0, -7.0, -3.0677835509421225, -7.0, -7.0, -7.0, -7.0, -2.711807229041191, -7.0, -2.0731070983354316, -7.0, -3.003245054813147, -7.0, -7.0, -2.582063362911709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.65571454961871, -3.4956830676169153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275955981753744, -7.0, -7.0, -7.0, -3.442009159140952, -7.0, -7.0, -7.0, -7.0, -7.0, -3.238798562713917, -7.0, -7.0, -7.0, -4.468184808873887, -4.466882442438441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6926601937121126, -7.0, -7.0, -7.0, -4.520837112780868, -3.8250754246136784, -7.0, -3.6943711725332387, -7.0, -7.0, -7.0, -2.95545307898588, -3.7401389043873006, -7.0, -3.398330697921948, -2.8912835950189386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3354209998400677, -7.0, -7.0, -7.0, -7.0, -4.471394403692833, -7.0, -7.0, -7.0, -3.6419695977020594, -7.0, -3.6266482684740105, -7.0, -7.0, -3.993201015824255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5305554148925595, -3.57935162711144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.35878385060598, -3.8783781558498545, -7.0, -7.0, -7.0, -3.320834749256372, -7.0, -7.0, -4.467578510402737, -7.0, -7.0, -4.473326360897987, -7.0, -7.0, -3.960489804258006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8721125496264306, -3.190800763000039, -4.471936804594729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.935614448747319, -7.0, -7.0, -7.0, -7.0, -4.478580923742277, -7.0, -4.033544376090948, -4.142441611701165, -7.0, -7.0, -7.0, -2.6281594701971898, -7.0, -4.478147870643273, -7.0, -3.9951084577447404, -7.0, -3.8663316525868, -7.0, -7.0, -7.0, -2.718114759110934, -7.0, -7.0, -7.0, -7.0, -7.0, -3.830793899704099, -7.0, -7.0, -4.4747697096158685, -7.0, -2.990733398972723, -4.467460109507264, -7.0, -7.0, -4.500318823746387, -7.0, -7.0, -7.0, -7.0, -4.612805041299721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9996814005458545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.952313278148243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.011217903207838, -7.0, -2.5575072019056577, -7.0, -7.0, -3.1318076361798615, -7.0, -4.472727202912817, -7.0, -4.172237947171315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3480822335510885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8680857845717336, -4.466823151065687, -7.0, -7.0, -2.3893208102588974, -3.4695422107716865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.172690481755848, -7.0, -3.3957429438643922, -2.290001099692923, -7.0, -7.0, -7.0, -4.473530762258132, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.143366864941437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.469571672441998, -3.1172136357403977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3775444087229904, -7.0, -3.3267070035930515, -7.0, -2.3752622911871337, -7.0, -7.0, -7.0, -3.2657740008324536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.502071891206661, -4.475961589192424, -7.0, -7.0, -3.285638559729586, -7.0, -7.0, -2.670408845938452, -7.0, -7.0, -7.0, -7.0, -4.48274499054841, -7.0, -3.63574217852852, -4.169292274879936, -7.0, -4.168129031408031, -2.847079426081227, -7.0, -7.0, -7.0, -7.0, -4.004091982792546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6260208317947957, -4.499302094133328, -2.8029798713080614, -7.0, -7.0, -2.307543880874639, -4.177954721748205, -7.0, -7.0, -7.0, -7.0, -3.223154240460178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.196742527060023, -7.0, -7.0, -1.7319155356220892, -2.506741604257435, -3.6365061321444245, -3.5691836446191725, -3.2699019227319654, -2.115943176939055, -3.2098723115450163, -3.8298744145878594, -2.0389758684485395, -4.165896909992507, -2.0111629144226377, -2.3607432641111994, -3.269057396650046, -3.2938936063940814, -1.820592172832555, -3.124839199383788, -3.05588235138324, -2.037032065055308, -2.6109961743112087, -2.5019820979257474, -4.0922292421628566, -2.9975123995683486, -2.775664154857271, -2.017264452938816, -2.948083249753727, -3.9381693463903202, -3.3612463733898506, -3.3262448043225046, -7.0, -2.0223401021493177, -2.09738265416373, -3.0272071821786755, -3.2503824644306647, -3.152712368637574, -3.1670341139296614, -3.303993832369804, -3.702419765119444, -3.2958207519595093, -2.550415895149083, -3.737124459255048, -4.480553062699267, -3.6176489379831436, -2.8713340715842777, -4.060874040047298, -7.0, -3.4593601729795065, -7.0, -3.851889960987706, -3.76766286557764, -4.186164961727415, -2.645229985477441, -3.0294243640580163, -4.232119017142043, -2.8802703846028392, -7.0, -7.0, -7.0, -4.507613030501773, -3.4712036694702526, -3.6504601725336117, -3.996905510695666, -3.0594203544061824, -2.638548805251015, -2.954609777522019, -7.0, -7.0, -7.0, -3.172192885318626, -2.6287768084463567, -3.4329618370306085, -3.5195786292939832, -3.3517855739035376, -7.0, -3.2249860256767717, -2.7282981780928632, -3.189218551259706, -4.184734006620967, -4.224222186084649, -7.0, -3.0242753677211147, -7.0, -7.0, -3.610440956871625, -2.941392159191468, -7.0, -3.0056517115817107, -3.4811558708280352, -4.190205594369269, -3.9174267307364943, -2.8695527265119622, -7.0, -7.0, -7.0, -3.2417222253140894, -2.957596646369117, -2.063572160369598, -7.0, -3.179178229209794, -2.8793458839494313, -2.6507791752811687, -2.4660021221677813, -2.678749548136708, -4.470145775899696, -4.467830005178976, -2.608936302494925, -3.1917891870789785, -2.0379458854634454, -3.574523189437531, -2.8615781193128953, -2.374847006058018, -2.429247462461082, -2.516542481650632, -2.0686443960596153, -2.4353230387678386, -3.026358134008697, -2.71968440507334, -2.896482704641704, -2.513333427374107, -4.4733117571189815, -3.8678356276470556, -7.0, -2.330511565396869, -2.9519259539267946, -7.0, -7.0, -2.0416720015579313, -2.0102063993570085, -4.166119157825976, -2.6084009867767737, -4.170789590446391, -2.8292179777928355, -7.0, -4.466645228363979, -7.0, -3.120231076145884, -3.4281495256134615, -3.150537154583293, -1.8469539732166491, -7.0, -2.246957221948706, -2.8941702626757158, -2.360556678753837, -7.0, -2.9996814005458545, -3.7697021868101284, -3.3331160652665863, -1.9848474035913466, -2.6910372643636857, -7.0, -7.0, -2.8915109091209223, -2.295517682332988, -2.7422012536996743, -2.871602121022312, -2.162347835278798, -3.9949180901023182, -2.1103834814013, -4.472785693752219, -2.463201503182557, -3.772042847107852, -3.0101097941798534, -2.2425343965748334, -7.0, -2.6027492059794075, -3.043405945456881, -4.168850903709554, -3.693345821666275, -2.403163078899993, -7.0, -4.166755638665237, -3.0134955460104056, -4.174336062614943, -3.6959192528313998, -3.45637868721281, -3.5232549708237904, -2.6255319440395173, -3.4771067779956524, -2.390439489416729, -2.1213727844547217, -2.7632442908167834, -2.7001502497130585, -7.0, -7.0, -2.2373835216281015, -2.241552045299787, -3.237868864186639, -2.3159845211780983, -2.357687858215853, -2.809488078431905, -2.124846323695534, -2.3808382244074395, -1.6361099826579604, -7.0, -2.9840043644446514, -7.0, -3.387641905018062, -4.17064302283611, -4.478321143704149, -2.3393760423636945, -7.0, -4.167391188074075, -7.0, -1.900913067737669, -7.0, -3.1933150366306564, -3.8661543714405875, -3.189578957286946, -3.4726687041948, -3.7700858001025916, -2.925577273524723, -2.3379304619107932, -2.572983512136525, -3.62914737036461, -7.0, -2.5711991391735527, -7.0, -7.0, -7.0, -4.169424598808618, -3.390405156480081, -7.0, -2.81060728301842, -2.295716386359503, -2.4603784007408818, -3.9916247345340055, -7.0, -2.8318697742805017, -3.8653112963195166, -7.0, -2.536404010604367, -4.466837974667767, -7.0, -3.0866302905453735, -2.3129627539223483, -3.5231971111804987, -7.0, -7.0, -4.471144965160633, -7.0, -2.2895647772430805, -4.466763851597166, -3.6253271526248803, -7.0, -4.640431743683348, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639327085896673, -7.0, -7.0, -1.923894846387566, -7.0, -7.0, -7.0, -3.9774949690730366, -3.3774792785745746, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2558453684520914, -7.0, -7.0, -2.7315396318493663, -2.4355155492092426, -7.0, -7.0, -7.0, -7.0, -4.3395011289081085, -4.1641247417062335, -3.520614521878236, -4.3395905522680405, -7.0, -7.0, -4.340096937139528, -4.3415433318876095, -4.338346910071675, -3.862926062941731, -7.0, -7.0, -4.338755217322839, -3.3662227753916363, -7.0, -4.341028729729668, -3.31929447555578, -7.0, -7.0, -7.0, -4.1627833902457, -7.0, -4.33909352266184, -2.499891724766401, -2.295671153476217, -4.037983949447127, -7.0, -3.8044996528482944, -4.6407000199084365, -7.0, -7.0, -2.9235229873366637, -4.643728957803573, -4.648769713584033, -7.0, -7.0, -7.0, -2.8933757439385097, -7.0, -7.0, -7.0, -7.0, -4.055340099544181, -3.9448477208632444, -7.0, -4.644753609506606, -3.6985644735424197, -4.338605881147866, -2.833714719570962, -7.0, -7.0, -7.0, -7.0, -3.5256726091346264, -3.6850148190800835, -3.1958107295133327, -3.796197556622054, -3.8003537053355636, -4.641216233580327, -4.642948997739193, -4.644527211951955, -2.339104758662789, -4.165798096658618, -4.1629027893892045, -7.0, -7.0, -7.0, -3.8616638236770844, -4.640103625305096, -4.639735439967236, -7.0, -4.357572784051678, -7.0, -7.0, -7.0, -2.708302294449341, -7.0, -7.0, -4.640948276144205, -7.0, -3.4402496657082047, -7.0, -4.639615961441463, -3.051142623884847, -4.641920074413117, -2.6734658159009137, -3.0835026198302673, -4.039116555285152, -4.037934206072325, -3.642612887088148, -4.170291058625393, -4.639854885632376, -3.1503842538862474, -2.5045958370768617, -7.0, -4.040691325767884, -7.0, -2.790961787868363, -7.0, -4.045039225299072, -2.9234395410907656, -4.643195972076743, -7.0, -3.5264486326524866, -3.5998334695972587, -7.0, -7.0, -3.0670046917014813, -7.0, -4.639267294545039, -7.0, -4.16220583117701, -4.162146039825377, -3.0486405033272277, -3.361453955329276, -4.663503045519445, -4.6448716831351105, -7.0, -7.0, -7.0, -7.0, -3.2449892250514107, -3.3397069170049827, -3.9483249241899148, -7.0, -7.0, -4.639974298454951, -3.1188942981663943, -7.0, -7.0, -7.0, -7.0, -4.639476528271741, -7.0, -4.34523646004688, -7.0, -4.642504089690639, -4.641434447096437, -7.0, -7.0, -7.0, -1.5125997457466591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.381037405021494, -7.0, -3.2413059789193195, -7.0, -7.0, -1.3300330586491649, -3.2779578252250885, -2.6371923965070563, -3.074193540963896, -2.6552077674159724, -2.740402169016284, -4.3469589986735295, -4.64221712947388, -4.641126932803509, -7.0, -7.0, -4.6404019249815684, -4.651200454486927, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3792577957042833, -7.0, -3.469232742506612, -4.640113571929359, -7.0, -4.639366942225054, -7.0, -4.164650215934297, -7.0, -7.0, -7.0, -2.401140510148946, -3.1093899325453607, -4.639257328519408, -3.940446753156396, -3.639396832071146, -4.1621061743506, -4.639386869017684, -7.0, -7.0, -7.0, -2.9530393949118094, -3.1536968735859676, -3.2060811050336295, -3.116115307828765, -7.0, -7.0, -4.639665748155174, -3.5298546483723983, -4.639317121243033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.63956616901964, -7.0, -7.0, -7.0, -1.4821003029929867, -7.0, -7.0, -7.0, -7.0, -3.7370036914610756, -3.463992472317439, -7.0, -7.0, -4.64812572155865, -4.639964348640366, -3.29909022733675, -2.6131918182858205, -7.0, -4.639426719860243, -4.639834980302741, -3.542298632022125, -2.8941775538387726, -2.460725807287314, -7.0, -2.0509222543479053, -7.0, -7.0, -4.639884741916304, -3.635419767747034, -4.044020099261835, -3.7439113406021054, -3.2362561929560214, -7.0, -7.0, -7.0, -7.0, -4.163598630910796, -3.212700441984192, -4.341563112106319, -7.0, -7.0, -4.641345191182597, -7.0, -4.03769535853163, -4.640987983975901, -4.33912336048452, -2.5437837891976143, -4.645677661583387, -7.0, -3.5992576664691955, -2.1656723176143293, -7.0, -7.0, -3.514715948325943, -7.0, -7.0, -4.6427216572370735, -3.177277706914103, -2.005313299120557, -2.677567282066718, -7.0, -7.0, -7.0, -4.641107085692552, -2.0291321571086742, -4.045499008437883, -7.0, -7.0, -7.0, -3.8710277796645003, -3.8661395947446504, -7.0, -7.0, -3.9432570234747906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165748681559414, -4.6402726869436295, -3.4399805351710797, -4.059487684274447, -2.5788475046876065, -7.0, -2.749697186414885, -3.2508079879608007, -4.647744731469901, -7.0, -4.166025333724231, -7.0, -3.10179615508807, -4.061622092243773, -4.3466560922695425, -7.0, -7.0, -7.0, -3.439707604467424, -7.0, -7.0, -7.0, -3.870413660211742, -4.640193136723481, -2.0541999775313315, -7.0, -7.0, -1.69422218095535, -2.0066645422071834, -2.6631240515498513, -3.195632829081318, -3.0260749454085736, -2.006763212270037, -2.3715024827552478, -2.6599289558040393, -1.7090164350751587, -7.0, -2.0606081092457327, -2.8315095089267874, -2.5355059169532805, -2.6412618772743763, -1.3603581917080152, -3.3966665291438467, -1.8772018661195997, -1.2598672111551346, -2.9933382398649977, -2.5755986777665982, -3.564682969118945, -2.8219038108655123, -2.8355277555128513, -1.7341710790487073, -2.5436806026151135, -3.8066547239918607, -2.672898626627781, -3.008892036344074, -4.351138958581849, -1.5688887641010931, -2.0152757593060646, -2.8454883017723622, -2.760020172619173, -2.6247079736616548, -2.572686824116956, -3.191329177652473, -3.245663880400659, -2.4764699889823, -2.289479082290999, -3.3398322343881826, -3.6943906795506427, -2.932608678125612, -1.4715151312274832, -1.9824710381122468, -4.343270700650801, -3.180723073467645, -7.0, -2.464373428003822, -3.1751514649813335, -3.4769668114456653, -2.6676903371439664, -2.801708531564807, -3.2868245882246527, -7.0, -3.0850853371959324, -4.174195533840527, -7.0, -4.366292182210539, -2.9165280855391633, -3.211473343267295, -4.644409044620594, -1.814272014037218, -1.9117170735037696, -3.3589812256253495, -4.6407000199084365, -4.355058619168376, -4.340027468282661, -1.5121870816038474, -7.0, -3.1526073658091818, -2.7199478493318203, -3.104669696391788, -3.862181089664136, -2.9012857317920555, -3.3300239510638483, -3.5154345883966154, -4.050234709397242, -3.600264821501586, -3.5565529830285247, -2.385037929389288, -3.264968855694732, -4.340582908247528, -2.2308324786210756, -1.3049624593163323, -4.647578554212455, -2.517130143653564, -4.649373807143351, -4.355039444172483, -2.3865590291510017, -3.160857720233285, -3.4951774803204194, -7.0, -7.0, -3.944383957640844, -2.455685333041747, -1.1276063051325063, -3.6408688495876156, -2.5159719117897525, -2.484528800490016, -1.9682891363042425, -1.750996697610618, -2.1638683451957634, -3.600160741295671, -3.9411435675933406, -1.7948926855002934, -3.16467994075426, -1.1749632431151515, -2.4004738457372032, -2.460561571363903, -2.8427340189482697, -0.9602761381695825, -2.2912734051814825, -1.8962867793220939, -2.9571868900861062, -2.880004941816317, -1.3363544940555752, -3.1018746733792106, -2.4302048853621963, -3.798670372205142, -2.9002081810665623, -4.639854885632376, -1.9073510438211967, -3.6009926853694614, -3.794736940288484, -2.0416720015579313, -7.0, -1.3033865345896802, -3.0827554591981556, -2.273419146976954, -3.3202847949567196, -2.8435150245077465, -3.225865712912683, -7.0, -3.2085906344388353, -2.4090493193344034, -4.340493689006248, -3.1117763079825163, -2.604954897808633, -3.639695617444053, -1.8233301165436868, -2.398574855225215, -2.301640293264161, -4.639386869017684, -2.7703020479535585, -2.977186616645736, -2.646217420011067, -1.822845781490173, -3.5280955685137827, -3.2249810506270045, -3.071941686368387, -2.908577451460015, -1.6795459941155866, -3.213920924061928, -3.322278378399326, -1.6462582551354332, -3.8648175104719082, -0.9296970878207105, -2.1648933592542074, -2.4438542406599173, -2.4662902598594676, -2.980250452708863, -2.6830386173544434, -4.163449615841143, -1.782032802306157, -2.6704235149632467, -3.5274117571054364, -2.654087185980357, -2.4034016775512366, -3.6850148190800835, -3.685781534669542, -2.0111118516402637, -3.2646309260257307, -3.9454488887903163, -2.389094093401577, -3.5674772960726626, -2.9146642062585957, -3.231165603402702, -1.6769815571269187, -1.8226585789992689, -2.5482975085635067, -2.5574974999278877, -4.1624050762518, -4.338536173355659, -1.488432885906485, -2.459983818868003, -2.8266528123767847, -2.1511119339812774, -1.127118845348021, -1.6629808743505723, -1.6226079582053459, -1.887367994404441, -2.133807926868157, -3.4941446512653913, -3.00156655355653, -3.8621512641362776, -7.0, -2.951654652291387, -3.6056869554272506, -2.562585506193841, -7.0, -2.996302673373406, -4.338297090232691, -1.3084020041048854, -3.941083884430365, -3.320788989656518, -4.339461379281565, -3.7376596955178236, -3.412865548511456, -3.8628466599829387, -2.9599154643938257, -2.22903583515332, -2.727177518268621, -3.7414076861413017, -4.163449615841143, -2.715029511589328, -4.338346910071675, -4.639376905735657, -7.0, -3.687578501451031, -2.7535930062006386, -3.9430491110084067, -2.0655907518109906, -2.605876295339839, -3.2024319432441346, -3.2786840287587213, -7.0, -1.7631524010078345, -3.7947269872815297, -7.0, -1.932557840382941, -4.639526330971463, -7.0, -2.736600530962847, -2.610113465677473, -4.044716107722188, -4.162185901641091, -7.0, -3.1947323263866414, -7.0, -2.612830312780314, -7.0, -4.64205872539365, -4.639277260341978, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.158818812869884, -7.0, -7.0, -7.0, -3.7697612262993307, -3.127678960206914, -7.0, -7.0, -7.0, -7.0, -4.439174739843469, -2.260309246403442, -7.0, -7.0, -3.8429834701222174, -2.6257078337736153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4964572283200215, -7.0, -7.0, -7.0, -7.0, -4.742725131304698, -7.0, -7.0, -7.0, -4.450233707532753, -7.0, -3.3648465072411535, -7.0, -7.0, -3.4631461367263494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4073290897914963, -3.185629314451658, -4.74074943414471, -7.0, -4.447344117675954, -7.0, -4.740575836289971, -4.740678425227455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9013652777557017, -4.740181037453737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.154393537956997, -7.0, -4.13946977558943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7434470461953, -4.741789566577141, -7.0, -7.0, -4.743007762670625, -7.0, -2.127707357576145, -4.743015610916935, -4.740717876059285, -4.7401731378151295, -7.0, -7.0, -4.439553732943139, -7.0, -4.740457434318508, -7.0, -7.0, -7.0, -7.0, -7.0, -4.744222551279631, -7.0, -7.0, -7.0, -7.0, -4.744371227331861, -7.0, -7.0, -4.743015610916935, -4.742190769699096, -2.719561449945234, -4.440019125975593, -7.0, -7.0, -7.0, -4.44554193436792, -7.0, -3.7640864237491396, -2.683487604346112, -7.0, -7.0, -7.0, -3.033658596404163, -7.0, -4.047321605082491, -7.0, -7.0, -7.0, -4.042134300345594, -7.0, -7.0, -7.0, -2.616455053232196, -7.0, -4.7400862323055035, -7.0, -7.0, -7.0, -3.6608873599424494, -4.156776233418996, -7.0, -3.465500254778325, -7.0, -4.086324231307385, -7.0, -7.0, -7.0, -3.3778903218424934, -4.144418518602069, -7.0, -7.0, -7.0, -3.7099936168613983, -7.0, -7.0, -7.0, -4.742497322199888, -7.0, -7.0, -4.4446146287028, -7.0, -4.742654444714546, -7.0, -7.0, -7.0, -7.0, -2.452979280821311, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7975445143617264, -7.0, -2.9340001857393228, -7.0, -4.444918753773256, -2.4575980750387347, -4.439719438480728, -4.0444064726812945, -4.743133317595437, -4.044712189670485, -3.7031271673456327, -3.8438320895564417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.307717560224521, -7.0, -4.444068228441408, -7.0, -7.0, -7.0, -7.0, -3.83890416082117, -4.740283719681879, -7.0, -7.0, -3.013342904345347, -4.139768925279731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4441072798376, -3.231851723743416, -2.650583755051115, -7.0, -7.0, -7.0, -3.6297388416996674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.379431142858117, -7.0, -7.0, -7.0, -7.0, -7.0, -4.439908738851784, -7.0, -4.44070447487986, -4.048092051812373, -7.0, -3.414851850003344, -4.273626206272959, -7.0, -7.0, -7.0, -3.6074550232146683, -4.141300802092444, -2.17340020840208, -7.0, -1.9422270456024011, -7.0, -7.0, -7.0, -3.9920377723523495, -4.745543201998024, -4.144231618090547, -4.050951735479182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.613093956327272, -7.0, -7.0, -4.741340724046487, -2.0453183375247277, -7.0, -7.0, -3.577305059024824, -7.0, -7.0, -7.0, -7.0, -3.5444866265309787, -4.743172546066673, -7.0, -7.0, -7.0, -7.0, -1.708462991770448, -7.0, -4.740402169016284, -7.0, -7.0, -4.7480406520901814, -4.744152108012428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4819951270342555, -7.0, -2.5174078045308987, -4.7419233421368165, -3.969470273425397, -2.9889126149271394, -4.445775396743086, -7.0, -7.0, -7.0, -4.444809605172975, -3.9144111638066694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.911872597102229, -7.0, -7.0, -2.2036635512088645, -2.553126141145082, -2.432432786244021, -3.6291742729079046, -1.8176997483689172, -3.2629254693318317, -1.4376211862677986, -1.5460343682984186, -1.4005481065017522, -4.740354793159152, -1.8977493894870296, -1.9759362742204192, -1.4606571321955282, -1.575071049300453, -1.791597655058112, -2.322088535059173, -1.6892501029585778, -1.926156913205765, -1.395068880768949, -2.1599163201638714, -2.379354335648669, -1.9010202559024967, -2.0072213000164245, -1.4238031121981767, -1.6174777148654325, -3.1665875547656306, -1.704064865625262, -1.3733789136471066, -3.5460102648496363, -1.5084400205733615, -1.5682914132996109, -1.5651070109504064, -2.024550799858992, -1.597781449602805, -1.7036282801644569, -2.1187055223535607, -2.3130975003830856, -2.337916965537088, -1.3758611680711457, -3.1329065742417876, -7.0, -2.683539951532966, -2.5355099562291943, -3.007986327869048, -4.141990345122414, -2.0826984719813044, -4.7461981289915505, -2.4404704155029875, -4.085190646885893, -4.149165207512734, -2.9586947598580036, -2.8759829615659807, -3.6627723563377486, -7.0, -3.260056925723567, -7.0, -7.0, -3.0057748851496804, -2.9471978777896175, -4.056889612666252, -4.142060804897724, -2.664039261993672, -2.052593350948046, -2.1881025299472006, -7.0, -7.0, -7.0, -2.5141733450977126, -4.7741810787947205, -3.445344690578751, -3.1154551806365287, -2.7982361763679355, -4.439963935920905, -3.7315594645200223, -2.978750981332984, -3.1108140939166935, -3.494958099302044, -3.471093592379599, -3.184870669153574, -2.6856029843554237, -3.296476062321468, -7.0, -2.7283675405386587, -2.3062498686537425, -3.9684595987605533, -2.932264542286491, -4.447072715118013, -3.6071485345061802, -3.513654043515571, -2.6499254252092936, -3.7875391867038415, -7.0, -7.0, -3.8982000133541193, -1.3590553766801345, -1.282364597847086, -4.74149826548613, -2.838032418536004, -2.695741910151855, -2.272448705188279, -1.954049996921635, -2.2249634182287825, -4.441011349520877, -7.0, -2.017586859089031, -2.942236465326841, -1.573530615642056, -2.780966592974337, -2.57831729805555, -3.0050732130636044, -2.2035009923023567, -2.45178643552429, -1.9672039793497955, -2.486794348864476, -2.1261290246570215, -2.389219108536737, -3.0824575360795645, -2.5090226886261187, -7.0, -3.5656589539252037, -7.0, -2.0378793560502615, -3.5963850013313894, -3.626498292642929, -2.0102063993570085, -1.3033865345896802, -7.0, -3.6263403673750423, -2.513431922845268, -4.441922825310942, -2.808498125175687, -4.1396193761920275, -7.0, -4.263888446167958, -2.5106973033953603, -3.3798176807586167, -2.929851040018942, -2.5282774962218273, -7.0, -1.7285760749719628, -2.3889769626014203, -1.9008031495820312, -7.0, -2.8472367506682015, -3.699782558847431, -2.882703835811221, -1.5223035926343103, -3.279635481413465, -4.138918170381583, -4.741348602475895, -1.7587889737912472, -1.8210378678511736, -2.851971392475668, -3.131141189675311, -1.899887931896617, -3.897909722656368, -1.4013941251332214, -3.487931421189317, -1.993451700681844, -3.1509216740592922, -2.1443040992652644, -2.1080765740961467, -4.741151598851785, -1.7260996890413132, -2.9050289625668273, -3.8967387461717196, -3.441530182363339, -1.6458109443377589, -7.0, -4.138705220999562, -2.372770423675649, -3.5985403911521976, -4.74423820378745, -2.7354392032514814, -3.4033779317228596, -3.613396279293765, -3.165572301835224, -1.9733492103121666, -1.7525711876624266, -2.5166165450160767, -2.4859850346729226, -7.0, -4.74033900005824, -1.700399862860919, -1.9727949511256364, -2.9550565426273643, -1.7280396161849396, -1.4532159285446646, -2.4982170716858327, -1.7763343948443986, -1.9925469236750626, -2.065400258114976, -4.44004277670934, -3.111199971250849, -4.439940280893153, -3.9622272313500853, -3.964660260021084, -3.8432483550956227, -1.588261806023172, -7.0, -3.7867829601784644, -7.0, -1.3981917992387312, -7.0, -3.3627965209590185, -2.836735424393361, -3.3792976336001965, -3.345232537394635, -3.6274052501690583, -2.6002861516315914, -2.0474098222772072, -2.652883029692004, -4.744347755549232, -4.44010583903666, -2.1371799788235775, -7.0, -4.7401731378151295, -7.0, -3.2504042610130406, -3.310158127614801, -4.265179584364818, -2.622632832548614, -2.1065490989982276, -3.019720368759754, -3.786972140295542, -4.740149438037123, -2.441131622069119, -4.041590046889366, -4.740188936948656, -2.0534080878779726, -3.962061384187691, -7.0, -2.829853802037627, -2.088254758332001, -3.599766142887816, -7.0, -4.740188936948656, -4.2654389233076575, -7.0, -2.0804389076211174, -3.785883227526406, -4.74230083908448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.356905034810079, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517565353082339, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426478728724244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8500945943867007, -7.0, -7.0, -4.192623200012946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2819419334408244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304748959487096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097673699449098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.543484456978157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.265643141942135, -7.0, -4.426364845287927, -7.0, -7.0, -7.0, -4.4312591991966865, -7.0, -7.0, -7.0, -4.654975063241963, -4.801698628227434, -7.0, -7.0, -4.3861242584003115, -7.0, -3.512195050270289, -7.0, -7.0, -7.0, -3.8629657589777624, -4.306910879548736, -7.0, -7.0, -4.6239105687622875, -7.0, -7.0, -4.703196769016287, -4.218797998111738, -4.579554960400999, -7.0, -4.173361116894232, -3.7843319480221482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.999739345106568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.561852397446954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.766524381029522, -3.0292484623758416, -7.0, -3.0149403497929366, -2.119475840906798, -7.0, -3.9842572017054163, -2.509650479546582, -7.0, -7.0, -3.469822015978163, -7.0, -3.8485893458691725, -2.4403842548328845, -7.0, -3.269045709657623, -2.653775123528, -2.8796692056320534, -2.632963168167261, -7.0, -2.7701152947871015, -2.681693392004564, -2.9020028913507296, -7.0, -7.0, -2.4683473304121573, -7.0, -3.3451122255191814, -7.0, -7.0, -4.166119157825976, -3.0827554591981556, -3.6263403673750423, -7.0, -3.3400473176613934, -7.0, -2.791690649020118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2119210843085093, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9804578922761, -4.028286509426278, -7.0, -7.0, -7.0, -7.0, -3.1960379407345236, -7.0, -7.0, -2.8087895180567206, -7.0, -3.5892070756999934, -2.6857417386022635, -3.0742677425533578, -7.0, -7.0, -3.9170851906405675, -7.0, -3.398200507219428, -2.828015064223977, -7.0, -2.60959440922522, -2.7363965022766426, -7.0, -7.0, -3.2847690133490195, -7.0, -7.0, -3.709778601848225, -7.0, -7.0, -7.0, -3.239716468579862, -3.048247531803974, -7.0, -7.0, -7.0, -7.0, -3.2663728312246034, -7.0, -2.3283796034387376, -2.9324737646771535, -3.6111920608684343, -2.2241999721012724, -3.4738760792691425, -3.57978359661681, -3.7507397512353506, -7.0, -2.858537197569639, -7.0, -7.0, -7.0, -7.0, -2.9612628523150515, -7.0, -1.9731278535996988, -7.0, -3.6697816152085365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.530199698203082, -3.0829647937777516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9540494467635945, -7.0, -7.0, -7.0, -7.0, -3.022222104507706, -7.0, -7.0, -3.576341350205793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.268343913951065, -7.0, -7.0, -7.0, -2.526339277389844, -7.0, -7.0, -2.8581360017148696, -7.0, -7.0, -7.0, -7.0, -7.0, -3.337459261290656, -7.0, -3.2790278056227207, -7.0, -7.0, -7.0, -7.0, -3.7992026563005252, -7.0, -3.40840957846843, -7.0, -7.0, -7.0, -2.9970367108825267, -7.0, -7.0, -2.7646243978509815, -3.610110785065819, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3852968368328855, -3.05595140532915, -7.0, -2.7518562395924007, -7.0, -2.7902851640332416, -3.3328422669943514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9309490311675233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.625723909525756, -7.0, -7.0, -7.0, -7.0, -7.0, -3.415974411376566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.464762696435282, -7.0, -7.0, -7.0, -7.0, -7.0, -3.041787318971752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0877491606340604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3163897510731957, -7.0, -7.0, -7.0, -3.797782877883888, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3571722577230334, -7.0, -7.0, -7.0, -4.0475085055940125, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5275654607077214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1699681739968923, -7.0, -7.0, -7.0, -4.142045148157744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3820797181144515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.058378568358843, -7.0, -7.0, -3.7343374736148895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9126471062183175, -7.0, -3.443888546777372, -7.0, -7.0, -7.0, -7.0, -3.077912702949456, -7.0, -7.0, -7.0, -3.3005954838899636, -3.3740147402919116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.155463573759529, -7.0, -2.861733491532661, -7.0, -3.116939646550756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.52050224789375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8354368948018585, -7.0, -3.7455041870869885, -7.0, -7.0, -7.0, -3.0853619436861295, -7.0, -7.0, -3.230959555748569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.66661156841903, -7.0, -7.0, -7.0, -3.326253910842292, -7.0, -7.0, -3.8841153620116686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3807537708039, -3.4650852875574327, -7.0, -3.928655258893143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388278863459639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8026146430623937, -7.0, -7.0, -3.6142056361665484, -3.4768316285122607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6364878963533656, -7.0, -7.0, -3.4617385679564108, -4.160273399926485, -4.312156191475623, -7.0, -4.45901533230183, -3.30362797638389, -2.8870543780509568, -7.0, -3.4060056926824207, -7.0, -3.0623768380354477, -3.9948118872762843, -7.0, -7.0, -2.163118526130661, -4.019614715691417, -4.421817731364133, -2.668739918089131, -4.073535065058784, -4.628940389245031, -7.0, -4.5060989599284405, -3.3697722885969625, -3.4559793306455244, -3.6618126855372615, -7.0, -4.644911033878752, -4.002065218826583, -7.0, -3.465209297290123, -3.1558030208239303, -7.0, -7.0, -3.531018832208792, -3.212826586101233, -7.0, -7.0, -4.084486907735044, -4.121165747534411, -7.0, -3.492061604512599, -4.292632592082427, -3.6447536095066053, -7.0, -7.0, -7.0, -7.0, -4.566743806304003, -7.0, -7.0, -2.9595819353635555, -3.7200214102529, -3.5439439424829065, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4592919449918176, -7.0, -7.0, -4.390104563825434, -3.5734830426589057, -4.576061906444384, -7.0, -7.0, -7.0, -2.7216274458796317, -7.0, -4.95172112186057, -7.0, -3.4267064060463146, -7.0, -7.0, -7.0, -4.319189369204891, -7.0, -7.0, -7.0, -4.2122941666623515, -7.0, -7.0, -4.6255593728759745, -2.3755443405179504, -7.0, -4.050486093182022, -7.0, -7.0, -7.0, -3.6098077693287025, -2.594760752586463, -7.0, -7.0, -2.502597799680834, -3.439679990515626, -1.9665580317819267, -7.0, -2.714469471659548, -2.158894389873804, -2.6805369487066266, -2.5352941200427703, -2.305351369446624, -7.0, -7.0, -2.4220423867575565, -2.3064250275506875, -2.170608552457273, -3.163310488963686, -2.1118703436839716, -0.973074438129254, -2.1538734696319675, -1.882796675552491, -2.1584567298046142, -2.0148679975258963, -2.309138605990394, -2.3712438324856118, -2.1108956592248314, -1.8598263408763092, -7.0, -3.074816440645175, -7.0, -2.142460113467407, -2.0433622780211294, -7.0, -2.6084009867767737, -2.273419146976954, -2.513431922845268, -3.3400473176613934, -7.0, -7.0, -1.9439488128550355, -7.0, -7.0, -7.0, -2.70395974394769, -3.374381698050882, -2.636320699245659, -1.8972503938239382, -7.0, -2.0026106777183132, -2.0293837776852097, -1.788701432716952, -7.0, -1.0493942427910425, -3.059752694209299, -3.1815577738627865, -2.432148600147286, -2.206646006705649, -7.0, -7.0, -3.753199914199416, -1.8823063810686513, -2.211560237762678, -2.3497630439879496, -1.9231363167215678, -3.401745082237063, -2.327539647757217, -7.0, -1.730479455562148, -2.6898414091375047, -2.5688719317338045, -3.0598578120802955, -7.0, -1.8038489470153505, -1.6994613803815402, -7.0, -2.918554530550274, -2.04484846960872, -7.0, -7.0, -3.2962994685709477, -7.0, -1.9106577493156374, -2.9540011676815703, -2.7635777244666455, -2.7659478138932125, -2.680335513414563, -1.9675722866939394, -1.8922303833643714, -1.8755435449314382, -1.9410142437055697, -2.8583366459697217, -7.0, -2.504343409967634, -1.8651341001586887, -2.757965097861435, -2.015173402914656, -2.375780317960666, -2.1868487502832425, -1.8035465276645812, -2.4699671366981004, -1.4299155111056692, -7.0, -1.0730769651536745, -7.0, -7.0, -3.397070549959409, -7.0, -2.779776808670381, -7.0, -3.356790460351716, -7.0, -1.801011879135689, -3.3475251599986895, -1.3021517211655111, -3.354876422516234, -3.060697840353612, -2.5643278286571864, -2.888179493918325, -2.537099170363197, -2.1711411510283822, -1.798025500812446, -7.0, -7.0, -1.765335585862254, -7.0, -7.0, -7.0, -2.6819644589946834, -3.073901558314207, -3.3845326154942486, -2.36815401218214, -2.3696374616388685, -3.383366482755039, -3.3613500243522663, -7.0, -2.775974331129369, -2.6432552250247716, -7.0, -2.5331926071304895, -3.3354579006893843, -7.0, -2.5335178620169674, -2.2479732663618064, -3.4631461367263494, -7.0, -7.0, -7.0, -7.0, -2.1689909186377423, -7.0, -7.0, -7.0, -7.0, -7.0, -2.568201724066995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0588528961494434, -7.0, -7.0, -7.0, -3.631139250256811, -3.3549723250189762, -7.0, -7.0, -7.0, -7.0, -7.0, -3.435578953471198, -2.9122220565324155, -2.598790506763115, -7.0, -3.3873381488811636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.716146494044897, -2.7075701760979367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8636004025933444, -7.0, -7.0, -7.0, -2.6085260335771943, -2.6627578316815743, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7672383453307243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4354860207578644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.622058519778418, -7.0, -2.4463818122224423, -7.0, -2.3394514413064407, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7693773260761385, -2.7019994748896368, -7.0, -2.8709888137605755, -7.0, -3.4800723044565447, -2.8715729355458786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3191060593097763, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9444826721501685, -2.584331224367531, -7.0, -7.0, -7.0, -2.962369335670021, -7.0, -7.0, -7.0, -7.0, -3.2902572693945182, -7.0, -7.0, -7.0, -2.8615344108590377, -3.079543007402906, -7.0, -3.0680621134957438, -7.0, -7.0, -7.0, -7.0, -3.69680102095226, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7067177823367587, -2.467608105583633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.21923513401367, -2.4448251995097476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.645422269349092, -7.0, -3.383599959933904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1398790864012365, -7.0, -2.005930867219212, -2.7209857441537393, -7.0, -3.428758239517558, -7.0, -7.0, -7.0, -2.358886204405869, -2.622214022966295, -2.669316880566112, -7.0, -2.798190099822149, -7.0, -7.0, -7.0, -7.0, -2.8862780102586014, -7.0, -7.0, -2.2747349848727385, -2.92272545799326, -7.0, -3.09968064110925, -2.523095838252568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.666892211066536, -7.0, -3.0051805125037805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.583198773968623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9385197251764916, -3.0073209529227447, -2.5368108659915416, -4.849084503234671, -7.0, -2.1409268419924303, -2.1335389083702174, -7.0, -7.0, -7.0, -7.0, -7.0, -2.678518379040114, -7.0, -7.0, -7.0, -2.60422605308447, -7.0, -7.0, -2.44870631990508, -3.5185139398778875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9395192526186187, -7.0, -7.0, -7.0, -2.7257074985747667, -7.0, -3.7057782128285974, -2.225309281725863, -4.199124114623325, -7.0, -7.0, -7.0, -3.1586639808139894, -3.0281644194244697, -7.0, -2.433769833924866, -7.0, -7.0, -7.0, -7.0, -2.0119931146592567, -2.255272505103306, -1.6570558528571038, -7.0, -2.7781512503836434, -1.9100142263808144, -7.0, -7.0, -7.0, -2.057856208741888, -2.9807606420143298, -7.0, -7.0, -7.0, -4.132035438327499, -2.7363965022766426, -7.0, -2.991299929018394, -7.0, -2.606381365110605, -2.8573324964312685, -7.0, -2.871864702088195, -2.5809249756756194, -2.835056101720116, -2.803457115648414, -2.359076226059263, -7.0, -4.2536321900321274, -3.0856472882968564, -7.0, -7.0, -7.0, -7.0, -2.646893624167745, -7.0, -2.6541765418779604, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6989700043360187, -2.6148972160331345, -7.0, -7.0, -7.0, -7.0, -4.734414152052344, -7.0, -2.649983543645145, -4.246350836456256, -2.788521887222473, -7.0, -2.405403283235218, -7.0, -3.044147620878723, -3.4620983811351556, -7.0, -2.307496037913213, -7.0, -7.0, -1.8839194063414246, -2.639486489268586, -7.0, -2.6570558528571038, -2.6437815628948647, -1.811000161998575, -2.05915016485424, -7.0, -7.0, -4.319033150039682, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.257694570688118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.786318331052916, -7.0, -7.0, -7.0, -7.0, -7.0, -4.006876609403363, -7.0, -4.583164754791726, -7.0, -7.0, -7.0, -7.0, -7.0, -4.352761191723831, -7.0, -7.0, -3.1264561134318045, -7.0, -3.2279937659927205, -3.749581734865559, -7.0, -3.7574339899382694, -7.0, -3.6421552597562883, -2.2109940047208836, -2.298610521540568, -7.0, -3.8444771757456815, -3.417554724363455, -7.0, -7.0, -7.0, -2.1560946306394277, -3.214843848047698, -4.1908637331287455, -3.0811672147134725, -7.0, -3.078227800040302, -3.701813305543457, -7.0, -7.0, -2.620552444729435, -7.0, -3.334305574736688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9796621686211364, -7.0, -2.9647309210536292, -3.084099424214281, -3.5602355114447897, -3.1547282074401557, -7.0, -3.4306017402583806, -3.5239828175558485, -7.0, -3.680778547794163, -7.0, -7.0, -7.0, -4.019240950395851, -7.0, -2.220108088040055, -7.0, -7.0, -7.0, -3.1526377365836415, -1.7741112725819037, -1.371938715745616, -7.0, -3.1072099696478683, -2.7415455167762097, -3.1109262422664203, -1.2430380486862944, -2.667452952889954, -2.7924617313469504, -7.0, -2.9759727438585846, -1.4763162600834328, -2.693726948923647, -7.0, -7.0, -2.785567089582034, -7.0, -7.0, -7.0, -3.506505032404872, -7.0, -3.1078880251827985, -2.0718820073061255, -1.5895772957033327, -7.0, -3.1432646820112207, -7.0, -7.0, -4.170789590446391, -3.3202847949567196, -4.441922825310942, -7.0, -7.0, -7.0, -7.0, -1.667452952889954, -7.0, -1.7772455264226197, -1.9917006280783427, -7.0, -7.0, -7.0, -1.6658935455344326, -3.7166709755601355, -7.0, -3.322839272686321, -1.7254448998676408, -7.0, -1.5902071645329623, -2.6263403673750423, -7.0, -7.0, -1.3319572471440413, -1.3064250275506872, -7.0, -3.819872821950546, -7.0, -7.0, -7.0, -1.6854431518033566, -2.650242505743437, -1.9934362304976116, -3.128722284338427, -7.0, -7.0, -7.0, -2.0977777345392834, -3.424881636631067, -7.0, -2.1760912590556813, -1.8488047010518036, -7.0, -7.0, -1.649334858712142, -1.8372459346831354, -1.696678207556434, -2.4751867549424627, -2.2257130137265877, -2.7558748556724915, -2.9867717342662448, -2.569373909615046, -2.8967623540510066, -7.0, -7.0, -7.0, -7.0, -2.606381365110605, -7.0, -7.0, -2.0187004986662433, -7.0, -3.413634997198556, -7.0, -3.3639878297484915, -3.586969675475768, -3.4733409641859354, -1.4670528600591584, -7.0, -1.7178553484963925, -7.0, -1.3985829317826486, -1.6947958880615075, -7.0, -2.6334684555795866, -1.7368389826836437, -2.57978359661681, -2.5863439683539147, -2.18089014193745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0511525224473814, -1.646136276056409, -3.0265332645232967, -7.0, -7.0, -7.0, -7.0, -2.782472624166286, -7.0, -2.9836262871245345, -7.0, -7.0, -2.725094521081469, -7.0, -7.0, -2.6434526764861874, -7.0, -3.583584138515784, -7.0, -7.0, -7.0, -7.0, -3.056142262059052, -7.0, -7.0, -2.53655844257153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8904210188009145, -7.0, -7.0, -7.0, -7.0, -3.4271614029259654, -7.0, -7.0, -7.0, -7.0, -7.0, -3.351989455435632, -7.0, -7.0, -2.6906390117159673, -3.804412059137714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.571044657029212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.241973165892279, -3.48422863769372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9135489579065177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.244994166139669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05512338890692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5643527078960786, -2.640481436970422, -2.538762188781348, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8416018942970567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.406625327867206, -7.0, -7.0, -7.0, -7.0, -7.0, -3.285482294847141, -7.0, -7.0, -7.0, -7.0, -3.8590782247469693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.278982116865443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1920574373719934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4326486600131068, -7.0, -3.0108827245590275, -7.0, -7.0, -3.638634451316608, -7.0, -7.0, -7.0, -2.9175055095525466, -2.9476787399369364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4159466351953087, -7.0, -2.1103491705634387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.484299839346786, -3.151676230847048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.111176942004578, -7.0, -7.0, -7.0, -3.2232362731029975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4961560487352887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.469527479187014, -7.0, -3.5110406808136645, -7.0, -7.0, -7.0, -2.5631419252975927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6634496339132876, -7.0, -7.0, -3.2242740142942576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499515254927971, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.288536658044671, -7.0, -7.0, -4.08020545491413, -3.311753861055754, -7.0, -7.0, -7.0, -7.0, -3.570192561095726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.929480233548934, -4.0561727913537755, -4.29161301693988, -7.0, -7.0, -3.48826861549546, -2.572363273177757, -7.0, -3.5950156811695013, -7.0, -3.292292999589303, -3.8081321668795662, -7.0, -7.0, -2.6381845601587646, -3.99947853367931, -4.405943680512197, -2.9283010012108646, -7.0, -4.141992954947583, -7.0, -4.063497122643505, -7.0, -3.791971201020768, -4.10809123558122, -7.0, -4.635483746814912, -7.0, -7.0, -3.2071881988941064, -3.645422269349092, -7.0, -7.0, -3.359835482339888, -3.0128372247051725, -7.0, -7.0, -4.067201087647148, -3.8042076050820413, -7.0, -7.0, -4.282009999342054, -3.722633922533812, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4191293077419758, -2.394417342460363, -4.170291058625393, -3.4807253789884878, -7.0, -3.802636918082811, -7.0, -7.0, -7.0, -4.213198891723608, -3.5094713521025485, -3.2329961103921536, -3.331243195423496, -3.5528348912085557, -7.0, -7.0, -7.0, -7.0, -3.776794548303097, -7.0, -7.0, -3.7005306569785916, -4.093981703914113, -7.0, -3.441695135640717, -4.045831314347755, -3.8217754671834636, -3.402089350572097, -7.0, -7.0, -3.885191540606848, -7.0, -7.0, -4.314646564169264, -3.398761495462114, -7.0, -3.9442950953941773, -7.0, -7.0, -7.0, -4.0520009801013, -2.8512583487190755, -7.0, -7.0, -2.0539012308755322, -3.630665129596291, -2.5679183080896295, -7.0, -3.33665982345442, -2.065321112032189, -2.7496075021373283, -2.599155000684555, -2.3205616801952367, -7.0, -7.0, -2.6414741105040997, -2.5734518220354854, -1.7907349194108384, -3.2938043599193367, -2.5565437084835145, -2.1922445687080447, -2.7017007968251283, -1.280563918213139, -1.9275136000066488, -1.7170727716115393, -2.9352552817840474, -2.523638096385075, -1.7961115793233833, -1.4033211139451396, -2.9177680024477564, -7.0, -2.2476226046698424, -2.382411062610103, -1.9182051383496885, -7.0, -2.8292179777928355, -2.8435150245077465, -2.808498125175687, -2.791690649020118, -1.9439488128550355, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8587777373054495, -1.7394141026986953, -2.518777068926775, -2.5792557928468804, -7.0, -1.8883420984336072, -2.4685934593401977, -2.137474681744051, -7.0, -1.9392922892050897, -3.1300119496719043, -7.0, -2.172931888794524, -2.2671717284030137, -7.0, -7.0, -3.0710531129102714, -2.4527297852992795, -1.9150158860376074, -1.9815165943059867, -2.3336022689601736, -3.1970047280230456, -2.556122943778785, -7.0, -2.032543216047485, -3.1784013415337555, -2.9180303367848803, -3.370698092575577, -7.0, -1.987132653826536, -1.3453083690596945, -7.0, -7.0, -2.2077768862262555, -7.0, -7.0, -3.3969835082752007, -2.9537596917332287, -7.0, -2.5154555153936675, -2.991004440330755, -3.5720579899263045, -2.5861370252307934, -2.2540298877122105, -1.7759183689513516, -1.3975992519013951, -1.5633414633125446, -7.0, -7.0, -2.876617477687183, -1.5923727239248306, -2.8283376000590046, -2.304736656701528, -2.8555393455509726, -2.6652056284346006, -2.152069831431577, -2.6490318071748162, -1.8901908070372926, -7.0, -1.9590413923210934, -7.0, -7.0, -7.0, -3.0, -2.5456444325852305, -7.0, -7.0, -7.0, -2.175134758658844, -7.0, -2.2993983300681498, -2.8175653695597807, -2.6532125137753435, -2.7342662982171966, -2.836640541572774, -2.564961804462294, -2.4020156017566077, -1.4629906891979096, -3.238798562713917, -7.0, -1.9874780957370641, -7.0, -7.0, -7.0, -2.8639173769578603, -2.852174904420303, -3.1690863574870227, -2.7500453120117676, -2.191368201005732, -2.6851817198503856, -3.130333768495006, -7.0, -2.8109042806687006, -7.0, -7.0, -2.5743589135236467, -2.48108415181509, -7.0, -3.0941215958405612, -2.0770270593685027, -1.919987134009703, -7.0, -7.0, -7.0, -7.0, -1.7902460577811867, -7.0, -7.0, -3.076276255404218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.358420299672387, -7.0, -7.0, -7.0, -7.0, -3.640779477344857, -2.496929648073215, -2.803457115648414, -7.0, -7.0, -7.0, -3.6033067965385137, -7.0, -7.0, -7.0, -3.3864299194080996, -7.0, -7.0, -7.0, -2.5943925503754266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.337658891026142, -7.0, -7.0, -7.0, -7.0, -2.1760912590556813, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7096091210726487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0711452904510828, -7.0, -7.0, -7.0, -3.730338067221792, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2201604095245955, -7.0, -7.0, -7.0, -2.44870631990508, -7.0, -7.0, -2.436162647040756, -7.0, -7.0, -7.0, -7.0, -7.0, -2.287054877670668, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.767897616018091, -7.0, -2.885738048239018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.622962847945896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.965248750967121, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.121067167467729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2325726150081295, -7.0, -7.0, -7.0, -3.7760470711817797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3443922736851106, -7.0, -7.0, -4.251662549989795, -7.0, -7.0, -7.0, -2.478566495593843, -7.0, -2.4899584794248346, -7.0, -3.238297067875394, -7.0, -3.5585885831081994, -7.0, -2.9836262871245345, -3.3698742236946972, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.718501688867274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.336859820916809, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.505149978319906, -7.0, -7.0, -2.3716834463321415, -2.6319508262592173, -7.0, -4.450640105302473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9888264070452757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295567099962479, -7.0, -3.089463530840192, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4127754437448354, -7.0, -7.0, -2.5667320289862197, -7.0, -7.0, -7.0, -2.361727836017593, -7.0, -2.8750612633917, -2.4385423487861106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.433929765608464, -7.0, -7.0, -7.0, -4.130344491683163, -7.0, -7.0, -3.155867191785367, -7.0, -7.0, -2.143014800254095, -7.0, -3.1248301494138593, -2.782472624166286, -7.0, -7.0, -7.0, -7.0, -4.143926867032187, -3.0253058652647704, -7.0, -7.0, -7.0, -7.0, -2.3844131561393755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.404833716619938, -7.0, -7.0, -7.0, -7.0, -4.734161115213043, -7.0, -2.77232170672292, -3.7671806115015145, -2.1218059731155416, -7.0, -2.7846172926328756, -7.0, -2.977266212427293, -3.437750562820388, -3.028977705208778, -7.0, -7.0, -7.0, -2.3679767852945943, -7.0, -7.0, -7.0, -7.0, -7.0, -2.475489589123831, -7.0, -7.0, -4.618435126515527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.733582420241032, -7.0, -7.0, -4.575257141709752, -4.656500672601419, -4.501743729627995, -7.0, -7.0, -7.0, -7.0, -3.9965116721541785, -4.608836133184731, -7.0, -5.1016130541812235, -7.0, -7.0, -7.0, -7.0, -4.625549087265309, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0718820073061255, -7.0, -2.960924597102376, -7.0, -7.0, -4.052501563413781, -7.0, -4.543459606069367, -2.9388769633984144, -2.6133131614554594, -3.468495024507069, -3.839540892968969, -7.0, -7.0, -3.7300551523755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.877448137397143, -4.502873021596449, -7.0, -7.0, -7.0, -7.0, -4.310714548718119, -7.0, -7.0, -7.0, -7.0, -7.0, -3.658488381309017, -7.0, -4.277127671229863, -3.1894903136993675, -7.0, -3.5424519473759766, -3.8566382770747882, -7.0, -7.0, -4.128129905388509, -4.262688344301696, -7.0, -3.7883704155653297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.145684651788881, -1.327058280527384, -1.761927838420529, -7.0, -2.7777891874348675, -3.9913590026379504, -7.0, -7.0, -7.0, -3.305136318943639, -2.4191293077419758, -3.180760584229199, -1.725185387172794, -2.216957207361097, -7.0, -7.0, -3.2245330626060857, -2.6589648426644352, -7.0, -7.0, -2.8816699076720615, -7.0, -7.0, -1.5811260844923194, -1.6384892569546374, -7.0, -3.531606631932722, -7.0, -7.0, -7.0, -3.225865712912683, -4.1396193761920275, -7.0, -7.0, -1.667452952889954, -7.0, -7.0, -7.0, -1.4569178686313755, -2.05307844348342, -2.6464037262230695, -2.354108439147401, -3.2987439434824073, -1.645094623553164, -3.0036328370044085, -7.0, -2.588159616383092, -2.0492180226701815, -2.9903388547876015, -1.0372890847194476, -2.4428715548211977, -7.0, -7.0, -1.2203986832211235, -1.2501630993248258, -7.0, -3.5081929260254405, -7.0, -2.893206753059848, -7.0, -1.809933622951006, -2.8706820155665653, -1.678448337191417, -7.0, -2.244689360492884, -7.0, -7.0, -1.933234128714808, -3.1104213464739563, -2.4409090820652177, -1.590051083854947, -1.656417653650555, -3.25478968739721, -1.8750612633917, -1.6232492903979006, -2.064898226955344, -1.6418044981061142, -2.568201724066995, -2.3576863236850003, -2.992995098431342, -2.437433443797971, -1.736630812766223, -2.825993770051668, -3.063427189454848, -2.9471885655260937, -7.0, -7.0, -7.0, -4.270515799574357, -7.0, -2.5705429398818973, -7.0, -3.8364929048584697, -3.1283992687178066, -3.9588504516796785, -3.6803581795496854, -2.8586875505162346, -1.6114577656683426, -7.0, -0.9197316583111611, -7.0, -1.3802112417116061, -1.8226038992559745, -7.0, -2.130333768495006, -2.060697840353612, -7.0, -2.788844411651405, -7.0, -7.0, -7.0, -1.9673139182870836, -2.815577748324267, -2.5998830720736876, -2.6972293427597176, -7.0, -7.0, -1.9149892102916513, -2.2392994791268928, -2.9566485792052033, -7.0, -7.0, -7.0, -2.6875289612146345, -2.3483048630481607, -2.69810054562339, -3.0662327191202587, -7.0, -7.0, -7.0, -7.0, -3.3552599055273786, -7.0, -7.0, -3.6769449705169395, -7.0, -7.0, -3.17868923977559, -7.0, -7.0, -7.0, -7.0, -2.7259116322950483, -2.3560258571931225, -7.0, -2.3710678622717363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.654850090561394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9825877907016625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2605483726369795, -7.0, -7.0, -3.40671045860979, -2.36688968965338, -7.0, -7.0, -2.402547950912391, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.466645228363979, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.686189234244024, -7.0, -3.2430380486862944, -7.0, -7.0, -7.0, -7.0, -3.550269129965307, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9197316583111612, -7.0, -3.651568738865792, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.395064164331242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1981069988734014, -7.0, -7.0, -7.0, -4.2659492899506235, -2.5856486950954656, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278113115979834, -3.74795530690673, -7.0, -7.0, -7.0, -1.3152704347785915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145910834132374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.186532564592397, -3.1327398382608846, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2746657690813885, -7.0, -7.0, -7.0, -3.131779009369187, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2317243833285163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.63205216670581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.178620161601131, -7.0, -7.0, -2.155336037465062, -7.0, -2.4082399653118496, -7.0, -4.55845655864088, -7.0, -7.0, -7.0, -2.499687082618404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6127838567197355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.702171950857711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.037824750588342, -7.0, -7.0, -7.0, -4.027920136405803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.287801729930226, -7.0, -7.0, -1.7829501332654125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.041340040212176, -7.0, -7.0, -2.1398790864012365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.595496221825574, -4.059601279762754, -7.0, -7.0, -2.3138672203691537, -2.075546961392531, -2.678518379040114, -7.0, -3.212986184736668, -4.097048965011131, -7.0, -2.6848453616444123, -7.0, -4.736404470909626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1065308538223815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.596707029681446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.92272545799326, -7.0, -2.656098202012832, -7.0, -1.9777236052888478, -7.0, -7.0, -4.250956439331893, -7.0, -7.0, -7.0, -7.0, -2.2405492482826, -2.346352974450639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.39136231553266, -7.0, -7.0, -7.0, -7.0, -2.851869600729766, -7.0, -2.6273658565927325, -7.0, -7.0, -7.0, -7.0, -3.127428777851599, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3191060593097763, -7.0, -7.0, -2.3263358609287517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.367355921026019, -7.0, -7.0, -2.492061604512599, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9164539485499252, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1072099696478683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8736111969964675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.496805150920314, -7.0, -7.0, -7.0, -3.3096301674258988, -7.0, -2.9656719712201065, -3.144262773761991, -7.0, -7.0, -7.0, -7.0, -2.4424797690644486, -2.821513528404773, -2.1856365769619117, -7.0, -7.0, -2.526339277389844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.606574819558959, -2.4771212547196626, -7.0, -3.7517408738109004, -7.0, -7.0, -2.6766936096248664, -7.0, -2.7937903846908188, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097923341810007, -7.0, -7.0, -7.0, -7.0, -7.0, -2.808885867359812, -7.0, -7.0, -2.6364878963533656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.385069776331935, -5.131971345281056, -7.0, -3.0409976924234905, -4.067207288178004, -7.0, -7.0, -7.0, -7.0, -2.456366033129043, -7.0, -7.0, -7.0, -2.1335389083702174, -7.0, -7.0, -2.2810333672477277, -7.0, -7.0, -3.0334237554869494, -7.0, -3.3651134316275773, -7.0, -7.0, -4.617524534886292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732884074852628, -7.0, -7.0, -7.0, -7.0, -7.0, -4.091614206074446, -7.0, -7.0, -4.17435059747938, -7.0, -7.0, -3.9007493580610793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703815654874549, -3.9196010237841112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.348012638422195, -7.0, -7.0, -3.038620161949703, -7.0, -2.9792881623045173, -3.730216840568694, -7.0, -7.0, -7.0, -7.0, -2.999710373792598, -7.0, -7.0, -7.0, -3.3967222785037734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.336059277866349, -7.0, -3.311194985427823, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4344517990487256, -7.0, -7.0, -7.0, -4.055072382449418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.854002233126989, -3.4171394097273255, -2.5622928644564746, -4.30330407743893, -3.7844389742226907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.986637395610154, -1.6232492903979006, -2.1943160791618803, -7.0, -2.5848963441374497, -3.51018741901152, -2.414973347970818, -1.9673139182870836, -2.342422680822206, -3.4750898033890065, -7.0, -3.6273965838888484, -1.865794662364423, -2.8721562727482928, -7.0, -3.137907705431547, -2.8998205024270964, -7.0, -7.0, -7.0, -2.6251654069508215, -7.0, -3.015778756389041, -2.292994040067439, -1.2397603389250587, -7.0, -3.349795392465258, -7.0, -7.0, -7.0, -3.2085906344388353, -4.263888446167958, -7.0, -7.0, -1.7772455264226197, -7.0, -1.4569178686313755, -7.0, -7.0, -2.36275656405147, -7.0, -7.0, -3.590395947184013, -1.787696568289874, -2.9960736544852753, -2.851869600729766, -2.967547976218862, -2.143014800254095, -2.949877704036875, -1.529879303882462, -2.7101173651118162, -7.0, -7.0, -1.5947607525864629, -1.1760912590556813, -7.0, -7.0, -7.0, -2.8419848045901137, -3.360688062030678, -2.7075701760979367, -3.0349282079313338, -1.5473644129795046, -3.388633969351789, -1.9405164849325671, -7.0, -7.0, -1.9344984512435677, -3.4044060509212692, -2.392696953259666, -2.075546961392531, -1.6637009253896482, -3.2332500095411003, -1.845098040014257, -1.6253124509616739, -2.6380453065128058, -2.866877814337499, -2.5138831856110926, -2.936848717028399, -7.0, -2.9485759586429285, -2.940516484932567, -3.12057393120585, -3.356599435724971, -3.226857570288723, -3.1925674533365456, -7.0, -7.0, -7.0, -7.0, -2.150756439860309, -7.0, -4.311859773623503, -2.317715203094899, -3.352327258816553, -4.280578370368076, -3.7562556487542333, -2.100370545117563, -7.0, -1.4529358702011792, -7.0, -1.5478693332304245, -2.493225621510431, -7.0, -7.0, -1.4913616938342726, -2.130333768495006, -3.303782129113973, -1.845098040014257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3157604906657347, -2.2194535370768107, -1.806179973983887, -7.0, -2.146128035678238, -7.0, -7.0, -7.0, -7.0, -7.0, -3.660675788338524, -7.0, -7.0, -7.0, -7.0, -3.338257230246256, -7.0, -7.0, -4.277150613963797, -7.0, -7.0, -7.0, -7.0, -2.9508514588885464, -2.130333768495006, -7.0, -2.6483600109809315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3372958595898874, -7.0, -7.0, -7.0, -3.8020892578817325, -2.703622017252944, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8955925243123817, -2.833925861701843, -7.0, -2.727270077199637, -3.157736514148242, -7.0, -7.0, -7.0, -3.4173055832445254, -2.931118710592187, -7.0, -3.8070499529448028, -3.4104397862103464, -7.0, -7.0, -7.0, -3.1411360901207392, -7.0, -3.1180993120779945, -7.0, -3.5877109650189114, -3.3960248966085933, -3.4253349238884816, -3.389343311252078, -7.0, -7.0, -7.0, -2.7988232242204005, -7.0, -7.0, -7.0, -7.0, -2.967079734144497, -2.688241795977712, -7.0, -3.4077307280263356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2300655512060468, -7.0, -7.0, -7.0, -3.1124038927178743, -7.0, -7.0, -3.399846712712922, -7.0, -7.0, -2.9849771264154934, -7.0, -7.0, -3.3712757194554817, -7.0, -3.4189638307036225, -7.0, -7.0, -7.0, -7.0, -3.396896449142524, -7.0, -3.4566696294237573, -7.0, -3.4874212113594747, -2.719828286254335, -2.970346876230093, -7.0, -2.7201716499108235, -3.146902869928199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.093421685162235, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8684974938893117, -7.0, -7.0, -7.0, -7.0, -2.9965116721541785, -7.0, -7.0, -7.0, -7.0, -3.2356862287374053, -3.4080702858871854, -7.0, -7.0, -7.0, -3.212453961040276, -7.0, -3.445136968713304, -2.8684680990209865, -7.0, -7.0, -7.0, -3.6402902778133663, -7.0, -7.0, -7.0, -3.451939869365103, -7.0, -2.9324737646771535, -2.945796726048, -7.0, -7.0, -2.0557488898291396, -3.386498965550653, -7.0, -7.0, -7.0, -7.0, -3.1479235389806064, -2.68556261115823, -2.99370069482035, -2.9995654882259823, -7.0, -3.928037206406883, -7.0, -7.0, -7.0, -7.0, -3.2113875529368587, -7.0, -7.0, -7.0, -3.850125259486936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0199466816788423, -7.0, -7.0, -7.0, -2.982874001327729, -3.413132050434872, -7.0, -2.939300802474012, -3.394976719554564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8969669019331548, -7.0, -2.9751099896861612, -7.0, -7.0, -2.7453232539625274, -7.0, -7.0, -2.847572659142112, -3.462397997898956, -3.479863113023098, -7.0, -3.436480695009495, -7.0, -3.438384107034714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02234587626988, -7.0, -2.6869340371737893, -7.0, -3.0101585617234066, -3.401400540781544, -3.100370545117563, -7.0, -7.0, -2.582874673593952, -7.0, -7.0, -3.3884564527002667, -3.155336037465062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4050046650503694, -7.0, -7.0, -3.4670158184384356, -3.187238619831479, -2.837982785381378, -3.263854480804389, -7.0, -2.694429690957083, -3.3935752032695876, -2.987070115921337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0773315611289904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3988077302032647, -7.0, -2.977609302226758, -7.0, -7.0, -7.0, -3.0201540316383326, -7.0, -3.0750600841196736, -3.4379090355394983, -3.5273849773654584, -7.0, -7.0, -7.0, -2.9014583213961123, -2.8926510338773004, -3.2081725266671217, -2.9656719712201065, -3.560743301054712, -7.0, -7.0, -7.0, -7.0, -3.1715802019320636, -2.965044831065058, -7.0, -7.0, -3.4222614508136027, -7.0, -7.0, -7.0, -7.0, -2.9144313118912653, -7.0, -7.0, -7.0, -3.676287061987499, -7.0, -7.0, -2.9454685851318194, -7.0, -7.0, -2.9667672920577095, -7.0, -3.249442961442582, -3.4513258084895195, -7.0, -3.431202884556517, -3.205745540942662, -7.0, -3.4523385438459995, -2.9131513129998394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4379090355394983, -7.0, -7.0, -7.0, -7.0, -3.4087486061842442, -3.3935752032695876, -7.0, -7.0, -4.050031562368401, -3.374106508804013, -3.746338659979659, -3.1248301494138593, -2.832381160247041, -3.571883445956414, -3.216429830876251, -7.0, -3.45178643552429, -7.0, -7.0, -3.6955692270361853, -7.0, -7.0, -3.3881012015705165, -7.0, -3.466125870418199, -7.0, -7.0, -7.0, -3.0523090996473234, -2.7996850909091004, -2.5839540689101295, -7.0, -7.0, -3.436639631692661, -4.162489727736505, -4.017304688562155, -7.0, -4.463459971124135, -3.6356847625472226, -3.160948480864697, -3.4350476413399647, -3.0259624536056147, -7.0, -2.96744768112233, -3.6457605771884154, -4.07515445923309, -3.817598419632618, -2.9992755720056676, -2.437173810435618, -3.523339938201984, -3.210401556278205, -4.0842544591112295, -4.029830019310658, -3.534068432890329, -2.7078143789900295, -3.9856060830524367, -3.4024608541039107, -7.0, -7.0, -4.045694513294837, -3.881341852971215, -7.0, -3.2456031364077282, -2.6625274978220763, -3.7607239721419514, -3.2479509599604097, -3.9366142619752114, -3.6265456590271294, -3.688330818112266, -3.8291107101552946, -4.390811509786938, -7.0, -3.755379324985937, -2.831613855309099, -3.6937049699018094, -2.9014583213961123, -3.283018392821262, -7.0, -7.0, -7.0, -3.3657453030046423, -2.3979400086720375, -2.682934395395032, -3.543602479379584, -3.426917713880816, -3.86308482532036, -7.0, -3.880356199419236, -7.0, -2.944153536490684, -7.0, -3.399673721481038, -3.048247531803974, -7.0, -2.8029139956252727, -3.5748011791913576, -2.934951266485025, -7.0, -3.0161973535124393, -3.417803722639881, -2.9806294763724175, -3.8403570592033565, -4.254146707031936, -2.8926510338773004, -3.5331999071876963, -2.9290781689436507, -2.875704186502311, -3.6146511867000206, -3.4219328132785085, -7.0, -3.1253511205147526, -2.9775711945198147, -3.043283665570575, -3.6920533650340808, -7.0, -3.3494717992143856, -2.8171618438797363, -3.5154764413823756, -2.750845748402496, -7.0, -3.0159881053841304, -3.7953933349312896, -3.4951973183654577, -7.0, -3.409087369447835, -7.0, -7.0, -3.369679599559816, -1.6529485393502215, -2.4143046881283317, -1.3337598790079583, -2.1594722066517003, -1.8400095309250863, -2.1096372294004264, -1.5579444478342641, -2.0412281485084436, -2.9249680958524342, -2.126466755426485, -2.288760085189078, -2.5144207816759283, -1.512529472402638, -1.5416694494681231, -7.0, -2.491977674764168, -2.383366482755039, -2.0762584823084365, -2.443393386643552, -2.6257532845118607, -1.6115765241815292, -3.5021538928713607, -2.374879216730366, -2.1137914745357826, -2.166331421766525, -7.0, -2.186498450104975, -3.4423229557455746, -1.9922883537970923, -3.120231076145884, -2.4090493193344034, -2.5106973033953603, -7.0, -2.70395974394769, -1.9917006280783427, -2.8587777373054495, -2.05307844348342, -7.0, -2.36275656405147, -7.0, -3.4255342204982635, -2.075698998671137, -2.676904551658595, -2.5500535514902856, -2.1934270950455956, -2.876939140345395, -1.6124561285075514, -2.9108022122537744, -2.4608978427565478, -1.8981421668383482, -1.878682081342444, -2.6833043979393607, -3.437433443797971, -2.404149249209695, -2.233334609615762, -3.7753191218294777, -2.079588842963422, -2.711103917985617, -3.1762359997608716, -2.4206538182390798, -1.5638385428055097, -2.037242898156917, -2.0886752501377734, -2.0679073785805415, -1.6657290711973398, -3.4626974081017172, -4.027023254588704, -2.9321353973192474, -2.5040273880538586, -2.367355921026019, -2.308482324064368, -1.648197323403864, -2.040184632969257, -7.0, -2.2519856560522644, -1.5138831856110926, -1.7273933617497892, -2.4690852991231202, -1.829422904495989, -1.915899471000105, -2.518426194755475, -2.1542302584287114, -1.8601617864501327, -2.139750615913122, -2.645422269349092, -2.379758615842701, -2.91399035898314, -2.5449534564447305, -2.786542656827931, -1.994887860393943, -2.263297832993205, -1.8364550785107507, -2.415376352092442, -1.987144679314413, -2.209631556736247, -2.7488813648247152, -2.286653597566442, -2.451615889878312, -3.4916417934775863, -2.32342399587229, -7.0, -1.9308535573499908, -1.7246923259043043, -3.4087486061842442, -2.3935752032695876, -1.9864271928107262, -3.086537783753207, -1.7793286090293619, -2.4447385572188063, -7.0, -3.106870544478654, -2.5675304805301185, -2.611723308007342, -2.815079418399363, -2.3898101993982914, -2.245421266260218, -2.639386869017684, -2.356320094658242, -2.5628025001283783, -2.146691688556713, -3.3888114134735234, -7.0, -7.0, -2.954885432549936, -2.5792935143960207, -2.734319680859007, -2.4369890877885383, -2.2882013016594915, -3.0107238653917734, -2.5668581979161447, -2.6875289612146345, -2.6086232673136136, -2.69810054562339, -3.3888114134735234, -2.820693949973386, -7.0, -7.0, -2.1508744707026994, -2.3638682764365573, -3.0276213815520254, -7.0, -7.0, -3.1384605947257023, -7.0, -2.4005004482688816, -7.0, -7.0, -3.3866772839608377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276162980319142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7311857076340007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.33547682460851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9590334381368626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.015180059737978, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.341038631677523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.672565781378651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.989761187718778, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4982967664443425, -7.0, -7.0, -7.0, -2.0346917694735853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.130569617494949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.433177574067476, -7.0, -7.0, -4.5457152356963135, -3.039017321997412, -7.0, -7.0, -7.0, -7.0, -3.4410664066392633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.61865463874404, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7033773685123497, -7.0, -4.432704787504453, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3942590074761068, -7.0, -7.0, -3.953508414237079, -7.0, -7.0, -7.0, -5.101685223809193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.70474233316836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7388598020722004, -7.0, -7.0, -7.0, -7.0, -3.7863254343900703, -3.222456336679247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.187012807018954, -7.0, -7.0, -7.0, -4.679068864731537, -4.695484595126102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.059184617631371, -7.0, -7.0, -7.0, -4.277609214304091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.633801623517603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5640391252808956, -7.0, -3.5149460053080044, -7.0, -3.084576277934331, -7.0, -2.90687353472207, -3.292964545382929, -3.0622058088197126, -7.0, -7.0, -3.482873583608754, -1.9526310252827455, -2.946482969137085, -7.0, -7.0, -3.3092041796704077, -3.748885440009517, -2.046625212091902, -1.6374241062905812, -2.760045327965811, -2.583765368285, -7.0, -1.9012766462284751, -1.8160462429564344, -1.8344207036815325, -7.0, -2.4683473304121573, -3.055314609787049, -2.7551122663950713, -7.0, -3.4281495256134615, -4.340493689006248, -3.3798176807586167, -7.0, -3.374381698050882, -7.0, -1.7394141026986953, -2.6464037262230695, -7.0, -7.0, -3.4255342204982635, -7.0, -2.367355921026019, -2.646294784925144, -7.0, -2.6240241246478613, -2.9132839017604186, -2.2095150145426308, -7.0, -2.520701826026063, -7.0, -7.0, -3.077044739437673, -1.9444826721501685, -7.0, -7.0, -3.575303333422399, -3.3333800930468676, -2.4727564493172123, -1.0925452076056064, -3.194514341882467, -7.0, -3.719547443511741, -7.0, -1.8267749954875694, -7.0, -7.0, -7.0, -7.0, -2.5363058723510337, -2.2278867046136734, -7.0, -7.0, -2.353387219249733, -7.0, -7.0, -3.6058435390580894, -2.926342446625655, -7.0, -3.2473184686774124, -3.002166061756508, -7.0, -2.6893088591236203, -3.254467510467076, -2.1434879395120294, -1.4949786824666678, -1.8889012465241302, -7.0, -7.0, -3.7937903846908188, -2.801232153830292, -7.0, -3.2773799746672547, -4.314141203260571, -3.1351326513767748, -2.844763838780448, -3.5046520639080847, -2.0669721121857587, -7.0, -2.6532125137753435, -2.5428254269591797, -7.0, -7.0, -7.0, -3.4665710723863543, -7.0, -7.0, -7.0, -2.753153914113024, -7.0, -7.0, -7.0, -2.1183749671059116, -2.5269850685599957, -2.1409268419924303, -2.7151673578484576, -2.4585539192772186, -1.4986286017583395, -7.0, -7.0, -1.670636405692084, -7.0, -7.0, -7.0, -2.403120521175818, -7.0, -7.0, -3.670802284260944, -2.817300878393321, -3.1659858227744544, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6774244377012475, -7.0, -7.0, -3.184691430817599, -2.7662640906519957, -2.698535492562001, -7.0, -7.0, -7.0, -7.0, -2.380211241711606, -7.0, -7.0, -2.3729120029701067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9632104824903385, -7.0, -7.0, -3.0972573096934197, -3.557180541881304, -7.0, -7.0, -7.0, -7.0, -2.780317312140151, -7.0, -4.562602114778459, -2.786751422145561, -7.0, -7.0, -2.821513528404773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4974825373673704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.243781916093795, -3.7311050512159203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0869527242574843, -7.0, -7.0, -7.0, -7.0, -7.0, -2.973589623427257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.568605834163208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0081741840064264, -7.0, -7.0, -7.0, -7.0, -3.168939213835978, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.10893692358826, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1048284036536553, -7.0, -7.0, -7.0, -7.0, -2.8394780473741985, -7.0, -7.0, -3.977311973396926, -7.0, -7.0, -2.6848453616444123, -7.0, -7.0, -3.404320467221731, -7.0, -7.0, -3.0170333392987803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.810568529216413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.952687528323953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.175627764367181, -7.0, -7.0, -3.4692603825691135, -7.0, -7.0, -7.0, -7.0, -3.024485667699167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.250420002308894, -3.6731346140810803, -7.0, -7.0, -7.0, -2.9800033715837464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.699143687394484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8356905714924254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.714413592287121, -7.0, -3.5471180513494303, -7.0, -7.0, -7.0, -3.0436569480416416, -7.0, -7.0, -3.240798771117331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.405847737990737, -7.0, -7.0, -3.777644277696485, -7.0, -7.0, -7.0, -7.0, -3.2022157758011316, -7.0, -7.0, -7.0, -7.0, -7.0, -4.320938652442784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.956432577966348, -7.0, -7.0, -4.24760506415077, -3.1248301494138593, -7.0, -7.0, -7.0, -3.0824263008607717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.320094333903096, -7.0, -7.0, -7.0, -4.433129517580485, -7.0, -7.0, -7.0, -3.6215277949321476, -7.0, -3.264975147583582, -7.0, -7.0, -4.804561930962418, -3.194097885578952, -7.0, -7.0, -3.4504511930355624, -7.0, -7.0, -7.0, -7.0, -7.0, -4.088015533093001, -4.083108279194735, -7.0, -7.0, -7.0, -7.0, -3.7066324508732946, -4.2296562496672125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354722934448935, -4.092913543651593, -3.9744195738522863, -7.0, -4.574852754517795, -4.30982172568023, -2.8019370074044843, -7.0, -7.0, -7.0, -7.0, -3.3255840723546894, -7.0, -4.080265627339845, -7.0, -3.7271344237604884, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8926232292432177, -7.0, -7.0, -3.882410684373968, -4.136040742626403, -7.0, -7.0, -7.0, -7.0, -3.711279852556345, -7.0, -7.0, -3.332337449453026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.688271472050148, -7.0, -7.0, -4.608087238735641, -3.612383509312248, -7.0, -4.335156899534743, -7.0, -7.0, -3.6316466629584196, -4.023458237643675, -7.0, -7.0, -7.0, -2.649334858712142, -4.08292891501513, -2.308324802806524, -2.814913181275074, -2.1151564661735565, -2.61066016308988, -2.1182647260894796, -2.5087685749709543, -2.09627785207853, -7.0, -2.4510184521554574, -2.1223204729384233, -1.260804993703267, -3.139147540217198, -2.0485124262811727, -1.5690393221702197, -3.05595140532915, -3.1645015613095686, -2.506730464271809, -2.0910804693473324, -3.1436392352745433, -2.09429639740537, -2.4380146519023493, -2.78354628227035, -2.1818435879447726, -2.1903316981702914, -2.8530895298518657, -2.7267272090265724, -2.340072128109108, -2.907411360774586, -2.734799829588847, -3.150537154583293, -3.1117763079825163, -2.929851040018942, -7.0, -2.636320699245659, -7.0, -2.518777068926775, -2.354108439147401, -7.0, -7.0, -2.075698998671137, -2.367355921026019, -7.0, -1.9751183516339423, -7.0, -2.492020464505757, -2.2422100322640643, -1.261208285183812, -7.0, -1.677606952720493, -2.0962145853464054, -2.4367985102318035, -3.492461047614479, -2.4110582391986624, -2.7730546933642626, -2.8020892578817325, -7.0, -2.3917842956517066, -2.5759571887637573, -2.716003343634799, -3.0909630765957314, -2.4538277764478607, -2.758569481227834, -2.6541765418779604, -2.1177446411869854, -2.2928096654172903, -2.3687516195445553, -3.6374396927036643, -7.0, -2.6184504075161317, -2.077569761891046, -7.0, -2.311753861055754, -1.602502923015416, -7.0, -7.0, -2.1627085775045116, -2.3324384599156054, -2.6989700043360187, -2.3249943487886915, -2.490660653356137, -2.632601888317874, -1.421527405949555, -2.34908316877959, -2.2223576242096676, -2.4604682735010472, -1.6061424135326907, -7.0, -2.401400540781544, -3.234678307978809, -2.538133687250669, -2.194514341882467, -2.118719290030396, -2.4968877338250617, -2.42433706667645, -2.333704967375953, -2.8558779470193607, -2.3467874862246565, -7.0, -7.0, -2.7693773260761385, -7.0, -2.9190780923760737, -2.5048105531506915, -3.500648063371912, -2.7259116322950483, -2.7846172926328756, -7.0, -1.7394913617805503, -7.0, -2.949877704036875, -7.0, -1.4113268573466697, -1.4710892899497494, -2.113943352306837, -2.0957503474808177, -2.2182573985268057, -2.603144372620182, -2.304490527773488, -7.0, -1.5095187753812356, -7.0, -7.0, -7.0, -2.873320601815399, -2.37045140442245, -7.0, -2.846248724120565, -2.642958879409791, -3.501333178645566, -2.801403710017355, -7.0, -2.9246238275174004, -2.733999286538387, -7.0, -3.28463373316459, -7.0, -7.0, -2.28953940665447, -2.498034723687027, -3.093421685162235, -7.0, -2.6875289612146345, -7.0, -7.0, -2.470727032157512, -7.0, -7.0, -7.0, -7.0, -3.5800121125294244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5457134697726813, -7.0, -7.0, -7.0, -7.0, -3.899382705533265, -7.0, -3.622731965164719, -3.596047007545439, -3.646893624167745, -7.0, -2.5702415557741025, -7.0, -7.0, -7.0, -3.254207397942776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.696913099635797, -7.0, -7.0, -7.0, -7.0, -3.613630434925241, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9262566770031975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2259980915164155, -3.63753976055708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1480882706622184, -3.374289987675311, -7.0, -7.0, -7.0, -3.854548935812951, -7.0, -7.0, -7.0, -7.0, -7.0, -3.149834696715785, -7.0, -7.0, -4.304512069624235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7187863010659177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2400555832772624, -7.0, -3.598899887063883, -7.0, -7.0, -7.0, -7.0, -3.839729375206388, -3.36275167111627, -3.584444307165176, -3.615950051656401, -3.12602311790052, -3.485504748083348, -7.0, -7.0, -7.0, -3.318793504793297, -7.0, -3.2909245593827543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.320613576530592, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.19041574703329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6259294927162946, -7.0, -7.0, -3.434234234551041, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.599923484718011, -7.0, -7.0, -3.588866164710985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4570488265856314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0024900412432993, -7.0, -7.0, -7.0, -2.6025250577460293, -3.300812794118117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.329092647195331, -7.0, -7.0, -4.461456505933693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5886078047426864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2743887955503785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.71121652432109, -7.0, -7.0, -7.0, -7.0, -3.622731965164719, -3.22901594276341, -7.0, -3.0386077448439592, -7.0, -7.0, -7.0, -2.210768061785912, -7.0, -7.0, -3.7024305364455254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.797613730153076, -7.0, -7.0, -7.0, -2.6334882587980255, -7.0, -7.0, -3.6669857183296606, -7.0, -7.0, -3.3137617962924364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5974757898703773, -4.33219599532464, -7.0, -7.0, -7.0, -7.0, -3.6802448370426077, -7.0, -7.0, -7.0, -3.3093107157881754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.815429100194955, -7.0, -7.0, -2.3769508166030784, -2.886678690759447, -7.0, -3.318689269947746, -3.5907304057926903, -3.653983907374069, -2.566610773321697, -3.665393350279712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.874848889727198, -3.7329344633546433, -7.0, -7.0, -7.0, -2.973897197435795, -3.456619044777273, -7.0, -3.298408846961862, -7.0, -3.010027225211449, -4.0124048232620035, -4.6893177403105595, -4.826470025252119, -2.1796294144440775, -7.0, -7.0, -2.654185541400976, -4.129657673312688, -3.7420767398479198, -7.0, -5.1136760118971, -3.3425805773816273, -3.207243784491376, -4.187746269780459, -7.0, -4.359645792674543, -7.0, -7.0, -2.829697676172511, -3.306425027550687, -7.0, -3.8414220444023592, -3.7928584219256614, -3.5141048209728325, -7.0, -7.0, -3.8116587737331162, -3.447994792653729, -7.0, -3.1981987286196296, -4.3103533890449945, -3.772725002459211, -7.0, -7.0, -4.171550945676746, -7.0, -3.8865132853388156, -3.6834973176798114, -7.0, -3.407079165783919, -3.4617235692693926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.975845225467567, -3.064907027159636, -7.0, -3.6397686226140973, -3.4273852129070925, -4.279692604072538, -7.0, -2.961104552884867, -7.0, -3.1850534366695835, -7.0, -4.959580346517151, -3.57966929355472, -3.698796251790431, -7.0, -3.9092350033683076, -3.65931391573872, -3.8747523219012376, -7.0, -7.0, -7.0, -3.776555910703262, -7.0, -7.0, -4.340999022531442, -3.0350401101934903, -7.0, -3.889871048788647, -7.0, -7.0, -3.5785819114018698, -7.0, -7.0, -7.0, -7.0, -2.776182127536158, -7.0, -2.3365909505522704, -3.1192558892779365, -3.3757550347552243, -2.768215121441203, -2.659769972970185, -2.823604628355158, -2.628110148946118, -7.0, -2.8079857748471495, -2.5182415695447813, -2.208226305935583, -2.6159879440749574, -2.958181497564948, -2.0671814799805035, -2.1969258872346105, -2.6808124456850986, -1.930949031167523, -2.263636068588108, -3.193773698800548, -2.6783160050933468, -2.7396382614999117, -2.8756399370041685, -2.3659557226656793, -2.780934207814762, -2.903524064471262, -3.2821687783046416, -2.671299097228857, -2.5700119525533682, -7.0, -1.8469539732166491, -2.604954897808633, -2.5282774962218273, -7.0, -1.8972503938239382, -7.0, -2.5792557928468804, -3.2987439434824073, -7.0, -3.590395947184013, -2.676904551658595, -2.646294784925144, -1.9751183516339423, -7.0, -3.2823955047425257, -2.102167380456483, -2.4320669125427994, -1.5434847071478615, -7.0, -1.6066023341156235, -2.991779669753309, -3.669688708056208, -3.018076063645795, -2.9104109399146885, -3.5901728315963144, -3.5947239464097467, -3.5621143505886863, -2.4659074673550583, -2.946943270697825, -2.556201957999874, -2.6127308907483417, -2.9188687433809846, -1.9647609404708088, -2.7772196208195874, -2.333806998266098, -2.707144188342445, -2.671481400086431, -3.0363384944941667, -3.2907022432878543, -2.368864587950433, -2.079281765543943, -3.6028193424326997, -7.0, -1.5695703901023565, -3.578409970331236, -3.5871494982543437, -3.1005428500124648, -3.6416723732246865, -2.854407264149028, -2.831525232824983, -3.3561215062369856, -1.2012655633156346, -1.4279696159410684, -2.4858192956610146, -2.001949941084268, -2.164848342982397, -1.6817629124916509, -3.5801263254115825, -3.1027766148834415, -2.853855152597072, -2.8794542970180665, -3.2932520331478248, -2.299418511507402, -2.825372016929148, -2.8442996228070254, -2.210523506005551, -2.4137043234788376, -1.099284687397692, -3.2898118391176214, -2.2447223227699977, -7.0, -3.5820633629117085, -3.1383026981662816, -7.0, -1.7003686995285836, -3.5833121519830775, -3.591954555046735, -7.0, -1.5222652921803954, -7.0, -2.443210816819927, -7.0, -2.748630958693654, -2.0144155225606033, -2.5157634906474584, -2.3492775274679554, -2.5305554148925595, -2.3057351235423744, -1.9172274028628247, -7.0, -1.824175916887475, -7.0, -3.5779511277297553, -7.0, -2.6510625367017844, -3.6028193424326997, -3.608312042697327, -2.6580113966571126, -2.451210575353416, -3.333581606227454, -7.0, -7.0, -3.065729059462349, -7.0, -7.0, -2.4642223595797477, -3.278410601475816, -7.0, -2.285557309007774, -2.3443922736851106, -3.3557387836020354, -7.0, -7.0, -3.0091320695404717, -7.0, -2.346352974450639, -7.0, -3.3066394410242617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8627275283179747, -7.0, -7.0, -3.578409970331236, -7.0, -2.926342446625655, -4.032123523311559, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7134905430939424, -2.5344491888776157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45178643552429, -7.0, -7.0, -2.3384564936046046, -7.0, -4.0405495992697675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.756217584467264, -2.2810333672477277, -7.0, -7.0, -2.625312450961674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.133818235928276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.958277125547698, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3680078052211746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0717715794167555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.716003343634799, -7.0, -7.0, -3.949390006644913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7666730483760844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0049658871068234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.852479993636856, -7.0, -7.0, -7.0, -7.0, -1.720159303405957, -7.0, -7.0, -7.0, -2.4927603890268375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.157456768134226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.571708831808688, -7.0, -7.0, -7.0, -7.0, -3.126888677692568, -7.0, -7.0, -2.823474229170301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1986570869544226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6180480967120925, -7.0, -3.074084689028244, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097715316475808, -2.960470777534299, -7.0, -7.0, -7.0, -7.0, -2.7664128471123997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.374198257929083, -7.0, -7.0, -3.0166155475571776, -4.066462591676076, -2.6646419755561257, -7.0, -2.6646419755561257, -7.0, -2.424881636631067, -3.1124374173218436, -7.0, -7.0, -7.0, -7.0, -2.745855195173729, -7.0, -7.0, -7.0, -3.0086001717619175, -7.0, -3.353723937588949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.650928887067893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.409510452269316, -7.0, -4.301073422940844, -7.0, -7.0, -7.0, -7.0, -7.0, -3.296811392747983, -2.69810054562339, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2528530309798933, -7.0, -4.008078279150566, -7.0, -7.0, -3.590395947184013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1532659350758685, -3.40705081480425, -1.8736111969964673, -4.126542660758098, -4.0848264166974335, -7.0, -4.02998204239725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9847522781154137, -1.906694111260769, -2.1698423097786796, -7.0, -7.0, -3.1391591616911594, -7.0, -2.018423082826786, -1.3979400086720375, -3.1693804953119495, -7.0, -3.585368425713485, -2.142493751023144, -7.0, -7.0, -7.0, -7.0, -3.4148062795010126, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7267272090265724, -1.0565734553021526, -7.0, -3.3458962687263867, -7.0, -7.0, -7.0, -3.639695617444053, -7.0, -7.0, -7.0, -1.6658935455344326, -7.0, -1.645094623553164, -7.0, -1.787696568289874, -2.5500535514902856, -7.0, -7.0, -3.2823955047425257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.738384123512156, -2.9858753573083936, -7.0, -7.0, -1.7829501332654125, -1.7423322823571483, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3502480183341627, -3.3169892313236793, -1.6803355134145632, -7.0, -7.0, -7.0, -7.0, -7.0, -3.399240941692456, -7.0, -2.478566495593843, -2.1409268419924303, -7.0, -7.0, -1.8948696567452525, -2.740926342372719, -2.0453229787866576, -2.7745169657285493, -2.709269960975831, -7.0, -2.636655029117369, -2.6074550232146687, -2.8720729868180532, -7.0, -3.2111205412580492, -7.0, -7.0, -1.9956351945975501, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.580057801286702, -7.0, -1.8016323462331667, -7.0, -1.5390760987927767, -7.0, -2.018076063645795, -2.03342375548695, -7.0, -7.0, -7.0, -7.0, -2.970439862951764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1782573208121887, -2.305351369446624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0523090996473234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.576617736181542, -1.968482948553935, -7.0, -3.1341771075767664, -7.0, -7.0, -1.8750612633917, -7.0, -1.8773713458697743, -7.0, -7.0, -7.0, -2.541579243946581, -7.0, -7.0, -3.68761812957177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8873835596662767, -7.0, -7.0, -7.0, -3.46453922366873, -3.3519411763536078, -7.0, -7.0, -7.0, -7.0, -7.0, -2.065471512398471, -7.0, -7.0, -3.14713505089171, -2.973633058847854, -7.0, -7.0, -7.0, -7.0, -3.3952390010815514, -7.0, -4.611659592651788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388633969351789, -4.120343562438025, -7.0, -7.0, -3.40705081480425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.940872085117753, -2.9089315942207272, -7.0, -3.695831772826692, -3.7710727832211948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2322335211147335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8193476390283543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.533136288278639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731346975545955, -7.0, -7.0, -7.0, -7.0, -2.5075320532526666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6010273151444854, -2.757421336591866, -7.0, -7.0, -7.0, -3.4934213598717854, -7.0, -3.148833929054163, -3.064008486531724, -7.0, -7.0, -3.395937645080042, -7.0, -7.0, -7.0, -3.442511124934785, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9328425922848016, -7.0, -7.0, -3.7330366829335797, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8582965245338854, -3.753046561626529, -7.0, -7.0, -7.0, -3.742148831165734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7949525327803473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295860195625301, -7.0, -7.0, -2.746794906209887, -7.0, -3.1190908524217216, -3.1158600345090313, -3.724849087629386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9866437936313814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9221413362079565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.039731296098691, -3.4219328132785085, -3.1763031311338112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.340779583365695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7589118923979736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8197412972730103, -7.0, -2.579829309419537, -7.0, -3.0945072711564916, -7.0, -7.0, -7.0, -3.4670158184384356, -7.0, -7.0, -2.7431532888962975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.693111115462141, -3.388574805196408, -3.739572344450092, -7.0, -7.0, -2.305847233799526, -7.0, -7.0, -3.413090111901509, -7.0, -7.0, -7.0, -7.0, -3.2979063453791824, -3.7188337183038622, -7.0, -7.0, -7.0, -7.0, -2.6191302542928296, -7.0, -7.0, -7.0, -7.0, -3.76774936734558, -3.729083757043612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.13443212489584, -7.0, -3.7327673383614615, -7.0, -7.0, -3.997102296115629, -3.2785249647370174, -7.0, -7.0, -7.0, -7.0, -3.8673496171887924, -7.0, -7.0, -7.0, -7.0, -3.726890140741822, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2447099622092566, -7.0, -7.0, -2.73846910433268, -3.1905974381230235, -3.5875613115088494, -7.0, -3.6527434983124007, -2.7473470602930266, -1.7833837773173207, -3.3578029561814304, -1.9769622734382644, -7.0, -2.1209742817146546, -2.602328757112121, -3.4196427559764406, -3.3858359982701076, -2.2382851204611374, -4.373445342297979, -2.8294084996129136, -2.4060103914302835, -2.9858753573083936, -3.424929654153577, -4.1028451642454185, -3.7746728723524074, -3.1785093257409924, -1.6840836382549131, -2.7841416140728312, -4.277448759264485, -3.8255095744151486, -3.3120185940611497, -7.0, -2.1137040935650018, -2.4689009244729716, -3.6309259600101225, -3.2259451449169103, -3.0895297965599102, -2.9562885174336575, -3.73883999253075, -3.5022905279147727, -2.953308577080214, -2.4443901474007856, -2.8375253094496014, -3.7640266076920375, -3.777395748455203, -2.262256231598923, -3.526511582284746, -3.7285161047597666, -3.5995282897455563, -7.0, -2.676583438522829, -4.030235296012245, -3.0981589834605336, -2.8333596367430127, -2.9864417053328878, -3.6857865089215553, -7.0, -3.6988396964442867, -3.482158695411276, -7.0, -7.0, -3.601647215470563, -3.536621562182411, -3.7292458072253067, -2.3106933123433606, -2.7066132925258684, -4.144410024868985, -7.0, -7.0, -3.399846712712922, -2.8577918243237983, -7.0, -4.964646126434858, -3.2385980342643643, -3.6037125907704572, -7.0, -3.00798472191076, -3.0545541312161957, -7.0, -2.886561221801466, -7.0, -2.703560041586495, -2.13593313027341, -3.0191756567901225, -7.0, -3.3096785486972573, -2.62215055900234, -7.0, -3.5985899046347534, -7.0, -3.5159400420933182, -3.6358856852812727, -3.1733319803686495, -3.1026909129627085, -7.0, -7.0, -3.021520064114033, -2.6965417074824223, -1.4669544236323824, -7.0, -2.43985879260072, -2.1405589996233214, -1.6200260717887942, -2.157722276885424, -1.8623947148370348, -3.706888394981618, -7.0, -2.1249249928945724, -2.38662634331426, -1.9425832713408406, -2.5431364147862197, -1.9495526333017104, -2.183501582177713, -1.9426606368895096, -1.7994826615235353, -1.6249795495865822, -1.6901176379652818, -2.263513634396092, -1.9901888852467187, -2.28024859203978, -1.8559382914396632, -3.724930914192398, -2.9269423601642295, -7.0, -1.9174860593215874, -2.598032502044919, -3.6911699341316035, -2.246957221948706, -1.8233301165436868, -1.7285760749719628, -3.2119210843085093, -2.0026106777183132, -3.7166709755601355, -1.8883420984336072, -3.0036328370044085, -3.686189234244024, -2.9960736544852753, -2.1934270950455956, -2.6240241246478613, -2.492020464505757, -2.102167380456483, -7.0, -7.0, -2.332680789215245, -1.6154932128305772, -7.0, -2.4671015942209, -2.9993045723383487, -2.209897821514885, -1.7682138941023071, -2.453233375851931, -7.0, -7.0, -2.967547976218862, -1.7162884340349953, -2.061099407170852, -2.5266622930104643, -1.7467405382251568, -3.240632438491053, -2.0450265248027604, -2.640978057358332, -1.433320930526303, -2.669485932526948, -2.0744673493508063, -2.8132806812044433, -7.0, -1.4925905178698389, -1.9349868799532348, -3.005866601875385, -3.11293997608408, -1.6591059160721733, -7.0, -7.0, -1.9832981771972058, -3.1339378927638313, -3.4287825114969546, -2.5625571946422996, -2.9701918541039056, -2.825721094673752, -2.4892551683692603, -1.8416722500736344, -0.9613839667026424, -1.8397572915451457, -1.7616415061326538, -7.0, -3.6878855248487055, -2.095112473102566, -1.327907800587444, -2.520439860913926, -1.5205012362844792, -2.0059045301136, -1.9747641765839266, -1.2402247952415473, -2.390732771727705, -1.7974954977507929, -3.395064164331242, -2.2896367235821415, -3.217659381292399, -3.3880123433641907, -3.715836275164994, -3.2748503200166645, -2.2187688400680257, -7.0, -3.696967640744023, -7.0, -1.6792740381044218, -7.0, -2.4878035787194768, -3.394889257167419, -2.697839368218363, -2.87671257519829, -2.6996643202023733, -2.15991078065811, -1.4178348373889769, -1.8322454644228146, -3.7311050512159203, -7.0, -1.8502107875348965, -7.0, -7.0, -7.0, -3.407645797062556, -2.801232153830292, -7.0, -2.644063267433544, -1.5582794773214852, -2.645075342571035, -3.397853141088609, -7.0, -2.455352509957491, -3.2136062891507047, -7.0, -2.631388417846043, -2.9876662649262746, -7.0, -2.7866804531966487, -1.5344166586740948, -3.0492180226701815, -7.0, -7.0, -7.0, -7.0, -1.4999674716021913, -2.907859040931642, -7.0, -3.6851144690465394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.759809439370634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8341026557127935, -4.035126569752172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.563979170379509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.271609301378832, -3.2629254693318317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5691006825019738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5893910231369333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0073209529227447, -7.0, -7.0, -7.0, -7.0, -7.0, -3.482912543686698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.745855195173729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.983175072037813, -7.0, -7.0, -7.0, -7.0, -7.0, -2.975431808509263, -7.0, -7.0, -3.571825249040829, -7.0, -7.0, -7.0, -7.0, -4.262925469331831, -7.0, -7.0, -2.8887409606828927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.414137362184477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4883391579275007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.300071883219573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5434471800817002, -7.0, -3.10300507069192, -7.0, -7.0, -2.770179807426844, -7.0, -2.705007959333336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1048284036536553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9273703630390235, -2.788875115775417, -7.0, -7.0, -3.388988785124714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.733999286538387, -7.0, -3.565611724902059, -5.1507901999565835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7041505168397992, -7.0, -7.0, -7.0, -7.0, -7.0, -2.845098040014257, -7.0, -7.0, -7.0, -7.0, -3.1536624535754956, -2.81424759573192, -7.0, -7.0, -7.0, -7.0, -2.7032913781186614, -3.1214777702040943, -7.0, -3.5487032689653533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.749736315569061, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8873359303991672, -7.0, -7.0, -7.0, -4.310470267690811, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2744144486696105, -2.3873898263387296, -7.0, -7.0, -7.0, -7.0, -4.321339474830754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.734763036969308, -7.0, -2.8920946026904804, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1222158782728267, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0334237554869494, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5389191721490083, -7.0, -7.0, -3.923295840655504, -4.449547819044489, -7.0, -7.0, -7.0, -7.0, -3.130333768495006, -4.404885008214813, -3.4575472663217233, -7.0, -3.7469454096151047, -3.977449227382341, -4.057970231710706, -4.027132066235224, -3.1961070683879766, -7.0, -4.39557099712082, -3.5417999830005087, -2.86544240791904, -3.4986391993469956, -3.6241789257480224, -4.801866573503306, -3.8937062930647133, -3.583531737692542, -3.484975673477698, -7.0, -3.9303478327178527, -3.75724415102197, -7.0, -3.5033990969678186, -3.7553920379663954, -4.585629902197222, -4.24659704910637, -3.410242820877784, -3.1214285183679626, -4.24740856192157, -4.066363202258494, -4.055875039146097, -3.5506999661491356, -3.9797304306622854, -7.0, -3.1284108091278755, -3.1355990420591975, -2.216957207361097, -7.0, -7.0, -7.0, -3.593667507425168, -7.0, -7.0, -3.2389059505937725, -3.675044735955893, -3.7364761820276966, -7.0, -7.0, -7.0, -7.0, -7.0, -3.418494636403444, -2.942338818066408, -3.04493154614916, -3.3614634023667214, -4.282712723035266, -4.872616555783219, -7.0, -7.0, -7.0, -3.615550274725666, -7.0, -4.944137073158098, -7.0, -3.3731695589037214, -7.0, -3.3917288224907427, -7.0, -4.285669805960068, -7.0, -7.0, -7.0, -4.168939213835978, -7.0, -7.0, -3.6549141836078363, -3.225262277614999, -7.0, -4.160208336707736, -7.0, -7.0, -7.0, -3.550921040371087, -1.7542390929782323, -7.0, -7.0, -3.0043213737826426, -3.1322596895310446, -2.065848845441796, -7.0, -2.494711025205263, -2.66838591669, -2.664328518680805, -2.6634867656723524, -2.131502012593951, -7.0, -7.0, -2.4074928794601025, -2.476638437013566, -2.706331625343998, -2.0492180226701815, -2.300305567669649, -2.901094895030216, -2.324429449539036, -2.130333768495006, -2.0724478633886565, -3.1784013415337555, -1.8348973393414871, -2.2077241069247497, -3.1248301494138593, -2.170848203643309, -7.0, -2.6164755138885654, -7.0, -2.4056877866727775, -7.0, -7.0, -2.8941702626757158, -2.398574855225215, -2.3889769626014203, -7.0, -2.0293837776852097, -7.0, -2.4685934593401977, -7.0, -7.0, -2.851869600729766, -2.876939140345395, -2.9132839017604186, -2.2422100322640643, -2.4320669125427994, -7.0, -2.332680789215245, -7.0, -1.7376579998153256, -7.0, -2.0453229787866576, -2.8739015978644615, -2.871864702088195, -3.0606382077267607, -7.0, -7.0, -2.5728716022004803, -2.5709672628095492, -2.2380461031287955, -3.0969100130080562, -3.0637085593914173, -2.399327532158679, -7.0, -2.8261504195347094, -2.529772453228238, -2.255272505103306, -7.0, -2.241795431295199, -2.8640658790902367, -7.0, -2.2920977719262914, -2.300305567669649, -2.6138418218760693, -2.1912646619703375, -1.6368220975871743, -7.0, -2.833784374656479, -2.737987326333431, -7.0, -7.0, -3.2754649240207465, -7.0, -3.495821753385906, -2.2764618041732443, -2.2780673308886628, -2.2177470732627937, -2.0952719366411383, -2.702215059149166, -7.0, -7.0, -2.505678722692645, -2.50454637227152, -7.0, -1.9816807577862645, -3.0197392326747052, -1.8077431231767653, -2.255736247252979, -2.5643980501637254, -2.3888114134735234, -2.5532760461370994, -2.620829816274487, -7.0, -7.0, -2.3710678622717363, -7.0, -2.2327286876731725, -7.0, -2.8603380065709936, -7.0, -1.9811768322540424, -7.0, -3.003029470553618, -2.150449409460881, -7.0, -3.0128372247051725, -7.0, -2.3364597338485296, -2.2624510897304293, -2.3204924754334133, -7.0, -7.0, -2.1996866278914977, -7.0, -2.7788744720027396, -7.0, -2.45687190911158, -2.3106933123433606, -7.0, -2.659397536216122, -2.5180351146012647, -3.215637563435062, -7.0, -7.0, -1.6472456655033265, -2.515873843711679, -7.0, -2.6228669789943773, -7.0, -7.0, -2.317366791939507, -2.472091271546032, -2.5282737771670436, -7.0, -7.0, -2.958085848521085, -7.0, -2.4512380145877897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071605884917739, -7.0, -7.0, -7.0, -7.0, -3.770557474850995, -7.0, -7.0, -7.0, -7.0, -7.0, -2.937609063316496, -7.0, -7.0, -2.922552466761376, -3.295313299732073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100198171834132, -3.2730012720637376, -7.0, -7.0, -3.2846562827885157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8898430655962555, -7.0, -7.0, -3.3016809492935764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.876506504265881, -3.822625678774141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2706788361447066, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0883487522885287, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3432115901797474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.982019832464153, -3.3240765797394864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0532705666813786, -7.0, -7.0, -7.0, -7.0, -3.358315640082196, -7.0, -7.0, -3.022634539944119, -7.0, -3.1618669046240195, -2.9682493941079175, -7.0, -7.0, -7.0, -7.0, -7.0, -3.210764270129043, -3.450433875172564, -7.0, -7.0, -7.0, -4.050016080603039, -7.0, -3.404149249209695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9893689057927917, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3246253644997976, -7.0, -7.0, -3.362293937964231, -7.0, -7.0, -7.0, -7.0, -3.3332456989619628, -3.31270614559789, -3.407900540142635, -7.0, -7.0, -7.0, -3.5270173329247743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388633969351789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0241855933138573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.909556029241175, -7.0, -2.9002677932301673, -7.0, -7.0, -2.7103334589000303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.267406418752904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.611487278391802, -7.0, -3.3760291817281805, -7.0, -7.0, -7.0, -7.0, -2.519171463821659, -3.2460059040760294, -7.0, -7.0, -2.953034457250357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.568788212315347, -7.0, -3.2060158767633444, -3.5858751617487856, -7.0, -7.0, -7.0, -2.7427251313046983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0097212316193764, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7884040804994115, -7.0, -7.0, -3.4207806195485655, -7.0, -3.3005954838899636, -2.53585649562398, -7.0, -7.0, -7.0, -7.0, -2.4283373095287994, -2.853833358651982, -7.0, -3.175551345592731, -7.0, -7.0, -7.0, -2.851105401197895, -7.0, -7.0, -3.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.356599435724971, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.261976191397813, -2.848086434763257, -7.0, -7.0, -7.0, -3.447158031342219, -7.0, -7.0, -3.5595475555804343, -7.0, -7.0, -7.0, -7.0, -2.5505340865995074, -2.8502376796666677, -7.0, -7.0, -7.0, -7.0, -3.598106255035145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.43554815511796, -7.0, -2.653051634172873, -3.9617650709235295, -3.4143046881283317, -7.0, -7.0, -7.0, -2.78993308093175, -7.0, -7.0, -7.0, -7.0, -7.0, -3.347720217034038, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5921767573958667, -7.0, -7.0, -3.4577002722181076, -4.4583053921180165, -4.303563215917248, -7.0, -3.411206332727312, -2.9564085711958326, -2.45178643552429, -4.123001813306024, -2.7664363303175405, -7.0, -2.5831633372681906, -3.6892533475901, -3.4664505419101532, -3.4905938285395868, -2.5543978789552284, -3.613122686057697, -3.9379690029514527, -3.0127997435208993, -3.154918245723459, -3.721583931807987, -3.6796549786993333, -3.902594337119436, -3.475768010191268, -3.105044184864794, -2.9792230848365144, -4.199700338629511, -3.5615386395828335, -3.1718288005614204, -7.0, -2.8353651041047767, -2.8617494140448767, -3.753145151639366, -3.2735336801512975, -2.8383767747778115, -2.5455320229865954, -4.274711914167965, -7.0, -3.423773626101113, -2.9675145470935016, -7.0, -7.0, -3.6347906462565187, -3.104808335056258, -2.3215293907256065, -7.0, -3.8063835018241674, -7.0, -4.0848145085941185, -3.4043775248953203, -7.0, -3.4243915544102776, -3.8849368971038603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7502511875699738, -3.27600198996205, -7.0, -3.127050778278675, -3.840639221302228, -4.875943432270175, -7.0, -7.0, -7.0, -3.673236003278857, -7.0, -4.949765582122831, -3.0457922327295592, -7.0, -7.0, -7.0, -4.066661302300677, -7.0, -7.0, -7.0, -7.0, -3.502263204344856, -7.0, -7.0, -3.2785457548220838, -3.3022739518555517, -7.0, -3.8034863797892493, -7.0, -7.0, -7.0, -3.5952757118020995, -2.446270810437326, -7.0, -7.0, -2.330210784571528, -2.7822445368764037, -1.4957483370250002, -7.0, -1.7102335465419447, -1.8142046196810313, -1.7334265652607361, -2.1733028418881863, -1.354321904121914, -3.298197867109815, -7.0, -1.9846149758131035, -1.3738311450738303, -2.4705872752836098, -1.8704748452468267, -1.6112403829248851, -2.314610663315729, -2.1296527163487453, -1.718262357736775, -1.4418478143140785, -1.8949534731079374, -0.5661427555146684, -1.8084360542881113, -2.2762850101622933, -1.4815125406856344, -2.3394514413064407, -2.338013561917151, -2.952792443044092, -1.7596138917133635, -2.1341771075767664, -2.6532125137753435, -2.360556678753837, -2.301640293264161, -1.9008031495820312, -7.0, -1.788701432716952, -3.322839272686321, -2.137474681744051, -2.588159616383092, -3.2430380486862944, -2.967547976218862, -1.6124561285075514, -2.2095150145426308, -1.261208285183812, -1.5434847071478615, -7.0, -1.6154932128305772, -1.7376579998153256, -7.0, -7.0, -1.3766521986509315, -2.1933565313276127, -1.7533276666586115, -2.371886334353305, -2.263958684288399, -2.567731962548069, -2.577261953585815, -2.6402329136549687, -1.6657230891384838, -2.1433822236955566, -2.456935102197454, -1.9189347135428458, -2.848394408643486, -2.2164665449283945, -2.732594775555279, -1.5729617843078287, -1.853871964321762, -1.624488362513449, -2.917417976652542, -7.0, -2.0698398148530557, -1.8840397404753637, -2.6913025633834833, -2.057539321108782, -1.135912354426246, -3.243534101832062, -7.0, -1.4338119269204794, -2.413113411586694, -2.397746945996307, -2.204507572580716, -2.316145147021726, -2.5499224041295117, -1.451674132507183, -1.7914827158151627, -1.4456495390930346, -1.8630523559186847, -1.4076494900585457, -3.247236549506764, -2.4671145890738178, -2.165226863891662, -1.6858536557480714, -1.8685268867682039, -1.3311130078939017, -2.168612933906424, -1.7433529514095556, -1.771148039831543, -2.4260674243490388, -1.621325570893433, -3.2704459080179626, -2.3359135659099737, -3.267406418752904, -3.2513948500401044, -2.4147645023395254, -2.323252100171687, -1.7001945196638903, -3.254064452914338, -2.4244149042036596, -7.0, -1.0958209128367133, -7.0, -2.553073530637089, -2.3636119798921444, -1.6937744673308175, -1.5923234324930717, -1.7502979638618927, -1.3329079675093363, -1.5120517683287142, -2.0672268892739267, -2.5103534801122604, -7.0, -1.2817248404685946, -7.0, -7.0, -7.0, -3.303196057420489, -2.5143263432841403, -3.3057811512549824, -2.5853197019112546, -2.029291521820412, -2.8677620246502005, -2.5770319856260313, -3.241795431295199, -2.0947039943211667, -2.7783924580998707, -2.941511432634403, -2.7428736842330848, -7.0, -7.0, -2.011234928974885, -1.7939117977421835, -2.9206450014067875, -7.0, -7.0, -7.0, -3.2430380486862944, -1.9293323179800537, -3.245018870737753, -7.0, -3.2400497721126476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9294189257142926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517077077735613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.73559889969818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.754348335711019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388988785124714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9444826721501685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.53655844257153, -7.0, -2.673020907128896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067321982033744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.462397997898956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5991185650553628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605402024154815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3636119798921444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.99563519459755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.344195715871435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.73200754860863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.702878387059499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.161966616364075, -7.0, -7.0, -3.688330818112266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.350867996286564, -4.678081133111508, -7.0, -7.0, -7.0, -7.0, -4.609679765845366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.302125207107494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.296665190261531, -7.0, -7.0, -7.0, -7.0, -2.123851640967086, -7.0, -7.0, -7.0, -4.325413029667313, -2.294466226161593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6848453616444123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639386869017684, -7.0, -7.0, -7.0, -1.7254448998676408, -7.0, -2.0492180226701815, -7.0, -2.143014800254095, -2.9108022122537744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.369745808033441, -2.9633155113861114, -7.0, -7.0, -1.8293037728310249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9044594722217942, -7.0, -7.0, -7.0, -7.0, -7.0, -2.184691430817599, -3.6961815871685237, -7.0, -7.0, -2.2648178230095364, -7.0, -7.0, -1.7323937598229684, -3.2805783703680764, -7.0, -7.0, -3.7066324508732946, -7.0, -3.4082399653118496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.24551266781415, -7.0, -4.309545003295436, -7.0, -7.0, -3.977014440868899, -7.0, -1.5409548089261327, -7.0, -1.8129133566428557, -7.0, -2.269512944217916, -7.0, -7.0, -7.0, -2.184691430817599, -7.0, -3.8447877188278463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3489859568078573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9735665465930157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.526339277389844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.423245873936808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.692758818154724, -7.0, -7.0, -2.9740509027928774, -7.0, -7.0, -3.154880244718762, -3.652343055062715, -7.0, -2.711244671343486, -4.036155338400719, -7.0, -7.0, -2.895422546039408, -7.0, -7.0, -7.0, -3.4518808627642996, -7.0, -7.0, -2.9523080096621253, -2.6798819421128623, -2.7415455167762097, -2.8937617620579434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2276725026453836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.053347392169267, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0923696996291206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1645985157488954, -7.0, -7.0, -7.0, -7.0, -7.0, -2.218535505216528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0832875693272825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8388822164366654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.478566495593843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0874264570362855, -7.0, -7.0, -3.3527210309601645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.192455938511975, -7.0, -7.0, -3.5300074899760445, -7.0, -7.0, -7.0, -7.0, -3.1316186643491255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0111473607757975, -7.0, -7.0, -7.0, -3.118430077122089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.306207442837337, -7.0, -7.0, -7.0, -2.7955324427101544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.732647658971915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7385427409287852, -7.0, -3.9034698285071703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.571825249040829, -7.0, -7.0, -3.4974134646862063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2474822606770544, -7.0, -7.0, -7.0, -4.197008176980776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.320051968271859, -7.0, -7.0, -4.0751087964165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.471438407389299, -7.0, -7.0, -3.9251573271758984, -4.450933891015594, -7.0, -7.0, -4.437845653390831, -7.0, -3.2696685774329497, -7.0, -4.1359114555750605, -7.0, -3.577721524509021, -4.104464348950593, -7.0, -4.806573375125132, -2.9257245269360626, -7.0, -4.3987036951130785, -3.295547978155418, -7.0, -7.0, -7.0, -4.626384855468794, -3.9035782936630543, -4.010914489420639, -7.0, -7.0, -7.0, -7.0, -7.0, -3.709151192339796, -4.237166582685473, -4.587654850995718, -4.251005173493635, -7.0, -7.0, -7.0, -7.0, -3.8831691450660495, -7.0, -7.0, -7.0, -7.0, -3.537714180353135, -7.0, -7.0, -4.073388381115178, -7.0, -4.073143797726908, -7.0, -7.0, -3.7897216939809217, -4.157758886046864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.201861216277263, -7.0, -7.0, -7.0, -4.079380252083097, -7.0, -7.0, -2.9189036418889307, -7.0, -3.5760270615789516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.611245214834831, -3.339463133018275, -7.0, -4.639167623995889, -7.0, -7.0, -3.660675788338524, -7.0, -3.000434077479319, -7.0, -7.0, -2.5969634343085812, -3.394171400415131, -2.094615974413513, -7.0, -3.2430380486862944, -2.4424797690644486, -2.7711463488149852, -3.060404015244707, -2.0442783733957133, -7.0, -7.0, -2.539538289847167, -1.67502804868833, -2.854771469382554, -2.887617300335736, -2.1367205671564067, -1.5547028876074942, -2.4847268042986617, -2.0869527242574843, -2.3389874160202413, -2.446640706109038, -2.6368220975871743, -2.6524880857810116, -2.478566495593843, -1.7481880270062005, -7.0, -2.7019994748896368, -7.0, -2.4839437142904197, -2.3408405498123317, -2.9237619608287004, -2.9996814005458545, -2.7703020479535585, -2.8472367506682015, -7.0, -1.0493942427910425, -7.0, -1.9392922892050897, -2.9903388547876015, -7.0, -2.949877704036875, -2.4608978427565478, -2.520701826026063, -1.677606952720493, -1.6066023341156235, -7.0, -2.4671015942209, -2.0453229787866576, -1.3766521986509315, -7.0, -7.0, -2.2648178230095364, -7.0, -3.2292485325945703, -2.7287594751678745, -7.0, -2.6665179805548807, -3.155538458574251, -2.3947642803372315, -2.8536982117761744, -2.5224442335063197, -2.6028943709926877, -3.061829307294699, -2.5256871158248355, -7.0, -2.2061154317675733, -2.028977705208778, -2.6138418218760693, -3.2537740196788794, -7.0, -2.6092894271326985, -1.957447649314536, -3.0017337128090005, -7.0, -1.6728672017718136, -7.0, -7.0, -3.182414652434554, -7.0, -1.2858154554403158, -2.987591791037401, -2.486288760960566, -3.2187979981117376, -1.6715012994876535, -2.2239036770313434, -2.508613876414027, -2.157418988613354, -2.1058106306359194, -2.6009728956867484, -2.2008504980910777, -2.9813881752136666, -2.307353389042854, -2.2648178230095364, -2.1001890976606084, -2.7326411505912094, -2.430903949947793, -2.299125788809188, -2.7251829315824416, -1.8886006620281743, -7.0, -1.6936641487670914, -7.0, -7.0, -2.3494717992143856, -7.0, -2.422488823515177, -2.214843848047698, -2.6546577546495245, -7.0, -1.77222428759243, -7.0, -1.759290033024304, -2.951823035315912, -2.3650197428165347, -1.7250201619541745, -2.1968207439144254, -2.061954844073114, -2.4144162029529017, -2.1487325081429565, -7.0, -7.0, -1.7896420142298675, -7.0, -7.0, -7.0, -2.315970345456918, -7.0, -7.0, -2.76217822440723, -2.580696939712437, -3.5400790888041724, -2.666049738480516, -7.0, -3.1492191126553797, -2.9232440186302764, -7.0, -2.8755732063094888, -7.0, -7.0, -2.614264287358705, -2.3899251194809668, -2.8847953639489807, -7.0, -7.0, -7.0, -7.0, -2.4705574852172743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658993413729996, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -7.0, -7.0, -7.0, -3.9017306917292185, -7.0, -7.0, -7.0, -3.8363413812454157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5477747053878224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.404149249209695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788168371141168, -3.0523090996473234, -7.0, -7.0, -7.0, -4.029424364058016, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.244277120801843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.425697213362591, -7.0, -3.819925420670676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.53655844257153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2824710539263124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.217878578027433, -7.0, -7.0, -7.0, -7.0, -4.134591434710877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.485579476984679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.11277252110537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7641761323903307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.690196080028514, -7.0, -2.7902851640332416, -7.0, -7.0, -3.8832151518408686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.225567713439471, -7.0, -7.0, -7.0, -7.0, -3.2231342182366127, -2.3979400086720375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5453071164658243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3961993470957363, -7.0, -7.0, -7.0, -2.6232492903979003, -2.2764618041732443, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -7.0, -2.2900346113625183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.547402381300456, -7.0, -7.0, -2.3096301674258988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6854730197227594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.185825359612962, -7.0, -7.0, -7.0, -2.9829492885744986, -7.0, -3.68761812957177, -7.0, -4.196259110505376, -7.0, -7.0, -7.0, -2.658859007527588, -7.0, -7.0, -3.1556396337597765, -3.1354506993455136, -7.0, -7.0, -2.255272505103306, -7.0, -2.5428254269591797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4258601450778405, -7.0, -7.0, -7.0, -4.606972205508573, -7.0, -7.0, -3.7545776560447304, -7.0, -7.0, -2.709269960975831, -7.0, -3.1082266563749283, -2.7450747915820575, -7.0, -7.0, -2.9745116927373285, -7.0, -4.620916458565429, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5308397786165204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3096301674258988, -7.0, -7.0, -7.0, -7.0, -5.4330638317805935, -7.0, -2.7535830588929064, -3.9427023688886678, -3.00987563371216, -7.0, -2.747411807886423, -7.0, -2.9537596917332287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -2.671543085262574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3119656603683665, -7.0, -7.0, -4.256027841969174, -7.0, -4.031165999660659, -7.0, -7.0, -7.0, -3.791164125033335, -7.0, -7.0, -4.174708970233648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.449817679720294, -7.0, -4.40308618823917, -4.221648928192229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.751279103983342, -7.0, -3.3997818490757465, -3.255754786643044, -7.0, -4.050573076755148, -7.0, -4.5428378707488655, -3.7812525942484565, -2.9020028913507296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3434085938038574, -7.0, -4.052617000746292, -4.377697741146842, -7.0, -7.0, -3.2757719001649312, -7.0, -3.766008960973985, -7.0, -7.0, -3.601081727784023, -7.0, -7.0, -3.6536947953150816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.423245873936808, -7.0, -3.826495928923713, -3.7179081470475372, -7.0, -4.155922798949886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071661123441788, -2.5554079701072574, -1.1832698436828046, -1.7207497786592607, -2.403120521175818, -2.5244888507220873, -3.143505503331407, -2.7327956982893293, -2.0086001717619175, -7.0, -2.73610663443214, -7.0, -3.2657813960273496, -1.3217145945238322, -1.88309335857569, -2.9923325590474645, -2.324440754727877, -2.6077230235205526, -2.5253687865236367, -7.0, -2.541579243946581, -2.3950350180286306, -2.957607287060095, -2.3287872003545345, -1.6685292718594495, -1.816241299991783, -7.0, -3.130076332517164, -7.0, -7.0, -3.7697021868101284, -2.977186616645736, -3.699782558847431, -7.0, -3.059752694209299, -1.5902071645329623, -3.1300119496719043, -1.0372890847194476, -7.0, -1.529879303882462, -1.8981421668383482, -7.0, -2.0962145853464054, -2.991779669753309, -1.738384123512156, -2.9993045723383487, -2.8739015978644615, -2.1933565313276127, -1.369745808033441, -2.2648178230095364, -7.0, -2.066532978754233, -3.8543667780408697, -7.0, -1.2993564117744152, -1.588271706842329, -7.0, -2.7632237318290302, -7.0, -7.0, -3.3641756327706194, -1.7708520116421442, -2.881388268712521, -1.3026355223793997, -2.917330426106554, -1.9758911364017928, -2.497620649781288, -3.922777341928798, -2.4756711883244296, -2.804480189105993, -2.591064607026499, -1.7414892646574982, -1.2918866162241114, -2.541579243946581, -1.5340261060561349, -1.5422917863244727, -1.9986616492277378, -1.924853370060748, -2.5378190950732744, -2.393366257159277, -2.66838591669, -2.7320719409998664, -1.6867355479190071, -2.6102505672074927, -2.8822398480188234, -3.2362852774480286, -2.9011857801371503, -7.0, -7.0, -3.2274893735743424, -3.3919930722597127, -1.5314789170422551, -2.657294935980072, -3.5342800052050816, -2.330413773349191, -3.2571023326591644, -3.239572462938868, -2.980154931341663, -1.5393897820725049, -2.6175245348862926, -1.1050617650276022, -7.0, -1.4060917606915835, -1.8311381767490547, -3.4559102403827433, -1.7323937598229684, -1.4975439260849654, -7.0, -2.61687690940715, -2.399673721481038, -7.0, -7.0, -2.0320812676114404, -2.478566495593843, -2.541579243946581, -2.3483048630481607, -3.4034637013453173, -3.3234583668494677, -2.0644579892269186, -7.0, -2.6299190355035416, -7.0, -7.0, -7.0, -2.640481436970422, -2.1183749671059116, -7.0, -2.6208928305639048, -3.2065560440990297, -7.0, -2.509202522331103, -7.0, -3.044147620878723, -7.0, -7.0, -3.198313363563387, -7.0, -7.0, -3.1640552918934515, -3.455758203104137, -2.9684829485539352, -7.0, -7.0, -2.6830470382388496, -7.0, -3.249809609401804, -7.0, -7.0, -2.2174839442139063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8877672897973903, -7.0, -7.0, -7.0, -7.0, -3.1020905255118367, -7.0, -7.0, -7.0, -7.0, -2.9656719712201065, -3.161767169985413, -7.0, -7.0, -2.924795995797912, -3.580856577457996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6807886115066824, -7.0, -7.0, -7.0, -2.5906932564421776, -2.973589623427257, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5595076406424986, -3.463519723400486, -7.0, -7.0, -7.0, -7.0, -2.9863237770507656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058577849133225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.23792056635038, -7.0, -3.0398105541483504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0425755124401905, -2.8048206787211623, -7.0, -3.0093221052868215, -7.0, -2.9943171526696366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1562461903973444, -7.0, -7.0, -7.0, -7.0, -3.161966616364075, -7.0, -7.0, -7.0, -7.0, -4.088171539864352, -3.0132586652835167, -7.0, -7.0, -7.0, -7.0, -7.0, -3.129689892199301, -2.6590961883427093, -7.0, -7.0, -7.0, -7.0, -7.0, -3.231979026831504, -7.0, -7.0, -7.0, -7.0, -2.7489628612561616, -7.0, -7.0, -3.0417434884744745, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4398850808173016, -3.22219604630172, -3.5324995860946626, -3.168202746842631, -7.0, -7.0, -7.0, -7.0, -3.121887985103681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.208710019906401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.189786987593324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.936276058415254, -7.0, -7.0, -2.8102325179950842, -7.0, -3.1734776434529945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9793966030856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7528164311882715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8454081396217936, -7.0, -7.0, -4.1103080468020226, -7.0, -7.0, -2.9763499790032735, -2.4409090820652177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.063750228327108, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.989894563718773, -7.0, -2.754157142891773, -7.0, -7.0, -7.0, -2.948412965778601, -3.123524980942732, -2.1196328810393728, -7.0, -4.206407565044267, -7.0, -7.0, -7.0, -7.0, -2.7264555202583103, -2.929929560084588, -3.3372595397502756, -7.0, -7.0, -7.0, -7.0, -7.0, -2.857633985150008, -3.0948203803548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.929801957767847, -2.8901414600645774, -7.0, -7.0, -3.915821787620399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.82865989653532, -2.811909980420099, -7.0, -7.0, -7.0, -7.0, -3.078712230584682, -7.0, -7.0, -7.0, -7.0, -3.28397928423848, -2.851869600729766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.204798038190855, -4.2037525929992885, -7.0, -7.0, -7.0, -3.24699069924155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8435442119456353, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3737605108568895, -7.0, -7.0, -3.4792255786863295, -4.7530312233905745, -4.285264680481154, -7.0, -4.440011242111454, -7.0, -2.8534700560147392, -7.0, -2.113388887581343, -7.0, -3.214654654195042, -7.0, -4.362039283400967, -4.330352886677328, -2.6884369360445195, -7.0, -3.6227492192709927, -2.851621383349694, -7.0, -7.0, -7.0, -5.103988342354368, -7.0, -2.8297913511939936, -7.0, -7.0, -4.632619236619118, -7.0, -7.0, -2.655486914153674, -3.9395192526186187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5846138761717827, -7.0, -3.215329068686353, -7.0, -4.278776457955645, -4.31893939156067, -7.0, -7.0, -4.07838430874819, -7.0, -3.1897221619552822, -7.0, -3.3694014136966244, -4.095622595021622, -3.559637350780155, -3.7610252517113727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.890551417985771, -3.414625592612454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4187982905903533, -7.0, -4.292743271377071, -7.0, -3.4108615542165976, -7.0, -3.7009343568115676, -2.8305886686851442, -7.0, -2.904068176024568, -3.726645720240912, -7.0, -4.64053112457209, -7.0, -7.0, -3.6734816970733473, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7970943426302544, -2.026191965559533, -2.5571060060508883, -1.461906714495997, -2.4931093601037926, -2.585883537734565, -2.5875030989919194, -1.6882220108027965, -7.0, -7.0, -2.348694190265541, -3.0863598306747484, -3.2926486926420218, -1.872685900230887, -2.579497782534824, -3.432969290874406, -3.1955537388251134, -3.374748346010104, -2.631570588836501, -2.959756672990995, -2.4572761860613257, -2.365838835440669, -3.2174839442139063, -2.7812765493758462, -7.0, -7.0, -7.0, -2.5940434390367693, -7.0, -2.6875289612146345, -3.3331160652665863, -2.646217420011067, -2.882703835811221, -2.9804578922761, -3.1815577738627865, -2.6263403673750423, -7.0, -2.4428715548211977, -7.0, -2.7101173651118162, -1.878682081342444, -7.0, -2.4367985102318035, -3.669688708056208, -2.9858753573083936, -2.209897821514885, -2.871864702088195, -1.7533276666586115, -2.9633155113861114, -7.0, -2.066532978754233, -7.0, -3.3460007009567505, -3.08278537031645, -2.5323296410790315, -2.7263196121107756, -7.0, -1.386574644667463, -7.0, -3.1687920203141817, -3.7300551523755, -7.0, -2.1226285770080024, -2.1666603081752025, -2.274021941116145, -2.306067436355595, -3.137986732723532, -7.0, -7.0, -2.98878184345364, -2.8816699076720615, -7.0, -2.0516786212178384, -2.278225797182899, -7.0, -2.6976651626476746, -0.5055996361497943, -2.1335389083702174, -3.156851901070011, -2.4951790465148163, -2.922984815708883, -3.2364112877439664, -2.6143698395482886, -2.0681130729281074, -2.1769176998034636, -2.914166793875635, -3.3688445068258215, -7.0, -7.0, -2.923649417232252, -2.601380875502475, -2.7255032688593155, -2.3263358609287517, -2.103845169179113, -2.225093804429503, -2.3336039908101927, -3.121275254704084, -2.9660075670036736, -7.0, -7.0, -3.0090257420869104, -7.0, -2.4972752863579952, -2.386880986817247, -3.5563025007672873, -7.0, -2.315550534421905, -7.0, -2.3426877729215305, -7.0, -7.0, -3.0136796972911926, -2.7275412570285567, -2.8276922886744456, -7.0, -3.075911761482778, -1.483523746328793, -3.454692449239477, -7.0, -7.0, -2.422699247707434, -2.2610248339923973, -7.0, -7.0, -3.0718820073061255, -2.452935870201179, -7.0, -3.1264561134318045, -2.9953060589380653, -3.5569052690554477, -3.0277572046905536, -7.0, -2.7709992051639407, -7.0, -7.0, -3.1802141284628545, -7.0, -7.0, -3.041392685158225, -3.25491044215453, -3.2234959409623944, -7.0, -7.0, -3.0881360887005513, -7.0, -3.1559430179718366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7328773476313475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7724115266843383, -3.699178415672612, -7.0, -3.8667204327514666, -3.0019319261726443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2809803088344367, -7.0, -7.0, -4.330920830595236, -7.0, -4.335136825371625, -7.0, -7.0, -7.0, -3.7545012293869173, -7.0, -3.853647520853222, -7.0, -7.0, -4.33374946248197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8764872659889766, -4.418450450829583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.347583686308583, -7.0, -7.0, -7.0, -2.996921912886755, -7.0, -7.0, -4.028835490094027, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275138523943827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9474819330823383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.630976218273112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3881012015705165, -3.248102386173046, -7.0, -7.0, -7.0, -2.840273036699264, -7.0, -7.0, -4.347505649475902, -7.0, -7.0, -3.4277700279826964, -7.0, -7.0, -7.0, -2.867740479949696, -7.0, -7.0, -7.0, -7.0, -7.0, -3.714212366993632, -7.0, -7.0, -7.0, -7.0, -3.959566046637928, -7.0, -7.0, -7.0, -4.0731866097643925, -4.34478512263266, -7.0, -7.0, -7.0, -3.916756533209448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.04153084778685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.191194759164397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3582395081717715, -7.0, -2.7786591702013523, -7.0, -7.0, -3.1691375262036536, -7.0, -4.035889806536247, -7.0, -3.86053763630648, -4.039037170468973, -4.346059433052574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.468229138961733, -7.0, -3.219939869134243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7313671298249993, -4.328868673852926, -7.0, -7.0, -2.7504143122960287, -3.5546102852261643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.338356873353703, -4.341315794596473, -4.086092764263604, -2.7372302618724946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.780006516518213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8554383867477418, -3.647167725824425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.408315357115164, -7.0, -3.414772858093331, -7.0, -2.403412075058249, -7.0, -7.0, -7.0, -3.079422453763852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.376595204340475, -7.0, -7.0, -7.0, -2.5750319221719042, -7.0, -7.0, -2.996219709466273, -7.0, -7.0, -7.0, -7.0, -4.350596864828633, -7.0, -7.0, -7.0, -7.0, -7.0, -2.394350064207708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.700054385628239, -7.0, -2.8169694414205235, -7.0, -4.347739717920052, -3.3021375840925624, -4.345530558034622, -7.0, -7.0, -7.0, -4.343093345096137, -4.075966455076692, -7.0, -7.0, -7.0, -7.0, -4.338237298881058, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.154205326806114, -2.383349427409276, -2.3020149037518745, -3.637489729512511, -2.972175602200704, -3.4106835243506506, -2.4135847287244094, -2.597184351345655, -1.879222692401706, -7.0, -1.7696844959347846, -1.5777084362726672, -2.902193001921932, -3.0126572169237327, -1.9900008485916754, -2.600842261159698, -2.360489612854706, -2.0334103511294153, -2.9992287931945603, -2.6210066189222463, -3.5610268074521003, -2.599433350934423, -2.852174904420303, -1.6527263796754403, -2.4174517633625174, -2.9459852948678504, -2.9876662649262746, -2.840415361234832, -3.752221362521766, -1.9798488744665137, -2.415761415240735, -2.9263865501223236, -2.9596205198487553, -2.5385930662861886, -2.4605459930373628, -3.121140821355396, -3.1291794789307543, -2.7333878793499453, -1.8752177377158223, -3.8786223149975245, -4.347622699467242, -3.590083553256622, -3.1375229005224505, -3.821824563121178, -7.0, -3.1293138563822125, -7.0, -3.4694344260533714, -4.1331555381979905, -3.8794590739205956, -2.456698912578988, -3.241434406207398, -3.8154781280733654, -7.0, -7.0, -7.0, -4.332559641467404, -7.0, -3.0293837776852097, -3.765929202203141, -4.0377451292695925, -3.121460358577064, -2.703212850278049, -2.8138144174810424, -7.0, -7.0, -4.332054495108195, -3.1582572723535107, -3.633097968969741, -3.7805773148311355, -3.399812119978673, -2.7625446007781327, -7.0, -3.027926923900929, -3.5399816774775767, -2.938476215234873, -3.6555993877807866, -7.0, -4.390440506647526, -2.43605164525564, -7.0, -7.0, -3.5573798033833013, -2.7960687999951257, -7.0, -2.784236791474462, -4.348791467560584, -7.0, -3.496462599613991, -3.350164918327805, -7.0, -7.0, -7.0, -2.9379389434628047, -2.280074923864183, -1.8620822651944848, -7.0, -3.268285379752997, -3.2556945307314797, -2.6614414777862088, -2.0524350335421793, -2.721849855734995, -7.0, -7.0, -2.160606408821159, -3.1299717055462297, -1.4718679935980048, -3.302114376956201, -3.164134662201509, -2.7493591928622245, -2.708404555762662, -2.248571774044563, -2.245162645730847, -1.9079845757798979, -2.7465344047134894, -2.934552554328816, -2.285736493934199, -2.4403383022601792, -4.337758671493417, -4.333205372625344, -4.32956058217531, -2.513389967131988, -2.5263998611218113, -4.329763875013317, -1.9848474035913466, -1.822845781490173, -1.5223035926343103, -4.028286509426278, -2.432148600147286, -7.0, -2.172931888794524, -7.0, -3.550269129965307, -7.0, -2.6833043979393607, -3.077044739437673, -3.492461047614479, -3.018076063645795, -7.0, -1.7682138941023071, -3.0606382077267607, -2.371886334353305, -7.0, -3.2292485325945703, -3.8543667780408697, -3.3460007009567505, -7.0, -3.011469746969986, -4.330778914230818, -7.0, -2.4326874301696493, -2.4684426226740652, -2.0026907670493985, -3.0167747537109664, -2.0944677032145895, -3.8588979572320037, -1.3914371383869562, -4.035969768696547, -1.8790996538569065, -4.033705151467852, -2.994517113298384, -2.604462774208763, -7.0, -0.9859959393208597, -2.5904078965706305, -3.730923519488264, -3.858276462425929, -2.3060610481219515, -7.0, -7.0, -3.0371665710609026, -3.738423783297755, -4.338994048444886, -2.8070067293866274, -3.1971426649725627, -4.377324467736556, -4.343290402353433, -2.321557007938544, -1.665195412347772, -2.416238675127561, -2.043498454033951, -7.0, -7.0, -2.38067441862354, -1.5187677020832215, -3.486228010560835, -2.3316373543153595, -1.6831881398524553, -3.236401595942225, -2.047157708190914, -2.197936592210945, -2.1444758842037395, -4.330941100576426, -2.65864725984816, -7.0, -3.483974250740474, -4.335558188065861, -3.6454615702388433, -2.9319298313009488, -7.0, -4.3311032263764995, -7.0, -1.6553518997858951, -7.0, -2.7118875349737244, -4.330900559667934, -4.331670190532614, -3.1905917966861046, -3.8548928032859053, -3.0546332107067022, -2.552207171798418, -2.20251480500679, -7.0, -7.0, -2.7609776951458618, -7.0, -7.0, -7.0, -3.187238619831479, -3.855902603038427, -3.488792371601868, -2.6607299938405795, -1.5380360795803627, -2.2787353144843996, -3.729407796963068, -7.0, -3.0251009610468134, -7.0, -7.0, -2.1842418562440282, -4.32888903983956, -7.0, -3.0310042813635367, -1.5401610352777684, -3.138993072190013, -7.0, -7.0, -4.334795422556774, -7.0, -1.5540799038901723, -4.02771646220899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.660372112436349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.909556029241175, -7.0, -7.0, -7.0, -4.87868261552967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.737852332664364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9696954111184732, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.865400118179301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.877563299235066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0346284566253203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3717449567751165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.779957051246906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1982583425666515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.608526033577194, -7.0, -7.0, -3.7655195430979527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.098553743137019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9588027033995026, -7.0, -5.132262892280901, -7.0, -7.0, -4.546629020271727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.619427274881493, -4.271268362216237, -7.0, -7.0, -4.430478187932044, -2.6410773133253747, -3.40849436021236, -7.0, -4.257190419161368, -7.0, -3.337698805964078, -7.0, -7.0, -4.803436629576479, -3.617541997119941, -4.280942405998698, -7.0, -3.6530966864691754, -4.000650953629595, -4.308799103911129, -7.0, -7.0, -7.0, -4.0868436925849005, -4.077149794716969, -4.158663980813989, -7.0, -4.452047240809425, -7.0, -3.750996669417183, -4.2254126728659545, -7.0, -3.938544741419228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.005223424858136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5970000511866353, -4.143608034837595, -3.7134905430939424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.679405181871566, -7.0, -7.0, -7.0, -7.0, -7.0, -3.681060243631812, -7.0, -7.0, -7.0, -7.0, -3.667452952889954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.15896526038341, -7.0, -2.9532323686103794, -7.0, -2.6317818729476508, -2.814913181275074, -2.550577745255679, -3.1499225661105013, -2.61066016308988, -7.0, -7.0, -3.488127496247458, -2.4913616938342726, -2.956403463201103, -3.0354297381845483, -2.6651117370750512, -2.721398375521505, -3.4533947936132776, -2.1638568026386698, -2.27307847310952, -2.1807708138746293, -2.623766000133931, -3.1965906541173066, -1.8980497623524202, -2.037426497940624, -7.0, -7.0, -7.0, -2.8835352601144084, -2.808210972924222, -7.0, -2.6910372643636857, -3.5280955685137827, -3.279635481413465, -7.0, -2.206646006705649, -7.0, -2.2671717284030137, -7.0, -7.0, -7.0, -3.437433443797971, -1.9444826721501685, -2.4110582391986624, -2.9104109399146885, -7.0, -2.453233375851931, -7.0, -2.263958684288399, -7.0, -2.7287594751678745, -7.0, -3.08278537031645, -3.011469746969986, -7.0, -7.0, -7.0, -3.5837653682849995, -2.8145139523682383, -2.0769133845918026, -2.032920808723266, -2.8997293311279466, -7.0, -3.5499836111596887, -7.0, -2.3369597851207042, -7.0, -7.0, -3.9302356527662847, -7.0, -2.514298659173731, -2.0573807905423553, -7.0, -2.82020145948564, -2.496699069633021, -7.0, -7.0, -3.6137361412618714, -2.9628426812012423, -7.0, -3.4295908022233017, -3.0330214446829107, -3.45499721730946, -3.022840610876528, -2.782313337723311, -2.2904056446887195, -1.9397568966638934, -2.194135761749324, -7.0, -7.0, -3.6705241577820797, -2.3339508043872472, -7.0, -2.446270810437326, -3.3153194652587508, -2.554186199069382, -2.618950946772595, -3.2842953482305264, -2.2207803128431354, -7.0, -2.20682587603185, -7.0, -2.5514499979728753, -2.8228216453031045, -7.0, -3.4774106879072515, -7.0, -2.6473829701146196, -7.0, -2.8526324579115143, -7.0, -2.381415942849977, -7.0, -2.673941998634088, -2.3950350180286306, -2.6928469192772297, -2.0681858617461617, -2.470802365112064, -2.2012019796387126, -7.0, -7.0, -1.9498333905342697, -7.0, -7.0, -7.0, -2.7649229846498886, -7.0, -7.0, -7.0, -2.570672638100542, -2.6312987867110733, -2.6702458530741238, -7.0, -7.0, -7.0, -7.0, -3.4359353272334707, -7.0, -7.0, -2.7269987279362624, -2.520701826026063, -2.426917713880816, -7.0, -7.0, -7.0, -7.0, -2.451668372595222, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658621843187422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.585009279902461, -7.0, -7.0, -4.032457582714929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0232524596337114, -7.0, -7.0, -7.0, -2.3283796034387376, -7.0, -3.7019994748896368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9167433817375144, -7.0, -7.0, -7.0, -2.2833012287035497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.392696953259666, -7.0, -3.9163486522754605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3602525081936707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4353425998364004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1061908972634154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.761927838420529, -7.0, -7.0, -4.728093939379775, -7.0, -7.0, -7.0, -7.0, -2.2355284469075487, -2.342422680822206, -7.0, -3.215373152783422, -7.0, -3.8543667780408697, -7.0, -7.0, -3.3690487889403373, -7.0, -2.741151598851785, -7.0, -7.0, -7.0, -7.0, -2.625312450961674, -7.0, -2.6374897295125104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0172420845476458, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.79309160017658, -7.0, -7.0, -5.149360774273305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1746411926604483, -7.0, -7.0, -7.0, -7.0, -7.0, -3.684126925613075, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8314431588415765, -7.0, -7.0, -2.8419848045901137, -7.0, -7.0, -7.0, -7.0, -7.0, -2.82020145948564, -2.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.334453751150931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0948203803548, -2.2329961103921536, -7.0, -7.0, -2.9561684304753633, -7.0, -4.796879480889998, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3276994240014997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3847117429382823, -4.830931734844233, -7.0, -3.0402066275747113, -4.54435334413586, -2.992995098431342, -7.0, -7.0, -7.0, -7.0, -3.4234097277330933, -7.0, -1.9003671286564703, -7.0, -7.0, -2.486430478854434, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3195791985677108, -7.0, -7.0, -4.617503579279065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431821944337311, -7.0, -4.029586671630457, -7.0, -7.0, -7.0, -4.3926442017384275, -7.0, -4.38737202701981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.226642860005068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.347973660278038, -7.0, -7.0, -2.559108289366632, -4.269746373130767, -3.1256330524746545, -3.7300551523755, -7.0, -7.0, -7.0, -7.0, -2.6627578316815743, -2.7146091386431936, -4.067480023931482, -4.137828663756581, -7.0, -7.0, -7.0, -7.0, -2.5211380837040362, -7.0, -4.183895915385611, -7.0, -7.0, -3.3983837273914785, -4.50246808922949, -7.0, -7.0, -7.0, -7.0, -4.309768523528787, -7.0, -7.0, -7.0, -3.753889331459834, -2.383815365980431, -7.0, -7.0, -7.0, -7.0, -3.6405808064896528, -7.0, -7.0, -3.4168068718229443, -7.0, -3.759106405842074, -4.261631565092629, -7.0, -4.632690068324521, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.907187347522648, -2.0, -1.8001508005876772, -7.0, -3.063145637106638, -3.2880702826432477, -2.7168377232995247, -2.0922526548953835, -7.0, -2.6953357196809247, -7.0, -3.3967837584701703, -1.591570483009036, -2.3915231836751634, -3.285107029566812, -2.697308615276485, -7.0, -3.4243915544102776, -3.018284308426531, -2.5165353738957994, -2.7715874808812555, -7.0, -2.7130703258556395, -1.715243423087623, -2.561101383649056, -7.0, -3.127558302004633, -7.0, -7.0, -7.0, -3.2249810506270045, -4.138918170381583, -7.0, -7.0, -1.3319572471440413, -7.0, -1.2203986832211235, -7.0, -1.5947607525864629, -2.404149249209695, -7.0, -2.7730546933642626, -3.5901728315963144, -1.7829501332654125, -7.0, -7.0, -2.567731962548069, -1.8293037728310249, -7.0, -1.2993564117744152, -2.5323296410790315, -4.330778914230818, -7.0, -7.0, -1.0669467896306133, -7.0, -2.9574020277501365, -7.0, -7.0, -3.6617180576946593, -1.919078092376074, -3.0009977303577937, -1.9582452518929987, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1028622998954396, -7.0, -1.94571471405986, -1.7624910040260096, -2.9312035254507522, -2.146128035678238, -2.031408464251624, -2.1566837328270956, -1.9542425094393248, -7.0, -2.672601582502419, -2.951823035315912, -3.4260230156898763, -2.460396637297684, -2.679923195447674, -7.0, -3.226342087163631, -7.0, -7.0, -7.0, -4.268437552261454, -3.0836817472743014, -1.8404197777364861, -3.2513948500401044, -3.6126779183165016, -2.396896449142524, -3.352230770373165, -3.6783362467321803, -3.2786774022541683, -1.4186694935307818, -7.0, -1.7652959296980566, -7.0, -1.7662268935741685, -2.1884597362982907, -7.0, -2.2624510897304293, -7.0, -7.0, -3.069328864563374, -2.3263358609287517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3153404766272883, -2.824125833916549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1829849670035815, -3.5025636691073636, -7.0, -7.0, -7.0, -3.036429265626675, -7.0, -7.0, -3.6749070468191296, -7.0, -7.0, -3.1522883443830563, -3.4497868469857735, -2.949877704036875, -7.0, -7.0, -2.3434085938038574, -7.0, -3.245018870737753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7693773260761385, -7.0, -7.0, -7.0, -3.9018395920512297, -3.5896145406312665, -7.0, -2.9745116927373285, -3.9235260859825862, -7.0, -7.0, -2.2600713879850747, -7.0, -7.0, -7.0, -4.081755242535474, -7.0, -7.0, -7.0, -2.246744709723841, -2.699837725867246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3010299956639813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.404320467221731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7895807121644256, -7.0, -7.0, -7.0, -7.0, -4.029505525426577, -7.0, -7.0, -7.0, -7.0, -7.0, -2.801403710017355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.367355921026019, -7.0, -7.0, -1.8672710189654482, -7.0, -2.7730546933642626, -7.0, -7.0, -7.0, -2.7299742856995555, -7.0, -3.6737710864286717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.303196057420489, -7.0, -2.6364878963533656, -7.0, -7.0, -7.0, -2.084576277934331, -7.0, -2.9978230807457256, -7.0, -3.519434194913703, -4.0984014222700775, -7.0, -7.0, -7.0, -4.259562026270737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0757293997408985, -7.0, -3.4260230156898763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0754009555138975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4892551683692603, -7.0, -7.0, -4.1263181429721, -7.0, -7.0, -7.0, -2.403120521175818, -7.0, -2.416640507338281, -7.0, -3.226084115975824, -7.0, -3.8568496787251725, -7.0, -7.0, -3.391724185094446, -7.0, -7.0, -7.0, -7.0, -2.8750612633917, -7.0, -2.665580991017953, -7.0, -7.0, -7.0, -7.0, -3.1398790864012365, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0257153839013404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.306425027550687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.130333768495006, -7.0, -7.0, -2.341104638894293, -7.0, -7.0, -4.672353431245972, -7.0, -2.0232524596337114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.553883026643874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1863912156954934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1562461903973444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9146956688935866, -7.0, -2.595496221825574, -2.2706788361447066, -7.0, -7.0, -7.0, -7.0, -3.426185825244511, -7.0, -7.0, -7.0, -4.606993675475054, -2.530199698203082, -7.0, -3.2773035345575963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.06595298031387, -7.0, -7.0, -7.0, -4.319872601296413, -7.0, -7.0, -7.0, -2.2600713879850747, -7.0, -2.532117116248804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.734084214055121, -7.0, -2.754348335711019, -3.9427271453659487, -3.0107238653917734, -7.0, -7.0, -7.0, -2.954724790979063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0569048513364727, -7.0, -7.0, -2.570153612664517, -2.1089031276673134, -2.894500672456359, -7.0, -7.0, -4.6179329672532745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.256043898702031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.704150516839799, -4.221701064384597, -7.0, -7.0, -4.176583180765493, -3.792181496149679, -7.0, -7.0, -7.0, -7.0, -7.0, -2.449478399187365, -4.571277816502185, -3.0013658774885856, -3.7333577879255855, -7.0, -7.0, -7.0, -7.0, -2.523674222865311, -2.7259116322950483, -3.767897616018091, -7.0, -3.7013088852280753, -7.0, -7.0, -7.0, -2.571708831808688, -7.0, -4.185060282521393, -7.0, -7.0, -3.450364596814099, -7.0, -7.0, -7.0, -3.2762319579218335, -7.0, -3.497057300398213, -7.0, -7.0, -7.0, -7.0, -2.45178643552429, -7.0, -4.003805073565025, -4.276024992238579, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.905720344324213, -3.5629586686546233, -7.0, -3.9340538293702187, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9882615967287558, -7.0, -7.0, -4.0717347638797605, -2.8418955262504215, -1.4300212762834783, -1.9360495046133057, -7.0, -2.8943160626844384, -3.3869000790623756, -2.556704439233648, -1.7612833250963482, -7.0, -2.8236915393984545, -7.0, -3.3488580131576775, -1.6551384348113822, -2.8943160626844384, -7.0, -2.662600450095542, -7.0, -3.129689892199301, -7.0, -2.845098040014257, -2.5725812013324862, -7.0, -3.0318122713303706, -2.0962145853464054, -1.3141014045117398, -7.0, -3.3523111788979363, -7.0, -2.3710678622717363, -7.0, -3.071941686368387, -4.741348602475895, -7.0, -7.0, -1.3064250275506872, -7.0, -1.2501630993248258, -7.0, -1.1760912590556813, -2.233334609615762, -7.0, -2.8020892578817325, -3.5947239464097467, -1.7423322823571483, -7.0, -2.5728716022004803, -2.577261953585815, -7.0, -2.6665179805548807, -1.588271706842329, -2.7263196121107756, -7.0, -7.0, -1.0669467896306133, -7.0, -7.0, -3.106598813212537, -7.0, -7.0, -3.3643633546157306, -2.1327398382608846, -2.9069313197859845, -1.5782570766553377, -3.395501124305626, -2.2032142586949006, -7.0, -7.0, -1.9956351945975501, -3.2314695904306814, -2.5921767573958667, -2.6020599913279625, -1.7464612077056945, -7.0, -2.2576785748691846, -1.7993405494535817, -2.516755660221549, -1.8790958795000727, -2.5390760987927767, -3.0194486374936367, -7.0, -2.954885432549936, -2.480486032340433, -3.0266966559781596, -7.0, -3.236789099409293, -7.0, -7.0, -7.0, -3.968319473630739, -7.0, -2.0280287236002437, -3.2612628687924934, -3.835479184541597, -2.5085297189712867, -3.6554265877459184, -3.8042530476353846, -3.458033192496506, -1.9837765880368856, -7.0, -1.4673614174305063, -7.0, -1.2778383330020473, -2.2873537727147464, -7.0, -2.3502480183341627, -1.7678976160180906, -7.0, -3.0705919315120402, -2.098643725817057, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6532125137753435, -7.0, -7.0, -1.997511199596305, -1.615799802742291, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6541765418779604, -3.186862199888604, -7.0, -7.0, -7.0, -7.0, -3.3459615418131414, -7.0, -2.2528530309798933, -3.8008315923191467, -7.0, -7.0, -3.1646502159342966, -7.0, -7.0, -7.0, -7.0, -2.2041199826559246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3673647967677733, -7.0, -7.0, -7.0, -7.0, -3.8859828113549733, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3554515201265174, -7.0, -7.0, -7.0, -3.5541531359965925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6960941599952233, -7.0, -4.39929289804391, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.625312450961674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.148263229636879, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5195296940992455, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5559404378185113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9005582854095375, -7.0, -7.0, -7.0, -3.3821671876003583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7975099023288803, -7.0, -7.0, -7.0, -7.0, -7.0, -3.910304168068569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.851724506256658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.119915410257991, -7.0, -7.0, -3.3995785469236655, -7.0, -7.0, -3.5931752634781025, -7.0, -3.6144753660903954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.430478187932044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.118273746860196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.667119265219367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6464037262230695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4225077658680756, -7.0, -7.0, -7.0, -3.462073403738634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7806053058389697, -7.0, -7.0, -7.0, -3.641523684670229, -7.0, -7.0, -3.956696564894651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.071412410230531, -7.0, -7.0, -7.0, -7.0, -3.6578204560156973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7661833610329696, -7.0, -7.0, -3.8064061101420315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2534058585380095, -3.429979715014304, -2.9780812292019267, -7.0, -3.47928731647617, -7.0, -2.0507027915758727, -2.7979135378417332, -2.685756915498769, -7.0, -2.269948576750441, -2.948264092763587, -3.0429511919940255, -3.1711216273491813, -2.916268114365702, -3.202040480346924, -3.0632082200712114, -3.220405695184753, -2.6012037192276076, -3.2110512892020617, -3.1006002697893584, -3.2928901294360298, -2.855034316675884, -2.974789285895967, -1.3484858437877367, -3.6441184131829005, -3.126293790693266, -2.333509813402564, -3.384353414137506, -3.1517407044935295, -2.543305455072855, -3.3161696136272876, -3.313192063634804, -2.6392255306230408, -2.6168634908024817, -3.137586179545643, -3.3856956254105612, -3.932575223498291, -1.4033613482029006, -4.096423330595271, -7.0, -4.608836133184731, -3.8932622858879915, -3.9433955765089546, -7.0, -3.1639064334577514, -7.0, -4.105680462945809, -3.9736357734174077, -7.0, -3.5763989451242386, -3.932980821923198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9702771231209835, -7.0, -7.0, -7.0, -3.6936478192387985, -2.784517042296126, -7.0, -7.0, -7.0, -4.043519460245756, -3.9042285163400785, -4.657390532388537, -7.0, -4.168998077278994, -7.0, -3.8961402514420196, -3.827756862978617, -7.0, -7.0, -3.890867938811441, -7.0, -7.0, -7.0, -7.0, -3.940606123624698, -3.601212290310882, -7.0, -4.364813556261336, -7.0, -7.0, -3.564547711755948, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4858740086009528, -2.4245483075166123, -7.0, -7.0, -3.1108140939166935, -2.9786369483844743, -3.038056896092195, -3.1709458747292723, -7.0, -7.0, -2.891955383429181, -3.2836403888003676, -2.874643380285549, -3.3330440298234874, -3.1405080430381793, -3.4259415880188953, -3.103999085098659, -2.8523928471568003, -2.781468142841798, -2.9486085498764365, -2.9093420383613084, -3.326745379565322, -7.0, -3.04493154614916, -7.0, -7.0, -7.0, -2.858021306221821, -7.0, -7.0, -2.8915109091209223, -2.908577451460015, -1.7587889737912472, -7.0, -3.753199914199416, -7.0, -3.0710531129102714, -7.0, -7.0, -7.0, -3.7753191218294777, -3.575303333422399, -7.0, -3.5621143505886863, -7.0, -2.967547976218862, -2.5709672628095492, -2.6402329136549687, -7.0, -3.155538458574251, -7.0, -7.0, -2.4326874301696493, -3.5837653682849995, -7.0, -7.0, -7.0, -2.909511456502192, -3.6224212739756703, -3.6127838567197355, -2.725258066359961, -7.0, -3.0023838306972106, -7.0, -2.9213148070981427, -7.0, -2.6973383387401877, -2.3583454920906557, -7.0, -2.60422605308447, -7.0, -3.5758803156806462, -7.0, -1.6052783266298942, -7.0, -7.0, -3.5640739789771465, -7.0, -7.0, -3.6335189520021656, -3.633670406051444, -7.0, -3.631139250256811, -3.0352796104598627, -2.785275065544536, -3.706803097037338, -3.3945392313722045, -7.0, -7.0, -2.6677310666469034, -2.420405872366884, -3.2657609167176105, -2.3498263322325768, -2.845900196115185, -3.06595298031387, -2.916839816617871, -3.0289003150037526, -3.1138478924796797, -7.0, -3.6231458746379395, -7.0, -7.0, -7.0, -7.0, -2.1547706418025814, -7.0, -7.0, -7.0, -2.6284138529783205, -7.0, -7.0, -2.658369184249972, -3.0900227904759947, -7.0, -3.2688119037397803, -2.881726935376418, -3.168350140185944, -3.4371160930480786, -7.0, -7.0, -3.022943609686901, -7.0, -7.0, -7.0, -3.5803546611065915, -3.5758803156806462, -7.0, -2.9011857801371503, -2.515211304327802, -3.1920095926536702, -7.0, -7.0, -2.745543201998024, -3.5563025007672873, -7.0, -3.025988181951707, -7.0, -7.0, -3.38246732201583, -2.490379920003179, -7.0, -7.0, -7.0, -3.5854607295085006, -7.0, -2.537000087321339, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.004894321731049, -7.0, -7.0, -7.0, -7.0, -2.7366899869982735, -7.0, -7.0, -7.0, -7.0, -3.3188977146274867, -2.472725336054176, -7.0, -7.0, -2.890855530574932, -3.0021287152533693, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8090207204836726, -4.325197419924709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808278509582768, -7.0, -7.0, -7.0, -3.966626619751244, -7.0, -7.0, -3.512083758343917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0303105200628067, -2.8155386842826937, -7.0, -7.0, -3.863322860120456, -7.0, -7.0, -7.0, -3.803934849863842, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6224730712781232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808075868091307, -7.0, -7.0, -7.0, -7.0, -3.7992026563005252, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5190400386483445, -7.0, -2.6508766945653943, -3.8202671571609645, -7.0, -3.795880017344075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8302678009336417, -7.0, -7.0, -7.0, -7.0, -3.5303277897780863, -7.0, -7.0, -7.0, -7.0, -3.1653679968502697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7368649969088095, -3.7998228309933197, -7.0, -7.0, -3.879375470539603, -7.0, -3.8474492624991727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7347426968541853, -7.0, -7.0, -7.0, -3.7958105246674085, -7.0, -3.1894903136993675, -7.0, -7.0, -2.877563299235066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.371437317404101, -7.0, -7.0, -7.0, -4.2545239086857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8057047044338645, -7.0, -2.732130471253581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.122117536313263, -7.0, -7.0, -2.7828019969642233, -7.0, -3.3464181789371965, -3.8212514315459414, -3.82633400562222, -3.532818053867167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.736077637003946, -7.0, -3.5363690286780414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.004536317851323, -3.3332456989619628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8283376000590046, -3.837840861655523, -3.3674025166466746, -3.5547697644770895, -7.0, -7.0, -7.0, -3.526210003841664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.616033061656062, -7.0, -7.0, -7.0, -7.0, -7.0, -3.802705327074352, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8813275841005512, -7.0, -7.0, -7.0, -3.9030899869919438, -3.3461573022320086, -1.5080244315589613, -7.0, -3.6196381767656955, -7.0, -7.0, -7.0, -3.229767140261955, -7.0, -3.1478617484872387, -3.096678327496078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1629127378362583, -7.0, -7.0, -7.0, -3.1107767046969292, -7.0, -7.0, -4.070333455853063, -7.0, -7.0, -7.0, -3.500648063371912, -3.389402370813181, -3.520418023353549, -7.0, -7.0, -7.0, -7.0, -2.719019543968662, -7.0, -7.0, -7.0, -7.0, -3.8606374167737547, -3.5285310606354114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8020892578817325, -3.699577591398909, -3.45408227073109, -3.4601207275421837, -7.0, -7.0, -3.71099480274821, -7.0, -7.0, -7.0, -7.0, -3.843481943039958, -3.9427519204298136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8455114569725612, -7.0, -7.0, -2.464794874398846, -2.877160567640068, -3.545960629240598, -3.220238879934404, -3.671609166801616, -3.307496037913213, -2.4494981780548124, -4.492089577491379, -1.1683168621903026, -7.0, -1.8148067561120336, -3.3841841004893225, -3.153789466263765, -3.297660482139467, -1.9772489428837123, -3.796227314029439, -3.161695916932489, -2.148243082243774, -3.0880269900422115, -3.1000164069826135, -4.148263229636879, -3.9456589370603736, -2.98265882296436, -2.2941062855654346, -2.8531138935152702, -7.0, -3.5071359469857537, -2.817323773419625, -7.0, -1.9155992462576952, -2.541310366621995, -3.5308889765187996, -3.765053551849675, -2.4518279094757043, -2.22645669185671, -3.8906445362952473, -3.7608244218895726, -2.9900171721769127, -3.0691555877932926, -2.189348476789841, -7.0, -3.1891492893536912, -2.872672289326085, -3.1565112927708103, -2.5257572431523108, -3.0915162219609544, -7.0, -2.9884103022538873, -7.0, -7.0, -3.0735228432889, -2.805062154669504, -4.045322978786658, -7.0, -3.75564621945668, -7.0, -7.0, -3.4840624550927735, -4.3301295624875245, -3.9180303367848803, -7.0, -3.041438238134359, -2.8750998656300175, -4.2866669415288365, -7.0, -7.0, -7.0, -3.2560049909796183, -7.0, -7.0, -2.468521082957745, -7.0, -7.0, -3.42217931474113, -3.9073844852845, -7.0, -3.5780658838360915, -3.3212669395747887, -7.0, -2.3233810283251954, -3.6396358768118477, -7.0, -2.2921992525584747, -2.783382848542842, -7.0, -4.08841075955748, -7.0, -3.5997739391463885, -4.002036402259529, -4.212720154417842, -3.8109042806687006, -7.0, -7.0, -3.823409014892545, -2.8359099798631497, -1.2149977822221742, -7.0, -2.004996554372444, -1.9641248816751649, -1.7650828574593154, -1.5580431623435886, -1.657220533485756, -3.8121777741587537, -7.0, -1.2859896776998598, -2.735731935227449, -2.14457874581053, -2.7305959498221712, -1.8058536085353702, -2.580979252309059, -1.851566004435052, -2.04001724621947, -1.687626890792445, -2.648786776141029, -2.2128369682837645, -1.7825714622372415, -2.8013413337900444, -1.994397711264469, -3.525239223729745, -3.334051440346892, -7.0, -1.3368036386957756, -3.118264726089479, -7.0, -2.295517682332988, -1.6795459941155866, -1.8210378678511736, -3.1960379407345236, -1.8823063810686513, -3.819872821950546, -2.4527297852992795, -3.5081929260254405, -7.0, -7.0, -2.079588842963422, -3.3333800930468676, -2.3917842956517066, -2.4659074673550583, -7.0, -1.7162884340349953, -2.2380461031287955, -1.6657230891384838, -7.0, -2.3947642803372315, -2.7632237318290302, -1.386574644667463, -2.4684426226740652, -2.8145139523682383, -2.9574020277501365, -3.106598813212537, -2.909511456502192, -7.0, -2.6609286894852273, -3.2305127835182175, -1.7695535461969993, -3.519827993775719, -1.829798413524477, -2.92005807281875, -1.8156404895092801, -2.4917617809025523, -2.425403782148611, -2.9828137621318627, -7.0, -2.1679471464882516, -2.251638220448212, -3.8111056070179306, -2.7383180158201332, -1.7445805763269497, -7.0, -3.3240765797394864, -1.1892827655559177, -2.989704014034442, -3.5292378052696605, -2.482487303691886, -3.5445021218295945, -3.1648978606247633, -2.479631634437262, -0.9035663438258191, -1.5773031290220334, -2.2437143444085867, -2.2568780318187245, -7.0, -7.0, -1.7848573609472842, -1.963216831111873, -2.599814867207917, -1.4979598920976362, -1.0152733372451836, -1.7815119701445403, -1.1830993299225638, -1.9928825468140339, -1.721955569498987, -3.8038666342849843, -2.63321588535909, -7.0, -7.0, -3.5180530800797216, -3.54703589974001, -2.221586454888828, -7.0, -2.9584956247570875, -7.0, -1.6187466999262725, -7.0, -2.919208884270423, -3.8037301709745437, -2.850986404764101, -3.1252209363165644, -3.3303461209646152, -2.4895567268689844, -0.9539959263343879, -2.4786733593940635, -3.353916230920363, -7.0, -2.0625501175897143, -3.7960189693471493, -7.0, -7.0, -3.512550992904211, -3.111598524880394, -3.8145139523682383, -2.4348144762668675, -2.25598155747616, -3.1725542843902175, -3.1065308538223815, -7.0, -2.2607601977756273, -3.498655095245119, -7.0, -2.1675283109397934, -7.0, -7.0, -2.4113874629192447, -2.2215372569865495, -3.3680388229322835, -3.7956715059460215, -7.0, -3.816705183666515, -7.0, -2.2076024217230845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.663748026358395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.627109711211139, -7.0, -7.0, -7.0, -4.403583750366688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.049334335972284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8264765013148656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.079543007402906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.50870923513873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8850217948622974, -7.0, -7.0, -4.675420863687349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.639154332860882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1008872548535935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.151023379854834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.730216840568694, -7.0, -3.056305786810995, -7.0, -7.0, -7.0, -3.664735968518705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8340708381017388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1454899125036295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.551010601573511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3440094211096474, -4.274026925166107, -7.0, -7.0, -4.135132651376775, -3.40705081480425, -2.9599948383284165, -7.0, -3.6230583497564854, -7.0, -2.9361269120606015, -3.6260208317947957, -4.359759616415701, -4.805867712592634, -3.1710550105433617, -3.51061202578917, -7.0, -3.1245905227942092, -7.0, -7.0, -3.929214503737394, -4.148866468878797, -7.0, -3.7882744561838897, -3.311435968289161, -7.0, -7.0, -7.0, -7.0, -3.4776999283321306, -3.0577421558287528, -4.586486032493526, -4.248463717551032, -3.287325760041347, -2.9218814741317494, -7.0, -7.0, -7.0, -3.552024726583321, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.322219294733919, -3.4848690327204026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0621681733517825, -3.8680110921631368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9445122821281515, -7.0, -4.0752183791115355, -7.0, -3.0969968632197054, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1711704349016205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.031287248876998, -7.0, -7.0, -7.0, -2.2536610209467267, -4.0897638544916886, -2.4055171069763763, -7.0, -2.7382518980637593, -2.7024305364455254, -2.6088315520434717, -3.3116267318705064, -2.7218106152125467, -2.6599162000698504, -7.0, -3.211320815405893, -2.9907826918031377, -3.076053545471786, -2.8573324964312685, -2.327018177615688, -2.4869615094670436, -2.876939140345395, -2.3706569876129886, -2.1371338529752912, -0.8585931489330124, -2.1709947020363, -2.9417598138146954, -1.5221180641467127, -2.0442036624920537, -7.0, -2.6546577546495245, -7.0, -2.818105873029551, -2.0907869279492677, -7.0, -2.7422012536996743, -3.213920924061928, -2.851971392475668, -7.0, -2.211560237762678, -7.0, -1.9150158860376074, -7.0, -1.9197316583111612, -7.0, -2.711103917985617, -2.4727564493172123, -2.5759571887637573, -2.946943270697825, -7.0, -2.061099407170852, -3.0969100130080562, -2.1433822236955566, -7.0, -2.8536982117761744, -7.0, -7.0, -2.0026907670493985, -2.0769133845918026, -7.0, -7.0, -3.6224212739756703, -2.6609286894852273, -7.0, -2.241973165892279, -3.1075491297446862, -2.718916686014861, -3.469911774060926, -7.0, -2.0360963453482763, -2.992553517832136, -2.3521825181113627, -7.0, -7.0, -2.212814066080421, -2.2007137339640135, -2.9542425094393248, -7.0, -2.2687339404540663, -7.0, -7.0, -3.649918718735419, -7.0, -7.0, -3.758684849882441, -2.6788217632521745, -7.0, -7.0, -2.507481059830068, -1.8893892530522984, -2.110589710299249, -2.1396692316100534, -7.0, -7.0, -3.2390718614686933, -1.2802101517264077, -2.4366925976640545, -2.016083230668029, -3.720944459446079, -2.55339751012388, -2.7230906419805767, -3.5143041961369925, -2.514198107297303, -7.0, -2.1653432655224587, -7.0, -2.5508396050657853, -3.009450895798694, -7.0, -2.8262044234992527, -7.0, -7.0, -7.0, -2.909258791202125, -7.0, -2.3324384599156054, -7.0, -2.918554530550274, -7.0, -7.0, -2.3729120029701067, -2.6351964199887496, -2.155336037465062, -7.0, -7.0, -2.28362424432417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2315545380068746, -1.4328691191563043, -2.34713478291002, -7.0, -7.0, -3.4342494523964753, -2.8656960599160706, -7.0, -3.3859412481478177, -7.0, -7.0, -2.991004440330755, -1.3847117429382825, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4695366151123335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.662880549738856, -7.0, -7.0, -7.0, -7.0, -3.675136504467994, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9235030669421045, -7.0, -7.0, -3.130655349022031, -4.579160279808659, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.086620803576045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2678754193188975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.744644971105124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.13037074388832, -2.8438554226231614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8367512361816107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9818638909913506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.430679613881531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1813861950832174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.908306260085468, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40226138245468, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.201888500365973, -7.0, -7.0, -7.0, -2.118147969798274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.009227741996455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.798433098500429, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530607858456049, -7.0, -7.0, -3.6466242486875178, -3.1562461903973444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8439280063704695, -7.0, -7.0, -7.0, -4.434728541779758, -7.0, -3.4303975913869666, -7.0, -3.736316807904109, -7.0, -3.746322765089953, -4.278341969060907, -7.0, -7.0, -3.2538915993869204, -4.286927784959255, -7.0, -3.701424059791345, -7.0, -7.0, -7.0, -4.801811741370298, -3.5916766421416844, -4.185648378282055, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7532595366903325, -7.0, -4.585449448985846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.834738518903841, -7.0, -7.0, -7.0, -7.0, -7.0, -3.809761665107125, -3.3027637084729817, -3.1802692776688746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.719248398447946, -7.0, -7.0, -3.406956298169804, -4.282640236421941, -4.571528323403687, -7.0, -7.0, -7.0, -4.138407968917471, -7.0, -4.9440580404731085, -7.0, -3.5945766905019516, -7.0, -2.689930104018218, -7.0, -4.2853097130902675, -7.0, -7.0, -7.0, -3.566231197523304, -7.0, -7.0, -7.0, -4.5679903942616775, -7.0, -4.035089374144706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.9229848157088828, -7.0, -3.1032904715577496, -7.0, -7.0, -2.660865478003869, -2.358886204405869, -2.9647737403272063, -3.1740598077250253, -7.0, -7.0, -3.0287745265000883, -2.6459132750338443, -2.6525008054635846, -7.0, -2.7745169657285493, -2.6755950563867463, -3.296957546032856, -1.819324539486734, -1.5959369062691735, -2.3251636753807006, -2.5658478186735176, -7.0, -1.7055216134226672, -1.7966346560776567, -2.2346859743215286, -2.910090545594068, -2.801403710017355, -2.7397548594693375, -2.656098202012832, -7.0, -2.871602121022312, -3.322278378399326, -3.131141189675311, -7.0, -2.3497630439879496, -7.0, -1.9815165943059867, -2.893206753059848, -7.0, -2.8419848045901137, -3.1762359997608716, -1.0925452076056064, -2.716003343634799, -2.556201957999874, -7.0, -2.5266622930104643, -3.0637085593914173, -2.456935102197454, -7.0, -2.5224442335063197, -7.0, -3.1687920203141817, -3.0167747537109664, -2.032920808723266, -7.0, -7.0, -3.6127838567197355, -3.2305127835182175, -2.241973165892279, -7.0, -2.9232440186302764, -7.0, -3.3040774356605502, -3.0017337128090005, -1.8049444269715802, -7.0, -7.0, -7.0, -7.0, -2.5940766998292117, -1.953499490469544, -7.0, -7.0, -2.250420002308894, -7.0, -7.0, -3.640878778701618, -2.5943925503754266, -7.0, -2.8474955403490654, -3.1283992687178066, -3.1922886125681202, -2.641804498106114, -2.802925682774948, -2.1122697684172707, -1.5660623380564436, -2.0646781638739173, -7.0, -7.0, -3.5004423178574897, -2.758609142659744, -2.385010124593375, -2.8709888137605755, -3.241587982291062, -2.929929560084588, -2.3925118319943293, -3.0594743181457305, -1.9469432706978254, -2.8457180179666586, -2.2444538428721974, -7.0, -2.79309160017658, -7.0, -7.0, -2.911290807477995, -7.0, -7.0, -7.0, -2.5476246433698466, -7.0, -2.5171958979499744, -7.0, -2.3879827199214656, -3.0060379549973173, -2.5774917998372255, -7.0, -2.424287526440053, -1.4094314461192683, -7.0, -7.0, -1.88754697493976, -7.0, -7.0, -7.0, -2.927883410330707, -7.0, -7.0, -3.3999331824955683, -2.713370522509538, -2.6681195600536824, -7.0, -7.0, -3.4192947217534604, -7.0, -7.0, -3.245445364900788, -2.298125005020574, -7.0, -3.271609301378832, -2.5576408515395497, -2.8254261177678233, -7.0, -7.0, -7.0, -7.0, -2.2932520331478248, -2.4720246977002813, -7.0, -2.457124626303409, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0539771977423924, -7.0, -7.0, -7.0, -7.0, -3.9359604689891663, -7.0, -7.0, -7.0, -7.0, -7.0, -2.76559760320161, -3.913336925932623, -7.0, -2.9409313235178423, -3.4544909672215263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8294324336175984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.35430056234536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7582304084577496, -3.6710802327388494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.176293882538767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.425778686860983, -3.685024785105714, -3.6580113966571126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7218106152125467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.58029758843657, -3.925441019653158, -3.6568644915489172, -7.0, -7.0, -3.593404226314317, -7.0, -7.0, -3.734799829588847, -7.0, -7.0, -3.6634182122526795, -3.67089495352021, -7.0, -7.0, -2.85000097173786, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9577030415488315, -7.0, -7.0, -3.702085721435825, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9894498176666917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.714329759745233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6920933411840697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4760341590784485, -7.0, -2.883396425218766, -7.0, -7.0, -2.7342634585311685, -7.0, -3.6898414091375047, -7.0, -3.39208111979816, -3.703635237583896, -3.7288405683399715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808075868091307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6744937172963503, -7.0, -7.0, -7.0, -1.8447453851171665, -3.1943292994928325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6572471298837166, -7.0, -7.0, -1.8005274714328756, -4.317403637191061, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.673389578188305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0486501936741845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6703386411274423, -7.0, -7.0, -7.0, -2.862280493299705, -7.0, -7.0, -7.0, -7.0, -3.689486448364248, -2.9618480590183243, -7.0, -3.1908187119380673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.457503426573305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5422027824340283, -7.0, -7.0, -3.6654871807828107, -3.1061714631343613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2699019227319654, -3.6868149545073168, -7.0, -7.0, -7.0, -7.0, -3.404816953347451, -7.0, -7.0, -7.0, -7.0, -3.739255803268511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8213169705910977, -3.8305886686851442, -3.715468813697298, -7.0, -7.0, -3.448728398371921, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8448498008066387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5223790192285636, -7.0, -7.0, -2.8743297038713655, -3.234972598405242, -4.057818194432099, -3.387122759927585, -3.378565603800744, -2.522032189374934, -2.35128711383822, -4.466615567492372, -2.4452897737854538, -7.0, -2.5027756709516997, -3.342692732167322, -3.3148499463011056, -3.286456469746983, -2.088675910869215, -3.4120123012470613, -3.2539737133906796, -2.3413988733390205, -2.1543432221004943, -3.4213425748284356, -4.089905111439398, -3.2521977882265785, -3.3692529750104305, -2.642270631311907, -2.8634039785371357, -4.268835289996586, -3.2866155022896026, -3.307067950661298, -3.762378429311964, -2.7251501016282584, -2.828888478052161, -3.149598825945172, -3.076963910388137, -2.753064605916495, -2.500061743589364, -3.430216194454889, -3.5889716175206554, -3.580044747846509, -2.9528378309818355, -3.826787238816292, -3.7352794480604565, -4.1415856324913625, -2.6531946412066914, -3.51018741901152, -7.0, -3.714245911017894, -7.0, -3.74813262876875, -7.0, -7.0, -3.4264028097516, -3.5580362135762877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.198527717134609, -3.385815458734226, -4.143355512469716, -7.0, -7.0, -7.0, -3.256352072908259, -7.0, -4.962889987391791, -3.4415904106626587, -3.5935352716775633, -7.0, -3.6438966143222347, -7.0, -4.365207100231824, -7.0, -7.0, -7.0, -3.228470355396186, -7.0, -7.0, -4.171736202017041, -2.7587413551231554, -7.0, -3.720177685852126, -3.438858659420562, -7.0, -3.616790486329716, -3.861803148214179, -3.6721902511882525, -7.0, -7.0, -3.3881012015705165, -2.6486310215868576, -1.4925138875642157, -7.0, -3.133858125203335, -1.3936726770623664, -2.1093336632777238, -2.2133145855992264, -2.024567757196038, -7.0, -7.0, -2.310438394815848, -2.5312051157416637, -1.7129082987055229, -3.2423757618909193, -2.132155803755665, -2.3311828694692, -1.643544912757513, -1.8640752762509714, -1.6382947241487407, -2.4059721038560276, -2.5832859904528807, -1.6577013855925506, -2.7615102073835347, -1.900615367864088, -3.6933751510251853, -3.0703149874181173, -7.0, -1.9740108109874572, -2.9819091700907925, -3.656960182742849, -2.162347835278798, -1.6462582551354332, -1.899887931896617, -2.8087895180567206, -1.9231363167215678, -7.0, -2.3336022689601736, -7.0, -3.651568738865792, -3.360688062030678, -2.4206538182390798, -3.194514341882467, -3.0909630765957314, -2.6127308907483417, -7.0, -1.7467405382251568, -2.399327532158679, -1.9189347135428458, -7.0, -2.6028943709926877, -3.3641756327706194, -3.7300551523755, -2.0944677032145895, -2.8997293311279466, -3.6617180576946593, -3.3643633546157306, -2.725258066359961, -1.7695535461969993, -3.1075491297446862, -2.9232440186302764, -7.0, -7.0, -1.9562701198834112, -3.2127201544178425, -2.1828813291360327, -2.724366907119601, -2.545041898453366, -2.4566075474449653, -7.0, -1.8584708836673578, -2.1693977913346485, -7.0, -3.205745540942662, -1.914401928955501, -7.0, -7.0, -2.7399413511328885, -7.0, -7.0, -3.2009872191631663, -3.418135498425232, -3.368472838440362, -3.7172543127625497, -1.7168939159781895, -1.83265975304879, -2.270606059524192, -2.335717857204335, -7.0, -7.0, -1.9523273973758806, -1.900991941936252, -2.549191962650917, -1.722148948187599, -1.8152068688114962, -2.0688960736491686, -1.7605436424369434, -2.3281925043138796, -1.8159074241980515, -7.0, -2.5040458751996155, -7.0, -3.654850090561394, -7.0, -7.0, -2.2268453039888003, -7.0, -3.663229634532868, -7.0, -1.6411935346546915, -7.0, -2.733375620132445, -7.0, -7.0, -3.2136062891507047, -3.1903316981702914, -2.3725438007590705, -1.9746867944847728, -2.3720933514894265, -7.0, -7.0, -2.1505005962700507, -7.0, -7.0, -7.0, -3.6760531246518715, -2.826259963429235, -3.677150521273433, -2.221044971191486, -2.426278831879818, -2.7076918101785252, -3.062863902110119, -7.0, -2.489489731962272, -3.179360261070836, -7.0, -2.4141655677036877, -7.0, -7.0, -2.456897187449348, -2.389227205254353, -7.0, -7.0, -7.0, -3.680154141734373, -7.0, -2.4613428736466783, -3.652343055062715, -3.1992979769986976, -7.0, -2.7041505168397992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6578204560156973, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9138138523837167, -2.834632606336092, -7.0, -7.0, -3.879038505237237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9594587825328493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.341137638740964, -7.0, -7.0, -7.0, -7.0, -2.678518379040114, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4229999772716164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7373516958037145, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9324737646771535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6186755388851397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.961421094066448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.592139731565084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8049567998574916, -7.0, -7.0, -7.0, -4.136379654870003, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7209857441537393, -7.0, -7.0, -7.0, -2.7960189693471493, -7.0, -7.0, -7.0, -7.0, -7.0, -2.998520882835038, -2.6032990634435107, -7.0, -2.9800033715837464, -7.0, -3.506843136339351, -7.0, -7.0, -7.0, -7.0, -3.08278537031645, -7.0, -7.0, -7.0, -4.083466785473887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5622928644564746, -7.0, -2.8543060418010806, -7.0, -2.6232492903979003, -2.734799829588847, -7.0, -4.429186844904713, -2.640481436970422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.170672340315576, -7.0, -7.0, -3.5934891334542405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.760422483423212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8926510338773004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8095597146352675, -2.617000341120899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7126497016272113, -3.5412046906832586, -3.9739955751309255, -7.0, -2.3364597338485296, -2.3293978793610424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.591064607026499, -7.0, -7.0, -3.695437894597736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3324384599156054, -7.0, -7.0, -7.0, -4.023238737632354, -7.0, -7.0, -7.0, -3.33665982345442, -7.0, -7.0, -3.219060332448861, -7.0, -7.0, -7.0, -7.0, -2.7315887651867388, -2.9661417327390325, -2.8609366207000937, -7.0, -2.7902851640332416, -7.0, -7.0, -7.0, -7.0, -7.0, -3.461048091670658, -7.0, -7.0, -7.0, -4.007256892965124, -7.0, -7.0, -3.4702634469650784, -2.6232492903979003, -7.0, -2.8674674878590514, -7.0, -7.0, -7.0, -7.0, -2.814913181275074, -2.5888317255942073, -7.0, -4.253691003067721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8419848045901137, -7.0, -7.0, -7.0, -7.0, -7.0, -2.632457292184724, -7.0, -7.0, -7.0, -7.0, -4.4791560560027355, -7.0, -7.0, -3.702368982412129, -7.0, -7.0, -7.0, -7.0, -7.0, -3.464638559095033, -7.0, -7.0, -7.0, -7.0, -7.0, -2.656098202012832, -7.0, -2.673020907128896, -7.0, -2.380211241711606, -2.8085485512404054, -7.0, -7.0, -7.0, -7.0, -4.273441134312813, -7.0, -7.0, -7.0, -3.716420733846555, -7.0, -7.0, -7.0, -7.0, -4.577273448787888, -7.0, -7.0, -4.397261980280511, -7.0, -7.0, -4.352992445447028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.161068385471174, -7.0, -7.0, -7.0, -4.706060297176204, -7.0, -7.0, -7.0, -7.0, -7.0, -4.242442036037531, -7.0, -7.0, -7.0, -7.0, -3.1319392952104246, -4.573869100848107, -4.308009186238258, -7.0, -7.0, -7.0, -7.0, -4.244573972817435, -2.378677369736355, -2.256477206241677, -7.0, -7.0, -3.720159303405957, -7.0, -7.0, -7.0, -2.4727564493172123, -7.0, -3.7141061271543476, -7.0, -7.0, -4.056923898922357, -4.3787203221163375, -5.173066748116727, -7.0, -3.0232524596337114, -2.756636108245848, -3.232922028504549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.281124309449275, -7.0, -3.666049738480516, -7.0, -7.0, -7.0, -7.0, -4.607176127348896, -3.3349856489294853, -7.0, -3.4889634626461374, -7.0, -7.0, -7.0, -4.019946681678842, -7.0, -7.0, -7.0, -7.0, -4.079868335175173, -2.9188600183158036, -1.968482948553935, -1.870208760597288, -7.0, -2.8083797948823843, -3.2997251539756367, -2.814913181275074, -1.4778444763387584, -2.2023066418924566, -3.016057865962853, -2.3667341679034988, -3.307628455637662, -1.978864984347657, -1.878610165525299, -7.0, -3.760648619581356, -7.0, -2.98781517440207, -7.0, -2.965201701025912, -3.031139050792672, -3.0538464268522527, -7.0, -2.3268476989159903, -2.093421685162235, -7.0, -3.3664229572259727, -7.0, -1.7442929831226763, -3.9949180901023182, -3.8648175104719082, -3.897909722656368, -7.0, -3.401745082237063, -1.6854431518033566, -3.1970047280230456, -1.809933622951006, -7.0, -2.7075701760979367, -1.5638385428055097, -7.0, -2.4538277764478607, -2.9188687433809846, -2.3502480183341627, -3.240632438491053, -7.0, -2.848394408643486, -7.0, -3.061829307294699, -1.7708520116421442, -7.0, -3.8588979572320037, -7.0, -1.919078092376074, -2.1327398382608846, -7.0, -3.519827993775719, -2.718916686014861, -7.0, -7.0, -7.0, -2.896201899289207, -2.2100508498751372, -2.955046014722926, -2.144885418287142, -7.0, -7.0, -1.804480189105993, -3.1249115923549144, -3.003029470553618, -1.8815273056409318, -1.9584444238670942, -2.8171244614184556, -7.0, -2.0746336182969043, -2.443106456737266, -1.7817553746524688, -7.0, -2.2135580011219793, -1.9410525092223048, -2.687380306589906, -2.2726150608493985, -2.701175349207917, -3.682145076373832, -3.2895889525425965, -2.9585638832219674, -2.622214022966295, -2.6242820958356683, -3.973497308732063, -3.4299136977637543, -2.131137273778607, -3.311329952303793, -4.016301939781916, -2.879955585122749, -3.267781659715359, -3.5873517099208505, -3.076203381088768, -2.2321487062561682, -7.0, -2.3988077302032647, -7.0, -2.020005934626871, -1.7012299980669174, -7.0, -1.3350882209232402, -2.416640507338281, -7.0, -2.7578513436855796, -2.1968207439144254, -7.0, -7.0, -2.439332693830263, -2.918554530550274, -2.75815462196739, -2.3483048630481607, -3.1390916075238224, -7.0, -2.4899584794248346, -2.416640507338281, -3.0334237554869494, -7.0, -7.0, -7.0, -7.0, -2.3145693943004555, -2.526339277389844, -3.082246654743669, -3.0595634179012676, -3.0118522700068455, -2.738780558484369, -2.598790506763115, -7.0, -2.356981400993131, -7.0, -3.6809244488059925, -7.0, -7.0, -2.924795995797912, -7.0, -3.062581984228163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.591064607026499, -4.177889851651956, -4.381714192303751, -5.080601236508595, -7.0, -7.0, -4.779564026171181, -4.779592884145819, -4.779701084475718, -5.080954608767231, -2.025167138603114, -7.0, -7.0, -7.0, -3.751901678305574, -2.9805138004226635, -3.6658154279909354, -3.7597649431594515, -4.604092791382165, -4.041525465650097, -4.779632560730201, -2.4745847150335125, -3.4702914591867704, -5.080698622871129, -3.087064026120594, -2.088702509314734, -7.0, -4.779949842979917, -5.080666163176663, -4.00199317382353, -3.9670436946040506, -4.604204445856331, -2.575067860586362, -3.758742522719065, -4.478627811914573, -4.177922287911278, -3.9050975707722384, -3.7014384544643515, -4.302468022284192, -4.236159230579664, -7.0, -5.085754244209699, -4.302615890543056, -2.966485288615243, -7.0, -3.9675983721901957, -3.719680686428995, -4.235589763228279, -3.399345569666288, -4.126621980658712, -4.77981646845598, -7.0, -3.9668959012123954, -2.9839339903647955, -2.6173173711074478, -4.478829733882481, -4.3028610245195775, -3.880191706122409, -7.0, -4.603696366279048, -4.603743235378374, -4.235928650226638, -3.68411614002016, -3.5787000814126397, -7.0, -5.08059762918686, -7.0, -2.700350867630475, -5.080651735867012, -7.0, -4.779845309661779, -5.080637308078068, -4.485199533870229, -3.391748601849537, -7.0, -7.0, -3.387494700369401, -4.779711903026216, -3.512828569933557, -7.0, -4.4787684460657005, -5.080619272667835, -7.0, -3.6334684555795866, -4.2355212326535785, -4.040681439373358, -4.178246517332496, -4.003640014891705, -4.081250066810652, -3.619345252023765, -4.30433252154373, -2.3523111788979363, -3.935726732763876, -4.603761260608287, -4.779610919406259, -5.080633701055939, -7.0, -4.235701553060869, -5.080911354139791, -4.779740751176741, -5.080637308078068, -5.087713997583522, -5.080864490098036, -7.0, -7.0, -3.1133574320107926, -7.0, -4.779708296872661, -4.303030374525659, -4.001564258766185, -3.2495795919611683, -4.3026411313125035, -4.2355933698010935, -3.6838356205451257, -4.604434867552265, -2.2839979374679777, -3.7586920594058713, -4.236180841212548, -3.802009934029908, -3.576514112051963, -3.8793611369153265, -7.0, -3.2652544343851564, -2.8078961003912637, -4.03938887924493, -3.9678646537908753, -3.850912790647412, -2.216030105101232, -4.779895777163634, -3.5919043645847664, -3.5653146367896102, -3.780867933550551, -7.0, -3.364731342718344, -3.3175518450809616, -7.0, -7.0, -2.780128801657813, -5.080608451062176, -4.779571240844613, -5.080644522032454, -5.080644522032454, -7.0, -2.8704282921999926, -3.0973777355179872, -3.8341450755684536, -3.906453567547994, -7.0, -3.4483455459718755, -7.0, -4.478645844479148, -3.905918148971727, -3.7272052047543145, -3.5919832327066707, -7.0, -5.080860884962276, -4.779827284132608, -3.0671696446545726, -7.0, -5.080673376651764, -7.0, -4.780673676286881, -4.381685338403339, -7.0, -3.358513089911424, -4.303879730883368, -3.8263879867643107, -4.604258461911163, -3.469168017429083, -4.126863456607053, -5.080954608767231, -1.8251823856386462, -4.381782712635187, -7.0, -7.0, -4.381923325770788, -4.603642280263075, -4.779913799850263, -7.0, -2.917687664328476, -7.0, -2.7963658130592655, -7.0, -4.129002037005967, -1.7091014698616578, -4.001658007471607, -3.5136818186999896, -3.282215572818346, -3.4692111685525626, -3.179052438944499, -4.042328460240732, -3.513217600067939, -4.081217648307154, -3.802838513668216, -4.780122808375505, -4.603883812335287, -4.482884297978607, -7.0, -7.0, -4.478530423125539, -4.409865523598587, -7.0, -2.759778274692473, -5.08064091507024, -3.0609746934997224, -4.0016544021263485, -3.7190356989651443, -4.177504034843219, -4.779708296872661, -3.549814370675745, -4.302511306010539, -7.0, -4.478566495593843, -2.603669484764532, -3.4900881970129864, -7.0, -4.603555728624722, -3.9045280136121536, -4.6034727671155, -4.6035160533584065, -4.001730108092166, -5.080774352724805, -4.381869249183214, -3.0402174245188593, -3.326652014564429, -3.1989706073934725, -2.4833757317425307, -7.0, -3.8253828376360515, -3.7188661858175696, -3.7599770457776187, -4.603490803574361, -5.080695016358215, -3.683374887886742, -5.080835648173974, -4.779949842979917, -7.0, -5.080626486921806, -5.0807130486232985, -5.080716654986472, -5.080612058294023, -7.0, -4.127000353468564, -1.831817817997653, -7.0, -7.0, -7.0, -5.080799593075126, -3.825563143070667, -3.7798380995398886, -7.0, -4.236227660561736, -3.6065067620786353, -4.47877926219127, -3.7663278496599504, -2.9877270261586526, -7.0, -5.080666163176663, -7.0, -3.1725246190207876, -3.318290070795012, -2.5288608316878944, -4.127410785330337, -2.3361535020288478, -5.080821226493627, -5.08068419663977, -4.381833194383693, -2.508770502066406, -3.8788806869206085, -3.7030978374585235, -2.9506511583497743, -4.385924282316242, -7.0, -7.0, -4.3816673037420495, -3.93492748380264, -3.605208046467365, -3.382499724125919, -5.08059762918686, -4.60429446888234, -4.002101236846782, -7.0, -3.934585012945061, -4.604096393587492, -3.8255415103705555, -2.809449842484887, -3.5913626556153853, -4.178674849395301, -3.719295250433741, -2.2089790645019827, -4.604096393587492, -5.080698622871129, -2.858329728745217, -4.381721405479332, -4.779686659322491, -3.2300997622960104, -3.8503939374562877, -2.765080808180291, -3.035905475957212, -3.8287994840969963, -3.9353380926686246, -3.7215238812040106, -4.382276460538189, -1.9694903473303493, -3.5036007586148, -4.7797155091498285, -7.0, -5.080666163176663, -3.938036986977661, -3.4911317334850387, -7.0, -4.3027060294129456, -3.7593476255559497, -4.779632560730201, -5.080633701055939, -7.0, -4.303188855130554, -4.302882647346662, -4.080687803242536, -4.382931521415937, -4.6038369584054015, -3.3704727148375038, -3.8099458187476407, -2.171040824173655, -7.0, -3.298341166700119, -2.175522015573569, -2.989392397889798, -7.0, -3.5904535067980072, -3.967025673712249, -3.225409801222181, -2.8871110573475165, -3.6685292718594495, -3.9667083835601757, -4.3816420539580045, -7.0, -3.1132279196600905, -4.235697947386347, -5.08131129515998, -4.302716844820226, -3.761670147858042, -3.7383697008739407, -2.3806973336208213, -7.0, -4.779571240844613, -1.8459163788095763, -2.1398740830950502, -2.0256407807690597, -3.9680516729654616, -2.316910755195275, -2.5470930503307074, -2.5985361084603706, -2.14725185319735, -1.5742845569137742, -5.080731080139699, -2.3468919571765694, -2.3165348356252076, -2.4168996802699305, -2.296868235981207, -1.5575024593102262, -3.0424317425409426, -2.0813564630850223, -1.5790475932029566, -3.159443530693639, -2.4001013067225925, -2.999901594008469, -2.4433073453168954, -2.937654331748257, -1.6912451854953618, -2.964401400808145, -2.7636094789320236, -2.361118647856173, -2.6998964917388424, -4.386331279460089, -1.6569337735489773, -2.1902931382032444, -2.380360629254868, -2.586901841614534, -2.729842160327929, -2.808238540175844, -2.7620039203165594, -2.85991086583364, -2.584701927901414, -2.448102176466944, -3.213611891844391, -3.026364792307931, -2.695830665371915, -1.7284436834387493, -2.6707772914123376, -4.040979729669609, -3.209799552659082, -4.384410766617083, -2.6783441182258394, -2.581855976646831, -2.8697431530747894, -2.4871715039561493, -2.8731126826094333, -3.277803625816607, -4.043337266512166, -3.093809893765957, -4.482941436820657, -3.6832416162372654, -4.312794214562137, -2.70713293016933, -2.9078667452917313, -4.304289418956787, -1.9094208172150455, -1.9598446499148852, -2.4828622066657835, -4.0810627264918615, -3.2170284253606174, -4.002003981335927, -1.7682696892308192, -3.774148380271373, -3.09150156431672, -2.6237976154612452, -2.8062196942237123, -4.03956552796684, -2.712300326291085, -2.9587175448355043, -2.9663357525135394, -3.829996661202949, -3.0379678925594034, -3.660710922305739, -2.281167099190864, -3.834092050101445, -3.549749537701614, -2.113498426251389, -1.649593059957502, -7.0, -2.2870790764685953, -3.783127871279766, -3.639422450302014, -2.6790242918538194, -2.9103508839812586, -3.8772129204488945, -4.001816613039424, -7.0, -3.851556891005012, -2.411444049316433, -1.5384947096017696, -2.852155039111322, -2.1343129127724483, -2.735869743544286, -2.0870769671078984, -1.7049214924545777, -2.4235994898822537, -2.8130108588032003, -3.2291805286407804, -1.8469843374489812, -3.047541666264042, -1.108702641586889, -2.2148184542099716, -2.433244135631517, -2.800139895326366, -1.3654797333403765, -2.319035902573456, -2.3198467849581808, -3.1802513549450664, -3.021013027860414, -1.6753495516750914, -3.23151984311686, -2.521372256190692, -2.6554958892506404, -2.7161985370430206, -3.8254261177678233, -2.0382107975861454, -3.400232091171582, -3.2810694577020554, -2.1103834814013, -0.9296970878207105, -1.4013941251332214, -3.5892070756999934, -2.327539647757217, -2.650242505743437, -2.556122943778785, -2.8706820155665653, -7.0, -3.0349282079313338, -2.037242898156917, -3.719547443511741, -2.758569481227834, -1.9647609404708088, -3.3169892313236793, -2.0450265248027604, -2.8261504195347094, -2.2164665449283945, -3.9044594722217942, -2.5256871158248355, -2.881388268712521, -2.1226285770080024, -1.3914371383869562, -3.5499836111596887, -3.0009977303577937, -2.9069313197859845, -3.0023838306972106, -1.829798413524477, -3.469911774060926, -3.3040774356605502, -1.9562701198834112, -2.896201899289207, -7.0, -2.45692741092907, -2.5423522985527542, -2.588159616383092, -3.2894594820192005, -2.682572554981882, -3.2293320657344258, -1.9355597367167139, -2.597778152258259, -2.723795501248387, -2.5570372957219885, -2.4781079822536873, -3.801779091318613, -3.182750434591266, -1.4909375199577073, -2.3321487612593845, -2.3678451975502317, -1.3990477506093277, -2.238924389835243, -1.6661724659825865, -2.5868973219120925, -1.8032145727317173, -2.1367064465138674, -2.4704893721204355, -2.5293041493281634, -3.7003394895658697, -3.633371053038101, -2.0102170388877076, -2.6588048952737338, -2.878641007432556, -2.455135188974629, -1.3061208875878187, -2.211309420168281, -1.8029383499157559, -1.870828498512569, -1.9911381386881442, -2.9729401192703837, -3.158132645843839, -3.1213289151698236, -4.478696331677028, -2.545404787551787, -2.3258659195428875, -2.798809951364486, -3.4272877063969456, -3.131070522108716, -4.381638446726156, -1.3207734774351287, -3.1772622739970817, -3.419028590097298, -4.126758953646628, -3.2611835383544423, -2.8184314255975202, -3.223427432577566, -2.9701197319309296, -2.3260823938064945, -2.644691850487941, -2.4212747912103465, -3.205500290929755, -2.765643363141901, -3.966625417227429, -4.779610919406259, -4.177518464070232, -3.194553983567667, -3.098495907887131, -3.4000556518905416, -2.1023538547952634, -2.4976843791614503, -3.1451363462723716, -3.3099115233405927, -4.235495981820906, -2.5592259935316983, -3.70047656153093, -4.381656482585787, -1.8959507388515917, -4.080637308078068, -7.0, -2.491404797847201, -2.692259240592287, -3.0256471576060306, -4.478555674167947, -7.0, -3.1568771206909294, -4.177514856808423, -2.5785157882765883, -4.47860256506622, -4.303433666006204, -4.779574848136385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2994314973289582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.782114147479071, -3.976241047772464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6665179805548807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.34206720353101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4268364538035083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146128035678238, -7.0, -7.0, -7.0, -3.5630457817631846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1896306576921556, -7.0, -7.0, -7.0, -7.0, -2.391816923613249, -7.0, -2.45687190911158, -2.5118833609788744, -7.0, -7.0, -2.90687353472207, -7.0, -3.568110421335942, -2.907411360774586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.378397900948138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.907411360774586, -7.0, -3.468864040148188, -7.0, -7.0, -7.0, -2.2928096654172903, -7.0, -7.0, -3.2522460504731185, -3.8065530355273407, -7.0, -7.0, -7.0, -4.261706851652487, -7.0, -7.0, -3.144885418287142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9755696578936623, -7.0, -7.0, -7.0, -7.0, -7.0, -2.797959643737196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9309490311675233, -7.0, -7.0, -7.0, -7.0, -7.0, -3.482873583608754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.924795995797912, -7.0, -7.0, -2.9489017609702137, -7.0, -7.0, -3.3152354096177272, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.812690584397959, -7.0, -7.0, -7.0, -7.0, -2.7222918382381724, -2.717670503002262, -7.0, -2.91539983521227, -7.0, -7.0, -3.1212314551496214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.733999286538387, -7.0, -7.0, -2.364550995353972, -3.0338256939533106, -3.54703589974001, -7.0, -7.0, -7.0, -2.677606952720493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.29928933408768, -7.0, -7.0, -7.0, -7.0, -2.7267272090265724, -2.7371926427047373, -7.0, -7.0, -7.0, -2.7041505168397992, -7.0, -2.3502480183341627, -7.0, -7.0, -7.0, -2.8639173769578603, -2.9334872878487053, -3.4100176082030527, -7.0, -4.501059262217751, -7.0, -7.0, -7.0, -3.341335585180992, -7.0, -7.0, -2.929674317948588, -3.2143138974243994, -7.0, -7.0, -7.0, -7.0, -2.382917135087531, -2.888179493918325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.166726055580052, -7.0, -7.0, -7.0, -4.007758443254898, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8943160626844384, -7.0, -2.7134905430939424, -7.0, -7.0, -7.0, -7.0, -7.0, -4.621858011281787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4371160930480786, -4.655332158678962, -7.0, -1.9943800073599416, -3.6449307079135873, -7.0, -7.0, -2.919601023784111, -7.0, -2.218985395949339, -7.0, -3.1109262422664203, -7.0, -7.0, -7.0, -2.6646419755561257, -7.0, -7.0, -7.0, -3.1427022457376155, -2.7234556720351857, -3.4194600727860704, -7.0, -7.0, -4.319699293893277, -4.749403899010527, -7.0, -7.0, -7.0, -3.3660492098002353, -7.0, -7.0, -3.957128197676813, -7.0, -7.0, -7.0, -7.0, -4.804303028952768, -4.097014231178033, -7.0, -7.0, -3.7000977046130537, -7.0, -4.611202692182174, -7.0, -5.10237538418105, -7.0, -4.184670141350603, -7.0, -7.0, -4.6278265379179295, -4.45399066996823, -7.0, -4.007423429204934, -4.2286826097129655, -7.0, -4.242789809478676, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3933119147002, -3.972665592266111, -2.5428254269591797, -4.097245737610607, -2.3708744173977294, -2.5215995264411646, -7.0, -7.0, -7.0, -3.847140617413406, -3.0215338405254566, -2.5710096723093048, -7.0, -3.8464608251293324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.715418322595056, -2.916102861641635, -7.0, -2.5858238440164927, -4.282014536689525, -4.872167931504066, -7.0, -7.0, -7.0, -2.922905436938399, -7.0, -7.0, -3.1521863853540864, -3.589465541751032, -2.7427251313046983, -2.7234556720351857, -4.015275906681875, -4.282191456275556, -7.0, -7.0, -3.5692568333286103, -3.385933807075215, -7.0, -2.1245042248342823, -2.9345951413783444, -2.866240066363793, -7.0, -4.158663980813989, -7.0, -3.333850145102545, -3.6277753752293034, -3.7207792813583587, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0341302127096714, -2.0842186867392387, -1.996886764575857, -2.28668096935493, -2.2101847054724066, -2.677128774472802, -2.653534094302368, -7.0, -2.7234556720351857, -2.650238119299283, -7.0, -3.3081068600700276, -1.616550528049198, -2.3205616801952367, -7.0, -2.057818194432099, -3.2785249647370174, -2.9947569445876283, -3.1316186643491255, -2.9867717342662448, -1.7061945193192638, -3.071513805095089, -2.8273692730538253, -2.476155081947642, -1.418439403733663, -7.0, -2.9427519204298136, -7.0, -2.7032913781186614, -4.472785693752219, -2.1648933592542074, -3.487931421189317, -2.6857417386022635, -7.0, -1.9934362304976116, -7.0, -1.678448337191417, -7.0, -1.5473644129795046, -2.0886752501377734, -7.0, -2.6541765418779604, -2.7772196208195874, -1.6803355134145632, -2.640978057358332, -2.529772453228238, -2.732594775555279, -7.0, -7.0, -1.3026355223793997, -2.1666603081752025, -4.035969768696547, -7.0, -1.9582452518929987, -1.5782570766553377, -7.0, -2.92005807281875, -7.0, -3.0017337128090005, -3.2127201544178425, -2.2100508498751372, -2.45692741092907, -7.0, -3.1389339402569236, -1.8237112894829028, -2.9556877503135057, -7.0, -2.756636108245848, -2.7757317762602307, -2.4183012913197457, -2.346352974450639, -1.769150006268853, -3.0038911662369103, -1.3392944957592638, -2.1156105116742996, -2.101830359876606, -2.5403294747908736, -7.0, -2.785408934270052, -7.0, -2.694312646223346, -2.2227164711475833, -2.7923138519710444, -2.9073217693391156, -2.9984773030365064, -3.2711443179490782, -7.0, -7.0, -3.7984434603501875, -7.0, -1.9198249446356317, -3.321184027302314, -3.363779064430861, -1.5373797480637228, -2.712462626680574, -3.007994695660883, -3.301753217283077, -1.9645738809210547, -3.0425755124401905, -1.8856842356521324, -7.0, -1.5763413502057928, -2.4917117901707675, -7.0, -2.693726948923647, -1.69975891369356, -7.0, -2.694574943997341, -2.718501688867274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146438135285775, -7.0, -2.028932562598488, -7.0, -7.0, -2.6522463410033232, -7.0, -7.0, -2.5483894181329183, -2.121887985103681, -2.857935264719429, -2.4822481208171117, -3.543074235033532, -7.0, -7.0, -7.0, -2.350952470202979, -7.0, -7.0, -3.0793847738879054, -7.0, -7.0, -2.9367649976099415, -7.0, -7.0, -2.6473829701146196, -7.0, -2.093421685162235, -7.0, -7.0, -2.6599162000698504, -2.8555191556678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.378061601404729, -7.0, -7.0, -7.0, -7.0, -3.3345207667334886, -7.0, -7.0, -7.0, -7.0, -7.0, -2.774087396473049, -7.0, -7.0, -3.0141003215196207, -3.5281394817829104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8850217948622974, -7.0, -7.0, -7.0, -7.0, -3.425044874551389, -7.0, -7.0, -7.0, -7.0, -7.0, -4.076822423342773, -7.0, -7.0, -2.7133225049870275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.954121855324949, -3.55834850876162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.154559214682701, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2721666251407875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4308809464528913, -7.0, -2.8551481540375985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.458033192496506, -7.0, -7.0, -7.0, -7.0, -2.8558696887096082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4159565554639775, -7.0, -7.0, -7.0, -4.276431165033798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3554515201265174, -7.0, -7.0, -7.0, -7.0, -7.0, -3.539452491549461, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4235735197327357, -7.0, -7.0, -3.3944516808262164, -7.0, -3.423081958297231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.584670384464349, -7.0, -3.0671638826028436, -7.0, -7.0, -3.4113095114320773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9320676922007216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40705081480425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4323277922616042, -2.6435775608419076, -7.0, -7.0, -7.0, -3.448242412634439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2284736882906677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.508395033133053, -7.0, -3.184028602525124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.614711156273672, -7.0, -3.571760576653489, -7.0, -7.0, -7.0, -2.6500992783512007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4566696294237573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.21409969545611, -7.0, -7.0, -3.1951798424319033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2789548377038624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4202858849419178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6652056284346006, -4.021461244518642, -7.0, -7.0, -4.093655114075085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3385660494937994, -4.064749916689788, -4.015024263324626, -3.1356096360286796, -4.160768561861128, -2.924795995797912, -2.6478717653062325, -3.9564085711958326, -2.9362971598951773, -7.0, -1.8383646573552883, -3.519565500880509, -3.6346970640915686, -3.4742957493856745, -2.3540432933463484, -4.023478810083077, -3.82272367309186, -2.6210371101014225, -3.0796876276113365, -3.5514398317845557, -7.0, -4.409814816892981, -3.9806849743633146, -3.0067489005964645, -3.1443562273681835, -7.0, -4.044627943008132, -3.636659803394231, -7.0, -2.5155592635276585, -2.8933687039646, -4.127612259002789, -7.0, -3.088161411255697, -2.8417243581163993, -7.0, -7.0, -3.43435596238644, -3.0265659477323656, -4.052309099647323, -7.0, -3.896691526562884, -3.8703453710809597, -7.0, -7.0, -4.127007557371327, -7.0, -2.819461675009015, -7.0, -7.0, -3.187708686423428, -3.600155784473169, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5431985856376467, -3.3389542523776075, -7.0, -3.5480909520409916, -3.264773286837431, -4.5766004672102065, -7.0, -7.0, -7.0, -3.3110066962547022, -3.8334658601706924, -7.0, -7.0, -2.6989378331828577, -7.0, -3.8239304551255637, -3.610802066205635, -4.021995097954464, -7.0, -3.8176975547630243, -2.9020806313459078, -3.175327282032053, -7.0, -7.0, -3.8492248488826877, -3.019082592425777, -7.0, -4.052289848578728, -7.0, -3.3058885302843097, -7.0, -3.7925667729442467, -3.1063609088067503, -7.0, -7.0, -2.4358443659844413, -3.0300701134793617, -1.633125305538721, -7.0, -1.9922990706346086, -2.381853188778583, -2.1575834883314, -2.4006298316495482, -1.9454412288607073, -3.4109458586877746, -7.0, -2.2953256836728166, -2.1367205671564067, -2.506975366260944, -2.4891143693789193, -2.0465251788122005, -2.408557935660577, -2.4521841151090564, -2.0265916256712586, -1.7524649928865, -1.9975501969906566, -1.941697731835903, -2.2772270809913566, -1.92067396499224, -1.94420840975905, -2.7456992266025058, -2.9312883237487672, -2.7743344507093037, -2.0920382658475796, -2.468018941374278, -7.0, -2.463201503182557, -2.4438542406599173, -1.993451700681844, -3.0742677425533578, -1.730479455562148, -3.128722284338427, -2.032543216047485, -7.0, -7.0, -3.388633969351789, -2.0679073785805415, -1.8267749954875694, -2.1177446411869854, -2.333806998266098, -7.0, -1.433320930526303, -2.255272505103306, -1.5729617843078287, -7.0, -2.2061154317675733, -2.917330426106554, -2.274021941116145, -1.8790996538569065, -2.3369597851207042, -7.0, -3.395501124305626, -2.9213148070981427, -1.8156404895092801, -2.0360963453482763, -1.8049444269715802, -2.1828813291360327, -2.955046014722926, -2.5423522985527542, -3.1389339402569236, -7.0, -2.3774056054321284, -2.2656038765850357, -3.1188844681181167, -7.0, -1.8238677678340565, -1.9545439981580643, -3.4082399653118496, -2.7275412570285567, -1.7314736440510339, -7.0, -7.0, -2.1795517911651876, -2.7674527180977733, -7.0, -2.54448146130858, -2.711244671343486, -3.2098723115450163, -2.707712079213691, -1.9674176304026578, -1.0995657990900722, -1.6855672647538227, -1.5467624914031377, -7.0, -3.0711452904510828, -2.3591395481388244, -1.5409052121143498, -2.3919930722597127, -1.5430327769186705, -2.4391785930633114, -2.2112985672830483, -1.7022855541434265, -2.7466546801789185, -1.5883005914475676, -7.0, -2.326189510638604, -7.0, -7.0, -3.1271047983648077, -2.7964355588101744, -2.493893521283257, -7.0, -3.391111613702803, -7.0, -1.7729500566978358, -7.0, -2.2293298111056714, -2.911512714632127, -2.9182051383496885, -2.4850901843909377, -2.55249439402386, -2.131854941615539, -1.613657591302388, -1.825237608259588, -7.0, -7.0, -1.5417922601981502, -7.0, -7.0, -7.0, -2.509370560438018, -2.805160901599434, -7.0, -2.653148169085708, -1.9358210087389172, -3.0013875234866414, -3.3953263930693507, -3.368100851709351, -2.5599066250361124, -3.077731179652392, -3.3690302218091532, -2.9259511995848437, -7.0, -7.0, -2.2994588715726607, -1.8369834472586366, -3.1889284837608534, -7.0, -7.0, -7.0, -7.0, -1.7943548719475486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8152930583882103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4369573306694496, -4.276668561845278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6541765418779604, -2.888179493918325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8976270912904414, -7.0, -7.0, -7.0, -7.0, -2.2287424575642567, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5289167002776547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.67583069469469, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5888317255942073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1456107104450566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0669591978671225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5833247477133505, -2.989038878211426, -7.0, -2.832508912706236, -7.0, -4.43691763100473, -7.0, -7.0, -2.806519134080705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6692238739308056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1609144478506357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4168781513835556, -7.0, -3.388870545406613, -7.0, -7.0, -2.726171300154445, -2.611723308007342, -2.8744818176994666, -2.8512583487190755, -2.8965262174895554, -2.655618583541222, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3581252852766488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.46014581749175, -7.0, -7.0, -7.0, -2.8609366207000937, -7.0, -7.0, -7.0, -7.0, -2.509202522331103, -7.0, -2.3293978793610424, -7.0, -7.0, -1.8222770753484876, -7.0, -3.5328817194073974, -7.0, -7.0, -7.0, -7.0, -2.603144372620182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.148029445091453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7674209222282797, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0989896394011773, -7.0, -4.198450885566405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9339931638312424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4510184521554574, -7.0, -7.0, -2.6830470382388496, -4.608675764480902, -7.0, -7.0, -2.9876662649262746, -7.0, -7.0, -7.0, -7.0, -2.5550944485783194, -2.5520595341878844, -7.0, -7.0, -7.0, -7.0, -4.797565280257441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4187982905903533, -5.132285310868588, -7.0, -2.810568529216413, -3.9446677014003875, -7.0, -7.0, -7.0, -7.0, -2.2422100322640643, -2.9769610160114275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6204830741547482, -7.0, -7.0, -4.6195732947860035, -4.748529124399832, -7.0, -7.0, -7.0, -2.866484253384509, -7.0, -7.0, -3.692902974323973, -7.0, -3.4352469595691293, -4.576514112051963, -4.356494336354738, -4.502488572402794, -3.6177863946963984, -7.0, -7.0, -3.6118198286171186, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7859701251320095, -4.0776585490841315, -7.0, -7.0, -7.0, -7.0, -4.006457484638183, -3.7485497883614816, -7.0, -4.239974801116937, -3.4026625253707534, -3.0242119239259035, -7.0, -7.0, -7.0, -4.391323326974091, -7.0, -7.0, -4.573103783163991, -3.226943424688905, -2.6648769198312108, -7.0, -7.0, -7.0, -4.067641105496968, -7.0, -7.0, -7.0, -3.666798683666174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7545585506411285, -4.202311184698005, -7.0, -7.0, -7.0, -7.0, -3.3114889665785556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.606467355504293, -2.9620495355379868, -7.0, -4.634688823826319, -7.0, -7.0, -7.0, -7.0, -2.74350976472843, -7.0, -7.0, -7.0, -4.077476919504343, -1.9101040122984183, -7.0, -1.9600628615851772, -1.9118231942831303, -2.2820815443017564, -3.092457462483194, -1.581255782710964, -7.0, -7.0, -3.0114294617807817, -2.803457115648414, -3.784362529628032, -2.258876629372131, -1.7281149618436935, -3.327563260187278, -2.095672926234173, -2.7737864449811935, -2.3379965170582664, -3.09377178149873, -2.932980821923198, -1.2807300889659174, -7.0, -2.789228057267335, -2.89707700320942, -7.0, -7.0, -2.935696157954651, -7.0, -2.593286067020457, -3.772042847107852, -2.4662902598594676, -3.1509216740592922, -7.0, -2.6898414091375047, -7.0, -3.1784013415337555, -2.244689360492884, -7.0, -1.9405164849325671, -1.6657290711973398, -7.0, -2.2928096654172903, -2.707144188342445, -7.0, -2.669485932526948, -7.0, -1.853871964321762, -7.0, -2.028977705208778, -1.9758911364017928, -2.306067436355595, -4.033705151467852, -7.0, -7.0, -2.2032142586949006, -7.0, -2.4917617809025523, -2.992553517832136, -7.0, -2.724366907119601, -2.144885418287142, -2.588159616383092, -1.8237112894829028, -2.3774056054321284, -7.0, -7.0, -3.930949031167523, -7.0, -3.0224283711854865, -2.270911639410481, -2.745855195173729, -2.5269850685599957, -2.0172652722719313, -7.0, -7.0, -2.3326510367587643, -2.2667019668840878, -2.1466447454142683, -2.4502491083193614, -2.7367947549243605, -2.6102037316428195, -7.0, -2.56062387454993, -2.5949447366950835, -3.274619619091238, -2.640481436970422, -2.5477747053878224, -7.0, -3.096307373399723, -3.1177682949263725, -2.682145076373832, -2.114833300327073, -3.1693174825463464, -1.5029349925544035, -3.118359220102451, -3.5066403055665023, -2.690122214141457, -7.0, -7.0, -2.337459261290656, -7.0, -1.8672710189654482, -3.0546130545568877, -3.1781132523146316, -2.2776092143040914, -1.8731267636145004, -7.0, -2.4361320532270767, -7.0, -7.0, -7.0, -7.0, -2.8825245379548803, -2.40226138245468, -2.303196057420489, -2.4730812769179225, -3.3550682063488506, -2.9370161074648142, -7.0, -2.223582462425357, -7.0, -7.0, -7.0, -2.7752462597402365, -2.745855195173729, -7.0, -3.076276255404218, -3.2275010649714306, -7.0, -2.2023066418924566, -7.0, -2.2573092768181025, -7.0, -7.0, -3.5824724529348537, -7.0, -7.0, -2.907411360774586, -3.177969136009376, -7.0, -7.0, -7.0, -2.8068580295188172, -7.0, -3.5700757053216043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.360877297102039, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9182400902214147, -7.0, -7.0, -7.0, -4.034456560924718, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.438107045154885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6761446803562063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7645497190644672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8493948419854185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5229221725572004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6563035907524855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.133112920614726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019863713967843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9665640840973104, -7.0, -4.831489040110107, -7.0, -7.0, -4.548647338252487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.621134720505861, -7.0, -3.6731822392279376, -7.0, -3.0521646958282362, -3.3729120029701067, -2.44165379985028, -7.0, -2.9788849817912846, -7.0, -2.9285927844153066, -3.9761091470843497, -3.056170883335728, -3.079570297920983, -3.6203963453512844, -3.807444822547311, -3.5482138746859433, -3.6546769920742537, -2.7050507870521128, -4.310544628636955, -2.964154829404375, -4.0610410205231116, -3.887167020894774, -3.508026205525405, -2.8514741829727863, -7.0, -3.2127201544178425, -3.1987639676613915, -7.0, -3.451214843792629, -2.092382702652577, -3.1212767649547644, -3.641498898294518, -3.1434122718610147, -2.909154709808426, -7.0, -4.061979947074879, -3.7525285965492787, -2.9458552965590736, -7.0, -7.0, -7.0, -4.309800445601733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.504049276748714, -4.571234108634844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6334684555795866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165481742822164, -7.0, -7.0, -4.608076530882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.58937299251887, -2.1270609988103453, -7.0, -3.1622656142980214, -2.128722284338427, -2.578311687718837, -3.303368876556038, -2.44216608578472, -7.0, -7.0, -2.8966639794199422, -2.416085498340186, -3.329692733344092, -7.0, -2.433369746856586, -3.0557604646877348, -2.6512034378011884, -2.3806633963405828, -2.055584137246456, -2.294466226161593, -1.548639607424759, -2.9171114724936964, -2.606381365110605, -2.233313461142046, -7.0, -2.550228353055094, -7.0, -2.7684530982706304, -2.6047658847038875, -7.0, -3.0101097941798534, -2.980250452708863, -2.1443040992652644, -7.0, -2.5688719317338045, -7.0, -2.9180303367848803, -7.0, -7.0, -7.0, -3.4626974081017172, -7.0, -2.3687516195445553, -2.671481400086431, -7.0, -2.0744673493508063, -2.241795431295199, -1.624488362513449, -7.0, -2.6138418218760693, -2.497620649781288, -3.137986732723532, -2.994517113298384, -7.0, -7.0, -7.0, -2.6973383387401877, -2.425403782148611, -2.3521825181113627, -7.0, -2.545041898453366, -7.0, -3.2894594820192005, -2.9556877503135057, -2.2656038765850357, -7.0, -7.0, -3.461198288622493, -7.0, -2.691242282380971, -2.735997884091794, -7.0, -2.916453948549925, -1.5494491496233778, -7.0, -7.0, -3.6307328928171967, -7.0, -7.0, -3.442636525782232, -7.0, -7.0, -3.0856472882968564, -2.5724068675580556, -2.1654331908736246, -2.5276299008713385, -2.499228724283611, -7.0, -7.0, -2.6116771383924675, -1.942408140090593, -2.497620649781288, -1.4162900578684652, -2.9758285293789934, -2.7267272090265724, -2.5213716130326205, -3.208710019906401, -2.7010640378177277, -7.0, -2.5782570766553374, -7.0, -7.0, -7.0, -7.0, -1.6984000639892567, -7.0, -7.0, -7.0, -2.385424484360872, -7.0, -2.949390006644913, -2.296665190261531, -7.0, -2.960470777534299, -2.8175653695597807, -1.6574144282031131, -2.27307847310952, -3.081527326244805, -7.0, -7.0, -1.6147410230870514, -7.0, -7.0, -7.0, -2.8727388274726686, -2.3698340703001612, -7.0, -3.214843848047698, -2.368100851709351, -7.0, -2.800717078282385, -7.0, -2.496756725720979, -7.0, -7.0, -3.381611391532234, -7.0, -7.0, -2.9459607035775686, -2.2921175625108106, -7.0, -7.0, -7.0, -7.0, -7.0, -2.379758615842701, -2.693726948923647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6824784516700206, -7.0, -7.0, -7.0, -7.0, -4.092439911331141, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4263485737875077, -3.121960871649443, -7.0, -7.0, -3.1150173197373445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.043941605805343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5191422616644465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.118033128828567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2725841491100423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.913760886412323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8354368948018585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.94146173934733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5921545422761962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055148889889394, -4.012584163914151, -7.0, -7.0, -7.0, -2.381283029465036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.236285277448029, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8066208304825055, -4.027104865879351, -4.02995164203684, -7.0, -7.0, -3.6766021695820186, -7.0, -7.0, -7.0, -3.5474875414068956, -3.9558800862253753, -7.0, -7.0, -7.0, -4.299790489253733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.789270390978015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0683286043873492, -7.0, -3.9524049395770247, -3.739493230781615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.974373507081423, -7.0, -7.0, -7.0, -4.2123474379880115, -7.0, -4.007363654312278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.525821952156663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5758418740358406, -2.999527557175333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0178432012520418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8101652845431495, -7.0, -1.8469915299921025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9419584165308135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.67966172189638, -7.0, -7.0, -3.836640541572774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.885916546299353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9212181211949506, -7.0, -7.0, -7.0, -3.9293422787484373, -4.0217266644137775, -3.278000357605805, -7.0, -7.0, -3.2027001754129008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.217290881538176, -2.9787594900540326, -2.8324597815922177, -7.0, -2.8084735565101373, -4.004321373782642, -3.1143106768684246, -2.9994996151681876, -2.7584983620147856, -7.0, -3.159497782005977, -2.9504889426054746, -2.7083473456160125, -2.8894174177364684, -2.9018302967482485, -3.653051634172873, -3.1687250976725663, -3.120837060254737, -2.760495443437143, -3.2092468487533736, -2.949091699517699, -3.484539250183401, -0.8739585862819435, -2.270621570318383, -2.59659709562646, -3.0053365371082617, -3.027999846677336, -2.3734806492785756, -7.0, -2.0164676404572313, -2.944729360303296, -2.5443331814048498, -2.8331126386247925, -2.8302111525957407, -2.948596328450484, -2.7202626945460486, -3.1382575743175316, -2.407218010802163, -2.658911183001439, -4.234694407142218, -7.0, -3.752969865029084, -3.3351337369564797, -4.129012793126035, -7.0, -3.6830019846071993, -7.0, -3.7877437716464666, -4.148972634509205, -7.0, -3.3413905542954354, -3.63978521298682, -4.116408480629899, -7.0, -3.523876475638131, -7.0, -7.0, -4.046221937221636, -3.669354077643939, -4.010893313104381, -3.9411137270371017, -3.640836223757495, -2.9495203932009812, -3.6510425226700334, -7.0, -3.997211582832505, -7.0, -3.4102620770678205, -7.0, -4.3781570642294785, -7.0, -2.663566323038686, -7.0, -3.7976829349148993, -3.6563138576401566, -2.966901992934652, -3.3774883833761327, -3.7943834687844653, -4.060168811945148, -3.2354118942883665, -7.0, -7.0, -3.2062860444124324, -3.287383001404188, -7.0, -4.008625717744802, -7.0, -3.3948017771627113, -3.778838339511192, -3.7850924507567543, -3.926548224635619, -7.0, -7.0, -3.9361617409111576, -2.354307185767559, -2.5669037499121905, -7.0, -7.0, -3.232945312745227, -3.5398703234865425, -2.801991388702298, -3.3582204731086795, -7.0, -7.0, -2.942937688372435, -7.0, -2.5131916475068894, -3.9537113804275554, -3.644881521155292, -3.5233995862165233, -2.8096238360707755, -2.9434045719310675, -3.2526507983886237, -3.6593932114138483, -3.640729818150714, -3.4411057288794913, -7.0, -3.114468006623671, -7.0, -7.0, -7.0, -3.471144965160633, -7.0, -7.0, -2.2425343965748334, -2.6830386173544434, -2.1080765740961467, -3.9170851906405675, -3.0598578120802955, -7.0, -3.370698092575577, -7.0, -7.0, -7.0, -4.027023254588704, -7.0, -3.6374396927036643, -3.0363384944941667, -7.0, -2.8132806812044433, -2.8640658790902367, -2.917417976652542, -7.0, -3.2537740196788794, -3.922777341928798, -7.0, -2.604462774208763, -3.9302356527662847, -7.0, -7.0, -2.3583454920906557, -2.9828137621318627, -7.0, -7.0, -2.4566075474449653, -7.0, -2.682572554981882, -7.0, -3.1188844681181167, -3.930949031167523, -3.461198288622493, -7.0, -7.0, -2.775544254669561, -3.246646274890713, -3.926702494182645, -7.0, -2.734310784207699, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1233288669263475, -7.0, -7.0, -3.6510840892430116, -2.7630371480451195, -2.5942543940256364, -3.290657766409132, -3.5069557791831683, -7.0, -7.0, -2.8681217430022246, -3.118140671487759, -3.6216435721945732, -2.7140649191138504, -2.792102266462476, -3.0667451060838538, -2.8514876690527866, -2.7698266737436468, -2.7958484311422427, -7.0, -7.0, -7.0, -3.6158448828747023, -7.0, -7.0, -1.861608054071942, -7.0, -7.0, -7.0, -2.4982908574480973, -7.0, -7.0, -3.9210618907902783, -7.0, -7.0, -7.0, -3.6281333875410833, -3.32522822787085, -4.006679927740826, -7.0, -7.0, -3.347232410084063, -7.0, -3.9150831016512004, -7.0, -7.0, -7.0, -3.9293167267534956, -2.822580972267351, -3.2063246260747778, -3.338576007749808, -3.922829219666649, -7.0, -3.165752917359666, -7.0, -7.0, -2.7674140097746927, -7.0, -7.0, -3.6769678142947586, -3.1339777710506143, -3.652101229519464, -7.0, -7.0, -3.6298681187461233, -7.0, -3.064008486531724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.032549691831266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.081455327822574, -2.4456042032735974, -7.0, -7.0, -7.0, -2.677606952720493, -7.0, -7.0, -7.0, -7.0, -7.0, -4.336199479466631, -7.0, -7.0, -7.0, -7.0, -7.0, -2.357934847000454, -7.0, -7.0, -7.0, -7.0, -3.2259120500140233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.51869814695026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.060130999531045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.736516016421845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3748399596549756, -1.9538976944296247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4722077512253953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7371926427047373, -2.3664229572259727, -7.0, -2.167317334748176, -7.0, -7.0, -3.949991421335047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3779736964389593, -7.0, -7.0, -3.971535605346295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8041394323353503, -7.0, -7.0, -7.0, -7.0, -2.2741578492636796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3909351071033793, -7.0, -7.0, -7.0, -2.2329961103921536, -7.0, -7.0, -7.0, -3.6844413876256064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.546542663478131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.612359947967774, -7.0, -7.0, -3.1486026548060932, -3.1280760126687155, -7.0, -7.0, -7.0, -7.0, -2.8305886686851442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7547304690237535, -2.304275050477128, -7.0, -7.0, -5.097971866720445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.955899315132505, -7.0, -7.0, -4.544551703070268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0644579892269186, -3.066325925362038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.802287864512625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.103370350201992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.302677187010019, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3021865728639233, -7.0, -7.0, -3.837241116300468, -3.3979400086720375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.35324283143373, -7.0, -7.0, -7.0, -1.7795964912578246, -7.0, -3.911934912643038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.642167634404945, -7.0, -7.0, -7.0, -7.0, -3.172581311073855, -7.0, -7.0, -4.331801701423656, -7.0, -3.269979676645324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9880682033926353, -1.8948696567452525, -3.049605612594973, -7.0, -7.0, -3.6869935662646784, -7.0, -1.9834007381805383, -7.0, -7.0, -7.0, -4.627724206512672, -2.6603910984024672, -7.0, -7.0, -7.0, -7.0, -3.426998958756537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.57978359661681, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163449615841143, -4.741151598851785, -7.0, -7.0, -2.0977777345392834, -7.0, -1.933234128714808, -7.0, -1.9344984512435677, -2.9321353973192474, -7.0, -7.0, -3.2907022432878543, -7.0, -7.0, -7.0, -7.0, -2.184691430817599, -7.0, -2.4756711883244296, -7.0, -7.0, -7.0, -7.0, -1.9956351945975501, -7.0, -7.0, -7.0, -7.0, -7.0, -1.804480189105993, -3.2293320657344258, -2.756636108245848, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4056024552093134, -7.0, -7.0, -7.0, -3.236789099409293, -7.0, -2.367355921026019, -3.595606434865603, -7.0, -2.1212314551496214, -3.7170044070405472, -7.0, -3.428620672671939, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2329961103921536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.502518157503245, -7.0, -2.428134794028789, -7.0, -7.0, -7.0, -1.3155887158349062, -2.9786369483844743, -7.0, -2.298853076409707, -2.1367205671564067, -1.6842467475153124, -7.0, -0.9270902633957101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.72916478969277, -7.0, -7.0, -7.0, -7.0, -7.0, -2.574031267727719, -7.0, -2.8829038344697353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4990911223977146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1522883443830563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7034633418832934, -2.9772144017362656, -7.0, -7.0, -7.0, -7.0, -3.6586313746095143, -7.0, -7.0, -7.0, -7.0, -7.0, -2.641781720821696, -3.461048091670658, -7.0, -3.4572004127937683, -3.385719990896485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.912859475162355, -7.0, -7.0, -7.0, -7.0, -3.723537761532057, -7.0, -7.0, -7.0, -7.0, -7.0, -3.946091841038187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0953088613853814, -3.5168437434754565, -7.0, -7.0, -3.779380011491656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.387305061142422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731024379815688, -7.0, -7.0, -7.0, -7.0, -7.0, -3.032975442566309, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.055443399092839, -3.228400358703005, -7.0, -7.0, -7.0, -3.284881714655453, -7.0, -7.0, -3.636663384067435, -7.0, -3.725339815909737, -7.0, -3.325720858019412, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2295111961536325, -7.0, -7.0, -7.0, -2.6663619559503995, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8330559979961802, -3.8684680990209865, -3.8725641430906514, -3.4409090820652177, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8651039746411278, -7.0, -7.0, -7.0, -7.0, -3.3769417571467586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7532765701844184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.246670139929375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.798468909458224, -7.0, -3.7562556487542333, -3.1810445178354394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.362356792654536, -7.0, -7.0, -7.0, -3.7026889681591335, -7.0, -7.0, -3.7170044070405472, -7.0, -7.0, -7.0, -2.6009728956867484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7043221408222355, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2140725258594047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0463450608244513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7132384615456617, -3.290034611362518, -7.0, -3.557206339765532, -7.0, -7.0, -7.0, -7.0, -2.9231792324017825, -7.0, -2.9843022319799033, -7.0, -2.7941513842532384, -7.0, -7.0, -7.0, -2.322662226421373, -3.752125307297898, -7.0, -3.7939998009844706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8726223790252883, -7.0, -7.0, -7.0, -2.3825108726800726, -7.0, -7.0, -3.3208522198317545, -7.0, -7.0, -7.0, -7.0, -3.482373285458582, -7.0, -7.0, -3.717670503002262, -7.0, -7.0, -3.105072497338436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8369567370595505, -3.860697274052039, -3.364755888417643, -7.0, -7.0, -3.1685411312096927, -3.7645497190644672, -7.0, -3.728434950974255, -7.0, -3.755188585608325, -3.874017703862186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6635218951063355, -3.3054875130416663, -3.668907502301862, -3.72956972630197, -3.8004971266535237, -3.3578713490133674, -2.6262957259110666, -4.172705071797739, -2.347873520992558, -7.0, -2.23700120905058, -2.812604872328782, -3.5233648829137834, -3.6577949909195624, -2.352479370126955, -3.7733658384643807, -3.2612628687924934, -2.5632612896096174, -3.3207395846758714, -3.1376513664730057, -7.0, -3.670275679967574, -2.8296967833716815, -2.2398880538155255, -3.2194011303575603, -7.0, -3.7173838369155834, -3.4385687168066346, -3.797406049676382, -2.2346251685731877, -2.988173701342641, -3.5528607876775875, -3.6434921560082274, -2.8041394323353503, -2.5471392492424014, -3.564922384068158, -3.3591576384658945, -2.78836123376675, -2.9337402994969355, -7.0, -3.1699681739968923, -3.208306962353663, -2.980195726856603, -3.7075701760979363, -7.0, -3.162917259782312, -7.0, -3.5192919019689546, -2.9199225150410633, -3.105986795521473, -2.0611529213699096, -3.268297087223767, -2.814647069451856, -3.1845494813206976, -7.0, -7.0, -7.0, -3.895753942073728, -2.474325008970507, -3.543757723163865, -2.959438915902078, -2.7545394443970084, -3.1616196942048727, -3.4455136273681837, -7.0, -7.0, -7.0, -2.977266212427293, -3.3728659947618, -4.186984572160061, -3.3412861070286284, -2.4987428758380212, -7.0, -2.8881326722394585, -3.5703093854358796, -2.5265792547944046, -2.620552444729435, -3.963882228928777, -3.614211501642213, -3.0019385633322884, -3.871689665685515, -7.0, -3.374507165084317, -2.5974209235343935, -7.0, -2.6904883743107986, -7.0, -3.824581376233483, -3.4653828514484184, -3.097344090487375, -3.4137187650610787, -7.0, -7.0, -2.263513634396092, -2.7558748556724915, -1.7166238530729816, -3.710540447933297, -2.7721749608246142, -2.820037171803748, -2.2697586553882063, -1.751446065406006, -2.404015205403452, -3.716504163773217, -7.0, -1.930118836392619, -2.488633652523212, -1.432332135228138, -2.6102037316428195, -2.464599350456727, -2.3951645421816643, -2.4198287060778814, -1.7983646063869205, -1.9247544441857607, -2.1091659155366207, -2.78406228363478, -2.508978370335467, -2.031951963271931, -2.053304461954253, -2.691161894693207, -3.4143883269310753, -3.2228031480228143, -2.1163939712975304, -2.6424645202421213, -3.2236689666546843, -2.6027492059794075, -1.782032802306157, -1.7260996890413132, -3.398200507219428, -1.8038489470153505, -3.424881636631067, -1.987132653826536, -3.1104213464739563, -3.395064164331242, -3.4044060509212692, -2.5040273880538586, -2.5363058723510337, -2.6184504075161317, -2.368864587950433, -3.399240941692456, -1.4925905178698389, -2.2920977719262914, -2.0698398148530557, -3.6961815871685237, -2.6092894271326985, -2.804480189105993, -2.98878184345364, -0.9859959393208597, -2.514298659173731, -3.1028622998954396, -3.2314695904306814, -2.60422605308447, -2.1679471464882516, -2.212814066080421, -2.5940766998292117, -1.8584708836673578, -3.1249115923549144, -1.9355597367167139, -2.7757317762602307, -1.8238677678340565, -3.0224283711854865, -2.691242282380971, -2.775544254669561, -3.4056024552093134, -7.0, -1.6673311140669067, -2.9361785093615893, -3.2474822606770544, -2.0600229459180217, -3.3952390010815514, -3.7031193462360776, -2.5783900307301257, -2.8412812403399172, -3.4379090355394983, -2.3957194395376415, -3.0582741466859513, -2.7944880466591697, -2.7130321041190335, -1.8596768121039193, -1.6193360481661199, -1.9408847449615854, -1.9083457326420796, -3.6977522741677546, -7.0, -2.315576784503928, -1.6913181275414544, -3.0091108061322127, -2.2024617351968274, -1.6168278651528245, -2.8289461816359327, -1.8502914589351291, -2.068038098556065, -1.8616742004490006, -3.1035471720766425, -2.331115695085382, -3.705007959333336, -2.9995654882259823, -3.2478096594727353, -3.1584378838985643, -2.8410749297371463, -3.398981066658131, -3.229340482911692, -7.0, -1.394065108209559, -7.0, -2.4971736565908635, -3.2284859086849425, -3.4079854213081364, -2.7765397662270646, -3.011316643366872, -2.603394230417027, -2.216165902285993, -1.9976946862194678, -3.2627674003648806, -7.0, -2.1548685514329433, -7.0, -7.0, -7.0, -2.1814232080049676, -3.1126050015345745, -2.437667132893726, -2.0208601634104535, -1.8884408608331742, -2.106404121471442, -2.9298444960392853, -7.0, -2.697851808799922, -3.399846712712922, -3.6962689967455327, -2.0587125118983254, -7.0, -7.0, -1.9879073308783721, -1.854656326386735, -1.985380011395665, -7.0, -7.0, -3.420945405921972, -7.0, -1.8188479077451358, -3.696967640744023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.66335221936459, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6249521046631217, -3.6379897807846855, -7.0, -3.146438135285775, -4.03532107949519, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.564381964057547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.195207549502754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0478327947340205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4623249396967646, -2.571708831808688, -2.3096301674258988, -7.0, -7.0, -7.0, -7.0, -7.0, -3.812879948090056, -7.0, -7.0, -7.0, -3.8951540877215907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.091807597001675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.12515582958053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5558116315501107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8836614351536176, -7.0, -7.0, -3.771817059827186, -7.0, -7.0, -7.0, -7.0, -3.082066934285113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9341616582977217, -7.0, -2.8000293592441343, -2.8506462351830666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.394976719554564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.863322860120456, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8498584005624314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0517954455579925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.726808682524964, -7.0, -3.804548308388056, -7.0, -7.0, -7.0, -2.4820155764507117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1963781552840014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.93976877545335, -7.0, -7.0, -7.0, -7.0, -2.9079485216122722, -4.321456887184841, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.465977368285823, -5.43380022547713, -7.0, -7.0, -3.596059239297757, -3.1711411510283822, -7.0, -7.0, -7.0, -7.0, -3.4983105537896004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5432918252304986, -4.449809971741877, -7.0, -7.0, -4.435525851498655, -2.922033079238554, -7.0, -7.0, -3.782488549597868, -7.0, -3.1457400995364067, -4.278913574715962, -7.0, -7.0, -3.038844688341721, -7.0, -7.0, -3.178622080587683, -7.0, -4.613196769750614, -3.9270622434930003, -4.801983068804944, -7.0, -3.9429217685191538, -7.0, -4.168055303459139, -7.0, -7.0, -7.0, -3.804854713005252, -4.233478391931892, -7.0, -7.0, -3.712397131406715, -3.345765693114488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.09941588705348, -3.4096161586059464, -7.0, -7.0, -4.0680002261451715, -7.0, -7.0, -7.0, -7.0, -2.7832602328729488, -7.0, -3.4379882502194996, -7.0, -7.0, -7.0, -7.0, -7.0, -4.197859231738088, -3.425697213362591, -7.0, -3.4590907896005865, -4.282866716929532, -7.0, -7.0, -7.0, -7.0, -4.315046224922345, -7.0, -7.0, -2.948706308904852, -4.073681699476284, -7.0, -7.0, -7.0, -4.286434013402093, -7.0, -7.0, -7.0, -3.8688500772104053, -7.0, -7.0, -4.308639101521262, -4.091409000337585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6299190355035416, -7.0, -7.0, -1.8308024488922192, -3.787176992470554, -2.4378362309303223, -2.904715545278681, -2.7269987279362624, -2.0764583877121514, -2.5440680443502757, -2.501358849455384, -2.2813174984203766, -2.941511432634403, -2.8555191556678, -2.5297949502875765, -2.062111714033968, -2.1100967539672038, -2.2386732432838445, -1.6975199379407861, -1.9784544333652287, -2.282278499425753, -1.326563418954342, -1.9584795623825795, -2.1829849670035815, -2.761927838420529, -2.3899251194809668, -1.9506893179563278, -1.4053219622946371, -2.432969290874406, -2.6339731557896737, -2.3547485195608395, -2.377549077175673, -2.130793096387536, -7.0, -3.043405945456881, -2.6704235149632467, -2.9050289625668273, -2.828015064223977, -1.6994613803815402, -7.0, -1.3453083690596945, -2.4409090820652177, -7.0, -2.392696953259666, -2.367355921026019, -2.2278867046136734, -2.077569761891046, -2.079281765543943, -7.0, -1.9349868799532348, -2.300305567669649, -1.8840397404753637, -7.0, -1.957447649314536, -2.591064607026499, -2.8816699076720615, -2.5904078965706305, -2.0573807905423553, -7.0, -2.5921767573958667, -7.0, -2.251638220448212, -2.2007137339640135, -1.953499490469544, -2.1693977913346485, -3.003029470553618, -2.597778152258259, -2.4183012913197457, -1.9545439981580643, -2.270911639410481, -2.735997884091794, -3.246646274890713, -7.0, -1.6673311140669067, -7.0, -7.0, -2.510545010206612, -1.8860876676197436, -2.8055008581584002, -7.0, -3.043165720207454, -2.6124306281667917, -3.061452479087193, -2.3538777790648417, -2.665893545534433, -2.383262828397118, -1.9819479769904773, -1.9977847916135072, -1.839380662996892, -1.5291693929623844, -1.3633367615800802, -2.815577748324267, -7.0, -2.97806633408362, -2.0110264042280437, -2.1094660499520925, -2.275119316297735, -2.7525675042716915, -2.1976564079819663, -2.132890500150523, -2.8433885229380875, -1.7695510786217261, -7.0, -1.8440627725826517, -2.5658478186735176, -7.0, -2.6893088591236203, -2.552972237463008, -2.6740734238074024, -2.833784374656479, -7.0, -7.0, -2.1950569462894327, -7.0, -2.315130317183602, -2.8744818176994666, -2.416640507338281, -2.244689360492884, -2.302114376956201, -2.1072099696478683, -2.2157256645575676, -1.6502191890561915, -2.284806583700867, -7.0, -1.592801092674244, -7.0, -7.0, -7.0, -2.1018452306835687, -7.0, -2.9585638832219674, -2.859309887372584, -2.35817288180055, -2.674729953761462, -2.8937617620579434, -2.800717078282385, -3.126131407261984, -2.840106094456758, -7.0, -2.7305355492917256, -2.8129133566428557, -7.0, -2.435252653031749, -2.2608660716137683, -1.5642714304385625, -2.800717078282385, -7.0, -2.9740509027928774, -7.0, -1.9510503673339017, -7.0, -2.9566485792052033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05759954755417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6148972160331345, -7.0, -7.0, -3.905849826642319, -3.2965555060882235, -7.0, -7.0, -4.276191722318338, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731387283168788, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8494194137968996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.786041210242554, -7.0, -4.519998529118848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.737303985990029, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.364128689628175, -7.0, -7.0, -7.0, -7.0, -7.0, -3.685024785105714, -7.0, -7.0, -2.906335041805091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.078094150406411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9777236052888476, -7.0, -7.0, -7.0, -2.8407332346118066, -7.0, -7.0, -4.251873348943444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.244771761495295, -7.0, -3.5601458398490475, -7.0, -7.0, -3.89325303090974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7299742856995555, -2.6304278750250236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.040602340114073, -7.0, -2.9444826721501687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1954229886237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5126843962171637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.197308131503102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.876506504265881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.438067450453494, -7.0, -7.0, -7.0, -4.130623201682595, -7.0, -7.0, -2.8562000460323604, -7.0, -7.0, -7.0, -7.0, -7.0, -2.800717078282385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.955495329184127, -7.0, -4.956057921139135, -7.0, -7.0, -4.5457770385001215, -3.0409976924234905, -7.0, -2.500373714353374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3857849588433355, -7.0, -7.0, -4.618706887211025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.733790903406896, -7.0, -7.0, -7.0, -7.0, -4.8029651830129545, -3.9174704985096076, -7.0, -7.0, -4.652604075494435, -7.0, -4.609113965400532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.403738050363856, -3.922543815390706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7795964912578244, -7.0, -3.5264469759599937, -3.739255803268511, -7.0, -7.0, -7.0, -4.543782557020339, -2.9407298799816086, -2.52270499273475, -3.4694538137671267, -7.0, -7.0, -7.0, -3.7321524180652137, -7.0, -7.0, -7.0, -4.187153953785416, -3.3581252852766488, -7.0, -3.3547996852632904, -4.5029912452209455, -5.172632116686294, -7.0, -7.0, -7.0, -3.3106083564585234, -7.0, -4.942404940856107, -7.0, -7.0, -7.0, -3.183459657707637, -7.0, -7.0, -7.0, -7.0, -7.0, -3.857422965024847, -7.0, -7.0, -4.605574376060999, -3.449822423023631, -7.0, -3.8555999095694653, -7.0, -7.0, -7.0, -7.0, -7.0, -2.568201724066995, -7.0, -7.0, -7.0, -3.2931414834509307, -2.1409268419924303, -2.3046341199328064, -7.0, -2.9077695418108918, -3.3901841527188092, -2.7623033632877685, -1.9840770339028309, -2.5224442335063197, -3.4832305869021027, -2.4401216031878037, -3.3731164249470056, -2.0457574905606752, -2.6314437690131722, -3.3102683666324477, -3.448087666692341, -2.929674317948588, -3.442793225939769, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8488047010518036, -1.7643629658980102, -7.0, -2.9304395947667, -7.0, -7.0, -4.168850903709554, -3.5274117571054364, -3.8967387461717196, -7.0, -7.0, -2.1760912590556813, -7.0, -1.590051083854947, -7.0, -2.075546961392531, -2.308482324064368, -7.0, -7.0, -3.6028193424326997, -2.478566495593843, -3.005866601875385, -2.6138418218760693, -2.6913025633834833, -7.0, -3.0017337128090005, -1.7414892646574982, -7.0, -3.730923519488264, -7.0, -1.94571471405986, -2.6020599913279625, -3.5758803156806462, -3.8111056070179306, -2.9542425094393248, -7.0, -7.0, -1.8815273056409318, -2.723795501248387, -2.346352974450639, -3.4082399653118496, -2.745855195173729, -7.0, -3.926702494182645, -7.0, -2.9361785093615893, -7.0, -7.0, -2.2922560713564764, -2.5601458398490475, -7.0, -2.5211380837040362, -2.90655051910145, -2.32376758329678, -7.0, -2.116690743411703, -1.603865792191225, -2.966610986681934, -2.6915235221681546, -2.953356933212382, -3.6684791029325856, -3.2550311633455515, -3.2229764498933915, -7.0, -7.0, -7.0, -3.4051755462179893, -1.8920946026904806, -2.9770373352246815, -3.712060142461075, -3.1367205671564067, -3.357744325180376, -3.4377732053209487, -3.7647737169110402, -1.5910646070264993, -2.957607287060095, -1.6283889300503114, -7.0, -1.989746365634447, -2.1715175075429207, -7.0, -7.0, -2.2706788361447066, -7.0, -2.6595174974349662, -2.514547752660286, -7.0, -7.0, -2.123851640967086, -2.530199698203082, -2.6273658565927325, -2.416640507338281, -7.0, -3.338854746252323, -7.0, -2.2706788361447066, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3729120029701067, -2.720159303405957, -2.971554153446061, -3.0403385718205698, -3.166726055580052, -2.6009728956867484, -7.0, -3.3602146132953523, -7.0, -7.0, -3.501355997218113, -7.0, -7.0, -2.4051185932991612, -2.9894498176666917, -7.0, -7.0, -7.0, -7.0, -7.0, -3.258996253248911, -7.0, -7.0, -7.0, -2.6766936096248664, -2.5877109650189114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8825909387625783, -7.0, -7.0, -7.0, -3.629715332647132, -3.353627758985543, -7.0, -7.0, -7.0, -7.0, -7.0, -3.309789805171458, -7.0, -7.0, -2.753199914199416, -3.536300130411311, -7.0, -7.0, -7.0, -7.0, -2.6875289612146345, -7.0, -4.084051710032526, -7.0, -7.0, -7.0, -2.737987326333431, -7.0, -7.0, -2.740362689494244, -7.0, -7.0, -7.0, -4.039453778961736, -7.0, -7.0, -2.795184589682424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.735864930017006, -3.02201573981772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2586771829934693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4353665066126613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.74350976472843, -2.8627275283179747, -7.0, -3.2906760809696594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6074550232146687, -7.0, -7.0, -7.0, -7.0, -7.0, -2.09541844491831, -7.0, -7.0, -7.0, -7.0, -2.9556877503135057, -7.0, -7.0, -2.863322860120456, -7.0, -3.113423372534924, -2.6830470382388496, -7.0, -2.640481436970422, -2.8530895298518657, -3.074450718954591, -7.0, -3.066325925362038, -3.6277412634214152, -7.0, -2.8543060418010806, -7.0, -3.960010711374667, -7.0, -7.0, -7.0, -7.0, -7.0, -2.694605198933569, -2.7596678446896306, -7.0, -7.0, -3.971971276399757, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6954816764901977, -3.44544851426605, -3.456214155357989, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7812525942484565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.909020854211156, -7.0, -7.0, -3.1383026981662816, -7.0, -7.0, -7.0, -7.0, -2.6074550232146687, -7.0, -7.0, -2.971507781711256, -7.0, -3.8682916880178557, -7.0, -7.0, -2.9081058394817405, -7.0, -2.8943160626844384, -2.2665844470668635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.196452541703389, -7.0, -7.0, -7.0, -7.0, -7.0, -2.886866575028829, -7.0, -7.0, -2.6464037262230695, -2.6483600109809315, -7.0, -7.0, -7.0, -7.0, -7.0, -2.56702636615906, -3.345765693114488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6994040818153375, -3.53731527311201, -4.0038696446688835, -7.0, -7.0, -2.5998830720736876, -2.6216954623292787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295874845217379, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6702458530741238, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7594160067690314, -7.0, -7.0, -7.0, -2.722839505724351, -2.412740466538526, -3.2271150825891253, -7.0, -4.022813140401051, -7.0, -7.0, -7.0, -2.855620095698912, -7.0, -7.0, -3.210853365314893, -3.1931245983544616, -7.0, -7.0, -7.0, -2.7058637122839193, -2.649334858712142, -7.0, -7.0, -7.0, -2.7535830588929064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.830791762380773, -7.0, -7.0, -3.467977875279793, -7.0, -7.0, -2.8488047010518036, -7.0, -2.8677620246502005, -2.8750612633917, -7.0, -7.0, -7.0, -7.0, -4.057261422076152, -7.0, -7.0, -7.0, -7.0, -7.0, -2.942008053022313, -7.0, -7.0, -2.8221680793680175, -7.0, -7.0, -7.0, -2.756636108245848, -7.0, -2.5998830720736876, -7.0, -7.0, -7.0, -7.0, -4.655207288728793, -7.0, -2.645422269349092, -7.0, -2.78354628227035, -7.0, -2.8767949762007006, -7.0, -3.038620161949703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.117602691690084, -2.6541765418779604, -2.559222427207474, -7.0, -7.0, -4.01781561717208, -4.748800260694086, -7.0, -7.0, -7.0, -7.0, -3.7138264243805246, -7.0, -3.620600464021688, -7.0, -3.7378285058957847, -7.0, -7.0, -7.0, -3.7945577512547617, -7.0, -4.391499675895142, -3.6993462298794717, -7.0, -7.0, -7.0, -4.801070829199609, -7.0, -4.309069196393278, -4.078927833680719, -7.0, -7.0, -7.0, -7.0, -3.5014187421113556, -3.7494528755696246, -7.0, -4.240848658485361, -7.0, -7.0, -7.0, -7.0, -4.352491239988165, -7.0, -3.969042967305813, -3.121887985103681, -4.272456614923269, -2.8437481337859585, -3.271066772286538, -7.0, -4.058008232715403, -7.0, -3.5450224427567334, -3.794975744051132, -2.951823035315912, -7.0, -7.0, -3.71758729685546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.101479757044251, -4.135514280998787, -4.87194052929306, -7.0, -7.0, -7.0, -3.6588801766183723, -7.0, -7.0, -3.320457868916649, -7.0, -2.6766936096248664, -7.0, -7.0, -7.0, -7.0, -3.3619166186686433, -7.0, -3.684815450526118, -3.15259407792747, -7.0, -3.5274258075430835, -3.662190990859007, -7.0, -3.8567892887533164, -7.0, -7.0, -7.0, -3.416349216054106, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3504242384550236, -1.8750612633917, -1.0937228602657776, -2.3667341679034988, -2.4492211919059925, -2.917549269387528, -1.891746470822618, -2.303915683901469, -7.0, -2.64479015953634, -7.0, -3.152227171838142, -1.0205069823830017, -1.9003671286564703, -3.3346547668832414, -2.476816379675971, -2.958802703399502, -2.4164892115757675, -7.0, -2.6483600109809315, -2.1769176998034636, -7.0, -2.801403710017355, -2.0644579892269186, -1.8625785677670705, -7.0, -2.761301241165817, -7.0, -2.6304278750250236, -3.693345821666275, -2.654087185980357, -3.441530182363339, -2.60959440922522, -2.918554530550274, -1.8488047010518036, -7.0, -1.656417653650555, -7.0, -1.6637009253896482, -1.648197323403864, -7.0, -2.311753861055754, -7.0, -2.1409268419924303, -3.11293997608408, -2.1912646619703375, -2.057539321108782, -2.2648178230095364, -7.0, -1.2918866162241114, -2.0516786212178384, -3.858276462425929, -2.82020145948564, -1.7624910040260096, -1.7464612077056945, -7.0, -2.7383180158201332, -7.0, -7.0, -3.205745540942662, -1.9584444238670942, -2.5570372957219885, -1.769150006268853, -2.7275412570285567, -2.5269850685599957, -2.916453948549925, -7.0, -7.0, -3.2474822606770544, -2.510545010206612, -2.2922560713564764, -7.0, -2.2842050677017944, -2.089905111439398, -1.3138672203691535, -1.8670923337204246, -1.7676196082318536, -2.4683473304121573, -2.3157281963110274, -2.5736450565133797, -2.984677302805447, -1.9932357714670954, -2.5352149775401545, -2.6776981814745104, -3.2826221128780624, -2.7745169657285493, -2.5888317255942073, -2.591064607026499, -3.370443693159354, -3.424881636631067, -1.8573324964312685, -3.003245054813147, -3.111976227019206, -1.9882615967287558, -3.1870504506422686, -3.171321328174317, -3.073938190635253, -2.2050238216541693, -3.0107238653917734, -1.8864907251724818, -7.0, -1.9420080530223132, -1.980382171853643, -7.0, -7.0, -1.837047036359575, -2.5634810853944106, -2.288598319679449, -2.6483600109809315, -7.0, -7.0, -2.1097472377132287, -2.9020028913507296, -7.0, -2.807535028068853, -2.832508912706236, -3.361727836017593, -2.4751867549424627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9183299535486804, -7.0, -2.680426170858145, -3.5332635167787148, -7.0, -7.0, -7.0, -2.7788744720027396, -2.3263358609287517, -7.0, -3.282009999342054, -7.0, -7.0, -3.2182728535714475, -3.484299839346786, -7.0, -7.0, -7.0, -2.5276299008713385, -7.0, -3.574147064150723, -7.0, -7.0, -7.0, -7.0, -3.2092468487533736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.769146453452604, -7.0, -7.0, -7.0, -7.0, -3.4584112014697164, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5081813078158945, -7.0, -7.0, -3.374198257929083, -3.7097277645597693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.575672690363307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.511749711344983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.606488850442648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.250175948083925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3065007149823713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.266231696689893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145103133146382, -7.0, -3.2893659515200318, -7.0, -3.9696798881274287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5483075066875784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3025473724874854, -7.0, -7.0, -7.0, -7.0, -7.0, -4.124504224834283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8838506290062735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.593499679766006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8550141033002596, -7.0, -7.0, -3.4047347157118026, -7.0, -3.3044905277734875, -3.2960066693136723, -3.312811826212088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5499836111596887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788168371141168, -3.2081725266671217, -7.0, -7.0, -3.0600679715239822, -7.0, -7.0, -3.2076343673889616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3688445068258215, -3.7557620768491304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8990384123869903, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2304489213782737, -7.0, -7.0, -3.3958503760187813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5251744278352715, -7.0, -2.8950770727239954, -7.0, -3.154278394368455, -7.0, -7.0, -7.0, -3.0443045191759146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.144293927198531, -7.0, -7.0, -3.374442827543826, -7.0, -7.0, -3.287353772714747, -7.0, -3.1314582601065255, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5345166153504253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.435313909967652, -7.0, -7.0, -4.2610962581323335, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6144753660903954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5776066773625357, -7.0, -7.0, -3.3311741373868458, -3.6788899955025243, -7.0, -3.300812794118117, -3.37112945995738, -3.0635835285910997, -2.2103391029908557, -3.8194945810919148, -2.7517345945216576, -7.0, -2.514511856104337, -3.2681989577058395, -3.1918234797380713, -3.243413492394054, -2.7348664749479745, -4.309140245453068, -3.4581844355702627, -2.974361284464857, -2.6709412807357755, -2.8662666060683937, -3.6729286904427223, -3.992291754360717, -3.6447831309233574, -2.9305582840293467, -2.324979051522652, -7.0, -3.597884575183753, -3.1088884329683015, -7.0, -2.937066312017428, -2.6533813732422042, -3.2345502933923744, -3.315923719821369, -2.834500179293778, -2.6012019841699203, -3.794092842489171, -3.402880133602107, -3.8984326288792706, -2.384272242023868, -7.0, -7.0, -4.587565053475168, -3.4295706132786914, -3.5336449787987627, -7.0, -3.8013694042010013, -7.0, -4.259175627306078, -3.395908557341382, -3.480581786829169, -3.6415402081348343, -4.181843587944773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.922595721029815, -3.560026248912892, -7.0, -3.6811688489293988, -3.7308002139362295, -4.135103726372142, -7.0, -3.52022143588196, -7.0, -3.722901161709392, -7.0, -7.0, -3.733758835587203, -4.107718610520263, -7.0, -7.0, -7.0, -4.307602993826055, -7.0, -7.0, -7.0, -3.418991414588919, -7.0, -7.0, -4.1427126678463475, -3.5795549604009986, -7.0, -3.8690164754407816, -7.0, -7.0, -7.0, -3.367840271289815, -7.0, -7.0, -7.0, -2.6024940688072813, -2.465118360281959, -1.6379613380280913, -7.0, -2.148876744106389, -1.999542607138445, -1.832745392146821, -2.4657349662676826, -1.6237931783611625, -3.2648178230095364, -7.0, -2.037545417569489, -1.7460677893601901, -2.5429349200735434, -2.290776361298428, -1.7737052001054718, -2.751150747404337, -2.362105319293773, -1.7369863760269566, -1.513955834871233, -2.1633017189698065, -1.4732145313868534, -2.1213708020384168, -2.520577100441661, -1.7821141474790712, -2.835056101720116, -2.7841416140728312, -3.217220655644519, -1.9795700520347994, -2.6807886115066824, -7.0, -2.403163078899993, -2.4034016775512366, -1.6458109443377589, -2.7363965022766426, -2.04484846960872, -7.0, -2.2077768862262555, -3.25478968739721, -7.0, -3.2332500095411003, -2.040184632969257, -2.353387219249733, -1.602502923015416, -1.5695703901023565, -7.0, -1.6591059160721733, -1.6368220975871743, -1.135912354426246, -7.0, -1.6728672017718136, -2.541579243946581, -2.278225797182899, -2.3060610481219515, -2.496699069633021, -2.9312035254507522, -7.0, -1.6052783266298942, -1.7445805763269497, -2.2687339404540663, -2.250420002308894, -1.914401928955501, -2.8171244614184556, -2.4781079822536873, -3.0038911662369103, -1.7314736440510339, -2.0172652722719313, -1.5494491496233778, -2.734310784207699, -3.236789099409293, -2.0600229459180217, -1.8860876676197436, -2.5601458398490475, -2.2842050677017944, -7.0, -7.0, -7.0, -2.2960148052925016, -2.864313269858478, -3.325925955771466, -2.422458514031944, -2.52560005256132, -2.1958996524092336, -1.3744058821756568, -1.932855758907971, -1.5260791612514868, -1.970741228491373, -1.749230751353215, -3.2095150145426308, -2.606381365110605, -2.2026508811976, -1.669084326621116, -2.059437187851868, -1.3035339897779414, -2.4301308196119487, -1.9194049982868073, -1.9421140948936504, -2.5700119525533682, -1.5388454931448834, -3.2347702951609167, -2.506118305325085, -7.0, -7.0, -2.811127970852324, -2.9025467793139916, -1.6297705116057013, -3.216957207361097, -2.7586596156078977, -7.0, -1.4930277111525112, -7.0, -2.6991870973082492, -2.3276143266206253, -2.123851640967086, -1.4522214053904476, -2.164352855784437, -1.6193845754003067, -1.5938396610812713, -1.9955098389950334, -2.4228359687795225, -7.0, -1.3092543175695517, -7.0, -3.2043913319193, -7.0, -2.18587254245639, -2.5601458398490475, -7.0, -2.7798128631705805, -1.9500592552910156, -2.8530895298518657, -2.6392373957820308, -3.203576774977973, -2.077246746270425, -3.2195845262142546, -7.0, -2.789602075987727, -7.0, -7.0, -2.1533574714829737, -1.8564997167285306, -3.372175286115064, -7.0, -3.204933522354145, -7.0, -7.0, -1.9089315942207272, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.399881302691986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517116688085895, -2.5943925503754266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.42620210284358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.192307207523569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.103803720955957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5994463757252757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.56702636615906, -7.0, -3.0569048513364727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3656751404559175, -7.0, -7.0, -2.695043658821294, -4.242006927244273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732031696874192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9943171526696366, -7.0, -4.300073495267144, -3.721563318357481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.132547842465581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603209349477183, -4.084278305722365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2833464653560465, -2.3010299956639813, -3.000434077479319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325443822322886, -2.5993371329924893, -7.0, -7.0, -7.0, -3.171433900943008, -7.0, -7.0, -2.7442929831226763, -2.756027212973441, -7.0, -2.9689496809813427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6850148190800835, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8750612633917, -7.0, -1.845098040014257, -7.0, -7.0, -7.0, -3.578409970331236, -7.0, -7.0, -7.0, -3.243534101832062, -7.0, -7.0, -1.5340261060561349, -7.0, -7.0, -7.0, -2.146128035678238, -2.2576785748691846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.801779091318613, -1.3392944957592638, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3952390010815514, -2.8055008581584002, -7.0, -2.089905111439398, -7.0, -7.0, -7.0, -3.2809196627093367, -7.0, -7.0, -7.0, -7.0, -7.0, -2.582063362911709, -7.0, -7.0, -7.0, -3.161966616364075, -7.0, -7.0, -4.265996370495079, -7.0, -7.0, -7.0, -7.0, -3.0610753236297916, -7.0, -3.9770831203158528, -7.0, -7.0, -7.0, -7.0, -7.0, -2.576341350205793, -7.0, -7.0, -7.0, -1.8864907251724818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4479328655921804, -7.0, -7.0, -1.5314789170422551, -7.0, -7.0, -2.4683473304121573, -7.0, -7.0, -3.3492775274679554, -7.0, -7.0, -7.0, -7.0, -3.0151501032294714, -7.0, -7.0, -3.9736357734174077, -7.0, -7.0, -3.1192558892779365, -7.0, -7.0, -1.462397997898956, -7.0, -2.530199698203082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357315345247881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.716003343634799, -7.0, -7.0, -7.0, -3.4207806195485655, -7.0, -7.0, -2.942008053022313, -3.7311914682335705, -7.0, -7.0, -7.0, -2.4424797690644486, -1.871183608328498, -7.0, -4.55810830163055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.462397997898956, -7.0, -7.0, -7.0, -4.034267397038025, -7.0, -7.0, -7.0, -7.0, -2.269512944217916, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3984608496082234, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2380461031287955, -7.0, -2.738780558484369, -7.0, -7.0, -7.0, -7.0, -3.424432415724877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9746651808046278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.496929648073215, -7.0, -7.0, -2.6711728427150834, -7.0, -4.217075778865637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.664207898076807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.123851640967086, -7.0, -7.0, -3.2799709653992704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.510410948010177, -7.0, -7.0, -7.0, -7.0, -3.890979596989689, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.07291131585408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6273658565927325, -7.0, -2.741151598851785, -7.0, -7.0, -3.7735020213967823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9066043717249803, -7.0, -3.5515719736742537, -7.0, -7.0, -3.089709941701364, -7.0, -7.0, -1.8297631007235549, -7.0, -7.0, -7.0, -2.2933625547114453, -7.0, -7.0, -7.0, -7.0, -3.1179338350396413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2624510897304293, -7.0, -2.03342375548695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149277630664228, -7.0, -7.0, -2.1398790864012365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9836262871245345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.688419822002711, -7.0, -7.0, -7.0, -3.2692793897718984, -7.0, -7.0, -7.0, -4.195346058348419, -7.0, -7.0, -7.0, -2.7031838661780445, -7.0, -7.0, -2.8334658601706924, -7.0, -7.0, -7.0, -2.0569048513364727, -7.0, -2.499687082618404, -2.6384892569546374, -7.0, -7.0, -2.4871383754771865, -7.0, -1.8779469516291882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.129098832497685, -7.0, -7.0, -7.0, -7.0, -7.0, -2.346352974450639, -7.0, -3.085290578230065, -2.3873898263387296, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9749719942980692, -7.0, -7.0, -7.0, -7.0, -2.788875115775417, -7.0, -7.0, -2.606381365110605, -7.0, -7.0, -7.0, -7.0, -2.354108439147401, -2.1398790864012365, -7.0, -7.0, -7.0, -3.37984917876283, -5.432958072790875, -7.0, -2.2471546148811266, -4.0668475109739, -2.501971645918664, -7.0, -1.7242758696007892, -7.0, -2.9206450014067875, -3.117602691690084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2810333672477277, -2.65915528094063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7326510432913365, -7.0, -7.0, -7.0, -7.0, -4.801993346302042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1012141866686385, -7.0, -7.0, -7.0, -7.0, -4.624354300317013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0269416279590295, -7.0, -3.699555906491557, -3.426673888021373, -7.0, -7.0, -7.0, -7.0, -3.0769315745556556, -2.707002099520009, -4.066475013754132, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8752156517622924, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3094811192361036, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6472851450253665, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8531199842175665, -7.0, -2.526339277389844, -4.604042357370141, -4.562364249463112, -7.0, -4.632416796638804, -7.0, -7.0, -3.5917322389518356, -4.00770511436478, -7.0, -2.357934847000454, -7.0, -7.0, -7.0, -3.2868156134365862, -1.413299764081252, -1.716003343634799, -7.0, -7.0, -3.6850696293911485, -7.0, -2.059437187851868, -7.0, -3.171653333949059, -7.0, -3.2844307338445193, -1.6948631701213757, -2.8549130223078554, -7.0, -3.73814608871206, -3.1934029030624176, -3.419955748489758, -7.0, -7.0, -7.0, -7.0, -3.0034605321095067, -1.7371926427047373, -1.7363965022766423, -7.0, -7.0, -7.0, -7.0, -4.166755638665237, -3.685781534669542, -4.138705220999562, -7.0, -7.0, -1.649334858712142, -7.0, -1.6232492903979006, -7.0, -1.6253124509616739, -2.2519856560522644, -7.0, -7.0, -3.5871494982543437, -1.8948696567452525, -7.0, -2.833784374656479, -7.0, -1.7323937598229684, -7.0, -1.5422917863244727, -2.6976651626476746, -7.0, -7.0, -2.031408464251624, -1.7993405494535817, -7.0, -3.3240765797394864, -7.0, -7.0, -7.0, -2.0746336182969043, -3.182750434591266, -2.1156105116742996, -7.0, -7.0, -7.0, -7.0, -2.367355921026019, -3.7031193462360776, -7.0, -2.5211380837040362, -1.3138672203691535, -7.0, -7.0, -7.0, -2.0651381686641566, -1.8382192219076259, -7.0, -2.480260644346063, -7.0, -3.4216039268698313, -2.623766000133931, -3.021106568432122, -7.0, -7.0, -7.0, -7.0, -7.0, -4.267805101513972, -7.0, -7.0, -7.0, -3.7090578513345434, -7.0, -3.9532763366673045, -3.802705327074352, -7.0, -1.738384123512156, -7.0, -1.3380135619171512, -7.0, -1.8692317197309762, -1.7688846493563668, -7.0, -7.0, -1.8827142276202256, -7.0, -2.824900281288046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2000292665537704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5211380837040362, -7.0, -3.180412632838324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.674286904925071, -7.0, -7.0, -7.0, -7.0, -2.6344772701607315, -7.0, -7.0, -2.315970345456918, -7.0, -3.5429498488141786, -7.0, -7.0, -7.0, -3.593618308129536, -3.5837653682849995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9131689938402077, -7.0, -7.0, -7.0, -3.5859680500071183, -2.3791681219185326, -2.442703689915969, -7.0, -7.0, -7.0, -3.582404298019028, -2.6831596518740986, -3.5754765086019, -7.0, -2.2586372827240764, -2.475472322889589, -7.0, -7.0, -7.0, -2.8211858826088454, -2.9922220374838435, -7.0, -3.9014583213961123, -3.1183749671059116, -7.0, -7.0, -3.123960473064361, -3.617105230502378, -3.2806921642851177, -2.999130541287371, -7.0, -7.0, -2.9838517189914717, -3.362276794197056, -7.0, -7.0, -2.566276751530018, -3.584331224367531, -7.0, -7.0, -3.5881596163830918, -7.0, -2.6343652953033616, -2.5278016945768633, -2.134753718901899, -2.987219229908005, -3.1166077439882485, -3.209783014848515, -7.0, -3.286231854028553, -3.287689783936075, -7.0, -3.1514720011315966, -3.678518379040114, -7.0, -7.0, -7.0, -3.04196933677907, -7.0, -7.0, -7.0, -7.0, -3.7535830588929064, -2.9309490311675233, -7.0, -7.0, -3.074084689028244, -3.5848963441374497, -2.7551122663950713, -7.0, -3.588047496986083, -7.0, -7.0, -2.682483531630788, -7.0, -7.0, -7.0, -3.1701638903057043, -3.6022770843001926, -2.6649552063536226, -7.0, -2.464561079412046, -3.3197304943302246, -3.589502796263764, -7.0, -7.0, -7.0, -3.286568734057264, -7.0, -3.5857990090130007, -7.0, -3.7628285531890904, -7.0, -7.0, -7.0, -1.9367598714069336, -7.0, -3.2835273648616936, -3.5993371329924893, -2.8079857748471495, -2.0631405624169377, -3.5873741720730656, -2.9817053769570374, -2.665059566436283, -7.0, -2.3706056009381484, -2.8945375849957466, -7.0, -3.5893910231369333, -3.6191977157929474, -3.666049738480516, -7.0, -2.886553389407769, -2.50745106090197, -7.0, -7.0, -7.0, -3.091988565813422, -3.590618948206578, -2.8169984054036665, -3.3769417571467586, -7.0, -7.0, -2.6398183918310933, -2.1675361229048957, -7.0, -7.0, -2.9309490311675233, -7.0, -7.0, -7.0, -7.0, -7.0, -2.64407561871382, -2.890909813992527, -2.895767744755542, -3.3394514413064407, -7.0, -7.0, -7.0, -7.0, -3.022943609686901, -3.3135860326080175, -3.1878026387184195, -7.0, -7.0, -3.58849580100721, -2.8892456608929797, -7.0, -3.5825178836040625, -7.0, -7.0, -7.0, -7.0, -3.1772478362556233, -7.0, -7.0, -7.0, -2.929521100631104, -3.296445794206396, -7.0, -2.4172535172774223, -3.5859117103194342, -7.0, -7.0, -3.1127166884277973, -7.0, -3.5911759503117913, -7.0, -2.3421758524655174, -7.0, -3.557426992378806, -7.0, -7.0, -1.9275041833607214, -7.0, -3.6265456590271294, -2.058910834034071, -3.0278590441755795, -3.0398105541483504, -7.0, -2.833890494261626, -3.601299310194338, -3.313128713845194, -3.5975855017522043, -3.1157214284114376, -3.7007037171450192, -7.0, -7.0, -7.0, -3.774407465921632, -7.0, -2.4792494083469703, -3.5814945422908995, -2.6462076122066853, -2.890197386210029, -3.1127166884277973, -2.802317533567358, -7.0, -3.608739919068788, -7.0, -7.0, -3.104145550554008, -3.452016565962548, -3.1280760126687155, -7.0, -7.0, -2.9812521606551154, -3.279210512601395, -7.0, -7.0, -7.0, -7.0, -2.7873592521704675, -2.948706308904852, -2.9926166282706546, -3.5370541354192144, -7.0, -3.28454352295875, -3.1074361058060123, -2.727642905825253, -7.0, -7.0, -3.6074550232146683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.422917980767662, -7.0, -7.0, -7.0, -3.5864747785713966, -2.686747956155516, -3.1152775913959014, -7.0, -3.3026555539507187, -3.6724673130680823, -3.1108140939166935, -3.0041063232796583, -2.2036107453704106, -7.0, -3.5822906827189938, -7.0, -2.790128717892536, -2.5826830459874577, -1.7695355678275353, -7.0, -3.7666606613741327, -7.0, -7.0, -3.286231854028553, -2.0498448336824775, -2.748866082541131, -3.1855421548543754, -2.3592316365035417, -3.3984608496082234, -7.0, -7.0, -3.5822906827189938, -2.994537104298498, -2.5563025007672873, -2.5358213684769635, -3.5801263254115825, -7.0, -3.3024391640698574, -7.0, -2.630653834698125, -3.5997739391463885, -2.4115074706655637, -2.0683959195407784, -3.0461047872460387, -7.0, -3.598243191653623, -3.196718862042681, -3.5997739391463885, -3.5833121519830775, -3.2703060911529134, -7.0, -3.282848602834645, -2.662547976890391, -3.29014595464781, -2.2250417766469384, -1.8476577398519354, -3.6816029987308685, -3.3083509485867255, -3.0587106521997347, -7.0, -2.741570864062097, -2.4091814234778517, -7.0, -7.0, -7.0, -3.6832272060414346, -2.3533998825578037, -7.0, -3.5893910231369333, -3.614053105987219, -3.582404298019028, -7.0, -7.0, -3.1265642948950374, -7.0, -3.2837533833325265, -3.31921019418185, -7.0, -3.4978277360835044, -2.8816699076720615, -3.599796084276918, -7.0, -2.598060599899029, -3.265087487396905, -2.5876174376185492, -7.0, -2.9235548580675492, -7.0, -2.7527205075033088, -3.500373714353374, -7.0, -2.628502456251952, -3.103917694052505, -7.0, -1.7427774843253034, -3.286456469746983, -7.0, -3.2884728005997825, -3.074907822966796, -2.9882244123901995, -1.3442422978540296, -7.0, -3.279210512601395, -2.8336589271377535, -3.9964897817596627, -4.045009860905824, -7.0, -3.8813275841005512, -3.4541585899443437, -2.6113692154627337, -3.9794724955247456, -1.73331505003569, -7.0, -2.81424759573192, -4.0127528874912155, -3.911370707116138, -3.872337595748262, -2.287183736966603, -7.0, -3.334082400566609, -2.4787918806639824, -4.130719636562953, -3.94657997990354, -7.0, -4.812749630172364, -7.0, -2.4607150375092623, -3.8875891715438677, -7.0, -3.961961845481778, -3.657356393229636, -7.0, -2.249465632986819, -3.35293250260102, -4.143295907124072, -3.84210976344061, -3.7936274355090864, -3.6917443685913742, -4.320000804264728, -4.1722233414277525, -3.1127055210308923, -4.448783589628957, -2.7822678165784755, -7.0, -3.332619156864805, -2.560237810473034, -2.876506504265881, -2.9353056902899253, -3.871426978736606, -3.66133934000604, -2.828806829568114, -2.943809173206347, -3.241878383159056, -3.885361220031512, -2.659315585270557, -2.9369658971078705, -7.0, -2.775003297785982, -7.0, -3.1259148015308593, -3.5259513412480126, -3.8004650410651006, -7.0, -7.0, -2.71803642078278, -2.7797724115753364, -4.705783913315986, -7.0, -3.7426465899387362, -7.0, -3.3257110890434034, -7.0, -4.658698088707615, -2.8022604758937684, -7.0, -3.593618308129536, -3.21160104414524, -7.0, -3.653463367014262, -3.710878617685173, -2.411293781383653, -3.0712067312776554, -2.431875257677071, -2.952861603722939, -3.6068111469189637, -2.023585287134652, -3.188863610434584, -7.0, -3.4920709290390546, -7.0, -3.2650537885040145, -3.102890857809762, -3.841515888422295, -7.0, -3.595055089759304, -7.0, -3.6259294927162946, -3.2850507117969214, -1.620945335488336, -2.483861490097456, -1.2642147757264757, -2.616160312847583, -2.148632029792198, -1.9041212102514586, -1.8164307001177258, -2.1877375969867394, -7.0, -1.7688102344864032, -2.9149774724443307, -2.361101134642786, -1.6747722764708364, -2.1933234056282025, -3.748885440009517, -2.61842847289748, -2.6786838876099157, -2.2170681524330766, -2.8281072417647883, -2.488752105088288, -1.8818879143670435, -3.657915936829955, -2.557414651136655, -1.8114493237739548, -2.5253687865236367, -7.0, -2.0085150076314546, -3.617000341120899, -2.9855387383932825, -3.0134955460104056, -2.0111118516402637, -2.372770423675649, -3.2847690133490195, -3.2962994685709477, -1.8372459346831354, -3.3969835082752007, -2.064898226955344, -7.0, -2.6380453065128058, -1.5138831856110926, -3.6058435390580894, -2.1627085775045116, -3.1005428500124648, -2.740926342372719, -1.9832981771972058, -2.737987326333431, -1.4338119269204794, -3.2805783703680764, -3.182414652434554, -1.9986616492277378, -0.5055996361497943, -3.0371665710609026, -3.6137361412618714, -2.1566837328270956, -2.516755660221549, -3.5640739789771465, -1.1892827655559177, -3.649918718735419, -3.640878778701618, -2.7399413511328885, -2.443106456737266, -1.4909375199577073, -2.101830359876606, -2.1795517911651876, -2.3326510367587643, -3.6307328928171967, -7.0, -3.595606434865603, -2.5783900307301257, -3.043165720207454, -2.90655051910145, -1.8670923337204246, -2.2960148052925016, -3.2809196627093367, -2.0651381686641566, -7.0, -1.585719376697316, -2.732393759822968, -1.6458621545015149, -2.6587743208443566, -2.2177609177449162, -2.2734835536034756, -1.6647329368051549, -1.9417382210894931, -2.686555024386572, -2.3536904865774635, -3.2826221128780624, -3.282848602834645, -2.469075467784182, -2.6379183801298756, -2.481552869518737, -2.302074262932074, -1.629650292979936, -2.052452336614949, -1.9476437458204918, -2.535121426893738, -2.277726126702004, -2.551117162742455, -7.0, -2.414081572540633, -7.0, -2.0202337552699294, -1.6318967027420204, -3.3354579006893843, -3.285782273779395, -2.4164185888449987, -3.2801228963023075, -1.7289115124464807, -2.987554549303304, -7.0, -3.594503043820089, -2.694056500841752, -3.326745379565322, -3.2997251539756367, -2.911902996044033, -1.403591185940338, -3.0599418880619544, -2.521942332974436, -2.690970914278475, -2.504276634189794, -2.677264674114648, -3.5817221599490985, -7.0, -3.610553705317095, -2.5248286863646054, -7.0, -2.4992110854524285, -2.8811943853625333, -3.8131805325860118, -3.2969940766702086, -7.0, -2.509948861201675, -2.6834973176798114, -7.0, -2.6804126698850133, -7.0, -7.0, -2.664556509752071, -2.908753019184534, -3.660106221723244, -3.581380688709987, -7.0, -2.9155053617543767, -3.2806921642851177, -2.7095727951571993, -3.5828584622244994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.787460474518415, -7.0, -7.0, -7.0, -4.362218500326052, -7.0, -7.0, -7.0, -7.0, -2.7745169657285493, -2.8543060418010806, -7.0, -7.0, -7.0, -7.0, -3.925621454790829, -2.9373172477624943, -7.0, -3.1436392352745433, -3.3118225640429104, -7.0, -7.0, -7.0, -2.8998205024270964, -2.8715729355458786, -7.0, -4.263221693667648, -2.5746099413401873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7434117630396684, -7.0, -7.0, -7.0, -7.0, -2.367355921026019, -2.846337112129805, -7.0, -7.0, -2.367355921026019, -2.975891136401793, -3.042732979621721, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8388490907372557, -2.8709888137605755, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5700757053216043, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5554975061310574, -7.0, -7.0, -3.753302119172978, -7.0, -2.905256048748451, -7.0, -2.833784374656479, -7.0, -7.0, -2.82865989653532, -7.0, -7.0, -7.0, -3.097604328874411, -7.0, -7.0, -7.0, -3.5246557123577773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7554937284151193, -7.0, -7.0, -2.8943160626844384, -2.829303772831025, -3.0644579892269186, -7.0, -2.510545010206612, -7.0, -7.0, -2.6958099000719393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1136760118971, -7.0, -7.0, -7.0, -3.308501175617602, -7.0, -7.0, -7.0, -7.0, -7.0, -2.876217840591642, -2.31492005599242, -7.0, -7.0, -3.9837164739137494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.182414652434554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0136796972911926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5181848042184027, -7.0, -2.973589623427257, -7.0, -3.028571252692538, -7.0, -7.0, -3.163274222705834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0373695748811147, -7.0, -7.0, -2.992847954780297, -7.0, -7.0, -3.000867721531227, -7.0, -7.0, -3.1763806922432702, -2.6580113966571126, -2.9041743682841634, -2.663700925389648, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1832698436828046, -7.0, -7.0, -2.060869464336048, -7.0, -2.0117818305481068, -2.3654879848909, -2.5440680443502757, -2.091315159697223, -2.814913181275074, -2.9400181550076634, -2.806179973983887, -7.0, -2.7965743332104296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7972675408307164, -2.857935264719429, -7.0, -7.0, -3.0457140589408676, -7.0, -7.0, -4.196575310462342, -7.0, -2.8208579894397, -7.0, -3.0398105541483504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3070251187186726, -7.0, -7.0, -7.0, -7.0, -2.852479993636856, -2.5581083016305497, -7.0, -2.916980047320382, -2.878234468675044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8979934299725625, -7.0, -2.879996481067212, -7.0, -3.725217185813792, -7.0, -7.0, -7.0, -2.4811558708280352, -7.0, -7.0, -2.7965743332104296, -3.2593549273080344, -7.0, -7.0, -7.0, -7.0, -3.0610753236297916, -2.9786369483844743, -7.0, -7.0, -7.0, -7.0, -2.121887985103681, -7.0, -2.8488047010518036, -2.7141900028713306, -2.7996850909091004, -2.6757783416740852, -2.586587304671755, -4.009663316679379, -7.0, -7.0, -2.7864674767402824, -7.0, -7.0, -2.0221074695639487, -2.852479993636856, -2.9375178920173464, -2.3005954838899636, -3.2076343673889616, -7.0, -2.665893545534433, -7.0, -7.0, -3.1646502159342966, -7.0, -7.0, -2.8000293592441343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9180303367848803, -7.0, -7.0, -7.0, -7.0, -7.0, -3.464638559095033, -4.530673448440382, -7.0, -3.2005769267548483, -3.7721138020629263, -2.690196080028514, -7.0, -3.0043213737826426, -7.0, -2.82865989653532, -3.019393263978083, -7.0, -2.511214701136388, -2.795184589682424, -7.0, -7.0, -7.0, -7.0, -2.8432327780980096, -3.1953460583484197, -2.850033257689769, -2.1637261681116198, -7.0, -7.0, -3.9235548580675492, -7.0, -7.0, -7.0, -7.0, -3.398287305357401, -3.7348798027926278, -7.0, -3.782416880556456, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4466579602153113, -7.0, -7.0, -3.8779661253552415, -7.0, -4.135937920969854, -7.0, -7.0, -7.0, -4.486996888431823, -7.0, -7.0, -7.0, -7.0, -7.0, -4.230831953431828, -7.0, -4.585911710319434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5344491888776157, -7.0, -7.0, -7.0, -7.0, -4.548413988554237, -2.7318572625565913, -2.1598678470925665, -3.483052121938875, -4.153052275067108, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.197611323169714, -7.0, -7.0, -3.516950677700458, -4.680793140101235, -7.0, -2.5780658838360915, -3.3688445068258215, -7.0, -3.501806856884548, -7.0, -7.0, -3.3463529744506384, -7.0, -7.0, -3.217659381292399, -7.0, -4.286231854028553, -7.0, -7.0, -7.0, -3.022781743444123, -7.0, -7.0, -4.308543071784684, -3.5268442505473905, -7.0, -3.2391993420543015, -7.0, -7.0, -7.0, -3.7281101841003403, -7.0, -2.8721562727482928, -7.0, -3.0149403497929366, -7.0, -2.8614917388391654, -2.048108713045591, -1.4762517960070336, -7.0, -2.5426698494966873, -2.305609289566193, -2.484584529282843, -1.6164755138885656, -7.0, -2.359564471733962, -2.665580991017953, -2.681373376172547, -1.8531856942575955, -2.0039628970954273, -7.0, -3.174859011514084, -2.2338418642756133, -2.6511395051524786, -3.1855421548543754, -7.0, -2.5359267413955693, -3.132899769944483, -2.579497782534824, -1.5030242056865204, -2.1481911962420113, -7.0, -2.3918472991671624, -7.0, -2.5327543789924976, -4.174336062614943, -3.2646309260257307, -3.5985403911521976, -7.0, -7.0, -1.696678207556434, -2.9537596917332287, -1.6418044981061142, -7.0, -2.866877814337499, -1.7273933617497892, -2.926342446625655, -2.3324384599156054, -3.6416723732246865, -2.0453229787866576, -3.1339378927638313, -7.0, -2.413113411586694, -7.0, -7.0, -1.924853370060748, -2.1335389083702174, -3.738423783297755, -2.9628426812012423, -1.9542425094393248, -1.8790958795000727, -7.0, -2.989704014034442, -7.0, -2.5943925503754266, -7.0, -1.7817553746524688, -2.3321487612593845, -2.5403294747908736, -2.7674527180977733, -2.2667019668840878, -7.0, -7.0, -7.0, -2.8412812403399172, -2.6124306281667917, -2.32376758329678, -1.7676196082318536, -2.864313269858478, -7.0, -1.8382192219076259, -1.585719376697316, -7.0, -3.0580462303952816, -1.2627899851685418, -2.182160938694665, -2.7197454925295768, -2.655138434811382, -2.091896237573858, -3.099507993727965, -2.4313637641589874, -2.5306265232810774, -2.5071809772602407, -2.8109042806687006, -4.279758172802473, -3.163608563431052, -2.586024382386976, -7.0, -2.8896336526352338, -2.33520708088345, -2.8002128574963217, -3.1448409732702785, -2.6762714179371425, -7.0, -7.0, -1.4945340562373441, -7.0, -2.204572137284902, -0.8369292509368298, -7.0, -7.0, -2.3956175727530065, -7.0, -2.2562064396964416, -7.0, -7.0, -7.0, -2.187520720836463, -2.54448146130858, -2.9025467793139916, -2.1028255798174698, -2.996949248495381, -2.929929560084588, -2.1549562434033382, -2.5728716022004803, -2.5118833609788744, -7.0, -7.0, -7.0, -2.4693310102934105, -2.928907690243953, -2.9542425094393248, -2.8003733548913496, -3.263517716091967, -7.0, -7.0, -7.0, -7.0, -2.532117116248804, -7.0, -3.3336039908101927, -7.0, -7.0, -2.374748346010104, -7.0, -3.140193678578631, -7.0, -7.0, -2.4908944592739792, -7.0, -3.3016809492935764, -2.803457115648414, -7.0, -7.0, -7.0, -2.7505083948513462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6714505542124947, -7.0, -2.9804578922761, -7.0, -7.0, -7.0, -3.1427543537803806, -3.327665387050042, -7.0, -3.117602691690084, -3.7336958383326047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0184389399350797, -2.525044807036845, -2.749736315569061, -2.8195439355418688, -2.859138297294531, -2.3339508043872472, -2.4353665066126613, -7.0, -7.0, -7.0, -7.0, -4.0429297333431595, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3131639093135794, -7.0, -7.0, -7.0, -2.4104156728052764, -3.4347285417797577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.743078391782139, -7.0, -7.0, -7.0, -7.0, -7.0, -2.698535492562001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7730546933642626, -7.0, -7.0, -7.0, -3.068556895072363, -7.0, -7.0, -7.0, -4.222781480425739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7745169657285493, -7.0, -2.957128197676813, -7.0, -3.773640193260026, -2.8182258936139557, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5652573434202135, -3.8098626051382367, -7.0, -2.949877704036875, -7.0, -4.739635625010004, -7.0, -7.0, -7.0, -7.0, -7.0, -2.826722520168992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.710625015060797, -3.1707016558160697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.978180516937414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9344984512435675, -7.0, -2.9943171526696366, -7.0, -7.0, -3.6172665493319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3119656603683665, -7.0, -3.4011706945301334, -7.0, -7.0, -3.35162147940743, -7.0, -7.0, -7.0, -2.9995654882259823, -3.0484418035504044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3965480379871322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8976270912904414, -7.0, -7.0, -7.0, -3.378942698613437, -2.8813846567705728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.592916611888093, -7.0, -7.0, -7.0, -2.284054558436069, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6586183771638874, -7.0, -7.0, -7.0, -7.0, -7.0, -2.808885867359812, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.36078268987328, -7.0, -3.7194141597025934, -7.0, -3.8033205235787544, -7.0, -7.0, -7.0, -7.0, -7.0, -3.124178055474675, -2.7774268223893115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8709888137605755, -7.0, -7.0, -7.0, -7.0, -3.1809855807867304, -7.0, -2.9390197764486667, -7.0, -4.008802369664495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.185258765296585, -2.422699247707434, -7.0, -7.0, -5.099331822664403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9242792860618816, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2874866082211796, -7.0, -7.0, -4.248341156669196, -3.1439511164239637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.172310968521954, -7.0, -2.8323492162595376, -7.0, -7.0, -4.01964584828431, -7.0, -7.0, -7.0, -7.0, -3.383994789441733, -3.7283537820212285, -7.0, -4.258988279348813, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3202155460556875, -7.0, -7.0, -4.178276526334763, -7.0, -7.0, -7.0, -7.0, -7.0, -4.787467559199322, -4.085254891103877, -7.0, -7.0, -7.0, -7.0, -3.8040882957516735, -3.930108140365738, -7.0, -3.944137073158098, -7.0, -7.0, -7.0, -7.0, -7.0, -4.395029188533373, -7.0, -2.5722906061514177, -4.575545759343288, -3.7089093129228483, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3296690168644045, -7.0, -7.0, -3.8494808372439864, -3.7319914490189294, -7.0, -7.0, -7.0, -7.0, -7.0, -4.195373754817413, -7.0, -7.0, -4.360744841210403, -4.504325846909658, -7.0, -7.0, -7.0, -7.0, -4.314099063295284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983333050649128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9096736792967133, -7.0, -7.0, -4.159647387949369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.159653115576744, -7.0, -2.576341350205793, -7.0, -2.588191645180769, -4.005309236848516, -3.1622656142980214, -1.9311187105921872, -7.0, -3.026056354698398, -2.927883410330707, -3.6315452278343097, -2.6388219222193925, -2.5828206333422923, -2.4114326310165928, -7.0, -2.998912904358786, -7.0, -7.0, -7.0, -2.9250541203118425, -7.0, -7.0, -7.0, -2.888179493918325, -7.0, -3.5515719736742537, -7.0, -7.0, -3.6959192528313998, -3.9454488887903163, -4.74423820378745, -7.0, -1.9106577493156374, -2.4751867549424627, -7.0, -2.568201724066995, -7.0, -2.5138831856110926, -2.4690852991231202, -7.0, -2.6989700043360187, -2.854407264149028, -2.7745169657285493, -3.4287825114969546, -7.0, -2.397746945996307, -7.0, -1.2858154554403158, -2.5378190950732744, -3.156851901070011, -4.338994048444886, -7.0, -7.0, -2.5390760987927767, -7.0, -3.5292378052696605, -7.0, -7.0, -7.0, -7.0, -2.3678451975502317, -7.0, -7.0, -2.1466447454142683, -7.0, -7.0, -2.1212314551496214, -3.4379090355394983, -3.061452479087193, -7.0, -2.4683473304121573, -3.325925955771466, -7.0, -7.0, -2.732393759822968, -3.0580462303952816, -7.0, -2.7471786713601642, -2.333783025949038, -2.485437481076301, -2.502768412325693, -2.8511818816915158, -3.2175716716118217, -3.3207692283386865, -2.8153563389481215, -1.8372727025023003, -2.7528164311882715, -7.0, -7.0, -2.840106094456758, -7.0, -3.71821095473187, -3.2211533219547053, -3.9738664498353784, -3.5113708138745223, -3.3087777736647213, -2.82020145948564, -2.7777891874348675, -7.0, -7.0, -1.5859731714345076, -2.8270460170047342, -3.508798965403905, -1.575187844927661, -7.0, -2.4313637641589874, -2.6154991488833446, -1.4884022651293516, -2.978180516937414, -7.0, -2.8432327780980096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1212314551496214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.918641834698101, -7.0, -7.0, -2.8407332346118066, -2.733999286538387, -7.0, -2.7795964912578244, -7.0, -3.5080131962698764, -7.0, -7.0, -3.262213705476417, -7.0, -7.0, -7.0, -7.0, -2.9304395947667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7080808104682315, -7.0, -7.0, -7.0, -3.404234866653423, -3.7061201097027037, -7.0, -7.0, -3.3606450425580268, -7.0, -7.0, -7.0, -3.953373050726696, -2.548153093111087, -2.9350872111620183, -7.0, -7.0, -7.0, -7.0, -2.6167972574221303, -2.86411536851903, -7.0, -3.466274321789292, -2.990544591752271, -7.0, -7.0, -7.0, -3.7206553565517244, -3.239049093140191, -7.0, -3.768923379908386, -3.7172543127625497, -7.0, -7.0, -7.0, -7.0, -3.7067177823367587, -7.0, -7.0, -7.0, -3.7102020146553847, -3.5799631549550854, -7.0, -7.0, -7.0, -7.0, -2.4312790981129244, -7.0, -7.0, -7.0, -7.0, -2.9572651342952905, -2.9571717731027167, -7.0, -3.7159198174335795, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7424894645817752, -7.0, -7.0, -7.0, -7.0, -2.9372949482332396, -7.0, -7.0, -7.0, -7.0, -7.0, -3.442636525782232, -7.0, -7.0, -3.428357555885853, -3.4077307280263356, -7.0, -7.0, -7.0, -7.0, -7.0, -3.710625015060797, -7.0, -3.740678425227455, -3.723701893991268, -3.756940236046724, -7.0, -3.736237098904729, -7.0, -3.1984738016670837, -3.435127379609151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4472355770047596, -7.0, -7.0, -3.7198282862543346, -7.0, -3.272460480145897, -3.233334609615762, -3.106020819140269, -7.0, -7.0, -2.3924038081375647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9147661369258526, -3.6396856612426816, -7.0, -3.2576785748691846, -7.0, -3.2173450062486335, -7.0, -3.166578109919652, -3.4796472787693866, -7.0, -7.0, -2.938186037505905, -2.8195439355418688, -7.0, -7.0, -3.3035662999679793, -7.0, -7.0, -7.0, -7.0, -7.0, -3.082111871372628, -2.618280588410313, -7.0, -3.7515100502700416, -7.0, -7.0, -7.0, -3.4072208929273966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.748265572668741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.681618065583093, -3.7389390312034796, -3.732634967539196, -7.0, -3.26528962586083, -3.7185847200274362, -7.0, -2.5413699526015563, -3.40849436021236, -7.0, -7.0, -3.712986233594383, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8028457117801073, -7.0, -7.0, -2.6439585524687246, -7.0, -3.7405995128111567, -3.4363217001397333, -7.0, -3.752893154884594, -3.7754648093457392, -3.1277525158329733, -2.8752266774031847, -3.128722284338427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8045915935946966, -7.0, -2.1071328508548213, -2.933824603968112, -2.7114697818743276, -3.006808208492579, -3.407645797062556, -3.124422705456867, -3.7077404542737713, -7.0, -7.0, -3.5399538416563967, -3.7246035153967165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.757547853469244, -3.4346221231362692, -3.357791963471643, -7.0, -3.107040290223204, -7.0, -3.4437322414015967, -7.0, -7.0, -3.7259932589247224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4205333226934997, -2.1631191920347383, -7.0, -7.0, -7.0, -7.0, -3.0141843975012796, -3.4137187650610787, -7.0, -7.0, -3.2989258164621176, -7.0, -7.0, -3.5081929260254405, -7.0, -7.0, -7.0, -2.8796692056320534, -3.7402837196818792, -2.6268311208610227, -3.731024379815688, -2.991333857417245, -7.0, -7.0, -7.0, -2.252075943799801, -7.0, -7.0, -3.3249680031620703, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2717641852898542, -3.7335182514344876, -7.0, -7.0, -3.7231271587956916, -7.0, -2.806010294559223, -7.0, -7.0, -2.975718945367262, -2.4762823328149426, -3.130816050034744, -2.8729051282527607, -2.983770193312903, -7.0, -7.0, -2.76847365804917, -7.0, -7.0, -3.034788831251184, -7.0, -3.0925803006913113, -3.13537120918662, -3.7835462822703496, -3.426429925193928, -2.7662640906519957, -3.721150843749684, -3.772188303409967, -3.7725417326409434, -7.0, -7.0, -7.0, -7.0, -3.446537167073644, -7.0, -3.4111144185509046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7141620460988536, -3.2963830892565467, -3.8678797834583794, -3.4720924168132257, -7.0, -3.4805099729419604, -3.3709917589490144, -3.1709947020363, -7.0, -3.4369573306694496, -7.0, -3.764325605625984, -3.102262149494273, -7.0, -7.0, -3.4051755462179893, -7.0, -7.0, -3.4098486220211917, -7.0, -3.4113671357427338, -7.0, -2.9344984512435675, -2.4784462423792015, -7.0, -7.0, -3.0322625896790933, -3.938705525724461, -7.0, -7.0, -4.200179941968094, -3.064083435963596, -3.5180311221717915, -7.0, -2.7399861623675457, -7.0, -3.3492775274679554, -4.327021586507191, -4.399699674559056, -4.135812990145166, -2.3679620131222126, -7.0, -4.467622902417825, -2.615739688619155, -7.0, -3.958888646524424, -7.0, -4.163717806163838, -4.090469680231161, -3.3557486858509193, -3.9219464542294102, -7.0, -4.672891798284876, -4.2185748892664225, -7.0, -2.9440672930585112, -3.5555377913202615, -4.0313680628857735, -3.867801281134174, -3.600319329751661, -3.4433412316678793, -4.044578954876613, -4.207849711130526, -3.7360297870141546, -4.166933094871154, -7.0, -7.0, -3.394266221387696, -2.7338250600018092, -3.4114934392137135, -3.7471786713601642, -3.6058973516449746, -7.0, -3.754806855354423, -2.3546685610810214, -2.347498248703483, -2.772400300205005, -3.572383617766466, -3.6961815871685237, -3.096005739715113, -7.0, -7.0, -2.8768773615716965, -7.0, -3.1591803321859055, -3.5512059437479064, -3.74787770581979, -2.7943771299220317, -3.032302413919488, -4.283394524137035, -3.4165573011914794, -3.2300655512060468, -3.419707981354444, -2.3099848383169075, -7.0, -4.488611814240041, -2.6926511147284202, -3.5130577076386054, -7.0, -1.8619040595057519, -3.6988252153758836, -2.928286094162898, -7.0, -3.3672161041609696, -7.0, -2.2541785637644396, -3.5775492423982382, -7.0, -3.110050716147654, -2.257107413023032, -7.0, -2.75432102760387, -7.0, -3.229937685907934, -3.6475296664449806, -3.2771506139637965, -7.0, -7.0, -7.0, -3.7401257369657306, -4.222898472609422, -2.2216390395875636, -2.941677035870691, -1.7048962149658333, -3.2566375808675403, -2.60404595999381, -1.8488899607206744, -2.599737555408931, -2.037509497364078, -3.4122925093230463, -1.9386661412531396, -2.4499247658980847, -1.974449907837994, -1.8200792048011627, -2.245589772915445, -3.138113146487167, -2.554426495768532, -1.9425855949537412, -2.6754919244099264, -3.7777891874348675, -3.1465156256030298, -2.2120210485124043, -2.722035308404712, -2.3107299261343788, -1.900608068735828, -2.7700333601614644, -3.710625015060797, -1.9788269866677775, -3.130735706961367, -3.0118240955943087, -3.45637868721281, -2.389094093401577, -2.7354392032514814, -3.709778601848225, -2.9540011676815703, -2.2257130137265877, -2.5154555153936675, -2.3576863236850003, -7.0, -2.936848717028399, -1.829422904495989, -3.2473184686774124, -2.3249943487886915, -2.831525232824983, -2.709269960975831, -2.5625571946422996, -3.2754649240207465, -2.204507572580716, -3.7066324508732946, -2.987591791037401, -2.393366257159277, -2.4951790465148163, -2.8070067293866274, -3.4295908022233017, -2.672601582502419, -3.0194486374936367, -3.6335189520021656, -2.482487303691886, -3.758684849882441, -2.8474955403490654, -3.2009872191631663, -2.2135580011219793, -1.3990477506093277, -2.785408934270052, -2.54448146130858, -2.4502491083193614, -3.442636525782232, -4.1233288669263475, -3.7170044070405472, -2.3957194395376415, -2.3538777790648417, -2.116690743411703, -2.3157281963110274, -2.422458514031944, -7.0, -2.480260644346063, -1.6458621545015149, -1.2627899851685418, -2.7471786713601642, -7.0, -1.7610529097676237, -2.286479500689445, -2.6842467475153122, -1.8649819744648206, -2.543884177081694, -1.8132506727622622, -2.468213019453331, -2.9291633832050645, -3.2308744917032666, -3.0086371944363277, -2.9640827641867062, -2.814663706218772, -3.1289159784538367, -2.242503468661323, -2.614826936158897, -2.073180915795838, -2.252104451820851, -2.244565729667386, -2.332270096090313, -3.281790637678311, -2.3498263322325768, -7.0, -2.5020252559029195, -0.7512351573632999, -3.4130761314903664, -3.4093412685967817, -2.9380190974762104, -7.0, -1.653641234917665, -3.013342904345347, -7.0, -7.0, -2.39378404890088, -2.357855473065863, -2.6780214745443685, -2.5508803246271956, -2.756519079282083, -2.4818163759280423, -3.0500702643674384, -2.715501945293284, -2.554640561254055, -7.0, -7.0, -7.0, -2.470312467167388, -2.8790958795000727, -2.950364854376123, -2.0523833126485127, -1.8490133618429152, -2.848189116991399, -3.7189996378787185, -3.7062909572587635, -3.2506029530166067, -3.0117395613883184, -3.4055171069763763, -2.365744844462691, -7.0, -7.0, -2.0485250362746963, -2.7427812235852933, -2.765295929698057, -7.0, -7.0, -3.430800424624181, -3.4055171069763763, -2.5274752284122086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.909556029241175, -7.0, -4.363734166777149, -7.0, -7.0, -7.0, -7.0, -2.9936125579388904, -7.0, -3.0784568180532927, -7.0, -7.0, -7.0, -3.1551841596940076, -3.652922887567942, -7.0, -7.0, -3.62588952582799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.348733103798286, -7.0, -7.0, -7.0, -7.0, -2.936513742478893, -7.0, -7.0, -7.0, -7.0, -3.0113589537066106, -3.453624073591451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.094471128641645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0595634179012676, -3.1162755875805446, -3.623701445026877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.119024820114783, -7.0, -3.0542299098633974, -7.0, -4.74154551677621, -7.0, -3.197280558125619, -7.0, -7.0, -7.0, -2.658488381309017, -7.0, -7.0, -7.0, -3.513617073787875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5060989599284405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2648178230095364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6917965522497167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4148619761323045, -7.0, -7.0, -4.074313493881491, -7.0, -7.0, -7.0, -7.0, -3.1335389083702174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.589790080853059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4207806195485655, -3.0013009330204183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8027737252919755, -7.0, -3.285782273779395, -3.4267659138622935, -7.0, -7.0, -2.9116901587538613, -3.0993352776859577, -7.0, -7.0, -3.0086001717619175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3371830263196416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9222062774390163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.90355117991359, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0088130090520893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0457140589408676, -7.0, -3.83523596228257, -7.0, -7.0, -2.397731497273984, -2.90687353472207, -7.0, -2.7489628612561616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.498086455177259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9116901587538613, -7.0, -7.0, -3.9805487393597705, -7.0, -4.392618622936648, -7.0, -7.0, -3.9502187666418633, -3.2135177569963047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.472317546316842, -7.0, -7.0, -3.5448635219352487, -7.0, -7.0, -7.0, -7.0, -3.1240148788874076, -3.446381812222442, -7.0, -4.03903320084723, -7.0, -3.452935870201179, -4.58169940355087, -4.661850530901924, -4.806614051463206, -2.759015054316643, -7.0, -7.0, -3.242302466202193, -4.020444155366574, -7.0, -7.0, -7.0, -7.0, -4.010956838955719, -4.093806775615175, -7.0, -7.0, -4.459151146001476, -7.0, -3.430295763840919, -3.6351065913575105, -4.587722186953561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0981763050073265, -7.0, -2.9395192526186187, -7.0, -4.015129132443987, -7.0, -7.0, -7.0, -7.0, -4.550387361358583, -3.521987527782068, -3.3443922736851106, -4.091033516054471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.202024895104038, -3.4497868469857735, -7.0, -4.365300748637988, -3.836315071579222, -7.0, -7.0, -7.0, -7.0, -3.7724684030532805, -3.721398375521505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.289834121485031, -7.0, -7.0, -7.0, -4.174379665748987, -7.0, -7.0, -7.0, -3.5287297662461867, -7.0, -3.794009770670591, -7.0, -7.0, -3.6612446089593336, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7925317619013077, -3.060613910605181, -2.6780629049743454, -2.124604535374491, -7.0, -2.772028165324855, -3.111892321593538, -2.7510223528780795, -7.0, -7.0, -3.218601143315633, -2.432568465297358, -3.1712118328707235, -2.4099331233312946, -2.442793225939769, -3.1100844228869238, -3.788875115775417, -2.649529565947819, -2.8195439355418688, -2.625312450961674, -7.0, -2.8580557180503643, -7.0, -2.4461227639106142, -3.0941215958405612, -7.0, -2.921686475483602, -3.0884904701823963, -2.4409090820652177, -2.624797578960761, -3.5232549708237904, -3.5674772960726626, -3.4033779317228596, -7.0, -2.7635777244666455, -2.7558748556724915, -2.991004440330755, -2.992995098431342, -7.0, -7.0, -1.915899471000105, -3.002166061756508, -2.490660653356137, -3.3561215062369856, -7.0, -2.9701918541039056, -7.0, -2.316145147021726, -7.0, -2.486288760960566, -2.66838591669, -2.922984815708883, -3.1971426649725627, -3.0330214446829107, -2.951823035315912, -7.0, -3.633670406051444, -3.5445021218295945, -2.6788217632521745, -3.1283992687178066, -3.418135498425232, -1.9410525092223048, -2.238924389835243, -7.0, -2.711244671343486, -2.7367947549243605, -7.0, -7.0, -7.0, -3.0582741466859513, -2.665893545534433, -1.603865792191225, -2.5736450565133797, -2.52560005256132, -7.0, -7.0, -2.6587743208443566, -2.182160938694665, -2.333783025949038, -1.7610529097676237, -7.0, -2.5185139398778875, -2.5783526415103615, -2.730562063805724, -2.869650720710803, -2.7651094972067183, -2.865893242431105, -2.906335041805091, -2.123851640967086, -4.283414311501195, -2.788168371141168, -2.970346876230093, -3.386498965550653, -3.3708213841255614, -3.2801228963023075, -3.5075860397630105, -3.180633086894785, -2.760285373877668, -2.653694795315082, -3.159266331093494, -2.6473829701146196, -7.0, -7.0, -2.0800156257123503, -7.0, -7.0, -2.9595183769729982, -7.0, -2.116942635511364, -7.0, -3.076640443670342, -7.0, -2.670709595223797, -1.9623329030973808, -1.8930215923314397, -1.9370161074648142, -7.0, -2.8312296938670634, -2.515873843711679, -2.9595183769729982, -2.317764953307669, -7.0, -7.0, -7.0, -2.718916686014861, -7.0, -7.0, -2.762678563727436, -2.6273658565927325, -3.0632082200712114, -2.9708116108725178, -7.0, -7.0, -7.0, -7.0, -3.2121209897122247, -7.0, -7.0, -2.8382192219076257, -2.360467183515849, -7.0, -7.0, -7.0, -7.0, -7.0, -2.84083766998129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504778859928894, -7.0, -7.0, -7.0, -7.0, -3.3491479646740636, -3.1215598441875008, -2.693140460675295, -7.0, -3.0288422632984635, -7.0, -2.9730858501679815, -7.0, -7.0, -3.5217916496391233, -3.0097024355116977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.586587304671755, -3.4291060083326967, -7.0, -3.4271614029259654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0387285143512552, -7.0, -3.15060295179301, -7.0, -7.0, -2.9431646302222556, -7.0, -7.0, -7.0, -7.0, -7.0, -3.173186268412274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.776701183988411, -2.6989700043360187, -7.0, -7.0, -7.0, -3.4175381194013275, -7.0, -7.0, -7.0, -7.0, -7.0, -2.699693225955115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.416141031168329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.770986940942376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4653828514484184, -7.0, -2.325831307306037, -7.0, -7.0, -3.1180993120779945, -3.4628470358316736, -7.0, -7.0, -7.0, -3.6966766756507976, -7.0, -3.1618170401676924, -2.5984778397360007, -3.0140926774414027, -7.0, -7.0, -3.545059584694003, -2.6893088591236203, -7.0, -2.5819009187422806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2518814545525276, -3.6971421262754594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6921416093667836, -7.0, -7.0, -7.0, -7.0, -4.154667377622576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1234549503883753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6090605499300867, -7.0, -2.833784374656479, -7.0, -7.0, -3.1732657537216933, -7.0, -7.0, -7.0, -3.478999131673357, -3.194514341882467, -7.0, -2.7538893314598334, -3.4369573306694496, -3.4559102403827433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3525683861793083, -7.0, -7.0, -7.0, -3.4207806195485655, -7.0, -7.0, -2.970036776622557, -7.0, -7.0, -7.0, -2.688320927665063, -2.9655152710625696, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1225435240687545, -7.0, -7.0, -2.5269133613887105, -3.504198918539445, -7.0, -5.156758071220854, -7.0, -7.0, -3.4129642719966626, -7.0, -3.40705081480425, -7.0, -2.666205875272384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.13640344813399, -2.0054591837669906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.236033147117636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0317113547545933, -7.0, -3.1611882569822596, -7.0, -4.051898224988576, -7.0, -7.0, -7.0, -2.2400767855157726, -7.0, -2.8243862023187742, -2.802203410722948, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4891143693789193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2258259914618934, -7.0, -7.0, -7.0, -3.677434579437062, -7.0, -7.0, -7.0, -7.0, -7.0, -2.682145076373832, -7.0, -7.0, -3.4683473304121573, -7.0, -7.0, -7.0, -7.0, -4.6291002495336295, -3.530711837981657, -7.0, -7.0, -7.0, -2.851991747962157, -7.0, -7.0, -7.0, -3.1541195255158465, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4129642719966626, -7.0, -7.0, -3.3551065529544917, -7.0, -3.6963325562988216, -7.0, -7.0, -2.1714150956351084, -2.2727438360858954, -7.0, -2.563629384689655, -2.823800153749878, -3.2149762347220667, -2.168185403160118, -2.752432609261474, -7.0, -7.0, -7.0, -3.4825877695267677, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1981987286196296, -7.0, -7.0, -3.2615106830542264, -4.163332851646521, -7.0, -7.0, -7.0, -2.6910814921229687, -3.5659658174466666, -7.0, -3.575603459860452, -7.0, -4.118198568045036, -7.0, -7.0, -7.0, -2.3689252622290744, -7.0, -7.0, -2.9329992492179184, -7.0, -7.0, -7.0, -5.109561674219138, -3.9906495883188544, -3.5460008283927995, -7.0, -7.0, -7.0, -7.0, -7.0, -3.308744955855214, -3.2793246654426103, -4.607165397007267, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0917372829916605, -7.0, -7.0, -2.5435714239623657, -7.0, -2.806470698851535, -7.0, -7.0, -7.0, -7.0, -4.571534147426671, -7.0, -3.2988530764097064, -4.149342299291265, -3.6061663146076204, -3.86975959478241, -7.0, -3.886772643054438, -7.0, -7.0, -7.0, -7.0, -3.6617180576946593, -7.0, -3.1414149308891646, -3.4587266981425513, -5.17931619719864, -7.0, -2.8513602838168097, -7.0, -3.489476331740672, -7.0, -7.0, -3.5033139228158845, -7.0, -7.0, -7.0, -3.1922886125681202, -3.4242485095261084, -7.0, -7.0, -7.0, -3.444643230730063, -7.0, -3.1436392352745433, -3.629562492778617, -3.548958648077225, -7.0, -3.878291949249796, -7.0, -7.0, -7.0, -4.101368963249251, -7.0, -7.0, -7.0, -7.0, -7.0, -2.906981153228854, -2.7354392032514814, -2.264320634080703, -7.0, -2.8293956772820934, -3.0420024227314255, -3.0623312368297984, -3.1455071714096627, -1.9204263107095962, -2.8436998451606685, -2.9787889856630807, -3.0711840961949233, -2.5653229914411844, -2.1327050627088058, -7.0, -2.7835737770936886, -3.1256980877130376, -3.1032904715577496, -3.539828558377898, -3.4888326343824008, -2.6503075231319366, -3.5173278822943734, -3.538824988937904, -2.1951710924633283, -2.264660441423504, -7.0, -3.2615007731982804, -7.0, -7.0, -2.6255319440395173, -2.9146642062585957, -3.613396279293765, -7.0, -2.7659478138932125, -2.9867717342662448, -3.5720579899263045, -2.437433443797971, -7.0, -2.9485759586429285, -2.518426194755475, -7.0, -2.632601888317874, -1.2012655633156346, -2.636655029117369, -2.825721094673752, -3.495821753385906, -2.5499224041295117, -3.4082399653118496, -3.2187979981117376, -2.7320719409998664, -3.2364112877439664, -4.377324467736556, -3.45499721730946, -3.4260230156898763, -2.954885432549936, -7.0, -3.1648978606247633, -7.0, -3.1922886125681202, -3.368472838440362, -2.687380306589906, -1.6661724659825865, -2.694312646223346, -3.2098723115450163, -2.6102037316428195, -7.0, -7.0, -3.428620672671939, -2.7944880466591697, -2.383262828397118, -2.966610986681934, -2.984677302805447, -2.1958996524092336, -7.0, -3.4216039268698313, -2.2177609177449162, -2.7197454925295768, -2.485437481076301, -2.286479500689445, -2.5185139398778875, -7.0, -1.7311652031850036, -2.6296926930974265, -2.9392071473361217, -3.3122831657914786, -2.420615770625765, -7.0, -7.0, -7.0, -3.6857417386022635, -2.9545640899663494, -3.32273600446995, -3.245930058025906, -2.719094420611941, -3.154423973114647, -2.8541642908673475, -1.7454291911381372, -2.824288582459545, -7.0, -2.9474337218870508, -7.0, -2.8600383898071935, -2.746763897156223, -3.418218402783965, -7.0, -3.1272668183188985, -7.0, -2.240017871143136, -3.4207806195485655, -7.0, -7.0, -3.4331295175804857, -2.997677564080969, -2.9587231112647787, -3.4520932490177314, -3.390405156480081, -3.1747380145272865, -1.260289681270346, -3.1272668183188985, -3.209112703738592, -7.0, -7.0, -7.0, -2.972665592266111, -3.143014800254095, -7.0, -2.410433534715368, -3.4473131088235682, -3.4186326873540653, -7.0, -7.0, -3.361538971269279, -7.0, -7.0, -2.851115599375254, -3.109240968588203, -7.0, -3.1070968573977424, -3.418135498425232, -7.0, -3.4075608494863623, -7.0, -2.8543060418010806, -7.0, -3.4726833296130404, -7.0, -3.451632947456991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.187389096503919, -7.0, -7.0, -7.0, -7.0, -3.691081492122968, -7.0, -7.0, -7.0, -7.0, -7.0, -3.086868074713916, -3.650501794878367, -7.0, -7.0, -3.1994351876202076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9637524214609017, -7.0, -7.0, -7.0, -2.9731278535996988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7460695605412515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9410142437055695, -7.0, -7.0, -7.0, -7.0, -7.0, -3.079543007402906, -7.0, -7.0, -7.0, -7.0, -3.2740808398686907, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0856472882968564, -7.0, -7.0, -7.0, -7.0, -2.9731278535996988, -7.0, -7.0, -7.0, -7.0, -2.9084850188786495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6813963148569364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.050379756261458, -7.0, -2.5360892666199084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5901728315963144, -3.6409449669943474, -2.9132839017604186, -2.7427251313046983, -7.0, -3.7869800210123445, -7.0, -7.0, -7.0, -3.0595634179012676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2511513431753545, -7.0, -3.5121505369220305, -7.0, -7.0, -7.0, -7.0, -7.0, -2.765668554759014, -7.0, -3.196452541703389, -7.0, -7.0, -7.0, -4.096249383189612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1646502159342966, -7.0, -7.0, -7.0, -3.0806264869218056, -7.0, -7.0, -3.653791187387812, -7.0, -7.0, -7.0, -7.0, -2.9020028913507296, -7.0, -7.0, -3.0542299098633974, -7.0, -2.8483011062859602, -7.0, -7.0, -3.244359600050387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1314582601065255, -7.0, -3.143327129992046, -7.0, -7.0, -7.0, -7.0, -2.3005954838899636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8887409606828927, -7.0, -7.0, -7.0, -2.6309361190641916, -7.0, -7.0, -7.0, -7.0, -7.0, -3.872420052218972, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4098063651997617, -7.0, -7.0, -7.0, -7.0, -2.9283958522567137, -2.935003151453655, -7.0, -2.983175072037813, -7.0, -7.0, -7.0, -3.3265406685165617, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1344958558346736, -7.0, -3.660092651504926, -7.0, -7.0, -7.0, -2.414230329001037, -7.0, -2.711526041280055, -2.8269382114979367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1458177144918276, -3.035829825252828, -7.0, -3.709990359852276, -7.0, -7.0, -3.496098992132571, -7.0, -7.0, -2.338854746252323, -7.0, -2.970346876230093, -7.0, -7.0, -7.0, -3.184691430817599, -7.0, -5.1000809189101615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.433974535927756, -7.0, -3.2362852774480286, -3.153522188412702, -2.2482458076207688, -7.0, -3.059184617631371, -7.0, -2.870403905279027, -2.668785145596836, -3.205745540942662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9909305367345755, -7.0, -7.0, -3.778791879032985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.135760572021129, -7.0, -4.054268239547188, -4.581414847918365, -7.0, -7.0, -3.226943424688905, -7.0, -7.0, -3.5781232505202647, -7.0, -4.614538669710055, -7.0, -7.0, -7.0, -4.311852713589172, -7.0, -7.0, -7.0, -7.0, -7.0, -4.107031804511505, -4.2366883817646155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2347702951609167, -4.276989989368231, -4.014604533436051, -3.07838430874819, -7.0, -7.0, -7.0, -4.550081524469066, -2.9175055095525466, -3.3394514413064407, -3.4878804271706723, -4.157184682201611, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9002578584377776, -2.9681715147063095, -7.0, -3.4614797679776728, -4.137295321174881, -5.174120889726191, -2.951823035315912, -2.915575698540003, -7.0, -3.7141934973413555, -3.719331286983727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.611043195143434, -3.72482570577938, -7.0, -3.735748561803585, -7.0, -7.0, -7.0, -3.733598460961339, -7.0, -7.0, -7.0, -2.766784515497859, -7.0, -2.455225653090252, -2.3636119798921444, -2.1918573243828754, -7.0, -2.2332947998687853, -2.867299091392458, -2.137775961313472, -7.0, -2.321184027302314, -2.296665190261531, -1.4814860601221125, -3.2020339865636913, -1.8947240425001657, -1.4974690606336676, -7.0, -3.309701124779525, -2.741939077729199, -2.6113249335884254, -3.222456336679247, -2.060697840353612, -2.855034316675884, -2.696065013692612, -7.0, -2.0788191830988487, -2.0343164474392905, -7.0, -2.6334090405056987, -7.0, -7.0, -3.4771067779956524, -3.231165603402702, -3.165572301835224, -7.0, -2.680335513414563, -2.569373909615046, -2.5861370252307934, -1.736630812766223, -7.0, -2.940516484932567, -2.1542302584287114, -2.6893088591236203, -1.421527405949555, -1.4279696159410684, -2.6074550232146687, -2.4892551683692603, -2.2764618041732443, -1.451674132507183, -7.0, -1.6715012994876535, -1.6867355479190071, -2.6143698395482886, -4.343290402353433, -3.022840610876528, -2.460396637297684, -2.480486032340433, -3.631139250256811, -2.479631634437262, -7.0, -2.641804498106114, -3.7172543127625497, -2.2726150608493985, -2.5868973219120925, -2.2227164711475833, -2.707712079213691, -7.0, -3.0856472882968564, -3.6510840892430116, -7.0, -2.7130321041190335, -1.9819479769904773, -2.6915235221681546, -1.9932357714670954, -1.3744058821756568, -2.582063362911709, -2.623766000133931, -2.2734835536034756, -2.655138434811382, -2.502768412325693, -2.6842467475153122, -2.5783526415103615, -1.7311652031850036, -7.0, -2.3363856031865926, -2.56534174619609, -2.4578818967339924, -1.7323937598229684, -7.0, -2.8937617620579434, -4.282848602834645, -3.4847268042986617, -2.353627758985543, -2.6020599913279625, -3.1201418894771438, -3.274388795550379, -2.726953486571369, -3.1478529205561894, -1.598257603523139, -2.9434945159061026, -7.0, -2.2340108175871793, -7.0, -2.037027879755775, -2.412740466538526, -2.8370831508231857, -2.3026555539507187, -2.244524511570084, -7.0, -1.7445068987146113, -2.9232440186302764, -7.0, -7.0, -1.9099448336376925, -2.1676864758514913, -2.187990482355389, -2.1647775936979032, -2.8911191293545526, -3.1288837020997735, -1.5710379430085666, -7.0, -1.8245287188967205, -7.0, -7.0, -7.0, -2.4056877866727775, -2.514547752660286, -7.0, -3.016531940957265, -3.5805828768143675, -7.0, -2.9590413923210934, -7.0, -2.8446324750435648, -7.0, -2.8830933585756897, -3.290835646600807, -7.0, -7.0, -2.3532535284738882, -3.059310921102351, -2.7027176733035243, -7.0, -7.0, -2.7271344237604884, -7.0, -3.0147304950017535, -7.0, -7.0, -7.0, -3.722798396870905, -3.715501945293284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.660917197172924, -7.0, -7.0, -7.0, -3.957607287060095, -3.969602264848539, -3.4202033743532962, -7.0, -7.0, -7.0, -7.0, -2.9661417327390325, -3.4713895141179947, -7.0, -3.171433900943008, -3.029848940638572, -7.0, -7.0, -7.0, -7.0, -3.422589839851482, -7.0, -3.916022071490407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6483762763872707, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7203247174174416, -7.0, -7.0, -3.7204074008031087, -2.963247995726138, -2.7978299584283435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7029305877176997, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7506626461340558, -7.0, -7.0, -4.03243743124139, -3.716337287889549, -3.251232527301566, -7.0, -7.0, -7.0, -7.0, -3.7180031682670176, -7.0, -3.747567162737625, -7.0, -7.0, -3.4280537613796307, -7.0, -7.0, -3.164673081360996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7170044070405472, -7.0, -7.0, -7.0, -7.0, -7.0, -3.45400593810379, -7.0, -7.0, -3.7270530113538576, -7.0, -2.9777236052888476, -3.718169405391307, -3.716003343634799, -7.0, -3.7349597612724454, -2.818516206243704, -3.7233735670189843, -7.0, -7.0, -7.0, -3.7777167386096258, -7.0, -3.9193919267738595, -3.465680211598278, -7.0, -7.0, -3.7328760413627067, -3.5192809544265256, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7244397233970745, -3.7309436934277356, -7.0, -7.0, -3.6744937172963503, -7.0, -7.0, -7.0, -3.2364532830524073, -7.0, -3.0860482372238454, -3.034800284315753, -3.8845688149183335, -7.0, -7.0, -3.748226801568246, -7.0, -7.0, -7.0, -3.8773137433122384, -3.7771367125041726, -7.0, -7.0, -7.0, -3.7505341072033804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.739651443709377, -7.0, -3.749581734865559, -7.0, -7.0, -2.8795947904433206, -3.717087724927019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3475251599986895, -7.0, -3.0060736450562517, -7.0, -7.0, -2.7264499166393055, -7.0, -3.446304113951924, -3.7444494574467986, -3.449324093098727, -3.759592308645975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.40219995031908, -7.0, -2.6480596170682786, -3.4189638307036225, -3.7203247174174416, -3.2364532830524073, -7.0, -3.7340794072805945, -7.0, -7.0, -7.0, -3.0007438674075004, -3.7317498835272636, -7.0, -3.7149999674120426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7641761323903307, -7.0, -3.70204408731056, -7.0, -7.0, -7.0, -3.7517408738109004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.492403703373851, -7.0, -7.0, -7.0, -7.0, -3.721150843749684, -3.72222246396973, -7.0, -7.0, -7.0, -7.0, -3.87075494489014, -3.8152455919165633, -7.0, -7.0, -7.0, -3.840482487213442, -3.269746373130767, -2.411353838503502, -7.0, -3.3850220555965733, -7.0, -7.0, -7.0, -2.9591368311703743, -3.767897616018091, -3.775391971696612, -3.507180977260241, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4291060083326967, -7.0, -3.1151110355043476, -7.0, -3.4194600727860704, -3.4072775708370235, -3.2869801217565664, -3.740362689494244, -3.7262380468026377, -3.3147670747986746, -7.0, -7.0, -3.183147776558217, -7.0, -7.0, -3.263951517653659, -7.0, -7.0, -3.443654067612905, -7.0, -7.0, -3.472902651803664, -7.0, -3.239489675978027, -3.4777722083492573, -7.0, -7.0, -7.0, -3.489888199550597, -3.7545012293869173, -7.0, -7.0, -3.7380667147774695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.742882171437273, -7.0, -3.8435130786088068, -7.0, -3.354262774332554, -7.0, -3.787956123283932, -3.561133921976699, -3.7798849631926443, -7.0, -7.0, -7.0, -3.7708520116421442, -3.8859828113549733, -7.0, -7.0, -3.7138264243805246, -7.0, -3.0528477834008605, -3.7184186418296554, -7.0, -7.0, -7.0, -3.243368813730389, -3.020834628178929, -7.0, -7.0, -2.6971355608850085, -2.9142430678512703, -3.769728017574238, -3.1436392352745433, -4.025264892154508, -2.847202363980924, -2.8519132286851905, -4.175743684421761, -1.5644135192609991, -7.0, -1.9418670254250672, -3.452593912052705, -3.3393995873126787, -3.3436499602697234, -2.1686218349748922, -7.0, -3.468657430019694, -2.320744609167914, -3.695102086708091, -3.3573821032961106, -4.113776283837032, -3.942120541404521, -3.4912916406875922, -2.6774085632045024, -3.0785086030032023, -4.284791555950147, -3.6321258539987804, -3.2650668939397445, -7.0, -2.2603320571010896, -2.4754694067467145, -3.5201911837557343, -3.5013918525528274, -3.3009865640441736, -3.0941992941110796, -3.648242882068844, -3.9091279419892606, -3.0207595645137237, -3.469026307750861, -3.304336626328912, -3.4863596256881286, -3.3468263424137072, -2.233293770257954, -3.062581984228163, -3.7539658658651605, -3.733250779305627, -7.0, -3.6977522741677546, -2.4720840748654966, -2.7388465958116313, -2.6191716218534493, -2.7951149856303634, -3.3018110230174766, -7.0, -3.536474268817627, -7.0, -3.730136003996678, -3.9071425310031405, -2.891708963048237, -2.9024863809435577, -7.0, -2.271634765541776, -3.071817053124699, -3.824920600351519, -7.0, -7.0, -7.0, -3.047844496253999, -3.984707294482673, -4.063009488011954, -1.6175169423917877, -3.436162647040756, -7.0, -2.935690435157628, -3.4794025368739816, -3.377706841369624, -2.8574665172568663, -2.716791410904716, -3.9262395210458623, -1.5688414901761636, -7.0, -7.0, -2.4884734467765677, -2.682533359351777, -3.7786576319473553, -2.804502896720539, -7.0, -2.690196080028514, -3.1743021460393894, -3.5809249756756194, -3.4308809464528913, -7.0, -7.0, -3.747023177451628, -2.9454945000097643, -1.3873070326139714, -3.426673888021373, -2.0568329661286775, -2.00851982868854, -1.70372115992702, -1.2346093048038251, -1.8271048087310866, -2.7321524180652137, -7.0, -0.8790425431179267, -2.45700493649091, -1.7674303855279894, -2.212409579610376, -1.5817632448704808, -2.498059806391236, -1.6938984542993198, -1.7613995242895237, -1.8164738850726685, -2.419237193590724, -2.3541852986258607, -1.8147063437620037, -2.593286067020457, -1.9348642345397662, -2.7076475835452323, -2.651762447380111, -7.0, -0.9972133578212427, -2.8942369201818225, -3.7188337183038622, -2.390439489416729, -1.6769815571269187, -1.9733492103121666, -3.239716468579862, -1.9675722866939394, -2.8967623540510066, -2.2540298877122105, -2.825993770051668, -7.0, -3.12057393120585, -1.8601617864501327, -3.254467510467076, -2.34908316877959, -2.4858192956610146, -2.8720729868180532, -1.8416722500736344, -2.2780673308886628, -1.7914827158151627, -7.0, -2.2239036770313434, -2.6102505672074927, -2.0681130729281074, -2.321557007938544, -2.782313337723311, -2.679923195447674, -3.0266966559781596, -3.0352796104598627, -0.9035663438258191, -2.507481059830068, -2.802925682774948, -1.7168939159781895, -2.701175349207917, -1.8032145727317173, -2.7923138519710444, -1.9674176304026578, -2.56062387454993, -2.5724068675580556, -2.7630371480451195, -7.0, -1.8596768121039193, -1.9977847916135072, -2.953356933212382, -2.5352149775401545, -1.932855758907971, -7.0, -3.021106568432122, -1.6647329368051549, -2.091896237573858, -2.8511818816915158, -1.8649819744648206, -2.730562063805724, -2.6296926930974265, -2.3363856031865926, -7.0, -1.8227283389364544, -1.903222373666312, -2.1701283120820047, -3.4143883269310753, -3.7157527168228595, -2.0665974676878682, -2.1684385521867724, -2.3802934866662886, -1.7174591546280427, -1.2625944386738668, -1.963717365029849, -1.0474498890910078, -1.9002933004400744, -1.8964681993902235, -2.7221401254574156, -2.587636144710017, -2.876465278343224, -7.0, -2.6261823846588936, -2.044510177307225, -2.2372085050255706, -3.7179200258369938, -2.9453044216515423, -3.7137424784090824, -1.3177898262770587, -3.4191293077419758, -2.900757155159472, -7.0, -2.725094521081469, -3.048985302570711, -3.2508264548251344, -2.4546844261382326, -1.5734548577967027, -2.2790623777037693, -3.1538910496761696, -7.0, -1.9880598807558294, -3.4129642719966626, -7.0, -7.0, -2.8312296938670634, -2.886248935531698, -2.6205364371187407, -1.9966959685634385, -2.406486954809536, -2.9404611431699053, -2.342258144172425, -3.4125445421080887, -2.5133992245838237, -3.718750734739665, -3.111598524880394, -2.1561635279953113, -7.0, -7.0, -1.6682597681200826, -2.3601142873067102, -2.771807878999106, -3.7137424784090824, -7.0, -3.1364827496008227, -7.0, -2.3155095555124667, -3.7148325124333326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.521469346698325, -7.0, -7.0, -7.0, -3.9207492612757084, -3.4564672554769906, -7.0, -7.0, -7.0, -7.0, -7.0, -2.472078282328687, -7.0, -7.0, -3.415140352195873, -3.288489155230087, -7.0, -7.0, -7.0, -7.0, -3.6585837154070626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.677789391068861, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4145221155206515, -7.0, -7.0, -2.8923729073984363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9103194227966793, -3.1245508004664684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.396606125927017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9579925120750126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3814066886605665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.881903155497279, -7.0, -7.0, -7.0, -3.623064602118739, -7.0, -7.0, -3.731346975545955, -7.0, -7.0, -3.659345635746177, -7.0, -7.0, -7.0, -3.2249860256767717, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1099640296607753, -7.0, -3.84060787900929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.83257277484618, -7.0, -7.0, -7.0, -7.0, -4.208360724978379, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.710709565724337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.137836192154967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8817649496862066, -7.0, -7.0, -3.105884708669233, -7.0, -3.3848012789620823, -3.682506085939011, -3.689486448364248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6572607893053752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3209766773428235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.875928984922927, -2.8452059258630054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7454183419434295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7263196121107756, -7.0, -3.22284647997415, -7.0, -7.0, -7.0, -7.0, -3.79155030502733, -7.0, -2.6578204560156973, -7.0, -2.66421447824638, -7.0, -7.0, -7.0, -2.443210816819927, -3.709439574132411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3589155946326024, -7.0, -7.0, -3.3953263930693507, -7.0, -7.0, -7.0, -7.0, -3.442793225939769, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0289877777129104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.12100143498964, -7.0, -3.7584513768787224, -7.0, -7.0, -3.9925424725624366, -7.0, -7.0, -7.0, -7.0, -7.0, -3.842172229385616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8207267628238344, -7.0, -7.0, -2.8598718466898005, -3.824863139350777, -3.6589457942431114, -7.0, -3.4505709997374705, -2.62228311762588, -2.3825383761127745, -3.5114971497645353, -2.1681024455343647, -7.0, -2.022045226491996, -3.02951905084684, -3.1262542976085608, -3.2620211364576672, -2.121441287898854, -3.7635777244666455, -3.0421664366887087, -2.527372082827612, -3.2467139512350784, -3.3725825735902633, -4.088384186097703, -4.074397497406827, -2.8103818884116567, -2.3116933279896723, -2.882497432666564, -7.0, -3.387764379602052, -3.0188480832550355, -7.0, -1.4881782505045555, -2.6374063316280676, -3.5474670224263853, -3.553701021549961, -2.469255421661786, -2.2149279077560613, -3.633589637131385, -4.189995339964319, -2.156198160789173, -2.775610448006361, -3.4272588402704054, -7.0, -3.773075617672614, -2.6859923929665883, -3.2069607291557105, -3.3922571613416745, -3.235584553681337, -7.0, -2.785307585748132, -7.0, -3.7679717213816186, -3.1617218284861597, -3.1764530204109622, -3.9679222067305173, -7.0, -3.6804261708581456, -7.0, -7.0, -7.0, -3.5925320448535816, -7.0, -3.3930484664167784, -2.8962505624616384, -2.8272164116669023, -4.4856902015728215, -7.0, -7.0, -7.0, -3.574947145214187, -7.0, -7.0, -3.439332693830263, -3.893484346218486, -7.0, -7.0, -3.076974014842062, -7.0, -3.0608488730388075, -3.335808805235897, -3.1077750894177876, -2.776560597696845, -3.8396665568824333, -7.0, -3.472112573021507, -3.179115405187117, -7.0, -3.975128385758762, -7.0, -3.7887338588277077, -7.0, -3.206885815923174, -3.0655797147284485, -7.0, -7.0, -2.2180281729591895, -2.9259360194675317, -1.5122123719657488, -7.0, -2.3139482984020416, -2.0805709895756306, -1.7107859199198063, -2.158425319506846, -1.7691758440581877, -7.0, -7.0, -1.8936577518833586, -2.193310154640943, -2.1435053686359833, -2.8119936837029837, -1.9219068065125802, -2.165484568429807, -1.9565580257265802, -1.7206186312984866, -1.4142348088269365, -1.707064005315809, -2.034583897605951, -1.8231911528255964, -1.896595103917157, -1.7533557390856211, -2.91053547390048, -2.9692294798626433, -3.0492180226701815, -1.8423092984741956, -2.311938040228109, -3.652826302561005, -2.1213727844547217, -1.8226585789992689, -1.7525711876624266, -3.048247531803974, -1.8922303833643714, -7.0, -1.7759183689513516, -3.063427189454848, -7.0, -3.356599435724971, -2.139750615913122, -2.1434879395120294, -2.2223576242096676, -2.001949941084268, -7.0, -0.9613839667026424, -2.2177470732627937, -1.4456495390930346, -7.0, -2.508613876414027, -2.8822398480188234, -2.1769176998034636, -1.665195412347772, -2.2904056446887195, -7.0, -7.0, -2.785275065544536, -1.5773031290220334, -1.8893892530522984, -2.1122697684172707, -1.83265975304879, -3.682145076373832, -2.1367064465138674, -2.9073217693391156, -1.0995657990900722, -2.5949447366950835, -2.1654331908736246, -2.5942543940256364, -7.0, -1.6193360481661199, -1.839380662996892, -3.6684791029325856, -2.6776981814745104, -1.5260791612514868, -7.0, -7.0, -1.9417382210894931, -3.099507993727965, -3.2175716716118217, -2.543884177081694, -2.869650720710803, -2.9392071473361217, -2.56534174619609, -1.8227283389364544, -7.0, -1.6582385975421807, -1.3369537150762545, -7.0, -3.6492374723496073, -1.9808382361688874, -1.3818214270144333, -2.4543683986530924, -1.5157224952236852, -1.8822712898280836, -1.9500294979909438, -1.3577006743372015, -2.4261184631759893, -1.6383530931404153, -3.658393026279124, -2.287801729930226, -3.355930187078868, -3.3494717992143856, -7.0, -3.417969642214737, -1.7401731378151295, -7.0, -3.357934847000454, -7.0, -1.6550152341972675, -7.0, -2.359383703996949, -3.3569814009931314, -2.815577748324267, -2.7315887651867388, -2.515211304327802, -2.0749851314540164, -1.3495107823567656, -1.5922125858397185, -7.0, -7.0, -1.6488033948702887, -7.0, -7.0, -7.0, -3.1946068335198956, -2.489771041147474, -3.6732052817790453, -2.7708520116421442, -1.683361376444474, -2.488366758369108, -3.3602146132953523, -3.646893624167745, -2.41033850091073, -3.6527296960692475, -7.0, -2.5930230972988877, -3.1711411510283822, -7.0, -2.551144908756322, -1.5955090387324764, -2.6723497932508575, -7.0, -3.64738297011462, -7.0, -7.0, -1.5977651826186936, -2.869036047512346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6305573026766758, -7.0, -7.0, -7.0, -7.0, -3.7576996250877386, -7.0, -7.0, -7.0, -7.0, -7.0, -3.67089495352021, -3.7231271587956916, -7.0, -2.6691308473733324, -3.73956104337977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.575384157099592, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.363818737564178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.125558714560702, -3.5100756113539493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8262908158770794, -7.0, -7.0, -7.0, -7.0, -3.480581786829169, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05986622041094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6466065096424285, -2.526597709103452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.144325078400488, -7.0, -7.0, -7.0, -3.9694858039103753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7900739484263046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.646436403284287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0555694400609896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0955021988092257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4888326343824008, -7.0, -3.331680308168973, -7.0, -7.0, -3.3822152230475337, -7.0, -3.2990712600274095, -7.0, -3.307496037913213, -2.728962179713866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0930462684998408, -7.0, -2.6428600525844916, -7.0, -7.0, -7.0, -7.0, -3.26030994579492, -7.0, -7.0, -7.0, -3.5345337560051155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.112318545682975, -7.0, -7.0, -7.0, -3.009450895798694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.462516210796815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5219222448835, -2.9967305154351527, -3.3200077330768902, -7.0, -3.436785272573282, -7.0, -7.0, -7.0, -2.563639269509036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8670744611517724, -7.0, -7.0, -3.4173263504642257, -7.0, -7.0, -3.1508178199016665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8723208379738385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7138683912822246, -3.5871494982543437, -4.17997604864288, -7.0, -7.0, -3.8627870982353443, -3.3845326154942486, -7.0, -7.0, -7.0, -3.361727836017593, -3.134283382991931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5907405368822554, -4.75804849865779, -7.0, -3.295347148333618, -4.149203711868772, -2.7586596156078977, -3.3274951622675926, -7.0, -3.2967043564681595, -7.0, -3.3058885302843097, -4.590585505352095, -4.368203179826712, -4.811930070679321, -2.6089770751029318, -4.007534417897258, -4.4122757019358305, -2.9082968496894392, -3.7508553832258906, -4.623042434246382, -7.0, -4.3280464486194905, -3.0408988880818284, -3.5903820058174034, -3.643321052153644, -7.0, -7.0, -4.470895383280216, -7.0, -3.3006038439866345, -3.955639653023252, -3.994361151908001, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8979751203757345, -4.1116321117086, -7.0, -7.0, -4.587284316492772, -3.218010042984363, -7.0, -7.0, -7.0, -7.0, -4.5599305524475895, -7.0, -3.4769764657595275, -2.7013354666845983, -7.0, -7.0, -7.0, -3.8274985081334587, -7.0, -7.0, -7.0, -3.620812485741877, -7.0, -7.0, -3.3002511868257978, -3.605695520054009, -5.176481948305591, -7.0, -7.0, -3.2422929049829308, -3.3467543414336545, -7.0, -7.0, -3.4305587695227575, -4.106870544478654, -7.0, -2.9924062244673513, -4.0602066210673495, -3.528702498309365, -7.0, -3.764250875438773, -7.0, -2.8531448998375213, -7.0, -7.0, -4.017492446477275, -3.278010092736105, -7.0, -3.868771750094851, -3.413467412985825, -3.516667559099043, -3.730216840568694, -3.588906340229199, -2.952792443044092, -7.0, -7.0, -2.178534241360947, -3.5181518769291116, -2.2795017397802226, -7.0, -2.8026027095457597, -2.677378796959058, -2.367006294428387, -2.2161856039886256, -2.2769917547965424, -7.0, -7.0, -2.201871892863938, -2.1541663775016415, -1.9411631563074063, -2.668944734457734, -2.187722109424307, -2.105903033717524, -2.375379771654777, -1.317686397735075, -1.6811308843113666, -2.0066442874731183, -2.364446760508421, -2.6879251249656204, -1.7462448717201984, -1.5719120796713575, -2.460038278929382, -7.0, -2.429752280002408, -1.8011017257894453, -2.159057919756901, -7.0, -2.7632442908167834, -2.5482975085635067, -2.5166165450160767, -7.0, -1.8755435449314382, -7.0, -1.3975992519013951, -2.9471885655260937, -3.1981069988734014, -3.226857570288723, -2.645422269349092, -1.4949786824666678, -2.4604682735010472, -2.164848342982397, -3.2111205412580492, -1.8397572915451457, -2.0952719366411383, -1.8630523559186847, -7.0, -2.157418988613354, -3.2362852774480286, -2.914166793875635, -2.416238675127561, -1.9397568966638934, -3.226342087163631, -3.236789099409293, -3.706803097037338, -2.2437143444085867, -2.110589710299249, -1.5660623380564436, -2.270606059524192, -3.2895889525425965, -2.4704893721204355, -2.9984773030365064, -1.6855672647538227, -3.274619619091238, -2.5276299008713385, -3.290657766409132, -7.0, -1.9408847449615854, -1.5291693929623844, -3.2550311633455515, -3.2826221128780624, -1.970741228491373, -7.0, -7.0, -2.686555024386572, -2.4313637641589874, -3.3207692283386865, -1.8132506727622622, -2.7651094972067183, -3.3122831657914786, -2.4578818967339924, -1.903222373666312, -1.6582385975421807, -7.0, -1.6809395392169428, -7.0, -7.0, -2.8372835937633987, -2.035601249204445, -2.6327103038329542, -2.273613961300418, -2.408539237965408, -2.650793039651931, -1.6184403542867676, -2.330413773349191, -1.5788248182115736, -7.0, -2.0867551829841657, -3.225050696138049, -3.207365037469072, -7.0, -2.3725438007590705, -2.5477747053878224, -7.0, -3.2304489213782737, -7.0, -1.7617254981477537, -7.0, -2.0863598306747484, -7.0, -2.0543576623225928, -2.4544092586862307, -2.284556053274592, -2.182557301304913, -2.126097803108254, -1.4510184521554574, -3.3236645356081, -7.0, -1.7248750343064068, -7.0, -7.0, -7.0, -1.8920946026904806, -2.953518081444993, -7.0, -2.698535492562001, -1.9745692571196651, -2.5133200642613844, -7.0, -7.0, -2.955567497098864, -3.212986184736668, -7.0, -2.663658101893888, -2.3532840899940375, -7.0, -2.306271810233204, -2.04170426796382, -2.322407260320884, -7.0, -7.0, -7.0, -7.0, -1.7152764907757574, -2.59659709562646, -7.0, -2.893206753059848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.193792230279798, -7.0, -7.0, -7.0, -7.0, -3.4466924663715273, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6856003283393646, -7.0, -7.0, -3.345177616542704, -3.340659367297437, -7.0, -7.0, -7.0, -7.0, -3.1947917577219247, -7.0, -4.573903855991725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8842098704188714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8309092995464433, -3.3251734566778013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7771367125041726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.535420718056173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.31713817377725, -7.0, -3.2135177569963047, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0982975364946976, -7.0, -7.0, -7.0, -3.667367330842684, -7.0, -3.3494717992143856, -7.0, -7.0, -7.0, -7.0, -3.218535505216528, -7.0, -7.0, -4.019282495761732, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3016809492935764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.659266331383175, -7.0, -7.0, -7.0, -7.0, -3.171433900943008, -7.0, -7.0, -7.0, -7.0, -2.8851041041149954, -7.0, -7.0, -3.7280470067735045, -7.0, -7.0, -7.0, -3.279210512601395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7514074226375196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2166935991697545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188365926063148, -7.0, -7.0, -7.0, -7.0, -3.655618583541222, -3.4048581419444237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0394537789617364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.567966906823154, -7.0, -7.0, -7.0, -7.0, -3.203576774977973, -7.0, -3.009592521262823, -7.0, -3.036668810300097, -7.0, -7.0, -7.0, -2.112474209640226, -7.0, -7.0, -3.130655349022031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.761614652799469, -7.0, -7.0, -3.2399248132621516, -7.0, -7.0, -7.0, -7.0, -3.1061908972634154, -7.0, -7.0, -7.0, -7.0, -7.0, -4.324255010861404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5725230978496376, -4.2889291750270715, -7.0, -7.0, -3.715083670694927, -3.3609718837259357, -7.0, -7.0, -7.0, -7.0, -3.59802407233419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.258397804095509, -7.0, -7.0, -3.32962158001926, -3.9118877968391073, -7.0, -7.0, -4.448288825667122, -3.5216610151120733, -3.0965624383741357, -7.0, -3.280444918828487, -7.0, -2.4332241692194554, -3.4749443354653877, -4.367010957968254, -4.112048372722411, -2.2835543583265596, -4.305867056602291, -7.0, -2.7228796657889593, -7.0, -4.144553452299717, -3.966939163021113, -4.628661343094779, -7.0, -3.202222766175473, -3.417106167392593, -7.0, -4.336899809359534, -4.469011558655687, -7.0, -2.935784279507291, -2.9975319986424003, -7.0, -3.9658834267863567, -3.0972840133231454, -2.757863012151893, -3.9666578842017577, -4.09684052033139, -4.372819981678968, -3.565240460896473, -4.016657344822202, -7.0, -4.585844093045212, -3.5514906603465675, -7.0, -7.0, -7.0, -7.0, -4.558396534248996, -3.5631249603380444, -7.0, -7.0, -4.177449920971824, -3.7992026563005252, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9003124969837266, -3.466737343913133, -5.176111525658619, -7.0, -3.499687082618404, -7.0, -3.1468409340350676, -7.0, -7.0, -3.721315880605899, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4424797690644486, -7.0, -7.0, -3.347748075174585, -7.0, -7.0, -4.016155511951455, -2.9538171981860746, -7.0, -4.3447163997142635, -7.0, -7.0, -7.0, -3.760271660542063, -3.22219604630172, -7.0, -7.0, -1.841984804590114, -3.815079418399363, -2.16144786514103, -7.0, -2.7801372190494913, -2.4026297928954663, -1.9592860652751163, -2.3140263025987355, -2.221227885347781, -3.2271150825891253, -7.0, -2.444405156454783, -1.89006518553078, -2.28025136025892, -2.8670744611517724, -1.9227686950366432, -2.124123670090858, -2.4150375879653, -1.7138326419551946, -1.6667690244306506, -2.190705124231049, -2.112381541544101, -2.397224110388342, -2.029789470831856, -1.519298927858262, -2.159983427793689, -2.7461150183833354, -2.3263358609287517, -2.009759837289156, -2.644684718395879, -3.177824971864682, -2.7001502497130585, -2.5574974999278877, -2.4859850346729226, -7.0, -1.9410142437055697, -7.0, -1.5633414633125446, -7.0, -7.0, -3.1925674533365456, -2.379758615842701, -1.8889012465241302, -1.6061424135326907, -1.6817629124916509, -7.0, -1.7616415061326538, -2.702215059149166, -1.4076494900585457, -7.0, -2.1058106306359194, -2.9011857801371503, -3.3688445068258215, -2.043498454033951, -2.194135761749324, -7.0, -7.0, -3.3945392313722045, -2.2568780318187245, -2.1396692316100534, -2.0646781638739173, -2.335717857204335, -2.9585638832219674, -2.5293041493281634, -3.2711443179490782, -1.5467624914031377, -2.640481436970422, -2.499228724283611, -3.5069557791831683, -7.0, -1.9083457326420796, -1.3633367615800802, -3.2229764498933915, -2.7745169657285493, -1.749230751353215, -3.161966616364075, -7.0, -2.3536904865774635, -2.5306265232810774, -2.8153563389481215, -2.468213019453331, -2.865893242431105, -2.420615770625765, -1.7323937598229684, -2.1701283120820047, -1.3369537150762545, -1.6809395392169428, -7.0, -7.0, -7.0, -2.7053811871798974, -1.8898379053780638, -2.9011857801371503, -2.0860749539955252, -2.484700757429173, -2.4063698354692677, -1.975238488015573, -2.7056926965377035, -1.6855806561176072, -7.0, -2.0141003215196207, -7.0, -3.171433900943008, -3.253580289562183, -3.050379756261458, -2.916137983107175, -7.0, -3.196452541703389, -7.0, -1.515772210307093, -7.0, -2.3101029976107674, -7.0, -1.9395192526186187, -1.5699101057997673, -2.162998646761075, -2.052565699053254, -2.0412765481119646, -1.5613453617046675, -2.44870631990508, -7.0, -1.45375503639545, -7.0, -7.0, -7.0, -2.1864940194554485, -3.2229764498933915, -3.236033147117636, -3.0704073217401198, -1.834003217937453, -2.8372727025023003, -7.0, -3.1598678470925665, -3.5427009694481106, -2.875928984922927, -7.0, -2.9072393288920026, -2.384114363914378, -7.0, -1.9967710298698016, -1.743313739231126, -2.3394514413064407, -7.0, -7.0, -7.0, -7.0, -1.7664128471123997, -2.3826173114774845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.89470365260923, -7.0, -7.0, -7.0, -4.2750175015885965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557362814089654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028335335818388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.669605074622326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5224442335063197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5308397786165204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5035183127240748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0145205387579237, -2.4771212547196626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432858699971087, -7.0, -7.0, -4.543248315911594, -2.951823035315912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.616570029608803, -4.74629939854591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732152418065214, -7.0, -7.0, -7.0, -7.0, -7.0, -3.913884463632048, -7.0, -7.0, -4.650628024927767, -7.0, -7.0, -7.0, -7.0, -7.0, -4.482880726551359, -7.0, -7.0, -7.0, -7.0, -7.0, -4.401986098723474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3462355816990375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603371749100861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7695988483874463, -7.0, -4.325597752860019, -7.0, -7.0, -7.0, -3.7331972651065697, -3.1758016328482794, -3.4095950193968156, -7.0, -7.0, -2.9807606420143298, -7.0, -7.0, -2.7007037171450192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1624050762518, -7.0, -7.0, -2.8583366459697217, -7.0, -7.0, -7.0, -7.0, -7.0, -2.91399035898314, -7.0, -7.0, -3.5801263254115825, -7.0, -7.0, -7.0, -3.247236549506764, -7.0, -2.6009728956867484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.622214022966295, -3.7003394895658697, -7.0, -7.0, -2.5477747053878224, -7.0, -7.0, -2.2329961103921536, -3.6977522741677546, -2.815577748324267, -7.0, -2.5888317255942073, -3.2095150145426308, -7.0, -7.0, -3.2826221128780624, -2.5071809772602407, -1.8372727025023003, -2.9291633832050645, -2.906335041805091, -7.0, -7.0, -3.4143883269310753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2785020944938825, -3.448087666692341, -7.0, -7.0, -7.0, -7.0, -2.1117104708745447, -7.0, -7.0, -1.4771212547196626, -7.0, -7.0, -3.66919286729231, -1.7817553746524688, -7.0, -7.0, -2.298853076409707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.651956069533074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275057846120968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.894814329083301, -7.0, -7.0, -7.0, -4.877123600647619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02428037604708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.056218581272306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6665179805548807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2833012287035497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3716834463321415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3001605369513523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.97657921864011, -2.423245873936808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.547014332367282, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.971275848738105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605617453352368, -7.0, -7.0, -3.744840396785379, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.650647441679319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5871494982543437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.152380087047603, -7.0, -7.0, -4.60339339779644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.98344585734134, -7.0, -3.00774777800074, -7.0, -7.0, -3.682370742516557, -7.0, -7.0, -2.1172712956557644, -7.0, -2.241795431295199, -4.325618272810029, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.976808337338066, -7.0, -7.0, -7.0, -3.821382499747299, -7.0, -7.0, -7.0, -4.338536173355659, -4.74033900005824, -7.0, -7.0, -2.606381365110605, -7.0, -7.0, -7.0, -7.0, -2.5449534564447305, -7.0, -2.401400540781544, -3.1027766148834415, -1.9956351945975501, -3.6878855248487055, -7.0, -2.4671145890738178, -7.0, -2.2008504980910777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6242820958356683, -3.633371053038101, -7.0, -3.0711452904510828, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.591064607026499, -2.606381365110605, -7.0, -7.0, -3.282848602834645, -2.8109042806687006, -2.7528164311882715, -3.2308744917032666, -2.123851640967086, -7.0, -2.8937617620579434, -3.7157527168228595, -3.6492374723496073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2922560713564764, -7.0, -4.3099706570410685, -7.0, -7.0, -4.278547833775853, -3.146902869928199, -7.0, -7.0, -7.0, -7.0, -2.595496221825574, -7.0, -7.0, -7.0, -7.0, -7.0, -3.145941869576122, -7.0, -7.0, -7.0, -7.0, -2.0718820073061255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.652149605401653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275103949569196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.696383695123476, -7.0, -7.0, -7.0, -4.349083168779591, -3.7518177877368792, -7.0, -4.275472601069419, -4.269676357629865, -7.0, -7.0, -2.7944548500620274, -4.044422155711843, -7.0, -3.9824973691977124, -2.7887450123625794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2587091005698268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.270142914565645, -7.0, -3.093421685162235, -7.0, -3.371056991184941, -7.0, -7.0, -3.7946506733159673, -7.0, -4.267711326726692, -7.0, -7.0, -7.0, -7.0, -3.11806622171401, -3.221581886746912, -7.0, -7.0, -4.289945516176668, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.029834524463506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6386015599717445, -7.0, -3.968996326648312, -7.0, -7.0, -7.0, -7.0, -7.0, -4.265996370495079, -7.0, -4.270702122087818, -7.0, -7.0, -7.0, -3.675778341674085, -3.0373077988643398, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.675663797434491, -7.0, -7.0, -7.0, -7.0, -3.977220446635385, -7.0, -7.0, -7.0, -7.0, -3.8717626060934567, -7.0, -4.2702827839652135, -7.0, -7.0, -3.9836713828601966, -7.0, -4.333970933444835, -2.9693029325193425, -7.0, -7.0, -7.0, -2.8274829540948496, -7.0, -7.0, -4.2876897839360755, -7.0, -7.0, -4.268858674994137, -7.0, -7.0, -7.0, -3.4840782847471243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.319439203046049, -7.0, -3.977700747083, -7.0, -4.38868721020124, -7.0, -7.0, -7.0, -3.7160659777452225, -3.9834909718151668, -7.0, -7.0, -7.0, -3.4000052274986206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.282055370683707, -4.275080898456858, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5681044059002835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.822778104826663, -7.0, -2.8996666397554955, -7.0, -7.0, -2.385350881364017, -7.0, -3.1288375888610482, -4.2746657690813885, -3.7992486255497773, -3.8019750750279386, -4.28602960050819, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6103407114521566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.271632537487123, -7.0, -7.0, -7.0, -3.0513669359209556, -4.2709581850920975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.674975896844148, -7.0, -3.00987563371216, -2.902434777692052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.68902830712297, -7.0, -7.0, -7.0, -7.0, -7.0, -4.268226837664629, -7.0, -7.0, -7.0, -7.0, -3.537525269964369, -3.5976293787457663, -7.0, -7.0, -7.0, -3.401874214845746, -3.974396541077658, -2.932060168758189, -7.0, -2.11808822309481, -7.0, -7.0, -4.267101296559969, -4.35005409357903, -7.0, -7.0, -3.8173008783933216, -7.0, -7.0, -7.0, -7.0, -4.269162565431745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.266936911159173, -7.0, -7.0, -3.3663399300342265, -7.0, -7.0, -7.0, -2.9417783440288416, -7.0, -7.0, -3.9021842630309194, -7.0, -7.0, -7.0, -7.0, -2.607901598556746, -3.1280529137413957, -7.0, -7.0, -4.283617786365643, -7.0, -2.604779561858258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5315906696251984, -4.316704039700037, -2.7338848026885336, -7.0, -7.0, -3.0541483460871173, -4.285422274188247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277035888172111, -7.0, -7.0, -7.0, -7.0, -7.0, -2.659345635746177, -7.0, -7.0, -2.3982038036681437, -3.0564826596487484, -3.118229285533303, -3.9740970037941312, -2.738519532242188, -2.7265985355333875, -2.6320634252958612, -3.4595935034915413, -2.3967017120816574, -7.0, -2.482075842814299, -2.997799697426971, -2.7011223473421095, -2.685256430754045, -2.3697967307610486, -3.7255616300072774, -2.851166586670228, -2.521193450160244, -2.381317407516167, -3.292196979651928, -3.8172181918591903, -3.381608385295533, -3.5061666650469663, -2.549952733015442, -2.399164523999909, -3.60908725848653, -2.9543289276033557, -3.1892563062138293, -7.0, -2.4404456585152707, -2.7154794810755183, -2.6521457355293707, -3.3736597194838454, -2.742568034366142, -2.615646953908509, -3.3460104901909786, -3.9925829705113984, -3.4040100848543777, -2.212197891476426, -3.659266331383175, -7.0, -3.4220110828701387, -2.6134212196672615, -2.9755788462970836, -7.0, -3.5666142382391173, -7.0, -3.0259118157686538, -3.686743489231213, -4.298176009766551, -3.2212258143152708, -3.057869784474744, -4.367281357632943, -7.0, -3.8955698643861068, -7.0, -7.0, -7.0, -3.2245848537315305, -7.0, -3.323091602776659, -3.0541340708512235, -2.9757572159420054, -3.114858477397568, -7.0, -4.304447440866175, -7.0, -2.992752284666042, -7.0, -4.070074826267528, -3.8703648833569106, -2.5613369970995135, -7.0, -3.8802799204198477, -3.7535677395933793, -4.268905441212015, -4.295962732394023, -4.054593905348044, -4.336619812907439, -3.282342167993069, -7.0, -7.0, -3.1232129397311224, -2.6066599758861706, -7.0, -2.4702006168679937, -7.0, -4.003331258561327, -3.568846817602785, -2.7052220557053834, -7.0, -4.268694953562178, -7.0, -4.275426536741639, -2.6186726361479105, -1.4452522466870956, -7.0, -2.925424205107909, -2.4855585296880656, -1.9687411114278788, -2.3538271299621987, -2.3141391643241276, -3.9704166181377833, -7.0, -2.3360087436712353, -3.231098715530343, -2.1478649397608756, -2.8845234909272777, -2.537131920116768, -2.983089073130224, -1.974975719445768, -2.4147095262667024, -1.4909429692613971, -2.854216046570607, -2.70819113900254, -1.9991055550292, -3.6806074289917876, -2.438361496362737, -7.0, -3.572081257156328, -7.0, -2.1153375006452233, -3.671242287239694, -4.267265619762563, -2.2373835216281015, -1.488432885906485, -1.700399862860919, -3.2663728312246034, -2.504343409967634, -7.0, -2.876617477687183, -4.270515799574357, -4.2659492899506235, -7.0, -2.786542656827931, -3.7937903846908188, -3.234678307978809, -2.853855152597072, -7.0, -2.095112473102566, -2.505678722692645, -2.165226863891662, -7.0, -2.9813881752136666, -3.2274893735743424, -2.923649417232252, -2.38067441862354, -3.6705241577820797, -4.268437552261454, -3.968319473630739, -2.6677310666469034, -1.7848573609472842, -3.2390718614686933, -3.5004423178574897, -1.9523273973758806, -3.973497308732063, -2.0102170388877076, -3.7984434603501875, -2.3591395481388244, -3.096307373399723, -2.6116771383924675, -2.8681217430022246, -7.0, -2.315576784503928, -2.97806633408362, -7.0, -3.370443693159354, -2.2026508811976, -4.265996370495079, -4.267805101513972, -2.469075467784182, -4.279758172802473, -7.0, -3.0086371944363277, -4.283414311501195, -7.0, -4.282848602834645, -2.0665974676878682, -1.9808382361688874, -2.8372835937633987, -2.7053811871798974, -7.0, -7.0, -7.0, -2.2512466447310087, -2.9674309630208207, -1.7347303731220607, -1.7964635019802966, -2.241245755270606, -2.008065595596292, -2.1551005453858165, -2.335093023976551, -7.0, -3.2392312063546864, -7.0, -4.266748965908202, -4.273949892550008, -3.983265352566545, -2.407701729076816, -7.0, -3.66661156841903, -7.0, -1.7719755284385301, -7.0, -3.576203091230177, -3.79136310912706, -3.9683895418470683, -3.6736888931512324, -3.6677563860178615, -2.7656918332132796, -2.1476763242410986, -3.007299600653417, -4.278227557594742, -7.0, -2.44606178890428, -4.2659492899506235, -3.964825117883389, -7.0, -3.9709509343454243, -3.066302625676853, -4.272305844402086, -2.0925741306838965, -2.5304030005576528, -3.28315726254433, -3.570215928477933, -7.0, -1.8905536646547345, -3.568084331315394, -7.0, -2.181512876873766, -7.0, -7.0, -2.95177891987254, -2.5229407829180266, -3.2829165267951463, -4.265831566255261, -3.9648722086377752, -3.494687854800482, -3.9648722086377752, -2.460998014474649, -4.266137581513037, -4.272213036520142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.07683152032504, -7.0, -7.0, -7.0, -7.0, -3.8107028609471167, -7.0, -7.0, -7.0, -7.0, -7.0, -2.962885687041937, -7.0, -7.0, -7.0, -3.93568076981809, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.583878598498626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2534591643398376, -3.858416877723488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3154640523400225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.532945375615925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.166873950858819, -7.0, -7.0, -7.0, -3.908255172627239, -7.0, -7.0, -3.514282047860378, -7.0, -7.0, -2.910446524697526, -7.0, -7.0, -7.0, -1.893946607552074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1571544399062814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.422941409919984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.12441105858231, -7.0, -7.0, -3.4858367262946746, -7.0, -3.1354506993455136, -7.0, -2.965201701025912, -7.0, -3.5043349118024643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0273496077747564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4089180208467798, -7.0, -7.0, -7.0, -3.619823500457278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7320719409998664, -3.5223077273031205, -7.0, -7.0, -7.0, -3.44544851426605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.294833494244287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505963518018126, -7.0, -3.659821158055705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0001860863337346, -7.0, -3.062854183849674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.32798182779077, -7.0, -7.0, -3.893595333819883, -7.0, -7.0, -7.0, -7.0, -3.534914104429867, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4716634728471267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9592720003147788, -7.0, -7.0, -4.269559640038821, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1768393978830747, -3.462330602146786, -4.315718507536319, -7.0, -3.984377272063356, -3.622731965164719, -2.2570012883774924, -4.132243675427468, -2.7801546506773587, -7.0, -2.1548238775544104, -2.7844746437625165, -3.8309001419489586, -3.5155957002684515, -2.4262183798325783, -3.119441480806942, -3.7254869263323838, -2.360899198300868, -3.234155582415821, -3.6762565555673197, -4.005952286887383, -3.932565078682726, -3.6787459370657043, -2.745233748499208, -2.3625138895930924, -7.0, -4.1694098981407, -3.7033773685123497, -7.0, -2.901540875900876, -2.65959158058081, -4.303530832062248, -7.0, -2.954826255726187, -2.618100418196633, -7.0, -7.0, -4.087497472404264, -2.364386402582388, -7.0, -7.0, -7.0, -4.0461243144366135, -3.5770319856260313, -7.0, -3.5241688532784616, -7.0, -4.267676155960548, -7.0, -3.573103783163991, -3.539640565669428, -3.35646293810248, -7.0, -7.0, -7.0, -7.0, -7.0, -3.717504074764202, -4.241919853150198, -7.0, -7.0, -7.0, -3.365817681057219, -4.333493335771041, -7.0, -7.0, -7.0, -3.9343974407809883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388172275047789, -4.322694690306876, -7.0, -7.0, -7.0, -4.216772698429039, -7.0, -7.0, -4.326243665994105, -3.6334684555795866, -7.0, -3.8090207204836726, -7.0, -7.0, -7.0, -3.2475173509272977, -7.0, -7.0, -7.0, -2.958085848521085, -2.912753303671323, -1.6106448470319037, -7.0, -2.611988688083979, -2.074217826516075, -2.1558256040617167, -2.6935437564115863, -1.9073837961475004, -7.0, -7.0, -2.5870692294283315, -2.335625033453388, -2.4791844152834357, -3.4891143693789193, -2.2860071220794747, -2.088619264513679, -2.3502480183341627, -1.922984815708883, -1.7617608341954742, -0.9478593213085527, -1.8864907251724818, -2.4533183400470375, -1.8601187950839286, -1.8325089127062362, -3.141763230275788, -3.406028944963615, -7.0, -2.2116939195924656, -1.9819359999222645, -2.596047007545439, -2.241552045299787, -2.459983818868003, -1.9727949511256364, -7.0, -1.8651341001586887, -7.0, -1.5923727239248306, -7.0, -2.5856486950954656, -7.0, -1.994887860393943, -2.801232153830292, -2.538133687250669, -2.8794542970180665, -7.0, -1.327907800587444, -2.50454637227152, -1.6858536557480714, -7.0, -2.307353389042854, -3.3919930722597127, -2.601380875502475, -1.5187677020832215, -2.3339508043872472, -3.0836817472743014, -7.0, -2.420405872366884, -1.963216831111873, -1.2802101517264077, -2.758609142659744, -1.900991941936252, -3.4299136977637543, -2.6588048952737338, -7.0, -1.5409052121143498, -3.1177682949263725, -1.942408140090593, -3.118140671487759, -7.0, -1.6913181275414544, -2.0110264042280437, -3.4051755462179893, -3.424881636631067, -1.669084326621116, -7.0, -7.0, -2.6379183801298756, -3.163608563431052, -7.0, -2.9640827641867062, -2.788168371141168, -3.6857417386022635, -3.4847268042986617, -2.1684385521867724, -1.3818214270144333, -2.035601249204445, -1.8898379053780638, -7.0, -7.0, -2.2512466447310087, -7.0, -2.788875115775417, -1.3521825181113625, -2.5403872356778745, -2.168984001964064, -1.888605637932962, -2.782124393777497, -2.050452611769055, -7.0, -2.0344650511984494, -7.0, -2.671543085262574, -7.0, -7.0, -2.058231752710575, -7.0, -7.0, -7.0, -2.0365311289980585, -7.0, -2.317581231880614, -3.3861421089308186, -2.9150478947700735, -2.738780558484369, -7.0, -2.064117499611749, -1.7929670410709038, -1.750096084914117, -7.0, -7.0, -1.8747642083309373, -7.0, -7.0, -7.0, -3.411788004543869, -3.103803720955957, -7.0, -2.6820805787897077, -0.657428998176507, -2.175388801188173, -3.0907869279492677, -3.3647385550553985, -2.8603380065709936, -3.074450718954591, -7.0, -2.8609572478573275, -2.667639706056411, -7.0, -2.953880446490549, -0.6127838567197355, -3.1863912156954934, -7.0, -7.0, -7.0, -7.0, -0.6817376109771551, -2.88930170250631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357944370897822, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -7.0, -7.0, -7.0, -3.9017306917292185, -7.0, -7.0, -7.0, -4.032682064470379, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.159266331093494, -3.705350462885712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4271207975795845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.217944315480356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8506462351830666, -7.0, -7.0, -7.0, -7.0, -4.060999853218289, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.259546099087022, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.962889987391791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.728410601881194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.225567713439471, -7.0, -3.8567288903828825, -7.0, -7.0, -3.670626158173298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3059958827708047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.848444690301653, -7.0, -7.0, -7.0, -2.8095597146352675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.497316744472857, -7.0, -7.0, -7.0, -3.3135508713335047, -7.0, -7.0, -2.854002233126989, -7.0, -7.0, -7.0, -7.0, -7.0, -2.845098040014257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1245042248342823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7450747915820575, -7.0, -7.0, -7.0, -7.0, -4.79701464825772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.4330638317805935, -7.0, -7.0, -4.544836685408386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.371990911464915, -7.0, -7.0, -7.0, -4.747295255267241, -7.0, -7.0, -7.0, -2.708633321015398, -7.0, -7.0, -4.034146977106046, -7.0, -3.7300551523755, -7.0, -4.178861887156875, -4.501401630766742, -7.0, -4.27763213161403, -7.0, -4.350819592367575, -3.9943171526696366, -4.307249939305207, -7.0, -5.101441173447477, -3.5682604085454175, -4.483794054640928, -7.0, -7.0, -4.625034495895203, -4.449817679720294, -7.0, -4.226977761697296, -3.744423382307533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.348733103798286, -4.388509715314879, -7.0, -7.0, -7.0, -3.4578170395546044, -3.7331972651065697, -7.0, -7.0, -7.0, -4.2417829871489525, -3.7812525942484565, -3.203576774977973, -7.0, -4.139060078649301, -3.7011360660925265, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8839168273879126, -7.0, -7.0, -3.6545615547417434, -4.377697741146842, -7.0, -7.0, -7.0, -7.0, -4.134070806148772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275978986467148, -7.0, -3.6444385894678386, -7.0, -4.156215882676762, -7.0, -7.0, -4.604755094644832, -3.8640836959342795, -7.0, -7.0, -7.0, -3.2753113545418118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.770557474850995, -2.3946312526633426, -2.2317243833285163, -2.149988456491476, -1.7906369619317033, -2.5244888507220873, -3.0854243788417226, -1.9109526078006482, -7.0, -2.4099331233312946, -2.8235466779955427, -2.0709609158009337, -3.1960635448521066, -1.6320232147054057, -1.8016323462331667, -2.815799044880344, -1.9708916872960696, -2.363074486652865, -2.3479801568783407, -7.0, -2.3642382157351927, -2.3950350180286306, -2.957607287060095, -2.070243158259842, -2.3194530784907674, -1.74707871738161, -7.0, -2.6817579471116177, -7.0, -7.0, -3.237868864186639, -2.8266528123767847, -2.9550565426273643, -2.3283796034387376, -2.757965097861435, -2.0187004986662433, -2.8283376000590046, -2.5705429398818973, -7.0, -2.150756439860309, -2.263297832993205, -7.0, -2.194514341882467, -3.2932520331478248, -7.0, -2.520439860913926, -7.0, -1.8685268867682039, -2.24551266781415, -2.2648178230095364, -1.5314789170422551, -2.7255032688593155, -3.486228010560835, -7.0, -1.8404197777364861, -2.0280287236002437, -3.2657609167176105, -2.599814867207917, -2.4366925976640545, -2.385010124593375, -2.549191962650917, -2.131137273778607, -2.878641007432556, -1.9198249446356317, -2.3919930722597127, -2.682145076373832, -2.497620649781288, -3.6216435721945732, -7.0, -3.0091108061322127, -2.1094660499520925, -1.8920946026904806, -1.8573324964312685, -2.059437187851868, -7.0, -7.0, -2.481552869518737, -2.586024382386976, -2.840106094456758, -2.814663706218772, -2.970346876230093, -2.9545640899663494, -2.353627758985543, -2.3802934866662886, -2.4543683986530924, -2.6327103038329542, -2.9011857801371503, -7.0, -2.2922560713564764, -2.9674309630208207, -2.788875115775417, -7.0, -1.997337835464067, -2.949983652777832, -1.9569912178674758, -2.65359838184329, -3.239572462938868, -2.6782147827453997, -1.852784868680548, -2.6175245348862926, -2.444044795918076, -7.0, -2.010299956639812, -2.384263785722803, -2.755722444903458, -2.346352974450639, -2.171726453653231, -7.0, -2.5143314936216132, -2.399673721481038, -2.7641761323903307, -2.156851901070011, -1.9044450410769096, -2.7810369386211318, -2.2380461031287955, -2.0433622780211294, -2.5563025007672873, -2.720159303405957, -2.546542663478131, -7.0, -2.1487054585660488, -7.0, -7.0, -7.0, -7.0, -2.296665190261531, -7.0, -2.885078384149224, -2.661136319597869, -7.0, -2.205475036740891, -2.2355284469075487, -2.742332282357148, -2.060697840353612, -7.0, -3.3233896221747057, -7.0, -7.0, -2.4626974081017172, -2.6088315520434717, -2.9684829485539352, -7.0, -7.0, -7.0, -7.0, -2.5948834173187865, -2.2671717284030137, -2.6483600109809315, -2.2174839442139063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.718667735316211, -7.0, -7.0, -7.0, -7.0, -3.7652213663049805, -7.0, -7.0, -7.0, -7.0, -7.0, -2.829303772831025, -7.0, -7.0, -7.0, -3.6557709903483695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.877475011224193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4689378056654614, -3.0390834800418545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2681097298084785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0323668937196664, -7.0, -7.0, -3.2242740142942576, -7.0, -7.0, -3.2380461031287955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8131471445804674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7309064484998022, -7.0, -7.0, -7.0, -4.049458369168608, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9485759586429285, -7.0, -3.2214142378423385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0470800728162564, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6062738531699883, -7.0, -7.0, -7.0, -7.0, -4.126942717944228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4613879368708793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2013971243204513, -7.0, -3.0933716483533886, -7.0, -7.0, -3.0304827790555695, -7.0, -2.717046067981814, -7.0, -2.548184610545108, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.559068334034537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2835273648616936, -7.0, -7.0, -7.0, -2.94423584379348, -3.276921132065774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0743592403903977, -4.074828626065748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0942381380341772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5939502952639875, -3.1808424146466825, -7.0, -7.0, -7.0, -7.0, -7.0, -2.546679729750976, -7.0, -3.4381070451548847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.619823500457278, -7.0, -7.0, -7.0, -3.543385044809843, -7.0, -7.0, -3.856366323659248, -7.0, -7.0, -7.0, -7.0, -3.4446692309385245, -7.0, -7.0, -7.0, -7.0, -7.0, -3.163113373376317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.35624581850903, -7.0, -3.4211101297934343, -4.261988070187269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.586137025230793, -7.0, -7.0, -3.4869564550939383, -4.2816544264128105, -3.3986126439612017, -3.316808752053022, -2.4899893680793217, -3.249198357391113, -1.811809860462303, -4.121822376752185, -2.77514438901695, -7.0, -2.2637794829316564, -3.415296164886454, -2.5780052441433385, -2.5501006203716683, -2.794305433965554, -3.708548365130561, -3.05148807933632, -2.9932016415641796, -2.4848382845757517, -3.7208412305035896, -7.0, -4.152274751228799, -3.347232410084063, -3.016434379577117, -2.1540797992204612, -7.0, -2.883232955012356, -3.0737183503461227, -7.0, -3.062882690130364, -2.5491475698795507, -2.4875802256342365, -4.272282644290865, -3.4394905903896835, -3.1868433703244703, -7.0, -7.0, -4.376996450740673, -2.2021598921798446, -4.026083620800987, -7.0, -4.58840617721658, -3.2200275811379977, -3.2371036915866878, -7.0, -3.2595256204210687, -7.0, -3.3054469132775894, -3.877601679729272, -7.0, -7.0, -3.8828943560930194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.90444504107691, -4.032247065637881, -4.699638303379863, -7.0, -7.0, -7.0, -3.848650886818957, -7.0, -7.0, -3.1371958119405483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.722249906671828, -3.1406127806443553, -7.0, -3.7754335947062185, -3.3249565862275174, -7.0, -4.647998761995242, -7.0, -7.0, -7.0, -4.069889996506938, -7.0, -7.0, -7.0, -7.0, -2.5773933091957093, -0.9982889935990089, -7.0, -2.1615343667196383, -1.6203171430538974, -1.3877066784034473, -2.2910882984509326, -1.1700329989066187, -7.0, -7.0, -2.179973641107927, -2.113943352306837, -2.6968426818935267, -2.481979789339991, -1.7193707521554475, -2.3321858896951086, -1.993813987391742, -1.8822398480188236, -1.3006887927013713, -1.7856769928884877, -1.5401208298279834, -1.8564416356431923, -2.4245186658770486, -1.7133855268966218, -7.0, -2.8016323462331667, -7.0, -1.7493334197103008, -2.453099827095558, -2.6354837468149124, -2.3159845211780983, -2.1511119339812774, -1.7280396161849396, -2.9324737646771535, -2.015173402914656, -7.0, -2.304736656701528, -7.0, -7.0, -7.0, -1.8364550785107507, -3.2773799746672547, -2.118719290030396, -2.299418511507402, -7.0, -1.5205012362844792, -1.9816807577862645, -1.3311130078939017, -7.0, -2.1001890976606084, -2.657294935980072, -2.3263358609287517, -2.3316373543153595, -2.446270810437326, -3.2513948500401044, -3.2612628687924934, -2.3498263322325768, -1.4979598920976362, -2.016083230668029, -2.8709888137605755, -1.722148948187599, -3.311329952303793, -2.455135188974629, -3.321184027302314, -1.5430327769186705, -2.114833300327073, -1.4162900578684652, -2.7140649191138504, -7.0, -2.2024617351968274, -2.275119316297735, -2.9770373352246815, -3.003245054813147, -1.3035339897779414, -7.0, -7.0, -2.302074262932074, -7.0, -7.0, -3.1289159784538367, -3.386498965550653, -3.32273600446995, -2.6020599913279625, -1.7174591546280427, -1.5157224952236852, -2.273613961300418, -2.0860749539955252, -7.0, -7.0, -1.7347303731220607, -1.3521825181113625, -1.997337835464067, -7.0, -2.285756398807677, -1.5858692465943118, -1.937753825464357, -2.571602970874123, -2.1550322287909704, -7.0, -2.216731267280442, -7.0, -2.931966114728173, -7.0, -3.39375064034808, -1.5512816993922365, -7.0, -7.0, -7.0, -1.8374227413143636, -7.0, -2.538238500689552, -2.346352974450639, -2.960470777534299, -2.719952447254438, -2.96543689977626, -1.6267601784100552, -1.4923939537516864, -2.251516552291679, -7.0, -7.0, -1.3786174987050486, -7.0, -7.0, -7.0, -2.8093352150273203, -2.32060781057734, -7.0, -2.4410521067600404, -1.849183088775068, -2.8606374167737547, -2.480486032340433, -7.0, -1.8170241925652633, -2.9372670722114127, -3.2247919564926817, -2.765562123075623, -7.0, -7.0, -2.103059683628344, -1.7931121687186715, -3.0843975191411492, -7.0, -7.0, -2.995854479874566, -7.0, -1.8342793777831479, -7.0, -7.0, -7.0, -7.0, -4.008834287045376, -7.0, -4.309268104477122, -7.0, -7.0, -4.30941722577814, -7.0, -7.0, -2.2266800247178287, -7.0, -7.0, -7.0, -7.0, -3.18527648256255, -4.010342366139568, -7.0, -7.0, -7.0, -7.0, -2.7002864012059606, -3.904913807999268, -7.0, -3.1488698939816735, -2.7338216935736406, -7.0, -7.0, -7.0, -7.0, -4.010956838955719, -7.0, -3.973328014143002, -7.0, -4.309885559660194, -7.0, -4.313297626086869, -7.0, -7.0, -7.0, -7.0, -7.0, -4.009365898346244, -3.719289844693328, -7.0, -7.0, -4.31492005599242, -7.0, -7.0, -7.0, -4.009663316679379, -7.0, -7.0, -3.189069009399324, -2.788857891778036, -7.0, -3.834674974462744, -4.331326050575092, -7.0, -7.0, -7.0, -7.0, -3.8415680152280833, -7.0, -7.0, -7.0, -7.0, -3.167472060642541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.963386391534554, -4.0090470096602795, -3.358717226442781, -7.0, -7.0, -7.0, -7.0, -4.310544628636955, -7.0, -4.017221214537218, -7.0, -4.322653372213238, -4.313445370426414, -4.317122737714539, -7.0, -2.7247590605996757, -4.016071816734024, -4.310990527134579, -7.0, -7.0, -7.0, -4.310672074930124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.84314969134017, -7.0, -7.0, -4.312875222239046, -7.0, -3.320374802023668, -4.009514632972974, -7.0, -4.31714366202289, -7.0, -2.9820518369844335, -3.8347173384565254, -4.313487573864755, -7.0, -7.0, -4.025531148300212, -7.0, -4.3715296320992945, -3.099720473067752, -7.0, -4.316829691494307, -4.314393957221963, -3.1326671225668004, -7.0, -3.8487841956346793, -3.8520731603687888, -7.0, -7.0, -3.83499260373303, -3.711701804964474, -7.0, -7.0, -3.1667704294521917, -7.0, -7.0, -7.0, -3.8322959710584774, -4.3093746249166704, -3.2511165453321484, -4.05715240481542, -7.0, -3.84397984447816, -7.0, -4.421965688225113, -7.0, -7.0, -4.318084214003265, -2.8373971106488654, -3.5480821705205963, -7.0, -7.0, -7.0, -4.205637359479429, -7.0, -7.0, -7.0, -4.315760490665735, -7.0, -7.0, -4.324158941674477, -7.0, -7.0, -7.0, -4.318835191727664, -4.312558149521521, -7.0, -2.216977478288399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1638170938993255, -7.0, -3.2613739070666825, -7.0, -7.0, -2.2868412551961677, -4.311117842662505, -3.2764618041732443, -4.0163855906671175, -3.473737151713407, -3.6224212739756703, -7.0, -7.0, -7.0, -4.315823457751156, -7.0, -7.0, -4.334413536837101, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5473644129795048, -7.0, -3.0432174545734725, -4.010024193899956, -4.010066630335587, -4.008429826797229, -4.3100982718562, -3.7125234348776948, -7.0, -7.0, -7.0, -2.6551188256238, -3.410713982002206, -7.0, -4.30977916448048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.018658897585517, -4.322818621007395, -3.416011443521709, -3.4219947885604296, -7.0, -4.310289623796099, -7.0, -3.8422138683580256, -7.0, -7.0, -4.3144571227346775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1392609992026075, -7.0, -7.0, -7.0, -7.0, -3.5329878079053483, -3.4082399653118496, -7.0, -7.0, -4.0269416279590295, -7.0, -3.877774349991398, -3.8603380065709936, -7.0, -7.0, -7.0, -3.7430980089414754, -3.2763782377920156, -2.212415419531334, -7.0, -3.132647219307249, -7.0, -7.0, -4.310608356458523, -3.0431299728634627, -7.0, -3.6268123931797867, -3.733297598821213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.316410710725809, -7.0, -7.0, -7.0, -7.0, -3.6113196194600805, -7.0, -3.709036634671606, -3.2799709653992704, -3.5445227813677804, -4.015296870381437, -3.710477011779341, -2.8733780187455484, -7.0, -7.0, -3.333799806709918, -7.0, -7.0, -4.01556930642988, -4.010278750336827, -2.8542047958554297, -3.5392015992941275, -7.0, -7.0, -4.325577231940418, -4.313213178178013, -2.468104066031306, -3.849746905174019, -7.0, -7.0, -7.0, -4.029343187519107, -4.019095510309654, -7.0, -7.0, -4.315760490665735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8627870982353443, -4.054651350441742, -2.7501210305035375, -7.0, -4.028449242723508, -3.7424423158873648, -4.327215849106363, -7.0, -4.317624643080059, -7.0, -4.023602224258929, -4.3600250891893975, -4.327134064918578, -4.008983203815472, -7.0, -7.0, -3.3650301536825658, -7.0, -7.0, -7.0, -7.0, -7.0, -2.808249566586551, -7.0, -7.0, -1.7515604805317466, -2.214341623289299, -3.4742162640762553, -3.086799347067046, -3.028034892512139, -2.286405251825869, -2.700738320904402, -3.540935581295993, -0.8208455107670904, -4.008940661377087, -1.569934431839561, -2.8110324767782995, -2.650041256312705, -2.747854787410412, -1.5244718860824604, -4.1157990532759525, -2.8424922264125208, -1.5817755344763664, -3.6331509149824406, -2.668106237932731, -3.848312303627284, -3.206354301944434, -2.7236608666914495, -1.795590161015244, -3.143082717133099, -3.8385594645298533, -3.0161624858249008, -2.491668890310033, -7.0, -1.5197512654844683, -2.0796244220539357, -2.866945032758351, -3.028455053499362, -2.531615310222658, -2.418582994066992, -3.211457181167326, -3.241809257706174, -2.2346412260026556, -2.9960736544852753, -2.6593813179855252, -7.0, -3.2149421962885567, -2.2201189888691593, -2.7540423867854362, -3.4746740514121064, -3.174917769318039, -4.325577231940418, -2.934143232399106, -3.3397991351974112, -3.7366354976868212, -2.670000141903834, -2.8674931076851453, -3.703067723380233, -7.0, -3.406931720475127, -7.0, -7.0, -4.066176785772006, -3.102788856634514, -3.0074956138870546, -7.0, -2.400113741375228, -2.5103335129592623, -3.5647792408154557, -7.0, -7.0, -7.0, -2.6471972978840603, -7.0, -3.7769028718580566, -1.7276008070360236, -3.545348358048107, -4.3117750456357395, -3.1884890478416423, -3.782443956917726, -3.8139033097892776, -3.491461750160462, -2.858820171667875, -4.072892956720603, -1.4622099218397608, -7.0, -7.0, -2.301559831150869, -2.197373495100488, -7.0, -2.7498466966808266, -4.330616667294438, -3.0427132993461132, -3.0819590663004783, -3.529330524750806, -4.314183339137378, -7.0, -7.0, -3.715961582542224, -2.5070376829046563, -1.4357087770442, -4.313086475517802, -2.4574727253433495, -2.66149717917983, -1.9477603819114044, -0.9875831142025345, -2.2407348574378876, -4.0135113334659, -7.0, -1.461425610653809, -2.809454494893529, -1.3795811117693013, -3.0237050426220375, -2.4213956421399727, -3.141390975041025, -1.9939870162174769, -2.3815963601406294, -2.115523938469208, -3.2139874522473995, -3.064541179435372, -2.1239275732134377, -3.2830338249835074, -2.570092108028933, -3.204662511748219, -3.41096693224878, -7.0, -1.352208814286594, -3.7141620460988536, -4.3107570183526045, -2.357687858215853, -1.127118845348021, -1.4532159285446646, -3.6111920608684343, -2.375780317960666, -3.413634997198556, -2.8555393455509726, -3.8364929048584697, -7.0, -4.311859773623503, -2.415376352092442, -4.314141203260571, -2.4968877338250617, -2.825372016929148, -7.0, -2.0059045301136, -3.0197392326747052, -2.168612933906424, -4.309545003295436, -2.7326411505912094, -3.5342800052050816, -2.103845169179113, -1.6831881398524553, -3.3153194652587508, -3.6126779183165016, -3.835479184541597, -2.845900196115185, -1.0152733372451836, -3.720944459446079, -3.241587982291062, -1.8152068688114962, -4.016301939781916, -1.3061208875878187, -3.363779064430861, -2.4391785930633114, -3.1693174825463464, -2.9758285293789934, -2.792102266462476, -7.0, -1.6168278651528245, -2.7525675042716915, -3.712060142461075, -3.111976227019206, -2.4301308196119487, -7.0, -3.7090578513345434, -1.629650292979936, -2.8896336526352338, -3.71821095473187, -2.242503468661323, -3.3708213841255614, -3.245930058025906, -3.1201418894771438, -1.2625944386738668, -1.8822712898280836, -2.408539237965408, -2.484700757429173, -7.0, -4.3099706570410685, -1.7964635019802966, -2.5403872356778745, -2.949983652777832, -2.285756398807677, -7.0, -2.3947773609928875, -0.9630223341964602, -1.2636660648733542, -2.0044578585360924, -3.8347808766998273, -3.20883396239637, -4.311711488795424, -4.310289623796099, -3.5384480517102173, -2.8779674948747114, -2.6801654796837506, -4.310523383951521, -3.613016830283682, -4.309459822461211, -1.3037341520877823, -4.010066630335587, -3.3177082376103013, -4.31194448508462, -2.913792666770312, -3.318188594151796, -3.4098063651997617, -3.035787728177052, -1.7417097086716051, -2.8705599579152383, -3.6215501543254702, -7.0, -2.6141317934028017, -3.832359864516441, -7.0, -7.0, -3.1103160859286136, -3.359666873395946, -3.8381141548980646, -2.253560841073256, -2.7349300109996633, -3.1585886282533937, -2.8966321920836497, -4.309459822461211, -2.6246517495776027, -3.8335295817586434, -4.309566295893774, -1.3103144813116823, -7.0, -7.0, -2.2862865009774356, -2.6987055706851475, -3.2835068118940884, -4.309459822461211, -7.0, -4.316012304249464, -4.309566295893774, -2.5745456823355712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3060145500599503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.951677437343301, -7.0, -7.0, -2.6782907017180433, -3.929072487398351, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.96827275520536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.845098040014257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.081527326244805, -3.1789769472931693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6232492903979003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1222158782728267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.193958978019187, -7.0, -3.2487087356009177, -7.0, -7.0, -7.0, -3.385133679818153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.617000341120899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.32990612340021, -3.829657498318051, -7.0, -3.1740598077250253, -7.0, -4.267218676620119, -7.0, -7.0, -3.0199466816788423, -7.0, -7.0, -2.803115554890027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.109443547064349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9794605133896948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9459607035775686, -7.0, -3.4344624462614135, -7.0, -7.0, -2.7238477374538714, -7.0, -3.1936810295412816, -7.0, -3.2043913319193, -2.7573960287930244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.519827993775719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1481911962420113, -4.675329155248394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6459950553715124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6190933306267428, -7.0, -7.0, -7.0, -7.0, -2.5888317255942073, -2.9206450014067875, -7.0, -3.46888415925913, -7.0, -7.0, -3.0784568180532927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.083263668252353, -7.0, -7.0, -7.0, -3.5756810811895403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0909630765957314, -2.30788484230973, -2.7058637122839193, -7.0, -7.0, -7.0, -7.0, -3.897183637209576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.355402027786844, -7.0, -3.323870606540509, -4.556712474209863, -7.0, -7.0, -7.0, -7.0, -3.27207378750001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.478041509755478, -7.0, -7.0, -3.513780854205835, -4.055752825315675, -4.290390809440229, -7.0, -3.966423345943693, -2.877515318847026, -2.8705502062680823, -4.113057156163552, -3.149250702303481, -7.0, -2.705417442867802, -4.585776465241712, -3.966198069990564, -3.767520156176435, -2.7959308586000873, -3.9982811398083022, -3.2584320234141178, -2.8210385989122053, -3.4328090050331683, -4.016458771976905, -7.0, -4.326585030766405, -3.2235997646496934, -3.750178674359477, -2.803900743413759, -7.0, -4.032810082226799, -7.0, -7.0, -3.1435886388415737, -2.7005306569785916, -4.114577627000166, -4.259832699063484, -3.60154396017653, -3.2529136823984546, -4.260619875172372, -7.0, -4.367244071135225, -3.1495783093880108, -7.0, -7.0, -4.281385662250469, -2.269867206668517, -2.900913067737669, -7.0, -7.0, -7.0, -7.0, -3.544873843234801, -3.1085650237328344, -4.103530063428375, -3.691435152144062, -3.476759191770886, -7.0, -3.7988577317474856, -7.0, -7.0, -7.0, -3.734506468448954, -3.200713733964013, -7.0, -2.584442453586196, -3.9427023688886678, -7.0, -7.0, -7.0, -7.0, -2.987104798161707, -7.0, -4.946825479950723, -3.2182728535714475, -7.0, -3.0979510709941502, -3.03893791903862, -3.742568034366142, -7.0, -7.0, -7.0, -7.0, -3.707485011967474, -7.0, -7.0, -3.1231242235002017, -2.72784322950962, -7.0, -4.642800745692909, -7.0, -7.0, -3.6940784620807596, -4.049876719873882, -7.0, -7.0, -7.0, -7.0, -3.2024883170600935, -1.6844576212664344, -7.0, -2.0393097340099327, -1.5929166118880926, -2.0086001717619175, -2.447606788068159, -1.5167257974365613, -7.0, -3.089551882886454, -2.696293967679412, -2.6827465923729044, -2.5902612875245725, -2.197280558125619, -1.6958935252473812, -2.563035883426256, -1.1685080872847577, -2.0858509911532663, -1.8627153701879953, -2.1609399149830604, -2.315970345456918, -0.9727835222753004, -2.6704777860472753, -2.0244424564676597, -3.204662511748219, -2.4367985102318035, -7.0, -2.0746336182969043, -2.8656960599160706, -3.080987046910887, -2.809488078431905, -1.6629808743505723, -2.4982170716858327, -2.2241999721012724, -2.1868487502832425, -7.0, -2.6652056284346006, -3.1283992687178066, -7.0, -2.317715203094899, -1.987144679314413, -3.1351326513767748, -2.42433706667645, -2.8442996228070254, -7.0, -1.9747641765839266, -1.8077431231767653, -1.7433529514095556, -7.0, -2.430903949947793, -2.330413773349191, -2.225093804429503, -3.236401595942225, -2.554186199069382, -2.396896449142524, -2.5085297189712867, -3.06595298031387, -1.7815119701445403, -2.55339751012388, -2.929929560084588, -2.0688960736491686, -2.879955585122749, -2.211309420168281, -1.5373797480637228, -2.2112985672830483, -1.5029349925544035, -2.7267272090265724, -3.0667451060838538, -7.0, -2.8289461816359327, -2.1976564079819663, -3.1367205671564067, -1.9882615967287558, -1.9194049982868073, -3.0610753236297916, -7.0, -2.052452336614949, -2.33520708088345, -3.2211533219547053, -2.614826936158897, -3.2801228963023075, -2.719094420611941, -3.274388795550379, -1.963717365029849, -1.9500294979909438, -2.650793039651931, -2.4063698354692677, -7.0, -7.0, -2.241245755270606, -2.168984001964064, -1.9569912178674758, -1.5858692465943118, -2.3947773609928875, -7.0, -2.0692451171051838, -2.783058584878388, -2.346092058563005, -3.101403350555331, -3.255995726722402, -2.795184589682424, -7.0, -3.17376882313665, -3.2893659515200318, -2.2777237887624535, -7.0, -2.196245290694014, -7.0, -2.021922038373002, -3.0874264570362855, -2.889581802149624, -3.1007150865730817, -7.0, -7.0, -2.81888541459401, -2.1931245983544616, -1.8332746392905634, -2.583198773968623, -7.0, -7.0, -2.215565467402707, -7.0, -7.0, -7.0, -7.0, -2.088941083336781, -7.0, -2.4218388711449164, -2.578951614596268, -3.1060775192489603, -2.810568529216413, -7.0, -1.6263974025687553, -2.7788744720027396, -7.0, -2.9370161074648142, -7.0, -7.0, -2.6058435390580894, -2.5393042545542115, -7.0, -7.0, -7.0, -2.381415942849977, -7.0, -2.6126875501483457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5394058622888096, -7.0, -7.0, -7.0, -7.0, -3.337026415142606, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8235003121397035, -7.0, -7.0, -3.6840819838753727, -3.0553628323897706, -7.0, -7.0, -7.0, -7.0, -3.9550620696750323, -7.0, -4.175473156148423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.006180697638505, -7.0, -7.0, -3.6604860157849677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.706077387310076, -2.837588438235511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1116433067408074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.951677437343301, -7.0, -7.0, -3.959232249050996, -3.978864984347657, -7.0, -7.0, -7.0, -3.1730509206636928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9522595365908204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1960379407345236, -7.0, -7.0, -7.0, -7.0, -2.43961383958441, -7.0, -7.0, -7.0, -7.0, -3.9875322027298394, -7.0, -7.0, -3.4823222022067144, -7.0, -7.0, -7.0, -3.2566078014860538, -7.0, -3.5088886771335988, -7.0, -7.0, -7.0, -3.9554472105776957, -3.6581545470672103, -7.0, -7.0, -3.65076877671263, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6811119638274077, -4.053808059920658, -7.0, -3.975615597966895, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05161552300499, -3.5098742850047193, -7.0, -7.0, -7.0, -3.712060142461075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8952896369361607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.716128602823834, -7.0, -3.087180544900543, -7.0, -7.0, -2.743392160047862, -3.9529860651970554, -3.2697930438612297, -3.9673139182870836, -3.669828061332521, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.51418538761473, -7.0, -3.3766681858105296, -7.0, -3.6519076720869994, -7.0, -3.9506568825045107, -3.9611362173872253, -7.0, -7.0, -7.0, -3.0305592452911556, -3.6586313746095143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.972387999107473, -7.0, -3.777209258145685, -3.485063432960738, -7.0, -7.0, -7.0, -3.272352240906794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3985582892632116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4449421391905433, -4.011062694729735, -7.0, -7.0, -7.0, -3.726197258403274, -7.0, -2.283850212395074, -7.0, -3.489504162507767, -7.0, -7.0, -7.0, -2.3808594680117827, -3.981501488148247, -7.0, -3.5293875730556277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.953227971559854, -3.7554174628109362, -3.678245151927042, -7.0, -3.9565045903166975, -2.9349146499694263, -7.0, -7.0, -3.5563326590591577, -7.0, -7.0, -7.0, -7.0, -3.3979834359489, -3.967547976218862, -7.0, -7.0, -3.985291718592888, -7.0, -2.7400994009248563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7701152947871015, -4.048752457699489, -3.335834053210056, -7.0, -7.0, -3.738106403558114, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5801643896985524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.567222480175445, -7.0, -7.0, -2.507794956556955, -3.053664658749656, -3.833497722133357, -3.4910346824303082, -3.7722483399718536, -2.188051718153, -3.0948203803548, -3.925505469379759, -1.2523921106247071, -7.0, -1.8575159365530678, -3.073614968155805, -3.284930006263787, -3.426716040549097, -1.5337102405281544, -3.7429920657525093, -3.4789860278193347, -2.0011505154097025, -3.6671726724788685, -3.1871768858027356, -4.22318432089504, -3.7153121629007257, -3.5083680909523376, -2.3270097863841452, -3.081114231941639, -7.0, -3.6273231761856515, -2.9863237770507656, -7.0, -2.0128297618954236, -2.509805434070105, -3.628788204481048, -3.5106790310322102, -3.2610797766810538, -3.131764434995244, -3.9373674175172897, -3.998847592007072, -2.75812654954038, -3.1401543670165406, -3.136915602292458, -3.2942898271007177, -3.516242534833948, -2.1332790851606114, -3.3047981671445035, -3.671913012441587, -3.454779547656796, -7.0, -3.4633653465369476, -3.0223989105144513, -2.711132072306842, -2.4816778851648396, -3.1474444325481796, -3.837177937004182, -7.0, -3.6702767846279922, -7.0, -7.0, -7.0, -3.4263124127148887, -3.1349337530532146, -7.0, -2.080197932774685, -2.843345672544991, -4.083155177608267, -7.0, -7.0, -3.6564815157904986, -2.5561792042169356, -7.0, -4.983301459523824, -1.9988519464694439, -3.826269219393726, -3.4771695069814648, -2.354340301363435, -3.4290136052510922, -3.486461965440535, -3.3101833275716896, -3.5161385767170743, -7.0, -1.2179593624134388, -7.0, -7.0, -2.7590453913944355, -2.1039887903218193, -7.0, -3.3908173961711223, -3.996248914569132, -3.4233687700792785, -4.103666913746792, -3.2361936106265383, -3.6588219591356244, -7.0, -7.0, -2.8886474332825305, -2.9309490311675233, -1.4170531363008534, -3.6563378127675463, -2.367355921026019, -2.2705600108732593, -1.743582870756548, -1.1866026905786375, -1.9485306889830238, -3.4835397525513194, -7.0, -1.2172361865017254, -2.4696320151080635, -1.712142298806098, -2.62144723602022, -2.0460675901682115, -2.5078967407008865, -1.8002524377062963, -1.6727105265930131, -1.8554605345592676, -2.1530073751464793, -2.6103823923852376, -1.9222366116209038, -2.4757165762621733, -1.9912260756924949, -2.9701608430373136, -2.880098704083314, -7.0, -0.9777575677116924, -2.9224895437705523, -7.0, -2.124846323695534, -1.6226079582053459, -1.7763343948443986, -3.4738760792691425, -1.8035465276645812, -3.3639878297484915, -2.152069831431577, -3.9588504516796785, -7.0, -3.352327258816553, -2.209631556736247, -2.844763838780448, -2.333704967375953, -2.210523506005551, -7.0, -1.2402247952415473, -2.255736247252979, -1.771148039831543, -7.0, -2.299125788809188, -3.2571023326591644, -2.3336039908101927, -2.047157708190914, -2.618950946772595, -3.352230770373165, -3.6554265877459184, -2.916839816617871, -1.1830993299225638, -2.7230906419805767, -2.3925118319943293, -1.7605436424369434, -3.267781659715359, -1.8029383499157559, -2.712462626680574, -1.7022855541434265, -3.118359220102451, -2.5213716130326205, -2.8514876690527866, -7.0, -1.8502914589351291, -2.132890500150523, -3.357744325180376, -3.1870504506422686, -1.9421140948936504, -7.0, -3.9532763366673045, -1.9476437458204918, -2.8002128574963217, -3.9738664498353784, -2.073180915795838, -3.5075860397630105, -3.154423973114647, -2.726953486571369, -1.0474498890910078, -1.3577006743372015, -1.6184403542867676, -1.975238488015573, -7.0, -7.0, -2.008065595596292, -1.888605637932962, -2.65359838184329, -1.937753825464357, -0.9630223341964602, -2.0692451171051838, -7.0, -1.6252634418229994, -1.4542188324826077, -3.4776517349700544, -2.486133275238764, -3.95433900860246, -7.0, -3.4885507165004443, -2.90655949500245, -2.469822015978163, -7.0, -7.0, -7.0, -1.34424936903324, -3.953034457250357, -2.736771338404693, -3.6537429940257358, -2.5228304876568752, -2.9274636894564674, -3.1790728074595234, -2.5451167199341014, -0.9112368843262032, -2.1142691546341217, -3.9745116927373285, -7.0, -1.740597633769329, -7.0, -7.0, -7.0, -2.314393957221963, -3.260739019910411, -3.66138669778177, -2.211397439106333, -2.2025766721021527, -2.6641905259500858, -3.1108301168826937, -3.949194774237982, -2.7823929882474965, -3.252755971088573, -7.0, -2.009064118906962, -3.4727564493172123, -7.0, -2.163187311522274, -2.0788763710039335, -2.660684823058709, -7.0, -7.0, -3.486760974209115, -7.0, -2.016565097224415, -3.4725126690795998, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277792518931442, -7.0, -7.0, -4.277952847038809, -7.0, -7.0, -2.706812575414054, -7.0, -7.0, -7.0, -4.3591522114468955, -3.4605971888976015, -7.0, -7.0, -7.0, -3.9916468715211346, -7.0, -3.0845437818078687, -3.3552982352111687, -7.0, -3.994185128202317, -2.7715551279285786, -7.0, -7.0, -7.0, -7.0, -7.0, -4.28244083582987, -3.2628701517374172, -7.0, -7.0, -4.280692164285117, -7.0, -3.6832272060414346, -7.0, -7.0, -7.0, -4.309502414966703, -7.0, -3.2453087762064916, -7.0, -7.0, -3.982791170279078, -7.0, -4.279826581794015, -7.0, -7.0, -7.0, -7.0, -4.306167591572845, -3.015305073292771, -7.0, -7.0, -3.4561056387081894, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9982811398083022, -7.0, -7.0, -7.0, -2.8152529759306737, -7.0, -7.0, -7.0, -7.0, -3.7163581508819816, -4.288383384399775, -7.0, -7.0, -3.849284251626279, -7.0, -4.282123418809911, -7.0, -7.0, -7.0, -7.0, -4.27916484306227, -7.0, -3.9864134054654685, -4.282735372621018, -3.689974444666774, -7.0, -3.6840370374865197, -4.289811839117621, -3.1118839301593266, -4.286254320828791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.988625834862769, -7.0, -7.0, -4.281669563107719, -4.279187678432147, -3.687930074726357, -4.279210512601395, -7.0, -7.0, -7.0, -2.962053485123806, -7.0, -7.0, -7.0, -3.8086610190597323, -4.2964019016921435, -7.0, -3.566044465487791, -3.893900403553743, -7.0, -4.285917196728309, -3.8060894865407215, -2.961272744113886, -7.0, -3.8185337947129234, -3.8220590560256844, -3.809582158214607, -7.0, -4.280942405998698, -7.0, -7.0, -7.0, -3.300253776544204, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2578077550334497, -2.6562409647638097, -4.030559245291156, -4.290591042549338, -7.0, -3.92069713446992, -7.0, -7.0, -7.0, -4.0279812200433875, -3.8190171986890595, -7.0, -7.0, -7.0, -2.8730652846523115, -7.0, -4.278227557594742, -7.0, -7.0, -7.0, -7.0, -3.4484191976496126, -4.2869950739688525, -4.285219643202061, -7.0, -3.509695249865874, -4.281328859801704, -7.0, -2.7207928476202827, -7.0, -7.0, -7.0, -4.279803779994103, -4.2788907249286785, -7.0, -7.0, -3.5328817194073974, -7.0, -2.9085352815350225, -7.0, -7.0, -2.592343002156279, -7.0, -4.287465805343229, -3.8093801242339063, -4.288338669395164, -3.5126176996829153, -7.0, -4.284566077266973, -4.282078054577154, -4.284836637642396, -7.0, -7.0, -3.7025813069667075, -7.0, -7.0, -7.0, -3.7331009229280614, -7.0, -2.9393320163657064, -7.0, -3.9911595969595175, -7.0, -7.0, -7.0, -7.0, -4.283640388800368, -4.278387725209282, -7.0, -7.0, -3.276628888711961, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.686837284994604, -3.8151348166368138, -3.7411713032360767, -3.00428327132953, -4.278136006715478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.583039995006035, -2.7720312240705764, -7.0, -7.0, -7.0, -7.0, -4.280031744138702, -3.6781312565441797, -7.0, -4.282622112878062, -4.297913635807866, -7.0, -7.0, -4.308116015865615, -7.0, -7.0, -7.0, -3.538028848509809, -3.9863013670565963, -3.1430883098145115, -3.5856186260679217, -2.9924668807264574, -7.0, -7.0, -7.0, -3.2134798091189682, -7.0, -4.29569901748951, -3.828702851333031, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9888486871264353, -4.2854672904600575, -7.0, -7.0, -4.282576800709218, -7.0, -7.0, -7.0, -7.0, -3.4282765647938374, -3.4470472277998647, -3.984347257585864, -7.0, -3.000985245323685, -7.0, -7.0, -3.184123354239671, -7.0, -7.0, -7.0, -4.280031744138702, -3.8255126650941165, -4.286703412934269, -3.8228869478341507, -3.982745983047542, -3.693111115462141, -4.2820326856053805, -2.852171882663223, -3.5184042557045796, -7.0, -7.0, -7.0, -4.300486787986029, -4.289499765873857, -7.0, -7.0, -4.2847690133490195, -7.0, -7.0, -7.0, -7.0, -4.280737673504682, -4.278730742746982, -4.286141975203335, -7.0, -3.8410308092337435, -4.026471976876103, -2.738789581254155, -7.0, -3.6003847306224874, -3.0144155225606033, -3.8198509039368695, -7.0, -3.8095597146352675, -7.0, -3.448971187456634, -3.217706602245906, -3.819763220818885, -4.278639297890739, -7.0, -7.0, -3.6867032848448513, -7.0, -7.0, -3.9786141382013285, -3.696924008405422, -3.978864984347657, -3.4219328132785085, -7.0, -7.0, -2.4113584238044, -2.6699656178768523, -3.492725476491596, -4.287084776433677, -2.1287802856493667, -3.619886029358387, -3.3757915976851924, -2.8691919291329455, -1.9050790087053022, -7.0, -2.508699866624639, -2.9575686704055344, -1.7819409234599481, -2.0158562649538196, -2.2611721081987155, -3.178378301427545, -3.188114548770146, -2.393819419861694, -2.240227565671911, -2.674868486036911, -3.2514110789776036, -2.9512055563264705, -2.8041560608213065, -2.3808158408475273, -2.0465674178963407, -4.042129045119864, -1.3570647125607291, -2.091967735086787, -2.222651452136772, -2.419735097623596, -2.6338624181709775, -2.2170128461158742, -3.4100176082030527, -2.9047412987985335, -2.9053605846695008, -3.35237549500052, -3.5741181179393675, -3.0948309593568566, -2.871492413717169, -3.7467120225166606, -3.019859346807118, -2.9695556842208437, -2.789155251553628, -3.128022113260405, -3.988269033214435, -3.3010589476643855, -7.0, -3.428604485471956, -2.760176931025949, -2.52880961249955, -2.5578650995755288, -2.878214415521801, -3.0975312952440524, -7.0, -3.603973901841678, -7.0, -7.0, -4.339828924582621, -2.7182844553673173, -3.6230838133595475, -2.388424986483075, -2.513714244622591, -3.015622630549385, -3.0772406874323766, -3.435730637625475, -3.138912913629216, -3.0023934410715984, -2.2713047640541584, -3.8929104579899185, -3.747628471726236, -2.712573180706935, -2.186385385887224, -7.0, -3.1907424491833214, -3.506129052395325, -2.705123700208126, -7.0, -3.365244562017571, -7.0, -2.2205063163424663, -4.331326050575092, -3.584082338518372, -2.6724377682208376, -2.171607230416448, -4.296687123772402, -2.9572339246004073, -3.9996306927125405, -3.4702004128593673, -2.9413776300597516, -3.207215337532426, -3.9819997141298784, -4.280783177955887, -7.0, -3.588182036789483, -2.6641717053619307, -2.069859983248331, -3.2814878879400813, -2.7541516790028147, -2.807196660710947, -2.4964959215304496, -1.0812433931844716, -2.7405381265727367, -3.50512735822657, -3.5015613104372822, -2.015217024496122, -2.8523896191735396, -1.7887104335455841, -2.45338482217222, -2.608414593151163, -3.1705969485122614, -2.480276495763096, -2.305867056602291, -2.3326424498122176, -2.8500113496270156, -3.1131631489984994, -2.6834273048663455, -3.391111613702803, -2.7054470176347998, -3.2879584058601505, -3.437886400119698, -4.27916484306227, -1.643008639801591, -3.6832046891531913, -4.279393142747864, -2.3808382244074395, -1.887367994404441, -1.9925469236750626, -3.57978359661681, -2.4699671366981004, -3.586969675475768, -2.6490318071748162, -3.6803581795496854, -4.278113115979834, -4.280578370368076, -2.7488813648247152, -3.5046520639080847, -2.8558779470193607, -2.4137043234788376, -3.580057801286702, -2.390732771727705, -2.5643980501637254, -2.4260674243490388, -3.977014440868899, -2.7251829315824416, -3.239572462938868, -3.121275254704084, -2.197936592210945, -3.2842953482305264, -3.6783362467321803, -3.8042530476353846, -3.0289003150037526, -1.9928825468140339, -3.5143041961369925, -3.0594743181457305, -2.3281925043138796, -3.5873517099208505, -1.870828498512569, -3.007994695660883, -2.7466546801789185, -3.5066403055665023, -3.208710019906401, -2.7698266737436468, -3.502518157503245, -2.068038098556065, -2.8433885229380875, -3.4377732053209487, -3.171321328174317, -2.5700119525533682, -3.9770831203158528, -3.802705327074352, -2.535121426893738, -3.1448409732702785, -3.5113708138745223, -2.252104451820851, -3.180633086894785, -2.8541642908673475, -3.1478529205561894, -1.9002933004400744, -2.4261184631759893, -2.330413773349191, -2.7056926965377035, -4.2785020944938825, -4.278547833775853, -2.1551005453858165, -2.782124393777497, -3.239572462938868, -2.571602970874123, -1.2636660648733542, -2.783058584878388, -1.6252634418229994, -7.0, -2.2113642631514434, -3.3261081836066806, -3.4474681309497557, -3.678222375239904, -7.0, -3.1714113887235333, -2.8033249304451706, -3.079543007402906, -3.97806633408362, -3.678700434998304, -3.976922851374828, -1.713722071471778, -7.0, -3.1105448196607366, -3.803457115648414, -2.9796394122229075, -3.2081052932151874, -3.5036318211228035, -3.169787434471045, -2.4873023607462903, -2.9389989524702442, -3.3866549981631726, -3.678700434998304, -2.4578818967339924, -3.8009002862504695, -4.278067330888662, -4.278136006715478, -2.8203600231266415, -2.627934528249084, -3.004728546096142, -0.5125801924184004, -2.600220218753284, -3.1308762975873003, -2.711602055927109, -3.8007857903277626, -2.1736892394459417, -2.4187844927322755, -3.9770373352246815, -3.5792575532587234, -7.0, -2.05594595104709, -2.7105807200477456, -2.7750916633149307, -3.2775862957847632, -7.0, -1.8299420573070557, -3.5789599423109, -2.51419604972685, -3.8010834169645062, -3.5850544459866267, -4.277838333002047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.477044607753807, -7.0, -7.0, -7.0, -7.0, -3.0337364064361574, -3.0550723824494175, -3.4774106879072515, -3.458939861890326, -7.0, -7.0, -2.803424597623472, -7.0, -7.0, -3.3261309567107946, -2.943198706108668, -7.0, -7.0, -7.0, -7.0, -3.4556821645007902, -7.0, -3.540058216787737, -7.0, -7.0, -2.9777236052888476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.734351707294765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.057729481433751, -3.4186326873540653, -7.0, -7.0, -3.822494985278751, -7.0, -7.0, -7.0, -7.0, -3.0810591230013196, -7.0, -7.0, -7.0, -7.0, -3.7301629511925354, -7.0, -7.0, -3.7528164311882715, -7.0, -7.0, -3.002957585345823, -7.0, -7.0, -3.8646692651730175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5433567985654086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.708183718356779, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2538950571317695, -3.4510184521554574, -3.4726833296130404, -3.7652959296980564, -2.6423481186113245, -7.0, -7.0, -3.8158432906632664, -3.475525915039281, -7.0, -3.456290100882691, -3.763502865467597, -7.0, -7.0, -3.5621441079960707, -7.0, -7.0, -7.0, -7.0, -7.0, -3.706888394981618, -7.0, -7.0, -7.0, -7.0, -3.5880101174205477, -7.0, -7.0, -7.0, -3.90080393481037, -3.204052118841129, -7.0, -7.0, -3.752432609261474, -3.9373172477624943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7989267385772014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0291549471648436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5419950357274104, -7.0, -7.0, -3.126630854711548, -7.0, -3.4776999283321306, -7.0, -3.7816835845073506, -3.7901443650429005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5529577650807846, -7.0, -3.7940695839816327, -7.0, -7.0, -7.0, -3.749890841271422, -2.158513262616432, -2.70594142445768, -7.0, -7.0, -2.526867723387192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7839035792727347, -3.794418330874141, -3.460797647928118, -3.7032884126289742, -7.0, -7.0, -7.0, -7.0, -3.747334109615905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1871135061025466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9658062406544436, -7.0, -7.0, -3.84223468634724, -7.0, -7.0, -7.0, -7.0, -7.0, -2.755747850412951, -7.0, -3.361940210731115, -7.0, -7.0, -7.0, -1.3853156915992284, -7.0, -3.5037226064864795, -3.358379073147656, -3.831613855309099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.606596309179285, -7.0, -7.0, -7.0, -3.3601861899515217, -7.0, -7.0, -3.3461573022320086, -7.0, -7.0, -2.8690849738326705, -7.0, -3.5251096222719336, -7.0, -7.0, -7.0, -7.0, -7.0, -4.002415298194856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4689378056654614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.856366323659248, -7.0, -3.596347284832664, -7.0, -7.0, -2.439786761936646, -2.7284214238688698, -7.0, -7.0, -7.0, -3.800648355363988, -2.7614982691650285, -3.206353560072406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.890700397698875, -7.0, -7.0, -2.673783970267478, -3.0707693669341825, -4.379559310918327, -3.777644277696485, -3.6628657175303223, -2.5090855878980047, -2.974804668354214, -4.181772152056479, -2.675924914230962, -7.0, -2.5728175888328457, -4.031105362355941, -3.663546741039115, -3.992868978354398, -1.9790193923221266, -4.085807712290026, -3.5205854165951167, -2.3414563143680662, -2.9530486891810788, -3.548578385603278, -4.1275583020046325, -4.2745503849095305, -2.643690860483486, -3.1980611267337333, -3.75878577232103, -7.0, -4.2003853242323865, -3.74795530690673, -7.0, -2.575780568156982, -2.94509420180716, -3.5591782023538547, -3.877640056831926, -3.3557919596966648, -3.1101780389942686, -4.054402366806568, -4.221283799492686, -3.4014318740294134, -3.630151721833672, -4.162504664521149, -3.816241299991783, -7.0, -3.6285421834125686, -7.0, -7.0, -7.0, -7.0, -4.128366953938082, -4.059298292408071, -3.545059584694003, -3.154271775993095, -3.50478791537113, -4.018908444316327, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8394151926838935, -3.404890706906996, -7.0, -3.4054239806799105, -3.239851544802794, -4.886919168061725, -7.0, -7.0, -7.0, -3.0625443813464646, -7.0, -7.0, -3.6725134728685087, -3.748317262085834, -7.0, -3.9967305154351527, -4.190499779633488, -4.084522658021688, -7.0, -7.0, -3.9472866446777983, -3.015999120957349, -7.0, -7.0, -3.9605754142007257, -2.7643629658980102, -7.0, -3.9064427938170323, -7.0, -7.0, -3.9727580839035395, -3.7176982348423726, -3.7645497190644672, -7.0, -7.0, -2.17070165581607, -3.156145156435762, -1.8099139515895757, -3.283225823810244, -2.669316880566112, -2.3893137784594445, -2.2524578842218443, -2.0596799053912447, -2.228359829144681, -7.0, -3.452935870201179, -2.1434774309043974, -2.247378036552128, -1.8902377676676874, -3.103940485083021, -2.013479936380004, -2.181664976187411, -2.1358770816547334, -1.78890692406502, -1.844108633096734, -2.394721010746106, -2.5803546611065915, -2.3193143040905118, -2.193750533339446, -1.841263185235105, -1.809596708926521, -2.9191528354245166, -2.7501225267834, -1.8956200972968704, -2.4683473304121573, -7.0, -1.6361099826579604, -2.133807926868157, -2.065400258114976, -3.7507397512353506, -1.4299155111056692, -3.4733409641859354, -1.8901908070372926, -2.8586875505162346, -3.74795530690673, -3.7562556487542333, -2.286653597566442, -2.0669721121857587, -2.3467874862246565, -1.099284687397692, -7.0, -1.7974954977507929, -2.3888114134735234, -1.621325570893433, -7.0, -1.8886006620281743, -2.980154931341663, -2.9660075670036736, -2.1444758842037395, -2.2207803128431354, -3.2786774022541683, -3.458033192496506, -3.1138478924796797, -1.721955569498987, -2.514198107297303, -1.9469432706978254, -1.8159074241980515, -3.076203381088768, -1.9911381386881442, -3.301753217283077, -1.5883005914475676, -2.690122214141457, -2.7010640378177277, -2.7958484311422427, -7.0, -1.8616742004490006, -1.7695510786217261, -3.7647737169110402, -3.073938190635253, -1.5388454931448834, -7.0, -7.0, -2.277726126702004, -2.6762714179371425, -3.3087777736647213, -2.244565729667386, -2.760285373877668, -1.7454291911381372, -1.598257603523139, -1.8964681993902235, -1.6383530931404153, -1.5788248182115736, -1.6855806561176072, -3.448087666692341, -3.146902869928199, -2.335093023976551, -2.050452611769055, -2.6782147827453997, -2.1550322287909704, -2.0044578585360924, -2.346092058563005, -1.4542188324826077, -2.2113642631514434, -7.0, -3.4555300473427017, -2.2109940047208836, -3.153204900084284, -3.4494012529962212, -3.7737864449811935, -2.8505100927111355, -1.9209082899761751, -7.0, -3.279894980011638, -7.0, -1.4386662328043016, -7.0, -2.571927088525855, -7.0, -2.501591718957243, -2.3447560348940004, -2.645271078927407, -2.443300248364033, -2.01725599733078, -1.8878541021310815, -2.264101992153716, -7.0, -1.665436659184819, -7.0, -7.0, -7.0, -2.384039633727167, -3.287353772714747, -7.0, -2.48022477637793, -2.1379459462394763, -2.740573205485716, -3.4579575512036382, -7.0, -2.9277124619002755, -3.4510184521554574, -7.0, -2.3749459199625567, -3.447778009294621, -7.0, -2.5127733089991104, -2.0847629622918573, -2.59659709562646, -7.0, -7.0, -3.2935835134961167, -7.0, -1.9524168070596342, -3.2711443179490782, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357649032918467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5859117103194342, -7.0, -7.0, -4.275576227946301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.558528576962073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02816441942447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3010299956639813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5825557388650933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5150786750759226, -7.0, -7.0, -7.0, -7.0, -4.435406348315538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4089180208467798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.307496037913213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.251005173493635, -7.0, -7.0, -7.0, -2.342422680822206, -7.0, -7.0, -7.0, -3.2174839442139063, -7.0, -7.0, -7.0, -7.0, -3.6703386411274423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0189084443163274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1583624920952498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.798650645445269, -7.0, -7.0, -5.149385406360198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985201858364572, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6848453616444123, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0088130090520893, -7.0, -7.0, -2.8444771757456815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.119420863442087, -7.0, -7.0, -7.0, -4.129475054459623, -7.0, -7.0, -3.752202153176521, -7.0, -7.0, -7.0, -7.0, -7.0, -2.720159303405957, -7.0, -7.0, -7.0, -7.0, -5.0979441388640945, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8129133566428557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0433622780211294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7944880466591697, -7.0, -7.0, -2.3324384599156054, -7.0, -7.0, -2.586212104232087, -7.0, -7.0, -7.0, -4.747054280687472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431886211662398, -7.0, -7.0, -7.0, -7.0, -4.802233085547551, -3.5474758163938844, -7.0, -7.0, -4.174408732073123, -7.0, -7.0, -7.0, -7.0, -7.0, -4.483573034190131, -7.0, -7.0, -7.0, -4.449339526174968, -7.0, -4.22671157884568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0409976924234905, -3.7256549915343533, -3.0229707105775065, -7.0, -7.0, -7.0, -7.0, -7.0, -2.823619114736917, -2.7168377232995247, -7.0, -7.0, -3.698448538015329, -7.0, -7.0, -7.0, -2.531478917042255, -7.0, -4.184123354239671, -3.3372595397502756, -7.0, -3.311310673889323, -4.377556663304251, -5.17231973025903, -7.0, -7.0, -7.0, -4.008781090107339, -7.0, -4.339784239738522, -7.0, -7.0, -7.0, -3.6506959797606107, -7.0, -4.275265273107007, -7.0, -3.6413749451921253, -7.0, -3.678032523045486, -7.0, -7.0, -3.650005149798325, -3.9606491203532737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.209112703738592, -2.1903316981702914, -1.8305084739693955, -7.0, -2.888179493918325, -3.2091574233475386, -3.02201573981772, -1.9742813588778305, -7.0, -3.077149794716969, -7.0, -3.423215144466514, -1.595596416654004, -7.0, -7.0, -3.7409150764812824, -3.203032887014711, -7.0, -7.0, -7.0, -3.1715802019320636, -7.0, -7.0, -2.0726174765452363, -2.2671717284030137, -7.0, -3.1280760126687155, -7.0, -7.0, -7.0, -3.4941446512653913, -4.44004277670934, -7.0, -7.0, -1.4670528600591584, -7.0, -1.6114577656683426, -7.0, -2.100370545117563, -2.451615889878312, -7.0, -7.0, -3.2898118391176214, -1.8016323462331667, -3.395064164331242, -2.5532760461370994, -3.2704459080179626, -1.5409548089261327, -7.0, -1.5393897820725049, -7.0, -4.330941100576426, -7.0, -1.4186694935307818, -1.9837765880368856, -7.0, -3.8038666342849843, -7.0, -2.8457180179666586, -7.0, -2.2321487062561682, -2.9729401192703837, -1.9645738809210547, -7.0, -7.0, -7.0, -7.0, -2.428134794028789, -3.1035471720766425, -7.0, -1.5910646070264993, -2.2050238216541693, -3.2347702951609167, -7.0, -1.738384123512156, -2.551117162742455, -7.0, -2.82020145948564, -2.332270096090313, -2.653694795315082, -2.824288582459545, -2.9434945159061026, -2.7221401254574156, -3.658393026279124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.852784868680548, -7.0, -3.8347808766998273, -3.101403350555331, -3.4776517349700544, -3.3261081836066806, -3.4555300473427017, -7.0, -7.0, -1.5259698222574796, -7.0, -1.833420339025857, -1.8498444750387184, -7.0, -7.0, -2.123851640967086, -7.0, -3.1488801691282298, -1.8573324964312685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.428134794028789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8150081817089876, -7.0, -3.451939869365103, -7.0, -7.0, -7.0, -7.0, -7.0, -3.431914899362271, -7.0, -7.0, -3.1547282074401557, -7.0, -7.0, -7.0, -7.0, -2.6541765418779604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.846337112129805, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8506462351830666, -7.0, -4.362765126555426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.035601249204444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9512308693093825, -7.0, -7.0, -2.600428325732131, -7.0, -3.0034605321095067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4775191756421684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.740733655388644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.72222246396973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732522420609542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.409087369447835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.420120848085703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1020905255118367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.673911327036779, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9286944977199605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.386320573894046, -7.0, -7.0, -7.0, -4.203236924830023, -7.0, -7.0, -7.0, -3.3641756327706194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.31135115757134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2229764498933915, -7.0, -7.0, -7.0, -4.798774909075712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.588761362909286, -7.0, -7.0, -4.073925980204891, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.509016311883662, -4.274080839868691, -7.0, -7.0, -4.436305797450854, -3.106870544478654, -3.039889797736181, -7.0, -3.623114049449181, -7.0, -2.9712371811975107, -4.279473019293323, -4.359825999824098, -4.504871669262045, -2.767259442157535, -4.289142835932333, -7.0, -3.076276255404218, -7.0, -7.0, -7.0, -4.6260527959344335, -7.0, -3.9432683355836136, -7.0, -4.169498094684968, -4.630244761469706, -7.0, -7.0, -4.009442396801993, -3.456315413106618, -7.0, -7.0, -4.191003634067977, -3.82633400562222, -7.0, -7.0, -4.358524934046989, -7.0, -7.0, -7.0, -7.0, -4.314035845679718, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.087390944997188, -3.8537286234901957, -3.2656038765850357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0789414130924255, -7.0, -7.0, -7.0, -7.0, -4.315561034645111, -7.0, -7.0, -3.6532125137753435, -7.0, -7.0, -7.0, -7.0, -4.287533011050722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1330489863973865, -3.967021168372457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9150343529019414, -4.090011024007147, -2.5776194396564844, -7.0, -3.2182728535714475, -2.528488190640618, -2.979092900638326, -3.4089180208467798, -2.4210552287780143, -7.0, -7.0, -2.9683495042505643, -2.5149902330672873, -2.8395084576685545, -2.859438535455056, -2.809222921689422, -0.9572480195790501, -2.700775805199281, -2.020775488193558, -2.2710211507221385, -2.154783499881748, -2.4774830160749435, -2.9426280309747153, -1.547968919216163, -2.078902762882005, -7.0, -2.9599948383284165, -7.0, -2.683347276399375, -2.1527250407314686, -7.0, -2.9840043644446514, -3.00156655355653, -3.111199971250849, -2.858537197569639, -1.0730769651536745, -7.0, -1.9590413923210934, -7.0, -7.0, -7.0, -3.4916417934775863, -2.6532125137753435, -7.0, -2.2447223227699977, -7.0, -2.2896367235821415, -2.620829816274487, -2.3359135659099737, -7.0, -1.6936641487670914, -2.6175245348862926, -7.0, -2.65864725984816, -2.20682587603185, -7.0, -7.0, -3.6231458746379395, -2.63321588535909, -2.1653432655224587, -2.2444538428721974, -2.5040458751996155, -7.0, -3.158132645843839, -3.0425755124401905, -2.326189510638604, -7.0, -2.5782570766553374, -7.0, -7.0, -2.331115695085382, -1.8440627725826517, -2.957607287060095, -3.0107238653917734, -2.506118305325085, -7.0, -7.0, -7.0, -7.0, -2.7777891874348675, -3.281790637678311, -3.159266331093494, -7.0, -7.0, -2.587636144710017, -2.287801729930226, -2.0867551829841657, -2.0141003215196207, -7.0, -7.0, -3.2392312063546864, -2.0344650511984494, -2.6175245348862926, -2.216731267280442, -3.20883396239637, -3.255995726722402, -2.486133275238764, -3.4474681309497557, -2.2109940047208836, -7.0, -7.0, -7.0, -2.377791767588193, -7.0, -7.0, -3.0494764543837896, -7.0, -7.0, -7.0, -2.6323083929197475, -7.0, -0.6128430289361774, -7.0, -7.0, -3.0464951643347082, -2.932980821923198, -2.501971645918664, -2.480438147177817, -1.8881965187319025, -7.0, -7.0, -2.1754473827599763, -7.0, -7.0, -7.0, -2.975891136401793, -2.957607287060095, -7.0, -3.2321487062561682, -2.4224256763712044, -3.5277587525209717, -7.0, -7.0, -7.0, -7.0, -7.0, -3.247660872434416, -7.0, -7.0, -7.0, -2.318975855596643, -3.158060793936605, -7.0, -7.0, -7.0, -7.0, -2.375286972498473, -2.841359470454855, -7.0, -7.0, -7.0, -7.0, -2.0718820073061255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4313637641589874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.952792443044092, -3.877492286377779, -7.0, -7.0, -7.0, -7.0, -2.0916669575956846, -7.0, -4.558372522169157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.33577873881047, -7.0, -7.0, -7.0, -2.187520720836463, -2.3180633349627615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2900346113625183, -7.0, -2.7558748556724915, -7.0, -7.0, -7.0, -7.0, -4.027634965777544, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7686381012476144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.271841606536499, -7.0, -7.0, -2.2528530309798933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.280805928393667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9581177338764024, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.973589623427257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9190780923760737, -7.0, -7.0, -7.0, -2.75815462196739, -7.0, -7.0, -3.8828577947020895, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3324384599156054, -7.0, -2.912487761332324, -7.0, -7.0, -7.0, -7.0, -3.4659866511569004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.632457292184724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.83968749733336, -7.0, -7.0, -2.311753861055754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1172712956557644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3096301674258988, -7.0, -7.0, -5.149345378509518, -7.0, -7.0, -2.2041199826559246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.173186268412274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7637487823121547, -7.0, -7.0, -3.1420764610732848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7512020945883533, -7.0, -7.0, -2.6702458530741238, -7.0, -2.7913397039651393, -2.4065401804339555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8041394323353503, -7.0, -7.0, -2.629409599102719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0382226383687185, -4.067120472689078, -2.3860528489403894, -7.0, -2.409087369447835, -7.0, -2.6299190355035416, -7.0, -7.0, -2.1931245983544616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.663323933628212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431781772429124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784524576197029, -7.0, -7.0, -7.0, -7.0, -7.0, -4.226599905207357, -4.22050034561473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.035829825252828, -7.0, -3.4568646864591064, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1755842863685224, -2.410496045616074, -3.465010864717408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6537140754412487, -4.678545692299574, -7.0, -2.4216039268698313, -3.265525335219074, -2.4800069429571505, -4.309715314859149, -7.0, -4.6407695459602785, -7.0, -7.0, -7.0, -3.171921379366514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.155477742147295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6860102913152857, -1.290034611362518, -2.25927524755698, -7.0, -3.3636119798921444, -3.5098742850047193, -7.0, -2.568201724066995, -7.0, -3.4745804523423796, -7.0, -3.4511311747360724, -1.8623301865867783, -2.388574805196408, -7.0, -7.0, -3.199480914862356, -3.4235735197327357, -7.0, -7.0, -3.4709981696608736, -7.0, -7.0, -1.6720978579357175, -1.6952314347766169, -7.0, -3.525563058270067, -7.0, -7.0, -7.0, -3.8621512641362776, -4.439940280893153, -7.0, -7.0, -1.7178553484963925, -7.0, -0.9197316583111611, -7.0, -1.4529358702011792, -2.32342399587229, -2.5428254269591797, -2.7693773260761385, -7.0, -1.5390760987927767, -3.217659381292399, -7.0, -3.267406418752904, -1.8129133566428557, -7.0, -1.1050617650276022, -3.0090257420869104, -7.0, -7.0, -1.7652959296980566, -1.4673614174305063, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3988077302032647, -3.1213289151698236, -1.8856842356521324, -7.0, -2.337459261290656, -7.0, -7.0, -7.0, -3.705007959333336, -2.5658478186735176, -1.6283889300503114, -1.8864907251724818, -7.0, -7.0, -1.3380135619171512, -2.414081572540633, -1.4945340562373441, -7.0, -2.3498263322325768, -2.6473829701146196, -2.9474337218870508, -2.2340108175871793, -2.876465278343224, -3.355930187078868, -3.225050696138049, -7.0, -7.0, -7.0, -7.0, -7.0, -2.444044795918076, -7.0, -4.311711488795424, -2.795184589682424, -3.95433900860246, -3.678222375239904, -3.153204900084284, -1.5259698222574796, -7.0, -7.0, -7.0, -1.761551988564182, -1.8105205435269653, -7.0, -7.0, -1.9225524667613758, -7.0, -3.1942984514279047, -7.0, -7.0, -7.0, -7.0, -2.7481880270062007, -2.482873583608754, -2.606381365110605, -7.0, -7.0, -2.214843848047698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.24551266781415, -2.6074550232146687, -3.0573807905423553, -3.5018804937550585, -7.0, -7.0, -7.0, -7.0, -2.2741578492636796, -7.0, -3.577836341292744, -7.0, -7.0, -7.0, -7.0, -2.9474337218870508, -7.0, -7.0, -2.6414741105040997, -7.0, -3.5456781497920256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.877210039451698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517538973850582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3552599055273786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8499719123288503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.746011107751926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.43288594961979, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732289194860667, -7.0, -3.7255441224863532, -7.0, -7.0, -7.0, -4.39137623916965, -7.0, -7.0, -4.349743633744951, -7.0, -7.0, -7.0, -7.0, -7.0, -4.483002138604418, -7.0, -7.0, -7.0, -7.0, -7.0, -4.402132364931751, -4.2187455122234745, -7.0, -7.0, -4.173302841888186, -3.7841892053809607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.152838509892218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.371990911464915, -7.0, -3.284791555950146, -7.0, -7.0, -7.0, -3.04941186087108, -3.9841671271469883, -7.0, -7.0, -7.0, -3.7708520116421442, -7.0, -4.62682264891478, -7.0, -7.0, -2.967079734144497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9378520932511556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.387641905018062, -7.0, -3.9622272313500853, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3152704347785915, -7.0, -7.0, -7.0, -7.0, -3.5820633629117085, -7.0, -3.3880123433641907, -7.0, -3.2513948500401044, -7.0, -7.0, -7.0, -7.0, -3.483974250740474, -2.5514499979728753, -7.0, -7.0, -7.0, -7.0, -2.5508396050657853, -2.79309160017658, -3.654850090561394, -7.0, -4.478696331677028, -7.0, -7.0, -7.0, -7.0, -3.6158448828747023, -7.0, -2.9995654882259823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3494717992143856, -3.207365037469072, -3.171433900943008, -7.0, -7.0, -4.266748965908202, -2.671543085262574, -7.0, -2.931966114728173, -4.310289623796099, -7.0, -7.0, -7.0, -3.4494012529962212, -7.0, -2.377791767588193, -7.0, -7.0, -7.0, -7.0, -3.137354111370733, -7.0, -7.0, -7.0, -4.146964796989748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.299942900022767, -7.0, -7.0, -2.8715729355458786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0149403497929366, -3.4394905903896835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.960787780819836, -7.0, -7.0, -7.0, -7.0, -7.0, -3.059689611271879, -7.0, -7.0, -7.0, -7.0, -2.5921767573958667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7576522021542784, -7.0, -7.0, -7.0, -3.630122642859312, -3.655234507034294, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9123814989188004, -3.6109793799229974, -7.0, -3.0565237240791006, -3.5170064590194547, -7.0, -7.0, -7.0, -7.0, -2.6910814921229687, -7.0, -3.199015465037119, -2.6989700043360187, -7.0, -7.0, -2.2608660716137683, -2.5409548089261325, -2.574031267727719, -2.74350976472843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6532125137753435, -2.6522463410033232, -7.0, -7.0, -7.0, -7.0, -3.119420863442087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.037386652582377, -7.0, -7.0, -7.0, -7.0, -7.0, -2.918554530550274, -7.0, -7.0, -4.224014811372864, -7.0, -2.741151598851785, -7.0, -2.632457292184724, -7.0, -7.0, -7.0, -7.0, -2.89707700320942, -7.0, -2.9995654882259823, -2.7466341989375787, -2.385606273598312, -7.0, -4.044422155711843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6464037262230695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.767304317453273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5444401373176926, -3.804037153146142, -7.0, -2.8567288903828825, -7.0, -4.136165456814543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.762678563727436, -7.0, -7.0, -3.9721565358594937, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6526857769225343, -2.745855195173729, -3.456821348021599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.383240712265224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8847953639489807, -2.357934847000454, -7.0, -2.0596175052644243, -2.7126497016272113, -7.0, -4.030980018424236, -2.6127838567197355, -7.0, -7.0, -7.0, -7.0, -2.6599162000698504, -7.0, -3.273926780100526, -7.0, -3.391170433298193, -7.0, -7.0, -3.1037575071243726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5165353738957994, -7.0, -2.826722520168992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3654879848909, -7.0, -7.0, -7.0, -2.6522463410033232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7701152947871015, -7.0, -7.0, -2.5943925503754266, -2.558708570533166, -7.0, -7.0, -7.0, -7.0, -2.9334872878487053, -2.1527250407314686, -3.5378190950732744, -5.150089908130527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5180750368775167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.238547887681328, -7.0, -7.0, -7.0, -2.849009701991132, -7.0, -7.0, -7.0, -4.198986805670933, -7.0, -7.0, -7.0, -3.6351820486562674, -7.0, -7.0, -2.510813010512496, -3.1942367487238292, -7.0, -7.0, -7.0, -2.4065401804339555, -2.250420002308894, -2.1405080430381798, -7.0, -7.0, -2.45408227073109, -7.0, -7.0, -7.0, -7.0, -2.9792447784093805, -7.0, -7.0, -7.0, -4.609092600000719, -7.0, -2.5877109650189114, -7.0, -7.0, -7.0, -2.8512583487190755, -7.0, -7.0, -7.0, -2.8318697742805017, -2.494154594018443, -7.0, -7.0, -4.621602055622412, -2.780317312140151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3450468246483553, -7.0, -7.0, -7.0, -2.7596678446896306, -2.690196080028514, -7.0, -7.0, -7.0, -7.0, -7.0, -4.734398141431968, -7.0, -2.2761334151353645, -4.0701117827822, -7.0, -7.0, -7.0, -7.0, -2.738384123512156, -3.4605971888976015, -7.0, -2.5998830720736876, -7.0, -7.0, -2.6283889300503116, -2.1481911962420113, -7.0, -2.6473829701146196, -2.5148796552227934, -1.9513375187959177, -2.627195109792065, -7.0, -7.0, -4.6199798058330535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9565365919733257, -7.0, -7.0, -7.0, -7.0, -7.0, -4.09572712255598, -7.0, -7.0, -4.176621739306073, -7.0, -4.610415271187788, -7.0, -7.0, -7.0, -4.7862472912906115, -7.0, -7.0, -7.0, -7.0, -7.0, -4.705829514521635, -4.226780286814562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6447667303840188, -7.0, -2.9641095666974007, -7.0, -2.940516484932567, -4.05816020349183, -7.0, -4.545294743227404, -2.376787456042087, -2.952792443044092, -4.076203381088768, -4.14525857696561, -3.1153608453944126, -7.0, -3.042260406689452, -7.0, -2.7551122663950713, -7.0, -4.190583795977179, -3.3807537708039, -7.0, -3.2430762267428355, -4.50354555744551, -5.1729880216628, -7.0, -2.8411508254919644, -7.0, -3.181420092560748, -7.0, -4.943009497346199, -3.6221103603612193, -7.0, -7.0, -3.6723749787460793, -7.0, -7.0, -7.0, -7.0, -7.0, -4.162175936530162, -7.0, -7.0, -2.8422325328084246, -3.389071533777558, -7.0, -3.5934874556083014, -7.0, -7.0, -7.0, -7.0, -7.0, -1.904895787855206, -7.0, -7.0, -7.0, -2.532973908129206, -1.6754450381412995, -1.9138138523837167, -7.0, -2.627024295834346, -2.955600296732481, -2.5034501934420117, -1.6217695803398526, -2.6580113966571126, -2.8889513237201387, -2.5269850685599957, -3.267804082331647, -1.7403626894942439, -2.288696260590256, -7.0, -3.1560946306394277, -2.959756672990995, -2.7613263224214566, -7.0, -2.9523080096621253, -2.4610344348262077, -7.0, -3.104487111312395, -2.214843848047698, -1.9250172547728448, -7.0, -3.239674787646781, -7.0, -2.6344772701607315, -4.17064302283611, -2.951654652291387, -3.964660260021084, -7.0, -3.397070549959409, -1.3985829317826486, -7.0, -1.3802112417116061, -7.0, -1.5478693332304245, -1.9308535573499908, -7.0, -2.9190780923760737, -3.1383026981662816, -2.018076063645795, -3.715836275164994, -2.3710678622717363, -2.4147645023395254, -2.269512944217916, -2.3494717992143856, -1.4060917606915835, -2.4972752863579952, -4.335558188065861, -2.8228216453031045, -1.7662268935741685, -1.2778383330020473, -7.0, -3.5180530800797216, -3.009450895798694, -7.0, -7.0, -2.020005934626871, -2.545404787551787, -1.5763413502057928, -3.1271047983648077, -1.8672710189654482, -7.0, -7.0, -1.3155887158349062, -3.2478096594727353, -2.6893088591236203, -1.989746365634447, -1.9420080530223132, -2.811127970852324, -2.576341350205793, -1.8692317197309762, -2.0202337552699294, -2.204572137284902, -1.5859731714345076, -2.5020252559029195, -7.0, -2.8600383898071935, -2.037027879755775, -2.6261823846588936, -7.0, -7.0, -3.253580289562183, -2.1117104708745447, -2.595496221825574, -4.273949892550008, -7.0, -2.010299956639812, -7.0, -3.5384480517102173, -3.17376882313665, -3.4885507165004443, -3.1714113887235333, -3.7737864449811935, -1.833420339025857, -7.0, -1.761551988564182, -7.0, -7.0, -1.9134353822230297, -7.0, -1.417194807964776, -1.5975123635772417, -2.2648178230095364, -2.812731096942942, -1.312811826212088, -7.0, -7.0, -2.720159303405957, -7.0, -7.0, -2.8102325179950842, -7.0, -7.0, -2.2533380053261065, -1.410308485914647, -3.0224283711854865, -7.0, -7.0, -2.271841606536499, -7.0, -2.4727564493172123, -2.8109042806687006, -2.566301484735771, -3.533772058384718, -7.0, -2.414137362184477, -2.2648178230095364, -7.0, -2.330413773349191, -7.0, -3.168021270953063, -7.0, -7.0, -7.0, -3.4848690327204026, -7.0, -7.0, -7.0, -2.832508912706236, -7.0, -3.5746099413401873, -7.0, -7.0, -2.5599066250361124, -7.0, -2.9273703630390235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.364119300390762, -7.0, -7.0, -7.0, -7.0, -2.5484771632553307, -2.2595938788859486, -7.0, -7.0, -7.0, -7.0, -3.9359101364305076, -2.701088048570016, -7.0, -7.0, -3.3497344992127642, -7.0, -7.0, -7.0, -2.998259338423699, -2.673941998634088, -7.0, -3.964530684927539, -2.9800033715837464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.747353535486769, -7.0, -7.0, -7.0, -7.0, -2.173671784932268, -7.0, -7.0, -7.0, -7.0, -7.0, -3.155411956437706, -7.0, -2.972665592266111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3558727748926644, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1085650237328344, -7.0, -7.0, -3.633443205166375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.074816440645175, -7.0, -3.682248252589059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.826398782187618, -7.0, -7.0, -2.993876914941211, -7.0, -3.1341771075767664, -7.0, -2.6283889300503116, -7.0, -7.0, -2.5511269556556435, -7.0, -7.0, -7.0, -7.0, -3.216429830876251, -7.0, -3.5974757898703773, -4.120376479744434, -7.0, -7.0, -7.0, -3.5111674626951785, -7.0, -3.208441356438567, -7.0, -7.0, -7.0, -2.979548374704095, -2.7126497016272113, -7.0, -7.0, -3.5154322631124733, -7.0, -7.0, -7.0, -7.0, -7.0, -3.131378035763099, -3.033959590819456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.098539897992862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.70557864861638, -7.0, -7.0, -7.0, -2.625312450961674, -2.987219229908005, -7.0, -3.1648991988610664, -7.0, -7.0, -7.0, -2.9561684304753633, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1157768761589635, -7.0, -7.0, -3.013222034507356, -7.0, -7.0, -3.0806264869218056, -7.0, -7.0, -7.0, -7.0, -3.0017337128090005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.796445242184168, -7.0, -1.978940969735289, -2.3502480183341627, -2.4771212547196626, -2.312283165791478, -2.6299190355035416, -3.030599721965951, -2.9253120914996495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1649473726218416, -7.0, -4.037469404238489, -7.0, -2.4573771965239053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1692964762592784, -7.0, -7.0, -7.0, -7.0, -2.4819201376014313, -7.0, -7.0, -7.0, -3.2342641243787895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.710963118995276, -7.0, -2.9633155113861114, -3.050379756261458, -3.5060041550265835, -7.0, -7.0, -7.0, -2.1678709288089903, -7.0, -7.0, -3.017450729510536, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8296253533580495, -3.0622058088197126, -7.0, -7.0, -3.0111473607757975, -7.0, -2.1573560154410694, -7.0, -7.0, -3.219715475855501, -2.6875289612146345, -2.7596678446896306, -2.9894498176666917, -4.011802963585356, -7.0, -7.0, -2.9558938212459145, -7.0, -7.0, -2.3643633546157306, -7.0, -2.808885867359812, -2.3805730030668872, -3.258876629372131, -2.7319914490189294, -2.724821808681988, -3.000867721531227, -7.0, -3.2208922492195193, -7.0, -7.0, -7.0, -7.0, -3.12515582958053, -7.0, -2.6503075231319366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.49373680227684, -4.434080047708787, -7.0, -3.252610340567373, -3.9507176969896345, -2.7461150183833354, -7.0, -7.0, -7.0, -3.1908917169221698, -3.22284647997415, -7.0, -7.0, -2.916980047320382, -7.0, -7.0, -2.465878338646378, -7.0, -2.9537596917332287, -7.0, -2.1760912590556813, -2.3608554664937946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5076892305931007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3570959250957335, -7.0, -4.61523440120683, -7.0, -7.0, -7.0, -4.312318429847517, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4086553999424645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.361255520058149, -7.0, -7.0, -7.0, -7.0, -4.01598810538413, -3.7826875682349663, -7.0, -3.7740057302582093, -7.0, -3.94875518016827, -2.3305446835180503, -2.268928822432613, -3.4902043694603857, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4056877866727775, -7.0, -7.0, -7.0, -3.1258064581395266, -3.6669483178403244, -4.681706949373032, -4.572235371078456, -2.9827233876685453, -3.404833716619938, -2.9995654882259823, -2.926919638018857, -7.0, -7.0, -3.0642707529740063, -4.080698622871129, -7.0, -3.1099158630237933, -7.0, -4.2907467156120855, -7.0, -3.4032063416448066, -7.0, -2.4737496570134776, -7.0, -7.0, -3.4975462870162044, -2.978882520617143, -7.0, -3.2241643703992757, -7.0, -2.92668535582776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0623312368297984, -2.2157256645575676, -1.3549499934509917, -7.0, -2.8752060040968903, -2.065477859320429, -2.9380190974762104, -1.5116677767193454, -7.0, -2.4989010290429046, -2.574417135795665, -2.4856504575326674, -1.4486188281513872, -2.1513698502474603, -7.0, -3.791760804012905, -2.1480625354554377, -2.745465168670727, -7.0, -7.0, -3.085290578230065, -3.1931245983544616, -2.456619044777273, -1.4241553915088128, -2.7218106152125467, -7.0, -2.389106992659985, -7.0, -2.9474337218870508, -4.478321143704149, -3.6056869554272506, -3.8432483550956227, -7.0, -7.0, -1.6947958880615075, -3.0, -1.8226038992559745, -7.0, -2.493225621510431, -1.7246923259043043, -7.0, -2.5048105531506915, -7.0, -2.03342375548695, -3.2748503200166645, -7.0, -2.323252100171687, -7.0, -7.0, -1.8311381767490547, -2.386880986817247, -3.6454615702388433, -7.0, -2.1884597362982907, -2.2873537727147464, -7.0, -3.54703589974001, -7.0, -7.0, -7.0, -1.7012299980669174, -2.3258659195428875, -2.4917117901707675, -2.7964355588101744, -3.0546130545568877, -7.0, -7.0, -2.9786369483844743, -3.1584378838985643, -2.552972237463008, -2.1715175075429207, -1.980382171853643, -2.9025467793139916, -7.0, -1.7688846493563668, -1.6318967027420204, -0.8369292509368298, -2.8270460170047342, -0.7512351573632999, -2.0800156257123503, -2.746763897156223, -2.412740466538526, -2.044510177307225, -3.417969642214737, -2.3725438007590705, -3.050379756261458, -7.0, -7.0, -3.983265352566545, -7.0, -2.384263785722803, -3.39375064034808, -2.8779674948747114, -3.2893659515200318, -2.90655949500245, -2.8033249304451706, -2.8505100927111355, -1.8498444750387184, -7.0, -1.8105205435269653, -7.0, -1.9134353822230297, -7.0, -7.0, -2.942008053022313, -2.6766936096248664, -7.0, -2.1597636836762164, -2.1052668143618662, -7.0, -7.0, -2.288696260590256, -2.397592434038117, -3.000434077479319, -2.339650157613684, -3.201806642957022, -7.0, -2.831549851995756, -2.27600198996205, -2.8767949762007006, -7.0, -7.0, -7.0, -7.0, -2.7197454925295768, -7.0, -2.4399141343633817, -2.808773457761177, -3.5459253293558426, -2.9894498176666917, -2.916453948549925, -3.4577305482459986, -2.946943270697825, -7.0, -3.0131477995126383, -7.0, -7.0, -2.3671487688723643, -3.243905770217521, -7.0, -7.0, -7.0, -3.0549958615291417, -2.617000341120899, -3.6242820958356683, -2.9232440186302764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.949136910740208, -7.0, -7.0, -7.0, -7.0, -2.401528180600803, -7.0, -7.0, -7.0, -7.0, -7.0, -2.697727386944923, -7.0, -7.0, -3.2397998184470986, -3.71594766128561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3846221884515435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.403977963669355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5508884680813524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.067597743260208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8771985152717896, -7.0, -7.0, -7.0, -3.610104774904159, -7.0, -3.543819805142658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.863382348440788, -7.0, -7.0, -7.0, -7.0, -3.9413623357117613, -7.0, -7.0, -7.0, -3.404063614883892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7941471074965745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9077247853330963, -7.0, -7.0, -3.3711030620190323, -7.0, -7.0, -3.4893959217271293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.668106237932731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4705574852172743, -7.0, -7.0, -7.0, -2.8796692056320534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.762453482363547, -4.680081571848349, -7.0, -7.0, -7.0, -3.0247592390353963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.705614291809137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6094876898532853, -7.0, -7.0, -7.0, -3.649334858712142, -7.0, -7.0, -7.0, -1.6781215307589266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.716086853774832, -7.0, -7.0, -7.0, -2.555429791511689, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4832203908795663, -7.0, -7.0, -7.0, -7.0, -3.569958818096594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.060130999531045, -7.0, -4.039090359899945, -7.0, -7.0, -3.6207258227036743, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4168900301730125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.211792701460719, -3.487540245067744, -3.8466463285771173, -7.0, -3.2364631637113215, -3.183933830133716, -2.353700623519698, -3.160199906751567, -2.7060562169997526, -7.0, -2.7065536684845606, -3.8247872980310382, -2.8333201757088684, -2.9434219625521845, -2.454973164446654, -3.4287825114969546, -3.2263259684529233, -2.4714393298509454, -2.467467158083198, -3.520433141781531, -3.5451008497880436, -3.5535324302784037, -1.4706391271917423, -2.950323707873046, -2.182273491306374, -3.74808461124624, -2.9682299255667552, -2.587398338914126, -7.0, -2.328627177542981, -2.502336063378186, -3.0517311960598494, -3.5172618951360146, -2.862926062941731, -2.7089704819510434, -3.694166295933198, -3.5363690286780414, -3.3951341074778125, -1.8462907933844055, -4.0664377464539925, -7.0, -4.599839422193567, -3.0988359340440947, -3.5989545668854097, -7.0, -4.138933940256924, -7.0, -3.795022162871388, -7.0, -7.0, -4.153967221645479, -4.212427332726591, -7.0, -7.0, -3.417859036208306, -7.0, -7.0, -3.748885440009517, -4.251540888649978, -7.0, -7.0, -3.399587200018076, -3.6107532922391736, -3.9243798055581998, -7.0, -7.0, -7.0, -4.160218347068163, -7.0, -4.653391020371839, -3.814647069451856, -4.143764014612251, -7.0, -7.0, -3.799994944688714, -7.0, -3.6055205234374688, -7.0, -7.0, -3.925879089301501, -7.0, -7.0, -3.9322301667562654, -4.115088823225195, -7.0, -4.055865492428976, -7.0, -7.0, -7.0, -4.106530853822381, -7.0, -7.0, -7.0, -7.0, -2.3893188704635238, -1.930215397978364, -7.0, -3.264463634204881, -2.6364878963533656, -2.5407762338899396, -3.0095217143038493, -2.172700208504903, -7.0, -7.0, -2.8893526431528884, -2.522299299588104, -2.845747057728752, -3.239674787646781, -2.5644030148909867, -3.175898196379951, -2.3985367534165967, -2.470452494407648, -2.0482897721854596, -2.409087369447835, -1.6861612792710872, -2.700310298799515, -2.9339931638312424, -2.4755501306283416, -7.0, -7.0, -7.0, -2.6651586852921563, -7.0, -7.0, -2.3393760423636945, -2.562585506193841, -1.588261806023172, -2.9612628523150515, -2.779776808670381, -7.0, -2.5456444325852305, -7.0, -7.0, -7.0, -3.4087486061842442, -3.4665710723863543, -3.500648063371912, -1.7003686995285836, -7.0, -2.2187688400680257, -2.2327286876731725, -1.7001945196638903, -7.0, -2.422488823515177, -3.4559102403827433, -3.5563025007672873, -2.9319298313009488, -3.4774106879072515, -7.0, -7.0, -2.1547706418025814, -2.221586454888828, -2.8262044234992527, -2.911290807477995, -2.2268453039888003, -7.0, -2.798809951364486, -7.0, -2.493893521283257, -3.1781132523146316, -1.6984000639892567, -1.861608054071942, -7.0, -2.8410749297371463, -2.6740734238074024, -7.0, -7.0, -1.6297705116057013, -7.0, -7.0, -3.3354579006893843, -7.0, -3.508798965403905, -3.4130761314903664, -7.0, -3.418218402783965, -2.8370831508231857, -2.2372085050255706, -1.7401731378151295, -2.5477747053878224, -2.916137983107175, -7.0, -7.0, -2.407701729076816, -2.058231752710575, -2.755722444903458, -1.5512816993922365, -2.6801654796837506, -2.2777237887624535, -2.469822015978163, -3.079543007402906, -1.9209082899761751, -7.0, -3.0494764543837896, -7.0, -3.137354111370733, -7.0, -7.0, -7.0, -7.0, -3.4523998459114416, -7.0, -1.9985942145760733, -7.0, -3.493597449000527, -2.7506626461340558, -3.4566696294237573, -3.0191162904470725, -7.0, -2.087692704811194, -2.471550553511363, -2.7622095125079533, -7.0, -7.0, -2.1087731188407464, -7.0, -7.0, -7.0, -3.171726453653231, -7.0, -7.0, -3.0755469613925306, -2.553655508356001, -3.430961453354948, -3.4560622244549513, -7.0, -2.5606422499960773, -7.0, -7.0, -3.2528530309798933, -7.0, -7.0, -2.998695158311656, -2.498634835665338, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5784959493756787, -3.4345689040341987, -3.4742162640762553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275178857235708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.305351369446624, -7.0, -7.0, -2.403120521175818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517684039800974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7561033715851053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.668944734457734, -7.0, -3.409087369447835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8506462351830666, -7.0, -7.0, -4.067749492151028, -7.0, -7.0, -7.0, -7.0, -2.509202522331103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8506462351830666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.604118006192035, -7.0, -7.0, -2.822494985278751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.603144372620182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605897351644974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097704912593001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.242541428298384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3915701954182165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0128372247051725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4728295567127057, -3.1755118133634475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.252124552505644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1451964061141817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.632072431957763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.984617313236748, -2.080987046910887, -7.0, -7.0, -7.0, -3.9846623061901068, -7.0, -2.496929648073215, -7.0, -3.7716609593488872, -7.0, -4.626935446018323, -2.622214022966295, -2.833784374656479, -7.0, -7.0, -3.1838390370564214, -7.0, -7.0, -7.0, -3.4626974081017172, -7.0, -7.0, -2.724275869600789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6334684555795866, -7.0, -2.130333768495006, -7.0, -7.0, -2.3935752032695876, -7.0, -2.7259116322950483, -3.5833121519830775, -7.0, -7.0, -7.0, -3.254064452914338, -7.0, -2.214843848047698, -1.7323937598229684, -7.0, -7.0, -7.0, -2.2624510897304293, -2.3502480183341627, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3350882209232402, -3.4272877063969456, -2.693726948923647, -7.0, -2.2776092143040914, -7.0, -7.0, -2.298853076409707, -3.398981066658131, -2.833784374656479, -7.0, -7.0, -3.216957207361097, -7.0, -7.0, -3.285782273779395, -7.0, -1.575187844927661, -3.4093412685967817, -7.0, -7.0, -2.3026555539507187, -3.7179200258369938, -7.0, -7.0, -7.0, -1.4771212547196626, -7.0, -7.0, -7.0, -2.346352974450639, -7.0, -4.310523383951521, -7.0, -7.0, -3.97806633408362, -7.0, -7.0, -7.0, -7.0, -7.0, -1.417194807964776, -2.942008053022313, -7.0, -7.0, -2.298853076409707, -7.0, -3.670060217473134, -1.6901960800285138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.782472624166286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3534353378561645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.974626813873033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.582063362911709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.056657156668353, -7.0, -7.0, -7.0, -3.3057811512549824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.400572524359314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.558624582816597, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.402175375031505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02848991652189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.214843848047698, -7.0, -7.0, -7.0, -7.0, -2.3010299956639813, -7.0, -7.0, -2.552668216112193, -7.0, -2.5276299008713385, -7.0, -7.0, -3.7404153280594743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.824125833916549, -7.0, -7.0, -7.0, -7.0, -2.8363241157067516, -7.0, -7.0, -7.0, -7.0, -3.7590253691608635, -7.0, -7.0, -7.0, -2.6954816764901977, -2.9867717342662448, -7.0, -3.5161385767170743, -3.796435558810175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9618006391916785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1089031276673134, -3.4219328132785085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0744873049856905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3664229572259727, -7.0, -2.7737864449811935, -7.0, -7.0, -4.029188910280547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2899418034805743, -7.0, -7.0, -2.722633922533812, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1319392952104246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9995654882259823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5017437296279943, -7.0, -7.0, -5.1494100370500995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985561187773345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5754765086019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6201360549737576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9807606420143298, -2.8305886686851442, -2.376576957056512, -7.0, -7.0, -2.5440680443502757, -7.0, -7.0, -7.0, -7.0, -3.4220971631317103, -7.0, -7.0, -7.0, -4.60672522457584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.620836748293895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.433026979298686, -7.0, -7.0, -3.942417337758467, -7.0, -7.0, -7.0, -7.0, -2.463395230212905, -3.4260230156898763, -7.0, -7.0, -7.0, -7.0, -2.8000293592441343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.033962268335752, -7.0, -4.030235296012245, -7.0, -7.0, -7.0, -4.39292546917228, -7.0, -7.0, -4.1744862327616, -7.0, -4.608055114382654, -7.0, -7.0, -7.0, -4.784674339064312, -7.0, -7.0, -7.0, -7.0, -7.0, -4.226780286814562, -3.7438232216037504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.348285387522612, -7.0, -7.0, -7.0, -4.570986347596933, -3.09790774336585, -3.2539031250960253, -7.0, -4.049683089088249, -2.963787827345555, -4.24149667332751, -3.7795964912578244, -3.197280558125619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.184350674046956, -7.0, -7.0, -3.449883192013988, -4.678641275182585, -7.0, -7.0, -7.0, -7.0, -3.3553557233947067, -7.0, -7.0, -7.0, -3.7545012293869173, -2.41161970596323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4194600727860704, -2.5786392099680726, -4.00238207493276, -3.4486468722994976, -7.0, -4.632851925998251, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.58798021145153, -2.2013971243204513, -2.0003946338135266, -2.6857417386022635, -2.5202027086237306, -3.3857849588433355, -2.1164416975393117, -2.2889196056617265, -2.0644579892269186, -3.077731179652392, -7.0, -3.7244909150330834, -1.7438036371758014, -2.096330567315823, -7.0, -3.0419450721452637, -7.0, -2.9492273190678455, -7.0, -2.829303772831025, -2.32413541128684, -2.946452265013073, -7.0, -7.0, -1.8715729355458788, -7.0, -3.526920532638649, -2.6766936096248664, -7.0, -4.167391188074075, -2.996302673373406, -3.7867829601784644, -1.9731278535996988, -3.356790460351716, -1.7368389826836437, -7.0, -2.060697840353612, -7.0, -1.4913616938342726, -1.9864271928107262, -7.0, -2.7846172926328756, -3.591954555046735, -7.0, -3.696967640744023, -2.8603380065709936, -2.4244149042036596, -2.184691430817599, -2.6546577546495245, -1.4975439260849654, -2.315550534421905, -4.3311032263764995, -2.6473829701146196, -7.0, -1.7678976160180906, -7.0, -2.9584956247570875, -7.0, -7.0, -3.663229634532868, -2.416640507338281, -3.131070522108716, -1.69975891369356, -3.391111613702803, -1.8731267636145004, -7.0, -7.0, -2.1367205671564067, -3.229340482911692, -7.0, -2.2706788361447066, -1.837047036359575, -2.7586596156078977, -1.8864907251724818, -1.8827142276202256, -2.4164185888449987, -2.3956175727530065, -7.0, -2.9380190974762104, -2.9595183769729982, -3.1272668183188985, -2.244524511570084, -2.9453044216515423, -3.357934847000454, -3.2304489213782737, -3.196452541703389, -7.0, -7.0, -3.66661156841903, -7.0, -2.171726453653231, -7.0, -3.613016830283682, -2.196245290694014, -7.0, -3.678700434998304, -3.279894980011638, -2.123851640967086, -7.0, -1.9225524667613758, -7.0, -1.5975123635772417, -2.6766936096248664, -3.4523998459114416, -2.298853076409707, -7.0, -7.0, -3.0027521334499916, -7.0, -7.0, -7.0, -7.0, -2.7641761323903307, -7.0, -2.6283889300503116, -3.3995006613146104, -7.0, -2.8344207036815328, -2.4409090820652177, -2.6180480967120925, -2.187520720836463, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1845021545095675, -3.504742636271688, -7.0, -2.4771212547196626, -7.0, -2.737788791709675, -7.0, -7.0, -3.6752741208880217, -7.0, -7.0, -2.8555191556678, -3.452246574520437, -7.0, -2.173186268412274, -7.0, -2.661812685537261, -7.0, -3.24699069924155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.893484346218486, -7.0, -7.0, -7.0, -4.876985262766487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5428254269591797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6923180442592787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6665179805548807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517024258314842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.716003343634799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.73550308887706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368351977697725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2949069106051923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.979821430030225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.249198357391113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.437750562820388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.299921130330193, -7.0, -7.0, -7.0, -7.0, -4.540967306429246, -7.0, -2.859138297294531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9791020148025416, -7.0, -7.0, -3.2397998184470986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.629409599102719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.154403683246536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9823617016331467, -2.285557309007774, -7.0, -7.0, -7.0, -3.982406928863795, -7.0, -2.4216039268698313, -7.0, -3.7679717213816186, -7.0, -7.0, -2.8976270912904414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8198070645907563, -7.0, -7.0, -7.0, -4.338297090232691, -7.0, -7.0, -7.0, -2.57978359661681, -7.0, -7.0, -7.0, -2.130333768495006, -3.086537783753207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.381638446726156, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6842467475153124, -7.0, -7.0, -7.0, -2.5634810853944106, -7.0, -7.0, -7.0, -3.2801228963023075, -7.0, -2.4313637641589874, -7.0, -7.0, -7.0, -7.0, -3.7137424784090824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.309459822461211, -7.0, -7.0, -3.976922851374828, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2648178230095364, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6685101605706656, -1.6946051989335686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.173186268412274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.649821463224565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9734742269919017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.149126699742614, -3.845315132986487, -7.0, -7.0, -7.0, -7.0, -4.14569352390422, -7.0, -7.0, -2.8040954442382904, -7.0, -7.0, -7.0, -3.775270548461582, -3.1118623514410926, -3.847510965203248, -7.0, -7.0, -7.0, -7.0, -2.1222968014541115, -3.293362554711446, -7.0, -3.127016398361401, -2.5384162586458476, -7.0, -7.0, -7.0, -3.5487885153415606, -3.5472515145799526, -7.0, -3.107523049907903, -4.149773177559665, -7.0, -4.149403879508583, -3.6740953241367937, -4.1557913523576175, -4.145910834132374, -4.1514311436611395, -7.0, -7.0, -7.0, -3.1185463975292795, -7.0, -4.154210882206974, -3.852601969338235, -7.0, -7.0, -7.0, -7.0, -7.0, -4.148232359644905, -2.952165426358076, -2.541394319744552, -7.0, -4.149280710341023, -3.575043441108574, -7.0, -7.0, -4.1478308499434595, -3.6722210445716033, -4.1592663310934945, -3.6972293427597176, -7.0, -7.0, -7.0, -2.2511191040920613, -7.0, -7.0, -4.147861748487239, -7.0, -4.1998648337322555, -3.3813257060905904, -7.0, -7.0, -3.783331762887424, -7.0, -4.151339200296363, -7.0, -7.0, -7.0, -7.0, -4.147336174036738, -4.145972902802181, -3.3801207542684404, -7.0, -4.164858246962555, -4.151553704542976, -3.554640561254055, -7.0, -2.4947987194361336, -3.85582190540603, -4.147985320683805, -7.0, -7.0, -7.0, -3.3690611665868144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.984617313236748, -7.0, -4.146686055647526, -3.84963435786558, -7.0, -3.3166591552474705, -7.0, -4.146593102096305, -3.6796701132842666, -7.0, -2.338906665336077, -3.450125886731954, -7.0, -7.0, -3.8553071052068284, -3.693287157005656, -7.0, -3.2788805690817564, -2.851506257287449, -4.147614498562027, -3.855367701618522, -7.0, -3.135170829433316, -7.0, -3.868556277657932, -3.395908557341382, -4.157638064100917, -7.0, -3.2462215189159713, -3.3737393183514452, -7.0, -7.0, -2.472300437219242, -7.0, -4.145507171409663, -3.844725627973226, -7.0, -7.0, -2.676247950804945, -3.311674409676095, -3.7397568869831948, -3.463534660185131, -7.0, -4.301420684913891, -7.0, -7.0, -3.68103007067304, -3.514441490246763, -3.324840768927558, -7.0, -7.0, -7.0, -3.066969349796947, -7.0, -7.0, -7.0, -7.0, -4.1461590556048185, -7.0, -2.887202586250158, -7.0, -7.0, -7.0, -3.3809043531298437, -3.8491736330988267, -7.0, -2.368104755322076, -7.0, -7.0, -7.0, -7.0, -3.845872874264218, -7.0, -7.0, -2.866905912191609, -7.0, -2.7410271294508175, -7.0, -4.168173262170234, -2.147473108182756, -4.148170613077387, -3.8574531170352664, -3.5551246908736487, -3.5574771250690587, -3.464072042578179, -7.0, -4.15463695951842, -7.0, -7.0, -7.0, -4.14903426716125, -4.181672122068266, -7.0, -7.0, -7.0, -7.0, -7.0, -2.459118225368112, -7.0, -3.050290502385774, -4.14813973650122, -3.8471097408372383, -4.145817714491828, -4.146686055647526, -3.0064660422492318, -4.146283113159587, -7.0, -4.145848756590544, -2.751086554886017, -3.8514112423949736, -7.0, -4.14622108881188, -7.0, -4.145507171409663, -7.0, -4.1487876840563125, -7.0, -4.147738141119988, -3.257138370205915, -3.5628576747729945, -3.117628173221579, -2.4900290301077472, -7.0, -3.845872874264218, -3.669502834104343, -3.3147397510568504, -7.0, -7.0, -4.153021743626138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145538235712233, -7.0, -7.0, -2.259362396535251, -7.0, -7.0, -7.0, -7.0, -3.8474184078594025, -3.37045140442245, -7.0, -3.674769314015426, -3.1720188094245563, -4.1476763242410986, -3.5114287843162253, -3.1063042456868444, -7.0, -7.0, -7.0, -2.8340888222552794, -3.078577639999239, -2.6162770806491906, -7.0, -2.6282346582199416, -4.147336174036738, -4.1461590556048185, -7.0, -2.6284619145865564, -3.467371287647479, -3.692347443107278, -3.1412216625781246, -3.88024177589548, -7.0, -7.0, -7.0, -7.0, -3.3163897510731957, -3.8547613566936363, -7.0, -4.1525329484345255, -7.0, -7.0, -3.846120529546089, -7.0, -3.5460797451732575, -2.985716980907719, -3.6879449236700936, -3.854700675614607, -3.849327262334538, -2.2067772700461354, -7.0, -7.0, -2.4742386844826463, -4.14646913307187, -7.0, -3.31072364970371, -3.8474184078594025, -2.89915787514118, -2.980579017498445, -3.874365835730049, -7.0, -3.5668203510856804, -3.850125259486936, -2.879878922786258, -3.4718195861103727, -4.14674801363064, -7.0, -7.0, -4.175975431749513, -3.382827209736365, -7.0, -7.0, -3.8538198458567634, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14674801363064, -3.855670556918036, -7.0, -3.5789446747120905, -3.734426426461585, -3.075530164051766, -7.0, -2.710671665738311, -2.8245091988420703, -3.2166935991697545, -7.0, -3.4583960874262516, -7.0, -3.2130452804616065, -2.937939998216925, -7.0, -4.146624088824005, -4.145786670174155, -7.0, -3.5582284218033258, -7.0, -7.0, -7.0, -3.5719125414899997, -4.148386687666821, -2.5531545481696254, -7.0, -7.0, -2.356945754549756, -2.9446388201696494, -3.555551218886293, -3.555789489124939, -3.377905927931074, -2.969169146329657, -2.6489173347428867, -3.474541246737956, -2.1292125228753833, -7.0, -2.169581255505934, -3.130316836606199, -3.214829135925814, -3.155009715988005, -1.8454921471858483, -3.3109188957449325, -3.220449201670816, -2.1105220719631896, -2.8049678348367264, -2.8099523099190993, -3.4352868122401277, -3.326574793726331, -2.863179234041462, -2.3929840436331347, -2.960419808988687, -3.971229447276241, -3.2852701156989976, -3.145403607683906, -4.184577874932025, -2.2514848516286277, -2.5369742892668388, -3.2233451849791965, -3.1488269225528294, -2.8458690979382313, -2.6762362167633116, -3.492047617347526, -3.699542895027404, -3.0386803610657083, -2.7553855866496852, -2.9793966030856, -3.0947039943211667, -2.943826991798443, -2.3276951156740915, -2.188436857621509, -7.0, -3.284465441307329, -4.169056932744852, -3.0959378878980806, -2.339804651904391, -2.641927149514438, -2.1709171502194033, -3.0783307071320714, -3.128376186977645, -7.0, -3.327268092053331, -4.182129214052998, -3.8507993444678896, -7.0, -2.4701673913428643, -2.579211780231499, -3.5590983008782198, -2.1364542995951337, -2.628221247239599, -3.462504953811799, -4.149957708891059, -3.417554724363455, -4.151124590050682, -2.175705047841342, -3.7892280572673354, -3.6075493781848884, -2.4552133746525167, -2.5666627441806, -4.149126699742614, -3.0317410385347316, -3.2988530764097064, -2.9224060357250012, -3.7078255683322316, -2.767897616018091, -3.6346535720376747, -2.061750828376922, -3.9155053617543767, -4.152838509892218, -2.518118139018857, -1.9621879551647274, -7.0, -2.3352263798583643, -3.699027906406887, -3.1954291424570624, -2.5757772516888866, -2.875043167411285, -2.896311834256591, -7.0, -7.0, -3.0785172332278914, -2.699140282511854, -1.2349774943255392, -3.247512964801066, -1.909139839001463, -2.3599578188144723, -1.8306329077074808, -1.1636368510098085, -1.883242924469617, -3.0385284580292, -3.3699267263788624, -1.398839659577722, -1.8032754011625363, -1.3004700206746918, -1.9990404978546072, -1.9942716315248012, -2.487858966359126, -1.776993439828789, -1.7160325448102618, -1.7430413347300022, -2.517342544745865, -2.0609414155040815, -1.9055313408689762, -2.719242477232849, -1.9792447784093805, -2.6808791744268112, -2.559476934347587, -3.448118620292148, -1.3576593668250876, -2.480862816368531, -3.0677835509421225, -1.900913067737669, -1.3084020041048854, -1.3981917992387312, -3.6697816152085365, -1.801011879135689, -2.5863439683539147, -2.175134758658844, -2.788844411651405, -4.145910834132374, -3.303782129113973, -1.7793286090293619, -2.753153914113024, -1.7394913617805503, -1.5222652921803954, -2.970439862951764, -1.6792740381044218, -1.9811768322540424, -1.0958209128367133, -3.8447877188278463, -1.77222428759243, -2.61687690940715, -2.3426877729215305, -1.6553518997858951, -2.8526324579115143, -3.069328864563374, -3.0705919315120402, -2.6284138529783205, -1.6187466999262725, -2.909258791202125, -2.5476246433698466, -1.6411935346546915, -2.7578513436855796, -1.3207734774351287, -2.694574943997341, -1.7729500566978358, -2.4361320532270767, -2.385424484360872, -2.4982908574480973, -7.0, -1.394065108209559, -2.1950569462894327, -2.6595174974349662, -2.288598319679449, -1.4930277111525112, -7.0, -2.824900281288046, -1.7289115124464807, -2.2562064396964416, -2.6154991488833446, -1.653641234917665, -2.116942635511364, -2.240017871143136, -1.7445068987146113, -1.3177898262770587, -1.6550152341972675, -1.7617254981477537, -1.515772210307093, -3.66919286729231, -3.145941869576122, -1.7719755284385301, -2.0365311289980585, -2.5143314936216132, -1.8374227413143636, -1.3037341520877823, -2.021922038373002, -1.34424936903324, -1.713722071471778, -1.4386662328043016, -3.1488801691282298, -2.6323083929197475, -3.1942984514279047, -4.146964796989748, -2.812731096942942, -2.1597636836762164, -1.9985942145760733, -3.670060217473134, -3.0027521334499916, -3.6685101605706656, -7.0, -3.6709567220428436, -3.0113589537066106, -3.4501566954065956, -2.0494993723533796, -1.6634496339132876, -1.9964491252422965, -1.7197486528851442, -1.9107223893805891, -2.1921864181570534, -2.53631790283572, -3.8485893458691725, -1.8468366233290923, -4.145910834132374, -4.145848756590544, -7.0, -2.538677930404596, -2.8292731336915784, -2.5285188124972784, -1.857502033916249, -2.1040627074755904, -2.7894240120068883, -2.717454750443031, -7.0, -2.1739555149123078, -3.1928770665826405, -3.543664583552706, -1.8624390834955207, -3.8452221064290137, -7.0, -1.6603020945120228, -1.9171881743915895, -2.8888590717747014, -7.0, -7.0, -2.9502431180103916, -3.8448187609265627, -1.9586328608246595, -3.3676975062069, -7.0, -4.145538235712233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.27534591240944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5578318990842086, -2.0588054866759067, -7.0, -7.0, -7.0, -2.6314437690131722, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335237186909729, -7.0, -7.0, -7.0, -7.0, -2.2576785748691846, -2.255272505103306, -7.0, -7.0, -7.0, -7.0, -3.699230502883409, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.725421550074259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.217009909804205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7361334553295675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6716355966021297, -3.1007150865730817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4345689040341987, -7.0, -7.0, -4.727833941178848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3750536497006407, -7.0, -7.0, -3.9710902131371153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0105119627372137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.164352855784437, -7.0, -4.848226076651172, -7.0, -1.8388490907372554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.496334505996817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8318697742805017, -7.0, -7.0, -7.0, -7.0, -7.0, -2.798650645445269, -2.6334684555795866, -7.0, -7.0, -2.4800069429571505, -7.0, -7.0, -7.0, -7.0, -3.11277252110537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.735997884091794, -2.249198357391113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6009728956867484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432950059696654, -7.0, -7.0, -4.543956354265588, -2.9786369483844743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7035235131180295, -7.0, -7.0, -4.234188147853202, -7.0, -7.0, -7.0, -7.0, -4.347349533731457, -7.0, -7.0, -2.723044991643445, -7.0, -4.301637582726872, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9301482197259796, -2.8822398480188234, -7.0, -4.136815657726849, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1829849670035815, -7.0, -7.0, -4.051249021610516, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008355279859826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.75876054390998, -7.0, -7.0, -4.3313159246822295, -7.0, -7.0, -7.0, -4.0074917332953355, -7.0, -2.3483048630481607, -7.0, -7.0, -7.0, -3.9859202201235675, -2.130333768495006, -2.3283796034387376, -7.0, -7.0, -3.985965078304871, -7.0, -1.7442929831226763, -7.0, -7.0, -7.0, -3.8489789580184515, -2.3339508043872472, -7.0, -3.2778383330020473, -7.0, -7.0, -3.4191293077419758, -7.0, -7.0, -3.4670158184384356, -7.0, -7.0, -7.0, -7.0, -7.0, -3.824971461123693, -7.0, -7.0, -7.0, -3.941083884430365, -7.0, -7.0, -3.3475251599986895, -2.18089014193745, -7.0, -7.0, -7.0, -1.845098040014257, -2.4447385572188063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.399673721481038, -7.0, -7.0, -7.0, -2.3263358609287517, -2.098643725817057, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1968207439144254, -3.1772622739970817, -2.718501688867274, -7.0, -7.0, -7.0, -7.0, -0.9270902633957101, -7.0, -7.0, -2.514547752660286, -2.6483600109809315, -7.0, -7.0, -7.0, -2.987554549303304, -7.0, -1.4884022651293516, -3.013342904345347, -7.0, -3.4207806195485655, -2.9232440186302764, -3.4191293077419758, -7.0, -7.0, -7.0, -1.7817553746524688, -7.0, -7.0, -7.0, -2.399673721481038, -7.0, -4.010066630335587, -3.0874264570362855, -3.953034457250357, -7.0, -7.0, -1.8573324964312685, -7.0, -7.0, -7.0, -1.312811826212088, -2.1052668143618662, -7.0, -1.6901960800285138, -7.0, -1.6946051989335686, -3.6709567220428436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.05307844348342, -7.0, -7.0, -7.0, -7.0, -7.0, -2.514547752660286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.142389466118836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9731278535996988, -7.0, -2.655138434811382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9624072223037277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.915610862661467, -7.0, -7.0, -7.0, -4.578295305120826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.114193834568074, -7.0, -7.0, -2.739572344450092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2255935481548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7011360660925265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.730507727707434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5709513581793884, -7.0, -7.0, -4.673186847835966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.849241236657997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.152419399400468, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.500881123850455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.15259407792747, -7.0, -7.0, -7.0, -4.7979112324184685, -7.0, -7.0, -7.0, -7.0, -3.158060793936605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9563509495317035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.666205875272384, -4.7493033508713305, -7.0, -7.0, -7.0, -3.0622058088197126, -3.719248398447946, -7.0, -4.258102265137589, -7.0, -3.040800061256529, -4.1004969087243035, -7.0, -4.804214421768175, -2.828398593415644, -7.0, -4.3926442017384275, -3.1914317403283383, -7.0, -7.0, -7.0, -4.801293921864864, -7.0, -3.9414972351325823, -3.780173243642594, -7.0, -7.0, -7.0, -7.0, -4.405303662984316, -3.3829428246253754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9158920731816305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8460586289641854, -3.7229628089424898, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.135809359656516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8046845149069406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.635694810891918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.446640706109038, -4.08109515656134, -3.045540289014811, -7.0, -7.0, -2.5826314394896364, -2.9393528243805584, -3.6994040818153375, -3.1277525158329733, -7.0, -7.0, -3.7972675408307164, -7.0, -3.027747019428486, -7.0, -3.017450729510536, -1.0132330645412966, -3.063633545230785, -2.0376608084302044, -2.6236922220853542, -2.005642422654947, -2.9809119377768436, -3.0356965038452106, -1.9107768156582345, -2.076872040931254, -7.0, -7.0, -7.0, -3.0671328759643477, -2.095169351431755, -7.0, -3.1933150366306564, -3.320788989656518, -3.3627965209590185, -7.0, -1.3021517211655111, -7.0, -2.2993983300681498, -7.0, -7.0, -7.0, -7.0, -7.0, -2.949877704036875, -2.443210816819927, -7.0, -2.4878035787194768, -3.003029470553618, -2.553073530637089, -7.0, -1.759290033024304, -7.0, -7.0, -2.7118875349737244, -2.381415942849977, -7.0, -7.0, -7.0, -2.919208884270423, -2.3324384599156054, -2.5171958979499744, -2.733375620132445, -7.0, -3.419028590097298, -7.0, -2.2293298111056714, -7.0, -2.949390006644913, -7.0, -7.0, -2.4971736565908635, -2.315130317183602, -7.0, -7.0, -2.6991870973082492, -7.0, -7.0, -7.0, -7.0, -2.978180516937414, -7.0, -3.076640443670342, -7.0, -7.0, -2.900757155159472, -2.359383703996949, -2.0863598306747484, -2.3101029976107674, -7.0, -7.0, -3.576203091230177, -2.317581231880614, -2.7641761323903307, -2.538238500689552, -3.3177082376103013, -2.889581802149624, -2.736771338404693, -3.1105448196607366, -2.571927088525855, -7.0, -0.6128430289361774, -7.0, -7.0, -7.0, -7.0, -3.493597449000527, -7.0, -7.0, -7.0, -3.0113589537066106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.745543201998024, -2.0442036624920537, -7.0, -7.0, -2.3447851226326604, -7.0, -7.0, -7.0, -2.842609239610562, -7.0, -7.0, -3.6878855248487055, -2.7620530494584163, -3.1929853790931624, -7.0, -7.0, -3.3935752032695876, -7.0, -7.0, -3.1371731930253115, -7.0, -7.0, -2.9334872878487053, -2.7933712489189557, -3.0751818546186915, -7.0, -7.0, -7.0, -7.0, -2.53793351859703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.877659244111609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.736436343979519, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8547310172139424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.606617797736322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.433010955505026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.617566443067537, -7.0, -7.0, -7.0, -4.427599698924868, -7.0, -3.3931363002692168, -7.0, -4.7329162073263795, -7.0, -4.029830019310658, -7.0, -4.354655766358007, -7.0, -4.091684540012315, -7.0, -7.0, -7.0, -3.089154157054828, -4.3068965975393665, -7.0, -7.0, -7.0, -7.0, -4.070628844051428, -7.0, -7.0, -4.449308659474037, -7.0, -4.7038500115766535, -3.61857102812013, -4.580423138411845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.086857915659847, -7.0, -7.0, -7.0, -4.001387523486641, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.051981715369472, -7.0, -4.394133431866444, -7.0, -7.0, -7.0, -4.133719826715639, -7.0, -7.0, -3.5974757898703773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.155214539497588, -7.0, -7.0, -4.604398872220019, -3.784486532958129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.166836981760529, -3.3852933974078314, -7.0, -7.0, -7.0, -3.3656751404559175, -7.0, -7.0, -7.0, -7.0, -3.776555910703262, -2.6473829701146196, -4.02550043476675, -2.957607287060095, -2.8744818176994666, -7.0, -3.7407573233077707, -3.2024883170600935, -2.5199919713052874, -3.020775488193558, -2.2168254232660476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5262746454257536, -7.0, -7.0, -3.8661543714405875, -4.339461379281565, -2.836735424393361, -7.0, -3.354876422516234, -7.0, -2.8175653695597807, -7.0, -7.0, -7.0, -3.106870544478654, -7.0, -7.0, -7.0, -7.0, -3.394889257167419, -2.150449409460881, -2.3636119798921444, -7.0, -2.951823035315912, -7.0, -3.0136796972911926, -4.330900559667934, -7.0, -7.0, -7.0, -2.658369184249972, -3.8037301709745437, -7.0, -7.0, -7.0, -7.0, -4.126758953646628, -7.0, -2.911512714632127, -7.0, -2.296665190261531, -3.9210618907902783, -7.0, -3.2284859086849425, -2.8744818176994666, -7.0, -7.0, -2.3276143266206253, -7.0, -7.0, -3.594503043820089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3569814009931314, -7.0, -7.0, -7.0, -7.0, -3.79136310912706, -3.3861421089308186, -2.156851901070011, -2.346352974450639, -4.31194448508462, -3.1007150865730817, -3.6537429940257358, -3.803457115648414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7506626461340558, -7.0, -7.0, -7.0, -3.4501566954065956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1367205671564067, -3.0963885466873666, -7.0, -7.0, -7.0, -2.4356320489516605, -7.0, -7.0, -7.0, -2.606381365110605, -7.0, -7.0, -3.1835545336188615, -3.5033820634737327, -3.451632947456991, -7.0, -7.0, -2.6384892569546374, -7.0, -7.0, -3.8000293592441343, -7.0, -7.0, -7.0, -3.4507108781469196, -7.0, -7.0, -7.0, -7.0, -7.0, -3.54703589974001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9020028913507296, -7.0, -7.0, -7.0, -4.400733651239303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.558960436273091, -2.4871383754771865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.029627239047413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.519066326864926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.45890212176587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.728451182944577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.226857570288723, -7.0, -3.857030798272624, -7.0, -7.0, -4.068723756708053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.196328202966489, -7.0, -7.0, -7.0, -3.6153186566114788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6070258784347855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.098068900278887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.54489861335298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015841571684366, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3964608915070755, -4.397627204021875, -4.733221347312165, -7.0, -4.0313680628857735, -7.0, -7.0, -4.8024795364967785, -3.438893790829892, -4.277746700027364, -7.0, -4.049799277918987, -7.0, -4.608354849309348, -7.0, -5.10145836458231, -7.0, -4.784873942585328, -7.0, -7.0, -4.625085982478932, -4.449894751981211, -7.0, -4.704176264761226, -3.92069713446992, -7.0, -7.0, -4.176669932668149, -3.792391689498254, -7.0, -7.0, -7.0, -7.0, -3.9601376748637946, -7.0, -7.0, -7.0, -3.2561562792129193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.50266832770066, -7.0, -7.0, -7.0, -7.0, -4.611287733324417, -7.0, -7.0, -3.300378064870703, -7.0, -7.0, -7.0, -7.0, -4.276093991759217, -7.0, -7.0, -7.0, -4.156367400133521, -7.0, -7.0, -7.0, -4.086039331268039, -7.0, -4.332084820464514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071845201129409, -2.811976944336954, -2.541579243946581, -2.5816842319562445, -2.4073909044707316, -2.8948696567452528, -2.757485343853885, -2.4321672694425884, -2.622214022966295, -7.0, -2.573016729848248, -1.3705812577593128, -3.0590719375910913, -2.3706056009381484, -1.9850895069263812, -7.0, -3.7437448785924614, -2.30588853028431, -2.428620672671939, -7.0, -2.367355921026019, -3.4781334281005174, -7.0, -2.330819466495837, -2.1965906541173066, -2.002166061756508, -7.0, -2.505085346355816, -7.0, -7.0, -3.189578957286946, -3.7376596955178236, -3.3792976336001965, -7.0, -3.060697840353612, -7.0, -2.6532125137753435, -1.9673139182870836, -7.0, -7.0, -2.5675304805301185, -2.1183749671059116, -1.4113268573466697, -2.748630958693654, -7.0, -2.697839368218363, -7.0, -1.6937744673308175, -7.0, -2.3650197428165347, -2.0320812676114404, -2.7275412570285567, -4.331670190532614, -2.673941998634088, -7.0, -7.0, -3.0900227904759947, -2.850986404764101, -2.918554530550274, -2.3879827199214656, -7.0, -2.439332693830263, -3.2611835383544423, -7.0, -2.9182051383496885, -7.0, -7.0, -7.0, -7.0, -3.4079854213081364, -2.416640507338281, -2.123851640967086, -2.1097472377132287, -2.123851640967086, -7.0, -7.0, -2.694056500841752, -2.187520720836463, -2.8432327780980096, -2.39378404890088, -2.670709595223797, -3.4331295175804857, -1.9099448336376925, -2.725094521081469, -2.815577748324267, -2.0543576623225928, -1.9395192526186187, -2.298853076409707, -7.0, -3.9683895418470683, -2.9150478947700735, -1.9044450410769096, -2.960470777534299, -2.913792666770312, -7.0, -2.5228304876568752, -2.9796394122229075, -2.501591718957243, -7.0, -7.0, -7.0, -7.0, -2.720159303405957, -2.288696260590256, -3.4566696294237573, -7.0, -7.0, -7.0, -2.0494993723533796, -7.0, -7.0, -7.0, -7.0, -1.9308762911151123, -1.4032525456431375, -1.5185139398778875, -2.9265139350708855, -2.846543280888438, -2.851869600729766, -7.0, -2.151267675330649, -7.0, -7.0, -7.0, -2.645422269349092, -2.605305046141109, -7.0, -3.6646419755561257, -2.552127207656179, -7.0, -2.515873843711679, -7.0, -3.045127306568027, -2.374748346010104, -2.2600713879850747, -3.432740292987791, -7.0, -7.0, -2.6872316010647745, -2.4120785485647107, -2.9708116108725178, -7.0, -7.0, -7.0, -7.0, -2.3173257840095487, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.217431299267857, -7.0, -7.0, -3.0874264570362855, -3.925134394436687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7288405683399715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.221635893166133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7704101315139065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.765668554759014, -7.0, -7.0, -7.0, -3.373693397708325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0051805125037805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7611758131557314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.253539918241502, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1740016264024247, -7.0, -7.0, -4.1962406839924995, -7.0, -7.0, -2.9206450014067875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3809344633307017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.846337112129805, -7.0, -7.0, -7.0, -3.362670929725667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.718824498690825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.821731821690044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.343802333161655, -7.0, -3.712060142461075, -7.0, -4.0240202005681205, -7.0, -7.0, -7.0, -3.643551368562945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.655575925143535, -7.0, -7.0, -3.076057595762826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.797990762449812, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.831445826489906, -7.0, -7.0, -4.54831569852736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7756312495430016, -4.272329043274018, -7.0, -2.931966114728173, -7.0, -3.3679147387937527, -7.0, -7.0, -4.434393234712605, -7.0, -3.7413092088995694, -7.0, -7.0, -7.0, -2.87862623087069, -7.0, -7.0, -3.2924390761642086, -7.0, -7.0, -7.0, -7.0, -7.0, -4.08781689793553, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9283104872477113, -7.0, -4.5840031176456115, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354185298625861, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7552648914122466, -7.0, -7.0, -7.0, -7.0, -3.8010605298478555, -7.0, -3.778151250383644, -3.8467699535372186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8048479063618035, -4.696099989021025, -7.0, -7.0, -7.0, -4.614222059298785, -7.0, -7.0, -3.329499575762843, -7.0, -7.0, -7.0, -7.0, -4.282418170877648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.607787318992725, -3.4522583665480764, -7.0, -3.8576741678371116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9213395948885608, -7.0, -2.852479993636856, -7.0, -2.8178957571617955, -3.2229331309085762, -2.6567368704836722, -7.0, -7.0, -2.952930753389816, -1.9167463043212505, -3.1831274287013995, -2.6085260335771943, -3.0269416279590295, -7.0, -3.2875031431313193, -2.3745192273121476, -2.694312646223346, -2.833147111912785, -2.9912260756924947, -7.0, -3.0751818546186915, -2.2833012287035497, -7.0, -7.0, -2.7032913781186614, -2.9433708381373886, -2.1083394747888384, -2.711807229041191, -3.4726687041948, -3.412865548511456, -3.345232537394635, -7.0, -2.5643278286571864, -7.0, -2.7342662982171966, -2.815577748324267, -7.0, -7.0, -2.611723308007342, -2.5269850685599957, -1.4710892899497494, -2.0144155225606033, -7.0, -2.87671257519829, -3.0128372247051725, -1.5923234324930717, -7.0, -1.7250201619541745, -2.478566495593843, -2.8276922886744456, -3.1905917966861046, -2.3950350180286306, -7.0, -7.0, -7.0, -3.1252209363165644, -7.0, -3.0060379549973173, -3.2136062891507047, -2.918554530550274, -2.8184314255975202, -7.0, -2.4850901843909377, -2.8825245379548803, -2.960470777534299, -7.0, -7.0, -2.7765397662270646, -2.244689360492884, -2.530199698203082, -2.9020028913507296, -1.4522214053904476, -7.0, -7.0, -3.326745379565322, -2.54448146130858, -7.0, -2.357855473065863, -1.9623329030973808, -2.997677564080969, -2.1676864758514913, -3.048985302570711, -2.7315887651867388, -2.4544092586862307, -1.5699101057997673, -7.0, -2.0718820073061255, -3.6736888931512324, -2.738780558484369, -2.7810369386211318, -2.719952447254438, -3.318188594151796, -7.0, -2.9274636894564674, -3.2081052932151874, -2.3447560348940004, -7.0, -3.0464951643347082, -2.7481880270062007, -7.0, -7.0, -2.397592434038117, -3.0191162904470725, -7.0, -2.7641761323903307, -7.0, -1.6634496339132876, -7.0, -7.0, -7.0, -1.9308762911151123, -7.0, -1.70472233322511, -1.587336734507256, -3.147985320683805, -2.677606952720493, -7.0, -7.0, -1.7630337180189228, -7.0, -7.0, -7.0, -2.377184787081418, -7.0, -7.0, -3.212453961040276, -3.5443161417474274, -7.0, -7.0, -7.0, -3.397592434038117, -7.0, -7.0, -3.682212788529763, -7.0, -7.0, -2.0291300268851757, -2.3793752559252646, -3.0835026198302673, -7.0, -2.661812685537261, -7.0, -7.0, -2.9814788279263897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6592409509282415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.400854457181176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.760874638052189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.736906200252733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5571461423183632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.332034277027518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.649334858712142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.751473107116081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6866362692622934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.689930104018218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.607251232317852, -7.0, -7.0, -3.279134394034571, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9559778243350925, -7.0, -7.0, -4.545158614333448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.618184119463009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.397992120883196, -4.1312817469854, -7.0, -4.0322157032979815, -7.0, -7.0, -7.0, -3.439262499150636, -7.0, -7.0, -3.7488951184201675, -7.0, -4.608579514826188, -7.0, -7.0, -7.0, -4.30787383097522, -7.0, -7.0, -7.0, -7.0, -7.0, -3.801146350316844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9611362173872253, -7.0, -7.0, -4.303735889039906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354185298625861, -4.67886422013453, -5.172486169686935, -7.0, -7.0, -7.0, -4.31045964365906, -3.67015304519218, -7.0, -7.0, -4.057475915826254, -7.0, -7.0, -4.00483706093831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.961326155934711, -7.0, -4.6333472402049605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9479681286180224, -7.0, -7.0, -2.12057393120585, -2.8987251815894934, -3.512995511348242, -2.3428173146357327, -7.0, -7.0, -3.17832933714299, -1.7862188721316767, -3.4237986329154935, -7.0, -2.428134794028789, -7.0, -7.0, -2.7400994009248563, -2.4320066872695985, -7.0, -2.859738566197147, -2.878234468675044, -7.0, -2.562689299428688, -7.0, -2.632457292184724, -2.3961993470957363, -3.131746945100879, -1.6215224710973946, -7.0, -3.7700858001025916, -3.8628466599829387, -3.6274052501690583, -7.0, -2.888179493918325, -7.0, -2.836640541572774, -2.5998830720736876, -7.0, -7.0, -2.815079418399363, -2.1409268419924303, -2.113943352306837, -2.5157634906474584, -7.0, -2.6996643202023733, -7.0, -1.7502979638618927, -7.0, -2.1968207439144254, -2.541579243946581, -7.0, -3.8548928032859053, -2.6928469192772297, -7.0, -7.0, -3.2688119037397803, -3.3303461209646152, -7.0, -2.5774917998372255, -3.1903316981702914, -2.75815462196739, -3.223427432577566, -7.0, -2.55249439402386, -2.40226138245468, -2.8175653695597807, -7.0, -7.0, -3.011316643366872, -2.302114376956201, -2.6273658565927325, -7.0, -2.164352855784437, -7.0, -7.0, -3.2997251539756367, -2.9025467793139916, -7.0, -2.6780214745443685, -1.8930215923314397, -2.9587231112647787, -2.187990482355389, -3.2508264548251344, -2.515211304327802, -2.284556053274592, -2.162998646761075, -7.0, -7.0, -3.6677563860178615, -7.0, -2.2380461031287955, -2.96543689977626, -3.4098063651997617, -2.81888541459401, -3.1790728074595234, -3.5036318211228035, -2.645271078927407, -7.0, -2.932980821923198, -2.482873583608754, -7.0, -7.0, -3.000434077479319, -7.0, -7.0, -7.0, -7.0, -1.9964491252422965, -7.0, -7.0, -7.0, -1.4032525456431375, -1.70472233322511, -7.0, -0.9827123651058386, -3.1065308538223815, -2.7255032688593155, -2.864511081058392, -7.0, -2.1618669046240195, -7.0, -7.0, -7.0, -2.3626709297256667, -2.6273658565927325, -2.3738311450738303, -3.66661156841903, -2.9084850188786495, -7.0, -2.5428254269591797, -7.0, -7.0, -2.41161970596323, -7.0, -3.579440597139797, -7.0, -7.0, -2.693433803801546, -2.377184787081418, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6494565609637166, -7.0, -7.0, -2.2810333672477277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9085386321719593, -7.0, -7.0, -7.0, -4.276479037739323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5206538109166265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7646243978509815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.73770140771463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0138199506371244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.428385899200131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8642736968043794, -7.0, -7.0, -4.370910748617717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.227372442289636, -4.108414329015705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2928760493088776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.197996897597136, -7.0, -7.0, -7.0, -3.6278776945799716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.608322744745895, -7.0, -7.0, -2.985201858364572, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.253348391708968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.433265663818217, -7.0, -7.0, -4.245339902695324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318178157265793, -4.447227823061555, -7.0, -7.0, -7.0, -3.3378584290410944, -3.4068806700491248, -7.0, -3.5878552249378273, -7.0, -2.9561684304753633, -4.5761339452331775, -4.055110637854146, -3.900121231991279, -3.617210094557434, -7.0, -3.9131071077494677, -3.807873132003332, -3.698709349442587, -4.609647759078724, -7.0, -4.323688582255868, -3.8767372971406644, -4.484691239914095, -3.377196935008914, -7.0, -4.3252795695916895, -3.9745730944738797, -7.0, -3.860012698749663, -3.5257443001943787, -4.582233863920993, -4.239149264858293, -4.1801545594533485, -3.8007857903277626, -7.0, -7.0, -7.0, -3.545430829465351, -7.0, -7.0, -7.0, -4.30588853028431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.143014800254095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.980357938529916, -7.0, -7.0, -7.0, -7.0, -4.612571954065176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.087473801905176, -7.0, -4.634356336067436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8512583487190755, -3.297760511099134, -2.156228362582564, -7.0, -2.8020892578817325, -2.0170333392987803, -2.3114006325028105, -2.8797132763086255, -1.7905444111627002, -7.0, -7.0, -2.7866804531966487, -1.4748294579400776, -3.0374060648802375, -2.5490032620257876, -1.907020280620376, -3.3207692283386865, -2.5466968599938298, -2.0053319489492862, -2.1221378309221084, -1.9949034429806192, -1.6957005197711714, -2.5902286212401577, -2.7122286696195355, -1.864065879090237, -2.39909658587198, -2.1164416975393117, -2.5428254269591797, -2.454463732751138, -2.1889284837608534, -2.0731070983354316, -2.925577273524723, -2.9599154643938257, -2.6002861516315914, -2.530199698203082, -2.537099170363197, -7.0, -2.564961804462294, -2.6972293427597176, -7.0, -7.0, -2.3898101993982914, -2.7151673578484576, -2.0957503474808177, -2.3492775274679554, -7.0, -2.15991078065811, -2.3364597338485296, -1.3329079675093363, -7.0, -2.061954844073114, -2.3483048630481607, -3.075911761482778, -3.0546332107067022, -2.0681858617461617, -7.0, -2.6532125137753435, -2.881726935376418, -2.4895567268689844, -2.3729120029701067, -7.0, -2.3725438007590705, -2.3483048630481607, -2.9701197319309296, -7.0, -2.131854941615539, -2.303196057420489, -1.6574144282031131, -3.6281333875410833, -7.0, -2.603394230417027, -2.1072099696478683, -2.416640507338281, -2.807535028068853, -1.6193845754003067, -7.0, -7.0, -2.911902996044033, -2.1028255798174698, -7.0, -2.5508803246271956, -1.9370161074648142, -3.4520932490177314, -2.1647775936979032, -2.4546844261382326, -2.0749851314540164, -2.182557301304913, -2.052565699053254, -7.0, -7.0, -2.7656918332132796, -2.064117499611749, -2.0433622780211294, -1.6267601784100552, -3.035787728177052, -2.1931245983544616, -2.5451167199341014, -3.169787434471045, -2.443300248364033, -7.0, -2.501971645918664, -2.606381365110605, -7.0, -2.8102325179950842, -2.339650157613684, -2.087692704811194, -7.0, -2.6283889300503116, -7.0, -1.7197486528851442, -7.0, -7.0, -2.1367205671564067, -1.5185139398778875, -1.587336734507256, -0.9827123651058386, -7.0, -2.1398790864012365, -2.870793931782029, -2.920123326290724, -7.0, -1.6302429114439048, -7.0, -7.0, -7.0, -7.0, -2.7193312869837265, -2.7596678446896306, -2.9761665001319755, -2.375010048025798, -3.4753805931433615, -2.3492775274679554, -7.0, -2.891723252106159, -2.553883026643874, -7.0, -3.2390263236179746, -7.0, -7.0, -2.498861688992884, -2.035503856195122, -3.0236639181977933, -7.0, -7.0, -7.0, -7.0, -2.3585296895559917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5653845905590975, -7.0, -7.0, -7.0, -7.0, -3.337725413884801, -7.0, -7.0, -7.0, -7.0, -3.378579576115775, -2.751236322671984, -7.0, -7.0, -3.1971426649725627, -3.5679389439305034, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.584625178418518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4216039268698313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0850526086449856, -3.0165558301996542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8098626051382367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.273279131626577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.413299764081252, -7.0, -7.0, -7.0, -7.0, -3.148590316719418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.438067450453494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.963817330044653, -7.0, -7.0, -7.0, -3.9757227725765003, -7.0, -2.8985880720439496, -3.5229655954919865, -7.0, -7.0, -3.399846712712922, -7.0, -7.0, -7.0, -3.2110060574081962, -7.0, -7.0, -7.0, -7.0, -7.0, -3.241172786770047, -7.0, -7.0, -2.6887163699704657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504470862494419, -7.0, -7.0, -7.0, -4.149342299291265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.254158099637722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2737880795675203, -7.0, -7.0, -3.389440755221461, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3354579006893843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0239722565010565, -3.415140352195873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.479863113023098, -3.436162647040756, -3.7581455266997557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.712430083679723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5774014253739082, -7.0, -4.049657265126183, -7.0, -7.0, -7.0, -3.8013350956745464, -7.0, -3.501196242027089, -3.259952059922254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6880636969463443, -7.0, -7.0, -7.0, -3.2678957991631954, -7.0, -7.0, -3.8972421028053654, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1405080430381793, -7.0, -7.0, -7.0, -7.0, -3.196612816217494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.669688708056208, -4.0563060138858935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.690196080028514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.95970902424643, -7.0, -7.0, -2.986363614185373, -3.6178163114809454, -4.317101812398005, -3.444513206334043, -3.9853665879160696, -2.450557009418329, -2.855640280890145, -4.434361287200313, -1.6475990265972849, -7.0, -2.079999897528305, -3.5200903281128424, -3.3976290339439115, -3.402009928252042, -2.3226099351757314, -4.325536187192074, -3.4711612727092858, -2.6753060861382254, -3.3828092224315145, -4.3302818414364435, -7.0, -4.1089132667197426, -3.9828589423120753, -2.745689562989966, -2.9149650437896093, -7.0, -3.368110644916976, -3.7835319842742696, -7.0, -2.4693586096046616, -3.2338956292773764, -3.8270352376582064, -3.811217414675501, -3.536987475130602, -3.225154148849806, -7.0, -7.0, -3.3894141817616843, -3.221463142125021, -2.589602982202344, -7.0, -3.554665330979803, -3.2340692861153584, -7.0, -2.6130863955560057, -3.2830749747354715, -7.0, -3.7242641633922977, -7.0, -7.0, -3.2984787921447394, -3.425262429712809, -3.859438535455056, -7.0, -7.0, -7.0, -7.0, -7.0, -4.24355888962248, -7.0, -7.0, -3.4909061462664024, -3.484299839346786, -4.701683090935717, -7.0, -7.0, -7.0, -3.8558622560965636, -7.0, -7.0, -3.4912916406875922, -4.13350697377835, -7.0, -3.8270460170047342, -7.0, -7.0, -2.9662590937671496, -7.0, -7.0, -2.204572137284902, -7.0, -7.0, -2.9279961994449373, -3.547013492058355, -7.0, -7.0, -7.0, -7.0, -7.0, -3.794243992434201, -7.0, -7.0, -7.0, -2.8432327780980096, -3.300781756456363, -1.601831355112151, -7.0, -2.0408659483054157, -2.0285712526925375, -1.7581447785956712, -2.0750305588561777, -1.6805552563738542, -7.0, -7.0, -1.9979039022741811, -2.4724313785820478, -2.598614659259323, -2.7187783976895714, -1.8853016909406226, -2.4720246977002813, -2.2827353726210187, -2.0075632564697243, -1.522566190763858, -2.079181246047625, -2.3811150807098507, -1.975687050645263, -2.588691788592222, -2.002975557763293, -3.4533183400470375, -2.8140810398403664, -7.0, -1.667124678416392, -2.6528906949522417, -7.0, -2.3379304619107932, -2.22903583515332, -2.0474098222772072, -3.0829647937777516, -2.1711411510283822, -7.0, -2.4020156017566077, -7.0, -7.0, -7.0, -2.245421266260218, -2.4585539192772186, -2.2182573985268057, -2.5305554148925595, -7.0, -1.4178348373889769, -2.2624510897304293, -1.5120517683287142, -7.0, -2.4144162029529017, -3.4034637013453173, -1.483523746328793, -2.552207171798418, -2.470802365112064, -7.0, -7.0, -3.168350140185944, -0.9539959263343879, -2.6351964199887496, -2.424287526440053, -1.9746867944847728, -3.1390916075238224, -2.3260823938064945, -3.146438135285775, -1.613657591302388, -2.4730812769179225, -2.27307847310952, -3.32522822787085, -7.0, -2.216165902285993, -2.2157256645575676, -7.0, -2.832508912706236, -1.5938396610812713, -7.0, -7.0, -1.403591185940338, -2.996949248495381, -7.0, -2.756519079282083, -7.0, -3.390405156480081, -2.8911191293545526, -1.5734548577967027, -1.3495107823567656, -2.126097803108254, -2.0412765481119646, -7.0, -7.0, -2.1476763242410986, -1.7929670410709038, -2.5563025007672873, -1.4923939537516864, -1.7417097086716051, -1.8332746392905634, -0.9112368843262032, -2.4873023607462903, -2.01725599733078, -7.0, -2.480438147177817, -7.0, -7.0, -7.0, -3.201806642957022, -2.471550553511363, -7.0, -3.3995006613146104, -7.0, -1.9107223893805891, -7.0, -2.745543201998024, -3.0963885466873666, -2.9265139350708855, -3.147985320683805, -3.1065308538223815, -2.1398790864012365, -7.0, -2.167011601203763, -3.4647875196459372, -7.0, -1.608496318926168, -7.0, -7.0, -7.0, -2.5173608721141245, -2.6364878963533656, -7.0, -2.7914354443811287, -2.2833012287035497, -3.2277153514917414, -2.800545250591952, -3.3769417571467586, -2.5297066859104924, -3.0863598306747484, -7.0, -2.9825795713428316, -3.3802112417116064, -7.0, -2.3568620729303107, -2.1070359385968906, -3.1956229435869368, -7.0, -7.0, -7.0, -7.0, -2.1211092004651437, -3.077912702949456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.77244090126548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6882863093259703, -7.0, -7.0, -7.0, -3.984825366582568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7345483893175566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.508798965403905, -3.8361974807789254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7952889748486287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.54184123916057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9006853974365008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.156094630639427, -7.0, -7.0, -7.0, -3.303103447444255, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3191060593097763, -7.0, -7.0, -7.0, -3.2614611315130806, -7.0, -7.0, -7.0, -7.0, -7.0, -3.816241299991783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4423229557455746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4245549766067134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4413258676537932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2536287301937543, -7.0, -7.0, -3.987978915875482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6870828446043706, -7.0, -2.7126497016272113, -7.0, -7.0, -7.0, -7.0, -2.7399676967595092, -3.295127085252191, -7.0, -7.0, -3.5805828768143675, -2.734199560686231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.309803485676787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3154741615241607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9765028188717886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.823148059810694, -7.0, -3.822220400852558, -7.0, -7.0, -7.0, -1.928591626251906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.324292746514193, -7.0, -7.0, -3.8731461513282555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024933550857837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.037896397296606, -7.0, -7.0, -3.524761863664937, -7.0, -7.0, -7.0, -7.0, -7.0, -3.173186268412274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1732365194371384, -3.8577469894826386, -4.00702192557868, -7.0, -4.155062619223921, -2.6790870506964652, -2.8749325644777626, -4.4275023380332845, -3.516574256073354, -7.0, -2.841428996506697, -4.117668940562442, -4.6727995541771605, -4.337339439388419, -2.3825952979193326, -4.316704039700037, -3.7195632907571934, -2.7588278164163147, -3.589204670642375, -3.3713655035168926, -7.0, -4.408535049571333, -7.0, -3.5183684580315613, -4.132995700692265, -4.205447977051676, -7.0, -4.4764838219144645, -7.0, -3.2563195389747777, -3.3624117830472824, -4.123514088042597, -7.0, -3.7480587534580208, -3.4246094370095563, -7.0, -7.0, -4.3821251522253215, -3.640762924911052, -7.0, -7.0, -7.0, -3.7379277754753852, -7.0, -7.0, -3.512317438458193, -7.0, -4.564488523410793, -7.0, -3.529173603261723, -2.6815642529962074, -4.191953767152995, -3.833083334178343, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9317882969633793, -7.0, -7.0, -3.6876002973649102, -3.4312118238758584, -4.8765526726537205, -7.0, -7.0, -7.0, -3.7845765405936316, -3.8086835091289695, -7.0, -7.0, -3.8185887540885934, -7.0, -7.0, -3.773347541980823, -4.014121342041001, -7.0, -7.0, -7.0, -3.9060925019869828, -7.0, -7.0, -4.623590387791532, -3.5422141112149736, -7.0, -4.349704810656211, -7.0, -7.0, -3.458939861890326, -3.779127315306203, -2.8603380065709936, -7.0, -7.0, -1.360732888315757, -3.530583859645118, -2.3593800878746345, -7.0, -3.1652443261253107, -2.4029297482837086, -2.6148972160331345, -2.7819820024964894, -2.374901024683465, -7.0, -7.0, -2.714162046098853, -2.4485130854271855, -1.9068685051676264, -2.9574476493145365, -2.7089305358066165, -1.6248278824518179, -2.6322786069397006, -1.3332039819952237, -1.5370508399960496, -1.915679114299964, -2.6148972160331345, -2.833784374656479, -1.8380201260230709, -1.3047175819263184, -2.6027832129470583, -3.3398487830376373, -2.298634783124436, -2.4661002702247345, -2.0965238017937176, -3.003245054813147, -2.572983512136525, -2.727177518268621, -2.652883029692004, -7.0, -1.798025500812446, -7.0, -1.4629906891979096, -7.0, -7.0, -3.3157604906657347, -2.639386869017684, -1.4986286017583395, -2.603144372620182, -2.3057351235423744, -7.0, -1.8322454644228146, -2.3204924754334133, -2.0672268892739267, -7.0, -2.1487325081429565, -3.3234583668494677, -3.454692449239477, -2.20251480500679, -2.2012019796387126, -3.3153404766272883, -7.0, -3.4371160930480786, -2.4786733593940635, -2.155336037465062, -1.4094314461192683, -2.3720933514894265, -7.0, -2.644691850487941, -7.0, -1.825237608259588, -3.3550682063488506, -3.081527326244805, -4.006679927740826, -7.0, -1.9976946862194678, -1.6502191890561915, -3.338854746252323, -3.361727836017593, -1.9955098389950334, -7.0, -7.0, -3.0599418880619544, -2.929929560084588, -7.0, -2.4818163759280423, -2.8312296938670634, -3.1747380145272865, -3.1288837020997735, -2.2790623777037693, -1.5922125858397185, -1.4510184521554574, -1.5613453617046675, -7.0, -7.0, -3.007299600653417, -1.750096084914117, -2.720159303405957, -2.251516552291679, -2.8705599579152383, -2.583198773968623, -2.1142691546341217, -2.9389989524702442, -1.8878541021310815, -7.0, -1.8881965187319025, -7.0, -3.299942900022767, -7.0, -7.0, -2.7622095125079533, -7.0, -7.0, -7.0, -2.1921864181570534, -7.0, -2.0442036624920537, -7.0, -2.846543280888438, -2.677606952720493, -2.7255032688593155, -2.870793931782029, -2.167011601203763, -7.0, -7.0, -7.0, -1.920089648303665, -7.0, -7.0, -7.0, -3.045127306568027, -7.0, -3.348888723071438, -3.106598813212537, -2.048335847916511, -2.665393350279712, -3.3236645356081, -7.0, -3.6020599913279625, -7.0, -7.0, -2.724380911198085, -2.5149902330672873, -7.0, -2.8109042806687006, -1.9952535649755383, -2.2530147492770154, -7.0, -7.0, -7.0, -7.0, -1.768755789395493, -2.6908603082720437, -7.0, -3.2898118391176214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.662635078938201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.507855871695831, -7.0, -7.0, -7.0, -3.4448251995097476, -7.0, -7.0, -3.1222158782728267, -3.027992403440902, -7.0, -7.0, -7.0, -2.5593080109070123, -7.0, -7.0, -4.563481085394411, -7.0, -7.0, -7.0, -2.8674674878590514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4409090820652177, -7.0, -2.919601023784111, -7.0, -7.0, -2.5010592622177517, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4358443659844413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6972293427597176, -3.1795517911651876, -7.0, -7.0, -7.0, -3.5674577001569503, -7.0, -7.0, -2.795184589682424, -7.0, -7.0, -2.704579449696299, -7.0, -7.0, -4.228810845011355, -7.0, -2.8674674878590514, -7.0, -7.0, -7.0, -7.0, -2.4807253789884878, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2605483726369795, -7.0, -4.222963454651633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0310042813635367, -7.0, -2.767897616018091, -7.0, -7.0, -7.0, -7.0, -7.0, -2.963787827345555, -7.0, -2.5960103102213306, -7.0, -7.0, -2.494850021680094, -2.9556877503135057, -7.0, -7.0, -7.0, -4.11143055176598, -7.0, -2.6546577546495245, -2.41774840202559, -3.4172106347347677, -7.0, -2.650954757949053, -7.0, -2.2723058444020863, -7.0, -2.8356905714924254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.711807229041191, -7.0, -3.484157424365381, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9845273133437926, -7.0, -7.0, -7.0, -7.0, -7.0, -4.089127629044278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.09968064110925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5851786285035163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5781806096277777, -7.0, -7.0, -3.3517503064858096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.926856708949692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.398981066658131, -7.0, -7.0, -7.0, -2.8027737252919755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0800850850458694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.815577748324267, -7.0, -2.792391689498254, -1.968907271481587, -3.076640443670342, -7.0, -7.0, -7.0, -7.0, -2.289291592392737, -7.0, -7.0, -7.0, -2.8987251815894934, -7.0, -2.814913181275074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.157845166862068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.282848602834645, -7.0, -7.0, -7.0, -7.0, -2.507855871695831, -3.4193774051391275, -2.629409599102719, -7.0, -7.0, -7.0, -7.0, -2.504859058705207, -7.0, -2.6503075231319366, -1.971422347131096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2440295890300215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1829849670035815, -2.775974331129369, -7.0, -7.0, -4.310023834437932, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6802347607214068, -7.0, -3.2219355998280053, -2.9731278535996988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.751279103983342, -7.0, -7.0, -7.0, -7.0, -2.629409599102719, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7693773260761385, -7.0, -7.0, -7.0, -3.153204900084284, -4.530566259674217, -7.0, -3.1818435879447726, -2.748704736742231, -1.7927099705545686, -7.0, -2.9745116927373285, -7.0, -2.806519134080705, -2.8847953639489807, -2.2982290899777897, -2.4638929889859074, -7.0, -7.0, -7.0, -7.0, -2.8709888137605755, -7.0, -3.1763806922432702, -2.8068580295188172, -2.7373516958037145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.554714079964416, -7.0, -7.0, -4.178410941217267, -7.0, -4.612391755480837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7074168686367095, -3.930465080784248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.576341350205793, -7.0, -4.311393565000522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2971036501492565, -4.08292891501513, -4.151001907992831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.413132050434872, -7.0, -4.361009712608143, -4.504389297186282, -7.0, -7.0, -2.753008215020888, -7.0, -4.138134211870816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2847239246361575, -7.0, -7.0, -7.0, -4.167701234971368, -7.0, -2.1920095926536702, -7.0, -4.266631458809917, -7.0, -4.159787693079161, -7.0, -7.0, -3.639087871083737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.403549454032318, -1.949999542859922, -2.2770358881721102, -7.0, -3.437433443797971, -3.4035923240271115, -3.1664301138432824, -2.5998830720736876, -1.8941775538387728, -2.901798757630448, -7.0, -3.4554945456712955, -2.272835795025385, -2.3647385550553985, -7.0, -7.0, -3.303412070596742, -3.4885507165004443, -7.0, -7.0, -3.228400358703005, -7.0, -3.163757523981956, -1.8177856558855299, -1.5968863360513395, -7.0, -3.5524248457040857, -7.0, -7.0, -3.62914737036461, -3.7414076861413017, -4.744347755549232, -7.0, -7.0, -2.0511525224473814, -3.238798562713917, -1.9149892102916513, -7.0, -2.2194535370768107, -2.356320094658242, -7.0, -2.304490527773488, -1.9172274028628247, -2.1782573208121887, -3.7311050512159203, -7.0, -2.5103534801122604, -7.0, -7.0, -2.0644579892269186, -7.0, -7.0, -7.0, -2.824125833916549, -1.997511199596305, -7.0, -3.353916230920363, -7.0, -7.0, -7.0, -2.4899584794248346, -2.4212747912103465, -2.028932562598488, -7.0, -2.9370161074648142, -7.0, -7.0, -7.0, -3.2627674003648806, -2.284806583700867, -7.0, -2.4751867549424627, -2.4228359687795225, -2.4479328655921804, -2.2000292665537704, -2.521942332974436, -2.1549562434033382, -7.0, -3.0500702643674384, -2.515873843711679, -1.260289681270346, -1.5710379430085666, -3.1538910496761696, -7.0, -3.3236645356081, -2.44870631990508, -7.0, -7.0, -4.278227557594742, -7.0, -2.546542663478131, -7.0, -3.6215501543254702, -7.0, -3.9745116927373285, -3.3866549981631726, -2.264101992153716, -7.0, -7.0, -2.214843848047698, -7.0, -2.2533380053261065, -2.831549851995756, -7.0, -2.782472624166286, -2.8344207036815328, -7.0, -2.53631790283572, -7.0, -7.0, -7.0, -2.851869600729766, -7.0, -2.864511081058392, -2.920123326290724, -3.4647875196459372, -7.0, -7.0, -2.532117116248804, -2.7913397039651393, -7.0, -7.0, -7.0, -7.0, -2.893206753059848, -7.0, -2.794575175655731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.332101666969759, -7.0, -7.0, -3.265525335219074, -7.0, -3.118595365223762, -7.0, -7.0, -2.3324384599156054, -7.0, -3.595606434865603, -7.0, -2.918554530550274, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357725268400632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.285557309007774, -7.0, -7.0, -4.178700751736516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.655366571648936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0351294308208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.402175375031505, -2.3521825181113627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02848991652189, -7.0, -7.0, -7.0, -7.0, -3.302114376956201, -2.783903579272735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.217641840773327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.824125833916549, -7.0, -7.0, -7.0, -7.0, -2.534026106056135, -7.0, -2.24551266781415, -2.7101173651118162, -7.0, -4.060130999531045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.435470087438645, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1398790864012365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6760531246518715, -2.807196660710947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7733841341771543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7371926427047373, -1.9628426812012423, -7.0, -1.8603380065709938, -1.9867717342662448, -7.0, -4.029188910280547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.524210605449204, -7.0, -7.0, -7.0, -2.782472624166286, -7.0, -7.0, -2.6414741105040997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3220124385824006, -7.0, -7.0, -7.0, -2.357934847000454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8041394323353503, -2.895422546039408, -7.0, -7.0, -7.0, -2.2741578492636796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -2.040074643230312, -3.985561187773345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9777236052888476, -7.0, -7.0, -2.6503075231319366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1598678470925665, -2.3508938095043144, -1.9731278535996988, -7.0, -7.0, -2.061954844073114, -7.0, -7.0, -7.0, -7.0, -2.9443181355003873, -7.0, -7.0, -7.0, -4.60672522457584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6074550232146687, -2.358886204405869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.037426497940624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.734044155975036, -7.0, -2.7446840632768863, -4.544551703070268, -3.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8260748027008264, -7.0, -7.0, -7.0, -2.369215857410143, -2.8898617212581885, -7.0, -7.0, -4.617671195831475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732996528111129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784674339064312, -7.0, -7.0, -7.0, -7.0, -7.0, -4.703935891442843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.742332282357148, -4.269933025967809, -7.0, -3.731346975545955, -7.0, -4.049683089088249, -7.0, -7.0, -2.0078654490661223, -2.8956987269593055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5668955742647115, -7.0, -7.0, -7.0, -7.0, -4.35324283143373, -4.678641275182585, -5.1723430940270845, -7.0, -2.5696079675468244, -7.0, -3.610798519192768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5786392099680726, -4.127342406950523, -3.8638104239716684, -7.0, -3.518665764554107, -7.0, -7.0, -7.0, -4.009535876619219, -1.9614210940664483, -1.2430380486862944, -7.0, -7.0, -7.0, -3.686948920211501, -1.4800069429571505, -2.3475251599986895, -7.0, -7.0, -3.6869935662646784, -7.0, -0.7678976160180906, -7.0, -3.777281791671015, -7.0, -4.025602804765786, -2.4833495228146365, -7.0, -7.0, -7.0, -7.0, -2.9492273190678455, -7.0, -7.0, -3.4740705032150436, -7.0, -7.0, -2.4807253789884878, -2.0980665902079987, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163449615841143, -4.44010583903666, -7.0, -7.0, -1.646136276056409, -7.0, -2.2392994791268928, -7.0, -1.806179973983887, -2.5628025001283783, -7.0, -7.0, -7.0, -2.305351369446624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.615799802742291, -7.0, -7.0, -7.0, -7.0, -7.0, -2.416640507338281, -3.205500290929755, -7.0, -7.0, -7.0, -7.0, -7.0, -1.72916478969277, -7.0, -7.0, -2.2706788361447066, -7.0, -7.0, -7.0, -7.0, -2.690970914278475, -2.5728716022004803, -2.1212314551496214, -2.715501945293284, -2.9595183769729982, -3.1272668183188985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.678700434998304, -7.0, -2.428134794028789, -7.0, -7.0, -7.0, -1.410308485914647, -2.27600198996205, -7.0, -7.0, -2.4409090820652177, -2.173186268412274, -3.8485893458691725, -2.05307844348342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.532117116248804, -7.0, -7.0, -7.0, -7.0, -1.8836614351536176, -7.0, -7.0, -7.0, -3.0593740590659575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.578318240585008, -7.0, -7.0, -3.1571544399062814, -7.0, -2.957607287060095, -7.0, -7.0, -2.661812685537261, -2.187520720836463, -3.5482665451707454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.186881028636386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7523045932010324, -7.0, -7.0, -3.1684974835230326, -3.880802163328254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.347193361847937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8268778287230028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9035602180181637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.116408480629899, -7.0, -7.0, -7.0, -4.138815652231705, -7.0, -3.174931593528443, -7.0, -7.0, -7.0, -2.921166050637739, -7.0, -7.0, -7.0, -3.385069776331935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8466463285771173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.778344227272801, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8867726430544383, -7.0, -7.0, -3.721315880605899, -7.0, -3.050379756261458, -7.0, -7.0, -2.6290696425437527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1227072543183483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.677150521273433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5780658838360915, -4.037101498348468, -7.0, -7.0, -7.0, -2.7693773260761385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.009833178608563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9537596917332287, -7.0, -3.7263332048395883, -7.0, -7.0, -7.0, -2.586399744970328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.658244654605687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145596906666468, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530804598699046, -7.0, -7.0, -3.8523213739920474, -3.1920095926536702, -7.0, -7.0, -7.0, -7.0, -3.5082603055123345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.66904814036834, -4.751417686492172, -7.0, -7.0, -3.9595024859218646, -2.9344984512435675, -2.8953436049355092, -7.0, -2.781779302063946, -7.0, -3.051499819132745, -3.7355646839741787, -3.405507622803944, -3.6297968252555064, -2.799185416577525, -4.289678120899732, -4.096371153688629, -3.124887640134107, -3.4148480526441123, -3.914914082586252, -3.9307962629833004, -4.103208295336138, -7.0, -3.445901272848216, -2.859456190061124, -7.0, -3.426063723800878, -3.2814424572708725, -7.0, -3.2310701141047367, -3.120776352315039, -3.984707294482673, -4.249222823996674, -4.191674531959229, -3.827885982789856, -7.0, -7.0, -3.881783955593385, -3.283509973952415, -7.0, -7.0, -4.577422858733517, -3.712355022085704, -3.4728295567127057, -7.0, -3.593433761115369, -7.0, -7.0, -7.0, -7.0, -3.787141544200371, -4.15554857715353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062751156916884, -4.380116229401339, -7.0, -7.0, -7.0, -7.0, -3.8386077489795007, -7.0, -7.0, -3.6555225962534177, -4.076349117493459, -7.0, -7.0, -7.0, -3.9869955397243815, -7.0, -7.0, -7.0, -4.17207725696948, -7.0, -7.0, -7.0, -3.6661785553856663, -7.0, -4.638439335179549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.139485525448247, -3.245336376160865, -1.9155036320177758, -2.9425041061680806, -2.3178022622275756, -2.235107414899873, -1.8693861355483907, -2.612275116542189, -1.7628729845648419, -7.0, -7.0, -2.4147060075610813, -1.6645524395323255, -2.6270310620213944, -2.866582677063549, -1.7232503803830987, -2.3530589956679915, -2.3818728544985426, -1.845511456972561, -1.6648664026559605, -2.427323786357247, -1.6401500409361018, -2.466496903744401, -2.3096301674258988, -1.728213799914649, -2.5869621812439334, -2.971275848738105, -2.576341350205793, -2.028534835394969, -2.052223532809907, -2.582063362911709, -2.5711991391735527, -2.715029511589328, -2.1371799788235775, -7.0, -1.765335585862254, -3.0265332645232967, -1.9874780957370641, -2.9566485792052033, -7.0, -7.0, -2.146691688556713, -1.670636405692084, -1.5095187753812356, -1.824175916887475, -7.0, -1.8502107875348965, -2.1996866278914977, -1.2817248404685946, -7.0, -1.7896420142298675, -2.6299190355035416, -2.422699247707434, -2.7609776951458618, -1.9498333905342697, -7.0, -7.0, -3.022943609686901, -2.0625501175897143, -2.28362424432417, -1.88754697493976, -2.1505005962700507, -3.0334237554869494, -2.765643363141901, -7.0, -1.5417922601981502, -2.223582462425357, -1.6147410230870514, -3.347232410084063, -7.0, -2.1548685514329433, -1.592801092674244, -7.0, -7.0, -1.3092543175695517, -7.0, -7.0, -2.504276634189794, -2.5118833609788744, -7.0, -2.554640561254055, -2.317764953307669, -3.209112703738592, -1.8245287188967205, -1.9880598807558294, -1.6488033948702887, -1.7248750343064068, -1.45375503639545, -7.0, -7.0, -2.44606178890428, -1.8747642083309373, -2.1487054585660488, -1.3786174987050486, -2.6141317934028017, -2.215565467402707, -1.740597633769329, -2.4578818967339924, -1.665436659184819, -7.0, -2.1754473827599763, -7.0, -2.8715729355458786, -3.0224283711854865, -2.8767949762007006, -2.1087731188407464, -7.0, -2.6180480967120925, -7.0, -1.8468366233290923, -7.0, -2.3447851226326604, -2.4356320489516605, -2.151267675330649, -1.7630337180189228, -2.1618669046240195, -1.6302429114439048, -1.608496318926168, -1.920089648303665, -2.7913397039651393, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8288439586198308, -2.9689496809813427, -7.0, -3.234179705196503, -2.2475056544922394, -3.2295538639811365, -2.9324737646771535, -7.0, -2.4823971222533356, -7.0, -7.0, -3.1133193018303085, -7.0, -7.0, -2.0126152494987535, -1.917899189424106, -2.384114363914378, -7.0, -7.0, -7.0, -7.0, -2.113943352306837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6576103243042395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.751279103983342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.499687082618404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727232098507561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.830761838749707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.032981193097368, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0897108712889345, -7.0, -7.0, -4.04834467854007, -7.0, -7.0, -7.0, -7.0, -7.0, -4.783803565738718, -7.0, -7.0, -7.0, -7.0, -7.0, -4.225731307354037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.561423405743846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.681467373533731, -7.0, -2.9995654882259823, -2.5599066250361124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626473817986867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4559102403827433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.338346910071675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.146128035678238, -3.3888114134735234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2610248339923973, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7960189693471493, -7.0, -7.0, -7.0, -7.0, -3.966625417227429, -2.6522463410033232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5314789170422551, -7.0, -2.677264674114648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4129642719966626, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2659492899506235, -7.0, -7.0, -7.0, -3.832359864516441, -7.0, -7.0, -3.8009002862504695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.187520720836463, -7.0, -4.145910834132374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1727974640157566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7974522094768086, -7.0, -7.0, -7.0, -7.0, -7.0, -0.8846065812979305, -7.0, -2.5276299008713385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.149028104289625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432828242457897, -7.0, -7.0, -4.543012046377036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.180813775754397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7681939616330715, -7.0, -4.6264532897924076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639376905735657, -4.7401731378151295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5779511277297553, -7.0, -7.0, -2.7788744720027396, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779610919406259, -7.0, -7.0, -7.0, -7.0, -3.9150831016512004, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2043913319193, -7.0, -7.0, -3.5817221599490985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.964825117883389, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278067330888662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145848756590544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274619619091238, -7.0, -7.0, -3.1179338350396413, -7.0, -7.0, -7.0, -0.9378520932511555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3201462861110542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5390760987927767, -7.0, -2.6748611407378116, -2.2405492482826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067340578183524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2304489213782737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.401745082237063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.344588742578714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.655064518636937, -2.6842467475153122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -4.979129356147615, -5.1719895827021185, -7.0, -7.0, -7.0, -4.6097011023793995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.272653697429817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.260381487592611, -7.0, -4.154464550007314, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1760912590556813, -7.0, -7.0, -7.0, -7.0, -1.9934362304976116, -3.0, -7.0, -7.0, -7.0, -7.0, -2.1271047983648077, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8048206787211623, -7.0, -7.0, -7.0, -2.145783220668538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.177518464070232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278136006715478, -7.0, -7.0, -7.0, -7.0, -7.0, -2.271841606536499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8836614351536176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6504046698680317, -7.0, -7.0, -2.2528530309798933, -1.4471580313422192, -7.0, -7.0, -7.0, -4.274688842237558, -7.0, -7.0, -3.1189257528257768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.359038228379384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9079485216122722, -3.6020599913279625, -7.0, -7.0, -4.276415844653449, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.560277351854042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.338954252377607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4913616938342726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0791812460476247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.918371134693579, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.588047496986083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6671726724788685, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6885088076565213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9951962915971793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.72934300831835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2612033723225187, -7.0, -7.0, -4.370809056545495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.048247531803974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.848798549528324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5144149205803688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3096301674258988, -7.0, -3.6977522741677546, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6267508536833932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.608205007704326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1455071714096627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9573678084315276, -7.0, -4.8311784466569145, -7.0, -3.0972573096934197, -4.546258798765529, -7.0, -7.0, -7.0, -7.0, -3.0060379549973173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.619114209667246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8309012866592043, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4920091503206274, -7.0, -7.0, -3.87473300575909, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.404072179076356, -4.2246366386814405, -4.582108836392919, -7.0, -4.1798389280231865, -3.8000293592441343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305652261364764, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3120362371917773, -3.2337573629655108, -3.2946498990262056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.409820451263753, -7.0, -7.0, -3.878694100396108, -4.378220694456968, -4.871710090234615, -7.0, -7.0, -7.0, -3.8341980945620744, -7.0, -4.641558383219824, -7.0, -7.0, -7.0, -3.3634239329171765, -7.0, -3.801403710017355, -7.0, -7.0, -7.0, -3.8585973449946924, -7.0, -7.0, -7.0, -3.5228826933940454, -7.0, -3.935194783852778, -7.0, -7.0, -3.611404637711593, -3.714245911017894, -7.0, -7.0, -7.0, -2.5422027824340283, -7.0, -3.039237809630672, -7.0, -3.1000257301078626, -7.0, -2.6126072783550733, -2.594171479114912, -7.0, -2.7234556720351857, -7.0, -3.008316226356639, -7.0, -2.956096873522117, -3.0232524596337114, -2.952792443044092, -7.0, -3.752278985460119, -2.460396637297684, -2.2684219472783616, -3.0780941504064105, -7.0, -7.0, -7.0, -3.0751818546186915, -2.8721562727482928, -7.0, -7.0, -2.756319081819694, -2.485011214578573, -7.0, -4.169424598808618, -3.687578501451031, -3.2504042610130406, -7.0, -2.6819644589946834, -7.0, -2.8639173769578603, -2.6875289612146345, -7.0, -7.0, -2.954885432549936, -2.403120521175818, -2.873320601815399, -2.6510625367017844, -7.0, -3.407645797062556, -2.45687190911158, -3.303196057420489, -7.0, -2.315970345456918, -2.640481436970422, -3.0718820073061255, -3.187238619831479, -2.7649229846498886, -7.0, -7.0, -3.5803546611065915, -3.512550992904211, -7.0, -2.927883410330707, -3.6760531246518715, -7.0, -3.194553983567667, -2.5483894181329183, -2.509370560438018, -2.7752462597402365, -2.8727388274726686, -7.0, -7.0, -2.1814232080049676, -2.1018452306835687, -7.0, -7.0, -2.18587254245639, -2.4683473304121573, -7.0, -3.610553705317095, -2.4693310102934105, -7.0, -2.470312467167388, -2.718916686014861, -2.972665592266111, -2.4056877866727775, -2.8312296938670634, -3.1946068335198956, -1.8920946026904806, -2.1864940194554485, -7.0, -7.0, -3.9709509343454243, -3.411788004543869, -7.0, -2.8093352150273203, -3.1103160859286136, -7.0, -2.314393957221963, -2.8203600231266415, -2.384039633727167, -7.0, -2.975891136401793, -7.0, -7.0, -7.0, -7.0, -3.171726453653231, -7.0, -7.0, -7.0, -2.538677930404596, -7.0, -2.842609239610562, -2.606381365110605, -2.645422269349092, -2.377184787081418, -2.3626709297256667, -7.0, -2.5173608721141245, -3.045127306568027, -7.0, -7.0, -1.8288439586198308, -7.0, -7.0, -7.0, -7.0, -2.7101173651118162, -1.6548180404907622, -2.6316282219706713, -2.1956361241961093, -3.1724569744005873, -7.0, -7.0, -3.3675422735205767, -7.0, -2.4653828514484184, -3.001050179041275, -7.0, -7.0, -1.470116353151004, -2.4285765243417345, -2.169002281505364, -2.4578818967339924, -7.0, -2.775974331129369, -7.0, -2.562768543016519, -2.4771212547196626, -2.7481880270062007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659716587811443, -7.0, -7.0, -7.0, -7.0, -3.643353961976863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100077469815475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.338177499296536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1815577738627865, -7.0, -7.0, -2.558708570533166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03249788285711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.632457292184724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.824125833916549, -2.6589648426644352, -7.0, -7.0, -7.0, -7.0, -4.218942301606471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6414741105040997, -7.0, -7.0, -7.0, -7.0, -3.529045170765769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.576341350205793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.383815365980431, -3.426673888021373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.078094150406411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8407332346118066, -7.0, -7.0, -3.8838317133294527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.244771761495295, -7.0, -7.0, -7.0, -7.0, -3.4670991576426897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3220124385824006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.866877814337499, -7.0, -3.5221833176186865, -4.149659344142463, -7.0, -2.4578818967339924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.688864568054792, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2405492482826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5185139398778875, -3.694341910364181, -7.0, -4.197308131503102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7611758131557314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.607787318992725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.654818040490762, -2.800717078282385, -7.0, -2.7024305364455254, -7.0, -7.0, -4.144016929377213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.53007317068778, -7.0, -3.0835026198302673, -7.0, -7.0, -7.0, -2.8027737252919755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5224442335063197, -2.9079485216122722, -7.0, -7.0, -4.317655992914544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.43274487412905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.308229938510919, -4.074633618296904, -7.0, -7.0, -4.450987704555041, -7.0, -3.5004080174600545, -3.922543815390706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.049140463158965, -4.3898568606187425, -3.9635044994142907, -7.0, -4.572139419778374, -3.827606174663971, -3.438067450453494, -7.0, -7.0, -7.0, -4.0666116331675966, -7.0, -7.0, -4.0717347638797605, -3.6642030725557553, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4983105537896004, -7.0, -7.0, -7.0, -4.355144896174567, -4.5029912452209455, -7.0, -7.0, -7.0, -7.0, -3.912986846699656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.651859269246949, -7.0, -7.0, -7.0, -7.0, -3.827315413751728, -3.8649854606597938, -7.0, -7.0, -7.0, -7.0, -3.6072405038317426, -4.013721778051063, -7.0, -7.0, -7.0, -7.0, -7.0, -2.628788608010636, -7.0, -2.236968894270856, -2.2863067388432747, -2.3823773034681137, -3.691390960388043, -2.0572856444182146, -2.690196080028514, -2.5224442335063197, -3.4832305869021027, -2.4401216031878037, -3.783515643130903, -1.9568666532654737, -2.3283796034387376, -7.0, -2.5428254269591797, -3.231214647962601, -2.09373996621855, -3.0637085593914173, -2.586587304671755, -2.444044795918076, -7.0, -7.0, -7.0, -2.3774883833761327, -7.0, -3.0556331242728354, -7.0, -7.0, -3.390405156480081, -2.7535930062006386, -3.310158127614801, -7.0, -3.073901558314207, -2.782472624166286, -2.852174904420303, -2.3483048630481607, -7.0, -7.0, -2.5792935143960207, -7.0, -2.37045140442245, -3.6028193424326997, -7.0, -2.801232153830292, -2.3106933123433606, -2.5143263432841403, -7.0, -7.0, -2.1183749671059116, -2.452935870201179, -3.855902603038427, -7.0, -7.0, -7.0, -3.5758803156806462, -3.111598524880394, -7.0, -7.0, -2.826259963429235, -2.3145693943004555, -3.098495907887131, -2.121887985103681, -2.805160901599434, -2.745855195173729, -2.3698340703001612, -7.0, -2.574031267727719, -3.1126050015345745, -7.0, -2.3729120029701067, -1.9183299535486804, -2.5601458398490475, -7.0, -2.5211380837040362, -2.5248286863646054, -2.928907690243953, -7.0, -2.8790958795000727, -7.0, -3.143014800254095, -2.514547752660286, -2.886248935531698, -2.489771041147474, -2.953518081444993, -3.2229764498933915, -7.0, -7.0, -3.066302625676853, -3.103803720955957, -2.296665190261531, -2.32060781057734, -3.359666873395946, -2.088941083336781, -3.260739019910411, -2.627934528249084, -3.287353772714747, -7.0, -2.957607287060095, -2.24551266781415, -7.0, -2.4727564493172123, -2.7197454925295768, -7.0, -7.0, -7.0, -7.0, -2.8292731336915784, -2.514547752660286, -7.0, -7.0, -2.605305046141109, -7.0, -2.6273658565927325, -2.7193312869837265, -2.6364878963533656, -7.0, -2.893206753059848, -7.0, -2.9689496809813427, -7.0, -7.0, -7.0, -2.7101173651118162, -7.0, -2.239716468579862, -2.051011265499672, -2.915135906622012, -7.0, -1.682370742516557, -7.0, -1.689999076404404, -2.184691430817599, -7.0, -2.6245112749871096, -2.424881636631067, -7.0, -1.9465100592086342, -2.9894498176666917, -3.0025979807199086, -7.0, -7.0, -2.7466341989375787, -1.6901960800285138, -2.957487564252472, -2.1122697684172707, -7.0, -2.0773679052841567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3591522114468955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1258064581395266, -7.0, -7.0, -4.276484782109383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.861992160051738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.716086853774832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4322475382686006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.553883026643874, -7.0, -2.967547976218862, -7.0, -7.0, -7.0, -3.918528335883243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.535547279176668, -7.0, -7.0, -7.0, -7.0, -4.135601690575795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0461047872460387, -7.0, -7.0, -7.0, -4.079940597152362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.864333055033393, -7.0, -7.0, -3.9729245192283265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.351989455435632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.37168959776849, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4990681845107945, -7.0, -7.0, -7.0, -3.62797998982998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.307282047033346, -7.0, -7.0, -3.7641761323903307, -7.0, -7.0, -7.0, -7.0, -3.1492191126553797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0557604646877348, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.433238437984877, -7.0, -3.101403350555331, -7.0, -7.0, -7.0, -2.8363241157067516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.44723557700476, -7.0, -7.0, -7.0, -7.0, -7.0, -4.399742926242862, -4.734199560686231, -7.0, -7.0, -4.576145470330555, -3.7028420403429068, -4.502270035398499, -4.094488597899382, -7.0, -7.0, -4.653096686469175, -3.999869692108268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7811191057733784, -4.150710399135644, -7.0, -4.705222055705383, -7.0, -4.2811925036053236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0993352776859577, -7.0, -4.305910002904616, -7.0, -7.0, -4.05545478494124, -7.0, -4.54441534103564, -2.7890163267933747, -2.63321588535909, -2.5943557129792554, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6972293427597176, -7.0, -3.7113572411942726, -7.0, -7.0, -3.577778936695224, -4.503223051971403, -4.327647881293372, -7.0, -7.0, -7.0, -4.612582551653833, -7.0, -7.0, -7.0, -4.061301656206044, -7.0, -3.1882720955600496, -7.0, -3.2784792230463227, -7.0, -7.0, -7.0, -4.160048139552876, -7.0, -7.0, -7.0, -4.087485637315985, -7.0, -2.9802660415584765, -7.0, -7.0, -3.6126779183165016, -3.71474876072506, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3923891456860735, -2.369215857410143, -3.104145550554008, -7.0, -2.9168047518661746, -2.5775801698613177, -3.08278537031645, -7.0, -7.0, -2.7072862306926577, -7.0, -3.0264004636880624, -7.0, -7.0, -7.0, -7.0, -3.2440295890300215, -2.671018481781557, -7.0, -7.0, -7.0, -7.0, -3.079543007402906, -7.0, -7.0, -7.0, -2.882398032133449, -7.0, -7.0, -7.0, -3.9430491110084067, -4.265179584364818, -7.0, -3.3845326154942486, -7.0, -3.1690863574870227, -2.69810054562339, -7.0, -7.0, -2.734319680859007, -7.0, -7.0, -3.608312042697327, -7.0, -7.0, -7.0, -3.3057811512549824, -7.0, -7.0, -7.0, -7.0, -3.488792371601868, -7.0, -7.0, -2.6541765418779604, -7.0, -3.8145139523682383, -7.0, -7.0, -3.677150521273433, -2.526339277389844, -3.4000556518905416, -2.857935264719429, -7.0, -7.0, -7.0, -3.9293167267534956, -7.0, -2.437667132893726, -2.9585638832219674, -2.720159303405957, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9542425094393248, -7.0, -2.950364854376123, -7.0, -7.0, -7.0, -2.6205364371187407, -3.6732052817790453, -7.0, -3.236033147117636, -7.0, -7.0, -4.272305844402086, -7.0, -7.0, -7.0, -3.8381141548980646, -7.0, -3.66138669778177, -3.004728546096142, -7.0, -7.0, -7.0, -2.6074550232146687, -7.0, -2.8109042806687006, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5285188124972784, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3738311450738303, -2.7596678446896306, -7.0, -3.348888723071438, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6548180404907622, -2.239716468579862, -7.0, -2.4690852991231202, -2.4806601157105974, -7.0, -2.1722136039924793, -7.0, -2.8919089670894906, -7.0, -1.872156272748293, -2.979001748474721, -7.0, -7.0, -1.2338215040176737, -2.996949248495381, -3.024074987307426, -2.4756711883244296, -7.0, -2.1782573208121887, -2.1789769472931693, -3.2650537885040145, -2.1903316981702914, -2.7573960287930244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.084584995993608, -7.0, -7.0, -7.0, -3.9223101632143957, -3.9353056902899253, -7.0, -7.0, -7.0, -3.4079854213081364, -7.0, -3.3895204658463776, -7.0, -7.0, -3.7188337183038622, -3.003395081957638, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.306113939864634, -7.0, -7.0, -3.6611498572447867, -7.0, -3.077912702949456, -7.0, -7.0, -7.0, -7.0, -7.0, -3.335474616860434, -7.0, -7.0, -3.6742179455767, -7.0, -3.657533887557986, -7.0, -7.0, -7.0, -7.0, -3.758609142659744, -2.7660873761509297, -7.0, -7.0, -2.9628426812012423, -7.0, -7.0, -7.0, -7.0, -7.0, -3.43288915534841, -7.0, -7.0, -7.0, -2.629875392934101, -7.0, -7.0, -7.0, -7.0, -3.3233896221747057, -3.6923180442592787, -7.0, -7.0, -7.0, -7.0, -3.6670792054642165, -7.0, -7.0, -7.0, -7.0, -3.6547539332529304, -7.0, -3.6887756552728446, -3.6695957810243134, -3.104487111312395, -7.0, -3.2062860444124324, -3.6979264448065052, -3.249373088627388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.396286546068402, -7.0, -7.0, -7.0, -3.654850090561394, -3.2216749970707688, -3.6549462265843444, -7.0, -7.0, -7.0, -2.9424765625193063, -7.0, -7.0, -7.0, -3.3811150807098507, -7.0, -7.0, -3.1812717715594614, -4.22618732283988, -7.0, -3.682506085939011, -3.370698092575577, -3.3378584290410944, -7.0, -3.243203462697779, -3.432568465297358, -3.208530929395862, -7.0, -3.662190990859007, -7.0, -7.0, -7.0, -4.12949654301666, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0020700214018694, -2.199295849360945, -3.5413295776666933, -3.700963178159549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4212747912103465, -7.0, -7.0, -7.0, -2.627392810478352, -7.0, -3.650793039651931, -7.0, -7.0, -7.0, -7.0, -2.934245881023071, -7.0, -3.679700380871964, -7.0, -3.691081492122968, -7.0, -7.0, -2.7737110636466, -7.0, -7.0, -7.0, -3.6574383227029625, -7.0, -7.0, -7.0, -2.997386384397313, -7.0, -3.4577683903130203, -7.0, -7.0, -2.6063643015001317, -7.0, -7.0, -3.2077241069247497, -3.6921416093667836, -2.9235030669421045, -7.0, -7.0, -7.0, -3.678154038010437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.764447863656448, -7.0, -3.406114192678464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8963884118460372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.092281919036219, -3.406540180433955, -3.8776592441116087, -4.208208380252703, -3.6504046698680317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.366142676814887, -2.652558244551564, -7.0, -7.0, -7.0, -7.0, -3.658393026279124, -3.182129214052998, -7.0, -3.6691308473733324, -3.7287594751678745, -7.0, -7.0, -3.76544501809015, -7.0, -7.0, -7.0, -3.4924810101288766, -3.387122759927585, -3.183459657707637, -3.0752731600919394, -3.7076796483033396, -7.0, -7.0, -7.0, -3.0791812460476247, -7.0, -7.0, -3.4565178578052627, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3971575742021414, -3.680698029697635, -7.0, -7.0, -3.668944734457734, -7.0, -7.0, -7.0, -7.0, -2.938582263081691, -3.008344629252689, -3.379305517750582, -7.0, -3.1588292245226572, -7.0, -7.0, -2.9188163903603797, -7.0, -7.0, -7.0, -3.658393026279124, -3.445136968713304, -3.6856521841155243, -3.43560550202284, -3.674034000431255, -3.417803722639881, -3.666705136119899, -3.7508034364302163, -3.121969981607635, -7.0, -7.0, -7.0, -3.7382254481425052, -3.696705780933917, -7.0, -7.0, -3.6778805815115905, -7.0, -7.0, -7.0, -7.0, -7.0, -3.652922887567942, -7.0, -7.0, -3.8208907898990563, -3.829753918924975, -3.5000976136989457, -7.0, -3.0351094029445753, -3.0501808225071074, -3.4243915544102776, -7.0, -3.208441356438567, -7.0, -2.9363461582661623, -2.763490387713164, -3.2478096594727353, -3.652536418593025, -7.0, -7.0, -3.2168693557411143, -7.0, -7.0, -7.0, -3.7331972651065697, -3.356790460351716, -3.1231980750319988, -7.0, -7.0, -3.7062814674908884, -3.603144372620182, -4.057571020279038, -3.6871721045948, -3.5381965783494542, -3.501196242027089, -7.0, -3.6881230714056485, -3.3187860602767865, -7.0, -3.222456336679247, -4.621685084798318, -4.093237771546323, -4.05266188475707, -3.140013939525097, -4.366310866766735, -4.458350742139663, -3.06758446824051, -3.3726972562858792, -4.174815456482182, -4.089445858273834, -4.212819934885117, -3.5907675519657363, -3.7728815535896785, -3.9055260484350485, -7.0, -4.065019214136254, -3.733130363083499, -7.0, -3.483959548273282, -3.844021310509786, -3.422753941301348, -3.6335290505821596, -3.683542319957651, -3.5434057575549005, -4.032256025890453, -3.8897497752640375, -7.0, -3.3444225054544248, -7.0, -2.5277104376322375, -2.99450568945658, -2.794827527685904, -2.7814412051174204, -3.394889257167419, -7.0, -7.0, -3.814957517396995, -2.5347873586294916, -2.0299096034648, -2.485694132104429, -2.8940992466856414, -2.7638022240745928, -7.0, -3.3805730030668872, -7.0, -7.0, -3.867290669854884, -2.565758741761729, -3.812779707008964, -1.7911326033509545, -2.5236326771538353, -3.3752846655239948, -3.9293990555775653, -2.9631264410819047, -2.7102584385195545, -2.432969290874406, -2.292304660484183, -3.951628893836638, -3.962743321425236, -3.0144155225606033, -1.8990773475784999, -7.0, -3.098693158915045, -3.5554874342498453, -2.5496445099116336, -7.0, -3.0358798102309463, -7.0, -3.269606330839479, -3.841547165256553, -2.9719249491841913, -2.6468348655844047, -2.1874668989130193, -3.7241939195143297, -3.1967931395743268, -7.0, -3.091315159697223, -2.534607738735867, -3.258996253248911, -3.670987603010034, -7.0, -7.0, -7.0, -3.126699483839912, -2.178069395892812, -2.6644539285811577, -2.268464994147538, -2.565211888976517, -2.6165411519876707, -1.9418973906489527, -2.649497120803289, -3.0701302598602904, -3.356790460351716, -1.9958071924144132, -3.678518379040114, -1.9804825499397798, -1.8882816327903629, -2.3797801801557177, -3.0177287669604316, -2.32584571166409, -2.447158031342219, -2.166562368053224, -3.730378468587643, -7.0, -2.4126405161383464, -3.716003343634799, -2.6867174989421154, -2.913195513751178, -3.069112851387121, -7.0, -2.2119489373443315, -3.6804261708581456, -3.65571454961871, -2.81060728301842, -2.0655907518109906, -2.622632832548614, -2.9540494467635945, -2.36815401218214, -2.9836262871245345, -2.7500453120117676, -3.0662327191202587, -7.0, -3.660675788338524, -2.4369890877885383, -3.670802284260944, -2.846248724120565, -2.6580113966571126, -3.0523090996473234, -2.644063267433544, -2.659397536216122, -2.5853197019112546, -3.3489859568078573, -2.76217822440723, -2.6208928305639048, -3.1264561134318045, -2.6607299938405795, -7.0, -3.1829849670035815, -3.186862199888604, -2.9011857801371503, -2.4348144762668675, -3.2315545380068746, -3.3999331824955683, -2.221044971191486, -3.082246654743669, -2.1023538547952634, -2.4822481208171117, -2.653148169085708, -3.076276255404218, -3.214843848047698, -2.822580972267351, -2.8829038344697353, -2.0208601634104535, -2.859309887372584, -2.971554153446061, -2.680426170858145, -2.7798128631705805, -3.3492775274679554, -3.180412632838324, -2.4992110854524285, -2.8003733548913496, -2.918641834698101, -2.0523833126485127, -2.762678563727436, -2.410433534715368, -3.016531940957265, -1.9966959685634385, -2.7708520116421442, -2.698535492562001, -3.0704073217401198, -3.651956069533074, -3.652149605401653, -2.0925741306838965, -2.6820805787897077, -2.885078384149224, -2.4410521067600404, -2.253560841073256, -2.4218388711449164, -2.211397439106333, -0.5125801924184004, -2.48022477637793, -2.8150081817089876, -3.2321487062561682, -3.0573807905423553, -7.0, -2.566301484735771, -2.4399141343633817, -3.0755469613925306, -3.3534353378561645, -3.1845021545095675, -3.649821463224565, -1.857502033916249, -7.0, -3.6878855248487055, -3.1835545336188615, -3.6646419755561257, -3.212453961040276, -3.66661156841903, -2.9761665001319755, -2.7914354443811287, -3.106598813212537, -2.794575175655731, -3.0593740590659575, -3.234179705196503, -3.1727974640157566, -7.0, -3.6504046698680317, -2.6316282219706713, -2.051011265499672, -2.4690852991231202, -7.0, -2.4929349096166495, -3.0758509827433453, -2.1816530661246945, -3.172310968521954, -1.7144128995225087, -1.7844389742226907, -3.6503075231319366, -0.5080647173271233, -3.1740598077250253, -7.0, -1.58892697605668, -2.738841516373711, -2.6019764651267425, -2.648067129448935, -7.0, -1.1920793644398116, -2.9505595616118003, -2.637712045607411, -3.3498600821923312, -2.975891136401793, -3.649140064144219, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.986709048064589, -7.0, -7.0, -7.0, -7.0, -3.8585973449946924, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3370597263205246, -7.0, -7.0, -3.2829618035343353, -3.496004750814479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9902056151848067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.090011024007147, -7.0, -7.0, -3.5221833176186865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6004283257321315, -7.0, -7.0, -3.6152133348013584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.531255325570886, -7.0, -7.0, -7.0, -7.0, -3.6924944075030846, -7.0, -7.0, -7.0, -4.288919605661727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.409075275308904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2550311633455515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7113853790984517, -7.0, -7.0, -7.0, -3.913995400974908, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0273496077747564, -7.0, -7.0, -7.0, -2.3883694792886034, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.137274968868117, -7.0, -3.258397804095509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.868938178332911, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5765716840652906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7511789891068097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8565562773114914, -7.0, -7.0, -3.7936419870291562, -7.0, -7.0, -7.0, -3.2461291256634364, -7.0, -3.596377143997599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.552320502337091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.214578953570499, -3.5170638734826545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4877038631637265, -3.504833189750311, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5794371311162627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.994976673649691, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6833172619218826, -7.0, -3.413020205344915, -7.0, -2.9325752234982905, -7.0, -7.0, -7.0, -3.243719975783927, -7.0, -3.5864747785713966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2748503200166645, -7.0, -7.0, -3.3311741373868458, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4642354323751117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073645045513152, -7.0, -3.8247717053170036, -7.0, -7.0, -3.62490060220449, -3.5933968423002067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1025023091854522, -3.1251632285648294, -3.552911450216509, -7.0, -3.870579460552685, -3.217045041213536, -2.5516717465004923, -4.144153719132131, -2.78129693567756, -7.0, -2.2550794424275757, -2.660606789731412, -3.6035773681514667, -3.6455663552275963, -2.3268120088570554, -3.5610814979153176, -3.2057773538923087, -2.2395294860605826, -3.2025564256592927, -4.161098356450925, -4.037107632667927, -3.83241814508691, -3.5355894580221245, -2.5377027750519026, -2.4741865209346554, -7.0, -3.8756495750348585, -3.7932594110294806, -3.641275757231913, -2.726710912492605, -2.6985466393218007, -3.834388909363871, -7.0, -3.252731702726023, -2.916358225719054, -4.003180390771252, -4.14992695911359, -4.1006806447251, -2.3804833911645416, -4.079759919660093, -7.0, -4.6037828898966975, -3.75949787011256, -3.9194964878630616, -7.0, -3.6729901704091192, -7.0, -4.2764273349893775, -3.951386094880293, -7.0, -2.8018509291711813, -3.267328202727136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.481896274611678, -7.0, -7.0, -3.2295623970436256, -3.1596733301284265, -4.101546601696882, -7.0, -7.0, -7.0, -3.7377689332546584, -7.0, -4.111022346378763, -3.537000087321339, -3.2002118967002393, -7.0, -2.062731169926413, -3.2679088999866783, -3.16134803421355, -3.6429588794097905, -7.0, -7.0, -3.0594119374386564, -7.0, -7.0, -4.157789086282048, -3.3171172311500428, -7.0, -3.1985054080977675, -7.0, -7.0, -3.8369567370595505, -3.641441057915941, -7.0, -7.0, -7.0, -2.9390197764486667, -3.2123651936445854, -1.9216161842344557, -7.0, -2.906765889540728, -2.6273658565927325, -2.513716884831001, -2.6086985300968797, -2.59802407233419, -3.2187979981117376, -7.0, -2.532411353713923, -3.22698634552522, -2.5047262575624543, -2.8048206787211623, -2.786514813868446, -2.6059332229989143, -2.4316749748365134, -2.373396004448824, -1.8321894610685132, -1.2411575891607545, -2.3214887739865633, -2.991964044403458, -2.2135754974048063, -2.272394214426179, -7.0, -2.9157954276020663, -7.0, -2.4632140854837288, -2.381501865193101, -3.4956830676169153, -2.295716386359503, -2.605876295339839, -2.1065490989982276, -7.0, -2.3696374616388685, -7.0, -2.191368201005732, -7.0, -3.186532564592397, -7.0, -2.2882013016594915, -2.817300878393321, -2.642958879409791, -2.451210575353416, -7.0, -1.5582794773214852, -2.5180351146012647, -2.029291521820412, -7.0, -2.580696939712437, -3.2065560440990297, -2.9953060589380653, -1.5380360795803627, -2.570672638100542, -3.5025636691073636, -7.0, -2.515211304327802, -2.25598155747616, -1.4328691191563043, -2.713370522509538, -2.426278831879818, -3.0595634179012676, -2.4976843791614503, -3.543074235033532, -1.9358210087389172, -3.2275010649714306, -2.368100851709351, -3.2063246260747778, -7.0, -1.8884408608331742, -2.35817288180055, -3.0403385718205698, -3.5332635167787148, -1.9500592552910156, -7.0, -7.0, -2.8811943853625333, -3.263517716091967, -7.0, -1.8490133618429152, -2.6273658565927325, -3.4473131088235682, -3.5805828768143675, -2.406486954809536, -1.683361376444474, -1.9745692571196651, -1.834003217937453, -7.0, -7.0, -2.5304030005576528, -0.657428998176507, -2.661136319597869, -1.849183088775068, -2.7349300109996633, -2.578951614596268, -2.2025766721021527, -2.600220218753284, -2.1379459462394763, -7.0, -2.4224256763712044, -3.5018804937550585, -3.0149403497929366, -3.533772058384718, -2.808773457761177, -2.553655508356001, -7.0, -3.504742636271688, -7.0, -2.1040627074755904, -7.0, -2.7620530494584163, -3.5033820634737327, -2.552127207656179, -3.5443161417474274, -2.9084850188786495, -2.375010048025798, -2.2833012287035497, -2.048335847916511, -7.0, -7.0, -2.2475056544922394, -7.0, -7.0, -7.0, -2.1956361241961093, -2.915135906622012, -2.4806601157105974, -2.4929349096166495, -7.0, -2.414821470199764, -3.5079907248196913, -3.4871383754771865, -2.804480189105993, -7.0, -3.4878451201114355, -2.6134029793528817, -2.7101173651118162, -7.0, -2.1010795974904166, -3.281714970027296, -7.0, -7.0, -3.227629649571009, -3.4878451201114355, -2.788875115775417, -3.5241363765925686, -7.0, -3.450403086155366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.837326844932794, -7.0, -7.0, -7.0, -3.82013575187043, -3.53535742366243, -7.0, -7.0, -7.0, -7.0, -7.0, -3.720696668749796, -3.5067079263501197, -7.0, -7.0, -3.3733523197972075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4549915753995015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.384389260324799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.600210306409328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4988616889928843, -7.0, -7.0, -7.0, -7.0, -2.5283562564155875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9797759327296856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.596731455692808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8038914411897666, -7.0, -7.0, -7.0, -7.0, -2.5919298588776174, -7.0, -2.9207939364157585, -3.877342545546019, -7.0, -3.485863329597335, -7.0, -3.911279392043913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.575374101516656, -7.0, -7.0, -7.0, -7.0, -7.0, -2.959756672990995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.271400120441062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2095150145426308, -7.0, -7.0, -3.4893343477460994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.668572269184558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.813008795492136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9839268369509955, -2.983147802415998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.485366465708323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.255272505103306, -7.0, -3.6959192528313998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8698768132667665, -7.0, -3.3265662626752697, -7.0, -7.0, -7.0, -3.5222485612876895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6332360963830093, -7.0, -7.0, -2.8346855658486145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5684364144168854, -7.0, -7.0, -7.0, -4.106704129255459, -7.0, -7.0, -7.0, -7.0, -3.5705429398818973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0603200286882855, -7.0, -3.7648705879895643, -7.0, -7.0, -2.920980860300983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.602129078136506, -4.766598721064264, -4.32395300754292, -7.0, -3.4671935894118153, -3.360688062030678, -7.0, -4.138539521483194, -3.9079178445986336, -7.0, -3.4240972394005476, -4.603101049314056, -4.378670385207983, -3.9743142711950683, -3.532467726469376, -7.0, -7.0, -3.976744196285903, -3.7926717891415676, -4.63466868029747, -7.0, -4.030832389665022, -3.69640007813349, -4.10355059372542, -3.855428289576475, -7.0, -4.650433809651895, -4.1862498207790875, -7.0, -3.6838490294450406, -7.0, -3.9097806062427685, -3.8185337947129234, -3.545232871746966, -3.338904502164837, -4.296467738800115, -7.0, -7.0, -3.8292555152075627, -7.0, -2.864748335629659, -3.696651206927901, -4.0537888751837405, -3.9003671286564705, -7.0, -3.6618442235701645, -7.0, -4.272294244501396, -2.932727367301529, -2.6148972160331345, -2.2144125418657885, -3.9114772171061025, -3.577664104732127, -2.353882302989257, -7.0, -7.0, -7.0, -7.0, -2.819031838898129, -3.6762362167633116, -3.5082603055123345, -2.830536652178616, -3.9497092886669005, -3.32202393317598, -7.0, -7.0, -3.4602963267574753, -3.358315640082196, -2.2612323588004264, -3.8082013239727357, -7.0, -2.487954954870889, -7.0, -2.6700602174731345, -3.322770429937203, -3.0997009480543785, -7.0, -7.0, -7.0, -3.323638769865047, -7.0, -7.0, -7.0, -3.1767811277123865, -7.0, -3.0552253838538195, -7.0, -7.0, -3.813714391881145, -3.4074588904573924, -3.467608105583633, -3.4523998459114416, -7.0, -2.377418341527436, -3.3779130619562214, -2.858041548804122, -7.0, -7.0, -3.4840149626675627, -2.910624404889201, -2.809630585144874, -3.0814673283885368, -7.0, -7.0, -3.3296520757287933, -7.0, -2.2382902341806235, -3.541579243946581, -3.521399628115376, -2.954145988829548, -3.6061663146076204, -2.314814887210721, -2.4148062795010126, -2.2533380053261065, -3.510276844417355, -3.4424797690644486, -2.535167485114944, -2.778633531923382, -3.5010592622177517, -7.0, -7.0, -2.9258744064015607, -3.004894321731049, -7.0, -2.4603784007408818, -3.2024319432441346, -3.019720368759754, -7.0, -3.383366482755039, -7.0, -2.6851817198503856, -7.0, -3.1327398382608846, -7.0, -3.0107238653917734, -3.1659858227744544, -3.501333178645566, -3.333581606227454, -7.0, -2.645075342571035, -3.215637563435062, -2.8677620246502005, -7.0, -3.5400790888041724, -7.0, -3.5569052690554477, -2.2787353144843996, -2.6312987867110733, -7.0, -7.0, -3.1920095926536702, -3.1725542843902175, -2.34713478291002, -2.6681195600536824, -2.7076918101785252, -3.0118522700068455, -3.1451363462723716, -7.0, -3.0013875234866414, -7.0, -7.0, -3.338576007749808, -7.0, -2.106404121471442, -2.674729953761462, -3.166726055580052, -7.0, -2.8530895298518657, -7.0, -7.0, -3.8131805325860118, -7.0, -7.0, -2.848189116991399, -3.0632082200712114, -3.4186326873540653, -7.0, -2.9404611431699053, -2.488366758369108, -2.5133200642613844, -2.8372727025023003, -7.0, -7.0, -3.28315726254433, -2.175388801188173, -7.0, -2.8606374167737547, -3.1585886282533937, -3.1060775192489603, -2.6641905259500858, -3.1308762975873003, -2.740573205485716, -3.451939869365103, -3.5277587525209717, -7.0, -3.4394905903896835, -7.0, -3.5459253293558426, -3.430961453354948, -7.0, -7.0, -7.0, -2.7894240120068883, -7.0, -3.1929853790931624, -3.451632947456991, -7.0, -7.0, -7.0, -3.4753805931433615, -3.2277153514917414, -2.665393350279712, -7.0, -7.0, -3.2295538639811365, -7.0, -7.0, -7.0, -3.1724569744005873, -7.0, -7.0, -3.0758509827433453, -2.414821470199764, -7.0, -7.0, -7.0, -3.3760291817281805, -7.0, -7.0, -3.2907830986721986, -7.0, -7.0, -3.1243955289303478, -2.4066212736060524, -2.8403570592033565, -7.0, -7.0, -7.0, -7.0, -2.460038278929382, -3.4353665066126613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.65900293700084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9175055095525466, -7.0, -3.901785145303599, -3.589502796263764, -7.0, -2.9740509027928774, -4.576813403214398, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.558912473106539, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.336679827345716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5521813388393357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.519013748840418, -7.0, -7.0, -7.0, -7.0, -7.0, -2.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.061037590063418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7972675408307164, -7.0, -7.0, -7.0, -4.736707170670822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7649229846498886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.728418718397232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.555638487947554, -7.0, -7.0, -4.369753752372034, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.004751155591001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3843086022423106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6148972160331345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.129818743848935, -7.0, -7.0, -3.754654069255432, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.620919923897559, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.830995829309531, -7.0, -7.0, -4.544849071703771, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.316871567348347, -4.446257488316375, -7.0, -7.0, -7.0, -3.3121773564397787, -7.0, -7.0, -4.256035870409809, -7.0, -4.031206419827462, -7.0, -7.0, -4.5014084753854915, -3.5480382602549603, -7.0, -7.0, -4.049760551762476, -3.994361151908001, -7.0, -7.0, -7.0, -7.0, -4.784845433412646, -7.0, -7.0, -4.323994202181974, -7.0, -7.0, -4.22698634552522, -4.221674997070769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.053462604925455, -7.0, -3.8259883673374397, -7.0, -7.0, -7.0, -7.0, -7.0, -3.303915683901469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5705429398818973, -7.0, -7.0, -7.0, -7.0, -4.353704703572165, -4.502650128017808, -4.871377342245107, -7.0, -7.0, -7.0, -4.134081437462512, -7.0, -7.0, -7.0, -4.0565237240791, -7.0, -7.0, -7.0, -3.9749259860897626, -7.0, -7.0, -7.0, -4.156246190397344, -7.0, -7.0, -7.0, -4.085991829752375, -7.0, -3.678690322780319, -7.0, -7.0, -2.819872821950546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6448412733000293, -7.0, -2.356790460351716, -2.226170123398999, -2.1623029745700477, -2.732393759822968, -2.1850967453424945, -7.0, -7.0, -2.874916474431565, -2.6794278966121188, -3.7247365509259858, -2.973589623427257, -1.672674993544776, -7.0, -3.14090067888619, -7.0, -2.280545852343135, -7.0, -7.0, -2.7774268223893115, -7.0, -7.0, -2.8000293592441343, -2.606381365110605, -7.0, -2.5721613902974734, -7.0, -7.0, -3.9916247345340055, -3.2786840287587213, -3.786972140295542, -7.0, -3.3613500243522663, -2.725094521081469, -3.130333768495006, -7.0, -7.0, -7.0, -2.5668581979161447, -7.0, -2.801403710017355, -7.0, -7.0, -3.397853141088609, -7.0, -2.5770319856260313, -7.0, -2.666049738480516, -2.509202522331103, -3.0277572046905536, -3.729407796963068, -2.6702458530741238, -7.0, -7.0, -7.0, -3.1065308538223815, -7.0, -7.0, -3.062863902110119, -2.738780558484369, -3.3099115233405927, -7.0, -3.3953263930693507, -2.2023066418924566, -2.800717078282385, -3.922829219666649, -7.0, -2.9298444960392853, -2.8937617620579434, -2.6009728956867484, -7.0, -2.6392373957820308, -7.0, -7.0, -3.2969940766702086, -7.0, -2.8407332346118066, -3.7189996378787185, -2.9708116108725178, -7.0, -2.9590413923210934, -2.342258144172425, -3.3602146132953523, -7.0, -7.0, -7.0, -7.0, -3.570215928477933, -3.0907869279492677, -2.205475036740891, -2.480486032340433, -2.8966321920836497, -2.810568529216413, -3.1108301168826937, -2.711602055927109, -3.4579575512036382, -7.0, -7.0, -7.0, -7.0, -2.414137362184477, -2.9894498176666917, -3.4560622244549513, -7.0, -2.4771212547196626, -7.0, -2.717454750443031, -7.0, -7.0, -7.0, -2.515873843711679, -7.0, -2.5428254269591797, -2.3492775274679554, -2.800545250591952, -3.3236645356081, -7.0, -7.0, -2.9324737646771535, -7.0, -7.0, -2.2528530309798933, -7.0, -1.682370742516557, -2.1722136039924793, -2.1816530661246945, -3.5079907248196913, -7.0, -7.0, -1.6206564798196208, -2.388377533114023, -2.367355921026019, -2.250420002308894, -2.7201133438861613, -7.0, -7.0, -1.505149978319906, -3.4559102403827433, -7.0, -7.0, -7.0, -2.683947130751512, -7.0, -3.5512059437479064, -7.0, -7.0, -2.220108088040055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5722906061514177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.650414383346564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.770336441095149, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3443922736851106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0507276712150535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6954816764901977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626422495681244, -2.8976270912904414, -1.8878984880968723, -7.0, -7.0, -7.0, -3.4058583993176366, -7.0, -7.0, -3.4551495211798278, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8198070645907563, -7.0, -7.0, -7.0, -7.0, -4.740149438037123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6875289612146345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.241795431295199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.598790506763115, -4.235495981820906, -7.0, -3.368100851709351, -7.0, -7.0, -7.0, -7.0, -7.0, -2.800717078282385, -7.0, -7.0, -3.203576774977973, -7.0, -7.0, -7.0, -7.0, -2.733999286538387, -3.7062909572587635, -7.0, -7.0, -7.0, -3.4125445421080887, -3.646893624167745, -7.0, -3.1598678470925665, -7.0, -7.0, -7.0, -3.3647385550553985, -2.2355284469075487, -7.0, -4.309459822461211, -7.0, -3.949194774237982, -3.8007857903277626, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2648178230095364, -2.916453948549925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3769417571467586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4471580313422192, -7.0, -7.0, -7.0, -3.172310968521954, -3.4871383754771865, -7.0, -1.6206564798196208, -7.0, -7.0, -1.9138138523837167, -7.0, -3.7973368007753496, -7.0, -7.0, -2.8152455919165633, -3.4323277922616042, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5323721335678773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4459245638311797, -7.0, -7.0, -7.0, -7.0, -3.793580867368156, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5169758348685476, -7.0, -7.0, -2.6728672017718136, -3.5266370221906365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.581038948772167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3521825181113627, -7.0, -7.0, -7.0, -4.071918810363806, -7.0, -7.0, -3.366236123718293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.743901550485179, -3.1436392352745433, -7.0, -7.0, -3.4940153747571436, -7.0, -7.0, -7.0, -2.7363965022766426, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100198171834132, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40226138245468, -7.0, -7.0, -4.2659022043017565, -3.321598430465344, -3.351603072419129, -7.0, -7.0, -7.0, -7.0, -3.0242803760470798, -7.0, -3.0939467238905833, -7.0, -7.0, -7.0, -3.3854275148051305, -7.0, -3.463756162184995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.367525335688555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0842186867392387, -7.0, -3.649918718735419, -7.0, -3.3533390953113047, -7.0, -3.382557321908786, -7.0, -7.0, -3.113358331267094, -3.460206027457451, -7.0, -7.0, -7.0, -3.7099788120776522, -7.0, -7.0, -2.6328909362366324, -7.0, -7.0, -7.0, -3.0555694400609896, -7.0, -7.0, -4.044343734895107, -7.0, -7.0, -7.0, -7.0, -7.0, -3.823474229170301, -7.0, -7.0, -7.0, -7.0, -3.3058885302843097, -7.0, -7.0, -3.3935752032695876, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8384082784941866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.44216608578472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5709450534801004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.50944691990756, -7.0, -3.355930187078868, -7.0, -7.0, -2.316492290815025, -2.8532925186295284, -3.09377178149873, -3.388278863459639, -3.4019172505175748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.291701770729981, -7.0, -7.0, -7.0, -7.0, -3.313445370426414, -7.0, -7.0, -7.0, -7.0, -2.3242824552976926, -7.0, -2.807196660710947, -3.7401470072175327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8324337687520904, -7.0, -7.0, -7.0, -3.3244882333076564, -7.0, -3.0346284566253203, -7.0, -7.0, -7.0, -7.0, -3.3341520529922866, -2.355387657986574, -7.0, -7.0, -7.0, -7.0, -2.3114006325028105, -2.429235339626655, -7.0, -3.2670151976815847, -7.0, -7.0, -7.0, -3.7790912038454993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9361785093615893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8798601462734688, -7.0, -7.0, -3.345765693114488, -3.4804484087285745, -7.0, -7.0, -3.8794972872494284, -7.0, -7.0, -7.0, -3.032014034159506, -1.9119981789673555, -2.2080828797513523, -7.0, -7.0, -3.4528593357958526, -3.350829273582968, -3.612999071304003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6392872259102367, -3.8919116195854024, -7.0, -2.6346211954253143, -3.4534594745817477, -7.0, -7.0, -7.0, -7.0, -2.843076977385342, -3.6612446089593336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8932486652855034, -7.0, -7.0, -2.8803020025606587, -4.284618699431484, -7.0, -3.392169149489736, -4.156730826499419, -2.7496259063954898, -2.721747219185589, -4.128221507666712, -3.2424948410083423, -7.0, -3.1010593549081156, -3.81778565588553, -3.4974641190598588, -3.6689181403863924, -2.905812228431408, -4.017930232863559, -3.575187844927661, -3.035578650851512, -3.3712895730645562, -3.9290611240847655, -7.0, -4.408907857830475, -3.6672193984439363, -3.2294327686725683, -2.6432297408766043, -7.0, -3.6439360535105743, -3.523601966899433, -3.226857570288723, -3.0661519241936213, -3.0635913440707676, -3.7566469736211103, -3.804093977891654, -3.750893920382125, -3.4305587695227575, -4.282055370683707, -3.816804522879766, -3.906909410520852, -3.07778069353109, -7.0, -7.0, -4.291735048725623, -2.749716500604673, -2.0638537112918005, -7.0, -3.640978057358332, -7.0, -4.088620337639316, -7.0, -7.0, -7.0, -3.7177814197394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2810081021450763, -7.0, -7.0, -3.086964573877051, -3.7840642670723494, -4.478912638929306, -7.0, -7.0, -7.0, -3.1251354817237127, -7.0, -4.173127969938208, -3.7697464671794534, -3.0812490844673115, -7.0, -7.0, -7.0, -3.715313771574569, -7.0, -7.0, -7.0, -3.4317121323179034, -7.0, -7.0, -3.6245399138793952, -3.0528523073252756, -7.0, -4.350771183053166, -7.0, -7.0, -3.1658376246901283, -3.606918525948291, -7.0, -7.0, -7.0, -7.0, -3.2328055885720755, -2.0907774555677956, -7.0, -2.6357708836729112, -2.533299860933881, -2.116649245682762, -2.7861160241069776, -2.4294586393678927, -3.061829307294699, -3.031206419827462, -2.59477915450515, -3.3749315539781883, -2.8899402626241506, -2.217019209571482, -3.4274861090957858, -7.0, -1.792995127808348, -2.846708145456007, -1.5371191843949479, -7.0, -2.5081929260254405, -1.755966643579819, -7.0, -2.8695250628572273, -7.0, -3.059752694209299, -7.0, -2.6339731557896737, -7.0, -7.0, -2.8318697742805017, -1.7631524010078345, -2.441131622069119, -3.022222104507706, -2.775974331129369, -7.0, -2.8109042806687006, -3.3552599055273786, -7.0, -3.338257230246256, -2.6086232673136136, -7.0, -2.9246238275174004, -3.065729059462349, -7.0, -2.455352509957491, -1.6472456655033265, -2.0947039943211667, -7.0, -3.1492191126553797, -3.044147620878723, -2.7709992051639407, -3.0251009610468134, -7.0, -3.036429265626675, -3.3459615418131414, -2.745543201998024, -2.2607601977756273, -3.4342494523964753, -3.4192947217534604, -2.489489731962272, -7.0, -2.5592259935316983, -2.350952470202979, -2.5599066250361124, -2.2573092768181025, -2.496756725720979, -3.165752917359666, -7.0, -2.697851808799922, -3.126131407261984, -3.3602146132953523, -2.7788744720027396, -2.077246746270425, -3.0151501032294714, -7.0, -2.509948861201675, -7.0, -7.0, -3.2506029530166067, -7.0, -3.361538971269279, -2.8446324750435648, -2.5133992245838237, -2.41033850091073, -2.955567497098864, -3.5427009694481106, -7.0, -7.0, -1.8905536646547345, -2.8603380065709936, -2.742332282357148, -1.8170241925652633, -2.6246517495776027, -1.6263974025687553, -2.7823929882474965, -2.1736892394459417, -2.9277124619002755, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4577305482459986, -2.5606422499960773, -7.0, -2.737788791709675, -7.0, -2.1739555149123078, -7.0, -3.3935752032695876, -2.6384892569546374, -3.045127306568027, -3.397592434038117, -7.0, -2.891723252106159, -2.5297066859104924, -3.6020599913279625, -7.0, -7.0, -2.4823971222533356, -7.0, -7.0, -7.0, -3.3675422735205767, -1.689999076404404, -2.8919089670894906, -1.7144128995225087, -2.804480189105993, -3.3760291817281805, -2.388377533114023, -7.0, -7.0, -2.5473644129795048, -7.0, -2.161135922786136, -3.3188977146274867, -7.0, -1.9853207870393694, -2.8304970163724894, -2.7506626461340558, -3.315130317183602, -7.0, -2.1662080251235856, -2.8382192219076257, -2.655538595608055, -3.016406500871118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.877331024881724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.697578033651113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9156767877161505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.806179973983887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368909516103976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.307923703611882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.286231854028553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.378307034856813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495658793053397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.131886407422347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.395972547794993, -4.130349853177955, -7.0, -4.027512692448811, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.650996794844283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.386908988489542, -7.0, -7.0, -4.570204244943991, -7.0, -7.0, -7.0, -7.0, -7.0, -4.064545338527522, -3.774735882551753, -7.0, -4.0655797147284485, -4.136213065513025, -7.0, -7.0, -3.417388646165674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3519508325993845, -4.502235879055773, -7.0, -7.0, -7.0, -2.4082399653118496, -7.0, -3.659250468772661, -7.0, -3.5911759503117913, -7.0, -7.0, -7.0, -7.0, -4.273903666420971, -7.0, -3.334252642334231, -7.0, -7.0, -7.0, -7.0, -4.302731264944306, -3.9599472157084987, -7.0, -7.0, -7.0, -7.0, -7.0, -4.006679927740826, -7.0, -7.0, -7.0, -7.0, -4.068334313117254, -3.1394292733295357, -7.0, -2.2405492482826, -2.3180633349627615, -3.053462604925455, -3.683992086445554, -2.695043658821294, -2.510545010206612, -7.0, -3.2949803145573493, -2.5877109650189114, -4.024916464556482, -2.6273658565927325, -2.5378190950732744, -3.2734642726213465, -7.0, -7.0, -2.8129133566428557, -7.0, -7.0, -3.4641913706409997, -7.0, -7.0, -7.0, -2.4955443375464483, -7.0, -3.1242433089466486, -7.0, -7.0, -3.8653112963195166, -3.7947269872815297, -4.041590046889366, -7.0, -2.6432552250247716, -2.6434526764861874, -7.0, -7.0, -7.0, -7.0, -2.69810054562339, -7.0, -2.733999286538387, -7.0, -7.0, -3.2136062891507047, -2.515873843711679, -2.7783924580998707, -7.0, -2.9232440186302764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5563025007672873, -3.498655095245119, -2.8656960599160706, -7.0, -3.179360261070836, -2.356981400993131, -3.70047656153093, -7.0, -3.077731179652392, -7.0, -7.0, -7.0, -7.0, -3.399846712712922, -2.840106094456758, -7.0, -2.3263358609287517, -3.2195845262142546, -7.0, -7.0, -2.6834973176798114, -2.532117116248804, -2.7795964912578244, -3.0117395613883184, -7.0, -7.0, -7.0, -3.718750734739665, -3.6527296960692475, -3.212986184736668, -2.875928984922927, -7.0, -7.0, -3.568084331315394, -3.074450718954591, -2.060697840353612, -2.9372670722114127, -3.8335295817586434, -2.7788744720027396, -3.252755971088573, -2.4187844927322755, -3.4510184521554574, -7.0, -7.0, -2.2741578492636796, -7.0, -2.330413773349191, -2.946943270697825, -7.0, -7.0, -7.0, -7.0, -3.1928770665826405, -7.0, -7.0, -7.0, -2.374748346010104, -7.0, -2.41161970596323, -2.553883026643874, -3.0863598306747484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.184691430817599, -7.0, -1.7844389742226907, -7.0, -7.0, -2.367355921026019, -1.9138138523837167, -2.5473644129795048, -7.0, -7.0, -2.415321200998548, -7.0, -7.0, -2.3550682063488506, -7.0, -2.622214022966295, -7.0, -7.0, -1.5291502547236724, -7.0, -3.5399538416563967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5728716022004803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.517090281587123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055493006677845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.622214022966295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727232098507561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.36839846657925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.14903426716125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2979792441593623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.743352951409556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.694166295933198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.616391482643317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.732015598179676, -7.0, -7.0, -4.5729993170909475, -7.0, -7.0, -4.3907761898062825, -7.0, -7.0, -4.650462947480702, -7.0, -4.606746706755346, -7.0, -7.0, -7.0, -4.783803565738718, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7028869950468515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721398375521505, -7.0, -7.0, -7.0, -7.0, -3.7707047682157793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.049818639702361, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.932565078682726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.681467373533731, -7.0, -2.9995654882259823, -7.0, -7.0, -3.505330896665327, -7.0, -7.0, -7.0, -3.4671639659690903, -7.0, -7.0, -2.9003671286564705, -2.8041394323353503, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7427251313046983, -7.0, -7.0, -7.0, -2.6857417386022635, -7.0, -7.0, -3.82013575187043, -7.0, -7.0, -7.0, -7.0, -4.740188936948656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3888114134735234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.941511432634403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2528530309798933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.381656482585787, -7.0, -3.3690302218091532, -7.0, -7.0, -7.0, -7.0, -3.6962689967455327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4055171069763763, -7.0, -7.0, -2.8830933585756897, -3.111598524880394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2247919564926817, -4.309566295893774, -7.0, -7.0, -3.9770373352246815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.543664583552706, -7.0, -7.0, -7.0, -2.2600713879850747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4653828514484184, -7.0, -1.872156272748293, -3.6503075231319366, -3.4878451201114355, -7.0, -2.250420002308894, -7.0, -7.0, -7.0, -7.0, -4.2746657690813885, -7.0, -7.0, -1.8774391038045248, -3.4331295175804857, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5330090224954853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274342616116883, -7.0, -7.0, -7.0, -7.0, -7.0, -2.705795856951702, -7.0, -7.0, -7.0, -4.356293621448165, -3.7589497212801803, -7.0, -7.0, -7.0, -3.9883136494546534, -7.0, -3.0820996162644265, -3.27315566043433, -7.0, -4.291945750170066, -2.768129153306671, -7.0, -7.0, -7.0, -7.0, -4.277334112215984, -4.279027805622721, -2.998045230323877, -7.0, -7.0, -4.277265309456845, -7.0, -3.679836558918098, -7.0, -7.0, -7.0, -4.30629632863675, -7.0, -3.24369573586642, -7.0, -7.0, -3.9793890131122187, -7.0, -4.276392863069535, -7.0, -7.0, -7.0, -7.0, -4.001863462692524, -3.1192008839606693, -7.0, -7.0, -3.3948017771627113, -7.0, -7.0, -7.0, -7.0, -7.0, -3.994998640442741, -7.0, -7.0, -7.0, -2.864333055033393, -7.0, -7.0, -7.0, -7.0, -3.7132174481438476, -4.285016917629171, -7.0, -7.0, -3.8474369209063135, -7.0, -4.278707883337975, -7.0, -7.0, -7.0, -7.0, -4.275725867573664, -7.0, -3.983039616046102, -4.27932466544261, -3.6866362692622934, -7.0, -3.805636766305935, -4.286456469746983, -3.0998826777007147, -4.282871245335206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9852692552788476, -7.0, -7.0, -4.278250442299367, -4.275748884479195, -3.8095597146352675, -4.275771900164932, -7.0, -7.0, -7.0, -2.934281971477399, -7.0, -7.0, -7.0, -3.805274250022863, -7.0, -7.0, -3.5630853728550487, -3.7948782483762575, -7.0, -4.282531483812228, -3.802682525274441, -2.8419848045901137, -7.0, -3.8152234391209294, -3.818775563959327, -3.806202592899124, -7.0, -4.2775175329691715, -7.0, -7.0, -7.0, -3.3649260337899753, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3276561037821124, -2.6531714437973566, -4.027512692448811, -4.287241711178348, -7.0, -3.9180827846421873, -7.0, -7.0, -7.0, -4.024916464556482, -3.9918460536448968, -7.0, -7.0, -7.0, -2.892708063453812, -7.0, -4.274781122605907, -7.0, -7.0, -7.0, -7.0, -3.4450924439560473, -4.283617786365643, -4.281828466560518, -7.0, -3.5063246026216772, -4.277907045047425, -7.0, -2.736094552405685, -7.0, -7.0, -7.0, -4.276369880269439, -4.275449569516267, -7.0, -7.0, -3.5296869537729165, -7.0, -2.934111116821407, -7.0, -7.0, -2.6100343496463325, -7.0, -4.284092190642834, -3.805998980240112, -4.2849718546478694, -3.5092697453761876, -7.0, -4.281169773409736, -4.278662160909981, -4.281442457270873, -7.0, -7.0, -3.699338997845602, -7.0, -7.0, -7.0, -3.730685396203913, -7.0, -3.061389642585325, -7.0, -3.6867032848448513, -4.276323911020188, -7.0, -7.0, -7.0, -4.28023680960969, -4.274942566083686, -7.0, -7.0, -3.31492005599242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6834748147920684, -3.8117983509420643, -3.7382056096443677, -2.977168136967076, -4.274688842237558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.579623563905115, -2.76973109256287, -7.0, -7.0, -7.0, -7.0, -4.276599653557644, -3.674700431229815, -7.0, -4.279210512601395, -4.294620516587421, -7.0, -7.0, -4.304899640332865, -7.0, -7.0, -7.0, -3.5348718599395945, -3.9829267037708376, -3.1947547791802955, -3.582222499269305, -2.942756266786523, -7.0, -7.0, -7.0, -3.180622801527713, -7.0, -4.292388998301932, -3.7004873811595234, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985493836151524, -4.282078054577154, -7.0, -7.0, -4.27916484306227, -7.0, -7.0, -7.0, -7.0, -3.4252284439018794, -3.5107013638161044, -3.9809573162296203, -7.0, -3.0384140840327856, -7.0, -7.0, -3.155085857531935, -7.0, -7.0, -7.0, -4.276599653557644, -3.69727294443456, -4.283323847618786, -3.819609732751585, -3.979343470486138, -3.6897970549034977, -4.278616433667833, -2.869316416441605, -3.5943262408124452, -7.0, -7.0, -7.0, -4.297213195989642, -3.985067033150501, -7.0, -7.0, -3.9802988641377226, -7.0, -7.0, -7.0, -7.0, -4.27731117917403, -4.275288314435602, -7.0, -7.0, -3.8386759678553695, -4.023396514477751, -2.734447892803061, -7.0, -3.5971025620238164, -3.0132019567134645, -3.992686039162128, -7.0, -3.806179973983887, -7.0, -3.3876122562959106, -3.2146604767734983, -3.8164622587764545, -4.2751961417856235, -7.0, -7.0, -3.808323528187753, -7.0, -7.0, -3.975178970940877, -3.693639026161548, -3.975431808509263, -3.4768730155120444, -7.0, -7.0, -2.4335080004270413, -2.6802009545811027, -3.4909762616172006, -4.2837081890474655, -2.127327923920255, -3.6167485032003, -3.4188350827355722, -2.867697143868812, -1.9741594396760127, -7.0, -2.5573289383908295, -2.9564085711958326, -1.7804520698080468, -2.0144795598484855, -2.4060360075402034, -3.1766468005217803, -3.202417674636456, -2.583081929290774, -2.2379228771710533, -2.666842135908416, -3.248969935913661, -2.9534505265771154, -2.801654645762421, -2.388050584882719, -2.0443945648168875, -3.9151887051731564, -1.3559007787531197, -2.0905560367890903, -2.219388027689568, -2.43930110762843, -2.648273526438782, -2.2158522301944057, -3.408203611015591, -2.9028055343752106, -2.902739608205772, -3.3505629614916206, -3.571941635074462, -3.067644645080264, -2.877553198541244, -3.7443712273318606, -3.0400966434067005, -2.9611953874821224, -2.8627612481426667, -3.1253185781235264, -3.9849096841478056, -3.2988821738926766, -7.0, -3.473178677841271, -2.767791729273228, -2.555720466529754, -2.6169859707394836, -2.918715693733087, -3.0947836302399567, -7.0, -3.6012630540285273, -7.0, -7.0, -4.33683982531461, -2.7163629652763714, -3.7169210731667612, -2.3850403290293087, -2.621864856342066, -3.05219091130959, -3.0831103583450727, -3.43230486406257, -3.135747334120506, -3.0224971049803444, -2.284312753102662, -3.8901228164155626, -3.7705042733011505, -2.9066043717249803, -2.179680733238253, -7.0, -3.21793492502484, -3.5038663111778603, -2.7033843399602757, -7.0, -3.3624259223086304, -7.0, -2.8008227846190157, -4.328277644409767, -3.580674129529291, -2.696460051338408, -2.183768127867326, -4.293384655649437, -3.02539768750682, -4.297432204810169, -3.4670369854657044, -2.938500480932248, -3.2049636242070005, -3.9785913268200748, -4.277357044047016, -7.0, -3.505579536394238, -2.689294534245845, -2.1949404664294887, -3.2780673308886628, -2.8180278418592564, -3.0261926680962223, -2.7767219333485307, -1.1517477758067503, -3.03906142848015, -3.5809477726878765, -3.4981266865210188, -2.1352220142203384, -3.3781252456193727, -1.7353587434987676, -2.456433021146642, -2.824754043226546, -3.0122887398346068, -2.649208612936733, -2.3537196154121895, -2.4339748638984138, -2.9719602465585666, -3.5081480005591854, -2.789963270670173, -3.5920434496293616, -2.499797903125245, -3.4396258846219, -3.501470072100412, -3.5765716840652906, -2.2354765609057865, -3.6798138655421604, -4.275955981753744, -2.536404010604367, -1.932557840382941, -2.0534080878779726, -3.576341350205793, -2.5331926071304895, -3.583584138515784, -2.5743589135236467, -3.6769449705169395, -4.2746657690813885, -4.277150613963797, -2.820693949973386, -3.6774244377012475, -3.28463373316459, -2.4642223595797477, -3.576617736181542, -2.631388417846043, -2.6228669789943773, -2.7428736842330848, -3.9735665465930157, -2.8755732063094888, -3.198313363563387, -3.1802141284628545, -2.1842418562440282, -3.4359353272334707, -3.6749070468191296, -3.8008315923191467, -3.025988181951707, -2.1675283109397934, -3.3859412481478177, -3.245445364900788, -2.4141655677036877, -3.6809244488059925, -1.8959507388515917, -3.0793847738879054, -2.9259511995848437, -3.5824724529348537, -3.381611391532234, -2.7674140097746927, -3.4990911223977146, -2.0587125118983254, -2.7305355492917256, -3.501355997218113, -3.282009999342054, -2.789602075987727, -3.9736357734174077, -3.674286904925071, -2.6804126698850133, -3.3336039908101927, -3.5080131962698764, -2.365744844462691, -3.2121209897122247, -2.851115599375254, -3.290835646600807, -2.1561635279953113, -2.5930230972988877, -2.663658101893888, -2.9072393288920026, -4.275057846120968, -4.275103949569196, -2.181512876873766, -2.8609572478573275, -3.3233896221747057, -2.765562123075623, -1.3103144813116823, -2.9370161074648142, -2.009064118906962, -2.3749459199625567, -3.431914899362271, -3.247660872434416, -3.577836341292744, -7.0, -3.168021270953063, -3.0131477995126383, -3.2528530309798933, -3.974626813873033, -3.6752741208880217, -3.9734742269919017, -1.8624390834955207, -7.0, -3.1371731930253115, -3.8000293592441343, -3.432740292987791, -3.682212788529763, -3.579440597139797, -3.2390263236179746, -2.9825795713428316, -2.724380911198085, -3.332101666969759, -3.578318240585008, -3.1133193018303085, -3.7974522094768086, -4.274619619091238, -4.274688842237558, -3.001050179041275, -2.6245112749871096, -2.979001748474721, -0.5080647173271233, -2.6134029793528817, -3.2907830986721986, -2.7201133438861613, -3.7973368007753496, -2.161135922786136, -2.415321200998548, -4.2746657690813885, -7.0, -3.5758111182698875, -7.0, -2.0680760277803496, -2.707549900438748, -1.4307208410483763, -3.274134747878962, -7.0, -1.824837262814491, -3.575511135352897, -1.465817739756417, -3.7976367996323463, -3.5816538871768926, -3.973312620452902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2844307338445193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.547528576459782, -7.0, -7.0, -4.368519314386888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.432852288040553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8847953639489807, -7.0, -2.9479236198317262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6972293427597176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7716609593488872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.60982909957511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8195439355418688, -7.0, -7.0, -7.0, -4.631748074396569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9831750720378127, -2.3242824552976926, -7.0, -7.0, -7.0, -7.0, -2.978180516937414, -2.4502491083193614, -7.0, -7.0, -7.0, -3.7813860417059795, -7.0, -7.0, -7.0, -7.0, -2.873029812061044, -2.039672704763951, -7.0, -7.0, -7.0, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.466837974667767, -4.639526330971463, -3.962061384187691, -7.0, -3.3354579006893843, -7.0, -2.48108415181509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.278410601475816, -1.968482948553935, -2.9876662649262746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.32888903983956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.298125005020574, -7.0, -7.0, -4.080637308078068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8129133566428557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.109240968588203, -7.0, -7.0, -3.1711411510283822, -2.3532840899940375, -2.384114363914378, -7.0, -7.0, -7.0, -2.667639706056411, -7.0, -7.0, -7.0, -7.0, -3.4727564493172123, -3.5792575532587234, -3.447778009294621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8452221064290137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3802112417116064, -2.5149902330672873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.424881636631067, -7.0, -3.1740598077250253, -2.7101173651118162, -7.0, -7.0, -7.0, -3.3188977146274867, -7.0, -7.0, -3.5758111182698875, -7.0, -7.0, -3.1228709228644354, -2.7349597612724454, -7.0, -7.0, -7.0, -2.5440680443502757, -1.6532125137753437, -2.7552394576339077, -0.5440680443502757, -2.0128372247051725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.970644363685447, -7.0, -7.0, -7.0, -3.716504163773217, -3.7371926427047373, -7.0, -7.0, -7.0, -7.0, -7.0, -3.260262244714977, -3.2234094022589295, -7.0, -7.0, -3.5618960672777495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1740598077250253, -7.0, -7.0, -7.0, -4.3588291816933245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3157604906657347, -7.0, -7.0, -3.373279893277496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.59402403573142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.247703281934172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9360107957152097, -7.0, -3.287353772714747, -7.0, -7.0, -7.0, -3.4194473557107146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9647309210536292, -7.0, -7.0, -7.0, -7.0, -3.198347748146906, -7.0, -7.0, -7.0, -7.0, -3.3283796034387376, -7.0, -3.6475785542124552, -4.136022599397011, -7.0, -7.0, -7.0, -4.143553428678768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0135955235372895, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7710727832211948, -3.571941635074462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8488047010518036, -7.0, -7.0, -7.0, -3.4157410362223435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.001949941084268, -7.0, -3.2113875529368587, -7.0, -2.9425041061680806, -7.0, -7.0, -3.6959908142764144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1486026548060932, -7.0, -3.221101119961505, -7.0, -7.0, -3.1123513354275403, -7.0, -7.0, -3.227372442289636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.910224071953891, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1983821300082944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.584545139959466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.999855211039865, -7.0, -3.9106110664017573, -7.0, -7.0, -7.0, -2.87456464300379, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5801263254115825, -7.0, -7.0, -7.0, -3.7157736079156267, -7.0, -7.0, -3.3564083270389813, -7.0, -7.0, -3.217220655644519, -3.1455071714096627, -2.9059756752294317, -7.0, -7.0, -7.0, -3.3180633349627615, -7.0, -4.10191196459515, -3.331832044436249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.702645906884803, -7.0, -3.943424303172156, -7.0, -2.509202522331103, -3.9565645914886343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.241795431295199, -7.0, -7.0, -3.629470763032389, -4.153936754460935, -7.0, -7.0, -4.44617976779828, -3.2022157758011316, -3.7865384804978026, -3.939685617103282, -3.223196915940392, -7.0, -3.472573626968942, -4.28657995889235, -4.666789329818256, -4.208058223605032, -3.0899555492168083, -7.0, -4.407815642384198, -3.5163653623524644, -4.04166896647561, -4.319251841140254, -7.0, -5.105333024616749, -7.0, -4.315718507536319, -3.634544441219856, -3.886490725172482, -4.636588183729843, -7.0, -7.0, -3.935549248954129, -3.6481159567559627, -4.292521884574141, -4.263754388840006, -3.4298060925892933, -3.16577833129364, -4.264534495078272, -4.092088739255806, -4.370309495258699, -3.806078174284573, -7.0, -2.877563299235066, -4.283255987338656, -3.8498696508006978, -2.860737174321432, -7.0, -4.092439911331141, -7.0, -3.778488903688076, -2.1600824724895236, -2.2280472867866634, -2.2469838680804592, -4.173506770208104, -7.0, -7.0, -7.0, -7.0, -2.700126581535961, -7.0, -3.0692980121155293, -3.2227164711475833, -7.0, -2.976203202107988, -3.754334842507978, -3.9451759445910755, -7.0, -7.0, -7.0, -3.622970011310206, -3.06310808299862, -3.993313738751798, -2.9309490311675233, -3.0557257391864248, -7.0, -2.4474681309497557, -3.572832893302384, -2.958042364718105, -3.420615770625765, -2.8980195852004846, -7.0, -2.826412862771272, -7.0, -7.0, -4.1396902216529226, -3.214210135751011, -7.0, -2.501842838364596, -7.0, -7.0, -2.92933376158383, -3.7551122663950713, -7.0, -3.1556396337597765, -7.0, -3.2357808703275603, -3.810534939790517, -2.370625709491545, -3.1702617153949575, -2.4523615331345736, -2.737987326333431, -2.1389970140326358, -1.7622744882848056, -2.3428173146357327, -2.4893959217271293, -7.0, -1.6940683505690908, -2.4270531135645013, -2.3929179375969776, -2.537189226243645, -2.072111975265909, -2.889021422095225, -2.9785717732538797, -2.0019259210360385, -1.9202393082601417, -3.3461573022320086, -2.562768543016519, -2.6609708253620337, -3.3104808914626753, -2.2992496924024803, -2.5462958351214424, -2.885926339801431, -7.0, -1.6808402002950058, -2.911956189072687, -7.0, -3.0866302905453735, -2.736600530962847, -2.829853802037627, -7.0, -2.5335178620169674, -7.0, -3.0941215958405612, -3.17868923977559, -7.0, -7.0, -2.1508744707026994, -3.184691430817599, -2.28953940665447, -2.285557309007774, -3.1341771075767664, -2.7866804531966487, -2.317366791939507, -2.011234928974885, -7.0, -2.614264287358705, -3.1640552918934515, -3.041392685158225, -3.0310042813635367, -2.7269987279362624, -3.1522883443830563, -3.1646502159342966, -3.38246732201583, -2.4113874629192447, -2.991004440330755, -3.271609301378832, -2.456897187449348, -2.924795995797912, -2.491404797847201, -2.9367649976099415, -2.2994588715726607, -2.907411360774586, -2.9459607035775686, -3.6769678142947586, -7.0, -1.9879073308783721, -2.435252653031749, -2.4051185932991612, -3.2182728535714475, -2.1533574714829737, -3.1192558892779365, -7.0, -2.664556509752071, -2.374748346010104, -3.262213705476417, -2.0485250362746963, -2.8382192219076257, -3.1070968573977424, -2.3532535284738882, -1.6682597681200826, -2.551144908756322, -2.306271810233204, -1.9967710298698016, -7.0, -7.0, -2.95177891987254, -2.953880446490549, -2.4626974081017172, -2.103059683628344, -2.2862865009774356, -2.6058435390580894, -2.163187311522274, -2.05594595104709, -2.5127733089991104, -3.1547282074401557, -7.0, -7.0, -7.0, -7.0, -2.3671487688723643, -2.998695158311656, -7.0, -2.8555191556678, -7.0, -1.6603020945120228, -3.142389466118836, -2.9334872878487053, -7.0, -2.6872316010647745, -2.0291300268851757, -2.693433803801546, -2.498861688992884, -2.3568620729303107, -2.8109042806687006, -3.265525335219074, -3.1571544399062814, -2.0126152494987535, -7.0, -3.1179338350396413, -3.1189257528257768, -1.470116353151004, -1.9465100592086342, -1.2338215040176737, -1.58892697605668, -2.1010795974904166, -3.1243955289303478, -1.505149978319906, -2.8152455919165633, -1.9853207870393694, -2.3550682063488506, -1.8774391038045248, -2.0680760277803496, -3.1228709228644354, -7.0, -7.0, -2.4221519325979415, -1.9071963102716016, -7.0, -7.0, -2.2043913319193, -2.640150040936102, -2.3252170252342044, -2.5171958979499744, -3.1992064791616577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9042375403597336, -7.0, -7.0, -7.0, -7.0, -3.8361341494653747, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3222606541436837, -7.0, -7.0, -3.540954808926133, -3.687902231588367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.111105619410548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.083538451230139, -7.0, -3.4743619760326307, -3.4718781993072905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5801263254115825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5194670251274163, -7.0, -7.0, -7.0, -7.0, -3.6591552809406296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.509459136176865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.192691325123439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7010208151180817, -7.0, -7.0, -7.0, -3.9112337273068007, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9748186146454407, -7.0, -7.0, -7.0, -2.3405937554590173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.212453961040276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.159206133646325, -7.0, -7.0, -7.0, -3.4776999283321306, -7.0, -7.0, -3.054868296692888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.794139355767774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7559644840871944, -7.0, -7.0, -3.848461840439585, -7.0, -7.0, -7.0, -3.1987945001755986, -7.0, -3.5543680009900878, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0653929615619915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.470410490975931, -7.0, -7.0, -7.0, -3.1811763955885275, -3.466125870418199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.461198288622493, -3.4409000039084243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.086786795626624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0782150732756044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.392169149489736, -7.0, -2.9279346817411795, -7.0, -7.0, -7.0, -3.3456350782317283, -7.0, -3.5434471800817002, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.252681139281379, -7.0, -7.0, -3.0108827245590275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5044198859720406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.060093183824469, -7.0, -3.931856574894348, -7.0, -7.0, -3.729904959419274, -3.55108386518578, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.074747273672198, -3.1126869080645676, -3.478484039834738, -7.0, -3.865222456290179, -3.66133934000604, -2.5310141823998307, -4.138444807652802, -2.7603455395182035, -7.0, -2.2316416747484227, -2.6517352463427852, -3.6002829916784354, -3.6431762192974477, -2.317613388741308, -3.5537819221196365, -3.226309849143952, -2.242676758047947, -3.18998131938412, -4.03248780817215, -4.02234587626988, -3.8089094696794237, -3.5199591807520685, -2.5304820004707973, -2.4632224050091973, -7.0, -3.872127124489488, -3.7881400774194143, -3.6035773681514667, -2.6861605098427175, -2.690355133127491, -3.9097164532343447, -7.0, -3.243806689744405, -2.8985756053931113, -4.296336054602047, -7.0, -3.7932664017413886, -2.37461859451139, -4.066400475955629, -7.0, -4.29877668624019, -3.877544107715944, -3.900039235487325, -7.0, -3.5366531185480494, -7.0, -4.272224638590053, -7.0, -7.0, -3.3084729414195233, -3.366982975977851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.64931051416874, -7.0, -7.0, -4.399881302691986, -3.1517117392567644, -4.138296955391362, -7.0, -7.0, -7.0, -4.035249578686349, -3.856547644856748, -4.954425839520279, -3.814580516010319, -3.6664867801179333, -7.0, -3.370142847051102, -3.255548160131223, -3.552323401102493, -3.605412798153051, -7.0, -7.0, -3.381527638581548, -7.0, -7.0, -4.154109373586023, -3.6889979031063134, -7.0, -3.5785819114018698, -7.0, -7.0, -7.0, -3.6292396540870877, -7.0, -7.0, -7.0, -2.7937903846908188, -3.2014578181199917, -1.9146836013030524, -7.0, -3.2643455070500926, -2.526626414247843, -2.4308272668926096, -2.8578643942098227, -2.556181846652911, -7.0, -7.0, -2.3968657182226067, -2.699114745041209, -2.53334702057068, -2.8408585540418794, -2.8205954965444904, -2.571999816397063, -2.4267280833770184, -2.182372377102884, -1.8430534957192342, -1.1944804985563715, -2.225853169689125, -2.9642596301968487, -2.1153544418072685, -1.968482948553935, -3.500236474825639, -2.864955827110473, -7.0, -2.4333462008411337, -2.1977882080746, -3.442009159140952, -2.3129627539223483, -2.610113465677473, -2.088254758332001, -7.0, -2.2479732663618064, -7.0, -2.0770270593685027, -7.0, -3.131779009369187, -7.0, -2.3638682764365573, -2.7662640906519957, -2.498034723687027, -2.3443922736851106, -7.0, -1.5344166586740948, -2.472091271546032, -1.7939117977421835, -7.0, -2.3899251194809668, -3.455758203104137, -3.25491044215453, -1.5401610352777684, -2.520701826026063, -3.4497868469857735, -7.0, -2.490379920003179, -2.2215372569865495, -1.3847117429382825, -2.5576408515395497, -2.389227205254353, -7.0, -2.692259240592287, -7.0, -1.8369834472586366, -3.177969136009376, -2.2921175625108106, -3.1339777710506143, -7.0, -1.854656326386735, -2.2608660716137683, -2.9894498176666917, -3.484299839346786, -1.8564997167285306, -7.0, -7.0, -2.908753019184534, -7.0, -7.0, -2.7427812235852933, -2.360467183515849, -3.418135498425232, -3.059310921102351, -2.3601142873067102, -1.5955090387324764, -2.04170426796382, -1.743313739231126, -7.0, -7.0, -2.5229407829180266, -0.6127838567197355, -2.6088315520434717, -1.7931121687186715, -2.6987055706851475, -2.5393042545542115, -2.0788763710039335, -2.7105807200477456, -2.0847629622918573, -7.0, -2.318975855596643, -7.0, -2.960787780819836, -3.4848690327204026, -3.243905770217521, -2.498634835665338, -7.0, -3.452246574520437, -7.0, -1.9171881743915895, -7.0, -2.7933712489189557, -3.4507108781469196, -2.4120785485647107, -2.3793752559252646, -2.377184787081418, -2.035503856195122, -2.1070359385968906, -1.9952535649755383, -7.0, -7.0, -1.917899189424106, -7.0, -7.0, -7.0, -2.4285765243417345, -2.9894498176666917, -2.996949248495381, -2.738841516373711, -2.4066212736060524, -3.4559102403827433, -3.4323277922616042, -2.8304970163724894, -7.0, -3.4331295175804857, -2.707549900438748, -2.7349597612724454, -7.0, -2.4221519325979415, -7.0, -3.061954844073114, -7.0, -7.0, -3.4794313371977363, -7.0, -2.734159513244467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.36369657447383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1750283506819907, -7.0, -7.0, -3.8020264610272116, -7.0, -7.0, -7.0, -7.0, -2.954724790979063, -7.0, -3.1183355985266434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8339965879428433, -7.0, -7.0, -7.0, -3.2631624649622166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.924783085544135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0412490929989064, -7.0, -2.9867717342662448, -7.0, -7.0, -7.0, -7.0, -7.0, -4.118892725373621, -7.0, -7.0, -7.0, -3.263935750640936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9550861509904007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1925674533365456, -7.0, -7.0, -3.8981490303871453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.436162647040756, -7.0, -2.671481400086431, -2.932980821923198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03733147605049, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4106928961632534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.73870130043471, -7.0, -3.8065598154991136, -7.0, -7.0, -7.0, -2.9748799730069306, -7.0, -7.0, -3.30941722577814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1522883443830563, -7.0, -7.0, -4.136287113116408, -7.0, -7.0, -3.4975515990645665, -7.0, -7.0, -7.0, -7.0, -3.27669152884504, -7.0, -7.0, -7.0, -7.0, -7.0, -4.32196760676029, -7.0, -7.0, -7.0, -7.0, -7.0, -3.110252917353403, -7.0, -7.0, -3.03261876085072, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.980367026184775, -7.0, -4.229868942751505, -7.0, -7.0, -4.075133150516151, -7.0, -7.0, -7.0, -7.0, -3.1781132523146316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.624230513855454, -4.751994638090036, -7.0, -7.0, -7.0, -7.0, -3.446070935701005, -7.0, -3.737892041040643, -7.0, -7.0, -7.0, -4.661812685537261, -4.806586934327803, -3.7047680460278367, -7.0, -7.0, -3.9586689802800628, -7.0, -4.137596725153168, -7.0, -7.0, -7.0, -4.3120009502137435, -7.0, -4.172398577939305, -7.0, -7.0, -7.0, -4.010282991680263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.059336177389288, -7.0, -7.0, -3.2400497721126476, -4.101116706440969, -4.316117183498905, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3455044240544782, -7.0, -2.7672619079535177, -3.680577224555854, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5660837841679958, -3.502727471403209, -7.0, -7.0, -3.666105954192445, -7.0, -4.697049076049325, -7.0, -7.0, -7.0, -4.617650247299917, -7.0, -4.945035059137207, -7.0, -3.601806578961057, -7.0, -3.1061058665275776, -3.7280289544205187, -3.8125345758070877, -7.0, -7.0, -7.0, -3.572028904135723, -7.0, -7.0, -7.0, -4.269256027417773, -7.0, -3.8609366207000937, -7.0, -7.0, -7.0, -4.035549803010057, -7.0, -7.0, -7.0, -2.4720246977002813, -7.0, -3.169758380030249, -2.978180516937414, -7.0, -3.04766419460156, -3.47158505418519, -2.8681824452850693, -3.2281436075977417, -7.0, -7.0, -2.974906266794061, -7.0, -2.2620740670103863, -3.189770956346874, -7.0, -2.7104558643354246, -7.0, -1.8460975674563835, -2.8190171986890595, -7.0, -2.81424759573192, -3.5575072019056577, -2.8788089323592057, -1.7977468064470243, -7.0, -7.0, -2.4403842548328845, -2.8244216950097427, -7.0, -7.0, -3.5231971111804987, -4.044716107722188, -3.599766142887816, -7.0, -3.4631461367263494, -3.056142262059052, -1.919987134009703, -7.0, -7.0, -2.9508514588885464, -3.0276213815520254, -2.698535492562001, -3.093421685162235, -3.3557387836020354, -7.0, -3.0492180226701815, -2.5282737771670436, -2.9206450014067875, -7.0, -2.8847953639489807, -2.9684829485539352, -3.2234959409623944, -3.138993072190013, -2.426917713880816, -2.949877704036875, -7.0, -7.0, -3.3680388229322835, -7.0, -2.8254261177678233, -7.0, -3.062581984228163, -3.0256471576060306, -7.0, -3.1889284837608534, -7.0, -7.0, -3.652101229519464, -7.0, -1.985380011395665, -1.5642714304385625, -7.0, -7.0, -3.372175286115064, -7.0, -2.6344772701607315, -3.660106221723244, -3.140193678578631, -7.0, -2.765295929698057, -7.0, -7.0, -2.7027176733035243, -2.771807878999106, -2.6723497932508575, -2.322407260320884, -2.3394514413064407, -7.0, -7.0, -3.2829165267951463, -3.1863912156954934, -2.9684829485539352, -3.0843975191411492, -3.2835068118940884, -7.0, -2.660684823058709, -2.7750916633149307, -2.59659709562646, -7.0, -3.158060793936605, -2.9474337218870508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8888590717747014, -7.0, -3.0751818546186915, -7.0, -2.9708116108725178, -3.0835026198302673, -7.0, -3.0236639181977933, -3.1956229435869368, -2.2530147492770154, -3.118595365223762, -2.957607287060095, -2.384114363914378, -7.0, -7.0, -7.0, -2.169002281505364, -3.0025979807199086, -3.024074987307426, -2.6019764651267425, -3.281714970027296, -2.8403570592033565, -7.0, -7.0, -2.7506626461340558, -2.622214022966295, -7.0, -1.4307208410483763, -7.0, -7.0, -1.9071963102716016, -3.061954844073114, -7.0, -7.0, -7.0, -2.73559889969818, -7.0, -0.6300376904927476, -7.0, -7.0, -2.888179493918325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.657562552914381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.876985262766487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055301864347441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727191403365907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.720985744153739, -7.0, -7.0, -7.0, -7.0, -3.770336441095149, -3.1607685618611283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1986570869544226, -2.9382694834629115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.26030994579492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.681241237375587, -7.0, -7.0, -2.553883026643874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626422495681244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4551495211798278, -7.0, -7.0, -7.0, -2.403120521175818, -7.0, -7.0, -7.0, -7.0, -7.0, -4.162185901641091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.130333768495006, -7.0, -7.0, -7.0, -7.0, -1.8750612633917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7956715059460215, -7.0, -7.0, -7.0, -7.0, -4.478555674167947, -2.6473829701146196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.800717078282385, -7.0, -7.0, -7.0, -1.462397997898956, -7.0, -3.581380688709987, -7.0, -7.0, -7.0, -7.0, -3.4075608494863623, -7.0, -3.7137424784090824, -7.0, -7.0, -7.0, -7.0, -7.0, -4.265831566255261, -7.0, -7.0, -7.0, -4.309459822461211, -7.0, -7.0, -3.2775862957847632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.173186268412274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.8846065812979305, -7.0, -7.0, -2.4578818967339924, -7.0, -2.4756711883244296, -2.648067129448935, -7.0, -7.0, -7.0, -7.0, -3.315130317183602, -7.0, -7.0, -3.274134747878962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7297046213121872, -7.0, -7.0, -7.0, -2.469822015978163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626473817986867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.740188936948656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6875289612146345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.204933522354145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.64738297011462, -7.0, -7.0, -7.0, -7.0, -3.9648722086377752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.661812685537261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.9378520932511555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.359465510718378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6919651027673606, -7.0, -7.0, -7.0, -7.0, -3.041787318971752, -3.732491407656525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5608149411970516, -7.0, -7.0, -7.0, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8626480890490678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4176377396522297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4335698364624765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.583198773968623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5210988384536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6273658565927325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7658919764300154, -7.0, -7.0, -7.0, -2.529558673021163, -7.0, -7.0, -3.2384224958854797, -7.0, -7.0, -7.0, -2.7520484478194387, -4.13586381379987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.837114748515506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0588054866759067, -7.0, -7.0, -7.0, -3.603865792191225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.030672570475327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9635517335740964, -7.0, -3.8662873390841948, -7.0, -7.0, -3.180357146127899, -7.0, -7.0, -2.851869600729766, -7.0, -2.656098202012832, -7.0, -7.0, -7.0, -2.801403710017355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.358315640082196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.037625669914719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.611723308007342, -7.0, -7.0, -5.14997308296338, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -3.99370069482035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6313422864839326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.632457292184724, -2.82020145948564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.149834696715785, -2.9876662649262746, -7.0, -7.0, -7.0, -7.0, -7.0, -3.766635886310268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.098605658496943, -7.0, -7.0, -7.0, -7.0, -7.0, -2.924795995797912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.734337295690939, -7.0, -7.0, -3.643551368562945, -3.0729847446279304, -7.0, -7.0, -7.0, -2.420368379857524, -2.675167089663394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.400537989391946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.43341777677003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.001300933020418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.105453410538649, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3913409650889035, -7.0, -2.062411035797732, -3.874052529609521, -3.4612626428467945, -2.7444494574467986, -7.0, -7.0, -7.0, -7.0, -2.9466627639986482, -2.1251057408333547, -3.1712143570094913, -3.666829861704301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.587289933011235, -7.0, -7.0, -3.2423502691413284, -7.0, -7.0, -2.1893967258352185, -2.6104472214421213, -1.9982593384236988, -3.40849436021236, -7.0, -4.641781379153336, -7.0, -3.2840169229681395, -7.0, -7.0, -7.0, -3.4342722781648516, -7.0, -7.0, -7.0, -7.0, -7.0, -2.044539760392411, -3.828219364730503, -3.5234153595283777, -7.0, -4.032578471924312, -7.0, -3.3106933123433606, -3.616160312847583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.150537154583293, -1.8459834521087115, -2.6368220975871743, -7.0, -3.400365273349939, -2.8489364984779035, -7.0, -7.0, -2.6201360549737576, -3.187873089603788, -7.0, -3.2867421763851072, -2.4369573306694496, -2.9740509027928774, -7.0, -3.153204900084284, -3.252124552505644, -2.8527848686805477, -7.0, -7.0, -2.89707700320942, -7.0, -3.091315159697223, -7.0, -2.0453229787866576, -7.0, -3.237292337567459, -7.0, -7.0, -4.471144965160633, -3.1947323263866414, -4.2654389233076575, -2.268343913951065, -7.0, -2.53655844257153, -7.0, -2.7259116322950483, -7.0, -2.6483600109809315, -3.1384605947257023, -7.0, -7.0, -3.0091320695404717, -1.8773713458697743, -7.0, -2.958085848521085, -7.0, -2.526339277389844, -7.0, -2.6830470382388496, -3.0881360887005513, -4.334795422556774, -7.0, -2.3434085938038574, -2.2041199826559246, -3.5854607295085006, -3.816705183666515, -7.0, -7.0, -3.680154141734373, -7.0, -3.1568771206909294, -2.093421685162235, -7.0, -2.8068580295188172, -7.0, -3.6298681187461233, -7.0, -3.420945405921972, -2.9740509027928774, -7.0, -2.5276299008713385, -7.0, -2.530199698203082, -2.315970345456918, -2.9155053617543767, -2.4908944592739792, -2.9304395947667, -3.430800424624181, -7.0, -2.8543060418010806, -2.7271344237604884, -3.1364827496008227, -7.0, -7.0, -7.0, -7.0, -7.0, -3.494687854800482, -7.0, -7.0, -2.995854479874566, -4.316012304249464, -2.381415942849977, -3.486760974209115, -1.8299420573070557, -3.2935835134961167, -2.6541765418779604, -7.0, -2.6414741105040997, -7.0, -2.832508912706236, -3.0549958615291417, -7.0, -2.582063362911709, -2.661812685537261, -7.0, -2.9502431180103916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3324384599156054, -2.661812685537261, -7.0, -2.5276299008713385, -7.0, -7.0, -2.775974331129369, -2.7466341989375787, -2.1782573208121887, -1.1920793644398116, -3.227629649571009, -7.0, -2.683947130751512, -7.0, -2.1662080251235856, -1.5291502547236724, -7.0, -1.824837262814491, -2.5440680443502757, -7.0, -2.2043913319193, -3.4794313371977363, -2.73559889969818, -1.7297046213121872, -7.0, -7.0, -2.5276299008713385, -3.570192561095726, -7.0, -2.47928731647617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.469527479187014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.354108439147401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.050920836935403, -7.0, -7.0, -7.0, -4.27263051589404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.33056595269382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9825877907016625, -7.0, -2.6976651626476746, -7.0, -7.0, -7.0, -7.0, -2.125481265700594, -7.0, -3.0687793630095612, -7.0, -7.0, -2.295017011881458, -7.0, -7.0, -7.0, -7.0, -2.288661889613078, -7.0, -2.7427251313046983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2430380486862944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.177514856808423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2806921642851177, -7.0, -7.0, -3.4055171069763763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9648722086377752, -7.0, -7.0, -7.0, -4.309566295893774, -7.0, -7.0, -3.5789599423109, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.617000341120899, -7.0, -7.0, -7.0, -7.0, -3.8448187609265627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.187520720836463, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6901960800285138, -2.1789769472931693, -2.9505595616118003, -3.4878451201114355, -7.0, -7.0, -7.0, -2.8382192219076257, -7.0, -7.0, -3.575511135352897, -1.6532125137753437, -7.0, -2.640150040936102, -7.0, -7.0, -7.0, -7.0, -2.5276299008713385, -7.0, -7.0, -1.6020599913279623, -2.4771212547196626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8435531067748108, -7.0, -7.0, -7.0, -7.0, -3.878406887580996, -7.0, -7.0, -7.0, -7.0, -7.0, -3.204042423144708, -3.375114684692225, -7.0, -3.319522449065454, -3.4808247611406684, -7.0, -7.0, -7.0, -7.0, -3.547528576459782, -7.0, -3.180533896417463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3969835082752, -7.0, -7.0, -3.5640739789771465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0674428427763805, -3.618414214801256, -7.0, -7.0, -3.649334858712142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.444918753773256, -7.0, -7.0, -7.0, -7.0, -3.7212333700172775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.413132050434872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.735687594578893, -3.5469126431812423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5957717020009405, -7.0, -7.0, -7.0, -3.1929816157909645, -7.0, -7.0, -7.0, -7.0, -7.0, -2.848558572123763, -7.0, -7.0, -7.0, -2.349824798081177, -7.0, -7.0, -7.0, -7.0, -7.0, -3.602005701124516, -7.0, -7.0, -3.2969940766702086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.179810222878796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6137361412618714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4983718255845533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6941872061371988, -7.0, -7.0, -3.620413692497615, -7.0, -7.0, -7.0, -3.1094660499520925, -3.2989621819201167, -3.631950826259217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.88284966953054, -7.0, -3.305028753746333, -3.5420781463356255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.243368813730389, -3.55942779975949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5108799847561176, -3.4430161248818374, -7.0, -7.0, -7.0, -3.5888317255942073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9646299732016494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.33193317250328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2094077680963755, -7.0, -2.915588257481659, -7.0, -7.0, -7.0, -2.823948220466359, -7.0, -3.62283547952152, -3.668944734457734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6071332043915665, -7.0, -7.0, -3.1484235191525474, -7.0, -7.0, -3.171628957978357, -7.0, -7.0, -7.0, -7.0, -3.6549462265843444, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4185988830152456, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5928426831311002, -7.0, -7.0, -3.568788212315347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7847242485457184, -7.0, -3.794627444664508, -7.0, -7.0, -3.7379306114157003, -3.6292056571023035, -7.0, -7.0, -7.0, -3.6163704722912695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.016236272275966, -3.1276495344679027, -3.5596872289809776, -7.0, -3.875480878609511, -3.7231271587956916, -2.531957654348021, -4.149373090491385, -2.707501741954049, -7.0, -2.259977184344511, -2.664225170809302, -3.5396226573571123, -3.5685471963453623, -2.3121930335260323, -3.567731962548069, -3.1627372975844534, -2.2393999584530446, -3.213882835868511, -3.863362519906055, -4.050341081834084, -3.833549702423101, -3.5495754012584975, -2.521410522381751, -2.4840963750741945, -4.243038048686294, -3.8788854701365376, -3.7979458124824967, -3.6734816970733473, -2.6918760125660888, -2.6841883019367963, -3.9171482644162796, -7.0, -3.260834312172319, -2.9321969382690316, -4.311457168381031, -7.0, -3.708403901974985, -2.385843450427921, -4.091772441419683, -3.6399842480415883, -4.130247973456816, -3.6688702669537956, -3.9367649976099415, -7.0, -3.6832272060414346, -7.0, -4.280282366567866, -3.6663307443019684, -7.0, -2.8726514940644776, -3.230218939887381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4898647703982753, -7.0, -7.0, -3.712733859069952, -3.1548119446999063, -4.102510883861542, -7.0, -7.0, -7.0, -3.9452814338116067, -7.0, -4.9577939887621, -3.8588979572320037, -3.386617852625555, -7.0, -3.189321841020497, -3.279047385047397, -3.4413022866931673, -3.3738311450738303, -7.0, -7.0, -3.097852030062842, -7.0, -7.0, -4.0362095668797355, -3.453547660380749, -7.0, -3.55044474059212, -7.0, -7.0, -3.8577545220594422, -3.527436551688697, -7.0, -7.0, -7.0, -2.6258838159722577, -3.222224975159809, -1.887624160740319, -7.0, -3.6413749451921253, -2.6685023963693637, -2.382173714467586, -2.5798508196618952, -2.6334684555795866, -7.0, -7.0, -2.406350904125924, -2.9668454236549167, -1.973118147285219, -2.841463755359163, -2.9040660519145027, -2.567866231982406, -2.4349180354194466, -1.7163743769610007, -1.745089958408157, -1.2529312892884035, -2.33568073008468, -2.839617691903345, -2.1339644786952103, -1.815307890596743, -7.0, -2.958085848521085, -2.692217233097753, -2.3424665467362784, -2.569958818096594, -3.238798562713917, -2.2895647772430805, -2.612830312780314, -2.0804389076211174, -7.0, -2.1689909186377423, -7.0, -1.7902460577811867, -7.0, -3.2317243833285163, -7.0, -2.4005004482688816, -2.380211241711606, -2.470727032157512, -2.346352974450639, -7.0, -1.4999674716021913, -2.4512380145877897, -1.9293323179800537, -7.0, -2.4705574852172743, -3.249809609401804, -3.1559430179718366, -1.5540799038901723, -2.451668372595222, -3.245018870737753, -7.0, -2.537000087321339, -2.2076024217230845, -1.4695366151123335, -2.2932520331478248, -2.4613428736466783, -7.0, -2.5785157882765883, -7.0, -1.7943548719475486, -3.5700757053216043, -2.379758615842701, -3.064008486531724, -7.0, -1.8188479077451358, -1.9510503673339017, -3.258996253248911, -3.574147064150723, -1.9089315942207272, -7.0, -3.5429498488141786, -2.7095727951571993, -3.3016809492935764, -7.0, -2.5274752284122086, -2.84083766998129, -3.4726833296130404, -3.0147304950017535, -2.3155095555124667, -1.5977651826186936, -1.7152764907757574, -1.7664128471123997, -7.0, -7.0, -2.460998014474649, -0.6817376109771551, -2.5948834173187865, -1.8342793777831479, -2.5745456823355712, -2.6126875501483457, -2.016565097224415, -2.51419604972685, -1.9524168070596342, -7.0, -2.375286972498473, -3.5456781497920256, -3.059689611271879, -3.5746099413401873, -3.6242820958356683, -2.5784959493756787, -7.0, -3.24699069924155, -7.0, -1.9586328608246595, -7.0, -2.53793351859703, -3.54703589974001, -2.3173257840095487, -2.9814788279263897, -2.6494565609637166, -2.3585296895559917, -2.1211092004651437, -1.768755789395493, -3.595606434865603, -3.5482665451707454, -2.113943352306837, -7.0, -7.0, -7.0, -2.562768543016519, -2.957487564252472, -3.2650537885040145, -2.637712045607411, -2.460038278929382, -3.5512059437479064, -3.5323721335678773, -2.655538595608055, -3.5399538416563967, -3.5330090224954853, -1.465817739756417, -2.7552394576339077, -7.0, -2.3252170252342044, -0.6300376904927476, -7.0, -7.0, -3.570192561095726, -7.0, -7.0, -2.754603128608854, -7.0, -3.230193378869046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8483738838446016, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.297760511099134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431033896809084, -7.0, -7.0, -7.0, -7.0, -7.0, -4.390917452497312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.482816435838172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.218062617826375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1646502159342966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.640282629696681, -7.0, -4.272815933543096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.631697371637548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.681828946648094, -7.0, -3.003029470553618, -2.569373909615046, -7.0, -3.982994454658664, -2.975891136401793, -7.0, -7.0, -3.7689339421867816, -7.0, -4.149393616745378, -7.0, -7.0, -7.0, -7.0, -3.173186268412274, -2.0019067040408847, -7.0, -7.0, -7.0, -2.886490725172482, -2.971739590887778, -7.0, -2.424881636631067, -7.0, -3.5194998528595387, -7.0, -7.0, -4.466763851597166, -7.0, -3.785883227526406, -7.0, -7.0, -7.0, -7.0, -2.3710678622717363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.907859040931642, -7.0, -3.245018870737753, -7.0, -7.0, -7.0, -7.0, -4.02771646220899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4720246977002813, -3.652343055062715, -7.0, -4.47860256506622, -2.6599162000698504, -7.0, -7.0, -2.693726948923647, -7.0, -7.0, -3.696967640744023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5828584622244994, -2.803457115648414, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7148325124333326, -2.869036047512346, -2.59659709562646, -2.3826173114774845, -7.0, -7.0, -4.266137581513037, -2.88930170250631, -2.2671717284030137, -7.0, -7.0, -7.0, -3.4725126690795998, -3.8010834169645062, -3.2711443179490782, -7.0, -2.841359470454855, -7.0, -7.0, -7.0, -2.9232440186302764, -3.4345689040341987, -7.0, -7.0, -7.0, -3.3676975062069, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.077912702949456, -2.6908603082720437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4771212547196626, -2.1122697684172707, -2.1903316981702914, -3.3498600821923312, -2.788875115775417, -3.4353665066126613, -7.0, -7.0, -3.016406500871118, -7.0, -7.0, -3.7976367996323463, -0.5440680443502757, -7.0, -2.5171958979499744, -2.734159513244467, -7.0, -7.0, -7.0, -7.0, -1.6020599913279623, -2.754603128608854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6601632120103025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.878556261949533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.588346417745989, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.260524535842226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5629467882404056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.496396826529734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.956133198668, -7.0, -7.0, -3.546135321429913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.748250064643889, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8765642139838454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0979510709941502, -4.572685768016257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4888326343824008, -7.0, -4.073461729279835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.612540159747515, -7.0, -4.942637943431793, -7.0, -4.061150780928549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.783903579272735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.66838591669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7877437716464666, -7.0, -7.0, -3.0265332645232967, -7.0, -7.0, -7.0, -7.0, -3.1487568513217923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6253271526248803, -4.64205872539365, -4.74230083908448, -2.526339277389844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3066394410242617, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1992979769986976, -7.0, -4.303433666006204, -2.8555191556678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9566485792052033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.451632947456991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.272213036520142, -7.0, -2.6483600109809315, -7.0, -7.0, -7.0, -7.0, -3.5850544459866267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4742162640762553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.918554530550274, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7481880270062007, -7.0, -2.7573960287930244, -2.975891136401793, -3.5241363765925686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5816538871768926, -2.0128372247051725, -7.0, -3.1992064791616577, -7.0, -7.0, -2.469822015978163, -7.0, -2.47928731647617, -2.4771212547196626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9820449790714902, -7.0, -7.0, -7.0, -3.3418300569205104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.149188310536008, -7.0, -2.795880017344075, -7.0, -7.0, -2.8656960599160706, -2.704322140822235, -7.0, -7.0, -7.0, -7.0, -2.6603910984024672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.639277260341978, -7.0, -7.0, -7.0, -7.0, -3.076276255404218, -7.0, -7.0, -7.0, -3.3866772839608377, -2.3729120029701067, -7.0, -7.0, -7.0, -3.6851144690465394, -7.0, -3.2400497721126476, -7.0, -7.0, -2.2174839442139063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.457124626303409, -7.0, -2.591064607026499, -4.779574848136385, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1522883443830563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.893206753059848, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2174839442139063, -7.0, -7.0, -7.0, -7.0, -4.277838333002047, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5599066250361124, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145538235712233, -1.9731278535996988, -7.0, -7.0, -2.2304489213782737, -7.0, -2.2810333672477277, -7.0, -7.0, -3.2898118391176214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0773679052841567, -7.0, -3.649140064144219, -7.0, -7.0, -2.220108088040055, -7.0, -7.0, -7.0, -7.0, -3.973312620452902, -7.0, -7.0, -7.0, -7.0, -2.888179493918325, -7.0, -7.0, -7.0, -7.0, -3.230193378869046, -7.0, -7.0, -7.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}, {\"alignmentgroup\": \"True\", \"bingroup\": \"x\", \"hovertemplate\": \"series=post-2000 mean:0.001<br>data=%{x}<br>count=%{y}<extra></extra>\", \"legendgroup\": \"post-2000 mean:0.001\", \"marker\": {\"color\": \"#EF553B\", \"opacity\": 0.5}, \"name\": \"post-2000 mean:0.001\", \"nbinsx\": 100, \"offsetgroup\": \"post-2000 mean:0.001\", \"orientation\": \"v\", \"showlegend\": true, \"type\": \"histogram\", \"x\": [-7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.090713737503893, -7.0, -7.0, -2.329058719264225, -4.196231470442875, -7.0, -7.0, -7.0, -7.0, -2.7774268223893115, -7.0, -4.038023740045158, -7.0, -7.0, -3.6679196853173615, -3.647458652980616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.388870545406613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1856837803185045, -7.0, -7.0, -7.0, -4.363248348914939, -7.0, -7.0, -3.3364597338485296, -7.0, -3.643156465619706, -7.0, -7.0, -7.0, -3.128722284338427, -7.0, -3.1445312644921954, -2.844010944373043, -3.4280267471363537, -3.3176455432211585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.672667303446025, -7.0, -7.0, -7.0, -7.0, -3.2567978962927286, -7.0, -2.4616485680634552, -7.0, -4.171186702866917, -7.0, -7.0, -7.0, -2.8603380065709936, -3.031581570404944, -7.0, -7.0, -7.0, -2.9683272595463874, -7.0, -2.716142518281689, -7.0, -7.0, -7.0, -3.767910393707072, -7.0, -3.418135498425232, -7.0, -7.0, -3.124993020025895, -7.0, -7.0, -3.585686278452497, -7.0, -3.8492350913147226, -7.0, -7.0, -7.0, -3.19566907396904, -7.0, -7.0, -7.0, -7.0, -2.723674542888705, -7.0, -7.0, -3.121887985103681, -3.165541076722373, -4.385212907084455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.872709718287906, -4.754592939762488, -7.0, -7.0, -7.0, -4.99402664584492, -3.124178055474675, -3.4479328655921804, -7.0, -7.0, -3.004751155591001, -3.8228434139044927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9497151990838457, -7.0, -7.0, -7.0, -7.0, -3.880127322216625, -7.0, -7.0, -3.1451964061141817, -4.056714329516394, -3.827304641089735, -7.0, -7.0, -7.0, -3.110015758247213, -7.0, -2.6148972160331345, -7.0, -3.1789769472931693, -7.0, -7.0, -3.229681842317676, -3.4000196350651586, -3.0775495804517936, -2.968716377466786, -3.275886960301226, -7.0, -2.9508514588885464, -3.839476514441198, -2.9041743682841634, -7.0, -7.0, -7.0, -7.0, -2.840106094456758, -7.0, -3.078042316010944, -7.0, -7.0, -7.0, -3.721728198572788, -3.2666827035194554, -7.0, -7.0, -3.285557309007774, -7.0, -7.0, -3.2132520521963968, -7.0, -7.0, -7.0, -2.9322707758994904, -2.935003151453655, -2.8202953102654553, -7.0, -3.9518715571283645, -7.0, -3.564014726029118, -7.0, -4.0751087964165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.743666521446213, -3.350829273582968, -7.0, -3.385606273598312, -4.055550332976277, -3.376455288899979, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.967547976218862, -7.0, -7.0, -7.0, -4.93482405002071, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.331427296520743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.340558126963426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.273926780100526, -7.0, -7.0, -7.0, -7.0, -7.0, -3.713280485299326, -3.3140779917792127, -7.0, -3.029789470831856, -4.233960138494771, -7.0, -7.0, -7.0, -3.69121414838279, -7.0, -3.4837298990000236, -7.0, -3.538824988937904, -2.8976270912904414, -7.0, -7.0, -2.857633985150008, -2.85582190540603, -2.9526310252827455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.737391449978478, -2.8136836101381175, -7.0, -7.0, -7.0, -4.3537559923907425, -3.1143885542749916, -7.0, -4.286052077773516, -7.0, -7.0, -7.0, -7.0, -3.2566215460697054, -3.0277572046905536, -7.0, -7.0, -7.0, -7.0, -5.129438521472354, -3.268168287683832, -7.0, -7.0, -7.0, -7.0, -3.0149403497929366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.096736260462469, -7.0, -7.0, -3.1416587697865523, -7.0, -4.3799216155042044, -4.387300822448285, -4.875299770323185, -7.0, -2.946452265013073, -7.0, -3.775537634780957, -7.0, -2.59659709562646, -7.0, -2.580544849190167, -3.084576277934331, -3.721315880605899, -7.0, -7.0, -7.0, -2.696356388733332, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1223524273957572, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.712616034083344, -3.895790748250444, -7.0, -7.0, -4.579251831894143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.922533433518409, -7.0, -7.0, -3.5732198271144218, -5.38794657658479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.774202992384649, -4.158060793936605, -4.677123120126264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.011802963585356, -2.767526899408382, -4.670171608355266, -3.534328527851568, -7.0, -3.353531559077762, -4.328399992372424, -3.350441856535061, -3.8039626383243994, -3.037205088564478, -2.7918309476748364, -3.963976609996606, -4.0595160859321835, -3.9814108401658883, -7.0, -4.437052595060992, -3.8207923810882036, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3099183595839303, -3.8750443149836546, -4.928262675512426, -7.0, -3.6872613462435067, -2.8965262174895554, -4.654431651055449, -7.0, -4.803289784441723, -4.076385543954533, -4.217325990227112, -7.0, -7.0, -4.432119101024855, -4.481643246275584, -7.0, -3.912753303671323, -7.0, -3.9950260973716762, -4.18613667169178, -7.0, -3.1505484752433546, -4.654883740590171, -3.5569052690554477, -4.569360252341128, -7.0, -7.0, -4.130730350227968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.991654250266102, -3.05307844348342, -3.7062624873330328, -7.0, -7.0, -3.8649854606597938, -7.0, -7.0, -2.8254261177678233, -7.0, -7.0, -4.1950551387337205, -3.6127838567197355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.617363849384386, -7.0, -7.0, -7.0, -3.458889540995547, -7.0, -3.4619484952037616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1961761850399735, -7.0, -7.0, -7.0, -3.114610984232173, -7.0, -3.269512944217916, -7.0, -7.0, -7.0, -3.539452491549461, -3.513483956704257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9855045740664705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7718078789991054, -7.0, -3.329397879361043, -3.8013350956745464, -7.0, -7.0, -3.491081413423187, -3.675992076790947, -7.0, -7.0, -4.305243857506007, -7.0, -7.0, -7.0, -3.554489160003819, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.22816928953985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.24699069924155, -7.0, -3.642068627341504, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9176805224430487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333406966873917, -3.871689665685515, -7.0, -7.0, -4.617339392030039, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6600349733461006, -2.9552065375419416, -7.0, -7.0, -7.0, -2.6364878963533656, -2.6201360549737576, -7.0, -7.0, -7.0, -7.0, -4.839503186703423, -7.0, -7.0, -7.0, -7.0, -7.0, -2.085468969886672, -7.0, -7.0, -7.0, -7.0, -4.606004956819436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.604657972047871, -7.0, -7.0, -5.124556389206683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.454387467146955, -7.0, -7.0, -7.0, -5.229725346362544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5101426994025733, -7.0, -7.0, -4.165452072831928, -7.0, -7.0, -3.8232785569516707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.018117720591, -3.706888394981618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0464951643347082, -7.0, -3.1983821300082944, -3.5605044151950564, -3.1550322287909704, -7.0, -4.606831090746259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.908806599405674, -7.0, -7.0, -7.0, -7.0, -4.398688280387376, -7.0, -7.0, -7.0, -7.0, -3.3197304943302246, -7.0, -7.0, -3.0346284566253203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.419625360887743, -2.9905608299940196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.849910558301496, -7.0, -7.0, -7.0, -2.2227164711475833, -7.0, -7.0, -7.0, -7.0, -3.269746373130767, -7.0, -2.842609239610562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3391482237708905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530583859645118, -7.0, -4.4076627845840965, -7.0, -7.0, -7.0, -7.0, -7.0, -3.94733567594874, -3.6921416093667836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9140785853891122, -7.0, -7.0, -7.0, -5.13102808436136, -3.877025615867249, -7.0, -4.279621322484056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6847705799856993, -2.311223910432456, -3.1851170011425913, -7.0, -5.527199259073056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8721562727482928, -7.0, -7.0, -7.0, -7.0, -4.382215223047534, -7.0, -7.0, -7.0, -5.017492446477275, -3.754348335711019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2605483726369795, -7.0, -7.0, -7.0, -7.0, -7.0, -2.895422546039408, -7.0, -2.6928469192772297, -4.1982445862282365, -7.0, -7.0, -4.5920545601729215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.996472268649586, -4.276875221131548, -7.0, -7.0, -4.921056682142087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9489017609702137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.961326155934711, -4.376823230725233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1865071251858526, -7.0, -7.0, -3.183649388808035, -7.0, -4.653062897685104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.954556053354576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163563865300896, -7.0, -3.874249822778403, -7.0, -7.0, -7.0, -7.0, -2.6301735297867714, -7.0, -7.0, -7.0, -4.795184589682424, -3.5816083660320572, -7.0, -2.662521737910115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.59315309937685, -4.616370472291269, -7.0, -7.0, -2.5449534564447305, -7.0, -7.0, -7.0, -7.0, -7.0, -3.766239292954104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.53655844257153, -7.0, -7.0, -7.0, -7.0, -7.0, -2.996219709466273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8552846237426173, -7.0, -7.0, -7.0, -7.0, -7.0, -2.780317312140151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3264485170542, -3.2837533833325265, -2.3448287505880847, -4.299093072361705, -3.416640507338281, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354050785610767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542750756732575, -7.0, -7.0, -2.7972675408307164, -3.170848203643309, -7.0, -3.010299956639812, -7.0, -7.0, -7.0, -3.1734776434529945, -7.0, -4.389874558390986, -2.295017011881458, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4456042032735974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.097812407365289, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.494265937303735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7862574846662123, -3.0595634179012676, -7.0, -7.0, -5.203921790582551, -7.0, -7.0, -7.0, -3.886913533398546, -3.903524064471262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.639486489268586, -4.7934248277031015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.864267760535243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5246124580893383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.952657932409665, -7.0, -7.0, -3.7740057302582093, -7.0, -7.0, -3.394976719554564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.124520526873732, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5079907248196913, -7.0, -7.0, -4.5307067195722155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.55108386518578, -7.0, -3.663920686219387, -2.8926510338773004, -7.0, -7.0, -3.960470777534299, -7.0, -7.0, -7.0, -7.0, -3.7709256146389993, -7.0, -7.0, -7.0, -3.0678145111618402, -4.379903507451503, -7.0, -7.0, -7.0, -7.0, -3.301897717195208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.992725787677043, -7.0, -3.399673721481038, -7.0, -7.0, -7.0, -4.293583513496117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145724574880668, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0203612826477078, -7.0, -3.860996436757196, -3.151676230847048, -7.0, -4.05391701315164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9082168530893924, -7.0, -7.0, -7.0, -7.0, -4.574769904961649, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.030194785356751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0170333392987803, -7.0, -7.0, -3.4619110156367996, -1.6782147827453995, -3.1332194567324945, -7.0, -3.130333768495006, -7.0, -7.0, -3.719911064198339, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6589648426644352, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530443039902961, -7.0, -4.7086163311678915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0786380383696725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.176958980586908, -7.0, -3.978294669778629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.832508912706236, -7.0, -7.0, -7.0, -7.0, -3.6729286904427223, -2.8656960599160706, -7.0, -7.0, -7.0, -7.0, -7.0, -5.574108275787997, -7.0, -7.0, -7.0, -3.452323216977515, -7.0, -7.0, -7.0, -3.49789674291322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499150755234518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.09429639740537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.668851648082519, -7.0, -4.961273931114606, -3.677606952720493, -7.0, -7.0, -3.8009918612601714, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9902677987531, -5.487524400587733, -7.0, -7.0, -7.0, -2.6928469192772297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.89657030606194, -7.0, -7.0, -4.339992729686746, -7.0, -7.0, -5.346955091548924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5930644316587177, -7.0, -7.0, -7.0, -4.035249578686349, -7.0, -2.7528164311882715, -7.0, -7.0, -7.0, -4.317958924700952, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9986515959983735, -7.0, -7.0, -7.0, -7.0, -4.785714122351664, -7.0, -7.0, -2.878678439139299, -7.0, -2.714999967412042, -7.0, -3.118264726089479, -3.9421073089893555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.472317546316842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9487082638609827, -3.41077723337721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7806053058389697, -7.0, -7.0, -3.7710727832211948, -4.025264892154508, -2.804480189105993, -7.0, -3.821644517542217, -3.4148062795010126, -7.0, -7.0, -4.019697730980192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.563777633362166, -7.0, -3.134283382991931, -3.63558426631123, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8943160626844384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1609934489716522, -7.0, -7.0, -4.902956963936665, -7.0, -7.0, -7.0, -7.0, -3.4268906288777257, -2.720572720364261, -7.0, -7.0, -7.0, -7.0, -4.333709182897272, -7.0, -7.0, -3.642068627341504, -4.96955102588328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.441591458037452, -7.0, -7.0, -3.278982116865443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.208113361779008, -7.0, -3.8905886677054875, -7.0, -7.0, -7.0, -3.3995006613146104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9203875026352017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4515868904569045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6039018317316716, -4.072507235528804, -7.0, -7.0, -7.0, -7.0, -3.903180455585522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165896909992507, -7.0, -7.0, -7.0, -7.0, -4.992840596288919, -7.0, -7.0, -7.0, -7.0, -2.568201724066995, -4.294157480769691, -3.4345689040341987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1903316981702914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.797959643737196, -7.0, -7.0, -7.0, -7.0, -3.862548769524793, -7.0, -7.0, -4.275836337596789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.875861557613656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2196219444266507, -7.0, -3.436639631692661, -7.0, -3.1386184338994925, -7.0, -2.792391689498254, -7.0, -7.0, -7.0, -7.0, -7.0, -3.83714634390906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.551693915127225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.971739590887778, -3.157456768134226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6402726869436295, -7.0, -7.0, -7.0, -7.0, -2.88930170250631, -7.0, -7.0, -7.0, -7.0, -7.0, -3.762753564933374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2999172885064594, -7.0, -7.0, -7.0, -7.0, -7.0, -3.377943380255784, -7.0, -3.948070481518941, -3.693463127219531, -7.0, -7.0, -7.0, -7.0, -7.0, -3.416141031168329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5674185056727485, -7.0, -3.126780577012009, -7.0, -7.0, -7.0, -4.279963367458737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.830802448892219, -7.0, -3.854548935812951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.5741233283997955, -7.0, -3.773127924033335, -4.71651667687998, -7.0, -7.0, -7.0, -7.0, -3.501470072100412, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499508380406101, -7.0, -7.0, -7.0, -4.769894035812169, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7024994666070703, -3.963976609996606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.921134805306461, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.310023834437932, -7.0, -4.667667712106219, -4.764011652390399, -3.8698182079793284, -7.0, -7.0, -7.0, -5.234777883233506, -7.0, -7.0, -7.0, -4.660357872417049, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.689344382781724, -4.709395763745806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.896614390159009, -7.0, -7.0, -4.340121744752816, -7.0, -7.0, -5.045971979060437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.573538788190414, -7.0, -7.0, -3.222416302158394, -7.0, -7.0, -7.0, -3.7243578042264267, -7.0, -4.494245062612022, -3.5833121519830775, -7.0, -7.0, -7.0, -7.0, -3.6370892735303304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6986658917468582, -7.0, -7.0, -4.5933193025713, -4.792521258038025, -7.0, -7.0, -7.0, -7.0, -7.0, -3.419625360887743, -7.0, -7.0, -3.7666111098329864, -7.0, -7.0, -7.0, -3.114610984232173, -7.0, -7.0, -3.1610683854711747, -7.0, -7.0, -7.0, -3.495775529716882, -7.0, -7.0, -3.5043349118024643, -7.0, -7.0, -3.534819048547555, -7.0, -7.0, -7.0, -3.2659963704950794, -4.024495441072, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7824316703747614, -3.1091283841463793, -7.0, -3.5210508672197784, -7.0, -7.0, -7.0, -4.020775488193558, -7.0, -7.0, -7.0, -2.374748346010104, -7.0, -7.0, -7.0, -7.0, -7.0, -3.246537452532851, -7.0, -3.5503812467309923, -4.24188253033637, -7.0, -3.3984608496082234, -7.0, -7.0, -7.0, -7.0, -3.3369597851207042, -7.0, -7.0, -7.0, -7.0, -3.912947931581974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4807253789884878, -7.0, -7.0, -7.0, -2.832508912706236, -7.0, -7.0, -2.895422546039408, -7.0, -3.0334237554869494, -7.0, -4.098332167847684, -3.7402837196818792, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.494474629054753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1300119496719043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6122539060964374, -2.4258601450778405, -7.0, -7.0, -5.20444829373088, -3.7075701760979363, -7.0, -7.0, -4.193430723726846, -3.732608173296543, -2.7849737099544005, -7.0, -7.0, -7.0, -7.0, -3.6379497978642092, -7.0, -7.0, -7.0, -3.980660525073463, -7.0, -7.0, -7.0, -3.3005954838899636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4724638966069894, -7.0, -7.0, -7.0, -3.86224753566811, -7.0, -7.0, -3.3157604906657347, -3.079904467666721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5855949989428377, -7.0, -2.4195702718432215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.907020280620376, -7.0, -3.6711111049252425, -7.0, -7.0, -3.3873898263387296, -7.0, -7.0, -3.6239725120169965, -7.0, -7.0, -3.9489701484173123, -7.0, -7.0, -7.0, -7.0, -3.570367785823503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9996626521208603, -7.0, -3.7151255162874732, -7.0, -7.0, -7.0, -7.0, -3.3666097103924297, -7.0, -7.0, -3.846120529546089, -7.0, -7.0, -7.0, -3.492294657634319, -7.0, -1.7130801029688874, -1.6216305986921031, -2.9218944709291024, -3.422115420387915, -7.0, -7.0, -7.0, -7.0, -4.082336487091058, -7.0, -7.0, -7.0, -7.0, -7.0, -3.028571252692538, -7.0, -4.452775132369085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6570558528571038, -3.598702982683435, -2.982874001327729, -7.0, -2.574031267727719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4233687700792785, -3.72222246396973, -4.151706857022576, -3.6763277338813203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.239712300666562, -7.0, -7.0, -3.2615007731982804, -7.0, -7.0, -3.1541195255158465, -3.203032887014711, -7.0, -7.0, -7.0, -7.0, -3.207365037469072, -7.0, -3.989744321169322, -7.0, -7.0, -7.0, -7.0, -2.816241299991783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.906052065511861, -7.0, -3.6695957810243134, -3.274042330049831, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1866738674997452, -2.619823500457278, -7.0, -7.0, -7.0, -7.0, -2.9745116927373285, -7.0, -7.0, -3.029273068295503, -7.0, -3.4497868469857735, -7.0, -2.7103994661168005, -7.0, -7.0, -3.4344890631511897, -7.0, -7.0, -3.367169488534681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0941215958405612, -7.0, -5.411867082352383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3104808914626753, -1.8126348734772357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.219322508419337, -4.641107085692552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3730040047672736, -7.0, -3.4739976044348633, -3.5085297189712863, -7.0, -7.0, -7.0, -4.313339843884307, -2.81424759573192, -3.3020634079121143, -2.9867717342662448, -4.4092143375767625, -7.0, -7.0, -7.0, -3.686725621074542, -3.732956369575625, -3.353868165568988, -3.707995746422929, -2.627557866535542, -7.0, -2.9647309210536292, -7.0, -7.0, -3.443262987458695, -7.0, -7.0, -7.0, -3.1332194567324945, -7.0, -3.204662511748219, -7.0, -3.320146286111054, -7.0, -7.0, -7.0, -3.1781132523146316, -4.432619791621332, -2.932304613951781, -7.0, -3.9827007911139, -7.0, -2.400537989391946, -3.576341350205793, -7.0, -7.0, -3.4915017662373264, -7.0, -7.0, -7.0, -2.5630853728550487, -5.129373399173946, -3.0858849323421316, -7.0, -7.0, -7.0, -3.747567162737625, -3.606918525948291, -7.0, -7.0, -3.3932241163612975, -7.0, -2.82303928223169, -7.0, -3.0878701126902555, -7.0, -7.0, -7.0, -7.0, -4.078245298732825, -3.783331762887424, -4.920999961706768, -7.0, -7.0, -4.319251841140254, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7768464086952993, -7.0, -3.302114376956201, -7.0, -7.0, -3.3787611753163733, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4223298856764006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.180699201296035, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278970693925059, -7.0, -4.672605777753426, -4.922008825977601, -7.0, -7.0, -7.0, -7.0, -7.0, -4.229528263787672, -7.0, -7.0, -7.0, -7.0, -7.0, -4.472419996698072, -7.0, -7.0, -4.3210596292066805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.13569437848255, -7.0, -4.368184576507716, -4.764639332067447, -7.0, -3.6449307079135873, -4.326335860928752, -7.0, -4.059040586854335, -3.9876662649262746, -2.8746267516176824, -4.439569517147175, -4.117039167877679, -3.6793733792387515, -7.0, -3.9582611890127564, -3.5129510799724906, -7.0, -7.0, -7.0, -7.0, -7.0, -4.991128570067966, -4.341633748391168, -5.7063362205981605, -7.0, -7.0, -7.0, -4.477844476338758, -7.0, -7.0, -4.0726909550128685, -7.0, -7.0, -4.319564066092164, -7.0, -7.0, -7.0, -2.9091011725201548, -7.0, -4.1194318594918125, -4.184705623215826, -7.0, -3.6206267580510696, -7.0, -7.0, -4.870204856809119, -7.0, -2.8793253007848074, -4.3057596722628215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.865192838908103, -3.3346547668832414, -2.453347192030566, -7.0, -7.0, -3.561836516419704, -7.0, -7.0, -7.0, -3.737907923374639, -7.0, -3.9512750558456595, -3.300704152596124, -7.0, -7.0, -7.0, -7.0, -3.6535983818432896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7059064557003114, -7.0, -7.0, -7.0, -4.617010831199084, -4.787091911760731, -7.0, -7.0, -3.2317243833285163, -7.0, -2.968794159231461, -7.0, -7.0, -3.2060895755188294, -7.0, -7.0, -7.0, -3.167317334748176, -3.369679599559816, -7.0, -7.0, -7.0, -7.0, -3.245265839457461, -2.7752917999785107, -7.0, -7.0, -3.225309281725863, -3.198519630241168, -7.0, -3.3638938977741004, -7.0, -7.0, -7.0, -3.3038437748886547, -3.338126291801089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3083509485867255, -3.0154994673235294, -3.1370374547895126, -7.0, -3.182628608173459, -3.1373949534718495, -3.0024900412432993, -7.0, -3.261241234655554, -7.0, -7.0, -7.0, -3.7265642161622448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.749646150178696, -7.0, -7.0, -3.942888158023463, -7.0, -7.0, -7.0, -7.0, -7.0, -3.631950826259217, -2.750219025946535, -7.0, -7.0, -3.2237554536572413, -3.0644579892269186, -4.0920360389444586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.979548374704095, -7.0, -7.0, -7.0, -3.803013034258028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019628552674895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1809855807867304, -7.0, -7.0, -7.0, -7.0, -1.7862574846662123, -7.0, -2.6122539060964374, -7.0, -2.6871721045948, -7.0, -3.286231854028553, -4.429243421553872, -7.0, -7.0, -7.0, -3.745777217889759, -2.5197775266927613, -7.0, -3.2973227142053023, -7.0, -7.0, -7.0, -3.659402725922002, -7.0, -7.0, -3.0527708694748816, -3.590600369160912, -7.0, -7.0, -7.0, -3.189770956346874, -7.0, -7.0, -4.0267141585600665, -7.0, -7.0, -7.0, -7.0, -2.877227325148208, -3.2304489213782737, -7.0, -7.0, -3.2166935991697545, -7.0, -4.103097457319296, -7.0, -7.0, -7.0, -1.768131589884881, -2.7765397662270646, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8444771757456815, -7.0, -3.256862005896403, -3.257138370205915, -7.0, -2.8363241157067516, -2.7978443698196243, -7.0, -3.3392526340327, -7.0, -7.0, -7.0, -7.0, -4.466066475658547, -7.0, -7.0, -3.071391001621373, -7.0, -7.0, -2.8206119069993245, -7.0, -3.267406418752904, -4.350535513994461, -7.0, -7.0, -7.0, -7.0, -3.1527468640264606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6546577546495245, -7.0, -7.0, -3.461849389656668, -7.0, -4.059979716944162, -7.0, -7.0, -7.0, -7.0, -2.834802054048699, -2.9861444647105206, -7.0, -2.6596281299598568, -3.0155693064298794, -7.0, -7.0, -3.5407464642438433, -3.176958980586908, -7.0, -2.7950105586314464, -3.245594912768832, -3.697159570973576, -3.2884728005997825, -7.0, -7.0, -2.9136372740190546, -2.8332849777071742, -7.0, -7.0, -3.5020172148271476, -7.0, -2.945632686581686, -3.336059277866349, -2.945742053110066, -4.160055650114694, -7.0, -7.0, -7.0, -3.91912605397765, -7.0, -7.0, -3.4026052419199146, -7.0, -7.0, -2.7515703673593683, -3.600755149639618, -7.0, -3.1687920203141817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8491463155442887, -3.5819212275866295, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3794868137172736, -7.0, -7.0, -7.0, -7.0, -2.707144188342445, -3.95217469569546, -7.0, -7.0, -3.1649473726218416, -3.3995006613146104, -7.0, -7.0, -2.3479801568783407, -7.0, -2.6838186602633978, -3.4566696294237573, -2.851920499585014, -3.1319392952104246, -7.0, -3.1331292340592887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6714968222018745, -7.0, -3.825728957982647, -7.0, -3.4959603948817053, -3.6309514530353697, -7.0, -3.4602210786446816, -3.686725621074542, -7.0, -3.226471015317139, -7.0, -2.677454862198223, -2.526708418493159, -2.8180608567577408, -3.723044991643445, -7.0, -3.4500180391562068, -7.0, -3.9978230807457256, -0.830481425491196, -3.7594789799413166, -7.0, -2.34286491861272, -2.680335513414563, -1.8725535538998603, -2.132625565274591, -2.137553986107054, -7.0, -2.797959643737196, -2.7001043686887627, -3.0331555896976927, -7.0, -7.0, -7.0, -2.868216825331944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9834007381805385, -3.360072477970273, -7.0, -4.16301220977483, -4.2224110069938146, -7.0, -2.9508514588885464, -2.6778349886836756, -7.0, -7.0, -7.0, -3.1961761850399735, -2.7319109421168726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9626849566736677, -3.1835839736533478, -7.0, -7.0, -7.0, -7.0, -3.3102683666324477, -7.0, -7.0, -7.0, -3.0655797147284485, -7.0, -3.5475901217701526, -7.0, -7.0, -7.0, -7.0, -2.9370562715711874, -7.0, -3.546480969539267, -7.0, -2.8317202295593877, -7.0, -7.0, -7.0, -3.188807997012431, -3.8133808067338557, -3.403763761701065, -3.190261645023611, -3.898560644939712, -2.9339931638312424, -7.0, -7.0, -3.0863598306747484, -3.2870175013221017, -2.5236282431870687, -7.0, -7.0, -3.390758528738717, -7.0, -2.387066088357355, -7.0, -7.0, -3.9771746760201876, -3.376576957056512, -2.5282152823885995, -2.235360083082256, -5.135129469720565, -2.1468778968404774, -7.0, -3.1031834682108403, -7.0, -2.721398375521505, -3.2100508498751372, -7.0, -7.0, -7.0, -3.2495652118253466, -7.0, -2.9385197251764916, -3.5190400386483445, -5.528025997792825, -7.0, -7.0, -7.0, -7.0, -3.825555932290357, -7.0, -7.0, -3.295347148333618, -3.55303301620244, -7.0, -7.0, -7.0, -2.3948163583872386, -7.0, -2.8785217955012063, -7.0, -7.0, -4.084844278240215, -3.450214883607424, -4.553645538162373, -7.0, -3.8572721735640414, -3.5174062290248944, -2.841672250073634, -7.0, -2.862131379313037, -7.0, -7.0, -2.5691890378923947, -7.0, -7.0, -7.0, -7.0, -3.543074235033532, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6713447802948647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.913796197777649, -7.0, -7.0, -4.885971517631692, -7.0, -7.0, -7.0, -7.0, -7.0, -4.592409947570861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.137322456100344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.336859820916809, -7.0, -5.0697642673235235, -7.0, -7.0, -7.0, -7.0, -5.2379732962172065, -2.7316693318286362, -2.4340363540203143, -4.456593750244408, -4.189176714937135, -2.989574392477443, -7.0, -4.452629651622018, -3.8818409683249273, -3.1975562131535367, -7.0, -4.3908291687001455, -7.0, -7.0, -4.217782145093702, -4.586239786338633, -7.0, -7.0, -7.0, -3.252124552505644, -4.659212396143382, -7.0, -5.407062722441135, -7.0, -7.0, -7.0, -4.341869590349321, -7.0, -3.886596465825174, -7.0, -7.0, -7.0, -3.301160264469208, -7.0, -7.0, -3.7722287734114994, -4.960699043221426, -7.0, -3.2122264987691906, -7.0, -3.6897526961391565, -4.317415586331099, -4.01556930642988, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3068394648047046, -2.3961993470957363, -3.0964554363454075, -7.0, -7.0, -3.1567951515677546, -3.5338991007965945, -2.1699681739968923, -3.22219604630172, -3.2150424129289608, -7.0, -3.2124403056987485, -3.1049136848482157, -2.9894498176666917, -7.0, -7.0, -3.48826861549546, -3.748498126613737, -7.0, -7.0, -7.0, -7.0, -7.0, -3.446226401778163, -2.732393759822968, -7.0, -4.051654084113286, -7.0, -7.0, -4.607143935528615, -4.056513325012579, -4.493778599541865, -7.0, -7.0, -2.006902900435532, -7.0, -1.7844102063306588, -7.0, -2.8130803608679105, -2.8415911806891856, -7.0, -7.0, -7.0, -2.8068580295188172, -7.0, -7.0, -7.0, -2.8840397404753637, -7.0, -2.6765411988558334, -2.913120709844209, -4.221231613181412, -7.0, -2.533243945589153, -2.2445863372491552, -7.0, -4.175482820774772, -7.0, -7.0, -7.0, -2.713630525200522, -2.6405673372975262, -2.8877297972880305, -7.0, -7.0, -7.0, -7.0, -3.2755416884013093, -3.839603729470837, -7.0, -2.716559774821619, -3.086241154766945, -7.0, -7.0, -2.901942417287845, -2.8990042527308097, -1.5141347630240631, -7.0, -1.9647518554481722, -2.588271706842329, -3.205407384356316, -7.0, -3.3710678622717363, -7.0, -3.3941013020400446, -7.0, -7.0, -3.1541195255158465, -7.0, -7.0, -2.6283889300503116, -7.0, -3.9397313561662894, -7.0, -4.18974290024157, -3.7801612357769154, -7.0, -2.7299742856995555, -7.0, -2.113147211878742, -7.0, -2.688177041143745, -2.1999901215285598, -7.0, -7.0, -3.443106456737266, -2.396780343144799, -3.3702775172275845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7748088303107057, -3.265525335219074, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2340108175871793, -7.0, -4.140162229613637, -3.051602668541331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.909622879773425, -7.0, -7.0, -7.0, -7.0, -3.246867721899116, -7.0, -7.0, -7.0, -7.0, -3.438463235117634, -3.417803722639881, -7.0, -7.0, -7.0, -7.0, -3.0595634179012676, -2.1609934489716522, -2.4258601450778405, -2.6871721045948, -7.0, -7.0, -7.0, -4.2523189329416535, -3.770631127777807, -7.0, -7.0, -3.612836816232258, -2.737782385855657, -2.8269382114979367, -3.225309281725863, -7.0, -7.0, -7.0, -3.5073931999739076, -3.925415237084246, -7.0, -2.4703941552108724, -3.4932825782400987, -7.0, -7.0, -7.0, -2.8433885229380875, -2.473591229933489, -3.1869563354654122, -4.392966472124374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.775974331129369, -2.875928984922927, -3.8882294314791817, -7.0, -7.0, -3.4572761860613257, -7.0, -3.2295111961536325, -3.168202746842631, -2.970579305714851, -3.5913985512812485, -7.0, -3.0907869279492677, -3.148251520587879, -7.0, -2.203717671851886, -3.539828558377898, -7.0, -2.7671558660821804, -3.54082981411108, -2.9540011676815703, -7.0, -7.0, -7.0, -2.6281333875410833, -3.0416886941315635, -3.419850652422548, -7.0, -7.0, -2.810098040681143, -7.0, -7.0, -3.2218487496163566, -7.0, -3.531606631932722, -2.701139315206785, -7.0, -2.9966575799270623, -7.0, -7.0, -3.438384107034714, -2.8399491678129896, -2.6913762288033705, -7.0, -7.0, -7.0, -7.0, -3.624488362513449, -3.404833716619938, -7.0, -3.5692390146048285, -3.619927710291468, -3.5710874123044833, -7.0, -7.0, -7.0, -7.0, -3.4945719842301988, -3.356599435724971, -7.0, -4.171199716800422, -2.946943270697825, -7.0, -7.0, -3.7041076002448827, -7.0, -2.3418582954511553, -3.040602340114073, -2.4641562775552948, -3.244365490825935, -2.9132839017604186, -3.1513698502474603, -7.0, -7.0, -3.0349944424861803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7163651049900803, -3.9816525260860227, -3.212453961040276, -3.8829227906025987, -7.0, -4.29807545181653, -7.0, -3.5441921107650325, -3.6769678142947586, -7.0, -2.754093393242939, -2.9918797685613647, -2.4172343738083697, -7.0, -2.5903215880567183, -4.079976723632598, -7.0, -7.0, -7.0, -2.25699248549758, -7.0, -7.0, -3.1808424146466825, -3.6982165740723576, -3.266310110427021, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6473585159080253, -7.0, -7.0, -2.718501688867274, -3.042181594515766, -7.0, -7.0, -3.0775495804517936, -7.0, -3.1885066338181143, -7.0, -3.916559219301114, -7.0, -7.0, -2.928682494549992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2590201740708116, -7.0, -3.9952621553308805, -7.0, -7.0, -3.3130346319553867, -7.0, -3.4367985102318035, -3.357553719743082, -3.344981413927258, -3.4868553552769432, -7.0, -3.1072099696478683, -7.0, -3.368100851709351, -2.654264074777965, -7.0, -7.0, -7.0, -7.0, -2.951175559263217, -4.054823640146561, -7.0, -2.3557126765908625, -7.0, -2.6605266883136225, -2.509202522331103, -2.1077750894177876, -2.8573324964312685, -2.498861688992884, -2.890979596989689, -2.8652520716525895, -7.0, -3.494988973683168, -7.0, -3.1947917577219247, -7.0, -7.0, -3.1604685311190375, -2.78354628227035, -7.0, -7.0, -2.6173498739219823, -2.909020854211156, -3.9478256844424506, -3.655810494495252, -3.3754197310501364, -4.86846054001897, -7.0, -7.0, -2.904715545278681, -2.8305886686851442, -7.0, -3.1061908972634154, -3.152135396861876, -2.3355490719885337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.255415276870857, -7.0, -7.0, -7.0, -7.0, -2.636989101812229, -2.5224442335063197, -7.0, -3.2420442393695508, -3.4407517004791854, -2.932980821923198, -2.394970241463233, -3.860278099752235, -7.0, -7.0, -7.0, -3.484503208342262, -2.4375920322539613, -2.124888234313702, -7.0, -3.9387198147823823, -2.9696488404807253, -2.6646419755561257, -7.0, -2.5425349705996863, -3.7926717891415676, -2.6292322636646066, -2.866877814337499, -3.8816128724783483, -3.357553719743082, -3.2352758766870524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5327543789924976, -7.0, -2.8574832669524506, -3.4857687326721285, -2.8394780473741985, -2.9323469078099147, -2.662001879389917, -4.833127979575862, -3.2307553740419857, -7.0, -3.699230502883409, -7.0, -7.0, -2.8805277781988052, -3.413467412985825, -3.6870828446043706, -3.2895889525425965, -3.833083334178343, -7.0, -3.305673745669693, -2.432969290874406, -4.714903366650505, -3.00566303219259, -7.0, -7.0, -7.0, -3.3280396468797715, -3.383815365980431, -7.0, -7.0, -2.9116901587538613, -7.0, -2.329006517271025, -7.0, -3.7558748556724915, -7.0, -3.2942457161381182, -7.0, -7.0, -3.2697284215142757, -2.9672532160042393, -3.6349634466665375, -7.0, -7.0, -3.9075188461066293, -2.919470349950749, -7.0, -7.0, -7.0, -7.0, -3.2287210842783987, -3.1727488389827436, -7.0, -7.0, -7.0, -3.2023520678097515, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9318056808578947, -3.0409976924234905, -7.0, -3.4264136561316882, -7.0, -7.0, -7.0, -7.0, -3.9084135241905464, -3.9159272116971158, -4.297147471801269, -2.724270179122184, -3.7061628278930594, -3.1902382914634244, -7.0, -7.0, -5.000742009326735, -3.3098766010711036, -7.0, -4.378851946448881, -4.0229693555731405, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8415972035066765, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8760662153210648, -3.576341350205793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.46304147484323, -7.0, -3.1893135196884166, -7.0, -4.19942604159399, -5.068642187918206, -7.0, -3.4158077276355434, -3.6432354749403233, -7.0, -3.9583677010595633, -7.0, -2.87989832433001, -4.150909873701122, -3.8866692944119765, -3.8415114201192337, -7.0, -4.146902869928199, -3.8642143304613294, -7.0, -7.0, -7.0, -7.0, -7.0, -4.51750819605495, -4.057485779478209, -5.707016310494369, -7.0, -7.0, -7.0, -4.481667123172043, -7.0, -7.0, -3.0210858833099774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2314695904306814, -7.0, -3.043891449779881, -4.496929648073215, -7.0, -3.5487971072480162, -7.0, -7.0, -4.445769561712997, -7.0, -3.0593740590659575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0803522609890255, -2.8680563618230415, -2.5986810989071634, -7.0, -7.0, -2.0109093174202606, -2.793511005792858, -7.0, -3.1351326513767748, -2.7542092947359547, -3.0884904701823963, -3.439922795914063, -3.379668034033654, -3.2177470732627937, -7.0, -3.8469862125758914, -7.0, -3.246908718215935, -7.0, -7.0, -3.8243211248507714, -7.0, -7.0, -2.6164755138885654, -3.605412798153051, -7.0, -2.590507462008583, -7.0, -7.0, -3.7006388276638265, -3.8180452184344693, -3.9475247447286654, -7.0, -3.5374412834079476, -2.7130236099429497, -7.0, -2.7089062809976463, -7.0, -7.0, -2.868032822188796, -7.0, -2.4202858849419178, -7.0, -3.3554515201265174, -3.4379090355394983, -7.0, -2.9048957878552057, -2.8226038992559745, -7.0, -3.4075608494863623, -2.521644156181464, -7.0, -7.0, -7.0, -2.9947569445876283, -7.0, -2.620522715839948, -7.0, -7.0, -3.932220013877119, -3.1473671077937864, -2.8069966367379076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.82013575187043, -7.0, -3.15060295179301, -3.067876424980735, -7.0, -7.0, -2.9926166282706546, -2.4822997524547086, -2.0744507189545915, -3.475235222604128, -2.4360160992135165, -7.0, -3.7868933252613157, -7.0, -2.853736226085963, -3.420698202908807, -3.337459261290656, -3.004536317851323, -7.0, -7.0, -7.0, -7.0, -2.9609461957338317, -3.0684332525144025, -2.2545353570538538, -7.0, -2.976177969832669, -2.9410263770393295, -2.874895786353347, -3.0624566286256467, -7.0, -2.913460623830773, -7.0, -3.7060346607143506, -2.341269613058443, -7.0, -7.0, -7.0, -2.8135809885681917, -2.837451932032312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.243719975783927, -7.0, -7.0, -7.0, -3.2161659022859928, -7.0, -7.0, -7.0, -7.0, -3.193820026016113, -7.0, -4.130526745384164, -3.8105013477665297, -7.0, -7.0, -7.0, -7.0, -3.1997551772534747, -7.0, -4.030518764843543, -7.0, -7.0, -3.6060587494103142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0629578340845103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8724211672254916, -4.9034318593018815, -7.0, -7.0, -7.0, -2.8915374576725643, -3.5108398014493605, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4338498071286465, -3.5814945422908995, -7.0, -7.0, -4.0402660074460846, -2.7363965022766426, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7513738660351916, -7.0, -7.0, -7.0, -7.0, -2.807083812982132, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1410796030609935, -7.0, -2.3026555539507187, -3.31722734917642, -7.0, -3.1562461903973444, -2.2285286773571817, -7.0, -7.0, -7.0, -7.0, -3.351388266557641, -7.0, -7.0, -3.7884512070234555, -7.0, -7.0, -3.4287825114969546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1484638311172795, -7.0, -7.0, -7.0, -7.0, -3.4254527011208484, -3.02201573981772, -7.0, -3.4168068718229443, -4.34699155667835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.53198955141255, -7.0, -7.0, -3.3433318497708067, -3.227372442289636, -3.414221033214868, -7.0, -7.0, -3.41077723337721, -3.232487866352986, -1.9790549228951424, -2.367355921026019, -7.0, -3.301959631014103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5984439539568314, -7.0, -7.0, -7.0, -7.0, -3.480186663415707, -7.0, -7.0, -2.6182573448404014, -2.9320930828571, -2.7198489822195464, -7.0, -4.171053287559376, -3.5775683882303175, -7.0, -7.0, -7.0, -4.516473673696325, -7.0, -7.0, -7.0, -7.0, -7.0, -4.298001111407518, -3.4616485680634552, -7.0, -7.0, -3.889339059564688, -7.0, -7.0, -7.0, -7.0, -7.0, -4.025960909856379, -7.0, -2.895606686165933, -3.6769678142947586, -7.0, -3.874713688757779, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.841784795614428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2477278329097232, -3.5717088318086874, -7.0, -7.0, -4.452211314447793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9775635725771523, -7.0, -3.4127124827451016, -3.906065544755237, -7.0, -7.0, -3.57611089412084, -7.0, -7.0, -7.0, -2.946943270697825, -7.0, -3.188647295999717, -3.6224212739756703, -7.0, -7.0, -7.0, -3.9472866446777983, -3.2776092143040914, -4.039433949521653, -7.0, -7.0, -7.0, -3.7515100502700416, -7.0, -7.0, -7.0, -2.9003671286564705, -2.8901814080462, -3.0308020487722676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6599162000698504, -2.6190933306267428, -3.6061663146076204, -7.0, -3.4298814190107647, -4.4118426875430234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.641141817541527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6748611407378116, -7.0, -3.7756832490260437, -3.8101652845431495, -7.0, -7.0, -7.0, -7.0, -7.0, -4.231953569198981, -7.0, -4.108209731084804, -7.0, -7.0, -7.0, -3.1425235421112268, -2.887456539837175, -7.0, -3.4073909044707316, -7.0, -2.8709888137605755, -7.0, -7.0, -3.1300119496719043, -2.966610986681934, -2.811909980420099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.321598430465344, -3.9240207004740677, -7.0, -7.0, -7.0, -4.654503824567048, -2.630653834698125, -7.0, -3.6817385815870307, -7.0, -7.0, -3.275886960301226, -3.2555137128195333, -7.0, -7.0, -2.8754230247469814, -3.26528962586083, -3.2112540676178725, -7.0, -4.983247297962127, -3.865044721693099, -7.0, -7.0, -7.0, -3.7481104674949837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.786751422145561, -2.668851648082519, -2.7697464671794534, -7.0, -7.0, -4.379353870742188, -3.2712516660130433, -5.2731923196083965, -7.0, -3.484584529282843, -3.9390114469771156, -3.166133970305109, -7.0, -7.0, -2.741151598851785, -3.047145014047316, -2.629336773667501, -3.7134905430939424, -3.30362797638389, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.63558426631123, -7.0, -3.7236198355154633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.800166990201364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.311880953037904, -7.0, -4.192139824255448, -7.0, -7.0, -3.3443922736851106, -4.326479236380961, -7.0, -4.4570437728006915, -7.0, -7.0, -7.0, -4.661187760411323, -3.9805578230230227, -7.0, -3.6572471298837166, -3.814580516010319, -7.0, -7.0, -7.0, -7.0, -7.0, -4.389073011288796, -4.2090039452634525, -5.405310494817033, -7.0, -3.6787914343662442, -7.0, -4.477878197285531, -7.0, -5.405199464216897, -7.0, -7.0, -7.0, -7.0, -4.4306071113013985, -7.0, -7.0, -3.7341061109103197, -3.797821311364024, -7.0, -7.0, -2.9818186071706636, -3.451419954806697, -4.654431651055449, -7.0, -4.7452758796054475, -7.0, -7.0, -3.9078304032196507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.689146005168144, -7.0, -3.8797264966395772, -7.0, -7.0, -4.340325113748292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6027109449575576, -7.0, -3.3085644135612386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5106790310322102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4243915544102776, -3.329092647195331, -7.0, -7.0, -7.0, -7.0, -3.548978724921236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2105860249051563, -7.0, -7.0, -7.0, -3.6799726942774185, -7.0, -7.0, -3.52750101098112, -2.897901874268228, -7.0, -4.142577160920535, -7.0, -7.0, -7.0, -7.0, -3.949101031499502, -7.0, -3.5814945422908995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3098430047160705, -7.0, -7.0, -7.0, -3.484442207642407, -4.0273190225793565, -7.0, -7.0, -4.002144454528368, -3.447158031342219, -3.726890140741822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0508435809569185, -7.0, -4.157940055964767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.331427296520743, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9160326101885694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7942788657214, -7.0, -3.276921132065774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.286231854028553, -7.0, -1.8724211672254916, -7.0, -4.506239774721532, -7.0, -7.0, -7.0, -2.2521355991800753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1961761850399735, -3.898396045930009, -7.0, -3.2076343673889616, -3.5896576010978456, -3.137986732723532, -7.0, -7.0, -3.3592661646067485, -3.2005769267548483, -7.0, -4.088915346604906, -3.137986732723532, -7.0, -7.0, -7.0, -3.0429690733931802, -2.9489017609702137, -3.512817758564873, -7.0, -7.0, -2.998695158311656, -3.9114709525356064, -7.0, -7.0, -3.3725438007590705, -2.6951897138022916, -3.3601198615808054, -7.0, -3.1344958558346736, -7.0, -7.0, -7.0, -2.7778079684909334, -3.475235222604128, -3.313023110323238, -3.807940721215499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4538532325881866, -7.0, -7.0, -3.4360035356698964, -7.0, -7.0, -3.0501863496753607, -7.0, -7.0, -4.17179793657363, -7.0, -3.091842749738098, -7.0, -7.0, -3.8880671134074367, -7.0, -7.0, -7.0, -7.0, -3.0824263008607717, -7.0, -1.9252401149535792, -7.0, -7.0, -2.7351867426264027, -2.6587266773270137, -3.1245042248342823, -7.0, -7.0, -2.852937225981498, -3.2988530764097064, -1.994114021477017, -1.4673614174305063, -7.0, -2.739572344450092, -7.0, -7.0, -7.0, -3.5055569386638217, -7.0, -7.0, -7.0, -3.6506959797606107, -2.9337583661184787, -7.0, -7.0, -2.701280086814093, -3.218010042984363, -3.68945093632515, -7.0, -7.0, -2.6735737964230517, -2.361609805175202, -2.0212877673805068, -7.0, -3.1787180191057685, -2.9289458629313847, -7.0, -3.5518767631329724, -3.0674428427763805, -4.091702121717148, -3.1815577738627865, -3.4761067168401913, -3.6278776945799716, -7.0, -7.0, -3.400732212870903, -3.5020172148271476, -7.0, -7.0, -4.371769558513179, -7.0, -7.0, -7.0, -7.0, -7.0, -3.338057875419756, -3.7453871213200087, -2.1959908364698766, -3.7019994748896368, -7.0, -3.890756251918218, -7.0, -7.0, -3.2000292665537704, -7.0, -3.3619166186686433, -7.0, -7.0, -7.0, -3.1635837317044717, -7.0, -7.0, -7.0, -3.229937685907934, -7.0, -3.2342641243787895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.771285782722611, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3310221710418286, -7.0, -7.0, -7.0, -7.0, -3.385033216560905, -7.0, -3.6956567599361905, -3.3062105081677613, -7.0, -7.0, -7.0, -3.3126004392612596, -7.0, -3.2615007731982804, -2.746244871720198, -7.0, -7.0, -7.0, -7.0, -3.3378584290410944, -4.346059433052574, -7.0, -4.08192310435106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.456973013635818, -7.0, -7.0, -2.940184328524863, -7.0, -3.8651039746411278, -7.0, -7.0, -2.972665592266111, -7.0, -7.0, -7.0, -7.0, -3.04766419460156, -2.64157847058676, -3.3028718360676903, -3.4388902778168413, -5.111076755903269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0665122778565954, -7.0, -3.270911639410481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.289142835932333, -4.165377888987069, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0927206446840994, -7.0, -7.0, -7.0, -2.347850206404031, -3.296445794206396, -7.0, -7.0, -3.8421930493708496, -7.0, -4.536583691516737, -7.0, -7.0, -7.0, -7.0, -7.0, -3.699447465710474, -2.040307529721854, -3.270539094260548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.486288760960566, -3.4596939764779706, -7.0, -7.0, -7.0, -7.0, -3.27669152884504, -7.0, -2.7732377468893765, -3.159717546180216, -7.0, -7.0, -7.0, -4.530462245283984, -1.8459914205954857, -2.904715545278681, -7.0, -2.8656960599160706, -7.0, -7.0, -7.0, -3.663795122219408, -3.228913405994688, -3.4982416126858915, -7.0, -7.0, -7.0, -4.506289796825186, -3.58029758843657, -7.0, -7.0, -7.0, -2.3858296186697827, -2.937116510767054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.852204993164218, -7.0, -3.1646502159342966, -3.638389407665336, -7.0, -4.858200217962495, -3.1859845811695098, -5.030313991627524, -7.0, -2.90132207214577, -4.718418641829656, -2.8849368971038603, -7.0, -7.0, -7.0, -2.780557320149522, -2.9514069115390393, -3.4353665066126613, -7.0, -7.0, -7.0, -3.1269427179442277, -7.0, -7.0, -7.0, -3.6630409748939745, -7.0, -3.073677626966478, -7.0, -7.0, -7.0, -7.0, -7.0, -3.642662331442035, -7.0, -3.8992366751075775, -7.0, -4.592598628906131, -4.404223451969429, -3.985022082109535, -7.0, -7.0, -4.720349524086064, -4.521395270332305, -7.0, -7.0, -7.0, -4.92350824633259, -4.0385804259615785, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2072976788831435, -7.0, -4.659906696804346, -7.0, -7.0, -4.474529484366441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4553778768849766, -3.712256751122368, -4.138744663948892, -7.0, -7.0, -4.765716972542505, -3.895809150169131, -3.194976603216055, -3.8550141033002596, -2.782293422809544, -3.855604956189789, -7.0, -7.0, -4.4441072798376, -3.5483516147701626, -3.037924256713626, -7.0, -3.209073241435683, -3.054166019538618, -7.0, -7.0, -7.0, -7.0, -7.0, -4.089255832753279, -3.944042514505542, -7.0, -7.0, -7.0, -7.0, -4.479234496909399, -7.0, -4.8036107303933635, -4.083180004129977, -7.0, -7.0, -4.325536187192074, -7.0, -3.7839035792727347, -7.0, -3.3153404766272883, -3.515741416669365, -4.4220807309448755, -3.7115541682501694, -3.09377178149873, -2.76401274186685, -4.354737326259845, -3.2777237887624535, -5.046863748480282, -7.0, -7.0, -3.0070112422218074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.902341063964813, -7.0, -3.1883096301940044, -7.0, -7.0, -4.0448140475286385, -7.0, -3.3394514413064407, -2.932980821923198, -3.760271660542063, -7.0, -4.099432007131712, -3.1547282074401557, -7.0, -7.0, -4.132099521916504, -7.0, -3.203123582322945, -7.0, -7.0, -3.7899330809317506, -7.0, -7.0, -7.0, -2.4300005901760695, -7.0, -4.019199401055288, -7.0, -7.0, -7.0, -3.9489366538703976, -4.789136320068675, -7.0, -7.0, -3.246203041837881, -7.0, -7.0, -7.0, -7.0, -3.4096191784089713, -7.0, -7.0, -7.0, -3.245265839457461, -7.0, -7.0, -7.0, -3.173186268412274, -7.0, -3.00987563371216, -3.3913762391696496, -7.0, -7.0, -3.261143867700667, -3.236537261488694, -7.0, -7.0, -7.0, -7.0, -3.9056340013269546, -7.0, -3.576606809002626, -3.485437481076301, -7.0, -2.9506082247842307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5128844243846222, -7.0, -7.0, -3.504062882678692, -3.2338790396440125, -7.0, -7.0, -4.309268104477122, -7.0, -7.0, -7.0, -3.562015144502433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.054459837239404, -7.0, -7.0, -4.07141556509424, -7.0, -3.1699681739968923, -7.0, -3.2909245593827543, -7.0, -3.66029616027073, -7.0, -7.0, -7.0, -3.292920299600006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3372595397502756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02360907957383, -3.0906107078284064, -3.077731179652392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.090713737503893, -7.0, -5.203921790582551, -4.902956963936665, -5.20444829373088, -4.429243421553872, -4.2523189329416535, -4.9034318593018815, -4.506239774721532, -7.0, -3.544292393875673, -7.0, -4.903410161122643, -3.0331903612722177, -2.897545365515436, -3.674623431655849, -4.506375130517445, -7.0, -7.0, -7.0, -2.7813158040856756, -3.506973106258592, -5.203766974960574, -3.2279105473700067, -1.9301914949867172, -4.36078268987328, -3.824451270036613, -5.20390278111006, -3.3271572027970855, -3.808418952199765, -4.163535418640821, -2.1209033854240165, -3.8440663777932302, -4.359108792853317, -5.2042773858780045, -4.204971450346999, -3.63977176138187, -4.09059172601141, -3.161162037916258, -4.726871135191101, -3.8285712888450414, -4.90385746681675, -2.323634080004334, -3.8063590835188696, -4.5061558329372735, -4.363434680652326, -4.206180699019942, -3.1383345474722515, -4.30167823901002, -4.029716474028271, -3.910210721165163, -3.649851182496973, -3.8094223346541747, -1.5602144349254363, -1.811998408129183, -2.7131861538560007, -3.326860815038242, -4.7279124987113805, -3.843733671089443, -3.285471577480692, -4.164247379186236, -4.205861805968412, -4.0919346742141665, -4.903231109767353, -4.3023065720047935, -3.162881648182516, -3.1236501138139117, -3.824028155508092, -7.0, -3.295312267721071, -5.203967952980513, -3.371756379183961, -3.387846514512132, -3.6130038000973417, -4.130759811444055, -2.391440502375696, -5.204201405238153, -3.136363119800208, -7.0, -7.0, -2.5810034007407334, -3.9777800733459263, -3.757515324077912, -4.902810319891709, -2.750820065686126, -3.648974961461483, -2.9500999337839797, -3.6098984156416383, -3.211525040366984, -4.165883436770777, -2.1393966074651254, -3.471398404213118, -2.952917948726597, -4.602065419975057, -7.0, -4.06370588053735, -3.436410636647131, -3.596256391478613, -3.3866347071139713, -4.505491850629844, -3.2946615846709246, -5.205615719952685, -4.504968079417868, -4.2496303979613295, -2.098553612524514, -4.204016825466072, -3.3395749783523323, -3.9762312662322707, -2.830921268729203, -2.003927878459433, -4.302130622081864, -4.02848720505384, -3.44255004631423, -4.206615421510249, -2.737610329426487, -3.649329448931539, -7.0, -3.564902672529205, -3.4410184153526147, -3.428615365459734, -3.498026608384322, -2.8406183683153254, -2.5345878810965172, -5.205234146214356, -3.6412209331126, -4.427177644001561, -2.7418512752940463, -3.137492068939977, -3.5665847855598543, -3.123051817937765, -5.2042502514611515, -4.728307779546336, -2.3524341039128713, -3.462277641003384, -7.0, -4.601913392200325, -2.7762914362240805, -7.0, -7.0, -5.203948945528531, -7.0, -7.0, -3.385473488379908, -3.6606072689262064, -2.8056237289922086, -3.4519689627723857, -4.603406927683195, -3.2011525290622598, -4.902989544778925, -4.727424670452742, -3.4280132393845557, -3.3291766074285367, -3.7433451092571, -7.0, -3.925843843077551, -4.001330700440545, -2.510585490654225, -4.601916107448749, -7.0, -3.977376568911182, -4.165341466825498, -4.602211967802297, -3.8642979806968483, -3.792184191580062, -4.063285095369489, -3.527670171118658, -3.906607064180874, -3.3591022499491756, -3.627352379022576, -4.125879592893269, -1.9437381050109197, -3.571177790153091, -5.203932652764692, -7.0, -4.16418245777542, -3.903616250068696, -4.3014478030652405, -4.726887425714068, -2.736238137552537, -4.505749433669425, -3.4126163507626406, -5.204014110472264, -3.1055471500473315, -1.4865801018867653, -3.7142729607632785, -3.0215603323961395, -3.082040302705653, -3.638410998646127, -3.4928302056786884, -3.845276037295602, -3.928896920921119, -4.030235296012245, -3.8090638646411574, -3.2894933946966205, -3.53268662951388, -3.6467586263847607, -7.0, -3.161360256128763, -4.429900248574898, -3.197568194186736, -7.0, -2.7381857702399692, -7.0, -2.9970677926694376, -3.727934167254398, -3.675495295123093, -3.7896132504920685, -4.205060838940893, -3.0995752157529437, -3.3571265672692596, -7.0, -3.0946269833383124, -2.2024603224747716, -2.724548052819, -7.0, -4.726770663461099, -4.301607765700107, -4.162664863178352, -4.3592661646067485, -4.72783935939594, -5.204193263666834, -4.360084662821042, -2.742829137742972, -3.2347809450498164, -2.721939123715305, -2.3822341420260598, -7.0, -4.602762437131735, -4.091163528124366, -4.6042503599312194, -4.601880807895053, -7.0, -3.6285153007690827, -3.8647806784858236, -4.90620570409175, -7.0, -5.203783273940963, -4.903244676848627, -4.426400098114251, -4.4256564708810275, -4.7270910057095, -3.62747366209953, -1.9912386295516902, -7.0, -4.726835836961581, -7.0, -4.727402976473511, -3.926678139475995, -3.7427982432584783, -5.203813153816388, -3.7740409138827307, -3.1856930439264346, -3.057809027363004, -3.8763595721890662, -2.6270794892290175, -4.207497029999842, -4.505133691971464, -7.0, -2.347039444540915, -3.3505575797661513, -2.8529254216064333, -4.427423892550001, -2.3695233431351217, -3.883545175194561, -4.359450596829359, -4.4265193941438925, -3.148867325157049, -3.2257047780485264, -3.0385943597739256, -2.970209473041643, -3.5306909461351617, -3.7297046213121874, -3.974936811989041, -4.249967037217522, -3.516152079177331, -2.8235547271190224, -3.3707570624663736, -5.203731658404463, -4.204616423121799, -3.7441040596897293, -4.505584055799225, -3.4076336627117665, -4.726751652680992, -3.3569867783872587, -2.8419588750133014, -3.6151701184636975, -3.5970768472929735, -3.5255576630059604, -2.0820854933794593, -3.319980017164956, -4.6022906490084505, -2.9332925631528446, -4.426001303137032, -3.2461873390876783, -3.4968365445930845, -3.4151053405015874, -2.41373889291492, -3.04028151976861, -2.982605136861189, -3.4672824476181416, -3.655231838648391, -3.6405324674013486, -1.6382611162285612, -2.735142095153427, -7.0, -7.0, -7.0, -3.3424779511482297, -3.1879780800921296, -4.6027976651019955, -4.2052937046204155, -3.6909635414210205, -4.204559483359148, -3.135868120615886, -4.125649312197302, -3.370650527907993, -5.205488565953269, -4.2518625412293325, -2.720876530902644, -4.603412339519877, -2.7437697389633215, -2.956061921646337, -2.2555795436938713, -4.506521267409151, -2.626150781218194, -2.2798193139542193, -3.09737827210023, -7.0, -4.302793446245299, -4.903412873454334, -3.1394628347923637, -3.289092947357841, -3.2034237103517693, -3.4087190190682533, -4.358935075058239, -7.0, -3.460948825893139, -5.204638112496441, -4.059165668942177, -4.001398346081105, -3.305645895440672, -4.5058144831135785, -2.0227185065721027, -4.601715133199268, -4.902905372603798, -2.419594993091023, -2.528231814320313, -2.8993636396151685, -4.368865735415223, -2.169999038533825, -2.408622637362252, -3.523543575296752, -2.536932840085164, -2.366764563371726, -3.3885567971144153, -4.213291918281081, -3.2807526808187015, -2.2392673332458615, -2.0688106133725332, -2.704124039236082, -3.068961297505777, -2.581341392791031, -2.415454189586277, -3.090424194174312, -3.3517842322607008, -3.4800948155844096, -1.8799368743581009, -2.3457069458605324, -2.727570543332238, -3.3783322773448266, -2.7890510200852203, -2.73148245387053, -3.043110966748345, -3.82833491324989, -2.687256167541895, -3.2143839279787567, -1.9673058820223024, -2.899413095561151, -3.05207305990422, -4.093887520508484, -3.140411729722199, -3.3358276770370354, -2.7937927043611674, -3.124519158023724, -3.1141125249955577, -4.251592260928416, -2.695688893192003, -1.3727607434870837, -3.09532291400805, -3.601826892720257, -2.9359963484480627, -4.606679571415898, -2.2745287875181255, -3.3590428498964116, -3.932217342027368, -2.753333878586034, -2.5149218317456623, -2.914332661311729, -4.4288526229295515, -3.0010773939545063, -4.178911575955362, -7.0, -4.617210094557434, -3.317723909793547, -3.800016123199396, -5.205902356214027, -1.4218568548007218, -1.8792359176358457, -1.8493349356858948, -7.0, -4.101744430958274, -5.2048359780172, -2.7962063793826166, -3.320687797220125, -2.2394401715727943, -2.577545294261374, -3.2718514891065444, -7.0, -2.5497663234514962, -3.3727419230221223, -2.6416882303329805, -3.912323043506921, -3.676733145302988, -4.178265177719533, -1.929307150190183, -2.8978606679033883, -7.0, -2.5813718616043118, -2.9282686696920193, -4.610327395866563, -2.0426176388850696, -5.204903719464446, -4.3680476847285785, -2.689705825691564, -3.3721825624561594, -4.602282510234337, -7.0, -7.0, -4.903165981876918, -3.4380436918998125, -2.61519069651607, -3.595813344772756, -2.714369682021485, -4.426272632057094, -3.243544879306084, -2.6864680842729807, -3.866700756042499, -3.8462537204442393, -4.602437120867181, -3.0495186327171995, -5.204136268393641, -2.3263950637972677, -3.1267167672610237, -4.4271099688460005, -3.595455892992471, -2.40236142856909, -3.8657848031269304, -3.026726887267514, -4.164517780650602, -4.426966462630075, -2.605872556477404, -4.506239774721532, -4.205504800451809, -4.093548291027968, -3.440522194608935, -7.0, -3.121923860479097, -4.425941588018896, -5.204366917427087, -2.638741521002334, -1.6682477198295125, -2.262693712352328, -7.0, -3.4104505028495264, -2.9235341423585184, -4.728781101494365, -3.384085811808576, -7.0, -3.6157828483192556, -2.764291683647891, -7.0, -5.2044021823641895, -3.828839741403645, -3.70163543360813, -3.1214698267373375, -4.163651902679467, -4.128108349103107, -3.844379916604807, -3.883012144086084, -3.5353857052762576, -3.0152362915297055, -3.0578897480168896, -7.0, -3.1986437435491863, -3.3477816552152717, -4.2538439565439745, -3.238693296822902, -4.603019806464783, -4.903366761511649, -3.007896027561071, -3.9778795468239343, -1.8005233458116274, -3.2055848656934796, -4.037046490078626, -3.458543426918113, -4.091266426750714, -2.8858714298613544, -4.125863341790067, -3.3316165762659744, -4.505838874143429, -3.536125759194601, -2.6967220860533225, -4.252399899119838, -4.902832048060113, -2.825265766924533, -2.186162785636252, -3.4975250381729923, -3.7316129367486814, -2.746423205073747, -3.7479579825589826, -3.324725548379901, -4.303352677683149, -2.7717052452427855, -3.63499934000661, -3.7594007119061725, -4.905258749576383, -7.0, -5.203856611783906, -3.0195483874768687, -4.210364007315791, -4.12653184328548, -3.8677727313159287, -2.453241420511788, -3.207844328838135, -2.515994425243755, -2.543278923231109, -3.6707016495286346, -3.3232815728385168, -4.426990834952875, -3.7021611731162283, -7.0, -3.259763720056213, -3.333876636650032, -2.9336224223562404, -7.0, -3.5082683903483165, -4.164669131964212, -2.6465741881944087, -4.029456830425565, -4.727698463777806, -7.0, -4.726784242080268, -7.0, -5.204084694795681, -4.903345060079677, -3.433932386948738, -3.976705922742223, -3.9775353253878825, -4.602911459019037, -7.0, -4.125188384168597, -4.00061029760018, -4.1263181429721, -4.904068760153015, -3.0879883443610066, -3.516654072656089, -2.6793469026880157, -3.510292623460062, -4.13552752600499, -4.0913747147621224, -7.0, -3.2336372538662697, -3.561421238043235, -7.0, -2.531785552707462, -3.862992822376717, -3.9265807069892746, -3.5487017862716375, -4.209871418668929, -3.746993680946003, -4.204152553520675, -4.125112419666765, -3.3052304166418587, -4.601967693943614, -3.6124924639062823, -3.4509024629823473, -4.3607205081851985, -5.203764258404371, -7.0, -7.0, -7.0, -7.0, -3.7075701760979363, -7.0, -3.770631127777807, -7.0, -7.0, -3.544292393875673, -7.0, -7.0, -3.707485011967474, -2.569958818096594, -2.97409281299623, -7.0, -7.0, -7.0, -7.0, -3.69539410829111, -3.215125121509055, -3.7845816348076653, -7.0, -3.3571722577230334, -3.232186318508937, -7.0, -7.0, -7.0, -7.0, -3.466274321789292, -7.0, -4.192573028326205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.876448786878341, -7.0, -7.0, -7.0, -2.952822892498763, -7.0, -7.0, -7.0, -7.0, -3.6459132750338443, -7.0, -7.0, -7.0, -3.4622482153549976, -3.7942091163464964, -3.0015453793164784, -7.0, -3.2512905066731097, -3.3298045221640695, -3.7259116322950483, -7.0, -3.859318465097116, -7.0, -7.0, -7.0, -7.0, -3.4363217001397333, -3.9121157290788537, -3.171593499578443, -7.0, -7.0, -7.0, -7.0, -2.8173449714419307, -7.0, -7.0, -2.853819845856763, -2.652091427213589, -7.0, -7.0, -7.0, -7.0, -4.0790002523038495, -2.9691495557176637, -7.0, -7.0, -7.0, -7.0, -7.0, -2.997659371069136, -7.0, -7.0, -2.638726900999912, -3.1204093945560682, -2.872127124489488, -7.0, -7.0, -2.7721994219179718, -7.0, -3.360340916766332, -3.317070422532652, -3.4074758852912557, -1.7901067466271179, -3.7428036584691657, -7.0, -7.0, -4.1423894661188365, -7.0, -7.0, -7.0, -3.941561120236071, -3.753613695870938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8217099972983766, -3.901785145303599, -2.9874676395023214, -7.0, -2.92454895044925, -2.651911942666843, -7.0, -7.0, -7.0, -3.757796562527997, -7.0, -7.0, -3.930031614950973, -7.0, -2.8916170935913543, -3.387247411357324, -7.0, -7.0, -7.0, -3.966939163021113, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3354005832177553, -3.992597696102038, -2.580273126424684, -2.711713520014632, -7.0, -3.0007593511047372, -7.0, -7.0, -7.0, -3.500840004617788, -3.747100931364986, -7.0, -7.0, -7.0, -3.0494727635847134, -7.0, -7.0, -2.6893771712719174, -3.1731133940968244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7281913985899466, -3.1937867917754756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.330118485571775, -7.0, -2.707480529182167, -3.7086191628552996, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7845459740545224, -7.0, -3.765072201102792, -7.0, -3.6404317436833487, -7.0, -2.8114313662192414, -7.0, -2.950299932560933, -3.109646031090973, -1.8706163838969008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.763240757310025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.653333134379342, -3.7122261672192907, -7.0, -7.0, -7.0, -3.762978490867743, -7.0, -7.0, -7.0, -3.7896512087934098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6629749246538044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8016780590358934, -1.759048659216874, -3.7405995128111567, -7.0, -7.0, -7.0, -3.9230193850380344, -7.0, -2.382402216128515, -7.0, -4.446156448930393, -2.971275848738105, -7.0, -7.0, -7.0, -2.918248827749846, -3.0535585922132595, -7.0, -3.5786010117639133, -3.0812752795293337, -3.039017321997412, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.822560336942692, -4.112068504268197, -7.0, -7.0, -7.0, -4.145932559175869, -2.4424441346454007, -2.9259992664561554, -3.334398912526967, -7.0, -3.2682658666003466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.829946695941636, -3.5615264639255204, -3.4724638966069894, -3.690373306916059, -7.0, -7.0, -3.7052648623174043, -7.0, -3.7207379770184255, -7.0, -7.0, -7.0, -3.8166389448984614, -2.942256150419465, -2.5262007685441783, -7.0, -7.0, -7.0, -3.739097446117475, -3.1665724186953366, -3.2555739938220456, -3.326022133992245, -3.739809599021359, -4.027553454050221, -3.781416261290161, -4.0178260380304245, -7.0, -7.0, -7.0, -7.0, -4.022758194236769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.860972511322973, -7.0, -7.0, -4.641751652976988, -7.0, -4.363499161478234, -7.0, -4.2714311165678955, -7.0, -4.079145053332749, -3.3819269306372273, -3.5826260327397415, -7.0, -7.0, -7.0, -7.0, -4.238547887681328, -4.629175057540406, -7.0, -4.712742273917355, -7.0, -4.181729284882683, -7.0, -7.0, -4.550675524721961, -7.0, -4.1081363805377995, -2.524790536255634, -7.0, -4.397627204021875, -7.0, -7.0, -3.9023972780121996, -7.0, -3.485303795444586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.090500533931496, -3.5122363800088334, -7.0, -4.1075576053544465, -4.04089709143117, -7.0, -3.9528408566757016, -3.8087172420492474, -3.5246557123577773, -3.2166590965381316, -3.8535156967569284, -7.0, -7.0, -3.6608609625459816, -3.3965148413899895, -7.0, -3.657315422696258, -3.3450206615421147, -7.0, -7.0, -4.146871903085739, -3.958277125547698, -7.0, -3.5054552343235024, -3.383240433663356, -4.1660840290700145, -7.0, -3.969509098596567, -7.0, -4.131242766886208, -7.0, -3.242146747175157, -3.5150786750759226, -7.0, -7.0, -3.928122625143642, -4.19728055812562, -3.968302789055736, -3.9271136119337604, -3.36384170456394, -3.557226403727186, -3.9218944709291024, -3.504396712847337, -7.0, -3.5334283871579544, -4.976826661613164, -3.428998202825899, -4.40186369436619, -7.0, -3.9217384836845985, -4.051056001837605, -3.6844862921887342, -7.0, -7.0, -7.0, -7.0, -7.0, -3.207313717589319, -7.0, -2.8163517934364455, -7.0, -7.0, -4.121247880500199, -7.0, -7.0, -7.0, -3.398764385277643, -7.0, -4.826974868372878, -3.454895651714539, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.018367578387845, -7.0, -7.0, -7.0, -3.8915374576725643, -7.0, -3.5656412436434057, -7.0, -7.0, -7.0, -4.632656340381764, -3.81813348070119, -7.0, -7.0, -3.2714100837230893, -7.0, -3.8664054983780547, -7.0, -7.0, -2.7023130166283007, -7.0, -7.0, -7.0, -3.7800291273373383, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8003733548913496, -2.9184928935246375, -7.0, -7.0, -3.8986154974161855, -3.8874485002499535, -7.0, -3.2237790380327067, -7.0, -7.0, -7.0, -7.0, -3.441804303701005, -7.0, -3.445085022719354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.430478187932044, -7.0, -7.0, -3.4251672627392926, -2.991392228018147, -7.0, -7.0, -3.7896512087934098, -7.0, -7.0, -7.0, -3.705007959333336, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4367349657907065, -7.0, -3.446148675696183, -3.560683591907453, -3.40655153438964, -7.0, -7.0, -4.29700503526225, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9465013905695874, -3.355307817103565, -7.0, -7.0, -3.7944880466591697, -2.64132153910541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4301557119700194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.254608492283572, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.1447156946549801, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.726475708697577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.563225892089558, -7.0, -7.0, -7.0, -7.0, -3.237292337567459, -7.0, -7.0, -7.0, -7.0, -7.0, -5.140504900519705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.906889679198268, -7.0, -3.5879914264312434, -3.296592070557359, -7.0, -2.885361220031512, -3.394976719554564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.232487866352986, -7.0, -7.0, -7.0, -4.823484010467402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.373095987078727, -2.812244696800369, -7.0, -7.0, -7.0, -4.078837293416897, -7.0, -7.0, -7.0, -7.0, -7.0, -2.639486489268586, -4.165125569088229, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7134905430939424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6444385894678386, -7.0, -3.6930859608440105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.14674801363064, -7.0, -7.0, -7.0, -3.5598468007393165, -7.0, -7.0, -4.150842369489412, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.148762632626255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.030194785356751, -7.0, -3.601081727784023, -7.0, -3.336759833698248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3636119798921444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.67797175281074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0599418880619544, -3.411788004543869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1309927524950965, -7.0, -2.505149978319906, -3.978294669778629, -7.0, -7.0, -7.0, -3.2041199826559246, -7.0, -3.4634450317704277, -7.0, -7.0, -7.0, -7.0, -5.828223449760503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.855282864274575, -7.0, -5.176164793362221, -7.0, -7.0, -5.017446557593457, -7.0, -7.0, -2.951337518795918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.897008193182832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.064951905427961, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.961273931114606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.487524400587733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604722722859099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9211139738366807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.045708195339422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.326335860928752, -7.0, -7.0, -4.298853076409706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.329058719264225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.903410161122643, -3.707485011967474, -1.1447156946549801, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.357076839842412, -4.425654142623775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3882670215945305, -7.0, -7.0, -7.0, -7.0, -3.2833012287035497, -7.0, -3.472317546316842, -7.0, -7.0, -7.0, -5.1411109856678925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2543385727441954, -7.0, -3.054065601462962, -2.7866094726486597, -7.0, -2.9827233876685453, -3.4274861090957858, -7.0, -7.0, -7.0, -2.374748346010104, -7.0, -7.0, -4.449401252996221, -7.0, -7.0, -2.9093777108309906, -7.0, -2.6450126734667045, -7.0, -7.0, -7.0, -4.280012209042916, -7.0, -7.0, -7.0, -2.7944880466591697, -3.3941013020400446, -3.295567099962479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5312003683301665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3664229572259727, -3.574031267727719, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3672161041609696, -7.0, -7.0, -3.146128035678238, -3.144055027055373, -3.2000292665537704, -7.0, -2.791690649020118, -3.0870712059065353, -7.0, -3.9061913308567564, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5494120098036346, -3.5685830315081475, -4.753812783564702, -7.0, -7.0, -7.0, -7.0, -2.3078524552347384, -7.0, -7.0, -7.0, -7.0, -3.9967523936992766, -3.4604467838807205, -7.0, -7.0, -4.065318237803737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1122697684172707, -7.0, -7.0, -7.0, -2.097604328874411, -7.0, -3.12515582958053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2027606873931997, -3.0806264869218056, -3.3600250891893975, -2.94423584379348, -3.571242850560224, -3.207095540419218, -2.8981764834976764, -3.719670351228767, -7.0, -7.0, -7.0, -7.0, -2.815577748324267, -7.0, -7.0, -3.6173149332982937, -7.0, -7.0, -7.0, -7.0, -3.645549406428706, -7.0, -7.0, -2.875292825371008, -7.0, -7.0, -3.185258765296585, -7.0, -7.0, -7.0, -3.3203540328176717, -7.0, -2.701088048570016, -7.0, -7.0, -7.0, -3.6412162335803266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9068735347220707, -7.0, -7.0, -5.712897919192247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1975562131535367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.942142043219304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.976808337338066, -7.0, -7.0, -3.473924693416157, -3.3322364154914434, -7.0, -2.146128035678238, -7.0, -7.0, -3.2920344359947364, -3.833835315303057, -7.0, -7.0, -7.0, -7.0, -2.3229081045244717, -3.6866809474663245, -7.0, -3.9561684304753633, -7.0, -7.0, -3.1702617153949575, -7.0, -2.1921956258464497, -2.649010152542322, -2.965358514344786, -3.1122697684172707, -7.0, -7.0, -7.0, -2.7708520116421442, -2.9028184680822537, -7.0, -7.0, -3.923606643017459, -7.0, -3.420120848085703, -3.177824971864682, -7.0, -3.1879717016473963, -7.0, -4.2837533833325265, -7.0, -2.5259082158339554, -3.576226137449605, -3.253580289562183, -7.0, -3.4913616938342726, -7.0, -7.0, -7.0, -7.0, -5.527316631951896, -3.563421751494202, -7.0, -7.0, -7.0, -3.747489492258673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9906939606797516, -7.0, -7.0, -7.0, -7.0, -4.555408865558874, -4.08441539833186, -4.875240734689373, -7.0, -7.0, -7.0, -3.7680458141024165, -7.0, -7.0, -7.0, -3.5237464668115646, -3.475598557756169, -7.0, -3.301897717195208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.103201446615745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.371104821931509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530571059737016, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.764635598561476, -7.0, -7.0, -7.0, -7.0, -4.758068714620923, -7.0, -7.0, -7.0, -4.962189329010532, -3.8343207708442053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.186764277238947, -7.0, -7.0, -7.0, -7.0, -4.954980183213358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.340949506018236, -7.0, -7.0, -7.0, -7.0, -7.0, -4.60680040755567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.703348706939536, -7.0, -7.0, -4.340166394886077, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.653501946962933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.208306962353663, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6170073345345095, -7.0, -7.0, -7.0, -3.453725936962835, -7.0, -3.446381812222442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1670217957902564, -3.670802284260944, -7.0, -7.0, -3.0791812460476247, -7.0, -3.245018870737753, -3.9807303765359454, -7.0, -7.0, -3.225180008177683, -3.499687082618404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.855640280890145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.327941009681113, -7.0, -7.0, -4.303044784243365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.243955301978741, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6318494621598183, -7.0, -7.0, -7.0, -7.0, -7.0, -4.393083602089456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.979092900638326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.195733648273212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.196231470442875, -7.0, -3.886913533398546, -7.0, -4.193430723726846, -3.745777217889759, -3.612836816232258, -2.8915374576725643, -2.2521355991800753, -3.0331903612722177, -2.569958818096594, -7.0, -7.0, -7.0, -2.6608794225039234, -3.169941478574325, -3.901676231326376, -4.187266838179294, -4.192149125018534, -3.712256751122368, -1.8066426759737768, -3.2092468487533736, -7.0, -3.3381243371969007, -2.3662277730015964, -2.952038646332828, -3.7196626830180466, -7.0, -2.650435343270571, -2.83248230070942, -3.596652066132439, -2.97716286346543, -7.0, -3.890197386210029, -7.0, -4.199261380177078, -3.9290611240847655, -7.0, -2.7494705959901213, -3.1883377790407526, -3.005861561054057, -3.7207379770184255, -2.601769985902066, -7.0, -2.8190775863707995, -2.5502793235946637, -2.82991992647253, -2.794263116841679, -2.873763335954439, -3.906846625927991, -4.259426626587052, -7.0, -3.4452668065216505, -2.2640044259790937, -3.772346159552627, -2.3669753615187523, -3.2119826034646293, -3.59728372736143, -3.426484151000204, -2.9694159123539814, -7.0, -7.0, -3.731293226228819, -7.0, -3.1236611191470076, -3.2294956795406073, -2.714884975155155, -4.192567453336546, -3.8891615849113204, -3.2427649777520964, -7.0, -3.0075557586251014, -2.6703816337480153, -7.0, -3.132727533383866, -2.8010458579848145, -4.190891716922169, -3.759592308645975, -7.0, -7.0, -2.971198510213833, -4.2315460439969215, -3.5949999167322457, -7.0, -3.7721994219179718, -7.0, -3.2157336728643675, -1.150115877528334, -3.924486043733915, -7.0, -1.3374695167229265, -1.8315401537011429, -1.6027772408417797, -3.0434184210606885, -7.0, -2.5538087480629397, -2.9012247250756964, -1.6942935974982078, -1.3299849899596918, -2.830839617318953, -1.8453436816960902, -7.0, -7.0, -7.0, -3.2728587109917084, -3.8884041677370464, -2.983726493512128, -7.0, -2.9613532832330054, -2.5874078631232282, -4.201670179646581, -4.1955398965493185, -4.211921084308509, -2.7369804812535694, -2.5305449022298983, -4.2073111514361345, -7.0, -2.1637883370283273, -2.394191291136409, -1.335997257806787, -4.207768969739924, -2.710394603858482, -1.419974623911139, -4.201424437579911, -3.3860230915330054, -4.202651759757338, -3.1053149523630434, -3.512924418964968, -3.072935793491505, -3.19959521190802, -3.8903092168999485, -7.0, -2.4645947374430204, -2.6186803992389205, -7.0, -7.0, -3.1678397191996104, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8769306614261745, -3.266573761870049, -0.8831353250428914, -2.6516083680914355, -2.493635707293855, -2.7496590320949, -7.0, -7.0, -4.213862930386819, -7.0, -2.6622151268225136, -7.0, -7.0, -3.425995874829204, -2.558147760826049, -4.188731671445743, -7.0, -3.449298370086198, -3.371437317404101, -4.1917862475822, -3.1753800132708143, -4.221753194318869, -4.242491735011311, -3.7623033632877685, -7.0, -3.2382005601347457, -4.222170008681765, -3.598051468295839, -2.8492267708776566, -7.0, -7.0, -7.0, -3.9043097257675417, -7.0, -3.8936508169859634, -4.1890128046002415, -3.5230772345351196, -7.0, -3.3857211511236223, -7.0, -2.37824644689886, -2.631182766011284, -7.0, -3.5169758348685476, -3.3713911526969724, -4.217036258627626, -3.3355581880658614, -2.627050579278049, -3.3807279514476365, -3.61084640142234, -7.0, -2.921754311031378, -4.199398602359617, -2.929685418552622, -7.0, -2.317678541396253, -2.90605270739008, -2.206397870813696, -7.0, -3.5837168320118957, -3.8866598978612026, -7.0, -7.0, -3.743169930945493, -7.0, -4.200166246363107, -3.010087846998524, -3.2353011403199905, -7.0, -2.917230346723255, -4.099139449766182, -3.499215621220299, -7.0, -4.187802638718419, -7.0, -4.189967298351272, -7.0, -7.0, -7.0, -7.0, -3.6652056284346006, -2.741082046819302, -3.0565084720296545, -2.8584954008567345, -7.0, -3.498227823151784, -2.784452693623172, -3.9112375328849565, -7.0, -4.1916465985627305, -3.631063087193119, -3.920905604164024, -4.22125770712091, -7.0, -7.0, -4.191702463559194, -7.0, -7.0, -7.0, -7.0, -3.8648880856896426, -7.0, -7.0, -7.0, -4.194320045303423, -3.903307079964174, -7.0, -7.0, -3.3591305026927025, -7.0, -7.0, -2.341132428405558, -2.9702053364856873, -7.0, -7.0, -7.0, -3.007064656378332, -3.3857339134175715, -2.4931249127957797, -7.0, -3.277550278524911, -3.304355866992308, -3.291313338918062, -3.894897317933243, -2.96201837643487, -0.9223282460529392, -2.3530556915282013, -2.414973347970818, -3.2983369335263792, -3.0719345821481365, -2.9240887642418034, -4.191423066687808, -3.612863293566935, -3.6492374723496073, -3.1672680922194196, -7.0, -4.195650622404186, -4.2155318184912955, -7.0, -7.0, -7.0, -3.2339854787802116, -3.06850126027733, -3.4350210586631755, -3.7707293122538714, -4.219427334507682, -2.5265077110153857, -1.9572528896889112, -4.192595327569212, -2.9320930828571, -7.0, -3.905175016099293, -2.8113207147872394, -7.0, -3.778078861937455, -3.4139221340565546, -3.282045059431361, -3.2274753434823706, -3.417424239697793, -3.2368646223173876, -2.49895398466317, -2.4493709766959877, -3.7106532004443227, -7.0, -7.0, -1.573212741349853, -2.699837725867246, -4.197776611271387, -7.0, -3.039166163427521, -3.893983567211847, -3.386753683729159, -4.197941836490006, -2.4220862084095693, -3.5047969706245556, -3.36514019614747, -3.37823887280976, -3.2493070873114163, -2.767396572466008, -1.8217659201065737, -3.2580957138341553, -3.9031442704095385, -3.7234556720351857, -3.2130116859330546, -2.4665961406123937, -7.0, -3.509121840939676, -3.7161981756548146, -3.419625360887743, -2.859676507874828, -2.3430729846351075, -3.0854944484283413, -4.189490313699367, -7.0, -3.2001288925178257, -3.8942883644490323, -7.0, -4.2050960475784835, -3.588226874130211, -4.197087495449889, -2.5474390404359823, -7.0, -7.0, -4.434065661248002, -3.91551122358829, -4.225348056287909, -3.6804261708581456, -3.3314730127606, -3.4720359647608183, -3.4490153163477864, -2.3193500861082983, -3.088514404450885, -3.68897123937068, -4.276989989368231, -3.067467630566799, -3.5725295541760693, -3.7362105259869303, -3.4942855831558868, -7.0, -3.67913426070467, -3.8477620928900054, -3.7109462200485273, -4.24896585586667, -7.0, -3.8338597780951167, -3.625042219271894, -2.8828712516830937, -2.4391431421511482, -4.560408824046945, -3.4010485392138086, -3.1383170547713606, -7.0, -2.6216749415481964, -4.467696879027591, -2.745207280286089, -3.7781633139517035, -3.70661822733253, -7.0, -3.5291093917613616, -3.57362573693412, -3.079613314908311, -3.4390167283875126, -2.6328153576642506, -3.508691286860763, -2.944623653966665, -3.2730178163003028, -3.0755277528968996, -2.675062643529782, -2.7872683035008583, -2.484731884687293, -1.7277239847974963, -3.247640144480507, -4.256958152560932, -4.027104865879351, -2.5315935346979557, -2.3901629165142837, -4.219217657022907, -2.3926348919812734, -1.7606681875250838, -7.0, -2.5452658709667757, -3.8078843976025314, -7.0, -7.0, -2.870245998917889, -1.9471842971207132, -3.5514566369878167, -7.0, -3.996314618870713, -7.0, -2.9311890460376633, -7.0, -3.2255612545205037, -2.8602084679303394, -4.497758718287268, -3.3437742207570813, -3.5553484184305875, -3.104207672494023, -3.3596170445871087, -3.323366704864766, -2.3920825172342264, -2.6195434403670323, -3.09770144457668, -1.8531491656109444, -3.6024127123210015, -2.5095342818699766, -3.000442341412527, -2.396175776800113, -3.362579456941744, -7.0, -2.8118984338735538, -2.605493791188096, -3.4260731174384857, -7.0, -4.1886754229698315, -7.0, -7.0, -4.303606390634642, -1.8580870827174711, -3.3327918116376987, -2.1938236640698334, -7.0, -3.749633267880381, -3.010535512583051, -3.939119717648487, -3.2748503200166645, -3.893012332222442, -3.409129696282029, -7.0, -3.2986515788116426, -2.787529031094406, -3.9008857870767155, -7.0, -4.452292561617729, -3.9305160483329398, -3.060453411515471, -7.0, -7.0, -4.321038892726055, -3.9003124969837266, -4.204635401383848, -3.525122584158249, -2.389764533517935, -7.0, -3.225343748174189, -7.0, -7.0, -4.133794300604513, -3.147623242121687, -2.9084222715130106, -7.0, -7.0, -2.4010297608718005, -7.0, -3.020726778628466, -7.0, -3.4410139714466967, -2.183471294547756, -7.0, -7.0, -4.239624765246138, -3.138697331979808, -3.2952591364816795, -4.200056665972214, -3.9212181211949506, -3.1694072252385252, -4.2024883170600935, -3.1840716740489867, -2.5138565817652143, -4.008685319195168, -7.0, -2.832910851172597, -2.861653870213911, -7.0, -3.507105924208658, -7.0, -7.0, -4.358410786206337, -3.630275285757692, -2.4931434135012362, -2.971666401356065, -3.0447011267454616, -7.0, -7.0, -4.041412425367856, -7.0, -3.8425052294359774, -7.0, -3.056218581272306, -2.8356905714924254, -4.215848976111454, -7.0, -2.7801320724351024, -2.252289842346699, -2.9375634800593664, -3.9358849679635246, -3.14752792782225, -3.5527168738324733, -3.531095546870028, -3.171912521004568, -3.087460275326437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0299786646845117, -4.250078287979645, -2.9549924939289824, -7.0, -3.866877814337499, -3.119793994782099, -3.989627770745151, -3.017671538505329, -7.0, -3.181635741814027, -7.0, -2.621943546842604, -3.2500205694119897, -4.29664325564288, -4.188112537165025, -3.1092149901535073, -3.033396946358147, -2.8582308632790943, -4.205339721431523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6289812102321743, -7.0, -3.1873155746437476, -7.0, -7.0, -7.0, -4.197142664972563, -4.2046896204203605, -7.0, -3.3370347431766225, -4.219977256744623, -3.744574596327337, -7.0, -7.0, -7.0, -7.0, -3.962984584316997, -4.20013885385738, -7.0, -3.286419041860382, -3.425968732272281, -3.5042261205990135, -3.9615397375535686, -7.0, -3.9419584165308135, -7.0, -7.0, -4.2356041893398375, -7.0, -3.9880235619286597, -3.7424632714945925, -7.0, -7.0, -7.0, -7.0, -3.903524064471262, -3.4268906288777257, -3.732608173296543, -2.5197775266927613, -2.737782385855657, -3.5108398014493605, -7.0, -2.897545365515436, -2.97409281299623, -7.0, -7.0, -2.6608794225039234, -7.0, -2.7489886652716113, -3.440410511262982, -7.0, -7.0, -3.205556205693917, -2.0630074503233264, -2.847516574105306, -7.0, -2.4160566473150036, -2.4416658812045307, -3.4456820268526793, -3.9120891431474747, -4.20441845752325, -2.6655316197359236, -2.906335041805091, -7.0, -2.9848158340017705, -3.524915147539867, -4.207768969739924, -7.0, -4.215452492883251, -3.341805346699918, -4.21133416373255, -3.315737167205999, -4.205420915676343, -3.2973470478364564, -3.2137302038548414, -2.6366946782993006, -3.9085654363368745, -3.915610862661467, -2.7287963375777684, -3.022222104507706, -2.377587097885457, -3.9122752104988123, -3.746582308802873, -4.2735568135298365, -3.4497868469857735, -2.465231573252902, -2.4714411235207603, -3.7867987283361098, -2.128656953740491, -2.832169487537022, -3.7384634394619525, -3.044069150468914, -2.7997919620140497, -3.619771386161673, -3.6218510955443124, -4.224377652161807, -7.0, -3.1049071253508416, -4.285107029566812, -2.8770534434074846, -3.7317767307737038, -3.7295427422712732, -2.9346907871554375, -7.0, -3.145341457592178, -2.8993169979180546, -7.0, -2.7689959478018795, -2.3710561097335447, -4.207391977978488, -3.074913914437954, -7.0, -7.0, -2.6629277397598625, -2.923392065156988, -3.5143086256567755, -7.0, -4.2638726768652235, -3.617576919481001, -3.229937685907934, -2.917916297847717, -3.094046659341039, -7.0, -2.171377928374108, -2.65452031968575, -2.3707485342584267, -3.9057149483897664, -7.0, -3.783713057452657, -3.197881761865032, -3.4097399533150314, -3.3336263742392354, -3.732956369575625, -2.7230009671305515, -3.6190150252837587, -7.0, -7.0, -2.7731244371386063, -7.0, -2.776095557782467, -3.190306225606168, -2.6832887096400997, -2.5072584774547875, -3.103198285631444, -3.2571984261393445, -3.528479616133823, -3.532066094810552, -2.0087668938960634, -3.4447992086373675, -7.0, -3.6468691423908055, -4.280760426326267, -2.954900033383096, -4.22365166718718, -2.7116213795637347, -2.081756055581979, -3.916453948549925, -3.7501611290217176, -4.218719266900493, -2.929552358303545, -3.3824287449229447, -2.9622272313500853, -3.0616298507383837, -4.207876621591972, -3.9184497424011577, -2.4168746316798377, -2.54176757633544, -7.0, -3.9042014431560217, -2.658841573383887, -7.0, -4.2028968085295295, -7.0, -3.5089335260500327, -4.204608289327036, -3.0966948805607766, -3.0899258806453944, -2.7023867192148066, -2.145438131669925, -4.219951085755317, -3.1599617587551454, -7.0, -3.5117229764819804, -3.928447063209182, -3.087652374729733, -3.0047902055826565, -7.0, -4.212267528548938, -3.5212427203704633, -2.826118013932333, -7.0, -7.0, -3.1631613749770184, -3.387008252600401, -7.0, -2.6398439122942654, -3.2366883817646155, -3.3537479789120974, -2.7085908451503435, -4.241297387109993, -2.5836709872171713, -3.1956481062209656, -3.915347062324192, -2.437419981594704, -4.214022148700433, -7.0, -7.0, -3.9202798946329485, -4.212799980625567, -4.211093831058964, -7.0, -2.724621710695205, -3.309257450996068, -3.1412364934229786, -7.0, -3.0876979237245203, -2.493208108796074, -3.9218944709291024, -3.2665523906877056, -3.173970294769197, -3.5334161417958905, -3.2119210843085093, -2.9335632068213493, -2.961720762515049, -3.2282976764748628, -3.332211153328047, -2.9747309448027197, -3.9145018228273143, -3.1588146467242266, -7.0, -2.8319408361283087, -2.8816079125422824, -2.810023828472548, -4.2095418220166, -2.0507824102259415, -7.0, -2.5335752742031707, -4.217325990227112, -2.3999280965143184, -3.212054364801163, -2.7835859964564595, -2.7789983320136287, -3.0458117739782704, -7.0, -2.9532521547868504, -3.679927320565639, -3.2095724571036435, -7.0, -7.0, -3.9115837009810757, -3.905418068702542, -7.0, -3.9138932892309164, -3.906227263052359, -4.217352319881362, -3.4721162341073866, -2.824103381054613, -2.7907641378340196, -2.811792891551971, -4.203168922875464, -3.7364496237349565, -3.5177499628542592, -2.562964867002593, -4.204960614115603, -3.907034952483417, -3.168546586862098, -2.935381292079985, -3.9355828325357876, -7.0, -7.0, -3.5089873386369184, -7.0, -7.0, -7.0, -3.761451706976967, -2.872629130512553, -4.203957091681244, -3.9039847969050228, -7.0, -7.0, -3.6181788886064417, -3.7414142504968653, -4.203522416822585, -3.743326810350656, -2.8458461788416503, -3.199805024539831, -2.2330773742707466, -2.9459016787990913, -3.336059277866349, -7.0, -7.0, -2.772453976103078, -2.94423584379348, -1.5055301535015506, -3.743875442427706, -2.4444825170747544, -3.5245259366263757, -3.131378035763099, -3.513111011656089, -2.0567308621182074, -2.6785390710610772, -2.1914367737841034, -2.574872720123483, -3.4485324127444223, -3.087451821000778, -3.441433275830611, -4.2079035303860515, -3.628491104967123, -3.487444772703948, -3.0566905084110543, -7.0, -3.512791089371343, -2.8148876006841723, -4.211093831058964, -2.6672762205459564, -3.7269987279362624, -3.2947600654704363, -2.9824159737447586, -2.812861957804769, -3.057618564696613, -3.1551588415675598, -2.7643838804771876, -2.7339061042946105, -3.7318035763606017, -2.611173299091653, -3.7299473267944347, -3.7449706317345974, -2.3712030652454543, -3.9410142437055695, -3.1863381979963608, -3.0422511354113118, -2.9927944356352274, -3.2884728005997825, -2.7983743766815614, -2.5253626759396286, -2.814993463420426, -2.7164586585273547, -4.204499824171151, -7.0, -4.2028968085295295, -2.7131420990517308, -2.8311192397649134, -7.0, -3.6163704722912695, -3.0818991280636494, -2.955233285577666, -2.563629384689655, -3.368764890372562, -2.57861798915832, -3.918921090091336, -2.995067118019622, -3.2532498684446467, -4.220003426156936, -2.4505140363342623, -2.276956275912762, -3.0483957996741426, -3.9191565722392943, -3.3374392932692314, -2.7044231927112703, -2.4434966621063214, -7.0, -3.3207173506008356, -4.209836595069655, -3.5005794923633378, -2.625877098398814, -2.523767438609714, -3.0705304036403067, -3.427621331714776, -7.0, -3.302090308986348, -4.211707750406687, -3.9177155165594932, -3.6188583722285905, -3.0446268544430195, -7.0, -2.3823865369984354, -7.0, -4.204798038190855, -3.3971338420470936, -3.572104523139882, -3.755824058025565, -3.2163638637641165, -3.4118333045591585, -3.362160803877537, -2.964975790327557, -2.324210088295366, -2.402800038634579, -2.9827929081556324, -3.989494312772709, -3.273488627403873, -3.4001860878367687, -3.458501874686394, -2.988648125235751, -3.1514523585967154, -3.0642984967722686, -3.2801930003350512, -4.119024820114783, -3.477868562996478, -4.285782273779395, -3.274435639233948, -3.0166535452370566, -3.0714962638675525, -2.9454839722770996, -3.8684680990209865, -3.463381000147473, -3.313389092794885, -3.94875518016827, -2.787437245245736, -3.476237290271068, -3.0918668725187803, -3.387199929316944, -3.590089133690572, -4.242740144605627, -3.742866469979114, -3.58508455410005, -3.4662347397183657, -3.187675798317812, -2.393888158192224, -3.9226735678585545, -3.0952460874520806, -3.2940448558627553, -3.2867557767759927, -1.9735918316724699, -2.719922888331037, -3.5514499979728753, -2.1651070250386395, -3.450112193286101, -3.1566656185163415, -2.5055245577766834, -2.65590723100227, -2.693685737345204, -7.0, -2.7334816953436976, -3.1694392989789413, -4.208011148892835, -3.0585259150851116, -3.4786552765992944, -3.828058082844378, -4.223988882570092, -2.930692472486093, -2.6543763807785092, -3.4291582429146765, -3.9103308634911365, -3.465000231841943, -3.7364230638180045, -2.9029254503421624, -4.032638903912429, -3.3777235917236528, -2.8043771978112435, -3.602697393370634, -7.0, -3.0305044767258296, -3.1237699989926178, -3.1409591869267732, -3.446159780273893, -2.7703473589832392, -2.2289494568369124, -2.631775727952187, -2.8006323498354555, -4.220631019448092, -2.502507448197351, -2.839021836222007, -2.5992916070757954, -3.140734536805062, -7.0, -3.2095373542191825, -3.085569767549475, -3.4013266748944875, -7.0, -4.205258512004059, -4.203168922875464, -7.0, -4.015317833069116, -2.0874794254002533, -3.0462756204011914, -1.961018183415195, -7.0, -3.7648483571934106, -2.4221985394696524, -3.213082882645646, -3.545455567836917, -4.210479042645248, -2.5824559315131506, -7.0, -2.487563118856403, -2.8153341918009738, -3.5188822759238745, -7.0, -3.9842271789283203, -3.4012527964419994, -3.526382360022874, -7.0, -2.9369632542966944, -3.4299540428315436, -7.0, -3.375219296154107, -2.6695932692069277, -2.9533684457836418, -7.0, -2.787511076846687, -7.0, -3.1671024172716122, -3.418135498425232, -2.841300312661918, -2.398270231684452, -7.0, -3.9618006391916785, -2.3759079631553948, -4.224092588494267, -2.8501747908446484, -7.0, -3.75767433350098, -1.8582697748506578, -7.0, -4.209380952346196, -4.254403046390677, -3.2793119832751985, -3.308286888629105, -4.216218700837137, -3.1231226002485672, -3.0802914129703645, -7.0, -3.0944461713401465, -2.2448344222145216, -3.649042634086176, -7.0, -2.7338160978899246, -3.128099110367532, -4.244895333691861, -2.094393478993324, -7.0, -7.0, -3.223087821731905, -2.8313035974632434, -2.189266777664425, -2.8666181041282894, -2.6856969636672376, -3.7574466429160234, -4.217931168785781, -3.8769871844277386, -7.0, -3.4286611380324996, -3.7363699391106717, -3.133489777256199, -2.439632448459834, -3.5322701446090563, -7.0, -2.603244641473375, -2.0183876337299034, -2.649047063199393, -3.2972010255940374, -2.1996912391745638, -2.8178249809742413, -2.978782076032242, -3.5303277897780863, -2.3300143608606736, -3.2244467303362647, -4.2316224841065795, -4.227732489846626, -3.728867596032789, -7.0, -3.329217026937669, -3.4200500988012092, -3.180829397202488, -2.706551844648906, -1.9893726580880053, -3.644955299203869, -2.9085574677038912, -3.0325073142652674, -3.1894039256177455, -2.8307787007318903, -7.0, -3.393474921682372, -7.0, -3.2203478430987618, -2.387671913248881, -2.232737755546996, -7.0, -3.124554383000522, -3.2713768718940743, -2.4448360285808475, -7.0, -7.0, -7.0, -3.9034698285071703, -7.0, -7.0, -7.0, -2.439472605071242, -3.9355828325357876, -3.0394884783034315, -7.0, -7.0, -4.209649035368229, -3.6111920608684343, -4.220683277974345, -7.0, -3.5560611590095323, -3.7582051477637246, -3.607684747886464, -3.3287260851987845, -4.001300933020418, -3.917899189424106, -7.0, -7.0, -7.0, -7.0, -3.2249860256767717, -7.0, -4.219453537076811, -3.9755696578936623, -4.261072451390823, -3.4793113232466855, -7.0, -7.0, -7.0, -7.0, -3.4569513503619937, -3.7579271831133294, -7.0, -7.0, -7.0, -7.0, -7.0, -2.720572720364261, -2.7849737099544005, -7.0, -2.8269382114979367, -7.0, -7.0, -3.674623431655849, -7.0, -7.0, -7.0, -3.169941478574325, -2.7489886652716113, -7.0, -7.0, -7.0, -7.0, -7.0, -3.270795253376848, -7.0, -7.0, -3.417388646165674, -3.197303826913918, -2.9444826721501687, -3.1290450598879582, -7.0, -2.6475459629789473, -2.515211304327802, -7.0, -4.869407749382202, -3.2460059040760294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.980609293526336, -7.0, -4.029215147524665, -7.0, -3.1699681739968923, -2.4358443659844413, -7.0, -2.653475642824231, -7.0, -7.0, -7.0, -7.0, -7.0, -3.195100974169237, -3.5282737771670436, -1.8788528915152634, -3.3560258571931225, -7.0, -2.7363965022766426, -2.678908405543116, -7.0, -7.0, -7.0, -7.0, -3.2000292665537704, -7.0, -3.9825576522920807, -7.0, -7.0, -2.588691788592222, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7469907758787473, -7.0, -3.4565178578052627, -7.0, -7.0, -3.130655349022031, -7.0, -3.132899769944483, -7.0, -3.226213120724107, -7.0, -7.0, -3.6119356250401227, -3.0824263008607717, -7.0, -3.524095618099355, -7.0, -4.043676585602717, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1686938635769795, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5227484373886053, -7.0, -2.239373094599889, -2.537399284038261, -2.149400257384556, -2.436305618765648, -7.0, -7.0, -7.0, -3.3096301674258988, -1.7870835398996032, -7.0, -7.0, -7.0, -3.6124659639531425, -3.211031500871904, -7.0, -3.8891615849113204, -3.9137835869053323, -7.0, -7.0, -7.0, -2.9581823749816007, -2.978864984347657, -3.529045170765769, -7.0, -7.0, -7.0, -3.107655062979815, -2.204489962359036, -7.0, -2.417471693203293, -4.077803798076088, -7.0, -7.0, -7.0, -3.0633333589517497, -7.0, -3.450249108319361, -7.0, -2.995049891972701, -3.734239604435455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9591010440596532, -7.0, -7.0, -2.361458004084773, -3.46969931658989, -7.0, -7.0, -7.0, -7.0, -3.065206128054312, -7.0, -7.0, -7.0, -7.0, -7.0, -3.910197369966001, -7.0, -7.0, -3.948020003415398, -3.139249217571607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.952598734529773, -7.0, -7.0, -7.0, -3.766784515497859, -3.1365014914682803, -7.0, -7.0, -3.6471872978959894, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0437551269686796, -7.0, -7.0, -3.717337582723864, -7.0, -3.9789561652175918, -3.409087369447835, -7.0, -7.0, -2.8640920800785654, -7.0, -3.800235789327354, -2.875350696579289, -2.743313739231126, -7.0, -2.86421433046133, -7.0, -7.0, -7.0, -2.777861624176242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0414913772349825, -4.150203628762808, -5.4124361859343715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.354876422516234, -3.3529539117100877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.368100851709351, -3.7692640599117246, -7.0, -7.0, -7.0, -7.0, -3.2095150145426308, -7.0, -7.0, -7.0, -3.732393759822968, -7.0, -3.3445232628225545, -7.0, -7.0, -7.0, -7.0, -3.3270318130211587, -7.0, -2.9384196457931933, -7.0, -4.715953229841805, -7.0, -7.0, -7.0, -1.1578397323559333, -3.7841892053809607, -2.9452894946212806, -2.983175072037813, -3.397360562979804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.357744325180376, -7.0, -3.140665139976736, -3.480054875685184, -7.0, -7.0, -7.0, -4.019761578098389, -3.9239689648754714, -7.0, -4.298809426529585, -7.0, -7.0, -2.499392479227636, -3.3928727454020793, -3.380482590974981, -2.2943501822111623, -7.0, -7.0, -7.0, -2.2242435278612027, -5.129809725477716, -2.319215674272979, -7.0, -7.0, -7.0, -3.797198269838959, -2.895054031395402, -7.0, -7.0, -3.1970047280230456, -3.1072099696478683, -1.7700147364996375, -7.0, -3.7466341989375787, -7.0, -2.96543689977626, -3.072892956720603, -7.0, -4.015359755409214, -3.552129141028904, -4.729500335406759, -7.0, -3.5298151966446305, -4.0667564855974705, -2.700037723329635, -7.0, -7.0, -7.0, -3.3027637084729817, -3.123916943498132, -2.9875173043753707, -3.42845877351558, -7.0, -7.0, -2.7868933252613157, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4953961302668386, -7.0, -7.0, -3.6982637017765465, -4.776083436639779, -7.0, -7.0, -4.717437485607079, -7.0, -7.0, -4.295830894958585, -3.6281106653728488, -7.0, -3.656385719058688, -7.0, -4.723545969628407, -7.0, -3.8886287253852263, -7.0, -4.678809631951962, -4.323422277252024, -7.0, -7.0, -7.0, -7.0, -4.286972645457374, -4.539163952951567, -4.123721006440036, -7.0, -7.0, -7.0, -7.0, -4.778390046685725, -7.0, -4.6823526935396655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7167335134653343, -7.0, -4.374436714981712, -3.892001794808537, -7.0, -3.4056877866727775, -4.038918066030369, -7.0, -3.668526947558438, -3.7157944980035067, -3.0882542479944113, -3.495636829183877, -3.421001889716546, -3.4812544651364226, -7.0, -3.241515351722801, -3.857030798272624, -7.0, -7.0, -4.383294618363712, -7.0, -7.0, -3.6137053129046692, -4.090746051250861, -5.405882279740203, -7.0, -2.889781762778371, -7.0, -4.180035029080566, -7.0, -5.105309170614622, -3.2513600717031963, -7.0, -7.0, -4.03235681599555, -4.441270843420499, -3.7866662580150985, -7.0, -2.9975919432613582, -7.0, -3.3098648282852214, -4.495266744387811, -7.0, -2.632620223899974, -4.356594659032601, -3.621280167550415, -4.871524288726237, -7.0, -2.9507541815935037, -3.613831254971802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8751046906685627, -7.0, -2.5953859808091417, -7.0, -7.0, -2.708304990392847, -7.0, -7.0, -7.0, -2.6729499729544792, -7.0, -3.3536002754719343, -3.192381579384681, -7.0, -7.0, -7.0, -3.4240645254174877, -3.714413592287121, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4135955714364747, -3.5922878159521305, -7.0, -3.2564772062416765, -7.0, -7.0, -7.0, -4.494425943281818, -7.0, -7.0, -7.0, -3.118595365223762, -7.0, -2.937893850328434, -7.0, -7.0, -3.263849021837472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.273695587930092, -7.0, -3.085290578230065, -4.010469569796392, -7.0, -7.0, -3.0035682306796563, -3.282848602834645, -7.0, -3.8619523749214517, -7.0, -7.0, -7.0, -7.0, -3.027484215567386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3347887257004363, -7.0, -3.131779009369187, -3.060383020128225, -7.0, -7.0, -2.9849771264154934, -2.5510162532011527, -3.6726519228400023, -7.0, -3.317080886073193, -7.0, -7.0, -3.2949069106051923, -3.208863467300243, -7.0, -7.0, -7.0, -7.0, -7.0, -4.370272467849528, -7.0, -3.2329961103921536, -7.0, -3.155766069605062, -7.0, -3.5754765086019, -3.4390896638956034, -2.1134290899827994, -3.2234959409623944, -7.0, -7.0, -7.0, -3.21818526771214, -3.11277252110537, -7.0, -7.0, -7.0, -7.0, -3.148979483013599, -7.0, -7.0, -7.0, -3.0107238653917734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.176814480674777, -7.0, -3.524396122103842, -7.0, -7.0, -7.0, -7.0, -7.0, -3.165541076722373, -7.0, -3.8069935136821074, -3.2095150145426308, -7.0, -3.291701770729981, -7.0, -3.4927603890268375, -7.0, -7.0, -3.1478308499434595, -7.0, -3.7048366062114035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2973227142053023, -3.225309281725863, -7.0, -7.0, -4.506375130517445, -7.0, -7.0, -7.0, -3.901676231326376, -3.440410511262982, -7.0, -7.0, -1.8566617712293756, -7.0, -7.0, -4.042732979621721, -7.0, -7.0, -3.6895752157599384, -3.632488708541651, -7.0, -7.0, -7.0, -7.0, -2.6103939697123133, -7.0, -3.691164038557998, -7.0, -7.0, -2.9138138523837167, -7.0, -3.354108439147401, -7.0, -7.0, -7.0, -3.403977963669355, -7.0, -3.9116275396950106, -7.0, -2.7554937284151193, -7.0, -2.182699903336043, -3.063427189454848, -7.0, -7.0, -7.0, -7.0, -7.0, -3.955516713520234, -7.0, -7.0, -7.0, -7.0, -3.1142772965615864, -3.4794313371977363, -7.0, -3.153204900084284, -7.0, -7.0, -7.0, -7.0, -3.551312734347314, -7.0, -7.0, -7.0, -7.0, -7.0, -2.026474895531622, -7.0, -7.0, -4.649120579881137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.532068646024828, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.680335513414563, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4222614508136027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.929418925714293, -2.7752462597402365, -7.0, -7.0, -3.081707270097349, -3.5750723257138124, -3.054708787938054, -7.0, -7.0, -7.0, -3.0692980121155293, -3.8560639533331, -2.481442628502305, -3.739651443709377, -7.0, -3.181986424480151, -3.632963168167261, -2.4292137870854282, -7.0, -3.459844642388208, -3.508798965403905, -7.0, -7.0, -4.071624298539752, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7382254481425052, -7.0, -3.8608767964032977, -7.0, -7.0, -7.0, -2.8615344108590377, -2.965201701025912, -7.0, -7.0, -3.8424220033576497, -7.0, -7.0, -7.0, -4.5449852976427225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.28668096935493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.452720008557285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.28616444665352, -7.0, -7.0, -4.575795739570101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3230457354817013, -3.2054750367408906, -2.971739590887778, -7.0, -7.0, -3.688241795977712, -7.0, -7.0, -7.0, -7.0, -7.0, -3.481442628502305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.396881306642151, -2.4890791624977924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0318122713303706, -7.0, -2.7649229846498886, -3.4474681309497557, -7.0, -4.1396902216529226, -5.412152147675782, -7.0, -7.0, -2.7589118923979736, -7.0, -7.0, -7.0, -3.3771240423464564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.341736150601685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.226857570288723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.320437103682865, -7.0, -4.537214438544131, -7.0, -4.111010334527677, -7.0, -7.0, -7.0, -2.620526432062427, -7.0, -3.0684641664541177, -3.036309443724438, -7.0, -7.0, -7.0, -7.0, -3.225567713439471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9408649759667216, -7.0, -7.0, -7.0, -5.132701445891525, -3.906119457545562, -7.0, -3.1446631477045215, -7.0, -7.0, -2.8345266679328582, -7.0, -7.0, -7.0, -3.200371635102761, -7.0, -7.0, -7.0, -5.527535815021379, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7151673578484576, -7.0, -2.6020599913279625, -7.0, -7.0, -7.0, -3.4183012913197457, -7.0, -2.5754765086019, -7.0, -7.0, -4.381355787093678, -4.391517306849448, -4.796253928649793, -7.0, -7.0, -3.132542438758517, -3.093001196684749, -7.0, -2.8527848686805477, -2.4668676203541096, -7.0, -2.2647483969871836, -3.137986732723532, -3.369957607346053, -2.870403905279027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5064238482786605, -7.0, -7.0, -4.296763882338289, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.805614117901356, -7.0, -7.0, -4.622726788799164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.935023327267549, -7.0, -7.0, -7.0, -4.662757831681574, -4.080491199713847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.187244263647723, -7.0, -7.0, -3.4067955726682504, -7.0, -4.956614986067625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.899497669943841, -7.0, -7.0, -4.1665189175409445, -7.0, -7.0, -4.56982435888469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7640266076920375, -7.0, -4.798802518387985, -3.6372895476781744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0754252932359982, -7.0, -7.0, -7.0, -7.0, -3.6956567599361905, -7.0, -7.0, -7.0, -2.9978230807457256, -3.470704429722788, -7.0, -3.018561812897253, -7.0, -3.266231696689893, -3.7789948919347194, -7.0, -7.0, -3.119420863442087, -3.257438566859814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.995898323646437, -7.0, -7.0, -3.5683190850951116, -3.2427898094786767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3980493004965044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808616035426992, -4.331761240775492, -3.339053735709139, -7.0, -3.5319682869631666, -3.495821753385906, -2.5202137247557816, -3.2132520521963968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.248144987287778, -3.2039389889121495, -3.478566495593843, -7.0, -3.301897717195208, -7.0, -7.0, -3.686099771995916, -7.0, -7.0, -7.0, -3.1758016328482794, -4.3990157256487645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9334872878487053, -7.0, -3.2823955047425257, -2.1958996524092336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8144473785224875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.200412701197246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.187266838179294, -7.0, -7.0, -1.8566617712293756, -7.0, -7.0, -7.0, -4.332660600270635, -7.0, -7.0, -7.0, -5.094431529055729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.563071516383439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.513217600067939, -3.610234175334389, -7.0, -7.0, -7.0, -7.0, -7.0, -4.429703842972572, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.446008733684012, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6006462356623947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.2296306555085055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0580462303952816, -4.078366179530183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752132992497674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2930087866585644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1449165270928505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1508577122770784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.352890323568416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6702458530741238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7083954026456265, -7.0, -7.0, -7.0, -3.6767850304192056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8748875108461127, -7.0, -4.278776457955645, -7.0, -7.0, -3.550228353055094, -7.0, -7.0, -7.0, -7.0, -3.2081725266671217, -7.0, -7.0, -5.527175393673305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6705241577820797, -7.0, -7.0, -7.0, -7.0, -4.8551252652257055, -7.0, -5.273060911077467, -7.0, -7.0, -4.7162997319773545, -7.0, -7.0, -7.0, -7.0, -7.0, -3.459392487759231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426933964071905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.04587039244936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2242740142942576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1684974835230326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9197577805018944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.185343801582189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.647705636658856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.580810972660946, -7.0, -3.997211582832505, -7.0, -3.707995746422929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6276730317666157, -7.0, -7.0, -7.0, -7.0, -7.0, -3.632963168167261, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8796692056320534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.718501688867274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7774268223893115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.192149125018534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.33615942648478, -7.0, -7.0, -7.0, -4.3956362016073784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.388000494229575, -7.0, -7.0, -7.0, -7.0, -3.2730012720637376, -7.0, -3.164352855784437, -2.5237464668115646, -7.0, -7.0, -4.186677007042231, -7.0, -7.0, -3.004536317851323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.476138960843614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9813655090785445, -7.0, -3.0211892990699383, -7.0, -7.0, -7.0, -3.6704004888179345, -7.0, -7.0, -7.0, -7.0, -3.7223047868743278, -7.0, -7.0, -7.0, -5.1250027903205355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8027737252919755, -7.0, -7.0, -2.941511432634403, -7.0, -7.0, -7.0, -7.0, -3.6984280755915644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.568788212315347, -7.0, -3.668541215987884, -7.0, -7.0, -7.0, -3.9674543681827408, -7.0, -7.0, -7.0, -7.0, -3.676693609624867, -7.0, -7.0, -7.0, -7.0, -4.382575319649486, -7.0, -7.0, -2.607025878434786, -2.571838182362705, -3.3176455432211585, -7.0, -3.4702928597504274, -3.908278162727131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023787279789847, -7.0, -4.150295812825538, -7.0, -7.0, -3.8716313045375537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.539966367996713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1903316981702914, -7.0, -7.0, -7.0, -3.86975959478241, -7.0, -7.0, -4.673991068684635, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7363965022766426, -7.0, -3.6149499184762433, -7.0, -7.0, -7.0, -7.0, -3.9729256748062145, -7.0, -7.0, -3.569958818096594, -7.0, -7.0, -3.172310968521954, -3.2352758766870524, -2.607812320217054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7372721765355434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.537189226243645, -7.0, -2.8926510338773004, -3.000596744744559, -7.0, -3.82630161371604, -5.411828386500435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941918703252601, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.806586934327803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.408824850960789, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9540011676815703, -7.0, -7.0, -3.156851901070011, -7.0, -2.629409599102719, -2.634141258939403, -2.832987650012002, -2.802944673722407, -7.0, -2.761927838420529, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9212701855098127, -7.0, -7.0, -7.0, -4.654333796697641, -2.581665266717616, -2.6702458530741238, -3.981660076604237, -7.0, -7.0, -3.571009672309305, -7.0, -3.9488529061997135, -7.0, -3.474507639116976, -3.252610340567373, -7.0, -7.0, -4.925219884397581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6863681034730362, -2.9454685851318194, -7.0, -7.0, -7.0, -7.0, -7.0, -5.176250471178607, -7.0, -7.0, -4.239870653259158, -3.7646990637983677, -7.0, -7.0, -7.0, -3.517855418930029, -3.073938190635253, -7.0, -7.0, -7.0, -7.0, -3.3703280077795106, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5011825459901935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4507923159973133, -7.0, -4.287316422082007, -3.8769103113446275, -7.0, -4.325392500017263, -3.3209766773428235, -4.058924316651292, -3.207005670893413, -2.6912288854662814, -3.9616583486377155, -4.262968138090902, -4.07700432679335, -7.0, -4.133650660953161, -3.5098742850047193, -7.0, -3.7826875682349663, -7.0, -7.0, -7.0, -3.99084479280467, -4.341568763431911, -7.0, -2.745855195173729, -3.3727279408855955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.48058896756481, -7.0, -3.9088333870375656, -7.0, -7.0, -4.184052292391864, -1.57377942980712, -3.9427271453659487, -7.0, -7.0, -5.046210223646017, -7.0, -7.0, -4.606316861140107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9894794815772188, -7.0, -4.179293205577373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5969268143429707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.724002642487717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1646502159342966, -3.644635503768153, -7.0, -7.0, -7.0, -2.851869600729766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6775613311560935, -7.0, -7.0, -3.520614521878236, -3.192149125018534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.045927049451639, -3.1336985461157765, -7.0, -7.0, -7.0, -7.0, -2.8692317197309762, -7.0, -7.0, -7.0, -3.4899584794248346, -7.0, -7.0, -3.781827152932428, -4.151737481038518, -7.0, -7.0, -7.0, -7.0, -3.245101209250068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067281687644021, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1497321599470633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9694159123539814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2645817292380777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6252781451453204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.018991594705612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.69539410829111, -7.0, -7.0, -3.712256751122368, -3.205556205693917, -7.0, -7.0, -7.0, -7.0, -7.0, -3.635121683866136, -7.0, -7.0, -3.16721884410666, -4.425491133590951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4510184521554574, -4.839635144312755, -7.0, -2.82020145948564, -2.378851946448881, -7.0, -3.61857102812013, -7.0, -7.0, -7.0, -7.0, -3.18440748541232, -4.129066569730805, -7.0, -3.4147505757259213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5705429398818973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.425697213362591, -7.0, -7.0, -7.0, -7.0, -7.0, -3.263636068588108, -7.0, -7.0, -3.40671045860979, -7.0, -7.0, -3.5150786750759226, -7.0, -7.0, -3.928705586311121, -7.0, -3.7091851295502454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.66185999172781, -7.0, -7.0, -7.0, -7.0, -4.374069803726075, -7.0, -7.0, -7.0, -7.0, -4.3808621953412015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9745116927373285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5814945422908995, -7.0, -7.0, -4.294752721910178, -7.0, -7.0, -7.0, -3.7615895881903603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6701221048237063, -2.5146426078494595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03696191916769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.609914410085998, -7.0, -7.0, -7.0, -3.7013088852280753, -4.097704527259222, -7.0, -3.3550682063488506, -3.558708570533166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7399676967595092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8992731873176036, -7.0, -7.0, -5.411748460239424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464305695943203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.918778991481398, -3.3227015762736576, -7.0, -7.0, -7.0, -4.3103533890449945, -2.958324931644053, -2.7165683297355256, -7.0, -7.0, -7.0, -7.0, -2.694605198933569, -7.0, -7.0, -3.3470371337849536, -3.695831772826692, -7.0, -7.0, -2.8926510338773004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.916295994563131, -7.0, -7.0, -7.0, -4.654028863068111, -7.0, -7.0, -3.9795028487874013, -7.0, -7.0, -7.0, -7.0, -3.643057683751453, -3.4712917110589387, -7.0, -7.0, -7.0, -7.0, -4.874004804728517, -3.85618492672717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.382647303154711, -4.875159692319408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499879448956432, -7.0, -7.0, -4.115355295624343, -7.0, -7.0, -3.5979144712025284, -4.710574276760383, -7.0, -3.8634418286137087, -7.0, -3.401452239428341, -3.664124650322944, -3.569958818096594, -7.0, -4.716779368873068, -7.0, -4.277357044047016, -3.8468729474623116, -7.0, -4.076114874405903, -7.0, -7.0, -7.0, -5.387516180530774, -7.0, -7.0, -3.6188844849954505, -7.0, -4.655800900961374, -7.0, -7.0, -4.073403051739167, -7.0, -4.674907046819129, -7.0, -4.185683780318504, -3.225050696138049, -7.0, -7.0, -7.0, -4.177247836255623, -3.4069232124875093, -7.0, -7.0, -4.764112590683704, -7.0, -3.630834517828051, -3.6243027269124592, -7.0, -4.193402903062418, -7.0, -7.0, -7.0, -4.35943703830399, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1733319803686495, -7.0, -7.0, -7.0, -4.990503127353854, -4.446178354569201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.419718996229201, -7.0, -7.0, -4.46520433758063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3187339450877964, -7.0, -3.4773528166989705, -7.0, -7.0, -3.8601782366871342, -3.036628895362161, -7.0, -7.0, -3.7265642161622448, -7.0, -4.795476804945366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7585334222372864, -7.0, -7.0, -7.0, -7.0, -7.0, -3.523659772633833, -7.0, -7.0, -4.593618308129535, -4.2485127322209, -3.5817577144343704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6422913615024184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6732052817790453, -7.0, -7.0, -7.0, -7.0, -7.0, -2.721366648562226, -7.0, -7.0, -7.0, -3.2723058444020863, -3.9665445398586376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7844033017530085, -3.089905111439398, -7.0, -3.7749546890801384, -3.5137399148914126, -7.0, -7.0, -3.998934672960174, -7.0, -7.0, -7.0, -3.544605409694115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.950364854376123, -7.0, -3.295243603126737, -7.0, -3.8523579836678272, -4.543273178913283, -7.0, -3.403120521175818, -7.0, -7.0, -7.0, -7.0, -3.640878778701618, -7.0, -7.0, -7.0, -7.0, -4.089551882886454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7825442840100103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.038023740045158, -4.333406966873917, -7.0, -4.333709182897272, -3.6379497978642092, -3.659402725922002, -3.5073931999739076, -3.4338498071286465, -3.1961761850399735, -2.7813158040856756, -3.215125121509055, -7.0, -7.0, -1.8066426759737768, -2.0630074503233264, -3.270795253376848, -4.042732979621721, -4.332660600270635, -4.33615942648478, -3.635121683866136, -7.0, -3.4178791484866298, -7.0, -2.7099988280251885, -2.1354082318967595, -3.0683030644136933, -3.2977804004756983, -3.6339126227235914, -2.563537586335348, -3.050128310900046, -4.340999022531442, -2.966086493043982, -3.4443961510846295, -3.7333577879255855, -7.0, -3.864075777427166, -3.3634239329171765, -3.860996436757196, -2.682271463859843, -3.85658792817761, -3.523579255398529, -3.1092608334015583, -2.470891876279444, -4.035869813695553, -3.3876468462749743, -2.66573104525868, -3.7478583033812987, -2.6260836162697796, -3.494373277015027, -7.0, -4.385481150169245, -3.3090685504394175, -2.70413144332119, -2.069225341615083, -3.4235917150312236, -2.1940012589364937, -3.1807310305665903, -3.4380872482554214, -2.812579155409047, -2.668349367606713, -3.500843920902923, -4.347739717920052, -7.0, -4.3357386470050505, -3.2646801172410136, -3.1150496567022525, -1.9817592997882345, -4.035389709198677, -4.334795422556774, -3.0939927496520165, -7.0, -2.945320840792275, -2.847229804082146, -7.0, -3.0138809162279236, -2.645636799886457, -4.335257256434532, -2.81107205910691, -7.0, -3.8614746688571686, -2.4450850227193537, -3.1337454872286643, -3.862608363964942, -7.0, -3.231414972499162, -3.389972866217175, -2.9853186730361374, -2.050910057856416, -2.88218288763027, -3.8806802357832058, -1.5241725325718243, -1.917451180863874, -1.815957854947194, -3.0330214446829107, -3.855317205195943, -3.2291514006582367, -2.057639077178137, -2.3140723973996593, -2.170968230081282, -3.132619850835918, -2.2029729677980177, -7.0, -7.0, -7.0, -2.4205010561979434, -3.635121683866136, -2.8784476648392694, -3.312100387989085, -2.6465584905468207, -2.4168350793636244, -3.7408362070573116, -3.73641642358496, -2.98786048454487, -2.6982359091337726, -1.6561511826139075, -3.392540633818798, -7.0, -3.0234769399015815, -3.111669230970648, -2.3000120029278657, -3.0679709080059894, -2.362324352659981, -1.8297631007235549, -4.342837036916425, -3.048892179602324, -3.4983893302240454, -3.214321161392318, -3.873378736409141, -2.763993778305563, -2.85517289734218, -4.335618349377605, -4.344333315681277, -2.215283195057249, -2.7780969601801973, -7.0, -4.333689041703905, -2.8203681357006727, -7.0, -7.0, -4.3333868116595315, -3.7336185110286038, -3.3328220855550996, -2.6195052314655953, -3.246071626606709, -1.9490260709475087, -2.2693606403475486, -3.265034129608875, -3.114429004559742, -7.0, -7.0, -3.095924494839391, -4.034454650590254, -2.544052337213367, -7.0, -4.338894551438355, -3.867801281134174, -2.901411612182605, -4.032638903912429, -7.0, -3.3202029541600093, -3.098105089785339, -3.6367686426690313, -2.921994581367604, -4.056542788387697, -4.37287519679339, -3.6715615891070583, -3.582423231012989, -2.979001748474721, -4.35791579857913, -3.4386412206093957, -2.46480733889576, -7.0, -7.0, -7.0, -3.6465801531517243, -4.339292402768765, -3.8608169638645378, -7.0, -2.3904304068932922, -3.2248118650160023, -3.0120689351723082, -4.032800014781665, -2.435449506036116, -2.0863884511655177, -3.5685732585751744, -2.186942726764195, -2.5955312131225274, -3.0524053421921833, -2.989227273730537, -2.5759956202032677, -2.9284717181809006, -3.350926073869093, -3.511157339503544, -2.940997089103553, -3.563025984863721, -3.368641818047141, -7.0, -2.3121043694503958, -3.1320900984523248, -2.7351034471081364, -7.0, -2.5865343548445856, -3.855801728654794, -3.1975400029942715, -4.041609778130455, -3.2770167642600043, -3.861892690391446, -7.0, -2.905779531688919, -3.522574632691177, -7.0, -3.0484048061076168, -3.3190267016919766, -2.958394318227855, -7.0, -4.333044029823487, -3.640063836529813, -3.8573928109209015, -7.0, -7.0, -7.0, -7.0, -2.7836058521877196, -2.3930308975144152, -2.5979220307893294, -2.548075466728869, -4.031044716583705, -3.436580037252512, -2.894157763254254, -2.9183604584754095, -7.0, -4.335798783325366, -3.2864751824807645, -3.1267233363447597, -4.357248576936287, -7.0, -7.0, -4.335838869579954, -7.0, -7.0, -7.0, -3.6596500299986263, -2.590025897957538, -4.33270097722138, -3.856326019777088, -7.0, -7.0, -3.867781653335743, -3.565316427085621, -7.0, -3.4417344009978166, -3.2991215945305745, -3.2466689926017556, -2.544776518376729, -2.297316366077287, -2.9270470220473492, -4.334694958867158, -4.332620219565641, -2.178924267863949, -3.159811490345912, -1.8968065290910827, -4.34551095769695, -2.31334740394485, -3.6483404916891735, -3.735878227256238, -7.0, -2.7326617601288525, -2.011607069177962, -2.093275728352962, -2.386923809374673, -3.145600357652248, -2.956552591917399, -3.0651077623358094, -7.0, -4.352741915020753, -3.2029240276378017, -3.2296087164576104, -7.0, -3.8614746688571686, -4.353069502665453, -3.8608169638645378, -3.7555509188304823, -4.332902805685792, -3.2525356393017573, -2.636443644559298, -3.0497799152723837, -3.531606631932722, -3.6567879234101603, -1.4720704405603522, -2.566543246335169, -4.336479746957996, -2.5956906965576407, -4.03402652377511, -3.169694022903532, -2.804803224207489, -3.3610286258136726, -2.8867220558827404, -3.0422174200040857, -3.434265430560304, -3.884946331007737, -3.3084399050774618, -2.8363427353762822, -2.339534093100576, -2.3045982263436375, -4.3331045403985895, -7.0, -7.0, -2.4610448259425755, -2.2478862490937077, -3.863005451385769, -3.866425188468594, -2.9751927658771193, -3.5599066250361124, -3.218629270892973, -3.73814608871206, -2.938386280873121, -3.441321937582603, -3.144749291055609, -3.322649928861323, -2.741092480334294, -2.899408910925728, -1.269276111291898, -3.034675266873209, -7.0, -3.0201699775354873, -2.9938977236207234, -2.451414739478241, -7.0, -3.444454682653069, -4.337079711800931, -3.1102706498108663, -2.7892440932493145, -2.863322860120456, -3.5200153916133203, -7.0, -7.0, -3.417988073810789, -4.037406575718464, -4.042713299346113, -3.646364510503877, -2.9584785584644475, -4.038640028580474, -2.241745652570644, -7.0, -7.0, -2.3494732486769028, -2.7443962190392654, -3.4848580937261096, -3.198313363563387, -2.723077980324159, -2.9865770270305676, -2.291062491464624, -2.0901845471034233, -2.2358864186637226, -2.759382734236651, -3.119307993152975, -2.583484811154959, -2.708801104616171, -2.7658601693581533, -2.265277762889534, -3.6273658565927325, -2.7184633614386025, -2.56447851894988, -3.326322203654834, -2.3387199291037737, -3.7927942759520783, -3.3553336134554423, -2.6301872080515634, -1.930508951944087, -2.4359427216196234, -4.326949994165998, -2.971282383756981, -2.634992781745514, -2.742481981003778, -2.2568180678516794, -3.270740112262184, -2.3985208083390748, -3.2624201339243, -2.972262193363085, -2.945941786252861, -3.742672771972318, -3.6781995973581743, -3.0304677189005575, -2.788479959678761, -2.3395571527890606, -3.7453285766010675, -3.0113525433140276, -2.947038239970433, -2.5019260722283025, -2.1959855509600987, -2.9635517335740964, -3.1119529215825246, -1.895847650950953, -3.167275127208233, -3.9064427938170323, -3.4319709942774352, -2.396793274079153, -2.4122607967275096, -7.0, -2.719799490227212, -2.57103173507351, -7.0, -3.1132428258259015, -2.3769986069777973, -4.109122754158086, -4.046612209068446, -2.8708682408513573, -2.2425211132791127, -3.3852503234021976, -4.037187370937113, -3.81202716049957, -4.339928207778514, -2.501106366166521, -7.0, -3.5258850736023364, -3.4769764657595275, -3.574748708350177, -4.032981193097368, -3.3682352170082024, -2.933261259967396, -3.09207170551119, -2.0335648288946877, -2.6171168833145146, -2.3139311012962236, -2.729700270514178, -1.7198329870017677, -4.345158000269438, -2.557499181619563, -2.563218623279188, -2.718819594561594, -3.1051248065332584, -7.0, -3.166621628581135, -2.5806841888260506, -2.6044078535129347, -4.336419704862658, -7.0, -7.0, -7.0, -3.3394017480193674, -1.7072040483297801, -3.413709458318653, -1.9520735304976586, -4.036029730656543, -2.6351042182738458, -2.5383061088410503, -2.7067548777441615, -3.459938782046067, -7.0, -2.7430195349869044, -3.3344135368371, -2.6832553179742296, -2.5413711986818104, -3.1965906541173066, -3.3240016916965534, -3.0593740590659575, -3.5195092317558236, -2.7956426794216003, -3.3477787170653643, -2.9795879585788803, -3.051425881072855, -7.0, -3.646031033842023, -3.2128531899471113, -2.723402127046082, -7.0, -2.716448545602954, -3.8574531170352664, -3.7342996631372682, -2.955149043650492, -2.388904173729535, -1.8047641753770183, -7.0, -2.9784361776439243, -2.483462297921356, -3.8705599579152383, -3.0173781687181025, -7.0, -3.2415081678196804, -1.9284255736341038, -4.3338904116161245, -2.8039388622112926, -2.9073186796496047, -3.124139666498967, -1.761625795377137, -3.5635008615598887, -2.631749987592334, -3.070562787817278, -3.440239816085663, -3.15601883092165, -2.2500774312148915, -2.6336110186015156, -3.7320518194031846, -2.8447611095485645, -2.908306260085468, -3.7613263224214566, -2.3000304682218546, -3.387271150430926, -4.336739833491843, -2.998334510992717, -3.1095785469043866, -2.096902767158549, -2.696465603994037, -2.4168506413604782, -3.753563909684063, -3.7409545058228053, -3.6707559422151332, -4.341889355714299, -2.494106034228388, -3.436520434633616, -3.0864534992789943, -2.4809167613786745, -2.580209546390239, -4.031711354754593, -2.5886078047426864, -1.9576587855573357, -3.0999912335446846, -3.1641111006552047, -2.6007614933013325, -3.1751855350946574, -2.865991800126275, -3.0500702643674384, -2.6032814432190676, -2.18620267890855, -4.3534353378561645, -2.746925965479895, -4.03322264667025, -4.031630604606654, -2.7783792447073528, -2.7867696174440493, -3.067286255616976, -2.669116253163979, -2.442073689143087, -3.160543558238841, -2.778764227876941, -2.7946119582066142, -2.902886363725619, -2.9294919102505377, -3.865163219506086, -3.2793246654426103, -7.0, -2.836631992552943, -2.7958291701355673, -2.360664401848062, -7.0, -3.2794958384653494, -3.3946656621210396, -1.9283455066819617, -3.646540953360931, -4.038818787373656, -7.0, -4.333144876098619, -4.335498018419024, -4.334393428283704, -3.3820170425748683, -2.3335112471695822, -3.3154741615241607, -3.459731647856049, -4.03996902686746, -2.879609931118383, -7.0, -7.0, -4.34519723192998, -7.0, -3.1947732688446826, -4.356312741150645, -3.4884994390363193, -3.030292004582297, -3.930728348759478, -3.8667204327514666, -7.0, -3.4856149687087945, -4.341909120179768, -7.0, -2.893637567918888, -4.344981413927258, -7.0, -3.6095410528172773, -2.959976522554131, -3.896085085423285, -7.0, -7.0, -4.3677844122811535, -7.0, -2.9597907046081344, -7.0, -7.0, -7.0, -7.0, -3.871689665685515, -7.0, -7.0, -7.0, -7.0, -3.925415237084246, -3.5814945422908995, -3.898396045930009, -3.506973106258592, -3.7845816348076653, -7.0, -7.0, -3.2092468487533736, -2.847516574105306, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4178791484866298, -7.0, -3.1682617101828754, -3.7646617324292895, -3.1431944458978824, -7.0, -3.5881596163830918, -7.0, -3.1794081515138357, -7.0, -3.893317811616112, -2.356336435340471, -3.6108730003800513, -7.0, -7.0, -3.0483308017652884, -2.5540770813753886, -3.584274671924987, -3.701006406595548, -7.0, -3.6662839226231023, -7.0, -3.0828930332881797, -3.4044916177586857, -7.0, -7.0, -3.1395117739437315, -3.5787537844264343, -2.7744046578712123, -3.9114239653762946, -3.530754489047923, -3.619249898968967, -7.0, -3.137660652417374, -7.0, -3.3312826522290138, -3.2756732529227346, -3.8945929479229555, -3.6042800664521044, -3.0344056157964263, -7.0, -7.0, -3.6114577656683426, -7.0, -3.3001061379430885, -3.7279883338825006, -3.245376929578351, -7.0, -7.0, -3.6775613311560935, -7.0, -3.092896010921856, -2.9377492894912, -7.0, -3.68497993618928, -3.160248789529974, -7.0, -3.6657216683873965, -7.0, -7.0, -3.6847257048088564, -7.0, -3.8899736384039962, -7.0, -3.6889090176205546, -3.9031442704095385, -2.8898186685214093, -3.719911064198339, -7.0, -3.939069749923424, -3.1333497230802343, -3.1736024586519864, -3.7648732344371183, -7.0, -7.0, -3.9844823064022625, -7.0, -3.6723288042224165, -3.557426992378806, -7.0, -3.2828074316271527, -7.0, -3.871864702088195, -7.0, -3.9138932892309164, -7.0, -7.0, -3.3261309567107946, -3.206208870803717, -3.3754666422474324, -3.898944466866509, -7.0, -7.0, -3.4492211919059925, -3.2157071184379977, -7.0, -7.0, -3.9618006391916785, -7.0, -2.8753314070333533, -7.0, -3.0609958807280466, -3.462193736165049, -3.8984509191983747, -3.541423219342099, -3.4235735197327357, -2.616802055770164, -7.0, -3.99056082999402, -3.3435661323861248, -7.0, -7.0, -3.0316023385073954, -3.6975344625969604, -7.0, -7.0, -3.1590799785989363, -7.0, -7.0, -7.0, -7.0, -7.0, -3.344294005898312, -3.246357873040835, -3.1509405539654773, -3.771771153745868, -7.0, -3.8623103099542706, -7.0, -3.583368829892705, -3.621954820044902, -3.787011542449596, -3.659440781870318, -7.0, -7.0, -7.0, -3.0407896571244835, -7.0, -3.5676144427308447, -7.0, -3.928907690243953, -7.0, -7.0, -2.9374677396433775, -2.527721941664711, -2.6478019710944465, -2.7410037874661946, -2.516415170606379, -2.119814010658674, -3.8961402514420196, -2.8718384586230377, -3.4137466840917785, -3.3939260065858368, -7.0, -3.206987694756408, -2.740926342372719, -7.0, -7.0, -3.1861649617274153, -7.0, -3.3017810094618794, -7.0, -3.7869997221787326, -2.982020663780229, -7.0, -4.07018568637838, -3.335818826915165, -3.9292656182530656, -3.1252488362158366, -3.9352048674265814, -3.3443922736851106, -7.0, -7.0, -3.2732328340430454, -7.0, -2.9181052603565147, -7.0, -7.0, -3.3503934050950708, -2.736216041254522, -3.40426340205091, -2.322265765707363, -7.0, -2.8479494873496183, -7.0, -2.455707512181184, -7.0, -3.895919545310016, -2.920610242554322, -3.11920874228968, -7.0, -3.973589623427257, -4.472917269345676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.893095666096228, -7.0, -3.8980666606416348, -3.335027835149797, -2.8866921137603256, -3.835310000869063, -3.0440902657234554, -7.0, -2.98649181515768, -7.0, -7.0, -3.8718063644587293, -7.0, -3.2608819504635864, -3.9388198250262105, -2.320602185183319, -3.56643749219507, -3.2656431419421352, -2.4284240729856665, -2.7072862306926577, -3.869173027321683, -2.9223217045445207, -2.0769639103881374, -3.5285264676240913, -7.0, -7.0, -7.0, -3.8840586470939384, -3.3020060605865402, -3.9007493580610793, -7.0, -3.904715545278681, -3.4697484005051664, -7.0, -3.814180981040187, -3.830299898378829, -3.6419200744131177, -7.0, -7.0, -3.4415066124941145, -7.0, -4.012710712741787, -2.6487393784940823, -3.093615390353539, -7.0, -7.0, -7.0, -3.4470287577940395, -3.054404108446577, -3.165487137148075, -3.60859734044574, -2.996011044453897, -7.0, -7.0, -3.8781194846971676, -3.925466800691538, -3.294378035587241, -2.661587347244496, -7.0, -3.284374328300976, -3.2269605935324526, -2.804480189105993, -3.336309606123844, -7.0, -7.0, -2.4877321182290824, -7.0, -3.3850250382961597, -3.933892035764211, -3.622073767651025, -3.8691143269793753, -3.8805277781988052, -3.215373152783422, -7.0, -7.0, -4.035469763481283, -7.0, -4.204554060135243, -4.007833092701319, -1.793728772440664, -2.220798618877941, -1.3735599382065473, -3.9677819080757994, -3.5083401254993674, -3.3800000750090593, -7.0, -3.8669368177316397, -3.566201718854913, -3.625621081424908, -7.0, -3.8910912264677235, -2.945523292505061, -7.0, -7.0, -3.9581336756762355, -7.0, -3.777499319590365, -2.823202438384847, -3.916611845109346, -3.7458162082818403, -7.0, -3.36543292378377, -3.3823080457324823, -3.513578060938442, -7.0, -2.9148057701698518, -3.176982408475351, -3.412830002562326, -7.0, -3.912168896059627, -7.0, -3.540663098377016, -3.11544408343624, -3.7868223794991875, -3.9583727324786073, -7.0, -7.0, -3.97648753730519, -3.186786876733249, -3.2016701796465816, -2.228706076874652, -2.5773768919170146, -2.5068994614132776, -2.6579327842065577, -7.0, -3.8714561740229536, -4.365029112607194, -4.343178747552447, -7.0, -7.0, -4.290568798984483, -4.008316226356639, -4.162086240240854, -7.0, -4.07333598198359, -4.216245097705822, -7.0, -7.0, -4.7731645347378375, -4.550028490833373, -4.654195800629739, -4.451970549629459, -4.733486163475413, -4.957334270883196, -7.0, -4.439285313665999, -7.0, -4.497066208066182, -7.0, -7.0, -7.0, -4.452644967679994, -4.720084846541146, -4.348441167278361, -7.0, -4.822410013411183, -7.0, -4.259458489134114, -4.146484631135281, -4.3532813395452905, -3.9494388010365045, -4.280578370368076, -7.0, -4.2470521748566155, -7.0, -3.681874122128647, -3.3089377249826804, -3.885361220031512, -4.049876719873882, -3.8650150921872437, -7.0, -3.8493426222695306, -3.9647780220223763, -3.661487467656179, -2.151110436197178, -1.9994732631471908, -2.9359856330811804, -3.23814298390106, -3.039770926931579, -7.0, -4.234694407142218, -3.8324131018851166, -2.9744541207240007, -7.0, -4.184308060645372, -7.0, -7.0, -3.5740519479249517, -3.816315886150352, -4.297326083558631, -7.0, -2.4171578765916593, -2.7750219919935004, -3.431207354239188, -4.113140836867081, -3.8984991354385503, -3.6743328717415724, -4.370587100246676, -7.0, -3.103352715920879, -4.054651350441742, -3.449504111539399, -7.0, -3.4135977618504896, -7.0, -2.819670459790951, -4.098989639401177, -7.0, -3.485125843470917, -3.687042671622682, -4.024690862355431, -3.3605650150028246, -7.0, -7.0, -3.4461441031404796, -4.125660151674213, -7.0, -3.5713011255662694, -7.0, -7.0, -7.0, -3.9591249024611264, -2.9649192942866427, -3.346744054604849, -7.0, -7.0, -3.0297744519159444, -7.0, -2.0767781650347885, -7.0, -3.399396792103312, -7.0, -2.773373813613427, -3.2659963704950794, -7.0, -7.0, -7.0, -3.655954372078779, -3.021752951948413, -7.0, -7.0, -4.112504458767161, -7.0, -7.0, -7.0, -3.1097894001793462, -7.0, -3.3912376459396496, -7.0, -7.0, -3.6668360970433427, -4.273087295212427, -4.135584210067757, -7.0, -3.3858296186697827, -2.370339227105049, -3.9120093755869783, -3.039678449361962, -7.0, -3.4565684542382322, -2.720405641746029, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9181352261663593, -3.9005855866499615, -3.6453240015622934, -3.7441364524012473, -3.7523942084053634, -7.0, -3.416515692139289, -2.863152848577121, -7.0, -4.3213912783116895, -7.0, -7.0, -7.0, -2.726775136464893, -2.9235400612333575, -3.9934362304976116, -7.0, -3.9334366678262804, -7.0, -3.1046422774442766, -3.0500481493617353, -3.4111144185509046, -7.0, -3.181128699747295, -3.521889599753865, -7.0, -7.0, -3.216297886630392, -3.394793028193001, -2.4746886656622498, -3.012133913649598, -2.5995138354528406, -3.994493122883512, -3.6163704722912695, -3.923036668670786, -3.2942947280422334, -7.0, -3.927319024959656, -7.0, -3.396896449142524, -7.0, -3.5206290737883683, -7.0, -7.0, -7.0, -3.76547695894516, -7.0, -4.030559245291156, -2.790988475088816, -7.0, -3.9890936926103255, -7.0, -3.4644895474339714, -7.0, -2.3799801725484517, -2.6309925539264505, -7.0, -3.3939260065858368, -3.6411269328035094, -3.6148445071937103, -3.548020694905531, -3.002436061443105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8509245755642554, -3.4218780161701265, -7.0, -7.0, -3.0011385293481347, -7.0, -7.0, -3.63382180730168, -3.9953719060281623, -3.8043439184798657, -3.281222808682314, -7.0, -3.3939260065858368, -7.0, -7.0, -7.0, -2.9213697694196323, -3.6032526619816467, -3.601299310194338, -3.3144150134136665, -7.0, -3.5010592622177517, -7.0, -7.0, -3.9645895874899035, -7.0, -3.5823664295547846, -3.457074094628222, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.203766974960574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1682617101828754, -7.0, -7.0, -5.571521334473009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.863929258997284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1403257393686665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.518075036877517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.443888546777372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292322539914916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.537617636420976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3344537511509307, -7.0, -7.0, -3.857573704147496, -7.0, -7.0, -5.451843212363449, -7.0, -7.0, -7.0, -2.8627275283179747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.273606931623152, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1078880251827985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062055247375354, -7.0, -7.0, -7.0, -3.111598524880394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1225435240687545, -7.0, -7.0, -7.0, -2.5327543789924976, -7.0, -7.0, -7.0, -4.940899809694886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.554489160003819, -4.407084835757768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.369586890736344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.131779009369187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.760497875226527, -3.1997551772534747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5563025007672873, -7.0, -7.0, -7.0, -2.7944880466591697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5950826736446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.961003210960297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6546577546495245, -7.0, -4.953774184077026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.173361116894232, -7.0, -7.0, -7.0, -7.0, -3.2161659022859928, -7.0, -7.0, -7.0, -7.0, -3.5737995822157407, -7.0, -7.0, -7.0, -7.0, -3.628695382714023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4408041673450787, -7.0, -7.0, -7.0, -7.0, -3.940690765404612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1784013415337555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2460059040760294, -4.501509176591876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626802137202601, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.017325554561722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6057358938767465, -7.0, -7.0, -7.0, -7.0, -2.9585638832219674, -4.388669463976623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.846955325019824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6679196853173615, -7.0, -3.639486489268586, -3.642068627341504, -7.0, -3.0527708694748816, -2.4703941552108724, -7.0, -3.2076343673889616, -3.2279105473700067, -3.3571722577230334, -7.0, -3.357076839842412, -3.3381243371969007, -2.4160566473150036, -3.417388646165674, -3.6895752157599384, -7.0, -7.0, -3.16721884410666, -2.7099988280251885, -3.7646617324292895, -7.0, -7.0, -2.903277062933446, -3.405943680512197, -7.0, -3.6387886671573986, -3.0791812460476247, -3.122379732069112, -7.0, -3.3318376632800164, -3.229681842317676, -2.804723423210308, -3.652343055062715, -2.978363147083883, -3.0735717283049246, -3.663700925389648, -3.144262773761991, -7.0, -2.8887409606828927, -2.002635518598138, -3.2609546193291172, -7.0, -3.6823256186678073, -2.4800788400654854, -7.0, -2.74183416300906, -3.369586890736344, -2.286939863241526, -3.152777414797245, -3.4192947217534604, -1.3581676859271297, -2.427501565240489, -2.980717404970947, -2.4511648394432353, -2.9640881248211763, -7.0, -3.696531119969607, -3.1257414391287157, -2.921166050637739, -2.7514501870983787, -3.7080808104682315, -2.8728358439998014, -2.912753303671323, -3.103347529231339, -3.3307924320732254, -2.9556877503135057, -7.0, -3.207095540419218, -7.0, -3.4926672826952765, -2.2377255117151944, -3.1747380145272865, -3.519302849235429, -3.0508898095462333, -3.046982642758214, -2.2824521678624317, -3.6338722626583326, -3.1884597362982907, -2.978750981332984, -3.2997251539756367, -2.7668773829165607, -7.0, -2.7835137861438874, -3.3916407034923877, -2.943618158464063, -3.569549464888704, -3.2824710539263124, -7.0, -2.8831684774014112, -3.0893751608160995, -2.9811539014195136, -3.1699681739968923, -7.0, -7.0, -2.5238229473051854, -3.801815168581437, -3.889917683436206, -7.0, -3.255923458732901, -3.220195287012721, -7.0, -3.6392872259102367, -2.301161580116405, -7.0, -3.0215338405254566, -3.2558351148559623, -2.5688947615018245, -2.6790517755015113, -2.9069632186628955, -2.584331224367531, -2.512133843240112, -7.0, -3.0020580148640725, -1.372372610623625, -2.489355711136674, -3.7844033017530085, -3.3936336901704776, -3.437221902399778, -3.4044916177586857, -2.9952656215665012, -2.152107121041876, -3.383994789441733, -7.0, -3.6892200372638357, -3.8968610089919475, -3.418135498425232, -7.0, -2.392696953259666, -7.0, -7.0, -2.752999084377616, -2.72326617549437, -7.0, -7.0, -2.2756254158898863, -3.6322547766847135, -3.633165353683903, -3.3392526340327, -2.9525018478630236, -7.0, -3.261411574317625, -3.365441183394879, -3.217986143224739, -2.492461047614479, -7.0, -7.0, -7.0, -3.3609718837259357, -2.6088550445640686, -3.3393662493327336, -3.2478914706214947, -7.0, -3.3657686880021926, -3.39375064034808, -3.007601806096716, -7.0, -7.0, -3.766115283221414, -3.131378035763099, -7.0, -3.257838506552783, -3.271221849767887, -2.550024411054679, -3.4983105537896004, -2.5034880388066734, -3.1557534276768173, -7.0, -7.0, -1.8134418728304351, -7.0, -7.0, -7.0, -3.220631019448092, -7.0, -2.758438753140039, -3.643057683751453, -1.8885237048094758, -7.0, -3.5163653623524644, -7.0, -3.66162340922923, -2.159651197852776, -2.3192796035605983, -2.0276044006725917, -2.284035741109785, -2.350571033954783, -2.0043213737826426, -3.4425581544959227, -3.0619799470748785, -3.7223047868743278, -3.7440581658788354, -2.6105004666431815, -3.377306251068199, -3.454590812337093, -7.0, -3.506978304246419, -2.289291592392737, -3.7142962221969014, -7.0, -2.8170968897914963, -3.6385890832927172, -2.231178215389961, -3.207005670893413, -3.2671717284030137, -3.190425084791854, -3.37984917876283, -2.4674693607397176, -2.8336428415015997, -7.0, -3.1995494966993565, -2.8114442139762446, -2.8962505624616384, -7.0, -3.1612681529456736, -2.88930170250631, -7.0, -3.656577291396114, -7.0, -7.0, -3.383366482755039, -2.425715319905376, -3.587598729721245, -2.3034221151068124, -3.781618462251087, -7.0, -3.671913012441587, -3.683137131483007, -1.6400058767914076, -3.640779477344857, -3.6522463410033232, -2.3309932190414244, -3.2719190139837946, -3.144652031188698, -7.0, -7.0, -3.6524397475894204, -3.6629466143326246, -7.0, -7.0, -3.753353212641496, -2.2175992028350455, -3.6370892735303304, -3.641176546613114, -7.0, -3.66143405039392, -2.613753756483513, -2.6873505695580273, -3.635483746814912, -3.69539410829111, -7.0, -3.461348433647983, -2.2781817845675176, -2.291000037081086, -2.4743696437288834, -2.6035380227553624, -7.0, -3.2440826434308088, -1.9271173340484586, -1.8338594232497616, -7.0, -3.463900843761717, -3.4046627008737222, -3.6630409748939745, -2.711338481578628, -2.932727367301529, -7.0, -2.0139578976422134, -2.3881108067741996, -4.03450813677917, -3.262213705476417, -3.391816923613249, -3.6514718521990424, -2.824288582459545, -2.927562826805481, -3.2172864927524905, -7.0, -7.0, -7.0, -7.0, -2.2125009481995876, -3.336859820916809, -2.6072405038317426, -2.2626281576506475, -3.7234556720351857, -2.9182925127553556, -2.6987330518075057, -3.4115667095759865, -2.745483749306146, -3.6555225962534177, -2.9501588189938732, -7.0, -3.399673721481038, -2.8484690360999636, -3.064158372463118, -2.446314249297305, -2.3712526291249394, -3.222369590552542, -3.4656058906462865, -3.5596672783880576, -3.0145205387579237, -3.521036115641491, -2.7518177877368792, -3.3378584290410944, -7.0, -7.0, -2.6186391901671824, -2.7908262735997584, -2.6714505542124947, -7.0, -3.2093139057259306, -7.0, -2.546106989324988, -3.673665876245702, -3.1713851229924988, -3.392345155361204, -2.9355072658247128, -3.061129223038102, -3.216077890434055, -3.1085248922338677, -2.5518204510649163, -3.5062291748696355, -7.0, -2.7728823371830527, -3.344059276518739, -2.789007502449785, -7.0, -7.0, -7.0, -2.6604504241975055, -2.919513912264031, -2.5286786915678543, -2.933270303341617, -3.6447339274471924, -7.0, -2.9604028181441433, -7.0, -3.689486448364248, -7.0, -3.1416587697865523, -3.670802284260944, -2.407078961826646, -7.0, -7.0, -2.835720761230848, -3.653364145691976, -7.0, -3.4318460456987254, -4.443286462201648, -2.8821290848472056, -2.9789029787033003, -3.352923487923558, -2.4518960366559517, -2.89503234432232, -3.293362554711446, -4.079922532785249, -3.846878096517459, -4.1113045292815915, -2.7708623790161773, -4.402106556827201, -3.593975822227341, -2.9285151693915554, -7.0, -3.9106599721863757, -7.0, -3.9968162719234086, -7.0, -3.1013116450211458, -3.044042990514571, -7.0, -4.392855169389535, -4.2841147684017695, -7.0, -3.0376462686996453, -3.5632674454055637, -4.012398492238693, -3.9199492952397463, -4.289722698213798, -7.0, -4.2043642046210055, -7.0, -3.6633508724665367, -3.680901812206373, -2.520449566143865, -3.7060346607143506, -3.324411077979487, -3.0502460076216558, -2.517384434736918, -2.9705018430406236, -3.4012626476284873, -3.788875115775417, -2.928230055583499, -3.5354207180561734, -7.0, -3.498407052952736, -3.2479141932058226, -3.014722098700544, -7.0, -3.453387843845202, -3.7212333700172775, -7.0, -3.5278446323871613, -4.439395859342977, -7.0, -7.0, -3.317944006899941, -3.328668590032598, -4.864639045160562, -7.0, -2.9424049408561066, -7.0, -3.4295031177076867, -7.0, -4.934856848765115, -3.2960615842131453, -4.309694029565843, -7.0, -4.0948203803548, -4.013567461993526, -4.332674059671321, -3.5969817431335205, -3.1601897454261945, -3.057116444267286, -3.305938282296858, -2.8849211734753255, -7.0, -2.7820595190929014, -3.5938949816955623, -7.0, -4.355056701706884, -7.0, -3.1929575298846564, -3.744644971105124, -3.8964894735932685, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0108367493541595, -3.0908221633946567, -2.5642334659748904, -3.658488381309017, -2.4384293248474367, -2.5849553440962674, -2.3202155460556875, -3.7712934426290596, -3.660675788338524, -2.594438592727116, -7.0, -2.521985231565218, -3.301192825565996, -3.2095150145426308, -3.479719235439571, -2.486481081182706, -2.9984046603196184, -2.849828739446336, -7.0, -7.0, -2.4006044003534495, -3.082516096060493, -2.7913397039651393, -3.278753600952829, -2.779476238043183, -3.3329431601256925, -2.895146189375992, -7.0, -2.751086554886017, -3.294456205407271, -2.331601685199343, -3.1608352072202557, -7.0, -3.2210228052048415, -2.9513722165534486, -2.705607163404605, -2.928907690243953, -7.0, -3.74170298395774, -2.4644976034256225, -7.0, -3.6567687792660166, -3.498586208817518, -7.0, -3.0355798140307355, -3.3794868137172736, -2.7947977592641324, -3.23946632295603, -3.6886867242841235, -3.0615278708905076, -2.203181876449656, -7.0, -7.0, -3.2651717231909316, -3.0097543224035777, -7.0, -2.261127916622565, -7.0, -3.6567687792660166, -2.4240645254174877, -3.1773200201636933, -2.458668755128016, -2.6532768489331393, -2.9379634365364478, -2.534502045262018, -7.0, -4.0392554438064865, -3.379668034033654, -3.2928760493088776, -2.669967369908504, -3.781324455666988, -2.930099638207734, -3.730862992046494, -7.0, -3.100930286261298, -2.2435755711032357, -2.7576671070627974, -2.5596954436646264, -2.8494194137968996, -2.7521124983293848, -2.9277901740740364, -3.7246853882373596, -2.673229066355951, -3.9286006598445242, -2.775893494557353, -3.2415464805965484, -3.167415803058745, -7.0, -3.3484346775706944, -3.228015175101788, -3.4014867017741692, -3.225503119926761, -2.3744350901089546, -3.1763083520279114, -3.0084818837366996, -3.550417377372692, -3.0242290379677126, -3.1253511205147526, -7.0, -3.2765383925663363, -7.0, -3.0730896213446686, -2.929776432804902, -3.4642907856538874, -7.0, -3.2772270809913566, -3.7134905430939424, -2.766731439484117, -3.6979264448065052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3831311681517926, -3.269746373130767, -3.469306445431168, -7.0, -3.38524868240322, -3.6577249542051082, -3.670987603010034, -3.394626764272209, -7.0, -3.8020892578817325, -7.0, -3.9221283467963626, -3.9857407410500745, -3.924486043733915, -3.6901074394563307, -7.0, -2.7834867041809632, -7.0, -7.0, -3.3725806350309133, -7.0, -7.0, -7.0, -3.8184898222042136, -2.7663452368558756, -7.0, -7.0, -3.7885925559203595, -7.0, -2.844010944373043, -3.7424894645817752, -7.0, -7.0, -3.647458652980616, -4.617339392030039, -4.7934248277031015, -4.96955102588328, -3.980660525073463, -3.590600369160912, -3.4932825782400987, -4.0402660074460846, -3.5896576010978456, -1.9301914949867172, -3.232186318508937, -4.726475708697577, -4.425654142623775, -2.3662277730015964, -2.4416658812045307, -3.197303826913918, -3.632488708541651, -5.094431529055729, -4.3956362016073784, -4.425491133590951, -2.1354082318967595, -3.1431944458978824, -5.571521334473009, -2.903277062933446, -7.0, -2.659924372244891, -2.9711510898354603, -3.714081660351876, -2.332189254363364, -2.558729597047761, -2.8988523338812024, -2.223795076826903, -2.659924372244891, -4.109260764903763, -4.530324296872574, -3.5589845322727145, -3.2486437205878, -3.663207512026945, -3.3811428613330228, -4.6685163718317675, -3.003500015009609, -4.249738631896562, -1.7514842196121183, -3.8008183956305728, -3.542483373920922, -3.038767687756788, -3.448420360470679, -3.0275725056114244, -4.003681721889419, -3.381740252243611, -3.498965816652076, -3.1140806845145326, -3.613872011614492, -1.5637051692895014, -3.0936095202736458, -2.244605096802466, -2.7321946654332323, -4.191804864059126, -3.3678100152186308, -2.7976636608710947, -4.080917284464512, -3.808881216505161, -3.8164506321689897, -4.229264028184002, -3.2976441188271366, -3.187419000615386, -2.33541961695756, -4.173781630559868, -4.3163687904089905, -2.8191189727893615, -4.3411213332477665, -3.007114868333033, -2.649838831877486, -4.109275902653879, -3.4947480952818424, -1.8998609842691896, -4.571686709006209, -3.2268529290267938, -5.094396585245832, -4.395782875918288, -2.3314613283186794, -3.2466518472694537, -3.652704085925939, -5.571555113262753, -2.886546427161451, -3.697017667097719, -2.6281775374460494, -3.0611736932801077, -2.4018721097306575, -4.317740742249334, -1.4881048331027253, -3.101651043953959, -2.433802967467473, -3.9183670583503423, -5.270516964338342, -3.2157024817843536, -3.365960949185637, -3.187715646549746, -2.899578750566868, -4.457857451703719, -2.5815114822370697, -4.125094201713969, -4.109140808689869, -4.270511140487177, -2.471445162701238, -4.27057519855504, -2.6533812859632135, -3.4969889198903217, -2.4198430917891574, -1.6524612191775423, -3.8818537660727794, -3.9920323401937745, -3.4859621691237974, -3.121863557620311, -2.045177012990046, -4.095214697082543, -5.571571419324428, -3.161378450252407, -3.1480223392162925, -2.8750612633917, -3.882115455473136, -2.6729995155027915, -2.099023146708665, -3.864464545351741, -3.1266487570908934, -3.5074778272865688, -2.124292607563691, -3.3392200721221386, -2.1825124537506366, -3.096508140805399, -4.27065438456062, -4.17424360949013, -2.175000237996708, -2.7259511122393145, -5.571512015723816, -4.156585259499548, -2.8072456440124998, -7.0, -7.0, -5.571599371148725, -4.316427011978534, -4.872608403113143, -2.728667900158172, -3.031173600321091, -2.3927331815438966, -3.178163969876514, -3.9287053536862415, -3.424160601435651, -3.839114761318349, -4.094671400641696, -3.3792032148334132, -3.1521773211707567, -1.953528853758455, -4.668488420457219, -4.156887984076337, -2.876523409926936, -2.0257917657984317, -4.209838924494543, -4.969475320893933, -3.501149813033742, -3.438966756918613, -3.240834905063529, -3.3906446440834803, -3.6978033714617387, -3.325600303415046, -3.2153824330757863, -3.385353203788192, -2.873618645598776, -3.497234056576676, -3.647629764067007, -1.534229556862382, -3.7329889622941375, -4.3954685131443085, -5.094390761004154, -3.702919331637138, -4.293147302557646, -4.01548433403675, -4.395505782843064, -2.6337492352334286, -4.066717173286226, -3.0249259662899615, -4.530211344452983, -2.640684773505455, -1.2930938683856652, -4.0538045718497075, -3.210573345194991, -3.0136022302861525, -3.563992649334369, -3.2811110868939424, -3.452085116608264, -3.382543387661794, -3.543023089872846, -3.535290635171898, -2.887380430182775, -4.003779475154853, -3.0928671726557817, -7.0, -2.4267694615865496, -3.49391789471334, -2.4907548557145915, -4.492593947407737, -2.639226611744344, -4.457605937214085, -3.014571167632066, -4.140717492997341, -3.355111200797834, -4.3414449991947865, -3.779563909804499, -2.7289053858471353, -3.1321227382746497, -7.0, -2.851682597830192, -2.8583983640189112, -3.0021087457977718, -7.0, -5.094453658681188, -3.8159317687081695, -3.8555471106407366, -4.173795601863544, -3.8395211092255126, -4.341217992586227, -3.585147789861776, -2.834929096460576, -2.5268295160483825, -2.9162216765638913, -1.8907155584821451, -4.156494400963499, -3.567427043386484, -3.381434181981451, -3.7662943109320315, -4.316290761266813, -4.19147430290536, -3.0971934465290087, -3.376784953893288, -3.4899503484509338, -5.270486679459426, -5.571528323403687, -4.492534571675094, -3.9485247389054314, -4.969483474373034, -4.080285424186225, -3.590615464696057, -2.2184336737060644, -3.8554376100505943, -3.6171576656949442, -7.0, -4.395727005831184, -3.6530089813929942, -3.7727151136811594, -5.270508810924844, -3.425833381920453, -3.3587894341625666, -3.0358925961617778, -2.9466650639704843, -2.724524387649076, -3.8570238335327254, -4.5302590908126295, -5.094429199555873, -2.2219937387619706, -3.1595602258120605, -2.1205424924463205, -3.928756528158202, -2.452447312946995, -4.040869823702905, -4.156839096701946, -4.040364955860061, -2.2774330193339303, -2.9605398778739156, -2.264080969652978, -1.8815234700203676, -3.1519342490354973, -3.256453958628053, -3.4785455506544474, -4.316417697051899, -3.653472896115473, -3.1793791861511895, -3.1007498735457943, -5.270473865990263, -4.015522748273542, -3.7275029147317134, -4.124647428970661, -3.5045881874226055, -4.872592097313848, -2.6182484922851024, -2.3665471616259084, -3.16724754053639, -3.4500800171371098, -3.643319116204025, -1.872077702725696, -2.5357768572479262, -4.2707044506134615, -2.606810478501612, -4.249432481236935, -3.7333508099061934, -2.0234588844056782, -3.3273473220791625, -2.866805903812722, -2.745208243729944, -2.9884118350354, -3.3249320097737254, -3.474290282608044, -2.938266579580553, -1.7846605609911599, -2.1789433545523966, -4.270508810924844, -5.57150619140403, -5.094388431285613, -3.0145205387579237, -1.9902774298426702, -4.027849152244213, -4.040641891544537, -2.7267109357405928, -3.2747582873708003, -2.948247974842369, -3.823687271851491, -2.863866615070336, -3.7867909735760246, -3.1437882213761426, -2.577965039175915, -4.191995636951234, -2.2428196610285163, -2.3959346665263, -1.8671743601343673, -4.368115969880938, -2.331915518756035, -2.031074609133305, -1.8173674420354016, -5.09437911228647, -3.7210252807581212, -3.739148685632311, -2.5802286615929395, -2.5294363557246826, -2.1466146192720306, -2.7530969482246705, -3.5460989704691377, -5.270472701110684, -2.867777704440707, -4.080463555206556, -3.720785680270854, -3.808747483129663, -3.084105580501069, -4.140542958380234, -1.5961402421300699, -4.726419799951237, -4.066373685809159, -2.5573110687395006, -2.765523178137077, -3.2376616015703434, -3.724517013234964, -2.7399055130335364, -2.7991063030442995, -3.4302317784112404, -2.5967085150862332, -2.0367966219629032, -3.154853485461981, -4.031505412197983, -3.185122539673452, -2.866564224322712, -2.490660190249227, -2.689407646790484, -3.166526206590297, -2.7514837724270707, -2.468038753976699, -3.5703411380770893, -3.049510408263689, -3.98425258295172, -2.2509900212015888, -2.923950049247113, -2.448803173921036, -2.9815994616341035, -3.2255688175185697, -2.9388927346460196, -3.2078295271901087, -4.294835039979782, -2.334279232192053, -3.3670470284765495, -2.7644190002806313, -2.985512748745352, -3.1938514061610848, -4.251030698729345, -3.2133504384571974, -3.4621784516532577, -2.933524217189809, -3.190027865967299, -2.2066781165037477, -3.7334205850552626, -2.535360810015817, -2.0350499109066176, -3.0108795765633274, -3.183032267162237, -2.7214155369241313, -3.1597691998503703, -1.5946023431755172, -2.9252392145091695, -3.4129654293113334, -2.8337005490492997, -1.1542108054016846, -1.822649805614788, -4.271849734966777, -2.209663496366329, -2.89186034424264, -4.726622434922055, -3.079212265974205, -2.892479561925183, -3.6367091893856673, -4.250172460601185, -1.9694607920772684, -1.572719571751327, -1.9535562765024543, -4.027735087817683, -2.667967660341314, -3.7936914585507266, -2.1332646988911512, -3.697012416744354, -2.065997950804967, -2.9753050118273934, -3.037637975298863, -4.872658481383454, -2.9435609055482006, -2.702714399048319, -2.4024357720287437, -3.140506887703148, -2.3455343675432965, -3.021303027970397, -2.1571977400586926, -2.338098971306541, -3.864601811346698, -1.807053650433598, -2.2413054552329488, -3.0278914426406773, -2.067252249586692, -5.094883215846508, -2.6401117866545993, -2.2896969042724162, -3.0742400121298266, -4.668668908051015, -4.96954869669576, -5.270493668465084, -5.571707667478758, -3.895680320361074, -2.361788883265569, -3.1258865574656323, -2.2851670183537824, -4.668708488848728, -3.399735263171256, -2.488678178460122, -3.670601819347056, -3.539712523108797, -4.156809994461382, -3.046531995970811, -4.4255214113236825, -2.2974027680604534, -2.970664845450082, -3.7867048864389106, -4.054949478651154, -3.263685654331817, -3.9106174457294722, -3.0928267958659172, -4.873485683733355, -4.367957784495365, -3.4377827213819003, -7.0, -4.341802148803916, -2.864397059718746, -3.026344570437043, -7.0, -3.096454474606331, -5.270640411608736, -4.425620381490889, -3.003290482940511, -2.173289056021275, -2.500372706879035, -7.0, -3.6990255904722655, -2.5628684747750716, -4.794280028116081, -2.981346957908639, -7.0, -3.5949912045608907, -2.370965741214641, -7.0, -3.928241018789919, -3.586854002667875, -3.4454764029676785, -2.9994017131904993, -4.668986616818102, -3.618611674183966, -3.5470277612346184, -3.9810434059034163, -3.2205229985629567, -2.6487906292519825, -3.4010680453089526, -5.270615957861121, -2.9306133334104154, -3.16095264798927, -4.211618443694198, -2.8817780961533748, -5.094965819049405, -5.270761495592153, -3.5670606448979316, -3.391326344070833, -1.5869527633672311, -3.2537679958814194, -3.606901208545657, -3.9817698346980532, -4.727056500770033, -3.5182323296424447, -3.847698347974595, -3.564831473888491, -4.367822816121378, -3.340154094072924, -2.702762185550534, -4.054186930134149, -4.872585108926733, -2.7284228629426615, -1.9160871107025628, -3.1142888471310615, -3.433528666134524, -2.6109625965853214, -3.3950994847121656, -2.9449171643218968, -3.3495845998050275, -2.848202755608424, -3.593874237290987, -4.110320296840297, -3.500452781846228, -4.229180184178066, -4.872580449939517, -3.044724692093926, -4.069161463720277, -3.7397177364027008, -3.858216656412867, -2.444336669547818, -3.8744203511135016, -3.0872320042826615, -2.5964964499907106, -3.0415392723231385, -3.1172562261895367, -4.617862013700557, -3.108549913289516, -7.0, -2.972079277025493, -2.9811151224266053, -3.770336441095149, -4.726480367434906, -3.59063520421957, -3.2065048501589817, -2.4342353567673647, -3.8240025694369812, -4.969910735382101, -5.571598206525296, -4.668479102932586, -5.270689314973614, -7.0, -5.571784506559266, -3.1798595945524055, -4.2942190152208815, -3.0567387302695983, -4.425886906586064, -4.271093139365375, -4.191540668110219, -4.109506397038123, -4.0407349395278604, -4.1918304604119605, -3.3279693044605367, -3.7666312408284446, -2.887396965867297, -3.5862875532129364, -3.790804110222411, -4.0669929309681, -4.969525404133492, -3.736004819709059, -4.210317356400843, -7.0, -2.630698004360275, -3.948933164706531, -3.89088538729425, -3.499120804923696, -4.159138980494756, -3.6100082786464394, -4.341221485894443, -4.2706986292759455, -3.5911713115781194, -4.726528116611382, -3.542598380426847, -3.4023415632229432, -4.531000232674238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7363965022766426, -3.137986732723532, -4.36078268987328, -7.0, -7.0, -7.0, -2.952038646332828, -3.4456820268526793, -2.9444826721501687, -7.0, -7.0, -7.0, -7.0, -3.0683030644136933, -7.0, -7.0, -3.405943680512197, -2.659924372244891, -7.0, -2.3010299956639813, -7.0, -1.5159826576301263, -2.26030994579492, -7.0, -3.8685033726242364, -2.6074550232146687, -7.0, -7.0, -3.1126050015345745, -3.3912880485952974, -7.0, -7.0, -7.0, -2.8342617088117708, -3.0965624383741357, -3.2232174959136897, -7.0, -1.7718546157393802, -7.0, -7.0, -7.0, -3.085290578230065, -3.2081725266671217, -3.5619357633137816, -2.9501213475113732, -3.344588742578714, -3.4054424135111656, -3.209112703738592, -2.750970984437319, -7.0, -7.0, -7.0, -3.5075860397630105, -7.0, -3.210853365314893, -7.0, -7.0, -3.1610683854711747, -3.6183619311098782, -2.7078286078115443, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3944516808262164, -7.0, -7.0, -4.42791434984591, -7.0, -3.4353665066126613, -7.0, -7.0, -3.424663890583937, -7.0, -2.785329835010767, -7.0, -7.0, -7.0, -3.552789850192782, -2.818005830532529, -2.5786392099680726, -7.0, -3.193596844909757, -3.592398846115564, -3.7371926427047373, -2.9876662649262746, -7.0, -7.0, -3.0492180226701815, -3.4574276929464847, -3.331427296520743, -3.040602340114073, -3.686397907850216, -7.0, -7.0, -7.0, -3.692979037459632, -7.0, -2.6073018058971846, -7.0, -2.895422546039408, -3.6080801001958815, -7.0, -7.0, -7.0, -7.0, -3.6939027410660605, -7.0, -7.0, -3.417969642214737, -3.2965555060882235, -2.6745856023029138, -7.0, -3.2317243833285163, -3.6116171105543358, -3.1383026981662816, -7.0, -7.0, -3.7917081888307824, -2.7701152947871015, -2.554825535577837, -3.351699700405266, -7.0, -7.0, -3.610383318582761, -3.535167485114944, -7.0, -7.0, -4.376394442037267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.865814380167968, -7.0, -7.0, -7.0, -2.3631417096979495, -7.0, -7.0, -7.0, -3.076094046682475, -7.0, -7.0, -2.56790818266893, -3.5058403523436374, -2.962369335670021, -7.0, -7.0, -7.0, -3.0111473607757975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.091261600243427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.644832328825636, -7.0, -7.0, -7.0, -2.8524037414231755, -3.1388839362423897, -7.0, -2.459057254641927, -3.633670406051444, -7.0, -3.1476763242410986, -7.0, -7.0, -7.0, -7.0, -3.1970047280230456, -7.0, -3.7058637122839193, -7.0, -3.9727118405470665, -7.0, -7.0, -7.0, -3.7897921677306754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8727388274726686, -2.9508514588885464, -7.0, -3.4578818967339924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0277572046905536, -3.1065308538223815, -7.0, -2.532117116248804, -3.4577810036026517, -3.3292961591399655, -3.8449118739121406, -5.412321920685612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.412460547429961, -3.3316297176299323, -3.024485667699167, -7.0, -7.0, -3.00987563371216, -7.0, -7.0, -7.0, -7.0, -4.467682084713682, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4718781993072905, -7.0, -7.0, -3.511749711344983, -3.1451964061141817, -7.0, -7.0, -7.0, -3.8474081224923307, -7.0, -3.6364878963533656, -7.0, -4.015778756389041, -7.0, -7.0, -7.0, -3.2327844143207414, -3.296957546032856, -2.6177294820802555, -2.0725080174785213, -7.0, -7.0, -2.8636202202703154, -7.0, -3.2748503200166645, -7.0, -2.716559774821619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.420120848085703, -2.718794669189991, -7.0, -3.501470072100412, -7.0, -4.656213231673656, -3.9168748785386835, -7.0, -3.693639026161548, -7.0, -7.0, -2.109568321112792, -7.0, -3.9766250520507276, -3.2600713879850747, -7.0, -7.0, -7.0, -2.960787780819836, -4.652587967664366, -2.9404611431699053, -2.9479236198317262, -7.0, -7.0, -3.1851878890039917, -2.8823347654013243, -7.0, -3.150756439860309, -1.9790487971416582, -1.765786159439582, -2.1957267300569976, -7.0, -7.0, -7.0, -7.0, -3.6628522332647964, -7.0, -3.9053760693328554, -3.1156805676460455, -4.761607519173373, -7.0, -7.0, -3.5288918306317196, -1.9037854146535949, -7.0, -7.0, -1.911772031594504, -2.889189612047073, -2.3334472744967503, -2.1824609220670608, -2.2249644667161625, -7.0, -7.0, -7.0, -7.0, -2.6748611407378116, -7.0, -3.3849802956513044, -3.085290578230065, -2.468807861671502, -7.0, -7.0, -4.298973090963759, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.118220621846332, -3.8827009520401465, -7.0, -7.0, -7.0, -4.245274069329869, -7.0, -4.108993244279538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4958091474186204, -7.0, -7.0, -4.361246068497589, -7.0, -7.0, -4.300254812427243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.016427410068392, -7.0, -7.0, -4.465609606995967, -3.608365550303124, -7.0, -7.0, -7.0, -3.8747288064840673, -7.0, -7.0, -4.448025752873446, -3.709317082386597, -3.7812076748228813, -7.0, -4.443982303007413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.692481182743817, -4.534296926538465, -7.0, -7.0, -2.5464604029452773, -7.0, -7.0, -7.0, -7.0, -4.092123869244251, -7.0, -7.0, -7.0, -7.0, -4.7858279199958655, -7.0, -3.7481363222044366, -7.0, -4.423458871819513, -3.590089133690572, -7.0, -3.866425188468594, -7.0, -7.0, -5.348388597857494, -7.0, -7.0, -4.612582551653833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.433595295800582, -7.0, -3.593618308129536, -7.0, -7.0, -4.350790547426457, -7.0, -7.0, -7.0, -7.0, -7.0, -3.897008193182832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3492775274679554, -3.5769169559652068, -7.0, -7.0, -7.0, -7.0, -7.0, -4.794996633134222, -7.0, -7.0, -7.0, -3.957798774929998, -7.0, -7.0, -7.0, -7.0, -4.261048643344225, -7.0, -7.0, -3.4528593357958526, -7.0, -2.8140810398403664, -3.1222158782728267, -7.0, -7.0, -7.0, -7.0, -4.004665233247877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6577931719269867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5554471443890283, -7.0, -7.0, -4.314604473213435, -7.0, -3.0687793630095612, -2.962369335670021, -7.0, -7.0, -7.0, -7.0, -2.975891136401793, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8357666456143447, -7.0, -7.0, -4.074499499644511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9291633832050645, -4.402502112664219, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0835026198302673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.122215878272827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.027050460056304, -7.0, -7.0, -7.0, -7.0, -3.4733409641859354, -7.0, -7.0, -7.0, -7.0, -3.693023067923694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.824451270036613, -7.0, -7.0, -7.0, -3.7196626830180466, -3.9120891431474747, -3.1290450598879582, -7.0, -7.0, -7.0, -7.0, -3.2977804004756983, -3.5881596163830918, -7.0, -7.0, -2.9711510898354603, -2.3010299956639813, -7.0, -7.0, -1.8377988012727573, -2.6748611407378116, -2.45838601110505, -4.020988354461687, -2.233358778039036, -2.77232170672292, -7.0, -7.0, -3.3109056293761414, -2.8603380065709936, -7.0, -7.0, -2.5183258929029195, -7.0, -3.965327156210406, -2.5185139398778875, -7.0, -2.737987326333431, -7.0, -3.344294005898312, -7.0, -7.0, -7.0, -2.4348881208673157, -7.0, -3.3285190875421873, -2.7505083948513462, -3.127968207161918, -3.7967130632808965, -7.0, -2.734399742520567, -2.4446692309385245, -7.0, -7.0, -7.0, -7.0, -3.0141003215196207, -3.5725230978496376, -3.849188998468175, -7.0, -7.0, -3.107718610520263, -7.0, -3.736157375273132, -2.790385706800655, -7.0, -7.0, -4.084101592916174, -7.0, -3.3634239329171765, -7.0, -7.0, -3.401400540781544, -3.3224260524059526, -7.0, -7.0, -3.1484484035233837, -3.0191162904470725, -2.496514518697745, -7.0, -2.008126826230696, -7.0, -3.850184028210951, -3.5435714239623652, -4.02143739646709, -7.0, -7.0, -7.0, -3.2615007731982804, -7.0, -3.5883837683787276, -7.0, -3.8499719123288503, -7.0, -2.6893088591236203, -7.0, -3.1967747357061187, -7.0, -2.9077695418108918, -2.8819549713396007, -2.788168371141168, -2.9801124999406077, -7.0, -7.0, -7.0, -7.0, -3.686529022816038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1744959193753, -4.754776302434371, -2.9818186071706636, -7.0, -7.0, -4.215937034361498, -2.8302678009336417, -2.6719438254879586, -7.0, -7.0, -7.0, -3.698383310678066, -3.478999131673357, -7.0, -7.0, -4.067665881974249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.732393759822968, -3.5532760461371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7482526493531543, -7.0, -7.0, -7.0, -3.428084929572462, -7.0, -7.0, -7.0, -7.0, -2.482873583608754, -2.889021422095225, -7.0, -7.0, -3.0818871394235496, -3.2757719001649312, -3.578524605274993, -3.2397998184470986, -7.0, -3.884107698266393, -2.916980047320382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146334793350271, -7.0, -7.0, -7.0, -3.121149319077149, -3.34456563320384, -7.0, -7.0, -7.0, -2.4865721505183567, -7.0, -3.2195845262142546, -7.0, -7.0, -7.0, -3.156952770767806, -7.0, -7.0, -7.0, -3.2536771654229244, -7.0, -7.0, -7.0, -3.473705886887772, -7.0, -3.760497875226527, -7.0, -7.0, -7.0, -2.960470777534299, -3.045948538105334, -2.6549462265843444, -7.0, -2.91204482964487, -7.0, -3.554125581513013, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6334684555795866, -7.0, -7.0, -3.6124659639531425, -3.1084522639030685, -3.831805808674391, -4.7587479291548584, -7.0, -2.910090545594068, -7.0, -7.0, -7.0, -7.0, -3.3362595520141936, -7.0, -2.929418925714293, -7.0, -7.0, -7.0, -2.5532760461370994, -7.0, -7.0, -7.0, -3.942677590997809, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1222158782728267, -3.68556261115823, -3.2794387882870204, -3.7841892053809607, -3.3406423775607053, -7.0, -7.0, -7.0, -3.838765160988825, -7.0, -3.932372282147914, -7.0, -4.711317845065442, -7.0, -7.0, -7.0, -3.516094465754475, -3.742882171437273, -3.359835482339888, -2.22212884925967, -7.0, -7.0, -3.0199466816788423, -7.0, -7.0, -3.1610683854711747, -7.0, -7.0, -7.0, -3.171433900943008, -7.0, -7.0, -7.0, -7.0, -2.673072130161556, -7.0, -7.0, -3.2127201544178425, -3.927800081376748, -3.894426837964188, -7.0, -3.587441551559959, -7.0, -7.0, -2.441470694043007, -3.2830749747354715, -3.957128197676813, -2.7291647896927698, -3.486784571399042, -7.0, -7.0, -3.367169488534681, -4.68228435847426, -2.791515211941625, -2.673020907128896, -7.0, -7.0, -7.0, -2.1224801280417966, -7.0, -7.0, -2.8115750058705933, -2.5599066250361124, -7.0, -2.920123326290724, -3.7013952690139202, -7.0, -3.11293997608408, -2.7171502028538876, -7.0, -4.556169779397686, -3.7855611597971244, -5.030219092203501, -7.0, -3.1915907263792107, -3.8145305942352303, -2.1586566299201766, -7.0, -7.0, -7.0, -2.9370161074648142, -2.743010616594783, -2.4902064351734503, -3.0269416279590295, -7.0, -7.0, -3.4008832155483626, -7.0, -7.0, -7.0, -7.0, -7.0, -2.820994641680185, -7.0, -2.380211241711606, -4.595463152458813, -4.77205018781323, -7.0, -7.0, -7.0, -4.373426962185743, -7.0, -4.289722698213798, -7.0, -3.977586438003851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.621617624802069, -7.0, -4.312621582586981, -7.0, -5.3879892372522376, -4.274411883425874, -4.532180884618628, -3.8042076050820413, -7.0, -7.0, -7.0, -7.0, -4.297227800014187, -7.0, -4.677342280911539, -7.0, -7.0, -7.0, -7.0, -7.0, -4.452874643755949, -7.0, -4.01205647985382, -7.0, -4.193235941639753, -4.066076087588171, -3.8866598978612026, -7.0, -4.0278183112472155, -7.0, -4.281235435173627, -3.692097489441729, -3.193958978019187, -4.441538038702161, -3.707352501227481, -3.777454010257933, -7.0, -4.136371723492323, -7.0, -7.0, -3.794766797940821, -7.0, -7.0, -7.0, -4.292676867185116, -4.232654522990873, -7.0, -7.0, -3.0868045767268297, -7.0, -4.65454712291749, -7.0, -5.405401006456081, -7.0, -7.0, -7.0, -7.0, -4.432504298861027, -4.004636588688825, -3.604657972047871, -3.9133899436317554, -7.0, -4.296231776287164, -4.186476030554059, -7.0, -4.040503445776426, -4.4788982217971025, -7.0, -4.171431949930172, -7.0, -7.0, -4.130987398931264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.469188514747329, -7.0, -4.184180195347259, -7.0, -7.0, -4.342659504139119, -7.0, -7.0, -7.0, -7.0, -7.0, -4.496279102458945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2598326990634834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.636287252098513, -7.0, -3.46553155697355, -7.0, -7.0, -3.9499508114323683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1225435240687545, -7.0, -7.0, -7.0, -7.0, -7.0, -3.241172786770047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.870130678165955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.334252642334231, -3.8029788553352617, -7.0, -7.0, -3.4927603890268375, -3.5890453605786625, -7.0, -7.0, -4.0046867154273835, -7.0, -3.4352071032407476, -7.0, -4.0327396052094935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.529533012323238, -7.0, -7.0, -4.069396732234589, -7.0, -3.446537167073644, -7.0, -3.2528530309798933, -7.0, -3.3432115901797474, -3.6665179805548807, -7.0, -7.0, -7.0, -3.1089031276673134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.303196057420489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.108362034955172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.197473535014777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.20390278111006, -7.0, -7.0, -7.0, -7.0, -4.20441845752325, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6339126227235914, -7.0, -7.0, -3.6387886671573986, -3.714081660351876, -7.0, -7.0, -7.0, -2.4739733021220007, -7.0, -7.0, -4.864226204379169, -2.946452265013073, -2.424881636631067, -7.0, -7.0, -7.0, -2.6009728956867484, -7.0, -7.0, -3.299942900022767, -7.0, -4.839446621166152, -7.0, -2.7788744720027396, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.128743810173325, -7.0, -3.189321841020497, -7.0, -7.0, -2.8813846567705728, -2.9159272116971158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3500540935790304, -7.0, -3.709354775834396, -7.0, -7.0, -7.0, -4.82346118709814, -7.0, -7.0, -7.0, -7.0, -3.8596185787721806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.584331224367531, -7.0, -4.451502439935573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.140947771342662, -7.0, -7.0, -7.0, -7.0, -7.0, -3.021602716028242, -3.0791812460476247, -7.0, -3.8957723455519986, -7.0, -7.0, -7.0, -7.0, -4.379776729937588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1649176661009575, -7.0, -7.0, -7.0, -7.0, -4.515555950945086, -7.0, -3.3984608496082234, -7.0, -7.0, -7.0, -3.6912362538205015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.082066934285113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8605775512444156, -7.0, -7.0, -4.673753333997826, -7.0, -7.0, -7.0, -2.8915374576725643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.394889257167419, -4.27370329631894, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1245042248342823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.459643742890279, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6875289612146345, -2.785329835010767, -7.0, -7.0, -7.0, -3.265525335219074, -3.1473671077937864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.760271660542063, -7.0, -7.0, -7.0, -7.0, -3.8318697742805017, -7.0, -3.575905941553608, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9787737843301225, -7.0, -3.946452265013073, -3.0879587894607328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3787611753163733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.913124790389559, -3.0330214446829107, -7.0, -7.0, -4.8299338468023905, -7.0, -7.0, -7.0, -7.0, -7.0, -3.251273113674373, -7.0, -3.9412131875853214, -7.0, -3.764250875438773, -7.0, -7.0, -7.0, -5.351095099964148, -3.852540985769799, -7.0, -7.0, -7.0, -7.0, -2.582744965691277, -7.0, -7.0, -3.0549958615291417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3818908806262575, -5.273071911554271, -7.0, -7.0, -5.01741735305172, -3.45178643552429, -7.0, -2.9479236198317262, -7.0, -7.0, -3.7620029693751156, -3.21818526771214, -2.7781512503836434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.544591639398066, -7.0, -7.0, -3.989727837317633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.587127024478463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.528003465383692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.610724025229824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.933659351805472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.010387598375084, -7.0, -7.0, -3.659440781870318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0968901590922195, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6046471793073565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5725812013324862, -7.0, -7.0, -7.0, -7.0, -3.229169702539101, -7.0, -3.721645766289746, -7.0, -4.494015374757144, -3.278296208091274, -7.0, -7.0, -7.0, -7.0, -3.6337713460825554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6196150057428067, -7.0, -3.414137362184477, -7.0, -7.0, -4.2430132311496775, -7.0, -7.0, -7.0, -7.0, -3.3506356082589543, -7.0, -7.0, -7.0, -7.0, -7.0, -3.971554153446061, -7.0, -7.0, -3.4998244958395794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.267504168979949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9282626755124257, -3.281714970027296, -7.0, -4.298700282631671, -7.0, -7.0, -7.0, -4.019407108018883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.920123326290724, -7.0, -7.0, -7.0, -7.0, -7.0, -3.629613445378183, -7.0, -7.0, -3.165541076722373, -7.0, -3.6110857334148725, -3.6348801407665263, -3.656194062179186, -7.0, -7.0, -7.0, -3.912363785988484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.226342087163631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3005954838899636, -3.189770956346874, -2.8433885229380875, -7.0, -3.3592661646067485, -3.3271572027970855, -7.0, -7.0, -7.0, -2.650435343270571, -2.6655316197359236, -2.6475459629789473, -7.0, -7.0, -7.0, -7.0, -2.563537586335348, -3.1794081515138357, -7.0, -3.0791812460476247, -2.332189254363364, -1.5159826576301263, -1.8377988012727573, -2.4739733021220007, -7.0, -2.0521165505499983, -3.0400086360135417, -3.3684321679068323, -2.2237554536572413, -7.0, -7.0, -3.344195715871435, -3.0506374978013096, -2.709269960975831, -3.3443922736851106, -7.0, -2.010057537162737, -3.3348556896172914, -3.3063815104465792, -3.2990712600274095, -2.7501225267834, -2.94411237698898, -3.42422807069598, -3.282244366936266, -7.0, -3.101403350555331, -3.658964842664435, -2.1954112236995664, -7.0, -2.8852607947341835, -2.83905884417379, -2.127714993360055, -3.1015752462559334, -3.3459615418131414, -2.682686478249768, -1.9634658494621036, -7.0, -2.92668535582776, -7.0, -7.0, -2.672836454171397, -3.4034637013453173, -3.2667313418701927, -3.2938043599193367, -3.2750808984568587, -2.9876662649262746, -7.0, -3.5298151966446305, -2.271299367747906, -7.0, -3.608312042697327, -3.57333261790251, -3.2803506930460054, -2.958085848521085, -7.0, -7.0, -2.7715874808812555, -7.0, -2.6287974855667104, -7.0, -3.617629297757842, -3.3754807146185724, -2.8725447293769673, -3.0848442782402152, -1.5683448430275597, -7.0, -2.8346902259765696, -3.080896934973246, -2.896048304184059, -2.5744942682853273, -7.0, -7.0, -7.0, -2.877601679729272, -3.0167827124868407, -7.0, -3.5877951224616518, -7.0, -2.958085848521085, -7.0, -2.4983916469616974, -7.0, -1.9984714135391215, -3.154271775993095, -2.0535487985639476, -2.6763311869799007, -3.361160995195026, -2.616160312847583, -2.8246138966934105, -2.9720484774455382, -2.6665690309808827, -7.0, -7.0, -2.7013212268209346, -2.732215001029787, -2.42736244013164, -3.100370545117563, -3.0065729981620746, -3.301994853902822, -3.0580462303952816, -7.0, -7.0, -3.3093302808059466, -7.0, -2.3138672203691537, -2.5266622930104643, -3.2844307338445193, -7.0, -2.9473928721027094, -2.29104577475738, -7.0, -3.262213705476417, -4.091684540012315, -7.0, -7.0, -7.0, -7.0, -7.0, -4.081455327822574, -3.3505710339547834, -2.4669235501007294, -3.792391689498254, -7.0, -3.951386094880293, -3.26528962586083, -7.0, -2.534026106056135, -7.0, -2.9518769481062366, -7.0, -7.0, -2.6794278966121188, -3.780305308257236, -2.4144958388716917, -7.0, -3.515873843711679, -2.853850249054781, -2.586812269443376, -3.459392487759231, -3.484299839346786, -3.1095785469043866, -2.668851648082519, -2.90444504107691, -2.8024316264307236, -2.707002099520009, -3.351409751925439, -3.3401144934431914, -3.3334472744967503, -7.0, -3.2412973871099933, -2.9084850188786495, -3.3240765797394864, -7.0, -7.0, -2.81135154588012, -7.0, -4.310523383951521, -7.0, -2.588436493215736, -2.7333297583119047, -7.0, -3.184762388171225, -2.7616773079942547, -2.6782147827453997, -2.615014323889285, -2.570104922212994, -2.8076703012304836, -3.4345689040341987, -3.1744959193752993, -2.9051788751397356, -7.0, -3.4764693239263837, -7.0, -2.732732259046577, -7.0, -4.067219688974141, -7.0, -2.9749391317894913, -7.0, -3.004812518287239, -3.0565237240791006, -2.8739015978644615, -3.3220124385824006, -2.5705429398818973, -2.3879615590823304, -2.4739733021220007, -7.0, -2.343698142772449, -4.38172861853511, -3.4518375861611674, -7.0, -7.0, -3.021602716028242, -2.669316880566112, -3.296445794206396, -3.3406423775607053, -7.0, -3.0567143295163945, -2.978043493909963, -1.8578492061672989, -4.173448514744314, -4.266916778057951, -7.0, -2.8528864461530965, -2.6545615547417434, -3.4300750555519395, -3.2593549273080344, -7.0, -2.6972293427597176, -2.785472203306388, -7.0, -7.0, -7.0, -3.286905352972375, -3.3109056293761414, -7.0, -3.2821687783046416, -2.6461235362250264, -3.7450357345667062, -2.77232170672292, -2.782233672588372, -7.0, -7.0, -7.0, -3.06595298031387, -7.0, -2.3774883833761327, -3.7907776013376937, -1.8858023520977822, -3.392638340062748, -2.6657464890759366, -7.0, -7.0, -7.0, -3.342639773794436, -7.0, -3.1032293300163634, -7.0, -3.643032984773319, -7.0, -7.0, -7.0, -2.3544220657953714, -3.136910727481376, -2.2761274421265845, -1.8312160648801672, -3.917558020825436, -2.4649364291217326, -2.3725438007590705, -7.0, -3.1451964061141817, -3.0235610900969454, -2.324499061028818, -7.0, -3.3176455432211585, -2.6694718473766423, -7.0, -2.4825877695267677, -3.2528530309798933, -2.849542252005017, -2.528207213524963, -2.6570558528571038, -2.832082924950745, -7.0, -3.9057038389018577, -2.8821923815471764, -7.0, -3.7132594739307883, -3.2785249647370174, -2.914166793875635, -1.7850724244637253, -3.210318519826232, -3.5392852461514557, -2.754061514909023, -2.8305303467241485, -2.817036226050029, -3.3710678622717363, -2.7167186243047006, -4.157128056609563, -2.2394496414571745, -2.777185077611623, -7.0, -7.0, -2.9439888750737717, -2.1211352942926553, -7.0, -2.7638022240745928, -2.208732401028409, -2.709905669040404, -2.4944076056666726, -7.0, -3.5020855592260456, -7.0, -2.5722075432302685, -2.895422546039408, -7.0, -3.5427009694481106, -2.6305973558006004, -4.263262426772131, -7.0, -3.0993928573323, -3.184860064113035, -1.7977515163651112, -7.0, -7.0, -7.0, -2.98109342314593, -2.6390174887025926, -2.0131048534191742, -2.233123078521081, -2.6653464274249417, -3.238798562713917, -3.2837533833325265, -7.0, -2.890607291367314, -2.781216659079688, -2.718124074303963, -7.0, -2.2686546414005466, -7.0, -2.9564085711958326, -3.831613855309099, -7.0, -7.0, -7.0, -7.0, -3.9200015118779157, -7.0, -3.827078353439126, -3.586722297518069, -7.0, -7.0, -7.0, -4.4288310513865685, -4.702542542403012, -4.596322138680332, -7.0, -4.685822321854299, -4.929500667570718, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7705329210993614, -3.3029181682256157, -7.0, -7.0, -7.0, -7.0, -4.783975003412671, -7.0, -7.0, -4.350209240309948, -4.228656958108935, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5138013224159392, -7.0, -4.205393852614679, -4.071005172856093, -3.6546577546495245, -7.0, -4.355144896174567, -7.0, -3.3141657830188542, -3.348927619178392, -7.0, -7.0, -3.3666050425418725, -3.6923885981513846, -7.0, -3.9808362964839756, -3.90156729002845, -7.0, -3.878694100396108, -4.397035735379094, -7.0, -7.0, -3.8213126016291095, -3.9456837798020445, -5.707576136961682, -7.0, -2.5125158799574394, -7.0, -4.183734740768417, -7.0, -5.407664483299706, -3.5208109315364733, -7.0, -7.0, -4.348810920405178, -3.9761359127824605, -4.315123310117041, -7.0, -3.771121828334957, -3.887898488096872, -3.413872747686039, -3.6606622359058285, -2.9034517483472246, -3.47278081981647, -4.485238608775484, -3.6953065224318027, -4.17401714218392, -7.0, -3.117519866385761, -3.667743423125636, -4.323994202181974, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9823277781189925, -3.080506233707164, -2.6745462253948187, -7.0, -7.0, -3.253729320398597, -7.0, -3.525044807036845, -7.0, -3.5391388535767745, -7.0, -3.444404634409438, -2.7811168235623858, -3.363235804483694, -7.0, -7.0, -7.0, -3.775100498879025, -7.0, -7.0, -7.0, -7.0, -7.0, -2.651278013998144, -2.7665987210642644, -7.0, -4.065093989357153, -7.0, -7.0, -7.0, -3.952982608415478, -4.0190608745376055, -7.0, -7.0, -2.696749435201623, -7.0, -2.849214606209089, -7.0, -3.471438407389299, -2.866150961478457, -7.0, -7.0, -7.0, -2.988261596728756, -3.1857545757350607, -7.0, -7.0, -2.946288473013431, -3.36679638328673, -2.904038968600478, -3.087347537450042, -7.0, -7.0, -2.7269987279362624, -2.9644482079166607, -7.0, -7.0, -7.0, -7.0, -7.0, -2.839980557678343, -3.031083981800209, -7.0, -3.721150843749684, -7.0, -7.0, -7.0, -3.0488300865283504, -7.0, -7.0, -7.0, -2.805047523584979, -7.0, -7.0, -2.7975560510930397, -2.7674230420253365, -3.1364827496008227, -3.26030994579492, -3.1286819205220584, -3.3268476989159903, -3.353788044826781, -2.961421094066448, -4.083215862155997, -7.0, -7.0, -3.126780577012009, -3.2692793897718984, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504619123819373, -7.0, -3.898478353232805, -3.659405104516471, -3.169600968020925, -3.314183339137377, -7.0, -2.4915017662373264, -7.0, -2.854685504019982, -2.8204933731124284, -7.0, -7.0, -3.193958978019187, -3.115943176939055, -3.241363826010479, -3.385963570600697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8850217948622974, -7.0, -2.61870166264718, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.67391132703678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7381857702399692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.473591229933489, -7.0, -3.2005769267548483, -3.808418952199765, -3.466274321789292, -7.0, -7.0, -2.83248230070942, -2.906335041805091, -2.515211304327802, -2.6103939697123133, -7.0, -7.0, -7.0, -3.050128310900046, -7.0, -7.0, -3.122379732069112, -2.558729597047761, -2.26030994579492, -2.6748611407378116, -7.0, -2.0521165505499983, -7.0, -2.696356388733332, -3.6392227387738147, -2.0012047011383705, -7.0, -3.0916669575956846, -3.17868923977559, -3.427323786357247, -7.0, -3.570776368794748, -7.0, -2.5646660642520893, -7.0, -3.728344415396529, -7.0, -2.8904210188009145, -2.847726855657811, -2.813358558611011, -3.2258259914618934, -7.0, -2.355547295732133, -7.0, -2.8226038992559745, -7.0, -3.15558638660026, -3.538070787043172, -2.556754655396264, -2.934309037350079, -7.0, -2.6309361190641916, -3.234137489450963, -2.9434945159061026, -7.0, -7.0, -7.0, -3.220631019448092, -7.0, -3.6825962914605532, -3.1027766148834415, -7.0, -2.9014583213961123, -7.0, -7.0, -2.243658026638696, -7.0, -3.0484418035504044, -3.8487302293839014, -7.0, -7.0, -7.0, -7.0, -3.009610221198917, -7.0, -7.0, -7.0, -3.53731527311201, -7.0, -3.100370545117563, -2.773681984491958, -2.3942765267678214, -7.0, -3.2971851752651826, -3.6154239528859438, -2.899546931090867, -7.0, -7.0, -7.0, -3.3900514964589874, -7.0, -7.0, -7.0, -3.692700074142474, -7.0, -7.0, -7.0, -3.2247919564926817, -7.0, -2.5804973099769506, -7.0, -2.4868730494439446, -2.5683439757819593, -7.0, -7.0, -7.0, -7.0, -2.2649763214333523, -7.0, -7.0, -3.15060295179301, -3.6205524447294355, -2.849156072011022, -7.0, -3.891314399382143, -3.5288637896169446, -7.0, -3.8804705928037784, -2.9114239653762946, -3.13893832067623, -2.9960736544852753, -2.45687190911158, -7.0, -7.0, -3.2211533219547053, -3.1995864208954536, -2.5591881890047756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.091315159697223, -7.0, -3.4532036344562216, -3.4790711958039306, -2.8720688221022472, -7.0, -7.0, -7.0, -3.0576661039098294, -7.0, -7.0, -7.0, -2.912399211126715, -7.0, -7.0, -1.876637651626655, -3.435856611877713, -7.0, -7.0, -7.0, -2.7317901537745826, -1.778513011738925, -2.86053763630648, -3.3710678622717363, -2.8974896345771866, -2.7836177651907485, -2.922898380345496, -3.613154437759265, -3.3740147402919116, -7.0, -3.572339562116119, -7.0, -7.0, -7.0, -3.239049093140191, -7.0, -7.0, -7.0, -3.0013009330204183, -7.0, -4.295391147571982, -7.0, -3.4712917110589387, -3.1473229160377674, -7.0, -3.7345598215794764, -3.0520202439786086, -7.0, -3.003029470553618, -2.2081725266671217, -3.0998532198843813, -3.0038911662369103, -3.0586157970105616, -3.0910511241341787, -7.0, -3.723701893991268, -7.0, -3.1368111300765356, -3.4219328132785085, -3.8778702482588185, -7.0, -3.31983447960114, -7.0, -3.8055008581584002, -3.1986570869544226, -2.8834721588455867, -7.0, -2.584331224367531, -2.6440867345657413, -2.8588378514285857, -7.0, -3.0112884341835358, -4.36891880234938, -3.8918161195248606, -7.0, -7.0, -3.1473671077937864, -3.0696680969115957, -7.0, -3.1734776434529945, -2.7788744720027396, -2.897352134344313, -3.9457147140598603, -2.5030120284659807, -7.0, -4.599569030966235, -7.0, -7.0, -2.4933186082321015, -7.0, -7.0, -7.0, -2.8438554226231614, -7.0, -3.0661394928706995, -7.0, -7.0, -7.0, -7.0, -7.0, -2.782830805202592, -3.382197210377454, -4.042713299346113, -2.428944290035574, -2.445214876056217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1020905255118367, -3.5257572431523108, -3.1582418379808734, -7.0, -7.0, -7.0, -3.374402075504582, -2.3890049062287417, -3.2196967711811264, -7.0, -4.239441300467461, -7.0, -7.0, -3.143014800254095, -1.9237704465403997, -3.187168065939373, -2.646715543393583, -2.0114042816397744, -3.401802479247905, -2.871378315564175, -3.2242740142942576, -7.0, -7.0, -3.5476516583599693, -2.824646414718352, -7.0, -7.0, -3.3248994970523134, -7.0, -7.0, -7.0, -1.9255308560401887, -2.7041505168397992, -3.0068937079479006, -3.5296869537729165, -7.0, -4.355844065953179, -2.927010868975651, -7.0, -3.3458962687263867, -7.0, -7.0, -1.385855581574104, -2.9283958522567137, -3.140642701035818, -2.2388441244514645, -3.8303319934519617, -3.413132050434872, -7.0, -2.8680563618230415, -4.573540076446994, -2.701460045579318, -7.0, -7.0, -7.0, -3.0236639181977933, -2.355296410064838, -7.0, -3.2116544005531824, -2.104350519242735, -2.5285953576940683, -2.4371160930480786, -7.0, -2.709655349661963, -7.0, -2.504244254358882, -2.8363241157067516, -7.0, -4.258894575054327, -3.3984608496082234, -4.495450091431051, -7.0, -3.0570952896126675, -3.2650455111829446, -1.7218310466708049, -7.0, -2.963787827345555, -7.0, -2.912434633375575, -2.7129085955138073, -1.9852018583645716, -2.5354523617941673, -2.281412167517624, -7.0, -2.4952667443878105, -7.0, -3.2137832993353044, -3.2362852774480286, -3.102262149494273, -3.155336037465062, -2.5093503992977833, -7.0, -7.0, -3.8240824240027838, -7.0, -7.0, -7.0, -7.0, -4.3848370882036845, -7.0, -3.89867034296553, -3.8047072118408556, -7.0, -7.0, -4.317791816053072, -7.0, -7.0, -4.5885518064856425, -7.0, -4.378461495902037, -4.6248696977974015, -7.0, -7.0, -7.0, -5.38910581074388, -7.0, -4.239074138235893, -3.426998958756537, -7.0, -7.0, -7.0, -7.0, -3.9337619793526004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8602481432437283, -7.0, -4.018648496692656, -3.2615007731982804, -4.199032580145495, -4.068415939746929, -3.9207492612757084, -3.7134065321676912, -7.0, -7.0, -3.574119376510415, -4.020112569565467, -7.0, -4.150249723240066, -3.4883579673077088, -3.2879628814848645, -7.0, -3.8451445690733057, -3.861653870213911, -3.089905111439398, -7.0, -7.0, -7.0, -7.0, -4.040145039872181, -3.9446983557777644, -5.70697964523269, -7.0, -2.3961993470957363, -7.0, -4.356513447223032, -7.0, -5.105440351415542, -3.7984434603501875, -4.234188147853202, -7.0, -7.0, -7.0, -4.185237503623307, -7.0, -3.6286187898185123, -7.0, -3.82246230575867, -4.496334505996817, -7.0, -3.7161556147759103, -4.481910592562872, -3.0265332645232967, -4.394529504405298, -7.0, -3.657915936829955, -4.1376705372367555, -4.309332019875982, -7.0, -7.0, -7.0, -7.0, -7.0, -3.331860940572651, -2.861683729919097, -2.8783849969106328, -7.0, -7.0, -3.2082685564036995, -7.0, -7.0, -7.0, -3.7939998009844706, -7.0, -3.687549540152836, -3.199480914862356, -7.0, -7.0, -4.14674801363064, -7.0, -3.7208205817703437, -7.0, -7.0, -3.821513528404773, -7.0, -7.0, -1.8587923111903113, -3.1231980750319988, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0175167795241205, -7.0, -7.0, -7.0, -2.8876641776072915, -7.0, -2.59402403573142, -7.0, -7.0, -3.034887856589644, -7.0, -3.1075491297446862, -3.1829849670035815, -7.0, -3.036069700697702, -7.0, -3.3749315539781883, -3.291146761731886, -7.0, -2.922379406594948, -3.4114092409812082, -7.0, -7.0, -2.768109312089503, -3.291479852236699, -7.0, -3.8642440146472476, -7.0, -7.0, -7.0, -7.0, -3.0878145586758183, -3.245636029406203, -7.0, -3.3525683861793083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2415464805965484, -7.0, -7.0, -2.931775592908094, -2.903532098852894, -2.9800033715837464, -3.4689378056654614, -3.4156826728335363, -7.0, -2.9378759549297913, -3.010087846998524, -3.4550733759211245, -7.0, -3.328787200354535, -3.296665190261531, -7.0, -7.0, -7.0, -7.0, -3.252124552505644, -3.5407047833107623, -3.8384586796874895, -7.0, -3.577692815569536, -3.7759864553175277, -2.6743600316646345, -3.534660575828444, -7.0, -2.174096167093953, -7.0, -3.0026843129897296, -2.9427519204298136, -7.0, -7.0, -7.0, -2.324053698651949, -3.8039860045173377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.366111523378347, -7.0, -2.5743620327718135, -7.0, -7.0, -3.1109262422664203, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5268882610813685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8080353284442587, -7.0, -7.0, -7.0, -3.5221833176186865, -3.202079441007388, -7.0, -7.0, -3.4608978427565478, -7.0, -3.7113853790984517, -3.3562171342197353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1869563354654122, -7.0, -7.0, -4.163535418640821, -7.0, -7.0, -7.0, -3.596652066132439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.340999022531442, -3.893317811616112, -7.0, -7.0, -2.8988523338812024, -7.0, -2.45838601110505, -7.0, -3.0400086360135417, -2.696356388733332, -7.0, -3.8664763785264977, -1.9528616037229394, -7.0, -7.0, -2.9786369483844743, -7.0, -7.0, -3.500373714353374, -7.0, -7.0, -7.0, -3.779866155645193, -7.0, -7.0, -3.0538464268522527, -7.0, -7.0, -2.638988159343682, -7.0, -7.0, -3.1586639808139894, -7.0, -3.3772526682027864, -3.4616485680634552, -3.6093809442507068, -3.1992064791616577, -7.0, -7.0, -3.4584867637982066, -7.0, -7.0, -7.0, -7.0, -7.0, -3.580810972660946, -3.850293878845634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4267974435651265, -7.0, -3.075364446373285, -7.0, -7.0, -3.8828659197216293, -7.0, -7.0, -7.0, -2.343181273996572, -3.048053173115609, -2.160686755849163, -3.5577477416414682, -2.2419085435453248, -7.0, -3.783400727102669, -7.0, -4.0244035626829655, -7.0, -7.0, -7.0, -7.0, -7.0, -3.596377143997599, -7.0, -4.1532659350758685, -7.0, -7.0, -7.0, -3.0749535069180194, -7.0, -3.398287305357401, -7.0, -3.6416723732246865, -2.860555779914859, -7.0, -7.0, -7.0, -2.5893910231369333, -3.483587296968894, -7.0, -7.0, -7.0, -7.0, -3.643551368562945, -7.0, -3.8754953408710184, -4.153220159636364, -7.0, -7.0, -7.0, -4.392362752025857, -7.0, -2.9848272404840994, -3.3171227377145382, -7.0, -7.0, -7.0, -3.1879435290625273, -7.0, -2.7573960287930244, -4.370068760650052, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188084373714938, -3.4369573306694496, -3.4584867637982066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4580710082030826, -2.7179903781599086, -7.0, -7.0, -7.0, -3.02391309743574, -7.0, -2.7058637122839193, -7.0, -7.0, -7.0, -3.210318519826232, -7.0, -3.1149444157125847, -3.0946457896059547, -7.0, -7.0, -7.0, -7.0, -3.527996414185576, -7.0, -7.0, -7.0, -7.0, -2.9304395947667, -7.0, -7.0, -3.024895960107485, -7.0, -7.0, -7.0, -3.252124552505644, -3.226076412987496, -7.0, -3.6875289612146345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6754116937148633, -7.0, -3.9565045903166975, -7.0, -4.344254692556935, -2.863322860120456, -7.0, -7.0, -7.0, -7.0, -3.240798771117331, -7.0, -7.0, -3.7511250715355837, -7.0, -7.0, -3.1010593549081156, -7.0, -3.8596185787721806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.594060901270418, -3.8341026557127935, -4.867956309564652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4683473304121573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2681097298084785, -4.2441137656630215, -7.0, -7.0, -7.0, -7.0, -7.0, -3.030599721965951, -7.0, -7.0, -3.6919651027673606, -7.0, -7.0, -3.2203042611135873, -7.0, -7.0, -7.0, -3.840273420400613, -7.0, -7.0, -3.0670708560453703, -4.711925273632879, -7.0, -7.0, -7.0, -3.5192590585137475, -7.0, -3.965577957910528, -3.0248139326293106, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4730488050885375, -3.4456042032735974, -7.0, -7.0, -3.1920095926536702, -7.0, -7.0, -7.0, -2.8813846567705728, -2.756230272933612, -7.0, -7.0, -7.0, -3.6849158582733965, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2972131959896416, -7.0, -7.0, -3.5182506513085, -3.793021659845983, -3.307923703611882, -7.0, -7.0, -4.573181149242739, -2.9722607095873457, -7.0, -7.0, -7.0, -7.0, -2.2246884174572874, -7.0, -7.0, -3.4265112613645754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6732257630203846, -7.0, -7.0, -7.0, -4.833961483448347, -7.0, -2.5178207322576007, -4.115926549726361, -2.018496104177425, -7.0, -7.0, -7.0, -2.8488047010518036, -7.0, -3.1266183755229515, -7.0, -7.0, -7.0, -2.810064414845355, -7.0, -3.0330214446829107, -7.0, -3.3530502396425894, -7.0, -2.9595047561076266, -7.0, -7.0, -4.5962561231022905, -7.0, -7.0, -7.0, -4.713423335653093, -7.0, -7.0, -7.0, -4.181826444403178, -7.0, -7.0, -7.0, -4.242433752322269, -4.697094149742253, -4.105101244549642, -7.0, -7.0, -7.0, -7.0, -7.0, -3.584218112117405, -5.388117194117044, -7.0, -4.5330981124594105, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9966794618656425, -7.0, -4.677999100468688, -4.325125526216931, -7.0, -7.0, -4.086217415693343, -7.0, -4.453975401295882, -7.0, -4.012816141937047, -7.0, -7.0, -4.024944423608711, -3.5895586720415062, -3.6638892986226614, -4.02928229515597, -3.368658712392227, -3.820600545981254, -3.297059824075058, -3.505149978319906, -3.3631417096979495, -3.1917256596242463, -3.265896771013757, -7.0, -3.9613894503284546, -3.8270460170047342, -7.0, -7.0, -3.772413397736013, -7.0, -7.0, -3.736577973773599, -4.0108735476108945, -5.007527588642865, -7.0, -2.1851347241927237, -7.0, -3.508515290343504, -7.0, -4.706540274057084, -4.079868335175173, -3.617629297757842, -7.0, -4.32364392313595, -4.433657846692988, -4.084347453490981, -3.612359947967774, -4.216377057988173, -7.0, -4.053555850013714, -4.1874925189804255, -7.0, -3.829956579636221, -3.5089671596982126, -7.0, -4.444600977071155, -7.0, -7.0, -3.43253103602832, -3.820091941269979, -7.0, -7.0, -7.0, -7.0, -3.7200765727681406, -4.470248739825372, -7.0, -3.5839917991983166, -7.0, -7.0, -4.043008409879952, -7.0, -7.0, -7.0, -3.7532765701844184, -7.0, -3.756290249756674, -3.62283547952152, -7.0, -7.0, -7.0, -7.0, -3.1946993054635864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015359755409214, -7.0, -7.0, -7.0, -4.4927534067443124, -4.788486548560839, -7.0, -7.0, -3.6398847419163043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.148479258163154, -7.0, -7.0, -7.0, -7.0, -4.201326882336002, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7788022040132385, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7989267385772014, -4.029251845772462, -7.0, -7.0, -4.307303450866765, -7.0, -7.0, -7.0, -3.734519807346076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530455843584676, -7.0, -4.163638359628923, -4.246400090154285, -7.0, -7.0, -7.0, -2.7919244549379605, -7.0, -3.3502480183341627, -3.6732052817790453, -7.0, -7.0, -7.0, -7.0, -4.095483185829541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8073320392911905, -7.0, -3.0170333392987803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.809694358716924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1984646353719155, -7.0, -7.0, -7.0, -7.0, -3.419955748489758, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2340108175871793, -7.0, -7.0, -4.388870545406613, -3.6600349733461006, -4.864267760535243, -7.0, -7.0, -4.0267141585600665, -4.392966472124374, -3.7513738660351916, -4.088915346604906, -2.1209033854240165, -4.192573028326205, -4.563225892089558, -4.3882670215945305, -2.97716286346543, -2.9848158340017705, -4.869407749382202, -3.691164038557998, -4.563071516383439, -4.388000494229575, -7.0, -2.966086493043982, -2.356336435340471, -4.863929258997284, -3.3318376632800164, -2.223795076826903, -3.8685033726242364, -4.020988354461687, -4.864226204379169, -3.3684321679068323, -3.6392227387738147, -3.8664763785264977, -7.0, -2.693679744284389, -3.2016701796465816, -2.9502698435505628, -3.0084937139891323, -2.1599680188106682, -3.202458701293772, -3.55708880365784, -7.0, -3.9719191579347575, -7.0, -2.211852607386131, -3.751290950370651, -3.4516742765040034, -4.272259442940222, -4.170279321571128, -3.4096344784215926, -3.3887345299220177, -4.023375938139562, -3.8010204744912124, -4.091332756361876, -3.917698019853736, -2.1784276781301344, -3.28648525823423, -3.263227077694896, -2.6941911513458114, -7.0, -3.63724832231457, -3.057573901907062, -4.390988066615901, -3.8684974938893117, -3.965501557108345, -4.563979170379509, -4.867567652782026, -3.8417063578630106, -2.737732667645749, -7.0, -4.56370055036805, -3.700247843649352, -7.0, -3.6621965517146178, -2.1863683671103558, -4.262943248490909, -4.0992373747636766, -2.586151421082641, -7.0, -4.096811561767263, -7.0, -7.0, -3.204933522354145, -7.0, -4.088017897250127, -7.0, -3.555503261386879, -4.168621213306193, -2.9813712474524343, -3.5394296891509516, -3.366947995954321, -7.0, -2.2342360669286863, -3.6512095798542563, -3.6646210854682453, -4.864748335629659, -7.0, -4.0320716634698215, -4.872214563397586, -3.295630749386032, -3.1844756492424127, -7.0, -3.1319292790782756, -4.867962195629719, -4.5633089947461265, -4.864255887753539, -3.499279872843174, -7.0, -3.699467710045164, -4.171445606835973, -3.4389941506285777, -2.682212788529763, -4.3900397028302365, -7.0, -4.09120956473413, -3.7561560889553665, -2.640342011536324, -4.86840930331496, -7.0, -4.0961913852351834, -3.735844033532741, -3.354712775236435, -3.7891986564290945, -2.767992110572119, -2.7007508422080138, -4.088921244740673, -3.4384768764335347, -3.4691737711599395, -2.5501875723158833, -3.7901502325789487, -3.4305530141906666, -3.68087351479754, -4.864985460659794, -4.566537657118045, -2.769541950043048, -3.387372601202775, -7.0, -7.0, -2.5266486493232416, -7.0, -7.0, -7.0, -4.865038795953643, -7.0, -2.2623721514962294, -3.312366681284554, -2.8448177596031714, -3.935277686286775, -4.867673684585095, -3.9045965441868544, -7.0, -4.263559143134499, -3.8697420092806674, -3.6941972918756796, -3.368128214530098, -4.864303376933002, -7.0, -4.022610982753226, -2.3885720910509756, -7.0, -4.864036182725775, -4.173925979028537, -4.025340981997151, -3.785756799962643, -4.870608712866837, -3.7253222994444557, -2.409078641752536, -2.7950859806492927, -2.858543037490597, -2.6932599947567177, -3.085664823858279, -4.565841917893188, -2.203948373797962, -4.866346422749602, -7.0, -4.863905494593343, -3.54553684113762, -4.020905585532556, -4.166678718451888, -7.0, -3.075783043496683, -7.0, -3.2811423061693956, -4.563427685249018, -3.8504624327615167, -2.227639369195755, -4.567314623179351, -3.8476960207341655, -3.7078085468549555, -3.9673782967941977, -3.4773065141793995, -4.093024567839438, -3.550135134309459, -3.8281617011169873, -4.02608946331455, -3.6309925539264505, -4.565653050578184, -3.5457905215795247, -7.0, -3.496764708268367, -3.441636958215057, -3.396249832845416, -4.8653527487813975, -3.0515281051482557, -7.0, -3.5721244644195123, -4.389939444053016, -3.7572149376681385, -4.564973629882831, -4.86686011175598, -2.294718581133095, -2.820399103879156, -4.863822308937582, -3.6996065029245266, -3.166229669531838, -2.8596949382417227, -7.0, -7.0, -3.7519597469003356, -4.864683103542188, -4.388160430275948, -4.021390150745712, -7.0, -3.9639176242328817, -3.3889834112903867, -2.748809143809384, -2.3041835419294423, -2.6036833269790702, -4.863953022100917, -3.202979643989544, -4.2649004255169745, -4.8695074678560335, -4.165327436733526, -4.086828283728044, -2.918932721836841, -4.570612981730594, -2.8328017810711708, -7.0, -4.018795571889457, -3.910713317671148, -3.962529147470517, -7.0, -3.6342875546005997, -3.291742638086838, -2.2602768129942987, -7.0, -4.864368666076987, -4.863804481366742, -7.0, -3.9646013670437754, -4.566337304164903, -4.864030243209204, -3.788498328434222, -2.871292205822265, -4.270568210861315, -3.782274119790817, -3.451605533164384, -4.571108788363788, -7.0, -7.0, -2.8419288412102115, -4.572679959416505, -3.1960135401118857, -3.0346343538000164, -2.759924217918967, -4.868521008351567, -7.0, -4.263866763229076, -2.9663105116413515, -3.3366042522547557, -2.92973814254741, -2.69675950864028, -3.599817595608217, -4.02576216145282, -3.9644776657900826, -7.0, -3.6938617292635936, -3.7321524180652137, -3.2858802988894116, -7.0, -4.388746359046655, -3.091373812473584, -4.5646542304537565, -3.6410014137444193, -7.0, -4.397331570391128, -2.6902981285842693, -3.790443508353784, -3.7982995236374486, -4.570040642457214, -2.4780334926983727, -3.3144614414085494, -7.0, -2.2088657877076616, -4.387686374306485, -4.2660846327618, -2.9486460646637145, -3.457491776105673, -3.435026375328703, -3.624831922757537, -1.4426505265509397, -2.304048889849097, -2.4532205978433916, -4.1761202110560856, -2.684179751046336, -3.2220495643794016, -7.0, -4.863852019929494, -4.8638936119037135, -3.532349964092412, -3.39396559561541, -3.3218764508736407, -3.788056364365024, -3.4962144560637816, -4.388622137165492, -3.794644866269577, -7.0, -2.96528011476304, -2.729359915776269, -3.1695745172047043, -3.3055493481139395, -4.390540649832289, -2.7841928196976142, -3.230856581359965, -2.5332689299307587, -4.1687213496997, -3.3652787155355575, -1.7125376361476683, -2.818968476456068, -7.0, -3.789316247841687, -7.0, -3.559222427207474, -3.103411940177142, -3.3600919894948293, -3.669688708056208, -7.0, -7.0, -4.399079259948645, -3.6895752157599384, -2.952644807190157, -3.5059399585908717, -1.8912002859464372, -3.450929751236355, -2.2347644128428783, -7.0, -4.563267445405564, -3.0710793127277585, -3.2274680884279663, -3.3692682018262334, -4.584952815690992, -3.7933223233860316, -2.8210117908556285, -4.001290107998124, -3.234478345557588, -3.2795236294273167, -3.684153359757077, -4.185581814639974, -3.6888224537429393, -3.3977488770479587, -3.0799373127778655, -2.8475333646529832, -4.195115185724885, -2.761223080137496, -2.7139201123494434, -3.6908056454924374, -3.8554772198341833, -4.105175109470305, -3.0454643571683375, -3.4047624682427946, -3.6131462965186256, -3.97727638194836, -3.6308991759102316, -3.7715176648201174, -3.6434378707401143, -7.0, -3.3883742444866853, -3.559567511673805, -3.3985222965710804, -2.910229876516631, -3.3120050534980376, -7.0, -3.3259772150789204, -3.790268920325332, -3.858318018621179, -3.5292131133128692, -3.6943075566062507, -3.2883139564962867, -3.6147663409308692, -2.925498564509372, -3.8258857029949604, -4.109544800878346, -3.49578015230518, -4.57372425780422, -2.4655151160777895, -2.882055227035669, -3.5177579875862306, -2.137802313334469, -2.5979606503538215, -2.3805998688962626, -3.1714924272529013, -3.537636744269928, -3.8993224739323775, -4.56397324415489, -4.42003280277851, -3.090850169017244, -4.189372389686722, -3.6379486218402337, -2.385667809098233, -2.4276495217654266, -2.622502345281835, -4.263671568048523, -2.9393453429619147, -4.2641682560516845, -2.426379720020594, -3.3158046790494526, -2.9609541815104348, -4.082369848659487, -2.5535111069782914, -4.864522946865742, -3.556446313801048, -2.57835482977221, -2.9170845376550236, -3.6058831910843505, -3.518114068443985, -4.199052719385967, -3.1807364413106, -3.0051216062891455, -4.390681989145567, -2.7311626256773534, -2.3451158088439428, -4.183582992351017, -2.698431410789216, -4.389266521813607, -4.185236086141411, -2.8710311121124183, -3.48847080648477, -7.0, -4.387265215784176, -7.0, -4.563836918664545, -3.548662964853018, -3.054200095548161, -3.5322214596157986, -3.1513204137732407, -7.0, -4.173733891880797, -2.9500615985548566, -4.398657449294496, -3.0530493264922316, -4.020390881862707, -3.614686342282013, -7.0, -2.1566356727947436, -3.470150302299499, -4.566207614748667, -2.159735490902105, -4.031716401140356, -3.9194906795740487, -3.410805342142755, -7.0, -4.86693681773164, -3.8543888618404702, -4.088915346604906, -4.168809686171092, -4.093964214254529, -3.4036066130850333, -7.0, -3.2557023906723335, -7.0, -4.865240225749968, -1.8774881971522934, -3.0149138474140975, -3.1773289409373007, -7.0, -2.1872701029937605, -2.815577748324267, -4.567567425898288, -3.3218457327785256, -7.0, -3.615611083250255, -2.955740651181192, -7.0, -4.865317218342029, -3.79636037082412, -3.8293564113962555, -3.9349471026077483, -7.0, -3.9685529904026318, -3.7899800418403067, -2.8839688333242246, -3.6682577529497595, -3.6145703180599975, -3.283015932570804, -7.0, -3.3131772257740724, -3.1396615986156613, -4.396269107674459, -3.6590249900894882, -4.866830605849827, -7.0, -3.374322358254613, -3.2825233495096477, -2.161629083938574, -3.49791974275339, -3.8842230999548395, -4.393885094130324, -7.0, -3.787629385435588, -3.213116184718616, -2.9451752606966317, -4.2641564367458855, -3.66985708763779, -3.365988720422906, -4.092077028628151, -7.0, -3.2338565584774353, -2.993164817641717, -3.3667002284829333, -2.388658488974814, -3.064200518562613, -4.033366305327212, -3.550183864786063, -4.267746494644809, -3.5788735345046243, -4.587042737459709, -4.0921180144435105, -4.392292361088971, -3.7505083948513462, -7.0, -3.2475322959136936, -4.401187937219147, -3.9139668289142224, -3.7988002176790006, -3.5358737182193245, -4.396803566827695, -3.8263937997178976, -2.581998623763598, -3.319415576268741, -3.4796156140571486, -2.7039196051869374, -3.5100201829742788, -7.0, -2.6865910208269637, -3.4408528809028094, -4.588490200062119, -4.262195896425577, -3.570805538589023, -3.754965460970997, -2.8030999214991477, -2.8937558614379575, -2.901387240163748, -7.0, -7.0, -4.86494990015796, -7.0, -7.0, -3.943456042152199, -3.3147798252899086, -3.7939765374934558, -3.7872833199241156, -4.566172238185459, -4.865376434126184, -4.264115066642318, -3.91350184863534, -4.167831093602893, -4.030698006758963, -3.9680332443643405, -2.6653770298617583, -3.89463723318385, -2.3913719860159928, -4.566413920620156, -7.0, -4.036275202822311, -4.264758811598086, -7.0, -2.484841345882423, -4.168756686444427, -3.826051231125912, -3.8809907025954717, -4.576231898813378, -2.9947800791984687, -4.38773380319581, -4.564168766882124, -3.8332340664594575, -7.0, -3.131111922645758, -3.9168047518661746, -4.868473978153819, -7.0, -7.0, -2.9552065375419416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.137986732723532, -3.8440663777932302, -7.0, -7.0, -7.0, -7.0, -3.524915147539867, -3.2460059040760294, -7.0, -7.0, -7.0, -7.0, -3.4443961510846295, -3.6108730003800513, -7.0, -3.229681842317676, -2.659924372244891, -2.6074550232146687, -2.233358778039036, -2.946452265013073, -2.2237554536572413, -2.0012047011383705, -1.9528616037229394, -2.693679744284389, -7.0, -7.0, -3.009450895798694, -2.1529674602085436, -1.8480078966750186, -2.2753113545418118, -3.5451833682154064, -7.0, -2.9595183769729982, -7.0, -3.8639423913994935, -3.03261876085072, -2.6496593222923464, -3.416640507338281, -7.0, -3.6845760873884554, -2.6067395461469105, -7.0, -7.0, -2.9501213475113732, -3.344588742578714, -3.1321422390564218, -3.0327530302850567, -2.671481400086431, -2.9787672693102545, -7.0, -7.0, -2.551178818143956, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1408221801093106, -3.75859399963138, -7.0, -7.0, -2.774224904868919, -7.0, -7.0, -2.1389524923183503, -7.0, -7.0, -4.42791434984591, -7.0, -3.4353665066126613, -7.0, -7.0, -3.2996162399984135, -7.0, -7.0, -7.0, -2.730109055128691, -3.1646502159342966, -2.2933625547114453, -7.0, -2.207595901910711, -7.0, -3.7128970270359547, -3.592398846115564, -4.038302172199525, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6326597132939136, -7.0, -7.0, -7.0, -7.0, -2.646893624167745, -3.215505378231818, -2.9749719942980692, -7.0, -7.0, -2.672836454171397, -2.6685830178507195, -7.0, -7.0, -7.0, -7.0, -3.438489607941805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.186419489155475, -4.7579423494097774, -7.0, -3.390758528738717, -2.8506462351830666, -4.29695462344912, -2.946697837245742, -2.42907905946471, -3.652922887567942, -7.0, -7.0, -3.19506899646859, -3.233884108765886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1436392352745433, -3.162116141062368, -3.866877814337499, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2641091563058082, -7.0, -2.5975123635772417, -7.0, -7.0, -2.323104706828374, -3.115474908292482, -7.0, -7.0, -7.0, -7.0, -2.1609399149830604, -7.0, -3.3298045221640695, -3.1687920203141817, -2.9745116927373285, -3.362293937964231, -3.124178055474675, -7.0, -7.0, -3.595506938209761, -7.0, -7.0, -7.0, -7.0, -3.077731179652392, -7.0, -7.0, -3.343605508104172, -7.0, -7.0, -7.0, -3.756560043006683, -3.1008170492152898, -3.199480914862356, -7.0, -3.633670406051444, -7.0, -3.1476763242410986, -7.0, -2.7596678446896306, -3.256958152560932, -3.3176455432211585, -3.373279893277496, -7.0, -3.4046627008737222, -7.0, -3.9727118405470665, -7.0, -7.0, -7.0, -3.7897921677306754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.733999286538387, -3.1272668183188985, -7.0, -3.4578818967339924, -7.0, -3.8797837800904156, -7.0, -7.0, -2.7741518589547103, -2.6807886115066824, -7.0, -3.1065308538223815, -7.0, -7.0, -3.6339731557896737, -2.0794913456551614, -7.0, -5.111288563823859, -7.0, -2.0831441431430524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3683902022528986, -7.0, -7.0, -7.0, -7.0, -7.0, -2.522009286567709, -7.0, -3.8655333169173196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721315880605899, -7.0, -7.0, -3.1451964061141817, -7.0, -7.0, -7.0, -3.4212336317086427, -7.0, -3.7614767795447017, -7.0, -3.714664992862537, -7.0, -7.0, -7.0, -3.1076762465264816, -7.0, -2.8341481053996023, -1.5676347070372152, -3.866759783495108, -7.0, -3.1652443261253107, -7.0, -3.2748503200166645, -3.219322508419337, -3.018423082826786, -7.0, -7.0, -7.0, -3.0538464268522527, -7.0, -7.0, -2.8170693164140133, -2.6063324993460637, -7.0, -7.0, -7.0, -3.9027961001341844, -7.0, -7.0, -3.596685045096567, -7.0, -3.1911714557285586, -1.8672710189654482, -7.0, -3.6755033847279566, -3.5613399414589013, -2.2936638342808666, -2.139508685967779, -3.578524605274993, -7.0, -4.749501846606125, -3.5944478006117335, -7.0, -7.0, -7.0, -7.0, -2.1787851634605526, -7.0, -7.0, -2.4765418090274287, -2.57978359661681, -2.4480188730153554, -7.0, -3.735918116531297, -2.5631843347973486, -2.7556208080010745, -3.0602255243941676, -7.0, -4.558672577786327, -3.7928992371582373, -4.761607519173373, -7.0, -2.3873898263387296, -3.543140559786548, -1.7624471699896267, -7.0, -2.910357557272878, -7.0, -2.587037117743456, -3.0356298277904386, -3.1536624535754956, -2.7055216134226674, -2.9749719942980692, -7.0, -3.467312062980552, -7.0, -7.0, -7.0, -2.781845095648946, -3.085290578230065, -2.5673103646159388, -7.0, -7.0, -3.754795943844005, -4.775093209551623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.104595216241666, -7.0, -7.0, -7.0, -4.421381787662514, -4.698592003682626, -4.108993244279538, -7.0, -4.6775704558523765, -4.4476695770227925, -7.0, -4.32132911339302, -7.0, -7.0, -7.0, -3.9353182915022433, -7.0, -7.0, -4.361246068497589, -7.0, -7.0, -4.078377057151801, -7.0, -7.0, -7.0, -4.204581175577571, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2076343673889616, -7.0, -4.2895034823507485, -3.9095025414054154, -7.0, -4.337279516037941, -7.0, -4.0903739568450685, -3.5338991007965945, -7.0, -4.448025752873446, -3.362322223700609, -3.5380618005555218, -7.0, -3.744887285866299, -7.0, -7.0, -7.0, -4.380844126464666, -7.0, -7.0, -4.215324660030519, -4.209757632436364, -5.405766276814029, -7.0, -2.769295252092732, -7.0, -3.67865732337852, -7.0, -4.707127140138086, -7.0, -7.0, -7.0, -4.330677516998936, -4.1380657456377685, -4.183725258045579, -7.0, -3.9242792860618816, -7.0, -4.201588281073518, -4.192316504702737, -7.0, -3.440259515107366, -3.7537697194437687, -7.0, -4.3069569682845685, -7.0, -3.6370892735303304, -3.767357323504857, -4.003697433719652, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8731316106240805, -2.953920690616223, -2.7794854894727083, -7.0, -7.0, -3.748614356905319, -7.0, -2.6864575104691117, -7.0, -3.7788744720027396, -7.0, -3.5695253732681067, -2.8779469516291885, -7.0, -7.0, -7.0, -7.0, -3.4016589724951523, -7.0, -7.0, -7.0, -7.0, -3.1740598077250253, -2.2658001678796333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.250893773087252, -4.790911166601595, -7.0, -2.598927227835204, -2.6549462265843444, -7.0, -3.0457140589408676, -7.0, -3.00987563371216, -3.0049658871068234, -7.0, -7.0, -3.151523067564944, -7.0, -3.7183355789085066, -3.1222158782728267, -7.0, -3.241048150671644, -2.301649973616383, -2.7585334222372864, -3.527372082827612, -7.0, -7.0, -2.812133153334518, -7.0, -7.0, -4.15896526038341, -7.0, -7.0, -7.0, -3.1058506743851435, -3.146163152410619, -3.519827993775719, -7.0, -7.0, -7.0, -7.0, -2.34143452457814, -7.0, -7.0, -7.0, -2.9846558789107185, -7.0, -7.0, -3.0432312493636555, -3.157144358673168, -3.182414652434554, -2.1076944030298352, -3.314225470926497, -3.5229655954919865, -3.4671639659690903, -7.0, -3.5719028431953865, -7.0, -7.0, -2.9457147140598603, -2.975891136401793, -7.0, -7.0, -7.0, -3.1970047280230456, -7.0, -4.057666103909829, -7.0, -7.0, -3.9495363733761426, -3.3981136917305026, -3.0291131048924633, -7.0, -2.5634810853944106, -7.0, -2.5049689845761307, -3.004149341900059, -7.0, -2.649821463224565, -7.0, -2.5296869537729165, -3.255926900338438, -2.4802944600030066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8068580295188172, -7.0, -7.0, -7.0, -7.0, -7.0, -3.458033192496506, -7.0, -3.8211203237768236, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1231980750319988, -7.0, -3.8051472978004104, -7.0, -7.0, -3.5776066773625357, -7.0, -3.1720188094245563, -7.0, -3.0211892990699383, -7.0, -7.0, -3.693023067923694, -3.313445370426414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.359108792853317, -7.0, -7.0, -7.0, -3.890197386210029, -4.207768969739924, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7333577879255855, -7.0, -7.0, -2.804723423210308, -4.109260764903763, -7.0, -2.77232170672292, -2.424881636631067, -7.0, -7.0, -7.0, -3.2016701796465816, -7.0, -7.0, -2.606381365110605, -1.919078092376074, -2.66228551572213, -2.2380461031287955, -7.0, -7.0, -3.3261309567107946, -7.0, -4.6637386065732995, -7.0, -2.8603380065709936, -7.0, -7.0, -7.0, -7.0, -2.394013663157313, -7.0, -7.0, -2.9006401839826004, -3.8283161051206496, -3.4184670209466006, -3.594503043820089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.448226940521222, -7.0, -7.0, -7.0, -7.0, -7.0, -3.13840796891747, -7.0, -7.0, -5.12490182000836, -7.0, -3.3236645356081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.814414087772258, -7.0, -3.168939213835978, -3.523486332343228, -2.920123326290724, -7.0, -4.531006045114355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.966000857628784, -7.0, -7.0, -7.0, -7.0, -3.676126370759378, -7.0, -7.0, -3.059184617631371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9960736544852753, -3.566349092191664, -4.2760786594797535, -7.0, -7.0, -2.9041743682841634, -7.0, -7.0, -3.4194600727860704, -7.0, -7.0, -7.0, -3.995086496505733, -2.9711211579147765, -7.0, -7.0, -4.36496351982702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.715836275164994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.049876719873882, -7.0, -7.0, -7.0, -7.0, -4.5398034973846775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5777789366952244, -2.5880848733346493, -3.3453737305590887, -2.378397900948138, -3.265525335219074, -7.0, -7.0, -3.1592555821612995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3120715213029315, -7.0, -4.2767144946302915, -7.0, -7.0, -3.5333714390119844, -7.0, -3.361160995195026, -3.566319621524811, -7.0, -2.737987326333431, -7.0, -3.227372442289636, -7.0, -7.0, -3.613630434925241, -7.0, -7.0, -7.0, -7.0, -3.2579184503140586, -7.0, -7.0, -4.068556895072363, -7.0, -2.966063474430522, -7.0, -7.0, -7.0, -7.0, -3.2520435349731076, -3.31492005599242, -7.0, -2.874675052177361, -4.0521358093017765, -2.9388948175981704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.902764143924086, -2.8627275283179747, -4.126391191616615, -5.4118023069162495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9626624199215337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.584331224367531, -7.0, -3.288115025288103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7695250201710504, -3.804480189105993, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8328664197968454, -7.0, -4.107498272612255, -7.0, -7.0, -7.0, -7.0, -3.7267272090265724, -3.9525018478630236, -3.400192488592576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1832698436828046, -7.0, -7.0, -3.9196532823103643, -7.0, -3.4073909044707316, -2.6769982707961844, -4.529289160043351, -7.0, -7.0, -3.9809573162296203, -7.0, -7.0, -7.0, -7.0, -3.94733567594874, -7.0, -2.730562063805724, -2.3384564936046046, -7.0, -7.0, -5.129323744920132, -3.5588884895367348, -7.0, -7.0, -7.0, -3.4403579968152878, -2.995854479874566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.929929560084588, -7.0, -2.997495599658018, -7.0, -7.0, -4.384120341773882, -5.574176008432909, -7.0, -3.000867721531227, -4.318931056493988, -3.762378429311964, -7.0, -7.0, -7.0, -2.9108910886445285, -3.7712199019495336, -7.0, -7.0, -7.0, -7.0, -3.364550995353972, -7.0, -7.0, -7.0, -3.6270584640009895, -7.0, -3.4212747912103465, -7.0, -7.0, -3.894172012566013, -7.0, -7.0, -7.0, -7.0, -4.369698138949881, -7.0, -7.0, -4.578232226348149, -7.0, -7.0, -7.0, -4.416265954074959, -7.0, -4.278090224037604, -7.0, -7.0, -4.921608451502453, -7.0, -7.0, -7.0, -5.086596492271168, -7.0, -4.529597161225425, -4.098366796439331, -7.0, -4.355365304018832, -7.0, -7.0, -7.0, -7.0, -4.374445883792621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6120417446452695, -7.0, -7.0, -5.065389225679412, -3.8751191654625683, -7.0, -7.0, -7.0, -4.933972940101611, -7.0, -7.0, -7.0, -4.359740647863716, -4.678836926900922, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.689748260013518, -4.584579967666666, -5.706270459100365, -7.0, -7.0, -7.0, -4.653574275130625, -7.0, -7.0, -7.0, -4.212613696645057, -7.0, -7.0, -7.0, -4.78141067367645, -7.0, -7.0, -7.0, -4.897214590564255, -4.484669899885333, -7.0, -4.465521644855828, -4.95506688604493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.932980821923198, -4.3386556655787, -7.0, -3.2598326990634834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6461095219788477, -7.0, -7.0, -3.7633531087482153, -7.0, -7.0, -7.0, -3.4992745818922173, -7.0, -7.0, -7.0, -7.0, -7.0, -4.190737783739713, -7.0, -7.0, -3.4104397862103464, -3.626032247829019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.663700925389648, -7.0, -7.0, -7.0, -2.900913067737669, -7.0, -3.977266212427293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7033500097793364, -7.0, -3.571825249040829, -3.15259407792747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1514209286929065, -7.0, -2.241172786770047, -4.301398989173564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.356083249147294, -7.0, -7.0, -7.0, -3.924795995797912, -7.0, -4.155396773704851, -4.544068044350276, -3.642068627341504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4424797690644486, -3.203304916138483, -7.0, -3.7895807121644256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.310976378660635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.747411807886423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495738547239104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.2042773858780045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9138138523837167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.652343055062715, -4.530324296872574, -7.0, -7.0, -7.0, -7.0, -3.0916669575956846, -7.0, -2.9502698435505628, -3.009450895798694, -2.606381365110605, -7.0, -7.0, -2.568201724066995, -7.0, -7.0, -7.0, -7.0, -7.0, -5.14091637693907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0056094453602804, -7.0, -7.0, -4.208677789064284, -7.0, -3.896415976473123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.147382573846098, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2323607123535703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.627956975499418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.536955042101058, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.294298648755626, -7.0, -3.4217684012069243, -7.0, -7.0, -7.0, -3.995393852839795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7170044070405472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8165726960261033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.370698092575577, -7.0, -7.0, -7.0, -7.0, -7.0, -4.090336275034143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9151887051731564, -7.0, -7.0, -7.0, -7.0, -4.3117615646589496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7460890430562004, -7.0, -7.0, -7.0, -7.0, -2.2487903775753857, -2.166260913692354, -7.0, -3.3552599055273786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.649594448966077, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4771212547196626, -7.0, -2.81888541459401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5613945925060193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.66838591669, -7.0, -7.0, -3.80543288813214, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8330450630415167, -7.0, -4.709727764559769, -7.0, -7.0, -7.0, -3.139384266388006, -7.0, -3.475864810477393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.318011132969562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.680154141734373, -7.0, -7.0, -3.09143245732978, -2.7601710828477963, -3.9480215331411035, -3.4825877695267677, -3.297030604235048, -3.248463717551032, -7.0, -7.0, -5.82830793676512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3820170425748683, -7.0, -3.287129620719111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.378930599420471, -7.0, -5.273151801393888, -7.0, -7.0, -3.4992120475889656, -3.4622482153549976, -7.0, -7.0, -7.0, -7.0, -3.4710715736130306, -3.2301081646076315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023773574676574, -7.0, -7.0, -4.593385766043638, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278250442299367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6789642806521305, -7.0, -7.0, -7.0, -7.0, -7.0, -4.068723756708053, -7.0, -7.0, -7.0, -5.487709514323861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9427321004917895, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305082539675178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2380461031287955, -7.0, -7.0, -7.0, -2.400537989391946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.212453961040276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.632963168167261, -3.6267508536833932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.148294097434746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.899734541432098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.628726016090374, -7.0, -2.7244806771885997, -7.0, -7.0, -3.2436993270506815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.797168578888417, -7.0, -7.0, -7.0, -7.0, -3.6255182289716377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.961421094066448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.782472624166286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.204971450346999, -7.0, -7.0, -7.0, -4.199261380177078, -4.215452492883251, -7.0, -7.0, -7.0, -7.0, -7.0, -3.864075777427166, -3.0483308017652884, -7.0, -2.978363147083883, -3.5589845322727145, -3.1126050015345745, -7.0, -7.0, -3.344195715871435, -3.17868923977559, -2.9786369483844743, -3.0084937139891323, -2.1529674602085436, -1.919078092376074, -7.0, -7.0, -2.3712731539238234, -1.3996737214810382, -3.2009872191631663, -7.0, -3.0800850850458694, -7.0, -4.141719359930591, -2.571708831808688, -2.70372115992702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.86123561863404, -3.274388795550379, -3.3176884121580343, -7.0, -3.91126417099837, -3.2001662463631075, -7.0, -7.0, -3.159266331093494, -7.0, -7.0, -7.0, -2.837588438235511, -7.0, -7.0, -3.9754777631658746, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9454685851318194, -7.0, -7.0, -5.125838963995005, -7.0, -2.9014583213961123, -7.0, -7.0, -7.0, -7.0, -2.2474822606770544, -7.0, -2.6831971832643395, -2.7516639462609866, -2.143014800254095, -7.0, -3.2909245593827543, -7.0, -3.868892214759676, -7.0, -4.024977972095624, -7.0, -7.0, -7.0, -2.6780629049743454, -7.0, -3.5979144712025284, -7.0, -4.1536929400085505, -7.0, -7.0, -7.0, -2.9370161074648142, -7.0, -7.0, -7.0, -3.643057683751453, -3.1010774667367107, -7.0, -7.0, -3.1565491513317814, -7.0, -3.785009335604058, -7.0, -7.0, -7.0, -3.560026248912892, -7.0, -2.805160901599434, -3.6997510316895146, -3.9102431437972904, -7.0, -3.848250714677042, -3.037426497940624, -4.6934719238588585, -7.0, -7.0, -2.715271944117935, -7.0, -7.0, -3.7002492870420225, -3.1899112096928057, -7.0, -7.0, -4.37032800777951, -7.0, -7.0, -7.0, -7.0, -7.0, -3.334936032690669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.397070549959409, -4.060886623004662, -3.3569814009931314, -7.0, -7.0, -7.0, -2.9626932593928177, -7.0, -7.0, -3.3089910290001643, -7.0, -2.5403294747908736, -3.2140486794119414, -7.0, -2.7183355789085066, -2.69810054562339, -2.8171244614184556, -3.4072208929273966, -7.0, -7.0, -3.3730055379654496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.775974331129369, -2.546851001781394, -7.0, -7.0, -7.0, -7.0, -2.6670127621315003, -3.0979510709941502, -3.0861818046497493, -2.643013773485817, -3.2113875529368587, -1.8649423566468655, -7.0, -2.9943171526696366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6018427897820984, -7.0, -3.289514631590605, -7.0, -2.766164891363784, -7.0, -7.0, -3.752202153176521, -7.0, -7.0, -3.404833716619938, -4.057647088848993, -3.3830969299490943, -7.0, -7.0, -7.0, -2.8000293592441343, -7.0, -7.0, -7.0, -7.0, -3.9181352261663593, -2.6395971516419463, -4.135641416386669, -5.111011175368067, -7.0, -2.9537596917332287, -7.0, -7.0, -7.0, -7.0, -3.0517311960598494, -7.0, -2.4043449214283257, -7.0, -7.0, -7.0, -2.6026025204202563, -7.0, -7.0, -7.0, -3.4957672749725406, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0362295440862943, -7.0, -3.0644579892269186, -7.0, -7.0, -3.7902851640332416, -2.4988354603129688, -3.278982116865443, -2.803457115648414, -7.0, -4.016699138064971, -7.0, -4.234542591311529, -7.0, -3.6704820018641366, -7.0, -7.0, -2.625826713285711, -7.0, -7.0, -3.4889265663567914, -2.946615995262667, -7.0, -7.0, -7.0, -7.0, -2.889581802149624, -7.0, -3.146438135285775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.060508975605298, -2.350910791047725, -3.1734776434529945, -7.0, -7.0, -3.956110776938729, -7.0, -7.0, -4.288517501797074, -7.0, -3.0874264570362855, -3.599992177584098, -3.302114376956201, -3.1826048405181293, -3.5200903281128424, -2.6159500516564007, -2.610234175334389, -3.0613267969905547, -7.0, -4.787079019289936, -3.8769679674325848, -7.0, -7.0, -7.0, -3.7636525705645303, -2.782677335215046, -7.0, -3.0354297381845483, -7.0, -7.0, -7.0, -7.0, -3.708760723690317, -2.096137246822133, -7.0, -3.0278590441755795, -3.0565237240791006, -7.0, -7.0, -5.03026885912154, -7.0, -2.416640507338281, -4.0190581035565085, -3.4823017672234426, -7.0, -3.113609151073028, -7.0, -1.8132913875518861, -3.4907308083489235, -3.2528530309798933, -2.2620553771910674, -7.0, -7.0, -3.4154741681092355, -7.0, -2.5599066250361124, -7.0, -2.809367293505889, -2.6459132750338443, -2.59402403573142, -7.0, -2.754348335711019, -3.897352134344313, -7.0, -7.0, -7.0, -7.0, -3.772834927239018, -7.0, -7.0, -4.880922152331826, -7.0, -7.0, -7.0, -4.242549709960113, -4.52105522846, -3.9802988641377226, -7.0, -7.0, -4.62206370411517, -7.0, -7.0, -7.0, -7.0, -4.276392863069535, -4.533276237578995, -7.0, -7.0, -7.0, -7.0, -7.0, -4.775005728078465, -7.0, -7.0, -7.0, -3.8944545273697826, -7.0, -4.086715663944882, -7.0, -4.454189113874769, -7.0, -7.0, -7.0, -4.671191362340761, -4.367464015212066, -3.8914817038395197, -7.0, -7.0, -7.0, -4.3906071186911975, -7.0, -7.0, -7.0, -3.963107529523544, -4.079335031445408, -7.0, -3.7396988963507187, -3.82795052830263, -7.0, -7.0, -7.0, -7.0, -7.0, -4.213867353906041, -4.257602351404392, -5.706516373170063, -2.910624404889201, -2.548564890653246, -7.0, -3.75173606623822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.306324931691518, -7.0, -4.216746333609975, -3.811709026696191, -4.199782593968986, -4.011570443597278, -7.0, -4.098930359493644, -4.111296126482262, -7.0, -5.046711672296513, -7.0, -7.0, -4.006947136561108, -7.0, -7.0, -7.0, -2.7058637122839193, -7.0, -3.7212333700172775, -3.771366970857781, -7.0, -3.7093830437734763, -7.0, -2.6011905326153335, -3.6452257115354163, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019697730980192, -3.3230457354817013, -7.0, -7.0, -4.129593228367933, -7.0, -7.0, -7.0, -7.0, -3.0848621390484223, -7.0, -7.0, -7.0, -3.2359070270406924, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7330017659072214, -7.0, -7.0, -3.4565178578052627, -3.242342621024643, -7.0, -3.4781334281005174, -7.0, -2.6314437690131722, -3.952041340793274, -7.0, -7.0, -7.0, -3.225567713439471, -7.0, -7.0, -2.960470777534299, -7.0, -7.0, -7.0, -3.9902500329278165, -7.0, -7.0, -7.0, -3.2265999052073573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.455137807393583, -3.4742162640762553, -7.0, -2.754603128608854, -7.0, -7.0, -2.6967930850817443, -7.0, -7.0, -3.351216345339342, -3.507653513464988, -7.0, -7.0, -3.799891684656865, -3.786294990698501, -7.0, -2.2620858294213435, -3.830396176483469, -7.0, -7.0, -3.177824971864682, -7.0, -7.0, -7.0, -7.0, -2.1832698436828046, -7.0, -7.0, -7.0, -3.0948203803548, -7.0, -4.229579462665645, -3.3443922736851106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.651084089243011, -3.6744937172963503, -7.0, -2.7520484478194387, -2.6718667887725633, -3.1370374547895126, -4.09572712255598, -7.0, -7.0, -7.0, -2.747411807886423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4050046650503694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499714568741124, -7.0, -7.0, -7.0, -7.0, -3.4222614508136027, -7.0, -7.0, -7.0, -7.0, -3.6629466143326246, -7.0, -7.0, -7.0, -7.0, -2.6364878963533656, -7.0, -7.0, -7.0, -2.877227325148208, -7.0, -2.807083812982132, -3.0429690733931802, -3.63977176138187, -7.0, -3.237292337567459, -3.2833012287035497, -3.9290611240847655, -3.341805346699918, -7.0, -3.354108439147401, -7.0, -3.2730012720637376, -7.0, -3.3634239329171765, -2.5540770813753886, -7.0, -3.0735717283049246, -3.2486437205878, -3.3912880485952974, -3.3109056293761414, -7.0, -3.0506374978013096, -3.427323786357247, -7.0, -2.1599680188106682, -1.8480078966750186, -2.66228551572213, -2.568201724066995, -2.3712731539238234, -7.0, -2.3898303126080624, -7.0, -7.0, -7.0, -7.0, -3.4549194906710476, -7.0, -2.637689819118401, -7.0, -3.1100844228869238, -3.1512932213135336, -2.4647449647018136, -3.0879587894607328, -7.0, -3.4184670209466006, -3.182557301304913, -2.9366407106078207, -7.0, -3.366982975977851, -2.9719712763997563, -7.0, -3.3690302218091532, -3.6078837443569896, -3.37675939540488, -7.0, -7.0, -3.2681097298084785, -3.358886204405869, -7.0, -3.3236498125135348, -7.0, -7.0, -7.0, -7.0, -3.8260099777911005, -2.1731074848325744, -7.0, -7.0, -3.953431068826028, -7.0, -7.0, -7.0, -7.0, -3.0995819938670537, -7.0, -7.0, -7.0, -7.0, -7.0, -2.797860839395534, -7.0, -3.016476194280864, -7.0, -3.341213782664629, -3.1990234256365437, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8686444383948255, -3.1073795828044486, -7.0, -3.886772643054438, -7.0, -7.0, -7.0, -3.7283131918551256, -7.0, -7.0, -3.4437322414015967, -2.8410464654093035, -3.4007624176069355, -7.0, -7.0, -3.4149733479708178, -3.437750562820388, -3.805296916157985, -7.0, -7.0, -3.237040791379191, -3.2034861742721255, -3.7467120225166606, -7.0, -3.305969047136854, -3.8098738192491894, -3.344588742578714, -3.2153202513299304, -3.0519239160461065, -4.397522885718343, -7.0, -3.1332194567324945, -7.0, -7.0, -7.0, -2.9109731122496454, -2.850748314036963, -7.0, -7.0, -4.391393875135699, -7.0, -7.0, -7.0, -7.0, -7.0, -2.629555213347806, -2.9770700393537606, -3.413523281575585, -3.786964259435733, -7.0, -7.0, -7.0, -2.6890867704039234, -3.1256438923573917, -7.0, -3.300432429830641, -7.0, -7.0, -7.0, -3.353170619520263, -7.0, -7.0, -3.5055569386638217, -3.4449811120879446, -2.9684829485539352, -7.0, -2.8702575549888794, -2.4617062624483825, -2.6597973943019357, -2.190471770573345, -2.6015661942515655, -2.9978230807457256, -7.0, -3.238992583655289, -7.0, -7.0, -7.0, -3.0709609158009337, -3.0064660422492318, -7.0, -7.0, -3.139609254468416, -7.0, -7.0, -7.0, -7.0, -3.1851323292282134, -7.0, -7.0, -3.1082266563749283, -7.0, -3.2607866686549762, -3.4638929889859074, -2.5921767573958667, -3.120738405542943, -7.0, -7.0, -7.0, -3.772028165324855, -7.0, -7.0, -2.8138477542288545, -7.0, -7.0, -2.9423718807196844, -7.0, -3.000062037637689, -3.343014497150768, -2.7653704802916486, -7.0, -3.3354579006893843, -2.1463864673918462, -2.21923513401367, -7.0, -7.0, -7.0, -2.747670701773019, -7.0, -7.0, -3.3068537486930083, -7.0, -7.0, -2.8471612005780305, -7.0, -2.865301426102544, -3.196728722623287, -2.2563912668960113, -3.3257501636290527, -4.567905665742008, -7.0, -2.35729944896187, -7.0, -7.0, -2.9390197764486667, -2.6653464274249417, -2.3847117429382827, -7.0, -2.4260674243490388, -7.0, -2.92272545799326, -2.9677819080757994, -3.2942457161381182, -7.0, -2.78627807661434, -2.8790958795000727, -3.067379236051902, -7.0, -7.0, -7.0, -3.2907022432878543, -7.0, -7.0, -7.0, -3.3666097103924297, -7.0, -7.0, -7.0, -3.592565338155902, -7.0, -7.0, -7.0, -3.0620076908098435, -7.0, -3.549885675770413, -2.767341422368662, -2.980507447586642, -7.0, -7.0, -2.8258586820285867, -3.7442538557311544, -3.5303277897780863, -2.8705711023867333, -2.4868014257497535, -3.436162647040756, -3.4560622244549513, -7.0, -7.0, -7.0, -3.6182573448404014, -2.8989444668665096, -7.0, -7.0, -3.1357685145678222, -7.0, -3.4740705032150436, -7.0, -7.0, -2.686948920211501, -7.0, -3.6030360562505215, -7.0, -3.98979929932723, -2.9578944872128985, -7.0, -3.1090720809788794, -2.9590413923210934, -3.0768224233427732, -3.011908613349154, -2.721673245455936, -7.0, -3.6510840892430116, -1.5574823964177655, -1.9053114469859016, -1.9749528248035986, -7.0, -4.448994723423251, -3.6383394744106785, -7.0, -7.0, -3.2211533219547053, -7.0, -3.256717745977487, -3.3176455432211585, -2.8744818176994666, -2.885587356189656, -7.0, -3.5285310606354114, -7.0, -3.4967913157000425, -1.9381731982431614, -2.449392680351223, -3.7353593330017105, -7.0, -4.262605319944301, -3.50611588719763, -4.319705071921085, -7.0, -2.969765257712867, -3.324578744752569, -3.0139201038746375, -7.0, -3.090434416175122, -7.0, -2.827553882825746, -2.1987168371755947, -7.0, -3.2278867046136734, -7.0, -7.0, -7.0, -2.9976047874604546, -2.6534054906645013, -3.3703280077795106, -2.497313673637103, -7.0, -2.770615346059276, -7.0, -7.0, -4.609049866047581, -4.4801004068772015, -7.0, -7.0, -4.723225738862373, -3.918659293421823, -7.0, -7.0, -4.10932538777049, -4.0313680628857735, -7.0, -7.0, -4.030219092203501, -4.401163509874326, -3.5952757118020995, -7.0, -4.384084473382559, -3.849813396694806, -7.0, -7.0, -7.0, -5.089175378296633, -7.0, -4.246806220166817, -4.146003933810869, -7.0, -7.0, -7.0, -7.0, -4.482380436634382, -7.0, -4.688624461754994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.21900787825689, -4.627201940953156, -2.6885977750811696, -7.0, -4.468705401846396, -7.0, -3.2854072677273374, -7.0, -7.0, -3.7913748112350265, -3.2666627971449946, -3.6414741105040997, -3.8586274155837232, -3.8224202856192337, -3.0783772340214464, -7.0, -3.9796697538222423, -7.0, -7.0, -7.0, -4.395693247503584, -7.0, -3.390581878550435, -3.9179123059424894, -4.210934941717513, -5.105445461553958, -3.296665190261531, -2.404904953310314, -7.0, -3.706134349566367, -3.861653870213911, -5.106500268626982, -7.0, -3.9486085498764365, -7.0, -7.0, -3.9749566587701834, -4.490688716713189, -3.7223047868743278, -3.9453700944903036, -3.883547879268044, -4.4279997312126165, -4.20382130251655, -3.367169488534681, -3.2681097298084785, -4.007695632987596, -7.0, -4.3957398100276555, -7.0, -7.0, -4.621352872810209, -4.0213340397751285, -7.0, -2.9417598138146954, -7.0, -7.0, -7.0, -3.5839776507243726, -3.5487578285737045, -3.372964577812118, -7.0, -3.5010592622177517, -3.463332970234029, -7.0, -2.231389098449744, -7.0, -3.5342800052050816, -7.0, -3.5046203591177894, -3.4292676664331685, -7.0, -2.35243980157973, -7.0, -7.0, -3.4682734645251005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0611696432049054, -7.0, -3.7611005389581424, -7.0, -7.0, -3.495907076467104, -4.253794771352397, -4.796747738875302, -7.0, -2.258005644909925, -2.46169268798851, -7.0, -3.0177635091293156, -7.0, -3.1586639808139894, -2.917779411584164, -7.0, -7.0, -3.0874264570362855, -3.454387467146955, -3.782759192623997, -7.0, -3.4762517960070336, -2.808210972924222, -2.4463818122224423, -2.7962967400517917, -7.0, -7.0, -7.0, -3.0730765131400317, -2.3521825181113627, -7.0, -3.882353746388714, -7.0, -7.0, -7.0, -3.052565699053254, -2.851655565747637, -3.3163897510731957, -7.0, -7.0, -7.0, -7.0, -2.2896294858836037, -3.8566684836115352, -7.0, -3.055250878848215, -3.278696453182248, -7.0, -7.0, -3.3961993470957363, -3.49680119804521, -2.777346255747414, -1.8236998953130263, -3.030052968297048, -7.0, -3.1267157036857394, -3.125481265700594, -3.4781695335569047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6420438720485455, -7.0, -7.0, -3.862679866500334, -3.1639064334577514, -2.907411360774586, -3.3398487830376373, -3.1818435879447726, -7.0, -2.369215857410143, -2.814839277678894, -7.0, -7.0, -3.484442207642407, -3.1029479680053735, -3.054179909539224, -2.0865471476851583, -3.3142886609474975, -7.0, -7.0, -7.0, -7.0, -3.2778383330020473, -3.8806421264042847, -7.0, -3.513483956704257, -3.024895960107485, -7.0, -7.0, -7.0, -3.0661394928706995, -7.0, -3.5690225860295635, -7.0, -3.8476960207341655, -7.0, -3.460070543294161, -3.3552599055273786, -7.0, -7.0, -7.0, -7.0, -3.7371661281907387, -7.0, -7.0, -7.0, -7.0, -3.5809249756756194, -7.0, -7.0, -7.0, -7.0, -3.7610252517113727, -7.0, -7.0, -7.0, -7.0, -2.6201360549737576, -7.0, -7.0, -7.0, -3.2304489213782737, -7.0, -7.0, -2.9489017609702137, -4.09059172601141, -7.0, -7.0, -7.0, -7.0, -4.21133416373255, -7.0, -7.0, -7.0, -7.0, -7.0, -3.860996436757196, -3.584274671924987, -7.0, -3.663700925389648, -3.663207512026945, -7.0, -2.8603380065709936, -2.6009728956867484, -2.709269960975831, -7.0, -7.0, -3.202458701293772, -2.2753113545418118, -2.2380461031287955, -7.0, -1.3996737214810382, -2.3898303126080624, -7.0, -3.0028856882374884, -7.0, -7.0, -2.8830933585756897, -4.099834396441161, -2.292994040067439, -7.0, -7.0, -7.0, -3.6386888866901237, -7.0, -2.751279103983342, -7.0, -2.812244696800369, -7.0, -3.2744102726836912, -3.439963935920905, -2.9990761422791077, -3.1894201246920386, -7.0, -7.0, -2.5313192205955564, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5644293269979834, -4.14921911265538, -2.7551122663950713, -7.0, -7.0, -7.0, -7.0, -3.0270436588491743, -7.0, -7.0, -5.125334849623946, -7.0, -2.872350544494723, -7.0, -7.0, -3.397418542351348, -7.0, -2.163757523981956, -7.0, -3.4390167283875126, -2.6875289612146345, -2.1829849670035815, -7.0, -2.7769431981946755, -7.0, -3.868496215892929, -7.0, -7.0, -7.0, -7.0, -7.0, -2.396697391280942, -3.3769417571467586, -3.2793246654426103, -7.0, -7.0, -7.0, -7.0, -7.0, -3.494896343954353, -7.0, -7.0, -7.0, -3.62746827245971, -2.996621107579201, -7.0, -7.0, -7.0, -7.0, -3.5390940296563826, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7489628612561616, -3.871397781487484, -3.851051856837514, -7.0, -3.8385972528166565, -7.0, -4.391742038798527, -2.807535028068853, -7.0, -2.903524064471262, -7.0, -7.0, -3.344479604166383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.073066317596221, -3.726808682524964, -4.153418485037711, -7.0, -7.0, -3.877544107715944, -7.0, -7.0, -3.130976691605617, -7.0, -3.2219355998280053, -7.0, -7.0, -7.0, -3.262263691892828, -2.3324384599156054, -2.5646660642520893, -7.0, -7.0, -7.0, -3.170848203643309, -7.0, -3.0907869279492677, -3.370698092575577, -2.958085848521085, -3.1762649421141465, -7.0, -7.0, -3.7894182198306012, -7.0, -7.0, -7.0, -3.0153597554092144, -2.851869600729766, -7.0, -7.0, -2.8062321697031862, -7.0, -7.0, -7.0, -7.0, -2.8349615268663984, -7.0, -3.373555606638933, -3.104145550554008, -2.8662873390841948, -2.586774783406332, -7.0, -7.0, -3.1212314551496214, -7.0, -3.62746827245971, -7.0, -7.0, -7.0, -3.9496826907952043, -3.288696260590256, -7.0, -7.0, -4.073461729279835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1411730057977474, -4.355757927746179, -3.1516149720160125, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8992731873176036, -7.0, -7.0, -3.6087933739869307, -2.6734816970733473, -7.0, -7.0, -7.0, -2.16790781000148, -7.0, -7.0, -7.0, -7.0, -2.844270023592027, -3.2203696324513946, -2.4321672694425884, -7.0, -7.0, -7.0, -2.205475036740891, -7.0, -2.1063609088067503, -7.0, -3.863134426663756, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9694159123539814, -7.0, -3.002166061756508, -3.6793370305207937, -7.0, -7.0, -3.336059277866349, -7.0, -7.0, -7.0, -3.7123339658940004, -7.0, -4.056460170339044, -2.709269960975831, -3.534406899137877, -7.0, -7.0, -7.0, -3.6892200372638357, -7.0, -3.9588981947107715, -2.808464181258226, -7.0, -7.0, -7.0, -7.0, -3.1455071714096627, -3.451939869365103, -3.121723945637367, -7.0, -7.0, -2.8491121661845775, -7.0, -7.0, -7.0, -3.030194785356751, -2.6944503426360096, -7.0, -3.429429264381788, -7.0, -4.432799386001243, -3.5894469132961895, -7.0, -3.8078280666840114, -7.0, -3.028571252692538, -3.2814878879400813, -7.0, -3.2544513953450163, -2.652522609767031, -2.740219097334925, -2.428828740086269, -3.5190400386483445, -7.0, -4.714425843380274, -3.390581878550435, -7.0, -7.0, -2.5352941200427703, -7.0, -2.569373909615046, -7.0, -2.6665179805548807, -2.7998572591896123, -7.0, -7.0, -7.0, -3.69539410829111, -2.210407706494972, -7.0, -3.136931851267557, -7.0, -7.0, -4.08543329741699, -5.1763095095662175, -7.0, -2.582986110380645, -4.240295419681809, -2.993362739596023, -7.0, -7.0, -7.0, -2.5748026613264443, -3.0813473078041325, -3.1150277335990566, -1.888438722625924, -7.0, -7.0, -2.9109799468508544, -7.0, -7.0, -3.0107238653917734, -2.735997884091794, -2.5622928644564746, -1.9817558986997879, -2.553883026643874, -7.0, -4.59470186120636, -7.0, -7.0, -7.0, -4.712237094261041, -7.0, -7.0, -4.590005419651329, -4.578994292445924, -7.0, -7.0, -7.0, -4.718418641829656, -4.997517439414725, -7.0, -7.0, -4.673122322872762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.531300053075186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.312399526311494, -7.0, -4.192595327569212, -4.220742994305462, -3.8827521556130797, -7.0, -7.0, -7.0, -4.934309037350079, -3.290835646600807, -3.485579476984679, -4.139391017726584, -4.008141034105658, -3.834838355672986, -7.0, -4.1352758017868725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.213181170119872, -4.885809137896048, -7.0, -7.0, -2.7275412570285567, -7.0, -4.353165804965758, -7.0, -5.405283166841318, -7.0, -7.0, -7.0, -7.0, -7.0, -4.782365112225669, -7.0, -7.0, -7.0, -4.198931869932209, -3.7082650587622488, -7.0, -3.5281005197417086, -4.478566495593843, -3.5514499979728753, -4.444325902788053, -7.0, -7.0, -4.130247973456816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5648731035431913, -3.345765693114488, -3.2787250280075306, -7.0, -7.0, -3.7391172439194027, -3.3756636139608855, -3.290479813330673, -7.0, -7.0, -7.0, -4.018624226973913, -3.130440988463926, -7.0, -7.0, -7.0, -7.0, -3.357744325180376, -7.0, -7.0, -3.4720246977002813, -7.0, -7.0, -3.2430380486862944, -3.517195897949974, -7.0, -7.0, -7.0, -7.0, -4.294741706336959, -4.094278920414607, -7.0, -7.0, -7.0, -2.8187840149946926, -7.0, -2.977418730245156, -7.0, -7.0, -3.403953488790828, -7.0, -2.765668554759014, -7.0, -3.1835545336188615, -7.0, -7.0, -3.2234959409623944, -3.0993352776859577, -7.0, -7.0, -3.682190218984122, -7.0, -7.0, -2.833784374656479, -3.029789470831856, -7.0, -7.0, -7.0, -7.0, -7.0, -3.014310480963307, -3.4718801529442906, -3.1496808824829383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.320146286111054, -3.798236176367936, -7.0, -7.0, -3.186603221792895, -3.1379663399603084, -3.309949384259016, -2.8735143535392917, -4.304275050477128, -7.0, -7.0, -2.828981954007923, -3.7288405683399715, -7.0, -7.0, -7.0, -2.3607826898732798, -7.0, -7.0, -7.0, -3.037027879755775, -7.0, -7.0, -7.0, -7.0, -4.244660516448021, -3.655042341331202, -2.832668550451795, -7.0, -2.934245881023071, -7.0, -2.594191581153005, -7.0, -7.0, -7.0, -3.2380461031287955, -7.0, -3.7919186113238093, -2.7126497016272113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8656960599160706, -3.0043213737826426, -7.0, -7.0, -7.0, -4.106020819140269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.196521603400585, -2.9995654882259823, -2.9836262871245345, -7.0, -7.0, -3.3960248966085933, -7.0, -7.0, -7.0, -7.0, -3.648067129448935, -7.0, -7.0, -7.0, -3.1856837803185045, -7.0, -7.0, -7.0, -3.4724638966069894, -7.0, -7.0, -7.0, -3.512817758564873, -3.161162037916258, -3.876448786878341, -7.0, -3.472317546316842, -2.7494705959901213, -3.315737167205999, -7.0, -7.0, -7.0, -3.164352855784437, -7.0, -2.682271463859843, -3.701006406595548, -7.0, -3.144262773761991, -3.3811428613330228, -7.0, -7.0, -7.0, -3.3443922736851106, -3.570776368794748, -3.500373714353374, -3.55708880365784, -3.5451833682154064, -7.0, -7.0, -3.2009872191631663, -7.0, -3.0028856882374884, -7.0, -1.587336734507256, -3.3634239329171765, -7.0, -3.179604292729292, -3.471438407389299, -3.207365037469072, -3.652536418593025, -7.0, -2.8720914961828954, -7.0, -7.0, -7.0, -2.717908147047537, -7.0, -2.6963982469295167, -2.530967681571915, -2.735304676471507, -3.455200277269631, -7.0, -3.228400358703005, -2.8615344108590377, -3.0574125012854534, -7.0, -7.0, -7.0, -7.0, -3.0812032393065754, -2.5095170937932436, -3.4679039465228003, -7.0, -2.6853834098014873, -7.0, -3.28668096935493, -3.520418023353549, -7.0, -2.922379406594948, -3.5886877897295424, -7.0, -2.3375068005038724, -7.0, -7.0, -2.083905552732438, -2.9436923271060165, -7.0, -7.0, -2.6278776945799716, -7.0, -2.6557785152248203, -3.0667730370850257, -7.0, -7.0, -2.352844087054004, -2.2265999052073573, -2.1722250597760207, -3.455606112581867, -7.0, -3.397070549959409, -1.8398246684187096, -3.1992064791616577, -3.091103944090286, -2.9966575799270623, -2.985109335762888, -7.0, -2.967547976218862, -2.742568034366142, -1.459993675072905, -2.3687516195445553, -7.0, -3.5826314394896364, -2.2842980032561075, -2.486555485662273, -3.0364958190682128, -7.0, -2.6571754108707712, -7.0, -2.9615847317782196, -7.0, -7.0, -3.653309012938479, -3.0671452788853952, -2.9754974565302335, -2.0586790361052354, -2.5910139870040743, -3.203260814881101, -7.0, -3.966798546383361, -7.0, -4.305132016847225, -3.2615007731982804, -3.010299956639812, -1.9078578787236007, -7.0, -7.0, -2.532460373916233, -7.0, -7.0, -3.4470028984661623, -3.4549633647502485, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1144441724452543, -3.409087369447835, -2.417643009928512, -3.0096936540397285, -3.525044807036845, -3.6949998327470954, -7.0, -3.176958980586908, -2.5684364144168854, -7.0, -7.0, -7.0, -7.0, -7.0, -3.10701102844847, -2.9694159123539814, -3.4369573306694496, -7.0, -2.5018577027245423, -7.0, -7.0, -7.0, -7.0, -3.6735737964230517, -7.0, -3.2161218985895266, -3.1283992687178066, -3.5073160400764136, -3.3586413339445613, -3.01717251394567, -7.0, -7.0, -3.53198955141255, -3.1870975005834774, -7.0, -3.44870631990508, -2.269471978837336, -7.0, -3.8534548413680665, -7.0, -3.180928319993991, -1.9166812811245006, -3.539828558377898, -2.2784446045101223, -1.2929837274684335, -7.0, -2.36707624226875, -7.0, -2.000952284542136, -2.6108966425304647, -3.597804842404293, -2.495279967133839, -2.900093901543398, -3.2403620120296877, -7.0, -2.820394659578645, -3.032014034159506, -3.084254459111229, -7.0, -4.152624639447619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2933072974453994, -3.358315640082196, -7.0, -3.6769678142947586, -3.7967130632808965, -3.9761206182998157, -7.0, -7.0, -3.4877038631637265, -7.0, -7.0, -7.0, -7.0, -7.0, -4.020982442918419, -7.0, -2.7680348382006295, -4.299917781049863, -7.0, -3.4930395883176515, -3.5098742850047193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4794313371977363, -7.0, -7.0, -7.0, -3.91252156664849, -7.0, -7.0, -7.0, -3.4771212547196626, -3.527243116388089, -2.8184898222042136, -7.0, -7.0, -7.0, -2.507025083337453, -3.9233994661587164, -2.5657494618659626, -2.5707551531682618, -7.0, -2.9609461957338317, -2.6114387921441513, -3.6418705454763125, -3.3319034313985325, -7.0, -4.031271084270531, -7.0, -7.0, -7.0, -3.1809140036160857, -2.4595600073300266, -2.610165674027065, -3.1773055843418603, -3.9657189702442213, -1.6997799316716846, -1.8403196906651225, -7.0, -1.912399211126715, -1.4348737790778903, -2.657316664284362, -7.0, -2.3341664243247684, -7.0, -3.47928731647617, -3.30362797638389, -7.0, -3.3533390953113047, -3.3346145711793946, -7.0, -7.0, -7.0, -3.63397630832238, -2.703420357325243, -3.4680517914542377, -3.7331771955817663, -7.0, -2.419065670188649, -3.490800952010855, -3.147573276552419, -2.9404781721556996, -7.0, -7.0, -7.0, -3.27630858685576, -3.665393350279712, -3.4030555820599213, -2.8738122644316864, -7.0, -7.0, -7.0, -2.8614801002878543, -3.2083741645947104, -3.494850021680094, -7.0, -7.0, -7.0, -3.344588742578714, -2.716142518281689, -2.2064660628531048, -7.0, -7.0, -3.5106790310322102, -2.0871501757189, -4.1718492670490575, -2.121465808378882, -4.120713017079302, -7.0, -2.4222717167305126, -3.881999750051845, -3.316022793314225, -7.0, -1.8082237164938735, -7.0, -2.5825935908267597, -7.0, -3.1806419027298323, -3.345079526314867, -7.0, -7.0, -3.38147609027503, -3.1812717715594614, -7.0, -7.0, -3.8285310066451013, -7.0, -2.5676527679046632, -7.0, -7.0, -4.620094394032491, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2534749651978156, -4.41624097236815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6942628926579433, -4.6333876490890935, -7.0, -7.0, -7.0, -5.392056468286671, -7.0, -3.9584205280525184, -3.3988944070784957, -7.0, -7.0, -7.0, -7.0, -3.9456654994321343, -4.2230544131791055, -7.0, -4.067554376693503, -7.0, -7.0, -7.0, -7.0, -3.8845688149183335, -4.245636029406203, -3.6833972959193733, -3.06595298031387, -3.9921733990840766, -2.874826644359406, -1.6300281227436775, -3.2325514293947246, -3.4700060000867836, -3.659345635746177, -3.0282892554324534, -3.1295466788486532, -7.0, -7.0, -3.797309098122926, -3.1441069730493227, -7.0, -2.994478461422008, -2.501646014590592, -7.0, -3.629969946292171, -3.635282637998212, -3.540954808926133, -7.0, -2.910780532325959, -2.7352684767977125, -5.407369656667116, -7.0, -7.0, -3.1915907263792107, -3.090751689644903, -7.0, -4.807238971050686, -3.852601969338235, -7.0, -3.4497868469857735, -4.367281357632943, -4.4679039465228, -3.65270899188202, -7.0, -3.1569915605680214, -2.984227178928321, -4.308671106715418, -2.2813789526405572, -2.925569909543376, -3.0095619469467327, -3.34331479369941, -2.7715874808812555, -4.448922640496831, -7.0, -3.7937205568135233, -3.251415136117222, -3.741348602475895, -7.0, -7.0, -7.0, -7.0, -7.0, -2.570103203626733, -2.379162335877126, -2.5349960967118763, -7.0, -7.0, -4.084737097962795, -7.0, -3.635483746814912, -7.0, -3.419900701340701, -7.0, -3.4702567619633173, -3.1082266563749283, -7.0, -7.0, -3.5933968423002067, -7.0, -3.539452491549461, -7.0, -7.0, -2.713385526896622, -7.0, -7.0, -7.0, -3.05307844348342, -7.0, -3.6226629418839154, -7.0, -7.0, -7.0, -2.6503591996329794, -4.201847573590095, -7.0, -7.0, -2.5903879807436074, -7.0, -2.636655029117369, -7.0, -2.991779669753309, -2.6296264535946183, -7.0, -3.4699692094999595, -7.0, -2.508754102588731, -7.0, -7.0, -3.606488850442648, -3.081707270097349, -7.0, -2.505045568058097, -2.2479732663618064, -7.0, -7.0, -2.8069333037164066, -2.5405640806209617, -7.0, -4.212267528548938, -7.0, -7.0, -7.0, -3.345863628503764, -2.829410346975762, -2.411198673955554, -3.794627444664508, -2.81424759573192, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3479151865016914, -2.1245653543272263, -7.0, -3.439963935920905, -2.0419637496480063, -2.4045032846576886, -3.5085970462300686, -3.664077590185075, -3.6534054906645013, -7.0, -7.0, -3.2691625654317447, -3.5144149205803688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.838723190031372, -3.4100176082030527, -3.443840458807008, -3.0430674079304287, -3.924305136154559, -4.096875268059688, -7.0, -3.007491733295336, -7.0, -3.008919388595035, -7.0, -3.0478587274074567, -3.540141698835551, -7.0, -7.0, -2.531052929286764, -2.707813410202252, -3.17790506896417, -3.2304489213782737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3343532083835172, -7.0, -7.0, -7.0, -7.0, -3.471438407389299, -7.0, -7.0, -7.0, -3.375846436309156, -7.0, -7.0, -7.0, -7.0, -3.52022143588196, -3.4437322414015967, -2.911766184046292, -7.0, -7.0, -3.8300366292735153, -3.527243116388089, -7.0, -3.7531232446817127, -7.0, -3.3851592385800426, -7.0, -7.0, -7.0, -7.0, -3.5323083932754162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.726871135191101, -7.0, -7.0, -7.0, -3.1883377790407526, -4.205420915676343, -7.0, -7.0, -7.0, -2.5237464668115646, -7.0, -3.85658792817761, -7.0, -7.0, -7.0, -4.6685163718317675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.587336734507256, -7.0, -7.0, -7.0, -4.663465343891112, -7.0, -7.0, -7.0, -7.0, -3.31492005599242, -7.0, -7.0, -7.0, -3.0334237554869494, -7.0, -4.128942873583301, -7.0, -3.8908120989551245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7477845662086304, -7.0, -7.0, -7.0, -7.0, -3.712481337801919, -7.0, -7.0, -7.0, -4.823581811323984, -7.0, -7.0, -7.0, -7.0, -2.906634286963973, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4572761860613257, -3.2107197156810017, -7.0, -7.0, -3.661387977649986, -3.204798038190855, -3.5320320771880462, -7.0, -7.0, -7.0, -7.0, -3.0334237554869494, -7.0, -7.0, -3.841015152493763, -2.909020854211156, -7.0, -7.0, -3.0068937079479006, -7.0, -7.0, -7.0, -7.0, -3.771477239864823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6063813651106047, -7.0, -4.166015456323775, -4.752563146780113, -7.0, -7.0, -7.0, -4.69181943079963, -7.0, -7.0, -3.2776092143040914, -7.0, -7.0, -3.817036226050029, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1046422774442766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.538711942116912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8627870982353443, -7.0, -7.0, -4.8499074903725905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6086864575703634, -7.0, -7.0, -7.0, -7.0, -3.444204844769567, -7.0, -3.3528575624069963, -2.776580126292323, -7.0, -7.0, -7.0, -2.9028184680822537, -7.0, -7.0, -3.303088010528054, -7.0, -7.0, -7.0, -7.0, -7.0, -4.337099696361683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3354579006893843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5521813388393357, -7.0, -5.411729107459061, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7630534402996147, -3.7985125330313516, -7.0, -7.0, -7.0, -3.832657909760817, -7.0, -4.530826986248976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7180862947830917, -3.3459125879178178, -7.0, -7.0, -2.641143471369817, -2.4002500911501117, -7.0, -2.7693773260761385, -2.4598948527451516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.653955004827485, -3.576974474604044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6419200744131177, -7.0, -7.0, -7.0, -7.0, -7.0, -5.351118964761353, -7.0, -7.0, -7.0, -7.0, -3.7346398389876994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8830933585756897, -7.0, -3.5372432508097047, -5.398033227215721, -7.0, -3.2960066693136723, -7.0, -7.0, -7.0, -2.3607826898732798, -7.0, -3.5020172148271476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.022387125686438, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.387475252916437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.958085848521085, -7.0, -4.023596615284432, -3.170613703377405, -7.0, -7.0, -7.0, -4.331662602150657, -7.0, -7.0, -7.0, -4.961416347652731, -7.0, -7.0, -4.131762977530949, -3.3256524705723134, -7.0, -7.0, -7.0, -7.0, -7.0, -4.388314387117743, -4.0403324467250155, -5.405164440985005, -7.0, -7.0, -7.0, -4.477053692545283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.182371848635196, -7.0, -4.465090248626674, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605046332184747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.987725834843644, -3.300378064870703, -3.573654715980733, -7.0, -7.0, -4.336919802200228, -7.0, -7.0, -7.0, -7.0, -7.0, -4.79531680665612, -3.5837653682849995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4871383754771865, -7.0, -7.0, -7.0, -7.0, -7.0, -4.052109547155785, -4.785927468480128, -7.0, -7.0, -3.621539773321731, -7.0, -7.0, -7.0, -7.0, -3.54476236021663, -7.0, -7.0, -7.0, -2.6374897295125104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9732664361085286, -7.0, -7.0, -3.504878459410216, -2.8737564217033555, -7.0, -7.0, -7.0, -7.0, -7.0, -3.266936911159173, -3.984986899788327, -3.4158077276355434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0832158621559973, -7.0, -7.0, -3.295860195625301, -3.782472624166286, -7.0, -7.0, -4.299507298700488, -7.0, -3.712733859069952, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.52580901112709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7880445724974723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2166935991697545, -2.775974331129369, -7.0, -7.0, -3.8285712888450414, -7.0, -7.0, -7.0, -3.005861561054057, -3.2973470478364564, -2.980609293526336, -3.403977963669355, -7.0, -7.0, -7.0, -3.523579255398529, -3.6662839226231023, -7.0, -2.8887409606828927, -3.003500015009609, -2.8342617088117708, -2.5183258929029195, -3.299942900022767, -2.010057537162737, -2.5646660642520893, -7.0, -3.9719191579347575, -2.9595183769729982, -3.3261309567107946, -7.0, -3.0800850850458694, -7.0, -7.0, -3.3634239329171765, -7.0, -7.0, -7.0, -3.242687369454165, -3.3402457615679317, -2.786751422145561, -3.269396182694991, -3.4554539687786283, -3.1718726561396826, -7.0, -2.4787267814350806, -7.0, -3.1604685311190375, -3.220108088040055, -2.9714076440310557, -7.0, -2.1433363127613307, -3.5903401790321667, -3.3830969299490943, -2.7170044070405472, -2.1997754860978236, -7.0, -3.1357685145678222, -3.4390167283875126, -7.0, -2.707910665713106, -7.0, -3.1118175226571605, -7.0, -7.0, -3.134389632406994, -3.305136318943639, -3.366111523378347, -2.56147407266352, -7.0, -3.6290016192869916, -3.750138611466349, -7.0, -3.1063042456868444, -7.0, -7.0, -3.11293997608408, -3.5596672783880576, -7.0, -7.0, -7.0, -7.0, -3.6704314093606056, -3.0050946750725487, -2.928011577509416, -3.513483956704257, -3.2426783089692313, -3.3997602257103656, -3.1255535517330353, -7.0, -7.0, -3.625312450961674, -3.52543355342882, -3.1221066080541338, -3.0330214446829107, -7.0, -3.195041280556656, -7.0, -7.0, -7.0, -3.194870986853204, -3.312811826212088, -2.750948967531182, -7.0, -2.4623231130842345, -2.8731837838314673, -2.793964905280631, -2.8785217955012063, -2.611723308007342, -7.0, -3.068978139437872, -7.0, -7.0, -2.96883304489043, -7.0, -2.8634715656455874, -3.1332194567324945, -3.102169745008345, -3.561943205916616, -3.0941215958405612, -7.0, -7.0, -3.88675529954508, -3.4596939764779706, -2.939319531078238, -3.146283113159587, -7.0, -3.4085791254086675, -3.2907628862373217, -2.8108083781659583, -7.0, -7.0, -3.91902576458736, -7.0, -7.0, -7.0, -2.7255032688593155, -3.3014640731432996, -3.787425049380184, -7.0, -3.0227032411199173, -3.806044235748088, -7.0, -7.0, -7.0, -3.3494717992143856, -2.5643701225153204, -7.0, -3.440174146226027, -7.0, -7.0, -2.936513742478893, -3.7826756296882844, -7.0, -7.0, -3.2400497721126476, -3.0081741840064264, -3.0283678836970616, -7.0, -3.210318519826232, -3.307602993826056, -2.5523363135496857, -2.8332746392905634, -2.6149451276093214, -7.0, -3.3881012015705165, -3.1077262432329404, -3.371621927176021, -7.0, -7.0, -2.463395230212905, -3.061640934061686, -7.0, -7.0, -3.151807470681409, -7.0, -4.314709692955174, -7.0, -3.3564083270389813, -3.1544813921323813, -7.0, -3.499893186149237, -2.777909908625889, -7.0, -2.9908935802199035, -3.025442414387701, -3.0560150335589764, -3.163757523981956, -3.5036545192429593, -3.2887707217103532, -7.0, -3.0922292421628566, -7.0, -2.9790514702083497, -2.8490506905695123, -3.593618308129536, -7.0, -2.6212087487493636, -7.0, -2.517675648876312, -2.916278440573439, -2.804548308388056, -2.757965097861435, -2.909556029241175, -2.808210972924222, -2.9763499790032735, -7.0, -3.122434336266318, -7.0, -3.2397998184470986, -7.0, -7.0, -3.362105319293773, -3.3163897510731957, -7.0, -3.378216149749878, -7.0, -3.3942765267678214, -3.5105003274058215, -2.6879341244886357, -7.0, -4.483810406523914, -7.0, -3.0678145111618402, -3.3914644118391033, -3.1595671932336202, -7.0, -2.850850368903348, -2.867820908045573, -3.512817758564873, -2.359428902985584, -7.0, -7.0, -7.0, -3.3510228525841237, -7.0, -7.0, -7.0, -3.6278533350162383, -7.0, -7.0, -7.0, -3.0464951643347082, -2.508698017551925, -2.9249680958524342, -7.0, -2.8120773708565143, -3.804480189105993, -2.9324737646771535, -3.58029758843657, -3.209300495159705, -3.5240064455573727, -7.0, -7.0, -3.869681431545861, -3.5577477416414682, -3.0756321088257814, -3.1172712956557644, -2.688839871885674, -7.0, -7.0, -7.0, -2.8507227965727586, -3.0029062314830117, -2.9868938242680527, -2.334518605101907, -3.2284516907144, -3.4959603948817053, -2.932811868611632, -7.0, -2.9985499336047674, -7.0, -2.261624845520399, -7.0, -7.0, -2.875784485010796, -7.0, -2.3325731039972615, -7.0, -2.970346876230093, -3.2231496826367745, -3.4671639659690903, -2.26563802057514, -2.319591808561234, -3.8815019492659513, -2.5893444425092373, -7.0, -3.31921019418185, -7.0, -7.0, -2.5276299008713385, -3.236033147117636, -4.024772913079632, -7.0, -3.0386769213410014, -2.6376147963188186, -2.911157608739977, -2.8862650590297565, -4.105069722166873, -1.9614210940664483, -2.8226038992559745, -7.0, -7.0, -3.5588285248170117, -3.1531285942803624, -2.4144162029529017, -2.6225593863895877, -3.012731800628455, -3.0517311960598494, -2.6577727077355213, -7.0, -2.912554162140022, -7.0, -2.847880997445375, -3.154271775993095, -7.0, -3.7522435260951665, -3.134713812032996, -4.194911338636273, -7.0, -3.4120123012470613, -4.025006672633036, -2.551391902262548, -7.0, -3.13640344813399, -3.3416323357780544, -7.0, -2.978864984347657, -2.7179903781599086, -2.8632038590286295, -3.312811826212088, -7.0, -7.0, -2.8773713458697743, -2.800717078282385, -3.117105502761251, -2.4718781993072905, -3.366982975977851, -2.7820685019399147, -7.0, -7.0, -3.435589573086606, -3.3513811045321633, -4.30513631894364, -7.0, -7.0, -7.0, -7.0, -4.607465746402825, -3.8889765604386084, -7.0, -7.0, -3.5578078557646045, -4.254322452836917, -4.226238917075984, -4.598495042273587, -4.058445005444395, -7.0, -4.4533693105866075, -7.0, -7.0, -7.0, -5.0896614144671775, -7.0, -3.374797209025671, -7.0, -7.0, -7.0, -7.0, -7.0, -4.308237057684112, -7.0, -7.0, -4.052963128755503, -4.233706654286382, -7.0, -4.135164466656955, -3.957798774929998, -4.475642137554701, -7.0, -3.3743918868972482, -3.4352071032407476, -3.985291718592888, -4.469718950821701, -7.0, -7.0, -7.0, -7.0, -3.682879314925225, -3.7547304690237535, -3.3667030568692864, -4.163831985102053, -3.5717879989217423, -3.995248983383211, -7.0, -3.9838216681692966, -3.6110857334148725, -7.0, -7.0, -7.0, -7.0, -7.0, -4.396303983762163, -4.234805424012735, -4.707729388220862, -3.3531465462139796, -2.2845332706132413, -7.0, -4.263863215008734, -7.0, -5.408000698156257, -3.6522463410033232, -7.0, -7.0, -4.352645518668972, -7.0, -7.0, -7.0, -3.554004321011903, -7.0, -3.2248782201699746, -4.031421930538409, -7.0, -4.172948167029386, -4.486175353339631, -7.0, -3.888039982719819, -7.0, -7.0, -4.14703703406944, -4.328053250252685, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1683571576689884, -3.2800089531081857, -3.2708857785427625, -7.0, -7.0, -2.908355580205547, -7.0, -7.0, -7.0, -3.0067104742139805, -7.0, -3.263243690843952, -3.752125307297898, -7.0, -7.0, -7.0, -3.0823065450398275, -3.488127496247458, -7.0, -7.0, -7.0, -3.3953263930693507, -7.0, -3.5245259366263757, -3.688953462637418, -7.0, -3.3731695589037214, -7.0, -7.0, -4.613027417022225, -4.497803581102442, -4.798650645445269, -7.0, -7.0, -3.0530357378949193, -7.0, -3.3469394626989906, -7.0, -7.0, -3.207050607980928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1539672216454786, -7.0, -3.5328817194073974, -3.271415618781008, -3.934321667513431, -7.0, -3.2227164711475833, -3.381205361238583, -7.0, -3.5889716175206554, -7.0, -7.0, -7.0, -3.0864784741618685, -3.3499512783389576, -7.0, -7.0, -7.0, -7.0, -7.0, -3.387033701282363, -3.571825249040829, -7.0, -7.0, -3.419184452746418, -7.0, -7.0, -2.985370331043443, -3.032323877412346, -2.711500469726369, -3.10698371567979, -3.1326598503277174, -7.0, -7.0, -7.0, -3.1866738674997452, -7.0, -7.0, -7.0, -3.313234291694724, -7.0, -3.785792361435081, -7.0, -7.0, -7.0, -3.2695006550094687, -7.0, -3.903876433238587, -4.087840549742632, -3.7863964613723042, -3.635785235533652, -7.0, -7.0, -7.0, -2.9946836768553746, -2.709340641174848, -7.0, -7.0, -7.0, -3.4490153163477864, -3.72209071485586, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3142886609474975, -3.33665982345442, -7.0, -7.0, -3.247359422468937, -7.0, -7.0, -7.0, -7.0, -3.415974411376566, -7.0, -7.0, -7.0, -4.157184682201611, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9169406120116785, -7.0, -7.0, -7.0, -7.0, -3.309949384259016, -7.0, -7.0, -7.0, -7.0, -3.4800788400654854, -3.199618067707931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.875928984922927, -7.0, -2.998695158311656, -4.90385746681675, -7.0, -7.0, -7.0, -3.7207379770184255, -3.2137302038548414, -7.0, -7.0, -7.0, -7.0, -2.4510184521554574, -3.1092608334015583, -7.0, -7.0, -2.002635518598138, -4.249738631896562, -3.0965624383741357, -7.0, -7.0, -3.3348556896172914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8830933585756897, -7.0, -7.0, -7.0, -7.0, -4.442633391202302, -7.0, -2.9849771264154934, -3.0474695746198566, -7.0, -2.949585151326652, -7.0, -7.0, -7.0, -7.0, -1.9316031439741541, -4.005743400045622, -3.4566696294237573, -3.6076158432431322, -7.0, -7.0, -7.0, -3.453471233722936, -2.765668554759014, -3.0962145853464054, -7.0, -7.0, -3.030194785356751, -7.0, -7.0, -2.3508938095043144, -7.0, -7.0, -7.0, -7.0, -3.6405808064896528, -7.0, -3.44216608578472, -4.046433378005417, -7.0, -3.0692980121155293, -7.0, -7.0, -3.8809849904867533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9509730248744774, -7.0, -7.0, -3.3729171146923997, -2.945591667032007, -3.4207394131837257, -2.4720246977002813, -7.0, -7.0, -2.224603685336854, -2.9183798695859635, -7.0, -7.0, -3.851166586670228, -7.0, -7.0, -7.0, -3.4998702905864882, -7.0, -7.0, -7.0, -3.638389407665336, -7.0, -7.0, -7.0, -2.840419777736486, -7.0, -4.3863384163575105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.87453979707101, -2.642525866686211, -7.0, -7.0, -7.0, -4.693265155714742, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4560622244549513, -7.0, -7.0, -7.0, -2.953555261008572, -2.645422269349092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.156700552582017, -2.91204482964487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.810659983822341, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.544429805705557, -7.0, -7.0, -7.0, -7.0, -3.0326823673363323, -2.074816440645175, -2.3801207542684404, -2.550228353055094, -2.720434958433874, -2.606560492554639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.077404246398098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.380271556201239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.136984656238368, -7.0, -3.092114288620125, -4.298021295582452, -7.0, -7.0, -7.0, -2.099115357879955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2704062482323635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3205759970450925, -2.9747090245764993, -2.6646419755561257, -7.0, -7.0, -4.015715932006951, -2.4795958738475177, -2.6881527555915663, -7.0, -7.0, -7.0, -7.0, -2.9030899869919438, -7.0, -7.0, -3.2646761821488246, -3.721728198572788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9770118969770887, -7.0, -7.0, -7.0, -4.65500710172715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.356647199759322, -3.5138831856110926, -7.0, -7.0, -7.0, -7.0, -4.120819652228079, -3.874249822778403, -7.0, -7.0, -7.0, -3.2826976226551636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5595076406424986, -4.012276677439264, -3.0654907946646865, -4.428157364717315, -7.0, -7.0, -4.717899237742219, -3.478927055582925, -7.0, -7.0, -7.0, -3.5446880223026773, -3.4874212113594747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6587879323179417, -7.0, -7.0, -3.896834743546406, -4.471291711058939, -7.0, -7.0, -7.0, -3.771973104217725, -3.1817864401741915, -4.114043562548077, -3.0538235216291834, -3.1337213467185854, -7.0, -4.305286865476126, -4.7193147105421165, -7.0, -3.4676763944587523, -7.0, -3.673951199690897, -3.881363903940163, -7.0, -4.313445370426414, -7.0, -4.7859878975004735, -7.0, -3.3018212232307826, -3.805534839182783, -7.0, -7.0, -7.0, -7.0, -3.5191422616644465, -4.159958002678519, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.453471233722936, -7.0, -3.4101548610762307, -7.0, -4.670755942215133, -4.464206284343785, -3.043081453904068, -7.0, -7.0, -7.0, -3.2439007156385253, -7.0, -7.0, -7.0, -4.962970396091709, -4.681024035829723, -7.0, -4.4380516115621225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.186946452188543, -7.0, -7.0, -7.0, -7.0, -4.955774312014999, -7.0, -7.0, -4.078674273360466, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6088468223264116, -4.215505378231819, -7.0, -4.421395503250161, -3.408593251333042, -7.0, -4.040696268880752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4712324257565594, -7.0, -3.0706629143802995, -7.0, -3.291590825658001, -3.388870545406613, -2.391816923613249, -7.0, -2.864511081058392, -3.7507397512353506, -7.0, -4.195491445109328, -7.0, -3.00774777800074, -7.0, -3.650825388129239, -3.330819466495837, -7.0, -7.0, -7.0, -3.7810369386211318, -7.0, -7.0, -7.0, -3.229937685907934, -7.0, -3.314667608117513, -7.0, -7.0, -3.897923849397611, -3.3539791447958756, -3.833897567980089, -7.0, -7.0, -3.9393694700746598, -3.0965624383741357, -7.0, -7.0, -7.0, -2.9085337585096873, -7.0, -7.0, -7.0, -7.0, -2.7814861003965117, -7.0, -7.0, -7.0, -3.015778756389041, -7.0, -2.907993255039917, -7.0, -7.0, -7.0, -7.0, -7.0, -2.730937486161556, -7.0, -7.0, -3.05307844348342, -7.0, -3.4550460384689026, -3.467312062980552, -3.297760511099134, -3.220631019448092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.805636766305935, -7.0, -7.0, -3.495474955889315, -3.0740236540366594, -7.0, -7.0, -4.00552369267328, -7.0, -3.739493230781615, -7.0, -3.557025722386383, -3.3651134316275773, -7.0, -7.0, -7.0, -7.0, -4.360669133987706, -7.0, -7.0, -2.7596678446896306, -3.325528490869888, -3.3350565194390915, -3.4634450317704277, -7.0, -7.0, -3.452553063228925, -7.0, -7.0, -7.0, -3.6482624057480444, -7.0, -7.0, -7.0, -3.2643455070500926, -7.0, -4.094907649416061, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.657192487900516, -3.240798771117331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4990681845107945, -7.0, -7.0, -7.0, -7.0, -3.4144719496293026, -7.0, -7.0, -7.0, -7.0, -3.658488381309017, -7.0, -7.0, -7.0, -4.363248348914939, -4.839503186703423, -7.0, -4.441591458037452, -3.86224753566811, -4.103097457319296, -3.8882294314791817, -4.1410796030609935, -3.9114709525356064, -2.323634080004334, -2.952822892498763, -5.140504900519705, -5.1411109856678925, -2.601769985902066, -2.6366946782993006, -4.029215147524665, -3.9116275396950106, -7.0, -4.186677007042231, -4.839635144312755, -2.470891876279444, -3.0828930332881797, -5.1403257393686665, -3.2609546193291172, -1.7514842196121183, -3.2232174959136897, -3.965327156210406, -4.839446621166152, -3.3063815104465792, -3.728344415396529, -3.779866155645193, -2.211852607386131, -3.8639423913994935, -4.6637386065732995, -5.14091637693907, -4.141719359930591, -3.4549194906710476, -4.099834396441161, -3.179604292729292, -4.663465343891112, -3.242687369454165, -4.442633391202302, -7.0, -5.141092156375883, -3.1284463247764815, -3.999664843536983, -4.101718961339596, -3.4042073486014837, -3.9373141119603785, -4.188481622437761, -4.107626174659984, -3.6807323905389078, -3.4453581890617757, -2.1341678416523453, -4.033804060586124, -2.940021140721579, -3.2440175106997633, -3.779938246821107, -3.9382100298607625, -3.431437996187525, -4.364372738578348, -5.14280541359723, -4.364660415023539, -4.538824988937904, -4.028236425372406, -3.9200895492469097, -1.8299493896333177, -7.0, -4.237622270987323, -3.555723674553692, -5.140558320241512, -3.0151440248451427, -3.1928675433117966, -5.140913237373888, -3.340961266701331, -1.841009074133296, -4.026809737140006, -3.5125013439997756, -5.140328883183799, -4.099909685319397, -2.9107502760558157, -4.242451355028342, -4.6644100392352845, -7.0, -3.8254601205601073, -3.6797191665895896, -3.5688344803047265, -3.2803506930460054, -3.6975344625969604, -5.144446546742706, -1.6996029808111621, -2.879243907103876, -2.4476953966860586, -4.839723093782862, -7.0, -2.8791082837495585, -3.968551434039823, -3.211645094674914, -3.125112829214528, -4.027136250754157, -2.2689179845696863, -4.665330785346678, -4.5384700487028695, -4.839462334554431, -3.023998126259445, -4.4416762870082565, -3.6023266903176827, -3.2800230025149686, -3.2488189486409467, -2.5893586197509038, -3.315563071972445, -3.6498026370614305, -3.213295826523789, -3.4444008339004135, -2.686668567219539, -3.762347153378673, -7.0, -3.446624141522082, -3.4421691622109902, -3.197663365097873, -3.9665765919484968, -2.2137481718156677, -1.9177588590210453, -4.840986968939329, -3.8178867499239346, -3.9959546877072425, -2.7509031392906147, -4.188969084727143, -3.0571804179280635, -3.142472282648642, -4.2957492612474155, -3.518755147594115, -2.7399013690520677, -3.3998806850379464, -5.140300588028295, -4.663449633913287, -2.77751338480969, -7.0, -7.0, -7.0, -4.538834408178194, -4.66337107549875, -2.812338605924589, -3.7083905458113104, -2.6536718416678737, -3.397888195011566, -3.7271813855153857, -3.421687667043168, -4.1405677465691895, -3.6225248624035684, -3.160602945517803, -3.8512670869507213, -2.946605952239178, -5.140523755289476, -4.1413431465043224, -4.540288796889755, -2.363441954440918, -5.140586598610774, -5.140382324559402, -3.5428160938829234, -3.0224283711854865, -4.362746288823878, -3.7123472236152164, -3.344676033565773, -3.474551018678706, -3.533533366055707, -3.388696238703874, -3.2427090263694494, -4.241319188494597, -4.363709105603158, -1.8333472526374732, -4.3634239329171765, -3.6632139160261286, -7.0, -4.063230121978396, -4.296326647059846, -4.363078968512937, -4.441622878106768, -3.358208575770563, -4.442457818608127, -3.2359084131746507, -4.663477911464217, -2.412474318162643, -2.0820062011030047, -4.665540342403951, -3.662337343204088, -3.538064649949787, -4.240708335653984, -3.683928527034064, -3.9399932234951613, -3.428608221033195, -3.6380303846709308, -3.99801010198535, -2.3999912817517215, -3.321839983161041, -3.0920795744436336, -7.0, -1.9991522838842721, -3.5768858616369985, -2.3717428547789363, -3.88570038012833, -3.0439237974450255, -4.839440335651648, -3.293047569823077, -4.363815605606467, -3.7461513812314826, -3.9108816790640555, -4.442884086131316, -2.9047216220895655, -3.226512947551635, -7.0, -4.067430448350606, -3.9500536824781434, -3.498010730179554, -7.0, -4.295347148333618, -4.664312839896641, -7.0, -4.538975672273216, -4.1874267075268845, -7.0, -3.9377873618458636, -3.530396288371289, -3.5274979417079395, -2.9614239706555763, -1.994044257851974, -7.0, -4.23843190152609, -4.187658570220862, -3.8209423284734454, -4.839509471308361, -4.538834408178194, -3.6542479813426088, -3.251856513733483, -2.020193712151071, -7.0, -4.538265748040704, -4.839883241709907, -4.099809297247691, -4.839368045695636, -3.79829900014416, -3.968414452266617, -3.027817056380705, -4.83939319139298, -4.839522040245412, -7.0, -4.238080619382148, -3.9381505681184805, -3.9379408222417998, -7.0, -4.142326883154263, -3.0563681280368664, -3.491483092526961, -3.0139339361755866, -3.224258948591907, -4.144639580353153, -4.6636067081245205, -5.140416900769118, -2.8164860899367334, -4.191242915636388, -2.7286682272461387, -3.041295537721137, -2.754182486538021, -3.91221267574534, -4.539189050875863, -5.1414027353497795, -3.1555689118377597, -3.076209454415462, -2.7197410408069143, -3.0938052541904826, -2.6217437266564927, -3.139099411347294, -3.5187927263441137, -4.36270547093555, -3.80105740878395, -3.5043410923027154, -3.503778306292567, -7.0, -4.238231203666038, -3.939450608698325, -4.840225320794298, -3.209393424994102, -7.0, -3.9417256698245913, -2.8761076811963155, -4.298282163702267, -3.5676051634959993, -3.8429772355887812, -2.14941258386112, -2.6755147698424953, -4.061769664610581, -2.6718091758115627, -3.9945936452881283, -3.9963709289328424, -3.010401363772612, -3.9408058766441276, -3.7685966674296387, -3.7339376451385387, -3.0708520677922007, -3.6008671469564506, -3.356750413762137, -3.942079395541365, -2.262528475475419, -3.156959760868904, -3.6931645641885575, -7.0, -5.140306875999945, -3.164859459679298, -3.222030604284222, -4.238472656948356, -4.443153421877831, -3.5906065622644463, -4.141242767858726, -4.031641475693449, -4.664491544490574, -2.8228704705516168, -4.100862216436054, -3.65153123691363, -3.528509626166987, -3.8869385757864556, -2.2756379736210595, -2.9013187157134652, -2.197559184222238, -4.364163115095428, -3.2826976226551636, -2.122540975250118, -2.87303587216726, -7.0, -3.912268957428651, -3.321162040332412, -3.4252080511386565, -2.8121296198154386, -3.1016132670886187, -3.64033234004778, -4.839635144312755, -7.0, -3.7317467856612594, -4.840297468206219, -3.451676806726055, -4.4434507498835405, -3.0216333238569884, -3.995318602010679, -2.4878451201114355, -7.0, -5.140526897671522, -3.6046064588259554, -3.5086224292083905, -3.3876706252875857, -4.373959669875467, -2.9953457062877002, -3.792666404313239, -4.259109865420318, -2.979154479109356, -3.0025226295727028, -3.845632454617127, -7.0, -2.9117177342322664, -3.421286223713023, -2.8883171754889676, -3.3471792739642363, -3.381716596708923, -2.8874289556954906, -3.3858045901019573, -3.709132467226349, -3.527034493844401, -3.974551604853553, -2.5913560510793734, -3.504148951133771, -3.2802773049196117, -3.3777455512976413, -3.247007093589786, -3.1690602549929996, -3.436404044035392, -4.668860957617935, -2.894141677812021, -3.558754271310005, -3.0939831124466552, -3.308315360887939, -3.352724338457504, -4.844063809083758, -3.419451371669478, -3.957969247759722, -3.919227191992776, -3.4135952373045524, -2.3674122514997986, -3.624053838228878, -2.6743108342734345, -2.507019396581007, -2.858252805913937, -3.7057721050805066, -2.694635357225439, -3.844946010338845, -1.9451744228401158, -3.0008175943550923, -3.4494907413063243, -2.884876998002835, -2.3011102715552583, -2.322103599668317, -4.240967118022486, -2.7644850574458855, -3.101882679381091, -4.839864403842175, -2.909199319174384, -2.5864168811897237, -3.48106126027507, -5.142796035713555, -2.145536311770067, -2.000189042149084, -2.044118073016288, -4.2381653294663355, -2.4521453857623565, -3.965383599222163, -2.2811719675702458, -3.243286146083446, -1.9413530558205947, -3.389459486355433, -3.1422597796874947, -7.0, -3.222396072786465, -2.79560515242787, -2.709217217996484, -3.2372064601272545, -2.9196207980200626, -3.3659647706873033, -2.7081274579060466, -2.504439732505021, -3.8870136942873503, -2.2816739211328607, -2.2334933588947083, -3.4687748900951387, -2.159286004048917, -4.363458414291912, -3.4519275966524705, -2.4250559185103264, -2.7213706944108016, -4.186717819029356, -7.0, -7.0, -4.839792184445329, -4.113581795950651, -2.7358779665299697, -3.5438570500705913, -2.704435569281117, -7.0, -4.5429374082326195, -3.017884063335557, -4.845612684135473, -3.8664707831458736, -4.442194326559684, -3.775950081737593, -4.839716812268482, -2.751431342261705, -3.498341190767632, -4.23895202975007, -4.24261285243832, -4.334175046895992, -4.104136231496542, -3.389590696801049, -7.0, -4.840883613589037, -4.043516438047088, -5.142020096199679, -4.841356341520803, -3.889329720601343, -3.4087794137661467, -7.0, -3.3247937807091326, -7.0, -4.839983696540098, -3.308571772551367, -2.8657658594694206, -3.031089518782224, -7.0, -4.244539968815006, -3.018534070428183, -4.443813527217629, -3.407427989055528, -7.0, -3.8015720810951765, -2.4305067377450893, -7.0, -4.237926844051205, -3.891199727625491, -3.9134616631596444, -3.792062646197921, -4.539787833529511, -4.241334760242145, -3.8643049389888486, -4.841109084468154, -3.8437620828337336, -3.1426196465966703, -3.6173970865153198, -7.0, -3.4335513705142096, -3.5579511712575087, -4.103915622081331, -3.8799269556700935, -7.0, -7.0, -4.385001176125872, -3.6983739916872556, -2.273237707705318, -3.5567415224990464, -3.753150847267354, -4.102642600790214, -4.841033940514008, -3.5170128532784437, -5.141872886754569, -3.5773315251569056, -7.0, -3.6684635732806234, -3.027452297858026, -4.666567896592164, -7.0, -2.992970913857653, -2.596142567343199, -3.4440386695597027, -3.8451011421066204, -3.1223040090061507, -3.7165906667718334, -3.0547346171400873, -3.5750379762374167, -3.4724902344224757, -4.198983753867747, -5.143723465259768, -4.1431928557306, -4.53859886586218, -5.140429473253813, -3.2608705827096878, -4.670873332461625, -3.9964366147788897, -4.4488917441512195, -3.2995174339276034, -4.4466614109543094, -4.036292323610829, -3.0091289241314882, -3.5967253493187594, -3.603459883471974, -4.840911803851301, -3.6972916295266804, -5.140438902378489, -3.3461328370047307, -3.4810215787471606, -4.19977040897577, -5.140517470457171, -3.6973196556576204, -3.680469929748303, -2.859604649512901, -4.841437686480623, -5.141556374124269, -7.0, -5.140498615414539, -7.0, -7.0, -7.0, -4.1585162774930335, -4.667210053653095, -3.3667839409230824, -4.442743088040626, -5.142067067435677, -4.663958348341331, -5.14153442905532, -3.8870199535759746, -4.840836625751898, -4.105228305092498, -4.299055679117874, -3.296457344130786, -3.9807243231871605, -3.5846092940960688, -4.239061615868581, -5.140517470457171, -3.9735034636555957, -4.442880953337685, -7.0, -2.984571029906977, -4.239230637369824, -3.9960423505978575, -4.149437744906596, -4.670304621143013, -4.032984289505631, -5.14082846053363, -4.663870464975706, -3.8035284989545763, -4.5385674505657745, -3.9768449851151355, -3.6668548025233454, -7.0, -5.140322595530777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8063590835188696, -7.0, -7.0, -7.0, -7.0, -3.9085654363368745, -7.0, -7.0, -7.0, -7.0, -7.0, -4.035869813695553, -3.4044916177586857, -7.0, -7.0, -3.8008183956305728, -7.0, -2.5185139398778875, -7.0, -3.2990712600274095, -7.0, -7.0, -3.751290950370651, -3.03261876085072, -7.0, -7.0, -2.571708831808688, -7.0, -2.292994040067439, -3.471438407389299, -7.0, -3.3402457615679317, -7.0, -5.141092156375883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1324731545055577, -7.0, -3.094390492191114, -2.826884298707612, -3.0537367980540173, -3.486288760960566, -7.0, -7.0, -3.12515582958053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.449308659474037, -7.0, -7.0, -3.0847549631793543, -7.0, -7.0, -7.0, -2.6748611407378116, -7.0, -4.647995506133741, -7.0, -3.036429265626675, -7.0, -7.0, -3.871105700985585, -2.9927743642553555, -7.0, -7.0, -2.523583901029429, -2.658488381309017, -0.9718406418727065, -7.0, -2.7614266329616655, -7.0, -4.27589207337761, -7.0, -7.0, -7.0, -7.0, -3.40840957846843, -7.0, -7.0, -7.0, -7.0, -4.146995757209465, -7.0, -7.0, -7.0, -2.7373329866975253, -7.0, -3.3613500243522663, -7.0, -3.143431190009773, -2.642189632909757, -7.0, -7.0, -3.0849335749367164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.69340447840352, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0874264570362855, -3.4308809464528913, -3.5964871337365443, -7.0, -7.0, -3.8204860776625775, -2.9818186071706636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0253877998904075, -3.721645766289746, -4.151492428425498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5191057562064487, -7.0, -7.0, -2.971739590887778, -3.1784013415337555, -7.0, -7.0, -7.0, -7.0, -7.0, -2.673635185140647, -7.0, -3.3809344633307017, -7.0, -7.0, -3.872039667973286, -7.0, -7.0, -3.8393109258210014, -1.988686334642222, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4408041673450787, -7.0, -7.0, -7.0, -7.0, -3.0830747263681317, -7.0, -7.0, -3.5744942682853273, -3.1489109931093564, -7.0, -7.0, -3.245018870737753, -7.0, -2.8830933585756897, -7.0, -7.0, -7.0, -7.0, -3.6454713949056066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1866738674997452, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4086167935193554, -7.0, -3.847202363980924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.269629674357553, -7.0, -5.411861194075582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1958996524092336, -7.0, -7.0, -2.6766936096248664, -1.9815165943059867, -7.0, -7.0, -7.0, -4.464971167320695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9740509027928774, -3.6735737964230517, -3.248218561190075, -7.0, -3.1097135047929503, -7.0, -7.0, -7.0, -4.012119835804513, -7.0, -7.0, -7.0, -4.710202014655385, -7.0, -7.0, -7.0, -3.9875322027298394, -7.0, -3.6547539332529304, -3.406199423663313, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8391636829146503, -3.4126285205443754, -7.0, -2.4878451201114355, -2.6525686374796384, -7.0, -3.2027606873931997, -7.0, -2.7153765052071366, -2.505723786499102, -3.1048284036536553, -7.0, -7.0, -4.286456469746983, -3.8870543780509568, -2.705007959333336, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9507541815935037, -2.7904259173911106, -2.999637937051224, -3.261976191397813, -3.5106790310322102, -7.0, -4.749148615956129, -2.3160902169680027, -7.0, -7.0, -7.0, -7.0, -2.759775730538379, -7.0, -7.0, -3.3919930722597127, -7.0, -7.0, -7.0, -3.6898414091375047, -7.0, -7.0, -2.056360281381856, -7.0, -7.0, -3.908181085136654, -5.273184216267906, -7.0, -2.3833844469949503, -5.018226009952465, -3.466422722433792, -7.0, -7.0, -7.0, -2.8229522405474814, -3.475162519083091, -3.7123129086813655, -2.6972293427597176, -7.0, -7.0, -2.294282475584744, -2.7831886910752575, -7.0, -7.0, -2.8550141033002596, -1.9131513129998394, -2.3742382627571037, -7.0, -7.0, -4.594005601788341, -4.77108014034136, -7.0, -7.0, -7.0, -7.0, -7.0, -4.112135602681912, -4.879674935072914, -7.0, -7.0, -7.0, -4.7178950800038555, -4.696203441212152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.182386117037066, -7.0, -7.0, -7.0, -4.3750872200075035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.181100079728049, -7.0, -3.0273496077747564, -4.368119458615029, -3.919425538440869, -7.0, -7.0, -7.0, -7.0, -4.193741688019228, -3.6862339584582546, -3.1752218003430523, -3.962274604623315, -4.059004571695273, -4.0773588195305, -7.0, -3.5900452854920486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5929447015163736, -4.089780807751493, -5.40529853903925, -7.0, -2.7218106152125467, -7.0, -4.176751849112052, -7.0, -7.0, -7.0, -7.0, -7.0, -4.319418389047728, -7.0, -4.480868923687168, -7.0, -7.0, -7.0, -3.9944326411643747, -3.8835194856567163, -7.0, -3.738740931267598, -4.353315031342222, -7.0, -4.30588853028431, -7.0, -7.0, -4.305684487423615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7299742856995555, -3.8793253007848074, -7.0, -7.0, -4.340047317661393, -7.0, -3.2762319579218335, -7.0, -3.7373516958037145, -7.0, -4.194306163649559, -3.299942900022767, -7.0, -7.0, -7.0, -3.2946866242794433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2271150825891253, -7.0, -7.0, -4.006722692201684, -7.0, -7.0, -7.0, -4.139823135037863, -7.0, -7.0, -7.0, -3.3283796034387376, -7.0, -3.44544851426605, -7.0, -3.1760912590556813, -3.6455941844910615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4988616889928843, -7.0, -4.142139080132135, -7.0, -7.0, -7.0, -7.0, -3.8998439433821988, -3.1398790864012365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.784617292632875, -3.5151092854215533, -3.604442066260723, -7.0, -4.302915079568861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.527836045164708, -7.0, -7.0, -3.9428014663179405, -7.0, -3.4255342204982635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.061829307294699, -4.392978186542541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.826722520168992, -7.0, -7.0, -7.0, -7.0, -4.103872108403055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.195650622404186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3026555539507187, -7.0, -4.5061558329372735, -7.0, -7.0, -7.0, -2.8190775863707995, -3.915610862661467, -3.1699681739968923, -2.7554937284151193, -7.0, -7.0, -2.82020145948564, -3.3876468462749743, -7.0, -7.0, -3.6823256186678073, -3.542483373920922, -1.7718546157393802, -7.0, -2.7788744720027396, -2.7501225267834, -2.8904210188009145, -7.0, -3.4516742765040034, -2.6496593222923464, -2.8603380065709936, -7.0, -2.70372115992702, -2.637689819118401, -7.0, -3.207365037469072, -7.0, -2.786751422145561, -2.9849771264154934, -3.1284463247764815, -7.0, -7.0, -3.36679638328673, -3.164352855784437, -2.9586594270529334, -2.970346876230093, -3.1245042248342823, -7.0, -7.0, -7.0, -3.431979917800492, -7.0, -3.2143669215966044, -3.8058405488146727, -7.0, -7.0, -3.166282067316571, -7.0, -3.1277525158329733, -7.0, -7.0, -7.0, -7.0, -2.850125259486936, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0471774810216448, -7.0, -7.0, -4.52391222124351, -7.0, -7.0, -7.0, -7.0, -3.88632148655948, -7.0, -2.972665592266111, -7.0, -7.0, -7.0, -2.914078585389112, -2.9622509186326402, -3.3012470886362113, -7.0, -3.3166248501806437, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2920344359947364, -2.506843136339351, -3.0003255987771427, -7.0, -4.155123393710713, -7.0, -7.0, -7.0, -7.0, -7.0, -2.561612418595533, -7.0, -3.647676313240871, -3.904138265829186, -7.0, -2.9434945159061026, -7.0, -7.0, -3.3084399050774618, -7.0, -7.0, -2.323158310195747, -3.565611724902059, -2.4159548048447954, -7.0, -3.57611089412084, -3.3082212936437174, -7.0, -7.0, -2.5771086551437348, -3.915439410670454, -2.8709888137605755, -3.1702617153949575, -7.0, -2.3832167518513314, -3.0674428427763805, -3.4000628548971994, -3.497758718287268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.734999734992562, -7.0, -2.5235347412529383, -7.0, -7.0, -7.0, -2.507855871695831, -7.0, -7.0, -7.0, -3.837335868015015, -7.0, -7.0, -3.079904467666721, -3.4645268051427323, -7.0, -7.0, -7.0, -3.2219355998280053, -2.3915231836751634, -7.0, -3.2681097298084785, -7.0, -7.0, -2.8273692730538253, -3.5860807074609022, -7.0, -7.0, -4.037573587603141, -2.9818186071706636, -7.0, -7.0, -3.0927206446840994, -2.960470777534299, -7.0, -7.0, -3.9318137039591394, -7.0, -7.0, -7.0, -7.0, -3.663429755167688, -7.0, -7.0, -7.0, -7.0, -3.1015752462559334, -7.0, -7.0, -7.0, -2.775974331129369, -3.1701638903057043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.080806804334363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4546162237926987, -3.0788191830988487, -7.0, -3.4127964287165433, -7.0, -3.5621143505886863, -7.0, -7.0, -2.958085848521085, -7.0, -2.591621038213319, -2.9978230807457256, -7.0, -2.733598460961339, -2.7731070022450126, -2.998041264363428, -4.137132476008993, -5.713115728907259, -7.0, -7.0, -2.550228353055094, -7.0, -7.0, -2.8680563618230415, -2.514737442325631, -3.2702128548962426, -2.785567089582034, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8567288903828825, -7.0, -4.466284216743369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.793580867368156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6909424754242903, -7.0, -4.7124392366451895, -7.0, -7.0, -7.0, -2.8519568522583176, -3.452016565962548, -3.122777405533776, -3.029789470831856, -7.0, -7.0, -3.0718820073061255, -7.0, -7.0, -7.0, -2.8520222794031276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.370698092575577, -3.1581613832785496, -2.7087041048933, -7.0, -7.0, -4.831405810044329, -3.2993438354972895, -7.0, -3.8123562116249397, -7.0, -7.0, -2.6491184149090556, -7.0, -7.0, -3.2249213455840313, -3.018423082826786, -3.3207692283386865, -3.243534101832062, -7.0, -5.050357196597368, -3.1802406009557402, -2.478566495593843, -7.0, -7.0, -3.7671558660821804, -3.031105362355941, -7.0, -7.0, -2.656577291396114, -2.632963168167261, -2.7505083948513462, -7.0, -3.712733859069952, -7.0, -3.155336037465062, -3.635282637998212, -3.074084689028244, -3.9036746843986587, -3.2135000483995153, -4.92114927101706, -7.0, -3.5020855592260456, -3.3561963473189524, -3.1843364700443417, -7.0, -7.0, -1.1387669360318688, -3.5561818466529114, -2.17679685544469, -2.955126283548938, -3.0532705666813786, -7.0, -7.0, -2.517855418930029, -7.0, -3.0569048513364727, -7.0, -2.960375631410158, -7.0, -3.226084115975824, -7.0, -7.0, -4.596926814342971, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.592254501367159, -4.279096329747602, -7.0, -7.0, -7.0, -7.0, -7.0, -4.281907896489367, -7.0, -7.0, -4.923347656497826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.109814695694399, -7.0, -7.0, -7.0, -7.0, -4.076319974124645, -7.0, -4.678554796337683, -7.0, -7.0, -7.0, -7.0, -7.0, -4.454905809342959, -7.0, -4.138418494589286, -3.123851640967086, -4.19446808867598, -7.0, -7.0, -3.3683798716238016, -7.0, -7.0, -3.980495747537131, -7.0, -7.0, -7.0, -4.118260000849086, -3.9036325160842376, -7.0, -3.325215588977838, -3.353595694717235, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9922706704370094, -4.187079151712716, -7.0, -7.0, -2.796747738875302, -7.0, -4.956226076359381, -7.0, -7.0, -4.082066934285113, -7.0, -7.0, -7.0, -4.4346327661741425, -4.482766425369471, -7.0, -4.217983753176437, -3.337459261290656, -4.598013113465622, -4.012232445789756, -3.08278537031645, -3.051464211738796, -4.956677371255107, -3.57541879121436, -5.3478372092177215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8166389448984614, -7.0, -3.011062694729735, -7.0, -7.0, -4.044206464382898, -7.0, -7.0, -2.916980047320382, -7.0, -7.0, -4.0992177915305135, -3.151574127994361, -7.0, -7.0, -7.0, -7.0, -3.677789391068861, -7.0, -7.0, -7.0, -7.0, -7.0, -2.989004615698537, -2.940267391446012, -7.0, -4.017909395896689, -7.0, -7.0, -7.0, -4.191908403649229, -7.0, -7.0, -3.1622656142980214, -3.1653927267698108, -7.0, -3.4848690327204026, -7.0, -2.945222316635341, -3.253822438708073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.862429556106009, -7.0, -7.0, -3.9923325590474645, -7.0, -7.0, -7.0, -7.0, -7.0, -3.849265817161557, -7.0, -7.0, -7.0, -3.3562171342197353, -3.444226364912892, -3.0033168924581544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3345877719765284, -7.0, -7.0, -3.5019488596712804, -3.4855997583250473, -3.3309208305952356, -7.0, -3.8314004742396546, -7.0, -2.7913787118676137, -2.7129301630395437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.809222921689422, -7.0, -3.8321638947835877, -7.0, -7.0, -7.0, -3.372819981678968, -3.4667193716815987, -7.0, -7.0, -7.0, -3.657342736814626, -3.6787914343662442, -7.0, -7.0, -7.0, -7.0, -3.4430890609518037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8530895298518657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3364597338485296, -7.0, -7.0, -3.278982116865443, -3.3157604906657347, -7.0, -3.4572761860613257, -3.31722734917642, -3.3725438007590705, -4.363434680652326, -7.0, -7.0, -7.0, -2.5502793235946637, -2.7287963375777684, -2.4358443659844413, -7.0, -7.0, -3.004536317851323, -2.378851946448881, -2.66573104525868, -7.0, -7.0, -2.4800788400654854, -3.038767687756788, -7.0, -2.737987326333431, -7.0, -2.94411237698898, -2.847726855657811, -3.0538464268522527, -4.272259442940222, -3.416640507338281, -7.0, -7.0, -7.0, -7.0, -7.0, -3.652536418593025, -7.0, -3.269396182694991, -3.0474695746198566, -3.999664843536983, -7.0, -3.36679638328673, -7.0, -3.43568513794163, -3.0654303186203693, -7.0, -7.0, -7.0, -2.7420964023032446, -2.657738598606746, -3.046136452517971, -3.625621081424908, -2.207476504590846, -2.7690363017304622, -7.0, -3.395675785269936, -3.623456048069934, -7.0, -7.0, -7.0, -7.0, -2.4290341409683256, -3.710709565724337, -3.517855418930029, -7.0, -7.0, -2.8189952374500518, -7.0, -7.0, -3.758306181725307, -7.0, -7.0, -3.4308036457839908, -7.0, -7.0, -7.0, -7.0, -2.910139105384123, -2.0747912283446883, -3.343605508104172, -7.0, -7.0, -7.0, -2.812244696800369, -2.994053063587675, -7.0, -7.0, -2.745382544818521, -7.0, -2.293288876794244, -2.989894563718773, -7.0, -3.3107994838343924, -3.207365037469072, -3.1080009315871533, -3.1197506238845842, -3.3184807251745174, -3.288528676377525, -7.0, -7.0, -7.0, -3.7342796444928203, -3.285107029566812, -2.2778383330020473, -3.466274321789292, -2.6085260335771943, -2.4463127477795816, -7.0, -3.331427296520743, -7.0, -3.159266331093494, -3.368236156479323, -2.2301081646076315, -7.0, -7.0, -7.0, -3.456897187449348, -7.0, -3.9123017850426116, -2.537534267560738, -7.0, -7.0, -7.0, -4.699213141173923, -2.962369335670021, -3.0235610900969454, -3.7388598020722004, -7.0, -7.0, -2.7845357847300596, -1.6984587688656787, -7.0, -3.278753600952829, -3.791830947674836, -7.0, -7.0, -7.0, -2.824125833916549, -7.0, -4.084003990608029, -2.9866437936313814, -2.763261565324877, -3.097812407365289, -7.0, -3.954821183051793, -7.0, -7.0, -7.0, -7.0, -2.3888436682532856, -7.0, -7.0, -2.692141609366784, -3.2367291512441203, -7.0, -7.0, -3.5251744278352715, -3.4674601095072637, -7.0, -2.467312062980552, -7.0, -7.0, -7.0, -7.0, -3.9532763366673045, -7.0, -7.0, -3.2365754281376833, -3.3475251599986895, -3.273926780100526, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3895204658463776, -3.036429265626675, -4.312029180025536, -7.0, -3.8256208250035, -3.168133818504442, -7.0, -3.792251571903264, -3.7231271587956916, -3.468495024507069, -3.5793262037552553, -3.485437481076301, -3.517195897949974, -2.968015713993642, -7.0, -3.756636108245848, -7.0, -7.0, -7.0, -3.714874382231572, -7.0, -3.466255768142727, -7.0, -3.123655674438122, -7.0, -3.553822366753853, -3.3712526291249394, -3.1856837803185045, -7.0, -7.0, -3.8429834701222174, -7.0, -7.0, -2.8860392755664424, -3.5376931943673906, -3.4554539687786283, -7.0, -7.0, -3.0360297306565434, -3.2889196056617265, -3.311753861055754, -7.0, -7.0, -3.371437317404101, -3.50478791537113, -2.941594242145933, -3.8744238305865015, -4.2827722805262605, -7.0, -7.0, -3.368472838440362, -3.140036410975282, -7.0, -7.0, -7.0, -2.6487780708385658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2979792441593623, -7.0, -3.648433200512645, -7.0, -3.276921132065774, -7.0, -7.0, -7.0, -7.0, -7.0, -3.393399695293102, -7.0, -7.0, -1.8449787119514363, -3.6007006960652372, -3.205880729887537, -7.0, -7.0, -2.77477334374225, -2.3626081204867257, -2.090090905872992, -7.0, -3.819774182176816, -2.7138264243805246, -3.325925955771466, -7.0, -3.0089483966758594, -3.0620803445744653, -2.7000440709473397, -2.82033284489941, -3.1425980108920646, -3.0002894331875893, -3.388633969351789, -7.0, -7.0, -3.3322364154914434, -7.0, -7.0, -3.0308020487722676, -3.4599952560473914, -3.325515663363148, -3.495127881242933, -7.0, -2.5143062095606763, -3.21761552866633, -3.146593102096305, -3.618780024506215, -3.481729196960016, -3.7049508491377243, -2.8855496750060046, -7.0, -3.316557399977768, -7.0, -7.0, -7.0, -3.521007252408604, -3.1158600345090313, -2.709458415950323, -7.0, -3.526339277389844, -7.0, -1.5525084428372955, -3.5572497926300244, -2.466818209752554, -7.0, -7.0, -7.0, -3.2498706873123053, -2.702900297964451, -7.0, -7.0, -2.999130541287371, -7.0, -2.9443592755072294, -2.870793931782029, -3.0292484623758416, -7.0, -3.4308809464528913, -3.445837632186448, -7.0, -3.4850941325046456, -2.89234761433871, -4.213323692974096, -7.0, -3.404833716619938, -4.422474931931271, -3.1690863574870227, -7.0, -7.0, -7.0, -3.6871721045948, -3.8754664158663856, -3.5241363765925686, -7.0, -7.0, -7.0, -2.990227824624168, -7.0, -3.38147609027503, -7.0, -3.4651596976461785, -7.0, -2.600959781544797, -7.0, -7.0, -4.008504360940798, -4.481163042077974, -7.0, -7.0, -4.724439723397075, -3.6201013378002385, -2.997677564080969, -2.9924565253794793, -2.9429039182926973, -3.4350077667145955, -7.0, -3.856406623801429, -3.9522191382314986, -4.7028482577600945, -3.234891248646208, -3.87989832433001, -3.607079544728571, -3.9297713276322854, -7.0, -7.0, -7.0, -7.0, -4.305587802072341, -3.1511491223040866, -3.37211383659506, -7.0, -4.069381308695122, -3.74681576560032, -7.0, -2.8289676454127086, -3.897956810006952, -3.648368883096271, -4.050515089642183, -7.0, -7.0, -7.0, -7.0, -3.194514341882467, -3.921790485658187, -2.746367854866736, -7.0, -3.427612318183267, -4.117031796709582, -3.658059118703411, -2.658084813018018, -3.1518102044229432, -2.71755163219766, -2.47194779850952, -4.050959459771651, -7.0, -7.0, -2.6981192619861707, -3.2777590363616937, -7.0, -3.0269416279590295, -2.825047270292454, -7.0, -2.6255410871774854, -7.0, -7.0, -7.0, -3.9977576042802543, -3.0676033749641594, -4.929476827785161, -7.0, -3.7987196851850062, -7.0, -4.117114978346134, -7.0, -4.56266665574757, -3.426153268215979, -7.0, -7.0, -4.350189849999334, -7.0, -4.792769781353479, -7.0, -2.8338823321356137, -2.45760158014135, -3.72969922631617, -2.9618954736678504, -3.3939260065858368, -3.3590957107594277, -4.117560097792157, -2.040602340114073, -4.873171354062279, -7.0, -2.8216772586543666, -3.719652330718798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5182733060633335, -2.8666417205660397, -2.4410139714466967, -7.0, -3.2195845262142546, -2.863136906582225, -3.2835273648616936, -7.0, -7.0, -3.06595298031387, -7.0, -3.4844218721716147, -2.8962111688853125, -7.0, -7.0, -3.567761337534174, -3.2431621151010512, -3.0806986228711293, -7.0, -3.3666097103924297, -7.0, -7.0, -3.0925452076056064, -3.2064210652379885, -3.074907822966796, -7.0, -3.0670708560453703, -7.0, -7.0, -4.310629596987806, -3.169446216533984, -3.3824534742228978, -7.0, -7.0, -2.6024940688072813, -7.0, -2.8564267724702446, -7.0, -3.180412632838324, -2.750893920382125, -7.0, -7.0, -7.0, -3.4763968267253302, -3.0937017848055484, -7.0, -7.0, -2.9577668661476535, -7.0, -3.215108581053093, -2.485957905922165, -4.232182634187274, -7.0, -2.607901598556746, -3.0681858617461617, -7.0, -2.6416440555197305, -7.0, -7.0, -7.0, -3.2474822606770544, -2.874719133905513, -3.3316297176299323, -2.8808952189104655, -3.480438147177817, -7.0, -7.0, -7.0, -3.865518519074774, -7.0, -2.9485352161613654, -2.7741799549910717, -3.461798557525109, -7.0, -2.8016323462331667, -2.405737390282291, -3.1420764610732848, -3.569958818096594, -2.9915683807473004, -3.635282637998212, -3.8356905714924254, -7.0, -2.686099771995916, -2.735235868261925, -7.0, -7.0, -7.0, -7.0, -4.385695625410561, -7.0, -2.930099638207734, -2.9279859470994287, -2.7393992645779885, -3.54703589974001, -3.5992825013197454, -3.387081201499178, -3.777281791671015, -2.776493635844961, -7.0, -3.2024883170600935, -7.0, -2.918180171004722, -2.876939140345395, -7.0, -7.0, -3.505014240084107, -3.428944290035574, -3.4187982905903533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0432499701637923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2847690133490195, -3.4847268042986617, -3.454112800025813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7391238429861597, -3.392345155361204, -3.385963570600697, -7.0, -7.0, -3.5974757898703773, -7.0, -7.0, -3.563599728881531, -7.0, -3.772028165324855, -3.1818435879447726, -7.0, -7.0, -7.0, -7.0, -2.5246124580893383, -7.0, -3.079904467666721, -1.768131589884881, -7.0, -7.0, -2.6951897138022916, -4.206180699019942, -7.0, -7.0, -7.0, -2.82991992647253, -3.022222104507706, -7.0, -2.182699903336043, -2.513217600067939, -7.0, -7.0, -3.7478583033812987, -3.1395117739437315, -7.0, -7.0, -3.448420360470679, -7.0, -7.0, -7.0, -3.42422807069598, -2.813358558611011, -7.0, -4.170279321571128, -7.0, -7.0, -7.0, -7.0, -3.1100844228869238, -7.0, -7.0, -7.0, -3.4554539687786283, -7.0, -4.101718961339596, -7.0, -3.164352855784437, -3.43568513794163, -7.0, -2.8488047010518036, -3.12515582958053, -7.0, -7.0, -3.279210512601395, -7.0, -2.923751287842489, -7.0, -3.93444794894897, -3.053398601612112, -7.0, -7.0, -3.0454533779715143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8573023360449996, -7.0, -7.0, -7.0, -7.0, -7.0, -2.90803798386038, -7.0, -3.035829825252828, -4.826253021326406, -7.0, -7.0, -7.0, -7.0, -3.43098828567289, -7.0, -3.126780577012009, -7.0, -7.0, -7.0, -7.0, -2.910090545594068, -7.0, -7.0, -3.2143138974243994, -3.3039516339434503, -3.741821046886808, -7.0, -7.0, -7.0, -3.0713295868603425, -2.190773878234185, -2.2078237957767666, -7.0, -2.9901908082608895, -7.0, -7.0, -7.0, -7.0, -7.0, -3.471731651480051, -7.0, -3.6851144690465394, -3.7863254343900703, -7.0, -7.0, -7.0, -3.0041063232796583, -2.9792155752703517, -7.0, -7.0, -2.3542685477139713, -2.7058637122839193, -2.7311409003621625, -7.0, -3.189209489582306, -3.7586924198789013, -7.0, -7.0, -2.708420900134713, -3.6952758632075, -3.27600198996205, -7.0, -7.0, -2.0457140589408676, -7.0, -3.2323607123535703, -3.248463717551032, -7.0, -7.0, -4.378525081544915, -7.0, -7.0, -7.0, -7.0, -7.0, -3.750701200395868, -3.773274348337454, -2.808387133479059, -7.0, -7.0, -7.0, -7.0, -2.792391689498254, -7.0, -3.122616300689269, -7.0, -7.0, -7.0, -2.7264555202583103, -3.7706434020513013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.749736315569061, -7.0, -2.99211148778695, -3.383815365980431, -3.608044405736923, -7.0, -7.0, -3.790340246867004, -3.1332194567324945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6505503492394107, -7.0, -4.293274139710753, -7.0, -7.0, -3.731172265937845, -7.0, -7.0, -3.6453240015622934, -7.0, -3.4667193716815987, -7.0, -3.0829647937777516, -3.284205067701794, -3.0400086360135417, -7.0, -7.0, -3.414555556229215, -7.0, -7.0, -1.8251979712261068, -3.876025291494317, -7.0, -2.8898267412346583, -2.9995654882259823, -3.0994043723455422, -3.171433900943008, -2.739572344450092, -7.0, -7.0, -2.420386311461478, -2.600194729411715, -7.0, -7.0, -7.0, -3.409087369447835, -7.0, -7.0, -7.0, -7.0, -7.0, -3.144574207609616, -3.044539760392411, -2.2645226857355865, -2.8985756053931113, -3.6422666189026733, -3.848527796197598, -4.759195948794771, -7.0, -7.0, -2.3183615117557332, -7.0, -3.0090257420869104, -3.056142262059052, -3.130333768495006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9910783313529503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2060158767633444, -7.0, -7.0, -3.8206611346435957, -7.0, -7.0, -7.0, -7.0, -4.025940454660939, -7.0, -3.4269739619520005, -7.0, -3.5694491562792146, -7.0, -7.0, -7.0, -3.1126050015345745, -2.878737165940484, -2.90655949500245, -2.9817431236418557, -3.873611196996467, -2.85227662464138, -7.0, -7.0, -3.3010299956639813, -3.5356738034257504, -3.2107197156810017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9564565834098997, -7.0, -3.517195897949974, -7.0, -5.13372089071826, -2.028539565086679, -7.0, -3.5992497190170716, -7.0, -7.0, -2.6903929943288283, -3.3895204658463776, -7.0, -7.0, -2.9782457508063915, -2.696356388733332, -7.0, -7.0, -7.0, -3.9020028913507296, -7.0, -7.0, -7.0, -3.494711025205263, -3.6723749787460793, -7.0, -7.0, -3.4956830676169153, -7.0, -7.0, -7.0, -2.2084887797172543, -7.0, -2.4144958388716917, -7.0, -7.0, -4.161397952545797, -3.618780024506215, -4.699524967482672, -7.0, -7.0, -3.2646480141320873, -2.53315637946727, -7.0, -2.940516484932567, -7.0, -7.0, -1.9314311045195778, -2.8608618390413807, -2.9475970826119045, -3.0257153839013404, -7.0, -7.0, -3.104487111312395, -3.187520720836463, -7.0, -3.696531119969607, -7.0, -3.254990926676981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.883468372477887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.946091841038187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.682181190837443, -3.857292282117438, -7.0, -7.0, -7.0, -3.6062738531699883, -7.0, -3.8986429210566396, -7.0, -2.537063142781617, -7.0, -7.0, -7.0, -7.0, -4.038540686337457, -3.446847710155809, -4.195419072502522, -7.0, -3.563599728881531, -7.0, -4.488160428173718, -2.5933761303711673, -7.0, -7.0, -7.0, -7.0, -3.830396176483469, -7.0, -7.0, -7.0, -4.516896584853889, -4.643611982577783, -7.0, -7.0, -7.0, -7.0, -4.481002855946895, -7.0, -7.0, -3.7951149856303634, -7.0, -7.0, -7.0, -4.440972018733961, -7.0, -7.0, -3.927293353644034, -7.0, -3.90114215765946, -7.0, -2.905256048748451, -3.322637630953044, -4.958592548578363, -7.0, -4.570445640792904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.17539583139403, -3.1487568513217923, -3.499879448956432, -7.0, -7.0, -4.35305023964259, -7.0, -2.8041394323353503, -7.0, -3.486076097372589, -7.0, -3.4997076973735277, -7.0, -7.0, -7.0, -7.0, -3.420945405921972, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.070037866607755, -2.1868433703244703, -7.0, -3.7331571251294715, -7.0, -7.0, -4.602374740744461, -4.397442891379402, -7.0, -7.0, -7.0, -2.660533466698088, -7.0, -2.6334684555795866, -7.0, -2.8575335121635788, -3.2219592832353405, -7.0, -7.0, -3.470410490975931, -2.5477747053878224, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6033248398913864, -3.0088981147709397, -7.0, -7.0, -3.60422605308447, -2.5798978696031036, -7.0, -3.861385040442465, -7.0, -7.0, -7.0, -3.426673888021373, -3.1355852630128624, -3.233630580164463, -7.0, -7.0, -7.0, -7.0, -2.857935264719429, -7.0, -7.0, -2.8270460170047342, -3.360593413565249, -7.0, -7.0, -2.8743529469323774, -3.459653790072658, -2.4374707639390873, -3.153204900084284, -3.0610753236297916, -3.5379449592914867, -3.2995072987004876, -3.2907022432878543, -3.4514026135974927, -7.0, -7.0, -7.0, -3.0265332645232967, -7.0, -4.068853493671498, -7.0, -3.2281436075977417, -7.0, -3.9341827155103566, -7.0, -4.177161199726047, -7.0, -3.408155133886264, -3.2210228052048415, -7.0, -2.4603339459252327, -7.0, -2.7383400528355843, -2.934750874663579, -7.0, -7.0, -3.066325925362038, -2.4790471757557007, -3.802346059593307, -3.2137832993353044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1693977913346485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8010605298478555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6605538012167345, -7.0, -7.0, -7.0, -7.0, -2.6433116488889414, -7.0, -7.0, -7.0, -7.0, -2.857073910843454, -7.0, -7.0, -7.0, -3.643156465619706, -7.0, -7.0, -7.0, -7.0, -2.7765397662270646, -3.2295111961536325, -3.1562461903973444, -3.3601198615808054, -3.1383345474722515, -3.6459132750338443, -7.0, -7.0, -2.794263116841679, -2.377587097885457, -2.653475642824231, -3.063427189454848, -3.610234175334389, -7.0, -3.61857102812013, -2.6260836162697796, -3.5787537844264343, -7.0, -2.74183416300906, -3.0275725056114244, -7.0, -3.344294005898312, -7.0, -3.282244366936266, -3.2258259914618934, -7.0, -3.4096344784215926, -3.6845760873884554, -7.0, -7.0, -7.0, -3.1512932213135336, -3.6386888866901237, -2.8720914961828954, -3.31492005599242, -3.1718726561396826, -2.949585151326652, -3.4042073486014837, -7.0, -2.9586594270529334, -3.0654303186203693, -2.8488047010518036, -7.0, -7.0, -7.0, -7.0, -2.794313736208544, -3.1316186643491255, -2.738620998309552, -2.766818287765997, -2.2176719098008713, -3.6940345384921605, -7.0, -3.372175286115064, -2.7653975864258418, -7.0, -7.0, -3.2080828797513523, -7.0, -3.1908917169221698, -2.3448089202425684, -2.812258353215379, -3.6299190355035416, -7.0, -2.2823104961985092, -7.0, -7.0, -2.723236690821973, -7.0, -3.103666913746792, -3.2123937280004866, -7.0, -2.8693784160613367, -3.607025878434786, -3.6410773133253747, -1.6185974631800342, -3.1554878621412814, -3.1691844255650965, -7.0, -3.109646031090973, -3.0668847431297714, -3.353980309781697, -2.900124268601545, -3.4387796033573776, -7.0, -2.7315711941519254, -2.7721382666011203, -2.5917754759952185, -3.6214878645806303, -7.0, -7.0, -3.2591955531844463, -3.004894321731049, -2.874191804679071, -7.0, -3.135572963494826, -7.0, -7.0, -7.0, -2.667519659668659, -3.61857102812013, -2.8268663262901415, -3.4108615542165976, -2.499081947388326, -2.66753209539257, -7.0, -3.6406801532776654, -3.395588463568244, -3.2313846262355748, -2.8651195661786515, -3.681512586638962, -7.0, -2.8614597320725235, -2.9004278224560105, -2.8582089739878973, -3.6830470382388496, -3.1221222197687104, -2.981401486519429, -3.66143405039392, -3.7238659644435037, -3.3644571851188294, -3.3104256450108718, -3.0948203803548, -3.3325731039972615, -3.4095950193968156, -3.324385356490427, -7.0, -1.6653756948311083, -2.438937701095528, -7.0, -7.0, -3.0882810978965463, -7.0, -7.0, -7.0, -3.6265456590271294, -7.0, -3.156639998415452, -2.913187477585532, -2.6389273482647213, -2.8869007270739773, -7.0, -3.749620385199933, -7.0, -3.6370892735303304, -3.1005428500124648, -4.177421057483169, -3.413467412985825, -7.0, -7.0, -3.671728088239558, -3.1868320721941115, -3.615739688619155, -7.0, -7.0, -2.9337402994969355, -7.0, -3.0145205387579237, -3.028571252692538, -7.0, -3.1788331173591167, -3.741466761769755, -2.7693384508595433, -3.7294887691795613, -7.0, -3.1455708129596123, -3.648652695131223, -7.0, -7.0, -3.3738311450738303, -7.0, -7.0, -7.0, -3.2351314848706103, -3.643847310299714, -3.277188849160538, -7.0, -3.171726453653231, -2.7781113527324988, -7.0, -3.448242412634439, -2.7281797974498008, -7.0, -3.3024030886051277, -3.4218506150229584, -2.786199135510441, -3.7005306569785916, -2.877289054162867, -3.5985169354268858, -7.0, -7.0, -7.0, -3.4011936846300252, -2.708343630410836, -3.709948016510761, -7.0, -2.6454503417761015, -7.0, -3.193958978019187, -3.660675788338524, -2.8197084098789618, -3.0405034457764253, -3.6570558528571038, -2.6829996132339535, -2.8662873390841948, -7.0, -2.0123280442811606, -3.8191489428071344, -2.801403710017355, -7.0, -7.0, -7.0, -3.6203442997544935, -3.32990612340021, -7.0, -7.0, -3.660770643527697, -3.373463721632369, -2.9188454761509606, -3.088920402154754, -3.498285485563561, -7.0, -2.9476297473843545, -2.7034824447657835, -3.220631019448092, -3.313128713845194, -3.149013723915726, -2.984227178928321, -3.0293025935589983, -7.0, -7.0, -7.0, -7.0, -3.6378898165807905, -7.0, -7.0, -2.9541620770875987, -3.045790326219194, -7.0, -7.0, -7.0, -7.0, -3.6716355966021297, -7.0, -7.0, -3.3709754493589705, -3.92813970687512, -3.7427251313046983, -2.8399715893768915, -2.8615344108590377, -3.735758537443739, -7.0, -7.0, -1.568804204911912, -2.8526324579115143, -2.2093176791872278, -3.196636681829914, -3.3788322152077925, -3.205745540942662, -3.6379897807846855, -7.0, -2.7857826631404676, -2.8144854219696707, -2.141777003410443, -2.6667642211250104, -3.722921711759407, -2.5403294747908736, -3.1921956258464497, -3.625723909525756, -3.4058583993176366, -2.910691091182139, -2.801197834459149, -7.0, -3.3398487830376373, -3.008855563996213, -7.0, -3.0290589500844995, -7.0, -3.1640552918934515, -3.384962397302607, -3.400537989391946, -3.5039268041935103, -3.7209031708134575, -3.239902941766294, -2.8542680773374083, -7.0, -3.1565302224638243, -3.145403607683906, -3.37675939540488, -2.4106899876913297, -7.0, -3.1997894478774342, -2.4527445088929922, -2.9094668791881264, -3.0475863570743504, -3.066325925362038, -2.5968169359155904, -3.657385079468079, -2.407529236843904, -7.0, -7.0, -7.0, -3.493225621510431, -2.8494194137968996, -3.3474275986185416, -7.0, -2.792881745385397, -2.939219635854818, -3.2823955047425257, -3.171726453653231, -2.7898324333109286, -3.3690302218091532, -3.214843848047698, -3.2903685556172673, -3.670245853074124, -3.6742696661144847, -2.7651716502632686, -3.4915328873037605, -7.0, -3.1478529205561894, -3.389806176644556, -2.7261383350625823, -7.0, -3.6848453616444123, -7.0, -3.850829959848531, -2.8109490279235856, -2.9950986973311724, -2.8047450374282943, -7.0, -7.0, -3.311047116421505, -7.0, -7.0, -2.827830650428466, -2.9515533709285435, -3.6462076122066853, -2.2762517344250175, -7.0, -7.0, -3.5921161680291207, -3.3503587936139123, -3.745933158459443, -7.0, -4.742308700116073, -3.6571355618564843, -3.7479165080965102, -3.7261870607048433, -2.813011924279666, -7.0, -7.0, -4.07523664020612, -3.9028883034451844, -4.110219223689404, -3.1289097316047707, -3.6193194667848867, -4.404876460036331, -3.372523889041039, -3.857030798272624, -3.9060475723377666, -3.868879446237088, -4.014096818000472, -7.0, -3.461913898795249, -3.213597436747359, -7.0, -3.9925888608075706, -3.6760531246518715, -7.0, -3.2197912707627743, -3.9551824629011803, -3.9310169108928728, -4.392626616474039, -7.0, -7.0, -4.197308131503102, -7.0, -3.7268358369615817, -3.976143559821804, -2.893917426651345, -3.683407299132095, -3.2551777082639703, -3.209703356355492, -3.451939869365103, -3.008227455332087, -3.2827440836856336, -3.29284654660978, -3.194814042376054, -2.9243439084088356, -7.0, -4.194028437352706, -3.33577236081626, -3.1319392952104246, -7.0, -3.013525366277892, -3.1078880251827985, -3.6261349786353887, -3.215329068686353, -3.590013393112236, -7.0, -7.0, -3.2994517494807445, -3.218386036788657, -4.028207663558861, -7.0, -3.3279716236230104, -7.0, -2.6898989932168496, -7.0, -4.566432441251003, -3.3469673709650354, -7.0, -7.0, -3.5460488664017342, -3.1643245251486003, -3.330569333851446, -3.8837182019639593, -2.999456792322048, -3.046061390345488, -3.273884754313585, -3.2567810237713575, -3.6724673130680823, -2.7091317439789475, -2.994534789598222, -3.1612481803327377, -3.3088507917845416, -7.0, -3.031985216636394, -3.011048910322697, -3.4143790345261684, -7.0, -7.0, -7.0, -3.623766000133931, -7.0, -2.0158041779437648, -2.2227164711475833, -1.688740276308066, -3.33193317250328, -3.0443045191759146, -2.442019395215901, -3.305852740224386, -2.202566154587303, -2.789177654611687, -2.119475840906798, -7.0, -2.3868423283433025, -1.8437747597848402, -2.963598962597241, -3.460747541844197, -3.1890051397458556, -2.9792447784093805, -2.6846341802729268, -3.686278678067201, -3.6582976503081897, -2.9033613362553186, -3.66133934000604, -2.972758083903539, -2.2691907672877827, -2.044185585342395, -7.0, -2.597287647853614, -7.0, -3.0273496077747564, -3.4302867467096143, -2.6690579115218163, -2.892738121210747, -7.0, -2.850986404764101, -1.7877087345941876, -3.6845760873884554, -2.0014903272465965, -7.0, -2.374998155900169, -1.6823812847962216, -7.0, -3.6313422864839326, -2.877515318847026, -2.087713828597375, -2.8838678243612104, -3.65667304588485, -3.030275802889288, -2.0643688391738695, -3.062487970918584, -2.07132157559902, -2.0679538048440853, -2.2943298414179085, -7.0, -1.8674800254095916, -1.9493257951445513, -7.0, -2.385432481320828, -3.656577291396114, -7.0, -3.458788881710845, -2.1871394597445524, -2.0489385872046793, -2.100032493818558, -2.412894827472052, -2.8740674540749565, -7.0, -7.0, -2.957128197676813, -2.563389799113065, -3.647089428716555, -2.047236679256487, -1.767133369022842, -3.00987563371216, -7.0, -1.7666773799436992, -1.9738748705565081, -2.0509821774826937, -2.5676144427308447, -1.9344984512435677, -2.052538695727877, -2.1668327392036955, -2.7014816356209272, -2.010447450097471, -2.834844405648704, -2.931118710592187, -3.6970548922725746, -7.0, -3.6104472214421213, -3.5204507792823576, -3.114076960824089, -2.5986993354639654, -3.2085085378884504, -2.248747410028291, -2.9808362964839756, -2.751784139570337, -2.9649887923442346, -2.9595183769729982, -1.959594369612932, -3.6591552809406296, -2.2375599525385867, -7.0, -1.8898284729852795, -1.8254802118678997, -3.62746827245971, -3.613418945034573, -2.4764773784239575, -2.6896639650157703, -1.9987107152217967, -2.392789484309745, -7.0, -7.0, -7.0, -7.0, -7.0, -3.630529571426824, -2.549266072612872, -3.249198357391113, -2.3493941009438672, -2.473924693416157, -3.185258765296585, -3.632356046239073, -7.0, -2.8935768378559144, -7.0, -2.782759192623997, -3.722633922533812, -2.800161697509443, -2.742077896487582, -3.9109444057499787, -7.0, -7.0, -3.2459442801693057, -3.1794560366764517, -7.0, -2.9651397854416572, -2.8925583448401535, -3.36707624226875, -2.6968554344439792, -2.8457868498048096, -2.8359722608046543, -7.0, -7.0, -3.0704073217401198, -3.617734035364018, -2.653694795315082, -2.9427519204298136, -3.682506085939011, -7.0, -7.0, -2.085468969886672, -7.0, -7.0, -7.0, -7.0, -3.168202746842631, -2.2285286773571817, -7.0, -4.30167823901002, -7.0, -7.0, -7.0, -2.873763335954439, -3.9122752104988123, -7.0, -7.0, -7.0, -7.0, -7.0, -3.494373277015027, -2.7744046578712123, -7.0, -3.369586890736344, -4.003681721889419, -3.085290578230065, -7.0, -7.0, -7.0, -7.0, -2.638988159343682, -3.3887345299220177, -2.6067395461469105, -7.0, -7.0, -7.0, -2.4647449647018136, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9373141119603785, -7.0, -2.970346876230093, -7.0, -3.12515582958053, -7.0, -7.0, -2.173186268412274, -7.0, -7.0, -3.255754786643044, -3.5467732675440056, -3.45178643552429, -3.6058973516449746, -7.0, -7.0, -7.0, -3.448551739201578, -7.0, -1.842902781008627, -1.7116238663693082, -7.0, -7.0, -7.0, -4.1503879773252805, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3361594264847807, -7.0, -7.0, -4.523502595313213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.910090545594068, -7.0, -7.0, -7.0, -3.49996186559619, -2.5476516583599693, -7.0, -7.0, -3.617542423019308, -3.5444401373176926, -7.0, -7.0, -7.0, -7.0, -7.0, -2.787460474518415, -3.2879136470760337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6351820486562674, -4.379051576184367, -7.0, -7.0, -7.0, -7.0, -3.540454613671412, -7.0, -7.0, -2.3406423775607053, -2.9476787399369364, -2.3547148546267573, -7.0, -3.2199917955016972, -3.5504805987637473, -7.0, -3.8433573784379558, -3.004751155591001, -4.517024258314842, -7.0, -3.452706226511029, -7.0, -7.0, -7.0, -3.601582004456866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.732956369575625, -2.722786215722561, -3.387033701282363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8433449200125067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6254839394069043, -7.0, -2.673941998634088, -3.1806419027298323, -7.0, -7.0, -3.652899893085946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9253636673541017, -7.0, -7.0, -7.0, -7.0, -3.8482988317907267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2780673308886628, -7.0, -7.0, -7.0, -7.0, -3.669409867287783, -7.0, -7.0, -2.7019994748896368, -7.0, -7.0, -3.473961150455583, -7.0, -3.459844642388208, -7.0, -7.0, -7.0, -7.0, -3.7460890430562004, -7.0, -7.0, -7.0, -7.0, -3.855700830835437, -7.0, -7.0, -7.0, -7.0, -2.8175653695597807, -7.0, -7.0, -2.502882116864084, -3.436639631692661, -2.2814878879400813, -4.13312357540262, -7.0, -7.0, -2.2105860249051563, -7.0, -7.0, -7.0, -2.001445240874181, -2.380211241711606, -7.0, -2.2281436075977417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8287391943822384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5173278822943734, -7.0, -7.0, -7.0, -4.316117183498905, -7.0, -7.0, -3.042181594515766, -4.109266296065941, -7.0, -7.0, -7.0, -3.692582562274909, -3.043833654133147, -3.66138669778177, -3.719082573901486, -7.0, -7.0, -7.0, -7.0, -2.690196080028514, -3.162116141062368, -3.1340176456759834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3280736545131555, -7.0, -7.0, -7.0, -5.13203864273154, -3.5936736569452488, -2.8102325179950842, -3.809537269896024, -7.0, -7.0, -3.591287265058499, -3.2846562827885157, -7.0, -3.509605704611556, -1.8910810795189281, -2.209738359614102, -2.411878599849826, -7.0, -7.0, -3.3950350180286306, -7.0, -7.0, -7.0, -2.8535461212539044, -7.0, -2.9206450014067875, -7.0, -3.1144441724452543, -7.0, -7.0, -7.0, -7.0, -2.7234556720351857, -2.511214701136388, -7.0, -7.0, -4.380108687851405, -3.3461039217773387, -5.1763534937358475, -7.0, -3.7945577512547617, -4.018729617051877, -3.4766142820325037, -7.0, -7.0, -7.0, -7.0, -2.830944910590037, -2.6428765252838393, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7041505168397992, -7.0, -3.647969458362972, -2.907411360774586, -3.80453468538638, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.880470592803778, -7.0, -7.0, -7.0, -7.0, -4.997849268568125, -4.581528692545709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658412098960092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0806264869218056, -4.67045923596689, -7.0, -7.0, -7.0, -4.3290315750108395, -7.0, -4.758404667212629, -3.9935244031670654, -3.194930399217724, -7.0, -4.48567884650391, -3.7263467971429836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.186952099802866, -7.0, -7.0, -2.165792706193744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5973221466588425, -7.0, -3.035029282202368, -4.244687712313355, -7.0, -7.0, -5.046557592118178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.867143266506253, -3.058995093525416, -7.0, -7.0, -7.0, -7.0, -7.0, -2.70372115992702, -7.0, -7.0, -7.0, -4.797371426606096, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6661434272915585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0494764543837896, -7.0, -7.0, -7.0, -7.0, -7.0, -5.094607370220264, -7.0, -7.0, -7.0, -2.9827233876685453, -7.0, -7.0, -7.0, -7.0, -3.648993910859345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0657041722395175, -3.0399426187629923, -7.0, -7.0, -7.0, -7.0, -3.89707700320942, -3.331427296520743, -3.554748951661129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.774078800752519, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1535506516745295, -3.317958924700952, -2.585836579364848, -3.460554221350507, -7.0, -3.736953953783146, -7.0, -4.033021444682911, -7.0, -3.1789769472931693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.447623097760286, -7.0, -7.0, -7.0, -2.6893088591236203, -3.6671726724788685, -7.0, -2.6866362692622934, -7.0, -7.0, -4.395413767475018, -2.74350976472843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.035829825252828, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.970579305714851, -7.0, -3.1344958558346736, -4.029716474028271, -7.0, -7.0, -7.0, -3.906846625927991, -3.746582308802873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9114239653762946, -7.0, -2.286939863241526, -3.381740252243611, -3.2081725266671217, -7.0, -7.0, -3.101403350555331, -2.355547295732133, -7.0, -4.023375938139562, -7.0, -2.394013663157313, -7.0, -7.0, -3.0879587894607328, -2.751279103983342, -7.0, -7.0, -2.4787267814350806, -7.0, -4.188481622437761, -7.0, -3.1245042248342823, -7.0, -7.0, -7.0, -2.173186268412274, -7.0, -7.0, -3.2489536154957075, -3.0409976924234905, -3.132083501905735, -3.0312737784133907, -2.927010868975651, -2.743313739231126, -7.0, -7.0, -3.028435683944159, -2.8842287696326037, -3.2079035303860515, -3.2111205412580492, -1.758555694320263, -7.0, -7.0, -3.6792158461511475, -7.0, -7.0, -3.4727564493172123, -7.0, -7.0, -2.8964343519192703, -7.0, -7.0, -3.848004271497268, -2.3878345723908105, -2.2246625288410296, -7.0, -7.0, -3.600264821501586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.085351749338937, -7.0, -4.037864555774374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.951337518795918, -2.6414741105040997, -3.0386643087839875, -7.0, -3.452553063228925, -7.0, -3.6734816970733473, -3.0430405916283196, -2.436162647040756, -1.8739015978644613, -2.2392994791268928, -7.0, -3.216236298927863, -7.0, -7.0, -3.416141031168329, -3.295347148333618, -7.0, -7.0, -3.071485468913831, -4.058828243869098, -3.13481437032046, -3.8674674878590514, -2.8472641017707647, -4.3938251796516585, -7.0, -7.0, -2.9521140849069925, -3.000434077479319, -7.0, -3.7071015665766813, -7.0, -7.0, -7.0, -4.376193586884285, -7.0, -7.0, -7.0, -2.7024305364455254, -7.0, -7.0, -7.0, -3.8665531523018597, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3550682063488506, -7.0, -3.55303301620244, -2.645422269349092, -7.0, -2.866877814337499, -4.070173369985659, -7.0, -7.0, -3.372175286115064, -7.0, -7.0, -7.0, -7.0, -2.4658288153574364, -7.0, -2.3150156418807564, -3.424936056088804, -7.0, -7.0, -2.5458630090437357, -7.0, -7.0, -7.0, -7.0, -7.0, -3.049605612594973, -7.0, -2.9903881924169533, -7.0, -3.8132250459342703, -7.0, -7.0, -3.0591134355336966, -7.0, -3.238798562713917, -3.632558514532672, -3.289142835932333, -3.4473131088235682, -3.0130479961152314, -7.0, -3.2543063323312857, -7.0, -2.5249521970606112, -3.110589710299249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.789404420511141, -7.0, -3.4888326343824008, -7.0, -7.0, -2.768268016451548, -7.0, -2.93007534541053, -3.4268364538035083, -7.0, -7.0, -7.0, -3.879153246184246, -7.0, -2.9410142437055695, -7.0, -7.0, -1.8993153129766798, -3.1027766148834415, -7.0, -3.132579847659737, -2.631595948357801, -3.3281756614383227, -3.844570361988267, -5.23621973764206, -7.0, -3.0856472882968564, -2.8257505813480277, -7.0, -7.0, -1.5500017449195571, -1.9386577278728878, -3.329397879361043, -3.3236645356081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6021389467834846, -7.0, -7.0, -7.0, -7.0, -1.5425142162816539, -2.026564690731343, -7.0, -7.0, -7.0, -7.0, -3.2097160302749415, -3.065206128054312, -7.0, -2.6780629049743454, -7.0, -4.324385356490427, -3.0948203803548, -3.3087652259715576, -7.0, -7.0, -7.0, -7.0, -1.7985739217489467, -3.4085791254086675, -7.0, -3.077231599016813, -2.177107335873833, -7.0, -7.0, -7.0, -7.0, -2.794255617174412, -2.9163223242173815, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6281845080734128, -2.6354837468149124, -2.940516484932567, -3.1045846507809474, -7.0, -3.1986570869544226, -2.7056499320768443, -4.355128920244271, -3.916295994563131, -7.0, -7.0, -7.0, -7.0, -2.728962179713866, -7.0, -7.0, -3.2587569725365753, -2.583132067189918, -2.770667949557633, -3.09968064110925, -7.0, -5.050532486589045, -3.4176377396522297, -7.0, -7.0, -7.0, -3.7868933252613157, -3.182889966569668, -7.0, -7.0, -3.1762359997608716, -7.0, -2.9253120914996495, -7.0, -7.0, -3.163757523981956, -2.929418925714293, -3.6618126855372615, -7.0, -3.7803353173424465, -3.695761776133511, -4.62026621966285, -7.0, -7.0, -3.9411841806116277, -2.901662615158517, -7.0, -7.0, -3.0310042813635367, -3.5878231713189552, -2.858403506793794, -2.909326749263002, -3.403977963669355, -7.0, -7.0, -2.5605044151950564, -7.0, -7.0, -7.0, -7.0, -7.0, -2.674685572725944, -7.0, -7.0, -3.997779430865604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.627274799986486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.924754681634838, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.300175042202833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1645089952494, -2.8664484574247195, -7.0, -4.035989756936426, -7.0, -4.935504746707883, -3.53343309682066, -7.0, -7.0, -4.061542005396714, -3.5079817359140435, -7.0, -7.0, -7.0, -7.0, -3.8221026686469206, -7.0, -7.0, -7.0, -4.993471501713574, -4.789565201370235, -7.0, -7.0, -3.422753941301348, -7.0, -7.0, -7.0, -7.0, -3.4894662813031285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5578898161615204, -7.0, -7.0, -3.991339312324231, -7.0, -3.6057358938767465, -5.348367178861577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.174059807725025, -7.0, -3.7183078877374, -7.0, -3.0646451447919367, -2.6956567599361905, -7.0, -7.0, -7.0, -2.8226764934027218, -7.0, -4.322970043852789, -7.0, -7.0, -3.407900540142635, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2041199826559246, -7.0, -7.0, -2.8692317197309762, -2.796343017901684, -7.0, -4.029099566823543, -7.0, -7.0, -7.0, -3.618672055598137, -4.790833844350289, -7.0, -3.5024271199844326, -3.111598524880394, -7.0, -2.9190780923760737, -7.0, -3.3089910290001643, -3.95970902424643, -7.0, -7.0, -3.45117215751254, -3.3010299956639813, -7.0, -7.0, -7.0, -7.0, -3.1470576710283598, -2.8817649496862066, -3.5268990185335793, -7.0, -7.0, -2.9874428049358013, -3.5671440451956573, -7.0, -4.158633841358625, -7.0, -7.0, -3.9184497424011577, -7.0, -3.3610089326644585, -3.518382315545344, -7.0, -2.829089253448099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8298181874388773, -7.0, -7.0, -7.0, -2.943575266054042, -3.3576490329184674, -7.0, -3.8371674062278354, -7.0, -3.466348528450199, -7.0, -3.0938884175896426, -7.0, -7.0, -7.0, -2.9708116108725178, -7.0, -7.0, -7.0, -3.193958978019187, -7.0, -3.0153724583497334, -7.0, -7.0, -4.0743653395608534, -3.3971575742021414, -3.5052856741441323, -7.0, -3.34143452457814, -7.0, -3.3813858660133773, -3.4016589724951523, -7.0, -7.0, -7.0, -7.0, -4.10124858623158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.779776808670381, -3.1048284036536553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9019348574378614, -7.0, -7.0, -7.0, -7.0, -3.471731651480051, -7.0, -7.0, -7.0, -7.0, -3.6920533650340808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5913985512812485, -7.0, -7.0, -3.910210721165163, -7.0, -7.0, -7.0, -4.259426626587052, -4.2735568135298365, -7.0, -7.0, -7.0, -7.0, -7.0, -4.385481150169245, -3.530754489047923, -7.0, -3.152777414797245, -3.498965816652076, -3.5619357633137816, -7.0, -7.0, -3.658964842664435, -7.0, -7.0, -3.8010204744912124, -7.0, -7.0, -3.0056094453602804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.107626174659984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2978907226198837, -7.0, -4.021313365484695, -3.09377178149873, -3.5219222448835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188084373714938, -4.0100737026717335, -7.0, -3.4759615891924236, -7.0, -7.0, -3.8967466156074058, -2.4659644526568525, -7.0, -3.4119562379304016, -3.3134549624770786, -7.0, -7.0, -7.0, -3.503245771465113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.747567162737625, -7.0, -3.6339731557896737, -7.0, -3.7050482678914456, -3.773274348337454, -3.8109378415420916, -7.0, -7.0, -7.0, -7.0, -7.0, -3.322839272686321, -7.0, -3.7428036584691657, -2.643822656189299, -7.0, -7.0, -4.0750357259221905, -7.0, -3.6872613462435067, -7.0, -3.8291107101552946, -3.81888541459401, -3.532117116248804, -7.0, -7.0, -7.0, -3.949958933716697, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5599066250361124, -3.461698570306548, -4.295852870643949, -7.0, -7.0, -7.0, -4.527591237920567, -7.0, -7.0, -3.5129510799724906, -7.0, -7.0, -3.748381865207099, -7.0, -7.0, -7.0, -4.411804830815424, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4203848769604073, -7.0, -4.223833277236323, -7.0, -7.0, -7.0, -7.0, -3.497758718287268, -7.0, -7.0, -3.6617180576946593, -3.163757523981956, -3.504742636271688, -7.0, -3.248988587068936, -7.0, -7.0, -7.0, -3.598899887063883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.699620957965614, -7.0, -7.0, -3.1271139278564446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.035469763481283, -7.0, -4.33344727449675, -7.0, -3.888179493918325, -3.9267558091842387, -7.0, -7.0, -3.8009231818132183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.527951958343942, -7.0, -3.3739535505092246, -7.0, -3.7562556487542333, -7.0, -3.9112286531507197, -7.0, -7.0, -7.0, -3.612571954065176, -7.0, -7.0, -7.0, -7.0, -2.0699551096954005, -2.085797394401143, -7.0, -7.0, -4.401262647628488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.158687421166621, -7.0, -7.0, -7.0, -7.0, -3.466125870418199, -7.0, -3.663323933628212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.176477127123627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.561280314290289, -7.0, -3.3281246609706576, -7.0, -7.0, -7.0, -7.0, -4.063239508171935, -7.0, -3.7861004389479858, -7.0, -4.254266028449126, -7.0, -7.0, -7.0, -3.78830981210705, -3.9014038268252516, -3.587299293713931, -3.4072775708370235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.738304793074105, -7.0, -7.0, -7.0, -3.6624524593842067, -3.40963729678618, -7.0, -3.383556067822925, -7.0, -3.5531545481696254, -7.0, -7.0, -7.0, -7.0, -3.330819466495837, -7.0, -7.0, -7.0, -4.051770389384332, -7.0, -7.0, -7.0, -7.0, -7.0, -3.820004306808318, -7.0, -7.0, -7.0, -7.0, -3.6591552809406296, -7.0, -3.571883445956414, -7.0, -3.5721743136130595, -7.0, -7.0, -3.0383805221721714, -4.127978988916909, -3.762639904201196, -7.0, -3.937568038600383, -3.852589773309593, -3.9255699095433765, -7.0, -7.0, -7.0, -7.0, -3.3292961591399655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.632242116329883, -7.0, -7.0, -4.6215293920698475, -7.0, -3.8470788620657155, -7.0, -4.255698548052355, -7.0, -7.0, -4.139952511628103, -4.593108767780639, -7.0, -7.0, -7.0, -4.4377030097263495, -3.8620887659114524, -7.0, -4.075382701327236, -4.39458300002751, -4.9351241922799405, -7.0, -7.0, -7.0, -3.994274909206636, -7.0, -4.562197666191757, -4.18130038026682, -4.0761851605990795, -7.0, -7.0, -7.0, -4.314667608117513, -7.0, -4.096927384439907, -4.371178731816287, -4.256188382589775, -7.0, -3.8621015503709666, -3.9993045723383487, -7.0, -7.0, -3.9401278366627084, -7.0, -3.9933921374490025, -3.8197412972730103, -7.0, -3.8436687229791437, -4.074816440645175, -3.6722826247889206, -3.628645567732361, -7.0, -3.745465168670727, -7.0, -3.42978456835467, -3.5558541878466463, -7.0, -3.6291910861512395, -3.958085848521085, -7.0, -7.0, -4.114844413145024, -7.0, -7.0, -3.7717517097073854, -3.4266220223396426, -3.695508028511194, -7.0, -3.8649854606597938, -7.0, -4.666115322770356, -3.6260836162697796, -3.417988261884268, -4.157879674389154, -4.2777237887624535, -7.0, -3.6707281346138623, -3.867791467345843, -3.8456147497502875, -7.0, -3.672490393581568, -7.0, -4.3094065759545295, -3.3742113633648128, -7.0, -3.6129234633249223, -4.66655541812069, -7.0, -3.7958684360034725, -7.0, -7.0, -3.934437847785288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.202651759757338, -7.0, -4.2484392081415105, -7.0, -7.0, -4.087195576859718, -7.0, -7.0, -7.0, -7.0, -7.0, -4.512837759385333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6290016192869916, -7.0, -7.0, -4.104657791008797, -7.0, -7.0, -7.0, -5.103013064468925, -4.202787915033841, -7.0, -7.0, -3.74401901732498, -7.0, -7.0, -7.0, -3.6094876898532853, -4.306682311019055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.481550113834348, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0509922864820505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6131496270446064, -3.517789511883555, -7.0, -4.355183236009675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5756380764913755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.269512944217916, -4.134862127351672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530878153458473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.128722284338427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.649851182496973, -3.4622482153549976, -7.0, -7.0, -7.0, -3.4497868469857735, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3090685504394175, -3.619249898968967, -2.518075036877517, -3.4192947217534604, -3.1140806845145326, -2.9501213475113732, -2.4348881208673157, -7.0, -2.1954112236995664, -2.8226038992559745, -3.1586639808139894, -4.091332756361876, -2.9501213475113732, -7.0, -7.0, -2.86123561863404, -3.4184670209466006, -2.812244696800369, -2.717908147047537, -3.0334237554869494, -3.1604685311190375, -7.0, -3.6807323905389078, -2.1324731545055577, -7.0, -2.7420964023032446, -3.279210512601395, -2.794313736208544, -7.0, -3.2489536154957075, -7.0, -7.0, -3.374748346010104, -2.902093586658964, -3.531223374533027, -2.3530451702840365, -3.3574901660030245, -7.0, -3.220631019448092, -2.5722260030301527, -7.0, -7.0, -7.0, -7.0, -7.0, -2.518311424377877, -3.3457807615350057, -7.0, -7.0, -2.6501687043735536, -7.0, -3.302330928684399, -3.2133406385265157, -2.7701152947871015, -7.0, -3.8262724589346937, -7.0, -2.9822712330395684, -7.0, -3.121887985103681, -1.3469231820488825, -3.4274861090957858, -2.291305408119733, -7.0, -2.927626962444954, -7.0, -1.9388055392584782, -7.0, -2.20682587603185, -7.0, -3.439276652216932, -7.0, -3.140939922954522, -7.0, -7.0, -3.514282047860378, -3.3803921600570273, -3.480868923687168, -7.0, -7.0, -3.3899040530754956, -7.0, -1.5738167483447931, -7.0, -2.6770852776044296, -7.0, -2.6982455763416864, -3.3224260524059526, -2.0689095352848286, -2.222734405713542, -7.0, -7.0, -2.9824973691977124, -7.0, -3.550490423553987, -7.0, -7.0, -7.0, -7.0, -3.690550461510359, -3.2474822606770544, -3.8898057518680855, -4.281994874508107, -3.185825359612962, -7.0, -7.0, -4.695617372314424, -2.584783378996508, -2.7525605875980133, -3.1905184513367484, -7.0, -7.0, -1.9413817860395093, -3.253580289562183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.149796248264438, -3.173841587563712, -7.0, -3.736077637003946, -7.0, -7.0, -7.0, -7.0, -2.8221680793680175, -7.0, -2.7167186243047006, -7.0, -7.0, -3.215901813204032, -2.895140046118993, -7.0, -7.0, -3.402433346219312, -2.7207792813583587, -7.0, -3.0261245167454502, -3.0595634179012676, -3.1915907263792107, -2.998259338423699, -2.788168371141168, -3.0075877677507616, -3.3639878297484915, -3.17376882313665, -3.4617771336303806, -2.8447877188278463, -7.0, -7.0, -7.0, -7.0, -3.1109262422664203, -3.035829825252828, -2.4190319759437413, -7.0, -4.2942016006947465, -3.035029282202368, -2.989598116961936, -2.6169714149603367, -7.0, -7.0, -2.9496826907952043, -2.62490060220449, -2.9951962915971793, -2.230252363564598, -2.91399035898314, -7.0, -2.8717674683517753, -2.7331972651065692, -2.686040120257356, -7.0, -7.0, -2.7745169657285493, -3.111598524880394, -4.052963128755503, -7.0, -3.494189391861649, -7.0, -3.500648063371912, -7.0, -3.049605612594973, -7.0, -3.17260293120986, -3.0093800657435907, -2.975891136401793, -7.0, -2.010796911305982, -7.0, -3.8887970674566805, -7.0, -7.0, -7.0, -7.0, -7.0, -3.157456768134226, -7.0, -7.0, -3.9430491110084067, -2.8001276715211594, -4.150909873701122, -4.391234285554613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.362670929725667, -2.6568644915489172, -2.9960736544852753, -7.0, -7.0, -0.9571200035186085, -7.0, -1.9773424780314754, -3.3723595825243238, -3.8663168819216542, -7.0, -7.0, -7.0, -3.1058506743851435, -7.0, -3.1975562131535367, -3.0043213737826426, -2.9156636035057732, -7.0, -2.61419390497756, -2.977527638759884, -3.377063289113944, -7.0, -7.0, -7.0, -1.9268149217388544, -7.0, -3.286044585480999, -2.921166050637739, -4.017108499147387, -3.247973266361807, -7.0, -7.0, -3.7169210731667612, -7.0, -1.5092877328770893, -2.6480596170682786, -3.876044550246095, -2.052673695567914, -7.0, -7.0, -7.0, -2.694354451535204, -7.0, -7.0, -2.82020145948564, -2.8356905714924254, -7.0, -7.0, -7.0, -2.4010870839062237, -2.246092887649155, -3.296665190261531, -3.2214142378423385, -7.0, -3.75349688080315, -2.9700884752693537, -3.0842186867392387, -3.9982375359446207, -7.0, -3.2335037603411343, -3.34908316877959, -3.095518042323151, -3.028887415295375, -2.176438555741045, -3.8268519478206438, -7.0, -2.993656628615462, -2.6161002486082365, -4.205497585194046, -2.579892428714085, -7.0, -7.0, -7.0, -7.0, -2.5600906481244183, -7.0, -7.0, -3.501470072100412, -7.0, -2.526016021340753, -7.0, -2.8442441226239614, -7.0, -3.2723058444020863, -2.675961549642169, -3.2116544005531824, -4.161649453645398, -3.6987267313033447, -4.69954925623636, -7.0, -2.716965947239607, -4.544022544449755, -3.038288917572495, -7.0, -2.6488477083728936, -3.0948203803548, -2.7018916426154878, -3.3475251599986895, -3.068556895072363, -2.2232038037013226, -7.0, -2.2081725266671217, -2.4877038631637265, -7.0, -3.1992064791616577, -7.0, -3.7001843296221977, -2.8369567370595505, -1.8236010449684215, -7.0, -2.41954272470028, -3.9996306927125405, -7.0, -7.0, -7.0, -7.0, -4.383869200802545, -7.0, -3.7519056726903885, -3.8422006200271137, -7.0, -7.0, -3.7144764560755936, -7.0, -7.0, -3.9858192722715877, -7.0, -4.6790188494009755, -4.448489891511086, -7.0, -7.0, -7.0, -5.087976522642251, -4.287488208401288, -3.694203933575552, -4.124471618919488, -7.0, -7.0, -7.0, -7.0, -3.8753651631765127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.461588557771539, -7.0, -3.6200214777674438, -3.248463717551032, -4.374647548674498, -3.5766979443367655, -3.315550534421905, -2.8627275283179747, -4.3404441148401185, -7.0, -3.774428864606044, -4.0178677189635055, -7.0, -4.45048005460606, -3.224627223695273, -3.5394883214712616, -7.0, -3.404755990537958, -3.557266528869904, -7.0, -7.0, -3.9065146136422175, -7.0, -7.0, -3.5168437434754565, -3.520043796485627, -7.0, -7.0, -2.4796872561691394, -2.840419777736486, -4.113188647173712, -7.0, -4.804311547921729, -7.0, -3.9317374785123613, -7.0, -4.032820149438564, -3.5963457132407983, -3.9417740027353023, -7.0, -3.752227765448041, -3.843295082736507, -3.521007252408604, -3.0635001547221736, -7.0, -3.082465665425615, -4.356704509667284, -7.0, -4.570527373492466, -7.0, -7.0, -3.1512747226484303, -4.308180101030666, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0789495605356465, -2.4998397612917653, -2.2819474676523446, -7.0, -3.3967222785037734, -3.27425409180854, -7.0, -3.11293997608408, -7.0, -3.312811826212088, -7.0, -3.32376758329678, -2.7676196082318536, -3.1914510144648953, -7.0, -7.0, -3.1264561134318045, -2.9373506949096404, -7.0, -7.0, -3.3405763000433617, -7.0, -7.0, -2.678700434998304, -3.1172712956557644, -7.0, -7.0, -7.0, -7.0, -4.602830180692315, -3.591221175368724, -4.013805927340592, -7.0, -7.0, -2.6848925855320145, -7.0, -2.309128961967035, -7.0, -2.865893242431105, -2.2557500142024325, -7.0, -7.0, -7.0, -2.858537197569639, -3.2539031250960253, -7.0, -3.3649260337899753, -2.4311339179075766, -7.0, -2.3458191151555057, -2.47716383052303, -7.0, -7.0, -2.652783368995461, -2.584670384464349, -7.0, -3.8626381581186875, -7.0, -7.0, -7.0, -2.9556877503135057, -2.9341805204045848, -2.8402315949581087, -3.3527611917238307, -7.0, -7.0, -7.0, -7.0, -3.813714391881145, -7.0, -2.9590413923210934, -2.233630580164463, -7.0, -7.0, -2.3371048535184054, -2.4402024359984047, -2.8956987269593055, -3.4608978427565478, -3.1712666394420372, -7.0, -3.3025473724874854, -7.0, -3.4530123911214554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.538824988937904, -2.76067373855426, -7.0, -3.495203630280667, -7.0, -7.0, -3.6503439557045767, -7.0, -2.4837817426770465, -7.0, -2.4681626421329956, -7.0, -2.9979976364080043, -2.7157527168228595, -7.0, -7.0, -2.8976270912904414, -2.568670978009897, -3.200594030012974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.111094410509336, -7.0, -7.0, -7.0, -3.139249217571607, -7.0, -7.0, -3.0037476689675056, -3.3479151865016914, -3.28190951735707, -3.803934849863842, -7.0, -7.0, -7.0, -3.602168551378997, -3.172310968521954, -7.0, -3.426904171590417, -2.737457698850837, -2.7278122676344823, -7.0, -3.5150786750759226, -2.893067889914971, -7.0, -7.0, -3.452706226511029, -7.0, -3.007150105366685, -3.0443437348951075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0907869279492677, -7.0, -7.0, -3.8094223346541747, -3.7942091163464964, -7.0, -7.0, -3.4452668065216505, -2.465231573252902, -7.0, -7.0, -7.0, -7.0, -3.18440748541232, -2.70413144332119, -7.0, -7.0, -1.3581676859271297, -3.613872011614492, -3.344588742578714, -7.0, -7.0, -7.0, -7.0, -7.0, -3.917698019853736, -3.344588742578714, -2.9006401839826004, -7.0, -3.274388795550379, -3.182557301304913, -7.0, -7.0, -7.0, -3.220108088040055, -1.9316031439741541, -3.4453581890617757, -7.0, -7.0, -2.657738598606746, -7.0, -3.1316186643491255, -3.255754786643044, -3.0409976924234905, -7.0, -3.374748346010104, -7.0, -3.4366025516688135, -7.0, -7.0, -3.8611160441613954, -7.0, -3.3197304943302246, -7.0, -7.0, -2.866484253384509, -7.0, -7.0, -7.0, -7.0, -3.466185257056047, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8227400033286365, -7.0, -3.0941215958405612, -4.0495507250485385, -7.0, -2.8198070645907563, -7.0, -3.2430380486862944, -7.0, -3.4916417934775863, -7.0, -7.0, -7.0, -7.0, -7.0, -3.179647524546354, -7.0, -7.0, -3.228232597940259, -3.351699700405266, -3.5836898650716833, -7.0, -7.0, -7.0, -2.604380359173108, -7.0, -3.6881527555915663, -7.0, -3.481528618895993, -3.3224260524059526, -7.0, -7.0, -3.11544408343624, -7.0, -7.0, -7.0, -7.0, -3.919531335965941, -2.5138831856110926, -3.2420442393695508, -2.5908789714255094, -7.0, -3.9259821003271034, -1.0812776032085405, -2.1595671932336202, -7.0, -7.0, -3.7267272090265724, -3.3412366232386925, -3.90156729002845, -2.5450580749210907, -3.292256071356476, -3.901240302073309, -3.302114376956201, -4.521377838762743, -7.0, -7.0, -2.750422676015204, -7.0, -3.3087777736647213, -3.7196212723403606, -7.0, -7.0, -7.0, -2.880688571764092, -7.0, -7.0, -7.0, -3.205745540942662, -7.0, -4.069483093934611, -7.0, -3.4856930402936617, -3.166282067316571, -7.0, -7.0, -7.0, -3.2329961103921536, -2.478566495593843, -4.094121595840561, -3.8889653443003374, -7.0, -7.0, -7.0, -3.9524897355097743, -7.0, -7.0, -7.0, -3.403977963669355, -7.0, -7.0, -3.4348881208673157, -3.548635059814752, -7.0, -7.0, -3.9335379019717047, -7.0, -7.0, -2.5397646745595197, -7.0, -7.0, -7.0, -3.3234583668494677, -7.0, -3.2347702951609167, -7.0, -2.244720457047523, -7.0, -4.3034984457923136, -7.0, -3.7989267385772014, -2.7835097676367373, -2.3324384599156054, -2.253534871562535, -2.784706424389351, -2.360352397078838, -2.0464951643347082, -3.424718337331567, -7.0, -3.3787611753163733, -7.0, -3.2477278329097232, -7.0, -3.452016565962548, -7.0, -3.697839368218363, -7.0, -3.7599698575543075, -7.0, -3.031105362355941, -7.0, -2.1711736885434303, -2.5100979751883425, -7.0, -7.0, -7.0, -3.3399811495372607, -3.514282047860378, -7.0, -3.5384480517102173, -3.6766570359180024, -3.4347285417797577, -7.0, -2.8654001181793016, -3.249442961442582, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2642982471902164, -3.385069776331935, -2.9587728580583295, -3.8216210095804164, -7.0, -7.0, -2.8091105993088905, -1.6213301777659805, -7.0, -7.0, -2.8009918612601714, -3.4363217001397333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7104912734275546, -7.0, -7.0, -7.0, -7.0, -3.014310480963307, -3.0, -7.0, -3.3170181010481117, -7.0, -3.462996612028056, -2.485906508300662, -3.180125875164054, -2.602679969280364, -7.0, -7.0, -4.035409724152798, -2.789298611159441, -2.320196054852768, -7.0, -3.8164815873225115, -7.0, -7.0, -7.0, -3.3361393986085566, -7.0, -2.7753748316507534, -3.1920793644398113, -7.0, -7.0, -3.00987563371216, -7.0, -7.0, -3.2899232395240046, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8328281295393536, -7.0, -3.5073160400764136, -2.8981764834976764, -7.0, -3.574956775764507, -3.4204508591060683, -4.180918775794492, -3.946599625015133, -7.0, -3.2666806020098047, -7.0, -7.0, -3.6898414091375047, -3.4653828514484184, -3.0477074316449433, -7.0, -7.0, -7.0, -7.0, -7.0, -3.899546931090867, -3.324385356490427, -7.0, -7.0, -7.0, -3.3498600821923312, -3.71357453777207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7802452838653524, -7.0, -3.3613500243522663, -7.0, -3.3126004392612596, -3.8631026824566015, -2.957093956774686, -4.127651373635002, -7.0, -3.8588378514285853, -3.846712266268432, -3.543260747590362, -7.0, -7.0, -7.0, -2.9502674680135885, -3.374381698050882, -3.7985815947285477, -3.4956830676169153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.255754786643044, -3.6136700778166193, -7.0, -7.0, -3.3272190771136168, -4.177233398034179, -7.0, -7.0, -4.721159097082167, -3.2448600309376636, -3.9329301428307897, -3.397342442838698, -3.059297726935559, -4.021106568432121, -7.0, -7.0, -4.7272158209084925, -5.002166061756507, -3.194225641306038, -7.0, -3.904634411707706, -3.396004368414134, -7.0, -3.8560841179056817, -7.0, -4.5446455377810215, -4.296928319310418, -3.465308479587306, -3.3596774133729372, -7.0, -4.36674038984291, -7.0, -7.0, -3.781496874572939, -3.710709565724337, -4.686385986344789, -4.343802333161655, -7.0, -7.0, -7.0, -7.0, -7.0, -4.212374071200659, -3.032773683437139, -7.0, -3.6794188108584622, -3.6383043327526083, -2.93881982502621, -3.4424013694827025, -3.871611849078623, -3.2127201544178425, -3.3291517006052955, -4.035269600099436, -7.0, -3.9798062647929684, -3.7368977726140367, -3.8444416709646037, -7.0, -7.0, -3.883320678382975, -7.0, -7.0, -7.0, -7.0, -7.0, -4.217896108987832, -3.9210830062916417, -5.230172076871155, -7.0, -3.4690852991231202, -7.0, -4.358287092179741, -7.0, -5.1060735504822965, -7.0, -7.0, -7.0, -3.865182965998549, -4.147212416970458, -4.789968302089217, -7.0, -7.0, -3.0232524596337114, -4.20477093628552, -3.0535585922132595, -7.0, -3.7723559402990166, -4.3587341271980105, -3.188084373714938, -4.6505406388014645, -7.0, -7.0, -4.3176873404861835, -4.016113666358908, -7.0, -7.0, -7.0, -2.720159303405957, -7.0, -2.5570486620906934, -3.5167997040816243, -2.9804311689285914, -7.0, -2.560056149734406, -3.157286734403413, -2.8372095278012064, -7.0, -7.0, -3.819214799882384, -7.0, -2.4961003641614714, -3.7096938697277917, -3.296665190261531, -2.8959747323590643, -3.379668034033654, -3.491921712586151, -3.2730784731095195, -7.0, -3.284881714655453, -3.066450169242703, -2.688642251959892, -2.83968749733336, -7.0, -3.639486489268586, -7.0, -3.207095540419218, -7.0, -7.0, -3.762196103597941, -2.9267837763578677, -3.8406496682305784, -7.0, -7.0, -3.984932166067412, -2.0144405287205007, -3.5935075893317654, -7.0, -7.0, -2.931365398745314, -3.1792644643390253, -7.0, -7.0, -7.0, -3.2869801217565664, -3.281033367247727, -3.4382258076045296, -7.0, -3.300812794118117, -7.0, -2.7052526322873587, -3.9208274397551555, -7.0, -3.174544349203273, -3.3309208305952356, -7.0, -2.971246848405424, -7.0, -3.2182728535714475, -2.9477277269633158, -7.0, -3.0221578694079523, -3.11293997608408, -3.2157256645575676, -7.0, -7.0, -7.0, -7.0, -3.5400790888041724, -2.7798368978412693, -3.499687082618404, -7.0, -3.0960405542954277, -7.0, -3.557567349330711, -2.9407554803427463, -7.0, -2.8205954965444904, -3.372175286115064, -2.746745371210528, -3.3322364154914434, -7.0, -3.59402403573142, -7.0, -2.61874519875888, -3.371437317404101, -3.184975190698261, -7.0, -3.9013129873424166, -7.0, -2.730984038495525, -3.2836403888003676, -3.036266998871953, -3.494850021680094, -3.5882436869396193, -4.2576905717886175, -3.2699019227319654, -7.0, -7.0, -7.0, -7.0, -7.0, -3.273926780100526, -3.4665710723863543, -7.0, -7.0, -3.359076226059263, -3.2658786595628224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.718383045380154, -3.1304945885234696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.741939077729199, -7.0, -7.0, -3.344883279369863, -7.0, -7.0, -4.211053762679936, -7.0, -7.0, -7.0, -7.0, -3.0737183503461227, -7.0, -7.0, -7.0, -7.0, -3.0421027680373025, -7.0, -7.0, -7.0, -3.1445312644921954, -4.606004956819436, -3.952657932409665, -4.208113361779008, -3.5855949989428377, -2.8444771757456815, -3.148251520587879, -3.351388266557641, -2.7778079684909334, -1.5602144349254363, -3.0015453793164784, -3.906889679198268, -3.2543385727441954, -2.2640044259790937, -2.4714411235207603, -3.195100974169237, -3.955516713520234, -4.429703842972572, -3.476138960843614, -4.129066569730805, -2.069225341615083, -3.137660652417374, -7.0, -2.427501565240489, -1.5637051692895014, -3.4054424135111656, -3.3285190875421873, -4.128743810173325, -2.8852607947341835, -3.15558638660026, -3.3772526682027864, -2.1784276781301344, -3.1321422390564218, -3.8283161051206496, -4.208677789064284, -3.3176884121580343, -2.9366407106078207, -3.2744102726836912, -2.6963982469295167, -4.128942873583301, -2.9714076440310557, -4.005743400045622, -2.1341678416523453, -3.094390492191114, -3.431979917800492, -3.046136452517971, -2.923751287842489, -2.738620998309552, -3.5467732675440056, -3.132083501905735, -3.2978907226198837, -2.902093586658964, -3.4366025516688135, -7.0, -2.017988155444865, -1.9803876107771008, -1.9558155390044483, -3.566560686427426, -3.011805906078602, -2.551418446956486, -3.0175737295678022, -3.5884851324781266, -3.512785755336107, -3.305190091553366, -3.296766824034295, -2.472579483682157, -2.0459426715578344, -3.7937903846908188, -4.606375990145637, -2.685862871168959, -3.8277783856132026, -2.391625376623903, -2.8290720873190467, -3.2839954155220514, -2.9785268191885237, -1.9647977618083874, -3.9074436091675, -2.600713913579715, -4.605644374489854, -3.528000246372667, -1.9968730702437054, -3.1368737583830857, -3.2455233963002588, -4.304743577061294, -2.158314785775445, -3.2563595605320663, -2.1639887869830687, -2.6833386019080185, -2.7196499416916193, -4.913713211514432, -1.4560171082838964, -2.8498460752365147, -2.2377025444158694, -4.062259568116916, -4.9068089508150585, -2.8205482309696888, -2.9787960558692133, -2.4849134365147463, -1.9934652019872776, -4.1298938896605275, -2.0228565485811445, -3.609103282832011, -4.429919077322681, -3.865475467938409, -1.711963179545754, -3.7029902775892602, -2.620849169351407, -3.5321490016041213, -2.1851235050982076, -1.1896707913600393, -3.9553028227616918, -3.65298190116631, -3.1951116328795712, -3.0423945674907595, -2.1811286997472954, -3.5487791761200076, -4.605870446185008, -2.689107926604332, -2.688435434839766, -2.59667967779885, -3.354156477915428, -2.5680228708926864, -2.068237413112108, -4.210569979246113, -3.5601308927828486, -3.733582420241032, -2.873065106554488, -2.612928276545454, -2.964296304500324, -2.7631128737566057, -3.953308577080214, -3.4325577715496496, -1.7869975967331273, -2.6831151336945074, -7.0, -3.730879133522473, -2.8904840522967077, -7.0, -7.0, -7.0, -3.8283859597808854, -4.304894259774213, -2.2786282035869205, -2.7188734226217175, -2.295525345561636, -2.999739345106568, -4.609033839731001, -3.3993770046747547, -4.305098674154982, -3.8289443929399845, -3.1711092027326977, -3.271552391372932, -2.684830322792156, -3.952690218761608, -3.431084868293215, -3.763903745309267, -1.6208364056491475, -4.907126395923902, -4.906776655259594, -3.190030257177831, -2.9431859207329296, -4.208699276558137, -2.9160602863599974, -3.2697304615080656, -2.792697052407104, -2.566667327261374, -3.0329102141076842, -2.4753527176327466, -3.0152695377626073, -2.8747877325973232, -1.5088703727105708, -3.0049336841470917, -4.907008053689199, -7.0, -3.4951225394659438, -3.732383036370039, -3.363848266340793, -4.004014894560444, -2.146396404002692, -4.130403464485783, -3.1100515916804685, -3.760901537179616, -2.6999957707115865, -1.056342497134873, -3.017776870761958, -2.498773307676647, -2.544099194062689, -3.1339059874977355, -3.1457387839091373, -2.943845409406475, -2.7310901918207264, -2.885462569191012, -2.6058382107163998, -2.2015687791366827, -3.236596215369598, -2.5783770650274622, -7.0, -2.6179747382228156, -2.500841492203123, -2.2148997304621423, -4.129765060307425, -2.289863258240586, -4.304845831746371, -2.7233897865240726, -3.8680403122108182, -2.9934149813944844, -3.794498771171323, -3.795264888190909, -2.573309383699704, -2.9913684958630995, -7.0, -2.3710096100045224, -2.015998849529744, -2.213668653242534, -7.0, -4.906948870476861, -4.130392742753647, -4.606322236836919, -3.565278829319486, -3.5108665907336367, -4.606483476807796, -3.35286826894075, -1.934960948015314, -2.695175888216613, -2.454746987678256, -2.4958183838393566, -7.0, -3.6533465346009417, -3.4778177118188656, -3.4800974781137644, -4.30496420183769, -3.703404237019068, -3.26232977621186, -3.4509919457327993, -3.381709524891006, -4.90666898605984, -7.0, -4.305603917792398, -3.6070527124106295, -4.906814333174154, -4.004418111778492, -3.2322229201632005, -1.793667057220101, -4.429714607223846, -4.0039126867384836, -7.0, -3.703919790261458, -3.2969539819037164, -3.37797547967795, -4.605730510917235, -3.2969860580130335, -3.14395622736422, -2.7670020593629587, -2.7644184954986453, -2.1031893747209938, -3.5714917891142703, -3.6767688987361744, -7.0, -1.8416242299086962, -2.456180161450073, -1.923022686459233, -3.796237995678362, -2.4653098077679445, -3.6318974796823285, -3.908195392671248, -3.235931180529099, -2.527256693606394, -2.6028442751136165, -2.30967921752499, -2.352828858482244, -3.020560949095022, -2.6833561560246784, -3.1312710469143954, -3.564994054850826, -2.8899949526860222, -2.288033978619537, -2.613594667752257, -7.0, -3.546494382010644, -3.1559110927700798, -4.209268308111116, -3.1000787963935963, -3.952582588252909, -2.410469509068616, -2.1350457803181566, -2.9152825534179025, -3.1703298305678302, -3.269258151320081, -1.8376804112458864, -0.9925761830444612, -3.1513913576935484, -2.574320700915308, -4.305405115437893, -3.3190633300866943, -2.700574187583653, -1.715591864279084, -1.884320592134371, -2.2764986103499605, -2.773609928133165, -3.2154154693070747, -3.136351439310171, -2.8511792446573097, -2.2303568408142413, -1.9280928192079896, -3.8654647044874704, -7.0, -7.0, -2.8503119910809573, -2.174021229582495, -3.528413157965513, -3.478154824288863, -3.1542350307644376, -4.130140705819276, -2.6939228573158918, -3.6534483627752867, -1.6779424612088802, -3.631139250256811, -3.170448411217117, -1.9273598326456884, -3.7960136258613275, -2.542521389545207, -2.322852258026174, -2.493914732519208, -4.910133278495993, -1.749062739249335, -2.1660295690974434, -2.309233676772654, -7.0, -3.2383504459244157, -3.7939568520276987, -2.1679751216076135, -2.345800201367372, -2.6446273432908463, -2.824607287041005, -4.062109025311936, -7.0, -2.46462799257641, -3.6777840263288324, -3.733598460961339, -3.631358311617795, -2.80588684968878, -3.8294377936566226, -1.2761911826202288, -4.906728207422946, -4.003858883484917, -2.0772479764810248, -2.8376853012019145, -3.6526286753910537, -3.382305275193315, -2.7136294231554277, -1.948028373420702, -3.261857385629898, -2.3490295119319136, -1.9504973603195637, -2.684044326406123, -3.779189213682492, -3.510129715427748, -2.4712818196355943, -2.3515394543670167, -2.2617433682586796, -3.1312079111287887, -2.5538419022196304, -2.182883525110022, -3.402457224691137, -2.7766536296320776, -4.146143545918482, -2.534285926849549, -2.787654051558582, -2.448595364081614, -2.2763438284791606, -3.5154721662623363, -2.8528922168871693, -3.180540019942531, -4.013179676320571, -2.135514407143608, -3.3036463463892605, -2.4621346471263537, -2.8806889746807043, -3.0412792182779183, -4.437681873346445, -3.050954749853564, -3.4807847825492697, -2.7964740671351396, -2.8422811813183144, -2.2706282102214805, -3.3541778267734723, -2.8194068259963245, -1.3313716618442355, -2.4359189840380653, -2.6476300090757197, -2.733334614498629, -3.372085742489799, -1.743560429664772, -2.4237999078399373, -2.907129476778215, -2.5882575453845966, -2.012415374762433, -1.7490204093596096, -4.913124790389559, -1.9880584847930771, -2.7042659439453036, -7.0, -3.188174892591544, -2.7159571753585046, -3.649964779534759, -4.007737112484662, -1.2089927449211242, -1.6347709985244734, -2.469803455512416, -4.063183187967576, -2.8758957414137782, -3.6298493584358824, -1.995999092965569, -4.458698268402751, -2.7663789840964386, -2.4098904000047168, -2.7939975497333496, -4.9072178201144485, -2.5700731177530822, -2.9578385224220214, -2.0056119598463003, -3.1542227520047104, -2.5481092893492856, -3.2470509203392064, -1.763978013763368, -2.3432052719514065, -3.4949729430284626, -1.4066223881833373, -2.1120992116084665, -3.1827102725665637, -2.071175331434878, -4.6078891006939875, -3.0670708560453703, -1.975059370771855, -2.99915229898292, -4.06268940309636, -4.907115638871369, -4.605660526371362, -4.6064995975128875, -3.8900804415092565, -1.9248511184664823, -2.654641898988549, -2.007424337771746, -4.004869271063189, -2.8882642901467257, -2.153616806044849, -3.254222215638808, -3.1511954337292214, -4.306065647659647, -2.624144869156648, -4.2083983548560875, -1.9809767626865695, -2.573638156762303, -3.654235385382136, -4.438779603357378, -2.2102621819656822, -3.2919763699421907, -2.480321244013076, -4.433881792287146, -4.432263590253666, -2.4455129265851774, -4.432434774521513, -3.733972576339301, -3.173223363367037, -2.602013009816451, -7.0, -2.6878710752582675, -7.0, -4.430725257445344, -3.123357926443381, -1.4629860836945814, -2.2779269716765342, -7.0, -3.964861744466946, -2.199974858252197, -4.211910420101903, -2.625653611314028, -7.0, -2.9531700326373262, -2.036197075021773, -7.0, -3.7036567197634023, -3.638389407665336, -2.85870218386402, -2.7638790808327, -3.6786950815004658, -3.2411648323430047, -3.0657077276443823, -4.307699231631596, -2.7731714320613046, -2.0908384551410677, -3.4133541437902304, -7.0, -2.562600654599416, -2.585157724841503, -4.137079689009317, -2.5585973864013347, -7.0, -4.305845581858454, -3.181128699747295, -3.1749104800117314, -1.5092546199558015, -2.74800982910615, -3.2913017193269773, -3.1721835050848726, -4.608622295084001, -3.639830003827776, -3.6787057884301517, -3.2722100098422344, -3.8294860310311734, -2.8734104429078826, -2.17589311462405, -3.7983743766815614, -4.20786585760749, -2.1706181828672553, -1.5394602992448396, -2.7850511532902402, -3.536321662293841, -2.3527629361796283, -3.4882999691020795, -3.0689073066358095, -3.278125892353155, -2.3839067705717834, -3.0890804641352507, -3.9123868126570245, -3.406194097216772, -3.952953800832277, -4.906857389645695, -3.004021960672549, -3.9654264492027846, -3.06481084382274, -3.3877247363085967, -2.1387837461092274, -3.136995216462121, -2.7876536516949577, -2.239857278674468, -3.2560008516550725, -2.6670224853340585, -7.0, -2.8157795753077126, -7.0, -2.5673875601601006, -2.7203699127714107, -3.3062769183480922, -7.0, -2.815827362700702, -2.7082391243246837, -2.0908341738705243, -3.5677052562909872, -4.607744456402258, -7.0, -4.003810454857046, -4.90760481522294, -4.907309225063157, -4.907894835416283, -2.879432926021307, -3.913442954859396, -3.437739995916121, -3.954767634541571, -3.9095613776624525, -3.5097937283256178, -3.3172756228920153, -3.5482612020793662, -4.3072338845509375, -2.7227551756750508, -3.0930447510064027, -2.3663547276041825, -3.17068649287322, -3.9738920729868967, -3.529419659434229, -4.207995007816801, -2.9348107061271715, -3.3904747828500743, -7.0, -2.2926173616597527, -3.089926509999768, -3.1099693811795874, -3.0183519664861995, -3.8394937596254946, -3.019605257246508, -3.6285932558512592, -3.652386032176815, -3.05240929690904, -3.8279290141975606, -2.9682365578051644, -2.8513115352333664, -4.007635777016201, -4.42953157865769, -2.844010944373043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.475235222604128, -1.811998408129183, -7.0, -7.0, -7.0, -3.772346159552627, -3.7867987283361098, -3.5282737771670436, -7.0, -7.0, -7.0, -7.0, -3.4235917150312236, -7.0, -7.0, -2.980717404970947, -3.0936095202736458, -3.209112703738592, -2.7505083948513462, -7.0, -2.83905884417379, -3.538070787043172, -3.4616485680634552, -3.28648525823423, -3.0327530302850567, -3.4184670209466006, -7.0, -7.0, -7.0, -3.439963935920905, -2.530967681571915, -7.0, -7.0, -3.4566696294237573, -4.033804060586124, -2.826884298707612, -7.0, -3.625621081424908, -7.0, -2.766818287765997, -3.45178643552429, -3.0312737784133907, -7.0, -3.531223374533027, -7.0, -2.017988155444865, -7.0, -2.398677682446071, -2.554568158545538, -7.0, -3.015918333597989, -2.6824158616773586, -3.1981069988734014, -7.0, -7.0, -7.0, -3.486005186362242, -2.981969534880924, -4.180383965589764, -7.0, -7.0, -2.9624640460579013, -7.0, -3.8736692927067944, -3.0246908623554307, -2.3026971550314443, -3.6774244377012475, -3.4786145875580035, -7.0, -2.5209367884596894, -7.0, -7.0, -2.502199442662362, -7.0, -2.9748186146454407, -7.0, -2.0653701812907017, -2.7081375105769228, -2.456534723937885, -3.745777217889759, -2.509090460794704, -7.0, -3.4871989986746286, -3.441145047559696, -3.194549028554895, -7.0, -7.0, -7.0, -7.0, -3.3500540935790304, -3.7712199019495336, -3.131779009369187, -7.0, -7.0, -7.0, -2.9204711793184543, -1.664973624661134, -2.707399831133249, -2.693433803801546, -3.2495652118253466, -2.3511472506797575, -1.9871475249918304, -7.0, -3.141763230275788, -2.9256987611930096, -7.0, -3.721365379435644, -3.2045269429998404, -7.0, -3.1489109931093564, -3.4449811120879446, -3.5021538928713607, -2.905256048748451, -3.024895960107485, -3.593706862849097, -7.0, -7.0, -7.0, -4.701934778738081, -1.9400443971589085, -3.6864575104691117, -2.784759894664005, -7.0, -7.0, -2.584489928729576, -2.7469799748172323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.10595276923698, -7.0, -3.735891524088347, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7584071921878865, -7.0, -3.9430986230054854, -7.0, -2.6657372963937283, -3.189770956346874, -2.5559120279549328, -3.403120521175818, -7.0, -3.2986347831244354, -3.5518158223510157, -7.0, -7.0, -7.0, -3.659440781870318, -2.9482172935599706, -3.291590825658001, -3.2833464653560465, -2.8759867714284884, -7.0, -2.96886735287483, -2.6086788196761854, -3.399327532158679, -7.0, -7.0, -7.0, -3.4385423487861106, -3.404833716619938, -2.5392852461514552, -7.0, -4.325146068490752, -7.0, -3.8646297245455123, -2.302370605284778, -3.5046067706419537, -2.9883678201564354, -2.729091124272883, -3.0750600841196736, -2.9461573949223725, -7.0, -3.2919235758838847, -7.0, -2.964377500867108, -2.6541077536491158, -2.6848453616444123, -3.5244610342154497, -7.0, -3.439253724017898, -7.0, -4.381115080709851, -7.0, -3.1437328231386923, -7.0, -2.9876662649262746, -7.0, -7.0, -7.0, -7.0, -3.1811000797280484, -3.331832044436249, -7.0, -2.3254570185069516, -2.9783210084815113, -2.5997407193331936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.054740694376147, -2.865548114255671, -3.414945507688626, -4.9365472515628115, -7.0, -7.0, -3.1707016558160697, -3.5304558435846762, -7.0, -7.0, -7.0, -3.0974886866205247, -7.0, -7.0, -7.0, -7.0, -3.4387005329007363, -3.3930484664167784, -3.4174716932032934, -3.103461622094705, -2.8796886271593203, -7.0, -7.0, -7.0, -3.436162647040756, -7.0, -3.481442628502305, -7.0, -2.586727921309507, -7.0, -2.3606156856482254, -3.909181475977853, -2.2869869182805127, -7.0, -3.4114513421379375, -7.0, -2.731761389693246, -2.5707551531682618, -3.5178793826491708, -7.0, -4.029083320583757, -7.0, -7.0, -7.0, -7.0, -3.878579238062219, -3.048325250931222, -2.4429016775527446, -3.475525915039281, -3.2592354021987338, -7.0, -3.4192947217534604, -2.5413295776666938, -2.1554253525259224, -2.897352134344313, -7.0, -3.4437322414015967, -2.9428757745535403, -7.0, -2.9719712763997563, -3.3961993470957363, -2.7232503803830985, -2.605884933947498, -2.932980821923198, -2.9802761410778404, -3.0860037056183818, -3.46608164105026, -3.3920370982602477, -7.0, -3.6307735456752157, -7.0, -2.350801612394977, -2.993730069806455, -2.8965262174895554, -2.3882196509049214, -2.4874711044587197, -2.7967877457365438, -2.6962471460005455, -3.4313637641589874, -2.8601382850306134, -3.825285334408372, -2.370975449358971, -7.0, -7.0, -7.0, -3.28668096935493, -2.711596355290069, -7.0, -7.0, -3.3640817414110704, -3.440436766105774, -2.3359327413291835, -7.0, -3.149157506231856, -7.0, -3.220631019448092, -2.327041686668223, -7.0, -4.091074600463328, -3.6440773478650277, -4.168868798061637, -7.0, -2.0456444402979317, -3.7482329235510705, -2.7887664606630405, -7.0, -3.510813010512496, -7.0, -2.4819996714322374, -3.3080305542661055, -3.164887957547954, -2.714434547894349, -7.0, -7.0, -2.753199914199416, -7.0, -3.4823017672234426, -3.4945719842301988, -3.208306962353663, -7.0, -2.0936429684529205, -3.3902283624691303, -7.0, -3.470872305442661, -4.087667861923968, -7.0, -7.0, -4.252407994907512, -3.1298424755099536, -7.0, -3.408377781046953, -3.493675492344039, -4.061678615245337, -7.0, -4.34609858337099, -3.3201303014782138, -3.2502316216477674, -4.001831028855596, -4.368937374244523, -3.7376607990666866, -3.677617090195124, -4.107006346381544, -4.353531559077762, -7.0, -4.011288434183536, -4.0178260380304245, -3.9551824629011803, -3.8683799024767196, -7.0, -3.978235314045796, -7.0, -7.0, -4.788945727023748, -7.0, -3.850278552518037, -7.0, -4.2462523122993225, -7.0, -7.0, -7.0, -7.0, -4.2389238459924155, -4.635091498324376, -3.508664363052943, -4.211663292650559, -2.4462729199993634, -3.20960436635488, -3.8174992618677583, -7.0, -7.0, -3.749100187575694, -3.7734938922709707, -7.0, -4.171243635947135, -3.5918573057581438, -3.8534722294921817, -7.0, -3.6232049723732787, -7.0, -7.0, -7.0, -4.409053505010069, -7.0, -7.0, -2.2063387404607777, -3.283555448089596, -3.8329846728331125, -7.0, -7.0, -7.0, -4.010921547963273, -7.0, -3.9463590805881705, -7.0, -4.2682736719666154, -7.0, -4.362218500326052, -4.463892988985907, -3.797025044005262, -7.0, -3.9640945574951996, -7.0, -3.653866144211602, -4.038129830486775, -7.0, -3.674653294607066, -4.1874831179547645, -7.0, -3.6109465017556057, -7.0, -7.0, -3.6291648572073134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2935835134961167, -3.0323165027604055, -2.958664455093407, -7.0, -2.817014164406586, -3.535637657401434, -3.349374674204051, -3.6074550232146683, -7.0, -3.5809819659626774, -7.0, -3.5098675725188127, -3.089551882886454, -7.0, -7.0, -2.806575635021643, -7.0, -2.7427251313046983, -7.0, -7.0, -2.580327484580072, -7.0, -7.0, -7.0, -3.1288837020997735, -7.0, -3.789404420511141, -7.0, -7.0, -4.618309641123433, -2.696756854265414, -3.80197964291853, -7.0, -7.0, -2.948779613737823, -7.0, -2.915575698540003, -7.0, -3.262332413822626, -3.256017623739166, -7.0, -7.0, -7.0, -3.081587315813503, -3.0563330349511615, -7.0, -7.0, -3.224403557764839, -7.0, -2.9897834198968223, -3.290442730593008, -7.0, -7.0, -2.6607074090369185, -3.0258790832933666, -7.0, -4.205014792569004, -7.0, -7.0, -7.0, -3.619823500457278, -2.947210858187439, -2.649069208087953, -7.0, -2.7831886910752575, -7.0, -3.9585638832219674, -7.0, -3.901240302073309, -7.0, -3.1444704211395553, -2.6663099352901103, -7.0, -3.3951515915045425, -2.7690078709437738, -2.623444347433249, -3.3137969404949157, -7.0, -3.8700916316852, -7.0, -3.5726973849826984, -7.0, -3.1528317219727446, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9196010237841112, -7.0, -7.0, -7.0, -3.350332833192728, -3.1408221801093106, -3.9172691302211917, -3.208663307762238, -7.0, -2.90444504107691, -7.0, -7.0, -7.0, -3.507653513464988, -3.522900459461583, -3.837967018368655, -7.0, -3.5829719291048057, -7.0, -3.127736334664101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4456042032735974, -7.0, -3.6062738531699883, -3.4619484952037616, -7.0, -7.0, -7.0, -3.1911714557285586, -7.0, -2.6083315007712975, -3.5660837841679958, -2.940721513523347, -3.5921212174658845, -7.0, -3.181986424480151, -7.0, -2.95784663370815, -2.865548114255671, -7.0, -3.1633299348401485, -3.490941205356787, -7.0, -3.254467510467076, -7.0, -7.0, -7.0, -3.1240148788874076, -3.1549309119861473, -7.0, -7.0, -2.7854484784978877, -7.0, -7.0, -3.4280267471363537, -7.0, -7.0, -3.8905886677054875, -2.4195702718432215, -3.256862005896403, -2.203717671851886, -7.0, -3.313023110323238, -2.7131861538560007, -3.2512905066731097, -3.5879914264312434, -3.054065601462962, -2.3669753615187523, -2.128656953740491, -1.8788528915152634, -7.0, -7.0, -7.0, -3.4147505757259213, -2.1940012589364937, -3.3312826522290138, -7.0, -2.4511648394432353, -2.244605096802466, -2.750970984437319, -3.127968207161918, -3.189321841020497, -2.127714993360055, -2.556754655396264, -3.6093809442507068, -3.263227077694896, -2.671481400086431, -3.594503043820089, -3.896415976473123, -3.91126417099837, -3.366982975977851, -2.9990761422791077, -2.735304676471507, -3.8908120989551245, -2.1433363127613307, -3.6076158432431322, -2.940021140721579, -3.0537367980540173, -3.2143669215966044, -2.207476504590846, -3.93444794894897, -2.2176719098008713, -3.6058973516449746, -2.927010868975651, -4.021313365484695, -2.3530451702840365, -7.0, -1.9803876107771008, -2.398677682446071, -7.0, -2.3494717992143856, -3.4344092075875, -2.236001620531879, -2.133626388374925, -3.9243309847086785, -3.627314639600881, -3.9290611240847655, -7.0, -1.4853873537867202, -2.494988973683168, -2.624441715528019, -3.4208355552872893, -3.893595333819883, -1.2571886216562271, -2.9349471026077483, -2.30085762238055, -2.5306516175798683, -3.595220566797657, -2.7432919531576356, -2.4708075407867027, -3.8948696567452528, -2.775928862409032, -7.0, -3.6030902178122184, -1.569963444838021, -2.2862599373472543, -2.906335041805091, -7.0, -3.15823321854707, -2.9648879044212895, -2.538615619757788, -2.8867323802739056, -2.6368220975871743, -7.0, -2.1186212285496846, -2.538346668680622, -1.675676526064217, -3.4163075870598827, -7.0, -2.9562121023022296, -2.8115750058705933, -2.7310064508026852, -2.9323176278852854, -3.9005855866499615, -2.8246545438441633, -3.922829219666649, -3.5887757562041043, -3.4116758127370184, -2.116349422072715, -3.8920946026904804, -1.2840726750039217, -2.1907317852385715, -1.4940429030218751, -1.603860921753666, -3.2165353574183575, -3.9040118835973883, -3.333144876098619, -3.942504106168081, -2.409628287195821, -7.0, -7.0, -3.499228724283611, -3.2555539010842085, -2.8592509109297795, -2.9725628006722813, -2.883191355841693, -2.876489529359904, -3.9154526016884788, -4.153418485037711, -3.616685520895512, -3.24638367287559, -2.3409522994077023, -2.539551943185312, -2.408355617830904, -3.8958643512472992, -3.2200557602513413, -1.54629684561895, -1.6075436366575189, -7.0, -2.5077434620971957, -3.1433555124697157, -7.0, -7.0, -7.0, -3.2939699210682645, -3.5879914264312434, -3.0786501170358553, -2.8712981525680923, -2.312811826212088, -2.5635170413891246, -7.0, -3.5704845630444004, -3.891258616904139, -3.299670700401256, -3.3368098301850244, -7.0, -2.500467261899649, -7.0, -3.6036855496146996, -3.443888546777372, -2.4756089342953334, -3.044819643421949, -7.0, -3.265525335219074, -2.7127487086906523, -2.9927743642553555, -2.6214235880182097, -7.0, -2.688864568054792, -2.604000925049828, -2.704960368025206, -2.292374230650336, -2.287558332243026, -2.3655414661398932, -2.591387589127392, -3.4310419453358856, -7.0, -7.0, -3.0773679052841567, -3.4285667129921897, -3.601299310194338, -7.0, -2.3858296186697827, -3.00189589410742, -3.098478908174888, -3.8910354153153106, -2.3550507749542025, -2.1482126228724607, -3.9262909868848634, -3.236177239515077, -2.1328286964672105, -2.990092082531457, -2.83803909146875, -2.870598962314376, -2.919648531795087, -3.091968272003171, -3.0472748673841794, -2.2739305691109637, -3.434196187604368, -3.173259130501515, -7.0, -2.368273406913709, -2.852714531894921, -2.9343053225262477, -7.0, -2.2405950430295083, -7.0, -2.9380190974762104, -3.915030290259161, -2.8039933118331355, -3.205961823059634, -3.611882555512116, -2.6595087306276968, -3.2008960765643213, -7.0, -1.9879579579819235, -4.000332831533668, -2.6390637006428417, -7.0, -7.0, -3.4282968139828798, -3.415696569589914, -3.597695185925512, -3.60916737430202, -7.0, -3.61394747678035, -3.1474795756131133, -2.3180239378128364, -3.47379967461323, -3.7060703356373064, -7.0, -3.9076800242424197, -2.799022268397267, -3.6351317452471763, -7.0, -3.196949540973997, -3.372681913172988, -1.8824997897153146, -3.651859269246949, -7.0, -7.0, -7.0, -3.9024924211586036, -3.887335930399167, -3.594171479114912, -2.362114994039135, -2.9044266957089535, -7.0, -3.8900855267163252, -7.0, -7.0, -3.075442676488223, -3.616528025161455, -3.8868853589860084, -3.92147838037569, -3.7824009524965296, -2.4029774493636515, -2.4235080103454925, -2.4664258793434404, -3.4811080594687196, -3.5921767573958667, -7.0, -1.7195311864510827, -2.4630994157880113, -1.725330154414223, -3.320198232105004, -3.2631328475801404, -2.88530980902442, -2.8221680793680175, -2.9497693741580635, -2.0587409756789365, -2.707774501898884, -1.761791203377117, -1.802540912426264, -2.8728613710631836, -2.0718820073061255, -2.964992528483926, -3.895919545310016, -2.9864233630365042, -2.625226681339216, -2.4402091713868916, -7.0, -3.125535481352859, -2.618097926840299, -3.902438056198665, -2.722198248380669, -7.0, -2.045183221912755, -2.583254084014788, -3.092670527035679, -3.097560966637652, -3.1709458747292723, -3.235138879593742, -2.282836990837962, -3.898231384513097, -3.0627290946508094, -3.593286067020457, -2.969674713673781, -2.50121580704486, -3.2640145799809783, -3.1711145276118584, -2.621176281775035, -2.87102128558996, -2.9229612441339685, -2.6636189984922343, -1.613448351138622, -3.367338047406574, -1.2968601159748139, -3.1894903136993675, -7.0, -7.0, -2.5549263974668683, -2.1226591047698764, -3.6072405038317426, -3.315182866579504, -2.447246653826335, -2.822712785926196, -1.3395573674054908, -2.702968762418371, -2.640836223757495, -7.0, -2.4111603780707003, -2.5250829348172044, -3.619249898968967, -2.9686697017203922, -2.1792825146142656, -3.4034992663875285, -7.0, -2.873837081117421, -3.315208165872914, -2.116009679424738, -7.0, -3.082939166392626, -7.0, -3.0760332934499632, -2.8241583885046158, -2.274927193099776, -2.555931150182966, -3.8920946026904804, -7.0, -2.3239691276496446, -3.301301344927356, -3.3156030329994124, -2.665476756172402, -2.7052313618495294, -7.0, -1.5792468110427222, -3.5852914908954987, -3.287129620719111, -3.270641576038564, -4.8223969393404404, -7.0, -7.0, -3.991831302545872, -3.343464864143649, -3.8703453710809597, -2.9316838303621062, -2.5231115907773183, -3.7472823030451763, -7.0, -7.0, -3.696130590122991, -4.074145715443282, -3.1652922028417336, -4.456791008541905, -3.69446160677425, -3.5114297398081336, -7.0, -4.444247835796075, -7.0, -4.196554403859942, -4.416357541374134, -2.9818817925949124, -3.124678081714868, -4.457457987982031, -3.944457995626289, -4.3545501955078825, -7.0, -3.0455511516724045, -4.3361794534374445, -3.697570111966399, -3.975232615453934, -4.359323129976207, -7.0, -7.0, -7.0, -3.510337805729326, -4.353685468703508, -2.3171222847962842, -7.0, -3.2274528359297285, -3.367809356499877, -3.0955470872642685, -2.655507827095201, -2.7736493354356497, -3.3770784782188477, -2.6894426659813675, -2.72670174542351, -3.5397450161093125, -3.639710551318162, -2.496215485540377, -2.7191812866158296, -7.0, -2.6686628982503926, -2.8200136970607947, -3.8961402514420196, -2.953534192980002, -3.8876876143457504, -7.0, -7.0, -3.1896760533932764, -2.7278653418997396, -4.482131758974784, -3.9030899869919438, -2.804999776617182, -7.0, -3.688032522105424, -7.0, -4.417614496970858, -3.2418859234519886, -4.376394442037267, -7.0, -3.974127735076475, -3.9337023571451573, -3.5307630187585595, -4.052924683707729, -2.3974222428995087, -3.3572358579987425, -2.9813705460996927, -2.7521975657445132, -7.0, -2.464702931034069, -3.9481683617271317, -3.338177499296536, -3.6623819098923875, -7.0, -2.599649182211521, -2.8272327153437096, -3.732731413127401, -7.0, -3.8904769089601707, -7.0, -7.0, -7.0, -2.0426826637480007, -2.313500417575471, -1.3489325701049661, -7.0, -3.662190990859007, -2.210928431339089, -3.3851592385800426, -2.2917371727664304, -3.6000467200622737, -2.349771556978745, -7.0, -2.513954995368114, -2.3122543112520475, -3.1378286637565806, -7.0, -4.3151933756957135, -3.27263051589404, -2.554727707734111, -7.0, -7.0, -3.168202746842631, -7.0, -7.0, -2.464374148443393, -2.3697516927426494, -3.8861521819707967, -2.6745384205386324, -7.0, -3.898231384513097, -3.9709044981537835, -2.8347054240009544, -3.128405604667181, -7.0, -3.700919945420287, -1.5631994287047477, -7.0, -2.066499279114226, -7.0, -2.743999441724611, -1.6921632174908048, -7.0, -7.0, -3.9864582127373063, -2.530347492821457, -2.738275942048923, -3.912806392661292, -3.1762842359448387, -2.4691615691918494, -7.0, -2.2242548193822347, -1.888069214244454, -4.05952555273869, -7.0, -1.8971308019513333, -2.226142380929929, -7.0, -2.4215627985510446, -7.0, -3.898944466866509, -7.0, -2.508599367673529, -1.8890652399519134, -2.4128265592104112, -3.4471192533180046, -3.6480182966516828, -7.0, -7.0, -3.435578953471198, -3.819774182176816, -3.6063813651106047, -2.4530865803521715, -1.9312165724204984, -7.0, -3.888010912245029, -1.9156636035057732, -1.4321668029911794, -2.3134070001050655, -3.077958071921229, -2.0569209253036416, -3.162564406523019, -2.957538878068554, -3.461798557525109, -2.238825325284622, -3.4722077512253953, -3.4659278562887446, -3.6345276494290326, -3.8922059459757725, -7.0, -4.479676062868145, -7.0, -2.4457079649469864, -4.0050088206723675, -2.137976018001224, -3.495636829183877, -3.014960330675915, -2.7754309567465465, -3.031959017228676, -2.0409537821578545, -7.0, -2.244834763479088, -7.0, -2.2849568326149767, -1.9324886865786444, -7.0, -7.0, -2.7007517771773712, -2.4983105537896004, -2.2928847904644725, -3.4456560872091355, -7.0, -7.0, -3.8890214220952246, -7.0, -3.591342911734455, -7.0, -2.7524006087838484, -3.9529860651970554, -2.966798546383361, -7.0, -7.0, -3.2971036501492565, -3.207742052606945, -3.319366349687303, -3.6117763969973113, -2.5707673930792567, -2.908241238641037, -2.783427117917317, -3.1154773741864688, -7.0, -3.918344928962275, -7.0, -3.7281913985899466, -3.4356320489516605, -7.0, -2.9155682164446812, -2.878730641132499, -2.87684740506319, -3.327522402716821, -7.0, -2.991757539534348, -3.8948696567452528, -3.295567099962479, -3.075501339828131, -3.4143046881283317, -3.0707764628434346, -2.7444885672205115, -7.0, -7.0, -3.3176455432211585, -7.0, -3.7740057302582093, -7.0, -7.0, -3.257138370205915, -3.539828558377898, -3.7884512070234555, -3.807940721215499, -3.326860815038242, -3.3298045221640695, -3.296592070557359, -2.7866094726486597, -3.2119826034646293, -2.832169487537022, -3.3560258571931225, -7.0, -7.0, -7.0, -7.0, -3.1807310305665903, -3.2756732529227346, -7.0, -2.9640881248211763, -2.7321946654332323, -7.0, -3.7967130632808965, -7.0, -3.1015752462559334, -2.934309037350079, -3.1992064791616577, -2.6941911513458114, -2.9787672693102545, -7.0, -7.0, -3.2001662463631075, -2.9719712763997563, -3.1894201246920386, -3.455200277269631, -7.0, -3.5903401790321667, -7.0, -3.2440175106997633, -3.486288760960566, -3.8058405488146727, -2.7690363017304622, -3.053398601612112, -3.6940345384921605, -7.0, -2.743313739231126, -3.09377178149873, -3.3574901660030245, -3.8611160441613954, -1.9558155390044483, -2.554568158545538, -2.3494717992143856, -7.0, -3.5020855592260456, -3.3391863447122776, -3.9175055095525466, -3.819346484080453, -3.5234212743726316, -3.2229114697957306, -3.1806992012960347, -3.2105191640810844, -2.8166673341789954, -3.527900445194766, -7.0, -7.0, -3.2054750367408906, -3.4740705032150436, -2.8062997077939285, -3.036273934588904, -3.3059958827708047, -3.4363217001397333, -3.1692803856500626, -7.0, -2.7432297012106934, -3.769894035812169, -2.947643745820492, -2.7154684981461377, -3.2766341090681457, -7.0, -3.771954748963949, -3.072564984313118, -7.0, -2.678670097637955, -3.255272505103306, -3.0867156639448825, -7.0, -2.500377449850352, -3.4751867549424627, -2.621613527703641, -7.0, -7.0, -3.212347437988012, -7.0, -3.421329664478712, -2.928209579690314, -7.0, -2.930173564447874, -3.3400473176613934, -3.4738517701548153, -7.0, -2.5803985580573445, -7.0, -2.6167794385312413, -3.844725627973226, -2.6459578843998024, -1.9677140053553632, -3.50745106090197, -7.0, -3.054740694376147, -2.88711696101553, -3.0105631211209922, -3.1229363730163042, -7.0, -3.18537214331104, -2.9540011676815703, -3.2124983379352106, -3.2210880684827314, -3.0539103642070833, -3.2143557591509637, -7.0, -4.094575933649249, -7.0, -3.8133140589458345, -2.686189234244024, -2.917977882592908, -3.2013515984037575, -3.782759192623997, -3.511950170375499, -2.611157764534064, -2.813272978284428, -7.0, -7.0, -3.5055418728569445, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5103841306041415, -3.0354297381845483, -3.040074643230312, -4.014478535326206, -3.814180981040187, -3.4173720348523213, -7.0, -3.7907776013376937, -2.9923009843277657, -3.382145741488806, -2.7049008715552314, -2.9284690089118017, -2.948412965778601, -3.815378484965918, -1.881720746685466, -7.0, -7.0, -3.3929899006447384, -7.0, -7.0, -3.545121480864834, -7.0, -2.1114167805966386, -2.4625643623836195, -2.3716636023951976, -2.859138297294531, -2.90242597417221, -3.2026926108224982, -2.5037649664957558, -3.497758718287268, -7.0, -7.0, -3.5166014715265344, -7.0, -2.7900035203904894, -7.0, -2.9110008520221933, -7.0, -3.691488176316267, -3.475307913956194, -3.730741911850021, -2.47004146364061, -3.3444577731923464, -3.312092690393716, -3.2716557723522754, -7.0, -3.1962314704428745, -3.852845818014997, -3.2643455070500926, -2.881004030556986, -2.737681850846472, -2.6875289612146345, -3.103461622094705, -3.528402437953617, -7.0, -3.6824158616773586, -3.0281644194244697, -2.794345434221981, -7.0, -2.9839268369509955, -3.773347541980823, -2.9703081258859316, -3.807467375684278, -3.5523639817866846, -3.795045370421125, -7.0, -2.786120180054919, -3.4111144185509046, -7.0, -2.693067093924229, -3.127767925909508, -2.924486043733915, -7.0, -3.472317546316842, -3.4942241869169015, -3.7790912038454993, -3.78660947264866, -3.801403710017355, -7.0, -3.506369717095504, -2.7190123982977616, -2.854492895404868, -3.501470072100412, -3.969298569092522, -7.0, -3.3206308739310484, -3.329058719264225, -3.8344842853348053, -7.0, -3.4822302372089675, -3.280521462226489, -3.25478968739721, -3.0096936540397285, -7.0, -3.7702627381705933, -7.0, -3.7913397039651393, -7.0, -3.782042416620554, -3.3829770749788555, -2.9386740080093743, -7.0, -7.0, -7.0, -3.7902147702439795, -3.115810141409786, -3.5096728652831355, -7.0, -3.514547752660286, -3.712397131406715, -3.265112759850687, -3.020511948557945, -2.4759252997015397, -3.8623103099542706, -3.7794521834040617, -7.0, -2.6376564772518996, -3.0993928573323, -2.907608762375779, -7.0, -3.4761601726982754, -7.0, -3.79140991566716, -2.793161529245551, -3.0383078526301324, -3.5641134764517686, -2.933963422726495, -2.549820373239367, -3.7926717891415676, -7.0, -3.336526440627234, -3.782830805202592, -2.839917775678681, -3.0769003912940143, -3.4357382204426927, -7.0, -7.0, -3.1426397078324166, -7.0, -3.555880064636805, -3.7729814503449637, -2.8051042162920505, -2.4435133193234853, -3.3597722616567713, -2.872685900230887, -3.2488311928079616, -2.946822886713244, -1.9949700168263695, -3.308422115236931, -2.962421955102072, -7.0, -3.342488478031923, -3.067675172788824, -2.4181236536533914, -2.683347276399375, -2.733598460961339, -2.720647844820754, -3.171433900943008, -3.247138226100887, -2.8115191516512503, -3.4319465336406454, -2.879568085413838, -7.0, -7.0, -7.0, -3.203071758751761, -2.504244254358882, -3.7989267385772014, -7.0, -3.42932153909737, -7.0, -3.101689805602919, -7.0, -2.0083471601136877, -7.0, -3.8302678009336417, -2.9838517189914717, -7.0, -3.633547003033476, -3.6302098739419373, -3.6555697303870756, -7.0, -2.6859655440604007, -3.277063583379518, -2.465077655032553, -7.0, -7.0, -7.0, -2.670538800459197, -2.7001391361209706, -2.854427505787861, -2.8796692056320534, -7.0, -7.0, -2.947161317385927, -3.4917117901707675, -3.333850145102545, -3.214578953570499, -3.0409976924234905, -3.797198269838959, -2.100063531414098, -7.0, -7.0, -3.806693456192453, -4.810440875574879, -4.382575319649486, -3.986592606822211, -3.978317496746751, -3.0829348950147435, -4.115144351793107, -3.023742247079222, -3.4051488504672323, -3.697839368218363, -7.0, -4.408680821810468, -3.8589355191353056, -4.020978304790254, -3.598034034702018, -7.0, -3.545059584694003, -3.5882034813125916, -7.0, -7.0, -3.664312839896641, -3.920379025396492, -3.6861176659198964, -3.6936060505361743, -3.259928190374753, -4.429235339626655, -3.8623954891178243, -4.318459865188351, -7.0, -3.4698688556921424, -7.0, -3.5482747377831885, -2.9176859904596166, -3.000599326273475, -7.0, -2.82910575870157, -3.512183922360945, -3.7511379096597075, -3.715334683792313, -3.43763866489855, -3.3464181789371965, -4.417322197099729, -3.5295194685658156, -3.818522802003136, -3.699230502883409, -3.649707970928423, -7.0, -3.0636742407951223, -3.7078255683322316, -3.1556396337597765, -3.176958980586908, -2.831310315348419, -2.338021768462477, -7.0, -3.3400473176613934, -7.0, -7.0, -4.0682600937746995, -4.162639072470405, -7.0, -3.3470045791968865, -3.3616564967654905, -3.0782651004780597, -3.91859170736518, -7.0, -2.8099382947684113, -3.3205616801952367, -2.59874036491712, -7.0, -3.581906175240146, -7.0, -3.111064738491977, -7.0, -7.0, -3.9102641218577268, -3.8659983698441036, -3.6762362167633116, -3.6404019249815684, -7.0, -4.02418282850698, -3.44442916986232, -3.5147469246343817, -3.0660648974596776, -2.7010814773381697, -3.9588981947107715, -3.8666398160622153, -7.0, -3.4952667443878105, -3.5836804262469997, -4.401831174908948, -7.0, -7.0, -7.0, -7.0, -7.0, -2.908622155975595, -3.287129620719111, -2.9543683736575375, -7.0, -7.0, -3.058077892589143, -3.898286278589123, -3.2720157538950723, -3.488480208426273, -3.198264238006873, -7.0, -2.951861342460453, -3.0269416279590295, -7.0, -7.0, -3.5763643890897483, -3.5780085095732557, -2.7238875480472107, -7.0, -7.0, -4.05952555273869, -7.0, -3.5147469246343817, -3.862548769524793, -3.2464493382670443, -7.0, -3.498255401782173, -7.0, -7.0, -4.175705047841342, -2.916329870639243, -3.333291224196901, -7.0, -3.916085299843703, -2.8478193472952396, -7.0, -3.321339474830754, -7.0, -3.550105999347593, -2.9348910465273987, -7.0, -7.0, -7.0, -3.8489892062511672, -4.011993114659257, -7.0, -7.0, -3.8321255425340093, -7.0, -3.8664054983780547, -2.975718945367262, -3.8478193472952396, -7.0, -2.909701871683438, -3.6410773133253747, -7.0, -3.386008212064673, -7.0, -7.0, -4.125513795904115, -3.8811563210755637, -2.9660386578756874, -3.222924466593083, -3.9731740526829724, -7.0, -7.0, -7.0, -3.8047526021504607, -3.5798216909532146, -7.0, -7.0, -2.9926639550817846, -7.0, -7.0, -2.98781517440207, -2.689969920318199, -7.0, -7.0, -3.4094089499748597, -7.0, -3.4358443659844413, -3.8380931384455983, -3.2562097835226953, -4.002900068611387, -7.0, -7.0, -7.0, -7.0, -4.452905258057521, -7.0, -7.0, -3.919705534549121, -3.251682454964639, -3.2779528470388093, -4.300421557383072, -2.9361927798732688, -4.0024252646779015, -3.1385132141577534, -7.0, -3.383456296524753, -7.0, -3.039722488755794, -3.527372082827612, -7.0, -7.0, -3.560205622970059, -3.8294967497201826, -3.1588792018312803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8555191556678, -3.572639297042813, -3.801815168581437, -7.0, -3.3100557377508917, -7.0, -3.5148796552227934, -3.8047526021504607, -2.897901874268228, -3.5513889972730204, -2.6925849445879813, -3.5742628297070267, -7.0, -3.510545010206612, -3.7742979384992776, -3.647969458362972, -3.5036545192429593, -7.0, -2.89483434203002, -3.5141491344754376, -3.3355247615134567, -2.7986999606649783, -3.912062555588502, -3.4271614029259654, -3.781468142841798, -7.0, -2.932980821923198, -7.0, -3.522009286567709, -2.8092535500248417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7279124987113805, -3.7259116322950483, -7.0, -7.0, -3.59728372736143, -3.7384634394619525, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4380872482554214, -3.8945929479229555, -7.0, -7.0, -4.191804864059126, -7.0, -7.0, -7.0, -3.3459615418131414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3830969299490943, -7.0, -3.779938246821107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5219222448835, -7.0, -7.0, -3.566560686427426, -7.0, -3.4344092075875, -3.5020855592260456, -7.0, -7.0, -2.984227178928321, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8506462351830666, -7.0, -7.0, -7.0, -7.0, -3.4424797690644486, -7.0, -7.0, -2.7506626461340558, -3.482135929640315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.08290499419323, -7.0, -7.0, -3.5144915594308066, -7.0, -3.3260489679467407, -7.0, -7.0, -3.4452927694259716, -7.0, -7.0, -7.0, -7.0, -3.375511203191852, -7.0, -7.0, -7.0, -3.377397326769886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.159266331093494, -7.0, -4.387336426193337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6761523091270663, -7.0, -7.0, -7.0, -4.994550297854503, -7.0, -7.0, -3.620760489994206, -7.0, -7.0, -4.302633919813779, -7.0, -7.0, -7.0, -3.893299303828851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.218535505216528, -7.0, -3.4095386431415404, -7.0, -7.0, -7.0, -4.061226225119115, -3.834929096460576, -7.0, -7.0, -7.0, -4.543509306465027, -7.0, -7.0, -3.3109056293761414, -3.2119210843085093, -7.0, -3.216429830876251, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8726683492477125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6384892569546374, -4.283482147048971, -7.0, -3.731427587050948, -4.2075593565504725, -7.0, -7.0, -3.599992177584098, -7.0, -7.0, -7.0, -7.0, -3.1720188094245563, -7.0, -3.1664301138432824, -7.0, -7.0, -7.0, -3.2582540535071485, -3.323870606540509, -3.0014583573925644, -7.0, -4.079434510633743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.752893154884594, -7.0, -7.0, -7.0, -7.0, -3.860996436757196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8348338181358885, -4.482607950809717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2612628687924934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7909181952145783, -7.0, -7.0, -7.0, -7.0, -4.317958924700952, -7.0, -3.6324446377322426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.449092531119419, -3.489349009009622, -7.0, -7.0, -7.0, -3.0576661039098294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1760912590556813, -7.0, -7.0, -5.132320537739833, -3.297267958549692, -7.0, -3.9876439241005333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3970931134746, -3.8774865280696016, -7.0, -7.0, -7.0, -3.4631461367263494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7095243558763413, -7.0, -7.0, -7.0, -7.0, -3.9546102975982214, -3.787247880331954, -4.383982637289572, -7.0, -7.0, -4.417085389641193, -3.7841178164629232, -7.0, -7.0, -7.0, -7.0, -3.4913616938342726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5048105531506915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.306489362708483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.388158061282813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.769957264165465, -7.0, -4.671274690884761, -7.0, -3.414639146737009, -7.0, -3.853617103459214, -3.3729120029701067, -3.956913696991375, -7.0, -7.0, -7.0, -4.185036647576167, -4.380482590974981, -7.0, -7.0, -7.0, -7.0, -2.8459932798880287, -4.37500481553064, -7.0, -7.0, -4.992102642595412, -4.3741319181946805, -5.706524055741483, -7.0, -7.0, -7.0, -4.6550038979849875, -7.0, -4.502449312138587, -7.0, -7.0, -7.0, -7.0, -7.0, -4.78353913333115, -7.0, -3.7397568869831948, -7.0, -7.0, -7.0, -7.0, -4.643092259961168, -4.655455392526795, -7.0, -7.0, -7.0, -7.0, -4.60916737430202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.37675939540488, -3.34143452457814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.793877653752079, -4.78864908260037, -7.0, -7.0, -3.4648371618111513, -7.0, -7.0, -7.0, -7.0, -3.407949045697151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.296445794206396, -3.9906495883188544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.17140463483013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.809425028797034, -7.0, -7.0, -3.4993433592273684, -3.786386315371722, -3.6282867310895144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.053577787125283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8363241157067516, -2.7671558660821804, -7.0, -7.0, -3.843733671089443, -7.0, -2.885361220031512, -2.9827233876685453, -3.426484151000204, -3.044069150468914, -2.7363965022766426, -3.1142772965615864, -7.0, -7.0, -7.0, -2.812579155409047, -3.6042800664521044, -7.0, -3.696531119969607, -3.3678100152186308, -7.0, -2.734399742520567, -2.8813846567705728, -2.682686478249768, -2.6309361190641916, -7.0, -3.63724832231457, -7.0, -7.0, -7.0, -7.0, -3.3690302218091532, -7.0, -3.228400358703005, -7.0, -2.7170044070405472, -7.0, -3.9382100298607625, -7.0, -7.0, -3.395675785269936, -7.0, -3.372175286115064, -7.0, -7.0, -7.0, -3.220631019448092, -3.3197304943302246, -3.011805906078602, -3.015918333597989, -2.236001620531879, -3.3391863447122776, -7.0, -7.0, -1.768826650627394, -7.0, -7.0, -7.0, -7.0, -2.420945405921972, -3.605305046141109, -4.154758619154177, -7.0, -7.0, -2.9783327140589657, -7.0, -3.4577305482459986, -3.3638938977741004, -7.0, -2.7007037171450192, -3.176549710043248, -7.0, -3.113943352306837, -7.0, -7.0, -2.747689188289225, -2.775974331129369, -3.0409976924234905, -7.0, -3.4927603890268375, -3.1264561134318045, -2.690955115144948, -3.5835388192543522, -2.731387283168788, -7.0, -3.296328397315685, -2.878636673026517, -2.828055394305438, -7.0, -7.0, -3.4750898033890065, -3.3261309567107946, -7.0, -3.318793504793297, -2.989004615698537, -3.8588679053701154, -3.1439511164239637, -7.0, -7.0, -3.143014800254095, -7.0, -2.832029647089928, -3.2598326990634834, -2.88394519503428, -2.9208067732496916, -7.0, -3.0161973535124393, -3.215108581053093, -2.949145952419944, -3.047681883003228, -7.0, -7.0, -3.397070549959409, -3.282848602834645, -3.6648299411430907, -2.870403905279027, -3.4837298990000236, -4.757008635461283, -7.0, -7.0, -7.0, -3.953939713813928, -3.216957207361097, -3.494432898726399, -3.640878778701618, -7.0, -7.0, -3.050895086469539, -2.7398359526414344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.565178552693963, -3.4541585899443437, -3.2608164464658076, -3.1104213464739563, -7.0, -7.0, -7.0, -7.0, -3.2340108175871793, -7.0, -7.0, -7.0, -7.0, -7.0, -3.591522169203609, -7.0, -7.0, -2.5035961502512842, -2.6582499544669576, -7.0, -7.0, -3.0025979807199086, -3.451632947456991, -2.6532125137753435, -7.0, -2.780870976776464, -3.0060379549973173, -7.0, -3.523192345925134, -7.0, -7.0, -7.0, -2.8438554226231614, -3.030599721965951, -3.0038911662369103, -7.0, -3.4625477288026643, -2.7275412570285567, -3.509560925059843, -2.9041743682841634, -3.747100931364986, -3.1281664716400015, -7.0, -7.0, -7.0, -7.0, -3.4295908022233017, -2.4424797690644486, -3.037625669914719, -7.0, -2.8131360146748556, -2.6613393400060397, -7.0, -7.0, -7.0, -3.966986025117938, -2.8849840645741107, -3.871378315564175, -7.0, -3.6092741724045876, -7.0, -2.8779469516291885, -7.0, -2.814691432747457, -7.0, -2.7795964912578244, -3.767823498007517, -3.4082399653118496, -7.0, -2.3942924527834046, -7.0, -3.57153414742667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.661917803408258, -7.0, -4.868142102559628, -7.0, -7.0, -2.485366465708323, -7.0, -7.0, -7.0, -7.0, -3.3059958827708047, -7.0, -7.0, -7.0, -7.0, -3.0043213737826426, -7.0, -7.0, -7.0, -4.342126469955725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.862131379313037, -7.0, -3.4098486220211917, -2.863719295092669, -3.3272226637602036, -3.8369567370595505, -7.0, -7.0, -7.0, -3.4767281437542463, -7.0, -2.6851864554300033, -3.142389466118836, -4.412737668240323, -3.17260293120986, -3.004751155591001, -7.0, -3.227543930734867, -2.9863984686808234, -2.8607985521941135, -3.0425755124401905, -3.2570182334190068, -7.0, -7.0, -7.0, -2.9439888750737717, -3.0265332645232967, -3.4787107555127594, -7.0, -3.0178677189635055, -2.6461585698621124, -2.525044807036845, -7.0, -7.0, -3.399327532158679, -3.342422680822206, -2.751792151275026, -2.70472233322511, -2.9829492885744986, -3.9867429509093695, -3.2109602554168117, -7.0, -3.8159096508867747, -7.0, -7.0, -3.019324037153691, -2.866877814337499, -3.9709509343454243, -3.0688040746361804, -2.8069935136821074, -7.0, -3.0865970852460154, -3.4186326873540653, -4.486168264379942, -2.682934395395032, -7.0, -7.0, -7.0, -3.079325986752815, -2.44257774864341, -7.0, -3.111262513659065, -3.159717546180216, -7.0, -2.300305567669649, -3.0511525224473814, -3.1234432775313534, -7.0, -3.2013971243204513, -3.1735747250409485, -7.0, -3.95580196003404, -3.16189623398293, -4.185241987464146, -7.0, -3.33665982345442, -4.116844250540653, -2.717323705505671, -7.0, -2.876217840591642, -7.0, -7.0, -3.328787200354535, -3.144184880392236, -2.9065146136422175, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1420764610732848, -2.7193312869837265, -2.560305243220961, -2.5606537342551157, -7.0, -7.0, -4.297629218364148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.815765857584692, -3.7358269356613625, -7.0, -7.0, -7.0, -4.721414872624389, -7.0, -4.584772080866149, -4.335437840434784, -4.3753983847779425, -4.623135531707399, -7.0, -7.0, -7.0, -5.087476169013141, -4.281124309449275, -4.05872962075172, -7.0, -7.0, -4.661130904420943, -7.0, -7.0, -4.174408732073123, -7.0, -4.378960846770892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.617262517091374, -7.0, -4.673103885408021, -4.164092498531462, -7.0, -2.9845273133437926, -4.3348155125062116, -7.0, -4.157020844572027, -3.160339883036565, -3.5341530741850624, -7.0, -3.7599085281865303, -3.905075955657791, -7.0, -4.140994858693246, -7.0, -7.0, -7.0, -4.378615902031225, -7.0, -7.0, -4.089825660059739, -4.126598625117727, -5.405661335712202, -7.0, -3.714664992862537, -7.0, -4.111838373829939, -7.0, -5.104867635083071, -3.7866804531966487, -4.2255935481548, -7.0, -4.328175661438323, -7.0, -3.705614291809137, -7.0, -7.0, -7.0, -3.9455998712518956, -4.491655793718779, -7.0, -3.439653361113439, -4.054287403120578, -7.0, -4.306717383322012, -7.0, -7.0, -3.6110857334148725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5190108276524095, -7.0, -2.8109322482432924, -7.0, -3.344588742578714, -3.4450395648772703, -7.0, -7.0, -7.0, -3.1673911880740753, -7.0, -3.799223343064828, -3.343900712249606, -7.0, -7.0, -7.0, -7.0, -3.6921416093667836, -7.0, -7.0, -3.7989267385772014, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024526714387152, -7.0, -7.0, -7.0, -4.054142784362693, -4.790045778582493, -7.0, -7.0, -2.871621576917034, -7.0, -3.205745540942662, -7.0, -7.0, -3.0268936051269018, -7.0, -7.0, -7.0, -3.27600198996205, -2.8618756361619213, -7.0, -3.3085644135612386, -7.0, -3.1109262422664203, -3.3378584290410944, -3.220761653975142, -4.20306009759596, -7.0, -3.099910730906369, -3.553761698390004, -7.0, -3.5530026278959586, -7.0, -7.0, -3.912540882790638, -3.3857849588433355, -3.360790493311147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7944880466591697, -7.0, -3.3895204658463776, -3.345177616542704, -7.0, -7.0, -3.0350960505139617, -2.9514184759183264, -3.346841769642251, -3.4163075870598827, -3.408621501803481, -7.0, -7.0, -7.0, -3.7432745235119333, -3.689486448364248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.254064452914338, -7.0, -3.869084973832671, -4.24911271341542, -7.0, -2.886913533398546, -7.0, -3.318689269947746, -7.0, -7.0, -2.914078585389112, -7.0, -7.0, -7.0, -7.0, -4.400382548045428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.064832219738574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.394976719554564, -3.3995006613146104, -7.0, -2.7978443698196243, -3.54082981411108, -3.4287825114969546, -7.0, -3.285471577480692, -3.859318465097116, -3.394976719554564, -3.4274861090957858, -2.9694159123539814, -2.7997919620140497, -2.678908405543116, -3.4794313371977363, -7.0, -7.0, -7.0, -2.668349367606713, -3.0344056157964263, -7.0, -3.1257414391287157, -2.7976636608710947, -3.5075860397630105, -2.4446692309385245, -2.9159272116971158, -1.9634658494621036, -3.234137489450963, -3.4584867637982066, -3.057573901907062, -2.551178818143956, -7.0, -7.0, -3.159266331093494, -3.6078837443569896, -2.5313192205955564, -2.8615344108590377, -7.0, -2.1997754860978236, -3.453471233722936, -3.431437996187525, -3.12515582958053, -3.166282067316571, -3.623456048069934, -3.0454533779715143, -2.7653975864258418, -3.448551739201578, -3.028435683944159, -7.0, -2.5722260030301527, -7.0, -2.551418446956486, -2.6824158616773586, -2.133626388374925, -3.9175055095525466, -2.984227178928321, -1.768826650627394, -7.0, -3.0188391401620427, -3.50745106090197, -7.0, -7.0, -7.0, -3.281866292147957, -3.2253810837400634, -3.422589839851482, -7.0, -2.704436519143124, -3.3979400086720375, -2.917272049269057, -2.8980392005877604, -7.0, -2.044670394919461, -3.0040838491714963, -3.111262513659065, -3.6351820486562674, -3.0836817472743014, -2.9626849566736677, -2.3864760989200358, -3.0110415256389502, -2.6023700909354988, -7.0, -3.080896934973246, -7.0, -2.506251281604838, -3.2667019668840878, -2.2616593037647066, -7.0, -2.924955443759352, -2.836482357458148, -2.7341386174609497, -3.4089180208467798, -7.0, -7.0, -2.8043666332204187, -3.171726453653231, -2.688864568054792, -3.429752280002408, -3.166726055580052, -3.4924810101288766, -3.397418542351348, -7.0, -2.9442168511849927, -3.404149249209695, -2.4683473304121573, -2.768884649356367, -2.3050738649759017, -2.4615727109734706, -3.172310968521954, -3.4398062113933303, -2.8258154449852033, -3.5435714239623652, -2.632805663414465, -7.0, -7.0, -3.14674801363064, -3.2670934700945033, -2.846543280888438, -3.203984244420126, -2.9495697483551866, -3.4271171059961962, -7.0, -3.1072584373095338, -3.478854967528663, -3.422779846389302, -2.826722520168992, -2.7288946220436823, -2.6365595325567286, -7.0, -7.0, -2.7277990515277923, -2.4189115616948453, -7.0, -7.0, -3.927336138327086, -7.0, -7.0, -7.0, -3.4171394097273255, -3.093596768608228, -3.8041394323353503, -3.5685537120494426, -2.869018254756463, -3.3601514477826377, -3.485579476984679, -7.0, -7.0, -7.0, -2.9323469078099147, -4.127978988916909, -3.096363699333073, -7.0, -2.8391636829146503, -7.0, -3.134672837165581, -2.921686475483602, -7.0, -2.8183358833529004, -7.0, -2.814913181275074, -3.551327988003846, -2.96883304489043, -3.0548045002209547, -2.7414470707864638, -3.11293997608408, -2.7498272196995663, -2.726959949912048, -3.164798819693455, -2.809706264007865, -3.15106325335375, -7.0, -7.0, -3.191870015444722, -3.1439511164239637, -3.4352071032407476, -7.0, -2.6180062349855286, -7.0, -3.045220004398053, -7.0, -3.3860230915330054, -2.5420052655836813, -7.0, -3.5317343092765503, -2.8662873390841948, -2.947311161005215, -2.562491127177062, -2.1605285538517576, -3.2895889525425965, -3.0537185238968583, -2.6085260335771943, -2.5943925503754266, -7.0, -2.978376189156044, -7.0, -3.34143452457814, -3.0016255582867375, -3.1248482491651344, -7.0, -2.694793164520534, -7.0, -2.8478529757347544, -7.0, -2.9627243931760243, -3.4437322414015967, -2.8625785677670708, -2.878291949249796, -3.028266163475984, -7.0, -1.6076081864967722, -3.916611845109346, -3.2632098485727488, -7.0, -7.0, -3.444513206334043, -3.40705081480425, -7.0, -7.0, -3.412124406173317, -7.0, -3.309459822461211, -2.384487822086762, -3.7155576848148777, -4.170564274665922, -3.385606273598312, -2.972665592266111, -2.9912260756924947, -7.0, -7.0, -3.4171394097273255, -3.620864475265121, -2.9698816437465, -3.5693739096150456, -7.0, -7.0, -7.0, -2.735119634081872, -3.389343311252078, -7.0, -3.2773799746672547, -4.049445773663138, -7.0, -3.3979400086720375, -7.0, -3.1314582601065255, -2.7878853509409245, -7.0, -7.0, -2.5323296410790315, -2.990211960854806, -2.2870175013221017, -3.305673745669693, -2.8185811447437055, -7.0, -7.0, -7.0, -2.9573198968553407, -2.9122220565324155, -3.143687231570321, -2.791690649020118, -3.523583901029429, -3.204255678480151, -3.1341771075767664, -3.4423229557455746, -2.6095208124648503, -3.2749656245392864, -2.631287632221304, -2.263969709649385, -3.3494717992143856, -2.7114456684692576, -7.0, -7.0, -2.9381443085140972, -3.0883133155880964, -2.7187783976895714, -7.0, -7.0, -2.8431081419996067, -2.832189461068513, -2.792975026700668, -7.0, -3.022943609686901, -2.639942789926727, -2.4161282165305416, -2.499412125672275, -2.861175835513029, -3.7068757593062003, -2.8461603181188546, -7.0, -3.2876796055965056, -7.0, -3.497620649781288, -2.53826315899939, -2.991336850972244, -3.00189098041235, -2.460730838531493, -2.445496837517327, -2.752158242910885, -2.649902510995987, -3.1596674343147124, -3.8042809110003937, -2.1994483637600335, -7.0, -7.0, -7.0, -3.1091846800155234, -2.295247778814387, -7.0, -3.4781334281005174, -2.7075701760979367, -7.0, -2.660338357558161, -3.4533183400470375, -2.8920946026904804, -3.485863329597335, -2.672493690697651, -2.836535091898369, -7.0, -3.391699451477855, -3.0410800122072543, -4.0634973325573265, -7.0, -2.960417921149897, -3.234157916937028, -2.3076605745629943, -3.3823773034681137, -3.5079907248196913, -7.0, -3.038699623020623, -2.761766799738045, -2.397340568298191, -2.5352941200427703, -3.404149249209695, -7.0, -3.0529823500032394, -7.0, -2.699693225955115, -3.4916417934775863, -2.7666156147521748, -3.448551739201578, -1.875192847844124, -7.0, -3.0948203803548, -4.316001814931364, -4.786545580235125, -7.0, -7.0, -7.0, -7.0, -7.0, -3.709354775834396, -3.8916656643321246, -4.060886623004662, -7.0, -4.345687328898848, -4.434289396703876, -4.705457439875169, -4.001603924149798, -7.0, -4.691859164364127, -4.455813956286502, -7.0, -7.0, -7.0, -4.914415445352857, -7.0, -3.7787901581790777, -4.168850903709554, -7.0, -7.0, -7.0, -7.0, -4.788797430139894, -7.0, -4.695297762874286, -4.363179350058686, -7.0, -7.0, -4.150203628762808, -3.9802306913910317, -7.0, -7.0, -4.032759742667216, -7.0, -4.688633356948537, -3.7946824578784644, -3.9872639541222354, -3.5149460053080044, -7.0, -3.329499575762843, -3.3425426075024336, -3.374565060722765, -3.4094258686714434, -3.869847511611599, -3.359029886980261, -3.317880600528345, -7.0, -3.5136910100964522, -3.937066312017428, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6023335107020023, -3.8472276214102914, -4.7081386445035935, -3.4371160930480786, -3.361413015792206, -7.0, -4.061984653726177, -7.0, -4.931688348356623, -3.8436375985671978, -4.267781659715359, -7.0, -7.0, -7.0, -3.4542903824586904, -7.0, -3.9635989625972416, -7.0, -3.245968394913303, -3.5605707855599604, -7.0, -3.3510422057394447, -4.488442599438955, -3.751048034820188, -3.989664512841722, -7.0, -7.0, -3.3277164414769396, -4.337758671493417, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0992247033606977, -7.0, -2.7046550997731758, -7.0, -7.0, -3.300993802949105, -7.0, -3.127644629984225, -3.431524584187451, -3.1815005884677596, -7.0, -3.4683070414857493, -3.486430478854434, -7.0, -7.0, -7.0, -7.0, -3.821971817642043, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1052830432993654, -3.2522865422434055, -7.0, -3.612501296864678, -7.0, -7.0, -4.618089954403986, -3.9875150122754737, -4.324810422951253, -7.0, -7.0, -2.725421550074259, -7.0, -2.993083360698062, -7.0, -7.0, -2.8648844787899463, -7.0, -7.0, -7.0, -2.8567288903828825, -2.8785217955012063, -7.0, -7.0, -3.2216749970707688, -7.0, -3.2889196056617265, -3.1645758949823053, -7.0, -7.0, -2.8357698150802566, -3.2463344173155235, -7.0, -3.602222821229977, -7.0, -7.0, -7.0, -3.617629297757842, -3.0387228771693704, -3.690373306916059, -3.773859552376687, -3.560026248912892, -7.0, -7.0, -3.4652340949880145, -7.0, -7.0, -7.0, -2.6901439407065344, -7.0, -3.3914644118391033, -2.835056101720116, -2.6150826222252115, -3.010865076409731, -3.334554270647249, -2.914499864344777, -3.6924944075030846, -7.0, -7.0, -3.6296474104571437, -7.0, -7.0, -7.0, -3.4044916177586857, -7.0, -4.3964260280181024, -7.0, -3.1992064791616577, -7.0, -3.3781313064867438, -7.0, -3.9167170775988125, -3.2691859328139516, -3.341895943969397, -3.0790002523038495, -7.0, -2.8796692056320534, -7.0, -3.506234359612126, -2.779989814589074, -7.0, -7.0, -3.5805828768143675, -3.0399426187629923, -3.282492636993701, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.921842481405858, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6496268868405295, -7.0, -3.6942541120252788, -7.0, -3.814713612695977, -7.0, -7.0, -3.735119634081872, -7.0, -7.0, -3.3208470333280387, -3.4879863311293935, -3.482873583608754, -7.0, -7.0, -3.1820340262209674, -7.0, -7.0, -7.0, -7.0, -3.3371263410122576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9540011676815703, -7.0, -7.0, -4.164247379186236, -7.0, -7.0, -7.0, -7.0, -3.619771386161673, -7.0, -7.0, -7.0, -2.9813655090785445, -7.0, -3.500843920902923, -7.0, -7.0, -2.921166050637739, -4.080917284464512, -7.0, -7.0, -7.0, -7.0, -2.9434945159061026, -7.0, -4.390988066615901, -7.0, -7.0, -7.0, -7.0, -3.37675939540488, -7.0, -3.0574125012854534, -7.0, -7.0, -2.765668554759014, -4.364372738578348, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8842287696326037, -7.0, -7.0, -7.0, -3.0175737295678022, -3.1981069988734014, -3.9243309847086785, -3.819346484080453, -7.0, -7.0, -3.0188391401620427, -7.0, -7.0, -3.1920095926536702, -7.0, -7.0, -3.6098077693287025, -3.9792751475910233, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1915441607348294, -7.0, -7.0, -3.3481133157724337, -7.0, -2.4653828514484184, -7.0, -7.0, -3.596432142349082, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2415464805965484, -7.0, -7.0, -7.0, -4.117363092185824, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3346547668832414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.907411360774586, -2.43109559836973, -2.9360107957152097, -3.441695135640717, -7.0, -7.0, -3.7827950003893553, -7.0, -7.0, -3.226084115975824, -7.0, -4.090522570946947, -3.1792644643390253, -7.0, -7.0, -3.111262513659065, -3.668758541750958, -7.0, -3.1836114492184326, -3.9791004957884546, -7.0, -7.0, -7.0, -4.995604485821234, -7.0, -7.0, -3.1675142490484904, -7.0, -7.0, -3.4044060509212692, -3.2234959409623944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9731278535996988, -2.9084850188786495, -4.04410838744612, -3.7585334222372864, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0187004986662433, -7.0, -7.0, -7.0, -2.9116901587538613, -7.0, -7.0, -3.400031984027495, -7.0, -7.0, -7.0, -3.271609301378832, -7.0, -3.2755416884013093, -3.0115704435972783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.13007326688381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.861683729919097, -7.0, -7.0, -7.0, -7.0, -2.957045409824666, -2.6983905586437853, -2.531904487367248, -2.8462339910366214, -2.971739590887778, -2.4795273244855407, -7.0, -2.744097310904046, -1.8839194063414246, -2.822386043980825, -7.0, -7.0, -2.919862253555538, -7.0, -7.0, -7.0, -7.0, -7.0, -4.088029717842714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1684238181031454, -3.4153072922255676, -7.0, -7.0, -4.062356318085437, -7.0, -7.0, -7.0, -3.0453229787866576, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1523393149226258, -7.0, -3.4442634503171514, -5.236160911445233, -7.0, -7.0, -3.104145550554008, -2.9283958522567137, -7.0, -7.0, -3.398634324538392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.496998797740092, -7.0, -7.0, -7.0, -7.0, -3.1470576710283598, -2.824125833916549, -7.0, -3.1489109931093564, -7.0, -3.3498600821923312, -7.0, -2.9937510507229983, -3.3324384599156054, -2.946943270697825, -7.0, -3.4775966502926194, -3.0824263008607717, -3.140193678578631, -7.0, -3.7139858770370497, -7.0, -7.0, -3.0398105541483504, -4.007918390645599, -7.0, -3.375434977745074, -3.745465168670727, -7.0, -7.0, -7.0, -7.0, -2.9542425094393248, -2.907008053689199, -3.4847268042986617, -7.0, -7.0, -7.0, -7.0, -3.3142886609474975, -2.900913067737669, -3.1051694279993316, -3.344490519241893, -7.0, -7.0, -7.0, -4.019068334783454, -3.6114577656683426, -2.9885589568786157, -3.816837630902035, -7.0, -7.0, -3.6263403673750423, -1.6824459385139579, -1.9958238337500014, -3.2502979923398647, -7.0, -7.0, -3.5691397254724593, -7.0, -4.714686258542472, -7.0, -7.0, -7.0, -7.0, -3.7818989193511494, -7.0, -7.0, -7.0, -3.467312062980552, -7.0, -3.089551882886454, -7.0, -3.729407796963068, -7.0, -7.0, -3.655138434811382, -3.142389466118836, -3.712944181356935, -3.694535004253942, -4.444124056396151, -7.0, -3.3394514413064407, -3.741263590820309, -3.1984508855664053, -7.0, -2.888179493918325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.153814864344529, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3615794492016025, -7.0, -7.0, -4.298088569391382, -7.0, -7.0, -7.0, -7.0, -4.379541187752597, -7.0, -7.0, -4.581300973440315, -3.9926418698783976, -7.0, -7.0, -7.0, -7.0, -4.585246349458262, -7.0, -7.0, -4.623352681537992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1165745397769165, -7.0, -7.0, -7.0, -7.0, -4.2996670699201935, -4.168762575622357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.617702616734304, -2.707002099520009, -4.673490907887271, -4.222248116858932, -2.862673366756278, -7.0, -7.0, -7.0, -4.634288295838262, -7.0, -3.539452491549461, -7.0, -4.663328648045545, -4.081581317229508, -7.0, -4.44271488292848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.294157480769691, -4.447026877167566, -5.22960420662649, -3.0265332645232967, -3.718169405391307, -7.0, -4.656155720651669, -7.0, -5.40597267230393, -7.0, -7.0, -7.0, -7.0, -7.0, -4.785251512550317, -7.0, -7.0, -7.0, -7.0, -3.8900995107287524, -2.4483971034577676, -4.343226368551779, -7.0, -7.0, -4.649245264062297, -7.0, -7.0, -4.310672074930124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.570805538589023, -7.0, -3.8925119929022363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8175653695597807, -7.0, -4.322488060518078, -7.0, -7.0, -7.0, -3.136974095757829, -3.387033701282363, -7.0, -7.0, -7.0, -2.046021089340296, -7.0, -7.0, -7.0, -3.089905111439398, -7.0, -7.0, -7.0, -7.0, -7.0, -2.640456940990227, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5126843962171637, -7.0, -7.0, -3.958038016098337, -7.0, -7.0, -7.0, -3.285557309007774, -3.7115541682501694, -7.0, -7.0, -7.0, -7.0, -3.3461573022320086, -3.00039068924991, -7.0, -7.0, -3.5822906827189938, -7.0, -7.0, -3.855428289576475, -7.0, -7.0, -3.9147661369258526, -7.0, -3.290672982696028, -2.6040909902682974, -7.0, -3.291812687467119, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5241363765925686, -7.0, -2.8976270912904414, -3.2142476081039772, -3.3326202195656403, -7.0, -7.0, -3.8356905714924254, -7.0, -3.7623033632877685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0651687517057455, -7.0, -7.0, -7.0, -3.3293088754705984, -2.7876375568784235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.79894398857152, -3.1577588860468637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.824776462475546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.097719940343722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3392526340327, -7.0, -7.0, -7.0, -4.205861805968412, -7.0, -7.0, -7.0, -7.0, -3.6218510955443124, -7.0, -3.153204900084284, -7.0, -7.0, -7.0, -4.347739717920052, -7.0, -7.0, -2.7514501870983787, -3.808881216505161, -3.210853365314893, -7.0, -7.0, -2.92668535582776, -7.0, -7.0, -3.8684974938893117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1357685145678222, -3.0962145853464054, -5.14280541359723, -7.0, -3.1277525158329733, -7.0, -7.0, -7.0, -1.842902781008627, -3.2079035303860515, -7.0, -7.0, -2.866484253384509, -3.5884851324781266, -7.0, -3.627314639600881, -3.5234212743726316, -7.0, -7.0, -3.50745106090197, -7.0, -7.0, -1.29754166781816, -7.0, -7.0, -7.0, -4.156609718165699, -7.0, -7.0, -7.0, -7.0, -7.0, -3.198931869932209, -7.0, -7.0, -4.047654465673549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.552668216112193, -7.0, -7.0, -7.0, -4.38644290749695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.331326050575092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.909199319174384, -7.0, -7.0, -7.0, -7.0, -3.392679370131183, -7.0, -7.0, -2.9400181550076634, -3.597695185925512, -7.0, -7.0, -3.885304667588968, -4.757934766327757, -7.0, -7.0, -2.850339854583479, -4.092803952476481, -7.0, -3.5110808455391185, -3.351603072419129, -7.0, -7.0, -4.008429826797229, -3.2337573629655108, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0050634572543666, -7.0, -4.167937312700578, -7.0, -7.0, -3.9045532629767727, -7.0, -7.0, -3.2638726768652235, -7.0, -7.0, -7.0, -7.0, -2.693140460675295, -4.070296518197765, -2.6599162000698504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4699692094999595, -3.4520932490177314, -7.0, -3.9028184680822533, -7.0, -7.0, -3.5895119818168726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0421323296433975, -7.0, -4.290657766409132, -7.0, -7.0, -3.605953079081585, -3.1992064791616577, -3.239633102713035, -3.156044098964241, -7.0, -3.4488608456074408, -7.0, -3.362670929725667, -7.0, -7.0, -3.674401812845282, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0908573959815335, -7.0, -7.0, -7.0, -3.3188977146274867, -7.0, -7.0, -3.475598557756169, -7.0, -7.0, -3.4577305482459986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.235679918564692, -3.1528995963937474, -3.1454139651678834, -5.236228140734041, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9344984512435675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3418300569205104, -4.342728553287486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.812846536967071, -3.5434471800817002, -7.0, -7.0, -7.0, -7.0, -2.2798072880412437, -3.047626533023953, -7.0, -4.237652633213792, -7.0, -7.0, -7.0, -3.534026106056135, -3.7742979384992776, -3.2028060658459765, -3.0520780304841693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4959603948817053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3484022275776355, -7.0, -7.0, -7.0, -3.9871329630575385, -7.0, -7.0, -3.6936170426895027, -7.0, -7.0, -2.855317205195943, -3.0666985504229953, -3.6754575416412085, -2.9584444238670944, -7.0, -7.0, -7.0, -7.0, -4.8286850256076965, -2.8945375849957466, -7.0, -7.0, -7.0, -7.0, -3.1838390370564214, -3.09377178149873, -7.0, -3.177680759848778, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.816525369214973, -7.0, -4.08149732835276, -3.917855464834902, -4.307320804551934, -7.0, -3.8221026686469206, -2.4527888371354494, -2.960470777534299, -7.0, -3.2116544005531824, -3.035029282202368, -2.986211715514367, -2.6988363547021272, -2.6752435432296338, -3.1043163645117278, -7.0, -7.0, -3.4671639659690903, -7.0, -7.0, -7.0, -3.686099771995916, -7.0, -3.3626574713677146, -7.0, -7.0, -7.0, -4.775085920101874, -7.0, -7.0, -7.0, -4.380988656432105, -7.0, -4.595374955168249, -3.7365217067513323, -3.695043658821294, -3.643057683751453, -7.0, -7.0, -7.0, -3.98402071613294, -7.0, -7.0, -4.623766000133931, -7.0, -4.321308389775909, -7.0, -5.388726249343061, -3.9828137621318627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.476353322595013, -7.0, -4.681114549675511, -4.332115143703462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.61853966998575, -7.0, -4.37317875450557, -4.4656058906462865, -3.9094490469812664, -7.0, -7.0, -7.0, -4.5375748144154935, -4.011147360775797, -7.0, -4.448010273039476, -4.487604955956124, -4.20725725871634, -7.0, -4.443966678374578, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9934362304976116, -4.4885352057062535, -4.592833298965716, -7.0, -7.0, -7.0, -4.355489832903385, -7.0, -5.406109078287424, -4.092088739255806, -7.0, -7.0, -4.330657234711394, -4.439111542159727, -4.086793908154067, -7.0, -7.0, -7.0, -3.42315845996139, -7.0, -2.6954816764901977, -4.343620273078088, -7.0, -7.0, -4.87125760736155, -7.0, -7.0, -4.3115207624480485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.998084887936556, -7.0, -3.89473132437208, -7.0, -7.0, -3.748594987350116, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0219675739438765, -3.656960182742849, -7.0, -7.0, -7.0, -7.0, -3.702775077901044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.029505525426577, -7.0, -7.0, -3.278437833555403, -4.493949229970773, -7.0, -7.0, -7.0, -3.65662517127951, -7.0, -3.523226041965701, -7.0, -7.0, -3.9599472157084987, -7.0, -7.0, -3.452706226511029, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.361538971269279, -7.0, -3.9052830562719762, -7.0, -3.591287265058499, -7.0, -7.0, -3.857844902792016, -7.0, -7.0, -7.0, -3.40705081480425, -3.685241164788095, -3.519696767159853, -7.0, -3.3092041796704077, -7.0, -7.0, -7.0, -3.8029104894190398, -7.0, -7.0, -7.0, -7.0, -7.0, -3.821971817642043, -3.85658792817761, -3.3586010159430195, -7.0, -4.0135113334659, -7.0, -2.9893756490247383, -7.0, -3.7480328941301435, -7.0, -2.9813655090785445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6895752157599384, -7.0, -4.173739713951887, -3.9495241780324495, -7.0, -7.0, -7.0, -3.3434085938038574, -7.0, -7.0, -3.70372115992702, -7.0, -7.0, -7.0, -7.0, -4.101420543187383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.90687353472207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6449307079135873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.805133693575249, -3.1711411510283822, -7.0, -7.0, -7.0, -3.473194909204938, -7.0, -7.0, -7.0, -7.0, -3.692935002531138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0919346742141665, -7.0, -7.0, -7.0, -3.731293226228819, -4.224377652161807, -7.0, -7.0, -7.0, -3.0211892990699383, -7.0, -7.0, -3.6114577656683426, -7.0, -3.7080808104682315, -3.8164506321689897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.965501557108345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4390167283875126, -7.0, -4.364660415023539, -7.0, -7.0, -7.0, -7.0, -3.2080828797513523, -1.7116238663693082, -3.2111205412580492, -7.0, -7.0, -7.0, -3.512785755336107, -7.0, -3.9290611240847655, -3.2229114697957306, -7.0, -7.0, -7.0, -3.1920095926536702, -1.29754166781816, -7.0, -7.0, -7.0, -7.0, -3.50336692202923, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2000292665537704, -7.0, -7.0, -4.348762286659855, -7.0, -3.4371160930480786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.085407815287446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6337713460825554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.085540306036948, -7.0, -7.0, -7.0, -7.0, -3.278841505918599, -7.0, -7.0, -2.8167382992623913, -2.9962927185413215, -7.0, -7.0, -3.885643871835764, -4.758025754574382, -3.141763230275788, -7.0, -2.6773027183949845, -4.041695269817748, -7.0, -7.0, -7.0, -2.307496037913213, -7.0, -7.0, -7.0, -7.0, -7.0, -3.774425717806814, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2691625654317447, -7.0, -3.6910520074505713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.174931593528443, -3.9454808948916567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.471731651480051, -3.15259407792747, -3.3643633546157306, -3.9034698285071703, -7.0, -7.0, -3.9089014967169025, -7.0, -7.0, -7.0, -3.185258765296585, -7.0, -7.0, -7.0, -3.9465013905695874, -7.0, -3.5917767112760672, -7.0, -7.0, -3.6821008897005045, -7.0, -7.0, -3.634779458145952, -7.0, -3.4507108781469196, -7.0, -2.8870543780509568, -7.0, -3.3199384399803087, -7.0, -7.0, -3.4056024552093134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.300233058364546, -3.1290450598879582, -7.0, -7.0, -7.0, -3.8804133998779164, -7.0, -7.0, -7.0, -7.0, -2.730378468587643, -2.6317818729476508, -7.0, -2.438067450453494, -2.980609293526336, -2.7271344237604884, -4.146345128650468, -5.412331163845351, -7.0, -7.0, -7.0, -7.0, -2.961421094066448, -3.0136796972911926, -3.11293997608408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7409545058228053, -4.166676745959573, -2.9434945159061026, -2.9633155113861114, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1763806922432702, -7.0, -7.0, -7.0, -3.5441921107650325, -7.0, -7.0, -7.0, -7.0, -7.0, -4.238836151492433, -7.0, -4.112797643468705, -7.0, -7.0, -7.0, -3.1081420233274226, -3.775173385424787, -3.2826221128780624, -3.150065315969936, -7.0, -7.0, -7.0, -7.0, -3.2773799746672547, -3.0444090865590487, -3.196314385353599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6502103546603593, -7.0, -7.0, -7.0, -4.656248373549415, -3.9174529919296637, -7.0, -3.6938807709392365, -7.0, -7.0, -3.1581613832785496, -7.0, -7.0, -3.5626496722119168, -7.0, -7.0, -7.0, -7.0, -5.129729196004417, -2.9410695150364625, -2.9532763366673045, -7.0, -7.0, -7.0, -7.0, -2.0495703914375065, -7.0, -3.4807253789884878, -7.0, -7.0, -7.0, -3.43560550202284, -7.0, -3.236537261488694, -7.0, -7.0, -4.859780553965358, -7.0, -4.307327745831848, -7.0, -7.0, -2.519628013580789, -2.961285461809911, -7.0, -3.214843848047698, -7.0, -3.2890312351397615, -2.1760912590556813, -2.5787919691964865, -3.1063609088067503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7310109331253267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.18385041331821, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9841558665135035, -7.0, -4.677670814860437, -4.924868286127619, -7.0, -7.0, -7.0, -5.388747541941398, -3.9830847727377883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.777484821118284, -7.0, -4.681223141395172, -7.0, -7.0, -7.0, -7.0, -7.0, -4.459362327372962, -7.0, -4.31761419263232, -2.362266997454815, -7.0, -4.113430805202484, -3.6089536992758626, -7.0, -7.0, -7.0, -4.759463867212711, -4.011655010724778, -3.550839605065785, -3.971012841545116, -3.8185510684090147, -3.730136003996678, -7.0, -7.0, -7.0, -7.0, -7.0, -4.381042842771909, -7.0, -7.0, -4.0392554438064865, -4.488552126545175, -4.592843536226989, -3.062581984228163, -3.2483002953545963, -7.0, -4.179436883244977, -7.0, -7.0, -3.79140991566716, -7.0, -7.0, -7.0, -3.74020473550745, -3.70656844127109, -7.0, -7.0, -7.0, -4.122456176023025, -4.49352775559078, -2.3961993470957363, -4.246759473024701, -4.4809454614645, -7.0, -4.746338342087566, -7.0, -3.638189640190837, -7.0, -4.003934206173708, -7.0, -7.0, -7.0, -7.0, -7.0, -4.475438727737104, -7.0, -4.196148539699125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499226431276069, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.622098840766468, -7.0, -7.0, -7.0, -7.0, -3.322077772222365, -7.0, -4.790988475088816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3136563466180315, -3.960232873128512, -7.0, -7.0, -2.607608186496772, -2.8277999071812294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4728480752993205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.032840283162028, -7.0, -7.0, -4.314835923004574, -7.0, -2.4439703985762407, -7.0, -7.0, -7.0, -3.285557309007774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.551803633168402, -3.700270937356437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7229628089424898, -7.0, -7.0, -7.0, -3.925501173028865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4812634271455627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5043757014788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.903231109767353, -7.0, -7.0, -2.374748346010104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3357386470050505, -7.0, -7.0, -2.8728358439998014, -4.229264028184002, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.563979170379509, -7.0, -7.0, -7.0, -2.837588438235511, -3.2681097298084785, -7.0, -7.0, -7.0, -7.0, -7.0, -4.538824988937904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.758555694320263, -7.0, -7.0, -7.0, -3.305190091553366, -7.0, -7.0, -3.1806992012960347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.375297738217339, -7.0, -7.0, -3.617000341120899, -7.0, -7.0, -5.124934393641766, -7.0, -3.0242803760470798, -7.0, -2.745855195173729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752890597646411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1878496072451403, -7.0, -7.0, -7.0, -3.614686342282013, -7.0, -2.5877109650189114, -2.7427251313046983, -7.0, -7.0, -4.382197210377454, -7.0, -7.0, -7.0, -3.52543355342882, -7.0, -7.0, -3.867791467345843, -7.0, -2.8847953639489807, -7.0, -7.0, -7.0, -7.0, -7.0, -3.58983794314746, -7.0, -7.0, -7.0, -3.149065080207621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.41077723337721, -7.0, -4.050263722645796, -7.0, -2.4608978427565478, -7.0, -7.0, -4.062757421306656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.229169702539101, -7.0, -7.0, -7.0, -3.1376290770696893, -7.0, -2.4578818967339924, -7.0, -7.0, -7.0, -7.0, -7.0, -3.914977472444331, -7.0, -7.0, -7.0, -7.0, -3.796747738875302, -7.0, -3.362105319293773, -7.0, -7.0, -3.3432115901797474, -7.0, -3.229937685907934, -7.0, -7.0, -2.7101173651118162, -7.0, -7.0, -7.0, -7.0, -7.0, -4.339033840865832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.765668554759014, -7.0, -2.660865478003869, -7.0, -7.0, -7.0, -3.602168551378997, -7.0, -3.8256208250035, -5.712842398088922, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6159500516564007, -2.994537104298498, -7.0, -3.1789769472931693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.640774511680957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7702627381705933, -3.805160901599434, -7.0, -1.5797835966168101, -7.0, -7.0, -2.7991107032021714, -3.929929560084588, -7.0, -7.0, -7.0, -7.0, -2.1484484035233837, -7.0, -7.0, -3.9529860651970554, -3.2247919564926817, -7.0, -7.0, -7.0, -7.0, -3.105510184769974, -3.131297796597623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9201755220100227, -7.0, -7.0, -3.1583624920952498, -4.654266408747144, -7.0, -7.0, -3.805047523584979, -7.0, -7.0, -7.0, -3.237292337567459, -3.6466977312993345, -3.4820155764507117, -3.7741518589547103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.381295623003826, -7.0, -3.286231854028553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5550097589461, -7.0, -5.574181797057869, -7.0, -7.0, -4.4158910775027795, -7.0, -7.0, -7.0, -7.0, -3.5150786750759226, -3.771954748963949, -7.0, -3.287353772714747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6556322942792354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.579257553258723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.179379417881757, -4.612147838326487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.359788067690362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.466348528450199, -7.0, -7.0, -7.0, -7.0, -4.3388547462523235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.462921830369343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.139613253202229, -4.786616571225525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1470576710283598, -7.0, -7.0, -7.0, -7.0, -7.0, -3.228400358703005, -3.6766021695820186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305558499230943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7896512087934098, -7.0, -7.0, -7.0, -3.929633465282292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.04988962552391, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2595938788859486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.907020280620376, -7.0, -2.6281333875410833, -7.0, -7.0, -4.3023065720047935, -3.4363217001397333, -7.0, -7.0, -3.1236611191470076, -3.1049071253508416, -3.2000292665537704, -7.0, -7.0, -7.0, -7.0, -3.2646801172410136, -3.3001061379430885, -7.0, -2.912753303671323, -3.2976441188271366, -3.1610683854711747, -3.0141003215196207, -7.0, -2.672836454171397, -3.220631019448092, -7.0, -4.867567652782026, -7.0, -7.0, -7.0, -7.0, -3.358886204405869, -7.0, -7.0, -7.0, -2.707910665713106, -3.030194785356751, -4.028236425372406, -7.0, -7.0, -2.4290341409683256, -7.0, -3.1908917169221698, -7.0, -7.0, -7.0, -7.0, -7.0, -3.296766824034295, -3.486005186362242, -1.4853873537867202, -3.2105191640810844, -7.0, -2.420945405921972, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5994463757252757, -3.676693609624867, -7.0, -7.0, -2.491050259986647, -2.8639173769578603, -3.453624073591451, -3.0573807905423553, -7.0, -2.9947569445876283, -3.524022689062766, -7.0, -7.0, -7.0, -7.0, -3.113553425855539, -2.8913515837206996, -3.0191162904470725, -7.0, -7.0, -7.0, -3.530711837981657, -3.2761169891635435, -3.3236645356081, -7.0, -3.3615185485382044, -7.0, -3.030478280622408, -7.0, -7.0, -3.4671639659690903, -7.0, -3.429752280002408, -7.0, -2.9642596301968487, -3.6810904144944385, -7.0, -7.0, -2.852479993636856, -3.5089335260500327, -7.0, -1.3394159466816076, -1.6728672017718136, -2.006174210354342, -2.779776808670381, -7.0, -7.0, -7.0, -7.0, -3.5445818032049923, -7.0, -7.0, -3.3875677794171883, -7.0, -3.0570952896126675, -7.0, -3.4821873135445873, -3.9783707550069076, -7.0, -7.0, -7.0, -4.694144339135403, -2.724275869600789, -3.1855421548543754, -7.0, -7.0, -7.0, -3.0038911662369103, -2.0422087727429976, -7.0, -2.084576277934331, -4.072084385539477, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040325379199723, -3.7512020945883533, -3.0158086695675426, -3.708420900134713, -7.0, -3.8949249773595436, -7.0, -7.0, -3.220108088040055, -7.0, -3.2415464805965484, -7.0, -7.0, -7.0, -3.5036545192429593, -7.0, -2.829303772831025, -7.0, -7.0, -2.928907690243953, -3.2528530309798933, -7.0, -3.443262987458695, -3.1228709228644354, -7.0, -3.5920101162931366, -2.81778565588553, -7.0, -3.6891832780764897, -7.0, -7.0, -7.0, -7.0, -3.0081741840064264, -7.0, -7.0, -3.636036316353447, -7.0, -7.0, -7.0, -3.043283665570575, -3.540854815952249, -7.0, -3.702171950857711, -3.6154239528859438, -7.0, -3.4207806195485655, -3.2780673308886628, -3.3281756614383227, -2.910624404889201, -2.977494969073036, -3.657915936829955, -3.0507663112330423, -7.0, -7.0, -3.1187841889145207, -7.0, -3.569178764933307, -7.0, -3.482337527813187, -7.0, -7.0, -7.0, -3.2805783703680764, -7.0, -7.0, -3.2863816107479344, -3.097604328874411, -7.0, -2.952469547503639, -7.0, -3.5683777537182206, -7.0, -7.0, -3.0060379549973173, -7.0, -7.0, -7.0, -7.0, -7.0, -3.926085086925144, -2.9123283579604102, -7.0, -5.111139804772594, -7.0, -7.0, -7.0, -7.0, -7.0, -2.926342446625655, -3.381656482585787, -1.8681016267646535, -7.0, -7.0, -7.0, -7.0, -7.0, -2.833784374656479, -7.0, -2.525260820213098, -4.3418597073294904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7064617376313547, -7.0, -3.4997557946637814, -3.8335295817586434, -7.0, -7.0, -7.0, -3.4756089342953334, -3.366236123718293, -3.0052183765659297, -3.12515582958053, -4.111220493971364, -3.1565491513317814, -7.0, -7.0, -3.225223103636106, -3.460070543294161, -2.93104159179914, -2.5897102986388356, -3.0774284721180742, -3.2659963704950794, -3.109240968588203, -7.0, -3.231979026831504, -3.4967913157000425, -2.993142192245416, -7.0, -7.0, -2.934750874663579, -7.0, -2.99211148778695, -7.0, -2.689486448364248, -7.0, -3.215901813204032, -7.0, -7.0, -4.3545981854393, -3.606327612467192, -7.0, -7.0, -7.0, -7.0, -2.711807229041191, -7.0, -7.0, -3.5397032389478253, -3.5033820634737327, -3.3422252293607904, -2.7112044607530303, -2.1737003278314213, -4.749387787092975, -1.8318116241188156, -7.0, -7.0, -7.0, -3.7749546890801384, -2.739868892417847, -7.0, -3.0927206446840994, -3.151523067564944, -2.6834973176798114, -2.192381579384681, -7.0, -3.1190083104691966, -3.111262513659065, -3.1863912156954934, -7.0, -7.0, -3.9554772853314835, -3.1360860973840974, -4.596687937868687, -7.0, -7.0, -5.019768281501304, -3.191800210014707, -7.0, -7.0, -7.0, -7.0, -3.8025000677643934, -3.139957755812176, -3.374565060722765, -7.0, -7.0, -2.740046724051494, -7.0, -7.0, -2.823148059810694, -3.1925674533365456, -7.0, -2.9259766793032753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8943714538562375, -3.840288628653793, -7.0, -7.0, -7.0, -4.7209692307416224, -7.0, -4.283108920345892, -7.0, -4.6759523910790906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058046230395282, -7.0, -7.0, -7.0, -7.0, -7.0, -4.776119799052988, -7.0, -4.378470580135305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.771471989594546, -7.0, -4.672605777753426, -4.46495131726153, -7.0, -7.0, -4.333729323156598, -3.398634324538392, -3.874282612188991, -3.7025166974381505, -7.0, -7.0, -3.5012529106922354, -3.904589330951372, -7.0, -3.662899426362577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.515600116635371, -4.257818283151665, -5.706646958404988, -7.0, -3.7101173651118162, -7.0, -4.655695358099588, -7.0, -7.0, -4.085861173788451, -7.0, -7.0, -7.0, -4.436321700139733, -7.0, -3.629715332647132, -3.073953889255577, -7.0, -3.899535984652174, -4.013721778051063, -7.0, -3.798586527286706, -7.0, -7.0, -7.0, -7.0, -7.0, -4.133538908370218, -4.300943128080553, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4724346304941105, -3.40226138245468, -1.8741716975886615, -7.0, -7.0, -3.232937497195236, -7.0, -2.750893920382125, -7.0, -3.066325925362038, -7.0, -4.321826183768503, -2.8606374167737547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.835479184541597, -3.0784568180532927, -7.0, -7.0, -7.0, -7.0, -4.599173217352912, -4.250277072903023, -7.0, -7.0, -7.0, -2.6463547060207597, -7.0, -3.1983821300082944, -7.0, -7.0, -2.7640073104321687, -7.0, -7.0, -7.0, -2.9618954736678504, -3.402175375031505, -7.0, -3.296884475538547, -2.4933186082321015, -7.0, -3.025510672852581, -2.614765431938085, -7.0, -7.0, -2.7247438593895046, -3.5471591213274176, -7.0, -4.153601474288411, -7.0, -7.0, -7.0, -3.3760291817281805, -2.909014990979134, -3.194653071952934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.776701183988411, -2.9731278535996988, -7.0, -7.0, -2.662420515562167, -2.639872555925874, -3.1652443261253107, -3.4072208929273966, -2.911902996044033, -7.0, -3.7550359337677714, -7.0, -4.042260406689452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1451964061141817, -7.0, -3.6873378244924546, -7.0, -7.0, -4.072335693862353, -7.0, -2.63534010716356, -7.0, -3.0058237530290275, -7.0, -2.967641564083011, -2.4815322014595997, -7.0, -7.0, -7.0, -2.70472233322511, -3.700340211110526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5173278822943734, -7.0, -3.351989455435632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.501812117075094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0416886941315635, -7.0, -7.0, -3.162881648182516, -3.9121157290788537, -7.0, -7.0, -3.2294956795406073, -4.285107029566812, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1150496567022525, -3.7279883338825006, -7.0, -3.103347529231339, -3.187419000615386, -3.6183619311098782, -3.5725230978496376, -7.0, -3.4034637013453173, -7.0, -3.580810972660946, -3.8417063578630106, -3.1408221801093106, -7.0, -7.0, -7.0, -7.0, -3.5644293269979834, -3.0812032393065754, -7.0, -7.0, -7.0, -3.9200895492469097, -7.0, -7.0, -3.710709565724337, -7.0, -2.3448089202425684, -7.0, -7.0, -3.188084373714938, -2.518311424377877, -7.0, -2.472579483682157, -2.981969534880924, -2.494988973683168, -2.8166673341789954, -7.0, -3.605305046141109, -3.281866292147957, -3.6098077693287025, -7.0, -7.0, -7.0, -3.5994463757252757, -7.0, -2.9022261072795255, -7.0, -7.0, -2.0907068367582795, -7.0, -2.881332772835035, -2.8607571230815423, -2.850033257689769, -7.0, -3.566596726075971, -7.0, -7.0, -7.0, -7.0, -1.483375948594675, -2.6216954623292787, -3.2726536974298166, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6822353569025643, -7.0, -3.0440621075592937, -3.206353560072406, -2.9236001702363947, -7.0, -7.0, -3.4497868469857735, -3.377215156263061, -7.0, -3.532563298334475, -7.0, -3.6308599203655305, -3.606703741333674, -7.0, -7.0, -2.6139826893706237, -7.0, -3.2527721492435755, -3.3489859568078573, -2.3381545437336477, -2.627950765074281, -3.5922878159521305, -7.0, -7.0, -7.0, -3.5899974460440314, -7.0, -7.0, -3.7113853790984517, -3.8121108412030997, -3.861653870213911, -7.0, -3.7753434064763316, -3.475387860393165, -7.0, -3.217396199091494, -7.0, -4.3078937807171505, -2.0822723230247666, -3.46014581749175, -3.545430829465351, -7.0, -7.0, -1.353028995703768, -3.7749546890801384, -7.0, -7.0, -3.6419200744131177, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1354189050278523, -2.840994275962398, -4.236763922187807, -3.8928734068887656, -7.0, -3.7223459424755814, -7.0, -7.0, -7.0, -7.0, -3.2075446093061983, -7.0, -7.0, -7.0, -2.6618473003288075, -7.0, -7.0, -7.0, -3.6509870943834453, -7.0, -7.0, -7.0, -7.0, -3.1266183755229515, -7.0, -2.790367965650633, -2.9705328297683242, -3.1090157705111308, -2.934763035942782, -7.0, -7.0, -7.0, -7.0, -3.570893036218392, -7.0, -3.53832233323144, -3.276729804479128, -7.0, -3.741348602475895, -7.0, -3.438384107034714, -2.904786001106443, -7.0, -3.4114513421379375, -2.9884952539841994, -3.1741567592784814, -3.7274599208579087, -7.0, -3.6842167951388807, -7.0, -3.3620109792299933, -3.8605176774617465, -7.0, -3.580069222725036, -7.0, -3.5989363410431636, -3.217659381292399, -7.0, -7.0, -2.828220342013904, -7.0, -3.462397997898956, -3.590395947184013, -3.362670929725667, -7.0, -7.0, -2.9289588408808296, -3.1142772965615864, -7.0, -2.3863367943456684, -3.368168509363625, -2.4834360012063805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.268304892028948, -3.531223374533027, -3.21761552866633, -3.9519485116441997, -7.0, -7.0, -3.2874658053432286, -3.3328422669943514, -3.5354207180561734, -7.0, -7.0, -7.0, -3.6669857183296606, -7.0, -7.0, -3.550228353055094, -3.5634810853944106, -7.0, -7.0, -2.8953304466897034, -2.973926021334254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0011926706536842, -3.192177026112752, -3.6853834098014873, -3.4782297026479974, -3.6775157047987577, -7.0, -7.0, -7.0, -1.3641291386301917, -3.7013952690139202, -2.820846274389542, -7.0, -3.693926707209632, -7.0, -3.563599728881531, -3.5686709780098966, -7.0, -3.2287595554356354, -2.1079754391582166, -3.212986184736668, -7.0, -2.958181497564948, -7.0, -7.0, -3.6444385894678386, -3.465457210575713, -2.751510050270041, -7.0, -7.0, -3.6461095219788477, -3.5633624094866074, -7.0, -7.0, -3.2350231594952237, -3.155411956437706, -7.0, -7.0, -3.6603910984024672, -3.5178397276832776, -2.5993573652014748, -7.0, -3.648964674299241, -7.0, -3.61066016308988, -3.1354506993455136, -3.385606273598312, -3.7781874400825854, -3.312811826212088, -3.656960182742849, -3.3892547068486483, -2.7992026563005252, -2.9429995933660407, -4.097860559476264, -3.539327063539375, -7.0, -7.0, -7.0, -3.937517892017347, -2.7043343970832785, -7.0, -3.5957166199434245, -7.0, -7.0, -7.0, -7.0, -3.1228163735354806, -7.0, -3.3261309567107946, -3.3756026560715435, -7.0, -3.728336386700282, -3.5918592906551927, -3.7562988995765636, -7.0, -2.961373627594801, -3.4865033443394324, -3.6497728273006773, -7.0, -7.0, -7.0, -3.8067902715840667, -3.4793353286902375, -7.0, -7.0, -7.0, -7.0, -3.7371926427047373, -3.0884904701823963, -7.0, -3.6060587494103142, -3.868174040859638, -7.0, -2.6001965198996295, -7.0, -7.0, -3.9276987831185015, -4.793133558969125, -7.0, -7.0, -4.7368982408204765, -3.9472212610378086, -4.0216440360874435, -4.145227492652394, -3.4052526963247365, -3.7937205568135233, -3.8403570592033565, -7.0, -4.265588169448128, -4.533339835991969, -3.4092883851801457, -7.0, -4.222881142422591, -3.7614366627415046, -7.0, -4.370772071705626, -7.0, -4.6942049372013654, -7.0, -3.722939325314079, -3.5933137634894505, -7.0, -4.208387603795154, -4.262308674749025, -7.0, -3.649042634086176, -4.2394746634651845, -4.402364568884161, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.261239071182586, -3.2820307129338744, -7.0, -4.2197154758555016, -2.885529009742976, -3.181598615963903, -3.3967222785037734, -3.5397211439377028, -3.2392160331698863, -3.3912805950499947, -2.7435779267754823, -3.305852740224386, -4.008302024212002, -3.212541180290165, -2.745966567012242, -7.0, -2.9125380115265718, -3.981637424655769, -7.0, -3.962700731704341, -3.3099248374464105, -3.88058495606498, -7.0, -3.171433900943008, -3.315602333060121, -4.8638401357766385, -7.0, -3.291590825658001, -7.0, -2.9685950100903336, -7.0, -4.808327467093671, -3.3274465143581065, -4.289165152649889, -7.0, -3.264745192441276, -3.699027906406887, -3.371717619876, -7.0, -2.8378363553807753, -3.6691773631428735, -3.032576351350964, -3.225735611624981, -7.0, -2.8043362399890293, -3.2705297765360086, -7.0, -3.408463532402235, -7.0, -2.932537179217954, -2.956388564539977, -3.8788280680681337, -7.0, -7.0, -7.0, -3.5466660250701842, -7.0, -2.454453609769247, -2.222044838333418, -2.3879426850315597, -3.0802656273398448, -3.2092468487533736, -2.5195129832576257, -2.7758126429361747, -2.6942541120252788, -2.7140901489905187, -2.8888939620872947, -3.242417184417719, -2.6883733297085577, -2.264879931623429, -2.6374897295125104, -7.0, -3.3096301674258988, -2.9239344710521813, -2.0657430578984863, -3.3191060593097763, -7.0, -2.8041394323353503, -7.0, -2.8249931222365388, -3.0751818546186915, -2.4541516523882234, -7.0, -2.642563437104388, -7.0, -3.554125581513013, -3.212279823265849, -2.8630116102274084, -3.316551992958615, -7.0, -3.75724415102197, -2.336308661760076, -7.0, -2.4430020715710614, -7.0, -2.334357996662195, -2.1781725804252074, -7.0, -3.555698894718901, -3.4282968139828798, -2.5082410552970478, -3.110870171711581, -3.108113808646113, -3.0680930538642177, -3.329092647195331, -3.2943559851451605, -2.476849735809972, -2.6684204324445906, -3.064949100672052, -7.0, -2.2008504980910777, -2.4296118679475467, -7.0, -2.780548750718452, -7.0, -7.0, -3.255915428213917, -2.3404441148401185, -2.45908807414116, -2.299604971476159, -2.882081606267427, -3.6595359071542166, -7.0, -7.0, -2.806632128612864, -3.1027276444281937, -3.5743785644130823, -2.4495641011080975, -2.0106048316835032, -3.3460594330525737, -3.531223374533027, -2.0043213737826426, -2.5202587512953705, -2.5937167011478612, -3.419625360887743, -2.4869308453661136, -2.9219835813490653, -3.145248215775073, -2.8606374167737547, -2.4442997758061598, -3.17805561153123, -2.868840287093479, -7.0, -7.0, -7.0, -4.111363344325131, -3.7653704802916486, -2.6569495514291095, -2.983551117157769, -2.808542631074618, -2.858623119912763, -3.036853369184079, -2.687586122524311, -3.1774210574831687, -2.2489689159055066, -7.0, -2.2727695865517594, -7.0, -2.400746348353711, -2.34456563320384, -3.4147505757259213, -7.0, -2.165095874754218, -2.846955325019824, -2.3259101824596113, -2.76063785386249, -7.0, -7.0, -7.0, -3.5481436374348454, -7.0, -7.0, -2.8877110498195115, -7.0, -2.9951962915971793, -2.9782946697786294, -3.5928426831311002, -2.954121855324949, -2.9708116108725178, -2.4253168014790023, -3.1083394747888384, -2.28070841812527, -2.7066229685645444, -2.4390555435452326, -2.7637772854038287, -3.2704459080179626, -3.2961164921697144, -3.5342800052050816, -2.8028421127390746, -3.2847690133490195, -7.0, -2.7161172171175747, -2.4543002900538933, -2.450359098058306, -2.7191931306339363, -3.0518468383137356, -2.7849341224714053, -3.06905111359728, -3.2522460504731185, -2.7148325124333326, -2.760045327965811, -2.9175055095525466, -2.258828770593979, -3.314709692955174, -7.0, -3.672667303446025, -7.0, -7.0, -7.0, -3.6711111049252425, -4.466066475658547, -3.419850652422548, -4.1484638311172795, -4.4538532325881866, -3.1236501138139117, -3.171593499578443, -7.0, -4.449401252996221, -2.714884975155155, -2.8770534434074846, -3.9825576522920807, -3.551312734347314, -4.446008733684012, -3.6704004888179345, -7.0, -1.9817592997882345, -3.245376929578351, -7.0, -3.3307924320732254, -2.33541961695756, -2.7078286078115443, -3.849188998468175, -7.0, -3.2667313418701927, -3.6825962914605532, -3.850293878845634, -2.737732667645749, -3.75859399963138, -4.448226940521222, -4.147382573846098, -3.9754777631658746, -3.3236498125135348, -4.14921911265538, -2.5095170937932436, -3.7477845662086304, -3.1118175226571605, -7.0, -1.8299493896333177, -4.449308659474037, -2.850125259486936, -3.517855418930029, -3.8573023360449996, -2.812258353215379, -4.1503879773252805, -3.6792158461511475, -4.0100737026717335, -3.3457807615350057, -3.466185257056047, -2.0459426715578344, -4.180383965589764, -2.624441715528019, -3.527900445194766, -3.8506462351830666, -4.154758619154177, -3.2253810837400634, -3.9792751475910233, -4.156609718165699, -3.50336692202923, -7.0, -3.676693609624867, -2.9022261072795255, -7.0, -7.0, -7.0, -3.1549309119861473, -4.1456158867489155, -2.6233818386918952, -2.970169052064559, -7.0, -3.4798343413193606, -2.5511869560030376, -4.146949316052184, -3.1512092788693664, -4.44554193436792, -7.0, -2.1547458012533567, -4.470968804605796, -3.8493733405098816, -7.0, -3.703061987128565, -3.454905809342959, -3.371891600376384, -3.2607025791074236, -3.6222584422236412, -4.164501561309568, -2.207799803280512, -2.757100662119184, -2.870874187893698, -7.0, -7.0, -3.1365476218503834, -4.466912085089596, -3.133045111293821, -3.717989312300647, -3.9724342769573653, -2.6490730178474116, -3.853865449855675, -4.145569297792989, -4.145320738918325, -2.4745478950919684, -3.9700522868628005, -3.9985935061160727, -3.5079607610773103, -2.8478330480849277, -2.6922366216770506, -3.4537310295042936, -3.7514946576711314, -2.967502684527245, -3.5073910568285225, -2.276631354423071, -4.457170099784619, -7.0, -3.241531831992722, -3.44999702677108, -3.0868524453015307, -3.679124935677682, -2.8133654043086627, -2.4918543411396246, -4.152807963419064, -3.536861333074499, -3.4128574701421197, -3.095825072722579, -4.459874769298969, -2.836841783516819, -3.0834474888264607, -4.147227888532488, -2.589505858136387, -2.070191456658844, -3.6388884247050757, -7.0, -4.446801142847091, -2.934455653068426, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0055167390105617, -3.4374202254789092, -2.7443973056026167, -3.3633701902513606, -3.8531199842175665, -3.5449481493514257, -3.4467235195682013, -3.449756012062128, -3.012897455546667, -3.8116420214531512, -2.6691257494518283, -7.0, -7.0, -3.9783631470838827, -2.541852590115751, -4.446816665838136, -3.8436531610519933, -3.6904618932461783, -2.3515336077721796, -4.14744443254818, -3.7637274037656985, -3.3510526263120277, -3.8751625869501884, -3.244669969749393, -4.166755638665237, -3.1462396970463096, -3.8634418286137087, -4.152165990675555, -2.662710132142548, -7.0, -7.0, -7.0, -4.456092614887902, -7.0, -4.14908048591103, -3.969788537414939, -2.920499480678795, -7.0, -2.9430463082737304, -4.446940829796355, -2.241032065988696, -2.2189690282163985, -3.9798517589161557, -3.030963842378275, -2.8617844044915968, -3.5593679094633317, -3.1524776333829094, -3.422724109285819, -2.6807514900992335, -3.3809043531298437, -3.6861743251490533, -2.2883127215408736, -3.7536443306878593, -2.7346371267745795, -7.0, -2.605352939224738, -3.0710272996925214, -2.374987297588018, -7.0, -2.79466505233476, -4.446273030751088, -3.6763800207200426, -4.45374630677039, -3.7654897346294343, -4.450972329938457, -4.152104800892868, -2.3275181575643944, -2.6139885578581064, -7.0, -4.17506221059361, -3.399621810671736, -3.0073083928914546, -7.0, -4.446304113951924, -4.149988456491476, -7.0, -4.4491234131845605, -7.0, -7.0, -3.550457673388806, -3.2508467674689916, -2.7385580430539074, -2.697856360143162, -2.5220628420114863, -7.0, -3.451356532162689, -3.976334692057641, -3.9828137621318627, -3.8444616427611162, -3.8462752424122133, -3.517489142040726, -3.620210439573049, -4.46507040400967, -7.0, -7.0, -7.0, -4.149095891067973, -7.0, -7.0, -4.165199796041853, -2.9739148385188066, -7.0, -7.0, -7.0, -7.0, -3.978347930837997, -3.6092284050050294, -4.445790956440055, -3.5011353674456522, -3.2538089895192175, -3.2371295890244625, -3.145027982018139, -3.252955175857627, -3.767660393845374, -7.0, -7.0, -2.0824464605830224, -7.0, -3.0114083105604443, -4.154880244718762, -2.4124023237640917, -3.98027614107784, -7.0, -4.149773177559665, -3.027151494017887, -3.1756567472816637, -2.659024363596743, -2.870044593762679, -3.01747601299904, -2.676513709253526, -2.991958959255932, -3.8461514765288154, -3.4612883818666504, -3.019345522521489, -2.960499605578246, -7.0, -3.8484970180903666, -3.984632311405793, -7.0, -3.2889344912500436, -7.0, -4.472639451880648, -2.7694015416651996, -3.8584770418133405, -3.78141067367645, -4.162967450221886, -2.1812042907283047, -2.893712456636053, -4.14789264483285, -2.6864221224006877, -3.6026025204202563, -3.9793966030856005, -2.8619093473644877, -3.7692000268363204, -3.307056053323182, -3.70888808900192, -3.4848690327204026, -3.565596964778962, -3.710963118995276, -3.8721562727482928, -2.9839560114981873, -2.985950126092585, -3.04766419460156, -7.0, -4.144371801014283, -3.178087052906914, -3.1017333302326384, -3.3375206955987693, -4.153418485037711, -3.2736522256933327, -4.149265311738653, -3.693023067923694, -7.0, -2.6841081445570096, -3.8531504364478426, -3.254427221540668, -3.458871241042658, -3.375785504077291, -2.8350079316834047, -3.0331052901726596, -2.765603018334299, -3.756346989433602, -3.1653475667241158, -2.387525953718933, -2.8900308871883484, -7.0, -3.178431655600839, -2.8146501647125612, -3.3140779917792127, -2.408839837676014, -3.1345887800261094, -3.2668341386777238, -7.0, -7.0, -3.999855211039865, -7.0, -7.0, -4.455925441183637, -3.9018668128655483, -7.0, -2.454476626578019, -7.0, -7.0, -2.9855240968680246, -3.4059085667542925, -3.549908278205137, -3.898985570532309, -4.052996078945087, -3.5321341220629616, -3.6993792890721724, -2.91296955152229, -2.8430643424451443, -3.6646419755561257, -7.0, -2.7318542123823653, -4.05703544658085, -4.0622605454970895, -2.6478019710944465, -3.326594080702326, -3.0209970134783997, -3.0157513574644783, -3.9804124616068917, -3.2184992868459035, -4.494766629133628, -3.047891541225409, -3.2848253676580463, -2.8240267397174676, -3.701211682926409, -3.2414664304127747, -3.687136402800057, -3.3303122908199514, -4.472902651803664, -2.8044200749828567, -3.776898262895438, -3.833830684582083, -3.3240318112662224, -3.077246746270425, -3.5653755027140734, -3.318557569110699, -3.641102123773089, -3.705459384667452, -2.710525162960417, -2.7780432982809646, -3.0950935120040057, -2.656862143033687, -2.9640842761672306, -1.794614194858966, -3.6601197915175523, -2.77852640452227, -3.7742833327557155, -2.474819422014234, -2.1073754466862216, -2.928495423564597, -2.1030600316071943, -2.914095011775121, -2.968044570194652, -4.162848068856491, -2.9253041562091404, -3.2314950764482293, -4.448366169700718, -3.184807536815324, -1.1806561030119451, -3.1841504223615846, -3.679321884323715, -2.467588955990991, -2.5431083893749618, -2.937301172731602, -3.8481737162047907, -3.7318304202881625, -3.9744349283567657, -1.8568627185206399, -3.162707234517458, -3.170618332897216, -3.9936345938361932, -2.009698542326087, -3.668774060859105, -3.2226088481959576, -2.5193316846166227, -3.0252416887994142, -2.7564701305444474, -2.8700962645020613, -3.353403259377596, -2.966145815394173, -2.537151705229521, -4.1546065392836224, -2.5448603970897627, -1.5695436588515528, -3.2370967031246045, -2.2304805461701447, -4.452001227726593, -3.4966390991807463, -1.7478708307789022, -1.64251162631971, -3.5456008773184835, -4.145724574880668, -4.445588636884166, -4.448010273039476, -3.337472572794907, -2.663601345551572, -3.172091867626748, -2.531591308128764, -7.0, -3.145462789979763, -2.180982024435645, -4.475976104139765, -3.6245178211861346, -4.4497868469857735, -2.905611623054157, -3.8454856299390485, -2.1366033236200126, -2.875323139822814, -2.921686475483602, -4.471731651480051, -3.83312585370862, -3.1694098981407004, -2.9742135903699447, -7.0, -3.6750600320545788, -3.3483048630481607, -7.0, -4.1546065392836224, -3.320294686755554, -3.108198447191592, -7.0, -2.812348521866597, -7.0, -4.14789264483285, -3.234342035215775, -2.641505723669546, -2.689215620233142, -7.0, -3.635483746814912, -2.9549295985668733, -4.457685133412637, -3.251938666314157, -7.0, -3.685726814136828, -2.3383017338766767, -4.145895315578768, -2.9711366294768062, -3.3961412047190644, -3.68517424805309, -3.166066636783229, -3.276584339119928, -3.049948192500717, -3.6811356668587436, -7.0, -3.236848334173514, -2.755769346221779, -2.8010706272538823, -7.0, -3.344364199443406, -3.373746382634832, -3.624679808177516, -3.5036545192429593, -7.0, -4.148093417520579, -3.7032668063071807, -3.295009672664702, -2.214262203173111, -3.203190398327238, -2.952058661925562, -3.8617434431712057, -7.0, -3.424051942460124, -4.152074202768228, -2.3868660119200196, -3.6732820814542, -3.3923158260022936, -2.513837983934262, -3.762903528499057, -7.0, -2.4914265477852484, -2.366950530833321, -3.022194594880668, -3.359806304706641, -2.597128185952831, -3.1204451686960653, -2.791902403152317, -3.1815577738627865, -2.8180210108772434, -3.250447110981036, -3.616820471794698, -3.0974233099838835, -4.146205581340778, -7.0, -3.088801396163152, -3.8801559384642488, -3.854746187218726, -4.481743520420445, -3.0386698268227517, -4.170247043036237, -3.3216294947679144, -2.3870476724736753, -3.359550916763318, -3.2252949198983876, -7.0, -3.4246886399517753, -7.0, -3.2727286880397863, -2.925949573169082, -3.395393605710807, -7.0, -3.5632140189832664, -3.179521555186347, -1.9209689244466794, -4.155001836231253, -4.4515868904569045, -7.0, -3.844228581301628, -3.971012841545116, -4.447344117675954, -4.147969876081947, -3.528968093033398, -3.8629211006820983, -3.3553336134554423, -3.54917191710199, -3.851930678640268, -4.449308659474037, -4.451479405124862, -3.8535461212539044, -3.2766149674553477, -3.361844019667805, -3.2085607829433496, -2.276592468177811, -3.4425712173591396, -2.7326663010819305, -3.5514042482512638, -7.0, -3.3135157072120407, -3.498662748618196, -7.0, -2.3744663365963614, -3.853378760138451, -4.153921520067111, -2.780161942131146, -3.877515318847026, -3.4773672852240134, -4.448010273039476, -4.448876295154121, -2.52134380601364, -7.0, -3.550595207489328, -3.349875009222593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.824028155508092, -7.0, -7.0, -7.0, -4.192567453336546, -3.7317767307737038, -7.0, -7.0, -7.0, -7.0, -2.5705429398818973, -4.035389709198677, -7.0, -7.0, -2.9556877503135057, -4.173781630559868, -7.0, -7.0, -7.0, -3.2938043599193367, -3.1027766148834415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7551122663950713, -3.4679039465228003, -7.0, -7.0, -2.3508938095043144, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6299190355035416, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7937903846908188, -7.0, -3.4208355552872893, -7.0, -7.0, -7.0, -3.422589839851482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.620760489994206, -7.0, -7.0, -5.125051638496985, -7.0, -2.7297720531082863, -7.0, -7.0, -7.0, -7.0, -2.8129133566428557, -7.0, -7.0, -7.0, -7.0, -7.0, -2.931966114728173, -7.0, -3.9289869711634, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5216610151120733, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5224442335063197, -7.0, -2.3206654666652975, -7.0, -7.0, -7.0, -3.015778756389041, -3.8988896559265864, -7.0, -7.0, -7.0, -7.0, -4.382845196296262, -7.0, -7.0, -7.0, -3.530071568837378, -3.620448384711709, -3.015778756389041, -3.127958405334193, -2.9968494891850317, -7.0, -7.0, -7.0, -4.993445048570157, -7.0, -7.0, -3.292588312465555, -7.0, -7.0, -3.59802407233419, -7.0, -7.0, -7.0, -4.365824806859364, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5471180513494303, -7.0, -3.673512399026766, -3.6734816970733473, -7.0, -7.0, -7.0, -7.0, -2.8003733548913496, -7.0, -7.0, -7.0, -7.0, -7.0, -4.540379534670119, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6961340412397927, -7.0, -7.0, -7.0, -7.0, -2.795184589682424, -7.0, -7.0, -2.5925468421919335, -7.0, -7.0, -7.0, -7.0, -2.9685099632773224, -2.4001060704285453, -2.6650178254124723, -2.0456785207483104, -2.8397921844453293, -2.570153612664517, -7.0, -7.0, -7.0, -7.0, -3.6184664921990803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7331972651065697, -7.0, -7.0, -7.0, -4.354089222152247, -3.8457180179666586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.904282657645628, -7.0, -4.127881943484625, -5.712872683207005, -7.0, -7.0, -2.8920946026904804, -3.081707270097349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.827930669166558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9407654356312176, -7.0, -2.629613445378183, -2.0363627019845945, -7.0, -7.0, -4.312685006388759, -7.0, -3.833453114731084, -2.670709595223797, -4.7099988280251885, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4774106879072515, -3.1027766148834415, -7.0, -3.161368002234975, -7.0, -7.0, -7.0, -3.438384107034714, -3.1072099696478683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3196784923566365, -7.0, -7.0, -7.0, -4.529436771200223, -3.88570038012833, -7.0, -4.283074974735472, -7.0, -1.673481697073347, -7.0, -7.0, -3.0458117739782704, -3.4871383754771865, -3.776773802412107, -7.0, -7.0, -7.0, -4.597859015386846, -3.8627870982353443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0863598306747484, -2.7573960287930244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6858312746260635, -5.176259153797791, -7.0, -3.3056379379043346, -5.018126051500581, -3.7658175153099185, -7.0, -7.0, -7.0, -3.042181594515766, -3.7745899502647946, -2.864171920961574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6317480743965693, -7.0, -3.421905415588571, -2.432969290874406, -7.0, -3.9916136656172863, -4.469858819035844, -7.0, -7.0, -7.0, -3.8933548248246317, -3.86993541064686, -4.287980783522498, -4.1805215511284315, -7.0, -7.0, -4.301073422940844, -7.0, -7.0, -3.880607825103815, -7.0, -4.0702041603125725, -4.921847680638257, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530186886967461, -7.0, -7.0, -7.0, -7.0, -7.0, -4.171133829751535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.01040597262518, -7.0, -7.0, -3.951528055366644, -2.7000688257699466, -7.0, -7.0, -7.0, -4.389995895119275, -7.0, -7.0, -7.0, -4.962047165769254, -4.202097621452882, -7.0, -4.434951936087753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.087839071542424, -5.010627815666308, -5.706309746387422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.210318519826232, -7.0, -7.0, -4.00814576996069, -7.0, -3.8288283871565176, -7.0, -7.0, -5.34727340695374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.425193219436662, -3.3283796034387376, -3.577491799837225, -7.0, -7.0, -4.339570682001439, -7.0, -7.0, -7.0, -7.0, -7.0, -4.796241200121809, -3.598571663482141, -7.0, -7.0, -3.4224913492099662, -7.0, -3.349374674204051, -7.0, -7.0, -3.067219688974141, -7.0, -7.0, -7.0, -3.0278929853644447, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0977164374180046, -4.786872042749559, -7.0, -7.0, -3.3271545124094315, -7.0, -3.14035088925253, -7.0, -7.0, -3.9461328133753497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.978545700462739, -7.0, -7.0, -3.221283799492686, -3.4955443375464483, -7.0, -3.5391388535767745, -7.0, -7.0, -7.0, -7.0, -3.471710153639844, -2.7371926427047373, -7.0, -2.4650852875574327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.792181496149679, -7.0, -7.0, -3.481729196960016, -3.1098852087458977, -3.6018427897820984, -7.0, -4.302395873152567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.226471015317139, -2.992553517832136, -7.0, -7.0, -7.0, -3.4216039268698313, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3709754493589705, -7.0, -7.0, -7.0, -3.79039073332807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.791620482692814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.514547752660286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8891615849113204, -3.7295427422712732, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334795422556774, -7.0, -7.0, -7.0, -4.3163687904089905, -7.0, -7.0, -7.0, -3.2750808984568587, -7.0, -7.0, -4.56370055036805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.237622270987323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4759615891924236, -7.0, -7.0, -4.606375990145637, -7.0, -3.893595333819883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3666097103924297, -7.0, -7.0, -7.0, -7.0, -7.0, -3.869397971828717, -7.0, -7.0, -7.0, -7.0, -3.864807629026147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2173523198813627, -7.0, -7.0, -4.451725046806695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14367043347016, -7.0, -7.0, -7.0, -3.486949715838293, -7.0, -7.0, -7.0, -3.6097011023793995, -4.073498398717262, -2.2570783059665684, -7.0, -7.0, -7.0, -4.381349771059741, -7.0, -7.0, -3.292920299600006, -7.0, -7.0, -2.979548374704095, -3.6902551636939207, -4.275794914631003, -7.0, -7.0, -7.0, -4.993078948010719, -7.0, -7.0, -7.0, -7.0, -7.0, -4.295347148333618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.148201487458512, -7.0, -7.0, -7.0, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0621681733517825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.361160995195026, -7.0, -3.216957207361097, -7.0, -7.0, -7.0, -4.037003337451435, -7.0, -7.0, -7.0, -2.9375178920173464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.398821214408981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.037027879755775, -7.0, -4.067182485523405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7264826967848297, -3.307067950661298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.599610188318619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.919601023784111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.709295407172643, -7.0, -7.0, -7.0, -7.0, -3.4225077658680756, -7.0, -7.0, -7.0, -3.1357685145678222, -7.0, -7.0, -2.787460474518415, -7.0, -3.092896010921856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.830213229831968, -3.8809849904867533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.351151212403978, -7.0, -7.0, -7.0, -7.0, -3.7386220279179425, -7.0, -7.0, -7.0, -3.3727279408855955, -7.0, -7.0, -7.0, -3.6802448370426077, -7.0, -7.0, -7.0, -7.0, -4.0775556349820405, -7.0, -4.596411301688093, -7.0, -7.0, -4.716741851172329, -3.759592308645975, -7.0, -7.0, -7.0, -7.0, -3.467312062980552, -3.100628976831171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.500250200730158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4631685609915746, -7.0, -7.0, -7.0, -7.0, -5.23491444587379, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.43362584503636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.689584091501692, -5.186604634819657, -5.2291141844551285, -7.0, -7.0, -7.0, -7.0, -7.0, -4.927864609296833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3111178426625054, -4.1773344555057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1986570869544226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.616612029993923, -7.0, -7.0, -7.0, -3.624127331511917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2161659022859928, -3.9755696578936623, -7.0, -7.0, -7.0, -3.4838724542226736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.44378109287485, -3.4240645254174877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.334453751150931, -7.0, -4.026083620800987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.543608690196552, -7.0, -3.4077307280263356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0195316845312554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495225090106221, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3873898263387296, -3.071391001621373, -2.810098040681143, -7.0, -3.4360035356698964, -3.295312267721071, -7.0, -7.0, -2.9093777108309906, -3.2427649777520964, -2.9346907871554375, -2.588691788592222, -7.0, -7.0, -7.0, -7.0, -3.0939927496520165, -3.6775613311560935, -7.0, -3.207095540419218, -2.8191189727893615, -7.0, -3.107718610520263, -3.3500540935790304, -2.9876662649262746, -2.9014583213961123, -7.0, -3.700247843649352, -2.774224904868919, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6853834098014873, -7.0, -3.134389632406994, -7.0, -3.555723674553692, -3.0847549631793543, -7.0, -2.8189952374500518, -7.0, -2.2823104961985092, -7.0, -3.4727564493172123, -7.0, -2.6501687043735536, -7.0, -2.685862871168959, -2.9624640460579013, -1.2571886216562271, -3.2054750367408906, -7.0, -2.9783327140589657, -2.704436519143124, -7.0, -7.0, -7.0, -3.375297738217339, -2.491050259986647, -2.0907068367582795, -3.1549309119861473, -7.0, -3.3666097103924297, -7.0, -7.0, -2.3229485887456063, -3.183056203693958, -3.375846436309156, -7.0, -3.4149508617276534, -7.0, -3.61066016308988, -7.0, -3.401400540781544, -1.1175501570831434, -2.683272236315922, -3.1097472377132287, -7.0, -7.0, -7.0, -3.2150203546471214, -3.725176301419137, -3.2597133053907306, -7.0, -2.9222265497856523, -3.1190083104691966, -2.3694656262518725, -7.0, -7.0, -3.1722136039924793, -3.5559404378185113, -3.022840610876528, -3.4506339505970054, -3.3896975482063856, -3.4238190919654046, -3.458033192496506, -7.0, -3.3510228525841237, -2.5159517231132873, -7.0, -2.2969784210590283, -3.0404704759922456, -0.9024655519714955, -2.3123343546117208, -7.0, -7.0, -7.0, -3.513084360465144, -3.160351796497107, -7.0, -7.0, -7.0, -3.4243915544102776, -3.484157424365381, -7.0, -4.223132362471588, -3.5125732296355796, -3.436162647040756, -3.64018319192134, -3.1419198739138805, -4.0987086056043305, -2.715446198616883, -2.707002099520009, -3.0677402029262404, -7.0, -7.0, -1.4588888292013262, -2.333538868819963, -7.0, -2.8783302654068548, -3.62212763918045, -7.0, -7.0, -7.0, -3.375846436309156, -7.0, -2.9500517490365605, -3.378216149749878, -3.164271722213462, -3.344915993352923, -7.0, -7.0, -7.0, -3.3944516808262164, -3.2027606873931997, -4.120244795546365, -2.7244806771885997, -7.0, -7.0, -7.0, -3.1482822254644347, -3.3564083270389813, -7.0, -3.269512944217916, -2.672493690697651, -3.37675939540488, -7.0, -3.543074235033532, -3.156650091362893, -2.842817185260646, -3.563243701140398, -2.66805960729094, -2.5888317255942073, -2.2790800154604183, -3.3578373102701593, -3.4144719496293026, -7.0, -7.0, -7.0, -3.40671045860979, -7.0, -7.0, -3.1042736673203346, -7.0, -4.319813684538678, -7.0, -2.7685147746865404, -2.9443468382417373, -7.0, -3.516337020623613, -2.3688290269918513, -3.0424442461608465, -3.619823500457278, -3.233884108765886, -3.0860037056183818, -3.49996186559619, -3.0580462303952816, -2.9380190974762104, -7.0, -3.5073835557363866, -7.0, -2.7995027206585665, -2.8780619812900126, -3.6773148918608625, -7.0, -2.280456529745993, -7.0, -7.0, -3.4348881208673157, -2.757142869659127, -7.0, -3.4287825114969546, -2.864451747158183, -3.3049211619008916, -7.0, -2.3920759410252943, -3.787460474518415, -2.7737376998796326, -7.0, -7.0, -3.4058583993176366, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9985644582609416, -3.4490153163477864, -4.18613667169178, -4.11236533622378, -7.0, -3.4122925093230463, -3.131137273778607, -7.0, -7.0, -3.375846436309156, -3.2942457161381182, -3.0665743775895824, -3.5407047833107623, -7.0, -7.0, -7.0, -3.3958503760187813, -7.0, -7.0, -2.645790575645571, -3.2185452300053567, -7.0, -7.0, -7.0, -7.0, -3.4531653925258574, -7.0, -7.0, -7.0, -7.0, -3.2638726768652235, -3.417803722639881, -3.22219604630172, -3.5546102852261643, -7.0, -7.0, -1.5236235880551368, -2.8862650590297565, -2.558405508119852, -7.0, -3.345430913802812, -7.0, -3.3960248966085933, -3.1020905255118367, -2.888067113407437, -3.0176890582210874, -1.5358280206796917, -2.4105585475204636, -3.4628470358316736, -2.142363390979571, -3.1486026548060932, -7.0, -3.03261876085072, -2.8231946704339643, -2.5358781109177286, -7.0, -7.0, -3.512550992904211, -7.0, -7.0, -7.0, -2.598571663482141, -3.5348718599395945, -2.898999270889789, -7.0, -7.0, -3.569225185670545, -2.7260476681558012, -7.0, -4.023561090096945, -7.0, -2.9858753573083936, -2.388163005253829, -3.2657609167176105, -3.5573868820595074, -3.39750549689802, -3.4207256768599095, -3.0942381380341772, -2.7557055070714362, -2.265889361875121, -3.757536918719722, -2.2881826065009245, -7.0, -7.0, -7.0, -3.39701252410831, -2.625826713285711, -7.0, -7.0, -2.9406160823374075, -7.0, -2.307833703718926, -3.4154741681092355, -2.7897729487512173, -7.0, -3.4868553552769432, -2.8708426604757014, -7.0, -3.6634712349862872, -3.417836911626325, -4.0909486408698665, -7.0, -3.2034136800964528, -3.795499715476454, -2.56534174619609, -7.0, -2.7746629225378223, -7.0, -3.719082573901486, -3.2940250940953226, -2.9447910104534314, -3.113609151073028, -3.361538971269279, -7.0, -2.727744530836107, -3.0982975364946976, -7.0, -3.457124626303409, -3.491921712586151, -3.4102709642521845, -2.4827826631659913, -7.0, -7.0, -4.137396314809074, -4.483815437748665, -7.0, -3.778078861937455, -4.250314262316336, -3.927626962444954, -3.492993067565435, -3.568468407822322, -3.5099749598454677, -3.7507397512353506, -3.4586378490256493, -4.039949220939654, -4.432391984779924, -4.704442237268507, -3.521737223361478, -4.063051745747089, -4.212604823985944, -3.852459661022236, -3.797059694699971, -7.0, -7.0, -4.436854986375111, -7.0, -3.6509385888289296, -3.316359806957494, -4.364944777212948, -4.373867870327068, -7.0, -7.0, -3.6108304412657146, -3.363692546534042, -4.693216748951045, -3.7565220053905515, -3.9387698227831174, -3.2688119037397803, -7.0, -3.969322706112202, -3.877025615867249, -4.232411578420845, -2.8754775801315455, -7.0, -3.841314769257563, -3.1970930127175414, -3.6754116937148633, -2.8447532250045566, -3.2491418907324983, -3.3047058982127653, -3.4915042671197116, -3.0229155215247347, -3.3889001083542367, -3.866361192410094, -3.150937764940095, -3.1159956797476744, -7.0, -3.0014203636304737, -3.146334793350271, -7.0, -3.4260230156898763, -4.1035984939779375, -7.0, -7.0, -3.308838714446678, -3.2469415124832546, -4.593988585146381, -7.0, -2.9777236052888476, -7.0, -3.3838909217359983, -7.0, -4.6302464573197675, -3.3588228453741857, -4.262189959913005, -7.0, -3.6582022533870147, -3.4183314286836173, -3.681248197167286, -3.160543558238841, -2.9571042293287895, -3.6109261934087056, -3.2640231786798104, -3.1495537774495497, -7.0, -3.0539483984211167, -3.788243812055398, -3.732393759822968, -3.9195545664811595, -7.0, -3.0556076517087116, -3.3475867664222134, -3.6338722626583326, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5426995708464664, -1.9867717342662448, -1.8582494207270297, -7.0, -2.866995813110648, -2.6339272981810673, -7.0, -2.462167541814003, -3.090258052931316, -2.6612801355233766, -3.3664229572259727, -2.7471820510443075, -2.33527212215128, -3.439332693830263, -7.0, -3.8796692056320534, -3.110589710299249, -2.7255032688593155, -3.1758016328482794, -3.1295287738587763, -2.986659788272094, -7.0, -7.0, -2.3207570223696323, -2.4283053396747674, -7.0, -3.0391977292952763, -7.0, -7.0, -3.9165486933741898, -3.1606133994250425, -3.337548761830192, -7.0, -3.657629431388952, -1.9003244482493893, -7.0, -1.9128670578471783, -7.0, -2.4498639247181444, -1.9279696154297532, -7.0, -7.0, -7.0, -2.3191060593097763, -2.737788791709675, -7.0, -2.7662888869340487, -2.408663874063811, -7.0, -2.2573185130976388, -2.306922610847946, -3.3961245911816342, -7.0, -1.9041066737190036, -1.9705924583816672, -7.0, -3.021106568432122, -2.950202531637585, -7.0, -3.984707294482673, -2.286793175654974, -2.457934544280078, -2.461929755824591, -2.675319983339292, -7.0, -7.0, -7.0, -7.0, -3.1082266563749283, -7.0, -2.1412257370365086, -1.8773164864644205, -3.5141491344754376, -7.0, -1.8255715969364985, -2.0836891886444, -2.468864040148188, -3.6112983622964285, -2.329617194839177, -3.1935883405041348, -3.2561763441015508, -3.5039268041935103, -2.552355286244995, -2.900093901543398, -3.5150786750759226, -7.0, -3.3619166186686433, -7.0, -7.0, -2.9681092011281978, -2.464042205438811, -2.7597622462728526, -2.680666199170931, -7.0, -3.5123374623329355, -3.266408107693024, -3.3259943001703647, -2.223293990490537, -7.0, -2.1304574814945334, -7.0, -2.407603325351417, -1.9217211483096077, -3.2189291850880872, -7.0, -2.7732987475892314, -2.3677858446531794, -2.514088407416947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.382917135087531, -2.7618204859340345, -7.0, -3.2763468962530333, -2.641639335722719, -7.0, -7.0, -7.0, -3.45484486000851, -3.42845877351558, -2.8467493518208467, -3.0569048513364727, -3.2609950704669153, -3.0329064302537683, -7.0, -7.0, -7.0, -3.414555556229215, -3.428620672671939, -7.0, -3.179303656465203, -2.975431808509263, -3.447623097760286, -3.4094258686714434, -3.04766419460156, -2.4876433104043176, -7.0, -3.3811150807098507, -3.6055205234374688, -7.0, -2.5408159235773624, -2.628261177591116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.203967952980513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3411213332477665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.305136318943639, -7.0, -5.140558320241512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8277783856132026, -7.0, -2.9349471026077483, -3.4740705032150436, -7.0, -7.0, -3.3979400086720375, -7.0, -7.0, -7.0, -7.0, -2.8639173769578603, -7.0, -4.1456158867489155, -7.0, -7.0, -7.0, -7.0, -1.8609019409522591, -7.0, -7.0, -7.0, -4.647441654593042, -7.0, -3.3025473724874854, -7.0, -7.0, -3.5599066250361124, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4553017716570764, -7.0, -7.0, -7.0, -4.627665355034582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.84060787900929, -7.0, -7.0, -7.0, -3.961278679085043, -7.0, -7.0, -7.0, -7.0, -3.7712382882869084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.720572720364261, -2.924795995797912, -7.0, -7.0, -7.0, -3.992884745367121, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.146252102092995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5841049703994527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.817528644306543, -4.451929130760516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3969835082752007, -4.148795391897928, -7.0, -7.0, -7.0, -3.0930713063760633, -7.0, -7.0, -3.2008504980910777, -3.037027879755775, -7.0, -3.6029277128591892, -7.0, -3.3384564936046046, -7.0, -3.335808805235897, -7.0, -7.0, -7.0, -7.0, -7.0, -3.737113094305961, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8972971220594963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.797613730153076, -7.0, -7.0, -7.0, -4.309587587448228, -7.0, -4.229605059841376, -7.0, -4.708760723690316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.414639146737009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.281714970027296, -3.3120185940611497, -7.0, -7.0, -7.0, -4.6539132533085725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.465977368285823, -7.0, -7.0, -7.0, -7.0, -5.527203129014305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.855385878893443, -4.382323283381981, -5.875149271488847, -7.0, -3.7724684030532805, -7.0, -3.754806855354423, -7.0, -7.0, -7.0, -7.0, -3.7638022240745928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8003045775561985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1796838976987285, -7.0, -7.0, -7.0, -7.0, -4.996498538049875, -4.577997033811073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.528312379405361, -4.0948901970066505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.674576414677026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6109793799229974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.933720063988503, -7.0, -7.0, -7.0, -4.3592661646067485, -4.6779261695536105, -7.0, -4.43261658390379, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.990343295403774, -4.788567116513815, -5.706185039691581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.641126932803509, -7.0, -7.0, -7.0, -7.0, -7.0, -4.303854561999643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2975416678181597, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.795226346759703, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6361868951987244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.785835031358666, -7.0, -7.0, -3.9219984313082707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.503109436671369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2638726768652235, -4.392501545165524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.025439001182824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.224584853731531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8842287696326037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2567978962927286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4254527011208484, -7.0, -3.371756379183961, -2.8173449714419307, -3.232487866352986, -2.6450126734667045, -3.0075557586251014, -3.145341457592178, -7.0, -7.0, -7.0, -3.7223047868743278, -7.0, -2.945320840792275, -3.092896010921856, -7.0, -3.4926672826952765, -3.007114868333033, -7.0, -3.736157375273132, -3.709354775834396, -3.5298151966446305, -7.0, -7.0, -3.6621965517146178, -7.0, -7.0, -7.0, -7.0, -3.8260099777911005, -7.0, -3.28668096935493, -3.712481337801919, -3.366111523378347, -7.0, -3.0151440248451427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8967466156074058, -3.302330928684399, -7.0, -2.391625376623903, -3.8736692927067944, -2.30085762238055, -2.8062997077939285, -3.4424797690644486, -3.4577305482459986, -2.917272049269057, -7.0, -7.0, -7.0, -7.0, -3.453624073591451, -2.881332772835035, -2.6233818386918952, -7.0, -7.0, -2.3229485887456063, -1.8609019409522591, -7.0, -3.476203441669523, -3.243368813730389, -3.2657609167176105, -3.071520101773189, -7.0, -2.9968867645758572, -7.0, -3.2551116255008354, -2.111890968147374, -3.8295610562993927, -7.0, -7.0, -7.0, -7.0, -3.1931245983544616, -3.612306930268642, -3.8143142002074595, -3.8053649074664455, -2.6902460104127837, -2.8686444383948255, -2.817680315496243, -7.0, -7.0, -2.608763677622469, -3.510343901389912, -3.2490760036836117, -3.453573132944873, -7.0, -2.432458028047709, -3.4587133719337437, -7.0, -7.0, -2.8694170121245586, -7.0, -3.2477892042772956, -3.3135157072120407, -2.314895600408783, -2.6027017833676314, -3.27238316915648, -7.0, -7.0, -3.788239097382168, -3.205940800357829, -7.0, -7.0, -3.8360074591255313, -3.436374704897461, -3.953373050726696, -7.0, -3.11549956660232, -3.1161907409628373, -7.0, -4.06513137214021, -7.0, -3.7835631028395746, -2.497366198100159, -2.6962981293621393, -3.162564406523019, -7.0, -3.055378331375, -2.51382110743545, -7.0, -7.0, -7.0, -3.493086104087192, -7.0, -7.0, -7.0, -7.0, -7.0, -2.863804198383527, -2.796877747701869, -2.6225824008556593, -3.0750905299454705, -7.0, -2.5813166329516766, -3.7131544018372984, -2.8832557420069715, -3.7834747875822465, -3.904985881099363, -4.056752440567439, -7.0, -3.1308963782476624, -7.0, -2.1863088337034826, -7.0, -7.0, -2.4949492776471365, -2.585249170935557, -7.0, -3.7926717891415676, -3.503245771465113, -2.8555797225017177, -3.1499577088910593, -3.2131191388114564, -3.242008704084836, -2.9595864748926832, -1.1507786800078956, -2.694314664503264, -3.0390967104414504, -7.0, -7.0, -7.0, -7.0, -2.8838236063586025, -3.013342904345347, -3.161401280230616, -7.0, -3.5306387121215916, -3.71281800020785, -2.5976074408031, -2.9080297944208646, -7.0, -3.1298279460755056, -2.851105401197895, -3.3145693943004555, -3.1486643399822363, -3.8000981801747757, -2.583198773968623, -2.9353632928474607, -3.8003733548913496, -2.8722048488326677, -7.0, -2.093184973714775, -7.0, -2.6008448229987358, -3.2214142378423385, -2.811999807700087, -7.0, -3.3737786750385, -7.0, -3.4153072922255676, -3.748498126613737, -3.02201573981772, -7.0, -7.0, -3.3100982718561998, -7.0, -7.0, -3.152227171838142, -4.437877345621435, -3.1177498976848512, -7.0, -7.0, -3.7346398389876994, -7.0, -7.0, -3.4403579968152878, -7.0, -7.0, -7.0, -3.3274611093031417, -3.9597804954029976, -3.9844172881402207, -7.0, -7.0, -7.0, -7.0, -3.711047603867034, -3.7208205817703437, -3.8339117150713786, -3.50385874895841, -3.803115554890027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4334403772443878, -7.0, -7.0, -7.0, -7.0, -7.0, -3.752355804153501, -7.0, -3.4567454953479446, -7.0, -3.3392526340327, -3.127226318996642, -3.448087666692341, -7.0, -7.0, -7.0, -2.6539529402862674, -3.8285310066451013, -2.9656831619252855, -3.4583356259919475, -3.35061236261552, -3.767007363949804, -7.0, -3.4323277922616042, -3.8603380065709936, -3.229383167513614, -2.5942662377207433, -3.0399426187629923, -3.4619859715365204, -3.0969794945667846, -7.0, -3.020527012274563, -3.485579476984679, -2.533275081158002, -2.6897822691521336, -7.0, -3.4313637641589874, -3.787956123283932, -3.428701599623054, -7.0, -7.0, -2.9328541131019046, -3.517195897949974, -7.0, -3.0910804693473324, -3.497137064051958, -3.307406112562047, -3.01678967629609, -3.121067167467729, -3.078474943488153, -7.0, -7.0, -3.9318645134920316, -3.340311889391722, -7.0, -3.4191293077419758, -7.0, -3.820398522703982, -3.6033609243483804, -7.0, -3.6820201893903968, -3.4805099729419604, -7.0, -7.0, -7.0, -2.7839876064533984, -3.041836622994272, -2.959756672990995, -3.4510184521554574, -7.0, -7.0, -3.5299434016586693, -3.73917663191073, -2.8386242424371755, -3.7563317673210577, -3.1720188094245563, -3.6452257115354163, -3.7563317673210577, -3.0641345304339667, -3.316958297346295, -3.4780471080710216, -7.0, -3.7353992699626937, -3.024059030718059, -3.0720864292830243, -7.0, -2.7254661258631927, -7.0, -3.3071214846498904, -4.03181227133037, -3.520134035100441, -7.0, -7.0, -7.0, -3.5543680009900878, -7.0, -7.0, -7.0, -3.9586594270529334, -7.0, -2.668756154146636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.273147942319154, -4.150434052241625, -7.0, -3.8615045408853748, -3.1422168015774887, -7.0, -3.9362120443202486, -4.0935792634395645, -7.0, -4.540529679695608, -4.154271775993095, -7.0, -4.41355959230525, -4.247148059443245, -7.0, -7.0, -7.0, -4.697197946843088, -7.0, -3.473588022310713, -3.763253242238571, -7.0, -4.700599889320824, -7.0, -7.0, -3.6607841925779394, -7.0, -4.717870132737748, -7.0, -7.0, -7.0, -7.0, -7.0, -4.041655814207112, -3.9990652616597355, -2.943751272633304, -7.0, -3.480826709583002, -3.5915815730415983, -3.137072650257898, -3.9634572601167077, -3.812445402872756, -7.0, -3.1709836240531404, -2.9562885174336575, -3.4136908442354623, -7.0, -3.1775139549882887, -2.987633166996761, -7.0, -2.611410087031918, -3.5756496147552195, -3.7204900684500517, -4.036908222920219, -4.451356532162689, -7.0, -7.0, -3.052004367218563, -3.3208973293592754, -4.348632429022909, -3.730862992046494, -3.0247592390353963, -7.0, -3.458605805035887, -7.0, -3.981823638939474, -3.520928734708947, -4.3257413721537965, -7.0, -3.8069257768837317, -3.8023084048433162, -4.036741978159807, -3.461048091670658, -3.623889919047242, -7.0, -3.331681605284793, -3.594331152979141, -3.75815462196739, -2.9565309447935024, -3.722414526478677, -3.9181352261663593, -3.9092999920457463, -7.0, -3.330768775572884, -3.70091514151692, -3.910375352215901, -7.0, -3.711975854351756, -7.0, -7.0, -7.0, -3.356433813056529, -2.5378820317420177, -2.8671181483544954, -7.0, -7.0, -3.3842230394187056, -7.0, -3.523226041965701, -3.7280289544205187, -3.232021452903135, -7.0, -3.3967093741958863, -3.1646997561706938, -3.449478399187365, -7.0, -7.0, -7.0, -3.268297087223767, -7.0, -7.0, -4.027512692448811, -7.0, -3.456973013635818, -3.811038508604216, -3.204337075628155, -7.0, -3.5721452356121848, -7.0, -7.0, -7.0, -3.5788380110719613, -4.041497955909414, -7.0, -7.0, -2.439891652622822, -7.0, -2.57611089412084, -7.0, -3.098782124314692, -2.9891788795202707, -7.0, -7.0, -7.0, -2.7150278702988717, -3.4988157877634483, -7.0, -3.5046747087698833, -3.1741325234191096, -7.0, -2.7726550358373743, -2.77509442444802, -4.307945075845931, -7.0, -2.6299458313993953, -2.4655480766670377, -7.0, -3.571685544616966, -7.0, -7.0, -7.0, -3.3545565944718043, -2.975226868144468, -2.922610138162019, -3.93379088414342, -7.0, -7.0, -7.0, -3.7453871213200087, -7.0, -7.0, -3.1337943006045124, -2.864431967389915, -7.0, -7.0, -2.6543771120020185, -2.640150040936102, -2.902447941243036, -7.0, -3.0940166811204226, -7.0, -4.004450352989225, -7.0, -3.343098976544499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4630713808122473, -7.0, -3.682224072862761, -7.0, -3.5831760948134486, -3.29903853947173, -7.0, -2.9681909858660296, -7.0, -3.3316971703724616, -7.0, -2.751712027576497, -2.8530895298518657, -7.0, -7.0, -3.2072303098483532, -3.773640193260026, -3.4695716724419987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5640344779100492, -7.0, -7.0, -7.0, -7.0, -7.0, -3.43568513794163, -7.0, -3.7453871213200087, -7.0, -7.0, -3.28807525427587, -4.018908444316327, -3.66133934000604, -7.0, -7.0, -7.0, -3.745465168670727, -7.0, -3.256849986066561, -3.28004693749461, -3.453547660380749, -7.0, -7.0, -3.857995495560924, -7.0, -7.0, -7.0, -7.0, -3.9623219727295846, -3.4978277360835044, -7.0, -7.0, -7.0, -3.604657972047871, -7.0, -7.0, -3.6239725120169965, -2.8206119069993245, -3.2218487496163566, -3.02201573981772, -3.0501863496753607, -3.387846514512132, -7.0, -7.0, -7.0, -2.6703816337480153, -2.8993169979180546, -7.0, -2.026474895531622, -3.6006462356623947, -7.0, -7.0, -2.847229804082146, -2.9377492894912, -7.0, -2.2377255117151944, -2.649838831877486, -2.3944516808262164, -2.790385706800655, -7.0, -2.271299367747906, -2.243658026638696, -7.0, -2.1863683671103558, -2.1389524923183503, -3.13840796891747, -2.2323607123535703, -2.9454685851318194, -2.1731074848325744, -3.0270436588491743, -3.520418023353549, -7.0, -2.56147407266352, -3.6405808064896528, -3.1928675433117966, -7.0, -3.0471774810216448, -3.758306181725307, -2.90803798386038, -2.723236690821973, -3.3361594264847807, -2.8964343519192703, -2.4659644526568525, -3.2133406385265157, -2.8227400033286365, -2.8290720873190467, -3.0246908623554307, -2.5306516175798683, -3.036273934588904, -7.0, -3.3638938977741004, -2.8980392005877604, -3.1915441607348294, -3.198931869932209, -3.2000292665537704, -3.617000341120899, -3.0573807905423553, -2.8607571230815423, -2.970169052064559, -3.620760489994206, -7.0, -3.183056203693958, -7.0, -3.476203441669523, -7.0, -7.0, -3.797059694699971, -3.631570588836501, -7.0, -3.164427214911732, -7.0, -7.0, -2.663386788318517, -7.0, -2.791590407939026, -7.0, -7.0, -3.6611498572447867, -7.0, -2.546542663478131, -2.3138672203691537, -3.722057771331464, -2.858048190695858, -3.5460488664017342, -3.670245853074124, -3.3109056293761414, -7.0, -3.7945577512547617, -3.4282968139828798, -2.452224674191046, -2.4692917058468566, -7.0, -3.293288876794244, -7.0, -3.002274081774949, -7.0, -2.9987621687240558, -7.0, -2.695043658821294, -3.7044936970092985, -2.9396301693557567, -3.2622770206322533, -3.3525683861793083, -3.6317480743965693, -2.909912446562701, -3.4000196350651586, -2.912159514124199, -2.973681918503984, -7.0, -2.580696939712437, -2.525538393658412, -2.3737476670376476, -3.674952948048565, -2.6521047694008844, -3.3181929127898804, -3.652922887567942, -3.5440266810013323, -3.6572471298837166, -3.292996875989236, -3.212098782544173, -2.4391953457956252, -3.881897973573011, -3.6163704722912695, -7.0, -2.4090036338875827, -2.9122884979739743, -7.0, -3.6061663146076204, -2.3255221789694747, -7.0, -7.0, -3.6045500325712614, -7.0, -7.0, -3.1997551772534747, -2.950364854376123, -2.428772704799911, -2.474788422887191, -7.0, -7.0, -7.0, -3.3268476989159903, -2.7910763089412547, -4.174844493655455, -3.1664301138432824, -7.0, -7.0, -2.5472065049379498, -3.407900540142635, -7.0, -7.0, -7.0, -3.7051792448736762, -2.661917803408258, -7.0, -2.4167236975467343, -2.577204473011063, -2.3397090190622074, -2.9554472105776957, -2.4519831357776205, -2.943247125137862, -7.0, -2.815008832325241, -7.0, -7.0, -7.0, -2.459863471952342, -2.9355072658247128, -3.6287974855667104, -3.6073477767684134, -2.8458273340259437, -7.0, -4.054019036112275, -7.0, -3.468691871867676, -2.776800033307582, -3.3713449830820985, -3.142285156167115, -2.6929056434314544, -3.2283147918655883, -2.7304886350318736, -3.71566914240099, -2.409208292317029, -2.410821614807109, -2.9370161074648142, -3.1160540087584403, -7.0, -2.6332557746341494, -7.0, -3.6201013378002385, -2.4403579968152878, -7.0, -2.7182940414897097, -3.0743099747196676, -3.6024940688072813, -3.189817712495049, -3.1746411926604483, -3.0169498130975607, -7.0, -3.6484575942825224, -0.9118469463399004, -1.1258855686751243, -7.0, -2.734727113894763, -4.419840141416905, -2.402957006685218, -7.0, -7.0, -3.634779458145952, -7.0, -3.1444704211395553, -2.6416723732246865, -3.614158709509175, -2.6089148379737113, -2.133764262253283, -2.106316175379106, -2.2463344173155235, -3.9998805525927055, -7.0, -2.792291610114955, -3.173186268412274, -3.3890774437923494, -2.825642453753319, -3.6173149332982937, -2.2329961103921536, -3.721645766289746, -2.763760658827693, -3.295786940251609, -7.0, -2.9177155165594932, -7.0, -3.2987439434824073, -3.137775961313472, -2.8216772586543666, -2.2995270207845793, -3.2996162399984135, -3.1277525158329733, -7.0, -7.0, -3.362105319293773, -7.0, -7.0, -3.06126394230025, -2.429074712716486, -7.0, -3.983265352566545, -2.587840431253855, -7.0, -7.0, -7.0, -2.7201233354998613, -3.1474444325481796, -3.0713526184134943, -2.5846138761717827, -3.076735399100041, -7.0, -7.0, -3.633367445117007, -2.5444923353895272, -2.9152558940469784, -2.4286861041401493, -1.8946411942600978, -7.0, -3.2338418642756133, -3.3601198615808054, -3.1389339402569236, -2.697839368218363, -2.807535028068853, -2.1779234306079442, -7.0, -3.3309208305952356, -2.418998673214926, -2.8496241248456595, -2.9424214699806175, -7.0, -3.060320028688285, -2.69915092268144, -3.216517771441886, -3.321598430465344, -3.236033147117636, -4.063958513056966, -2.639256561892579, -7.0, -1.8606208424532815, -2.9138138523837167, -7.0, -1.6713068485030702, -3.03734680356809, -3.3218054838575393, -2.926213785839081, -1.9343607038780624, -2.0702788512520054, -2.6917759089147046, -3.068853493671498, -4.274356727020315, -2.5331919553337, -7.0, -7.0, -7.0, -2.924044214618035, -3.0411670190154996, -1.842445540218536, -2.9570323163469383, -2.484157424365381, -2.7255032688593155, -2.6049199991419503, -7.0, -3.6316466629584196, -2.660201201380682, -2.4775734093486395, -7.0, -7.0, -3.4627894928053546, -2.6249224524783243, -4.057747916795115, -7.0, -3.290212746919529, -2.2386895205778723, -1.9566718738913946, -7.0, -2.3722674440956544, -3.6239725120169965, -2.639361960384033, -1.9842516874733798, -2.451439772483668, -2.5470050888796587, -3.1316186643491255, -7.0, -7.0, -3.153611638097534, -2.957798774929998, -3.063145637106638, -2.132160282103326, -2.858236335429513, -2.412361709359006, -3.598243191653623, -3.60422605308447, -3.933760534062559, -7.0, -7.0, -7.0, -7.0, -4.4340256963562465, -7.0, -4.327461109303142, -3.6959247197466625, -7.0, -7.0, -7.0, -4.747388499864813, -7.0, -3.3408405498123317, -7.0, -4.7051621193592945, -3.5424619110008715, -7.0, -7.0, -7.0, -7.0, -7.0, -4.274053883354042, -3.7344797894255772, -7.0, -7.0, -7.0, -7.0, -4.197370165202425, -3.776894806141374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.650015952471839, -3.197831693328903, -4.0029949671388145, -3.8485766745910306, -3.448513085427185, -3.9073038488339695, -7.0, -7.0, -3.8825245379548803, -2.846630059514878, -3.1243737864846297, -3.8917046762391827, -3.473778834646725, -2.8591552176390183, -7.0, -3.8880671134074367, -3.530498519797741, -3.014205413953746, -7.0, -3.956696564894651, -7.0, -7.0, -3.6846786877449325, -3.987705358606155, -5.232328494095948, -7.0, -2.298281123103342, -7.0, -3.9307962629833004, -7.0, -4.809330723851234, -3.888825118125633, -4.30224432095016, -7.0, -3.9125939977521056, -3.707555983235898, -4.330332589222979, -7.0, -7.0, -7.0, -4.014158125505415, -4.534863410548415, -2.8179429348797176, -3.244324706895344, -4.370628725694252, -7.0, -4.01192205783923, -7.0, -7.0, -4.34341844163964, -4.06619543102185, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0705787477018935, -2.3636871758895452, -2.7047532207811775, -7.0, -3.43568513794163, -3.230823445277533, -3.7768464086952993, -2.5968326345359145, -2.477637964455693, -3.1148967983141596, -7.0, -3.289247845781579, -3.0385633951393607, -2.750411959970989, -2.7997233564258357, -7.0, -7.0, -2.679908635894604, -7.0, -7.0, -3.2008960765643213, -7.0, -3.6641717053619307, -2.8246951871909625, -2.1998699333598113, -7.0, -4.140696552546415, -7.0, -3.620864475265121, -3.6794077057902967, -3.550228353055094, -4.210218162926443, -7.0, -2.622214022966295, -2.375071602059195, -7.0, -2.604023443105566, -7.0, -2.9344984512435675, -2.5209131930646254, -7.0, -7.0, -2.568861467689039, -2.5943925503754266, -7.0, -7.0, -3.0230053972499347, -3.6869935662646784, -2.3981329855611953, -3.1316186643491255, -2.9745774799800357, -3.9823617016331467, -7.0, -2.6688206148564593, -2.4158718443377936, -7.0, -3.398683876079538, -7.0, -7.0, -3.1540814545553224, -2.7985739217489467, -2.354764024955734, -2.9043097257675417, -3.873378736409141, -2.6316973716375482, -7.0, -7.0, -2.3221208040924033, -3.6754575416412085, -3.638289535414257, -2.754271868683459, -2.88024177589548, -2.855778668362647, -7.0, -2.686725621074542, -2.7240591863401407, -2.4358216226950797, -2.035316439045186, -2.8304786835886837, -2.104350519242735, -2.0655404049454833, -2.99563519459755, -3.155427138639798, -7.0, -7.0, -2.646047089387669, -2.4928677946121267, -3.2996162399984135, -7.0, -7.0, -3.671728088239558, -7.0, -3.618280588410313, -3.752969865029084, -3.9552065375419416, -3.286703412934269, -2.003831230105671, -2.846337112129805, -7.0, -2.822331563082315, -7.0, -2.2621750492444925, -2.8322959710584774, -7.0, -7.0, -2.948331446401186, -2.9042646112937147, -2.6449921835286525, -2.459675139563483, -7.0, -7.0, -7.0, -3.615739688619155, -7.0, -3.320146286111054, -3.994888795364911, -3.418135498425232, -2.147081481685561, -7.0, -7.0, -7.0, -3.6375897858387, -2.9646367037885013, -7.0, -7.0, -3.4140536750309463, -3.213623993416087, -3.9698816437465, -3.6050355490912556, -3.6582022533870147, -7.0, -3.8428587624452937, -7.0, -7.0, -3.265537737431737, -3.060697840353612, -2.8808135922807914, -3.839037873388306, -7.0, -7.0, -7.0, -7.0, -3.285932185579952, -3.608312042697327, -7.0, -3.111766433052562, -7.0, -7.0, -2.4616485680634552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6130038000973417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1747380145272865, -4.109275902653879, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.262943248490909, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.140913237373888, -2.6748611407378116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7701152947871015, -7.0, -3.2839954155220514, -2.3026971550314443, -3.595220566797657, -3.3059958827708047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.850033257689769, -7.0, -7.0, -7.0, -3.375846436309156, -7.0, -3.243368813730389, -7.0, -7.0, -7.0, -4.279807037467387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.419625360887743, -7.0, -2.8692317197309762, -7.0, -7.0, -7.0, -4.083835226301192, -7.0, -4.013553430541676, -7.0, -7.0, -2.7955324427101544, -7.0, -3.3544926005894364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.062863902110119, -7.0, -7.0, -7.0, -3.1374596122778238, -3.0129472051595405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.525821952156663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -0.9652378937407882, -7.0, -7.0, -7.0, -7.0, -3.8192367500217284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.45408227073109, -7.0, -2.214577685744348, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1341771075767664, -7.0, -3.370513089598593, -7.0, -7.0, -7.0, -7.0, -2.5599066250361124, -4.037080027547998, -2.5017437296279943, -7.0, -7.0, -7.0, -2.7715874808812555, -2.4191293077419758, -7.0, -3.136456317387437, -2.7693773260761385, -7.0, -7.0, -7.0, -3.5140797722102626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.168202746842631, -3.1374596122778238, -2.842609239610562, -3.650793039651931, -7.0, -7.0, -3.2610248339923973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7518562395924007, -4.353454583806043, -3.8436687229791437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2022157758011316, -4.464688218289176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2340108175871793, -7.0, -7.0, -7.0, -7.0, -7.0, -4.311986834619701, -7.0, -4.532104361451173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.953131225183445, -7.0, -3.8294967497201826, -7.0, -7.0, -7.0, -3.1065308538223815, -2.9553670010508437, -7.0, -7.0, -2.4456042032735974, -7.0, -7.0, -7.0, -7.0, -3.3066394410242617, -3.074607494534864, -7.0, -3.4095950193968156, -7.0, -4.654276036237423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.050149592684926, -3.5596672783880576, -7.0, -7.0, -7.0, -7.0, -3.122434336266318, -7.0, -7.0, -7.0, -7.0, -3.286905352972375, -2.808210972924222, -3.082156803810918, -7.0, -7.0, -2.998912904358786, -7.0, -7.0, -7.0, -4.972116595970914, -7.0, -3.1781852925373903, -7.0, -3.7633531087482153, -7.0, -7.0, -7.0, -3.2141813086638207, -7.0, -3.707485011967474, -3.2880255353883627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3271545124094315, -7.0, -2.9815440587012345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.711224968619355, -4.369939079029239, -7.0, -7.0, -4.402204046065145, -7.0, -7.0, -7.0, -4.717420836722375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.387653171001787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073498398717262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.61217966137758, -7.0, -4.668637473671116, -4.220294921547735, -7.0, -7.0, -7.0, -7.0, -4.536050627244502, -7.0, -7.0, -7.0, -4.359802292628766, -4.201797546736893, -7.0, -4.434425179874951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9907649470287008, -4.487682670658282, -5.1042164465018764, -7.0, -3.6722826247889206, -7.0, -7.0, -7.0, -5.405078152192411, -7.0, -7.0, -7.0, -7.0, -7.0, -4.781504057208732, -7.0, -7.0, -7.0, -4.897286118766272, -7.0, -7.0, -4.243717497987774, -4.955129493993415, -7.0, -5.046175081023443, -7.0, -7.0, -4.60612329172563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.466393046361356, -7.0, -4.178775572045411, -7.0, -7.0, -4.338914452663329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5949447366950835, -7.0, -7.0, -7.0, -7.0, -3.3461573022320086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5010592622177517, -7.0, -4.0042783722001625, -7.0, -7.0, -4.59446989873833, -4.792885243796325, -7.0, -7.0, -7.0, -3.9278321328665817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.147985320683805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9778607292646972, -7.0, -7.0, -3.5182506513085, -7.0, -7.0, -4.14035088925253, -7.0, -7.0, -7.0, -7.0, -4.267771891925815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7834952158370023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7239479764316434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.391975460609762, -2.9609461957338317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6748611407378116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8606374167737547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.267406418752904, -3.531606631932722, -3.4168068718229443, -7.0, -4.130759811444055, -2.853819845856763, -7.0, -7.0, -3.132727533383866, -2.7689959478018795, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0138809162279236, -3.68497993618928, -7.0, -3.519302849235429, -3.4947480952818424, -7.0, -7.0, -7.0, -3.608312042697327, -3.0484418035504044, -7.0, -4.0992373747636766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.922379406594948, -7.0, -3.6290016192869916, -3.44216608578472, -3.340961266701331, -7.0, -7.0, -7.0, -3.035829825252828, -3.103666913746792, -7.0, -7.0, -3.4119562379304016, -7.0, -3.0941215958405612, -2.9785268191885237, -3.6774244377012475, -2.7432919531576356, -3.4363217001397333, -2.7506626461340558, -2.7007037171450192, -2.044670394919461, -7.0, -7.0, -7.0, -7.0, -2.9947569445876283, -7.0, -3.4798343413193606, -7.0, -7.0, -7.0, -7.0, -3.2657609167176105, -3.797059694699971, -7.0, -7.0, -3.1867669738313062, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3047058982127653, -7.0, -7.0, -7.0, -7.0, -3.7067177823367587, -3.1358479320466763, -7.0, -7.0, -3.0733314645210617, -7.0, -3.1912763113441907, -7.0, -7.0, -3.18789657069281, -7.0, -3.3408405498123317, -2.9853516150839536, -7.0, -2.8252367353400705, -7.0, -7.0, -7.0, -3.014138539892673, -7.0, -3.6399842480415883, -2.8392265740134355, -2.5378890241422445, -3.111027151026175, -3.4628470358316736, -7.0, -7.0, -2.9315849874708, -3.2723555547531853, -7.0, -7.0, -3.139144150562046, -3.039176084376041, -2.9509209293328924, -2.7157248604691793, -2.971224291252213, -3.2005769267548483, -7.0, -3.949390006644913, -7.0, -4.0994173263705065, -7.0, -7.0, -3.000434077479319, -7.0, -3.4727564493172123, -3.4953857346114607, -3.3932241163612975, -7.0, -7.0, -4.102210669420494, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6254839394069043, -7.0, -3.255942196033082, -7.0, -3.4750898033890065, -3.377533904520968, -7.0, -3.4222614508136027, -7.0, -4.125611371897464, -3.9384196457931933, -7.0, -7.0, -7.0, -2.941570583896654, -7.0, -7.0, -7.0, -2.9373925002214984, -7.0, -3.5423273827739745, -7.0, -7.0, -3.337459261290656, -7.0, -3.67728750108277, -3.564902672529205, -7.0, -3.536047063773486, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4234097277330933, -7.0, -3.537609240282091, -3.1319392952104246, -1.9220457546200005, -7.0, -7.0, -3.210603216024868, -7.0, -7.0, -3.4638183615294293, -7.0, -3.159065640479062, -7.0, -7.0, -2.9190780923760737, -3.5559404378185113, -2.891467764262818, -7.0, -3.119981307304154, -7.0, -3.56054423863114, -3.295127085252191, -2.338054216677949, -7.0, -3.840262964417612, -7.0, -3.8862650590297565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.959089114367392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.005652315355074, -2.9166794974939214, -3.7135185431250215, -3.8280100357953923, -7.0, -7.0, -3.1567005525820173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.350160762910063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.282848602834645, -2.623412528318222, -3.2306532471792218, -7.0, -7.0, -3.3769417571467586, -4.354780498831271, -7.0, -2.876013254340755, -7.0, -4.727354161057733, -3.1942367487238292, -7.0, -3.4307198878632823, -3.59402403573142, -3.395792186900733, -2.868174040859638, -3.855216194733363, -3.6471383660631504, -3.5491259267581112, -7.0, -7.0, -3.0541021198133644, -3.2069157827668575, -7.0, -7.0, -7.0, -3.5338991007965945, -7.0, -7.0, -7.0, -3.618048096712093, -3.240466042135798, -7.0, -7.0, -7.0, -4.359990334130061, -2.3846669680032564, -2.710286647702891, -3.549636657209407, -7.0, -7.0, -3.765668554759014, -7.0, -7.0, -3.712733859069952, -3.906981153228854, -3.590507462008583, -7.0, -3.0271456657743414, -4.1483731861540445, -3.369957607346053, -7.0, -7.0, -7.0, -3.406426624548381, -7.0, -7.0, -7.0, -3.656385719058688, -7.0, -2.908699432352224, -3.442009159140952, -2.0956447696312877, -7.0, -3.5094713521025485, -7.0, -7.0, -3.377018208642447, -3.3065075067992313, -3.885104366555775, -7.0, -3.9116369331294423, -3.664842196942971, -3.2965006536117496, -7.0, -7.0, -7.0, -7.0, -3.3029799367482493, -3.8587176148602915, -7.0, -3.3914644118391033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.166816084791104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.009695170852119, -4.192344395046124, -7.0, -7.0, -7.0, -7.0, -5.006183552012837, -7.0, -7.0, -4.69121414838279, -4.932585368076885, -7.0, -3.7495430810911663, -7.0, -5.391415037349662, -7.0, -7.0, -3.8656072985678236, -7.0, -4.67641923171836, -7.0, -7.0, -4.788281527598792, -7.0, -4.393610296355292, -4.3618033589256875, -7.0, -7.0, -7.0, -7.0, -4.180469961659198, -7.0, -3.332731257471133, -7.0, -4.085870083398395, -4.471218344307872, -3.2053848312193485, -7.0, -3.889413764042709, -2.667349166419893, -3.5773943798662415, -7.0, -7.0, -7.0, -3.741248952988005, -3.3550682063488506, -7.0, -4.166030272340217, -3.9333860419030544, -7.0, -3.611032559924521, -7.0, -7.0, -7.0, -3.6382461055317314, -3.8373625351400262, -4.929932111748548, -7.0, -3.83416628394262, -7.0, -4.362708610909318, -7.0, -4.129878070570166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7857330906965307, -3.92069713446992, -4.20980444773022, -4.036881628034608, -3.478854967528663, -3.748861243039218, -4.187041040042328, -7.0, -4.749264672310713, -7.0, -7.0, -3.6739828907278897, -4.336299595763418, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5935352716775633, -3.147882346295201, -2.803280043602782, -7.0, -7.0, -4.078184845714645, -7.0, -3.2960066693136723, -7.0, -3.1773055843418603, -7.0, -3.856171486902885, -2.9364419285916847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5744942682853273, -3.422589839851482, -7.0, -7.0, -7.0, -7.0, -4.617325415780569, -4.402292340957852, -7.0, -7.0, -7.0, -2.6079908585471747, -7.0, -2.6430936070305093, -7.0, -3.552303109338354, -3.1190798477344224, -7.0, -7.0, -7.0, -3.547774705387823, -7.0, -7.0, -7.0, -3.0356965038452106, -7.0, -2.979206813945708, -3.1106271156204817, -7.0, -7.0, -2.5276299008713385, -3.0181177205910004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.305376548576951, -3.382647303154711, -7.0, -7.0, -7.0, -3.9540494467635945, -7.0, -7.0, -7.0, -7.0, -3.316075234838397, -7.0, -7.0, -2.764015925386275, -2.7851542481914966, -3.4833733060890273, -7.0, -3.500118806417088, -7.0, -7.0, -7.0, -4.104418820647595, -7.0, -3.5363058723510337, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0126966535817883, -7.0, -3.775404112153162, -7.0, -7.0, -3.791538607647169, -7.0, -2.6317204190800085, -7.0, -7.0, -7.0, -3.5012647157334826, -3.340510212470853, -7.0, -7.0, -3.094587577089025, -2.425697213362591, -3.7287594751678745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8253352245089047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.171186702866917, -5.124556389206683, -5.124520526873732, -3.9203875026352017, -3.9489701484173123, -4.350535513994461, -2.701139315206785, -4.34699155667835, -4.17179793657363, -2.391440502375696, -2.652091427213589, -4.823484010467402, -4.280012209042916, -2.8010458579848145, -2.3710561097335447, -3.7469907758787473, -4.649120579881137, -7.0, -5.1250027903205355, -4.425697213362591, -2.645636799886457, -3.160248789529974, -7.0, -3.0508898095462333, -1.8998609842691896, -4.42791434984591, -4.084101592916174, -4.82346118709814, -3.57333261790251, -3.8487302293839014, -4.4267974435651265, -2.586151421082641, -4.42791434984591, -5.12490182000836, -7.0, -5.125838963995005, -3.953431068826028, -5.125334849623946, -3.5886877897295424, -4.823581811323984, -3.750138611466349, -4.046433378005417, -1.841009074133296, -4.647995506133741, -4.52391222124351, -3.4308036457839908, -4.826253021326406, -3.2123937280004866, -4.523502595313213, -3.848004271497268, -3.3134549624770786, -3.8262724589346937, -4.0495507250485385, -1.9647977618083874, -3.4786145875580035, -2.4708075407867027, -3.1692803856500626, -3.482135929640315, -3.176549710043248, -3.0040838491714963, -3.3481133157724337, -4.047654465673549, -4.348762286659855, -5.124934393641766, -3.524022689062766, -3.566596726075971, -2.5511869560030376, -5.125051638496985, -3.869397971828717, -3.4149508617276534, -4.647441654593042, -3.071520101773189, -3.631570588836501, -4.279807037467387, -3.1867669738313062, -7.0, -4.221720613843239, -3.7153250321246345, -7.0, -3.5688826280523136, -3.0894340761633927, -2.4418216806864157, -3.9213808014591756, -4.823392709792886, -4.052838169905007, -4.047122285721037, -3.6014816115028383, -3.307904563405097, -3.572510184908823, -4.225474049711422, -1.7736859244554088, -3.1513826204220323, -2.779870361623134, -4.52270499273475, -7.0, -3.3117313914325637, -3.9826911065162727, -3.3452001259285136, -3.242885302889625, -4.648060618726541, -2.387479259110591, -4.223418056905294, -5.124566169329008, -5.124514006131383, -3.0152832517428707, -5.124693290881075, -3.5991571438616687, -3.4842027432890195, -2.9183226925562056, -2.264955158191548, -3.534813360783814, -4.280262842742384, -4.349173880325218, -4.013789746051142, -2.736521429176014, -4.825763554850498, -7.0, -3.9539335679488627, -3.85554784627362, -3.3806776672430363, -3.980642810952581, -2.5252549034751532, -2.1347678864147865, -4.427099681298999, -3.1233444347665715, -4.8252053439881974, -2.5516803258246297, -3.826227103162004, -3.5408201976350564, -3.4197937628984563, -5.124914849754901, -3.2998389155298993, -2.625515371611312, -2.836995242610448, -7.0, -4.3464181789371965, -3.0107294403814318, -7.0, -7.0, -4.823516613200129, -4.010922633882727, -5.124520526873732, -3.4574761639890332, -3.7599321174298512, -2.7459174483529494, -3.100512820133382, -4.223259000239877, -3.9710097463947083, -4.823607887833184, -3.8029332792535846, -4.013572858585068, -4.044795967995919, -3.2807186599586955, -4.279402924338703, -3.7828893885304504, -4.427456895479942, -2.096115598928591, -7.0, -7.0, -3.5608723738571255, -3.4116261801916856, -7.0, -2.134475182044132, -4.2834272333748435, -4.529109391761361, -4.016785926566524, -4.527020559229423, -2.9447122983382803, -4.283478917025045, -4.084501533208011, -1.7147986755227513, -4.648529141437505, -7.0, -7.0, -4.085112113266837, -4.523434286746437, -3.7634345046757764, -4.221502261586565, -3.2515550585595285, -2.8813324763375916, -3.1985797729065455, -7.0, -3.516444079673956, -2.0690863582010253, -4.427774893545752, -3.5470864564155895, -3.309006939379298, -4.127923999167784, -3.750379810251768, -4.225225258296776, -4.049857360679732, -3.8969442305579918, -4.049121071116725, -2.7168886258833527, -3.8704721852071455, -3.168902815780035, -7.0, -3.182337940122092, -3.9252895251371474, -1.8963541694238766, -5.125116760853404, -2.864649595666176, -7.0, -3.4976991031806923, -5.126069685635017, -3.3798524128035847, -5.125481265700594, -3.7640753714025683, -3.2212162075895296, -3.561890702670256, -7.0, -3.497186893442444, -3.849148488594488, -3.5773799979362595, -7.0, -7.0, -4.648363264110934, -4.647614401744664, -4.42609465941348, -4.523700954526099, -7.0, -4.523993450315614, -3.6302799104626615, -3.544096678207317, -3.1690566355150636, -2.1441570579455176, -7.0, -4.523541623956646, -4.084563279775527, -3.8968535332204013, -4.823526393542703, -3.78238466183098, -3.561575147188933, -3.3020917459175094, -4.52642328456597, -7.0, -7.0, -7.0, -4.648174542279039, -5.124416183245597, -7.0, -4.526681666309884, -2.785458363992269, -7.0, -7.0, -7.0, -3.89470365260923, -4.012428360872589, -4.5241526152390925, -7.0, -3.9502869470332103, -4.138492167149976, -3.6518431337680632, -2.4131862807290165, -3.245859240421096, -4.5267882040115675, -4.647630695099381, -7.0, -2.848226019879913, -2.873310911959824, -1.6657036520711483, -5.126537252055469, -2.805990780131231, -2.716964695235721, -2.909405985706936, -4.046199160534498, -2.812281362367997, -3.3479277621718744, -2.607009269756605, -3.067133927073089, -3.010730096257863, -3.6808597696765273, -3.5463575553634143, -5.124918107130456, -3.9815306209819914, -3.700825458898945, -3.7166389013459673, -7.0, -4.125354374619764, -4.525718413121268, -5.125305560484238, -4.1285252733891005, -7.0, -3.053849650809775, -3.088567471385042, -3.9233249878275025, -3.368104059853412, -4.086819124358255, -2.536731083478206, -2.653218720154461, -4.346871079866792, -2.8545180087460724, -4.52275060950722, -3.9804611371420555, -3.453990033784266, -3.666624475507377, -3.365948058893356, -3.306901713537009, -3.6652963707912574, -4.226200221973549, -3.903316655096336, -3.2379334435875635, -2.463913596053034, -2.952590661466377, -4.647373188597217, -7.0, -7.0, -3.0723693163406582, -3.2908674032554646, -5.125663403464531, -4.524146119853344, -3.4876589081344687, -4.6482103406529705, -3.44832298764699, -2.9071311224233356, -2.917967138181485, -5.126400930507611, -4.0479397570328395, -3.380220765608974, -4.524321461179261, -1.5711782528254215, -2.636810067102488, -1.8116883655674934, -4.172135696649566, -3.2731827770487643, -2.3883102514566867, -3.040978874281845, -7.0, -4.649785797412952, -4.5230730485888655, -3.5541447248133005, -3.0810935899469842, -3.015252577465673, -3.6525750809701454, -4.647558999765845, -7.0, -3.0773293096211045, -7.0, -4.524172100813481, -4.825497520557007, -3.73916396315401, -4.824545600914718, -2.2535578812749155, -5.124364002028919, -4.823506832637296, -3.42935099788424, -3.278284880374089, -3.4638097498438154, -4.659453466445408, -2.889781425369628, -3.570642996208087, -3.891673714695143, -2.959675565620754, -2.3604720822618974, -3.737855998205046, -4.834767110869274, -3.4680802174026253, -3.3639197310923956, -2.6581522930956862, -3.2828435144698207, -3.4885168740534303, -3.127307918247353, -3.3178444461454073, -3.694269250936293, -3.863127341104386, -4.021103386169764, -2.982230839189202, -3.9016733648001973, -3.0395263052541535, -3.1014063406271877, -3.447220068979908, -3.0022344165281387, -3.7079370718550817, -5.13021472332266, -2.7611418053448147, -3.468483210827674, -3.0430294039698493, -3.5634726096192386, -3.480754677678501, -7.0, -3.8597865518865944, -3.9708085142876324, -3.662846839441356, -3.5790797156168574, -2.2878320147549918, -4.34868446133753, -3.0127887570435066, -2.716334138671556, -3.391247815367535, -3.2920407700035588, -3.040763348421484, -3.5986263846416544, -2.104594825392442, -3.2090303669607603, -3.9868740596438528, -3.592122572182833, -2.174932377602814, -2.688079627476112, -4.22511535697073, -2.7764617563695646, -3.280406843747666, -5.124931136388365, -3.4705168322128936, -2.664594552988194, -3.961753214186783, -4.427901379055738, -2.1651144697096663, -2.207049609429497, -2.398676368633677, -5.125344612231581, -3.99247461688504, -4.824581376233483, -2.5879341741548614, -3.7107064345118013, -2.309152289779365, -3.2356216202519827, -3.049287989292018, -4.823624184856377, -3.0822339210963783, -3.169573755223163, -2.57570289904199, -4.021920461493033, -2.7883027995907916, -3.7118821817068475, -2.6276481114978902, -2.9452556043235774, -4.825442346705323, -2.388176642312316, -2.614008118910353, -4.093227419114197, -2.1828985513030816, -4.2225636610285875, -3.6583040093579355, -2.5624768485650953, -3.0586286357672274, -7.0, -7.0, -5.124347694112854, -7.0, -4.361403567658646, -2.4419703231780603, -3.6988541770298506, -2.2873217580833582, -7.0, -4.174905787979731, -2.6349370993059553, -3.5743657065242562, -4.088074848055238, -5.12523070148519, -3.2109508249954035, -7.0, -2.961686186921197, -3.3229377518009224, -4.281023622310831, -7.0, -4.050697945784732, -5.129796197569744, -3.6605524456117786, -7.0, -7.0, -3.799619335919808, -5.126092426202353, -4.825442346705323, -3.456485559127413, -3.4803295879249125, -7.0, -3.3161284299147518, -7.0, -4.124996276815198, -3.3436156038671037, -2.6948003131206746, -3.1381861986579302, -7.0, -5.131955320541395, -2.8525354413843815, -5.126910294600161, -3.4508807115632663, -7.0, -4.128218274974031, -2.343836681055772, -7.0, -4.647962946176167, -4.528739991281119, -3.897604454353708, -3.456897187449348, -4.648798963271332, -3.98241985006465, -3.679953248981408, -5.126222349463532, -3.6817579471116177, -2.5414995135598417, -4.092182412910935, -7.0, -3.471186441854217, -3.4343069710353125, -4.4305716611898776, -2.697931199339346, -7.0, -7.0, -4.068776273957364, -3.9836971497497697, -1.948236494735222, -3.7342428077758956, -3.8345001792937783, -4.128189179657028, -7.0, -3.765125036304772, -7.0, -3.8631067550339733, -5.125611371897464, -3.95379511660877, -2.9354478045109147, -4.650702451094931, -7.0, -3.0557479410565587, -1.9161042138199231, -3.2220245503322613, -4.130420618706655, -2.8291585566933986, -3.831261720302822, -3.6931174038890284, -4.173296366404801, -3.091736676786907, -3.836612072683855, -7.0, -4.428371322869534, -7.0, -5.124442271503, -3.3466239745960986, -4.655167258709841, -3.5583063198302427, -4.052924683707729, -2.272527237654037, -4.2847271454137505, -3.4687489409171475, -2.869859699265831, -3.4746849021732746, -3.407413353850794, -7.0, -3.786228560690241, -7.0, -3.483672863806311, -3.1978285278826197, -4.837541092506384, -7.0, -3.9245990727152424, -3.313825053809394, -2.9176989407505602, -4.825526727405714, -7.0, -7.0, -7.0, -7.0, -5.12471610363175, -5.125071176229265, -3.2619668131766253, -7.0, -4.088039388997349, -4.648665698738682, -4.427145161242989, -5.125129784152959, -4.824552105737333, -4.649351087649642, -4.648805462934326, -3.875546758345239, -4.429348472923662, -3.618783009440332, -3.8626522704255013, -3.8151633044075393, -5.126274307886984, -7.0, -4.020016872748719, -4.426946963787001, -7.0, -3.081241379736605, -4.348265911123662, -4.649198511689143, -3.9296264433432477, -4.654577589539578, -4.176965401689464, -7.0, -5.1250386128538095, -4.528225519543581, -7.0, -4.137442733854849, -4.128250600818072, -5.126835711721174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.204201405238153, -7.0, -7.0, -7.0, -4.190891716922169, -4.207391977978488, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335257256434532, -7.0, -7.0, -3.046982642758214, -4.571686709006209, -7.0, -7.0, -7.0, -3.2803506930460054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.026809737140006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3878345723908105, -7.0, -7.0, -7.0, -3.9074436091675, -7.0, -3.8948696567452528, -7.0, -7.0, -7.0, -3.111262513659065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.146949316052184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.221720613843239, -7.0, -2.2752066169356358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7148325124333326, -7.0, -7.0, -3.2203696324513946, -7.0, -7.0, -4.27567727232233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6642187553031396, -7.0, -7.0, -7.0, -7.0, -3.7728166083744408, -2.396780343144799, -1.8087172420492474, -3.0538464268522527, -7.0, -3.904571297338501, -2.9822712330395684, -7.0, -7.0, -7.0, -3.614158709509175, -7.0, -4.168173262170234, -3.8499258976209467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5871494982543437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.429752280002408, -2.1083394747888384, -2.1089031276673134, -7.0, -7.0, -7.0, -3.6679196853173615, -7.0, -7.0, -7.0, -7.0, -3.080987046910887, -7.0, -7.0, -7.0, -2.432969290874406, -7.0, -4.062456628625647, -7.0, -7.0, -3.2392994791268923, -3.119915410257991, -7.0, -7.0, -7.0, -7.0, -3.342620042553348, -3.2229764498933915, -3.867113779831977, -7.0, -7.0, -3.451784900912102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.469822015978163, -3.436374704897461, -7.0, -4.276392863069535, -7.0, -7.0, -3.628662627657154, -7.0, -3.6610550848533787, -3.263399331334002, -7.0, -3.3384564936046046, -7.0, -7.0, -7.0, -7.0, -3.6121478383264867, -7.0, -7.0, -7.0, -7.0, -3.2545480771089736, -7.0, -7.0, -3.766933093837284, -7.0, -2.7424894645817752, -7.0, -3.1622656142980214, -2.4409090820652177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2576785748691846, -2.0969100130080562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.712822206836856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2907022432878543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941695248372151, -7.0, -7.0, -7.0, -1.0907351059240402, -2.0201540316383326, -2.1914510144648953, -7.0, -7.0, -7.0, -3.2271150825891253, -7.0, -3.502358829319632, -2.9022749204745018, -7.0, -7.0, -4.311414767162359, -7.0, -4.230704313612569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.919601023784111, -7.0, -3.0972573096934197, -3.4287825114969546, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3307035928340225, -7.0, -7.0, -7.0, -7.0, -2.4995152549279713, -2.4496326504700745, -4.353140126440264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.231214647962601, -3.9466487339066765, -7.0, -7.0, -7.0, -7.0, -7.0, -5.050132180393049, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.554864538285933, -4.082803315998645, -4.920947286097199, -7.0, -3.778729923996112, -4.540738128377243, -7.0, -7.0, -2.998695158311656, -7.0, -7.0, -3.4690115586556876, -3.7051792448736762, -3.2819419334408244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.625621081424908, -7.0, -3.655303117041215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.588361358384558, -4.879193398354936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.671765079379814, -7.0, -7.0, -7.0, -7.0, -5.086571586596441, -7.0, -4.5294175204160725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6118931699365255, -7.0, -7.0, -4.46325450995035, -2.9191362269698162, -7.0, -7.0, -7.0, -4.757841230761179, -7.0, -7.0, -7.0, -7.0, -4.377661338348732, -7.0, -7.0, -3.8080082999104, -7.0, -7.0, -7.0, -7.0, -7.0, -4.990725018635123, -5.487669954658609, -5.405226797459939, -7.0, -7.0, -7.0, -4.954546409224138, -7.0, -7.0, -4.0693350347899395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.790988475088816, -4.4199942773430445, -4.48447067570193, -7.0, -4.94259333559316, -7.0, -7.0, -5.347156262771363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9888115530228063, -7.0, -7.0, -7.0, -7.0, -3.639247362265076, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7958244240923475, -3.591954555046735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.093764782337062, -7.0, -7.0, -7.0, -3.9264453478183894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4871383754771865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5687725829029615, -3.42781057267599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.778585327862962, -4.151277893904123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.049579784025463, -7.0, -7.0, -4.543894291804688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.506505032404872, -7.0, -7.0, -4.495544337546448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9966575799270623, -7.0, -3.091842749738098, -3.136363119800208, -7.0, -7.0, -7.0, -3.759592308645975, -3.074913914437954, -3.4565178578052627, -7.0, -7.0, -7.0, -7.0, -2.81107205910691, -3.6657216683873965, -7.0, -2.2824521678624317, -3.2268529290267938, -3.4353665066126613, -3.3634239329171765, -7.0, -2.958085848521085, -7.0, -3.075364446373285, -4.096811561767263, -3.4353665066126613, -3.3236645356081, -7.0, -2.9014583213961123, -7.0, -2.872350544494723, -2.3375068005038724, -7.0, -3.1063042456868444, -3.0692980121155293, -3.5125013439997756, -3.036429265626675, -7.0, -7.0, -7.0, -2.8693784160613367, -7.0, -2.2246625288410296, -7.0, -2.9822712330395684, -2.8198070645907563, -2.600713913579715, -2.5209367884596894, -2.775928862409032, -2.7432297012106934, -7.0, -3.113943352306837, -3.6351820486562674, -2.4653828514484184, -7.0, -3.4371160930480786, -3.0242803760470798, -7.0, -7.0, -3.1512092788693664, -2.7297720531082863, -7.0, -3.61066016308988, -3.3025473724874854, -2.9968867645758572, -3.164427214911732, -7.0, -7.0, -3.7153250321246345, -2.2752066169356358, -7.0, -7.0, -7.0, -2.8778031216951354, -3.5582284218033258, -3.3656751404559175, -7.0, -2.005139639652411, -2.363441031461713, -2.462397997898956, -7.0, -2.829303772831025, -7.0, -3.008209698949563, -3.0002604985473904, -3.4776637838119564, -3.0147304950017535, -7.0, -7.0, -1.7611489310114437, -3.5983527098692836, -3.032054375479669, -7.0, -3.592981289228694, -7.0, -7.0, -7.0, -1.7653164119053328, -2.529986128254395, -3.596047007545439, -7.0, -2.722409538916368, -2.402192577878823, -3.093596768608228, -2.750893920382125, -1.8104200911977855, -7.0, -2.4356376970250344, -2.347167327739883, -3.295786940251609, -7.0, -2.748532568461719, -3.766710207262259, -2.5856218478490254, -2.386858189007188, -3.084255949562787, -7.0, -7.0, -3.401228167498113, -4.523612083458387, -3.4578818967339924, -3.160368474792848, -1.9990514132044512, -7.0, -7.0, -2.6971482117148518, -3.0532705666813786, -7.0, -7.0, -3.9188163903603797, -7.0, -7.0, -7.0, -2.3688032260423766, -2.4511282472469036, -3.61083753474107, -2.993939833374049, -3.420808088286559, -3.805228914203426, -7.0, -7.0, -7.0, -7.0, -1.9009736852940384, -7.0, -3.9168748785386835, -7.0, -3.0555694400609896, -7.0, -2.9801349922898255, -3.3044905277734875, -7.0, -3.539828558377898, -3.0064660422492318, -7.0, -2.8836614351536176, -7.0, -3.004858534620329, -2.8153563389481215, -2.487780918103498, -2.70190362530154, -2.9092885241622506, -2.782830805202592, -2.5797192473872097, -2.8915374576725643, -7.0, -7.0, -3.116939646550756, -2.66029616027073, -3.348499570283838, -7.0, -1.8784410040430806, -7.0, -4.3144571227346775, -7.0, -3.8330195470765314, -2.0673740307786943, -2.383815365980431, -1.3078058731216846, -1.7636775163976688, -2.2012533420043217, -1.81601260357686, -7.0, -3.532117116248804, -3.161966616364075, -7.0, -3.1627883658654485, -3.0788191830988487, -7.0, -7.0, -4.020775488193558, -3.246252312299322, -4.070665753453728, -7.0, -3.826884298707612, -7.0, -2.4114994527485885, -2.1558716525157724, -7.0, -2.073235854482803, -7.0, -7.0, -7.0, -7.0, -2.642684304903646, -3.041894884169058, -3.2391993420543015, -7.0, -1.738100733954366, -2.8819549713396007, -2.8359018556035758, -7.0, -3.0746336182969043, -7.0, -2.7890516223748403, -2.2751984011530757, -3.2525294136162577, -3.7015967643861063, -4.714261004983581, -7.0, -3.366982975977851, -3.0879587894607328, -2.6794278966121188, -3.3016809492935764, -3.326335860928751, -2.564192460626198, -3.511214701136388, -3.50745106090197, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3224260524059526, -3.2168254232660476, -2.907753267261719, -7.0, -7.0, -7.0, -3.044147620878723, -1.6532125137753437, -1.098813717788014, -3.290034611362518, -3.111766433052562, -7.0, -2.5774917998372255, -3.1813289870897337, -1.753216579694992, -1.8477871785250382, -3.0134692323091703, -2.9912260756924947, -3.141939450396649, -2.7097543943577977, -2.8800956594900637, -7.0, -3.3433347279168006, -7.0, -7.0, -2.8792870723193187, -4.055531225050898, -3.2455743529902925, -3.027879409207207, -2.7134905430939424, -7.0, -2.891398059667226, -3.1072099696478683, -7.0, -2.087544809532427, -1.7316805487833076, -2.624797578960761, -7.0, -7.0, -2.9992755720056676, -3.348499570283838, -1.9210015763006458, -7.0, -2.6669857183296606, -2.5675926763114987, -3.4653828514484184, -2.674759109847667, -2.0932815675672454, -2.5843662672560845, -3.0673963618557067, -3.3332456989619628, -3.7171502028538876, -7.0, -2.4667028964826474, -3.7331972651065697, -3.2345172835126865, -2.2486381513553635, -2.527353661395109, -3.5826314394896364, -3.540954808926133, -3.689131197234498, -3.584783378996508, -3.5886329050659698, -2.649529565947819, -7.0, -7.0, -7.0, -2.7787540186718043, -2.5218300640818447, -7.0, -2.922552466761376, -3.614158709509175, -7.0, -3.561101383649056, -7.0, -3.3383900826431017, -3.4095950193968156, -7.0, -2.577644963119329, -2.4065401804339555, -4.088047448128369, -3.0151249381653735, -4.413769595610617, -7.0, -1.909751520121109, -4.246839022174548, -3.1758016328482794, -7.0, -3.4358443659844413, -7.0, -2.261395053995737, -2.83953518010886, -3.8327004709605674, -3.084099424214281, -7.0, -7.0, -3.0028137792246734, -7.0, -7.0, -7.0, -2.928834607453388, -3.3647385550553985, -2.1876920011804275, -7.0, -7.0, -3.3562171342197353, -4.783031257624278, -7.0, -3.7591388162811663, -7.0, -3.0775063313523123, -3.355882344117442, -2.544186717310012, -3.3571610331780577, -3.4395695171471754, -7.0, -4.335919030990713, -4.0323447224179185, -4.3053771683525195, -3.4519508268511805, -4.058217178825713, -2.962279967309778, -3.608026557407242, -7.0, -4.343526753097717, -7.0, -4.089576618238777, -3.8308451923086118, -3.6478229105357323, -7.0, -7.0, -3.9735157732409796, -4.227012095991085, -7.0, -3.4232601245473617, -4.202188512266052, -4.0888445627270045, -4.0527324074032185, -4.233402277811895, -7.0, -3.8336888448364133, -3.9572240578431668, -3.6971712003830453, -3.924770174906564, -3.5504831459529296, -2.955527405293444, -3.684064005878023, -2.9845051793652493, -1.7802978462168428, -7.0, -7.0, -7.0, -3.615872429541114, -3.15175279223674, -3.365581572755049, -4.163653256961294, -3.4255109308089216, -3.489800333711403, -7.0, -2.9547398536507683, -3.3092041796704077, -7.0, -7.0, -4.400261610744863, -7.0, -7.0, -3.0062651558823856, -3.3893869036091617, -4.428950249146652, -7.0, -3.1070742314120694, -7.0, -3.0224805150602982, -7.0, -4.562861918686101, -3.651859269246949, -3.9549898177161404, -3.3081373786380386, -7.0, -7.0, -4.492529914411559, -3.442244527847952, -3.7756589833754215, -3.5970915798771266, -3.443861601587795, -2.7510493864592833, -7.0, -2.945795102198527, -3.3608299960638286, -7.0, -4.236533385918288, -7.0, -3.257758548072965, -3.3449504264625767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.506025600803707, -2.977151788903537, -2.8623647524766747, -7.0, -2.8356905714924254, -2.6536762559250167, -2.994866823015008, -2.9457147140598603, -3.3439990690571615, -2.7040892061201514, -7.0, -3.1736537289204207, -3.1486797599073886, -7.0, -7.0, -2.603056550608781, -3.558468562523795, -3.009592521262823, -7.0, -7.0, -2.055613530125348, -7.0, -3.413634997198556, -7.0, -2.5394345754799916, -7.0, -3.5947239464097467, -7.0, -7.0, -4.135736743509474, -2.237519302805797, -3.1447471299618526, -7.0, -7.0, -2.7047937573650462, -7.0, -3.0443437348951075, -7.0, -3.1965906541173066, -3.2067809156837686, -7.0, -7.0, -3.2938043599193367, -2.7132104434506292, -3.500030534183874, -2.781396305196791, -2.9099569781681645, -3.453471233722936, -7.0, -2.8313577854420675, -2.616105810460869, -7.0, -7.0, -2.920123326290724, -2.981637424655769, -7.0, -3.412432545593535, -7.0, -3.335858911319818, -3.973035440686933, -7.0, -2.735939519022239, -2.224413521046866, -7.0, -1.7750175934288313, -7.0, -7.0, -7.0, -3.872272846224205, -3.3664229572259727, -3.2638726768652235, -2.718224803628757, -7.0, -2.992995098431342, -2.887561040930009, -2.5128029425484315, -3.2760786594797535, -3.583198773968623, -3.257518584268037, -3.6466977312993345, -3.842921120759982, -3.166282067316571, -3.390581878550435, -3.485153349903652, -7.0, -3.1559430179718366, -3.3106933123433606, -7.0, -3.48440661994362, -7.0, -7.0, -7.0, -2.7143914028949405, -2.604825824595212, -3.4262129542373616, -3.6616115767205613, -7.0, -7.0, -7.0, -3.217878578027433, -7.0, -3.073131564940993, -3.186744501716686, -3.503109436671369, -7.0, -2.5179872030250783, -3.1458177144918276, -3.0051970177572516, -3.417969642214737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0496609543576354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3848907965305544, -3.2975416678181597, -7.0, -3.5545800070874893, -7.0, -3.4794313371977363, -7.0, -7.0, -2.5453954864899164, -3.385069776331935, -7.0, -3.740638970811629, -7.0, -7.0, -7.0, -7.0, -3.609914410085998, -7.0, -7.0, -7.0, -7.0, -3.7803893284709527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6338722626583326, -5.094396585245832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.140328883183799, -7.0, -7.0, -7.0, -7.0, -3.607025878434786, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605644374489854, -7.0, -7.0, -3.769894035812169, -7.0, -7.0, -3.0836817472743014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.44554193436792, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7829501332654125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.716003343634799, -7.0, -7.0, -4.060458597797985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.849775548923395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.750760952738518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5949447366950835, -7.0, -3.632356046239073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.529725430610816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.45499721730946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.716174522142771, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021203085977509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.173390251465195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5739154404215507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9181876613589255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.744560911018383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.766933093837284, -4.32576188531923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8603380065709936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7944880466591697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8614746688571686, -7.0, -7.0, -3.1884597362982907, -4.395782875918288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.099909685319397, -7.0, -7.0, -7.0, -7.0, -3.6410773133253747, -7.0, -7.0, -3.503245771465113, -3.121887985103681, -3.2430380486862944, -3.528000246372667, -7.0, -3.6030902178122184, -2.947643745820492, -7.0, -7.0, -2.9626849566736677, -7.0, -7.0, -7.0, -2.745855195173729, -7.0, -7.0, -7.0, -7.0, -7.0, -3.401400540781544, -7.0, -3.2551116255008354, -7.0, -7.0, -7.0, -3.5688826280523136, -7.0, -7.0, -1.7829501332654125, -7.0, -3.876160084825628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.026201186263154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.149680882482938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7759379565339373, -7.0, -7.0, -7.0, -3.159266331093494, -7.0, -7.0, -7.0, -7.0, -3.5440680443502757, -7.0, -7.0, -4.173186268412274, -4.152326572848545, -7.0, -7.0, -7.0, -4.993934171088351, -2.513217600067939, -7.0, -7.0, -7.0, -7.0, -3.998520882835038, -7.0, -7.0, -7.0, -4.367896123114806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.154149979881548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055913223916149, -7.0, -7.0, -1.1781544196194547, -7.0, -3.2190478439301646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.375114684692225, -7.0, -3.399731392881681, -7.0, -2.940516484932567, -3.770965477721236, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5240201243391467, -2.3654879848909, -3.9226735678585545, -7.0, -7.0, -7.0, -7.0, -3.751257927760953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.662521737910115, -3.1290450598879582, -7.0, -3.152390279480791, -7.0, -3.1870504506422686, -7.0, -7.0, -7.0, -4.0408791245157865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3818367999983434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9112108931375533, -7.0, -7.0, -5.1109010114125795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8150461760646306, -7.0, -7.0, -7.0, -4.315025199312605, -7.0, -4.232881807330064, -7.0, -4.710937770328562, -7.0, -7.0, -7.0, -3.99140330258004, -7.0, -3.9600424557268417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.455606112581867, -3.426998958756537, -7.0, -2.847572659142112, -7.0, -7.0, -3.2258259914618934, -7.0, -7.0, -3.9277808493473745, -7.0, -7.0, -7.0, -5.131871982362283, -7.0, -2.7737864449811935, -7.0, -7.0, -7.0, -3.5854607295085006, -3.2727695865517594, -7.0, -3.2012605322507914, -7.0, -7.0, -7.0, -7.0, -5.527368859133329, -3.869349080759093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.979548374704095, -7.0, -7.0, -7.0, -7.0, -3.697490887171057, -7.0, -7.0, -7.0, -7.0, -3.53447939331355, -4.085861173788451, -4.761340791717771, -7.0, -7.0, -4.416503208646225, -7.0, -7.0, -3.0674428427763805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.07083112373925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.372599050995377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.997622254961639, -7.0, -7.0, -7.0, -4.621384028481653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.774049574030081, -7.0, -4.375882991545229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.332279357797102, -7.0, -7.0, -7.0, -4.66153347407699, -4.203105444776454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.991483031090237, -4.885843030854342, -5.104339419249784, -7.0, -7.0, -7.0, -4.95537020971636, -7.0, -4.803253919365127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.611059147483494, -7.0, -7.0, -7.0, -7.0, -4.466299058751786, -7.0, -7.0, -4.745418341943429, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.468524557299703, -7.0, -3.881812462894711, -7.0, -7.0, -4.040701211937358, -7.0, -7.0, -7.0, -3.744214724814166, -7.0, -4.4959673257948305, -3.610553705317095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5203525040833177, -7.0, -7.0, -7.0, -7.0, -7.0, -4.79338872098791, -4.787658801910277, -7.0, -7.0, -3.0313579619570263, -7.0, -3.458788881710845, -7.0, -7.0, -4.2499317566341945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6290696425437527, -7.0, -2.963079160641827, -3.683272236315922, -7.0, -7.0, -3.2355284469075487, -3.5106790310322102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.855798474252288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313375022247447, -3.374565060722765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.244957106607392, -7.0, -7.0, -7.0, -3.241795431295199, -7.0, -3.6399842480415883, -7.0, -3.6823256186678073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.91539983521227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.19685294676045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.031581570404944, -7.0, -7.0, -7.0, -3.570367785823503, -3.1527468640264606, -3.438384107034714, -7.0, -3.8880671134074367, -2.5810034007407334, -4.0790002523038495, -7.0, -3.3941013020400446, -2.971198510213833, -2.6629277397598625, -3.130655349022031, -7.0, -7.0, -7.0, -7.0, -2.4450850227193537, -3.6847257048088564, -7.0, -2.978750981332984, -2.3314613283186794, -3.424663890583937, -3.401400540781544, -3.8596185787721806, -2.7715874808812555, -3.009610221198917, -3.8828659197216293, -3.204933522354145, -3.2996162399984135, -7.0, -7.0, -7.0, -3.0995819938670537, -3.397418542351348, -2.083905552732438, -2.906634286963973, -3.11293997608408, -3.8809849904867533, -2.9107502760558157, -3.871105700985585, -3.88632148655948, -2.910139105384123, -3.43098828567289, -1.6185974631800342, -7.0, -3.600264821501586, -7.0, -1.3469231820488825, -7.0, -1.9968730702437054, -2.502199442662362, -1.569963444838021, -2.7154684981461377, -7.0, -2.747689188289225, -2.3864760989200358, -3.596432142349082, -7.0, -7.0, -7.0, -3.113553425855539, -1.483375948594675, -2.1547458012533567, -7.0, -3.864807629026147, -1.1175501570831434, -3.5599066250361124, -2.111890968147374, -2.663386788318517, -7.0, -7.0, -3.0894340761633927, -7.0, -2.8778031216951354, -7.0, -3.876160084825628, -7.0, -2.7705083659594516, -3.2770358881721102, -7.0, -2.617957087809433, -3.415585383086003, -2.954461794716341, -3.167654847476959, -3.4590907896005865, -7.0, -2.3945680807975416, -2.7795964912578244, -2.1945525288908807, -3.864866914328526, -7.0, -3.1303797231516177, -3.33193317250328, -2.9639294220265584, -2.879996481067212, -3.872272846224205, -2.6026442253688558, -3.8959747323590648, -3.8608767964032977, -3.859918485200716, -1.8339166756306267, -7.0, -2.6609602917760835, -3.9188687433809846, -1.295114136891793, -2.1112653866516125, -7.0, -7.0, -3.432113748648645, -3.4395432098217347, -2.7749378617219875, -7.0, -7.0, -3.253531843527005, -3.1097894001793462, -3.266741133090716, -7.0, -3.0349691819441498, -3.1127827753067483, -7.0, -3.359361102738486, -7.0, -3.399368759646763, -2.606757447446635, -2.3059456359742456, -3.558188385437139, -7.0, -3.4150290231817015, -0.7181772172401191, -2.7586002350599466, -3.8561244442423, -3.384174138807033, -3.8770544372152305, -7.0, -7.0, -7.0, -3.8677620246502005, -7.0, -2.289358432636332, -2.721989727881355, -2.7909471353636977, -3.1111504521226667, -7.0, -4.157819284417298, -7.0, -3.873843533223436, -3.612200875449579, -4.2598088229546285, -2.3869041288246544, -7.0, -3.8767949762007006, -7.0, -2.5878053460867396, -7.0, -3.85769425778655, -3.4632457912660026, -1.9915463125131274, -7.0, -3.442845446763725, -3.9289588408808296, -7.0, -3.1845494813206976, -3.4600454489953703, -2.5524248457040857, -3.151114367869422, -2.337829929222736, -2.8760603067714383, -3.579440597139797, -7.0, -7.0, -7.0, -3.877946951629188, -3.573103783163991, -3.862191031051597, -2.818398039146461, -3.877774349991398, -3.509689653828353, -7.0, -2.0969100130080562, -2.2438644894340767, -7.0, -2.83160632599708, -2.101780189542242, -3.6185187633048668, -3.359835482339888, -2.9706567545749585, -2.5549936257149755, -3.911743377855932, -2.970863217370339, -2.6111329932747487, -3.184521085852911, -3.3589242153885115, -7.0, -2.284221787734209, -2.579733903329737, -2.9669890483053907, -7.0, -2.792951708250132, -7.0, -3.6207258227036743, -7.0, -2.971224291252213, -3.8773713458697743, -7.0, -2.4863596256881286, -2.8409260187596415, -7.0, -1.8818776844271032, -3.77110221095409, -2.508044027297837, -7.0, -7.0, -3.8776592441116087, -7.0, -7.0, -3.5814945422908995, -7.0, -7.0, -3.2203986832211235, -2.5468304527037255, -3.463210202983969, -3.2454121250467365, -7.0, -3.879841055986563, -3.04105414195654, -7.0, -3.8608169638645378, -7.0, -3.3489373426608426, -2.9743581504051995, -7.0, -7.0, -7.0, -7.0, -3.57316180901509, -7.0, -7.0, -3.4547432587723694, -2.821490462846237, -7.0, -3.8610562445768735, -7.0, -7.0, -7.0, -3.589335125784143, -7.0, -3.4171948079647763, -3.7640266076920375, -3.238798562713917, -3.066969349796947, -2.893892249396686, -3.456416647252042, -7.0, -7.0, -0.6841387274968713, -3.46987108602871, -2.2925128983786878, -3.5945582800022815, -3.048247531803974, -3.423846369199462, -3.5732198271144218, -3.575707301476683, -3.07379687751059, -2.942928844081547, -1.046014774029043, -2.520337942903055, -3.0950742053076143, -1.4628414949830963, -2.345177616542704, -3.867290669854884, -3.137090246922551, -2.4774830160749435, -2.4056647257683834, -7.0, -3.3988077302032647, -3.9166644645413973, -7.0, -3.451939869365103, -7.0, -2.8732721503754086, -3.037341110553272, -3.912487761332324, -3.9789561652175918, -3.3220124385824006, -2.7607533744730497, -2.0430295895894606, -7.0, -3.3025640175436135, -7.0, -3.0522540943300562, -2.7477388061000108, -3.1603184379840017, -3.119695681195928, -2.582675106925388, -3.2653233064596994, -3.0953188246674084, -2.963916551690292, -2.5416272402423585, -3.415799423707435, -2.3034737689179003, -7.0, -7.0, -7.0, -3.6191977157929474, -2.1522078524021193, -7.0, -7.0, -2.714795291445831, -3.874945436085532, -2.771685449409057, -3.403578034499039, -2.1854377696881704, -3.5922322902240102, -2.9057419273916016, -2.8078930122753323, -7.0, -3.448794627038752, -2.811449323773955, -3.5005533808904343, -7.0, -2.6065157176196125, -3.3554867054564532, -2.5470906692062414, -7.0, -2.7869151523951547, -7.0, -2.9300146074718962, -2.7862442464696757, -3.1264561134318045, -3.1037060059185544, -3.8632038590286295, -7.0, -2.852808311744541, -3.5744364202024044, -7.0, -3.895643504824079, -3.2710279942623233, -3.879153246184246, -1.924716630482366, -7.0, -7.0, -3.5849434042753194, -4.518059667235619, -7.0, -7.0, -4.16423385469261, -3.336345355527641, -4.156488576050017, -3.2448858293864875, -2.9208556016179306, -3.910224071953891, -4.031448861859383, -4.430204098631749, -4.072771766971065, -4.248214474078034, -2.9524824679356727, -3.9719249491841913, -4.129883155340622, -3.2000292665537704, -4.243905770217522, -4.43633760224632, -4.02271698005103, -4.057363492797426, -3.8057556510562356, -3.288281171909262, -3.2485082765704014, -7.0, -3.8733455175941787, -4.344804755754967, -7.0, -2.9225415156302677, -3.848804701051804, -3.889933671305516, -4.444653631000238, -4.349685397810314, -7.0, -4.276323911020188, -3.8547613566936363, -3.5913738234738113, -7.0, -2.7293650302622163, -7.0, -3.5827125326617333, -2.311960322158872, -2.7611758131557314, -2.5067755366066433, -3.192830638664709, -3.177295960194052, -2.756616605608402, -2.7877752377008136, -3.9955474494751373, -4.059512930284156, -2.564830020031201, -2.4209086143865757, -7.0, -2.5095481300541147, -2.980555227710052, -3.8675264111997434, -3.4148396983369262, -2.8480458327664424, -7.0, -7.0, -2.538156595659039, -2.6173947603991423, -3.996095565863999, -7.0, -2.986734422140967, -7.0, -2.554833535393301, -3.629613445378183, -4.1863080477904715, -3.1925442234426136, -3.668012971641832, -7.0, -3.1419042120922844, -2.8848854358386515, -2.9192976711334797, -3.254628628807601, -2.556113963980344, -3.0395463043793804, -2.72553118169117, -2.4994074638844803, -3.89470365260923, -2.2857011143608963, -2.8928886460307943, -3.2384224958854797, -3.373452353063682, -7.0, -3.074084689028244, -2.529627893960828, -2.7990942809571027, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9915809464515983, -1.51638280249711, -1.3989831930562173, -7.0, -3.46159856006272, -2.165455437571897, -3.362105319293773, -2.738433697678285, -2.725269745809246, -2.2884408683559605, -7.0, -2.058357342596415, -1.7478578905540405, -2.7416579991601333, -7.0, -3.7023228111611077, -2.9930441352384736, -2.4410242032009224, -7.0, -7.0, -2.657226639945664, -7.0, -3.1159985963842782, -2.3991135714003433, -2.001445240874181, -7.0, -2.566872823826931, -7.0, -7.0, -3.62368148968865, -2.295675862872818, -3.179647524546354, -7.0, -3.502472641129268, -1.748246333307141, -7.0, -1.5528622465259387, -7.0, -1.9608405922118757, -1.4591621739243248, -7.0, -3.8705209500127644, -3.4860524616555892, -1.9395723545911616, -2.9166794974939214, -3.885304667588968, -3.026226739761552, -1.9298033300351878, -7.0, -1.7369950446660034, -1.3070412898672565, -3.651859269246949, -7.0, -1.7065594219777749, -1.6224357506996805, -7.0, -2.824902278076417, -7.0, -7.0, -7.0, -2.302114376956201, -1.79928192676247, -1.77500484574455, -2.5357023683167728, -3.4465889396769005, -7.0, -7.0, -3.584274671924987, -2.9570254668704434, -7.0, -1.882764132185854, -0.8657929080680717, -3.9172954009456893, -7.0, -1.0264431267973328, -1.5025185305685673, -2.4015608266227817, -2.878090733945318, -2.0359052102283863, -2.943943956577388, -2.493297151524906, -2.7980660232801418, -2.0240724665968712, -2.940861147914118, -3.1389865023728007, -7.0, -3.5621738633646483, -3.8585973449946924, -4.171331460918497, -3.9846623061901068, -2.1294454133258283, -3.505602132948883, -2.3399696410082558, -3.2497363045688332, -3.0718820073061255, -2.7522146133891745, -3.2767680767401712, -1.6727134419961225, -7.0, -2.015794267183232, -7.0, -1.9075705888173975, -1.8697009736738779, -4.065467672465651, -7.0, -2.044446917238644, -2.167918737160758, -1.8462862609521928, -2.992277301781418, -7.0, -7.0, -3.859918485200716, -7.0, -7.0, -7.0, -2.8154781280733654, -7.0, -2.7114598529873253, -2.8404482831667024, -7.0, -3.2686949535621777, -3.4019172505175748, -3.292422223682128, -3.8854177651109363, -2.0488827895528776, -2.810284228953281, -2.4972418495113913, -3.2535456858028002, -4.052655473039527, -3.4138583422700264, -3.860278099752235, -2.80303012271076, -3.0396973239347242, -7.0, -2.497523633254155, -2.893206753059848, -2.937071889942818, -3.3065108056433825, -3.976304116552003, -2.216448676782301, -3.5650209283452936, -3.267054335651413, -2.9548693710664784, -3.8627275283179747, -2.3000983660999252, -2.6442830677179567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8399491678129896, -7.0, -7.0, -3.9777800733459263, -2.9691495557176637, -7.0, -3.295567099962479, -4.2315460439969215, -2.923392065156988, -7.0, -7.0, -7.0, -7.0, -3.263636068588108, -3.1337454872286643, -7.0, -7.0, -3.2997251539756367, -3.2466518472694537, -7.0, -3.3224260524059526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9436923271060165, -7.0, -3.5596672783880576, -7.0, -4.242451355028342, -2.9927743642553555, -7.0, -2.0747912283446883, -7.0, -3.1554878621412814, -7.0, -7.0, -7.0, -3.4274861090957858, -3.4916417934775863, -3.1368737583830857, -7.0, -2.2862599373472543, -3.2766341090681457, -7.0, -2.775974331129369, -3.0110415256389502, -7.0, -7.0, -7.0, -7.0, -2.8913515837206996, -2.6216954623292787, -4.470968804605796, -7.0, -7.0, -2.683272236315922, -7.0, -3.8295610562993927, -7.0, -7.0, -3.3047058982127653, -2.4418216806864157, -7.0, -3.5582284218033258, -7.0, -7.0, -2.7705083659594516, -7.0, -7.0, -7.0, -7.0, -3.371437317404101, -2.693726948923647, -3.6854730197227594, -3.5017437296279943, -7.0, -3.413964898303298, -7.0, -3.2268207703495495, -7.0, -7.0, -7.0, -7.0, -3.574956775764507, -7.0, -3.2986347831244354, -3.587177588838869, -7.0, -7.0, -7.0, -3.1279951610475374, -7.0, -3.0949367352066424, -7.0, -2.601361456580435, -2.5129060669308303, -7.0, -7.0, -7.0, -7.0, -4.408392620133361, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.909823369650912, -4.463601869359427, -7.0, -7.0, -7.0, -7.0, -3.4252080511386565, -7.0, -7.0, -7.0, -7.0, -2.6271199599275414, -1.884125673019205, -7.0, -7.0, -3.312794214562137, -7.0, -7.0, -7.0, -3.2814878879400813, -7.0, -7.0, -3.8265283063406517, -3.7162538258960365, -2.6127838567197355, -7.0, -7.0, -7.0, -7.0, -7.0, -4.104691918900206, -2.6027109449575576, -7.0, -7.0, -7.0, -3.30263151595426, -7.0, -7.0, -7.0, -3.152135396861876, -7.0, -1.7697543178375743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5510869175680946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.510410948010177, -2.235107414899873, -4.310055737750892, -7.0, -7.0, -3.2382932374424964, -7.0, -3.7856856682809013, -3.715418322595056, -7.0, -7.0, -3.4720246977002813, -3.504742636271688, -7.0, -7.0, -3.749504423876142, -7.0, -7.0, -7.0, -3.2335037603411343, -7.0, -4.0668102756258335, -7.0, -3.518941443661678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6705937061018545, -7.0, -3.6269046860771983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.500556632954331, -7.0, -4.172807188369087, -4.509956504538329, -7.0, -7.0, -7.0, -2.948738890358178, -7.0, -7.0, -7.0, -3.4824447919182653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.250185712886612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2052043639481447, -2.58782907611072, -3.2943559851451605, -7.0, -7.0, -7.0, -2.850013469810422, -2.380986075961567, -1.7879110876728, -7.0, -4.722214230820944, -2.441258614866301, -2.4003220836047983, -7.0, -7.0, -7.0, -2.7174624577374917, -3.1158766642684443, -3.3140253085157405, -3.4643404846276673, -2.7686381012476144, -7.0, -3.443106456737266, -3.6239725120169965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7002090764515674, -3.690993032099869, -3.433289685195026, -7.0, -7.0, -4.022164967179576, -3.660248683421062, -7.0, -4.013911091029002, -7.0, -7.0, -7.0, -7.0, -3.4133416823749867, -2.9566485792052033, -7.0, -7.0, -7.0, -1.739127142481937, -4.058344300223194, -2.420505836570779, -7.0, -7.0, -7.0, -3.8465845028980463, -3.2611041934228426, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3382350842284592, -3.324351058801809, -7.0, -3.4156409798961542, -2.960787780819836, -7.0, -3.333156738826888, -3.330819466495837, -3.2757377809986696, -7.0, -3.8768526476013436, -7.0, -3.385665843515682, -7.0, -3.401400540781544, -7.0, -3.6787914343662442, -7.0, -3.5180530800797216, -7.0, -7.0, -7.0, -2.8826383616960385, -7.0, -7.0, -7.0, -7.0, -7.0, -2.589344990545666, -7.0, -7.0, -3.7063977028613415, -7.0, -7.0, -7.0, -4.723677278076476, -4.095744541366045, -3.64704048585496, -3.9060439777650204, -2.8781048276889516, -3.33429287154846, -7.0, -4.331730892815457, -4.127590677007958, -4.702447770011604, -3.6928359076142545, -4.3553173987845595, -4.208468230265617, -3.8878933772167623, -7.0, -4.339411687131677, -7.0, -4.913177833990468, -7.0, -3.5068984373862233, -3.846615416837761, -7.0, -4.670635429748331, -7.0, -7.0, -3.3684871392613425, -7.0, -3.8439087506401615, -4.349782453363471, -7.0, -7.0, -7.0, -7.0, -3.9952548376314962, -3.7432222303773846, -2.280836949797404, -7.0, -3.150277739061255, -4.07092403147615, -3.2553690042664414, -2.9880384429265163, -3.275119316297735, -2.6481159567559627, -3.557329216984655, -3.746244871720198, -7.0, -7.0, -2.809227601158241, -3.9141138709336474, -7.0, -3.378170700063069, -2.785110715691334, -7.0, -3.87742894078822, -7.0, -7.0, -7.0, -4.043117659208095, -3.608791967362849, -4.8624491434142385, -7.0, -7.0, -7.0, -4.961829091708983, -7.0, -4.009605548485871, -7.0, -7.0, -7.0, -7.0, -7.0, -4.792118418302425, -7.0, -3.0429444862795263, -3.8866598978612026, -3.6042044458563303, -3.9034833881331887, -7.0, -3.5519035743682226, -4.962274604623315, -7.0, -5.350120037711959, -7.0, -7.0, -4.32087296522725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0559443349503614, -3.0778522036135776, -2.574110223183241, -7.0, -7.0, -3.4131693257315994, -3.0965624383741357, -7.0, -7.0, -2.837777769553733, -7.0, -3.851930678640268, -3.1323397511926045, -7.0, -7.0, -7.0, -7.0, -3.1709947020363, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1936810295412816, -3.668944734457734, -7.0, -4.064270752974006, -7.0, -7.0, -4.133528263767173, -3.593760125350598, -3.8939419873734353, -7.0, -7.0, -2.6957880262155345, -7.0, -2.7798025621902336, -7.0, -7.0, -2.7119211722353125, -7.0, -7.0, -7.0, -3.4626974081017172, -3.7866804531966487, -7.0, -7.0, -2.9426693313867003, -7.0, -2.901049445343407, -2.5072604310624937, -7.0, -7.0, -3.0780941504064105, -3.3608772971020398, -7.0, -2.4832448609315168, -7.0, -7.0, -7.0, -3.537189226243645, -3.006635214937953, -3.623352681537992, -7.0, -3.4668676203541096, -7.0, -7.0, -7.0, -7.0, -7.0, -3.238547887681328, -2.6784045552989557, -3.447623097760286, -7.0, -2.796285169818761, -2.461782667055416, -3.43608309864198, -7.0, -3.487623124274871, -7.0, -7.0, -7.0, -2.9353632928474607, -3.470116353151004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5445995081921287, -3.6181527333785195, -2.6248782618895143, -7.0, -3.721728198572788, -3.4481709982818494, -7.0, -2.569586694764772, -7.0, -3.490941205356787, -7.0, -7.0, -3.074743320941003, -7.0, -7.0, -3.1908917169221698, -3.1122697684172707, -3.572257382889322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.928623410282304, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3242824552976926, -7.0, -7.0, -7.0, -3.4712917110589387, -3.548235821497576, -3.5500448095649055, -7.0, -3.3656751404559175, -7.0, -3.675136504467994, -7.0, -7.0, -3.914038885724392, -3.3756636139608855, -3.3690302218091532, -7.0, -3.6027109449575576, -7.0, -3.2753113545418118, -7.0, -3.5524248457040857, -7.0, -7.0, -3.469674772551798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6913762288033705, -7.0, -7.0, -3.757515324077912, -7.0, -7.0, -7.0, -3.5949999167322457, -3.5143086256567755, -3.132899769944483, -7.0, -7.0, -2.8027737252919755, -7.0, -3.862608363964942, -3.8899736384039962, -7.0, -2.7668773829165607, -3.652704085925939, -2.785329835010767, -7.0, -7.0, -2.6287974855667104, -7.0, -7.0, -4.088017897250127, -7.0, -7.0, -7.0, -2.2474822606770544, -7.0, -2.163757523981956, -7.0, -7.0, -7.0, -7.0, -4.6644100392352845, -7.0, -2.972665592266111, -3.343605508104172, -3.126780577012009, -3.1691844255650965, -2.910090545594068, -7.0, -7.0, -2.291305408119733, -7.0, -3.2455233963002588, -2.9748186146454407, -2.906335041805091, -7.0, -7.0, -3.0409976924234905, -2.6023700909354988, -7.0, -7.0, -7.0, -7.0, -3.0191162904470725, -3.2726536974298166, -3.8493733405098816, -2.8129133566428557, -7.0, -3.1097472377132287, -7.0, -7.0, -2.791590407939026, -7.0, -7.0, -3.9213808014591756, -7.0, -3.3656751404559175, -7.0, -7.0, -3.2770358881721102, -7.0, -7.0, -2.18089014193745, -3.451632947456991, -2.5453071164658243, -2.8977645045116174, -3.249198357391113, -7.0, -7.0, -3.8687032022785366, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9628426812012423, -7.0, -3.589726256254237, -7.0, -7.0, -7.0, -2.397070549959409, -7.0, -3.0209594528185275, -7.0, -7.0, -3.1869563354654122, -2.7311857076340007, -3.232542349529745, -7.0, -7.0, -2.529558673021163, -7.0, -3.540543976514976, -7.0, -7.0, -2.867271018965448, -3.0734739527696653, -3.6375897858387, -7.0, -3.4756421375547006, -4.152762139680493, -2.987219229908005, -3.8436687229791437, -3.0068937079479006, -4.091033516054471, -3.1357685145678222, -7.0, -3.009344646383631, -7.0, -7.0, -2.9196227989342525, -3.1794081515138357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2523675144598987, -3.6886867242841235, -7.0, -7.0, -7.0, -7.0, -3.1562461903973444, -7.0, -7.0, -7.0, -7.0, -7.0, -4.241421951711995, -7.0, -7.0, -7.0, -7.0, -7.0, -3.193958978019187, -7.0, -7.0, -7.0, -7.0, -3.880356199419236, -7.0, -7.0, -3.7990907774644507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5810285888174453, -7.0, -7.0, -7.0, -7.0, -2.8610253770532483, -7.0, -7.0, -2.6348130216130192, -2.889581802149624, -3.381656482585787, -3.2227164711475833, -3.279210512601395, -3.1470576710283598, -7.0, -3.0330214446829107, -2.650793039651931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.076421967360593, -7.0, -7.0, -7.0, -3.225567713439471, -7.0, -7.0, -3.04688519083771, -3.0563330349511615, -7.0, -2.914166793875635, -4.357305807546096, -3.856003453997221, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.984077033902831, -2.7366620446156418, -3.5873741720730656, -3.832189461068513, -5.110948948781672, -7.0, -7.0, -2.4978507395784066, -7.0, -7.0, -7.0, -3.037227234582274, -3.241048150671644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.776701183988411, -7.0, -3.9885044560907814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4939556956948823, -7.0, -7.0, -7.0, -3.714036218347168, -2.4740080192955194, -3.3582141279022437, -3.044147620878723, -4.711419142177214, -7.0, -7.0, -7.0, -3.215329068686353, -7.0, -3.485437481076301, -2.6764441823287006, -7.0, -3.2089785172762535, -7.0, -7.0, -3.1699681739968923, -3.4641913706409997, -3.436162647040756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.046300019652969, -2.1847946376816547, -7.0, -7.0, -7.0, -4.286918171392467, -7.0, -7.0, -3.4414931434230693, -7.0, -7.0, -2.7454094219943266, -2.8077604599357904, -2.7521445200423504, -2.275514596639852, -3.4876332174568763, -3.2949069106051923, -3.529558673021163, -7.0, -5.2263730334113, -3.0939467238905833, -7.0, -7.0, -7.0, -7.0, -2.7750380149595006, -7.0, -7.0, -7.0, -2.8692317197309762, -3.3298045221640695, -7.0, -3.7024305364455254, -7.0, -3.116939646550756, -3.62293896921149, -7.0, -4.857284238807806, -3.5426298348536434, -5.030226036766992, -7.0, -3.016057865962853, -3.977349410604157, -3.3007403694565793, -7.0, -3.0881360887005513, -2.5308397786165204, -2.5390760987927767, -3.184194404461818, -3.423081958297231, -1.8725724629880052, -2.732393759822968, -7.0, -3.1015752462559334, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1736418872775687, -2.3394514413064407, -2.693726948923647, -3.6923511178233523, -4.4710935923795985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1022907468986824, -7.0, -7.0, -7.0, -4.241936440037947, -4.520732378332008, -3.979457318097848, -7.0, -7.0, -4.019557633474107, -7.0, -7.0, -7.0, -5.388010566014608, -7.0, -4.231278397611435, -4.105714510570921, -7.0, -4.658459776998312, -4.186476030554059, -7.0, -4.774465869254357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8360496933453354, -7.0, -7.0, -3.787300106090019, -3.284938054343137, -3.6582022533870147, -7.0, -7.0, -4.53655844257153, -7.0, -7.0, -7.0, -3.96275751707078, -4.680779554175909, -7.0, -4.1365620365899805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.146584248339436, -4.789010679234133, -7.0, -7.0, -3.6904618932461783, -7.0, -3.9555578754030956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.605951157564873, -3.913707913980483, -3.8067225030761813, -4.296297639188485, -7.0, -2.7351995484223135, -3.797465397090131, -4.354007540435039, -7.0, -5.347601242663674, -7.0, -7.0, -4.608279934969188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.624090474733072, -3.0599418880619544, -2.9047440096065236, -7.0, -7.0, -3.740717876059285, -3.3902283624691303, -3.0066799277408256, -7.0, -3.146128035678238, -7.0, -4.195304510332836, -3.0138900603284386, -7.0, -7.0, -3.82610721152752, -7.0, -3.66661156841903, -7.0, -7.0, -3.0002170929722305, -7.0, -7.0, -2.482158695411276, -2.4107123600509404, -7.0, -7.0, -7.0, -2.8135809885681917, -7.0, -3.3618606916229434, -4.788062260178738, -7.0, -7.0, -2.8577344348976292, -7.0, -2.687677564973793, -7.0, -7.0, -3.0464707760442677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2440295890300215, -2.648034574860868, -7.0, -2.5770319856260313, -3.2876226024861923, -7.0, -7.0, -2.6973539073617196, -3.5182506513085, -7.0, -7.0, -7.0, -7.0, -3.897352134344313, -3.3324384599156054, -3.072500197917994, -2.616400486768762, -7.0, -2.3066930278565714, -7.0, -7.0, -7.0, -7.0, -7.0, -3.33665982345442, -2.899752125747131, -7.0, -2.669316880566112, -2.839408208267848, -2.7100153557906577, -2.9199144806594317, -3.36679638328673, -3.7038285389563477, -2.6199872475431762, -3.037745129269592, -3.1559430179718366, -4.03322264667025, -7.0, -7.0, -3.1344958558346736, -7.0, -2.665580991017953, -4.360157764747342, -7.0, -7.0, -7.0, -3.6844349723089813, -3.3296012483565187, -7.0, -7.0, -7.0, -3.1470576710283598, -7.0, -2.5548524343720542, -7.0, -3.3443922736851106, -3.190144864662612, -7.0, -7.0, -2.7798368978412693, -7.0, -3.492166493894078, -3.0472748673841794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8032522114304568, -7.0, -2.7024305364455254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.392169149489736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5363058723510337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.902810319891709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.571555113262753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304743577061294, -7.0, -7.0, -3.771954748963949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.823392709792886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.18089014193745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.372580635030913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.016490131620828, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0806264869218056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.337907532033172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.605574376060999, -7.0, -7.0, -7.0, -7.0, -3.7506761405150186, -7.0, -7.0, -3.2476050641507705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7335182514344876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.292422223682128, -7.0, -7.0, -5.71271197970362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.463902938344607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.094960002436666, -7.0, -7.0, -7.0, -4.007555758625101, -3.2400497721126476, -4.052911867935484, -7.0, -4.407331408000757, -7.0, -7.0, -2.617000341120899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.066272667101881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8948696567452528, -3.4628470358316736, -2.9815165943059867, -7.0, -7.0, -7.0, -7.0, -5.8282053893372865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3522790172744976, -7.0, -7.0, -4.290568798984483, -7.0, -7.0, -3.588943642740015, -7.0, -4.367001630838441, -7.0, -7.0, -4.577399875933421, -3.66029616027073, -7.0, -7.0, -4.71610355387604, -4.996301478805604, -4.1003130949578255, -7.0, -7.0, -4.619813078098432, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.610500466643181, -7.0, -7.0, -4.763809705396578, -3.8666417205660397, -7.0, -7.0, -7.0, -5.234641277637988, -7.0, -7.0, -7.0, -4.961140966863463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.487484824056203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.103774653029688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.205177287388274, -7.0, -7.0, -7.0, -7.0, -4.6409036004935205, -4.95436795417073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.719911064198339, -7.0, -7.0, -7.0, -7.0, -7.0, -4.11541079013392, -7.0, -7.0, -7.0, -7.0, -3.0527708694748816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.574630969495031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.493272117359938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067863391226035, -7.0, -7.0, -2.6273658565927325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6726929365789984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.224001847164982, -2.7715874808812555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.088118362033397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2208922492195193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9683272595463874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.750820065686126, -7.0, -7.0, -7.0, -3.7721994219179718, -4.2638726768652235, -3.226213120724107, -7.0, -7.0, -7.0, -3.40671045860979, -3.231414972499162, -3.6889090176205546, -7.0, -2.7835137861438874, -2.886546427161451, -7.0, -3.1484484035233837, -7.0, -3.617629297757842, -3.53731527311201, -2.343181273996572, -3.555503261386879, -2.730109055128691, -2.814414087772258, -7.0, -2.6831971832643395, -7.0, -3.4390167283875126, -2.6278776945799716, -7.0, -7.0, -7.0, -3.8254601205601073, -2.523583901029429, -7.0, -7.0, -7.0, -3.109646031090973, -7.0, -7.0, -7.0, -2.927626962444954, -7.0, -2.158314785775445, -2.0653701812907017, -3.15823321854707, -3.072564984313118, -7.0, -3.4927603890268375, -3.080896934973246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.703061987128565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.419625360887743, -7.0, -4.052838169905007, -2.7148325124333326, -2.005139639652411, -7.0, -7.0, -2.617957087809433, -7.0, -3.451632947456991, -7.0, -7.0, -1.8015350689381235, -1.5923001540388062, -7.0, -2.588047496986083, -7.0, -3.4429498695778618, -3.4406729882937586, -4.0979164092373255, -7.0, -7.0, -7.0, -2.5416926811894625, -7.0, -3.4696011321138256, -7.0, -4.2090590341287974, -7.0, -3.4000196350651586, -2.794139355767774, -1.5547070012435482, -7.0, -3.1711411510283822, -7.0, -3.1020905255118367, -1.809887620834404, -3.1744959193752993, -7.0, -2.7483172620858336, -3.545430829465351, -3.243814947313913, -3.505014240084107, -7.0, -7.0, -2.9667672920577095, -7.0, -2.7278122676344823, -3.4512233805451995, -3.76982763613248, -7.0, -7.0, -7.0, -5.002947520467159, -2.82865989653532, -2.90687353472207, -1.9180594752653435, -7.0, -7.0, -2.8096785204031822, -3.099507993727965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.406506116785802, -3.1711411510283822, -3.911876397086321, -3.53731527311201, -7.0, -3.6827315646221837, -7.0, -7.0, -2.690449239162411, -4.128463891064761, -3.1641545025122504, -7.0, -3.444513206334043, -7.0, -2.543180823445382, -7.0, -7.0, -7.0, -7.0, -7.0, -2.950364854376123, -3.5733358400660675, -3.6588695922019623, -3.3461573022320086, -3.5921767573958667, -3.681286474028084, -7.0, -3.4683473304121573, -2.4666807697155937, -2.3045828424686814, -7.0, -7.0, -7.0, -3.447623097760286, -7.0, -3.4038066105474227, -2.09796797816439, -7.0, -4.325022800270452, -7.0, -3.5631249603380444, -2.0910927430365986, -2.598790506763115, -2.1558526703669125, -2.490106399890128, -2.772566173085639, -2.740855925756123, -7.0, -7.0, -3.5332635167787148, -3.56643749219507, -2.9556877503135057, -2.8606374167737547, -7.0, -7.0, -7.0, -3.605951157564873, -4.381006719296579, -7.0, -3.4448875712579383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8801845528264334, -7.0, -7.0, -2.44394714679301, -3.9168748785386835, -3.963268251526235, -7.0, -7.0, -7.0, -3.4095950193968156, -7.0, -7.0, -7.0, -7.0, -4.009408399151867, -3.4680517914542377, -3.113414081521587, -4.392449049153358, -7.0, -7.0, -7.0, -3.5296869537729165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.437750562820388, -7.0, -7.0, -3.1027766148834415, -3.748410933476706, -7.0, -7.0, -7.0, -7.0, -3.012415374762433, -3.0028856882374884, -7.0, -3.490941205356787, -3.359645792674543, -2.17341042040791, -7.0, -2.1729305152207927, -3.282848602834645, -7.0, -7.0, -2.7213887838945316, -3.613630434925241, -4.258385826696981, -7.0, -4.029034578217611, -7.0, -7.0, -3.4446692309385245, -3.4722443526734725, -7.0, -3.571514733712986, -2.6032045367100345, -3.651423400759052, -7.0, -3.4871383754771865, -3.116939646550756, -2.7634279935629373, -2.154889186430781, -2.7714956153109704, -7.0, -3.442793225939769, -3.2436580266386965, -7.0, -3.2727695865517594, -2.7920413107120825, -2.448190836779987, -2.2323711362133496, -2.6301735297867714, -7.0, -3.2616196765479355, -3.2085014250503723, -3.215505378231818, -7.0, -7.0, -7.0, -3.1983821300082944, -3.4709981696608736, -3.294466226161593, -2.4856031384563617, -2.6770259566714305, -3.43435596238644, -7.0, -3.4308809464528913, -3.6386888866901237, -3.997136370807289, -1.9012139819931881, -7.0, -7.0, -7.0, -3.110028243534681, -2.3106933123433606, -7.0, -7.0, -7.0, -7.0, -3.3165993020938607, -7.0, -3.2458210061174126, -7.0, -3.219846386024361, -1.5354939947790913, -7.0, -4.170232370181804, -3.19131947982865, -3.903258012587803, -7.0, -1.3461693549750695, -3.9856346503592652, -7.0, -7.0, -3.208710019906401, -7.0, -1.6298403810901787, -3.06435100696701, -3.562827966219992, -2.6624430114561872, -7.0, -7.0, -2.1459341109231054, -3.1398790864012365, -7.0, -3.49373680227684, -2.8091555317471806, -3.450864692379766, -2.1294117956804723, -7.0, -3.3988077302032647, -3.7719862146383307, -7.0, -7.0, -7.0, -4.127404487771786, -3.129740759259531, -7.0, -3.106944816405672, -3.85034542706947, -7.0, -7.0, -7.0, -3.8322533701970083, -3.591372872376177, -4.126726516579761, -7.0, -3.612616108978632, -3.818966517230984, -4.1068026275996505, -7.0, -7.0, -3.9935455619442934, -7.0, -3.8581761379823445, -3.868203455637116, -7.0, -3.8989810036504373, -7.0, -7.0, -3.4664015254461162, -4.215822555154372, -3.792216535439859, -4.062393937253195, -3.9450252012424625, -7.0, -4.150664353529561, -3.6797911709803546, -3.441109303452063, -7.0, -3.7898123009874545, -7.0, -3.5124264461634938, -2.349604963917566, -2.3823773034681137, -3.8171024042569233, -3.6691308473733324, -7.0, -3.2956795321953303, -2.89726044333122, -3.109325387770489, -3.773127924033335, -3.4156270813608494, -3.6570558528571038, -7.0, -3.0697420760416447, -3.636688447953283, -7.0, -3.916822284595912, -3.4086469256557654, -7.0, -7.0, -2.2366355570771637, -3.012861117271863, -3.8272255388870633, -7.0, -3.5385737338068557, -7.0, -3.0053219657545895, -7.0, -3.7652433977308273, -3.2416709737841294, -3.422753941301348, -7.0, -3.4075608494863623, -3.618526230092146, -3.1337263032129754, -7.0, -3.0089548426529267, -3.9252605095194353, -3.0163689690175235, -3.2136903779841535, -7.0, -2.998448247407814, -3.3120268276113047, -7.0, -3.346798235955029, -7.0, -7.0, -2.8958111947786325, -7.0, -3.1233615587462964, -7.0, -7.0, -7.0, -7.0, -3.196480167700148, -2.552972237463008, -3.091390568954869, -7.0, -3.595606434865603, -3.149816603750927, -7.0, -7.0, -7.0, -3.279381730613431, -7.0, -3.3958033777212555, -2.673020907128896, -7.0, -7.0, -3.073295267524642, -7.0, -2.867663867912998, -7.0, -7.0, -2.309193251411278, -7.0, -7.0, -7.0, -3.031327657761131, -7.0, -3.613030945877725, -7.0, -7.0, -4.618246884828072, -2.665156614154294, -3.9568816029042733, -7.0, -7.0, -3.027879409207207, -7.0, -2.6924944075030846, -7.0, -2.78354628227035, -3.2973227142053023, -7.0, -7.0, -7.0, -2.858537197569639, -3.533581425058706, -3.1658376246901283, -3.5757649805367193, -2.8249064713021124, -7.0, -2.6358187213644175, -3.4664598146729486, -7.0, -7.0, -2.6602328566510707, -2.6440280643574865, -7.0, -3.903768042526874, -7.0, -7.0, -3.995898323646437, -3.6191977157929474, -3.0787339479321156, -2.4334142191808175, -7.0, -3.2605483726369795, -7.0, -7.0, -3.4674601095072637, -3.5997739391463885, -7.0, -2.7750380149595006, -2.375428443512786, -7.0, -3.3941013020400446, -2.4820791907004085, -2.968580225848978, -3.7907776013376937, -7.0, -3.64804759698893, -7.0, -3.873494982256169, -2.934119540809263, -3.4081721014970534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2012605322507914, -3.6872613462435067, -3.6003072173984116, -2.3839209181700145, -3.917111472493697, -3.366364580388476, -7.0, -2.53447939331355, -7.0, -3.103689717941284, -7.0, -2.8530895298518657, -3.8236698132681366, -7.0, -7.0, -2.5802405082653763, -7.0, -3.1276392349882074, -3.494988973683168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.461048091670658, -7.0, -7.0, -7.0, -3.4916417934775863, -3.4674601095072637, -2.695287056508494, -7.0, -3.092106304605236, -7.0, -3.815710539788963, -3.4824447919182653, -7.0, -2.890261292987454, -3.166282067316571, -7.0, -3.3790852708537966, -3.4900990050633047, -3.4850112145785728, -3.4302363534115106, -7.0, -3.183459657707637, -7.0, -3.4243915544102776, -7.0, -7.0, -3.5143484893019368, -3.5640739789771465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0824263008607717, -3.648974961461483, -7.0, -7.0, -7.0, -7.0, -3.617576919481001, -7.0, -7.0, -7.0, -2.941511432634403, -7.0, -3.389972866217175, -3.9031442704095385, -7.0, -3.3916407034923877, -3.697017667097719, -7.0, -3.0191162904470725, -7.0, -3.3754807146185724, -7.0, -3.048053173115609, -4.168621213306193, -3.1646502159342966, -7.0, -7.0, -2.7516639462609866, -7.0, -2.6875289612146345, -7.0, -7.0, -7.0, -7.0, -3.6797191665895896, -2.658488381309017, -7.0, -7.0, -7.0, -3.0668847431297714, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2563595605320663, -2.7081375105769228, -2.9648879044212895, -7.0, -7.0, -3.1264561134318045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.454905809342959, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6611498572447867, -7.0, -7.0, -4.047122285721037, -7.0, -2.363441031461713, -7.0, -7.0, -3.415585383086003, -3.371437317404101, -2.5453071164658243, -7.0, -1.8015350689381235, -7.0, -2.6856137979674, -7.0, -3.0246908623554307, -7.0, -3.7396386867387204, -7.0, -4.031691168625146, -7.0, -7.0, -7.0, -2.537189226243645, -7.0, -3.314393957221963, -7.0, -4.158694118177861, -7.0, -7.0, -7.0, -2.4523277249361604, -7.0, -7.0, -7.0, -2.959327645972171, -2.920051321899959, -7.0, -7.0, -2.422972646823736, -7.0, -3.787938431279371, -7.0, -7.0, -3.0883133155880964, -2.5356393004678064, -7.0, -2.857935264719429, -3.067099481723916, -4.756689345987442, -7.0, -7.0, -7.0, -4.296230678487514, -3.205745540942662, -7.0, -2.7321926510062684, -7.0, -7.0, -3.264173628357079, -7.0, -7.0, -2.8756399370041685, -4.373371817181301, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040800061256529, -7.0, -3.8619822141108484, -3.709439574132411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5452204963930702, -7.0, -7.0, -7.0, -7.0, -7.0, -3.255754786643044, -3.2949069106051923, -7.0, -7.0, -3.330007700872759, -7.0, -7.0, -7.0, -3.5892608400865007, -3.0322157032979815, -7.0, -7.0, -7.0, -3.0132586652835167, -7.0, -7.0, -2.6572068680363374, -3.011993114659257, -7.0, -7.0, -7.0, -2.9347316108717187, -7.0, -2.6600889504627023, -2.9168748785386835, -2.649821463224565, -2.944975908412048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.965013450272248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2833012287035497, -7.0, -7.0, -7.0, -7.0, -7.0, -3.130816050034744, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4216039268698313, -7.0, -3.0464951643347082, -7.0, -3.0802656273398448, -3.32433390894172, -3.613418945034573, -7.0, -4.169089720187762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9954157985424152, -7.0, -7.0, -7.0, -7.0, -2.9858753573083936, -7.0, -7.0, -7.0, -4.341919002075212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1222158782728267, -7.0, -3.0318122713303706, -3.80174661921946, -1.9803280777535663, -7.0, -7.0, -7.0, -4.020133301096697, -3.0670708560453703, -3.935545050823815, -3.1290450598879582, -4.713431737151994, -7.0, -7.0, -7.0, -4.004321373782642, -7.0, -3.9739125704197047, -2.6230106014763095, -7.0, -7.0, -7.0, -7.0, -3.2350231594952237, -2.6516932756857856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.788875115775417, -3.03891806603037, -3.219060332448861, -7.0, -3.2748503200166645, -3.9566389814310416, -7.0, -7.0, -3.689996613293506, -7.0, -3.142389466118836, -3.3163897510731957, -7.0, -3.190378393991196, -2.3616019353117093, -3.8053649074664455, -7.0, -7.0, -3.41161970596323, -5.129615785186403, -2.8438554226231614, -7.0, -7.0, -7.0, -3.4746532533620624, -2.9457639231111736, -7.0, -7.0, -7.0, -7.0, -3.375846436309156, -7.0, -7.0, -7.0, -7.0, -2.7425287512507515, -7.0, -4.159705519859825, -3.4888326343824008, -4.699361850661637, -7.0, -2.446550673565175, -4.320814875622444, -3.7951149856303634, -7.0, -7.0, -7.0, -2.5264567654148817, -3.8033205235787544, -3.2659963704950794, -2.5967803035945445, -7.0, -7.0, -3.44216608578472, -7.0, -3.09968064110925, -7.0, -2.8920946026904804, -7.0, -2.508631725896454, -7.0, -2.5628873812938795, -4.297169380969235, -4.773888791889383, -4.276783384700269, -7.0, -4.714924620661709, -4.378016135540437, -7.0, -4.292510812271008, -3.881761148404959, -7.0, -7.0, -3.8326153443896276, -4.022032252601962, -4.396826789268784, -7.0, -7.0, -4.676062281090912, -4.9239586170161465, -3.56474494800163, -7.0, -7.0, -4.911306788581634, -7.0, -4.234314768012676, -4.113776283837032, -7.0, -4.3596837372363515, -7.0, -7.0, -3.931021759038731, -7.0, -4.202470152962895, -4.328787200354535, -4.200084063662152, -7.0, -3.791445017261999, -7.0, -3.757608568481492, -4.191925851711436, -7.0, -3.1607685618611283, -4.672716517725188, -3.5227571257978822, -3.0548318427136074, -3.6804261708581456, -4.333970933444835, -7.0, -4.634076546929765, -3.703033304733686, -7.0, -7.0, -4.361883587627972, -4.205781595442862, -2.971507781711256, -4.441396602854368, -7.0, -7.0, -7.0, -4.3778524190067545, -3.690550461510359, -7.0, -3.369180504365074, -4.4091169986649135, -4.530542045215246, -7.0, -7.0, -7.0, -3.726190060052768, -3.7973368007753496, -4.451559595114814, -7.0, -3.9234253686715865, -7.0, -4.327318057687924, -7.0, -4.307503169126945, -7.0, -7.0, -7.0, -3.996533561445376, -4.491067394653292, -7.0, -3.990580555633907, -3.752979452844521, -7.0, -4.09272844024296, -7.0, -7.0, -3.707591464521357, -4.301203678722446, -7.0, -7.0, -7.0, -7.0, -7.0, -3.99569368149844, -3.404320467221731, -3.492061604512599, -7.0, -7.0, -4.347583686308583, -7.0, -7.0, -7.0, -3.766784515497859, -7.0, -4.1000326290916975, -3.640978057358332, -7.0, -7.0, -3.657629431388952, -7.0, -3.3872118003137306, -7.0, -7.0, -3.3186197661495815, -7.0, -7.0, -2.8380090624639394, -2.7781512503836434, -7.0, -4.022799404511688, -7.0, -7.0, -7.0, -3.603887881296596, -4.789749884853146, -7.0, -7.0, -2.9489506102455483, -7.0, -3.2000292665537704, -7.0, -7.0, -3.4787107555127594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8514621949945393, -3.997517439414725, -7.0, -7.0, -2.726144810545967, -3.548635059814752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.521522538611938, -2.6508623548674484, -7.0, -7.0, -7.0, -3.864036182725775, -7.0, -7.0, -7.0, -3.3820170425748683, -3.5186455243303114, -7.0, -7.0, -3.2086428696191542, -3.101039111382258, -3.643945912748067, -7.0, -4.311117842662505, -7.0, -7.0, -3.2229764498933915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9306052271529284, -7.0, -4.168939213835978, -7.0, -7.0, -3.182557301304913, -7.0, -2.8318697742805017, -7.0, -3.6684791029325856, -7.0, -7.0, -7.0, -3.010299956639812, -7.0, -3.922465945298413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8192806469724814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.130976691605617, -3.2796669440484556, -7.0, -3.7812525942484565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2771506139637965, -7.0, -7.0, -2.716142518281689, -3.454387467146955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9500999337839797, -7.0, -7.0, -7.0, -3.2157336728643675, -3.229937685907934, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9853186730361374, -2.8898186685214093, -3.443888546777372, -2.943618158464063, -2.6281775374460494, -3.552789850192782, -2.496514518697745, -7.0, -2.8725447293769673, -3.100370545117563, -2.160686755849163, -2.9813712474524343, -2.2933625547114453, -3.168939213835978, -7.0, -2.143014800254095, -2.797860839395534, -2.1829849670035815, -2.6557785152248203, -3.4572761860613257, -3.6704314093606056, -7.0, -3.5688344803047265, -0.9718406418727065, -2.914078585389112, -2.812244696800369, -7.0, -3.353980309781697, -3.49996186559619, -7.0, -3.747567162737625, -1.9388055392584782, -7.0, -2.1639887869830687, -2.456534723937885, -2.538615619757788, -2.678670097637955, -7.0, -2.690955115144948, -2.506251281604838, -3.2415464805965484, -3.552668216112193, -7.0, -7.0, -3.530711837981657, -7.0, -3.371891600376384, -7.0, -7.0, -3.2150203546471214, -3.4553017716570764, -3.1931245983544616, -7.0, -2.8692317197309762, -3.7067177823367587, -3.6014816115028383, -7.0, -2.462397997898956, -7.0, -7.0, -2.954461794716341, -2.693726948923647, -2.8977645045116174, -7.0, -1.5923001540388062, -2.6856137979674, -7.0, -7.0, -2.062686419597646, -7.0, -3.2273926209158175, -7.0, -3.4102371919840464, -3.4649364291217326, -7.0, -3.402433346219312, -7.0, -7.0, -2.890909813992527, -7.0, -3.5188559765638336, -7.0, -2.851869600729766, -7.0, -2.163310488963686, -3.460747541844197, -2.501789322455909, -3.5896145406312665, -2.3894286169292163, -1.6407319773641893, -7.0, -7.0, -2.613136798211654, -7.0, -3.5806154692708105, -3.548635059814752, -7.0, -3.659250468772661, -3.293877950444278, -3.8254261177678233, -3.249442961442582, -3.2835524838345975, -3.994221805691542, -7.0, -7.0, -7.0, -5.004403065060992, -2.4533183400470375, -2.6720978579357175, -2.8536982117761744, -7.0, -7.0, -3.0260855683142416, -2.426185825244511, -7.0, -3.4565178578052627, -7.0, -7.0, -7.0, -7.0, -3.4721711466923635, -7.0, -3.0750490123810867, -3.044147620878723, -3.6196410730566346, -3.5581083016305497, -7.0, -7.0, -7.0, -7.0, -3.100140698866152, -7.0, -2.399577585458088, -7.0, -3.4942937686653326, -3.5352941200427703, -1.9109424931419006, -7.0, -7.0, -3.3334472744967503, -7.0, -7.0, -2.189097109071418, -3.6108730003800513, -2.78559673729218, -2.5631158250853248, -2.849009701991132, -3.042488005995828, -2.912753303671323, -2.912753303671323, -2.7451968221209206, -1.8281833736752127, -3.4533183400470375, -7.0, -3.539828558377898, -3.497067936398505, -3.1868151244474543, -3.4581844355702627, -2.3039292503046536, -7.0, -4.331912948773648, -7.0, -3.1844642893469906, -2.0910191968699166, -3.547528576459782, -3.553701021549961, -3.016824493667488, -2.8914259428479943, -3.3761205256094518, -2.824884805866878, -3.628491104967123, -7.0, -2.6026025204202563, -3.0453881832732153, -2.811306840081336, -3.8466463285771173, -7.0, -3.2089018206788085, -7.0, -3.909876817990393, -3.178545314511007, -3.4553017716570764, -7.0, -3.307282047033346, -7.0, -3.1277525158329733, -7.0, -3.5150786750759226, -3.597969275225808, -3.665393350279712, -7.0, -1.8511656596819284, -3.79778672138496, -3.023983672235201, -7.0, -3.451632947456991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.722428241979694, -2.6154590459716487, -3.2990439930688757, -4.18345072714285, -3.444513206334043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3037358890399062, -3.4435758797502576, -7.0, -3.1711411510283822, -2.0178964621040505, -7.0, -2.6225100655693763, -3.1397741716810974, -3.611684693756236, -7.0, -7.0, -7.0, -7.0, -3.233884108765886, -7.0, -7.0, -2.7565093254448008, -3.2554534234487273, -2.450864692379766, -3.9265996539070276, -2.517342544745865, -3.620760489994206, -7.0, -7.0, -2.85655897491841, -3.647969458362972, -3.5632555734352525, -2.935759103745312, -3.651447627154724, -7.0, -7.0, -3.1931245983544616, -3.38746101632035, -3.2948518494980625, -3.283188116453424, -2.2220224326748212, -3.4913149929920424, -7.0, -7.0, -7.0, -2.7365103260178008, -2.2853905932737097, -3.1032048709894418, -7.0, -2.64598337340893, -2.805614117901356, -7.0, -3.0088130090520893, -2.972819734053675, -1.9988403344727612, -1.5967229720048797, -1.9992951670372276, -3.407900540142635, -7.0, -3.214714574499518, -2.8937617620579434, -3.4771212547196626, -3.491261614450974, -7.0, -3.06620164592725, -3.3188977146274867, -3.0287745265000883, -2.675740163617544, -2.128131219761547, -2.511780557218919, -3.158060793936605, -2.912449813454987, -2.6695028341043434, -3.843053522128569, -1.3586094419154815, -7.0, -7.0, -7.0, -3.9073038488339695, -1.9867038916539217, -3.5033820634737327, -7.0, -2.739748101021452, -7.0, -2.6501131644435714, -7.0, -2.753229398871813, -7.0, -3.0856472882968564, -1.0289745558766008, -7.0, -4.394083775678255, -3.524493486633317, -3.8853502563578943, -7.0, -1.645094623553164, -3.852280692954708, -2.5770215296430306, -7.0, -3.5531545481696254, -7.0, -1.8027353006529854, -2.926856708949692, -2.928452752942272, -2.473535627784848, -7.0, -7.0, -1.5036393872946674, -2.7912694809102687, -7.0, -7.0, -2.507727401207717, -2.1722136039924793, -1.527240429179981, -7.0, -3.453776859690442, -4.018617292519441, -4.4880004497062025, -7.0, -7.0, -3.732096085685356, -2.9667282209873846, -7.0, -3.200818940961113, -3.4620761790758543, -7.0, -7.0, -7.0, -3.738003205183249, -3.7774182925111446, -4.005405755074863, -4.073993133323909, -3.7917520352585377, -4.031580128138727, -3.640878778701618, -7.0, -7.0, -4.136833264807149, -4.024690862355431, -4.084123279339492, -4.179120729609299, -4.375864714311806, -4.2031417191119855, -3.646060468555641, -7.0, -3.6149955887542284, -7.0, -3.552024726583321, -3.670653972304614, -3.408966412900081, -3.6340740254874686, -3.0810771401550445, -3.296665190261531, -3.7885077521028796, -4.247162809039331, -3.462048424905515, -2.948412965778601, -3.7373781989912187, -2.7789588305843886, -2.7000977046130537, -7.0, -7.0, -7.0, -3.058842915637728, -2.7426537306498884, -2.960550050051066, -3.4768750847585057, -2.8358386353693876, -3.238668921279138, -7.0, -2.838658761600265, -3.653309012938479, -7.0, -3.934245881023071, -3.5113150657669396, -3.8459657615454836, -7.0, -2.5037602347919004, -2.953775138981921, -3.9524839979613797, -3.4898179083014504, -2.3380941285590486, -7.0, -3.1738345463777593, -7.0, -4.233275391293944, -3.6783362467321803, -3.3213682553052477, -7.0, -3.4650852875574327, -3.991639492650799, -3.242658737113416, -3.805160901599434, -3.1262010075957805, -3.2429884121947947, -2.9323669403052204, -3.0876368391806537, -7.0, -2.7129639995853343, -3.387108699250326, -3.7774268223893115, -3.3975731161775657, -7.0, -3.496860487394368, -2.6670873338292944, -7.0, -3.4766867429456445, -7.0, -7.0, -7.0, -7.0, -3.657411014595813, -2.7114322715545685, -2.9233673942402945, -7.0, -3.3301092545928297, -3.240317420069045, -3.681693392004564, -2.795383396956165, -3.1835545336188615, -3.2012332086808746, -7.0, -3.2107932280693396, -2.8107028609471167, -7.0, -7.0, -3.896250562461638, -3.6497241859295224, -2.8433573784379553, -7.0, -7.0, -3.9223101632143957, -7.0, -7.0, -3.621176281775035, -3.7573960287930244, -7.0, -3.624797578960761, -7.0, -7.0, -7.0, -3.338933666773873, -3.8042485035940143, -7.0, -7.0, -2.7183434903473924, -7.0, -3.1202447955463652, -7.0, -3.3000517321200418, -3.100284367027806, -7.0, -7.0, -7.0, -2.994537104298498, -3.3783373256663736, -7.0, -7.0, -3.5666731376061165, -7.0, -3.3266430361026345, -3.6038297496598206, -7.0, -7.0, -2.686189234244024, -2.9057958803678687, -7.0, -3.9128329347228377, -7.0, -7.0, -7.0, -7.0, -3.0959844627642767, -2.8163241727106496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.353916230920363, -2.8978269506965932, -7.0, -3.148294097434746, -2.7861934963110553, -2.749388431581154, -3.336526440627234, -7.0, -3.274119346273105, -7.0, -7.0, -3.5776066773625357, -3.2732328340430454, -7.0, -7.0, -7.0, -7.0, -7.0, -4.101472117000238, -7.0, -3.5464192668351915, -7.0, -3.8597505631165796, -7.0, -7.0, -3.212523418522336, -7.0, -2.756805094427709, -7.0, -2.8389539801187342, -7.0, -3.051859685552474, -3.1456935239042205, -7.0, -7.0, -7.0, -3.5618166643189575, -3.3930005495543805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0225658278987413, -3.2352758766870524, -7.0, -2.982994454658664, -3.12602311790052, -3.034828915655837, -3.610180897473572, -7.0, -7.0, -7.0, -3.762453482363547, -3.5149460053080044, -7.0, -3.299045597055003, -7.0, -3.530583859645118, -3.2804265987495813, -7.0, -7.0, -3.166873950858819, -7.0, -2.965107585849056, -7.0, -7.0, -2.7559836877697665, -7.0, -7.0, -7.0, -7.0, -3.5079907248196913, -7.0, -7.0, -3.6546577546495245, -3.624488362513449, -2.53198955141255, -1.9252401149535792, -3.6098984156416383, -2.997659371069136, -7.0, -7.0, -1.150115877528334, -2.917916297847717, -3.6119356250401227, -7.0, -7.0, -7.0, -3.5150786750759226, -2.050910057856416, -3.719911064198339, -7.0, -3.569549464888704, -3.0611736932801077, -2.818005830532529, -7.0, -7.0, -3.0848442782402152, -2.773681984491958, -3.5577477416414682, -3.5394296891509516, -7.0, -3.523486332343228, -7.0, -7.0, -7.0, -7.0, -3.0667730370850257, -3.2107197156810017, -3.0050946750725487, -2.9509730248744774, -3.2803506930460054, -7.0, -2.9622509186326402, -2.994053063587675, -2.910090545594068, -2.900124268601545, -2.5476516583599693, -7.0, -7.0, -7.0, -3.179647524546354, -2.6833386019080185, -3.745777217889759, -2.8867323802739056, -3.255272505103306, -3.08290499419323, -3.5835388192543522, -3.2667019668840878, -7.0, -7.0, -7.0, -7.0, -3.2761169891635435, -7.0, -3.2607025791074236, -7.0, -3.2173523198813627, -3.725176301419137, -7.0, -3.612306930268642, -2.546542663478131, -7.0, -3.1358479320466763, -3.307904563405097, -3.2203696324513946, -7.0, -7.0, -7.0, -3.167654847476959, -3.6854730197227594, -3.249198357391113, -7.0, -7.0, -7.0, -7.0, -7.0, -3.36285930295868, -7.0, -1.9062675544164474, -1.8755613969294638, -2.1873216097386514, -2.8187535904977166, -7.0, -2.654577589539578, -2.658393026279124, -1.623862267891198, -1.1191864077192086, -2.932220013877119, -2.2273412552958414, -7.0, -7.0, -7.0, -3.3869268067955693, -7.0, -7.0, -3.6306312440205, -3.371191048907622, -3.045143615953909, -7.0, -7.0, -3.6121478383264867, -2.926959488380276, -2.8075672397864206, -7.0, -7.0, -2.1702617153949575, -2.3478177127089124, -1.223293990490537, -3.5953859808091417, -2.831549851995756, -1.624809027194788, -7.0, -3.2879360270447022, -7.0, -3.528685357587024, -3.13534470923348, -3.445059047392219, -3.356854116560244, -7.0, -7.0, -2.9576455913890936, -2.981441058262331, -7.0, -7.0, -2.533658357348511, -7.0, -7.0, -3.2080380493531804, -7.0, -7.0, -3.828595456371702, -3.9109444057499787, -1.2237725589362722, -2.264414658552054, -3.101861587983128, -3.1696744340588068, -7.0, -7.0, -3.318585010078825, -7.0, -3.676098904916701, -7.0, -7.0, -3.5814945422908995, -3.0062231255941225, -7.0, -7.0, -7.0, -3.0287745265000883, -3.525821952156663, -3.0304985232047095, -7.0, -3.722798396870905, -7.0, -7.0, -3.5366426000142708, -7.0, -7.0, -3.37706480804834, -7.0, -7.0, -7.0, -3.2843179154306097, -7.0, -3.539327063539375, -7.0, -3.746556361410369, -3.5469126431812423, -4.038560556604059, -7.0, -3.60406397266389, -3.2247538935401416, -7.0, -3.877601679729272, -3.520483532740792, -7.0, -7.0, -7.0, -3.063520999689991, -7.0, -7.0, -3.371191048907622, -3.560026248912892, -2.789345640720579, -7.0, -3.1141289085933184, -2.675869955318957, -2.0164082880213403, -7.0, -3.6888349324833243, -7.0, -7.0, -7.0, -3.343703931783211, -7.0, -7.0, -2.639066881040868, -3.000434077479319, -7.0, -3.4148062795010126, -7.0, -7.0, -7.0, -7.0, -3.5466660250701842, -7.0, -7.0, -3.557266528869904, -7.0, -7.0, -7.0, -2.7040844895524194, -2.410228078382359, -3.8066881964666717, -7.0, -7.0, -2.7195680242378324, -3.0110415256389502, -7.0, -3.5251744278352715, -3.2140486794119414, -3.34966598409663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.655124022144736, -7.0, -7.0, -7.0, -3.5374412834079476, -7.0, -7.0, -7.0, -7.0, -3.403120521175818, -3.667359546183087, -2.71393503626257, -2.889348398327215, -3.1815577738627865, -3.5179872030250783, -7.0, -3.4667193716815987, -3.382827209736365, -2.954289584880475, -7.0, -3.9556717184752674, -3.2943559851451605, -7.0, -7.0, -3.4009522278609032, -0.9394031466208936, -2.44973545423003, -2.7241665993820963, -3.6851144690465394, -3.0360297306565434, -2.7996850909091004, -3.5241363765925686, -3.6245914591268478, -3.7517408738109004, -3.2600713879850747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2180976641854886, -3.574224244616876, -7.0, -7.0, -7.0, -3.994518255666037, -1.9992476852440502, -7.0, -2.865972090376475, -7.0, -3.111598524880394, -2.7795309027230926, -7.0, -4.072102778885176, -3.776119799052988, -3.4712428012687067, -3.070037866607755, -7.0, -3.2279723558282107, -3.7926306849084326, -2.8933348950274076, -3.50745106090197, -7.0, -7.0, -1.2245175585181478, -2.8846065812979305, -7.0, -7.0, -3.0282458165724737, -3.239549720840473, -7.0, -3.5536403362313544, -2.425106776336422, -3.57966929355472, -3.3054588547786667, -3.3634239329171765, -3.57966929355472, -3.6428367959452066, -2.0805322372237627, -3.9372918723462416, -7.0, -3.6516656039229356, -3.449965321950027, -2.4913616938342726, -7.0, -7.0, -7.0, -3.793231447056521, -2.769623455004179, -2.9039577085231705, -3.2105860249051563, -7.0, -7.0, -3.243781916093795, -7.0, -7.0, -7.0, -3.3790636720075073, -7.0, -3.020084925984292, -7.0, -7.0, -4.323674841477321, -7.0, -7.0, -7.0, -4.434281408136301, -7.0, -7.0, -3.5409339789550547, -3.7196129897309733, -3.6106246800650714, -7.0, -7.0, -4.139083725519777, -4.1064926219915625, -4.310587114890355, -7.0, -7.0, -4.334589446975158, -7.0, -7.0, -7.0, -5.392842865757514, -7.0, -4.264806021368701, -2.846449579949132, -7.0, -3.780560319410449, -7.0, -7.0, -3.492683577744274, -7.0, -3.7985038995469633, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6477321656644315, -3.9554472105776957, -3.3408405498123317, -7.0, -3.4395782859015425, -3.695886449894574, -3.71796159904163, -3.0837414400078025, -2.7672644940171898, -3.097344090487375, -2.602749911220061, -3.4008141922675588, -7.0, -7.0, -3.4189638307036225, -2.8908507580818754, -7.0, -3.046827431231041, -2.522956290942878, -7.0, -2.608817669502134, -4.119964833979976, -7.0, -7.0, -3.295670568078613, -3.173191873622384, -5.106716018172097, -7.0, -7.0, -7.0, -3.5369930805939256, -7.0, -4.330846499235686, -2.673971678762711, -7.0, -7.0, -3.5972013888491157, -4.474463945321284, -4.324940602014902, -3.8305886686851442, -2.048802363539486, -3.182414652434554, -3.188312816947483, -2.8801377283430174, -3.582404298019028, -3.0019355292147516, -3.6901167708948885, -2.5468852480836555, -4.273678243554927, -7.0, -3.8238653093245114, -3.6821952345400715, -4.051171823995435, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2502154969062373, -3.2242740142942576, -2.497366198100159, -7.0, -7.0, -2.861077351252817, -3.4139699717480614, -3.377032909310364, -7.0, -2.9202277114569286, -7.0, -3.5852748953242775, -2.756382505621472, -7.0, -7.0, -7.0, -7.0, -3.265348565194829, -7.0, -7.0, -7.0, -7.0, -3.582404298019028, -3.659440781870318, -2.4021897107849237, -7.0, -3.035162808562191, -7.0, -3.0519239160461065, -4.324693913861775, -3.6725288583784526, -3.806864804730897, -7.0, -7.0, -2.640175541918576, -7.0, -3.2759253069068666, -7.0, -3.3400473176613934, -1.9949680589177388, -7.0, -7.0, -7.0, -2.8584369333461987, -7.0, -7.0, -7.0, -3.3085644135612386, -7.0, -2.886490725172482, -2.6780278487139313, -7.0, -7.0, -2.75190866845489, -2.9344984512435675, -7.0, -3.1821032558041695, -7.0, -7.0, -4.02649240705284, -2.7331080601187026, -2.90757760381829, -2.905256048748451, -3.222261133522809, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9909600996821992, -3.1133224880382615, -3.1500396976551133, -7.0, -2.910333290266367, -2.678173221476225, -3.2364112877439664, -7.0, -3.457711625975908, -7.0, -3.4362686889120932, -3.3184807251745174, -2.8749003837892295, -3.865991800126275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2902572693945182, -3.269979676645324, -3.386986195869725, -7.0, -3.9357087478426633, -3.2565115772188546, -3.865340905624584, -3.266231696689893, -7.0, -3.3554515201265174, -7.0, -2.7069614941736275, -3.391052786139976, -7.0, -7.0, -2.753104075187242, -3.605412798153051, -3.0250536617257993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3760291817281805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.716086853774832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4205650352890364, -3.2801228963023075, -3.27600198996205, -7.0, -7.0, -3.4234097277330933, -7.0, -7.0, -7.0, -7.0, -3.5599066250361124, -3.6422666189026733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.404833716619938, -7.0, -7.0, -3.211525040366984, -7.0, -7.0, -7.0, -3.924486043733915, -3.094046659341039, -3.0824263008607717, -7.0, -7.0, -7.0, -7.0, -2.88218288763027, -7.0, -7.0, -3.2824710539263124, -2.4018721097306575, -2.5786392099680726, -2.008126826230696, -2.584331224367531, -1.5683448430275597, -2.3942765267678214, -2.2419085435453248, -3.366947995954321, -2.207595901910711, -2.920123326290724, -7.0, -3.2909245593827543, -3.016476194280864, -2.7769431981946755, -7.0, -7.0, -2.928011577509416, -7.0, -3.6975344625969604, -2.7614266329616655, -3.3012470886362113, -7.0, -7.0, -3.4387796033573776, -7.0, -7.0, -3.6339731557896737, -2.20682587603185, -7.0, -2.7196499416916193, -2.509090460794704, -2.6368220975871743, -3.0867156639448825, -7.0, -2.731387283168788, -2.2616593037647066, -7.0, -7.0, -7.0, -7.0, -3.3236645356081, -3.6822353569025643, -3.6222584422236412, -2.931966114728173, -7.0, -3.2597133053907306, -7.0, -3.8143142002074595, -2.3138672203691537, -7.0, -7.0, -3.572510184908823, -7.0, -2.829303772831025, -7.0, -7.0, -3.4590907896005865, -3.5017437296279943, -7.0, -7.0, -2.588047496986083, -3.0246908623554307, -2.062686419597646, -3.36285930295868, -7.0, -7.0, -3.4267475581811215, -3.6599162000698504, -3.461423486699566, -7.0, -7.0, -7.0, -2.6154991488833446, -3.5471591213274176, -3.393399695293102, -7.0, -7.0, -7.0, -2.5902286212401577, -3.1894903136993675, -2.2246834068778054, -3.204662511748219, -2.6397354399672364, -3.4149733479708178, -2.3658134210109636, -2.1994492580536797, -3.3100557377508917, -3.2598326990634834, -2.3010299956639813, -7.0, -3.0234239480789418, -7.0, -7.0, -3.037692040279623, -3.0619234632803045, -3.4314441816172123, -2.4496712047318874, -2.881330302016822, -3.8085410523501118, -3.3081373786380386, -3.905202028662319, -3.3176455432211585, -3.583643395030574, -2.782293422809544, -1.6818208377310702, -2.866118484306833, -2.921166050637739, -7.0, -3.4199351066265016, -2.377541937168901, -7.0, -3.1970047280230456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.072176344478966, -7.0, -3.5847268854052863, -7.0, -7.0, -7.0, -3.2005769267548483, -7.0, -2.067832201725068, -7.0, -2.2866248553317368, -7.0, -7.0, -2.727744530836107, -3.01061489979727, -3.197280558125619, -7.0, -3.1794081515138357, -7.0, -3.226342087163631, -3.1177682949263725, -7.0, -3.5575072019056577, -3.2416709737841294, -7.0, -3.4598948527451516, -7.0, -3.2990712600274095, -3.292254543224013, -2.800717078282385, -7.0, -3.17260293120986, -2.8603380065709936, -7.0, -3.2528530309798933, -7.0, -2.6134281423890964, -3.267406418752904, -4.305071783022292, -7.0, -3.0251009610468134, -2.567232427953575, -7.0, -3.166282067316571, -2.4622217777780953, -3.1161094140633447, -3.062707303658236, -2.9587231112647787, -3.4718781993072905, -7.0, -3.4371160930480786, -2.7755699977216106, -2.5912872650584995, -3.4575791469957626, -7.0, -3.3998034713645615, -7.0, -7.0, -7.0, -2.7899163079479923, -7.0, -3.1352598985156583, -7.0, -3.136879039875517, -7.0, -7.0, -2.589621112934052, -2.618962813876879, -7.0, -2.241795431295199, -7.0, -3.4385950832263315, -7.0, -3.188084373714938, -3.266936911159173, -7.0, -2.935003151453655, -3.286905352972375, -7.0, -3.0051805125037805, -3.2677347723218557, -2.993083360698062, -4.165956187202987, -4.298890846803723, -3.174931593528443, -3.2757719001649312, -3.303196057420489, -7.0, -7.0, -7.0, -3.209649035368229, -2.970036776622557, -3.4434194617828173, -7.0, -7.0, -3.225567713439471, -2.951580344903392, -7.0, -7.0, -2.676083645364622, -3.833994955928646, -7.0, -7.0, -7.0, -3.249198357391113, -3.330819466495837, -3.3170181010481117, -7.0, -2.7287594751678745, -3.7724684030532805, -2.2935835134961167, -7.0, -2.2353562558730182, -3.460747541844197, -7.0, -7.0, -3.5595874668502234, -7.0, -3.945788525546071, -3.034828915655837, -4.1181820269590945, -7.0, -7.0, -7.0, -3.037625669914719, -7.0, -3.1066158013985747, -1.5038345977629068, -3.4266196859018763, -3.428134794028789, -3.3265406685165617, -7.0, -3.103632705209741, -2.4826537433196236, -2.6227894761867065, -7.0, -7.0, -3.407900540142635, -7.0, -2.84432182089448, -7.0, -2.130735706961367, -2.5167404716478536, -2.2761081441521505, -7.0, -2.9545640899663494, -3.3497328145444505, -3.1715314404115604, -7.0, -3.268237482267674, -7.0, -2.8666810784419927, -2.146216658162354, -3.4761067168401913, -3.050852165633224, -2.7871567366704566, -2.902788288833299, -2.8790958795000727, -3.1705550585212086, -2.6269815818454347, -4.285009192878731, -2.2353738295148626, -7.0, -7.0, -7.0, -3.2294898606677935, -1.6241173588098425, -7.0, -7.0, -2.3854871092452794, -2.9542425094393248, -2.387800377321158, -7.0, -3.3080661653096994, -3.327767489902729, -2.89707700320942, -2.041140603609944, -3.327767489902729, -4.164626434613411, -3.326864749797675, -4.319602211530264, -7.0, -2.3408645645477133, -3.3600910199987775, -2.0708827673325994, -7.0, -3.3592661646067485, -7.0, -2.5408105809460935, -2.6237963756878444, -2.1853140753427507, -2.6589648426644352, -3.204662511748219, -7.0, -2.511397165034557, -7.0, -3.016824493667488, -3.0346284566253203, -2.8371937326899355, -3.2730012720637376, -2.152021152002349, -7.0, -3.1920095926536702, -4.005019553400609, -7.0, -7.0, -7.0, -4.721761167105553, -4.0916669575956846, -3.9366142619752114, -3.8243211248507714, -3.8450247113790064, -7.0, -7.0, -7.0, -4.125700797303299, -4.701442772773218, -4.11634203918834, -7.0, -4.683533319875132, -4.229185075523011, -7.0, -3.6356244675962635, -7.0, -5.088860490105424, -4.298525595321999, -4.244611065056592, -7.0, -7.0, -4.191311257590993, -7.0, -7.0, -3.7028109519217565, -7.0, -3.987996774847518, -4.34523646004688, -7.0, -7.0, -7.0, -7.0, -3.769923543522596, -4.214313897424399, -3.7221401254574156, -3.3562171342197353, -3.981202277975283, -3.3976922977836024, -2.9883111708948853, -7.0, -4.350228629754866, -7.0, -3.6045425009088827, -2.8609764989868767, -3.322219294733919, -4.157033449661202, -3.167917176154837, -3.411220843713945, -7.0, -3.499656540441669, -7.0, -7.0, -7.0, -3.790408325715892, -7.0, -7.0, -3.352581534731333, -3.580778595978624, -4.628158948559419, -3.255754786643044, -3.076057595762826, -3.2755416884013093, -3.730121737157226, -7.0, -4.562112650103821, -3.813547631336185, -3.9442358437934804, -7.0, -3.866622040290432, -7.0, -3.312952693706642, -3.1048284036536553, -3.2415962821540716, -3.5721743136130595, -3.625231195952194, -3.9003124969837266, -3.3326404103874627, -3.430114163564744, -3.881883722962457, -3.6723749787460793, -3.793229505047091, -7.0, -2.998782269831736, -2.8329170498173046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7856572123457646, -3.225050696138049, -2.890394401911138, -7.0, -7.0, -3.585009279902461, -7.0, -3.1893499243391976, -7.0, -7.0, -7.0, -3.658393026279124, -2.714329759745233, -3.0109356647043852, -7.0, -7.0, -7.0, -3.7561033715851053, -7.0, -7.0, -3.8497264441963277, -7.0, -7.0, -2.9836262871245345, -3.6466977312993345, -7.0, -7.0, -7.0, -7.0, -7.0, -3.842928048908947, -4.318362505336116, -7.0, -7.0, -2.9459159885729576, -7.0, -3.60151678365001, -7.0, -3.4323277922616042, -3.674240933242811, -7.0, -3.237040791379191, -7.0, -3.4263485737875077, -3.769820257763592, -7.0, -3.4496326504700745, -7.0, -7.0, -3.4709981696608736, -3.429752280002408, -7.0, -7.0, -2.7546349672131645, -2.9397188823541045, -7.0, -4.17834373897622, -7.0, -7.0, -7.0, -7.0, -3.2808195391969055, -3.1210123910935756, -7.0, -3.4308809464528913, -7.0, -7.0, -3.297760511099134, -7.0, -7.0, -3.208306962353663, -2.966904013129798, -7.0, -7.0, -3.5619357633137816, -2.8999895331008956, -3.4171394097273255, -7.0, -3.5498815946498814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3847117429382823, -7.0, -3.1832698436828046, -7.0, -7.0, -7.0, -7.0, -3.9409644934927996, -7.0, -7.0, -3.7143776660363743, -3.752969865029084, -2.887842265107357, -7.0, -2.854002233126989, -7.0, -3.1365620365899805, -3.455758203104137, -7.0, -7.0, -7.0, -7.0, -3.568369372971568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8862086241674976, -3.288249225571986, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5476516583599693, -3.43568513794163, -3.3648010569597884, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2979792441593623, -7.0, -3.667826378950711, -7.0, -3.3234583668494677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165883436770777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8806802357832058, -3.939069749923424, -7.0, -7.0, -4.317740742249334, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.513483956704257, -7.0, -5.144446546742706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.913713211514432, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.164501561309568, -7.0, -7.0, -7.0, -7.0, -3.8053649074664455, -3.722057771331464, -7.0, -7.0, -4.225474049711422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.2329097508568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.392169149489736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.799977736388289, -7.0, -7.0, -7.0, -3.3506356082589543, -7.0, -7.0, -3.899929882727864, -7.0, -2.274619619091238, -2.3257818431448523, -7.0, -4.2200601211412225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8021577531869615, -7.0, -3.764325605625984, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092018470752797, -7.0, -7.0, -7.0, -7.0, -3.5536767484400786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.572816593786742, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276138069047766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7256394326735376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8133808067338557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2016701796465816, -2.954483717155552, -7.0, -7.0, -2.783379443019426, -7.0, -7.0, -5.236669914329181, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.646364510503877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335277325031929, -7.0, -7.0, -7.0, -4.41814378957331, -7.0, -7.0, -7.0, -4.033021444682911, -7.0, -4.004622265700783, -7.0, -3.896691526562884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6744937172963503, -7.0, -7.0, -7.0, -5.135021279538261, -7.0, -7.0, -4.307217829203142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.23792185409128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8489277132270785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.260756888802261, -7.0, -3.8980360208904115, -7.0, -7.0, -2.9725375579441833, -3.840670561333409, -7.0, -7.0, -7.0, -7.0, -2.8928363526263907, -3.794418330874141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.51615180913224, -7.0, -7.0, -4.128550039238989, -3.8245452395328265, -7.0, -3.7134065321676912, -7.0, -7.0, -3.9298785236567833, -7.0, -4.885779479387615, -4.018617292519441, -7.0, -4.324261872133069, -7.0, -4.399820768420558, -7.0, -7.0, -7.0, -4.927514077384218, -7.0, -7.0, -7.0, -4.275672746981688, -7.0, -3.844949113517317, -7.0, -4.349102608563031, -7.0, -7.0, -7.0, -4.7811950965511025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.377988853736994, -4.592502448664263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.490075587280986, -4.68911342704763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.995828171486707, -4.4892762842812886, -3.991155335155191, -7.0, -7.0, -7.0, -4.4829497689403945, -7.0, -5.407004882289126, -7.0, -7.0, -7.0, -7.0, -7.0, -3.748011735352916, -7.0, -7.0, -7.0, -4.602418136560929, -7.0, -7.0, -4.6472509010376575, -4.96053736742071, -7.0, -4.145231378313219, -7.0, -7.0, -4.6181108817371745, -4.315928382610187, -7.0, -7.0, -7.0, -7.0, -7.0, -4.482845010663455, -7.0, -7.0, -7.0, -7.0, -4.059771617303871, -7.0, -7.0, -7.0, -7.0, -3.1746411926604483, -4.502747942346888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7492337269818146, -7.0, -7.0, -3.527361337086945, -5.097857477901066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.273371711989729, -7.0, -7.0, -3.526597709103452, -7.0, -7.0, -7.0, -7.0, -7.0, -3.287577809078705, -7.0, -7.0, -3.7431176252147416, -7.0, -3.6462076122066853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.006693535071508, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2676409823459154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5126843962171637, -7.0, -7.0, -3.3281756614383227, -3.373095987078727, -4.069075809766398, -7.0, -7.0, -7.0, -7.0, -7.0, -4.076349117493459, -7.0, -7.0, -7.0, -7.0, -7.0, -3.887701675781762, -3.7797527706739227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4114345021650045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9804578922761, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.837998551821702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9091680930993435, -7.0, -7.0, -3.6340740254874686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.767910393707072, -5.229725346362544, -4.5307067195722155, -4.4515868904569045, -3.9996626521208603, -3.461849389656668, -3.5692390146048285, -3.3433318497708067, -2.7351867426264027, -2.1393966074651254, -2.638726900999912, -7.0, -4.5312003683301665, -1.3374695167229265, -2.171377928374108, -3.524095618099355, -4.532068646024828, -5.2296306555085055, -3.6984280755915644, -3.928705586311121, -1.5241725325718243, -3.1333497230802343, -7.0, -2.8831684774014112, -1.4881048331027253, -3.193596844909757, -3.850184028210951, -4.451502439935573, -2.8346902259765696, -3.2971851752651826, -3.783400727102669, -2.2342360669286863, -3.7128970270359547, -4.531006045114355, -4.627956975499418, -3.868892214759676, -3.341213782664629, -3.868496215892929, -2.352844087054004, -3.661387977649986, -3.2426783089692313, -3.3729171146923997, -1.6996029808111621, -4.27589207337761, -3.3166248501806437, -2.745382544818521, -3.2143138974243994, -2.7315711941519254, -3.617542423019308, -4.085351749338937, -3.7050482678914456, -3.439276652216932, -3.228232597940259, -1.4560171082838964, -3.4871989986746286, -2.1186212285496846, -2.500377449850352, -3.5144915594308066, -3.296328397315685, -2.924955443759352, -4.117363092185824, -4.38644290749695, -4.085407815287446, -4.752890597646411, -3.3615185485382044, -3.0440621075592937, -2.207799803280512, -3.9289869711634, -4.451725046806695, -2.9222265497856523, -4.627665355034582, -2.6902460104127837, -2.858048190695858, -4.083835226301192, -3.0733314645210617, -1.7736859244554088, -4.27567727232233, -3.008209698949563, -7.0, -4.026201186263154, -2.3945680807975416, -3.413964898303298, -3.8687032022785366, -7.0, -3.4429498695778618, -3.7396386867387204, -3.2273926209158175, -1.9062675544164474, -3.4267475581811215, -5.2329097508568, -7.0, -1.7301281803040465, -1.1980612628600098, -3.184018357858188, -3.5666244821811137, -1.8624180067027438, -2.0704873719767787, -1.911394810203503, -1.6789184877903949, -2.7724012161291096, -1.6064136756368392, -4.231247798947839, -7.0, -4.928656965002814, -2.494193733751878, -4.150595275965512, -3.0940987904485904, -3.663993632411139, -2.601755778137239, -1.9729304251003044, -3.78366115979566, -4.6283122830844565, -3.2537230464472198, -3.024641165714816, -2.3644683890954155, -3.8889576967672497, -7.0, -2.5709072990808, -2.647827581642871, -1.8846664940198277, -3.322637813146819, -2.466400168803679, -1.3317879916750461, -4.628858735758181, -3.177237964019352, -4.452872092466737, -2.7580586501388784, -3.499279676883177, -3.0095267723266406, -2.868443476147031, -4.752875253901097, -3.768587073814598, -1.9684173033680894, -2.773791504712906, -5.229530823874927, -4.530770695354899, -2.6198348288245152, -7.0, -7.0, -4.627647442132109, -4.02583304907565, -3.974337673992178, -2.4398045098919963, -3.101560301504318, -1.4639382574859172, -2.45674800723797, -3.147770834093524, -2.719600072489159, -4.5308039590378035, -4.151058141571291, -3.27741564211462, -3.613178490533262, -2.3620266625077564, -7.0, -4.116421256664951, -3.7686738168837577, -1.7520187049041693, -3.9509180044856396, -5.229597380847068, -3.2373253580656325, -2.9959997591277068, -3.928915363223554, -2.8928805454201445, -3.7855789489089666, -3.421702618946589, -3.265690002399037, -3.560964280516006, -2.8922941135451614, -3.7856196070000547, -3.6743456394383287, -1.677603353560154, -4.23054854221511, -7.0, -7.0, -4.0271099660758445, -4.531486580994901, -3.8322508140124287, -4.326663506724679, -2.669061616792209, -3.5142053720257787, -3.1250865563789247, -4.752652708654161, -2.3486841474975146, -1.4942297215720177, -3.6998173287940737, -2.605006709269838, -2.6742166859433936, -3.588745224405397, -3.140540987427616, -3.3346903802212804, -2.955886190732576, -3.374340940274877, -3.630466013966421, -2.5414358040496436, -3.908423738438037, -2.7241079430172648, -7.0, -1.9848259138289839, -2.824080049897986, -1.965233253817691, -5.230165260011151, -2.8173730283240284, -4.384545412762144, -3.4231515058214765, -4.452736852686558, -3.5604103496028143, -4.5314610339601105, -4.531826213727618, -2.8539349680493045, -3.2893355334158763, -5.229505222323249, -3.0408228694431076, -2.7029168150662946, -2.7522016590342444, -7.0, -4.627603936292747, -3.7989676263398766, -3.974516809880292, -4.385016090135945, -4.189242687350635, -4.928917920853296, -3.9755568958997354, -2.814726625496455, -2.8219869178471346, -2.5904656771525985, -1.7170450814253624, -4.928526428253506, -3.7118838850261935, -2.9376227838703515, -3.356525550338001, -4.6276551191807815, -4.6279544182762935, -3.8914817038395197, -3.5992151551499463, -4.232780179346588, -7.0, -5.229566663511999, -4.627959532707486, -4.452139252352545, -5.229615298289249, -4.3848524341177, -4.232983411537435, -2.22825463986061, -4.928600659844524, -4.275457246836364, -7.0, -4.385146459387118, -3.9300851841571225, -3.686799641509546, -7.0, -3.7839316401571788, -3.5329266541701796, -3.4926994489574796, -2.437204435651293, -2.5524198775407516, -2.9769304845704574, -4.752757600507165, -4.530635055505357, -2.0900399089956823, -3.1998313305233927, -1.7864002085937734, -4.152043602487651, -2.5163393966479584, -3.568548612811087, -3.6503458731237406, -4.276145095448474, -3.0374119207946, -1.722654040330429, -2.121679960668872, -2.5814207285366333, -2.795850342116538, -2.694276063274084, -2.9468819253369065, -4.1885654617274, -3.569241560181558, -3.159716282926921, -3.0144572790295707, -7.0, -3.738882805567102, -3.9769126735719555, -4.628238178156956, -4.118885103297191, -5.229661368317959, -3.126273496084421, -2.850636434350743, -4.001540288088415, -3.6225122309912363, -3.9538029130833663, -1.7477115397560063, -1.8644581722393818, -3.423614458082382, -2.4548912453634877, -4.5309497774256355, -3.4181482539720984, -3.088440220901794, -3.5341581521382097, -2.7888262431370867, -3.1908034736140474, -3.256702871095842, -3.455030221014262, -3.3558596798223332, -3.216860907533353, -1.5039869121961962, -2.2391789040947567, -3.974327435423617, -4.9284829072832395, -5.229535944004162, -2.3325587394963927, -2.836391940660465, -3.8154934557532534, -4.151798722592861, -3.377404915549636, -3.7678030494335566, -3.3884513797296045, -3.8687696214434575, -2.0992099681174743, -3.4455378508490546, -3.31229973600576, -3.162950773914828, -2.951455114707749, -2.09443454153178, -1.5546954363548962, -2.2017314834669692, -4.151959440597039, -2.8555712833674027, -2.3541901018916573, -2.652826800476945, -7.0, -3.3619778278554406, -4.116188673979431, -3.1611439385978923, -2.8326728977407982, -2.9248458868910823, -3.441210993482343, -4.752701320223626, -7.0, -3.162417568236465, -4.026175631261122, -4.000525944129182, -4.085084062103758, -3.2392293856005003, -4.276247284790318, -1.9959062547102917, -7.0, -5.229715110508744, -3.03301518820464, -3.394550649707553, -3.842428939473374, -3.1894226316376413, -2.9949205202944613, -2.6073260527437156, -2.655619817172903, -2.0428200167086685, -2.180735816721301, -2.651473316642036, -3.5059183613264397, -2.95005010742846, -2.9245662046369683, -2.81733848745083, -2.47438284827198, -3.7748019919787903, -2.511100633731271, -2.5121408620073256, -3.522613261968787, -3.318778615632663, -4.334915948315707, -2.885445455825539, -3.2206587681211514, -2.4188872035926767, -2.3019444805059224, -3.9183654379299813, -2.952604003896067, -3.1900867571876605, -4.003642970457874, -2.053037863611757, -3.4712988104094005, -2.7121713616353462, -3.446623958820909, -3.481165275721802, -4.330317365509652, -3.6901553555257225, -3.9049023407213768, -2.923693671895851, -2.924612032671514, -2.0264030876062473, -3.5323211420823304, -2.6064965269485283, -2.3130636356412113, -2.702026582792653, -2.400854247259087, -2.3021270370426237, -2.943235703699528, -1.0662335505085947, -2.8368059648499044, -3.520173535708888, -2.9944542210356926, -1.8677389543993326, -1.8010976657860946, -4.056465254980514, -2.0815386661433966, -2.035607069257544, -4.752888040393171, -2.489341120532883, -3.1055665756655806, -4.1262563229823215, -4.754432433893692, -2.0107652729108403, -1.165977904281495, -2.4000807260175354, -4.327218404614085, -3.3428372865598073, -4.116554105154213, -2.218890315867444, -3.8818236174163134, -2.307957045494282, -2.8572315530485044, -3.455713751383308, -3.9074855796797707, -2.8801959980434404, -2.5796857514914913, -2.4603389393750867, -2.9011418058474736, -2.2379135844464617, -2.605961594892811, -2.3220357412983232, -1.6723016903916712, -3.3796195458659186, -1.741856805260137, -2.349371214094059, -2.6537124603849924, -2.356584118819276, -4.753491134989102, -3.0558232833751444, -2.1688958897764117, -2.879093575458894, -4.45193219896035, -5.229758611221373, -7.0, -4.928925593652149, -3.8435068516736086, -1.378056211132438, -3.0431948924722545, -1.7958326537414153, -4.188752123630888, -3.31387992033792, -2.4240244874694508, -2.663457086695989, -3.2887114923125513, -4.054091894984775, -2.8703715256338183, -4.928864207465377, -2.268350538181473, -2.61462290914302, -3.5679975423604118, -4.233924659610991, -2.761746516558966, -3.689603110337512, -2.8123574644378384, -4.629547205832985, -4.02665326111819, -3.063892314170801, -4.116926885756776, -3.7997386616885427, -3.741609018477117, -2.4867864709381777, -7.0, -2.8819088886180406, -7.0, -4.025919998502018, -3.0112411831706627, -1.8461171517183268, -2.0005574162607793, -5.229638333914494, -3.612087216539411, -2.264543971936078, -4.453397341833707, -2.878744437967794, -7.0, -3.17516835576208, -1.7817445817033408, -5.229786756419653, -4.116145210655378, -4.058486760696795, -3.079548100481859, -2.883501347796778, -3.8327438790877433, -3.36923873849768, -3.141342687508441, -3.908712191721561, -3.0045477615939205, -2.093744898972794, -3.1659764148756198, -4.752698761855619, -2.6977850942665635, -2.7328058051535415, -4.330538057138943, -2.370587673923368, -4.628728568774205, -4.929114813125132, -3.3845767907683544, -3.191986755816186, -1.484563928788008, -2.730445584805495, -2.7317045750351814, -3.491987848930919, -4.531981896330715, -3.9239147590658896, -4.116806915962344, -3.2259103952026758, -4.276270274078892, -3.0236537634194707, -2.363953901817385, -3.5599702588597113, -4.3265201921035406, -2.4050707803378453, -1.5619018309927175, -3.036822159992723, -3.6901403652094, -2.5607880199041153, -3.32701565249362, -3.361058984763492, -3.2493537988389694, -2.546989318695974, -2.856906803417547, -4.153082804361832, -3.8700933294312776, -4.451661090997188, -5.229635774460915, -3.015604410495885, -3.5823815773367187, -3.0459745835329053, -2.8597765299970876, -2.191526832708817, -3.407487299358585, -3.010496569131057, -2.5530187035215763, -3.3476176979760814, -2.7901509501858306, -7.0, -3.2154926659956033, -4.75251196027259, -2.6323316733428355, -2.8393027327129636, -3.684291672207031, -4.928672319688248, -2.832127070576861, -3.043464350877091, -2.222872748808266, -3.7540321847750318, -7.0, -5.2297202284658, -4.752560587598014, -4.627916058122411, -4.752719228377702, -4.531139012496997, -2.82487074756354, -4.1913824121648675, -3.314113533503361, -4.0845073368306215, -4.026773224566896, -3.999644755141952, -3.815434696709049, -4.189796460324443, -4.6287362267356755, -3.02980974554449, -3.7701610584356504, -2.932882805129326, -3.589664195567082, -4.035729838034267, -3.712397131406715, -4.530716956330775, -3.3617504942690473, -3.888284185954415, -7.0, -2.640755354769382, -3.4827434594492797, -3.5406792623976844, -3.437378050057053, -3.8735126691141897, -3.4865291479340192, -4.229914666155714, -4.230057880349691, -3.702597774525026, -4.530821869196451, -3.3530464870062326, -3.5081331656581813, -7.0, -4.530558259451653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.619927710291468, -3.227372442289636, -2.6587266773270137, -3.471398404213118, -3.1204093945560682, -7.0, -7.0, -1.8315401537011429, -2.65452031968575, -7.0, -7.0, -7.0, -7.0, -7.0, -1.917451180863874, -3.1736024586519864, -7.0, -3.0893751608160995, -3.101651043953959, -3.592398846115564, -3.5435714239623652, -7.0, -3.080896934973246, -3.6154239528859438, -7.0, -3.6512095798542563, -3.592398846115564, -7.0, -7.0, -7.0, -3.1990234256365437, -7.0, -2.2265999052073573, -3.204798038190855, -3.3997602257103656, -2.945591667032007, -2.879243907103876, -7.0, -7.0, -7.0, -3.3039516339434503, -2.7721382666011203, -3.5444401373176926, -7.0, -3.773274348337454, -7.0, -3.351699700405266, -2.8498460752365147, -3.441145047559696, -2.538346668680622, -3.4751867549424627, -7.0, -2.878636673026517, -2.836482357458148, -7.0, -7.0, -7.0, -7.0, -7.0, -3.206353560072406, -2.757100662119184, -7.0, -7.0, -3.1190083104691966, -7.0, -2.8686444383948255, -3.5460488664017342, -7.0, -7.0, -3.1513826204220323, -7.0, -3.0002604985473904, -7.0, -7.0, -2.7795964912578244, -7.0, -7.0, -7.0, -3.4406729882937586, -7.0, -7.0, -1.8755613969294638, -3.6599162000698504, -7.0, -1.7301281803040465, -7.0, -1.5202604816104612, -2.910090545594068, -7.0, -2.5536403362313544, -1.8445067608461325, -1.895128911244188, -2.039514942039481, -2.2020469740330593, -2.1415542841654776, -7.0, -7.0, -3.5017437296279943, -2.7609607093960578, -3.509202522331103, -3.710286647702891, -7.0, -3.0670708560453703, -3.470883961069449, -3.263399331334002, -7.0, -3.1299046237151233, -2.9224140241456342, -3.1297865345203397, -7.0, -7.0, -3.690550461510359, -3.318272080211627, -2.0919808222345555, -3.590507462008583, -3.0999025155123463, -2.3331897709212175, -7.0, -3.5079907248196913, -7.0, -4.102716625314743, -3.6082050077043264, -2.6618915263256966, -3.0526298252227178, -7.0, -7.0, -2.774459337692739, -3.1545000516787205, -7.0, -7.0, -3.3366931627613803, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1735100063936486, -3.9085922388475693, -1.923809015867687, -2.370547783660302, -2.7950685767307784, -3.058510378051891, -7.0, -7.0, -7.0, -4.149865453026261, -7.0, -7.0, -7.0, -7.0, -3.1117027513874906, -7.0, -7.0, -3.667733052533267, -2.722428241979694, -3.2187979981117376, -2.6728159545616648, -7.0, -7.0, -3.4079854213081364, -7.0, -3.5347873586294916, -7.0, -3.5585885831081994, -3.2204927470892803, -7.0, -7.0, -7.0, -3.2793246654426103, -7.0, -3.533772058384718, -7.0, -2.8406548916005177, -3.2401746950192774, -3.8615543230335403, -7.0, -2.502263204344856, -2.8863077616189106, -3.587598729721245, -2.669200619159474, -2.640812580319979, -3.3264382767957286, -2.9283958522567137, -3.338257230246256, -2.8157674379896123, -2.8328281295393536, -3.6398847419163043, -3.0670708560453703, -3.5547313766759667, -2.63489198424631, -7.0, -2.4964434207249413, -2.827276938731823, -2.7896688311627806, -7.0, -4.164769103009198, -3.500785172917456, -3.6263916993864376, -7.0, -7.0, -7.0, -7.0, -3.1387236281550397, -3.395064164331242, -7.0, -7.0, -4.1047431057093755, -3.693111115462141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03734680356809, -3.515542700362122, -3.1319392952104246, -3.3346589537217852, -7.0, -7.0, -2.444044795918076, -3.3078168266624304, -7.0, -7.0, -3.68761812957177, -3.646599751720373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.450504104449732, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5685537120494426, -7.0, -3.5770319856260313, -3.877946951629188, -3.1857309785451338, -2.863521122841043, -2.9666578842017577, -2.573548450021623, -7.0, -7.0, -2.988187224867644, -3.6800634274819486, -2.7334097090783644, -7.0, -3.5872137026351245, -3.5907304057926903, -3.232742062720737, -7.0, -4.0986783295764395, -1.5907875097913582, -2.5669528005652698, -3.4220423867575565, -3.5069557791831683, -2.855115160771781, -2.794604214770576, -3.518382315545344, -3.318793504793297, -3.447158031342219, -3.1314582601065255, -7.0, -3.060320028688285, -3.6217992240026677, -7.0, -7.0, -7.0, -3.6917002082901615, -4.049799277918987, -7.0, -3.737113094305961, -3.636888906983799, -3.3478145680287468, -2.4887994770696724, -3.523876475638131, -2.9444826721501687, -7.0, -3.2829618035343353, -3.819346484080453, -7.0, -4.070481175066019, -7.0, -7.0, -7.0, -7.0, -3.7016543173257483, -3.359967894486308, -3.102733766037084, -7.0, -7.0, -7.0, -2.491206004826725, -3.234643807761769, -3.547528576459782, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6823707425165573, -3.273348568749101, -7.0, -7.0, -2.4578818967339924, -3.1914277247755534, -2.020292753888836, -3.83143508369811, -7.0, -7.0, -3.825628935910912, -3.160368474792848, -7.0, -3.291479852236699, -7.0, -7.0, -3.643798000679235, -3.902546779313991, -3.684126925613075, -7.0, -7.0, -3.0179510688307425, -3.53668467262093, -7.0, -7.0, -3.853759033074769, -7.0, -3.307999130331943, -7.0, -7.0, -4.624271779929733, -4.490400981300528, -7.0, -3.238297067875394, -4.73497575120201, -3.818291890799996, -3.5342800052050816, -3.1421599511455183, -3.594375973933817, -3.3078168266624304, -3.824971461123693, -3.6599542110524927, -4.439798323663113, -5.009455145234674, -3.9121157290788537, -7.0, -3.7947319638135193, -4.635418396663854, -7.0, -3.764120066661152, -7.0, -4.915637233884228, -7.0, -3.3608654723254574, -3.586587304671755, -7.0, -4.683380289928945, -4.256549382152194, -7.0, -3.6173848117347926, -4.233402277811895, -4.224178991184729, -7.0, -7.0, -7.0, -7.0, -7.0, -4.492383185039623, -4.255465481992464, -3.298972099243842, -3.590953235187986, -3.9957229219954655, -3.8207085337685434, -2.8118681227282054, -2.0895396974658813, -3.1496718328901663, -3.6960941599952233, -2.6221765574101847, -3.621280167550415, -7.0, -7.0, -3.395262000678114, -3.0702956591451445, -7.0, -3.3018110230174766, -2.5882250060000986, -7.0, -3.251784177257485, -4.119239388414244, -7.0, -7.0, -3.459120968849541, -2.9430122187969388, -4.453442357929439, -7.0, -3.278010092736105, -7.0, -3.792172151861495, -3.9406160823374075, -4.263818606337028, -3.3873601604019097, -7.0, -7.0, -4.073663372881412, -3.5705283464081514, -3.8016643457002885, -3.350377253413796, -3.104031637246626, -3.2595938788859486, -3.5324517957802373, -2.790363365974914, -7.0, -2.8518070711361267, -3.822583674439643, -2.9555503153497313, -4.122306487424473, -7.0, -3.519827993775719, -3.6359760701938337, -3.6522656855382767, -7.0, -7.0, -7.0, -7.0, -7.0, -2.235132460652098, -2.998259338423699, -2.3534755341236973, -7.0, -3.6646419755561257, -3.489606966267722, -2.8653578243211677, -3.6742179455767, -7.0, -2.9179254220647413, -7.0, -3.4173853239538325, -2.7535830588929064, -3.0883723751492, -7.0, -3.3612150119217006, -3.681693392004564, -3.165719029800832, -7.0, -7.0, -7.0, -7.0, -3.5773768919170146, -3.655234507034294, -2.5248286863646054, -7.0, -3.6363541438170746, -7.0, -3.523876475638131, -3.8470376869548146, -3.2341888323857413, -3.408423144659725, -7.0, -7.0, -2.576034048242217, -7.0, -2.9710437918360286, -7.0, -3.3356584522893016, -2.2467768032158, -7.0, -7.0, -7.0, -3.633165353683903, -3.2734642726213465, -3.5576274884268266, -2.9480215331411035, -2.905256048748451, -7.0, -2.815198120256473, -2.467079316425522, -4.264109156305809, -7.0, -2.945679561323437, -3.174786417367337, -7.0, -2.9431819988751764, -7.0, -7.0, -4.024690862355431, -3.207365037469072, -2.8772437594565354, -2.704930079931728, -2.9759567150326314, -3.3347552398696707, -7.0, -7.0, -3.5578679615680224, -3.6353329239337633, -7.0, -3.2092468487533736, -2.6764047859729647, -3.623042434246382, -7.0, -2.6700504449799825, -2.530892675383932, -2.9320930828571, -3.7004441010277516, -3.1836114492184326, -3.2723058444020863, -7.0, -3.13756508756235, -3.1292708601213155, -3.863382348440788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8867162741164782, -3.1414497734004674, -3.2006364134455194, -3.683587317572767, -3.758457688610466, -3.432259004032759, -3.5615783683009608, -3.137670537236755, -7.0, -3.6524397475894204, -7.0, -2.7042731123189205, -2.864748335629659, -7.0, -7.0, -2.874191804679071, -2.6960285780634194, -3.0970363348477785, -3.1027766148834415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6553785755318513, -7.0, -3.6732052817790453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.712397131406715, -7.0, -3.7141061271543476, -3.62797998982998, -3.8585973449946924, -7.0, -7.0, -7.0, -7.0, -7.0, -3.534026106056135, -3.576341350205793, -7.0, -3.782973994944048, -7.0, -7.0, -7.0, -7.0, -3.6957442751973235, -7.0, -7.0, -3.6378898165807905, -7.0, -7.0, -3.418135498425232, -7.0, -7.0, -7.0, -3.7151255162874732, -4.059979716944162, -3.5710874123044833, -3.414221033214868, -3.1245042248342823, -2.952917948726597, -2.872127124489488, -7.0, -7.0, -1.6027772408417797, -2.3707485342584267, -4.043676585602717, -7.0, -7.0, -7.0, -3.7091851295502454, -1.815957854947194, -3.7648732344371183, -7.0, -2.9811539014195136, -2.433802967467473, -3.7371926427047373, -4.02143739646709, -7.0, -2.896048304184059, -2.899546931090867, -4.0244035626829655, -3.6646210854682453, -4.038302172199525, -7.0, -7.0, -4.024977972095624, -7.0, -7.0, -2.1722250597760207, -3.5320320771880462, -3.1255535517330353, -3.4207394131837257, -2.4476953966860586, -7.0, -7.0, -2.293288876794244, -3.741821046886808, -2.5917754759952185, -7.0, -4.037864555774374, -3.8109378415420916, -3.140939922954522, -3.5836898650716833, -2.2377025444158694, -3.194549028554895, -1.675676526064217, -2.621613527703641, -3.3260489679467407, -2.828055394305438, -2.7341386174609497, -7.0, -7.0, -7.0, -7.0, -3.030478280622408, -2.9236001702363947, -2.870874187893698, -7.0, -7.0, -2.3694656262518725, -7.0, -2.817680315496243, -3.670245853074124, -4.013553430541676, -3.1912763113441907, -2.779870361623134, -7.0, -3.4776637838119564, -7.0, -7.0, -2.1945525288908807, -3.2268207703495495, -7.0, -7.0, -4.0979164092373255, -4.031691168625146, -3.4102371919840464, -2.1873216097386514, -3.461423486699566, -7.0, -1.1980612628600098, -1.5202604816104612, -7.0, -3.1078033261124367, -4.006637159068586, -1.9313217607792539, -2.350779916112717, -1.8423522280315754, -2.0847387221037597, -1.8463027411526274, -1.9157185738938223, -3.7327956982893293, -7.0, -7.0, -2.919691904136397, -3.7091851295502454, -3.0043213737826426, -3.749581734865559, -2.1870190811827652, -2.067739677734452, -4.0285712526925375, -7.0, -3.1401150518957146, -3.7481104674949837, -2.831434622256806, -7.0, -7.0, -3.230521905914519, -3.3439662859296195, -2.365581572755049, -4.0376256699147195, -3.4374158192831503, -2.1478252257750254, -7.0, -3.7448924954516967, -7.0, -3.6730048708508534, -3.4417344009978166, -2.7544525872374814, -3.2361277131456423, -7.0, -3.730176424163481, -1.8509877415144513, -2.4023301761316658, -7.0, -4.009110806132213, -3.6163704722912695, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1339219404237717, -3.275829434043522, -1.9327995336788195, -2.4282848145774163, -3.730822635731648, -3.0337754719836787, -7.0, -7.0, -4.046612209068446, -3.8477165775931805, -2.3999930361074466, -7.0, -7.0, -4.0326590460399245, -2.3354579006893843, -4.009153331907709, -7.0, -3.3675422735205767, -2.8738241766178168, -3.536474268817627, -3.050959459771651, -7.0, -3.786964259435733, -3.481550113834348, -4.064420548433594, -3.635634517336094, -3.757661687155249, -3.4241871901498113, -2.834341956488676, -4.022758194236769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1115505391909464, -3.175138903896551, -4.158709186075578, -7.0, -1.9712108261874235, -2.5046342441702976, -7.0, -3.0818271912583772, -2.8099763348395044, -4.0512683188703855, -3.4807971572684466, -3.152135396861876, -2.949690192923948, -3.141802396482416, -3.453624073591451, -2.3299139378954807, -3.724070965382832, -3.157093948997081, -7.0, -1.4875667678371367, -3.068445618354352, -2.7758095916368664, -7.0, -2.936030924772797, -7.0, -7.0, -7.0, -3.755074101758472, -3.719331286983727, -7.0, -3.1835545336188615, -3.777318053891376, -7.0, -2.6519238051682956, -3.2805649808879713, -2.6232492903979003, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024239306069092, -4.012288739834607, -7.0, -7.0, -3.177728835841732, -3.5888690345141137, -3.2362935415384895, -7.0, -3.7211095747344105, -2.282477921382284, -3.2658001678796333, -7.0, -7.0, -7.0, -3.212948190381025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0127528874912155, -7.0, -3.0531454728569654, -7.0, -4.008770449937752, -7.0, -4.0175758683910745, -4.03261876085072, -4.029911104912444, -7.0, -7.0, -3.4639526817194084, -3.587748370340144, -2.6283613110810564, -3.006973848403039, -2.9146075677710805, -7.0, -7.0, -2.0138427557233443, -3.2932520331478248, -2.1809235145491312, -7.0, -3.280834364765057, -3.3384166482463584, -3.71717102683231, -7.0, -3.814180981040187, -1.7707342208950423, -2.1949455422460873, -2.6283597328011896, -2.9902343565960714, -2.256671200295871, -2.826439262635231, -4.013216539624441, -7.0, -3.401538390165943, -3.2489536154957075, -7.0, -3.5422858532992207, -7.0, -7.0, -3.757282125444405, -7.0, -3.075875295259833, -3.7834509534038303, -4.045987605660967, -3.396582891683383, -3.577491799837225, -2.642912322460976, -2.0492180226701815, -3.315676520348013, -3.0823664270781026, -7.0, -7.0, -3.656513443339265, -3.463332970234029, -3.574355419939102, -3.8107700112343634, -4.200001865406602, -4.067145278885395, -3.6395196909414667, -2.875459184314206, -2.5708190525174435, -2.2660731213094354, -7.0, -7.0, -7.0, -2.956987188395434, -2.571991954511636, -7.0, -7.0, -4.090258052931317, -7.0, -2.9932524799207627, -3.7218930162149575, -2.3193143040905118, -7.0, -3.08687371853016, -3.2393933366675602, -2.8848358067000373, -3.066347226837513, -2.0633333589517493, -3.5077278367650973, -4.032376971209936, -3.122598107677436, -3.9111728335206797, -2.747245294567787, -7.0, -3.339133305969879, -7.0, -3.8187535904977166, -3.5969542796066576, -3.4768895692076844, -3.471144965160633, -7.0, -7.0, -3.132579847659737, -7.0, -7.0, -4.033664963203177, -7.0, -4.0217266644137775, -2.2861801654275338, -7.0, -7.0, -3.8459569159936344, -7.0, -7.0, -3.44504346145018, -4.0094650604236, -3.124399877288873, -3.459141087183815, -2.480438147177817, -3.2246244545428504, -3.1690184512274984, -7.0, -3.8730879855902858, -3.6166015302784342, -3.9967941582341497, -3.232306206383841, -4.191255342246265, -3.374488669017602, -3.5899170373224005, -3.8340602317133556, -4.480768447380031, -7.0, -4.40488671783032, -4.1541347529656445, -3.298307137328508, -2.677451625650918, -7.0, -3.8391086457313133, -3.7968690816574724, -7.0, -2.6890820438778835, -4.382485323486555, -3.527334155497215, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1329568741326845, -3.4437322414015967, -2.447898457853143, -4.037784941753637, -3.2746965330172166, -3.702826735552145, -3.337484220026441, -2.4264191815419247, -2.4636253971574824, -2.8731388810370233, -1.9583311604617466, -4.29130223575985, -4.108565023732835, -4.572313860922749, -2.456909251591883, -2.3769645469813034, -7.0, -2.174362462314216, -1.6303389406217021, -7.0, -2.206109627437567, -4.045674966769105, -7.0, -7.0, -3.360210581728592, -2.1432883960858957, -4.112531272447809, -7.0, -4.164442085209516, -7.0, -3.3975620080186446, -7.0, -3.7982921198880066, -3.256015799029937, -7.0, -7.0, -3.8851208212759687, -3.4514203359243973, -3.5683870164605773, -3.359392744171009, -2.431162655342287, -2.6028735310261824, -3.7443369972248948, -1.9096308571332221, -7.0, -2.6589380136616834, -3.4437626385196736, -2.5097924183374514, -4.043828045520829, -7.0, -3.356089625562946, -3.0103432315964427, -3.7702774797561722, -7.0, -7.0, -7.0, -4.0124153747624325, -7.0, -1.6018854005791172, -2.6972293427597176, -1.7267344196871608, -7.0, -3.4632956099620027, -2.956387992907696, -2.8047490188774384, -3.370142847051102, -3.716128602823834, -3.0079752466359797, -7.0, -2.8674674878590514, -2.475418507891467, -3.727907081406697, -7.0, -3.1870504506422686, -3.5951654147902294, -2.4209637116600056, -7.0, -7.0, -3.5940332524095524, -7.0, -3.555698894718901, -4.061866972138563, -2.4903264264026674, -7.0, -3.096258082214778, -7.0, -7.0, -3.788822149804023, -2.6690306426372117, -2.8293160278815903, -7.0, -4.096458111717453, -2.1177035011801437, -7.0, -2.567752698038627, -7.0, -2.9399030745454158, -1.836405272525313, -7.0, -7.0, -3.7828666070641925, -2.821667629171724, -3.1200951059292272, -7.0, -4.058957178777311, -2.9628426812012423, -7.0, -2.7842042331316814, -1.9647492132986788, -7.0, -7.0, -2.38464540805471, -2.531613352728796, -7.0, -2.7202144484103994, -4.02612451674545, -4.015527404313787, -4.24538927117121, -3.2952004520032574, -2.158260116465521, -2.5418564826932464, -2.9880171842020564, -4.054421524462536, -7.0, -7.0, -3.725135413175271, -3.7172543127625497, -7.0, -2.6412169684899625, -2.150619399537976, -3.7484206224675685, -7.0, -2.1838914979181148, -1.6920185449540748, -3.5397032389478253, -4.080157310970184, -2.77572692378081, -3.6241445302716726, -3.7035206480101697, -3.5692958622643274, -2.628410218473732, -2.950638636498252, -4.049799277918987, -3.742764396661798, -7.0, -7.0, -3.9113041251051985, -7.0, -2.6192539127997327, -3.0567662983023087, -2.5293381019103465, -3.3739413115180614, -3.605771778568517, -3.1746992883707756, -7.0, -2.4036456868836145, -7.0, -2.8042151791711407, -7.0, -2.4657545198338777, -2.574883781005765, -3.686189234244024, -7.0, -2.5271368799683067, -2.784656909005254, -2.5968876654475994, -3.7329162073263795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.091071440262167, -3.7563317673210577, -4.0690017170456, -7.0, -7.0, -3.2373761539301436, -3.720696668749796, -3.555779424013014, -4.026247181477774, -2.5513423438970744, -3.054881054862772, -2.9719712763997563, -3.4912496033750355, -7.0, -3.1848536020225837, -4.008216801589691, -3.2730343599066476, -3.725176301419137, -7.0, -3.083017551279961, -3.1289643884877254, -3.1275097349740077, -3.4172723536273164, -3.792706788898358, -3.3895913074551967, -4.0124153747624325, -4.014772474073064, -3.29968885235135, -4.009960531470598, -3.374687259508575, -3.151523067564944, -7.0, -4.005566571133294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.602065419975057, -7.0, -7.0, -7.0, -3.0434184210606885, -3.9057149483897664, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0330214446829107, -7.0, -7.0, -3.1699681739968923, -3.9183670583503423, -2.9876662649262746, -7.0, -7.0, -2.5744942682853273, -7.0, -7.0, -4.864748335629659, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.455606112581867, -7.0, -7.0, -2.4720246977002813, -4.839723093782862, -7.0, -7.0, -2.989894563718773, -7.0, -3.6214878645806303, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062259568116916, -7.0, -3.4163075870598827, -7.0, -7.0, -7.0, -3.4089180208467798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3109056293761414, -7.0, -7.0, -4.52270499273475, -7.0, -3.0147304950017535, -7.0, -7.0, -3.864866914328526, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4649364291217326, -2.8187535904977166, -7.0, -7.0, -3.184018357858188, -2.910090545594068, -3.1078033261124367, -7.0, -7.0, -7.0, -2.597146487833695, -7.0, -3.083263668252353, -2.166331421766525, -4.14370162942477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6098077693287025, -4.073516732274978, -7.0, -7.0, -7.0, -7.0, -4.080301726793912, -7.0, -7.0, -7.0, -3.519434194913703, -2.765455665302838, -7.0, -7.0, -3.3546461700683716, -7.0, -7.0, -7.0, -4.993083360698062, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4500070327955514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1476763242410986, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0729847446279304, -7.0, -7.0, -7.0, -7.0, -2.919601023784111, -4.539352152039536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.12977426367155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.912540882790638, -7.0, -7.0, -7.0, -7.0, -3.7731703150932776, -7.0, -3.0563330349511615, -7.0, -7.0, -7.0, -2.8506462351830666, -3.218010042984363, -7.0, -7.0, -3.6098077693287025, -7.0, -7.0, -7.0, -7.0, -7.0, -4.037047819356885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.352510527820731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.55834850876162, -4.125220936316564, -5.235679077201403, -7.0, -7.0, -2.541579243946581, -3.0511525224473814, -7.0, -7.0, -3.285782273779395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.038426414658448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9222062774390163, -7.0, -7.0, -3.2894402979178685, -3.802020751771976, -7.0, -7.0, -7.0, -3.6118082472765156, -7.0, -3.9293422787484373, -7.0, -4.709303888906937, -7.0, -7.0, -7.0, -3.982768577251012, -3.1212314551496214, -3.2513948500401044, -3.6982745766743674, -7.0, -3.1360860973840974, -2.9079485216122722, -7.0, -3.089551882886454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.994537104298498, -7.0, -7.0, -7.0, -7.0, -4.654118760497929, -3.4036923375611288, -7.0, -4.281215232611316, -7.0, -2.9537596917332287, -2.7837845129301377, -7.0, -3.9455670534423883, -3.4753805931433615, -3.7707783961691477, -7.0, -7.0, -7.0, -4.466519478150249, -3.1584228065848823, -2.367355921026019, -7.0, -7.0, -7.0, -3.594613509160098, -7.0, -7.0, -7.0, -2.690196080028514, -3.2757719001649312, -7.0, -3.680335513414563, -7.0, -2.723044991643445, -7.0, -7.0, -4.855773479628163, -3.2068798223063, -5.030081335414012, -7.0, -3.4759615891924236, -4.7167460199658, -3.282244366936266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0563330349511615, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7219754015859534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.710811004797183, -7.0, -3.5639554649958125, -4.287062352554394, -3.97589687492733, -3.9665640840973104, -7.0, -7.0, -7.0, -7.0, -4.1015637886590275, -7.0, -3.972517564662308, -4.444279064276847, -7.0, -7.0, -7.0, -7.0, -7.0, -4.051962449783047, -4.09711842434465, -7.0, -7.0, -7.0, -7.0, -4.170533064658333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.449216046206292, -7.0, -4.009535876619219, -7.0, -4.1910222841219555, -4.764217242658816, -7.0, -3.3324384599156054, -7.0, -7.0, -3.836855579548605, -7.0, -7.0, -7.0, -4.359569893603762, -4.2013515984037575, -7.0, -3.7345438163285243, -3.204052118841129, -7.0, -7.0, -4.3688630818982945, -7.0, -7.0, -4.689588529304547, -4.072594865284654, -5.706239710048615, -7.0, -7.0, -7.0, -4.255431717226232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.428669230652189, -4.781151968281956, -7.0, -7.0, -3.789439684567179, -7.0, -3.6388884247050757, -7.0, -4.16428344244365, -4.477752934854223, -7.0, -7.0, -7.0, -7.0, -4.605595915240784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8847804630386533, -7.0, -3.5751300891616467, -7.0, -2.9237619608287004, -3.735758537443739, -2.740362689494244, -3.2511513431753545, -7.0, -7.0, -7.0, -4.7956715059460215, -7.0, -7.0, -7.0, -4.119024820114783, -7.0, -7.0, -7.0, -7.0, -3.4594678795625455, -7.0, -7.0, -7.0, -3.1929853790931624, -7.0, -7.0, -7.0, -7.0, -7.0, -3.947531745695593, -4.008067621748033, -7.0, -7.0, -3.6241789257480224, -7.0, -7.0, -7.0, -7.0, -3.399797293677605, -7.0, -7.0, -7.0, -7.0, -3.66029616027073, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1970047280230456, -7.0, -7.0, -3.511749711344983, -7.0, -7.0, -4.138807765217715, -7.0, -7.0, -7.0, -7.0, -3.7785579664213467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7863964613723042, -7.0, -7.0, -3.776991584856405, -3.4518375861611674, -7.0, -7.0, -4.300617219806582, -7.0, -7.0, -2.7708520116421442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3553940446231705, -7.0, -7.0, -3.415974411376566, -4.2254126728659545, -7.0, -4.154302219684665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6203442997544935, -7.0, -7.0, -7.0, -7.0, -7.0, -3.913919764951466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7858279199958655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.855317205195943, -7.0, -7.0, -7.0, -5.270516964338342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9068089508150585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5666244821811137, -7.0, -4.006637159068586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.140130778371135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.055378331375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.164144582470177, -4.451033825139367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.144698718643125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.352876833977717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335838869579954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.712707772006801, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.829850318129671, -7.0, -7.0, -3.801403710017355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.050044463417963, -7.0, -7.0, -7.0, -7.0, -3.72956972630197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.554040702717402, -7.0, -5.574089169798587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.093141404751149, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.63255345397555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.788496443675952, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.404799518857654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.482530584131741, -7.0, -4.941918703252601, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.124993020025895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.41077723337721, -2.852937225981498, -4.06370588053735, -2.7721994219179718, -7.0, -7.0, -2.5538087480629397, -3.783713057452657, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2291514006582367, -3.9844823064022625, -7.0, -7.0, -3.2157024817843536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0320716634698215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.397070549959409, -7.0, -3.625312450961674, -7.0, -2.8791082837495585, -3.40840957846843, -7.0, -3.3107994838343924, -7.0, -7.0, -7.0, -7.0, -7.0, -3.514282047860378, -7.0, -2.8205482309696888, -7.0, -2.9562121023022296, -3.212347437988012, -3.4452927694259716, -3.4750898033890065, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4671639659690903, -3.4497868469857735, -3.1365476218503834, -7.0, -7.0, -3.1722136039924793, -7.0, -2.608763677622469, -3.7945577512547617, -2.7955324427101544, -3.18789657069281, -3.3117313914325637, -7.0, -7.0, -7.0, -7.0, -3.1303797231516177, -7.0, -7.0, -7.0, -7.0, -7.0, -3.402433346219312, -2.654577589539578, -7.0, -7.0, -1.8624180067027438, -2.5536403362313544, -1.9313217607792539, -7.0, -7.0, -7.0, -7.0, -1.8483944086434856, -2.046395689767224, -3.1104213464739563, -1.8982652089561929, -7.0, -7.0, -7.0, -7.0, -7.0, -3.335156899534743, -7.0, -3.315620531115086, -3.2074660557634376, -7.0, -7.0, -7.0, -3.2285286773571817, -3.9411303053770306, -7.0, -7.0, -3.3116479226525204, -3.4347285417797577, -2.79309160017658, -7.0, -3.624230513855454, -3.3707498792897748, -7.0, -3.9476297473843545, -7.0, -5.002412308205343, -2.3628054903717945, -3.373463721632369, -7.0, -7.0, -7.0, -3.4946713037544734, -3.3900514964589874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8632633636504807, -2.482576980405909, -3.0517954455579925, -3.469822015978163, -3.199618067707931, -7.0, -7.0, -7.0, -4.124439010556526, -3.334252642334231, -7.0, -7.0, -3.4724638966069894, -1.146249563866738, -7.0, -7.0, -2.739006930385196, -3.234390722392192, -7.0, -2.6912078323367767, -3.257438566859814, -3.646893624167745, -7.0, -3.5781806096277777, -3.976762523267461, -7.0, -3.148294097434746, -3.1852435240593744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021396056741971, -7.0, -2.855761372339948, -3.6011046363297106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8376585705702464, -7.0, -3.8171024042569233, -7.0, -2.389488261294666, -3.291146761731886, -2.979948797120537, -7.0, -4.140225125266448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6387886671573986, -7.0, -3.9573678084315276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7599698575543075, -7.0, -4.252153044735006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9520752895626545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5800121125294244, -3.4248272103534214, -3.928190948038757, -7.0, -7.0, -7.0, -3.2744849869352772, -7.0, -3.557735717818272, -7.0, -4.426014873609768, -7.0, -7.0, -3.424881636631067, -7.0, -2.6933164903265205, -3.344667305256552, -7.0, -3.247138226100887, -3.2434101416537113, -3.469232742506612, -7.0, -3.2258259914618934, -3.681150749932421, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313023110323238, -3.716420733846555, -7.0, -7.0, -7.0, -3.8591920393735446, -2.078411501156303, -1.902739608205772, -4.0261858534423824, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7096938697277917, -3.9050399280762114, -7.0, -7.0, -7.0, -3.3041772464037416, -2.969788537414939, -7.0, -7.0, -7.0, -3.4043775248953203, -3.3057095504829292, -7.0, -7.0, -7.0, -7.0, -3.604657972047871, -7.0, -2.4395853007775634, -7.0, -3.5046067706419537, -2.938233722873167, -7.0, -4.090310969424922, -3.3059133062904342, -3.8007384436964013, -7.0, -3.210318519826232, -3.6840084328169542, -7.0, -7.0, -7.0, -7.0, -3.72956972630197, -3.6022770843001926, -3.856547644856748, -7.0, -7.0, -7.0, -2.94527158150771, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1300892079409475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.708197746332473, -4.5901170347847895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.914223237906244, -7.0, -7.0, -3.466422722433792, -7.0, -4.676089749249794, -7.0, -7.0, -4.4869827371917586, -7.0, -4.393294356452329, -7.0, -7.0, -7.0, -7.0, -7.0, -4.179953729631548, -7.0, -3.271609301378832, -3.013118230526625, -4.085549222231902, -5.073168262265102, -3.9823617016331467, -3.808818425092124, -3.520614521878236, -3.318272080211627, -2.9865440595674193, -3.4675341138495925, -7.0, -7.0, -3.494289130228922, -3.6181701703721543, -7.0, -3.261991039833867, -2.6745549761273852, -7.0, -3.3078702684248684, -4.4068466330976666, -7.0, -7.0, -4.221814004667988, -3.1890591740845484, -4.594097480135254, -7.0, -7.0, -7.0, -4.186428913233115, -7.0, -4.709648107508037, -7.0, -4.26521888809996, -7.0, -7.0, -4.461948495203762, -4.194146492730399, -7.0, -3.358672330617676, -3.61768166971834, -7.0, -3.610300763470534, -7.0, -3.126238053970879, -4.965069934066822, -2.8965262174895554, -4.652281160545874, -7.0, -3.7648483571934106, -4.326970450324921, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.349832359203467, -7.0, -3.3316044201502746, -7.0, -7.0, -4.077531416354595, -7.0, -7.0, -7.0, -7.0, -7.0, -4.111255790782233, -3.7798128631705805, -7.0, -7.0, -7.0, -7.0, -3.3373926976485757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0211892990699383, -7.0, -4.0858968111315885, -7.0, -7.0, -7.0, -4.800129146035911, -4.324062851231625, -7.0, -7.0, -3.722428241979694, -7.0, -3.6830470382388496, -7.0, -3.5478977175630972, -3.0154479997419172, -7.0, -7.0, -7.0, -3.2420442393695508, -7.0, -7.0, -7.0, -3.5085297189712863, -7.0, -3.577836341292744, -3.2185730139164606, -7.0, -7.0, -3.731266349075492, -3.41355121317555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.643292012003188, -3.3793961751941644, -7.0, -7.0, -7.0, -7.0, -3.44870631990508, -3.592953571547866, -7.0, -3.608312042697327, -3.6154239528859438, -7.0, -7.0, -3.307228532834288, -3.1575834883314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.103187748850943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.553239600315695, -7.0, -7.0, -4.09221753532326, -7.0, -3.6716355966021297, -7.0, -3.5669086552268032, -7.0, -3.322563836189438, -7.0, -7.0, -7.0, -3.567966906823154, -3.2016701796465816, -4.126212606567055, -3.4774106879072515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40840957846843, -7.0, -7.0, -7.0, -3.3376588910261424, -7.0, -3.8672022338494396, -3.8859828113549733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.046768219660838, -3.1709947020363, -3.4670158184384356, -7.0, -7.0, -7.0, -3.3939260065858368, -7.0, -7.0, -7.0, -7.0, -3.5491259267581112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.232487866352986, -3.2988530764097064, -3.436410636647131, -7.0, -7.0, -7.0, -2.9012247250756964, -3.197881761865032, -7.0, -7.0, -7.0, -7.0, -7.0, -2.057639077178137, -7.0, -7.0, -2.5238229473051854, -3.365960949185637, -3.0492180226701815, -3.2615007731982804, -7.0, -7.0, -3.3900514964589874, -7.0, -4.872214563397586, -7.0, -7.0, -7.0, -2.6780629049743454, -7.0, -2.396697391280942, -1.8398246684187096, -7.0, -3.52543355342882, -2.224603685336854, -3.968551434039823, -7.0, -3.2920344359947364, -3.207365037469072, -3.0713295868603425, -3.2591955531844463, -7.0, -7.0, -7.0, -3.3803921600570273, -2.604380359173108, -2.9787960558692133, -7.0, -2.8115750058705933, -7.0, -7.0, -3.3261309567107946, -2.8043666332204187, -3.3346547668832414, -7.0, -7.0, -7.0, -7.0, -3.377215156263061, -4.466912085089596, -2.5216610151120733, -7.0, -3.5559404378185113, -7.0, -3.510343901389912, -3.4282968139828798, -7.0, -7.0, -3.9826911065162727, -7.0, -1.7611489310114437, -7.0, -7.0, -3.33193317250328, -7.0, -2.9628426812012423, -7.0, -2.5416926811894625, -2.537189226243645, -7.0, -2.658393026279124, -2.6154991488833446, -7.0, -2.0704873719767787, -1.8445067608461325, -2.350779916112717, -2.597146487833695, -7.0, -7.0, -7.0, -2.307496037913213, -2.1802334314815814, -2.6304278750250236, -3.139650148872528, -7.0, -7.0, -7.0, -1.978019806535125, -2.8915374576725643, -7.0, -3.407900540142635, -3.0280830070178384, -3.3969486867163377, -7.0, -7.0, -2.140249171197303, -7.0, -2.5089611230813635, -7.0, -7.0, -3.0320812676114404, -2.7561604817807175, -2.383407309498374, -2.228676690246511, -2.6832381229003643, -2.260936864557439, -7.0, -7.0, -7.0, -4.521512915129848, -7.0, -3.2854447829074154, -2.289434579416023, -7.0, -7.0, -2.789601447654983, -3.606918525948291, -7.0, -7.0, -3.5421849794668856, -7.0, -7.0, -7.0, -2.912487761332324, -2.4768316285122607, -4.070628844051428, -3.808346035740395, -2.6397709927061457, -3.071513805095089, -7.0, -3.936714758211204, -7.0, -7.0, -2.484121813321787, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7767253914788386, -2.88394519503428, -7.0, -7.0, -2.931457870689005, -7.0, -3.412124406173317, -7.0, -7.0, -7.0, -3.4652340949880145, -3.9351040211514494, -7.0, -3.2898118391176214, -2.96169201297872, -7.0, -7.0, -7.0, -7.0, -3.2581581933407944, -7.0, -7.0, -2.0648322197385736, -7.0, -7.0, -7.0, -3.499893186149237, -2.194690899736821, -2.436361454314497, -1.4880434371530584, -1.6561719424802648, -2.3656581296460253, -1.9012766462284751, -3.429752280002408, -2.8627275283179747, -3.384353414137506, -3.4303975913869666, -3.727703883685354, -7.0, -3.153052275067109, -7.0, -3.3979834359489, -3.1822719566941857, -4.061659775062183, -7.0, -4.112068504268197, -7.0, -3.832061614590727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.241048150671644, -3.376010910646249, -3.067973700294994, -7.0, -7.0, -2.9554472105776957, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6207037602596985, -2.9893608137762473, -3.2612033723225187, -4.4128090192128715, -7.0, -7.0, -7.0, -2.7761561584219154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8936734010236806, -7.0, -7.0, -7.0, -7.0, -3.020775488193558, -2.3504633887734405, -7.0, -7.0, -7.0, -3.467608105583633, -3.152777414797245, -1.8152720561645486, -1.5622928644564746, -7.0, -7.0, -3.035309640156801, -2.890840019780741, -2.966709712411367, -7.0, -3.60580214022274, -7.0, -7.0, -7.0, -3.5593878738130678, -2.7744506055050415, -2.4742162640762553, -2.841359470454855, -7.0, -2.515873843711679, -2.272263661459806, -3.2119210843085093, -7.0, -2.894758994371892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1341315530078986, -7.0, -7.0, -3.4255342204982635, -2.9525056727465, -3.0443437348951075, -7.0, -4.0080889362915775, -7.0, -2.3326404103874623, -7.0, -3.4699692094999595, -2.432665997464232, -2.929418925714293, -7.0, -7.0, -3.643945912748067, -7.0, -3.293359332906441, -3.4510184521554574, -7.0, -7.0, -7.0, -2.293492544081438, -3.016531940957265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.305064611772354, -3.3191060593097763, -3.367169488534681, -7.0, -1.5473790729562786, -4.386249196708923, -2.156687577399937, -4.553678482278634, -7.0, -2.74531506516047, -5.023046584075505, -3.243905770217521, -7.0, -2.747994102251068, -7.0, -2.748575616930992, -3.5524857010929476, -7.0, -3.49996186559619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0384611961785635, -7.0, -2.775564113729958, -7.0, -7.0, -3.527275361588527, -4.77956041878952, -7.0, -2.765420173578722, -4.244260623072277, -3.0690687538613783, -2.8542047958554297, -2.686549079042787, -3.3060919125073824, -2.605346492386491, -7.0, -3.626996959365406, -3.685912654996182, -4.002222235519126, -3.3373926976485757, -4.350015298234692, -2.8494374804184424, -3.4963504075587175, -7.0, -3.29211504375923, -7.0, -5.088786157341457, -3.996533561445376, -2.751241843078004, -3.1385553051135826, -7.0, -3.588691788592222, -4.214393431255206, -3.2125870781238937, -3.2628751809008034, -3.8877297972880305, -4.209506078350244, -4.043342626242493, -7.0, -7.0, -7.0, -3.9334366678262804, -4.167332106418112, -3.9121157290788537, -3.3235202277543374, -7.0, -4.679863789404051, -3.345314535659132, -2.419555246345498, -2.597851829563605, -4.349413526814732, -7.0, -2.9771354402245875, -3.7353992699626937, -7.0, -7.0, -3.9675573359128724, -3.7355368025021285, -7.0, -3.4532265779981905, -3.5839352025367517, -7.0, -7.0, -7.0, -7.0, -7.0, -3.615814203848796, -3.2903305242929637, -5.105258050483448, -7.0, -7.0, -7.0, -3.7842986456020222, -7.0, -7.0, -3.8121443089703804, -7.0, -7.0, -4.3429947829274775, -4.448752683389127, -4.790186609533173, -3.226342087163631, -3.939918420369057, -3.171433900943008, -3.9038547572602984, -2.2772362929775247, -7.0, -3.3048624642031603, -4.182771186796507, -3.6684791029325856, -4.872457356924434, -7.0, -7.0, -3.6646524202232635, -4.016761820389091, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8382778529086805, -2.7414142504968653, -2.719598561582539, -7.0, -2.6229537514399808, -3.584218112117405, -2.071628108157179, -3.4847268042986617, -7.0, -3.343867921696387, -7.0, -3.5031230720768396, -3.4111144185509046, -3.303412070596742, -7.0, -2.8568798705623637, -7.0, -2.8487278007449355, -7.0, -7.0, -2.6994040818153375, -7.0, -3.3240765797394864, -7.0, -2.640779477344857, -7.0, -4.053846426852253, -7.0, -7.0, -4.607755172446473, -2.5813604913799524, -3.2149204978830515, -7.0, -7.0, -2.7808571437595684, -3.3506356082589543, -3.2956770340174653, -7.0, -3.4255342204982635, -2.7056094753324085, -7.0, -3.226342087163631, -7.0, -2.941677035870691, -2.685890955055167, -7.0, -3.443106456737266, -2.8946852037877533, -7.0, -2.7646243978509815, -2.373565814884186, -4.222716471147583, -7.0, -3.1775364999298623, -2.9355072658247128, -7.0, -2.9457581341004113, -7.0, -7.0, -3.3477689676073514, -3.5010592622177517, -2.9058211989484706, -2.386498965550653, -3.3947142795333423, -2.8210219669692687, -7.0, -7.0, -7.0, -7.0, -3.26528962586083, -3.5039268041935103, -2.7529934654248027, -7.0, -2.6940198963087196, -2.817985819267376, -2.467818013504448, -3.7148325124333326, -3.5246557123577773, -4.02630850085407, -7.0, -3.510545010206612, -7.0, -3.4701531312754197, -3.27315566043433, -7.0, -3.3771240423464564, -7.0, -3.1711411510283822, -3.679954545361563, -7.0, -3.3404441148401185, -2.8885164610749454, -3.286880427183525, -3.0214649540978553, -3.4921455180442877, -4.25806231201092, -7.0, -3.281714970027296, -7.0, -3.450557009418329, -7.0, -3.0361496297458532, -3.452553063228925, -3.770041554319669, -7.0, -2.848958460827495, -7.0, -3.333413685070855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0220747111643926, -7.0, -3.4831592097169795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5424519473759766, -7.0, -4.141951195862753, -3.8340390181594666, -7.0, -3.3109056293761414, -7.0, -3.649140064144219, -7.0, -7.0, -4.512524307323576, -3.322219294733919, -3.314709692955174, -7.0, -3.571825249040829, -3.555094448578319, -3.20682587603185, -7.0, -3.517591730711908, -7.0, -3.4429498695778618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3666097103924297, -2.834802054048699, -3.4945719842301988, -1.9790549228951424, -1.994114021477017, -3.596256391478613, -3.360340916766332, -7.0, -3.3664229572259727, -1.6942935974982078, -3.4097399533150314, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3140723973996593, -3.6723288042224165, -7.0, -3.801815168581437, -3.187715646549746, -3.4574276929464847, -7.0, -7.0, -2.877601679729272, -7.0, -7.0, -3.295630749386032, -7.0, -7.0, -7.0, -7.0, -2.8686444383948255, -3.3769417571467586, -3.1992064791616577, -3.0334237554869494, -3.1221066080541338, -2.9183798695859635, -3.211645094674914, -7.0, -2.506843136339351, -3.1080009315871533, -2.190773878234185, -3.004894321731049, -2.787460474518415, -7.0, -7.0, -3.480868923687168, -7.0, -2.4849134365147463, -3.3500540935790304, -2.7310064508026852, -3.421329664478712, -7.0, -7.0, -3.171726453653231, -7.0, -7.0, -7.0, -7.0, -3.429752280002408, -7.0, -3.133045111293821, -7.0, -7.0, -3.022840610876528, -7.0, -3.2490760036836117, -2.452224674191046, -3.3544926005894364, -3.3408405498123317, -3.3452001259285136, -7.0, -3.5983527098692836, -7.0, -7.0, -2.9639294220265584, -3.574956775764507, -7.0, -7.0, -7.0, -7.0, -7.0, -1.623862267891198, -3.5471591213274176, -7.0, -1.911394810203503, -1.895128911244188, -1.8423522280315754, -7.0, -7.0, -1.8483944086434856, -2.307496037913213, -7.0, -1.321532255663362, -2.8911656301824684, -2.2399664702073565, -7.0, -7.0, -7.0, -3.1999901215285598, -7.0, -3.611404637711593, -3.502836638621003, -3.173259130501515, -2.9921795216998177, -3.4191293077419758, -7.0, -7.0, -2.7180862947830917, -3.0333064533284095, -7.0, -7.0, -1.7801314083513837, -2.811909980420099, -1.6841208832970997, -7.0, -3.0433360754520002, -2.4021117933782326, -7.0, -7.0, -7.0, -3.959886597547779, -3.001156577199942, -3.651859269246949, -7.0, -3.3527611917238307, -7.0, -2.7774671001061875, -2.969602264848539, -7.0, -7.0, -3.553171907103293, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6158448828747023, -3.24619072334908, -1.6960650136926116, -2.608659724353039, -3.131297796597623, -3.967032882158702, -7.0, -7.0, -7.0, -7.0, -3.9242792860618816, -7.0, -3.3832766504076504, -7.0, -2.606130462501941, -7.0, -7.0, -3.255995726722402, -3.02626080875407, -7.0, -3.506234359612126, -7.0, -3.6225248624035684, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5004377446276838, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.400753787896711, -7.0, -3.8402315949581087, -7.0, -3.54082981411108, -3.245652283747335, -7.0, -3.2074323856093794, -3.266310110427021, -7.0, -7.0, -7.0, -2.849910558301496, -3.4840149626675627, -3.521007252408604, -2.660062377951373, -3.4051755462179893, -3.198313363563387, -7.0, -2.9465341378537158, -3.0870712059065353, -2.958453614214925, -7.0, -3.6552985433779526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4083005490438167, -2.5917322389518356, -7.0, -3.0112531701274974, -7.0, -3.6444878264138585, -7.0, -7.0, -3.385963570600697, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6924503234060153, -2.962369335670021, -3.1409363554584804, -3.9289647102407317, -7.0, -3.091315159697223, -3.1124374173218436, -7.0, -3.331427296520743, -3.3544926005894364, -3.2814878879400813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.871611849078623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1100844228869238, -3.069879432430074, -7.0, -7.0, -7.0, -3.1727780146558526, -3.573103783163991, -3.2323304321038173, -3.4396484295634737, -3.8798901436004236, -3.4551495211798278, -7.0, -7.0, -3.5836521085420436, -1.7031972085222742, -2.540571646441333, -2.8827774391015835, -3.457124626303409, -2.8135809885681917, -2.7317498835272636, -7.0, -3.494711025205263, -2.9589459324939362, -3.339749481680876, -7.0, -3.381295623003826, -3.497067936398505, -7.0, -7.0, -7.0, -3.28668096935493, -3.7062055418819706, -7.0, -7.0, -7.0, -3.906743723985058, -1.6603314663214848, -3.3609718837259357, -3.091170218869001, -7.0, -7.0, -3.2670151976815847, -3.55339751012388, -4.030073230712518, -7.0, -3.045993186453467, -3.55834850876162, -3.7015679850559273, -3.600537294364469, -3.6503261821381465, -3.4819201376014313, -3.3279716236230104, -7.0, -7.0, -2.2191556874787546, -3.065878352857392, -3.394976719554564, -7.0, -7.0, -7.0, -3.577721524509021, -7.0, -1.7901845979839552, -2.829946695941636, -3.1690863574870227, -3.766561552637531, -7.0, -3.4866134627164285, -2.164859597487805, -4.128030391104316, -7.0, -2.9927191631771874, -3.594036324592131, -2.6775499250161365, -7.0, -3.4578818967339924, -3.065206128054312, -3.7095243558763413, -2.40970774995732, -3.5405171695925723, -3.578295305120826, -7.0, -7.0, -3.319314304090512, -3.3794868137172736, -7.0, -3.4394905903896835, -3.4838724542226736, -3.089198366805149, -3.0333848384671733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.425493462722258, -4.402862957968563, -7.0, -3.4044167476979577, -3.8483011062859602, -7.0, -7.0, -3.8615543230335403, -7.0, -4.527853219439823, -4.29886398819428, -7.0, -4.3877011963908155, -4.3290824690943, -7.0, -7.0, -7.0, -4.69194038611791, -7.0, -3.774541295270132, -2.8562151648112137, -7.0, -4.372819981678968, -4.230653247179221, -7.0, -3.6721973575474354, -7.0, -4.391164551697127, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8753796292918614, -3.752278985460119, -3.7861122837198264, -3.4554539687786283, -4.208342804842957, -4.072213122603382, -3.67015304519218, -2.749384916179469, -3.1054723361070975, -3.5935075893317654, -2.9787046199000207, -3.4584867637982066, -3.6798819421128623, -7.0, -3.6279381446854235, -2.824917010852793, -7.0, -2.7894756959671048, -2.6160551949765862, -7.0, -3.0513730604650204, -4.101643985490313, -7.0, -7.0, -3.743535894777588, -3.1167357534143045, -4.6286553858870985, -7.0, -3.5149460053080044, -7.0, -3.8842004205035816, -7.0, -4.563102904899838, -3.2301294697405507, -7.0, -7.0, -3.752969865029084, -4.1572451604751945, -4.095538954876556, -7.0, -3.109554442867644, -3.303574009998992, -3.952996819452678, -3.0782822381018162, -3.4367985102318035, -2.569242196573409, -4.185730978545133, -3.7231271587956916, -4.028501536907509, -7.0, -7.0, -3.056595854893766, -3.6315655167545393, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2762220844992402, -3.5958267770732233, -2.573413164820461, -7.0, -7.0, -3.595845133878683, -3.612889769287485, -7.0, -7.0, -3.5592481040882538, -7.0, -3.6945444541986068, -2.983099823925019, -7.0, -7.0, -7.0, -3.575187844927661, -3.4972061807039547, -7.0, -7.0, -7.0, -3.4174716932032934, -7.0, -7.0, -2.189806023929912, -7.0, -3.7760834366397793, -7.0, -7.0, -7.0, -3.757765146438979, -3.845194539177392, -7.0, -7.0, -2.596385605735793, -7.0, -2.7562556487542333, -7.0, -2.914210891401378, -2.494513663474121, -7.0, -7.0, -3.6104472214421213, -2.7326617601288525, -3.3334472744967503, -3.4092566520389096, -3.0537185238968583, -2.996949248495381, -7.0, -3.071513805095089, -2.710924711347061, -7.0, -7.0, -3.108734108602365, -2.5455721726119234, -7.0, -3.893734028446905, -7.0, -7.0, -3.979548374704095, -3.5792117802314993, -2.989867387070781, -2.7023347819567896, -3.446226401778163, -7.0, -7.0, -7.0, -3.4095950193968156, -3.403120521175818, -7.0, -2.978864984347657, -2.6978829086948046, -7.0, -7.0, -2.7489075617740846, -2.7161015891915814, -2.9853516150839536, -7.0, -3.2603496926930307, -7.0, -3.005854359779236, -2.641332438840177, -3.24930320456868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1481397365012196, -3.653309012938479, -3.470839085190034, -7.0, -7.0, -3.612112476645736, -3.3181329278612206, -2.49998148630061, -7.0, -3.2361592305796636, -7.0, -2.6048737705526355, -3.1966596938570437, -7.0, -7.0, -2.582315933132205, -2.689012715585447, -3.0608784167694707, -3.13956426617585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7849737099544005, -7.0, -7.0, -7.0, -3.089551882886454, -7.0, -7.0, -3.312811826212088, -3.519827993775719, -3.6838572054003462, -7.0, -7.0, -7.0, -7.0, -3.7061201097027037, -7.0, -7.0, -3.61751143775027, -3.1340176456759834, -3.4295908022233017, -7.0, -7.0, -7.0, -3.3492775274679554, -3.3600250891893975, -3.5930644316587173, -7.0, -7.0, -3.518382315545344, -7.0, -7.0, -3.585686278452497, -7.0, -3.55108386518578, -7.0, -7.0, -2.9861444647105206, -3.356599435724971, -2.367355921026019, -1.4673614174305063, -3.3866347071139713, -3.317070422532652, -7.0, -3.574031267727719, -1.3299849899596918, -3.3336263742392354, -3.1686938635769795, -7.0, -7.0, -3.568788212315347, -7.0, -2.170968230081282, -3.557426992378806, -7.0, -3.889917683436206, -2.899578750566868, -3.331427296520743, -3.5883837683787276, -7.0, -3.0167827124868407, -7.0, -3.596377143997599, -3.1844756492424127, -3.6326597132939136, -7.0, -7.0, -3.5979144712025284, -3.1073795828044486, -3.2793246654426103, -3.091103944090286, -7.0, -3.0330214446829107, -7.0, -3.125112829214528, -7.0, -3.0003255987771427, -3.1197506238845842, -2.2078237957767666, -2.874191804679071, -3.2879136470760337, -7.0, -3.322839272686321, -7.0, -3.6881527555915663, -1.9934652019872776, -3.7712199019495336, -2.9323176278852854, -2.928209579690314, -7.0, -3.318793504793297, -2.688864568054792, -7.0, -3.331326050575092, -3.6337713460825554, -7.0, -7.0, -3.532563298334475, -3.717989312300647, -7.0, -7.0, -3.4506339505970054, -7.0, -3.453573132944873, -2.4692917058468566, -7.0, -2.9853516150839536, -3.242885302889625, -7.0, -3.032054375479669, -7.0, -7.0, -2.879996481067212, -7.0, -3.589726256254237, -7.0, -3.4696011321138256, -3.314393957221963, -2.890909813992527, -1.1191864077192086, -3.393399695293102, -7.0, -1.6789184877903949, -2.039514942039481, -2.0847387221037597, -3.083263668252353, -7.0, -2.046395689767224, -2.1802334314815814, -1.321532255663362, -7.0, -3.274388795550379, -1.6745724770635728, -7.0, -7.0, -7.0, -2.9209229721223515, -7.0, -3.7413092088995694, -3.1860140602380915, -3.022958321808785, -2.256525975063038, -3.3062105081677613, -7.0, -3.6464037262230695, -2.7041505168397992, -2.728337864761174, -7.0, -7.0, -1.8926004786730173, -1.812643314985218, -1.229402270516142, -7.0, -3.024702929610656, -1.9656423629243558, -3.606488850442648, -2.2650363139745027, -3.6112983622964285, -3.4508903227897534, -2.94733567594874, -3.072102778885176, -3.855094951158622, -3.565611724902059, -7.0, -2.63663926462289, -3.00610933218244, -7.0, -7.0, -3.9453372593122817, -7.0, -7.0, -7.0, -7.0, -7.0, -3.060508975605298, -3.3261309567107946, -1.3273316108164133, -3.5993917577937564, -7.0, -3.4268364538035083, -7.0, -7.0, -7.0, -3.8603080541945616, -2.711984727554708, -7.0, -7.0, -3.316913439164992, -2.357865576008696, -7.0, -7.0, -3.400624321661767, -3.061640934061686, -7.0, -2.6225907694500417, -7.0, -3.1470576710283598, -3.1377496076933964, -7.0, -3.0271048658793513, -3.6829569263012085, -3.300704152596124, -3.0430343791213286, -3.591954555046735, -7.0, -7.0, -7.0, -3.586812269443376, -3.5795549604009986, -7.0, -3.7594411971336976, -7.0, -3.869055618701908, -7.0, -3.320613576530592, -2.8669082687032, -7.0, -3.419184452746418, -3.365737507725631, -7.0, -3.7386220279179425, -3.675778341674085, -3.219060332448861, -3.6505988981726567, -3.073535065058784, -2.4030613247630086, -7.0, -3.28668096935493, -7.0, -3.0805904144535012, -2.3050932960616484, -3.120348760073331, -7.0, -3.573683693093798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.704856768911651, -2.824044436768545, -3.5418287667813124, -2.8971556298923367, -7.0, -3.0557180220312725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6057358938767465, -3.273695587930092, -2.9953217377222296, -3.0449054380916873, -4.22417620426946, -7.0, -7.0, -2.824776462475546, -7.0, -3.552668216112193, -7.0, -3.1176855012016143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.054617841727174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0159881053841304, -3.598133645813238, -3.697665162647674, -3.1165128680770238, -2.551224026542675, -7.0, -7.0, -7.0, -2.9439339740583517, -3.0135955235372895, -3.0660695600482564, -3.3196264841556395, -3.590252528893788, -7.0, -7.0, -7.0, -3.2080716725856444, -1.2320285860833922, -2.623676956096569, -2.639066881040868, -3.5237464668115646, -2.8919089670894906, -3.013153343473396, -7.0, -2.958181497564948, -2.8727388274726686, -2.8592884423200204, -7.0, -3.5833121519830775, -7.0, -7.0, -7.0, -7.0, -2.8779469516291885, -2.807722896083161, -7.0, -3.7663384752512874, -7.0, -3.664479006216105, -1.1504140212562552, -3.269396182694991, -3.3962381043562058, -7.0, -7.0, -3.8436687229791437, -3.397853141088609, -3.607025878434786, -3.0210514059168814, -3.0096869125872336, -3.002943206876325, -3.809896246602439, -2.8872152874569856, -3.800891726851627, -2.5729960002961136, -7.0, -7.0, -3.543322900646912, -1.6142870556872067, -2.394693156774558, -3.591954555046735, -7.0, -3.754348335711019, -7.0, -3.11402686244687, -3.592620821321982, -1.2778667424010177, -3.1389339402569236, -3.1638568026386698, -2.745975132893879, -7.0, -3.9722491359625955, -2.0264496151873232, -3.9905256674594383, -7.0, -2.644673001133217, -3.4290332425510086, -2.3409758350134933, -7.0, -7.0, -7.0, -2.735465823404231, -2.563053700270298, -3.0770043267933502, -3.4158077276355434, -7.0, -7.0, -2.6672193984439363, -7.0, -7.0, -7.0, -3.3989232955264326, -7.0, -2.5282175541775285, -7.0, -7.0, -4.327123840812123, -7.0, -4.337359412001355, -7.0, -4.26085019218336, -3.9494875899465036, -7.0, -3.2809713502808844, -3.2952206256871532, -3.7985470652527273, -7.0, -7.0, -3.789463192347201, -3.8970219560603634, -4.138028874733356, -7.0, -4.400192488592576, -4.3362745688528355, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6153771576934948, -2.147968623792859, -7.0, -3.572630359747045, -3.7883805153195635, -7.0, -3.2907369876802903, -7.0, -3.500227895915016, -7.0, -7.0, -7.0, -7.0, -7.0, -3.895519229340754, -3.5653755027140734, -3.283399563240798, -2.785024602845055, -3.852880642366062, -3.2846526458315903, -3.187238619831479, -2.7344569203867417, -2.7425287512507515, -2.612213113865918, -2.867310817312023, -2.7297383385189824, -3.491921712586151, -3.885304667588968, -2.94272439249383, -2.134394814640429, -3.6726519228400023, -2.51736804348248, -2.1625010435296215, -7.0, -2.688794375266033, -4.125464999685052, -7.0, -7.0, -2.876868140105446, -2.9460181511423937, -5.7090663377095066, -7.0, -7.0, -7.0, -3.2372783666008687, -7.0, -4.507518555576424, -2.5115636955824665, -3.991181757667873, -3.5563025007672873, -3.176977039695874, -4.479330527707678, -3.3890706245373754, -3.5504729571065634, -3.0581579690126945, -3.374381698050882, -2.8885026908124822, -3.1860826583241453, -2.502532161581729, -2.262852075825894, -3.4932116717848376, -2.6207214890977757, -3.9917363704435638, -7.0, -3.5440680443502757, -2.72987442952283, -4.0576090562294835, -7.0, -7.0, -7.0, -7.0, -7.0, -2.156162297781227, -3.428620672671939, -2.513170019187924, -7.0, -7.0, -2.921443688161596, -3.7424108805804925, -3.230363757247811, -3.5769169559652068, -3.1596674343147124, -7.0, -3.370645242623348, -2.9024863809435577, -3.608632989490037, -7.0, -7.0, -7.0, -2.5228976272386414, -7.0, -7.0, -3.4809167613786745, -3.6063813651106047, -7.0, -7.0, -2.212733800963175, -7.0, -3.426901463081663, -7.0, -7.0, -4.629185257633928, -3.4921605252594574, -3.729927106517317, -7.0, -7.0, -2.358382804215933, -7.0, -2.7770641547424293, -7.0, -3.1958996524092336, -2.298957986061134, -7.0, -7.0, -3.7405995128111567, -2.970253869594787, -3.5961570809161723, -3.601081727784023, -7.0, -3.343014497150768, -7.0, -2.916980047320382, -2.5856316106761206, -7.0, -7.0, -2.7747823052705765, -2.8027737252919755, -3.708760723690317, -3.4542348957482654, -7.0, -7.0, -4.040008636013542, -3.4164740791002206, -2.8794415101012185, -2.6956275842630815, -3.846027675364379, -3.6725596277632757, -7.0, -7.0, -7.0, -3.9551583869257936, -7.0, -2.873320601815399, -2.827415432854252, -7.0, -7.0, -2.688232424165109, -2.605686349075591, -3.08074670684836, -3.430961453354948, -3.252983654280911, -3.4769764657595275, -3.9310508467773912, -2.7489628612561616, -2.994976673649691, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9275756546911103, -3.47158505418519, -3.244689360492884, -7.0, -3.767947020998737, -2.9485949073321223, -3.407447560198671, -2.8138033046630917, -7.0, -2.783367523477168, -7.0, -2.5713593927538394, -3.0419563380367, -7.0, -7.0, -2.5724247511661993, -2.6383894076653363, -3.1667571956139016, -3.6216954623292787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.007235537545952, -7.0, -7.0, -7.0, -3.2881373948820665, -7.0, -7.0, -3.26583941549449, -7.0, -3.298361762129775, -3.948119424380536, -7.0, -7.0, -7.0, -3.8134475442648212, -3.601408060534684, -7.0, -3.1405080430381793, -2.501585871330296, -2.612359947967774, -3.8093576702111056, -7.0, -3.751279103983342, -3.5634810853944106, -3.5700757053216043, -3.1252372114756253, -7.0, -7.0, -2.895238327804661, -7.0, -3.5439439424829065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.505491850629844, -3.4074758852912557, -7.0, -7.0, -2.830839617318953, -3.732956369575625, -7.0, -7.0, -7.0, -7.0, -7.0, -3.132619850835918, -7.0, -7.0, -7.0, -4.457857451703719, -3.040602340114073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9966575799270623, -7.0, -7.0, -7.0, -4.027136250754157, -7.0, -7.0, -3.3184807251745174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1298938896605275, -3.131779009369187, -3.9005855866499615, -7.0, -7.0, -2.989004615698537, -3.429752280002408, -7.0, -7.0, -7.0, -7.0, -2.9642596301968487, -7.0, -3.9724342769573653, -7.0, -7.0, -3.3896975482063856, -7.0, -7.0, -7.0, -7.0, -7.0, -4.648060618726541, -7.0, -7.0, -7.0, -7.0, -3.872272846224205, -3.2986347831244354, -7.0, -7.0, -7.0, -7.0, -7.0, -2.932220013877119, -7.0, -7.0, -2.7724012161291096, -2.2020469740330593, -1.8463027411526274, -2.166331421766525, -7.0, -3.1104213464739563, -2.6304278750250236, -2.8911656301824684, -3.274388795550379, -7.0, -3.846522668416287, -7.0, -7.0, -7.0, -3.6690843266211157, -7.0, -7.0, -3.1504494094608804, -3.0203612826477078, -4.075820590183628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6250036010148636, -7.0, -4.171228996725051, -3.712374163192314, -7.0, -7.0, -7.0, -4.993639000881486, -7.0, -7.0, -7.0, -7.0, -7.0, -3.343539879923933, -7.0, -7.0, -7.0, -4.366647051390854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3066394410242617, -3.3763031557559207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.06375856163451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.210853365314893, -7.0, -4.497981069706261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.618048096712093, -7.0, -7.0, -7.0, -3.0147724740730637, -4.1491613568893655, -7.0, -3.670802284260944, -3.5768018958289125, -7.0, -7.0, -2.887617300335736, -7.0, -7.0, -3.1903316981702914, -7.0, -7.0, -7.0, -7.0, -2.800176819315237, -7.0, -4.340622555361112, -7.0, -4.071882007306125, -7.0, -7.0, -7.0, -7.0, -2.8182258936139557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6337099436919384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.810568529216413, -3.231214647962601, -7.0, -7.0, -4.012541972775836, -7.0, -4.232029937620133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.653051634172873, -3.65571454961871, -3.407900540142635, -7.0, -3.17435059747938, -2.9708116108725178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2081725266671217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.228522262324842, -3.888179493918325, -7.0, -3.982994454658664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.138098959020332, -3.388041964786424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0023820749327608, -7.0, -3.6916118742144164, -7.0, -7.0, -7.0, -7.0, -4.157517208532612, -3.431202884556517, -4.972161166333603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.501989874055827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.711874687022362, -7.0, -7.0, -3.8904657315037134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.371677294808661, -4.922076385264607, -7.0, -7.0, -7.0, -5.387790118275218, -7.0, -7.0, -3.8003733548913496, -7.0, -7.0, -7.0, -7.0, -4.773559733815069, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1686938635769795, -3.8493989373838775, -7.0, -3.3715485984422466, -7.0, -7.0, -7.0, -7.0, -4.679654978699333, -7.0, -4.435653285326419, -3.036162949823816, -7.0, -3.7868933252613157, -7.0, -7.0, -7.0, -4.514047206658893, -3.64252387306301, -5.706347322206261, -7.0, -7.0, -7.0, -4.955047620244845, -7.0, -4.928081626246693, -7.0, -7.0, -7.0, -7.0, -4.430703778718752, -7.0, -7.0, -3.910410939914688, -3.798236176367936, -7.0, -3.4856930402936617, -7.0, -4.943108524727579, -4.654460521899409, -3.068556895072363, -7.0, -7.0, -7.0, -4.12978653452034, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.353235425636195, -7.0, -3.4025479509123913, -7.0, -7.0, -4.3404441148401185, -7.0, -7.0, -7.0, -7.0, -7.0, -4.796546581877668, -3.6033609243483804, -7.0, -3.3098430047160705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5114822886260013, -7.0, -7.0, -7.0, -7.0, -7.0, -4.249051528805085, -4.486139907384003, -7.0, -3.425371166438941, -3.6306312440205, -7.0, -7.0, -7.0, -7.0, -3.6460849959598156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504062882678692, -7.0, -7.0, -3.5282737771670436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0460422943353755, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9025467793139916, -7.0, -7.0, -7.0, -3.317854489331469, -7.0, -7.0, -3.786041210242554, -3.515313299274702, -3.606596309179285, -7.0, -3.826139617935915, -7.0, -7.0, -7.0, -4.028205119905443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.528093588006807, -7.0, -7.0, -4.545183368215406, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6332664111554247, -3.655906418180215, -7.0, -7.0, -3.2271150825891253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.496984968687506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8492350913147226, -7.0, -3.663920686219387, -7.0, -3.846120529546089, -2.6596281299598568, -4.171199716800422, -3.301959631014103, -2.739572344450092, -3.2946615846709246, -1.7901067466271179, -7.0, -7.0, -1.8453436816960902, -2.7230009671305515, -7.0, -3.680335513414563, -7.0, -3.668541215987884, -7.0, -2.2029729677980177, -3.2828074316271527, -7.0, -3.255923458732901, -2.5815114822370697, -3.686397907850216, -3.8499719123288503, -4.140947771342662, -3.5877951224616518, -3.692700074142474, -4.1532659350758685, -3.1319292790782756, -7.0, -7.0, -7.0, -4.1536929400085505, -3.886772643054438, -7.0, -2.985109335762888, -3.841015152493763, -3.195041280556656, -3.851166586670228, -2.2689179845696863, -4.146995757209465, -4.155123393710713, -3.288528676377525, -2.9901908082608895, -3.135572963494826, -7.0, -7.0, -3.7428036584691657, -3.3899040530754956, -3.481528618895993, -2.0228565485811445, -7.0, -2.8246545438441633, -2.930173564447874, -3.375511203191852, -3.8588679053701154, -3.166726055580052, -7.0, -7.0, -7.0, -7.0, -3.6810904144944385, -3.6308599203655305, -2.6490730178474116, -7.0, -4.14367043347016, -3.4238190919654046, -3.84060787900929, -2.432458028047709, -3.293288876794244, -7.0, -2.8252367353400705, -2.387479259110591, -7.0, -3.592981289228694, -7.0, -4.149680882482938, -2.6026442253688558, -3.587177588838869, -7.0, -7.0, -4.2090590341287974, -4.158694118177861, -3.5188559765638336, -2.2273412552958414, -7.0, -7.0, -1.6064136756368392, -2.1415542841654776, -1.9157185738938223, -4.14370162942477, -4.140130778371135, -1.8982652089561929, -3.139650148872528, -2.2399664702073565, -1.6745724770635728, -3.846522668416287, -7.0, -3.859258417467307, -7.0, -4.141104709327929, -3.153529050262543, -4.142827294538336, -3.596322138680332, -4.172953027546355, -3.1006166740456034, -2.4381847575910185, -3.8552768038300917, -7.0, -3.8666417205660397, -2.601531473875523, -3.2968036991071967, -7.0, -7.0, -2.912473780921181, -2.904921530689267, -2.137817459835467, -7.0, -2.592438933366342, -2.156522815290907, -7.0, -7.0, -7.0, -3.726936681435421, -3.5657002751076674, -3.430961453354948, -3.2870797934494482, -7.0, -3.556151677886138, -2.5248352370562896, -3.5151052041667894, -7.0, -7.0, -3.6107074692804284, -7.0, -7.0, -7.0, -7.0, -4.141167468646232, -2.8623482554633135, -3.1266415508735212, -2.04155249913681, -3.146438135285775, -3.204150140947795, -2.752069221992837, -7.0, -3.6712037083191547, -3.470675044798936, -3.7920237843502926, -2.980306438226822, -7.0, -4.150019201915149, -7.0, -2.143069611194018, -7.0, -7.0, -3.1053682352730725, -2.579900799284342, -7.0, -3.571446778880142, -3.1366341031122076, -3.502263204344856, -3.498999363580153, -3.7061201097027037, -3.1444288996058076, -4.17906322239498, -3.6775765388767256, -2.4378699755416258, -4.152043602487651, -7.0, -7.0, -7.0, -7.0, -4.148664339982236, -3.8412029961307326, -3.5597071786574506, -7.0, -3.2100642372915438, -4.142232991794714, -2.322336782758957, -2.8394689385624297, -7.0, -3.781994589465404, -3.4584363903733517, -7.0, -7.0, -3.5745521086639047, -3.1829279692369927, -3.4697925712863382, -3.22219604630172, -2.6774096358239126, -7.0, -2.581676161743162, -7.0, -2.0082633788160718, -1.9092378965528287, -1.7542390929782323, -7.0, -3.226170123398999, -3.8397921844453293, -3.4362762623407903, -7.0, -7.0, -7.0, -7.0, -2.9752939153562066, -3.290563237915255, -7.0, -4.199206479161658, -7.0, -3.2327844143207414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4576548542184598, -3.225890536974668, -2.673434364072537, -7.0, -3.373187949912719, -3.2518814545525276, -4.168173262170234, -7.0, -7.0, -4.191311257590993, -3.4796616710572343, -4.17805561153123, -7.0, -7.0, -7.0, -7.0, -7.0, -4.144636467588492, -4.180355296448789, -3.512783346395494, -7.0, -7.0, -7.0, -7.0, -7.0, -3.856275634663985, -7.0, -3.8584770418133405, -3.3569814009931314, -4.183810595098135, -2.288885772881598, -3.396395520169268, -4.18130038026682, -7.0, -7.0, -2.70456025280453, -3.8878703775119305, -2.3977377503944584, -7.0, -3.220054418430261, -3.560952218446867, -3.671481400086431, -7.0, -4.064701275737697, -2.0303914491326585, -2.492721597147762, -3.2275595172362737, -2.9264710693074494, -2.6549054442039144, -3.0118422079264753, -4.144978738020031, -3.8701404392376397, -3.5120971148810134, -3.3609718837259357, -7.0, -3.6724365371419165, -3.326277326730684, -7.0, -4.178775572045411, -7.0, -3.1506448175550226, -3.7378483616270444, -4.1694098981407, -3.2527721492435755, -4.1760333492640225, -3.2378709255202747, -1.5006023505691855, -3.1915441607348294, -2.3973248795188713, -4.144138137663588, -4.161457846971751, -3.9359856330811804, -4.184265443062108, -4.350751817816416, -3.742672771972318, -4.290101420759143, -3.708194203283994, -3.9226476204660505, -3.894675979083117, -2.893350008215764, -3.03882923882737, -3.8399491678129896, -7.0, -7.0, -2.802203410722948, -3.54476236021663, -3.248524985024069, -7.0, -3.6009184694091028, -4.14903426716125, -4.1900794539415145, -3.5499836111596887, -1.4925694660571351, -4.158935141829918, -3.2627179920118423, -3.3989067880771966, -3.255423275624488, -2.77745745648593, -2.3455535206185987, -3.0864008375291396, -3.858115932190066, -3.2916352070879005, -3.17288362158977, -3.0307346169761686, -7.0, -3.8626381581186875, -7.0, -3.9250541203118425, -3.2475939016334037, -4.270771972426836, -3.5879914264312434, -7.0, -7.0, -3.3555062516302954, -4.149373090491385, -7.0, -7.0, -4.250541978010273, -4.151277893904123, -2.9221677949187748, -7.0, -7.0, -4.421283022642609, -4.383366482755039, -4.505543379461151, -7.0, -3.6665179805548807, -3.966000857628784, -4.019780730403647, -2.9184630502343385, -3.406447715743738, -7.0, -7.0, -4.224299926079827, -3.817611638957548, -3.9732933775729475, -3.8087003759166254, -4.540604732747191, -4.083058064691019, -4.288003160031862, -4.081509327758223, -7.0, -7.0, -4.297135674099161, -4.206488559912443, -3.4996229415662405, -1.9931308791052327, -7.0, -4.07109367343858, -3.6128595111893813, -7.0, -3.029103150471092, -3.9665484487767353, -3.0681501687539985, -4.5370000873213385, -4.461903519335254, -7.0, -4.406369835469268, -7.0, -3.921467973002443, -2.924978217261524, -2.6932471538294744, -4.163250849512631, -3.3989232955264326, -3.2151822754505077, -3.4202652587643403, -2.853892809956602, -2.848817254910999, -2.4922853379102463, -2.370579019237581, -2.9333560385709307, -3.7400994009248563, -4.135683786580058, -2.824635644686762, -2.031300237856936, -4.175801632848279, -2.9100691775662204, -2.235550402595322, -7.0, -3.0362295440862943, -3.965895171299572, -7.0, -7.0, -2.563351832831913, -2.622428887614762, -3.672201070733908, -7.0, -3.659226673770496, -4.151614972016013, -3.391955332135257, -7.0, -3.340892514452765, -3.256769272878171, -4.174379665748987, -7.0, -3.0729847446279304, -3.703538554624196, -3.2560955895173525, -7.0, -2.9674602192761386, -3.5174598265402324, -3.447294314502097, -2.7917400551248437, -3.381205361238583, -2.49865185631621, -3.673343511417442, -3.3268732749874856, -3.616818104596417, -7.0, -3.5385234653327093, -2.9046994005024, -3.6168560768455857, -3.845098040014257, -7.0, -4.13950127473591, -7.0, -7.0, -2.2165201664611134, -3.2398831523208846, -2.102005842956844, -7.0, -4.184237029016371, -3.226022671672174, -3.3535040694754548, -3.3417170844331974, -7.0, -3.277425832275861, -7.0, -3.257518584268037, -2.861434836289783, -4.156700552582017, -7.0, -7.0, -7.0, -3.213276213896695, -7.0, -7.0, -3.8098513907377116, -4.156064312339866, -4.1596574112477045, -7.0, -2.4963812798964615, -7.0, -3.227298926507505, -7.0, -3.8451910931478994, -4.422097163131711, -3.3461509887569085, -3.191759484998457, -7.0, -7.0, -2.1550562214147613, -7.0, -2.6659560294539566, -7.0, -3.2725377773752373, -1.849486707095343, -7.0, -7.0, -7.0, -3.4757583289758744, -3.958468318366944, -7.0, -4.179206976155488, -3.2635768963716663, -7.0, -2.6763506101478534, -2.233968902971278, -7.0, -7.0, -2.8452789583596783, -2.840053791875626, -3.7102302275037986, -3.0563330349511615, -7.0, -7.0, -4.327338496518052, -3.1484904774886924, -2.440656947429615, -3.0642975059528488, -3.2375688701981984, -7.0, -7.0, -7.0, -7.0, -3.3822197260983238, -7.0, -2.986071597919377, -2.514126978289329, -7.0, -4.140539466972342, -2.4501151701588846, -2.2278945392681075, -2.827319557012113, -7.0, -2.7251983664911528, -2.9097164532343447, -3.9734511440249345, -3.8687619582120503, -3.0018598590524785, -4.254427221540668, -4.172281761455, -7.0, -7.0, -7.0, -7.0, -7.0, -3.015180059737978, -3.732554579851432, -2.991964044403458, -4.190051417759206, -3.7460422835519394, -3.3637730982326692, -7.0, -2.9771854460106875, -7.0, -3.2770932548562834, -7.0, -2.7297536636567603, -2.7353569124617954, -7.0, -7.0, -2.6225306165918294, -2.3104389933890426, -2.9184406291931984, -4.160438516641545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3401134757058357, -7.0, -3.40840957846843, -4.153326961490906, -7.0, -4.146995757209465, -3.549095263822955, -7.0, -7.0, -3.3538063594424754, -3.8755531851015124, -3.418002818524436, -3.981274832706589, -7.0, -7.0, -7.0, -7.0, -4.154667377622576, -7.0, -3.350674348233281, -3.8582965245338854, -3.681060243631812, -7.0, -7.0, -7.0, -7.0, -3.845035993513415, -3.8927900303521317, -7.0, -7.0, -3.574089169798587, -7.0, -7.0, -7.0, -7.0, -2.8926510338773004, -7.0, -7.0, -3.0155693064298794, -2.946943270697825, -7.0, -7.0, -5.205615719952685, -3.7428036584691657, -7.0, -7.0, -7.0, -3.6190150252837587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.220195287012721, -4.125094201713969, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.867962195629719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.909020854211156, -7.0, -7.0, -4.665330785346678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.643822656189299, -7.0, -3.3224260524059526, -3.609103282832011, -7.0, -3.922829219666649, -3.3400473176613934, -7.0, -3.1439511164239637, -3.4924810101288766, -7.0, -7.0, -7.0, -7.0, -7.0, -3.606703741333674, -3.853865449855675, -7.0, -7.0, -3.458033192496506, -7.0, -3.4587133719337437, -7.0, -7.0, -7.0, -4.223418056905294, -7.0, -7.0, -7.0, -7.0, -3.8959747323590648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.231247798947839, -7.0, -3.7327956982893293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.859258417467307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.384443024058778, -7.0, -7.0, -7.0, -7.0, -4.090011024007147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8822113687583846, -4.456062224454952, -7.0, -7.0, -7.0, -4.3933909180321775, -7.0, -7.0, -3.340939602038078, -7.0, -7.0, -3.704986543890056, -3.521007252408604, -7.0, -7.0, -4.3743816980508825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.132579847659737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.36968577944444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.005395031886706, -7.0, -7.0, -3.341038631677523, -7.0, -3.3102683666324477, -3.0874264570362855, -3.3590900147177467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3381575642717727, -7.0, -7.0, -7.0, -7.0, -3.741205423348115, -7.0, -3.707910665713106, -3.6224212739756703, -3.2664668954402414, -7.0, -7.0, -2.6410773133253747, -7.0, -2.992553517832136, -3.664265800147675, -7.0, -7.0, -7.0, -7.0, -2.6648299411430907, -4.047761471896603, -7.0, -3.3084932702271614, -7.0, -7.0, -7.0, -3.295567099962479, -7.0, -7.0, -3.7687860469080143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.142577160920535, -4.935101499694514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3935752032695876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3528402666795025, -7.0, -7.0, -7.0, -3.003029470553618, -7.0, -7.0, -7.0, -2.8382192219076257, -3.712144414214886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5839289135634917, -7.0, -7.0, -7.0, -7.0, -7.0, -3.705564390520156, -7.0, -3.675319983339292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.644290845128294, -7.0, -3.1848333339333537, -7.0, -4.831959310304302, -3.609914410085998, -2.975431808509263, -3.4480434434366742, -7.0, -7.0, -3.623352681537992, -7.0, -7.0, -7.0, -3.8090881313463463, -7.0, -3.264463634204881, -7.0, -4.749430965686463, -3.8894697839695076, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0538464268522527, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1245042248342823, -7.0, -7.0, -7.0, -7.0, -3.536594512043907, -7.0, -4.4441072798376, -7.0, -7.0, -3.9060033293720053, -3.7989267385772014, -7.0, -2.879955585122749, -7.0, -7.0, -3.1075491297446862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9055260484350485, -7.0, -7.0, -4.598823323746008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.882177191180505, -3.6902403935311185, -7.0, -7.0, -7.0, -7.0, -4.584918933640037, -4.335698551498222, -7.0, -4.6232027563533284, -7.0, -4.319043566399113, -7.0, -7.0, -7.0, -4.536065794512006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.680126929448146, -4.32990612340021, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7721749608246142, -7.0, -4.673223714939716, -4.76624549251132, -7.0, -7.0, -4.335076597314406, -7.0, -5.236290318561915, -7.0, -3.5358002908248976, -7.0, -4.00991336809817, -3.683272236315922, -7.0, -7.0, -3.841922311679451, -7.0, -7.0, -4.378851946448881, -7.0, -7.0, -4.993034818671166, -4.374429661918521, -5.10463901952532, -7.0, -7.0, -7.0, -4.4799158561965475, -7.0, -4.5608047076145, -7.0, -7.0, -7.0, -4.3284407673684075, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9000009651534695, -4.190779770928018, -7.0, -7.0, -4.65646714762775, -7.0, -4.306742711557243, -7.0, -7.0, -7.0, -4.302395873152567, -7.0, -7.0, -7.0, -7.0, -7.0, -4.473676704353028, -7.0, -7.0, -7.0, -7.0, -3.746478509930031, -7.0, -3.36679638328673, -7.0, -7.0, -7.0, -4.021216872447421, -7.0, -7.0, -7.0, -4.136625455760932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.59990489536868, -4.4935695729787, -4.790137323895, -7.0, -7.0, -3.9525018478630236, -7.0, -7.0, -7.0, -7.0, -3.957343853304138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.306530298301876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.633741066536528, -3.649334858712142, -7.0, -4.011210849480231, -7.0, -3.7601207852645677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0731560301682705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6942541120252788, -7.0, -7.0, -7.0, -3.2016701796465816, -4.099542528695332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3027637084729817, -3.3647385550553985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6834973176798114, -7.0, -7.0, -7.0, -7.0, -7.0, -4.025551622782544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.504968079417868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.871864702088195, -7.0, -7.0, -4.109140808689869, -7.0, -2.6893088591236203, -7.0, -2.958085848521085, -7.0, -7.0, -4.5633089947461265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.967547976218862, -7.0, -7.0, -7.0, -4.5384700487028695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.951337518795918, -7.0, -1.5738167483447931, -7.0, -4.429919077322681, -7.0, -3.5887757562041043, -3.4738517701548153, -7.0, -7.0, -3.397418542351348, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145569297792989, -2.5224442335063197, -7.0, -7.0, -7.0, -7.0, -3.002274081774949, -7.0, -7.0, -5.124566169329008, -7.0, -7.0, -7.0, -7.0, -3.8608767964032977, -7.0, -2.397070549959409, -7.0, -3.4000196350651586, -7.0, -2.851869600729766, -7.0, -2.5902286212401577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8809088218572945, -7.0, -7.0, -7.0, -3.125047296659335, -3.3730224027881572, -7.0, -7.0, -3.018284308426531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.864451747158183, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0211892990699383, -3.402089350572097, -3.5770319856260313, -7.0, -7.0, -4.293892667053009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.04766419460156, -7.0, -7.0, -7.0, -7.0, -7.0, -4.061339366837068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1992064791616577, -3.560683591907453, -7.0, -7.0, -4.247786135914882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.628281351530588, -7.0, -7.0, -7.0, -7.0, -3.388828768245126, -7.0, -7.0, -3.076397685429307, -7.0, -2.8424011943457916, -3.131297796597623, -7.0, -7.0, -7.0, -3.6026025204202563, -7.0, -7.0, -7.0, -3.9380190974762104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.13481437032046, -7.0, -2.783903579272735, -7.0, -7.0, -7.0, -3.0308020487722676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8435442119456353, -7.0, -2.075546961392531, -7.0, -1.271841606536499, -7.0, -2.144574207609616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.496237545166735, -7.0, -7.0, -7.0, -4.309523709653114, -7.0, -4.530622257106078, -7.0, -4.7087352461451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6924062348336304, -7.0, -7.0, -7.0, -7.0, -7.0, -3.414137362184477, -7.0, -7.0, -7.0, -3.071513805095089, -7.0, -7.0, -7.0, -2.979548374704095, -2.833890494261626, -7.0, -7.0, -7.0, -5.131037719826043, -3.8771985152717896, -7.0, -7.0, -7.0, -7.0, -3.555094448578319, -7.0, -3.6411269328035094, -3.46553155697355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6742179455767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.294833494244287, -7.0, -7.0, -1.9956351945975501, -7.0, -7.0, -3.198519630241168, -7.0, -3.697490887171057, -2.5603849229720153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1388287969367386, -7.0, -2.5625003464965244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.587362941142179, -7.0, -7.0, -7.0, -4.297826142585328, -7.0, -7.0, -7.0, -7.0, -4.670941280735775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.528273777167044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.667555677069314, -4.21986134467424, -3.09037563638456, -7.0, -7.0, -7.0, -7.0, -3.979548374704095, -3.4507108781469196, -7.0, -4.660300907670251, -4.37685058584761, -7.0, -4.432568465297358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.513190955417365, -5.487544187501127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4796256894432895, -7.0, -4.2063130519359575, -7.0, -4.896647450295432, -7.0, -7.0, -4.465010864717407, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6048737705526355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7555699806288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.315329971070087, -7.0, -7.0, -7.0, -3.921842481405858, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6538875580709775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.346734281891791, -3.413132050434872, -7.0, -3.119915410257991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.78161178249315, -7.0, -7.0, -3.772101569277012, -4.025408281131747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2496303979613295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6392872259102367, -4.270511140487177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.864255887753539, -2.646893624167745, -7.0, -7.0, -7.0, -7.0, -7.0, -2.742568034366142, -7.0, -7.0, -7.0, -4.839462334554431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6414741105040997, -7.0, -7.0, -7.0, -3.865475467938409, -2.9204711793184543, -3.4116758127370184, -7.0, -7.0, -7.0, -7.0, -2.907411360774586, -7.0, -7.0, -7.0, -2.852479993636856, -7.0, -4.145320738918325, -7.0, -7.0, -3.3510228525841237, -7.0, -7.0, -7.0, -7.0, -7.0, -5.124514006131383, -7.0, -7.0, -7.0, -7.0, -3.859918485200716, -7.0, -7.0, -7.0, -2.794139355767774, -7.0, -7.0, -7.0, -3.1894903136993675, -7.0, -4.928656965002814, -3.5017437296279943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.141104709327929, -7.0, -7.0, -7.0, -2.452265736402763, -7.0, -7.0, -7.0, -3.6008640363098396, -3.469711588088793, -7.0, -2.3242824552976926, -2.709693869727792, -7.0, -4.078801072025558, -7.0, -7.0, -7.0, -3.508395033133053, -7.0, -7.0, -3.6878261179021794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.293539330731757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.041392685158225, -7.0, -7.0, -7.0, -7.0, -7.0, -4.538309759381733, -7.0, -7.0, -7.0, -3.083860800866573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.56520362402106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4307735806966204, -7.0, -7.0, -7.0, -7.0, -3.5331420722009406, -7.0, -3.6509870943834453, -3.074450718954591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4305587695227575, -7.0, -7.0, -3.5951102557780383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941173406099363, -7.0, -7.0, -7.0, -7.0, -2.873320601815399, -7.0, -7.0, -7.0, -7.0, -3.1992064791616577, -7.0, -3.017450729510536, -3.17435059747938, -7.0, -7.0, -3.8319763626923518, -7.0, -4.22936182573706, -7.0, -4.708599340655707, -7.0, -7.0, -7.0, -3.979001748474721, -7.0, -3.946697837245742, -3.690993032099869, -7.0, -7.0, -7.0, -7.0, -2.3571722577230334, -2.5059973824558917, -3.379668034033654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431990625786141, -3.876275588677879, -7.0, -7.0, -7.0, -7.0, -3.5531545481696254, -7.0, -3.94146173934733, -7.0, -7.0, -7.0, -7.0, -7.0, -5.82822215975518, -3.852845818014997, -7.0, -7.0, -7.0, -3.7320719409998664, -3.585347911094591, -7.0, -7.0, -7.0, -7.0, -2.954724790979063, -7.0, -7.0, -7.0, -7.0, -3.5870371177434555, -7.0, -7.0, -4.3819810000434645, -5.574107117873171, -7.0, -3.1685711364498443, -7.0, -3.452169918535435, -7.0, -7.0, -7.0, -3.497620649781288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6538600257721283, -7.0, -7.0, -4.591910100931143, -7.0, -7.0, -7.0, -7.0, -4.367486376167786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.996415346163988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.323850003846802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9425041061680806, -7.0, -4.1106420768469505, -2.9642596301968487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9901789623582675, -4.642406572758529, -5.706168808104415, -7.0, -7.0, -7.0, -4.954039791376542, -7.0, -4.927724430480919, -7.0, -7.0, -7.0, -7.0, -7.0, -4.780554920725867, -7.0, -7.0, -7.0, -4.595518266671238, -4.48297357411599, -7.0, -4.641032650947389, -4.653453721491571, -7.0, -5.04591728153028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.722057771331464, -7.0, -7.0, -7.0, -7.0, -7.0, -4.116275587580544, -7.0, -7.0, -7.0, -7.0, -3.1518293401318713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.83806861796557, -7.0, -7.0, -7.0, -3.9210098014970343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.322219294733919, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.193958978019187, -7.0, -7.0, -7.0, -3.5005109105263372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.17059220118295, -2.9326428495466836, -7.0, -3.114610984232173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8491121661845775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2243387908596555, -3.255995726722402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1696744340588068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.19566907396904, -7.0, -3.960470777534299, -7.0, -3.492294657634319, -3.5407464642438433, -3.7041076002448827, -7.0, -3.5055569386638217, -2.098553612524514, -4.1423894661188365, -7.0, -3.3672161041609696, -3.2728587109917084, -2.7731244371386063, -3.5227484373886053, -7.0, -7.0, -3.9674543681827408, -3.66185999172781, -2.4205010561979434, -3.9138932892309164, -7.0, -2.301161580116405, -2.471445162701238, -3.692979037459632, -3.1967747357061187, -7.0, -2.4983916469616974, -3.2247919564926817, -3.0749535069180194, -3.499279872843174, -3.215505378231818, -3.966000857628784, -7.0, -2.9370161074648142, -3.7283131918551256, -3.494896343954353, -1.459993675072905, -3.0068937079479006, -3.194870986853204, -3.4998702905864882, -3.023998126259445, -2.7373329866975253, -7.0, -3.7342796444928203, -7.0, -2.667519659668659, -7.0, -3.0386643087839875, -4.0750357259221905, -2.6770852776044296, -3.11544408343624, -1.711963179545754, -1.664973624661134, -2.116349422072715, -2.5803985580573445, -3.377397326769886, -3.143014800254095, -2.9442168511849927, -2.43109559836973, -7.0, -7.0, -3.1878496072451403, -3.5089335260500327, -2.6139826893706237, -2.4745478950919684, -2.3206654666652975, -3.486949715838293, -2.5159517231132873, -3.961278679085043, -2.8694170121245586, -2.9987621687240558, -3.062863902110119, -3.014138539892673, -3.0152832517428707, -3.6642187553031396, -1.7653164119053328, -7.0, -7.0, -1.8339166756306267, -3.1279951610475374, -3.0209594528185275, -7.0, -1.5547070012435482, -2.4523277249361604, -2.163310488963686, -3.3869268067955693, -2.2246834068778054, -7.0, -2.494193733751878, -2.7609607093960578, -2.919691904136397, -7.0, -7.0, -7.0, -1.978019806535125, -3.1999901215285598, -2.9209229721223515, -3.6690843266211157, -3.153529050262543, -7.0, -2.8809088218572945, -2.452265736402763, -7.0, -2.105054182122119, -3.002558733105052, -3.3084790401617297, -2.084559256457055, -1.4567597543804305, -3.9833104857941155, -3.2737880795675203, -2.383859134635737, -7.0, -2.506677432006041, -3.2140044606589733, -7.0, -3.2571583897731577, -2.481514288346029, -3.511147778494773, -2.142121189893748, -1.8714671335590565, -2.8106649596666315, -7.0, -4.193681029541281, -3.984932166067412, -3.668746395975131, -2.429097268342519, -3.105245174835122, -1.7640632883267116, -7.0, -3.9863237770507656, -1.9059280135255012, -3.2884728005997825, -7.0, -3.183032459428792, -3.359062655840945, -7.0, -7.0, -7.0, -3.6654871807828107, -3.960470777534299, -2.672975925825707, -2.5773986335852532, -3.156303011673324, -3.227629649571009, -7.0, -4.211307466668955, -3.962274604623315, -3.971461405024587, -2.2913862643725498, -4.302633919813779, -3.48826861549546, -7.0, -3.1281683960942717, -3.686725621074542, -2.4152248358937083, -3.1830799466610196, -7.0, -3.7244397233970745, -2.928011577509416, -7.0, -3.2302785764135864, -4.016029963076024, -3.446575997104686, -3.002048191086249, -3.244359600050387, -2.8475458367672832, -3.3173946751202754, -2.9387016286270686, -2.25795678802557, -2.4688548185775088, -7.0, -7.0, -3.9894498176666917, -3.0710070168021875, -3.369447790383294, -3.962179852908768, -1.6448110547410144, -3.9746037920870325, -3.443262987458695, -7.0, -3.2409858192066068, -1.378189702858012, -2.7354214555764456, -1.8125142805918906, -1.270211321237851, -2.626254800537626, -1.8614294532301892, -3.7122707911929065, -2.5153356074766453, -3.001214325286179, -3.167949956100975, -2.282253391565358, -2.1344635297156462, -3.3459941746780104, -7.0, -3.0994833242126694, -3.425778686860983, -3.5323296410790315, -3.9690896029549214, -3.312790692146442, -3.9600424557268417, -3.1168491528226485, -3.3802112417116064, -4.013847995871831, -3.274942566083686, -7.0, -2.9759829437125465, -3.7371926427047373, -7.0, -2.6287425100903885, -2.747356310540248, -2.836296589515527, -7.0, -3.2607866686549762, -2.6504462975321914, -3.361444508086328, -3.968716377466786, -3.1998922435263193, -7.0, -3.681467373533731, -2.031146050659409, -2.982479978288434, -2.8545019346694915, -4.076698354565139, -7.0, -3.4989534769002115, -3.504561472651623, -3.523486332343228, -3.961088719767896, -3.6654871807828107, -3.432086985778083, -3.715292858349809, -4.015233976246709, -7.0, -7.0, -3.9667047766578745, -3.1261778087238485, -7.0, -7.0, -2.8132055719057973, -2.6104789427735, -7.0, -7.0, -7.0, -3.4937832434341214, -2.872783607024382, -2.2993075019841833, -7.0, -3.686948920211501, -3.528177256557267, -1.8954815918354517, -3.1679373127005777, -1.4415086913407607, -2.259401051009384, -3.0602727791117927, -3.959136831170374, -2.0570403495899465, -3.030275802889288, -2.5294772052540186, -3.989004615698537, -2.992654903904743, -3.5161385767170743, -7.0, -3.672744198306599, -2.851117168304362, -3.306425027550687, -2.5079294331360718, -2.3987919689126604, -2.988084942758665, -2.1928246860085694, -2.730064136632307, -3.0112414148058138, -1.9966867556001715, -1.090018713022885, -2.1522496285834407, -7.0, -3.496006598880036, -3.3066823110190553, -7.0, -2.634141258939403, -3.6586790285824486, -2.6192539127997327, -2.072139306017309, -3.156981586378864, -3.580088257788128, -3.0573702197800987, -2.70387541443253, -2.2683173084753983, -7.0, -3.601889342116067, -7.0, -1.6950205930177513, -3.056558385835925, -2.4773693521168143, -1.9264679326220504, -2.3072377598907905, -3.567790710533536, -3.548635059814752, -3.7790912038454993, -4.040760524228698, -3.3802947028480497, -2.322001548686789, -7.0, -7.0, -7.0, -2.455575688084891, -2.44224111761806, -3.131206076537746, -7.0, -3.1476376842231093, -3.3700039246800597, -2.4984727249945853, -3.2777925189314416, -2.2391710940895515, -7.0, -2.9556440257243017, -2.1062492925699923, -2.944841444976771, -3.508324979986373, -2.4482437350117094, -3.4890886085265387, -7.0, -1.6657210594926508, -3.4732910035356044, -2.7015679850559273, -7.0, -2.4863419105902533, -7.0, -1.9568500102505335, -2.8457475186617014, -2.623844235885958, -2.669316880566112, -3.485674115137571, -7.0, -2.9009910030419435, -2.9305322640259663, -3.683947130751512, -3.6878409704006643, -2.365220479811975, -3.1970966908570375, -1.4926406772196101, -3.9581814975649476, -3.9608036249117697, -2.8053105152712585, -3.789824197473217, -7.0, -3.808919584566607, -3.934952707817858, -2.5427307342716947, -4.210131168184136, -2.9134027400377787, -2.905050221975924, -3.217053025228425, -7.0, -3.982406928863795, -3.279837982245049, -3.361575143217912, -3.1925953275692116, -4.477280466842588, -3.4243759871838835, -3.331535580012643, -7.0, -3.510842778118108, -4.094191524909532, -4.00508437344062, -3.6604860157849677, -3.215047503142592, -4.330393478740346, -4.176857835696882, -3.9556877503135057, -4.380319801762641, -7.0, -3.100306711137599, -3.5177047595531556, -3.635808418306866, -3.7740203453406393, -3.9076263048432662, -7.0, -4.016552844116219, -7.0, -3.364034788118208, -3.6803899101516118, -3.2987570408817506, -3.294201600694746, -3.1099393869325063, -1.9181298934192341, -1.5709235268536406, -2.973424761988879, -4.175772659601536, -4.038222638368718, -2.931547037066958, -2.2990902273367504, -2.7911733677996433, -3.4134075458060016, -3.046906848709895, -2.843040423444765, -7.0, -2.73561099552132, -3.229937685907934, -7.0, -3.8717771927051063, -3.809775125133529, -7.0, -7.0, -1.9244209115260107, -2.737265698588125, -3.7050004010621724, -3.972341716325748, -3.177055287158298, -3.6750906226358344, -2.688225928730787, -7.0, -3.656317987928804, -2.932727367301529, -3.7987714577882628, -7.0, -3.26749439494725, -4.075814511416446, -2.900191278044629, -3.8019864946643342, -2.999878380517545, -3.399125460874943, -2.855846711602347, -2.669195082125619, -3.20960436635488, -2.4012689989328777, -2.97365555048346, -3.788239097382168, -3.2667658843118588, -7.0, -4.099507993727965, -2.7220320878181923, -3.8513500913836216, -3.365721916747837, -7.0, -7.0, -7.0, -7.0, -2.2979792441593623, -2.0679840801684466, -2.1946154079057703, -3.6685256885568625, -3.3248994970523134, -2.7951135650233447, -7.0, -3.182822096391546, -3.9707187037201894, -2.897474358923155, -7.0, -2.8393926115935413, -2.3391772005636295, -3.9838066419784153, -7.0, -2.141240010315327, -3.730620797887283, -2.448212784700745, -7.0, -3.9814108401658883, -1.660352445316127, -7.0, -7.0, -7.0, -2.327504891195603, -7.0, -3.374037684237919, -7.0, -7.0, -4.682605310982301, -1.7203746208767083, -3.3397370674146667, -7.0, -7.0, -2.187495313840703, -7.0, -2.458562312981994, -7.0, -2.8350137707602987, -2.4153039871051005, -7.0, -3.9688097139128584, -7.0, -2.545946631353733, -2.8977887493909136, -2.4865447338028455, -3.2383388812371847, -2.76733050948733, -7.0, -2.2253509746632445, -2.0687398856757437, -7.0, -7.0, -2.427918673356549, -2.3094466032480514, -7.0, -3.3548956047110607, -7.0, -7.0, -3.7412566785720904, -3.2545883548258496, -2.0706133304677987, -1.9220138307296577, -4.099956734241182, -1.9990529802371073, -7.0, -7.0, -3.3783979009481375, -3.6868744999220815, -7.0, -3.188406132930918, -1.8030872037155392, -4.00650882777529, -3.18089014193745, -1.842195051239908, -1.8549582075503341, -3.1069044989356436, -4.040206627574711, -2.8465181435963296, -4.063445953123033, -3.3709138298239774, -7.0, -2.8561244442423, -4.122346966255079, -7.0, -4.00026049854739, -3.963079160641827, -7.0, -3.352651027608356, -7.0, -2.7863520708696945, -3.759554535696884, -2.7696337073496875, -2.18821497141379, -3.1336703790124876, -3.1228907572854245, -7.0, -2.57951684265999, -7.0, -2.7871269470128004, -7.0, -2.5697750745872114, -2.9185872716624233, -4.130719636562953, -7.0, -2.3623986907281687, -2.6734158998636306, -2.4320040756867116, -3.387033701282363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.999188559386703, -7.0, -3.3286649614415253, -3.3764400779834967, -7.0, -7.0, -3.2764618041732443, -3.9882913419074875, -7.0, -2.3988865280773632, -3.712060142461075, -2.8998002437923684, -3.3813257060905904, -7.0, -3.6842617229289067, -3.9606610072709816, -2.121413924158609, -3.378443326865433, -7.0, -3.0717196036338423, -3.032842520184797, -3.207589490666431, -3.1763083520279114, -4.055148889889394, -3.2041587572179706, -3.4880333912672628, -3.666845449884052, -3.1924878028123604, -3.6614813978436156, -3.2741248469093267, -3.0577928497102045, -7.0, -3.9577030415488315, -7.0, -7.0, -7.0, -7.0, -7.0, -3.176958980586908, -7.0, -7.0, -7.0, -4.204016825466072, -7.0, -7.0, -7.0, -3.8884041677370464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.635121683866136, -7.0, -7.0, -7.0, -4.27057519855504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9749719942980692, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3687516195445553, -7.0, -3.312811826212088, -7.0, -4.4416762870082565, -7.0, -7.0, -3.285107029566812, -7.0, -3.61857102812013, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7029902775892602, -2.707399831133249, -3.8920946026904804, -7.0, -7.0, -7.0, -3.404149249209695, -2.9360107957152097, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9700522868628005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.124693290881075, -7.0, -2.529986128254395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.460747541844197, -7.0, -3.204662511748219, -7.0, -4.150595275965512, -3.509202522331103, -3.7091851295502454, -7.0, -7.0, -7.0, -2.8915374576725643, -7.0, -7.0, -7.0, -4.142827294538336, -7.0, -7.0, -7.0, -2.105054182122119, -7.0, -7.0, -7.0, -3.3055663135153037, -3.29448459694402, -7.0, -7.0, -2.5554975061310574, -7.0, -4.3808621953412015, -7.0, -7.0, -3.286905352972375, -7.0, -7.0, -7.0, -3.4674897127574646, -4.451694349193542, -7.0, -7.0, -7.0, -7.0, -3.037027879755775, -7.0, -2.5378190950732744, -7.0, -7.0, -4.294752721910178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2329961103921536, -3.8462752424122133, -7.0, -7.0, -7.0, -7.0, -7.0, -2.360593413565249, -7.0, -3.811373897053893, -7.0, -7.0, -7.0, -4.237945676609235, -7.0, -7.0, -7.0, -3.1031192535457137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.221513958388284, -7.0, -7.0, -7.0, -7.0, -2.710963118995276, -7.0, -7.0, -3.308671106715418, -7.0, -7.0, -7.0, -7.0, -3.2844095223628234, -7.0, -3.3550682063488506, -2.8587777373054495, -3.105510184769974, -3.3283796034387376, -7.0, -2.909020854211156, -7.0, -7.0, -3.0041063232796583, -2.4892551683692603, -7.0, -7.0, -3.9399682905513362, -3.2422929049829308, -4.337559087628736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8992731873176036, -3.5549734583332397, -7.0, -5.411748460239424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8790958795000727, -4.941446830252359, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.912487761332324, -7.0, -3.1005773027895964, -3.190051417759206, -2.1492191126553797, -7.0, -4.009280884255359, -7.0, -4.531121115412728, -2.918554530550274, -4.7090663377095066, -7.0, -7.0, -7.0, -3.981501488148247, -3.7214808547700495, -3.949390006644913, -7.0, -3.824516328007209, -2.8254261177678233, -7.0, -7.0, -2.377670439334323, -2.091750677014142, -3.3895204658463776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.916295994563131, -7.0, -7.0, -7.0, -4.654028863068111, -7.0, -7.0, -7.0, -7.0, -2.4608978427565478, -3.5597869682005565, -3.2182728535714475, -7.0, -3.4712917110589387, -7.0, -7.0, -7.0, -7.0, -5.226193772454605, -3.85618492672717, -7.0, -7.0, -7.0, -3.7364761820276966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.376576957056512, -7.0, -7.0, -7.0, -7.0, -7.0, -3.905777896787175, -5.398046542517314, -7.0, -3.2976875755910435, -7.0, -7.0, -7.0, -2.9763499790032735, -7.0, -7.0, -7.0, -7.0, -2.9689496809813427, -7.0, -7.0, -3.35237549500052, -7.0, -2.8698182079793284, -7.0, -7.0, -7.0, -3.220631019448092, -7.0, -7.0, -4.592520946518943, -7.0, -7.0, -7.0, -7.0, -4.368510019595464, -7.0, -7.0, -4.8789065156607965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6679196853173615, -3.834581509861899, -3.0255984179749933, -7.0, -7.0, -7.0, -4.757714799332841, -3.9813201732591073, -7.0, -7.0, -7.0, -4.67825426226744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.990423218731616, -4.7886179938368425, -7.0, -7.0, -7.0, -7.0, -4.352216295257527, -7.0, -5.103913135702874, -4.067480023931482, -7.0, -7.0, -7.0, -7.0, -4.780950646376869, -7.0, -7.0, -7.0, -7.0, -4.006580127619797, -7.0, -4.641305515998657, -4.954758530638175, -7.0, -5.046024716583911, -7.0, -7.0, -4.304242719659696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.164189220875209, -3.0038911662369103, -4.17655425961329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.795476804945366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.15601883092165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6163284485376055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3283796034387376, -7.0, -7.0, -7.0, -3.2089785172762535, -3.974327435423617, -7.0, -7.0, -7.0, -3.4800069429571505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.142667069274032, -2.8165726960261033, -7.0, -3.132579847659737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4832305869021027, -7.0, -7.0, -3.473778834646725, -3.928876996969838, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.390617214336786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1983821300082944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7130801029688874, -7.0, -2.3418582954511553, -7.0, -7.0, -3.3395749783523323, -7.0, -7.0, -7.0, -2.983726493512128, -2.776095557782467, -2.239373094599889, -3.4222614508136027, -7.0, -7.0, -7.0, -2.8784476648392694, -7.0, -7.0, -3.0215338405254566, -2.6533812859632135, -2.6073018058971846, -2.9077695418108918, -3.021602716028242, -1.9984714135391215, -2.5804973099769506, -3.398287305357401, -3.699467710045164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.750948967531182, -7.0, -3.6023266903176827, -3.3613500243522663, -2.561612418595533, -2.2778383330020473, -3.471731651480051, -2.8268663262901415, -7.0, -3.452553063228925, -3.6872613462435067, -2.6982455763416864, -7.0, -2.620849169351407, -2.693433803801546, -1.2840726750039217, -2.6167794385312413, -7.0, -2.832029647089928, -2.4683473304121573, -3.441695135640717, -7.0, -7.0, -7.0, -1.3394159466816076, -3.2527721492435755, -3.9985935061160727, -7.0, -7.0, -2.2969784210590283, -7.0, -3.2477892042772956, -2.695043658821294, -7.0, -3.6399842480415883, -3.5991571438616687, -7.0, -3.596047007545439, -7.0, -7.0, -2.6609602917760835, -3.0949367352066424, -7.0, -7.0, -3.1711411510283822, -7.0, -2.501789322455909, -7.0, -2.6397354399672364, -7.0, -3.0940987904485904, -3.710286647702891, -3.0043213737826426, -7.0, -7.0, -3.335156899534743, -7.0, -3.611404637711593, -3.7413092088995694, -7.0, -3.596322138680332, -7.0, -7.0, -7.0, -3.002558733105052, -7.0, -7.0, -1.887054378050957, -1.5607933733652921, -2.049754327593793, -2.9378520932511556, -3.37675939540488, -7.0, -7.0, -3.2093139057259306, -7.0, -7.0, -2.9813655090785445, -3.111850362800993, -3.298197867109815, -7.0, -3.441197466929935, -3.6207753465573442, -3.414137362184477, -3.934548947666147, -2.9438241512023096, -3.4211708017896476, -2.6289724632007867, -2.648067129448935, -3.4559862390673195, -3.348694190265541, -7.0, -2.93584972965916, -1.916788812406723, -7.0, -3.0281644194244697, -3.9209229721223515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.369957607346053, -2.900476371389257, -3.8133808067338557, -3.4292676664331685, -3.9660478210764536, -7.0, -7.0, -7.0, -7.0, -2.6910814921229687, -7.0, -7.0, -2.526823710771811, -3.199993525583865, -7.0, -7.0, -3.0771255534464483, -7.0, -3.351409751925439, -3.5033820634737327, -7.0, -3.6203442997544935, -2.6058435390580894, -3.245636029406203, -3.118878569982349, -2.748575616930992, -3.40705081480425, -3.393874166549036, -3.3912880485952974, -7.0, -7.0, -3.1365620365899805, -7.0, -7.0, -7.0, -3.223582462425357, -3.382557321908786, -4.015925311281039, -7.0, -2.839540892968969, -3.037836233227962, -7.0, -7.0, -7.0, -3.02434881738075, -7.0, -7.0, -7.0, -3.0033168924581544, -2.8182258936139557, -3.171726453653231, -7.0, -3.321943464631346, -7.0, -3.0250189722827594, -7.0, -7.0, -7.0, -2.954885432549936, -7.0, -7.0, -7.0, -3.0415242696106493, -7.0, -7.0, -2.856366323659248, -3.29014595464781, -7.0, -1.884751806004819, -4.086163998032887, -3.3422252293607904, -7.0, -7.0, -3.382197210377454, -3.3386556655787003, -7.0, -2.6972293427597176, -3.344588742578714, -3.111598524880394, -2.6103939697123133, -2.6587266773270137, -7.0, -4.4839017980195734, -7.0, -7.0, -3.4102709642521845, -3.1756567472816637, -7.0, -3.350441856535061, -2.675663797434491, -1.3895148872761447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.754348335711019, -3.671869221719906, -3.319522449065454, -3.3279716236230104, -7.0, -7.0, -7.0, -7.0, -7.0, -2.732715340349993, -7.0, -3.2476050641507705, -2.6068337552368273, -3.613366056465805, -7.0, -7.0, -7.0, -2.950131090407851, -3.570659670021534, -2.7679948007976636, -3.1349735400059155, -3.879718312672632, -3.451939869365103, -7.0, -7.0, -2.803570909565455, -3.1559430179718366, -2.568848838333719, -1.6148441756713314, -3.029586671630457, -3.510813010512496, -3.428620672671939, -7.0, -7.0, -3.3554515201265174, -2.939119717648487, -7.0, -3.076094046682475, -3.016476194280864, -7.0, -3.5267268673146357, -7.0, -2.680901812206373, -3.102733766037084, -2.7829024059746446, -7.0, -7.0, -3.7391354571001174, -3.2773799746672547, -7.0, -3.4184670209466006, -7.0, -3.4429498695778618, -2.0729208942243305, -7.0, -4.029221394253928, -2.782472624166286, -7.0, -7.0, -3.0971705115554466, -2.034204961241296, -4.121848106698777, -1.6880119449868285, -7.0, -7.0, -7.0, -3.565316427085621, -2.4599952560473914, -7.0, -2.640978057358332, -2.510338743528832, -2.3703280077795106, -2.076957391260839, -7.0, -3.3463529744506384, -7.0, -3.1659858227744544, -2.6841718627005906, -7.0, -3.5445168787428676, -2.8125290030350776, -4.1358447556263425, -7.0, -3.4180802200592306, -3.105776855928944, -2.1276831637211653, -7.0, -7.0, -7.0, -3.2302785764135864, -2.6081317580331795, -2.2559069748756153, -2.7965743332104296, -3.0338256939533106, -7.0, -2.6164755138885654, -7.0, -2.9443181355003873, -3.13481437032046, -2.6678838006255914, -3.386855529184724, -2.3849927064819196, -7.0, -2.847983728251745, -4.312082105977306, -4.306746608077712, -7.0, -7.0, -7.0, -3.9253120914996495, -3.963976609996606, -3.404192060041402, -3.3708157807234556, -7.0, -7.0, -4.03726709456871, -4.732353545509138, -5.004901478799332, -4.298634783124435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.913759120768689, -7.0, -3.3480735347698563, -3.8566684836115352, -7.0, -4.372626673477937, -7.0, -7.0, -3.7446272007728325, -7.0, -4.089913938473309, -4.356121506236986, -7.0, -7.0, -7.0, -7.0, -4.477222578278151, -7.0, -3.3755010405719097, -7.0, -3.9862699911219206, -3.867971760315312, -7.0, -2.789439684567179, -7.0, -3.2899232395240046, -3.22208086808631, -3.2814500293791102, -7.0, -4.466511738486146, -2.9566718738913944, -3.3524544153835043, -7.0, -3.462368045522524, -3.616842959534867, -7.0, -7.0, -4.402347372848368, -7.0, -7.0, -3.7682767279530007, -3.5979678700808284, -5.008860670309308, -7.0, -2.8135142715418833, -7.0, -4.0090682761922185, -7.0, -5.107152286081356, -3.433769833924866, -7.0, -7.0, -4.053673748961832, -4.1569275555396565, -3.891230722978062, -7.0, -2.6102729187647107, -7.0, -3.628265212453981, -3.555604924999254, -7.0, -3.3602437635106135, -4.264822543576076, -3.4202033743532962, -4.2367677957015015, -7.0, -2.8987251815894934, -3.5111323333436464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.34617128174312, -2.74707871738161, -2.0656606596823064, -7.0, -7.0, -2.895606686165933, -7.0, -7.0, -3.367169488534681, -3.159687479754789, -7.0, -3.8083865463958886, -2.804971921794919, -7.0, -3.277265309456845, -7.0, -7.0, -3.0973961506415026, -7.0, -7.0, -7.0, -7.0, -7.0, -2.838471279071929, -3.3973315703911284, -7.0, -3.2308866447298628, -7.0, -7.0, -7.0, -4.100198171834132, -4.197301238322852, -7.0, -7.0, -2.396411996799786, -7.0, -2.812435847543729, -7.0, -3.514282047860378, -2.7193536865753405, -7.0, -7.0, -7.0, -2.8092903011763157, -3.1099158630237933, -7.0, -7.0, -2.56643749219507, -7.0, -2.9437417658313136, -2.848881587744384, -7.0, -7.0, -2.56118659791047, -3.214667269683036, -7.0, -3.5920101162931366, -7.0, -7.0, -7.0, -3.2755416884013093, -2.8001732097794916, -3.053462604925455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2779528470388093, -2.7872424278303134, -3.495821753385906, -7.0, -2.7477446431168433, -2.547617198943898, -3.2852571745923016, -3.596707029681446, -2.7146689821747727, -7.0, -2.8951769043575744, -3.485153349903652, -3.190506781616284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4357953789580624, -7.0, -4.2079035303860515, -3.4868553552769432, -7.0, -2.603242818609928, -7.0, -3.057158750485419, -7.0, -3.4802944600030066, -2.4940153747571436, -7.0, -7.0, -3.5359267413955693, -2.98781517440207, -3.644668314139634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9020573108084666, -7.0, -3.0842186867392387, -7.0, -7.0, -3.3613500243522663, -3.3872118003137306, -7.0, -3.406028944963615, -3.134283382991931, -3.5170638734826545, -3.4612583528618397, -3.569724949226159, -7.0, -7.0, -7.0, -7.0, -3.406199423663313, -7.0, -3.617236306615377, -7.0, -3.426185825244511, -7.0, -7.0, -3.6226284261293253, -7.0, -3.3560258571931225, -3.1131631489984994, -7.0, -3.7890163267933747, -2.815577748324267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6216305986921031, -2.7950105586314464, -3.040602340114073, -7.0, -7.0, -3.9762312662322707, -7.0, -7.0, -3.146128035678238, -7.0, -3.190306225606168, -2.537399284038261, -7.0, -7.0, -7.0, -7.0, -3.312100387989085, -3.3261309567107946, -7.0, -3.2558351148559623, -3.4969889198903217, -7.0, -2.8819549713396007, -3.0791812460476247, -3.154271775993095, -7.0, -7.0, -4.171445606835973, -7.0, -7.0, -7.0, -7.0, -3.4437322414015967, -7.0, -3.5826314394896364, -7.0, -7.0, -7.0, -3.2800230025149686, -7.0, -7.0, -3.466274321789292, -7.0, -3.4108615542165976, -7.0, -7.0, -7.0, -3.3224260524059526, -7.0, -3.5321490016041213, -3.2495652118253466, -2.1907317852385715, -3.844725627973226, -7.0, -3.2598326990634834, -2.768884649356367, -7.0, -7.0, -7.0, -7.0, -1.6728672017718136, -3.3489859568078573, -3.5079607610773103, -7.0, -7.0, -3.0404704759922456, -7.0, -3.3135157072120407, -3.7044936970092985, -7.0, -2.8392265740134355, -3.4842027432890195, -7.0, -7.0, -7.0, -7.0, -3.9188687433809846, -7.0, -3.1869563354654122, -7.0, -7.0, -7.0, -3.5896145406312665, -3.6306312440205, -3.4149733479708178, -3.392169149489736, -3.663993632411139, -7.0, -3.749581734865559, -7.0, -7.0, -7.0, -3.407900540142635, -3.502836638621003, -3.1860140602380915, -3.1504494094608804, -4.172953027546355, -7.0, -7.0, -7.0, -3.3084790401617297, -7.0, -1.887054378050957, -7.0, -2.586587304671755, -2.859367909853095, -2.928907690243953, -7.0, -7.0, -7.0, -3.2519509249968737, -7.0, -7.0, -7.0, -3.32990612340021, -3.704236337308788, -7.0, -3.4168345930422372, -3.760196229455134, -7.0, -3.88632148655948, -7.0, -4.520203957132736, -7.0, -7.0, -3.6824158616773586, -7.0, -3.247236549506764, -3.2365582535607142, -2.187873089603788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.486430478854434, -3.699953291190414, -3.7484206224675685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2712024681107645, -7.0, -7.0, -7.0, -3.7730791049593284, -7.0, -3.0674428427763805, -7.0, -3.3552599055273786, -7.0, -3.3585059114902354, -7.0, -7.0, -2.798097932062486, -3.418135498425232, -2.7722168932840368, -2.6126072783550733, -7.0, -3.381300212083958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.660106221723244, -3.17868923977559, -3.9965773367182584, -7.0, -3.3025473724874854, -3.5838862740548043, -7.0, -3.26528962586083, -3.1869563354654122, -7.0, -7.0, -3.0770043267933502, -3.1172712956557644, -3.326949994165999, -7.0, -2.4443918150990673, -3.208710019906401, -7.0, -7.0, -3.987085029624122, -3.1371958119405483, -4.357038666819455, -3.143014800254095, -2.7782890997680427, -7.0, -2.5548927794398435, -7.0, -2.7772455264226195, -7.0, -7.0, -3.498034723687027, -7.0, -7.0, -3.20194306340165, -7.0, -7.0, -7.0, -7.0, -3.1781132523146316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9618006391916785, -7.0, -4.9354594001061, -7.0, -2.8873359303991672, -3.22219604630172, -7.0, -7.0, -7.0, -7.0, -1.5146038666834796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7972675408307164, -4.247369250804275, -7.0, -7.0, -7.0, -3.1562461903973444, -3.255272505103306, -7.0, -7.0, -7.0, -3.7466341989375787, -3.4207806195485655, -2.9876662649262746, -7.0, -3.406028944963615, -7.0, -7.0, -4.331062700600152, -2.9720484774455382, -2.9745988142431106, -3.2617385473525378, -3.81424759573192, -3.284881714655453, -7.0, -2.8724476477890133, -3.0696269919490073, -3.3194530784907674, -3.091842749738098, -2.871280972857973, -2.60422605308447, -7.0, -7.0, -7.0, -3.3422252293607904, -3.5601458398490475, -3.236537261488694, -7.0, -7.0, -2.867663867912998, -3.1607685618611283, -7.0, -7.0, -2.8664350331791066, -3.965906915495192, -7.0, -2.6961066506690017, -2.593655208123772, -4.092899198743546, -7.0, -7.0, -3.7005306569785916, -7.0, -3.271609301378832, -3.665299499499897, -7.0, -7.0, -7.0, -3.3595192868531116, -2.9523080096621253, -2.4060076304200706, -2.0154464784398023, -4.527846349811276, -2.632030833840008, -7.0, -7.0, -7.0, -3.332101666969759, -2.9906939606797516, -7.0, -2.7601710828477963, -3.044800990163838, -7.0, -2.5506868726984986, -7.0, -3.760422483423212, -3.251638220448212, -3.0058237530290275, -3.6917002082901615, -7.0, -3.5603490688931063, -3.923364927071542, -4.069494658929803, -7.0, -3.5412046906832586, -4.067500678753396, -3.526210003841664, -7.0, -7.0, -7.0, -7.0, -3.5338355842360567, -3.3021865728639233, -7.0, -7.0, -7.0, -3.0340934464167257, -7.0, -7.0, -3.2615007731982804, -3.41237653650371, -7.0, -3.234144155367817, -7.0, -7.0, -4.603458337409067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9967305154351527, -3.7083472366371133, -7.0, -7.0, -4.319938439980309, -7.0, -5.001002063315146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.912160035348151, -7.0, -4.541416977191859, -4.1295610023090825, -7.0, -7.0, -7.0, -7.0, -4.3025401594317065, -7.0, -4.68397410472636, -4.338476414912923, -4.213065962065718, -7.0, -7.0, -7.0, -4.463937759305199, -4.2051502091401805, -4.621840721731609, -7.0, -7.0, -4.466782383550875, -3.926085086925144, -7.0, -3.8663464227496016, -7.0, -4.123359044078283, -3.2458004570397443, -3.586587304671755, -4.151829340131871, -3.518824039485424, -4.085138887686988, -3.372175286115064, -7.0, -3.8677620246502005, -7.0, -7.0, -4.386516800686768, -7.0, -7.0, -4.149759993749519, -4.284845089938738, -5.008090641409871, -7.0, -2.9710437918360286, -7.0, -4.357005262671767, -7.0, -5.406649166157267, -3.8019864946643342, -7.0, -7.0, -7.0, -4.444091659700497, -7.0, -7.0, -3.153713263108388, -7.0, -4.12411823117788, -4.497758718287268, -7.0, -3.691827770244213, -4.959542212459511, -7.0, -5.04796957212993, -7.0, -3.667639706056411, -3.712681262579364, -4.3115207624480485, -7.0, -7.0, -7.0, -7.0, -7.0, -3.634578022853888, -3.479719235439571, -2.1611756115490883, -7.0, -7.0, -3.0551106378541464, -7.0, -2.8367986680925994, -7.0, -3.1986570869544226, -7.0, -3.523363056347348, -2.7306028522050876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8282086144679455, -7.0, -7.0, -3.40671045860979, -3.6118294794983736, -7.0, -3.564902672529205, -7.0, -7.0, -4.303476853603883, -4.097069803977662, -4.315977338870528, -7.0, -7.0, -2.7671558660821804, -3.288249225571986, -2.716122638919687, -7.0, -7.0, -2.852362676992824, -7.0, -3.1411360901207392, -7.0, -3.36679638328673, -3.442636525782232, -7.0, -7.0, -3.011993114659257, -7.0, -2.8145805160103183, -2.812662729830916, -7.0, -7.0, -3.0225314677988853, -7.0, -7.0, -3.2136653005621554, -7.0, -7.0, -7.0, -3.1565491513317814, -3.0928219760363977, -3.2581581933407944, -7.0, -7.0, -7.0, -7.0, -7.0, -3.824060717418653, -7.0, -3.159717546180216, -2.8492350913147226, -7.0, -7.0, -3.2397998184470986, -2.9045652859678013, -2.8427874848344485, -3.4838724542226736, -2.8887617418146476, -7.0, -7.0, -7.0, -3.3619921087578137, -3.726808682524964, -3.3492775274679554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3923702932353117, -7.0, -3.5806399120080803, -3.5138710931559025, -7.0, -2.847572659142112, -7.0, -7.0, -7.0, -2.8068580295188172, -2.5517751904118082, -7.0, -7.0, -7.0, -3.3047058982127653, -3.3661681643281374, -3.263636068588108, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.849849195605258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.132451812729004, -3.8145139523682383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5540447449409966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6039018317316716, -2.9218944709291024, -3.245594912768832, -2.4641562775552948, -7.0, -3.6506959797606107, -2.830921268729203, -3.941561120236071, -7.0, -3.144055027055373, -2.9613532832330054, -2.6832887096400997, -2.149400257384556, -7.0, -7.0, -7.0, -7.0, -2.6465584905468207, -3.206208870803717, -7.0, -2.5688947615018245, -2.4198430917891574, -2.895422546039408, -2.788168371141168, -7.0, -2.0535487985639476, -2.4868730494439446, -3.6416723732246865, -3.4389941506285777, -2.672836454171397, -7.0, -7.0, -3.643057683751453, -2.8410464654093035, -3.62746827245971, -2.2842980032561075, -7.0, -2.4623231130842345, -3.638389407665336, -3.2488189486409467, -3.143431190009773, -3.647676313240871, -2.6085260335771943, -3.6851144690465394, -2.499081947388326, -3.6351820486562674, -3.6734816970733473, -3.8291107101552946, -2.0689095352848286, -7.0, -2.1851235050982076, -2.3511472506797575, -1.4940429030218751, -2.6459578843998024, -7.0, -2.88394519503428, -2.3050738649759017, -7.0, -7.0, -7.0, -3.614686342282013, -2.006174210354342, -2.3381545437336477, -2.8478330480849277, -3.015778756389041, -3.6097011023793995, -0.9024655519714955, -7.0, -2.314895600408783, -2.9396301693557567, -3.1374596122778238, -2.5378890241422445, -2.9183226925562056, -7.0, -2.722409538916368, -7.0, -7.0, -1.295114136891793, -2.601361456580435, -2.7311857076340007, -7.0, -3.1020905255118367, -2.959327645972171, -2.3894286169292163, -3.371191048907622, -2.3658134210109636, -7.0, -2.601755778137239, -3.0670708560453703, -2.1870190811827652, -3.6098077693287025, -7.0, -3.315620531115086, -3.0280830070178384, -3.173259130501515, -3.022958321808785, -3.0203612826477078, -3.1006166740456034, -7.0, -3.125047296659335, -3.6008640363098396, -2.084559256457055, -3.3055663135153037, -1.5607933733652921, -2.586587304671755, -7.0, -1.5609511751531548, -3.049024097915049, -3.3282776444097677, -2.8408227521802787, -7.0, -2.710274110514284, -7.0, -7.0, -7.0, -2.8936384880060504, -7.0, -3.6729286904427223, -3.035052848660952, -3.3490975687027302, -7.0, -7.0, -3.353916230920363, -3.6474254958901158, -2.2356186149722146, -2.419060366638267, -2.4462954799526213, -7.0, -3.3568859411659737, -1.5840240812757094, -1.9799015480167361, -7.0, -2.522226814487059, -3.429299990833608, -7.0, -7.0, -7.0, -3.615002614524588, -7.0, -2.948779613737823, -3.0463976029545603, -2.948999454026953, -2.922673567858554, -7.0, -3.5691397254724593, -3.605197267388378, -3.3245910857609267, -3.3922571613416745, -7.0, -2.374065962317671, -7.0, -3.6310376965367404, -2.815103161366425, -2.54019291851203, -3.6039018317316716, -7.0, -3.7377490738915573, -3.1007150865730817, -7.0, -2.5262530993000873, -7.0, -2.8265067216642272, -2.4694538137671267, -2.8865712918143793, -2.486115487375963, -2.26876178609136, -2.388081456873557, -2.9435718914443427, -2.488953400332635, -3.60151678365001, -7.0, -3.664735968518705, -2.484299839346786, -7.0, -3.6049816296074315, -2.410593870705327, -3.6327608884794387, -3.4001156732959967, -7.0, -2.4797589305685346, -2.3103271035149624, -3.6705241577820797, -3.074084689028244, -2.220821020318192, -2.924882054350042, -2.8676147812238355, -3.111262513659065, -3.7328760413627067, -3.2133406385265157, -3.0145205387579237, -2.4757829039474, -3.1660352109000436, -3.213358353624391, -7.0, -2.6322477917069986, -3.7426465899387362, -3.3654369284633194, -7.0, -2.4865721505183567, -7.0, -3.36506658974845, -3.348791467560584, -2.5363058723510337, -3.63205216670581, -3.1687920203141817, -2.8779469516291885, -3.062581984228163, -7.0, -1.9336063705151778, -3.720374329337824, -2.6845189471368234, -7.0, -7.0, -3.632558514532672, -3.131083752984664, -7.0, -7.0, -7.0, -7.0, -3.3693643087812357, -2.9636107690505553, -3.9318137039591394, -3.9915879762894657, -7.0, -3.1588648570811704, -3.1710435238543386, -3.688330818112266, -7.0, -7.0, -3.2773035345575963, -2.3178962664929563, -3.4163075870598827, -7.0, -7.0, -7.0, -2.926856708949692, -3.5975855017522043, -3.6129956560323473, -2.5457193561568654, -3.004755928556112, -3.5984622004741507, -3.3016809492935764, -7.0, -7.0, -3.3600250891893975, -3.052212835769748, -3.295457138072563, -3.1843127956742574, -7.0, -2.223771668052953, -2.8049114308857184, -2.5545324228899338, -7.0, -3.60916737430202, -7.0, -1.6310910105078673, -2.346587664800529, -2.2195961677813676, -3.663795122219408, -3.5356738034257504, -3.6731131042382335, -3.6267508536833932, -3.32990612340021, -2.3741917050629118, -3.0527900992334316, -1.5699371688614308, -2.0039671161887616, -3.1157768761589635, -2.3439648605201104, -2.9595183769729982, -3.614158709509175, -2.415588309411352, -2.3888932863141665, -2.313586032608017, -7.0, -3.0272476487457864, -2.794662287175811, -7.0, -2.8734866800131793, -3.59955559098598, -1.9220356647941572, -2.4540095732950475, -2.5759867517113815, -2.9515456637708595, -3.711638538232349, -3.239555975036251, -2.37045140442245, -3.317331935445897, -3.244714716312713, -7.0, -2.8886474332825305, -2.3893433112520777, -3.0355898172434572, -3.1447471299618526, -2.503985128765333, -3.139024042846853, -2.892412650659219, -2.4930776470451126, -1.717161771854059, -3.645803568986553, -1.6365873550034469, -3.1230890516896657, -7.0, -7.0, -3.1196799820081194, -1.9519385545297605, -3.637689819118401, -3.6546577546495245, -2.70557864861638, -3.1502446018730703, -1.513479055910221, -2.9385197251764916, -2.3597842230324337, -7.0, -2.836233665954909, -2.087220217567597, -3.659821158055705, -3.3862169580055004, -2.876826150881778, -3.877240000888399, -7.0, -2.4291239733157144, -3.63502508274648, -2.152381013642323, -7.0, -2.828567836231445, -7.0, -2.728541072104733, -2.9824973691977124, -2.2408486584853606, -2.5453071164658243, -3.3055663135153037, -7.0, -2.024353705634743, -3.1513698502474603, -7.0, -2.7592900330243038, -3.121942651159755, -3.6351820486562674, -1.7324701058690302, -3.294576439201622, -3.6018427897820984, -3.456214155357989, -4.098096620171149, -7.0, -7.0, -4.741435255767935, -3.4791752673307053, -3.4424013694827025, -3.165315974146904, -2.969750193711248, -3.6371226589692447, -7.0, -4.37427164327598, -4.270065189874711, -4.53576234847312, -3.6195524378052375, -4.395710709035136, -4.005935151237362, -3.5600910314244696, -7.0, -4.381241468195862, -7.0, -4.394162638736977, -7.0, -3.620425256876902, -3.733892435884163, -7.0, -7.0, -4.27570284944821, -7.0, -3.3517894071459464, -4.253580289562183, -4.407263402053051, -3.913478292083329, -7.0, -7.0, -4.19423674872383, -4.043872912391425, -3.6583521534277548, -7.0, -2.553980847326294, -3.19580743572306, -3.3212358493275413, -2.935046695204227, -3.0077865594877418, -3.0603740219104476, -3.4406467477280938, -3.2845811128217504, -3.0703874932053874, -2.4507403361535487, -3.219977256744623, -3.648276350695849, -2.687304816301919, -2.846870690323001, -7.0, -2.807337679149665, -2.8295610562993927, -7.0, -3.5117051523256135, -3.7344317630530526, -7.0, -7.0, -2.8384078498875294, -3.0705723554074527, -4.478958431351312, -3.3265406685165617, -3.020827236121162, -7.0, -3.3807630389163634, -7.0, -4.369937394597604, -3.1473389862875183, -3.8245596945739138, -7.0, -3.611068009641454, -3.485281231935597, -3.1940064148643312, -3.031581570404944, -2.7659751825768173, -3.695043658821294, -3.0299158432131796, -2.9654686736239295, -3.6620964454179235, -2.7312214971040447, -3.7420177471401384, -3.3766377783551063, -3.7521733375654627, -7.0, -2.870286828992591, -2.9806060027559775, -3.667733052533267, -7.0, -3.6036855496146996, -7.0, -7.0, -7.0, -2.40418376369826, -2.113639543632745, -1.7829501332654125, -7.0, -3.735119634081872, -2.378123530264194, -3.0756929182018036, -2.627444640172432, -3.1466447454142683, -2.5771086551437348, -7.0, -2.654756567983414, -2.3351425609414833, -3.6527296960692475, -7.0, -4.22806655265797, -3.2722285058778144, -2.445496837517327, -7.0, -7.0, -3.132854081187205, -7.0, -7.0, -2.2915168465279523, -2.556239002780201, -7.0, -2.9349400959933765, -7.0, -7.0, -7.0, -3.0528539087031565, -3.4896839887265743, -7.0, -7.0, -1.8897592881369922, -3.6744937172963503, -2.0609724061803028, -7.0, -2.7101173651118162, -1.958065052462858, -7.0, -7.0, -3.7735670489260587, -2.5601629215805253, -3.0167200331782524, -7.0, -3.7208205817703437, -2.451696154995558, -7.0, -2.330576096087729, -2.146261438991191, -4.282939165754773, -7.0, -1.9001129694791195, -2.16409411613907, -7.0, -2.7368445108368746, -7.0, -7.0, -7.0, -2.7094241574915294, -2.2681711037010768, -2.371956759419767, -3.3947434473685325, -7.0, -7.0, -7.0, -3.6461095219788477, -3.6744477675018934, -3.3348556896172914, -2.287261034195944, -1.8934956267411402, -3.7000110623221123, -7.0, -1.8768041309026244, -1.8130004972943008, -2.560305243220961, -3.7657430414210444, -2.4178774724990104, -3.5073160400764136, -3.475283684857362, -2.99370069482035, -2.5192784084468745, -3.3069073090904255, -3.3994141053637703, -3.6872613462435067, -3.607025878434786, -7.0, -7.0, -7.0, -2.823474229170301, -3.3260626338156793, -2.597158169482056, -7.0, -3.77853711845159, -3.095877687895717, -3.1300119496719043, -2.0604180114251784, -7.0, -2.420615770625765, -7.0, -2.3268891728674044, -2.1269967514723724, -3.9228810912082936, -7.0, -2.644520647943643, -2.447978401055593, -2.5156582441630277, -3.6645479622465467, -7.0, -7.0, -3.6008640363098396, -7.0, -7.0, -7.0, -3.5166235018348, -7.0, -3.042811691807148, -3.164352855784437, -7.0, -3.62096843564429, -3.157859545331566, -3.66228551572213, -3.344883279369863, -2.8206392563794713, -2.867299091392458, -2.957341191541751, -3.1902382914634244, -7.0, -7.0, -3.60151678365001, -7.0, -3.6462076122066853, -7.0, -2.999553067213758, -7.0, -3.055187138555754, -3.36027776962236, -7.0, -2.5507317995589878, -3.6121478383264867, -3.618048096712093, -3.761702367541413, -7.0, -2.6726410656136697, -2.4082399653118496, -7.0, -7.0, -2.723674542888705, -7.0, -3.7709256146389993, -4.072507235528804, -3.422115420387915, -3.697159570973576, -3.244365490825935, -3.5984439539568314, -2.9337583661184787, -2.003927878459433, -3.753613695870938, -4.373095987078727, -3.2000292665537704, -2.5874078631232282, -2.5072584774547875, -2.436305618765648, -7.0, -7.0, -3.676693609624867, -4.374069803726075, -2.4168350793636244, -3.3754666422474324, -7.0, -2.6790517755015113, -1.6524612191775423, -3.6080801001958815, -2.9801124999406077, -3.8957723455519986, -2.6763311869799007, -2.5683439757819593, -2.860555779914859, -2.682212788529763, -2.6685830178507195, -3.676126370759378, -7.0, -3.1010774667367107, -3.4007624176069355, -2.996621107579201, -2.486555485662273, -3.771477239864823, -2.8731837838314673, -7.0, -2.5893586197509038, -2.642189632909757, -3.904138265829186, -2.4463127477795816, -3.7863254343900703, -2.66753209539257, -4.379051576184367, -3.0430405916283196, -3.81888541459401, -2.222734405713542, -3.919531335965941, -1.1896707913600393, -1.9871475249918304, -1.603860921753666, -1.9677140053553632, -7.0, -2.9208067732496916, -2.4615727109734706, -3.7827950003893553, -3.909199319174384, -4.085540306036948, -7.0, -2.779776808670381, -2.627950765074281, -2.6922366216770506, -3.8988896559265864, -4.073498398717262, -2.3123343546117208, -3.7712382882869084, -2.6027017833676314, -3.2622770206322533, -3.0129472051595405, -3.111027151026175, -2.264955158191548, -3.7728166083744408, -2.402192577878823, -7.0, -3.7759379565339373, -2.1112653866516125, -2.5129060669308303, -3.232542349529745, -4.372580635030913, -1.809887620834404, -2.920051321899959, -1.6407319773641893, -3.045143615953909, -2.1994492580536797, -7.0, -1.9729304251003044, -3.470883961069449, -2.067739677734452, -4.073516732274978, -7.0, -3.2074660557634376, -3.3969486867163377, -2.9921795216998177, -2.256525975063038, -4.075820590183628, -2.4381847575910185, -4.384443024058778, -3.3730224027881572, -3.469711588088793, -1.4567597543804305, -3.29448459694402, -2.049754327593793, -2.859367909853095, -1.5609511751531548, -7.0, -3.427540203195862, -3.7758651982020695, -2.8826134653016506, -7.0, -2.4857859336457393, -3.908610106269122, -7.0, -3.500425167997401, -3.1033149257643444, -2.9907510041972794, -3.344356542517054, -2.9264796427986184, -2.752299144871972, -7.0, -7.0, -7.0, -3.483284112093539, -2.2255246521651406, -2.7897485424721538, -2.928683835346075, -4.375316039326965, -3.7811088357294667, -1.9106058289339427, -2.025542823949734, -4.070831806956914, -3.2591710288966214, -3.4367891660441443, -7.0, -7.0, -7.0, -3.5971464878336956, -4.072029200827922, -2.5732713922522903, -2.566567572030291, -2.772566173085639, -3.1914510144648953, -7.0, -3.4461274752593476, -4.373794416714731, -7.0, -3.1855067412708022, -3.8394277643497237, -1.907250529717228, -7.0, -3.377979759421654, -3.6847735714992944, -1.5612040901605677, -7.0, -7.0, -3.3991196860279334, -3.5468421951528786, -3.6764558254563244, -2.1187561257223226, -3.5501234805592565, -3.130079720823589, -2.6345968046694317, -3.1189431346865346, -2.463210202983969, -2.750753768874042, -2.8484789123024457, -1.996533640935674, -2.32624439777699, -3.7709992051639407, -7.0, -3.5392195249770073, -3.2990894370487327, -3.0980969848947804, -3.7715874808812555, -2.088871143006184, -4.378615902031225, -3.625621081424908, -4.072654217333034, -2.6885732341636555, -1.271709289931902, -3.4823017672234426, -2.9981191605274136, -2.5906609500758826, -3.0693509006842974, -3.2305000118414706, -3.3147622932679495, -3.318810874835571, -3.3100557377508917, -3.031900005817225, -1.852431193762441, -3.0373902750387383, -3.0816133956502867, -7.0, -2.5217916496391233, -3.7983398307258573, -3.0411615134980985, -4.376449204597316, -2.2681748632088237, -4.372930404888793, -2.7967251246712355, -4.381764682017124, -2.946417171927368, -3.475144341300952, -3.681964458994683, -3.156291648012853, -3.501538502649975, -7.0, -1.9808010697064142, -2.889766853636871, -2.4174789139343855, -7.0, -7.0, -4.077513251497662, -3.7722116519480173, -7.0, -7.0, -7.0, -3.904589330951372, -2.8415402150435964, -2.5965324155337197, -2.864712755705674, -3.3302317322481083, -7.0, -3.9020754491124725, -4.080428051258176, -4.088065177690204, -7.0, -4.074414129841136, -3.4486719733921984, -2.8893542349518193, -2.9963189988040693, -7.0, -4.372156852171985, -4.375517300649672, -2.8993462025299315, -4.372506963362899, -3.1704634100768008, -3.2199161886494805, -2.5327583219803445, -4.372654294203732, -4.07234182151732, -7.0, -4.076166939344932, -2.838579258804435, -3.0597256597866873, -3.895164618625614, -3.128093977651733, -3.446614823664267, -2.0906107078284064, -2.7740400301845156, -2.2453353203066544, -7.0, -4.374473389063976, -7.0, -1.953766780990477, -2.2414907518037217, -2.1301187370058776, -3.3840306652405143, -3.072541652395476, -3.4316139029220896, -3.6784273224338673, -3.1736596536320567, -2.490223584110092, -2.7747146038137953, -2.317561393668647, -1.932232548261451, -2.541274399474468, -3.2168342101165988, -4.082426300860772, -3.773164534737837, -2.690266979462497, -2.1078372077228384, -2.647163676320182, -7.0, -2.668714720098945, -2.885025331908764, -3.678390894445094, -3.1908917169221698, -7.0, -1.5303194450185882, -1.937795942952816, -2.624424359200106, -3.1821795991661013, -2.9950908888423777, -2.3074711606695057, -1.8350993904798734, -3.6769860884519177, -2.955155313300949, -4.073773320852101, -2.9528103746480463, -2.740104775756783, -2.8178088374213064, -2.2501063879694696, -1.9323962220245403, -2.8419848045901137, -3.5542814381383723, -3.1005018312376387, -2.1645257643673252, -2.8990008330467725, -1.2851797576480062, -7.0, -7.0, -4.371935583802963, -3.3136563466180315, -1.7112870812197314, -4.07843869186193, -3.428098781384637, -3.048019362723852, -3.900530982452756, -1.9254071412178324, -2.980803010140982, -1.7478208534254045, -4.082534052872713, -3.542647619594607, -1.2710785047431974, -4.082534052872713, -3.102511455500595, -2.9438241512023096, -3.0891539461867294, -7.0, -1.3176063039586632, -3.0635551074793668, -2.198732594105873, -7.0, -3.344713721977851, -7.0, -1.6429238914818773, -2.365398121563634, -2.5115145725207486, -2.5367140633936573, -3.5287514680743923, -4.070721111676305, -1.4243576975802876, -3.4745804523423796, -3.604442066260723, -3.153312603105892, -2.7858990283843834, -3.4757074990540944, -0.9641357943202269, -7.0, -3.469877219395211, -2.7571730707020574, -3.873891041234412, -4.143992683660012, -3.959978964701999, -3.426168384282751, -2.42112697303189, -3.3406848506563924, -2.568110343224447, -2.2420327113070426, -3.1513298716210123, -4.132163596050864, -3.6820146380241794, -3.136928010655581, -3.2247777745222037, -2.9735044105591664, -3.8700232918953947, -3.033343323135224, -2.963266621784164, -3.7519203184537346, -4.038123200593378, -7.0, -3.2654424451322908, -3.50849864133115, -2.7103232406700224, -3.7095970127717655, -4.046582950842146, -3.7226718836790575, -3.6308796768674907, -7.0, -2.6340286106172917, -4.097430853944242, -3.1586701314662657, -3.1977726765713683, -3.286658524615686, -7.0, -3.4330309235264505, -3.7085908451503435, -3.1928039051875543, -7.0, -2.34015780277726, -3.271805875368442, -2.70957546628389, -1.9473491021061466, -2.320629926146124, -2.86114122047067, -2.854384409551896, -2.989004615698537, -2.2349232022351155, -2.246205705248979, -2.677192034869211, -2.5795343256482703, -1.8093513194989694, -2.013423140564389, -7.0, -1.9766977434027933, -2.8098231096591526, -7.0, -3.2633253244695006, -2.8051562428121297, -3.489364647145191, -4.3863384163575105, -1.6278041831150603, -2.0647399279260505, -3.0365430003709086, -3.6786094165589263, -2.4809437977431954, -3.424718337331567, -2.3633996005628086, -4.464713045757064, -2.9593881995919062, -2.4970293197660967, -2.783958521961391, -7.0, -2.541915867977676, -3.0872791930511436, -2.3571042909697755, -3.319586473608658, -2.1562617891349682, -3.214505343088467, -1.9889092796979757, -2.5218768249046994, -3.781863037624198, -1.8320297478103873, -2.5949505049713553, -3.5242337993653035, -2.4611826307022295, -4.379704269024447, -2.7146037676665995, -1.9058797317933902, -3.456001437208452, -3.676931263673469, -7.0, -7.0, -7.0, -7.0, -2.355393211588941, -2.8476925944963933, -1.8804077149768044, -7.0, -3.2845001459966476, -2.107591139790693, -3.7087777078901545, -2.952550293898202, -4.076021141783546, -2.4257200579414895, -3.7723767236537498, -2.197454784251053, -2.3788479304282237, -3.6831551478893028, -4.402914482831523, -3.306925161088451, -3.401745082237063, -2.3461951811553288, -7.0, -3.9041202134761996, -2.819693460240162, -4.3818908806262575, -3.906837655959449, -3.0539859144018386, -2.7589118923979736, -7.0, -2.677150521273433, -7.0, -7.0, -4.0185687482376276, -2.234246248744979, -2.904638275554804, -7.0, -7.0, -2.0350264999666092, -7.0, -2.594191581153005, -7.0, -3.0507136194470106, -2.2234036800839756, -7.0, -3.376010910646249, -4.4074928794601025, -2.873584787286106, -3.1234938576460367, -3.3806814727378263, -2.932421276674442, -2.956186223231246, -7.0, -2.79485387103731, -2.2165476761046525, -3.8898057518680855, -7.0, -2.2970608126818783, -2.656643331233824, -7.0, -2.7487634148774998, -7.0, -7.0, -3.8894697839695076, -3.07974959296128, -1.889157549797829, -2.7148492608370254, -3.7333577879255855, -3.548406968575704, -7.0, -7.0, -7.0, -3.232547690649782, -4.3792148413786265, -2.799616204481499, -2.2367816506792306, -4.391482044225046, -3.89553303948407, -2.2022517250991593, -1.5179407613891247, -2.7624231433300555, -3.8035253955765325, -2.4667768618677837, -4.1147944032247805, -3.455864634787528, -3.3105694127898815, -2.3934203469720283, -3.7439172145663298, -3.6924944075030846, -4.087852375163169, -4.073039808062093, -7.0, -4.061018722050734, -4.415273909352888, -3.0423069707976276, -3.812462124192689, -2.362843928614233, -3.1465586698056422, -3.1436738997980007, -2.2785354966808096, -3.5395308656643945, -2.3727600307164853, -7.0, -2.827177095755159, -7.0, -2.682398447819868, -2.511600289536558, -4.145972902802181, -7.0, -2.964521521588674, -3.1318680643619947, -2.14472570968999, -3.5391836728713275, -7.0, -7.0, -3.673941998634088, -4.37520622109933, -7.0, -7.0, -3.1071509582364176, -4.39509913731257, -3.497119783170118, -3.681150749932421, -4.382161182795874, -3.1454888972525032, -2.963206442410132, -3.3044905277734875, -3.6027109449575576, -2.4706770949744215, -2.8880038865883257, -2.2370823187516176, -3.0626421420676335, -4.441757958508164, -3.4795573161627673, -4.373169558903721, -2.8790630951351517, -3.0378790294829785, -7.0, -2.3463289211437783, -2.951571353764591, -2.967349935411163, -2.809148956558773, -4.111128036345124, -2.917437743688254, -3.4204508591060683, -3.7738412766815257, -2.956682855238677, -3.771752789954584, -2.9221905350019726, -2.5925292262557798, -4.084933574936716, -4.372027792657405, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2884728005997825, -2.9132839017604186, -7.0, -7.0, -4.302130622081864, -7.0, -2.812244696800369, -7.0, -4.201670179646581, -3.103198285631444, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7408362070573116, -3.898944466866509, -7.0, -2.9069632186628955, -3.8818537660727794, -7.0, -7.0, -7.0, -3.361160995195026, -7.0, -7.0, -4.3900397028302365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0364958190682128, -7.0, -2.793964905280631, -7.0, -3.315563071972445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.436162647040756, -3.532117116248804, -7.0, -2.5138831856110926, -3.9553028227616918, -7.0, -3.2165353574183575, -3.50745106090197, -7.0, -7.0, -3.172310968521954, -7.0, -7.0, -7.0, -2.5877109650189114, -7.0, -3.5922878159521305, -3.4537310295042936, -7.0, -2.2570783059665684, -7.0, -7.0, -3.27238316915648, -3.3525683861793083, -7.0, -3.4628470358316736, -3.534813360783814, -2.396780343144799, -3.093596768608228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1744959193752993, -7.0, -7.0, -7.0, -3.3100557377508917, -7.0, -3.78366115979566, -3.263399331334002, -4.0285712526925375, -7.0, -7.0, -7.0, -7.0, -3.4191293077419758, -3.3062105081677613, -7.0, -3.8552768038300917, -7.0, -7.0, -7.0, -3.9833104857941155, -7.0, -2.9378520932511556, -2.928907690243953, -3.049024097915049, -3.427540203195862, -7.0, -1.399470114125268, -2.0288035578502046, -2.7424632714945925, -3.309168661822757, -7.0, -7.0, -7.0, -7.0, -3.3522790172744976, -2.8341026557127935, -3.480323201241355, -3.910913939634084, -7.0, -7.0, -3.0711452904510828, -7.0, -3.18440748541232, -3.1762359997608716, -3.327665387050042, -7.0, -7.0, -3.8271322421466074, -3.5033820634737327, -7.0, -7.0, -4.371954027140132, -7.0, -7.0, -7.0, -2.5893910231369333, -2.812244696800369, -7.0, -7.0, -3.8596785766284483, -7.0, -7.0, -7.0, -7.0, -1.105510184769974, -2.0822328327331365, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6992429036795467, -7.0, -7.0, -7.0, -7.0, -7.0, -2.278499553281412, -7.0, -2.5859439053216287, -7.0, -2.7107518348841255, -3.287129620719111, -7.0, -7.0, -3.0610001600351286, -7.0, -2.814913181275074, -7.0, -3.106870544478654, -7.0, -7.0, -7.0, -3.6327608884794387, -7.0, -4.285264680481154, -7.0, -7.0, -3.4241472677851292, -7.0, -3.3953263930693507, -3.6085260335771943, -7.0, -3.4099331233312946, -7.0, -7.0, -7.0, -7.0, -3.049024097915049, -2.723044991643445, -3.207185391351969, -7.0, -7.0, -7.0, -3.869055618701908, -7.0, -3.17868923977559, -7.0, -2.492024795216319, -7.0, -2.5646660642520893, -1.8855496750060046, -7.0, -3.4577305482459986, -3.3875677794171883, -7.0, -3.419625360887743, -7.0, -7.0, -7.0, -7.0, -2.977266212427293, -7.0, -7.0, -7.0, -7.0, -7.0, -3.445396605524949, -3.127644629984225, -4.138429020006003, -5.014173468544053, -7.0, -7.0, -3.0453229787866576, -3.1866738674997452, -7.0, -7.0, -3.068371418032643, -3.2796669440484556, -2.971739590887778, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.291368850451583, -4.466487013635048, -7.0, -7.0, -7.0, -7.0, -2.1861083798132053, -2.368100851709351, -7.0, -7.0, -3.399673721481038, -7.0, -3.4952667443878105, -3.528209432477408, -7.0, -7.0, -2.79309160017658, -7.0, -3.353916230920363, -3.21398550838652, -7.0, -4.712784345708868, -7.0, -2.950364854376123, -2.668851648082519, -3.699881066467242, -7.0, -3.6692238739308056, -3.1301728888925355, -3.8522359394118872, -7.0, -3.0867156639448825, -7.0, -3.215108581053093, -3.4877038631637265, -3.461198288622493, -7.0, -2.965201701025912, -7.0, -7.0, -1.4730000927917108, -2.8027737252919755, -3.378216149749878, -7.0, -2.896801697664922, -2.9893014677141294, -2.4087243986938165, -3.8771921128174807, -3.4266196859018763, -7.0, -3.6882863093259703, -7.0, -3.117602691690084, -2.8302678009336417, -7.0, -3.9653898702151222, -7.0, -7.0, -3.329194415088451, -3.549861188471943, -3.0970836960665213, -5.050383623514781, -3.4046627008737222, -7.0, -7.0, -7.0, -3.7701890227359933, -7.0, -7.0, -7.0, -7.0, -7.0, -3.361538971269279, -7.0, -3.238715020445331, -3.0888445627270045, -3.16761267272753, -7.0, -7.0, -4.013090138125056, -3.913619612233253, -4.343907655813822, -7.0, -7.0, -4.065189516740959, -3.4885507165004443, -7.0, -7.0, -2.9258275746247424, -3.561101383649056, -3.0985052832013156, -2.6943658522855136, -3.3624824747511743, -7.0, -7.0, -3.4299136977637543, -7.0, -7.0, -7.0, -3.186485453404858, -2.989004615698537, -3.4642184860833276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.580383194629278, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5834255004065065, -7.0, -4.675356669813541, -4.923560036840415, -7.0, -7.0, -7.0, -7.0, -7.0, -4.534394211412905, -7.0, -7.0, -7.0, -7.0, -7.0, -4.775646850041662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9169590156013583, -7.0, -7.0, -5.066791656754556, -3.1176578997854874, -7.0, -7.0, -7.0, -4.281674608555453, -7.0, -3.518777068926775, -7.0, -4.185409929405979, -4.205087019994803, -7.0, -4.440184654070886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.515312959331332, -4.5851108969871746, -5.706591485814721, -7.0, -3.102004688080605, -7.0, -7.0, -7.0, -5.405698025321797, -7.0, -7.0, -7.0, -7.0, -4.435286812240127, -7.0, -7.0, -3.74183416300906, -7.0, -4.200264845080476, -7.0, -7.0, -4.2455126678141495, -7.0, -7.0, -4.569746392449806, -7.0, -3.6121478383264867, -4.610010364384026, -4.299529089146387, -7.0, -7.0, -7.0, -7.0, -7.0, -3.693448465758027, -3.3909351071033793, -3.888010912245029, -7.0, -7.0, -3.6469523748023223, -7.0, -3.34143452457814, -7.0, -7.0, -7.0, -4.196424913949195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.317004147587592, -7.0, -7.0, -7.0, -7.0, -7.0, -3.490660653356137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.563599728881531, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9061733636440485, -7.0, -4.092365798646165, -3.1855421548543754, -7.0, -3.2545480771089736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6322243912130614, -3.636287252098513, -7.0, -4.0084085289779425, -7.0, -3.7500453120117676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.36321698715741, -7.0, -7.0, -7.0, -3.832687703038595, -7.0, -7.0, -4.071538361623433, -7.0, -3.4727564493172123, -7.0, -3.2931414834509307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.636955706104427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0237461631524765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1513698502474603, -7.0, -7.0, -4.02848720505384, -7.0, -7.0, -2.791690649020118, -4.1955398965493185, -3.2571984261393445, -7.0, -7.0, -7.0, -7.0, -7.0, -3.73641642358496, -7.0, -7.0, -2.584331224367531, -3.9920323401937745, -7.0, -7.0, -7.0, -2.616160312847583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8785217955012063, -7.0, -3.6498026370614305, -7.0, -2.9434945159061026, -3.331427296520743, -7.0, -3.6406801532776654, -7.0, -1.8739015978644613, -7.0, -7.0, -3.2420442393695508, -3.65298190116631, -3.141763230275788, -3.9040118835973883, -7.0, -7.0, -3.0161973535124393, -3.4398062113933303, -7.0, -7.0, -7.0, -2.7427251313046983, -7.0, -7.0, -3.7514946576711314, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6317480743965693, -7.0, -7.0, -4.280262842742384, -1.8087172420492474, -2.750893920382125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2598326990634834, -7.0, -4.6283122830844565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3242824552976926, -3.2737880795675203, -7.0, -3.37675939540488, -7.0, -3.3282776444097677, -3.7758651982020695, -1.399470114125268, -7.0, -1.89934163943878, -7.0, -3.6856521841155243, -3.0519239160461065, -7.0, -7.0, -3.5435714239623652, -7.0, -7.0, -3.473866355786692, -4.277250018474452, -7.0, -7.0, -7.0, -4.993916554616275, -7.0, -3.444044795918076, -3.127968207161918, -7.0, -7.0, -3.8222988712623667, -3.4718781993072905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7450747915820575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.878694100396108, -7.0, -1.8075350280688534, -2.0511525224473814, -7.0, -3.8256857080217586, -7.0, -7.0, -7.0, -3.6384518161613126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5484771632553307, -3.0729847446279304, -2.483824941014169, -3.575707301476683, -3.227372442289636, -7.0, -2.908451219131917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.223080397831155, -2.862131379313037, -7.0, -7.0, -7.0, -3.336030384549526, -7.0, -3.199114962043649, -7.0, -3.17376882313665, -7.0, -7.0, -7.0, -3.1277525158329733, -3.2076343673889616, -7.0, -7.0, -3.6641717053619307, -7.0, -7.0, -3.2931414834509307, -7.0, -7.0, -3.0320690441216103, -7.0, -1.8885226987424604, -2.476155081947642, -7.0, -1.4894470934582955, -2.936513742478893, -3.4405155211122285, -3.3459615418131414, -7.0, -3.3811150807098507, -7.0, -3.5511449087563216, -2.541579243946581, -2.622214022966295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5804687839510017, -7.0, -5.712962684843069, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7450747915820575, -2.4787725665262523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.238798562713917, -3.9424346928272933, -7.0, -7.0, -7.0, -2.5118833609788744, -1.7910763089412547, -2.9786369483844743, -7.0, -7.0, -3.379939722801916, -7.0, -3.780677274433368, -3.3373926976485757, -7.0, -7.0, -7.0, -3.837735703059909, -3.3087777736647213, -3.7556081017156715, -7.0, -4.233748911930145, -7.0, -7.0, -2.852479993636856, -3.6901074394563307, -7.0, -3.6587266773270137, -3.0147724740730637, -7.0, -7.0, -7.0, -2.738780558484369, -2.850033257689769, -3.1536624535754956, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3033097619588798, -2.6148972160331345, -7.0, -3.450249108319361, -3.1322596895310446, -2.3880365792235625, -1.9870514730726336, -4.177565355747414, -7.0, -7.0, -4.285489796846293, -7.0, -7.0, -3.2837533833325265, -3.271841606536499, -3.477458908024095, -7.0, -3.307067950661298, -3.2812606870550125, -3.5216610151120733, -7.0, -4.786991985099959, -7.0, -7.0, -7.0, -7.0, -3.753429841575423, -3.1374596122778238, -7.0, -7.0, -7.0, -7.0, -3.31722734917642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.856916097996645, -7.0, -5.03019073408336, -7.0, -3.4894662813031285, -4.541433622726462, -3.7737133252770216, -7.0, -7.0, -7.0, -3.2323607123535703, -3.4811558708280352, -3.241795431295199, -2.714958109720149, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0191162904470725, -7.0, -7.0, -2.9968535663367337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.372525382451559, -7.0, -4.289176310578643, -4.278055883861635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.922403639170158, -7.0, -7.0, -7.0, -5.387902133932986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.77402034534064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.61366214952783, -7.0, -7.0, -5.065960442354263, -3.1051694279993316, -3.652343055062715, -7.0, -7.0, -4.536404392209844, -3.5137501500818233, -7.0, -4.440767441204506, -4.117399149800422, -3.9811841373983543, -7.0, -7.0, -7.0, -2.741939077729199, -7.0, -7.0, -7.0, -7.0, -4.991465314908383, -4.53364074217209, -7.0, -7.0, -3.0824263008607717, -7.0, -4.95535095736766, -7.0, -7.0, -4.075473964588946, -7.0, -7.0, -7.0, -4.431717489646013, -4.305358535963103, -7.0, -3.513989584700717, -7.0, -3.9437252868815347, -4.185782890670649, -7.0, -4.165219587753745, -7.0, -7.0, -4.5023607806305135, -7.0, -7.0, -4.13046242928158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.167405957232292, -7.0, -3.404348996995556, -7.0, -7.0, -3.299903317951841, -7.0, -3.2949069106051923, -7.0, -3.743901550485179, -7.0, -3.6206980868786585, -3.6101276130759956, -7.0, -7.0, -3.5229655954919865, -7.0, -7.0, -7.0, -7.0, -3.297249705130254, -7.0, -7.0, -7.0, -3.218535505216528, -7.0, -4.010257542998302, -7.0, -7.0, -7.0, -3.7720526346874497, -4.787630474970182, -7.0, -7.0, -3.934952707817858, -7.0, -3.4581844355702627, -7.0, -7.0, -3.772615049849171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.263636068588108, -3.984212166761434, -7.0, -7.0, -3.5363058723510337, -7.0, -7.0, -4.14472984082465, -7.0, -7.0, -7.0, -7.0, -3.778927200514638, -3.45408227073109, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.79049627696711, -3.3745243201522004, -3.1357685145678222, -7.0, -3.459349400851918, -7.0, -7.0, -7.0, -3.3314677882910306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.487254103329864, -7.0, -7.0, -4.244907688977901, -7.0, -3.438858659420562, -7.0, -3.240798771117331, -7.0, -7.0, -3.0592793486780776, -7.0, -7.0, -7.0, -7.0, -4.394434168598875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.991004440330755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.106700732362354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.196797740419523, -7.0, -7.0, -7.0, -7.0, -3.3995006613146104, -7.0, -7.0, -7.0, -7.0, -3.6500159524718385, -7.0, -7.0, -7.0, -3.121887985103681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.701280086814093, -3.44255004631423, -7.0, -7.0, -3.0870712059065353, -4.211921084308509, -3.528479616133823, -7.0, -7.0, -7.0, -7.0, -7.0, -2.98786048454487, -7.0, -7.0, -2.512133843240112, -3.4859621691237974, -7.0, -7.0, -7.0, -2.8246138966934105, -7.0, -7.0, -4.09120956473413, -7.0, -3.059184617631371, -7.0, -3.1565491513317814, -3.4149733479708178, -7.0, -2.6571754108707712, -7.0, -2.611723308007342, -2.840419777736486, -3.213295826523789, -3.0849335749367164, -7.0, -7.0, -7.0, -3.395588463568244, -7.0, -2.2392994791268928, -7.0, -2.9824973691977124, -2.5908789714255094, -3.1951116328795712, -2.9256987611930096, -3.333144876098619, -3.054740694376147, -3.159266331093494, -3.215108581053093, -2.8258154449852033, -3.226084115975824, -7.0, -7.0, -7.0, -7.0, -7.0, -2.967502684527245, -7.0, -7.0, -7.0, -7.0, -7.0, -2.909912446562701, -7.0, -7.0, -4.349173880325218, -3.0538464268522527, -1.8104200911977855, -7.0, -7.0, -3.432113748648645, -7.0, -2.529558673021163, -7.0, -2.7483172620858336, -2.422972646823736, -2.613136798211654, -3.6121478383264867, -2.3010299956639813, -7.0, -3.2537230464472198, -3.1299046237151233, -3.1401150518957146, -7.0, -7.0, -7.0, -2.140249171197303, -7.0, -3.6464037262230695, -7.0, -3.8666417205660397, -7.0, -3.018284308426531, -2.709693869727792, -2.383859134635737, -2.5554975061310574, -7.0, -7.0, -2.8408227521802787, -2.8826134653016506, -2.0288035578502046, -1.89934163943878, -7.0, -7.0, -3.1907867683981013, -7.0, -7.0, -2.962527174843811, -3.009981753317307, -7.0, -2.5413295776666938, -2.4469041486850505, -3.1902408162331777, -7.0, -7.0, -7.0, -4.3944779478432645, -7.0, -3.228015175101788, -2.2297860930857993, -7.0, -7.0, -3.5340895947605686, -7.0, -7.0, -7.0, -4.378906400023262, -7.0, -7.0, -7.0, -2.362105319293773, -2.710540447933297, -3.7515100502700416, -3.473632926873841, -3.569783428251616, -3.734399742520567, -7.0, -7.0, -7.0, -2.6229044753882, -0.5110851068304926, -7.0, -3.5619953005654894, -7.0, -7.0, -7.0, -3.548954186430289, -3.0232524596337114, -7.0, -7.0, -3.3197304943302246, -7.0, -3.323252100171687, -7.0, -3.012274667007467, -3.472902651803664, -7.0, -7.0, -7.0, -7.0, -2.9694664928943446, -2.8382192219076257, -7.0, -7.0, -2.9182925127553556, -7.0, -3.103803720955957, -7.0, -2.191362752198175, -7.0, -7.0, -7.0, -7.0, -2.37231622569878, -7.0, -2.326663506724679, -2.0966121089273897, -2.0349027456652022, -2.141673694251988, -7.0, -7.0, -2.9874428049358013, -7.0, -2.78265175161032, -2.30932593310039, -3.717504074764202, -7.0, -7.0, -7.0, -7.0, -7.0, -3.794627444664508, -7.0, -2.7991336933020627, -2.5737416415203174, -7.0, -2.2141813086638207, -2.864807629026147, -7.0, -7.0, -7.0, -3.176958980586908, -3.5891860309942296, -3.4102709642521845, -7.0, -2.2270292621201366, -2.645094623553164, -3.0409976924234905, -7.0, -2.6727134419961223, -7.0, -2.699548677948487, -2.9411137270371017, -7.0, -3.673020907128896, -4.810367793773821, -7.0, -3.1357685145678222, -2.8715729355458786, -3.2826221128780624, -7.0, -7.0, -2.3904533605405005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.668012971641832, -3.401100074470033, -7.0, -7.0, -7.0, -7.0, -1.9978230807457253, -1.8799555851227492, -7.0, -3.2116544005531824, -3.732554579851432, -2.9125762934867234, -3.520876381688342, -1.9515741202886634, -2.5945766905019516, -7.0, -7.0, -3.725258066359961, -3.4214393902200495, -3.541254649786259, -2.9156636035057732, -4.238815269239352, -7.0, -7.0, -2.8172347304254983, -3.4148480526441123, -3.4831592097169795, -3.385338107809055, -2.983325529161058, -7.0, -3.3344537511509307, -2.9028184680822537, -3.0610753236297916, -2.702215059149166, -2.1522883443830563, -2.8147801457458046, -7.0, -7.0, -3.3092041796704077, -3.103803720955957, -2.028222561801142, -7.0, -3.140979163476971, -2.6130245297554895, -7.0, -2.9171114724936964, -2.1579601812912106, -3.577261953585815, -3.446744220465839, -7.0, -7.0, -7.0, -2.0162496497954696, -3.0456163219129087, -7.0, -2.6191841017592505, -3.099910730906369, -3.825491029879431, -7.0, -3.594060901270418, -7.0, -4.104443303441471, -3.1244498802828877, -7.0, -7.0, -7.0, -2.8932761679855776, -3.071697945221614, -3.1398790864012365, -3.1911714557285586, -3.0209134689673647, -7.0, -7.0, -7.0, -3.2693572552103687, -2.7278122676344823, -2.789345640720579, -3.3744733890639753, -2.90444504107691, -4.161523721301218, -3.192828704060413, -4.384248171139348, -7.0, -2.506311711911182, -4.117925559532407, -2.8604045600125314, -7.0, -7.0, -7.0, -2.6022770843001926, -3.044735697450507, -2.5337272110120566, -2.649010152542322, -2.5554975061310574, -7.0, -3.009592521262823, -7.0, -2.2864003267074238, -7.0, -2.794052139283516, -2.527951958343942, -2.761337071087618, -7.0, -7.0, -4.124362914853566, -7.0, -7.0, -7.0, -7.0, -3.781324455666988, -3.6085260335771943, -3.555292359938342, -4.038421445642459, -4.002209272988015, -7.0, -4.316222037426816, -4.024526714387152, -4.155079984230847, -4.110544819660737, -7.0, -3.678664029911573, -4.323432588871606, -7.0, -7.0, -7.0, -5.388972824642233, -7.0, -4.539189050875863, -4.123786328615372, -7.0, -4.362548443294778, -7.0, -7.0, -3.9332196580203544, -7.0, -4.205213389092977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0178677189635055, -7.0, -3.9764600291302, -3.2481776883387057, -1.9890314480164784, -3.4058583993176366, -4.0389577711393665, -7.0, -3.6456590285707335, -3.7158780483080935, -7.0, -4.450156695406595, -4.120244795546365, -3.907420318901708, -7.0, -3.9689496809813427, -7.0, -7.0, -3.530583859645118, -4.383330552045836, -7.0, -7.0, -3.391724416965437, -3.9701523850893725, -4.928755907897674, -7.0, -3.258557471186242, -7.0, -4.05508672862109, -7.0, -4.804275767129094, -3.619684515103055, -3.9312035254507522, -7.0, -7.0, -4.441302286693167, -4.786808188955903, -7.0, -3.1491677745760125, -3.0632082200712114, -3.859853068732257, -2.975891136401793, -7.0, -3.366245959064888, -4.4815525020951625, -3.018804483937159, -4.5035358273840576, -7.0, -3.6506959797606107, -3.835785662062868, -4.307731306161607, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9448454003779725, -2.850339854583479, -3.2961713931851344, -7.0, -7.0, -3.097527237460007, -7.0, -7.0, -7.0, -3.089198366805149, -7.0, -3.801019329998165, -3.1925674533365456, -3.1855421548543754, -7.0, -3.4451992957056476, -7.0, -7.0, -7.0, -7.0, -2.970678880284106, -7.0, -7.0, -3.375297738217339, -3.1149444157125847, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9193849551394147, -3.75034707354675, -7.0, -7.0, -3.060603418246075, -7.0, -3.0633333589517497, -7.0, -3.339650157613684, -3.485934263771752, -7.0, -3.0813473078041325, -7.0, -7.0, -3.7296506683359203, -7.0, -3.0595634179012676, -7.0, -7.0, -2.783903579272735, -3.1649473726218416, -7.0, -7.0, -3.128937494690652, -2.9815921172140816, -7.0, -3.6858611158657704, -7.0, -7.0, -3.926188049107206, -3.4300750555519395, -3.2798072880412437, -2.690955115144948, -7.0, -2.859938471600862, -7.0, -7.0, -7.0, -7.0, -7.0, -3.433449793761596, -3.139816140610576, -7.0, -7.0, -3.0521807430683183, -2.963214952322519, -3.672836454171397, -7.0, -3.6183619311098782, -7.0, -3.477265995424853, -7.0, -3.452208248219225, -3.712060142461075, -7.0, -7.0, -7.0, -7.0, -4.069242472185548, -7.0, -7.0, -7.0, -3.2573753848060916, -2.9500401482063032, -3.8766796104192007, -3.951216054809137, -7.0, -3.525044807036845, -7.0, -3.369957607346053, -7.0, -3.09324653110384, -3.715501945293284, -7.0, -7.0, -3.371621927176021, -7.0, -3.2282976764748628, -7.0, -7.0, -7.0, -7.0, -3.058426024457005, -7.0, -7.0, -3.53763023032496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4784221877400805, -7.0, -7.0, -7.0, -3.7052648623174043, -7.0, -7.0, -3.5998830720736876, -7.0, -7.0, -4.028923533513322, -7.0, -7.0, -3.1156105116742996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.165541076722373, -7.0, -3.0678145111618402, -7.0, -7.0, -2.9136372740190546, -7.0, -7.0, -3.218010042984363, -4.206615421510249, -7.0, -7.0, -7.0, -2.7369804812535694, -3.532066094810552, -3.3096301674258988, -2.929418925714293, -3.0580462303952816, -7.0, -7.0, -2.6982359091337726, -3.4492211919059925, -7.0, -7.0, -3.121863557620311, -7.0, -7.0, -7.0, -2.9720484774455382, -7.0, -2.5893910231369333, -3.7561560889553665, -7.0, -7.0, -7.0, -7.0, -3.437750562820388, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4444008339004135, -7.0, -7.0, -3.159266331093494, -3.0041063232796583, -3.2313846262355748, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0423945674907595, -7.0, -3.942504106168081, -2.88711696101553, -7.0, -2.949145952419944, -3.5435714239623652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5073910568285225, -7.0, -7.0, -3.513084360465144, -7.0, -3.788239097382168, -3.4000196350651586, -7.0, -2.9315849874708, -4.013789746051142, -7.0, -7.0, -7.0, -3.159266331093494, -3.4395432098217347, -7.0, -7.0, -7.0, -3.545430829465351, -7.0, -7.0, -2.926959488380276, -7.0, -7.0, -3.024641165714816, -2.9224140241456342, -3.7481104674949837, -7.0, -3.055378331375, -3.2285286773571817, -7.0, -2.7180862947830917, -2.7041505168397992, -7.0, -2.601531473875523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7424632714945925, -7.0, -7.0, -7.0, -2.7060032670672225, -7.0, -7.0, -2.2814878879400813, -2.510854226653924, -2.1509756144710184, -7.0, -3.2395219233250603, -3.136176792692332, -7.0, -7.0, -7.0, -3.3155242827531506, -7.0, -3.0692980121155293, -7.0, -7.0, -7.0, -3.53704212531207, -7.0, -7.0, -7.0, -4.080373916701309, -7.0, -7.0, -7.0, -7.0, -7.0, -4.057970231710706, -7.0, -2.6557203650631345, -7.0, -3.241795431295199, -3.442061474322838, -7.0, -7.0, -3.325310371711061, -3.6059870244750725, -3.092662173531954, -7.0, -7.0, -7.0, -3.4044427244873816, -7.0, -7.0, -7.0, -3.3479151865016914, -7.0, -7.0, -3.382917135087531, -3.2079035303860515, -3.4929000111087034, -3.411788004543869, -3.9177155165594932, -3.3857849588433355, -3.207095540419218, -3.6539517933146834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6582976503081897, -7.0, -3.393421637669355, -7.0, -7.0, -3.7526782943689865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4122925093230463, -7.0, -7.0, -3.6993173010213822, -7.0, -3.7290027092721902, -7.0, -7.0, -3.131137273778607, -4.356312741150645, -7.0, -3.799478398837981, -7.0, -7.0, -7.0, -2.673020907128896, -7.0, -7.0, -3.194097885578952, -7.0, -7.0, -7.0, -4.370124326635658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.657915936829955, -3.6773027183949845, -4.251142104019889, -7.0, -2.876506504265881, -3.2121876044039577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.344102319736858, -7.0, -7.0, -7.0, -7.0, -3.2460059040760294, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5299434016586693, -3.5604446731931874, -7.0, -7.0, -7.0, -3.5519376953648374, -7.0, -3.5429996075770545, -7.0, -4.239983131866713, -7.0, -7.0, -7.0, -2.980746885240167, -3.1917303933628562, -3.2152849801139682, -3.073058160988836, -3.8828659197216293, -2.2783724736954567, -2.9392695863387313, -7.0, -3.3346547668832414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6629937971760524, -7.0, -7.0, -7.0, -4.0927780450665505, -2.201654728267682, -7.0, -2.656577291396114, -7.0, -7.0, -3.1842180852863775, -7.0, -7.0, -7.0, -3.1350053669438873, -3.4239009185284166, -3.3080305542661055, -7.0, -4.381683534970911, -3.211280767964129, -7.0, -7.0, -7.0, -3.204459142752743, -3.0843975191411492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.853393977450666, -7.0, -3.2990712600274095, -7.0, -7.0, -4.3842339054735975, -3.3203367243872486, -4.384329129555316, -7.0, -7.0, -3.5900736323081026, -2.441695135640717, -7.0, -7.0, -7.0, -3.6190933306267428, -2.986707768660134, -3.2994346559835996, -3.450864692379766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.710371264260763, -7.0, -3.558415209393273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.417571328690727, -4.385999284138968, -7.0, -3.820179558051817, -4.58334049186249, -4.008216801589691, -7.0, -7.0, -7.0, -7.0, -3.8902197546518407, -7.0, -7.0, -4.324153794511119, -7.0, -4.3270522653266985, -7.0, -5.088187491943992, -7.0, -4.239887318594856, -2.848416012647067, -7.0, -7.0, -7.0, -7.0, -3.825058099093539, -7.0, -3.9845903152271513, -7.0, -4.212054364801163, -7.0, -7.0, -7.0, -4.162310446238798, -4.204119982655925, -4.144283542967987, -7.0, -7.0, -4.068657019746832, -3.6229907048100864, -3.7188337183038622, -3.865597435075882, -7.0, -3.3337796697190534, -3.5455132852244566, -3.1047146693379855, -3.607025878434786, -3.735457994116918, -2.2133008673073458, -7.0, -3.603020580277891, -3.865518519074774, -7.0, -7.0, -3.9086458389071135, -3.7281101841003403, -7.0, -3.6935466881001595, -3.8655889804759167, -5.104969961264324, -7.0, -7.0, -3.177824971864682, -3.543700408844007, -7.0, -4.628416179045295, -4.101781431327967, -4.235831337410517, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7552648914122466, -7.0, -4.60107628682684, -3.8950908969343994, -7.0, -3.6246650845838033, -3.5441491687091413, -2.51942409281017, -5.348929563892298, -7.0, -3.664077590185075, -4.6155186977102085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.910061669631165, -3.4742162640762553, -3.5042805196072773, -7.0, -7.0, -3.7539658658651605, -7.0, -7.0, -3.1420764610732848, -3.7985125330313516, -7.0, -3.7227709888066567, -3.6828667956623247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8257505813480277, -7.0, -7.0, -7.0, -3.0050732130636044, -7.0, -4.040681439373358, -7.0, -7.0, -7.0, -4.4949195032388225, -4.491816764062082, -7.0, -7.0, -3.368565785360332, -3.2796669440484556, -3.5581083016305497, -7.0, -3.3666097103924297, -3.364199102439187, -7.0, -7.0, -7.0, -7.0, -3.4396484295634737, -7.0, -7.0, -7.0, -7.0, -3.4112829130173843, -3.3171436620228896, -7.0, -7.0, -3.3200423754796446, -3.5998830720736876, -7.0, -3.8661691476337707, -7.0, -7.0, -7.0, -7.0, -3.725308675038557, -3.5548524343720542, -3.665299499499897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.546851001781394, -7.0, -7.0, -3.3624824747511743, -3.491251605244094, -3.68556261115823, -7.0, -3.5420573701746005, -3.5577477416414682, -3.4872798164430687, -3.0236639181977933, -3.5825557388650933, -3.723701893991268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2474822606770544, -4.2372923375674585, -7.0, -7.0, -3.8559792519028737, -3.1202447955463652, -7.0, -7.0, -7.0, -7.0, -3.1053398398052865, -3.4258601450778405, -7.0, -7.0, -3.3967222785037734, -2.390272567719502, -3.7081488497104047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2054750367408906, -7.0, -7.0, -3.4320066872695985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.662730856031272, -7.0, -7.0, -7.0, -7.0, -3.210853365314893, -7.0, -7.0, -7.0, -7.0, -3.4156409798961542, -7.0, -7.0, -7.0, -4.385212907084455, -7.0, -4.379903507451503, -3.903180455585522, -4.082336487091058, -2.8332849777071742, -3.0349944424861803, -3.480186663415707, -3.68945093632515, -2.737610329426487, -7.0, -4.078837293416897, -3.9061913308567564, -2.5305449022298983, -2.0087668938960634, -1.7870835398996032, -2.7752462597402365, -4.078366179530183, -4.382575319649486, -4.3808621953412015, -1.6561511826139075, -3.2157071184379977, -7.0, -3.0020580148640725, -2.045177012990046, -3.6939027410660605, -3.686529022816038, -4.379776729937588, -2.6665690309808827, -2.2649763214333523, -3.483587296968894, -2.640342011536324, -3.438489607941805, -7.0, -3.536955042101058, -3.785009335604058, -3.805296916157985, -3.5390940296563826, -2.9615847317782196, -7.0, -3.068978139437872, -4.3863384163575105, -2.686668567219539, -7.0, -3.3084399050774618, -3.368236156479323, -2.9792155752703517, -2.8651195661786515, -3.540454613671412, -3.216236298927863, -3.949958933716697, -3.550490423553987, -3.9259821003271034, -2.1811286997472954, -3.721365379435644, -2.409628287195821, -3.0105631211209922, -4.387336426193337, -3.047681883003228, -2.632805663414465, -4.090522570946947, -3.392679370131183, -3.278841505918599, -4.382197210377454, -3.5445818032049923, -3.5899974460440314, -2.276631354423071, -4.382845196296262, -4.381349771059741, -3.160351796497107, -7.0, -3.205940800357829, -2.912159514124199, -7.0, -3.2723555547531853, -2.736521429176014, -3.904571297338501, -2.4356376970250344, -7.0, -7.0, -2.7749378617219875, -4.408392620133361, -3.540543976514976, -7.0, -3.243814947313913, -3.787938431279371, -3.5806154692708105, -2.8075672397864206, -3.0234239480789418, -3.799977736388289, -2.3644683890954155, -3.1297865345203397, -2.831434622256806, -4.080301726793912, -7.0, -3.9411303053770306, -2.5089611230813635, -3.0333064533284095, -2.728337864761174, -7.0, -3.2968036991071967, -4.090011024007147, -7.0, -4.078801072025558, -2.506677432006041, -4.3808621953412015, -3.2093139057259306, -3.2519509249968737, -2.710274110514284, -2.4857859336457393, -3.309168661822757, -3.6856521841155243, -3.1907867683981013, -2.7060032670672225, -7.0, -3.547106316356606, -3.902456178608144, -2.433820882350655, -2.4076741092293186, -2.5074636188449606, -3.5474054596674898, -2.5959845824131773, -2.5150373560512516, -3.543269627143044, -3.140893543220026, -3.133503425345409, -1.5835703517269508, -3.6172275694385108, -3.1189092394136604, -3.024974818074746, -3.779921008715502, -7.0, -2.4651516539268714, -2.975546686034573, -7.0, -4.07928980609866, -3.348416135014412, -7.0, -7.0, -7.0, -3.905057942240592, -7.0, -2.124998812717229, -2.997777925619072, -2.4314563297226996, -3.4985096555251327, -4.390210679109047, -3.41355121317555, -3.6814764165313454, -3.6057897198025644, -3.0535498669727867, -3.9410266803683305, -2.789163252778458, -7.0, -7.0, -2.3698400103853987, -2.7311558366331012, -4.07930789680251, -7.0, -3.7067348466176946, -3.3983567313797542, -3.478999131673357, -4.398963736125521, -3.4985689855032085, -3.0928208626335234, -2.401721445968765, -3.6264259173569804, -2.417429467880523, -3.0034088273077426, -4.086769013798387, -2.369728479615979, -4.0851478121269045, -4.379975935132622, -4.0777311796523925, -2.392057108603371, -3.783224463447248, -3.907052884087371, -7.0, -2.57237951473286, -7.0, -2.965947762397985, -4.38051875807043, -3.3128872966235914, -2.0273451694820963, -3.6139298694145165, -1.9340591042340165, -2.5966448964610143, -3.2522113402363746, -2.66333066849445, -3.0991279277264674, -2.740499994105537, -3.0732643596112506, -2.9375178920173464, -3.1012470226741917, -4.387265215784176, -3.273294563057705, -7.0, -3.2101177828307916, -3.2303296869189397, -3.5441157663965743, -3.428674625648206, -2.121146829862744, -7.0, -2.26306648231497, -2.9725766394194153, -2.8199420294694213, -3.343462306559093, -2.7735545596377755, -2.598025573527527, -3.1318380689302905, -7.0, -3.1833535953910777, -3.2497908144703125, -2.9543560356409655, -7.0, -7.0, -4.08423657329355, -7.0, -3.6047299167977918, -3.1074599027639307, -3.427179448528025, -3.0259466802571935, -2.460718578810624, -2.856204024709403, -2.6535184129706497, -3.0632020427548374, -7.0, -7.0, -2.9893786160136258, -3.4923587253239288, -4.380138853265417, -4.0811852273835525, -2.903344381892454, -3.2876983961909345, -3.359835482339888, -7.0, -7.0, -4.081221250482603, -4.384263785722803, -4.3793236507533155, -4.3819089060057985, -3.4996183597000066, -2.454086205039016, -3.379142286647321, -3.2336124653140192, -7.0, -4.0829109745222265, -3.3487649395500347, -2.7543661168112243, -4.379178565528129, -3.5453071164658243, -2.7267733279783406, -3.4047140126688986, -3.8690262615868187, -2.6070055705400916, -3.080609309929619, -7.0, -4.379396175194164, -2.643551368562945, -3.8059593778018046, -2.392545351176965, -3.311418300755367, -2.2999077870759956, -4.392749698374226, -7.0, -7.0, -0.6360041990547592, -3.015030256527944, -2.1863912156954934, -2.3720290118169007, -3.441909267199942, -3.4965837344890947, -3.544829607366698, -4.081041105100104, -3.317941520549953, -3.142389466118836, -2.899157001447223, -7.0, -4.3848370882036845, -2.5963003092425367, -3.207652316779632, -2.7878404649420316, -7.0, -3.632001499438424, -2.502741118806208, -3.219846386024361, -3.272819243853222, -3.223790043636305, -1.2633858238214657, -2.6618683393442066, -7.0, -2.817778879510587, -7.0, -3.6926178191739303, -1.9540643506309214, -3.1494415075655926, -2.505794491644087, -2.5495917370235555, -2.902693659213221, -3.3264382767957286, -3.5261291883290653, -2.8428284227300984, -2.884108866405466, -2.781755374652469, -4.078764847613001, -7.0, -7.0, -2.8210219669692687, -2.6339731557896737, -3.7840464158081133, -3.109898116073996, -2.6153320289821393, -3.4811200128020143, -3.1294354674921263, -3.687207803454867, -2.8744818176994666, -7.0, -2.813458080832292, -3.0101899867944697, -2.786804641247632, -2.826375974639867, -2.6616761964944007, -3.043458415537492, -4.390405156480081, -2.7728202722091733, -1.839296442332237, -1.5690249136109147, -7.0, -2.860426089824901, -3.428872395902744, -2.5774270667201127, -1.958292711812444, -1.5139448067925088, -2.549139554034408, -3.535547279176668, -4.378615902031225, -3.5700924009287913, -3.3429069541501595, -2.5948735262859217, -3.9137785424538705, -2.1457341891998967, -3.9085743706908986, -2.052759379088285, -7.0, -7.0, -2.528965315202079, -2.8191384047482697, -4.147851449216902, -3.4013378675031465, -3.834293512442696, -3.039109632768245, -2.8477688997530954, -2.744991093676315, -2.4644033698676973, -3.1562725432178564, -3.961974486582087, -3.361031612033991, -3.6245857321792334, -3.509884883455448, -2.2536800143858366, -3.748672460388167, -3.343814631766453, -2.7167645248586396, -3.8358807318173946, -2.728522042246275, -4.43576475926038, -3.5584150291351007, -2.334754204184258, -2.5220269964024324, -3.303651959291475, -4.652323713973758, -3.3763692615312713, -3.0204844661071655, -7.0, -2.4300950892631468, -3.23598728950903, -3.5504790704430675, -3.8038958708450883, -3.550661875014696, -3.928549467001664, -3.706595875112968, -4.014954336507545, -3.3924373204536415, -3.6857417386022635, -2.9835387745764432, -3.1881371786857495, -3.203119460219802, -2.769785387826406, -2.7073048557521924, -3.1685905167231248, -3.2039163593896003, -4.110101275275583, -2.536594192858174, -2.7507698054481593, -2.6381781753347258, -2.0391677845130314, -2.634931608578787, -2.347673607595536, -3.923036668670786, -2.8729613626370636, -3.3998034713645615, -3.7800111094361224, -3.628096869190681, -2.814626734760099, -3.3701274134264128, -3.7907776013376937, -2.3746115195185786, -2.5301878237441495, -3.608579923054669, -4.384460943824492, -2.2814971589213475, -3.6868506827358676, -2.3907696872309554, -3.8680857845717336, -4.16498489374402, -2.8001399589911173, -3.1868259884637125, -7.0, -2.7777500274085205, -2.9035636610561455, -2.7901816398064154, -1.7604028989952634, -2.8754980695455994, -3.1529286821843288, -2.030618256351181, -2.035287051820646, -3.009645618907136, -2.3165851251386878, -2.497401951504548, -3.257022238514035, -2.8945266176998237, -4.085344103421502, -3.1153410244613617, -2.690979421266162, -3.0556096627549363, -4.081743249922721, -4.079271714641203, -7.0, -2.61627627546151, -4.156594577249076, -2.480593341977752, -3.234955743400412, -2.6181718577859976, -4.082354451330969, -3.2287082598019725, -2.233218159615806, -3.372443327772641, -3.8048717291471643, -3.9066402697645035, -2.706373359682506, -3.904138265829186, -1.9101034484834232, -2.9781332725009353, -3.5436246604609187, -3.932084619469911, -3.0221454662121063, -3.065291062340054, -2.5070955710456486, -4.0922819190362185, -3.7858279199958655, -3.0890657240506734, -3.911370707116138, -2.5891336581773676, -1.6781969175288394, -2.89667208170219, -3.9017488436793126, -2.904560992080643, -7.0, -7.0, -2.7258701213445855, -2.4175264570697843, -2.19495760403611, -7.0, -3.305334830880316, -2.7817147401787943, -2.8733734517676273, -3.078967336244875, -7.0, -3.6220412382089324, -2.763565073147549, -2.8352374734003063, -3.4797552093043174, -2.8443764113642773, -3.120348760073331, -2.2954586870249005, -3.9104998964054243, -3.1228881475449426, -3.3154805264453038, -4.389272429175553, -3.2581239524386674, -2.907306471393107, -2.5952066401840526, -3.778675706087729, -3.1296415629730068, -3.2234310385514684, -4.407220892927397, -3.0170565381707126, -3.7855077880892263, -2.5612098352620314, -3.2175532041585395, -3.2946696745484663, -2.082394361228675, -3.119981307304154, -2.7556684532606974, -3.4968777785966436, -7.0, -3.254377447706169, -4.3877278748679, -2.244008706403989, -2.703004620444392, -3.409070437559028, -2.840412485349145, -3.075094879174926, -7.0, -2.6651704215534737, -2.2600117280520315, -2.7413722369066322, -3.5667067908011667, -2.5242362970977723, -3.3803099337883635, -2.3209494269230264, -2.9644167839824984, -2.7139866398277115, -2.327507119163714, -3.443610631649284, -2.600955339568225, -4.3808983308391545, -7.0, -3.1889753306927693, -3.5761602878635035, -3.488762172066694, -3.6424974950329125, -2.7441942081672615, -3.5634810853944106, -2.4801679759527886, -2.611270116902844, -1.7813244556669878, -3.1641875676827644, -4.388154507768882, -2.89687054041404, -7.0, -3.123042319020609, -3.0014555467434025, -2.761114365809316, -7.0, -3.49991035702922, -3.549020787680313, -2.2449861731746967, -4.391129260417903, -7.0, -4.380066452751471, -3.777698624514739, -4.080914958856625, -4.380988656432105, -7.0, -3.076349117493459, -2.2764618041732443, -2.474559037955062, -4.386962441214617, -3.309257450996068, -7.0, -7.0, -4.390705541226371, -3.6093987370065896, -3.459844642388208, -3.7985643303338046, -2.90614341663761, -3.3873601604019097, -2.755890404784822, -7.0, -7.0, -3.388585562915087, -4.086680093734625, -7.0, -2.68185985669508, -3.7883451651521183, -7.0, -3.3876001266898017, -3.4181189156542, -3.072951369451591, -7.0, -7.0, -3.711992713282365, -7.0, -2.8127579461985768, -3.622214022966295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.649329448931539, -7.0, -7.0, -7.0, -4.2073111514361345, -3.4447992086373675, -7.0, -7.0, -7.0, -7.0, -7.0, -3.392540633818798, -7.0, -7.0, -1.372372610623625, -4.095214697082543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.86840930331496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.762347153378673, -7.0, -7.0, -2.2301081646076315, -7.0, -3.681512586638962, -7.0, -7.0, -7.0, -7.0, -1.0812776032085405, -3.5487791761200076, -3.2045269429998404, -7.0, -3.1229363730163042, -7.0, -7.0, -7.0, -3.1792644643390253, -7.0, -7.0, -7.0, -7.0, -7.0, -4.457170099784619, -7.0, -7.0, -7.0, -7.0, -7.0, -2.973681918503984, -7.0, -7.0, -4.825763554850498, -2.9822712330395684, -2.347167327739883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505014240084107, -7.0, -3.548635059814752, -7.0, -7.0, -7.0, -3.8889576967672497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2140044606589733, -7.0, -7.0, -7.0, -7.0, -3.908610106269122, -7.0, -3.0519239160461065, -7.0, -7.0, -3.547106316356606, -7.0, -2.01546454355833, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1550322287909704, -7.0, -3.8661100398443766, -7.0, -7.0, -7.0, -7.0, -3.1721162176299447, -7.0, -7.0, -3.706611115387456, -7.0, -7.0, -7.0, -4.375773316604984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.777909908625889, -7.0, -3.8527848686805477, -7.0, -7.0, -7.0, -3.7687860469080143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6953848895587407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9433955765089546, -7.0, -7.0, -7.0, -7.0, -2.971349002798928, -2.3415758274854883, -2.432547358963337, -2.85105440671866, -2.503563719643652, -2.2935203938852355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7029472461815556, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1348851196049536, -7.0, -1.7354084292983945, -2.076872040931254, -3.3119656603683665, -7.0, -7.0, -3.7743709598499167, -7.0, -7.0, -7.0, -3.3639690449788393, -7.0, -7.0, -2.6273658565927325, -3.0633333589517497, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0876800300462937, -7.0, -7.0, -5.412293349675333, -7.0, -7.0, -7.0, -1.953988461767908, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8904704794849647, -7.0, -7.0, -7.0, -7.0, -2.5575072019056577, -2.291939414775256, -7.0, -7.0, -7.0, -7.0, -7.0, -3.365175879608403, -3.3418300569205104, -7.0, -7.0, -3.846708145456007, -2.7890516223748403, -4.539327063539375, -7.0, -3.8693323168395377, -7.0, -7.0, -7.0, -3.407603325351417, -7.0, -3.2805783703680764, -3.4479328655921804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4718293555258857, -7.0, -7.0, -3.0025979807199086, -4.230103903455626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.060508975605298, -3.497758718287268, -7.0, -7.0, -7.0, -7.0, -7.0, -4.175406142156769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.081299290281622, -4.394469192347434, -5.0973880528051705, -7.0, -7.0, -5.020361282647708, -3.8041394323353503, -7.0, -7.0, -7.0, -3.5852350633657752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.66343167895703, -7.0, -7.0, -3.4232567994467242, -4.297694869693073, -7.0, -7.0, -7.0, -3.7782236267660965, -3.9003671286564705, -3.8167493372332375, -4.183594375321738, -3.3923891456860735, -7.0, -7.0, -4.421101895083551, -4.698444189830948, -3.2843179154306097, -7.0, -3.6356847625472226, -3.3221727606893467, -7.0, -7.0, -7.0, -7.0, -7.0, -3.934889645032683, -7.0, -7.0, -4.184814416196629, -7.0, -7.0, -4.300008202553813, -3.692905643431454, -4.203658299456246, -4.331447542877797, -4.203658299456246, -3.36679638328673, -7.0, -7.0, -7.0, -7.0, -4.618194580987137, -7.0, -4.37287519679339, -3.7056741038112646, -2.906712056942964, -3.6921416093667836, -7.0, -7.0, -3.914161753873292, -7.0, -7.0, -3.3331836568930138, -3.6633805032588294, -3.453381302785419, -7.0, -4.4434507498835405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.516231195157669, -3.7981825766565604, -5.706768973168231, -7.0, -2.875970261782902, -7.0, -4.957420505061151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.137528174126554, -4.785586064349684, -7.0, -4.224481265303632, -3.5299434016586693, -4.900416291286778, -3.2371526076727806, -7.0, -3.5836028559611703, -4.957870561119627, -7.0, -5.348322390274462, -7.0, -7.0, -4.010098454941318, -7.0, -7.0, -7.0, -7.0, -2.9822712330395684, -7.0, -2.9297253783780044, -7.0, -3.194403325910006, -7.0, -7.0, -3.504800851389655, -2.9734357546986665, -7.0, -7.0, -3.475235222604128, -7.0, -2.1554547095577474, -3.1762842359448387, -2.6554585929400747, -3.102605194126567, -3.0243277596576124, -2.4382785804926073, -3.3987210360255333, -7.0, -7.0, -2.598858872679337, -2.6486852034198645, -2.1166681087783803, -7.0, -7.0, -2.425968732272281, -7.0, -7.0, -7.0, -7.0, -2.7499880034871875, -4.012450544579183, -7.0, -3.021602716028242, -7.0, -1.7731110257441203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146283113159587, -7.0, -3.715501945293284, -7.0, -2.849214606209089, -7.0, -2.8382192219076257, -7.0, -2.3660970326463957, -4.205475036740891, -7.0, -7.0, -7.0, -7.0, -4.157940055964767, -7.0, -7.0, -3.9172428579074663, -7.0, -2.968783745744303, -7.0, -7.0, -2.6014080605346837, -7.0, -7.0, -7.0, -2.954724790979063, -1.592980333476044, -7.0, -3.8283376000590046, -7.0, -7.0, -7.0, -2.807100657788488, -3.3554515201265174, -7.0, -3.468537213596077, -2.671833768853756, -3.464638559095033, -7.0, -3.7467509290772156, -7.0, -2.191031608848618, -3.238798562713917, -7.0, -7.0, -3.7649416395104787, -3.5138831856110926, -7.0, -3.0310042813635367, -3.6891565819544923, -3.398981066658131, -7.0, -7.0, -3.3951515915045425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.719248398447946, -7.0, -7.0, -7.0, -3.1709171502194033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.840942080243099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7905666251460763, -7.0, -7.0, -7.0, -3.1031192535457137, -7.0, -7.0, -3.4620983811351556, -3.161368002234975, -7.0, -7.0, -7.0, -2.3183615117557332, -7.0, -7.0, -3.4220971631317103, -7.0, -2.646849110819487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.489355711136674, -5.571571419324428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1595671932336202, -4.605870446185008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295786940251609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.902456178608144, -2.01546454355833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752225204288859, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9710437918360286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7615658010500246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.17676823054687, -7.0, -7.0, -3.550595207489328, -3.082066934285113, -2.836535091898369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6187719880431564, -2.4885507165004443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4082399653118496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.598482104891492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.170848203643309, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9784544333652287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.144262773761991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.829911359893916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.8282144196427765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.875131323916717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021781741232203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.587048357103245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276588167779985, -7.0, -7.0, -4.920926445630671, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.093806775615175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8674674878590514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.677643446521776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.709339227683591, -7.0, -7.0, -3.658774320844357, -7.0, -7.0, -7.0, -5.404832006795777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4642510223795595, -7.0, -7.0, -7.0, -7.0, -4.336039245371044, -7.0, -7.0, -7.0, -3.721068301797159, -7.0, -3.11311433972209, -7.0, -7.0, -3.2600713879850747, -7.0, -7.0, -7.0, -7.0, -7.0, -3.753429841575423, -2.795880017344075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.190279159369666, -4.7856145249468245, -7.0, -7.0, -7.0, -2.9429995933660407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2718880526604837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.091375767429715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.748498126613737, -2.0709609158009337, -7.0, -7.0, -7.0, -7.0, -7.0, -3.928190948038757, -7.0, -7.0, -4.298547435078706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.353570041598004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.389431897582197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.13640344813399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5020172148271476, -7.0, -2.6182573448404014, -2.6735737964230517, -3.564902672529205, -3.8217099972983766, -7.0, -7.0, -2.1637883370283273, -3.6468691423908055, -7.0, -3.081707270097349, -7.0, -2.607025878434786, -7.0, -3.0234769399015815, -3.9618006391916785, -7.0, -3.7844033017530085, -3.161378450252407, -3.417969642214737, -7.0, -7.0, -2.7013212268209346, -3.15060295179301, -7.0, -4.0961913852351834, -7.0, -7.0, -7.0, -7.0, -3.237040791379191, -7.0, -3.653309012938479, -7.0, -2.96883304489043, -7.0, -3.446624141522082, -7.0, -2.323158310195747, -7.0, -2.3542685477139713, -2.8614597320725235, -2.3406423775607053, -3.416141031168329, -7.0, -7.0, -7.0, -2.689107926604332, -3.1489109931093564, -3.499228724283611, -3.18537214331104, -7.0, -3.397070549959409, -3.14674801363064, -7.0, -2.9400181550076634, -2.8167382992623913, -7.0, -3.3875677794171883, -3.7113853790984517, -3.241531831992722, -7.0, -3.292920299600006, -7.0, -7.0, -3.8360074591255313, -2.580696939712437, -7.0, -3.139144150562046, -3.9539335679488627, -7.0, -7.0, -7.0, -7.0, -3.253531843527005, -7.0, -2.867271018965448, -7.0, -7.0, -3.0883133155880964, -3.659250468772661, -2.1702617153949575, -3.037692040279623, -7.0, -2.5709072990808, -3.690550461510359, -3.230521905914519, -7.0, -7.0, -3.3116479226525204, -3.0320812676114404, -1.7801314083513837, -1.8926004786730173, -7.0, -2.912473780921181, -7.0, -7.0, -7.0, -3.2571583897731577, -3.286905352972375, -2.9813655090785445, -7.0, -7.0, -3.500425167997401, -7.0, -7.0, -2.962527174843811, -2.2814878879400813, -2.433820882350655, -7.0, -7.0, -7.0, -1.136098152915248, -1.6462297585471417, -7.0, -2.300842296999415, -3.0242318383830744, -3.374198257929083, -3.9228810912082936, -3.3823773034681137, -3.160846796673584, -3.140036410975282, -3.6270584640009895, -3.2620553771910674, -2.698535492562001, -7.0, -2.797328653119835, -3.1680061445387286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4820155764507117, -3.0542299098633974, -2.039259383258555, -3.195415296209372, -7.0, -3.9552065375419416, -7.0, -3.0242803760470798, -2.973897197435795, -7.0, -3.9112108931375533, -7.0, -7.0, -3.3939260065858368, -3.3038437748886547, -7.0, -7.0, -7.0, -3.167317334748176, -7.0, -7.0, -3.4954055631461936, -3.1183749671059116, -3.5826314394896364, -3.2165617350479265, -3.652536418593025, -7.0, -7.0, -3.4542699919165134, -7.0, -7.0, -7.0, -7.0, -3.3400473176613934, -7.0, -7.0, -3.2136062891507047, -7.0, -4.312198520372529, -7.0, -7.0, -3.0373996793517093, -7.0, -3.792811771248147, -3.1212314551496214, -7.0, -2.880356199419236, -7.0, -2.91539983521227, -2.7467898321526123, -2.8842287696326037, -2.8017847035341163, -7.0, -3.783331762887424, -7.0, -7.0, -3.0565237240791006, -3.6706354297483315, -7.0, -4.124504224834283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.842359573330675, -2.865340905624584, -7.0, -3.285557309007774, -7.0, -3.933183479174614, -7.0, -7.0, -7.0, -7.0, -3.011993114659257, -3.0546130545568877, -7.0, -1.9000844768522183, -2.2969392795618266, -2.765668554759014, -7.0, -4.869078264263427, -7.0, -7.0, -2.218985395949339, -7.0, -7.0, -2.8258586820285867, -2.7069614941736275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8034327273579733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.916980047320382, -7.0, -7.0, -3.8745977687032, -2.696520201326676, -7.0, -7.0, -7.0, -3.2649358217826854, -7.0, -3.4725614360755417, -7.0, -4.245890865709575, -3.4154741681092355, -7.0, -7.0, -2.5720579899263045, -2.4768694167990635, -2.544729322714663, -2.5185139398778875, -3.921686475483602, -3.479143247978613, -3.3900514964589874, -7.0, -2.5534278708133193, -2.855115160771781, -3.137986732723532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.559068334034537, -3.041611970435241, -7.0, -3.3183764152227964, -7.0, -4.358321983805685, -1.9393272143745417, -3.3111178426625054, -3.4137187650610787, -7.0, -3.4056877866727775, -2.7689668009657864, -3.0444090865590487, -4.019863713967843, -3.6659560294539566, -2.797209815771563, -3.049734732406212, -3.6795187436957892, -7.0, -4.625196657969116, -3.646060468555641, -3.273926780100526, -7.0, -7.0, -2.6203810384702573, -3.4452927694259716, -3.34908316877959, -7.0, -3.6027109449575576, -7.0, -7.0, -7.0, -2.4074248987944076, -7.0, -2.5851383133972536, -3.446459496594692, -3.391111613702803, -3.911287847949822, -2.6176259187047988, -4.398983377343561, -7.0, -3.5814945422908995, -2.937238280343299, -2.451077576038457, -3.2581581933407944, -2.815411701875331, -3.0159881053841304, -2.908842315881035, -2.0624056925748784, -2.3031305776643296, -2.7021842679490464, -2.9854264740830017, -7.0, -7.0, -7.0, -3.382917135087531, -7.0, -3.289514631590605, -7.0, -3.1793167197213412, -7.0, -7.0, -4.610713382191951, -7.0, -7.0, -7.0, -4.724505247609918, -7.0, -7.0, -4.30513631894364, -4.587368556643926, -7.0, -7.0, -7.0, -4.031481177240234, -4.401835479094576, -4.296138453408722, -7.0, -7.0, -4.6288638395509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1960840270593827, -7.0, -4.0694553366895745, -7.0, -7.0, -4.7845388415525, -7.0, -3.844805457441659, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.327747071252456, -2.4127964287165433, -7.0, -4.029896363201768, -3.6584407064111257, -7.0, -3.8794590739205956, -7.0, -3.747547120072836, -7.0, -7.0, -7.0, -4.066242040644645, -2.6230106014763095, -7.0, -3.982029891281814, -3.4285127466072924, -7.0, -3.88320703335239, -7.0, -3.7825442840100103, -7.0, -4.152720675940873, -4.091951002291903, -5.707643403895459, -7.0, -2.9533454203359306, -7.0, -4.007989459470628, -7.0, -7.0, -3.5233887417323, -7.0, -3.2846562827885157, -7.0, -7.0, -4.491781775584165, -7.0, -4.250273586232247, -3.2899232395240046, -4.127779483108085, -3.7287054046396793, -1.2263655314931408, -3.2873732587262765, -7.0, -2.797873191167606, -4.748244248991798, -7.0, -3.7265642161622448, -4.145807366632503, -7.0, -3.3104808914626753, -7.0, -7.0, -7.0, -7.0, -2.4910644209166546, -2.788168371141168, -2.9662982070631547, -7.0, -7.0, -3.8923914547060727, -7.0, -3.233884108765886, -7.0, -3.367852683427225, -7.0, -3.903781592845338, -3.043283665570575, -3.3778524190067545, -7.0, -7.0, -7.0, -3.303412070596742, -7.0, -7.0, -3.86975959478241, -7.0, -7.0, -2.6620829372459838, -1.5508540336935677, -7.0, -3.5907675519657363, -7.0, -7.0, -4.310714548718119, -3.9232854767451384, -4.797828229029252, -7.0, -7.0, -2.5857209678955364, -7.0, -3.0337252442056895, -7.0, -2.879955585122749, -2.9609235685693225, -7.0, -7.0, -7.0, -2.6307183730170616, -3.7937903846908188, -7.0, -7.0, -7.0, -7.0, -3.0398105541483504, -2.96528011476304, -7.0, -7.0, -2.9107133176711484, -2.5903215880567183, -7.0, -3.886772643054438, -7.0, -7.0, -7.0, -3.549738731264899, -2.7804691164051643, -2.5902539778001947, -7.0, -3.0038911662369103, -7.0, -7.0, -7.0, -7.0, -7.0, -3.552303109338354, -2.8889092592635315, -7.0, -7.0, -2.7349140725151675, -3.052910882091185, -3.04563587107822, -7.0, -3.5566441721731303, -3.636086515103073, -2.720731622155907, -2.751279103983342, -3.784938081382093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.931457870689005, -7.0, -3.8481644754706736, -7.0, -4.201724770116379, -4.26254600711293, -2.931893544842148, -2.8444771757456815, -7.0, -3.203576774977973, -7.0, -2.8606374167737547, -3.480438147177817, -7.0, -7.0, -2.659372822480162, -3.4302363534115106, -3.5159069441638047, -3.399846712712922, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2064403505010706, -3.3571722577230334, -7.0, -7.0, -7.0, -7.0, -7.0, -3.285669805960068, -7.0, -3.852479993636856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216456214915742, -3.39375064034808, -3.0860037056183818, -7.0, -7.0, -7.0, -7.0, -7.0, -3.564547711755948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5101426994025733, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9320930828571, -2.361609805175202, -3.4410184153526147, -3.901785145303599, -7.0, -7.0, -2.394191291136409, -4.280760426326267, -3.6124659639531425, -3.5750723257138124, -7.0, -2.571838182362705, -7.0, -3.111669230970648, -7.0, -7.0, -3.3936336901704776, -3.1480223392162925, -3.2965555060882235, -7.0, -7.0, -2.732215001029787, -3.6205524447294355, -7.0, -3.735844033532741, -7.0, -7.0, -7.0, -3.560026248912892, -3.2034861742721255, -7.0, -3.0671452788853952, -7.0, -7.0, -7.0, -3.4421691622109902, -7.0, -3.565611724902059, -7.0, -2.7058637122839193, -2.9004278224560105, -2.9476787399369364, -3.295347148333618, -7.0, -7.0, -7.0, -2.688435434839766, -3.4449811120879446, -3.2555539010842085, -2.9540011676815703, -7.0, -3.282848602834645, -3.2670934700945033, -3.111262513659065, -3.597695185925512, -2.9962927185413215, -3.52543355342882, -7.0, -3.8121108412030997, -3.44999702677108, -3.530071568837378, -7.0, -3.4243915544102776, -7.0, -3.436374704897461, -2.525538393658412, -3.525821952156663, -3.039176084376041, -3.85554784627362, -7.0, -2.748532568461719, -7.0, -3.5440680443502757, -3.1097894001793462, -7.0, -3.0734739527696653, -7.0, -2.9667672920577095, -2.5356393004678064, -3.293877950444278, -2.3478177127089124, -3.0619234632803045, -3.3506356082589543, -2.647827581642871, -3.318272080211627, -3.3439662859296195, -3.519434194913703, -7.0, -3.4347285417797577, -2.7561604817807175, -2.811909980420099, -1.812643314985218, -7.0, -2.904921530689267, -7.0, -7.0, -3.508395033133053, -2.481514288346029, -7.0, -3.111850362800993, -3.32990612340021, -2.8936384880060504, -3.1033149257643444, -7.0, -3.5435714239623652, -3.009981753317307, -2.510854226653924, -2.4076741092293186, -7.0, -7.0, -1.136098152915248, -7.0, -1.6865085919184652, -3.5959369062691735, -1.8747590403579981, -2.975052314407599, -3.091784160263216, -2.08845413666929, -2.9718554490935882, -3.220232448467026, -7.0, -3.2692015103702907, -2.7539658658651605, -3.5246557123577773, -7.0, -2.7317805659591463, -2.9147208373605693, -7.0, -7.0, -3.81489655406238, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9828847574477972, -2.910250772300148, -2.226831810658721, -3.5809249756756194, -7.0, -7.0, -7.0, -3.5390760987927767, -2.664433029445815, -3.850278552518037, -3.6763277338813203, -7.0, -7.0, -7.0, -2.79579894147347, -3.5121505369220305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0592267228698455, -3.652052848248105, -3.5644293269979834, -2.7685041151913716, -7.0, -7.0, -7.0, -3.586137025230793, -3.5478977175630972, -7.0, -7.0, -2.501137541684781, -7.0, -3.64060067766542, -7.0, -7.0, -2.5269420456780045, -7.0, -3.0991624929285946, -2.4971271893465334, -3.331427296520743, -2.5955810035695044, -7.0, -2.88752353061025, -2.573715302284969, -3.0420830591819565, -2.7683297191556235, -2.95784663370815, -3.8701111553644005, -7.0, -7.0, -2.898907927008518, -3.791795877259999, -7.0, -3.688983090121954, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5639554649958125, -2.555935188309782, -2.6989700043360187, -7.0, -2.8121610418869056, -4.406642355350766, -3.3940574848093257, -7.0, -7.0, -3.5472823079633033, -7.0, -2.382145741488806, -2.7113250813570287, -3.5219222448835, -2.4193655941906242, -1.7899822259450318, -2.9740509027928774, -3.3675955024067696, -4.8702031837463045, -7.0, -7.0, -2.6619309413533503, -7.0, -3.510410948010177, -7.0, -2.458682275856224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3551640665152047, -3.4645376212982324, -7.0, -7.0, -7.0, -7.0, -3.581949658373318, -3.096678327496078, -7.0, -2.9798896670453554, -3.579612130740304, -7.0, -3.946206553842783, -1.7648748393716502, -7.0, -7.0, -7.0, -3.068427069462389, -7.0, -3.33724778856359, -7.0, -3.955711796961274, -7.0, -7.0, -7.0, -2.737123471010412, -2.6151606643165564, -2.7960993949284183, -2.6449307079135873, -3.9864582127373063, -2.939419403329317, -3.1019760718329814, -3.047145014047316, -2.3201462861110542, -2.3504806137955305, -2.9589618439223178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3948017771627113, -2.669704193961892, -7.0, -7.0, -7.0, -3.9365294501839028, -2.20682587603185, -3.530199698203082, -3.3439793994775977, -7.0, -2.6850696293911485, -2.9766774271692067, -2.969602264848539, -3.5950183085200775, -3.2990712600274095, -3.0450294373885924, -3.3718986947787415, -3.7870351820262234, -7.0, -4.626059859121137, -3.1048284036536553, -7.0, -7.0, -7.0, -2.54520399537264, -3.237732193117367, -7.0, -7.0, -3.728272597895017, -7.0, -7.0, -7.0, -2.5877670717926997, -3.5802405082653763, -2.907411360774586, -3.363737299322217, -7.0, -3.873396175269904, -2.9015544716083577, -4.037985679548938, -7.0, -2.747460362247467, -2.714537276775954, -2.7358483078954117, -7.0, -3.12057393120585, -3.534026106056135, -2.4101443047027806, -2.270703608382223, -2.396689613731324, -2.6073656530153815, -7.0, -7.0, -3.4204508591060683, -3.54282542695918, -7.0, -3.5848963441374497, -2.3212449937489508, -7.0, -2.759831461061373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.735367320687716, -4.42125832787776, -7.0, -3.775173385424787, -3.8543833409958466, -7.0, -7.0, -4.360006132229098, -4.440184654070886, -4.106513862313081, -4.310640216862898, -7.0, -4.397322872237093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.264865026366129, -2.958844834507418, -7.0, -7.0, -7.0, -7.0, -3.8908260595923116, -7.0, -4.400710636773232, -4.376941757146759, -7.0, -7.0, -7.0, -7.0, -7.0, -4.256645598044453, -4.341246520447747, -2.057576614010089, -7.0, -3.473939276599178, -2.7875021474524684, -3.5616379545646066, -4.080518260527118, -7.0, -3.6511561995853357, -3.2547206696009736, -7.0, -4.48274499054841, -3.4982232265431157, -2.5119264649918027, -3.640978057358332, -3.700718135713169, -3.4955443375464483, -7.0, -7.0, -7.0, -7.0, -7.0, -3.38009058759723, -3.889672795651036, -5.231660699116671, -7.0, -2.73559889969818, -7.0, -3.424237414280535, -7.0, -5.410073359216594, -3.6900187807886953, -4.284859176733764, -7.0, -3.8984326288792706, -3.997357255688633, -7.0, -7.0, -4.281873856870123, -7.0, -4.01000297412706, -4.524772477368776, -1.0019077918180315, -3.026831167505327, -3.968977668982721, -3.8048206787211623, -4.206733381111317, -7.0, -7.0, -4.335598296533003, -3.875138464437482, -3.5298151966446305, -7.0, -3.501470072100412, -7.0, -7.0, -2.556194049154312, -3.2247056756774772, -2.823450076875887, -7.0, -7.0, -3.6946929263314843, -3.7155855518931964, -7.0, -7.0, -3.319053982508718, -7.0, -3.8616206903556995, -2.9914159588764146, -3.5717088318086874, -7.0, -4.207957342972937, -7.0, -3.0222515771745355, -7.0, -7.0, -3.4647875196459372, -7.0, -7.0, -3.6599162000698504, -1.7541130095162047, -7.0, -7.0, -7.0, -7.0, -3.9267436234751827, -3.264773351385913, -4.204919975839634, -7.0, -7.0, -2.563595902178134, -7.0, -2.8495729561290286, -7.0, -2.6859406824820153, -2.897330976597888, -7.0, -7.0, -7.0, -3.160568564398739, -7.0, -7.0, -7.0, -3.6103407114521566, -7.0, -2.886960486691408, -2.917855464834902, -4.265266047887377, -7.0, -2.94911107633224, -2.6651478515386624, -7.0, -7.0, -7.0, -7.0, -4.02669665597816, -7.0, -2.8135539162279573, -2.635870232986101, -7.0, -2.7363965022766426, -7.0, -7.0, -7.0, -3.9389198122447717, -3.5515719736742537, -7.0, -2.7023347819567896, -7.0, -3.505963518018126, -2.5890749869470655, -2.830406713089672, -3.3617907726863363, -3.7046651854545294, -3.457806229082977, -7.0, -3.0100348033976156, -3.017555014414844, -3.654176541877961, -7.0, -7.0, -7.0, -3.5160062303860475, -7.0, -7.0, -7.0, -7.0, -7.0, -3.785199289728364, -7.0, -3.7596930204516097, -3.800980415439888, -3.2632216936676484, -3.044461360810665, -7.0, -3.355930187078868, -7.0, -2.8997597236876644, -3.3913468443013244, -7.0, -7.0, -2.614705516854607, -3.1283992687178066, -3.4863989899853727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9588504516796785, -7.0, -2.7219937073239864, -3.5585885831081994, -7.0, -7.0, -7.0, -7.0, -7.0, -3.716504163773217, -7.0, -3.715474072849549, -3.931610406362962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6896259318411455, -2.979206813945708, -2.9750869934995627, -7.0, -7.0, -3.725012725341157, -7.0, -7.0, -3.3988077302032647, -7.0, -3.86135516019326, -3.6427612032653203, -7.0, -7.0, -7.0, -7.0, -3.301897717195208, -7.0, -7.0, -2.945632686581686, -7.0, -2.7198489822195464, -2.0212877673805068, -3.428615365459734, -2.9874676395023214, -7.0, -7.0, -1.335997257806787, -2.954900033383096, -3.211031500871904, -3.054708787938054, -7.0, -3.3176455432211585, -7.0, -2.3000120029278657, -2.8753314070333533, -7.0, -3.437221902399778, -2.8750612633917, -2.6745856023029138, -7.0, -7.0, -2.42736244013164, -2.849156072011022, -3.643551368562945, -3.354712775236435, -7.0, -7.0, -7.0, -7.0, -3.7467120225166606, -7.0, -2.9754974565302335, -3.6063813651106047, -2.8634715656455874, -7.0, -3.197663365097873, -7.0, -2.4159548048447954, -3.456897187449348, -2.7311409003621625, -2.8582089739878973, -2.3547148546267573, -7.0, -7.0, -3.690550461510359, -3.7267272090265724, -2.59667967779885, -3.5021538928713607, -2.8592509109297795, -3.2124983379352106, -7.0, -3.6648299411430907, -2.846543280888438, -3.668758541750958, -7.0, -7.0, -7.0, -3.0570952896126675, -3.861653870213911, -3.0868524453015307, -3.620448384711709, -7.0, -3.484157424365381, -7.0, -3.953373050726696, -2.3737476670376476, -7.0, -2.9509209293328924, -3.3806776672430363, -3.614158709509175, -3.766710207262259, -7.0, -7.0, -3.266741133090716, -7.0, -3.6375897858387, -7.0, -7.0, -7.0, -3.8254261177678233, -1.223293990490537, -3.4314441816172123, -7.0, -1.8846664940198277, -2.0919808222345555, -2.365581572755049, -2.765455665302838, -7.0, -2.79309160017658, -2.383407309498374, -1.6841208832970997, -1.229402270516142, -3.6250036010148636, -2.137817459835467, -7.0, -7.0, -7.0, -3.511147778494773, -7.0, -3.298197867109815, -3.704236337308788, -7.0, -2.9907510041972794, -3.3522790172744976, -7.0, -7.0, -2.1509756144710184, -2.5074636188449606, -7.0, -7.0, -1.6462297585471417, -1.6865085919184652, -7.0, -3.674677467873199, -2.721032921871661, -2.077422744831403, -3.65263306808311, -2.6041429424762548, -7.0, -3.245508413341098, -3.2118322079177557, -3.326335860928751, -3.5805828768143675, -7.0, -7.0, -2.939001266294933, -2.912089143147475, -7.0, -7.0, -2.981867125369299, -7.0, -7.0, -3.60422605308447, -7.0, -7.0, -3.199663775699543, -3.649967338324824, -1.2457024403677062, -2.667556714563343, -7.0, -3.4448641829020725, -7.0, -7.0, -3.3939260065858368, -7.0, -3.1663032199104872, -7.0, -7.0, -3.3619166186686433, -2.8121085721085706, -7.0, -7.0, -7.0, -3.0052663329727687, -7.0, -3.4051755462179893, -3.7206553565517244, -3.305852740224386, -3.1721649135409566, -3.734159513244467, -3.2003422998005173, -7.0, -3.6485551556626707, -3.112744479345518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.475053440975798, -7.0, -3.275426536741639, -7.0, -3.6447339274471924, -3.041455319268648, -7.0, -3.920801381825654, -3.393107024292132, -7.0, -3.773127924033335, -7.0, -3.433209608771474, -3.3912880485952974, -3.414555556229215, -3.0488300865283504, -7.0, -3.6126249394226386, -7.0, -3.619997169624987, -2.4187746368509666, -3.1516421992299084, -7.0, -2.7895525103083876, -7.0, -3.9682961150462557, -7.0, -3.1137762838370313, -7.0, -7.0, -2.541723216923833, -2.5853855204890204, -7.0, -3.077803798076088, -7.0, -3.7283131918551256, -7.0, -7.0, -3.3332456989619628, -7.0, -3.320457868916649, -7.0, -7.0, -2.952211058108669, -2.9893385599532865, -2.359835482339888, -2.9101414176196507, -3.140151857647077, -7.0, -7.0, -2.5017437296279943, -3.6900187807886953, -3.6045500325712614, -7.0, -3.056599976292781, -3.721398375521505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6810126011597757, -3.600537294364469, -3.6049816296074315, -7.0, -7.0, -3.6630409748939745, -7.0, -7.0, -3.6636067081245205, -3.446070935701005, -7.0, -3.079407382205769, -2.571234216560921, -3.7283537820212285, -7.0, -7.0, -3.606112535339159, -3.448551739201578, -3.0579310756823244, -7.0, -3.3418616839514494, -7.0, -7.0, -7.0, -2.782798255494358, -1.4414949041096847, -2.6548294872160803, -2.3709679555581826, -3.719124035974352, -2.864934659051497, -2.8148181600555935, -7.0, -3.3979400086720375, -3.8085485512404054, -3.7960884286806684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9807606420143298, -2.966105615272015, -3.693726948923647, -7.0, -3.7132384615456617, -3.540895440874582, -1.9355541304499773, -3.143014800254095, -2.9969112158758717, -7.0, -3.0668847431297714, -2.6137243973838293, -7.0, -4.100198171834132, -3.3526326642053124, -3.3831867994748994, -3.2625301889897145, -3.0605719396477284, -3.7681939616330715, -3.8960947079078343, -2.677210083021027, -3.12515582958053, -7.0, -7.0, -1.6693658234277071, -2.9316273514645816, -3.639586086673426, -3.6564815157904986, -3.3102683666324477, -3.629715332647132, -7.0, -7.0, -2.178822841969451, -3.3604040547299387, -3.206646006705649, -3.4102709642521845, -7.0, -3.535368932420166, -2.0033718191111585, -3.856055887241909, -7.0, -3.2108088200066947, -2.9678504504373913, -2.4072760390988797, -7.0, -7.0, -3.3224260524059526, -3.8451600776519457, -2.4762155307586386, -2.5116853468494194, -3.0536161744043904, -3.6088468223264116, -7.0, -3.1794081515138357, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8853243388390224, -7.0, -7.0, -4.1556194006082015, -7.0, -7.0, -3.8900295861634167, -7.0, -3.956792520370495, -7.0, -3.305852740224386, -3.6959083187944173, -4.115011071300453, -7.0, -3.7724500687215876, -4.270212854896243, -4.410895277968898, -4.619938129899724, -7.0, -4.10302505485856, -4.940626040821762, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5334485099051594, -2.6185308249743566, -7.0, -4.213659399781825, -4.2761399853501425, -7.0, -3.2426656366452633, -7.0, -4.10636090880675, -4.39100571835171, -7.0, -7.0, -7.0, -7.0, -3.7255849722706946, -3.797890483058349, -3.8047720536881493, -3.675044735955893, -3.321399911624453, -3.522574632691177, -3.573413164820461, -3.061398619785096, -3.1908567368986396, -3.2860071220794747, -2.8988715494355066, -3.2229114697957306, -3.346287760172882, -3.590521399348547, -3.3255840723546894, -2.502036742895763, -2.4794143960621255, -2.9577621734819206, -2.7509367354343515, -7.0, -3.2112540676178725, -3.5885438061451786, -7.0, -7.0, -3.0377862259665536, -3.0839852555724914, -4.864342382017525, -7.0, -3.925621454790829, -7.0, -3.3186475690036548, -3.679109782081773, -5.411395767749028, -3.2351354964027053, -4.302179353813202, -7.0, -3.7875667325987648, -3.8836614351536176, -3.807338807112571, -3.577319426553794, -3.219650005970414, -3.39467052410719, -2.957317790730713, -3.420577719678888, -2.297998259220199, -2.8227835078967374, -3.4953130222377027, -2.7397548594693375, -3.922956005832465, -7.0, -3.8724476477890133, -3.343034210479198, -3.5888690345141137, -7.0, -7.0, -7.0, -3.614158709509175, -7.0, -2.1209749788674674, -3.7649975992848805, -2.458672707384415, -7.0, -3.1340973839451696, -3.1763466512899763, -3.299216654900513, -2.8987251815894934, -7.0, -3.0054188608341708, -7.0, -3.4406270662633185, -2.929021350145649, -3.3533390953113047, -3.75495958772171, -7.0, -3.7511250715355837, -3.309523709653113, -7.0, -7.0, -7.0, -2.650793039651931, -7.0, -3.4274861090957858, -2.017418636809106, -7.0, -3.663355362110471, -7.0, -3.6205524447294355, -4.156619811816865, -3.6294401821443074, -3.6079774707180796, -7.0, -7.0, -2.4496398236151484, -7.0, -2.808750972349595, -7.0, -3.2357808703275603, -2.376617961114693, -7.0, -7.0, -3.7749546890801384, -2.931118710592187, -3.6203963453512844, -7.0, -7.0, -3.2092468487533736, -7.0, -2.887858329561368, -2.7582864160604745, -3.584218112117405, -7.0, -2.8453461374114086, -2.686061425390275, -7.0, -3.544836685408386, -7.0, -7.0, -7.0, -2.907795114870337, -2.767271546839847, -2.7653975864258418, -3.8732043092770407, -3.712481337801919, -7.0, -4.025141949625193, -7.0, -3.374106508804013, -7.0, -3.2779910116754087, -2.8801097112808387, -3.7016543173257483, -7.0, -2.909154709808426, -2.6257088170171308, -2.7081942032839943, -7.0, -2.8181525516426755, -3.2072976788831435, -2.998501514575574, -2.9160150455495546, -2.978940969735289, -3.910304168068569, -7.0, -7.0, -7.0, -7.0, -4.12119860258469, -3.8073997127594854, -2.8923729073984363, -3.8047526021504607, -3.618245722588928, -7.0, -3.9551343096156333, -3.4739134752498346, -3.432381286685753, -2.8974208899024245, -7.0, -3.4251264705087734, -3.6008640363098396, -2.5756825795343086, -2.6554052496393994, -7.0, -3.6035773681514667, -2.880976830201113, -3.3818367999983434, -3.197265238826092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7424894645817752, -7.0, -3.653983907374069, -7.0, -7.0, -7.0, -3.647969458362972, -3.7774268223893115, -7.0, -3.6118029390588564, -3.668618844816744, -2.6489018631808574, -7.0, -7.0, -3.8426716337607885, -7.0, -7.0, -3.5444773290864293, -3.6630409748939745, -3.3584107862063366, -3.838849090737255, -3.493597449000527, -3.784831178124469, -3.614158709509175, -7.0, -3.763128376799137, -7.0, -3.6047119317276204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.028571252692538, -3.336059277866349, -7.0, -7.0, -7.0, -3.498026608384322, -7.0, -2.639486489268586, -2.5494120098036346, -4.207768969739924, -4.22365166718718, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0679709080059894, -7.0, -7.0, -3.4044916177586857, -3.882115455473136, -7.0, -7.0, -7.0, -3.100370545117563, -7.0, -7.0, -3.7891986564290945, -7.0, -2.9960736544852753, -7.0, -2.805160901599434, -7.0, -2.7489628612561616, -2.0586790361052354, -7.0, -3.1332194567324945, -7.0, -3.9665765919484968, -7.0, -7.0, -7.0, -7.0, -3.6830470382388496, -7.0, -7.0, -3.5599066250361124, -3.2474822606770544, -3.3412366232386925, -3.354156477915428, -2.905256048748451, -2.9725628006722813, -3.2210880684827314, -7.0, -2.870403905279027, -3.203984244420126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.679124935677682, -3.015778756389041, -2.979548374704095, -7.0, -7.0, -7.0, -3.674952948048565, -7.0, -2.7157248604691793, -3.980642810952581, -7.0, -2.5856218478490254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7278122676344823, -2.857935264719429, -3.249442961442582, -3.5953859808091417, -2.4496712047318874, -7.0, -3.322637813146819, -3.590507462008583, -4.0376256699147195, -7.0, -7.0, -7.0, -2.228676690246511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.142121189893748, -7.0, -7.0, -7.0, -3.6729286904427223, -3.344356542517054, -2.8341026557127935, -7.0, -2.5413295776666938, -7.0, -3.5474054596674898, -7.0, -7.0, -7.0, -3.5959369062691735, -3.674677467873199, -7.0, -2.484185911097994, -3.7576768627259365, -7.0, -7.0, -7.0, -4.393798873122975, -7.0, -3.5089335260500327, -2.183417120397686, -7.0, -3.1565491513317814, -3.6100210246641455, -7.0, -7.0, -7.0, -4.075017456377485, -7.0, -7.0, -7.0, -7.0, -2.941511432634403, -3.5693348876929294, -7.0, -3.468258689839974, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4121003861250876, -7.0, -3.552668216112193, -7.0, -7.0, -7.0, -3.768995550358179, -2.9542425094393248, -7.0, -7.0, -3.286231854028553, -7.0, -7.0, -7.0, -7.0, -2.9718940616281238, -7.0, -3.4246094370095563, -7.0, -7.0, -3.620316743677983, -7.0, -7.0, -7.0, -7.0, -3.071513805095089, -7.0, -2.9590413923210934, -2.6209288346246438, -7.0, -3.989227273730537, -7.0, -3.2778383330020473, -2.449794777822959, -3.1947917577219247, -2.5674465020938317, -2.2852503509444095, -7.0, -2.0589634981318623, -3.313234291694724, -2.756445920162273, -7.0, -7.0, -2.5917137074725853, -2.259389071298138, -3.704407927386841, -7.0, -3.369586890736344, -3.3823773034681137, -3.873436863222037, -7.0, -7.0, -7.0, -3.7895807121644256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0696680969115957, -2.9749719942980692, -7.0, -7.0, -7.0, -7.0, -3.456922464315863, -3.6287974855667104, -4.14547610488496, -5.713339311723815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0025979807199086, -7.0, -7.0, -7.0, -7.0, -4.643699364639315, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146128035678238, -7.0, -7.0, -7.0, -2.8842287696326037, -3.8117760216029035, -2.0435524105955944, -3.0437551269686796, -7.0, -1.964835582936749, -4.023190707213023, -7.0, -4.2384851963088765, -3.17435059747938, -7.0, -7.0, -7.0, -7.0, -3.408324780170415, -3.773127924033335, -3.076958858073013, -3.4492469194900117, -7.0, -3.000650953629595, -2.458788881710845, -2.2157256645575676, -2.9694159123539814, -2.190865065731225, -2.4912215762392833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6930426355860417, -7.0, -7.0, -7.0, -3.530983666793107, -7.0, -7.0, -7.0, -7.0, -1.8744818176994664, -3.63286204010023, -7.0, -3.498540278461396, -3.5593080109070123, -3.5141491344754376, -7.0, -7.0, -7.0, -4.506441246154753, -3.894648303793517, -7.0, -7.0, -7.0, -2.6384892569546374, -3.659821158055705, -3.0881360887005513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1837442232842066, -2.380814009999767, -4.38246732201583, -2.7400116025859536, -5.097397885872501, -7.0, -2.9170457648784867, -4.543293896994105, -7.0, -7.0, -2.359021942641668, -7.0, -2.7407009689987443, -3.5121505369220305, -3.7548832282521674, -3.1015752462559334, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6414741105040997, -7.0, -3.1103337714833192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.380699548382717, -7.0, -3.749968083509403, -4.882706641624157, -7.0, -7.0, -7.0, -4.722288323541742, -4.999556793554726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.060067971523982, -7.0, -7.0, -7.0, -7.0, -7.0, -4.777281791671014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8567892887533164, -7.0, -4.3173214779522615, -7.0, -7.0, -3.636071642004376, -2.730997486018614, -7.0, -7.0, -7.0, -4.391396394500959, -7.0, -7.0, -7.0, -4.010351789910468, -3.8390648356407997, -7.0, -4.443716607769532, -3.8476960207341655, -7.0, -7.0, -4.380536840488749, -7.0, -7.0, -3.8793958675739386, -4.23321757514249, -7.0, -7.0, -3.7234556720351857, -7.0, -7.0, -7.0, -7.0, -4.091526272631091, -7.0, -7.0, -7.0, -7.0, -4.785707009008745, -7.0, -3.923839598909276, -7.0, -7.0, -3.4514654440388877, -7.0, -3.547454710572725, -7.0, -7.0, -5.348355495327635, -7.0, -7.0, -4.61240235746753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6967348842666072, -7.0, -3.2918958564339373, -7.0, -3.3649260337899753, -4.350461235597642, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499033775408696, -3.354204511370313, -7.0, -7.0, -3.6623170194385057, -7.0, -7.0, -7.0, -7.0, -3.806179973983887, -7.0, -7.0, -7.0, -3.574956775764507, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5394281056065973, -7.0, -7.0, -7.0, -3.95698436774276, -7.0, -3.5211380837040362, -7.0, -3.307709923404807, -3.959566046637928, -7.0, -7.0, -7.0, -7.0, -3.7169210731667612, -7.0, -7.0, -3.236789099409293, -7.0, -3.0570952896126675, -3.304619762853121, -7.0, -7.0, -3.1119342763326814, -2.9636697965031646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.521811143960067, -2.6709081903717906, -7.0, -3.0043213737826426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5282737771670436, -7.0, -7.0, -3.2184698571955574, -3.2540039620051373, -7.0, -3.433609843323718, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.250407802854353, -7.0, -3.203168922875464, -7.0, -7.0, -7.0, -3.079452595311, -7.0, -7.0, -7.0, -3.040602340114073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.079904467666721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.202937636552238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0141003215196207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.872709718287906, -4.165452072831928, -7.0, -4.165896909992507, -7.0, -2.945742053110066, -3.7163651049900803, -4.171053287559376, -3.1787180191057685, -2.8406183683153254, -2.92454895044925, -4.165125569088229, -3.5685830315081475, -2.710394603858482, -2.7116213795637347, -3.8891615849113204, -7.0, -7.0, -3.4702928597504274, -7.0, -2.362324352659981, -3.0609958807280466, -7.0, -2.9952656215665012, -2.6729995155027915, -3.2317243833285163, -4.1744959193753, -4.1649176661009575, -3.0065729981620746, -3.891314399382143, -3.8754953408710184, -2.767992110572119, -4.186419489155475, -3.566349092191664, -7.0, -3.6997510316895146, -3.305969047136854, -3.871397781487484, -2.5910139870040743, -4.166015456323775, -3.102169745008345, -3.87453979707101, -2.2137481718156677, -3.69340447840352, -3.57611089412084, -3.9123017850426116, -3.189209489582306, -3.1221222197687104, -3.2199917955016972, -3.071485468913831, -3.461698570306548, -3.8898057518680855, -3.90156729002845, -2.5680228708926864, -3.024895960107485, -2.883191355841693, -3.0539103642070833, -7.0, -3.4837298990000236, -2.9495697483551866, -3.1836114492184326, -3.885304667588968, -3.885643871835764, -3.867791467345843, -3.4821873135445873, -3.7753434064763316, -2.8133654043086627, -3.127958405334193, -3.6902551636939207, -4.223132362471588, -7.0, -3.11549956660232, -2.6521047694008844, -7.0, -2.971224291252213, -2.5252549034751532, -4.168173262170234, -2.386858189007188, -7.0, -4.173186268412274, -3.0349691819441498, -3.909823369650912, -3.4756421375547006, -7.0, -3.4512233805451995, -3.067099481723916, -3.2835524838345975, -2.831549851995756, -2.881330302016822, -3.899929882727864, -2.466400168803679, -3.0999025155123463, -3.4374158192831503, -7.0, -4.164144582470177, -3.624230513855454, -2.6832381229003643, -3.0433360754520002, -3.024702929610656, -4.171228996725051, -2.592438933366342, -3.8822113687583846, -3.864451747158183, -3.6878261179021794, -1.8714671335590565, -3.4674897127574646, -3.441197466929935, -3.4168345930422372, -3.035052848660952, -2.9264796427986184, -3.480323201241355, -3.473866355786692, -2.4469041486850505, -3.2395219233250603, -2.5959845824131773, -7.0, -7.0, -2.300842296999415, -1.8747590403579981, -2.721032921871661, -2.484185911097994, -7.0, -2.5748498031969818, -3.8781769804915065, -4.023540521554854, -3.033682187200558, -2.9020453468316267, -3.491305652220942, -3.2294770588731634, -2.502283337668303, -7.0, -7.0, -2.9411035246672013, -3.3311741373868458, -7.0, -7.0, -2.554896658575775, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0730197063476323, -3.3365709061214783, -2.571080252623569, -2.4634105543773317, -3.8808135922807914, -3.4923811883797753, -7.0, -3.4728149362181027, -2.290344610356955, -3.5044028924681587, -3.2782129939730074, -4.165303692468361, -7.0, -4.182414652434554, -2.9818363660944813, -3.864807629026147, -7.0, -3.7296506683359203, -3.1949858434258807, -3.8680269370808706, -7.0, -3.5014426968612273, -2.899116684799909, -2.896001009441626, -3.1253728140876187, -2.627506421216469, -3.355643050220869, -7.0, -2.4049720105667998, -3.8743368353973677, -4.165244326125311, -7.0, -2.750594096772079, -3.4748861346502506, -7.0, -7.0, -2.2114479488687553, -4.174001626402425, -3.345517491241129, -7.0, -3.3853828136078388, -2.025499604641104, -3.8841153620116686, -2.7991336933020627, -2.1096372294004264, -3.4172501991365754, -2.573003538429554, -3.596679548776454, -3.0906378232707343, -2.9117461786806595, -3.1192283874901365, -2.7332208751248905, -2.8973376581028525, -2.693009164048874, -7.0, -3.363762358869375, -3.1666184637346104, -2.8496000462005777, -3.693287157005656, -3.461515200596466, -7.0, -3.2987221136057077, -7.0, -3.2957319906112623, -3.872709718287906, -4.177940307008608, -2.7883230698362023, -3.3118597736235036, -7.0, -3.105667366994601, -3.964966374831098, -3.629593065055699, -7.0, -4.1649176661009575, -3.027058232734036, -3.1252150179256852, -3.324840768927558, -3.029586671630457, -7.0, -3.333619979091512, -2.2956652566996816, -2.9534697432534016, -2.4021430192065516, -2.9850673612431855, -7.0, -3.5728135375594547, -2.9736184677457946, -3.8896378004066676, -4.1655114107855535, -4.168968646554766, -2.813500926906632, -3.899793153046949, -3.597887066597256, -4.163370120225884, -7.0, -4.169027506008932, -3.6950144419299042, -3.86308482532036, -3.8673201445219627, -2.4282721029811807, -3.168335189517856, -7.0, -7.0, -7.0, -3.569549464888704, -3.881299044952724, -3.703234041729126, -7.0, -3.8814702517152186, -3.5003508441102396, -3.250907699700856, -3.1294105824083522, -1.3857332655944266, -3.7259660517527853, -4.1673468775856355, -4.164293359314462, -3.3657749237888828, -7.0, -2.670074638614735, -3.337715911243109, -2.9964519684791755, -3.708760723690317, -7.0, -3.395093308677923, -2.847536369651228, -2.9922220374838435, -2.484056206386171, -2.9061329346974785, -3.32376758329678, -3.0206098533777044, -2.95042213027227, -3.088903550093058, -2.434624923960997, -2.2052301495786644, -2.4919579851904485, -7.0, -3.8720979742742268, -3.5918711998469846, -4.1722233414277525, -3.4223709414184693, -7.0, -3.611723308007342, -2.5677011407545143, -3.714664992862537, -3.4496840553919434, -3.7209582214513692, -3.1789449892018418, -2.717412908457708, -4.169968173996892, -2.911183601945748, -7.0, -2.2012533420043217, -3.17666993266815, -3.1640823515826657, -2.691871187043122, -3.198081978306959, -2.6061663146076204, -3.0021930692800325, -3.3982377085456186, -4.216957207361097, -3.3993622898984075, -3.2199873220898207, -7.0, -7.0, -7.0, -2.778238977781559, -3.6607469316726013, -3.329978681161953, -4.1804126328383235, -3.3205357297018523, -3.6953357196809247, -3.3661293256157254, -7.0, -3.0780261164935427, -3.067328419252625, -3.011993114659257, -3.661102473634254, -4.181957860931066, -2.7432719933439316, -2.354563031204298, -3.1528535263650377, -7.0, -2.910133278495992, -2.9055829657189505, -2.7226555674530473, -7.0, -3.1067007323623543, -3.86975959478241, -2.813284389969057, -2.786708412045808, -2.5788638373041564, -3.0970970534252165, -4.166696470479601, -7.0, -4.22188349178524, -3.473691295865516, -3.1386758157429933, -3.2284288772361536, -2.1700723565596474, -3.4754968545499993, -2.445119865230657, -3.862608363964942, -7.0, -3.524379892559869, -4.3880419647864235, -3.8169832762228597, -4.264321877763006, -3.738707905824672, -3.73201444825009, -4.33683982531461, -3.2477032819341716, -3.352211470111767, -3.771624221669053, -7.0, -3.4937621344328145, -4.044670394919461, -3.693673432840502, -3.67691797177574, -3.550093762080741, -3.6413678610890368, -3.84426410350694, -3.9192873405043827, -4.063058005802612, -7.0, -3.8325324419556304, -4.04083959468534, -3.6415281911320134, -3.0309557541293497, -3.9487185272362937, -3.930687109941523, -4.469851458673805, -7.0, -3.690810157601429, -3.610553705317095, -3.6763277338813203, -3.9446553685692547, -3.996336518095784, -4.206717963375834, -4.41954272470028, -4.336419704862658, -4.6286136831451605, -3.514710047826209, -3.079126168979742, -2.981082082531969, -3.4625904995809047, -2.8643510609821883, -2.2519497768153833, -3.493248870057419, -3.435697388325448, -4.215267343431722, -2.9051695198309795, -2.6458223899269093, -3.3921188489937446, -3.4746844500636387, -3.033033765851075, -2.7703610059573918, -7.0, -3.4719723825183952, -3.3633612324937796, -7.0, -3.6101702411170487, -3.5769399643348927, -3.672051653937386, -4.1863063842699075, -2.7140812719788183, -3.203772786441661, -3.3999523032960326, -7.0, -2.977815026083187, -4.175018675936629, -2.805288155767483, -4.003654370310405, -3.12076675689277, -4.416607226792504, -3.163913523111784, -7.0, -3.6426376099687454, -3.1521406718110985, -3.42645897557501, -3.9583966309230707, -3.2802795193979817, -4.011676149933908, -3.335919497002167, -3.289889338077369, -2.5173106692196443, -2.8581231914869507, -3.014062856681733, -7.0, -3.19194348272539, -4.175743684421761, -3.6547779745760787, -3.193506227976473, -3.488653253269166, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7294847709059216, -3.136059641017734, -2.8143216000742486, -7.0, -7.0, -3.256777860100623, -3.7427513086038777, -3.2082800785453096, -3.87046243158892, -3.340862563370483, -7.0, -3.2319846838805257, -3.4164740791002206, -4.1798389280231865, -4.2122941666623515, -3.485500596100668, -4.210960255416812, -3.9726193390596234, -7.0, -4.1783149348321595, -2.59458751984308, -7.0, -7.0, -3.72607487021537, -2.5164231095855185, -7.0, -3.7859168036624746, -7.0, -3.692729447141836, -3.775173385424787, -2.5207438940479294, -3.4798688671351194, -7.0, -4.22855433653901, -2.529510797360305, -7.0, -2.8509013873447464, -7.0, -3.3527611917238307, -2.795893642055278, -7.0, -3.8692610629614124, -7.0, -3.3517411058188555, -3.8006941718512026, -3.1358551510973984, -3.2465259353438465, -3.286203768893748, -7.0, -2.86150725642242, -2.7526154239139053, -4.474493075006849, -7.0, -3.041590046889367, -2.860113313378828, -4.2090590341287974, -3.4078542343317864, -7.0, -4.1703497391391835, -3.497758718287268, -3.51271107196312, -2.513555597597894, -2.6984331912878923, -3.780077171419682, -2.0047988828817687, -7.0, -3.62744779121837, -3.700646038084983, -4.001863462692524, -7.0, -3.610234175334389, -2.84825283857935, -7.0, -3.6872910893851065, -2.776166851774666, -2.5566097483796093, -3.0858136527815203, -3.5174070536521542, -3.213454508691831, -7.0, -3.250442182257414, -4.192316504702737, -3.697682586349585, -3.9719249491841913, -7.0, -7.0, -4.166755638665237, -7.0, -3.3380344158933815, -7.0, -7.0, -4.230321168919079, -3.2658062062050908, -3.4331028172342286, -3.5027153400182796, -2.9069264651891564, -4.272746411201189, -3.2744401002736403, -4.178574103379925, -3.160577657190823, -7.0, -2.8048910915321743, -3.3193374362368813, -4.2789364233011, -7.0, -2.879450884912662, -3.1880280413350803, -2.9466420375666296, -3.484185911097994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3112875386622824, -7.0, -3.4300481667501534, -4.176641017292667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8976820617964196, -3.4766223338421334, -4.299790489253733, -3.229286150986481, -4.1808424146466825, -7.0, -3.098173830542939, -7.0, -7.0, -2.852222588740421, -4.182386117037066, -7.0, -7.0, -7.0, -3.6207344897857445, -7.0, -7.0, -3.7379343926406476, -7.0, -3.668874921546896, -7.0, -7.0, -7.0, -4.754592939762488, -7.0, -7.0, -7.0, -4.452775132369085, -4.160055650114694, -3.9816525260860227, -3.5775683882303175, -2.9289458629313847, -2.5345878810965172, -2.651911942666843, -7.0, -4.753812783564702, -1.419974623911139, -2.081756055581979, -3.9137835869053323, -7.0, -4.752132992497674, -3.908278162727131, -3.9745116927373285, -1.8297631007235549, -3.462193736165049, -7.0, -2.152107121041876, -2.099023146708665, -3.6116171105543358, -4.754776302434371, -7.0, -3.301994853902822, -3.5288637896169446, -4.153220159636364, -2.7007508422080138, -4.7579423494097774, -4.2760786594797535, -7.0, -3.9102431437972904, -3.8098738192491894, -3.851051856837514, -3.203260814881101, -4.752563146780113, -3.561943205916616, -2.642525866686211, -1.9177588590210453, -7.0, -3.3082212936437174, -2.537534267560738, -3.7586924198789013, -2.981401486519429, -3.5504805987637473, -4.058828243869098, -4.295852870643949, -4.281994874508107, -2.5450580749210907, -2.068237413112108, -3.593706862849097, -2.876489529359904, -3.2143557591509637, -3.6761523091270663, -4.757008635461283, -3.4271171059961962, -3.9791004957884546, -4.757934766327757, -4.758025754574382, -7.0, -3.9783707550069076, -3.475387860393165, -2.4918543411396246, -2.9968494891850317, -4.275794914631003, -3.5125732296355796, -7.0, -3.1161907409628373, -3.3181929127898804, -7.0, -3.2005769267548483, -2.1347678864147865, -3.8499258976209467, -3.084255949562787, -7.0, -4.152326572848545, -3.1127827753067483, -4.463601869359427, -4.152762139680493, -7.0, -3.76982763613248, -4.756689345987442, -3.994221805691542, -1.624809027194788, -3.8085410523501118, -7.0, -1.3317879916750461, -2.3331897709212175, -2.1478252257750254, -3.3546461700683716, -4.451033825139367, -3.3707498792897748, -2.260936864557439, -2.4021117933782326, -1.9656423629243558, -3.712374163192314, -2.156522815290907, -4.456062224454952, -7.0, -7.0, -2.8106649596666315, -4.451694349193542, -3.6207753465573442, -3.760196229455134, -3.3490975687027302, -2.752299144871972, -3.910913939634084, -4.277250018474452, -3.1902408162331777, -3.136176792692332, -2.5150373560512516, -3.1550322287909704, -4.752225204288859, -3.0242318383830744, -2.975052314407599, -2.077422744831403, -3.7576768627259365, -2.5748498031969818, -7.0, -4.2788831080657515, -4.021306473835836, -4.756377432058169, -2.9791266558444605, -4.060009977677667, -3.1161869696172917, -2.728361029865988, -7.0, -3.9114239653762946, -2.421414071355593, -3.2938558745960953, -7.0, -4.752524757465067, -2.667716581083437, -7.0, -4.7518485494936495, -4.752409569155264, -3.9081402038689497, -4.1502266766129745, -2.6555304327456617, -3.7884794804834376, -1.6154385124390143, -2.9513875235064093, -2.7730165474997395, -2.9517478499695864, -4.7526245626267665, -4.453081248423912, -3.416799311183304, -3.682886110945385, -3.1441727623900975, -7.0, -4.277364687721622, -4.279720163150526, -2.7215038694393896, -7.0, -7.0, -3.9852992061060455, -3.4378713091843833, -4.452323216977515, -3.7189770162143927, -3.9835736695139654, -4.466837974667767, -4.46595508858566, -4.064015982056994, -3.548239235346375, -4.761920324610169, -4.1536090971675526, -1.7205166823836526, -4.755020665632212, -7.0, -7.0, -4.279993758423351, -7.0, -7.0, -4.752609209479315, -2.0846515948551616, -3.8002816493571645, -3.1045507624320563, -7.0, -2.980777192555743, -1.597861012203287, -2.6350494180076955, -1.9946026312575593, -2.2387795106286505, -2.8246630509059116, -2.511338051049237, -3.8069634097426848, -3.300250561719041, -3.9810858627695267, -4.062326220404848, -3.1892238952372343, -4.755470850140081, -3.026698088964593, -7.0, -2.583024288437186, -3.617666706945491, -2.288234616162357, -7.0, -2.9174927009618066, -4.75226362009077, -3.058011047472369, -7.0, -3.8070461905554698, -7.0, -4.278532587883768, -3.176430088393643, -3.7243429081714807, -7.0, -3.9220875204019343, -2.4355746981517323, -2.766013293129767, -7.0, -4.752278985460118, -3.754493585981362, -4.4518247990667295, -4.753674963343975, -4.15318963999602, -4.75310024118681, -4.755981511395073, -2.250420002308894, -3.300008202553813, -2.607749657790076, -1.9565070948118017, -7.0, -4.754921409665169, -3.3082899393175516, -2.560835320734465, -4.752432609261474, -7.0, -3.685808892350598, -3.983641319556716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9195487280227486, -7.0, -4.752463327501825, -7.0, -4.453020042471988, -3.911674952098214, -3.978127235341502, -7.0, -4.279758172802473, -3.0764048273147346, -4.763165840200662, -2.415353770432938, -2.5538899985021546, -2.028551378718816, -3.9746805266282688, -7.0, -2.79741513068051, -2.9001275963692335, -2.198959143862575, -4.456024233422963, -2.8936038389987706, -3.4150872214535934, -3.975967643841769, -4.152418307438716, -3.2870438849608807, -1.5648467666795383, -2.4166807626547953, -2.867162094299147, -2.834323931127906, -3.3988755657510406, -3.376143358578196, -7.0, -4.157781536420133, -3.925385769416851, -3.9240428709869617, -7.0, -4.152326572848545, -7.0, -7.0, -4.761845179355819, -7.0, -3.4864752222675612, -2.6233236263839674, -4.759418525871249, -3.8151569739533104, -4.283979284238479, -2.2568108075912052, -2.5128485286763746, -4.276438825021309, -2.666043954558214, -7.0, -4.456343254849088, -3.272240590930113, -3.8089233307613366, -2.2393905541211985, -2.8910530406646147, -4.191681515027636, -4.064562806279621, -4.4729976570334395, -3.8119843841348438, -2.0152377132669415, -2.938526579084941, -4.752302032494887, -7.0, -7.0, -2.0339323851724616, -3.364493268376596, -7.0, -7.0, -3.7682087736070127, -4.152165990675555, -4.065796247841191, -4.755066468428678, -2.9216223472099334, -3.7152053921333623, -3.7584652625674755, -3.575599132587573, -2.6053967516752947, -1.988617112231469, -2.123238609395474, -2.6756150647365833, -3.911629328936281, -3.6802797148108306, -2.5507430055349456, -2.9856790279839016, -7.0, -3.9127760568902574, -3.9755926285377265, -3.9964970786804326, -3.120832862638392, -2.948001668457551, -3.9196756768967833, -7.0, -7.0, -3.8133808067338557, -7.0, -7.0, -4.757061827559215, -4.179659489735338, -4.754829768633988, -2.4358841638751363, -7.0, -7.0, -2.7133307257547616, -3.0695888195712855, -3.3679554578097592, -2.966408908682189, -3.2187132100622513, -2.2777634421104618, -2.3784529620552672, -2.3404810077814537, -2.342851180626867, -2.485434814042305, -3.4559536698309694, -2.8238744531843705, -2.869597363597986, -2.8384656793906378, -2.199264367788322, -3.2756090800864244, -2.405156044570522, -2.323020011428651, -3.620636975138439, -3.1432703594714555, -4.776911743973396, -2.6842172306486525, -3.5518738613848733, -2.4344378504815065, -2.4077440864415216, -3.7128404350917226, -3.023796701804347, -3.362050543687252, -4.163526613344592, -2.138451442869295, -2.972067003654662, -2.914078585389112, -3.3683545135832196, -3.7412061626491493, -4.064450501326473, -3.754373821728567, -3.849166803871281, -3.106299094127515, -3.0266247225387346, -2.2320793958503162, -3.9796166546322134, -2.904038968600478, -2.5017057319481153, -2.386066582440751, -2.826966962249786, -2.3717872165703136, -3.209045615689968, -1.1812620732648487, -3.517651074521444, -4.471203669470253, -3.354160372717795, -2.421473723156698, -2.3326829808604845, -4.283919055485216, -2.7156064510285387, -2.7275064998451697, -7.0, -2.7028506723802965, -3.247662360557147, -3.8289390268079373, -4.7579120162872295, -2.5188513286665026, -1.8121470850110704, -2.6399487127568735, -4.7542718686834595, -3.638681758636586, -4.754913773651104, -2.431384692068434, -3.889777764467921, -2.1598146554537774, -3.08367535113763, -3.7145333249968298, -3.9074727842216728, -3.3066225174929165, -2.897496181121582, -2.8899288750065226, -3.5480930182552797, -2.184145217084545, -1.9634327504866755, -2.6292256683079684, -1.5440151493399303, -3.911743377855932, -2.2849265430389543, -2.454188307497151, -2.159285509899914, -2.7799828499205974, -4.755104633736051, -3.663903785487646, -2.7531277550280353, -3.3230744031087247, -4.452522424089479, -7.0, -7.0, -4.753123244681713, -4.008805916155986, -1.2114867846608905, -3.6866809474663245, -2.0526511985085754, -3.7536902788618263, -2.9048807704973005, -2.878532949990976, -2.2079846976535187, -3.8096868795851906, -4.452958827892976, -3.233179496887814, -7.0, -2.651175185897296, -3.007805620305211, -4.057156212228546, -3.919847330372185, -2.2796580981362657, -3.9864358096792474, -3.291333037371177, -7.0, -3.9105939163159213, -2.883226677829262, -4.45498198398436, -4.0579018215218525, -4.285384757063689, -2.8135809885681917, -7.0, -3.1980545731753773, -7.0, -4.151484768302879, -3.06571631252638, -1.6328792743501936, -2.1879892336633064, -7.0, -2.949145952419944, -2.880490776744196, -4.7579423494097774, -3.448212941467618, -7.0, -3.6817837664678814, -2.1090583522445936, -7.0, -3.908500337637823, -3.921842481405858, -3.64672787441551, -2.6927824567955687, -3.6763048564097263, -3.2991389499032406, -3.8556251420846746, -3.199496156206543, -3.648900196979764, -1.9074980009049258, -3.3639757106352675, -3.9745040169098305, -3.3120678713554006, -3.254423558725655, -4.065101466171193, -2.4586940243408293, -4.454600977097761, -7.0, -2.896233540984362, -3.6855775412674463, -1.8546868060656614, -3.1571544399062814, -2.223970863337823, -3.0882718434369, -4.278997346985271, -4.323038854969626, -7.0, -3.3941083123867233, -4.4538532325881866, -3.618757636846373, -2.9191966786934156, -3.555759293089335, -4.752179100840631, -3.0377199826622547, -1.7160900952334388, -3.41766661081607, -3.464928984860436, -2.8990620586655056, -3.4693948724333543, -3.297174328047748, -3.179188820411169, -3.018069554387154, -2.670483178363864, -4.76015850899809, -3.8558143392341657, -7.0, -4.752148362489249, -2.854852362417834, -3.624127331511917, -3.3954859330755176, -2.3667837426355174, -2.510234078042335, -3.1207234559041432, -3.1404094433880916, -2.9637306042765084, -2.878607956493832, -3.3892547068486483, -7.0, -3.8079557396120394, -7.0, -3.262580517382081, -3.2914118222501534, -3.6084618473837273, -4.752363485275562, -3.3470371337849536, -3.8041470076134645, -2.3899405804127625, -4.279978563206881, -7.0, -7.0, -7.0, -7.0, -7.0, -4.753629013549518, -2.864643680472179, -4.062627103388964, -3.559622386202792, -4.45429593073985, -4.0571105210678615, -4.753766848350539, -4.754845043482116, -7.0, -7.0, -3.5629393628164787, -4.284137344987011, -3.246650061258412, -3.645057162575253, -4.305186506919846, -3.580149164384105, -7.0, -3.518908573691414, -4.278524964737017, -7.0, -3.0495360706389203, -4.154758619154177, -4.057559608844285, -3.8196243530000937, -3.6897453025712523, -3.9228588613062128, -4.452077913489846, -4.75355241975346, -4.76583985498647, -7.0, -3.526798605282374, -4.062175700706289, -4.757767905015857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.212453961040276, -7.0, -7.0, -5.205234146214356, -7.0, -7.0, -7.0, -4.201424437579911, -3.916453948549925, -7.0, -3.0692980121155293, -7.0, -7.0, -7.0, -4.342837036916425, -3.8984509191983747, -7.0, -3.383994789441733, -3.864464545351741, -3.1383026981662816, -2.9818186071706636, -7.0, -3.0580462303952816, -7.0, -7.0, -4.088921244740673, -7.0, -7.0, -7.0, -7.0, -3.344588742578714, -7.0, -7.0, -7.0, -3.0941215958405612, -7.0, -4.840986968939329, -7.0, -7.0, -7.0, -7.0, -3.66143405039392, -7.0, -3.13481437032046, -7.0, -3.185825359612962, -3.292256071356476, -4.210569979246113, -7.0, -3.9154526016884788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.141763230275788, -2.8847953639489807, -7.0, -7.0, -4.152807963419064, -7.0, -7.0, -3.436162647040756, -7.0, -7.0, -3.652922887567942, -7.0, -7.0, -4.427099681298999, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.987219229908005, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3081373786380386, -2.274619619091238, -4.628858735758181, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.606488850442648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.414137362184477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.543269627143044, -7.0, -7.0, -3.374198257929083, -3.091784160263216, -3.65263306808311, -7.0, -3.8781769804915065, -4.2788831080657515, -7.0, -2.4026297928954663, -2.589204670642375, -4.216662834455617, -7.0, -3.4762517960070336, -7.0, -7.0, -7.0, -4.304145712763788, -3.2008504980910777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.886490725172482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.063858548853072, -7.0, -7.0, -7.0, -7.0, -3.544154894561925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4119562379304016, -7.0, -3.8890214220952246, -7.0, -7.0, -3.5832171616034327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.63230541441367, -7.0, -7.0, -2.82865989653532, -7.0, -3.876639225154536, -3.1245042248342823, -7.0, -3.607562243183588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.650793039651931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.91539983521227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4570488265856314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0115704435972783, -7.0, -3.048053173115609, -2.774777568485786, -3.1266724494173004, -3.837051550831765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.368100851709351, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165382834970976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.319418389047728, -7.0, -4.235541071563642, -3.100370545117563, -4.4116617867231005, -7.0, -7.0, -7.0, -3.398287305357401, -7.0, -3.492620722043192, -3.430800424624181, -7.0, -7.0, -7.0, -7.0, -7.0, -3.486430478854434, -7.0, -7.0, -7.0, -7.0, -7.0, -3.276921132065774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8315082447834055, -3.9034698285071703, -7.0, -4.290279528920517, -7.0, -7.0, -3.130976691605617, -7.0, -3.663842212973794, -7.0, -7.0, -7.0, -7.0, -7.0, -5.351411685556406, -7.0, -7.0, -7.0, -7.0, -3.4683473304121573, -7.0, -7.0, -7.0, -3.4413808849165113, -7.0, -7.0, -7.0, -7.0, -3.0856472882968564, -7.0, -3.6384892569546374, -7.0, -3.9038674017124433, -7.0, -4.532972571333027, -7.0, -3.80543288813214, -3.1863953736726964, -2.943141057367911, -7.0, -7.0, -2.921166050637739, -3.2587569725365753, -3.097881744713868, -2.5583084834648857, -3.36078268987328, -2.8407332346118066, -7.0, -7.0, -2.9561684304753633, -7.0, -7.0, -3.3619166186686433, -7.0, -4.028584807240124, -7.0, -7.0, -4.2962262872611605, -7.0, -7.0, -7.0, -4.714203980582727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.583323488156762, -7.0, -4.675274120888021, -4.622473071278123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.775581324181115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9782109606289833, -7.0, -7.0, -7.0, -7.0, -4.765720696763816, -7.0, -7.0, -7.0, -7.0, -5.235934776600263, -7.0, -7.0, -7.0, -4.264558112800327, -4.381115080709851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.187175121844392, -4.80348186836277, -7.0, -7.0, -7.0, -4.956379761319415, -7.0, -5.405682667257748, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784039275096961, -7.0, -4.218824238677402, -7.0, -4.899229372297198, -7.0, -7.0, -7.0, -4.9568308966253545, -7.0, -4.648913992932156, -7.0, -7.0, -4.3088630883653005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.471614377603175, -3.389343311252078, -4.188844146546897, -7.0, -3.318689269947746, -4.345902796476545, -7.0, -7.0, -7.0, -7.0, -7.0, -4.497420372448701, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.54703589974001, -7.0, -7.0, -7.0, -7.0, -3.7531341982986697, -4.7941219138720745, -7.0, -7.0, -2.9906347965243705, -3.6444878264138585, -7.0, -3.188084373714938, -7.0, -7.0, -4.255031163345551, -7.0, -7.0, -3.111262513659065, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0655797147284485, -7.0, -7.0, -7.0, -7.0, -3.2612628687924934, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6045500325712614, -7.0, -3.767759122103009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.805296916157985, -4.632315541250991, -7.0, -3.0930713063760633, -4.309289410655256, -7.0, -2.9033225824533115, -7.0, -7.0, -7.0, -7.0, -3.1806992012960347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.531644939077263, -7.0, -7.0, -4.548598222418581, -3.6769678142947586, -7.0, -7.0, -7.0, -7.0, -3.6603910984024672, -7.0, -7.0, -7.0, -7.0, -3.161368002234975, -3.796001602777842, -7.0, -2.989004615698537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.337459261290656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.500798881491561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8232785569516707, -7.0, -7.0, -7.0, -7.0, -3.8829227906025987, -7.0, -3.5518767631329724, -3.6412209331126, -7.0, -7.0, -7.0, -3.3860230915330054, -3.7501611290217176, -7.0, -3.8560639533331, -7.0, -7.0, -7.0, -3.048892179602324, -3.541423219342099, -7.0, -7.0, -3.1266487570908934, -7.0, -7.0, -7.0, -7.0, -3.8804705928037784, -7.0, -3.4384768764335347, -3.390758528738717, -7.0, -7.0, -3.848250714677042, -3.2153202513299304, -3.8385972528166565, -3.966798546383361, -7.0, -7.0, -7.0, -3.8178867499239346, -7.0, -7.0, -7.0, -7.0, -3.7238659644435037, -3.8433573784379558, -3.8674674878590514, -7.0, -7.0, -3.901240302073309, -3.5601308927828486, -7.0, -4.153418485037711, -4.094575933649249, -7.0, -7.0, -3.1072584373095338, -7.0, -7.0, -7.0, -7.0, -7.0, -3.217396199091494, -3.536861333074499, -7.0, -7.0, -3.64018319192134, -7.0, -4.06513137214021, -3.5440266810013323, -7.0, -3.949390006644913, -3.1233444347665715, -7.0, -7.0, -7.0, -7.0, -3.359361102738486, -7.0, -3.8436687229791437, -7.0, -7.0, -7.0, -7.0, -3.2879360270447022, -3.905202028662319, -2.3257818431448523, -3.177237964019352, -3.5079907248196913, -3.7448924954516967, -7.0, -7.0, -3.9476297473843545, -7.0, -7.0, -2.2650363139745027, -7.0, -7.0, -7.0, -7.0, -7.0, -4.193681029541281, -7.0, -3.934548947666147, -3.88632148655948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.140893543220026, -3.8661100398443766, -7.0, -3.9228810912082936, -2.08845413666929, -2.6041429424762548, -7.0, -4.023540521554854, -4.021306473835836, -2.4026297928954663, -7.0, -3.5546708351714558, -3.906438650003188, -3.57541879121436, -3.9542425094393248, -3.2322335211147335, -7.0, -7.0, -2.8033571744485934, -7.0, -7.0, -7.0, -4.169424598808618, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9269337958028787, -4.063370893585704, -3.2694492600060707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.508798965403905, -7.0, -7.0, -7.0, -2.4426930296358496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6050894618815805, -2.523016426582376, -7.0, -7.0, -2.143186738714299, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8249064713021124, -3.6866660552423403, -7.0, -3.361109427505994, -7.0, -3.3600630006277616, -3.1069155663893837, -7.0, -3.7390578478058996, -4.002468450128332, -3.409820451263753, -7.0, -2.9385753148702514, -3.3040055534272743, -7.0, -3.893928126542607, -7.0, -7.0, -7.0, -7.0, -3.879210605291759, -3.912965620704104, -3.9729430081055686, -3.1348780451951295, -3.6550663666946304, -7.0, -3.3774519630245745, -7.0, -7.0, -7.0, -7.0, -3.467275043461977, -3.4489123419591823, -7.0, -3.1571040314004035, -7.0, -3.6478066243908707, -7.0, -7.0, -3.540579716504454, -7.0, -3.3564720392787937, -3.068371418032643, -7.0, -7.0, -2.4299350126061854, -3.1555095470486334, -3.295193115885859, -4.199595627478755, -7.0, -7.0, -3.8516863154424277, -7.0, -7.0, -3.8309733973226505, -3.318793504793297, -3.596542118161749, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6103823923852376, -7.0, -7.0, -7.0, -3.8370831508231857, -3.8596785766284483, -7.0, -7.0, -7.0, -3.439845647895687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6793143110270847, -7.0, -4.129313856382213, -7.0, -2.9962322981135032, -7.0, -7.0, -3.8408585540418794, -3.7274328054155808, -3.1646873716413735, -3.708505880955237, -3.278410601475816, -7.0, -3.589670402034894, -7.0, -3.8304603500309673, -3.8829796540372987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8975171294005255, -7.0, -7.0, -2.2272886675019556, -7.0, -7.0, -3.892261606915535, -3.036619683701646, -7.0, -7.0, -3.503501283905208, -7.0, -7.0, -3.0991624929285946, -7.0, -4.182728418124268, -7.0, -3.2446658144774316, -2.955046014722926, -3.2803962380601424, -7.0, -4.0764430531995455, -3.8330195470765314, -7.0, -7.0, -7.0, -3.4728295567127057, -3.713448539662225, -7.0, -7.0, -2.737341756691405, -7.0, -3.9188687433809846, -3.8452841263479915, -7.0, -3.2563568863955257, -3.8732043092770407, -4.015192041762835, -7.0, -3.3362428660289103, -3.254676005181548, -3.1934804975764015, -7.0, -7.0, -2.582059415336304, -2.9378401619201777, -7.0, -7.0, -7.0, -3.6828217233274905, -2.9743345236890986, -3.213593642804973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0249779720956247, -7.0, -3.4039551204923084, -7.0, -7.0, -4.357610910158445, -4.33799140347015, -7.0, -4.016991578206205, -7.0, -4.474201690191393, -7.0, -4.654609657359271, -4.437221902399778, -4.195013562875828, -7.0, -7.0, -7.0, -4.245759355967277, -4.6465703535357274, -7.0, -7.0, -4.953556748124912, -7.0, -4.426706406046314, -7.0, -4.4445513508584105, -7.0, -4.604506849267865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.313550871333505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.061175930448312, -7.0, -4.373840326678294, -7.0, -4.0251337522189905, -3.0270622879889344, -7.0, -7.0, -7.0, -7.0, -4.551837762017642, -3.9034698285071703, -7.0, -4.228002329762995, -3.4109325485434154, -3.241417934056642, -3.8918161195248606, -4.048532433967157, -7.0, -7.0, -7.0, -3.8719230318823734, -7.0, -7.0, -3.4157910557423414, -4.098595275921422, -3.7292483387796818, -7.0, -3.566555330883055, -7.0, -2.7447043988534787, -7.0, -4.4157827195557315, -3.479719235439571, -4.054747075382486, -7.0, -3.178241315561237, -3.919548758968848, -3.7456147202331636, -7.0, -4.0522128357697484, -7.0, -3.091396761403906, -3.8679504234198077, -7.0, -3.630534193424769, -2.825074341788919, -7.0, -3.495855943071568, -7.0, -7.0, -3.715260324665018, -4.413769018024154, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7065471026403576, -3.6260836162697796, -3.553134295203366, -7.0, -7.0, -3.6716818448830852, -7.0, -3.6122539060964374, -7.0, -7.0, -7.0, -3.723992130319009, -3.4103131758945273, -7.0, -3.4430020715710614, -7.0, -7.0, -4.033423755486949, -7.0, -7.0, -3.6080979463252794, -7.0, -7.0, -3.902546779313991, -3.979092900638326, -7.0, -3.915320673475215, -7.0, -7.0, -3.81439030710247, -3.7175207204583036, -7.0, -7.0, -3.650501794878367, -3.4719075029395614, -7.0, -3.9586594270529334, -7.0, -3.591120282237383, -3.601806578961057, -3.8248414717537007, -7.0, -7.0, -3.890197386210029, -7.0, -7.0, -7.0, -7.0, -3.855458580386036, -3.6049277034284457, -3.7231545443921883, -4.038162978435675, -7.0, -3.9848872010643275, -3.9757533890362873, -7.0, -4.304813543394108, -7.0, -7.0, -3.448582659744249, -7.0, -3.24147994288686, -3.480054875685184, -7.0, -3.8917604014566716, -7.0, -4.121625492208471, -7.0, -3.781970673912552, -7.0, -3.6195107208384987, -3.398495550138137, -7.0, -7.0, -3.3939260065858368, -3.512897756320646, -3.5366005233314004, -3.928703027430597, -3.2448870966392214, -3.958516103423041, -3.2196967711811264, -7.0, -3.928190948038757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.125101566510315, -7.0, -3.6163074351357913, -3.097530741912097, -4.031771907514002, -3.952647169758943, -7.0, -7.0, -7.0, -3.32522822787085, -3.73275552117825, -7.0, -7.0, -3.600319329751661, -7.0, -3.3773482883807557, -3.3844131561393755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8603380065709936, -7.0, -3.9358094538099326, -7.0, -3.4334955282268766, -4.077840102734994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.084137899575048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9259305978684713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0674428427763805, -4.427177644001561, -7.0, -7.0, -7.0, -4.202651759757338, -4.218719266900493, -7.0, -2.481442628502305, -7.0, -7.0, -7.0, -3.4983893302240454, -3.4235735197327357, -7.0, -3.6892200372638357, -3.5074778272865688, -7.0, -7.0, -7.0, -7.0, -2.9114239653762946, -7.0, -3.4691737711599395, -2.8506462351830666, -2.9041743682841634, -7.0, -3.037426497940624, -3.0519239160461065, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9959546877072425, -7.0, -2.5771086551437348, -7.0, -2.708420900134713, -3.3644571851188294, -3.004751155591001, -2.8472641017707647, -7.0, -7.0, -3.302114376956201, -3.733582420241032, -7.0, -3.616685520895512, -7.0, -7.0, -7.0, -3.478854967528663, -7.0, -2.850339854583479, -2.6773027183949845, -7.0, -7.0, -7.0, -3.4128574701421197, -7.0, -7.0, -3.1419198739138805, -7.0, -7.0, -3.6572471298837166, -7.0, -7.0, -4.8252053439881974, -7.0, -3.401228167498113, -7.0, -7.0, -7.0, -7.0, -3.0068937079479006, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3176455432211585, -7.0, -4.452872092466737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6112983622964285, -7.0, -7.0, -7.0, -7.0, -7.0, -3.984932166067412, -7.0, -2.9438241512023096, -7.0, -3.353916230920363, -7.0, -3.0711452904510828, -7.0, -7.0, -7.0, -3.133503425345409, -7.0, -7.0, -3.3823773034681137, -2.9718554490935882, -7.0, -7.0, -3.033682187200558, -4.756377432058169, -2.589204670642375, -3.5546708351714558, -7.0, -3.71614398304079, -7.0, -7.0, -7.0, -2.1227618173540255, -7.0, -4.004041787358312, -3.2069607291557105, -7.0, -7.0, -4.071550639366932, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039176084376041, -3.748962861256161, -7.0, -3.705949194910296, -7.0, -7.0, -7.0, -7.0, -3.212453961040276, -7.0, -2.9963240043881028, -7.0, -7.0, -7.0, -3.7666606613741327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.285782273779395, -7.0, -3.4194600727860704, -3.321598430465344, -3.4141931446624807, -7.0, -7.0, -3.8615604496727953, -7.0, -7.0, -7.0, -3.1189257528257768, -7.0, -7.0, -7.0, -3.9357087478426633, -7.0, -3.8088633877675866, -7.0, -7.0, -3.6910276490373755, -7.0, -7.0, -7.0, -7.0, -3.114610984232173, -7.0, -7.0, -3.2043913319193, -3.2723058444020863, -3.353916230920363, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3469589986735295, -7.0, -4.083574279673991, -7.0, -7.0, -7.0, -3.273926780100526, -7.0, -7.0, -3.159115821827769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.632457292184724, -2.5514499979728753, -2.8948696567452528, -1.8226295221051456, -2.4162243170985684, -7.0, -3.53731527311201, -7.0, -7.0, -3.00987563371216, -3.059184617631371, -7.0, -2.541579243946581, -2.911157608739977, -2.3313352557273705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8645160251841872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1085650237328344, -7.0, -7.0, -7.0, -3.831677849191467, -7.0, -7.0, -7.0, -7.0, -7.0, -4.537164012479412, -7.0, -7.0, -7.0, -7.0, -7.0, -2.797137648656306, -7.0, -2.856961145846947, -2.6546577546495245, -7.0, -7.0, -7.0, -2.90687353472207, -7.0, -7.0, -3.4665710723863543, -7.0, -7.0, -3.228913405994688, -7.0, -7.0, -7.0, -7.0, -3.2412973871099933, -7.0, -7.0, -7.0, -5.1326886476808244, -7.0, -7.0, -3.8140699338427977, -2.8920946026904804, -7.0, -2.4644256696388567, -7.0, -7.0, -7.0, -2.9566485792052033, -7.0, -7.0, -7.0, -5.351440688987847, -7.0, -7.0, -7.0, -7.0, -3.772834927239018, -3.038818787373656, -7.0, -7.0, -2.9706567545749585, -7.0, -7.0, -7.0, -3.7191654940892134, -7.0, -2.397070549959409, -3.6429588794097905, -7.0, -4.080265627339845, -4.0903815147216305, -4.921193822378502, -7.0, -7.0, -3.0695267534267816, -2.5345901249430756, -7.0, -7.0, -7.0, -2.6606283529737342, -1.9271734168466537, -2.624361440767268, -3.369215857410143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.366142676814887, -7.0, -3.5061260432424652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.282780668249126, -7.0, -7.0, -4.622706082719948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.863976783904387, -7.0, -7.0, -4.198959338670202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5443781439578124, -7.0, -4.464843366682843, -3.8983411657275093, -7.0, -7.0, -7.0, -4.935013239477764, -4.00238207493276, -7.0, -4.444825199509748, -4.264770614521865, -3.7281823755077257, -7.0, -4.440751700479185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.691572118017887, -5.187238619831478, -5.7066222099709005, -2.9722028383790646, -2.9286518466536946, -7.0, -4.956595788822287, -7.0, -5.405759452147459, -7.0, -4.223444019809615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.899475774307042, -7.0, -3.1095785469043866, -3.9446109674771273, -7.0, -7.0, -4.56981656287103, -7.0, -7.0, -4.309342671528001, -7.0, -7.0, -2.8506462351830666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.346783143258122, -7.0, -7.0, -7.0, -7.0, -7.0, -4.798774909075712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.829303772831025, -3.5525465479556604, -7.0, -7.0, -7.0, -7.0, -4.598856138249309, -4.618180632232297, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4956830676169153, -7.0, -7.0, -4.2561161466543815, -7.0, -7.0, -2.6403157705629567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0195316845312554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4307735806966204, -7.0, -3.1457610911129, -3.491921712586151, -7.0, -3.2631624649622166, -7.0, -7.0, -2.5709319183959467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.331720776357499, -7.0, -2.9244515909567834, -7.0, -7.0, -2.037504615484121, -7.0, -7.0, -7.0, -2.7556208080010745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9813655090785445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3029799367482493, -7.0, -3.620621804225215, -2.8165726960261033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1095983962831193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.99402664584492, -7.0, -4.992725787677043, -4.992840596288919, -7.0, -3.91912605397765, -4.29807545181653, -4.516473673696325, -4.091702121717148, -2.7418512752940463, -3.757796562527997, -7.0, -7.0, -3.1053149523630434, -2.929552358303545, -2.9581823749816007, -3.739651443709377, -7.0, -7.0, -7.0, -3.214321161392318, -2.616802055770164, -7.0, -3.8968610089919475, -2.124292607563691, -3.7917081888307824, -4.215937034361498, -4.515555950945086, -3.3093302808059466, -3.13893832067623, -4.392362752025857, -2.5501875723158833, -4.29695462344912, -7.0, -4.294298648755626, -4.6934719238588585, -4.397522885718343, -4.391742038798527, -4.305132016847225, -4.69181943079963, -3.88675529954508, -4.693265155714742, -2.7509031392906147, -7.0, -3.915439410670454, -4.699213141173923, -3.6952758632075, -3.3104256450108718, -4.517024258314842, -4.3938251796516585, -4.527591237920567, -4.695617372314424, -4.521377838762743, -2.873065106554488, -4.701934778738081, -3.24638367287559, -3.8133140589458345, -4.994550297854503, -3.953939713813928, -3.422779846389302, -4.995604485821234, -4.092803952476481, -4.041695269817748, -7.0, -4.694144339135403, -4.3078937807171505, -3.095825072722579, -4.993445048570157, -4.993078948010719, -4.0987086056043305, -7.0, -3.7835631028395746, -3.292996875989236, -7.0, -4.0994173263705065, -2.5516803258246297, -7.0, -4.523612083458387, -7.0, -4.993934171088351, -3.399368759646763, -7.0, -4.091033516054471, -7.0, -5.002947520467159, -4.296230678487514, -5.004403065060992, -3.528685357587024, -3.583643395030574, -4.2200601211412225, -2.7580586501388784, -4.102716625314743, -3.6730048708508534, -4.993083360698062, -7.0, -5.002412308205343, -4.521512915129848, -3.959886597547779, -3.4508903227897534, -4.993639000881486, -3.726936681435421, -4.3933909180321775, -7.0, -7.0, -3.668746395975131, -7.0, -3.4211708017896476, -4.520203957132736, -3.6474254958901158, -3.483284112093539, -7.0, -4.993916554616275, -4.3944779478432645, -3.3155242827531506, -1.5835703517269508, -7.0, -7.0, -3.160846796673584, -3.220232448467026, -3.245508413341098, -4.393798873122975, -2.9020453468316267, -2.9791266558444605, -4.216662834455617, -3.906438650003188, -3.71614398304079, -7.0, -4.695556095579392, -3.571411179247495, -3.7777806646709307, -4.294254538689071, -4.694153121987731, -3.2383007574516087, -3.7025985345511043, -7.0, -4.691797355026257, -3.782472624166286, -7.0, -7.0, -4.992769948427294, -7.0, -7.0, -3.956552591917399, -3.633544198011875, -2.9026710009836583, -4.534580260907068, -7.0, -3.744251796297106, -4.515754661190856, -4.692719166818034, -4.09373240974699, -3.8343133885293947, -3.514153288634498, -7.0, -7.0, -3.1496369255515337, -3.4505504606034503, -4.992840596288919, -7.0, -4.999195811104177, -4.696338911742569, -4.39123512565331, -7.0, -4.39610776932746, -4.098583162602924, -3.700024059767739, -3.9988388829513455, -3.3694467598440587, -4.998263698788174, -4.994673418386409, -2.6293306430230947, -4.99427314897317, -4.6917046245223535, -7.0, -3.2241378422167073, -4.295065447601705, -7.0, -4.992884745367121, -3.521039963927612, -4.994057466388573, -2.999052427758291, -7.0, -4.3144950176329955, -2.5246682692417513, -7.0, -4.312405872352393, -3.664932433548043, -4.69636949601487, -4.097977065496432, -4.219724204427858, -4.044618145823885, -4.218557385685178, -3.9564565834098997, -4.164191346399106, -7.0, -4.408757078487127, -7.0, -4.183582992351017, -4.1543152663277905, -3.799880813751481, -4.294527948909792, -3.006236195997821, -7.0, -3.6930775756475187, -7.0, -3.719056385289504, -7.0, -3.848413466516796, -3.342162194035208, -3.8865210943541246, -7.0, -3.922102366807607, -3.850851569406117, -4.176165703157553, -7.0, -7.0, -4.994048660742143, -4.993034818671166, -4.294492679842112, -3.880382600567092, -4.391080730225895, -3.848584949753332, -3.2257030210836604, -3.5922152039562656, -3.9008273227463928, -1.7734130132673815, -4.9924916607033785, -4.693177139403572, -3.4759615891924236, -4.394543608436238, -7.0, -4.692260710781003, -3.3765378531518766, -4.697194458267799, -4.396024896608593, -7.0, -7.0, -4.516169451725322, -7.0, -7.0, -7.0, -4.220265033587232, -2.8589481955444622, -4.147468731770726, -4.089649049381677, -7.0, -4.516583846475269, -4.995336788822523, -4.995042570695854, -4.992549099757966, -4.2171679787711565, -3.3210190017020293, -4.220792129711578, -4.01674092728626, -3.4871175714494034, -4.697564962793849, -7.0, -7.0, -3.2673110910935783, -7.0, -3.1116446237844477, -4.296450183213849, -3.06612783818228, -7.0, -7.0, -4.993987016217477, -1.6999396228754549, -3.7133141013747264, -2.928119371404327, -3.0582403888560155, -4.543248315911594, -4.094541001456839, -4.217049432439889, -4.692225424878105, -4.696046067546922, -4.702266783451331, -3.6801282253099643, -7.0, -7.0, -3.7929079827804753, -4.692750007059422, -4.095069050964049, -7.0, -7.0, -3.3021470709295784, -4.04250113308656, -4.002610931654495, -4.3957194395376415, -3.3591023009748793, -3.410986976882284, -7.0, -2.931235094634994, -7.0, -4.092488175292648, -2.661298621047443, -4.095905632247942, -3.5816977780482246, -3.6065619252763397, -3.6946511535901805, -4.397148872562535, -4.051028114111754, -3.7219277066970906, -2.269274041462733, -3.4781251750032975, -7.0, -7.0, -7.0, -3.5236667647413595, -3.3956204125690137, -4.693234352034844, -4.216838603475208, -3.188534769899359, -3.9523608832066466, -3.8537112456286655, -7.0, -3.9331074937869817, -4.995270936407388, -3.6951444420112227, -4.406723226782012, -7.0, -2.805452126011353, -3.113577139588002, -2.3960388820617213, -4.694271673113084, -4.540262719307992, -2.070756812349173, -2.33573864700505, -4.9924121171611855, -3.8197588361982464, -4.090430007966779, -3.4143475818341713, -2.755326094070565, -2.355495269475934, -3.455610458764592, -4.147808778209056, -7.0, -4.302646900425265, -4.391803709584173, -3.5034436006863636, -4.995450909360139, -2.8325302011296567, -4.693124321053439, -2.84941605707404, -7.0, -7.0, -3.535240304710175, -3.276442424245893, -4.112124420332844, -4.7079532081514905, -3.7272797651098264, -4.043083496916936, -4.545834713183113, -3.8573388457193865, -3.4838874573139074, -4.185699963145484, -4.162790498256462, -3.2653190965276826, -3.854401480650361, -3.136273450520397, -3.3136116026561218, -4.2981614375932145, -3.6049876209917846, -2.903812409252151, -4.33694379239423, -3.7307932833288957, -4.705987656603487, -3.504628359610313, -3.952945113862972, -3.5179904971151483, -3.7011989173716975, -3.1783138409662524, -3.24224136405354, -4.275714358663436, -4.398335036939955, -3.5433974725754194, -3.971028316966284, -3.8615254500826492, -4.37630315575592, -4.100558162695284, -4.999169704354565, -4.564208255737469, -4.545748198286153, -3.3604453764272515, -4.208587222943199, -3.651453097444137, -4.041590046889366, -3.340474160464808, -3.3094415672514828, -3.8772931691185653, -4.408231482914914, -3.6288813378134526, -5.000559878837396, -3.1404790343114897, -3.600678509318092, -3.6616836424574517, -3.0979718667204446, -2.7768252714096775, -2.8300452929631956, -4.6967319740211, -3.921568567164905, -4.064836376044476, -4.516142987566927, -4.239249413476724, -3.10156450476769, -4.232602273130774, -4.518803373065476, -3.2272149385107447, -2.925675141252281, -2.825397392497991, -4.692802870950005, -3.0715561430703127, -4.994211536306786, -3.072360897625468, -4.317545213369664, -3.344997458978293, -3.836407199815395, -3.212735360541053, -7.0, -4.120738405542943, -3.634091414447039, -3.4922343499973505, -5.008123037385538, -2.8748631189600693, -4.416032735575399, -3.1609971346756005, -3.853826602306928, -3.9952972785716847, -3.0834042439258478, -3.1096825421353387, -5.0064360898728, -3.107200469352167, -4.994321552794073, -4.16253026924255, -3.172166484285892, -2.6569631495746546, -7.0, -4.691792939736922, -7.0, -4.090028673590874, -4.167861444567519, -3.135789010791428, -4.000572890691385, -3.305028753746333, -4.993586113386161, -4.04474005060347, -3.239390163072411, -4.524196997775221, -4.2213055419384045, -4.148536553821937, -3.81051814410331, -7.0, -2.7015245409453135, -3.72964214883219, -4.994945918272672, -4.221879149166118, -3.598950661412175, -4.30085189841397, -3.780109668814816, -4.695004215553539, -4.99471298543157, -3.78588648069122, -7.0, -4.092224852134988, -2.793113454220208, -3.5136600060801557, -7.0, -3.7328519400012916, -4.692009236142928, -7.0, -2.916707569686794, -2.953076575498739, -3.5583566952997225, -7.0, -4.303761784087927, -3.403855575481451, -4.995959697491984, -3.641478421525803, -7.0, -4.298800696027079, -3.3386256077370664, -4.147729310675981, -7.0, -3.569646964941176, -3.956164063051131, -3.835259232912736, -4.392551871155508, -4.220090646144356, -4.297462857233573, -4.995029392086501, -3.884856337732354, -3.855430309029509, -3.1250562356895384, -7.0, -3.82961678096687, -3.8909194769224866, -7.0, -4.203561244770675, -7.0, -4.039193721058287, -4.179120729609299, -3.999930507323333, -2.146758187865031, -3.827067574895181, -4.40564938958902, -4.219571429078233, -4.5177851177248165, -2.3239399715085596, -4.994647038353484, -3.654289570174457, -4.994202733783717, -4.301095134950942, -3.5405755469905653, -4.997211582832505, -4.992637452702946, -3.4730404547971117, -2.965161456900238, -3.4769168327427638, -4.097626008369331, -3.2723905327008245, -4.401297125021583, -2.9718491303519903, -3.9176017753699286, -3.6741139861546683, -4.232373429428926, -4.395155962401246, -4.394491080756056, -4.691929792837514, -7.0, -2.703670619430989, -4.7021935055383075, -4.393645386605536, -5.003063971227445, -3.3633810336054455, -4.154797716800404, -3.846406705028264, -2.95579570442515, -2.746523605930747, -4.099706532297829, -7.0, -3.794243992434201, -7.0, -3.7791804149414143, -3.780156291265134, -4.233465707171558, -7.0, -4.044221718804828, -4.21809328354526, -3.1907074866648917, -4.694451633333337, -4.994202733783717, -7.0, -4.691678126455561, -7.0, -7.0, -7.0, -4.172757175089349, -3.655505141739744, -3.243090291496643, -4.994457934544334, -4.994919554787319, -7.0, -7.0, -4.9953850742482295, -7.0, -4.399297227459307, -4.997897275474923, -3.5124018465749907, -4.061284894874462, -3.6120841852279186, -4.9950996733824, -4.992743452515999, -3.528196562395411, -7.0, -7.0, -2.888034807041142, -7.0, -7.0, -4.528166530720789, -4.701399587752211, -3.47006442579016, -7.0, -7.0, -4.398456511847029, -7.0, -3.4784561468433646, -4.997849268568125, -4.393772565000729, -7.0, -3.124178055474675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1815577738627865, -3.137492068939977, -7.0, -2.7134905430939424, -2.3078524552347384, -3.512924418964968, -3.3824287449229447, -2.978864984347657, -7.0, -7.0, -7.0, -7.0, -3.873378736409141, -7.0, -7.0, -3.418135498425232, -3.3392200721221386, -2.7701152947871015, -2.8302678009336417, -7.0, -7.0, -2.9960736544852753, -7.0, -3.7901502325789487, -2.946697837245742, -7.0, -7.0, -7.0, -7.0, -2.807535028068853, -3.2615007731982804, -7.0, -3.4596939764779706, -7.0, -4.188969084727143, -3.0874264570362855, -2.8709888137605755, -2.962369335670021, -3.27600198996205, -3.0948203803548, -7.0, -7.0, -7.0, -2.584783378996508, -7.0, -2.612928276545454, -1.9400443971589085, -2.3409522994077023, -2.686189234244024, -7.0, -3.216957207361097, -2.826722520168992, -7.0, -7.0, -7.0, -7.0, -2.724275869600789, -2.0822723230247666, -4.459874769298969, -7.0, -7.0, -2.715446198616883, -2.720572720364261, -2.497366198100159, -3.212098782544173, -0.9652378937407882, -7.0, -3.826227103162004, -7.0, -3.4578818967339924, -7.0, -2.513217600067939, -2.606757447446635, -3.4252080511386565, -3.1357685145678222, -7.0, -2.82865989653532, -3.205745540942662, -2.4533183400470375, -3.13534470923348, -2.782293422809544, -7.0, -3.499279676883177, -3.6082050077043264, -3.4417344009978166, -7.0, -7.0, -2.3628054903717945, -7.0, -3.001156577199942, -2.94733567594874, -7.0, -3.5657002751076674, -7.0, -3.0211892990699383, -7.0, -2.429097268342519, -3.037027879755775, -2.6289724632007867, -7.0, -2.2356186149722146, -2.2255246521651406, -3.18440748541232, -7.0, -7.0, -7.0, -3.6172275694385108, -7.0, -7.0, -3.140036410975282, -7.0, -3.2118322079177557, -7.0, -3.491305652220942, -4.060009977677667, -7.0, -3.57541879121436, -7.0, -4.695556095579392, -7.0, -3.228913405994688, -3.189209489582306, -7.0, -7.0, -2.698121772656406, -2.853211334503317, -7.0, -2.7238659644435037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9293459289107084, -3.6949852230728335, -3.433769833924866, -7.0, -7.0, -7.0, -7.0, -3.2971036501492565, -7.0, -3.164114820984341, -7.0, -2.5168657614978143, -7.0, -1.54329101510127, -7.0, -7.0, -3.4000196350651586, -7.0, -7.0, -2.6240757311456826, -3.358315640082196, -3.0132586652835167, -2.8709888137605755, -3.0874264570362855, -3.6095410528172773, -7.0, -2.210704863182517, -3.427651432153175, -2.538133687250669, -7.0, -7.0, -7.0, -3.127428777851599, -2.146472577133757, -7.0, -2.6725353363248434, -2.824776462475546, -7.0, -2.7275412570285567, -3.1649473726218416, -2.669735356870171, -7.0, -7.0, -3.648067129448935, -7.0, -7.0, -7.0, -3.389343311252078, -7.0, -2.6464037262230695, -2.7832781164810925, -3.1601682929585118, -3.115527305527498, -7.0, -3.377032909310364, -3.410608542568368, -4.3537624030672, -7.0, -7.0, -7.0, -3.8008544915035607, -7.0, -3.04688519083771, -7.0, -7.0, -3.787247880331954, -7.0, -7.0, -1.833547362858849, -4.066586796470695, -3.1885910365939902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.179838928023187, -3.465035673747828, -2.7405600512253856, -4.150480122270334, -5.412443746544762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8767949762007006, -7.0, -7.0, -7.0, -3.1065308538223815, -7.0, -3.0595634179012676, -3.3697722885969625, -3.5473611290768665, -7.0, -7.0, -7.0, -3.1010593549081156, -7.0, -3.1936810295412816, -7.0, -2.7353327063206136, -7.0, -2.3884564527002667, -3.822494985278751, -3.2511513431753545, -7.0, -7.0, -7.0, -2.6823707425165573, -2.8195439355418688, -3.8424969075458146, -7.0, -4.113918296133177, -7.0, -7.0, -7.0, -3.716337287889549, -3.3074247193348603, -3.288651577789465, -2.719858389150438, -3.875234946450165, -7.0, -7.0, -7.0, -3.307067950661298, -2.7597937089078433, -7.0, -7.0, -2.6388219222193925, -2.8327217499964084, -7.0, -7.0, -7.0, -2.663700925389648, -2.341169026512188, -2.815577748324267, -3.0432312493636555, -3.341038631677523, -3.811463290247623, -2.8820067810004915, -3.0791812460476247, -7.0, -7.0, -7.0, -7.0, -2.694078462080759, -3.2838889379760565, -2.4615908660130277, -3.825945143203848, -7.0, -7.0, -2.857935264719429, -4.5734962735793205, -2.5029730590656314, -7.0, -7.0, -7.0, -3.496652939250918, -2.770575889253758, -7.0, -7.0, -3.198244586228236, -7.0, -2.193451997150143, -3.1439511164239637, -2.514391475407105, -7.0, -3.269045709657623, -2.5601826304358717, -7.0, -4.258487624056927, -4.09652766560644, -4.645181184614235, -7.0, -2.716067583629281, -4.419017617657288, -3.2137169289704004, -7.0, -7.0, -7.0, -3.127428777851599, -3.52283531366053, -2.9210916532959033, -2.582874673593952, -7.0, -7.0, -2.4059721038560276, -7.0, -2.8937617620579434, -7.0, -7.0, -7.0, -1.9475459819506464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.416465756013914, -3.480276495763096, -7.0, -4.295929776786988, -3.8835251645274904, -7.0, -7.0, -7.0, -4.246465753063679, -7.0, -7.0, -7.0, -4.377843321833933, -7.0, -7.0, -7.0, -7.0, -4.610816253967414, -7.0, -4.539276882190668, -7.0, -7.0, -7.0, -7.0, -7.0, -4.477410687907252, -7.0, -3.8372275786535504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.319012316571296, -7.0, -4.675567556920825, -3.8376626956490294, -3.917190308511564, -7.0, -7.0, -7.0, -3.805437923313723, -7.0, -7.0, -4.450264508559852, -3.7099997689230975, -3.6441520091914086, -7.0, -3.667935234429692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7387365280203073, -3.9446025096115447, -4.928761877868489, -7.0, -3.1340176456759834, -7.0, -4.113121711270605, -7.0, -5.105324505480681, -4.0971878725708955, -7.0, -7.0, -4.032538179260007, -7.0, -4.4858136687807795, -7.0, -7.0, -7.0, -4.299300234916784, -3.8932484033466537, -7.0, -3.6037986196117022, -4.259718081767896, -7.0, -4.746599173776715, -7.0, -7.0, -4.011993114659257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.477381753267053, -2.9766556049707797, -3.1578961429241805, -7.0, -7.0, -3.3532428314337293, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8468386188677917, -3.670709595223797, -7.0, -7.0, -7.0, -7.0, -2.9361785093615893, -7.0, -7.0, -3.817036226050029, -7.0, -7.0, -7.0, -3.593286067020457, -7.0, -3.7342796444928203, -7.0, -7.0, -4.602678420438509, -3.7346572321257514, -4.79192912977267, -7.0, -7.0, -3.1860612225861757, -7.0, -7.0, -7.0, -3.341038631677523, -3.7872715070480547, -7.0, -7.0, -7.0, -3.3336487565147013, -3.4290251567115186, -7.0, -7.0, -3.2757719001649312, -7.0, -3.388278863459639, -3.533560238411781, -7.0, -7.0, -2.605305046141109, -3.5851221863068155, -7.0, -3.8622208538486498, -7.0, -7.0, -7.0, -7.0, -3.4086044543256793, -3.237166582685473, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5116160205691376, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2289774943120633, -3.0557805676563268, -3.6734816970733473, -7.0, -4.016573746269123, -7.0, -3.4777722083492573, -7.0, -3.577491799837225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0595003074627485, -3.428944290035574, -7.0, -3.7081901540503384, -7.0, -3.5259513412480126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9647309210536292, -3.927797944526652, -2.919601023784111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0874264570362855, -3.13481437032046, -7.0, -7.0, -3.1781132523146316, -3.0437551269686796, -3.427713259052271, -7.0, -7.0, -3.197280558125619, -7.0, -3.6006462356623947, -3.168202746842631, -7.0, -3.6029141680346397, -3.2119210843085093, -7.0, -3.5939502952639875, -7.0, -3.4940153747571436, -7.0, -3.0773679052841567, -7.0, -7.0, -3.705607163404605, -2.6424645202421213, -7.0, -7.0, -3.4479328655921804, -7.0, -3.399673721481038, -7.0, -7.0, -7.0, -3.5441921107650325, -7.0, -3.4761067168401913, -3.5665847855598543, -7.0, -7.0, -7.0, -3.072935793491505, -2.9622272313500853, -3.529045170765769, -3.181986424480151, -7.0, -7.0, -7.0, -2.763993778305563, -3.99056082999402, -7.0, -7.0, -2.1825124537506366, -2.554825535577837, -2.6719438254879586, -3.3984608496082234, -2.3138672203691537, -2.45687190911158, -2.9848272404840994, -3.4305530141906666, -2.42907905946471, -3.4194600727860704, -3.4217684012069243, -7.0, -3.1332194567324945, -7.0, -3.010299956639812, -7.0, -2.939319531078238, -7.0, -3.0571804179280635, -3.4308809464528913, -3.1702617153949575, -3.0235610900969454, -7.0, -3.3325731039972615, -3.452706226511029, -7.0, -7.0, -2.7525605875980133, -7.0, -2.964296304500324, -3.6864575104691117, -2.539551943185312, -2.917977882592908, -7.0, -3.494432898726399, -2.7288946220436823, -7.0, -3.5110808455391185, -7.0, -7.0, -3.1855421548543754, -3.46014581749175, -2.836841783516819, -7.0, -7.0, -2.707002099520009, -2.924795995797912, -2.6962981293621393, -2.4391953457956252, -7.0, -7.0, -3.5408201976350564, -7.0, -3.160368474792848, -7.0, -7.0, -2.3059456359742456, -7.0, -7.0, -7.0, -2.90687353472207, -7.0, -2.6720978579357175, -3.445059047392219, -1.6818208377310702, -7.0, -3.0095267723266406, -2.6618915263256966, -2.7544525872374814, -7.0, -7.0, -3.373463721632369, -3.2854447829074154, -3.651859269246949, -3.072102778885176, -7.0, -3.430961453354948, -7.0, -3.402089350572097, -7.0, -3.105245174835122, -7.0, -2.648067129448935, -7.0, -2.419060366638267, -2.7897485424721538, -3.1762359997608716, -3.444044795918076, -3.228015175101788, -3.0692980121155293, -3.1189092394136604, -7.0, -7.0, -3.6270584640009895, -3.2692015103702907, -3.326335860928751, -3.5089335260500327, -3.2294770588731634, -3.1161869696172917, -3.4762517960070336, -3.9542425094393248, -7.0, -3.571411179247495, -3.228913405994688, -7.0, -3.7864674767402824, -7.0, -7.0, -2.894474304435835, -2.7988232242204005, -7.0, -3.403977963669355, -3.705880810155298, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9010153549566473, -3.2688703670207335, -2.933567202189147, -3.8392265740134355, -7.0, -7.0, -7.0, -7.0, -3.237292337567459, -4.1288514233467835, -2.7113605516305643, -7.0, -7.0, -7.0, -3.151405212887992, -7.0, -7.0, -3.29928933408768, -2.7059858251715236, -7.0, -3.5546102852261643, -3.5747255835940734, -3.6600112212893308, -3.3473300153169503, -3.115943176939055, -3.079226482700122, -7.0, -2.769967801329442, -3.3582395081717715, -7.0, -7.0, -7.0, -3.1956229435869368, -7.0, -7.0, -7.0, -3.0183259454029208, -7.0, -7.0, -7.0, -1.8486463172461758, -3.0365123762348905, -3.505421327583281, -3.3572358579987425, -3.4712183443078723, -7.0, -2.946746935033585, -7.0, -2.893983567211847, -7.0, -3.5678494505731067, -2.7596678446896306, -3.4653828514484184, -3.04720994556899, -7.0, -2.1667580372054505, -7.0, -4.080157310970184, -3.4302363534115106, -3.2409546501190056, -3.3981136917305026, -2.9880012394757802, -7.0, -3.5686709780098966, -2.9701918541039056, -7.0, -2.516621586200183, -2.39997895364675, -7.0, -2.9524049395770247, -3.615950051656401, -3.1852115157200926, -7.0, -7.0, -7.0, -3.41161970596323, -7.0, -3.4619484952037616, -7.0, -7.0, -3.3106083564585234, -2.654398706337697, -3.716309469007183, -3.8114895460022478, -3.390405156480081, -2.754348335711019, -7.0, -7.0, -3.4019172505175748, -3.4216039268698313, -2.8444771757456815, -3.2745042226558834, -7.0, -7.0, -7.0, -7.0, -3.4396484295634737, -7.0, -7.0, -7.0, -3.461082011652079, -7.0, -7.0, -7.0, -7.0, -3.491781775584166, -7.0, -7.0, -3.191311257590993, -3.837777769553733, -3.5952757118020995, -3.3071214846498904, -2.9341953493478843, -7.0, -7.0, -7.0, -2.893225903113069, -3.6148972160331345, -3.258098269990316, -7.0, -3.581827799038108, -7.0, -7.0, -7.0, -2.625826713285711, -3.2765192467342565, -2.7052025967595776, -2.1143683277196983, -3.1744959193752993, -2.381776702512341, -2.885926339801431, -7.0, -7.0, -3.39208111979816, -2.977266212427293, -3.3873898263387296, -2.7444494574467986, -7.0, -7.0, -2.972665592266111, -7.0, -2.6725083442440685, -2.720572720364261, -2.836577274840649, -3.077912702949456, -3.5643109099606027, -3.6759141756799263, -3.2953031446371517, -3.4271614029259654, -3.3754603877138902, -3.4158077276355434, -3.501333178645566, -2.154372009362445, -7.0, -3.4428323921463972, -3.721068301797159, -2.911370707116138, -2.9016762313263755, -7.0, -3.3386556655787003, -3.8339779430518304, -2.6325493134758626, -3.398981066658131, -7.0, -7.0, -3.889413764042709, -1.9507513201667126, -3.4565178578052627, -7.0, -2.7614579752546033, -2.661654961009687, -3.1415542841654776, -7.0, -3.2465601261061714, -3.188365926063148, -2.743248377731732, -2.8897217842562033, -7.0, -3.790009389829715, -3.3807702005041653, -4.113006362769909, -7.0, -2.6847925759279203, -3.5797795148825737, -2.2179771804757857, -3.3872118003137306, -7.0, -7.0, -2.739018245883481, -3.21133416373255, -2.34236285652541, -2.663700925389648, -3.4087486061842442, -7.0, -2.8790958795000727, -3.443106456737266, -3.4831592097169795, -7.0, -2.9071425310031405, -7.0, -2.6039816229298722, -7.0, -7.0, -3.772112054543177, -4.184634656586273, -3.838723190031372, -3.796782411701308, -4.428564014832206, -3.9321184720291225, -3.982406928863795, -3.6126885133197812, -3.511448849204857, -7.0, -7.0, -4.346216013155006, -4.133443097549098, -3.9651332556473258, -4.001895894107419, -4.067981658220164, -3.9138579857592846, -4.154890378645141, -4.107209969647869, -7.0, -7.0, -4.069301538220501, -4.017951068830742, -3.515753457160138, -4.169645049134955, -4.068797896861347, -4.20017537681442, -7.0, -7.0, -3.533475481486863, -7.0, -4.093421685162236, -3.886490725172482, -3.945320840792275, -7.0, -4.151032581756442, -3.680335513414563, -4.482959291167214, -3.9379940509361124, -3.634970735172564, -7.0, -3.647302933044288, -3.869437080721956, -3.6873505695580273, -3.8178957571617955, -3.4651224941954424, -7.0, -3.0042438678517387, -3.4725370532620774, -7.0, -3.9952109288456903, -3.1588030588943528, -3.300369365845536, -7.0, -3.565272115090149, -3.239049093140191, -7.0, -3.6163179419637905, -4.10809123558122, -3.5241363765925686, -7.0, -3.770011186958184, -3.4652383057772145, -3.983812595814348, -3.4413808849165113, -3.0617037342182414, -7.0, -3.7890445634880243, -7.0, -3.8289531480657217, -3.8444771757456815, -3.7911992464988753, -7.0, -4.06126394230025, -3.560683591907453, -3.6508831472750027, -3.7824009524965296, -3.1185717564889077, -3.448551739201578, -3.608119360712597, -3.91324412938236, -7.0, -3.4218119281070436, -3.924222880518338, -2.3342990603276026, -3.749318821331103, -7.0, -2.996000608571067, -3.515221504900477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.321722674346009, -2.935809453809933, -2.8571062424631903, -7.0, -7.0, -3.301482150292958, -7.0, -3.005395031886706, -7.0, -3.405118593299161, -7.0, -3.5321976642124797, -3.0106532426610046, -3.479143247978613, -7.0, -4.188253327026504, -7.0, -3.8237349883987313, -7.0, -7.0, -3.9050399280762114, -7.0, -7.0, -3.5859117103194342, -3.7319109421168726, -7.0, -4.090716448481099, -7.0, -7.0, -7.0, -3.759066626088062, -3.760614364094956, -7.0, -7.0, -2.8819142594125116, -7.0, -2.9954596866210643, -7.0, -3.5643109099606027, -2.8654768631810366, -7.0, -7.0, -7.0, -3.5599066250361124, -3.2330595990965874, -7.0, -7.0, -3.225180008177683, -7.0, -2.9904498565727176, -2.7890980595595236, -4.248046869358661, -7.0, -3.13956426617585, -3.7259932589247224, -7.0, -3.904093133539673, -7.0, -7.0, -7.0, -3.31921019418185, -3.143873651331759, -3.090169844444793, -7.0, -3.563243701140398, -7.0, -3.6577249542051082, -2.991521413671849, -7.0, -7.0, -3.6226284261293253, -2.6666219658257964, -7.0, -7.0, -2.7111215146502694, -2.8715534774719087, -3.49045012035602, -3.1609684672648433, -3.745230984528141, -3.092281919036219, -3.396838400023691, -3.5384480517102173, -3.8067225030761813, -7.0, -7.0, -3.5296869537729165, -3.409087369447835, -7.0, -3.7947319638135193, -7.0, -7.0, -7.0, -3.475441149842973, -7.0, -4.218509247198932, -3.792706788898358, -3.042247272320338, -2.904985881099363, -7.0, -7.0, -7.0, -2.9051885225908243, -3.52329112918679, -7.0, -7.0, -3.1060775192489603, -3.0434932671585737, -3.2829294634880095, -3.1953460583484197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9232440186302764, -7.0, -3.305673745669693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1747380145272865, -3.5667909123815917, -3.695043658821294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.680452069509349, -7.0, -7.0, -7.0, -7.0, -3.6620964454179235, -7.0, -7.0, -7.0, -7.0, -3.8163075994319398, -3.5654936298688624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4026052419199146, -3.6769678142947586, -7.0, -3.6278776945799716, -3.123051817937765, -3.930031614950973, -7.0, -7.0, -3.19959521190802, -3.0616298507383837, -7.0, -3.632963168167261, -7.0, -7.0, -3.5814945422908995, -2.85517289734218, -3.3435661323861248, -7.0, -2.392696953259666, -3.096508140805399, -3.351699700405266, -7.0, -7.0, -2.5266622930104643, -7.0, -3.3171227377145382, -3.68087351479754, -3.652922887567942, -7.0, -7.0, -2.715271944117935, -7.0, -2.903524064471262, -1.9078578787236007, -3.2776092143040914, -3.146283113159587, -7.0, -3.142472282648642, -3.5964871337365443, -7.0, -3.7388598020722004, -7.0, -3.4095950193968156, -7.0, -2.9521140849069925, -3.5129510799724906, -3.1905184513367484, -2.750422676015204, -2.7631128737566057, -2.784759894664005, -2.408355617830904, -3.2013515984037575, -3.620760489994206, -3.640878778701618, -2.6365595325567286, -3.1675142490484904, -3.351603072419129, -7.0, -3.58983794314746, -7.0, -3.545430829465351, -3.0834474888264607, -3.292588312465555, -7.0, -3.0677402029262404, -7.0, -3.162564406523019, -3.881897973573011, -7.0, -3.000434077479319, -3.4197937628984563, -3.5871494982543437, -1.9990514132044512, -7.0, -7.0, -3.558188385437139, -7.0, -3.009344646383631, -7.0, -1.9180594752653435, -2.7321926510062684, -2.8536982117761744, -3.356854116560244, -2.866118484306833, -7.0, -2.868443476147031, -3.0526298252227178, -3.2361277131456423, -7.0, -7.0, -7.0, -2.289434579416023, -7.0, -3.855094951158622, -7.0, -3.2870797934494482, -3.340939602038078, -3.5770319856260313, -7.0, -1.7640632883267116, -2.5378190950732744, -3.4559862390673195, -3.6824158616773586, -2.4462954799526213, -2.928683835346075, -3.327665387050042, -3.127968207161918, -2.2297860930857993, -7.0, -3.024974818074746, -3.1721162176299447, -2.9710437918360286, -3.2620553771910674, -2.7539658658651605, -3.5805828768143675, -2.183417120397686, -2.502283337668303, -2.728361029865988, -7.0, -3.2322335211147335, -7.0, -3.7777806646709307, -3.189209489582306, -3.7864674767402824, -7.0, -7.0, -7.0, -3.220108088040055, -2.9534144930170947, -7.0, -7.0, -3.7267760949597126, -7.0, -7.0, -7.0, -3.5901728315963144, -7.0, -3.1462210888118802, -3.9388698215129865, -3.2907022432878543, -3.3092041796704077, -3.336059277866349, -7.0, -7.0, -3.300378064870703, -2.205241708157455, -7.0, -3.398981066658131, -7.0, -7.0, -2.939319531078238, -2.9677647953826947, -1.5326937275739363, -7.0, -3.2417124635841996, -3.683137131483007, -7.0, -3.383456296524753, -7.0, -2.9862490725727446, -3.278753600952829, -3.0141843975012796, -3.43380982236759, -7.0, -3.6236627073562047, -2.5332071446767435, -7.0, -7.0, -7.0, -7.0, -3.6092741724045876, -7.0, -7.0, -1.741055467084807, -7.0, -3.5719028431953865, -7.0, -3.632356046239073, -2.0310560563158897, -2.500079576528447, -1.7660464147650583, -1.8390982914222758, -2.3375500134552123, -1.8121265910619166, -7.0, -3.714078164981856, -3.670060217473134, -7.0, -2.4462954799526213, -2.538866850664468, -3.423081958297231, -7.0, -3.3100557377508917, -3.724275869600789, -3.288902429348888, -7.0, -3.33637395293205, -7.0, -2.5226856826046076, -2.3447024471171045, -3.695131297704026, -3.130655349022031, -3.6232492903979003, -3.947090464219622, -3.744605875414239, -7.0, -3.2815635951627784, -2.909489168417103, -3.3199384399803087, -7.0, -3.5746099413401873, -3.608739919068788, -7.0, -7.0, -3.14040328016663, -3.586812269443376, -7.0, -2.433693655274977, -3.8538198458567634, -3.6248233370629546, -3.95223613386127, -7.0, -7.0, -3.625621081424908, -3.366236123718293, -7.0, -7.0, -3.7368743616484226, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3012470886362113, -3.5717088318086874, -7.0, -3.1023479360588784, -2.8894597296429323, -7.0, -7.0, -7.0, -3.600755149639618, -3.1614678285730546, -2.5888317255942073, -7.0, -7.0, -7.0, -2.035301973197531, -2.9709509343454243, -1.951103557856843, -2.1333662609889323, -7.0, -3.270911639410481, -3.601643592893338, -2.728678366850914, -2.8571352559701793, -7.0, -3.738074652823766, -7.0, -7.0, -3.3059958827708047, -3.272968181699753, -3.246055196906444, -2.8152630801675933, -2.9293678292400998, -3.1061483839765227, -3.0869823477002094, -2.937116510767054, -3.589279221235967, -2.633835568434839, -2.255343462456932, -3.1760188706094925, -7.0, -3.605951157564873, -3.076002913646383, -3.3011385557150157, -2.921166050637739, -2.8739015978644615, -3.0409186507485244, -2.0429690733931802, -3.671358003443492, -3.0817792267675337, -2.7875490247240235, -2.948328310734916, -3.267914479847044, -7.0, -3.877544107715944, -7.0, -2.4669664246957717, -3.555094448578319, -3.716504163773217, -2.4070011961359845, -2.771052717714531, -3.9742352774430265, -7.0, -3.823474229170301, -2.8452531174956057, -3.7440280025510053, -2.9885589568786157, -3.574956775764507, -7.0, -7.0, -2.5205563093613064, -3.173127969938208, -3.614158709509175, -7.0, -3.7697464671794534, -7.0, -3.033745336013974, -3.6147917919564176, -3.220474206129218, -2.9377184436172636, -3.3600250891893975, -3.2710279942623233, -2.430357287504807, -3.5146228136944844, -2.7005149208160484, -3.8163929090370017, -7.0, -2.217206793928876, -3.5406321682598354, -3.3649728908307397, -7.0, -7.0, -7.0, -2.3486293266283655, -3.4955443375464483, -3.233858762564828, -2.452109391093665, -7.0, -7.0, -3.4625477288026643, -7.0, -7.0, -3.6415732531781755, -3.042181594515766, -7.0, -2.240162204345499, -7.0, -3.576226137449605, -3.785044958331544, -4.318383369999072, -7.0, -7.0, -4.739627715444244, -3.651681745998869, -4.035629827790439, -3.5465323817635763, -3.483587296968894, -3.629409599102719, -7.0, -3.6709320156880003, -4.268281477192605, -4.31293015797777, -3.537934471999746, -4.391693577036909, -3.799797008054908, -3.7631583477788877, -4.147738141119988, -3.5987540405401703, -7.0, -4.013500808559337, -7.0, -3.970067796549137, -3.727730982208553, -7.0, -4.086502198970369, -7.0, -7.0, -3.5670679035778576, -7.0, -4.1042480469904445, -7.0, -4.27618597407067, -3.718667735316211, -7.0, -7.0, -4.19942604159399, -7.0, -3.4712036694702526, -3.6516656039229356, -3.6997076781100517, -3.0205066629195114, -1.7688546896541124, -7.0, -3.9139550634016746, -3.7444494574467986, -3.303794175527941, -3.272835795025385, -7.0, -4.490337794344103, -3.472633052674273, -3.5631249603380444, -7.0, -3.5833829982144385, -3.519653016141642, -7.0, -3.9786825651569444, -4.429849137858492, -7.0, -7.0, -3.036723311871272, -3.330820864782268, -3.87661767349757, -7.0, -3.912647106218317, -7.0, -2.90936065045019, -7.0, -3.3935971367804583, -3.881726935376418, -7.0, -7.0, -4.385320224200911, -4.181214548490415, -3.6294979442363786, -3.562827966219992, -3.214203409601812, -7.0, -3.614770704069749, -2.907372966708177, -3.6398847419163043, -3.2431287160911935, -3.280912700239786, -3.839854984601885, -4.011439716547123, -7.0, -3.556603989486027, -3.340582908247528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9012855101952053, -3.7460890430562004, -3.4234097277330933, -7.0, -3.716420733846555, -3.70399599724626, -3.7582304084577496, -7.0, -7.0, -3.647334060324388, -7.0, -3.6432354749403233, -3.8698768132667665, -7.0, -7.0, -3.0172420845476458, -7.0, -3.8985057855343586, -7.0, -7.0, -2.925593339959713, -7.0, -7.0, -7.0, -3.822560336942692, -7.0, -4.132739838260885, -7.0, -7.0, -7.0, -2.675959499234379, -4.111611959923377, -7.0, -7.0, -3.0765312192538117, -7.0, -3.792951708250132, -7.0, -3.6918768225593315, -4.023458237643675, -7.0, -7.0, -7.0, -3.6885977750811696, -3.908431398966006, -7.0, -7.0, -3.6639834546082666, -7.0, -3.71357453777207, -3.0711788047067543, -7.0, -7.0, -3.131361989115943, -3.817763632280368, -7.0, -3.936739878637037, -7.0, -7.0, -7.0, -7.0, -3.105082752277355, -3.3136563466180315, -7.0, -2.786751422145561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2054750367408906, -7.0, -7.0, -3.1324883979895946, -2.7582493530140964, -3.5704845630444004, -7.0, -3.5258589244021965, -7.0, -7.0, -7.0, -4.1482940974347455, -7.0, -7.0, -7.0, -7.0, -7.0, -4.418168662067866, -7.0, -3.6478717653062325, -7.0, -3.7245450253450594, -3.733277533932582, -7.0, -4.284284064190723, -7.0, -2.938162192858692, -7.0, -3.4044060509212692, -7.0, -3.5851786285035163, -3.597969275225808, -7.0, -7.0, -3.4051755462179893, -3.660106221723244, -3.6709412807357755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9837164739137494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.224468315012689, -7.0, -7.0, -4.54161668151239, -7.0, -7.0, -7.0, -7.0, -3.766784515497859, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.2042502514611515, -7.0, -7.0, -7.0, -3.8903092168999485, -4.207876621591972, -7.0, -2.4292137870854282, -7.0, -7.0, -7.0, -4.335618349377605, -7.0, -7.0, -7.0, -4.27065438456062, -7.0, -7.0, -7.0, -3.2844307338445193, -7.0, -7.0, -4.864985460659794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2957492612474155, -7.0, -2.3832167518513314, -7.0, -2.0457140589408676, -3.324385356490427, -7.0, -3.000434077479319, -7.0, -7.0, -7.0, -3.953308577080214, -7.0, -3.8958643512472992, -3.782759192623997, -7.0, -7.0, -7.0, -7.0, -7.0, -2.307496037913213, -7.0, -7.0, -7.0, -4.147227888532488, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6163704722912695, -7.0, -7.0, -5.124914849754901, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.921166050637739, -7.0, -4.752875253901097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3527611917238307, -3.565611724902059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.348694190265541, -7.0, -7.0, -4.375316039326965, -7.0, -7.0, -7.0, -7.0, -3.779921008715502, -7.0, -7.0, -2.698535492562001, -3.5246557123577773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1227618173540255, -4.294254538689071, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9951743347993838, -3.449478399187365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.022675761953727, -7.0, -4.149465450995452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.937718443617264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.182699903336043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.338136094760166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.398900184921813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5616975326539935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0687052196919415, -7.0, -7.0, -7.0, -2.865991800126275, -7.0, -7.0, -3.2523675144598987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8221680793680175, -7.0, -2.575187844927661, -2.999130541287371, -3.5631249603380444, -7.0, -5.411805672111888, -7.0, -7.0, -2.8680563618230415, -7.0, -7.0, -7.0, -2.6913025633834833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.242774910613106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1899579507445543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5319895514125506, -2.952792443044092, -7.0, -7.0, -7.0, -7.0, -3.382242240651941, -7.0, -7.0, -3.400537989391946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.109240968588203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1565491513317814, -7.0, -3.582177037688409, -7.0, -3.327517862760602, -2.2671717284030137, -7.0, -7.0, -7.0, -7.0, -3.4811558708280352, -7.0, -7.0, -7.0, -3.328583449714202, -7.0, -3.860278099752235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.73917663191073, -7.0, -7.0, -7.0, -7.0, -5.273146012768928, -7.0, -7.0, -3.3841324362612313, -3.4614985267830187, -7.0, -7.0, -1.9666109866819343, -7.0, -2.4463448147796543, -3.4055171069763763, -3.2860071220794747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8017329080485833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278136006715478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.394889257167419, -7.0, -5.065404169016913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.961848059018324, -3.7756559500737605, -7.0, -4.434281408136301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5136658731638, -5.487695386285646, -5.706273875527286, -7.0, -3.3702354372831773, -7.0, -4.954633198689235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.429316152131662, -7.0, -7.0, -4.209193195719529, -7.0, -4.897236600496572, -7.0, -2.9439888750737717, -4.039523174872934, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304974961155454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.018284308426531, -7.0, -7.0, -7.0, -4.338735308799518, -7.0, -3.2607866686549762, -7.0, -7.0, -7.0, -4.193847819973557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.022153327172555, -7.0, -7.0, -7.0, -7.0, -4.594370448312677, -5.093890749991982, -7.0, -7.0, -7.0, -3.9273703630390235, -7.0, -3.4350476413399647, -7.0, -3.1565491513317814, -7.0, -7.0, -7.0, -3.0455185628844927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188365926063148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6478170475939384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.292477593667784, -7.0, -7.0, -7.0, -3.7798849631926443, -4.628623896431819, -3.5972562829251418, -7.0, -7.0, -7.0, -2.60439222660167, -3.0870712059065353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0362295440862943, -4.3918169236132485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2538224387080734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.500648063371912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.004751155591001, -7.0, -7.0, -2.568201724066995, -2.6570558528571038, -7.0, -2.754093393242939, -7.0, -7.0, -4.728307779546336, -2.8916170935913543, -7.0, -7.0, -7.0, -3.9184497424011577, -7.0, -7.0, -7.0, -7.0, -7.0, -4.344333315681277, -7.0, -7.0, -7.0, -4.17424360949013, -7.0, -7.0, -7.0, -7.0, -3.2211533219547053, -7.0, -4.566537657118045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4085791254086675, -7.0, -3.518755147594115, -7.0, -3.0674428427763805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3087777736647213, -3.4325577715496496, -7.0, -3.2200557602513413, -3.511950170375499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.589505858136387, -7.0, -7.0, -7.0, -7.0, -3.055378331375, -7.0, -7.0, -3.4727564493172123, -3.2998389155298993, -7.0, -7.0, -7.0, -7.0, -3.4150290231817015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.768587073814598, -7.0, -3.730176424163481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.556151677886138, -7.0, -7.0, -7.0, -3.9863237770507656, -7.0, -7.0, -3.247236549506764, -3.3568859411659737, -3.7811088357294667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1565491513317814, -7.0, -3.9114239653762946, -7.0, -7.0, -7.0, -4.694153121987731, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305781151254982, -7.0, -7.0, -2.8698182079793284, -4.373187949912719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6855327493999135, -3.4073909044707316, -3.111262513659065, -3.8950355974523228, -7.0, -2.9777236052888476, -7.0, -7.0, -3.8441042306975133, -7.0, -7.0, -7.0, -3.7670444942436667, -7.0, -7.0, -7.0, -2.401154272285065, -7.0, -3.2533380053261065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1305083703267504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9372670722114127, -7.0, -4.286770736714056, -7.0, -3.2656038765850357, -3.8915124654601096, -7.0, -7.0, -3.615634468877416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3568859411659737, -7.0, -2.911601445755513, -7.0, -3.4872326745725313, -3.3529539117100877, -2.2710930605031194, -7.0, -3.4824090401601135, -7.0, -7.0, -7.0, -3.281033367247727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3616522999739376, -3.568495067193246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.140539466972342, -4.758950561884583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2946866242794433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9439592293874295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.334800271940003, -7.0, -7.0, -7.0, -7.0, -4.320997416794221, -7.0, -3.5373278757870126, -7.0, -4.41230091277274, -7.0, -7.0, -7.0, -7.0, -7.0, -3.496145181388866, -7.0, -7.0, -7.0, -2.808210972924222, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.132787823950332, -3.305190091553366, -7.0, -3.814757969195035, -7.0, -7.0, -3.616580530085886, -7.0, -7.0, -3.5399538416563967, -3.8046845149069406, -3.342620042553348, -7.0, -3.4099331233312946, -4.874331679579926, -3.584670384464349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4205333226934997, -7.0, -7.0, -7.0, -7.0, -3.858555242671831, -4.391993072259713, -4.574411543157535, -7.0, -7.0, -4.417691691081776, -7.0, -7.0, -7.0, -7.0, -7.0, -3.501470072100412, -3.441459468917794, -3.3749315539781883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.029613716996135, -7.0, -7.0, -4.598111733328968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.593452219346109, -4.036640300004483, -7.0, -7.0, -7.0, -7.0, -4.998869363882344, -4.5841841726968395, -7.0, -7.0, -4.923906874020851, -7.0, -7.0, -7.0, -7.0, -4.2799405728395525, -7.0, -4.113441953965322, -7.0, -7.0, -4.192901826109565, -7.0, -4.776134343165844, -7.0, -4.679536910832304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.084544737611001, -7.0, -7.0, -4.766003644178281, -7.0, -3.6795187436957892, -7.0, -3.398981066658131, -4.634051331848015, -4.003718963823115, -3.226213120724107, -7.0, -4.185726258953287, -4.381800742504703, -7.0, -7.0, -3.53668467262093, -7.0, -7.0, -4.377670439334323, -7.0, -7.0, -4.214552455234245, -4.488289779428209, -5.104583553583756, -7.0, -3.710286647702891, -7.0, -4.4796040990439066, -7.0, -4.9286842618460565, -7.0, -7.0, -7.0, -7.0, -4.4363535037706585, -7.0, -7.0, -3.743588150159904, -3.821971817642043, -4.422502293717657, -7.0, -7.0, -4.041693625905536, -4.957195302014875, -7.0, -5.047013822754954, -7.0, -3.6191977157929474, -4.610724025229824, -4.300986564044174, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9955474494751373, -7.0, -3.7137424784090824, -7.0, -7.0, -4.34738856792903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.022387125686438, -7.0, -7.0, -4.599195076346368, -4.618288723365895, -4.312529954073747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2725377773752373, -3.478470295686062, -7.0, -7.0, -7.0, -7.0, -3.7035492982382308, -7.0, -7.0, -3.19506899646859, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8525714786244296, -7.0, -7.0, -3.9097699147327694, -7.0, -3.856356573063003, -7.0, -3.319314304090512, -7.0, -7.0, -3.8634418286137087, -7.0, -7.0, -7.0, -7.0, -3.8191489428071344, -7.0, -7.0, -3.2079707950778773, -3.632902494152879, -7.0, -7.0, -3.3563233628438742, -7.0, -7.0, -7.0, -7.0, -3.6848453616444123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055442043614812, -7.0, -7.0, -4.549530474736012, -7.0, -3.4824447919182653, -7.0, -7.0, -7.0, -7.0, -3.0859146287065933, -7.0, -7.0, -7.0, -7.0, -4.09841873415025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7805333253164046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.200782121411112, -7.0, -7.0, -3.557025722386383, -7.0, -3.4470028984661623, -7.0, -7.0, -7.0, -7.0, -3.677333151419902, -7.0, -7.0, -7.0, -3.8228434139044927, -7.0, -4.293583513496117, -4.294157480769691, -3.598702982683435, -2.7515703673593683, -2.9918797685613647, -4.298001111407518, -3.400732212870903, -2.3524341039128713, -3.387247411357324, -7.0, -3.9967523936992766, -2.4645947374430204, -2.4168746316798377, -3.107655062979815, -3.459844642388208, -4.2930087866585644, -7.0, -4.294752721910178, -2.215283195057249, -3.0316023385073954, -4.292322539914916, -2.752999084377616, -2.175000237996708, -3.610383318582761, -3.698383310678066, -3.6912362538205015, -2.9473928721027094, -3.1995864208954536, -7.0, -2.769541950043048, -3.19506899646859, -3.995086496505733, -3.995393852839795, -3.7002492870420225, -2.9109731122496454, -3.344479604166383, -2.532460373916233, -3.817036226050029, -3.2907628862373217, -3.4560622244549513, -2.7399013690520677, -3.8204860776625775, -3.4000628548971994, -2.7845357847300596, -3.2323607123535703, -1.6653756948311083, -3.601582004456866, -3.7071015665766813, -3.748381865207099, -1.9413817860395093, -3.7196212723403606, -1.7869975967331273, -2.584489928729576, -1.54629684561895, -2.611157764534064, -4.302633919813779, -3.050895086469539, -2.7277990515277923, -3.4044060509212692, -4.008429826797229, -7.0, -7.0, -3.0038911662369103, -1.353028995703768, -2.070191456658844, -3.59802407233419, -4.295347148333618, -1.4588888292013262, -3.992884745367121, -2.51382110743545, -2.4090036338875827, -3.8192367500217284, -3.4953857346114607, -2.625515371611312, -7.0, -2.6971482117148518, -7.0, -3.998520882835038, -0.7181772172401191, -2.6271199599275414, -2.9196227989342525, -7.0, -2.8096785204031822, -3.264173628357079, -3.0260855683142416, -2.9576455913890936, -3.4199351066265016, -7.0, -1.9684173033680894, -2.774459337692739, -1.8509877415144513, -3.4500070327955514, -7.0, -3.4946713037544734, -2.789601447654983, -2.7774671001061875, -2.63663926462289, -3.343539879923933, -2.5248352370562896, -3.704986543890056, -4.293892667053009, -4.293539330731757, -1.9059280135255012, -4.294752721910178, -2.93584972965916, -3.2365582535607142, -1.5840240812757094, -1.9106058289339427, -3.8271322421466074, -3.8222988712623667, -3.5340895947605686, -3.53704212531207, -2.4651516539268714, -3.706611115387456, -7.0, -2.797328653119835, -2.7317805659591463, -2.939001266294933, -3.6100210246641455, -2.9411035246672013, -2.421414071355593, -4.304145712763788, -2.8033571744485934, -4.004041787358312, -3.2383007574516087, -2.698121772656406, -2.894474304435835, -3.220108088040055, -3.9951743347993838, -4.305781151254982, -7.0, -2.645422269349092, -7.0, -3.594988881285679, -3.0719740091032928, -7.0, -4.292189592623499, -4.293804359919337, -3.5180750368775167, -3.9925093350677754, -2.275494751283599, -2.57548982690978, -2.4213035352156096, -2.835925995815466, -4.30612467073653, -3.6497728273006773, -7.0, -3.997648454896206, -3.711807229041191, -4.008600171761918, -2.598706349320375, -7.0, -3.822625678774141, -7.0, -2.37501583611072, -4.294157480769691, -4.292721137774543, -3.625888383862849, -2.691397273771363, -3.694363857175814, -3.274913217187631, -3.319896858814888, -3.3823172807353936, -2.6893088591236203, -3.021891873919109, -2.2706788361447066, -2.842276319332164, -2.796747738875302, -2.3030902572495062, -3.824060717418653, -7.0, -7.0, -3.5289167002776547, -3.823061039927238, -3.821666345224573, -3.9933039379194746, -2.653671089068736, -3.45484486000851, -3.2209490175139024, -7.0, -2.4615414010100047, -1.979788878129233, -3.7064190488337676, -2.571435856575893, -2.257964125857119, -3.274703524516905, -2.990802855439509, -3.1722901065317064, -2.7782959910888336, -3.711174300366762, -3.1142981595540196, -2.892780765304357, -4.001474096691733, -3.5321535564637863, -7.0, -2.522785672204601, -2.652308075867826, -3.122965927916578, -7.0, -2.1401483460126145, -4.293384655649437, -2.343900712249606, -3.04796676354869, -2.664140335902428, -3.0440386303689775, -3.4577954183422484, -2.328875757782688, -2.657503390420801, -7.0, -2.183493544341022, -3.0656004601239433, -2.131153997674171, -7.0, -7.0, -3.6979699765543392, -3.516755660221549, -3.6952408214435173, -3.699859396707893, -4.29578694025161, -3.4586378490256493, -2.7457278780906513, -2.547149643984906, -2.87081608186603, -2.851987519737212, -7.0, -3.0962145853464054, -2.8252746184329043, -4.3127695570523, -3.9927964427221965, -3.9953719060281623, -3.1247486911970017, -3.3658829965343102, -3.620739689951964, -7.0, -7.0, -7.0, -3.696705780933917, -3.991801798844644, -3.8188195075475364, -2.828930025405288, -2.154039567491323, -3.593906044972859, -3.5155868673998802, -7.0, -7.0, -3.3061032087275857, -3.4016589724951523, -7.0, -3.22696488563729, -3.2042104512495033, -3.3694632481783837, -2.845080805764293, -2.589238558862275, -3.6230838133595475, -7.0, -7.0, -0.274868821090727, -2.911772031594504, -1.7976661590155651, -3.3524826673431667, -2.7042554748129772, -3.4638503462953234, -3.8217099972983766, -3.697665162647674, -2.8489247133446307, -2.789563086219014, -1.3240510899823537, -2.4928140951397983, -3.094204843455665, -1.9722967085221035, -2.924839027205617, -3.341676281589567, -3.1382816409536467, -2.7089739654522504, -2.402621228759297, -7.0, -3.3961993470957363, -3.013490283397704, -3.696683952154445, -2.887950539931525, -4.293274139710753, -2.8378327212541783, -2.5951811732213312, -4.012584163914151, -3.0394934351259337, -2.7370879707315368, -2.467238020787567, -2.022254851791834, -7.0, -2.844228581301628, -3.6934851184837787, -3.3075816047506295, -2.6369985529614173, -2.9810769276095446, -2.750462108781149, -2.6859558157861794, -2.7391938443032537, -2.7674650825294926, -2.6983905586437853, -2.497498788166523, -2.9860317915675694, -2.2874394473246853, -4.2934951434720245, -7.0, -4.292189592623499, -2.9639626289103638, -2.3350358776650255, -3.3466788990302154, -3.225352364358893, -2.768478103278721, -3.520767292621454, -2.865042678343799, -3.259572161447169, -2.3230710837961492, -3.828960490938315, -2.948710558798255, -2.704225144296277, -3.3515815966133684, -3.0505802351210796, -2.487509434506823, -3.0006263590418154, -7.0, -2.521602560625828, -2.855297239874421, -2.4584381274852687, -7.0, -2.910624404889201, -3.8206392563794713, -2.809713590178541, -2.6687654392008207, -2.8560354841072253, -2.7473913623208097, -7.0, -7.0, -2.9932357714670954, -3.521007252408604, -4.004106323279658, -3.4036566210857684, -3.0716242985397515, -3.823517699915736, -1.7812460927511966, -4.292521884574141, -4.293738117783524, -3.1990283740437233, -3.7177814197394, -7.0, -4.36945706512637, -3.849953507030731, -3.007493765990561, -3.649058873947145, -2.8090431919338577, -2.374739137539774, -3.6793067375983877, -4.063783560597355, -4.117702061209315, -3.2859342110607686, -3.5970586317707034, -2.568544573112223, -3.9088387443656756, -3.4994579639204475, -2.8291767675714845, -3.9992175655301034, -3.9000173671380716, -4.360820535237942, -3.807901158075168, -3.977609302226758, -2.939928231349194, -2.5881623506409634, -4.307314152387912, -3.5555377913202615, -3.8392014186667978, -7.0, -2.6738533037533747, -3.412072669033916, -3.279979648597117, -3.7015679850559273, -4.064233296034753, -7.0, -3.8935259698929654, -3.8248739727439425, -3.4216222048724814, -3.49606119726865, -2.237638431057246, -3.8320403031849812, -3.1957613200360613, -2.1480678125148733, -2.9234059419317693, -2.5532760461370994, -2.8989186743447117, -3.3768607169371743, -2.3692685542924994, -2.4642696995224282, -3.306775830866937, -3.1513698502474603, -2.3458438852429713, -1.9396384060736354, -3.3636746441274314, -2.188267686917002, -2.8426766923530917, -3.8191489428071344, -3.3634239329171765, -2.732271578226466, -7.0, -7.0, -2.358757360512426, -2.3012246728032446, -3.7585836296443214, -3.599992177584098, -2.5402750553331366, -3.69877452783365, -2.133112383842677, -3.9242965196279602, -3.712543290572643, -2.801669663167534, -3.774431801598087, -7.0, -2.7830802719514693, -2.477612987408589, -2.5086063508026295, -3.323889335413958, -2.245179416380027, -3.0647812072898275, -2.250571908204015, -2.239942415275768, -3.352096723073173, -1.923718753317517, -2.381885165105794, -3.1535099893008374, -2.72383261448073, -7.0, -2.830984707712957, -2.3559012253026625, -2.818270638563707, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3857541362954808, -1.7400274402031979, -1.202831589142154, -3.9967961469213473, -2.8919089670894906, -1.8085012734625698, -2.9539005690195412, -2.2315276052084614, -2.819982395429594, -2.0017372877052377, -3.9942511454528664, -1.70009092165823, -1.8153973017930358, -2.7846821175426015, -3.63002085111341, -2.8039923566354417, -2.601732098158817, -2.145388810849714, -7.0, -4.002360478449408, -2.44872368508559, -7.0, -2.8583653018690365, -2.313825471320152, -1.770374283682813, -7.0, -2.1165090213190982, -7.0, -3.6949998327470954, -2.837833439531023, -1.866267135039807, -2.5515042136251402, -4.2930751401228635, -3.018621255078412, -1.3828369208823523, -4.008451123572122, -1.6594079752165853, -7.0, -1.9959119441113262, -1.196619752663687, -7.0, -3.5191057562064487, -3.032779879191245, -1.923637882191193, -2.564920867827693, -3.2234094022589295, -2.6285140388898274, -2.106629778521703, -3.304598226343637, -1.933466196889718, -1.4298799326440386, -2.9284583038295486, -7.0, -1.5977354300511866, -1.627499437712944, -4.326683976381879, -1.9527335904784822, -4.001971557991861, -7.0, -3.1095946155190184, -2.0541159367668493, -1.3575070081612544, -1.8246994918709745, -2.176395920226999, -2.693266203420536, -7.0, -4.419063124492548, -2.980025026216241, -2.5166397339784603, -3.6987310766598367, -1.763133428232782, -1.2009914311738055, -3.2011238972073794, -3.447778009294621, -1.2204912496352502, -1.1993577444736312, -1.8994239108121036, -2.53058589134187, -1.481442628502305, -2.1743625435790905, -2.1929282505859278, -2.478630145582756, -1.583612163337186, -2.693323823347178, -2.992658696801893, -3.270700005235491, -3.1803244198726213, -3.6908603082720437, -3.2257433592051816, -3.4403973832463586, -2.1348187022405427, -2.616663732437289, -1.7357602354022215, -2.7359467527259103, -2.5162760703791833, -2.210364597401199, -2.8307719153047, -1.6490830949843571, -4.002554808148482, -1.9277901740740364, -7.0, -1.677365372298483, -1.582612259836227, -3.477627636283374, -3.8164622587764545, -2.0329181739608138, -2.125728950919596, -1.4547709833513456, -2.556690090692079, -4.300921408469541, -7.0, -3.5943925503754266, -4.296116492169714, -4.294906910605192, -3.5189304872813425, -2.2853339462641507, -3.7176913020483573, -2.5040175279209977, -2.6568601414481825, -3.8272399995056454, -3.2180319499420165, -3.154076015574228, -2.8584082821730847, -3.700919945420287, -2.1590547896953014, -2.7610921743529877, -2.129824800037075, -2.5500360674635556, -4.073754998123192, -3.4019387667543897, -3.992597696102038, -2.8618041111314847, -3.0719902426915837, -7.0, -2.1340345939992327, -2.9075188461066293, -2.799232824169164, -2.7388192156993934, -3.4947904572094903, -2.235427436444969, -3.4504910489855627, -3.393684859748368, -2.988072261480011, -3.692384188868911, -2.252704839216663, -2.584016950902841, -4.007961033336183, -7.0, -7.0, -7.0, -7.0, -3.4345689040341987, -2.982874001327729, -3.600755149639618, -2.4172343738083697, -3.4616485680634552, -3.5020172148271476, -3.462277641003384, -7.0, -7.0, -3.4604467838807205, -2.6186803992389205, -2.54176757633544, -2.204489962359036, -3.508798965403905, -7.0, -7.0, -7.0, -2.7780969601801973, -3.6975344625969604, -7.0, -2.72326617549437, -2.7259511122393145, -3.535167485114944, -3.478999131673357, -7.0, -2.29104577475738, -2.5591881890047756, -3.1879435290625273, -3.387372601202775, -3.233884108765886, -2.9711211579147765, -7.0, -3.1899112096928057, -2.850748314036963, -7.0, -7.0, -7.0, -2.8108083781659583, -7.0, -3.3998806850379464, -2.9818186071706636, -3.497758718287268, -1.6984587688656787, -3.248463717551032, -2.438937701095528, -7.0, -7.0, -7.0, -3.253580289562183, -7.0, -2.6831151336945074, -2.7469799748172323, -1.6075436366575189, -2.813272978284428, -7.0, -2.7398359526414344, -2.4189115616948453, -3.2234959409623944, -3.2337573629655108, -7.0, -3.149065080207621, -2.0422087727429976, -3.7749546890801384, -3.6388884247050757, -7.0, -7.0, -2.333538868819963, -7.0, -7.0, -2.9122884979739743, -7.0, -3.3932241163612975, -2.836995242610448, -7.0, -3.0532705666813786, -7.0, -7.0, -2.7586002350599466, -1.884125673019205, -3.1794081515138357, -7.0, -3.099507993727965, -7.0, -2.426185825244511, -2.981441058262331, -2.377541937168901, -7.0, -2.773791504712906, -3.1545000516787205, -2.4023301761316658, -7.0, -7.0, -3.3900514964589874, -3.606918525948291, -2.969602264848539, -3.00610933218244, -7.0, -3.5151052041667894, -3.521007252408604, -7.0, -7.0, -3.2884728005997825, -7.0, -1.916788812406723, -2.187873089603788, -1.9799015480167361, -2.025542823949734, -3.5033820634737327, -3.4718781993072905, -7.0, -7.0, -2.975546686034573, -7.0, -7.0, -3.1680061445387286, -2.9147208373605693, -2.912089143147475, -7.0, -3.3311741373868458, -3.2938558745960953, -3.2008504980910777, -7.0, -3.2069607291557105, -3.7025985345511043, -2.853211334503317, -2.7988232242204005, -2.9534144930170947, -3.449478399187365, -7.0, -2.645422269349092, -7.0, -7.0, -3.4344092075875, -3.203491837370007, -7.0, -7.0, -7.0, -7.0, -7.0, -3.811273307711949, -3.1824717176053743, -2.3333677163830293, -3.248218561190075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.346548558548474, -7.0, -7.0, -2.8169038393756605, -2.966153470269118, -7.0, -7.0, -3.3188977146274867, -3.5743785644130823, -7.0, -2.1728363601227105, -7.0, -3.677150521273433, -2.819919785398216, -3.3121773564397787, -3.388855763178122, -3.119695681195928, -7.0, -3.0694640562347537, -3.483587296968894, -7.0, -7.0, -2.674992288098586, -7.0, -7.0, -7.0, -3.1810673688249955, -7.0, -4.3290315750108395, -7.0, -3.176322821034989, -2.9485905995386754, -7.0, -3.5449976797003977, -3.1831986420297387, -3.575187844927661, -3.3629534589442858, -7.0, -3.0110415256389502, -3.5575072019056577, -3.1113745462875477, -2.9689496809813427, -7.0, -3.3604040547299387, -7.0, -2.9689496809813427, -3.149013723915726, -3.7823651122256696, -3.157607853361668, -2.71720804477317, -7.0, -3.202597285692431, -3.1997551772534747, -2.986995539724382, -7.0, -2.7957410208692437, -2.810848340115792, -2.8727388274726686, -7.0, -2.1586451438995016, -7.0, -3.495127881242933, -7.0, -7.0, -7.0, -7.0, -2.757547853469244, -3.4886916983169405, -7.0, -3.1998922435263193, -2.975431808509263, -2.418589476122558, -2.896553773371796, -4.353101326657493, -7.0, -3.180412632838324, -3.1976939750839235, -7.0, -7.0, -3.450864692379766, -2.737788791709675, -2.1759798872171676, -7.0, -7.0, -7.0, -2.9734357546986665, -7.0, -7.0, -7.0, -2.8229304774003796, -3.65241074209177, -3.4265112613645754, -3.4331295175804857, -7.0, -7.0, -7.0, -3.507855871695831, -7.0, -3.517591730711908, -3.8492350913147226, -3.615107987443194, -2.19786346826144, -2.7386814836620155, -7.0, -3.4423229557455746, -7.0, -2.896735218447365, -2.3514708097996033, -2.2603966616104936, -7.0, -3.5533408311575485, -3.5332635167787148, -3.4679039465228003, -2.9965116721541785, -2.664858851706402, -3.5882156652289985, -2.49735205752346, -2.265466419871781, -3.0581886920930996, -3.1050557829687464, -7.0, -7.0, -3.26528962586083, -3.7091851295502454, -2.6123422761205295, -7.0, -2.8695250628572273, -3.5685537120494426, -7.0, -3.5961570809161723, -7.0, -2.2807366842245287, -3.0757901954968463, -2.173429094519748, -3.696880371682762, -3.2843179154306097, -3.5706407429409537, -2.887660571842961, -7.0, -3.2919538132661614, -7.0, -3.525821952156663, -2.74350976472843, -3.139249217571607, -3.273734128506228, -2.6201360549737576, -3.2226124360573976, -7.0, -3.2701351427224816, -1.5708246487712936, -4.089425292927653, -1.862999913128008, -3.429752280002408, -7.0, -7.0, -3.4222614508136027, -1.902741855124081, -7.0, -3.5075860397630105, -2.4007651427429604, -3.1680553034591394, -2.2351242640194617, -2.881527305640932, -3.1607085722924295, -2.911956189072687, -2.943247125137862, -2.423109281867148, -7.0, -3.6941428753094128, -2.5719547470387742, -3.9127134826695467, -7.0, -3.080781049287244, -3.8816739813278636, -2.6571089938154944, -7.0, -3.2342641243787895, -7.0, -3.2773035345575963, -3.141763230275788, -2.832915147969814, -3.160868526065023, -7.0, -7.0, -2.3096301674258988, -7.0, -3.207365037469072, -3.52022143588196, -2.4222614508136027, -7.0, -2.355768977002329, -3.422589839851482, -3.431524584187451, -3.8410047143535224, -7.0, -7.0, -7.0, -4.731096984750186, -3.6340908348262704, -7.0, -3.4684211837380565, -3.121442988413379, -3.76767522402796, -7.0, -7.0, -4.037983949447127, -4.530259478972904, -3.7607777873960946, -7.0, -4.216561735047927, -4.235013047748127, -7.0, -7.0, -7.0, -4.4376448822061905, -7.0, -3.559379888183303, -3.8739306272740444, -7.0, -3.979966989370279, -4.244771761495295, -7.0, -3.27132050661406, -4.220970587520289, -3.696985092452125, -7.0, -7.0, -7.0, -7.0, -7.0, -3.281033367247727, -7.0, -2.754680207530774, -3.2322335211147335, -3.1458354531056396, -3.642786833027063, -7.0, -3.528723923260994, -3.330118485571775, -2.747217536139993, -3.2674937710653538, -7.0, -3.7281101841003403, -3.9978958207981363, -2.560855262616385, -3.194635733117443, -7.0, -2.8904063096687422, -2.90515782541163, -7.0, -2.884589415168878, -7.0, -7.0, -7.0, -3.6032483309255765, -3.338413000249206, -4.708318051103554, -7.0, -3.550717423469283, -7.0, -4.187934137794767, -7.0, -4.631005532907514, -3.4520319036568123, -3.971623701765836, -3.4372747974101237, -7.0, -4.466719371681599, -3.8952774807183097, -7.0, -2.837050380417555, -3.634124451552187, -3.4628897771447584, -3.476159478508521, -7.0, -3.263838883574003, -4.364485330317109, -3.767007363949804, -4.50676394702445, -7.0, -3.3106933123433606, -3.4848893472645464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.94346703500111, -2.9539528832319233, -2.1159381384569778, -3.460747541844197, -3.616685520895512, -2.8148772297450946, -3.668665415454492, -3.3261309567107946, -3.162862993321926, -2.7775383515326832, -7.0, -2.979019176102845, -2.498655095245119, -7.0, -7.0, -4.193402903062418, -3.3344537511509307, -3.1360860973840974, -7.0, -7.0, -3.9148718175400505, -7.0, -2.738516308715399, -2.650199556821398, -2.630662523107402, -7.0, -3.0965276656064398, -7.0, -7.0, -4.62029224791984, -3.639675361483828, -3.8490506905695123, -7.0, -3.3972445810103866, -1.9367507024376451, -7.0, -2.4528083053649254, -7.0, -3.2843179154306097, -2.4121877253877053, -7.0, -7.0, -7.0, -3.581380688709987, -3.0011772023979564, -7.0, -7.0, -2.5474054596674893, -3.20615098159626, -2.3542151847499793, -2.7126131063474843, -7.0, -7.0, -2.1708790495172456, -2.6249164497653634, -7.0, -3.209649035368229, -7.0, -7.0, -2.7017406324372124, -2.7346998423702855, -2.5974408315902817, -3.0090257420869104, -7.0, -3.10698371567979, -7.0, -7.0, -7.0, -3.9114772171061025, -7.0, -2.639486489268586, -2.532703432370127, -7.0, -7.0, -2.525977214441068, -2.2677777526259044, -2.598174728741539, -2.7520484478194387, -2.3650197428165347, -3.409510452269316, -3.0389606070796815, -3.5609820555862357, -2.750810139591715, -7.0, -3.570776368794748, -7.0, -7.0, -7.0, -4.400088784732035, -7.0, -3.050895086469539, -3.704407927386841, -2.9226289132446137, -7.0, -3.4449031627954616, -3.293943784029869, -3.054166019538618, -2.657142807403776, -7.0, -2.6470568007550126, -7.0, -2.563942294779078, -2.113750575290176, -3.8497878242376857, -3.4310419453358856, -3.1264561134318045, -3.544564097496043, -2.8630816077402663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2333007715634716, -7.0, -3.3250022521650378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.587935348636356, -3.3321786712443293, -3.9036867317365025, -7.0, -7.0, -7.0, -3.4504800546060603, -7.0, -7.0, -3.486430478854434, -7.0, -3.5120169694961265, -7.0, -7.0, -3.2016701796465816, -7.0, -7.0, -3.651278013998144, -7.0, -3.3509583358370834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.571512015723816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.140300588028295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8561244442423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.229530823874927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070831806956914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.35281516194099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2626883443016963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.854888759368555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.234547652694329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.706114983237485, -7.0, -7.0, -7.0, -4.953735536752166, -7.0, -5.404744796836268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.463489848289935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9177155165594932, -7.0, -3.404320467221731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9688563746146923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.3466150370819205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6267200806648345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.524577851572574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.574031267727719, -3.1687920203141817, -2.5903215880567183, -7.0, -7.0, -4.601913392200325, -7.0, -7.0, -7.0, -7.0, -3.9042014431560217, -2.417471693203293, -7.0, -7.0, -7.0, -7.0, -4.333689041703905, -7.0, -7.0, -7.0, -4.156585259499548, -7.0, -7.0, -7.0, -3.262213705476417, -7.0, -2.7573960287930244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4470028984661623, -7.0, -7.0, -7.0, -4.663449633913287, -7.0, -7.0, -3.278753600952829, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.730879133522473, -7.0, -2.5077434620971957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.084576277934331, -7.0, -4.446801142847091, -7.0, -7.0, -2.8783302654068548, -7.0, -7.0, -3.6061663146076204, -7.0, -7.0, -4.3464181789371965, -7.0, -7.0, -7.0, -7.0, -3.384174138807033, -7.0, -7.0, -7.0, -7.0, -2.8756399370041685, -3.4565178578052627, -7.0, -3.1970047280230456, -7.0, -4.530770695354899, -7.0, -4.009110806132213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.183032459428792, -7.0, -3.0281644194244697, -7.0, -2.522226814487059, -3.2591710288966214, -7.0, -7.0, -7.0, -7.0, -4.07928980609866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752524757465067, -7.0, -7.0, -7.0, -4.691797355026257, -2.7238659644435037, -3.403977963669355, -7.0, -7.0, -2.8698182079793284, -3.594988881285679, -3.4344092075875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8395785959610693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.326949994165999, -7.0, -7.0, -7.0, -7.0, -5.150935952063992, -7.0, -2.2671717284030137, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6084190513172856, -7.0, -7.0, -7.0, -7.0, -3.6452257115354163, -7.0, -7.0, -3.5553363279952666, -3.0958664534785427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2352758766870524, -7.0, -7.0, -3.7640266076920375, -7.0, -7.0, -7.0, -3.1383026981662816, -7.0, -2.791690649020118, -7.0, -7.0, -7.0, -3.0330214446829107, -7.0, -3.8370831508231857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.235631958255571, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1571544399062814, -7.0, -7.0, -7.0, -7.0, -2.6263403673750423, -7.0, -7.0, -3.17260293120986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7283537820212285, -3.762678563727436, -7.0, -7.0, -7.0, -7.0, -4.309757882316366, -7.0, -4.053590583261995, -7.0, -7.0, -7.0, -7.0, -7.0, -3.679109782081773, -7.0, -7.0, -3.392169149489736, -7.0, -3.1179338350396413, -7.0, -7.0, -7.0, -3.114610984232173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9148189804474733, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5378190950732744, -4.2799405728395525, -7.0, -7.0, -3.556423121371285, -7.0, -3.9428014663179405, -7.0, -7.0, -7.0, -3.488409688903198, -3.3085644135612386, -7.0, -2.7067787231187155, -7.0, -7.0, -7.0, -7.0, -3.287129620719111, -7.0, -7.0, -3.0610753236297916, -7.0, -2.414734659049227, -7.0, -7.0, -7.0, -7.0, -3.5900612308037427, -7.0, -4.855434347907406, -7.0, -5.8751539029999655, -7.0, -3.7730546933642626, -5.017550843499431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.698448538015329, -7.0, -7.0, -7.0, -3.3469394626989906, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9186923711842754, -7.0, -2.2741578492636796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.878745778536927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.0650453869280705, -7.0, -7.0, -7.0, -7.0, -4.331649954552743, -3.9800488450649567, -7.0, -7.0, -4.359304142349933, -7.0, -7.0, -4.43274487412905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.990378818698668, -4.642444734165811, -7.0, -7.0, -7.0, -7.0, -4.954170120993136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2066100238992234, -7.0, -4.896708054009982, -7.0, -7.0, -3.619788758288394, -4.954623556271786, -7.0, -5.347003928080234, -7.0, -7.0, -4.6049924140397565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464832197849968, -3.29928933408768, -3.4765418090274287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.093554755017995, -7.0, -7.0, -7.0, -3.445085022719354, -7.0, -7.0, -7.0, -7.0, -3.4654076392388364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0136796972911926, -7.0, -7.0, -3.671913012441587, -7.0, -7.0, -3.0265332645232967, -7.0, -7.0, -4.137037454789513, -7.0, -7.0, -7.0, -7.0, -4.024493486415029, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4812480635880934, -3.586587304671755, -7.0, -3.9983247392945254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.525744300194379, -7.0, -7.0, -7.0, -7.0, -3.398287305357401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.079976723632598, -3.889339059564688, -4.371769558513179, -2.7762914362240805, -3.966939163021113, -7.0, -4.065318237803737, -3.1678397191996104, -2.658841573383887, -4.077803798076088, -4.071624298539752, -7.0, -7.0, -3.7615895881903603, -2.8203681357006727, -3.1590799785989363, -7.0, -2.2756254158898863, -2.8072456440124998, -4.376394442037267, -4.067665881974249, -7.0, -4.091684540012315, -7.0, -4.370068760650052, -2.5266486493232416, -7.0, -4.36496351982702, -7.0, -4.37032800777951, -4.391393875135699, -7.0, -3.4549633647502485, -7.0, -3.91902576458736, -2.953555261008572, -2.77751338480969, -7.0, -7.0, -3.791830947674836, -4.378525081544915, -3.0882810978965463, -7.0, -4.376193586884285, -4.411804830815424, -7.0, -2.880688571764092, -2.8904840522967077, -7.0, -3.1433555124697157, -3.5055418728569445, -3.893299303828851, -7.0, -3.927336138327086, -7.0, -7.0, -3.774425717806814, -7.0, -4.072084385539477, -3.6419200744131177, -2.934455653068426, -4.365824806859364, -7.0, -3.62212763918045, -7.0, -3.493086104087192, -2.3255221789694747, -7.0, -4.102210669420494, -3.0107294403814318, -7.0, -3.9188163903603797, -7.0, -4.367896123114806, -3.8770544372152305, -3.312794214562137, -7.0, -7.0, -7.0, -4.373371817181301, -7.0, -2.533658357348511, -7.0, -7.0, -2.6198348288245152, -3.3366931627613803, -3.6163704722912695, -7.0, -7.0, -7.0, -3.5421849794668856, -3.553171907103293, -3.9453372593122817, -4.366647051390854, -3.6107074692804284, -4.3743816980508825, -7.0, -7.0, -3.359062655840945, -7.0, -3.9209229721223515, -7.0, -3.429299990833608, -3.4367891660441443, -4.371954027140132, -7.0, -4.378906400023262, -4.080373916701309, -3.348416135014412, -4.375773316604984, -7.0, -7.0, -3.81489655406238, -2.981867125369299, -4.075017456377485, -2.554896658575775, -2.667716581083437, -7.0, -4.169424598808618, -4.071550639366932, -3.782472624166286, -7.0, -3.705880810155298, -3.7267760949597126, -7.0, -4.373187949912719, -3.0719740091032928, -3.203491837370007, -7.0, -7.0, -7.0, -3.66228551572213, -3.214957324810588, -2.5825746652583113, -3.763034704154229, -7.0, -2.9305702764641635, -3.668541215987884, -3.0097341005572806, -1.5701063809221028, -7.0, -3.5254191616179096, -7.0, -7.0, -3.778060762940478, -3.4898179083014504, -3.5639110139135437, -7.0, -7.0, -7.0, -3.612889769287485, -7.0, -7.0, -3.9125231763598167, -7.0, -7.0, -7.0, -3.5403115948640758, -4.399950474386311, -3.7957236431815518, -7.0, -3.634160466585495, -4.385909994786097, -4.37101241688384, -2.4423825714904606, -7.0, -7.0, -7.0, -4.374473389063976, -7.0, -7.0, -7.0, -2.45484486000851, -7.0, -3.4736641969521136, -7.0, -4.445183714796111, -2.5023813593857014, -3.1197139961978033, -2.5839168668252004, -2.9165197457596417, -3.3820711007640845, -2.742777484325303, -3.9073038488339695, -3.434107398431057, -4.379686151906955, -7.0, -4.429590802223301, -4.069353544943673, -3.204311540910256, -7.0, -4.021891873919109, -4.089746194142301, -3.186400965372376, -7.0, -3.3912628479986675, -7.0, -3.975232615453934, -7.0, -4.384693833518213, -7.0, -7.0, -2.468782495260093, -3.014257950635828, -7.0, -4.097465554474156, -3.8781865623839025, -4.473428573603286, -7.0, -3.8854366118348267, -3.8911842291196206, -4.063014183518913, -7.0, -4.369994661608428, -7.0, -4.07059193151204, -3.2324596131257763, -3.94499233997717, -1.1025789119704859, -2.7183625942989016, -7.0, -4.369085920821508, -7.0, -2.833875335905508, -7.0, -7.0, -3.5482489890522224, -4.3857849588433355, -7.0, -7.0, -7.0, -7.0, -4.367299999681404, -7.0, -7.0, -4.386712938858596, -2.7332209914272227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.37390459247497, -3.1823829463216065, -7.0, -2.9940894992168676, -2.945274567077948, -2.867646018849769, -7.0, -7.0, -3.2741176721526, -3.4887445547013427, -1.9114709525356064, -4.374289987675311, -3.2254032746884422, -4.07505399469838, -4.367318640929692, -7.0, -4.2098767758979125, -3.1260540604734306, -2.660975405102324, -3.1425771609205344, -4.470145775899696, -3.906370962112948, -4.373408581295595, -4.365057220766325, -4.381060903382891, -4.105135337612572, -3.703978825008386, -7.0, -7.0, -7.0, -7.0, -4.0846656297465795, -7.0, -4.09329908473905, -2.923454069651785, -3.902746034361216, -4.102690912962709, -4.384030665240514, -2.8416736274591754, -3.482930723860386, -7.0, -2.1663734211362113, -3.6654308849136665, -7.0, -7.0, -4.389148357697378, -3.1774677878844844, -3.8095597146352675, -3.7590480609558354, -7.0, -4.41418756673709, -3.191712937446059, -3.1396892221500754, -3.301015518939971, -7.0, -7.0, -4.36157675079015, -3.247159736248122, -4.1262613188638815, -3.113423372534924, -7.0, -7.0, -4.367505009418113, -7.0, -4.068371418032643, -4.1399734879844585, -7.0, -3.77581062145278, -4.42756724771945, -3.8963240875783165, -3.4071749324348404, -2.7113807411078614, -2.710710524510052, -7.0, -4.15839265038712, -2.4914167645416843, -3.309356366125307, -7.0, -4.075382701327236, -7.0, -3.7166376183281282, -3.378170700063069, -7.0, -4.091807597001675, -7.0, -7.0, -4.399621810671737, -7.0, -4.37267270704506, -7.0, -3.954483717155552, -7.0, -3.2442372058639073, -7.0, -7.0, -2.8224563318171123, -2.865957174295529, -3.3597195707231196, -3.029546100423748, -3.694148730583769, -2.749378056777176, -3.2747061463002716, -3.2702905531667605, -2.5796019381303084, -2.903076415077322, -3.219633636956903, -3.2686390097338123, -3.4430426687837388, -3.495305902889453, -2.542861390695394, -2.401360691767257, -3.5211380837040362, -2.092587775775171, -4.221974676757555, -2.9012261674137614, -4.420731171441572, -2.909436977206239, -3.502710674010765, -2.996350348616368, -3.0031649931515867, -3.8650052152360628, -3.510768355278083, -3.624568550883257, -4.394679275545099, -2.635680509209594, -3.288954860175721, -3.3832890421810387, -3.5983825736810133, -3.678598037912645, -3.912416922612287, -3.585936751082949, -3.7798705441457825, -2.751390315674036, -3.146518495349268, -2.541675231234385, -3.7739874607135038, -2.4673278150101323, -3.193171516140053, -2.9119633768201263, -2.841006320237581, -2.22407987684108, -4.094174043697868, -2.8135451686201822, -4.033705151467852, -4.109004507541385, -3.237994161276691, -2.923739123457494, -3.062224316869885, -2.968015713993642, -3.744240812483908, -3.9885440937056678, -7.0, -2.733757322895717, -3.8194217142704345, -3.957910437209481, -7.0, -3.194608034580432, -2.9941168602919603, -2.9624332428694204, -7.0, -4.4388744689064445, -7.0, -3.2739306322608575, -3.6780629049743454, -3.4208261382255905, -3.5837150342679753, -4.114988853907845, -7.0, -3.6848553315594024, -2.8752454704640726, -3.5050664521186863, -4.123884293460008, -3.511259310502346, -4.462038432969983, -3.0242675420961667, -3.612653467322403, -7.0, -3.318339014987736, -3.1491998615867844, -4.418450450829583, -3.3721345176926727, -4.369531255941311, -3.9460590603851236, -3.8459864004658586, -3.304090270521751, -4.365787395093661, -7.0, -7.0, -4.364701049594699, -3.966188680956137, -2.0944999610199337, -3.7934411329776636, -2.646853300505588, -4.065355601289965, -3.4346043841601857, -3.287100374971208, -2.5207192847497857, -4.08988745683333, -7.0, -3.6715430852625737, -7.0, -3.104140450597083, -3.2800252325377413, -3.7699862407512437, -7.0, -3.710709565724337, -7.0, -3.656401686648149, -3.899546931090867, -3.6720608951303078, -3.3095541288225525, -3.8945744943980465, -7.0, -4.38737202701981, -3.510628778069135, -7.0, -3.0246180624451555, -7.0, -2.084633313128044, -2.5184717118179676, -2.92298926049107, -2.4526468430785457, -7.0, -7.0, -3.1931245983544616, -4.376394442037267, -4.105493153279868, -3.884323253366666, -3.781863037624198, -1.896603369554253, -7.0, -4.36608659902, -7.0, -4.082300556381854, -3.4831274827577, -4.370864527900364, -3.239406743231971, -4.077440584471324, -7.0, -3.6894154213820136, -2.799907883932568, -2.8825245379548803, -7.0, -3.374365024877566, -3.810568529216413, -4.0900816180388215, -2.3136036121778107, -3.8936508169859634, -7.0, -2.8698467969123844, -2.5271529938173596, -2.43727961654529, -3.5607944737908017, -3.5781642220843577, -3.2372743748135773, -7.0, -3.7728056166847854, -7.0, -2.949008611624438, -4.369030221809153, -3.216799061647665, -3.230463948609012, -3.5362697788972914, -7.0, -3.2036371649498285, -2.622534885779015, -4.126001456787675, -4.3961121306114785, -3.4270091132974243, -3.7073998311332486, -4.1465621131575565, -4.380211241711606, -2.888701812129037, -3.287689783936075, -7.0, -7.0, -7.0, -4.362312795326511, -3.4271136315361073, -2.0305667155192975, -3.4209087921309544, -3.006483156965472, -2.6561755102498417, -7.0, -3.66593259903762, -3.1701563643860604, -3.655746533599422, -3.6261007377332617, -4.371344983082098, -3.9096629851540183, -3.760196229455134, -3.5859117103194342, -3.9577030415488315, -4.438336623263845, -4.362840469311725, -3.7848489971615793, -4.076695045579167, -2.692020268786095, -4.374436714981712, -7.0, -7.0, -7.0, -7.0, -4.3638938977741, -3.462585153463974, -2.836791139563708, -3.384962397302607, -4.390758528738717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.398547595734928, -3.5390940296563826, -3.4349372103306783, -2.7793815471891445, -2.7237775027823625, -3.895606686165933, -7.0, -3.7159699350819997, -7.0, -7.0, -3.141489972824933, -4.373794416714731, -4.373132774549157, -3.714949737697635, -2.7021029686899287, -3.9231403560252005, -7.0, -4.0646825662285115, -3.616842959534867, -7.0, -2.715263899914411, -4.384209999793958, -4.375974366176192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6322547766847135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.645422269349092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.66228551572213, -7.0, -7.0, -1.9731278535996988, -7.0, -7.0, -7.0, -7.0, -7.0, -3.651278013998144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.606703741333674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.904336792202495, -7.0, -7.0, -7.0, -7.0, -4.6538162458227275, -7.0, -7.0, -7.0, -7.0, -3.302114376956201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.63978521298682, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7553411838115474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9096629851540183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2777237887624535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.878188478737013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.920624146429142, -7.0, -7.0, -7.0, -5.086260145091594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.0646825662285115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3944516808262164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2413970416496465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.133953844517957, -7.0, -7.0, -7.0, -7.0, -5.346601351156874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3896975482063856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2028968085295295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.633165353683903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7518485494936495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292189592623499, -7.0, -7.0, -7.0, -3.214957324810588, -7.0, -7.0, -2.0128372247051725, -7.0, -7.0, -3.7139103541289553, -7.0, -7.0, -3.652149605401653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752851725772023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.205420915676343, -7.0, -7.0, -7.0, -7.0, -4.148641209067906, -7.0, -3.343802333161655, -7.0, -7.0, -2.456366033129043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.940869952384663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.529635646019073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.961421094066448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2901793520677085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8782402170748815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.443528960275062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9863387164044726, -7.0, -7.0, -7.0, -3.1863912156954934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4099331233312946, -7.0, -5.09324653110384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.463220879774792, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6569920751226617, -7.0, -7.0, -7.0, -7.0, -4.443501588240124, -7.0, -7.0, -3.09377178149873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3981136917305026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3827372657613304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.388562971398075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.203948945528531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3333868116595315, -7.0, -7.0, -3.3392526340327, -5.571599371148725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6045500325712614, -7.0, -7.0, -4.823516613200129, -2.429752280002408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2080380493531804, -7.0, -7.0, -4.627647442132109, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.60422605308447, -7.0, -7.0, -4.752409569155264, -7.0, -7.0, -7.0, -4.992769948427294, -7.0, -7.0, -7.0, -7.0, -7.0, -4.293804359919337, -7.0, -7.0, -7.0, -2.5825746652583113, -1.9731278535996988, -2.0128372247051725, -7.0, -7.0, -7.0, -4.018076063645795, -7.0, -7.0, -3.0565237240791006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.538460621556729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.606829556638213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.908753019184534, -7.0, -7.0, -7.0, -7.0, -5.051925842814157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4195427247002796, -3.291812687467119, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2193552692900123, -5.411712278253374, -7.0, -7.0, -7.0, -3.022840610876528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.242223292961823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.761551988564182, -7.0, -7.0, -7.0, -7.0, -4.309438524641924, -7.0, -3.831498642552911, -7.0, -4.7087012737596785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3818367999983434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.829988453018915, -7.0, -7.0, -3.8023859928820944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.22616603843169, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6928469192772297, -7.0, -7.0, -7.0, -4.382197210377454, -5.3980216483607455, -7.0, -7.0, -5.017488274960921, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.592043449629362, -4.769775984917649, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.878659644885606, -3.9632209865229884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.921051473431425, -7.0, -7.0, -7.0, -4.609270612890928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7721162485787625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.667518325633491, -5.064989300442656, -7.0, -7.0, -4.021478732257528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6778623449547885, -7.0, -7.0, -7.0, -7.0, -3.7726883546821415, -7.0, -7.0, -7.0, -7.0, -5.186505711841796, -5.229054387811185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.065878352857392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.896625410484115, -7.0, -7.0, -7.0, -7.0, -7.0, -5.3469746268204545, -2.722633922533812, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.987427903514197, -7.0, -4.175308824585785, -7.0, -7.0, -4.336519770410416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9990870226258886, -7.0, -2.0360963453482763, -4.29208985543996, -7.0, -4.785785249373541, -7.0, -7.0, -3.9216344610537055, -7.0, -7.0, -7.0, -7.0, -3.6412261547554836, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.835468612492718, -7.0, -7.0, -7.0, -3.262213705476417, -4.443644294899848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6274887527352035, -7.0, -7.0, -4.29907126002741, -7.0, -7.0, -7.0, -4.020112569565467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.395675785269936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1903316981702914, -7.0, -7.0, -2.25699248549758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5089335260500327, -3.0633333589517497, -7.0, -7.0, -7.0, -7.0, -3.7336185110286038, -7.0, -7.0, -2.9525018478630236, -4.316427011978534, -7.0, -7.0, -7.0, -7.0, -3.091315159697223, -7.0, -4.865038795953643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7255032688593155, -7.0, -4.538834408178194, -7.0, -7.0, -2.824125833916549, -7.0, -3.6265456590271294, -7.0, -2.7024305364455254, -7.0, -7.0, -3.205745540942662, -3.8283859597808854, -7.0, -3.2939699210682645, -7.0, -7.0, -7.0, -3.4171394097273255, -2.9731278535996988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.375846436309156, -7.0, -7.0, -7.0, -7.0, -7.0, -4.010922633882727, -2.1083394747888384, -2.3688032260423766, -7.0, -7.0, -3.8677620246502005, -3.2814878879400813, -7.0, -7.0, -7.0, -7.0, -3.4721711466923635, -7.0, -7.0, -7.0, -4.02583304907565, -7.0, -7.0, -7.0, -7.0, -7.0, -2.912487761332324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6654871807828107, -7.0, -7.0, -7.0, -3.615002614524588, -3.5971464878336956, -2.5893910231369333, -2.7450747915820575, -2.362105319293773, -7.0, -3.905057942240592, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9081402038689497, -2.886490725172482, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5901728315963144, -7.0, -7.0, -3.5180750368775167, -7.0, -7.0, -7.0, -3.763034704154229, -7.0, -7.0, -7.0, -7.0, -1.2041199826559248, -7.0, -7.0, -7.0, -3.6704314093606056, -7.0, -7.0, -7.0, -7.0, -2.486430478854434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.131345404398228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.437803393485486, -7.0, -7.0, -7.0, -7.0, -3.5078269691492467, -7.0, -3.3623882165886987, -3.2665844470668635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.650793039651931, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7679346702804657, -7.0, -3.1434832106700616, -7.0, -3.1702617153949575, -2.284054558436069, -7.0, -7.0, -7.0, -7.0, -7.0, -4.052386095389375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6023313405913373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3677285460869766, -7.0, -2.6190933306267428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.737560364635477, -7.0, -7.0, -7.0, -7.0, -2.0929210574619534, -2.6074550232146687, -7.0, -7.0, -7.0, -7.0, -2.92450080837319, -3.8053649074664455, -7.0, -2.5575072019056577, -7.0, -3.612847407359837, -2.5770319856260313, -2.7983564643068126, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6838572054003462, -7.0, -3.350780865347739, -3.7025166974381505, -7.0, -7.0, -7.0, -7.0, -7.0, -3.131779009369187, -7.0, -7.0, -7.0, -7.0, -7.0, -2.583198773968623, -7.0, -2.605951157564873, -7.0, -7.0, -3.1082266563749283, -2.4578818967339924, -7.0, -3.8838317133294527, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2380461031287955, -3.169331486173275, -3.181128699747295, -7.0, -7.0, -7.0, -3.330413773349191, -4.573012860406959, -7.0, -7.0, -7.0, -7.0, -3.742568034366142, -3.2987439434824073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.856070002803182, -7.0, -4.4772468924150495, -7.0, -3.780677274433368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2880255353883627, -7.0, -7.0, -3.366982975977851, -7.0, -7.0, -7.0, -7.0, -7.0, -3.546474114116154, -7.0, -7.0, -3.8151126581898125, -4.469615861200391, -7.0, -7.0, -7.0, -7.0, -7.0, -4.588663795780204, -3.1975676949836185, -3.1902382914634244, -7.0, -7.0, -4.717420836722375, -4.996992981890705, -3.9771632326126296, -7.0, -3.972970739945679, -3.967350335584652, -7.0, -7.0, -7.0, -7.0, -7.0, -4.529763904040117, -7.0, -7.0, -7.0, -7.0, -7.0, -4.471951454680982, -7.0, -4.675613388396707, -7.0, -7.0, -7.0, -7.0, -7.0, -4.449971810566892, -4.179465613075431, -3.120181063048784, -7.0, -4.191478960443599, -4.764400322956388, -3.5747255835940734, -3.337359412001355, -3.5466660250701842, -7.0, -4.280757898293844, -7.0, -7.0, -7.0, -4.058734362760268, -4.678955185194013, -7.0, -7.0, -7.0, -7.0, -3.4802225985844752, -7.0, -7.0, -7.0, -4.6898059261126965, -4.6425931077703, -5.706281562389593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070333455853063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2089516750078246, -7.0, -3.666661106771804, -4.007676669612222, -7.0, -4.097569639431371, -7.0, -7.0, -5.046175081023443, -7.0, -2.667102574103782, -4.60612329172563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2106157375232303, -7.0, -3.4795753101749884, -7.0, -7.0, -2.8191249923035215, -3.0517311960598494, -7.0, -7.0, -3.033182413729195, -7.0, -4.193910349874993, -3.5949447366950835, -2.8976270912904414, -7.0, -4.120639728415567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.703162360595733, -7.0, -7.0, -7.0, -3.602350591194482, -7.0, -7.0, -7.0, -3.9278321328665817, -7.0, -3.436480695009495, -7.0, -7.0, -3.468002515402457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0557604646877348, -7.0, -3.229169702539101, -3.375526446675889, -7.0, -7.0, -7.0, -7.0, -7.0, -3.361885160591638, -7.0, -7.0, -7.0, -3.2898118391176214, -3.70337541437429, -7.0, -3.5733358400660675, -7.0, -7.0, -7.0, -7.0, -3.759516759462188, -7.0, -7.0, -3.4886916983169405, -7.0, -7.0, -3.7805333253164046, -3.248034603058738, -3.598243191653623, -7.0, -4.00060758706289, -7.0, -7.0, -7.0, -2.7448280567121106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.565731085047682, -3.28668096935493, -3.1137914745357826, -4.243174519793413, -7.0, -3.114777731971562, -7.0, -7.0, -7.0, -7.0, -3.6484575942825224, -7.0, -7.0, -7.0, -7.0, -3.789809784381399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1868151244474543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.101918833680424, -7.0, -7.0, -7.0, -7.0, -7.0, -2.859138297294531, -7.0, -4.495918807079969, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.204608289327036, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3328220855550996, -7.0, -7.0, -7.0, -4.872608403113143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3014640731432996, -7.0, -4.66337107549875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304894259774213, -7.0, -3.5879914264312434, -7.0, -7.0, -7.0, -3.093596768608228, -2.9084850188786495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.124520526873732, -2.1089031276673134, -2.4511282472469036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.974337673992178, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4768316285122607, -7.0, -7.0, -7.0, -4.141167468646232, -7.0, -7.0, -7.0, -3.960470777534299, -7.0, -7.0, -7.0, -7.0, -4.072029200827922, -2.812244696800369, -7.0, -2.710540447933297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.941511432634403, -7.0, -4.1502266766129745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9925093350677754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.2041199826559248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.042181594515766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.68090066116131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.607079544728571, -7.0, -7.0, -7.0, -7.0, -3.4550126429169667, -7.0, -3.0485389068446946, -2.8523579836678272, -3.0870712059065353, -3.0159881053841304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.064195835864643, -7.0, -3.735758537443739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.350945431337479, -3.8355003278673188, -7.0, -2.173186268412274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.712735542052476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096025634102744, -7.0, -7.0, -7.0, -7.0, -2.8744818176994666, -2.0492180226701815, -7.0, -7.0, -7.0, -3.1997551772534747, -7.0, -3.4952667443878105, -2.393867559040913, -7.0, -7.0, -4.309225488984801, -2.768884649356367, -3.450980017314784, -7.0, -7.0, -7.0, -7.0, -2.645422269349092, -7.0, -7.0, -3.9467960272714606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.411788004543869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1309927524950965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2421934558224543, -3.4634450317704277, -7.0, -7.0, -7.0, -7.0, -4.351064783330702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5872618496925344, -2.5634810853944106, -7.0, -7.0, -5.574108275787997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.49789674291322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.800070653111199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8903278525489418, -7.0, -3.985078270183812, -4.4014579833425564, -3.485437481076301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.068695950887171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2270378449302255, -7.0, -7.0, -7.0, -7.0, -7.0, -4.772042847107852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5691929602308528, -7.0, -4.6674249329872435, -5.064951905427961, -3.8682916880178557, -7.0, -7.0, -7.0, -4.234666578212518, -7.0, -7.0, -7.0, -4.961273931114606, -4.677771150682378, -7.0, -3.9551583869257936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.689228920267321, -4.788543089039288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6037125907704572, -7.0, -4.89657030606194, -3.48274499054841, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.556423121371285, -4.604722722859099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0835623371877907, -7.0, -7.0, -7.0, -7.0, -3.381756668168806, -3.0259199985020175, -7.0, -7.0, -3.119668207244826, -7.0, -4.795108024611571, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7545012293869173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5369195031302656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2431869241314715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.136244801746143, -7.0, -7.0, -7.0, -7.0, -4.392468317043854, -3.41077723337721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.025264892154508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.417388646165674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.922349113974395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.389679843219249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7800291273373383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9497151990838457, -4.018117720591, -7.0, -7.0, -3.4233687700792785, -7.0, -7.0, -4.025960909856379, -3.338057875419756, -3.385473488379908, -3.3354005832177553, -7.0, -7.0, -2.8769306614261745, -3.0966948805607766, -3.450249108319361, -3.7382254481425052, -7.0, -4.023787279789847, -7.0, -2.6195052314655953, -3.344294005898312, -7.0, -3.261411574317625, -2.728667900158172, -7.0, -7.0, -7.0, -4.081455327822574, -3.4532036344562216, -3.188084373714938, -2.2623721514962294, -3.1436392352745433, -7.0, -7.0, -3.334936032690669, -2.629555213347806, -3.073066317596221, -3.1144441724452543, -7.0, -3.787425049380184, -7.0, -2.812338605924589, -4.0253877998904075, -3.734999734992562, -4.084003990608029, -3.750701200395868, -3.156639998415452, -7.0, -7.0, -3.4203848769604073, -3.149796248264438, -4.069483093934611, -2.2786282035869205, -4.10595276923698, -3.0786501170358553, -3.5103841306041415, -7.0, -3.565178552693963, -3.8041394323353503, -4.04410838744612, -3.0050634572543666, -3.2691625654317447, -7.0, -4.040325379199723, -3.1354189050278523, -2.0055167390105617, -3.5471180513494303, -7.0, -2.9500517490365605, -7.0, -2.863804198383527, -3.1997551772534747, -7.0, -3.6254839394069043, -3.4574761639890332, -7.0, -3.61083753474107, -7.0, -7.0, -2.289358432636332, -7.0, -7.0, -4.016490131620828, -3.406506116785802, -4.040800061256529, -3.0750490123810867, -3.828595456371702, -4.072176344478966, -7.0, -2.4398045098919963, -3.1735100063936486, -3.1339219404237717, -7.0, -7.0, -7.0, -4.070628844051428, -3.6158448828747023, -3.060508975605298, -7.0, -2.8623482554633135, -7.0, -7.0, -7.0, -2.672975925825707, -7.0, -7.0, -7.0, -2.948779613737823, -2.5732713922522903, -7.0, -7.0, -3.7515100502700416, -4.057970231710706, -2.124998812717229, -7.0, -7.0, -3.4820155764507117, -2.9828847574477972, -3.199663775699543, -3.5693348876929294, -3.0730197063476323, -2.6555304327456617, -7.0, -3.9269337958028787, -4.039176084376041, -3.956552591917399, -7.0, -2.9010153549566473, -3.1462210888118802, -4.022675761953727, -7.0, -2.275494751283599, -3.811273307711949, -7.0, -7.0, -2.9305702764641635, -7.0, -3.7139103541289553, -4.018076063645795, -7.0, -7.0, -7.0, -2.769434137441502, -3.1799824252925917, -3.693345821666275, -4.041037207867029, -3.6421181336945816, -7.0, -4.027308827035546, -4.055416559840489, -4.329580915741898, -2.8059972395494706, -7.0, -7.0, -7.0, -3.0377179381586314, -7.0, -3.112353600959159, -7.0, -3.3604419331026376, -4.023252459633712, -3.361085360488826, -3.3674677421179733, -3.794975744051132, -3.1883307420001077, -7.0, -2.7368445108368746, -2.9524943941471555, -3.7345998321264577, -3.2140101426502716, -3.7309436934277356, -7.0, -7.0, -3.742057076502348, -4.030194785356751, -7.0, -4.019157847739282, -2.9405639151168446, -7.0, -3.28668096935493, -7.0, -2.95142323763206, -2.445409351273244, -7.0, -3.3899925251123144, -3.237166582685473, -7.0, -3.391922621374344, -7.0, -2.4791210793518808, -3.5769936457909233, -3.4622482153549976, -2.4883054216721763, -3.733317662782867, -3.465263850356592, -7.0, -2.6953203529523866, -3.378216149749878, -3.462955823628693, -7.0, -3.1628430939207037, -7.0, -4.195927313597225, -4.037067758042558, -4.064794811195383, -7.0, -7.0, -2.586249638866042, -3.0859680770460742, -7.0, -3.7921114090871684, -3.736197238918293, -2.9534799201619046, -7.0, -7.0, -4.029992175377847, -7.0, -7.0, -3.732393759822968, -7.0, -3.1334590674872085, -3.0817792267675337, -2.7766064460534263, -2.6370818541953644, -3.1025518953323297, -7.0, -3.5542468081661105, -7.0, -3.4509031374275407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7265234583862394, -7.0, -7.0, -3.767897616018091, -3.2485751065285084, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039057018033444, -7.0, -7.0, -3.8688207061975177, -4.073461729279835, -3.602548297999073, -3.1033563066696592, -7.0, -7.0, -4.016490131620828, -2.2721855340792434, -7.0, -3.213330796493227, -3.741663622514662, -3.0971651968201335, -7.0, -7.0, -7.0, -2.880351799071886, -2.8874485002499535, -2.3327138236457876, -2.976005892508129, -2.3850619961350192, -2.8571816735501194, -7.0, -7.0, -3.7560652939486863, -2.9938091464333256, -3.403120521175818, -7.0, -3.329641910730211, -4.057818194432099, -7.0, -7.0, -7.0, -3.1811644721192858, -2.6961674109846214, -4.054804500220955, -7.0, -7.0, -2.1147504503585406, -2.704248595991504, -7.0, -3.1042792367572742, -4.021602716028243, -2.595141776071406, -3.8398863812750887, -3.5967803035945445, -3.4333811830320657, -3.4202198777251476, -2.6130825181863484, -2.9607268366171704, -2.7611103580716736, -4.088809166461293, -3.287801729930226, -2.960570908834968, -4.017492446477275, -3.412418543998244, -7.0, -3.5924821001140748, -3.1075183079511315, -2.6879341244886357, -4.038977622332692, -3.4959603948817053, -7.0, -4.081527326244805, -7.0, -2.71113789711095, -3.5638369186645447, -2.818962939492806, -3.149434666343169, -3.3418300569205104, -3.407911151195616, -3.0729341054228705, -3.550381532463171, -4.041471640613747, -2.6267724474822196, -2.601259237413943, -2.997222509991783, -7.0, -2.7907932251273815, -4.025674449410344, -2.7835137861438874, -2.4866211799441786, -3.5804117262774118, -3.7806053058389697, -7.0, -7.0, -3.493144241793856, -3.551246628977399, -3.7381857702399692, -7.0, -3.3792752943968063, -7.0, -2.6064231101466255, -7.0, -7.0, -2.865934433442102, -3.7601773696361365, -7.0, -3.4520932490177314, -4.312149136258353, -3.446459496594692, -4.243236537941076, -3.575276684956999, -2.220246301385376, -3.2089561488344414, -7.0, -3.7002420700306993, -4.317331935445897, -4.039100679482735, -2.7667392071108186, -4.495488833107507, -3.4140460663081886, -2.9021377646923416, -4.01500328646168, -3.0854047573314234, -7.0, -4.229167994396186, -3.179355219664356, -2.8714047098259203, -3.6565964439829135, -3.650834630108787, -4.141990345122414, -3.0598215015104135, -7.0, -2.3923943485481045, -4.386570301700929, -3.8053875688707084, -3.4912355900332503, -3.3655050023663393, -4.074999186064199, -3.3891266907882067, -3.765494702849603, -3.738089394524819, -3.4018828223212823, -2.672935521979907, -2.683321176971368, -3.090564725600136, -2.3143427867681856, -2.2505444669536296, -2.2420685056980982, -2.8706686043154397, -3.2410125337870626, -2.231604854564069, -2.5303984448232404, -2.667252771055618, -2.3838852800395403, -2.8418478220804433, -2.8318246230659576, -7.0, -2.2662552222976506, -2.3901174996631, -4.022881813332031, -3.3053513694466234, -2.506101564166644, -2.55975704883973, -7.0, -1.847972154164334, -2.281367945106283, -3.8886622314961086, -3.7269715836828765, -3.4719661042730605, -7.0, -2.35969125581128, -3.248354776253106, -3.7229200677911893, -3.1635390310183986, -3.041590046889367, -4.019448637493637, -3.285936869490004, -2.493694292457702, -3.25723537950945, -1.6801411837154883, -2.379380373882321, -2.9818452452840774, -1.889446776659733, -2.485871928296167, -2.9620139876491844, -1.505915105333337, -2.1720863832034163, -3.287065556036607, -3.170065419875544, -7.0, -3.1870190811827652, -3.0898620501650678, -3.171126508351265, -4.024321442141565, -4.018658897585517, -7.0, -7.0, -3.7022294276288252, -2.6020932268788046, -2.94023179499651, -2.464343951785702, -7.0, -2.842388953284813, -2.4931435578660768, -3.6155993899644367, -2.3665511298083617, -3.7255441224863532, -2.847684807491839, -4.02094105986232, -2.674711087015539, -2.5896393688088346, -3.2596336913699937, -3.7814322255046484, -3.5895959185665633, -3.0800850850458694, -2.5377291697221085, -3.3487331037982857, -3.5587885437369464, -3.087917863970426, -7.0, -3.7409545058228053, -4.070370390367003, -2.6166395905393904, -7.0, -2.9626275880950166, -7.0, -4.0244446171313495, -3.6938851650535165, -2.7901261941058086, -2.9437081969398093, -7.0, -3.3258234190027447, -2.396811726205253, -7.0, -2.829303772831025, -7.0, -2.916303517484374, -2.2929993067646084, -4.019116290447073, -3.7238659644435037, -2.9450111181475167, -2.7819064730211855, -2.866700756042499, -7.0, -3.288994028501752, -3.2732328340430454, -3.436639631692661, -2.792686526225059, -2.786440847338095, -3.5050481786205916, -7.0, -2.7113853790984517, -2.4954782600291048, -4.078166708168154, -3.036011561239873, -7.0, -4.024977972095624, -3.4725858175201463, -3.0813473078041325, -2.384599679214964, -2.708794691425808, -3.4429498695778618, -7.0, -7.0, -3.929393378228659, -2.858256399391167, -2.81929710718518, -3.7302976620971497, -2.877551304634999, -2.6538286674168488, -4.058274146685951, -7.0, -2.5727635687467134, -2.4755715775939935, -3.1942984514279047, -2.5295230327534557, -2.9101771619648984, -7.0, -2.5033366375564374, -2.731627132118333, -2.5983063786100478, -3.161996525422446, -4.058539897939781, -3.4504415720858184, -3.4176377396522297, -7.0, -3.671212526660277, -4.107989642267512, -7.0, -7.0, -2.715426287355302, -3.3822332349705566, -2.5797478801414493, -2.808153075999404, -3.3837555416836356, -2.7814476190128725, -4.036429265626675, -3.027164209914138, -7.0, -2.089198366805149, -2.9868314269997462, -4.170173673806271, -7.0, -2.89250272192097, -2.6867528114559094, -2.437926640050411, -2.5493592897669206, -4.031408464251625, -7.0, -4.0175758683910745, -7.0, -7.0, -4.0246498311794445, -3.366369584424885, -4.066027594948862, -2.845754459710494, -2.6516817459988693, -7.0, -3.724275869600789, -3.553842587658613, -2.7183434903473924, -3.336179453437444, -2.8616749478659766, -3.3649260337899753, -2.7431271938070174, -3.4975930308120327, -3.6828968412870142, -3.4372747974101237, -7.0, -3.4267714347926965, -4.035509785089559, -7.0, -2.9263844500573724, -3.196136691157174, -3.1366413091067473, -3.0819688735880715, -7.0, -3.6195802468903406, -3.419625360887743, -4.024239306069092, -3.04429025803639, -7.0, -3.5578078557646045, -3.218235318937493, -7.0, -7.0, -7.0, -3.706888394981618, -7.0, -7.0, -3.72222246396973, -2.8491463155442887, -3.1808424146466825, -7.0, -3.7453871213200087, -3.6606072689262064, -3.992597696102038, -7.0, -7.0, -3.266573761870049, -3.0899258806453944, -7.0, -7.0, -7.0, -7.0, -7.0, -3.246071626606709, -3.246357873040835, -7.0, -3.365441183394879, -3.031173600321091, -7.0, -3.732393759822968, -7.0, -3.3505710339547834, -3.4790711958039306, -3.4369573306694496, -3.312366681284554, -3.162116141062368, -3.715836275164994, -3.7170044070405472, -7.0, -2.9770700393537606, -3.726808682524964, -3.409087369447835, -7.0, -7.0, -7.0, -3.7083905458113104, -3.721645766289746, -7.0, -2.9866437936313814, -3.773274348337454, -2.913187477585532, -3.732956369575625, -7.0, -7.0, -3.173841587563712, -7.0, -2.7188734226217175, -7.0, -2.8712981525680923, -3.0354297381845483, -7.0, -3.4541585899443437, -3.5685537120494426, -3.7585334222372864, -7.0, -7.0, -7.0, -3.7512020945883533, -2.840994275962398, -3.4374202254789092, -7.0, -7.0, -3.378216149749878, -7.0, -2.796877747701869, -2.950364854376123, -7.0, -7.0, -3.7599321174298512, -7.0, -2.993939833374049, -7.0, -7.0, -2.721989727881355, -3.8265283063406517, -7.0, -7.0, -3.1711411510283822, -7.0, -3.044147620878723, -3.9109444057499787, -7.0, -3.8021577531869615, -3.101560301504318, -3.9085922388475693, -3.275829434043522, -7.0, -7.0, -3.8632633636504807, -3.808346035740395, -3.24619072334908, -3.3261309567107946, -7.0, -3.1266415508735212, -7.0, -7.0, -7.0, -2.5773986335852532, -3.2329961103921536, -3.369957607346053, -3.486430478854434, -3.0463976029545603, -2.566567572030291, -7.0, -7.0, -3.473632926873841, -7.0, -2.997777925619072, -7.0, -7.0, -3.0542299098633974, -2.910250772300148, -3.649967338324824, -7.0, -3.3365709061214783, -3.7884794804834376, -7.0, -4.063370893585704, -3.748962861256161, -3.633544198011875, -2.9293459289107084, -3.2688703670207335, -3.9388698215129865, -7.0, -7.0, -2.57548982690978, -3.1824717176053743, -7.0, -7.0, -3.668541215987884, -7.0, -7.0, -7.0, -7.0, -7.0, -2.769434137441502, -7.0, -3.373325857661505, -3.4993662825855276, -7.0, -4.087000120795991, -7.0, -3.7255032688593155, -3.7801011914679115, -4.204798038190855, -2.731204909335425, -7.0, -7.0, -7.0, -2.6073334015206, -7.0, -7.0, -7.0, -3.788168371141168, -7.0, -3.0898344887086298, -2.758430145835095, -2.949877704036875, -2.7310926412065784, -3.3350565194390915, -2.5784959493756787, -2.5696492587965016, -3.440987751476157, -3.2233766941889703, -3.7349597612724454, -7.0, -7.0, -7.0, -3.731266349075492, -7.0, -7.0, -3.0725506671486116, -3.731024379815688, -3.5297785596881464, -7.0, -3.2962701975267965, -2.891395696603519, -7.0, -3.6721902511882525, -2.7815502284597535, -3.7886632131208575, -3.367852683427225, -3.3194530784907674, -3.113140836867081, -3.476759191770886, -2.287661792928241, -3.1715314404115604, -7.0, -3.1884597362982907, -7.0, -3.6556825632823373, -2.740165238032828, -3.9481357374421178, -7.0, -2.289291592392737, -3.403977963669355, -2.973421763928828, -3.443654067612905, -2.6820061465959664, -3.7304592600457687, -3.264424262056547, -2.8020036235559296, -3.0583627485070277, -7.0, -3.070037866607755, -7.0, -3.11601706796125, -7.0, -7.0, -3.730862992046494, -7.0, -7.0, -3.436639631692661, -3.714413592287121, -3.4437322414015967, -3.328787200354535, -3.0236125071907014, -3.082976752706637, -3.8778977629824376, -7.0, -7.0, -3.743666521446213, -7.0, -7.0, -3.7169210731667612, -3.8309092995464433, -3.500648063371912, -3.799891684656865, -7.0, -7.0, -3.239633102713035, -3.7261564661727546, -7.0, -7.0, -3.202896808529529, -3.2321157182262974, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7487305560984945, -7.0, -7.0, -2.828291538174048, -3.8135142715418833, -4.028977705208778, -2.933681925274947, -7.0, -7.0, -7.0, -2.4974134646862063, -3.524331200288652, -3.227103889576614, -3.755951041004132, -3.9033690866007587, -3.763502865467597, -7.0, -7.0, -2.7270891965298407, -3.3066394410242617, -3.2935203938852355, -3.2142255094151593, -3.5852350633657752, -3.793231447056521, -7.0, -7.0, -3.7834032811225633, -3.175975431749513, -2.6869935662646784, -7.0, -3.2513136962545923, -3.0850764114720945, -3.2486270782758857, -3.1991378431311865, -7.0, -3.3564720392787937, -3.003162150454414, -2.874844061845836, -3.16761267272753, -2.94911107633224, -3.602252279166497, -2.7927417858347487, -3.7197454925295768, -3.0563966072973052, -7.0, -3.281714970027296, -2.6264943452110474, -3.2121209897122247, -3.2321062926146578, -2.938742041271392, -3.0762357711830832, -2.9132839017604186, -2.7243304944020563, -3.5398912045347903, -3.9228010399359112, -2.903993825990188, -7.0, -7.0, -7.0, -3.536516357733869, -2.9424049408561066, -3.1324197980976147, -3.748575616930992, -3.857573704147496, -7.0, -3.526920532638649, -7.0, -2.941511432634403, -7.0, -3.293657141449485, -2.712005604964203, -7.0, -4.038983293935556, -2.930304643867514, -3.7774671001061875, -7.0, -2.5269850685599957, -3.424419460114532, -2.944975908412048, -7.0, -3.162340331628426, -7.0, -2.582604405067025, -2.8827277737122063, -3.149746809539141, -3.2259550728960145, -3.7104558643354246, -7.0, -2.646709977192606, -3.426755178518925, -7.0, -3.2784487259091373, -2.9140545254194707, -3.2555137128195333, -2.6970859639264892, -7.0, -7.0, -4.342432551039179, -4.503565989865016, -7.0, -7.0, -3.272367705306956, -3.848620117434134, -4.08543329741699, -3.4929000111087034, -3.3258234190027447, -4.149311505907915, -7.0, -7.0, -3.9773806058118346, -4.0173964914623195, -4.32990612340021, -7.0, -4.413165598345893, -3.6447093236185086, -7.0, -7.0, -3.9228810912082936, -4.69711595791437, -4.068464166454118, -3.742040221497518, -4.239299479126893, -7.0, -4.22303708921397, -3.8228869478341507, -7.0, -3.6304888957237034, -7.0, -3.125781451979629, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2166804145591215, -4.299114883600537, -3.4839199622336494, -3.462472869803616, -3.5970028677416908, -3.760627087876746, -3.390970414162616, -3.261881149383667, -3.8116587737331162, -3.5358635207124522, -3.3774047104492237, -2.6014865855147615, -2.887392218971847, -3.730189896716472, -2.9788266104365038, -2.727682314264488, -7.0, -2.891088504138878, -3.2055523408496573, -3.7165875776756923, -3.733919151012391, -4.149573180097276, -7.0, -7.0, -3.613465481647862, -3.3868666670825744, -4.312377102890958, -3.24960595430691, -2.4303975913869666, -3.4326486600131068, -2.9005690684574574, -4.026369811573718, -4.714212366993632, -4.218876715052756, -3.7225927942150254, -7.0, -3.629969946292171, -3.500497192859225, -3.8145272659128477, -7.0, -2.7765766670051226, -3.2629254693318317, -3.181973441281636, -3.4339543652562603, -3.2771506139637965, -2.5098742850047193, -3.05779895700737, -3.6145281197475394, -3.382987914288671, -7.0, -3.1520844023826413, -3.5084816216810326, -7.0, -7.0, -3.707995746422929, -7.0, -7.0, -7.0, -2.79054104530852, -2.722886934182042, -2.5326665362571856, -7.0, -3.8145139523682383, -2.8005861681135253, -3.8481891169913984, -2.4761330984755965, -3.7241939195143297, -2.559136826639166, -3.7126497016272113, -2.797351686984816, -2.4466574036419377, -7.0, -7.0, -3.954121855324949, -3.8266577918758693, -2.405829968530948, -7.0, -7.0, -3.2470316839518056, -3.7453871213200087, -3.7545776560447304, -3.5067079263501197, -2.598078862529418, -7.0, -2.9961028694112493, -7.0, -3.4185498620497423, -3.945409493427272, -3.132023632424381, -3.3876995495175377, -7.0, -7.0, -2.285755813383243, -7.0, -2.5123479092054417, -7.0, -2.7937903846908188, -2.563189201196379, -7.0, -7.0, -3.8467699535372186, -2.7117369491669536, -7.0, -7.0, -3.802636918082811, -2.6924062348336304, -7.0, -2.811038508604216, -3.1132746924643504, -7.0, -7.0, -2.7928763631597087, -2.719552245768398, -7.0, -3.424368203361429, -7.0, -7.0, -3.7954281160534724, -2.622861354256069, -2.641639335722719, -2.669200619159474, -3.9314070135565733, -3.794418330874141, -7.0, -3.4646758040229666, -2.179854874505845, -3.4206569887230676, -7.0, -2.652375288296997, -2.6762959040275653, -7.0, -7.0, -2.585218939867717, -2.7241009012423585, -2.407740718812563, -3.237732193117367, -2.4326874301696493, -3.0306575392437978, -3.7013088852280753, -3.7800291273373383, -2.5033082439451104, -7.0, -3.4847979243318843, -7.0, -7.0, -7.0, -3.9623219727295846, -7.0, -2.9818186071706636, -7.0, -3.262270237307056, -3.5268559871258747, -3.3778524190067545, -2.4732289564856345, -7.0, -2.5050319474775153, -7.0, -2.725230813090089, -7.0, -2.3277966577379194, -2.6215539291743997, -7.0, -7.0, -2.9606066644196076, -7.0, -2.674949986825319, -2.5783335302215775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039453778961736, -3.799891684656865, -3.2181414681576777, -3.1357685145678222, -7.0, -3.2441946258862364, -2.8870543780509568, -2.638949802577757, -7.0, -2.5914974484339126, -3.1940284373527064, -2.1419552372400017, -2.714329759745233, -7.0, -3.749736315569061, -3.7062909572587635, -3.4274861090957858, -3.2643455070500926, -3.400537989391946, -2.4274570408261784, -3.0543065658483997, -2.749736315569061, -2.669316880566112, -7.0, -3.252731702726023, -3.714664992862537, -3.0196977309801922, -2.5557306843819765, -7.0, -3.260739019910411, -2.6478019710944465, -7.0, -7.0, -7.0, -7.0, -4.145724574880668, -7.0, -4.151706857022576, -3.5819212275866295, -3.6982165740723576, -2.895606686165933, -2.1959908364698766, -2.8056237289922086, -2.580273126424684, -7.0, -7.0, -0.8831353250428914, -2.7023867192148066, -2.995049891972701, -3.8608767964032977, -4.1449165270928505, -4.150295812825538, -3.6701221048237063, -1.9490260709475087, -3.1509405539654773, -7.0, -3.217986143224739, -2.3927331815438966, -2.865814380167968, -3.5532760461371, -7.0, -2.4669235501007294, -2.8720688221022472, -3.4584867637982066, -2.8448177596031714, -3.866877814337499, -7.0, -7.0, -7.0, -3.413523281575585, -4.153418485037711, -2.417643009928512, -3.1046422774442766, -3.0227032411199173, -4.156700552582017, -2.6536718416678737, -4.151492428425498, -2.5235347412529383, -2.763261565324877, -2.808387133479059, -2.6389273482647213, -2.722786215722561, -3.8665531523018597, -4.223833277236323, -7.0, -3.4856930402936617, -2.295525345561636, -3.735891524088347, -2.312811826212088, -3.040074643230312, -7.0, -3.2608164464658076, -2.869018254756463, -7.0, -4.167937312700578, -3.6910520074505713, -7.0, -3.0158086695675426, -4.236763922187807, -2.7443973056026167, -3.673512399026766, -4.148201487458512, -3.164271722213462, -4.146252102092995, -2.6225824008556593, -2.428772704799911, -7.0, -3.255942196033082, -2.7459174483529494, -7.0, -3.420808088286559, -7.0, -4.154149979881548, -2.7909471353636977, -3.7162538258960365, -3.2523675144598987, -7.0, -3.911876397086321, -3.8619822141108484, -3.6196410730566346, -1.2237725589362722, -3.5847268854052863, -7.0, -1.4639382574859172, -1.923809015867687, -1.9327995336788195, -3.1476763242410986, -4.144698718643125, -2.482576980405909, -2.6397709927061457, -1.6960650136926116, -1.3273316108164133, -3.3066394410242617, -2.04155249913681, -7.0, -7.0, -7.0, -3.156303011673324, -3.8462752424122133, -2.900476371389257, -3.699953291190414, -2.948999454026953, -2.772566173085639, -3.8596785766284483, -7.0, -3.569783428251616, -2.6557203650631345, -2.4314563297226996, -7.0, -7.0, -2.039259383258555, -2.226831810658721, -1.2457024403677062, -3.468258689839974, -2.571080252623569, -1.6154385124390143, -7.0, -3.2694492600060707, -7.0, -2.9026710009836583, -3.6949852230728335, -2.933567202189147, -3.2907022432878543, -4.149465450995452, -3.6855327493999135, -2.4213035352156096, -2.3333677163830293, -7.0, -7.0, -3.0097341005572806, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1799824252925917, -3.373325857661505, -7.0, -2.0418017499967545, -3.6860102913152857, -2.743468503554877, -4.146902869928199, -7.0, -3.5719125414899997, -2.948639974821173, -3.1598463787180644, -7.0, -4.154484837032048, -3.464578960565791, -2.5236561600008374, -7.0, -7.0, -3.88820758450285, -3.3319765058958195, -4.14989620715876, -3.4787107555127594, -4.1827854420846835, -3.7281913985899466, -3.0875903211365454, -3.7102584385195545, -3.0446222709810327, -3.882154404634234, -3.556995612185525, -2.8171518479092548, -7.0, -7.0, -7.0, -3.5626199494262973, -7.0, -4.153143856513743, -7.0, -3.299170398175146, -3.853911049066346, -3.337086373423362, -7.0, -2.4386586662418517, -2.6095232658911427, -7.0, -3.6604860157849677, -3.0637085593914173, -4.177623061631355, -3.2981432216889313, -3.5787537844264343, -3.0729565042610507, -3.571038826438266, -4.181100079728049, -3.1712387562612694, -4.158272004652084, -2.8967178743690574, -7.0, -2.3846144002320804, -2.645057162575253, -2.4685319401840777, -7.0, -3.228674059346633, -7.0, -4.284949321403674, -7.0, -3.7040646794085674, -7.0, -3.8580256078495063, -2.6766936096248664, -2.966748906109529, -7.0, -2.7704155895660736, -4.082342475253593, -3.360929847769662, -7.0, -7.0, -3.6776981814745104, -7.0, -7.0, -7.0, -7.0, -4.160288413131288, -3.859418526033877, -2.3911620309865724, -2.875414988878726, -3.021829394015815, -7.0, -3.310632631264332, -2.6263403673750423, -4.172456974400587, -4.146128035678238, -7.0, -3.718141703622399, -3.337601863321786, -7.0, -7.0, -7.0, -4.149803938227022, -4.153174379371534, -7.0, -4.149157506231856, -7.0, -3.4606702239729046, -7.0, -7.0, -7.0, -4.152685756036786, -4.163757523981956, -7.0, -7.0, -3.4647279415565504, -3.962795369857233, -3.8868571827455662, -2.7856412050628534, -2.6884415275019733, -4.185457157401926, -7.0, -7.0, -3.0018609189497134, -3.4938482527122763, -2.332548626359836, -3.8634715656455874, -3.293663834280866, -3.4683177855649125, -3.5509617522981762, -3.677272283237335, -2.81088563461834, -1.0719353440555819, -2.275514596639852, -2.3095833760147775, -3.1340920685160083, -2.780173243642594, -3.016227237873841, -4.149496233465742, -4.175482820774772, -3.515979756279428, -2.9306005339873313, -7.0, -4.154149979881548, -3.573741641520317, -7.0, -7.0, -7.0, -3.5944201763721857, -3.138203983656957, -3.696443763138999, -3.910277471004973, -7.0, -2.7652681526752825, -1.9965697645340619, -3.8496957509222134, -2.9245708389275467, -7.0, -3.688568121297955, -2.647759015234576, -3.8873077833767713, -3.6544460867173374, -3.3202501718864337, -3.1166298787188618, -2.9581983746214435, -3.11293997608408, -3.199288828082406, -2.8919539577451547, -2.4260731174384857, -3.446381812222442, -7.0, -7.0, -1.5969887421995967, -2.65459609049376, -3.855397996654069, -3.5594577418107205, -2.9273703630390235, -3.3750536497006407, -3.494961186838928, -4.156670276554126, -2.5668380133503383, -2.9863835313824367, -3.0558779765553, -3.4025070241365136, -3.5610715547069858, -3.017287893248922, -1.6669457144935187, -3.171527266019217, -7.0, -3.3406644011658675, -2.973800027588227, -2.3367070221695694, -7.0, -4.168055303459139, -3.549463076236982, -3.530711837981657, -2.772743880410262, -2.325636926468734, -3.0174229159729875, -3.8462752424122133, -7.0, -3.6026838413608373, -7.0, -4.161936705245781, -7.0, -3.3506598211478686, -4.155730671278588, -2.5865680715067687, -7.0, -7.0, -4.723529553280573, -4.384239881687907, -7.0, -3.646746712800757, -3.772268350314977, -3.791573698842515, -4.022799404511688, -2.7547470758907386, -3.235057187684041, -3.458543426918113, -7.0, -3.6239725120169965, -3.9155119563119665, -3.939085125220391, -3.809929885460897, -4.241372130158436, -3.669016325787356, -4.0333477919900265, -4.084129242916061, -4.054983106731511, -7.0, -4.110271447754429, -4.032336659845735, -3.1996546344860612, -2.44301317756863, -7.0, -3.7710654259763947, -3.6150628307515076, -7.0, -2.797452607384794, -7.0, -3.3083865333695637, -4.061666055214047, -3.986906031380721, -7.0, -4.107786384315953, -7.0, -3.2598534598303455, -3.6813618579795855, -2.8671488448410494, -4.167583147965841, -3.0554937278103553, -3.405915255308017, -3.7244602007755776, -2.5551912165114072, -2.984864716816858, -3.197528655522771, -2.158923013122718, -3.326652341050451, -3.920071124297524, -2.8808770809852247, -2.8336437606968583, -2.3835517923802207, -7.0, -2.395995993135859, -2.509354301527002, -7.0, -2.896482124440946, -3.9676064709973065, -4.259235402198733, -7.0, -2.9163447519231225, -2.285476692176725, -3.574584146421634, -7.0, -3.9638114296651668, -7.0, -2.989974234237973, -7.0, -3.4831170267746994, -3.174846201664013, -7.0, -7.0, -3.537705786080527, -3.37755264713504, -3.527536166563112, -3.766710207262259, -3.1326089412441998, -2.997167871445834, -3.0910382116121973, -2.6062630018624766, -3.209306455462485, -2.5657099692891188, -3.024514987157872, -2.5414009255363963, -3.5600188883949224, -4.156821635591626, -3.940267391446012, -3.1642322463464287, -3.822965297912282, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8216207799937747, -3.1566592665661197, -2.116277118838028, -7.0, -4.188365926063148, -3.0056216943620413, -3.7256938862479183, -3.2877737461368017, -7.0, -3.0251237329568363, -7.0, -3.0960548217598056, -2.6534599045435847, -3.4618885263439725, -7.0, -7.0, -7.0, -3.258230090449129, -7.0, -7.0, -3.9892495332565354, -3.859378504425601, -4.1640255242878395, -3.8844838285545573, -2.2220137501713593, -7.0, -3.014045480587391, -7.0, -7.0, -3.7699678013294426, -3.07420462936341, -3.4939167341048294, -7.0, -7.0, -2.3081294666226277, -7.0, -2.913681425341403, -7.0, -3.276748941031243, -2.141555221367973, -7.0, -7.0, -4.2022975561388, -3.0323021042694998, -3.563860630519641, -7.0, -3.8822968009376515, -3.170848203643309, -7.0, -3.040545831821507, -2.4178112658140627, -4.465085287557433, -7.0, -2.7102712611027617, -2.667141519042328, -4.191562787591726, -3.023822067750505, -7.0, -7.0, -7.0, -3.114722156505122, -2.4302382070616937, -2.694791266284906, -3.639461586348088, -7.0, -7.0, -4.313297626086869, -4.159055603513488, -4.288897276322566, -7.0, -2.9901445333695924, -2.539758208062269, -7.0, -7.0, -2.568644429999217, -2.2042842200431023, -2.865794662364423, -7.0, -2.9472918061248987, -3.437221902399778, -3.046701692585523, -2.9691245764056418, -2.7211472552953344, -4.257942430573135, -4.176525336535, -7.0, -7.0, -7.0, -3.86223874654393, -7.0, -2.961421094066448, -3.9125939977521056, -2.7444494574467986, -7.0, -4.146345128650468, -3.1429790911205524, -3.47928731647617, -2.868858087141923, -7.0, -3.070123153384824, -7.0, -2.552035169157616, -3.0540861434129027, -7.0, -3.8447566745101733, -2.822025869575364, -2.9387845299228235, -2.8043893467729935, -3.863709388627451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.51954361930943, -7.0, -2.9859875056581204, -4.157758886046864, -7.0, -4.151492428425498, -7.0, -4.164085057458859, -7.0, -3.248545405594516, -7.0, -3.8185557792978027, -4.28564730890073, -4.256019813380122, -7.0, -7.0, -4.2288621285305625, -7.0, -7.0, -3.3106546980922547, -3.862667950228588, -3.5604446731931874, -7.0, -4.20980980578538, -4.206015876763344, -7.0, -7.0, -7.0, -7.0, -3.9548693710664784, -3.7032913781186614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6763277338813203, -7.0, -3.266310110427021, -3.6769678142947586, -3.7019994748896368, -3.4519689627723857, -2.711713520014632, -7.0, -7.0, -2.6516083680914355, -2.145438131669925, -3.734239604435455, -7.0, -7.0, -7.0, -2.5146426078494595, -2.2693606403475486, -3.771771153745868, -7.0, -2.492461047614479, -3.178163969876514, -7.0, -7.0, -7.0, -3.792391689498254, -7.0, -7.0, -3.935277686286775, -7.0, -7.0, -7.0, -7.0, -3.786964259435733, -7.0, -3.0096936540397285, -7.0, -3.806044235748088, -2.91204482964487, -3.397888195011566, -7.0, -7.0, -3.097812407365289, -7.0, -2.8869007270739773, -3.387033701282363, -7.0, -7.0, -3.736077637003946, -3.166282067316571, -2.999739345106568, -7.0, -2.5635170413891246, -4.014478535326206, -3.218535505216528, -3.1104213464739563, -3.3601514477826377, -7.0, -7.0, -7.0, -7.0, -3.708420900134713, -3.8928734068887656, -3.3633701902513606, -3.6734816970733473, -7.0, -3.344915993352923, -7.0, -3.0750905299454705, -2.474788422887191, -7.0, -7.0, -3.100512820133382, -3.6679196853173615, -3.805228914203426, -7.0, -7.0, -3.1111504521226667, -2.6127838567197355, -3.6886867242841235, -7.0, -3.53731527311201, -3.709439574132411, -3.5581083016305497, -2.264414658552054, -7.0, -3.764325605625984, -2.45674800723797, -2.370547783660302, -2.4282848145774163, -7.0, -7.0, -3.0517954455579925, -3.071513805095089, -2.608659724353039, -3.5993917577937564, -3.3763031557559207, -3.146438135285775, -7.0, -7.0, -7.0, -3.227629649571009, -7.0, -3.8133808067338557, -3.7484206224675685, -2.922673567858554, -3.1914510144648953, -7.0, -7.0, -3.734399742520567, -7.0, -3.4985096555251327, -7.0, -7.0, -3.195415296209372, -3.5809249756756194, -2.667556714563343, -7.0, -2.4634105543773317, -2.9513875235064093, -7.0, -7.0, -3.705949194910296, -4.534580260907068, -3.433769833924866, -3.8392265740134355, -3.3092041796704077, -7.0, -3.4073909044707316, -2.835925995815466, -3.248218561190075, -7.0, -7.0, -1.5701063809221028, -3.651278013998144, -3.652149605401653, -3.0565237240791006, -3.6704314093606056, -7.0, -3.693345821666275, -3.4993662825855276, -2.0418017499967545, -7.0, -7.0, -3.222233240193911, -7.0, -7.0, -7.0, -3.4910253356282994, -3.7331169814420644, -7.0, -7.0, -7.0, -3.510935788737165, -7.0, -7.0, -2.8760734367725553, -3.749040268703457, -7.0, -3.272924057292105, -7.0, -3.820398522703982, -7.0, -7.0, -7.0, -3.764475027434409, -7.0, -3.0153082978203867, -7.0, -7.0, -7.0, -3.714497408649806, -7.0, -7.0, -7.0, -3.3973489661765908, -3.0835026198302673, -3.8881045768089613, -7.0, -3.2723986324554044, -3.079577084563666, -3.7196626830180466, -3.64704048585496, -3.423737249982329, -7.0, -3.5099414041582264, -7.0, -3.173259130501515, -3.436639631692661, -7.0, -3.4462782114390538, -7.0, -3.4642410809920987, -7.0, -2.77185461573938, -3.4834446480985353, -2.984377272063356, -7.0, -3.5046339471684735, -7.0, -3.6917885244026984, -7.0, -3.759365621655929, -3.6854730197227594, -7.0, -2.681467373533731, -3.1998922435263193, -7.0, -3.036162949823816, -3.5253363994486446, -3.4485903895359518, -7.0, -7.0, -3.685920792194535, -3.6648299411430907, -7.0, -7.0, -7.0, -3.7014816356209272, -3.1341416766583783, -3.1999744625304904, -1.9142927749289083, -3.608997110524758, -7.0, -7.0, -3.222629776969852, -2.8313898024336335, -7.0, -7.0, -3.79560197989418, -3.763951826033324, -7.0, -7.0, -7.0, -7.0, -3.680698029697635, -7.0, -7.0, -7.0, -3.22961548788786, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7056926965377035, -7.0, -7.0, -7.0, -7.0, -2.6247546453952175, -3.0267783286595296, -2.991373769787407, -7.0, -7.0, -2.96177253611023, -2.8343500464810347, -1.5884147590184967, -3.7136585162083566, -3.5400869155517314, -3.119420863442087, -3.379577433327807, -7.0, -4.143826390839561, -2.5489578218497693, -2.065426316232098, -3.4915017662373264, -4.042142183064956, -3.2771506139637965, -3.40840957846843, -7.0, -3.2663885100087673, -3.366298410485256, -3.832189461068513, -7.0, -7.0, -7.0, -7.0, -3.7637274037656985, -7.0, -3.497620649781288, -4.100025730107863, -3.2615007731982804, -7.0, -3.756560043006683, -3.345162048144411, -3.0341177793661886, -7.0, -2.6434340528243605, -7.0, -7.0, -7.0, -3.4766867429456445, -3.34001423485948, -3.86350130064145, -7.0, -7.0, -7.0, -3.329194415088451, -3.3897879863363913, -3.3623316518700257, -7.0, -7.0, -7.0, -2.843677615258588, -3.6151606643165564, -3.3892547068486483, -7.0, -7.0, -3.681693392004564, -7.0, -3.690993032099869, -3.6581545470672103, -3.232657347128563, -3.0306806639999015, -3.9170851906405675, -3.7101173651118162, -3.7048880192472238, -2.1261468749667998, -3.0105439709914843, -7.0, -7.0, -3.466919695714147, -3.157197642540677, -7.0, -3.4222614508136027, -7.0, -7.0, -3.706803097037338, -7.0, -3.792881745385397, -7.0, -7.0, -7.0, -7.0, -3.7062055418819706, -7.0, -3.6291036501771363, -7.0, -3.1237911669042013, -7.0, -7.0, -3.596637074866284, -4.4999481305756515, -4.356790460351716, -2.6386993909768344, -4.046799415055245, -3.1409320744245472, -2.8095971199565004, -3.156276496003016, -2.3837059250399273, -2.3224777264475276, -2.4885507165004443, -4.384443024058778, -3.7514176864921724, -4.237065952555404, -2.991215769578708, -2.957316474397634, -3.6681910080926476, -3.1645808501081465, -7.0, -3.7890869150880286, -7.0, -3.491809766592, -3.7574339899382694, -3.2798265817940147, -2.8823433932257045, -7.0, -3.8503836364759403, -4.288428094800999, -3.8000293592441343, -3.09491620426256, -3.6647594635811633, -3.7129021250472225, -4.400468911217488, -3.9929068182233123, -3.478566495593843, -7.0, -7.0, -3.73290281908457, -3.3840172121632652, -2.2613454218203253, -7.0, -3.1497577964089167, -4.039623193624272, -4.071145290451083, -1.4041818673690032, -2.5451008497880436, -3.5010592622177517, -2.910177095137938, -4.14370162942477, -7.0, -7.0, -3.337817621904792, -3.373346748955261, -7.0, -3.116870521097874, -4.030194785356751, -7.0, -2.5337297026542602, -7.0, -7.0, -7.0, -4.055055378965599, -2.8776494642934214, -3.812150663318405, -7.0, -7.0, -7.0, -4.129616245517439, -7.0, -4.567189427160923, -3.602548297999073, -7.0, -7.0, -4.098158983460533, -3.891286509038756, -4.112088634880837, -3.431202884556517, -3.465616508703862, -7.0, -3.457453809482078, -3.42739871208322, -7.0, -2.788780317525239, -4.498062314581983, -3.585686278452497, -4.510338154055093, -7.0, -3.9029270960172626, -4.348694190265541, -3.7750276000988445, -7.0, -7.0, -7.0, -7.0, -3.6652056284346006, -2.3037326193533505, -7.0, -2.4143634630235606, -7.0, -3.078239253809666, -2.9383695974518065, -2.53315637946727, -7.0, -7.0, -2.728669353880582, -7.0, -3.7105794809614463, -2.8714137075030672, -3.7038070652743285, -7.0, -3.543074235033532, -3.790988475088816, -3.9398186628213794, -7.0, -3.699230502883409, -3.3040594662175993, -7.0, -7.0, -7.0, -3.171901890731724, -7.0, -2.333813535941105, -7.0, -2.2373947775919705, -3.296375963121168, -3.1167127610047314, -2.400865826995819, -7.0, -3.835817354293473, -3.062923679353503, -7.0, -3.8449739381468877, -7.0, -3.279134394034571, -2.17947947504115, -7.0, -7.0, -3.812779707008964, -3.27630858685576, -3.1031681798660387, -7.0, -3.2874284643448046, -3.1300924267372516, -7.0, -3.4741433897608056, -2.605336740684594, -3.693265155714742, -7.0, -3.1000257301078626, -3.8670548004767014, -3.7859701251320095, -1.8177411126078982, -3.697665162647674, -7.0, -2.930657997829841, -2.889371744355007, -2.7615760296211613, -3.1438263908395614, -2.948521634484761, -3.7558748556724915, -3.7033773685123497, -4.04680721355374, -3.6979264448065052, -3.6994908452722046, -7.0, -3.192428055331207, -2.9033404692531812, -2.9000548550626433, -7.0, -2.9326851104800995, -2.465887682029916, -3.2160602859231417, -7.0, -3.6864217498793677, -3.543633532576258, -3.376622573828982, -3.4389377010955284, -2.625958853800841, -2.9832753825780216, -7.0, -7.0, -3.6634182122526795, -7.0, -3.5277587525209717, -2.5178867997228385, -3.2414634653077736, -2.75960489889897, -2.3630117907552672, -3.792461731346951, -3.1223329230065637, -3.7489296824118883, -7.0, -2.991289379312154, -7.0, -7.0, -7.0, -3.2293746309288434, -3.3380080224113904, -2.9960249585742633, -7.0, -3.166578109919652, -3.7293268096468606, -2.8472866865744257, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6638892986226614, -3.372819981678968, -2.0140705937929684, -7.0, -3.7844033017530085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3376588910261424, -7.0, -4.22816928953985, -3.391949041795651, -3.9342964068194055, -7.0, -7.0, -3.875234946450165, -7.0, -7.0, -4.074194530401818, -7.0, -7.0, -3.871689665685515, -3.2285286773571817, -3.8218409272004545, -7.0, -7.0, -7.0, -7.0, -3.3317814715707588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603406927683195, -7.0, -7.0, -7.0, -2.493635707293855, -4.219951085755317, -7.0, -7.0, -7.0, -7.0, -7.0, -3.265034129608875, -7.0, -7.0, -7.0, -3.9287053536862415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.867673684585095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.525044807036845, -7.0, -7.0, -7.0, -3.7271813855153857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.609033839731001, -7.0, -7.0, -3.814180981040187, -7.0, -7.0, -3.485579476984679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8531199842175665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4750898033890065, -4.223259000239877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.101861587983128, -7.0, -7.0, -3.147770834093524, -2.7950685767307784, -3.730822635731648, -7.0, -7.0, -3.469822015978163, -7.0, -3.131297796597623, -7.0, -7.0, -3.204150140947795, -3.132579847659737, -7.0, -7.0, -7.0, -7.0, -3.4292676664331685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.241795431295199, -4.390210679109047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8808135922807914, -2.7730165474997395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.336059277866349, -7.0, -3.111262513659065, -4.30612467073653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.041037207867029, -7.0, -3.6860102913152857, -7.0, -7.0, -3.895919545310016, -7.0, -7.0, -7.0, -7.0, -3.845098040014257, -7.0, -7.0, -7.0, -4.545517407601492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.780574677287544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9380691862233856, -7.0, -3.9860547807696953, -7.0, -7.0, -4.312617738422503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.214578953570499, -7.0, -3.9652957958116564, -7.0, -3.0248764311607497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.361954365353462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.141041940939049, -4.022943189333239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.321045804996277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6817687053632726, -7.0, -7.0, -7.0, -3.2702128548962426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3930484664167784, -7.0, -7.0, -7.0, -7.0, -4.0913823431266625, -7.0, -7.0, -4.292322539914916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096132734983064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1172712956557644, -4.013589510501978, -7.0, -4.428283507479297, -7.0, -7.0, -4.542705118606488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5070053327802775, -7.0, -7.0, -4.598287002254073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292577241855888, -4.580856577457996, -7.0, -7.0, -4.0088768399046995, -7.0, -4.998939026549519, -7.0, -7.0, -4.676117215671485, -7.0, -4.042260406689452, -7.0, -7.0, -5.0874122525691, -7.0, -4.5354460332310165, -4.113976758289846, -7.0, -4.660789612079682, -4.1933472563864616, -7.0, -4.077222510411053, -7.0, -4.378634063849602, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6624745037503095, -7.0, -7.0, -5.067100626711813, -7.0, -7.0, -7.0, -2.798650645445269, -3.3549748484830855, -7.0, -7.0, -7.0, -4.3619119001023545, -3.9047515997788804, -7.0, -3.839336611526406, -3.2364112877439664, -7.0, -7.0, -7.0, -7.0, -7.0, -4.515679603561216, -3.56902823202862, -5.104597207395862, -7.0, -3.711638538232349, -7.0, -4.956821302879551, -7.0, -4.063345302141709, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784695729544385, -7.0, -3.442819337136645, -3.8230175234460493, -7.0, -3.168371192294914, -7.0, -4.09977433523932, -4.656232400322034, -2.6334684555795866, -5.348078893239702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9957813970840017, -7.0, -3.8903371700735754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.488748078231586, -7.0, -7.0, -3.9501213475113732, -7.0, -7.0, -7.0, -7.0, -3.7800291273373383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.997779430865604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.745794763999385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.82020145948564, -7.0, -7.0, -7.0, -4.33219599532464, -3.6445370577784075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.532818053867167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188084373714938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.880127322216625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.874713688757779, -3.890756251918218, -3.2011525290622598, -3.0007593511047372, -7.0, -7.0, -2.7496590320949, -3.1599617587551454, -7.0, -7.0, -7.0, -3.8716313045375537, -7.0, -3.114429004559742, -3.8623103099542706, -7.0, -7.0, -3.424160601435651, -7.0, -7.0, -7.0, -3.951386094880293, -7.0, -7.0, -3.9045965441868544, -7.0, -7.0, -7.0, -7.0, -7.0, -3.877544107715944, -3.6949998327470954, -7.0, -7.0, -7.0, -3.421687667043168, -7.0, -7.0, -3.954821183051793, -7.0, -3.749620385199933, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3993770046747547, -7.0, -3.5704845630444004, -3.4173720348523213, -3.4095386431415404, -7.0, -7.0, -7.0, -3.9045532629767727, -7.0, -7.0, -3.8949249773595436, -3.7223459424755814, -3.5449481493514257, -7.0, -7.0, -7.0, -7.0, -2.5813166329516766, -7.0, -7.0, -3.377533904520968, -3.9710097463947083, -7.0, -7.0, -7.0, -7.0, -4.157819284417298, -7.0, -7.0, -7.0, -3.6827315646221837, -7.0, -7.0, -3.1696744340588068, -7.0, -7.0, -2.719600072489159, -3.058510378051891, -3.0337754719836787, -7.0, -7.0, -3.199618067707931, -3.936714758211204, -3.967032882158702, -3.4268364538035083, -7.0, -2.752069221992837, -7.0, -7.0, -7.0, -4.211307466668955, -7.0, -3.9660478210764536, -7.0, -3.5691397254724593, -3.4461274752593476, -7.0, -3.878694100396108, -7.0, -3.442061474322838, -3.41355121317555, -7.0, -7.0, -3.9552065375419416, -7.0, -3.4448641829020725, -7.0, -3.4923811883797753, -2.9517478499695864, -7.0, -7.0, -7.0, -3.744251796297106, -7.0, -7.0, -7.0, -7.0, -3.8950355974523228, -3.6497728273006773, -7.0, -7.0, -7.0, -3.5254191616179096, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6421181336945816, -4.087000120795991, -2.743468503554877, -3.222233240193911, -3.895919545310016, -7.0, -7.0, -7.0, -7.0, -4.260953398104103, -7.0, -7.0, -7.0, -7.0, -3.1569249469842195, -7.0, -7.0, -7.0, -3.620656479819621, -7.0, -3.9226735678585545, -7.0, -7.0, -3.1197741686235183, -7.0, -3.3128420159505105, -3.932220013877119, -3.5873180145140675, -3.462447414804264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7147152555189096, -7.0, -3.1283633632585737, -3.5088812018638897, -7.0, -3.763951826033324, -3.552262522965547, -7.0, -7.0, -3.6270584640009895, -7.0, -3.914290255665949, -7.0, -7.0, -7.0, -2.6780629049743454, -7.0, -3.243781916093795, -7.0, -3.097589246848332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092860943338818, -7.0, -7.0, -7.0, -3.993715382561762, -4.145631415290328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008515007631455, -3.5394740847701684, -7.0, -7.0, -3.889525796671191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.27629172965034, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6334011178816605, -3.64969175532189, -7.0, -7.0, -7.0, -4.439616866317564, -7.0, -3.1356414163866684, -7.0, -3.5890704473162565, -7.0, -7.0, -7.0, -3.2213881533063446, -2.7477648067532146, -3.902601130666531, -7.0, -4.1386184338994925, -7.0, -7.0, -7.0, -3.9182925127553556, -7.0, -3.200759326791928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7083359026822635, -7.0, -7.0, -7.0, -3.584911607443614, -3.124148391564148, -3.395209866510588, -3.2130859041084054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.112437417321844, -7.0, -7.0, -7.0, -3.0854568236758046, -4.154271775993095, -7.0, -7.0, -7.0, -2.8181216671068587, -3.739809599021359, -7.0, -3.893040111957118, -7.0, -7.0, -3.9514832307522934, -7.0, -2.624429439172757, -7.0, -7.0, -7.0, -3.5948895496460347, -3.5952757118020995, -3.3803921600570273, -3.419530098342456, -7.0, -7.0, -2.5567109823851264, -7.0, -7.0, -7.0, -7.0, -4.012162067970823, -4.11143055176598, -7.0, -7.0, -7.0, -7.0, -3.970114322285097, -3.8783494222177755, -7.0, -7.0, -7.0, -7.0, -3.6844413876256064, -7.0, -7.0, -3.710390065701603, -3.078344753114982, -3.9290270323599734, -3.264660441423504, -4.465650484743692, -3.529059442918842, -3.8568496787251725, -3.262394129341876, -3.537320524271039, -3.5134040668646405, -7.0, -3.2544352796249596, -3.99392829901039, -4.248410612082095, -3.8076509790725868, -4.1487876840563125, -2.999130541287371, -3.3881252141814175, -4.245092976101281, -3.834944974149341, -4.024690862355431, -3.607339126707328, -3.232165670553036, -3.2887919939714223, -3.8142031870727573, -4.450526229129723, -4.417894986250287, -3.743568555128344, -7.0, -3.478809087081396, -3.724808168565719, -4.133403170134419, -3.6670947846969737, -4.350616236975831, -7.0, -3.8002128574963217, -3.6800634274819486, -3.6431441191148397, -3.867663867912998, -3.7264011621029223, -7.0, -3.4503949834196197, -3.585485404630345, -3.6847556221086237, -3.5780276351697315, -4.449370390682258, -7.0, -3.1246501914547884, -3.7445276734725663, -7.0, -4.060118394661378, -3.5623104914749812, -3.290837234488692, -7.0, -3.4923539602839244, -3.6518269976896685, -7.0, -4.115677065115837, -3.5801120504438124, -7.0, -7.0, -3.4523625686594706, -3.2717254694902382, -3.0670446953285406, -7.0, -7.0, -7.0, -3.8109892965113796, -2.993741367349005, -3.617343218781815, -7.0, -3.76585474746579, -7.0, -4.444279064276847, -3.8309862157427426, -3.7498007079602984, -3.1895304166110634, -3.5872244024425086, -3.6437815628948647, -4.031059878820723, -3.3188977146274867, -7.0, -3.470695247147661, -4.142474385719971, -7.0, -4.214501346733814, -7.0, -4.030923399627219, -3.8304145127503877, -4.123410591862496, -7.0, -7.0, -7.0, -7.0, -7.0, -3.144035046172394, -3.959232249050996, -3.1396823505057303, -3.874365835730049, -7.0, -3.614565797008349, -7.0, -3.9464031338990546, -7.0, -3.491571785500985, -7.0, -3.611498388544544, -4.03909671044145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5303277897780863, -7.0, -3.1534083167071616, -7.0, -7.0, -2.392715859055194, -4.003745460946834, -3.719630829001067, -7.0, -7.0, -2.9334310430151227, -7.0, -3.142880875861225, -7.0, -3.4495298223692266, -3.245107089975072, -7.0, -7.0, -3.965624967109243, -3.9249508889156104, -3.764475027434409, -7.0, -7.0, -3.433503150169539, -7.0, -3.3372595397502756, -3.1031719432008473, -3.874713688757779, -7.0, -3.41073506681745, -3.100801179244967, -7.0, -3.2388820889151364, -7.0, -7.0, -4.1673468775856355, -3.6509870943834453, -3.314732439818183, -3.208710019906401, -3.730338067221792, -7.0, -7.0, -3.841265592625782, -7.0, -4.105680462945809, -7.0, -3.953131225183445, -3.5173608721141245, -3.9198100201701958, -7.0, -3.6380230970734444, -3.1628893293628004, -4.040285798932492, -7.0, -4.431958501037113, -7.0, -7.0, -7.0, -3.643329279843248, -7.0, -7.0, -7.0, -7.0, -7.0, -4.172033422048232, -7.0, -3.4244460353087876, -7.0, -3.7059919299146995, -7.0, -4.328827939014281, -3.3443302124067187, -3.579859781948451, -3.0279382361570777, -7.0, -7.0, -7.0, -3.049605612594973, -4.059108817913594, -3.7661524898594236, -7.0, -3.2359827034818394, -3.2092468487533736, -3.7223047868743278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8182588934606265, -7.0, -3.9458623244896174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9279346817411795, -3.5150344563229545, -7.0, -4.054498146636677, -3.8938726787950815, -7.0, -3.311160272879129, -7.0, -7.0, -3.3044224938606197, -7.0, -7.0, -4.007875743767586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.902989544778925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8615344108590377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.839114761318349, -2.3631417096979495, -7.0, -7.0, -3.26528962586083, -3.0576661039098294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1405677465691895, -7.0, -2.507855871695831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305098674154982, -7.0, -3.891258616904139, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4467235195682013, -7.0, -7.0, -7.0, -7.0, -3.7131544018372984, -7.0, -7.0, -7.0, -4.823607887833184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2005769267548483, -7.0, -4.5308039590378035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.962274604623315, -7.0, -7.0, -7.0, -3.605197267388378, -4.373794416714731, -7.0, -7.0, -7.0, -7.0, -3.6814764165313454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7526245626267665, -7.0, -7.0, -7.0, -4.515754661190856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.146902869928199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.509202522331103, -7.0, -7.0, -7.0, -4.237757314269729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.753006681086235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.210853365314893, -7.0, -7.0, -7.0, -7.0, -3.2843805959453753, -7.0, -3.654850090561394, -3.5569052690554477, -2.621868384681515, -2.5451008497880436, -3.1389339402569236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.723044991643445, -3.2979792441593623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8984509191983747, -3.5531545481696254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.64033234004778, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.597146487833695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5309293146403204, -7.0, -7.0, -7.0, -7.0, -7.0, -3.980821166644336, -7.0, -3.6475296664449806, -3.3933119147002, -7.0, -7.0, -7.0, -7.0, -7.0, -3.418135498425232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.465489074876098, -7.0, -7.0, -7.0, -5.131114795848502, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9552065375419416, -7.0, -7.0, -3.4690852991231202, -7.0, -7.0, -7.0, -7.0, -5.828247959133625, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2885845449672853, -2.433769833924866, -7.0, -7.0, -7.0, -3.2657609167176105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.081635301502951, -5.574130275583126, -7.0, -7.0, -4.239412105741857, -2.800946076169, -7.0, -7.0, -2.5888317255942073, -2.2431758980706937, -2.986473147467338, -2.9999131324165713, -2.055712716407559, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9546697001875133, -7.0, -2.303196057420489, -7.0, -4.769982552929515, -7.0, -7.0, -7.0, -4.067163882602843, -7.0, -4.28657995889235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.578237961160632, -7.0, -4.671163582606086, -4.921197293721232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.463011566814714, -3.8705209500127644, -7.0, -7.0, -7.0, -5.234808234198132, -7.0, -7.0, -7.0, -4.660414829692979, -4.678117587090789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.990436537856399, -5.186545283736885, -7.0, -7.0, -3.18620267890855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.479798374009022, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.942271031757259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.79256327196696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505963518018126, -7.0, -7.0, -7.0, -7.0, -7.0, -3.880927865267085, -7.0, -4.346781188909013, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7993405494535817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.627775375229303, -7.0, -7.0, -7.0, -7.0, -3.7134065321676912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.525912528568072, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.390352125833223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2377949932739227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727424670452742, -7.0, -7.0, -7.0, -7.0, -3.5117229764819804, -7.0, -2.965201701025912, -7.0, -7.0, -7.0, -7.0, -3.583368829892705, -7.0, -3.3609718837259357, -4.094671400641696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.263559143134499, -7.0, -7.0, -7.0, -7.0, -2.6890867704039234, -7.0, -3.176958980586908, -7.0, -3.3494717992143856, -7.0, -3.6225248624035684, -7.0, -7.0, -7.0, -2.792391689498254, -3.6370892735303304, -7.0, -7.0, -3.497758718287268, -7.0, -3.2329961103921536, -3.8289443929399845, -7.0, -3.299670700401256, -3.7907776013376937, -7.0, -7.0, -7.0, -3.0187004986662433, -7.0, -7.0, -2.41077723337721, -7.0, -7.0, -3.449756012062128, -7.0, -2.6720978579357175, -3.3944516808262164, -7.0, -2.8832557420069715, -3.3268476989159903, -7.0, -3.4222614508136027, -3.8029332792535846, -7.0, -7.0, -7.0, -7.0, -3.873843533223436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151058141571291, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6712037083191547, -7.0, -7.0, -7.0, -3.971461405024587, -7.0, -7.0, -7.0, -3.3245910857609267, -7.0, -1.105510184769974, -1.8075350280688534, -2.6229044753882, -7.0, -3.6057897198025644, -7.0, -7.0, -3.0242803760470798, -3.5390760987927767, -7.0, -7.0, -3.4728149362181027, -4.453081248423912, -7.0, -7.0, -7.0, -4.692719166818034, -7.0, -7.0, -3.300378064870703, -7.0, -2.9777236052888476, -3.997648454896206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.027308827035546, -3.7255032688593155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2767899450894244, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9391322086815177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.911512714632127, -7.0, -2.9542425094393248, -3.57362573693412, -7.0, -7.0, -3.369136089849646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.443262987458695, -7.0, -4.279393142747864, -7.0, -3.7166709755601355, -3.681116090173446, -7.0, -2.973589623427257, -3.5798978696031036, -7.0, -3.3637999454791094, -7.0, -3.2564772062416765, -2.81424759573192, -3.197831693328903, -3.148294097434746, -7.0, -3.660770643527697, -7.0, -3.64777405026883, -2.807083812982132, -4.04008784346988, -7.0, -3.595606434865603, -7.0, -2.9751253198007745, -2.9375178920173464, -3.1997551772534747, -2.533390708017551, -7.0, -3.4376713047707286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.690196080028514, -7.0, -3.9090744014009045, -3.576341350205793, -7.0, -5.411900728116946, -7.0, -7.0, -2.929929560084588, -7.0, -7.0, -7.0, -3.017450729510536, -3.2161659022859928, -2.730513112669299, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.942345430798429, -7.0, -7.0, -7.0, -2.7895807121644256, -2.5136614370834756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.511214701136388, -7.0, -7.0, -2.558708570533166, -4.01311120759659, -7.0, -4.056256735850139, -7.0, -4.409552737891461, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9581336756762355, -3.7113853790984517, -7.0, -3.182129214052998, -7.0, -7.0, -3.1405080430381793, -7.0, -3.4204508591060683, -7.0, -7.0, -7.0, -7.0, -2.003245054813147, -7.0, -7.0, -3.4483971034577676, -7.0, -2.823800153749878, -2.887898488096872, -4.177449920971824, -3.5885518064856425, -7.0, -3.807467375684278, -7.0, -3.02201573981772, -3.5809249756756194, -7.0, -7.0, -7.0, -3.4807253789884878, -3.2730012720637376, -7.0, -7.0, -5.527343068717591, -3.866995813110648, -7.0, -7.0, -7.0, -3.7506626461340558, -7.0, -7.0, -2.4819201376014313, -7.0, -7.0, -3.0081741840064264, -7.0, -3.3927848582254354, -2.683947130751512, -3.0835026198302673, -7.0, -7.0, -3.856589942245573, -7.0, -4.833870622926967, -7.0, -7.0, -4.240228817121457, -3.469895618975018, -7.0, -7.0, -7.0, -3.529045170765769, -3.478566495593843, -3.113692725494897, -3.3106933123433606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8549130223078554, -3.5990775713183476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.57890268604763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0461047872460387, -7.0, -5.065826106006714, -3.8818409683249273, -7.0, -7.0, -7.0, -4.633228517359263, -3.5121505369220305, -3.181986424480151, -7.0, -4.661344076016006, -4.378851946448881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.991305836741952, -5.01072810239044, -5.229245708098079, -7.0, -3.3805730030668872, -7.0, -7.0, -7.0, -5.104222425149045, -4.074157919697316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.596816935915591, -7.0, -2.9965116721541785, -4.642202281545473, -7.0, -7.0, -5.0463780880482725, -7.0, -7.0, -4.6072405038317426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.181757863468677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495690002957289, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.772028165324855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.09428591129531, -7.0, -7.0, -7.0, -3.632001499438424, -7.0, -3.452706226511029, -7.0, -7.0, -4.248953615495708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.09377178149873, -7.0, -3.2550311633455515, -7.0, -7.0, -7.0, -7.0, -3.5052856741441323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.201020416357374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4959603948817053, -7.0, -7.0, -3.787956123283932, -3.9307249527694874, -3.6094876898532853, -7.0, -3.826722520168992, -7.0, -3.72956972630197, -7.0, -3.7281913985899466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0512683188703855, -7.0, -7.0, -3.943383207499316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092738184494764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.895215295030033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1451964061141817, -7.0, -7.0, -7.0, -7.0, -3.3794868137172736, -7.0, -7.0, -3.2000292665537704, -3.4280132393845557, -7.0, -7.0, -3.1122697684172707, -4.213862930386819, -3.928447063209182, -7.0, -7.0, -7.0, -7.0, -7.0, -3.095924494839391, -3.621954820044902, -7.0, -2.6088550445640686, -3.3792032148334132, -7.0, -7.0, -7.0, -2.534026106056135, -7.0, -7.0, -3.8697420092806674, -3.2641091563058082, -7.0, -7.0, -2.397070549959409, -3.1256438923573917, -3.130976691605617, -2.5684364144168854, -7.0, -2.5643701225153204, -7.0, -3.160602945517803, -7.0, -7.0, -7.0, -7.0, -3.1005428500124648, -7.0, -2.3550682063488506, -7.0, -2.8221680793680175, -2.478566495593843, -3.1711092027326977, -2.7584071921878865, -3.3368098301850244, -2.9923009843277657, -7.0, -3.2340108175871793, -2.9323469078099147, -7.0, -3.2638726768652235, -7.0, -7.0, -3.220108088040055, -7.0, -3.012897455546667, -2.8003733548913496, -7.0, -3.2027606873931997, -7.0, -3.7834747875822465, -2.7910763089412547, -7.0, -7.0, -4.013572858585068, -3.080987046910887, -1.9009736852940384, -7.0, -7.0, -3.612200875449579, -7.0, -3.1562461903973444, -7.0, -2.690449239162411, -7.0, -3.100140698866152, -3.318585010078825, -2.067832201725068, -7.0, -3.27741564211462, -7.0, -4.046612209068446, -3.0729847446279304, -7.0, -7.0, -2.484121813321787, -7.0, -7.0, -7.0, -3.470675044798936, -7.0, -3.04766419460156, -3.041392685158225, -2.2913862643725498, -2.360593413565249, -7.0, -7.0, -3.3922571613416745, -3.1855067412708022, -2.0822328327331365, -2.0511525224473814, -0.5110851068304926, -3.325310371711061, -3.0535498669727867, -2.777909908625889, -7.0, -2.973897197435795, -2.664433029445815, -3.3939260065858368, -2.4121003861250876, -2.290344610356955, -3.416799311183304, -7.0, -7.0, -3.212453961040276, -4.09373240974699, -3.2971036501492565, -3.237292337567459, -2.205241708157455, -7.0, -7.0, -3.711807229041191, -7.0, -7.0, -7.0, -3.778060762940478, -7.0, -7.0, -7.0, -2.486430478854434, -3.042181594515766, -4.055416559840489, -3.7801011914679115, -3.5719125414899997, -7.0, -7.0, -7.0, -7.0, -2.2767899450894244, -7.0, -3.7797407511767407, -3.566319621524811, -3.044539760392411, -3.1420764610732848, -7.0, -3.6468079319099638, -7.0, -7.0, -7.0, -3.3346547668832414, -7.0, -3.036628895362161, -7.0, -3.1987945001755986, -7.0, -7.0, -3.4368514568313087, -7.0, -7.0, -3.032621824494491, -2.8606374167737547, -7.0, -7.0, -2.760422483423212, -7.0, -7.0, -7.0, -2.2796766501460075, -7.0, -4.295347148333618, -7.0, -7.0, -2.3400879818480997, -7.0, -2.527871466363005, -2.0675015484085564, -2.4301557119700194, -2.0254521662538254, -3.358886204405869, -7.0, -3.0034605321095067, -7.0, -3.0908750112031753, -2.5757649805367193, -7.0, -7.0, -7.0, -3.4216039268698313, -7.0, -7.0, -3.7971636301993072, -7.0, -2.6273658565927325, -3.1981069988734014, -7.0, -2.666829861704301, -7.0, -3.791901080009571, -7.0, -7.0, -7.0, -4.06781451116184, -3.4143604491198576, -7.0, -2.5607034958686796, -2.66838591669, -7.0, -3.1061908972634154, -2.391816923613249, -7.0, -2.720159303405957, -2.9905854869038913, -3.3502480183341627, -3.5502589360966827, -4.810429116115286, -7.0, -3.1583624920952498, -7.0, -2.6954816764901977, -3.0472748673841794, -7.0, -2.3639252106896413, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1283992687178066, -7.0, -7.0, -2.4247001891741125, -3.690422523774704, -7.0, -7.0, -7.0, -7.0, -1.9650971273480884, -1.800717078282385, -7.0, -3.230704313612569, -7.0, -2.6232492903979003, -7.0, -1.94485265185328, -2.7846172926328756, -7.0, -7.0, -4.3289297689479, -7.0, -3.9402549330205634, -2.9344984512435675, -3.938344571118097, -7.0, -7.0, -7.0, -3.542908378823037, -3.7895102040902544, -3.2123208031419757, -2.4862439983320517, -3.879038505237237, -3.0474695746198566, -2.9222062774390163, -3.087781417809542, -2.620344299754493, -2.1095910447671455, -2.619484645699233, -7.0, -2.8369567370595505, -7.0, -7.0, -2.220854940299613, -7.0, -7.0, -2.728974100564831, -7.0, -3.529430354366986, -2.3086614084208055, -3.7188879682162526, -3.9278321328665817, -7.0, -3.823235062261409, -7.0, -2.3399480616943507, -3.655330558009341, -7.0, -2.808840907011731, -3.28454352295875, -3.830203598925704, -7.0, -7.0, -3.470704429722788, -4.32364327898043, -2.7294887691795613, -3.040602340114073, -7.0, -7.0, -3.0235268086522495, -3.379758615842701, -3.1622656142980214, -3.2111205412580492, -3.5085297189712863, -7.0, -7.0, -7.0, -3.752432609261474, -3.225309281725863, -2.9827233876685453, -3.6823256186678073, -2.7471527595745955, -4.161960634305219, -3.2521592696791632, -4.4777190114253855, -7.0, -2.629728066875223, -4.118227513429574, -2.705007959333336, -7.0, -7.0, -7.0, -3.1344958558346736, -3.8282731120520697, -2.3208136900393996, -2.9626849566736677, -7.0, -7.0, -2.8945929479229555, -7.0, -2.1665108452278266, -2.757649040441254, -2.7490488686793366, -2.676388734581175, -2.6973500751374315, -7.0, -7.0, -4.301268791966063, -7.0, -7.0, -7.0, -7.0, -4.083735471103647, -7.0, -3.9955803559735865, -3.98083251407348, -7.0, -7.0, -7.0, -4.724161135149409, -4.699508195883737, -3.986402202925147, -7.0, -4.202333898012999, -4.08073983803469, -7.0, -7.0, -7.0, -5.389102264976264, -7.0, -7.0, -7.0, -7.0, -4.664284616658668, -4.203522416822585, -7.0, -4.477887831360864, -4.177276711258586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9216968776220655, -3.2610248339923973, -3.7729539810278334, -3.26867453046004, -1.9929312832109043, -7.0, -4.341474094026657, -7.0, -3.7184236754355378, -4.020029633542699, -7.0, -4.451279718904047, -4.06258668435946, -4.209157423347539, -7.0, -7.0, -3.8615344108590377, -7.0, -3.836387419326411, -4.384640100826291, -7.0, -7.0, -3.4143399064296043, -3.9702552789348484, -5.10491283211916, -7.0, -2.9628426812012423, -7.0, -4.004273593983716, -7.0, -4.929342278748438, -3.7983743766815614, -4.234137489450963, -7.0, -7.0, -7.0, -4.1852233285961535, -7.0, -3.4523743044357436, -3.244091485200853, -4.123546765923394, -3.349818497045375, -3.2314695904306814, -3.3901055464932925, -4.658001851618553, -3.026328938722349, -4.503677864643271, -7.0, -7.0, -3.8365561838816618, -4.309289410655256, -7.0, -7.0, -7.0, -7.0, -7.0, -3.097459771245042, -3.1630122097748297, -3.5994190676181264, -7.0, -7.0, -3.178228510935771, -7.0, -3.422917980767662, -7.0, -3.7938602013426697, -7.0, -3.801520329527164, -3.6767850304192056, -7.0, -7.0, -4.146686055647526, -7.0, -7.0, -7.0, -7.0, -3.3439990690571615, -7.0, -3.2314695904306814, -3.0870712059065353, -2.9978230807457256, -7.0, -4.038023740045158, -7.0, -7.0, -4.60339339779644, -3.1985979337016874, -4.792391689498254, -7.0, -7.0, -3.064036594084469, -7.0, -3.2487087356009177, -7.0, -7.0, -3.4876567673027137, -7.0, -7.0, -7.0, -3.346744054604849, -7.0, -3.1863912156954934, -3.0731682622651015, -3.2907022432878543, -7.0, -2.922033079238554, -3.411325026421723, -7.0, -7.0, -3.0115704435972783, -2.9897834198968223, -7.0, -3.688034006672403, -7.0, -7.0, -7.0, -7.0, -3.375097154242902, -3.2453892711712102, -3.658964842664435, -2.5047620421780743, -7.0, -7.0, -7.0, -3.8171685723810556, -7.0, -3.4449811120879446, -3.2414219517119953, -7.0, -7.0, -3.2331865486683484, -3.274800178065412, -3.6795187436957892, -2.9909305367345755, -4.017951068830742, -7.0, -3.1812002415449867, -7.0, -7.0, -3.718169405391307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.251638220448212, -7.0, -3.2582969314691157, -3.4394905903896835, -7.0, -3.650974968502697, -7.0, -3.0567778460769324, -7.0, -3.0818871394235496, -7.0, -3.2247056756774772, -3.721563318357481, -3.739097446117475, -7.0, -3.3848907965305544, -7.0, -3.6277924301285536, -7.0, -7.0, -7.0, -7.0, -3.085290578230065, -7.0, -7.0, -3.8433573784379558, -7.0, -3.4211101297934343, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1869563354654122, -7.0, -7.0, -3.8279827974620537, -7.0, -7.0, -7.0, -7.0, -3.130226522048751, -7.0, -7.0, -3.8080082999104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.056714329516394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3291766074285367, -3.500840004617788, -7.0, -7.0, -7.0, -3.087652374729733, -7.0, -7.0, -7.0, -7.0, -7.0, -4.034454650590254, -3.787011542449596, -7.0, -3.3393662493327336, -3.1521773211707567, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4580710082030826, -3.6941972918756796, -7.0, -4.049876719873882, -7.0, -4.060886623004662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8512670869507213, -7.0, -7.0, -7.0, -3.122616300689269, -4.177421057483169, -7.0, -7.0, -7.0, -7.0, -4.094121595840561, -3.271552391372932, -7.0, -7.0, -3.382145741488806, -4.061226225119115, -7.0, -4.127978988916909, -7.0, -7.0, -7.0, -4.050263722645796, -7.0, -7.0, -3.8116420214531512, -7.0, -7.0, -4.120244795546365, -7.0, -3.904985881099363, -4.174844493655455, -7.0, -4.125611371897464, -4.044795967995919, -7.0, -7.0, -7.0, -4.055913223916149, -4.2598088229546285, -4.104691918900206, -7.0, -7.0, -4.128463891064761, -7.0, -7.0, -7.0, -7.0, -4.092018470752797, -3.613178490533262, -4.149865453026261, -3.8477165775931805, -7.0, -7.0, -4.124439010556526, -7.0, -7.0, -3.8603080541945616, -7.0, -3.7920237843502926, -7.0, -7.0, -7.0, -4.302633919813779, -7.0, -7.0, -7.0, -7.0, -3.8394277643497237, -7.0, -7.0, -7.0, -3.6059870244750725, -3.9410266803683305, -7.0, -7.0, -7.0, -3.850278552518037, -7.0, -7.0, -3.5044028924681587, -3.682886110945385, -4.063858548853072, -7.0, -7.0, -3.8343133885293947, -7.0, -4.1288514233467835, -7.0, -7.0, -7.0, -4.008600171761918, -7.0, -7.0, -7.0, -3.4898179083014504, -7.0, -7.0, -7.0, -7.0, -7.0, -4.329580915741898, -4.204798038190855, -2.948639974821173, -3.4910253356282994, -7.0, -4.260953398104103, -7.0, -7.0, -3.7797407511767407, -7.0, -3.9386698010226793, -7.0, -7.0, -7.0, -3.356475224645445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.260190683269962, -7.0, -7.0, -3.113629861278211, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.132922612520788, -7.0, -3.3938091036290334, -7.0, -4.201888500365973, -2.8159078076841455, -3.372322729498556, -3.2846844681720415, -3.6844563563292083, -3.6078837443569896, -3.3361594264847807, -7.0, -7.0, -4.079759919660093, -7.0, -7.0, -7.0, -4.184379080658596, -7.0, -7.0, -3.8005796215691303, -3.668572269184558, -7.0, -3.750720476243363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.209273672784876, -4.110320296840297, -7.0, -7.0, -3.045609805328916, -3.551035024150877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4962606330422306, -7.0, -3.0407281730739686, -4.230437383990212, -7.0, -7.0, -7.0, -4.078746734273607, -7.0, -7.0, -3.805908455074197, -4.091842749738098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.797959643737196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9218684769454404, -3.280932298017133, -7.0, -7.0, -7.0, -4.01871436480765, -4.1041455505540085, -3.697490887171057, -7.0, -3.7135255428507334, -7.0, -7.0, -4.056371179475529, -7.0, -7.0, -3.995393852839795, -7.0, -4.244697601296708, -4.087461966171819, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7906369619317033, -7.0, -7.0, -3.8046845149069406, -7.0, -7.0, -4.088384186097703, -3.32554243338228, -3.2245330626060857, -7.0, -3.397201079785138, -7.0, -7.0, -3.8608767964032977, -4.098436045340363, -3.5157634906474584, -4.141481129270804, -7.0, -7.0, -7.0, -3.635148513697608, -3.449312025702321, -7.0, -7.0, -7.0, -7.0, -3.6110857334148725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1945975852425095, -7.0, -3.4740705032150436, -7.0, -7.0, -4.013842737528274, -3.8455445133344206, -3.4386348677898724, -7.0, -7.0, -3.9146339999844666, -7.0, -7.0, -7.0, -7.0, -3.671697259882356, -3.922465945298413, -7.0, -7.0, -7.0, -7.0, -4.118661462854496, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151277893904123, -7.0, -7.0, -4.097048965011131, -3.4632831558237545, -4.466689715873475, -7.0, -3.060970500071584, -3.3301980946221676, -7.0, -3.3729032398776235, -2.8831034194905643, -4.303671144664021, -4.164531296305431, -3.2325584913806904, -2.917381115415925, -2.995690520245701, -3.169077441109013, -3.4254119356933157, -3.284408172506199, -3.4427840098483937, -3.4268364538035083, -3.1313396623596357, -3.555880064636805, -2.738377285252023, -3.5655822041542033, -3.3710094985094377, -3.1375961048304024, -2.7480927765437277, -3.448103143768015, -3.41427122809658, -4.1091734214254725, -3.0254051779754487, -3.6202922479198407, -3.056576055470881, -2.8369842214428083, -3.377008051526662, -4.099335277685958, -3.3151876434820333, -2.957463615729931, -3.0339372775416797, -3.5104947417324657, -3.9357339265238256, -7.0, -3.6128973334826258, -3.7059594516948704, -3.4847268042986617, -7.0, -4.5044708624944185, -7.0, -3.6593051923304962, -7.0, -4.138397442990546, -2.9096584343751273, -3.3867579277666837, -2.598127683341974, -7.0, -3.181351871191431, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073021454359739, -4.5592041671686045, -3.88983032468367, -3.3170641442873174, -7.0, -7.0, -7.0, -3.2874658053432286, -7.0, -3.8789958794490644, -3.575226344505001, -4.132595849372379, -7.0, -4.198931869932209, -7.0, -3.648658790620699, -3.688568121297955, -3.3172112567454075, -7.0, -3.697607078592231, -4.139343756152375, -7.0, -3.2145833698026913, -3.158620923808858, -7.0, -4.367791860564098, -4.059260404121731, -3.8616240084555944, -4.232029937620133, -3.0505086461516764, -7.0, -7.0, -7.0, -7.0, -4.198712057460401, -3.28029646656266, -7.0, -3.811256540556303, -7.0, -7.0, -3.8146337595794417, -7.0, -7.0, -7.0, -3.9089405210453623, -4.0484029561527395, -3.2737845225610633, -7.0, -7.0, -7.0, -3.6813859780807774, -7.0, -3.706148588963142, -7.0, -4.0626195838543415, -4.220787776165875, -7.0, -7.0, -7.0, -7.0, -7.0, -3.718231727911598, -7.0, -7.0, -3.8548176958191123, -3.260493610483121, -2.7694983905214636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.851930678640268, -7.0, -7.0, -7.0, -7.0, -3.489367774704734, -7.0, -3.791164125033335, -7.0, -7.0, -4.097222592519901, -3.8306528137974243, -3.574543846224296, -7.0, -7.0, -7.0, -3.801232153830292, -3.789280973760941, -7.0, -7.0, -3.0112884341835358, -7.0, -3.3179906233268124, -7.0, -7.0, -4.088065177690204, -7.0, -3.645422269349092, -7.0, -3.61689542640076, -7.0, -4.106666761969916, -7.0, -4.083538451230139, -7.0, -4.226522575863549, -3.5507825912650164, -7.0, -7.0, -4.011993114659257, -7.0, -4.206150981596259, -3.779704690689162, -4.029505525426577, -4.182528775278964, -4.083789188287978, -7.0, -7.0, -7.0, -3.8263599174077894, -7.0, -4.0712558776812955, -3.6520851030278667, -3.156148415962715, -4.105476121121821, -3.9229848157088827, -3.546950572002201, -3.483016420144132, -7.0, -7.0, -4.093946723890583, -7.0, -3.876015661798158, -4.18369680863468, -3.3443922736851106, -7.0, -7.0, -7.0, -3.850829959848531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.101575246255933, -7.0, -7.0, -7.0, -7.0, -3.7672300981107183, -7.0, -7.0, -7.0, -3.369976134872427, -7.0, -4.180240600955741, -7.0, -7.0, -7.0, -7.0, -7.0, -3.545296805458288, -7.0, -4.066586796470695, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1101181270103275, -7.0, -7.0, -4.088738365273999, -7.0, -7.0, -3.827304641089735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3619166186686433, -3.7433451092571, -3.747100931364986, -7.0, -7.0, -2.6622151268225136, -3.0047902055826565, -2.9591010440596532, -3.8424220033576497, -7.0, -7.0, -7.0, -2.544052337213367, -3.659440781870318, -7.0, -3.2478914706214947, -1.953528853758455, -3.076094046682475, -2.7482526493531543, -7.0, -2.9518769481062366, -2.912399211126715, -2.7179903781599086, -3.368128214530098, -2.5975123635772417, -7.0, -3.8165726960261033, -3.3569814009931314, -3.300432429830641, -3.2219355998280053, -7.0, -7.0, -3.440174146226027, -7.0, -2.946605952239178, -3.5191057562064487, -3.837335868015015, -2.3888436682532856, -7.0, -3.413467412985825, -7.0, -3.55303301620244, -3.6617180576946593, -2.7167186243047006, -3.8889653443003374, -2.684830322792156, -3.9430986230054854, -2.500467261899649, -2.7049008715552314, -3.834929096460576, -7.0, -3.096363699333073, -7.0, -7.0, -7.0, -7.0, -3.2415464805965484, -3.2075446093061983, -2.6691257494518283, -7.0, -7.0, -2.7244806771885997, -7.0, -4.056752440567439, -3.1664301138432824, -7.0, -3.9384196457931933, -3.2807186599586955, -7.0, -3.9168748785386835, -7.0, -7.0, -2.3869041288246544, -2.6027109449575576, -7.0, -7.0, -3.1641545025122504, -7.0, -2.399577585458088, -3.676098904916701, -2.2866248553317368, -7.0, -2.3620266625077564, -7.0, -2.3999930361074466, -7.0, -7.0, -3.334252642334231, -7.0, -3.9242792860618816, -2.711984727554708, -7.0, -2.980306438226822, -7.0, -7.0, -7.0, -3.48826861549546, -3.811373897053893, -2.6910814921229687, -3.2712024681107645, -2.374065962317671, -1.907250529717228, -7.0, -3.8256857080217586, -3.5619953005654894, -3.092662173531954, -2.789163252778458, -3.8527848686805477, -7.0, -3.9112108931375533, -3.6763277338813203, -3.1663032199104872, -3.552668216112193, -3.2782129939730074, -3.1441727623900975, -7.0, -3.508798965403905, -2.9963240043881028, -3.514153288634498, -3.164114820984341, -2.7113605516305643, -3.398981066658131, -7.0, -3.8441042306975133, -2.598706349320375, -2.346548558548474, -7.0, -7.0, -3.5639110139135437, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8059972395494706, -2.731204909335425, -3.1598463787180644, -3.7331169814420644, -3.845098040014257, -7.0, -3.509202522331103, -7.0, -3.566319621524811, -3.9386698010226793, -7.0, -7.0, -7.0, -3.846213363879387, -2.284065310827892, -7.0, -7.0, -3.5964871337365443, -3.5729296590793718, -3.3394514413064407, -3.175627764367181, -3.18537214331104, -3.9286518466536946, -2.9674439660442773, -3.592953571547866, -3.3527933176610354, -3.408353048109495, -7.0, -2.840054920774821, -3.8309092995464433, -3.330684277550962, -7.0, -7.0, -7.0, -7.0, -7.0, -3.31178412442512, -7.0, -3.5537096901890077, -7.0, -2.9708116108725178, -2.646061127659469, -7.0, -3.3319938380422562, -3.5154764413823756, -3.8744818176994666, -3.444096866475288, -7.0, -3.894260664446988, -3.564547711755948, -3.881441721941393, -2.5033224409828163, -7.0, -4.0258381642297, -7.0, -2.6278338463814483, -3.5998830720736876, -3.404989127064217, -7.0, -2.670319108447816, -7.0, -4.068556895072363, -7.0, -3.4044916177586857, -7.0, -3.8364507137201547, -3.157645616457375, -3.613524702853652, -7.0, -2.776960479764161, -4.156882164439376, -3.8166720655453337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.150049945162385, -2.6277219816490986, -3.3360815351107824, -3.837039908150044, -7.0, -3.8300751664297503, -3.8379039445929424, -3.864036182725775, -7.0, -7.0, -3.608312042697327, -3.4079571294295614, -2.9285665319531153, -7.0, -7.0, -7.0, -3.52270499273475, -7.0, -3.5140826625258312, -7.0, -3.715854841502423, -7.0, -7.0, -7.0, -7.0, -3.8461514765288154, -3.54082981411108, -7.0, -3.1470576710283598, -3.431001701210211, -3.5938396610812715, -2.9333064749555056, -3.097187872570896, -3.8900855267163252, -7.0, -7.0, -2.509218919155219, -3.3025473724874854, -2.6780086500388114, -3.8478193472952396, -3.2960218189450234, -7.0, -7.0, -7.0, -2.942393921090259, -2.9451275607861436, -2.816414233820151, -2.161722544441352, -3.3317983298469445, -7.0, -3.8448498008066387, -7.0, -3.3928141559271974, -7.0, -3.2384977353073587, -7.0, -3.825945143203848, -3.8711641328029494, -7.0, -3.185712099870006, -7.0, -2.6088468223264116, -2.743750905479713, -2.962606072924127, -3.9398186628213794, -7.0, -2.6044574916627705, -2.93453001219572, -7.0, -3.4027255284410836, -3.814180981040187, -3.549248556854056, -2.2642830872778266, -3.5947239464097467, -3.3979110547414355, -2.6597736292477885, -4.082282589912437, -3.4207806195485655, -3.969509098596567, -2.3009240572607474, -3.5035969724042277, -2.4336555609385724, -7.0, -7.0, -7.0, -3.589651782365363, -1.8664636844249198, -7.0, -7.0, -3.0280117586406954, -3.5234212743726316, -3.0613447538027754, -2.9854264740830017, -2.8933257432834982, -3.8452221064290137, -3.5589484459780394, -2.890807803284164, -3.8452221064290137, -3.6127448297881615, -3.637146504140139, -3.620867921864364, -7.0, -2.8802060123609023, -3.2642234085593933, -2.1848388616878607, -7.0, -3.5538830266438746, -7.0, -2.7964355588101744, -2.757540624926174, -2.633740290110152, -3.003514384733037, -3.811373897053893, -7.0, -2.6246945312720813, -7.0, -3.5412046906832586, -7.0, -3.31722734917642, -7.0, -2.113325985068863, -7.0, -7.0, -3.4257834789437602, -4.211561022536963, -7.0, -7.0, -4.061158325937399, -3.038826142126565, -7.0, -3.146718971926629, -2.5143503569867414, -3.711582293398766, -7.0, -4.115693701882753, -4.765728145110631, -4.420953643599573, -3.4680222264940914, -4.436242180871562, -3.822127198821849, -3.5720482948792145, -7.0, -4.122019172080031, -7.0, -4.796366154977521, -3.5484420673337063, -2.737214434244013, -3.5725230978496376, -4.436941451239042, -7.0, -4.027308827035546, -7.0, -2.963588319885388, -7.0, -3.7741437419835786, -3.4771534234898636, -3.6343160172184157, -7.0, -3.5578679615680224, -3.6529550777975013, -3.690297361391357, -7.0, -2.94760940922976, -3.251638220448212, -3.6429835826026475, -3.745209688797541, -3.231660699116671, -3.0658285940945165, -3.3940375664247404, -2.633893505265488, -2.4626905274261266, -2.8549130223078554, -2.877707208602452, -3.2704847380490047, -1.3705642541562597, -2.2143383709237106, -7.0, -2.750456093844882, -2.8200977060751757, -7.0, -2.8541630994869776, -3.429135405190724, -4.0253877998904075, -7.0, -3.1533261255705463, -2.729010494963514, -4.206290264448695, -3.3471998701311088, -2.4190284146106347, -3.3526326642053124, -2.969542568385431, -7.0, -4.160113226773964, -3.951677437343301, -3.8743465023900985, -3.8107028609471167, -7.0, -3.564324069003793, -4.221394674587222, -2.7933974567588, -2.5613164825661228, -3.4892199729008753, -3.725533909439875, -3.183637533042316, -3.846708145456007, -2.874064137571404, -3.0384575826438036, -2.636943561573955, -3.0550739051169837, -7.0, -2.500263040699733, -3.087108614449726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0041739220558177, -3.4383313469688166, -2.691780309707951, -7.0, -3.895809150169131, -2.7460578706127543, -7.0, -3.600319329751661, -3.8222988712623667, -2.7822085121410036, -7.0, -2.9606863649414112, -3.157543108985783, -3.84060787900929, -7.0, -3.985381560231997, -3.6047658847038875, -2.909473737534268, -3.856003453997221, -7.0, -3.7762652182681093, -7.0, -3.846708145456007, -3.1908917169221698, -3.1902382914634244, -7.0, -3.2100240738042323, -7.0, -7.0, -4.65748610775906, -3.3586327127997206, -3.3653976050539876, -7.0, -7.0, -2.933159642052778, -7.0, -3.248561741359574, -7.0, -3.0339404652229804, -3.03291165884321, -7.0, -7.0, -3.92272545799326, -3.275196141785624, -3.186270022871516, -3.5350408132511606, -7.0, -3.384472889924203, -7.0, -3.0481642458737346, -3.1144719788595743, -7.0, -7.0, -2.859738566197147, -3.0616880350304325, -7.0, -3.1233070710124684, -7.0, -7.0, -7.0, -3.4304513240788883, -2.90289755953152, -3.4692818791793925, -7.0, -3.879210605291759, -7.0, -4.114277296561586, -7.0, -4.0750357259221905, -7.0, -3.306532247519607, -2.8583956413487304, -7.0, -7.0, -2.7829382019344346, -2.6360578308137783, -3.7033343754437698, -3.6160551949765862, -3.0948868726586736, -3.47045949458466, -3.357591847523441, -3.1679668133956205, -2.860676455064863, -7.0, -3.872272846224205, -7.0, -7.0, -3.806179973983887, -4.1591459278540475, -7.0, -7.0, -7.0, -2.792293174032692, -3.907034952483417, -3.356174635493612, -3.215933512374288, -3.7216045442801375, -3.0960654201442166, -7.0, -3.411339063315724, -7.0, -3.1697164090727963, -3.1211903890551365, -7.0, -7.0, -3.889189612047073, -3.859378504425601, -2.9312176596502852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3904405066475256, -7.0, -3.5997193623970984, -7.0, -7.0, -3.5191057562064487, -3.8294324336175984, -7.0, -3.535167485114944, -3.0787674351712444, -3.1815005884677596, -2.994178178434242, -3.5924358498630324, -7.0, -3.541641638096807, -7.0, -3.971971276399757, -7.0, -7.0, -3.192880935351771, -3.1466860556475256, -3.3665474682594816, -3.1234782951612408, -7.0, -3.929776432804902, -3.814713612695977, -3.215967850531294, -3.214949760615447, -7.0, -4.019739232674706, -3.034513867051594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.668488420457219, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.864303376933002, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.140523755289476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.645422269349092, -3.163757523981956, -7.0, -7.0, -3.952690218761608, -7.0, -7.0, -2.9284690089118017, -7.0, -7.0, -7.0, -2.9116901587538613, -7.0, -7.0, -2.4608978427565478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.279402924338703, -7.0, -7.0, -1.716003343634799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165303692468361, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.044539760392411, -7.0, -7.0, -7.0, -1.7933912169403805, -7.0, -3.760133360206497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0455185628844927, -7.0, -3.1970047280230456, -3.86135516019326, -7.0, -7.0, -4.004698990481458, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.44983502217156, -7.0, -7.0, -3.55303301620244, -7.0, -3.318689269947746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9454685851318194, -7.0, -7.0, -7.0, -7.0, -3.947090464219622, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8767372971406644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.464042205438811, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.253222872946613, -7.0, -4.972044810706296, -7.0, -7.0, -4.540333646667876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499233310262374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.795149789050817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.792451225789749, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4163075870598827, -7.0, -3.1202447955463652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.869624754401409, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.326397313347113, -3.584444307165176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.925843843077551, -7.0, -2.6444385894678386, -2.097604328874411, -7.0, -4.212267528548938, -7.0, -7.0, -7.0, -7.0, -7.0, -4.338894551438355, -7.0, -7.0, -3.3657686880021926, -4.156887984076337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1413431465043224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504742636271688, -7.0, -7.0, -3.431084868293215, -2.6657372963937283, -3.6036855496146996, -2.948412965778601, -7.0, -7.0, -2.8391636829146503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1308963782476624, -7.0, -2.45408227073109, -7.0, -3.7828893885304504, -2.432969290874406, -3.0555694400609896, -7.0, -1.1781544196194547, -3.8767949762007006, -7.0, -7.0, -7.0, -3.444513206334043, -7.0, -3.4942937686653326, -7.0, -7.0, -7.0, -4.116421256664951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3832766504076504, -7.0, -7.0, -4.150019201915149, -7.0, -7.0, -7.0, -3.1281683960942717, -7.0, -7.0, -7.0, -3.6310376965367404, -3.377979759421654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277364687721622, -7.0, -7.0, -7.0, -7.0, -2.5168657614978143, -7.0, -7.0, -7.0, -7.0, -3.822625678774141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.154484837032048, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1420764610732848, -7.0, -7.0, -1.7933912169403805, -7.0, -7.0, -3.240399465738641, -7.0, -7.0, -7.0, -3.1760912590556813, -7.0, -3.1809855807867304, -7.0, -7.0, -3.3771240423464564, -7.0, -3.8777168008649765, -7.0, -2.4668676203541096, -3.850188116174174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4459154139511234, -7.0, -7.0, -7.0, -7.0, -3.489889162365435, -7.0, -7.0, -3.585686278452497, -7.0, -7.0, -3.2105860249051563, -7.0, -2.6541765418779604, -7.0, -3.3298045221640695, -7.0, -3.6655809910179533, -7.0, -3.951386094880293, -7.0, -3.864965705184916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.110910262895853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.641558383219824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7817553746524686, -3.0369614078061686, -7.0, -7.0, -7.0, -4.31525642505321, -7.0, -4.2330215069876935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4832543766904958, -3.71566914240099, -7.0, -3.196452541703389, -3.0056094453602804, -7.0, -2.5523639817866846, -3.4572761860613257, -3.4287825114969546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.860737174321432, -3.228964677405161, -7.0, -7.0, -7.0, -4.353723937588949, -7.0, -7.0, -4.285827252753274, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504062882678692, -7.0, -7.0, -7.0, -3.36078268987328, -5.527375951229165, -7.0, -7.0, -7.0, -7.0, -3.7545776560447304, -3.616580530085886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.698448538015329, -7.0, -7.0, -3.316913439164992, -7.0, -3.742918403405083, -7.0, -4.796110421820556, -7.0, -2.7488924788750166, -5.018633935024163, -3.297395711008887, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7204900684500517, -7.0, -7.0, -7.0, -3.394976719554564, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1222158782728267, -7.0, -7.0, -4.294036127859679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.590395947184013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.46393402862153, -3.8847387377696316, -7.0, -7.0, -7.0, -4.390304140143775, -3.9917132757130895, -7.0, -7.0, -4.360536614583294, -4.680362712634757, -7.0, -7.0, -7.0, -7.0, -3.792391689498254, -7.0, -7.0, -7.0, -4.292526313416355, -4.373949784702526, -5.104348811569977, -7.0, -7.0, -7.0, -7.0, -7.0, -4.928214858512939, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2589032153035102, -3.8035936647713444, -4.597097070985185, -7.0, -7.0, -4.341404845125625, -7.0, -7.0, -5.347511502724772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.468686951770906, -3.0511525224473814, -3.882125919770032, -7.0, -7.0, -4.3419881690481885, -7.0, -7.0, -7.0, -7.0, -7.0, -4.797087413265331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.018284308426531, -7.0, -7.0, -7.0, -4.010893313104381, -7.0, -7.0, -7.0, -5.094464140741792, -4.78773669147004, -7.0, -7.0, -3.3333464984243864, -7.0, -3.4604467838807205, -7.0, -7.0, -4.250200359678991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9848872010643275, -7.0, -7.0, -3.5381965783494542, -7.0, -7.0, -3.8441042306975133, -7.0, -7.0, -7.0, -7.0, -4.004794110388712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3273589343863303, -7.0, -7.0, -7.0, -3.490379920003179, -3.399521024913897, -7.0, -7.0, -4.305028753746333, -7.0, -7.0, -7.0, -3.7302572532130167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0507663112330423, -7.0, -7.0, -7.0, -7.0, -4.068977016662719, -7.0, -7.0, -7.0, -3.244524511570084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.394696777891884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.107209969647869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.020885876319437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.707144188342445, -7.0, -7.0, -7.0, -4.001330700440545, -7.0, -7.0, -7.0, -3.425995874829204, -3.5212427203704633, -2.361458004084773, -7.0, -7.0, -7.0, -7.0, -3.867801281134174, -7.0, -7.0, -3.39375064034808, -2.876523409926936, -2.56790818266893, -7.0, -7.0, -2.6794278966121188, -1.876637651626655, -7.0, -4.022610982753226, -2.323104706828374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.936513742478893, -7.0, -4.540288796889755, -2.971739590887778, -3.079904467666721, -2.692141609366784, -2.7264555202583103, -3.671728088239558, -7.0, -2.866877814337499, -7.0, -3.215901813204032, -7.0, -3.763903745309267, -3.189770956346874, -3.443888546777372, -3.815378484965918, -7.0, -7.0, -7.0, -7.0, -2.693140460675295, -3.174931593528443, -7.0, -7.0, -7.0, -3.9783631470838827, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5472065049379498, -7.0, -7.0, -4.427456895479942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5352941200427703, -3.5814945422908995, -2.727744530836107, -7.0, -3.7686738168837577, -7.0, -4.0326590460399245, -2.919601023784111, -7.0, -3.4724638966069894, -7.0, -7.0, -3.316913439164992, -7.0, -7.0, -7.0, -7.0, -7.0, -3.686725621074542, -7.0, -2.526823710771811, -7.0, -2.815103161366425, -3.6847735714992944, -7.0, -7.0, -7.0, -7.0, -2.3698400103853987, -7.0, -7.0, -3.3939260065858368, -7.0, -3.3619166186686433, -7.0, -4.182414652434554, -4.279720163150526, -7.0, -7.0, -7.0, -3.1496369255515337, -7.0, -7.0, -2.939319531078238, -7.0, -7.0, -7.0, -2.8169038393756605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.464578960565791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.846213363879387, -7.0, -7.0, -7.0, -3.7674650825294926, -2.8898617212581885, -7.0, -7.0, -7.0, -2.4678546536923855, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8951461893759918, -7.0, -7.0, -4.130560430970341, -7.0, -7.0, -7.0, -3.1398790864012365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5757053787094133, -7.0, -7.0, -3.317958924700952, -7.0, -3.426673888021373, -7.0, -7.0, -2.920123326290724, -2.8091105993088905, -7.0, -7.0, -7.0, -7.0, -7.0, -2.881574844854148, -7.0, -7.0, -4.0858968111315885, -7.0, -7.0, -7.0, -7.0, -3.0191162904470725, -2.5962304476672386, -3.2890684385904976, -3.103803720955957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7193312869837265, -7.0, -7.0, -7.0, -7.0, -3.0888445627270045, -3.450608305051992, -7.0, -4.141606530118251, -7.0, -7.0, -7.0, -3.0831441431430524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.643087320671172, -1.8500332576897691, -1.8319279166571738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8033888249836134, -3.534660575828444, -7.0, -7.0, -7.0, -4.0206305611846895, -7.0, -3.3915273813591287, -7.0, -4.71363332438249, -7.0, -7.0, -7.0, -1.843952492375385, -7.0, -2.932704318635906, -2.3569018525943553, -7.0, -3.274388795550379, -3.1212314551496214, -7.0, -7.0, -7.0, -3.174786417367337, -7.0, -7.0, -3.245265839457461, -7.0, -3.3014640731432996, -7.0, -3.3961993470957363, -3.3415334414404065, -7.0, -7.0, -7.0, -4.831860180040169, -3.4320602212581903, -2.9609461957338317, -3.3893211618458814, -7.0, -7.0, -1.6675615400843946, -3.3412366232386925, -3.6689912701643848, -2.764798598430535, -7.0, -7.0, -7.0, -2.9378520932511556, -5.5275751273418345, -2.6819192929105173, -2.8727388274726686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0711145667779136, -2.1509756144710184, -2.6797911709803546, -7.0, -3.7245216271185626, -3.1231980750319988, -2.718224803628757, -7.0, -7.0, -4.159849813729301, -3.438067450453494, -5.176508560266957, -7.0, -7.0, -3.5883381171691284, -2.0030506803087964, -7.0, -7.0, -2.9749719942980692, -7.0, -3.105442054801695, -1.8645271158562264, -2.680698029697635, -2.2013971243204513, -7.0, -7.0, -7.0, -2.806179973983887, -7.0, -3.673389578188305, -7.0, -3.0915993262816954, -7.0, -7.0, -4.297432204810169, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.036834133116361, -7.0, -7.0, -7.0, -4.721266376133869, -4.999017383695767, -4.584568664243272, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058501943429649, -7.0, -7.0, -4.6609602917760835, -7.0, -7.0, -4.776381518592003, -7.0, -4.6798456359364575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.617073766347765, -7.0, -7.0, -4.288979144953989, -7.0, -7.0, -4.334453751150931, -7.0, -4.1947690667173525, -7.0, -7.0, -7.0, -3.9640002020590774, -3.904913807999268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1705550585212086, -4.992897989215456, -4.534098059219949, -7.0, -7.0, -3.2356967454881875, -7.0, -4.9569076389632665, -7.0, -7.0, -3.4848690327204026, -3.924046565962411, -7.0, -7.0, -7.0, -7.0, -7.0, -3.443289070428097, -7.0, -4.121625492208471, -4.491403720299015, -7.0, -3.5298004013227113, -7.0, -7.0, -7.0, -7.0, -3.622731965164719, -4.3100344691359895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4927324592231748, -7.0, -7.0, -3.648925689157213, -7.0, -7.0, -7.0, -7.0, -7.0, -4.197121977222839, -3.342126469955725, -7.0, -7.0, -7.0, -7.0, -3.690550461510359, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2372085050255706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.794505473856937, -4.789918991668926, -7.0, -7.0, -3.473681568244996, -7.0, -3.0269416279590295, -7.0, -7.0, -4.2576785748691846, -7.0, -7.0, -7.0, -7.0, -3.7064617376313547, -7.0, -7.0, -2.7261836614188204, -7.0, -3.032820149438564, -7.0, -7.0, -7.0, -3.0978355210448445, -3.5515719736742537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.623422895447224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.386320573894046, -3.821382499747299, -7.0, -7.0, -3.8127128667653687, -3.4870373180056653, -3.345079526314867, -3.413299764081252, -3.8344207036815328, -7.0, -3.7577754910119254, -2.927626962444954, -4.043676585602717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.231991755088181, -7.0, -7.0, -4.24889240846553, -2.2846562827885157, -3.4872798164430687, -7.0, -3.31492005599242, -7.0, -3.0680930538642177, -7.0, -7.0, -7.0, -7.0, -3.1931245983544616, -3.621747346264817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7556843338524133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.117569563463827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.201246870680715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2826221128780624, -7.0, -7.0, -3.110015758247213, -7.0, -7.0, -7.0, -4.239712300666562, -3.95217469569546, -3.6473585159080253, -3.841784795614428, -3.1635837317044717, -2.510585490654225, -3.0494727635847134, -3.6930859608440105, -3.12515582958053, -2.558147760826049, -2.826118013932333, -3.46969931658989, -4.5449852976427225, -7.0, -3.539966367996713, -7.0, -2.901411612182605, -3.0407896571244835, -4.537617636420976, -3.007601806096716, -2.0257917657984317, -3.5058403523436374, -3.428084929572462, -7.0, -3.780305308257236, -3.435856611877713, -3.02391309743574, -2.3885720910509756, -3.115474908292482, -4.5398034973846775, -7.0, -2.9626932593928177, -3.353170619520263, -3.262263691892828, -3.10701102844847, -4.538711942116912, -3.7826756296882844, -7.0, -2.363441954440918, -3.1784013415337555, -3.4645268051427323, -3.2367291512441203, -3.7706434020513013, -3.1868320721941115, -3.8433449200125067, -4.070173369985659, -3.248988587068936, -2.895140046118993, -3.9524897355097743, -1.6208364056491475, -2.5559120279549328, -2.4756089342953334, -1.881720746685466, -4.543509306465027, -3.591522169203609, -3.134672837165581, -3.400031984027495, -4.070296518197765, -3.9454808948916567, -4.062757421306656, -3.5036545192429593, -2.6618473003288075, -2.541852590115751, -4.540379534670119, -4.0621681733517825, -3.1482822254644347, -3.5841049703994527, -2.1863088337034826, -3.407900540142635, -2.214577685744348, -2.941570583896654, -2.096115598928591, -4.062456628625647, -2.9801349922898255, -4.060458597797985, -3.2190478439301646, -2.5878053460867396, -3.30263151595426, -4.241421951711995, -7.0, -2.543180823445382, -3.5452204963930702, -1.9109424931419006, -3.0062231255941225, -3.01061489979727, -3.5536767484400786, -1.7520187049041693, -3.1117027513874906, -2.3354579006893843, -4.539352152039536, -7.0, -1.146249563866738, -3.7767253914788386, -2.606130462501941, -2.357865576008696, -4.06375856163451, -2.143069611194018, -3.36968577944444, -4.061339366837068, -4.538309759381733, -2.4152248358937083, -4.237945676609235, -3.199993525583865, -3.7730791049593284, -2.54019291851203, -1.5612040901605677, -3.6992429036795467, -3.6384518161613126, -3.548954186430289, -3.4044427244873816, -2.7311558366331012, -3.7687860469080143, -7.0, -3.3038437748886547, -2.79579894147347, -2.8121085721085706, -3.768995550358179, -2.9818363660944813, -2.7215038694393896, -3.544154894561925, -2.4426930296358496, -3.7666606613741327, -3.4505504606034503, -1.54329101510127, -3.151405212887992, -2.9677647953826947, -3.937718443617264, -3.7670444942436667, -2.37501583611072, -2.966153470269118, -7.0, -3.8395785959610693, -3.612889769287485, -7.0, -7.0, -4.538460621556729, -7.0, -7.0, -3.0377179381586314, -2.6073334015206, -2.5236561600008374, -3.510935788737165, -4.545517407601492, -3.1569249469842195, -4.237757314269729, -3.9391322086815177, -3.6468079319099638, -3.356475224645445, -2.284065310827892, -3.760133360206497, -3.240399465738641, -3.7674650825294926, -7.0, -4.5386616896384036, -7.0, -3.2135781217864365, -3.4050046650503694, -4.540028994279416, -2.851490725839368, -3.4394905903896835, -2.960518342780708, -2.812591095596879, -3.1934754749695493, -2.075801505396244, -3.5122840632818537, -2.8799804787649608, -1.5711086204421372, -3.1441879963952775, -4.538385197019912, -4.537567257152675, -3.9440506304214624, -3.843083210487105, -3.022040758942761, -3.76051043925476, -2.4792049974725776, -3.8430458105345693, -3.278140911716149, -3.392307445821645, -3.0502250378836537, -1.7375608801923828, -3.9448156680632662, -3.3587408376095857, -3.1314582601065255, -3.597097681104017, -3.95970902424643, -3.5985230166624986, -3.476324317420228, -3.4032553742996785, -2.889155491816375, -2.568907690449816, -3.6982124307329163, -2.9057509200197873, -7.0, -2.763174952431323, -3.3808260568363413, -2.478831585049216, -4.23957473708321, -2.8906009783510855, -4.061050168283154, -3.5585667636507035, -3.8452097013823283, -3.5528749737842267, -4.064857156977356, -4.242752561356358, -3.6948025606647104, -4.259247356190061, -7.0, -2.543040749940433, -3.4117650585774544, -3.1232402702695254, -7.0, -4.538246884671983, -4.241035685094299, -7.0, -4.540529679695608, -3.8441042306975133, -7.0, -3.8452221064290137, -2.934766324393461, -2.934441061817399, -2.9695438099284064, -3.261706956957646, -4.537668009845832, -4.542564024978776, -4.243038048686294, -4.2483043816590635, -4.237443195375461, -4.539966367996713, -3.6046939459126173, -3.322997164829981, -2.688419822002711, -7.0, -7.0, -4.539991419593507, -3.179089476633134, -7.0, -3.498084887646875, -3.323628159997115, -2.708922655700782, -7.0, -7.0, -7.0, -3.939032270356462, -3.399278054006315, -3.544675631413166, -7.0, -3.1650216300353597, -4.11293997608408, -3.0638416171528697, -3.260808325447157, -2.7686809892349995, -4.554864538285933, -3.8402064977589974, -7.0, -2.37123583538615, -3.478674695025181, -2.6478174818886373, -3.4666081519579373, -3.080036758178311, -3.7690201911798535, -4.240324555090434, -3.8428462897078353, -3.1796607274946935, -2.889004929377786, -2.9914878626507724, -2.579250665393085, -3.080690136910718, -3.707083298825079, -3.466014498579686, -3.9377309750177787, -3.207695555447434, -2.8423030251835173, -3.1500948736862835, -7.0, -3.427523559574997, -3.3744061508805894, -3.939219635854818, -3.407354479028052, -4.060987273541201, -2.6886963393230485, -2.07293081510074, -3.117872531243554, -3.2646407647145366, -3.8535765436196416, -2.5652354585411796, -2.05482190018818, -2.148686422668616, -2.7968517490498868, -4.238472656948356, -3.6433169382503885, -3.499904633477991, -3.1083112729328004, -2.7882492001907035, -2.620171159405891, -2.922000596884898, -3.3521342604879, -3.459102397252217, -3.162528562308087, -2.8636909903067953, -2.1512181701868327, -7.0, -4.537453882426875, -7.0, -3.1076803464484275, -2.3719966385635733, -4.065554818945707, -3.430633139261264, -3.564026577265475, -4.240449398993299, -2.9556035765596027, -3.639536290826109, -2.1730399446729964, -4.068371418032643, -3.594110050455012, -2.0743479845985724, -4.5455421410420085, -2.625509999723006, -3.094262930211214, -2.6087185575113128, -4.545653424096331, -1.9686150935365165, -2.2651412914988205, -2.6817859439337655, -7.0, -3.769241895684789, -7.0, -2.1724247283295366, -2.46108292457563, -2.960592445690832, -3.0015173768235046, -4.5390007810803175, -4.236386088609555, -2.092445701480322, -3.842571798817237, -3.590532239192633, -4.0688782010805165, -2.9032143764500575, -3.542190320433657, -1.5324560835286616, -7.0, -4.237367773021761, -3.6105951086630115, -3.89026728376573, -4.244895333691861, -7.0, -3.251191937135463, -2.9472526967087433, -4.318397279217511, -2.9818543579477965, -2.961266809061622, -4.1619566462202044, -7.0, -3.779820874875269, -3.5746903913851122, -3.4721939232088554, -3.4966168337945307, -4.14157518330082, -3.4945612869265563, -3.3630328295053458, -3.748352794991759, -4.737248317915621, -3.9757419081167997, -3.301228351076182, -3.723118942779991, -3.3143588613003385, -3.368955945345503, -3.898834838068274, -3.5784809383880685, -3.693718157448391, -7.0, -3.1011198063080787, -4.384514698685653, -3.1259183533156225, -2.969660680946805, -2.9876224583030213, -4.2553810651543404, -2.9646555488767823, -3.539818116473136, -3.516437948521294, -4.09136794755239, -2.8794376498259213, -3.4330802233513356, -2.95751581642942, -2.6253095519834253, -2.7869496562880802, -3.5450370748081865, -2.957167487189121, -3.0972094232108174, -2.3463189508318423, -2.8351453800598083, -3.1897241951643895, -2.870093513523827, -2.0424620473036907, -1.812896980222412, -4.552546547955661, -2.4235165556085847, -2.868174040859638, -4.539916260467521, -3.2826544758187164, -2.927543961579448, -3.888864386018648, -4.547430085818267, -2.3966798842050885, -2.403069276989103, -2.9179709844755197, -3.587062093703546, -2.2412601798924205, -3.4630963008800726, -2.0983138589928285, -4.602992722137344, -3.1969926658789696, -3.407287016436204, -2.637575986336545, -4.061703734218241, -3.360285663517499, -3.4242636158693003, -2.8680655566461386, -3.580605691790701, -2.6364360144838876, -3.6068541017166744, -2.8883526261417334, -2.73075536687231, -3.5456163329131365, -2.070948234903138, -2.2217251522999155, -3.4620637966651473, -2.871693397817705, -4.5428627572586375, -3.1318477105449856, -2.3532228716177452, -3.4754209652146257, -4.540354505451778, -7.0, -4.537668009845832, -7.0, -4.593762200380792, -2.7444782755162587, -3.179767161604466, -2.63437118943673, -7.0, -3.777837479938187, -2.660554467906144, -4.562411832949728, -3.3265165785186688, -4.2400122882325455, -2.995437743136134, -7.0, -2.4972910932956123, -2.90880431953092, -7.0, -7.0, -3.721911325425833, -3.7130943492255923, -2.722712787865719, -7.0, -4.5439687656935615, -3.259908659769131, -7.0, -4.545838832510257, -4.077743283566271, -2.95944860705501, -7.0, -3.0899443413280387, -7.0, -7.0, -3.690396931704288, -2.619032726143369, -3.2388714591998307, -7.0, -7.0, -2.5910441739661128, -4.547479333931025, -3.245359885849709, -7.0, -3.2511513431753545, -2.6640120336367628, -7.0, -7.0, -4.261084354924705, -3.4727442635547314, -3.7444718063201807, -4.543757723163865, -3.9518472968997793, -3.3444168371579774, -4.5448614576459025, -3.4092566520389096, -2.9869706781459966, -3.851450549213087, -7.0, -2.9108447206229275, -3.173815393774398, -7.0, -3.3805006748991953, -7.0, -7.0, -3.923668776807718, -3.5585405788545965, -2.378674481411176, -3.1357567477801735, -4.579772167664273, -4.075364446373285, -7.0, -3.6139369124465115, -3.6405187032046085, -3.371296092257093, -7.0, -3.236309282228153, -2.80591061065459, -4.550986177622661, -4.2370282102444135, -2.855800287422407, -2.318857746688286, -3.4358671080828365, -4.083705625352265, -3.0712013889421295, -7.0, -3.693529097671857, -4.550057048211167, -2.926468642816955, -4.286265553793083, -4.250017239260571, -4.549211771460929, -7.0, -7.0, -3.5513051073181363, -7.0, -3.592398846115564, -7.0, -3.15927273458622, -3.859522564958292, -3.5722100992493604, -2.423985572258576, -4.110028243534681, -3.168072999308404, -7.0, -3.3500783389094986, -7.0, -2.902886363725619, -3.332124127960269, -7.0, -7.0, -3.3501874261496343, -3.3719663222631246, -2.7232707289332865, -3.591719884720196, -4.542526668991491, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9074436091675, -7.0, -3.778946727968617, -3.6399842480415883, -4.544551703070268, -3.5862371276818306, -3.6971919664111508, -3.3150190151160137, -7.0, -2.9383171596692224, -3.2737077590078454, -2.4053379610598817, -3.755286690608231, -3.741185377248953, -3.641796241478543, -4.538385197019912, -3.494502447046173, -3.5435714239623652, -7.0, -2.405154189748663, -3.2230135770130466, -3.314437307092213, -3.2303211689190787, -4.565434570307759, -3.6093334933375862, -3.9374928165543124, -3.762053049458416, -3.1124254445460724, -4.061728851738383, -3.6319620874766763, -3.0606734753233433, -4.547196080987191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.601916107448749, -7.0, -7.0, -7.0, -4.188731671445743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.032638903912429, -7.0, -7.0, -7.0, -4.209838924494543, -2.962369335670021, -7.0, -7.0, -2.4144958388716917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3324384599156054, -2.9694159123539814, -7.0, -7.0, -7.0, -5.140586598610774, -7.0, -7.0, -7.0, -7.0, -3.615739688619155, -7.0, -7.0, -7.0, -7.0, -7.0, -4.907126395923902, -3.403120521175818, -3.044819643421949, -7.0, -7.0, -7.0, -2.921686475483602, -7.0, -2.6599162000698504, -7.0, -7.0, -7.0, -7.0, -4.446816665838136, -7.0, -7.0, -3.3564083270389813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3044905277734875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.197280558125619, -7.0, -3.9509180044856396, -7.0, -4.009153331907709, -7.0, -7.0, -7.0, -2.88394519503428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1830799466610196, -7.0, -7.0, -7.0, -3.6039018317316716, -7.0, -7.0, -7.0, -3.0232524596337114, -7.0, -4.07930789680251, -7.0, -7.0, -7.0, -3.5121505369220305, -7.0, -2.9542425094393248, -3.864807629026147, -7.0, -7.0, -7.0, -7.0, -4.992840596288919, -7.0, -7.0, -1.5326937275739363, -7.0, -7.0, -4.294157480769691, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8898617212581885, -4.5386616896384036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305802629184905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.210211471641834, -7.0, -7.0, -7.0, -7.0, -3.4081724871168673, -7.0, -7.0, -2.952671385348004, -2.7944880466591697, -2.622214022966295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9386197815026813, -7.0, -4.3370197526004075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3346547668832414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.71275742023182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6402726869436295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.20682587603185, -7.0, -3.3208383890175335, -3.182414652434554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.948070481518941, -3.693463127219531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.083323418473525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6137361412618714, -7.0, -7.0, -7.0, -4.653942158633786, -7.0, -7.0, -7.0, -7.0, -2.926342446625655, -3.5565437084835145, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0073209529227447, -5.527208933861522, -7.0, -7.0, -7.0, -7.0, -3.734319680859007, -3.58849580100721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.604154024809671, -5.8751544819353825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.617629297757842, -7.0, -3.596225862608387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.757646511054261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.64244614748687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.18231477033948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5833121519830775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.491477256827805, -7.0, -7.0, -7.0, -3.621332101120809, -7.0, -7.0, -7.0, -3.126780577012009, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0141003215196207, -7.0, -3.2016701796465816, -7.0, -7.0, -7.0, -7.0, -3.4761067168401913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4436755668075785, -3.415140352195873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9286006598445242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7953585510233854, -7.0, -3.1752218003430523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6148972160331345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5676144427308447, -7.0, -7.0, -4.969475320893933, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7058637122839193, -4.864036182725775, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5646660642520893, -3.4369573306694496, -7.0, -7.0, -7.0, -5.140382324559402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.906776655259594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.829303772831025, -7.0, -3.8436531610519933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.85769425778655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.229597380847068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0674428427763805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292721137774543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.112353600959159, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8601382850306134, -7.0, -7.0, -3.858657484090808, -3.13956426617585, -7.0, -5.150837766547415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.750793716662268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7616271845615827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3961993470957363, -7.0, -7.0, -7.0, -3.1535099893008374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.308393649976259, -7.0, -7.0, -7.0, -4.4072378970769615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.118991800195975, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3729120029701067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.13086746180259, -7.0, -7.0, -4.278479223046323, -7.0, -2.8915374576725643, -7.0, -7.0, -7.0, -7.0, -3.062281069972644, -2.9030899869919438, -2.699693225955115, -7.0, -5.828198293965532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.381313673105942, -5.875116849527947, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6299190355035416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.197556213153536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.933578389023442, -7.0, -3.4424797690644486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.18643645234799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.314688651046116, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8963553319839965, -4.482444791918265, -7.0, -4.038729417174369, -7.0, -7.0, -5.3468788955925985, -7.0, -7.0, -4.604301669918353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.285107029566812, -3.8727970399895986, -7.0, -7.0, -7.0, -7.0, -2.6172625170913744, -7.0, -3.7189996378787185, -7.0, -4.3176873404861835, -3.5758803156806462, -7.0, -7.0, -7.0, -7.0, -3.630529571426824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.477265995424853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6179434348289727, -7.0, -7.0, -7.0, -3.1051694279993316, -3.9411385943096846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4954055631461936, -3.4665710723863543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305234082373335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7777891874348675, -7.0, -7.0, -7.0, -7.0, -3.5793262037552553, -7.0, -3.996927380146128, -7.0, -7.0, -7.0, -4.018076063645795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542128005067315, -7.0, -3.387033701282363, -7.0, -7.0, -7.0, -3.306425027550687, -3.330413773349191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.321598430465344, -7.0, -4.096075366085106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4935695729787, -2.8512583487190755, -7.0, -3.4781334281005174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2615007731982804, -3.1649473726218416, -2.718501688867274, -7.0, -7.0, -3.977376568911182, -2.6893771712719174, -7.0, -7.0, -3.449298370086198, -3.1631613749770184, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3202029541600093, -7.0, -7.0, -3.766115283221414, -3.501149813033742, -7.0, -7.0, -7.0, -3.515873843711679, -7.0, -7.0, -4.173925979028537, -7.0, -7.0, -7.0, -3.3089910290001643, -3.5055569386638217, -7.0, -7.0, -7.0, -3.2400497721126476, -7.0, -3.5428160938829234, -7.0, -7.0, -3.5251744278352715, -7.0, -7.0, -7.0, -3.372175286115064, -7.0, -3.402433346219312, -7.0, -3.190030257177831, -3.2986347831244354, -3.265525335219074, -3.3929899006447384, -3.3109056293761414, -2.5035961502512842, -2.8183358833529004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6904618932461783, -7.0, -7.0, -3.269512944217916, -7.0, -2.4949492776471365, -7.0, -7.0, -7.0, -3.5608723738571255, -3.2392994791268923, -3.539828558377898, -7.0, -7.0, -3.4632457912660026, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3334472744967503, -7.0, -3.1794081515138357, -7.0, -3.2373253580656325, -3.667733052533267, -3.3675422735205767, -7.0, -7.0, -2.739006930385196, -7.0, -3.255995726722402, -3.400624321661767, -7.0, -3.1053682352730725, -7.0, -7.0, -7.0, -3.7244397233970745, -7.0, -3.0771255534464483, -7.0, -3.7377490738915573, -3.3991196860279334, -7.0, -7.0, -7.0, -7.0, -3.7067348466176946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7296506683359203, -3.9852992061060455, -7.0, -7.0, -7.0, -4.999195811104177, -3.4000196350651586, -3.29928933408768, -3.2417124635841996, -7.0, -7.0, -3.625888383862849, -3.3188977146274867, -7.0, -7.0, -3.9125231763598167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.88820758450285, -2.8760734367725553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5964871337365443, -7.0, -7.0, -7.0, -3.2135781217864365, -7.0, -7.0, -7.0, -3.1285608065593205, -7.0, -7.0, -7.0, -3.5673793076509788, -7.0, -3.182129214052998, -7.0, -7.0, -2.8388490907372557, -2.980528246896414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.679836558918098, -3.286456469746983, -7.0, -7.0, -3.207095540419218, -3.7428381293249657, -3.366236123718293, -3.297468695545132, -7.0, -7.0, -7.0, -3.449478399187365, -7.0, -7.0, -3.4500950758716025, -2.5047506270440394, -7.0, -7.0, -7.0, -3.1600824724895236, -3.5010592622177517, -3.323308364436474, -7.0, -3.815145895436368, -7.0, -2.5589610673320826, -3.323870606540509, -7.0, -7.0, -7.0, -3.526403899736798, -3.5345337560051155, -7.0, -7.0, -7.0, -3.9202798946329485, -7.0, -7.0, -3.2860071220794747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7000110623221123, -4.168409083519626, -4.672566340793907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4604467838807205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.103305144246941, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7785130117389247, -7.0, -3.013980184732713, -3.5872618496925344, -7.0, -7.0, -7.0, -3.7374113257013213, -3.510813010512496, -2.5781954107484224, -7.0, -4.419930978136115, -7.0, -7.0, -7.0, -3.7405205860536648, -3.524201327535919, -2.8988517058385757, -7.0, -3.062689403096359, -2.8383767747778115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9854264740830017, -7.0, -2.687974620034556, -2.5401730004667513, -4.135650950040593, -3.050428094453049, -7.0, -3.533454289670824, -7.0, -7.0, -7.0, -7.0, -4.009323393381013, -3.164253690472463, -3.8629657589777624, -7.0, -7.0, -3.5423273827739745, -4.058247755724938, -3.9347004017154252, -7.0, -7.0, -7.0, -2.9913526737058977, -3.4252896164467943, -7.0, -7.0, -7.0, -7.0, -3.5161385767170743, -7.0, -3.490169250834894, -7.0, -7.0, -3.727703883685354, -7.0, -3.6878795845197208, -3.562530768862261, -3.8114022197337674, -7.0, -3.390758528738717, -3.9095189999026805, -7.0, -7.0, -7.0, -7.0, -3.6649238934380817, -7.0, -3.809222921689422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.404741639586191, -7.0, -7.0, -4.608033696827137, -7.0, -7.0, -7.0, -7.0, -4.093123881218075, -7.0, -4.001355054084966, -3.772919465833062, -4.027512692448811, -7.0, -4.328685336983151, -7.0, -7.0, -7.0, -7.0, -4.684279692743619, -7.0, -7.0, -7.0, -7.0, -4.6910567251326745, -7.0, -4.546690693184241, -4.143046043337588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.687778586493365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.626042522003252, -7.0, -4.680996877996996, -4.468354716309928, -7.0, -3.454463732751138, -7.0, -7.0, -3.5057703147997277, -4.041471640613747, -7.0, -7.0, -3.6670184411159363, -4.088915346604906, -7.0, -4.154347881220995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2977692625370425, -3.7992744224867123, -4.116300295134973, -7.0, -7.0, -7.0, -4.6600777237750135, -7.0, -4.328153561970996, -7.0, -7.0, -7.0, -7.0, -7.0, -4.490021721589144, -7.0, -4.244103863376508, -7.0, -4.205615719952685, -4.202529183501342, -7.0, -3.1291672607368097, -4.660523976930213, -7.0, -3.781487556381919, -7.0, -7.0, -4.143202225049597, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008742074877672, -3.235654676956949, -3.5166939913124287, -7.0, -7.0, -3.7627348158461476, -7.0, -7.0, -7.0, -3.82936810798882, -7.0, -7.0, -3.7227161674884948, -7.0, -3.519827993775719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058615797010562, -7.0, -7.0, -7.0, -4.797568741143527, -7.0, -7.0, -7.0, -3.690771803180663, -7.0, -7.0, -7.0, -7.0, -3.5791888919086445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.483016420144132, -4.035389709198677, -7.0, -7.0, -3.666892211066536, -7.0, -7.0, -3.5784959493756787, -7.0, -7.0, -7.0, -7.0, -3.9345470056046117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8756399370041685, -7.0, -7.0, -7.0, -3.6006561380617996, -7.0, -7.0, -3.6307938706772975, -7.0, -7.0, -7.0, -3.7759015788916743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3396377405079405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.415056858110851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1789769472931693, -7.0, -7.0, -7.0, -7.0, -3.3995006613146104, -3.042181594515766, -7.0, -3.229937685907934, -4.165341466825498, -3.1731133940968244, -7.0, -7.0, -3.371437317404101, -3.387008252600401, -7.0, -7.0, -7.0, -7.0, -7.0, -3.098105089785339, -3.928907690243953, -7.0, -3.131378035763099, -3.438966756918613, -7.0, -7.0, -3.082066934285113, -2.853850249054781, -2.7317901537745826, -7.0, -4.025340981997151, -7.0, -7.0, -7.0, -7.0, -3.4449811120879446, -7.0, -2.5018577027245423, -7.0, -3.0081741840064264, -7.0, -3.0224283711854865, -7.0, -3.2219355998280053, -3.4674601095072637, -7.0, -2.9337402994969355, -7.0, -7.0, -3.598899887063883, -2.7207792813583587, -3.403977963669355, -2.9431859207329296, -3.5518158223510157, -2.7127487086906523, -7.0, -3.2119210843085093, -2.6582499544669576, -7.0, -3.271609301378832, -7.0, -7.0, -7.0, -7.0, -3.6509870943834453, -2.3515336077721796, -7.0, -7.0, -2.672493690697651, -7.0, -2.585249170935557, -3.7051792448736762, -7.0, -2.9373925002214984, -3.4116261801916856, -3.119915410257991, -3.0064660422492318, -7.0, -7.0, -1.9915463125131274, -3.152135396861876, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0287745265000883, -7.0, -7.0, -2.9959997591277068, -2.722428241979694, -2.8738241766178168, -7.0, -7.0, -3.234390722392192, -2.931457870689005, -3.02626080875407, -3.061640934061686, -7.0, -2.579900799284342, -7.0, -7.0, -3.083860800866573, -2.928011577509416, -3.1031192535457137, -7.0, -3.3552599055273786, -3.1007150865730817, -3.5468421951528786, -7.0, -7.0, -3.3197304943302246, -3.3479151865016914, -3.3983567313797542, -7.0, -7.0, -3.167317334748176, -7.0, -3.0052663329727687, -3.286231854028553, -3.1949858434258807, -3.4378713091843833, -7.0, -7.0, -7.0, -4.696338911742569, -7.0, -2.7059858251715236, -3.683137131483007, -7.0, -2.401154272285065, -2.691397273771363, -3.5743785644130823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3604419331026376, -3.788168371141168, -3.3319765058958195, -3.749040268703457, -7.0, -3.620656479819621, -7.0, -7.0, -3.3346547668832414, -7.0, -3.5729296590793718, -7.0, -3.1760912590556813, -7.0, -3.4050046650503694, -7.0, -7.0, -3.1285608065593205, -7.0, -7.0, -7.0, -3.089728533074736, -7.0, -3.4992745818922173, -7.0, -3.920123326290724, -7.0, -7.0, -3.4847879835220605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3592661646067485, -7.0, -4.297826142585328, -7.0, -2.5477747053878224, -3.2438952103905967, -7.0, -3.2659179000852707, -2.6635124704151556, -7.0, -3.19506899646859, -3.37984917876283, -2.514547752660286, -2.62797998982998, -3.3805730030668872, -1.8931538580495026, -2.4300212762834783, -3.1301728888925355, -7.0, -2.7306477150202615, -2.962053485123806, -3.077750290941176, -7.0, -3.8010605298478555, -7.0, -3.335591612045706, -7.0, -7.0, -7.0, -7.0, -3.3223571441183184, -3.176814480674777, -7.0, -7.0, -4.370975449358971, -3.198547125064507, -7.0, -7.0, -7.0, -7.0, -7.0, -3.204662511748219, -7.0, -3.228400358703005, -3.9511431601075526, -3.361066449753942, -3.854852362417834, -4.145363575085632, -7.0, -7.0, -3.2242740142942576, -7.0, -7.0, -3.128722284338427, -3.463743721247059, -3.392696953259666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.469276965762279, -7.0, -7.0, -7.0, -2.857030798272624, -7.0, -2.762678563727436, -7.0, -7.0, -7.0, -2.7218106152125467, -3.5328817194073974, -3.018522180256059, -7.0, -7.0, -7.0, -2.550676688630637, -7.0, -3.3129485511971453, -7.0, -4.11541079013392, -7.0, -7.0, -7.0, -3.7237429174156507, -3.194930399217724, -2.995108457744741, -3.775974331129369, -3.2830749747354715, -1.9292296494062615, -2.4715361774216578, -7.0, -7.0, -2.7145692383738007, -3.2375437381428744, -7.0, -3.172894697752176, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3639408663008217, -7.0, -3.242417184417719, -3.375114684692225, -3.791824571446418, -2.4118236958598427, -7.0, -4.302893458356505, -3.1172712956557644, -2.9719712763997563, -3.1885535262742306, -7.0, -7.0, -3.5983527098692836, -7.0, -3.1300119496719043, -7.0, -3.4869968884318223, -4.20560386927874, -3.611988688083979, -2.781396305196791, -7.0, -7.0, -3.2075670505660874, -3.3898745583909853, -2.893206753059848, -7.0, -3.22219604630172, -7.0, -3.457124626303409, -7.0, -2.479552580772478, -7.0, -7.0, -7.0, -7.0, -3.657354686201244, -3.622369470494735, -4.119812498380216, -7.0, -7.0, -3.7429400140168823, -3.1283992687178066, -7.0, -2.5103215502161387, -2.8472641017707647, -3.0211892990699383, -2.931521433730744, -2.8760734367725553, -3.4578818967339924, -7.0, -7.0, -3.512817758564873, -7.0, -7.0, -7.0, -3.714245911017894, -7.0, -3.151169920303053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.11688987733376, -7.0, -7.0, -4.1217786323442205, -3.9814731626861795, -7.0, -7.0, -7.0, -4.725086342200653, -5.001036725417776, -4.589793271836795, -7.0, -4.680516809381255, -7.0, -7.0, -7.0, -7.0, -4.912174212399739, -4.291168975715262, -4.064345657162171, -3.4305909979730638, -7.0, -7.0, -4.2065830348377915, -7.0, -4.080720261319698, -7.0, -4.684046027136429, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.205366787866476, -3.8436687229791437, -7.0, -4.677205318381814, -3.954861957873765, -3.1478308499434595, -7.0, -3.5653558117307824, -3.4778444763387584, -3.5381663917586375, -3.7235788004625765, -7.0, -7.0, -3.790050473683351, -3.2719041290077024, -7.0, -3.603731904850924, -3.390876255625289, -7.0, -3.366111523378347, -4.386659455414194, -7.0, -7.0, -3.95346534860555, -3.7406756071737606, -4.928914510676959, -7.0, -7.0, -7.0, -3.9590461647617055, -3.829946695941636, -4.4523930349981296, -4.103358939866563, -7.0, -7.0, -4.337199605373581, -4.143155376433176, -4.48708178619026, -3.67797175281074, -3.534483017704701, -3.8534548413680665, -4.203353863290381, -3.418384164038612, -7.0, -3.344863649797128, -4.2605722081234925, -3.339153196257359, -4.348984012346455, -7.0, -7.0, -4.314951601661373, -3.61255075811203, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0478515240423842, -2.8779469516291885, -2.7117256126381752, -7.0, -7.0, -3.657896842346367, -7.0, -7.0, -7.0, -3.8016780590358934, -7.0, -4.024198232206868, -3.2095150145426308, -3.2352758766870524, -7.0, -7.0, -7.0, -3.7298934039632377, -7.0, -7.0, -3.8287243271387914, -7.0, -7.0, -7.0, -3.009981753317307, -7.0, -3.565217949843888, -7.0, -7.0, -7.0, -3.892935928788486, -4.3160332821256615, -7.0, -7.0, -3.273695587930092, -7.0, -2.784260582566084, -7.0, -3.375114684692225, -2.7620921705056984, -7.0, -7.0, -7.0, -3.0668847431297714, -3.443262987458695, -7.0, -7.0, -3.315130317183602, -7.0, -2.718667735316211, -2.524500814263041, -4.21505564736031, -7.0, -3.1484998267052453, -3.002166061756508, -7.0, -3.8675264111997434, -7.0, -7.0, -3.9356583861006342, -3.4590907896005865, -3.244512826988333, -3.08278537031645, -3.3683798716238016, -7.0, -7.0, -7.0, -7.0, -3.824581376233483, -7.0, -3.1609184995397808, -2.3152910364949637, -7.0, -7.0, -2.408114283215211, -2.7674065990040475, -3.3884564527002667, -7.0, -3.719186221662629, -3.0856472882968564, -3.791690649020118, -7.0, -3.459279375509105, -3.7274599208579087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.800258719947592, -7.0, -3.760648619581356, -7.0, -4.1830989401001295, -3.777330140625354, -7.0, -3.5485122563410356, -7.0, -3.1017470739463664, -7.0, -3.2343485271546655, -3.4295908022233017, -7.0, -7.0, -2.926856708949692, -2.8284450587956416, -3.5047086738488433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203168922875464, -7.0, -4.132707844855448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6633508724665367, -7.0, -7.0, -7.0, -7.0, -3.5182506513085, -7.0, -7.0, -7.0, -7.0, -3.7206553565517244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.602211967802297, -7.0, -7.0, -7.0, -4.1917862475822, -7.0, -3.065206128054312, -7.0, -7.0, -7.0, -7.0, -3.6367686426690313, -7.0, -7.0, -7.0, -3.240834905063529, -3.0111473607757975, -2.482873583608754, -7.0, -2.586812269443376, -1.778513011738925, -7.0, -3.785756799962643, -2.1609399149830604, -7.0, -7.0, -2.5403294747908736, -2.9684829485539352, -7.0, -7.0, -7.0, -3.0283678836970616, -7.0, -4.362746288823878, -7.0, -2.3915231836751634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.208699276558137, -7.0, -2.9927743642553555, -7.0, -7.0, -7.0, -2.814913181275074, -7.0, -7.0, -7.0, -7.0, -2.928907690243953, -7.0, -4.14744443254818, -7.0, -7.0, -3.37675939540488, -7.0, -7.0, -2.661917803408258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.525821952156663, -3.226342087163631, -7.0, -3.928915363223554, -3.2187979981117376, -3.536474268817627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.351409751925439, -7.0, -7.0, -3.6764558254563244, -7.0, -7.0, -7.0, -7.0, -3.478999131673357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8680269370808706, -4.452323216977515, -7.0, -7.0, -7.0, -4.39123512565331, -7.0, -7.0, -7.0, -7.0, -7.0, -3.694363857175814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023252459633712, -7.0, -4.14989620715876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3394514413064407, -7.0, -7.0, -2.4678546536923855, -4.540028994279416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0474695746198566, -3.231214647962601, -3.5678494505731067, -7.0, -7.0, -4.497870674955122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.614264287358705, -7.0, -7.0, -7.0, -3.7083359026822635, -3.8759675101142856, -7.0, -7.0, -7.0, -7.0, -2.7415455167762097, -3.1684974835230326, -3.231979026831504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.069223957297052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.429752280002408, -7.0, -7.0, -3.3560258571931225, -7.0, -3.84397984447816, -7.0, -7.0, -2.165095874754218, -2.2540644529143377, -7.0, -7.0, -7.0, -2.885361220031512, -7.0, -1.9646342876924021, -7.0, -5.4118174500912835, -7.0, -2.496237545166735, -7.0, -7.0, -7.0, -7.0, -3.297760511099134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464713045757064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.949390006644913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.312092690393716, -7.0, -7.0, -7.0, -4.010723865391773, -7.0, -7.0, -7.0, -3.6840819838753727, -7.0, -3.6522463410033232, -2.398634324538392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4038066105474227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6194585689943164, -7.0, -7.0, -7.0, -4.286289623452549, -7.0, -7.0, -7.0, -7.0, -7.0, -2.335280866452853, -7.0, -7.0, -3.4831592097169795, -3.4735599546008133, -3.249442961442582, -7.0, -7.0, -5.5272792308517, -7.0, -7.0, -7.0, -7.0, -3.4417736628051845, -7.0, -7.0, -7.0, -3.0813473078041325, -2.432969290874406, -7.0, -7.0, -7.0, -2.636989101812229, -7.0, -7.0, -7.0, -4.010929614728667, -3.9072500828813284, -5.574186427902285, -7.0, -3.7810369386211318, -4.540871483046771, -2.7208355991282493, -7.0, -7.0, -2.6857417386022635, -7.0, -2.993656628615462, -3.2304489213782737, -3.289142835932333, -2.53655844257153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.459337649135267, -7.0, -7.0, -4.292377922610312, -4.770697404733859, -7.0, -7.0, -7.0, -4.370031712709581, -7.0, -7.0, -4.034210058377503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.921702078597868, -7.0, -7.0, -7.0, -7.0, -7.0, -4.529828018849261, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9948082246466132, -7.0, -4.675659215036463, -7.0, -7.0, -7.0, -7.0, -7.0, -3.84789640861558, -7.0, -7.0, -7.0, -4.066568168015852, -4.764419000280632, -7.0, -7.0, -7.0, -7.0, -4.757922127563481, -7.0, -7.0, -7.0, -4.262906504093203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.369864957856229, -7.0, -7.0, -7.0, -4.533450051183524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070518097019869, -7.0, -7.0, -4.318334684226136, -7.0, -7.0, -7.0, -7.0, -7.0, -4.295220625687153, -4.484925911049592, -7.0, -3.988430125810669, -7.0, -7.0, -5.347218743600781, -7.0, -7.0, -4.305125563622699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8618130982567225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.595496221825574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6098610929805472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7929027354282665, -7.0, -7.0, -3.413467412985825, -3.325720858019412, -7.0, -3.4372747974101237, -7.0, -7.0, -3.769303460189082, -7.0, -7.0, -7.0, -7.0, -3.665393350279712, -7.0, -7.0, -3.0576661039098294, -2.910624404889201, -3.2304489213782737, -3.9780891730561425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8417347789747436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295567099962479, -3.7902147702439795, -7.0, -7.0, -3.7808931086870787, -4.026645602751596, -3.598790506763115, -7.0, -4.301789346768719, -7.0, -3.7214808547700495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.049992856920142, -7.0, -7.0, -7.0, -3.342620042553348, -3.4169731726030363, -7.0, -2.9041743682841634, -7.0, -3.148396974251975, -3.6489451821656727, -7.0, -7.0, -7.0, -3.041787318971752, -4.090998297753198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.783427117917317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.797959643737196, -3.1541195255158465, -7.0, -7.0, -7.0, -3.2342641243787895, -3.8642979806968483, -7.0, -7.0, -7.0, -3.1753800132708143, -2.6398439122942654, -7.0, -7.0, -7.0, -7.0, -7.0, -2.921994581367604, -7.0, -7.0, -3.257838506552783, -3.3906446440834803, -7.0, -2.889021422095225, -7.0, -3.459392487759231, -2.86053763630648, -3.210318519826232, -4.870608712866837, -7.0, -7.0, -7.0, -3.2140486794119414, -7.0, -3.170848203643309, -7.0, -7.0, -7.0, -7.0, -3.7123472236152164, -2.673635185140647, -7.0, -2.467312062980552, -7.0, -3.0145205387579237, -7.0, -7.0, -7.0, -3.0261245167454502, -7.0, -2.9160602863599974, -7.0, -2.6214235880182097, -3.545121480864834, -3.216429830876251, -7.0, -3.551327988003846, -3.2755416884013093, -7.0, -7.0, -7.0, -3.2528530309798933, -7.0, -3.7637274037656985, -7.0, -7.0, -7.0, -7.0, -3.7926717891415676, -7.0, -3.1341771075767664, -3.5423273827739745, -2.134475182044132, -7.0, -2.8836614351536176, -7.0, -7.0, -3.442845446763725, -1.7697543178375743, -3.193958978019187, -3.0806264869218056, -2.950364854376123, -3.255754786643044, -2.189097109071418, -3.0304985232047095, -3.1177682949263725, -7.0, -2.8928805454201445, -2.6728159545616648, -3.050959459771651, -7.0, -7.0, -2.6912078323367767, -3.412124406173317, -3.506234359612126, -2.6225907694500417, -7.0, -3.571446778880142, -7.0, -7.0, -7.0, -3.2302785764135864, -7.0, -3.5033820634737327, -3.3585059114902354, -2.5262530993000873, -2.1187561257223226, -2.278499553281412, -7.0, -3.323252100171687, -7.0, -4.398963736125521, -7.0, -7.0, -7.0, -7.0, -3.4051755462179893, -7.0, -7.0, -3.7189770162143927, -7.0, -7.0, -7.0, -7.0, -2.6240757311456826, -3.5546102852261643, -3.383456296524753, -7.0, -3.2533380053261065, -3.274913217187631, -2.1728363601227105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.361085360488826, -3.0898344887086298, -3.4787107555127594, -3.272924057292105, -7.0, -3.9226735678585545, -7.0, -7.0, -3.036628895362161, -7.0, -3.175627764367181, -7.0, -3.1809855807867304, -7.0, -2.851490725839368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0514098059157493, -2.721260875288632, -7.0, -7.0, -7.0, -7.0, -3.168202746842631, -2.801403710017355, -3.962416693445751, -2.0017337128090005, -4.298197867109815, -7.0, -3.7817553746524686, -3.0966392743958857, -7.0, -3.7446840632768863, -7.0, -2.8834721588455867, -7.0, -3.081527326244805, -7.0, -7.0, -3.082246654743669, -2.858623119912763, -7.0, -7.0, -7.0, -3.9882021002587806, -3.4424797690644486, -3.8803180615942368, -7.0, -3.8016437748849454, -7.0, -3.2116544005531824, -7.0, -7.0, -3.1838390370564214, -7.0, -7.0, -7.0, -7.0, -2.4244732731953342, -4.371289573064557, -3.8988896559265864, -7.0, -3.0881360887005513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.951968584492911, -7.0, -3.3780040105060434, -4.483164248491344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.344411924574547, -7.0, -7.0, -7.0, -7.0, -3.2612628687924934, -7.0, -7.0, -7.0, -7.0, -3.424881636631067, -1.835984598685146, -3.865340905624584, -7.0, -7.0, -7.0, -3.2897713227931304, -2.0851198741382158, -2.1276719188204827, -7.0, -4.717662183104909, -2.589726256254237, -2.3201462861110542, -2.8796692056320534, -7.0, -3.321184027302314, -3.0416996535532257, -2.8731025277551283, -3.8864343196289384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4765418090274287, -7.0, -7.0, -3.3951515915045425, -7.0, -2.0507068636274597, -3.3647385550553985, -7.0, -7.0, -7.0, -3.6290877094305602, -2.756940236046724, -7.0, -4.303260872655577, -7.0, -3.2773799746672547, -7.0, -7.0, -3.9919787909945836, -3.2989621819201167, -7.0, -7.0, -7.0, -2.1615106042661045, -4.175647730582203, -2.043012181684635, -7.0, -7.0, -7.0, -3.5100085129402347, -2.6494233728226906, -7.0, -7.0, -7.0, -7.0, -2.8567288903828825, -2.5974209235343935, -2.6142190428516683, -7.0, -7.0, -2.1565847799040894, -7.0, -2.911313252681234, -2.6749131095237257, -4.043175550211232, -7.0, -2.84279639517558, -7.0, -3.527823164012659, -7.0, -7.0, -7.0, -3.324385356490427, -7.0, -7.0, -2.9827233876685453, -7.0, -7.0, -1.5020609001161556, -7.0, -7.0, -7.0, -7.0, -7.0, -2.506719307031022, -7.0, -3.0930713063760633, -7.0, -7.0, -7.0, -3.3964608915070755, -4.719140619695215, -3.6880102529917385, -3.619249898968967, -3.695886449894574, -3.0644579892269186, -3.709778601848225, -7.0, -7.0, -4.424179013578782, -5.001110373201611, -3.987856115558465, -7.0, -4.2035133564685125, -4.324477946722502, -7.0, -7.0, -7.0, -5.389332679678082, -7.0, -3.6964812039323243, -4.130365937265207, -7.0, -7.0, -3.905957699092427, -7.0, -3.2742733377584177, -7.0, -3.905957699092427, -4.33897415086708, -4.213730203854841, -7.0, -7.0, -7.0, -3.9871297676598974, -7.0, -2.578441237407785, -7.0, -3.5309950844480262, -4.1658153906150925, -3.0235610900969454, -2.8779469516291885, -2.8514950644672523, -2.7007037171450192, -3.3678266846246245, -3.5481026604586483, -7.0, -7.0, -3.1876476065305965, -3.784260582566084, -7.0, -2.9860145716111237, -2.7215750975918596, -7.0, -2.7291024582277323, -7.0, -7.0, -7.0, -3.489598174792466, -3.378092120780078, -5.105023672859679, -7.0, -7.0, -7.0, -3.8799269556700935, -7.0, -4.084404330348212, -3.6266824662362946, -7.0, -7.0, -4.337539124196711, -4.143420785129937, -3.7467120225166606, -3.2020339865636913, -2.641092581460935, -3.5533367823768884, -3.2392124047210666, -3.8959609362542365, -7.0, -3.183402394973477, -4.260653238993932, -7.0, -5.34905206331604, -7.0, -3.3687516195445553, -3.4117459360126303, -4.312050351180238, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9741661461216427, -7.0, -2.6849269269525506, -7.0, -7.0, -3.3570004904409223, -3.5052856741441323, -7.0, -7.0, -3.3254472435942937, -7.0, -3.848182272264775, -3.211031500871904, -3.239549720840473, -7.0, -4.150695051142714, -7.0, -3.731266349075492, -7.0, -7.0, -3.8298181874388773, -7.0, -7.0, -7.0, -3.136931851267557, -7.0, -4.043165720207454, -7.0, -7.0, -4.604798253272669, -3.8418285554494096, -3.838946988281371, -7.0, -7.0, -3.3714834772045275, -7.0, -3.2643455070500926, -7.0, -7.0, -2.790613517602193, -7.0, -7.0, -7.0, -2.8935768378559144, -7.0, -7.0, -7.0, -2.5384480517102173, -7.0, -3.1204093945560682, -2.6951897138022916, -7.0, -7.0, -3.3265406685165617, -3.606703741333674, -7.0, -3.3236645356081, -7.0, -7.0, -7.0, -7.0, -2.9229263274952144, -3.261143867700667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.16345955176999, -2.7041505168397992, -7.0, -7.0, -3.3664229572259727, -2.3769800333134876, -3.6911699341316035, -7.0, -3.476376111016299, -7.0, -3.792881745385397, -7.0, -3.216655927791676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.581380688709987, -7.0, -3.158349925522182, -7.0, -7.0, -3.555590156480247, -7.0, -2.9478011971439804, -7.0, -7.0, -7.0, -3.7132384615456617, -3.0325381792600066, -7.0, -7.0, -3.4075608494863623, -7.0, -3.4538108048586555, -3.269512944217916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.550228353055094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5067755366066433, -7.0, -3.530999651425947, -3.816174990428802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9066985977508377, -7.0, -7.0, -3.3138672203691533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.229681842317676, -7.0, -7.0, -7.0, -3.203032887014711, -2.3479801568783407, -3.0775495804517936, -7.0, -7.0, -3.792184191580062, -7.0, -3.14674801363064, -3.2027606873931997, -4.221753194318869, -3.2366883817646155, -7.0, -3.28668096935493, -7.0, -3.1903316981702914, -7.0, -4.056542788387697, -2.9374677396433775, -7.0, -3.271221849767887, -3.6978033714617387, -7.0, -7.0, -7.0, -3.484299839346786, -3.3710678622717363, -7.0, -3.7253222994444557, -3.3298045221640695, -2.5777789366952244, -7.0, -7.0, -2.8702575549888794, -7.0, -7.0, -7.0, -3.210318519826232, -7.0, -3.344676033565773, -7.0, -3.2681097298084785, -7.0, -2.749736315569061, -3.028571252692538, -7.0, -7.0, -7.0, -3.0595634179012676, -3.4348881208673157, -3.2697304615080656, -7.0, -7.0, -7.0, -7.0, -3.0025979807199086, -2.96883304489043, -3.0115704435972783, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3510526263120277, -7.0, -7.0, -3.543074235033532, -7.0, -3.503245771465113, -2.4167236975467343, -7.0, -7.0, -4.2834272333748435, -7.0, -7.0, -7.0, -7.0, -3.9289588408808296, -7.0, -7.0, -7.0, -3.5733358400660675, -3.2949069106051923, -3.6108730003800513, -7.0, -7.0, -7.0, -3.7855789489089666, -7.0, -7.0, -7.0, -7.0, -3.257438566859814, -7.0, -7.0, -7.0, -7.0, -3.1366341031122076, -3.005395031886706, -7.0, -7.0, -4.016029963076024, -7.0, -7.0, -7.0, -7.0, -3.5501234805592565, -7.0, -7.0, -7.0, -3.382917135087531, -3.4985689855032085, -7.0, -7.0, -3.4954055631461936, -7.0, -3.7206553565517244, -7.0, -3.5014426968612273, -3.9835736695139654, -7.0, -7.0, -3.285782273779395, -4.39610776932746, -3.358315640082196, -3.5747255835940734, -7.0, -3.182699903336043, -7.0, -3.319896858814888, -7.0, -7.0, -7.0, -3.5403115948640758, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3674677421179733, -2.758430145835095, -4.1827854420846835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.18537214331104, -7.0, -7.0, -7.0, -3.4394905903896835, -7.0, -7.0, -7.0, -3.089728533074736, -7.0, -7.0, -7.0, -7.0, -7.0, -3.449324093098727, -3.929776432804902, -3.4255342204982635, -3.2657609167176105, -3.1068093585753127, -7.0, -2.846337112129805, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9703933720796, -7.0, -4.000824376605606, -3.1571544399062814, -3.0149403497929366, -3.5099720837452923, -7.0, -7.0, -3.0798141308006843, -7.0, -3.521530341278711, -3.412460547429961, -2.1654473879113305, -2.5177612629444233, -2.5660163785366477, -3.719082573901486, -7.0, -3.747489492258673, -7.0, -3.694605198933569, -2.6214730323720974, -7.0, -7.0, -2.3566062594800776, -7.0, -2.264424262056547, -2.5728716022004803, -2.713994267660644, -7.0, -2.786751422145561, -2.2514354212468133, -2.4602142372606046, -7.0, -7.0, -7.0, -3.1294213284149075, -7.0, -7.0, -7.0, -7.0, -7.0, -3.252610340567373, -7.0, -2.9724342769573653, -3.357791963471643, -7.0, -3.5593379612178344, -3.764244997238098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.887898488096872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1314582601065255, -3.5853920609208165, -7.0, -7.0, -7.0, -7.0, -3.299942900022767, -3.285107029566812, -7.0, -7.0, -1.4888870747064173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.380432353900823, -7.0, -3.847041804641579, -7.0, -3.463519723400486, -7.0, -7.0, -7.0, -3.2539031250960253, -3.8101652845431495, -4.004020273253242, -3.789369153591482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2604291755779347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4976666774938954, -2.8898617212581885, -2.661576077260146, -2.451103850736384, -4.180683285785931, -3.1643032759588334, -3.1947917577219247, -2.452650144816879, -2.696938553005363, -7.0, -3.6832272060414346, -2.6745549761273852, -3.3971140642605224, -7.0, -3.8490506905695123, -7.0, -3.0308020487722676, -7.0, -4.486576657494575, -3.6217992240026677, -7.0, -7.0, -7.0, -7.0, -3.406114192678464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.996000608571067, -2.5163149757779495, -3.0457140589408676, -3.7085908451503435, -2.9951962915971793, -4.385624145431483, -7.0, -4.252563520384129, -7.0, -7.0, -3.0261699521675665, -3.3624196382493063, -7.0, -1.469822015978163, -7.0, -2.738284958200182, -2.8919708544400624, -3.492271357949134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2522055549271984, -7.0, -3.2144331927092873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.390139938467622, -7.0, -4.600983780123833, -4.408556522973944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.322808294799657, -2.849214606209089, -4.678909705045905, -4.4675045136258955, -3.9360107957152097, -3.7377490738915573, -4.0463000196529695, -7.0, -3.9824948572205137, -3.2537417373268314, -2.7033988634507047, -3.6105841244865333, -3.925663623625178, -3.6474185374117942, -7.0, -7.0, -7.0, -7.0, -3.854973673726417, -4.3899807298820175, -7.0, -7.0, -4.150616110038816, -4.285119700058644, -5.008256858305089, -7.0, -3.1622656142980214, -7.0, -4.65898389025032, -7.0, -5.406981063516755, -7.0, -7.0, -7.0, -4.340919793400163, -4.447127009199851, -4.312297271757502, -7.0, -3.9372921607115727, -3.864689034136851, -3.3715459208911014, -4.1993848820922866, -3.301897717195208, -4.471081359869327, -4.659431268195865, -7.0, -3.3277888798400754, -7.0, -7.0, -4.015841571684366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0292484623758416, -3.7325277806485664, -7.0, -7.0, -3.1046577910087962, -7.0, -3.469527479187014, -7.0, -3.8143142002074595, -7.0, -3.28474510325095, -3.402175375031505, -3.2801228963023075, -7.0, -7.0, -7.0, -3.0451664480652285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.154525408238757, -7.0, -4.049799277918987, -7.0, -7.0, -4.606628541616139, -4.319623016720785, -7.0, -7.0, -3.5684364144168854, -3.2029875322570165, -7.0, -2.436162647040756, -7.0, -7.0, -3.096307373399723, -7.0, -7.0, -7.0, -3.401745082237063, -7.0, -7.0, -3.4263485737875077, -3.3527611917238307, -7.0, -7.0, -7.0, -4.219977256744623, -3.162564406523019, -7.0, -3.6245914591268478, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7068599641949294, -3.205619067144219, -7.0, -7.0, -3.406540180433955, -7.0, -7.0, -7.0, -7.0, -7.0, -2.789298611159441, -3.862131379313037, -7.0, -7.0, -3.0754861315749507, -3.794746893067343, -2.321788233178031, -3.510813010512496, -2.496433925220682, -2.468233685381572, -3.1051012445496426, -7.0, -3.2230135770130466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.541267138664084, -7.0, -7.0, -3.60342105844824, -7.0, -7.0, -7.0, -2.7338390006971496, -7.0, -2.948331446401186, -2.2942299611370496, -7.0, -7.0, -7.0, -7.0, -3.296850746548013, -3.0060379549973173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.76774936734558, -7.0, -7.0, -7.0, -7.0, -3.302330928684399, -7.0, -7.0, -3.41161970596323, -3.837556874989602, -3.5261453526347117, -3.736077637003946, -3.2880255353883627, -7.0, -7.0, -7.0, -7.0, -4.210064237291544, -7.0, -7.0, -3.1551335219650514, -2.8594985581877763, -7.0, -7.0, -7.0, -3.5035183127240748, -7.0, -7.0, -2.8066886148562817, -7.0, -7.0, -3.4000196350651586, -3.0464951643347082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.063285095369489, -7.0, -7.0, -3.0806264869218056, -4.242491735011311, -3.3537479789120974, -7.0, -7.0, -7.0, -7.0, -7.0, -4.37287519679339, -2.527721941664711, -3.3344537511509307, -2.550024411054679, -3.325600303415046, -7.0, -7.0, -7.0, -3.1095785469043866, -2.8974896345771866, -3.1149444157125847, -2.409078641752536, -3.1687920203141817, -2.5880848733346493, -3.370698092575577, -2.7183355789085066, -2.4617062624483825, -3.0907869279492677, -7.0, -7.0, -3.307602993826056, -7.0, -3.474551018678706, -3.3809344633307017, -7.0, -7.0, -7.0, -7.0, -2.6254839394069043, -2.4658288153574364, -7.0, -3.1915907263792107, -3.548635059814752, -2.792697052407104, -3.659440781870318, -2.688864568054792, -2.1114167805966386, -7.0, -3.451632947456991, -3.0548045002209547, -7.0, -3.4699692094999595, -3.471731651480051, -7.0, -3.443262987458695, -7.0, -3.8751625869501884, -7.0, -3.361160995195026, -3.156650091362893, -7.0, -2.8555797225017177, -2.577204473011063, -3.370513089598593, -7.0, -4.529109391761361, -7.0, -3.004858534620329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6588695922019623, -7.0, -2.78559673729218, -3.722798396870905, -3.5575072019056577, -7.0, -3.421702618946589, -7.0, -3.786964259435733, -7.0, -7.0, -3.646893624167745, -7.0, -3.6225248624035684, -3.1470576710283598, -7.0, -3.502263204344856, -7.0, -7.0, -7.0, -3.446575997104686, -7.0, -3.6203442997544935, -7.0, -2.8265067216642272, -3.130079720823589, -2.5859439053216287, -2.5484771632553307, -3.012274667007467, -3.2079035303860515, -3.0928208626335234, -7.0, -7.0, -3.1183749671059116, -7.0, -3.305852740224386, -7.0, -2.899116684799909, -4.466837974667767, -7.0, -7.0, -7.0, -4.098583162602924, -3.0132586652835167, -3.6600112212893308, -2.9862490725727446, -7.0, -7.0, -3.3823172807353936, -3.677150521273433, -7.0, -7.0, -4.399950474386311, -7.0, -7.0, -7.0, -7.0, -7.0, -3.794975744051132, -2.949877704036875, -3.7281913985899466, -3.820398522703982, -7.0, -7.0, -7.0, -2.911512714632127, -3.1987945001755986, -7.0, -3.9286518466536946, -3.0455185628844927, -7.0, -7.0, -2.960518342780708, -7.0, -2.8601382850306134, -3.5673793076509788, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9564885886040557, -1.1373102592981563, -1.8865863110608183, -2.0570318194654, -3.424718337331567, -2.516943147777456, -3.4095950193968156, -7.0, -7.0, -2.0490628897941248, -3.100370545117563, -7.0, -3.3527611917238307, -3.0517954455579925, -7.0, -7.0, -3.35237549500052, -7.0, -3.0486254683237726, -7.0, -2.9696821057315477, -3.750354088762708, -2.9134164500544135, -2.660865478003869, -7.0, -3.5601458398490475, -7.0, -7.0, -2.935938898606875, -7.0, -2.9025467793139916, -7.0, -7.0, -2.874713688757779, -4.375901268009488, -3.3802112417116064, -3.055378331375, -3.3439990690571615, -3.1758016328482794, -3.4302363534115106, -3.23159700556491, -7.0, -7.0, -2.8212156788067166, -3.0003255987771427, -7.0, -3.321598430465344, -4.389112902192263, -2.6256063897085316, -7.0, -7.0, -3.4008832155483626, -7.0, -2.900913067737669, -7.0, -7.0, -7.0, -3.6961815871685237, -2.5696859588340777, -3.884228769632604, -7.0, -7.0, -3.106020819140269, -7.0, -7.0, -3.04688519083771, -7.0, -2.5902844037181616, -7.0, -2.115738490010839, -3.334051440346892, -3.034227260770551, -3.3708830167776056, -2.912930241739325, -3.3394514413064407, -2.3636119798921444, -2.590817075254678, -3.036711641762698, -7.0, -7.0, -7.0, -7.0, -2.601749670141552, -2.835214806082161, -7.0, -3.148294097434746, -7.0, -7.0, -3.8935398435646613, -3.2206832779743455, -7.0, -7.0, -7.0, -3.572716745902921, -7.0, -3.7108182495386917, -2.6059204121412005, -3.1937627975610106, -7.0, -7.0, -2.3154455182245846, -4.064120905829622, -3.861773296718693, -2.86053763630648, -2.9393944374196264, -7.0, -7.0, -7.0, -3.0676287167282457, -2.7268629897004635, -3.064083435963596, -2.26462108711403, -7.0, -3.094994900944612, -2.3287872003545345, -2.485011214578573, -2.5379449592914867, -7.0, -3.597366050266028, -2.647340440174626, -7.0, -3.351892891903961, -3.226857570288723, -3.8152171095431946, -2.8342389905065373, -7.0, -3.7218518176680497, -7.0, -7.0, -3.449863924718144, -2.784260582566084, -4.033504172945174, -3.6961815871685237, -1.7820970697778085, -1.8949899099598944, -2.100111959529749, -7.0, -4.176281663483603, -3.3609245929890346, -7.0, -7.0, -7.0, -7.0, -3.7717344253867693, -3.1082266563749283, -2.08878020373431, -7.0, -7.0, -3.5873741720730656, -7.0, -2.829432433617599, -3.145040940037024, -3.181414796254284, -7.0, -7.0, -3.867491058154675, -3.9404666776635286, -4.186079508649366, -7.0, -3.1225435240687545, -3.946689653741433, -2.8077604599357904, -7.0, -7.0, -7.0, -7.0, -3.1954014495202188, -3.846955325019824, -3.587935348636356, -7.0, -7.0, -7.0, -2.6942541120252788, -2.7389390312034796, -2.5474670224263853, -2.1316186643491255, -2.2872848151912764, -2.7469454096151047, -7.0, -3.0457140589408676, -4.614253730728656, -4.784652947530634, -7.0, -7.0, -4.727232098507561, -4.404320467221731, -7.0, -7.0, -4.112074096198641, -7.0, -7.0, -7.0, -4.43215924174396, -4.7043178510491535, -4.299790489253733, -7.0, -7.0, -4.454463732751138, -7.0, -7.0, -3.7410727723733213, -5.391074553266963, -7.0, -4.553846631726588, -4.160948480864697, -7.0, -4.674649910242433, -7.0, -7.0, -4.786914606730178, -7.0, -4.692961424024017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.595455803368671, -3.9752019622578523, -7.0, -7.0, -7.0, -4.239849820690192, -2.543051622006951, -3.6875289612146345, -3.865932668193186, -3.628333188143986, -2.6185578527092255, -7.0, -4.4642211975344495, -7.0, -3.3697722885969625, -7.0, -4.404166374048794, -7.0, -7.0, -4.300321518092267, -4.490402385350703, -5.7079276831885455, -7.0, -2.225640576640016, -3.4072208929273966, -3.9223998627538696, -7.0, -5.107332097797437, -4.136371723492323, -7.0, -7.0, -7.0, -7.0, -4.795156749400232, -7.0, -7.0, -7.0, -4.907782072798176, -4.034307529596563, -7.0, -4.049033796209662, -3.8502738366161147, -7.0, -4.3509280096547585, -7.0, -7.0, -4.149249912590282, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7950592943557186, -2.8258586820285867, -3.3856573340277287, -7.0, -7.0, -3.5304192606354143, -7.0, -2.316319878258001, -7.0, -3.5643109099606027, -7.0, -3.6329429444376293, -3.1658376246901283, -7.0, -3.590507462008583, -7.0, -7.0, -2.6563035907524855, -7.0, -7.0, -7.0, -7.0, -3.4500950758716025, -7.0, -3.230193378869046, -7.0, -7.0, -7.0, -7.0, -7.0, -4.059163946293072, -7.0, -7.0, -7.0, -2.3410765519431496, -7.0, -2.8224482994972595, -7.0, -3.226857570288723, -3.513150985376206, -7.0, -7.0, -7.0, -3.5233562066547925, -3.8165064370463573, -7.0, -7.0, -3.4868553552769432, -7.0, -3.55942779975949, -7.0, -7.0, -7.0, -3.018783688874697, -2.855259487808403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2972393665700785, -3.6661434272915585, -7.0, -7.0, -7.0, -7.0, -2.9459607035775686, -7.0, -7.0, -3.2899232395240046, -3.4308809464528913, -7.0, -7.0, -3.4237918130180067, -3.568602576714357, -2.9916690073799486, -3.130655349022031, -3.563303059369412, -7.0, -7.0, -7.0, -3.495509648103409, -7.0, -7.0, -7.0, -3.3564083270389813, -7.0, -7.0, -7.0, -7.0, -7.0, -3.852260351006953, -7.0, -7.0, -2.7399146106536945, -7.0, -3.6568644915489172, -7.0, -3.2467447097238415, -7.0, -2.5563025007672873, -3.503790683057181, -7.0, -7.0, -3.5491259267581112, -7.0, -3.6464037262230695, -3.45408227073109, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8135809885681917, -7.0, -7.0, -7.0, -2.4059204236653433, -7.0, -7.0, -7.0, -3.2601310397236345, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4239009185284166, -7.0, -2.687633863263913, -3.44870631990508, -2.742882171437273, -3.70816585785554, -7.0, -3.6334684555795866, -7.0, -7.0, -3.602385590105105, -7.0, -3.796435558810175, -2.9265996539070276, -3.4667193716815987, -7.0, -3.0775495804517936, -7.0, -3.0203612826477078, -7.0, -7.0, -2.6838186602633978, -3.1885066338181143, -7.0, -7.0, -3.527670171118658, -7.0, -7.0, -3.3600250891893975, -3.7623033632877685, -2.7085908451503435, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6715615891070583, -2.6478019710944465, -7.0, -3.4983105537896004, -3.2153824330757863, -7.0, -3.0818871394235496, -7.0, -2.668851648082519, -2.7836177651907485, -3.0946457896059547, -2.7950859806492927, -2.9745116927373285, -3.3453737305590887, -7.0, -2.69810054562339, -2.6597973943019357, -3.370698092575577, -3.6735737964230517, -7.0, -2.5523363135496857, -7.0, -3.533533366055707, -7.0, -7.0, -7.0, -2.99211148778695, -3.1788331173591167, -7.0, -7.0, -7.0, -2.998259338423699, -7.0, -2.566667327261374, -2.9482172935599706, -2.604000925049828, -2.4625643623836195, -7.0, -2.6532125137753435, -2.7414470707864638, -7.0, -3.4520932490177314, -3.15259407792747, -7.0, -3.1228709228644354, -3.1266183755229515, -3.244669969749393, -7.0, -7.0, -2.842817185260646, -7.0, -3.1499577088910593, -2.3397090190622074, -7.0, -3.337459261290656, -4.016785926566524, -3.342620042553348, -2.8153563389481215, -7.0, -3.375114684692225, -3.1845494813206976, -7.0, -7.0, -7.0, -3.3461573022320086, -7.0, -2.5631158250853248, -7.0, -3.2416709737841294, -7.0, -3.265690002399037, -3.4079854213081364, -3.481550113834348, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1377496076933964, -7.0, -3.498999363580153, -7.0, -7.0, -7.0, -3.002048191086249, -7.0, -2.6058435390580894, -2.798097932062486, -2.4694538137671267, -2.6345968046694317, -7.0, -3.0729847446279304, -3.472902651803664, -3.4929000111087034, -2.401721445968765, -7.0, -7.0, -3.5826314394896364, -7.0, -3.1721649135409566, -2.9718940616281238, -2.896001009441626, -4.46595508858566, -3.4119562379304016, -7.0, -3.4194600727860704, -3.700024059767739, -2.8709888137605755, -3.3473300153169503, -3.278753600952829, -7.0, -7.0, -2.6893088591236203, -2.819919785398216, -7.0, -3.326949994165999, -3.7957236431815518, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1883307420001077, -2.7310926412065784, -3.0875903211365454, -7.0, -7.0, -3.1197741686235183, -7.0, -7.0, -7.0, -7.0, -2.9674439660442773, -7.0, -3.3771240423464564, -7.0, -2.812591095596879, -7.0, -7.0, -7.0, -3.4992745818922173, -3.0474695746198566, -7.0, -7.0, -1.9564885886040557, -7.0, -2.1074612247789166, -1.4334457411083303, -1.3669493110437692, -7.0, -3.2422181677094666, -7.0, -7.0, -7.0, -2.0670546754793615, -2.600791448229794, -3.3690302218091532, -3.329194415088451, -2.7212898263240337, -7.0, -4.3167249841904995, -7.0, -7.0, -2.7641128782236777, -7.0, -3.506437380020297, -2.534581317778785, -3.500236474825639, -3.0014091684058766, -3.214711421005384, -2.6990940707507756, -2.1951710924633283, -3.0388849756663854, -3.170774935911056, -7.0, -1.9631532545665087, -7.0, -7.0, -2.3012712033802085, -3.528402437953617, -2.88024177589548, -2.8999813462798674, -7.0, -3.8682916880178557, -7.0, -2.9146075677710805, -7.0, -3.404149249209695, -3.5555176491927667, -3.5899496013257077, -7.0, -3.6103407114521566, -7.0, -2.988905619919238, -7.0, -7.0, -7.0, -7.0, -3.356599435724971, -7.0, -3.040602340114073, -3.1094097905463656, -3.514769049216363, -2.657693115600798, -3.704693760279812, -5.015389936988531, -7.0, -2.686278678067201, -3.4080702858871854, -7.0, -7.0, -7.0, -2.8789811233937366, -7.0, -2.477778778663434, -7.0, -3.0096633166793794, -3.3483048630481607, -2.521884935963594, -7.0, -2.8662873390841948, -2.5298151966446305, -3.6495198326589673, -7.0, -7.0, -7.0, -3.064832219738574, -3.1285608065593205, -7.0, -7.0, -2.953115098691848, -3.8109713998222077, -7.0, -3.8868853589860084, -2.912859475162355, -7.0, -3.3370597263205246, -7.0, -3.092818079113849, -7.0, -3.9524897355097743, -2.8312296938670634, -3.6454468328219587, -7.0, -7.0, -3.377306251068199, -3.1047904955244556, -7.0, -2.827651924858077, -3.0570952896126675, -3.45540324233088, -2.906200314184372, -3.4265112613645754, -2.86844850133673, -2.3726287982115197, -2.1876179545728824, -1.5779974549453202, -7.0, -2.52781396295585, -1.1811800845513774, -2.463332970234029, -3.525044807036845, -7.0, -2.9813655090785445, -2.400451639956946, -7.0, -7.0, -7.0, -4.057935394535143, -2.54236429452904, -3.05307844348342, -3.476231073378763, -7.0, -7.0, -2.9628426812012423, -2.769869444521887, -3.551409331791666, -2.9066043717249803, -2.1681120183768696, -2.070037866607755, -2.1745091280458064, -7.0, -4.715515452064854, -2.8102325179950842, -7.0, -7.0, -7.0, -3.3883380679423025, -3.1603934910355846, -3.388988785124714, -1.57012454439491, -3.3241795297178998, -7.0, -3.2725377773752373, -7.0, -2.1263766159975894, -7.0, -2.862429556106009, -3.7640266076920375, -7.0, -3.7206140404234618, -3.0725506671486116, -4.357711408399213, -7.0, -2.814303100170861, -3.578094568125386, -2.600629036221514, -7.0, -2.673020907128896, -7.0, -2.927626962444954, -2.655928985380298, -3.2371036915866878, -3.2731170684867417, -7.0, -7.0, -3.1394592753662236, -1.9160777731414746, -2.5728716022004803, -2.5870692294283315, -1.890920833105978, -2.781396305196791, -2.2700504293449453, -7.0, -7.0, -4.612995656032347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.608493941666254, -4.412471747659022, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.390864484372611, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.691912136795967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.450249108319361, -7.0, -3.691773806297744, -3.1910782294789994, -7.0, -7.0, -7.0, -4.540607234292212, -2.0431695751374144, -2.6335602628903403, -4.165259168471885, -3.4649596916158814, -2.706673799140085, -7.0, -3.9852617672492965, -7.0, -3.0457140589408676, -7.0, -3.4987928353293385, -7.0, -3.451632947456991, -3.4800156583921136, -4.167985074726467, -5.230701760433507, -3.3712526291249394, -2.488953400332635, -7.0, -3.582896287811938, -7.0, -5.408163617774523, -3.8314858392486575, -4.258661223325604, -7.0, -4.354492600589436, -4.457791093970606, -4.794327683619487, -7.0, -7.0, -7.0, -3.6516871265575213, -7.0, -7.0, -3.317737880642894, -4.009450895798694, -7.0, -3.5870836235508463, -7.0, -3.7437448785924614, -3.4787931682426243, -3.3754400598577745, -7.0, -2.175263242633451, -7.0, -7.0, -7.0, -3.7933992038918922, -2.3329992017390233, -3.3245653749310993, -7.0, -7.0, -3.3732247295944737, -7.0, -1.8507687269288802, -3.3647385550553985, -3.3809946774704036, -7.0, -3.4859308862166265, -3.282017561561504, -7.0, -7.0, -7.0, -7.0, -2.891955383429181, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.695831772826692, -7.0, -3.7748452995958517, -7.0, -7.0, -7.0, -3.82133766507704, -7.0, -7.0, -7.0, -1.844533654643206, -7.0, -2.6141299110951928, -7.0, -2.8125122842899826, -3.112157966516305, -7.0, -7.0, -7.0, -2.904715545278681, -3.8085485512404054, -7.0, -3.5269850685599957, -3.168350140185944, -7.0, -2.6401085986457034, -3.098797499203422, -7.0, -7.0, -2.5600775062037324, -2.093152188112381, -7.0, -7.0, -7.0, -7.0, -7.0, -2.493574219106595, -2.863616334522576, -3.353627758985543, -7.0, -7.0, -7.0, -7.0, -2.556647042222806, -7.0, -7.0, -3.2764618041732443, -2.821404340602337, -7.0, -7.0, -2.570153612664517, -2.938284207555805, -2.41611074141508, -2.8160202287312686, -2.781595824877749, -3.657151501900967, -3.3722367269416367, -3.483301952358167, -3.394381627679536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.248818948640947, -7.0, -4.207553585949308, -2.9524143949959307, -7.0, -3.04267393611923, -7.0, -3.231851723743416, -7.0, -2.0012495576348677, -2.8927205376754648, -7.0, -3.3226327116922234, -2.754857772111842, -2.8606374167737547, -3.5774753862813395, -2.7352794480604565, -7.0, -7.0, -3.321391278311689, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1112978955061585, -7.0, -7.0, -7.0, -2.6519238051682956, -7.0, -7.0, -7.0, -2.928666900449495, -3.8701111553644005, -7.0, -7.0, -2.542410429811593, -7.0, -7.0, -7.0, -2.8960141473867185, -2.9521464117135063, -3.4240645254174877, -7.0, -7.0, -3.3200423754796446, -7.0, -7.0, -3.589279221235967, -7.0, -3.3106933123433606, -3.2125870781238937, -3.44870631990508, -7.0, -2.968716377466786, -3.1983821300082944, -7.0, -7.0, -7.0, -3.4566696294237573, -7.0, -3.2477278329097232, -7.0, -3.906607064180874, -7.0, -7.0, -2.94423584379348, -7.0, -4.241297387109993, -7.0, -7.0, -7.0, -7.0, -7.0, -3.582423231012989, -2.7410037874661946, -7.0, -2.5034880388066734, -3.385353203788192, -7.0, -3.2757719001649312, -7.0, -2.90444504107691, -2.922898380345496, -7.0, -2.858543037490597, -3.362293937964231, -2.378397900948138, -7.0, -2.8171244614184556, -2.190471770573345, -2.958085848521085, -7.0, -7.0, -2.8332746392905634, -7.0, -3.388696238703874, -7.0, -2.8273692730538253, -7.0, -3.383815365980431, -3.741466761769755, -2.673941998634088, -2.3150156418807564, -7.0, -2.788168371141168, -7.0, -3.0329102141076842, -3.291590825658001, -2.704960368025206, -2.3716636023951976, -7.0, -7.0, -3.11293997608408, -7.0, -7.0, -3.3643633546157306, -3.229169702539101, -7.0, -7.0, -4.166755638665237, -7.0, -3.216957207361097, -3.563243701140398, -7.0, -3.2131191388114564, -2.9554472105776957, -7.0, -7.0, -4.527020559229423, -3.2229764498933915, -2.487780918103498, -7.0, -7.0, -3.4600454489953703, -7.0, -7.0, -7.0, -3.5921767573958667, -3.330007700872759, -2.849009701991132, -7.0, -7.0, -7.0, -3.560964280516006, -7.0, -4.064420548433594, -7.0, -7.0, -3.5781806096277777, -3.4652340949880145, -7.0, -7.0, -7.0, -3.7061201097027037, -3.341038631677523, -3.1992064791616577, -7.0, -3.244359600050387, -7.0, -3.245636029406203, -3.418135498425232, -2.8865712918143793, -3.1189431346865346, -2.7107518348841255, -2.483824941014169, -7.0, -3.411788004543869, -3.6264259173569804, -7.0, -7.0, -3.2165617350479265, -7.0, -3.734159513244467, -7.0, -3.1253728140876187, -4.064015982056994, -7.0, -3.6050894618815805, -3.321598430465344, -3.9988388829513455, -3.0874264570362855, -3.115943176939055, -3.0141843975012796, -7.0, -7.0, -3.021891873919109, -3.3121773564397787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3350565194390915, -3.7102584385195545, -7.0, -7.0, -7.0, -7.0, -2.9542425094393248, -7.0, -7.0, -3.592953571547866, -3.1970047280230456, -7.0, -7.0, -3.1934754749695493, -7.0, -7.0, -3.182129214052998, -7.0, -3.231214647962601, -7.0, -3.449324093098727, -1.1373102592981563, -2.1074612247789166, -7.0, -2.0382940155538414, -2.334144314385504, -7.0, -2.276040866338632, -7.0, -2.8948696567452528, -7.0, -2.2584776449785173, -2.492061604512599, -7.0, -3.2052043639481447, -2.830726110897981, -7.0, -4.305480348653206, -7.0, -3.805228914203426, -3.0163642957549452, -7.0, -2.654472735909495, -7.0, -3.420615770625765, -2.6961066506690017, -7.0, -7.0, -3.3951515915045425, -3.4401216031878037, -2.7311857076340007, -7.0, -3.4590153323018296, -7.0, -7.0, -2.7921114090871684, -7.0, -7.0, -3.1135088405328193, -7.0, -2.755366611633324, -7.0, -3.4412236742426123, -7.0, -7.0, -2.977527638759884, -3.526339277389844, -7.0, -3.549861188471943, -7.0, -2.5722906061514177, -7.0, -7.0, -3.2713768718940743, -7.0, -3.2412973871099933, -3.291146761731886, -7.0, -7.0, -3.666845449884052, -2.651278013998144, -7.0, -5.713922102999496, -7.0, -2.8020892578817325, -3.0058237530290275, -7.0, -3.198931869932209, -3.229937685907934, -2.5110808455391185, -3.4507108781469196, -2.1179023084538846, -7.0, -7.0, -2.928907690243953, -2.409691647382953, -7.0, -2.318324250850395, -2.855670556918036, -3.0666005221892987, -7.0, -7.0, -7.0, -7.0, -2.428742057444305, -2.4733826851602605, -7.0, -3.335858911319818, -7.0, -7.0, -7.0, -3.407447560198671, -3.463594402187, -7.0, -7.0, -3.191670541584012, -7.0, -3.9460221791926338, -2.639486489268586, -3.6410855836321, -7.0, -7.0, -2.1158481557195747, -4.03909671044145, -7.0, -2.9688648578400763, -3.02208453894371, -3.904985881099363, -7.0, -7.0, -7.0, -2.6283889300503116, -3.123742781590177, -2.53736109926821, -7.0, -3.26528962586083, -2.328209658423107, -2.9559281568969507, -2.4474681309497557, -3.1914510144648953, -7.0, -2.6382168866215308, -7.0, -3.5854607295085006, -2.957607287060095, -3.7551472476993064, -3.251735530437842, -7.0, -4.31045964365906, -7.0, -7.0, -3.6979264448065052, -3.478854967528663, -4.006594386184137, -3.3341520529922866, -2.0250611923107478, -2.0459022312658655, -2.283890902225102, -7.0, -4.486683523512511, -3.329092647195331, -7.0, -7.0, -7.0, -3.53198955141255, -3.420038306133178, -2.805047523584979, -2.3629848397370954, -3.5671440451956573, -7.0, -7.0, -7.0, -3.1843364700443417, -3.030194785356751, -3.3783979009481375, -7.0, -7.0, -4.164739384291432, -3.70763829538, -4.444562331236816, -7.0, -2.7489628612561616, -4.178150303064571, -3.2476664528683656, -7.0, -7.0, -7.0, -3.3576490329184674, -3.3799698999538514, -3.8048887446223913, -3.030599721965951, -7.0, -7.0, -3.5575072019056577, -7.0, -2.4746324543159677, -2.4923612212763993, -2.3239656832326614, -2.673941998634088, -2.629661083959758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9323046139517808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.928293412232202, -7.0, -7.0, -7.0, -7.0, -7.0, -4.545900617729224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.625569658243046, -7.0, -7.0, -4.4681183052566995, -3.643156465619706, -7.0, -7.0, -7.0, -4.124265894402821, -2.694844413746504, -3.147882346295201, -7.0, -3.666719169536483, -2.896988214036109, -7.0, -4.454433228116589, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.042181594515767, -4.887447093306888, -7.0, -2.140604724802137, -2.062102487957556, -7.0, -4.261805100794075, -7.0, -7.0, -4.115277591395902, -4.245784017077525, -7.0, -7.0, -7.0, -4.790615862092096, -3.7090154169721172, -7.0, -7.0, -4.904282657645628, -4.5027138235713355, -7.0, -4.647993878193836, -4.3591712057167005, -7.0, -4.2035262997736105, -7.0, -7.0, -4.619698415640197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7859274684801276, -3.2275010649714306, -3.5149990780786804, -7.0, -3.4787107555127594, -3.664585570012582, -7.0, -2.3435492559854603, -7.0, -3.8252313231999002, -7.0, -3.8047049422008414, -3.2399664702073565, -7.0, -3.511348515490213, -7.0, -7.0, -2.6766936096248664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.802284930100363, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7365038932973587, -7.0, -7.0, -3.286231854028553, -2.3417491818783844, -7.0, -2.9037409406215384, -7.0, -2.957607287060095, -3.2350231594952237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3836358683618797, -7.0, -3.473778834646725, -7.0, -7.0, -7.0, -2.814628055223535, -2.9416108021536336, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9064697276433242, -3.353477133530903, -3.29939833006815, -7.0, -3.433929765608464, -7.0, -7.0, -2.8239087409443187, -7.0, -7.0, -3.5121505369220305, -3.570776368794748, -7.0, -7.0, -3.386855529184724, -3.6872117698137425, -3.0202783941119273, -2.753072124149383, -3.550269129965307, -7.0, -7.0, -7.0, -3.3754075333087856, -7.0, -7.0, -7.0, -2.606650028578439, -7.0, -7.0, -7.0, -7.0, -7.0, -3.640071297202855, -7.0, -7.0, -3.0677665718200244, -7.0, -3.1122697684172707, -7.0, -2.8568798705623637, -7.0, -2.73917663191073, -3.4572004127937683, -7.0, -7.0, -3.1598678470925665, -7.0, -4.112923233491434, -2.5614989072300403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8144695709383387, -7.0, -7.0, -3.2778383330020473, -2.379406247075376, -7.0, -3.2487087356009177, -3.137354111370733, -3.66661156841903, -7.0, -7.0, -3.3236645356081, -7.0, -7.0, -3.302114376956201, -7.0, -3.0211759564845853, -3.0332226466702497, -3.0259199985020175, -3.3479151865016914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4369573306694496, -7.0, -7.0, -3.275886960301226, -3.5605044151950564, -3.860996436757196, -3.862548769524793, -7.0, -2.851920499585014, -3.916559219301114, -3.5717088318086874, -7.0, -3.3591022499491756, -7.0, -3.5598468007393165, -3.571242850560224, -3.2382005601347457, -2.5836709872171713, -3.910197369966001, -7.0, -7.0, -3.86975959478241, -7.0, -2.979001748474721, -2.516415170606379, -3.857573704147496, -3.1557534276768173, -2.873618645598776, -7.0, -3.578524605274993, -3.8605775512444156, -2.8024316264307236, -3.613154437759265, -7.0, -2.6932599947567177, -3.124178055474675, -3.265525335219074, -7.0, -3.4072208929273966, -2.6015661942515655, -3.1762649421141465, -3.2161218985895266, -3.8627870982353443, -2.6149451276093214, -7.0, -3.2427090263694494, -3.872039667973286, -3.5860807074609022, -3.9532763366673045, -3.608044405736923, -2.7693384508595433, -3.1806419027298323, -3.424936056088804, -3.699620957965614, -3.0075877677507616, -3.9335379019717047, -2.4753527176327466, -3.2833464653560465, -2.292374230650336, -2.859138297294531, -7.0, -2.780870976776464, -2.7498272196995663, -7.0, -3.9028184680822533, -3.9034698285071703, -7.0, -3.5920101162931366, -2.790367965650633, -3.1462396970463096, -7.0, -7.0, -2.66805960729094, -7.0, -3.242008704084836, -2.4519831357776205, -7.0, -3.67728750108277, -2.9447122983382803, -3.867113779831977, -2.70190362530154, -7.0, -3.399731392881681, -2.5524248457040857, -7.0, -3.880356199419236, -7.0, -3.681286474028084, -7.0, -3.042488005995828, -3.5366426000142708, -3.4598948527451516, -7.0, -2.8922941135451614, -3.5347873586294916, -3.635634517336094, -7.0, -7.0, -3.976762523267461, -3.9351040211514494, -7.0, -3.0271048658793513, -7.0, -3.1444288996058076, -7.0, -3.560683591907453, -7.0, -2.8475458367672832, -7.0, -3.118878569982349, -2.7722168932840368, -2.486115487375963, -2.463210202983969, -3.287129620719111, -3.575707301476683, -7.0, -3.9177155165594932, -2.417429467880523, -7.0, -7.0, -3.652536418593025, -3.0592267228698455, -3.2003422998005173, -3.4246094370095563, -2.627506421216469, -3.548239235346375, -3.8890214220952246, -2.523016426582376, -3.4141931446624807, -3.3694467598440587, -3.6095410528172773, -3.079226482700122, -3.43380982236759, -7.0, -7.0, -2.2706788361447066, -3.388855763178122, -7.0, -7.0, -3.634160466585495, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7368445108368746, -2.5784959493756787, -3.0446222709810327, -7.0, -7.0, -3.3128420159505105, -7.0, -3.57362573693412, -3.4368514568313087, -4.260190683269962, -3.3527933176610354, -3.86135516019326, -3.8777168008649765, -3.8951461893759918, -2.075801505396244, -7.0, -3.858657484090808, -7.0, -3.920123326290724, -3.5678494505731067, -7.0, -3.929776432804902, -1.8865863110608183, -1.4334457411083303, -2.0382940155538414, -7.0, -1.8504210533988203, -3.4093130649092758, -2.1901922627066246, -3.2790963297476012, -7.0, -7.0, -2.1428473883091104, -2.478162312705756, -3.875177059814704, -7.0, -2.7825299529871605, -7.0, -3.7141788203782977, -3.8630252962294707, -3.6047658847038875, -2.536535897629957, -7.0, -3.762753564933374, -2.6841105837010906, -3.6193542465143764, -3.263588731459945, -3.625415352154408, -2.8580356448150805, -2.706877733654718, -3.1480882706622184, -3.5678886061861617, -3.8848519827459977, -2.3649528098608803, -7.0, -3.89649865985879, -2.641523684670229, -3.312977843808971, -3.0930713063760633, -2.808094505739662, -7.0, -3.3992928980439108, -7.0, -2.884692401766919, -7.0, -7.0, -3.188154778916017, -3.354444598988735, -7.0, -3.0106767848473175, -4.169365793151048, -2.6375522674177097, -7.0, -7.0, -3.878579238062219, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9441922712821746, -2.7703200637483674, -3.354321904121914, -3.826451094668831, -7.0, -2.765439284867506, -3.586587304671755, -7.0, -7.0, -7.0, -3.349714516753763, -3.151574127994361, -2.5462341061067835, -7.0, -3.5567847823070253, -2.964907523353008, -2.971333843594558, -3.5579280590540248, -2.9636697965031646, -2.0272721727238423, -3.0249512507892367, -7.0, -7.0, -7.0, -3.2718996634153905, -3.8950908969343994, -3.045602357684618, -7.0, -2.894426837964188, -7.0, -7.0, -4.109578546904387, -3.0111799202451612, -3.934548947666147, -3.8654593226619647, -7.0, -2.579529548945393, -7.0, -3.436650225403725, -2.3364041370383783, -3.0831889689140475, -3.9020573108084666, -7.0, -3.5766292484476274, -2.941328323980986, -3.010582608444064, -2.6825552912734185, -2.9649482675333863, -3.8365139988906716, -3.446537167073644, -7.0, -3.0224283711854865, -2.6135775721070993, -2.403030165515052, -1.656036191630507, -7.0, -2.876044550246095, -1.7728647785479723, -2.832625018703961, -2.849777594833205, -7.0, -3.6531642561518813, -2.0211892990699383, -3.913336925932623, -7.0, -3.9252089214120036, -3.647896190630718, -2.8417764599078246, -7.0, -3.462664150493101, -7.0, -7.0, -3.1830256751145836, -3.3374093395155677, -3.597695185925512, -3.6994040818153375, -2.0278119784740323, -1.9230610679225635, -2.0701900332571244, -3.959756672990995, -3.993846273099567, -2.8298549080343087, -7.0, -7.0, -7.0, -3.251499168343637, -3.2611041934228426, -3.2790963297476012, -1.8583079881794906, -3.370050237074868, -3.5747255835940734, -3.3475739324713, -7.0, -2.748704736742231, -3.2918681352146444, -3.003729728474602, -3.0853698724573992, -7.0, -3.1633601822507593, -2.729206697200022, -3.2799885722064595, -7.0, -2.567933351135913, -2.871776605334238, -2.724548924926919, -7.0, -3.12434117077496, -3.5713011255662694, -3.40849436021236, -3.1555721862550743, -3.0812032393065754, -3.4728539231099913, -7.0, -7.0, -3.4913149929920424, -2.595670229633673, -2.9365695895157997, -2.5517825783198775, -1.9543611529264453, -2.5158162716983514, -2.2281367891278965, -7.0, -7.0, -7.0, -4.819208214624241, -7.0, -7.0, -4.766457464116555, -4.005895165424469, -7.0, -7.0, -3.8035358992281134, -7.0, -7.0, -4.430462069819556, -4.470873354461882, -4.181324900516111, -4.05043776144578, -7.0, -4.431074137951586, -4.111363344325131, -7.0, -7.0, -7.0, -4.285901630834813, -4.107125138222283, -4.611096367331743, -4.290702243287854, -7.0, -4.417629438837392, -7.0, -7.0, -4.043080517519958, -7.0, -4.036221553313943, -4.143841983496664, -4.349995899262856, -7.0, -4.276691528845039, -7.0, -4.546011808977598, -4.344235034551639, -3.53413493815341, -3.4248272103534214, -3.7290351301957916, -3.3421652709718277, -3.11904583148332, -7.0, -4.448876295154121, -7.0, -3.598897456689798, -1.8133711181752914, -3.1506248819812086, -3.8378156259146805, -3.187026923760066, -2.6392872259102367, -7.0, -3.277889231857295, -4.128043673826458, -3.2660552139992545, -7.0, -3.704650897336816, -4.058388059993333, -7.0, -3.1750601376136602, -3.61643128894415, -3.748257144463063, -3.176438555741045, -2.1867303757923113, -3.8806992892187013, -2.9733117237162716, -3.4081721014970534, -4.0550357871696905, -3.317993730910701, -3.765258649601729, -7.0, -4.44377913892142, -3.8305758385257054, -3.787396063026728, -7.0, -4.0638960381259945, -4.119981307304154, -3.6116373406428166, -3.4947573623066033, -3.8955882756662628, -2.7956268447938633, -3.44311092982662, -7.0, -3.1725176377328155, -7.0, -7.0, -3.2946958051075232, -3.724849087629386, -7.0, -3.385069776331935, -7.0, -7.0, -7.0, -3.067142878347675, -2.290615219045122, -2.7188969332355657, -7.0, -3.939718882354105, -2.8048206787211623, -7.0, -1.846367536626781, -7.0, -2.8875469749397595, -7.0, -2.8914560170811243, -2.7811966938121566, -7.0, -7.0, -4.3048565939970285, -3.9488529061997135, -2.226349785441235, -7.0, -7.0, -3.805670736698373, -7.0, -3.8955882756662628, -3.6336199272367296, -2.3591021316622953, -7.0, -3.3288890398395607, -7.0, -3.8706964579892498, -4.665412118002188, -3.4452596250187617, -4.356376467413694, -7.0, -7.0, -1.6870169853097867, -7.0, -2.3926067758336975, -7.0, -2.6681787645363455, -2.6409957833019644, -7.0, -7.0, -3.964118143151485, -2.808107049860337, -3.5871120413150903, -7.0, -3.930847191682497, -3.063386978864393, -3.5900612308037427, -2.65745844336742, -2.960734963005006, -7.0, -7.0, -2.299878868399812, -2.0769079055377255, -7.0, -3.8406496682305784, -7.0, -7.0, -7.0, -2.626389255142517, -2.451559520940352, -2.943584441257268, -7.0, -3.6236110517531817, -7.0, -7.0, -2.4207522017843215, -7.0, -7.0, -2.9092155396260058, -2.6543093434941327, -7.0, -7.0, -2.4580499998837215, -2.6396186932498518, -2.4125005469217604, -2.634956835670927, -2.5779284961856375, -3.9869507878585164, -3.309133141070118, -3.1354506993455136, -2.8120959658119626, -7.0, -7.0, -3.910464315995614, -3.5631249603380444, -3.558408539791075, -7.0, -7.0, -3.297651103243182, -3.9836262871245345, -3.176969682371759, -7.0, -7.0, -1.8444814312609394, -4.055913223916149, -2.581335138918986, -7.0, -2.7557732544363507, -7.0, -1.888844414342479, -2.6245494597571613, -7.0, -3.560086048497414, -2.8534446979741572, -3.207526655463334, -2.8086380688088775, -2.5142709732984847, -7.0, -7.0, -3.5597271274175606, -7.0, -7.0, -7.0, -4.118297801332776, -7.0, -3.165639948545658, -2.1536710820283993, -7.0, -3.570893036218392, -3.579040088400086, -2.227942566017301, -7.0, -3.1870975005834774, -3.9262909868848634, -2.893695198415863, -3.622352201294506, -7.0, -3.590953235187986, -2.90603559031291, -4.009110806132213, -3.5852350633657752, -7.0, -1.8026158669942771, -2.7475227813077256, -2.635930322156989, -4.00650882777529, -7.0, -3.1919165461654937, -7.0, -7.0, -3.479191276121532, -3.562530768862261, -3.3538777790648417, -2.693623508532089, -3.6004828134659586, -7.0, -7.0, -3.1550322287909704, -3.151676230847048, -7.0, -3.207365037469072, -3.1319392952104246, -7.0, -7.0, -7.0, -3.627352379022576, -7.0, -7.0, -3.207095540419218, -4.222170008681765, -3.1956481062209656, -7.0, -7.0, -7.0, -7.0, -7.0, -4.35791579857913, -2.119814010658674, -7.0, -7.0, -3.497234056576676, -7.0, -3.2397998184470986, -7.0, -2.707002099520009, -3.3740147402919116, -7.0, -3.085664823858279, -7.0, -7.0, -7.0, -7.0, -2.9978230807457256, -7.0, -3.1283992687178066, -7.0, -7.0, -7.0, -4.241319188494597, -7.0, -7.0, -7.0, -7.0, -3.7294887691795613, -7.0, -7.0, -7.0, -3.3639878297484915, -7.0, -3.0152695377626073, -2.8759867714284884, -2.287558332243026, -2.90242597417221, -7.0, -3.0060379549973173, -2.726959949912048, -7.0, -7.0, -7.0, -7.0, -2.81778565588553, -2.9705328297683242, -3.8634418286137087, -7.0, -7.0, -2.5888317255942073, -7.0, -2.9595864748926832, -2.943247125137862, -7.0, -3.564902672529205, -4.283478917025045, -7.0, -2.9092885241622506, -7.0, -7.0, -3.151114367869422, -7.0, -7.0, -7.0, -7.0, -7.0, -2.912753303671323, -7.0, -7.0, -7.0, -3.7856196070000547, -7.0, -3.757661687155249, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6829569263012085, -3.210853365314893, -4.17906322239498, -3.3102683666324477, -7.0, -7.0, -3.3173946751202754, -7.0, -2.748575616930992, -2.6126072783550733, -2.26876178609136, -2.750753768874042, -7.0, -3.227372442289636, -7.0, -3.3857849588433355, -3.0034088273077426, -7.0, -7.0, -7.0, -3.652052848248105, -7.0, -7.0, -3.355643050220869, -4.761920324610169, -7.0, -7.0, -7.0, -4.998263698788174, -7.0, -7.0, -7.0, -7.0, -7.0, -2.842276319332164, -3.119695681195928, -7.0, -7.0, -4.385909994786097, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9524943941471555, -2.5696492587965016, -3.882154404634234, -3.764475027434409, -7.0, -3.932220013877119, -7.0, -7.0, -7.0, -7.0, -3.408353048109495, -7.0, -7.0, -7.0, -3.5122840632818537, -7.0, -3.13956426617585, -7.0, -7.0, -7.0, -7.0, -3.4255342204982635, -2.0570318194654, -1.3669493110437692, -2.334144314385504, -1.8504210533988203, -7.0, -2.968015713993642, -3.462339925085021, -2.946206553842783, -7.0, -3.132579847659737, -2.307496037913213, -1.7752983053370275, -7.0, -7.0, -3.0161508626402753, -7.0, -7.0, -7.0, -7.0, -3.1018296038610864, -7.0, -7.0, -2.5677500396977275, -3.3951515915045425, -3.523616419054371, -3.415140352195873, -3.1509098737011216, -2.5880848733346493, -7.0, -3.4192120226230758, -3.261976191397813, -2.969804056523086, -7.0, -7.0, -2.770557474850995, -4.3610475381955816, -2.7261836614188204, -2.82910054658403, -7.0, -3.5251744278352715, -2.975891136401793, -2.3341185180336272, -7.0, -3.268577971882843, -3.8135142715418833, -7.0, -7.0, -3.531095546870028, -7.0, -3.130280148582363, -7.0, -7.0, -7.0, -7.0, -3.2022157758011316, -2.7783924580998707, -7.0, -7.0, -3.261548338444689, -3.681060243631812, -4.162056337360552, -5.713796205700024, -7.0, -2.9429995933660407, -3.273926780100526, -7.0, -7.0, -7.0, -7.0, -3.426998958756537, -3.4224256763712044, -7.0, -7.0, -1.667452952889954, -2.6164755138885654, -2.292888692709275, -2.706148588963142, -1.186657669499552, -3.646197804180806, -7.0, -7.0, -7.0, -3.215901813204032, -3.303412070596742, -3.288696260590256, -7.0, -3.3047058982127653, -7.0, -7.0, -7.0, -3.5750723257138124, -7.0, -7.0, -7.0, -2.9364131997114797, -7.0, -7.0, -2.351538641815657, -3.940972785590708, -7.0, -7.0, -7.0, -4.033101936663848, -3.8112397727532894, -2.8897325502419475, -3.0909630765957314, -2.816407029618638, -3.4063698354692673, -7.0, -7.0, -2.424881636631067, -2.468006306066481, -2.177897059918944, -7.0, -2.270031504854933, -2.4279547009381286, -1.3942821780014913, -3.12515582958053, -7.0, -7.0, -2.7188705947989087, -7.0, -3.266936911159173, -7.0, -4.356844568723753, -3.341385057697068, -3.1992064791616577, -4.006187833539161, -7.0, -7.0, -3.383456296524753, -2.8536982117761744, -3.2215446370271956, -3.142493751023144, -2.6722210445716033, -2.5062042744413957, -1.400662867007511, -7.0, -4.652927394343718, -2.746218904158715, -7.0, -7.0, -3.1319392952104246, -7.0, -2.929674317948588, -7.0, -2.0505844458694535, -7.0, -3.2229764498933915, -2.7072862306926577, -7.0, -3.1735504566783983, -7.0, -2.872350544494723, -7.0, -7.0, -4.561822620044466, -7.0, -4.796675494929048, -7.0, -2.8542452970661185, -4.244487411937511, -2.8855496750060046, -7.0, -7.0, -7.0, -7.0, -3.8481891169913984, -3.3171576110017376, -3.1862498207790875, -7.0, -7.0, -7.0, -2.622214022966295, -7.0, -1.2228834478542963, -2.7754081588965955, -2.3349561161368517, -2.7015679850559273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3001061379430885, -4.1075830311913215, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5920545601729215, -7.0, -7.0, -4.927524340875029, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.781209471689111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.330413773349191, -7.0, -3.8654149200566366, -3.0330214446829107, -7.0, -7.0, -7.0, -4.93685792517924, -1.7993405494535817, -2.350786244307008, -3.978925773721295, -3.688302707830574, -3.433556500023043, -7.0, -3.9749566587701834, -7.0, -2.5848963441374497, -7.0, -7.0, -7.0, -7.0, -3.427319398414071, -4.790323171935713, -7.0, -2.5219222448835006, -2.8105312074717155, -2.9427519204298136, -3.7294982943302246, -7.0, -5.407008284864256, -3.5079907248196913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6728473065142366, -7.0, -3.3053513694466234, -3.3351250742114362, -4.659507371756729, -7.0, -3.497883136800558, -7.0, -7.0, -3.7729081949712717, -7.0, -7.0, -2.8573324964312685, -7.0, -7.0, -7.0, -4.005695181118511, -2.6623530208877133, -2.8666363533065913, -7.0, -7.0, -3.156189361686134, -7.0, -1.676083645364622, -7.0, -3.2129196924327945, -7.0, -3.341024973759354, -3.0050946750725487, -7.0, -7.0, -7.0, -7.0, -2.6651117370750512, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4412236742426123, -2.7291647896927698, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8189859902803294, -4.794599568642681, -7.0, -7.0, -1.991364540377839, -7.0, -2.585009279902461, -7.0, -2.5636505661699873, -2.7154926546774614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.848343094827404, -3.2481776883387057, -4.2203957782315955, -7.0, -2.644635503768153, -2.2412766228690244, -7.0, -7.0, -7.0, -7.0, -7.0, -2.583623788990542, -3.024102248275479, -3.2827353726210187, -7.0, -7.0, -7.0, -7.0, -2.6646419755561257, -3.837588438235511, -7.0, -2.8887409606828927, -3.5619357633137816, -7.0, -7.0, -2.7075093462803563, -2.9231044670500483, -2.5006309216347464, -7.0, -2.744251796297106, -3.1091283841463793, -3.8057047044338645, -3.373463721632369, -3.2906281126259174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.240411949590544, -7.0, -7.0, -2.913561002070361, -7.0, -2.87285524470481, -7.0, -2.7363965022766426, -7.0, -2.326745379565322, -2.3817035291290907, -7.0, -7.0, -3.1367205671564067, -7.0, -3.2649021111188556, -3.009450895798694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2117029006908067, -7.0, -3.2054750367408906, -7.0, -2.399673721481038, -7.0, -3.531223374533027, -7.0, -3.5369054869618646, -3.8283376000590046, -3.7373516958037145, -7.0, -2.6745549761273852, -3.6403820447095683, -7.0, -7.0, -2.876741321509722, -2.8254261177678233, -2.99409708958821, -7.0, -7.0, -3.242913946818925, -7.0, -7.0, -3.2043913319193, -7.0, -3.4359239581191647, -2.809391350809975, -7.0, -7.0, -2.9508514588885464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.125879592893269, -3.7281913985899466, -7.0, -2.8981764834976764, -3.598051468295839, -3.915347062324192, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4386412206093957, -3.8961402514420196, -7.0, -7.0, -3.647629764067007, -7.0, -7.0, -7.0, -3.351409751925439, -7.0, -7.0, -4.565841917893188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5073160400764136, -7.0, -3.3881012015705165, -7.0, -4.363709105603158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.17376882313665, -7.0, -2.8747877325973232, -7.0, -2.3655414661398932, -3.2026926108224982, -7.0, -7.0, -3.164798819693455, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1090157705111308, -4.152165990675555, -7.0, -7.0, -2.2790800154604183, -0.817528644306543, -1.1507786800078956, -7.0, -2.5599066250361124, -7.0, -4.084501533208011, -7.0, -2.782830805202592, -7.0, -2.940516484932567, -2.337829929222736, -7.0, -7.0, -7.0, -3.4683473304121573, -7.0, -2.912753303671323, -7.0, -3.2990712600274095, -7.0, -3.6743456394383287, -3.5585885831081994, -3.4241871901498113, -7.0, -7.0, -3.148294097434746, -3.2898118391176214, -7.0, -3.300704152596124, -7.0, -3.6775765388767256, -3.0874264570362855, -7.0, -7.0, -2.9387016286270686, -7.0, -3.40705081480425, -7.0, -2.388081456873557, -2.8484789123024457, -7.0, -7.0, -7.0, -3.207095540419218, -4.086769013798387, -7.0, -7.0, -7.0, -3.5644293269979834, -3.6485551556626707, -7.0, -7.0, -4.1536090971675526, -7.0, -7.0, -7.0, -4.994673418386409, -2.210704863182517, -2.769967801329442, -3.6236627073562047, -7.0, -7.0, -2.796747738875302, -7.0, -7.0, -7.0, -4.37101241688384, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7345998321264577, -3.440987751476157, -3.556995612185525, -7.0, -7.0, -3.5873180145140675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4668676203541096, -7.0, -2.8799804787649608, -7.0, -7.0, -2.8388490907372557, -7.0, -7.0, -7.0, -3.2657609167176105, -3.424718337331567, -7.0, -7.0, -3.4093130649092758, -2.968015713993642, -7.0, -3.872711250398905, -2.372451701409366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2319281100740858, -7.0, -4.2841147684017695, -7.0, -3.131137273778607, -3.384954313935598, -7.0, -3.6920533650340808, -2.756636108245848, -3.2211533219547053, -3.401228167498113, -7.0, -2.7004873811595234, -2.701855692573507, -7.0, -3.345471754367631, -7.0, -2.90100399089971, -7.0, -3.1803170679833, -7.0, -4.044186850767364, -7.0, -4.080446094611049, -7.0, -3.7696726640554927, -7.0, -3.2533380053261065, -7.0, -7.0, -3.7550359337677714, -3.3783979009481375, -7.0, -2.808042085314898, -7.0, -3.862667950228588, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9934362304976116, -7.0, -7.0, -3.920071124297524, -3.5996647787884166, -7.0, -5.412075644086446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2678754193188975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.341286107028629, -7.0, -7.0, -7.0, -7.0, -3.075911761482778, -7.0, -7.0, -3.0780941504064105, -7.0, -7.0, -7.0, -7.0, -3.287353772714747, -7.0, -7.0, -2.9954889428763822, -7.0, -3.6908160579809155, -7.0, -4.110244494182466, -7.0, -7.0, -2.946452265013073, -3.521486774595432, -7.0, -2.9256401970004773, -3.4274049553102737, -7.0, -3.2377949932739227, -7.0, -2.5550944485783194, -2.8998205024270964, -2.436162647040756, -2.7532765701844184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.66838591669, -3.6351820486562674, -7.0, -7.0, -3.244277120801843, -4.178116454356075, -3.423846369199462, -2.8819549713396007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.524915147539867, -7.0, -3.318689269947746, -3.5435714239623652, -7.0, -5.0503507507638075, -3.401745082237063, -7.0, -7.0, -7.0, -3.7664128471123997, -3.6327608884794387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.234432913530507, -7.0, -3.1522883443830563, -3.1567510079386705, -7.0, -4.857953334848981, -3.9127179074056118, -5.030290268715527, -7.0, -3.3251734566778013, -4.320283410086904, -3.308706665276203, -7.0, -3.1258064581395266, -7.0, -7.0, -3.7944880466591697, -7.0, -7.0, -7.0, -7.0, -3.4216039268698313, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9020709146074903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.375681899659375, -7.0, -7.0, -3.5798864436574345, -7.0, -7.0, -7.0, -7.0, -4.998355256330765, -4.582847113905814, -7.0, -7.0, -7.0, -4.036948112195279, -7.0, -7.0, -7.0, -7.0, -4.056574560375764, -3.8083797948823843, -7.0, -7.0, -7.0, -7.0, -4.173171694527412, -7.0, -4.6784637473673705, -4.3261719452891745, -4.196563035148052, -7.0, -3.7869287937967515, -3.8847953639489807, -7.0, -7.0, -4.615476591451174, -7.0, -4.370485332353556, -4.765564251964924, -3.8935398435646613, -7.0, -7.0, -7.0, -4.457652330856984, -7.0, -7.0, -7.0, -3.8840822792097556, -3.9035421416209206, -7.0, -3.9621956462968417, -3.8303319934519617, -7.0, -7.0, -4.375517300649672, -7.0, -7.0, -4.214030992451019, -4.312017888321016, -5.405516253409338, -7.0, -3.7001843296221977, -7.0, -4.6551384348113825, -7.0, -5.405610989110177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3164945392223113, -4.217720767530819, -7.0, -4.120793216482866, -4.48926924575802, -7.0, -3.621853565463195, -4.956629383444768, -7.0, -5.046783817638138, -7.0, -3.606703741333674, -4.609466342831634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4247001891741125, -3.187153953785416, -7.0, -7.0, -3.6459525315178176, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0991486671778645, -3.0254082811317473, -3.042181594515766, -7.0, -7.0, -7.0, -3.3756636139608855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2405492482826, -7.0, -3.71637901287223, -7.0, -7.0, -7.0, -4.140714002992303, -4.186744501716686, -7.0, -7.0, -2.4635446177561664, -7.0, -2.401113213955382, -7.0, -2.766164891363784, -3.408627555236641, -7.0, -7.0, -7.0, -2.534026106056135, -3.693287157005656, -7.0, -7.0, -2.557206339765532, -7.0, -2.6018427897820984, -3.213296347620159, -7.0, -7.0, -2.710963118995276, -2.3831739621097427, -7.0, -4.150049945162385, -7.0, -7.0, -7.0, -3.052886235256382, -3.3343698044247776, -2.699982177716874, -3.6080979463252794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.358315640082196, -2.855990008555759, -7.0, -7.0, -2.7217419357655936, -2.9975692409571537, -3.32990612340021, -7.0, -3.609252814885003, -7.0, -7.0, -7.0, -4.0376654933508025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.230052766370181, -7.0, -3.8640658790902367, -3.8490138010230566, -7.0, -2.765072201102792, -7.0, -2.9802306913910317, -7.0, -3.05375050316729, -3.200394450079095, -7.0, -7.0, -7.0, -2.846955325019824, -3.7952715790631664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.966610986681934, -7.0, -3.0145205387579237, -7.0, -7.0, -3.510243312047968, -3.771954748963949, -7.0, -7.0, -7.0, -7.0, -3.0149403497929366, -7.0, -3.7219342108540117, -3.075911761482778, -3.062581984228163, -7.0, -7.0, -3.4282968139828798, -7.0, -7.0, -7.0, -7.0, -3.6664243725187595, -3.2467447097238415, -7.0, -7.0, -3.839476514441198, -4.606831090746259, -4.05391701315164, -4.275836337596789, -3.989744321169322, -3.1331292340592887, -2.928682494549992, -4.452211314447793, -3.771285782722611, -1.9437381050109197, -3.1937867917754756, -4.150842369489412, -3.719670351228767, -2.8492267708776566, -2.437419981594704, -3.948020003415398, -4.452720008557285, -5.1508577122770784, -4.673991068684635, -4.03696191916769, -2.46480733889576, -2.8718384586230377, -5.451843212363449, -1.8134418728304351, -1.534229556862382, -4.091261600243427, -3.884107698266393, -4.673753333997826, -3.3401144934431914, -3.572339562116119, -3.527996414185576, -2.203948373797962, -3.595506938209761, -3.1592555821612995, -4.090336275034143, -3.3730055379654496, -3.238992583655289, -3.7894182198306012, -3.3586413339445613, -4.8499074903725905, -3.1077262432329404, -2.810659983822341, -1.8333472526374732, -3.8393109258210014, -4.037573587603141, -3.2365754281376833, -3.790340246867004, -3.1455708129596123, -3.652899893085946, -2.5458630090437357, -3.1271139278564446, -3.4617771336303806, -2.5397646745595197, -1.5088703727105708, -2.96886735287483, -2.591387589127392, -2.5037649664957558, -3.8726683492477125, -3.523192345925134, -2.809706264007865, -3.13007326688381, -3.5895119818168726, -3.9089014967169025, -3.1376290770696893, -3.6891832780764897, -2.934763035942782, -2.662710132142548, -3.6961340412397927, -4.037003337451435, -3.3578373102701593, -4.451929130760516, -2.694314664503264, -2.815008832325241, -4.037080027547998, -3.536047063773486, -1.7147986755227513, -3.451784900912102, -2.5797192473872097, -4.849775548923395, -3.770965477721236, -2.8760603067714383, -3.5510869175680946, -3.7990907774644507, -4.337907532033172, -2.4666807697155937, -3.5892608400865007, -2.7451968221209206, -3.37706480804834, -3.292254543224013, -3.572816593786742, -1.677603353560154, -3.2204927470892803, -2.834341956488676, -4.12977426367155, -7.0, -3.1852435240593744, -2.96169201297872, -3.5004377446276838, -3.0430343791213286, -4.497981069706261, -2.4378699755416258, -3.3590900147177467, -4.247786135914882, -3.56520362402106, -2.25795678802557, -4.221513958388284, -3.393874166549036, -3.381300212083958, -2.9435718914443427, -1.996533640935674, -3.0610001600351286, -2.908451219131917, -2.9694664928943446, -3.6539517933146834, -2.369728479615979, -2.6953848895587407, -3.7615658010500246, -3.4542699919165134, -2.7685041151913716, -3.112744479345518, -3.620316743677983, -2.4049720105667998, -1.7205166823836526, -3.5832171616034327, -2.143186738714299, -3.8615604496727953, -2.6293306430230947, -3.427651432153175, -3.3582395081717715, -2.5332071446767435, -4.338136094760166, -4.1305083703267504, -2.3030902572495062, -3.0694640562347537, -7.0, -5.150935952063992, -2.4423825714904606, -4.606703741333674, -4.752851725772023, -4.606829556638213, -3.131345404398228, -3.68090066116131, -3.2140101426502716, -3.2233766941889703, -2.8171518479092548, -3.0153082978203867, -3.780574677287544, -3.462447414804264, -4.753006681086235, -3.369136089849646, -3.032621824494491, -3.113629861278211, -2.840054920774821, -4.004698990481458, -3.850188116174174, -4.130560430970341, -1.5711086204421372, -4.305802629184905, -5.150837766547415, -2.980528246896414, -3.4847879835220605, -4.497870674955122, -3.0514098059157493, -3.1068093585753127, -2.516943147777456, -3.2422181677094666, -2.276040866338632, -2.1901922627066246, -3.462339925085021, -3.872711250398905, -7.0, -3.7621256042324025, -4.337956629474105, -5.451837074684619, -3.5953461646750866, -4.020954854652503, -3.6739680677887727, -4.004745018844494, -2.0124798801640136, -4.005152923751043, -3.167279862892624, -4.07170101356235, -3.189188344933054, -0.9025700879280136, -2.828457338101283, -2.126141222526648, -2.5402959357120936, -2.912174564777331, -2.6057677461550126, -3.737582525031894, -3.381856660898393, -3.427706525856685, -3.4199970292732025, -2.4869403721117096, -3.247951796471139, -3.0010813518309316, -7.0, -2.8873157722396194, -3.1111922238938114, -2.6656769286187187, -4.037161304267523, -2.2959701796424143, -4.150828560517062, -1.7139310798546632, -2.8798104995449454, -3.2003613106134194, -2.8783666318941945, -3.7281668826085177, -2.793637716114076, -3.3175356918146464, -5.4518155921256035, -3.223991933097826, -2.102548712993538, -2.454719615471786, -5.451810988581844, -3.808335293644868, -3.435041507020505, -4.071756239988947, -3.7277637027000337, -3.7280887286803175, -4.410660690360591, -3.7993145063228546, -2.1300746957834047, -3.2497739450348053, -2.640945654356927, -2.220959306047683, -5.4518493499555385, -3.9472038918536905, -3.9210572949274693, -2.7282171875380294, -4.497683553099681, -3.613072369428841, -2.200374530470726, -3.24384461210177, -3.0073546246193787, -7.0, -4.974725026450674, -4.173324312537017, -3.6886989917101185, -4.673714977502912, -3.883788766572103, -3.519172991787454, -1.4295428940835, -4.752911566555018, -4.75297446720691, -7.0, -3.39502581352667, -2.6234108282394146, -2.903882803805536, -4.606752844325752, -3.8399422770510556, -3.2225425612955334, -3.4006953610117394, -2.6195243246375224, -2.324843714184909, -2.7965008158727054, -3.264055422284248, -7.0, -2.3852686044267117, -2.2215833091861974, -1.648171710726918, -3.620166685469373, -2.5024048809087134, -3.8296590289710872, -4.0720215357300305, -2.888959198348298, -2.76128758244713, -3.3038558443656467, -2.5076507428312356, -2.7517684311534323, -3.04598910818908, -3.72922746495659, -4.130526745384164, -4.10963069469661, -3.2570729495163198, -2.995368552945386, -3.2905636188126794, -7.0, -4.197026187759492, -3.6608975946643114, -3.9898163827557567, -2.325587207294423, -3.6387994113789563, -2.8300629327823716, -2.088972232225393, -3.5500233911040167, -2.3780803618804596, -2.3578932352904296, -2.005814115162866, -2.6730824741450308, -3.92060206359649, -2.5745622299382056, -4.4978093324102675, -3.538883185853489, -3.140550548300557, -2.8369307151325107, -1.9129681222406905, -2.691692123189126, -2.7177218382259345, -3.1251756988681234, -3.0161882247883973, -3.4632437577284456, -1.9510573428129632, -2.5675038156414707, -4.752942250937937, -7.0, -5.4518340058126755, -2.887067969220036, -2.8467366967193763, -3.850289281004146, -3.7898381227114672, -3.4134506510073246, -4.248152651817513, -3.283744222708833, -4.090682736865722, -3.0348160587969915, -3.7714312978476743, -3.5134074341660257, -2.6054054937766447, -3.6397071050851, -2.1028170491190084, -2.5338099046916684, -1.8170261065401723, -4.753847997272199, -2.2809179155135966, -1.8826171285306872, -2.723070670548517, -7.0, -3.653531032753514, -4.753245909414036, -2.665751780385266, -2.797293193949948, -2.766689925412973, -3.4207119401016124, -4.275877756612034, -5.451821730108041, -2.9276910886144174, -3.9751253198007745, -3.5660225067536415, -3.626602326942856, -2.8460762290468815, -3.7040738770877333, -1.785426825092026, -7.0, -4.752959126424497, -2.2621076446317563, -2.780265045023653, -3.6336761746852697, -3.5597869682005565, -3.148695049166025, -2.1341739419354075, -3.178804645370451, -2.7014459792761993, -1.9312898112904282, -2.8699956399169992, -3.59972845899828, -3.3408505996186073, -2.760084359239955, -2.6381982035389635, -2.295800343216146, -3.348913033546515, -2.6257797467621273, -2.0528408093390866, -3.8652609558675195, -3.136648841036588, -4.456924486401631, -2.5243952930230646, -3.175413721180739, -2.61485036404734, -3.0479780566846206, -3.690334723349453, -3.1157417527104747, -3.5394262421725897, -4.2784853222167785, -2.3493012237976245, -3.160453890169641, -2.941432342498225, -3.061721880100873, -3.4965392919327227, -4.2236821951943, -3.248848894607795, -3.5816083660320572, -3.128491583413, -3.2457301694120755, -2.2053263437697814, -3.921456953158924, -2.919031843391535, -1.7082095909969017, -2.3559534274988096, -3.042364962306286, -3.1338538323631155, -4.039618480853048, -1.7698732638523096, -2.890928982172711, -3.4103242034855046, -2.842119590139838, -1.9809387012166204, -1.9821451783870967, -4.754707550504426, -2.6424335601227265, -3.4356701134142202, -4.753141646600399, -3.6970774544704295, -3.1489862682916314, -4.416870375999975, -4.67488409438502, -1.941162923416565, -1.8695167124430236, -2.2888070603124966, -3.632575382630548, -2.427256070563432, -3.5948972149333307, -2.11770545472094, -4.181547240276837, -2.4705293932107346, -2.878087407900039, -3.2152728670850608, -4.849927431523094, -3.1087398391394285, -3.172282884840051, -2.589920354236246, -3.7329078712997776, -2.8050057580560037, -3.377774222209929, -2.2130732049854096, -2.4321309691020256, -3.9476083114045495, -1.9992580337565171, -2.199263549662286, -3.7241878485223547, -2.1775500004755646, -4.9753582709428334, -3.3529979066449345, -2.3310680174503204, -3.5025536090581117, -4.41075423394305, -4.752985205432184, -4.7528670703486, -4.974961259485409, -3.940474224586627, -1.928812549985953, -3.4090416060671918, -2.4539985977209984, -4.30606181471495, -3.0805087817900456, -2.282539867650608, -2.975459290283739, -3.54556672041147, -4.497997933100203, -2.9428531209508777, -4.84998264839255, -1.9956480250981299, -3.2751915932865505, -3.9612495778051544, -3.9772875681464983, -2.108182553886976, -3.609112439335402, -3.0087031950056464, -5.152052782798216, -4.607505573069506, -2.6283435784500924, -4.498403989816759, -3.720297152790356, -3.7462647282196215, -3.200516109714852, -4.7528670703486, -2.982956717529521, -5.151009576636842, -3.7116538764683042, -2.9192578788432386, -1.2604109603899747, -2.4672732956813768, -5.150862315007684, -3.662867457405056, -2.761238656368773, -3.3663264876639647, -3.3060217652155757, -7.0, -3.729267205559747, -2.519460226604742, -5.451984355041344, -4.0904068162207485, -3.852726958888889, -3.6209317465873228, -3.0961132018222703, -3.8090115272825527, -3.5903271909002226, -3.840327991445741, -3.9474873313986176, -3.540025634074014, -2.4529220306674047, -3.565916291001725, -4.673843841896885, -3.268541503618488, -3.259847906091858, -4.308145007944962, -2.4356099266236675, -5.151561363449798, -4.975074728368803, -2.764431226367127, -3.6984287038382186, -1.4459702182069452, -3.180898772908726, -3.4037853762493175, -3.0931554842829083, -4.85062632701075, -3.9303406348743843, -4.021155595897658, -3.579190698925359, -3.8612632080683564, -3.648134265580902, -2.97994313447669, -3.991010555927018, -4.372684981838931, -2.988479111564272, -1.8831761038277461, -2.947359354704174, -3.3207936392476864, -2.2616399738667665, -3.3281528261484916, -2.9714345133418503, -4.073096393762054, -2.714514051108974, -3.3644178393114275, -3.885193069546282, -3.9480276519900452, -4.173206210830642, -5.150860780769569, -2.835421213289978, -3.792714397167913, -3.829602391215558, -3.365273341438565, -1.9809381370915902, -3.159388533747565, -2.8807329970954307, -2.330235887509512, -3.3644011919351606, -3.472916355763714, -4.607519358372464, -3.5963939497883994, -7.0, -3.1832016721251284, -3.052674253551032, -3.63232733040593, -5.150903737388157, -3.7295223758548572, -3.8848596333686762, -2.483657679695685, -3.9756829679517423, -5.151411224250535, -7.0, -5.150894532756141, -5.452107050529845, -4.849953507030731, -4.975062462891647, -2.754312139979706, -3.6754774075729344, -3.7298445624133887, -4.173724392544616, -4.498426962809987, -4.497950407312327, -4.130152966318875, -3.861675308158829, -4.411175696829874, -3.4769475021740748, -3.9484893763004485, -2.9047450178455057, -3.4511073667886003, -3.980881682840616, -3.934144811792477, -5.150903737388157, -3.2006179734428333, -4.306432686997816, -7.0, -2.353090061965932, -3.9475945305730864, -3.9755742521196726, -3.7079866314297973, -4.023886248324208, -3.6555850665814984, -4.673922062342239, -4.452146919101275, -3.9494174541647484, -5.15096663048619, -3.4987724041202775, -3.8408111814354173, -5.151988516548684, -5.451841677951873, -2.9041743682841634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.571177790153091, -7.0, -7.0, -7.0, -7.0, -4.214022148700433, -3.139249217571607, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4137466840917785, -7.0, -7.0, -3.7329889622941375, -7.0, -2.916980047320382, -7.0, -3.3334472744967503, -7.0, -7.0, -4.866346422749602, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.01717251394567, -7.0, -3.371621927176021, -7.0, -4.3634239329171765, -1.988686334642222, -2.9818186071706636, -3.3475251599986895, -3.1332194567324945, -3.648652695131223, -7.0, -7.0, -7.0, -2.8447877188278463, -7.0, -3.0049336841470917, -2.6086788196761854, -3.4310419453358856, -3.497758718287268, -7.0, -7.0, -3.15106325335375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4144719496293026, -7.0, -3.0390967104414504, -7.0, -2.5017437296279943, -7.0, -4.648529141437505, -7.0, -2.8915374576725643, -7.0, -7.0, -3.579440597139797, -7.0, -7.0, -7.0, -2.3045828424686814, -3.0322157032979815, -1.8281833736752127, -7.0, -2.800717078282385, -7.0, -4.23054854221511, -7.0, -4.022758194236769, -7.0, -7.0, -7.0, -7.0, -7.0, -3.591954555046735, -7.0, -4.152043602487651, -7.0, -7.0, -7.0, -2.4688548185775088, -7.0, -3.3912880485952974, -7.0, -2.488953400332635, -2.32624439777699, -7.0, -7.0, -2.8382192219076257, -7.0, -4.0851478121269045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8743368353973677, -4.755020665632212, -7.0, -7.0, -7.0, -4.99427314897317, -2.538133687250669, -7.0, -7.0, -7.0, -7.0, -3.824060717418653, -3.483587296968894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7309436934277356, -3.7349597612724454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8606374167737547, -7.0, -3.8309092995464433, -7.0, -7.0, -7.0, -3.1441879963952775, -7.0, -7.0, -7.0, -7.0, -7.0, -2.721260875288632, -7.0, -3.4095950193968156, -7.0, -7.0, -3.2790963297476012, -2.946206553842783, -2.372451701409366, -3.7621256042324025, -7.0, -7.0, -7.0, -7.0, -1.9989129043587859, -7.0, -7.0, -3.2272695167098435, -7.0, -7.0, -7.0, -7.0, -3.0787382554296308, -7.0, -7.0, -3.291812687467119, -2.895146189375992, -7.0, -3.2278867046136734, -7.0, -7.0, -3.228913405994688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.474871583227693, -7.0, -7.0, -7.0, -3.230704313612569, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9176805224430487, -4.357687152332334, -3.857211842316892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5896145406312665, -3.8328281295393536, -5.235906186117268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2460059040760294, -3.239049093140191, -7.0, -7.0, -2.8055008581584002, -2.8744818176994666, -7.0, -2.790988475088816, -3.2586372827240764, -4.2439156770217075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8086610190597323, -7.0, -3.041326877978479, -7.0, -7.0, -7.0, -3.7144555024904737, -7.0, -7.0, -2.5732585015417953, -4.234432913530507, -7.0, -7.0, -7.0, -7.0, -3.7453871213200087, -7.0, -3.419955748489758, -3.843481943039958, -7.0, -7.0, -2.798650645445269, -2.3272129285076972, -2.0280287236002437, -2.5923354037837143, -7.0, -2.287241711178348, -7.0, -7.0, -3.245265839457461, -7.0, -2.571514733712986, -3.3293470222286112, -7.0, -7.0, -7.0, -4.132061072897837, -3.595055089759304, -7.0, -7.0, -7.0, -7.0, -3.594060901270418, -7.0, -3.9586594270529334, -3.2116544005531824, -7.0, -7.0, -3.532117116248804, -7.0, -4.874196962157325, -2.455957010377878, -7.0, -7.0, -7.0, -7.0, -2.7771159829520387, -7.0, -7.0, -7.0, -7.0, -3.333850145102545, -7.0, -7.0, -7.0, -7.0, -1.993226223490665, -7.0, -7.0, -7.0, -4.87533217863164, -7.0, -2.4509485680967495, -4.717870132737748, -3.4784221877400805, -7.0, -7.0, -7.0, -2.9410142437055695, -7.0, -3.7259116322950483, -3.3348556896172914, -7.0, -7.0, -2.121438887639747, -2.4076741092293186, -7.0, -2.447158031342219, -3.349180358996378, -7.0, -2.849542252005017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.072948031792886, -7.0, -4.591131416423124, -4.880613542175367, -7.0, -7.0, -7.0, -7.0, -4.219763480832674, -4.280760426326267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.677634323358943, -4.3243030374868345, -4.194042327886423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.369642518405259, -3.2084002959915017, -3.18904090790901, -7.0, -7.0, -7.0, -4.194155961022921, -2.7891839552635496, -3.02201573981772, -3.7429449715938286, -4.008619094856489, -3.8357539675193832, -7.0, -3.835785662062868, -7.0, -7.0, -3.7969903905456865, -4.373849508088649, -7.0, -7.0, -2.945526249464059, -3.7889118350573208, -4.7064549077057105, -7.0, -3.3910233693700995, -7.0, -4.110584900809918, -7.0, -4.56033711687566, -3.299906616595543, -4.218797998111738, -7.0, -3.118078630895967, -7.0, -4.3059386314136505, -7.0, -3.738093174367565, -3.808075868091307, -3.4668511507782, -4.186928096934767, -7.0, -3.424990468728342, -4.257184013472698, -7.0, -4.171494377994071, -7.0, -7.0, -3.6540802353065707, -4.2964238485037765, -7.0, -7.0, -7.0, -7.0, -7.0, -4.168600594123457, -7.0, -3.4858917046574147, -7.0, -7.0, -3.644162759365265, -7.0, -2.8344207036815328, -7.0, -3.1476763242410986, -7.0, -3.71821095473187, -3.0159881053841304, -7.0, -7.0, -7.0, -3.329397879361043, -3.190984983213069, -7.0, -7.0, -3.3031240291456903, -7.0, -3.04493154614916, -7.0, -3.5303277897780863, -7.0, -3.7125655278733083, -7.0, -7.0, -7.0, -4.094631819313487, -7.0, -7.0, -7.0, -2.733397909361422, -7.0, -3.4702634469650784, -7.0, -7.0, -4.2518084986240465, -7.0, -7.0, -7.0, -3.2113875529368587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8464608251293324, -3.520876381688342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5083130299937353, -3.466274321789292, -7.0, -2.9172428579074663, -7.0, -7.0, -7.0, -3.7759015788916743, -7.0, -7.0, -3.503994848765824, -7.0, -7.0, -3.1936810295412816, -3.138994979537685, -7.0, -7.0, -3.6073048707733277, -7.0, -3.7389390312034796, -7.0, -3.7329162073263795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0755469613925306, -7.0, -3.9278064918639526, -7.0, -7.0, -3.5467400252092727, -7.0, -2.9737434376601035, -7.0, -7.0, -7.0, -3.6475785542124552, -3.368286884902131, -7.0, -7.0, -7.0, -7.0, -3.441328487681495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.841359470454855, -2.921686475483602, -7.0, -7.0, -3.395675785269936, -2.9250541203118425, -3.4102034170894533, -3.7652213663049805, -7.0, -7.0, -7.0, -3.538824988937904, -7.0, -7.0, -3.799891684656865, -3.041392685158225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6578204560156973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.203932652764692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3939260065858368, -7.0, -7.0, -4.3954685131443085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6632139160261286, -7.0, -7.0, -3.273926780100526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.907008053689199, -3.399327532158679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4578818967339924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4533183400470375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.60151678365001, -3.7709992051639407, -2.814913181275074, -7.0, -7.0, -7.0, -4.379975935132622, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165244326125311, -7.0, -7.0, -7.0, -7.0, -4.6917046245223535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2671717284030137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.330684277550962, -7.0, -7.0, -7.0, -4.538385197019912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.846337112129805, -7.0, -7.0, -2.8948696567452528, -7.0, -7.0, -7.0, -4.337956629474105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.352913447606274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.60151678365001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8071483009890663, -7.0, -7.0, -7.0, -2.60422605308447, -7.0, -2.128722284338427, -7.0, -7.0, -7.0, -7.0, -7.0, -2.586587304671755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.412740466538526, -7.0, -7.0, -7.0, -7.0, -3.9792751475910233, -7.0, -7.0, -3.3903167684708406, -7.0, -7.0, -7.0, -7.0, -3.061452479087193, -7.0, -3.079362164393046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.436374704897461, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4638929889859074, -3.2161659022859928, -3.184123354239671, -7.0, -7.0, -3.375846436309156, -7.0, -7.0, -7.0, -7.0, -7.0, -2.708420900134713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.875141745177931, -7.0, -7.0, -4.5403253028737955, -3.753812783564702, -7.0, -7.0, -7.0, -7.0, -3.7628285531890904, -3.696618459232225, -7.0, -7.0, -7.0, -7.0, -7.0, -2.234264124378789, -7.0, -3.3140779917792127, -2.6866362692622934, -3.7209169341271506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.979092900638326, -7.0, -7.0, -4.262284934377744, -4.677807630689279, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.487530054083552, -7.0, -7.0, -2.275886960301226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.795135868017322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.182129214052998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.415974411376566, -7.0, -7.0, -4.243286146083446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.869620845360168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.627427309011094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.927626962444954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.094390761004154, -7.0, -7.0, -7.0, -3.2412973871099933, -7.0, -7.0, -4.863905494593343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.17260293120986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0777311796523925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.537567257152675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.132579847659737, -7.0, -5.451837074684619, -7.0, -7.0, -7.0, -2.2546688990549204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.051789021035889, -7.0, -7.0, -3.544811911757776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5428254269591797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.792181496149679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.642662331442035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3688445068258215, -7.0, -7.0, -7.0, -2.2227164711475833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5550944485783194, -2.7972675408307164, -2.8536982117761744, -3.6084190513172856, -7.0, -4.498310553789601, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.064723726084838, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4988157877634483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.989996790919562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941779678173749, -7.0, -7.0, -5.34683590735996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4740705032150436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9179254220647413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4632956099620027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.346622857416885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.605305046141109, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.16418245777542, -7.0, -7.0, -7.0, -3.9043097257675417, -3.9202798946329485, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6465801531517243, -3.206987694756408, -2.8627275283179747, -3.220631019448092, -3.702919331637138, -7.0, -7.0, -2.8915374576725643, -2.9084850188786495, -3.239049093140191, -7.0, -3.54553684113762, -7.0, -7.0, -7.0, -7.0, -3.0709609158009337, -3.0153597554092144, -3.53198955141255, -7.0, -2.463395230212905, -7.0, -4.063230121978396, -7.0, -3.0927206446840994, -7.0, -7.0, -3.3738311450738303, -7.0, -7.0, -7.0, -7.0, -3.3234583668494677, -3.4951225394659438, -7.0, -3.0773679052841567, -3.5166014715265344, -7.0, -2.8438554226231614, -3.191870015444722, -7.0, -7.0, -3.185258765296585, -7.0, -7.0, -7.0, -4.456092614887902, -7.0, -2.9375178920173464, -7.0, -7.0, -7.0, -2.459863471952342, -7.0, -7.0, -4.085112113266837, -7.0, -3.116939646550756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.539828558377898, -3.2843179154306097, -2.8603380065709936, -7.0, -4.0271099660758445, -3.2793246654426103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9894498176666917, -7.0, -3.1365620365899805, -7.0, -3.664735968518705, -3.5392195249770073, -3.106870544478654, -7.0, -2.9182925127553556, -7.0, -2.392057108603371, -7.0, -7.0, -7.0, -3.586137025230793, -7.0, -7.0, -2.750594096772079, -4.279993758423351, -7.0, -7.0, -3.1189257528257768, -3.2241378422167073, -7.0, -3.1956229435869368, -7.0, -7.0, -7.0, -3.5289167002776547, -2.674992288098586, -7.0, -7.0, -4.374473389063976, -7.0, -7.0, -7.0, -7.0, -7.0, -3.742057076502348, -7.0, -3.5626199494262973, -3.714497408649806, -7.0, -7.0, -7.0, -7.0, -2.760422483423212, -7.0, -7.0, -7.0, -7.0, -3.1398790864012365, -3.9440506304214624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0490628897941248, -2.0670546754793615, -2.2584776449785173, -2.1428473883091104, -2.307496037913213, -7.0, -3.5953461646750866, -7.0, -7.0, -2.2546688990549204, -7.0, -2.2556744435696667, -7.0, -7.0, -3.6396358768118477, -7.0, -7.0, -7.0, -7.0, -3.5087893523336393, -7.0, -7.0, -7.0, -7.0, -2.6527296960692475, -7.0, -7.0, -2.7528164311882715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.348927619178392, -1.9358735272690675, -7.0, -7.0, -7.0, -7.0, -3.296665190261531, -7.0, -7.0, -3.2917387461232948, -3.4112829130173843, -7.0, -3.441695135640717, -7.0, -3.271318745081179, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0692980121155293, -7.0, -3.101403350555331, -3.4524509243568873, -2.6638055872727677, -4.142733511313519, -7.0, -7.0, -2.5720967679505193, -7.0, -7.0, -7.0, -2.9618954736678504, -3.3944516808262164, -7.0, -2.603144372620182, -2.8615344108590377, -2.8662873390841948, -2.660865478003869, -3.011993114659257, -2.575187844927661, -7.0, -1.7887681071554584, -4.166104344841616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8397921844453293, -7.0, -7.0, -7.0, -3.5369370227046737, -7.0, -7.0, -7.0, -3.6233113280355895, -7.0, -4.538435481499883, -1.9075378113452577, -4.713935529890935, -7.0, -7.0, -7.0, -2.5272861094566683, -3.766635886310268, -3.3743358452839174, -3.743588150159904, -3.5593679094633317, -7.0, -7.0, -2.4790471757557007, -2.4693310102934105, -2.4625341190352854, -1.7680458141024167, -7.0, -3.0253058652647704, -2.101599797231485, -7.0, -7.0, -7.0, -7.0, -3.3433101031623416, -7.0, -7.0, -7.0, -5.13301168709029, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0211892990699383, -7.0, -7.0, -7.0, -2.4261044280965076, -2.3527611917238307, -2.3070203593531686, -3.4216039268698313, -5.129654451292561, -3.1110383616634296, -7.0, -7.0, -7.0, -3.780173243642594, -7.0, -7.0, -2.1576917668933566, -3.1624150361064465, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7280831092284825, -7.0, -7.0, -4.080872901965097, -3.6148972160331345, -5.097346982881885, -7.0, -7.0, -3.94079447058587, -3.020430344344904, -7.0, -7.0, -7.0, -7.0, -3.506234359612126, -3.2706788361447066, -3.3875677794171883, -7.0, -7.0, -7.0, -1.971444539546947, -1.8291344242299696, -1.8817649496862066, -1.4693830636877623, -2.1375123531221294, -3.276853614306531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.581164284641671, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5849754022565214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1784013415337555, -7.0, -4.590165392435617, -3.903849338096681, -7.0, -7.0, -3.4109458586877746, -4.9352678844590505, -2.39050430210634, -3.5364321758220134, -7.0, -4.362166629347626, -3.905238042799656, -7.0, -7.0, -7.0, -2.2571984261393445, -7.0, -7.0, -7.0, -7.0, -4.038743761778693, -5.48841392039751, -7.0, -2.3142886609474975, -2.1539841469356036, -7.0, -4.258071901096532, -7.0, -7.0, -3.7873187566245474, -7.0, -7.0, -7.0, -7.0, -4.484036334901612, -7.0, -7.0, -7.0, -3.9968617684906733, -7.0, -7.0, -4.100040513510458, -4.656491094301585, -7.0, -4.06936036427513, -7.0, -7.0, -4.310417144932937, -4.302504092355714, -7.0, -2.4292137870854282, -7.0, -7.0, -7.0, -7.0, -2.5673625074157043, -3.4144998202843357, -7.0, -7.0, -3.6496268868405295, -7.0, -2.8898617212581885, -7.0, -7.0, -7.0, -4.0212513367076275, -3.646893624167745, -7.0, -7.0, -7.0, -7.0, -3.693726948923647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4154503326227226, -7.0, -7.0, -7.0, -7.0, -7.0, -4.39667001368851, -7.0, -7.0, -7.0, -2.38104186650127, -7.0, -2.7299742856995555, -7.0, -2.986995539724382, -3.4801507252732806, -7.0, -7.0, -7.0, -2.6766936096248664, -7.0, -7.0, -7.0, -3.2140486794119414, -7.0, -3.34143452457814, -7.0, -7.0, -7.0, -2.8796692056320534, -2.376455288899979, -7.0, -7.0, -7.0, -7.0, -7.0, -3.087603973687808, -3.4726218995463567, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0870712059065353, -7.0, -7.0, -3.091315159697223, -3.8237349883987313, -7.0, -7.0, -3.337725413884801, -3.788572366037187, -3.172310968521954, -3.4192947217534604, -3.534026106056135, -7.0, -3.760497875226527, -7.0, -3.743979865241843, -7.0, -7.0, -7.0, -2.924795995797912, -7.0, -7.0, -7.0, -7.0, -7.0, -4.232449724062003, -7.0, -7.0, -3.4039412508343103, -7.0, -7.0, -7.0, -2.8444771757456815, -7.0, -2.5255075609238915, -2.995020606124758, -7.0, -7.0, -3.3242824552976926, -3.203032887014711, -3.798529799485261, -2.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7697464671794534, -7.0, -7.0, -7.0, -3.143014800254095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4611300237200586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.816241299991783, -7.0, -7.0, -7.0, -7.0, -3.903616250068696, -7.0, -7.0, -2.815577748324267, -7.0, -4.212799980625567, -7.0, -7.0, -7.0, -7.0, -7.0, -4.339292402768765, -2.740926342372719, -7.0, -7.0, -4.293147302557646, -7.0, -7.0, -7.0, -3.3240765797394864, -7.0, -2.9304395947667, -4.020905585532556, -3.077731179652392, -7.0, -7.0, -7.0, -3.0064660422492318, -2.851869600729766, -3.1870975005834774, -7.0, -3.061640934061686, -7.0, -4.296326647059846, -7.0, -2.960470777534299, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.732383036370039, -7.0, -3.4285667129921897, -7.0, -7.0, -3.030599721965951, -3.1439511164239637, -7.0, -7.0, -7.0, -7.0, -3.0081741840064264, -3.570893036218392, -7.0, -2.795184589682424, -7.0, -3.40671045860979, -7.0, -7.0, -2.9355072658247128, -2.7715874808812555, -7.0, -4.523434286746437, -7.0, -2.66029616027073, -7.0, -7.0, -3.877946951629188, -7.0, -7.0, -7.0, -3.447623097760286, -3.0132586652835167, -3.497067936398505, -7.0, -7.0, -7.0, -4.531486580994901, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2581581933407944, -7.0, -3.586812269443376, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0710070168021875, -2.710963118995276, -7.0, -7.0, -2.484299839346786, -3.2990894370487327, -7.0, -7.0, -7.0, -7.0, -3.783224463447248, -7.0, -7.0, -3.3400473176613934, -3.5478977175630972, -7.0, -3.071513805095089, -3.4748861346502506, -7.0, -7.0, -7.0, -7.0, -4.295065447601705, -3.127428777851599, -7.0, -3.6092741724045876, -7.0, -7.0, -3.823061039927238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.030194785356751, -3.731266349075492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.843083210487105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.100370545117563, -2.600791448229794, -2.492061604512599, -2.478162312705756, -1.7752983053370275, -7.0, -4.020954854652503, -1.9989129043587859, -7.0, -7.0, -2.2556744435696667, -7.0, -7.0, -7.0, -3.4469511751907005, -7.0, -7.0, -7.0, -7.0, -3.5207608747640986, -7.0, -7.0, -3.1103652106913016, -7.0, -7.0, -7.0, -7.0, -2.660549282517093, -7.0, -3.6330642726914992, -7.0, -3.667452952889954, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5982066794435963, -7.0, -7.0, -7.0, -3.2187979981117376, -7.0, -7.0, -3.443262987458695, -3.3527611917238307, -7.0, -7.0, -7.0, -3.5532760461371, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9283958522567137, -7.0, -7.0, -3.213464629039556, -7.0, -7.0, -5.712992120582704, -7.0, -7.0, -2.9647309210536292, -7.0, -7.0, -7.0, -7.0, -3.2345172835126865, -2.623766000133931, -2.60422605308447, -7.0, -2.166578109919652, -2.846955325019824, -1.8440627725826517, -2.45484486000851, -1.4165612637504499, -4.097539903417536, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6924062348336304, -7.0, -3.0253058652647704, -7.0, -7.0, -7.0, -3.5159400420933182, -7.0, -7.0, -7.0, -4.315676520348013, -7.0, -7.0, -3.0338256939533106, -4.711199635231979, -7.0, -7.0, -7.0, -3.5154764413823756, -7.0, -3.6603910984024672, -7.0, -3.84060787900929, -7.0, -7.0, -2.765668554759014, -2.2032142586949006, -2.2799709653992704, -2.1712387562612694, -7.0, -2.260667536990012, -2.3862016054007933, -1.7172863415602266, -7.0, -7.0, -7.0, -3.025561859661751, -7.0, -3.4382258076045296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9564565834098997, -3.5067755366066433, -3.18447848916984, -2.811127970852324, -1.9861128136696526, -7.0, -5.527388845652158, -3.3938091036290334, -7.0, -7.0, -7.0, -7.0, -3.6186755388851397, -2.909556029241175, -2.2909245593827543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1082266563749283, -3.017555014414844, -7.0, -4.857127364488181, -4.38747881199254, -4.875305557698496, -7.0, -3.491921712586151, -5.018717137982806, -3.7762652182681093, -7.0, -7.0, -7.0, -7.0, -3.784831178124469, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2546688990549204, -2.518075036877517, -1.6343092970463176, -2.644143050509919, -2.1122697684172707, -3.247591421035026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.880350478958987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.468716471515472, -7.0, -3.66797192812771, -3.4085226171161014, -7.0, -7.0, -7.0, -5.235482995106691, -1.9496158605591523, -3.4933186082321015, -7.0, -4.008401429472742, -4.379495876529263, -7.0, -7.0, -7.0, -2.2885473000393515, -7.0, -7.0, -7.0, -7.0, -3.499992878560925, -5.186922449008297, -5.405399298863896, -7.0, -2.8419848045901137, -7.0, -3.8414605469662466, -7.0, -5.405377099554486, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305609289566193, -7.0, -7.0, -7.0, -3.9439175024002817, -7.0, -3.0265332645232967, -4.244583864390973, -4.654931807537483, -7.0, -3.985736838507217, -7.0, -7.0, -4.608001568513314, -7.0, -7.0, -2.0782755220866007, -7.0, -7.0, -7.0, -7.0, -3.0549958615291417, -3.7065471026403576, -7.0, -3.2796669440484556, -3.6432552250247716, -7.0, -2.396417311708544, -7.0, -7.0, -7.0, -3.894039000804609, -7.0, -7.0, -7.0, -7.0, -7.0, -2.66247450375031, -7.0, -7.0, -3.777209258145685, -7.0, -7.0, -7.0, -2.5220528008688223, -7.0, -4.011739561388318, -7.0, -7.0, -7.0, -4.492453062351789, -7.0, -7.0, -7.0, -2.572770615225975, -7.0, -3.4634450317704277, -7.0, -2.605305046141109, -3.29605548290054, -7.0, -7.0, -7.0, -3.198931869932209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0630830451223976, -2.7353327063206136, -7.0, -7.0, -7.0, -7.0, -7.0, -2.849214606209089, -3.4837338052460667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0299921753778474, -3.1025023091854522, -7.0, -7.0, -3.491781775584166, -3.3997246084084973, -3.3157604906657347, -7.0, -3.3508722985960704, -7.0, -7.0, -7.0, -4.032175376961363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.058426024457005, -7.0, -7.0, -7.0, -7.0, -3.701148412597393, -7.0, -3.4443571256560275, -7.0, -7.0, -7.0, -2.4943534012921837, -3.187708686423428, -7.0, -7.0, -2.345128574198131, -3.104145550554008, -7.0, -3.037027879755775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3001605369513523, -7.0, -7.0, -7.0, -7.0, -3.0273496077747564, -7.0, -7.0, -7.0, -3.8067902715840667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7992578188157653, -2.3205616801952367, -3.00774777800074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.840106094456758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3014478030652405, -7.0, -7.0, -7.0, -3.8936508169859634, -4.211093831058964, -7.0, -7.0, -7.0, -2.7363965022766426, -7.0, -3.8608169638645378, -7.0, -7.0, -2.758438753140039, -4.01548433403675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.166678718451888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.363078968512937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.049605612594973, -7.0, -3.1109262422664203, -3.2347702951609167, -3.363848266340793, -3.4385423487861106, -3.601299310194338, -2.7900035203904894, -7.0, -3.0038911662369103, -3.4352071032407476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14908048591103, -7.0, -7.0, -7.0, -7.0, -2.8838236063586025, -3.6287974855667104, -2.4191293077419758, -3.4234097277330933, -3.7634345046757764, -7.0, -3.348499570283838, -7.0, -1.5240201243391467, -3.573103783163991, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1868151244474543, -3.539327063539375, -3.2528530309798933, -7.0, -3.8322508140124287, -3.533772058384718, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5795549604009986, -7.0, -4.148664339982236, -7.0, -7.0, -7.0, -3.369447790383294, -7.0, -7.0, -7.0, -7.0, -3.0980969848947804, -7.0, -7.0, -3.103803720955957, -7.0, -3.907052884087371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.146472577133757, -7.0, -7.0, -7.0, -7.0, -3.821666345224573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153143856513743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.022040758942761, -7.0, -7.0, -7.0, -7.0, -7.0, -3.168202746842631, -7.0, -7.0, -3.3690302218091532, -7.0, -3.875177059814704, -7.0, -7.0, -3.6739680677887727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0283678836970616, -3.2215707121664607, -7.0, -7.0, -2.3314272965207428, -7.0, -3.520637633507743, -7.0, -3.673941998634088, -3.580696939712437, -7.0, -7.0, -3.1986570869544226, -3.2581581933407944, -7.0, -7.0, -2.926753905189737, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8640955734242475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.375846436309156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7573960287930244, -7.0, -7.0, -7.0, -7.0, -7.0, -3.829303772831025, -5.712938293718744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.243370466922834, -7.0, -7.0, -7.0, -7.0, -2.99563519459755, -7.0, -7.0, -7.0, -7.0, -7.0, -3.778585327862962, -7.0, -7.0, -7.0, -7.0, -4.314330782520869, -7.0, -4.23246243853121, -7.0, -4.409611930846435, -7.0, -7.0, -7.0, -7.0, -3.435525851498655, -3.958468318366944, -3.2345172835126865, -7.0, -3.184123354239671, -7.0, -2.7151673578484576, -7.0, -3.1492191126553797, -3.4216039268698313, -7.0, -2.826722520168992, -7.0, -2.8048206787211623, -7.0, -7.0, -7.0, -3.4487578345818384, -2.5188428262865648, -7.0, -7.0, -3.8094186141437016, -3.8900855267163252, -2.7489628612561616, -4.284836637642396, -7.0, -7.0, -7.0, -7.0, -3.3510228525841237, -3.196728722623287, -3.7824009524965296, -7.0, -7.0, -7.0, -4.983273090024392, -3.021602716028242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.393399695293102, -7.0, -7.0, -3.0108297779595223, -7.0, -4.157722642992314, -4.085272735033534, -4.761321692144821, -7.0, -3.1861083798132053, -4.541312928143722, -3.470410490975931, -7.0, -7.0, -7.0, -3.2286569581089353, -3.3028357965272437, -3.4156409798961542, -7.0, -7.0, -7.0, -2.784082117602856, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1401253083573186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8744818176994666, -7.0, -4.277889868055238, -3.9740047968974146, -7.0, -7.0, -7.0, -7.0, -4.279507247601757, -7.0, -4.371990911464915, -4.922253029113159, -7.0, -7.0, -7.0, -7.0, -3.5734518220354854, -4.531185030184496, -7.0, -7.0, -7.0, -7.0, -7.0, -4.296657878845073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.613355477979113, -7.0, -7.0, -4.46376984680511, -3.8822398480188234, -7.0, -4.327297617895854, -7.0, -4.281038420091887, -7.0, -7.0, -7.0, -4.1842180852863775, -4.077849178425541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292331401620799, -4.209060446571925, -5.104311241070395, -7.0, -7.0, -7.0, -4.955211352309952, -7.0, -5.405267794099257, -7.0, -7.0, -7.0, -7.0, -4.431251154695155, -4.782300592283702, -3.5961570809161723, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040117542542043, -7.0, -7.0, -4.870296586555347, -7.0, -7.0, -4.306264147948217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.166977447595255, -7.0, -3.579726448846229, -7.0, -7.0, -3.8639173769578603, -7.0, -2.986995539724382, -7.0, -7.0, -7.0, -4.319633418942298, -7.0, -7.0, -7.0, -7.0, -7.0, -3.658106835506393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5160062303860475, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3953124115330064, -4.787425049380184, -7.0, -7.0, -3.3311234878466514, -7.0, -3.152441238058955, -7.0, -3.1914510144648953, -4.249124949303172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.256717745977487, -3.982904117792628, -7.0, -7.0, -3.0549958615291417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.915747584963322, -3.4496326504700745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4872798164430687, -3.453471233722936, -7.0, -7.0, -3.82687351534638, -7.0, -3.730136003996678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.545603968481417, -7.0, -3.4342494523964753, -7.0, -7.0, -7.0, -7.0, -3.6591552809406296, -7.0, -7.0, -7.0, -7.0, -4.393926006585837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8976270912904414, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0746336182969043, -7.0, -4.105714510570921, -7.0, -7.0, -7.0, -7.0, -7.0, -2.921166050637739, -7.0, -4.497454909613176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.726887425714068, -7.0, -7.0, -7.0, -4.1890128046002415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.643057683751453, -4.395505782843064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.775974331129369, -7.0, -7.0, -3.44870631990508, -7.0, -7.0, -7.0, -4.441622878106768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.035829825252828, -7.0, -4.004014894560444, -3.404833716619938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.53832233323144, -3.969788537414939, -7.0, -7.0, -7.0, -7.0, -3.013342904345347, -3.6073477767684134, -7.0, -7.0, -4.221502261586565, -2.469822015978163, -7.0, -7.0, -2.3654879848909, -3.862191031051597, -7.0, -7.0, -7.0, -3.4038066105474227, -7.0, -3.4581844355702627, -7.0, -7.0, -7.0, -4.326663506724679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8412029961307326, -7.0, -7.0, -7.0, -3.962179852908768, -7.0, -7.0, -7.0, -3.6049816296074315, -3.7715874808812555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9590413923210934, -7.0, -4.752609209479315, -7.0, -3.8249064713021124, -7.0, -4.992884745367121, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9933039379194746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019157847739282, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.76051043925476, -7.0, -7.0, -7.0, -7.0, -7.0, -2.801403710017355, -7.0, -3.3527611917238307, -3.329194415088451, -3.2052043639481447, -7.0, -7.0, -7.0, -4.004745018844494, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0283678836970616, -7.0, -3.9101439610645126, -7.0, -7.0, -7.0, -7.0, -3.9911971731459106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.33665982345442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.123753668755842, -5.411734156093602, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30999192878118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.653974273405593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2137832993353044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.226182808052582, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5896145406312665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.855500983970402, -7.0, -5.0970032315517395, -7.0, -3.4726833296130404, -5.017596721365986, -7.0, -7.0, -7.0, -7.0, -3.502836638621003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721357130022457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.317770922950241, -7.0, -7.0, -4.073388381115178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.632728009129432, -3.9805487393597705, -7.0, -4.437068470428161, -4.660405337332384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.990427658485263, -5.186542457292524, -7.0, -7.0, -7.0, -7.0, -4.6531835598447415, -7.0, -7.0, -7.0, -7.0, -7.0, -4.31626397191069, -7.0, -4.780828369673003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.465120013852074, -7.0, -7.0, -5.347025414414368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464995978618864, -7.0, -7.0, -7.0, -7.0, -4.337039739920378, -7.0, -2.9385197251764916, -7.0, -7.0, -7.0, -4.795358551023385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9229848157088827, -7.0, -3.4212747912103465, -7.0, -7.0, -4.244079106672388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9735434685324895, -7.0, -7.0, -3.5056925074122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.443695110606494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7831886910752575, -7.0, -7.0, -7.0, -4.326704445074325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021189299069938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7671558660821804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.078042316010944, -3.908806599405674, -3.9082168530893924, -7.0, -7.0, -3.6714968222018745, -3.2590201740708116, -7.0, -3.3310221710418286, -2.736238137552537, -7.0, -7.0, -3.6173149332982937, -3.5230772345351196, -2.724621710695205, -3.952598734529773, -7.0, -7.0, -3.6149499184762433, -3.609914410085998, -2.3904304068932922, -3.1861649617274153, -7.0, -1.8885237048094758, -2.6337492352334286, -3.644832328825636, -3.146334793350271, -7.0, -2.81135154588012, -3.0013009330204183, -3.024895960107485, -3.075783043496683, -3.343605508104172, -3.3120715213029315, -3.9151887051731564, -2.546851001781394, -3.139609254468416, -2.8062321697031862, -2.269471978837336, -3.6086864575703634, -3.151807470681409, -2.544429805705557, -3.358208575770563, -3.4408041673450787, -3.9318137039591394, -3.3895204658463776, -3.6505503492394107, -3.2351314848706103, -3.9253636673541017, -2.9903881924169533, -4.035469763481283, -2.4190319759437413, -2.244720457047523, -2.146396404002692, -2.5392852461514552, -2.3858296186697827, -2.9110008520221933, -7.0, -3.4625477288026643, -2.6180062349855286, -2.861683729919097, -3.0421323296433975, -3.9465013905695874, -3.914977472444331, -3.636036316353447, -3.276729804479128, -2.920499480678795, -2.5925468421919335, -7.0, -3.1042736673203346, -7.0, -3.161401280230616, -2.8458273340259437, -3.136456317387437, -3.537609240282091, -3.2515550585595285, -3.436374704897461, -1.8784410040430806, -7.0, -3.9226735678585545, -2.818398039146461, -3.510410948010177, -2.5810285888174453, -3.605574376060999, -2.09796797816439, -2.6572068680363374, -2.3039292503046536, -3.746556361410369, -2.6134281423890964, -7.0, -2.669061616792209, -2.8406548916005177, -3.1115505391909464, -3.912540882790638, -7.0, -7.0, -2.0648322197385736, -3.400753787896711, -3.7594411971336976, -3.618048096712093, -3.5597071786574506, -3.3381575642717727, -2.628281351530588, -3.4307735806966204, -1.6448110547410144, -3.308671106715418, -3.223582462425357, -3.660106221723244, -2.410593870705327, -2.088871143006184, -3.6327608884794387, -3.223080397831155, -2.191362752198175, -3.6582976503081897, -2.57237951473286, -2.9433955765089546, -7.0, -3.2136062891507047, -2.501137541684781, -3.475053440975798, -2.6209288346246438, -2.2114479488687553, -2.0846515948551616, -3.63230541441367, -3.6866660552423403, -3.9357087478426633, -3.521039963927612, -2.6725353363248434, -3.0183259454029208, -1.741055467084807, -7.0, -3.9372670722114127, -2.653671089068736, -3.1810673688249955, -7.0, -3.6084190513172856, -2.45484486000851, -3.904336792202495, -3.205420915676343, -3.908753019184534, -3.437803393485486, -3.607079544728571, -2.9405639151168446, -3.0725506671486116, -3.299170398175146, -3.3973489661765908, -3.9380691862233856, -7.0, -3.210853365314893, -3.443262987458695, -2.2796766501460075, -3.132922612520788, -3.31178412442512, -7.0, -3.4459154139511234, -7.0, -2.4792049974725776, -3.210211471641834, -7.0, -3.679836558918098, -3.3592661646067485, -3.614264287358705, -3.962416693445751, -3.9703933720796, -3.0517954455579925, -2.7212898263240337, -2.830726110897981, -2.7825299529871605, -3.0161508626402753, -3.2319281100740858, -2.0124798801640136, -3.2272695167098435, -7.0, -7.0, -3.6396358768118477, -3.4469511751907005, -3.2215707121664607, -3.9101439610645126, -7.0, -7.0, -3.9498614562775844, -3.910037123553051, -3.809929885460897, -1.4329896771995743, -1.9339426027412612, -1.2048285208964937, -1.5575788998694664, -1.6066102370689712, -1.5221134684622253, -2.925124491288567, -2.7726883546821415, -2.6519076720869994, -3.268297087223767, -2.7529625598847725, -2.8872591614954697, -3.0887029603514744, -7.0, -3.5207978403223796, -3.983761560286165, -4.170833551085677, -3.616790486329716, -2.967637107975338, -7.0, -2.5802078876560617, -2.7273887392106926, -3.9679689628786923, -3.224377652161807, -3.9311017456326387, -3.078061165597835, -3.3927409079666413, -7.0, -2.5695906342474704, -2.371659416448944, -2.5140457292682847, -7.0, -3.430505050123604, -2.808833989621961, -3.0662194023097737, -3.6163704722912695, -3.45117215751254, -7.0, -3.455758203104137, -1.6380299897796193, -2.64288286077107, -2.833743289137135, -3.9063458182094015, -7.0, -3.448654799117084, -7.0, -2.7214226357500904, -7.0, -7.0, -2.7588673836116775, -3.669688708056208, -3.123851640967086, -3.9050399280762114, -7.0, -3.9152414973061944, -2.6888907154091393, -3.60535892548885, -3.1354506993455136, -2.8930215923314395, -1.9238175013555583, -7.0, -3.9091279419892606, -7.0, -3.442845446763725, -2.858637438650731, -2.4703293694025734, -7.0, -3.160568564398739, -7.0, -2.5786392099680726, -2.9598678330688757, -1.5875405103060276, -1.5994096422975916, -3.6110857334148725, -7.0, -2.932596742019587, -2.6629825636306528, -2.3344956371018633, -3.09457094350807, -3.007041081284651, -7.0, -7.0, -3.019479781993769, -2.843133072080949, -3.2734973252095054, -2.6917573560607426, -2.381098044543058, -3.464012366249414, -3.1863912156954934, -3.460547059679343, -3.6135775721070993, -2.423775765777925, -2.0458695520970736, -2.549679601632059, -3.6033067965385137, -7.0, -3.25988044734366, -3.9209577059554492, -2.8556123319140068, -3.606327612467192, -2.8777699234062526, -1.106382700346026, -7.0, -3.170471266415623, -2.7888280352309613, -2.722774034232548, -2.9579170046848744, -3.916927466112993, -3.3891016202881334, -7.0, -2.5598567720277465, -2.85601101687512, -2.6157671330554435, -1.618635156505728, -2.2309352534357063, -2.756857889127802, -2.8663327887710035, -3.19554385153028, -7.0, -3.1083633119106744, -2.552407456883763, -7.0, -7.0, -7.0, -2.5204507792823576, -2.4665710723863543, -3.3242824552976926, -3.4581340270643848, -2.832082924950745, -3.9215824403934163, -2.6065157176196125, -7.0, -3.402777069610347, -3.4608477482317905, -3.1045358837850054, -2.607602905903389, -2.593638435787782, -3.6966293754051547, -2.711630374111664, -3.6490689996707366, -7.0, -2.026009487084626, -3.4155711595028895, -2.64051349413832, -7.0, -2.903731084963894, -7.0, -1.9712118454247622, -2.6304596577087733, -2.2869189482542525, -2.0899956366053125, -3.609914410085998, -7.0, -2.9257846410591988, -3.922154325231059, -3.236486876375591, -3.036429265626675, -2.6168918081997035, -3.624230513855454, -1.5315953405161056, -3.2062320243262996, -3.209193195719529, -2.7311439906672614, -2.9912847249485184, -7.0, -3.471365065418019, -3.869422415299701, -2.095232898972203, -3.4823017672234426, -2.919115465508226, -2.6552376394663915, -2.9772916357834776, -3.462210761646044, -3.3641756327706194, -3.547318532678011, -3.667960247051014, -2.7295268685288185, -3.984857221809016, -2.829025671794826, -2.594698610475544, -7.0, -3.14803165119416, -4.056409320649918, -3.5685864807261023, -3.3077757131389833, -2.70972002338062, -3.3084790401617297, -4.462697408101717, -4.026508750502279, -7.0, -3.6924503234060153, -2.714479217325374, -3.56474494800163, -3.5655566178828098, -3.5032306252680336, -7.0, -7.0, -3.693243153309189, -3.8798124189827012, -3.2770056921365063, -3.5819875631939313, -2.841663316638509, -3.3429652099145004, -3.5595715027824424, -2.487716546462839, -1.6879303697434271, -2.9378759549297913, -3.683272236315922, -7.0, -2.8058356979612458, -2.94019263553191, -3.18574446281066, -3.5928426831311002, -3.0472617379123195, -3.027937365993989, -7.0, -3.397617270024851, -3.8531199842175665, -7.0, -4.14157518330082, -3.7956158859950087, -3.6116879117416305, -7.0, -2.702310954593247, -2.9844886573576357, -3.949376545158274, -3.31921019418185, -2.664119421670553, -3.624797578960761, -2.6967886312133325, -7.0, -3.8160323905754923, -3.035496444963253, -3.3823773034681137, -7.0, -3.6113439120874298, -3.9380817075075885, -3.3287108050659557, -3.4638183615294293, -3.3385651441864757, -3.544378143957812, -3.1895153784531334, -2.657579387241831, -3.63823959067475, -2.758182016200969, -2.7319180593504395, -7.0, -3.4534070626854416, -7.0, -4.062205808819712, -2.9576976220470885, -3.738288925247438, -7.0, -7.0, -7.0, -7.0, -7.0, -2.037486139848775, -2.953627920966533, -2.594278217221705, -3.918554530550274, -3.0757293997408985, -2.8578030213764305, -2.7460284279171123, -3.98412208286111, -3.9197577805018944, -2.9159272116971158, -7.0, -2.859169259280036, -3.291294833496669, -3.6333169310742743, -7.0, -2.1144683064163274, -7.0, -3.1845139866958645, -7.0, -7.0, -2.3039049519688835, -7.0, -3.63823959067475, -3.497620649781288, -2.7380270223694625, -7.0, -3.5538830266438746, -7.0, -2.961842790404378, -3.827959748307129, -1.8082686682108675, -3.139217700137586, -7.0, -4.016824493667488, -2.596677537910252, -3.644832328825636, -2.9079485216122722, -7.0, -3.1876147137990425, -2.6327660323507387, -7.0, -3.440279213235588, -3.700660458568172, -3.0094981094185593, -2.979758432498712, -3.453573132944873, -3.0676287167282457, -3.172991909723909, -3.935406489752349, -2.8305886686851442, -2.377437798729648, -3.8899363358931804, -7.0, -2.8403021730559184, -2.713850405963783, -7.0, -2.7772253777538043, -7.0, -7.0, -2.5972168724961677, -3.512061496535885, -2.28936785799692, -2.697893274831548, -3.7615895881903603, -2.1969952135148922, -7.0, -3.6895160395121422, -3.930999941956152, -4.132163596050864, -3.9258275746247424, -3.6891756195208254, -2.681147629339466, -3.9598043165083383, -3.4298060925892933, -2.6206722405382417, -2.133302624302217, -3.028793001220155, -2.99638031323341, -2.952354913935259, -3.721645766289746, -3.3377919265554117, -3.353820094897413, -3.060060092379906, -3.78593457821307, -3.9601376748637946, -3.9528408566757016, -3.9111576087399764, -7.0, -3.530185463473508, -4.021313365484695, -3.9433955765089546, -4.019697730980192, -2.5546208162578674, -2.7319467248046987, -3.0218584437341813, -3.3760494820288316, -3.3873898263387296, -2.9754735856707497, -7.0, -3.018608046407905, -7.0, -2.8002104435489317, -3.0463887326513173, -3.0954831858295404, -7.0, -3.195392218148846, -3.2502735862322463, -2.769645823445991, -3.940665872475829, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.637958544442607, -3.367169488534681, -3.2050238216541693, -3.928805370893284, -7.0, -7.0, -7.0, -7.0, -7.0, -3.157629432675573, -3.9672202597829673, -3.2689607038867696, -4.127493544756782, -7.0, -7.0, -7.0, -3.042496757433736, -3.6299190355035416, -7.0, -3.313423156443038, -3.9389198122447717, -7.0, -7.0, -7.0, -3.5303704785756733, -7.0, -7.0, -3.693682989767589, -7.0, -3.6068111469189637, -3.4893959217271293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.505749433669425, -7.0, -7.0, -7.0, -7.0, -3.309257450996068, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2248118650160023, -7.0, -7.0, -7.0, -4.066717173286226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.442457818608127, -7.0, -7.0, -3.036429265626675, -7.0, -3.643847310299714, -7.0, -7.0, -7.0, -7.0, -7.0, -4.130403464485783, -7.0, -3.00189589410742, -7.0, -2.6384892569546374, -2.7275412570285567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7693773260761385, -3.1319392952104246, -2.8813324763375916, -7.0, -7.0, -7.0, -7.0, -3.877774349991398, -2.235107414899873, -7.0, -7.0, -7.0, -3.011993114659257, -7.0, -3.5469126431812423, -3.267406418752904, -7.0, -3.5142053720257787, -3.2401746950192774, -3.175138903896551, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9746037920870325, -7.0, -3.382557321908786, -3.17868923977559, -3.6327608884794387, -4.378615902031225, -7.0, -2.862131379313037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.174001626402425, -3.8002816493571645, -7.0, -7.0, -7.0, -4.994057466388573, -2.824776462475546, -7.0, -7.0, -7.0, -7.0, -3.45484486000851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731024379815688, -3.853911049066346, -3.0835026198302673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8430458105345693, -7.0, -7.0, -3.286456469746983, -7.0, -7.0, -2.0017337128090005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.005152923751043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7223047868743278, -4.098184003250816, -7.0, -3.6795187436957892, -7.0, -7.0, -7.0, -7.0, -7.0, -3.137986732723532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6433737066738225, -7.0, -4.075364446373285, -7.0, -3.759214431234244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.386855529184724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.132355761753956, -4.8098878364806925, -7.0, -7.0, -2.9633155113861114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.465541468865047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7816835845073506, -7.0, -7.0, -7.0, -7.0, -4.014541538950472, -7.0, -2.889747230701509, -7.0, -7.0, -1.4278184833943377, -1.4764627337718037, -7.0, -7.0, -7.0, -3.115705584897513, -7.0, -7.0, -7.0, -3.0128372247051725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5298825089959625, -3.893484346218486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3639878297484915, -4.787012617003722, -3.5698418994037615, -7.0, -7.0, -7.0, -7.0, -3.6183619311098782, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2079035303860515, -7.0, -7.0, -7.0, -7.0, -7.0, -3.458879476116883, -3.3078524552347384, -3.8839758763210157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7218930162149575, -7.0, -7.0, -7.0, -3.3979400086720375, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02611088519185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.373114381203458, -7.0, -3.687339417646106, -3.649701293987293, -7.0, -7.0, -4.304081029459922, -4.718850313114124, -4.997744507802489, -7.0, -7.0, -4.372553009619916, -7.0, -7.0, -7.0, -7.0, -5.387959019712346, -7.0, -3.8328919447597904, -3.8036277953448154, -7.0, -4.6581831714879405, -7.0, -7.0, -3.7741226371486234, -7.0, -3.978143981690324, -7.0, -7.0, -7.0, -7.0, -7.0, -3.975431808509263, -7.0, -3.5723962996252667, -7.0, -4.670236573178357, -4.7650423619133955, -7.0, -7.0, -3.629409599102719, -7.0, -4.121471456178261, -3.9924651478080433, -7.0, -7.0, -4.96270546410181, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4924111373136824, -7.0, -7.0, -7.0, -4.991607024131837, -4.4465301066949845, -5.405396737463029, -7.0, -7.0, -7.0, -7.0, -7.0, -4.560253443542344, -7.0, -7.0, -7.0, -7.0, -4.131169383089324, -7.0, -7.0, -3.9129390867507183, -7.0, -4.199217459919978, -7.0, -7.0, -4.040419367879847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1673468775856355, -7.0, -3.338257230246256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4452148760562173, -7.0, -4.797205197435356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.596366143491465, -4.7934865515862635, -4.7878570387741615, -7.0, -7.0, -3.6354334783407656, -7.0, -7.0, -7.0, -7.0, -2.9486574321413204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.116939646550756, -7.0, -7.0, -3.5083501285699255, -7.0, -7.0, -7.0, -7.0, -7.0, -3.543478244384271, -7.0, -7.0, -7.0, -7.0, -3.8420609556687633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7927417858347487, -3.374850137756006, -7.0, -7.0, -4.305394366771733, -3.4625477288026643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0572856444182146, -7.0, -3.1863526580107426, -7.0, -7.0, -7.0, -7.0, -3.443888546777372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.394994209918511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.500099191915723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.825728957982647, -3.9952621553308805, -3.9775635725771523, -7.0, -3.4126163507626406, -3.330118485571775, -7.0, -7.0, -3.3857211511236223, -3.1412364934229786, -7.0, -4.28616444665352, -7.0, -7.0, -7.0, -3.0120689351723082, -3.3017810094618794, -7.0, -3.5163653623524644, -3.0249259662899615, -7.0, -7.0, -7.0, -4.310523383951521, -4.295391147571982, -7.0, -3.2811423061693956, -7.0, -4.2767144946302915, -7.0, -7.0, -7.0, -7.0, -3.8534548413680665, -7.0, -4.314709692955174, -7.0, -3.2359084131746507, -7.0, -7.0, -4.312029180025536, -4.293274139710753, -3.277188849160538, -7.0, -3.8132250459342703, -4.33344727449675, -4.2942016006947465, -4.3034984457923136, -3.1100515916804685, -4.325146068490752, -3.098478908174888, -3.691488176316267, -4.283482147048971, -3.509560925059843, -3.045220004398053, -7.0, -4.290657766409132, -3.5917767112760672, -7.0, -7.0, -3.741348602475895, -2.9430463082737304, -7.0, -7.0, -4.319813684538678, -7.0, -3.5306387121215916, -4.054019036112275, -7.0, -1.9220457546200005, -3.1985797729065455, -4.276392863069535, -4.3144571227346775, -7.0, -7.0, -3.509689653828353, -4.310055737750892, -7.0, -7.0, -4.325022800270452, -7.0, -4.331912948773648, -4.038560556604059, -4.305071783022292, -7.0, -3.1250865563789247, -3.8615543230335403, -4.158709186075578, -7.0, -7.0, -4.021396056741971, -7.0, -3.8402315949581087, -3.869055618701908, -7.0, -3.2100642372915438, -7.0, -7.0, -7.0, -3.443262987458695, -7.0, -4.015925311281039, -3.9965773367182584, -3.4001156732959967, -3.625621081424908, -4.285264680481154, -7.0, -7.0, -3.393421637669355, -2.965947762397985, -7.0, -7.0, -4.312198520372529, -3.64060067766542, -3.275426536741639, -3.989227273730537, -3.345517491241129, -3.1045507624320563, -7.0, -3.361109427505994, -3.8088633877675866, -2.999052427758291, -7.0, -7.0, -3.5719028431953865, -7.0, -4.286770736714056, -3.2209490175139024, -4.3290315750108395, -7.0, -7.0, -3.4736641969521136, -7.0, -7.0, -7.0, -7.0, -7.0, -3.28668096935493, -3.5297785596881464, -3.337086373423362, -3.8881045768089613, -3.9860547807696953, -3.7147152555189096, -7.0, -4.279393142747864, -4.295347148333618, -3.3938091036290334, -3.5537096901890077, -7.0, -7.0, -7.0, -3.278140911716149, -7.0, -7.0, -7.0, -4.297826142585328, -7.0, -4.298197867109815, -4.000824376605606, -7.0, -4.3167249841904995, -4.305480348653206, -3.7141788203782977, -7.0, -4.2841147684017695, -3.167279862892624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9498614562775844, -7.0, -7.0, -7.0, -3.4185958780577854, -3.1965648170700405, -7.0, -7.0, -4.04538166326508, -7.0, -7.0, -3.999456792322048, -3.7033558725100733, -4.294686624279444, -7.0, -3.877467333157578, -4.283391697297128, -3.214787098545441, -7.0, -3.8339117150713786, -3.7059919299146995, -2.6124162045705797, -7.0, -2.9744109367049494, -7.0, -3.6033248398913864, -7.0, -3.601625479553945, -4.280783177955887, -7.0, -3.034938217958906, -3.6144331585504523, -7.0, -7.0, -3.7103289580426297, -4.406284637924727, -7.0, -7.0, -3.803684673674004, -7.0, -7.0, -7.0, -4.276323911020188, -3.6827090220210574, -4.122428876155531, -4.34584404319262, -3.4621120045641733, -2.776816911310227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.302092715843355, -4.301485765632598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.303217663573669, -3.3913782899001723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.287644997457547, -3.2852759390712047, -4.305824106052693, -3.4329158688333883, -4.396129575309595, -7.0, -7.0, -7.0, -3.059061993830848, -4.309715314859149, -3.1760002544872328, -7.0, -3.0947393290928233, -3.989271791641693, -4.2795985099045675, -4.280578370368076, -3.2732328340430454, -3.5991732173529125, -3.739999309401968, -3.894777440059079, -3.4021409672924676, -3.822189880752621, -3.985965078304871, -7.0, -3.8191489428071344, -4.32672491280211, -4.322983806948398, -7.0, -7.0, -7.0, -7.0, -4.000954398406458, -7.0, -4.011401259924744, -3.4741514875108575, -3.993920958801287, -3.8465845028980463, -3.9988911346662124, -2.6693537374411997, -3.1159930547579835, -7.0, -3.1774441484275546, -7.0, -7.0, -3.5682799682761797, -3.703978825008386, -4.136355860302406, -4.032276185782851, -4.388385425718033, -7.0, -3.637169394272538, -3.536516357733869, -3.196077533373247, -3.632727166036443, -7.0, -7.0, -7.0, -3.6025302223541824, -4.35197014444686, -4.282055370683707, -7.0, -4.019427873252668, -4.279826581794015, -3.4652128399050834, -4.282191456275556, -3.0664936462050383, -7.0, -4.292610452838321, -4.352259719157145, -7.0, -3.0628470403742627, -1.9388025691853918, -2.938347062491972, -7.0, -4.0888622597780815, -3.016264717047424, -3.7835641541035208, -7.0, -3.989672247623873, -7.0, -4.338157564271773, -3.3875321946343506, -3.594705542151585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.056065929431752, -4.281487887940081, -3.3993361902558252, -7.0, -7.0, -3.7197530198840827, -3.5879577806232366, -3.6135599497377284, -4.353088764833949, -3.6404131072346617, -4.3216502030686, -3.634762675439664, -2.612989562531319, -3.382875633393018, -4.444294677675202, -7.0, -3.470986875643894, -3.807768655253699, -3.9571798173186563, -3.547428546724752, -4.297465046609606, -3.5607366671103913, -3.4285269489377055, -3.8615045408853748, -4.112336835745317, -7.0, -3.544081279789947, -3.4902863018778105, -3.4400635219066436, -3.1113885483342627, -4.297946441222536, -3.6008640363098396, -3.6819902660768373, -4.31285409125829, -3.267272325511575, -4.213929278444742, -3.5175389738505816, -3.6921195499645236, -3.9283190245037223, -7.0, -3.7844033017530085, -3.810568529216413, -3.1773037216202193, -3.4850112145785728, -3.3758683698200267, -4.290390809440229, -3.637536425333415, -3.549571102270827, -3.8131805325860118, -3.881859970905687, -3.694934085342246, -3.4101443047027806, -3.253687674240615, -3.5463884121954212, -4.331366551785781, -3.2305151486023247, -3.2152191679480744, -3.373713078578499, -7.0, -3.659735602456012, -3.6981701664125586, -7.0, -4.390104563825434, -3.260423992354916, -3.7590253691608635, -4.290591042549338, -3.2330259885856854, -3.4336005087190618, -3.471096313722673, -7.0, -3.8884790331883443, -7.0, -3.2571984261393445, -4.085237046441033, -3.7030444592234555, -4.003776372214725, -3.1435019365824877, -7.0, -4.117403884416343, -3.2585606639293814, -3.4992745818922173, -3.7469648528798047, -3.3639502593966446, -4.091895473508298, -3.1621005214870497, -3.991571601160679, -4.287712175443486, -3.457435881002328, -3.3115059646600127, -3.8641945398768103, -3.123591776731282, -7.0, -4.3471152548414045, -3.728457085328827, -3.3014869073125475, -7.0, -7.0, -7.0, -3.975316900589052, -4.069926968752473, -3.2808332273459495, -3.614833964658131, -3.048480647473502, -7.0, -4.005073213063604, -3.2434370925285267, -7.0, -3.8311442784902705, -3.977952121201462, -3.3368779979381324, -7.0, -2.8318160223023767, -3.505750595352085, -3.8083010194685842, -4.010087846998524, -4.501196242027088, -3.707910665713106, -3.406199423663313, -3.9900278987702946, -7.0, -4.084897858461355, -4.285039447366519, -3.8105013477665297, -3.5256493733815315, -3.636888906983799, -7.0, -3.4561989646592375, -7.0, -7.0, -3.0623337450205455, -3.541247339056982, -3.2777183335212237, -7.0, -3.545801757159276, -3.0878942990597675, -3.989605530597564, -3.372584727534948, -7.0, -4.299964668624155, -3.110228850717288, -3.797613730153076, -7.0, -3.7146231028714842, -3.8219500053077473, -3.8869980456710995, -4.283934113456609, -3.6032093494771824, -4.293252033147825, -7.0, -3.7032268741481635, -3.333012995488623, -3.169022388112188, -4.275219186782149, -3.3840147208069307, -3.857352602191875, -3.8313791303653706, -3.6062335293295447, -4.283911526303729, -3.800877389480626, -3.7192318188422293, -3.611702070594105, -2.9335577844776894, -3.724419245052999, -3.502036742895763, -7.0, -7.0, -3.5591881890047756, -7.0, -3.430290106054924, -7.0, -3.407900540142635, -3.4888678612536452, -3.819785143258096, -7.0, -3.243303861903959, -2.9585995363634856, -3.2050302708857896, -3.8373779732534894, -3.0168753032003806, -3.4237167870764944, -3.7738412766815257, -4.295325147042704, -3.6186456812328025, -3.514851216368609, -4.297147471801269, -4.293804359919337, -7.0, -7.0, -3.0015226545932983, -3.4229999772716164, -3.6873282654478152, -4.024506191528093, -3.6758366435022687, -4.009472142562814, -3.5159400420933182, -3.1368424743801975, -3.359626819150352, -3.282786844559675, -4.284520967479148, -4.303390474113389, -7.0, -3.4532227541587015, -3.2465553921611647, -3.665918540181034, -7.0, -4.002511631284908, -3.8151348166368138, -3.129377671109127, -3.8110832420318603, -4.281692267160937, -3.973150953755652, -7.0, -7.0, -4.275403502745404, -7.0, -3.7898978569176265, -3.824277734453902, -3.705927825831053, -4.283007075553755, -3.9843022319799033, -7.0, -7.0, -7.0, -7.0, -4.317520127284809, -3.999348069206721, -3.3470092300017322, -3.5369009816688104, -3.4041111915939406, -4.286299250942829, -7.0, -3.433989724808988, -7.0, -7.0, -3.2056495748651743, -7.0, -7.0, -3.7339592206237033, -3.623456048069934, -3.6205316347204755, -7.0, -7.0, -4.313445370426414, -7.0, -3.455244683982738, -7.0, -3.812957897382539, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.204014110472264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.032800014781665, -7.0, -7.0, -7.0, -4.530211344452983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.563427685249018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.663477911464217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.035029282202368, -7.0, -3.760901537179616, -7.0, -3.8910354153153106, -3.475307913956194, -7.0, -2.9041743682841634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.446940829796355, -7.0, -7.0, -7.0, -7.0, -3.71281800020785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752652708654161, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.142232991794714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.072654217333034, -7.0, -7.0, -7.0, -7.0, -4.38051875807043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.82865989653532, -7.0, -7.0, -7.0, -2.7275412570285567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.392307445821645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1571544399062814, -3.35237549500052, -7.0, -7.0, -3.8630252962294707, -7.0, -7.0, -4.07170101356235, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3314272965207428, -7.0, -3.910037123553051, -7.0, -7.0, -7.0, -7.0, -4.051902721033354, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5337085232398597, -3.2054750367408906, -7.0, -2.5349774634615505, -3.30352003690728, -7.0, -3.340146550949133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.973589623427257, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6354837468149124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6190933306267428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8232785569516707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4379618469315383, -7.0, -3.3930484664167784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.256236533205923, -7.0, -3.943247125137862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.398035542949671, -7.0, -3.4725370532620774, -5.017588380296173, -7.0, -7.0, -7.0, -7.0, -3.5025636691073636, -7.0, -3.699230502883409, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6184664921990803, -7.0, -3.353132789439816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.535807878897487, -3.9804578922761, -7.0, -7.0, -4.262427357143091, -4.075966455076692, -7.0, -7.0, -7.0, -7.0, -7.0, -4.367989193531104, -7.0, -7.0, -4.990418778932582, -5.186539630829768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.404914070763187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6050894618815805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464966204890961, -7.0, -4.176004391472253, -7.0, -7.0, -4.336999764360528, -7.0, -7.0, -7.0, -7.0, -7.0, -4.795344636680122, -7.0, -7.0, -7.0, -7.0, -7.0, -3.33665982345442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1863912156954934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.420945405921972, -7.0, -7.0, -3.942950070077099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2038484637462346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.17066256804232, -3.4164740791002206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7735670489260587, -3.8494808372439864, -3.587598729721245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1775364999298623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1360860973840974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.591621038213319, -2.873320601815399, -7.0, -7.0, -7.0, -2.4668676203541096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721728198572788, -7.0, -7.0, -7.0, -7.0, -3.4959603948817053, -7.0, -3.4127124827451016, -7.0, -3.1055471500473315, -2.707480529182167, -7.0, -7.0, -2.37824644689886, -3.0876979237245203, -3.766784515497859, -7.0, -7.0, -7.0, -3.7013088852280753, -2.435449506036116, -3.7869997221787326, -7.0, -3.66162340922923, -2.640684773505455, -2.8524037414231755, -3.121149319077149, -3.394889257167419, -2.588436493215736, -3.4712917110589387, -3.252124552505644, -3.8504624327615167, -3.756560043006683, -7.0, -7.0, -7.0, -7.0, -7.0, -3.180928319993991, -7.0, -3.3564083270389813, -7.0, -2.412474318162643, -7.0, -7.0, -3.8256208250035, -7.0, -3.171726453653231, -7.0, -7.0, -3.888179493918325, -2.989598116961936, -3.7989267385772014, -2.6999957707115865, -3.8646297245455123, -2.3550507749542025, -3.730741911850021, -3.731427587050948, -3.747100931364986, -3.3860230915330054, -7.0, -7.0, -7.0, -7.0, -3.043283665570575, -3.438384107034714, -2.241032065988696, -7.0, -7.0, -2.7685147746865404, -3.3969835082752007, -2.5976074408031, -3.468691871867676, -7.0, -7.0, -3.516444079673956, -7.0, -3.8330195470765314, -7.0, -7.0, -2.0969100130080562, -7.0, -7.0, -7.0, -3.5631249603380444, -7.0, -3.1844642893469906, -3.60406397266389, -3.0251009610468134, -7.0, -2.3486841474975146, -2.502263204344856, -1.9712108261874235, -7.0, -7.0, -2.855761372339948, -3.499893186149237, -3.54082981411108, -3.320613576530592, -3.0147724740730637, -2.322336782758957, -7.0, -7.0, -7.0, -3.2409858192066068, -7.0, -2.839540892968969, -3.3025473724874854, -2.4797589305685346, -2.6885732341636555, -7.0, -7.0, -7.0, -7.0, -3.3128872966235914, -7.0, -7.0, -7.0, -7.0, -3.6447339274471924, -3.2778383330020473, -3.3853828136078388, -2.980777192555743, -7.0, -3.3600630006277616, -7.0, -4.3144950176329955, -3.1649473726218416, -1.8486463172461758, -3.632356046239073, -7.0, -3.2656038765850357, -2.4615414010100047, -3.176322821034989, -7.0, -7.0, -4.445183714796111, -7.0, -7.0, -7.0, -7.0, -7.0, -2.95142323763206, -3.2962701975267965, -2.4386586662418517, -3.2723986324554044, -7.0, -3.1283633632585737, -7.0, -3.7166709755601355, -7.0, -4.201888500365973, -2.9708116108725178, -7.0, -7.0, -7.0, -3.0502250378836537, -7.0, -7.0, -3.207095540419218, -2.5477747053878224, -3.7083359026822635, -3.7817553746524686, -3.0149403497929366, -7.0, -7.0, -3.805228914203426, -3.6047658847038875, -7.0, -3.131137273778607, -3.189188344933054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.809929885460897, -3.7223047868743278, -3.4185958780577854, -7.0, -7.0, -3.0110358551715595, -7.0, -3.1226838680615425, -3.321132199092705, -7.0, -7.0, -3.0105119627372137, -2.901390202114049, -7.0, -7.0, -2.423245873936808, -7.0, -2.919696034609671, -7.0, -0.6811681914613787, -3.0348957147764644, -2.991357361812571, -7.0, -3.436719078227576, -7.0, -3.7100326990657537, -3.4352071032407476, -3.7901443650429005, -3.244277120801843, -7.0, -3.4004948168205202, -7.0, -7.0, -3.1427022457376155, -3.590140948581808, -2.5329416313913384, -7.0, -7.0, -3.7221401254574156, -7.0, -7.0, -7.0, -7.0, -7.0, -3.802534284386976, -2.8415680152280833, -3.9560963623586116, -2.9569026591445904, -7.0, -7.0, -3.257758548072965, -3.7680458141024165, -3.697839368218363, -7.0, -7.0, -3.191939809656508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.178609025019984, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4391747398434687, -7.0, -3.143561229978976, -3.015685679988791, -7.0, -3.2460469818232247, -3.4420876295507603, -3.197831693328903, -7.0, -7.0, -2.469059274505463, -7.0, -2.9851906245285953, -7.0, -3.1450642634967596, -7.0, -7.0, -7.0, -3.855700830835437, -3.0976476867820897, -2.602028056736095, -2.685338597906292, -2.978446826907944, -2.2243747736660806, -3.442793225939769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7769190028420465, -7.0, -3.0946807133711545, -7.0, -3.2245330626060857, -3.210786545639109, -3.7711463488149852, -3.860697274052039, -3.4863596256881286, -2.6012098589892596, -3.011394209174577, -3.7107940999303275, -2.763153961911042, -3.7049222912234017, -3.750970984437319, -3.62283547952152, -3.8073997127594854, -3.8311336003868828, -3.5867560391743902, -4.026778328659529, -7.0, -7.0, -7.0, -2.666290997651076, -2.583674032087918, -7.0, -7.0, -7.0, -7.0, -2.1921618075562983, -3.2488720042050603, -7.0, -7.0, -3.7182525000977504, -3.5199591807520685, -7.0, -3.023983672235201, -7.0, -3.4619484952037616, -3.0349291104842666, -3.7444494574467986, -3.4853295331272607, -2.9689045352426127, -3.6987703555586187, -7.0, -3.251759854528801, -3.7816875731600903, -3.175055991624076, -7.0, -2.9107768156582345, -7.0, -7.0, -3.5482665451707454, -3.689530834330039, -3.5202869749271164, -7.0, -7.0, -3.846089580357984, -7.0, -7.0, -3.747644819328248, -3.9512403503243405, -3.423081958297231, -2.788611718331111, -7.0, -7.0, -4.165264115808024, -4.5028366386210035, -4.364776057277425, -3.9408649759667216, -4.749109923611645, -3.1698135987952667, -4.081599312732936, -2.5216911650292575, -3.5434633878211326, -3.543757723163865, -7.0, -3.245354008546808, -4.45374630677039, -4.01694981309756, -3.675462635556488, -7.0, -4.014276862285691, -3.9453109893823255, -7.0, -4.398634324538392, -7.0, -4.015621678390377, -3.024336374304124, -3.381611391532234, -3.1568771206909294, -7.0, -4.398217868234877, -7.0, -7.0, -3.3907313564630464, -7.0, -4.114477539928802, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039625596193842, -7.0, -2.765697204987075, -3.7555699806288, -3.8070358438167355, -3.429077262814052, -3.785329835010767, -3.3537720189044595, -3.71291894805983, -7.0, -2.2984009709195474, -3.554428584722055, -7.0, -7.0, -3.1078383370643294, -3.8164235991034614, -7.0, -3.2726196065078565, -2.8998205024270964, -7.0, -3.428418289294446, -3.749890841271422, -7.0, -7.0, -3.159304480085414, -2.546849252465312, -3.7463253048559455, -7.0, -3.6715430852625737, -7.0, -3.3328606129435316, -4.02197445511006, -3.740764037376217, -4.216060285923142, -7.0, -7.0, -3.7073657541210374, -2.864649035534284, -3.211354185453311, -3.9305924884425982, -3.0403316283858697, -2.99503658046845, -3.64340072427823, -2.4720991694607215, -7.0, -3.4087250711423263, -3.5789782627210145, -3.909983694939844, -3.683993042899125, -7.0, -3.624127331511917, -3.539655029536453, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985695859689842, -2.848471368001359, -2.9856830355921042, -2.3380800304755907, -7.0, -3.8073320392911905, -3.4231311394854274, -3.841547165256553, -3.81424759573192, -7.0, -3.3047058982127653, -7.0, -3.713316040684306, -2.934750874663579, -7.0, -7.0, -4.252610340567373, -3.8196755199942927, -3.358030076576957, -3.758003009299799, -7.0, -4.021189299069938, -7.0, -7.0, -7.0, -3.417969642214737, -7.0, -3.470675044798936, -7.0, -7.0, -4.342353583021706, -3.3034154449502564, -3.2741842493416127, -7.0, -7.0, -2.839213334538938, -7.0, -2.96649372072148, -7.0, -3.087994255099714, -2.3627886725708787, -7.0, -7.0, -7.0, -3.307496037913213, -3.3666563861388235, -7.0, -3.7952541825808828, -3.7652959296980564, -7.0, -2.9591095650677848, -2.687897814926582, -4.30464129829467, -7.0, -2.9472158119567875, -3.59011703478479, -7.0, -3.4218623585834393, -7.0, -7.0, -3.615529223637133, -3.2195190365840465, -2.935099035747168, -2.9136372740190546, -3.1472639867006027, -7.0, -7.0, -3.585686278452497, -7.0, -3.319231018160272, -7.0, -3.2208922492195193, -2.2828971210332805, -7.0, -3.694956002249818, -2.522566483889084, -2.6113260888251135, -3.937166703715033, -3.8334021292318585, -3.4896772916636984, -2.9663177623902586, -3.997779430865604, -7.0, -3.2294827486062534, -3.9589459324939362, -7.0, -3.2897375563017555, -7.0, -3.694605198933569, -7.0, -3.868174040859638, -3.752586178740409, -7.0, -3.304569887203933, -3.218601143315633, -4.278822168352688, -3.8205407905494937, -7.0, -3.2606079589006254, -3.735119634081872, -2.8432327780980096, -7.0, -3.1711899563868537, -3.261548338444689, -7.0, -7.0, -3.09968064110925, -2.983325529161058, -2.9224881953209727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7340794072805945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.541079767776629, -3.7890163267933747, -3.5397032389478253, -4.012457578200774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7782115648732764, -7.0, -7.0, -3.895643504824079, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4870676377163163, -7.0, -3.6916118742144164, -3.2666827035194554, -4.398688280387376, -4.574769904961649, -4.875861557613656, -3.906052065511861, -3.6309514530353697, -3.3130346319553867, -3.906065544755237, -3.385033216560905, -1.4865801018867653, -3.7086191628552996, -4.148762632626255, -3.645549406428706, -2.631182766011284, -2.493208108796074, -3.1365014914682803, -4.575795739570101, -5.352890323568416, -3.9729256748062145, -4.097704527259222, -2.0863884511655177, -2.982020663780229, -4.273606931623152, -2.159651197852776, -1.2930938683856652, -3.1388839362423897, -3.34456563320384, -4.27370329631894, -2.7333297583119047, -3.1473229160377674, -3.226076412987496, -2.227639369195755, -3.1008170492152898, -3.5333714390119844, -4.3117615646589496, -2.6670127621315003, -3.1851323292282134, -2.8349615268663984, -1.9166812811245006, -3.444204844769567, -3.1544813921323813, -3.0326823673363323, -2.0820062011030047, -3.0830747263681317, -3.663429755167688, -3.168133818504442, -3.731172265937845, -2.7781113527324988, -3.8482988317907267, -3.0591134355336966, -3.9267558091842387, -2.6169714149603367, -2.7835097676367373, -1.056342497134873, -2.302370605284778, -2.1482126228724607, -2.47004146364061, -4.2075593565504725, -3.1281664716400015, -2.5420052655836813, -2.957045409824666, -3.605953079081585, -3.6821008897005045, -3.796747738875302, -3.540854815952249, -2.904786001106443, -2.2189690282163985, -2.9685099632773224, -4.398821214408981, -2.9443468382417373, -4.148795391897928, -2.9080297944208646, -2.776800033307582, -3.5140797722102626, -3.210603216024868, -2.0690863582010253, -3.628662627657154, -2.0673740307786943, -4.750760952738518, -3.751257927760953, -2.2438644894340767, -3.2382932374424964, -2.8610253770532483, -3.7506761405150186, -2.0910927430365986, -2.9347316108717187, -2.0910191968699166, -3.2247538935401416, -2.567232427953575, -4.276138069047766, -1.4942297215720177, -2.8863077616189106, -2.5046342441702976, -3.7731703150932776, -5.352876833977717, -3.6011046363297106, -2.194690899736821, -3.245652283747335, -2.8669082687032, -4.1491613568893655, -2.8394689385624297, -3.741205423348115, -3.388828768245126, -3.5331420722009406, -1.378189702858012, -3.2844095223628234, -3.037836233227962, -3.5838862740548043, -2.3103271035149624, -1.271709289931902, -3.4241472677851292, -3.336030384549526, -2.37231622569878, -3.7526782943689865, -2.0273451694820963, -2.971349002798928, -4.17676823054687, -3.0373996793517093, -2.5269420456780045, -3.041455319268648, -2.449794777822959, -2.025499604641104, -1.597861012203287, -3.876639225154536, -3.1069155663893837, -3.6910276490373755, -2.5246682692417513, -2.669735356870171, -3.0365123762348905, -2.0310560563158897, -4.398900184921813, -3.8915124654601096, -1.979788878129233, -2.9485905995386754, -5.35281516194099, -3.6452257115354163, -2.5023813593857014, -4.6538162458227275, -4.148641209067906, -5.051925842814157, -3.5078269691492467, -3.4550126429169667, -2.445409351273244, -2.891395696603519, -2.6095232658911427, -3.079577084563666, -4.312617738422503, -3.5088812018638897, -3.2843805959453753, -3.681116090173446, -2.3400879818480997, -2.8159078076841455, -2.646061127659469, -4.44983502217156, -3.489889162365435, -3.5757053787094133, -1.7375608801923828, -3.4081724871168673, -4.750793716662268, -3.7428381293249657, -3.2438952103905967, -3.8759675101142856, -3.0966392743958857, -3.5099720837452923, -3.0486254683237726, -2.7641128782236777, -3.0163642957549452, -2.536535897629957, -3.1018296038610864, -3.384954313935598, -0.9025700879280136, -3.0787382554296308, -4.352913447606274, -5.051789021035889, -3.5087893523336393, -3.5207608747640986, -3.520637633507743, -3.9911971731459106, -1.4329896771995743, -4.098184003250816, -3.1965648170700405, -4.051902721033354, -3.0110358551715595, -7.0, -2.4642490109109665, -1.700573201104013, -1.803187021052166, -2.2917739424813983, -2.047889844571703, -3.131860599375211, -2.815259036703932, -3.0234697737110188, -2.959821989387372, -2.399213729436142, -2.728865665539083, -3.1298490563291437, -7.0, -2.944789847324052, -3.5494726505247858, -3.0474228880808245, -4.030996578989978, -2.5919058985654106, -4.653937662376219, -2.4493115793910456, -2.6074279725546607, -3.190325940803602, -3.2258915002678767, -3.646021029432817, -2.8535735203743147, -3.3473931599569218, -5.352795887633352, -2.1143352885949227, -1.8652636002013423, -2.361890194037088, -7.0, -3.495320734733275, -3.2194593168424754, -3.7094569171992786, -3.9914649297659683, -3.4448925760099955, -4.206954950594866, -3.399273655675515, -1.7360634606372156, -2.6987089682536345, -2.4831045922925545, -2.3505513327437093, -5.352838289981073, -3.613020680036648, -3.561201439975245, -3.068353154351292, -4.0741425037404815, -4.030894509641916, -3.0479229136953148, -3.5162421239812813, -2.842171268439124, -4.311395492512552, -4.238852535326516, -3.905932659661591, -2.8989973412881245, -4.449761793777076, -3.073672053996437, -3.116745907663402, -1.3348343173384234, -5.35289417766023, -5.051939329951164, -7.0, -3.9383060662499854, -2.8846065812979305, -2.569868957768315, -4.574692821415007, -3.229733792684291, -3.436692597664054, -2.171764294452083, -2.9972583039329788, -1.5496530045435668, -2.2206337333245796, -3.671662575364542, -3.6451235434214526, -2.1014999941288774, -2.6355279551955864, -1.90104708326116, -3.3284238423631103, -2.3068807280891965, -3.9562933202213877, -4.122897874121538, -3.4340973416453218, -2.3204022188429327, -2.9499872660775432, -2.4108090192081186, -2.282687707978652, -3.139290486943393, -2.8072235859495214, -3.1465998385295317, -3.4955693893099817, -2.6950908511864737, -1.9493042524186015, -2.611615960259258, -4.398532175467584, -3.4781218737204944, -2.889873260441745, -3.7621936280615906, -2.732568812248553, -4.030617067957522, -2.462881498750418, -1.4274622754309116, -3.089207977024948, -3.1392052835507003, -2.9243830615097366, -1.7279021502757326, -2.3973047701147587, -4.010752753199189, -2.7488272758008763, -4.875994475714984, -2.4815432003737445, -2.72235775493706, -2.5915710078337733, -1.3980442589151636, -1.8955162525385503, -2.752592026136236, -3.1879157379875953, -3.029301831194811, -3.174077030963441, -1.7568754896405432, -2.181516116372709, -4.653947297156863, -5.352805524894097, -4.507697847619095, -2.697488429424593, -2.247915755339819, -3.575237893712713, -3.316106985344138, -3.082139596192321, -3.7512174975598183, -2.738579026601573, -3.7302206895539856, -2.589283777393785, -3.4845402991734833, -3.264147596079237, -2.215529362569842, -2.5339584518648985, -2.613166197059653, -2.2219363049007326, -2.247491266694592, -4.6550846250819795, -1.5758912380804402, -2.257352046167068, -2.3976064637013526, -4.7507320413412115, -2.98798391954084, -3.9552816418448353, -1.8596955777710922, -2.5115770590772803, -2.3882351204884205, -2.110387743572669, -3.9912299292200473, -4.449686625478326, -2.5414582697501884, -3.547026271580958, -3.467181278616061, -3.508768202830024, -2.642538710000905, -3.1976853060411248, -0.7893355732020385, -3.8613705825140756, -3.4181277855872354, -1.9842665938798643, -2.5037876063802758, -3.8424541067345053, -3.160859669406353, -2.920889075099427, -1.8258445260898921, -2.9521320584091684, -2.3196846398793265, -1.8802465169819231, -2.5852652334521258, -3.5959995535214295, -3.1531658615805016, -2.4526453462368933, -2.335090567509085, -2.079648086757684, -3.0918665954520934, -2.2785020622359897, -1.8355276596067984, -3.6162469698518693, -2.8348308015347112, -4.016735228992858, -2.312517089214689, -2.7944540839567535, -2.300023362178051, -2.7724390677510367, -3.9000286541655096, -2.8722222919570086, -3.34288063988093, -3.7651047158339206, -2.116931894711265, -3.010802052272352, -2.728725081971991, -2.93201920696319, -3.3125444135063975, -3.993951595374087, -3.260409000530892, -3.5667853047831293, -2.829463733017695, -2.915673570986958, -2.1920479519897156, -3.186450837846928, -2.6376631672377724, -1.182962689199345, -1.7566465429864107, -2.850280070939956, -3.0767729606871117, -3.799939493279297, -1.5997196899125223, -2.389380612961912, -2.916064682913849, -2.609245488115293, -1.9744799056675177, -2.157864117754172, -4.878019807285231, -2.2814544937302186, -3.120974200048109, -4.450066188704678, -3.720283369820714, -2.823549599065664, -3.3519345493940382, -4.5092255714044756, -1.2807873175934574, -1.5609197077617303, -2.2880182983636352, -3.672005445022952, -2.573729292503959, -4.011085787106548, -1.8320963527302048, -3.807061239917239, -2.109916599235302, -2.654915656899987, -2.8325269538104827, -4.239033680055692, -2.883148251980255, -2.9548180739640073, -2.166767369596477, -3.35074194501045, -2.6037090637586675, -3.239854331887638, -2.005961638087528, -1.940362892721548, -3.1688228100135096, -1.6012965834315163, -1.9229710652447798, -3.404394640735732, -2.1158342216543464, -4.654651983255935, -3.4196823422019547, -1.9352171200597414, -3.3237231691877547, -3.574872019591453, -4.574816148523287, -4.653852867088518, -4.654153430248454, -4.039612381896724, -1.675543884919733, -2.7821160652538497, -2.128652562662778, -3.876083065187758, -2.816573656226861, -2.2733622557608473, -2.7800950588159346, -3.0562975709559037, -4.074537365086869, -2.7473040474314554, -4.574922104783855, -1.9587220825148883, -2.65470822726565, -3.6909795692123, -4.209983906602265, -1.8147899877143951, -3.5297386382916294, -2.6329460616904314, -4.354356262178817, -4.207630520994443, -2.0916688687624085, -4.654884701981255, -3.672676916048187, -3.0222633656812588, -2.6699765409218195, -7.0, -2.8803510158338645, -7.0, -3.67183404403012, -2.9589360561417233, -0.8980588707318411, -2.17972919898145, -4.750824551038603, -3.7774249144047936, -2.248952111278853, -4.0755315946639925, -2.7411611641985343, -7.0, -3.11145839180201, -2.232104663558627, -7.0, -3.671859084349393, -3.9586422307145206, -3.0779098222198, -2.7799987809677282, -3.1278237828537074, -3.139905950729172, -3.246879252504379, -3.9559146976452366, -2.8280227464330054, -2.086134111752849, -3.359705418354718, -4.750969058002591, -2.629950556958126, -2.7252511895279548, -4.241940905630259, -2.4577373207082234, -5.052740100090059, -5.0522474932238, -2.6261585957866243, -3.3263435190252575, -1.155032859480172, -2.5036065640735687, -3.2872265141673314, -2.4473453533502263, -4.508779739050585, -3.559032745721805, -3.7515696914384007, -3.2556512166305875, -3.9917729345886532, -3.2384043062825043, -2.2956666962796732, -3.7984664857978987, -3.7729756674752157, -2.309649141115875, -1.4260844558204882, -2.8468583713444207, -3.2878419086342974, -2.3982883768309535, -3.3401961590915024, -3.07614031416888, -3.4794121371941125, -2.5819281733903634, -3.119610411536237, -4.099578979292946, -3.7312183500213, -4.051943183341951, -5.051860327904435, -2.662284635697243, -3.7041753111617277, -3.3285449954753994, -3.217079406146907, -2.0320037772941855, -2.666713973094915, -2.7441364524012473, -2.37289179868471, -3.2811621964134967, -2.8070379004300423, -7.0, -2.992860751859648, -7.0, -2.6622180000621567, -2.8411318527966554, -3.352320637745696, -4.449831168353349, -2.976173410782892, -3.371862186930359, -2.1151526142609294, -3.646386425606992, -5.353585433651377, -4.87582880342868, -4.273712931612605, -5.353161953283723, -5.0520221703193435, -4.876136980368427, -2.7529841877809456, -3.764087957385868, -3.306244991644289, -3.7737710523822834, -4.149721263992506, -3.9218367044079674, -3.6812970606493245, -3.6296269035573974, -4.450662800025085, -2.8857923101128033, -3.5420455433005573, -2.5259755974116596, -3.3849887735590265, -3.9134031970453065, -3.6295019187038324, -4.750876579084994, -2.6800892113547894, -3.6375820900165774, -4.8757170352614105, -2.3838017055920684, -3.4964760607131895, -3.56845179951805, -3.3088330016116188, -3.7659950553707966, -3.2883065634754933, -4.030842502824917, -4.052143512563366, -3.3389408586501794, -4.507905964887182, -3.178242157957572, -3.196272162145656, -4.6553247955498565, -4.875699689346818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7142729607632785, -7.0, -7.0, -7.0, -7.0, -3.9218944709291024, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5685732585751744, -7.0, -7.0, -2.3192796035605983, -4.0538045718497075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.567314623179351, -3.199480914862356, -7.0, -7.0, -3.0979510709941502, -7.0, -7.0, -3.539828558377898, -7.0, -7.0, -2.074816440645175, -4.665540342403951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3324384599156054, -3.017776870761958, -3.5046067706419537, -3.9262909868848634, -3.3444577731923464, -7.0, -7.0, -7.0, -2.6983905586437853, -3.1992064791616577, -7.0, -7.0, -7.0, -7.0, -3.9798517589161557, -2.4001060704285453, -7.0, -7.0, -7.0, -7.0, -3.3713449830820985, -7.0, -7.0, -4.427774893545752, -7.0, -2.383815365980431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.598790506763115, -7.0, -3.547528576459782, -7.0, -7.0, -7.0, -3.6998173287940737, -3.587598729721245, -7.0, -7.0, -7.0, -7.0, -2.436361454314497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7354214555764456, -7.0, -7.0, -7.0, -3.6705241577820797, -3.4823017672234426, -7.0, -7.0, -7.0, -7.0, -3.6139298694145165, -2.3415758274854883, -7.0, -7.0, -7.0, -7.0, -3.1947917577219247, -3.8841153620116686, -2.6350494180076955, -3.1245042248342823, -7.0, -7.0, -7.0, -7.0, -3.505421327583281, -2.500079576528447, -7.0, -7.0, -3.7064190488337676, -7.0, -7.0, -7.0, -3.1197139961978033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7196626830180466, -7.0, -7.0, -7.0, -7.0, -7.0, -3.372322729498556, -7.0, -7.0, -7.0, -7.0, -3.9448156680632662, -7.0, -7.0, -3.366236123718293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.828457338101283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9339426027412612, -7.0, -7.0, -7.0, -7.0, -2.4642490109109665, -7.0, -1.7057415650515282, -1.709799782295541, -2.0188853441603736, -2.135291704475752, -7.0, -7.0, -7.0, -7.0, -7.0, -2.797959643737196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3103392197987525, -2.517855418930029, -7.0, -2.4537004733597723, -7.0, -7.0, -7.0, -7.0, -7.0, -2.915964856951931, -3.031523876020016, -7.0, -2.924795995797912, -2.75815462196739, -7.0, -7.0, -7.0, -7.0, -7.0, -2.275234549433838, -7.0, -3.8435753430507633, -4.567167577177019, -7.0, -7.0, -7.0, -2.9380190974762104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8097379111016547, -7.0, -7.0, -7.0, -7.0, -2.680335513414563, -2.8363241157067516, -7.0, -7.0, -7.0, -3.3571722577230334, -3.2075670505660874, -2.293646623934636, -1.9150343529019414, -7.0, -7.0, -4.323726367155352, -2.2398355349224595, -3.260008587828519, -7.0, -4.015418439887637, -7.0, -7.0, -7.0, -7.0, -7.0, -3.075774997355713, -3.7484206224675685, -7.0, -7.0, -7.0, -7.0, -3.2648178230095364, -3.0372936658607066, -3.4900990050633047, -7.0, -7.0, -7.0, -7.0, -2.718916686014861, -7.0, -3.4129642719966626, -2.5484139885542367, -7.0, -7.0, -3.302114376956201, -3.530900537217131, -3.9146075677710805, -7.0, -7.0, -7.0, -3.1789769472931693, -7.0, -3.0588054866759067, -1.8123443497066896, -2.7768222079495963, -7.0, -7.0, -7.0, -7.0, -3.899142373493561, -7.0, -7.0, -7.0, -7.0, -7.0, -3.657342736814626, -7.0, -7.0, -7.0, -7.0, -3.397592434038117, -7.0, -7.0, -7.0, -7.0, -3.658774320844357, -3.1541195255158465, -4.859456543145925, -3.7921464540322676, -5.176565249878006, -7.0, -2.864049381360671, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8843421476470588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.976201582968563, -7.0, -7.0, -3.218841731507062, -3.8204204130984976, -7.0, -3.3616334139100563, -4.113834765112396, -2.860555779914859, -3.2974869397629045, -4.117746218143026, -3.3139469837438598, -2.847043569352527, -7.0, -4.011337799051992, -3.818868938770039, -4.045131655797483, -3.107899317144212, -7.0, -3.563015324620983, -3.290686728614926, -7.0, -3.5420781463356255, -3.617000341120899, -4.242477535884849, -3.583788016689579, -3.4226655866872724, -7.0, -7.0, -4.661888372968945, -7.0, -7.0, -3.4150459663945143, -3.3914350229382695, -4.0786199197404995, -3.729083757043612, -7.0, -7.0, -4.096805769822717, -3.8987251815894934, -4.458547204196593, -3.7180862947830917, -3.5386889104527226, -7.0, -4.372792371489067, -3.2817559066229203, -2.2691870196383395, -2.9916690073799486, -7.0, -7.0, -3.5037982464619217, -4.009365898346244, -7.0, -7.0, -3.964462347945267, -4.2068798223063, -7.0, -4.1422486417643345, -7.0, -7.0, -7.0, -4.380066452751471, -7.0, -7.0, -3.6921327857403368, -3.8162737456632567, -4.627561279277749, -7.0, -7.0, -7.0, -3.8433190436791786, -7.0, -5.10500406463443, -3.6133484255114983, -4.227655361923043, -7.0, -7.0, -4.438447410654374, -4.086495081663903, -3.643156465619706, -4.224248100962593, -3.529366180819488, -4.201353419532058, -3.2370268123180517, -7.0, -3.6442859194512525, -3.9577413374336854, -7.0, -5.047270972348938, -7.0, -7.0, -3.3813380926383116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.680481725745306, -7.0, -3.2911745290335737, -3.018284308426531, -3.3600250891893975, -7.0, -3.1484484035233837, -7.0, -7.0, -3.775756037844098, -7.0, -3.6236144956512026, -7.0, -7.0, -7.0, -2.5026176418045107, -7.0, -3.699143687394484, -7.0, -7.0, -2.9003671286564705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3027637084729817, -4.123470513709713, -2.584432755164712, -3.6764966379114132, -7.0, -3.498034723687027, -3.9557358422776656, -7.0, -7.0, -7.0, -7.0, -3.2595938788859486, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1078880251827985, -3.325310371711061, -7.0, -7.0, -7.0, -2.6206131348939996, -4.205231438820003, -7.0, -7.0, -3.5633624094866074, -7.0, -3.5554269980568862, -7.0, -7.0, -3.2173786479394413, -7.0, -3.148823197531414, -7.0, -7.0, -2.6967930850817443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.909091575516218, -7.0, -3.429429264381788, -7.0, -3.5173278822943734, -7.0, -7.0, -4.0475085055940125, -7.0, -7.0, -3.236537261488694, -7.0, -7.0, -3.521623683742995, -7.0, -7.0, -7.0, -3.4926461193813223, -3.0960405542954277, -3.695277323219642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4173055832445254, -7.0, -3.336859820916809, -7.0, -3.4472441923348445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0484418035504044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.278410601475816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6695957810243134, -3.4602210786446816, -3.4367985102318035, -7.0, -3.6956567599361905, -3.0215603323961395, -7.0, -7.0, -7.0, -3.5169758348685476, -3.2665523906877056, -7.0, -7.0, -7.0, -7.0, -3.3550682063488506, -2.186942726764195, -4.07018568637838, -7.0, -2.0276044006725917, -3.210573345194991, -2.459057254641927, -7.0, -7.0, -3.184762388171225, -3.7345598215794764, -3.6875289612146345, -3.8476960207341655, -7.0, -3.361160995195026, -7.0, -3.0861818046497493, -7.0, -3.373555606638933, -2.2784446045101223, -3.3528575624069963, -3.499893186149237, -2.3801207542684404, -3.662337343204088, -7.0, -7.0, -3.792251571903264, -7.0, -3.448242412634439, -7.0, -3.238798562713917, -7.0, -7.0, -2.253534871562535, -2.498773307676647, -2.9883678201564354, -3.236177239515077, -3.312092690393716, -7.0, -7.0, -3.5317343092765503, -2.531904487367248, -3.239633102713035, -7.0, -3.362105319293773, -3.702171950857711, -3.4114513421379375, -3.030963842378275, -2.6650178254124723, -7.0, -3.516337020623613, -7.0, -3.1298279460755056, -3.142285156167115, -7.0, -7.0, -3.5470864564155895, -3.6610550848533787, -1.3078058731216846, -7.0, -7.0, -2.83160632599708, -3.7856856682809013, -7.0, -7.0, -2.1558526703669125, -2.6600889504627023, -3.553701021549961, -3.877601679729272, -3.166282067316571, -7.0, -2.605006709269838, -2.669200619159474, -3.0818271912583772, -3.0563330349511615, -7.0, -7.0, -1.4880434371530584, -3.2074323856093794, -3.419184452746418, -3.670802284260944, -3.781994589465404, -3.707910665713106, -7.0, -3.6509870943834453, -1.8125142805918906, -3.3550682063488506, -7.0, -3.26528962586083, -3.074084689028244, -2.9981191605274136, -3.3953263930693507, -3.199114962043649, -2.326663506724679, -7.0, -1.9340591042340165, -2.432547358963337, -7.0, -3.792811771248147, -3.0991624929285946, -3.920801381825654, -2.5674465020938317, -2.7991336933020627, -1.9946026312575593, -7.0, -3.7390578478058996, -7.0, -4.312405872352393, -7.0, -3.3572358579987425, -1.7660464147650583, -7.0, -7.0, -2.571435856575893, -3.5449976797003977, -7.0, -7.0, -2.5839168668252004, -7.0, -3.343802333161655, -7.0, -3.3623882165886987, -3.0485389068446946, -3.3899925251123144, -3.6721902511882525, -3.6604860157849677, -3.64704048585496, -7.0, -3.763951826033324, -3.654850090561394, -2.973589623427257, -2.527871466363005, -3.2846844681720415, -3.3319938380422562, -7.0, -7.0, -7.0, -3.3587408376095857, -7.0, -7.0, -3.297468695545132, -3.2659179000852707, -7.0, -3.7446840632768863, -7.0, -2.9696821057315477, -3.506437380020297, -2.654472735909495, -3.762753564933374, -7.0, -3.6920533650340808, -2.126141222526648, -7.0, -7.0, -7.0, -7.0, -7.0, -3.673941998634088, -7.0, -1.2048285208964937, -3.6795187436957892, -7.0, -7.0, -3.1226838680615425, -1.700573201104013, -1.7057415650515282, -7.0, -1.544708382151548, -1.7906975879500755, -1.4795876071615262, -3.45178643552429, -2.991521413671849, -7.0, -3.7532765701844184, -3.2204219224378408, -3.2117433133351296, -3.3355581880658614, -7.0, -3.8121443089703804, -7.0, -4.415390738182574, -7.0, -3.12205196263325, -7.0, -1.9072564622406847, -1.5649802815403844, -3.4526296516220176, -2.0078590547187516, -7.0, -3.503609121816283, -3.4961682741749778, -7.0, -3.810098040681143, -2.669773466253543, -2.381781928710837, -7.0, -3.0478587274074567, -3.0767314430382817, -3.356694958541127, -7.0, -7.0, -3.660770643527697, -7.0, -1.8058864325858222, -3.895367288773362, -3.0683343131172545, -4.172233356847697, -7.0, -7.0, -7.0, -2.5231772201476628, -7.0, -7.0, -2.509202522331103, -7.0, -3.7563317673210577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.461198288622493, -2.0416001779564237, -7.0, -7.0, -7.0, -3.3713449830820985, -2.237959529923704, -1.5417810749690748, -7.0, -7.0, -7.0, -2.728501350653944, -3.7026889681591335, -1.7419816035046947, -1.3695723146231802, -3.658393026279124, -7.0, -2.7284243645797948, -2.7417244523322424, -2.4459245638311797, -7.0, -2.90395456773191, -7.0, -3.674125982742708, -2.978363147083883, -3.539295700875927, -7.0, -2.720060024749243, -2.923055522758436, -7.0, -3.447778009294621, -7.0, -7.0, -2.8338639667912022, -2.42097075212303, -3.225050696138049, -7.0, -7.0, -3.7394141026986953, -7.0, -1.9089510001271135, -7.0, -3.316319878258001, -1.88780952431716, -3.7331169814420644, -2.3793702749984322, -2.142858551113391, -2.0055196299497386, -3.374308331299816, -7.0, -3.766115283221414, -7.0, -2.6300038835026207, -3.4202308796246506, -3.1700415779490494, -1.669816276965361, -2.7114456684692576, -3.5287881917748964, -3.4743619760326307, -3.8678797834583794, -3.801609488027319, -3.1583034527805256, -3.5815704280995675, -7.0, -7.0, -7.0, -2.5228038604656158, -3.2130393712509595, -7.0, -7.0, -3.5185139398778875, -7.0, -3.3099848383169075, -7.0, -7.0, -7.0, -3.4231639238503484, -3.4358974290282975, -2.1667086528238673, -3.9263881834991534, -2.7196534809864565, -4.09941588705348, -7.0, -2.2648178230095364, -4.035045307533338, -3.1540325012731145, -7.0, -3.717420836722375, -3.6695957810243134, -2.455430557308209, -3.703678200880355, -3.122449936204605, -2.744932749231845, -7.0, -7.0, -3.8143142002074595, -7.0, -3.699924402742477, -7.0, -2.925569909543376, -7.0, -2.3810662726088885, -7.0, -7.0, -2.706396447183231, -3.3529607929853014, -4.3553940446231705, -2.835161911071816, -4.44421660506962, -2.3133914202099204, -2.6636632409363377, -2.702126302120017, -2.7079357553475703, -2.5967587537269323, -3.424936056088804, -2.967259886999739, -3.0342041035442273, -3.4018332745170223, -2.597322560864555, -4.404149249209695, -2.5334291141562018, -2.715988429419859, -3.868262279215955, -3.0089371159857716, -7.0, -3.704684429931342, -3.2786202444552437, -2.4568833994475088, -3.019064338239115, -7.0, -3.3723771304851287, -3.809582158214607, -3.49380646215058, -2.8670081599665216, -3.3106225169268044, -4.0134018619680445, -3.797042369698197, -7.0, -7.0, -7.0, -4.0626195838543415, -3.5557525825740743, -3.5866323069495945, -3.040968776406264, -7.0, -4.1039233919222635, -2.7529647996826467, -1.6589416127705028, -3.0278590441755795, -3.8014551636613825, -7.0, -3.0041087957295773, -3.4421974643102136, -3.5520595341878844, -3.801211562533051, -3.318163182165152, -3.51113941243943, -7.0, -3.651444166323796, -3.3279308045542364, -7.0, -7.0, -4.140209402207167, -3.9373674175172897, -7.0, -3.0945520778220583, -3.2782934176322724, -4.387594889675789, -7.0, -3.346792914871751, -7.0, -3.00044792387416, -7.0, -5.111151572881174, -3.7255577395080643, -4.312219683273972, -7.0, -3.9207666354873765, -4.015233976246709, -3.8105013477665297, -2.9036325160842376, -4.008344629252689, -3.5397450161093125, -3.414289004059428, -2.4005947059556028, -7.0, -3.003128984279141, -3.2184756161909616, -3.8826952623815973, -3.9750199143327536, -7.0, -7.0, -3.4726687041948, -7.0, -7.0, -7.0, -7.0, -7.0, -3.962889987391791, -1.8278961396555933, -3.321253121961899, -2.584059705457841, -7.0, -2.539666373408828, -3.210619451457561, -2.0780873047087587, -7.0, -7.0, -2.939882147548364, -3.658774320844357, -2.972033255790299, -3.909983694939844, -3.697490887171057, -7.0, -2.1856281472511823, -3.7858279199958655, -3.1575071357169904, -7.0, -7.0, -2.1428387408691347, -7.0, -7.0, -7.0, -2.865991800126275, -7.0, -3.3766377783551063, -7.0, -2.6235312082798568, -3.596896850256032, -1.8885611758793897, -2.982025009825869, -7.0, -7.0, -3.3240079328600416, -3.415974411376566, -3.1409477713426623, -7.0, -3.1484484035233837, -2.6469235999743512, -7.0, -3.668012971641832, -3.807873132003332, -3.1455848280002856, -2.3618272055368235, -3.3901399384676227, -3.4581844355702627, -7.0, -7.0, -2.923983747103962, -2.134698573897456, -3.691656043498147, -7.0, -3.175105740887016, -2.820141725700813, -3.7807492311035524, -2.6738935688061143, -7.0, -7.0, -2.843452636935933, -7.0, -2.411743376027878, -2.690955115144948, -3.200248413515354, -2.240315190350821, -7.0, -3.5666731376061165, -7.0, -3.093728034887572, -3.381295623003826, -3.312388949370592, -2.734968177098234, -3.740362689494244, -7.0, -2.8624721360836793, -2.243028648271097, -3.132899769944483, -3.1981757979993914, -2.803115554890027, -3.140759370870369, -3.020637463567606, -7.0, -2.8677325799583757, -3.0308526157493176, -7.0, -2.773217411418584, -7.0, -7.0, -3.128253833270144, -3.1385553051135826, -3.235360083082256, -2.9315849874708, -2.673182239227937, -2.336316756240027, -3.225497247312828, -3.6389327540387777, -3.4567707810445487, -3.3551321154773457, -7.0, -7.0, -7.0, -3.4476747410782496, -3.459392487759231, -2.9051087054113625, -7.0, -2.9847522781154137, -7.0, -2.7426345053908503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7122707911929065, -3.153814864344529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8101652845431495, -3.752586178740409, -3.322839272686321, -3.5137501500818233, -7.0, -3.399327532158679, -7.0, -3.0922526548953835, -7.0, -7.0, -3.6472117617451385, -7.0, -7.0, -3.867408556522791, -3.5251096222719336, -3.817036226050029, -7.0, -7.0, -3.796921075330169, -7.0, -3.4531143980466226, -3.7517408738109004, -3.7152510288788494, -7.0, -3.285557309007774, -7.0, -7.0, -7.0, -3.274042330049831, -3.686725621074542, -3.357553719743082, -3.57611089412084, -3.3062105081677613, -3.082040302705653, -7.0, -7.0, -2.875292825371008, -3.3713911526969724, -3.173970294769197, -3.6471872978959894, -7.0, -7.0, -3.569958818096594, -3.558708570533166, -2.5955312131225274, -3.335818826915165, -7.0, -2.284035741109785, -3.0136022302861525, -3.633670406051444, -7.0, -7.0, -2.7616773079942547, -3.0520202439786086, -7.0, -3.7078085468549555, -3.633670406051444, -3.566319621524811, -7.0, -2.643013773485817, -3.1082266563749283, -3.104145550554008, -1.2929837274684335, -2.776580126292323, -2.777909908625889, -2.550228353055094, -3.538064649949787, -3.5744942682853273, -7.0, -3.7231271587956916, -3.6453240015622934, -2.7281797974498008, -7.0, -3.632558514532672, -3.8009231818132183, -2.9496826907952043, -2.784706424389351, -2.544099194062689, -2.729091124272883, -2.1328286964672105, -3.2716557723522754, -3.599992177584098, -7.0, -2.8662873390841948, -2.8462339910366214, -3.156044098964241, -3.634779458145952, -7.0, -3.6154239528859438, -2.9884952539841994, -2.8617844044915968, -2.0456785207483104, -7.0, -2.3688290269918513, -7.0, -2.851105401197895, -2.6929056434314544, -7.0, -3.4638183615294293, -3.309006939379298, -3.263399331334002, -1.7636775163976688, -7.0, -7.0, -2.101780189542242, -3.715418322595056, -2.6348130216130192, -3.2476050641507705, -2.490106399890128, -2.9168748785386835, -3.016824493667488, -3.520483532740792, -2.4622217777780953, -7.0, -2.6742166859433936, -2.640812580319979, -2.8099763348395044, -7.0, -7.0, -7.0, -1.6561719424802648, -3.266310110427021, -3.365737507725631, -3.5768018958289125, -3.4584363903733517, -3.6224212739756703, -3.076397685429307, -3.074450718954591, -1.270211321237851, -2.8587777373054495, -7.0, -3.1869563354654122, -2.220821020318192, -2.5906609500758826, -3.6085260335771943, -7.0, -2.0966121089273897, -7.0, -2.5966448964610143, -2.85105440671866, -3.550595207489328, -3.1212314551496214, -2.4971271893465334, -3.393107024292132, -2.2852503509444095, -2.1096372294004264, -2.2387795106286505, -3.607562243183588, -4.002468450128332, -7.0, -3.664932433548043, -3.648067129448935, -3.4712183443078723, -1.8390982914222758, -7.0, -3.615634468877416, -2.257964125857119, -3.1831986420297387, -7.0, -3.5553363279952666, -2.9165197457596417, -7.0, -7.0, -7.0, -3.2665844470668635, -2.8523579836678272, -3.237166582685473, -2.7815502284597535, -3.0637085593914173, -3.423737249982329, -7.0, -3.552262522965547, -3.5569052690554477, -3.5798978696031036, -2.0675015484085564, -3.6844563563292083, -3.5154764413823756, -3.55303301620244, -3.585686278452497, -3.317958924700952, -3.1314582601065255, -2.952671385348004, -7.0, -7.0, -2.6635124704151556, -7.0, -7.0, -3.0798141308006843, -3.750354088762708, -2.534581317778785, -7.0, -2.6841105837010906, -2.5677500396977275, -2.756636108245848, -2.5402959357120936, -3.291812687467119, -7.0, -3.544811911757776, -7.0, -3.1103652106913016, -3.580696939712437, -7.0, -1.5575788998694664, -7.0, -4.04538166326508, -7.0, -3.321132199092705, -1.803187021052166, -1.709799782295541, -1.544708382151548, -7.0, -2.0348575451084927, -1.5578078557646042, -2.595496221825574, -2.200779915532511, -2.8724476477890133, -3.375846436309156, -2.5050319474775153, -2.5975855017522047, -3.287241711178348, -7.0, -3.303088010528054, -3.707995746422929, -3.700790221374347, -7.0, -3.39776625612645, -3.5512059437479064, -3.4697729403826645, -2.5631573474130365, -3.0750905299454705, -3.109240968588203, -3.6026025204202563, -2.7317901537745826, -3.029464946638236, -7.0, -3.743979865241843, -2.949070183558962, -3.232487866352986, -7.0, -7.0, -2.8080983884823985, -2.9579662575849297, -7.0, -3.295786940251609, -7.0, -3.3055663135153037, -2.248479278363012, -2.9378312132068283, -3.0751818546186915, -4.414534656088115, -7.0, -3.591621038213319, -3.6050894618815805, -2.869720514922589, -7.0, -3.2665844470668635, -3.721068301797159, -3.6832272060414346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.565611724902059, -2.9882021002587806, -2.7156143780236928, -7.0, -7.0, -7.0, -7.0, -3.6190933306267428, -2.6101276130759956, -7.0, -3.619719265611727, -7.0, -2.1485145179246334, -3.263304600287296, -1.6396649967000325, -1.312142404568052, -7.0, -7.0, -2.522609521607993, -2.758491349630627, -2.6510677301830268, -3.1443666098609677, -3.374588971886516, -3.6321534835106326, -3.5809249756756194, -3.28454352295875, -2.7302101047623504, -3.9357087478426633, -2.7445063432261585, -2.4861417453935593, -3.5241796783007557, -2.0410165097497748, -2.4378562177246685, -2.9641417275269504, -2.5426339390892774, -1.6307465453207721, -2.254366781142282, -7.0, -2.9817053769570374, -2.5118833609788744, -3.580696939712437, -2.7786034050126207, -3.550595207489328, -3.025223915178311, -2.1288931953940935, -7.0, -2.65135257739122, -3.071697945221614, -3.328498786724642, -2.736237098904729, -7.0, -3.7488080049586023, -7.0, -1.741747660192021, -2.8016531253763444, -2.5515371269694365, -1.7366373498507925, -2.7198834733033834, -3.9651546459869254, -7.0, -3.1110607820698206, -2.955126283548938, -3.2959539958685107, -2.8755986287355393, -3.5518158223510157, -7.0, -7.0, -2.797514847073891, -2.9058558202591933, -3.5930644316587173, -2.9120093755869783, -3.055531225050898, -3.104487111312395, -2.4593087037362253, -3.292477593667784, -2.794327147188887, -7.0, -3.6423655808449733, -3.0832039098096162, -1.9549924939289824, -3.6711844175736785, -2.5679637327475477, -4.08464776085473, -7.0, -2.2238026211274917, -3.800870654906812, -3.003077387416016, -7.0, -2.329092647195331, -7.0, -2.3506489672611517, -2.8163833578293587, -2.666205875272384, -2.4597274623087366, -3.558708570533166, -7.0, -3.2714543622113297, -7.0, -3.1351326513767748, -3.144262773761991, -2.57362573693412, -3.590284403718162, -2.1360407426264034, -2.047588868180089, -7.0, -3.025418521390219, -4.095148421072856, -4.337559087628736, -3.1650661783897562, -4.260929583529925, -2.9344984512435675, -3.4254527011208484, -2.592353192288362, -3.084147133154448, -2.8435442119456353, -7.0, -3.4118814755818088, -3.7023600283713543, -4.1079600064071435, -2.980943597662544, -7.0, -2.6274179354754055, -3.13160362896786, -7.0, -3.1969127457115927, -7.0, -4.31423073711276, -3.863303028869424, -2.887582139061224, -3.5974209235343935, -7.0, -4.385829618669783, -4.265831566255261, -7.0, -3.415856350335432, -3.765966424785714, -4.1025794751762215, -4.082048958148108, -7.0, -7.0, -7.0, -7.0, -3.719510824558501, -3.565611724902059, -2.904233438555862, -3.632356046239073, -3.8529676910288186, -2.9272866169481597, -1.8078005551873275, -7.0, -3.6885799830542143, -7.0, -3.099556441287455, -3.4125949311184796, -3.7937903846908188, -4.186532564592397, -3.579014901222905, -3.3852571999019094, -7.0, -3.638631858985767, -2.7564571100024473, -7.0, -3.668572269184558, -7.0, -7.0, -7.0, -3.106861947992472, -3.3129223784024946, -4.709059548622802, -3.5820633629117085, -3.4248272103534214, -7.0, -3.253733976788288, -7.0, -4.711665533165346, -4.177218959332716, -7.0, -7.0, -4.381818771625734, -4.178415740979452, -3.804330289065253, -3.8522359394118872, -3.2098723115450163, -3.4998702905864882, -3.7106937137287193, -2.488964478096017, -7.0, -3.1319823469987957, -3.5232399900485603, -3.2249860256767717, -4.50844698833347, -7.0, -7.0, -3.3386457091490778, -4.057799186029343, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0288404510802023, -2.080167159029276, -2.268367803193454, -3.57541879121436, -3.398634324538392, -3.1438818288549104, -2.4391747398434687, -2.665580991017953, -3.5780658838360915, -2.983776588036885, -7.0, -3.093263058089709, -2.6009728956867484, -3.6097011023793995, -7.0, -2.3265220536355278, -7.0, -3.0419000056568426, -7.0, -3.60400993241223, -2.2639016404506758, -7.0, -3.6200318951262975, -3.213694803261253, -2.328583449714202, -7.0, -3.280968396871078, -7.0, -2.725328138344716, -3.7840668171930565, -2.1077502834521247, -3.3037561196781047, -7.0, -3.768416088216332, -2.2013597061080556, -7.0, -2.3280153540825674, -7.0, -2.718593944732072, -2.485199324904065, -7.0, -7.0, -3.741387992479269, -2.4374707639390873, -2.94272439249383, -3.3009214084695406, -2.779957051246906, -2.8660903354600853, -7.0, -2.06641467461787, -2.0420156273858576, -3.9721565358594937, -7.0, -2.3833498485369895, -2.2952921430163506, -7.0, -2.7690715925317253, -7.0, -7.0, -3.261857385629898, -2.7629285173929854, -2.330203984262001, -2.079919214758588, -3.000805798884526, -2.1625830742133614, -7.0, -7.0, -3.602385590105105, -3.955639653023252, -7.0, -2.718750734739665, -1.9887466584404367, -3.66162340922923, -3.072249897613515, -1.8976748921249955, -1.9865589396383379, -2.9561684304753633, -3.431765702625348, -2.904118345948579, -3.7788744720027396, -3.329194415088451, -2.9546283775072713, -3.187489385327816, -3.584839865239925, -7.0, -7.0, -3.5589484459780394, -7.0, -3.4146224299225225, -3.7763379096201755, -2.546953732587764, -3.296079887636682, -2.933039743665037, -2.636320699245659, -3.4000196350651586, -3.737896578909624, -3.885361220031512, -2.6219177784241787, -7.0, -2.572514158162275, -7.0, -2.550635949970891, -2.7407009689987443, -3.5991732173529125, -7.0, -2.4560979776847325, -2.6853435772341014, -2.6449541282216202, -3.321494866739587, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5724068675580556, -2.672051653937386, -7.0, -3.406540180433955, -7.0, -7.0, -3.5744942682853273, -7.0, -7.0, -7.0, -3.4428715548211977, -7.0, -3.724876364863443, -3.9486085498764365, -7.0, -3.613418945034573, -7.0, -3.114610984232173, -3.6024940688072813, -7.0, -3.584733162833891, -3.6190933306267428, -3.6153186566114788, -7.0, -3.762753564933374, -3.274619619091238, -7.0, -7.0, -3.728597243383432, -7.0, -3.1818435879447726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.344981413927258, -7.0, -7.0, -3.638410998646127, -7.0, -7.0, -7.0, -4.217036258627626, -3.5334161417958905, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0524053421921833, -3.9292656182530656, -7.0, -2.350571033954783, -3.563992649334369, -7.0, -2.4865721505183567, -7.0, -2.6782147827453997, -7.0, -7.0, -3.9673782967941977, -7.0, -7.0, -7.0, -3.2113875529368587, -7.0, -2.8662873390841948, -7.0, -7.0, -7.0, -2.720434958433874, -4.240708335653984, -3.1489109931093564, -7.0, -3.468495024507069, -7.0, -7.0, -7.0, -3.289142835932333, -7.0, -2.62490060220449, -2.360352397078838, -3.1339059874977355, -3.0750600841196736, -2.990092082531457, -7.0, -7.0, -7.0, -2.947311161005215, -2.971739590887778, -7.0, -7.0, -7.0, -7.0, -3.1741567592784814, -3.5593679094633317, -2.8397921844453293, -7.0, -3.0424442461608465, -3.0930713063760633, -3.3145693943004555, -3.2283147918655883, -7.0, -7.0, -4.127923999167784, -7.0, -2.2012533420043217, -7.0, -7.0, -3.6185187633048668, -7.0, -2.889581802149624, -7.0, -2.772566173085639, -2.649821463224565, -2.8914259428479943, -7.0, -3.1161094140633447, -7.0, -3.588745224405397, -3.3264382767957286, -4.0512683188703855, -7.0, -7.0, -7.0, -2.3656581296460253, -7.0, -7.0, -7.0, -7.0, -3.2664668954402414, -7.0, -7.0, -2.626254800537626, -3.105510184769974, -3.02434881738075, -7.0, -2.924882054350042, -3.0693509006842974, -7.0, -3.17376882313665, -2.0349027456652022, -7.0, -3.2522113402363746, -2.503563719643652, -3.082066934285113, -7.0, -3.331427296520743, -7.0, -7.0, -3.4172501991365754, -2.8246630509059116, -7.0, -3.409820451263753, -7.0, -4.69636949601487, -7.0, -7.0, -2.3375500134552123, -7.0, -7.0, -3.274703524516905, -3.575187844927661, -7.0, -3.0958664534785427, -3.3820711007640845, -7.0, -7.0, -7.0, -7.0, -3.0870712059065353, -7.0, -3.7886632131208575, -4.177623061631355, -7.0, -7.0, -7.0, -2.621868384681515, -7.0, -2.4301557119700194, -3.6078837443569896, -3.8744818176994666, -7.0, -7.0, -7.0, -3.597097681104017, -2.7944880466591697, -7.0, -7.0, -7.0, -7.0, -2.8834721588455867, -7.0, -2.9134164500544135, -3.500236474825639, -3.420615770625765, -3.6193542465143764, -3.3951515915045425, -3.2211533219547053, -2.912174564777331, -2.895146189375992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6066102370689712, -7.0, -7.0, -7.0, -7.0, -2.2917739424813983, -2.0188853441603736, -1.7906975879500755, -2.0348575451084927, -7.0, -1.8521110214050922, -7.0, -3.4211101297934343, -3.028571252692538, -3.3818367999983434, -3.7038929536325447, -3.2127201544178425, -7.0, -7.0, -3.9877556167385233, -7.0, -7.0, -7.0, -3.5001335167117813, -3.083860800866573, -2.7327956982893293, -2.6263403673750423, -3.3830969299490943, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203984244420126, -3.467756051244033, -3.052584021782163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6945564538320075, -3.361727836017593, -4.156155260889687, -4.634431923821994, -7.0, -7.0, -7.0, -2.7209857441537393, -3.0916669575956846, -7.0, -7.0, -3.0925452076056064, -7.0, -7.0, -7.0, -3.1316186643491255, -2.8639173769578603, -7.0, -2.823148059810694, -7.0, -2.5272495409101916, -7.0, -7.0, -7.0, -7.0, -3.258876629372131, -2.3944516808262164, -7.0, -2.958802703399502, -7.0, -2.9454685851318194, -3.533327117054424, -2.561459171241916, -1.8657656639681313, -3.11293997608408, -7.0, -3.8541642908673475, -2.7518946880437474, -3.200937507389536, -7.0, -4.115469051738149, -7.0, -7.0, -7.0, -3.547856717375962, -7.0, -3.518908573691414, -2.8723748223537955, -7.0, -7.0, -7.0, -7.0, -3.0437551269686796, -2.6057837394735675, -3.2384224958854797, -7.0, -7.0, -7.0, -7.0, -3.092018470752797, -7.0, -7.0, -2.1409268419924303, -7.0, -3.544564097496043, -3.3763944420372662, -3.4906765986678305, -3.933942602741261, -7.0, -7.0, -7.0, -7.0, -2.887617300335736, -3.1245042248342823, -2.2795148535261855, -2.752706802390036, -3.837840861655523, -3.4324882557705063, -7.0, -7.0, -4.185402415387617, -3.9134959596171237, -7.0, -7.0, -7.0, -7.0, -3.3904935265041733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.761551988564182, -7.0, -3.0090257420869104, -3.391816923613249, -2.651762447380111, -4.560653734255116, -4.099749680848987, -4.5969817431335205, -7.0, -3.064520383377145, -4.4197864562419005, -2.6805297561976316, -7.0, -3.292256071356476, -7.0, -2.8454081396217936, -3.057158750485419, -3.1781852925373903, -1.867839501143476, -7.0, -7.0, -3.5137501500818233, -7.0, -7.0, -3.2650537885040145, -3.7148325124333326, -3.189770956346874, -2.330588455929623, -7.0, -1.0903975088639173, -3.5620115365813385, -3.874307833128039, -3.9869507878585164, -7.0, -7.0, -2.880688571764092, -3.919862253555538, -4.121855182166855, -3.52270499273475, -4.010469569796392, -7.0, -3.5418911250960012, -4.725143591132016, -4.523928468273403, -3.5482553731774353, -4.344451223686138, -3.601199598454282, -3.3133218245947287, -7.0, -7.0, -7.0, -4.787244336213674, -3.8141143561291253, -3.3951515915045425, -4.130044142287605, -7.0, -4.665412118002188, -7.0, -7.0, -3.6656819947685397, -3.8796405572939117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163101715043975, -7.0, -3.621809598806646, -7.0, -4.376220981693863, -3.336133464245632, -2.37927961214755, -7.0, -7.0, -7.0, -4.006871077377176, -4.024977972095624, -3.2870175013221017, -4.4531194977640025, -3.9248194680033985, -3.9883448780958206, -7.0, -4.4491234131845605, -7.0, -7.0, -7.0, -4.3867842398736805, -7.0, -7.0, -3.6330554819280527, -3.7485136257833434, -5.707080254125105, -7.0, -3.273695587930092, -7.0, -3.9176773410199104, -7.0, -5.105641304876784, -3.501333178645566, -4.237166582685473, -7.0, -4.036269495742816, -4.444325902788053, -4.089148851582349, -7.0, -7.0, -7.0, -4.30031281793437, -3.6527020902669305, -7.0, -3.8332795434419458, -4.056456992407894, -7.0, -4.57086192796976, -7.0, -7.0, -4.013953149375142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6028699186636284, -3.4818724103106633, -2.973589623427257, -7.0, -2.8226583460036045, -3.4537959541740304, -2.386704711065075, -3.44216608578472, -7.0, -3.8021577531869615, -7.0, -3.339684409858061, -3.386409778881913, -7.0, -7.0, -2.61687690940715, -3.45484486000851, -3.4292676664331685, -7.0, -7.0, -2.548098346867815, -7.0, -7.0, -2.806179973983887, -3.3121773564397787, -7.0, -4.042772337497674, -7.0, -3.141763230275788, -4.303638768856199, -2.5884514800267557, -4.015010278861907, -7.0, -7.0, -3.49605279796331, -7.0, -3.5644293269979834, -7.0, -7.0, -3.268437552261454, -7.0, -7.0, -7.0, -3.369586890736344, -3.1424676821446043, -7.0, -7.0, -7.0, -7.0, -3.420120848085703, -2.841401187421594, -7.0, -7.0, -3.325515663363148, -7.0, -7.0, -3.3233699788402276, -7.0, -7.0, -7.0, -7.0, -3.015548843110824, -3.259952059922254, -7.0, -2.594760752586463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1517987225928614, -7.0, -3.079904467666721, -7.0, -2.9295992181746016, -3.3890774437923494, -2.8830933585756897, -3.4761688995605318, -2.9613024181586454, -3.792181496149679, -3.335858911319818, -4.061829307294699, -3.7280289544205187, -7.0, -7.0, -7.0, -3.0784568180532927, -3.896673161995069, -2.957128197676813, -7.0, -7.0, -3.3625704305827226, -3.458033192496506, -4.183298321075812, -4.55568681403678, -7.0, -3.24809593109413, -7.0, -2.9265139350708855, -7.0, -7.0, -3.731346975545955, -7.0, -7.0, -7.0, -7.0, -3.6298341709244926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5496162395190853, -3.388988785124714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505421327583281, -7.0, -4.132931749214915, -3.21305266686185, -7.0, -2.94423584379348, -7.0, -7.0, -7.0, -7.0, -4.508704748138777, -7.0, -7.0, -3.614053105987219, -2.9344984512435675, -7.0, -7.0, -7.0, -7.0, -7.0, -3.118677985690463, -7.0, -7.0, -7.0, -7.0, -3.3197304943302246, -7.0, -7.0, -7.0, -3.226471015317139, -3.4868553552769432, -7.0, -7.0, -3.4928302056786884, -7.0, -7.0, -7.0, -3.3355581880658614, -3.2119210843085093, -7.0, -7.0, -7.0, -7.0, -7.0, -2.989227273730537, -3.1252488362158366, -7.0, -2.0043213737826426, -3.2811110868939424, -3.1476763242410986, -7.0, -7.0, -2.615014323889285, -3.003029470553618, -7.0, -3.4773065141793995, -3.1476763242410986, -2.737987326333431, -7.0, -1.8649423566468655, -3.2607866686549762, -2.586774783406332, -2.36707624226875, -7.0, -2.9908935802199035, -2.606560492554639, -3.683928527034064, -7.0, -3.1015752462559334, -3.5793262037552553, -3.4667193716815987, -3.3024030886051277, -7.0, -3.4473131088235682, -7.0, -2.9951962915971793, -2.0464951643347082, -3.1457387839091373, -2.9461573949223725, -2.83803909146875, -3.1962314704428745, -7.0, -3.4295908022233017, -2.562491127177062, -2.4795273244855407, -3.4488608456074408, -3.4507108781469196, -3.3432115901797474, -3.4207806195485655, -3.7274599208579087, -3.1524776333829094, -2.570153612664517, -7.0, -3.619823500457278, -7.0, -3.1486643399822363, -2.7304886350318736, -7.0, -3.159065640479062, -3.750379810251768, -3.3384564936046046, -1.81601260357686, -7.0, -7.0, -3.359835482339888, -7.0, -3.381656482585787, -7.0, -2.740855925756123, -2.944975908412048, -3.3761205256094518, -7.0, -3.062707303658236, -7.0, -3.140540987427616, -2.9283958522567137, -3.4807971572684466, -7.0, -7.0, -7.0, -1.9012766462284751, -7.0, -3.7386220279179425, -7.0, -7.0, -7.0, -2.8424011943457916, -7.0, -1.8614294532301892, -3.3283796034387376, -7.0, -7.0, -2.8676147812238355, -3.2305000118414706, -3.4099331233312946, -7.0, -2.141673694251988, -7.0, -2.66333066849445, -2.2935203938852355, -2.836535091898369, -2.880356199419236, -2.5955810035695044, -3.773127924033335, -2.0589634981318623, -2.573003538429554, -2.511338051049237, -7.0, -7.0, -3.114610984232173, -4.097977065496432, -7.0, -2.946746935033585, -1.8121265910619166, -7.0, -7.0, -2.990802855439509, -3.3629534589442858, -7.0, -7.0, -2.742777484325303, -3.302114376956201, -2.456366033129043, -7.0, -7.0, -3.0159881053841304, -3.391922621374344, -3.367852683427225, -3.2981432216889313, -3.5099414041582264, -7.0, -7.0, -2.5451008497880436, -3.3637999454791094, -2.0254521662538254, -3.3361594264847807, -3.444096866475288, -3.318689269947746, -7.0, -3.426673888021373, -3.95970902424643, -2.622214022966295, -7.0, -7.0, -3.19506899646859, -2.7415455167762097, -7.0, -3.521530341278711, -2.660865478003869, -3.0014091684058766, -2.6961066506690017, -3.263588731459945, -3.523616419054371, -3.401228167498113, -2.6057677461550126, -7.0, -7.0, -7.0, -2.6527296960692475, -7.0, -7.0, -7.0, -1.5221134684622253, -7.0, -7.0, -7.0, -7.0, -2.047889844571703, -2.135291704475752, -1.4795876071615262, -1.5578078557646042, -1.8521110214050922, -7.0, -3.2119210843085093, -2.8431081419996067, -3.174786417367337, -7.0, -2.992847954780297, -2.6953065224318027, -7.0, -7.0, -7.0, -3.256837965904041, -7.0, -2.65359838184329, -4.130783914588957, -7.0, -2.318957251879195, -1.7804402596415618, -7.0, -2.3300446322458757, -3.400537989391946, -2.9001849963485364, -7.0, -7.0, -3.3068537486930083, -3.0055915816134133, -3.0972077128816373, -7.0, -2.8380090624639394, -2.8981764834976764, -3.331832044436249, -7.0, -2.788521887222473, -7.0, -7.0, -2.385606273598312, -2.139798385019995, -3.226628542211219, -4.299333774213371, -7.0, -2.5356557307896432, -3.1031192535457137, -2.6251654069508215, -7.0, -7.0, -2.3688677255422803, -3.2214142378423385, -7.0, -3.3049211619008916, -7.0, -3.344195715871435, -2.762115641442657, -3.3106933123433606, -3.038620161949703, -7.0, -2.5810130261892485, -7.0, -7.0, -7.0, -7.0, -2.948738890358178, -2.2346859743215286, -7.0, -7.0, -3.8095597146352675, -3.0670708560453703, -3.10698371567979, -1.9956351945975501, -1.3340375609112185, -3.031408464251624, -7.0, -3.306561484735791, -2.9639058261187046, -2.820687873247529, -3.4308809464528913, -3.578295305120826, -7.0, -7.0, -3.373463721632369, -2.9439888750737717, -7.0, -2.9520655901850503, -2.7918819541323385, -3.9316612396844812, -2.9033613362553186, -3.121723945637367, -7.0, -3.009309224134771, -2.348694190265541, -2.679629753219008, -7.0, -7.0, -3.4893959217271293, -7.0, -2.287670025764879, -7.0, -7.0, -1.8867109891534184, -7.0, -3.1618669046240195, -2.7302437827494095, -2.8571673823501493, -7.0, -7.0, -3.622006673006805, -7.0, -2.319826481618029, -2.9611837098124356, -2.7000853282011494, -2.1294254614235526, -2.7794160989470678, -2.846168355771784, -2.595496221825574, -7.0, -7.0, -3.884866136291988, -3.6554745946527163, -3.3165993020938607, -7.0, -7.0, -2.960530233278372, -3.28390399699171, -7.0, -3.415140352195873, -3.6232492903979003, -3.06595298031387, -2.7248607780823373, -7.0, -7.0, -2.7237839369653294, -3.1609184995397808, -3.762453482363547, -2.341269613058443, -4.088561311791215, -3.1359691202060493, -4.399095430831928, -7.0, -2.745966567012242, -3.769975996724676, -3.10151795524841, -7.0, -2.846491747873616, -7.0, -2.118664941398519, -3.1875771190550872, -2.632204133050827, -2.455196373165623, -3.0269416279590295, -7.0, -7.0, -3.068000226145172, -3.1151110355043476, -3.4307198878632823, -2.738275942048923, -7.0, -2.350719366024341, -3.307282047033346, -7.0, -3.408335380863189, -4.306503658116052, -7.0, -7.0, -4.726091190633324, -3.225343748174189, -3.6612446089593336, -3.2856215965486952, -3.181367126589355, -3.7441755903710754, -7.0, -7.0, -4.431033896809084, -4.70371686421357, -3.3685165806453545, -7.0, -3.4838724542226736, -3.3394412482752034, -7.0, -3.8680367455497753, -7.0, -4.913699084613634, -4.309906835568681, -3.375712374112721, -7.0, -7.0, -4.673361938712162, -7.0, -7.0, -3.4431989589824896, -4.204554060135243, -7.0, -3.8782727899035083, -7.0, -7.0, -7.0, -3.961373627594801, -3.999550997010515, -4.2280922391569815, -3.3999992948322952, -2.9692605575027797, -4.685006846094914, -3.390489844778819, -1.9821283495107576, -7.0, -7.0, -7.0, -3.4833895781053097, -3.7575858013465804, -7.0, -7.0, -3.7940788875341207, -3.9167083091985275, -7.0, -3.9849471533672807, -7.0, -7.0, -7.0, -4.4017623021368255, -7.0, -7.0, -3.7198064999622655, -3.818003957176613, -7.0, -7.0, -2.8112397727532894, -7.0, -3.758963906261545, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354089222152247, -7.0, -4.794181213459668, -7.0, -3.7777650391693047, -3.6018427897820984, -4.128824522553188, -3.093960178079215, -2.950202531637585, -3.4888423524253844, -4.00935173048672, -3.7185847200274362, -4.65170628080527, -7.0, -7.0, -3.925920296643791, -3.8523783210431803, -7.0, -7.0, -7.0, -7.0, -7.0, -2.439854098108879, -3.2884728005997825, -3.0806780138224896, -7.0, -2.846584502898046, -3.6740523984521385, -2.76063785386249, -3.0814673283885368, -7.0, -3.8570911546735136, -7.0, -3.1449124695489097, -3.75785134368558, -7.0, -7.0, -2.571563266370119, -7.0, -3.4933883352101596, -7.0, -7.0, -2.333015212300375, -7.0, -3.1266183755229515, -3.2328691051326137, -2.9165416759478404, -7.0, -4.075181854618692, -7.0, -2.649918718735419, -4.136657161873879, -2.480284740313284, -3.8959816302471357, -7.0, -7.0, -2.779341797976024, -3.1476763242410986, -3.6554265877459184, -7.0, -3.509740015570382, -2.742814875476512, -7.0, -3.3529539117100877, -7.0, -3.504742636271688, -3.204662511748219, -3.399846712712922, -3.524266268766979, -7.0, -3.4149733479708178, -2.842359573330675, -2.5882910298599247, -4.2372923375674585, -7.0, -3.229169702539101, -2.9894498176666917, -7.0, -3.0464394176583074, -7.0, -7.0, -3.073305849619936, -3.271609301378832, -2.709304978291998, -2.8065675639086787, -3.140586598610774, -2.5060989599284405, -7.0, -7.0, -2.7970943426302544, -7.0, -3.080987046910887, -3.575303333422399, -3.0548865225351345, -7.0, -3.313234291694724, -2.745855195173729, -2.565109599080669, -2.914116391219987, -2.476341051411325, -3.015858520286947, -2.7507012003958686, -3.5471591213274176, -3.4802944600030066, -3.4906255716095282, -7.0, -3.492061604512599, -7.0, -3.0273496077747564, -7.0, -3.7871238189802026, -3.651762447380111, -3.13956426617585, -3.647969458362972, -3.2939270038674855, -2.7919244549379605, -4.206987694756409, -4.56589502203011, -3.189209489582306, -3.6432552250247716, -7.0, -7.0, -7.0, -2.933053210369387, -3.192846115188842, -3.8101652845431495, -7.0, -3.2303211689190787, -3.159115821827769, -3.2458744291694313, -2.8291428932285543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2978152046930482, -2.6141059109580307, -2.8578147779710066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4176377396522297, -7.0, -3.0988167170489413, -7.0, -7.0, -4.520064101808785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.485437481076301, -7.0, -7.0, -7.0, -3.2132520521963968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.845276037295602, -3.7845459740545224, -7.0, -3.185258765296585, -2.627050579278049, -2.9335632068213493, -7.0, -7.0, -7.0, -3.172310968521954, -7.0, -2.5759956202032677, -3.9352048674265814, -3.1078880251827985, -3.4425581544959227, -3.452085116608264, -7.0, -3.2195845262142546, -3.1245042248342823, -2.570104922212994, -2.2081725266671217, -7.0, -4.093024567839438, -7.0, -7.0, -7.0, -7.0, -3.4638929889859074, -7.0, -7.0, -7.0, -3.025442414387701, -7.0, -3.9399932234951613, -7.0, -7.0, -3.485437481076301, -7.0, -3.4218506150229584, -7.0, -3.0130479961152314, -7.0, -2.230252363564598, -3.424718337331567, -2.943845409406475, -7.0, -2.870598962314376, -3.852845818014997, -7.0, -2.4424797690644486, -2.1605285538517576, -7.0, -7.0, -7.0, -7.0, -3.2780673308886628, -7.0, -3.422724109285819, -7.0, -7.0, -3.233884108765886, -7.0, -3.8000981801747757, -3.71566914240099, -7.0, -7.0, -4.225225258296776, -7.0, -7.0, -7.0, -7.0, -2.9706567545749585, -3.4720246977002813, -3.2227164711475833, -7.0, -7.0, -7.0, -2.824884805866878, -7.0, -2.9587231112647787, -7.0, -3.3346903802212804, -3.338257230246256, -3.152135396861876, -2.8506462351830666, -7.0, -7.0, -3.429752280002408, -7.0, -3.675778341674085, -2.887617300335736, -3.5745521086639047, -7.0, -3.131297796597623, -7.0, -3.7122707911929065, -7.0, -7.0, -3.0770043267933502, -3.111262513659065, -3.3147622932679495, -7.0, -7.0, -7.0, -7.0, -3.0991279277264674, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313234291694724, -3.596679548776454, -3.8069634097426848, -7.0, -2.9385753148702514, -7.0, -4.219724204427858, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1722901065317064, -7.0, -7.0, -7.0, -3.9073038488339695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3194530784907674, -3.5787537844264343, -7.0, -7.0, -3.6270584640009895, -3.1389339402569236, -7.0, -3.358886204405869, -7.0, -7.0, -7.0, -3.2105860249051563, -7.0, -3.5985230166624986, -7.0, -7.0, -3.449478399187365, -3.37984917876283, -3.1684974835230326, -3.081527326244805, -3.412460547429961, -7.0, -3.214711421005384, -7.0, -3.625415352154408, -3.415140352195873, -7.0, -3.737582525031894, -3.2278867046136734, -7.0, -7.0, -7.0, -7.0, -3.1986570869544226, -7.0, -2.925124491288567, -7.0, -3.999456792322048, -2.5337085232398597, -3.0105119627372137, -3.131860599375211, -7.0, -3.45178643552429, -2.595496221825574, -7.0, -3.2119210843085093, -7.0, -2.534660575828444, -2.8752542402808574, -2.7993405494535817, -3.4126285205443754, -7.0, -3.742568034366142, -7.0, -3.0892425720555208, -7.0, -7.0, -7.0, -3.805296916157985, -7.0, -3.343802333161655, -7.0, -7.0, -7.0, -7.0, -3.8082109729242224, -7.0, -7.0, -2.674204809221172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1963604423536847, -4.159687479754789, -3.9654494961154136, -7.0, -7.0, -2.9537596917332287, -3.347720217034038, -7.0, -3.1670217957902564, -7.0, -3.1126050015345745, -7.0, -7.0, -7.0, -7.0, -2.35052490357268, -7.0, -3.161368002234975, -7.0, -4.469885805962796, -7.0, -7.0, -7.0, -2.716281648342755, -3.2860071220794747, -3.2706788361447066, -7.0, -2.9858753573083936, -7.0, -7.0, -3.841859809775061, -3.2692209815300104, -7.0, -7.0, -7.0, -3.010703688640537, -7.0, -3.590891349601164, -7.0, -3.4172058867643305, -7.0, -7.0, -7.0, -3.4276078113473605, -3.805908455074197, -3.398981066658131, -3.182414652434554, -3.591287265058499, -3.392696953259666, -3.2812606870550125, -3.1646502159342966, -7.0, -3.274388795550379, -3.554125581513013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0683250363930514, -3.054421524462536, -3.0812272540419574, -3.3972445810103866, -4.020756379707693, -3.9398186628213794, -7.0, -3.828359093933543, -7.0, -7.0, -2.3954643446238713, -3.444513206334043, -3.6955692270361853, -3.3104808914626753, -7.0, -7.0, -7.0, -7.0, -3.055168111394058, -2.2716832301358245, -7.0, -7.0, -7.0, -3.3409065871395938, -2.6587916444639728, -3.2278867046136734, -7.0, -2.839352328895421, -7.0, -3.1742052269401473, -7.0, -7.0, -7.0, -7.0, -3.4020033090697046, -3.2826221128780624, -4.38524868240322, -3.70372115992702, -4.203672752553866, -7.0, -3.004689784223429, -4.177206582920812, -3.534660575828444, -7.0, -2.411409240981208, -7.0, -3.3352572564345317, -3.843295082736507, -7.0, -3.174931593528443, -7.0, -7.0, -3.529045170765769, -7.0, -7.0, -7.0, -3.7245216271185626, -7.0, -2.5489232446175647, -7.0, -7.0, -4.127720152892319, -7.0, -3.9895610468853566, -7.0, -7.0, -7.0, -3.624797578960761, -2.4151491401132317, -4.04017834859167, -3.7142878374051356, -7.0, -2.752982303235319, -4.2489454550567345, -4.302569010936054, -4.114010161703462, -7.0, -3.9033975033507677, -4.626078479699109, -7.0, -7.0, -7.0, -4.486407452843279, -4.293914741031102, -2.8257880038594525, -3.656545368541022, -7.0, -4.365459904598516, -3.607696230930896, -7.0, -3.780511728833051, -7.0, -4.384111374953769, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1648433909076195, -4.208710019906401, -3.844953251054122, -7.0, -3.900093901543398, -4.592217482164138, -3.9328287669008466, -7.0, -7.0, -7.0, -3.2830045605653697, -4.0297489185668365, -7.0, -4.153845340080965, -3.665646646127807, -4.387380926770457, -7.0, -4.450926202822742, -3.3981136917305026, -7.0, -3.5499836111596887, -4.3888646325755944, -7.0, -7.0, -4.518351597460188, -3.703694399052745, -4.707164645304338, -7.0, -3.4588643783615183, -7.0, -4.056566617596654, -7.0, -7.0, -3.6303261548039467, -7.0, -7.0, -3.862469297548378, -3.843995394703985, -4.186899856567887, -7.0, -7.0, -3.5597869682005565, -4.204027685271576, -3.3231007756543756, -7.0, -3.743646929950466, -4.115015832022429, -3.1750283506819907, -3.8050598346304128, -7.0, -7.0, -4.015181557509164, -4.013237602964741, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4814856258274136, -2.3183416396707175, -2.864511081058392, -7.0, -7.0, -4.058312121108386, -7.0, -3.1588146467242266, -7.0, -7.0, -7.0, -3.761736537321043, -3.220456778931451, -3.265525335219074, -7.0, -7.0, -7.0, -3.438621448045396, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1480882706622184, -7.0, -4.047352760753935, -7.0, -7.0, -4.605951157564873, -4.097528008441893, -3.112150977941765, -7.0, -7.0, -2.8314126702682967, -7.0, -3.100485422642873, -7.0, -3.3972445810103866, -3.191893281428276, -7.0, -7.0, -7.0, -3.390758528738717, -3.4528593357958526, -7.0, -7.0, -2.7371926427047373, -7.0, -2.738780558484369, -3.5462135278186464, -7.0, -7.0, -3.035929789456723, -3.1405080430381793, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1760912590556813, -3.184131141132529, -2.9722028383790646, -7.0, -7.0, -7.0, -7.0, -3.249198357391113, -3.83257277484618, -7.0, -3.1791207296092994, -3.2559355042329616, -7.0, -7.0, -3.0045670154644757, -2.768648099163793, -3.7005306569785916, -7.0, -3.2442977420825336, -3.577721524509021, -7.0, -3.35869609957381, -3.366945663852573, -3.7374312005145827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3057811512549824, -7.0, -3.7622032550681346, -7.0, -7.0, -4.55709797835226, -3.736555847162636, -3.262213705476417, -7.0, -2.9461246192171453, -7.0, -3.244689360492884, -3.4394905903896835, -7.0, -7.0, -3.1240148788874076, -7.0, -4.10907208097888, -3.2938043599193367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4008832155483626, -7.0, -3.823213313282668, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.510276844417355, -7.0, -7.0, -3.6262376851469007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.398981066658131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.677454862198223, -3.1072099696478683, -2.946943270697825, -3.3126004392612596, -3.928896920921119, -7.0, -7.0, -7.0, -3.3807279514476365, -2.961720762515049, -7.0, -3.3230457354817013, -7.0, -3.2352758766870524, -7.0, -2.9284717181809006, -3.3443922736851106, -7.0, -3.0619799470748785, -3.382543387661794, -7.0, -7.0, -7.0, -2.8076703012304836, -3.0998532198843813, -7.0, -3.550135134309459, -2.7596678446896306, -3.227372442289636, -7.0, -2.9943171526696366, -2.5921767573958667, -7.0, -2.000952284542136, -2.9028184680822537, -3.0560150335589764, -7.0, -3.428608221033195, -3.245018870737753, -7.0, -3.517195897949974, -3.0829647937777516, -2.786199135510441, -3.2780673308886628, -7.0, -7.0, -2.91399035898314, -7.0, -2.7310901918207264, -3.2919235758838847, -2.919648531795087, -3.2643455070500926, -7.0, -3.037625669914719, -3.2895889525425965, -2.744097310904046, -3.362670929725667, -2.8870543780509568, -3.229937685907934, -3.3281756614383227, -3.6842167951388807, -2.6807514900992335, -7.0, -7.0, -3.0860037056183818, -3.2008504980910777, -2.583198773968623, -2.409208292317029, -7.0, -7.0, -4.049857360679732, -7.0, -3.532117116248804, -7.0, -2.662521737910115, -2.5549936257149755, -3.504742636271688, -3.279210512601395, -7.0, -7.0, -7.0, -3.628491104967123, -3.063520999689991, -3.4718781993072905, -7.0, -2.955886190732576, -2.8157674379896123, -2.949690192923948, -3.218010042984363, -7.0, -7.0, -2.8627275283179747, -2.849910558301496, -3.219060332448861, -7.0, -3.1829279692369927, -2.6410773133253747, -7.0, -7.0, -2.5153356074766453, -2.909020854211156, -7.0, -3.1172712956557644, -3.7328760413627067, -3.318810874835571, -7.0, -7.0, -7.0, -3.4122925093230463, -2.740499994105537, -7.0, -7.0, -2.91539983521227, -2.88752353061025, -3.433209608771474, -2.756445920162273, -3.0906378232707343, -3.300250561719041, -7.0, -3.3040055534272743, -7.0, -4.044618145823885, -3.389343311252078, -2.893983567211847, -3.714078164981856, -7.0, -7.0, -2.7782959910888336, -3.0110415256389502, -7.0, -7.0, -3.434107398431057, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4791210793518808, -3.113140836867081, -3.0729565042610507, -3.173259130501515, -7.0, -7.0, -7.0, -3.2564772062416765, -7.0, -7.0, -3.894260664446988, -7.0, -7.0, -7.0, -3.476324317420228, -7.0, -7.0, -7.0, -2.514547752660286, -3.231979026831504, -7.0, -2.1654473879113305, -3.5601458398490475, -2.6990940707507756, -7.0, -2.8580356448150805, -3.1509098737011216, -2.7004873811595234, -3.381856660898393, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2581581933407944, -7.0, -2.7726883546821415, -7.0, -3.7033558725100733, -3.2054750367408906, -2.901390202114049, -2.815259036703932, -7.0, -2.991521413671849, -2.200779915532511, -3.4211101297934343, -2.8431081419996067, -2.534660575828444, -7.0, -1.9233869609443797, -1.5603052432209612, -2.689873663917267, -3.296884475538547, -2.9144187194479314, -7.0, -3.400753787896711, -2.587570666364193, -3.886735064575406, -7.0, -3.0342941524891125, -7.0, -2.7206680684158506, -7.0, -2.5947081713790734, -3.270911639410481, -3.0015173768235046, -2.314393957221963, -2.377228170976555, -7.0, -3.2489536154957075, -4.076440177918153, -3.2176944602053785, -7.0, -7.0, -7.0, -7.0, -2.6384892569546374, -7.0, -7.0, -2.8333596367430127, -2.9672670915597856, -3.217220655644519, -3.01970958901189, -4.041749550402577, -7.0, -2.677378796959058, -2.704579449696299, -3.390758528738717, -7.0, -7.0, -2.8138477542288545, -3.45117215751254, -3.446847710155809, -7.0, -7.0, -7.0, -3.258397804095509, -7.0, -7.0, -3.1577588860468637, -3.6257483888188187, -7.0, -7.0, -7.0, -7.0, -3.3352572564345317, -7.0, -7.0, -7.0, -2.9951962915971793, -3.4769764657595275, -3.8561244442423, -3.1855421548543754, -2.763877031495655, -7.0, -7.0, -2.831989684404655, -7.0, -3.4339543652562603, -3.0392157659039505, -3.7203247174174416, -7.0, -7.0, -7.0, -3.193641308090492, -2.9754974565302335, -3.3119233087683617, -3.3237332367838985, -3.60400993241223, -2.584654239988151, -3.3310221710418286, -2.9271136119337604, -3.4087486061842442, -2.558053690567051, -2.402089350572097, -7.0, -7.0, -2.933824603968112, -7.0, -2.97297382115194, -7.0, -7.0, -3.0277119350306485, -3.3981136917305026, -2.7393462671509194, -2.8328281295393536, -3.9049636245067205, -2.996219709466273, -7.0, -3.0793940833377964, -3.2216749970707688, -2.7456602257060756, -2.91916529134874, -2.151267675330649, -2.9265996539070276, -2.5542872095319615, -3.3819569700273067, -3.485153349903652, -2.8039445940719196, -7.0, -3.965719614031156, -3.454285758836911, -7.0, -7.0, -3.1784013415337555, -3.355962079458681, -3.7214808547700495, -2.1012887156115734, -3.321184027302314, -3.266231696689893, -7.0, -7.0, -7.0, -2.8829512232506107, -3.3322364154914434, -2.2280702222508446, -3.7227161674884948, -2.328583449714202, -4.018605404625595, -2.974545805884931, -4.533510927304131, -7.0, -2.9605896808839542, -3.216611188785647, -3.071513805095089, -2.8744818176994666, -1.0824788661576048, -7.0, -2.452169918535435, -2.0368130875534725, -3.02626080875407, -2.359021942641668, -7.0, -7.0, -7.0, -2.9621324692982354, -7.0, -3.3404441148401185, -3.7431176252147416, -7.0, -2.5426135630696667, -7.0, -7.0, -4.607379953483188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8245596945739138, -4.409510452269316, -7.0, -7.0, -4.327440676242755, -4.7279883338825, -7.0, -7.0, -7.0, -4.683731278618886, -4.627268539143364, -7.0, -4.335197045077561, -7.0, -5.389932955923036, -7.0, -4.068767006668941, -4.141136090120739, -7.0, -4.367626106062465, -4.216086692421913, -7.0, -4.180204752401327, -7.0, -4.687234575674327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7223665188137702, -2.757206173278786, -4.680444300076152, -4.1670698345582835, -3.4671145890738178, -2.9720484774455382, -4.04958624131185, -7.0, -3.212443912811824, -3.56177695739487, -3.3244882333076564, -7.0, -3.8886567869289896, -3.5763324887711336, -7.0, -3.0558062980983522, -3.587542601193619, -7.0, -3.3877456596088638, -3.614633607841792, -7.0, -7.0, -4.093356010668287, -3.5207778508255867, -5.230253018905105, -7.0, -3.299797748122384, -7.0, -3.960741829684198, -7.0, -5.407268502868533, -7.0, -3.9447786811235073, -7.0, -4.344254692556935, -4.4497405937792855, -4.489592899821886, -7.0, -3.3971948649686743, -3.3972445810103866, -3.6253503647640803, -2.933569361832112, -2.2534591643398376, -3.357612376480327, -4.262265941146297, -2.7186861810033975, -3.6774341478786607, -7.0, -3.3991543339582164, -4.017607147477976, -3.0396645412571153, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3085644135612386, -2.4852050239452272, -2.781516028004414, -7.0, -7.0, -3.284167445275132, -7.0, -3.192428055331207, -2.7745169657285493, -3.046625212091902, -7.0, -3.2022566678949334, -2.674610658476574, -3.3170181010481117, -7.0, -7.0, -3.2037126406077068, -3.4565937502444077, -7.0, -7.0, -3.5499224041295117, -7.0, -7.0, -3.163310488963686, -2.3665704006094646, -7.0, -3.755188585608325, -7.0, -7.0, -7.0, -3.554090939110258, -4.795664553841684, -7.0, -7.0, -2.5719774398876987, -7.0, -2.8246680920490563, -7.0, -2.8328281295393536, -2.651808555723068, -7.0, -7.0, -7.0, -2.426998958756537, -7.0, -7.0, -3.4530123911214554, -2.906335041805091, -7.0, -2.5176356898679657, -3.1292869842179925, -7.0, -7.0, -2.814913181275074, -2.6858412219337957, -7.0, -4.17897694729317, -7.0, -7.0, -7.0, -2.7302437827494095, -2.8785334793494717, -2.3670268684921036, -3.7014816356209272, -7.0, -7.0, -7.0, -2.8245596945739138, -3.545987102271373, -7.0, -2.8125122842899826, -2.7916321778679727, -7.0, -7.0, -2.1595671932336202, -2.877083256650651, -2.3742482947379293, -3.23159700556491, -2.619072860004698, -3.000867721531227, -2.451319129142515, -3.400710636773231, -3.074121305906298, -7.0, -7.0, -7.0, -2.909556029241175, -7.0, -7.0, -7.0, -2.8750612633917, -7.0, -3.6981254114721787, -7.0, -3.7158919717962857, -4.258828770593979, -7.0, -3.5901728315963144, -7.0, -2.4575791469957626, -7.0, -2.8947906150702862, -2.235222282297123, -7.0, -7.0, -3.4616485680634552, -2.529467020708508, -3.112370365525832, -2.864313269858478, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2405492482826, -3.5704845630444004, -3.446847710155809, -2.374889282075564, -3.2931414834509307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4391747398434687, -4.143951116423963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.212320803141976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1360860973840974, -7.0, -7.0, -7.0, -3.0346284566253203, -3.030194785356751, -7.0, -7.0, -2.526708418493159, -7.0, -7.0, -7.0, -4.030235296012245, -3.765072201102792, -3.030194785356751, -7.0, -3.61084640142234, -3.2282976764748628, -7.0, -3.2054750367408906, -7.0, -2.607812320217054, -7.0, -3.350926073869093, -7.0, -7.0, -3.7223047868743278, -3.543023089872846, -7.0, -7.0, -7.0, -3.4345689040341987, -3.0038911662369103, -7.0, -3.8281617011169873, -3.256958152560932, -7.0, -7.0, -7.0, -3.120738405542943, -3.1212314551496214, -2.6108966425304647, -7.0, -3.163757523981956, -7.0, -3.6380303846709308, -7.0, -7.0, -2.968015713993642, -3.284205067701794, -3.7005306569785916, -7.0, -3.2543063323312857, -7.0, -7.0, -3.3787611753163733, -2.885462569191012, -7.0, -3.091968272003171, -2.881004030556986, -3.1720188094245563, -7.0, -3.0537185238968583, -1.8839194063414246, -7.0, -7.0, -7.0, -2.910624404889201, -7.0, -3.3809043531298437, -7.0, -7.0, -3.49996186559619, -3.037027879755775, -2.9353632928474607, -2.410821614807109, -7.0, -2.9190780923760737, -3.8969442305579918, -7.0, -3.161966616364075, -7.0, -3.1290450598879582, -3.911743377855932, -7.0, -3.1470576710283598, -7.0, -3.5332635167787148, -7.0, -7.0, -7.0, -7.0, -7.0, -3.374340940274877, -2.8328281295393536, -3.141802396482416, -7.0, -7.0, -7.0, -3.384353414137506, -3.4840149626675627, -3.6505988981726567, -7.0, -3.4697925712863382, -7.0, -7.0, -7.0, -3.001214325286179, -7.0, -3.0033168924581544, -3.326949994165999, -3.2133406385265157, -3.3100557377508917, -7.0, -3.1277525158329733, -2.9874428049358013, -7.0, -3.0732643596112506, -7.0, -7.0, -2.7467898321526123, -2.573715302284969, -3.3912880485952974, -7.0, -2.9117461786806595, -3.9810858627695267, -7.0, -7.0, -3.2043913319193, -4.218557385685178, -7.0, -7.0, -3.670060217473134, -7.0, -7.0, -3.711174300366762, -3.5575072019056577, -7.0, -7.0, -4.379686151906955, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5769936457909233, -3.476759191770886, -3.571038826438266, -3.436639631692661, -7.0, -3.914290255665949, -7.0, -2.81424759573192, -3.0034605321095067, -4.079759919660093, -3.564547711755948, -7.0, -2.6541765418779604, -2.920123326290724, -3.4032553742996785, -7.0, -7.0, -7.0, -2.62797998982998, -7.0, -7.0, -2.5177612629444233, -7.0, -2.1951710924633283, -3.3951515915045425, -2.706877733654718, -2.5880848733346493, -2.701855692573507, -3.427706525856685, -7.0, -7.0, -7.0, -2.7528164311882715, -2.660549282517093, -7.0, -7.0, -2.6519076720869994, -3.137986732723532, -4.294686624279444, -7.0, -7.0, -3.0234697737110188, -7.0, -7.0, -2.8724476477890133, -3.028571252692538, -3.174786417367337, -2.8752542402808574, -1.9233869609443797, -7.0, -1.929222367900617, -3.2133406385265157, -7.0, -2.5727886503366233, -7.0, -7.0, -2.9388531566569034, -3.655330558009341, -7.0, -3.25170772980846, -3.0265332645232967, -2.760559549696057, -2.888179493918325, -2.575187844927661, -7.0, -3.1789769472931693, -2.508494279379125, -2.9792447784093805, -7.0, -7.0, -7.0, -3.190611797813605, -7.0, -7.0, -7.0, -7.0, -7.0, -2.862429556106009, -3.0689276116820716, -2.8884603180353863, -3.244771761495295, -3.1710435238543386, -3.6743405324046687, -4.333255779961068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1405080430381793, -7.0, -3.361538971269279, -7.0, -7.0, -3.0806264869218056, -7.0, -7.0, -7.0, -2.898542359241223, -3.904223594068507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.889941665019464, -2.7948364578145615, -7.0, -3.5546102852261643, -7.0, -7.0, -7.0, -7.0, -7.0, -3.696768142830307, -7.0, -4.2391743041780785, -3.2533380053261065, -7.0, -7.0, -3.3196472881834227, -3.4862178846679726, -3.0858700833983947, -3.065878352857392, -3.5761685196078083, -2.8651039746411278, -7.0, -3.0770043267933502, -2.7113853790984517, -2.638863487466293, -3.042837926032406, -7.0, -7.0, -3.016824493667488, -3.118264726089479, -3.064832219738574, -3.024485667699167, -7.0, -2.9586594270529334, -7.0, -2.92272545799326, -3.3481100684802376, -4.531845996169773, -2.811110768005006, -2.6134894531087443, -3.0950167110880895, -3.0670708560453703, -3.239049093140191, -2.5711262770843115, -2.191381141649701, -2.8074899276501095, -2.6263403673750423, -3.3508938095043144, -3.4077307280263356, -3.1212314551496214, -7.0, -4.652704574860998, -3.303088010528054, -7.0, -7.0, -7.0, -3.3229081045244717, -7.0, -7.0, -3.203032887014711, -3.026805549473848, -7.0, -3.4348881208673157, -3.1550322287909704, -2.468580508663076, -3.2174839442139063, -2.7993405494535817, -7.0, -7.0, -4.015629159583489, -3.1935767529834385, -4.495431586724228, -7.0, -3.23140586884273, -3.515844878746437, -3.039744506778152, -3.000434077479319, -1.9474337218870508, -7.0, -7.0, -2.7457252252544877, -2.86562209338572, -2.5303598067696527, -7.0, -7.0, -7.0, -7.0, -3.2052043639481447, -3.2281436075977417, -3.099507993727965, -7.0, -2.652340368851867, -7.0, -3.0330214446829107, -7.0, -7.0, -7.0, -7.0, -4.7178119168765855, -7.0, -7.0, -4.296325079116333, -4.281737671706917, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5881932465586495, -7.0, -7.0, -4.925745138429951, -7.0, -7.0, -7.0, -5.389049074987845, -7.0, -4.5397283057269675, -4.125188384168597, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9108377649926833, -7.0, -7.0, -4.620437977338462, -2.9523080096621253, -4.675897435644324, -4.369364308781235, -3.6179434348289727, -7.0, -3.562530768862261, -7.0, -4.032827699694245, -3.173186268412274, -3.5711262770843115, -4.450818553829668, -3.9241147494121003, -3.907805343672493, -7.0, -4.446801142847091, -3.859738566197147, -7.0, -3.2320426643848315, -7.0, -7.0, -7.0, -4.517178297006411, -4.210012799175211, -5.405920656239976, -7.0, -3.4382258076045296, -7.0, -4.958449202872238, -7.0, -5.105385839530771, -7.0, -7.0, -7.0, -4.334333097036555, -7.0, -7.0, -7.0, -3.7527908536104846, -7.0, -3.9984228221379965, -3.8937478954738043, -2.9222062774390163, -3.8325433011792596, -7.0, -3.3246939138617746, -4.06991723951933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8757555792580543, -2.8568798705623637, -3.2973500894444876, -7.0, -7.0, -3.877083256650651, -7.0, -2.940184328524863, -7.0, -3.189279712637177, -7.0, -3.9562576411013985, -7.0, -7.0, -7.0, -4.145755623637207, -3.4313637641589874, -7.0, -7.0, -7.0, -3.216957207361097, -7.0, -7.0, -7.0, -3.2960066693136723, -7.0, -7.0, -7.0, -7.0, -7.0, -3.774304893442617, -4.792181496149679, -7.0, -7.0, -3.0626289832522775, -7.0, -2.7669083343103593, -7.0, -3.3481100684802376, -3.3619166186686433, -7.0, -7.0, -7.0, -3.0394141191761372, -7.0, -7.0, -7.0, -7.0, -7.0, -3.394626764272209, -4.012373167222489, -7.0, -7.0, -3.1335389083702174, -3.111598524880394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3939396432145785, -3.2416709737841294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.841984804590114, -7.0, -7.0, -2.8784579615212427, -3.221193473064788, -2.897718704935313, -7.0, -3.318021573870186, -3.068309574745689, -7.0, -7.0, -4.056142262059052, -7.0, -7.0, -3.2895889525425965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.758848836937695, -3.4347285417797577, -3.8779181894528207, -3.951738109097343, -7.0, -3.229297794114105, -7.0, -2.5978779313445366, -7.0, -3.2221092481637466, -3.0194486374936367, -7.0, -7.0, -7.0, -2.9731278535996988, -3.706495885648506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.364113040786379, -7.0, -3.416141031168329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.904539736714001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1866738674997452, -2.8180608567577408, -3.368100851709351, -3.188647295999717, -3.2615007731982804, -3.8090638646411574, -7.0, -7.0, -7.0, -7.0, -3.332211153328047, -3.0437551269686796, -2.971739590887778, -7.0, -7.0, -7.0, -3.511157339503544, -7.0, -7.0, -3.7440581658788354, -3.535290635171898, -7.0, -7.0, -7.0, -3.1744959193752993, -3.0586157970105616, -7.0, -4.02608946331455, -3.3176455432211585, -7.0, -7.0, -7.0, -7.0, -7.0, -3.597804842404293, -7.0, -3.5036545192429593, -7.0, -3.99801010198535, -2.8830933585756897, -2.775974331129369, -7.0, -3.0400086360135417, -2.877289054162867, -7.0, -7.0, -7.0, -2.8717674683517753, -7.0, -2.6058382107163998, -2.964377500867108, -3.0472748673841794, -2.737681850846472, -7.0, -2.8131360146748556, -2.6085260335771943, -2.822386043980825, -7.0, -3.3199384399803087, -7.0, -2.977494969073036, -3.3620109792299933, -3.6861743251490533, -7.0, -7.0, -3.0580462303952816, -7.0, -3.8003733548913496, -2.9370161074648142, -3.168202746842631, -3.5559404378185113, -4.049121071116725, -7.0, -7.0, -7.0, -7.0, -2.970863217370339, -7.0, -7.0, -7.0, -3.56643749219507, -7.0, -2.6026025204202563, -7.0, -3.4371160930480786, -7.0, -3.630466013966421, -3.6398847419163043, -3.453624073591451, -7.0, -7.0, -7.0, -3.4303975913869666, -3.521007252408604, -3.073535065058784, -3.1903316981702914, -3.22219604630172, -2.992553517832136, -7.0, -7.0, -3.167949956100975, -7.0, -2.8182258936139557, -7.0, -3.0145205387579237, -3.031900005817225, -7.0, -3.2076343673889616, -7.0, -7.0, -2.9375178920173464, -7.0, -7.0, -2.8842287696326037, -3.0420830591819565, -3.414555556229215, -7.0, -3.1192283874901365, -4.062326220404848, -7.0, -3.893928126542607, -3.2723058444020863, -3.9564565834098997, -2.6464037262230695, -3.5678494505731067, -7.0, -2.5616975326539935, -7.0, -3.1142981595540196, -3.1113745462875477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4622482153549976, -2.287661792928241, -4.181100079728049, -7.0, -7.0, -7.0, -7.0, -3.197831693328903, -7.0, -7.0, -3.881441721941393, -7.0, -7.0, -2.8091105993088905, -2.889155491816375, -7.0, -7.0, -3.4500950758716025, -3.3805730030668872, -7.0, -3.082246654743669, -2.5660163785366477, -7.0, -3.0388849756663854, -3.4401216031878037, -3.1480882706622184, -7.0, -7.0, -3.4199970292732025, -3.228913405994688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.268297087223767, -7.0, -7.0, -2.5349774634615505, -7.0, -2.959821989387372, -7.0, -3.7532765701844184, -3.375846436309156, -3.3818367999983434, -7.0, -2.7993405494535817, -1.5603052432209612, -1.929222367900617, -7.0, -3.111598524880394, -7.0, -3.742882171437273, -7.0, -3.99312748510571, -2.9818186071706636, -7.0, -7.0, -2.901390202114049, -2.823474229170301, -2.9755630946293388, -7.0, -2.3594905303901377, -7.0, -2.772566173085639, -2.807264355276107, -3.018561812897253, -7.0, -3.0437551269686796, -7.0, -3.603793704136963, -7.0, -7.0, -7.0, -7.0, -2.703004620444392, -2.3899251194809668, -2.857633985150008, -2.4795273244855407, -2.6768379494528953, -7.0, -7.0, -4.4349494172436525, -7.0, -7.0, -3.256236533205923, -7.0, -7.0, -7.0, -3.181128699747295, -7.0, -3.4099331233312946, -7.0, -7.0, -7.0, -3.2000292665537704, -7.0, -7.0, -3.423245873936808, -4.24803705634644, -7.0, -7.0, -7.0, -7.0, -3.286905352972375, -7.0, -7.0, -2.9867717342662448, -2.978180516937414, -3.442636525782232, -7.0, -3.0931297224743295, -7.0, -7.0, -7.0, -3.430437891529148, -7.0, -3.846312365300436, -2.991447598003803, -4.241430254748615, -7.0, -7.0, -7.0, -2.8828902938682437, -7.0, -3.1558563583922012, -3.0856472882968564, -7.0, -7.0, -7.0, -7.0, -7.0, -3.57611089412084, -3.2533380053261065, -7.0, -7.0, -2.768268016451548, -7.0, -3.414137362184477, -7.0, -3.1876617026529592, -2.6084795227892617, -2.8787132411652734, -3.081707270097349, -7.0, -4.3566058045664064, -2.939119717648487, -7.0, -3.4602963267574753, -7.0, -7.0, -2.6762362167633116, -1.5342898943760837, -2.547335091541293, -1.9907935114317312, -7.0, -7.0, -7.0, -3.504742636271688, -4.874735581294349, -2.8395304193346966, -7.0, -7.0, -7.0, -3.8185557792978027, -3.09968064110925, -2.7507654498940113, -7.0, -7.0, -7.0, -2.873175231276166, -7.0, -2.6548426946011774, -7.0, -2.7321926510062684, -2.8574186574238936, -7.0, -4.260321870246313, -4.402897308556408, -4.5747741441598, -7.0, -2.8955453147983605, -3.6242325772522954, -2.7554937284151193, -3.104487111312395, -1.6996209579656139, -7.0, -2.5554975061310574, -2.3930108178985368, -2.708562525598842, -2.4325320082579323, -7.0, -7.0, -2.8295610562993927, -7.0, -7.0, -7.0, -3.2474003723989, -7.0, -2.362236424639688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3579679726998637, -7.0, -7.0, -3.7551122663950713, -4.283272953402787, -7.0, -7.0, -7.0, -3.1941142247242476, -3.6211806108451845, -4.591220479634285, -7.0, -4.681675314854906, -4.92713929387587, -3.7645870600628912, -7.0, -7.0, -7.0, -7.0, -4.543111543953438, -7.0, -7.0, -3.435797540266917, -7.0, -7.0, -4.303520036907281, -7.0, -2.884741434421791, -7.0, -7.0, -7.0, -7.0, -7.0, -4.465962515279378, -7.0, -7.0, -2.614264287358705, -7.0, -4.370368732547782, -3.9330314951024055, -7.0, -4.045146877757589, -7.0, -3.958860503280292, -4.029911104912444, -3.601625479553945, -4.454966750124916, -3.7362746108444544, -3.273045812803421, -7.0, -3.9738049481030795, -3.875697761980208, -7.0, -7.0, -4.388935581235242, -7.0, -7.0, -3.849265817161557, -4.1669232380950865, -7.0, -7.0, -2.6795036038348163, -3.225309281725863, -4.260734254748414, -7.0, -4.929752608152573, -3.6304617764716594, -3.939119717648487, -7.0, -7.0, -7.0, -4.311880953037904, -7.0, -3.9358094538099326, -7.0, -3.9029651093763786, -4.499632105153693, -2.9874428049358013, -3.5497583267385253, -4.358101485058426, -7.0, -4.0939292328222185, -7.0, -3.680154141734373, -4.6173463799861105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7035063221873417, -2.7987887139512493, -3.1283992687178066, -7.0, -7.0, -3.3591142204149063, -7.0, -2.8577846510602454, -7.0, -3.509202522331103, -7.0, -3.4050251743409166, -2.9986080293150947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9514994179522764, -2.721501472134904, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9214159323948645, -4.493032610522491, -7.0, -7.0, -2.83159556961061, -7.0, -2.6224442957616705, -7.0, -2.7948364578145615, -3.0668614734064072, -7.0, -7.0, -3.5170638734826545, -2.544245271237821, -3.4531653925258574, -7.0, -7.0, -2.737987326333431, -7.0, -2.5343434568060275, -3.4213570985131425, -7.0, -7.0, -2.5226448314230057, -2.918659293421823, -7.0, -4.172369376763842, -7.0, -7.0, -7.0, -3.4779889762508893, -3.0811681883904147, -2.7961115793233833, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8328281295393536, -7.0, -3.0033168924581544, -2.9033914757106833, -7.0, -7.0, -2.73523028079199, -3.176420598928824, -2.3353270562549815, -7.0, -2.7203453897396916, -7.0, -3.3231833228365364, -7.0, -3.464079501542737, -7.0, -7.0, -7.0, -3.1455071714096627, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2394746634651845, -7.0, -7.0, -3.6538875580709775, -3.7368743616484226, -2.5618166643189575, -7.0, -2.1636913256003165, -7.0, -3.119915410257991, -2.5928109955252414, -7.0, -7.0, -7.0, -2.7297720531082863, -3.631883252821722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5024271199844326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.291305408119733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5558733559874045, -7.0, -7.0, -7.0, -7.0, -3.2335037603411343, -7.0, -7.0, -3.194097885578952, -7.0, -3.4299136977637543, -7.0, -7.0, -7.0, -2.9322707758994904, -7.0, -7.0, -7.0, -2.619823500457278, -3.723044991643445, -2.654264074777965, -3.6224212739756703, -2.746244871720198, -3.2894933946966205, -3.6404317436833487, -3.601081727784023, -3.3203540328176717, -2.921754311031378, -2.9747309448027197, -7.0, -7.0, -7.0, -7.0, -7.0, -2.940997089103553, -3.2732328340430454, -7.0, -2.6105004666431815, -2.887380430182775, -3.1970047280230456, -3.156952770767806, -7.0, -2.9051788751397356, -3.0910511241341787, -7.0, -3.6309925539264505, -3.373279893277496, -3.613630434925241, -7.0, -7.0, -7.0, -3.62746827245971, -2.495279967133839, -3.303088010528054, -3.2887707217103532, -7.0, -2.3999912817517215, -7.0, -3.1701638903057043, -3.756636108245848, -7.0, -3.5985169354268858, -7.0, -2.5249521970606112, -3.527951958343942, -2.7331972651065692, -3.2477278329097232, -2.2015687791366827, -2.6541077536491158, -2.2739305691109637, -2.6875289612146345, -3.1664301138432824, -2.6613393400060397, -2.5943925503754266, -7.0, -3.674401812845282, -7.0, -2.7101173651118162, -3.657915936829955, -3.8605176774617465, -2.2883127215408736, -3.6184664921990803, -7.0, -2.9380190974762104, -3.6029277128591892, -2.8722048488326677, -3.1160540087584403, -3.1374596122778238, -2.891467764262818, -2.7168886258833527, -3.6121478383264867, -3.1627883658654485, -3.5949447366950835, -3.152390279480791, -2.6111329932747487, -3.749504423876142, -3.0330214446829107, -7.0, -2.9556877503135057, -7.0, -3.0453881832732153, -3.371191048907622, -2.7755699977216106, -7.0, -2.5414358040496436, -3.0670708560453703, -2.3299139378954807, -3.6098077693287025, -7.0, -2.8376585705702464, -3.727703883685354, -2.660062377951373, -2.4030613247630086, -7.0, -2.6774096358239126, -3.664265800147675, -3.6026025204202563, -7.0, -2.282253391565358, -3.0041063232796583, -3.171726453653231, -2.4443918150990673, -2.4757829039474, -1.852431193762441, -3.049024097915049, -7.0, -2.78265175161032, -3.6993173010213822, -3.1012470226741917, -7.0, -7.0, -2.8017847035341163, -2.7683297191556235, -3.0488300865283504, -2.5917137074725853, -2.7332208751248905, -3.1892238952372343, -3.650793039651931, -7.0, -3.353916230920363, -4.164191346399106, -2.7832781164810925, -2.7596678446896306, -2.4462954799526213, -7.0, -3.3568859411659737, -2.892780765304357, -2.9689496809813427, -7.0, -7.0, -4.429590802223301, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4883054216721763, -3.1715314404115604, -3.1712387562612694, -3.4462782114390538, -7.0, -7.0, -7.0, -3.148294097434746, -3.0908750112031753, -7.0, -2.5033224409828163, -7.0, -3.3298045221640695, -7.0, -2.568907690449816, -7.0, -7.0, -2.5047506270440394, -1.8931538580495026, -7.0, -2.858623119912763, -3.719082573901486, -2.935938898606875, -3.170774935911056, -2.7311857076340007, -3.5678886061861617, -3.4192120226230758, -3.345471754367631, -2.4869403721117096, -7.0, -3.60151678365001, -7.0, -7.0, -3.6330642726914992, -2.926753905189737, -7.0, -2.7529625598847725, -7.0, -3.877467333157578, -3.30352003690728, -2.423245873936808, -2.399213729436142, -7.0, -3.2204219224378408, -2.5050319474775153, -3.7038929536325447, -2.992847954780297, -3.4126285205443754, -2.689873663917267, -3.2133406385265157, -3.111598524880394, -7.0, -1.4157174581451022, -3.008919388595035, -7.0, -2.027898887909134, -3.441459468917794, -3.084269789225843, -7.0, -3.2848253676580463, -7.0, -3.1217473836406597, -7.0, -7.0, -7.0, -7.0, -3.054421524462536, -3.2847314397467207, -7.0, -2.930002458864768, -7.0, -3.2500945661888303, -7.0, -7.0, -3.632558514532672, -7.0, -3.619719265611727, -3.641275757231913, -7.0, -3.6501131644435714, -3.7675268994083817, -7.0, -3.5337212310124437, -4.159589749494209, -7.0, -3.6363875858131567, -7.0, -3.688330818112266, -7.0, -2.915188705173156, -3.2773035345575963, -2.4617319019372412, -3.1149444157125847, -7.0, -7.0, -7.0, -3.6266482684740105, -7.0, -3.6129956560323473, -7.0, -3.9597614375779355, -7.0, -7.0, -7.0, -3.022325250092303, -7.0, -3.654850090561394, -7.0, -2.96208508051736, -7.0, -2.114676064138173, -2.8049114308857184, -2.38778035944564, -3.249361442065167, -7.0, -7.0, -3.0823903775817154, -3.1457400995364067, -2.7119804733019435, -3.663795122219408, -4.04099769242349, -3.6731131042382335, -7.0, -3.631139250256811, -3.648717709275342, -2.8763140831365024, -2.8231995765243703, -2.6848453616444123, -2.3435133465677946, -2.4762688609584846, -2.813008795492136, -7.0, -3.220020871555797, -2.5496842947541856, -3.1922886125681202, -7.0, -7.0, -3.39776625612645, -7.0, -3.242127143728284, -7.0, -2.9793206973820245, -2.8001742327278905, -7.0, -2.649543470267784, -7.0, -3.3869149280061124, -1.948804045932811, -3.317331935445897, -3.3173414420397855, -7.0, -2.460803910782157, -3.170437745046183, -3.4340097093697395, -3.1959688020761106, -2.8735143535392917, -3.683542319957651, -7.0, -7.0, -3.164278483923325, -3.7623553334556568, -2.737391449978478, -3.6006462356623947, -7.0, -7.0, -2.8502691206629827, -2.6534395365102066, -3.637689819118401, -3.6546577546495245, -3.308919955522892, -7.0, -2.9724342769573653, -3.3370597263205246, -1.8402106807262346, -7.0, -3.381205361238583, -2.771248188300011, -3.3586010159430195, -2.733318528832285, -3.1233070710124684, -3.721854410698838, -3.660675788338524, -2.5713504290799474, -3.6015852249836797, -2.9355988601479255, -7.0, -2.719054930320311, -3.1441589128307523, -2.6661434272915585, -2.583198773968623, -2.6877270882627347, -2.5734904758098778, -3.6068111469189637, -7.0, -2.455424982962566, -3.327665387050042, -3.354204511370313, -3.663700925389648, -3.298252505655764, -3.6351820486562674, -2.197143907448683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.929234950265582, -3.8585864097188036, -7.0, -7.0, -4.37427164327598, -7.0, -7.0, -4.142577160920535, -7.0, -7.0, -4.639491469681335, -7.0, -7.0, -7.0, -5.093160679820907, -4.348830372378482, -4.574852754517795, -3.910037123553051, -7.0, -7.0, -7.0, -7.0, -3.685211031044629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2746657690813885, -3.186858953470273, -3.3720831085742526, -4.002805149342968, -3.3626890460874135, -3.049256797232227, -3.127428777851599, -3.13930174154602, -3.460822698802402, -2.66149717917983, -3.0111147988652363, -3.822429623779357, -4.493541695167482, -2.936723893079625, -2.871412168783088, -7.0, -3.1883377790407526, -2.51291667836589, -7.0, -3.1433717301956188, -3.7344317630530526, -7.0, -7.0, -3.2905354315009356, -2.89521267096554, -4.595470784074642, -7.0, -2.8822139578592343, -7.0, -3.629562492778617, -7.0, -4.265191937350579, -4.189293755885692, -3.6026242074933377, -7.0, -7.0, -3.883391691428558, -3.6310512384048725, -7.0, -2.2815849084078117, -2.9160150455495546, -3.5745626242687933, -3.1360352997371708, -3.184596802974997, -2.367053946493985, -3.9311295061305005, -2.6480549217643783, -3.87715049456365, -7.0, -3.171901890731724, -2.7506369413912526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.563705162555925, -3.064008486531724, -2.754116576016153, -7.0, -7.0, -3.9298274812306917, -7.0, -3.26583941549449, -7.0, -7.0, -7.0, -3.7794915448471396, -3.8830933585756897, -7.0, -7.0, -7.0, -7.0, -3.609754439128856, -7.0, -7.0, -3.978500069311459, -7.0, -7.0, -3.7271344237604884, -3.536116348245079, -7.0, -4.140004950619449, -7.0, -7.0, -7.0, -3.7641285619338616, -4.335023054250718, -7.0, -7.0, -3.0433265468530726, -7.0, -3.2062185182548055, -7.0, -3.234179705196503, -2.8228012362482873, -7.0, -7.0, -7.0, -7.0, -3.92054071650248, -7.0, -7.0, -3.383815365980431, -7.0, -3.12985095078891, -2.739110644752371, -7.0, -7.0, -3.242851882584178, -3.531478917042255, -7.0, -3.942454526342477, -7.0, -7.0, -7.0, -7.0, -3.09340628983506, -3.107345665472095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7539658658651605, -2.691567700438057, -7.0, -7.0, -2.6247751793691476, -2.598365925717433, -3.5836521085420436, -7.0, -4.074322643568778, -3.5073160400764136, -3.6514718521990424, -7.0, -3.854214921512205, -7.0, -7.0, -7.0, -3.607025878434786, -7.0, -7.0, -7.0, -7.0, -3.803457115648414, -3.4582309613062225, -7.0, -4.2557547866430445, -4.110746791003332, -3.908699432352224, -3.10064620014548, -7.0, -3.7247672456463103, -7.0, -7.0, -3.9114772171061025, -7.0, -7.0, -3.7255032688593155, -3.2038484637462346, -3.8506156068476467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5166235018348, -7.0, -7.0, -3.6418705454763125, -7.0, -3.62096843564429, -7.0, -7.0, -7.0, -3.474871583227693, -3.7134065321676912, -7.0, -7.0, -7.0, -7.0, -7.0, -3.841484609335393, -7.0, -7.0, -3.9423305520097855, -7.0, -7.0, -3.8376515578463923, -7.0, -3.4823017672234426, -7.0, -7.0, -7.0, -7.0, -3.6036855496146996, -7.0, -7.0, -7.0, -2.935003151453655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.53268662951388, -7.0, -7.0, -7.0, -4.199398602359617, -3.9145018228273143, -7.0, -7.0, -7.0, -7.0, -7.0, -3.563025984863721, -7.0, -7.0, -3.377306251068199, -4.003779475154853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.565653050578184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.900093901543398, -7.0, -7.0, -7.0, -3.321839983161041, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.110589710299249, -7.0, -2.686040120257356, -7.0, -3.236596215369598, -2.6848453616444123, -3.434196187604368, -3.103461622094705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0507663112330423, -7.0, -3.7536443306878593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.842609239610562, -7.0, -3.8704721852071455, -7.0, -3.0788191830988487, -7.0, -7.0, -3.184521085852911, -7.0, -2.650793039651931, -7.0, -2.8606374167737547, -7.0, -2.811306840081336, -3.560026248912892, -2.5912872650584995, -7.0, -3.908423738438037, -3.5547313766759667, -3.724070965382832, -7.0, -7.0, -7.0, -7.0, -3.4051755462179893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1344635297156462, -2.4892551683692603, -7.0, -3.208710019906401, -3.1660352109000436, -3.0373902750387383, -2.723044991643445, -7.0, -2.30932593310039, -7.0, -4.387265215784176, -7.0, -7.0, -7.0, -2.95784663370815, -7.0, -2.259389071298138, -2.8973376581028525, -4.755470850140081, -7.0, -7.0, -7.0, -7.0, -3.1601682929585118, -3.4653828514484184, -2.538866850664468, -7.0, -7.0, -4.001474096691733, -7.0, -7.0, -7.0, -4.069353544943673, -7.0, -7.0, -7.0, -7.0, -7.0, -3.733317662782867, -7.0, -4.158272004652084, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5757649805367193, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6982124307329163, -7.0, -7.0, -7.0, -2.4300212762834783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8848519827459977, -3.261976191397813, -7.0, -3.247951796471139, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8872591614954697, -7.0, -4.283391697297128, -7.0, -7.0, -2.728865665539083, -2.797959643737196, -3.2117433133351296, -2.5975855017522047, -3.2127201544178425, -2.6953065224318027, -7.0, -3.296884475538547, -7.0, -7.0, -1.4157174581451022, -7.0, -7.0, -7.0, -3.957415714722669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1043163645117278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.135800283302111, -5.235955797813515, -7.0, -7.0, -7.0, -7.0, -7.0, -2.842609239610562, -7.0, -3.26030994579492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2725377773752373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0382226383687185, -7.0, -3.066325925362038, -7.0, -1.873722912619438, -7.0, -2.251078922905486, -3.2801228963023075, -7.0, -7.0, -4.317875378414559, -7.0, -3.6904112746987385, -7.0, -4.712085425704258, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4891613074478007, -3.424799994656599, -2.8045111537405574, -2.5286596452349897, -7.0, -7.0, -2.714329759745233, -2.240696043782359, -3.448551739201578, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8849840645741107, -3.156044098964241, -3.174931593528443, -7.0, -7.0, -4.354124452660498, -3.297048866865437, -7.0, -4.288629234664989, -7.0, -2.002166061756508, -7.0, -7.0, -3.9614685553507862, -3.5207454715194824, -3.7943486038960827, -7.0, -7.0, -7.0, -5.050330123453494, -3.2748503200166645, -7.0, -7.0, -7.0, -3.7640266076920375, -3.629511534200453, -2.962369335670021, -7.0, -7.0, -7.0, -3.345569756056392, -7.0, -2.863067817841283, -7.0, -7.0, -3.1535099893008374, -7.0, -3.857652067819292, -3.690231531192315, -4.671239393939525, -7.0, -2.8963194926231832, -4.542015814870588, -7.0, -7.0, -7.0, -7.0, -2.948290680973653, -7.0, -7.0, -2.743313739231126, -7.0, -7.0, -3.1149444157125847, -7.0, -7.0, -7.0, -3.354876422516234, -7.0, -2.9475017963235906, -7.0, -2.75815462196739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.137976196582096, -7.0, -3.9721935782700672, -3.603875734432136, -2.81135154588012, -7.0, -7.0, -7.0, -3.9569036002309135, -7.0, -7.0, -7.0, -4.3611279066318485, -3.6399209285998153, -7.0, -4.4388744689064445, -7.0, -7.0, -7.0, -4.374931553978188, -7.0, -7.0, -3.8158698359694636, -3.9828660012906787, -5.706520641282075, -7.0, -7.0, -7.0, -4.353935455571521, -7.0, -5.104522959613173, -7.0, -7.0, -7.0, -7.0, -7.0, -4.084483332544515, -7.0, -3.313418991194657, -3.8120438979302267, -3.9444936390440697, -4.488818542833805, -7.0, -3.6651809221500327, -7.0, -7.0, -4.648769713584033, -7.0, -7.0, -3.654711189836538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7095243558763413, -7.0, -7.0, -4.344451223686138, -7.0, -7.0, -7.0, -7.0, -7.0, -4.797952728164908, -3.3235614634628665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.784759894664005, -7.0, -7.0, -7.0, -3.5378190950732744, -7.0, -7.0, -7.0, -7.0, -7.0, -4.24976074088798, -7.0, -7.0, -7.0, -3.464638559095033, -7.0, -3.478854967528663, -7.0, -7.0, -3.298610521540568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.99409708958821, -3.388145623856844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8560639533331, -3.4749443354653877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3317646126401494, -7.0, -7.0, -2.95431143960087, -3.2508873899067634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530699041844945, -7.0, -7.0, -4.547688576129021, -7.0, -7.0, -7.0, -3.274388795550379, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3968790352215565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.11143055176598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499783276438258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.371437317404101, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8202953102654553, -7.0, -7.0, -7.0, -7.0, -3.4500180391562068, -7.0, -7.0, -7.0, -3.6467586263847607, -2.8114313662192414, -3.336759833698248, -2.701088048570016, -2.929685418552622, -3.1588146467242266, -3.717337582723864, -3.688241795977712, -7.0, -7.0, -7.0, -3.368641818047141, -2.9181052603565147, -7.0, -3.454590812337093, -3.0928671726557817, -3.7058637122839193, -7.0, -7.0, -3.4764693239263837, -3.723701893991268, -3.6754116937148633, -3.5457905215795247, -3.4046627008737222, -7.0, -7.0, -7.0, -3.772028165324855, -7.0, -3.2403620120296877, -7.0, -3.0922292421628566, -7.0, -3.0920795744436336, -7.0, -7.0, -7.0, -3.414555556229215, -7.0, -3.669409867287783, -7.0, -3.3739535505092246, -7.0, -3.452016565962548, -2.5783770650274622, -3.5244610342154497, -3.173259130501515, -3.528402437953617, -7.0, -7.0, -2.978376189156044, -2.919862253555538, -7.0, -3.4056024552093134, -7.0, -7.0, -3.580069222725036, -2.7346371267745795, -7.0, -7.0, -3.5073835557363866, -3.3384564936046046, -2.093184973714775, -2.6332557746341494, -3.650793039651931, -3.119981307304154, -3.168902815780035, -7.0, -7.0, -3.632356046239073, -3.1870504506422686, -3.3589242153885115, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8466463285771173, -2.789345640720579, -3.4575791469957626, -7.0, -2.7241079430172648, -2.63489198424631, -3.157093948997081, -7.0, -7.0, -3.8171024042569233, -3.153052275067109, -3.198313363563387, -3.28668096935493, -7.0, -2.581676161743162, -7.0, -7.0, -7.0, -3.3459941746780104, -7.0, -3.321943464631346, -7.0, -3.213358353624391, -3.0816133956502867, -3.207185391351969, -3.6641717053619307, -3.717504074764202, -3.7290027092721902, -3.273294563057705, -3.7029472461815556, -7.0, -3.783331762887424, -3.8701111553644005, -3.6126249394226386, -3.704407927386841, -2.693009164048874, -3.026698088964593, -7.0, -7.0, -7.0, -4.408757078487127, -3.115527305527498, -3.04720994556899, -3.423081958297231, -7.0, -2.911601445755513, -3.5321535564637863, -3.3604040547299387, -7.0, -7.0, -3.204311540910256, -7.0, -7.0, -7.0, -3.650793039651931, -7.0, -3.465263850356592, -3.1884597362982907, -2.8967178743690574, -3.4642410809920987, -3.214578953570499, -2.6780629049743454, -7.0, -3.660770643527697, -7.0, -4.184379080658596, -4.0258381642297, -7.0, -3.6655809910179533, -7.0, -2.9057509200197873, -7.0, -7.0, -7.0, -3.1301728888925355, -7.0, -7.0, -3.747489492258673, -2.9025467793139916, -1.9631532545665087, -3.4590153323018296, -2.3649528098608803, -2.969804056523086, -2.90100399089971, -3.0010813518309316, -7.0, -7.0, -7.0, -7.0, -3.667452952889954, -7.0, -7.0, -3.0887029603514744, -7.0, -3.214787098545441, -3.340146550949133, -2.919696034609671, -3.1298490563291437, -7.0, -3.3355581880658614, -3.287241711178348, -7.0, -7.0, -3.742568034366142, -2.9144187194479314, -2.5727886503366233, -3.742882171437273, -3.008919388595035, -7.0, -7.0, -7.0, -2.931695125260272, -3.070037866607755, -2.2592074234859556, -7.0, -3.419735518017542, -7.0, -3.1380318847204434, -7.0, -7.0, -7.0, -3.679700380871964, -3.372451701409366, -3.787956123283932, -7.0, -7.0, -4.425289616446794, -3.74170298395774, -7.0, -7.0, -3.6669857183296606, -7.0, -3.353916230920363, -3.675044735955893, -7.0, -7.0, -7.0, -3.5867560391743902, -3.338356873353703, -3.72931428448667, -7.0, -7.0, -7.0, -3.718750734739665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.752202153176521, -3.5141158997723867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9404168646816653, -3.761401557498631, -2.8507337328124356, -4.018991594705612, -3.7547304690237535, -7.0, -7.0, -3.6120771120854864, -3.7748817658187965, -3.677766590466052, -3.6959192528313998, -3.6634653438911116, -3.704579449696299, -7.0, -3.665674780993893, -3.6600745572208857, -2.6704314093606056, -2.7713201816071438, -3.356694958541127, -3.7327956982893293, -3.1359273350054684, -3.6917002082901615, -3.348791467560584, -2.948331446401186, -2.9265996539070276, -2.2829018774276832, -7.0, -3.0619234632803045, -2.7272158209084925, -3.66143405039392, -7.0, -7.0, -7.0, -4.09282587292398, -7.0, -7.0, -3.7405205860536648, -3.9680655763030757, -2.6517996891142075, -3.6540802353065707, -2.9176180259352056, -7.0, -7.0, -2.774853715149844, -2.6817687053632726, -3.8105013477665297, -7.0, -3.6991870973082492, -3.4644895474339714, -3.0141003215196207, -7.0, -3.901390362407254, -3.1501037406089263, -7.0, -7.0, -7.0, -2.834375282515157, -3.604118006192035, -3.370513089598593, -7.0, -3.3333800930468676, -7.0, -3.7777891874348675, -7.0, -2.3545024464158892, -7.0, -7.0, -3.906065544755237, -3.6922298357727557, -3.0040460900514363, -2.6235115781367413, -3.57629872504821, -3.693023067923694, -3.7029472461815556, -3.2487689647718163, -2.992995098431342, -7.0, -3.2286569581089353, -7.0, -3.8654593226619647, -3.2996815916623548, -3.3594560201209864, -7.0, -7.0, -7.0, -3.805296916157985, -7.0, -7.0, -7.0, -3.618414214801256, -7.0, -3.033983931269618, -7.0, -7.0, -4.636156783606082, -7.0, -7.0, -7.0, -4.7442147248141655, -7.0, -7.0, -7.0, -4.123813543288926, -7.0, -7.0, -4.380717623275317, -7.0, -7.0, -7.0, -7.0, -4.2308404614194455, -4.942290872747812, -7.0, -7.0, -7.0, -4.79274353560754, -7.0, -4.578925589458768, -3.9193919267738595, -7.0, -7.0, -4.283775978711523, -7.0, -4.50070976802415, -7.0, -4.711309402572865, -7.0, -7.0, -7.0, -7.0, -7.0, -4.508408503596661, -3.9816827273712856, -3.2725764208314096, -3.704750904290671, -4.4038408865808965, -3.6329884465050295, -3.461160744254032, -7.0, -3.3595767940674306, -3.486642969023512, -3.405996818295181, -2.9902436878140852, -3.543819805142658, -7.0, -3.3468713070701095, -3.0059791649763743, -7.0, -3.8927066378056656, -3.7206140404234618, -7.0, -3.7033773685123497, -4.439158941284675, -7.0, -7.0, -3.3004889195397658, -3.590094714052817, -4.329484322820614, -3.6625689669332604, -3.4652340949880145, -7.0, -3.7695573215600326, -7.0, -3.6193626605466327, -3.7218930162149575, -7.0, -7.0, -4.3956233943558365, -3.5872478073521594, -4.110697428903857, -7.0, -3.461198288622493, -4.011401259924744, -3.8049934405673325, -3.693802297126462, -7.0, -3.0585493860490587, -3.8280012359052726, -3.8750033536000412, -3.9932502424781573, -7.0, -3.8915374576725643, -3.606136981286755, -3.896213795234906, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3763292395085953, -3.0104413055367156, -3.6800180632491917, -7.0, -7.0, -3.9358094538099326, -7.0, -3.1676864758514913, -7.0, -3.976074731619874, -7.0, -4.045114258618323, -7.0, -3.6856521841155243, -7.0, -7.0, -7.0, -3.9293678292400998, -7.0, -7.0, -3.693243153309189, -7.0, -7.0, -7.0, -3.2566576235323295, -7.0, -7.0, -7.0, -3.6540802353065707, -7.0, -4.028639021200423, -4.337386040723217, -7.0, -7.0, -2.6044350997705297, -3.7058637122839193, -3.053142493993366, -7.0, -3.439332693830263, -3.2219355998280053, -7.0, -7.0, -7.0, -3.7375901662857216, -7.0, -7.0, -7.0, -3.4144719496293026, -7.0, -3.282546589969968, -3.433097476967988, -7.0, -7.0, -2.8656368876996288, -2.7069614941736275, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3013194288515706, -3.358842046056894, -3.529045170765769, -3.892261606915535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4072634020530512, -7.0, -7.0, -2.9238482245059934, -3.389212730031502, -3.4270531135645013, -7.0, -3.7796505943430723, -7.0, -7.0, -7.0, -4.165926549609097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8294967497201826, -3.7013952690139202, -7.0, -7.0, -7.0, -7.0, -2.999955454691801, -7.0, -3.52270499273475, -7.0, -3.7528164311882715, -7.0, -3.072302427940994, -7.0, -3.9408649759667216, -7.0, -3.053923150548575, -3.109662900499272, -3.856003453997221, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6545615547417434, -7.0, -7.0, -3.4681995860726125, -3.0729847446279304, -7.0, -3.65628990119136, -7.0, -3.694517453811156, -7.0, -3.8010605298478555, -7.0, -3.6206044653897242, -7.0, -3.9237101943965627, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9681387192007698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6291036501771363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.780014713076167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9518715571283645, -7.0, -7.0, -7.0, -7.0, -3.9978230807457256, -7.0, -3.9472866446777983, -7.0, -3.161360256128763, -2.950299932560933, -7.0, -7.0, -2.317678541396253, -2.8319408361283087, -3.9789561652175918, -7.0, -7.0, -7.0, -7.0, -2.3121043694503958, -7.0, -7.0, -3.506978304246419, -2.4267694615865496, -3.9727118405470665, -3.2536771654229244, -3.459643742890279, -2.732732259046577, -3.1368111300765356, -3.9565045903166975, -3.496764708268367, -3.9727118405470665, -7.0, -7.0, -7.0, -7.0, -3.9496826907952043, -2.820394659578645, -7.0, -2.9790514702083497, -7.0, -1.9991522838842721, -3.6454713949056066, -7.0, -3.714874382231572, -7.0, -3.4011936846300252, -7.0, -7.0, -3.7562556487542333, -2.7745169657285493, -3.697839368218363, -2.6179747382228156, -3.439253724017898, -2.368273406913709, -3.6824158616773586, -3.2582540535071485, -3.966986025117938, -3.34143452457814, -7.0, -7.0, -7.0, -7.0, -3.1187841889145207, -3.5989363410431636, -2.605352939224738, -7.0, -7.0, -2.7995027206585665, -3.335808805235897, -2.6008448229987358, -3.6201013378002385, -7.0, -3.56054423863114, -3.182337940122092, -7.0, -4.020775488193558, -7.0, -7.0, -2.284221787734209, -3.2335037603411343, -7.0, -7.0, -7.0, -3.965013450272248, -3.2089018206788085, -3.1141289085933184, -3.3998034713645615, -7.0, -1.9848259138289839, -2.4964434207249413, -1.4875667678371367, -7.0, -7.0, -2.389488261294666, -3.3979834359489, -2.9465341378537158, -3.0805904144535012, -2.800176819315237, -2.0082633788160718, -7.0, -3.9380190974762104, -7.0, -3.0994833242126694, -3.9399682905513362, -3.0250189722827594, -3.987085029624122, -2.6322477917069986, -2.5217916496391233, -7.0, -7.0, -7.0, -7.0, -3.2101177828307916, -7.0, -7.0, -7.0, -7.0, -3.619997169624987, -3.369586890736344, -3.363762358869375, -2.583024288437186, -7.0, -3.879210605291759, -7.0, -4.183582992351017, -3.377032909310364, -2.1667580372054505, -3.3100557377508917, -7.0, -3.4872326745725313, -2.522785672204601, -2.9689496809813427, -7.0, -7.0, -4.021891873919109, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6953203529523866, -3.6556825632823373, -2.3846144002320804, -2.77185461573938, -3.9652957958116564, -3.243781916093795, -7.0, -3.64777405026883, -7.0, -7.0, -2.6278338463814483, -7.0, -3.951386094880293, -7.0, -2.763174952431323, -3.9386197815026813, -7.0, -3.1600824724895236, -2.7306477150202615, -7.0, -3.9882021002587806, -3.694605198933569, -7.0, -7.0, -7.0, -3.89649865985879, -7.0, -3.1803170679833, -2.8873157722396194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5207978403223796, -7.0, -3.8339117150713786, -7.0, -0.6811681914613787, -2.944789847324052, -7.0, -3.8121443089703804, -3.303088010528054, -3.9877556167385233, -7.0, -3.0892425720555208, -3.400753787896711, -7.0, -3.99312748510571, -2.027898887909134, -3.957415714722669, -2.931695125260272, -7.0, -7.0, -3.707229419327294, -2.8556056771307627, -7.0, -3.261219599440868, -7.0, -4.144325078400488, -7.0, -3.9934362304976116, -7.0, -7.0, -3.837114748515506, -7.0, -7.0, -3.424432415724877, -4.490464159065009, -2.842410653111147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.214234349025624, -3.234950927564595, -4.036608936517427, -2.7655514428714616, -7.0, -7.0, -3.482540115553833, -3.9797304306622854, -7.0, -7.0, -7.0, -3.092413583273063, -3.994888795364911, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4129914837145408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.966376423088923, -3.1143106768684246, -3.526339277389844, -3.199541877030045, -3.469822015978163, -2.957563755312261, -7.0, -7.0, -2.555139811231624, -4.011401259924744, -2.7015782636070647, -7.0, -3.312607730179509, -7.0, -7.0, -7.0, -4.255995726722402, -2.960153542690461, -2.624433032288266, -2.92236858804445, -2.621320560864068, -2.3743011729043864, -3.2657609167176105, -7.0, -3.9844372947960762, -4.044578954876613, -7.0, -7.0, -7.0, -7.0, -7.0, -3.694868327982456, -7.0, -3.5395778833453093, -3.6203442997544935, -7.0, -3.2603894359538135, -3.6906832800491083, -2.468794826053917, -2.97342670189906, -3.343113054845938, -3.116908047708927, -7.0, -3.969322706112202, -3.780821175853473, -4.004321373782642, -4.23656245185336, -3.7560652939486863, -4.155882358081815, -7.0, -3.7616271845615827, -4.021602716028243, -2.350963862547327, -2.6007216405557, -7.0, -7.0, -7.0, -3.841859809775061, -2.331871079112242, -3.9545801627437576, -7.0, -7.0, -7.0, -3.5358002908248976, -3.9548693710664784, -3.006136781822616, -3.9653898702151222, -3.2773799746672547, -3.392978186542541, -3.3630475945210936, -3.051945625614184, -2.910117254150511, -3.4388088214050185, -7.0, -3.6812713956674576, -3.7961308705829935, -3.549095263822955, -7.0, -3.273510545540457, -7.0, -3.7651094972067183, -4.154971441544471, -3.6520851030278667, -3.4109880047872694, -3.9399682905513362, -7.0, -4.029302593558998, -7.0, -7.0, -7.0, -7.0, -3.953373050726696, -2.5962268159414412, -7.0, -7.0, -4.6774061819799435, -4.828298908403947, -7.0, -7.0, -4.475663925814176, -3.388278863459639, -4.19725298299739, -2.447742764819307, -3.74863243437746, -3.9463539972262747, -7.0, -3.753291899757915, -4.782042416620554, -4.554997659078943, -4.063717935250528, -7.0, -4.14109686377542, -4.060008086443594, -7.0, -7.0, -7.0, -4.0597974201950455, -3.4767350435053235, -3.546275259758089, -3.3660907531790603, -7.0, -4.730103665154419, -4.371658839715409, -4.017617573339674, -3.3385978508664627, -7.0, -3.843061394239539, -4.4661258704182, -7.0, -7.0, -7.0, -7.0, -4.261857385629898, -4.370827547784376, -2.4569605985584455, -7.0, -3.962108775554161, -3.527176875493069, -7.0, -3.103906298088718, -3.1906265348970964, -3.7178368674869255, -1.951185252252834, -3.6536947953150816, -7.0, -7.0, -2.7836029465276524, -2.9923597003927576, -7.0, -2.6980024692403273, -2.226377657373889, -7.0, -2.835388558627749, -4.502427119984433, -7.0, -7.0, -3.071497433304764, -2.1175031458345996, -3.5796062459057905, -7.0, -4.11634203918834, -7.0, -3.530614754420801, -7.0, -3.580076671327345, -3.604657972047871, -7.0, -7.0, -3.3185403196146663, -2.8470047440551416, -2.8922274521845277, -4.086537783753207, -2.51853172389058, -2.764295715094164, -3.287403568562064, -2.1778023535384485, -7.0, -3.0470710104770475, -3.6712786585118917, -2.9574230844522935, -3.7720432235573, -7.0, -4.08282126093933, -3.1688544721436047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7415686772957413, -3.2412558576352395, -2.5227236124042807, -7.0, -4.0042783722001625, -3.7016111533360587, -4.026328938722349, -7.0, -7.0, -3.536842408605631, -7.0, -3.8962383070652464, -3.4878098101815893, -7.0, -7.0, -4.3338904116161245, -4.012162067970823, -3.6302922427684865, -7.0, -7.0, -3.8506462351830666, -7.0, -7.0, -7.0, -3.7611005389581424, -7.0, -4.266443381296273, -7.0, -7.0, -4.377260706054062, -3.4317476643821796, -3.3367848326610927, -7.0, -7.0, -3.18440748541232, -7.0, -3.0905323648171175, -7.0, -3.514503479814343, -2.4341989911773516, -7.0, -7.0, -7.0, -3.990161192898479, -3.8126125871077585, -7.0, -3.9966429913554724, -7.0, -7.0, -3.7016974770258484, -2.8530895298518657, -7.0, -7.0, -3.3677285460869766, -3.7583440634019762, -7.0, -3.7438819695892174, -7.0, -7.0, -7.0, -4.013637612453532, -3.031829245646604, -3.2658001678796333, -4.0832875693272825, -7.0, -7.0, -7.0, -7.0, -4.149773177559665, -7.0, -3.4122084658816805, -2.5065350967489293, -7.0, -3.9363126336621934, -2.7419693368814078, -2.6674615213066, -7.0, -4.021023822031585, -3.7542259820035175, -3.4429890216609986, -7.0, -7.0, -3.499549625905149, -4.106530853822381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6691773631428735, -4.042378598139876, -3.392769346877258, -3.41073506681745, -7.0, -4.035199521115102, -7.0, -3.5632041244800616, -7.0, -3.396417311708544, -7.0, -3.4977932285564193, -3.630665129596291, -7.0, -7.0, -3.6980135039391815, -3.3738311450738303, -3.2880255353883627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8610562445768735, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9534697432534016, -7.0, -7.0, -4.026778328659529, -3.992730203954143, -4.021458064854097, -7.0, -7.0, -3.6624272644527265, -7.0, -7.0, -7.0, -7.0, -3.996632049605175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9922441440467713, -7.0, -7.0, -7.0, -7.0, -2.0170333392987803, -7.0, -2.9745116927373285, -0.830481425491196, -2.951175559263217, -3.2776092143040914, -3.3378584290410944, -4.429900248574898, -3.109646031090973, -7.0, -7.0, -2.90605270739008, -2.8816079125422824, -3.409087369447835, -7.0, -7.0, -7.0, -7.0, -3.1320900984523248, -3.3503934050950708, -7.0, -2.289291592392737, -3.49391789471334, -7.0, -7.0, -7.0, -7.0, -3.4219328132785085, -7.0, -3.441636958215057, -7.0, -3.2579184503140586, -7.0, -7.0, -2.8138477542288545, -3.288696260590256, -3.032014034159506, -7.0, -2.8490506905695123, -7.0, -3.5768858616369985, -7.0, -7.0, -7.0, -1.8251979712261068, -2.708343630410836, -2.7019994748896368, -7.0, -7.0, -3.111598524880394, -7.0, -2.500841492203123, -7.0, -2.852714531894921, -3.0281644194244697, -3.323870606540509, -2.8849840645741107, -3.0016255582867375, -7.0, -7.0, -7.0, -7.0, -7.0, -3.217659381292399, -3.0710272996925214, -7.0, -7.0, -2.8780619812900126, -7.0, -3.2214142378423385, -2.4403579968152878, -3.2610248339923973, -3.295127085252191, -3.9252895251371474, -3.2545480771089736, -3.246252312299322, -7.0, -7.0, -2.579733903329737, -7.0, -7.0, -7.0, -3.605951157564873, -7.0, -7.0, -2.675869955318957, -7.0, -7.0, -2.824080049897986, -2.827276938731823, -3.068445618354352, -7.0, -7.0, -3.291146761731886, -3.1822719566941857, -3.0870712059065353, -2.3050932960616484, -7.0, -1.9092378965528287, -2.6648299411430907, -7.0, -7.0, -3.425778686860983, -3.2422929049829308, -7.0, -3.1371958119405483, -3.7426465899387362, -3.7983398307258573, -7.0, -3.2931414834509307, -7.0, -3.131137273778607, -3.2303296869189397, -7.0, -7.0, -3.0565237240791006, -2.898907927008518, -2.4187746368509666, -3.3823773034681137, -3.1666184637346104, -3.617666706945491, -7.0, -3.912965620704104, -7.0, -4.1543152663277905, -3.410608542568368, -7.0, -3.724275869600789, -7.0, -3.3529539117100877, -2.652308075867826, -3.149013723915726, -7.0, -3.2352758766870524, -4.089746194142301, -7.0, -7.0, -7.0, -7.0, -7.0, -3.378216149749878, -2.740165238032828, -2.645057162575253, -3.4834446480985353, -7.0, -7.0, -7.0, -2.807083812982132, -3.4216039268698313, -3.8005796215691303, -3.5998830720736876, -7.0, -7.0, -2.881574844854148, -3.3808260568363413, -7.0, -7.0, -3.5010592622177517, -2.962053485123806, -7.0, -3.4424797690644486, -2.6214730323720974, -2.874713688757779, -2.3012712033802085, -2.7921114090871684, -2.641523684670229, -2.770557474850995, -7.0, -3.1111922238938114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983761560286165, -7.0, -3.7059919299146995, -7.0, -3.0348957147764644, -3.5494726505247858, -7.0, -7.0, -3.707995746422929, -7.0, -3.256837965904041, -7.0, -2.587570666364193, -2.9388531566569034, -2.9818186071706636, -3.441459468917794, -7.0, -3.070037866607755, -7.0, -3.707229419327294, -7.0, -3.5209137773470296, -7.0, -2.3823839721485935, -2.378397900948138, -2.2369149636275054, -2.6358856852812727, -2.4161864618375377, -7.0, -3.328787200354535, -2.9856830355921042, -2.9395192526186187, -7.0, -7.0, -4.078674273360466, -3.0196873549368544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.33665982345442, -3.3714834772045275, -3.705350462885712, -7.0, -4.157666594536235, -7.0, -2.829946695941636, -2.63286204010023, -7.0, -7.0, -7.0, -3.2286569581089353, -7.0, -7.0, -7.0, -7.0, -7.0, -3.286905352972375, -7.0, -3.2564772062416765, -3.175946470095546, -3.325114765590469, -7.0, -7.0, -7.0, -3.2833012287035497, -2.8813846567705728, -2.86844850133673, -7.0, -7.0, -2.9370161074648142, -7.0, -3.86350130064145, -7.0, -7.0, -7.0, -7.0, -2.9419286319126137, -7.0, -3.086617532159259, -7.0, -2.7112198358301747, -7.0, -7.0, -7.0, -3.198499990015866, -3.1298831553406212, -2.8391427171910273, -3.5083276745471244, -3.610606937465461, -2.6040716921509444, -3.0538464268522527, -7.0, -3.4291060083326967, -7.0, -2.6905283211375925, -7.0, -7.0, -2.954081629836854, -3.28668096935493, -2.512625110914785, -7.0, -7.0, -3.9882021002587806, -7.0, -3.298197867109815, -3.45499721730946, -4.135847932046676, -1.751825230297199, -2.790988475088816, -2.8806654158665483, -3.252610340567373, -3.0707764628434346, -3.0091108061322127, -7.0, -7.0, -7.0, -2.54205440207046, -3.2009872191631663, -2.4035018157410506, -7.0, -4.573919945394144, -3.636688447953283, -7.0, -7.0, -7.0, -3.1416378746732714, -7.0, -2.4630393386237817, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8094164304103115, -7.0, -2.922898380345496, -7.0, -3.3564083270389813, -4.563463286075492, -3.085986739996101, -4.307785625187721, -7.0, -7.0, -3.592238460099942, -2.815154959698523, -7.0, -3.385963570600697, -7.0, -7.0, -2.9096748675185355, -7.0, -7.0, -7.0, -7.0, -3.5724068675580556, -3.291812687467119, -7.0, -7.0, -7.0, -7.0, -3.478159686911935, -7.0, -7.0, -7.0, -4.78090749382419, -7.0, -7.0, -7.0, -3.6961641031417938, -7.0, -7.0, -3.9841783874885084, -7.0, -7.0, -7.0, -7.0, -5.003107093215893, -4.117944868803997, -7.0, -4.684836388525229, -4.627898155557663, -7.0, -4.337658891026142, -7.0, -7.0, -7.0, -4.547454710572725, -2.9399246544550244, -7.0, -7.0, -7.0, -7.0, -3.9380047853444586, -7.0, -4.211173956728494, -7.0, -7.0, -7.0, -7.0, -7.0, -4.471144965160633, -3.917058907196864, -4.024742145874638, -3.3830969299490943, -7.0, -4.468583616860806, -3.649334858712142, -3.282924073246148, -4.051962449783047, -3.240798771117331, -4.460409174486291, -2.6618915263256966, -2.3119555770286806, -4.159221183790382, -3.822266176981333, -2.4235129951027297, -7.0, -3.678047714275594, -2.9916690073799486, -2.9585638832219674, -3.5711845677336043, -4.395116622747174, -7.0, -7.0, -3.9555653103685438, -4.285530586698769, -7.0, -7.0, -7.0, -3.0062520513693647, -3.8473543181408956, -7.0, -7.0, -7.0, -7.0, -7.0, -3.501333178645566, -7.0, -4.189399065777632, -7.0, -3.768416088216332, -3.8816699076720615, -3.582528699729632, -4.027254446759137, -3.3609718837259357, -3.0797042363088907, -4.262849603407645, -7.0, -3.390558578656912, -7.0, -3.2334191932136345, -4.319959229070181, -4.020651268004342, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8323385677415485, -2.285182108568106, -2.697308615276485, -7.0, -7.0, -3.1101593173871143, -7.0, -1.7893594719752786, -3.2814878879400813, -3.355962079458681, -7.0, -3.1518735616556226, -3.1252372114756253, -3.3420276880874717, -7.0, -4.164650215934297, -7.0, -2.921017243207157, -7.0, -7.0, -3.858537197569639, -7.0, -7.0, -3.4825877695267677, -2.3560258571931225, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7976587145026497, -7.0, -7.0, -7.0, -1.7437922504744756, -7.0, -1.6386537936044188, -7.0, -2.977266212427293, -2.4775805826121924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8026027095457597, -7.0, -2.256830895064795, -2.6044260689687695, -7.0, -7.0, -2.493968958417453, -2.1858644078490883, -7.0, -4.1825002473792, -7.0, -7.0, -3.6580113966571126, -2.3462225361009863, -2.575115649019939, -2.6582234545138173, -7.0, -7.0, -7.0, -7.0, -3.3283796034387376, -3.8546703318953357, -7.0, -2.623766000133931, -2.6469224244915, -7.0, -7.0, -2.437221902399778, -2.7274420645374544, -1.4372999419590848, -3.5482665451707454, -2.0470378042585065, -2.573188181839261, -3.522900459461583, -7.0, -3.233721143084592, -7.0, -3.4348881208673157, -7.0, -7.0, -7.0, -7.0, -7.0, -2.772871562650226, -7.0, -3.845829520066492, -7.0, -3.594309661839646, -3.6580949067971456, -7.0, -2.824451270036613, -7.0, -2.1503909028621253, -7.0, -2.404755990537958, -2.2445395004217272, -7.0, -7.0, -2.700126581535961, -2.61874519875888, -3.1851086606334373, -3.3658622154025553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5776066773625357, -7.0, -3.031408464251624, -2.8415680152280833, -7.0, -7.0, -7.0, -2.8834721588455867, -7.0, -3.0875448095324267, -7.0, -3.448551739201578, -3.8457799671118895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5605575122983906, -7.0, -7.0, -7.0, -7.0, -3.275886960301226, -7.0, -7.0, -7.0, -7.0, -3.4573519461106943, -2.8535461212539044, -7.0, -7.0, -3.564014726029118, -7.0, -7.0, -7.0, -7.0, -3.7594789799413166, -4.054823640146561, -4.039433949521653, -4.346059433052574, -3.197568194186736, -1.8706163838969008, -7.0, -3.6412162335803266, -2.206397870813696, -2.810023828472548, -7.0, -7.0, -7.0, -3.7372721765355434, -7.0, -2.7351034471081364, -2.736216041254522, -7.0, -3.7142962221969014, -2.4907548557145915, -7.0, -7.0, -7.0, -4.067219688974141, -3.8778702482588185, -4.344254692556935, -3.396249832845416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.084254459111229, -4.337099696361683, -3.593618308129536, -7.0, -2.3717428547789363, -7.0, -7.0, -3.466255768142727, -3.876025291494317, -3.709948016510761, -7.0, -7.0, -3.9112286531507197, -4.052963128755503, -3.7599698575543075, -2.2148997304621423, -4.381115080709851, -2.9343053225262477, -2.794345434221981, -3.0014583573925644, -3.871378315564175, -3.1248482491651344, -7.0, -7.0, -7.0, -4.339033840865832, -3.569178764933307, -7.0, -2.374987297588018, -7.0, -4.037027879755775, -3.6773148918608625, -7.0, -2.811999807700087, -7.0, -7.0, -2.338054216677949, -1.8963541694238766, -7.0, -4.070665753453728, -7.0, -4.0408791245157865, -2.9669890483053907, -4.0668102756258335, -7.0, -7.0, -4.381006719296579, -7.0, -3.909876817990393, -2.0164082880213403, -7.0, -7.0, -1.965233253817691, -2.7896688311627806, -2.7758095916368664, -4.037047819356885, -4.335838869579954, -2.979948797120537, -4.061659775062183, -2.958453614214925, -3.120348760073331, -4.340622555361112, -1.7542390929782323, -4.047761471896603, -7.0, -7.0, -3.5323296410790315, -4.337559087628736, -7.0, -4.357038666819455, -3.3654369284633194, -3.0411615134980985, -3.869055618701908, -7.0, -7.0, -4.356312741150645, -3.5441157663965743, -7.0, -7.0, -3.6706354297483315, -3.791795877259999, -3.1516421992299084, -3.873436863222037, -2.8496000462005777, -2.288234616162357, -7.0, -3.9729430081055686, -4.3469589986735295, -3.799880813751481, -4.3537624030672, -4.080157310970184, -3.288902429348888, -7.0, -2.2710930605031194, -3.122965927916578, -3.7823651122256696, -7.0, -7.0, -3.186400965372376, -7.0, -7.0, -7.0, -7.0, -7.0, -3.462955823628693, -3.9481357374421178, -2.4685319401840777, -2.984377272063356, -3.0248764311607497, -3.097589246848332, -7.0, -4.04008784346988, -7.0, -3.668572269184558, -3.404989127064217, -7.0, -3.864965705184916, -7.0, -2.478831585049216, -4.3370197526004075, -7.0, -3.323308364436474, -3.077750290941176, -7.0, -3.8803180615942368, -7.0, -4.375901268009488, -3.528402437953617, -7.0, -3.312977843808971, -4.3610475381955816, -4.044186850767364, -2.6656769286187187, -7.0, -7.0, -7.0, -4.348927619178392, -7.0, -3.8640955734242475, -7.0, -4.170833551085677, -3.6433737066738225, -2.6124162045705797, -7.0, -2.991357361812571, -3.0474228880808245, -7.0, -4.415390738182574, -3.700790221374347, -7.0, -7.0, -7.0, -3.886735064575406, -3.655330558009341, -7.0, -3.084269789225843, -7.0, -2.2592074234859556, -7.0, -2.8556056771307627, -3.5209137773470296, -7.0, -7.0, -4.219283192112123, -7.0, -4.1301085203609365, -7.0, -7.0, -7.0, -7.0, -3.9508352475190938, -4.370956964416454, -7.0, -7.0, -4.643274974211101, -3.85105950643604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9221716433242486, -3.500024292033634, -3.087325333113581, -7.0, -7.0, -3.868428902768081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8607451539354347, -7.0, -7.0, -7.0, -7.0, -7.0, -4.346900388113341, -4.03462845662532, -7.0, -7.0, -3.6650553925144296, -1.9570631956962383, -4.143046043337588, -4.3625201722887965, -4.036928168015719, -4.335939069031729, -3.26030994579492, -3.8903837546984503, -2.662970206395096, -7.0, -3.8612415964935445, -3.1196051722007563, -3.7391568368159476, -4.041116227969485, -4.492425112776086, -2.6853508197908234, -2.540789578241321, -4.121477770204095, -3.4080702858871854, -3.015340700301741, -3.233386663010114, -7.0, -4.355911050526753, -3.9053100621160857, -3.777046013407733, -7.0, -3.739770065592548, -4.356236257289767, -7.0, -7.0, -7.0, -4.068927611682072, -4.473340964185936, -7.0, -4.078855402979768, -4.35905722763489, -3.4240367997738432, -2.090984331084246, -3.7375901662857216, -3.03926402233583, -7.0, -4.349549483586635, -7.0, -7.0, -4.18019758233534, -7.0, -7.0, -7.0, -7.0, -4.071034675054152, -3.065182963862193, -3.3779736964389593, -7.0, -7.0, -7.0, -2.938132192894469, -3.9275927579492365, -7.0, -7.0, -7.0, -7.0, -7.0, -4.042516447524275, -2.204337745500236, -7.0, -4.352645518668972, -7.0, -3.6487892135944495, -2.378125480538288, -2.589003893874719, -2.6993153798961673, -3.569744443109588, -3.961373627594801, -2.8378207563763533, -3.5895187615052655, -7.0, -4.049954148022047, -7.0, -4.392573856408141, -3.9595183769729982, -4.423491631454581, -7.0, -7.0, -7.0, -3.676437528972767, -7.0, -7.0, -7.0, -7.0, -7.0, -3.683595498456455, -7.0, -7.0, -4.481600264553629, -4.905202028662319, -4.600864036309839, -7.0, -4.084200799448233, -4.3507615005427285, -7.0, -3.6654871807828107, -3.908207911377373, -4.487477756438898, -7.0, -4.3157919753496214, -4.565753396565981, -4.303613586003601, -4.4725443682498565, -4.328185860813199, -4.835100544787736, -4.719795170658459, -4.505041391125465, -4.1436808323706815, -7.0, -4.168841090364729, -7.0, -4.441538038702161, -3.208377364442061, -7.0, -4.222430314660491, -4.563219955576987, -4.37032800777951, -3.444217143549448, -4.55194988078541, -3.7582556676825742, -4.3252487652875375, -4.566178134479448, -7.0, -4.52310886038063, -7.0, -4.21830788296991, -4.261631565092629, -2.5444674536166065, -4.35071308475223, -3.107843280562333, -3.3826362538303836, -3.4196554065124327, -4.110000151133113, -3.2482389961733467, -3.0479605907788403, -2.828409743123176, -3.714078164981856, -4.386588133907789, -4.387967907442333, -2.858818584987489, -2.894303472796426, -7.0, -3.3641219830507363, -3.365612764228607, -7.0, -3.4384315856144934, -3.2895695656943067, -7.0, -7.0, -2.7367107503568193, -3.0123253976287834, -3.6595514860340135, -7.0, -4.4169399175410415, -7.0, -3.6491712371470424, -7.0, -2.743169825496728, -3.2415726926544917, -3.877797367506874, -7.0, -3.6711522644269463, -4.08181520063228, -3.682564456357042, -4.402278581895561, -2.633828187038318, -7.0, -3.586344904524066, -2.4980498652488414, -7.0, -3.2378348616764314, -3.649537352421843, -4.094366298336134, -3.5295444172650554, -4.343684248831774, -3.923295840655504, -3.343394525079649, -2.921399787918667, -7.0, -7.0, -7.0, -7.0, -7.0, -2.744284383998204, -3.2246995121061377, -2.715657201884874, -7.0, -7.0, -3.7326450149540165, -4.374216605428374, -4.366385596953946, -7.0, -3.7293754038488665, -7.0, -3.84464800191945, -3.324436797945258, -7.0, -7.0, -7.0, -4.367914738793752, -3.810400556101999, -7.0, -4.345432547499147, -4.435015741932561, -7.0, -4.0473138158153885, -7.0, -3.612359947967774, -7.0, -4.197459753794603, -7.0, -4.33976934376873, -4.78335321959462, -3.907665102853612, -3.875482193380458, -7.0, -7.0, -3.270897092861874, -7.0, -3.5375672571526753, -7.0, -3.881859970905687, -2.598254368247123, -7.0, -7.0, -7.0, -3.8811563210755637, -4.1145609474233265, -7.0, -4.361142087753333, -3.4498446565674765, -7.0, -3.460465587356657, -2.6431846848842975, -4.56696751468097, -7.0, -3.4384192768514645, -3.158380232520566, -7.0, -3.701678980536721, -7.0, -7.0, -7.0, -3.891370174696148, -2.8428684115952803, -3.5370811569459977, -4.099646117123231, -4.358886204405869, -7.0, -7.0, -7.0, -4.433993721794708, -7.0, -3.8917604014566716, -2.8160518172305298, -7.0, -7.0, -2.8037269968989373, -2.416921167679809, -3.705401815129262, -7.0, -3.7722588216951434, -4.382827209736365, -4.426136988786424, -7.0, -3.550826031030187, -4.412057146690156, -7.0, -7.0, -7.0, -7.0, -4.167592989776093, -4.382197210377454, -3.3081762173504505, -7.0, -3.4619169336782014, -7.0, -7.0, -3.1827461425895804, -7.0, -3.4260953830271657, -7.0, -4.060980983566012, -7.0, -3.367135583118011, -3.810585322955202, -4.4163741915354215, -7.0, -3.2826221128780624, -2.586781246747011, -3.5840766803638173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.339868640584651, -4.139406770441792, -7.0, -4.366180057989114, -7.0, -7.0, -7.0, -4.041945072145264, -7.0, -7.0, -3.8972237615049465, -7.0, -4.0550851346254175, -7.0, -4.410709764916316, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1775364999298623, -7.0, -4.347505649475902, -7.0, -7.0, -7.0, -7.0, -7.0, -4.370846038235976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2095418220166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40426340205091, -7.0, -7.0, -4.492593947407737, -7.0, -7.0, -7.0, -7.0, -7.0, -2.863322860120456, -4.8653527487813975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.88570038012833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.129765060307425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7182940414897097, -7.0, -7.0, -5.125116760853404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.178545314511007, -7.0, -7.0, -2.7256394326735376, -5.230165260011151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9690896029549214, -7.0, -7.0, -3.143014800254095, -7.0, -4.376449204597316, -7.0, -7.0, -7.0, -7.0, -3.428674625648206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.693287157005656, -7.0, -2.91539983521227, -3.1348780451951295, -7.0, -4.294527948909792, -7.0, -3.4302363534115106, -7.0, -7.0, -7.0, -7.0, -3.157607853361668, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.23957473708321, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3802112417116064, -2.88024177589548, -7.0, -3.0930713063760633, -2.7261836614188204, -7.0, -4.037161304267523, -7.0, -7.0, -7.0, -1.9358735272690675, -7.0, -7.0, -7.0, -3.616790486329716, -7.0, -7.0, -7.0, -7.0, -4.030996578989978, -7.0, -7.0, -7.0, -7.0, -2.65359838184329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.911157608739977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.570426178358973, -7.0, -7.0, -7.0, -2.8305886686851442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.591064607026499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7382518980637593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9370161074648142, -7.0, -7.0, -7.0, -7.0, -3.7743709598499167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.502882116864084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6545615547417434, -7.0, -7.0, -7.0, -7.0, -7.0, -3.124178055474675, -7.0, -2.6321197138685406, -7.0, -2.787460474518415, -2.828015064223977, -7.0, -7.0, -7.0, -7.0, -3.9230885154423993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.283527364861694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7782236267660965, -3.2610248339923973, -3.0324844498918937, -7.0, -5.351217635001813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.330920830595236, -3.3912880485952974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.385302339856317, -4.9209935946648535, -7.0, -3.483301952358167, -4.416124372065471, -3.767304317453273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.156851901070011, -2.376576957056512, -1.8586823667982821, -2.520483532740792, -3.899519564476793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2878465002495174, -7.0, -7.0, -4.962141946433934, -4.679436982175699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.513940821687035, -5.487782972714756, -5.007349990324425, -7.0, -2.418761495327949, -7.0, -4.65389237604383, -7.0, -7.0, -4.072286669509892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.897577611885395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.703061987128565, -7.0, -7.0, -3.8627672425040847, -7.0, -3.2753113545418118, -7.0, -3.4358443659844413, -7.0, -4.796380036631384, -3.600755149639618, -7.0, -7.0, -7.0, -7.0, -3.652536418593025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5082603055123345, -7.0, -7.0, -7.0, -7.0, -4.595055089759304, -7.0, -7.0, -7.0, -7.0, -2.8502376796666677, -7.0, -7.0, -7.0, -3.174931593528443, -3.770483809431108, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5251744278352715, -3.4983105537896004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024802213153309, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.629256651581539, -3.60400993241223, -7.0, -4.3028285882602555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.527784518264025, -7.0, -7.0, -4.243831461981921, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3296012483565187, -3.6535983818432896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9745116927373285, -7.0, -7.0, -3.1809855807867304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.195595263005526, -2.9694159123539814, -2.9523080096621253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0751087964165, -7.0, -3.4619110156367996, -3.2196219444266507, -3.029273068295503, -2.34286491861272, -2.3557126765908625, -7.0, -4.08192310435106, -2.7381857702399692, -7.0, -7.0, -7.0, -3.5837168320118957, -2.0507824102259415, -2.8640920800785654, -3.481442628502305, -7.0, -7.0, -7.0, -2.5865343548445856, -2.322265765707363, -4.062055247375354, -2.8170968897914963, -2.639226611744344, -3.7897921677306754, -3.473705886887772, -7.0, -2.9749391317894913, -3.31983447960114, -7.0, -3.0515281051482557, -3.7897921677306754, -4.068556895072363, -7.0, -3.6018427897820984, -2.9423718807196844, -4.073461729279835, -4.152624639447619, -7.0, -2.6212087487493636, -4.077404246398098, -3.0439237974450255, -7.0, -4.080806804334363, -3.123655674438122, -2.8898267412346583, -2.6454503417761015, -3.473961150455583, -3.789404420511141, -7.0, -3.494189391861649, -3.031105362355941, -2.289863258240586, -3.1437328231386923, -2.2405950430295083, -2.9839268369509955, -4.079434510633743, -3.6092741724045876, -2.694793164520534, -4.088029717842714, -4.0908573959815335, -7.0, -7.0, -3.482337527813187, -2.828220342013904, -2.79466505233476, -7.0, -4.067182485523405, -2.280456529745993, -7.0, -3.3737786750385, -3.0743099747196676, -7.0, -3.840262964417612, -2.864649595666176, -3.766933093837284, -3.826884298707612, -7.0, -7.0, -2.792951708250132, -3.518941443661678, -4.076421967360593, -7.0, -3.4448875712579383, -7.0, -3.4553017716570764, -3.6888349324833243, -2.7899163079479923, -7.0, -2.8173730283240284, -4.164769103009198, -2.936030924772797, -7.0, -7.0, -4.140225125266448, -4.112068504268197, -3.6552985433779526, -3.573683693093798, -4.071882007306125, -3.226170123398999, -3.3084932702271614, -7.0, -7.0, -3.312790692146442, -7.0, -2.954885432549936, -2.7782890997680427, -2.4865721505183567, -2.2681748632088237, -3.17868923977559, -3.0320690441216103, -3.794627444664508, -3.799478398837981, -2.121146829862744, -3.1348851196049536, -7.0, -4.124504224834283, -3.688983090121954, -2.7895525103083876, -7.0, -3.461515200596466, -2.9174927009618066, -7.0, -3.6550663666946304, -4.083574279673991, -3.006236195997821, -7.0, -3.2409546501190056, -3.33637395293205, -4.0687052196919415, -3.4824090401601135, -2.1401483460126145, -2.71720804477317, -7.0, -3.7640266076920375, -3.3912628479986675, -7.0, -7.0, -7.0, -3.7679346702804657, -4.064195835864643, -3.1628430939207037, -2.289291592392737, -3.228674059346633, -3.5046339471684735, -7.0, -7.0, -7.0, -3.595606434865603, -3.7971636301993072, -3.750720476243363, -2.670319108447816, -7.0, -7.0, -4.0858968111315885, -2.8906009783510855, -7.0, -3.7616271845615827, -3.815145895436368, -3.8010605298478555, -4.069223957297052, -3.8016437748849454, -2.3566062594800776, -3.055378331375, -2.8999813462798674, -3.1135088405328193, -2.808094505739662, -2.82910054658403, -4.080446094611049, -2.2959701796424143, -3.474871583227693, -7.0, -7.0, -7.0, -3.5982066794435963, -7.0, -7.0, -2.967637107975338, -4.075364446373285, -2.9744109367049494, -7.0, -3.436719078227576, -2.5919058985654106, -7.0, -3.12205196263325, -3.39776625612645, -3.5001335167117813, -4.130783914588957, -3.805296916157985, -3.0342941524891125, -3.25170772980846, -2.901390202114049, -3.2848253676580463, -7.0, -3.419735518017542, -7.0, -3.261219599440868, -2.3823839721485935, -4.219283192112123, -7.0, -7.0, -4.063858548853072, -1.4620131312611186, -2.510870934786189, -1.897313835389292, -2.8185924177996933, -2.22396003039246, -2.3433692002275315, -2.4803663095328092, -7.0, -3.3541724896573473, -3.186892154330931, -2.215469320738178, -7.0, -4.063933524163039, -3.7741883834475543, -7.0, -7.0, -7.0, -4.067925949681522, -3.7806053058389697, -3.2061960072022204, -3.3298625829237687, -3.136791006615146, -2.7899004585544813, -7.0, -2.929601364062661, -3.7800291273373383, -4.096249383189612, -4.0646825662285115, -7.0, -3.043526008270723, -2.9940801570392517, -3.6306312440205, -7.0, -7.0, -3.5918434112247843, -3.5959001996400763, -4.062995401186467, -3.591064607026499, -3.155808206708329, -2.2938892026246065, -7.0, -7.0, -7.0, -4.07258073264895, -2.9710616467698157, -2.9063709621129483, -7.0, -3.6088111908309735, -1.7969056392619156, -3.813547631336185, -3.3901778366727955, -3.5486841714830053, -7.0, -7.0, -7.0, -2.3465182625523116, -3.6434197741427568, -2.2924108586634353, -7.0, -2.6094897826420684, -4.090363879471718, -3.470924753299968, -7.0, -2.0490704791043313, -3.5222355133379852, -2.874675052177361, -2.8505663306447584, -3.07995263964635, -3.2010555635620643, -3.7840107110782126, -7.0, -7.0, -4.146686055647526, -3.140445188347875, -7.0, -7.0, -3.7993405494535817, -3.294613170667107, -2.6014828106002095, -7.0, -3.2794387882870204, -2.911712334172279, -2.71589893337299, -2.3460057534922925, -2.281515419366247, -2.9425575391636456, -2.8141557107253563, -4.070296518197765, -2.289042036469909, -3.465457210575713, -7.0, -2.6695202631671413, -2.938152654633226, -2.9615505217181, -2.8129740928826443, -2.74404048632376, -3.115943176939055, -1.8304467756482372, -2.34664631757689, -3.5611432676414223, -2.675848815423839, -7.0, -7.0, -4.061829307294699, -3.4478038225123706, -2.6509928005631194, -7.0, -4.08339510788965, -3.358759477097732, -4.073571728304925, -3.0799373127778655, -3.6001012556913907, -3.304598226343637, -3.608062253333116, -3.394696777891884, -2.953418555773891, -4.0853262624239886, -3.0156740440360554, -3.404234866653423, -3.461456300498588, -7.0, -3.092319541462881, -2.549737219231734, -2.618328772336617, -7.0, -3.0110415256389502, -4.071403283531469, -3.0840397806679536, -2.477451294677366, -2.87146679000413, -3.0074194882565544, -4.066176785772006, -7.0, -3.1799027104409694, -7.0, -3.7825801094983293, -3.308279770272725, -3.5896983300424856, -3.5989727919628125, -2.372118250386322, -4.062393937253195, -7.0, -2.869757870745095, -3.1930812904776325, -4.473939276599178, -3.07137210569682, -3.952349553703281, -3.0487925259244864, -3.6693168805661123, -3.6203963453512844, -2.297941956450323, -2.7686803765792845, -3.1784301399477375, -4.0180344027045285, -3.7232846023981594, -4.140676919956626, -2.641350150325749, -3.9093955459671053, -4.16354896490181, -2.9075813039928935, -3.7379277754753852, -3.244758029080568, -4.172748838982743, -4.203143419397126, -3.998912904358786, -3.110156642805923, -3.775537634780957, -4.512123826722944, -4.054191576796431, -4.422737533946394, -7.0, -2.8699169070651678, -3.561782630034868, -3.654435722700975, -4.507680500010818, -4.426820199963355, -4.1160429268492065, -7.0, -7.0, -3.693232151688388, -3.944811558558846, -2.9177138502369337, -3.3119303676551777, -3.6488102126265374, -3.2991360121936095, -3.320030828319093, -3.4955443375464483, -3.908980689485702, -4.126553477961279, -3.2014826209704887, -2.6762154147284902, -2.1655905154476702, -2.3671864402504426, -2.6905352070203894, -2.6357276141635664, -3.62797998982998, -3.5852350633657752, -4.2494674142722895, -3.591621038213319, -7.0, -3.762516016666799, -7.0, -4.090751689644903, -3.1568957026324207, -3.15253949843463, -4.159471942771147, -3.1699681739968923, -2.8051200889239234, -2.732686115594294, -2.9716837962818903, -7.0, -4.193481450939115, -2.5152491909615082, -3.6631667570922044, -7.0, -2.925922465342976, -3.6275137828715196, -2.9465007841151127, -2.856815171198087, -3.183586154317256, -7.0, -2.1288224143721775, -3.7184186418296554, -4.086181804649749, -2.893955407756366, -3.0919199043047665, -7.0, -2.436157032337598, -4.077549580451794, -2.493225621510431, -2.906107664694548, -3.644340098826323, -7.0, -7.0, -7.0, -3.4657545198338777, -3.9109710618483087, -2.7743129733104617, -2.9221413362079565, -2.3806094943593243, -4.071440127177888, -3.2115877040189345, -1.7843966678397087, -3.6550743748537613, -2.5139164381268553, -7.0, -2.479850035212238, -3.766040860381389, -1.8934722806395246, -2.750194009703799, -3.781575877033917, -4.122903649173324, -4.389325591817493, -2.4279032320494807, -2.748547943404879, -3.3923099598928186, -3.6035052322021435, -3.3880758153666863, -3.0398105541483504, -2.7043292903498783, -2.712279215017366, -2.880843667034579, -4.062205808819712, -2.2576170469974515, -3.7658175153099185, -3.769192637796977, -2.9791014989115605, -3.023753872818503, -2.9785709156211735, -7.0, -3.4435758797502576, -2.300630970538965, -2.4647449647018136, -2.4631772812264816, -7.0, -3.20194306340165, -2.3143674461762864, -3.764400322956388, -3.468495024507069, -4.131586588239808, -2.8727045811704075, -2.9460153489984524, -3.6028915923882656, -2.877710029878129, -3.492690561149542, -4.083359264660818, -3.2685111110587712, -2.9749719942980692, -2.935572270237632, -4.0661394928706995, -2.7157348093720355, -2.856305866433299, -7.0, -2.690751843657941, -3.4778444763387584, -3.5935075893317654, -3.3753663634022653, -2.658175933306894, -2.0892217923700414, -3.104487111312395, -2.8145660465211737, -7.0, -3.781396305196791, -4.25956998964356, -3.4779528557799653, -2.6986888993039364, -3.231032454528749, -2.6159171891478232, -2.696556075836984, -3.3223571441183184, -7.0, -2.574031267727719, -2.3204395467030783, -1.7936260659291523, -3.2826868363479145, -1.4665183710211236, -2.463083841024901, -3.1773528270652496, -3.3197304943302246, -2.132754928671835, -2.8527848686805477, -2.6076625217766205, -3.1922537448805817, -3.588980942047111, -3.7621907399180134, -3.8327004709605674, -3.3676975062069, -3.787956123283932, -3.3664852172048483, -2.13469679217285, -3.8208579894396997, -2.260894630279264, -2.3588058219694283, -2.6142309497578875, -2.694605198933569, -4.08109515656134, -2.747648195386783, -7.0, -2.72714845883997, -1.7527194376029664, -3.6012177295644547, -4.064345657162171, -3.411922596466199, -3.315025199312605, -2.1943737331623745, -3.4848334799814933, -4.076567630444938, -7.0, -4.064120905829622, -7.0, -3.4641540841432814, -3.5932122011334005, -2.77832593141989, -2.6006326194945357, -3.117602691690084, -3.3001605369513523, -3.178869079308535, -4.071145290451083, -3.59904568462527, -3.3869980727100555, -3.602963830326207, -3.433449793761596, -3.151437953506484, -2.606381365110605, -2.1692737957643833, -3.5919267717577323, -3.606667933568316, -7.0, -3.8615941446438655, -7.0, -7.0, -2.6106192208808556, -3.60859734044574, -3.3853202242009113, -2.7792657147626283, -3.361948074467151, -2.5774279658572614, -7.0, -3.5928426831311002, -3.42719388446982, -3.7647737169110402, -2.5194090466884345, -2.958836809849585, -7.0, -7.0, -7.0, -7.0, -1.6782147827453995, -7.0, -7.0, -2.680335513414563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8866598978612026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.855801728654794, -7.0, -7.0, -3.6385890832927172, -4.457605937214085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.839440335651648, -7.0, -7.0, -7.0, -2.9995654882259823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304845831746371, -7.0, -7.0, -3.773347541980823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.446273030751088, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6024940688072813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.384545412762144, -3.500785172917456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8397921844453293, -7.0, -7.0, -7.0, -3.9600424557268417, -7.0, -7.0, -7.0, -7.0, -4.372930404888793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.75226362009077, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3981136917305026, -7.0, -7.0, -7.0, -4.293384655649437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.403977963669355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.061050168283154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3439990690571615, -7.0, -7.0, -7.0, -7.0, -7.0, -4.150828560517062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.653937662376219, -7.0, -7.0, -3.5512059437479064, -3.083860800866573, -7.0, -7.0, -7.0, -3.0265332645232967, -2.823474229170301, -7.0, -7.0, -7.0, -7.0, -7.0, -2.378397900948138, -7.0, -7.0, -4.063858548853072, -7.0, -3.7350397050337207, -7.0, -7.0, -7.0, -2.7671558660821804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.712727968579756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941138594309685, -7.0, -7.0, -7.0, -7.0, -7.0, -2.828015064223977, -7.0, -7.0, -7.0, -7.0, -3.7601207852645677, -7.0, -7.0, -7.0, -7.0, -4.30903366750414, -7.0, -4.22927217882129, -7.0, -4.708539868627965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1458177144918276, -7.0, -7.0, -7.0, -7.0, -3.3854275148051305, -7.0, -5.130963842466372, -3.5747255835940734, -7.0, -3.9780891730561425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.483587296968894, -7.0, -5.828217644706376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3708830167776056, -7.0, -7.0, -3.586249638866042, -7.0, -7.0, -4.080788775961754, -5.2730707536224655, -7.0, -7.0, -4.716370668196387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8842287696326037, -7.0, -7.0, -4.197969367916172, -7.0, -2.187520720836463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.064918247161494, -7.0, -7.0, -7.0, -7.0, -7.0, -3.978500069311459, -3.447158031342219, -7.0, -7.0, -3.171973141806358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.487511679953053, -7.0, -7.0, -7.0, -2.6848453616444123, -4.954005995831296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.896520706103291, -7.0, -7.0, -4.942037832194369, -4.954459602411555, -7.0, -5.346937509053203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464325575532697, -2.9903388547876015, -4.1747573763106605, -7.0, -7.0, -4.035069344421104, -7.0, -7.0, -7.0, -7.0, -7.0, -4.795045370421125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4433151518310963, -7.0, -2.9360107957152097, -7.0, -7.0, -3.941883951154944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.971461405024587, -7.0, -7.0, -3.499549625905149, -3.1696744340588068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.267500259393266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2626883443016963, -7.0, -7.0, -7.0, -7.0, -4.326243665994105, -3.2814878879400813, -7.0, -3.696465603994037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3334472744967503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1332194567324945, -3.436639631692661, -3.4497868469857735, -1.8725535538998603, -2.6605266883136225, -3.7515100502700416, -7.0, -2.9970677926694376, -7.0, -7.0, -7.0, -7.0, -2.5335752742031707, -3.800235789327354, -7.0, -7.0, -7.0, -3.7399676967595092, -3.1975400029942715, -2.8479494873496183, -7.0, -2.231178215389961, -3.014571167632066, -7.0, -3.760497875226527, -7.0, -3.004812518287239, -3.8055008581584002, -7.0, -3.5721244644195123, -7.0, -2.966063474430522, -3.7460890430562004, -3.289514631590605, -3.000062037637689, -7.0, -7.0, -7.0, -2.517675648876312, -7.0, -3.293047569823077, -7.0, -7.0, -3.553822366753853, -3.0994043723455422, -3.193958978019187, -3.459844642388208, -3.4888326343824008, -3.612571954065176, -3.500648063371912, -2.1711736885434303, -2.7233897865240726, -2.9876662649262746, -2.9380190974762104, -2.9703081258859316, -7.0, -2.8779469516291885, -2.8478529757347544, -7.0, -7.0, -7.0, -7.0, -7.0, -3.462397997898956, -3.6763800207200426, -7.0, -7.0, -7.0, -3.737113094305961, -3.4153072922255676, -3.189817712495049, -7.0, -3.8862650590297565, -3.4976991031806923, -2.7424894645817752, -2.4114994527485885, -7.0, -7.0, -3.6207258227036743, -7.0, -7.0, -3.7335182514344876, -7.0, -7.0, -3.307282047033346, -7.0, -3.1352598985156583, -7.0, -3.4231515058214765, -3.6263916993864376, -7.0, -7.0, -7.0, -7.0, -3.832061614590727, -7.0, -7.0, -7.0, -3.4362762623407903, -7.0, -7.0, -7.0, -3.1168491528226485, -7.0, -7.0, -2.5548927794398435, -3.36506658974845, -2.7967251246712355, -2.492024795216319, -1.8885226987424604, -2.7991336933020627, -7.0, -2.26306648231497, -1.7354084292983945, -2.6187719880431564, -7.0, -7.0, -3.9682961150462557, -3.7895807121644256, -3.2987221136057077, -3.058011047472369, -7.0, -3.3774519630245745, -7.0, -3.6930775756475187, -3.8008544915035607, -2.9880012394757802, -2.5226856826046076, -7.0, -7.0, -2.343900712249606, -3.202597285692431, -7.0, -7.0, -3.975232615453934, -7.0, -7.0, -7.0, -3.1434832106700616, -3.735758537443739, -4.195927313597225, -2.973421763928828, -4.284949321403674, -3.6917885244026984, -7.0, -7.0, -7.0, -2.9751253198007745, -2.6273658565927325, -7.0, -4.068556895072363, -7.0, -7.0, -7.0, -3.5585667636507035, -7.0, -7.0, -2.5589610673320826, -3.335591612045706, -7.0, -3.2116544005531824, -2.264424262056547, -3.1758016328482794, -3.8682916880178557, -2.755366611633324, -3.3992928980439108, -3.5251744278352715, -3.7696726640554927, -1.7139310798546632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5802078876560617, -3.759214431234244, -3.6033248398913864, -7.0, -3.7100326990657537, -2.4493115793910456, -3.3103392197987525, -1.9072564622406847, -3.4697729403826645, -2.7327956982893293, -2.318957251879195, -3.343802333161655, -2.7206680684158506, -2.760559549696057, -2.9755630946293388, -3.1217473836406597, -7.0, -3.1380318847204434, -7.0, -4.144325078400488, -2.2369149636275054, -4.1301085203609365, -7.0, -1.4620131312611186, -3.7350397050337207, -7.0, -1.4071338845344867, -2.043395584089776, -1.587734841127766, -2.385755183074108, -2.6226284261293253, -2.816783452824119, -7.0, -2.7899917812740584, -3.2382343402834737, -1.8412490238433403, -7.0, -3.7351995484223135, -7.0, -7.0, -7.0, -3.765594055319445, -3.743666521446213, -7.0, -2.97236816423355, -3.9455670534423883, -3.967196842000648, -3.734731507480199, -7.0, -3.761927838420529, -7.0, -3.198931869932209, -3.736794754924361, -7.0, -2.3584261304034126, -3.8258802989361795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7445276734725663, -3.3518606992882605, -2.0088966805430557, -7.0, -7.0, -7.0, -2.907411360774586, -1.9255330877635497, -2.1571839446097067, -7.0, -7.0, -2.1221485231691317, -3.5358002908248976, -2.8662085483579443, -3.1587393203027556, -3.1318751879725926, -7.0, -7.0, -2.537665967793588, -3.1488493429592204, -2.4632799957617206, -7.0, -3.1486874696646585, -7.0, -7.0, -3.758003009299799, -2.1828543360486603, -7.0, -3.3717757087299467, -3.2298950557747066, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5946687312953243, -7.0, -7.0, -3.7570922201189325, -7.0, -3.7545776560447304, -1.435209888081237, -3.7346398389876994, -3.156791368003929, -2.8982087790531406, -3.32688180000995, -1.3998254718868253, -1.2117962582834239, -2.988401009650151, -3.1527298904473486, -7.0, -2.7934142558243362, -2.964338214198132, -7.0, -3.2481695133068103, -2.9339931638312424, -2.6981316277119274, -2.7077298138434953, -3.1999118208915673, -7.0, -2.2833012287035497, -3.385725405263276, -3.917702074031228, -3.792811771248147, -7.0, -7.0, -7.0, -3.5514499979728753, -3.6596785560245753, -7.0, -7.0, -7.0, -7.0, -3.151308548182018, -7.0, -3.6986658917468582, -3.7795964912578244, -3.4956830676169153, -3.006513581462448, -7.0, -3.408742957890499, -3.865991800126275, -3.9238441992488444, -3.7802452838653524, -3.0940050223646494, -3.079201130870865, -2.997426102215431, -7.0, -3.012133913649598, -7.0, -3.9259821003271034, -2.867113779831977, -3.1653291327027926, -3.5499224041295117, -7.0, -7.0, -3.396780343144799, -7.0, -7.0, -3.7825442840100103, -7.0, -3.7610252517113727, -2.5184783696676294, -7.0, -7.0, -3.1993437186893927, -3.6929553268990984, -7.0, -3.6624272644527265, -4.752716670115188, -2.5848352855479284, -3.3988770730873177, -3.7396415570897896, -2.7131565574176917, -2.9833556143317885, -3.4744105358226856, -4.400106070428546, -4.457306491666998, -4.717936655596407, -2.713874964044091, -7.0, -4.115119364816148, -2.781922511200025, -7.0, -4.105612359686785, -3.9412131875853214, -4.618560575660246, -4.376175322717834, -3.4149065282950337, -7.0, -7.0, -4.703308577559542, -7.0, -7.0, -3.6329294614279912, -3.588226874130211, -3.9422396150016215, -3.637256175066493, -4.012119835804513, -3.839603729470837, -3.6305549918068194, -3.6201360549737576, -4.522939542252115, -7.0, -3.517318456171289, -7.0, -4.4131404376555805, -3.527730122124633, -3.4035323048494335, -3.978043493909963, -4.41982362360833, -7.0, -3.390201345934264, -3.055966089594232, -2.507693992654917, -2.5816485319957305, -3.2692119949493845, -2.8245789062256326, -3.8189513116401725, -3.731548476260331, -7.0, -3.7456992266025058, -7.0, -7.0, -3.9831750720378127, -3.79049627696711, -3.521517693337017, -3.0742475617285216, -4.7106478453622085, -3.7554937284151193, -2.7883451651521183, -2.9829492885744986, -3.7234191828331897, -7.0, -4.635632842395605, -2.8119872455616344, -3.5537819221196365, -7.0, -3.5690727925168053, -7.0, -3.3853347960853286, -7.0, -3.7272768587594616, -7.0, -2.684938712580087, -7.0, -7.0, -3.3139281203953006, -3.775018486890885, -7.0, -2.664205244538261, -7.0, -3.1701149694966517, -3.126207830557576, -4.3931187349197875, -7.0, -7.0, -7.0, -3.743901550485179, -4.0062092405376575, -3.073756261784487, -3.3831568450325724, -3.00455780640836, -7.0, -3.536747773889752, -2.2003064428510677, -3.568729599118429, -3.144885418287142, -7.0, -2.8464608251293324, -7.0, -1.8264516538547082, -3.3562649403160907, -7.0, -3.375114684692225, -3.485437481076301, -2.5920533256821177, -3.2034861742721255, -7.0, -7.0, -3.3408405498123317, -3.073131564940993, -2.575043441108574, -3.052822146939007, -3.443106456737266, -3.7315081835960253, -2.9271706808539353, -3.7415455167762093, -7.0, -4.346949230796109, -2.9316093963691396, -3.675477189270931, -7.0, -7.0, -2.771203913197322, -2.034785967937848, -2.6911920418198627, -7.0, -3.819478128362123, -3.181157317880606, -3.7385427409287852, -7.0, -3.868526886768204, -3.515873843711679, -3.9902944461284386, -7.0, -7.0, -7.0, -7.0, -3.8357539675193832, -3.0192053369187453, -4.314604473213435, -7.0, -3.0813473078041325, -3.3142360032351683, -7.0, -2.976189439230457, -7.0, -3.2722285058778144, -3.6316466629584196, -3.550411819008074, -2.3018772792906352, -3.418135498425232, -7.0, -3.5177235948337353, -7.0, -4.08019341942848, -3.7692295817365937, -3.560305243220961, -2.6459510217186626, -3.250420002308894, -3.0989896394011773, -3.810434155922673, -7.0, -3.048092051812372, -2.6511865508463828, -1.9779667032419643, -7.0, -1.5472866808111132, -2.5936736569452488, -3.3184390042001923, -3.805296916157985, -2.5416347058561004, -3.5034274846401083, -2.965000000666886, -7.0, -3.7401257369657306, -7.0, -4.144106973049323, -3.8948696567452528, -7.0, -7.0, -2.3106368275692746, -3.373341178041854, -2.9662758570396366, -3.2416872093953355, -2.8329192912697265, -3.287633800116223, -7.0, -2.983883913993666, -7.0, -3.0683250363930514, -2.1505044159392837, -7.0, -7.0, -3.8303319934519617, -7.0, -2.7486413997448866, -3.4820155764507117, -7.0, -7.0, -7.0, -7.0, -3.7405205860536648, -3.749040268703457, -3.098682174268404, -2.3287740580361573, -3.542514216281654, -3.766040860381389, -7.0, -7.0, -7.0, -3.4802944600030066, -3.7692295817365937, -3.5693739096150456, -3.8208579894396997, -3.045591884218734, -2.6496998632008384, -7.0, -7.0, -7.0, -3.6227837254272086, -7.0, -7.0, -3.0428140768022023, -7.0, -7.0, -3.2213620672035708, -7.0, -2.644206811219827, -7.0, -7.0, -3.859018143888894, -3.7393349601960795, -2.799570274125377, -3.3427515672308834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.132625565274591, -2.509202522331103, -7.0, -7.0, -3.727934167254398, -7.0, -7.0, -7.0, -7.0, -4.217325990227112, -2.875350696579289, -7.0, -7.0, -7.0, -7.0, -4.041609778130455, -7.0, -7.0, -3.207005670893413, -4.140717492997341, -7.0, -7.0, -7.0, -3.0565237240791006, -3.1986570869544226, -7.0, -4.389939444053016, -7.0, -7.0, -7.0, -7.0, -3.343014497150768, -7.0, -7.0, -7.0, -2.916278440573439, -7.0, -4.363815605606467, -7.0, -7.0, -3.3712526291249394, -3.171433900943008, -3.660675788338524, -7.0, -7.0, -7.0, -7.0, -2.5100979751883425, -3.8680403122108182, -7.0, -3.915030290259161, -3.807467375684278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590395947184013, -4.45374630677039, -7.0, -7.0, -3.4348881208673157, -7.0, -3.748498126613737, -3.1746411926604483, -7.0, -7.0, -5.126069685635017, -7.0, -2.1558716525157724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.452736852686558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3802112417116064, -7.0, -7.0, -7.0, -3.348791467560584, -4.381764682017124, -7.0, -2.476155081947642, -2.5737416415203174, -7.0, -2.9725766394194153, -2.076872040931254, -2.4885507165004443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3447024471171045, -7.0, -7.0, -3.04796676354869, -3.1997551772534747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.037067758042558, -3.443654067612905, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9375178920173464, -3.1981069988734014, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8452097013823283, -7.0, -7.0, -3.323870606540509, -7.0, -7.0, -7.0, -2.5728716022004803, -3.4302363534115106, -7.0, -7.0, -7.0, -2.975891136401793, -7.0, -2.8798104995449454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7273887392106926, -7.0, -7.0, -7.0, -3.4352071032407476, -2.6074279725546607, -2.517855418930029, -1.5649802815403844, -2.5631573474130365, -2.6263403673750423, -1.7804402596415618, -7.0, -7.0, -2.888179493918325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6358856852812727, -7.0, -2.911157608739977, -2.510870934786189, -7.0, -1.4071338845344867, -7.0, -2.6580113966571126, -1.4035242344113996, -2.2471546148811266, -3.15510820088631, -3.3845326154942486, -7.0, -3.4168068718229443, -4.058995093525416, -2.63233817685707, -7.0, -2.795880017344075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.921842481405858, -7.0, -7.0, -5.412104229422081, -7.0, -7.0, -7.0, -3.1818435879447726, -7.0, -7.0, -3.065206128054312, -7.0, -3.2692793897718984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9981998745389062, -7.0, -7.0, -7.0, -2.6314437690131722, -2.00108438129222, -1.5797835966168101, -7.0, -7.0, -2.999739345106568, -7.0, -3.0957271225559797, -3.527114111639805, -2.210853365314893, -7.0, -7.0, -3.7170668969538765, -7.0, -3.390038860415928, -7.0, -4.110530790384566, -7.0, -7.0, -7.0, -2.957998876560866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.485295438726089, -7.0, -7.0, -7.0, -3.215108581053093, -7.0, -1.601093818555942, -7.0, -7.0, -2.8577344348976292, -3.1936810295412816, -1.9363309201306227, -1.6917128259772847, -3.1681482627277147, -7.0, -7.0, -3.6879078003587713, -7.0, -7.0, -3.607669436688243, -7.0, -3.2652424686338004, -7.0, -7.0, -7.0, -3.547774705387823, -7.0, -5.22646650347807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.079946618441097, -7.0, -4.796220949422049, -7.0, -3.3274951622675926, -3.788846037218273, -3.4873505196555823, -7.0, -3.1367205671564067, -7.0, -3.559068334034537, -3.796851749049887, -3.735997884091794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0972573096934197, -7.0, -7.0, -3.249918186415877, -7.0, -7.0, -4.120025233114033, -7.0, -7.0, -7.0, -7.0, -3.7741335955563224, -7.0, -4.291468753334798, -3.7050764816562776, -7.0, -7.0, -4.307816826662431, -4.72029163965499, -7.0, -3.583028651429957, -7.0, -4.675200730890694, -4.321380918109828, -7.0, -7.0, -7.0, -5.388268205795572, -7.0, -4.233123078521081, -7.0, -7.0, -7.0, -7.0, -7.0, -4.77552307067083, -7.0, -4.678773236017987, -4.326868159893682, -7.0, -7.0, -4.089233731365399, -3.8867162741164782, -7.0, -7.0, -7.0, -7.0, -7.0, -4.367728546086976, -7.0, -3.671820560183249, -7.0, -7.0, -4.934879554137214, -7.0, -3.215240887065359, -4.44399792707814, -4.009210026465004, -4.381042842771909, -7.0, -4.439916624576895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.39029024855987, -4.232876161954841, -5.706576976429825, -7.0, -7.0, -7.0, -4.956341345177691, -7.0, -5.405669015189301, -3.781827152932428, -7.0, -7.0, -7.0, -7.0, -4.783982145180654, -7.0, -4.218614269745094, -7.0, -3.694901207906907, -7.0, -7.0, -4.342348647043824, -4.956792520370495, -7.0, -3.9860703793072267, -2.997386384397313, -7.0, -4.308777773664721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9943171526696366, -7.0, -3.7113853790984517, -7.0, -7.0, -3.1146698436863396, -7.0, -7.0, -7.0, -3.282319942414035, -7.0, -2.9052491234718767, -3.6315452278343097, -7.0, -7.0, -4.131875187972593, -3.052693941924968, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7895807121644256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6477845207887927, -4.789086915088029, -7.0, -7.0, -3.945222316635341, -2.657374601115011, -2.885361220031512, -7.0, -3.252610340567373, -4.254837993329288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3098430047160705, -3.9933921374490025, -7.0, -7.0, -3.5615783683009608, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1979059063300923, -7.0, -7.0, -3.250420002308894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.813580988568192, -7.0, -7.0, -3.8047526021504607, -3.455859567203536, -2.3297028971532154, -7.0, -2.3366963890101053, -3.186532564592397, -7.0, -7.0, -2.924120174691022, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.230027195569308, -7.0, -4.166163593747834, -4.247445412862625, -7.0, -3.4702634469650784, -7.0, -3.2893659515200318, -7.0, -7.0, -2.679337030520794, -7.0, -7.0, -3.291368850451583, -7.0, -3.6197018907049654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8130469651601078, -2.421368855425985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2576785748691846, -3.8125457211365865, -3.774443968924965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.199631780610535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1283992687178066, -7.0, -7.0, -7.0, -3.130333768495006, -3.1386184338994925, -2.7103994661168005, -2.137553986107054, -2.1077750894177876, -7.0, -7.0, -3.675495295123093, -7.0, -7.0, -7.0, -3.743169930945493, -2.3999280965143184, -2.743313739231126, -7.0, -7.0, -7.0, -7.0, -3.2770167642600043, -2.455707512181184, -3.111598524880394, -3.2671717284030137, -3.355111200797834, -7.0, -7.0, -7.0, -2.8739015978644615, -2.8834721588455867, -3.240798771117331, -3.7572149376681385, -7.0, -7.0, -7.0, -2.766164891363784, -2.7653704802916486, -7.0, -7.0, -7.0, -2.804548308388056, -7.0, -3.7461513812314826, -3.1866738674997452, -7.0, -3.1856837803185045, -2.739572344450092, -2.8197084098789618, -7.0, -7.0, -7.0, -3.049605612594973, -7.0, -2.9934149813944844, -7.0, -2.8039933118331355, -3.5523639817866846, -7.0, -2.814691432747457, -2.9627243931760243, -7.0, -3.3188977146274867, -7.0, -7.0, -3.2805783703680764, -3.362670929725667, -3.7654897346294343, -7.0, -7.0, -2.757142869659127, -7.0, -3.02201573981772, -3.0169498130975607, -7.0, -7.0, -3.3798524128035847, -3.1622656142980214, -7.0, -7.0, -7.0, -2.971224291252213, -7.0, -3.225567713439471, -7.0, -7.0, -3.2833012287035497, -3.1277525158329733, -3.343703931783211, -3.136879039875517, -7.0, -3.5604103496028143, -7.0, -3.755074101758472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295567099962479, -3.13481437032046, -7.0, -4.013847995871831, -7.0, -3.0415242696106493, -2.7772455264226195, -2.5363058723510337, -2.946417171927368, -2.5646660642520893, -7.0, -7.0, -2.673020907128896, -2.8199420294694213, -3.3119656603683665, -7.0, -7.0, -7.0, -3.1137762838370313, -7.0, -3.2957319906112623, -3.8070461905554698, -7.0, -7.0, -3.273926780100526, -3.719056385289504, -3.04688519083771, -3.5686709780098966, -3.695131297704026, -2.865991800126275, -3.281033367247727, -2.664140335902428, -2.986995539724382, -7.0, -3.1383026981662816, -4.384693833518213, -7.0, -7.0, -7.0, -3.1702617153949575, -7.0, -4.064794811195383, -2.6820061465959664, -3.7040646794085674, -3.759365621655929, -7.0, -7.0, -7.0, -3.1997551772534747, -7.0, -7.0, -3.4044916177586857, -7.0, -7.0, -7.0, -3.5528749737842267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.713994267660644, -3.23159700556491, -2.9146075677710805, -3.4412236742426123, -2.884692401766919, -2.3341185180336272, -3.2533380053261065, -3.2003613106134194, -3.230704313612569, -7.0, -7.0, -3.296665190261531, -3.2187979981117376, -7.0, -7.0, -3.9679689628786923, -7.0, -3.601625479553945, -7.0, -3.7901443650429005, -3.190325940803602, -7.0, -3.4526296516220176, -3.0750905299454705, -3.3830969299490943, -7.0, -7.0, -2.5947081713790734, -2.575187844927661, -2.3594905303901377, -7.0, -7.0, -7.0, -7.0, -3.9934362304976116, -2.4161864618375377, -7.0, -7.0, -1.897313835389292, -7.0, -2.043395584089776, -2.6580113966571126, -7.0, -2.612518962242537, -1.4683991586217664, -2.6309699808615576, -2.717670503002262, -7.0, -3.522313795156667, -7.0, -2.8628358311818536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.859738566197147, -2.9602328731285126, -3.9576551669434914, -2.9751559784066894, -7.0, -4.391486242306662, -7.0, -2.526339277389844, -2.7798368978412693, -7.0, -7.0, -7.0, -3.4834446480985353, -3.4158077276355434, -3.4111144185509046, -7.0, -3.113609151073028, -2.3222192947339195, -7.0, -3.119915410257991, -2.6863382970503276, -2.946615995262667, -3.515461715791736, -7.0, -7.0, -7.0, -7.0, -2.5877109650189114, -7.0, -7.0, -2.9883359558560505, -2.579402469359438, -3.4437322414015967, -7.0, -3.872272846224205, -7.0, -7.0, -7.0, -3.0109255813646993, -3.4712917110589387, -3.0131719315312613, -2.992995098431342, -3.375871360667503, -7.0, -2.9006401839826004, -3.2137832993353044, -2.3452920271477096, -7.0, -3.046841871852895, -3.308279770272725, -3.893040111957118, -2.9168047518661746, -7.0, -7.0, -3.369586890736344, -3.5769169559652068, -2.776095557782467, -7.0, -3.2105860249051563, -7.0, -2.900093901543398, -2.45838601110505, -7.0, -3.012274667007467, -2.6921508972009547, -2.8800510030033712, -2.6553785755318513, -2.354283100111711, -4.289674936630779, -3.4630464593144126, -7.0, -3.191343513169289, -3.1598678470925665, -7.0, -2.4201391886115573, -2.5409548089261325, -3.1515449513412155, -2.9130717403092508, -3.0, -3.151216578856456, -2.0407688481126254, -2.7261836614188204, -4.652883612256533, -3.4428976613092526, -7.0, -7.0, -3.1095785469043866, -7.0, -3.2253954427184883, -7.0, -7.0, -3.5407047833107623, -3.204933522354145, -3.1758016328482794, -7.0, -3.293657141449485, -3.285107029566812, -3.336859820916809, -3.2266858105546663, -7.0, -3.4471878582356688, -3.9258275746247424, -4.6453627332859915, -7.0, -3.2487699685205684, -3.340770374147969, -2.9906559275051268, -7.0, -2.6190933306267428, -3.188647295999717, -2.7912895457988998, -2.4989367896326486, -2.943847687009491, -3.00014474070519, -3.1470576710283598, -7.0, -3.5304558435846762, -3.2079035303860515, -7.0, -2.6908603082720437, -3.42422807069598, -2.620656479819621, -2.7734805897368733, -7.0, -7.0, -4.605003198204288, -7.0, -7.0, -7.0, -7.0, -4.389219260025098, -7.0, -7.0, -3.5427462308516486, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8922393433956706, -7.0, -7.0, -4.148972634509205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7807204498661315, -4.184379080658596, -7.0, -4.341315794596473, -7.0, -7.0, -4.113909943754037, -3.925415237084246, -4.466066475658547, -7.0, -4.021199639291648, -3.0149403497929366, -4.201278747009084, -4.115092525350614, -7.0, -7.0, -7.0, -3.496929648073215, -4.158485625272292, -2.666680729097877, -1.8501447725143394, -3.4133759761516242, -3.551698604499414, -3.0750303788179263, -7.0, -4.150034573810802, -7.0, -3.1690863574870227, -7.0, -7.0, -7.0, -7.0, -3.9954596866210643, -4.25871473283981, -7.0, -2.7267272090265724, -2.981969534880924, -2.320405953970451, -3.8135238031731653, -7.0, -5.406892582351948, -3.3294656796081403, -3.939294559426453, -7.0, -7.0, -7.0, -4.010858016949204, -7.0, -3.9359856330811804, -3.8615941446438655, -3.1782600386264073, -4.19867083023323, -7.0, -3.9064770729424234, -4.115068196520122, -7.0, -3.503915138339147, -7.0, -7.0, -4.140256569677416, -4.314541329129881, -7.0, -3.137986732723532, -7.0, -7.0, -7.0, -3.226141456150439, -3.4998244958395794, -2.662461007332455, -7.0, -7.0, -2.571975972535329, -7.0, -2.226524092257544, -3.1953460583484197, -3.2083741645947104, -7.0, -2.9272676808108815, -2.919862253555538, -2.966610986681934, -3.4811558708280352, -7.0, -2.694312646223346, -2.9617374047008993, -7.0, -7.0, -3.13786028215286, -3.2631624649622166, -2.589726256254237, -2.4274861090957858, -3.1492191126553797, -7.0, -3.0929154916889843, -7.0, -7.0, -4.305017995761173, -3.7172577826630526, -4.493081452734428, -7.0, -3.2610248339923973, -2.4197263393238386, -7.0, -2.3452006933769454, -7.0, -3.3991543339582164, -2.7139103541289553, -7.0, -7.0, -3.2166935991697545, -2.6923180442592787, -7.0, -7.0, -3.116441697539312, -3.041195233696809, -2.9710437918360286, -2.9630003484681415, -2.9817362608522706, -4.218614269745094, -7.0, -2.7351995484223135, -2.714644048372074, -7.0, -3.269074926549013, -7.0, -7.0, -7.0, -2.3291071869258904, -2.8279565728594, -2.973474226991902, -3.204481744011206, -7.0, -7.0, -7.0, -3.2518814545525276, -3.532117116248804, -7.0, -2.576916955965207, -2.857935264719429, -7.0, -7.0, -2.8499719123288503, -2.8056007947586763, -1.8194550045531472, -3.2024883170600935, -2.11069425125296, -2.8790958795000727, -3.8010605298478555, -7.0, -2.666892211066536, -3.738304793074105, -3.074816440645175, -3.0461047872460387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.048504453322141, -7.0, -3.2834425776004537, -3.3263961084813074, -3.037824750588342, -2.5626496722119168, -7.0, -2.5786392099680726, -7.0, -2.721563318357481, -1.798691258386048, -7.0, -7.0, -2.949390006644913, -3.0330214446829107, -2.932220013877119, -2.9947569445876283, -7.0, -7.0, -3.129689892199301, -7.0, -7.0, -3.1815577738627865, -3.256116146654382, -3.4111144185509046, -3.46014581749175, -2.76317832728305, -7.0, -7.0, -7.0, -2.9894498176666917, -7.0, -3.5224442335063197, -3.101403350555331, -3.3585376152886144, -2.743313739231126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4687634306105437, -2.986995539724382, -7.0, -3.3261309567107946, -3.5531545481696254, -3.0580462303952816, -7.0, -7.0, -7.0, -7.0, -3.129125716306038, -2.9230712338729132, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8573324964312685, -7.0, -7.0, -3.7896132504920685, -7.0, -7.0, -7.0, -7.0, -3.212054364801163, -7.0, -7.0, -7.0, -7.0, -7.0, -3.861892690391446, -7.0, -7.0, -3.190425084791854, -4.3414449991947865, -7.0, -7.0, -7.0, -3.3220124385824006, -7.0, -7.0, -4.564973629882831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.757965097861435, -7.0, -3.9108816790640555, -7.0, -7.0, -7.0, -7.0, -3.0405034457764253, -7.0, -2.768268016451548, -7.0, -7.0, -7.0, -3.794498771171323, -7.0, -3.205961823059634, -3.795045370421125, -7.0, -7.0, -3.4437322414015967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.450972329938457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.125481265700594, -2.4409090820652177, -2.073235854482803, -7.0, -7.0, -3.8773713458697743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5314610339601105, -7.0, -3.719331286983727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8182258936139557, -7.0, -7.0, -7.0, -7.0, -3.274942566083686, -7.0, -7.0, -7.0, -3.63205216670581, -3.475144341300952, -1.8855496750060046, -1.4894470934582955, -2.2141813086638207, -7.0, -3.343462306559093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.872709718287906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9701918541039056, -3.130655349022031, -7.0, -7.0, -3.0440386303689775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.284054558436069, -7.0, -7.0, -3.7304592600457687, -7.0, -3.6854730197227594, -7.0, -7.0, -7.0, -2.533390708017551, -2.666829861704301, -7.0, -7.0, -7.0, -7.0, -3.0191162904470725, -4.064857156977356, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1838390370564214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8783666318941945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.224377652161807, -7.0, -4.280783177955887, -7.0, -3.244277120801843, -3.2258915002678767, -2.4537004733597723, -2.0078590547187516, -3.109240968588203, -7.0, -2.3300446322458757, -7.0, -3.270911639410481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8185924177996933, -7.0, -1.587734841127766, -1.4035242344113996, -2.612518962242537, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0842186867392387, -7.0, -3.0750600841196736, -7.0, -2.3443922736851106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.712983710574959, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.551246628977399, -3.231979026831504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.749736315569061, -7.0, -3.3512064247307594, -7.0, -7.0, -7.0, -2.5282737771670436, -1.6795144180750814, -1.8011749533716115, -7.0, -7.0, -3.382197210377454, -7.0, -3.782472624166286, -3.816440167956139, -2.64957822912025, -7.0, -7.0, -3.537105174669567, -3.0126263509540503, -3.75592564737852, -3.029789470831856, -4.410068291238362, -7.0, -7.0, -7.0, -3.9923325590474645, -7.0, -7.0, -3.716504163773217, -7.0, -7.0, -7.0, -7.0, -7.0, -3.157456768134226, -7.0, -7.0, -7.0, -7.0, -7.0, -0.4080403355763634, -7.0, -7.0, -7.0, -3.140193678578631, -2.1295287738587763, -1.4273237863572472, -3.339156404282931, -7.0, -7.0, -3.5869022227332383, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505421327583281, -7.0, -7.0, -3.223625716693796, -3.06126394230025, -5.351289849988622, -3.870579460552685, -7.0, -7.0, -7.0, -7.0, -3.617629297757842, -7.0, -7.0, -7.0, -7.0, -3.0209824429184193, -7.0, -7.0, -7.0, -7.0, -3.6191977157929474, -7.0, -7.0, -7.0, -5.574279034422683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3234583668494677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6449307079135873, -7.0, -3.071117980626713, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6236627073562047, -7.0, -7.0, -7.0, -4.289455165670285, -3.518313626141043, -3.97648753730519, -7.0, -7.0, -7.0, -7.0, -3.7359409087579105, -7.0, -4.6735369590268805, -4.922533433518409, -7.0, -7.0, -7.0, -7.0, -4.273857435371117, -4.5318747110147335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.765016250940787, -3.885304667588968, -7.0, -7.0, -7.0, -4.934422695599237, -7.0, -3.491921712586151, -4.441160774035116, -4.263664468388576, -4.203295851245676, -7.0, -4.437052595060992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292570599354629, -4.78895984789585, -7.0, -7.0, -3.209783014848515, -7.0, -4.478330767958597, -7.0, -7.0, -3.47410694801697, -7.0, -7.0, -7.0, -7.0, -4.083660255881591, -3.6020599913279625, -7.0, -7.0, -3.36635153037522, -7.0, -7.0, -4.244534404270211, -4.955923350069222, -7.0, -4.092192169421503, -7.0, -3.590618948206578, -4.607894456964924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.468834530432752, -3.3544926005894364, -3.484299839346786, -7.0, -7.0, -2.8639173769578603, -7.0, -2.998912904358786, -7.0, -3.2684219472783616, -7.0, -2.957364336755806, -7.0, -7.0, -7.0, -7.0, -2.537609240282091, -7.0, -7.0, -7.0, -3.7764832558336816, -7.0, -7.0, -3.254064452914338, -7.0, -7.0, -3.4090027034017725, -7.0, -7.0, -7.0, -3.6171751426857073, -7.0, -7.0, -7.0, -3.15755749745902, -7.0, -2.8589881003426956, -7.0, -7.0, -3.949365607393135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.985336641735613, -7.0, -7.0, -3.2381716036301467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3251049829714074, -3.293802406018653, -3.1565491513317814, -3.592065670432247, -3.2038484637462346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.500167838795168, -7.0, -7.0, -3.013399054643686, -3.152685756036786, -2.1476230267651895, -7.0, -2.4571679344887163, -7.0, -7.0, -7.0, -2.5379814936848337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0232781872177306, -3.322219294733919, -3.8596785766284483, -4.245216456947668, -7.0, -3.442793225939769, -7.0, -3.24699069924155, -7.0, -7.0, -2.298378385705651, -7.0, -7.0, -7.0, -7.0, -3.31530545711496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3233896221747057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.107549129744687, -3.459844642388208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021023822031585, -7.0, -7.0, -7.0, -7.0, -3.1024337056813365, -7.0, -7.0, -7.0, -7.0, -3.351216345339342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.792391689498254, -7.0, -2.797959643737196, -2.498861688992884, -2.9003671286564705, -7.0, -4.205060838940893, -7.0, -7.0, -7.0, -4.200166246363107, -2.7835859964564595, -2.86421433046133, -7.0, -7.0, -7.0, -7.0, -7.0, -3.895919545310016, -7.0, -3.37984917876283, -3.779563909804499, -7.0, -2.960470777534299, -7.0, -2.5705429398818973, -2.584331224367531, -7.0, -4.86686011175598, -7.0, -7.0, -7.0, -7.0, -3.3354579006893843, -7.0, -7.0, -7.0, -2.909556029241175, -7.0, -4.442884086131316, -7.0, -7.0, -7.0, -7.0, -3.6570558528571038, -7.0, -7.0, -7.0, -3.17260293120986, -7.0, -3.795264888190909, -7.0, -3.611882555512116, -7.0, -7.0, -2.7795964912578244, -2.8625785677670708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.152104800892868, -7.0, -7.0, -3.4287825114969546, -7.0, -7.0, -3.6484575942825224, -7.0, -7.0, -3.7640753714025683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5150786750759226, -7.0, -7.0, -7.0, -4.531826213727618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.783903579272735, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1687920203141817, -3.681964458994683, -7.0, -2.936513742478893, -2.864807629026147, -7.0, -2.7735545596377755, -7.0, -7.0, -7.0, -3.5639554649958125, -7.0, -7.0, -4.177940307008608, -4.278532587883768, -7.0, -7.0, -7.0, -3.848413466516796, -7.0, -7.0, -3.6232492903979003, -7.0, -7.0, -3.4577954183422484, -2.7957410208692437, -7.0, -2.791690649020118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.264424262056547, -3.8580256078495063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8364507137201547, -7.0, -7.0, -2.5962304476672386, -4.242752561356358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.786751422145561, -7.0, -3.404149249209695, -7.0, -7.0, -3.268577971882843, -7.0, -3.7281668826085177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9311017456326387, -7.0, -7.0, -7.0, -7.0, -3.646021029432817, -7.0, -7.0, -3.6026025204202563, -7.0, -3.400537989391946, -7.0, -3.0015173768235046, -3.1789769472931693, -2.772566173085639, -7.0, -7.0, -3.679700380871964, -7.0, -7.0, -3.328787200354535, -7.0, -7.0, -2.22396003039246, -2.7671558660821804, -2.385755183074108, -2.2471546148811266, -1.4683991586217664, -7.0, -7.0, -3.453547660380749, -3.377670439334323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.029789470831856, -3.919862253555538, -3.5992278627737964, -7.0, -5.412072280982084, -7.0, -2.667452952889954, -3.0232524596337114, -7.0, -7.0, -7.0, -3.3594560201209864, -3.266936911159173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165155261392066, -2.7558748556724915, -2.786041210242554, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7748817658187965, -2.6149850498855733, -7.0, -3.7926017811649664, -7.0, -7.0, -7.0, -7.0, -3.619322944883176, -7.0, -3.3895584181453198, -7.0, -4.013283938717773, -7.0, -2.92272545799326, -7.0, -2.415588309411352, -7.0, -3.1221222197687104, -3.427080188436359, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4528593357958526, -7.0, -7.0, -7.0, -7.0, -2.9647309210536292, -7.0, -7.0, -3.458788881710845, -3.1829849670035815, -3.157456768134226, -2.9417598138146954, -7.0, -3.900967623919124, -7.0, -3.1747752479599702, -2.8382192219076257, -7.0, -2.7571790442859356, -3.3092041796704077, -7.0, -3.2231063809285874, -3.495127881242933, -7.0, -2.940267391446012, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.632356046239073, -7.0, -7.0, -2.7338390006971496, -7.0, -2.650501794878367, -2.978180516937414, -3.410355383434471, -7.0, -7.0, -7.0, -7.0, -3.711644564032507, -3.912647106218317, -4.875382522457109, -7.0, -3.50112775752298, -3.27062477467715, -2.784545974054523, -7.0, -7.0, -7.0, -3.554489160003819, -2.6785884095944708, -2.7315081835960253, -3.351989455435632, -2.8109042806687006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.124300397693026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.403966542231021, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.589450639051082, -7.0, -7.0, -4.331305798553269, -7.0, -4.758687373229256, -7.0, -2.9086190397042477, -4.443403816887126, -4.662309143723654, -3.7273604892915437, -7.0, -7.0, -7.0, -7.0, -7.0, -4.375444125505117, -7.0, -7.0, -4.9922087730059355, -7.0, -7.0, -7.0, -7.0, -2.9689496809813427, -4.9561588220840775, -7.0, -5.405604162002902, -4.081563320980385, -7.0, -7.0, -7.0, -7.0, -4.48266638715213, -7.0, -7.0, -7.0, -3.7227326146105697, -7.0, -7.0, -4.643210786071658, -7.0, -7.0, -4.117298596651012, -7.0, -7.0, -7.0, -4.298328988073496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3811150807098507, -3.4091155877956507, -7.0, -7.0, -3.198362483563655, -7.0, -3.330413773349191, -7.0, -3.4556821645007902, -7.0, -3.5426387273151625, -3.3264382767957286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5069557791831683, -3.2400497721126476, -7.0, -4.017325554561722, -7.0, -7.0, -7.0, -7.0, -4.788818618509576, -7.0, -7.0, -3.3409891196804447, -7.0, -3.1815577738627865, -7.0, -3.243286146083446, -3.9528408566757016, -7.0, -7.0, -7.0, -3.2340108175871793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9917132757130895, -7.0, -7.0, -3.255754786643044, -7.0, -7.0, -4.14992695911359, -7.0, -7.0, -7.0, -7.0, -3.294081724603141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7821858664920165, -2.968015713993642, -3.056142262059052, -7.0, -3.2081725266671217, -7.0, -3.8021577531869615, -3.5524451317812034, -2.092493594974741, -7.0, -2.6160573404936036, -3.4824447919182653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.230001623262765, -7.0, -7.0, -3.8489646100863593, -3.3715296320992945, -3.464638559095033, -7.0, -2.500373714353374, -7.0, -7.0, -2.498861688992884, -7.0, -7.0, -3.282848602834645, -7.0, -3.7952019889525492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3281756614383227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.112370365525832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.199110385681477, -7.0, -7.0, -7.0, -7.0, -3.4276483711869328, -7.0, -7.0, -7.0, -7.0, -3.666049738480516, -7.0, -7.0, -7.0, -3.743666521446213, -3.419625360887743, -3.719911064198339, -7.0, -3.4344890631511897, -2.7001043686887627, -2.890979596989689, -2.8901814080462, -3.456973013635818, -3.0995752157529437, -7.0, -7.0, -7.0, -3.010087846998524, -2.7789983320136287, -7.0, -2.396881306642151, -7.0, -7.0, -7.0, -2.905779531688919, -2.920610242554322, -7.0, -2.4674693607397176, -2.7289053858471353, -2.8727388274726686, -3.045948538105334, -7.0, -2.3879615590823304, -2.6440867345657413, -3.7511250715355837, -2.294718581133095, -2.733999286538387, -3.2520435349731076, -2.2487903775753857, -3.752202153176521, -2.1463864673918462, -7.0, -3.2933072974453994, -7.0, -2.808210972924222, -7.0, -2.9047216220895655, -7.0, -3.4546162237926987, -3.8429834701222174, -2.420386311461478, -2.6829996132339535, -3.7460890430562004, -2.93007534541053, -2.0699551096954005, -3.0093800657435907, -3.3399811495372607, -2.573309383699704, -3.1811000797280484, -2.6595087306276968, -2.786120180054919, -3.752893154884594, -3.767823498007517, -2.878291949249796, -3.1684238181031454, -3.475598557756169, -3.300233058364546, -7.0, -3.2863816107479344, -2.9289588408808296, -2.3275181575643944, -3.7331972651065697, -3.7264826967848297, -2.864451747158183, -7.0, -3.3100982718561998, -0.9118469463399004, -7.0, -7.0, -3.2212162075895296, -7.0, -7.0, -7.0, -7.0, -2.4863596256881286, -7.0, -3.04688519083771, -7.0, -3.8801845528264334, -7.0, -3.597969275225808, -2.639066881040868, -2.589621112934052, -3.8133808067338557, -2.8539349680493045, -3.1387236281550397, -3.1835545336188615, -7.0, -7.0, -7.0, -7.0, -2.4083005490438167, -2.704856768911651, -7.0, -2.9752939153562066, -3.7687860469080143, -7.0, -7.0, -2.9759829437125465, -7.0, -2.856366323659248, -3.498034723687027, -2.8779469516291885, -3.156291648012853, -3.4577305482459986, -3.4405155211122285, -7.0, -3.194097885578952, -2.598025573527527, -3.7743709598499167, -7.0, -2.842359573330675, -2.555935188309782, -2.541723216923833, -7.0, -2.7883230698362023, -3.176430088393643, -3.4570488265856314, -3.467275043461977, -3.159115821827769, -3.342162194035208, -3.787247880331954, -2.516621586200183, -3.947090464219622, -3.2523675144598987, -7.0, -2.328875757782688, -2.810848340115792, -7.0, -7.0, -2.468782495260093, -7.0, -7.0, -3.4195427247002796, -7.0, -7.0, -2.586249638866042, -2.8020036235559296, -2.6766936096248664, -2.681467373533731, -7.0, -4.092860943338818, -3.723044991643445, -3.4376713047707286, -3.791901080009571, -4.209273672784876, -3.157645616457375, -7.0, -7.0, -3.2890684385904976, -3.6948025606647104, -7.0, -7.0, -3.526403899736798, -3.3223571441183184, -3.429752280002408, -7.0, -2.2514354212468133, -2.8212156788067166, -3.5555176491927667, -2.977527638759884, -3.188154778916017, -3.8135142715418833, -3.7550359337677714, -2.793637716114076, -7.0, -7.0, -7.0, -3.2917387461232948, -3.443262987458695, -7.0, -7.0, -3.078061165597835, -7.0, -3.034938217958906, -7.0, -3.4004948168205202, -2.8535735203743147, -7.0, -3.503609121816283, -2.7317901537745826, -7.0, -2.9001849963485364, -3.8082109729242224, -2.314393957221963, -2.508494279379125, -2.807264355276107, -3.054421524462536, -7.0, -3.372451701409366, -7.0, -3.837114748515506, -2.9856830355921042, -3.9508352475190938, -7.0, -2.3433692002275315, -7.0, -2.6226284261293253, -3.15510820088631, -2.6309699808615576, -7.0, -3.453547660380749, -7.0, -0.2463085280453339, -7.0, -3.1594468733874694, -3.6614498334507024, -2.518075036877517, -7.0, -7.0, -3.7440581658788354, -7.0, -3.034548247098469, -2.572561834368586, -3.2506639194632436, -2.6419315033656545, -2.2387240528167367, -2.535496659154243, -2.213122731599993, -3.53490326577492, -7.0, -7.0, -3.2790582621241464, -7.0, -2.765420173578722, -7.0, -2.1635293082741804, -3.8130469651601078, -3.333783025949038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5113447333185333, -3.7179200258369938, -3.721315880605899, -7.0, -7.0, -3.7664128471123997, -7.0, -7.0, -7.0, -1.8339981365637825, -3.52329112918679, -7.0, -2.9749336544629608, -3.5175257836338214, -7.0, -7.0, -2.5402780373978247, -3.8361341494653747, -2.918052655796212, -3.1659117300536566, -3.1930008501040437, -7.0, -7.0, -7.0, -2.368946360360289, -3.4106928961632534, -2.3409789022165466, -2.1304659536982493, -7.0, -2.9587685942707274, -3.4636690681343865, -7.0, -3.4939457483871506, -2.929759415329462, -2.668618844816744, -7.0, -7.0, -7.0, -7.0, -3.2103854115447934, -7.0, -3.5431364147862197, -2.976382734932082, -2.533108010216257, -3.8767372971406644, -3.329058719264225, -3.493560280573793, -2.496098992132571, -7.0, -1.76119816931531, -2.823474229170301, -7.0, -1.8694890489332097, -2.3594429293014985, -2.8174079537467183, -3.3005954838899636, -1.80976494807886, -2.0649831337672087, -2.678732554599579, -3.8513195126487454, -4.067993823502085, -2.830553028417437, -7.0, -7.0, -7.0, -3.0658285940945165, -3.1727974640157566, -2.2663885100087673, -7.0, -2.484537093918053, -3.2629254693318317, -2.93468778256179, -7.0, -3.291901400465467, -3.065729059462349, -2.4580259891314333, -3.4748473297732483, -3.7652959296980564, -3.144115472711366, -2.907903783576497, -3.9589045217065673, -7.0, -3.4389377010955284, -2.194455937161718, -2.256252854237207, -7.0, -2.451932564220791, -7.0, -3.0700906651588995, -2.06547416845862, -2.468260428064313, -2.993121181893369, -3.246826721711981, -7.0, -7.0, -7.0, -3.4606723718774317, -7.0, -2.6838524719712984, -7.0, -2.784545974054523, -7.0, -7.0, -3.8668679796590735, -7.0, -7.0, -7.0, -4.751217497559819, -3.7542259820035175, -7.0, -4.038818787373656, -3.906803568389256, -4.154393537956997, -3.94215692846749, -7.0, -4.756871825857871, -4.7171252127617045, -3.2519625023239493, -7.0, -4.238447577141119, -3.6455254266003556, -7.0, -3.926153731092024, -7.0, -4.697405466651352, -7.0, -4.111967837206073, -3.3399976925134327, -7.0, -7.0, -7.0, -7.0, -3.693787808102676, -7.0, -4.7188586102814725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3027204498961344, -3.758628070702716, -3.4747260421801167, -7.0, -3.65203492789085, -3.493771633610371, -3.969042967305813, -3.1856088078847637, -7.0, -3.4836954821069357, -3.210140091523844, -3.2952371307315342, -3.431229701962552, -3.3216344468426913, -2.478475272065988, -3.805908455074197, -4.507207993183979, -4.057475915826254, -3.730216840568694, -3.7405205860536648, -3.411481958597725, -7.0, -7.0, -3.0525079069210648, -3.746319983424443, -4.710482932879111, -3.4391747398434687, -2.281714970027296, -3.7469454096151047, -3.635342066205612, -3.7319914490189294, -4.936346158266162, -3.9221283467963626, -4.328175661438323, -7.0, -7.0, -2.910911595998181, -3.9705726665984176, -3.944285220688753, -3.5471180513494303, -3.7468676278504294, -3.5255682376605524, -3.508590926001464, -3.7670816213633223, -2.970083775646671, -4.279379448150558, -3.9243309847086785, -3.45886342278972, -7.0, -3.939119717648487, -3.2943032512870527, -3.3101089047316647, -7.0, -3.7218930162149575, -7.0, -3.7283537820212285, -7.0, -2.953670693054014, -2.5677072241765035, -2.732437230568403, -3.735758537443739, -3.524266268766979, -2.870436420869347, -3.8582965245338854, -2.8309092995464433, -2.782074298464784, -2.9355072658247128, -7.0, -2.7824338841919594, -2.834078180834267, -2.5533519651097434, -2.374495518477478, -4.259187582942805, -3.359898693821246, -2.892975289811869, -3.7782236267660965, -7.0, -2.855115160771781, -7.0, -3.1645758949823053, -2.5378190950732744, -2.415565653474683, -7.0, -3.3993852495462185, -7.0, -2.8290624310732704, -3.604500960302884, -3.2412165693415527, -3.565001221278613, -7.0, -2.532928015757083, -2.4347643707610316, -3.4756711883244296, -2.3508748293464587, -7.0, -2.9024108711664565, -2.104272447338898, -3.4216039268698313, -3.131779009369187, -2.7092093687913024, -2.8998888683433184, -3.135904649927143, -3.2769976395057503, -3.114344054609816, -3.006323393378873, -2.6130863955560057, -2.742594221135839, -2.903993825990188, -3.532117116248804, -7.0, -2.7393613426327974, -2.41161970596323, -3.8327643049405316, -3.574447990435435, -7.0, -3.4331295175804857, -3.2567520979238687, -2.3038310838268075, -2.3161806776496223, -3.2821687783046416, -3.240399465738641, -2.7630875039477676, -3.759365621655929, -7.0, -2.673711908836969, -3.4274455340986147, -3.7467898321526123, -2.476302246967727, -2.8691143269793753, -2.716420733846555, -7.0, -2.607732946282463, -2.711174300366762, -2.098792008234216, -2.1034305088316687, -2.6399580644294924, -2.2375894317072182, -2.2337272822600673, -2.5591317907861515, -2.889777764467921, -3.272445019048976, -3.496445291873353, -3.0874264570362855, -2.5460488664017342, -3.240466042135798, -4.1410576338867795, -3.5828017176654714, -3.2956403924243696, -3.5805828768143675, -3.5073835557363866, -3.8385972528166565, -3.4396484295634737, -3.522357278959648, -1.6582293734253237, -2.836439206334669, -3.7564078725489582, -2.4159077455568165, -7.0, -2.0413926851582254, -2.6932639977211865, -3.983581186705791, -3.2427898094786767, -2.70209898861516, -2.4784943476608086, -2.5661722381854584, -2.5361869649319937, -7.0, -7.0, -3.7197454925295768, -3.126780577012009, -7.0, -3.733678655677088, -3.568710059628092, -2.3301431005564446, -2.092122568184241, -3.751279103983342, -3.281866292147957, -7.0, -7.0, -3.1647245241698965, -7.0, -3.25653735366673, -3.5067079263501197, -3.4672627029211815, -3.546542663478131, -3.968062460076449, -7.0, -3.4190465771041594, -3.612571954065176, -7.0, -7.0, -3.4455323537437947, -3.288994028501752, -3.7637274037656985, -3.6093275616088962, -3.3960248966085933, -3.5639554649958125, -7.0, -3.7328760413627067, -7.0, -7.0, -3.268577971882843, -3.329736774799155, -3.775173385424787, -7.0, -3.350829273582968, -2.9905608299940196, -7.0, -7.0, -7.0, -3.0331555896976927, -2.8652520716525895, -3.0308020487722676, -7.0, -3.3571265672692596, -7.0, -7.0, -7.0, -3.2353011403199905, -3.0458117739782704, -7.0, -2.4890791624977924, -7.0, -7.0, -7.0, -3.522574632691177, -3.11920874228968, -7.0, -2.8336428415015997, -3.1321227382746497, -2.9508514588885464, -2.6549462265843444, -7.0, -2.4739733021220007, -2.8588378514285857, -7.0, -2.820399103879156, -3.1272668183188985, -3.31492005599242, -2.166260913692354, -7.0, -2.21923513401367, -7.0, -3.358315640082196, -7.0, -2.9763499790032735, -7.0, -3.226512947551635, -7.0, -3.0788191830988487, -7.0, -2.600194729411715, -2.8662873390841948, -7.0, -3.4268364538035083, -2.085797394401143, -2.975891136401793, -3.514282047860378, -2.9913684958630995, -3.331832044436249, -3.2008960765643213, -3.4111144185509046, -7.0, -3.4082399653118496, -3.028266163475984, -3.4153072922255676, -7.0, -3.1290450598879582, -7.0, -3.097604328874411, -3.1142772965615864, -2.6139885578581064, -7.0, -3.307067950661298, -3.3049211619008916, -7.0, -7.0, -1.1258855686751243, -7.0, -7.0, -3.561890702670256, -7.0, -7.0, -7.0, -7.0, -2.8409260187596415, -7.0, -3.0563330349511615, -7.0, -7.0, -7.0, -3.665393350279712, -3.000434077479319, -2.618962813876879, -7.0, -3.2893355334158763, -3.395064164331242, -3.777318053891376, -7.0, -7.0, -7.0, -7.0, -2.5917322389518356, -2.824044436768545, -7.0, -3.290563237915255, -7.0, -7.0, -7.0, -3.7371926427047373, -7.0, -3.29014595464781, -7.0, -3.062581984228163, -3.501538502649975, -3.3875677794171883, -3.3459615418131414, -7.0, -7.0, -3.1318380689302905, -7.0, -7.0, -2.865340905624584, -2.6989700043360187, -2.5853855204890204, -7.0, -3.3118597736235036, -3.7243429081714807, -7.0, -3.4489123419591823, -7.0, -3.8865210943541246, -7.0, -2.39997895364675, -3.744605875414239, -7.0, -7.0, -2.657503390420801, -2.8727388274726686, -7.0, -7.0, -3.014257950635828, -7.0, -7.0, -3.291812687467119, -7.0, -7.0, -3.0859680770460742, -3.0583627485070277, -2.966748906109529, -3.1998922435263193, -7.0, -7.0, -3.2979792441593623, -7.0, -7.0, -4.110320296840297, -3.613524702853652, -7.0, -7.0, -3.103803720955957, -4.259247356190061, -7.0, -7.0, -3.5345337560051155, -3.176814480674777, -7.0, -7.0, -2.4602142372606046, -3.0003255987771427, -3.5899496013257077, -3.526339277389844, -3.354444598988735, -7.0, -3.3783979009481375, -3.3175356918146464, -7.0, -7.0, -7.0, -3.4112829130173843, -3.3527611917238307, -7.0, -7.0, -3.3927409079666413, -7.0, -3.6144331585504523, -7.0, -7.0, -3.3473931599569218, -7.0, -3.4961682741749778, -3.029464946638236, -7.0, -7.0, -7.0, -2.377228170976555, -2.9792447784093805, -3.018561812897253, -3.2847314397467207, -7.0, -3.787956123283932, -7.0, -7.0, -2.9395192526186187, -4.370956964416454, -7.0, -2.4803663095328092, -7.0, -2.816783452824119, -3.3845326154942486, -2.717670503002262, -7.0, -3.377670439334323, -0.2463085280453339, -7.0, -7.0, -2.991336850972244, -4.083251717221604, -2.78902641153793, -7.0, -7.0, -3.3517963068970236, -7.0, -3.025510672852581, -2.7651094972067183, -3.00987563371216, -2.90687353472207, -2.64106829099296, -2.9475970826119045, -2.6572587197236484, -4.0707160794021915, -7.0, -7.0, -7.0, -7.0, -2.4447137991033645, -7.0, -2.7148085850218555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9578319836218965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.93980039487275, -3.2271150825891253, -7.0, -3.9057958803678683, -7.0, -7.0, -7.0, -2.8976074572805417, -7.0, -3.2736103808338557, -3.4095950193968156, -3.6442169541060987, -7.0, -7.0, -7.0, -2.6046888069715166, -7.0, -2.5057664361691927, -2.230252363564598, -7.0, -3.1870975005834774, -7.0, -7.0, -3.4683473304121573, -3.3395508108256715, -2.775974331129369, -7.0, -7.0, -7.0, -7.0, -3.505149978319906, -7.0, -3.265525335219074, -3.300073495267144, -2.456366033129043, -7.0, -3.492061604512599, -4.233576686264463, -2.7123222675685836, -7.0, -2.166493546908743, -2.8322959710584774, -7.0, -2.089494353362903, -2.380986075961567, -3.2439883200147483, -3.3707905645192677, -2.0283388232077804, -2.1316186643491255, -3.2079035303860515, -7.0, -4.715418965908037, -3.2510051734936347, -7.0, -7.0, -7.0, -3.555578072772955, -3.7515100502700416, -2.2104714000467327, -7.0, -2.607776603741693, -3.041195233696809, -3.25478968739721, -7.0, -3.51181654130309, -3.402433346219312, -2.48572142648158, -3.4514794051248616, -3.402433346219312, -3.450740462038178, -3.2988194999682423, -4.428986458109622, -7.0, -3.5851786285035163, -2.633686887659093, -2.725152937179735, -7.0, -2.951337518795918, -7.0, -7.0, -2.319337436236881, -2.7494142103240775, -3.5566642621225686, -7.0, -7.0, -7.0, -7.0, -3.3944516808262164, -7.0, -2.8676147812238355, -7.0, -3.0309912369409937, -7.0, -7.0, -4.009280884255359, -7.0, -7.0, -7.0, -7.0, -4.098626422903375, -7.0, -4.606886315027087, -4.189759734122248, -4.040206627574711, -3.7367151336056112, -7.0, -4.731040515294573, -7.0, -3.518481037534457, -7.0, -7.0, -4.231224848535276, -7.0, -7.0, -7.0, -5.390599546802992, -7.0, -4.249516315801663, -3.85171686836248, -7.0, -7.0, -7.0, -7.0, -4.1828994675482605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.328410186480327, -3.4265112613645754, -7.0, -4.2934141218173325, -7.0, -7.0, -3.4545399849648186, -7.0, -4.125218432391805, -3.4514794051248616, -3.6628522332647964, -4.16302712860075, -3.62708175893708, -2.7190490484802736, -3.490941205356787, -4.460190975748579, -7.0, -3.316808752053022, -3.8868853589860084, -4.399535278865296, -7.0, -7.0, -3.956674753874899, -4.25955593653417, -5.406667044016165, -3.342620042553348, -2.546131204914049, -7.0, -4.059459280759199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2789973469852707, -4.79328038282763, -7.0, -3.7746385998091383, -3.895919545310016, -3.760066888531863, -3.8087914452522758, -7.0, -3.1869027780703103, -7.0, -3.7077404542737713, -4.071618483796091, -7.0, -3.7318304202881625, -3.9245893856694183, -4.326949994165998, -7.0, -3.2949069106051923, -7.0, -7.0, -7.0, -3.2858384967689096, -2.572987708198205, -3.1443925650070628, -7.0, -7.0, -3.291202294560029, -7.0, -2.5870870682273686, -2.8577344348976292, -3.371867951531505, -7.0, -3.275480729561276, -3.446770095200388, -2.689131197234498, -2.3516997004052667, -7.0, -7.0, -3.484299839346786, -7.0, -7.0, -3.3961993470957363, -7.0, -3.406540180433955, -3.2161659022859928, -2.505511739675187, -7.0, -3.769340394703022, -7.0, -2.8467493518208467, -4.135291704475752, -3.869138498669444, -4.020057280643444, -7.0, -2.6263403673750423, -2.7489198511564084, -3.428620672671939, -2.526538084663585, -7.0, -3.014380511517664, -2.504697352451001, -7.0, -7.0, -3.112828346606045, -3.1855421548543754, -3.497137064051958, -3.3769417571467586, -3.205880729887537, -3.145662470707546, -2.9150478947700735, -3.2246625288410296, -3.202293662186187, -3.9329554831162303, -7.0, -2.916453948549925, -2.44413668092464, -7.0, -3.712453270817587, -7.0, -7.0, -3.9710902131371153, -2.5554572172046495, -2.756538835744164, -3.64018319192134, -3.7328760413627067, -2.887898488096872, -3.388633969351789, -7.0, -2.597329464234929, -7.0, -7.0, -2.557988148224913, -3.4161965568964496, -2.6929937147769896, -7.0, -2.7709086304391612, -3.167671716230021, -2.3851397918328363, -2.295509228754198, -3.0803458442742997, -2.640779477344857, -2.582883679648842, -2.858386792552758, -3.787247880331954, -3.783331762887424, -3.473632926873841, -7.0, -2.8236915393984545, -2.9827233876685453, -7.0, -7.0, -3.1187605904423816, -7.0, -4.070862550639413, -7.0, -3.9024108711664565, -3.7861004389479858, -1.6974081935732832, -3.329092647195331, -3.381656482585787, -2.431497784984585, -7.0, -2.1843177798594184, -3.0073921195729496, -7.0, -7.0, -2.6681195600536824, -2.357934847000454, -3.057847945044547, -2.5054891384167237, -7.0, -7.0, -7.0, -2.836535091898369, -7.0, -3.325720858019412, -3.893095666096228, -2.457606678421928, -2.362356792654536, -3.3694014136966244, -7.0, -7.0, -7.0, -3.4068806700491248, -7.0, -3.594171479114912, -3.494988973683168, -3.553306415318742, -7.0, -3.77757180469141, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6731131042382335, -7.0, -3.3988077302032647, -7.0, -7.0, -3.304167271724397, -7.0, -3.3236645356081, -7.0, -7.0, -3.4761792624817036, -7.0, -3.424881636631067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.863822308937582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.229505222323249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5418287667813124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.4518155921256035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.352795887633352, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7591388162811663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6659560294539566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.346595485628397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.385606273598312, -7.0, -7.0, -7.0, -3.367169488534681, -7.0, -3.494988973683168, -7.0, -2.940184328524863, -3.0946269833383124, -7.0, -7.0, -7.0, -2.917230346723255, -2.9532521547868504, -2.777861624176242, -7.0, -7.0, -7.0, -7.0, -3.0484048061076168, -3.973589623427257, -7.0, -3.1995494966993565, -2.851682597830192, -3.4578818967339924, -2.91204482964487, -7.0, -2.343698142772449, -3.0112884341835358, -3.1010593549081156, -3.6996065029245266, -3.4578818967339924, -2.874675052177361, -3.3552599055273786, -3.404833716619938, -7.0, -2.1411730057977474, -3.6769678142947586, -3.3354579006893843, -3.122434336266318, -7.0, -4.067430448350606, -2.4086167935193554, -3.4127964287165433, -2.8860392755664424, -7.0, -2.0123280442811606, -7.0, -7.0, -7.0, -2.010796911305982, -3.5384480517102173, -2.3710096100045224, -2.3254570185069516, -1.9879579579819235, -2.693067093924229, -7.0, -2.3942924527834046, -1.6076081864967722, -7.0, -3.4577305482459986, -7.0, -7.0, -2.952469547503639, -2.3863367943456684, -4.17506221059361, -7.0, -7.0, -2.3920759410252943, -7.0, -3.152227171838142, -2.734727113894763, -2.7518562395924007, -7.0, -3.497186893442444, -7.0, -2.642684304903646, -7.0, -3.3818367999983434, -1.8818776844271032, -2.6705937061018545, -2.914166793875635, -7.0, -2.44394714679301, -3.130816050034744, -1.8511656596819284, -3.4148062795010126, -2.241795431295199, -7.0, -3.0408228694431076, -7.0, -2.6519238051682956, -7.0, -7.0, -3.6387886671573986, -3.241048150671644, -3.0112531701274974, -2.8971556298923367, -7.0, -4.199206479161658, -7.0, -3.0308020487722676, -7.0, -2.6287425100903885, -7.0, -1.884751806004819, -3.20194306340165, -1.9336063705151778, -1.9808010697064142, -3.419625360887743, -3.3811150807098507, -3.176958980586908, -7.0, -3.1833535953910777, -7.0, -7.0, -3.285557309007774, -2.8121610418869056, -3.077803798076088, -7.0, -3.105667366994601, -3.9220875204019343, -7.0, -3.1571040314004035, -7.0, -3.922102366807607, -1.833547362858849, -2.9524049395770247, -3.2815635951627784, -7.0, -7.0, -2.183493544341022, -2.1586451438995016, -7.0, -3.0330214446829107, -4.097465554474156, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7921114090871684, -3.070037866607755, -2.7704155895660736, -3.036162949823816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.776960479764161, -7.0, -7.0, -7.0, -2.543040749940433, -3.3346547668832414, -7.0, -7.0, -7.0, -3.3560258571931225, -2.4244732731953342, -7.0, -3.321598430465344, -3.6103407114521566, -3.549861188471943, -3.0106767848473175, -3.531095546870028, -2.808042085314898, -3.223991933097826, -2.9176805224430487, -7.0, -7.0, -3.441695135640717, -7.0, -3.375846436309156, -3.33665982345442, -2.5695906342474704, -3.386855529184724, -7.0, -7.0, -3.1427022457376155, -2.1143352885949227, -7.0, -3.810098040681143, -3.743979865241843, -3.203984244420126, -3.3068537486930083, -2.674204809221172, -3.2489536154957075, -7.0, -3.0437551269686796, -2.930002458864768, -3.1043163645117278, -7.0, -7.0, -3.424432415724877, -7.0, -7.0, -7.0, -3.3541724896573473, -7.0, -2.7899917812740584, -3.4168068718229443, -3.522313795156667, -3.0842186867392387, -7.0, -3.1594468733874694, -2.991336850972244, -7.0, -7.0, -4.387656728620143, -2.9448773059636952, -7.0, -7.0, -7.0, -3.3434085938038574, -7.0, -7.0, -7.0, -3.4169731726030363, -3.692582562274909, -2.8373516579578224, -3.705749709269246, -4.251952721498891, -7.0, -3.3932241163612975, -7.0, -3.480438147177817, -7.0, -7.0, -3.5830853663476874, -3.530199698203082, -3.526597709103452, -7.0, -7.0, -3.3554515201265174, -2.330966897366099, -7.0, -2.8735143535392917, -7.0, -3.165000936622481, -7.0, -7.0, -7.0, -7.0, -3.4358443659844413, -2.947270299690615, -7.0, -2.392217158165493, -3.8134475442648212, -2.7052526322873587, -3.8889653443003374, -2.768268016451548, -7.0, -7.0, -7.0, -2.4324999946754002, -3.272189831450441, -2.997920064775138, -3.138776215729349, -3.683554592496879, -7.0, -3.376211850282673, -3.383994789441733, -3.0188895442801207, -3.8568496787251725, -2.6903571983690386, -2.2774818738891915, -7.0, -2.73453314583352, -7.0, -2.8756399370041685, -7.0, -3.658964842664435, -3.163757523981956, -7.0, -2.4762155307586386, -2.7179477417489277, -7.0, -2.9269851794378066, -7.0, -2.471630166315894, -2.5903358888776986, -2.226313431264316, -3.16761267272753, -2.9146075677710805, -3.330724416161277, -3.1992064791616577, -7.0, -3.720159303405957, -7.0, -7.0, -3.1421547334862034, -2.9509730248744774, -3.427891650708878, -1.8576979104047853, -3.1132189243125046, -2.9559281568969507, -3.400624321661767, -2.215615535361617, -3.875141037569342, -1.9156245368287141, -7.0, -7.0, -7.0, -3.1684385521867724, -2.1362674690642875, -3.395501124305626, -3.424718337331567, -2.7246853882373596, -3.076640443670342, -2.295161839468722, -3.095169351431755, -3.22284647997415, -3.433449793761596, -2.993142192245416, -2.0517198569263675, -7.0, -4.088903550093058, -3.23973313983308, -4.274178639459329, -7.0, -2.8542508196658543, -4.180478150873018, -2.841017999215743, -7.0, -3.4583356259919475, -3.367169488534681, -2.7541783906953876, -3.4129083314437545, -2.6358605750224178, -2.080347137974415, -7.0, -7.0, -2.0218251622609853, -7.0, -7.0, -7.0, -3.3078524552347384, -3.391111613702803, -1.2666411303139182, -7.0, -7.0, -3.768162219987711, -4.3069180203772985, -7.0, -7.0, -4.425517917846864, -3.3611781830641054, -3.6639834546082666, -3.14589263991003, -2.9804410666564363, -3.570270447480781, -7.0, -3.861614054079856, -3.7324018022389076, -4.159854966195215, -3.599752109269689, -7.0, -4.211618830342925, -3.7849279012531243, -3.7931964895580594, -3.869173027321683, -7.0, -4.913801494234826, -3.833932934844275, -3.5984135413909475, -4.158483112699248, -7.0, -3.895652709000915, -4.230729844577681, -7.0, -3.941149251276355, -4.206123963991852, -4.692238657427663, -3.657457437356336, -4.237065952555404, -7.0, -3.6621279628519448, -3.964118143151485, -3.875423024746981, -7.0, -3.250684239710383, -7.0, -4.208369684768811, -3.459212229915092, -3.6702922495788317, -2.946452265013073, -4.0603767213953565, -3.5938396610812715, -3.3308044475799257, -3.2823577252216545, -7.0, -3.864718685895433, -2.9696488404807253, -3.3940925389475614, -7.0, -2.828270112376824, -3.441904509867698, -7.0, -3.8972971220594963, -3.9255699095433765, -7.0, -7.0, -3.493549535982762, -3.359602222607438, -4.66644820193318, -7.0, -3.213849659558812, -7.0, -3.9220126057956737, -7.0, -4.2620542460671, -3.4345369694423313, -7.0, -7.0, -4.355202404658053, -4.458350742139663, -3.302805567509679, -7.0, -3.1096267509648063, -3.6049816296074315, -3.444642334143387, -3.5101426994025733, -7.0, -2.5859439053216287, -4.486803448227884, -7.0, -4.236814275171272, -7.0, -3.2692015103702907, -2.9343850705382533, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.973589623427257, -2.388722700475175, -2.174018250432816, -7.0, -7.0, -3.227629649571009, -7.0, -2.866050924009275, -7.0, -2.780077171419682, -3.345177616542704, -2.904512682924551, -2.4583356259919475, -3.4214393902200495, -7.0, -7.0, -2.972781203735422, -3.0990587890680543, -7.0, -7.0, -3.884285462339675, -7.0, -3.4372747974101237, -3.0638335542064703, -2.493893521283257, -7.0, -3.076640443670342, -7.0, -7.0, -4.614433158550452, -3.2937284566278207, -3.845215214780156, -7.0, -7.0, -2.087559066692512, -7.0, -2.0092770195830605, -7.0, -2.6707758036974223, -2.4231560648103123, -7.0, -7.0, -3.610766594773271, -2.3327077063482236, -3.811038508604216, -7.0, -3.2304489213782737, -2.3251636753807006, -7.0, -2.1636085634310516, -2.575726528681198, -7.0, -7.0, -1.9461246192171453, -2.78993308093175, -7.0, -3.592676297400732, -7.0, -7.0, -7.0, -2.976808337338066, -2.4880440505901413, -2.273772665662463, -7.0, -3.5162708827293403, -7.0, -7.0, -3.4101020766428607, -3.8806421264042847, -7.0, -2.8820689444361483, -2.1907709896295726, -7.0, -7.0, -2.0632268998054837, -1.9705668126696234, -2.616400486768762, -3.2980885693913815, -2.7474516477618667, -7.0, -3.851869600729766, -3.4885507165004443, -2.7131053594927255, -7.0, -3.500099191915723, -7.0, -7.0, -7.0, -7.0, -7.0, -2.846955325019824, -7.0, -3.0310287880069935, -7.0, -7.0, -3.3109056293761414, -7.0, -2.085766126574217, -7.0, -2.170516807608989, -7.0, -2.525476726000246, -2.333064896491424, -7.0, -3.330210784571528, -2.9361365870214917, -3.1677602664356295, -2.8539940191313975, -3.4413808849165113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.263399331334002, -3.402777069610347, -7.0, -7.0, -3.3914644118391033, -7.0, -7.0, -2.768003476952656, -3.52022143588196, -3.3827372657613304, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4102709642521845, -7.0, -3.3163111433656165, -7.0, -7.0, -3.7011360660925265, -7.0, -2.8459244807620387, -7.0, -7.0, -7.0, -7.0, -3.0118522700068455, -2.8187535904977166, -7.0, -7.0, -4.055550332976277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2024603224747716, -7.0, -7.0, -7.0, -4.099139449766182, -3.679927320565639, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3190267016919766, -4.472917269345676, -7.0, -2.8114442139762446, -2.8583983640189112, -7.0, -7.0, -7.0, -4.38172861853511, -4.36891880234938, -7.0, -3.166229669531838, -7.0, -4.0521358093017765, -7.0, -4.057647088848993, -7.0, -4.355757927746179, -3.7967130632808965, -7.0, -7.0, -7.0, -3.9500536824781434, -7.0, -7.0, -3.5376931943673906, -7.0, -3.8191489428071344, -7.0, -7.0, -4.401262647628488, -7.0, -3.6766570359180024, -2.015998849529744, -2.9783210084815113, -4.000332831533668, -3.127767925909508, -7.0, -7.0, -3.916611845109346, -4.062356318085437, -7.0, -7.0, -7.0, -7.0, -3.368168509363625, -3.399621810671736, -4.354089222152247, -7.0, -3.787460474518415, -7.0, -4.437877345621435, -4.419840141416905, -4.353454583806043, -7.0, -3.849148488594488, -7.0, -3.041894884169058, -7.0, -7.0, -3.77110221095409, -7.0, -4.357305807546096, -7.0, -3.9168748785386835, -7.0, -3.79778672138496, -7.0, -7.0, -7.0, -2.7029168150662946, -4.1047431057093755, -3.2805649808879713, -4.352510527820731, -7.0, -7.0, -3.376010910646249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.747356310540248, -7.0, -4.086163998032887, -7.0, -3.720374329337824, -2.889766853636871, -7.0, -7.0, -3.5891860309942296, -4.370124326635658, -3.2497908144703125, -3.3639690449788393, -7.0, -7.0, -4.406642355350766, -7.0, -7.0, -3.964966374831098, -2.4355746981517323, -7.0, -7.0, -7.0, -3.850851569406117, -4.066586796470695, -3.615950051656401, -2.909489168417103, -7.0, -4.3616522999739376, -3.0656004601239433, -7.0, -7.0, -7.0, -3.8781865623839025, -7.0, -7.0, -7.0, -4.052386095389375, -4.350945431337479, -3.736197238918293, -7.0, -4.082342475253593, -3.5253363994486446, -4.361954365353462, -3.993715382561762, -7.0, -7.0, -4.06781451116184, -3.045609805328916, -4.156882164439376, -7.0, -7.0, -7.0, -3.4117650585774544, -7.0, -7.0, -7.0, -4.370975449358971, -7.0, -4.371289573064557, -7.0, -4.389112902192263, -7.0, -7.0, -4.169365793151048, -7.0, -7.0, -2.102548712993538, -4.357687152332334, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.371659416448944, -7.0, -3.7103289580426297, -7.0, -3.590140948581808, -1.8652636002013423, -2.915964856951931, -2.669773466253543, -2.949070183558962, -3.467756051244033, -3.0055915816134133, -7.0, -4.076440177918153, -7.0, -7.0, -7.0, -7.0, -4.425289616446794, -7.0, -4.490464159065009, -4.078674273360466, -4.643274974211101, -7.0, -3.186892154330931, -7.0, -3.2382343402834737, -4.058995093525416, -7.0, -7.0, -7.0, -3.6614498334507024, -4.083251717221604, -7.0, -4.387656728620143, -7.0, -1.7023468385397829, -7.0, -7.0, -3.578371751958183, -4.352298314534367, -7.0, -4.35837273025802, -7.0, -7.0, -2.1148654682308305, -4.110825310054965, -2.3292190825019476, -3.46127901820621, -7.0, -7.0, -7.0, -4.3678030327490065, -7.0, -7.0, -3.4280267471363537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5793500607865452, -7.0, -7.0, -7.0, -7.0, -4.061207365300118, -4.059941888061955, -7.0, -4.362388216588698, -3.826123415033982, -7.0, -7.0, -2.443738372084082, -3.2965555060882235, -7.0, -7.0, -3.350910791047725, -2.746054608250968, -2.7705497211846604, -7.0, -2.882316969972196, -7.0, -7.0, -3.5781041291341573, -4.201506367053238, -4.439222132071866, -4.015960198014766, -4.133363239048624, -7.0, -4.372304301812888, -7.0, -7.0, -4.369735215355923, -3.91832745759621, -4.392327557983544, -7.0, -7.0, -4.370050237074868, -7.0, -4.374528394381243, -7.0, -3.9061913308567564, -2.6431378562608008, -7.0, -4.0919481908785595, -3.673665876245702, -2.9290514496780715, -3.6959629862267245, -7.0, -3.200524297120166, -4.352780467571326, -7.0, -7.0, -2.962150694375638, -1.8081330329577694, -2.7274893420823583, -7.0, -7.0, -7.0, -7.0, -2.4696548471781123, -3.8663168819216542, -7.0, -7.0, -7.0, -3.487641067547379, -3.9399682905513362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9540011676815703, -7.0, -7.0, -3.5140826625258312, -3.5836521085420436, -3.742258294562316, -3.7119383877182592, -3.5801274505122467, -7.0, -3.449740593779286, -3.262358215691817, -7.0, -7.0, -7.0, -7.0, -3.6269730385435053, -3.8460586289641854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357210419006122, -2.5614340302696146, -7.0, -7.0, -2.646048382078891, -2.8286921130318965, -3.7635563374978425, -2.9858919737062264, -2.979376888593836, -1.4409806003003571, -3.0070263462012052, -2.8752399486367235, -2.359620733127385, -2.387000299581458, -3.091114004305992, -3.7212436846981767, -2.6089137703064407, -2.667603798222223, -2.1320969558218037, -2.936704709634012, -2.282571977286789, -2.2985376363883403, -2.9457346643472886, -3.2129248075868446, -4.410406027068357, -2.754528397576881, -2.521416773066945, -2.6672816919115228, -2.9832126912055705, -4.637099289431483, -3.0503668651683298, -2.927393696523618, -7.0, -2.155087384231883, -3.0549121513317727, -2.8916940312831434, -2.64957822912025, -3.3439296430348087, -3.600173959212428, -3.253350760498344, -3.323428906178432, -2.8878249642615463, -3.209083536295187, -2.658211932290689, -7.0, -2.997734511191365, -1.9540949941996784, -2.891361368543823, -2.5230711116183655, -3.4899584794248346, -7.0, -2.350363247273812, -4.025333178524231, -4.09841873415025, -2.7802558253347023, -2.908756846562415, -2.2553478969066205, -7.0, -2.4675593699303873, -3.9792447784093805, -7.0, -7.0, -3.959728084371596, -3.9479236198317262, -4.3648697986669625, -2.4397883590508522, -2.2193551859321543, -3.2057463603963625, -7.0, -3.5836844714826976, -4.056352107632129, -2.2201785795834823, -7.0, -3.549033145088479, -2.2489976533134346, -2.89394283598136, -7.0, -2.5974514056878997, -3.611103456465005, -2.7085475735379623, -3.6364043058455713, -3.3280736545131555, -3.7535677395933793, -2.233248271010596, -2.7909140607501293, -7.0, -2.3145906949270607, -2.2626113582592984, -4.408070285887185, -2.226154552287061, -4.357896749322294, -4.111917494923382, -2.115525895116428, -3.775100498879025, -4.354050785610767, -7.0, -7.0, -7.0, -3.530263748713028, -2.276811893626411, -4.083592192787562, -3.269571313209591, -3.6555801911718633, -3.2014153333509525, -2.7608885125470173, -3.273108162165656, -7.0, -7.0, -3.16087904727443, -4.352471951298952, -2.188139451818331, -3.9392029844167507, -3.883396425218766, -3.126383977482481, -0.8339791677991037, -3.4268364538035083, -3.424424243769512, -4.064233296034753, -4.058520921099337, -2.4799444140560416, -3.882998606861143, -3.760271660542063, -7.0, -3.8013007844375624, -7.0, -3.394249573718604, -7.0, -7.0, -2.2259461349748757, -1.2119596828671277, -2.087717864069486, -3.8733012218880476, -3.393013327901293, -4.00881300905209, -3.7627723132112116, -4.0948203803548, -7.0, -4.37278316770235, -3.4533183400470375, -7.0, -7.0, -3.5417574891704673, -3.8949065379377426, -2.8353978544636607, -3.404719713605265, -3.4714567409470156, -7.0, -4.360952968049115, -7.0, -2.876039047832732, -2.8033297854157246, -7.0, -7.0, -3.360472922041386, -3.9028908897244614, -2.7690987497112878, -4.058179196100317, -4.3543581827353215, -1.4197913690146289, -4.381999021683067, -1.6053596806286088, -3.6963039556509614, -3.2988530764097064, -3.2930309056064373, -3.5151734143886832, -2.87052395074504, -7.0, -3.1439511164239637, -4.357382103296111, -7.0, -4.452001227726593, -3.5249521970606112, -7.0, -4.148926404279561, -2.375792274747459, -4.416890030173012, -4.0841113519406775, -2.8997585768372334, -4.3958329201019835, -3.4376395975003704, -4.067795935294864, -3.0091586473368697, -2.769574240376453, -3.328639027551356, -3.589241947538832, -4.352008765565775, -7.0, -3.049101678208557, -3.353479077417884, -3.5186455243303114, -3.3942239667723677, -2.002570998365708, -2.9829402547939723, -2.295068142326665, -2.489507574006869, -2.5075761646833645, -7.0, -4.05869168281923, -4.375681899659375, -7.0, -3.9439394644722165, -3.9477113985684684, -3.105558842490254, -7.0, -3.773676760807886, -7.0, -2.5407495746008397, -7.0, -4.357382103296111, -7.0, -7.0, -4.353165804965758, -4.051036695141213, -3.8770064005726015, -2.906765889540728, -3.227464319520702, -4.379686151906955, -4.358486888100237, -3.883282800010276, -7.0, -7.0, -7.0, -4.058236168942767, -3.7855077880892263, -3.8959747323590648, -2.3334094862099475, -3.1875050533647573, -3.381197154693257, -3.4579008115869776, -7.0, -3.102930835735232, -7.0, -7.0, -2.4748625905317962, -7.0, -7.0, -3.2892114990916705, -3.437468690682047, -7.0, -7.0, -4.052943906657025, -3.685096533739927, -4.351815625616891, -3.468363743347739, -4.3729672063871545, -4.36451347369151, -7.0, -3.376455288899979, -7.0, -7.0, -3.83714634390906, -7.0, -2.868216825331944, -3.1947917577219247, -7.0, -3.8651039746411278, -2.724548052819, -3.763240757310025, -7.0, -7.0, -3.499215621220299, -3.2095724571036435, -7.0, -7.0, -7.0, -7.0, -7.0, -2.958394318227855, -7.0, -7.0, -2.8962505624616384, -3.0021087457977718, -7.0, -3.554125581513013, -7.0, -3.4518375861611674, -3.8918161195248606, -3.8596185787721806, -2.8596949382417227, -3.8797837800904156, -2.9388948175981704, -7.0, -3.3830969299490943, -2.747670701773019, -3.1516149720160125, -3.9761206182998157, -7.0, -3.2397998184470986, -3.380271556201239, -3.498010730179554, -3.847202363980924, -3.5621143505886863, -3.4554539687786283, -3.409087369447835, -2.801403710017355, -3.855700830835437, -3.879153246184246, -7.0, -3.8887970674566805, -3.4347285417797577, -2.213668653242534, -2.5997407193331936, -2.6390637006428417, -2.924486043733915, -3.860996436757196, -3.57153414742667, -3.2632098485727488, -7.0, -7.0, -3.8804133998779164, -7.0, -3.5683777537182206, -2.4834360012063805, -3.0073083928914546, -3.8457180179666586, -7.0, -2.7737376998796326, -7.0, -3.1177498976848512, -2.402957006685218, -3.8436687229791437, -3.959089114367392, -3.5773799979362595, -7.0, -3.2391993420543015, -7.0, -7.0, -2.508044027297837, -3.6269046860771983, -3.856003453997221, -7.0, -3.963268251526235, -7.0, -3.023983672235201, -7.0, -3.4385950832263315, -7.0, -2.7522016590342444, -3.693111115462141, -2.6232492903979003, -7.0, -7.0, -3.9573678084315276, -3.067973700294994, -3.6444878264138585, -3.0557180220312725, -7.0, -3.2327844143207414, -7.0, -7.0, -7.0, -2.836296589515527, -7.0, -3.3422252293607904, -7.0, -2.6845189471368234, -2.4174789139343855, -7.0, -3.5511449087563216, -3.4102709642521845, -7.0, -2.9543560356409655, -7.0, -7.0, -3.933183479174614, -3.3940574848093257, -3.7283131918551256, -7.0, -3.629593065055699, -2.766013293129767, -7.0, -3.6478066243908707, -7.0, -4.176165703157553, -3.1885910365939902, -3.1852115157200926, -3.3199384399803087, -7.0, -3.568495067193246, -2.131153997674171, -3.495127881242933, -7.0, -3.8370831508231857, -4.473428573603286, -7.0, -7.0, -7.0, -7.0, -3.8355003278673188, -2.9534799201619046, -3.11601706796125, -3.360929847769662, -3.4485903895359518, -7.0, -4.145631415290328, -7.0, -7.0, -3.4143604491198576, -3.551035024150877, -3.8166720655453337, -7.0, -7.0, -7.0, -3.1232402702695254, -7.0, -7.0, -3.9202798946329485, -3.198547125064507, -3.84397984447816, -3.8988896559265864, -3.1294213284149075, -2.6256063897085316, -2.988905619919238, -2.5722906061514177, -2.6375522674177097, -3.130280148582363, -3.862667950228588, -2.454719615471786, -3.857211842316892, -7.0, -7.0, -3.271318745081179, -3.5532760461371, -7.0, -7.0, -2.5140457292682847, -7.0, -4.406284637924727, -7.0, -2.5329416313913384, -2.361890194037088, -3.031523876020016, -2.381781928710837, -3.232487866352986, -3.052584021782163, -3.0972077128816373, -7.0, -3.2176944602053785, -3.190611797813605, -3.603793704136963, -3.2500945661888303, -7.0, -3.74170298395774, -7.0, -2.842410653111147, -3.0196873549368544, -3.85105950643604, -7.0, -2.215469320738178, -7.0, -1.8412490238433403, -2.63233817685707, -2.8628358311818536, -3.0750600841196736, -7.0, -2.518075036877517, -2.78902641153793, -7.0, -2.9448773059636952, -1.7023468385397829, -7.0, -7.0, -7.0, -3.854123782101167, -7.0, -7.0, -7.0, -7.0, -3.864748335629659, -2.452838323991646, -3.106063344915765, -2.9566485792052033, -3.04730732465275, -7.0, -3.8564267724702446, -3.8637985386805003, -3.8884603180353863, -7.0, -3.8436687229791437, -2.7539913743366897, -7.0, -3.9070887450742955, -7.0, -3.8322533701970083, -7.0, -7.0, -7.0, -7.0, -2.763855659261606, -1.6390451678893192, -7.0, -7.0, -7.0, -7.0, -3.3942181263801987, -3.168202746842631, -3.8329557506045986, -3.8719230318823734, -2.9699592171113403, -7.0, -3.618117857290815, -2.647955984765046, -2.912168896059627, -3.8402315949581087, -3.8337206904446335, -2.204444931778382, -2.8120387480202664, -2.384981373841525, -3.8731461513282555, -3.0369752047078737, -7.0, -7.0, -7.0, -3.510893378365528, -3.7745899502647946, -2.9116341316000836, -3.1609184995397808, -7.0, -3.2024883170600935, -3.8703453710809597, -3.542015814870588, -3.894260664446988, -3.666049738480516, -3.1128921383925734, -7.0, -3.852540985769799, -3.417859036208306, -3.549371152333177, -3.062689403096359, -7.0, -3.1551841596940076, -3.172223341427753, -3.413467412985825, -2.466197708063207, -2.3555336147958466, -2.910360625418522, -2.7362125701152555, -3.8457799671118895, -2.9621663152618503, -3.841484609335393, -3.5744364202024044, -3.2328691051326137, -3.2192176570229067, -2.315062135517979, -2.867150070839093, -2.865661253706322, -2.7431960814487013, -3.2894551656702844, -3.638439335179549, -2.9377560847436563, -2.8841342653384863, -7.0, -7.0, -7.0, -4.082390377581715, -3.068020856241934, -7.0, -3.8675264111997434, -3.952792443044092, -7.0, -3.0835538066394377, -7.0, -3.056218581272306, -3.3933411768692574, -3.5835954675922532, -3.244977695626852, -3.024895960107485, -3.6897637862550114, -3.7101314745149105, -3.8219614856202524, -7.0, -2.797890483058349, -3.066039375035261, -2.944975908412048, -7.0, -3.5788110603225816, -3.847634344318255, -3.147278719784546, -3.095552896019402, -3.765594055319445, -3.6283889300503116, -7.0, -7.0, -3.9488529061997135, -7.0, -7.0, -3.8730879855902858, -3.73275552117825, -3.855700830835437, -2.5007623243323183, -7.0, -7.0, -2.94359913882309, -3.1256405740546764, -3.796383506975522, -3.4229999772716164, -3.5078408854303, -1.554289756780903, -2.5508239426793615, -3.032503639715015, -2.4684482778524823, -2.7218380839505403, -3.2364952743003883, -4.423737249982329, -3.188536250695248, -3.231884579725797, -2.552707456634642, -3.7438232216037504, -2.777956017976713, -2.428868995209785, -3.7567121601647715, -3.584670384464349, -7.0, -3.46437688840658, -2.9530171749931706, -2.7923809128265353, -2.8029560678922834, -7.0, -3.538900337140719, -3.1902716533078457, -7.0, -2.417338810319398, -3.2033258343997835, -3.0780135164511284, -3.4381149636619983, -3.864689034136851, -3.442636525782232, -7.0, -7.0, -3.1600806843827383, -3.034227260770551, -2.235565441198802, -3.879038505237237, -3.248218561190075, -2.618855352283515, -2.9170109744688304, -2.5037906830571814, -3.4007263285869342, -7.0, -2.72075606342588, -2.270895401371112, -3.199114962043649, -3.452169918535435, -3.013378368536278, -2.8092630297861527, -3.9028727854460796, -2.4212410860808884, -3.41520713590843, -3.843419665204918, -7.0, -3.330486246354266, -7.0, -7.0, -2.808156769243597, -2.510130451735458, -3.8196249153075152, -3.373892352104008, -2.904522345185676, -3.555215405126073, -2.831649008045522, -4.093141404751149, -4.054346554904802, -2.9397331381102125, -3.660523976930213, -7.0, -3.114404445907608, -3.2934405530022266, -2.8427392173094055, -3.3175619366212463, -2.9247768693591403, -4.106122874006655, -2.7075548783828673, -2.7483055150312383, -3.8720979742742268, -2.491287464977637, -2.9277079623485593, -3.6989265727162115, -2.482505310216106, -7.0, -3.313192063634804, -2.345411075571206, -3.571825249040829, -7.0, -3.837019948540908, -7.0, -7.0, -7.0, -2.1663600898260897, -3.03362477121926, -2.4131583231153693, -7.0, -3.1398790864012365, -2.618509539449221, -2.713243405727743, -2.7463746862427323, -3.8491121661845775, -2.9008403154999742, -7.0, -2.60677324209835, -2.764342210588111, -3.8663464227496016, -2.7531743591973843, -2.0631411665497734, -3.450813427021517, -2.6080106916094867, -3.579726448846229, -7.0, -2.91539983521227, -3.3877456596088638, -3.8720979742742268, -3.913336925932623, -2.907993255039917, -7.0, -2.878156073810623, -7.0, -7.0, -2.8895580718964715, -2.0498136513778378, -2.578181898509458, -7.0, -2.7043888651701895, -2.5513337987796993, -3.1803552964487887, -2.6043669434285777, -7.0, -2.94819554675934, -2.506035758960099, -7.0, -7.0, -2.943247125137862, -3.201888500365973, -2.8169038393756605, -3.384831120201789, -3.431899599491494, -3.28397928423848, -3.2650537885040145, -2.961684702257791, -2.3095755769561013, -2.810430203137513, -3.53763023032496, -2.788389352411851, -2.660865478003869, -3.623352681537992, -2.0766317760693416, -3.862131379313037, -7.0, -2.633499060172947, -3.4526041236583422, -2.1350392900048805, -2.8518226118758494, -2.7812483667358685, -3.300432429830641, -3.866050924009275, -3.3496983398039943, -3.0835623371877907, -3.0895872186728046, -7.0, -2.725350033521565, -2.8246737964299387, -3.5947239464097467, -7.0, -2.6834626973695452, -2.0687890798848607, -2.4880527674890005, -2.7068181508331386, -1.7812158154954059, -2.502991872316166, -2.690786555281818, -3.192232822924277, -2.507473984797903, -2.5909452789636784, -2.992387809283771, -7.0, -3.5378190950732744, -3.532818053867167, -3.5120466546965416, -3.0626289832522775, -3.8767949762007006, -2.817187475707873, -2.3012918028548115, -3.0835026198302673, -2.8560827272755613, -2.9551227939084574, -2.924915149252929, -2.730307169523499, -3.5625902246063346, -2.869338412885156, -7.0, -2.5680397947280933, -2.366124780433001, -3.0496443525693, -7.0, -3.008440475315219, -3.1846346565862738, -2.523382794642113, -3.0948785616774006, -3.555094448578319, -7.0, -7.0, -3.8427340189482697, -7.0, -3.846089580357984, -2.337045942694717, -3.003245054813147, -3.077627417979003, -3.0139201038746375, -3.865991800126275, -3.5460488664017342, -3.3784584677820555, -2.917038463418648, -3.8623103099542706, -2.903435311184991, -3.6033067965385137, -2.701976775583116, -2.2413443286912247, -3.4347684420491507, -3.86840930331496, -3.8357539675193832, -2.9488573477695916, -3.8623699371228826, -7.0, -2.9440692989142505, -3.1721356966495664, -3.0907281958534445, -3.033468433690981, -2.7802212717855133, -7.0, -7.0, -3.368100851709351, -3.0323668937196664, -7.0, -2.889781762778371, -3.12515582958053, -3.577319426553794, -3.5306478535274857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2576785748691846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.451810988581844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.726770663461099, -7.0, -7.0, -7.0, -4.187802638718419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333044029823487, -7.0, -7.0, -3.1612681529456736, -5.094453658681188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.295347148333618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9410142437055695, -7.0, -7.0, -2.8654001181793016, -4.906948870476861, -7.0, -7.0, -3.472317546316842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.446304113951924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0969100130080562, -1.738100733954366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.451632947456991, -7.0, -3.188084373714938, -7.0, -4.627603936292747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2607866686549762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.622214022966295, -2.2270292621201366, -7.0, -7.0, -2.6273658565927325, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1649176661009575, -4.752278985460118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5746099413401873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8854366118348267, -7.0, -7.0, -7.0, -7.0, -2.173186268412274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5607034958686796, -7.0, -7.0, -7.0, -7.0, -7.0, -4.538246884671983, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0881360887005513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808335293644868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.430505050123604, -7.0, -7.0, -7.0, -7.0, -3.495320734733275, -2.924795995797912, -3.0478587274074567, -7.0, -7.0, -2.8380090624639394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.063933524163039, -7.0, -3.7351995484223135, -2.795880017344075, -7.0, -2.3443922736851106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3404441148401185, -7.0, -7.0, -7.0, -7.0, -3.594834355583318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6620491649778457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9868264529186463, -7.0, -7.0, -7.0, -7.0, -2.568201724066995, -2.12515582958053, -7.0, -7.0, -7.0, -3.197831693328903, -7.0, -3.3185502512263594, -3.172894697752176, -7.0, -7.0, -7.0, -7.0, -4.053180919765609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.946452265013073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.932811868611632, -7.0, -7.0, -7.0, -7.0, -7.0, -2.542514216281654, -7.0, -7.0, -3.913124790389559, -7.0, -7.0, -2.5118833609788744, -4.285833677940712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4638929889859074, -7.0, -7.0, -7.0, -7.0, -7.0, -5.527187649042395, -3.852540985769799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.828015064223977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.85524043938708, -4.3818908806262575, -5.875135376659126, -7.0, -7.0, -5.01741735305172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0392157659039505, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5957717020009405, -7.0, -7.0, -4.591854526887034, -7.0, -7.0, -7.0, -7.0, -4.367393197922476, -7.0, -7.0, -4.878562006091662, -7.0, -7.0, -7.0, -7.0, -7.0, -4.577721524509021, -7.0, -7.0, -4.920962915790826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.470946779511408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.610724025229824, -7.0, -4.6673595461830875, -4.587789512472801, -2.720218387071364, -7.0, -7.0, -7.0, -4.933659351805472, -7.0, -7.0, -7.0, -7.0, -4.376659063797446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.990236708081907, -5.186481684289071, -7.0, -7.0, -7.0, -7.0, -4.652976000167315, -7.0, -5.404843975423541, -7.0, -4.209300495159705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.896531728805878, -4.482902154674314, -7.0, -4.3399579883119195, -4.9544692484698345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.862205942706113, -3.292256071356476, -4.174815456482182, -7.0, -7.0, -3.5578278919567095, -7.0, -7.0, -7.0, -7.0, -7.0, -4.494015374757144, -7.0, -7.0, -7.0, -4.116109414063344, -7.0, -7.0, -7.0, -7.0, -3.452782787900721, -7.0, -7.0, -7.0, -3.1805559407036412, -7.0, -3.9983465373963645, -7.0, -7.0, -7.0, -3.8380511024893247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.115943176939055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.890979596989689, -3.6704314093606056, -7.0, -7.0, -3.4998244958395794, -7.0, -7.0, -4.136022599397011, -7.0, -7.0, -7.0, -7.0, -4.1705824271062575, -3.4095950193968156, -7.0, -3.11293997608408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7801011914679115, -7.0, -7.0, -7.0, -3.849060937109684, -7.0, -7.0, -4.298700282631671, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7470490969695196, -3.25478968739721, -4.151614972016013, -4.241471767550763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.389555888095237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0971878725708955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.494015374757144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6589648426644352, -7.0, -7.0, -7.0, -3.1604685311190375, -7.0, -2.972665592266111, -4.301607765700107, -7.0, -7.0, -7.0, -7.0, -3.9115837009810757, -7.0, -7.0, -7.0, -7.0, -7.0, -3.640063836529813, -7.0, -7.0, -2.88930170250631, -3.8159317687081695, -7.0, -7.0, -7.0, -3.021602716028242, -3.1473671077937864, -7.0, -3.7519597469003356, -2.7741518589547103, -7.0, -7.0, -7.0, -3.3068537486930083, -7.0, -3.4877038631637265, -7.0, -3.362105319293773, -7.0, -4.664312839896641, -7.0, -2.958085848521085, -3.0360297306565434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.249442961442582, -4.130392742753647, -7.0, -3.4282968139828798, -3.4942241869169015, -7.0, -7.0, -3.444513206334043, -3.0453229787866576, -7.0, -7.0, -2.765668554759014, -3.0060379549973173, -7.0, -4.149988456491476, -7.0, -7.0, -3.4058583993176366, -7.0, -3.7346398389876994, -3.634779458145952, -7.0, -7.0, -4.648363264110934, -7.0, -2.8819549713396007, -7.0, -7.0, -3.8776592441116087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5466660250701842, -3.266936911159173, -7.0, -3.7989676263398766, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9554472105776957, -3.385963570600697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6504462975321914, -7.0, -3.382197210377454, -3.1781132523146316, -3.632558514532672, -4.077513251497662, -2.977266212427293, -7.0, -2.645094623553164, -7.0, -4.08423657329355, -3.0633333589517497, -7.0, -7.0, -3.5472823079633033, -3.3332456989619628, -3.0696680969115957, -3.027058232734036, -3.754493585981362, -7.0, -3.540579716504454, -7.0, -4.994048660742143, -7.0, -7.0, -3.608739919068788, -7.0, -7.0, -3.6979699765543392, -7.0, -7.0, -7.0, -3.8911842291196206, -7.0, -7.0, -7.0, -7.0, -7.0, -4.029992175377847, -3.730862992046494, -3.6776981814745104, -3.685920792194535, -7.0, -7.0, -7.0, -7.0, -2.66838591669, -7.0, -7.0, -7.0, -7.0, -2.7193312869837265, -4.241035685094299, -7.0, -7.0, -3.2860071220794747, -7.0, -2.165095874754218, -7.0, -7.0, -3.4008832155483626, -7.0, -3.2713768718940743, -3.878579238062219, -7.0, -7.0, -3.435041507020505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.808833989621961, -7.0, -3.803684673674004, -7.0, -3.7221401254574156, -3.2194593168424754, -2.75815462196739, -3.0767314430382817, -2.8080983884823985, -7.0, -2.8981764834976764, -7.0, -7.0, -7.0, -7.0, -3.632558514532672, -7.0, -3.6669857183296606, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7741883834475543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7440581658788354, -3.3517963068970236, -7.0, -7.0, -3.578371751958183, -3.854123782101167, -7.0, -7.0, -7.0, -1.4114424790756848, -7.0, -7.0, -7.0, -7.0, -2.5120971148810134, -2.0320428497705643, -3.8311976650693866, -5.411956237930402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3324384599156054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.544494684155256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.782830805202592, -2.398474196294003, -2.952792443044092, -7.0, -7.0, -7.0, -7.0, -3.4548067623303504, -7.0, -4.012119835804513, -7.0, -7.0, -2.870403905279027, -3.9925535178321354, -7.0, -3.3589337176143736, -3.23946632295603, -3.840294331611436, -7.0, -7.0, -7.0, -7.0, -7.0, -3.431202884556517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0402066275747113, -2.9740509027928774, -3.141763230275788, -7.0, -7.0, -4.177661527961347, -7.0, -7.0, -3.985089506926381, -7.0, -2.7466341989375787, -7.0, -3.278753600952829, -2.808837695380183, -3.028435683944159, -3.78660947264866, -7.0, -3.525563058270067, -7.0, -4.828405302161947, -7.0, -7.0, -7.0, -7.0, -3.278296208091274, -7.0, -7.0, -7.0, -2.5643278286571864, -7.0, -2.720159303405957, -7.0, -7.0, -7.0, -3.1065308538223815, -7.0, -7.0, -4.158078901737636, -3.6090605499300867, -4.7961191030165615, -7.0, -3.7927417858347487, -4.541558443904339, -3.298489193286698, -7.0, -7.0, -7.0, -7.0, -3.483301952358167, -3.721728198572788, -3.3244882333076564, -7.0, -7.0, -3.397592434038117, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388988785124714, -7.0, -7.0, -3.8961954104542107, -7.0, -7.0, -7.0, -7.0, -4.072010804365697, -3.877889425371484, -7.0, -3.5578736854964284, -7.0, -7.0, -7.0, -7.0, -7.0, -4.104065814376235, -7.0, -4.372534591702954, -4.445417369765918, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8328664197968454, -7.0, -7.0, -7.0, -7.0, -7.0, -4.172135696649566, -4.158211669214101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0118557916799, -7.0, -7.0, -4.287883805323705, -3.885587356189656, -3.655234507034294, -7.0, -7.0, -4.194027174554883, -3.992376759798803, -7.0, -7.0, -4.485555814223788, -3.726111136977972, -7.0, -4.43713196609433, -7.0, -7.0, -7.0, -4.372912002970106, -7.0, -7.0, -4.5144592024546775, -4.311817411695856, -5.70642673312701, -7.0, -7.0, -7.0, -3.9554087118535692, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3217640810754965, -7.0, -7.0, -7.0, -4.2139690824147, -7.0, -4.296127472928034, -4.487265674419202, -7.0, -3.563129908519703, -4.256938924930791, -7.0, -5.046506870227673, -7.0, -7.0, -4.60794801604128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.213133908974258, -7.0, -3.405204019876869, -7.0, -7.0, -3.8650842245566794, -7.0, -3.3014640731432996, -7.0, -3.445059047392219, -7.0, -4.496147490722734, -3.1357685145678222, -7.0, -3.329194415088451, -2.949194774237982, -7.0, -3.3624824747511743, -7.0, -7.0, -2.5190984547466106, -7.0, -7.0, -7.0, -2.920905604164024, -7.0, -4.011528153857539, -7.0, -2.792391689498254, -7.0, -3.102612192216802, -4.486798729097594, -7.0, -2.5349774634615505, -3.157809218605523, -3.075911761482778, -3.4626974081017172, -7.0, -3.2076343673889616, -3.5514011980984597, -7.0, -7.0, -7.0, -7.0, -3.6806074289917876, -7.0, -2.934750874663579, -7.0, -2.688864568054792, -3.2706788361447066, -3.1399240420952785, -7.0, -7.0, -3.238798562713917, -3.5141491344754376, -7.0, -3.668416980992571, -7.0, -7.0, -7.0, -3.3261309567107946, -3.3298924476951335, -2.855670556918036, -7.0, -2.2466079886517525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8016780590358934, -7.0, -7.0, -7.0, -3.3513283280710824, -3.3152354096177272, -2.7577754910119254, -4.0042783722001625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1245042248342823, -7.0, -7.0, -3.6604480513212954, -7.0, -7.0, -7.0, -3.8302164400865957, -2.4756711883244296, -3.461708570064366, -4.546332868319189, -3.1823195271506552, -3.4435758797502576, -7.0, -3.248218561190075, -7.0, -3.1650463796852826, -3.664735968518705, -7.0, -2.6627578316815743, -7.0, -7.0, -3.2483761775934874, -3.035029282202368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3237332367838985, -7.0, -7.0, -7.0, -2.979548374704095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2310871205848226, -7.0, -7.0, -4.498269190440657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.78354628227035, -7.0, -7.0, -4.162664863178352, -7.0, -7.0, -7.0, -4.189967298351272, -3.905418068702542, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8573928109209015, -7.0, -7.0, -7.0, -3.8555471106407366, -7.0, -7.0, -7.0, -2.669316880566112, -3.0696680969115957, -7.0, -4.864683103542188, -2.6807886115066824, -7.0, -7.0, -2.8000293592441343, -7.0, -7.0, -7.0, -7.0, -3.3163897510731957, -7.0, -7.0, -7.0, -7.0, -3.2889196056617265, -7.0, -3.6203442997544935, -7.0, -7.0, -7.0, -7.0, -7.0, -4.606322236836919, -7.0, -3.415696569589914, -3.7790912038454993, -7.0, -7.0, -3.40705081480425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.647614401744664, -7.0, -2.8359018556035758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4095950193968156, -2.4216039268698313, -7.0, -7.0, -7.0, -7.0, -3.974516809880292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.361444508086328, -7.0, -3.3386556655787003, -7.0, -3.131083752984664, -3.7722116519480173, -7.0, -7.0, -3.0409976924234905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9749719942980692, -3.1252150179256852, -4.4518247990667295, -7.0, -7.0, -7.0, -4.993034818671166, -7.0, -3.41161970596323, -7.0, -7.0, -7.0, -3.516755660221549, -7.0, -7.0, -7.0, -4.063014183518913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6648299411430907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2540644529143377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071756239988947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0662194023097737, -7.0, -7.0, -7.0, -7.0, -3.7094569171992786, -7.0, -3.356694958541127, -2.9579662575849297, -7.0, -3.331832044436249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3434085938038574, -4.352298314534367, -7.0, -7.0, -2.3404441148401185, -1.4114424790756848, -7.0, -7.0, -7.0, -7.0, -7.0, -3.599063905879417, -1.9454685851318196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1705550585212086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2425215516658765, -7.0, -7.0, -7.0, -7.0, -7.0, -2.876217840591642, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9553440813219995, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4518759451856647, -7.0, -4.709210580717843, -7.0, -7.0, -7.0, -7.0, -7.0, -3.046446386384199, -3.697316541732383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3925210899319325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2935835134961167, -3.917190308511564, -7.0, -7.0, -7.0, -4.529138288111391, -7.0, -7.0, -7.0, -7.0, -2.948412965778601, -3.5618166643189575, -7.0, -3.6438966143222347, -7.0, -7.0, -7.0, -7.0, -3.3180633349627615, -5.226204736579822, -3.5560611590095323, -7.0, -7.0, -7.0, -3.7378285058957847, -3.1158323168282034, -7.0, -7.0, -2.252479604919136, -1.8930215923314397, -2.6697816152085365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.554664780556801, -3.6841628756550566, -4.875169533985348, -7.0, -3.7763379096201755, -7.0, -3.281412167517624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.622214022966295, -7.0, -3.654850090561394, -2.250420002308894, -7.0, -3.747478395341935, -7.0, -7.0, -7.0, -7.0, -4.067758781177132, -7.0, -7.0, -3.648371492507466, -7.0, -7.0, -7.0, -7.0, -7.0, -4.101437735138849, -7.0, -7.0, -4.62032347976926, -7.0, -7.0, -7.0, -7.0, -7.0, -4.528993787130841, -4.096736260462469, -7.0, -7.0, -7.0, -7.0, -4.170452410963683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.449046203903854, -7.0, -4.13437900863513, -7.0, -7.0, -4.588077398322267, -7.0, -7.0, -7.0, -7.0, -4.757757790148306, -7.0, -7.0, -7.0, -4.3595177052971295, -3.979366242396161, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.689539710978861, -5.186590504345145, -7.0, -7.0, -7.0, -7.0, -4.477246699451068, -7.0, -7.0, -7.0, -7.0, -7.0, -4.316976239321548, -7.0, -7.0, -7.0, -4.207822799001508, -7.0, -4.294862862277967, -4.484000713927198, -7.0, -4.243420059770134, -4.954840458899287, -7.0, -5.347091819999941, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4238116524224047, -7.0, -3.3316008061043147, -7.0, -3.222456336679247, -4.337718762057449, -7.0, -7.0, -7.0, -3.7279477095447966, -7.0, -4.193493313706491, -7.0, -7.0, -7.0, -4.118661462854496, -7.0, -7.0, -7.0, -7.0, -3.4586378490256493, -7.0, -7.0, -7.0, -3.4927603890268375, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5620023044114753, -7.0, -7.0, -7.0, -3.2253609803726597, -7.0, -3.125481265700594, -7.0, -2.8391636829146503, -3.642711770167333, -7.0, -7.0, -7.0, -2.8273692730538253, -3.659250468772661, -7.0, -7.0, -7.0, -7.0, -3.2135177569963047, -3.3727739637205776, -7.0, -7.0, -3.03261876085072, -7.0, -7.0, -3.536211120636487, -7.0, -7.0, -7.0, -2.9747419045009504, -3.7339386976260975, -3.121067167467729, -7.0, -2.8363241157067516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1831274287013995, -7.0, -7.0, -7.0, -3.513913880331417, -7.0, -3.315130317183602, -3.823169812057419, -7.0, -3.716086853774832, -7.0, -7.0, -7.0, -7.0, -7.0, -2.44870631990508, -7.0, -7.0, -7.0, -2.9585638832219674, -7.0, -4.049153390706091, -3.2730012720637376, -3.250450499446079, -7.0, -7.0, -7.0, -7.0, -3.1878026387184195, -7.0, -3.1416587697865523, -3.341335585180992, -7.0, -7.0, -7.0, -3.0153597554092144, -3.6918061854702637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.939091165366704, -7.0, -3.245759355967277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3592661646067485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.656577291396114, -4.173795601863544, -3.0277572046905536, -7.0, -7.0, -3.296445794206396, -7.0, -7.0, -4.388160430275948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.538975672273216, -7.0, -2.591621038213319, -3.311753861055754, -7.0, -3.32990612340021, -2.8175653695597807, -1.8993153129766798, -7.0, -7.0, -7.0, -3.565278829319486, -7.0, -3.597695185925512, -3.78660947264866, -7.0, -7.0, -7.0, -7.0, -7.0, -2.730378468587643, -2.660865478003869, -7.0, -7.0, -4.4491234131845605, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1444704211395553, -7.0, -7.0, -4.42609465941348, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.935003151453655, -3.2016701796465816, -4.385016090135945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.968716377466786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6047299167977918, -7.0, -7.0, -3.011993114659257, -2.382145741488806, -3.320457868916649, -7.0, -3.324840768927558, -4.753674963343975, -7.0, -3.3564720392787937, -2.632457292184724, -4.294492679842112, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6952408214435173, -2.757547853469244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1061908972634154, -7.0, -7.0, -7.0, -7.0, -7.0, -4.540529679695608, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.900913067737669, -3.356599435724971, -3.2412973871099933, -7.0, -3.2022157758011316, -7.0, -3.7277637027000337, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7573960287930244, -7.0, -3.6163704722912695, -7.0, -7.0, -7.0, -7.0, -3.9914649297659683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6384892569546374, -7.0, -2.703004620444392, -3.619719265611727, -7.0, -3.353916230920363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.034548247098469, -3.025510672852581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1522883443830563, -7.0, -1.9967305154351527, -2.219562697434782, -3.0919013313099013, -4.128269995169626, -5.712882777777072, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9571281976768131, -3.0049658871068234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.942052721014709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.507248513918787, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8336060353248835, -7.0, -7.0, -7.0, -7.0, -2.7902851640332416, -3.287667391274135, -7.0, -3.4779889762508893, -3.7063763558396903, -7.0, -7.0, -2.9556877503135057, -7.0, -2.819872821950546, -2.962527174843811, -2.932811868611632, -7.0, -7.0, -3.1271047983648077, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.886377906758572, -7.0, -3.9822712330395684, -7.0, -7.0, -3.2728854447575695, -7.0, -7.0, -7.0, -3.4764693239263837, -3.2591158441850663, -7.0, -7.0, -5.828336310392704, -7.0, -7.0, -7.0, -7.0, -3.4449031627954616, -7.0, -7.0, -7.0, -3.3898745583909853, -7.0, -7.0, -7.0, -7.0, -7.0, -2.279894980011638, -7.0, -7.0, -4.379196703832135, -7.0, -5.176266099768159, -7.0, -7.0, -3.6200360619998735, -3.1642040993240332, -7.0, -3.028977705208778, -7.0, -3.521399628115376, -2.9965846321681098, -3.4101020766428607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024376190894477, -7.0, -7.0, -4.593872854295451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0224283711854865, -7.0, -4.764568389965006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.474798818800631, -7.0, -7.0, -4.378316122321516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.991044343044156, -7.0, -7.0, -7.0, -3.67641923171836, -7.0, -4.95489346306892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.347296831998954, -7.0, -7.0, -4.3055555688380585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.166000639801866, -3.330819466495837, -7.0, -7.0, -3.2489536154957075, -4.038739348104749, -3.361727836017593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.224014811372864, -2.9043097257675417, -7.0, -7.0, -7.0, -7.0, -7.0, -4.616944389757526, -7.0, -7.0, -7.0, -3.1514720011315966, -7.0, -3.4435758797502576, -7.0, -3.17260293120986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6787914343662442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6479225684382985, -3.439332693830263, -7.0, -3.1699681739968923, -7.0, -7.0, -2.8847953639489807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.783760695743924, -3.8509217930432844, -3.603144372620182, -3.33665982345442, -7.0, -7.0, -3.4235735197327357, -7.0, -7.0, -7.0, -7.0, -7.0, -2.586587304671755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.64777405026883, -7.0, -7.0, -7.0, -7.0, -3.63002085111341, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9818186071706636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.270911639410481, -2.859738566197147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.72783935939594, -7.0, -7.0, -7.0, -7.0, -3.9138932892309164, -7.0, -3.0318122713303706, -7.0, -2.537189226243645, -7.0, -7.0, -3.893095666096228, -7.0, -7.0, -3.8395211092255126, -3.1065308538223815, -2.6334684555795866, -7.0, -3.3406423775607053, -3.1734776434529945, -7.0, -4.021390150745712, -3.1065308538223815, -7.0, -7.0, -7.0, -2.8471612005780305, -2.8992731873176036, -7.0, -7.0, -3.378216149749878, -7.0, -4.1874267075268845, -7.0, -2.9978230807457256, -7.0, -3.144574207609616, -7.0, -7.0, -3.1027766148834415, -7.0, -3.157456768134226, -7.0, -3.5108665907336367, -7.0, -3.60916737430202, -3.801403710017355, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6317818729476508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4403579968152878, -2.6416723732246865, -7.0, -7.0, -4.523700954526099, -7.0, -3.0746336182969043, -7.0, -7.0, -3.5814945422908995, -7.0, -7.0, -7.0, -7.0, -3.0464951643347082, -7.0, -3.557266528869904, -3.286905352972375, -2.954483717155552, -4.189242687350635, -7.0, -4.024239306069092, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4305587695227575, -3.1998922435263193, -7.0, -2.6972293427597176, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6727134419961223, -7.0, -3.1074599027639307, -7.0, -7.0, -3.0546130545568877, -2.7113250813570287, -7.0, -7.0, -3.029586671630457, -4.15318963999602, -3.0115704435972783, -3.068371418032643, -2.5514499979728753, -3.880382600567092, -7.0, -3.4619484952037616, -3.14040328016663, -2.8221680793680175, -7.0, -3.699859396707893, -3.4886916983169405, -7.0, -7.0, -4.369994661608428, -7.0, -7.0, -7.0, -7.0, -7.0, -3.732393759822968, -3.436639631692661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.391816923613249, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8441042306975133, -7.0, -7.0, -7.0, -3.204662511748219, -7.0, -7.0, -3.252610340567373, -7.0, -7.0, -3.291146761731886, -7.0, -2.7783924580998707, -2.9934362304976116, -3.7280887286803175, -7.0, -7.0, -7.0, -3.0692980121155293, -2.9283958522567137, -7.0, -7.0, -3.45117215751254, -7.0, -7.0, -7.0, -7.0, -3.4448925760099955, -7.0, -7.0, -3.295786940251609, -7.0, -2.788521887222473, -7.0, -7.0, -2.862429556106009, -2.3899251194809668, -3.641275757231913, -7.0, -3.675044735955893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.765594055319445, -7.0, -7.0, -7.0, -7.0, -2.572561834368586, -2.7651094972067183, -7.0, -7.0, -4.35837273025802, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1522883443830563, -7.0, -2.202079441007388, -1.8843159861168621, -2.0711346042025887, -7.0, -3.532818053867167, -5.713061076503902, -7.0, -2.944975908412048, -7.0, -7.0, -7.0, -2.525692524505011, -3.048247531803974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2629254693318317, -4.164902812078488, -7.0, -7.0, -7.0, -7.0, -7.0, -3.028977705208778, -7.0, -3.0576661039098294, -3.6916118742144164, -7.0, -7.0, -2.821316970591097, -7.0, -7.0, -7.0, -4.01632285401379, -7.0, -4.234314768012676, -7.0, -4.711891549880579, -7.0, -7.0, -7.0, -2.8813846567705728, -7.0, -3.061640934061686, -3.246662682245667, -7.0, -7.0, -7.0, -7.0, -2.337601863321786, -2.469822015978163, -2.744762237065578, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3311741373868458, -7.0, -7.0, -7.0, -5.132234066681874, -3.898176483497677, -7.0, -3.1414049753724838, -7.0, -7.0, -2.8981764834976764, -7.0, -3.9603756314101584, -7.0, -7.0, -7.0, -7.0, -7.0, -5.351349160460369, -3.5747833931757764, -7.0, -7.0, -7.0, -3.7623033632877685, -7.0, -7.0, -7.0, -3.1245042248342823, -7.0, -7.0, -7.0, -3.406028944963615, -3.049605612594973, -2.6567368704836722, -7.0, -7.0, -4.380476562832904, -4.087870112690256, -5.176388793597084, -7.0, -7.0, -3.219201843901402, -2.7014240597913446, -7.0, -2.8058405488146727, -2.8674674878590514, -3.24699069924155, -2.4869261276199506, -2.4957891254243636, -3.040602340114073, -7.0, -7.0, -7.0, -2.90687353472207, -2.426917713880816, -2.7634279935629373, -2.954145988829548, -7.0, -3.462779029617742, -7.0, -7.0, -7.0, -4.772549064918772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.719555007041931, -4.998115421830749, -4.582222499269305, -7.0, -7.0, -4.923010742963713, -7.0, -7.0, -7.0, -7.0, -4.275978986467148, -7.0, -7.0, -7.0, -4.658993413729996, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325043347403704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9469432706978254, -7.0, -4.1120945993276115, -3.413132050434872, -7.0, -7.0, -7.0, -4.934654971046216, -7.0, -3.5046067706419537, -4.141543834220653, -4.117952749892627, -4.6812864740280835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292977818238843, -7.0, -5.7065010076195035, -7.0, -7.0, -7.0, -4.9559137362541525, -7.0, -7.0, -7.0, -4.219741661046302, -7.0, -7.0, -7.0, -4.783346067476675, -7.0, -7.0, -7.0, -4.199683885691952, -4.187436109773708, -2.7570162347313003, -4.6429588794097905, -4.956365355664486, -3.2665844470668635, -4.444593175946113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7197454925295768, -4.470189906285553, -3.371806458507416, -3.8850217948622974, -7.0, -7.0, -7.0, -7.0, -3.0184924534014725, -7.0, -7.0, -7.0, -4.496749807394558, -7.0, -3.0199466816788423, -7.0, -3.82791825674535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.574956775764507, -2.834929096460576, -7.0, -7.0, -7.0, -7.0, -4.597300193190778, -3.9807932332478377, -7.0, -7.0, -7.0, -3.3384564936046046, -7.0, -3.1742052269401473, -7.0, -2.6268534146667255, -3.9516046200484136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.290479813330673, -7.0, -7.0, -7.0, -7.0, -2.92272545799326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.466391484406633, -3.47158505418519, -7.0, -2.527114111639805, -7.0, -3.8530286147129895, -7.0, -7.0, -7.0, -3.347720217034038, -3.330210784571528, -7.0, -7.0, -3.321253121961899, -3.589736410795124, -3.147985320683805, -3.3771240423464564, -3.8300109359361176, -7.0, -2.9628426812012423, -3.17260293120986, -7.0, -7.0, -7.0, -7.0, -2.776701183988411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.246350836456256, -3.1905184513367484, -3.456973013635818, -7.0, -3.269045709657623, -7.0, -3.3498600821923312, -7.0, -3.6924062348336304, -7.0, -3.2711443179490782, -3.131297796597623, -4.095413464448447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.617000341120899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.543322900646912, -7.0, -7.0, -4.198409633537761, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6173498739219823, -2.6599162000698504, -7.0, -5.204193263666834, -7.0, -7.0, -7.0, -7.0, -3.906227263052359, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.341217992586227, -7.0, -7.0, -7.0, -7.0, -2.7788744720027396, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.044539760392411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.606483476807796, -7.0, -7.0, -7.0, -7.0, -7.0, -3.412124406173317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.614158709509175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.928917920853296, -7.0, -4.012288739834607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.344588742578714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.427179448528025, -7.0, -7.0, -7.0, -3.5219222448835, -7.0, -7.0, -7.0, -4.75310024118681, -7.0, -7.0, -2.8948696567452528, -4.391080730225895, -7.0, -7.0, -3.586812269443376, -7.0, -7.0, -4.29578694025161, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.714413592287121, -7.0, -7.0, -7.0, -7.0, -7.0, -2.690196080028514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.040602340114073, -7.0, -7.0, -7.0, -7.0, -4.410660690360591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276323911020188, -7.0, -7.0, -4.206954950594866, -7.0, -3.660770643527697, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0689276116820716, -2.857633985150008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067925949681522, -7.0, -3.743666521446213, -7.0, -2.859738566197147, -7.0, -7.0, -3.2506639194632436, -3.00987563371216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.202079441007388, -7.0, -2.385606273598312, -2.7242212379280453, -3.56062387454993, -7.0, -5.7128196828643425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.290034611362518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.193958978019187, -4.941680347291402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6654871807828107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2842953482305264, -7.0, -7.0, -7.0, -7.0, -3.1420764610732848, -7.0, -7.0, -3.0962145853464054, -7.0, -3.0963885466873666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.617629297757842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5032684897703463, -7.0, -7.0, -3.5653755027140734, -2.928907690243953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.527256659663878, -3.859018143888894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.03261876085072, -7.0, -7.0, -4.55484638228861, -7.0, -5.273133856405366, -7.0, -7.0, -3.762449313089825, -3.2836780569110555, -7.0, -7.0, -7.0, -3.5114822886260013, -2.923983747103962, -3.7049222912234017, -3.2812606870550125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023348501505407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.080987046910887, -7.0, -4.764288242139756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.438083288767236, -4.660708990011405, -4.678682232836399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.487665715909312, -7.0, -7.0, -3.669502834104343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8971210359055855, -7.0, -7.0, -7.0, -7.0, -7.0, -4.870021339171948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3153404766272883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9262909868848634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.068113570998315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2936939507457654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1961761850399735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2530955858490316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.967547976218862, -7.0, -7.0, -7.0, -7.0, -2.9834007381805385, -2.909020854211156, -2.6190933306267428, -3.04766419460156, -4.360084662821042, -7.0, -7.0, -7.0, -7.0, -4.217352319881362, -7.0, -2.7649229846498886, -7.0, -2.8926510338773004, -7.0, -7.0, -3.8980666606416348, -7.0, -3.383366482755039, -3.585147789861776, -2.532117116248804, -7.0, -7.0, -3.0567143295163945, -2.897352134344313, -7.0, -3.9639176242328817, -7.0, -7.0, -7.0, -7.0, -2.865301426102544, -7.0, -7.0, -7.0, -3.3942765267678214, -7.0, -3.9377873618458636, -7.0, -2.733598460961339, -3.371437317404101, -2.2645226857355865, -3.660770643527697, -2.502882116864084, -3.132579847659737, -7.0, -7.0, -7.0, -3.35286826894075, -7.0, -3.61394747678035, -3.506369717095504, -7.0, -7.0, -7.0, -7.0, -7.0, -2.438067450453494, -7.0, -7.0, -7.0, -3.550457673388806, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6089148379737113, -7.0, -7.0, -4.523993450315614, -7.0, -2.7890516223748403, -7.0, -7.0, -7.0, -7.0, -2.984077033902831, -7.0, -7.0, -3.0802656273398448, -7.0, -7.0, -3.0051805125037805, -7.0, -3.9755568958997354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6057358938767465, -7.0, -7.0, -7.0, -7.0, -7.0, -3.681467373533731, -7.0, -3.111598524880394, -7.0, -7.0, -3.904589330951372, -7.0, -7.0, -2.699548677948487, -7.0, -3.0259466802571935, -7.0, -7.0, -1.9000844768522183, -2.4193655941906242, -2.952211058108669, -7.0, -3.333619979091512, -4.755981511395073, -3.048053173115609, -7.0, -1.8226295221051456, -3.848584949753332, -3.179838928023187, -7.0, -7.0, -2.575187844927661, -7.0, -3.4586378490256493, -3.1998922435263193, -7.0, -7.0, -4.07059193151204, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1334590674872085, -3.4437322414015967, -4.160288413131288, -3.7014816356209272, -7.0, -7.0, -7.0, -7.0, -2.720159303405957, -7.0, -7.0, -7.0, -7.0, -3.0888445627270045, -3.8452221064290137, -7.0, -7.0, -7.0, -3.228400358703005, -2.885361220031512, -7.0, -2.9724342769573653, -7.0, -3.1094097905463656, -7.0, -7.0, -7.0, -7.0, -3.7993145063228546, -7.0, -7.0, -7.0, -3.101403350555331, -7.0, -7.0, -7.0, -3.455758203104137, -7.0, -3.6827090220210574, -7.0, -7.0, -3.399273655675515, -7.0, -7.0, -3.3055663135153037, -7.0, -7.0, -7.0, -2.8333596367430127, -2.8884603180353863, -2.4795273244855407, -3.6501131644435714, -7.0, -7.0, -7.0, -7.0, -3.33665982345442, -7.0, -7.0, -3.7806053058389697, -7.0, -7.0, -7.0, -2.9602328731285126, -7.0, -3.029789470831856, -2.6419315033656545, -2.90687353472207, -7.0, -3.4169731726030363, -7.0, -3.864748335629659, -7.0, -7.0, -7.0, -7.0, -1.9967305154351527, -1.8843159861168621, -2.385606273598312, -7.0, -1.953393241054481, -3.1259148015308593, -3.234390722392192, -5.713136747231231, -7.0, -7.0, -3.039017321997412, -7.0, -2.8102325179950842, -2.8825245379548803, -2.4095574360397847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.287801729930226, -4.0983915294572775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6994908452722046, -7.0, -7.0, -2.87306213165041, -7.0, -7.0, -7.0, -4.018201022496291, -7.0, -4.059336177389288, -7.0, -4.411602872517545, -7.0, -7.0, -7.0, -2.7948799895623955, -7.0, -3.36726271478424, -2.885361220031512, -7.0, -7.0, -7.0, -7.0, -2.509740015570382, -2.8825245379548803, -2.9810631808506, -7.0, -7.0, -7.0, -2.941511432634403, -7.0, -7.0, -3.375297738217339, -3.6369390072874714, -7.0, -7.0, -7.0, -5.132522236611947, -3.601951404133522, -7.0, -3.1134085068181756, -7.0, -3.1122697684172707, -2.8285524909500306, -7.0, -3.6635124704151556, -7.0, -7.0, -7.0, -7.0, -7.0, -5.828531006645101, -3.579954994822772, -7.0, -7.0, -7.0, -3.7690078709437738, -7.0, -7.0, -7.0, -3.440279213235588, -2.9474337218870508, -7.0, -7.0, -3.7148325124333326, -2.781396305196791, -2.4614985267830187, -7.0, -7.0, -4.381018760788876, -4.0894635308401925, -4.796221528026575, -7.0, -3.503790683057181, -3.045531043985819, -2.484869032720402, -7.0, -2.5330726600488123, -2.4382785804926073, -3.081587315813503, -2.0179524814025043, -2.6930871042673523, -3.0580462303952816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.184975190698261, -7.0, -3.3913965882976815, -7.0, -7.0, -4.597201388849116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.615844882874702, -2.0102347031678383, -7.0, -4.066665027256672, -3.1167737269758997, -7.0, -4.33209492844608, -7.0, -5.235917117994777, -7.0, -3.516667559099043, -7.0, -4.0603767213953565, -3.983057679286212, -7.0, -4.138870857319504, -7.0, -7.0, -3.805636766305935, -7.0, -7.0, -7.0, -3.8783317390376957, -5.011071162077137, -7.0, -7.0, -3.0035466931021317, -7.0, -4.956346147381247, -7.0, -7.0, -4.082964793777752, -7.0, -7.0, -7.0, -7.0, -4.783989286831195, -7.0, -4.218640521413849, -7.0, -4.297098172131839, -7.0, -2.085290578230065, -3.830381365856538, -4.9567973175878075, -7.0, -5.3478859466608935, -7.0, -7.0, -4.609839764305466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.471511736976963, -7.0, -4.188647295999718, -7.0, -7.0, -4.345765693114489, -7.0, -3.338257230246256, -7.0, -7.0, -7.0, -4.798415828201429, -7.0, -7.0, -7.0, -7.0, -7.0, -3.378851946448881, -7.0, -7.0, -3.3121068025476728, -7.0, -7.0, -2.818005830532529, -2.5899496013257077, -7.0, -7.0, -7.0, -7.0, -4.297235101842306, -4.0158764651452445, -7.0, -7.0, -7.0, -3.1666274307398634, -7.0, -2.8855025689284157, -7.0, -3.2528530309798933, -3.777644277696485, -7.0, -7.0, -2.9336559786575473, -2.765668554759014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9934362304976116, -7.0, -7.0, -3.5616975326539935, -3.537063142781617, -7.0, -7.0, -7.0, -7.0, -3.427972713608209, -3.3609718837259357, -3.1217122261613652, -3.484584529282843, -7.0, -2.130828409188458, -7.0, -7.0, -3.028977705208778, -7.0, -7.0, -3.063520999689991, -3.3362595520141936, -7.0, -7.0, -3.025988181951707, -3.7870250509366583, -2.6788217632521745, -7.0, -3.3545565944718043, -3.1866738674997452, -2.5705429398818973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.531555550483368, -7.0, -7.0, -7.0, -3.375114684692225, -7.0, -7.0, -2.988112840268352, -7.0, -3.3585059114902354, -3.203576774977973, -7.0, -7.0, -7.0, -7.0, -3.9208534961212593, -3.1007150865730817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3324384599156054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0884904701823963, -3.0755469613925306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.255272505103306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.360072477970273, -3.9478256844424506, -3.6061663146076204, -2.64157847058676, -2.742829137742972, -7.0, -7.0, -3.9068735347220707, -3.6652056284346006, -3.4721162341073866, -7.0, -3.4474681309497557, -7.0, -3.000596744744559, -3.8992731873176036, -2.7836058521877196, -3.335027835149797, -7.0, -2.425715319905376, -2.834929096460576, -3.4577810036026517, -3.6124659639531425, -7.0, -2.978043493909963, -3.9457147140598603, -7.0, -3.3889834112903867, -3.6339731557896737, -3.902764143924086, -7.0, -3.9181352261663593, -3.196728722623287, -3.6087933739869307, -4.020982442918419, -7.0, -3.5105003274058215, -3.136984656238368, -3.530396288371289, -7.0, -2.7731070022450126, -3.50478791537113, -2.8985756053931113, -3.373463721632369, -3.436639631692661, -2.631595948357801, -7.0, -3.9430491110084067, -3.2642982471902164, -1.934960948015314, -3.054740694376147, -3.1474795756131133, -2.7190123982977616, -7.0, -7.0, -3.309459822461211, -3.1523393149226258, -3.235679918564692, -2.980609293526336, -3.602168551378997, -3.926085086925144, -3.268304892028948, -3.2508467674689916, -2.904282657645628, -3.599610188318619, -3.9985644582609416, -3.8972971220594963, -7.0, -2.133764262253283, -7.0, -4.005652315355074, -3.6302799104626615, -7.0, -2.2751984011530757, -7.0, -3.9112108931375533, -3.2203986832211235, -3.500556632954331, -2.7366620446156418, -3.292422223682128, -4.009408399151867, -3.32433390894172, -3.722428241979694, -7.0, -3.2677347723218557, -2.783379443019426, -2.814726625496455, -4.03734680356809, -7.0, -7.0, -7.0, -7.0, -2.6207037602596985, -3.6924503234060153, -3.273695587930092, -7.0, -7.0, -7.0, -7.0, -3.5951102557780383, -2.031146050659409, -3.8992731873176036, -2.6103939697123133, -7.0, -3.3693643087812357, -2.8415402150435964, -3.445396605524949, -7.0, -2.9411137270371017, -7.0, -2.460718578810624, -3.0876800300462937, -7.0, -2.2969392795618266, -1.7899822259450318, -2.9893385599532865, -3.456922464315863, -2.2956652566996816, -2.250420002308894, -2.774777568485786, -2.4299350126061854, -2.4162243170985684, -3.2257030210836604, -3.465035673747828, -3.3106083564585234, -2.433693655274977, -2.999130541287371, -7.0, -2.7457278780906513, -2.975431808509263, -7.0, -7.0, -3.2324596131257763, -7.0, -7.0, -7.0, -3.6023313405913373, -7.0, -3.0817792267675337, -3.328787200354535, -3.859418526033877, -3.1341416766583783, -7.0, -7.0, -3.8984509191983747, -3.9090744014009045, -2.9905854869038913, -3.4962606330422306, -3.150049945162385, -7.0, -7.0, -3.450608305051992, -2.934766324393461, -7.0, -7.0, -7.0, -3.9511431601075526, -7.0, -3.951968584492911, -3.357791963471643, -3.6961815871685237, -3.514769049216363, -3.666845449884052, -2.9441922712821746, -3.261548338444689, -3.920071124297524, -2.1300746957834047, -7.0, -7.0, -7.0, -3.4524509243568873, -3.213464629039556, -7.0, -7.0, -1.6380299897796193, -7.0, -4.122428876155531, -7.0, -3.802534284386976, -1.7360634606372156, -2.275234549433838, -1.8058864325858222, -2.248479278363012, -2.6945564538320075, -2.385606273598312, -7.0, -2.9672670915597856, -3.244771761495295, -2.6768379494528953, -3.7675268994083817, -7.0, -7.0, -7.0, -4.214234349025624, -3.3714834772045275, -7.0, -7.0, -3.2061960072022204, -7.0, -2.97236816423355, -3.921842481405858, -3.9576551669434914, -7.0, -3.919862253555538, -2.2387240528167367, -2.64106829099296, -7.0, -3.692582562274909, -2.1148654682308305, -2.452838323991646, -7.0, -3.594834355583318, -2.5120971148810134, -3.599063905879417, -2.219562697434782, -2.0711346042025887, -2.7242212379280453, -1.953393241054481, -7.0, -3.2728854447575695, -2.9592073594510024, -3.9129001120673457, -7.0, -7.0, -2.74350976472843, -3.243385345371658, -3.5959369062691735, -3.124775845633619, -2.397802841387041, -3.960565902818198, -7.0, -7.0, -7.0, -3.9035782936630543, -3.9095025414054154, -3.8945929479229555, -7.0, -2.4831592097169795, -2.2168693557411143, -7.0, -7.0, -7.0, -7.0, -3.1492191126553797, -3.225050696138049, -7.0, -3.6270584640009895, -3.3096301674258988, -3.968716377466786, -3.828788748184953, -0.8608732304564952, -2.369929101915837, -7.0, -7.0, -3.1258993255582284, -2.186270685219292, -2.7546833748650728, -7.0, -3.2251319824860447, -7.0, -7.0, -7.0, -2.4705068031677473, -4.111732856611098, -2.755401682048161, -2.5807522321540293, -7.0, -7.0, -3.926805310111606, -3.601897100353282, -2.413151784814023, -2.465977368285823, -2.3997602257103656, -7.0, -7.0, -7.0, -3.608312042697327, -3.659298054866162, -7.0, -2.325834813172621, -1.7588497781312729, -3.6436993646393145, -3.529558673021163, -3.1772478362556233, -3.1814178388212113, -3.0362295440862943, -7.0, -2.549820373239367, -3.90156729002845, -3.2320299376201334, -2.5062730374838087, -2.712602940444727, -1.4757725130086168, -2.022732383790295, -3.176830538595021, -3.670245853074124, -3.1868353002613485, -3.988157472556753, -2.932890707465984, -3.472493160747825, -7.0, -7.0, -7.0, -3.272405259414974, -3.0627323632053938, -7.0, -3.9243309847086785, -2.7681591079368206, -3.6089536992758626, -3.9789561652175918, -7.0, -7.0, -3.9271136119337604, -2.5391263033453906, -3.7628660424620133, -3.62598087331167, -3.394232727213359, -3.3884427945673337, -3.739550560964701, -7.0, -3.4351433255063055, -2.262773158853526, -2.3909351071033793, -3.8924285469452298, -2.820100366728689, -3.906927347308956, -2.351135733834349, -1.8944413421587214, -2.223305533047631, -2.864145820749306, -7.0, -7.0, -3.695350317569429, -2.8303212953577908, -3.6236110517531817, -3.2298353665572654, -2.656577291396114, -3.9139727115509713, -2.0129950311058975, -7.0, -3.8967466156074058, -2.34831422597073, -3.03005754376382, -4.416057729263038, -3.0234395345803486, -3.6246945312720813, -1.8942816190154128, -2.895422546039408, -3.5869059703826816, -2.419231714320627, -2.634838837899661, -3.4539677667583994, -3.5369685561577207, -2.7028319885284087, -2.9635883772282843, -2.5288208020102343, -3.179461076912763, -2.9099230813909673, -2.486831362034582, -3.5601219242961957, -2.8014816677051737, -7.0, -3.339859143610229, -2.9862905766469647, -2.637900340212178, -3.024658469643913, -4.4594226460511015, -3.1320707676294646, -3.4024906523461884, -7.0, -2.480039624936464, -3.3384166482463584, -3.378073856605894, -3.454128063868426, -3.884587698518654, -3.9706722426897194, -3.5914653093294784, -3.697374664655637, -3.0212744465031887, -3.4528210635348096, -2.9691290599776985, -1.9711211579147767, -3.4328090050331683, -2.171168871249555, -2.006348800031633, -2.4405429904293583, -3.5549885839573387, -7.0, -2.4141641972154555, -2.820479343292401, -2.9802100308700172, -3.16380716614717, -3.0926855629374908, -2.711980581220753, -7.0, -3.310505887547859, -7.0, -7.0, -7.0, -3.5883697622678854, -7.0, -7.0, -2.5350333608143405, -2.8390371820264875, -3.6594500427691656, -3.910090545594068, -2.858076971052982, -7.0, -2.955433843351917, -7.0, -4.162531217536575, -2.9054135689643457, -4.077694865886587, -7.0, -3.9761206182998157, -3.935343492830046, -3.6865724352823293, -3.7567881987681178, -3.3760291817281805, -7.0, -2.882957513408003, -2.978317496746751, -2.0698556251176052, -2.339368616002117, -3.0209268196192873, -7.0, -3.304450842619542, -7.0, -4.053923150548575, -2.516959135876479, -7.0, -7.0, -7.0, -3.893428841779545, -7.0, -7.0, -2.345177616542704, -3.082516096060493, -2.993148586498641, -7.0, -2.688981530831051, -3.322041995494101, -3.147632163939886, -3.3718525790917426, -7.0, -3.414572275617945, -7.0, -2.9527303663895785, -3.459392487759231, -3.4459672607227367, -7.0, -1.8417377870110583, -3.977952121201462, -2.9332341287148083, -7.0, -7.0, -2.157476477884026, -7.0, -7.0, -2.9639294220265584, -2.2489128117674015, -7.0, -3.645520514905874, -7.0, -3.9053100621160857, -3.4948036944645287, -1.7275234724556605, -2.912101803317774, -7.0, -3.7065044222332766, -2.824288582459545, -3.9351040211514494, -3.110126552632497, -7.0, -2.8407814386722263, -2.8692489806948664, -7.0, -3.6048737705526355, -3.292920299600006, -2.8738532112027317, -2.6224641411494662, -3.9196532823103643, -2.960280464436642, -7.0, -7.0, -3.666705136119899, -2.0671535473026466, -3.760874638052189, -7.0, -3.337698805964078, -2.772240187345505, -3.974695871909683, -2.572382394058745, -7.0, -3.9060116252714128, -2.882154404634234, -3.377215156263061, -2.0483114655495376, -2.970431410436084, -7.0, -1.5750966481019517, -7.0, -4.16025838620267, -3.618623286646383, -3.5228678877825708, -7.0, -3.6793824659429104, -3.183712614093036, -7.0, -7.0, -2.987347001159854, -1.9809552818196143, -2.8311543282301015, -3.288204496751523, -2.9932314749036784, -3.3143729000093276, -2.3416732509867053, -3.3432115901797474, -2.9800990996894745, -3.476940260975887, -7.0, -3.641027688177414, -7.0, -7.0, -3.065852517288246, -3.534914104429867, -3.932473764677153, -3.709439574132411, -2.349123534570507, -3.023938007498089, -2.726190294147344, -3.0053643927472597, -3.078166708168154, -3.531223374533027, -7.0, -3.1847860380463584, -7.0, -3.0716611234417877, -3.381440002819618, -3.1848688024687895, -7.0, -3.1852115157200926, -3.637739827119136, -2.8445582083948397, -3.6285421834125686, -7.0, -7.0, -3.896250562461638, -7.0, -7.0, -7.0, -2.8359757807651174, -7.0, -2.3790962360108145, -3.9175055095525466, -3.9229848157088827, -7.0, -7.0, -3.4511209284376467, -7.0, -3.993744756554462, -7.0, -2.7483172620858336, -3.8192806469724814, -7.0, -3.6239725120169965, -3.8965813275057326, -2.829223340479299, -7.0, -7.0, -2.9764730006818385, -3.325515663363148, -3.62490060220449, -3.730984038495525, -3.703248376536181, -3.6971421262754594, -7.0, -7.0, -3.50781091134775, -7.0, -3.5989363410431636, -3.9563605536733224, -7.0, -7.0, -7.0, -2.849910558301496, -7.0, -3.551693915127225, -3.0941215958405612, -7.0, -3.655810494495252, -7.0, -3.3028718360676903, -3.2347809450498164, -7.0, -7.0, -7.0, -2.741082046819302, -2.824103381054613, -3.0414913772349825, -7.0, -7.0, -7.0, -7.0, -2.3930308975144152, -2.8866921137603256, -7.0, -3.587598729721245, -2.5268295160483825, -3.3292961591399655, -3.1084522639030685, -7.0, -1.8578492061672989, -2.5030120284659807, -3.594060901270418, -2.748809143809384, -2.0794913456551614, -2.8627275283179747, -7.0, -2.6395971516419463, -2.2563912668960113, -2.6734816970733473, -7.0, -3.5521813388393357, -2.6879341244886357, -7.0, -3.5274979417079395, -3.269629674357553, -2.998041264363428, -2.941594242145933, -3.6422666189026733, -2.9188454761509606, -2.2814878879400813, -3.3281756614383227, -7.0, -2.8001276715211594, -3.385069776331935, -2.695175888216613, -2.865548114255671, -2.3180239378128364, -2.854492895404868, -7.0, -2.661917803408258, -2.384487822086762, -7.0, -3.1528995963937474, -2.7271344237604884, -7.0, -2.9123283579604102, -3.531223374533027, -2.7385580430539074, -7.0, -7.0, -3.4490153163477864, -7.0, -3.3274611093031417, -2.106316175379106, -7.0, -2.9166794974939214, -3.544096678207317, -7.0, -3.2525294136162577, -7.0, -7.0, -2.5468304527037255, -7.0, -3.5873741720730656, -7.0, -3.4680517914542377, -3.613418945034573, -2.6154590459716487, -2.7040844895524194, -2.993083360698062, -7.0, -2.8219869178471346, -3.515542700362122, -3.177728835841732, -3.55834850876162, -7.0, -3.7599698575543075, -2.9893608137762473, -2.962369335670021, -2.9953217377222296, -7.0, -3.4576548542184598, -7.0, -7.0, -7.0, -2.982479978288434, -3.5549734583332397, -2.6587266773270137, -2.9618006391916785, -2.9636107690505553, -2.5965324155337197, -3.127644629984225, -3.5804687839510017, -7.0, -3.657915936829955, -2.856204024709403, -7.0, -7.0, -2.765668554759014, -2.9740509027928774, -2.359835482339888, -3.6287974855667104, -2.9534697432534016, -3.300008202553813, -3.1266724494173004, -3.1555095470486334, -7.0, -3.5922152039562656, -2.7405600512253856, -2.654398706337697, -3.8538198458567634, -3.5631249603380444, -7.0, -2.547149643984906, -2.418589476122558, -7.0, -7.0, -3.94499233997717, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7766064460534263, -3.0236125071907014, -2.3911620309865724, -3.1999744625304904, -7.0, -7.0, -3.5531545481696254, -3.576341350205793, -3.3502480183341627, -7.0, -2.6277219816490986, -7.0, -7.0, -7.0, -2.934441061817399, -7.0, -7.0, -3.7000110623221123, -3.361066449753942, -1.9646342876924021, -7.0, -7.0, -2.5696859588340777, -2.657693115600798, -2.651278013998144, -2.7703200637483674, -3.681060243631812, -3.5996647787884166, -3.2497739450348053, -3.5896145406312665, -7.0, -7.0, -2.6638055872727677, -7.0, -7.0, -7.0, -2.64288286077107, -7.0, -4.34584404319262, -7.0, -2.8415680152280833, -2.6987089682536345, -7.0, -3.895367288773362, -2.9378312132068283, -3.361727836017593, -2.139798385019995, -3.1963604423536847, -3.217220655644519, -3.1710435238543386, -7.0, -7.0, -7.0, -3.5867560391743902, -7.0, -3.234950927564595, -3.705350462885712, -3.9221716433242486, -3.570426178358973, -3.3298625829237687, -7.0, -3.9455670534423883, -7.0, -2.9751559784066894, -7.0, -3.5992278627737964, -2.535496659154243, -2.9475970826119045, -7.0, -2.8373516579578224, -4.110825310054965, -3.106063344915765, -7.0, -7.0, -2.0320428497705643, -1.9454685851318196, -3.0919013313099013, -7.0, -3.56062387454993, -3.1259148015308593, -3.2728854447575695, -7.0, -3.5220005831842696, -4.1970030557912565, -2.5397032389478253, -2.0492180226701815, -2.755330285717874, -7.0, -3.550105999347593, -3.2629254693318317, -2.81424759573192, -2.8342389905065373, -3.3766681858105296, -7.0, -3.5422027824340283, -7.0, -3.577261953585815, -7.0, -7.0, -7.0, -3.208959344396666, -7.0, -3.2493206766376344, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7701152947871015, -3.5969817431335205, -3.394626764272209, -3.3588386859986983, -2.806632128612864, -7.0, -7.0, -3.545059584694003, -2.7114587737468, -3.7114697818743276, -3.108646659130256, -3.317436496535099, -3.1795597697530154, -7.0, -7.0, -2.882410684373968, -2.8309599038401214, -2.7285059613658573, -2.2011454740196874, -1.964912873816937, -3.52283531366053, -3.1915441607348294, -2.532117116248804, -3.261976191397813, -3.0532705666813786, -3.0757658782157344, -2.5836521085420436, -7.0, -7.0, -3.356312741150645, -7.0, -3.378942698613437, -7.0, -3.244854146866291, -2.7610252517113727, -3.649918718735419, -3.7647737169110402, -7.0, -3.3024407325003486, -3.1919697180283007, -7.0, -3.3500346963400576, -3.560026248912892, -7.0, -2.333321300752023, -3.6972293427597176, -4.083538451230139, -3.0989204787223303, -2.1057739676278633, -2.070389735763648, -3.5073160400764136, -2.9526310252827455, -3.8760413405134386, -2.621591675859218, -3.548020694905531, -7.0, -7.0, -2.509451444491814, -2.29867117295913, -7.0, -3.0058237530290275, -1.6363675209245252, -2.0662094144339336, -3.0151920417628344, -7.0, -3.907894835416283, -2.709693869727792, -2.460396637297684, -2.744714131783971, -7.0, -3.729020077925111, -2.794202774938725, -3.9085028907118207, -7.0, -2.887570418003753, -3.486980715548393, -2.4092566520389096, -7.0, -7.0, -3.2704459080179626, -3.0358964706119558, -2.638156336676239, -2.539023796211645, -2.9362623419034777, -7.0, -7.0, -2.5983214217685604, -3.1022049490355927, -3.6093809442507068, -3.61857102812013, -2.874017703862186, -3.586812269443376, -2.3968764042806954, -3.5425764762605296, -3.549371152333177, -3.5137706197390237, -4.492913970848403, -7.0, -7.0, -7.0, -3.8241746648835893, -4.02649240705284, -3.720376396378187, -3.4993901215945535, -3.797821311364024, -7.0, -4.365843511533739, -4.442620852656338, -4.408892612860078, -3.500774627565994, -7.0, -4.701058275039644, -3.858968070157197, -7.0, -7.0, -7.0, -4.9162679078390426, -7.0, -3.338737651026101, -7.0, -7.0, -4.686600523389447, -4.265100966221937, -7.0, -3.619886029358387, -3.941337481247457, -4.102313623466469, -7.0, -4.2709581850920975, -7.0, -4.181414796254284, -7.0, -4.196314385353599, -7.0, -3.302517863774588, -7.0, -3.0739364463090766, -3.244415385955302, -3.253418781757457, -3.2784677868708427, -4.387140569465301, -3.123851640967086, -3.3794992284803076, -3.110185527411162, -3.791620482692814, -3.788069335049545, -3.0124107871850496, -2.8551009287477815, -7.0, -2.926156591030201, -3.5096504795465826, -3.5637183399656776, -3.968249394107917, -3.2215772307066666, -7.0, -7.0, -3.25636548177581, -3.3779713645, -5.40801682313519, -7.0, -2.294135419126248, -7.0, -3.206109057007845, -7.0, -4.808526616621753, -4.176322821034989, -4.291790506385784, -7.0, -3.234661879645836, -3.3025329462561266, -3.690134715405524, -3.5491872461344083, -3.2884504482756363, -3.1971426649725627, -3.2241047564436607, -3.0094380184660547, -3.139249217571607, -2.4061503095447603, -3.824256037629682, -3.8254261177678233, -4.052405342192183, -7.0, -3.1444496608688994, -3.3383369465610726, -3.0565237240791006, -7.0, -3.5514499979728753, -7.0, -7.0, -7.0, -2.8877780013484498, -2.772566173085639, -2.2457761160975718, -7.0, -3.395937645080042, -3.000434077479319, -3.7407573233077707, -2.859909919319079, -3.5744942682853273, -3.334905905779908, -7.0, -3.2612562584760996, -2.3906306168140334, -7.0, -3.415974411376566, -3.915135906622012, -7.0, -3.2835273648616936, -7.0, -7.0, -3.9572240578431668, -7.0, -7.0, -2.9887372752888, -2.903496947335859, -7.0, -3.5231934946968355, -7.0, -7.0, -4.628971005345094, -3.278620528841023, -4.508071616599375, -7.0, -2.3645885137749625, -2.182482228792729, -7.0, -2.3754075333087856, -7.0, -2.8252406011131854, -2.4910270096971785, -7.0, -7.0, -7.0, -2.9682961150462557, -2.571708831808688, -7.0, -7.0, -2.598790506763115, -2.8291965263847696, -2.578110012727244, -3.202045350620628, -7.0, -7.0, -2.1378656637782965, -2.5699244335130755, -7.0, -3.7548832282521674, -7.0, -7.0, -7.0, -3.0162810245428306, -2.546018275861391, -2.7735670489260587, -7.0, -3.6706168864003255, -7.0, -7.0, -2.899163641477219, -3.954145988829548, -7.0, -2.8715729355458786, -2.306844433166965, -7.0, -7.0, -2.5674968911042226, -2.5829032804168657, -2.857151502687493, -2.0901513799358766, -2.8745005215682826, -2.8212222999064145, -3.151318765793846, -3.3501510667807066, -3.061389642585325, -3.884228769632604, -7.0, -3.644635503768153, -7.0, -7.0, -7.0, -7.0, -3.0225314677988853, -7.0, -3.3907114290470077, -3.71474876072506, -3.5454803047994106, -3.351966736536176, -3.2812038682570117, -2.6519486241231784, -7.0, -2.6842167951388807, -7.0, -2.151405212887992, -2.680732000090073, -7.0, -2.946206553842783, -2.90759048821862, -2.556704439233648, -2.6444698516678162, -2.714958109720149, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.496098992132571, -7.0, -2.926085086925144, -7.0, -7.0, -7.0, -3.5870371177434555, -3.3157604906657347, -7.0, -3.440436766105774, -7.0, -3.5020718912066613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.538561167233788, -7.0, -7.0, -3.807940721215499, -7.0, -3.7496590320949, -7.0, -7.0, -7.0, -7.0, -3.8794972872494284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.16301220977483, -3.3754197310501364, -3.4298814190107647, -3.4388902778168413, -2.721939123715305, -3.653333134379342, -7.0, -7.0, -3.0565084720296545, -2.7907641378340196, -4.150203628762808, -4.1396902216529226, -7.0, -3.82630161371604, -7.0, -2.5979220307893294, -3.835310000869063, -7.0, -2.3034221151068124, -2.9162216765638913, -3.8449118739121406, -3.831805808674391, -7.0, -4.173448514744314, -7.0, -3.8341026557127935, -2.3041835419294423, -7.0, -4.126391191616615, -3.649594448966077, -4.135641416386669, -3.3257501636290527, -7.0, -2.7680348382006295, -7.0, -7.0, -3.092114288620125, -2.9614239706555763, -7.0, -4.137132476008993, -3.8744238305865015, -3.848527796197598, -3.088920402154754, -4.13312357540262, -3.844570361988267, -7.0, -4.150909873701122, -2.9587728580583295, -2.454746987678256, -3.414945507688626, -3.47379967461323, -3.501470072100412, -3.8348338181358885, -7.0, -3.7155576848148777, -3.4442634503171514, -3.1454139651678834, -4.146345128650468, -3.8256208250035, -7.0, -3.21761552866633, -2.697856360143162, -4.127881943484625, -7.0, -4.18613667169178, -7.0, -3.9597804954029976, -2.2463344173155235, -7.0, -3.7135185431250215, -3.1690566355150636, -7.0, -3.7015967643861063, -7.0, -7.0, -3.463210202983969, -4.172807188369087, -3.832189461068513, -7.0, -3.113414081521587, -7.0, -3.2990439930688757, -2.410228078382359, -4.165956187202987, -7.0, -2.5904656771525985, -3.1319392952104246, -3.5888690345141137, -4.125220936316564, -7.0, -7.0, -3.2612033723225187, -3.1409363554584804, -3.0449054380916873, -7.0, -3.225890536974668, -4.142577160920535, -7.0, -7.0, -2.8545019346694915, -7.0, -7.0, -7.0, -3.9318137039591394, -2.864712755705674, -4.138429020006003, -7.0, -3.673020907128896, -3.6773027183949845, -2.6535184129706497, -7.0, -7.0, -7.0, -3.3675955024067696, -2.9101414176196507, -4.14547610488496, -2.4021430192065516, -2.607749657790076, -3.837051550831765, -3.295193115885859, -3.53731527311201, -3.9008273227463928, -4.150480122270334, -3.716309469007183, -3.6248233370629546, -7.0, -4.140539466972342, -2.87081608186603, -2.896553773371796, -7.0, -7.0, -1.1025789119704859, -7.0, -7.0, -3.2193552692900123, -7.0, -7.0, -2.6370818541953644, -3.082976752706637, -2.875414988878726, -1.9142927749289083, -4.141041940939049, -4.008515007631455, -7.0, -7.0, -3.5502589360966827, -3.0407281730739686, -3.3360815351107824, -7.0, -7.0, -4.141606530118251, -2.9695438099284064, -7.0, -7.0, -4.168409083519626, -3.854852362417834, -7.0, -3.3780040105060434, -3.5593379612178344, -3.884228769632604, -3.704693760279812, -7.0, -3.354321904121914, -4.162056337360552, -7.0, -2.640945654356927, -3.8328281295393536, -7.0, -7.0, -4.142733511313519, -7.0, -3.829303772831025, -4.123753668755842, -2.833743289137135, -4.132355761753956, -3.4621120045641733, -7.0, -3.9560963623586116, -2.4831045922925545, -3.8435753430507633, -3.0683343131172545, -3.0751818546186915, -4.156155260889687, -3.226628542211219, -4.159687479754789, -3.01970958901189, -3.6743405324046687, -7.0, -3.5337212310124437, -4.135800283302111, -3.338356873353703, -7.0, -4.036608936517427, -7.0, -3.500024292033634, -7.0, -3.136791006615146, -7.0, -3.967196842000648, -7.0, -7.0, -7.0, -7.0, -2.213122731599993, -2.6572587197236484, -7.0, -3.705749709269246, -2.3292190825019476, -2.9566485792052033, -7.0, -7.0, -3.8311976650693866, -7.0, -4.128269995169626, -3.532818053867167, -7.0, -3.234390722392192, -2.9592073594510024, -3.5220005831842696, -7.0, -2.9622583206434956, -7.0, -4.13350697377835, -7.0, -3.84963435786558, -7.0, -4.126813010041553, -2.8726514940644776, -4.161846959528519, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5914515760902344, -7.0, -7.0, -7.0, -7.0, -4.14157518330082, -4.13946977558943, -7.0, -3.840670561333409, -3.0414913772349825, -3.8659030992071726, -3.161275834475312, -2.7413767385571397, -3.8632931129043135, -4.125025586819949, -7.0, -3.181895533938723, -3.217630146700358, -2.473528809833997, -7.0, -3.1168787038684527, -4.145538235712233, -7.0, -4.131843130804694, -3.5094521554936255, -3.0316697940536033, -2.8779667865031113, -3.078891619840223, -3.9940090331236133, -7.0, -7.0, -7.0, -3.308442446423766, -2.9905608299940196, -3.4120123012470613, -7.0, -4.131458260106525, -7.0, -7.0, -3.8606673464441363, -7.0, -3.3976793537786056, -3.026553691817198, -3.8509217930432844, -7.0, -4.158905021187544, -2.641568252457706, -2.9711492876176107, -7.0, -2.056932356607827, -3.824581376233483, -4.143732823138692, -4.222222082360713, -3.690225622865973, -2.891139058890472, -3.9033613362553186, -3.975914090049001, -7.0, -7.0, -3.702171950857711, -3.283476066983985, -3.050057364084302, -4.122445256281956, -7.0, -4.120508124026104, -3.011170876192968, -3.928242183157309, -3.133347265586243, -7.0, -3.8859828113549733, -7.0, -7.0, -7.0, -3.6485551556626707, -3.663857908757308, -3.449478399187365, -3.149962833642305, -3.663857908757308, -3.566268363427344, -2.443657006731713, -3.1432576161632504, -7.0, -2.897718704935313, -2.1249663179455123, -3.2317012265137786, -7.0, -3.5438508428044115, -7.0, -3.256236533205923, -3.129574813769972, -3.7798368978412693, -7.0, -7.0, -7.0, -3.5825462753591735, -7.0, -4.139658736208178, -4.1423894661188365, -3.536987475130602, -7.0, -3.1178559416698866, -7.0, -7.0, -3.1148194089047454, -3.3002995256899204, -7.0, -3.9297253783780044, -3.553424497508192, -3.606835011219978, -3.3082655332099327, -2.988844903796994, -2.651627253844299, -3.3061910011503572, -7.0, -3.371305405219536, -3.3083175852045503, -3.458963084952302, -2.906591550277436, -3.5330599332841146, -3.3003635663986217, -2.9791831314608577, -2.6982116373229816, -3.124230259036586, -4.218876715052756, -3.427548654790397, -3.4201621131797433, -3.289988209900654, -2.814691432747457, -4.533848288291342, -3.651702853962148, -3.3027482594758824, -4.176641017292667, -3.0130118711375116, -3.3928567672382504, -2.9284607665244224, -3.3531722243599043, -3.6748152298035857, -3.690993032099869, -3.618048096712093, -3.529836566775372, -3.4380568912567635, -3.272058312630265, -3.1748670767814025, -3.6683548501652967, -3.102492092329077, -2.625039053970189, -3.134835596316012, -2.8395534609966906, -2.6677343311128334, -7.0, -2.832419348499102, -3.4513450110399573, -3.900694774452398, -3.2637866524058152, -3.167583563821491, -2.7248289875184812, -3.6814221557210085, -3.3994141053637703, -3.9873757445117697, -4.12668326338829, -3.2787993137555556, -3.281977758929144, -4.241521577676051, -4.14587979647062, -2.574239994047324, -2.9157804804891008, -3.4336048426676036, -7.0, -7.0, -7.0, -3.1736886626993055, -4.27429643177251, -3.694137019956113, -3.2789118170826983, -3.989746365634447, -7.0, -3.5742499683912072, -2.909261218458848, -3.2026422864977273, -3.322115878973958, -3.1856763274980158, -3.805682059572066, -2.1929284346460203, -3.295786940251609, -3.840764567859676, -2.837077956461961, -3.1740851015212996, -3.738013790760599, -3.4794516439702257, -7.0, -3.523694452381668, -2.919935696126473, -3.3981938297209937, -7.0, -7.0, -4.120837060254737, -7.0, -3.555215405126073, -2.322811252582744, -3.399731392881681, -2.73062700968143, -2.444630230042095, -3.5651982517156657, -3.179276960763326, -3.2280009024796756, -4.170467076385937, -7.0, -3.008268884068272, -7.0, -2.8945468126404026, -2.8846409115206195, -3.8376831142120307, -4.17432152726404, -3.0369447882289555, -3.5706304904278854, -3.0641333950665963, -3.3011230487976233, -7.0, -2.431853031350563, -7.0, -4.141857223238367, -7.0, -3.304571304204838, -7.0, -3.3213536036656532, -7.0, -2.896428947456993, -2.9465355253959706, -2.725536651487612, -2.653406667089867, -7.0, -3.4136070709868043, -2.9880316788997914, -7.0, -7.0, -7.0, -3.380452449427833, -2.293993567509566, -7.0, -7.0, -4.182043545943064, -3.680547018019107, -3.3420276880874717, -7.0, -3.161667412437736, -3.8484970180903666, -7.0, -4.166430113843282, -3.1751250862836606, -3.1110791251778114, -4.124275932006338, -3.5122840632818537, -3.7288405683399715, -4.170789590446391, -2.979938401207097, -7.0, -7.0, -1.334394071037258, -2.792333312660757, -2.4984814656575884, -2.851758527971641, -3.620994421851143, -3.6813920078967692, -7.0, -3.9966211075792013, -7.0, -3.317761636804117, -4.1334111559110225, -3.475293376659103, -3.1352008241234657, -3.455575688084891, -4.121920785563038, -3.0477557503058947, -2.965272274026404, -3.5297382554659538, -4.17900570756482, -3.2170494324398886, -3.8949249773595436, -3.6587266773270137, -7.0, -2.737322108939681, -3.285532305727194, -7.0, -3.849265817161557, -7.0, -7.0, -2.6367691316157806, -3.1530939053914806, -3.064520383377145, -2.9626199946269987, -2.8751733249280984, -3.474274554725548, -2.564442126906085, -3.1892276127480357, -3.1980069079575624, -3.150672725821067, -7.0, -4.163638359628923, -7.0, -3.390026224005205, -3.2865562616780064, -3.343137690775371, -7.0, -3.163370120225884, -7.0, -2.609687187367402, -4.142670977910689, -4.1334111559110225, -7.0, -7.0, -7.0, -4.124536828301277, -3.650825388129239, -3.1350190063461896, -4.161008437306002, -7.0, -7.0, -3.8374937416151766, -7.0, -7.0, -3.8408272275743864, -4.136625455760932, -3.2795243607444062, -4.159537116397021, -3.3668472801536247, -3.365581572755049, -2.8568043870335558, -3.6626319309756905, -7.0, -3.510652230175532, -4.136657161873879, -7.0, -3.230959555748569, -3.840482487213442, -4.140445188347875, -3.9071156388713693, -3.490716778256952, -3.7087041048933, -7.0, -7.0, -3.7002132007860378, -4.1240475191100305, -3.538925450303585, -7.0, -4.145289659054146, -7.0, -4.93482405002071, -7.0, -7.0, -7.0, -5.411867082352383, -4.2224110069938146, -4.86846054001897, -4.4118426875430234, -5.111076755903269, -2.3822341420260598, -3.7122261672192907, -7.0, -5.712897919192247, -2.8584954008567345, -2.811792891551971, -5.4124361859343715, -5.412152147675782, -7.0, -5.411828386500435, -5.411748460239424, -2.548075466728869, -3.0440902657234554, -7.0, -3.781618462251087, -1.8907155584821451, -5.412321920685612, -4.7587479291548584, -7.0, -4.266916778057951, -4.599569030966235, -4.867956309564652, -2.6036833269790702, -5.111288563823859, -5.4118023069162495, -7.0, -5.111011175368067, -4.567905665742008, -7.0, -4.299917781049863, -5.411729107459061, -4.483810406523914, -4.298021295582452, -1.994044257851974, -5.411861194075582, -5.713115728907259, -4.2827722805262605, -4.759195948794771, -3.498285485563561, -7.0, -5.23621973764206, -4.158687421166621, -4.391234285554613, -3.8216210095804164, -2.4958183838393566, -4.9365472515628115, -3.7060703356373064, -3.969298569092522, -4.482607950809717, -4.868142102559628, -4.170564274665922, -5.236160911445233, -5.236228140734041, -5.412331163845351, -5.712842398088922, -5.111139804772594, -3.9519485116441997, -2.5220628420114863, -5.712872683207005, -7.0, -4.11236533622378, -7.0, -3.9844172881402207, -3.9998805525927055, -7.0, -3.8280100357953923, -2.1441570579455176, -5.712822206836856, -4.714261004983581, -7.0, -5.1109010114125795, -3.2454121250467365, -4.509956504538329, -5.110948948781672, -5.71271197970362, -4.392449049153358, -4.169089720187762, -4.18345072714285, -3.8066881964666717, -4.298890846803723, -5.236669914329181, -1.7170450814253624, -3.3346589537217852, -3.2362935415384895, -5.235679077201403, -5.712707772006801, -4.252153044735006, -4.4128090192128715, -3.9289647102407317, -4.22417620426946, -4.6337099436919384, -2.673434364072537, -4.935101499694514, -7.0, -7.0, -4.076698354565139, -5.411748460239424, -4.4839017980195734, -4.9354594001061, -3.9915879762894657, -3.3302317322481083, -5.014173468544053, -5.712962684843069, -4.810367793773821, -4.251142104019889, -3.0632020427548374, -5.412293349675333, -7.0, -4.869078264263427, -4.8702031837463045, -3.140151857647077, -5.713339311723815, -2.9850673612431855, -1.9565070948118017, -7.0, -4.199595627478755, -7.0, -1.7734130132673815, -5.412443746544762, -3.8114895460022478, -3.95223613386127, -5.411805672111888, -4.758950561884583, -2.851987519737212, -4.353101326657493, -7.0, -5.235631958255571, -2.7183625942989016, -7.0, -7.0, -5.411712278253374, -7.0, -5.712735542052476, -3.1025518953323297, -3.8778977629824376, -3.021829394015815, -3.608997110524758, -4.022943189333239, -3.5394740847701684, -7.0, -5.411900728116946, -4.810429116115286, -4.230437383990212, -3.837039908150044, -7.0, -5.110910262895853, -7.0, -3.261706956957646, -5.71275742023182, -7.0, -4.672566340793907, -4.145363575085632, -5.4118174500912835, -4.483164248491344, -3.764244997238098, -7.0, -5.015389936988531, -5.713922102999496, -3.826451094668831, -5.713796205700024, -5.412075644086446, -2.220959306047683, -5.235906186117268, -7.0, -7.0, -7.0, -5.712992120582704, -5.712938293718744, -5.411734156093602, -3.9063458182094015, -4.8098878364806925, -2.776816911310227, -7.0, -2.9569026591445904, -2.3505513327437093, -4.567167577177019, -4.172233356847697, -4.414534656088115, -4.634431923821994, -4.299333774213371, -3.9654494961154136, -4.041749550402577, -4.333255779961068, -4.4349494172436525, -4.159589749494209, -5.235955797813515, -3.72931428448667, -7.0, -2.7655514428714616, -4.157666594536235, -3.087325333113581, -7.0, -2.7899004585544813, -5.712727968579756, -3.734731507480199, -5.412104229422081, -4.391486242306662, -5.712983710574959, -5.412072280982084, -3.53490326577492, -4.0707160794021915, -7.0, -4.251952721498891, -3.46127901820621, -3.04730732465275, -7.0, -7.0, -5.411956237930402, -7.0, -5.712882777777072, -5.713061076503902, -5.7128196828643425, -5.713136747231231, -3.9129001120673457, -4.1970030557912565, -2.9622583206434956, -7.0, -5.4116592619924875, -4.867911741054626, -5.01414656532373, -4.145219931266814, -7.0, -5.712844921929427, -4.93599905333409, -4.935630684652991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.713833978722122, -2.436113338902213, -7.0, -7.0, -7.0, -5.411893999172559, -7.0, -5.713177940195718, -7.0, -4.935079646454493, -2.818005830532529, -4.537820773502811, -3.5469234711723647, -4.161479473484632, -4.759605738236192, -5.411766970787628, -5.71271197970362, -2.8525733868943464, -4.8689801249675995, -2.7542033142551516, -5.412225275871112, -2.737530215043792, -4.759085037637032, -5.23581535680208, -5.712976141428744, -4.322573203899594, -3.124143004805479, -3.219779278778598, -3.8592675919480897, -3.590817721976693, -4.315705911806046, -4.634016868868532, -7.0, -5.111504467940425, -4.7147562990402285, -4.869510819339792, -7.0, -5.013989316295481, -5.7135837761949855, -7.0, -5.412756136675269, -7.0, -4.538082529106812, -3.7602567411466885, -4.567367547554527, -4.316671364277856, -5.111643026868519, -1.7520008008174084, -3.7693549186514, -5.7128735244301385, -2.373261719017877, -3.949291559892229, -5.236167634842456, -4.1027532053059295, -4.537834200705592, -3.9068809860933524, -4.459743367173927, -5.240349526742219, -7.0, -4.812065655625775, -4.538178131237722, -1.7693400963998285, -3.6179849703409226, -5.110667135746672, -7.0, -7.0, -3.6029660528414573, -3.889648664903765, -4.482554972941678, -7.0, -4.811416640470285, -5.235823767721927, -4.869013679358553, -5.7130358499979, -4.13670471670359, -5.111156616258665, -4.370968727652723, -3.9753933699709907, -4.3152412940421705, -2.5459937176223186, -3.374130655189905, -1.8111816063523138, -4.281821741666723, -4.1492848720317275, -2.21451713578345, -4.149088396735554, -7.0, -4.434572265433589, -5.7128987603665005, -4.459944220602778, -4.198881922320664, -4.637567275175051, -5.413094305937094, -5.712780138713116, -7.0, -4.635250787227244, -7.0, -7.0, -7.0, -4.674649075135416, -5.713009781068882, -3.319674125495312, -7.0, -7.0, -2.744492493710069, -2.62842688787771, -3.6745164870743796, -3.030229102479042, -2.886359484642336, -2.796924307054616, -3.290085301024576, -2.560614268618336, -2.6475054048611133, -2.7057192665088827, -3.027333697880316, -2.463564205754188, -2.8604921461811275, -2.51940983254529, -2.529386337146879, -3.6158084723619432, -2.5964908564561173, -2.3638115672846007, -3.182922186436912, -2.7579067817398406, -4.043322137271107, -2.6138682380119556, -3.133975329628081, -2.4925560800567275, -2.980882286861777, -2.885011903141026, -2.851895212589347, -3.3686808154548578, -4.413150502106627, -2.248097000248326, -3.0404734857859026, -2.9281254077339445, -3.493923076927451, -3.3785664849510084, -4.672561306030661, -3.5854846070205957, -3.89246176118724, -3.4008001306246003, -3.2805415242209643, -2.239635732795565, -4.868234549092891, -2.7685993636921173, -2.8380917602820355, -3.330982302212323, -3.5760348835966065, -2.423695121216955, -4.63503950719497, -1.5079704602782635, -3.6234345498576377, -4.334712541690554, -2.8495597287699477, -2.3847686963298202, -3.059992840480373, -3.810478671681402, -3.2485958522995344, -3.5217359059530144, -5.712841556805494, -3.79313738833959, -2.879998788198969, -4.637037521027568, -5.01437350897037, -2.48410899263124, -1.4709056178981428, -1.8900756630525175, -5.712948386763919, -4.813334084359419, -4.934859371642858, -2.4269866827278737, -2.651360811389999, -2.3696922569462044, -3.6576360198439435, -3.273783014280978, -5.712771724599352, -3.2336204521463214, -1.9021018307478776, -2.4091530701680073, -3.858260579266509, -3.072943861541842, -3.3039603780983073, -2.5728158133110224, -2.5552255565887765, -5.412210146909904, -2.8024756669227284, -2.437682710736257, -3.9444324811357743, -2.1965745690813323, -5.713040054517326, -3.852181593605025, -2.7748202689123707, -3.2525104653286196, -5.7128710007558485, -7.0, -5.4116592619924875, -5.411790528526162, -4.009020737800639, -2.655004010022997, -4.195689202054842, -2.497475787005654, -5.411867923528265, -4.567798263269426, -3.1664195985419643, -3.75519697151723, -4.7140194385588226, -5.013942214596968, -3.659928704049752, -4.712786869886757, -2.6544096723290584, -3.4876277826957134, -4.457858357099747, -4.634945571955361, -3.8257152717519975, -4.333853500787942, -4.172092285066876, -4.567219679170076, -4.5370000873213385, -4.126233008108469, -4.758885830584383, -4.7132266941659084, -5.014888315259641, -3.936905637015932, -7.0, -3.356923549057265, -4.181262515397696, -5.235748904808164, -1.9941292181677637, -2.6685256544799585, -2.524833607996835, -5.712716187359675, -4.372208800370736, -3.507111357932569, -4.868245473292132, -3.7017808510958523, -7.0, -4.169582914463755, -2.4554864349684373, -5.712764993190968, -4.411822497698959, -5.015393290367874, -4.145414804953056, -3.2315623356402465, -4.93494093679307, -3.794584622327861, -4.122322600329196, -4.67176592005093, -3.965639236752102, -3.161117232139066, -2.7374265241697593, -4.536664478278395, -3.715097061723223, -3.8889092592635315, -4.412981891778567, -3.0969404022915272, -4.508954547385386, -5.41185278211309, -4.01127183969032, -3.6420543617517414, -2.037757352000563, -3.8225427432313115, -2.654532673821854, -5.111635470248563, -5.412123565494064, -3.0281219670061663, -5.412070599420136, -3.318952727334636, -4.867909218171997, -3.627587447405682, -3.2414865112767166, -3.8939407273161857, -7.0, -3.3535498845126734, -2.576109955786417, -3.7471836863659025, -5.015304417065566, -2.631499142736381, -3.0382150869314946, -4.637702321658437, -4.13368426512856, -3.3425333465625737, -3.237124377704049, -4.041424605049602, -4.079933035415702, -5.712781821516307, -4.712700198049791, -2.8356307249148243, -3.8008075748040797, -4.315329550842513, -3.882103298105706, -3.1735195916930334, -4.935961307815725, -3.6907840966330903, -2.9662942563851096, -4.072658392225891, -3.7800433735207384, -5.713122454881604, -4.12271229119345, -4.671308354448867, -3.8708209420761808, -3.434875590599677, -4.373949656322176, -5.411707229364498, -4.182313930896806, -4.15705529761581, -2.5142252978510746, -5.412231999684705, -5.713017349628834, -5.7127431153931285, -5.712733859069952, -4.250387189204171, -3.8866001478715915, -4.2214655609036065, -3.474319516452789, -4.599803323786212, -4.71401020939888, -7.0, -4.332904487195654, -5.71289287211251, -4.633811715526896, -7.0, -4.671692775575364, -4.080859627349738, -4.391472808302644, -3.778387251620757, -3.558586083017636, -3.1931262703866703, -4.671779370567489, -7.0, -3.5846536420330626, -5.111038081401025, -7.0, -2.9805589206857506, -5.111169224446162, -5.014227269985497, -3.944211571736122, -3.6730276130332227, -3.755292559435586, -5.235697586817248, -4.9347096555283905, -4.435452056925035, -7.0, -3.4879554190332436, -4.672306974556731, -5.412302593443167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.203168922875464, -7.0, -7.0, -7.0, -7.0, -7.0, -4.031044716583705, -7.0, -7.0, -7.0, -4.156494400963499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.863953022100917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.385606273598312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.444513206334043, -7.0, -3.174931593528443, -7.0, -4.928526428253506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9924916607033785, -7.0, -3.390405156480081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.537668009845832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.4518493499555385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.352838289981073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5397032389478253, -7.0, -5.4116592619924875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.529763904040117, -7.0, -4.70816585785554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.13082247683857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4554539687786283, -7.0, -7.0, -7.0, -7.0, -5.351065428387491, -3.8497264441963277, -7.0, -7.0, -7.0, -7.0, -3.5795549604009986, -7.0, -7.0, -3.3475251599986895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.749427099121749, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.498420836797279, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.878297696888866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.527410765292662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.182671386675478, -3.196728722623287, -4.0701117827822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.234578019752476, -7.0, -7.0, -7.0, -4.961022214372552, -4.67728750108277, -7.0, -7.0, -3.7973368007753496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.186416661892306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426494995349033, -7.0, -7.0, -4.204499824171151, -7.0, -7.0, -7.0, -7.0, -4.941819404166313, -7.0, -7.0, -5.346851539936892, -7.0, -7.0, -4.604150423082331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.241870088685618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4934580509951885, -3.4644895474339714, -7.0, -7.0, -7.0, -7.0, -7.0, -3.24699069924155, -4.869509422891369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2884728005997825, -7.0, -3.4058583993176366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6061663146076204, -7.0, -7.0, -7.0, -7.0, -7.0, -4.388740444524611, -2.8639173769578603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2227164711475833, -7.0, -7.0, -7.0, -2.9508514588885464, -7.0, -7.0, -7.0, -4.602762437131735, -7.0, -7.0, -7.0, -3.498227823151784, -3.7364496237349565, -7.0, -7.0, -2.6702458530741238, -7.0, -7.0, -3.436580037252512, -2.98649181515768, -7.0, -3.671913012441587, -3.567427043386484, -7.0, -2.910090545594068, -2.6875289612146345, -2.8528864461530965, -7.0, -7.0, -3.202979643989544, -2.0831441431430524, -7.0, -7.0, -2.9537596917332287, -2.35729944896187, -2.16790781000148, -3.4930395883176515, -7.0, -3.0678145111618402, -7.0, -4.23843190152609, -7.0, -7.0, -7.0, -7.0, -2.9476297473843545, -2.2105860249051563, -3.0856472882968564, -7.0, -7.0, -7.0, -3.6533465346009417, -7.0, -3.9076800242424197, -3.3206308739310484, -7.0, -7.0, -2.972665592266111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.451356532162689, -7.0, -7.0, -3.4122925093230463, -7.0, -7.0, -2.792291610114955, -7.0, -7.0, -4.523541623956646, -7.0, -3.366982975977851, -7.0, -7.0, -3.879841055986563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2757719001649312, -7.0, -3.7118838850261935, -7.0, -3.7211095747344105, -7.0, -7.0, -7.0, -7.0, -3.091315159697223, -7.0, -7.0, -3.373187949912719, -7.0, -7.0, -7.0, -3.4989534769002115, -7.0, -7.0, -2.8873359303991672, -3.1588648570811704, -3.9020754491124725, -7.0, -7.0, -3.1357685145678222, -2.876506504265881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5728135375594547, -4.754921409665169, -7.0, -7.0, -3.00987563371216, -4.693177139403572, -7.0, -2.754348335711019, -7.0, -7.0, -7.0, -3.0962145853464054, -3.180412632838324, -7.0, -7.0, -4.369085920821508, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5542468081661105, -7.0, -3.310632631264332, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1583624920952498, -7.0, -3.8300751664297503, -7.0, -7.0, -7.0, -4.542564024978776, -7.0, -7.0, -7.0, -7.0, -2.496237545166735, -7.0, -7.0, -3.106020819140269, -2.686278678067201, -2.8020892578817325, -2.765439284867506, -2.9429995933660407, -7.0, -3.9472038918536905, -7.0, -7.0, -7.0, -2.5720967679505193, -7.0, -7.0, -7.0, -3.448654799117084, -7.0, -7.0, -7.0, -7.0, -3.613020680036648, -7.0, -7.0, -3.591621038213319, -7.0, -2.5356557307896432, -7.0, -2.677378796959058, -7.0, -7.0, -3.6363875858131567, -7.0, -7.0, -7.0, -7.0, -2.829946695941636, -7.0, -2.8305886686851442, -2.929601364062661, -7.0, -3.761927838420529, -7.0, -2.526339277389844, -7.0, -2.667452952889954, -7.0, -7.0, -7.0, -3.3932241163612975, -7.0, -3.8564267724702446, -7.0, -7.0, -7.0, -7.0, -7.0, -2.944975908412048, -7.0, -7.0, -7.0, -2.0492180226701815, -4.13350697377835, -4.867911741054626, -7.0, -7.0, -2.9800033715837464, -7.0, -7.0, -7.0, -3.3400473176613934, -3.2427898094786767, -3.2357808703275603, -7.0, -7.0, -2.7965743332104296, -7.0, -7.0, -2.47928731647617, -2.7774268223893115, -3.863570674382189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7367947549243605, -7.0, -7.0, -7.0, -3.8192806469724814, -7.0, -7.0, -7.0, -3.3617907726863363, -7.0, -3.7564712833861256, -3.04688519083771, -3.4807591584803594, -7.0, -7.0, -2.8920946026904804, -3.9942291408176986, -3.7443712273318606, -3.360735378529271, -2.5717919901587556, -3.541516840831034, -7.0, -3.0277572046905536, -7.0, -3.1720188094245563, -3.1639064334577514, -2.531957654348021, -7.0, -7.0, -2.698680378128617, -7.0, -7.0, -2.681241237375587, -3.34908316877959, -3.2316734367061457, -7.0, -7.0, -7.0, -5.132077093735961, -3.8954777962757143, -7.0, -4.287017501322102, -7.0, -7.0, -3.291368850451583, -7.0, -7.0, -3.511214701136388, -2.322931837111811, -2.212409579610376, -2.448448654823714, -7.0, -4.828429801274681, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3208729652272493, -2.624797578960761, -2.7058637122839193, -2.4608978427565478, -7.0, -7.0, -2.929929560084588, -7.0, -2.7283537820212285, -2.8175653695597807, -7.0, -7.0, -4.556284404786872, -3.91087331482137, -4.833930812913641, -7.0, -7.0, -4.416769445369875, -3.4774830160749435, -7.0, -2.788875115775417, -7.0, -3.5422027824340283, -3.486005186362242, -7.0, -3.3322364154914434, -7.0, -7.0, -7.0, -2.8796692056320534, -2.709269960975831, -7.0, -3.171628957978357, -2.9138138523837167, -3.2245330626060857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.289934377993168, -4.403395087002509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.673932797382339, -7.0, -7.0, -7.0, -7.0, -7.0, -3.97377419397058, -4.5324231190671025, -7.0, -7.0, -7.0, -7.0, -7.0, -4.77451696572855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464131710707957, -7.0, -7.0, -7.0, -3.35869609957381, -4.332440984876183, -3.3917288224907427, -7.0, -7.0, -4.263867945962747, -3.7776261605789925, -7.0, -7.0, -7.0, -7.0, -7.0, -3.896415976473123, -7.0, -7.0, -4.5146274324113405, -4.885933399147209, -7.0, -7.0, -2.7354214555764456, -7.0, -4.110522372601323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.432809005033168, -7.0, -7.0, -7.0, -7.0, -4.053265078626461, -4.186744501716686, -7.0, -3.9436676056327267, -4.655090390729038, -7.0, -4.648629287656581, -7.0, -7.0, -4.006230646481024, -3.5969927280580043, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6911699341316035, -2.456935102197454, -3.2300229336227826, -7.0, -7.0, -3.643906474455095, -7.0, -2.099076074764564, -2.852479993636856, -3.448010273039476, -7.0, -3.621169355173038, -3.1397741716810974, -7.0, -7.0, -7.0, -7.0, -3.3660492098002353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.051023823533444, -7.0, -3.5358424451061152, -7.0, -7.0, -7.0, -4.395651336963195, -7.0, -7.0, -2.8432327780980096, -2.366549150596584, -7.0, -2.6214730323720974, -7.0, -7.0, -3.0202637650809114, -7.0, -7.0, -7.0, -3.2079035303860515, -3.6840370374865197, -7.0, -7.0, -7.0, -2.528488190640618, -2.801403710017355, -3.5099637749044597, -7.0, -7.0, -3.0671948870277648, -2.437089636681715, -7.0, -3.845748993643852, -7.0, -7.0, -7.0, -3.032417278832769, -3.1214406364012652, -3.1630122097748297, -7.0, -7.0, -7.0, -7.0, -1.9176487071628685, -3.7749546890801384, -7.0, -3.036628895362161, -3.104760166638525, -7.0, -7.0, -2.9493202908598843, -3.5166472255324543, -2.337931919942683, -2.1583624920952498, -3.0043213737826426, -3.4679039465228003, -3.436719078227576, -7.0, -3.431202884556517, -7.0, -7.0, -7.0, -2.4369573306694496, -7.0, -7.0, -7.0, -7.0, -7.0, -4.529776727759189, -7.0, -7.0, -4.069631102620343, -7.0, -3.1481397365012196, -7.0, -3.257438566859814, -7.0, -2.1350332136014343, -2.712556174226849, -7.0, -2.2166056942039845, -2.958085848521085, -2.8135809885681917, -3.5503157274607613, -2.0895126175293544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6459132750338443, -7.0, -7.0, -7.0, -2.738780558484369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.498792835329338, -7.0, -7.0, -7.0, -7.0, -3.4111144185509046, -7.0, -7.0, -7.0, -7.0, -3.656577291396114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6778349886836756, -2.904715545278681, -7.0, -7.0, -4.091163528124366, -7.0, -7.0, -7.0, -2.784452693623172, -3.5177499628542592, -7.0, -2.7589118923979736, -7.0, -7.0, -7.0, -2.894157763254254, -7.0, -7.0, -3.683137131483007, -3.381434181981451, -7.0, -7.0, -2.785329835010767, -2.6545615547417434, -2.4933186082321015, -7.0, -4.2649004255169745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5098742850047193, -7.0, -3.3914644118391033, -7.0, -4.187658570220862, -7.0, -2.550228353055094, -3.368472838440362, -2.3183615117557332, -2.7034824447657835, -7.0, -2.8257505813480277, -7.0, -7.0, -2.8091105993088905, -3.4778177118188656, -3.1707016558160697, -2.799022268397267, -3.329058719264225, -7.0, -2.485366465708323, -2.9912260756924947, -3.104145550554008, -7.0, -7.0, -7.0, -7.0, -3.2874658053432286, -3.976334692057641, -2.8920946026904804, -7.0, -3.131137273778607, -7.0, -7.0, -3.173186268412274, -7.0, -3.1567005525820173, -4.084563279775527, -7.0, -3.0879587894607328, -7.0, -7.0, -3.04105414195654, -7.0, -2.4978507395784066, -7.0, -7.0, -7.0, -7.0, -2.7195680242378324, -3.303196057420489, -7.0, -2.9376227838703515, -2.444044795918076, -2.282477921382284, -2.541579243946581, -7.0, -7.0, -7.0, -3.1124374173218436, -2.824776462475546, -7.0, -3.2518814545525276, -7.0, -7.0, -7.0, -3.504561472651623, -7.0, -3.4102709642521845, -3.22219604630172, -3.1710435238543386, -4.080428051258176, -3.0453229787866576, -7.0, -2.8715729355458786, -3.2121876044039577, -2.9893786160136258, -7.0, -7.0, -2.218985395949339, -2.6619309413533503, -2.5017437296279943, -7.0, -2.9736184677457946, -3.3082899393175516, -7.0, -3.8516863154424277, -3.059184617631371, -3.4759615891924236, -7.0, -7.0, -3.625621081424908, -2.8680563618230415, -7.0, -2.8252746184329043, -3.1976939750839235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.743666521446213, -2.6263403673750423, -3.222629776969852, -7.0, -3.889525796671191, -7.0, -2.929929560084588, -7.0, -7.0, -3.8379039445929424, -7.0, -7.0, -3.0831441431430524, -4.243038048686294, -7.0, -7.0, -7.0, -3.2242740142942576, -7.0, -7.0, -7.0, -7.0, -3.4080702858871854, -3.0058237530290275, -3.586587304671755, -3.273926780100526, -7.0, -3.9210572949274693, -7.0, -7.0, -7.0, -7.0, -2.9647309210536292, -7.0, -7.0, -7.0, -2.9633155113861114, -7.0, -7.0, -3.257758548072965, -3.561201439975245, -7.0, -7.0, -3.6050894618815805, -7.0, -3.1031192535457137, -2.9537596917332287, -2.704579449696299, -7.0, -3.256236533205923, -7.0, -7.0, -7.0, -7.0, -3.482540115553833, -2.63286204010023, -3.868428902768081, -7.0, -3.7800291273373383, -7.0, -7.0, -7.0, -2.7798368978412693, -7.0, -3.0232524596337114, -3.2790582621241464, -7.0, -7.0, -7.0, -7.0, -3.8637985386805003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.039017321997412, -2.74350976472843, -2.755330285717874, -7.0, -5.01414656532373, -7.0, -2.9800033715837464, -7.0, -7.0, -2.7993405494535817, -7.0, -3.062393937253195, -2.9708116108725178, -3.2657609167176105, -7.0, -7.0, -2.5722906061514177, -7.0, -7.0, -7.0, -2.5834255004065065, -4.2444602035259225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7942091163464964, -2.8720267099544015, -7.0, -7.0, -7.0, -3.172269243539273, -3.046300019652969, -3.1740218642682643, -3.0923696996291206, -4.411468181457918, -7.0, -7.0, -7.0, -3.044670394919461, -3.753889331459834, -2.821513528404773, -2.5819009187422806, -7.0, -2.541579243946581, -2.2256784228291777, -7.0, -7.0, -3.4831592097169795, -2.609441944950562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.334905905779908, -3.1894903136993675, -3.4622482153549976, -7.0, -4.655336960652428, -3.123524980942732, -7.0, -3.8125568661800697, -7.0, -3.106870544478654, -3.003352806825089, -7.0, -3.4865721505183562, -7.0, -3.4967221329867297, -3.3226327116922234, -3.068309574745689, -7.0, -4.598051146000453, -3.579040088400086, -7.0, -7.0, -7.0, -3.767823498007517, -2.6788217632521745, -7.0, -3.0572856444182146, -2.9599948383284165, -2.9395192526186187, -7.0, -7.0, -3.4122925093230463, -7.0, -2.8564267724702446, -7.0, -7.0, -4.557025722386383, -2.8839983793774717, -4.699298785540872, -7.0, -3.8038666342849843, -3.5877857724399735, -2.44205196294031, -7.0, -7.0, -7.0, -3.557266528869904, -2.4921315335815697, -3.035189508908448, -2.8785217955012063, -7.0, -7.0, -7.0, -2.944975908412048, -7.0, -3.092018470752797, -3.3597406478637164, -7.0, -3.425968732272281, -7.0, -7.0, -7.0, -4.773091310242317, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1151887695361165, -4.580200547681287, -7.0, -7.0, -7.0, -7.0, -4.9984380774785055, -7.0, -7.0, -4.675063091209669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1101181270103275, -7.0, -7.0, -4.190135520877031, -7.0, -4.298263432540114, -7.0, -3.9795938958489305, -4.326561143964193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.314625519201271, -7.0, -4.069594105177555, -4.58953632259307, -3.8945929479229555, -3.369215857410143, -3.553417750819333, -7.0, -3.758609142659744, -3.6983180735427403, -3.514547752660286, -7.0, -4.009139157111882, -3.3805820432409472, -7.0, -3.6613709124303133, -3.530391821401041, -7.0, -3.804548308388056, -7.0, -7.0, -7.0, -4.51517151980495, -3.944011460905156, -7.0, -7.0, -3.2243603809012646, -7.0, -7.0, -7.0, -5.4056434164042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.917137752756444, -3.212986184736668, -4.421960209240158, -3.586249638866042, -3.0860037056183818, -3.6654328603308586, -7.0, -7.0, -5.046820860589155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6118560183160606, -2.605305046141109, -2.695142604658866, -7.0, -7.0, -3.7432745235119333, -7.0, -2.7317901537745826, -2.921686475483602, -3.0590330049637804, -7.0, -3.62202049941778, -2.850850368903348, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0860037056183818, -2.8144695709383387, -2.309755378463786, -7.0, -3.71717102683231, -7.0, -7.0, -7.0, -3.8645180609843313, -4.186878675087556, -7.0, -7.0, -2.5999822600339004, -7.0, -2.7065755539150183, -7.0, -2.645422269349092, -2.6728995653153875, -7.0, -7.0, -3.4087486061842442, -2.7616773079942547, -7.0, -3.021602716028242, -3.2750808984568587, -2.688419822002711, -7.0, -3.0051805125037805, -2.8154006298544783, -4.198931869932209, -7.0, -2.655018314638606, -2.4530633975789575, -7.0, -3.4514179729892613, -7.0, -7.0, -7.0, -2.510545010206612, -3.0635952517578597, -2.7027176733035243, -3.6101276130759956, -2.945222316635341, -7.0, -7.0, -7.0, -3.306425027550687, -7.0, -3.3619166186686433, -2.606448546560488, -7.0, -7.0, -2.6558241991760436, -2.882778567794427, -2.5516532717804257, -7.0, -3.229148350269773, -3.48572142648158, -2.901536158923322, -3.1936810295412816, -3.1347745687824307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6354837468149124, -7.0, -3.4518887307742987, -7.0, -7.0, -4.247261126880467, -3.3736474722092176, -2.8651039746411278, -7.0, -2.4382031886892928, -7.0, -2.8790958795000727, -2.833420339025857, -7.0, -7.0, -2.6846209780269676, -2.373218599863817, -3.552459621256164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.249198357391113, -2.7024305364455254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.113140836867081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.801403710017355, -7.0, -7.0, -7.0, -7.0, -2.9535986331436197, -7.0, -7.0, -7.0, -7.0, -3.190705124231049, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8305886686851442, -7.0, -7.0, -4.6042503599312194, -3.762978490867743, -7.0, -7.0, -3.9112375328849565, -2.562964867002593, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9183604584754095, -7.0, -7.0, -1.6400058767914076, -3.7662943109320315, -7.0, -7.0, -7.0, -3.4300750555519395, -7.0, -7.0, -4.8695074678560335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1595671932336202, -2.099115357879955, -3.8209423284734454, -7.0, -7.0, -3.140036410975282, -7.0, -3.220631019448092, -7.0, -7.0, -7.0, -7.0, -1.6213301777659805, -3.4800974781137644, -3.5304558435846762, -3.6351317452471763, -3.8344842853348053, -7.0, -7.0, -7.0, -2.9283958522567137, -7.0, -7.0, -7.0, -7.0, -3.3328422669943514, -3.9828137621318627, -3.081707270097349, -7.0, -7.0, -7.0, -7.0, -3.3890774437923494, -7.0, -7.0, -3.8968535332204013, -7.0, -2.6794278966121188, -7.0, -7.0, -7.0, -2.948738890358178, -7.0, -7.0, -3.5296869537729165, -7.0, -7.0, -3.0110415256389502, -7.0, -7.0, -3.356525550338001, -3.3078168266624304, -3.2658001678796333, -3.0511525224473814, -7.0, -7.0, -2.7761561584219154, -7.0, -7.0, -7.0, -4.168173262170234, -7.0, -7.0, -7.0, -3.523486332343228, -7.0, -3.1756567472816637, -7.0, -3.688330818112266, -4.088065177690204, -3.1866738674997452, -7.0, -3.2826221128780624, -7.0, -3.4923587253239288, -1.953988461767908, -2.4082399653118496, -7.0, -7.0, -3.6900187807886953, -7.0, -3.8896378004066676, -2.560835320734465, -7.0, -7.0, -7.0, -4.394543608436238, -7.0, -7.0, -3.366236123718293, -7.0, -7.0, -4.3127695570523, -7.0, -7.0, -7.0, -2.833875335905508, -7.0, -7.0, -3.022840610876528, -2.3677285460869766, -7.0, -3.4509031374275407, -7.0, -4.172456974400587, -2.8313898024336335, -7.0, -7.0, -7.0, -7.0, -2.6954816764901977, -4.078746734273607, -3.864036182725775, -7.0, -7.0, -7.0, -4.2483043816590635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7282171875380294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7214226357500904, -7.0, -7.0, -7.0, -3.7680458141024165, -3.068353154351292, -2.9380190974762104, -2.5231772201476628, -2.869720514922589, -2.7209857441537393, -2.6251654069508215, -3.347720217034038, -3.390758528738717, -7.0, -7.0, -3.688330818112266, -7.0, -3.718750734739665, -7.0, -3.9797304306622854, -7.0, -7.0, -7.0, -4.096249383189612, -7.0, -3.198931869932209, -3.1818435879447726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.480438147177817, -4.3678030327490065, -3.8884603180353863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.243385345371658, -7.0, -3.84963435786558, -4.145219931266814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8344207036815328, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.254907978107314, -7.0, -7.0, -7.0, -7.0, -3.2140486794119414, -3.1958996524092336, -7.0, -7.0, -7.0, -7.0, -2.8677293082027178, -3.251638220448212, -2.1960840270593827, -7.0, -7.0, -4.327747071252456, -2.5185139398778875, -2.1722768301979376, -7.0, -4.716095203905708, -3.2464985807958007, -7.0, -2.8221680793680175, -3.540496318620011, -7.0, -2.227435630121624, -3.160843537171095, -7.0, -7.0, -3.208441356438567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.112509247045838, -7.0, -3.5219222448835, -3.041195233696809, -4.355652624508672, -3.623714356815967, -7.0, -3.6000358121146183, -7.0, -7.0, -7.0, -7.0, -3.983581186705791, -3.5792117802314993, -7.0, -7.0, -7.0, -3.4620983811351556, -4.138537910876411, -7.0, -7.0, -7.0, -7.0, -3.1958996524092336, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4303975913869666, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2100508498751372, -3.860523665211478, -3.0960405542954277, -3.983469571943903, -7.0, -7.0, -4.322132427150491, -3.117204986092783, -7.0, -7.0, -7.0, -7.0, -3.824516328007209, -3.466496903744401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5567446126282376, -7.0, -7.0, -3.4252950535893714, -4.299056717862567, -7.0, -7.0, -4.717578975363936, -3.6846479101829965, -3.910464315995614, -3.818808522067325, -2.853083837210162, -4.002856926061121, -7.0, -7.0, -4.2465314060467065, -5.000295219884306, -3.383422618537694, -7.0, -3.9007220671142706, -3.67015304519218, -7.0, -7.0, -7.0, -4.911871077099282, -7.0, -3.7611005389581424, -3.5220201655517376, -7.0, -4.6637386065732995, -7.0, -7.0, -3.5478325978105967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.461498526783019, -4.2007137339640135, -2.833565094651821, -7.0, -3.5962579570038544, -4.767222675478806, -3.3152354096177272, -3.105765577004269, -7.0, -7.0, -3.458504393116643, -7.0, -7.0, -7.0, -3.9239830751954003, -4.083681747274301, -7.0, -4.4463662736803595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.994193931082229, -4.374800497685027, -5.405896777927573, -7.0, -7.0, -7.0, -4.958315370845764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.786914606730178, -7.0, -3.6270840883619675, -3.2404868451670525, -4.2993438354972895, -3.2909662309839347, -7.0, -3.7158608480887176, -4.958764500995247, -3.623042434246382, -7.0, -7.0, -7.0, -4.012077599531015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.398523541822513, -7.0, -2.9687301046728525, -7.0, -3.09429639740537, -3.39919282841684, -2.1724569744005873, -7.0, -7.0, -7.0, -7.0, -3.5222451276547213, -7.0, -7.0, -7.0, -3.843793198325913, -7.0, -3.715836275164994, -7.0, -7.0, -3.8175653695597807, -7.0, -2.9148718175400505, -7.0, -7.0, -7.0, -3.3364197048626583, -7.0, -7.0, -3.561155612840848, -3.226826240808092, -3.512979142422869, -7.0, -2.9214263410152657, -7.0, -3.250175948083925, -3.065206128054312, -7.0, -7.0, -2.9850717645683855, -7.0, -7.0, -7.0, -7.0, -3.429671548617864, -7.0, -3.3637999454791094, -7.0, -7.0, -7.0, -2.5617400834287203, -7.0, -7.0, -7.0, -3.5860243823869755, -7.0, -2.412070359196469, -7.0, -7.0, -3.926959488380276, -7.0, -3.2510811878677695, -7.0, -3.3521825181113627, -3.0394141191761372, -7.0, -7.0, -7.0, -7.0, -2.8379039445929424, -7.0, -3.36285930295868, -7.0, -7.0, -7.0, -2.7961719664962326, -7.0, -7.0, -4.01674092728626, -3.064832219738574, -3.77952434332479, -7.0, -3.2765383925663363, -3.0136796972911926, -7.0, -2.9818186071706636, -7.0, -7.0, -4.370587100246676, -3.538070787043172, -7.0, -3.231851723743416, -2.9560546332453033, -2.952469547503639, -3.5759667969424704, -3.951398238052487, -3.712397131406715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7344797894255772, -7.0, -7.0, -7.0, -3.5017950212228697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3891660843645326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.127202017590354, -3.8035253955765325, -7.0, -7.0, -7.0, -3.3002693145303565, -7.0, -7.0, -4.506302043627209, -7.0, -7.0, -7.0, -3.514282047860378, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7062909572587635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.601880807895053, -7.0, -7.0, -7.0, -7.0, -4.204960614115603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8718063644587293, -7.0, -3.640779477344857, -4.316290761266813, -7.0, -7.0, -7.0, -3.2593549273080344, -7.0, -7.0, -4.165327436733526, -7.0, -7.0, -2.4771212547196626, -7.0, -2.9390197764486667, -7.0, -7.0, -7.0, -7.0, -7.0, -4.839509471308361, -7.0, -7.0, -7.0, -3.0090257420869104, -3.313128713845194, -7.0, -7.0, -3.466125870418199, -7.0, -7.0, -4.30496420183769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.961421094066448, -7.0, -7.0, -3.5354207180561734, -3.8444616427611162, -7.0, -7.0, -7.0, -7.0, -3.711047603867034, -2.825642453753319, -7.0, -7.0, -4.823526393542703, -7.0, -3.3016809492935764, -7.0, -7.0, -3.8608169638645378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6276551191807815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.331427296520743, -3.552668216112193, -7.0, -7.0, -7.0, -7.0, -7.0, -3.961088719767896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.380138853265417, -7.0, -7.0, -7.0, -3.510410948010177, -3.6045500325712614, -7.0, -4.1655114107855535, -4.752432609261474, -7.0, -7.0, -2.541579243946581, -7.0, -7.0, -3.4019172505175748, -7.0, -7.0, -7.0, -3.9927964427221965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.146128035678238, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0472748673841794, -7.0, -7.0, -7.0, -7.0, -7.0, -4.237443195375461, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.04688519083771, -7.0, -3.198931869932209, -7.0, -7.0, -7.0, -4.497683553099681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.697839368218363, -4.0741425037404815, -7.0, -7.0, -7.0, -3.0916669575956846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0646825662285115, -7.0, -3.736794754924361, -7.0, -7.0, -7.0, -7.0, -2.765420173578722, -2.4447137991033645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8102325179950842, -3.5959369062691735, -3.550105999347593, -7.0, -7.0, -7.0, -7.0, -2.7993405494535817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.640208053499725, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8419848045901137, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4961682741749778, -7.0, -7.0, -7.0, -4.309502414966703, -7.0, -7.0, -7.0, -4.4076797714411935, -7.0, -7.0, -7.0, -3.9796849238270258, -7.0, -3.9474337218870508, -3.089728533074736, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4139699717480614, -3.3823773034681137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4368514568313087, -7.0, -7.0, -7.0, -5.131034508028235, -7.0, -7.0, -4.279666944048455, -7.0, -2.919601023784111, -7.0, -7.0, -7.0, -7.0, -3.288323763370488, -2.916980047320382, -7.0, -7.0, -7.0, -7.0, -2.2174839442139063, -7.0, -7.0, -7.0, -3.5870371177434555, -2.716003343634799, -7.0, -3.3602146132953523, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5171958979499744, -7.0, -7.0, -7.0, -7.0, -5.875146955714764, -7.0, -7.0, -4.415415768843478, -3.277074133470176, -7.0, -7.0, -7.0, -7.0, -3.4623231130842345, -3.697403723200488, -2.9595183769729982, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8971870765801535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.577951127729755, -7.0, -7.0, -4.921067099376002, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7235012792268165, -7.0, -4.1314903456949486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1865099518601685, -7.0, -7.0, -3.66133934000604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.340057242010565, -7.0, -7.0, -7.0, -7.0, -3.557988148224913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464653457449502, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2664668954402414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.792475738361253, -4.785806585208766, -7.0, -7.0, -3.921790485658187, -7.0, -7.0, -7.0, -7.0, -3.9424297343069687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9316964284988503, -7.0, -7.0, -3.119585774961784, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2678754193188975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4169731726030363, -3.108734108602365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542775648234625, -3.6316466629584196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1740598077250253, -7.0, -7.0, -2.9014583213961123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2314695904306814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0978817447138685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.494293768665333, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4345689040341987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1061908972634154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1916465985627305, -3.907034952483417, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335798783325366, -7.0, -7.0, -3.6522463410033232, -4.19147430290536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.086828283728044, -7.0, -7.0, -7.0, -7.0, -2.6653464274249417, -7.0, -7.0, -7.0, -2.850850368903348, -7.0, -4.538834408178194, -7.0, -2.8680563618230415, -7.0, -3.056142262059052, -3.149013723915726, -2.001445240874181, -1.5500017449195571, -7.0, -7.0, -7.0, -3.703404237019068, -7.0, -3.196949540973997, -3.4822302372089675, -7.0, -7.0, -3.4171394097273255, -7.0, -7.0, -3.0136796972911926, -2.6159500516564007, -2.926342446625655, -7.0, -3.8462752424122133, -7.0, -7.0, -3.375846436309156, -7.0, -3.7208205817703437, -3.6173149332982937, -7.0, -7.0, -3.78238466183098, -7.0, -3.326335860928751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5251744278352715, -7.0, -7.0, -4.6279544182762935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3544926005894364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6654871807828107, -7.0, -3.350441856535061, -7.0, -7.0, -4.074414129841136, -7.0, -2.7450747915820575, -7.0, -7.0, -4.0811852273835525, -7.0, -7.0, -2.8258586820285867, -7.0, -7.0, -7.0, -4.168968646554766, -7.0, -7.0, -3.8309733973226505, -2.911157608739977, -4.692260710781003, -7.0, -3.4216039268698313, -7.0, -7.0, -7.0, -3.9953719060281623, -3.450864692379766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6190933306267428, -7.0, -7.0, -3.7169210731667612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.539966367996713, -7.0, -7.0, -7.0, -3.128722284338427, -7.0, -7.0, -7.0, -7.0, -7.0, -3.229937685907934, -7.0, -7.0, -7.0, -3.613072369428841, -7.0, -7.0, -7.0, -2.9618954736678504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.030894509641916, -7.0, -7.0, -3.2665844470668635, -7.0, -7.0, -3.1670217957902564, -7.0, -7.0, -7.0, -2.915188705173156, -2.842609239610562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8436687229791437, -7.0, -7.0, -7.0, -7.0, -1.9571281976768131, -2.525692524505011, -7.0, -2.8825245379548803, -3.124775845633619, -3.2629254693318317, -4.126813010041553, -5.712844921929427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.818665685531947, -7.0, -7.0, -7.0, -7.0, -2.621176281775035, -7.0, -7.0, -7.0, -7.0, -4.163628427790105, -7.0, -7.0, -7.0, -7.0, -2.0929210574619534, -2.909556029241175, -7.0, -7.0, -7.0, -7.0, -3.770483809431108, -3.8053649074664455, -7.0, -7.0, -7.0, -7.0, -3.2778383330020473, -3.4178547815685354, -7.0, -4.7097192910997725, -7.0, -7.0, -2.150756439860309, -3.9849771264154934, -7.0, -3.475816413031318, -3.0028569260611206, -7.0, -7.0, -2.9334872878487053, -7.0, -3.1065308538223815, -3.4331295175804857, -2.7998572591896123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.920332071539589, -7.0, -3.4095950193968156, -7.0, -5.131410127278809, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2676409823459154, -3.2380461031287955, -3.94797257924578, -7.0, -2.731515509813047, -2.946697837245742, -3.2016701796465816, -3.330413773349191, -5.828307291888404, -7.0, -2.4502491083193614, -7.0, -7.0, -7.0, -7.0, -2.8041394323353503, -7.0, -7.0, -2.7315887651867388, -2.4391070276875375, -7.0, -7.0, -2.6344772701607315, -3.044539760392411, -7.0, -7.0, -4.077858253926433, -3.907160458165922, -5.097057648035371, -7.0, -3.780677274433368, -4.017913563370042, -3.285932185579952, -7.0, -7.0, -2.681241237375587, -3.5154764413823756, -2.816756695724616, -3.4062846379247267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.898793720133296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.180332359773302, -7.0, -7.0, -7.0, -7.0, -7.0, -4.579291879863469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.065437789646456, -3.875871190727366, -7.0, -7.0, -7.0, -7.0, -3.683677298818692, -7.0, -7.0, -4.961890732435836, -4.377906998042317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.99084479280467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7692295817365937, -7.0, -7.0, -7.0, -7.0, -4.781504057208732, -7.0, -3.9083509566822143, -7.0, -4.420142856623786, -7.0, -7.0, -4.942727145365949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.29154643969221, -7.0, -7.0, -7.0, -7.0, -7.0, -4.466393046361356, -7.0, -3.576542899012627, -7.0, -7.0, -4.338914452663329, -7.0, -7.0, -7.0, -7.0, -7.0, -4.796012022802761, -3.5949447366950835, -2.8976270912904414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0042783722001625, -7.0, -7.0, -7.0, -4.315736001000132, -4.786637866259987, -7.0, -7.0, -3.325464349547066, -7.0, -7.0, -7.0, -3.159266331093494, -3.5472330375018624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5182506513085, -3.1896306576921556, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2898118391176214, -3.8153882549088887, -3.130816050034744, -7.0, -7.0, -7.0, -7.0, -2.858537197569639, -7.0, -7.0, -2.992995098431342, -3.7898626300463816, -7.0, -7.0, -7.0, -3.8504624327615167, -3.598243191653623, -7.0, -4.301680949293576, -3.4360035356698964, -3.721068301797159, -2.788521887222473, -7.0, -7.0, -7.0, -7.0, -2.5327543789924976, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6818483081437425, -7.0, -3.854700675614607, -4.544229323779228, -7.0, -7.0, -7.0, -7.0, -7.0, -3.625415352154408, -7.0, -7.0, -7.0, -7.0, -7.0, -4.391975460609762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.26030994579492, -2.529558673021163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495918807079969, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.331427296520743, -3.269746373130767, -7.0, -2.971739590887778, -3.3104808914626753, -3.1961761850399735, -3.152135396861876, -7.0, -3.0665122778565954, -3.6285153007690827, -7.0, -7.0, -7.0, -3.631063087193119, -3.168546586862098, -7.0, -3.3771240423464564, -7.0, -7.0, -7.0, -3.2864751824807645, -3.2608819504635864, -7.0, -2.3309932190414244, -3.0971934465290087, -3.412460547429961, -3.3362595520141936, -3.265525335219074, -2.6972293427597176, -2.8438554226231614, -7.0, -2.918932721836841, -7.0, -1.9626624199215337, -2.81888541459401, -3.0517311960598494, -2.3847117429382827, -2.844270023592027, -7.0, -7.0, -2.867820908045573, -7.0, -3.6542479813426088, -7.0, -2.514737442325631, -7.0, -3.130333768495006, -2.984227178928321, -2.380211241711606, -1.9386577278728878, -3.663323933628212, -7.0, -2.8009918612601714, -3.26232977621186, -7.0, -3.372681913172988, -3.280521462226489, -7.0, -7.0, -3.620864475265121, -3.398634324538392, -2.9344984512435675, -3.11293997608408, -2.994537104298498, -3.381656482585787, -7.0, -3.517489142040726, -7.0, -7.0, -3.2942457161381182, -7.0, -3.8339117150713786, -2.2329961103921536, -7.0, -7.0, -3.561575147188933, -3.2907022432878543, -2.564192460626198, -7.0, -7.0, -3.3489373426608426, -7.0, -3.037227234582274, -7.0, -7.0, -7.0, -7.0, -3.2140486794119414, -3.209649035368229, -7.0, -3.8914817038395197, -3.68761812957177, -7.0, -3.285782273779395, -7.0, -7.0, -7.0, -3.2814878879400813, -3.1176855012016143, -7.0, -4.191311257590993, -3.3935752032695876, -7.0, -7.0, -3.432086985778083, -7.0, -2.675663797434491, -7.0, -3.2773035345575963, -3.4486719733921984, -3.068371418032643, -2.4787725665262523, -2.3904533605405005, -7.0, -2.903344381892454, -7.0, -7.0, -2.7069614941736275, -2.458682275856224, -3.056599976292781, -7.0, -2.813500926906632, -3.685808892350598, -3.368100851709351, -3.318793504793297, -2.3313352557273705, -3.3765378531518766, -7.0, -2.8444771757456815, -3.7368743616484226, -2.6913025633834833, -7.0, -3.1247486911970017, -2.737788791709675, -7.0, -7.0, -3.5482489890522224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8309092995464433, -3.718141703622399, -3.79560197989418, -7.0, -7.0, -7.0, -3.017450729510536, -2.3639252106896413, -3.805908455074197, -3.608312042697327, -7.0, -7.0, -7.0, -3.6046939459126173, -7.0, -7.0, -7.0, -3.463743721247059, -3.297760511099134, -7.0, -2.887898488096872, -2.5902844037181616, -2.8789811233937366, -2.5110808455391185, -3.349714516753763, -7.0, -7.0, -2.200374530470726, -7.0, -7.0, -7.0, -3.3944516808262164, -7.0, -7.0, -7.0, -2.7588673836116775, -7.0, -7.0, -2.973589623427257, -7.0, -3.0479229136953148, -7.0, -2.509202522331103, -3.721068301797159, -7.0, -2.3688677255422803, -7.0, -2.8138477542288545, -3.1405080430381793, -3.181128699747295, -3.2773035345575963, -7.0, -7.0, -7.0, -7.0, -3.2286569581089353, -7.0, -7.0, -3.043526008270723, -7.0, -2.3584261304034126, -3.065206128054312, -3.4834446480985353, -2.551246628977399, -3.3594560201209864, -2.1635293082741804, -2.7148085850218555, -7.0, -3.5830853663476874, -3.4280267471363537, -2.7539913743366897, -7.0, -2.6620491649778457, -3.3324384599156054, -7.0, -3.0049658871068234, -3.048247531803974, -3.290034611362518, -2.4095574360397847, -2.397802841387041, -2.81424759573192, -2.8726514940644776, -4.93599905333409, -7.0, -3.3400473176613934, -3.062393937253195, -2.8344207036815328, -7.0, -2.818665685531947, -7.0, -3.492061604512599, -3.0104413055367156, -7.0, -7.0, -7.0, -7.0, -7.0, -3.292477593667784, -7.0, -2.3695012957916983, -7.0, -7.0, -7.0, -3.31722734917642, -2.1517482889991797, -3.375846436309156, -7.0, -2.785863475645474, -3.3165993020938607, -7.0, -3.3953263930693507, -2.899492196138132, -3.2024883170600935, -2.9829492885744986, -7.0, -3.498566524973976, -3.5390760987927767, -2.95961615525994, -3.392696953259666, -3.768399638290876, -7.0, -7.0, -3.3296012483565187, -2.844865319914786, -3.3619166186686433, -2.5581704369024063, -2.3691495680897208, -3.919966701483387, -7.0, -7.0, -7.0, -2.975891136401793, -3.630936119064191, -3.6120417446452695, -7.0, -7.0, -3.154880244718762, -7.0, -2.2078185495655274, -7.0, -7.0, -3.216517771441886, -7.0, -2.534660575828444, -2.3282339403543926, -3.482908503544747, -3.4872798164430687, -7.0, -2.868119408129591, -3.2889196056617265, -7.0, -2.515211304327802, -3.216429830876251, -4.018492453401473, -3.6628522332647964, -1.9365137424788934, -2.441040189834335, -2.7721382666011203, -7.0, -4.984208949801015, -7.0, -7.0, -7.0, -7.0, -3.0720046720384486, -3.1413713738187212, -7.0, -3.3754807146185724, -2.5555341291847458, -3.0213960567419713, -3.5440680443502757, -7.0, -3.505217831531809, -2.6848453616444123, -2.2764618041732443, -7.0, -7.0, -3.7191477268103066, -3.8093576702111056, -4.370933279433978, -7.0, -3.579612130740304, -2.6822192809215526, -2.542469739402932, -7.0, -7.0, -3.3104808914626753, -2.905885787102876, -2.1273404437758536, -2.184691430817599, -2.941883951154944, -7.0, -7.0, -7.0, -3.3251049829714074, -2.5969634343085812, -3.3925210899319325, -2.3994479771381387, -7.0, -3.0297109791486663, -7.0, -7.0, -3.463956945172151, -4.782028069027038, -7.0, -7.0, -4.724234896490527, -7.0, -7.0, -4.128668465082902, -4.189209489582306, -7.0, -7.0, -7.0, -7.0, -7.0, -3.642409556693114, -7.0, -4.686233958458255, -4.628695382714024, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7710973064704123, -7.0, -7.0, -4.370216920815891, -7.0, -7.0, -4.307153601875836, -3.721123331508574, -4.2125604579711435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1089031276673134, -4.205808634353865, -4.4691590270720125, -3.0542299098633974, -7.0, -7.0, -7.0, -4.3938483531306005, -4.049992856920142, -7.0, -3.9854414443345294, -4.066088209902013, -3.6135775721070993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.298722113605708, -4.644797188035574, -7.0, -7.0, -2.649056554004186, -7.0, -4.962151423362826, -7.0, -7.0, -3.823474229170301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.90580667015885, -4.506545618777679, -2.7863964613723042, -3.996088262193923, -7.0, -7.0, -4.049148219733418, -7.0, -7.0, -4.145465748882863, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.011824095594308, -3.262332413822626, -3.4431847291501847, -7.0, -3.216297886630392, -3.669855926622826, -7.0, -3.0533345888650136, -7.0, -3.36579986604032, -7.0, -3.765214587179864, -3.4390957413017493, -3.371806458507416, -7.0, -7.0, -7.0, -3.477265995424853, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203032887014711, -2.9755237129603316, -7.0, -7.0, -7.0, -7.0, -7.0, -3.820481469946896, -7.0, -7.0, -7.0, -2.8864473369430734, -7.0, -3.6330642726914992, -7.0, -3.4781334281005174, -3.504923724351828, -7.0, -3.3068537486930083, -3.1017470739463664, -3.4727564493172123, -3.490309708301158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6868149545073168, -3.36726271478424, -7.0, -7.0, -7.0, -7.0, -2.663700925389648, -3.5456781497920256, -2.8185275687875655, -3.6303261548039467, -7.0, -2.8739015978644615, -7.0, -7.0, -3.359076226059263, -7.0, -7.0, -3.5482665451707454, -7.0, -7.0, -3.2624510897304293, -3.4032921451582543, -3.6028094892346934, -3.265211027637486, -2.332794779762124, -3.3797686793220243, -2.51638280249711, -1.9208404681336204, -7.0, -3.6075979772916353, -7.0, -7.0, -3.435525851498655, -2.8018608621457806, -7.0, -7.0, -7.0, -7.0, -7.0, -4.069655765831316, -7.0, -7.0, -4.262154339133367, -7.0, -3.6202401898458314, -7.0, -3.1990691962517417, -7.0, -3.1597927031384208, -3.7792356316758635, -7.0, -7.0, -7.0, -3.424881636631067, -3.8165230027390296, -3.0927206446840994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5864747785713966, -7.0, -2.5732585015417953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.152563514256539, -7.0, -7.0, -3.378216149749878, -7.0, -7.0, -7.0, -7.0, -4.039903003595179, -3.3879234669734366, -7.0, -3.675778341674085, -7.0, -3.5947239464097467, -7.0, -7.0, -7.0, -7.0, -3.7701890227359933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.157456768134226, -1.8126348734772357, -2.7319109421168726, -2.3355490719885337, -7.0, -7.0, -3.8647806784858236, -3.7896512087934098, -7.0, -7.0, -3.920905604164024, -2.935381292079985, -2.354876422516234, -7.0, -7.0, -7.0, -7.0, -3.1267233363447597, -3.9388198250262105, -7.0, -3.2719190139837946, -3.376784953893288, -3.3316297176299323, -7.0, -3.1473671077937864, -2.785472203306388, -7.0, -7.0, -4.570612981730594, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2203696324513946, -7.0, -7.0, -3.512817758564873, -7.0, -3.251856513733483, -7.0, -3.2702128548962426, -2.6487780708385658, -7.0, -3.0293025935589983, -7.0, -3.329397879361043, -7.0, -3.362670929725667, -3.4363217001397333, -3.4509919457327993, -3.0974886866205247, -1.8824997897153146, -3.25478968739721, -3.2612628687924934, -3.3059958827708047, -2.9698816437465, -7.0, -7.0, -7.0, -7.0, -1.8681016267646535, -7.0, -3.620210439573049, -7.0, -7.0, -3.0665743775895824, -7.0, -3.50385874895841, -3.721645766289746, -7.0, -7.0, -3.3020917459175094, -7.0, -3.511214701136388, -7.0, -7.0, -2.9743581504051995, -3.4824447919182653, -3.241048150671644, -7.0, -7.0, -2.9954157985424152, -7.0, -3.34966598409663, -2.970036776622557, -7.0, -3.5992151551499463, -3.646599751720373, -3.212948190381025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4796616710572343, -7.0, -7.0, -7.0, -3.715292858349809, -7.0, -1.3895148872761447, -1.5146038666834796, -2.3178962664929563, -2.8893542349518193, -3.2796669440484556, -7.0, -7.0, -7.0, -3.2876983961909345, -7.0, -7.0, -7.0, -7.0, -3.721398375521505, -7.0, -3.899793153046949, -3.983641319556716, -7.0, -3.596542118161749, -7.0, -4.697194458267799, -7.0, -3.2745042226558834, -7.0, -7.0, -3.2946866242794433, -3.3658829965343102, -2.1759798872171676, -7.0, -3.1571544399062814, -4.3857849588433355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.500648063371912, -3.337601863321786, -3.763951826033324, -7.0, -7.0, -7.0, -3.2161659022859928, -7.0, -4.091842749738098, -3.4079571294295614, -7.0, -7.0, -7.0, -3.322997164829981, -7.0, -7.0, -3.4604467838807205, -3.392696953259666, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4507108781469196, -3.151574127994361, -3.426998958756537, -3.2678754193188975, -3.24384461210177, -3.2460059040760294, -7.0, -7.0, -7.0, -3.2345172835126865, -7.0, -7.0, -3.669688708056208, -7.0, -4.302092715843355, -7.0, -3.191939809656508, -3.5162421239812813, -7.0, -7.0, -3.6832272060414346, -3.0925452076056064, -3.2214142378423385, -3.1126050015345745, -3.45117215751254, -7.0, -7.0, -2.4617319019372412, -3.26030994579492, -7.0, -7.0, -3.092413583273063, -7.0, -7.0, -7.0, -2.9940801570392517, -7.0, -3.8258802989361795, -7.0, -3.4158077276355434, -3.231979026831504, -3.266936911159173, -3.8130469651601078, -7.0, -7.0, -3.530199698203082, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1705550585212086, -7.0, -7.0, -7.0, -7.0, -3.960565902818198, -2.8342389905065373, -4.161846959528519, -4.935630684652991, -7.0, -3.2427898094786767, -2.9708116108725178, -7.0, -7.0, -7.0, -3.492061604512599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4342494523964753, -4.470238934788868, -7.0, -7.0, -7.0, -7.0, -3.301897717195208, -7.0, -7.0, -7.0, -3.7622282842864743, -7.0, -2.6403571930897565, -3.5746677663162267, -7.0, -7.0, -7.0, -3.4318058760199377, -2.7800291273373383, -2.6871324357528006, -7.0, -4.719148911318181, -7.0, -7.0, -7.0, -2.6158287008014494, -7.0, -2.724103325108292, -3.187520720836463, -2.895422546039408, -3.103803720955957, -7.0, -7.0, -3.079362164393046, -3.583878598498626, -7.0, -7.0, -7.0, -7.0, -7.0, -2.725094521081469, -7.0, -2.8955606584533253, -3.3730499983581987, -7.0, -3.266114049531676, -2.9317967661271176, -4.289869134324165, -3.9433955765089546, -7.0, -3.607969437822521, -7.0, -7.0, -3.2065560440990297, -7.0, -3.999826247454412, -2.9194964878630616, -7.0, -7.0, -3.6343764940883676, -1.9481683617271317, -4.3976349303069115, -2.473434830742589, -7.0, -7.0, -7.0, -3.3456350782317283, -2.664983670681465, -7.0, -7.0, -3.24699069924155, -7.0, -2.8829512232506107, -7.0, -3.4743619760326307, -7.0, -7.0, -3.709354775834396, -7.0, -3.385355990680808, -2.811695282873729, -4.0976459525488895, -7.0, -3.8549130223078554, -4.177503519504816, -3.3629848397370954, -7.0, -7.0, -7.0, -7.0, -3.3703897104835856, -2.838709198810807, -3.185258765296585, -7.0, -7.0, -3.5381965783494542, -7.0, -2.986995539724382, -7.0, -3.730378468587643, -7.0, -2.971116737367246, -7.0, -7.0, -4.605660526371362, -4.4778227972045705, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1239169434981315, -3.5430911940308167, -7.0, -7.0, -7.0, -4.425640172818134, -5.00188508390488, -3.8929178678308505, -7.0, -7.0, -4.626448157592176, -7.0, -7.0, -7.0, -5.088616206091066, -7.0, -3.941821886920197, -4.136086097384098, -7.0, -4.667182018074072, -7.0, -7.0, -3.826801619428277, -7.0, -4.6858044157570795, -4.342521372898964, -7.0, -7.0, -7.0, -7.0, -4.165911730053656, -7.0, -3.419522063196344, -7.0, -4.201833930474351, -4.291431754946445, -7.0, -7.0, -7.0, -3.203984244420126, -3.5563979948413116, -4.0326590460399245, -3.6089536992758626, -3.9788193867328423, -3.259153356124792, -3.8438643110807478, -7.0, -3.974849294909796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.041493570137533, -4.057857616615388, -4.628041355416391, -7.0, -3.76544501809015, -7.0, -4.482925962459884, -7.0, -4.503882569503796, -3.5077547043664365, -7.0, -7.0, -7.0, -7.0, -4.789510204090254, -7.0, -2.5929838089301427, -3.5640739789771465, -3.8619306724050175, -4.500565776862321, -7.0, -3.6470502748685387, -4.960513586490487, -3.659440781870318, -4.349364960508261, -7.0, -2.907232159417844, -3.4716583590181602, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.00559515442157, -3.20682587603185, -2.1393361503611485, -7.0, -7.0, -2.9618954736678504, -7.0, -3.4708513245261177, -7.0, -3.3375258147321936, -7.0, -3.689650312464508, -3.004493337547274, -7.0, -7.0, -7.0, -3.4827307000799426, -3.745465168670727, -7.0, -7.0, -7.0, -7.0, -7.0, -2.739888655084543, -3.3317308928154574, -7.0, -4.050147658020303, -7.0, -7.0, -7.0, -4.495759350270359, -7.0, -7.0, -7.0, -2.804639117480264, -7.0, -3.2849943867229943, -7.0, -7.0, -2.7153300367198354, -7.0, -7.0, -7.0, -3.4032921451582543, -3.759516759462188, -7.0, -7.0, -3.3544926005894364, -7.0, -2.9725113957504123, -2.662921995161852, -7.0, -7.0, -3.168202746842631, -3.3242824552976926, -7.0, -3.6971130502213594, -7.0, -7.0, -7.0, -2.7081375105769228, -2.9735214604632243, -3.583198773968623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.630308201703268, -7.0, -7.0, -3.155336037465062, -2.7693673449336376, -2.8024316264307236, -3.5120169694961265, -3.0236022242589295, -7.0, -7.0, -7.0, -3.1652814310406994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3209766773428235, -7.0, -3.3949267432044627, -7.0, -7.0, -3.7796926698612303, -7.0, -2.9691828592322613, -7.0, -3.1341771075767664, -7.0, -3.4268364538035083, -2.6305061051399616, -7.0, -7.0, -7.0, -3.346548558548474, -3.411047002456093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.256236533205923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.138933940256924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8121643883928478, -7.0, -7.0, -7.0, -7.0, -3.0657041722395175, -7.0, -7.0, -3.504742636271688, -7.0, -3.2591158441850663, -7.0, -7.0, -7.0, -7.0, -2.842609239610562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.270911639410481, -4.90620570409175, -7.0, -7.0, -3.1975562131535367, -4.22125770712091, -3.9355828325357876, -3.3529539117100877, -7.0, -7.0, -7.0, -7.0, -4.357248576936287, -2.320602185183319, -3.1225435240687545, -3.144652031188698, -3.4899503484509338, -3.024485667699167, -2.929418925714293, -7.0, -7.0, -3.0661394928706995, -2.4683473304121573, -2.8328017810711708, -2.3683902022528986, -7.0, -7.0, -2.4043449214283257, -2.4260674243490388, -2.4321672694425884, -7.0, -7.0, -2.359428902985584, -7.0, -2.020193712151071, -3.1958996524092336, -2.785567089582034, -7.0, -7.0, -7.0, -2.2281436075977417, -3.3236645356081, -7.0, -2.6568644915489172, -7.0, -3.381709524891006, -7.0, -3.651859269246949, -3.0096936540397285, -7.0, -7.0, -3.5693739096150456, -7.0, -7.0, -7.0, -3.1789769472931693, -7.0, -3.6669857183296606, -4.46507040400967, -7.0, -7.0, -3.5407047833107623, -7.0, -3.803115554890027, -2.763760658827693, -7.0, -7.0, -4.52642328456597, -7.0, -3.50745106090197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3037358890399062, -7.0, -3.4434194617828173, -7.0, -4.232780179346588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.17805561153123, -7.0, -2.8435442119456353, -7.0, -4.015233976246709, -7.0, -7.0, -7.0, -3.4163075870598827, -2.9963189988040693, -2.971739590887778, -7.0, -7.0, -7.0, -3.359835482339888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.597887066597256, -7.0, -7.0, -7.0, -7.0, -4.396024896608593, -2.8767949762007006, -7.0, -7.0, -7.0, -7.0, -3.620739689951964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.799891684656865, -7.0, -7.0, -7.0, -7.0, -7.0, -2.730513112669299, -7.0, -7.0, -2.9285665319531153, -7.0, -7.0, -7.0, -2.688419822002711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.115738490010839, -2.477778778663434, -2.1179023084538846, -2.5462341061067835, -3.4224256763712044, -7.0, -3.0073546246193787, -3.239049093140191, -1.8071483009890663, -7.0, -2.603144372620182, -2.623766000133931, -7.0, -7.0, -3.123851640967086, -7.0, -4.301485765632598, -7.0, -7.0, -2.842171268439124, -7.0, -3.7563317673210577, -7.0, -7.0, -7.0, -7.0, -3.446847710155809, -3.361538971269279, -3.4099331233312946, -3.1149444157125847, -7.0, -7.0, -7.0, -3.994888795364911, -7.0, -7.0, -2.591064607026499, -3.6306312440205, -7.0, -7.0, -3.2692793897718984, -3.4111144185509046, -7.0, -7.0, -3.333783025949038, -7.0, -7.0, -3.526597709103452, -7.0, -3.9070887450742955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3766681858105296, -7.0, -7.0, -7.0, -3.2357808703275603, -3.2657609167176105, -7.0, -7.0, -7.0, -3.0104413055367156, -7.0, -7.0, -7.0, -2.8228216453031045, -2.8788089323592057, -2.2523135346597045, -2.828981954007923, -1.9344984512435677, -2.4729188934866406, -4.169042219626128, -7.0, -7.0, -7.0, -7.0, -3.295786940251609, -3.280805928393667, -7.0, -3.2971036501492565, -7.0, -7.0, -7.0, -3.874191804679071, -7.0, -7.0, -7.0, -3.8574129138894935, -7.0, -7.0, -1.2516743529397594, -3.3761454342431025, -7.0, -7.0, -7.0, -3.7305804190595, -7.0, -7.0, -3.1855421548543754, -7.0, -7.0, -7.0, -3.1775364999298623, -2.4700060000867836, -7.0, -3.55942779975949, -7.0, -3.219322508419337, -2.598790506763115, -3.2105860249051563, -3.4207806195485655, -7.0, -7.0, -1.9225367368683335, -7.0, -3.5640739789771465, -3.404833716619938, -4.532837154509227, -3.942008053022313, -7.0, -7.0, -7.0, -7.0, -3.681512586638962, -3.4513258084895195, -3.396286546068402, -2.916559219301114, -2.1428272945383364, -2.339986239750892, -2.120059547061975, -7.0, -4.550237367228034, -3.620812485741877, -7.0, -7.0, -3.12057393120585, -7.0, -3.1031192535457137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.472317546316842, -7.0, -3.0419845014867866, -7.0, -7.0, -4.862656033629871, -7.0, -4.6205570690404585, -7.0, -2.6754116937148633, -3.6421346345582744, -2.4935214192716417, -7.0, -7.0, -3.197831693328903, -2.5595076406424986, -3.1465621131575565, -3.0925803006913113, -3.4825877695267677, -7.0, -7.0, -3.534660575828444, -2.915135906622012, -1.7488924788750166, -3.0, -1.8290948267207143, -2.3260797155471575, -2.372191314994798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.389803762974429, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.389600161843851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.936770021230186, -3.5542468081661105, -2.562401018978738, -7.0, -3.5518533253826576, -3.484433310991099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.694644678455609, -5.188222357172769, -7.0, -2.9122220565324155, -1.1925336639891464, -2.6319508262592173, -4.181734048110948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.470988381529795, -4.65934087789275, -7.0, -4.872216506284493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203032887014711, -4.209246848753374, -7.0, -7.0, -4.360214613295352, -7.0, -2.863768824029474, -3.2043913319193, -7.0, -7.0, -3.6572607893053757, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5103084019294966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.15259407792747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7239115285711124, -7.0, -3.5830853663476874, -7.0, -3.103461622094705, -3.5734518220354854, -7.0, -7.0, -7.0, -3.3984608496082234, -7.0, -7.0, -7.0, -7.0, -3.2801228963023075, -7.0, -7.0, -7.0, -7.0, -2.9431976300689264, -2.922829219666649, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.715501945293284, -3.5800121125294244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1854004831904525, -3.5598468007393165, -7.0, -7.0, -3.5519376953648374, -4.162614185247574, -3.7043221408222355, -3.2069607291557105, -7.0, -7.0, -7.0, -7.0, -4.0678516605123525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8585612575392805, -7.0, -7.0, -7.0, -3.4310419453358856, -7.0, -2.7701972139577498, -7.0, -7.0, -7.0, -7.0, -3.341038631677523, -4.109814695694399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9479236198317262, -7.0, -7.0, -7.0, -2.2141813086638207, -7.0, -7.0, -7.0, -3.4388270387221676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.665607790220819, -2.81778565588553, -2.8097840982527122, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0232524596337114, -7.0, -7.0, -2.5010592622177517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.56643749219507, -7.0, -7.0, -5.270486679459426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9960736544852753, -7.0, -4.90666898605984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295786940251609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4435758797502576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163370120225884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.334051440346892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8615344108590377, -2.60422605308447, -7.0, -7.0, -3.9050399280762114, -7.0, -7.0, -7.0, -7.0, -4.311395492512552, -7.0, -7.0, -7.0, -7.0, -3.3049211619008916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.662757831681574, -2.359835482339888, -2.530199698203082, -7.0, -7.0, -2.8457180179666586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5532760461370994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.037027879755775, -7.0, -7.0, -7.0, -2.569373909615046, -3.0437551269686796, -2.225309281725863, -7.0, -7.0, -7.0, -3.2109602554168117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.282924073246148, -3.1992064791616577, -3.17507672117621, -7.0, -5.828185392992617, -3.849357981661299, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.875105269669586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.552668216112193, -7.0, -2.145092768246633, -3.5438749816745454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.02123525372655, -7.0, -7.0, -4.960993708942336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2405492482826, -3.3532428314337293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.3468398155569465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.215637563435062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.869497692547343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6055205234374688, -7.0, -7.0, -7.0, -7.0, -2.957607287060095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.690196080028514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.203783273940963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2656431419421352, -7.0, -7.0, -5.571528323403687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.018795571889457, -7.0, -7.0, -7.0, -7.0, -2.92272545799326, -7.0, -7.0, -7.0, -7.0, -7.0, -4.538265748040704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7702627381705933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.229566663511999, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.075546961392531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.372156852171985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.034227260770551, -3.0096633166793794, -7.0, -3.5567847823070253, -7.0, -7.0, -4.974725026450674, -7.0, -7.0, -7.0, -2.8662873390841948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.238852535326516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.113609151073028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8322533701970083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5422027824340283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8228216453031045, -1.662757831681574, -7.0, -7.0, -7.0, -7.0, -2.0293837776852097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8603380065709936, -7.0, -7.0, -7.0, -2.5921767573958667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7450747915820575, -7.0, -7.0, -7.0, -7.0, -3.2113875529368587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2835273648616936, -2.8998205024270964, -3.477555332198981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.758684849882441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6094876898532853, -7.0, -3.799368122831065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8783091919388095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.673951199690897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3742441252240405, -7.0, -7.0, -7.0, -4.677305761793444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.553883026643874, -3.177728835841732, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.896289164699955, -7.0, -7.0, -7.0, -7.0, -7.0, -5.346855447993205, -7.0, -7.0, -4.6041720329983375, -7.0, -7.0, -2.110589710299249, -7.0, -7.0, -7.0, -7.0, -7.0, -4.173535895009906, -7.0, -7.0, -7.0, -7.0, -2.9161906599805376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.629307640073749, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.093288574520754, -7.0, -7.0, -7.0, -3.9184497424011577, -7.0, -7.0, -7.0, -3.1010593549081156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.647656763195541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5779511277297553, -7.0, -4.297738631732803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9398436043565996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3191060593097763, -7.0, -3.7945577512547617, -7.0, -7.0, -7.0, -7.0, -7.0, -2.733999286538387, -7.0, -4.016225245647056, -2.8438554226231614, -2.8208579894397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.903244676848627, -7.0, -7.0, -7.0, -4.191702463559194, -3.5089873386369184, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335838869579954, -2.4284240729856665, -7.0, -3.6524397475894204, -4.492534571675094, -3.00987563371216, -7.0, -7.0, -3.286905352972375, -7.0, -7.0, -3.910713317671148, -7.0, -7.0, -7.0, -7.0, -2.9677819080757994, -7.0, -7.0, -7.0, -7.0, -7.0, -4.839883241709907, -2.6766936096248664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305603917792398, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.550228353055094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9177155165594932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1711411510283822, -7.0, -3.225567713439471, -7.0, -4.627959532707486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9667047766578745, -7.0, -7.0, -7.0, -7.0, -4.375517300649672, -7.0, -7.0, -7.0, -7.0, -4.081221250482603, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0025979807199086, -4.169027506008932, -7.0, -7.0, -7.0, -7.0, -4.516169451725322, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9734357546986665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.239633102713035, -4.149803938227022, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.539991419593507, -7.0, -2.3961993470957363, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3708830167776056, -3.3483048630481607, -2.928907690243953, -2.964907523353008, -1.667452952889954, -7.0, -4.173324312537017, -2.8055008581584002, -7.0, -7.0, -2.660865478003869, -2.166578109919652, -7.0, -7.0, -3.9152414973061944, -7.0, -7.0, -7.0, -7.0, -3.905932659661591, -7.0, -7.0, -7.0, -3.1316186643491255, -3.344195715871435, -7.0, -7.0, -3.0806264869218056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5918434112247843, -7.0, -7.0, -7.0, -2.3222192947339195, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3554515201265174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9035782936630543, -7.0, -7.0, -7.0, -7.0, -2.7965743332104296, -2.5722906061514177, -7.0, -7.0, -2.621176281775035, -7.0, -7.0, -2.8788089323592057, -2.359835482339888, -7.0, -7.0, -2.4216039268698313, -2.103803720955957, -1.9923325590474643, -1.4856055528197656, -4.46469814944665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.010956838955719, -7.0, -7.0, -2.1751250862836606, -4.709736237854444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.130140705819276, -7.0, -7.0, -7.0, -2.8055008581584002, -3.1320995219165044, -2.4462954799526213, -7.0, -2.749736315569061, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -3.3180633349627615, -7.0, -3.4099331233312946, -7.0, -5.131416545297398, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0749626431316264, -2.7706065781900606, -1.6520756165766066, -7.0, -4.652199265701975, -3.258517559916453, -7.0, -7.0, -7.0, -7.0, -3.600210306409328, -7.0, -2.909556029241175, -7.0, -7.0, -3.287353772714747, -7.0, -7.0, -7.0, -7.0, -3.6018427897820984, -7.0, -4.856082101490554, -7.0, -5.574184691341416, -7.0, -3.780821175853473, -7.0, -3.4623231130842345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.986995539724382, -7.0, -7.0, -7.0, -2.1351326513767748, -2.9138138523837167, -1.353484751416607, -2.8494194137968996, -2.1818435879447726, -3.3244882333076564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.764407793982475, -3.5748411950633847, -7.0, -7.0, -7.0, -5.235045910065424, -2.584783378996508, -2.9907826918031377, -4.438589810070449, -7.0, -4.678973375919766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.990853663651464, -7.0, -7.0, -7.0, -3.194976603216055, -7.0, -4.653646591254662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.870083821967762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.178833117359116, -7.0, -7.0, -7.0, -7.0, -2.482873583608754, -7.0, -7.0, -7.0, -4.0970003368669365, -7.0, -7.0, -7.0, -7.0, -3.2823955047425257, -3.3463529744506384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0236639181977933, -7.0, -7.0, -7.0, -7.0, -7.0, -5.0939292328222185, -7.0, -7.0, -7.0, -2.9728711024944356, -7.0, -3.4367985102318035, -7.0, -2.858236335429513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1899112096928057, -7.0, -7.0, -7.0, -7.0, -7.0, -2.98878184345364, -4.091661096631954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7900035203904894, -7.0, -7.0, -7.0, -4.327685809541024, -3.2972131959896416, -3.0265332645232967, -3.824516328007209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.243199328115247, -7.0, -7.0, -7.0, -7.0, -7.0, -3.022943609686901, -3.3474275986185416, -7.0, -7.0, -7.0, -7.0, -4.392010683195499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.833147111912785, -7.0, -7.0, -7.0, -2.950364854376123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1948888114159875, -2.944975908412048, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.162862993321926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426400098114251, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7072862306926577, -2.5327543789924976, -3.6629466143326246, -3.9485247389054314, -7.0, -2.5532760461370994, -7.0, -3.3109056293761414, -7.0, -7.0, -3.962529147470517, -7.0, -7.0, -7.0, -2.6026025204202563, -3.2942457161381182, -2.205475036740891, -3.4794313371977363, -7.0, -3.3510228525841237, -7.0, -4.099809297247691, -1.9815165943059867, -7.0, -7.0, -7.0, -3.6378898165807905, -7.0, -7.0, -7.0, -0.9571200035186085, -7.0, -3.6070527124106295, -3.4387005329007363, -3.9024924211586036, -3.7913397039651393, -7.0, -3.0043213737826426, -2.735119634081872, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5634810853944106, -4.149095891067973, -7.0, -7.0, -3.3958503760187813, -7.0, -7.0, -7.0, -7.0, -7.0, -4.648174542279039, -7.0, -7.0, -7.0, -7.0, -3.57316180901509, -7.0, -7.0, -7.0, -3.437750562820388, -2.9858753573083936, -2.0178964621040505, -7.0, -2.951580344903392, -7.0, -4.452139252352545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.271841606536499, -7.0, -3.1261778087238485, -7.0, -7.0, -7.0, -2.926856708949692, -2.8993462025299315, -7.0, -7.0, -7.0, -7.0, -4.384263785722803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6950144419299042, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1065308538223815, -3.4396484295634737, -3.3012470886362113, -7.0, -7.0, -3.696705780933917, -7.0, -7.0, -2.6263403673750423, -4.367299999681404, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7265234583862394, -3.7261564661727546, -4.153174379371534, -3.680698029697635, -7.0, -7.0, -7.0, -7.0, -3.1283992687178066, -7.0, -3.52270499273475, -7.0, -7.0, -7.0, -3.179089476633134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.912930241739325, -2.521884935963594, -2.409691647382953, -2.971333843594558, -2.6164755138885654, -7.0, -3.6886989917101185, -2.8744818176994666, -2.60422605308447, -7.0, -3.011993114659257, -2.846955325019824, -7.0, -7.0, -2.6888907154091393, -7.0, -7.0, -2.6354837468149124, -7.0, -2.8989973412881245, -7.0, -7.0, -7.0, -2.8639173769578603, -2.762115641442657, -2.35052490357268, -3.258397804095509, -7.0, -3.2000292665537704, -3.6266482684740105, -7.0, -7.0, -7.0, -7.0, -3.286905352972375, -7.0, -7.0, -3.5959001996400763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.330966897366099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9095025414054154, -3.577261953585815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2523135346597045, -2.530199698203082, -7.0, -2.4216039268698313, -7.0, -7.0, -1.5378190950732742, -7.0, -4.2433754264624115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6786094165589263, -2.9599948383284165, -7.0, -3.511749711344983, -7.0, -7.0, -7.0, -4.314351841775663, -7.0, -7.0, -2.7058637122839193, -4.1085565677610685, -7.0, -7.0, -7.0, -7.0, -7.0, -3.958516103423041, -7.0, -3.836640541572774, -7.0, -7.0, -7.0, -3.143014800254095, -2.847726855657811, -3.4217684012069243, -7.0, -2.8273692730538253, -2.5443781439578124, -7.0, -3.2174839442139063, -7.0, -3.330007700872759, -2.2220918864542596, -7.0, -3.428134794028789, -7.0, -7.0, -7.0, -7.0, -4.284859176733764, -7.0, -7.0, -7.0, -3.26528962586083, -3.652294700725204, -2.54171788544238, -3.305064611772354, -2.9733587998863977, -3.0403385718205698, -7.0, -5.2263156521641045, -3.2650537885040145, -7.0, -7.0, -2.525044807036845, -7.0, -3.6120417446452695, -2.8744818176994666, -2.6627578316815743, -7.0, -7.0, -2.707995746422929, -7.0, -3.3934874581471752, -2.6875289612146345, -7.0, -3.312388949370592, -7.0, -4.856747010776003, -7.0, -5.875279513902236, -7.0, -2.78738962135211, -4.319451690966244, -3.7716609593488872, -7.0, -2.57672517213259, -7.0, -3.2287852009806493, -7.0, -7.0, -2.8344207036815328, -7.0, -1.6532125137753437, -2.909556029241175, -2.8208579894397, -2.489489731962272, -7.0, -3.6396856612426816, -2.2540644529143377, -2.08893477545536, -7.0, -2.6074550232146687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.589916106886427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6730485683168865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7738156894162005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.451694349193542, -7.0, -7.0, -7.0, -4.3686308363704, -4.162713725583078, -3.8822968009376515, -7.0, -7.0, -7.0, -4.758192516865709, -2.8124676978229344, -3.1831274287013995, -4.440326485098404, -3.962336182154077, -7.0, -7.0, -3.959025483806947, -7.0, -2.416640507338281, -7.0, -7.0, -3.6604860157849677, -7.0, -4.088189264361116, -4.78888500204134, -7.0, -7.0, -2.40049254446103, -2.564073978977147, -4.9552161670245845, -7.0, -4.928141415011316, -4.0744507189545915, -7.0, -7.0, -4.320561680195237, -7.0, -4.305157828786486, -7.0, -7.0, -7.0, -4.596860890622566, -4.486444648100676, -7.0, -4.165081026825811, -7.0, -7.0, -4.444310290512258, -7.0, -7.0, -3.908270499495724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0427723374976736, -3.704750904290671, -7.0, -7.0, -4.040068042960068, -7.0, -2.2846562827885157, -7.0, -3.74170298395774, -7.0, -3.5924612881106253, -7.0, -7.0, -7.0, -7.0, -3.3066394410242617, -2.958468318366944, -7.0, -7.0, -7.0, -7.0, -7.0, -3.241048150671644, -3.214843848047698, -7.0, -4.0090682761922185, -7.0, -7.0, -4.5957056026935375, -4.4922329107355194, -7.0, -7.0, -7.0, -2.853241780329114, -7.0, -2.674248595527798, -7.0, -3.1917303933628562, -3.470753400178036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0965624383741357, -7.0, -3.256958152560932, -7.0, -7.0, -7.0, -3.532754378992498, -3.506369717095504, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3140779917792127, -3.6842812553010647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3184807251745174, -3.7976829349148993, -7.0, -7.0, -7.0, -3.453481424721092, -2.8311229220209437, -7.0, -3.701913211212344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2337573629655108, -7.0, -3.159266331093494, -3.358030076576957, -7.0, -7.0, -3.236033147117636, -2.780317312140151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3961993470957363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.19641109941299, -7.0, -2.9800033715837464, -7.0, -7.0, -3.09324653110384, -7.0, -7.0, -7.0, -2.6464037262230695, -3.3460594330525737, -2.8929289823552056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4256564708810275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.869173027321683, -7.0, -7.0, -4.969483474373034, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.839368045695636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.906814333174154, -3.3930484664167784, -3.887335930399167, -7.0, -7.0, -7.0, -3.389343311252078, -7.0, -7.0, -7.0, -7.0, -2.833784374656479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2987439434824073, -7.0, -7.0, -5.124416183245597, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.229615298289249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5975855017522043, -4.372506963362899, -7.0, -7.0, -7.0, -7.0, -4.3793236507533155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.86308482532036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5717088318086874, -7.0, -7.0, -3.991801798844644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3394514413064407, -7.0, -7.0, -3.5579280590540248, -2.292888692709275, -7.0, -4.673714977502912, -7.0, -7.0, -7.0, -2.575187844927661, -1.8440627725826517, -7.0, -7.0, -3.60535892548885, -7.0, -7.0, -7.0, -7.0, -4.449761793777076, -7.0, -7.0, -7.0, -7.0, -3.3106933123433606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062995401186467, -7.0, -7.0, -7.0, -3.119915410257991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8945929479229555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.828981954007923, -7.0, -7.0, -2.103803720955957, -7.0, -7.0, -7.0, -2.034350745127909, -4.941024193064269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.569373909615046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.688330818112266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8963424669127065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9117965904372523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.762378429311964, -7.0, -3.0025979807199086, -7.0, -7.0, -3.85101360682367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.975891136401793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.768860000842957, -7.0, -3.751048034820188, -7.0, -2.9355072658247128, -7.0, -7.0, -7.0, -3.693463127219531, -7.0, -7.0, -7.0, -7.0, -2.1072099696478683, -7.0, -1.8177456121363058, -7.0, -2.1722136039924793, -4.021533840525457, -7.0, -7.0, -7.0, -4.769465948560255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.064832219738574, -7.0, -7.0, -7.0, -7.0, -7.0, -2.89726044333122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.990125651797603, -5.487479169971561, -7.0, -7.0, -3.1795517911651876, -7.0, -4.953894934805404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.568721783427787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.28668096935493, -4.174088895463686, -7.0, -7.0, -7.0, -7.0, -2.744553742351106, -7.0, -7.0, -7.0, -4.317736098878416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.166726055580052, -3.176958980586908, -7.0, -7.0, -7.0, -7.0, -7.0, -4.792318133397602, -4.785486437569411, -7.0, -7.0, -3.2200557602513413, -7.0, -3.1085650237328344, -7.0, -2.8058405488146727, -3.5432234514864356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.989894563718773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.116168070800589, -3.405346360175709, -7.0, -7.0, -7.0, -7.0, -2.7481880270062007, -7.0, -7.0, -3.2571984261393445, -7.0, -7.0, -7.0, -7.0, -4.3260079677596055, -3.5801263254115825, -7.0, -3.9970804354717306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1308696038275126, -3.632356046239073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.41077723337721, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3230457354817013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7270910057095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9223217045445207, -7.0, -7.0, -4.080285424186225, -7.0, -7.0, -7.0, -3.2821687783046416, -2.782830805202592, -7.0, -3.6342875546005997, -2.522009286567709, -2.584331224367531, -7.0, -7.0, -2.78627807661434, -2.1063609088067503, -7.0, -7.0, -7.0, -7.0, -3.79829900014416, -7.0, -2.8567288903828825, -3.2979792441593623, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9773424780314754, -7.0, -4.004418111778492, -3.4174716932032934, -3.594171479114912, -3.782042416620554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.137775961313472, -7.0, -7.0, -7.0, -7.0, -3.3224260524059526, -7.0, -7.0, -7.0, -7.0, -2.776701183988411, -7.0, -7.0, -7.0, -2.6225100655693763, -7.0, -7.0, -7.0, -4.3848524341177, -7.0, -4.0127528874912155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.144636467588492, -7.0, -2.144574207609616, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6129956560323473, -3.1704634100768008, -7.0, -7.0, -7.0, -7.0, -4.3819089060057985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8673201445219627, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0595634179012676, -7.0, -7.0, -7.0, -7.0, -3.8188195075475364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.149157506231856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5140826625258312, -7.0, -7.0, -7.0, -3.498084887646875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3636119798921444, -2.8662873390841948, -2.318324250850395, -2.9636697965031646, -2.706148588963142, -7.0, -3.883788766572103, -2.790988475088816, -2.128722284338427, -7.0, -7.0, -2.45484486000851, -7.0, -7.0, -3.1354506993455136, -7.0, -7.0, -7.0, -7.0, -3.073672053996437, -7.0, -7.0, -3.565611724902059, -2.823148059810694, -3.038620161949703, -3.161368002234975, -7.0, -7.0, -7.0, -3.6129956560323473, -7.0, -7.0, -7.0, -7.0, -3.2564772062416765, -7.0, -7.0, -3.591064607026499, -7.0, -3.7445276734725663, -7.0, -2.6863382970503276, -2.749736315569061, -7.0, -7.0, -7.0, -7.0, -2.8735143535392917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.47928731647617, -7.0, -7.0, -7.0, -7.0, -3.292477593667784, -7.0, -1.9344984512435677, -7.0, -2.0293837776852097, -1.9923325590474643, -1.5378190950732742, -7.0, -7.0, -2.895422546039408, -4.941734982088115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9375178920173464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.468839448857906, -7.0, -7.0, -7.0, -2.7427251313046983, -7.0, -7.0, -7.0, -3.2234094022589295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7331972651065692, -2.146128035678238, -7.0, -3.1815577738627865, -7.0, -3.00108438129222, -2.713648019791832, -7.0, -7.0, -7.0, -4.6542150585275275, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5666731376061165, -7.0, -7.0, -2.6328909362366324, -2.6572765496426967, -3.243534101832062, -2.2404105625136093, -7.0, -5.52726375359217, -3.8596785766284483, -7.0, -7.0, -7.0, -7.0, -3.296665190261531, -7.0, -2.596047007545439, -7.0, -7.0, -7.0, -2.795184589682424, -3.6830470382388496, -7.0, -7.0, -7.0, -7.0, -7.0, -3.906819715466545, -5.273140224066812, -7.0, -3.176814480674777, -4.716871065166026, -3.761927838420529, -7.0, -7.0, -7.0, -3.5129510799724906, -7.0, -7.0, -2.9822712330395684, -7.0, -7.0, -3.0620175988571123, -2.244689360492884, -7.0, -7.0, -3.325207689482919, -1.4671015942208998, -2.2167074772748543, -7.0, -7.0, -4.593164181568868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.879239282004893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.234992823547606, -3.1383026981662816, -7.0, -4.438257472106888, -3.9617152704537655, -4.076667745482861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3659557226656793, -2.7810369386211318, -4.653545345309011, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.897181573574155, -7.0, -7.0, -7.0, -4.955037987024298, -7.0, -5.046137982947624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0161973535124393, -4.178228510935771, -7.0, -7.0, -4.0374663396435, -7.0, -2.4104156728052764, -7.0, -7.0, -7.0, -4.494836124034309, -7.0, -7.0, -7.0, -7.0, -7.0, -3.344294005898312, -7.0, -7.0, -7.0, -7.0, -7.0, -3.207095540419218, -3.4984484031739997, -7.0, -7.0, -7.0, -7.0, -7.0, -5.093855762641554, -7.0, -7.0, -7.0, -3.023046584075505, -7.0, -3.1320995219165044, -7.0, -7.0, -3.94485265185328, -7.0, -7.0, -7.0, -3.1420764610732848, -7.0, -7.0, -7.0, -3.0484418035504044, -7.0, -3.2242740142942576, -7.0, -7.0, -7.0, -3.0380900496081393, -3.48826861549546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.915493637849186, -7.0, -7.0, -7.0, -7.0, -7.0, -2.367355921026019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.301753217283077, -3.674115763447881, -3.2949069106051923, -7.0, -3.6021251306149233, -7.0, -7.0, -7.0, -4.02428037604708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.111598524880394, -7.0, -7.0, -7.0, -3.322219294733919, -3.646599751720373, -7.0, -2.432969290874406, -7.0, -7.0, -7.0, -2.951823035315912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.637989780784685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.906335041805091, -7.0, -7.0, -7.0, -7.0, -4.495655325147846, -2.9344984512435675, -7.0, -7.0, -7.0, -3.3710678622717363, -7.0, -7.0, -7.0, -7.0, -3.634275694625944, -3.1565491513317814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.219322508419337, -2.9626849566736677, -7.0, -7.0, -3.289142835932333, -3.62747366209953, -7.0, -7.0, -7.0, -7.0, -3.761451706976967, -3.368100851709351, -7.0, -7.0, -7.0, -7.0, -3.6596500299986263, -2.0769639103881374, -7.0, -3.753353212641496, -3.590615464696057, -7.0, -7.0, -7.0, -2.6461235362250264, -3.382197210377454, -3.2681097298084785, -3.291742638086838, -7.0, -7.0, -7.0, -7.0, -2.8790958795000727, -7.0, -7.0, -7.0, -7.0, -7.0, -3.968414452266617, -7.0, -7.0, -7.0, -7.0, -2.9541620770875987, -7.0, -7.0, -7.0, -3.3723595825243238, -7.0, -3.2322229201632005, -3.103461622094705, -2.362114994039135, -3.3829770749788555, -7.0, -7.0, -3.2773799746672547, -7.0, -3.3418300569205104, -2.7409545058228053, -7.0, -2.525260820213098, -2.8953304466897034, -4.165199796041853, -7.0, -7.0, -2.645790575645571, -7.0, -7.0, -2.8216772586543666, -3.2022157758011316, -7.0, -4.526681666309884, -7.0, -3.2168254232660476, -7.0, -7.0, -3.4547432587723694, -7.0, -7.0, -7.0, -3.1027766148834415, -7.0, -3.1397741716810974, -7.0, -2.676083645364622, -7.0, -4.232983411537435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.180355296448789, -7.0, -7.0, -7.0, -2.8132055719057973, -2.8790958795000727, -2.754348335711019, -2.7972675408307164, -2.5457193561568654, -3.2199161886494805, -3.291368850451583, -3.238798562713917, -2.668012971641832, -7.0, -3.4996183597000066, -7.0, -7.0, -7.0, -3.3551640665152047, -7.0, -7.0, -2.4282721029811807, -7.0, -7.0, -7.0, -7.0, -4.220265033587232, -3.3697722885969625, -7.0, -3.1023479360588784, -7.0, -7.0, -2.828930025405288, -2.8229304774003796, -7.0, -3.17260293120986, -4.386712938858596, -7.0, -7.0, -7.0, -7.0, -7.0, -3.767897616018091, -3.202896808529529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4247001891741125, -7.0, -7.0, -7.0, -7.0, -7.0, -3.323628159997115, -7.0, -3.1535099893008374, -7.0, -7.0, -7.0, -7.0, -3.1314582601065255, -2.590817075254678, -2.5298151966446305, -2.855670556918036, -2.0272721727238423, -1.186657669499552, -7.0, -3.519172991787454, -3.2586372827240764, -7.0, -2.5428254269591797, -1.7887681071554584, -1.4165612637504499, -7.0, -7.0, -2.8930215923314395, -7.0, -4.303217663573669, -7.0, -7.0, -3.116745907663402, -7.0, -3.461198288622493, -2.9882021002587806, -7.0, -7.0, -7.0, -3.1577588860468637, -2.898542359241223, -3.423245873936808, -7.0, -3.2725377773752373, -3.752202153176521, -7.0, -7.0, -3.175946470095546, -7.0, -2.7382518980637593, -3.155808206708329, -7.0, -3.3518606992882605, -7.0, -2.946615995262667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.763855659261606, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2629254693318317, -3.193958978019187, -3.287801729930226, -2.4831592097169795, -7.0, -7.0, -5.713833978722122, -7.0, -2.7774268223893115, -2.5834255004065065, -7.0, -7.0, -7.0, -7.0, -3.4342494523964753, -2.4729188934866406, -2.8457180179666586, -7.0, -1.4856055528197656, -7.0, -2.034350745127909, -2.895422546039408, -7.0, -3.51601603520119, -7.0, -7.0, -7.0, -7.0, -3.313023110323238, -2.997167871445834, -7.0, -3.3142886609474975, -7.0, -2.760874638052189, -7.0, -3.0330214446829107, -7.0, -7.0, -7.0, -3.1595671932336202, -7.0, -4.546863330761307, -2.234896745731588, -7.0, -7.0, -7.0, -7.0, -3.2563568863955257, -3.81424759573192, -3.705521613422667, -3.4924810101288766, -2.574857708475501, -7.0, -7.0, -2.2413804341476116, -2.082246654743669, -1.9072283458195376, -1.7767011839884108, -7.0, -2.2815383608882356, -2.435985853029805, -2.7533276666586115, -7.0, -7.0, -7.0, -2.8627275283179747, -7.0, -7.0, -7.0, -4.533091749496603, -3.9459607035775686, -7.0, -4.3082228192210215, -7.0, -3.3273589343863303, -3.38747881199254, -7.0, -4.002079626393121, -7.0, -3.0740236540366594, -2.5129214565297655, -1.331568783566107, -2.917899189424106, -4.715106847213561, -2.492035701999729, -7.0, -7.0, -7.0, -3.826398782187618, -3.0128372247051725, -7.0, -2.3404441148401185, -7.0, -7.0, -2.490660653356137, -7.0, -3.779307827583586, -7.0, -2.881004030556986, -3.4125445421080887, -7.0, -4.863132442718785, -4.103889203582334, -4.444501646725794, -7.0, -3.380693523251344, -3.7922845448163978, -3.241172786770047, -7.0, -2.864708802200848, -7.0, -3.3475251599986895, -2.9470046073947573, -3.3202847949567196, -7.0, -7.0, -7.0, -3.5446880223026773, -1.998720781160827, -3.299942900022767, -0.9725720697647939, -2.5863461416029554, -1.8084360542881113, -3.0689011424160633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.408901082354143, -7.0, -7.0, -7.0, -7.0, -5.002109880727161, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.544601278651145, -7.0, -7.0, -4.667667712106219, -7.0, -7.0, -4.781532786564054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7361972389182934, -7.0, -3.236807611141011, -3.637939801558909, -7.0, -7.0, -7.0, -4.760874638052189, -1.545383382070007, -2.612571954065176, -7.0, -3.967351376033999, -3.735146273829275, -7.0, -7.0, -7.0, -2.352733653314646, -7.0, -4.391058669254854, -7.0, -7.0, -3.162937607956918, -4.887299338914315, -5.7072856626157895, -2.4538277764478607, -2.3856807347184095, -3.255272505103306, -3.2696606383128284, -7.0, -7.0, -7.0, -4.2431869241314715, -7.0, -7.0, -4.448072189065087, -4.011655010724778, -7.0, -7.0, -7.0, -4.125508374372735, -7.0, -7.0, -3.9941997995697123, -3.919273076788743, -7.0, -3.284596018245864, -7.0, -7.0, -4.141439320940584, -4.015841571684366, -7.0, -2.568495067193246, -7.0, -7.0, -7.0, -4.483515978390542, -2.471024863442615, -2.9800836156911226, -7.0, -7.0, -3.3613878203125966, -7.0, -1.8123190431982061, -3.225567713439471, -3.118859695409587, -7.0, -3.6278299485495435, -3.7085908451503435, -7.0, -7.0, -7.0, -7.0, -2.445526365746388, -7.0, -7.0, -3.3670451557305383, -7.0, -7.0, -7.0, -2.170160516633716, -7.0, -4.052155067199565, -7.0, -7.0, -7.0, -3.842630038656657, -7.0, -7.0, -7.0, -1.9842976372678365, -7.0, -2.7456323657784334, -7.0, -2.3003613358214947, -3.097719940343722, -7.0, -7.0, -7.0, -2.632288535826703, -7.0, -7.0, -7.0, -3.0629578340845103, -7.0, -3.4581844355702627, -7.0, -7.0, -7.0, -2.6490426340861766, -2.210750561554938, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5385178795875127, -2.926661984253831, -2.9863237770507656, -7.0, -3.11544408343624, -7.0, -7.0, -2.9770373352246815, -7.0, -7.0, -2.7183632683141012, -3.263340126851339, -7.0, -7.0, -2.9027279240431674, -2.9864831036687094, -2.504470862494419, -7.0, -2.8782139380544858, -7.0, -3.5075860397630105, -7.0, -3.2252723503527463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542028281879299, -7.0, -7.0, -3.604154024809671, -7.0, -2.798650645445269, -7.0, -2.965985202017604, -7.0, -2.062173082510824, -2.517428784441516, -7.0, -7.0, -2.3625138895930924, -3.055187138555754, -3.5088998897969157, -3.3203540328176717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9813177870322458, -7.0, -7.0, -7.0, -2.3577231509290413, -7.0, -3.5369370227046737, -7.0, -3.8394780473741985, -3.8312296938670634, -7.0, -7.0, -7.0, -3.644832328825636, -7.0, -7.0, -3.5574804670426556, -2.612359947967774, -2.7019994748896368, -7.0, -7.0, -7.0, -7.0, -7.0, -3.511749711344983, -7.0, -7.0, -2.640150040936102, -7.0, -7.0, -4.340558126963426, -4.3391482237708905, -7.0, -4.6402726869436295, -4.641107085692552, -3.1835839736533478, -3.255415276870857, -4.641141817541527, -4.165377888987069, -1.9912386295516902, -3.6629749246538044, -7.0, -4.942142043219304, -3.8648880856896426, -2.872629130512553, -3.7692640599117246, -4.341736150601685, -7.0, -4.941918703252601, -4.464305695943203, -2.590025897957538, -3.5285264676240913, -4.940899809694886, -2.2175992028350455, -2.2184336737060644, -4.467682084713682, -3.942677590997809, -7.0, -3.7450357345667062, -4.042713299346113, -4.2441137656630215, -2.2602768129942987, -3.8655333169173196, -3.288115025288103, -3.5613945925060193, -3.4957672749725406, -3.067379236051902, -3.863134426663756, -3.91252156664849, -7.0, -3.6278533350162383, -3.2704062482323635, -3.027817056380705, -4.464971167320695, -4.466284216743369, -3.648433200512645, -3.9910783313529503, -3.045790326219194, -3.8287391943822384, -3.6021389467834846, -4.176477127123627, -3.8663168819216542, -2.7104912734275546, -1.793667057220101, -2.8796886271593203, -2.9044266957089535, -2.9386740080093743, -7.0, -4.342126469955725, -4.049445773663138, -3.496998797740092, -4.342728553287486, -4.166676745959573, -4.640774511680957, -4.3418597073294904, -2.973926021334254, -2.9739148385188066, -3.827930669166558, -7.0, -3.2185452300053567, -7.0, -3.4334403772443878, -2.2995270207845793, -4.464688218289176, -4.350160762910063, -2.785458363992269, -4.941695248372151, -2.907753267261719, -7.0, -7.0, -2.821490462846237, -4.250185712886612, -3.9885044560907814, -4.463902938344607, -3.748410933476706, -4.341919002075212, -3.611684693756236, -4.655124022144736, -3.833994955928646, -4.646364510503877, -2.22825463986061, -3.450504104449732, -3.0531454728569654, -4.038426414658448, -7.0, -4.9520752895626545, -2.8936734010236806, -3.871611849078623, -4.054617841727174, -7.0, -3.512783346395494, -3.3528402666795025, -7.0, -4.941173406099363, -2.6104789427735, -4.941446830252359, -3.671869221719906, -4.247369250804275, -3.004755928556112, -2.5327583219803445, -4.466487013635048, -3.9424346928272933, -3.401100074470033, -4.344102319736858, -2.454086205039016, -2.8904704794849647, -3.598482104891492, -3.8034327273579733, -3.4645376212982324, -3.6810126011597757, -4.643699364639315, -3.168335189517856, -1.9195487280227486, -4.165382834970976, -3.6103823923852376, -3.8645160251841872, -2.8589481955444622, -3.5473611290768665, -3.461082011652079, -2.8894597296429323, -4.242774910613106, -4.9439592293874295, -2.154039567491323, -3.65241074209177, -7.0, -7.0, -2.7332209914272227, -4.63978521298682, -4.940869952384663, -4.242223292961823, -3.737560364635477, -4.096025634102744, -3.2485751065285084, -3.2321157182262974, -3.4606702239729046, -3.22961548788786, -7.0, -4.27629172965034, -4.64033234004778, -4.942345430798429, -3.690422523774704, -2.797959643737196, -3.715854841502423, -7.0, -4.641558383219824, -4.643087320671172, -2.708922655700782, -4.6402726869436295, -7.0, -4.103305144246941, -4.469276965762279, -4.464713045757064, -4.344411924574547, -3.5853920609208165, -3.036711641762698, -3.6495198326589673, -3.0666005221892987, -3.0249512507892367, -3.646197804180806, -4.341286107028629, -1.4295428940835, -4.2439156770217075, -7.0, -7.0, -4.166104344841616, -4.097539903417536, -4.243370466922834, -7.0, -1.9238175013555583, -4.465541468865047, -3.3913782899001723, -7.0, -3.178609025019984, -1.3348343173384234, -2.8097379111016547, -2.0416001779564237, -2.7156143780236928, -2.5272495409101916, -2.5810130261892485, -4.469885805962796, -3.6257483888188187, -3.904223594068507, -4.24803705634644, -3.9597614375779355, -7.0, -3.5141158997723867, -7.0, -3.4129914837145408, -3.325114765590469, -3.8607451539354347, -7.0, -2.2938892026246065, -4.941138594309685, -2.0088966805430557, -2.9981998745389062, -3.515461715791736, -3.3512064247307594, -4.165155261392066, -2.5113447333185333, -2.9578319836218965, -7.0, -3.165000936622481, -1.5793500607865452, -1.6390451678893192, -7.0, -3.9868264529186463, -3.544494684155256, -4.2425215516658765, -4.942052721014709, -4.164902812078488, -4.941680347291402, -4.0983915294572775, -2.2168693557411143, -3.208959344396666, -2.5914515760902344, -2.436113338902213, -7.0, -3.863570674382189, -4.2444602035259225, -3.254907978107314, -4.640208053499725, -4.163628427790105, -2.3695012957916983, -4.470238934788868, -4.169042219626128, -7.0, -7.0, -4.46469814944665, -4.2433754264624115, -4.941024193064269, -4.941734982088115, -3.51601603520119, -7.0, -4.941063988219902, -4.941267881179236, -7.0, -7.0, -3.1173949804690353, -3.2620850681416096, -7.0, -3.7679223192109474, -3.198434290393791, -4.103070321712875, -3.2865359932977283, -2.432029162983926, -2.713131786506826, -4.464415022426169, -7.0, -2.2852351456911983, -2.837275150949137, -1.9503113239127658, -4.099098298220612, -2.421550142900094, -4.166548514738755, -4.641350150325748, -3.7383345436865523, -2.912528278286801, -4.062473867166674, -2.771410537267909, -3.1928083410077157, -4.01789087330904, -3.9052806011119654, -4.944018518736587, -4.941789610012567, -4.167888140421916, -3.4904089698013103, -3.5205805655249534, -7.0, -4.94254376595368, -3.7699432142157887, -4.3402903989534085, -2.9420621061144216, -4.941113727037101, -3.2680511640364385, -2.502491275926205, -3.8664940967562282, -2.9179234789605135, -2.6023214763152813, -2.2428326739553217, -3.251601494030338, -4.242988412194795, -2.65501934144753, -3.9001634665734852, -4.245453441801116, -3.276174477347082, -2.969661096395893, -1.9639775351996702, -2.936624892484605, -2.856677381260537, -3.141709370973691, -3.3868121789710552, -3.719701654166844, -1.9981567084168663, -3.302017584888769, -7.0, -7.0, -7.0, -3.434709763913882, -3.543967810980926, -3.988603543345664, -3.9022897535273424, -3.997294136783413, -4.6413997386429875, -3.6066842101912937, -4.6419151217736125, -3.6843302879646407, -3.7678185563570334, -3.6440346358149664, -3.616628256327668, -3.5458709619210995, -2.9959668206801613, -3.091471549501543, -2.7513837398972187, -4.466951605477452, -3.1621021253086092, -2.3033176067155994, -3.134631721464408, -7.0, -3.903346539757214, -7.0, -3.424011600521135, -3.0230278632753684, -3.517068589333369, -3.6938978589117037, -4.941446830252359, -7.0, -3.7749935764800484, -4.641454279253067, -4.642780974929156, -4.2452411489044595, -3.6815363811196473, -3.9427122796492005, -2.154746751421589, -7.0, -7.0, -2.119276841852149, -2.3021789633202125, -3.608163833374166, -2.937274240502207, -2.5963702096135868, -1.4712237365671486, -2.6832733908769533, -2.786630248644035, -1.8349429903280465, -2.1637228015492442, -3.165301777551698, -3.4380796338230235, -2.438984050853466, -2.398842966792188, -1.748040522552098, -2.906113825179055, -2.2658244592417347, -1.4620224918544311, -2.975810900530579, -3.0858174330519823, -3.957166544282454, -2.441408622070083, -2.9260212381112978, -2.391442325089044, -2.6270199151057425, -3.779055089381888, -2.8327985213557447, -3.1638085844113726, -4.472697954538768, -2.086052271614508, -2.6941189367490233, -2.574746369947656, -2.835977193225308, -3.59536901816875, -3.86914367814229, -3.5639686348131656, -3.4976114436533603, -2.890194363359256, -2.7549331407101207, -1.9725495168372835, -4.342669368975334, -2.920895834382227, -1.7874437108032026, -2.7115905922749253, -2.887946129001034, -3.4210579070373512, -4.648954928341813, -2.1823385085466485, -2.816813757343871, -3.749914980946592, -2.751922856035796, -2.5385311917995725, -2.0783434964707808, -4.247850566973534, -2.5186401699272873, -3.794599568642681, -4.163608563431052, -4.190719121464074, -3.1914667588994208, -3.9613926148060097, -4.944803339433345, -2.3115310523352646, -1.7681133133424474, -2.758036819412388, -4.942439651291005, -3.1986381299941233, -4.340766245814562, -2.040166187706178, -4.666878183240443, -3.112374317534743, -2.496487537030572, -3.4578272491973956, -7.0, -2.7215762524015634, -2.931778936116568, -2.5100624294816565, -3.7822575736633017, -3.121126149683747, -3.6270538048638272, -2.134937569307635, -2.583808065111376, -4.342077081830135, -1.9970857105306132, -2.155445376459069, -4.1783917416380465, -2.1129300018512898, -4.942979784728125, -3.344818642061682, -2.3454803518919145, -2.6738111180539055, -4.163782345773859, -4.941302682607611, -4.9409197134280625, -4.163494325730938, -3.2474728128175467, -1.763111382025732, -3.4182964159614206, -2.4319767053533137, -3.8628615491435725, -2.960588455242285, -2.231131517275498, -2.6286919625857674, -3.1700758288813535, -3.8629756824198656, -3.096002916788983, -4.941576025408112, -1.836016424279723, -3.202550451648127, -3.7394141026986953, -2.6642795206007728, -1.6687809505328624, -3.471800046620036, -2.866773111164473, -3.497492403996519, -4.165219587753745, -2.352272175741767, -3.712971392093174, -3.481492050349517, -3.6254006534766647, -3.222388868967012, -4.9409197134280625, -2.8338785384191922, -4.038386660938553, -3.900506160093372, -2.234434536184744, -1.1139979281615506, -2.002222839113038, -7.0, -2.6718838191177494, -2.77724438595689, -3.0355483209306082, -3.077401823751774, -7.0, -3.499475970480061, -2.4545566959901555, -7.0, -4.096905049614187, -2.734321633758071, -3.4550610931773704, -2.748506684505836, -4.165135466748402, -3.5158198968280416, -3.799138619593707, -3.0979956320455218, -3.646918104564691, -2.187470603188043, -2.7867131768474955, -4.464300725903642, -3.2394149932197545, -3.1762215278609083, -3.3149787437751113, -1.9845317083029534, -3.989009564895201, -4.4649215404715346, -2.2424450033000847, -3.357939731076476, -1.3226176461093304, -3.475646979484606, -3.0765158873126466, -2.9728131759430343, -3.8643676769207596, -3.453948101422571, -3.581400491476937, -3.2681003598156644, -3.7385774307676627, -3.2007528138238346, -3.0392694469066375, -3.414427680794785, -4.941083884430364, -3.0089789965072575, -1.7600494895554875, -2.690172124901124, -2.4972434305077478, -1.7148591343418107, -2.4573950576660026, -2.222088458466134, -3.7152510288788494, -2.673941998634088, -2.910948213864197, -3.2382035881544415, -3.3016415253209725, -3.7652263375961468, -4.095906254104675, -2.8809643628019734, -3.1010593549081156, -3.830504772317295, -2.938980958131319, -1.8673473998790473, -2.858209418903174, -2.5705903249024113, -2.4904995403286, -2.535408776423756, -3.219666980592045, -3.226956631551876, -3.516055252248334, -7.0, -2.9507608581826994, -2.8108661942666147, -2.9320563015173873, -4.941203242555451, -3.5160993671937972, -3.903701516648935, -2.1630660097373533, -3.6653637153823238, -3.2891973858841714, -7.0, -4.640133464494492, -3.8276922886744456, -4.464340484627667, -3.941933596157502, -2.2966934306284106, -2.838785161346223, -3.1488033442895493, -3.6642014217072965, -4.244643209101521, -4.163911396227727, -3.942722190183571, -3.4253464559371563, -4.098188677117789, -3.4320942849063436, -3.6245865503192305, -2.6020556133373285, -2.4711737520274553, -4.006523088680669, -3.4250250914043128, -4.339113414771401, -3.273921964852061, -4.0981936258632885, -7.0, -2.547063203346281, -3.7978657801465183, -3.7677147687058827, -3.2224177849842386, -3.0940827414918974, -3.629006478444398, -4.163494325730938, -4.242963591821483, -3.745708976279389, -4.640367133908332, -2.9961736756972437, -3.5487725584928786, -4.467568644894248, -4.940894833619059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.203957091681244, -7.0, -7.0, -7.0, -7.0, -7.0, -4.33270097722138, -7.0, -7.0, -3.6370892735303304, -3.8554376100505943, -7.0, -7.0, -7.0, -2.77232170672292, -2.428944290035574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.83939319139298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.429714607223846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9434945159061026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2996162399984135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.928600659844524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.319522449065454, -7.0, -3.5984622004741507, -4.372654294203732, -7.0, -7.0, -7.0, -7.0, -3.379142286647321, -7.0, -7.0, -7.0, -7.0, -3.600537294364469, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.147468731770726, -7.0, -7.0, -7.0, -7.0, -7.0, -3.593906044972859, -3.4265112613645754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8500332576897691, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752911566555018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.35289417766023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7558748556724915, -3.7179200258369938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941063988219902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.308713776639004, -7.0, -4.530135638245461, -7.0, -7.0, -7.0, -7.0, -7.0, -3.023023702987968, -7.0, -7.0, -3.086448816328559, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9122220565324155, -7.0, -7.0, -7.0, -4.829879233719065, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3426693689753333, -3.1975562131535367, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2979792441593623, -5.82820796944373, -3.8515029527705447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0517311960598494, -2.2821687783046416, -7.0, -7.0, -3.3694941621180985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.875125534219098, -7.0, -7.0, -4.716308078016287, -2.7961887392208773, -7.0, -7.0, -7.0, -7.0, -3.459543258280413, -2.9944931228835125, -7.0, -1.4648867983026508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.527784518264025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.933616342206829, -7.0, -7.0, -7.0, -7.0, -4.376503960252927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.487490478067235, -7.0, -7.0, -3.356599435724971, -2.6711728427150834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163042046914198, -3.2884728005997825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.794940926679733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1690863574870227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.919862253555538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6502103546603593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1961761850399735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.346660002085005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2591158441850663, -7.0, -7.0, -7.0, -7.0, -4.627140456634811, -7.0, -7.0, -4.298328988073496, -7.0, -3.406965750758948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0252034252402584, -7.0, -7.0, -7.0, -7.0, -7.0, -3.633165353683903, -7.0, -7.0, -7.0, -2.9740509027928774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.726835836961581, -7.0, -7.0, -7.0, -7.0, -3.9039847969050228, -7.0, -7.0, -7.0, -7.0, -7.0, -3.856326019777088, -7.0, -7.0, -3.641176546613114, -3.6171576656949442, -7.0, -7.0, -7.0, -2.782233672588372, -2.445214876056217, -7.0, -4.864368666076987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.839522040245412, -7.0, -7.0, -3.276921132065774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0039126867384836, -7.0, -3.8900855267163252, -7.0, -7.0, -7.0, -3.3979400086720375, -7.0, -7.0, -2.9633155113861114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1277525158329733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8610562445768735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275457246836364, -7.0, -4.008770449937752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3279716236230104, -7.0, -3.3016809492935764, -4.07234182151732, -7.0, -7.0, -7.0, -7.0, -3.2336124653140192, -7.0, -7.0, -7.0, -7.0, -3.6049816296074315, -7.0, -7.0, -4.752463327501825, -7.0, -7.0, -7.0, -4.089649049381677, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5155868673998802, -3.4331295175804857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8319279166571738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.75297446720691, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9091279419892606, -7.0, -7.0, -7.0, -7.0, -5.051939329951164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.786041210242554, -3.721315880605899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2493206766376344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941267881179236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.797613730153076, -7.0, -7.0, -7.0, -4.008515007631455, -7.0, -3.9285238683171553, -7.0, -7.0, -7.0, -7.0, -7.0, -3.024895960107485, -7.0, -7.0, -2.9136372740190546, -3.8221680793680175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9143960521297863, -7.0, -7.0, -7.0, -4.6539132533085725, -3.8773713458697743, -7.0, -7.0, -7.0, -7.0, -2.0567819436005728, -3.208710019906401, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3068537486930083, -5.129259250401018, -3.552850654460561, -7.0, -7.0, -7.0, -7.0, -3.286231854028553, -7.0, -7.0, -2.8830933585756897, -2.3263358609287517, -7.0, -7.0, -3.373279893277496, -7.0, -7.0, -7.0, -7.0, -4.855385878893443, -7.0, -5.574118117939368, -7.0, -7.0, -4.540379534670119, -2.639026512722247, -7.0, -7.0, -2.5646660642520893, -7.0, -3.462622574900549, -2.7934411329776636, -7.0, -1.485315733334934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.499384620400921, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.878699842715436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.227256649297079, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.23470958580684, -7.0, -7.0, -7.0, -4.961354639553441, -4.075811472000948, -7.0, -3.9554311698573885, -3.8021577531869615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.709383043773476, -7.0, -7.0, -3.3604987444680012, -2.7075701760979367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.780691666721215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.744916588971316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9875322027298394, -2.9960736544852753, -3.6982745766743674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.795226346759703, -3.5822906827189938, -7.0, -7.0, -7.0, -7.0, -3.3349561161368517, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8793826371743427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.620864475265121, -7.0, -3.418135498425232, -7.0, -7.0, -3.942528893958499, -7.0, -7.0, -7.0, -7.0, -3.3529539117100877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.201806642957022, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02447784884254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2688119037397803, -7.0, -7.0, -7.0, -7.0, -4.15039821661802, -7.0, -7.0, -3.9981503150813658, -7.0, -3.4104397862103464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0293837776852097, -7.0, -7.0, -7.0, -7.0, -3.312388949370592, -3.336059277866349, -7.0, -7.0, -7.0, -2.6906390117159673, -4.3899807298820175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.582063362911709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8254261177678233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.863804481366742, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727402976473511, -7.0, -7.0, -7.0, -4.194320045303423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8840586470939384, -7.0, -3.66143405039392, -4.395727005831184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2907022432878543, -7.0, -3.4771212547196626, -7.0, -3.0464951643347082, -7.0, -4.238080619382148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1058506743851435, -7.0, -3.703919790261458, -3.436162647040756, -7.0, -3.7902147702439795, -7.0, -7.0, -3.1314582601065255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.89470365260923, -1.0907351059240402, -3.044147620878723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5374412834079476, -3.249198357391113, -7.0, -4.385146459387118, -7.0, -4.0175758683910745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.003029470553618, -7.0, -7.0, -3.4937832434341214, -7.0, -7.0, -3.1562461903973444, -7.0, -4.076166939344932, -7.0, -2.5118833609788744, -7.0, -7.0, -4.0829109745222265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.569549464888704, -4.453020042471988, -7.0, -3.8370831508231857, -7.0, -4.516583846475269, -3.1010593549081156, -7.0, -3.600755149639618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.152685756036786, -7.0, -7.0, -7.0, -7.0, -2.7895807121644256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.939032270356462, -7.0, -7.0, -7.0, -2.857030798272624, -7.0, -7.0, -7.0, -7.0, -3.064832219738574, -7.0, -3.2718996634153905, -3.215901813204032, -7.0, -3.39502581352667, -7.0, -2.586587304671755, -7.0, -7.0, -7.0, -7.0, -7.0, -3.442845446763725, -7.0, -7.0, -2.6190933306267428, -7.0, -3.9383060662499854, -7.0, -3.3713449830820985, -7.0, -7.0, -7.0, -2.716281648342755, -7.0, -7.0, -7.0, -3.022325250092303, -7.0, -7.0, -7.0, -7.0, -3.2833012287035497, -7.0, -7.0, -4.07258073264895, -7.0, -2.907411360774586, -2.6314437690131722, -7.0, -2.5282737771670436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.411893999172559, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.31722734917642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9809119377768436, -2.3531465462139796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.989271791641693, -7.0, -7.0, -7.0, -3.8356271662098975, -7.0, -7.0, -7.0, -3.137986732723532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9116901587538613, -7.0, -7.0, -3.9253120914996495, -7.0, -2.725258066359961, -3.187238619831479, -4.83068167600728, -7.0, -7.0, -4.2844984108280455, -7.0, -7.0, -7.0, -3.2615007731982804, -3.952647169758943, -7.0, -7.0, -7.0, -7.0, -7.0, -5.050211497402782, -7.0, -7.0, -7.0, -7.0, -3.7500453120117676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.07843869186193, -7.0, -4.574218263621033, -7.0, -7.0, -5.018388393383747, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7791634237644987, -3.4143883269310753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.638089721984506, -7.0, -3.900107566982329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.086790351904906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.613196769750614, -7.0, -4.669530720269089, -4.58866006326894, -7.0, -7.0, -7.0, -7.0, -4.390155098146551, -3.687974620034556, -7.0, -7.0, -4.48520545453641, -4.3787793310606915, -7.0, -4.4359557908892375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.690231531192315, -7.0, -5.405331843601616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.215505378231819, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7995473071256147, -7.0, -7.0, -7.0, -4.642162684587794, -7.0, -7.0, -5.046362475491852, -7.0, -3.5828584622244994, -4.607154666400511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1815291821065035, -7.0, -7.0, -3.8636202202703154, -7.0, -7.0, -7.0, -3.740441644949766, -7.0, -4.319529385513524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008387230114159, -7.0, -7.0, -7.0, -5.094257947097275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.870054534276521, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.00268431298973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.528338112324839, -7.0, -7.0, -4.24436372360166, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6351820486562674, -3.6577249542051082, -7.0, -7.0, -7.0, -7.0, -4.393662930667503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.196190007050506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.88930170250631, -7.0, -3.3102683666324477, -2.636989101812229, -7.0, -7.0, -3.926678139475995, -7.0, -7.0, -7.0, -3.903307079964174, -3.6181788886064417, -3.2095150145426308, -7.0, -7.0, -7.0, -7.0, -3.867781653335743, -3.3020060605865402, -7.0, -2.613753756483513, -3.6530089813929942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9646013670437754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.527243116388089, -7.0, -2.508698017551925, -7.0, -3.9381505681184805, -7.0, -7.0, -7.0, -7.0, -3.6716355966021297, -7.0, -1.5425142162816539, -7.0, -7.0, -3.014310480963307, -3.2969539819037164, -7.0, -3.075442676488223, -3.115810141409786, -7.0, -7.0, -2.7878853509409245, -3.1470576710283598, -7.0, -7.0, -7.0, -7.0, -7.0, -3.978347930837997, -7.0, -7.0, -3.4531653925258574, -7.0, -7.0, -3.362105319293773, -7.0, -7.0, -4.012428360872589, -2.0201540316383326, -1.6532125137753437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.012415374762433, -7.0, -3.233884108765886, -7.0, -3.330819466495837, -7.0, -3.9300851841571225, -7.0, -4.03261876085072, -7.0, -7.0, -7.0, -3.020775488193558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.873320601815399, -2.872783607024382, -7.0, -7.0, -3.255272505103306, -3.3600250891893975, -2.838579258804435, -2.1861083798132053, -1.7910763089412547, -1.9978230807457253, -3.2460059040760294, -3.3487649395500347, -2.5575072019056577, -7.0, -7.0, -3.581949658373318, -3.6630409748939745, -7.0, -3.881299044952724, -3.911674952098214, -7.0, -3.8596785766284483, -7.0, -4.995336788822523, -7.0, -3.491781775584166, -3.1614678285730546, -7.0, -7.0, -3.3061032087275857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0929210574619534, -2.8744818176994666, -7.0, -7.0, -4.163757523981956, -7.0, -7.0, -7.0, -7.0, -2.5136614370834756, -1.9650971273480884, -7.0, -3.8461514765288154, -7.0, -7.0, -7.0, -3.399278054006315, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2612628687924934, -3.299942900022767, -2.601749670141552, -3.1285608065593205, -2.428742057444305, -3.8950908969343994, -3.303412070596742, -3.075911761482778, -2.6234108282394146, -7.0, -7.0, -7.0, -7.0, -7.0, -2.99563519459755, -7.0, -2.858637438650731, -7.0, -7.0, -7.0, -7.0, -2.8846065812979305, -2.680335513414563, -2.237959529923704, -3.6190933306267428, -3.258876629372131, -2.948738890358178, -3.2860071220794747, -3.3352572564345317, -7.0, -3.286905352972375, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8813846567705728, -7.0, -7.0, -2.9710616467698157, -7.0, -1.9255330877635497, -2.00108438129222, -2.5877109650189114, -1.6795144180750814, -7.0, -3.7664128471123997, -7.0, -7.0, -3.4358443659844413, -4.061207365300118, -3.3942181263801987, -7.0, -2.568201724066995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1492191126553797, -7.0, -4.14157518330082, -7.0, -7.0, -7.0, -7.0, -3.2140486794119414, -7.0, -2.0929210574619534, -2.1517482889991797, -3.301897717195208, -3.295786940251609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313023110323238, -3.1173949804690353, -7.0, -7.0, -7.0, -1.9809119377768436, -7.0, -1.0693418020344068, -7.0, -7.0, -7.0, -3.3378584290410944, -3.8033205235787544, -2.931775592908094, -2.8419848045901137, -7.0, -7.0, -3.8444771757456815, -2.6722826247889206, -3.13942567294585, -7.0, -4.713624926782461, -7.0, -7.0, -3.0149403497929366, -3.1596960703744554, -7.0, -3.6738499773429494, -3.4394905903896835, -7.0, -7.0, -7.0, -7.0, -3.240798771117331, -3.200303182981585, -3.4759615891924236, -7.0, -7.0, -3.245018870737753, -7.0, -1.4251148148819859, -2.8662873390841948, -2.792916728226602, -3.165194847972947, -3.225050696138049, -2.17507672117621, -1.5314789170422551, -3.4513514117014297, -3.9093420383613084, -7.0, -3.8154891981186587, -7.0, -7.0, -3.318793504793297, -3.0396123818967244, -3.12441105858231, -2.5878356368963007, -3.0280965768121466, -2.871183608328498, -7.0, -7.0, -4.787200193408041, -7.0, -7.0, -7.0, -7.0, -3.476324317420228, -3.1702617153949575, -7.0, -3.1048284036536553, -7.0, -7.0, -3.380030247967831, -7.0, -7.0, -3.1228709228644354, -3.1961761850399735, -3.6492374723496073, -3.1228709228644354, -4.85886189474819, -3.915382244962084, -4.875472201021432, -7.0, -3.033959590819456, -4.174765673953587, -3.1942367487238292, -7.0, -7.0, -7.0, -2.970114322285097, -3.8048887446223913, -3.2677972877216908, -7.0, -7.0, -7.0, -2.842765208181785, -3.0056094453602804, -7.0, -7.0, -3.6732974397596356, -7.0, -2.7498447604118503, -7.0, -7.0, -3.644055444774348, -7.0, -7.0, -7.0, -7.0, -3.6793188550209104, -7.0, -7.0, -3.268754858806963, -3.144307277987259, -3.628899564420607, -7.0, -7.0, -7.0, -3.885496915855738, -7.0, -4.199114962043649, -4.145874623311332, -7.0, -7.0, -7.0, -5.388475983084096, -7.0, -4.5356611526594435, -7.0, -7.0, -7.0, -7.0, -7.0, -4.077346099156037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.192567453336546, -4.014940349792936, -3.16761267272753, -3.9738848986568547, -3.8629322656865397, -2.621121595068182, -3.381295623003826, -7.0, -7.0, -4.33308437114365, -3.402820015912672, -3.5317343092765503, -3.8436687229791437, -3.7086474787139507, -3.3817736974197277, -7.0, -3.9645738809210544, -7.0, -2.942008053022313, -7.0, -7.0, -7.0, -7.0, -3.84665074436028, -3.99691538735805, -7.0, -2.6989700043360187, -2.2310446031358775, -3.035829825252828, -4.655863255143841, -7.0, -4.560750124434581, -3.3085999808584132, -3.9240207004740677, -7.0, -7.0, -7.0, -4.4837726704803105, -7.0, -3.1797606367964804, -7.0, -3.3431404280146, -7.0, -7.0, -3.272463769669973, -4.656313857640156, -7.0, -4.2688879044704535, -7.0, -2.7180862947830917, -3.7658494287817996, -7.0, -7.0, -2.888179493918325, -7.0, -7.0, -7.0, -3.5187332251549033, -3.4082399653118496, -3.3464647475774694, -7.0, -7.0, -2.481893986310889, -3.4342494523964753, -3.36078268987328, -7.0, -2.725614678791579, -7.0, -2.985419564562094, -3.6432552250247716, -7.0, -7.0, -4.135609636028679, -3.3760291817281805, -7.0, -7.0, -7.0, -3.496445291873353, -7.0, -3.130655349022031, -3.019324037153691, -3.5602653978627146, -7.0, -3.5464604029452773, -7.0, -7.0, -7.0, -3.387620104684051, -7.0, -7.0, -7.0, -3.3485968911765482, -2.8698182079793284, -7.0, -7.0, -7.0, -3.6554505918626528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.697403723200488, -7.0, -7.0, -3.274042330049831, -3.5514499979728753, -7.0, -4.154667377622576, -7.0, -7.0, -7.0, -3.3823773034681137, -3.3981663683672236, -3.500785172917456, -3.6239725120169965, -3.2780673308886628, -7.0, -7.0, -7.0, -7.0, -3.035029282202368, -7.0, -3.520155886944864, -7.0, -7.0, -3.5114822886260013, -3.2712454436613365, -3.0435587469147327, -7.0, -3.0097694881704116, -7.0, -7.0, -7.0, -3.198067680193197, -7.0, -7.0, -3.210853365314893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.496878418998322, -7.0, -3.470410490975931, -3.9478011971439804, -7.0, -7.0, -7.0, -3.0132586652835167, -7.0, -3.3694014136966244, -2.8452752669018024, -7.0, -7.0, -7.0, -7.0, -3.3204924754334133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.35869609957381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.816440167956139, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02511462433611, -7.0, -7.0, -7.0, -7.0, -3.4520932490177314, -7.0, -7.0, -7.0, -7.0, -3.680335513414563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5224442335063197, -7.0, -7.0, -3.7427982432584783, -7.0, -7.0, -7.0, -7.0, -3.7414142504968653, -7.0, -7.0, -7.0, -7.0, -7.0, -3.565316427085621, -3.9007493580610793, -7.0, -2.6873505695580273, -3.7727151136811594, -7.0, -7.0, -7.0, -3.06595298031387, -7.0, -3.030599721965951, -4.566337304164903, -7.0, -7.0, -7.0, -3.0362295440862943, -7.0, -2.9694159123539814, -2.8184898222042136, -7.0, -2.9249680958524342, -7.0, -3.9379408222417998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.026564690731343, -7.0, -3.1975562131535367, -3.0, -3.37797547967795, -3.481442628502305, -3.616528025161455, -3.5096728652831355, -7.0, -7.0, -7.0, -2.824125833916549, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6092284050050294, -7.0, -7.0, -7.0, -7.0, -3.752355804153501, -7.0, -7.0, -7.0, -4.5241526152390925, -2.1914510144648953, -1.098813717788014, -7.0, -7.0, -3.589335125784143, -7.0, -7.0, -7.0, -3.0028856882374884, -7.0, -7.0, -7.0, -3.3170181010481117, -7.0, -3.686799641509546, -3.5685537120494426, -4.029911104912444, -7.0, -7.0, -7.0, -2.3504633887734405, -7.0, -7.0, -7.0, -3.856275634663985, -7.0, -7.0, -7.0, -2.2993075019841833, -7.0, -7.0, -7.0, -3.052212835769748, -3.0597256597866873, -2.368100851709351, -2.9786369483844743, -1.8799555851227492, -7.0, -2.7543661168112243, -2.291939414775256, -7.0, -7.0, -3.096678327496078, -7.0, -3.146128035678238, -3.703234041729126, -3.978127235341502, -7.0, -7.0, -7.0, -4.995042570695854, -3.1936810295412816, -7.0, -2.5888317255942073, -7.0, -7.0, -3.4016589724951523, -3.507855871695831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6074550232146687, -2.0492180226701815, -4.039057018033444, -3.7487305560984945, -7.0, -3.7056926965377035, -7.0, -7.0, -7.0, -7.0, -1.800717078282385, -7.0, -3.54082981411108, -7.0, -7.0, -7.0, -3.544675631413166, -7.0, -7.0, -7.0, -2.762678563727436, -7.0, -7.0, -3.285107029566812, -2.835214806082161, -7.0, -2.4733826851602605, -3.045602357684618, -3.288696260590256, -7.0, -2.903882803805536, -7.0, -7.0, -7.0, -7.0, -2.6924062348336304, -7.0, -7.0, -2.4703293694025734, -7.0, -7.0, -7.0, -3.4391747398434687, -2.569868957768315, -2.8363241157067516, -1.5417810749690748, -2.6101276130759956, -2.3944516808262164, -2.2346859743215286, -3.2706788361447066, -7.0, -7.0, -7.0, -3.654850090561394, -3.0382226383687185, -7.0, -7.0, -7.0, -2.86844850133673, -4.346900388113341, -2.9370161074648142, -2.9063709621129483, -2.828015064223977, -2.1571839446097067, -1.5797835966168101, -7.0, -1.8011749533716115, -7.0, -7.0, -7.0, -7.0, -2.947270299690615, -4.059941888061955, -3.168202746842631, -7.0, -2.12515582958053, -7.0, -2.876217840591642, -7.0, -3.028977705208778, -7.0, -7.0, -3.225050696138049, -7.0, -4.13946977558943, -5.713177940195718, -7.0, -7.0, -7.0, -3.1958996524092336, -2.8419848045901137, -2.909556029241175, -3.375846436309156, -7.0, -3.280805928393667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.997167871445834, -3.2620850681416096, -7.0, -7.0, -7.0, -2.3531465462139796, -1.0693418020344068, -7.0, -2.807535028068853, -7.0, -7.0, -3.022840610876528, -7.0, -2.9274986816932005, -2.301897717195208, -7.0, -2.815577748324267, -3.843087365838582, -3.3602146132953523, -3.3062736131041426, -3.114610984232173, -3.867862962726285, -7.0, -7.0, -2.5069557791831683, -3.5251312252008757, -7.0, -3.6707559422151332, -3.2579184503140586, -7.0, -7.0, -7.0, -2.905256048748451, -7.0, -1.992510760388401, -3.466125870418199, -7.0, -7.0, -3.2281436075977417, -2.965201701025912, -1.5931917679251126, -7.0, -3.08278537031645, -2.825376178771401, -7.0, -2.263340126851339, -1.7306844175132254, -2.941360732240858, -7.0, -7.0, -4.291213400273596, -7.0, -7.0, -7.0, -3.0261245167454502, -2.7895337080535616, -3.0580462303952816, -7.0, -7.0, -3.076276255404218, -7.0, -4.549785784697617, -3.582744965691277, -7.0, -7.0, -7.0, -3.471438407389299, -3.3399480616943507, -7.0, -2.6027832129470583, -7.0, -7.0, -3.3677285460869766, -7.0, -3.718916686014861, -7.0, -2.8756399370041685, -3.34143452457814, -3.100370545117563, -4.557416965146272, -3.9142020722544286, -4.7962498787040815, -7.0, -2.9042420522992467, -4.417550573182442, -3.792041310712082, -7.0, -3.1522883443830563, -7.0, -3.0874264570362855, -3.197831693328903, -3.4387796033573776, -7.0, -7.0, -7.0, -7.0, -2.975891136401793, -7.0, -7.0, -3.189583881400236, -7.0, -2.7339042088550625, -7.0, -7.0, -3.752509400788843, -7.0, -7.0, -3.646893624167745, -4.714556070480403, -7.0, -3.890700397698875, -3.894016828216566, -3.5389505620143615, -3.5096504795465826, -7.0, -7.0, -4.41965841096058, -4.998721293602391, -4.282746696970947, -7.0, -4.073544231160491, -4.321639849041686, -7.0, -4.316976239321548, -7.0, -4.689372799616249, -4.27916484306227, -4.233757362965511, -7.0, -7.0, -4.6603151495574515, -7.0, -3.3873898263387296, -3.997663009732473, -4.164977077110886, -4.679227966109899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.315308959193267, -7.0, -3.9732664361085286, -3.7050228564102046, -2.302918960185348, -7.0, -7.0, -7.0, -4.28175784998152, -3.0014740966917324, -3.221805317996549, -4.1437172265617965, -3.621143221998132, -3.7281553051362044, -7.0, -4.44070447487986, -3.8356905714924254, -2.605305046141109, -7.0, -4.377051137447527, -7.0, -7.0, -3.6121831971282083, -4.056830063846329, -5.4055879471929815, -7.0, -2.6263403673750423, -7.0, -4.002262080877372, -7.0, -4.928626254003232, -3.3062105081677613, -3.9222841941001536, -7.0, -7.0, -7.0, -4.182236275432045, -3.325207689482919, -3.5207454715194824, -7.0, -3.556806691474991, -4.189392045912569, -7.0, -3.6657537463191843, -4.479891882820856, -7.0, -4.393707762272921, -7.0, -2.7110687225172314, -4.008238108813141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3927262568919367, -3.0953437318725254, -3.888937302687291, -7.0, -7.0, -2.566260674190903, -3.4234097277330933, -2.8700135281903574, -2.9542425094393248, -2.8593634953716034, -7.0, -3.1749385054686314, -3.636588183729842, -7.0, -7.0, -3.832381160247041, -3.3636119798921444, -3.6844862921887342, -7.0, -7.0, -3.093421685162235, -7.0, -7.0, -7.0, -7.0, -7.0, -3.242417184417719, -7.0, -7.0, -4.598823323746008, -3.1169256768200073, -4.488395583624388, -7.0, -7.0, -3.2483166403417796, -7.0, -7.0, -7.0, -7.0, -4.256043898702031, -7.0, -7.0, -7.0, -7.0, -7.0, -3.04766419460156, -7.0, -3.1855421548543754, -7.0, -7.0, -3.2962701975267965, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5503812467309923, -7.0, -7.0, -3.9079485216122722, -7.0, -3.3980356405224597, -3.190191580575302, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8169038393756605, -7.0, -7.0, -3.506978304246419, -3.234314768012676, -3.639586086673426, -7.0, -3.1635021317476606, -7.0, -7.0, -7.0, -3.0861224464207355, -7.0, -7.0, -7.0, -2.8674674878590514, -7.0, -4.062769949815128, -7.0, -3.1351326513767748, -3.484442207642407, -2.655228102880582, -3.0661394928706995, -3.5654050375151254, -4.248059135312142, -7.0, -7.0, -7.0, -2.998912904358786, -7.0, -7.0, -3.0828750913129275, -7.0, -7.0, -7.0, -7.0, -3.553588313493936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.345765693114488, -7.0, -7.0, -7.0, -7.0, -3.109240968588203, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6744937172963503, -7.0, -7.0, -3.5602653978627146, -7.0, -7.0, -4.200316874268984, -7.0, -7.0, -3.552911450216509, -7.0, -3.441695135640717, -7.0, -7.0, -7.0, -7.0, -3.6742179455767, -3.266936911159173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.203813153816388, -7.0, -7.0, -7.0, -7.0, -4.203522416822585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.635483746814912, -5.270508810924844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.864030243209204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0043213737826426, -7.0, -4.605730510917235, -7.0, -3.8868853589860084, -7.0, -7.0, -2.862131379313037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.445790956440055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.290034611362518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295457138072563, -3.895164618625614, -7.0, -7.0, -7.0, -7.0, -4.379178565528129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.992549099757966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.606752844325752, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.574692821415007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03462845662532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8329557506045986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.807535028068853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2288749484642025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0086001717619175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278456350394209, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4574276929464847, -7.0, -7.0, -7.0, -7.0, -5.828197648925988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9454685851318194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.574085116904895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8964573201336714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9770831203158528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.65628990119136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.346876941674333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.284881714655453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7948294923299635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.093327110744394, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4085791254086675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.346663911865268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2420442393695508, -7.0, -3.0927206446840994, -3.7740409138827307, -7.0, -7.0, -2.976808337338066, -3.3591305026927025, -3.743326810350656, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4417344009978166, -3.904715545278681, -7.0, -3.69539410829111, -3.425833381920453, -2.4718781993072905, -2.1222158782728267, -7.0, -2.3774883833761327, -7.0, -7.0, -3.788498328434222, -7.0, -7.0, -7.0, -3.0644579892269186, -3.3666097103924297, -3.002166061756508, -7.0, -7.0, -2.8120773708565143, -7.0, -4.142326883154263, -2.9740509027928774, -7.0, -3.393399695293102, -3.2060158767633444, -3.3709754493589705, -7.0, -7.0, -7.0, -2.9156636035057732, -3.3170181010481117, -3.2969860580130335, -2.586727921309507, -3.92147838037569, -3.514547752660286, -7.0, -7.0, -2.5323296410790315, -3.1489109931093564, -7.0, -3.1763806922432702, -7.0, -7.0, -3.0011926706536842, -3.5011353674456522, -7.0, -7.0, -7.0, -7.0, -3.4567454953479446, -3.06126394230025, -7.0, -7.0, -3.9502869470332103, -7.0, -3.111766433052562, -7.0, -7.0, -3.4171948079647763, -7.0, -7.0, -7.0, -3.490941205356787, -3.1222158782728267, -2.7565093254448008, -7.0, -2.7287594751678745, -7.0, -3.7839316401571788, -3.5770319856260313, -7.0, -2.9222062774390163, -7.0, -7.0, -7.0, -7.0, -3.0159881053841304, -7.0, -3.8584770418133405, -2.8382192219076257, -7.0, -7.0, -3.686948920211501, -7.0, -2.732715340349993, -7.0, -3.1843127956742574, -3.128093977651733, -7.0, -7.0, -3.2116544005531824, -7.0, -3.5453071164658243, -7.0, -7.0, -2.916980047320382, -2.9798896670453554, -3.6636067081245205, -7.0, -3.8814702517152186, -4.279758172802473, -7.0, -7.0, -3.1085650237328344, -4.2171679787711565, -2.7353327063206136, -3.191311257590993, -7.0, -7.0, -7.0, -3.22696488563729, -3.517591730711908, -7.0, -7.0, -4.37390459247497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4647279415565504, -7.0, -7.0, -7.0, -2.597146487833695, -7.0, -3.230704313612569, -7.0, -3.1470576710283598, -7.0, -7.0, -7.0, -3.1650216300353597, -7.0, -7.0, -7.0, -7.0, -2.949390006644913, -7.0, -7.0, -3.148294097434746, -2.953115098691848, -3.335858911319818, -2.894426837964188, -3.3047058982127653, -3.0780941504064105, -3.8399422770510556, -7.0, -7.0, -7.0, -2.8397921844453293, -3.0253058652647704, -7.0, -7.0, -3.160568564398739, -7.0, -4.287644997457547, -7.0, -3.143561229978976, -3.229733792684291, -7.0, -7.0, -3.619719265611727, -2.958802703399502, -7.0, -2.9858753573083936, -7.0, -7.0, -2.9867717342662448, -2.96208508051736, -3.066325925362038, -7.0, -7.0, -3.966376423088923, -7.0, -7.0, -7.0, -3.6088111908309735, -7.0, -7.0, -7.0, -2.9883359558560505, -7.0, -2.7748817658187965, -7.0, -7.0, -7.0, -2.392217158165493, -4.362388216588698, -3.8719230318823734, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0576661039098294, -7.0, -7.0, -3.6270584640009895, -2.7701152947871015, -3.840670561333409, -4.935079646454493, -7.0, -2.7367947549243605, -7.0, -7.0, -7.0, -7.0, -2.785863475645474, -7.0, -3.2971036501492565, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9375178920173464, -3.3142886609474975, -3.7679223192109474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.709948016510761, -3.339053735709139, -7.0, -3.8361341494653747, -7.0, -7.0, -7.0, -3.1170640446463893, -7.0, -3.838974954955468, -2.6599162000698504, -4.412628520544375, -7.0, -7.0, -7.0, -3.306253420522117, -7.0, -3.3729120029701067, -2.534660575828444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8739015978644615, -7.0, -7.0, -2.944975908412048, -2.696356388733332, -7.0, -7.0, -7.0, -2.7666606613741322, -7.0, -3.4824447919182653, -3.2814878879400813, -4.178618882272053, -3.307282047033346, -7.0, -3.815622016657408, -7.0, -7.0, -3.143118935126169, -7.0, -7.0, -3.544811911757776, -7.0, -7.0, -3.261381837285746, -3.4164740791002206, -4.38141680215756, -3.1885910365939902, -7.0, -7.0, -7.0, -7.0, -2.8020892578817325, -7.0, -2.805160901599434, -3.1577588860468637, -7.0, -3.3811150807098507, -7.0, -3.423737249982329, -7.0, -2.8962505624616384, -7.0, -7.0, -4.5578559410728055, -7.0, -4.72934300831835, -7.0, -3.1136760118971, -3.815693943076172, -2.45178643552429, -7.0, -7.0, -2.977266212427293, -3.5735677730392186, -2.8499650956427165, -2.664798619194218, -2.4763968267253302, -7.0, -7.0, -7.0, -7.0, -3.1095785469043866, -3.137986732723532, -3.1963604423536847, -3.0338256939533106, -2.636108220873542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.077476919504343, -7.0, -7.0, -4.1038208188273355, -3.9902056151848067, -7.0, -7.0, -4.119198133511922, -4.999039147060988, -3.9824973691977124, -3.857975419541879, -4.67632773388132, -4.225097252907976, -7.0, -7.0, -7.0, -4.786415991756133, -7.0, -4.535737051730224, -7.0, -7.0, -4.661007690901031, -7.0, -7.0, -7.0, -4.167140035508358, -4.679891018182745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.371935583802963, -4.067119232342068, -3.4248272103534214, -7.0, -7.0, -7.0, -4.391096487376276, -3.4030776045809015, -7.0, -7.0, -4.060952677550257, -3.6038207385595746, -7.0, -4.441852175773292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9928405962889184, -4.4883448008271, -5.104616833998747, -7.0, -2.8674674878590514, -7.0, -4.655892030978066, -7.0, -5.104845461232334, -3.610056557041494, -7.0, -7.0, -4.026839573092644, -7.0, -4.182756931040399, -7.0, -7.0, -7.0, -4.054695113032692, -7.0, -7.0, -3.7987887139512493, -4.656342603634468, -7.0, -4.503002286443708, -7.0, -7.0, -3.9120838257658943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.871149525585623, -7.0, -3.492872090283087, -7.0, -7.0, -4.3481490343841624, -7.0, -3.060508975605298, -7.0, -7.0, -7.0, -4.3221089837143, -3.342620042553348, -7.0, -7.0, -4.135800283302111, -7.0, -3.2135177569963047, -7.0, -7.0, -7.0, -7.0, -7.0, -3.020568434801363, -3.2597133053907306, -7.0, -4.023992804606471, -7.0, -7.0, -4.599621106961551, -4.192421084256289, -7.0, -7.0, -3.0073209529227447, -3.2518814545525276, -7.0, -7.0, -7.0, -3.2814878879400813, -3.5586365820562924, -7.0, -7.0, -3.431524584187451, -3.2730012720637376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.998782269831736, -3.725476030972769, -7.0, -3.274734984872738, -3.0745726604075623, -7.0, -7.0, -7.0, -7.0, -3.91184979649942, -7.0, -3.5215791047702303, -3.5016069224188295, -3.6245914591268478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3872118003137306, -3.344326764297868, -7.0, -7.0, -3.8130469651601078, -3.457104414338873, -7.0, -3.414137362184477, -4.311732675442349, -3.0272136570828017, -3.75815462196739, -7.0, -4.043872912391425, -7.0, -7.0, -7.0, -7.0, -7.0, -4.365207100231824, -7.0, -3.1577588860468637, -7.0, -7.0, -7.0, -7.0, -3.9478746548976984, -3.6873505695580273, -3.4879863311293935, -7.0, -3.315970345456918, -7.0, -3.6711728427150834, -3.6919651027673606, -7.0, -7.0, -7.0, -7.0, -3.797994219946912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8819549713396007, -7.0, -7.0, -7.0, -7.0, -3.1332194567324945, -7.0, -7.0, -7.0, -3.640481436970422, -7.0, -7.0, -7.0, -7.0, -7.0, -3.076276255404218, -7.0, -3.9002305365868106, -3.129689892199301, -3.1179338350396413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2837533833325265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3730040047672736, -3.0655797147284485, -3.4407517004791854, -3.6748611407378116, -7.0, -3.1856930439264346, -7.0, -7.0, -7.0, -7.0, -2.8458461788416503, -3.732393759822968, -3.226857570288723, -7.0, -7.0, -7.0, -3.2991215945305745, -3.4697484005051664, -7.0, -7.0, -3.3587894341625666, -7.0, -3.68556261115823, -7.0, -3.7907776013376937, -7.0, -3.6919651027673606, -2.871292205822265, -3.721315880605899, -7.0, -3.66838591669, -7.0, -7.0, -3.6793370305207937, -7.0, -7.0, -3.804480189105993, -7.0, -3.0563681280368664, -3.6735737964230517, -7.0, -7.0, -7.0, -3.92813970687512, -7.0, -7.0, -3.561280314290289, -7.0, -7.0, -3.14395622736422, -7.0, -3.7824009524965296, -3.712397131406715, -7.0, -3.4098486220211917, -2.990211960854806, -7.0, -7.0, -7.0, -7.0, -3.7064617376313547, -3.192177026112752, -3.2538089895192175, -7.0, -7.0, -7.0, -7.0, -7.0, -2.429074712716486, -7.0, -7.0, -4.138492167149976, -7.0, -7.0, -7.0, -7.0, -3.7640266076920375, -7.0, -7.0, -7.0, -3.359645792674543, -7.0, -3.2554534234487273, -3.403120521175818, -3.7724684030532805, -7.0, -3.5329266541701796, -3.877946951629188, -3.4639526817194084, -7.0, -7.0, -7.0, -7.0, -7.0, -3.598133645813238, -7.0, -3.3569814009931314, -3.712144414214886, -7.0, -7.0, -3.528177256557267, -7.0, -7.0, -3.7466341989375787, -7.0, -3.446614823664267, -3.399673721481038, -3.379939722801916, -3.732554579851432, -7.0, -2.7267733279783406, -7.0, -7.0, -7.0, -3.579612130740304, -3.446070935701005, -7.0, -3.5003508441102396, -3.0764048273147346, -7.0, -3.439845647895687, -7.0, -3.3210190017020293, -7.0, -3.837777769553733, -7.0, -3.1899579507445543, -7.0, -3.2042104512495033, -3.8492350913147226, -7.0, -7.0, -3.1823829463216065, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8688207061975177, -2.828291538174048, -3.962795369857233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.431001701210211, -7.0, -7.0, -7.0, -4.11293997608408, -7.0, -7.0, -3.7785130117389247, -7.0, -7.0, -7.0, -1.4888870747064173, -7.0, -3.8109713998222077, -7.0, -7.0, -7.0, -7.0, -3.2225425612955334, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2852759390712047, -7.0, -3.015685679988791, -3.436692597664054, -7.0, -7.0, -7.0, -7.0, -3.8095597146352675, -7.0, -2.9951962915971793, -2.889941665019464, -2.978180516937414, -7.0, -7.0, -3.9404168646816653, -7.0, -3.1143106768684246, -2.9370161074648142, -7.0, -7.0, -1.7969056392619156, -7.0, -2.1221485231691317, -2.999739345106568, -2.579402469359438, -3.382197210377454, -2.6149850498855733, -1.8339981365637825, -1.93980039487275, -7.0, -3.8134475442648212, -3.826123415033982, -2.9699592171113403, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6916118742144164, -3.6654871807828107, -3.6994908452722046, -3.3096301674258988, -3.5969817431335205, -3.0414913772349825, -2.818005830532529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3165993020938607, -3.7622282842864743, -7.0, -7.0, -7.0, -7.0, -3.6786094165589263, -7.0, -7.0, -7.0, -3.198434290393791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.709948016510761, -7.0, -7.0, -7.0, -4.026574118150334, -7.0, -7.0, -7.0, -3.351901671294104, -7.0, -3.8048433685402374, -7.0, -3.4217292462999036, -7.0, -7.0, -7.0, -2.6225907694500417, -3.981637424655769, -3.3427515672308834, -3.4904267214991997, -7.0, -7.0, -3.707655323531187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2845811128217504, -7.0, -7.0, -3.7981324972646138, -2.83290789709985, -2.8779469516291885, -3.1522883443830563, -3.8894386626800617, -3.2298646031173694, -7.0, -1.7657760571950565, -2.885926339801431, -7.0, -3.1216145515607425, -3.1736960465161355, -3.2141813086638207, -3.3847714356717837, -4.008216801589691, -7.0, -3.2684024402609575, -7.0, -3.9736114170892827, -3.4584489842773354, -7.0, -7.0, -7.0, -7.0, -3.437750562820388, -7.0, -7.0, -7.0, -7.0, -3.7909181952145783, -7.0, -3.355834495884936, -3.70816585785554, -3.728434950974255, -3.1371958119405483, -7.0, -3.5797607384109624, -4.454433228116589, -3.7635719665401894, -7.0, -3.534618306668656, -2.28735700871944, -3.2232362731029975, -7.0, -3.721563318357481, -7.0, -3.2738111993994035, -2.6830041301242167, -3.4931326148751247, -3.7912694809102683, -7.0, -7.0, -3.817631467190515, -7.0, -7.0, -7.0, -3.9290611240847655, -7.0, -3.2125749782567365, -7.0, -7.0, -3.9389498039219983, -4.800833882291923, -7.0, -7.0, -7.0, -4.141136090120739, -4.065280871102755, -4.031630604606654, -3.999853400872363, -7.0, -7.0, -3.6057000062196667, -7.0, -4.413077529551733, -4.023190707213023, -7.0, -7.0, -3.9017108887365266, -7.0, -4.089781514122957, -7.0, -4.918007607412871, -7.0, -4.27997476431969, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325864436615347, -4.2664198658791035, -7.0, -7.0, -3.992398858487621, -7.0, -3.731696184054935, -7.0, -7.0, -4.286905352972375, -4.6550038979849875, -3.720242018287057, -4.706461737631355, -4.302817775635442, -7.0, -7.0, -3.7053675809749085, -7.0, -3.713994267660644, -4.142983554922818, -3.010421115653543, -2.590294044407944, -3.9022749204745018, -3.224064991755207, -3.7541953881898387, -7.0, -3.5519783121038806, -7.0, -7.0, -4.140994858693246, -7.0, -7.0, -4.310264115074859, -3.79455496328573, -3.903603711265901, -3.679609571779756, -3.1729433064580195, -3.084576277934331, -3.9745807690805917, -7.0, -5.111235621527294, -3.6019242530921636, -4.012204296030743, -7.0, -3.9216344610537055, -4.0159322888519835, -3.2083741645947104, -7.0, -3.611340875583321, -7.0, -2.9648512800439804, -4.5413545507544155, -3.7102020146553847, -3.883973560827824, -3.975013397518679, -7.0, -2.9890410933670744, -7.0, -3.4243370666764497, -3.5031386548731835, -4.075711159354416, -7.0, -7.0, -7.0, -3.364550995353972, -7.0, -3.923049630943971, -3.5009222391903005, -3.6841718627005906, -7.0, -7.0, -2.8964928140759403, -7.0, -3.482373285458582, -3.67641923171836, -3.9844372947960762, -3.6635124704151556, -2.793764282125484, -3.1339644786952103, -7.0, -3.792881745385397, -7.0, -3.3119656603683665, -3.2392994791268923, -7.0, -7.0, -7.0, -7.0, -3.7102020146553847, -3.4676820847136822, -7.0, -7.0, -3.3781555491104296, -3.060320028688285, -7.0, -3.0046812200872597, -4.067057323249598, -4.338609200287477, -7.0, -3.834357112718405, -3.803115554890027, -7.0, -2.939581646768845, -7.0, -3.754806855354423, -2.924060492895014, -3.659345635746177, -3.195161370069258, -7.0, -3.751971574736327, -3.3453737305590887, -7.0, -3.0635585181109812, -3.7307822756663893, -7.0, -3.773640193260026, -4.138176339573041, -3.1804787808061468, -2.659250468772661, -3.2750232653226883, -3.8656960599160706, -7.0, -4.256669648687233, -7.0, -3.371437317404101, -3.7757924276787924, -2.945890435074559, -3.015917053277, -7.0, -3.9023836844324715, -7.0, -7.0, -7.0, -7.0, -3.0959099852263767, -7.0, -2.88923164935963, -3.5400373437681525, -3.2668586105221804, -7.0, -3.2332500095411003, -3.5906282374313663, -2.6820919614123637, -7.0, -2.6428241099806553, -2.3774569867029287, -3.6767850304192056, -3.4371160930480786, -3.3258966620220436, -3.937166703715033, -3.744840396785379, -7.0, -7.0, -7.0, -7.0, -3.841171694499532, -7.0, -3.838723190031372, -4.101495036729082, -7.0, -4.268531170386822, -3.4796970961954656, -3.4592919449918176, -3.358315640082196, -7.0, -2.98781517440207, -7.0, -3.325207689482919, -2.984177136353868, -7.0, -7.0, -7.0, -3.426267207139606, -3.0985383930592922, -3.2349388877414125, -3.6869935662646784, -7.0, -7.0, -3.1893967258352185, -3.059089865916824, -2.8928363526263907, -7.0, -2.914116391219987, -3.3053513694466234, -7.0, -3.7013088852280753, -7.0, -7.0, -3.409172018991404, -3.6959192528313998, -7.0, -7.0, -3.750354088762708, -3.214667269683036, -3.0293330393847953, -7.0, -7.0, -7.0, -7.0, -7.0, -3.852016173286643, -7.0, -7.0, -3.2679340087937794, -2.8742240379133537, -3.8203328448994096, -7.0, -3.3697722885969625, -3.8003733548913496, -7.0, -3.455656815340888, -3.7555699806288, -7.0, -7.0, -3.273926780100526, -7.0, -7.0, -7.0, -7.0, -7.0, -2.932980821923198, -7.0, -7.0, -3.057809027363004, -3.8016780590358934, -7.0, -7.0, -7.0, -3.199805024539831, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2466689926017556, -7.0, -7.0, -3.461348433647983, -3.0358925961617778, -7.0, -3.2794387882870204, -7.0, -1.8858023520977822, -3.1020905255118367, -7.0, -4.270568210861315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.507025083337453, -7.0, -2.9324737646771535, -7.0, -3.491483092526961, -3.248218561190075, -7.0, -7.0, -7.0, -3.7427251313046983, -7.0, -7.0, -7.0, -2.61419390497756, -3.462996612028056, -2.7670020593629587, -2.3606156856482254, -2.4029774493636515, -3.265112759850687, -7.0, -2.863719295092669, -2.2870175013221017, -3.3498600821923312, -7.0, -7.0, -7.0, -7.0, -3.6853834098014873, -3.2371295890244625, -2.9407654356312176, -2.919601023784111, -3.2638726768652235, -7.0, -3.3392526340327, -7.0, -3.2340108175871793, -3.282848602834645, -3.6518431337680632, -3.2271150825891253, -2.5774917998372255, -7.0, -7.0, -3.238798562713917, -3.2052043639481447, -7.0, -7.0, -2.17341042040791, -3.0318122713303706, -2.450864692379766, -3.667359546183087, -2.2935835134961167, -7.0, -3.4926994489574796, -3.1857309785451338, -3.587748370340144, -7.0, -7.0, -3.5800121125294244, -3.467608105583633, -7.0, -3.697665162647674, -7.0, -4.183810595098135, -7.0, -7.0, -3.1992064791616577, -1.8954815918354517, -2.912487761332324, -3.2476050641507705, -3.4207806195485655, -2.223771668052953, -2.0906107078284064, -7.0, -7.0, -2.9125762934867234, -7.0, -3.4047140126688986, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8842287696326037, -3.250907699700856, -4.763165840200662, -7.0, -7.0, -7.0, -4.220792129711578, -2.3884564527002667, -3.5952757118020995, -2.035301973197531, -7.0, -7.0, -3.3694632481783837, -3.615107987443194, -7.0, -2.7283537820212285, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1997551772534747, -4.073461729279835, -3.8135142715418833, -3.8868571827455662, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6232492903979003, -7.0, -3.5938396610812715, -7.0, -7.0, -7.0, -3.0638416171528697, -3.20682587603185, -7.0, -7.0, -2.7218106152125467, -7.0, -3.424881636631067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4006953610117394, -2.8086610190597323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5786392099680726, -7.0, -4.305824106052693, -7.0, -7.0, -2.171764294452083, -3.3571722577230334, -2.728501350653944, -2.1485145179246334, -2.9454685851318194, -3.0670708560453703, -7.0, -3.4769764657595275, -2.7948364578145615, -3.442636525782232, -2.114676064138173, -1.873722912619438, -3.761401557498631, -7.0, -3.526339277389844, -7.0, -3.6650553925144296, -7.0, -3.813547631336185, -7.0, -3.5358002908248976, -7.0, -3.4437322414015967, -7.0, -7.0, -3.52329112918679, -3.2271150825891253, -7.0, -2.7052526322873587, -7.0, -7.0, -7.0, -3.197831693328903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.968716377466786, -3.394626764272209, -3.8659030992071726, -4.537820773502811, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9599948383284165, -7.0, -7.0, -2.760874638052189, -4.103070321712875, -7.0, -7.0, -7.0, -7.0, -3.3378584290410944, -3.022840610876528, -7.0, -3.339053735709139, -7.0, -7.0, -3.856910060300786, -2.7703987953402223, -3.465977368285823, -7.0, -7.0, -3.5602853209988012, -3.5043349118024643, -3.3175102892089123, -3.3432115901797474, -4.720580984690612, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6481902486483087, -2.8007857903277626, -3.6047119317276204, -3.433769833924866, -7.0, -2.9304395947667, -3.1095785469043866, -2.3691066696077066, -3.281601443825655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.519302849235429, -2.70288382370294, -3.400365273349939, -7.0, -3.4379090355394983, -3.364334724324249, -3.650744512417744, -3.2425414282983844, -7.0, -7.0, -2.5713205488307422, -3.6993173010213822, -3.4811558708280352, -3.2286997099406283, -3.15946692901018, -7.0, -7.0, -7.0, -3.2350231594952237, -4.27279597919482, -2.6293076400737485, -7.0, -7.0, -7.0, -3.356790460351716, -2.6415567309708003, -7.0, -7.0, -2.722516402716588, -7.0, -2.5533435303236858, -3.2880255353883627, -2.942008053022313, -3.3348556896172914, -3.381295623003826, -2.6807474402991907, -7.0, -4.0186826701196, -3.0638789979485685, -4.398810619711163, -7.0, -2.5009401142109953, -4.324360662427652, -2.9471272548064458, -7.0, -2.762678563727436, -7.0, -2.5117879011517172, -3.5571461423183632, -2.8047526021504603, -3.0327530302850567, -7.0, -7.0, -2.515633037228158, -7.0, -7.0, -7.0, -3.4429498695778618, -7.0, -2.2463255418458528, -7.0, -7.0, -4.130355214606559, -4.780115602859192, -7.0, -7.0, -4.421003066384153, -3.79118168612114, -7.0, -3.398515067967853, -4.187712444905493, -4.025551622782544, -7.0, -7.0, -4.728093939379775, -4.400546623391249, -7.0, -7.0, -4.6838482118410445, -4.9283753661847784, -7.0, -7.0, -7.0, -5.0889224243582145, -7.0, -7.0, -4.141543834220653, -7.0, -4.191637287031295, -7.0, -7.0, -4.180297952488594, -7.0, -7.0, -7.0, -4.222976449893391, -7.0, -4.12165831249807, -7.0, -4.469527479187014, -7.0, -4.32468363214722, -7.0, -4.2034046174735815, -3.1946512225101293, -2.713045594527829, -7.0, -7.0, -7.0, -3.5056498329258434, -3.7384634394619525, -7.0, -7.0, -3.4625617634285892, -3.36802996095516, -7.0, -3.375160455307423, -7.0, -7.0, -7.0, -4.393188992055249, -7.0, -7.0, -3.0562913790574244, -3.440007581697311, -4.862280493299705, -7.0, -2.9992755720056676, -3.2835273648616936, -3.9608036249117697, -7.0, -3.7258895224423694, -3.814713612695977, -3.945099129999455, -7.0, -4.344510165686533, -4.14888016912823, -3.3924507246560327, -3.232911444346091, -3.46451438626162, -7.0, -3.3725329665551333, -3.599651131814264, -7.0, -3.115948067174583, -4.183136924486553, -7.0, -3.9517026778225817, -7.0, -7.0, -2.798964374045131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.184180195347259, -3.5308397786165204, -3.037771671331138, -7.0, -7.0, -3.6648863149590496, -7.0, -7.0, -7.0, -3.826269219393726, -7.0, -3.8048138715442734, -3.417554724363455, -7.0, -7.0, -4.161368002234974, -7.0, -3.2813364338908033, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4665710723863543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5667320289862197, -4.193653224907199, -7.0, -7.0, -3.2111650546063077, -7.0, -2.7589118923979736, -7.0, -7.0, -3.4988616889928843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.45499721730946, -7.0, -7.0, -3.174786417367337, -2.991266360881699, -7.0, -7.0, -3.184880624670255, -3.1654421823847256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2883833843997747, -2.9996741569321426, -7.0, -3.436480695009495, -7.0, -7.0, -7.0, -7.0, -7.0, -3.514282047860378, -2.792391689498254, -7.0, -7.0, -2.659262365784863, -2.7710906787017704, -3.420038306133178, -7.0, -3.8517474191332637, -7.0, -7.0, -7.0, -3.4729757345942285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3554515201265174, -7.0, -4.066363202258494, -3.509605704611556, -7.0, -4.082869110489787, -7.0, -3.114054695592129, -7.0, -7.0, -7.0, -3.4406729882937586, -3.1570788249532042, -7.0, -7.0, -7.0, -7.0, -3.4597442042559603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1927068066128585, -7.0, -7.0, -7.0, -7.0, -3.3400473176613934, -7.0, -2.949145952419944, -3.4412236742426123, -3.84326393153455, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3055663135153037, -7.0, -4.036376015529204, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2271150825891253, -7.0, -7.0, -7.0, -7.0, -3.4394905903896835, -7.0, -7.0, -7.0, -7.0, -7.0, -3.762753564933374, -3.4739976044348633, -3.5475901217701526, -2.394970241463233, -3.7756832490260437, -7.0, -3.8763595721890662, -1.759048659216874, -7.0, -3.473924693416157, -2.341132428405558, -2.2330773742707466, -3.3445232628225545, -7.0, -7.0, -7.0, -2.918778991481398, -2.544776518376729, -3.814180981040187, -7.0, -2.2781817845675176, -2.9466650639704843, -3.511749711344983, -3.7841892053809607, -3.760271660542063, -3.392638340062748, -3.5257572431523108, -7.0, -3.782274119790817, -7.0, -3.7695250201710504, -7.0, -3.7902851640332416, -7.0, -7.0, -3.9233994661587164, -3.7630534402996147, -3.58029758843657, -2.3205759970450925, -3.0139339361755866, -7.0, -3.793580867368156, -1.8449787119514363, -3.8206611346435957, -2.8399715893768915, -7.0, -3.2097160302749415, -3.3281246609706576, -2.977527638759884, -2.485906508300662, -2.7644184954986453, -3.909181475977853, -2.4235080103454925, -3.020511948557945, -3.7909181952145783, -3.3272226637602036, -3.305673745669693, -7.0, -3.812846536967071, -7.0, -3.7702627381705933, -3.4997557946637814, -3.4782297026479974, -3.145027982018139, -7.0, -7.0, -3.417803722639881, -7.0, -3.127226318996642, -3.983265352566545, -7.0, -2.623412528318222, -2.4131862807290165, -7.0, -3.1813289870897337, -7.0, -7.0, -3.066969349796947, -2.58782907611072, -7.0, -7.0, -7.0, -3.80174661921946, -3.9265996539070276, -2.71393503626257, -7.0, -7.0, -2.437204435651293, -2.863521122841043, -2.6283613110810564, -3.2894402979178685, -7.0, -3.4248272103534214, -3.152777414797245, -3.1100844228869238, -3.1165128680770238, -7.0, -2.288885772881598, -7.0, -7.0, -7.0, -3.1679373127005777, -7.0, -2.6068337552368273, -2.9876662649262746, -2.8049114308857184, -2.7740400301845156, -3.4952667443878105, -3.780677274433368, -3.520876381688342, -3.5299434016586693, -3.8690262615868187, -7.0, -7.0, -3.8745977687032, -3.946206553842783, -3.079407382205769, -3.8117760216029035, -3.1294105824083522, -2.415353770432938, -7.0, -7.0, -7.0, -4.01674092728626, -3.822494985278751, -3.3071214846498904, -2.9709509343454243, -7.0, -2.334800271940003, -2.845080805764293, -2.19786346826144, -7.0, -3.762678563727436, -2.9940894992168676, -3.7553411838115474, -7.0, -3.761551988564182, -2.92450080837319, -7.0, -3.602548297999073, -4.028977705208778, -2.7856412050628534, -2.6247546453952175, -2.321045804996277, -3.6334011178816605, -7.0, -7.0, -7.0, -3.9218684769454404, -2.9333064749555056, -7.0, -3.7817553746524686, -3.8033888249836134, -3.260808325447157, -7.0, -7.0, -3.013980184732713, -3.5328817194073974, -7.0, -1.835984598685146, -7.0, -3.8935398435646613, -3.8868853589860084, -7.0, -4.109578546904387, -7.0, -7.0, -2.6195243246375224, -7.0, -7.0, -7.0, -7.0, -7.0, -3.778585327862962, -7.0, -2.9598678330688757, -2.7816835845073506, -3.4329158688333883, -7.0, -3.2460469818232247, -2.9972583039329788, -3.2075670505660874, -3.7026889681591335, -3.263304600287296, -3.533327117054424, -3.10698371567979, -3.841859809775061, -3.8561244442423, -7.0, -7.0, -2.8049114308857184, -7.0, -2.8507337328124356, -7.0, -3.199541877030045, -3.86350130064145, -1.9570631956962383, -3.7743709598499167, -3.3901778366727955, -3.7601207852645677, -2.8662085483579443, -3.0957271225559797, -7.0, -3.782472624166286, -3.7926017811649664, -7.0, -7.0, -7.0, -3.8889653443003374, -7.0, -3.618117857290815, -7.0, -7.0, -3.782830805202592, -7.0, -7.0, -7.0, -7.0, -7.0, -3.828788748184953, -3.3588386859986983, -3.161275834475312, -3.5469234711723647, -7.0, -7.0, -3.7942091163464964, -2.8677293082027178, -7.0, -3.770483809431108, -3.3953263930693507, -2.6403571930897565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2865359932977283, -7.0, -7.0, -7.0, -7.0, -3.8033205235787544, -7.0, -7.0, -7.0, -7.0, -3.856910060300786, -7.0, -3.0736816994762832, -3.8515640822634887, -7.0, -7.0, -3.113140836867081, -1.9780242591477941, -1.3976434607042825, -7.0, -4.05479684401452, -2.8107028609471167, -2.823329295252085, -3.304418713886279, -3.5778650407463743, -2.5849770155376826, -2.329989509639039, -3.067112203642098, -3.485224400125799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.479791180189492, -7.0, -7.0, -3.243719975783927, -7.0, -3.029557692583844, -3.361507485824534, -7.0, -3.9056340013269546, -3.061452479087193, -3.55734676803538, -2.452586364189867, -7.0, -3.312000950213744, -7.0, -3.8080082999104, -3.2637307273683223, -3.556724526395461, -3.45763971382968, -3.9302356527662847, -7.0, -7.0, -3.9376683143990054, -3.103176333716908, -3.4353095378288203, -3.0629919861296586, -3.760497875226527, -7.0, -7.0, -3.0409581733842073, -3.674769314015426, -7.0, -7.0, -3.8969669019331548, -7.0, -3.5689640044577606, -2.9409431702282975, -2.710963118995276, -7.0, -3.818687663441514, -7.0, -3.50112775752298, -2.973285586310765, -2.304275050477128, -3.302755655340937, -7.0, -4.061226225119115, -3.5776185595103214, -3.3529539117100877, -7.0, -3.8131137540078983, -7.0, -3.4649860542696933, -3.57951684265999, -3.0695036537131513, -7.0, -7.0, -7.0, -2.7772036781419343, -7.0, -7.0, -7.0, -3.9880682033926353, -7.0, -2.9357415383958827, -7.0, -7.0, -3.951133439889513, -4.508199664444567, -7.0, -3.978545700462739, -4.454143327174591, -3.5066853872587527, -7.0, -3.303215699422342, -2.5493098589194982, -3.470675044798936, -7.0, -4.405653656099307, -3.9825651870905556, -4.543177863009376, -3.257178408417606, -7.0, -4.1178014079973275, -3.7450113221483106, -7.0, -3.508815787764874, -7.0, -4.552172639639922, -4.382035062718931, -3.1964193881874445, -2.954145988829548, -7.0, -4.228921951650121, -3.7125444818854723, -7.0, -2.837003810313908, -3.8173449714419307, -3.400587324218979, -7.0, -7.0, -7.0, -7.0, -7.0, -3.184162110347251, -4.313782883155197, -2.4032525456431375, -7.0, -3.225025663553466, -4.38643832060867, -3.511448849204857, -2.4211590897092523, -2.855748283000016, -2.575014554582114, -2.844317521748743, -3.5777502315508336, -7.0, -4.2165353574183575, -2.8686848113835097, -3.1815087582709314, -7.0, -3.0219891049716843, -2.505919581839303, -7.0, -2.737873889090549, -3.8588829315609967, -7.0, -7.0, -3.7839077810179074, -2.9191504502067827, -4.40987397414063, -7.0, -7.0, -7.0, -3.6791143282160643, -7.0, -3.4897844322789955, -3.759239633293262, -4.338615838490599, -7.0, -7.0, -4.032846994195768, -4.217075778865637, -3.9691362335967124, -2.6528504508265676, -3.590395947184013, -3.2447048118717836, -2.9993722322513157, -7.0, -3.070706396887966, -3.8666916741838224, -3.17167770855167, -4.35774241954003, -7.0, -3.486949715838293, -3.661216185615503, -3.9215650987885304, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4039905604956546, -3.2770358881721102, -2.3003908572382463, -7.0, -7.0, -2.943877294761792, -2.845886949371798, -3.863976783904387, -7.0, -2.956728552408984, -3.766710207262259, -3.790975697775765, -3.070037866607755, -3.4960296990359896, -7.0, -3.794185864065302, -3.8688207061975177, -3.150844122978294, -7.0, -7.0, -3.7516254773755455, -7.0, -3.803934849863842, -7.0, -3.237594000799247, -7.0, -3.1505610819947703, -7.0, -7.0, -3.2704847380490047, -3.379929663285281, -3.461870273308123, -7.0, -7.0, -2.7814119230869983, -7.0, -3.4370631787035837, -7.0, -7.0, -2.2588006605991375, -7.0, -7.0, -7.0, -3.8379039445929424, -3.402089350572097, -7.0, -3.5459253293558426, -3.519434194913703, -3.7985125330313516, -3.3783979009481375, -2.408824558860751, -7.0, -7.0, -3.0395628247012687, -3.6321534835106326, -7.0, -2.456366033129043, -7.0, -7.0, -7.0, -3.3935167084911435, -2.738991077258886, -3.310587114890355, -3.362529596161941, -3.8396665568824333, -7.0, -4.091702121717148, -7.0, -7.0, -7.0, -3.269688027663909, -2.684134415450565, -3.831613855309099, -7.0, -2.9463010745913882, -2.345013359928831, -3.2758179278775392, -3.579954994822772, -3.202062396148503, -7.0, -7.0, -3.826722520168992, -2.8068580295188172, -3.0914471173065543, -7.0, -7.0, -3.7649229846498886, -7.0, -4.1491112956784875, -7.0, -3.1099158630237933, -3.60916737430202, -2.345681730913762, -3.5689054149828787, -3.0917548625614546, -3.7041290590724634, -7.0, -3.1290450598879582, -7.0, -3.850033257689769, -7.0, -3.5094713521025485, -2.996161293368007, -4.006337660374551, -7.0, -3.248157250470427, -2.7023642471251033, -3.1775364999298623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.439445482944493, -7.0, -7.0, -7.0, -7.0, -7.0, -3.48365860383744, -7.0, -7.0, -3.8890214220952246, -7.0, -4.258254053507148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.088750166273466, -3.8033205235787544, -3.8008544915035607, -3.9372670722114127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5085297189712863, -7.0, -3.860278099752235, -3.8101652845431495, -2.347850206404031, -2.6270794892290175, -3.7405995128111567, -7.0, -3.3322364154914434, -2.9702053364856873, -2.9459016787990913, -7.0, -7.0, -7.0, -3.806586934327803, -3.3227015762736576, -2.297316366077287, -3.830299898378829, -7.0, -2.291000037081086, -2.724524387649076, -3.1451964061141817, -3.3406423775607053, -7.0, -2.6657464890759366, -3.1582418379808734, -3.2203042611135873, -3.451605533164384, -3.1451964061141817, -3.804480189105993, -3.80543288813214, -2.4988354603129688, -3.592565338155902, -3.336059277866349, -2.5657494618659626, -3.7985125330313516, -3.209300495159705, -2.9747090245764993, -3.224258948591907, -3.1097135047929503, -7.0, -3.6007006960652372, -7.0, -2.8615344108590377, -3.5173278822943734, -3.065206128054312, -7.0, -3.377063289113944, -3.180125875164054, -2.1031893747209938, -2.2869869182805127, -2.4664258793434404, -2.4759252997015397, -7.0, -3.8369567370595505, -2.8185811447437055, -2.9937510507229983, -3.5434471800817002, -3.5441921107650325, -3.805160901599434, -3.8335295817586434, -3.6775157047987577, -3.252955175857627, -2.629613445378183, -7.0, -3.22219604630172, -3.797613730153076, -3.448087666692341, -2.587840431253855, -7.0, -3.2306532471792218, -3.245859240421096, -3.502358829319632, -1.753216579694992, -7.0, -3.8150461760646306, -2.893892249396686, -3.2943559851451605, -2.4939556956948823, -3.094960002436666, -2.1729305152207927, -1.9803280777535663, -2.517342544745865, -2.889348398327215, -2.2353562558730182, -7.0, -2.5524198775407516, -2.9666578842017577, -3.006973848403039, -3.802020751771976, -7.0, -3.928190948038757, -1.8152720561645486, -3.069879432430074, -2.551224026542675, -3.810568529216413, -3.396395520169268, -7.0, -3.496237545166735, -3.017450729510536, -1.4415086913407607, -3.1005773027895964, -3.613366056465805, -7.0, -2.5545324228899338, -2.2453353203066544, -3.528209432477408, -3.3373926976485757, -1.9515741202886634, -3.5604446731931874, -2.6070055705400916, -3.365175879608403, -7.0, -2.696520201326676, -1.7648748393716502, -2.571234216560921, -2.0435524105955944, -1.3857332655944266, -2.5538899985021546, -7.0, -7.0, -3.831677849191467, -3.4871175714494034, -3.2511513431753545, -2.9341953493478843, -1.951103557856843, -7.0, -7.0, -2.589238558862275, -2.7386814836620155, -7.0, -7.0, -2.945274567077948, -7.0, -7.0, -7.0, -3.8053649074664455, -3.4952667443878105, -3.1033563066696592, -2.933681925274947, -2.6884415275019733, -3.0267783286595296, -7.0, -3.64969175532189, -7.0, -3.511214701136388, -1.94485265185328, -3.280932298017133, -3.097187872570896, -7.0, -3.0369614078061686, -3.534660575828444, -2.7686809892349995, -3.3208383890175335, -7.0, -3.5872618496925344, -3.018522180256059, -7.0, -3.865340905624584, -7.0, -3.2206832779743455, -2.912859475162355, -3.407447560198671, -3.0111799202451612, -3.5750723257138124, -7.0, -2.324843714184909, -3.041326877978479, -7.0, -3.792181496149679, -3.5369370227046737, -3.5159400420933182, -7.0, -7.0, -1.5875405103060276, -7.0, -4.396129575309595, -7.0, -3.4420876295507603, -1.5496530045435668, -2.293646623934636, -1.7419816035046947, -1.6396649967000325, -2.561459171241916, -1.9956351945975501, -3.2692209815300104, -3.1855421548543754, -3.5546102852261643, -3.0931297224743295, -2.38778035944564, -2.251078922905486, -4.018991594705612, -7.0, -3.469822015978163, -7.0, -4.143046043337588, -7.0, -3.5486841714830053, -7.0, -3.1587393203027556, -3.527114111639805, -3.872272846224205, -3.816440167956139, -7.0, -2.9749336544629608, -3.9057958803678683, -7.0, -2.768268016451548, -2.443738372084082, -2.647955984765046, -7.0, -3.3185502512263594, -2.398474196294003, -2.9553440813219995, -3.507248513918787, -2.821316970591097, -7.0, -2.87306213165041, -0.8608732304564952, -2.806632128612864, -2.7413767385571397, -4.161479473484632, -7.0, -3.8192806469724814, -2.8720267099544015, -3.251638220448212, -3.4961682741749778, -3.8053649074664455, -2.899492196138132, -3.5746677663162267, -3.874191804679071, -7.0, -7.0, -7.0, -3.511749711344983, -7.0, -7.0, -3.0330214446829107, -2.432029162983926, -7.0, -3.797613730153076, -7.0, -7.0, -2.931775592908094, -2.9274986816932005, -7.0, -3.8361341494653747, -4.026574118150334, -2.7703987953402223, -3.0736816994762832, -7.0, -2.263318464658058, -3.801609488027319, -7.0, -2.8904045791498514, -2.33568073008468, -2.697479992631392, -3.137986732723532, -3.2130013815482696, -7.0, -7.0, -3.11634203918834, -2.891927534220675, -3.1500268879309865, -2.6043136389437773, -2.3661645491690666, -3.2010897317287084, -2.544008952645728, -2.8332746392905634, -3.3274270536683934, -2.4959664217689568, -2.1193066572342634, -2.3234068093635756, -7.0, -3.5138831856110926, -3.0826058726978984, -7.0, -3.0969100130080562, -7.0, -2.2752564951364582, -1.8964141077401302, -3.3792450689395857, -3.454133151696751, -3.091373812473584, -3.070250341710294, -2.771203913197322, -7.0, -3.2858168734035287, -7.0, -1.814273462760839, -3.207185391351969, -2.885587356189656, -1.6430552368565536, -1.863867864960782, -3.2307407859604305, -3.2865126055296376, -7.0, -3.063386978864393, -3.2339410683150467, -2.758385235390091, -7.0, -7.0, -3.792041310712082, -2.1146339877270752, -2.3711118615101006, -3.3427515672308834, -3.8313577854420675, -2.8808655382747417, -3.3362595520141936, -3.1986570869544226, -7.0, -3.1302131143806298, -3.3574266029612865, -3.548880562637515, -2.718283109929698, -2.930821728079435, -3.74449974079471, -2.4085008811994832, -3.8873204210410535, -7.0, -2.0548854710650257, -3.564835646603938, -2.536892500990388, -7.0, -3.1453828919748745, -3.809694358716924, -1.8364400847717912, -2.675485048073944, -2.610778418905969, -2.666132406127459, -3.8000981801747757, -7.0, -3.015254941970331, -3.513217600067939, -3.530711837981657, -3.3600250891893975, -2.0427788247172347, -3.039678449361962, -1.8966704821219622, -7.0, -7.0, -2.680026750383986, -3.3350431336731856, -7.0, -2.9996958874108395, -3.7173905643876477, -2.254213777108459, -3.0107890454131927, -2.9094490469812664, -2.624704142971265, -2.6910529586002814, -7.0, -3.6356680147894007, -2.906095497131669, -3.158436851222544, -2.8562335049184115, -3.6552825351772134, -3.060476121176391, -2.7829403934279635, -3.3152879462998093, -3.164518081003057, -3.9800033715837464, -3.707785618912686, -3.34908316877959, -2.779334077665609, -2.674955301826999, -7.0, -3.387711783284205, -3.722798396870905, -7.0, -2.796267368858326, -3.828079590556746, -3.580827260638217, -3.5836844714826976, -4.029018329546481, -3.8880671134074367, -3.9519443296839407, -3.8237349883987313, -3.3289399506281896, -3.092947575753602, -3.193653224907199, -3.0650815277143657, -3.720828841381453, -2.382042120106383, -1.7855294035898643, -2.4925910899380925, -3.587807143622317, -7.0, -2.6458666533498327, -3.1141103565318917, -3.472610197596045, -3.4445782233980897, -3.020018039073415, -2.831245910079074, -7.0, -2.9756943410739467, -3.6170702701898696, -7.0, -7.0, -4.468376873249617, -3.717420836722375, -7.0, -2.606179758384244, -2.975320719769701, -3.92592130988984, -7.0, -3.0734332064655683, -7.0, -2.917052562679025, -7.0, -4.41513534300341, -2.8002259615480365, -3.7461474853576635, -7.0, -3.7287108119954437, -3.9144489406985543, -3.9192284996576987, -3.9915361753000314, -3.2661336596046886, -4.0856116304716465, -2.973804948103079, -2.8369090241882997, -2.7208587017418626, -2.449777503300706, -3.2042918568738163, -3.9736819185039836, -3.7150988877405458, -7.0, -3.6857865089215553, -2.9407795229136404, -4.106156886966839, -7.0, -7.0, -7.0, -7.0, -4.03981055414835, -2.2590012368621273, -2.7915826961282115, -2.5889767978378466, -3.5085970462300686, -3.0407718208896495, -3.239377695152661, -3.215848976111454, -3.4149733479708178, -3.811306840081336, -3.0553400995441815, -7.0, -3.1448282738585607, -2.9157954276020663, -3.5289167002776547, -7.0, -2.034254941351962, -3.5957166199434245, -3.171935299284524, -7.0, -7.0, -2.0098793906010903, -7.0, -7.0, -7.0, -2.3552599055273786, -7.0, -3.5068566550233227, -7.0, -3.8076703012304836, -3.9568500834811964, -1.8873167550101948, -3.0781848457146452, -7.0, -3.932372282147914, -2.432182415639667, -7.0, -3.09402167763423, -7.0, -2.827545493174686, -2.6722826247889206, -7.0, -3.8085485512404054, -7.0, -3.022133674504637, -2.9450169861592435, -2.870273818567884, -2.6706516545283736, -3.152349508312726, -7.0, -2.627422757278291, -2.1302198775923924, -7.0, -7.0, -2.789674705127005, -2.8424652188889956, -7.0, -2.88030779314603, -7.0, -3.8085485512404054, -2.5771086551437348, -3.4214393902200495, -2.1964721921744053, -2.217230785080009, -7.0, -1.3121078748810506, -7.0, -7.0, -7.0, -4.068927611682072, -7.0, -3.2975416678181597, -2.525260820213098, -7.0, -3.095518042323151, -2.442844232397271, -1.9986504087043486, -3.3949329905627432, -3.2089785172762535, -3.5116828711013874, -3.4622482153549976, -3.0956342104345573, -3.85751341477669, -3.07240746953829, -3.7151673578484576, -7.0, -3.5521813388393357, -3.800235789327354, -7.0, -3.3433934428512173, -3.636688447953283, -3.2389864740813414, -3.236486876375591, -2.5829565081628103, -2.53386043964867, -3.0053735847160605, -3.311192092821401, -4.015820634262069, -3.0877307268865897, -7.0, -3.2768637426396046, -7.0, -2.8029019429227557, -3.5407047833107623, -3.3276449635986567, -7.0, -2.9246238275174004, -3.8492965408347266, -2.7286954435449196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0038194235289084, -7.0, -3.1922886125681202, -3.8228869478341507, -7.0, -7.0, -7.0, -7.0, -7.0, -3.216429830876251, -7.0, -3.0650893162830104, -4.063520999689991, -7.0, -7.0, -7.0, -2.5468747110475065, -3.8257505813480277, -7.0, -3.292524215549357, -7.0, -7.0, -3.6602012013806817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8706964579892498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.296445794206396, -4.207497029999842, -7.0, -7.0, -7.0, -7.0, -3.336059277866349, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9270470220473492, -3.6419200744131177, -7.0, -2.4743696437288834, -3.8570238335327254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.571108788363788, -7.0, -7.0, -7.0, -3.278982116865443, -7.0, -7.0, -2.5707551531682618, -7.0, -3.5240064455573727, -2.6646419755561257, -4.144639580353153, -7.0, -7.0, -3.205880729887537, -7.0, -3.735758537443739, -7.0, -7.0, -7.0, -7.0, -2.602679969280364, -3.5714917891142703, -7.0, -3.4811080594687196, -3.8623103099542706, -7.0, -7.0, -7.0, -3.3324384599156054, -7.0, -7.0, -7.0, -7.0, -7.0, -3.767660393845374, -2.0363627019845945, -7.0, -3.5546102852261643, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5267882040115675, -2.9022749204745018, -1.8477871785250382, -7.0, -7.0, -3.456416647252042, -7.0, -7.0, -7.0, -3.282848602834645, -7.0, -3.620760489994206, -3.1815577738627865, -3.460747541844197, -7.0, -2.9769304845704574, -2.573548450021623, -2.9146075677710805, -7.0, -7.0, -7.0, -1.5622928644564746, -7.0, -7.0, -3.231214647962601, -4.18130038026682, -7.0, -7.0, -3.17435059747938, -2.259401051009384, -3.190051417759206, -7.0, -3.406028944963615, -7.0, -7.0, -7.0, -7.0, -2.5945766905019516, -7.0, -3.080609309929619, -3.3418300569205104, -3.170848203643309, -7.0, -7.0, -3.7283537820212285, -3.0437551269686796, -3.7259660517527853, -2.028551378718816, -7.0, -7.0, -7.0, -4.697564962793849, -7.0, -7.0, -2.1333662609889323, -7.0, -7.0, -3.6230838133595475, -7.0, -7.0, -7.0, -2.867646018849769, -7.0, -7.0, -7.0, -7.0, -2.393867559040913, -7.0, -7.0, -4.185457157401926, -2.991373769787407, -7.0, -7.0, -7.0, -7.0, -2.7846172926328756, -7.0, -3.8900855267163252, -7.0, -7.0, -7.0, -4.554864538285933, -3.182414652434554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.463594402187, -3.934548947666147, -7.0, -3.287353772714747, -2.7965008158727054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5994096422975916, -7.0, -7.0, -7.0, -3.197831693328903, -2.2206337333245796, -1.9150343529019414, -1.3695723146231802, -1.312142404568052, -1.8657656639681313, -1.3340375609112185, -7.0, -2.763877031495655, -7.0, -7.0, -3.249361442065167, -3.2801228963023075, -3.7547304690237535, -7.0, -2.957563755312261, -7.0, -4.3625201722887965, -7.0, -7.0, -7.0, -3.1318751879725926, -2.210853365314893, -7.0, -2.64957822912025, -7.0, -3.5175257836338214, -7.0, -7.0, -7.0, -3.2965555060882235, -2.912168896059627, -7.0, -3.172894697752176, -2.952792443044092, -7.0, -7.0, -7.0, -7.0, -7.0, -2.369929101915837, -7.0, -3.8632931129043135, -4.759605738236192, -7.0, -7.0, -7.0, -2.1960840270593827, -7.0, -7.0, -3.2024883170600935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.713131786506826, -7.0, -7.0, -7.0, -7.0, -2.8419848045901137, -2.301897717195208, -7.0, -7.0, -7.0, -3.465977368285823, -3.8515640822634887, -2.263318464658058, -7.0, -7.0, -7.0, -3.8596785766284483, -2.88930170250631, -2.5812346154111783, -7.0, -4.719853121294242, -7.0, -7.0, -7.0, -4.036229544086295, -7.0, -2.860808415686055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.814136565568487, -3.57275546515422, -7.0, -7.0, -7.0, -7.0, -2.738780558484369, -7.0, -7.0, -2.3220354274653374, -7.0, -3.577261953585815, -3.122379732069112, -3.511765624172576, -3.9475807493043225, -7.0, -7.0, -7.0, -3.334051440346892, -7.0, -7.0, -2.523876475638131, -7.0, -7.0, -7.0, -7.0, -7.0, -3.42909119203056, -7.0, -7.0, -7.0, -7.0, -3.226084115975824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.716504163773217, -1.4621744228711595, -4.261233121576351, -3.2911638495122544, -4.319571579852526, -7.0, -3.0142204250828595, -4.721963044776573, -7.0, -7.0, -7.0, -7.0, -3.3507324517161297, -3.8529676910288186, -7.0, -3.4984484031739997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4755523319785775, -7.0, -7.0, -3.460167322009192, -3.9342964068194055, -4.294113356362043, -2.873984533887229, -7.0, -2.8721562727482928, -3.933942602741261, -3.2591267144555607, -3.3543796472007004, -2.7416905544137458, -7.0, -4.325905450354342, -7.0, -5.002252479920538, -3.291468753334798, -7.0, -3.163965080750694, -3.082118290577008, -7.0, -3.8564872128686307, -7.0, -4.787729611178186, -3.9962927185413215, -3.1464753323636017, -3.2932994029762894, -7.0, -7.0, -7.0, -7.0, -3.3189695689123093, -4.188506633818114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9910487764526765, -7.0, -2.5115932164835013, -7.0, -3.980721296481127, -4.028467731285911, -1.7525382585237885, -7.0, -4.349199794429999, -7.0, -3.1168566946868985, -7.0, -7.0, -4.457291339128507, -3.7913677900080844, -4.689823667987483, -7.0, -7.0, -3.5833121519830775, -7.0, -7.0, -7.0, -7.0, -7.0, -4.394092538947562, -3.921111158696558, -5.406282081740148, -7.0, -7.0, -7.0, -4.960470777534299, -7.0, -5.407140964505215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.638514215690422, -3.1707895904463914, -4.903892689512359, -2.241532645817008, -7.0, -4.2496727637035345, -4.3588291816933245, -3.1899579507445543, -4.872435996539984, -7.0, -7.0, -4.317896266492956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1024597589212073, -7.0, -2.8889813672663376, -7.0, -2.688568121297955, -3.8851538250634543, -2.17242523816747, -7.0, -7.0, -7.0, -7.0, -4.026117701022133, -7.0, -7.0, -7.0, -3.0788795478889806, -7.0, -3.7520484478194387, -7.0, -7.0, -2.9425041061680806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.741939077729199, -4.607637281414817, -2.641317523344695, -3.9499612543414617, -7.0, -7.0, -3.985830489858392, -7.0, -7.0, -7.0, -7.0, -2.99563519459755, -7.0, -7.0, -7.0, -7.0, -3.163385026762188, -7.0, -3.140036410975282, -7.0, -3.305136318943639, -7.0, -2.5087948871576584, -3.921348270280974, -7.0, -3.653983907374069, -7.0, -7.0, -2.5835475348642203, -7.0, -7.0, -7.0, -7.0, -3.155626015396081, -7.0, -3.694956002249818, -2.3394514413064407, -7.0, -7.0, -7.0, -3.84248442441157, -7.0, -7.0, -3.8677031332700977, -7.0, -7.0, -7.0, -2.764365456468543, -7.0, -7.0, -4.3271545124094315, -7.0, -3.8109713998222077, -7.0, -3.2935098730581442, -3.749736315569061, -7.0, -7.0, -7.0, -7.0, -4.077803798076088, -7.0, -3.338257230246256, -3.5871494982543437, -3.337945698102355, -3.497620649781288, -3.7137984441929106, -4.558984415870133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.752893154884594, -3.7692295817365937, -7.0, -7.0, -3.36285930295868, -3.5674800954170154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0214255855185868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.141606530118251, -7.0, -7.0, -7.0, -7.0, -3.648067129448935, -7.0, -7.0, -4.512377507312931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.425371166438941, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.505133691971464, -7.0, -2.3636119798921444, -2.146128035678238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334694958867158, -7.0, -7.0, -2.6035380227553624, -4.5302590908126295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.803457115648414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6636067081245205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6780629049743454, -7.0, -7.0, -7.0, -3.6767688987361744, -3.4114513421379375, -3.5921767573958667, -3.7794521834040617, -7.0, -7.0, -7.0, -2.946943270697825, -7.0, -7.0, -1.5797835966168101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.647630695099381, -7.0, -3.0134692323091703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5179872030250783, -7.0, -7.0, -4.752757600507165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0602727791117927, -2.1492191126553797, -7.0, -7.0, -3.60916737430202, -4.374473389063976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1673468775856355, -3.9746805266282688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4423229557455746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5575072019056577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8402064977589974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3370597263205246, -7.0, -3.8654593226619647, -7.0, -7.0, -3.264055422284248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6110857334148725, -7.0, -7.0, -7.0, -7.0, -3.671662575364542, -7.0, -3.658393026279124, -7.0, -3.11293997608408, -3.031408464251624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.036928168015719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8402315949581087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.125025586819949, -5.411766970787628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9829492885744986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464415022426169, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.801609488027319, -7.0, -7.0, -7.0, -7.0, -3.2650537885040145, -3.6281333875410833, -7.0, -7.0, -7.0, -7.0, -2.1063609088067503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6088824508987196, -2.946452265013073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6163179419637905, -7.0, -7.0, -7.0, -5.131233594589685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.224014811372864, -3.644143050509919, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7382254481425052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.383366482755039, -5.8751828488254665, -7.0, -7.0, -4.318755983130834, -7.0, -7.0, -7.0, -7.0, -3.5081255360831993, -3.7681198941847973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023005397249935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0678516605123525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277609214304091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7641948193584245, -2.9175055095525466, -7.0, -7.0, -7.0, -4.933866750067607, -7.0, -7.0, -7.0, -4.961629884931725, -4.201296961003463, -7.0, -7.0, -3.8061121101690913, -7.0, -7.0, -7.0, -7.0, -7.0, -4.689561901807182, -5.487630391389559, -7.0, -7.0, -7.0, -7.0, -4.954411368906185, -7.0, -5.404984154791237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.896983418904129, -7.0, -7.0, -4.465313438107631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.164516429061985, -7.0, -7.0, -7.0, -7.0, -7.0, -3.342422680822206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.11882666293329, -7.0, -7.0, -7.0, -7.0, -3.282773119305837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.695621748893251, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.498034723687027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3054569007373225, -7.0, -7.0, -2.8379039445929424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.150991682923507, -7.0, -7.0, -4.300486787986029, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.526390976036641, -7.0, -4.1541195255158465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.332620219565641, -7.0, -7.0, -7.0, -5.094429199555873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9609461957338317, -7.0, -7.0, -7.0, -5.140416900769118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3769417571467586, -7.0, -7.0, -2.9912260756924947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530635055505357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.959136831170374, -7.0, -7.0, -7.0, -7.0, -7.0, -2.79309160017658, -7.0, -7.0, -7.0, -4.379396175194164, -7.0, -7.0, -7.0, -7.0, -7.0, -1.964835582936749, -4.164293359314462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.270911639410481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.016490131620828, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.558708570533166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6451235434214526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335939069031729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8337206904446335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.545059584694003, -7.0, -5.71271197970362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.815577748324267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1000257301078626, -7.0, -7.0, -7.0, -3.40705081480425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.653768697817702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.925106371852082, -3.8512583487190755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0644579892269186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0878996736256314, -7.0, -7.0, -7.0, -5.234641277637988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7093194383229315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.181543478219937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464042205438811, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9196532823103643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.346687369807717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.627099462252875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.713280485299326, -7.0, -7.0, -7.0, -4.313339843884307, -2.9370562715711874, -3.484503208342262, -7.0, -3.8421930493708496, -2.347039444540915, -3.9230193850380344, -7.0, -7.0, -3.007064656378332, -2.772453976103078, -3.3270318130211587, -4.320437103682865, -7.0, -7.0, -4.3103533890449945, -2.178924267863949, -3.4415066124941145, -7.0, -3.2440826434308088, -2.2219937387619706, -3.8474081224923307, -3.838765160988825, -3.8318697742805017, -3.342639773794436, -3.374402075504582, -3.840273420400613, -2.8419288412102115, -3.4212336317086427, -7.0, -7.0, -4.016699138064971, -3.0620076908098435, -3.7123339658940004, -2.6114387921441513, -3.832657909760817, -3.869681431545861, -4.015715932006951, -2.8164860899367334, -4.012119835804513, -7.0, -2.77477334374225, -4.025940454660939, -1.568804204911912, -4.316117183498905, -4.324385356490427, -4.063239508171935, -1.9268149217388544, -4.035409724152798, -1.8416242299086962, -2.731761389693246, -1.7195311864510827, -2.6376564772518996, -4.317958924700952, -3.4767281437542463, -2.9573198968553407, -3.4775966502926194, -7.0, -7.0, -7.0, -3.4756089342953334, -1.3641291386301917, -2.0824464605830224, -4.312685006388759, -7.0, -1.5236235880551368, -4.309587587448228, -2.6539529402862674, -2.7201233354998613, -4.311986834619701, -4.354780498831271, -2.848226019879913, -4.311414767162359, -3.141939450396649, -7.0, -4.315025199312605, -0.6841387274968713, -2.850013469810422, -3.714036218347168, -4.007555758625101, -2.7213887838945316, -4.020133301096697, -2.85655897491841, -3.4667193716815987, -3.5595874668502234, -4.335277325031929, -2.0900399089956823, -2.988187224867644, -2.0138427557233443, -3.6118082472765156, -7.0, -3.2744849869352772, -3.035309640156801, -3.1727780146558526, -2.9439339740583517, -4.012541972775836, -2.70456025280453, -7.0, -4.309523709653114, -3.8319763626923518, -2.0570403495899465, -4.009280884255359, -2.950131090407851, -4.331062700600152, -1.6310910105078673, -1.953766780990477, -7.0, -3.837735703059909, -3.725258066359961, -3.5519376953648374, -2.643551368562945, -3.846708145456007, -7.0, -3.2649358217826854, -3.068427069462389, -3.606112535339159, -4.023190707213023, -3.3657749237888828, -2.79741513068051, -4.319418389047728, -2.6793143110270847, -7.0, -3.2673110910935783, -2.6823707425165573, -2.893225903113069, -3.601643592893338, -7.0, -4.320997416794221, -0.274868821090727, -2.896735218447365, -7.0, -4.309757882316366, -3.2741176721526, -7.0, -7.0, -4.309438524641924, -3.612847407359837, -4.309225488984801, -2.2721855340792434, -2.4974134646862063, -3.0018609189497134, -2.96177253611023, -7.0, -4.439616866317564, -7.0, -4.01311120759659, -4.3289297689479, -4.01871436480765, -2.509218919155219, -7.0, -4.31525642505321, -4.0206305611846895, -2.37123583538615, -7.0, -4.308393649976259, -3.7374113257013213, -2.550676688630637, -4.312092690393716, -3.2897713227931304, -3.380432353900823, -3.572716745902921, -3.092818079113849, -3.191670541584012, -2.579529548945393, -2.9364131997114797, -2.9954889428763822, -2.3852686044267117, -3.7144555024904737, -7.0, -7.0, -3.6233113280355895, -4.315676520348013, -4.314330782520869, -4.30999192878118, -2.932596742019587, -4.014541538950472, -3.059061993830848, -7.0, -2.469059274505463, -2.1014999941288774, -4.323726367155352, -2.7284243645797948, -2.522609521607993, -3.8541642908673475, -3.306561484735791, -3.010703688640537, -2.831989684404655, -7.0, -3.430437891529148, -3.0823903775817154, -4.317875378414559, -3.6120771120854864, -7.0, -2.555139811231624, -2.9419286319126137, -3.26030994579492, -7.0, -2.3465182625523116, -4.30903366750414, -2.537665967793588, -3.7170668969538765, -3.0109255813646993, -3.537105174669567, -3.619322944883176, -2.5402780373978247, -2.8976074572805417, -7.0, -2.4324999946754002, -3.350910791047725, -2.204444931778382, -7.0, -7.0, -7.0, -7.0, -7.0, -4.01632285401379, -7.0, -4.018201022496291, -3.1258993255582284, -2.7114587737468, -3.181895533938723, -2.8525733868943464, -7.0, -3.3617907726863363, -3.172269243539273, -4.327747071252456, -4.309502414966703, -7.0, -3.498566524973976, -3.4318058760199377, -3.8574129138894935, -7.0, -7.0, -4.010956838955719, -4.314351841775663, -7.0, -7.0, -3.1595671932336202, -2.2852351456911983, -4.308713776639004, -4.008515007631455, -7.0, -7.0, -3.8444771757456815, -3.843087365838582, -7.0, -3.1170640446463893, -3.351901671294104, -3.5602853209988012, -3.113140836867081, -2.8904045791498514, -3.8596785766284483, -7.0, -7.0, -7.0, -3.1375321292876075, -1.986714434620068, -7.0, -2.5746252397019047, -3.7221195383899373, -3.8371674062278354, -4.31527743947181, -3.1719749686032896, -3.126114310736762, -1.3576684505145458, -2.8427825345659374, -3.1979450755719085, -2.04622810213454, -3.116503972397613, -4.311817411695856, -3.6307328928171967, -2.8004115598161072, -2.662526557433505, -7.0, -3.7128390329454333, -3.631078320874444, -3.8371252805687592, -3.158463011591568, -7.0, -3.0217994430119934, -2.93411571174413, -3.5502487419887805, -3.0993928573323, -2.9705894085233866, -2.4871524372774285, -2.1774572158356054, -7.0, -3.0490407234303634, -4.311245120878207, -4.022036380699923, -2.773109617523673, -3.259335008740741, -2.9424139568201904, -2.886001633574488, -3.336142736652067, -3.108684384591605, -2.91879769132346, -2.7326878976478954, -2.946334290791815, -2.3764969160525986, -7.0, -7.0, -4.307880955988253, -3.4541161920372, -2.527793227465292, -3.617503579279065, -4.019178624894263, -3.3104808914626753, -4.314583426205657, -3.196393337220726, -3.538406149594125, -2.507645627469406, -7.0, -3.1216624148598804, -2.5099831216476503, -3.6222347525184295, -3.2467636369419, -2.882102344676351, -2.925193438133817, -7.0, -2.5338255544562176, -2.9145287867320646, -2.618756433176055, -7.0, -3.0935658766580136, -7.0, -2.8904955374150134, -2.8228551350071545, -3.170296236636731, -3.0413532020469742, -7.0, -7.0, -2.902488538172861, -3.837609479125121, -4.3204163374561695, -3.8450153093764405, -3.6872970377689955, -4.015045239174416, -1.9860191759019852, -7.0, -7.0, -2.9147030098471265, -3.3178160068112277, -3.9841108210596157, -3.9054360671891235, -3.951288937277672, -3.0818271912583772, -3.66061254003405, -2.8393079489772797, -2.476232637385205, -3.690092664268553, -7.0, -3.5611447675441923, -3.443654067612905, -3.6454695755396407, -2.5711751665451406, -3.6153607781848502, -3.3949313708858924, -2.791219855377866, -3.8845829776955494, -3.402444091694104, -4.374253298101757, -3.4923083627475915, -3.742669031778443, -2.9529779993305736, -2.788221750502334, -4.138849827637302, -3.493365094127988, -3.643982882895379, -7.0, -2.702139548178527, -3.9334113556023538, -3.36639719186507, -3.570914245110417, -3.7720404001784864, -4.0384015690099515, -3.9034155857690864, -3.836434890986501, -3.1268076047048265, -3.847622007983925, -2.2955167940561765, -4.023273041822853, -3.2004856980008305, -2.0802478193290583, -2.8717149005099007, -2.5469358681060803, -2.9610834419339636, -3.3454325474991466, -2.393663044735808, -2.52647144918348, -4.061301656206044, -3.314984059305763, -2.322942123838025, -2.0659647007387014, -3.332680789215245, -2.2161844940573054, -2.799455426978892, -7.0, -3.13795345982699, -2.6545675678603096, -4.390210679109047, -7.0, -2.2651415915061928, -2.2402649767471305, -3.5080022347321136, -4.0135113334659, -2.7802119008576183, -3.8391427171910273, -2.1939996969068654, -3.510410948010177, -3.4378139588473458, -2.9000255678980835, -3.561172964752188, -7.0, -2.735119634081872, -2.446088626264233, -2.514314591877321, -3.299362001114019, -2.22222026594213, -2.9419087743655994, -2.190887275170587, -2.2766438601314345, -3.622731965164719, -1.9478840526363634, -2.4821408576705712, -3.7695434784017907, -2.6694283903107014, -7.0, -2.8317418336456384, -2.3226037128118584, -2.7046014348376373, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6076627897985016, -1.728232000140194, -1.2639810792597537, -4.313360951244128, -2.940038099187222, -1.8514501231419902, -3.1726418447426044, -2.4239448191097, -2.6685765035393483, -1.9930020488667601, -4.009833178608563, -1.6729151549139654, -1.743161629859857, -2.813393320802116, -4.042516447524275, -3.1067791154359465, -2.592236256582886, -2.447211512591213, -4.325002252165038, -4.318730966888098, -2.6332832517813607, -4.319397574051826, -2.7763898245663734, -2.4953834355923443, -1.8005361037952268, -7.0, -2.137202378501745, -7.0, -3.8355003278673188, -2.9467601245381916, -1.979818970838536, -2.6625915062474363, -7.0, -3.1790344659320064, -1.5074491231009153, -7.0, -1.631065576393257, -7.0, -1.837937142458874, -1.2533958383431552, -7.0, -7.0, -3.2344199320783495, -1.8004462886496526, -2.7480469994089542, -3.318000691817921, -2.8026127711598994, -2.0404357682520624, -3.7180447335139175, -1.8943896435119245, -1.5172706109957594, -3.1033149257643444, -7.0, -1.5174322594135998, -1.592444509859282, -4.040127441781456, -2.118964758392623, -4.318355550225704, -7.0, -3.443591518448947, -2.164233055917399, -1.4326777481022428, -1.7978103057604256, -2.424679797081162, -3.332660600270635, -7.0, -7.0, -2.99536354504628, -2.5712023068131966, -4.3163059023458565, -1.672446796026297, -1.202763479095864, -3.427080188436359, -3.609658428263034, -1.1923525723728117, -1.347080670472507, -2.1003338756801364, -2.7542110775942783, -1.5571600787125126, -2.3010299956639813, -2.432434774521513, -2.703987002349199, -1.5883647214454781, -2.8317098425969034, -3.153936754460935, -3.628368492182033, -3.465042761781937, -4.308713776639004, -3.455179975545529, -3.7555509188304823, -2.2179850051081407, -2.975891136401793, -1.9000856192499211, -3.0870712059065353, -2.5949891349772547, -2.286513799829162, -3.212471712342394, -1.5558988438166708, -7.0, -1.9248123892178863, -7.0, -1.6287817789978616, -1.64742734474242, -3.4904676686713505, -4.309310715788175, -2.0432502611543164, -2.3830927975696685, -1.4750142282715528, -2.564209087043202, -7.0, -7.0, -3.8319763626923518, -4.311669112400611, -3.8332958902132748, -3.8356060290584613, -2.5080057059156724, -4.033544376090948, -2.8079725242641853, -2.853949830834142, -7.0, -3.312811826212088, -3.361580948311831, -3.1452378543373385, -4.017346419558815, -2.223798690700624, -2.9903590390407087, -2.247772101653081, -2.755197064693086, -7.0, -3.5422027824340283, -4.008238108813141, -3.088527756680114, -3.141763230275788, -7.0, -2.2304147438003934, -3.3671073265819653, -3.2064937513760277, -2.9857444809540734, -4.053136089367437, -2.313906259830001, -3.70922754733432, -3.4092143375767625, -3.0439317931257013, -4.009110806132213, -2.3268387244988404, -2.7879662326772423, -4.324138352655017, -7.0, -3.3140779917792127, -7.0, -7.0, -7.0, -2.81424759573192, -7.0, -2.4375920322539613, -7.0, -7.0, -3.3505575797661513, -7.0, -7.0, -3.2920344359947364, -3.3857339134175715, -2.94423584379348, -7.0, -7.0, -7.0, -7.0, -2.958324931644053, -3.159811490345912, -7.0, -7.0, -1.9271173340484586, -3.1595602258120605, -7.0, -7.0, -7.0, -7.0, -2.3890049062287417, -7.0, -4.572679959416505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6418705454763125, -7.0, -3.5577477416414682, -2.4795958738475177, -4.191242915636388, -7.0, -7.0, -2.3626081204867257, -7.0, -2.8526324579115143, -7.0, -3.0948203803548, -7.0, -7.0, -2.789298611159441, -2.456180161450073, -2.5707551531682618, -2.4630994157880113, -3.0993928573323, -7.0, -7.0, -2.9122220565324155, -3.0824263008607717, -2.2798072880412437, -7.0, -2.7991107032021714, -3.366236123718293, -3.7013952690139202, -7.0, -7.0, -7.0, -2.8862650590297565, -7.0, -3.8285310066451013, -3.1474444325481796, -7.0, -7.0, -2.873310911959824, -7.0, -2.7097543943577977, -7.0, -7.0, -3.46987108602871, -2.380986075961567, -2.4740080192955194, -3.2400497721126476, -3.613630434925241, -3.0670708560453703, -3.647969458362972, -3.382827209736365, -7.0, -7.0, -3.1998313305233927, -3.6800634274819486, -3.2932520331478248, -7.0, -7.0, -7.0, -2.890840019780741, -3.573103783163991, -3.0135955235372895, -7.0, -3.8878703775119305, -7.0, -7.0, -7.0, -3.030275802889288, -7.0, -3.570659670021534, -2.9720484774455382, -2.346587664800529, -2.2414907518037217, -3.353916230920363, -3.3087777736647213, -3.4214393902200495, -7.0, -3.8059593778018046, -2.7890516223748403, -7.0, -7.0, -7.0, -3.448551739201578, -7.0, -7.0, -2.9001275963692335, -7.0, -7.0, -7.0, -7.0, -2.8195439355418688, -3.6148972160331345, -2.728678366850914, -7.0, -7.0, -2.911772031594504, -2.3514708097996033, -7.0, -7.0, -3.4887445547013427, -7.0, -7.0, -7.0, -2.5770319856260313, -2.768884649356367, -7.0, -3.524331200288652, -3.4938482527122763, -2.8343500464810347, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1041455505540085, -3.3025473724874854, -7.0, -7.0, -7.0, -3.478674695025181, -7.0, -7.0, -3.510813010512496, -7.0, -7.0, -2.0851198741382158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2215833091861974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6629825636306528, -7.0, -4.309715314859149, -7.0, -7.0, -2.6355279551955864, -2.2398355349224595, -2.7417244523322424, -2.758491349630627, -2.7518946880437474, -2.9639058261187046, -7.0, -7.0, -7.0, -7.0, -3.1457400995364067, -7.0, -3.7748817658187965, -7.0, -4.011401259924744, -7.0, -3.8903837546984503, -7.0, -3.6434197741427568, -7.0, -3.1488493429592204, -7.0, -3.4712917110589387, -3.0126263509540503, -7.0, -3.8361341494653747, -7.0, -7.0, -3.272189831450441, -2.746054608250968, -2.8120387480202664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.186270685219292, -3.7114697818743276, -3.217630146700358, -4.8689801249675995, -7.0, -7.0, -3.046300019652969, -2.5185139398778875, -7.0, -3.2778383330020473, -3.5390760987927767, -2.7800291273373383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.837275150949137, -7.0, -7.0, -7.0, -7.0, -2.6722826247889206, -3.3602146132953523, -7.0, -7.0, -7.0, -3.5043349118024643, -1.9780242591477941, -2.33568073008468, -2.88930170250631, -3.2650537885040145, -7.0, -3.1375321292876075, -7.0, -1.8982917926790133, -7.0, -3.8768855992492965, -3.395501124305626, -7.0, -2.354535264225396, -4.04688519083771, -7.0, -2.8140393908849854, -3.1148110738380637, -7.0, -3.4619484952037616, -7.0, -7.0, -7.0, -3.6223176608338443, -7.0, -7.0, -7.0, -7.0, -7.0, -2.700126581535961, -3.243534101832062, -1.242762218583721, -3.036451451240427, -3.1293675957229854, -3.6072405038317426, -3.4658288153574364, -3.905583203308676, -2.8803848005903028, -7.0, -2.8663506427038543, -7.0, -7.0, -3.413634997198556, -2.2717049714930866, -1.9978230807457253, -2.2701934281564258, -7.0, -7.0, -7.0, -2.4768799129619077, -3.6860682305506227, -3.339053735709139, -7.0, -7.0, -7.0, -2.9997517607923823, -2.891218767889852, -7.0, -7.0, -7.0, -3.305136318943639, -2.48957499641369, -3.326949994165999, -2.719952447254438, -7.0, -7.0, -3.7384634394619525, -7.0, -3.3460386700879425, -2.8526155200794925, -3.889187878462289, -7.0, -3.3985765072605454, -4.1789646208794, -2.958145631642097, -7.0, -7.0, -7.0, -2.9776321652459994, -7.0, -3.516997846195275, -3.0565237240791006, -7.0, -7.0, -2.3465830642477576, -7.0, -7.0, -7.0, -7.0, -7.0, -2.355603430234352, -7.0, -7.0, -2.985340919887817, -3.878234468675044, -7.0, -3.7418603940652635, -4.422499557616591, -2.8902987339959663, -3.3450304728916596, -3.6047335137224517, -2.5758328284484184, -2.885764952032237, -7.0, -4.331407049219782, -3.775197678221991, -4.049105987818543, -3.1038809318054197, -7.0, -3.6439100599024514, -3.1362908663453632, -7.0, -3.861892690391446, -7.0, -4.436007072111521, -4.303239268651996, -3.116337117195697, -3.669967369908504, -7.0, -4.068371418032643, -7.0, -7.0, -2.7528020888068068, -3.894952635024377, -3.843766528040535, -4.0484029561527395, -4.22768107275287, -7.0, -4.127590677007958, -3.9463539972262747, -3.1493950828692556, -7.0, -2.8782857909806667, -7.0, -3.9039667381715213, -3.2443694472721205, -2.953082843912086, -2.684920130428604, -3.399865929708076, -3.5509617522981762, -3.1968265991549494, -7.0, -7.0, -4.461363445295965, -3.305673745669693, -2.9277773123297144, -7.0, -3.058775141896555, -3.2971036501492565, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5347174140748496, -3.3754877506331518, -5.1054786759881114, -7.0, -7.0, -7.0, -3.882467614895371, -7.0, -4.453330233708015, -3.0419187839286823, -7.0, -3.257438566859814, -3.8708718950677428, -7.0, -7.0, -3.4243098202457563, -2.54602416180365, -7.0, -3.26143590310203, -3.505163549810412, -7.0, -2.725662258356222, -4.059042482306292, -7.0, -4.308657529042319, -7.0, -3.7169210731667612, -3.542348146022223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4720886863444194, -7.0, -2.4381466362467488, -7.0, -2.7268629897004635, -2.7029734397201044, -2.969532392033345, -7.0, -7.0, -2.6054318104391205, -7.0, -3.5271752239289236, -2.9546444479056855, -3.3560258571931225, -7.0, -2.573466689278932, -3.530711837981657, -3.471144965160633, -7.0, -7.0, -2.8202611850556862, -7.0, -7.0, -3.4927603890268375, -7.0, -7.0, -3.4613859617950706, -7.0, -7.0, -3.911466567282492, -2.6346683329870553, -3.7554867957317724, -7.0, -7.0, -2.9969929818907057, -7.0, -7.0, -7.0, -3.4658288153574364, -2.8029560678922834, -7.0, -3.2884728005997825, -7.0, -7.0, -2.9395905594871645, -3.342422680822206, -2.781755374652469, -7.0, -7.0, -3.5017437296279943, -1.990621349001281, -7.0, -7.0, -3.3780343224573315, -3.6605809124272994, -7.0, -2.5386479834077615, -7.0, -7.0, -3.183933830133716, -7.0, -2.5628942100918968, -3.6216954623292787, -7.0, -2.8615344108590377, -7.0, -7.0, -7.0, -3.859018143888894, -7.0, -7.0, -3.883320678382975, -3.445136968713304, -7.0, -3.5746677663162267, -2.093822918082407, -7.0, -7.0, -3.3780747351016545, -3.3229425163530153, -3.8287243271387914, -7.0, -2.8253539818184996, -2.9912260756924947, -7.0, -3.4219328132785085, -7.0, -7.0, -4.082677680648112, -7.0, -3.087603973687808, -7.0, -2.248686239706898, -2.930567009900929, -3.721288378818099, -3.5205788014860047, -3.468125695050418, -3.611404637711593, -7.0, -3.4886916983169405, -7.0, -7.0, -3.4719514546809824, -7.0, -7.0, -7.0, -7.0, -3.018550716122285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8403342502181927, -3.174786417367337, -7.0, -7.0, -3.354876422516234, -7.0, -3.3209766773428235, -7.0, -3.3428173146357327, -7.0, -7.0, -3.4507724103773856, -3.850217241798389, -7.0, -7.0, -7.0, -3.372451701409366, -3.041590046889367, -7.0, -3.670709595223797, -3.3727279408855955, -7.0, -3.668012971641832, -7.0, -3.284092190642834, -7.0, -7.0, -7.0, -7.0, -3.4627722284106115, -7.0, -7.0, -7.0, -7.0, -4.530583859645118, -4.530443039902961, -3.2999172885064594, -3.3020634079121143, -3.546480969539267, -2.124888234313702, -4.231953569198981, -4.536583691516737, -2.8529254216064333, -2.382402216128515, -7.0, -3.833835315303057, -2.4931249127957797, -1.5055301535015506, -2.9384196457931933, -4.537214438544131, -7.0, -7.0, -2.7165683297355256, -1.8968065290910827, -4.012710712741787, -7.0, -1.8338594232497616, -2.1205424924463205, -3.6364878963533656, -3.932372282147914, -3.575905941553608, -3.1032293300163634, -3.2196967711811264, -7.0, -3.1960135401118857, -3.7614767795447017, -3.8328664197968454, -3.8330450630415167, -4.234542591311529, -3.549885675770413, -4.056460170339044, -3.3319034313985325, -4.530826986248976, -3.0756321088257814, -2.6881527555915663, -2.7286682272461387, -7.0, -3.6909424754242903, -2.090090905872992, -3.4269739619520005, -2.2093176791872278, -7.0, -3.3087652259715576, -3.7861004389479858, -3.286044585480999, -2.320196054852768, -1.923022686459233, -3.5178793826491708, -1.725330154414223, -2.907608762375779, -3.6324446377322426, -2.6851864554300033, -3.143687231570321, -3.140193678578631, -3.047626533023953, -4.238836151492433, -3.929929560084588, -3.0052183765659297, -2.820846274389542, -3.0114083105604443, -3.833453114731084, -7.0, -2.558405508119852, -4.229605059841376, -2.9656831619252855, -3.0713526184134943, -4.532104361451173, -2.876013254340755, -1.6657036520711483, -4.230704313612569, -2.8800956594900637, -4.529725430610816, -4.232881807330064, -2.2925128983786878, -1.7879110876728, -3.3582141279022437, -4.052911867935484, -4.258385826696981, -3.935545050823815, -3.5632555734352525, -2.954289584880475, -3.945788525546071, -7.0, -1.7864002085937734, -2.7334097090783644, -2.1809235145491312, -3.9293422787484373, -7.0, -3.557735717818272, -2.966709712411367, -3.2323304321038173, -3.0660695600482564, -4.232029937620133, -2.3977377503944584, -3.5839289135634917, -4.530622257106078, -4.22936182573706, -2.5294772052540186, -4.531121115412728, -2.7679948007976636, -2.9745988142431106, -2.2195961677813676, -2.1301187370058776, -3.21398550838652, -3.7556081017156715, -3.541254649786259, -3.5429996075770545, -2.392545351176965, -4.539327063539375, -7.0, -3.4725614360755417, -3.33724778856359, -3.0579310756823244, -4.2384851963088765, -2.670074638614735, -2.198959143862575, -4.235541071563642, -4.129313856382213, -4.537164012479412, -3.1116446237844477, -3.8424969075458146, -3.258098269990316, -2.8571352559701793, -4.5319895514125506, -3.5373278757870126, -1.7976661590155651, -2.2603966616104936, -7.0, -4.053590583261995, -1.9114709525356064, -7.0, -4.529635646019073, -3.831498642552911, -2.7983564643068126, -3.450980017314784, -3.213330796493227, -3.227103889576614, -2.332548626359836, -1.5884147590184967, -7.0, -3.1356414163866684, -4.5309293146403204, -4.056256735850139, -3.9402549330205634, -3.697490887171057, -2.6780086500388114, -7.0, -4.2330215069876935, -3.3915273813591287, -2.6478174818886373, -7.0, -7.0, -2.5781954107484224, -3.3129485511971453, -7.0, -2.1276719188204827, -3.847041804641579, -3.7108182495386917, -3.9524897355097743, -3.9460221791926338, -3.436650225403725, -7.0, -3.6908160579809155, -1.648171710726918, -7.0, -7.0, -7.0, -4.538435481499883, -7.0, -4.23246243853121, -7.0, -2.3344956371018633, -2.889747230701509, -3.1760002544872328, -7.0, -2.9851906245285953, -1.90104708326116, -3.260008587828519, -2.4459245638311797, -2.6510677301830268, -3.200937507389536, -2.820687873247529, -3.590891349601164, -3.4339543652562603, -3.696768142830307, -3.846312365300436, -2.7119804733019435, -3.6904112746987385, -3.677766590466052, -7.0, -2.7015782636070647, -3.086617532159259, -2.662970206395096, -7.0, -2.2924108586634353, -4.22927217882129, -2.4632799957617206, -3.390038860415928, -3.0131719315312613, -3.75592564737852, -3.3895584181453198, -2.918052655796212, -3.2736103808338557, -7.0, -2.997920064775138, -2.7705497211846604, -2.384981373841525, -7.0, -4.053180919765609, -3.4548067623303504, -3.4518759451856647, -3.8336060353248835, -4.234314768012676, -7.0, -4.059336177389288, -2.7546833748650728, -3.108646659130256, -2.473528809833997, -2.7542033142551516, -4.529763904040117, -3.7564712833861256, -3.1740218642682643, -2.1722768301979376, -7.0, -3.4178547815685354, -2.95961615525994, -2.6871324357528006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.546863330761307, -1.9503113239127658, -4.530135638245461, -3.9285238683171553, -7.0, -7.0, -3.13942567294585, -3.3062736131041426, -4.2288749484642025, -3.838974954955468, -3.8048433685402374, -3.3175102892089123, -1.3976434607042825, -2.697479992631392, -2.5812346154111783, -3.6281333875410833, -7.0, -1.986714434620068, -1.8982917926790133, -7.0, -4.538309759381733, -2.6865129952104003, -2.6344898655257043, -2.7612140831684076, -3.135539711053947, -2.189955918629514, -2.841381819328237, -1.5777708887153012, -2.539618543181053, -3.049174935762869, -2.91017749765366, -2.9346625431544537, -7.0, -3.9408276510144487, -3.958301029253673, -3.4440207612473874, -7.0, -4.232881807330064, -7.0, -7.0, -2.965486399076146, -3.626994396483222, -2.5497509785395267, -2.8291480838234775, -3.587748370340144, -3.2572344557135176, -3.025702979917565, -2.434341118152189, -2.2667572593256806, -4.532537814560151, -2.544001861100848, -4.531657707374614, -3.5843940517791273, -2.7012294903811234, -3.0854628196699045, -2.386854499075695, -2.763499300431483, -3.7522570347660578, -3.8499841820942704, -3.787779170797312, -2.429788971125811, -2.374530376424795, -2.631902814634904, -4.053219342138294, -7.0, -7.0, -2.6772396187440677, -2.7044287918270453, -7.0, -7.0, -3.3259741999930115, -3.533441574084827, -2.743350500752125, -2.2310903252489624, -2.7511205403423413, -4.0606097136919574, -3.309993180027564, -3.672271079163263, -3.9356457947525647, -2.2094066004154516, -1.9215443238125294, -2.2608270533987813, -7.0, -3.3939917506730426, -2.741679904990016, -2.552048459343581, -7.0, -4.539790966345741, -4.532919914252143, -3.311471301200697, -3.0281644194244697, -2.4547206774916206, -3.135548513418428, -4.531121115412728, -7.0, -2.8734538154104348, -7.0, -7.0, -4.538297185167974, -3.9763155826188763, -7.0, -2.0016984553595427, -7.0, -4.530532657749054, -2.1556565611703453, -2.7920671872686325, -3.8716980023521868, -2.591551523290097, -3.2302751688326863, -2.3725591487520004, -2.3514033420374587, -2.4804176233488913, -1.2021624626183571, -2.005302224004762, -2.5495520633853173, -3.5248178775073047, -2.8388338627535266, -3.0815600488549695, -2.0258996031849703, -2.687799594320013, -2.731680685657109, -2.0961008326833244, -3.867261193187285, -3.0594345017074778, -7.0, -2.9972281888728, -3.416781921212604, -2.248090400539062, -2.142461959498398, -7.0, -3.077252254231666, -3.064395586111371, -3.5107521158725525, -2.0148522278951115, -3.1478762882177977, -2.7703843143959808, -3.9582691573533264, -3.9915538885915707, -4.071697945221614, -4.658659967620744, -4.135524877036065, -2.9035339248279906, -2.6862071244824106, -1.1875312483580989, -3.761313781974698, -2.2357912707484835, -3.0135839120839165, -2.9231276609444166, -1.6781075804207748, -2.212115371138457, -3.0078818364351347, -2.074214113604477, -3.5221933557442147, -4.563148711095859, -3.4053890531697864, -2.1608163787942525, -2.319807004048228, -7.0, -2.307070834815396, -2.869459892616723, -4.532053338514362, -2.396442136180449, -4.057323705369284, -7.0, -4.539703238947825, -3.000950428851235, -2.0575039051303508, -3.2594046528982172, -7.0, -4.106428894793411, -7.0, -3.2724499385486108, -4.596201102454085, -3.5143092296787004, -2.877688023441787, -4.397592434038117, -4.053820849274466, -3.694373832632661, -3.3665307092379146, -3.3604271516917166, -2.6968803716827625, -2.291692966600889, -3.369521437296432, -2.2737798138314833, -2.6751942746956026, -4.538083367813495, -2.1090686261873266, -3.321521198841677, -3.4896186879579, -3.390977543124353, -7.0, -2.908648169194429, -3.1362683085718692, -3.5795794628965285, -4.231444102917431, -7.0, -7.0, -7.0, -3.887763540692103, -1.4569662182585454, -2.870647712887689, -1.575003900577211, -4.055760464687735, -2.9794499342929743, -1.8337843746564788, -2.1934188358195805, -3.7715262393269122, -4.056053206022728, -2.103272957302832, -3.9293167267534956, -2.488796268163124, -2.4965342957637975, -3.39039253072292, -3.7731401279444228, -2.6039745230837372, -3.3743694711197056, -2.733942048385829, -4.238936372332732, -3.757901904775561, -2.7684613836716037, -7.0, -3.307231680910892, -3.0024129251889913, -2.6775951034242316, -7.0, -2.0569250609496317, -7.0, -2.929482787854236, -2.3664980284404695, -1.9610176464287086, -1.7901419060922004, -4.530148450992933, -3.5173038881240966, -2.214217852914229, -4.062581984228163, -2.7668324495485024, -7.0, -3.0819181438484713, -1.6038331880566845, -7.0, -3.6294350851202672, -7.0, -3.182278161831841, -2.4829650044030926, -3.6326976567506746, -2.863966883310938, -2.9721027186202433, -3.934952707817858, -2.9036078703683783, -1.6733169604664826, -3.2757719001649312, -7.0, -2.515554531259106, -2.7245607930040894, -3.850866695456682, -1.0294141960937242, -3.933816174257383, -7.0, -2.844161141324878, -2.7716364679076344, -1.5860465135153958, -2.6953137219358365, -2.487021447340703, -3.067058450998685, -3.934649922900711, -3.8292501529183816, -7.0, -3.2524006351067714, -3.580265878156548, -2.869097204551567, -2.1911946670584164, -2.9742253132466328, -4.530186886967461, -2.282174309626252, -1.35109713021616, -2.7042432949819815, -3.1378043403467784, -2.26713900887448, -3.112844295431148, -2.8644439099992676, -3.587935348636356, -1.80294087559935, -2.325794612183868, -3.698162707576105, -3.84244697285584, -4.053974292150365, -4.530135638245461, -2.740726384592418, -2.7954365110794464, -2.7049071715672994, -2.2857992018968964, -1.2378704566780478, -2.9590658658204045, -2.0343471972167597, -2.655736154949934, -2.846543280888438, -2.5979843300652896, -4.536293239983433, -3.0991378037792234, -7.0, -2.7072017786784093, -2.5698327279788904, -2.857753385075089, -4.530494252365142, -3.0839842431054527, -2.876807514113195, -1.9996202059382764, -4.538410339987667, -4.534711293390327, -7.0, -4.22936182573706, -4.531912994521574, -4.230155034520514, -3.4531398960347057, -1.2729106902546903, -4.545875904696417, -3.345177616542704, -4.234390722392193, -3.457314067737995, -3.9306943876645355, -3.455162210758403, -7.0, -4.535989952876927, -2.9979321862561354, -3.5450472044011843, -3.084895978565494, -2.920567344816164, -7.0, -4.060118394661378, -7.0, -3.0095453179062304, -4.058830772372511, -7.0, -3.0056228426882443, -3.7596930204516097, -3.3910611905654067, -3.1674473082034846, -3.0257514993660317, -3.8572601079850797, -4.230704313612569, -4.055301864347441, -3.8536617149080574, -4.531018832208792, -3.010299956639812, -3.5449109978822997, -7.0, -4.228644131738731, -3.029789470831856, -7.0, -7.0, -7.0, -2.9867717342662448, -7.0, -7.0, -7.0, -7.0, -4.427423892550001, -7.0, -7.0, -7.0, -7.0, -3.743875442427706, -7.0, -7.0, -7.0, -7.0, -7.0, -4.34551095769695, -2.6487393784940823, -2.554489160003819, -7.0, -3.928756528158202, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0670708560453703, -3.0346343538000164, -7.0, -7.0, -7.0, -7.0, -2.767341422368662, -2.709269960975831, -7.0, -7.0, -3.1172712956557644, -7.0, -3.041295537721137, -7.0, -7.0, -7.0, -7.0, -3.196636681829914, -3.042181594515766, -7.0, -7.0, -2.921166050637739, -7.0, -3.796237995678362, -7.0, -3.320198232105004, -7.0, -7.0, -3.142389466118836, -2.791690649020118, -7.0, -7.0, -7.0, -7.0, -3.12515582958053, -7.0, -4.154880244718762, -2.670709595223797, -7.0, -7.0, -7.0, -3.4583356259919475, -2.5846138761717827, -7.0, -7.0, -5.126537252055469, -7.0, -7.0, -7.0, -7.0, -3.5945582800022815, -7.0, -3.044147620878723, -7.0, -7.0, -3.1290450598879582, -2.935759103745312, -7.0, -3.034828915655837, -7.0, -4.152043602487651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4396484295634737, -3.3196264841556395, -7.0, -7.0, -7.0, -7.0, -7.0, -3.989004615698537, -2.918554530550274, -3.1349735400059155, -3.2617385473525378, -3.663795122219408, -3.3840306652405143, -7.0, -7.0, -2.9156636035057732, -7.0, -3.311418300755367, -7.0, -7.0, -7.0, -7.0, -7.0, -3.17435059747938, -3.337715911243109, -4.456024233422963, -3.100370545117563, -7.0, -7.0, -4.296450183213849, -7.0, -7.0, -7.0, -2.952792443044092, -7.0, -3.3524826673431667, -7.0, -7.0, -7.0, -4.374289987675311, -7.0, -7.0, -7.0, -7.0, -7.0, -3.741663622514662, -3.755951041004132, -3.8634715656455874, -3.7136585162083566, -7.0, -7.0, -7.0, -7.0, -2.9344984512435675, -7.0, -3.8478193472952396, -7.0, -7.0, -7.0, -3.4666081519579373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6059204121412005, -2.8312296938670634, -2.639486489268586, -2.3364041370383783, -2.351538641815657, -7.0, -3.620166685469373, -2.5732585015417953, -2.412740466538526, -7.0, -1.9075378113452577, -3.0338256939533106, -7.0, -7.0, -3.09457094350807, -7.0, -7.0, -7.0, -7.0, -3.3284238423631103, -7.0, -7.0, -3.1443666098609677, -7.0, -3.4308809464528913, -7.0, -3.0392157659039505, -7.0, -2.991447598003803, -3.663795122219408, -7.0, -3.6959192528313998, -7.0, -7.0, -7.0, -7.0, -2.502882116864084, -7.0, -7.0, -7.0, -7.0, -2.992995098431342, -3.029789470831856, -7.0, -3.1659117300536566, -3.4095950193968156, -7.0, -3.138776215729349, -7.0, -3.8731461513282555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.317436496535099, -7.0, -5.412225275871112, -7.0, -3.04688519083771, -3.0923696996291206, -7.0, -7.0, -7.0, -3.392696953259666, -7.0, -1.2516743529397594, -2.5532760461370994, -2.8603380065709936, -2.1751250862836606, -2.7058637122839193, -2.569373909615046, -2.468839448857906, -2.234896745731588, -4.099098298220612, -7.0, -7.0, -7.0, -7.0, -7.0, -3.114610984232173, -7.0, -2.6599162000698504, -7.0, -3.3432115901797474, -7.0, -3.137986732723532, -7.0, -7.0, -7.0, -7.0, -7.0, -4.538309759381733, -7.0, -3.6722910214147975, -7.0, -7.0, -7.0, -4.006466042249231, -7.0, -7.0, -3.0432050388876584, -7.0, -7.0, -7.0, -2.4742162640762553, -2.9459607035775686, -3.203984244420126, -2.0248666663580623, -2.8488047010518036, -2.416640507338281, -3.251638220448212, -2.7054360465852505, -3.307067950661298, -7.0, -3.0993352776859577, -2.620978335335007, -7.0, -3.485437481076301, -7.0, -4.530900537217131, -3.9107844347928373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.971322245242813, -7.0, -2.463485774251991, -2.350829273582968, -2.2595938788859486, -7.0, -4.874370346718868, -3.588047496986083, -7.0, -7.0, -2.8530895298518657, -3.7794521834040617, -3.349180358996378, -7.0, -3.113943352306837, -7.0, -3.012415374762433, -3.3848907965305544, -7.0, -7.0, -7.0, -2.7253670623404314, -7.0, -7.0, -4.557982139681939, -4.393048466416778, -4.699390776552473, -7.0, -3.03576316966496, -4.542887642342412, -3.0990587890680543, -7.0, -7.0, -7.0, -3.274734984872738, -3.8067225030761813, -3.747334109615905, -7.0, -7.0, -7.0, -3.4499409887733377, -2.2346859743215286, -2.3351234420807065, -2.443106456737266, -2.0556020599702647, -2.192328457926367, -2.9384250560792444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.077858253926433, -7.0, -4.293064081916136, -4.882148707810854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.31893939156067, -7.0, -5.388523917575625, -4.281306136741821, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.776570440218725, -7.0, -4.077967145146871, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6173463799861105, -7.0, -7.0, -4.465182018186956, -3.903307079964174, -7.0, -7.0, -7.0, -4.634202600383421, -2.6241101320710367, -3.535167485114944, -4.446241945325413, -4.119053120904281, -4.2062320243263, -7.0, -7.0, -7.0, -2.9552065375419416, -7.0, -7.0, -7.0, -7.0, -4.089860973578503, -5.011272918351647, -5.706699864120133, -7.0, -1.8714699123021497, -7.0, -3.7808067878569203, -7.0, -7.0, -4.088065177690204, -4.225800170570545, -7.0, -7.0, -4.437306531324273, -7.0, -3.635986111800833, -4.222378265944956, -7.0, -4.598932695782928, -7.0, -3.139249217571607, -4.041989429902784, -4.112327255332538, -7.0, -4.143986189041628, -7.0, -7.0, -4.611362130666253, -7.0, -7.0, -2.9030899869919438, -7.0, -7.0, -7.0, -4.473603739435952, -2.455859567203536, -3.414221033214868, -7.0, -7.0, -3.871358848768327, -7.0, -2.1293865609616143, -7.0, -3.2930677680163307, -7.0, -3.757872028479324, -3.6459132750338443, -7.0, -7.0, -7.0, -7.0, -3.215373152783422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1259027647109168, -7.0, -4.024854948305018, -7.0, -7.0, -7.0, -5.095633048907243, -7.0, -7.0, -7.0, -2.0583372711707346, -7.0, -2.2733417616789073, -7.0, -2.3283796034387376, -3.178593294899047, -7.0, -7.0, -7.0, -2.7997998773461115, -7.0, -7.0, -7.0, -2.363074486652865, -7.0, -2.6388884247050757, -3.999695887410839, -7.0, -7.0, -2.3192217631820213, -2.4728782881402593, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9093777108309906, -3.2611204538110883, -3.504470862494419, -3.6267508536833932, -7.0, -7.0, -7.0, -2.381656482585787, -7.0, -7.0, -2.9131071077494677, -3.3457003905834424, -7.0, -7.0, -3.0356298277904386, -3.5542872095319615, -7.0, -3.4176377396522297, -4.01110502981598, -7.0, -7.0, -7.0, -3.2661532687922707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.170408411725318, -4.073094864515745, -7.0, -3.490941205356787, -7.0, -3.0189084443163274, -7.0, -2.148658732600981, -3.392609030497567, -7.0, -7.0, -7.0, -3.200303182981585, -3.9233303852372834, -2.8457180179666586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.822560336942692, -7.0, -3.062393937253195, -2.589204670642375, -7.0, -7.0, -7.0, -2.66149717917983, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6830470382388496, -7.0, -7.0, -7.0, -7.0, -7.0, -4.025483370754005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.233960138494771, -4.4076627845840965, -4.7086163311678915, -7.0, -4.4092143375767625, -2.8317202295593877, -3.9387198147823823, -4.108209731084804, -7.0, -2.3695233431351217, -4.446156448930393, -7.0, -7.0, -3.277550278524911, -2.4444825170747544, -4.715953229841805, -4.111010334527677, -4.7083954026456265, -4.408824850960789, -7.0, -2.31334740394485, -3.093615390353539, -4.407084835757768, -3.463900843761717, -2.452447312946995, -4.015778756389041, -4.711317845065442, -7.0, -3.643032984773319, -4.239441300467461, -4.711925273632879, -2.759924217918967, -3.714664992862537, -4.107498272612255, -4.709727764559769, -3.6704820018641366, -2.980507447586642, -3.534406899137877, -4.031271084270531, -7.0, -2.688839871885674, -7.0, -2.754182486538021, -4.710202014655385, -4.7124392366451895, -3.819774182176816, -3.5694491562792146, -3.3788322152077925, -4.109266296065941, -7.0, -4.254266028449126, -4.017108499147387, -3.8164815873225115, -2.4653098077679445, -4.029083320583757, -3.2631328475801404, -3.4761601726982754, -7.0, -4.412737668240323, -3.523583901029429, -3.7139858770370497, -4.237652633213792, -4.112797643468705, -7.0, -4.111220493971364, -3.693926707209632, -2.4124023237640917, -4.7099988280251885, -4.709295407172643, -3.345430913802812, -4.708760723690316, -3.35061236261552, -3.076735399100041, -7.0, -4.727354161057733, -2.805990780131231, -7.0, -3.3433347279168006, -7.0, -4.710937770328562, -3.048247531803974, -4.722214230820944, -4.711419142177214, -4.407331408000757, -4.029034578217611, -4.713431737151994, -3.651447627154724, -3.9556717184752674, -4.1181820269590945, -4.41814378957331, -2.5163393966479584, -3.5872137026351245, -3.280834364765057, -4.709303888906937, -7.0, -4.426014873609768, -3.60580214022274, -3.8798901436004236, -3.590252528893788, -7.0, -3.220054418430261, -7.0, -4.7087352461451, -4.708599340655707, -2.992654903904743, -4.7090663377095066, -3.879718312672632, -3.81424759573192, -3.5356738034257504, -3.072541652395476, -4.712784345708868, -4.233748911930145, -4.238815269239352, -4.239983131866713, -2.2999077870759956, -3.8693323168395377, -7.0, -4.245890865709575, -3.955711796961274, -3.3418616839514494, -7.0, -2.9964519684791755, -2.8936038389987706, -4.4116617867231005, -2.9962322981135032, -7.0, -3.06612783818228, -4.113918296133177, -3.581827799038108, -3.738074652823766, -7.0, -4.41230091277274, -2.7042554748129772, -3.5533408311575485, -7.0, -7.0, -3.2254032746884422, -7.0, -7.0, -4.7087012737596785, -7.0, -7.0, -3.0971651968201335, -3.9033690866007587, -3.293663834280866, -3.5400869155517314, -7.0, -3.5890704473162565, -7.0, -4.409552737891461, -3.938344571118097, -3.7135255428507334, -3.2960218189450234, -7.0, -7.0, -4.71363332438249, -3.080036758178311, -7.0, -4.4072378970769615, -4.419930978136115, -4.11541079013392, -4.010723865391773, -4.717662183104909, -3.463519723400486, -3.1937627975610106, -3.6454468328219587, -3.6410855836321, -3.0831889689140475, -3.940972785590708, -4.110244494182466, -2.5024048809087134, -4.234432913530507, -7.0, -7.0, -4.713935529890935, -4.711199635231979, -4.409611930846435, -7.0, -3.007041081284651, -7.0, -3.0947393290928233, -7.0, -3.1450642634967596, -2.3068807280891965, -4.015418439887637, -2.90395456773191, -3.374588971886516, -4.115469051738149, -3.578295305120826, -3.4172058867643305, -3.7203247174174416, -4.2391743041780785, -4.241430254748615, -4.04099769242349, -4.712085425704258, -3.6634653438911116, -7.0, -3.312607730179509, -2.7112198358301747, -3.8612415964935445, -7.0, -2.6094897826420684, -4.708539868627965, -3.1486874696646585, -4.110530790384566, -3.375871360667503, -4.410068291238362, -4.013283938717773, -3.1930008501040437, -3.6442169541060987, -7.0, -3.683554592496879, -2.882316969972196, -3.0369752047078737, -7.0, -7.0, -4.012119835804513, -4.709210580717843, -7.0, -4.711891549880579, -7.0, -4.411602872517545, -3.2251319824860447, -3.1795597697530154, -3.1168787038684527, -2.737530215043792, -4.70816585785554, -3.4807591584803594, -4.411468181457918, -4.716095203905708, -4.4076797714411935, -4.7097192910997725, -3.768399638290876, -4.719148911318181, -3.3761454342431025, -7.0, -7.0, -4.709736237854444, -4.1085565677610685, -7.0, -7.0, -7.0, -2.421550142900094, -7.0, -7.0, -7.0, -7.0, -4.713624926782461, -3.867862962726285, -7.0, -4.412628520544375, -3.4217292462999036, -4.720580984690612, -4.05479684401452, -3.2130013815482696, -4.719853121294242, -7.0, -7.0, -2.5746252397019047, -3.8768855992492965, -2.6865129952104003, -3.6722910214147975, -7.0, -7.0, -7.0, -4.409992264467171, -3.3499966177587472, -3.494046316227797, -3.3450613590263587, -3.0933438476350257, -3.4378260332318917, -3.7179699132050232, -7.0, -7.0, -4.114852747571882, -3.9505108929859967, -3.8820689444361483, -4.708021267385997, -4.233782715084948, -4.0180677317772515, -7.0, -3.5727803542787444, -7.0, -4.12104251895432, -2.938541798406638, -3.570100748491705, -3.8823862832943425, -4.019299112795343, -1.5413138885839677, -3.3865286903706164, -7.0, -2.992932931139705, -4.408375661136076, -7.0, -3.2047342663096217, -3.679155241283354, -2.8453899045964133, -3.5850415418704515, -2.7890516223748403, -3.129359328564904, -3.0884180065825073, -4.246933314148579, -2.4601914044246, -3.441620334661906, -7.0, -7.0, -4.708080810468232, -3.335650740478487, -3.1820657578164884, -4.711587918209924, -3.8098373723298224, -3.5499672901284045, -4.710760288222427, -4.4213653283855505, -7.0, -3.9004763713892565, -2.820108792023945, -3.8123366985975364, -3.592707994835791, -4.713498943292817, -3.008564688737109, -3.4949716071138606, -2.51850739505998, -4.71357453777207, -3.5785933717199003, -2.8107834962325997, -3.221107261698154, -7.0, -4.237686133897014, -4.710261259520343, -3.5569936047645743, -3.012814225271012, -3.706143411054697, -4.023417089841105, -4.408019369129767, -7.0, -4.725625818213062, -7.0, -4.713112365881025, -4.412796428716543, -3.661694397512043, -4.109266296065941, -2.5620548296563785, -4.708208375304485, -7.0, -2.543752872635506, -2.452137061828049, -2.4936441152582307, -3.7850132938291856, -3.040474730298592, -2.940446167127642, -2.883108317483188, -1.8298429342682472, -2.4731227267893687, -3.301659266551521, -3.4818803652233727, -2.2610149130438777, -2.84728947092095, -2.955453008282639, -2.3959134876036994, -2.9814017743269394, -2.2631247697617454, -2.6168996494641785, -3.097384818350209, -2.8922720043223014, -3.6563617665736747, -2.6037277197660282, -1.4033708818735386, -2.3852703943099414, -3.030387005736945, -3.0644942191796862, -2.9446954207059086, -2.6532720020956755, -3.4677478333627345, -2.306863306422832, -2.937277107785396, -2.6209142371841354, -2.7269035130189034, -2.778355189294754, -3.378158303868406, -2.964328969759512, -3.073972577349435, -2.923580200410283, -2.4602287034964188, -3.0274444318978198, -3.7145560704804033, -3.010282098769298, -2.602768412048955, -3.334297341231131, -3.4405155211122285, -3.0174990966378847, -4.723562385355725, -2.4991534837660314, -3.0405663811422534, -3.3878264901627837, -2.99520185010408, -2.614964624993414, -2.7321418065585115, -4.116159272795033, -2.339299816876127, -3.97985934080671, -4.2325302427478, -4.0559437693150855, -2.4219280998205424, -3.701183205404621, -4.71478226334653, -2.531428995267167, -2.310144621207025, -2.554358006985142, -4.710760288222427, -2.987846517260498, -4.410422906967378, -2.3313884183808486, -4.753337885232085, -3.768122743166399, -2.956745935939529, -3.6808533012337556, -4.708981466496654, -3.2419168188948717, -3.020478867616935, -3.1767011903680267, -2.6946371018559296, -3.2943884118784865, -3.454890572811237, -2.5073611639251636, -3.096899322550773, -4.713700499337772, -2.7366893243538843, -2.3190687511911268, -4.4335698364624765, -1.9876354496935726, -7.0, -3.532579224934103, -2.995401486253443, -2.5876985647538873, -4.709981891514242, -4.231664945021339, -7.0, -7.0, -3.122941047649739, -2.778374326838308, -3.9455014103827257, -3.078008384692729, -4.710269722412766, -3.544382277123792, -2.6663139371005946, -3.4943183242680367, -3.60741377771562, -4.233309231323719, -3.795694678823433, -7.0, -2.6986085824733417, -3.5922243573975843, -4.411830069000477, -7.0, -2.8509932054387264, -4.0231948243142535, -2.9219779562319195, -3.936739878637037, -3.5660837841679958, -2.675832234393879, -3.4571414688886586, -4.111590127767469, -3.9416521994105165, -4.130341810910945, -7.0, -3.3865917002612993, -4.709236030394002, -4.010969543011004, -2.356750609732126, -2.1655873706582036, -1.8424856208936586, -7.0, -3.613589771790102, -3.149248445976245, -3.53848994978385, -3.72876758516651, -7.0, -4.241181094571635, -2.948063489231294, -7.0, -4.232962245954388, -3.5485204443196916, -4.240873600020581, -3.0188888310551025, -3.7579103310516335, -3.4885341273951536, -4.1136760118971, -3.867837730406542, -4.02138778832472, -2.980371353572635, -2.333318409122339, -4.408010882423134, -3.830275825517338, -3.82865989653532, -3.943412067973837, -3.06165439200259, -3.4332222533989265, -4.710117365111816, -2.9671243503847156, -3.8773219727168056, -2.2028758014872105, -4.0296596902528306, -3.2894535727211567, -3.7181112296356043, -3.80962704189405, -1.9821867377077855, -3.809096556968516, -2.742548008123852, -3.933217246191068, -3.7225434350906466, -3.5515338599475053, -3.3551098872819316, -7.0, -3.249259521320783, -2.613996088101989, -2.95970902424643, -3.422630871027468, -2.3814797977204503, -3.2971036501492565, -3.301371093057613, -3.637206111340114, -3.1156388335343226, -2.8115671210045012, -3.762886868437604, -3.1839644940529617, -4.106972399886674, -7.0, -2.1760134858627667, -3.2657527953446097, -4.71438006121222, -3.4057446650019667, -2.9045764498757327, -3.4916912040791415, -3.28200866481907, -2.973787374579753, -3.4408933464728357, -4.028863936842829, -4.411459761879543, -4.020609853377705, -7.0, -3.116923847417229, -2.956357404797833, -1.5214019507737675, -4.708650310198278, -4.117610973351813, -4.016406500871118, -2.5595770555682282, -3.935683567701656, -7.0, -4.708692780248078, -7.0, -4.232437009220555, -7.0, -4.7100496335954745, -3.1531667488581956, -3.9406824679202184, -4.0224283711854865, -4.410895277968898, -3.809618626557482, -7.0, -4.410346942254636, -4.014680114759413, -7.0, -4.424072704144278, -4.241355521703736, -3.656344656846971, -3.1599371992043745, -3.3099060475906565, -7.0, -7.0, -3.6188523459824924, -4.7123129086813655, -7.0, -3.270774088928408, -4.713624926782461, -4.713322504987028, -4.431452222544104, -3.221454991793657, -4.123851640967086, -7.0, -7.0, -4.422483140648195, -7.0, -3.184801803914325, -7.0, -4.413576350079674, -4.708123336243728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9696488404807253, -7.0, -7.0, -3.883545175194561, -2.971275848738105, -7.0, -7.0, -3.304355866992308, -3.5245259366263757, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6483404916891735, -7.0, -7.0, -3.4046627008737222, -4.040869823702905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.868521008351567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.91221267574534, -7.0, -7.0, -2.7138264243805246, -7.0, -3.205745540942662, -7.0, -7.0, -7.0, -3.247973266361807, -7.0, -3.6318974796823285, -7.0, -2.88530980902442, -7.0, -7.0, -3.17260293120986, -3.204255678480151, -7.0, -7.0, -7.0, -7.0, -3.1565491513317814, -7.0, -3.98027614107784, -7.0, -7.0, -7.0, -7.0, -3.767007363949804, -7.0, -7.0, -3.1942367487238292, -2.716964695235721, -7.0, -7.0, -7.0, -7.0, -3.423846369199462, -2.441258614866301, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2943559851451605, -7.0, -7.0, -3.568548612811087, -3.5907304057926903, -3.3384166482463584, -7.0, -7.0, -7.0, -7.0, -3.4551495211798278, -7.0, -7.0, -3.560952218446867, -7.0, -7.0, -7.0, -3.5161385767170743, -7.0, -3.451939869365103, -3.284881714655453, -3.6731131042382335, -3.4316139029220896, -7.0, -7.0, -7.0, -7.0, -4.392749698374226, -7.0, -7.0, -3.4154741681092355, -7.0, -7.0, -7.0, -3.708760723690317, -3.4150872214535934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4638503462953234, -3.5332635167787148, -7.0, -7.0, -4.07505399469838, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.763502865467597, -3.4683177855649125, -3.119420863442087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9454685851318194, -7.0, -7.0, -3.7690201911798535, -7.0, -7.0, -7.0, -7.0, -7.0, -2.589726256254237, -7.0, -7.0, -7.0, -7.0, -3.9020573108084666, -7.0, -7.0, -3.8296590289710872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4278184833943377, -3.989271791641693, -7.0, -7.0, -3.9562933202213877, -7.0, -7.0, -3.6321534835106326, -7.0, -7.0, -7.0, -7.0, -3.2533380053261065, -7.0, -3.6731131042382335, -7.0, -3.704579449696299, -7.0, -7.0, -7.0, -3.1196051722007563, -7.0, -4.090363879471718, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145538235712233, -4.759085037637032, -7.0, -7.0, -7.0, -3.2464985807958007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.166548514738755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8107028609471167, -7.0, -7.0, -7.0, -7.0, -3.7221195383899373, -3.395501124305626, -2.6344898655257043, -7.0, -7.0, -7.0, -1.2304489213782739, -7.0, -7.0, -3.295860195625301, -3.5034729010565577, -7.0, -3.8658735282078145, -7.0, -7.0, -7.0, -7.0, -3.5186455243303114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4176377396522297, -3.9500726297501574, -7.0, -7.0, -7.0, -4.355116139076884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9584045967789923, -4.466931416163418, -3.894758994371892, -7.0, -7.0, -7.0, -3.485437481076301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.789228057267335, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8498106890941513, -4.093736784562339, -3.7482973971048668, -7.0, -3.8211858826088454, -5.02044001210619, -3.80543288813214, -7.0, -7.0, -7.0, -3.5873741720730656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6056686020868565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.816959005394395, -3.7686381012476144, -3.9955474494751373, -7.0, -7.0, -4.722304786874328, -4.999565488225983, -7.0, -7.0, -4.376385314272538, -4.62369369776916, -7.0, -7.0, -7.0, -4.911573053768388, -7.0, -4.23620965371706, -3.817664512233857, -7.0, -7.0, -7.0, -7.0, -4.078268268673513, -4.17070165581607, -3.777771076361577, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9817884153334724, -7.0, -3.6639834546082666, -7.0, -4.674098390094781, -5.067636150031888, -7.0, -3.392609030497567, -4.035909798456609, -7.0, -3.6565596501083624, -7.0, -7.0, -7.0, -4.265671410801216, -4.207131483023054, -7.0, -3.9665640840973104, -3.8478193472952396, -7.0, -7.0, -7.0, -3.703635237583896, -7.0, -3.879404687616423, -4.108264735866179, -4.592821355189226, -7.0, -7.0, -7.0, -4.95751151145448, -7.0, -4.6279169106070865, -4.091596620810058, -4.228374690421907, -7.0, -7.0, -4.438890277816841, -4.007498847687, -7.0, -3.1830626791773424, -3.8323172699222616, -4.122314197968806, -4.493165169463191, -7.0, -4.343551365571408, -4.957961473262439, -3.1277525158329733, -4.87123034602681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.360768133085603, -3.4292676664331685, -3.0485805158968846, -7.0, -7.0, -3.7483237228304267, -7.0, -7.0, -7.0, -3.7777891874348675, -7.0, -4.499047539376685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3463529744506384, -7.0, -7.0, -7.0, -7.0, -7.0, -4.60094024073866, -5.095981367848225, -4.091779472763749, -7.0, -7.0, -3.0020700214018694, -7.0, -3.521399628115376, -7.0, -7.0, -3.0046079422403533, -7.0, -7.0, -7.0, -7.0, -3.717087724927019, -7.0, -7.0, -7.0, -7.0, -3.057475915826254, -3.1003274582102502, -7.0, -7.0, -3.589726256254237, -7.0, -7.0, -3.313053285378446, -7.0, -7.0, -7.0, -7.0, -3.61554676628177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.106870544478654, -3.130076332517164, -7.0, -7.0, -3.8210547550468883, -3.1717365381636147, -7.0, -7.0, -4.013216539624441, -7.0, -7.0, -7.0, -3.747489492258673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.303793008415947, -7.0, -7.0, -4.250432201420758, -7.0, -3.504742636271688, -7.0, -7.0, -7.0, -3.6822353569025643, -3.4013143626917874, -7.0, -7.0, -7.0, -7.0, -4.101179784380764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.455758203104137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6646419755561257, -7.0, -7.0, -4.359450596829359, -7.0, -7.0, -7.0, -3.291313338918062, -3.131378035763099, -7.0, -7.0, -7.0, -7.0, -7.0, -3.735878227256238, -7.0, -7.0, -3.6630409748939745, -4.156839096701946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.539189050875863, -7.0, -7.0, -3.325925955771466, -7.0, -3.6379897807846855, -7.0, -7.0, -7.0, -7.0, -7.0, -3.908195392671248, -7.0, -2.8221680793680175, -3.79140991566716, -7.0, -3.004751155591001, -3.1341771075767664, -7.0, -7.0, -7.0, -7.0, -7.0, -3.563599728881531, -7.0, -7.0, -7.0, -3.3960248966085933, -7.0, -7.0, -7.0, -7.0, -7.0, -2.909405985706936, -7.0, -7.0, -7.0, -7.0, -3.5732198271144218, -2.4003220836047983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6503458731237406, -3.232742062720737, -3.71717102683231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.671481400086431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6267508536833932, -3.6784273224338673, -2.950364854376123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.975967643841769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8217099972983766, -3.4679039465228003, -7.0, -7.0, -4.367318640929692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5509617522981762, -3.379577433327807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.240324555090434, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3201462861110542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0720215357300305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4764627337718037, -4.2795985099045675, -7.0, -7.0, -4.122897874121538, -7.0, -3.674125982742708, -3.5809249756756194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7391568368159476, -7.0, -3.470924753299968, -7.0, -7.0, -7.0, -2.9006401839826004, -7.0, -2.92272545799326, -7.0, -7.0, -7.0, -3.376211850282673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.23581535680208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.641350150325748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.823329295252085, -7.0, -7.0, -7.0, -7.0, -3.8371674062278354, -7.0, -2.7612140831684076, -7.0, -7.0, -1.2304489213782739, -7.0, -7.0, -3.9900278987702946, -3.7368743616484226, -3.3562171342197353, -7.0, -7.0, -3.184691430817599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.330210784571528, -7.0, -7.0, -7.0, -7.0, -4.43277694076486, -7.0, -7.0, -3.682686478249768, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4983105537896004, -7.0, -7.0, -7.0, -3.0513454993365388, -4.682235356902564, -7.0, -7.0, -7.0, -7.0, -3.7513560997253936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6947806360120614, -7.0, -7.0, -7.0, -7.0, -3.425075097063868, -3.344624454648622, -4.036352282404115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7241939195143297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.890867938811441, -3.703744069681171, -3.9740970037941312, -7.0, -4.302806962741421, -7.0, -7.0, -4.5805828768143675, -7.0, -4.673057788321386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.531210593459676, -7.0, -7.0, -7.0, -7.0, -7.0, -3.928637222466674, -7.0, -4.6766478920100125, -4.322074505773784, -7.0, -7.0, -7.0, -7.0, -3.9745270439853426, -7.0, -3.6131861871396045, -7.0, -7.0, -7.0, -7.0, -3.348499570283838, -7.0, -3.3402457615679317, -4.15608957773648, -7.0, -7.0, -7.0, -3.962340918525596, -4.378933624250314, -7.0, -4.436226275270583, -3.516204734761517, -7.0, -7.0, -7.0, -7.0, -7.0, -4.991345711774112, -4.709702343683791, -5.104312948890889, -7.0, -7.0, -7.0, -7.0, -7.0, -4.80320097026682, -7.0, -7.0, -7.0, -7.0, -7.0, -4.481270596619721, -7.0, -3.911370707116138, -7.0, -4.420764137471791, -4.486458816884649, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30628560200552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5647695962352564, -7.0, -3.704779473476742, -7.0, -7.0, -4.341157437445437, -7.0, -3.2889196056617265, -7.0, -3.2643455070500926, -7.0, -4.7967962800566575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7874392197822315, -7.0, -7.0, -3.234213474838595, -7.0, -7.0, -7.0, -7.0, -3.4707778833351246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.681874122128647, -4.192901826109565, -7.0, -7.0, -7.0, -7.0, -3.4446692309385245, -7.0, -7.0, -7.0, -7.0, -3.8557379379199967, -3.4499409887733377, -3.586249638866042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1952768094473876, -7.0, -7.0, -7.0, -3.4534916154801154, -7.0, -7.0, -4.30412415273291, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.358486888100237, -7.0, -3.034227260770551, -7.0, -3.5283252460556915, -7.0, -4.159206133646325, -4.244573972817435, -7.0, -3.4345689040341987, -7.0, -7.0, -7.0, -7.0, -3.659345635746177, -7.0, -7.0, -3.2362852774480286, -7.0, -4.092896010921856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4265193941438925, -7.0, -7.0, -2.3229081045244717, -3.894897317933243, -3.513111011656089, -7.0, -7.0, -7.0, -7.0, -2.694605198933569, -7.0, -7.0, -7.0, -2.711338481578628, -4.040364955860061, -7.0, -7.0, -7.0, -7.0, -3.143014800254095, -7.0, -4.263866763229076, -7.0, -7.0, -7.0, -2.625826713285711, -2.8258586820285867, -7.0, -7.0, -7.0, -7.0, -2.9030899869919438, -5.1414027353497795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7985739217489467, -7.0, -7.0, -7.0, -3.235931180529099, -7.0, -2.9497693741580635, -2.793161529245551, -7.0, -7.0, -3.4423229557455746, -3.0398105541483504, -7.0, -7.0, -2.1484484035233837, -7.0, -3.5686709780098966, -4.149773177559665, -7.0, -7.0, -3.1020905255118367, -7.0, -3.4323277922616042, -3.633367445117007, -7.0, -3.4307198878632823, -4.046199160534498, -7.0, -2.8792870723193187, -7.0, -7.0, -3.575707301476683, -7.0, -7.0, -2.617000341120899, -3.4446692309385245, -7.0, -3.1931245983544616, -7.0, -7.0, -7.0, -4.276145095448474, -7.0, -7.0, -7.0, -7.0, -3.424881636631067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.672744198306599, -7.0, -7.0, -2.8724476477890133, -3.32990612340021, -3.1736596536320567, -2.668851648082519, -2.852479993636856, -2.8172347304254983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.395093308677923, -4.152418307438716, -7.0, -3.8408585540418794, -7.0, -4.993987016217477, -7.0, -7.0, -3.3059958827708047, -7.0, -7.0, -3.697665162647674, -2.9965116721541785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.645422269349092, -7.0, -7.0, -3.677272283237335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.056371179475529, -7.0, -7.0, -7.0, -7.0, -3.8428462897078353, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8796692056320534, -7.0, -2.3154455182245846, -3.377306251068199, -2.1158481557195747, -3.5766292484476274, -7.0, -2.946452265013073, -2.888959198348298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.019479781993769, -7.0, -4.280578370368076, -7.0, -7.0, -3.4340973416453218, -7.0, -2.978363147083883, -3.28454352295875, -7.0, -3.373463721632369, -7.0, -7.0, -7.0, -7.0, -3.631139250256811, -7.0, -3.665674780993893, -7.0, -7.0, -7.0, -4.041116227969485, -7.0, -7.0, -7.0, -3.758003009299799, -7.0, -3.2137832993353044, -7.0, -7.0, -7.0, -7.0, -7.0, -3.383994789441733, -3.5781041291341573, -7.0, -7.0, -7.0, -2.870403905279027, -7.0, -2.7902851640332416, -7.0, -7.0, -7.0, -7.0, -2.882410684373968, -4.131843130804694, -5.712976141428744, -7.0, -2.8920946026904804, -7.0, -2.8221680793680175, -7.0, -2.150756439860309, -3.3296012483565187, -7.0, -7.0, -7.0, -2.5921767573958667, -7.0, -7.0, -7.0, -2.7427251313046983, -7.0, -3.7383345436865523, -7.0, -7.0, -7.0, -7.0, -3.0149403497929366, -2.5069557791831683, -7.0, -7.0, -7.0, -7.0, -3.304418713886279, -3.11634203918834, -7.0, -2.1063609088067503, -7.0, -4.31527743947181, -2.354535264225396, -3.135539711053947, -7.0, -4.409992264467171, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3582680592021807, -3.0161136663589083, -7.0, -3.196728722623287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.448190836779987, -7.0, -2.0528761166771035, -3.4510696933190945, -7.0, -2.9574476493145365, -3.2038484637462346, -4.2867739423480264, -3.4152516526787737, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9740509027928774, -2.9546765869186435, -3.0265332645232967, -3.484442207642407, -2.8068580295188172, -3.5237464668115646, -7.0, -5.129432718891559, -7.0, -7.0, -7.0, -7.0, -3.152135396861876, -7.0, -7.0, -2.9849771264154934, -7.0, -7.0, -2.7172543127625497, -7.0, -3.698535492562001, -7.0, -7.0, -3.6182573448404014, -7.0, -4.011842207926475, -3.909948072212358, -4.574252990834661, -7.0, -3.490590487028833, -4.54150019848575, -3.7748817658187965, -7.0, -7.0, -7.0, -7.0, -7.0, -3.720572720364261, -7.0, -7.0, -7.0, -2.5479504264025215, -2.8488047010518036, -7.0, -7.0, -7.0, -7.0, -3.0874127989033524, -7.0, -7.0, -4.117933835039642, -7.0, -7.0, -7.0, -7.0, -4.372819981678968, -7.0, -7.0, -3.880138768941943, -3.976074731619874, -7.0, -7.0, -4.718717536873734, -7.0, -4.103906298088718, -7.0, -7.0, -4.320395570236469, -7.0, -7.0, -7.0, -5.08689702671432, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.67704090631023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.613831254971802, -7.0, -4.369039505473969, -4.111717932914938, -3.407447560198671, -7.0, -4.328216457500718, -7.0, -5.235435013044649, -3.6906390117159673, -7.0, -4.441019215250851, -4.2636218679914135, -3.9021298594796567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14638499107598, -4.788947139131619, -5.706414779723215, -7.0, -7.0, -7.0, -4.654388341190573, -7.0, -5.4053446523686475, -3.598790506763115, -7.0, -7.0, -4.321474151030555, -7.0, -4.782623096183696, -7.0, -4.213597436747359, -7.0, -4.119937377051041, -4.487067637716316, -7.0, -4.165298745583048, -7.0, -7.0, -4.87038439475624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.468701711894003, -7.0, -3.1827284181242677, -7.0, -7.0, -3.739829364386337, -7.0, -3.2984163800612945, -7.0, -3.7451528950769006, -7.0, -4.194992773454235, -7.0, -7.0, -7.0, -3.824646414718352, -7.0, -7.0, -7.0, -7.0, -3.7758288144646124, -7.0, -7.0, -3.2518814545525276, -7.0, -7.0, -4.010935664704385, -7.0, -7.0, -7.0, -3.7325860376752544, -4.787743771646467, -7.0, -7.0, -3.4584363903733517, -7.0, -7.0, -7.0, -7.0, -4.250224769901964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.232742062720737, -7.0, -7.0, -7.0, -3.0812122449879595, -7.0, -7.0, -7.0, -3.5122840632818537, -7.0, -3.844135321686674, -7.0, -7.0, -3.417527049073855, -7.0, -3.5019332341249347, -3.4565178578052627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.800717078282385, -7.0, -7.0, -7.0, -3.1245246022879822, -3.3137617962924364, -7.0, -3.4596939764779706, -7.0, -7.0, -7.0, -3.554125581513013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.298249291813928, -7.0, -7.0, -3.944025929336147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.185919720174312, -7.0, -7.0, -7.0, -7.0, -4.0936492798811175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2960066693136723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9916690073799486, -7.0, -7.0, -7.0, -7.0, -3.89593334272974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.69121414838279, -7.0, -7.0, -3.377943380255784, -3.686725621074542, -3.188807997012431, -2.5425349705996863, -3.1425235421112268, -3.699447465710474, -3.148867325157049, -7.0, -3.67797175281074, -3.6866809474663245, -2.96201837643487, -2.0567308621182074, -1.1578397323559333, -2.620526432062427, -3.6767850304192056, -7.0, -7.0, -2.7326617601288525, -3.4470287577940395, -7.0, -2.932727367301529, -2.2774330193339303, -3.2327844143207414, -3.516094465754475, -3.9787737843301225, -2.3544220657953714, -1.9237704465403997, -3.5192590585137475, -2.9663105116413515, -3.1076762465264816, -7.0, -3.139384266388006, -7.0, -3.7442538557311544, -3.6892200372638357, -3.1809140036160857, -7.0, -2.8507227965727586, -7.0, -3.1555689118377597, -3.9875322027298394, -2.8519568522583176, -3.0089483966758594, -3.1126050015345745, -2.7857826631404676, -3.692582562274909, -3.4085791254086675, -3.78830981210705, -3.7169210731667612, -3.3361393986085566, -2.527256693606394, -7.0, -2.0587409756789365, -3.0383078526301324, -7.0, -3.227543930734867, -2.6095208124648503, -4.007918390645599, -3.534026106056135, -3.1081420233274226, -7.0, -3.225223103636106, -7.0, -3.027151494017887, -7.0, -7.0, -2.888067113407437, -7.0, -3.8603380065709936, -2.5444923353895272, -7.0, -3.59402403573142, -2.812281362367997, -7.0, -4.055531225050898, -7.0, -3.99140330258004, -3.07379687751059, -7.0, -3.215329068686353, -7.0, -3.4722443526734725, -4.004321373782642, -3.38746101632035, -3.4009522278609032, -3.037625669914719, -4.033021444682911, -3.0374119207946, -4.0986783295764395, -3.814180981040187, -3.982768577251012, -7.0, -7.0, -3.5593878738130678, -3.5836521085420436, -3.2080716725856444, -7.0, -4.064701275737697, -3.705564390520156, -7.0, -3.979001748474721, -2.851117168304362, -3.981501488148247, -2.803570909565455, -3.0696269919490073, -2.3741917050629118, -2.490223584110092, -3.699881066467242, -3.6901074394563307, -3.4148480526441123, -2.980746885240167, -0.6360041990547592, -3.407603325351417, -3.9784544333652287, -2.5720579899263045, -2.737123471010412, -2.782798255494358, -3.408324780170415, -2.847536369651228, -3.2870438849608807, -3.398287305357401, -3.7274328054155808, -2.797137648656306, -1.6999396228754549, -3.716337287889549, -2.625826713285711, -3.272968181699753, -3.382242240651941, -7.0, -2.8489247133446307, -2.664858851706402, -7.0, -3.679109782081773, -4.2098767758979125, -7.0, -7.0, -7.0, -3.6838572054003462, -7.0, -2.880351799071886, -2.7270891965298407, -2.81088563461834, -4.143826390839561, -7.0, -3.2213881533063446, -3.980821166644336, -7.0, -3.542908378823037, -7.0, -2.942393921090259, -7.0, -7.0, -1.843952492375385, -3.1796607274946935, -7.0, -7.0, -3.7405205860536648, -3.7237429174156507, -3.6840819838753727, -7.0, -3.2539031250960253, -4.064120905829622, -3.1047904955244556, -4.03909671044145, -2.941328323980986, -4.033101936663848, -3.521486774595432, -2.76128758244713, -7.0, -3.9792751475910233, -7.0, -2.5272861094566683, -3.5154764413823756, -7.0, -7.0, -2.843133072080949, -7.0, -3.2732328340430454, -7.0, -3.855700830835437, -2.3204022188429327, -7.0, -3.539295700875927, -2.7302101047623504, -3.547856717375962, -2.9439888750737717, -3.4276078113473605, -3.193641308090492, -3.3196472881834227, -2.8828902938682437, -3.648717709275342, -7.0, -3.6600745572208857, -7.0, -4.255995726722402, -3.198499990015866, -4.492425112776086, -7.0, -2.0490704791043313, -7.0, -2.1828543360486603, -2.957998876560866, -2.3452920271477096, -3.9923325590474645, -2.415588309411352, -2.368946360360289, -2.6046888069715166, -7.0, -3.0188895442801207, -4.201506367053238, -3.510893378365528, -7.0, -7.0, -3.9925535178321354, -7.0, -3.287667391274135, -2.8813846567705728, -3.2842953482305264, -2.7948799895623955, -2.4705068031677473, -2.8309599038401214, -3.5094521554936255, -4.322573203899594, -7.0, -3.9942291408176986, -3.044670394919461, -3.540496318620011, -3.9796849238270258, -3.9849771264154934, -2.844865319914786, -2.6158287008014494, -3.7305804190595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2563568863955257, -2.912528278286801, -3.023023702987968, -3.024895960107485, -7.0, -3.989271791641693, -3.1596960703744554, -3.5251312252008757, -7.0, -3.306253420522117, -2.6225907694500417, -7.0, -3.5778650407463743, -2.891927534220675, -4.036229544086295, -7.0, -7.0, -3.1719749686032896, -4.04688519083771, -2.189955918629514, -4.006466042249231, -3.3499966177587472, -7.0, -3.9900278987702946, -7.0, -7.0, -4.163965982954884, -2.0656960916656666, -2.3879725044726805, -3.902954248756145, -7.0, -7.0, -3.984617313236748, -4.02209829746114, -3.475271569801028, -3.371621927176021, -7.0, -3.99140330258004, -3.022057020601165, -7.0, -2.885522757873026, -7.0, -3.5746484921796697, -2.5261901121876553, -2.9773078135080184, -4.072323438293041, -3.32956058217531, -3.1025209626503196, -2.904560992080643, -7.0, -2.8288286230919457, -7.0, -7.0, -1.679567653486021, -3.085488786659366, -2.4627118904578484, -1.9834639036932529, -3.8805277781988052, -4.041984501486787, -3.61714018800084, -2.2809948266715914, -4.135195643370445, -2.624467211464796, -3.9789105771755717, -7.0, -7.0, -3.0225461938888416, -2.704777275913766, -7.0, -7.0, -2.4614610083620283, -3.211876648386651, -2.363533636880855, -3.216473803384961, -3.8476035028253683, -7.0, -2.6150658413436996, -3.0419845014867866, -3.7035492982382308, -2.9682305969102893, -3.1817396773133635, -3.3696183681731737, -7.0, -3.1835829923510173, -2.0656782194975314, -1.5947506413102113, -3.975845225467567, -3.0565660880728815, -2.9076800242424197, -2.395256480886022, -1.8485279434560256, -1.4235552874960704, -2.2732563758039754, -2.9806849743633146, -3.975845225467567, -3.2178597940702534, -3.6898414091375047, -2.745941820182873, -4.006423252507643, -2.5366231805133514, -3.99370069482035, -2.02071386904202, -7.0, -7.0, -3.253481597485425, -4.5328562543112625, -7.0, -7.0, -4.783009785003973, -4.5143219139450625, -7.0, -3.836296982759114, -2.988958534263733, -7.0, -4.115144351793107, -7.0, -4.186164961727415, -5.035645830977186, -2.7586442281355095, -7.0, -4.750006699477232, -3.5198654798127627, -7.0, -4.471233018649645, -7.0, -4.926664788909112, -4.44507463277493, -3.5551750900198105, -3.6393071563607533, -7.0, -3.7827432771138936, -3.5421849794668856, -7.0, -3.6596500299986263, -7.0, -4.75301588461289, -4.478912638929306, -7.0, -7.0, -4.325905450354342, -7.0, -7.0, -7.0, -3.6212195705347923, -3.2322335211147335, -3.901995116585794, -3.298894643645755, -3.269564828153454, -3.434153571066601, -3.6373181507329417, -4.053846426852253, -3.359799471686457, -3.4310879340564138, -2.34956530647751, -2.018567843634294, -2.902197215252984, -2.724811610504629, -7.0, -3.1459490312866523, -3.894758994371892, -7.0, -4.184379080658596, -3.4347285417797577, -3.1822243810265145, -7.0, -3.029221394253928, -3.5865392788050334, -4.413043974836716, -3.9904720535256195, -2.174956836603337, -3.2155935061708187, -3.204172515101434, -7.0, -4.6424265961372715, -2.6212593923832506, -3.9305924884425982, -7.0, -3.3313694445848774, -3.0385358691662154, -2.912822005835123, -4.1165745397769165, -3.006774003996861, -3.7117228918272347, -2.56099245477133, -3.8214370998255576, -3.2271150825891253, -2.5304116602699116, -3.343911641883861, -4.103256233355051, -3.323090768869078, -3.2166935991697545, -2.9360778889459787, -2.81352831808339, -3.9823918536435667, -7.0, -3.9801852369473347, -7.0, -2.424291655008933, -7.0, -3.0935572398057647, -3.012492105236467, -2.5778327537276855, -7.0, -3.7392162193937257, -2.0820754602559584, -3.759554535696884, -4.044382947073537, -3.2895889525425965, -2.4143465095431558, -3.9826781933834843, -1.997850861270173, -3.274388795550379, -3.3991543339582164, -4.049528122277718, -7.0, -2.703525857283128, -2.3924091398153755, -7.0, -3.999174055588485, -3.5754765086019, -4.000564216165375, -2.148394076647004, -1.2149155345054852, -2.8887409606828927, -3.4993662825855276, -2.905278555134687, -7.0, -7.0, -3.0834399077661003, -3.481380730938571, -4.002573311204613, -7.0, -2.958159426578339, -2.8156515263728443, -2.7310795776557337, -2.7982507258405214, -7.0, -3.4265519237382676, -2.966125542521808, -2.5009222391903005, -3.1414497734004674, -2.6105841244865338, -3.1817619459703046, -3.0999630070456647, -7.0, -2.8560841179056817, -3.5389505620143615, -7.0, -3.038262407104784, -3.494548806405942, -3.1137147160910255, -7.0, -3.018423082826786, -3.4890791624977924, -7.0, -3.21622247191661, -7.0, -2.439963935920905, -4.2288621285305625, -3.203382607459245, -2.2599178382806886, -3.475053440975798, -3.1587644305616105, -3.5512059437479064, -7.0, -4.20725725871634, -3.998520882835038, -2.482873583608754, -2.8468229248922086, -3.4474681309497557, -2.844138148029867, -4.023293623036605, -7.0, -2.6380326155436737, -2.196775443561625, -2.4457366606080297, -3.578486396989049, -2.6516656039229356, -3.4759252997015397, -2.2270393595261635, -2.540621409441836, -2.9541547643169124, -2.7186932752898665, -3.7224693858840308, -2.840022407303227, -3.6804714924842656, -7.0, -7.0, -4.076931574555656, -4.009153331907709, -4.075510464524414, -2.7859904363508843, -7.0, -2.5705244084026475, -2.7468213460131796, -1.2734329281934174, -3.3744917249438164, -3.9995654882259823, -2.8299065411191857, -7.0, -3.174447484146129, -2.8343253137447935, -7.0, -7.0, -3.7344797894255772, -3.4122084658816805, -2.478166954695277, -7.0, -7.0, -7.0, -3.200394450079095, -7.0, -7.0, -7.0, -3.488325050357719, -2.5379003019699025, -2.299328972154782, -7.0, -3.222629776969852, -7.0, -3.993788813818705, -7.0, -3.697403723200488, -3.2155242642956994, -4.029708362514895, -3.0842783057223655, -3.8705502062680823, -3.1779531201340987, -7.0, -7.0, -4.096249383189612, -3.697447307372525, -7.0, -2.9444934006362775, -3.704193429194155, -4.003762020828246, -3.4918517497214157, -7.0, -3.0642707529740063, -7.0, -7.0, -3.576418141733162, -7.0, -3.0178997784978576, -3.329967072734659, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.732956369575625, -3.8133808067338557, -3.7926717891415676, -2.887456539837175, -2.040307529721854, -3.2257047780485264, -2.918248827749846, -7.0, -7.0, -0.9223282460529392, -2.6785390710610772, -3.7841892053809607, -7.0, -7.0, -7.0, -7.0, -2.011607069177962, -3.054404108446577, -7.0, -7.0, -2.9605398778739156, -3.296957546032856, -3.742882171437273, -7.0, -3.136910727481376, -3.187168065939373, -7.0, -3.3366042522547557, -7.0, -3.7267272090265724, -7.0, -7.0, -3.5303277897780863, -7.0, -2.4595600073300266, -2.7180862947830917, -3.0029062314830117, -7.0, -3.076209454415462, -7.0, -3.452016565962548, -3.0620803445744653, -2.878737165940484, -2.8144854219696707, -3.043833654133147, -7.0, -3.9014038268252516, -7.0, -7.0, -2.6028442751136165, -3.878579238062219, -2.707774501898884, -3.5641134764517686, -3.449092531119419, -2.9863984686808234, -3.2749656245392864, -7.0, -3.7742979384992776, -3.775173385424787, -7.0, -3.460070543294161, -3.2287595554356354, -3.1756567472816637, -7.0, -3.4225077658680756, -3.0176890582210874, -7.0, -3.229383167513614, -2.9152558940469784, -7.0, -3.395792186900733, -3.3479277621718744, -7.0, -3.2455743529902925, -7.0, -7.0, -2.942928844081547, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2948518494980625, -0.9394031466208936, -7.0, -7.0, -1.722654040330429, -1.5907875097913582, -1.7707342208950423, -3.1212314551496214, -7.0, -2.6933164903265205, -2.7744506055050415, -1.7031972085222742, -1.2320285860833922, -2.653051634172873, -2.0303914491326585, -7.0, -7.0, -7.0, -3.306425027550687, -3.7214808547700495, -3.1559430179718366, -3.3194530784907674, -3.0527900992334316, -2.7747146038137953, -7.0, -7.0, -3.4831592097169795, -3.1917303933628562, -3.015030256527944, -7.0, -7.0, -2.4768694167990635, -2.6151606643165564, -1.4414949041096847, -3.773127924033335, -2.9922220374838435, -1.5648467666795383, -7.0, -3.1646873716413735, -7.0, -3.7133141013747264, -3.3074247193348603, -3.2765192467342565, -3.246055196906444, -7.0, -7.0, -2.789563086219014, -3.5882156652289985, -7.0, -7.0, -3.1260540604734306, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8874485002499535, -3.3066394410242617, -1.0719353440555819, -2.5489578218497693, -2.6817687053632726, -2.7477648067532146, -7.0, -7.0, -3.7895102040902544, -7.0, -2.9451275607861436, -7.0, -7.0, -7.0, -2.889004929377786, -7.0, -7.0, -3.524201327535919, -3.194930399217724, -7.0, -3.321184027302314, -3.8101652845431495, -3.861773296718693, -7.0, -7.0, -3.010582608444064, -3.8112397727532894, -7.0, -3.3038558443656467, -3.7453871213200087, -7.0, -7.0, -3.766635886310268, -7.0, -3.435525851498655, -7.0, -3.2734973252095054, -7.0, -3.5991732173529125, -7.0, -3.0976476867820897, -2.9499872660775432, -7.0, -7.0, -3.9357087478426633, -7.0, -7.0, -3.805908455074197, -2.9754974565302335, -3.4862178846679726, -7.0, -2.8763140831365024, -7.0, -2.6704314093606056, -7.0, -2.960153542690461, -3.1298831553406212, -2.6853508197908234, -7.0, -3.5222355133379852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4106928961632534, -7.0, -7.0, -3.8568496787251725, -4.439222132071866, -3.7745899502647946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.111732856611098, -2.7285059613658573, -3.0316697940536033, -3.124143004805479, -7.0, -3.7443712273318606, -3.753889331459834, -7.0, -7.0, -7.0, -3.3619166186686433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.81424759573192, -4.062473867166674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.981637424655769, -7.0, -2.5849770155376826, -3.1500268879309865, -7.0, -7.0, -7.0, -3.126114310736762, -7.0, -2.841381819328237, -7.0, -3.494046316227797, -3.295860195625301, -3.7368743616484226, -7.0, -4.163965982954884, -7.0, -2.5969425089920484, -2.8212951253416323, -3.7663384752512874, -2.8470239610502954, -3.284881714655453, -7.0, -3.7927417858347487, -3.4056309008934176, -3.2700962814203303, -7.0, -3.7393349601960795, -3.7939300067726847, -7.0, -7.0, -7.0, -3.5410172928456567, -3.167481436198042, -7.0, -7.0, -7.0, -2.7457153853103002, -2.1343802928411417, -7.0, -3.1770673239782408, -7.0, -7.0, -3.635031120946007, -7.0, -7.0, -3.599992177584098, -3.735319392367857, -3.2234959409623944, -3.1303873817883154, -3.246806220166817, -3.127535862467454, -2.8542345765249766, -7.0, -7.0, -7.0, -1.338855653016986, -2.8695250628572273, -7.0, -7.0, -3.5643109099606027, -7.0, -7.0, -3.745855195173729, -2.4066298088486584, -2.761401557498631, -3.780677274433368, -3.348158775313901, -3.2853322276438846, -3.039017321997412, -2.0385958961296025, -3.716523724333125, -3.7634279935629373, -3.4375920322539613, -3.469559330634179, -2.706595875112968, -7.0, -7.0, -7.0, -3.3116479226525204, -3.131578568842297, -3.7000110623221123, -3.836830286488879, -7.0, -7.0, -3.559487681797765, -3.7385427409287852, -7.0, -3.464638559095033, -3.360356702117789, -3.7434313651466837, -3.0314322280053934, -7.0, -7.0, -4.343733454537848, -4.805507654575986, -4.369234416606825, -3.952598734529773, -3.905765050916453, -3.7537055938395905, -7.0, -2.8913183835707033, -3.508518945641213, -7.0, -7.0, -3.793964905280631, -4.057582431413954, -4.114873582939299, -4.155133521965051, -7.0, -3.9370830455786803, -4.1683747008805305, -4.19041574703329, -4.101695532777102, -7.0, -4.442059730584969, -3.7698018112929326, -3.309596552000989, -2.986473147467338, -4.1162091258034, -3.7981238562219866, -7.0, -7.0, -3.0074836024192964, -7.0, -3.6770176510941748, -4.411737521817357, -4.308329596317398, -7.0, -7.0, -7.0, -3.4056877866727775, -7.0, -3.0926447886982458, -7.0, -3.2968676113707205, -3.304888879148899, -3.492585798277992, -1.9855315734532346, -2.8350059725018575, -3.3679147387937527, -2.2557597558295988, -3.2091276107865587, -7.0, -4.510250018728974, -3.103155305052969, -2.8879894216431103, -7.0, -2.685443151803357, -2.371337287669071, -7.0, -2.6768128503198643, -7.0, -7.0, -7.0, -2.9142077165291074, -2.3304081594443957, -4.166343830003034, -7.0, -7.0, -7.0, -3.2214142378423385, -4.0317315399458264, -3.5323520060651012, -3.075520892513991, -4.327481541402221, -7.0, -3.5071978624095173, -3.599268842327689, -3.861175835513029, -3.6414741105040997, -2.908773627744193, -2.899507835399982, -3.071596807492829, -2.6447831309233574, -3.4633703272924072, -2.9162188771060786, -3.4464503579779815, -2.967495974245274, -3.733317662782867, -7.0, -3.636287252098513, -3.240674027620307, -3.0661483724233816, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3719524902252824, -3.545430829465351, -2.368385340810993, -7.0, -3.823213313282668, -3.064881008648573, -3.555094448578319, -3.352504098638387, -7.0, -3.0134271270706963, -7.0, -3.3814503138271546, -2.644635503768153, -3.4559862390673195, -7.0, -7.0, -7.0, -3.0678609473534806, -7.0, -7.0, -4.030963842378275, -3.454387467146955, -7.0, -7.0, -2.5839540689101295, -7.0, -3.33139837151611, -7.0, -7.0, -7.0, -3.5423812529322762, -3.541283570850919, -7.0, -7.0, -2.7103777725439344, -7.0, -3.105453410538649, -7.0, -3.5029730590656314, -2.4259105639374527, -7.0, -7.0, -7.0, -2.8975583683720445, -3.9800033715837464, -7.0, -7.0, -3.4815859363676225, -3.758609142659744, -2.916980047320382, -2.6522463410033232, -4.309757882316366, -7.0, -2.834791465503346, -3.2049877041871517, -7.0, -3.3182025096096512, -7.0, -7.0, -3.799994944688714, -3.058552548706088, -2.928986233688613, -2.7049508491377243, -3.460747541844197, -7.0, -7.0, -3.7707415837527742, -7.0, -3.7272565137622964, -7.0, -3.0598788326016764, -2.6280350619091335, -3.794766797940821, -7.0, -2.8080917649591837, -2.587738559420033, -3.1033149257643444, -3.8483738838446016, -3.3554515201265174, -3.5828584622244994, -4.0080889362915775, -7.0, -3.0763042807313594, -3.9702073588068547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.924574624041236, -7.0, -3.1708932853355596, -7.0, -3.9831750720378127, -3.202945801696211, -7.0, -2.921859811938469, -7.0, -3.3373926976485757, -7.0, -2.729355395130064, -3.670987603010034, -3.9820449790714902, -7.0, -2.8600716907681347, -3.1773200201636933, -3.108712057787089, -3.7664872062396944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.044657333234866, -7.0, -3.5280163411892014, -7.0, -3.7567121601647715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.354876422516234, -3.161368002234975, -3.061603249608375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8048206787211623, -7.0, -7.0, -3.4837298990000236, -3.94733567594874, -7.0, -3.948070481518941, -3.353868165568988, -3.403763761701065, -2.6292322636646066, -7.0, -3.270539094260548, -3.0385943597739256, -3.0535585922132595, -7.0, -3.9561684304753633, -2.3530556915282013, -2.1914367737841034, -2.9452894946212806, -3.0684641664541177, -7.0, -3.9540011676815703, -3.3470371337849536, -2.093275728352962, -3.165487137148075, -7.0, -2.0139578976422134, -2.264080969652978, -2.6177294820802555, -3.359835482339888, -3.946452265013073, -2.2761274421265845, -2.646715543393583, -3.965577957910528, -2.92973814254741, -2.8341481053996023, -3.9525018478630236, -3.475864810477393, -3.4889265663567914, -2.8705711023867333, -3.9588981947107715, -2.610165674027065, -3.3459125879178178, -2.9868938242680527, -3.2646761821488246, -2.7197410408069143, -3.6547539332529304, -3.122777405533776, -2.7000440709473397, -2.90655949500245, -2.141777003410443, -3.66138669778177, -3.077231599016813, -3.587299293713931, -1.5092877328770893, -2.7753748316507534, -2.30967921752499, -3.048325250931222, -1.761791203377117, -2.933963422726495, -3.489349009009622, -2.8607985521941135, -2.631287632221304, -3.375434977745074, -3.2028060658459765, -3.2826221128780624, -3.9529860651970554, -2.93104159179914, -2.1079754391582166, -2.659024363596743, -3.4774106879072515, -7.0, -1.5358280206796917, -7.0, -2.5942662377207433, -2.4286861041401493, -3.953131225183445, -2.868174040859638, -2.607009269756605, -7.0, -3.027879409207207, -7.0, -3.9600424557268417, -1.046014774029043, -2.7174624577374917, -3.485437481076301, -7.0, -3.571514733712986, -3.9739125704197047, -3.283188116453424, -2.44973545423003, -3.1066158013985747, -4.004622265700783, -2.121679960668872, -2.5669528005652698, -2.1949455422460873, -3.2513948500401044, -7.0, -3.344667305256552, -2.4742162640762553, -2.540571646441333, -2.623676956096569, -3.65571454961871, -2.492721597147762, -3.675319983339292, -7.0, -3.946697837245742, -2.5079294331360718, -3.949390006644913, -2.568848838333719, -3.091842749738098, -1.5699371688614308, -2.317561393668647, -3.6692238739308056, -3.6587266773270137, -3.385338107809055, -3.2152849801139682, -2.1863912156954934, -3.2805783703680764, -7.0, -2.544729322714663, -2.7960993949284183, -2.6548294872160803, -3.076958858073013, -2.484056206386171, -2.4166807626547953, -3.492620722043192, -3.708505880955237, -2.856961145846947, -2.928119371404327, -3.288651577789465, -2.7052025967595776, -2.8152630801675933, -7.0, -3.496145181388866, -1.3240510899823537, -2.49735205752346, -7.0, -7.0, -2.660975405102324, -7.0, -7.0, -7.0, -3.350780865347739, -3.9467960272714606, -2.3327138236457876, -3.2935203938852355, -2.275514596639852, -2.065426316232098, -7.0, -3.902601130666531, -3.6475296664449806, -3.9581336756762355, -3.2123208031419757, -3.995393852839795, -2.816414233820151, -3.947090464219622, -3.4832543766904958, -2.932704318635906, -2.9914878626507724, -3.948070481518941, -7.0, -2.8988517058385757, -2.995108457744741, -3.6522463410033232, -3.0416996535532257, -4.004020273253242, -2.86053763630648, -2.827651924858077, -2.9688648578400763, -2.6825552912734185, -2.8897325502419475, -2.9256401970004773, -2.5076507428312356, -7.0, -7.0, -3.642662331442035, -3.3743358452839174, -3.6603910984024672, -3.958468318366944, -7.0, -2.6917573560607426, -3.115705584897513, -3.739999309401968, -7.0, -2.602028056736095, -2.4108090192081186, -3.075774997355713, -2.720060024749243, -2.7445063432261585, -3.518908573691414, -2.9520655901850503, -3.398981066658131, -3.3119233087683617, -3.0858700833983947, -3.1558563583922012, -2.8231995765243703, -3.4891613074478007, -2.7713201816071438, -7.0, -2.624433032288266, -2.8391427171910273, -2.540789578241321, -3.6545615547417434, -2.874675052177361, -7.0, -3.3717757087299467, -7.0, -3.046841871852895, -7.0, -3.1221222197687104, -2.3409789022165466, -2.5057664361691927, -7.0, -2.6903571983690386, -4.015960198014766, -2.9116341316000836, -7.0, -3.946452265013073, -3.3589337176143736, -3.046446386384199, -3.4779889762508893, -3.061640934061686, -7.0, -3.36726271478424, -2.755401682048161, -2.2011454740196874, -2.8779667865031113, -3.219779278778598, -7.0, -3.360735378529271, -2.821513528404773, -2.227435630121624, -3.9474337218870508, -3.475816413031318, -2.5581704369024063, -2.724103325108292, -7.0, -7.0, -7.0, -7.0, -3.958516103423041, -7.0, -7.0, -3.705521613422667, -2.771410537267909, -7.0, -7.0, -7.0, -7.0, -3.6738499773429494, -3.6707559422151332, -7.0, -3.3729120029701067, -3.3427515672308834, -2.6481902486483087, -2.329989509639039, -2.6043136389437773, -2.860808415686055, -7.0, -7.0, -1.3576684505145458, -2.8140393908849854, -1.5777708887153012, -7.0, -3.3450613590263587, -3.5034729010565577, -3.3562171342197353, -3.3582680592021807, -2.0656960916656666, -2.5969425089920484, -7.0, -2.0358363276893177, -2.9537312739689847, -2.1873444291831783, -2.4942009905231504, -3.9527440240148985, -3.3906260478341657, -2.846723598300994, -2.897784131423016, -7.0, -3.6589172200445175, -3.294378035587241, -3.3561215062369856, -3.5269850685599957, -7.0, -2.744540022083776, -2.8112397727532894, -3.2908801052671617, -3.3471738364132073, -4.000173683058465, -3.0500714737493366, -2.2460004869402757, -7.0, -2.8287227557743795, -7.0, -3.1324883979895946, -2.1855529128395355, -3.108776369535781, -3.036479181663958, -2.8872420998960684, -2.6412036063023283, -2.866962102446818, -3.2913318435509678, -2.7976747937505664, -3.1359305235761137, -2.403424968774618, -3.946599625015133, -7.0, -7.0, -2.555466514980946, -2.4230714934960376, -3.963693405238019, -3.4944792655103964, -2.4461227639106142, -3.0040346161083726, -3.117395598804608, -3.1853532490306473, -2.678193089172533, -3.0193009590931648, -2.4913164995492116, -3.4966183382484775, -3.274942566083686, -2.8392937923597086, -2.0989869485301065, -3.1175533996403244, -7.0, -3.3857849588433355, -2.849655016246537, -1.9660799510358338, -7.0, -3.5042895854462257, -7.0, -3.3740147402919116, -2.401491236089779, -1.789187032292866, -2.7410271294508175, -3.6482624057480444, -7.0, -3.036269495742815, -7.0, -7.0, -3.675044735955893, -2.9024448521908397, -3.66138669778177, -2.2121220818387344, -7.0, -7.0, -3.147066775257319, -3.829413136929344, -7.0, -3.498103697638082, -3.999869692108268, -3.390880782945212, -2.946288473013431, -3.002340719023859, -2.2019399337761323, -2.7735670489260587, -3.3925210899319325, -4.154241330167298, -3.7040718331758637, -4.129758349398127, -3.043605512125445, -4.1721064777924965, -3.346384273825947, -3.060230250097313, -4.281873856870123, -3.98391181439848, -4.0841829114204735, -4.1472897692695145, -4.434297385124508, -2.8941621612398625, -2.142347745144511, -4.172748838982743, -3.7315001246145556, -3.6760531246518715, -7.0, -3.158881948644272, -4.357668093043634, -3.706197776014635, -4.468952557265534, -7.0, -7.0, -7.0, -4.201915782740697, -3.719934712141819, -3.143308763870973, -2.018017951790213, -3.980866554582079, -3.008615941064652, -3.005539729015686, -3.205664407371687, -2.391545786109887, -2.848262446579062, -3.424514126822372, -2.5478473545856404, -2.917051738708869, -3.759592308645975, -3.8573807486930707, -2.792478696306499, -2.487705415687573, -7.0, -2.738829325480311, -2.85314753632743, -7.0, -2.8411210108843323, -3.5505680437113667, -4.114777731971562, -7.0, -2.8499391912595735, -2.7242179266966917, -4.090214370967739, -7.0, -3.2771506139637965, -3.963031875053898, -3.3405014000346305, -4.158121150337495, -3.5741404480439325, -4.0068295849344855, -3.918833842068481, -7.0, -3.4676229024178253, -3.101710259449637, -3.5377435590296185, -3.3147798252899086, -2.6134894531087443, -3.0224283711854865, -3.038128173022914, -2.384510219368008, -3.6742639196922253, -2.2994462066840407, -3.45014789315114, -3.476940260975887, -3.7102321082951955, -7.0, -3.3111178426625054, -3.1091965308476417, -3.5458481008534783, -7.0, -7.0, -7.0, -7.0, -3.8308131351407133, -1.8312226028239351, -2.299141220240316, -1.5225415500375052, -7.0, -2.8974579076179072, -2.3583098729804317, -2.8287404332962187, -2.8394780473741985, -3.3550202683299375, -2.4795064594884484, -7.0, -2.5461004834142376, -2.228414422871205, -2.6070818778952654, -3.7211095747344105, -3.3831568450325724, -3.174558185305092, -2.8116755253669115, -7.0, -7.0, -3.0106330626283864, -7.0, -3.9753858489894673, -2.341606539426177, -2.4430393548678095, -7.0, -2.5048222618840112, -7.0, -3.6536465912546623, -3.299416493405678, -2.6801712307043437, -2.8510773029398084, -7.0, -3.4448641829020725, -2.0474565968529115, -7.0, -2.3245154042476206, -7.0, -2.74342265320835, -1.4326116352142744, -7.0, -3.6542728270977105, -3.430840687404714, -2.404175594836316, -2.612850055101375, -7.0, -3.0499928569201424, -2.6626679063304084, -3.494432898726399, -2.428049496084509, -1.9017122104576005, -3.6818199109880556, -7.0, -2.1542606375239313, -2.3302634204025954, -7.0, -1.9868509706251407, -7.0, -7.0, -3.169059607803795, -2.6216747070193795, -2.0873167387804843, -2.469124104866961, -2.6410135085221333, -3.300465045540311, -7.0, -7.0, -3.3653475652695106, -3.2008808842713874, -7.0, -2.5286264657570126, -1.7772683830244533, -3.3919050068671566, -7.0, -1.8379315022237082, -1.8349213979782772, -2.604365428721707, -2.948779613737823, -2.4277218284229525, -3.0105312308878815, -2.6334684555795866, -2.6881527555915663, -2.269077790844336, -2.998225795694823, -3.2159458392045663, -3.5105003274058215, -3.9494875899465036, -3.9456162792267317, -3.591940663624408, -4.051345499336539, -2.545352940204395, -2.7696882025975755, -2.0605408948064348, -3.321722674346009, -2.80174661921946, -3.0049209520857496, -2.486599130358205, -2.2167368891063215, -7.0, -2.7266843220979933, -7.0, -2.4131286270329313, -2.2773395080498693, -7.0, -7.0, -2.486108325822895, -2.463440504592086, -2.142299301357695, -3.021602716028242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.119945364700318, -7.0, -2.599211049530462, -3.6645479622465467, -7.0, -3.478566495593843, -3.6614813978436156, -3.674355853325486, -3.9676883504533125, -2.8027737252919755, -3.398764385277643, -3.121723945637367, -3.673941998634088, -7.0, -3.972480549876476, -3.9469923407483725, -4.0718083918331285, -3.96773513178388, -7.0, -2.909599687897347, -3.6738499773429494, -3.1946993054635864, -4.069557104582695, -7.0, -2.8614149186359965, -7.0, -3.954531942626914, -3.7255441224863532, -7.0, -2.963180469568511, -3.398287305357401, -7.0, -3.9439394644722165, -7.0, -3.6921416093667836, -7.0, -3.693463127219531, -3.707995746422929, -3.190261645023611, -2.866877814337499, -3.4073909044707316, -7.0, -2.970209473041643, -7.0, -7.0, -7.0, -2.414973347970818, -2.574872720123483, -2.983175072037813, -3.036309443724438, -7.0, -7.0, -3.695831772826692, -2.386923809374673, -3.60859734044574, -7.0, -2.3881108067741996, -1.8815234700203676, -2.0725080174785213, -2.22212884925967, -3.0879587894607328, -1.8312160648801672, -2.0114042816397744, -3.0248139326293106, -2.69675950864028, -1.5676347070372152, -3.400192488592576, -7.0, -2.946615995262667, -2.4868014257497535, -2.808464181258226, -3.1773055843418603, -7.0, -2.334518605101907, -3.721728198572788, -3.0938052541904826, -3.406199423663313, -3.029789470831856, -2.82033284489941, -2.9817431236418557, -2.6667642211250104, -3.719082573901486, -2.177107335873833, -3.4072775708370235, -2.6480596170682786, -3.1920793644398113, -2.352828858482244, -2.4429016775527446, -1.802540912426264, -2.549820373239367, -7.0, -3.0425755124401905, -2.263969709649385, -3.745465168670727, -3.0520780304841693, -3.150065315969936, -3.2247919564926817, -2.5897102986388356, -3.212986184736668, -2.870044593762679, -3.1027766148834415, -7.0, -2.4105585475204636, -7.0, -3.0399426187629923, -1.8946411942600978, -7.0, -3.855216194733363, -3.067133927073089, -7.0, -2.7134905430939424, -7.0, -7.0, -2.520337942903055, -3.1158766642684443, -2.6764441823287006, -7.0, -2.6032045367100345, -2.6230106014763095, -2.2220224326748212, -2.7241665993820963, -1.5038345977629068, -7.0, -2.5814207285366333, -3.4220423867575565, -2.6283597328011896, -3.6982745766743674, -7.0, -7.0, -2.841359470454855, -2.8827774391015835, -2.639066881040868, -3.407900540142635, -3.2275595172362737, -7.0, -3.6924062348336304, -3.690993032099869, -2.3987919689126604, -7.0, -1.6148441756713314, -2.871280972857973, -2.0039671161887616, -1.932232548261451, -3.1301728888925355, -3.0147724740730637, -2.983325529161058, -3.073058160988836, -2.3720290118169007, -3.4479328655921804, -7.0, -2.5185139398778875, -2.6449307079135873, -2.3709679555581826, -3.4492469194900117, -2.9061329346974785, -2.867162094299147, -3.430800424624181, -3.278410601475816, -2.6546577546495245, -3.0582403888560155, -2.719858389150438, -2.1143683277196983, -2.9293678292400998, -3.400537989391946, -7.0, -2.4928140951397983, -2.265466419871781, -7.0, -3.392169149489736, -3.1425771609205344, -7.0, -7.0, -7.0, -3.7025166974381505, -7.0, -2.976005892508129, -3.2142255094151593, -2.3095833760147775, -3.4915017662373264, -7.0, -7.0, -3.3933119147002, -3.7113853790984517, -2.4862439983320517, -7.0, -2.161722544441352, -7.0, -3.71566914240099, -2.3569018525943553, -2.579250665393085, -3.693463127219531, -7.0, -7.0, -3.775974331129369, -2.398634324538392, -2.8731025277551283, -3.789369153591482, -2.9393944374196264, -3.0570952896126675, -3.02208453894371, -2.9649482675333863, -3.0909630765957314, -3.4274049553102737, -2.7517684311534323, -3.419955748489758, -3.3903167684708406, -7.0, -3.743588150159904, -7.0, -3.2345172835126865, -7.0, -2.381098044543058, -7.0, -3.894777440059079, -7.0, -2.685338597906292, -2.282687707978652, -3.7484206224675685, -2.923055522758436, -2.4861417453935593, -2.8723748223537955, -2.7918819541323385, -3.182414652434554, -3.3237332367838985, -3.065878352857392, -3.0856472882968564, -2.6848453616444123, -3.424799994656599, -3.356694958541127, -7.0, -2.92236858804445, -3.5083276745471244, -4.121477770204095, -7.0, -2.8505663306447584, -7.0, -3.2298950557747066, -7.0, -3.308279770272725, -3.716504163773217, -3.427080188436359, -2.1304659536982493, -2.230252363564598, -7.0, -2.2774818738891915, -4.133363239048624, -3.1609184995397808, -7.0, -7.0, -3.23946632295603, -3.697316541732383, -3.7063763558396903, -3.246662682245667, -7.0, -2.885361220031512, -2.5807522321540293, -1.964912873816937, -3.078891619840223, -3.8592675919480897, -7.0, -2.5717919901587556, -2.5819009187422806, -3.160843537171095, -3.089728533074736, -3.0028569260611206, -2.3691495680897208, -3.187520720836463, -3.1855421548543754, -7.0, -7.0, -7.0, -7.0, -3.688330818112266, -3.2234094022589295, -3.4924810101288766, -3.1928083410077157, -3.086448816328559, -2.9136372740190546, -7.0, -7.0, -3.4394905903896835, -3.2579184503140586, -7.0, -2.534660575828444, -3.4904267214991997, -2.8007857903277626, -3.067112203642098, -2.3661645491690666, -7.0, -7.0, -7.0, -2.8427825345659374, -3.1148110738380637, -2.539618543181053, -3.0432050388876584, -3.0933438476350257, -7.0, -7.0, -3.0161136663589083, -2.3879725044726805, -2.8212951253416323, -2.0358363276893177, -7.0, -3.152441238058955, -3.4800069429571505, -2.9600741977588614, -7.0, -3.293657141449485, -2.750092830418938, -2.648603928135281, -7.0, -3.71474876072506, -3.2949069106051923, -3.41077723337721, -3.1873091622635195, -7.0, -2.1354639462909284, -2.0249984726730275, -2.8110534202587316, -3.856910060300786, -7.0, -3.154175460464973, -2.689486448364248, -7.0, -2.7620011370674376, -3.6994908452722046, -3.7460890430562004, -1.4552075276553922, -2.957196671383207, -2.7864287425245773, -2.3364025484535027, -2.4530289344127074, -2.324830980134619, -3.113887669957648, -2.787589268849698, -3.7072588938204274, -1.4415129606146837, -7.0, -7.0, -7.0, -2.801189254192592, -1.533620412909489, -3.721150843749684, -3.4340097093697395, -2.0401374979206164, -2.2612628687924934, -2.167787096267102, -3.4204508591060683, -2.9752479412406814, -3.039889797736181, -2.393308097750179, -2.363713593014251, -7.0, -3.3914814754495763, -2.7426798207116816, -3.760462770747876, -3.74020473550745, -2.275064432627511, -2.820697951673249, -1.4346404576189893, -7.0, -7.0, -3.2305340688115245, -2.349915522861571, -2.172144044533389, -1.5707500201996958, -2.002705893375925, -2.791515211941625, -7.0, -2.4412236742426123, -3.1113465408397287, -3.4346487302419235, -3.0431263979672254, -2.6912288854662814, -3.4178866903508798, -1.7526431342571807, -3.6869042695681773, -3.2143138974243994, -3.279637191397853, -4.201349321982644, -4.36359317885827, -7.0, -4.447576613522922, -3.4936593893103947, -3.7782236267660965, -3.0686671411769404, -2.9696705018636695, -4.144044637110949, -7.0, -4.0897638544916886, -3.851113049853365, -4.11361333017611, -3.424799994656599, -7.0, -3.56643749219507, -3.529869441846403, -7.0, -3.7953759433255803, -7.0, -4.116986791074787, -3.889170927490876, -3.1534083167071616, -3.389621664607619, -7.0, -4.096605900418895, -4.296379953771385, -7.0, -3.3281008587026437, -4.275311354541811, -3.636696802260469, -4.406625327867205, -4.301832698184397, -7.0, -3.917977882592908, -4.078565559317117, -4.038792309231842, -3.9943171526696366, -3.3158368132320577, -3.0511525224473814, -3.630343109828716, -3.275746726696121, -3.0420741003156624, -3.174447484146129, -3.5076366460222475, -7.0, -2.9011006530221057, -3.3763031557559207, -7.0, -3.8071018705893316, -2.6194835119620117, -2.879129136471997, -7.0, -3.1596492103844547, -3.198931869932209, -7.0, -3.182577675890636, -3.6697041939618917, -3.958516103423041, -7.0, -3.197433250218922, -3.1356263628227774, -4.431429792218557, -3.712986233594383, -2.5873835309602837, -7.0, -3.4197951747985944, -7.0, -4.298926935444693, -3.515211304327802, -3.542908378823037, -7.0, -3.6270755470762954, -4.021230658479703, -3.4910280061636856, -3.4500437195797073, -3.062540203047516, -3.131056990114102, -3.506780736959667, -3.3152539527018177, -3.263951517653659, -2.561290725973153, -3.8627962621128322, -3.304221164444191, -3.67472530682938, -7.0, -3.4446692309385245, -2.999159551305879, -4.082623825798577, -7.0, -7.0, -7.0, -7.0, -3.9828589423120753, -2.7805101861860018, -2.8722210396534766, -2.2649068816547584, -7.0, -3.803047210491129, -3.041425585009148, -3.837588438235511, -2.808818425092124, -3.408833321776418, -3.1556829873392385, -3.69810054562339, -3.2583395325646, -2.651889840089335, -3.733598460961339, -3.2163638637641165, -3.949999542859922, -7.0, -2.8771312847935695, -7.0, -7.0, -7.0, -7.0, -3.741387992479269, -2.260141565650559, -2.5886637957802043, -7.0, -3.4688197748230705, -7.0, -3.2279723558282107, -4.165620175981658, -3.2459991511977875, -3.671985639697291, -7.0, -2.815396603595091, -2.334989586483437, -7.0, -2.7862188721316765, -7.0, -3.4818724103106633, -2.458078374515982, -7.0, -3.7065471026403576, -2.8808770809852247, -3.3029799367482493, -2.7340935447008627, -3.7279477095447966, -3.091315159697223, -2.8564267724702446, -3.735119634081872, -2.6851213670441716, -2.8266300482253013, -4.002209272988015, -7.0, -2.4983105537896004, -2.7100609229151154, -3.8107700112343634, -3.48737408483543, -7.0, -7.0, -7.0, -2.8166389448984614, -2.424804525369085, -3.0863598306747484, -7.0, -7.0, -7.0, -4.060584531360865, -2.882036383746232, -7.0, -7.0, -3.216759516219574, -2.6331047079116674, -7.0, -7.0, -2.703823426271219, -2.2709954180459664, -2.891588136764973, -2.484235111053663, -2.9931186605828173, -2.6606283529737342, -2.4736859899176977, -2.534772444926707, -3.1404223298412495, -7.0, -7.0, -2.681618065583093, -3.6960067152185454, -3.3878345723908105, -3.8346590868996135, -3.563303059369412, -3.446537167073644, -3.862131379313037, -3.013998045006722, -3.8169038393756605, -3.2769670381470917, -3.3673120617569547, -2.723407376846712, -2.7115662221083117, -3.4288634082992564, -2.3278871661342855, -7.0, -2.5128226971247, -3.0028856882374884, -7.0, -7.0, -3.1923583395461788, -2.5792499247558665, -2.6385935525920776, -2.8973914245675183, -7.0, -7.0, -3.690993032099869, -7.0, -7.0, -7.0, -3.187077336947106, -7.0, -2.1701252091917578, -3.7246035153967165, -7.0, -7.0, -3.719248398447946, -7.0, -7.0, -2.83714634390906, -3.7845459740545224, -3.1227450294577785, -3.5324995860946626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3512405258734037, -3.740678425227455, -7.0, -7.0, -3.552242228356702, -3.844725627973226, -7.0, -7.0, -3.348499570283838, -7.0, -3.4746047207049298, -3.004894321731049, -7.0, -7.0, -3.538824988937904, -7.0, -7.0, -7.0, -2.627557866535542, -3.898560644939712, -3.8816128724783483, -7.0, -7.0, -3.5306909461351617, -3.5786010117639133, -7.0, -7.0, -3.2983369335263792, -3.4485324127444223, -3.397360562979804, -7.0, -7.0, -7.0, -7.0, -3.145600357652248, -2.996011044453897, -7.0, -4.03450813677917, -3.1519342490354973, -7.0, -7.0, -7.0, -3.917558020825436, -3.401802479247905, -7.0, -3.599817595608217, -3.866759783495108, -7.0, -7.0, -7.0, -3.436162647040756, -7.0, -3.9657189702442213, -7.0, -3.2284516907144, -7.0, -2.6217437266564927, -7.0, -7.0, -3.1425980108920646, -3.873611196996467, -3.722921711759407, -7.0, -7.0, -7.0, -3.876044550246095, -7.0, -3.020560949095022, -3.475525915039281, -2.8728613710631836, -3.7926717891415676, -7.0, -3.2570182334190068, -3.3494717992143856, -7.0, -7.0, -7.0, -7.0, -3.0774284721180742, -7.0, -3.01747601299904, -7.0, -7.0, -3.4628470358316736, -7.0, -3.4619859715365204, -7.0, -3.8294967497201826, -3.6471383660631504, -3.010730096257863, -7.0, -7.0, -7.0, -7.0, -3.0950742053076143, -3.3140253085157405, -7.0, -7.0, -3.651423400759052, -7.0, -3.4913149929920424, -3.6851144690465394, -3.4266196859018763, -3.896691526562884, -2.795850342116538, -3.5069557791831683, -2.9902343565960714, -7.0, -7.0, -3.247138226100887, -7.0, -3.457124626303409, -3.5237464668115646, -7.0, -2.9264710693074494, -7.0, -7.0, -7.0, -2.988084942758665, -3.824516328007209, -3.029586671630457, -2.60422605308447, -3.1157768761589635, -2.541274399474468, -3.8522359394118872, -7.0, -7.0, -3.8828659197216293, -3.441909267199942, -7.0, -7.0, -3.921686475483602, -3.9864582127373063, -3.719124035974352, -7.0, -3.32376758329678, -2.834323931127906, -7.0, -7.0, -7.0, -4.543248315911594, -3.875234946450165, -3.1744959193752993, -3.1061483839765227, -7.0, -7.0, -3.094204843455665, -3.0581886920930996, -7.0, -7.0, -4.470145775899696, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3850619961350192, -3.5852350633657752, -3.1340920685160083, -4.042142183064956, -7.0, -4.1386184338994925, -7.0, -7.0, -3.879038505237237, -4.244697601296708, -3.3317983298469445, -7.0, -7.0, -7.0, -3.080690136910718, -7.0, -3.118991800195975, -3.062689403096359, -3.2830749747354715, -7.0, -3.8864343196289384, -7.0, -7.0, -3.45540324233088, -3.904985881099363, -3.8365139988906716, -2.816407029618638, -7.0, -3.04598910818908, -3.843481943039958, -7.0, -7.0, -3.5593679094633317, -3.84060787900929, -7.0, -7.0, -3.464012366249414, -7.0, -3.4021409672924676, -3.8232785569516707, -2.978446826907944, -3.139290486943393, -7.0, -7.0, -3.5241796783007557, -7.0, -3.9316612396844812, -3.591287265058499, -3.60400993241223, -3.5761685196078083, -7.0, -2.3435133465677946, -2.8045111537405574, -3.7327956982893293, -7.0, -2.621320560864068, -3.610606937465461, -3.4080702858871854, -7.0, -3.07995263964635, -7.0, -7.0, -7.0, -3.893040111957118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.840294331611436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.52283531366053, -3.9940090331236133, -3.590817721976693, -7.0, -3.541516840831034, -7.0, -7.0, -7.0, -7.0, -3.919966701483387, -2.895422546039408, -7.0, -7.0, -7.0, -3.130140705819276, -3.836640541572774, -7.0, -7.0, -2.574857708475501, -4.01789087330904, -7.0, -3.8221680793680175, -7.0, -3.8356271662098975, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6047119317276204, -3.485224400125799, -3.2010897317287084, -7.0, -7.0, -7.0, -3.1979450755719085, -7.0, -3.049174935762869, -7.0, -3.4378260332318917, -3.8658735282078145, -7.0, -7.0, -3.902954248756145, -3.7663384752512874, -2.9537312739689847, -3.152441238058955, -7.0, -2.985650973690949, -3.555880064636805, -7.0, -7.0, -3.6554265877459184, -3.470410490975931, -7.0, -3.8386602259889413, -7.0, -3.5354207180561734, -7.0, -7.0, -3.1436912310222143, -3.4669565452730775, -3.8781194846971676, -3.2502735862322463, -3.890979596989689, -3.033214968915833, -2.91437427261162, -3.831677849191467, -2.9283275615919133, -7.0, -3.561280314290289, -7.0, -7.0, -4.1820721038573865, -3.494618336168116, -3.4871030080369696, -3.2095150145426308, -2.3730499983581987, -3.4509159516872203, -3.51824553732899, -3.0186684981886174, -7.0, -7.0, -7.0, -3.773164534737837, -3.1679920981107994, -7.0, -7.0, -3.6406801532776654, -7.0, -3.917663024327375, -7.0, -2.871105700985585, -7.0, -3.394510049817891, -3.235654676956949, -7.0, -3.065997527906678, -3.5307829207652426, -3.245918565044522, -7.0, -3.3931889920552485, -3.47513697171306, -3.6068111469189637, -7.0, -3.8669368177316397, -7.0, -7.0, -3.6110502851446897, -4.058274146685951, -7.0, -7.0, -7.0, -3.0339763250254843, -7.0, -7.0, -2.8587777373054495, -7.0, -3.540767303210374, -2.916316600515288, -7.0, -7.0, -4.181281308004646, -7.0, -4.0935792634395645, -7.0, -4.761687331986636, -3.774779652677459, -7.0, -3.7511635847694937, -3.914147389545718, -7.0, -7.0, -4.1189918001959756, -4.7672078298343825, -4.324854277099497, -4.6463449013162945, -2.976112707149161, -4.249801465031356, -4.95344557213989, -7.0, -7.0, -7.0, -2.3379091740877396, -4.397227181043161, -4.002133650511155, -7.0, -4.440090074313282, -4.713347714848314, -7.0, -7.0, -3.913913146172642, -4.011993114659257, -4.42908175442676, -4.4348402532975735, -7.0, -7.0, -7.0, -7.0, -4.538058205908395, -4.33150827628639, -3.259244597605882, -3.5648435325438337, -3.8207759774515604, -3.6411375648112925, -3.8403884196021063, -3.426592582305156, -3.438621448045396, -3.9249508889156104, -2.942289137919038, -2.972611176217687, -3.3650197428165347, -4.051589813697189, -3.087151162750692, -3.069595713827564, -7.0, -2.8908497591813425, -3.6296474104571437, -3.8292394281413893, -2.8127726716782617, -3.8715875285292607, -7.0, -7.0, -3.3842617011209635, -3.005757876815866, -2.301314657665541, -7.0, -4.0429297333431595, -7.0, -3.753605586292964, -7.0, -3.8135843241504817, -4.257558587444218, -4.0543065658484, -7.0, -3.8315338496935043, -3.6181134975829194, -3.545801757159276, -7.0, -3.176207055478685, -3.252922346195411, -3.7002098042781433, -3.335917852253625, -7.0, -2.8073496539487848, -3.905341566811897, -3.2908801052671617, -3.35042475664405, -7.0, -3.30362797638389, -3.2539993085092718, -4.41338359662314, -7.0, -7.0, -7.0, -7.0, -7.0, -3.597073275682156, -3.3236645356081, -2.6958480495106723, -7.0, -7.0, -3.604349502341101, -7.0, -3.4348349343530247, -7.0, -3.7686381012476144, -7.0, -3.7238470364005316, -3.107972707737791, -7.0, -7.0, -7.0, -7.0, -3.731387283168788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1994351876202076, -7.0, -3.7385691715335407, -7.0, -7.0, -7.0, -4.001520705885766, -4.227340280666198, -7.0, -7.0, -2.847043569352527, -7.0, -3.2582061260688273, -7.0, -3.413634997198556, -2.9315849874708, -7.0, -3.832508912706236, -7.0, -3.8889092592635315, -7.0, -7.0, -7.0, -3.3961993470957363, -3.854063011866421, -3.4274861090957858, -2.968428005865279, -7.0, -7.0, -3.9838517189914717, -3.1960840270593827, -7.0, -3.702128838286881, -7.0, -7.0, -7.0, -7.0, -3.197286263105973, -3.353916230920363, -4.003503614742536, -3.8904769089601707, -7.0, -7.0, -3.8487431818956837, -7.0, -7.0, -3.919444210465237, -2.9499125186171895, -7.0, -7.0, -3.13756508756235, -2.9098322781643, -3.410608542568368, -7.0, -3.2745042226558834, -7.0, -7.0, -3.878981123393736, -3.325233362316072, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.863679667875898, -7.0, -3.69877452783365, -7.0, -7.0, -4.13931224557867, -7.0, -3.6504046698680317, -7.0, -3.8997110945711446, -7.0, -2.6414741105040997, -2.9907423617216766, -7.0, -7.0, -3.9002032130168933, -3.570017265641518, -3.4910533754308664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9115837009810757, -7.0, -7.0, -3.833147111912785, -7.0, -7.0, -7.0, -3.6335189520021656, -3.892150277901364, -3.977266212427293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8178296997456056, -3.973797259774123, -3.5571461423183632, -3.8561244442423, -3.6771961860105447, -7.0, -3.9398186628213794, -7.0, -7.0, -3.924744352479949, -7.0, -4.027920136405803, -7.0, -7.0, -7.0, -2.8976270912904414, -7.0, -7.0, -7.0, -7.0, -2.9339931638312424, -3.357553719743082, -2.8709888137605755, -7.0, -3.7297046213121874, -3.0812752795293337, -7.0, -3.1702617153949575, -3.0719345821481365, -3.087451821000778, -7.0, -7.0, -7.0, -3.156851901070011, -7.0, -2.956552591917399, -7.0, -7.0, -3.262213705476417, -3.256453958628053, -7.0, -7.0, -7.0, -2.4649364291217326, -2.871378315564175, -7.0, -4.02576216145282, -7.0, -7.0, -7.0, -7.0, -3.4560622244549513, -7.0, -1.6997799316716846, -2.641143471369817, -3.4959603948817053, -7.0, -3.139099411347294, -7.0, -7.0, -3.0002894331875893, -2.85227662464138, -2.5403294747908736, -7.0, -7.0, -7.0, -2.052673695567914, -7.0, -2.6833561560246784, -3.2592354021987338, -2.0718820073061255, -7.0, -7.0, -7.0, -2.7114456684692576, -7.0, -7.0, -7.0, -7.0, -3.2659963704950794, -2.958181497564948, -2.676513709253526, -3.161368002234975, -3.1357685145678222, -2.142363390979571, -7.0, -3.0969794945667846, -3.2338418642756133, -7.0, -3.5491259267581112, -3.6808597696765273, -7.0, -2.891398059667226, -7.0, -7.0, -1.4628414949830963, -3.4643404846276673, -3.2089785172762535, -7.0, -7.0, -7.0, -7.0, -3.0360297306565434, -3.428134794028789, -7.0, -2.694276063274084, -2.855115160771781, -2.256671200295871, -3.1360860973840974, -7.0, -3.2434101416537113, -2.515873843711679, -2.8135809885681917, -2.8919089670894906, -3.17435059747938, -2.6549054442039144, -7.0, -7.0, -7.0, -2.1928246860085694, -2.8254261177678233, -3.510813010512496, -7.0, -2.3439648605201104, -3.2168342101165988, -7.0, -7.0, -3.3344537511509307, -2.2783724736954567, -3.4965837344890947, -7.0, -7.0, -3.479143247978613, -2.939419403329317, -2.864934659051497, -3.000650953629595, -3.0206098533777044, -3.3988755657510406, -7.0, -3.589670402034894, -7.0, -4.094541001456839, -7.0, -2.381776702512341, -3.0869823477002094, -7.0, -7.0, -1.9722967085221035, -3.1050557829687464, -7.0, -3.1179338350396413, -3.906370962112948, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8571816735501194, -3.793231447056521, -2.780173243642594, -3.2771506139637965, -3.2702128548962426, -7.0, -7.0, -3.182129214052998, -3.0474695746198566, -4.087461966171819, -7.0, -7.0, -3.196452541703389, -3.274388795550379, -3.707083298825079, -7.0, -7.0, -2.8383767747778115, -1.9292296494062615, -7.0, -7.0, -7.0, -7.0, -2.906200314184372, -7.0, -3.446537167073644, -3.4063698354692673, -3.2377949932739227, -3.72922746495659, -7.0, -7.0, -7.0, -7.0, -7.0, -3.184123354239671, -7.0, -3.1863912156954934, -7.0, -3.822189880752621, -7.0, -2.2243747736660806, -2.8072235859495214, -7.0, -3.447778009294621, -2.0410165097497748, -7.0, -2.9033613362553186, -3.392696953259666, -2.584654239988151, -2.8651039746411278, -7.0, -2.4762688609584846, -2.5286596452349897, -3.1359273350054684, -7.0, -2.3743011729043864, -2.6040716921509444, -3.015340700301741, -7.0, -3.2010555635620643, -7.0, -7.0, -7.0, -2.9168047518661746, -7.0, -7.0, -2.9587685942707274, -3.1870975005834774, -7.0, -2.73453314583352, -4.372304301812888, -3.2024883170600935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1420764610732848, -7.0, -7.0, -3.1915441607348294, -7.0, -4.315705911806046, -7.0, -7.0, -2.541579243946581, -7.0, -7.0, -7.0, -7.0, -3.103803720955957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9052806011119654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.433769833924866, -7.0, -2.544008952645728, -7.0, -7.0, -3.1000257301078626, -2.04622810213454, -3.4619484952037616, -2.91017749765366, -7.0, -3.7179699132050232, -7.0, -3.184691430817599, -3.196728722623287, -7.0, -2.8470239610502954, -2.1873444291831783, -3.4800069429571505, -2.985650973690949, -7.0, -1.418251057732054, -7.0, -2.7545394443970084, -2.361963801512071, -2.2882989188590592, -7.0, -2.7151673578484576, -3.3609718837259357, -7.0, -7.0, -7.0, -7.0, -3.6685256885568625, -7.0, -7.0, -7.0, -3.930394990636852, -2.104466727163608, -7.0, -3.5260806918020298, -7.0, -1.8147526160648406, -3.195253724026417, -7.0, -3.693287157005656, -7.0, -7.0, -3.442793225939769, -3.320457868916649, -3.497067936398505, -3.9480421436568234, -3.138250053220232, -7.0, -7.0, -7.0, -2.8595385687347576, -3.219933637552912, -7.0, -7.0, -3.2314695904306814, -3.187520720836463, -7.0, -7.0, -2.217258278071181, -7.0, -2.623456048069934, -3.698709349442587, -3.2706788361447066, -4.0838727351483755, -2.518531255899576, -4.295967357542262, -7.0, -3.2448953336918613, -4.17699200238873, -3.3551321154773457, -7.0, -2.5261238000934845, -7.0, -3.330007700872759, -2.8389120274059985, -3.484157424365381, -3.4686426683915115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.720242018287057, -3.2076343673889616, -3.008467095467969, -7.0, -7.0, -4.604323272310015, -7.0, -7.0, -7.0, -4.719596424038301, -4.3881012015705165, -7.0, -3.7545012293869173, -4.106842247069822, -7.0, -7.0, -7.0, -4.725674828273515, -5.001348559913318, -4.5905966532564, -7.0, -4.38012075426844, -4.449709755571369, -7.0, -7.0, -7.0, -4.912301785042612, -7.0, -4.54241458174664, -2.9851697609193852, -7.0, -4.666021627895574, -7.0, -7.0, -3.603973901841678, -7.0, -3.985650973690949, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4651299351405545, -7.0, -3.5810700271536153, -7.0, -4.376814111968198, -3.6887793603355443, -2.849879878037141, -3.0288964451314704, -3.4417540323451767, -7.0, -3.2780698466783362, -3.7265234583862394, -7.0, -7.0, -3.925124491288567, -3.1688812344644344, -7.0, -3.4084249945620684, -2.5478918606304815, -7.0, -3.002104323966667, -3.609612193237913, -7.0, -7.0, -3.764672712576838, -3.178917728971351, -5.105070558504534, -7.0, -3.7561033715851053, -7.0, -4.357386871335479, -7.0, -5.40678535986194, -7.0, -4.238798562713917, -7.0, -4.0375659279128495, -4.445339498742793, -4.788634951620105, -7.0, -3.332034277027518, -3.5566642621225686, -4.300666121641863, -3.0667813125922603, -7.0, -3.0174163713523345, -4.357834833466437, -2.7430195349869044, -4.650173424940093, -7.0, -7.0, -3.71352204300198, -3.409827494124425, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5702113127983788, -2.1231411967028095, -2.040514435148303, -7.0, -7.0, -3.3580491199867475, -7.0, -3.1509098737011216, -3.1775364999298623, -3.1070742314120694, -7.0, -3.311138373930121, -2.4866075612144423, -7.0, -7.0, -7.0, -3.163310488963686, -3.133139557094351, -7.0, -7.0, -3.355962079458681, -7.0, -3.2762319579218335, -7.0, -2.538762188781348, -7.0, -3.1997551772534747, -7.0, -7.0, -4.605391249889289, -3.2840522425014473, -4.0154645435583305, -7.0, -7.0, -2.3598817355463755, -3.3057811512549824, -2.1346020532876793, -7.0, -2.910268571619067, -2.189294463936617, -7.0, -7.0, -7.0, -2.298307137328508, -7.0, -7.0, -7.0, -2.1481911962420113, -7.0, -1.9908976866546153, -1.6814996690891952, -7.0, -7.0, -2.3509617316943032, -2.2095150145426308, -7.0, -3.3252810364088172, -7.0, -7.0, -7.0, -2.690196080028514, -2.6292455153672183, -2.4197197829952795, -3.0736267173714387, -3.386498965550653, -7.0, -7.0, -7.0, -3.8292394281413893, -7.0, -2.4702634469650784, -1.6173816356861317, -7.0, -7.0, -1.7033555516661596, -2.1163708047186955, -2.916980047320382, -7.0, -3.146190073315927, -2.9689496809813427, -3.4955443375464483, -3.348694190265541, -2.9494275412788675, -3.733277533932582, -7.0, -7.0, -7.0, -3.101403350555331, -4.375059753585813, -7.0, -2.0836817472743014, -7.0, -3.091993372103274, -7.0, -4.18514535767565, -3.95433900860246, -7.0, -2.251638220448212, -7.0, -2.5098742850047193, -7.0, -2.484718436470184, -2.655618583541222, -7.0, -7.0, -2.3339508043872472, -2.0126263509540503, -2.9611837098124356, -3.2821687783046416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.377366970324768, -3.400365273349939, -7.0, -7.0, -7.0, -3.1684974835230326, -7.0, -7.0, -7.0, -2.911290807477995, -7.0, -3.657756790475467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8105013477665297, -7.0, -7.0, -7.0, -7.0, -3.5276299008713385, -7.0, -7.0, -7.0, -7.0, -3.7265642161622448, -3.3898745583909853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9647309210536292, -7.0, -3.2352758766870524, -7.0, -7.0, -3.974936811989041, -3.039017321997412, -7.0, -7.0, -2.9240887642418034, -3.441433275830611, -7.0, -7.0, -7.0, -7.0, -2.8926510338773004, -3.0651077623358094, -7.0, -7.0, -3.391816923613249, -3.4785455506544474, -2.8636202202703154, -3.0199466816788423, -7.0, -2.3725438007590705, -3.2242740142942576, -7.0, -3.9644776657900826, -3.1652443261253107, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8403196906651225, -2.4002500911501117, -2.932811868611632, -7.0, -3.5187927263441137, -7.0, -3.0718820073061255, -3.388633969351789, -7.0, -3.1921956258464497, -7.0, -7.0, -7.0, -7.0, -3.00987563371216, -3.1312710469143954, -7.0, -2.964992528483926, -3.336526440627234, -3.0576661039098294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.109240968588203, -7.0, -2.991958959255932, -7.0, -7.0, -3.1486026548060932, -7.0, -7.0, -3.3601198615808054, -7.0, -7.0, -3.5463575553634143, -2.919601023784111, -3.1072099696478683, -7.0, -7.0, -2.345177616542704, -2.7686381012476144, -7.0, -7.0, -3.4871383754771865, -7.0, -7.0, -2.7996850909091004, -3.3265406685165617, -7.0, -2.9468819253369065, -2.794604214770576, -2.826439262635231, -2.9079485216122722, -7.0, -3.469232742506612, -2.272263661459806, -2.7317498835272636, -3.013153343473396, -2.9708116108725178, -3.0118422079264753, -7.0, -7.0, -7.0, -2.730064136632307, -7.0, -3.428620672671939, -7.0, -2.9595183769729982, -4.082426300860772, -3.0867156639448825, -7.0, -2.9028184680822537, -2.9392695863387313, -3.544829607366698, -7.0, -7.0, -3.3900514964589874, -3.1019760718329814, -2.8148181600555935, -2.458788881710845, -2.95042213027227, -3.376143358578196, -7.0, -7.0, -7.0, -4.217049432439889, -7.0, -2.885926339801431, -2.937116510767054, -7.0, -2.808210972924222, -2.924839027205617, -7.0, -7.0, -7.0, -4.373408581295595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.016227237873841, -3.40840957846843, -7.0, -7.0, -7.0, -7.0, -2.9222062774390163, -7.0, -3.8448498008066387, -7.0, -3.0056094453602804, -3.1212314551496214, -3.466014498579686, -7.0, -7.0, -7.0, -2.4715361774216578, -7.0, -7.0, -7.0, -7.0, -3.4265112613645754, -7.0, -7.0, -7.0, -7.0, -4.130526745384164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.460547059679343, -3.0128372247051725, -3.985965078304871, -7.0, -3.442793225939769, -3.1465998385295317, -7.0, -7.0, -2.4378562177246685, -7.0, -3.121723945637367, -3.2812606870550125, -3.3310221710418286, -7.0, -7.0, -2.813008795492136, -7.0, -3.6917002082901615, -7.0, -3.2657609167176105, -3.0538464268522527, -3.233386663010114, -7.0, -3.7840107110782126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4636690681343865, -7.0, -7.0, -7.0, -7.0, -3.8703453710809597, -7.0, -7.0, -7.0, -7.0, -2.9556877503135057, -7.0, -7.0, -7.0, -3.926805310111606, -2.532117116248804, -7.0, -4.634016868868532, -7.0, -3.0277572046905536, -2.2256784228291777, -3.208441356438567, -7.0, -2.9334872878487053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.944018518736587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.707655323531187, -7.0, -7.0, -2.8332746392905634, -7.0, -7.0, -7.0, -3.116503972397613, -7.0, -2.9346625431544537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.284881714655453, -2.4942009905231504, -2.9600741977588614, -3.555880064636805, -1.418251057732054, -7.0, -7.0, -2.7573960287930244, -2.798650645445269, -2.772761647144032, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6416723732246865, -7.0, -7.0, -7.0, -4.831789815800684, -2.5838462500213177, -2.950364854376123, -3.5138610158527017, -7.0, -2.183744223284207, -3.6178387477170033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4119562379304016, -4.430621290535816, -3.1870692712304236, -7.0, -7.0, -7.0, -2.820566320871381, -7.0, -7.0, -7.0, -7.0, -2.9916690073799486, -7.0, -2.733598460961339, -2.8184733313655372, -3.115943176939055, -7.0, -7.0, -7.0, -4.159717546180216, -2.5770319856260313, -4.307227086413063, -7.0, -7.0, -4.718788079305774, -3.494084989966382, -7.0, -2.864511081058392, -7.0, -3.570426178358973, -3.3260626338156793, -3.2661532687922707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.671358003443492, -3.022840610876528, -3.5067079263501197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.714941365513727, -7.0, -7.0, -4.292532956594993, -4.182859562041339, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.923968964875471, -7.0, -7.0, -7.0, -5.388438697043693, -7.0, -4.234340087615185, -4.113843118937487, -7.0, -7.0, -7.0, -7.0, -4.475177060761012, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9177889950271254, -7.0, -4.672734971642158, -4.288897276322566, -3.298307137328508, -3.203123582322945, -4.032940937780854, -7.0, -3.5924871452980516, -7.0, -7.0, -7.0, -4.009663316679379, -3.536594512043907, -7.0, -4.140366607190387, -2.79594318285679, -7.0, -3.8120438979302267, -4.076822423342773, -7.0, -7.0, -4.390714372927393, -3.630799234060891, -5.706658905420156, -7.0, -7.0, -7.0, -4.95680211475213, -7.0, -5.104799404232248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.618910596192326, -7.0, -7.0, -3.7128039778168795, -7.0, -3.9448230650732317, -7.0, -3.111486550023024, -4.745999416249925, -7.0, -7.0, -7.0, -4.000173683058465, -7.0, -7.0, -7.0, -7.0, -7.0, -2.953452164395173, -2.926856708949692, -2.645338041178953, -7.0, -7.0, -3.7454456581479403, -7.0, -7.0, -7.0, -3.4657545198338777, -7.0, -4.196970236939209, -2.7366952259948767, -3.0906107078284064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8578147779710066, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7150941324710653, -4.4887198891891655, -7.0, -7.0, -2.9075579250873234, -7.0, -3.200303182981585, -7.0, -7.0, -2.793404987454742, -7.0, -7.0, -7.0, -3.2667019668840878, -7.0, -7.0, -3.299942900022767, -2.896801697664922, -7.0, -2.851869600729766, -2.110190848049964, -7.0, -7.0, -3.271609301378832, -2.7695004079763255, -7.0, -3.3755721739180373, -7.0, -7.0, -7.0, -3.378579576115775, -3.1799716890427616, -2.797821311364024, -3.3205616801952367, -3.2732328340430454, -7.0, -7.0, -7.0, -3.791690649020118, -7.0, -3.3823773034681137, -2.141749896293137, -7.0, -7.0, -2.1930566920949373, -2.601674231495388, -3.644143050509919, -7.0, -3.7089729784630787, -7.0, -3.7561033715851053, -7.0, -3.74170298395774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.545616332913136, -3.1896306576921556, -3.100740597292186, -7.0, -7.0, -4.248622995006579, -7.0, -3.0064660422492318, -7.0, -7.0, -7.0, -3.1911714557285586, -3.388367667157301, -7.0, -7.0, -2.708845638048179, -2.3384564936046046, -3.399379478152629, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8194123112093252, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.249967037217522, -7.0, -7.0, -2.1921956258464497, -4.191423066687808, -4.2079035303860515, -7.0, -7.0, -7.0, -2.629409599102719, -7.0, -7.0, -3.8781194846971676, -7.0, -3.6514718521990424, -4.316417697051899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.36270547093555, -7.0, -7.0, -7.0, -7.0, -3.625723909525756, -7.0, -7.0, -7.0, -7.0, -7.0, -3.564994054850826, -3.4192947217534604, -3.895919545310016, -3.782830805202592, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8461514765288154, -7.0, -7.0, -7.0, -7.0, -3.020527012274563, -3.1389339402569236, -7.0, -7.0, -5.124918107130456, -7.0, -7.0, -7.0, -7.0, -3.867290669854884, -7.0, -7.0, -7.0, -3.116939646550756, -7.0, -7.0, -3.5241363765925686, -7.0, -7.0, -4.1885654617274, -3.518382315545344, -4.013216539624441, -7.0, -7.0, -7.0, -3.2119210843085093, -7.0, -7.0, -7.0, -4.144978738020031, -7.0, -7.0, -7.0, -3.0112414148058138, -7.0, -7.0, -7.0, -3.614158709509175, -3.773164534737837, -7.0, -2.738780558484369, -3.0610753236297916, -7.0, -4.081041105100104, -7.0, -7.0, -7.0, -3.047145014047316, -7.0, -2.2157256645575676, -3.088903550093058, -7.0, -7.0, -3.8304603500309673, -2.90687353472207, -4.692225424878105, -7.0, -7.0, -3.589279221235967, -7.0, -7.0, -3.341676281589567, -7.0, -7.0, -7.0, -4.365057220766325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.149496233465742, -7.0, -7.0, -7.0, -7.0, -7.0, -3.087781417809542, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9377309750177787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0676287167282457, -2.86844850133673, -7.0, -3.0224283711854865, -7.0, -2.5550944485783194, -4.10963069469661, -2.798650645445269, -7.0, -7.0, -2.4790471757557007, -2.765668554759014, -2.7151673578484576, -7.0, -3.6135775721070993, -7.0, -7.0, -7.0, -7.0, -3.4955693893099817, -7.0, -7.0, -2.9641417275269504, -7.0, -7.0, -3.1646502159342966, -2.9271136119337604, -3.0770043267933502, -7.0, -7.0, -7.0, -3.348791467560584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8756399370041685, -7.0, -3.542015814870588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.601897100353282, -3.261976191397813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1775364999298623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2413804341476116, -4.941789610012567, -7.0, -7.0, -7.0, -7.0, -7.0, -2.905256048748451, -7.0, -7.0, -7.0, -2.9304395947667, -7.0, -3.3274270536683934, -7.0, -7.0, -7.0, -4.311817411695856, -7.0, -7.0, -2.4742162640762553, -7.0, -7.0, -7.0, -7.0, -3.984617313236748, -7.0, -3.9527440240148985, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0170333392987803, -1.9920459635741061, -1.8330408104847906, -2.3180633349627615, -7.0, -3.1095785469043866, -7.0, -7.0, -7.0, -7.0, -3.9199144806594317, -7.0, -7.0, -7.0, -4.830348040099118, -7.0, -7.0, -7.0, -7.0, -7.0, -3.567966906823154, -7.0, -7.0, -7.0, -3.7737864449811935, -7.0, -3.0242119239259035, -7.0, -7.0, -3.3829770749788555, -7.0, -7.0, -7.0, -3.741939077729199, -7.0, -7.0, -2.424881636631067, -3.3803921600570273, -7.0, -7.0, -7.0, -3.6840370374865197, -7.0, -7.0, -7.0, -2.9324737646771535, -7.0, -3.480868923687168, -5.273146591634895, -7.0, -3.478927055582925, -4.716916906053295, -7.0, -7.0, -3.0068937079479006, -7.0, -7.0, -3.470410490975931, -7.0, -3.286231854028553, -7.0, -7.0, -3.3654879848909, -2.1271047983648077, -7.0, -2.952792443044092, -3.1500396976551133, -2.3010299956639813, -3.5463644126266622, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8793023641093205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.098539897992862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8892120324534645, -3.5742628297070267, -7.0, -7.0, -7.0, -4.933985580042992, -2.7040601611790334, -3.4670158184384356, -7.0, -4.961852800716229, -4.678882414670736, -7.0, -4.434297385124508, -7.0, -7.0, -7.0, -4.369623976640633, -7.0, -7.0, -3.689610717638639, -4.788715492049406, -7.0, -7.0, -3.1940515879954208, -7.0, -4.477497480263115, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318063334962762, -7.0, -7.0, -7.0, -7.0, -7.0, -4.596201102454085, -7.0, -2.9444826721501687, -3.7964306017613634, -4.955090967093244, -7.0, -4.3471582154333515, -7.0, -7.0, -4.304985720206672, -4.291368850451582, -7.0, -2.4800069429571505, -7.0, -7.0, -7.0, -4.466274321789292, -2.8419848045901137, -3.7013088852280753, -7.0, -7.0, -4.338755217322839, -7.0, -3.2610248339923973, -7.0, -3.7321524180652137, -7.0, -4.017735715616553, -7.0, -7.0, -7.0, -7.0, -7.0, -3.646599751720373, -7.0, -7.0, -3.4625477288026643, -7.0, -7.0, -7.0, -3.022290870952613, -7.0, -7.0, -7.0, -7.0, -7.0, -4.139595758469972, -7.0, -7.0, -7.0, -2.5634294911583058, -7.0, -2.4323277922616042, -7.0, -3.156851901070011, -3.9451237701221196, -7.0, -7.0, -7.0, -2.8438554226231614, -7.0, -7.0, -7.0, -3.052693941924968, -7.0, -2.5260806918020298, -7.0, -7.0, -7.0, -3.0395463043793804, -2.340018961128335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6565968348432376, -2.953115098691848, -7.0, -7.0, -7.0, -7.0, -2.8536982117761744, -7.0, -7.0, -7.0, -3.311895072073712, -7.0, -7.0, -3.7799570512469063, -3.725401117975179, -3.597366050266028, -7.0, -7.0, -7.0, -3.4192120226230758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.544130081987965, -7.0, -3.4148062795010126, -7.0, -7.0, -7.0, -2.8454081396217936, -7.0, -7.0, -7.0, -3.204662511748219, -7.0, -4.090769309154487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9454685851318194, -7.0, -3.353723937588949, -7.0, -4.101643985490313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.194750156641199, -7.0, -7.0, -7.0, -7.0, -3.373095987078727, -7.0, -7.0, -7.0, -7.0, -3.6353832040474985, -7.0, -7.0, -7.0, -2.857633985150008, -7.0, -7.0, -7.0, -7.0, -3.0863598306747484, -7.0, -3.1300119496719043, -7.0, -3.516152079177331, -7.0, -3.0599418880619544, -2.649010152542322, -3.612863293566935, -3.628491104967123, -7.0, -3.225567713439471, -7.0, -2.634141258939403, -7.0, -4.352741915020753, -3.925466800691538, -7.0, -2.824288582459545, -3.653472896115473, -3.2748503200166645, -7.0, -7.0, -3.1451964061141817, -7.0, -7.0, -3.6938617292635936, -3.2748503200166645, -7.0, -7.0, -2.889581802149624, -7.0, -3.1455071714096627, -1.912399211126715, -2.7693773260761385, -2.9985499336047674, -7.0, -3.80105740878395, -7.0, -7.0, -7.0, -3.3010299956639813, -3.4058583993176366, -2.690196080028514, -2.794255617174412, -7.0, -7.0, -7.0, -2.8899949526860222, -2.5413295776666938, -2.9864233630365042, -2.839917775678681, -7.0, -2.9439888750737717, -2.9381443085140972, -2.9542425094393248, -7.0, -3.2773799746672547, -3.105510184769974, -3.231979026831504, -3.6444385894678386, -3.4612883818666504, -7.0, -2.787460474518415, -3.03261876085072, -7.0, -3.485579476984679, -2.697839368218363, -3.1065308538223815, -3.0541021198133644, -3.9815306209819914, -3.0972573096934197, -2.087544809532427, -7.0, -7.0, -3.137090246922551, -3.443106456737266, -3.1699681739968923, -7.0, -2.7634279935629373, -3.2350231594952237, -2.7365103260178008, -3.6245914591268478, -3.103632705209741, -7.0, -3.569241560181558, -3.318793504793297, -7.0, -3.089551882886454, -7.0, -3.2258259914618934, -7.0, -3.494711025205263, -2.958181497564948, -7.0, -3.8701404392376397, -7.0, -7.0, -2.3571722577230334, -1.9966867556001715, -2.377670439334323, -7.0, -3.3422252293607904, -2.415588309411352, -2.690266979462497, -3.215108581053093, -2.850033257689769, -2.702215059149166, -3.3346547668832414, -3.317941520549953, -7.0, -7.0, -2.5534278708133193, -2.3201462861110542, -3.3979400086720375, -2.9694159123539814, -2.434624923960997, -4.157781536420133, -7.0, -3.8829796540372987, -7.0, -4.696046067546922, -3.307067950661298, -7.0, -2.633835568434839, -7.0, -7.0, -3.1382816409536467, -3.26528962586083, -7.0, -7.0, -4.381060903382891, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7560652939486863, -3.7834032811225633, -4.175482820774772, -3.2663885100087673, -7.0, -3.9182925127553556, -7.0, -3.1405080430381793, -2.620344299754493, -7.0, -3.3928141559271974, -7.0, -2.5523639817866846, -7.0, -3.207695555447434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7268629897004635, -2.3726287982115197, -2.6283889300503116, -2.6135775721070993, -2.424881636631067, -2.8998205024270964, -3.2570729495163198, -2.3272129285076972, -3.061452479087193, -7.0, -2.4693310102934105, -2.2032142586949006, -7.0, -7.0, -2.423775765777925, -7.0, -3.8191489428071344, -7.0, -7.0, -2.6950908511864737, -3.2648178230095364, -2.8338639667912022, -2.5426339390892774, -3.0437551269686796, -3.009309224134771, -7.0, -3.4087486061842442, -2.7113853790984517, -7.0, -3.220020871555797, -2.714329759745233, -2.948331446401186, -7.0, -3.9844372947960762, -3.4291060083326967, -4.355911050526753, -3.124178055474675, -7.0, -7.0, -7.0, -7.0, -3.369586890736344, -7.0, -7.0, -3.4939457483871506, -3.4683473304121573, -7.0, -7.0, -4.369735215355923, -3.894260664446988, -7.0, -7.0, -7.0, -7.0, -2.819872821950546, -2.337601863321786, -3.0962145853464054, -2.509740015570382, -2.413151784814023, -3.0532705666813786, -3.308442446423766, -5.111504467940425, -7.0, -3.1720188094245563, -7.0, -7.0, -7.0, -3.1065308538223815, -2.975891136401793, -3.079362164393046, -2.4700060000867836, -3.037027879755775, -7.0, -2.8055008581584002, -3.143014800254095, -7.0, -7.0, -2.082246654743669, -4.167888140421916, -7.0, -7.0, -7.0, -3.137986732723532, -3.240798771117331, -7.0, -7.0, -7.0, -7.0, -3.1095785469043866, -7.0, -2.4959664217689568, -7.0, -2.6088824508987196, -7.0, -3.6307328928171967, -7.0, -3.9408276510144487, -2.9459607035775686, -4.114852747571882, -7.0, -7.0, -7.0, -4.02209829746114, -3.7927417858347487, -3.3906260478341657, -3.293657141449485, -7.0, -2.7545394443970084, -2.7573960287930244, -2.0170333392987803, -7.0, -1.1560704038576266, -1.5135165605791931, -3.03261876085072, -2.6745549761273852, -2.427932184049885, -3.1427022457376155, -7.0, -7.0, -3.4605971888976015, -2.5629111450476487, -7.0, -7.0, -3.362670929725667, -4.179874009512173, -2.7827284979036726, -7.0, -4.000368993509583, -7.0, -2.9561684304753633, -3.3585059114902354, -3.413634997198556, -3.5109469486729727, -3.590953235187986, -3.53198955141255, -2.9426693313867003, -2.7024305364455254, -7.0, -4.983757051859547, -3.6084190513172856, -7.0, -7.0, -7.0, -7.0, -7.0, -2.874191804679071, -2.5221833176186865, -3.5146805441249818, -7.0, -3.446847710155809, -7.0, -2.9770373352246815, -7.0, -3.294466226161593, -3.38524868240322, -7.0, -4.1622357237662015, -3.3992236215272698, -4.574661405945726, -7.0, -2.93468778256179, -3.790984341293377, -2.977658292937134, -7.0, -2.6720978579357175, -3.1277525158329733, -3.014205413953746, -2.9853623100167104, -2.9964386998811507, -3.146283113159587, -7.0, -7.0, -7.0, -1.883976712468301, -2.9237619608287004, -2.4666205111116515, -2.475414790905645, -2.690196080028514, -2.943427667431837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.779264511479166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.187520720836463, -7.0, -2.9604930743921973, -2.0582783662301987, -7.0, -7.0, -7.0, -4.635139291129992, -2.0907449772627436, -2.345777216071331, -4.451985888948909, -4.011640917347032, -3.540365232436269, -7.0, -7.0, -3.8642736968043794, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7051492306402203, -4.312793510081284, -5.104952055922925, -3.146438135285775, -2.56710482239302, -2.870111155364401, -3.7033773685123497, -7.0, -7.0, -3.7999605274059833, -4.235301140319991, -7.0, -4.034788831251184, -4.443169075796116, -4.486607561214442, -7.0, -3.930872653792662, -7.0, -3.998836705660125, -4.496943478887435, -2.1583624920952498, -3.6457611226334046, -4.260252703870242, -7.0, -3.9174238127281167, -7.0, -7.0, -4.013174409878867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.437318070354534, -2.468495024507069, -3.5037089898917078, -7.0, -7.0, -3.753563909684063, -3.49373680227684, -2.9526310252827455, -7.0, -3.4958910796661877, -7.0, -4.102934262243328, -3.379758615842701, -7.0, -7.0, -7.0, -7.0, -2.82020145948564, -7.0, -7.0, -2.9203842421783577, -7.0, -7.0, -7.0, -2.1525067474461976, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2513496376590156, -7.0, -7.0, -7.0, -2.302961138562647, -7.0, -2.709027541498756, -7.0, -2.5153060147156823, -3.225262277614999, -7.0, -7.0, -7.0, -3.355643050220869, -7.0, -2.8976270912904414, -3.081527326244805, -3.300812794118117, -7.0, -2.6278776945799716, -2.838303257217854, -7.0, -7.0, -2.9192873405043827, -2.2310039303763696, -7.0, -3.6893976628212823, -7.0, -7.0, -7.0, -7.0, -3.0382557792349947, -2.4704349934714607, -7.0, -2.1511399228714536, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6989700043360187, -7.0, -7.0, -2.8373990243420226, -2.973770182401431, -3.0810771401550445, -3.4753805931433615, -3.365404778744098, -3.555215405126073, -7.0, -7.0, -3.7579271831133294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2626883443016963, -7.0, -4.538083367813495, -7.0, -3.880098704083314, -3.4753442550701354, -7.0, -2.8402315949581087, -7.0, -2.7883451651521183, -7.0, -2.8018323042314583, -3.424146305755156, -7.0, -7.0, -2.1569409049604555, -2.9903388547876015, -3.3273419028962246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.846213363879387, -7.0, -3.1272668183188985, -7.0, -7.0, -7.0, -7.0, -2.765420173578722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.061452479087193, -2.912859475162355, -7.0, -7.0, -3.4282293130141395, -2.762678563727436, -2.7535830588929064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.364550995353972, -7.0, -7.0, -2.85582190540603, -7.0, -7.0, -3.416141031168329, -3.443262987458695, -3.2870175013221017, -7.0, -2.966610986681934, -3.486288760960566, -2.8235547271190224, -7.0, -3.411788004543869, -2.965358514344786, -3.6492374723496073, -3.487444772703948, -7.0, -7.0, -7.0, -2.832987650012002, -7.0, -3.2029240276378017, -3.294378035587241, -7.0, -2.927562826805481, -3.1793791861511895, -7.0, -3.1610683854711747, -7.0, -3.0235610900969454, -3.5476516583599693, -3.4730488050885375, -3.7321524180652137, -3.219322508419337, -7.0, -7.0, -7.0, -3.6182573448404014, -3.451939869365103, -1.4348737790778903, -2.4598948527451516, -7.0, -7.0, -3.5043410923027154, -2.8391636829146503, -7.0, -3.3322364154914434, -3.5356738034257504, -2.910691091182139, -3.162116141062368, -2.9163223242173815, -7.0, -2.694354451535204, -3.2899232395240046, -2.288033978619537, -2.1554253525259224, -2.625226681339216, -3.0769003912940143, -7.0, -3.0265332645232967, -3.0883133155880964, -2.907008053689199, -7.0, -3.0444090865590487, -3.131297796597623, -3.4967913157000425, -3.465457210575713, -3.019345522521489, -3.438384107034714, -7.0, -2.8231946704339643, -3.414639146737009, -2.533275081158002, -2.807535028068853, -2.9553670010508437, -3.2069157827668575, -3.700825458898945, -3.4287825114969546, -1.7316805487833076, -7.0, -3.455606112581867, -2.4774830160749435, -3.6239725120169965, -3.4641913706409997, -7.0, -2.154889186430781, -2.6516932756857856, -2.2853905932737097, -3.7517408738109004, -2.4826537433196236, -7.0, -3.159716282926921, -3.447158031342219, -3.401538390165943, -7.0, -7.0, -3.681150749932421, -2.894758994371892, -2.9589459324939362, -2.8727388274726686, -7.0, -3.5120971148810134, -7.0, -3.414137362184477, -2.5059973824558917, -1.090018713022885, -2.091750677014142, -3.3554515201265174, -3.5601458398490475, -2.3888932863141665, -2.1078372077228384, -3.4877038631637265, -3.1536624535754956, -2.1522883443830563, -7.0, -3.142389466118836, -7.0, -7.0, -2.855115160771781, -2.3504806137955305, -3.8085485512404054, -2.190865065731225, -2.2052301495786644, -3.925385769416851, -3.486430478854434, -7.0, -7.0, -4.702266783451331, -2.7597937089078433, -3.39208111979816, -2.255343462456932, -7.0, -7.0, -2.7089739654522504, -3.7091851295502454, -7.0, -3.114610984232173, -4.105135337612572, -7.0, -7.0, -7.0, -3.131779009369187, -3.411788004543869, -2.9938091464333256, -3.175975431749513, -3.515979756279428, -3.366298410485256, -7.0, -7.0, -3.418135498425232, -7.0, -2.1095910447671455, -7.0, -7.0, -7.0, -3.4572761860613257, -7.0, -2.8423030251835173, -7.0, -7.0, -7.0, -2.7145692383738007, -7.0, -7.0, -7.0, -3.064083435963596, -2.1876179545728824, -3.123742781590177, -2.403030165515052, -2.468006306066481, -2.436162647040756, -2.995368552945386, -2.0280287236002437, -7.0, -7.0, -2.4625341190352854, -2.2799709653992704, -3.1492191126553797, -7.0, -2.0458695520970736, -7.0, -4.32672491280211, -7.0, -7.0, -1.9493042524186015, -3.0372936658607066, -2.42097075212303, -1.6307465453207721, -2.6057837394735675, -2.348694190265541, -3.274388795550379, -2.558053690567051, -2.638863487466293, -3.57611089412084, -2.5496842947541856, -2.240696043782359, -2.9265996539070276, -7.0, -4.044578954876613, -7.0, -3.9053100621160857, -7.0, -4.146686055647526, -7.0, -3.5946687312953243, -3.485295438726089, -3.5769169559652068, -3.157456768134226, -7.0, -2.929759415329462, -3.3395508108256715, -7.0, -3.658964842664435, -3.91832745759621, -3.666049738480516, -7.0, -2.932811868611632, -7.0, -7.0, -2.962527174843811, -2.469822015978163, -7.0, -2.8825245379548803, -2.465977368285823, -3.0757658782157344, -2.9905608299940196, -4.7147562990402285, -7.0, -3.1639064334577514, -3.4831592097169795, -7.0, -3.4139699717480614, -3.4331295175804857, -3.630936119064191, -3.583878598498626, -7.0, -7.0, -7.0, -3.1320995219165044, -2.847726855657811, -7.0, -7.0, -1.9072283458195376, -3.4904089698013103, -7.0, -7.0, -7.0, -7.0, -3.200303182981585, -1.992510760388401, -7.0, -7.0, -7.0, -2.3691066696077066, -7.0, -2.1193066572342634, -2.814136565568487, -2.946452265013073, -3.40705081480425, -2.8004115598161072, -3.6223176608338443, -3.958301029253673, -3.203984244420126, -3.9505108929859967, -3.5186455243303114, -7.0, -7.0, -3.475271569801028, -3.4056309008934176, -2.846723598300994, -2.750092830418938, -3.6554265877459184, -2.361963801512071, -2.798650645445269, -1.9920459635741061, -1.1560704038576266, -7.0, -1.3843222411346825, -3.098470665650629, -3.154271775993095, -2.7757317762602307, -3.1492191126553797, -3.105964111628025, -7.0, -3.158060793936605, -2.3409808671321186, -3.545430829465351, -3.6869042695681773, -3.2713768718940743, -3.633367445117007, -2.5805741015043195, -7.0, -3.854265546255161, -7.0, -2.664238918003387, -3.7782236267660965, -3.30352003690728, -2.842609239610562, -3.027268042466619, -3.313709074655722, -3.307923703611882, -2.6957204091477363, -3.646893624167745, -4.22767464518811, -2.7482336437786707, -7.0, -7.0, -3.401055725771844, -3.2909801206291553, -2.7549040548935664, -7.0, -3.1907517799201845, -3.6724673130680823, -7.0, -2.9266510770888887, -3.4680517914542377, -2.470312467167388, -3.499549625905149, -3.0542299098633974, -2.6206911526456267, -7.0, -4.170719244166571, -3.1220027758749547, -4.168913242133391, -7.0, -2.062025553041343, -3.77203632193224, -3.129475054459623, -7.0, -2.476989630387119, -7.0, -2.209357290015056, -2.766996754711321, -2.964966374831098, -3.325720858019412, -7.0, -7.0, -3.062299883223179, -2.147212416970458, -2.890281261927012, -2.5487305496263066, -2.5583751902435905, -3.4634450317704277, -2.0691355946764824, -7.0, -7.0, -4.14091637693907, -7.0, -7.0, -7.0, -4.429138344767089, -3.808346035740395, -7.0, -4.011507007443322, -3.8508076943311957, -7.0, -7.0, -7.0, -3.5897821032911432, -3.8026668483425246, -4.1276230495980295, -7.0, -4.69272357270089, -7.0, -7.0, -7.0, -7.0, -4.914588183125443, -4.019427873252668, -3.956108374541934, -7.0, -4.371178731816287, -4.677980868888067, -7.0, -7.0, -3.944306380496884, -7.0, -3.7929429635083816, -4.365019742816535, -4.248144987287778, -7.0, -4.153204900084284, -7.0, -3.6387031424462313, -7.0, -4.3348155125062116, -2.3391200452721206, -3.8442996228070254, -2.4232864741068187, -1.7328989937968162, -3.345177616542704, -4.369790824030776, -7.0, -3.793511005792858, -2.000704692511774, -2.3932826505593647, -3.996248914569132, -3.71720804477317, -3.2839358508812513, -7.0, -3.4279284993570225, -3.464638559095033, -7.0, -7.0, -4.109291622066701, -3.528723923260994, -7.0, -2.2703679455185184, -3.4694573219276164, -4.429453073733615, -3.15106325335375, -2.697167047058269, -3.4650852875574327, -3.1726358824113596, -7.0, -4.262810310487699, -3.5455235910936778, -3.968996326648312, -7.0, -3.460315136748682, -4.163980869053427, -3.7975583584025268, -3.486288760960566, -3.965906915495192, -3.929521100631104, -3.478090632561218, -3.5618696012378313, -2.4206432497919548, -2.779334958513331, -3.534435092755253, -7.0, -3.603266196253487, -7.0, -7.0, -3.374514134412372, -4.3397097547798325, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0360090550537797, -2.1046075980608174, -2.7335483317430804, -3.4434194617828173, -7.0, -3.1264561134318045, -7.0, -2.6137361412618714, -7.0, -3.1077750894177876, -3.424881636631067, -3.4311492447760616, -2.713770462202507, -3.4892551683692608, -7.0, -3.344813169678549, -3.6241789257480224, -2.7128438865094555, -7.0, -3.481729196960016, -2.3487914675605843, -7.0, -7.0, -7.0, -2.140443576569526, -7.0, -3.7921114090871684, -7.0, -7.0, -4.619114209667246, -2.622697454895568, -4.80263007659096, -7.0, -7.0, -2.1280064197702564, -7.0, -2.3969835082752007, -7.0, -2.3384564936046046, -3.0947549170487743, -7.0, -7.0, -7.0, -2.6121949827557454, -3.3626081204867253, -2.876362196412118, -3.107662124276845, -3.057919558531498, -7.0, -2.4520056101349996, -2.7084578503607872, -7.0, -7.0, -2.8434663744184254, -2.134520365244195, -7.0, -7.0, -7.0, -7.0, -3.9995220131289035, -3.3265406685165617, -2.6936066086433788, -2.2023652550893744, -7.0, -2.150756439860309, -7.0, -7.0, -3.4795753101749884, -7.0, -7.0, -3.152390279480791, -2.2794284147221058, -7.0, -3.40840957846843, -2.4403842548328845, -2.6241945001620497, -2.753791904524199, -7.0, -3.047021617404377, -3.70104963072914, -3.40094072657035, -3.2460059040760294, -3.3317308928154574, -7.0, -7.0, -7.0, -7.0, -3.4077307280263356, -7.0, -7.0, -2.813714391881145, -7.0, -3.7774751552013255, -3.3251049829714074, -3.6181527333785195, -3.1733028418881863, -3.8256857080217586, -2.786041210242554, -7.0, -3.113051576876652, -7.0, -2.412830002562326, -2.7135551558266218, -7.0, -7.0, -2.0153370951873573, -2.574031267727719, -2.9525664413757333, -3.028706779135174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4495812394629826, -7.0, -7.0, -2.870403905279027, -7.0, -7.0, -3.463743721247059, -3.201806642957022, -7.0, -3.6590600722409383, -7.0, -3.572116155664274, -3.596377143997599, -7.0, -7.0, -7.0, -2.838691709151223, -7.0, -7.0, -3.128063077420776, -3.023938007498089, -2.8937617620579434, -3.7380667147774695, -7.0, -7.0, -3.4287825114969546, -7.0, -3.64018319192134, -7.0, -7.0, -3.5737995822157407, -7.0, -7.0, -2.9526310252827455, -7.0, -3.0786380383696725, -7.0, -7.0, -2.5236282431870687, -7.0, -2.811909980420099, -3.4596939764779706, -3.3707570624663736, -7.0, -7.0, -3.1122697684172707, -3.1672680922194196, -3.0566905084110543, -7.0, -7.0, -7.0, -2.802944673722407, -7.0, -3.2296087164576104, -2.661587347244496, -3.369586890736344, -3.2172864927524905, -3.1007498735457943, -2.716559774821619, -7.0, -3.3787611753163733, -2.324499061028818, -2.824646414718352, -3.4456042032735974, -3.2858802988894116, -3.018423082826786, -7.0, -7.0, -3.146438135285775, -2.8989444668665096, -3.121723945637367, -2.657316664284362, -7.0, -2.261624845520399, -7.0, -3.503778306292567, -3.4126285205443754, -2.8520222794031276, -7.0, -3.2107197156810017, -2.801197834459149, -3.1340176456759834, -7.0, -7.0, -7.0, -7.0, -2.613594667752257, -2.897352134344313, -2.4402091713868916, -3.4357382204426927, -7.0, -3.4787107555127594, -2.7187783976895714, -3.4847268042986617, -3.4959603948817053, -3.196314385353599, -7.0, -2.993142192245416, -2.751510050270041, -2.960499605578246, -3.1072099696478683, -3.092896010921856, -2.5358781109177286, -7.0, -2.6897822691521336, -2.1779234306079442, -7.0, -7.0, -3.7166389013459673, -7.0, -2.624797578960761, -7.0, -3.426998958756537, -2.4056647257683834, -7.0, -3.436162647040756, -7.0, -2.7714956153109704, -7.0, -3.1032048709894418, -3.2600713879850747, -2.6227894761867065, -7.0, -3.0144572790295707, -3.1314582601065255, -3.2489536154957075, -7.0, -7.0, -7.0, -7.0, -3.339749481680876, -2.8592884423200204, -7.0, -3.3609718837259357, -7.0, -7.0, -3.379668034033654, -2.1522496285834407, -3.3895204658463776, -2.939119717648487, -3.236537261488694, -2.313586032608017, -2.647163676320182, -3.461198288622493, -7.0, -2.8147801457458046, -7.0, -2.899157001447223, -7.0, -7.0, -3.137986732723532, -2.9589618439223178, -3.7960884286806684, -2.4912215762392833, -2.4919579851904485, -3.9240428709869617, -7.0, -7.0, -3.4665710723863543, -3.6801282253099643, -7.0, -2.977266212427293, -3.1760188706094925, -7.0, -7.0, -2.402621228759297, -2.6123422761205295, -7.0, -7.0, -3.703978825008386, -7.0, -7.0, -3.3818367999983434, -7.0, -7.0, -3.403120521175818, -2.6869935662646784, -2.9306005339873313, -3.832189461068513, -7.0, -3.200759326791928, -7.0, -3.4204508591060683, -2.619484645699233, -7.0, -3.2384977353073587, -7.0, -3.4287825114969546, -3.174786417367337, -3.1500948736862835, -3.083323418473525, -3.3729120029701067, -7.0, -3.2375437381428744, -3.4038066105474227, -7.0, -3.2604291755779347, -2.26462108711403, -1.5779974549453202, -2.53736109926821, -1.656036191630507, -2.177897059918944, -2.7532765701844184, -3.2905636188126794, -2.5923354037837143, -3.079362164393046, -3.3688445068258215, -1.7680458141024167, -2.1712387562612694, -3.4216039268698313, -7.0, -2.549679601632059, -7.0, -4.322983806948398, -7.0, -7.0, -2.611615960259258, -3.4900990050633047, -3.225050696138049, -2.254366781142282, -3.2384224958854797, -2.679629753219008, -3.554125581513013, -2.402089350572097, -3.042837926032406, -3.2533380053261065, -3.1922886125681202, -3.448551739201578, -2.2829018774276832, -7.0, -7.0, -2.6905283211375925, -3.777046013407733, -2.6321197138685406, -3.140445188347875, -7.0, -7.0, -7.0, -2.776095557782467, -7.0, -3.4528593357958526, -2.668618844816744, -2.775974331129369, -7.0, -3.163757523981956, -4.392327557983544, -3.1128921383925734, -7.0, -7.0, -3.431202884556517, -3.3925210899319325, -2.932811868611632, -2.744762237065578, -3.0963885466873666, -2.9810631808506, -2.3997602257103656, -2.5836521085420436, -3.4120123012470613, -4.869510819339792, -7.0, -2.531957654348021, -2.609441944950562, -7.0, -3.3823773034681137, -2.7998572591896123, -3.6120417446452695, -7.0, -3.55942779975949, -7.0, -7.0, -2.4462954799526213, -3.4217684012069243, -2.8963424669127065, -7.0, -1.7767011839884108, -3.5205805655249534, -7.0, -7.0, -7.0, -7.0, -3.4759615891924236, -3.466125870418199, -7.0, -2.8739015978644615, -7.0, -3.281601443825655, -7.0, -2.3234068093635756, -3.57275546515422, -7.0, -7.0, -2.662526557433505, -7.0, -3.4440207612473874, -2.0248666663580623, -3.8820689444361483, -7.0, -7.0, -7.0, -3.371621927176021, -3.2700962814203303, -2.897784131423016, -2.648603928135281, -3.470410490975931, -2.2882989188590592, -2.772761647144032, -1.8330408104847906, -1.5135165605791931, -1.3843222411346825, -7.0, -2.88930170250631, -2.9492273190678455, -1.5448765357073875, -2.9438241512023096, -7.0, -7.0, -3.014205413953746, -2.4473675823628844, -3.522313795156667, -7.0, -7.0, -4.293002466752252, -2.6869935662646784, -7.0, -3.5494120098036346, -3.396896449142524, -3.1845494813206976, -2.985950126092585, -3.1070968573977424, -4.040760524228698, -3.711807229041191, -2.411782576575266, -2.037540321681782, -2.2421271437282835, -7.0, -4.875414988878726, -2.5067848613333052, -2.6788824146707357, -7.0, -3.368472838440362, -3.183725258045578, -2.938948375793857, -7.0, -1.568201724066995, -2.876217840591642, -2.6437815628948647, -3.129797271228629, -7.0, -2.886866575028829, -2.8708426604757014, -2.9051209859322786, -7.0, -7.0, -4.266572693335908, -2.7470479940428234, -4.24291914249205, -7.0, -2.416479448748672, -3.664797257319109, -2.8178957571617955, -7.0, -2.591481997238255, -2.8107364373885813, -2.9526310252827455, -2.7572333005770804, -2.902848645234189, -3.3066394410242617, -7.0, -7.0, -3.647480773173676, -1.896292339623125, -2.687380306589906, -2.111613128168343, -1.8321578541777817, -2.4324882557705063, -2.5092800864596443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.10636090880675, -7.0, -7.0, -4.192283033926229, -7.0, -7.0, -7.0, -4.433617844253738, -7.0, -4.301767669438014, -7.0, -7.0, -7.0, -4.1034273973827675, -7.0, -7.0, -7.0, -7.0, -4.254994950511596, -4.166370901288565, -7.0, -4.676318583037297, -7.0, -7.0, -4.487159594558902, -7.0, -4.694561328588372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.634033680419679, -2.891398059667226, -4.386837707954007, -3.175060190094287, -3.1378512485602417, -7.0, -7.0, -3.6221103603612193, -4.126346240058687, -1.8986117147091868, -2.799168176170151, -3.993583175003126, -3.5565900792280734, -2.9979365499064756, -7.0, -3.563629384689655, -7.0, -3.40226138245468, -7.0, -3.70816585785554, -7.0, -7.0, -3.012511088004144, -4.1288935255919, -7.0, -2.945796726048, -2.1844978518164426, -7.0, -3.373322322112365, -7.0, -5.408674042791168, -7.0, -7.0, -7.0, -4.059165668942177, -4.1612631598785494, -4.79642167893092, -7.0, -7.0, -3.6189889203649335, -3.3769256694846685, -4.513909787827383, -2.9995654882259823, -2.837879683009075, -4.120033076541163, -3.7445276734725663, -3.5185468397288107, -7.0, -7.0, -3.850023034064681, -3.490740829565697, -7.0, -2.683947130751512, -7.0, -7.0, -7.0, -3.2921314153833943, -1.7102566530665484, -2.5170943442299034, -7.0, -7.0, -3.2646725497243874, -7.0, -1.9232665507054019, -2.9400181550076634, -3.097373013565665, -7.0, -3.1866469562045387, -2.5002653709620417, -7.0, -7.0, -4.185117001142592, -7.0, -2.187722109424307, -7.0, -7.0, -3.1995906406036934, -7.0, -3.477265995424853, -7.0, -1.8010393369976914, -7.0, -7.0, -7.0, -7.0, -7.0, -3.352685456896385, -4.801383126852731, -7.0, -7.0, -1.533045512062462, -7.0, -2.122670875152478, -7.0, -1.986024882006687, -2.714131144414292, -7.0, -7.0, -7.0, -2.4295038277748633, -3.8284020784915933, -3.452246574520437, -3.564192460626198, -2.6651788044030984, -7.0, -2.5370172851730106, -2.8598135415071138, -7.0, -7.0, -2.1249115923549144, -1.546895032245456, -7.0, -3.724930914192398, -7.0, -7.0, -3.9915361753000314, -2.2618033722622637, -2.512758383307129, -2.4245186658770486, -3.76767522402796, -2.645053650442902, -7.0, -7.0, -2.752355804153501, -7.0, -7.0, -2.655031662965263, -2.382917135087531, -3.534026106056135, -7.0, -2.2628823653189034, -2.520072713605655, -2.4188774698213766, -2.780934207814762, -2.6713304313164055, -7.0, -3.566555330883055, -3.2229764498933915, -3.1492533346704406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3714941287694646, -7.0, -3.708299470109623, -7.0, -7.0, -3.24699069924155, -3.813714391881145, -2.415529779157638, -7.0, -2.6137243973838293, -7.0, -1.8932208126749903, -2.513617073787875, -7.0, -3.3807537708039, -2.0724752248302725, -2.7268629897004635, -3.0289614544096257, -3.1796953833245065, -7.0, -7.0, -3.0782755220866007, -7.0, -7.0, -7.0, -3.6163179419637905, -7.0, -2.690196080028514, -2.1389339402569236, -7.0, -7.0, -3.13433651094868, -2.149512356746132, -7.0, -3.6413749451921253, -7.0, -3.390581878550435, -3.8873922189718466, -7.0, -3.166726055580052, -3.079362164393046, -3.7283537820212285, -7.0, -7.0, -3.201527172077645, -2.6291182240619984, -2.1425682249120177, -3.42217931474113, -7.0, -3.3502480183341627, -7.0, -3.407900540142635, -3.6216954623292787, -3.3881012015705165, -3.5077209766856137, -2.7728105019145324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.203731658404463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.270473865990263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3873898263387296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6033067965385137, -7.0, -7.0, -7.0, -7.0, -4.398532175467584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8488047010518036, -4.708021267385997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3180633349627615, -3.03261876085072, -3.098470665650629, -2.88930170250631, -7.0, -7.0, -3.0394141191761372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5776066773625357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6074550232146683, -7.0, -3.5437232293405754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.953711380427555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603966695368847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2127201544178425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4727564493172123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6163179419637905, -7.0, -7.0, -7.0, -3.094471128641645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.869476186093696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.62666878745452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.604334073102911, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.204616423121799, -7.0, -7.0, -7.0, -4.195650622404186, -3.512791089371343, -7.0, -7.0, -7.0, -2.761927838420529, -7.0, -3.8614746688571686, -3.284374328300976, -7.0, -7.0, -4.015522748273542, -7.0, -7.0, -7.0, -3.3176455432211585, -7.0, -7.0, -4.388746359046655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3341664243247684, -7.0, -7.0, -7.0, -4.238231203666038, -2.4878451201114355, -7.0, -3.0308020487722676, -7.0, -3.3398487830376373, -7.0, -7.0, -7.0, -2.82020145948564, -7.0, -3.546494382010644, -3.4437322414015967, -3.125535481352859, -7.0, -7.0, -3.0178677189635055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8484970180903666, -7.0, -7.0, -7.0, -7.0, -3.4313637641589874, -3.3309208305952356, -2.4456042032735974, -7.0, -4.125354374619764, -7.0, -7.0, -7.0, -2.847572659142112, -3.3988077302032647, -7.0, -7.0, -7.0, -3.442793225939769, -7.0, -2.64598337340893, -7.0, -7.0, -7.0, -3.738882805567102, -3.060320028688285, -3.5422858532992207, -7.0, -7.0, -7.0, -7.0, -3.381295623003826, -3.5833121519830775, -7.0, -3.6724365371419165, -7.0, -7.0, -7.0, -3.496006598880036, -7.0, -3.076094046682475, -7.0, -3.0272476487457864, -2.668714720098945, -2.965201701025912, -7.0, -7.0, -7.0, -4.3848370882036845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8720979742742268, -4.152326572848545, -7.0, -7.0, -7.0, -7.0, -2.6388219222193925, -2.7444494574467986, -3.605951157564873, -7.0, -7.0, -3.3961993470957363, -2.8695250628572273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.329641910730211, -3.2513136962545923, -4.154149979881548, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8369567370595505, -7.0, -3.825945143203848, -7.0, -7.0, -7.0, -3.427523559574997, -7.0, -7.0, -7.0, -3.172894697752176, -7.0, -2.4765418090274287, -7.0, -3.094994900944612, -2.52781396295585, -3.26528962586083, -2.876044550246095, -2.270031504854933, -7.0, -4.197026187759492, -2.287241711178348, -7.0, -7.0, -3.0253058652647704, -2.260667536990012, -2.826722520168992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4781218737204944, -7.0, -7.0, -2.9817053769570374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0619234632803045, -7.0, -7.0, -7.0, -3.739770065592548, -2.787460474518415, -7.0, -7.0, -3.7570922201189325, -7.0, -3.2105860249051563, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4762155307586386, -7.0, -3.852540985769799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.131458260106525, -5.013989316295481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.219322508419337, -2.569373909615046, -7.0, -2.749736315569061, -2.8273692730538253, -7.0, -2.7331972651065692, -2.2815383608882356, -4.94254376595368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.479791180189492, -3.5138831856110926, -7.0, -7.0, -7.0, -3.7128390329454333, -7.0, -4.232881807330064, -2.416640507338281, -4.233782715084948, -7.0, -7.0, -7.0, -3.99140330258004, -3.7393349601960795, -3.6589172200445175, -3.71474876072506, -3.8386602259889413, -2.7151673578484576, -7.0, -7.0, -2.6745549761273852, -3.154271775993095, -2.9492273190678455, -7.0, -7.0, -2.554186199069382, -1.9144753825678371, -7.0, -7.0, -2.5563025007672873, -7.0, -7.0, -7.0, -7.0, -5.131871982362283, -3.1132189243125046, -7.0, -7.0, -7.0, -3.0382226383687185, -7.0, -7.0, -7.0, -3.5025636691073636, -3.784759894664005, -3.2821687783046416, -2.7427251313046983, -3.0572856444182146, -4.624260819011183, -2.4036529261103188, -7.0, -7.0, -7.0, -3.7537362221750104, -2.710857489788406, -7.0, -2.979548374704095, -7.0, -7.0, -3.0166155475571776, -7.0, -3.697490887171057, -7.0, -7.0, -2.358146439931267, -7.0, -4.856940247940732, -3.2725556132438163, -4.796104055499863, -7.0, -3.3135157072120407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.487491891558492, -7.0, -7.0, -2.4162243170985684, -3.3416323357780544, -2.576341350205793, -2.9579081586744045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.372599050995377, -7.0, -4.59027324779574, -4.8801731073077965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.613704432062307, -7.0, -7.0, -4.2877868054647905, -7.0, -7.0, -3.3276041138143158, -7.0, -4.05924272179019, -2.6089715095439416, -3.0112884341835358, -4.139768925279731, -4.059416672002962, -3.7258753488678242, -7.0, -3.180906049868878, -7.0, -2.4424797690644486, -3.0920887392558067, -7.0, -7.0, -7.0, -4.213287488896829, -3.875014653677954, -7.0, -7.0, -3.6853834098014873, -7.0, -3.9138812542789005, -7.0, -7.0, -7.0, -4.216772698429039, -7.0, -3.844021310509786, -7.0, -4.782537118557698, -3.5997739391463885, -3.9121954771094196, -7.0, -4.119871473338342, -3.787814567063023, -7.0, -3.3867911712924914, -4.478681907362235, -7.0, -4.648504426480184, -7.0, -3.1107019165992926, -3.8294109927999447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.167465028843088, -3.350441856535061, -3.2282006765179165, -7.0, -7.0, -4.040701211937358, -7.0, -2.6924062348336304, -7.0, -3.744214724814166, -7.0, -3.717677436128305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0136796972911926, -7.0, -3.5203525040833177, -7.0, -4.0104271727170495, -7.0, -7.0, -7.0, -4.617290473188997, -7.0, -7.0, -7.0, -2.8548624729879006, -7.0, -2.9810631808506, -7.0, -3.2005769267548483, -3.77271278687713, -7.0, -7.0, -7.0, -3.1903316981702914, -7.0, -7.0, -7.0, -2.6290696425437527, -7.0, -3.2645817292380777, -3.285061975935162, -7.0, -7.0, -3.5368108659915416, -2.605708978411961, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5988744976635094, -3.1533574714829737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0236639181977933, -7.0, -7.0, -7.0, -3.313375022247447, -3.2317549484334687, -7.0, -7.0, -3.7026028413404273, -7.0, -7.0, -7.0, -3.7298125071609354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.926818160391426, -7.0, -7.0, -3.6427488455183137, -7.0, -3.1381447441794874, -7.0, -7.0, -7.0, -3.0373268776897215, -3.059658066366697, -7.0, -7.0, -3.2440295890300215, -7.0, -3.7923391506976287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.436162647040756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8057386695128246, -7.0, -7.0, -7.0, -7.0, -3.529045170765769, -7.0, -7.0, -3.5946273153522026, -7.0, -7.0, -7.0, -7.0, -3.400192488592576, -7.0, -7.0, -7.0, -7.0, -3.6504046698680317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1332194567324945, -3.390758528738717, -7.0, -7.0, -7.0, -3.7441040596897293, -7.0, -7.0, -7.0, -4.2155318184912955, -2.8148876006841723, -7.0, -7.0, -7.0, -7.0, -7.0, -4.353069502665453, -3.2269605935324526, -7.0, -7.0, -3.7275029147317134, -7.0, -3.171433900943008, -7.0, -2.6694718473766423, -3.3248994970523134, -3.1920095926536702, -3.091373812473584, -7.0, -7.0, -7.0, -7.0, -3.1357685145678222, -2.8491121661845775, -7.0, -7.0, -2.875784485010796, -7.0, -3.939450608698325, -2.6525686374796384, -7.0, -3.4599952560473914, -7.0, -3.008855563996213, -7.0, -7.0, -7.0, -2.8356905714924254, -7.0, -3.1559110927700798, -2.9428757745535403, -2.618097926840299, -3.1426397078324166, -7.0, -2.6461585698621124, -2.8431081419996067, -7.0, -7.0, -7.0, -7.0, -2.934750874663579, -3.6461095219788477, -3.984632311405793, -7.0, -7.0, -3.512550992904211, -7.0, -3.787956123283932, -2.418998673214926, -7.0, -3.5338991007965945, -4.525718413121268, -7.0, -2.9992755720056676, -7.0, -7.0, -3.9166644645413973, -7.0, -7.0, -7.0, -3.2436580266386965, -7.0, -2.805614117901356, -7.0, -3.407900540142635, -7.0, -3.9769126735719555, -3.6217992240026677, -7.0, -7.0, -7.0, -7.0, -7.0, -3.497067936398505, -7.0, -7.0, -3.326277326730684, -7.0, -3.071513805095089, -7.0, -3.3066823110190553, -7.0, -3.016476194280864, -2.867663867912998, -2.794662287175811, -2.885025331908764, -7.0, -7.0, -3.3092041796704077, -7.0, -2.5963003092425367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5918711998469846, -7.0, -7.0, -7.0, -3.228913405994688, -3.7929079827804753, -2.8327217499964084, -7.0, -3.076002913646383, -3.109240968588203, -7.0, -3.013490283397704, -3.5685537120494426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.057818194432099, -3.0850764114720945, -3.573741641520317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8711641328029494, -7.0, -7.0, -3.245265839457461, -3.3744061508805894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3287872003545345, -1.1811800845513774, -2.328209658423107, -1.7728647785479723, -2.4279547009381286, -7.0, -3.6608975946643114, -7.0, -7.0, -7.0, -2.101599797231485, -2.3862016054007933, -7.0, -7.0, -3.25988044734366, -7.0, -7.0, -7.0, -3.7769190028420465, -2.889873260441745, -7.0, -3.7394141026986953, -2.5118833609788744, -7.0, -3.4893959217271293, -7.0, -2.933824603968112, -3.016824493667488, -2.768268016451548, -3.39776625612645, -7.0, -2.7272158209084925, -7.0, -7.0, -2.954081629836854, -4.356236257289767, -2.828015064223977, -3.7993405494535817, -7.0, -7.0, -3.215108581053093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7179477417489277, -4.370050237074868, -3.417859036208306, -7.0, -7.0, -7.0, -7.0, -3.1271047983648077, -7.0, -7.0, -7.0, -7.0, -3.356312741150645, -7.0, -5.7135837761949855, -7.0, -2.698680378128617, -7.0, -7.0, -7.0, -7.0, -3.154880244718762, -7.0, -2.598790506763115, -3.0437551269686796, -2.7450747915820575, -7.0, -2.5443781439578124, -7.0, -2.146128035678238, -2.435985853029805, -3.7699432142157887, -7.0, -7.0, -7.0, -7.0, -3.245018870737753, -3.2281436075977417, -7.0, -2.944975908412048, -7.0, -7.0, -7.0, -3.0826058726978984, -7.0, -7.0, -7.0, -3.631078320874444, -7.0, -7.0, -3.251638220448212, -4.0180677317772515, -7.0, -7.0, -7.0, -3.022057020601165, -3.7939300067726847, -3.294378035587241, -3.2949069106051923, -7.0, -3.3609718837259357, -7.0, -3.1095785469043866, -2.427932184049885, -2.7757317762602307, -1.5448765357073875, -3.0394141191761372, -2.554186199069382, -7.0, -1.7533276666586115, -2.7801372190494913, -7.0, -7.0, -2.28746818870221, -7.0, -7.0, -7.0, -4.8331853740582575, -3.6299190355035416, -7.0, -4.301811023017477, -7.0, -7.0, -3.3601198615808054, -3.1151110355043476, -3.989004615698537, -3.5928426831311002, -2.4696939810474294, -2.378563063331533, -2.6069185259482914, -7.0, -5.226809913771843, -2.830107278114626, -7.0, -7.0, -7.0, -3.5054891384167237, -7.0, -7.0, -1.2143254249690765, -3.516931808868013, -7.0, -3.449478399187365, -7.0, -2.9112337273068007, -7.0, -2.9967305154351527, -3.3867664157173136, -7.0, -4.1623373431820045, -3.700721019369356, -4.6452557790817, -7.0, -3.237292337567459, -4.118487935113617, -3.12515582958053, -7.0, -2.801403710017355, -3.1332194567324945, -7.0, -3.3549403598710645, -3.776555910703262, -3.450249108319361, -7.0, -7.0, -7.0, -2.000929635350122, -2.32299412898388, -2.949877704036875, -2.172929010344586, -2.266290508320006, -2.2108668629911357, -3.048053173115609, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.583317820106908, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.389213942752022, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9546765869186435, -3.6227837254272086, -7.0, -7.0, -7.0, -5.237257129870853, -1.864892319838019, -2.8819549713396007, -7.0, -4.0628826901303645, -3.4078022359577385, -7.0, -7.0, -7.0, -1.9888332625766045, -7.0, -7.0, -7.0, -7.0, -3.5631337570664607, -5.0118212780525235, -5.405999956928305, -3.151676230847048, -2.6308970444785422, -7.0, -3.9588074784637617, -7.0, -7.0, -3.8005452505919526, -7.0, -7.0, -4.0351294308208, -7.0, -7.0, -7.0, -7.0, -7.0, -3.788021441365733, -7.0, -7.0, -3.992740017742474, -4.482201621904094, -7.0, -3.7577093522289338, -7.0, -7.0, -4.3144255411267, -4.310629596987806, -7.0, -2.470924753299968, -7.0, -7.0, -7.0, -3.8770976656512293, -2.2651127598506875, -3.1614224558093555, -7.0, -7.0, -3.4015154183068543, -7.0, -1.69186516156754, -3.1408221801093106, -3.09871293057888, -7.0, -3.847723429663294, -2.9828137621318627, -7.0, -3.453776859690442, -4.14863349848935, -7.0, -3.0262062970831183, -7.0, -7.0, -3.825491029879431, -7.0, -7.0, -3.3995006613146104, -3.6073477767684134, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0555242765059525, -7.0, -7.0, -7.0, -1.8051273703396125, -7.0, -2.475792212285615, -7.0, -2.762678563727436, -3.062699472253201, -7.0, -7.0, -7.0, -2.7556843338524133, -7.0, -7.0, -7.0, -7.0, -7.0, -3.109240968588203, -3.23771125771367, -7.0, -7.0, -2.5044185788030413, -2.252411674761112, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4070044182995427, -3.019504393829438, -3.2530955858490316, -7.0, -7.0, -7.0, -7.0, -2.2974869397629045, -7.0, -7.0, -2.9769610160114275, -2.943803556324682, -7.0, -7.0, -2.9356332030394285, -3.1184451059128824, -2.6835873175727674, -2.6310086768259344, -3.2785249647370174, -7.0, -7.0, -7.0, -3.1048284036536553, -7.0, -7.0, -7.0, -7.0, -7.0, -4.372819981678968, -7.0, -3.2667019668840878, -7.0, -3.8392265740134355, -7.0, -7.0, -3.5547798038037937, -7.0, -2.695731774096823, -7.0, -3.3944516808262164, -7.0, -2.121438887639747, -2.8806502929812914, -7.0, -3.0678145111618402, -2.6956567599361905, -2.99409708958821, -3.3654539479394416, -2.6500645611776816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4313637641589874, -2.3441114495680493, -7.0, -7.0, -7.0, -2.6441923209713596, -7.0, -3.497620649781288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.507693992654917, -3.245018870737753, -3.236033147117636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3677285460869766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.505584055799225, -7.0, -7.0, -2.7708520116421442, -7.0, -4.211093831058964, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8608169638645378, -2.804480189105993, -7.0, -7.0, -4.124647428970661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5646542304537565, -3.0538464268522527, -7.0, -7.0, -7.0, -7.0, -7.0, -3.47928731647617, -7.0, -7.0, -7.0, -4.840225320794298, -7.0, -7.0, -3.325515663363148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.209268308111116, -7.0, -3.902438056198665, -7.0, -7.0, -2.525044807036845, -2.832189461068513, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5633624094866074, -7.0, -7.0, -7.0, -7.0, -7.0, -3.428701599623054, -2.8496241248456595, -7.0, -7.0, -5.125305560484238, -7.0, -3.348499570283838, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.628238178156956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1607685618611283, -7.0, -3.678390894445094, -7.0, -7.0, -3.103803720955957, -7.0, -3.207652316779632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1722233414277525, -7.0, -7.0, -7.0, -7.0, -4.692750007059422, -7.0, -7.0, -3.3011385557150157, -7.0, -7.0, -3.696683952154445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2486270782758857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.939219635854818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.485011214578573, -2.463332970234029, -2.9559281568969507, -2.832625018703961, -1.3942821780014913, -7.0, -3.9898163827557567, -7.0, -7.0, -2.2227164711475833, -7.0, -1.7172863415602266, -2.8048206787211623, -7.0, -3.9209577059554492, -7.0, -7.0, -7.0, -7.0, -3.7621936280615906, -7.0, -7.0, -3.580696939712437, -7.0, -7.0, -7.0, -7.0, -3.118264726089479, -7.0, -7.0, -7.0, -3.66143405039392, -7.0, -7.0, -3.28668096935493, -7.0, -7.0, -3.294613170667107, -7.0, -3.7545776560447304, -7.0, -2.900093901543398, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.549371152333177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.941511432634403, -3.608312042697327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2105860249051563, -2.225309281725863, -7.0, -2.2430380486862944, -7.0, -7.0, -7.0, -2.7533276666586115, -4.3402903989534085, -7.0, -7.0, -7.0, -7.0, -7.0, -2.965201701025912, -7.0, -2.696356388733332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8371252805687592, -7.0, -7.0, -2.7054360465852505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3561215062369856, -3.41077723337721, -3.5354207180561734, -7.0, -7.0, -7.0, -3.1427022457376155, -3.1492191126553797, -2.9438241512023096, -7.0, -1.9144753825678371, -1.7533276666586115, -7.0, -7.0, -7.0, -7.0, -3.323716062508784, -7.0, -3.427972713608209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5817221599490985, -7.0, -7.0, -7.0, -3.3049928927594086, -3.274619619091238, -2.00445572629165, -7.0, -5.2263150073879165, -3.867408556522791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9556877503135057, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3863384163575105, -5.398155365331024, -7.0, -3.7885925559203595, -7.0, -2.9927007612585004, -7.0, -7.0, -7.0, -7.0, -3.4790711958039306, -3.7168377232995247, -7.0, -2.6532125137753435, -7.0, -3.3872118003137306, -2.3404441148401185, -2.968015713993642, -1.849507158919312, -7.0, -2.5569052690554477, -3.2467173689525204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.402840056067149, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.065852230217733, -3.279837982245049, -7.0, -7.0, -7.0, -7.0, -2.0964585634020168, -3.0066086442803615, -4.440310728382506, -4.360328288072052, -4.679963619914295, -7.0, -7.0, -7.0, -1.5502283530550942, -7.0, -7.0, -7.0, -7.0, -4.38925027615392, -7.0, -7.0, -7.0, -3.204933522354145, -7.0, -4.955211352309952, -7.0, -7.0, -7.0, -7.0, -7.0, -4.32054091992458, -7.0, -7.0, -7.0, -4.212400702780119, -7.0, -3.994729470636526, -7.0, -7.0, -4.466135768755128, -7.0, -7.0, -4.068601788131928, -7.0, -7.0, -4.130151433775354, -7.0, -7.0, -2.6242820958356683, -7.0, -7.0, -7.0, -4.468037009225747, -3.3439990690571615, -3.8808707325324234, -7.0, -7.0, -3.8639173769578603, -7.0, -2.5080806036449093, -7.0, -3.440436766105774, -7.0, -3.7552510186268915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5160062303860475, -7.0, -7.0, -7.0, -7.0, -7.0, -4.492229415365499, -4.787425049380184, -7.0, -7.0, -2.727846132072248, -7.0, -3.453776859690442, -7.0, -7.0, -3.4037331527937047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.256717745977487, -3.982904117792628, -7.0, -7.0, -3.5326270012288914, -3.028571252692538, -7.0, -4.143826390839561, -7.0, -7.0, -7.0, -3.3138672203691533, -3.949179151853337, -7.0, -3.2847690133490195, -7.0, -7.0, -7.0, -2.9206450014067875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7884512070234555, -4.152685756036786, -3.3089910290001643, -7.0, -3.400689059603588, -7.0, -7.0, -7.0, -3.4272831961911443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9263939002696824, -7.0, -7.0, -3.846535036016974, -7.0, -7.0, -7.0, -3.2335037603411343, -7.0, -3.0340265237751103, -2.8800510030033712, -7.0, -7.0, -3.2357808703275603, -7.0, -4.393926006585837, -3.0107238653917734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.105714510570921, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7983743766815614, -7.0, -7.0, -7.0, -7.0, -3.3944516808262164, -7.0, -7.0, -7.0, -7.0, -3.6471872978959894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.204662511748219, -2.387066088357355, -2.5327543789924976, -7.0, -3.27669152884504, -3.4076336627117665, -7.0, -7.0, -2.9028184680822537, -7.0, -2.6672762205459564, -3.357744325180376, -7.0, -7.0, -7.0, -7.0, -3.7555509188304823, -3.336309606123844, -7.0, -2.2125009481995876, -3.5045881874226055, -7.0, -7.0, -7.0, -2.4825877695267677, -7.0, -7.0, -3.6410014137444193, -7.0, -3.1832698436828046, -7.0, -7.0, -3.4740705032150436, -7.0, -3.30362797638389, -7.0, -2.3325731039972615, -7.0, -3.209393424994102, -3.2027606873931997, -7.0, -3.495127881242933, -7.0, -3.0290589500844995, -7.0, -2.6281845080734128, -7.0, -7.0, -2.8328281295393536, -3.1000787963935963, -2.9719712763997563, -2.722198248380669, -3.555880064636805, -7.0, -7.0, -2.792975026700668, -3.3142886609474975, -7.0, -7.0, -7.0, -2.99211148778695, -7.0, -3.2889344912500436, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9424214699806175, -7.0, -7.0, -4.1285252733891005, -2.3307035928340225, -1.9210015763006458, -7.0, -3.2258259914618934, -3.451939869365103, -7.0, -7.0, -7.0, -3.2727695865517594, -7.0, -3.0088130090520893, -7.0, -2.84432182089448, -7.0, -4.118885103297191, -7.0, -3.757282125444405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2081725266671217, -4.178775572045411, -7.0, -7.0, -7.0, -2.634141258939403, -7.0, -3.5267268673146357, -7.0, -2.8734866800131793, -3.1908917169221698, -1.4730000927917108, -1.3033097619588798, -2.028222561801142, -7.0, -2.7878404649420316, -7.0, -3.144262773761991, -7.0, -7.0, -7.0, -7.0, -3.4223709414184693, -4.761845179355819, -3.276921132065774, -3.8975171294005255, -7.0, -4.095069050964049, -7.0, -2.972665592266111, -2.921166050637739, -7.0, -7.0, -2.887950539931525, -3.5961570809161723, -7.0, -7.0, -4.0846656297465795, -7.0, -7.0, -7.0, -2.583198773968623, -7.0, -7.0, -3.1991378431311865, -7.0, -3.7637274037656985, -7.0, -7.0, -7.0, -2.003245054813147, -2.220854940299613, -3.7906369619317033, -3.185712099870006, -7.0, -7.0, -3.3014640731432996, -3.407354479028052, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3951515915045425, -7.0, -2.5379449592914867, -3.525044807036845, -2.4474681309497557, -2.849777594833205, -3.12515582958053, -7.0, -2.325587207294423, -3.245265839457461, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8556123319140068, -7.0, -4.000954398406458, -7.0, -3.0946807133711545, -2.732568812248553, -2.718916686014861, -1.9089510001271135, -2.7786034050126207, -3.092018470752797, -2.287670025764879, -7.0, -2.97297382115194, -3.064832219738574, -3.414137362184477, -3.242127143728284, -7.0, -7.0, -7.0, -3.694868327982456, -2.512625110914785, -7.0, -7.0, -2.6014828106002095, -3.1458177144918276, -1.435209888081237, -1.601093818555942, -2.45838601110505, -0.4080403355763634, -2.9647309210536292, -3.2103854115447934, -3.505149978319906, -7.0, -2.9269851794378066, -4.374528394381243, -3.062689403096359, -7.0, -2.542514216281654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.659298054866162, -3.378942698613437, -3.8606673464441363, -5.412756136675269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2078185495655274, -2.725094521081469, -3.4207806195485655, -7.0, -7.0, -7.0, -3.2174839442139063, -7.0, -3.1815577738627865, -7.0, -2.9420621061144216, -7.0, -7.0, -7.0, -2.9116901587538613, -1.4251148148819859, -1.5931917679251126, -7.0, -7.0, -3.2845811128217504, -7.0, -3.243719975783927, -3.0969100130080562, -2.738780558484369, -7.0, -7.0, -3.158463011591568, -2.700126581535961, -2.965486399076146, -3.307067950661298, -3.5727803542787444, -7.0, -7.0, -2.448190836779987, -2.885522757873026, -7.0, -3.5269850685599957, -3.1873091622635195, -7.0, -7.0, -7.0, -7.0, -7.0, -3.105964111628025, -7.0, -7.0, -7.0, -2.7801372190494913, -7.0, -7.0, -2.236789099409293, -3.196728722623287, -2.5750954320148955, -2.765668554759014, -1.903331194708171, -1.3205542659267813, -3.161275589322209, -3.6421181336945816, -7.0, -3.1925888952127703, -7.0, -7.0, -3.2062860444124324, -7.0, -2.998912904358786, -3.1414497734004674, -3.8494194137968996, -3.461348433647983, -2.8549130223078554, -3.035829825252828, -4.829018653399399, -3.4459154139511234, -7.0, -7.0, -7.0, -3.2203696324513946, -3.406625327867206, -7.0, -2.9845273133437926, -7.0, -7.0, -2.785329835010767, -7.0, -3.7753191218294777, -7.0, -7.0, -3.7091002815511667, -7.0, -3.7487186396632652, -4.404012226182244, -4.729720613228042, -7.0, -3.1552752927300998, -4.1774911511996935, -3.3627965209590185, -7.0, -3.3316297176299323, -7.0, -3.1658376246901283, -7.0, -7.0, -3.1848333339333537, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3068537486930083, -3.0305187648435425, -3.239049093140191, -2.5843977472261894, -7.0, -3.150756439860309, -4.605628222007619, -7.0, -7.0, -3.712733859069952, -7.0, -4.089180683445066, -7.0, -3.9989237887958713, -3.194995460578334, -4.018284308426531, -7.0, -7.0, -7.0, -7.0, -3.6886978416536516, -7.0, -4.381214388259336, -4.626432760627577, -7.0, -7.0, -7.0, -7.0, -4.295435142353147, -3.9417846441215487, -7.0, -7.0, -7.0, -7.0, -7.0, -4.303987581009804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.623920893251629, -7.0, -7.0, -4.115307194646102, -3.0906107078284064, -7.0, -4.347486138076573, -7.0, -4.635792770070686, -3.3332456989619628, -3.3073890556533043, -3.677652569492963, -3.7365792753038436, -3.688882348427024, -7.0, -4.150925214104221, -3.879439965995217, -3.185825359612962, -7.0, -7.0, -7.0, -7.0, -3.9957141500530717, -4.074246624930057, -7.0, -7.0, -2.3140177818135124, -7.0, -4.261043881578282, -7.0, -7.0, -3.1551335219650514, -7.0, -7.0, -7.0, -7.0, -3.944306380496884, -3.6952189189051508, -3.23807120613056, -7.0, -2.9782348791753277, -4.500524627760176, -7.0, -3.6258365028509325, -4.960499317307279, -3.6591552809406296, -3.934323610582884, -7.0, -3.083413028394797, -4.140864047889339, -7.0, -7.0, -3.1559430179718366, -7.0, -7.0, -7.0, -4.005552278783667, -3.2064210652379885, -3.0953303204780394, -7.0, -7.0, -2.398226262323115, -7.0, -2.690786555281818, -7.0, -2.7340660548499804, -7.0, -2.7121635957440384, -3.7038929536325447, -7.0, -7.0, -3.6788217632521745, -2.7027176733035243, -7.0, -7.0, -7.0, -3.0622058088197126, -7.0, -3.303196057420489, -2.9618954736678504, -3.6326597132939136, -7.0, -3.007864112074002, -7.0, -7.0, -7.0, -3.092814413659737, -7.0, -7.0, -7.0, -2.7499635402286176, -7.0, -2.6298624609601275, -7.0, -3.409087369447835, -3.4948036944645287, -7.0, -3.2000292665537704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.247768748118374, -7.0, -7.0, -2.8662873390841948, -3.1476763242410986, -7.0, -3.873175231276166, -7.0, -7.0, -7.0, -3.009592521262823, -2.9572937964557795, -2.9801170463604465, -3.6871721045948, -3.4075608494863623, -7.0, -7.0, -3.2657609167176105, -7.0, -7.0, -3.490239485246287, -3.0837414400078025, -7.0, -7.0, -2.8535156967569284, -2.7353593330017105, -2.0456706229772466, -7.0, -2.3169041116345332, -3.585573518622731, -3.327631347430798, -7.0, -2.422127038242261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.676217409487349, -3.485295438726089, -3.887476638154133, -3.6034932083789473, -3.7420177471401384, -3.2703293970898586, -7.0, -2.832029647089928, -7.0, -3.426592582305156, -2.196689278957495, -7.0, -7.0, -7.0, -7.0, -3.109629161027386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.384652041999031, -7.0, -3.4687902620996107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4126285205443754, -3.6615918551563493, -3.5265331155907425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4695408715573652, -7.0, -7.0, -7.0, -7.0, -2.940142791106066, -7.0, -7.0, -7.0, -7.0, -3.1337783429891113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.726751652680992, -7.0, -7.0, -7.0, -7.0, -3.7269987279362624, -7.0, -7.0, -7.0, -7.0, -7.0, -4.332902805685792, -7.0, -7.0, -3.336859820916809, -4.872592097313848, -7.0, -7.0, -7.0, -3.2528530309798933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6354837468149124, -7.0, -7.0, -7.0, -3.952582588252909, -3.3961993470957363, -7.0, -3.7729814503449637, -7.0, -7.0, -7.0, -2.900913067737669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7920413107120825, -7.0, -2.972819734053675, -7.0, -7.0, -7.0, -5.229661368317959, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6586790285824486, -7.0, -7.0, -7.0, -3.59955559098598, -7.0, -2.8027737252919755, -2.6148972160331345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8739015978644615, -7.0, -7.0, -4.293274139710753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.060987273541201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1914510144648953, -7.0, -7.0, -7.0, -3.6387994113789563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.606327612467192, -7.0, -7.0, -7.0, -7.0, -4.030617067957522, -7.0, -7.0, -3.550595207489328, -7.0, -7.0, -7.0, -7.0, -3.024485667699167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7346398389876994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.681241237375587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941113727037101, -7.0, -7.0, -7.0, -7.0, -2.8662873390841948, -7.0, -2.0086001717619175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.243534101832062, -3.626994396483222, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.236789099409293, -7.0, -7.0, -3.912753303671323, -7.0, -7.0, -2.811909980420099, -7.0, -7.0, -7.0, -4.279050648199026, -7.0, -7.0, -3.551693915127225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8521138608497614, -7.0, -7.0, -7.0, -7.0, -3.5839917991983166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.585686278452497, -7.0, -4.8551980103548225, -4.381764682017124, -5.875131323916717, -7.0, -3.4690115586556876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8968154670877886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.36726271478424, -7.0, -7.0, -4.878521795501206, -7.0, -7.0, -7.0, -7.0, -7.0, -4.577641134695527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.527913324054898, -7.0, -7.0, -7.0, -7.0, -7.0, -4.771940064202349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.0648995469973555, -3.8674674878590514, -7.0, -7.0, -7.0, -5.234676698029644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.432119101024855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.689166735427055, -5.010377704226107, -7.0, -7.0, -7.0, -7.0, -4.953981854545893, -7.0, -7.0, -4.064981821697305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.595452128776965, -7.0, -7.0, -4.640973093964463, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604571622612871, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721068301797159, -7.0, -4.795010558631446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.744643016404164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6272429256634116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019116290447073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.737391449978478, -7.0, -7.0, -7.0, -3.320146286111054, -7.0, -2.8574832669524506, -3.321598430465344, -2.7732377468893765, -3.3569867783872587, -3.822560336942692, -7.0, -7.0, -3.2339854787802116, -3.2947600654704363, -3.140665139976736, -7.0, -7.0, -7.0, -7.0, -3.2525356393017573, -7.0, -7.0, -2.6072405038317426, -2.6182484922851024, -3.420120848085703, -7.0, -7.0, -2.849542252005017, -1.9255308560401887, -2.8813846567705728, -4.397331570391128, -2.8170693164140133, -7.0, -7.0, -3.060508975605298, -7.0, -3.030194785356751, -3.3533390953113047, -7.0, -2.970346876230093, -7.0, -3.9417256698245913, -2.7153765052071366, -3.370698092575577, -2.5143062095606763, -7.0, -3.1640552918934515, -7.0, -2.940516484932567, -7.0, -2.4010870839062237, -3.5073160400764136, -2.410469509068616, -2.7232503803830985, -2.045183221912755, -2.8051042162920505, -7.0, -3.399327532158679, -3.022943609686901, -3.1051694279993316, -7.0, -7.0, -7.0, -2.689486448364248, -3.2350231594952237, -4.472639451880648, -7.0, -7.0, -2.598571663482141, -3.281714970027296, -2.9328541131019046, -3.060320028688285, -3.3066394410242617, -3.618048096712093, -3.053849650809775, -7.0, -2.6669857183296606, -7.0, -7.0, -2.8732721503754086, -2.7002090764515674, -3.046300019652969, -7.0, -2.448190836779987, -2.788875115775417, -1.9988403344727612, -3.2180976641854886, -2.130735706961367, -7.0, -3.126273496084421, -3.6917002082901615, -3.075875295259833, -2.994537104298498, -7.0, -3.313023110323238, -7.0, -3.28668096935493, -2.8779469516291885, -7.0, -3.1506448175550226, -7.0, -2.979548374704095, -7.0, -2.6192539127997327, -7.0, -2.680901812206373, -2.8664350331791066, -1.9220356647941572, -1.5303194450185882, -3.378216149749878, -7.0, -3.140979163476971, -7.0, -3.632001499438424, -7.0, -7.0, -3.559068334034537, -3.3948017771627113, -2.9807606420143298, -7.0, -3.611723308007342, -3.4864752222675612, -7.0, -7.0, -7.0, -7.0, -2.663700925389648, -2.6725083442440685, -3.0409186507485244, -7.0, -7.0, -2.8378327212541783, -2.2807366842245287, -3.2626883443016963, -7.0, -4.09329908473905, -7.0, -7.0, -7.0, -2.605951157564873, -7.0, -3.1811644721192858, -3.3564720392787937, -3.5944201763721857, -3.497620649781288, -3.3930484664167784, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6088468223264116, -7.0, -2.860737174321432, -3.3961993470957363, -2.6886963393230485, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0507068636274597, -7.0, -3.597366050266028, -2.9813655090785445, -7.0, -3.6531642561518813, -7.0, -2.66838591669, -2.8300629327823716, -2.571514733712986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8777699234062526, -7.0, -4.011401259924744, -7.0, -3.2245330626060857, -2.462881498750418, -3.4129642719966626, -3.316319878258001, -3.025223915178311, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1876617026529592, -2.9793206973820245, -2.8849840645741107, -7.0, -7.0, -3.5395778833453093, -7.0, -4.068927611682072, -7.0, -3.2794387882870204, -7.0, -3.156791368003929, -7.0, -3.012274667007467, -7.0, -7.0, -3.5431364147862197, -3.265525335219074, -7.0, -2.471630166315894, -3.9061913308567564, -3.1551841596940076, -7.0, -7.0, -3.0402066275747113, -3.2935835134961167, -7.0, -7.0, -7.0, -3.375297738217339, -2.325834813172621, -3.244854146866291, -3.3976793537786056, -4.538082529106812, -7.0, -3.34908316877959, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8955606584533253, -7.0, -7.0, -7.0, -7.0, -3.330007700872759, -7.0, -3.00108438129222, -7.0, -3.2680511640364385, -7.0, -7.0, -7.0, -7.0, -2.792916728226602, -3.08278537031645, -7.0, -7.0, -7.0, -2.519302849235429, -3.029557692583844, -2.2752564951364582, -7.0, -7.0, -7.0, -3.0217994430119934, -1.242762218583721, -2.5497509785395267, -3.0993352776859577, -4.12104251895432, -3.4176377396522297, -3.330210784571528, -2.0528761166771035, -3.5746484921796697, -3.5410172928456567, -2.744540022083776, -2.1354639462909284, -3.1436912310222143, -7.0, -7.0, -7.0, -3.4605971888976015, -3.158060793936605, -3.014205413953746, -7.0, -2.5563025007672873, -7.0, -7.0, -3.196728722623287, -7.0, -7.0, -2.740362689494244, -2.671481400086431, -7.0, -7.0, -3.6892168647185577, -2.584378345778297, -3.3138672203691533, -4.317373762902532, -7.0, -3.1065308538223815, -3.2481368116402987, -3.5237464668115646, -2.6568478474496584, -1.760441815902545, -7.0, -7.0, -7.0, -2.061640934061686, -3.76473832263842, -1.9998002784596196, -7.0, -7.0, -7.0, -3.5524248457040857, -1.8979456641871053, -7.0, -7.0, -3.0014091684058766, -7.0, -1.79594318285679, -2.87486820071597, -2.4642320431696545, -7.0, -3.132899769944483, -1.5903324441974507, -7.0, -3.865595462350612, -3.4119898767888595, -4.370959852740585, -7.0, -2.0563850493810585, -4.547508059417997, -2.6920239462715356, -7.0, -7.0, -7.0, -2.0480441310593758, -2.9215130698187295, -2.7839685107944083, -2.506505032404872, -7.0, -7.0, -1.2174221537205385, -3.3344537511509307, -7.0, -7.0, -3.767897616018091, -7.0, -1.8084853593283476, -7.0, -7.0, -3.0538037967190252, -4.4813136109793765, -7.0, -7.0, -4.423565331599704, -3.01778087917159, -3.4763968267253302, -3.3506894128456532, -2.793677753532247, -3.5608626947274646, -7.0, -7.0, -4.128512351515452, -4.304972809313226, -3.341687267347663, -7.0, -3.8414399210172423, -3.2667530525395057, -7.0, -7.0, -7.0, -4.913379340609699, -4.306038816336349, -2.98085060800934, -3.850125259486936, -7.0, -4.671691093948305, -7.0, -7.0, -3.1505636786888123, -4.199618067707931, -4.38907744379235, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6958026089088825, -4.223418056905294, -3.151216578856456, -7.0, -3.641807500477222, -3.330649859099253, -3.260834312172319, -3.0757658782157344, -2.3113299523037933, -2.8666417205660397, -3.2011238972073794, -3.5744942682853273, -3.657915936829955, -3.86116088844683, -2.7919758753523225, -2.7781159404537976, -7.0, -2.679473322529414, -3.4292137870854282, -7.0, -2.6267394565233526, -4.398634324538392, -7.0, -7.0, -3.067775173091482, -3.181912549378863, -4.666244758796689, -7.0, -3.498999363580153, -7.0, -3.6611593333465513, -7.0, -4.504706975657982, -3.08402351282453, -7.0, -7.0, -3.8733981128778754, -4.153662453575496, -4.093890749991982, -3.4348083386530925, -2.3719048431670435, -3.5918989866912243, -2.8078055322706246, -3.2056238349015698, -7.0, -2.5502626059169518, -3.8835289504000867, -3.7032913781186614, -3.9523080096621253, -3.353723937588949, -2.881547680226655, -3.224667706687742, -7.0, -3.313234291694724, -7.0, -7.0, -7.0, -7.0, -3.3131639093135794, -2.8691143269793753, -2.587136432247095, -7.0, -3.2223262109908117, -2.6960216006793116, -3.285894712480839, -3.2355284469075487, -7.0, -2.5886451329030864, -7.0, -3.329540247656664, -3.44271488292848, -7.0, -7.0, -3.6933751510251853, -7.0, -2.7804613328617176, -7.0, -7.0, -3.8705209500127644, -7.0, -7.0, -3.510545010206612, -3.378216149749878, -7.0, -3.4662372137034914, -7.0, -7.0, -4.611903784101518, -3.1644324022827406, -3.6516102551072227, -7.0, -7.0, -2.6591812433275916, -7.0, -3.637689819118401, -7.0, -3.4847268042986617, -2.8518017263087634, -7.0, -3.0151501032294714, -7.0, -3.4794313371977363, -2.75190866845489, -7.0, -2.8000293592441343, -3.1375123531221294, -7.0, -2.9163223242173815, -1.9761305930235014, -7.0, -7.0, -2.8447433691232478, -3.0701302598602904, -7.0, -2.886123958121435, -7.0, -7.0, -3.9686697017203922, -3.551327988003846, -2.6771378628204405, -3.157456768134226, -7.0, -3.4834446480985353, -7.0, -7.0, -7.0, -3.866759783495108, -7.0, -3.252610340567373, -2.9867717342662448, -3.4649364291217326, -7.0, -2.979377627903428, -2.0598778316475386, -3.2688119037397803, -7.0, -3.1305347842273163, -7.0, -7.0, -3.453471233722936, -2.939447934040266, -3.7795964912578244, -7.0, -3.442793225939769, -7.0, -7.0, -4.386070702406175, -7.0, -3.4114513421379375, -7.0, -2.713231045167001, -3.5496162395190853, -3.9009948994400565, -3.2208328926130463, -3.7788022040132385, -2.7786679601196744, -7.0, -7.0, -7.0, -3.464564059655464, -2.8271537957574657, -7.0, -7.0, -3.2065560440990297, -2.9545640899663494, -2.913267330378869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.111486550023024, -7.0, -7.0, -7.0, -3.379124146070392, -3.318689269947746, -7.0, -2.920123326290724, -7.0, -2.985650973690949, -7.0, -3.0741152033076804, -3.556965499896943, -7.0, -7.0, -7.0, -3.6854730197227594, -3.3679147387937527, -7.0, -3.313168308546585, -3.0946457896059547, -2.911867530405052, -2.833784374656479, -7.0, -3.298525595321999, -7.0, -7.0, -3.5660837841679958, -7.0, -3.4723907276266286, -2.786041210242554, -7.0, -7.0, -2.8136836101381175, -3.9140785853891122, -7.0, -7.0, -7.0, -3.9771746760201876, -3.4857687326721285, -3.9240207004740677, -3.159717546180216, -2.8419588750133014, -4.112068504268197, -7.0, -3.923606643017459, -3.06850126027733, -2.9824159737447586, -3.480054875685184, -3.9408649759667216, -7.0, -3.9212701855098127, -3.916295994563131, -2.636443644559298, -2.4877321182290824, -3.131779009369187, -2.2626281576506475, -2.3665471616259084, -2.718794669189991, -2.673072130161556, -3.913124790389559, -2.528207213524963, -2.7041505168397992, -2.756230272933612, -2.6902981285842693, -2.6063324993460637, -3.9196532823103643, -3.318011132969562, -2.350910791047725, -2.686948920211501, -2.6944503426360096, -3.3346145711793946, -7.0, -3.2231496826367745, -2.9770118969770887, -2.8761076811963155, -2.505723786499102, -3.1581613832785496, -3.21761552866633, -3.9564565834098997, -3.384962397302607, -3.3280736545131555, -3.1045846507809474, -3.738304793074105, -2.246092887649155, -2.8981764834976764, -2.1350457803181566, -2.605884933947498, -2.583254084014788, -2.4435133193234853, -7.0, -3.342422680822206, -2.639942789926727, -3.344490519241893, -3.3484022275776355, -3.6502103546603593, -3.9201755220100227, -7.0, -3.155411956437706, -2.7694015416651996, -3.3196784923566365, -7.0, -3.5348718599395945, -3.3120185940611497, -3.517195897949974, -2.69915092268144, -3.074607494534864, -3.240466042135798, -3.088567471385042, -7.0, -2.5675926763114987, -7.0, -3.9277808493473745, -3.037341110553272, -3.690993032099869, -2.1847946376816547, -3.066272667101881, -2.2323711362133496, -3.03891806603037, -1.5967229720048797, -3.574224244616876, -2.5167404716478536, -3.6744937172963503, -2.850636434350743, -4.049799277918987, -3.7834509534038303, -7.0, -7.0, -3.716420733846555, -3.1341315530078986, -3.7062055418819706, -2.807722896083161, -7.0, -3.7378483616270444, -3.644290845128294, -2.833890494261626, -7.0, -2.072139306017309, -3.916295994563131, -3.102733766037084, -3.965906915495192, -2.4540095732950475, -1.937795942952816, -7.0, -3.450249108319361, -2.6130245297554895, -3.6629937971760524, -2.502741118806208, -3.4718293555258857, -7.0, -3.041611970435241, -2.669704193961892, -2.966105615272015, -2.6930426355860417, -2.5677011407545143, -2.6233236263839674, -7.0, -2.2272886675019556, -3.2412973871099933, -3.3021470709295784, -2.341169026512188, -2.720572720364261, -2.0429690733931802, -7.0, -7.0, -2.5951811732213312, -3.0757901954968463, -7.0, -3.9148189804474733, -2.923454069651785, -3.9096629851540183, -7.0, -7.0, -7.0, -7.0, -2.6961674109846214, -3.003162150454414, -3.138203983656957, -4.100025730107863, -7.0, -3.7083359026822635, -2.465489074876098, -3.4483971034577676, -2.728974100564831, -3.8046845149069406, -2.743750905479713, -7.0, -3.228964677405161, -3.3415334414404065, -2.07293081510074, -3.6137361412618714, -7.0, -3.9854264740830017, -3.3639408663008217, -3.6194585689943164, -3.3647385550553985, -3.4976666774938954, -2.647340440174626, -2.400451639956946, -2.6382168866215308, -2.0211892990699383, -2.7188705947989087, -3.6351820486562674, -2.088972232225393, -3.3293470222286112, -3.436374704897461, -7.0, -3.3433101031623416, -3.025561859661751, -3.4487578345818384, -7.0, -1.106382700346026, -7.0, -3.4741514875108575, -3.4379618469315383, -3.210786545639109, -1.4274622754309116, -2.5484139885542367, -1.88780952431716, -2.1288931953940935, -2.1409268419924303, -1.8867109891534184, -3.0683250363930514, -3.0277119350306485, -2.9586594270529334, -2.6084795227892617, -2.8001742327278905, -3.156044098964241, -4.09282587292398, -7.0, -3.6203442997544935, -3.9882021002587806, -4.473340964185936, -3.9230885154423993, -2.911712334172279, -7.0, -2.8982087790531406, -2.8577344348976292, -2.6921508972009547, -7.0, -3.458788881710845, -2.976382734932082, -3.300073495267144, -7.0, -2.5903358888776986, -2.6431378562608008, -3.172223341427753, -7.0, -3.913124790389559, -2.9740509027928774, -3.917190308511564, -7.0, -3.3311741373868458, -3.617629297757842, -3.6369390072874714, -1.7588497781312729, -2.7610252517113727, -3.026553691817198, -3.7602567411466885, -7.0, -3.2316734367061457, -3.334905905779908, -3.112509247045838, -3.4368514568313087, -3.920332071539589, -3.216517771441886, -3.3730499983581987, -1.9225367368683335, -3.2109602554168117, -3.2113875529368587, -3.3180633349627615, -2.2220918864542596, -3.9117965904372523, -2.713648019791832, -2.8627275283179747, -2.502491275926205, -3.9122220565324155, -3.9143960521297863, -7.0, -3.9253120914996495, -3.165194847972947, -2.825376178771401, -7.0, -2.7666606613741322, -3.7981324972646138, -2.70288382370294, -3.361507485824534, -1.8964141077401302, -2.3220354274653374, -3.6163179419637905, -7.0, -2.93411571174413, -3.036451451240427, -2.8291480838234775, -2.620978335335007, -2.938541798406638, -3.9500726297501574, -7.0, -3.4510696933190945, -2.5261901121876553, -3.167481436198042, -2.8112397727532894, -2.0249984726730275, -3.4669565452730775, -3.6685256885568625, -3.6416723732246865, -3.9199144806594317, -2.5629111450476487, -2.3409808671321186, -2.4473675823628844, -7.0, -7.0, -2.28746818870221, -3.323716062508784, -2.5750954320148955, -3.912753303671323, -2.740362689494244, -7.0, -2.6360578308137783, -3.4178866903508798, -3.9708580569965024, -2.8223353642970204, -2.9870794370455935, -7.0, -3.1095464078914286, -3.918502139636174, -3.1015506938924196, -2.2609794792347033, -2.703608100680318, -1.8395153297564846, -2.1082991858624305, -2.405908938343313, -2.705458565808605, -2.485957905922165, -3.098384109699789, -3.3691144374820716, -2.357588381499906, -3.9132839017604186, -7.0, -7.0, -3.1276877875398506, -2.0634559848506746, -3.454387467146955, -2.898026718171092, -2.8663295425225357, -3.2273209825488447, -3.089463530840192, -7.0, -3.0633333589517497, -2.988063243456569, -3.0512490216105164, -2.4096391348401878, -3.097406066153824, -3.3825900445189507, -3.043863436585028, -3.5614677682783173, -7.0, -1.9926583941651417, -2.948409084250442, -1.9483546620868522, -7.0, -2.745367607290579, -3.321287665169863, -1.8376124087883927, -2.337443413729783, -2.2169099048509042, -1.903587331203387, -3.916295994563131, -7.0, -2.804735581340288, -3.023458237643675, -2.8256757266498616, -3.1664794514726347, -2.526051950563682, -2.3354836176091194, -1.4433070787167055, -3.3085644135612386, -3.214472950523377, -2.796740803977907, -3.4270574456574274, -4.42130771600335, -3.1736596536320567, -3.995115777910966, -2.472115362423072, -3.5820917843954336, -3.0664656972289, -2.849377765840031, -2.7721192856137304, -3.7670816213633223, -3.599961007377962, -3.778585327862962, -3.6150917778889546, -2.9280827651572063, -3.6852190769087634, -3.207563090428015, -2.910700616959574, -4.266795959846667, -3.450895448690243, -3.759063188160487, -3.738584109859517, -3.469232742506612, -2.996803438696495, -3.6118294794983736, -7.0, -3.948119424380536, -4.363047594521094, -7.0, -2.9342782700303656, -3.7428625445258743, -3.7425051796758373, -3.504727542189424, -4.066661302300677, -7.0, -3.5192371614969833, -4.183725258045579, -3.278199853444053, -3.4588455054292027, -3.2905065109413227, -3.104487111312395, -3.414137362184477, -2.5069980127184524, -2.1405651757728412, -3.0084937139891323, -3.421364580221776, -7.0, -2.8123440918353033, -2.2018229155361007, -2.803577602396836, -3.0564007084194564, -2.7869309831175997, -2.9592447613165698, -3.669363376415619, -3.2896013381314955, -4.157214922391151, -7.0, -3.8435753430507633, -3.153066152285301, -3.7913397039651393, -7.0, -2.5320820293338104, -2.9426573673260323, -3.773319780326815, -3.32433390894172, -1.9449054803762327, -3.6298681187461233, -2.831585410556541, -7.0, -4.272214693977678, -3.088933040771907, -2.952182327565487, -7.0, -3.6798214301325634, -3.939319531078238, -3.254630748387398, -3.76867509238787, -3.30252933962341, -3.45046466200715, -3.008489956179166, -3.1529109077659996, -3.3419288837458097, -2.79702595590107, -2.7726950181443613, -3.753812783564702, -3.2755643375933237, -7.0, -3.7648110386557376, -2.8903128238621623, -3.66064416533768, -3.319574469725743, -3.9147661369258526, -7.0, -7.0, -3.6331990421206344, -2.5263157759703248, -2.8529589869476504, -2.8835289504000867, -7.0, -3.381611391532234, -2.9407654356312176, -3.2284431358004935, -2.731767781875961, -7.0, -3.0443764119563244, -7.0, -2.8781201029720007, -3.0313350044270404, -3.638289535414257, -7.0, -2.316032659035029, -3.5149017730441883, -2.944553168779153, -7.0, -7.0, -2.658393026279124, -7.0, -3.643156465619706, -2.9371530153045136, -3.089591144693822, -7.0, -3.300812794118117, -7.0, -7.0, -3.8288715612054722, -2.2004357471339104, -3.1761038471190988, -7.0, -3.7198282862543346, -2.418595284333892, -7.0, -2.795184589682424, -7.0, -3.125202335387921, -2.8746864162342978, -7.0, -3.922777341928798, -3.7049222912234017, -3.668012971641832, -3.194410265239743, -3.236537261488694, -3.373601541853096, -3.257054277944658, -3.9403670459856652, -3.380075503475807, -2.6950561797445025, -7.0, -7.0, -2.7928584219256614, -2.641751652976988, -3.9890491564382202, -3.057445878513803, -7.0, -7.0, -2.849586911831464, -3.038796722367585, -2.424932952019074, -3.0709404248961243, -3.7652959296980564, -2.7135838695113863, -7.0, -3.8685856665587655, -3.0322157032979815, -3.5330726600488123, -7.0, -3.295347148333618, -3.00142462840203, -7.0, -3.912434633375575, -2.997355174991824, -2.2987748165342907, -2.711220195775293, -3.1558563583922012, -2.8216694633753554, -3.0260836208009874, -3.274058834676048, -3.1152300105158863, -3.225356280749977, -3.3912880485952974, -7.0, -7.0, -3.2170099098042058, -7.0, -3.3395650046154235, -4.0253877998904075, -3.9482662198802956, -3.4214805302268916, -2.7848374672798744, -2.7876818161887194, -3.023800984470638, -2.630661741157685, -3.612889769287485, -2.9795897577601944, -7.0, -2.8979476545330574, -7.0, -2.684162875655056, -2.977195801518918, -7.0, -3.913707913980483, -3.023572516643862, -3.2550794424275757, -2.812498908830492, -3.4682488397706415, -7.0, -3.612836816232258, -7.0, -7.0, -7.0, -7.0, -3.44889174415122, -3.4967913157000425, -2.987263954122236, -3.4565178578052627, -3.939119717648487, -3.923295840655504, -7.0, -3.098693158915045, -7.0, -2.9652444739103614, -3.971832279924925, -2.7799994503958123, -4.130687493982032, -4.08771044886063, -7.0, -7.0, -2.8999376945524498, -3.2366883817646155, -7.0, -2.6002948575060483, -3.943840626401261, -3.6409284208668327, -3.743588150159904, -7.0, -4.011866356527724, -3.6177863946963984, -3.6207084880206177, -3.521835185750824, -7.0, -4.087603973687808, -3.125667119766511, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5674185056727485, -7.0, -3.376576957056512, -2.8394780473741985, -7.0, -7.0, -3.6151701184636975, -7.0, -7.0, -7.0, -3.4350210586631755, -2.812861957804769, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0497799152723837, -7.0, -7.0, -3.7234556720351857, -3.16724754053639, -7.0, -7.0, -3.0330214446829107, -2.6570558528571038, -3.0068937079479006, -7.0, -3.790443508353784, -7.0, -7.0, -7.0, -3.1734776434529945, -7.0, -7.0, -7.0, -7.0, -3.4671639659690903, -7.0, -4.298282163702267, -3.1048284036536553, -2.7087041048933, -3.146593102096305, -7.0, -3.400537989391946, -7.0, -7.0, -7.0, -3.296665190261531, -7.0, -2.9152825534179025, -2.932980821923198, -3.092670527035679, -3.3597722616567713, -3.1760912590556813, -2.751792151275026, -2.4161282165305416, -7.0, -7.0, -7.0, -7.0, -3.215901813204032, -7.0, -3.8584770418133405, -7.0, -7.0, -2.898999270889789, -7.0, -7.0, -3.216517771441886, -7.0, -7.0, -3.9233249878275025, -7.0, -3.4653828514484184, -7.0, -7.0, -3.912487761332324, -3.433289685195026, -7.0, -7.0, -2.6301735297867714, -3.219060332448861, -1.9992951670372276, -7.0, -2.2761081441521505, -7.0, -4.001540288088415, -7.0, -4.045987605660967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1694098981407, -7.0, -7.0, -7.0, -3.156981586378864, -7.0, -2.7829024059746446, -7.0, -2.5759867517113815, -2.624424359200106, -2.896801697664922, -3.1322596895310446, -7.0, -7.0, -3.219846386024361, -7.0, -7.0, -7.0, -7.0, -3.693726948923647, -7.0, -3.714664992862537, -4.759418525871249, -7.0, -7.0, -7.0, -4.04250113308656, -2.815577748324267, -2.836577274840649, -3.671358003443492, -7.0, -7.0, -4.012584163914151, -2.173429094519748, -7.0, -7.0, -3.902746034361216, -7.0, -7.0, -7.0, -7.0, -7.0, -4.054804500220955, -2.874844061845836, -3.696443763138999, -3.2615007731982804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.962606072924127, -7.0, -7.0, -7.0, -3.117872531243554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8898617212581885, -7.0, -7.0, -7.0, -3.913336925932623, -7.0, -7.0, -3.5500233911040167, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5188428262865648, -7.0, -7.0, -7.0, -3.993920958801287, -7.0, -3.7711463488149852, -3.089207977024948, -7.0, -3.7331169814420644, -7.0, -7.0, -7.0, -3.054421524462536, -3.3981136917305026, -7.0, -2.8787132411652734, -7.0, -3.174931593528443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.71589893337299, -7.0, -3.32688180000995, -3.1936810295412816, -2.8800510030033712, -3.140193678578631, -3.1829849670035815, -2.533108010216257, -2.456366033129043, -7.0, -2.226313431264316, -7.0, -3.413467412985825, -7.0, -7.0, -3.141763230275788, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6436993646393145, -3.649918718735419, -3.8509217930432844, -4.567367547554527, -7.0, -7.0, -3.1894903136993675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8664940967562282, -7.0, -7.0, -7.0, -7.0, -3.225050696138049, -7.0, -7.0, -7.0, -2.83290789709985, -3.400365273349939, -7.0, -3.3792450689395857, -7.0, -7.0, -7.0, -3.5502487419887805, -3.1293675957229854, -3.587748370340144, -7.0, -3.570100748491705, -7.0, -7.0, -7.0, -2.9773078135080184, -7.0, -3.2908801052671617, -2.8110534202587316, -3.8781194846971676, -7.0, -7.0, -7.0, -7.0, -3.545430829465351, -3.522313795156667, -7.0, -7.0, -7.0, -7.0, -2.765668554759014, -7.0, -2.671481400086431, -2.6360578308137783, -7.0, -7.0, -7.0, -3.334233484255711, -7.0, -7.0, -3.4547360006316015, -7.0, -7.0, -2.6980038315639985, -7.0, -3.0817522444133325, -2.5403294747908736, -3.829175073917088, -7.0, -3.2990712600274095, -2.5631843347973486, -4.44858201558873, -2.3977228071261734, -7.0, -7.0, -7.0, -3.80126647048962, -2.1551519363678144, -7.0, -7.0, -2.903496947335859, -7.0, -2.8341026557127935, -7.0, -3.7512020945883533, -7.0, -7.0, -2.244780916197219, -7.0, -4.082671697105723, -4.398460849608223, -4.3842811346015615, -7.0, -2.719267527975772, -3.7201220765691922, -2.818291890799996, -7.0, -3.2610248339923973, -3.1072099696478683, -2.705756835334468, -3.3498600821923312, -2.8153563389481215, -2.737669627356642, -7.0, -7.0, -2.4510883249706517, -7.0, -7.0, -3.2317243833285163, -2.9242792860618816, -2.848189116991399, -2.55030900697669, -7.0, -7.0, -4.1249821638851625, -4.776512319240097, -7.0, -7.0, -7.0, -4.384514698685653, -7.0, -4.597530649275731, -3.5614648480342446, -7.0, -7.0, -4.317415586331099, -4.246875921472082, -4.523338853616795, -3.7431176252147416, -7.0, -7.0, -4.226806049500727, -4.055989583385691, -7.0, -7.0, -4.7870032682937715, -3.8110832420318603, -4.238848680362337, -7.0, -7.0, -4.186975160132497, -7.0, -7.0, -3.9336318839818554, -7.0, -4.381836799998343, -3.8588578876206907, -3.908753019184534, -7.0, -3.6277412634214152, -3.6104472214421213, -4.161068385471174, -7.0, -3.9215304135012423, -3.2571984261393445, -4.198867769452965, -3.9891530670696294, -7.0, -3.711891549880579, -4.341157437445437, -7.0, -3.9359327868037766, -4.019365574572488, -7.0, -4.14997308296338, -3.488273318680757, -3.840965941921735, -7.0, -4.145957386466343, -3.8605775512444156, -7.0, -3.8353734524700087, -7.0, -7.0, -7.0, -3.5962275132351498, -3.825952190910465, -4.665554555638625, -7.0, -3.7405205860536648, -7.0, -4.356427441692355, -7.0, -4.804372879565798, -3.797821311364024, -4.233732009366046, -7.0, -7.0, -4.141136090120739, -3.6730989213414653, -3.666049738480516, -3.9292911732550975, -7.0, -3.3698268023206466, -3.650820767065712, -7.0, -3.742405968608249, -4.35687639402912, -7.0, -4.0062637263183625, -7.0, -3.3549723250189762, -3.122649163553088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4619484952037616, -3.3557798057347688, -7.0, -7.0, -3.4000004248702242, -7.0, -7.0, -3.1152775913959014, -3.3153404766272883, -7.0, -3.687426051894165, -7.0, -7.0, -7.0, -7.0, -3.1322596895310446, -3.241878383159056, -7.0, -7.0, -7.0, -7.0, -3.227372442289636, -7.0, -3.598790506763115, -7.0, -3.4350875123045923, -7.0, -7.0, -4.603220178008266, -4.494631082083801, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2467447097238415, -7.0, -7.0, -3.9645895874899035, -7.0, -7.0, -7.0, -3.343605508104172, -7.0, -7.0, -7.0, -3.287129620719111, -7.0, -7.0, -3.234390722392192, -7.0, -7.0, -7.0, -7.0, -7.0, -3.863709388627451, -7.0, -7.0, -7.0, -7.0, -3.35695218082546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.816108670739904, -7.0, -3.1411360901207392, -3.8428587624452937, -7.0, -7.0, -3.232169911523715, -3.2939649049909505, -2.529558673021163, -3.1649473726218416, -2.6176711958314747, -3.2463754640035085, -3.7825442840100103, -7.0, -3.7555699806288, -7.0, -7.0, -3.29269900304393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.537302670071282, -7.0, -3.702171950857711, -3.231336067802886, -3.0162810245428306, -7.0, -7.0, -7.0, -7.0, -3.700790221374347, -2.8741503584336896, -7.0, -7.0, -7.0, -3.2778383330020473, -3.6275194713376826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8423595733306746, -7.0, -3.4184670209466006, -7.0, -7.0, -7.0, -3.1504494094608804, -7.0, -7.0, -7.0, -7.0, -2.89707700320942, -3.3289908554494287, -7.0, -3.210853365314893, -7.0, -7.0, -3.182699903336043, -7.0, -3.275988458642023, -7.0, -7.0, -3.5994463757252757, -7.0, -7.0, -7.0, -7.0, -7.0, -3.053462604925455, -7.0, -3.3527611917238307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5282152823885995, -2.9323469078099147, -7.0, -7.0, -3.5970768472929735, -7.0, -7.0, -3.420120848085703, -3.7707293122538714, -3.057618564696613, -7.0, -7.0, -7.0, -7.0, -7.0, -3.531606631932722, -3.3850250382961597, -7.0, -2.9182925127553556, -3.4500800171371098, -3.501470072100412, -7.0, -7.0, -2.832082924950745, -3.5296869537729165, -7.0, -3.7982995236374486, -7.0, -3.4073909044707316, -7.0, -7.0, -3.6030360562505215, -3.429429264381788, -7.0, -7.0, -2.26563802057514, -7.0, -3.5676051634959993, -7.0, -7.0, -3.618780024506215, -3.517195897949974, -3.5039268041935103, -7.0, -3.1986570869544226, -7.0, -3.2214142378423385, -3.574956775764507, -3.1703298305678302, -2.9802761410778404, -3.097560966637652, -2.872685900230887, -7.0, -2.70472233322511, -2.499412125672275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.78141067367645, -7.0, -7.0, -7.0, -7.0, -3.0910804693473324, -3.321598430465344, -3.4095950193968156, -7.0, -3.368104059853412, -2.4995152549279713, -2.674759109847667, -7.0, -7.0, -3.9789561652175918, -7.0, -7.0, -7.0, -7.0, -7.0, -3.407900540142635, -7.0, -7.0, -7.0, -3.6225122309912363, -3.737113094305961, -3.396582891683383, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7663384752512874, -7.0, -3.2527721492435755, -3.1848333339333537, -7.0, -7.0, -3.580088257788128, -7.0, -7.0, -2.6961066506690017, -2.9515456637708595, -3.1821795991661013, -2.9893014677141294, -2.3880365792235625, -2.9171114724936964, -7.0, -3.272819243853222, -7.0, -7.0, -3.3183764152227964, -7.0, -7.0, -7.0, -3.4496840553919434, -3.8151569739533104, -7.0, -7.0, -7.0, -4.002610931654495, -3.0432312493636555, -3.077912702949456, -3.0817792267675337, -7.0, -7.0, -3.0394934351259337, -3.696880371682762, -7.0, -7.0, -4.102690912962709, -7.0, -7.0, -7.0, -3.1082266563749283, -7.0, -7.0, -3.16761267272753, -3.910277471004973, -7.0, -7.0, -7.0, -7.0, -2.823800153749878, -3.529430354366986, -7.0, -3.9398186628213794, -7.0, -7.0, -7.0, -3.2646407647145366, -7.0, -7.0, -2.687974620034556, -3.242417184417719, -7.0, -7.0, -2.661576077260146, -3.351892891903961, -7.0, -3.5854607295085006, -7.0, -3.266936911159173, -7.0, -2.3780803618804596, -7.0, -7.0, -7.0, -7.0, -3.4382258076045296, -7.0, -7.0, -3.170471266415623, -7.0, -3.8465845028980463, -3.3930484664167784, -3.860697274052039, -3.1392052835507003, -7.0, -2.3793702749984322, -2.65135257739122, -3.544564097496043, -3.1618669046240195, -3.0812272540419574, -2.7393462671509194, -2.92272545799326, -3.081707270097349, -2.649543470267784, -7.0, -7.0, -7.0, -3.2603894359538135, -3.298197867109815, -4.078855402979768, -7.0, -2.3460057534922925, -3.3854275148051305, -1.3998254718868253, -1.9363309201306227, -2.6553785755318513, -2.1295287738587763, -3.157456768134226, -3.8767372971406644, -7.0, -7.0, -3.16761267272753, -4.0919481908785595, -2.466197708063207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.529558673021163, -3.7647737169110402, -7.0, -4.316671364277856, -7.0, -7.0, -3.4622482153549976, -3.5219222448835, -7.0, -3.4095950193968156, -2.534660575828444, -3.266114049531676, -3.5640739789771465, -7.0, -7.0, -3.4099331233312946, -3.428134794028789, -7.0, -7.0, -7.0, -2.9179234789605135, -7.0, -7.0, -7.0, -2.725258066359961, -2.17507672117621, -2.263340126851339, -7.0, -3.4824447919182653, -2.8779469516291885, -7.0, -3.9056340013269546, -3.454133151696751, -3.577261953585815, -7.0, -7.0, -3.0993928573323, -3.6072405038317426, -3.2572344557135176, -3.485437481076301, -3.8823862832943425, -7.0, -7.0, -2.9574476493145365, -4.072323438293041, -7.0, -3.3471738364132073, -3.856910060300786, -3.2502735862322463, -7.0, -7.0, -7.0, -7.0, -3.6869042695681773, -7.0, -7.0, -7.0, -7.0, -3.427972713608209, -1.903331194708171, -7.0, -7.0, -3.4178866903508798, -7.0, -7.0, -1.34519604713307, -3.6329157673178623, -7.0, -7.0, -3.726380776040445, -3.403635189790548, -7.0, -3.4665710723863543, -3.111486550023024, -4.042299807413626, -3.2376275060053974, -3.9084850188786495, -7.0, -3.7272158209084925, -7.0, -4.249861686896716, -3.973589623427257, -7.0, -7.0, -7.0, -3.584218112117405, -3.1851878890039917, -7.0, -7.0, -7.0, -7.0, -3.6115108871266566, -7.0, -7.0, -7.0, -3.513217600067939, -3.4875625602563782, -7.0, -3.965724844764628, -4.120244795546365, -3.9625512306554445, -7.0, -3.913124790389559, -3.5642373934871046, -3.298033910215436, -7.0, -3.0242119239259035, -7.0, -3.73471984165568, -3.6057358938767465, -2.9051960260157315, -3.6120417446452695, -7.0, -7.0, -2.951531790542348, -7.0, -3.4727564493172123, -7.0, -7.0, -7.0, -2.9722671392456044, -7.0, -7.0, -4.139417271934507, -4.786225977095757, -7.0, -7.0, -4.72902702519179, -3.9308981144101045, -7.0, -4.3110647990615965, -3.850010951288372, -4.059184617631371, -7.0, -4.043735492958779, -7.0, -7.0, -3.758013840531501, -7.0, -4.691461665039397, -4.330636951476591, -7.0, -7.0, -7.0, -4.789393840735944, -4.317520127284809, -4.079350105514485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.393855868587961, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8561748468979484, -7.0, -4.688232892760542, -4.772365720825139, -3.9852467908028615, -3.8131137540078983, -7.0, -7.0, -3.5870146381512305, -3.469895618975018, -3.4056024552093134, -4.471335725161158, -3.610044198283449, -2.799113613408675, -7.0, -4.4675045136258955, -3.934801341746537, -7.0, -3.91365493508662, -4.106870544478654, -7.0, -7.0, -4.699247863898858, -3.959166300694504, -4.863007435910946, -7.0, -2.931966114728173, -2.840262964417612, -4.663889298622661, -7.0, -4.7097565730871915, -7.0, -4.26672546703192, -7.0, -7.0, -7.0, -4.1945906489052245, -7.0, -4.263612400668982, -7.0, -3.732726055601024, -4.037253808313048, -7.0, -3.9117724037085435, -4.664331654369715, -3.747567162737625, -3.447994792653729, -7.0, -3.7695988483874463, -3.628491104967123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.196148539699125, -3.3270522653266985, -3.7594411971336976, -7.0, -7.0, -3.3001786684400054, -7.0, -3.600319329751661, -7.0, -3.8783494222177755, -7.0, -3.1379934577865467, -3.4832305869021027, -7.0, -7.0, -4.186221536270829, -2.9093420383613084, -3.8190171986890595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7870706389786783, -7.0, -7.0, -7.0, -3.897163000414094, -4.801650631931656, -7.0, -7.0, -3.3268681598936816, -3.501470072100412, -2.9890936926103255, -7.0, -3.555698894718901, -3.8191928486335787, -7.0, -7.0, -7.0, -3.249931756634195, -7.0, -7.0, -3.568788212315347, -7.0, -7.0, -3.5851221863068155, -3.765407750790011, -7.0, -7.0, -3.2589563822842833, -3.7200765727681406, -7.0, -3.7259932589247224, -7.0, -7.0, -7.0, -3.612889769287485, -3.1278203345326987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8976270912904414, -7.0, -3.615107987443194, -3.442584279829459, -7.0, -7.0, -7.0, -3.172466706380776, -2.5802833190970835, -3.631240780235509, -2.329150944343016, -3.0859146287065933, -7.0, -7.0, -2.9906120389336768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.274826041478985, -7.0, -3.9155317393839453, -3.9680040266867103, -7.0, -3.6775157047987577, -7.0, -3.096794185701888, -7.0, -3.2018748585358794, -2.864445154002189, -7.0, -7.0, -7.0, -7.0, -3.524996189261706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6183619311098782, -7.0, -3.5991185650553628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6452257115354163, -3.5582284218033258, -3.692935002531138, -3.2871856695650172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.92263464618843, -7.0, -7.0, -3.7265642161622448, -7.0, -3.655234507034294, -7.0, -7.0, -3.625723909525756, -7.0, -3.510343901389912, -3.5569052690554477, -7.0, -7.0, -7.0, -7.0, -7.0, -3.126780577012009, -3.1781132523146316, -2.235360083082256, -2.662001879389917, -7.0, -7.0, -3.5255576630059604, -7.0, -7.0, -3.177824971864682, -4.219427334507682, -3.1551588415675598, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6567879234101603, -3.933892035764211, -7.0, -2.6987330518075057, -3.643319116204025, -7.0, -3.2127201544178425, -7.0, -7.0, -7.0, -7.0, -4.570040642457214, -7.0, -2.6769982707961844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.319591808561234, -7.0, -3.8429772355887812, -7.0, -7.0, -3.481729196960016, -7.0, -3.7209031708134575, -7.0, -2.7056499320768443, -7.0, -7.0, -3.4204508591060683, -3.269258151320081, -3.0860037056183818, -3.1709458747292723, -3.2488311928079616, -7.0, -2.9829492885744986, -2.861175835513029, -7.0, -7.0, -7.0, -3.1583624920952498, -7.0, -3.6603910984024672, -4.162967450221886, -7.0, -7.0, -7.0, -7.0, -3.497137064051958, -3.236033147117636, -7.0, -7.0, -4.086819124358255, -2.4496326504700745, -2.0932815675672454, -7.0, -7.0, -3.3220124385824006, -7.0, -7.0, -7.0, -3.2616196765479355, -3.2748503200166645, -7.0, -7.0, -2.9545640899663494, -7.0, -3.9538029130833663, -3.636888906983799, -3.577491799837225, -7.0, -7.0, -7.0, -3.4255342204982635, -7.0, -7.0, -7.0, -4.1760333492640225, -7.0, -7.0, -7.0, -3.0573702197800987, -7.0, -7.0, -2.593655208123772, -3.711638538232349, -2.9950908888423777, -2.4087243986938165, -1.9870514730726336, -2.1579601812912106, -7.0, -3.223790043636305, -3.0025979807199086, -7.0, -7.0, -7.0, -3.7132384615456617, -7.0, -3.7209582214513692, -4.283979284238479, -7.0, -3.892261606915535, -7.0, -4.3957194395376415, -3.341038631677523, -3.5643109099606027, -2.7875490247240235, -3.1565491513317814, -7.0, -2.7370879707315368, -3.2843179154306097, -7.0, -7.0, -4.384030665240514, -7.0, -7.0, -7.0, -2.4578818967339924, -7.0, -7.0, -2.94911107633224, -7.0, -3.756560043006683, -7.0, -7.0, -7.0, -2.887898488096872, -2.3086614084208055, -4.088384186097703, -7.0, -7.0, -7.0, -7.0, -3.8535765436196416, -7.0, -7.0, -2.5401730004667513, -3.375114684692225, -7.0, -7.0, -2.451103850736384, -3.226857570288723, -7.0, -2.957607287060095, -3.9252089214120036, -7.0, -3.244277120801843, -2.3578932352904296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7888280352309613, -7.0, -3.9988911346662124, -7.0, -3.4863596256881286, -2.9243830615097366, -3.302114376956201, -2.142858551113391, -3.071697945221614, -3.3763944420372662, -2.7302437827494095, -3.3972445810103866, -2.8328281295393536, -3.3481100684802376, -7.0, -7.0, -7.0, -3.7405205860536648, -7.0, -3.6906832800491083, -3.45499721730946, -4.35905722763489, -7.0, -2.281515419366247, -7.0, -1.2117962582834239, -1.6917128259772847, -2.354283100111711, -1.4273237863572472, -2.9417598138146954, -3.329058719264225, -3.492061604512599, -7.0, -2.9146075677710805, -3.673665876245702, -2.3555336147958466, -7.0, -2.5118833609788744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1772478362556233, -7.0, -4.158905021187544, -5.111643026868519, -7.0, -7.0, -7.0, -3.041195233696809, -7.0, -7.0, -2.3282339403543926, -2.9317967661271176, -3.404833716619938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6023214763152813, -7.0, -7.0, -7.0, -3.187238619831479, -1.5314789170422551, -1.7306844175132254, -7.0, -3.2814878879400813, -3.1522883443830563, -3.4379090355394983, -3.061452479087193, -3.091373812473584, -3.122379732069112, -7.0, -7.0, -2.9705894085233866, -3.4658288153574364, -3.025702979917565, -7.0, -4.019299112795343, -7.0, -7.0, -3.2038484637462346, -3.32956058217531, -7.0, -4.000173683058465, -7.0, -3.890979596989689, -7.0, -7.0, -7.0, -3.362670929725667, -3.2713768718940743, -7.0, -7.0, -7.0, -7.0, -7.0, -1.3205542659267813, -2.811909980420099, -7.0, -3.9708580569965024, -7.0, -1.34519604713307, -7.0, -3.2891555884827857, -3.461198288622493, -7.0, -3.459650919472839, -3.1486026548060932, -7.0, -7.0, -7.0, -3.2962262872611605, -2.829732493973346, -3.8435442119456353, -7.0, -7.0, -7.0, -4.787563513038879, -3.315917891264946, -7.0, -7.0, -7.0, -3.8165726960261033, -3.3984608496082234, -7.0, -7.0, -7.0, -7.0, -3.170408411725318, -7.0, -3.4671639659690903, -7.0, -3.329397879361043, -3.3997602257103656, -7.0, -4.163221026715578, -4.101317377184387, -4.460806512248824, -7.0, -3.8489277132270785, -4.244054348556946, -7.0, -7.0, -3.0105119627372137, -7.0, -7.0, -3.2392368961623195, -3.309772070541653, -7.0, -7.0, -7.0, -3.525692524505011, -7.0, -3.2659963704950794, -7.0, -3.4211924683057493, -7.0, -2.8322959710584774, -7.0, -7.0, -3.759376418957984, -4.079130575402225, -7.0, -7.0, -7.0, -3.241973165892279, -7.0, -7.0, -3.168616455120142, -3.713196433725248, -3.6829569263012085, -4.322136564096103, -7.0, -7.0, -3.5906858261907315, -7.0, -4.681404067277602, -4.0238232536545935, -7.0, -4.028916761576257, -7.0, -4.787405564322391, -7.0, -4.065567267015471, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0814265251112465, -3.7060916285745886, -4.684926111375293, -7.0, -7.0, -7.0, -7.0, -7.0, -4.46551668871213, -7.0, -3.8446842291378767, -7.0, -7.0, -4.291069003840989, -3.630377017892592, -7.0, -7.0, -7.0, -4.15839265038712, -4.028693228393916, -3.2971036501492565, -4.153448988600982, -3.8526770142842115, -3.511856634342237, -7.0, -4.450526229129723, -3.5728135375594547, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092224852134988, -4.127366817859523, -7.0, -7.0, -2.853926247739357, -3.2174839442139063, -4.6585598838444096, -7.0, -5.406829613621545, -3.4074588904573924, -3.9383695974518065, -7.0, -7.0, -7.0, -4.311669112400611, -7.0, -3.935053589231065, -7.0, -3.3114223779423435, -7.0, -7.0, -3.7435195636811023, -4.960047217179546, -7.0, -3.4350807053258485, -7.0, -2.9777236052888476, -3.662621437602524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.004192356259714, -7.0, -3.508179448873524, -7.0, -3.1389339402569236, -2.5712696007142037, -7.0, -3.456214155357989, -7.0, -2.765600828523882, -7.0, -2.824077854285757, -3.3944516808262164, -7.0, -7.0, -3.6759310203474467, -2.7683420586445333, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2821687783046416, -2.946615995262667, -2.9231403560252005, -7.0, -3.2007723524351035, -7.0, -7.0, -7.0, -3.473966358354253, -7.0, -7.0, -7.0, -3.500236474825639, -7.0, -3.0974886866205247, -7.0, -7.0, -3.79376710997917, -7.0, -7.0, -3.513084360465144, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.545142110961596, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5692568333286103, -7.0, -7.0, -3.9405662864900903, -7.0, -2.8839754128255146, -3.571941635074462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4766867429456445, -3.254366781142282, -7.0, -7.0, -3.5476516583599693, -3.1613779859014137, -2.2309771531262292, -7.0, -1.9799823174336075, -2.6700137961720474, -3.1960379407345236, -7.0, -2.808698501861456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.60862669869485, -7.0, -3.407447560198671, -3.7785130117389247, -3.7344797894255772, -3.5603849229720157, -7.0, -2.9418425759839604, -7.0, -3.719993826367604, -2.271761515345511, -7.0, -7.0, -3.4211101297934343, -7.0, -3.205068964264459, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.855216194733363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.517591730711908, -3.094994900944612, -3.3573630306151427, -3.219060332448861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6646688327641304, -7.0, -7.0, -3.3223226858740107, -7.0, -3.5309676815719153, -7.0, -7.0, -3.4912215762392833, -7.0, -3.4274861090957858, -7.0, -7.0, -7.0, -4.3537559923907425, -5.13102808436136, -7.0, -7.0, -4.432619791621332, -5.135129469720565, -4.833127979575862, -4.654503824567048, -4.530462245283984, -2.0820854933794593, -4.145932559175869, -5.1309927524950965, -7.0, -2.5265077110153857, -2.7643838804771876, -4.019761578098389, -5.132701445891525, -7.0, -4.654333796697641, -4.654028863068111, -1.4720704405603522, -3.622073767651025, -7.0, -3.4115667095759865, -1.872077702725696, -4.656213231673656, -3.927800081376748, -4.8299338468023905, -3.9057038389018577, -4.355844065953179, -3.6849158582733965, -2.4780334926983727, -3.9027961001341844, -4.529289160043351, -7.0, -3.956110776938729, -3.98979929932723, -4.432799386001243, -3.63397630832238, -4.653955004827485, -3.8815019492659513, -4.65500710172715, -2.14941258386112, -4.286456469746983, -4.831405810044329, -3.7049508491377243, -5.13372089071826, -3.239902941766294, -5.13203864273154, -4.355128920244271, -3.6624524593842067, -3.75349688080315, -4.180918775794492, -1.8376804112458864, -3.46608164105026, -3.235138879593742, -2.946822886713244, -5.132320537739833, -3.9867429509093695, -3.7068757593062003, -4.019068334783454, -3.9871329630575385, -4.656248373549415, -4.654266408747144, -4.3545981854393, -3.5178397276832776, -2.1812042907283047, -4.529436771200223, -4.830213229831968, -3.569225185670545, -4.6539132533085725, -3.307406112562047, -4.063958513056966, -4.654276036237423, -4.359990334130061, -2.536731083478206, -4.353140126440264, -2.5843662672560845, -7.0, -5.131871982362283, -2.7607533744730497, -4.022164967179576, -4.286918171392467, -7.0, -3.2085014250503723, -3.9566389814310416, -3.214714574499518, -3.994518255666037, -3.3497328145444505, -5.135021279538261, -1.7477115397560063, -3.3478145680287468, -2.642912322460976, -4.654118760497929, -4.829850318129671, -3.8591920393735446, -2.9525056727465, -3.906743723985058, -3.664479006216105, -4.228522262324842, -3.2378709255202747, -4.831959310304302, -5.131037719826043, -4.431990625786141, -2.70387541443253, -4.654028863068111, -3.7391354571001174, -4.092899198743546, -3.239555975036251, -2.3074711606695057, -3.8771921128174807, -4.177565355747414, -3.577261953585815, -4.0927780450665505, -1.2633858238214657, -4.230103903455626, -4.829911359893916, -4.358321983805685, -3.9365294501839028, -3.540895440874582, -3.530983666793107, -3.1789449892018418, -2.2568108075912052, -4.8315082447834055, -3.036619683701646, -5.1326886476808244, -3.3591023009748793, -3.811463290247623, -3.6759141756799263, -2.948328310734916, -7.0, -5.132787823950332, -2.467238020787567, -3.5706407429409537, -7.0, -7.0, -2.8416736274591754, -7.0, -7.0, -4.829988453018915, -7.0, -5.1309927524950965, -2.1147504503585406, -3.602252279166497, -2.7652681526752825, -3.345162048144411, -4.0913823431266625, -3.584911607443614, -5.131114795848502, -4.177449920971824, -3.7188879682162526, -3.32554243338228, -2.6044574916627705, -7.0, -4.353723937588949, -4.831860180040169, -2.5652354585411796, -4.653942158633786, -5.13086746180259, -4.135650950040593, -3.791824571446418, -4.286289623452549, -3.6290877094305602, -4.180683285785931, -3.8152171095431946, -4.057935394535143, -3.7551472476993064, -3.647896190630718, -4.356844568723753, -4.178116454356075, -2.005814115162866, -4.132061072897837, -7.0, -7.0, -5.13301168709029, -7.0, -3.8094186141437016, -4.653974273405593, -2.722774034232548, -4.5298825089959625, -2.6693537374411997, -7.0, -2.6012098589892596, -1.7279021502757326, -3.530900537217131, -2.0055196299497386, -3.328498786724642, -3.4906765986678305, -2.8571673823501493, -4.020756379707693, -3.9049636245067205, -4.531845996169773, -4.3566058045664064, -3.3869149280061124, -4.354124452660498, -3.9680655763030757, -7.0, -2.468794826053917, -4.135847932046676, -3.4240367997738432, -7.0, -2.9425575391636456, -5.130963842466372, -2.988401009650151, -3.1681482627277147, -4.289674936630779, -3.339156404282931, -7.0, -3.493560280573793, -4.233576686264463, -7.0, -3.330724416161277, -2.9290514496780715, -2.910360625418522, -7.0, -4.285833677940712, -4.177661527961347, -4.529138288111391, -7.0, -5.132234066681874, -7.0, -5.132522236611947, -3.1814178388212113, -3.3024407325003486, -2.641568252457706, -1.7520008008174084, -5.13082247683857, -5.132077093735961, -4.655336960652428, -4.355652624508672, -5.131034508028235, -5.131410127278809, -3.482908503544747, -4.289869134324165, -4.532837154509227, -7.0, -7.0, -5.131416545297398, -7.0, -7.0, -4.6542150585275275, -4.533091749496603, -2.2428326739553217, -4.829879233719065, -4.6539132533085725, -7.0, -4.83068167600728, -3.4513514117014297, -2.941360732240858, -7.0, -4.178618882272053, -3.8894386626800617, -3.364334724324249, -3.55734676803538, -3.070250341710294, -3.511765624172576, -5.131233594589685, -4.653768697817702, -2.4871524372774285, -3.905583203308676, -2.434341118152189, -4.530900537217131, -1.5413138885839677, -4.355116139076884, -4.43277694076486, -4.2867739423480264, -3.1025209626503196, -2.7457153853103002, -3.0500714737493366, -3.154175460464973, -3.033214968915833, -3.930394990636852, -4.831789815800684, -4.830348040099118, -4.179874009512173, -3.633367445117007, -4.293002466752252, -7.0, -5.131871982362283, -4.8331853740582575, -7.0, -3.161275589322209, -7.0, -3.6892168647185577, -2.8223353642970204, -3.334233484255711, -3.6329157673178623, -3.2891555884827857, -7.0, -3.585613140277534, -4.830482808532513, -3.0166437893932163, -4.654163702235632, -4.09165736688658, -3.886462523316444, -4.2904702780719735, -2.887096773947783, -3.486250961710627, -3.8699446621420774, -4.0942805092610115, -4.185910285040714, -3.9906971299606298, -1.864621258181625, -2.916254966106324, -5.1309799038310295, -7.0, -7.0, -3.4659804625982287, -2.6830282010520166, -5.132118745149423, -5.132672649387063, -4.096303156190983, -7.0, -3.738168310814374, -4.83110156450136, -3.9691983999984655, -5.132845399779915, -4.355441941404169, -3.0148119432299376, -3.7347518385968206, -2.7824557613080687, -3.1256124650617196, -2.272641177074865, -4.6557401369917155, -2.89028821222648, -2.6169091123668817, -3.290578685153958, -7.0, -3.8544882250444306, -7.0, -3.270804691244306, -3.5802929605940523, -3.8036308979912206, -4.0948203803548, -4.830126543985933, -7.0, -3.493777966279982, -7.0, -5.132698246374209, -7.0, -3.9393288950774887, -4.831002238235833, -2.391471506923992, -7.0, -5.131015236742566, -2.4737871205362993, -2.484701328997382, -2.8024273662401074, -3.212939250049553, -2.955505606253773, -2.7023809792500697, -2.937358852359666, -2.0204866559028973, -2.076825357874002, -2.9820570489258453, -4.062860770694389, -2.852345049726324, -2.789201276386549, -2.6902686922258034, -2.113836231826141, -3.2290694305991696, -2.77125463769855, -2.442962687016704, -3.5605551894359078, -2.4806634430953562, -3.5849183061697203, -2.223503245137466, -1.6320143333368453, -2.215185156768748, -3.29321813423232, -3.386955759983757, -2.8855714145494162, -2.8508261874537557, -4.182310013476203, -1.9979223205494447, -3.0725066521685744, -2.5439889874149095, -3.154535643494955, -3.0270197814276156, -3.59140490963274, -3.231884293201811, -3.4285412579858168, -2.7812747683709502, -2.9525169334354104, -2.346971357713787, -3.854437093603298, -2.570023759327654, -2.2056860269673777, -2.7848376022392927, -2.848167227384979, -2.7768603700505596, -3.9061543387262456, -1.4214863526530293, -3.1424406089605474, -3.6340866325525636, -2.6184756300183856, -2.0084125462234126, -2.1867531119226142, -4.532588780613535, -2.2325572566707454, -3.292597537758045, -5.131397290957086, -3.4245118144555238, -2.754048441822166, -3.5529083326924566, -4.434338922543306, -1.9336346652537082, -1.3564708036543416, -2.0031671015981236, -4.432809005033168, -3.667649041607016, -4.132016211406724, -1.7524393038328663, -3.399920830723496, -2.9095246982537577, -2.9426614178394863, -3.1145707251839956, -4.830094433725594, -2.8816000105663435, -2.217429614958867, -2.476428154161269, -1.7579431527357852, -2.681969076348861, -2.9258676763970497, -1.8296101947465104, -2.0456998974532627, -4.655788109253206, -2.3073699418672065, -1.8355476285248808, -3.4082808041632413, -2.106234717856727, -5.132153985533335, -3.232933396387438, -2.3163582346557057, -2.880258687674373, -7.0, -5.131069836497796, -7.0, -4.83028705968542, -3.6542914604812795, -2.482519614750209, -3.5924876498132257, -2.744819187545737, -4.432622999315182, -3.387065510037909, -2.6466932781616226, -3.580747624719427, -4.181637185532979, -4.432696769735502, -3.2716123995984345, -4.529167182538893, -2.4723159962011216, -3.2177595992418233, -3.956427776718407, -4.233215107208646, -2.976582156824352, -3.8350402280936993, -3.2351510964530643, -3.686077403554104, -3.7898818450576406, -3.1391657840831786, -4.530462245283984, -3.9567413467550643, -4.056037301237244, -3.58363637568586, -7.0, -3.139609254468416, -4.432231485690214, -7.0, -2.753868319655627, -2.0258117253219763, -1.7751789704469467, -7.0, -3.815972841673966, -3.2317304480045337, -4.019327232480801, -3.5364732165424573, -7.0, -3.879312558336867, -2.7002609340449686, -7.0, -4.052309099647323, -3.4556599840667923, -3.6572694400502246, -2.4857840825802984, -4.178090837363468, -3.532735274709472, -3.811370704099495, -4.053417803596533, -3.688165476764458, -2.9008708648852064, -2.608085178437431, -4.131101950794651, -3.560545286566989, -3.4768883097095413, -4.232830996311034, -3.0254697190610558, -3.8535124940543097, -4.529481686378381, -3.278646919030887, -4.057050861483566, -1.9929038165296251, -3.405965787718157, -3.0512905959414938, -4.435669211926046, -4.3544093944426345, -2.6091944610327804, -4.65525692082863, -2.702433636058207, -3.3993339455805467, -3.545062759071212, -2.975376286330473, -3.2043051569961905, -7.0, -3.0276892984310293, -2.34923925531571, -3.744562084061763, -4.057612225741657, -2.7805170155714753, -3.55875276807147, -3.447412329358754, -4.092561159359732, -2.947083883460867, -2.5550474356478134, -3.930066690773242, -2.925949152253038, -5.131169383089324, -5.130915654808137, -2.874280210118406, -3.274881913341615, -4.019161044289363, -3.6612319765917327, -2.6698579446524158, -3.6736817501041967, -2.6964586647109856, -2.7501725423153607, -3.6252937390341455, -3.4946604700009796, -4.831431420994256, -3.930980851109795, -5.130925292767531, -3.5521501101340105, -3.462635047996229, -2.2478757389051127, -7.0, -3.904674184959942, -4.179293205577373, -2.2379910476057443, -4.4340097093697395, -5.132067481304007, -5.131021660599472, -4.528907063458861, -4.228227068357458, -7.0, -4.4325395915742165, -3.135984372831044, -3.9587358469865994, -4.181602246187018, -4.831216882631442, -3.5641572397284045, -4.830556592575827, -4.831008647067558, -4.655794505154385, -4.354207713411756, -3.7057782128285974, -3.8124135509583827, -3.096409181545141, -3.308474709179702, -3.681219397305083, -4.354537397297181, -7.0, -3.8849903531831114, -4.287257721739699, -7.0, -2.9208623994457943, -4.530814193504615, -4.530699041844945, -3.6486275257525964, -3.3668596440286906, -4.058381732260055, -5.131323474743548, -4.8304667668642045, -4.291555951352488, -4.830100855967594, -3.317296035535606, -4.0932688273621345, -4.832237393796547, -7.0, -3.1143885542749916, -3.877025615867249, -3.176958980586908, -7.0, -2.932304613951781, -2.1468778968404774, -3.2307553740419857, -2.630653834698125, -1.8459914205954857, -3.319980017164956, -2.4424441346454007, -7.0, -3.1879717016473963, -1.9572528896889112, -2.7339061042946105, -3.9239689648754714, -3.906119457545562, -3.8748875108461127, -2.581665266717616, -7.0, -2.566543246335169, -3.8691143269793753, -7.0, -2.745483749306146, -2.5357768572479262, -3.9168748785386835, -3.894426837964188, -7.0, -2.8821923815471764, -2.927010868975651, -7.0, -3.3144614414085494, -7.0, -7.0, -7.0, -7.0, -2.9578944872128985, -3.5894469132961895, -2.703420357325243, -3.576974474604044, -2.5893444425092373, -7.0, -2.6755147698424953, -3.8870543780509568, -3.2993438354972895, -2.8855496750060046, -2.028539565086679, -2.8542680773374083, -3.5936736569452488, -3.916295994563131, -3.40963729678618, -2.9700884752693537, -3.946599625015133, -0.9925761830444612, -3.3920370982602477, -2.282836990837962, -1.9949700168263695, -3.297267958549692, -3.2109602554168117, -2.8461603181188546, -3.6114577656683426, -7.0, -3.9174529919296637, -7.0, -3.606327612467192, -2.5993573652014748, -2.893712456636053, -3.88570038012833, -3.8809849904867533, -2.7260476681558012, -7.0, -3.01678967629609, -2.639256561892579, -7.0, -2.3846669680032564, -2.653218720154461, -7.0, -3.0673963618557067, -7.0, -7.0, -2.0430295895894606, -3.660248683421062, -7.0, -7.0, -3.215505378231818, -7.0, -2.8937617620579434, -1.9992476852440502, -3.1715314404115604, -7.0, -1.8644581722393818, -2.4887994770696724, -2.0492180226701815, -3.4036923375611288, -7.0, -2.078411501156303, -3.0443437348951075, -1.6603314663214848, -1.1504140212562552, -3.888179493918325, -1.5006023505691855, -3.609914410085998, -3.8771985152717896, -3.876275588677879, -2.2683173084753983, -7.0, -3.2773799746672547, -7.0, -2.37045140442245, -1.8350993904798734, -3.4266196859018763, -7.0, -3.446744220465839, -2.201654728267682, -2.6618683393442066, -7.0, -7.0, -1.9393272143745417, -2.20682587603185, -1.9355541304499773, -7.0, -2.717412908457708, -2.5128485286763746, -3.9034698285071703, -7.0, -7.0, -3.410986976882284, -2.8820067810004915, -3.2953031446371517, -3.267914479847044, -3.582177037688409, -3.305190091553366, -2.022254851791834, -2.887660571842961, -7.0, -7.0, -3.482930723860386, -7.0, -7.0, -7.0, -3.8838317133294527, -7.0, -2.704248595991504, -2.7927417858347487, -1.9965697645340619, -3.0341177793661886, -7.0, -3.124148391564148, -7.0, -3.5885518064856425, -3.9278321328665817, -3.2245330626060857, -2.93453001219572, -3.8767372971406644, -7.0, -3.4320602212581903, -2.05482190018818, -7.0, -7.0, -3.050428094453049, -2.4118236958598427, -7.0, -2.756940236046724, -3.1643032759588334, -2.8342389905065373, -2.54236429452904, -3.251735530437842, -2.8417764599078246, -3.341385057697068, -3.423846369199462, -2.6730824741450308, -3.595055089759304, -7.0, -7.0, -7.0, -7.0, -3.8900855267163252, -7.0, -2.9579170046848744, -3.893484346218486, -3.1159930547579835, -7.0, -3.011394209174577, -2.3973047701147587, -3.9146075677710805, -3.374308331299816, -2.736237098904729, -3.933942602741261, -7.0, -3.9398186628213794, -2.996219709466273, -2.811110768005006, -2.939119717648487, -1.948804045932811, -3.297048866865437, -2.6517996891142075, -7.0, -2.97342670189906, -1.751825230297199, -2.090984331084246, -7.0, -2.8141557107253563, -3.5747255835940734, -3.1527298904473486, -7.0, -3.4630464593144126, -7.0, -3.900967623919124, -2.496098992132571, -2.7123222675685836, -7.0, -3.1992064791616577, -3.6959629862267245, -2.7362125701152555, -7.0, -7.0, -7.0, -7.0, -3.886377906758572, -3.898176483497677, -7.0, -3.601951404133522, -3.0362295440862943, -3.1919697180283007, -2.9711492876176107, -3.7693549186514, -7.0, -3.8954777962757143, -3.123524980942732, -3.623714356815967, -7.0, -7.0, -3.4872798164430687, -3.9433955765089546, -3.942008053022313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9459607035775686, -3.251601494030338, -7.0, -3.8773713458697743, -7.0, -7.0, -3.9093420383613084, -7.0, -7.0, -3.307282047033346, -3.2298646031173694, -3.650744512417744, -2.452586364189867, -2.771203913197322, -3.9475807493043225, -7.0, -7.0, -2.1774572158356054, -2.8803848005903028, -2.2667572593256806, -3.9107844347928373, -3.3865286903706164, -7.0, -7.0, -3.4152516526787737, -2.904560992080643, -2.1343802928411417, -2.2460004869402757, -2.689486448364248, -2.91437427261162, -2.104466727163608, -2.5838462500213177, -7.0, -2.7827284979036726, -2.5805741015043195, -2.6869935662646784, -7.0, -3.1132189243125046, -3.6299190355035416, -7.0, -3.6421181336945816, -7.0, -2.584378345778297, -2.9870794370455935, -7.0, -7.0, -3.461198288622493, -3.585613140277534, -7.0, -2.521536023567381, -2.738714511114171, -7.0, -3.009185223506869, -3.0842584336373493, -2.380944228352949, -3.0602120221018287, -3.0109780121747423, -3.3415993735009404, -3.255272505103306, -3.7167960423664437, -3.4947573623066033, -3.556247604109366, -2.6823557017545716, -7.0, -7.0, -7.0, -2.5012989485386004, -2.6330020573082678, -3.595055089759304, -3.9056340013269546, -3.285016917629171, -7.0, -3.183886436181369, -3.5953859808091417, -0.8001984317598797, -3.9085386321719593, -2.9663503526454837, -2.650695979760611, -7.0, -3.3410936383881586, -2.338581857248278, -3.5288799874426102, -7.0, -2.326534063327523, -3.2404712429870326, -2.25919667574194, -7.0, -3.43970102987625, -3.586305934735186, -2.6582188456612497, -2.351882901347562, -2.91409622851974, -3.263399331334002, -3.578295305120826, -7.0, -2.546953732587764, -7.0, -7.0, -3.60959440922522, -3.759101003867064, -3.894814329083301, -2.0524544489011003, -7.0, -7.0, -3.712546820378931, -7.0, -4.4101189683595505, -7.0, -3.923214403267866, -3.48654381988252, -4.1648285343444815, -3.0187004986662433, -3.1121387476657105, -4.218666771495871, -7.0, -4.434664693722909, -3.995613259978898, -3.823298943588325, -3.353685468703508, -7.0, -3.8310214644472946, -3.6565629264017003, -7.0, -7.0, -7.0, -4.555220588225373, -7.0, -3.9148189804474733, -1.7105666632245071, -7.0, -3.875648198186427, -3.873029812061044, -7.0, -3.1596652554067797, -4.0305997219659515, -3.205339721431523, -7.0, -7.0, -7.0, -7.0, -7.0, -3.645974611730776, -2.4714090720870554, -2.9495164993070224, -3.6150553041797218, -3.5005915939162997, -3.1132782144229987, -2.9374293839197807, -2.664265800147675, -2.687728795861634, -2.821747409869795, -2.719833155981937, -2.749091866004445, -3.161966616364075, -3.363737299322217, -2.7681357668442947, -1.7112783140789294, -7.0, -2.26745232159952, -2.096169472880984, -7.0, -2.9181614445539976, -3.8845263238153, -7.0, -7.0, -2.6414450686151305, -2.8849628456125957, -4.809317250044303, -7.0, -3.231433179239555, -3.895422546039408, -3.033195825123681, -7.0, -4.094986592030411, -2.9352552817840474, -3.7701152947871015, -3.878866336956725, -2.7837016649131177, -4.532996293865759, -3.051692641798037, -7.0, -2.921686475483602, -4.1285285037974395, -3.2536660661600085, -2.996580792472938, -3.064083435963596, -1.805133287613335, -3.3755119467888526, -2.725870813226274, -3.6205467693713365, -7.0, -2.808409580181492, -2.622599100855059, -3.8260585973805052, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9781489374492274, -2.4902394852462875, -2.096515020273322, -3.586362223307866, -3.475283684857362, -2.9853066934901156, -3.3750231289878903, -3.2582061260688273, -7.0, -2.8702661651948076, -7.0, -2.7246885128491662, -2.4216822557512594, -3.6034150454129286, -7.0, -3.708272143674309, -3.359123718484473, -2.4623605571056313, -7.0, -7.0, -3.5133175029511547, -7.0, -7.0, -3.3454227452289564, -2.036365534687841, -7.0, -3.3355080472724206, -7.0, -7.0, -7.0, -3.003732212587054, -3.086302615981995, -7.0, -7.0, -2.064851907151343, -7.0, -2.253558269307043, -7.0, -2.7910888551844675, -1.945108057741629, -7.0, -7.0, -7.0, -2.679680202714552, -3.3748216384719947, -3.9007493580610793, -3.9439888750737717, -2.842609239610562, -7.0, -2.283792678888281, -1.798591765678604, -7.0, -7.0, -2.488426282762359, -2.2385138867041006, -7.0, -2.9243620009429816, -7.0, -7.0, -3.8730007223740444, -2.9207871677505426, -2.300441888065399, -2.580310759718442, -3.341355374863705, -3.9380691862233856, -7.0, -7.0, -3.5997193623970984, -3.5111812411046364, -7.0, -2.707238888404291, -2.0365035188081575, -7.0, -7.0, -1.997006000905822, -1.9357412477103655, -2.5152503052242317, -3.4941081925565785, -2.821577430480578, -3.1528995963937474, -3.795741020869244, -3.082066934285113, -2.8185435657769307, -3.588943642740015, -3.9320169064342014, -7.0, -3.8795546009389743, -7.0, -3.6981440599245037, -7.0, -2.589790080853059, -3.3929606147967957, -2.7907541645992353, -3.9624640460579013, -3.7313066641817545, -3.022964206517993, -3.2202575612757083, -2.6109261934087056, -7.0, -2.689407528778004, -7.0, -2.21507405981132, -2.7237541049498004, -7.0, -7.0, -2.2518616038128814, -1.844187849680195, -2.8493238489418755, -3.6100743221400546, -3.8953120244757873, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3484022275776355, -7.0, -3.0532705666813786, -3.8985057855343586, -7.0, -3.5859117103194342, -3.292532956594993, -3.064190484147994, -3.9008585047019917, -2.862819170960624, -3.638439335179549, -2.8348371039433498, -3.807467375684278, -4.063220735581995, -3.605305046141109, -7.0, -3.3208107260676276, -3.900913067737669, -7.0, -2.860733410301672, -2.7036137543417307, -2.9523080096621253, -3.2390073481041712, -7.0, -2.8352374734003063, -3.8822968009376515, -3.4081268530617237, -3.1232447909446885, -3.577836341292744, -2.9160024989438855, -2.6820447426591882, -3.6145281197475394, -3.395675785269936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.904715545278681, -4.6022906490084505, -2.9259992664561554, -2.505149978319906, -7.0, -4.192595327569212, -3.7318035763606017, -7.0, -7.0, -7.0, -2.6702458530741238, -7.0, -4.336479746957996, -3.8805277781988052, -7.0, -3.6555225962534177, -4.2707044506134615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4680517914542377, -7.0, -7.0, -7.0, -4.061769664610581, -2.705007959333336, -7.0, -7.0, -7.0, -7.0, -2.8102325179950842, -7.0, -7.0, -3.0842186867392387, -7.0, -3.1513913576935484, -7.0, -3.898231384513097, -3.308422115236931, -7.0, -7.0, -7.0, -2.9885589568786157, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14789264483285, -7.0, -7.0, -7.0, -7.0, -3.121067167467729, -7.0, -7.0, -2.710286647702891, -4.346871079866792, -7.0, -3.3332456989619628, -7.0, -2.7737864449811935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4771212547196626, -7.0, -7.0, -7.0, -3.423614458082382, -3.523876475638131, -3.315676520348013, -7.0, -7.0, -1.902739608205772, -7.0, -3.3609718837259357, -3.269396182694991, -7.0, -3.1915441607348294, -2.975431808509263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.317331935445897, -3.6769860884519177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3111178426625054, -3.530199698203082, -3.143014800254095, -7.0, -4.169968173996892, -4.276438825021309, -7.0, -7.0, -7.0, -7.0, -3.0791812460476247, -3.4271614029259654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5378190950732744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7197454925295768, -3.8496957509222134, -7.0, -7.0, -3.395209866510588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9609461957338317, -2.148686422668616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1947917577219247, -7.0, -3.05307844348342, -7.0, -7.0, -3.1992064791616577, -2.8819549713396007, -3.92060206359649, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7489628612561616, -7.0, -3.916927466112993, -7.0, -7.0, -7.0, -3.7107940999303275, -4.010752753199189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6134894531087443, -7.0, -3.317331935445897, -7.0, -3.6540802353065707, -7.0, -3.343113054845938, -2.790988475088816, -3.7375901662857216, -7.0, -4.070296518197765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8457799671118895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.7128735244301385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.242988412194795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2425414282983844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.532537814560151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.831677849191467, -7.0, -2.950364854376123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3138672203691533, -7.0, -7.0, -7.0, -7.0, -4.830482808532513, -2.521536023567381, -7.0, -7.0, -7.0, -2.99211148778695, -7.0, -3.2464985807958007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.050171518281678, -7.0, -7.0, -7.0, -7.0, -3.745230984528141, -7.0, -7.0, -7.0, -7.0, -7.0, -3.294466226161593, -7.0, -2.3416143566643135, -7.0, -7.0, -7.0, -7.0, -4.3791301930135615, -7.0, -4.920982596827135, -7.0, -7.0, -4.717091890401786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.710371264260763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8023220978574237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.589044343518194, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.387713646550734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.773245067425772, -7.0, -4.675924914230961, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1353765089832155, -7.0, -4.668954041997986, -5.065564777430062, -7.0, -3.6419695977020594, -7.0, -7.0, -4.934091741029214, -7.0, -7.0, -7.0, -4.35996347604274, -3.5998830720736876, -7.0, -4.4349678884278125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.186723312657822, -7.0, -7.0, -7.0, -7.0, -4.954840458899287, -7.0, -5.104102836565097, -7.0, -7.0, -2.5599066250361124, -7.0, -7.0, -4.781748196171954, -7.0, -7.0, -7.0, -4.897473136847621, -7.0, -7.0, -4.465754519833878, -4.95529319520027, -7.0, -7.0, -7.0, -7.0, -4.606488850442648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.621621331667342, -3.328583449714202, -7.0, -7.0, -7.0, -4.3395905522680405, -7.0, -7.0, -7.0, -7.0, -7.0, -4.31909911609709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.79300417300328, -7.0, -7.0, -7.0, -3.92957217907655, -7.0, -3.441852175773292, -7.0, -7.0, -4.247236549506764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.068556895072363, -7.0, -7.0, -7.0, -7.0, -7.0, -3.52270499273475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1709165757098265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.792251571903264, -7.0, -7.0, -7.0, -3.783842349230774, -7.0, -7.0, -4.302417519150622, -7.0, -7.0, -7.0, -4.02645154573824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067480023931482, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1513698502474603, -3.651762447380111, -7.0, -7.0, -3.215901813204032, -3.05307844348342, -4.392573856408141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.625826713285711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019213251277154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.286052077773516, -4.279621322484056, -3.978294669778629, -4.279963367458737, -3.9827007911139, -3.1031834682108403, -3.699230502883409, -3.6817385815870307, -7.0, -2.9332925631528446, -3.334398912526967, -3.978294669778629, -4.2837533833325265, -2.9320930828571, -2.611173299091653, -4.298809426529585, -3.1446631477045215, -4.278776457955645, -3.981660076604237, -3.9795028487874013, -2.5956906965576407, -3.215373152783422, -7.0, -2.9501588189938732, -2.606810478501612, -3.693639026161548, -3.587441551559959, -7.0, -3.7132594739307883, -3.3458962687263867, -7.0, -2.2088657877076616, -3.596685045096567, -3.9809573162296203, -3.680154141734373, -4.288517501797074, -3.1090720809788794, -3.8078280666840114, -3.7331771955817663, -7.0, -3.31921019418185, -7.0, -2.6718091758115627, -7.0, -3.8123562116249397, -3.316557399977768, -3.5992497190170716, -3.1565302224638243, -3.809537269896024, -7.0, -3.383556067822925, -3.9982375359446207, -3.2666806020098047, -2.574320700915308, -3.6307735456752157, -3.0627290946508094, -2.962421955102072, -3.9876439241005333, -3.8159096508867747, -3.2876796055965056, -3.816837630902035, -3.6936170426895027, -3.6938807709392365, -3.805047523584979, -7.0, -3.648964674299241, -2.6864221224006877, -4.283074974735472, -7.0, -4.023561090096945, -7.0, -3.078474943488153, -1.8606208424532815, -7.0, -3.549636657209407, -2.8545180087460724, -7.0, -3.7171502028538876, -7.0, -7.0, -3.3025640175436135, -4.013911091029002, -3.4414931434230693, -7.0, -7.0, -3.689996613293506, -3.491261614450974, -2.865972090376475, -3.268237482267674, -4.307217829203142, -2.4548912453634877, -2.9444826721501687, -3.0823664270781026, -4.281215232611316, -3.801403710017355, -4.0261858534423824, -4.0080889362915775, -3.091170218869001, -3.3962381043562058, -3.982994454658664, -2.3973248795188713, -3.4480434434366742, -7.0, -7.0, -3.601889342116067, -7.0, -3.4184670209466006, -3.7005306569785916, -3.244714716312713, -2.955155313300949, -3.6882863093259703, -4.285489796846293, -7.0, -2.656577291396114, -2.817778879510587, -7.0, -7.0, -3.4137187650610787, -3.3439793994775977, -2.9969112158758717, -7.0, -2.911183601945748, -2.666043954558214, -4.290279528920517, -3.503501283905208, -3.8140699338427977, -2.931235094634994, -7.0, -3.3754603877138902, -3.877544107715944, -3.327517862760602, -3.814757969195035, -2.844228581301628, -3.2919538132661614, -7.0, -4.2799405728395525, -2.1663734211362113, -4.2777237887624535, -7.0, -3.8023859928820944, -7.0, -7.0, -3.1042792367572742, -3.0563966072973052, -2.9245708389275467, -2.6434340528243605, -4.292322539914916, -3.2130859041084054, -7.0, -3.807467375684278, -3.823235062261409, -3.397201079785138, -3.4027255284410836, -7.0, -4.285827252753274, -3.3893211618458814, -2.7968517490498868, -7.0, -4.278479223046323, -3.533454289670824, -4.302893458356505, -7.0, -4.303260872655577, -2.452650144816879, -3.7218518176680497, -3.476231073378763, -4.31045964365906, -3.462664150493101, -4.006187833539161, -7.0, -2.5745622299382056, -7.0, -7.0, -7.0, -7.0, -7.0, -4.284836637642396, -7.0, -3.3891016202881334, -7.0, -3.1774441484275546, -7.0, -2.763153961911042, -2.7488272758008763, -7.0, -3.766115283221414, -3.7488080049586023, -7.0, -3.622006673006805, -3.828359093933543, -3.0793940833377964, -3.0950167110880895, -3.4602963267574753, -3.3173414420397855, -4.288629234664989, -2.9176180259352056, -7.0, -3.116908047708927, -2.8806654158665483, -3.03926402233583, -4.283527364861694, -2.289042036469909, -3.9780891730561425, -2.7934142558243362, -3.6879078003587713, -3.191343513169289, -3.5869022227332383, -3.1747752479599702, -1.76119816931531, -2.166493546908743, -7.0, -3.720159303405957, -3.200524297120166, -2.9621663152618503, -7.0, -7.0, -3.985089506926381, -7.0, -3.9822712330395684, -3.1414049753724838, -3.5032684897703463, -3.1134085068181756, -2.549820373239367, -3.3500346963400576, -2.056932356607827, -2.373261719017877, -7.0, -4.287017501322102, -3.8125568661800697, -3.6000358121146183, -4.279666944048455, -7.0, -2.868119408129591, -3.607969437822521, -7.0, -7.0, -7.0, -7.0, -4.284859176733764, -7.0, -7.0, -4.3082228192210215, -2.65501934144753, -7.0, -7.0, -7.0, -4.2844984108280455, -3.8154891981186587, -4.291213400273596, -4.278456350394209, -3.815622016657408, -1.7657760571950565, -7.0, -3.312000950213744, -3.2858168734035287, -7.0, -7.0, -7.0, -3.0490407234303634, -2.8663506427038543, -2.544001861100848, -7.0, -2.992932931139705, -7.0, -3.682686478249768, -7.0, -2.8288286230919457, -3.1770673239782408, -2.8287227557743795, -2.7620011370674376, -2.9283275615919133, -3.5260806918020298, -3.5138610158527017, -7.0, -4.000368993509583, -3.854265546255161, -3.5494120098036346, -7.0, -7.0, -4.301811023017477, -7.0, -3.1925888952127703, -4.279050648199026, -4.317373762902532, -3.1095464078914286, -3.4547360006316015, -3.726380776040445, -3.459650919472839, -3.0166437893932163, -2.738714511114171, -7.0, -7.0, -2.7749729179824016, -4.294223658976586, -2.3934582058330225, -3.310757018352604, -3.0786774240863606, -2.975411826706968, -3.3921867532870635, -4.312008007838723, -3.7387607453279568, -3.620614868774087, -3.0730827979450512, -3.335407748315415, -3.9782033499061584, -7.0, -4.277929946646919, -3.2384583258072803, -3.033462051371804, -2.780767218408403, -3.990094550948234, -3.546953732587764, -3.9840319802711806, -4.315487527750822, -7.0, -3.0931266481387256, -3.8151569739533104, -3.5985935527733384, -3.453375681483457, -3.991292544250934, -3.086869447540834, -2.762465651906572, -2.933582396764532, -7.0, -3.7918660152578747, -1.9811477962844128, -2.8087793747812646, -7.0, -3.016351471856979, -4.283775978711523, -3.2631624649622166, -2.570135907677381, -2.7630625795894206, -4.014520538757924, -7.0, -7.0, -7.0, -3.8081434257614912, -3.990272240095868, -4.293274139710753, -3.4582033372516316, -7.0, -2.671492930691694, -7.0, -7.0, -3.420308385109363, -3.126439324237566, -4.093550086590404, -3.880356199419236, -3.669899269076556, -3.6249212039208625, -4.11590992187706, -2.9459834032795715, -3.23450347863715, -3.4934270675834678, -4.0517504719073445, -3.225601410589217, -3.7044263080176774, -3.5036029866649097, -3.0367823942793577, -4.123895177078786, -3.6415005507635767, -3.1397642460034194, -3.864970644137885, -3.3364486150558688, -4.348674732191571, -3.5622052695977127, -3.6691889913068407, -3.39849389779482, -2.6068836655376235, -3.9994133063420474, -3.6304888957237034, -3.751958761232796, -7.0, -3.059022969905103, -3.4385950832263315, -3.6440773478650277, -3.9957996689346427, -7.0, -7.0, -4.009620840814325, -3.9394360464718168, -3.525017026117495, -3.5752135116917656, -3.2840594143879214, -3.1488449390421698, -3.472663385738777, -3.175527919520875, -3.640895326720516, -3.5851221863068155, -3.25784214067938, -7.0, -2.717245161243629, -3.5499683102108293, -3.3814961375657253, -2.923187478458534, -2.9887719836341766, -2.5579145953128126, -4.003762020828246, -3.7588929767211523, -3.7022064378331843, -7.0, -3.6950962442731257, -3.420584854485378, -4.064514144365488, -7.0, -2.8102960066995175, -2.9927016507951634, -3.1638994222456214, -3.682911863319907, -3.767842028696057, -3.8097840982527122, -3.288125411314306, -3.5451303224548734, -3.349232928245844, -3.2797382181499897, -3.590495072886447, -3.803138333966474, -3.4207366659537195, -3.045637778266747, -3.149966494141885, -7.0, -3.2876026948754578, -3.919844843125104, -3.0806042203199797, -3.148002970984834, -4.292898175018025, -3.1689719167337276, -3.273244808029194, -4.345981121826305, -2.7799308552177844, -7.0, -3.5732971725254727, -3.492694236580896, -3.628876882304244, -7.0, -7.0, -7.0, -7.0, -3.8980849663796677, -2.939981890516324, -3.3642799327019315, -2.7644595723897676, -4.283798572914993, -4.0100454126360985, -3.22743675839222, -4.322136564096103, -3.5349352251341584, -4.28431791543061, -4.081779226767534, -7.0, -2.940409365458403, -4.054498146636677, -7.0, -3.713889373212412, -3.902234126966771, -4.315025199312605, -3.762959751488572, -7.0, -4.289544361497647, -3.690993032099869, -3.6880636969463443, -3.9918239268084683, -3.5306478535274857, -3.298872915814105, -7.0, -3.9828137621318627, -3.4356623863120097, -3.680901812206373, -2.6314437690131722, -3.2737138444188143, -3.1461987796436697, -7.0, -3.4255545979519635, -3.0189564176376464, -4.295830894958585, -3.03009349218267, -7.0, -4.003934206173708, -2.248480619786217, -7.0, -7.0, -4.321660556848671, -4.003137276060415, -3.5902100254885054, -4.289165152649889, -3.306982282551364, -3.8211640307644217, -3.990072334692153, -3.611255844847484, -3.0351833474357774, -2.9651635486826406, -3.9794800840392948, -3.439825930092142, -3.2247919564926817, -4.012457578200774, -3.470971474238306, -4.289142835932333, -7.0, -3.6438637455958203, -2.795901073535779, -2.348481212264502, -4.030275802889288, -3.272286511062136, -3.5264469759599937, -7.0, -3.5631588895944604, -3.988135156985908, -3.27460186778912, -4.286950215787549, -2.7833359701684657, -3.140420742400279, -3.6029277128591892, -7.0, -3.2796318509627507, -2.7523259318317654, -2.7636199469282294, -3.277650881240888, -2.499427906598886, -1.932680798328356, -3.203649241936576, -3.698231075449119, -3.3530872831590104, -3.4612170595896647, -4.00114935814922, -4.298918543005097, -3.979548374704095, -4.278822168352688, -3.5034030276792736, -3.4277497542165274, -4.294686624279444, -4.029261995804175, -3.2417290583944616, -4.315466523495654, -4.042076489364744, -3.2113794640853506, -3.1333134374911014, -3.4259823037627872, -7.0, -3.1939376036814164, -7.0, -3.31923859026851, -3.1094285444913927, -7.0, -7.0, -4.308585754289083, -3.4521151559753847, -2.6019192249352625, -4.293473048156108, -4.286950215787549, -7.0, -7.0, -3.804775295526398, -3.5815856036702556, -3.379803899663388, -3.550839605065785, -4.3065108056433825, -3.081940027992318, -7.0, -3.8133808067338557, -7.0, -7.0, -7.0, -7.0, -4.32236403543911, -7.0, -3.4172501991365754, -3.483052121938875, -3.1071534172053243, -4.2915020491896, -7.0, -3.496652939250918, -7.0, -7.0, -3.2076777920604744, -3.9916247345340055, -7.0, -3.4954452174999373, -3.180719663237752, -3.8472846790838813, -7.0, -4.282984440133955, -7.0, -7.0, -3.5176859234556574, -4.004149341900059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8656960599160706, -4.426001303137032, -7.0, -7.0, -7.0, -7.0, -3.7299473267944347, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03402652377511, -7.0, -7.0, -7.0, -4.249432481236935, -7.0, -7.0, -7.0, -3.2785249647370174, -7.0, -7.0, -4.387686374306485, -7.0, -7.0, -7.0, -7.0, -2.9590413923210934, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9945936452881283, -7.0, -7.0, -7.0, -7.0, -3.145403607683906, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305405115437893, -7.0, -3.593286067020457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6026025204202563, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9138138523837167, -7.0, -7.0, -4.52275060950722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5309497774256355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.144138137663588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073773320852101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8920946026904804, -7.0, -7.0, -3.4158077276355434, -7.0, -2.2671717284030137, -7.0, -3.6934851184837787, -7.0, -7.0, -7.0, -3.6654308849136665, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021602716028243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.814180981040187, -7.0, -7.0, -7.0, -4.238472656948356, -7.0, -7.0, -7.0, -3.1172712956557644, -7.0, -7.0, -2.696938553005363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4978093324102675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7049222912234017, -4.875994475714984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2216749970707688, -3.0670708560453703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.252610340567373, -7.0, -7.0, -3.465457210575713, -7.0, -2.964338214198132, -7.0, -3.1598678470925665, -7.0, -2.8382192219076257, -2.823474229170301, -2.8322959710584774, -7.0, -7.0, -4.352780467571326, -3.841484609335393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.90156729002845, -3.560026248912892, -3.824581376233483, -3.949291559892229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2889196056617265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9001634665734852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.885926339801431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.311245120878207, -7.0, -4.531657707374614, -7.0, -4.408375661136076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6994908452722046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.396896449142524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.918502139636174, -7.0, -3.403635189790548, -3.1486026548060932, -4.654163702235632, -7.0, -7.0, -2.7749729179824016, -7.0, -7.0, -3.08718965524094, -3.229169702539101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.527253435112711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.030599721965951, -7.0, -7.0, -4.855858221196212, -7.0, -7.0, -7.0, -7.0, -4.239649777166663, -7.0, -7.0, -7.0, -7.0, -7.0, -3.070037866607755, -7.0, -7.0, -2.482873583608754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.588271706842329, -7.0, -7.0, -3.5748411950633847, -7.0, -4.41608272151237, -4.695801150661582, -4.101724167515184, -7.0, -7.0, -4.921493990967949, -7.0, -7.0, -7.0, -5.387590907962582, -7.0, -7.0, -7.0, -7.0, -4.6562036470321875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.988112840268352, -7.0, -7.0, -7.0, -7.0, -4.3243030374868345, -7.0, -4.632877210811569, -7.0, -3.462996612028056, -7.0, -4.660685274789785, -4.201479058946089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.788677343181599, -5.405219964310453, -7.0, -3.669037800885156, -7.0, -4.9545078305606225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.428895762801387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6415137702896985, -4.954960913566566, -7.0, -4.444023314994304, -7.0, -7.0, -4.605746659595613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.465873386571601, -3.3142886609474975, -3.7005306569785916, -7.0, -7.0, -4.338217366601095, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096743211899143, -3.591064607026499, -2.5757649805367193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.116917527602884, -5.09379977701746, -7.0, -7.0, -7.0, -3.62490060220449, -7.0, -3.1295287738587763, -7.0, -3.1486026548060932, -3.165812920092044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1812717715594614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.513617073787875, -7.0, -7.0, -3.838156184752148, -7.0, -7.0, -7.0, -2.803912112528065, -3.6746501056927805, -7.0, -3.5692568333286103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.28668096935493, -3.78738962135211, -3.104487111312395, -7.0, -3.1755118133634475, -3.929306505534561, -3.2931414834509307, -7.0, -3.52255290221248, -2.4274861090957858, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.526649376997381, -7.0, -7.0, -7.0, -3.6398847419163043, -3.1089031276673134, -7.0, -2.893206753059848, -7.0, -7.0, -3.343802333161655, -7.0, -2.4065401804339555, -7.0, -7.0, -3.349613033193485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7456992266025058, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.400537989391946, -2.721398375521505, -7.0, -7.0, -7.0, -3.2461873390876783, -3.2682658666003466, -7.0, -2.5259082158339554, -3.905175016099293, -3.7449706317345974, -7.0, -7.0, -7.0, -7.0, -7.0, -3.169694022903532, -7.0, -7.0, -3.399673721481038, -3.7333508099061934, -7.0, -7.0, -7.0, -2.914166793875635, -7.0, -7.0, -4.2660846327618, -3.1911714557285586, -7.0, -7.0, -3.0874264570362855, -3.0768224233427732, -3.028571252692538, -2.419065670188649, -7.0, -7.0, -7.0, -3.9963709289328424, -7.0, -7.0, -7.0, -7.0, -3.37675939540488, -7.0, -7.0, -3.5531545481696254, -3.2335037603411343, -7.0, -3.3190633300866943, -2.350801612394977, -2.969674713673781, -3.342488478031923, -7.0, -7.0, -3.497620649781288, -7.0, -7.0, -7.0, -7.0, -7.0, -3.61066016308988, -3.9793966030856005, -1.673481697073347, -7.0, -2.9858753573083936, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9804611371420555, -7.0, -2.4667028964826474, -7.0, -7.0, -3.0522540943300562, -7.0, -7.0, -7.0, -3.1983821300082944, -3.142389466118836, -3.06620164592725, -3.111598524880394, -2.8666810784419927, -7.0, -3.4181482539720984, -3.2829618035343353, -7.0, -2.9537596917332287, -7.0, -7.0, -2.3326404103874623, -7.0, -7.0, -7.0, -4.161457846971751, -7.0, -7.0, -7.0, -1.6950205930177513, -2.4608978427565478, -3.4429498695778618, -3.271609301378832, -2.8886474332825305, -2.9528103746480463, -3.117602691690084, -7.0, -2.0162496497954696, -7.0, -3.6926178191739303, -7.0, -7.0, -3.4056877866727775, -2.6850696293911485, -3.0668847431297714, -1.8744818176994664, -2.2012533420043217, -4.456343254849088, -7.0, -7.0, -7.0, -4.092488175292648, -7.0, -3.501333178645566, -2.4669664246957717, -7.0, -7.0, -3.3075816047506295, -3.525821952156663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.595141776071406, -3.281714970027296, -3.688568121297955, -7.0, -7.0, -7.0, -7.0, -3.02201573981772, -2.3399480616943507, -7.0, -3.549248556854056, -7.0, -7.0, -7.0, -3.6433169382503885, -2.926342446625655, -2.8915374576725643, -7.0, -2.9719712763997563, -7.0, -3.2773799746672547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.538883185853489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5598567720277465, -7.0, -7.0, -7.0, -3.750970984437319, -2.4815432003737445, -3.1789769472931693, -2.6300038835026207, -1.741747660192021, -7.0, -2.319826481618029, -7.0, -2.7456602257060756, -3.239049093140191, -7.0, -2.460803910782157, -2.002166061756508, -7.0, -7.0, -3.969322706112202, -3.0707764628434346, -4.349549483586635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5744364202024044, -7.0, -7.0, -2.7466341989375787, -2.948412965778601, -7.0, -7.0, -7.0, -3.1122697684172707, -3.2320299376201334, -7.0, -4.143732823138692, -5.236167634842456, -7.0, -7.0, -3.106870544478654, -7.0, -2.919601023784111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3273589343863303, -4.245453441801116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5713205488307422, -3.8080082999104, -1.814273462760839, -3.334051440346892, -7.0, -7.0, -4.022036380699923, -7.0, -3.5843940517791273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1324883979895946, -3.7460890430562004, -3.561280314290289, -1.8147526160648406, -2.183744223284207, -7.0, -2.9561684304753633, -2.664238918003387, -3.1845494813206976, -7.0, -3.0382226383687185, -7.0, -7.0, -7.0, -7.0, -3.1065308538223815, -3.1015506938924196, -7.0, -7.0, -7.0, -4.09165736688658, -3.009185223506869, -2.99211148778695, -4.294223658976586, -7.0, -7.0, -3.1496295989637306, -7.0, -2.9309490311675233, -3.251273113674373, -7.0, -3.362293937964231, -3.5700757053216043, -3.4268364538035083, -5.129675071808323, -7.0, -7.0, -7.0, -7.0, -2.5761973294842266, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0909630765957314, -7.0, -2.7745169657285493, -7.0, -7.0, -3.655906418180215, -7.0, -4.382131157528002, -2.977934547322576, -4.796328556603315, -7.0, -2.913350180964195, -5.020199635347019, -3.801472313521471, -7.0, -2.713770462202507, -7.0, -2.97806633408362, -3.8095597146352675, -7.0, -3.091842749738098, -7.0, -7.0, -3.1550322287909704, -7.0, -7.0, -7.0, -2.9005491846146607, -7.0, -2.963180469568511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.379686151906955, -7.0, -4.1174149316527675, -4.581346526814622, -7.0, -7.0, -7.0, -4.7218270966638265, -4.522174617722214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.661604477060614, -7.0, -7.0, -4.475830932831453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.372516173004876, -3.8120215812126705, -3.0017337128090005, -3.211209563392604, -7.0, -7.0, -4.282100737285847, -4.0080889362915775, -3.540454613671412, -4.446894272471873, -3.96432092693784, -3.4793773350238864, -7.0, -7.0, -3.543074235033532, -7.0, -7.0, -7.0, -7.0, -7.0, -4.038884975666385, -4.209654677443103, -7.0, -7.0, -7.0, -7.0, -4.355144896174567, -7.0, -4.928858238901066, -3.612289256263882, -7.0, -7.0, -7.0, -7.0, -7.0, -3.64018319192134, -3.6212541984361724, -7.0, -4.423060098203508, -4.191297279429712, -7.0, -3.282153987685595, -7.0, -7.0, -5.047212542627943, -7.0, -7.0, -4.611808247276516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5709221981779065, -2.719497016610582, -3.5915932335792364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.197590657733156, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3953263930693507, -7.0, -7.0, -2.9564428661760616, -7.0, -7.0, -7.0, -3.090845652103492, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203147997054803, -7.0, -7.0, -7.0, -3.254934589077441, -7.0, -3.212453961040276, -7.0, -3.295567099962479, -3.6571036800122543, -7.0, -7.0, -7.0, -2.8093352150273203, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7444885672205115, -2.7960971103163055, -7.0, -7.0, -3.2819419334408244, -3.5597869682005565, -7.0, -4.1567610983066245, -7.0, -7.0, -7.0, -3.09324653110384, -3.15430495170648, -2.7306477150202615, -7.0, -1.9624369880545964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3484346775706944, -7.0, -7.0, -2.971342127941882, -2.7693368531734577, -7.0, -7.0, -3.835859607003717, -7.0, -7.0, -7.0, -4.046339055604809, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9317755929080946, -7.0, -3.6944004327307844, -7.0, -7.0, -3.195484523033764, -7.0, -3.3289908554494287, -7.0, -3.199480914862356, -3.697490887171057, -7.0, -7.0, -7.0, -7.0, -4.4012454079054875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5241363765925686, -7.0, -3.371621927176021, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.446847710155809, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.297760511099134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.576341350205793, -3.2100508498751372, -2.8805277781988052, -3.275886960301226, -7.0, -3.4968365445930845, -7.0, -7.0, -3.576226137449605, -2.8113207147872394, -2.3712030652454543, -2.499392479227636, -2.8345266679328582, -3.550228353055094, -3.571009672309305, -7.0, -2.804803224207489, -4.035469763481283, -7.0, -2.8484690360999636, -2.0234588844056782, -2.109568321112792, -2.441470694043007, -3.251273113674373, -1.7850724244637253, -1.385855581574104, -3.2972131959896416, -2.9486460646637145, -1.8672710189654482, -7.0, -3.09143245732978, -3.599992177584098, -3.011908613349154, -3.2814878879400813, -3.490800952010855, -7.0, -2.5276299008713385, -7.0, -3.010401363772612, -7.0, -2.6491184149090556, -7.0, -2.6903929943288283, -2.4106899876913297, -3.591287265058499, -2.728962179713866, -7.0, -3.34908316877959, -3.6898414091375047, -2.700574187583653, -2.993730069806455, -2.50121580704486, -3.067675172788824, -7.0, -3.019324037153691, -2.53826315899939, -3.6263403673750423, -2.855317205195943, -3.1581613832785496, -7.0, -2.711807229041191, -3.1354506993455136, -2.8619093473644877, -7.0, -7.0, -2.388163005253829, -7.0, -3.9318645134920316, -1.6713068485030702, -7.0, -3.765668554759014, -3.453990033784266, -7.0, -3.7331972651065697, -7.0, -3.5854607295085006, -2.7477388061000108, -7.0, -2.7454094219943266, -7.0, -3.4709981696608736, -3.3163897510731957, -3.3188977146274867, -2.7795309027230926, -2.146216658162354, -7.0, -3.088440220901794, -3.819346484080453, -3.656513443339265, -2.7837845129301377, -7.0, -7.0, -7.0, -3.2670151976815847, -3.8436687229791437, -7.0, -3.9359856330811804, -3.623352681537992, -3.555094448578319, -3.5531545481696254, -3.056558385835925, -3.5597869682005565, -2.0729208942243305, -3.665299499499897, -2.3893433112520777, -2.740104775756783, -2.8302678009336417, -3.2837533833325265, -3.0456163219129087, -3.1842180852863775, -1.9540643506309214, -7.0, -7.0, -2.7689668009657864, -2.9766774271692067, -2.6137243973838293, -3.63286204010023, -3.17666993266815, -3.272240590930113, -3.130976691605617, -3.0991624929285946, -2.4644256696388567, -2.661298621047443, -7.0, -2.154372009362445, -3.555094448578319, -7.0, -3.616580530085886, -2.6369985529614173, -2.74350976472843, -7.0, -3.556423121371285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8398863812750887, -2.6264943452110474, -2.647759015234576, -7.0, -7.0, -7.0, -2.9552065375419416, -3.5809249756756194, -3.655330558009341, -3.8608767964032977, -2.2642830872778266, -7.0, -7.0, -1.6675615400843946, -3.499904633477991, -3.5565437084835145, -7.0, -7.0, -3.1885535262742306, -2.335280866452853, -7.0, -3.6832272060414346, -3.449863924718144, -2.9628426812012423, -3.6979264448065052, -3.1830256751145836, -3.383456296524753, -7.0, -3.140550548300557, -3.594060901270418, -7.0, -7.0, -3.0211892990699383, -7.0, -7.0, -7.0, -2.85601101687512, -7.0, -3.5682799682761797, -3.256236533205923, -3.62283547952152, -2.72235775493706, -7.0, -3.4202308796246506, -2.8016531253763444, -2.887617300335736, -2.9611837098124356, -2.3954643446238713, -2.91916529134874, -2.5711262770843115, -2.6762362167633116, -3.170437745046183, -7.0, -2.774853715149844, -7.0, -3.780821175853473, -3.0091108061322127, -7.0, -7.0, -2.6695202631671413, -7.0, -3.2481695133068103, -3.607669436688243, -2.4201391886115573, -7.0, -2.7571790442859356, -1.8694890489332097, -2.089494353362903, -7.0, -3.1421547334862034, -7.0, -3.2328691051326137, -7.0, -7.0, -7.0, -3.5618166643189575, -3.2728854447575695, -2.8981764834976764, -3.5653755027140734, -2.8285524909500306, -2.5062730374838087, -2.333321300752023, -4.222222082360713, -4.1027532053059295, -7.0, -3.291368850451583, -3.003352806825089, -7.0, -7.0, -3.2676409823459154, -2.515211304327802, -3.2065560440990297, -3.681512586638962, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5666731376061165, -3.38747881199254, -3.276174477347082, -2.3426693689753333, -2.0567819436005728, -7.0, -7.0, -3.318793504793297, -7.0, -7.0, -3.143118935126169, -3.1216145515607425, -3.6993173010213822, -3.2637307273683223, -3.207185391351969, -7.0, -7.0, -7.0, -2.773109617523673, -3.413634997198556, -2.7012294903811234, -7.0, -3.2047342663096217, -7.0, -7.0, -7.0, -1.679567653486021, -3.635031120946007, -2.1855529128395355, -1.4552075276553922, -7.0, -3.195253724026417, -3.6178387477170033, -3.567966906823154, -3.3585059114902354, -3.7782236267660965, -2.985950126092585, -7.0, -7.0, -3.3601198615808054, -3.5817221599490985, -3.2062860444124324, -3.551693915127225, -3.2481368116402987, -2.2609794792347033, -2.6980038315639985, -3.4665710723863543, -7.0, -3.886462523316444, -3.0842584336373493, -7.0, -2.3934582058330225, -3.08718965524094, -3.1496295989637306, -7.0, -2.2488486838763264, -2.6682066561591586, -2.037566277305172, -2.9232440186302764, -3.226771698912882, -3.5100085129402347, -7.0, -4.62628453692498, -2.6061332204613037, -3.251638220448212, -7.0, -7.0, -2.9029912724826192, -2.047822259143102, -2.814802321164222, -7.0, -1.7927850365787643, -2.0848644436153325, -2.7625952138601995, -7.0, -3.307656461906382, -3.6184664921990803, -2.296665190261531, -3.3851294198782624, -7.0, -3.3310684902283065, -2.894505945868358, -4.05096407122405, -7.0, -3.065906339656369, -2.6094077345866067, -1.3071078393578763, -7.0, -3.3336487565147013, -2.6716355966021297, -2.7746496557637714, -1.9043483915868251, -1.5085159774318875, -2.0026318385574484, -2.1221551759899824, -7.0, -3.749581734865559, -3.584331224367531, -2.611723308007342, -3.622731965164719, -2.494502447046173, -3.591287265058499, -2.1292139171150253, -3.547528576459782, -3.076640443670342, -3.5489623660813248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.624024124647861, -3.450359098058306, -7.0, -7.0, -7.0, -4.442934207756266, -4.534009174167328, -4.138228993454836, -7.0, -4.701403906447556, -3.9383695974518065, -7.0, -4.3736842129970155, -7.0, -7.0, -7.0, -3.490590487028833, -7.0, -7.0, -4.686957849789318, -7.0, -7.0, -4.319300424211257, -4.243410141653711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.043627490035012, -2.85410352630107, -4.6982484764620995, -3.600224844436374, -3.5563025007672873, -7.0, -4.387852352763043, -7.0, -3.780741787862935, -3.208575708947575, -2.793161529245551, -3.642450387422455, -3.1192329712423796, -3.26027587412959, -7.0, -3.881883722962457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8009489378786143, -4.2370114348310794, -5.7090824613650915, -7.0, -2.1329879829101857, -3.59250984790068, -3.7940323677785246, -7.0, -7.0, -3.7002420700306993, -7.0, -7.0, -4.3819810000434645, -3.5251312252008757, -4.327365746795361, -7.0, -3.8125345758070877, -3.977586438003851, -3.710741267979859, -3.9271521342774345, -7.0, -3.286193609993445, -4.271683652549704, -7.0, -3.2849529807279723, -7.0, -3.846398973034675, -3.79492600409461, -4.057970231710706, -7.0, -7.0, -7.0, -7.0, -7.0, -2.980297527520052, -2.3123238548327696, -2.4834684261642916, -7.0, -3.700617195682057, -2.8802764528742517, -7.0, -3.709439574132411, -3.10151795524841, -2.8589881003426956, -7.0, -3.355517574528589, -2.778332168729065, -3.61066016308988, -7.0, -7.0, -7.0, -2.607398581017968, -7.0, -7.0, -3.6580113966571126, -7.0, -7.0, -1.5581688314517086, -2.577626946713033, -7.0, -4.126748141560192, -7.0, -7.0, -4.629379013907319, -3.707178282743617, -4.332236415491443, -7.0, -3.769081787118219, -2.4764897696670043, -7.0, -2.1945873632331065, -7.0, -3.0725256109749517, -2.646674801889762, -7.0, -7.0, -2.661181443446619, -2.716003343634799, -3.052584021782163, -7.0, -3.3839050869769083, -3.0434605235779117, -7.0, -2.549266072612872, -3.0649002270174326, -7.0, -7.0, -2.4354992980773567, -2.6897185709293874, -7.0, -3.5339499073574743, -7.0, -7.0, -7.0, -2.940267391446012, -2.3990765371483125, -3.078239253809666, -7.0, -7.0, -7.0, -7.0, -2.903524064471262, -7.0, -7.0, -2.942008053022313, -2.7187783976895714, -7.0, -7.0, -2.5871963148858668, -2.6058673507596914, -2.3948741756650853, -3.131137273778607, -2.7752462597402365, -2.4757438067481257, -2.073589284256462, -2.3087583816224817, -3.141951195862753, -3.886490725172482, -7.0, -3.3473300153169503, -3.560026248912892, -7.0, -7.0, -7.0, -7.0, -7.0, -3.186850431506691, -7.0, -3.6434279999623076, -3.221005778388855, -1.9965001510314468, -2.866508861395503, -7.0, -2.1520184006375565, -7.0, -2.4749734329483575, -2.682990720468959, -7.0, -3.5538830266438746, -3.690196080028514, -2.1895304166110634, -2.7728364862556436, -3.3224260524059526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.975247941240681, -7.0, -1.8327712998747674, -7.0, -7.0, -7.0, -7.0, -2.8419848045901137, -7.0, -3.0451664480652285, -3.074450718954591, -2.9002851785700106, -7.0, -7.0, -3.313128713845194, -3.252610340567373, -7.0, -3.6034691597338386, -7.0, -3.196339507959142, -3.142493751023144, -3.0135744775494535, -3.2081725266671217, -7.0, -3.752739693935328, -7.0, -7.0, -3.7293268096468606, -3.5588285248170117, -3.881783955593385, -2.5599066250361124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.413467412985825, -3.2555137128195333, -7.0, -3.4151053405015874, -7.0, -3.2041199826559246, -3.253580289562183, -7.0, -3.9410142437055695, -3.3928727454020793, -7.0, -7.0, -7.0, -7.0, -3.3610286258136726, -7.0, -7.0, -3.064158372463118, -3.3273473220791625, -7.0, -3.2830749747354715, -7.0, -3.210318519826232, -2.9283958522567137, -7.0, -3.457491776105673, -7.0, -7.0, -2.7601710828477963, -3.302114376956201, -2.721673245455936, -7.0, -3.147573276552419, -7.0, -3.236033147117636, -7.0, -3.9408058766441276, -7.0, -7.0, -3.521007252408604, -3.3895204658463776, -7.0, -3.2846562827885157, -7.0, -7.0, -3.095518042323151, -3.4653828514484184, -1.715591864279084, -2.8965262174895554, -3.2640145799809783, -2.4181236536533914, -7.0, -2.866877814337499, -2.991336850972244, -1.6824459385139579, -3.0666985504229953, -7.0, -3.237292337567459, -7.0, -3.385606273598312, -3.7692000268363204, -7.0, -7.0, -3.2657609167176105, -7.0, -3.340311889391722, -3.03734680356809, -7.0, -7.0, -3.666624475507377, -3.231214647962601, -3.2345172835126865, -7.0, -3.2727695865517594, -3.1603184379840017, -7.0, -2.8077604599357904, -2.8948696567452528, -3.294466226161593, -7.0, -3.0287745265000883, -7.0, -3.4761067168401913, -7.0, -3.5341581521382097, -7.0, -3.463332970234029, -7.0, -7.0, -7.0, -3.4699692094999595, -3.55339751012388, -3.397853141088609, -7.0, -4.184265443062108, -7.0, -7.0, -7.0, -2.4773693521168143, -3.2182728535714475, -7.0, -7.0, -3.0355898172434572, -2.8178088374213064, -7.0, -3.271841606536499, -7.0, -7.0, -3.1494415075655926, -3.060508975605298, -7.0, -3.0444090865590487, -2.969602264848539, -7.0, -7.0, -3.1640823515826657, -3.8089233307613366, -7.0, -7.0, -7.0, -4.095905632247942, -2.694078462080759, -7.0, -3.716504163773217, -7.0, -7.0, -2.9810769276095446, -3.139249217571607, -7.0, -7.0, -4.389148357697378, -7.0, -7.0, -7.0, -3.2380461031287955, -7.0, -3.5967803035945445, -3.2121209897122247, -3.8873077833767713, -3.4766867429456445, -7.0, -7.0, -7.0, -7.0, -7.0, -4.098436045340363, -3.5947239464097467, -7.0, -7.0, -3.3412366232386925, -3.1083112729328004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6745549761273852, -2.784260582566084, -2.769869444521887, -3.478854967528663, -3.3374093395155677, -2.8536982117761744, -7.0, -2.8369307151325107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2137832993353044, -2.6157671330554435, -7.0, -3.703978825008386, -7.0, -3.8073997127594854, -2.5915710078337733, -3.0588054866759067, -3.1700415779490494, -2.5515371269694365, -3.1245042248342823, -2.7000853282011494, -3.444513206334043, -2.151267675330649, -2.191381141649701, -1.5342898943760837, -3.4340097093697395, -7.0, -2.6817687053632726, -7.0, -4.004321373782642, -7.0, -7.0, -7.0, -2.938152654633226, -7.0, -2.9339931638312424, -7.0, -2.5409548089261325, -7.0, -3.3092041796704077, -2.3594429293014985, -2.380986075961567, -7.0, -2.9509730248744774, -2.962150694375638, -3.2192176570229067, -7.0, -7.0, -3.278753600952829, -7.0, -7.0, -7.0, -2.928907690243953, -7.0, -2.712602940444727, -3.6972293427597176, -3.690225622865973, -4.537834200705592, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2380461031287955, -3.216429830876251, -7.0, -3.4513258084895195, -7.0, -7.0, -7.0, -3.26528962586083, -7.0, -7.0, -7.0, -2.969661096395893, -3.1975562131535367, -3.208710019906401, -7.0, -3.2615007731982804, -3.0396123818967244, -3.0261245167454502, -7.0, -7.0, -3.1736960465161355, -3.4811558708280352, -3.556724526395461, -2.885587356189656, -7.0, -3.224014811372864, -7.0, -3.259335008740741, -2.2717049714930866, -3.0854628196699045, -7.0, -3.679155241283354, -7.0, -7.0, -2.9740509027928774, -3.085488786659366, -7.0, -3.108776369535781, -2.957196671383207, -7.0, -7.0, -7.0, -7.0, -3.413634997198556, -3.30352003690728, -3.1070968573977424, -7.0, -7.0, -3.1151110355043476, -7.0, -7.0, -7.0, -3.5237464668115646, -2.703608100680318, -7.0, -3.111486550023024, -7.0, -4.2904702780719735, -2.380944228352949, -3.2464985807958007, -3.310757018352604, -3.229169702539101, -7.0, -2.2488486838763264, -7.0, -1.6675418929848589, -2.170565170268305, -7.0, -3.0115704435972783, -3.6530194510996132, -3.53832233323144, -3.9539973051231425, -3.455758203104137, -7.0, -7.0, -7.0, -3.534026106056135, -3.2464165068123942, -7.0, -7.0, -3.269629674357553, -7.0, -7.0, -3.291590825658001, -3.0102292649359197, -3.338057875419756, -3.08278537031645, -3.4239009185284166, -7.0, -3.9607739167652127, -3.503960827812307, -4.597200233109779, -7.0, -2.8651632195060865, -3.1968111306617697, -2.7366416240451947, -7.0, -2.890979596989689, -7.0, -3.18440748541232, -2.5783375537206847, -2.9611497871815335, -3.0348957147764644, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3461573022320086, -3.7453871213200087, -7.0, -2.4664306710374504, -7.0, -7.0, -3.493490223737186, -4.002007583780295, -7.0, -7.0, -3.39963252293413, -2.994844849553398, -7.0, -4.302081884881776, -3.8867162741164782, -4.026206297083118, -3.7080808104682315, -7.0, -3.449177857792815, -3.7984520950361382, -3.8158101067486827, -7.0, -3.9057509200197873, -3.814391038834804, -4.075181854618692, -4.034708651341069, -7.0, -4.310764096221262, -4.2996380249790755, -7.0, -4.142045148157744, -7.0, -3.969900262617777, -7.0, -7.0, -3.782386616743111, -7.0, -3.1684081904984973, -4.3462355816990375, -7.0, -7.0, -4.122183100093868, -7.0, -4.46976312459806, -3.914581133948868, -4.324848110377474, -3.0644579892269186, -4.680707088728766, -3.250294294532932, -3.16721884410666, -3.2757719001649312, -3.749040268703457, -7.0, -3.5138129077677016, -3.4379090355394983, -2.782370232445453, -3.613585124332224, -3.9679923390652525, -3.514406063663669, -7.0, -7.0, -7.0, -7.0, -3.866818802926048, -7.0, -7.0, -7.0, -3.4778400968029173, -3.8983890103941574, -4.862294124024368, -3.2678754193188975, -3.079759919660093, -3.287129620719111, -3.784740883765015, -7.0, -4.805247615802404, -3.5140826625258312, -3.7693527055096814, -7.0, -7.0, -4.4501875018958374, -4.790840874214755, -7.0, -7.0, -7.0, -3.9501267602586227, -4.503150341603528, -3.3428173146357327, -3.772961916786803, -3.785187420029362, -7.0, -3.769839674254719, -7.0, -7.0, -3.774808830310706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3089768152351886, -2.4508903227897534, -3.311568451887975, -7.0, -3.181986424480151, -3.322538787843612, -3.074938279468222, -7.0, -7.0, -3.224856655856958, -7.0, -3.2024542587546296, -3.242624237809914, -3.3230457354817013, -7.0, -2.728924648972301, -3.5089335260500327, -2.85582190540603, -7.0, -7.0, -2.18456799910385, -7.0, -7.0, -2.7687860469080143, -2.80540375486411, -7.0, -7.0, -7.0, -7.0, -4.006626466242401, -2.512643299825052, -3.9506846844686647, -7.0, -7.0, -3.211876648386651, -3.368286884902131, -2.458098017406232, -7.0, -7.0, -3.3229998633420332, -7.0, -7.0, -3.248463717551032, -2.9568085108888016, -3.4723907276266286, -7.0, -3.4574276929464847, -3.0879587894607328, -7.0, -2.875495340871019, -3.556824948270698, -7.0, -7.0, -3.1863912156954934, -3.3433101031623416, -7.0, -3.48061050905939, -7.0, -7.0, -3.954628377507271, -3.035963105745482, -2.9684148414805858, -2.824884805866878, -7.0, -2.8360074591255313, -7.0, -7.0, -3.3087777736647213, -7.0, -3.28668096935493, -3.516403148447403, -2.8727388274726686, -3.4184670209466006, -3.1986570869544226, -2.9109207100667613, -3.1789769472931693, -2.818308388529562, -7.0, -3.2874759886947014, -7.0, -3.5167336366163866, -3.4056877866727775, -3.376576957056512, -3.4565178578052627, -7.0, -3.39375064034808, -7.0, -7.0, -3.4774106879072515, -7.0, -7.0, -3.5986810989071634, -3.6984858063814814, -3.511749711344983, -3.7166987712964503, -3.7819587156422436, -3.1543478812209957, -2.8935398435646613, -7.0, -2.284355524825039, -7.0, -3.0435194602457565, -3.0612262251191154, -7.0, -7.0, -7.0, -3.3820170425748683, -3.1351661410808247, -3.3479151865016914, -7.0, -7.0, -3.203576774977973, -7.0, -7.0, -7.0, -3.873320601815399, -2.973589623427257, -3.496237545166735, -7.0, -7.0, -7.0, -7.0, -3.3432115901797474, -7.0, -3.5538830266438746, -7.0, -3.445635334378726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8146869966218184, -7.0, -2.8559227751038248, -3.6522463410033232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.839006415311301, -7.0, -7.0, -3.2566215460697054, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6870828446043706, -7.0, -3.663795122219408, -2.41373889291492, -7.0, -7.0, -7.0, -3.778078861937455, -3.1863381979963608, -3.380482590974981, -7.0, -7.0, -3.9488529061997135, -3.643057683751453, -2.8867220558827404, -4.204554060135243, -7.0, -2.446314249297305, -2.866805903812722, -3.9766250520507276, -3.957128197676813, -3.9412131875853214, -3.5392852461514557, -3.140642701035818, -7.0, -3.435026375328703, -3.6755033847279566, -3.94733567594874, -3.9480215331411035, -3.1826048405181293, -7.0, -3.2544513953450163, -2.9404781721556996, -3.6419200744131177, -4.024772913079632, -3.356647199759322, -3.7685966674296387, -3.9507541815935037, -7.0, -3.1158600345090313, -7.0, -3.1997894478774342, -7.0, -7.0, -7.0, -3.028887415295375, -3.0477074316449433, -1.884320592134371, -2.3882196509049214, -3.1711145276118584, -2.683347276399375, -7.0, -3.9709509343454243, -3.00189098041235, -1.9958238337500014, -3.6754575416412085, -7.0, -3.6466977312993345, -7.0, -3.7781874400825854, -3.307056053323182, -3.0458117739782704, -7.0, -3.5573868820595074, -7.0, -7.0, -3.3218054838575393, -7.0, -7.0, -3.365948058893356, -3.9466487339066765, -2.2486381513553635, -7.0, -7.0, -3.119695681195928, -3.4133416823749867, -2.7521445200423504, -3.4628470358316736, -2.4856031384563617, -3.190378393991196, -2.675740163617544, -4.072102778885176, -3.050852165633224, -7.0, -2.7888262431370867, -4.070481175066019, -3.574355419939102, -3.9455670534423883, -7.0, -7.0, -2.432665997464232, -4.030073230712518, -3.607025878434786, -7.0, -4.350751817816416, -7.0, -3.6411269328035094, -3.94146173934733, -1.9264679326220504, -7.0, -4.029221394253928, -7.0, -3.1447471299618526, -2.2501063879694696, -3.9653898702151222, -3.477458908024095, -2.6191841017592505, -7.0, -2.505794491644087, -3.497758718287268, -7.0, -4.019863713967843, -3.5950183085200775, -4.100198171834132, -3.498540278461396, -2.691871187043122, -2.2393905541211985, -3.663842212973794, -4.182728418124268, -7.0, -3.5816977780482246, -3.2838889379760565, -3.4428323921463972, -2.4070011961359845, -7.0, -7.0, -2.750462108781149, -3.273734128506228, -7.0, -3.9428014663179405, -3.1774677878844844, -7.0, -7.0, -7.0, -3.169331486173275, -3.2421934558224543, -3.4333811830320657, -3.2321062926146578, -3.6544460867173374, -3.34001423485948, -7.0, -7.0, -7.0, -7.0, -2.808840907011731, -3.5157634906474584, -3.3979110547414355, -7.0, -7.0, -3.6689912701643848, -2.7882492001907035, -7.0, -7.0, -4.009323393381013, -7.0, -7.0, -3.9919787909945836, -3.3971140642605224, -4.033504172945174, -3.551409331791666, -4.006594386184137, -3.597695185925512, -3.2215446370271956, -7.0, -1.9129681222406905, -3.9586594270529334, -7.0, -7.0, -7.0, -3.9564565834098997, -3.3510228525841237, -7.0, -1.618635156505728, -7.0, -4.136355860302406, -3.943247125137862, -3.8311336003868828, -1.3980442589151636, -1.8123443497066896, -1.669816276965361, -1.7366373498507925, -2.2795148535261855, -2.1294254614235526, -3.6955692270361853, -2.9265996539070276, -2.8074899276501095, -2.547335091541293, -3.1959688020761106, -3.9614685553507862, -3.8105013477665297, -7.0, -4.23656245185336, -7.0, -4.18019758233534, -7.0, -2.9615505217181, -7.0, -2.6981316277119274, -3.2652424686338004, -3.1515449513412155, -7.0, -7.0, -2.8174079537467183, -3.2439883200147483, -7.0, -3.427891650708878, -1.8081330329577694, -2.315062135517979, -7.0, -3.4638929889859074, -2.808837695380183, -3.6438966143222347, -7.0, -3.9603756314101584, -7.0, -3.6635124704151556, -1.4757725130086168, -4.083538451230139, -2.891139058890472, -3.9068809860933524, -7.0, -7.0, -3.4865721505183562, -3.983581186705791, -7.0, -3.94797257924578, -4.018492453401473, -3.999826247454412, -3.396286546068402, -7.0, -7.0, -7.0, -3.652294700725204, -7.0, -7.0, -4.002079626393121, -1.9639775351996702, -7.0, -7.0, -7.0, -3.952647169758943, -3.12441105858231, -2.7895337080535616, -7.0, -7.0, -3.2141813086638207, -3.2286997099406283, -3.45763971382968, -1.6430552368565536, -2.523876475638131, -3.644143050509919, -7.0, -2.9424139568201904, -1.9978230807457253, -2.386854499075695, -3.971322245242813, -2.8453899045964133, -7.0, -7.0, -2.9546765869186435, -2.4627118904578484, -7.0, -3.036479181663958, -2.7864287425245773, -4.1820721038573865, -3.693287157005656, -7.0, -7.0, -3.5109469486729727, -2.842609239610562, -4.040760524228698, -7.0, -7.0, -3.989004615698537, -7.0, -2.998912904358786, -7.0, -2.6568478474496584, -1.8395153297564846, -3.0817522444133325, -4.042299807413626, -3.2962262872611605, -2.887096773947783, -3.0602120221018287, -7.0, -3.0786774240863606, -7.0, -2.9309490311675233, -2.6682066561591586, -1.6675418929848589, -7.0, -1.5011516580341902, -7.0, -7.0, -4.065915668188592, -4.025100961046813, -2.784639018187803, -2.964924833439139, -7.0, -7.0, -7.0, -3.446381812222442, -2.601218606857038, -3.9586594270529334, -7.0, -3.558708570533166, -7.0, -3.7155437506051423, -3.9589459324939362, -3.521399628115376, -7.0, -7.0, -2.9181352261663593, -3.2700263223122934, -3.6254749153872496, -3.3678748470760316, -3.8756456625927447, -7.0, -1.9500953041050464, -3.1536335087788894, -2.77232170672292, -7.0, -3.4994579639204475, -7.0, -2.1772178342189354, -2.7944880466591697, -2.638779011985003, -2.7850784829355133, -7.0, -7.0, -3.032014034159506, -7.0, -3.9672202597829673, -7.0, -3.50170953186571, -3.957463615729931, -1.6412637671866943, -3.9391696796251776, -7.0, -2.3605621658536116, -2.952831174381129, -4.430220226321072, -3.0546130545568877, -3.0361786912074473, -1.8552938792308002, -2.9433845818511166, -3.1422237856667863, -2.5988527169476825, -2.729434789379367, -3.485756906607567, -3.499198149854234, -2.5762477421696715, -2.808421232157792, -2.4650249966173132, -3.2951124104145713, -2.5955592041303617, -2.412453408323028, -3.376052019499695, -3.0115251330042616, -4.080373916701309, -3.1369909694464804, -2.6525525283351086, -2.744200307271721, -2.9993791357314246, -7.0, -3.2251396023011987, -3.5279059647530167, -2.9789271551990844, -2.635773643682964, -3.012415374762433, -2.9007493580610797, -3.1657931554017056, -4.3777978331112255, -4.0090682761922185, -3.3090336675041403, -3.5967894619644882, -3.284739350248932, -3.092979054430626, -3.030159555627922, -3.27669152884504, -3.2934256972649014, -1.9945033548218805, -1.9117848898005676, -2.707842589142404, -3.567864134341705, -7.0, -2.391460040062417, -3.479551317993014, -3.7555699806288, -3.350684032686936, -3.096458111717453, -2.9226634989052327, -7.0, -3.0071134864303173, -7.0, -7.0, -7.0, -4.026410680578774, -4.111228898234156, -7.0, -2.4258823583037517, -2.8106243908861606, -3.495683908270132, -3.9539528832319233, -3.164385905857274, -7.0, -2.684354440963692, -7.0, -4.0767992665280355, -2.9429565299567932, -3.3524281101826423, -7.0, -3.424629239099311, -3.7029841305063393, -3.1387572849361476, -3.612289256263882, -3.277485792612607, -4.166193215170067, -2.958260192959905, -2.857421848243517, -7.0, -2.628511537066202, -2.680494704168573, -4.075364446373285, -3.19554385153028, -7.0, -4.085861173788451, -2.4400589014712017, -3.9703313765073305, -3.103803720955957, -7.0, -7.0, -3.4693310102934105, -3.827401585429265, -2.284337689848148, -3.244771761495295, -2.736933594392909, -3.473827459679738, -2.6079265932033473, -3.1381016558472252, -2.9148718175400505, -4.012288739834607, -3.9522595365908204, -2.6212392458174656, -7.0, -2.770459251514174, -2.8614992695002854, -3.4885977155245587, -7.0, -1.5726392970428134, -3.4134255068264925, -2.589746565098586, -7.0, -7.0, -1.8546190242893335, -7.0, -3.493179120682515, -2.7982620922768358, -3.219846386024361, -7.0, -3.3138203683833587, -7.0, -7.0, -3.637507923286498, -1.4171224151307773, -2.656261089071224, -3.9404168646816653, -3.5657297878311267, -3.3250536206057983, -3.9766250520507276, -3.270174000547579, -7.0, -3.2962262872611605, -2.9684329117450887, -7.0, -3.0464951643347082, -4.028855809390444, -3.038973211034812, -2.8601382850306134, -2.5623880418581058, -3.1547282074401557, -3.981909170090792, -7.0, -3.160854246873126, -2.180424883222142, -3.7768464086952993, -7.0, -3.224607048037594, -3.217107768805456, -7.0, -2.57460013973368, -7.0, -3.9502674680135885, -2.759532949679413, -3.716086853774832, -2.0885417282256857, -2.568279968276179, -3.3870693269320205, -2.150289133478534, -3.6645479622465467, -3.5832271212472397, -7.0, -3.3069149600365777, -3.9578944872128985, -3.7169627421024516, -2.885093274841376, -3.688419822002711, -3.639436681999548, -2.9295992181746016, -2.074915184686576, -4.094121595840561, -7.0, -3.1530064771007162, -4.0485971584016065, -3.182478057717082, -3.685024785105714, -2.9567399759502986, -3.029485236506347, -3.512550992904211, -3.38070858592305, -3.944285220688753, -7.0, -2.567152449621088, -4.047235915459681, -7.0, -3.1420764610732848, -2.287551764275916, -2.3695531735295496, -2.9250063310491754, -3.0576460880332545, -3.3305490465108214, -3.3445494559097377, -7.0, -3.303109622057102, -7.0, -3.199412322193509, -4.110791660771106, -3.214479576471884, -7.0, -4.002813779224673, -7.0, -2.4919428312363485, -7.0, -7.0, -7.0, -3.94146173934733, -7.0, -7.0, -7.0, -2.821007062479266, -3.29928933408768, -7.0, -3.9606610072709816, -3.965624967109243, -7.0, -3.9575594018974796, -3.9705793057148506, -7.0, -3.1265778156833792, -3.9964678902617172, -2.8044492222635324, -3.5456781497920256, -7.0, -7.0, -7.0, -2.4521231704399007, -7.0, -7.0, -3.0190944165906677, -3.668944734457734, -3.6672661193822744, -3.764512374855157, -3.562728923030002, -4.034387783589566, -7.0, -7.0, -4.022304622935068, -7.0, -3.5043349118024643, -3.694868327982456, -7.0, -7.0, -3.0277572046905536, -7.0, -7.0, -7.0, -3.4915017662373264, -7.0, -3.2895889525425965, -7.0, -3.228913405994688, -3.04028151976861, -7.0, -3.4634450317704277, -3.4913616938342726, -3.4139221340565546, -3.0422511354113118, -2.2943501822111623, -7.0, -7.0, -7.0, -3.4712917110589387, -3.0422174200040857, -4.007833092701319, -7.0, -2.3712526291249394, -2.745208243729944, -3.2600713879850747, -2.7291647896927698, -7.0, -2.754061514909023, -2.2388441244514645, -3.5182506513085, -3.624831922757537, -3.5613399414589013, -7.0, -3.4825877695267677, -3.5200903281128424, -3.6510840892430116, -2.652522609767031, -7.0, -7.0, -7.0, -3.5138831856110926, -3.7339376451385387, -2.7904259173911106, -3.2249213455840313, -2.709458415950323, -7.0, -2.4527445088929922, -3.509605704611556, -3.2587569725365753, -7.0, -2.176438555741045, -7.0, -2.2764986103499605, -2.4874711044587197, -2.621176281775035, -2.733598460961339, -7.0, -3.0688040746361804, -2.460730838531493, -3.2502979923398647, -2.9584444238670944, -3.5626496722119168, -3.4820155764507117, -3.5397032389478253, -3.312811826212088, -3.70888808900192, -3.4871383754771865, -7.0, -3.39750549689802, -3.465977368285823, -3.4191293077419758, -2.926213785839081, -7.0, -3.712733859069952, -3.306901713537009, -7.0, -2.527353661395109, -3.45499721730946, -3.2012605322507914, -2.582675106925388, -2.9566485792052033, -2.275514596639852, -2.9815165943059867, -2.6770259566714305, -2.3616019353117093, -2.128131219761547, -3.776119799052988, -2.7871567366704566, -7.0, -3.1908034736140474, -7.0, -3.8107700112343634, -3.4753805931433615, -7.0, -3.7096938697277917, -2.929418925714293, -7.0, -3.0210514059168814, -7.0, -3.742672771972318, -7.0, -3.46553155697355, -7.0, -2.3072377598907905, -3.4712917110589387, -2.782472624166286, -7.0, -2.503985128765333, -1.9323962220245403, -7.0, -7.0, -3.099910730906369, -7.0, -2.5495917370235555, -7.0, -7.0, -3.6659560294539566, -3.2990712600274095, -3.3526326642053124, -3.5593080109070123, -3.198081978306959, -2.8910530406646147, -7.0, -7.0, -7.0, -3.6065619252763397, -2.4615908660130277, -3.721068301797159, -2.771052717714531, -3.4811558708280352, -3.5399538416563967, -2.6859558157861794, -2.6201360549737576, -7.0, -7.0, -3.8095597146352675, -7.0, -7.0, -7.0, -3.181128699747295, -3.4634450317704277, -3.4202198777251476, -2.938742041271392, -3.3202501718864337, -3.86350130064145, -7.0, -7.0, -3.4690852991231202, -7.0, -3.28454352295875, -4.141481129270804, -2.6597736292477885, -7.0, -3.504062882678692, -2.764798598430535, -2.620171159405891, -7.0, -7.0, -3.164253690472463, -3.5983527098692836, -3.4831592097169795, -3.2989621819201167, -7.0, -3.6961815871685237, -2.9066043717249803, -3.3341520529922866, -3.6994040818153375, -3.142493751023144, -3.524915147539867, -2.691692123189126, -3.2116544005531824, -7.0, -7.0, -7.0, -3.5067755366066433, -3.196728722623287, -7.0, -2.2309352534357063, -7.0, -4.032276185782851, -7.0, -3.5867560391743902, -1.8955162525385503, -2.7768222079495963, -2.7114456684692576, -2.7198834733033834, -2.752706802390036, -2.7794160989470678, -3.3104808914626753, -2.5542872095319615, -2.6263403673750423, -1.9907935114317312, -2.8735143535392917, -3.5207454715194824, -7.0, -7.0, -3.7560652939486863, -7.0, -7.0, -7.0, -2.8129740928826443, -7.0, -2.7077298138434953, -7.0, -2.9130717403092508, -3.505421327583281, -3.2231063809285874, -3.3005954838899636, -3.3707905645192677, -7.0, -1.8576979104047853, -2.7274893420823583, -2.867150070839093, -7.0, -7.0, -3.028435683944159, -7.0, -7.0, -7.0, -7.0, -7.0, -2.022732383790295, -3.0989204787223303, -3.9033613362553186, -4.459743367173927, -3.4554539687786283, -3.511214701136388, -7.0, -3.5792117802314993, -7.0, -7.0, -3.6628522332647964, -2.9194964878630616, -2.916559219301114, -7.0, -7.0, -7.0, -2.54171788544238, -7.0, -2.6328909362366324, -7.0, -2.936624892484605, -7.0, -7.0, -7.0, -7.0, -2.5878356368963007, -3.0580462303952816, -3.4574276929464847, -3.544811911757776, -3.3847714356717837, -3.15946692901018, -3.9302356527662847, -1.863867864960782, -7.0, -7.0, -7.0, -2.886001633574488, -2.2701934281564258, -2.763499300431483, -7.0, -3.5850415418704515, -7.0, -3.4983105537896004, -3.0265332645232967, -1.9834639036932529, -3.599992177584098, -2.8872420998960684, -2.3364025484535027, -3.494618336168116, -7.0, -7.0, -7.0, -3.590953235187986, -3.027268042466619, -3.711807229041191, -7.0, -3.5025636691073636, -3.5928426831311002, -7.0, -3.1414497734004674, -7.0, -1.760441815902545, -2.1082991858624305, -2.5403294747908736, -3.2376275060053974, -2.829732493973346, -3.486250961710627, -3.0109780121747423, -7.0, -2.975411826706968, -7.0, -3.251273113674373, -2.037566277305172, -2.170565170268305, -1.5011516580341902, -7.0, -3.6317987712368653, -7.0, -3.2863816107479344, -2.2581397562674157, -3.639464639040942, -2.4733763640581374, -7.0, -7.0, -7.0, -3.6099677206466616, -1.8247222806425387, -3.5129510799724906, -7.0, -2.922552466761376, -7.0, -2.7029089924616416, -7.0, -3.0940050223646494, -7.0, -3.2703293970898586, -2.539538289847167, -7.0, -4.17262627974791, -3.7298610470505493, -4.332621950244293, -7.0, -2.3099341887767135, -3.551417465332544, -2.5427217148436054, -7.0, -2.656936261920949, -7.0, -2.110963618614987, -2.7538893314598334, -2.174384795241664, -1.7521469831532483, -3.4712917110589387, -7.0, -2.2751340914855125, -7.0, -3.5364321758220134, -7.0, -3.359645792674543, -3.509605704611556, -1.005398821029378, -2.853241780329114, -2.9867717342662448, -2.8644382137298496, -3.6132567330092735, -4.3241795297179, -7.0, -3.7784406835712327, -2.7423406445464393, -3.69888313675259, -3.361434010908688, -2.693721384719475, -3.5993371329924893, -3.807061239917239, -4.353916230920363, -3.181851524540416, -3.451705434693038, -3.0277143177619745, -3.899163641477219, -3.3942239667723677, -3.1083579944145168, -4.1204752166965255, -3.5828773754300287, -7.0, -3.945037523575931, -3.72503317572055, -3.084325995016827, -7.0, -4.377160490206987, -3.566781853917318, -3.7727860752162554, -3.3676354197905107, -3.147725497474199, -3.3810892828256227, -3.6196236950212635, -4.371086342494794, -3.9549898177161404, -7.0, -4.163042046914198, -7.0, -3.4469182571714287, -3.9478256844424506, -3.3600151119450192, -3.5597869682005565, -3.43681615981553, -2.9097061995921036, -2.5887025545779663, -3.143888758109275, -4.375791597685192, -3.3706056009381484, -3.0449390290609553, -3.389839162125274, -3.2676409823459154, -3.6328909362366324, -2.796676072928307, -3.0023475200438834, -7.0, -2.8499456188070376, -3.0540861434129027, -7.0, -7.0, -4.415824398888761, -7.0, -7.0, -3.1208552310470163, -3.363917733183663, -4.478038265223136, -7.0, -2.909496597905892, -7.0, -3.4897382311301004, -7.0, -4.807463992788396, -3.3122680517480134, -4.277609214304091, -7.0, -3.767582527077297, -7.0, -3.8967466156074058, -7.0, -2.9118289775122443, -3.9458623244896174, -3.2033688982360395, -3.5661624108509122, -7.0, -2.4169266341952547, -3.6249521046631217, -3.7825442840100103, -3.795858784650379, -7.0, -7.0, -3.1142772965615864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.922848330955433, -3.3725438007590705, -2.4459252900038795, -7.0, -3.1609684672648433, -2.8685197614044755, -3.2105860249051563, -3.046007138120972, -7.0, -2.726890140741822, -7.0, -3.150489469216031, -2.8613352388849425, -3.5328817194073974, -3.66133934000604, -2.389636684288985, -7.0, -2.3830101417228375, -7.0, -7.0, -2.5084261181878986, -7.0, -7.0, -2.052870647076631, -2.858612380549469, -7.0, -3.3259943001703647, -7.0, -7.0, -7.0, -2.320720809309493, -3.389540902111774, -7.0, -7.0, -2.485879093748479, -7.0, -2.647627436477339, -7.0, -3.0062520513693647, -2.90760481522294, -7.0, -3.0114294617807817, -7.0, -2.758587509600443, -3.0812272540419574, -2.618962813876879, -2.6646419755561257, -2.795648331832097, -7.0, -2.553680794052605, -2.113289239500206, -7.0, -7.0, -2.407280034926181, -2.9112337273068007, -7.0, -2.9596243024569144, -7.0, -7.0, -3.411156548296478, -3.182414652434554, -2.4383109930925673, -2.548020694905531, -3.502631927572243, -2.6060587494103142, -7.0, -7.0, -7.0, -3.3203021054568276, -7.0, -2.962179852908768, -2.6195405190807763, -7.0, -3.159115821827769, -2.4571751520997434, -1.9460098847657648, -2.612518962242537, -7.0, -3.0756429911291083, -3.7283537820212285, -3.2942457161381182, -3.585686278452497, -2.9159601514735285, -3.2445863372491552, -3.5949447366950835, -3.577836341292744, -7.0, -7.0, -2.955670573321319, -7.0, -3.0774890305065017, -3.4211101297934343, -2.7320094709078133, -2.754157142891773, -3.186904991316638, -3.319915339824355, -3.368968325638322, -2.7168377232995247, -7.0, -2.509099081939545, -7.0, -2.7925190299131533, -2.8069196184690592, -3.3853083013863463, -7.0, -3.6264430253312945, -3.570192561095726, -2.7099096642611826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9009626645494517, -7.0, -2.86844850133673, -7.0, -3.532117116248804, -7.0, -7.0, -3.0678145111618402, -7.0, -2.9893608137762473, -3.6111920608684343, -3.069098604983803, -7.0, -7.0, -3.059689611271879, -7.0, -2.9217607710071607, -7.0, -7.0, -3.3263102531878377, -3.066450169242703, -3.061954844073114, -3.4620234446356335, -3.7102020146553847, -3.220631019448092, -7.0, -7.0, -3.6714505542124947, -7.0, -3.5407047833107623, -2.7054360465852505, -7.0, -7.0, -7.0, -2.6847705799856993, -7.0, -7.0, -7.0, -3.2495652118253466, -3.833083334178343, -2.8754230247469814, -3.4982416126858915, -2.982605136861189, -7.0, -7.0, -7.0, -3.282045059431361, -2.9927944356352274, -7.0, -3.200371635102761, -7.0, -3.474507639116976, -7.0, -3.434265430560304, -1.793728772440664, -3.760497875226527, -3.222369590552542, -2.9884118350354, -7.0, -3.486784571399042, -3.764250875438773, -2.8305303467241485, -3.8303319934519617, -3.793021659845983, -1.4426505265509397, -2.2936638342808666, -2.730562063805724, -3.297030604235048, -2.6159500516564007, -1.5574823964177655, -2.740219097334925, -7.0, -7.0, -3.0386769213410014, -7.0, -3.0708520677922007, -2.999637937051224, -3.018423082826786, -7.0, -2.9782457508063915, -2.9094668791881264, -1.8910810795189281, -2.583132067189918, -3.330819466495837, -3.8268519478206438, -7.0, -2.773609928133165, -2.7967877457365438, -2.87102128558996, -2.720647844820754, -7.0, -2.8069935136821074, -2.445496837517327, -7.0, -7.0, -7.0, -3.7741518589547103, -3.5033820634737327, -3.656960182742849, -3.4848690327204026, -3.776773802412107, -7.0, -3.4207256768599095, -7.0, -7.0, -1.9343607038780624, -7.0, -3.906981153228854, -3.6652963707912574, -7.0, -3.5826314394896364, -7.0, -7.0, -3.2653233064596994, -7.0, -3.4876332174568763, -7.0, -3.43435596238644, -3.8053649074664455, -2.511780557218919, -3.4712428012687067, -2.902788288833299, -7.0, -3.256702871095842, -7.0, -4.200001865406602, -3.7707783961691477, -7.0, -3.9050399280762114, -7.0, -3.045993186453467, -3.0096869125872336, -7.0, -4.290101420759143, -3.8090881313463463, -7.0, -7.0, -3.567790710533536, -7.0, -7.0, -3.3595192868531116, -3.139024042846853, -2.8419848045901137, -7.0, -3.307067950661298, -3.825491029879431, -3.1350053669438873, -2.902693659213221, -7.0, -7.0, -2.797209815771563, -3.0450294373885924, -3.3831867994748994, -3.5141491344754376, -2.6061663146076204, -4.191681515027636, -7.0, -3.2446658144774316, -2.9566485792052033, -3.6946511535901805, -3.825945143203848, -2.911370707116138, -3.9742352774430265, -7.0, -3.8046845149069406, -2.7391938443032537, -3.2226124360573976, -7.0, -7.0, -3.7590480609558354, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6130825181863484, -3.0762357711830832, -3.1166298787188618, -7.0, -7.0, -4.112437417321844, -7.0, -3.4807253789884878, -3.830203598925704, -7.0, -4.082282589912437, -3.464042205438811, -7.0, -7.0, -2.922000596884898, -7.0, -3.062281069972644, -3.8629657589777624, -7.0, -3.4735599546008133, -7.0, -3.8490506905695123, -1.7820970697778085, -2.1681120183768696, -2.0250611923107478, -2.0278119784740323, -2.6722210445716033, -7.0, -2.7177218382259345, -7.0, -3.4638929889859074, -7.0, -2.4261044280965076, -3.18447848916984, -3.7824009524965296, -7.0, -2.756857889127802, -7.0, -4.388385425718033, -7.0, -4.026778328659529, -2.752592026136236, -7.0, -3.5287881917748964, -3.9651546459869254, -3.837840861655523, -2.846168355771784, -7.0, -3.3819569700273067, -3.3508938095043144, -7.0, -3.683542319957651, -3.7943486038960827, -3.6991870973082492, -7.0, -4.155882358081815, -2.54205440207046, -7.0, -3.7782236267660965, -2.74404048632376, -7.0, -3.1999118208915673, -7.0, -3.0, -7.0, -3.495127881242933, -1.80976494807886, -2.0283388232077804, -3.7591388162811663, -3.1132189243125046, -7.0, -2.865661253706322, -7.0, -7.0, -3.78660947264866, -7.0, -3.4764693239263837, -7.0, -7.0, -7.0, -3.176830538595021, -2.1057739676278633, -3.975914090049001, -5.240349526742219, -7.0, -2.322931837111811, -3.4967221329867297, -7.0, -3.288323763370488, -2.731515509813047, -1.9365137424788934, -7.0, -2.1428272945383364, -3.282924073246148, -3.2835273648616936, -3.0749626431316264, -3.305064611772354, -3.762378429311964, -2.6572765496426967, -3.0740236540366594, -2.856677381260537, -7.0, -7.0, -7.0, -7.0, -3.0280965768121466, -7.0, -7.0, -7.0, -4.008216801589691, -7.0, -7.0, -3.2307407859604305, -7.0, -7.0, -7.0, -3.336142736652067, -7.0, -3.7522570347660578, -2.463485774251991, -2.7890516223748403, -7.0, -7.0, -3.484442207642407, -3.8805277781988052, -3.735319392367857, -2.6412036063023283, -2.4530289344127074, -3.4871030080369696, -7.0, -7.0, -3.7737864449811935, -3.53198955141255, -3.313709074655722, -2.411782576575266, -7.0, -3.784759894664005, -2.4696939810474294, -3.3049928927594086, -3.8494194137968996, -7.0, -7.0, -2.405908938343313, -3.829175073917088, -3.9084850188786495, -3.8435442119456353, -3.8699446621420774, -3.3415993735009404, -7.0, -3.3921867532870635, -7.0, -7.0, -2.9232440186302764, -7.0, -7.0, -3.6317987712368653, -7.0, -1.2335807862202566, -1.3722855490837138, -7.0, -3.9684452044268173, -3.203304916138483, -7.0, -3.4583356259919475, -7.0, -4.043755126968679, -3.278982116865443, -3.312811826212088, -3.1997551772534747, -3.8998751960210107, -7.0, -7.0, -7.0, -3.714706878813469, -2.296528080715987, -2.3873898263387296, -3.2796669440484556, -7.0, -3.343858552512142, -3.570367785823503, -3.8100859701678447, -7.0, -2.9832126912055705, -3.15904054763018, -3.0535777871252825, -7.0, -3.8166389448984614, -7.0, -3.3425707105283156, -2.7563317673210577, -4.026574118150334, -3.1740598077250253, -7.0, -7.0, -7.0, -2.782759192623997, -2.105961796878401, -3.0298570495267563, -1.388158829606327, -2.530768705139248, -2.2272614893778035, -7.0, -7.0, -4.34964656951508, -7.0, -7.0, -7.0, -7.0, -4.461963486124938, -7.0, -4.34552075797636, -4.432819692596553, -7.0, -7.0, -7.0, -7.0, -4.719497016610582, -3.860128296542201, -7.0, -7.0, -4.17133633956286, -7.0, -7.0, -7.0, -5.397383755657276, -7.0, -7.0, -7.0, -7.0, -4.706530030980853, -7.0, -7.0, -4.510692430840357, -7.0, -4.7235705929867065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.667219398443936, -2.9696821057315477, -7.0, -4.2404850620891335, -3.6382229411517786, -7.0, -7.0, -7.0, -3.9934484777722394, -2.5067640292211575, -2.9728711024944356, -3.313774975701645, -3.5099771967991025, -2.8276636767360315, -7.0, -4.514853112350159, -7.0, -3.296665190261531, -7.0, -3.984647309056901, -7.0, -7.0, -3.735808937174781, -4.032978416988432, -4.807879046479349, -7.0, -1.9593016307081295, -7.0, -3.6186301025123226, -7.0, -4.937302195705841, -7.0, -4.339670024244455, -7.0, -7.0, -4.510732627784333, -4.217424718200872, -7.0, -7.0, -7.0, -3.8852069687488022, -4.557158182475332, -3.807535028068853, -3.2876291344721302, -4.503845136631561, -7.0, -4.05677530559286, -7.0, -7.0, -3.883642511234492, -3.5543680009900878, -7.0, -3.4653828514484184, -7.0, -7.0, -7.0, -3.7633031783639455, -2.625255273095499, -3.109641813636512, -7.0, -3.860996436757196, -3.591748122447564, -7.0, -1.8508342033943512, -7.0, -3.737788791709675, -7.0, -3.276085047995312, -3.02123525372655, -7.0, -2.2907373533959543, -7.0, -7.0, -2.9565176821885184, -7.0, -7.0, -4.054766217838991, -7.0, -7.0, -3.855034316675884, -2.859338479128867, -7.0, -4.193986763085695, -7.0, -7.0, -3.1887151855781966, -4.413859458706849, -7.0, -7.0, -2.4148655692180863, -2.037963736953456, -7.0, -2.7696937519421607, -7.0, -3.8435442119456353, -2.807271876243159, -7.0, -7.0, -7.0, -3.841234295506041, -7.0, -7.0, -3.850339854583479, -3.522900459461583, -2.8981078474672053, -3.3815963601406294, -7.0, -7.0, -7.0, -2.8308353288166703, -2.3884564527002667, -7.0, -4.286613631657004, -7.0, -7.0, -7.0, -2.9187873026217193, -2.5573136775643146, -3.9157690659836843, -7.0, -7.0, -7.0, -4.093561757565289, -2.3452336581560345, -3.7512020945883533, -7.0, -3.2727695865517594, -3.4657545198338777, -7.0, -7.0, -3.159529596862398, -3.2499860332676347, -2.2654190507574126, -2.197510282797415, -2.5418185152424937, -7.0, -3.333850145102545, -3.528980940272137, -3.5083411471001154, -7.0, -7.0, -3.8256857080217586, -2.864733511015573, -7.0, -7.0, -7.0, -3.8129801660394804, -7.0, -4.292134185904887, -7.0, -7.0, -2.9256880250155644, -3.519696767159853, -2.95547394379502, -3.496652939250918, -3.007442945755542, -7.0, -1.8336560803707163, -2.742506925762298, -7.0, -2.98617435524234, -3.376455288899979, -3.2189291850880872, -3.303383275046943, -2.2130748253088512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1670217957902564, -2.645211668286901, -7.0, -7.0, -7.0, -2.9036325160842376, -7.0, -7.0, -3.8448498008066387, -3.9584444238670944, -7.0, -3.215373152783422, -7.0, -3.765072201102792, -7.0, -7.0, -7.0, -2.857793512133298, -7.0, -3.327086350362379, -3.939918420369057, -7.0, -3.2952921430163506, -7.0, -7.0, -7.0, -7.0, -3.391508491461765, -3.543012046377035, -7.0, -7.0, -7.0, -2.311223910432456, -7.0, -7.0, -7.0, -7.0, -7.0, -3.26528962586083, -7.0, -3.4672824476181416, -7.0, -7.0, -7.0, -3.2274753434823706, -3.2884728005997825, -7.0, -7.0, -3.2081725266671217, -3.252610340567373, -7.0, -3.884946331007737, -2.220798618877941, -3.1997551772534747, -3.4656058906462865, -3.3249320097737254, -7.0, -7.0, -7.0, -2.817036226050029, -3.413132050434872, -3.307923703611882, -2.304048889849097, -2.139508685967779, -2.3384564936046046, -3.248463717551032, -2.610234175334389, -1.9053114469859016, -2.428828740086269, -7.0, -7.0, -2.6376147963188186, -7.0, -3.6008671469564506, -3.261976191397813, -3.3207692283386865, -3.526339277389844, -2.696356388733332, -3.0475863570743504, -2.209738359614102, -2.770667949557633, -7.0, -7.0, -7.0, -3.2154154693070747, -2.6962471460005455, -2.9229612441339685, -3.171433900943008, -7.0, -7.0, -2.752158242910885, -7.0, -7.0, -7.0, -7.0, -3.3422252293607904, -3.3892547068486483, -3.565596964778962, -7.0, -7.0, -3.0942381380341772, -7.0, -3.820398522703982, -2.0702788512520054, -7.0, -3.590507462008583, -4.226200221973549, -7.0, -3.540954808926133, -7.0, -7.0, -3.0953188246674084, -7.0, -3.2949069106051923, -7.0, -7.0, -7.0, -3.158060793936605, -3.070037866607755, -2.8790958795000727, -7.0, -3.455030221014262, -7.0, -4.067145278885395, -7.0, -7.0, -7.0, -7.0, -3.55834850876162, -3.002943206876325, -7.0, -3.708194203283994, -7.0, -7.0, -7.0, -3.548635059814752, -7.0, -7.0, -2.9523080096621253, -2.892412650659219, -3.5542814381383723, -3.329194415088451, -3.2812606870550125, -7.0, -3.4239009185284166, -3.3264382767957286, -7.0, -7.0, -3.049734732406212, -3.3718986947787415, -3.2625301889897145, -7.0, -3.0021930692800325, -4.064562806279621, -7.0, -2.955046014722926, -7.0, -4.397148872562535, -7.0, -2.9016762313263755, -7.0, -7.0, -3.342620042553348, -2.7674650825294926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9607268366171704, -2.9132839017604186, -2.9581983746214435, -7.0, -7.0, -7.0, -7.0, -3.2730012720637376, -7.0, -7.0, -3.4207806195485655, -7.0, -7.0, -7.0, -3.3521342604879, -7.0, -2.9030899869919438, -7.0, -3.1300119496719043, -3.249442961442582, -7.0, -7.0, -1.8949899099598944, -2.070037866607755, -2.0459022312658655, -1.9230610679225635, -2.5062042744413957, -3.318689269947746, -3.1251756988681234, -7.0, -3.2161659022859928, -7.0, -2.3527611917238307, -2.811127970852324, -7.0, -7.0, -2.8663327887710035, -7.0, -7.0, -7.0, -7.0, -3.1879157379875953, -7.0, -3.4743619760326307, -7.0, -3.4324882557705063, -2.595496221825574, -7.0, -3.485153349903652, -3.4077307280263356, -7.0, -7.0, -7.0, -3.4644895474339714, -7.0, -7.0, -3.2009872191631663, -7.0, -3.2610248339923973, -3.115943176939055, -7.0, -7.0, -7.0, -3.151216578856456, -7.0, -7.0, -2.0649831337672087, -2.1316186643491255, -7.0, -2.9559281568969507, -7.0, -2.7431960814487013, -7.0, -7.0, -7.0, -7.0, -3.2591158441850663, -7.0, -7.0, -7.0, -3.670245853074124, -2.070389735763648, -7.0, -7.0, -7.0, -2.212409579610376, -3.3226327116922234, -7.0, -2.916980047320382, -2.946697837245742, -2.441040189834335, -7.0, -2.339986239750892, -3.1992064791616577, -2.8998205024270964, -2.7706065781900606, -2.9733587998863977, -7.0, -3.243534101832062, -2.5129214565297655, -3.141709370973691, -7.0, -7.0, -7.0, -7.0, -2.871183608328498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2865126055296376, -7.0, -7.0, -7.0, -3.108684384591605, -7.0, -3.8499841820942704, -2.350829273582968, -3.129359328564904, -7.0, -7.0, -2.8068580295188172, -4.041984501486787, -3.2234959409623944, -2.866962102446818, -2.324830980134619, -3.2095150145426308, -3.442793225939769, -7.0, -7.0, -2.9426693313867003, -3.307923703611882, -2.037540321681782, -7.0, -3.2821687783046416, -2.378563063331533, -3.274619619091238, -3.461348433647983, -7.0, -7.0, -2.705458565808605, -7.0, -7.0, -7.0, -4.0942805092610115, -3.255272505103306, -7.0, -4.312008007838723, -7.0, -3.362293937964231, -3.226771698912882, -3.0115704435972783, -7.0, -7.0, -1.2335807862202566, -7.0, -1.761551988564182, -7.0, -4.381987436429171, -3.9351544472161684, -7.0, -7.0, -7.0, -3.3604040547299387, -3.7272158209084925, -7.0, -2.2900346113625183, -2.8757555792580547, -7.0, -7.0, -7.0, -3.3145693943004555, -2.868252475839426, -2.544245271237821, -7.0, -7.0, -4.262094964674063, -3.5626836386190908, -4.5335513782347565, -7.0, -3.3912880485952974, -3.7224117833264954, -3.0757901954968463, -7.0, -7.0, -7.0, -3.66576855071938, -3.384353414137506, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4994579639204475, -2.2534591643398376, -2.876217840591642, -1.8926510338773004, -2.2479732663618064, -2.6538994379074516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.586007483440228, -7.0, -7.0, -7.0, -4.728556675966476, -5.002878497871973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.546801682361427, -7.0, -7.0, -7.0, -7.0, -7.0, -4.782809322668878, -4.192567453336546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325269301733074, -2.895606686165933, -7.0, -3.9564381178018633, -7.0, -7.0, -7.0, -7.0, -4.9374175814771375, -2.4707758982656967, -2.7283537820212285, -4.158422806584882, -3.9267819449923036, -3.110669438809445, -7.0, -4.154484837032048, -7.0, -3.247236549506764, -7.0, -4.3941889232411695, -7.0, -7.0, -3.741392368925786, -4.790636961931703, -5.707437312758631, -7.0, -2.050460012950964, -2.9947569445876283, -3.784935706040011, -7.0, -7.0, -4.117702061209315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.205664407371687, -4.503708989891708, -3.04941186087108, -3.5341726044491257, -4.3595177052971295, -7.0, -4.119335472875041, -7.0, -3.7063763558396903, -4.31940798167448, -3.3660492098002353, -7.0, -2.919862253555538, -7.0, -7.0, -7.0, -3.7077546411086244, -2.2107897277615662, -3.215637563435062, -7.0, -7.0, -3.323308364436474, -7.0, -1.6796833556134474, -3.2692793897718984, -3.3525683861793083, -7.0, -3.659019262122172, -3.0238283925348863, -7.0, -2.8209891764160493, -7.0, -7.0, -2.720159303405957, -7.0, -7.0, -3.8553374044695405, -7.0, -3.350829273582968, -7.0, -2.6123021101568566, -7.0, -7.0, -7.0, -7.0, -4.308137378638039, -4.144338922661946, -7.0, -7.0, -2.690970914278475, -2.0155940853488956, -7.0, -2.6094876898532853, -7.0, -2.7466341989375787, -3.047366505192591, -7.0, -7.0, -3.5547313766759667, -7.0, -7.0, -7.0, -7.0, -3.095169351431755, -2.8573324964312685, -2.7841892053809607, -3.558468562523795, -7.0, -7.0, -2.62446961504493, -2.165738797864829, -7.0, -4.18098558078673, -7.0, -7.0, -7.0, -2.4750104632891783, -2.766089567870567, -3.130976691605617, -3.707485011967474, -7.0, -7.0, -7.0, -1.9093420383613084, -3.851441814672055, -7.0, -2.8217754671834636, -3.3988077302032647, -7.0, -7.0, -3.1690863574870227, -3.411570193966152, -2.4442092079896605, -2.0572856444182146, -2.7972879125492702, -3.6110857334148725, -3.3432115901797474, -3.111262513659065, -3.475053440975798, -7.0, -7.0, -7.0, -2.5284024379536176, -7.0, -7.0, -7.0, -3.366236123718293, -7.0, -4.2431869241314715, -7.0, -4.19506899646859, -3.2815357045635154, -3.7599698575543075, -2.818665685531947, -7.0, -2.770557474850995, -7.0, -1.9098433138304707, -2.6830470382388496, -7.0, -2.5150786750759226, -2.6924062348336304, -2.911512714632127, -3.373480429443243, -1.9667282209873844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2005769267548483, -2.1566356727947436, -7.0, -7.0, -7.0, -2.3059373301587254, -7.0, -7.0, -3.1487568513217923, -3.6688826790912064, -7.0, -3.7547304690237535, -7.0, -3.2161659022859928, -7.0, -7.0, -7.0, -3.2350763753367193, -3.04766419460156, -2.86411536851903, -3.656194062179186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4483971034577676, -7.0, -7.0, -7.0, -3.1851170011425913, -7.0, -7.0, -7.0, -2.9385197251764916, -3.305673745669693, -3.2112540676178725, -7.0, -3.655231838648391, -7.0, -7.0, -7.0, -3.417424239697793, -2.7983743766815614, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3084399050774618, -1.3735599382065473, -7.0, -3.5596672783880576, -3.474290282608044, -7.0, -7.0, -7.0, -3.3710678622717363, -7.0, -7.0, -2.4532205978433916, -3.578524605274993, -7.0, -7.0, -3.0613267969905547, -1.9749528248035986, -3.5190400386483445, -3.27630858685576, -7.0, -2.911157608739977, -7.0, -3.356750413762137, -3.5106790310322102, -3.243534101832062, -7.0, -7.0, -3.066325925362038, -2.411878599849826, -3.09968064110925, -7.0, -2.993656628615462, -7.0, -3.136351439310171, -3.4313637641589874, -2.6636189984922343, -3.247138226100887, -7.0, -3.0865970852460154, -2.649902510995987, -3.5691397254724593, -7.0, -7.0, -7.0, -2.7112044607530303, -2.7992026563005252, -3.710963118995276, -7.0, -7.0, -2.7557055070714362, -7.0, -3.6033609243483804, -2.6917759089147046, -7.0, -7.0, -3.903316655096336, -7.0, -3.689131197234498, -7.0, -7.0, -2.963916551690292, -7.0, -3.529558673021163, -7.0, -3.4308809464528913, -7.0, -2.912449813454987, -7.0, -3.1705550585212086, -7.0, -3.3558596798223332, -7.0, -3.6395196909414667, -7.0, -7.0, -7.0, -3.643945912748067, -3.7015679850559273, -3.809896246602439, -7.0, -3.9226476204660505, -3.264463634204881, -7.0, -7.0, -3.7790912038454993, -7.0, -3.0971705115554466, -2.4060076304200706, -2.4930776470451126, -3.1005018312376387, -3.549861188471943, -3.5216610151120733, -3.594060901270418, -3.3080305542661055, -3.5261291883290653, -7.0, -7.0, -3.6795187436957892, -3.7870351820262234, -3.0605719396477284, -7.0, -3.3982377085456186, -4.4729976570334395, -7.0, -3.2803962380601424, -7.0, -4.051028114111754, -7.0, -7.0, -3.823474229170301, -7.0, -7.0, -2.6983905586437853, -3.2701351427224816, -7.0, -3.488409688903198, -4.41418756673709, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7611103580716736, -2.7243304944020563, -3.11293997608408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.969509098596567, -7.0, -7.0, -7.0, -3.459102397252217, -7.0, -2.699693225955115, -7.0, -7.0, -7.0, -7.0, -3.0308020487722676, -2.100111959529749, -2.1745091280458064, -2.283890902225102, -2.0701900332571244, -1.400662867007511, -3.5435714239623652, -3.0161882247883973, -3.532117116248804, -3.184123354239671, -7.0, -2.3070203593531686, -1.9861128136696526, -7.0, -7.0, -3.19554385153028, -7.0, -3.637169394272538, -7.0, -7.0, -3.029301831194811, -7.0, -3.8678797834583794, -3.1110607820698206, -7.0, -7.0, -7.0, -2.8039445940719196, -3.1212314551496214, -7.0, -7.0, -7.0, -3.0141003215196207, -7.0, -3.7616271845615827, -2.4035018157410506, -7.0, -3.0324844498918937, -1.8304467756482372, -3.483587296968894, -2.2833012287035497, -3.547774705387823, -2.0407688481126254, -3.223625716693796, -2.940267391446012, -2.678732554599579, -3.2079035303860515, -7.0, -3.400624321661767, -7.0, -3.2894551656702844, -7.0, -7.0, -3.525563058270067, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1868353002613485, -3.5073160400764136, -7.0, -4.812065655625775, -7.0, -2.448448654823714, -3.068309574745689, -7.0, -7.0, -3.2016701796465816, -2.7721382666011203, -3.6343764940883676, -2.120059547061975, -3.17507672117621, -3.477555332198981, -1.6520756165766066, -3.0403385718205698, -3.0025979807199086, -2.2404105625136093, -1.331568783566107, -3.3868121789710552, -7.0, -7.0, -7.0, -7.0, -7.0, -3.076276255404218, -7.0, -3.261381837285746, -3.2684024402609575, -7.0, -3.9376683143990054, -7.0, -7.0, -7.0, -7.0, -2.91879769132346, -7.0, -3.787779170797312, -2.2595938788859486, -3.0884180065825073, -7.0, -7.0, -3.5237464668115646, -3.61714018800084, -3.1303873817883154, -3.2913318435509678, -3.113887669957648, -2.3730499983581987, -3.320457868916649, -7.0, -3.0242119239259035, -2.7024305364455254, -2.6957204091477363, -2.2421271437282835, -7.0, -2.7427251313046983, -2.6069185259482914, -2.00445572629165, -2.8549130223078554, -7.0, -7.0, -2.485957905922165, -3.2990712600274095, -3.7272158209084925, -7.0, -4.185910285040714, -3.7167960423664437, -7.0, -3.7387607453279568, -7.0, -3.5700757053216043, -3.5100085129402347, -3.6530194510996132, -4.065915668188592, -3.2863816107479344, -1.3722855490837138, -1.761551988564182, -7.0, -2.911867530405052, -3.991152209805438, -2.677172266985172, -7.0, -3.474798818800631, -7.0, -7.0, -3.5280807144913133, -7.0, -2.471780506250551, -3.714078164981856, -7.0, -2.972758083903539, -7.0, -3.278810741204461, -7.0, -3.287129620719111, -3.227758196110915, -7.0, -3.8723952147066427, -3.6530194510996132, -4.091414960840913, -7.0, -2.989598116961936, -3.7987927741252503, -3.33046450572258, -7.0, -7.0, -7.0, -3.1789050382803548, -3.4614985267830187, -7.0, -3.6729286904427223, -7.0, -7.0, -3.707229419327294, -2.5185139398778875, -2.951823035315912, -1.5055268065274119, -2.3957007311030742, -2.0021005820003483, -2.5759867517113815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.141439320940584, -3.690650079222292, -7.0, -7.0, -7.0, -7.0, -5.0089321523893044, -4.308809768641485, -7.0, -4.696871643812066, -4.458698268402751, -7.0, -7.0, -7.0, -5.392549232850399, -7.0, -4.563884341080175, -7.0, -7.0, -4.682271463859843, -7.0, -7.0, -4.491767779403694, -7.0, -4.700270937356437, -7.0, -4.259593878885949, -3.6555225962534177, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8771408897848207, -7.0, -3.820259857910027, -3.5347873586294916, -7.0, -7.0, -7.0, -3.8801447410266907, -1.7046012485275561, -1.7501619167867744, -3.1787036296790685, -3.695900837452605, -3.0124067613119134, -7.0, -3.7774413227977166, -7.0, -2.242486213183962, -7.0, -7.0, -7.0, -7.0, -3.3898227579994757, -4.093593967828657, -5.231514614715537, -3.519434194913703, -2.5284492142455366, -2.9274986816932005, -3.569654763999852, -7.0, -7.0, -3.4629367877312602, -4.280965148097093, -7.0, -3.258084440350568, -4.472024697700282, -3.624660176608305, -7.0, -3.800739983505454, -7.0, -2.9668454236549167, -4.045362102653348, -3.5630061870617937, -3.293040522188929, -4.013941466909771, -3.315550534421905, -3.3609796041735946, -7.0, -7.0, -3.5933263522096612, -3.8718063644587293, -7.0, -3.48826861549546, -7.0, -7.0, -7.0, -3.903496947335859, -2.4287645323832137, -2.759082706355693, -7.0, -7.0, -2.664659711634453, -7.0, -1.4575791469957626, -7.0, -3.066645337841675, -7.0, -2.8358507120379075, -2.7456602257060756, -3.5512059437479064, -3.675044735955893, -7.0, -3.369215857410143, -2.251029538523903, -7.0, -7.0, -7.0, -7.0, -3.5630061870617937, -7.0, -2.77232170672292, -7.0, -3.3309883935203723, -7.0, -7.0, -4.624024124647861, -4.062038134817108, -7.0, -7.0, -7.0, -1.7838157793202036, -3.578524605274993, -2.4363217001397333, -7.0, -2.8452014311543485, -2.3818883055109636, -7.0, -7.0, -7.0, -3.143014800254095, -3.8687032022785366, -7.0, -7.0, -3.591621038213319, -7.0, -2.870501444747579, -3.3103746420476123, -3.9601138720366857, -7.0, -2.6048018496313974, -2.286830571313662, -7.0, -4.219663100737022, -7.0, -7.0, -7.0, -2.1627697069974556, -2.6647563148321183, -3.4370367191134883, -3.3363262895451586, -3.623456048069934, -7.0, -7.0, -2.363235804483694, -7.0, -7.0, -2.8965262174895554, -2.9085824926714285, -7.0, -7.0, -3.0407506394093176, -3.0020412051534886, -1.8723549587518664, -2.733999286538387, -2.156012553918777, -3.1375914523814146, -7.0, -3.601951404133522, -2.676954760854566, -7.0, -3.3096301674258988, -3.5943925503754266, -2.7925317619013077, -7.0, -7.0, -7.0, -3.2712606104874364, -7.0, -3.4149852789740165, -7.0, -3.9314832970220768, -2.7305861876933264, -7.0, -2.9514184759183264, -7.0, -2.86123561863404, -7.0, -1.9781678314360502, -2.0731682622651015, -7.0, -2.8825245379548803, -2.941511432634403, -3.5870371177434555, -3.0394775730947807, -2.563955464995813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3029417866392774, -7.0, -3.5106790310322102, -3.529173603261723, -2.1256619582273957, -7.0, -3.400710636773231, -3.6265456590271294, -3.041025918107178, -3.320405953970451, -3.3737699294162615, -7.0, -3.00774777800074, -7.0, -7.0, -3.4778444763387584, -2.7753868598238993, -2.9591606876059813, -2.7782718709876417, -3.1715802019320636, -7.0, -3.409510452269316, -7.0, -7.0, -7.0, -3.1899112096928057, -3.5497999641845497, -2.7790808857337654, -3.5758803156806462, -7.0, -7.0, -7.0, -7.0, -2.830802448892219, -2.5630853728550487, -3.5190400386483445, -2.432969290874406, -7.0, -7.0, -3.6405324674013486, -3.829946695941636, -7.0, -7.0, -3.2368646223173876, -2.5253626759396286, -2.2242435278612027, -7.0, -7.0, -7.0, -7.0, -2.8363427353762822, -3.9677819080757994, -7.0, -3.0145205387579237, -2.938266579580553, -2.960787780819836, -3.367169488534681, -7.0, -2.7167186243047006, -2.8680563618230415, -7.0, -4.1761202110560856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.665393350279712, -7.0, -2.8862650590297565, -7.0, -3.942079395541365, -7.0, -7.0, -1.5525084428372955, -7.0, -2.5968169359155904, -7.0, -7.0, -7.0, -2.6161002486082365, -7.0, -2.8511792446573097, -2.8601382850306134, -1.613448351138622, -2.8115191516512503, -7.0, -3.4186326873540653, -3.1596674343147124, -7.0, -7.0, -7.0, -7.0, -2.1737003278314213, -2.9429995933660407, -3.8721562727482928, -7.0, -7.0, -2.265889361875121, -7.0, -7.0, -3.068853493671498, -7.0, -3.0271456657743414, -3.2379334435875635, -7.0, -3.584783378996508, -7.0, -7.0, -2.5416272402423585, -1.739127142481937, -7.0, -7.0, -3.6386888866901237, -3.41161970596323, -2.6695028341043434, -3.2279723558282107, -2.6269815818454347, -7.0, -3.216860907533353, -3.7016543173257483, -2.875459184314206, -7.0, -7.0, -7.0, -7.0, -3.600537294364469, -2.8872152874569856, -7.0, -3.894675979083117, -7.0, -7.0, -7.0, -4.040760524228698, -7.0, -2.034204961241296, -2.0154464784398023, -1.717161771854059, -2.1645257643673252, -3.0970836960665213, -7.0, -7.0, -7.0, -2.8428284227300984, -7.0, -7.0, -7.0, -7.0, -3.7681939616330715, -7.0, -4.216957207361097, -3.8119843841348438, -7.0, -7.0, -7.0, -3.7219277066970906, -2.857935264719429, -3.3386556655787003, -2.8452531174956057, -3.328583449714202, -3.4099331233312946, -2.497498788166523, -1.5708246487712936, -7.0, -3.3085644135612386, -3.191712937446059, -7.0, -7.0, -7.0, -3.330413773349191, -7.0, -4.088809166461293, -3.5398912045347903, -3.199288828082406, -3.329194415088451, -7.0, -7.0, -7.0, -7.0, -3.470704429722788, -3.635148513697608, -2.3009240572607474, -7.0, -3.36078268987328, -2.9378520932511556, -3.162528562308087, -3.0073209529227447, -7.0, -3.5423273827739745, -3.4869968884318223, -7.0, -2.1615106042661045, -7.0, -7.0, -7.0, -7.0, -3.959756672990995, -7.0, -7.0, -3.4632437577284456, -7.0, -7.0, -7.0, -3.4216039268698313, -7.0, -7.0, -7.0, -7.0, -3.3639878297484915, -3.536516357733869, -7.0, -7.0, -3.174077030963441, -7.0, -3.801609488027319, -2.955126283548938, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504742636271688, -3.164278483923325, -7.0, -7.0, -7.0, -4.021602716028243, -7.0, -4.071034675054152, -7.0, -2.34664631757689, -7.0, -3.385725405263276, -7.0, -2.7261836614188204, -3.06126394230025, -7.0, -3.8513195126487454, -7.0, -7.0, -2.215615535361617, -7.0, -3.638439335179549, -7.0, -7.0, -7.0, -3.3180633349627615, -7.0, -7.0, -7.0, -7.0, -3.988157472556753, -2.9526310252827455, -3.702171950857711, -4.538178131237722, -7.0, -7.0, -7.0, -3.4620983811351556, -7.0, -3.330413773349191, -7.0, -1.9481683617271317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.917899189424106, -3.719701654166844, -3.2979792441593623, -3.3068537486930083, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4164740791002206, -7.0, -3.2350231594952237, -3.103176333716908, -3.063386978864393, -7.0, -7.0, -7.0, -2.7326878976478954, -2.4768799129619077, -2.429788971125811, -7.0, -4.246933314148579, -2.9584045967789923, -3.0513454993365388, -7.0, -2.2809948266715914, -3.246806220166817, -2.7976747937505664, -2.787589268849698, -3.4509159516872203, -3.497067936398505, -3.4119562379304016, -7.0, -7.0, -3.646893624167745, -7.0, -7.0, -3.0572856444182146, -7.0, -7.0, -3.035829825252828, -7.0, -2.061640934061686, -3.098384109699789, -2.5631843347973486, -7.0, -7.0, -3.9906971299606298, -3.4947573623066033, -7.0, -3.620614868774087, -7.0, -3.4268364538035083, -7.0, -3.53832233323144, -4.025100961046813, -2.2581397562674157, -7.0, -7.0, -2.911867530405052, -7.0, -4.297896267232125, -1.9904375244419854, -7.0, -7.0, -7.0, -2.8178657323090817, -2.304967275955679, -7.0, -7.0, -2.916453948549925, -7.0, -2.4142568872937775, -2.771035995750765, -3.3397163761823725, -7.0, -3.4520932490177314, -2.756027212973441, -7.0, -3.7200943020887176, -3.372476821350871, -4.3446944522897075, -7.0, -3.412460547429961, -4.246921016356379, -2.972492117335942, -7.0, -7.0, -7.0, -2.9200363194824788, -3.5820633629117085, -3.055187138555754, -7.0, -3.0130479961152314, -7.0, -2.4285667129921897, -7.0, -7.0, -2.8167382992623913, -7.0, -7.0, -2.4917935477231654, -7.0, -7.0, -3.532648233450749, -3.937990472741036, -7.0, -7.0, -4.725544122486353, -3.9235721204036174, -7.0, -4.130387381788316, -3.096046169288955, -4.042654253167793, -3.741624257503812, -7.0, -4.7315404180265235, -5.004467547322978, -3.3677833169346525, -3.660542956258607, -4.386614880845291, -3.889057104194969, -4.089905111439398, -4.343920385393226, -7.0, -5.08967554556239, -7.0, -3.0592335136550552, -3.8536069638544386, -7.0, -4.672744198306599, -4.227526784937202, -7.0, -3.387161939946565, -7.0, -4.3900868754237665, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6974618344579375, -4.226367875856486, -2.7041198625619036, -7.0, -3.2860340960543226, -4.3728310252634595, -7.0, -7.0, -3.5137501500818233, -2.87989832433001, -3.393933520699538, -7.0, -7.0, -7.0, -2.547587547806455, -3.6149850498855733, -7.0, -3.1180692300331043, -2.9575540809979275, -7.0, -3.2879695948354546, -4.400607056580689, -7.0, -7.0, -4.396338857049362, -3.65109673914952, -5.230626860502488, -7.0, -3.3305490465108214, -7.0, -3.9628237572821168, -7.0, -4.709030693820238, -3.4305265386806405, -7.0, -7.0, -4.051731196059849, -4.456457134303779, -4.793713573408255, -7.0, -2.4112047787845436, -3.899327949877654, -3.2159557219790544, -3.5084623812733606, -7.0, -3.2346875960305317, -4.486213159170506, -7.0, -5.049528122277718, -7.0, -2.7353593330017105, -3.301649973616383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2119912370348325, -3.1046009052294363, -2.3185589412002856, -7.0, -7.0, -2.424231786918459, -7.0, -3.5509617522981762, -7.0, -3.1535709814337802, -7.0, -3.302256501206462, -3.1502189941321563, -7.0, -3.5667909123815917, -3.696705780933917, -3.083263668252353, -3.4886916983169405, -7.0, -7.0, -7.0, -7.0, -3.4169731726030363, -2.3175410324561483, -3.2121876044039577, -7.0, -2.7702995911963613, -7.0, -7.0, -3.709873905727599, -3.953694125087313, -4.196604462943301, -7.0, -7.0, -1.696804163033507, -3.4385423487861106, -2.6055988523188973, -7.0, -3.500648063371912, -2.4387005329007363, -7.0, -7.0, -7.0, -2.716003343634799, -3.103050747435957, -7.0, -7.0, -2.60959440922522, -7.0, -2.7544757508452475, -2.633351902960404, -3.633392699935256, -7.0, -2.2490235558263048, -2.7787841351367035, -7.0, -3.287941621856674, -7.0, -7.0, -7.0, -3.2637543888400056, -2.6636289016346657, -3.345079526314867, -7.0, -7.0, -7.0, -7.0, -7.0, -3.873436863222037, -3.370142847051102, -3.089905111439398, -2.552225622971311, -7.0, -7.0, -2.8092790719877616, -2.4199854117249155, -2.6069185259482914, -7.0, -2.1353656392669924, -7.0, -3.543012046377035, -7.0, -2.6113692154627337, -3.7877437716464666, -3.1812717715594614, -3.4602963267574753, -7.0, -7.0, -7.0, -7.0, -2.827207675105206, -7.0, -2.8150978852636968, -7.0, -3.3017080511989114, -2.7374656084886224, -2.744150684798368, -2.555195248040743, -7.0, -2.8217754671834636, -7.0, -2.818738940905639, -1.8388490907372554, -7.0, -7.0, -7.0, -2.6705550695214364, -2.915152406858784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.294135419126248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2997251539756367, -7.0, -3.458214677865592, -3.8649261915390056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.740901932571898, -7.0, -3.4094258686714434, -7.0, -7.0, -3.6120417446452695, -7.0, -7.0, -7.0, -7.0, -3.781827152932428, -3.5020172148271476, -7.0, -7.0, -5.129438521472354, -5.527199259073056, -7.0, -7.0, -5.129373399173946, -5.528025997792825, -4.714903366650505, -4.983247297962127, -4.506289796825186, -1.6382611162285612, -3.5615264639255204, -5.828223449760503, -5.527316631951896, -2.49895398466317, -2.814993463420426, -5.129809725477716, -5.527535815021379, -5.527175393673305, -4.925219884397581, -4.874004804728517, -2.339534093100576, -3.5083401254993674, -7.0, -3.521036115641491, -1.7846605609911599, -4.652587967664366, -4.68228435847426, -5.351095099964148, -4.157128056609563, -4.573540076446994, -4.573181149242739, -2.684179751046336, -4.749501846606125, -5.129323744920132, -5.82830793676512, -4.787079019289936, -4.448994723423251, -4.714425843380274, -3.4030555820599213, -5.351118964761353, -4.105069722166873, -4.120819652228079, -2.262528475475419, -4.749148615956129, -5.050357196597368, -3.5572497926300244, -7.0, -3.657385079468079, -7.0, -5.050532486589045, -4.051770389384332, -4.205497585194046, -3.899546931090867, -2.2303568408142413, -3.825285334408372, -3.367338047406574, -3.4319465336406454, -4.3970931134746, -4.486168264379942, -3.8042809110003937, -4.714686258542472, -4.8286850256076965, -5.129729196004417, -7.0, -4.749387787092975, -4.097860559476264, -2.9839560114981873, -4.597859015386846, -5.351151212403978, -3.757536918719722, -5.527203129014305, -3.6820201893903968, -4.274356727020315, -5.050149592684926, -4.1483731861540445, -2.463913596053034, -5.050132180393049, -3.5886329050659698, -7.0, -5.527368859133329, -3.415799423707435, -4.058344300223194, -5.2263730334113, -5.8282053893372865, -3.997136370807289, -5.129615785186403, -3.843053522128569, -3.7926306849084326, -4.285009192878731, -4.23792185409128, -1.5039869121961962, -3.359967894486308, -2.5708190525174435, -4.466519478150249, -5.050044463417963, -3.3041772464037416, -3.293359332906441, -3.6503261821381465, -3.800891726851627, -4.138098959020332, -2.893350008215764, -4.749430965686463, -7.0, -5.82822215975518, -3.3802947028480497, -5.226193772454605, -4.121848106698777, -4.527846349811276, -3.645803568986553, -2.8990008330467725, -5.050383623514781, -4.786991985099959, -4.104443303441471, -4.381683534970911, -2.884108866405466, -4.175406142156769, -5.8282144196427765, -4.625196657969116, -4.626059859121137, -3.8960947079078343, -4.506441246154753, -3.3993622898984075, -2.0152377132669415, -5.351411685556406, -4.0764430531995455, -5.351440688987847, -2.269274041462733, -4.5734962735793205, -3.8339779430518304, -3.7440280025510053, -7.0, -4.874331679579926, -2.9860317915675694, -4.089425292927653, -7.0, -7.0, -3.1396892221500754, -7.0, -7.0, -5.22616603843169, -4.573012860406959, -4.351064783330702, -3.287801729930226, -3.9228010399359112, -2.8919539577451547, -3.3897879863363913, -4.096132734983064, -3.0854568236758046, -5.828247959133625, -5.527343068717591, -4.32364327898043, -3.449312025702321, -3.5035969724042277, -7.0, -5.527375951229165, -5.5275751273418345, -2.8636909903067953, -5.527208933861522, -5.828198293965532, -4.058247755724938, -4.20560386927874, -5.5272792308517, -4.175647730582203, -4.486576657494575, -4.176281663483603, -4.715515452064854, -4.486683523512511, -3.993846273099567, -4.652927394343718, -5.0503507507638075, -1.9510573428129632, -4.874196962157325, -7.0, -7.0, -5.129654451292561, -5.527388845652158, -4.983273090024392, -5.226182808052582, -3.1083633119106744, -4.787012617003722, -3.196077533373247, -7.0, -2.666290997651076, -1.7568754896405432, -3.899142373493561, -3.1583034527805256, -3.2959539958685107, -4.185402415387617, -3.884866136291988, -3.055168111394058, -3.965719614031156, -4.652704574860998, -4.874735581294349, -3.7623553334556568, -5.050330123453494, -3.901390362407254, -7.0, -2.350963862547327, -4.573919945394144, -3.065182963862193, -5.351217635001813, -3.5611432676414223, -5.828217644706376, -3.917702074031228, -5.22646650347807, -4.652883612256533, -5.351289849988622, -7.0, -4.067993823502085, -4.715418965908037, -7.0, -3.875141037569342, -2.4696548471781123, -2.9377560847436563, -7.0, -5.527187649042395, -4.828405302161947, -5.226204736579822, -5.828336310392704, -5.351349160460369, -5.527256659663878, -5.828531006645101, -2.932890707465984, -3.8760413405134386, -3.283476066983985, -1.7693400963998285, -5.351065428387491, -4.828429801274681, -4.598051146000453, -4.138537910876411, -7.0, -5.828307291888404, -4.984208949801015, -4.3976349303069115, -4.550237367228034, -5.828185392992617, -7.0, -4.652199265701975, -5.2263156521641045, -7.0, -5.52726375359217, -4.715106847213561, -1.9981567084168663, -5.82820796944373, -5.129259250401018, -7.0, -5.050211497402782, -4.787200193408041, -4.549785784697617, -5.828197648925988, -4.38141680215756, -3.9736114170892827, -4.27279597919482, -3.4353095378288203, -3.2339410683150467, -3.42909119203056, -7.0, -4.925106371852082, -2.946334290791815, -3.6860682305506227, -2.374530376424795, -4.874370346718868, -2.4601914044246, -4.466931416163418, -4.682235356902564, -5.129432718891559, -4.135195643370445, -3.127535862467454, -3.1359305235761137, -3.7072588938204274, -3.51824553732899, -3.9480421436568234, -4.430621290535816, -7.0, -4.983757051859547, -4.22767464518811, -4.875414988878726, -7.0, -4.624260819011183, -5.226809913771843, -5.2263150073879165, -4.829018653399399, -7.0, -3.76473832263842, -3.3691144374820716, -4.44858201558873, -4.249861686896716, -4.787563513038879, -1.864621258181625, -3.556247604109366, -5.050171518281678, -3.0730827979450512, -5.527253435112711, -5.129675071808323, -4.62628453692498, -3.9539973051231425, -2.784639018187803, -3.639464639040942, -3.9684452044268173, -4.381987436429171, -3.991152209805438, -4.297896267232125, -7.0, -3.153570725719448, -7.0, -7.0, -7.0, -3.57128831854305, -3.512271225992589, -4.925350773964699, -5.351437466480003, -4.41458513624822, -5.8283866045408, -4.431315506535525, -4.573159230252996, -4.038680399901154, -5.050438405904311, -4.624614008249, -3.817641733880986, -3.203772330591677, -2.5667280718764567, -3.063053305570029, -1.807119893883509, -4.5275474157483435, -3.537198825007745, -2.644079518156686, -4.012137752982696, -7.0, -4.714740384665852, -7.0, -3.8855539571233466, -4.018845751189305, -4.218481706596672, -4.550512853119367, -5.527226347937657, -7.0, -4.216703246192243, -5.828393696836685, -5.050408759822028, -4.6824777317622015, -4.024511963680228, -4.787028090288343, -2.7382119030151055, -7.0, -7.0, -2.3993947761729593, -2.116939526080235, -2.690355650541242, -3.3516858977234523, -2.649097674518334, -2.2653463590536993, -2.272585387686152, -1.6550186730179992, -2.0934010582009397, -2.836668309629515, -3.5514827421828254, -2.45081748723977, -2.453093451791766, -2.2896490591165537, -2.4260327392136625, -2.8235708713982426, -1.8954910820060986, -2.004684482079553, -3.3780820118041603, -2.9456789335701417, -3.880838632192856, -1.6788487007501018, -2.2950577654310025, -2.1617231590741603, -2.6689652196894014, -3.284762751307711, -2.6308337889825735, -2.7801343698768295, -3.683048969004335, -2.1133843004353485, -3.3958655545065732, -2.322504808736829, -2.793026934015807, -3.153316096131449, -3.824720456582034, -3.09778853040459, -3.146401062863181, -2.580415991076328, -2.6694011842990233, -2.3856381651674483, -5.129713732636669, -2.227424714159795, -1.8738303081546903, -3.1195531811384214, -2.8083010194685842, -2.937921285521538, -3.5886045866476044, -1.3471535638118464, -3.817061044059383, -4.139673515374664, -2.6237566562009254, -2.300605695144895, -2.5071985596277795, -4.749768512958104, -2.6022769596369226, -2.9602453639496735, -5.226240851740608, -3.398607443661825, -3.1824152768205396, -3.8765533138467743, -5.129719531464096, -2.220587807932981, -1.2835321333668661, -1.5451646690906655, -5.527355319356032, -3.944474339974218, -4.925341748364358, -2.5073619679009456, -4.124151183547985, -2.4203060853745657, -2.7775910217147204, -3.7111774515498808, -5.351127349378787, -2.521009015556184, -2.818836872130782, -2.6003021925239067, -3.943918286779118, -2.7231186834574888, -2.7740444161690005, -2.0240841674513033, -1.3745518607680296, -5.351487734879554, -2.2679092957043285, -2.506490145776442, -3.1036590691700097, -2.052100755959316, -5.351333044285805, -3.719685794237588, -2.3591801406581605, -2.503720650468077, -4.874074455499286, -5.8282389295255035, -5.828189263324731, -7.0, -3.222200535388768, -2.116145767991693, -4.285278190754191, -2.830781771889899, -4.7143903787417765, -4.009525576799297, -3.0930099610151447, -3.239042654578873, -4.683074711723954, -5.527332752122445, -3.621791538802892, -5.8282744019060555, -2.471170466488659, -3.716461809044155, -4.682403615511475, -4.467548269765181, -2.664337629065647, -4.2610241904782855, -3.7373151443998833, -4.072762487893174, -4.008886510427643, -3.5667211474848406, -4.787129297761864, -4.486161819770721, -4.874836658990174, -4.023818757084455, -7.0, -3.5694566075340854, -5.527239246803147, -7.0, -2.5894363731585797, -1.657708358382131, -1.7272055849648744, -5.527177328754575, -4.044297447111979, -3.6264398375610822, -4.71473845170617, -4.00363862217658, -7.0, -4.448728214389335, -2.9478744658331997, -7.0, -4.87408477318204, -4.449235985453029, -4.28483341767671, -2.9384760476656964, -4.573208868733832, -3.977691410286653, -4.397374736429878, -4.8285490535326625, -4.3105761718588536, -2.6871515323369826, -2.7468102160993535, -5.226193127497442, -3.7808012637673216, -3.949122824379861, -3.8895966069886656, -2.732826796502639, -4.624363325033174, -4.925238585322531, -3.4176715797939443, -4.32410489341645, -1.7654434528074723, -3.838430136872837, -3.267687879865739, -4.397566032746728, -4.272197566611441, -3.188436925219375, -5.226440720641296, -3.5392265670071406, -4.925340458977568, -4.1858002648308315, -3.4643456035121996, -3.879378127844931, -5.226146688064462, -3.5241600544162317, -2.156405666626288, -4.325400198749759, -4.431437748768506, -3.388635223628259, -4.3383960814697495, -4.600951125994174, -4.652723254872325, -3.2990928815880203, -3.013794686966823, -4.573591603576932, -4.652678808009644, -5.828258923405385, -5.82820796944373, -2.8875728691520535, -3.5484961800176205, -4.215828355014351, -2.9919093037691393, -2.4006578648786436, -3.7722354673339833, -2.588199629329094, -2.9443634251545596, -3.8962608225275375, -3.98453117086462, -5.129544888382884, -4.486621080900413, -5.226146043037373, -3.949844352716353, -4.1065590646715435, -3.5755387065320834, -7.0, -4.397679353778606, -4.624606277253296, -2.9456071083058015, -4.828616722682745, -5.527408186568847, -7.0, -5.527190874082044, -5.527266333173729, -5.527230862584156, -4.682187639532793, -3.0769191490994303, -4.249182904087916, -5.227148547975863, -5.351353028253276, -4.652435235750351, -4.983238270378447, -4.828423354273742, -5.226548998271254, -5.05034688321775, -3.899971697328381, -4.297461182997396, -3.402811300216939, -3.6383164263566528, -4.600354596150628, -4.5275164797878, -7.0, -4.114053839214257, -4.787099647059502, -7.0, -2.9464497931401237, -4.828594167470897, -4.682437775007122, -4.122449110339567, -3.7256898131853, -4.3243750674682415, -4.983184100935266, -5.527294707559675, -4.382181127004978, -5.129277309831823, -3.6157691968961876, -4.413969971748061, -4.1126133790479455, -5.828186038050364, -3.268168287683832, -7.0, -7.0, -3.854548935812951, -3.0858849323421316, -7.0, -3.00566303219259, -3.865044721693099, -3.58029758843657, -2.735142095153427, -3.4724638966069894, -7.0, -3.563421751494202, -2.4493709766959877, -2.7164586585273547, -2.319215674272979, -7.0, -7.0, -7.0, -3.85618492672717, -2.3045982263436375, -3.3800000750090593, -7.0, -2.7518177877368792, -2.1789433545523966, -2.9404611431699053, -2.791515211941625, -3.852540985769799, -2.2394496414571745, -2.701460045579318, -2.9722607095873457, -3.2220495643794016, -3.5944478006117335, -3.5588884895367348, -7.0, -3.8769679674325848, -3.6383394744106785, -3.390581878550435, -2.8738122644316864, -7.0, -1.9614210940664483, -3.874249822778403, -3.156959760868904, -2.3160902169680027, -3.1802406009557402, -2.466818209752554, -3.9020028913507296, -2.407529236843904, -3.3950350180286306, -3.4176377396522297, -7.0, -2.579892428714085, -3.324385356490427, -1.9280928192079896, -2.370975449358971, -1.2968601159748139, -2.879568085413838, -3.8774865280696016, -2.682934395395032, -2.1994483637600335, -7.0, -2.8945375849957466, -2.9410695150364625, -7.0, -1.8318116241188156, -3.539327063539375, -2.985950126092585, -3.8627870982353443, -7.0, -2.2881826065009245, -7.0, -3.4805099729419604, -2.5331919553337, -3.5596672783880576, -3.369957607346053, -2.952590661466377, -7.0, -2.649529565947819, -7.0, -3.869349080759093, -2.3034737689179003, -2.420505836570779, -3.0939467238905833, -7.0, -1.9012139819931881, -2.8438554226231614, -1.3586094419154815, -2.8933348950274076, -2.2353738295148626, -7.0, -2.2391789040947567, -3.102733766037084, -2.2660731213094354, -3.1584228065848823, -7.0, -2.969788537414939, -3.4510184521554574, -3.4819201376014313, -2.5729960002961136, -3.388041964786424, -3.03882923882737, -3.8894697839695076, -7.0, -3.852845818014997, -2.322001548686789, -3.85618492672717, -1.6880119449868285, -2.632030833840008, -1.6365873550034469, -1.2851797576480062, -3.4046627008737222, -7.0, -3.1244498802828877, -3.211280767964129, -2.781755374652469, -7.0, -7.0, -3.646060468555641, -3.1048284036536553, -2.677210083021027, -3.894648303793517, -3.2199873220898207, -2.938526579084941, -7.0, -3.8330195470765314, -7.0, -3.4781251750032975, -2.5029730590656314, -2.6325493134758626, -2.9885589568786157, -3.860278099752235, -3.584670384464349, -2.2874394473246853, -1.862999913128008, -7.0, -2.7067787231187155, -3.301015518939971, -7.0, -7.0, -7.0, -7.0, -7.0, -2.960570908834968, -2.903993825990188, -2.4260731174384857, -3.3623316518700257, -7.0, -4.154271775993095, -7.0, -3.866995813110648, -2.7294887691795613, -7.0, -2.4336555609385724, -7.0, -7.0, -2.6819192929105173, -2.1512181701868327, -7.0, -7.0, -3.9347004017154252, -3.611988688083979, -7.0, -2.043012181684635, -3.6217992240026677, -3.3609245929890346, -2.8102325179950842, -3.329092647195331, -2.8298549080343087, -2.746218904158715, -3.401745082237063, -2.5675038156414707, -2.455957010377878, -3.375846436309156, -7.0, -3.1110383616634296, -3.3938091036290334, -3.021602716028242, -7.0, -2.552407456883763, -3.5698418994037615, -3.632727166036443, -7.0, -2.583674032087918, -2.181516116372709, -7.0, -3.5815704280995675, -2.8755986287355393, -3.9134959596171237, -3.6554745946527163, -2.2716832301358245, -3.454285758836911, -3.303088010528054, -2.8395304193346966, -2.737391449978478, -3.2748503200166645, -3.1501037406089263, -7.0, -2.6007216405557, -3.636688447953283, -3.3779736964389593, -7.0, -2.675848815423839, -7.0, -3.792811771248147, -7.0, -3.4428976613092526, -3.870579460552685, -7.0, -2.830553028417437, -3.2510051734936347, -7.0, -1.9156245368287141, -3.8663168819216542, -2.8841342653384863, -7.0, -3.852540985769799, -7.0, -3.5560611590095323, -7.0, -3.5747833931757764, -3.859018143888894, -3.579954994822772, -3.472493160747825, -2.621591675859218, -3.050057364084302, -3.6179849703409226, -3.8497264441963277, -7.0, -3.579040088400086, -7.0, -7.0, -7.0, -7.0, -2.473434830742589, -3.620812485741877, -3.849357981661299, -7.0, -3.258517559916453, -3.2650537885040145, -3.85101360682367, -3.8596785766284483, -2.492035701999729, -3.302017584888769, -3.8515029527705447, -3.552850654460561, -7.0, -7.0, -7.0, -3.582744965691277, -7.0, -3.1885910365939902, -3.4584489842773354, -2.6293076400737485, -3.0629919861296586, -2.758385235390091, -7.0, -7.0, -3.8512583487190755, -2.3764969160525986, -3.339053735709139, -2.631902814634904, -3.588047496986083, -3.441620334661906, -3.894758994371892, -7.0, -7.0, -2.624467211464796, -2.8542345765249766, -2.403424968774618, -1.4415129606146837, -3.0186684981886174, -3.138250053220232, -3.1870692712304236, -3.3829770749788555, -3.6084190513172856, -2.7482336437786707, -2.5067848613333052, -7.0, -2.4036529261103188, -2.830107278114626, -3.867408556522791, -3.4459154139511234, -3.8521138608497614, -1.9998002784596196, -2.357588381499906, -2.3977228071261734, -3.973589623427257, -3.315917891264946, -2.916254966106324, -2.6823557017545716, -7.0, -3.335407748315415, -7.0, -7.0, -2.6061332204613037, -3.455758203104137, -2.964924833439139, -2.4733763640581374, -3.203304916138483, -3.9351544472161684, -2.677172266985172, -1.9904375244419854, -3.153570725719448, -7.0, -3.852723910791206, -7.0, -7.0, -3.0502742724374596, -1.9345395056919514, -2.4909528910913434, -3.5826314394896364, -3.0624409566309168, -2.964200682862941, -1.9902177295652563, -3.874191804679071, -2.618309641123432, -3.886829004676982, -2.9965116721541785, -1.0512233063252827, -3.886829004676982, -3.573164571957485, -2.368117767111091, -3.5566981259337616, -3.887335930399167, -1.860008936540448, -3.568252584406445, -2.2646442371397235, -7.0, -3.594613509160098, -3.8646297245455123, -2.147828673906813, -2.8035253955765325, -2.420615770625765, -2.9886084971150124, -7.0, -7.0, -1.3043739542975754, -7.0, -2.803798407989674, -2.544349962232232, -2.439885080817301, -3.571242850560224, -1.7858189578834474, -7.0, -3.853393977450666, -3.516856325339205, -4.040114242745428, -3.92620520709792, -4.036668810300097, -4.0664377464539925, -2.7236860593523637, -4.152930136422725, -2.604006106298812, -2.952160466096275, -4.208172526667122, -7.0, -3.3487752561911313, -3.691597150121523, -3.9844536631926446, -3.537092242214232, -3.8451445690733057, -3.65168981681185, -3.557709264235409, -4.2409982862153175, -4.434473093213079, -7.0, -3.7560549085593125, -3.56062387454993, -2.9855547737831674, -3.509359359920102, -4.146918352521449, -3.6760115020411783, -3.6433737066738225, -7.0, -3.1037511078985416, -7.0, -3.271344802890412, -4.442824559187638, -4.046339055604809, -3.9343974407809883, -3.7964124254316354, -4.152288344383057, -3.2886714373796004, -3.864412186720744, -2.5697669818215867, -3.417527049073855, -3.0283353358183884, -2.879619688796236, -2.952004964166678, -2.9689108057647475, -3.123976018280717, -3.171628957978357, -2.5621022515114826, -3.040602340114073, -3.388056774739942, -3.388748048895302, -2.467792474575587, -3.168338191237685, -7.0, -2.4721017822730618, -2.7799242854328723, -3.8605775512444156, -2.7283876042619606, -3.7027463765507442, -4.0533089811241, -7.0, -2.4769710404510628, -2.603575145913418, -3.757693723849235, -7.0, -2.759894374025499, -7.0, -3.159800554607567, -7.0, -3.7932297824775407, -2.4742632732749703, -3.519621762715661, -7.0, -3.2371036915866878, -3.2970778706412265, -2.7473405850027395, -3.551165254706615, -2.3249870307193867, -2.6824793547784997, -2.628160093047439, -2.6569508479447186, -3.888179493918325, -2.403764919833581, -3.481460544571774, -2.8066886148562817, -3.306863228890472, -7.0, -2.846955325019824, -2.6855663052536576, -3.819609732751585, -7.0, -7.0, -7.0, -7.0, -7.0, -2.611047062431195, -2.773835184612231, -1.659812892549702, -7.0, -3.455707512181184, -2.64249495859943, -3.6577727077355213, -2.8958242057044803, -3.866050924009275, -2.654818040490762, -3.8577545220594422, -2.871478775477452, -2.3660979777088698, -7.0, -7.0, -7.0, -3.4649860542696933, -2.8471097408372383, -7.0, -3.578467291585447, -3.4029831731411804, -3.881441721941393, -3.888179493918325, -2.8855668032220505, -2.6562724774894497, -7.0, -2.885438325132807, -7.0, -7.0, -4.664162294761991, -3.1298127670406317, -3.3699192720233055, -7.0, -7.0, -1.9887152789244085, -7.0, -2.5473644129795048, -7.0, -2.8379565067088195, -2.2408364563492156, -7.0, -7.0, -7.0, -2.801139749344364, -3.457086728098236, -7.0, -3.145351816558461, -2.644821396440092, -7.0, -2.674299673973244, -2.529638852931278, -3.8715145587083817, -7.0, -2.285643847711239, -2.5176796445749416, -3.9387698227831174, -3.411682825574111, -7.0, -7.0, -7.0, -3.098347009010774, -2.3008443764220465, -2.699472580721697, -3.5474465024763755, -7.0, -7.0, -7.0, -7.0, -3.7989267385772014, -7.0, -2.7676010680503356, -2.2520435349731076, -7.0, -7.0, -2.2415396580206215, -1.9061656116739139, -2.953638903390939, -7.0, -2.5696664623252685, -7.0, -3.48061768932015, -7.0, -2.5860368997013805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0469408803270346, -3.977586438003851, -2.8580965785556107, -3.943346098356591, -3.32508443875409, -2.888252317609033, -7.0, -2.3589093822301255, -7.0, -2.8461824213064766, -7.0, -2.579270968576654, -2.49380646215058, -7.0, -7.0, -3.2275782202995997, -3.598571663482141, -2.6270750853803926, -7.0, -7.0, -7.0, -3.852845818014997, -7.0, -7.0, -7.0, -3.5116160205691376, -7.0, -3.335307426189327, -7.0, -7.0, -3.2617979705560107, -3.3951515915045425, -3.8882918453565156, -3.8787515201730023, -2.7538701957509053, -3.2200034261569357, -2.841381819328237, -3.492725476491596, -7.0, -3.8846254632562345, -7.0, -7.0, -3.577664104732127, -7.0, -3.089665858974108, -3.2852759390712047, -3.885643871835764, -3.1551624585331335, -7.0, -3.361963801512071, -3.558048229082988, -7.0, -3.1043895499322467, -7.0, -3.445720933413234, -2.9637353731535834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.690373306916059, -7.0, -7.0, -3.7106532004443227, -4.204499824171151, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3331045403985895, -7.0, -7.0, -3.3378584290410944, -4.270508810924844, -2.9479236198317262, -2.673020907128896, -7.0, -2.777185077611623, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8226038992559745, -7.0, -3.6931645641885575, -7.0, -2.478566495593843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8654647044874704, -7.0, -3.1894903136993675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9532763366673045, -7.0, -7.0, -7.0, -3.04766419460156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.647373188597217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.50745106090197, -7.0, -7.0, -3.974327435423617, -7.0, -7.0, -2.367355921026019, -7.0, -7.0, -7.0, -3.3279716236230104, -7.0, -7.0, -3.8399491678129896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1230890516896657, -7.0, -7.0, -7.0, -7.0, -7.0, -4.078764847613001, -7.0, -7.0, -3.273926780100526, -7.0, -3.12515582958053, -7.0, -7.0, -4.752302032494887, -7.0, -7.0, -7.0, -7.0, -7.0, -3.398981066658131, -3.574956775764507, -7.0, -7.0, -4.2934951434720245, -3.429752280002408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.017492446477275, -7.0, -3.446381812222442, -7.0, -7.0, -7.0, -7.0, -7.0, -3.040602340114073, -7.0, -7.0, -7.0, -7.0, -2.8727388274726686, -7.0, -7.0, -7.0, -7.0, -2.781396305196791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752942250937937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.653947297156863, -7.0, -7.0, -3.5518158223510157, -7.0, -3.3165993020938607, -7.0, -7.0, -7.0, -7.0, -3.6006462356623947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.548020694905531, -4.122445256281956, -5.110667135746672, -7.0, -7.0, -7.0, -7.0, -2.2174839442139063, -2.4502491083193614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.760497875226527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.053219342138294, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9789105771755717, -7.0, -3.946599625015133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6788824146707357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9132839017604186, -7.0, -7.0, -7.0, -5.1309799038310295, -7.0, -7.0, -3.9782033499061584, -7.0, -7.0, -3.251638220448212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.852723910791206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.255754786643044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9047515997788804, -5.875137113537153, -7.0, -7.0, -4.540291926094344, -7.0, -7.0, -7.0, -1.9294189257142926, -7.0, -3.159717546180216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.577537754493837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.22698634552522, -7.0, -7.0, -7.0, -7.0, -7.0, -4.470968804605796, -7.0, -4.674383429621003, -7.0, -7.0, -7.0, -7.0, -7.0, -4.146840934035067, -7.0, -7.0, -2.941511432634403, -7.0, -5.064936946520462, -3.8680563618230415, -7.0, -7.0, -7.0, -5.234701996540841, -7.0, -7.0, -4.436433002660097, -4.961254938713763, -4.376686429261915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.186485924542031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.780540523905541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6410227253507275, -7.0, -7.0, -5.346947277194261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163340305618251, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4823017672234426, -7.0, -7.0, -7.0, -7.0, -7.0, -5.0934532053920565, -4.308535957626102, -7.0, -7.0, -3.920905604164024, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.647748640757452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7707783961691477, -4.326294887818489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1664301138432824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3896090160519865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8669368177316397, -7.0, -7.0, -5.57150619140403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.863852019929494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9284829072832395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.412418543998244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.537453882426875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.352805524894097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4583356259919475, -7.0, -3.474798818800631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6074550232146683, -7.0, -4.498186451922232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.234534999126725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.640695053335942, -7.0, -7.0, -5.346818320038284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2127201544178425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.346605261465181, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1492191126553797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.604334073102911, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.680335513414563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2028968085295295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.566201718854913, -1.5563025007672873, -7.0, -5.094388431285613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8638936119037135, -7.0, -7.0, -7.0, -7.0, -3.2211533219547053, -2.5352941200427703, -7.0, -7.0, -7.0, -7.0, -5.140306875999945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.144371801014283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.229535944004162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.543322900646912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.371935583802963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292189592623499, -7.0, -7.0, -7.0, -4.36157675079015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1319392952104246, -7.0, -5.4518340058126755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.507697847619095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1784013415337555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.061829307294699, -7.0, -7.0, -7.0, -3.1095785469043866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.120508124026104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.12057393120585, -7.0, -7.0, -7.0, -2.525044807036845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.792041310712082, -7.0, -7.0, -7.0, -4.307880955988253, -7.0, -7.0, -2.8530895298518657, -4.708080810468232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.401055725771844, -3.368472838440362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.277929946646919, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6473829701146196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.524396122103842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.017183645990936, -7.0, -7.0, -2.6175245348862926, -7.0, -3.4891143693789193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6082050077043264, -7.0, -4.197225406118192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6749070468191296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941769746107795, -7.0, -7.0, -5.346831999127804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.214578953570499, -7.0, -7.0, -7.0, -4.794669255342644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.09324653110384, -7.0, -7.0, -7.0, -3.917820481993697, -7.0, -7.0, -7.0, -7.0, -4.241621180791424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.64763330197941, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024619055253279, -3.2753113545418118, -7.0, -3.996402209146188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3827372657613304, -7.0, -7.0, -7.0, -7.0, -3.3279716236230104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.383815365980431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.747567162737625, -3.825555932290357, -3.3280396468797715, -3.7481104674949837, -2.3858296186697827, -3.3424779511482297, -3.7052648623174043, -7.0, -3.747489492258673, -1.573212741349853, -2.7131420990517308, -3.797198269838959, -7.0, -7.0, -7.0, -7.0, -2.4610448259425755, -3.625621081424908, -7.0, -2.6186391901671824, -3.0145205387579237, -3.1851878890039917, -7.0, -7.0, -2.9439888750737717, -3.0236639181977933, -7.0, -3.532349964092412, -7.0, -3.4403579968152878, -7.0, -3.7636525705645303, -7.0, -7.0, -2.8614801002878543, -3.7346398389876994, -3.5588285248170117, -3.2826976226551636, -3.164859459679298, -7.0, -3.7671558660821804, -3.2498706873123053, -3.494711025205263, -3.493225621510431, -2.8535461212539044, -3.7868933252613157, -7.0, -7.0, -3.3498600821923312, -2.8503119910809573, -3.28668096935493, -2.5549263974668683, -3.203071758751761, -3.4631461367263494, -3.079325986752815, -3.1091846800155234, -3.7818989193511494, -7.0, -7.0, -7.0, -3.7749546890801384, -3.937517892017347, -3.178087052906914, -7.0, -3.7386220279179425, -3.39701252410831, -7.0, -2.7839876064533984, -2.924044214618035, -7.0, -3.406426624548381, -3.0723693163406582, -7.0, -2.7787540186718043, -7.0, -7.0, -3.6191977157929474, -3.8465845028980463, -7.0, -7.0, -3.110028243534681, -3.4746532533620624, -3.9073038488339695, -1.2245175585181478, -3.2294898606677935, -7.0, -2.3325587394963927, -2.491206004826725, -2.956987188395434, -7.0, -3.72956972630197, -3.4043775248953203, -2.293492544081438, -2.2191556874787546, -1.6142870556872067, -7.0, -2.802203410722948, -7.0, -7.0, -3.7320719409998664, -2.455575688084891, -3.7364761820276966, -3.565316427085621, -3.332101666969759, -3.1196799820081194, -3.3136563466180315, -3.7701890227359933, -3.753429841575423, -2.8932761679855776, -3.204459142752743, -2.8210219669692687, -7.0, -7.0, -2.6203810384702573, -2.54520399537264, -1.6693658234277071, -2.6384892569546374, -2.778238977781559, -2.0339323851724616, -3.4683473304121573, -3.4728295567127057, -3.772834927239018, -3.5236667647413595, -3.496652939250918, -3.889413764042709, -2.5205563093613064, -7.0, -7.0, -2.9639626289103638, -3.4222614508136027, -7.0, -7.0, -3.247159736248122, -7.0, -7.0, -7.0, -3.742568034366142, -7.0, -3.5924821001140748, -3.536516357733869, -1.5969887421995967, -2.843677615258588, -7.0, -2.8181216671068587, -7.0, -3.7506626461340558, -3.0235268086522495, -3.6110857334148725, -3.589651782365363, -7.0, -3.7545776560447304, -7.0, -3.1076803464484275, -3.734319680859007, -7.0, -2.9913526737058977, -3.2075670505660874, -3.4417736628051845, -3.5100085129402347, -7.0, -7.0, -3.3883380679423025, -3.53198955141255, -3.251499168343637, -7.0, -3.7664128471123997, -2.887067969220036, -7.0, -7.0, -7.0, -3.780173243642594, -7.0, -7.0, -7.0, -2.5204507792823576, -7.0, -3.6025302223541824, -7.0, -7.0, -2.697488429424593, -7.0, -2.5228038604656158, -2.797514847073891, -7.0, -2.960530233278372, -3.3409065871395938, -3.355962079458681, -3.3229081045244717, -3.8185557792978027, -2.8502691206629827, -3.7640266076920375, -2.834375282515157, -7.0, -3.841859809775061, -3.1416378746732714, -2.938132192894469, -7.0, -3.4478038225123706, -7.0, -3.5514499979728753, -7.0, -7.0, -7.0, -7.0, -3.0658285940945165, -3.555578072772955, -7.0, -3.1684385521867724, -3.487641067547379, -4.082390377581715, -7.0, -7.0, -3.278296208091274, -3.7378285058957847, -3.4449031627954616, -3.7623033632877685, -7.0, -3.7690078709437738, -3.272405259414974, -2.509451444491814, -3.011170876192968, -3.6029660528414573, -7.0, -7.0, -3.767823498007517, -3.1958996524092336, -7.0, -7.0, -3.0720046720384486, -3.3456350782317283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.826398782187618, -3.434709763913882, -7.0, -7.0, -7.0, -3.7500453120117676, -3.476324317420228, -3.471438407389299, -7.0, -7.0, -7.0, -3.356790460351716, -3.0409581733842073, -2.1146339877270752, -3.226084115975824, -3.7382254481425052, -7.0, -3.4541161920372, -2.9997517607923823, -2.6772396187440677, -3.7794521834040617, -3.335650740478487, -3.485437481076301, -3.7513560997253936, -3.152135396861876, -3.0225461938888416, -1.338855653016986, -2.555466514980946, -2.801189254192592, -3.773164534737837, -2.8595385687347576, -2.820566320871381, -3.741939077729199, -7.0, -3.2909801206291553, -3.183725258045578, -7.0, -3.7537362221750104, -3.5054891384167237, -7.0, -3.2203696324513946, -7.0, -3.5524248457040857, -3.1276877875398506, -3.80126647048962, -3.584218112117405, -3.8165726960261033, -3.4659804625982287, -2.5012989485386004, -3.745230984528141, -3.2384583258072803, -7.0, -2.5761973294842266, -2.9029912724826192, -3.534026106056135, -3.446381812222442, -3.6099677206466616, -4.043755126968679, -3.3604040547299387, -7.0, -2.8178657323090817, -3.57128831854305, -3.0502742724374596, -7.0, -7.0, -7.0, -7.0, -3.0549480291063933, -3.759592308645975, -7.0, -3.2738689935949647, -7.0, -3.0022277907711667, -7.0, -2.820551732299791, -3.298998544333325, -3.0149403497929366, -3.4821109943313333, -3.298998544333325, -2.80180043987912, -2.349710783664991, -3.4869468392948924, -7.0, -3.3478761996098028, -3.205741564160098, -2.8061400553771305, -7.0, -3.3104808914626753, -7.0, -3.224325836319485, -2.927686156168301, -2.6090819169066433, -3.002536304303998, -7.0, -7.0, -3.3942181263801987, -7.0, -7.0, -3.779380011491656, -3.3690302218091532, -3.4565178578052627, -2.824244202541404, -7.0, -7.0, -3.8013841070255485, -3.602439832843189, -4.071587470514976, -3.9614685553507862, -3.9741507821112436, -3.8534700560147392, -4.0965972083578945, -3.1947422321739922, -3.263797406395141, -3.8578750255235628, -7.0, -4.399344848180367, -3.979791099026134, -3.842584279440326, -3.8559126891882447, -3.817449674494178, -3.6374980684202, -3.69204355900132, -4.195567580659728, -3.928737144597974, -7.0, -3.8402281093227377, -3.676254521729781, -3.3116646514869297, -3.292526805507146, -4.119272389514709, -3.799719530025879, -3.4615842710047984, -7.0, -3.5782480812332245, -3.985314180745103, -3.719960723392482, -4.414839698336927, -3.835056101720116, -7.0, -4.2316479611536, -7.0, -3.480712327117477, -3.7037855905304915, -3.4869214098225383, -7.0, -3.5374916772907965, -3.298366239267854, -2.9242103449581727, -3.373693397708325, -3.5157745272157848, -7.0, -3.18275152356222, -3.323870606540509, -3.905849826642319, -3.910584388197811, -3.493844657983327, -3.0992036383921366, -7.0, -3.3627651265554266, -3.5859117103194342, -7.0, -3.445253824487426, -4.154423973114647, -3.6800634274819486, -7.0, -3.2801060177153403, -3.4189958185764824, -3.884439426078936, -7.0, -3.9918460536448968, -7.0, -3.4870105827412474, -7.0, -3.6811557775072417, -3.1473671077937864, -3.7290634965186893, -7.0, -3.4133332990399112, -3.6598075789270585, -3.640474811527331, -3.1730405075510624, -3.425187657417824, -4.053808059920658, -3.3801181686358697, -3.472622387120777, -3.1756567472816637, -3.2186433339985294, -3.5809158565356407, -7.0, -3.8656006168719523, -7.0, -7.0, -3.9588504516796785, -3.6140178991060923, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6151511448726805, -3.1584228065848823, -2.8128055778901238, -3.747644819328248, -2.9311399158597338, -3.0316023385073954, -3.389933545757039, -3.540454613671412, -7.0, -3.4195840447594805, -7.0, -3.750823266316629, -3.479191276121532, -7.0, -7.0, -7.0, -3.846708145456007, -3.377761438702263, -7.0, -7.0, -3.561101383649056, -7.0, -7.0, -3.828788748184953, -2.875692505482342, -7.0, -3.5799264331521883, -7.0, -7.0, -4.0454501184690255, -3.241724797625303, -3.5424978305931125, -7.0, -3.886377906758572, -2.7891639074176022, -7.0, -3.2921452678141216, -7.0, -3.8165726960261033, -2.9410142437055695, -7.0, -7.0, -3.865932668193186, -3.2116544005531824, -3.2890089115394634, -7.0, -7.0, -7.0, -7.0, -3.355579216240905, -3.1642636080226607, -4.012605257946353, -7.0, -3.3224260524059526, -3.613154437759265, -3.842297134328065, -3.67488409438502, -7.0, -7.0, -3.630156568140109, -3.3714988627144713, -3.0550781209749545, -3.1936254184928794, -3.947237607870666, -3.8159760009719856, -7.0, -4.078601800355391, -3.765966424785714, -7.0, -7.0, -3.5490032620257876, -3.0972958810760023, -7.0, -7.0, -3.092213632973267, -2.9959092838978454, -7.0, -3.2571984261393445, -3.3208383890175335, -3.593230668783007, -3.3165993020938607, -7.0, -3.3506356082589543, -3.3763944420372662, -3.807940721215499, -7.0, -7.0, -7.0, -3.8423283549514857, -3.8924285469452298, -7.0, -7.0, -3.01949801872729, -7.0, -3.2465657207019256, -3.2049551958985103, -3.3758921298735, -3.887561040930009, -7.0, -3.5257572431523108, -7.0, -3.2706788361447066, -3.201988527362111, -3.990338854787601, -7.0, -3.3501187447859833, -3.0141003215196207, -3.394291125637746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8409212001987716, -3.762753564933374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.647162832668712, -4.029992175377847, -3.975063996095236, -3.7735670489260587, -7.0, -7.0, -7.0, -7.0, -3.3851413476046583, -3.476324317420228, -3.473705886887772, -3.9184497424011577, -7.0, -3.873959654743353, -7.0, -7.0, -7.0, -7.0, -3.9749259860897626, -3.8172347304254983, -7.0, -7.0, -3.0149403497929366, -7.0, -7.0, -7.0, -3.606918525948291, -7.0, -3.383815365980431, -7.0, -2.937116510767054, -3.1879780800921296, -7.0, -7.0, -7.0, -2.699837725867246, -2.8311192397649134, -2.895054031395402, -7.0, -7.0, -7.0, -7.0, -2.2478862490937077, -7.0, -7.0, -2.7908262735997584, -1.9902774298426702, -2.8823347654013243, -2.1224801280417966, -2.582744965691277, -2.1211352942926553, -2.355296410064838, -2.2246884174572874, -3.39396559561541, -2.1787851634605526, -2.995854479874566, -7.0, -2.782677335215046, -3.256717745977487, -2.569373909615046, -3.2083741645947104, -7.0, -3.1531285942803624, -7.0, -3.222030604284222, -2.759775730538379, -3.031105362355941, -2.702900297964451, -3.6723749787460793, -2.8494194137968996, -7.0, -3.182889966569668, -3.820004306808318, -2.5600906481244183, -3.71357453777207, -2.174021229582495, -2.711596355290069, -2.1226591047698764, -2.504244254358882, -7.0, -2.44257774864341, -2.295247778814387, -7.0, -3.1838390370564214, -7.0, -7.0, -2.739868892417847, -2.7043343970832785, -3.1017333302326384, -7.0, -7.0, -2.625826713285711, -7.0, -3.041836622994272, -3.0411670190154996, -3.122434336266318, -7.0, -3.2908674032554646, -7.0, -2.5218300640818447, -7.0, -7.0, -2.1522078524021193, -3.2611041934228426, -2.7750380149595006, -7.0, -2.3106933123433606, -2.9457639231111736, -1.9867038916539217, -2.8846065812979305, -1.6241173588098425, -7.0, -2.836391940660465, -3.234643807761769, -2.571991954511636, -3.594613509160098, -7.0, -3.3057095504829292, -3.016531940957265, -3.065878352857392, -2.394693156774558, -7.0, -3.54476236021663, -7.0, -7.0, -3.585347911094591, -2.44224111761806, -7.0, -2.4599952560473914, -2.9906939606797516, -1.9519385545297605, -1.7112870812197314, -7.0, -3.1374596122778238, -3.071697945221614, -3.0843975191411492, -2.6339731557896737, -7.0, -7.0, -3.4452927694259716, -3.237732193117367, -2.9316273514645816, -3.659821158055705, -3.6607469316726013, -3.364493268376596, -7.0, -3.713448539662225, -3.038818787373656, -3.3956204125690137, -2.770575889253758, -1.9507513201667126, -3.173127969938208, -7.0, -7.0, -2.3350358776650255, -1.902741855124081, -7.0, -3.287129620719111, -4.1262613188638815, -7.0, -7.0, -7.0, -3.2987439434824073, -7.0, -3.1075183079511315, -2.9424049408561066, -2.65459609049376, -3.6151606643165564, -7.0, -3.739809599021359, -3.2885845449672853, -7.0, -3.379758615842701, -7.0, -1.8664636844249198, -7.0, -3.616580530085886, -7.0, -2.3719966385635733, -3.58849580100721, -7.0, -3.4252896164467943, -3.3898745583909853, -7.0, -2.6494233728226906, -3.406114192678464, -3.7717344253867693, -3.1603934910355846, -3.420038306133178, -3.2611041934228426, -2.929674317948588, -3.6327608884794387, -2.8467366967193763, -2.7771159829520387, -7.0, -7.0, -7.0, -3.6186755388851397, -7.0, -3.5896145406312665, -2.4665710723863543, -3.6183619311098782, -4.35197014444686, -7.0, -2.1921618075562983, -2.247915755339819, -3.657342736814626, -3.2130393712509595, -2.9058558202591933, -3.3904935265041733, -3.28390399699171, -2.6587916444639728, -3.7214808547700495, -7.0, -3.09968064110925, -2.6534395365102066, -3.629511534200453, -3.604118006192035, -7.0, -2.331871079112242, -7.0, -3.9275927579492365, -7.0, -2.6509928005631194, -7.0, -3.6596785560245753, -7.0, -3.2253954427184883, -3.617629297757842, -3.632356046239073, -3.1727974640157566, -3.7515100502700416, -7.0, -2.1362674690642875, -3.9399682905513362, -3.068020856241934, -7.0, -7.0, -7.0, -3.1158323168282034, -7.0, -7.0, -7.0, -7.0, -3.0627323632053938, -2.29867117295913, -3.928242183157309, -3.889648664903765, -3.5795549604009986, -3.3208729652272493, -2.6788217632521745, -7.0, -3.5870371177434555, -7.0, -3.1413713738187212, -2.664983670681465, -3.1031192535457137, -7.0, -7.0, -3.600210306409328, -3.6120417446452695, -7.0, -3.296665190261531, -3.0128372247051725, -3.543967810980926, -7.0, -3.286231854028553, -7.0, -7.0, -3.1702617153949575, -3.3399480616943507, -7.0, -2.8020892578817325, -3.437750562820388, -2.6415567309708003, -3.674769314015426, -2.3711118615101006, -7.0, -7.0, -7.0, -2.527793227465292, -2.891218767889852, -2.7044287918270453, -3.349180358996378, -3.1820657578164884, -7.0, -7.0, -7.0, -2.704777275913766, -2.8695250628572273, -2.4230714934960376, -1.533620412909489, -3.1679920981107994, -3.219933637552912, -7.0, -7.0, -7.0, -2.7549040548935664, -2.938948375793857, -3.5776066773625357, -2.710857489788406, -7.0, -7.0, -3.406625327867206, -3.5839917991983166, -1.8979456641871053, -2.0634559848506746, -2.1551519363678144, -3.1851878890039917, -3.3984608496082234, -2.6830282010520166, -2.6330020573082678, -7.0, -3.033462051371804, -7.0, -7.0, -2.047822259143102, -3.2464165068123942, -2.601218606857038, -1.8247222806425387, -3.278982116865443, -3.7272158209084925, -3.5280807144913133, -2.304967275955679, -3.512271225992589, -1.9345395056919514, -7.0, -7.0, -7.0, -3.0549480291063933, -7.0, -7.0, -7.0, -2.0881360887005513, -3.3119656603683665, -2.697467116913975, -7.0, -3.0787674351712444, -7.0, -3.0669778095571933, -2.131968431736007, -7.0, -3.6216493380712738, -3.1008872548535935, -3.9581008310880366, -7.0, -1.7836046842286568, -3.5409910910061515, -1.8154535181128486, -7.0, -7.0, -7.0, -1.981235965607963, -2.6528906949522417, -2.300018832269119, -2.4592337253806016, -3.113943352306837, -7.0, -1.9547699774270102, -3.6143698395482886, -3.6417714706539592, -3.34908316877959, -2.8504234343666353, -7.0, -1.6711869701015334, -7.0, -3.285107029566812, -2.9674971047891727, -4.017930232863559, -7.0, -7.0, -4.740331103292411, -3.38971364302292, -3.4368779277106576, -3.0698324778681014, -2.881159615232263, -7.0, -7.0, -4.371695749117709, -3.9678988267686317, -4.109160755162784, -3.3168506299260505, -7.0, -4.226617087636269, -3.524610794377594, -4.150480122270334, -4.077640389544002, -7.0, -4.13861668044601, -3.0666397361380295, -2.8560430122090255, -4.207365037469072, -7.0, -4.212249768898902, -3.5733126399548465, -7.0, -3.1543063709318093, -7.0, -3.928882112666166, -3.689077884492417, -3.8010147519958153, -7.0, -3.4911374839780263, -4.038341933653606, -3.3874308989061266, -4.271423367743581, -3.156490530223249, -3.3589812256253495, -3.5864834354604564, -3.2927897119911833, -3.743392160047862, -2.8181158760118716, -3.6936038520721226, -3.7513560997253936, -2.948522186033202, -3.4220314306536217, -3.2107197156810017, -3.4913336739315626, -2.274047172789609, -2.9310762969506765, -7.0, -2.398139311220743, -3.0000434272768626, -7.0, -3.9827233876685453, -3.8291268019900375, -7.0, -7.0, -3.102609480470218, -3.0325208298782202, -4.190747538701007, -7.0, -2.9164013036038754, -7.0, -3.2721062829317655, -7.0, -4.030839131797785, -3.5831137210293744, -3.122019172080031, -7.0, -3.6877964113812944, -3.4040493408544776, -3.0981345283359283, -2.663347505203127, -2.993964998195119, -3.989983458301399, -3.3362964345490296, -3.0004851169060904, -7.0, -2.4027463568008933, -3.5403619216668547, -3.3680388229322835, -3.5614880122402224, -7.0, -2.9591606876059813, -2.623795791562612, -4.063164412942957, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1354904389696348, -2.7100403966611224, -2.353263964356718, -7.0, -2.8195439355418688, -2.8984166242181457, -7.0, -3.2547091655685, -7.0, -3.350441856535061, -7.0, -3.0199400975188997, -2.510778063328332, -3.638988159343682, -7.0, -7.0, -7.0, -2.8229848832234263, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7600034015785693, -2.8271753482986925, -7.0, -3.2900982395923446, -7.0, -7.0, -4.632173744035556, -3.381588418818051, -3.7319042325346716, -7.0, -7.0, -2.44389944970457, -7.0, -2.7563594434924856, -7.0, -3.22219604630172, -2.5999448332762145, -7.0, -3.6050894618815805, -7.0, -3.0938592615034377, -2.707463718325151, -7.0, -3.407900540142635, -2.893206753059848, -7.0, -2.6399842480415883, -2.7723883930158575, -7.0, -7.0, -2.4719928544270404, -2.9777236052888476, -7.0, -3.4616485680634552, -7.0, -7.0, -7.0, -3.2640303441321223, -2.71676053323091, -3.018423082826786, -3.2614413093134877, -7.0, -7.0, -7.0, -3.6321534835106326, -7.0, -7.0, -2.7876178846259387, -2.4666879184866843, -7.0, -7.0, -2.5024271199844326, -2.365497487116762, -3.0310042813635367, -3.45400593810379, -2.924666875986673, -3.020084925984292, -3.246400090154285, -2.901821443893775, -2.9459914424728573, -3.4243915544102776, -3.688330818112266, -3.3733718171813005, -7.0, -3.5828584622244994, -4.118578839244122, -7.0, -3.1789769472931693, -7.0, -3.208581549418287, -7.0, -3.4739733021220007, -3.307180646118739, -3.4237918130180067, -2.612359947967774, -7.0, -2.808885867359812, -7.0, -2.8109042806687006, -2.6468392183446987, -3.91555811541152, -7.0, -3.4127124827451016, -3.190984983213069, -2.7960498415335424, -3.651181062444688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6865915864615024, -7.0, -3.253822438708073, -7.0, -3.638389407665336, -3.3049211619008916, -3.621072371143626, -3.347622699467242, -7.0, -2.919750317179154, -7.0, -2.97847590970199, -3.962274604623315, -7.0, -7.0, -7.0, -7.0, -3.3310221710418286, -7.0, -3.3118784613957004, -3.346548558548474, -3.343014497150768, -3.8287243271387914, -7.0, -7.0, -3.5970366649776535, -3.603144372620182, -3.751048034820188, -7.0, -7.0, -2.796227314029439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6027976651019955, -3.7207379770184255, -7.0, -7.0, -4.197776611271387, -7.0, -7.0, -2.7151673578484576, -7.0, -7.0, -7.0, -3.863005451385769, -3.8910912264677235, -7.0, -2.6714505542124947, -4.027849152244213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3218764508736407, -7.0, -7.0, -7.0, -7.0, -3.3176455432211585, -7.0, -3.494850021680094, -7.0, -2.4144162029529017, -7.0, -4.238472656948356, -7.0, -7.0, -7.0, -7.0, -3.3474275986185416, -2.9206450014067875, -7.0, -7.0, -7.0, -7.0, -3.528413157965513, -7.0, -3.6072405038317426, -3.7989267385772014, -7.0, -7.0, -7.0, -7.0, -3.09377178149873, -2.0495703914375065, -7.0, -7.0, -7.0, -3.3375206955987693, -7.0, -7.0, -7.0, -7.0, -2.959756672990995, -1.842445540218536, -7.0, -7.0, -5.125663403464531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5033820634737327, -7.0, -7.0, -7.0, -3.8154934557532534, -3.547528576459782, -7.0, -7.0, -7.0, -7.0, -7.0, -3.394976719554564, -3.591954555046735, -7.0, -3.248524985024069, -3.0538464268522527, -7.0, -7.0, -3.131206076537746, -7.0, -7.0, -7.0, -3.637689819118401, -4.07843869186193, -7.0, -7.0, -3.1398790864012365, -7.0, -3.7840464158081133, -7.0, -7.0, -3.34908316877959, -7.0, -3.639586086673426, -3.0881360887005513, -3.329978681161953, -7.0, -7.0, -7.0, -7.0, -4.693234352034844, -7.0, -3.4565178578052627, -3.614158709509175, -7.0, -7.0, -3.3466788990302154, -7.0, -7.0, -7.0, -3.113423372534924, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6879341244886357, -3.1324197980976147, -3.855397996654069, -3.3892547068486483, -7.0, -7.0, -2.433769833924866, -7.0, -3.1622656142980214, -7.0, -7.0, -7.0, -7.0, -7.0, -4.065554818945707, -7.0, -7.0, -7.0, -2.893206753059848, -7.0, -7.0, -7.0, -3.1082266563749283, -3.388988785124714, -2.805047523584979, -3.2790963297476012, -7.0, -7.0, -3.850289281004146, -7.0, -2.708420900134713, -7.0, -7.0, -2.909556029241175, -7.0, -7.0, -3.3242824552976926, -7.0, -4.282055370683707, -7.0, -3.2488720042050603, -3.575237893712713, -7.0, -7.0, -3.5930644316587173, -7.0, -7.0, -3.2278867046136734, -2.1012887156115734, -7.0, -2.7507654498940113, -3.637689819118401, -2.962369335670021, -3.370513089598593, -7.0, -3.9545801627437576, -2.4630393386237817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2663885100087673, -2.2104714000467327, -7.0, -3.395501124305626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.133347265586243, -4.482554972941678, -7.0, -2.624797578960761, -7.0, -7.0, -2.716003343634799, -2.8041394323353503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8744818176994666, -7.0, -7.0, -7.0, -3.988603543345664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3427515672308834, -7.0, -7.0, -7.0, -3.617503579279065, -7.0, -7.0, -7.0, -4.711587918209924, -7.0, -7.0, -7.0, -7.0, -7.0, -3.963693405238019, -3.721150843749684, -7.0, -7.0, -7.0, -7.0, -2.874191804679071, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.454387467146955, -7.0, -7.0, -7.0, -5.132118745149423, -3.595055089759304, -7.0, -2.780767218408403, -7.0, -7.0, -2.814802321164222, -7.0, -3.9586594270529334, -3.5129510799724906, -3.312811826212088, -7.0, -7.0, -7.0, -4.925350773964699, -2.4909528910913434, -7.0, -7.0, -2.6473829701146196, -3.759592308645975, -7.0, -7.0, -7.0, -2.9421734670337982, -7.0, -3.032417278832769, -7.0, -7.0, -2.430961453354948, -3.123524980942732, -7.0, -7.0, -7.0, -3.542985391369392, -4.9722445064263345, -7.0, -7.0, -3.6965228010284625, -3.000723221619096, -7.0, -1.9091993191743837, -7.0, -3.2425414282983844, -2.5553789986175914, -3.1233615587462964, -3.3348556896172914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6504046698680317, -7.0, -3.7256666603141784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2900791521022015, -7.0, -7.0, -7.0, -4.30513631894364, -7.0, -7.0, -4.280760426326267, -7.0, -7.0, -4.445682026852679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.805296916157985, -7.0, -7.0, -3.8859545764960806, -7.0, -4.297461397643421, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.614517569528736, -2.787814567063023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.633524001321515, -3.693507108634517, -7.0, -7.0, -4.36084891709733, -3.5046158296730847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.991823926808468, -4.709854846624769, -7.0, -7.0, -3.6922298357727557, -7.0, -4.256732174125921, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.654705846613685, -4.783088512755294, -7.0, -7.0, -7.0, -4.898500299212667, -3.8858416187005536, -2.7431176252147416, -4.040661665909112, -4.257184013472698, -7.0, -4.569469498508897, -7.0, -7.0, -4.608493941666254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.168600594123457, -2.8872420998960684, -3.884001924768787, -7.0, -7.0, -4.343290402353433, -7.0, -7.0, -7.0, -7.0, -7.0, -4.320395570236469, -7.0, -7.0, -7.0, -7.0, -7.0, -3.190984983213069, -7.0, -7.0, -3.7805333253164046, -7.0, -7.0, -7.0, -2.486366067362747, -7.0, -7.0, -7.0, -7.0, -7.0, -4.492613737514819, -7.0, -7.0, -3.448242412634439, -3.461698570306548, -7.0, -3.4702634469650784, -7.0, -2.919601023784111, -3.4064185122774226, -7.0, -7.0, -7.0, -2.7331972651065692, -7.0, -7.0, -3.2489536154957075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3364597338485296, -3.554797767332964, -3.466274321789292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3406423775607053, -7.0, -3.184123354239671, -7.0, -3.796157876906914, -4.329916282216644, -3.6217992240026677, -3.069112851387121, -3.8292394281413893, -3.1684974835230326, -2.783427117917317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0755469613925306, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6646419755561257, -7.0, -7.0, -7.0, -7.0, -3.3463529744506384, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6967407046991165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0086001717619175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7652213663049805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.739572344450092, -3.0269416279590295, -7.0, -3.4363217001397333, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6578204560156973, -7.0, -7.0, -7.0, -7.0, -7.0, -2.832508912706236, -7.0, -7.0, -3.295347148333618, -7.0, -7.0, -7.0, -4.2052937046204155, -7.0, -7.0, -7.0, -7.0, -3.6163704722912695, -7.0, -7.0, -7.0, -7.0, -7.0, -3.866425188468594, -2.945523292505061, -2.7944880466591697, -7.0, -4.040641891544537, -3.150756439860309, -7.0, -7.0, -2.7638022240745928, -3.2116544005531824, -7.0, -3.788056364365024, -7.0, -7.0, -7.0, -3.0354297381845483, -2.8744818176994666, -2.6665179805548807, -7.0, -7.0, -2.6225593863895877, -7.0, -4.443153421877831, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.478154824288863, -7.0, -3.315182866579504, -7.0, -7.0, -3.111262513659065, -3.4781334281005174, -7.0, -7.0, -7.0, -7.0, -3.0927206446840994, -3.5957166199434245, -4.153418485037711, -7.0, -7.0, -7.0, -7.0, -3.4510184521554574, -2.9570323163469383, -7.0, -7.0, -4.524146119853344, -7.0, -2.922552466761376, -7.0, -2.979548374704095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151798722592861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.640978057358332, -2.7601710828477963, -3.6546577546495245, -3.428098781384637, -7.0, -7.0, -3.1911714557285586, -7.0, -3.109898116073996, -7.0, -7.0, -7.0, -7.0, -3.6564815157904986, -7.0, -4.1804126328383235, -7.0, -7.0, -7.0, -7.0, -4.216838603475208, -7.0, -7.0, -7.0, -7.0, -7.0, -3.225352364358893, -3.5075860397630105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.038977622332692, -3.748575616930992, -3.5594577418107205, -7.0, -7.0, -3.893040111957118, -7.0, -2.4819201376014313, -3.2111205412580492, -7.0, -7.0, -7.0, -7.0, -7.0, -3.430633139261264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.08878020373431, -1.57012454439491, -2.3629848397370954, -1.8583079881794906, -2.0505844458694535, -7.0, -3.7898381227114672, -7.0, -7.0, -7.0, -2.1576917668933566, -2.2909245593827543, -7.0, -7.0, -3.4581340270643848, -7.0, -7.0, -7.0, -7.0, -3.316106985344138, -7.0, -7.0, -2.9120093755869783, -7.0, -3.415140352195873, -7.0, -3.321184027302314, -3.203032887014711, -7.0, -3.6546577546495245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.330920830595236, -4.08339510788965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.424718337331567, -7.0, -3.8675264111997434, -7.0, -2.828015064223977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9243309847086785, -3.0058237530290275, -7.0, -7.0, -7.0, -2.7058637122839193, -3.0572856444182146, -7.0, -7.0, -7.0, -3.3754807146185724, -7.0, -7.0, -7.0, -7.0, -2.909556029241175, -2.6627578316815743, -7.0, -2.596047007545439, -2.3404441148401185, -3.9022897535273424, -7.0, -7.0, -7.0, -7.0, -3.1048284036536553, -2.6027832129470583, -7.0, -2.805160901599434, -7.0, -7.0, -7.0, -3.8313577854420675, -7.0, -7.0, -7.0, -4.019178624894263, -7.0, -7.0, -3.113943352306837, -3.8098373723298224, -7.0, -7.0, -2.9849771264154934, -7.0, -7.0, -3.4944792655103964, -3.4340097093697395, -7.0, -7.0, -7.0, -2.424881636631067, -2.5221833176186865, -3.1907517799201845, -1.568201724066995, -7.0, -2.979548374704095, -1.2143254249690765, -1.9556877503135057, -2.9845273133437926, -7.0, -7.0, -2.898026718171092, -7.0, -7.0, -7.0, -5.132672649387063, -3.9056340013269546, -7.0, -3.990094550948234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1997551772534747, -2.2900346113625183, -2.471780506250551, -7.0, -5.351437466480003, -3.5826314394896364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.447623097760286, -7.0, -7.0, -7.0, -3.417554724363455, -2.621176281775035, -2.8750612633917, -7.0, -7.0, -4.5574049321616235, -4.09029333131011, -5.398319126995318, -7.0, -3.8081434257614912, -4.71858887116877, -3.791901080009571, -7.0, -7.0, -7.0, -3.564784384503987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.673020907128896, -2.47928731647617, -2.5095385335524316, -2.5506986232492888, -2.7007037171450192, -2.6719755425169955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.88160146454071, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.388353459785864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.367907292617928, -3.8980666606416348, -7.0, -7.0, -7.0, -5.236035669145632, -2.17696773661231, -3.52283531366053, -7.0, -4.185556319479281, -4.38147609027503, -7.0, -4.440672988293759, -7.0, -1.8151348166368135, -7.0, -7.0, -7.0, -7.0, -3.951107812817263, -5.488264382585144, -7.0, -7.0, -2.558879923655098, -7.0, -4.479431337197736, -7.0, -7.0, -3.607383528526565, -7.0, -7.0, -4.02530586526477, -7.0, -7.0, -7.0, -7.0, -7.0, -4.200434601526638, -7.0, -7.0, -4.245665630974936, -7.0, -7.0, -4.268753432587635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2456888879350108, -3.8888812140288245, -7.0, -7.0, -3.2670739033137606, -7.0, -1.5088921272146836, -7.0, -3.4621733047067904, -7.0, -3.7194072542466587, -7.0, -7.0, -7.0, -7.0, -7.0, -2.682686478249768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.949145952419944, -7.0, -7.0, -7.0, -7.0, -7.0, -4.493217484224955, -7.0, -7.0, -7.0, -1.864078461683041, -7.0, -2.794906106516804, -7.0, -2.962606072924127, -3.3013676489684136, -7.0, -7.0, -7.0, -2.9537596917332287, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3199384399803087, -7.0, -7.0, -7.0, -2.8673496171887924, -2.2834268744391006, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3664229572259727, -3.148495270466624, -3.4912215762392833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8167714123333463, -7.0, -7.0, -3.2055426785885324, -3.456345785828081, -2.523045749505392, -2.7983052820219765, -3.355557936162409, -7.0, -7.0, -7.0, -3.563639269509036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.833083334178343, -7.0, -7.0, -3.5488682907918565, -7.0, -2.8743368353973677, -7.0, -7.0, -7.0, -2.211902040898719, -2.9856060830524367, -7.0, -7.0, -3.000434077479319, -7.0, -7.0, -2.814913181275074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2483820141396533, -7.0, -2.9380190974762104, -7.0, -2.259389071298138, -7.0, -7.0, -7.0, -3.5129844039304507, -7.0, -7.0, -7.0, -2.229169702539101, -7.0, -7.0, -7.0, -3.4596802769848254, -3.1048284036536553, -2.7906369619317033, -7.0, -7.0, -3.4413808849165113, -7.0, -7.0, -7.0, -7.0, -3.674034000431255, -2.6629937971760524, -3.1436392352745433, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3932241163612975, -3.55303301620244, -2.9116901587538613, -7.0, -7.0, -3.6909635414210205, -7.0, -7.0, -7.0, -3.039166163427521, -3.0818991280636494, -3.1970047280230456, -2.6020599913279625, -7.0, -7.0, -7.0, -2.9751927658771193, -7.0, -7.0, -3.2093139057259306, -2.7267109357405928, -1.9790487971416582, -2.8115750058705933, -3.0549958615291417, -2.208732401028409, -2.104350519242735, -3.4265112613645754, -3.4962144560637816, -2.4765418090274287, -7.0, -3.3820170425748683, -7.0, -2.885587356189656, -2.7998572591896123, -7.0, -7.0, -3.012731800628455, -7.0, -3.5906065622644463, -3.3919930722597127, -2.656577291396114, -2.999130541287371, -3.4956830676169153, -2.792881745385397, -3.1144441724452543, -3.1762359997608716, -7.0, -3.501470072100412, -7.0, -3.1542350307644376, -3.3640817414110704, -2.447246653826335, -3.42932153909737, -7.0, -3.159717546180216, -2.7075701760979367, -3.467312062980552, -3.177680759848778, -3.4807253789884878, -3.381295623003826, -3.151523067564944, -7.0, -3.2736522256933327, -3.0863598306747484, -3.3727279408855955, -2.9406160823374075, -7.0, -7.0, -2.484157424365381, -7.0, -3.656385719058688, -3.4876589081344687, -7.0, -3.614158709509175, -7.0, -7.0, -2.714795291445831, -7.0, -7.0, -7.0, -7.0, -7.0, -2.739748101021452, -3.0282458165724737, -2.3854871092452794, -2.8489277132270785, -3.377404915549636, -7.0, -4.090258052931317, -7.0, -7.0, -7.0, -7.0, -7.0, -3.754348335711019, -7.0, -3.6009184694091028, -7.0, -7.0, -7.0, -3.1476376842231093, -7.0, -2.510338743528832, -3.044800990163838, -2.70557864861638, -3.048019362723852, -7.0, -7.0, -3.0209134689673647, -7.0, -2.6153320289821393, -7.0, -7.0, -3.6027109449575576, -3.728272597895017, -3.3102683666324477, -7.0, -3.3205357297018523, -3.7682087736070127, -3.4413808849165113, -2.737341756691405, -2.9706567545749585, -3.188534769899359, -3.198244586228236, -2.7614579752546033, -3.7697464671794534, -7.0, -7.0, -2.768478103278721, -2.4007651427429604, -7.0, -3.0610753236297916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4959603948817053, -3.857573704147496, -2.9273703630390235, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5085297189712863, -7.0, -3.0280117586406954, -7.0, -7.0, -2.0711145667779136, -3.564026577265475, -7.0, -7.0, -7.0, -3.22219604630172, -3.0813473078041325, -7.0, -7.0, -7.0, -3.3241795297178998, -3.5671440451956573, -3.370050237074868, -7.0, -7.0, -3.4134506510073246, -7.0, -7.0, -7.0, -3.1624150361064465, -7.0, -7.0, -7.0, -2.832082924950745, -7.0, -4.019427873252668, -7.0, -7.0, -3.082139596192321, -7.0, -3.5185139398778875, -3.055531225050898, -7.0, -3.6232492903979003, -2.839352328895421, -3.266231696689893, -3.026805549473848, -7.0, -3.308919955522892, -7.0, -3.3333800930468676, -7.0, -7.0, -7.0, -7.0, -3.3912880485952974, -3.358759477097732, -7.0, -7.0, -7.0, -3.5407047833107623, -7.0, -2.7338390006971496, -2.484537093918053, -2.607776603741693, -7.0, -2.7246853882373596, -7.0, -3.952792443044092, -7.0, -7.0, -2.5643278286571864, -2.252479604919136, -3.3898745583909853, -3.1245042248342823, -7.0, -3.440279213235588, -2.7681591079368206, -1.6363675209245252, -3.8859828113549733, -4.811416640470285, -3.3475251599986895, -2.4608978427565478, -2.9599948383284165, -7.0, -3.3602146132953523, -7.0, -2.5555341291847458, -3.24699069924155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.997294136783413, -3.0517311960598494, -2.8830933585756897, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1577588860468637, -7.0, -2.722516402716588, -3.8969669019331548, -2.8808655382747417, -7.0, -7.0, -7.0, -3.3104808914626753, -7.0, -3.3259741999930115, -7.0, -3.5499672901284045, -7.0, -7.0, -7.0, -2.4614610083620283, -3.5643109099606027, -2.4461227639106142, -2.0401374979206164, -3.6406801532776654, -3.2314695904306814, -7.0, -3.3803921600570273, -3.5146805441249818, -3.6724673130680823, -2.876217840591642, -7.0, -7.0, -3.516931808868013, -7.0, -7.0, -7.0, -3.0014091684058766, -2.8663295425225357, -2.903496947335859, -7.0, -7.0, -4.096303156190983, -3.285016917629171, -7.0, -3.546953732587764, -7.0, -7.0, -1.7927850365787643, -3.269629674357553, -3.558708570533166, -2.922552466761376, -3.8998751960210107, -2.8757555792580547, -3.714078164981856, -2.916453948549925, -4.41458513624822, -3.0624409566309168, -7.0, -7.0, -7.0, -3.2738689935949647, -2.0881360887005513, -2.9421734670337982, -3.447623097760286, -7.0, -2.0743287432532127, -2.747855531533609, -7.0, -3.5333907080175515, -3.4559102403827433, -2.79140991566716, -3.7773543130842087, -7.0, -3.39049941719982, -3.139332147259633, -3.9786496522708426, -7.0, -3.2052043639481447, -2.9839295682683518, -1.9224573872938893, -7.0, -3.1782573208121887, -3.3932241163612975, -3.1192558892779365, -2.4640035246143746, -1.5806866301735132, -2.8949802909279687, -2.6672661193822744, -7.0, -3.3343532083835172, -7.0, -7.0, -7.0, -2.8913283438821975, -7.0, -2.6446717677187572, -7.0, -7.0, -3.7116701727504755, -3.939911295589801, -7.0, -7.0, -4.426690147338194, -7.0, -7.0, -4.6104259215337375, -3.6351652815006217, -7.0, -7.0, -7.0, -4.4326566786702815, -4.40353659220864, -3.902459802999296, -7.0, -4.690054246427676, -4.329829924701549, -7.0, -7.0, -7.0, -5.391183960678366, -4.314183339137378, -3.6001618428040993, -4.162803292382675, -7.0, -4.67521907955274, -7.0, -7.0, -4.185251678187814, -7.0, -4.216350669139196, -4.058255158229489, -7.0, -7.0, -4.1438887581092745, -7.0, -7.0, -7.0, -3.933770650991845, -7.0, -3.9877734848951945, -3.7939336804318997, -3.978043493909963, -3.8023631743095474, -4.364156856122531, -7.0, -4.063888540530298, -4.06628864526571, -7.0, -3.991816550945799, -3.5908139802145596, -3.3346023369658453, -7.0, -3.561846442129789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0964450691230585, -4.189431355695534, -5.707980433125192, -7.0, -2.7451398788031467, -7.0, -3.9640945574951996, -7.0, -4.3670440252690375, -7.0, -7.0, -7.0, -7.0, -4.460521992900201, -4.49454417069265, -3.4643404846276673, -3.657629431388952, -3.9138138523837167, -3.9537865290254914, -3.365835495343365, -7.0, -3.0378927084593257, -4.663583150614173, -7.0, -3.9530499415686555, -7.0, -7.0, -4.024926716417962, -3.8564670670037584, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3185224421412562, -2.609807769328702, -2.5869962448920862, -7.0, -3.269512944217916, -3.422334447617187, -3.326949994165999, -3.5826314394896364, -3.0960405542954277, -3.1696744340588068, -7.0, -3.605318516604717, -2.6572029965081487, -7.0, -7.0, -4.181700704415961, -7.0, -3.507248513918787, -7.0, -7.0, -3.591231611251554, -7.0, -7.0, -2.409812402140273, -2.808632904835291, -7.0, -7.0, -7.0, -7.0, -4.314899024273395, -3.7582717409698585, -7.0, -7.0, -3.660770643527697, -2.5702092522113107, -7.0, -2.5258774093447136, -7.0, -3.2347702951609167, -2.711474223671339, -7.0, -7.0, -7.0, -3.0537185238968583, -2.8194123112093252, -7.0, -7.0, -3.0178677189635055, -7.0, -2.866877814337499, -3.1056993786226297, -3.94126290931895, -7.0, -2.358183228180746, -2.8024316264307236, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8958643512472992, -2.863967853967334, -3.671913012441587, -3.758684849882441, -3.0572856444182146, -7.0, -7.0, -3.1324197980976147, -7.0, -7.0, -2.9953060589380653, -2.5668658433400444, -7.0, -7.0, -2.5801100111243995, -2.8480522019581387, -2.9291268648546622, -2.710223174463516, -3.019867665170659, -3.674125982742708, -2.905376069332856, -2.808346035740395, -3.3214258105330647, -7.0, -7.0, -7.0, -3.368100851709351, -7.0, -7.0, -7.0, -3.1702617153949575, -7.0, -3.5518645756606655, -3.292920299600006, -7.0, -3.665017825412473, -3.203168922875464, -2.816525369214973, -7.0, -2.709027541498756, -7.0, -2.5871494982543437, -2.631173096220426, -7.0, -7.0, -3.255393125707304, -2.4872798164430687, -2.9935178724720797, -2.8604877374747018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.347272603130747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5386993795424067, -3.466274321789292, -7.0, -3.8009231818132183, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6774505159720032, -7.0, -7.0, -3.235949071135977, -7.0, -7.0, -7.0, -7.0, -3.006359059989323, -7.0, -7.0, -3.236033147117636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.204559483359148, -7.0, -7.0, -7.0, -3.893983567211847, -2.955233285577666, -3.1072099696478683, -7.0, -7.0, -7.0, -7.0, -3.5599066250361124, -7.0, -7.0, -7.0, -3.2747582873708003, -1.765786159439582, -2.5599066250361124, -7.0, -2.709905669040404, -2.5285953576940683, -7.0, -4.388622137165492, -2.57978359661681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0517311960598494, -7.0, -4.141242767858726, -7.0, -2.632963168167261, -7.0, -7.0, -2.939219635854818, -7.0, -7.0, -7.0, -7.0, -7.0, -4.130140705819276, -3.440436766105774, -2.822712785926196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6834973176798114, -7.0, -4.149265311738653, -2.7573960287930244, -7.0, -7.0, -7.0, -7.0, -2.7255032688593155, -7.0, -7.0, -4.6482103406529705, -7.0, -7.0, -7.0, -7.0, -3.874945436085532, -7.0, -2.8692317197309762, -7.0, -7.0, -7.0, -7.0, -3.239549720840473, -2.9542425094393248, -7.0, -3.7678030494335566, -7.0, -7.0, -2.690196080028514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14903426716125, -7.0, -7.0, -7.0, -3.3700039246800597, -7.0, -2.3703280077795106, -7.0, -3.1502446018730703, -3.900530982452756, -7.0, -7.0, -7.0, -7.0, -3.4811200128020143, -7.0, -7.0, -7.0, -7.0, -3.629715332647132, -7.0, -3.6953357196809247, -4.152165990675555, -7.0, -7.0, -7.0, -3.9523608832066466, -7.0, -2.661654961009687, -7.0, -7.0, -7.0, -3.520767292621454, -3.1680553034591394, -7.0, -7.0, -4.367505009418113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3750536497006407, -3.681693392004564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5234212743726316, -7.0, -7.0, -2.1509756144710184, -4.240449398993299, -7.0, -7.0, -7.0, -7.0, -2.432969290874406, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5747255835940734, -3.2229764498933915, -7.0, -4.248152651817513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9215824403934163, -7.0, -4.279826581794015, -7.0, -3.7182525000977504, -3.7512174975598183, -7.0, -7.0, -3.104487111312395, -7.0, -3.06595298031387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073571728304925, -7.0, -7.0, -7.0, -3.204933522354145, -7.0, -7.0, -3.2629254693318317, -3.041195233696809, -7.0, -3.076640443670342, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8930215923314397, -7.0, -7.0, -7.0, -2.9474337218870508, -3.6089536992758626, -2.0662094144339336, -7.0, -5.235823767721927, -7.0, -7.0, -2.9395192526186187, -7.0, -7.0, -2.7315887651867388, -3.0213960567419713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6413997386429875, -2.2821687783046416, -2.3263358609287517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3362595520141936, -7.0, -7.0, -7.0, -4.314583426205657, -3.305136318943639, -3.533441574084827, -3.012415374762433, -4.710760288222427, -7.0, -7.0, -7.0, -3.211876648386651, -7.0, -3.0040346161083726, -2.2612628687924934, -7.0, -3.187520720836463, -2.9916690073799486, -7.0, -7.0, -7.0, -2.6437815628948647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2273209825488447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9840319802711806, -7.0, -7.0, -2.0848644436153325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.8283866045408, -2.964200682862941, -7.0, -7.0, -7.0, -7.0, -3.3119656603683665, -7.0, -7.0, -2.0743287432532127, -7.0, -2.407603325351417, -7.0, -7.0, -2.9943171526696366, -3.090258052931316, -7.0, -7.0, -4.379668034033654, -3.432024532665689, -4.796091901355749, -7.0, -7.0, -4.1153525207127135, -2.407501745719001, -7.0, -7.0, -2.780317312140151, -7.0, -3.0815633209803854, -2.3922781139158866, -7.0, -2.6646419755561257, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8616339626031766, -7.0, -3.1798525964727418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.922315356850907, -7.0, -7.0, -7.0, -5.387871910331762, -7.0, -4.230282835852113, -4.103050747435957, -7.0, -7.0, -7.0, -7.0, -4.4728514865317806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.451863159220613, -7.0, -4.613482402816421, -7.0, -4.669781615208537, -4.764859552129425, -7.0, -7.0, -7.0, -7.0, -4.536361450403717, -7.0, -7.0, -7.0, -4.184274913997588, -4.680072499759905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.99139001307188, -5.4878818393933395, -5.706386602541032, -7.0, -7.0, -7.0, -4.654229501390483, -7.0, -7.0, -7.0, -7.0, -7.0, -4.320789977698806, -4.130382020756808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.466195154039558, -4.955721415247588, -7.0, -5.046415165620504, -7.0, -7.0, -4.306392856397526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.46821436276855, -3.3463529744506384, -3.483102099521368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.742568034366142, -7.0, -4.495821753385906, -3.1307624896373274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6402329136549687, -3.517591730711908, -7.0, -7.0, -7.0, -7.0, -7.0, -4.793315333574228, -7.0, -7.0, -7.0, -2.97904226290937, -7.0, -3.455606112581867, -7.0, -7.0, -3.4040269092889157, -7.0, -7.0, -7.0, -7.0, -3.375114684692225, -7.0, -7.0, -7.0, -7.0, -7.0, -3.98344585734134, -7.0, -7.0, -2.83416628394262, -3.507855871695831, -7.0, -4.144200460183879, -7.0, -7.0, -7.0, -2.8384292797022423, -3.631033790150154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4972752863579952, -7.0, -7.0, -3.7892986111594413, -3.726737394049776, -7.0, -7.0, -3.702150395107271, -7.0, -3.7311050512159203, -7.0, -4.030073230712518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0352295563502123, -3.359076226059263, -7.0, -7.0, -7.0, -2.6074550232146687, -3.916944993889482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6852937813867843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.518382315545344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.82303928223169, -7.0, -2.329006517271025, -7.0, -7.0, -3.135868120615886, -3.8166389448984614, -7.0, -7.0, -3.386753683729159, -2.563629384689655, -1.7700147364996375, -7.0, -7.0, -7.0, -7.0, -3.218629270892973, -3.9581336756762355, -7.0, -2.546106989324988, -2.948247974842369, -2.1957267300569976, -7.0, -7.0, -2.4944076056666726, -2.4371160930480786, -7.0, -3.794644866269577, -2.4480188730153554, -7.0, -3.287129620719111, -7.0, -3.5285310606354114, -7.0, -3.344588742578714, -7.0, -2.6577727077355213, -7.0, -4.031641475693449, -7.0, -2.7505083948513462, -2.9443592755072294, -7.0, -3.2823955047425257, -7.0, -2.9253120914996495, -3.6591552809406296, -2.526016021340753, -7.0, -2.6939228573158918, -2.3359327413291835, -1.3395573674054908, -3.101689805602919, -7.0, -2.300305567669649, -2.660338357558161, -3.089551882886454, -7.0, -7.0, -3.286231854028553, -2.192381579384681, -7.0, -3.693023067923694, -7.0, -7.0, -2.307833703718926, -7.0, -3.5299434016586693, -2.6049199991419503, -3.286905352972375, -2.908699432352224, -3.44832298764699, -7.0, -3.561101383649056, -7.0, -7.0, -2.771685449409057, -7.0, -3.3298045221640695, -7.0, -3.3165993020938607, -3.375846436309156, -2.6501131644435714, -7.0, -2.387800377321158, -7.0, -3.3884513797296045, -7.0, -2.9932524799207627, -3.2757719001649312, -7.0, -3.604657972047871, -7.0, -3.577721524509021, -3.11402686244687, -3.0023820749327608, -4.1900794539415145, -7.0, -7.0, -2.954724790979063, -2.4984727249945853, -7.0, -2.076957391260839, -2.5506868726984986, -1.513479055910221, -1.9254071412178324, -3.361538971269279, -3.31722734917642, -7.0, -7.0, -3.1294354674921263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3661293256157254, -4.065796247841191, -7.0, -3.9188687433809846, -7.0, -3.8537112456286655, -2.193451997150143, -3.1415542841654776, -3.033745336013974, -7.0, -7.0, -2.865042678343799, -2.2351242640194617, -7.0, -2.414734659049227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.081527326244805, -3.526920532638649, -3.494961186838928, -7.0, -7.0, -3.9514832307522934, -3.2657609167176105, -3.0081741840064264, -7.0, -7.0, -3.0613447538027754, -7.0, -7.0, -2.6797911709803546, -2.9556035765596027, -7.0, -7.0, -3.5161385767170743, -3.457124626303409, -7.0, -2.8567288903828825, -7.0, -3.5873741720730656, -3.2725377773752373, -7.0, -3.3475739324713, -2.7072862306926577, -7.0, -3.283744222708833, -3.333850145102545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6065157176196125, -7.0, -3.4652128399050834, -7.0, -3.5199591807520685, -2.738579026601573, -3.397592434038117, -3.3099848383169075, -2.4593087037362253, -7.0, -2.7248607780823373, -3.1742052269401473, -7.0, -3.4348881208673157, -2.873175231276166, -2.9724342769573653, -3.345569756056392, -3.7777891874348675, -7.0, -3.5358002908248976, -7.0, -7.0, -7.0, -3.0799373127778655, -7.0, -3.151308548182018, -7.0, -3.1758016328482794, -3.0209824429184193, -2.650501794878367, -2.93468778256179, -3.25478968739721, -7.0, -2.295161839468722, -7.0, -3.0835538066394377, -7.0, -7.0, -2.720159303405957, -2.6697816152085365, -7.0, -7.0, -7.0, -7.0, -3.9789561652175918, -3.0151920417628344, -7.0, -4.869013679358553, -7.0, -7.0, -7.0, -3.4303975913869666, -7.0, -2.4391070276875375, -3.5440680443502757, -2.8829512232506107, -7.0, -7.0, -7.0, -3.287353772714747, -2.707995746422929, -7.0, -7.0, -2.490660653356137, -3.6066842101912937, -7.0, -7.0, -7.0, -7.0, -3.380030247967831, -3.3677285460869766, -2.9454685851318194, -3.3811150807098507, -3.7909181952145783, -2.5533435303236858, -3.5689640044577606, -3.1986570869544226, -7.0, -7.0, -7.0, -3.196393337220726, -2.48957499641369, -2.743350500752125, -3.3848907965305544, -4.4213653283855505, -7.0, -7.0, -2.7172543127625497, -2.363533636880855, -7.0, -3.117395598804608, -2.167787096267102, -3.917663024327375, -7.0, -7.0, -7.0, -3.446847710155809, -2.9266510770888887, -3.129797271228629, -7.0, -3.0166155475571776, -3.449478399187365, -7.0, -2.785329835010767, -7.0, -1.79594318285679, -3.089463530840192, -2.8341026557127935, -3.6115108871266566, -3.170408411725318, -3.738168310814374, -3.183886436181369, -3.294466226161593, -4.315487527750822, -7.0, -3.0909630765957314, -2.7625952138601995, -7.0, -3.7155437506051423, -2.7029089924616416, -7.0, -7.0, -2.972758083903539, -2.4142568872937775, -4.431315506535525, -1.9902177295652563, -3.255754786643044, -7.0, -7.0, -3.0022277907711667, -2.697467116913975, -3.032417278832769, -7.0, -2.747855531533609, -2.407603325351417, -7.0, -3.3350565194390915, -3.502222215766476, -7.0, -2.6398183918310933, -2.167716392464302, -7.0, -3.6889119807631894, -3.296428912995118, -4.357542742943342, -7.0, -3.275829434043522, -3.878041442513559, -2.369515102569025, -7.0, -7.0, -7.0, -3.078366179530183, -3.269045709657623, -2.495940591663266, -3.5392015992941275, -7.0, -7.0, -2.2185126722477833, -7.0, -3.3688445068258215, -3.3847117429382823, -3.4599952560473914, -7.0, -2.089413700330822, -7.0, -7.0, -7.0, -4.781712301989469, -7.0, -7.0, -7.0, -3.3969138623652726, -7.0, -3.491156891329735, -3.2342697517408654, -7.0, -7.0, -7.0, -4.729893403963238, -5.00358976718914, -4.295292143016351, -7.0, -4.685840227213275, -4.92951088422108, -7.0, -7.0, -7.0, -4.691364443175833, -4.003029470553618, -3.6455696293511517, -7.0, -7.0, -4.6708578881893095, -7.0, -7.0, -4.306839464804704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.171726453653231, -7.0, -3.9289588408808296, -7.0, -7.0, -3.690698035157469, -3.9558800862253753, -3.7687120803776635, -3.656059852021028, -7.0, -3.807372143360144, -3.7471786713601642, -7.0, -7.0, -3.355881177150099, -3.3911998401087744, -7.0, -4.45804831917427, -3.901676231326376, -7.0, -3.878808932359205, -4.397070549959409, -7.0, -7.0, -3.6751408739135, -3.8176230297552216, -5.230453179146441, -7.0, -3.4927603890268375, -7.0, -4.262934951640582, -7.0, -5.106634487635724, -3.6458805585863616, -7.0, -7.0, -4.348849823480575, -7.0, -4.190184573508741, -7.0, -3.168669320925909, -7.0, -3.428134794028789, -4.20489288154292, -7.0, -3.569759062947957, -4.962388279400015, -7.0, -4.505045269707098, -7.0, -3.4190465771041594, -3.4457909564400544, -4.324035392913916, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7892986111594413, -3.2570783059665684, -2.3909087566812675, -7.0, -7.0, -2.84845038043803, -3.5769169559652068, -3.04766419460156, -3.3062105081677613, -3.1409477713426623, -7.0, -3.575778550967052, -3.2593549273080344, -3.3636119798921444, -7.0, -3.866877814337499, -7.0, -3.4740705032150436, -7.0, -7.0, -3.865222456290179, -7.0, -7.0, -2.651554899236661, -7.0, -7.0, -3.7640639936931715, -7.0, -7.0, -4.6109474687960565, -3.9851811187481068, -4.195193696188285, -7.0, -7.0, -2.2962701975267965, -7.0, -2.7822678165784755, -7.0, -3.471731651480051, -2.959177727114837, -7.0, -7.0, -3.5742628297070267, -3.1649473726218416, -3.310976378660635, -7.0, -7.0, -2.946615995262667, -7.0, -2.8071289555924217, -2.8651039746411278, -7.0, -7.0, -2.4245186658770486, -3.0617351308914453, -7.0, -3.8845971400109183, -7.0, -7.0, -3.9644482079166607, -3.2389238459924155, -2.9048342025822866, -3.148294097434746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.54282542695918, -2.8845688149183335, -7.0, -7.0, -2.645826667299605, -2.4422018332921795, -2.834976727785526, -3.5618166643189575, -2.934538848851327, -7.0, -3.8312937443770094, -3.1381447441794874, -3.0826417781571314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1142772965615864, -7.0, -7.0, -3.562471304977469, -3.4710715736130306, -2.7110687225172314, -7.0, -2.4501090810791015, -7.0, -3.0594119374386564, -2.5697395697207623, -7.0, -7.0, -7.0, -3.4176377396522297, -3.303611372056618, -7.0, -7.0, -7.0, -3.256236533205923, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2225864233903896, -7.0, -7.0, -7.0, -7.0, -3.3820170425748683, -7.0, -3.276921132065774, -2.871864702088195, -3.247697143973421, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5620416016746557, -7.0, -3.373463721632369, -3.671728088239558, -7.0, -3.58983794314746, -3.280805928393667, -7.0, -3.254064452914338, -7.0, -3.766933093837284, -3.473194909204938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.125649312197302, -2.942256150419465, -7.0, -7.0, -4.197941836490006, -3.368764890372562, -7.0, -7.0, -7.0, -7.0, -7.0, -3.73814608871206, -7.0, -7.0, -3.673665876245702, -3.823687271851491, -7.0, -2.920123326290724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.716142518281689, -7.0, -7.0, -7.0, -4.664491544490574, -7.0, -7.0, -2.870793931782029, -7.0, -3.171726453653231, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6534483627752867, -7.0, -2.702968762418371, -7.0, -7.0, -3.0511525224473814, -3.4533183400470375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4154741681092355, -7.0, -3.73917663191073, -7.0, -2.808210972924222, -3.442009159140952, -2.9071311224233356, -7.0, -7.0, -7.0, -7.0, -3.403578034499039, -1.3382350842284592, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5536403362313544, -7.0, -7.0, -3.8687696214434575, -7.0, -3.7218930162149575, -7.0, -7.0, -7.0, -7.0, -7.0, -3.592620821321982, -7.0, -3.5499836111596887, -7.0, -7.0, -7.0, -3.2777925189314416, -7.0, -7.0, -7.0, -2.9385197251764916, -2.980803010140982, -7.0, -7.0, -7.0, -7.0, -3.687207803454867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.755066468428678, -7.0, -3.8452841263479915, -7.0, -7.0, -3.1439511164239637, -7.0, -3.6147917919564176, -7.0, -7.0, -3.259572161447169, -2.881527305640932, -7.0, -7.0, -4.068371418032643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.156670276554126, -3.690993032099869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9854264740830017, -7.0, -7.0, -7.0, -3.639536290826109, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5974209235343935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.090682736865722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2079035303860515, -4.282191456275556, -7.0, -7.0, -3.7302206895539856, -7.0, -7.0, -3.292477593667784, -7.0, -7.0, -7.0, -7.0, -3.1550322287909704, -7.0, -3.3370597263205246, -7.0, -7.0, -7.0, -3.9548693710664784, -7.0, -4.042516447524275, -7.0, -3.6001012556913907, -7.0, -7.0, -7.0, -7.0, -7.0, -2.978180516937414, -7.0, -7.0, -7.0, -3.095169351431755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.7130358499979, -7.0, -2.929929560084588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.795184589682424, -7.0, -4.6419151217736125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2880255353883627, -2.9409431702282975, -7.0, -7.0, -7.0, -7.0, -3.538406149594125, -3.326949994165999, -2.2310903252489624, -7.0, -7.0, -2.789228057267335, -7.0, -7.0, -3.216473803384961, -3.745855195173729, -3.1853532490306473, -3.4204508591060683, -7.0, -7.0, -2.733598460961339, -7.0, -7.0, -3.4680517914542377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.87486820071597, -7.0, -7.0, -7.0, -7.0, -4.83110156450136, -3.5953859808091417, -7.0, -7.0, -7.0, -7.0, -7.0, -3.291590825658001, -3.9589459324939362, -7.0, -7.0, -7.0, -7.0, -2.771035995750765, -4.573159230252996, -3.874191804679071, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3350565194390915, -7.0, -3.7046651854545294, -7.0, -7.0, -7.0, -7.0, -3.653140125329155, -3.9112108931375533, -3.713811373193294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.544564097496043, -7.0, -3.4252080511386565, -3.336059277866349, -7.0, -7.0, -3.4073909044707316, -7.0, -7.0, -7.0, -7.0, -7.0, -3.327563260187278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.114032429218625, -3.4331810064702166, -3.9793206973820245, -7.0, -4.305265362023449, -4.418259849029347, -4.9979845471666975, -4.5818814213581875, -7.0, -7.0, -4.922855156211904, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2316097450225865, -3.8055008581584002, -7.0, -4.658707618456519, -7.0, -7.0, -3.9964314019794394, -7.0, -4.677689059461427, -7.0, -7.0, -7.0, -7.0, -7.0, -4.453455946777304, -4.185938589826589, -3.0697949105630427, -7.0, -4.369698138949881, -4.5891487492977605, -3.5876548509957176, -3.660675788338524, -3.484320180532331, -3.362293937964231, -4.332488956338184, -7.0, -7.0, -7.0, -3.3498032819722785, -3.7266276095452504, -7.0, -4.13697409575783, -7.0, -7.0, -3.194930399217724, -7.0, -7.0, -7.0, -4.213654974143963, -4.2838663484734685, -5.405443694078799, -7.0, -7.0, -7.0, -7.0, -7.0, -4.92833780587623, -7.0, -7.0, -7.0, -7.0, -7.0, -4.482087141826486, -7.0, -3.613260260001968, -7.0, -3.857030798272624, -4.48807103570631, -7.0, -4.098693158915045, -7.0, -7.0, -7.0, -7.0, -7.0, -4.307506734689901, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8676000541351447, -7.0, -3.038393050174673, -7.0, -7.0, -3.5650603397961036, -7.0, -7.0, -7.0, -3.7506626461340558, -7.0, -4.019365574572488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.479791180189492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.191576757210136, -4.089219585886864, -7.0, -7.0, -3.4619984629288245, -7.0, -7.0, -7.0, -3.2227164711475833, -3.0751818546186915, -7.0, -7.0, -7.0, -7.0, -3.6857417386022635, -7.0, -7.0, -7.0, -7.0, -3.2837533833325265, -3.2887856124025046, -7.0, -7.0, -3.5471591213274176, -7.0, -7.0, -3.368968325638322, -7.0, -7.0, -7.0, -3.3376588910261424, -3.561875241676657, -3.4671639659690903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.040404528914159, -3.1060548400937864, -3.185825359612962, -7.0, -3.194097885578952, -2.9488305125930703, -3.6224212739756703, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5569855749879813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.599155000684555, -3.4596939764779706, -3.0821696407966246, -7.0, -4.162624140307846, -4.2459812555626195, -7.0, -3.4523998459114416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.819872821950546, -3.918764031027999, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.096736260462469, -7.0, -3.6729286904427223, -7.0, -3.0878701126902555, -2.3948163583872386, -3.7558748556724915, -2.786751422145561, -1.852204993164218, -3.370650527907993, -2.5262007685441783, -7.0, -2.9906939606797516, -2.4220862084095693, -2.57861798915832, -3.7466341989375787, -3.4183012913197457, -3.6705241577820797, -3.6863681034730362, -7.0, -2.938386280873121, -3.777499319590365, -7.0, -3.1713851229924988, -2.863866615070336, -7.0, -3.7013952690139202, -7.0, -3.5020855592260456, -2.709655349661963, -7.0, -2.96528011476304, -3.735918116531297, -7.0, -7.0, -3.708760723690317, -3.4967913157000425, -3.69539410829111, -2.2064660628531048, -7.0, -2.912554162140022, -7.0, -2.8228704705516168, -3.6898414091375047, -3.712733859069952, -3.0292484623758416, -2.2084887797172543, -2.7898324333109286, -7.0, -7.0, -3.571883445956414, -2.8442441226239614, -3.7802452838653524, -1.6779424612088802, -3.149157506231856, -2.640836223757495, -2.0083471601136877, -3.7095243558763413, -3.1234432775313534, -2.8920946026904804, -3.729407796963068, -7.0, -3.43560550202284, -7.0, -3.1190083104691966, -3.1228163735354806, -2.6841081445570096, -7.0, -3.6802448370426077, -2.7897729487512173, -7.0, -2.8386242424371755, -3.6316466629584196, -3.082156803810918, -2.0956447696312877, -2.917967138181485, -7.0, -3.3383900826431017, -7.0, -3.697490887171057, -2.1854377696881704, -3.324351058801809, -3.7024305364455254, -7.0, -3.2458210061174126, -7.0, -2.753229398871813, -2.425106776336422, -3.3080661653096994, -7.0, -2.0992099681174743, -2.6823707425165573, -2.3193143040905118, -3.680335513414563, -7.0, -2.4395853007775634, -3.305064611772354, -1.7901845979839552, -1.2778667424010177, -3.6916118742144164, -1.4925694660571351, -3.1245042248342823, -3.6742179455767, -7.0, -2.2391710940895515, -3.376576957056512, -3.3463529744506384, -3.760422483423212, -2.3597842230324337, -1.7478208534254045, -3.238715020445331, -7.0, -3.2693572552103687, -2.853393977450666, -2.8744818176994666, -7.0, -7.0, -2.4074248987944076, -2.5877670717926997, -2.178822841969451, -7.0, -3.0780261164935427, -2.9216223472099334, -7.0, -7.0, -3.7191654940892134, -3.9331074937869817, -2.514391475407105, -3.2465601261061714, -3.220474206129218, -7.0, -3.4205333226934997, -2.3230710837961492, -3.1607085722924295, -7.0, -7.0, -4.1399734879844585, -7.0, -7.0, -7.0, -7.0, -7.0, -2.71113789711095, -2.941511432634403, -2.5668380133503383, -3.6581545470672103, -7.0, -2.624429439172757, -7.0, -3.3927848582254354, -3.752432609261474, -4.1945975852425095, -2.8933257432834982, -7.0, -3.698448538015329, -3.7245216271185626, -2.1730399446729964, -7.0, -7.0, -3.490169250834894, -2.479552580772478, -7.0, -2.6142190428516683, -2.996000608571067, -2.829432433617599, -2.1263766159975894, -3.1843364700443417, -2.748704736742231, -3.1735504566783983, -3.234432913530507, -3.0348160587969915, -7.0, -7.0, -7.0, -7.0, -7.0, -3.393399695293102, -7.0, -3.402777069610347, -7.0, -3.0664936462050383, -7.0, -3.023983672235201, -2.589283777393785, -7.0, -7.0, -2.794327147188887, -3.761551988564182, -7.0, -7.0, -2.8829512232506107, -2.468580508663076, -2.6548426946011774, -1.8402106807262346, -2.863067817841283, -2.3545024464158892, -7.0, -3.006136781822616, -1.8094164304103115, -2.204337745500236, -7.0, -3.304598226343637, -3.3708830167776056, -3.6986658917468582, -7.0, -3.293657141449485, -7.0, -3.410355383434471, -3.291901400465467, -3.51181654130309, -3.6659560294539566, -3.22284647997415, -3.9540011676815703, -3.056218581272306, -7.0, -7.0, -7.0, -7.0, -7.0, -3.406028944963615, -7.0, -3.7148325124333326, -7.0, -3.907894835416283, -3.6485551556626707, -4.13670471670359, -7.0, -7.0, -3.4122925093230463, -7.0, -7.0, -7.0, -3.505217831531809, -3.4743619760326307, -3.472317546316842, -7.0, -7.0, -7.0, -3.3934874581471752, -7.0, -3.6830470382388496, -3.779307827583586, -3.6843302879646407, -3.3694941621180985, -3.373279893277496, -7.0, -7.0, -7.0, -3.718916686014861, -7.0, -3.423737249982329, -3.355834495884936, -2.942008053022313, -2.710963118995276, -3.1302131143806298, -7.0, -7.0, -7.0, -2.507645627469406, -2.719952447254438, -2.7511205403423413, -7.0, -3.9004763713892565, -7.0, -3.6947806360120614, -3.698535492562001, -3.8476035028253683, -2.4066298088486584, -2.678193089172533, -2.9752479412406814, -2.871105700985585, -2.217258278071181, -2.8184733313655372, -3.6840370374865197, -2.9770373352246815, -2.470312467167388, -2.886866575028829, -7.0, -3.697490887171057, -2.9112337273068007, -7.0, -3.7753191218294777, -7.0, -2.4642320431696545, -3.0633333589517497, -3.7512020945883533, -7.0, -3.4671639659690903, -3.9691983999984655, -0.8001984317598797, -2.3416143566643135, -3.0931266481387256, -7.0, -2.7745169657285493, -3.307656461906382, -3.0102292649359197, -3.521399628115376, -3.0940050223646494, -3.714706878813469, -3.3145693943004555, -3.278810741204461, -3.3397163761823725, -4.038680399901154, -2.618309641123432, -7.0, -7.0, -7.0, -2.820551732299791, -3.0787674351712444, -7.0, -3.417554724363455, -3.5333907080175515, -7.0, -3.502222215766476, -3.7046651854545294, -7.0, -3.723209310405111, -3.140272291029186, -2.622265844991523, -7.0, -3.520056119575792, -2.748081569233415, -4.002621004336619, -7.0, -2.403329809639173, -3.5886637957802043, -2.6856137979674, -7.0, -3.4349678884278125, -7.0, -2.7388937591840596, -2.7827676182461665, -3.3763944420372662, -3.5025636691073636, -7.0, -7.0, -2.4111662699650966, -3.696618459232225, -7.0, -3.7265642161622448, -7.0, -3.7019994748896368, -2.1961798384775983, -7.0, -7.0, -4.338745263175257, -7.0, -4.359778584139239, -7.0, -4.144947633670373, -3.967828679330155, -7.0, -3.7323334369557415, -3.5613453617046673, -7.0, -7.0, -7.0, -7.0, -5.015916938047925, -4.627160952374775, -7.0, -7.0, -4.643052744068198, -7.0, -7.0, -7.0, -5.395450459484108, -7.0, -4.583074023956643, -2.502942175170398, -7.0, -4.696958914626985, -7.0, -7.0, -3.7627126567903657, -7.0, -3.869173027321683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3363262895451586, -3.5425573202945824, -3.0352696000994364, -4.105884708669233, -3.189004157062433, -2.796829854240984, -2.8280647007154767, -2.7726457370988777, -3.0340265237751103, -3.0439032795531493, -3.001641010581909, -3.0882542479944113, -3.6581749932745304, -2.928277998809836, -1.8087365536104805, -7.0, -2.497150888262362, -2.420519244652838, -3.6843964784190204, -2.7880851490499095, -3.8427184234915157, -3.94875518016827, -7.0, -2.8504547726388982, -3.133441284331229, -5.710042859862826, -7.0, -3.6591076791998134, -7.0, -3.1825388976316757, -7.0, -5.111538062043175, -2.952819340172389, -4.317059958740005, -3.6768764319731373, -3.1709343851533065, -3.8934704707737686, -3.1213253059294366, -7.0, -2.865991800126275, -7.0, -3.100741177063841, -3.4293546881848322, -3.122625396909397, -2.1005526734054927, -3.560720336969559, -3.1961761850399735, -3.9242965196279602, -7.0, -2.9562751760779418, -2.774769926364078, -3.9028546804129594, -7.0, -3.675136504467994, -7.0, -7.0, -7.0, -2.441623734985907, -2.430961453354948, -2.2903719274819245, -7.0, -7.0, -2.9868380590192607, -3.523486332343228, -3.0173811923265106, -3.3913762391696496, -2.9916690073799486, -7.0, -3.061530470374447, -2.488028162614872, -7.0, -7.0, -4.246129125663436, -3.80188370712524, -2.946697837245742, -7.0, -7.0, -3.5327968299462387, -7.0, -7.0, -3.3045623297876885, -2.296376488208818, -7.0, -7.0, -7.0, -7.0, -7.0, -3.436717388027081, -3.8626017427642996, -7.0, -7.0, -2.090555945268356, -7.0, -2.4200780505130677, -7.0, -2.86421433046133, -2.2596934032537566, -7.0, -7.0, -7.0, -3.163086798780063, -3.9564565834098997, -7.0, -7.0, -2.5386051486487737, -7.0, -2.2015408590501777, -1.797830963889765, -7.0, -7.0, -2.5631984703770168, -2.2482068836250533, -7.0, -3.4825877695267677, -7.0, -7.0, -4.08339510788965, -3.104760166638525, -2.5185100861451684, -2.675167089663394, -3.912062555588502, -3.76767522402796, -7.0, -7.0, -3.4101865286571087, -7.0, -3.702775077901044, -3.3283116334124774, -2.149510376031406, -7.0, -7.0, -1.8844077740241894, -2.0621775825245305, -3.019842969563268, -3.816174990428802, -3.0258221513726404, -3.854427505787861, -3.9860547807696953, -3.752355804153501, -3.221877701616761, -7.0, -7.0, -3.747023177451628, -7.0, -7.0, -4.433593841021467, -7.0, -2.776216750606444, -3.5487578285737045, -3.2580440465002014, -7.0, -3.7955092611743777, -3.3167426208727453, -7.0, -2.522257881011762, -7.0, -2.778585327862962, -7.0, -2.241668433463518, -2.9472376078706666, -7.0, -7.0, -2.1308452620130898, -1.6213576534552254, -3.20784373080153, -3.4261044280965076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5471591213274176, -7.0, -3.0166155475571776, -3.406540180433955, -7.0, -3.6898414091375047, -7.0, -7.0, -7.0, -3.2229114697957306, -7.0, -3.117628173221579, -7.0, -7.0, -7.0, -7.0, -3.5830853663476874, -3.7114697818743276, -7.0, -3.2740848933351994, -2.9454685851318194, -3.2440295890300215, -7.0, -7.0, -3.3546205789259758, -7.0, -3.6873505695580273, -3.2101177828307916, -3.6770591773921617, -3.464688218289176, -3.166578109919652, -3.7340794072805945, -7.0, -7.0, -2.8721562727482928, -2.8656960599160706, -7.0, -7.0, -7.0, -7.0, -2.668851648082519, -7.0, -5.205488565953269, -7.0, -7.0, -7.0, -3.5047969706245556, -3.918921090091336, -7.0, -7.0, -7.0, -2.9454685851318194, -7.0, -3.441321937582603, -2.823202438384847, -7.0, -3.392345155361204, -3.7867909735760246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.729359915776269, -2.5631843347973486, -2.929929560084588, -7.0, -2.096137246822133, -1.9381731982431614, -2.210407706494972, -7.0, -7.0, -7.0, -7.0, -4.100862216436054, -7.0, -7.0, -7.0, -7.0, -3.3690302218091532, -2.7234556720351857, -3.163757523981956, -7.0, -7.0, -7.0, -3.631139250256811, -7.0, -7.0, -7.0, -7.0, -7.0, -3.485863329597335, -7.0, -7.0, -7.0, -7.0, -3.111262513659065, -7.0, -3.8531504364478426, -7.0, -7.0, -7.0, -7.0, -3.7563317673210577, -2.660201201380682, -7.0, -7.0, -5.126400930507611, -7.0, -3.4095950193968156, -7.0, -7.0, -3.5922322902240102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.57966929355472, -3.327767489902729, -7.0, -3.4455378508490546, -3.273348568749101, -7.0, -7.0, -7.0, -7.0, -3.3191060593097763, -2.829946695941636, -3.1389339402569236, -7.0, -4.158935141829918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.251638220448212, -7.0, -4.082534052872713, -3.0888445627270045, -7.0, -2.7278122676344823, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5802405082653763, -3.3604040547299387, -7.0, -3.067328419252625, -3.7152053921333623, -3.0856472882968564, -3.2563568863955257, -7.0, -4.995270936407388, -7.0, -3.188365926063148, -2.9377184436172636, -7.0, -7.0, -3.828960490938315, -2.911956189072687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5638369186645447, -7.0, -2.9863835313824367, -3.232657347128563, -7.0, -7.0, -7.0, -2.683947130751512, -3.225309281725863, -7.0, -3.8452221064290137, -7.0, -7.0, -3.1231980750319988, -4.068371418032643, -7.0, -7.0, -7.0, -7.0, -2.636989101812229, -7.0, -2.5163149757779495, -3.145040940037024, -7.0, -3.030194785356751, -3.2918681352146444, -7.0, -7.0, -3.7714312978476743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4608477482317905, -7.0, -7.0, -7.0, -7.0, -3.4845402991734833, -7.0, -7.0, -7.0, -7.0, -2.7237839369653294, -7.0, -3.3322364154914434, -3.2174839442139063, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9653898702151222, -7.0, -7.0, -7.0, -3.608062253333116, -7.0, -3.7795964912578244, -7.0, -3.285107029566812, -7.0, -7.0, -3.065729059462349, -3.402433346219312, -7.0, -3.433449793761596, -7.0, -3.3933411768692574, -7.0, -7.0, -7.0, -7.0, -7.0, -3.049605612594973, -7.0, -2.781396305196791, -3.9271136119337604, -2.709693869727792, -3.663857908757308, -5.111156616258665, -7.0, -2.7283537820212285, -7.0, -7.0, -7.0, -2.6344772701607315, -2.6848453616444123, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6875289612146345, -7.0, -7.0, -7.0, -3.7678185563570334, -7.0, -7.0, -7.0, -7.0, -3.1228709228644354, -7.0, -7.0, -7.0, -3.70816585785554, -3.3348556896172914, -7.0, -3.3574266029612865, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0606097136919574, -7.0, -2.820108792023945, -7.0, -7.0, -7.0, -7.0, -2.761401557498631, -3.0193009590931648, -3.039889797736181, -7.0, -7.0, -3.115943176939055, -7.0, -7.0, -3.499549625905149, -2.8708426604757014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.988063243456569, -7.0, -7.0, -7.0, -5.132845399779915, -3.9085386321719593, -7.0, -3.8151569739533104, -7.0, -7.0, -3.6184664921990803, -3.338057875419756, -7.0, -7.0, -2.296528080715987, -2.868252475839426, -7.0, -7.0, -5.050438405904311, -3.886829004676982, -7.0, -7.0, -2.524396122103842, -3.298998544333325, -7.0, -2.430961453354948, -2.621176281775035, -3.4559102403827433, -2.9943171526696366, -7.0, -7.0, -3.723209310405111, -7.0, -2.713770462202507, -7.0, -7.0, -4.159753623143345, -3.3505651630873636, -4.699366478933639, -7.0, -3.8117760216029035, -4.174703437767008, -3.7956715059460215, -7.0, -3.16790781000148, -7.0, -7.0, -7.0, -3.7440581658788354, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1024337056813365, -7.0, -3.1944218305429115, -7.0, -3.205488565953269, -7.0, -7.0, -7.0, -7.0, -4.276967038147092, -7.0, -4.413944857617042, -7.0, -7.0, -4.59365151826543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.676135525654282, -7.0, -7.0, -4.318063334962762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.679700380871964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3681082945672856, -7.0, -7.0, -7.0, -7.0, -4.457995373496883, -3.1588792018312803, -3.5298151966446305, -7.0, -4.361921337183666, -3.904769625906595, -7.0, -7.0, -7.0, -7.0, -7.0, -4.076931574555656, -7.0, -7.0, -4.390740866952916, -4.789359278340753, -7.0, -7.0, -3.711807229041191, -7.0, -4.47969045420215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784709989279148, -7.0, -7.0, -7.0, -4.8997439198220505, -7.0, -7.0, -4.467800425116173, -4.656241984328962, -7.0, -4.444965523348666, -7.0, -7.0, -7.0, -4.301377292349344, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4729903496766585, -7.0, -3.714245911017894, -7.0, -7.0, -4.347739717920052, -7.0, -3.0565237240791006, -7.0, -3.7673785241141804, -7.0, -4.197011625911117, -3.3405432575141942, -7.0, -3.3823773034681137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.095486671604796, -7.0, -7.0, -3.1806992012960347, -3.472902651803664, -7.0, -3.5024271199844326, -7.0, -7.0, -3.6550903907290384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3310221710418286, -3.9978667262391445, -7.0, -7.0, -7.0, -3.5496162395190853, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0782755220866007, -3.648709257986968, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0681858617461617, -7.0, -7.0, -3.383456296524753, -3.8203328448994096, -7.0, -7.0, -3.8116420214531512, -4.633266411155424, -3.6447339274471924, -2.4536580307033105, -4.010215125214227, -7.0, -3.756560043006683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9476174983825936, -7.0, -7.0, -7.0, -3.311541958401195, -7.0, -3.06660542412653, -3.6901074394563307, -7.0, -7.0, -7.0, -7.0, -7.0, -2.285235728480749, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8999435533286775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8785217955012063, -3.2942457161381182, -2.7697464671794534, -3.1646502159342966, -4.2518625412293325, -7.0, -7.0, -7.0, -3.36514019614747, -2.995067118019622, -2.96543689977626, -2.5754765086019, -7.0, -7.0, -7.0, -3.144749291055609, -3.916611845109346, -7.0, -2.9355072658247128, -3.1437882213761426, -7.0, -3.11293997608408, -7.0, -2.5722075432302685, -2.504244254358882, -7.0, -3.1695745172047043, -2.7556208080010745, -7.0, -7.0, -7.0, -2.449392680351223, -7.0, -7.0, -7.0, -2.847880997445375, -7.0, -3.65153123691363, -7.0, -3.155336037465062, -3.4308809464528913, -2.4144958388716917, -3.214843848047698, -2.511214701136388, -2.929418925714293, -3.5721743136130595, -3.2723058444020863, -3.3613500243522663, -3.170448411217117, -3.220631019448092, -2.4111603780707003, -3.8302678009336417, -7.0, -3.2013971243204513, -2.672493690697651, -7.0, -7.0, -3.236537261488694, -7.0, -3.1863912156954934, -3.3261309567107946, -3.254427221540668, -7.0, -7.0, -3.4868553552769432, -7.0, -3.1720188094245563, -2.4775734093486395, -7.0, -3.5094713521025485, -4.0479397570328395, -7.0, -7.0, -7.0, -7.0, -2.9057419273916016, -3.4156409798961542, -3.116939646550756, -7.0, -3.219846386024361, -7.0, -3.0856472882968564, -3.3054588547786667, -2.89707700320942, -7.0, -3.31229973600576, -7.0, -3.08687371853016, -2.723044991643445, -7.0, -3.5046067706419537, -3.367169488534681, -3.1690863574870227, -3.1638568026386698, -7.0, -3.2627179920118423, -7.0, -7.0, -7.0, -2.9556440257243017, -7.0, -3.1659858227744544, -3.0058237530290275, -2.836233665954909, -3.542647619594607, -3.16761267272753, -7.0, -2.789345640720579, -3.2990712600274095, -2.813458080832292, -7.0, -7.0, -2.5851383133972536, -2.907411360774586, -3.206646006705649, -7.0, -3.011993114659257, -3.7584652625674755, -7.0, -3.8732043092770407, -2.397070549959409, -3.6951444420112227, -3.269045709657623, -2.743248377731732, -3.3600250891893975, -2.73917663191073, -7.0, -2.948710558798255, -2.943247125137862, -7.0, -7.0, -3.77581062145278, -7.0, -2.961421094066448, -2.6928469192772297, -7.0, -7.0, -2.818962939492806, -3.293657141449485, -3.0558779765553, -3.0306806639999015, -7.0, -7.0, -7.0, -3.0835026198302673, -2.9827233876685453, -3.4740705032150436, -3.5589484459780394, -7.0, -7.0, -2.718224803628757, -3.594110050455012, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0457140589408676, -3.181414796254284, -2.862429556106009, -3.3783979009481375, -3.003729728474602, -2.872350544494723, -3.1522883443830563, -3.5134074341660257, -7.0, -7.0, -7.0, -2.7280831092284825, -3.1082266563749283, -7.0, -7.0, -3.1045358837850054, -7.0, -4.292610452838321, -7.0, -3.4619484952037616, -3.264147596079237, -7.0, -3.4231639238503484, -3.6423655808449733, -3.0090257420869104, -3.1609184995397808, -7.0, -2.2280702222508446, -2.7993405494535817, -2.7321926510062684, -3.381205361238583, -7.0, -7.0, -7.0, -3.2773799746672547, -2.922898380345496, -4.352645518668972, -7.0, -3.394696777891884, -7.0, -3.4956830676169153, -7.0, -3.336859820916809, -7.0, -7.0, -2.4580259891314333, -2.48572142648158, -7.0, -2.993142192245416, -7.0, -3.5835954675922532, -7.0, -7.0, -3.1065308538223815, -7.0, -2.279894980011638, -2.6567368704836722, -3.03261876085072, -2.4614985267830187, -2.5391263033453906, -2.460396637297684, -3.449478399187365, -4.370968727652723, -7.0, -2.8175653695597807, -2.8564267724702446, -7.0, -2.5171958979499744, -3.044539760392411, -2.2764618041732443, -7.0, -3.0419845014867866, -7.0, -7.0, -7.0, -7.0, -2.975891136401793, -7.0, -2.881004030556986, -3.6440346358149664, -7.0, -7.0, -7.0, -7.0, -3.1961761850399735, -2.8756399370041685, -7.0, -2.8962505624616384, -3.728434950974255, -3.381295623003826, -3.818687663441514, -3.548880562637515, -7.0, -7.0, -7.0, -3.1216624148598804, -7.0, -3.309993180027564, -2.7253670623404314, -3.8123366985975364, -7.0, -7.0, -7.0, -2.6150658413436996, -3.780677274433368, -2.4913164995492116, -2.393308097750179, -3.394510049817891, -2.623456048069934, -7.0, -7.0, -3.294466226161593, -3.0542299098633974, -2.9051209859322786, -7.0, -7.0, -2.9967305154351527, -7.0, -7.0, -7.0, -3.132899769944483, -3.0512490216105164, -7.0, -3.513217600067939, -3.329397879361043, -4.355441941404169, -2.9663503526454837, -7.0, -3.5985935527733384, -3.030599721965951, -7.0, -2.296665190261531, -3.08278537031645, -7.0, -3.2703293970898586, -2.3873898263387296, -2.544245271237821, -3.287129620719111, -3.4520932490177314, -4.624614008249, -2.9965116721541785, -7.0, -7.0, -7.0, -3.0149403497929366, -3.0669778095571933, -3.123524980942732, -2.8750612633917, -2.79140991566716, -3.090258052931316, -2.6398183918310933, -7.0, -3.140272291029186, -2.713770462202507, -7.0, -7.0, -3.1920095926536702, -4.258140217203789, -3.191939809656508, -4.533168098898093, -7.0, -3.5266622930104643, -3.3770536230433184, -2.5087316694431436, -7.0, -2.3863715504164245, -2.5903215880567183, -7.0, -2.3109586924199976, -2.2135557015581133, -3.1190908524217216, -3.0132586652835167, -7.0, -3.4800069429571505, -3.0941215958405612, -2.7007037171450192, -2.725094521081469, -2.4606325707446945, -3.1152775913959014, -2.885966677374664, -7.0, -7.0, -4.123808100490645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.295292143016351, -4.1050898796005555, -7.0, -7.0, -7.0, -4.723143590360814, -7.0, -4.587138261511774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.061377074193888, -4.122117536313263, -7.0, -4.663116448584376, -4.20013885385738, -7.0, -4.175931988544272, -3.8725932620341004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318407710839007, -3.2304489213782737, -4.675035558038081, -5.068015079913622, -7.0, -3.7026889681591335, -3.6398847419163043, -7.0, -3.8749479543989533, -7.0, -2.9572480195790503, -4.449370390682258, -3.92367254220629, -3.5710455540362562, -7.0, -4.445339498742793, -3.854063011866421, -7.0, -3.5273076043950233, -4.382413313126267, -7.0, -7.0, -4.993903341793256, -4.312553920321048, -7.0, -7.0, -3.0322963447394726, -7.0, -4.179800654075695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.750379810251768, -3.8387861449465945, -4.202063077955703, -4.017409008536211, -2.89707700320942, -3.354704236683152, -4.6574096491453805, -3.616160312847583, -4.871428925150091, -7.0, -7.0, -3.835246539996311, -3.6074979143787846, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1972660451184867, -3.1441069730493227, -2.9669143516284455, -3.0692980121155293, -3.383994789441733, -3.750296209841865, -3.1680553034591394, -2.622214022966295, -7.0, -3.4839437142904197, -7.0, -4.10176768870149, -3.3640817414110704, -7.0, -3.42422807069598, -4.142827294538336, -7.0, -3.710286647702891, -7.0, -7.0, -3.5120169694961265, -7.0, -7.0, -2.8879921769079147, -2.807535028068853, -7.0, -4.0330616925381735, -7.0, -3.0576661039098294, -4.602049133830196, -3.9501178678525184, -4.314372900009328, -7.0, -3.2143138974243994, -2.7299742856995555, -7.0, -3.2332500095411003, -7.0, -7.0, -2.9611837098124356, -7.0, -3.062581984228163, -3.465977368285823, -2.8438554226231614, -3.4243098202457563, -7.0, -7.0, -2.9607085516885565, -7.0, -3.0764583877121514, -2.9282677984501237, -4.208736877114406, -7.0, -3.6009728956867484, -3.578524605274993, -7.0, -4.1615776110488705, -7.0, -7.0, -3.446226401778163, -3.1204093945560682, -3.0465400352110676, -3.531095546870028, -3.6469915374771227, -3.327563260187278, -7.0, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -3.35869609957381, -3.300812794118117, -7.0, -3.048894766621091, -2.8282771428330555, -2.7637086966742306, -2.749736315569061, -3.20198503030335, -3.2328691051326137, -2.731881663179229, -3.28397928423848, -3.7514330818193473, -3.7077404542737713, -7.0, -2.966610986681934, -7.0, -7.0, -7.0, -7.0, -3.2203696324513946, -7.0, -3.6906896037283614, -7.0, -4.176293882538767, -4.075559126333692, -3.104230965930801, -2.9155317393839453, -7.0, -2.757206173278786, -7.0, -2.845186662498373, -2.80694271207381, -7.0, -7.0, -3.362105319293773, -2.5514499979728753, -3.324436797945258, -3.205745540942662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.534406899137877, -7.0, -2.6203095992245795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.823963024361914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028232251440524, -3.1961761850399735, -7.0, -7.0, -7.0, -3.485863329597335, -7.0, -7.0, -7.0, -7.0, -3.700617195682057, -7.0, -7.0, -7.0, -3.1416587697865523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.638389407665336, -2.720876530902644, -7.0, -7.0, -7.0, -3.37823887280976, -3.2532498684446467, -3.072892956720603, -7.0, -7.0, -7.0, -7.0, -3.322649928861323, -3.7458162082818403, -7.0, -3.061129223038102, -2.577965039175915, -3.6628522332647964, -2.7171502028538876, -7.0, -2.895422546039408, -2.8363241157067516, -2.6732257630203846, -3.3055493481139395, -3.0602255243941676, -2.997495599658018, -7.0, -3.0278590441755795, -3.7353593330017105, -3.136931851267557, -3.5106790310322102, -7.0, -3.154271775993095, -7.0, -3.528509626166987, -2.056360281381856, -3.635282637998212, -3.445837632186448, -7.0, -3.2903685556172673, -7.0, -3.6618126855372615, -7.0, -2.675961549642169, -7.0, -1.9273598326456884, -2.327041686668223, -2.5250829348172044, -2.9838517189914717, -7.0, -3.1735747250409485, -2.836535091898369, -3.655138434811382, -2.816525369214973, -7.0, -7.0, -7.0, -3.3756026560715435, -3.458871241042658, -7.0, -7.0, -2.8708426604757014, -7.0, -3.6452257115354163, -7.0, -2.998912904358786, -7.0, -3.380220765608974, -7.0, -2.577644963119329, -7.0, -7.0, -2.8078930122753323, -2.960787780819836, -3.62293896921149, -7.0, -1.5354939947790913, -2.7425287512507515, -1.0289745558766008, -3.3634239329171765, -2.041140603609944, -7.0, -3.162950773914828, -7.0, -3.2393933366675602, -7.0, -7.0, -2.938233722873167, -7.0, -3.766561552637531, -2.745975132893879, -7.0, -3.3989067880771966, -7.0, -7.0, -3.5870371177434555, -2.1062492925699923, -7.0, -2.6841718627005906, -3.6917002082901615, -2.087220217567597, -1.2710785047431974, -7.0, -7.0, -3.3744733890639753, -7.0, -3.0101899867944697, -7.0, -7.0, -3.446459496594692, -3.363737299322217, -3.4102709642521845, -3.1837442232842066, -3.661102473634254, -3.575599132587573, -3.6384892569546374, -4.015192041762835, -3.6429588794097905, -4.406723226782012, -2.5601826304358717, -2.8897217842562033, -3.2710279942623233, -7.0, -7.0, -2.704225144296277, -2.423109281867148, -7.0, -3.5900612308037427, -4.42756724771945, -7.0, -7.0, -7.0, -7.0, -3.5872618496925344, -3.149434666343169, -2.712005604964203, -3.4025070241365136, -3.9170851906405675, -7.0, -7.0, -7.0, -7.0, -3.6823256186678073, -7.0, -2.890807803284164, -7.0, -3.316913439164992, -7.0, -2.0743479845985724, -7.0, -7.0, -3.727703883685354, -7.0, -7.0, -2.1565847799040894, -3.7085908451503435, -7.0, -3.7640266076920375, -7.0, -3.0853698724573992, -7.0, -3.1567510079386705, -2.6054054937766447, -1.993226223490665, -7.0, -7.0, -7.0, -3.017555014414844, -3.0108297779595223, -7.0, -2.607602905903389, -7.0, -4.352259719157145, -7.0, -3.0349291104842666, -2.215529362569842, -3.658774320844357, -3.4358974290282975, -3.0832039098096162, -3.391816923613249, -3.762453482363547, -3.4020033090697046, -3.7227161674884948, -7.0, -2.8574186574238936, -2.771248188300011, -3.1535099893008374, -3.906065544755237, -7.0, -3.392978186542541, -7.0, -7.0, -7.0, -2.953418555773891, -3.586249638866042, -3.006513581462448, -7.0, -3.2266858105546663, -3.6191977157929474, -7.0, -3.4748473297732483, -3.4514794051248616, -7.0, -2.0517198569263675, -3.5140826625258312, -3.244977695626852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7628660424620133, -2.744714131783971, -3.149962833642305, -3.9753933699709907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.709354775834396, -7.0, -7.0, -7.0, -3.6018427897820984, -3.312388949370592, -7.0, -7.0, -3.4125445421080887, -3.616628256327668, -7.0, -7.0, -7.0, -7.0, -3.6492374723496073, -3.34143452457814, -7.0, -7.0, -3.1371958119405483, -2.6807474402991907, -7.0, -2.718283109929698, -3.716504163773217, -7.0, -7.0, -2.5099831216476503, -3.7384634394619525, -3.672271079163263, -7.0, -3.592707994835791, -7.0, -7.0, -3.6182573448404014, -3.0419845014867866, -3.348158775313901, -3.4966183382484775, -2.363713593014251, -3.235654676956949, -3.698709349442587, -7.0, -7.0, -3.38524868240322, -2.6206911526456267, -7.0, -7.0, -2.358146439931267, -3.3867664157173136, -7.0, -3.7091002815511667, -3.585686278452497, -1.5903324441974507, -2.4096391348401878, -2.244780916197219, -3.4875625602563782, -3.3997602257103656, -3.0148119432299376, -2.650695979760611, -7.0, -3.453375681483457, -7.0, -3.655906418180215, -3.3851294198782624, -3.4239009185284166, -2.9181352261663593, -2.539538289847167, -3.2796669440484556, -7.0, -3.227758196110915, -2.756027212973441, -3.817641733880986, -1.0512233063252827, -7.0, -7.0, -7.0, -3.4821109943313333, -2.131968431736007, -7.0, -7.0, -3.7773543130842087, -7.0, -2.167716392464302, -7.0, -2.622265844991523, -7.0, -7.0, -7.0, -7.0, -4.032037086801305, -3.842047288509638, -3.6649077558393044, -7.0, -1.7422854909460268, -3.4412841466213813, -2.334780938528331, -7.0, -7.0, -3.6085260335771943, -1.865539983912389, -2.720802226516568, -2.473260388201678, -2.963079160641827, -7.0, -7.0, -1.1493282034085548, -7.0, -3.6432552250247716, -3.3505387432018106, -2.687974620034556, -3.321184027302314, -1.9074138842093709, -7.0, -7.0, -3.6769170487121805, -4.495211204457828, -4.343487370238302, -7.0, -4.041416373302113, -2.8506945913152344, -4.039770926931579, -3.3962301252029676, -3.2457100295452914, -7.0, -7.0, -4.070905588138982, -3.666892211066536, -3.836163705227655, -3.919381469280224, -3.9163311004140837, -4.226745934188872, -3.7356388146361157, -7.0, -7.0, -3.8547916940539855, -3.760359354637302, -3.568045193345566, -3.618977317675097, -7.0, -3.9171027120527055, -4.3884919618358005, -3.6706168864003255, -3.7500453120117676, -3.4759615891924236, -7.0, -3.5028707477497782, -3.543145296881339, -3.5001907186772634, -7.0, -3.2872697292733806, -3.561657814835876, -3.7236198355154633, -3.970695473826257, -3.3929801389148486, -3.3604040547299387, -3.554411275946719, -2.5459526635880794, -2.6816344420035367, -3.1999196515905677, -2.9606997475594645, -7.0, -2.9463554862980423, -2.8418203302530207, -2.8588712445685736, -3.4501230858349725, -2.96901827581697, -3.534026106056135, -7.0, -2.521777452137303, -3.302157695941016, -7.0, -3.0796785902590686, -3.200560828955417, -7.0, -7.0, -2.2542267303652044, -2.6500663146368284, -3.5819980288675377, -7.0, -3.9181352261663593, -7.0, -3.113609151073028, -7.0, -3.6401056483657737, -2.752930091089968, -3.067901916340883, -7.0, -3.4326486600131068, -3.40426340205091, -3.143116671590088, -3.2676996034544477, -2.603851081315202, -3.3883232675782713, -2.7107518348841255, -3.1173860382869454, -7.0, -2.4491908282001305, -3.4946461449564397, -3.846337112129805, -3.0501776876640005, -7.0, -3.386617852625555, -2.3990368383908267, -4.063445953123033, -3.6049816296074315, -7.0, -7.0, -7.0, -7.0, -3.474851739592984, -2.908101874185159, -2.5969712253922594, -7.0, -3.247564133517697, -2.859652864276414, -3.766040860381389, -3.7333577879255855, -3.3098430047160705, -2.673020907128896, -7.0, -3.056017227469607, -2.5950899322706067, -7.0, -7.0, -7.0, -3.739888655084543, -2.5400573092860066, -7.0, -7.0, -3.1271047983648077, -7.0, -7.0, -3.4156409798961542, -2.983432966630845, -7.0, -2.856156278179049, -7.0, -7.0, -4.6323256678521805, -3.1711922262700494, -3.8112129429218173, -7.0, -7.0, -2.6990785643870536, -7.0, -2.9542425094393248, -7.0, -2.9219464542294102, -2.9640340493016373, -7.0, -7.0, -7.0, -2.8516077409196603, -3.9139727115509713, -3.6334684555795866, -7.0, -3.372451701409366, -7.0, -3.119668207244826, -3.2712107746411596, -4.280100110054924, -7.0, -2.4543366159693427, -2.5920460639004768, -7.0, -4.240424433083608, -7.0, -7.0, -4.05207803048417, -7.0, -2.8815061040436714, -2.7555283901719436, -7.0, -7.0, -7.0, -7.0, -3.633670406051444, -3.3674491072686044, -7.0, -2.840106094456758, -2.45430670073035, -7.0, -7.0, -2.4483880055226477, -2.5341966517021137, -3.8776592441116087, -7.0, -3.1684238181031454, -7.0, -7.0, -3.6822353569025643, -2.702676665373566, -7.0, -7.0, -7.0, -7.0, -7.0, -4.11882666293329, -7.0, -3.356694958541127, -7.0, -3.2695246186438496, -7.0, -3.951653166268217, -2.8449288014012546, -7.0, -2.510192126070919, -7.0, -3.0147724740730637, -7.0, -2.7445723620206373, -2.8622940465782776, -7.0, -7.0, -3.1126050015345745, -3.368658712392227, -2.8934689290303233, -3.351409751925439, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9883805652220086, -7.0, -7.0, -7.0, -3.3386556655787003, -3.306532247519607, -3.0199466816788423, -3.34908316877959, -3.633670406051444, -2.5605044151950564, -2.856642592422956, -2.6060318539477323, -3.485674115137571, -7.0, -7.0, -7.0, -3.3562171342197353, -2.8546096380957953, -7.0, -2.88860378026851, -3.171726453653231, -3.0430674079304287, -2.9256987611930096, -7.0, -3.1719457389302472, -3.2974322048101694, -3.30352003690728, -2.9061810639690853, -3.5922878159521305, -3.2956220704684576, -2.495110520227484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603412339519877, -3.739097446117475, -7.0, -7.0, -3.2493070873114163, -4.220003426156936, -7.0, -7.0, -7.0, -7.0, -7.0, -2.741092480334294, -7.0, -7.0, -3.216077890434055, -4.191995636951234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.390540649832289, -7.0, -7.0, -7.0, -3.0565237240791006, -7.0, -7.0, -2.0871501757189, -2.8830933585756897, -7.0, -2.5595076406424986, -3.8869385757864556, -7.0, -3.074084689028244, -7.0, -7.0, -3.670245853074124, -7.0, -7.0, -7.0, -3.2116544005531824, -3.3126004392612596, -3.7960136258613275, -7.0, -3.619249898968967, -7.0, -7.0, -7.0, -7.0, -3.142389466118836, -7.0, -7.0, -7.0, -7.0, -7.0, -3.375785504077291, -7.0, -7.0, -7.0, -7.0, -3.7563317673210577, -7.0, -7.0, -7.0, -4.524321461179261, -7.0, -2.4065401804339555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.57966929355472, -3.327767489902729, -7.0, -2.951455114707749, -2.4578818967339924, -2.8848358067000373, -7.0, -7.0, -7.0, -1.5473790729562786, -7.0, -7.0, -7.0, -3.255423275624488, -7.0, -7.0, -7.0, -2.944841444976771, -7.0, -7.0, -7.0, -3.659821158055705, -4.082534052872713, -7.0, -7.0, -2.90444504107691, -7.0, -2.786804641247632, -7.0, -7.0, -3.391111613702803, -7.0, -7.0, -2.380814009999767, -4.181957860931066, -2.6053967516752947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.430357287504807, -7.0, -7.0, -3.3515815966133684, -7.0, -7.0, -7.0, -3.8963240875783165, -7.0, -7.0, -7.0, -7.0, -2.5634810853944106, -3.3418300569205104, -7.0, -3.5610715547069858, -3.7101173651118162, -3.1172712956557644, -3.5948895496460347, -7.0, -7.0, -2.7471527595745955, -7.0, -3.8452221064290137, -7.0, -7.0, -7.0, -4.5455421410420085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9951962915971793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6397071050851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.593638435787782, -7.0, -7.0, -7.0, -3.7444494574467986, -2.5339584518648985, -3.1541195255158465, -2.1667086528238673, -1.9549924939289824, -2.651762447380111, -2.341269613058443, -3.2826221128780624, -2.328583449714202, -7.0, -7.0, -3.3586010159430195, -7.0, -3.6922298357727557, -7.0, -3.3630475945210936, -3.3564083270389813, -3.6487892135944495, -7.0, -4.0853262624239886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7652959296980564, -3.402433346219312, -7.0, -7.0, -3.5836521085420436, -3.024895960107485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.62598087331167, -7.0, -3.663857908757308, -4.3152412940421705, -7.0, -7.0, -7.0, -3.2100508498751372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5458709619210995, -7.0, -7.0, -7.0, -7.0, -3.1228709228644354, -3.100370545117563, -7.0, -7.0, -7.0, -7.0, -3.50112775752298, -2.930821728079435, -1.4621744228711595, -7.0, -2.0644579892269186, -3.6222347525184295, -7.0, -3.9356457947525647, -7.0, -4.713498943292817, -7.0, -7.0, -7.0, -3.7035492982382308, -3.2853322276438846, -3.274942566083686, -7.0, -7.0, -3.2706788361447066, -7.0, -2.9324737646771535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.097406066153824, -7.0, -7.0, -7.0, -3.7347518385968206, -7.0, -7.0, -3.991292544250934, -7.0, -7.0, -7.0, -7.0, -3.2700263223122934, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203772330591677, -3.886829004676982, -7.0, -7.0, -7.0, -3.298998544333325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1920095926536702, -7.0, -7.0, -4.858771725435463, -3.3505651630873636, -4.671336598270019, -7.0, -3.3343867252256643, -7.0, -7.0, -7.0, -2.6896048008603892, -7.0, -7.0, -3.8038666342849843, -7.0, -7.0, -7.0, -7.0, -3.4434194617828173, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5067890573949856, -7.0, -7.0, -7.0, -4.7739472650096575, -7.0, -2.952211058108669, -7.0, -3.5998285090380104, -3.893595333819883, -3.0744285441023065, -4.182893766986047, -2.9469878800637836, -7.0, -3.406604042573899, -7.0, -4.998947733597284, -4.584387769446955, -7.0, -3.1440519712151684, -4.0788398805435415, -7.0, -7.0, -7.0, -7.0, -7.0, -3.330971503774443, -3.4148062795010126, -7.0, -7.0, -7.0, -7.0, -3.821906377352323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8386497310943164, -7.0, -7.0, -5.067108069059566, -2.483312930618305, -3.681150749932421, -7.0, -7.0, -3.163699460691016, -4.004493337547275, -7.0, -7.0, -4.1188549766382225, -7.0, -7.0, -4.1404609028733015, -2.993121181893369, -7.0, -7.0, -3.90080393481037, -7.0, -7.0, -4.691788524402698, -3.695776736052128, -5.4056323231287156, -7.0, -7.0, -7.0, -4.65579130721557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.43663963169266, -4.784709989279148, -3.6317480743965693, -3.3758725475060314, -3.345765693114488, -7.0, -1.9006401839826004, -7.0, -4.342851828039207, -4.355192820439621, -2.986995539724382, -5.348082790267155, -7.0, -7.0, -3.3552812002137884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.521020484331018, -3.1043163645117278, -2.8893857513693093, -7.0, -7.0, -7.0, -3.4318460456987254, -3.357934847000454, -2.9786369483844743, -7.0, -7.0, -4.197011625911117, -2.795482766475396, -7.0, -7.0, -3.8340390181594666, -7.0, -7.0, -7.0, -7.0, -3.7965743332104296, -7.0, -7.0, -7.0, -3.0808668935052506, -7.0, -4.0231289460104955, -7.0, -7.0, -4.599391757793756, -3.262510415525468, -3.789679404241183, -7.0, -7.0, -3.3478664523399497, -7.0, -3.2011238972073794, -7.0, -2.9752019622578523, -2.9776754813504196, -7.0, -7.0, -7.0, -2.6646419755561257, -3.4038922955594204, -7.0, -3.3012470886362113, -2.498861688992884, -7.0, -2.8530895298518657, -2.820551732299791, -4.202133980060819, -7.0, -3.0959825284443285, -3.248341156669196, -7.0, -4.154210882206974, -7.0, -7.0, -3.9107310980433807, -7.0, -3.4783539173187754, -3.0210514059168814, -3.321184027302314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.383456296524753, -3.120837060254737, -7.0, -7.0, -2.9657391111262315, -3.0643365478833755, -3.6447339274471924, -3.410608542568368, -4.311287538662283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.491781775584166, -3.8337716385611715, -7.0, -7.0, -4.248696487980903, -3.384263785722803, -3.4850112145785728, -7.0, -7.0, -7.0, -3.1917303933628562, -3.6901074394563307, -7.0, -7.0, -7.0, -7.0, -3.445275460995549, -3.1341771075767664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8198070645907563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8159428271964737, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.201028227093125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3799216155042044, -7.0, -7.0, -7.0, -4.078245298732825, -4.084844278240215, -3.2697284215142757, -4.379353870742188, -4.858200217962495, -2.7437697389633215, -3.1665724186953366, -4.855282864274575, -4.555408865558874, -2.767396572466008, -2.4505140363342623, -4.015359755409214, -4.381355787093678, -4.8551252652257055, -7.0, -7.0, -2.899408910925728, -3.36543292378377, -7.0, -3.1085248922338677, -2.2428196610285163, -3.9053760693328554, -4.556169779397686, -7.0, -3.5427009694481106, -4.258894575054327, -7.0, -2.7841928196976142, -4.558672577786327, -7.0, -4.378930599420471, -7.0, -4.262605319944301, -7.0, -4.1718492670490575, -7.0, -3.7522435260951665, -4.012276677439264, -2.2756379736210595, -7.0, -3.9036746843986587, -3.4850941325046456, -4.161397952545797, -3.6742696661144847, -4.380108687851405, -3.7803353173424465, -3.0383805221721714, -4.161649453645398, -3.8631026824566015, -2.542521389545207, -4.091074600463328, -2.9686697017203922, -3.633547003033476, -3.9546102975982214, -3.95580196003404, -3.391699451477855, -3.712944181356935, -4.08149732835276, -4.859780553965358, -4.5550097589461, -3.9554772853314835, -3.728336386700282, -2.8350079316834047, -7.0, -4.0775556349820405, -3.6634712349862872, -4.855385878893443, -3.0641345304339667, -3.4627894928053546, -7.0, -3.377018208642447, -1.5711782528254215, -4.554864538285933, -4.088047448128369, -7.0, -3.53447939331355, -3.448794627038752, -3.333156738826888, -4.857284238807806, -7.0, -4.170232370181804, -4.159705519859825, -4.394083775678255, -3.6428367959452066, -4.164626434613411, -4.260756888802261, -2.09443454153178, -3.1914277247755534, -3.066347226837513, -4.855773479628163, -4.554040702717402, -4.090310969424922, -4.386249196708923, -3.4866134627164285, -3.9722491359625955, -4.157517208532612, -2.77745745648593, -3.536594512043907, -7.0, -7.0, -3.508324979986373, -7.0, -3.5445168787428676, -3.5603490688931063, -3.3862169580055004, -3.102511455500595, -4.013090138125056, -4.856916097996645, -4.161523721301218, -4.3842339054735975, -2.826375974639867, -4.081299290281622, -7.0, -3.911287847949822, -3.873396175269904, -3.535368932420166, -4.38246732201583, -2.7432719933439316, -1.988617112231469, -3.9038674017124433, -3.3362428660289103, -4.080265627339845, -2.805452126011353, -4.258487624056927, -3.790009389829715, -3.5146228136944844, -7.0, -3.858555242671831, -3.0505802351210796, -3.6941428753094128, -4.854888759368555, -4.855434347907406, -3.4071749324348404, -7.0, -7.0, -7.0, -4.856070002803182, -7.0, -3.407911151195616, -4.038983293935556, -3.017287893248922, -3.7048880192472238, -4.013589510501978, -3.5952757118020995, -7.0, -3.856589942245573, -4.161960634305219, -4.013842737528274, -3.6127448297881615, -4.253222872946613, -3.742918403405083, -4.159849813729301, -2.625509999723006, -7.0, -7.0, -3.6878795845197208, -3.657354686201244, -4.010929614728667, -2.911313252681234, -4.385624145431483, -3.867491058154675, -3.7206140404234618, -4.164739384291432, -3.1633601822507593, -4.561822620044466, -4.857953334848981, -2.1028170491190084, -7.0, -7.0, -7.0, -4.080872901965097, -4.857127364488181, -4.157722642992314, -4.855500983970402, -3.6966293754051547, -3.458879476116883, -3.0628470403742627, -7.0, -3.4853295331272607, -2.613166197059653, -4.859456543145925, -3.9263881834991534, -3.6711844175736785, -4.560653734255116, -4.088561311791215, -4.38524868240322, -4.018605404625595, -4.015629159583489, -4.260321870246313, -2.733318528832285, -3.857652067819292, -3.0040460900514363, -7.0, -3.051945625614184, -4.563463286075492, -2.378125480538288, -7.0, -3.0156740440360554, -7.0, -3.408742957890499, -4.079946618441097, -3.4471878582356688, -7.0, -3.711644564032507, -3.144115472711366, -3.450740462038178, -7.0, -4.088903550093058, -3.742258294562316, -3.6897637862550114, -7.0, -4.85524043938708, -4.158078901737636, -4.554664780556801, -4.379196703832135, -4.380476562832904, -4.55484638228861, -4.381018760788876, -3.394232727213359, -3.729020077925111, -3.566268363427344, -2.5459937176223186, -7.0, -4.556284404786872, -4.557025722386383, -3.860523665211478, -7.0, -4.077858253926433, -3.7191477268103066, -3.385355990680808, -4.862656033629871, -7.0, -7.0, -4.856082101490554, -4.856747010776003, -7.0, -7.0, -4.863132442718785, -2.9959668206801613, -7.0, -4.855385878893443, -7.0, -4.07843869186193, -4.85886189474819, -4.557416965146272, -7.0, -4.5578559410728055, -3.5797607384109624, -4.0186826701196, -2.973285586310765, -3.74449974079471, -4.261233121576351, -7.0, -7.0, -3.2467636369419, -3.3460386700879425, -2.2094066004154516, -4.557982139681939, -3.008564688737109, -2.8498106890941513, -3.425075097063868, -4.011842207926475, -2.9682305969102893, -3.039017321997412, -2.8392937923597086, -3.3914814754495763, -3.065997527906678, -4.0838727351483755, -4.159717546180216, -7.0, -4.1622357237662015, -4.170719244166571, -4.266572693335908, -7.0, -4.856940247940732, -4.1623373431820045, -7.0, -3.7487186396632652, -4.8551980103548225, -3.865595462350612, -3.3825900445189507, -4.082671697105723, -3.965724844764628, -4.163221026715578, -2.7824557613080687, -3.3410936383881586, -4.3791301930135615, -3.086869447540834, -4.855858221196212, -4.382131157528002, -3.3310684902283065, -3.9607739167652127, -3.6254749153872496, -4.17262627974791, -3.343858552512142, -4.262094964674063, -3.8723952147066427, -3.7200943020887176, -2.5667280718764567, -3.573164571957485, -7.0, -7.0, -7.0, -2.80180043987912, -3.6216493380712738, -7.0, -4.5574049321616235, -3.39049941719982, -4.379668034033654, -3.6889119807631894, -3.653140125329155, -3.520056119575792, -4.159753623143345, -4.258140217203789, -4.032037086801305, -4.858771725435463, -7.0, -2.8755306404318337, -2.0602941627195324, -4.557783811113845, -3.847292161501474, -2.480500139613694, -3.3072707814341467, -7.0, -4.382587317728938, -4.555414909808997, -3.969870006546593, -3.1886191672078485, -3.0314596718494946, -3.910861465201803, -4.855603946870416, -7.0, -3.788174265434528, -7.0, -4.159476956474234, -7.0, -3.5774171131475145, -4.8572540750698945, -2.929317571471571, -7.0, -4.85532528501812, -3.3712290462435877, -3.433553165849193, -3.340342530579106, -4.877451976617107, -3.0631704352090847, -3.800652937230222, -3.8961733476900053, -3.1275709364394157, -2.8008148119778054, -4.061619400488769, -4.398882851161249, -3.3582490253904624, -3.392510535867316, -2.993273089347496, -3.576126791570625, -3.447524488915304, -3.1483381904833547, -3.3767032686907177, -3.8342564079801793, -3.640088468106248, -3.9204537932826264, -2.9796104478095966, -3.6753006734237945, -3.2363596486015918, -3.52572876813568, -3.519133917830289, -3.25375912042996, -3.790943296475265, -4.388663548407268, -3.011523824754196, -3.653537478094413, -3.176461259564539, -3.321132199092705, -3.358300615104299, -4.86410151204742, -3.4432734208344367, -3.749885323442982, -3.582880285080852, -3.5943423167877353, -2.8820014945835553, -4.859636578999392, -3.131736625062677, -2.78760911244904, -3.6415567309708003, -3.8791417734536084, -3.1081937454828905, -4.564955891631275, -2.040840249302447, -3.3768184031718285, -4.17205387889541, -3.4147623034302255, -2.4351598613738563, -2.7585206179623727, -4.385045916619704, -3.0151743839266087, -3.443681988438522, -7.0, -3.508383807427543, -3.0315507573120577, -3.256173477745645, -4.8596905752051205, -2.5711701247620056, -2.4047181728190323, -2.6535150368844436, -4.856813445749757, -3.7671729976765063, -4.5562783726258385, -2.8339003854460367, -3.455994682544721, -2.496559231614817, -3.5045388218845748, -3.374460999517715, -7.0, -3.3207928070801973, -3.0725599244856134, -2.6950585421423634, -3.9731047522149807, -2.615994902631364, -3.26605241210841, -2.868331669204607, -2.802756626747439, -4.256819935036449, -2.7638008538551375, -2.8667134247107615, -3.643353961976863, -2.410481646285617, -4.380325832080988, -3.9725036844873167, -2.8567210964328824, -3.187362958111993, -4.555215405126073, -7.0, -7.0, -7.0, -4.882882981767894, -2.918961319225426, -4.167104566972922, -2.777054076316709, -7.0, -4.5628992633333025, -3.149256445629004, -4.168037606888807, -4.3874076249281835, -4.856602026457208, -3.9309150873258627, -7.0, -3.20194306340165, -3.9736819185039836, -4.381181288265895, -7.0, -4.450110481575011, -4.563996948568181, -4.034588353713625, -4.85982853501601, -7.0, -4.109336642421726, -7.0, -7.0, -4.018183173433062, -3.9180827846421873, -7.0, -3.4957790855584014, -7.0, -7.0, -3.596707029681446, -3.108671821835402, -3.4318985066229555, -7.0, -4.869002774465852, -3.424805437932406, -7.0, -3.7557752085304474, -7.0, -4.561196822498337, -2.7957772425463525, -7.0, -4.5553121461148125, -7.0, -4.384872894492921, -3.8392951720994892, -7.0, -4.385749227675279, -3.9572360388763665, -7.0, -3.960565902818198, -3.208333844497951, -3.9386998099696515, -7.0, -3.918828024910367, -3.968821379558316, -4.864617861655226, -3.2671717284030137, -7.0, -7.0, -7.0, -4.166228758210086, -2.605425429396821, -4.024532577883043, -3.8756457198482495, -4.385039951486824, -4.858296524533886, -3.990299997459176, -4.556875150501956, -3.9840150839542603, -7.0, -4.263274992597102, -3.474266708363068, -4.861426869337884, -7.0, -3.54612746259304, -2.674512861609274, -3.8769218431745798, -4.167275971399233, -3.252924384710753, -4.267746494644809, -3.4862207199417723, -4.860972511322973, -3.436220973274136, -4.0344164421362345, -4.861468694204958, -7.0, -7.0, -7.0, -3.718118617465126, -4.869636481314028, -4.257306505895937, -4.0911978303754495, -2.9233932493257404, -4.564121375515653, -3.8536373819585945, -3.021754067367309, -3.925185991397114, -4.267030853292765, -7.0, -4.562138156677707, -7.0, -3.924164378141671, -3.765737312131352, -4.881059242040658, -7.0, -4.164216001716105, -4.081953072849033, -3.3800121444441236, -4.2569761776910955, -7.0, -7.0, -4.554228626325214, -7.0, -7.0, -4.856305866433299, -3.8893745457940083, -7.0, -4.019318102912398, -7.0, -4.159272350379319, -4.856414683381129, -7.0, -4.557885991687047, -7.0, -4.02195086208636, -4.862363974774405, -3.623156217322164, -3.932033835682918, -3.924790257954725, -4.858537197569639, -7.0, -3.969637197040949, -4.556881174379756, -7.0, -3.071331704755304, -4.85886189474819, -4.557603433787706, -4.094243964322999, -4.567514525876742, -4.168709570145828, -4.855906637526463, -4.555203310987142, -4.388829153898841, -7.0, -4.180091451515921, -4.561256461130405, -7.0, -7.0, -4.387300822448285, -4.382215223047534, -7.0, -7.0, -3.783331762887424, -3.450214883607424, -2.9672532160042393, -3.2712516660130433, -3.1859845811695098, -2.956061921646337, -3.2555739938220456, -7.0, -4.08441539833186, -1.8217659201065737, -2.276956275912762, -3.552129141028904, -4.391517306849448, -7.0, -7.0, -3.382647303154711, -1.269276111291898, -3.3823080457324823, -7.0, -2.5518204510649163, -2.3959346665263, -3.1156805676460455, -3.7855611597971244, -4.3818908806262575, -2.6305973558006004, -3.3984608496082234, -7.0, -3.230856581359965, -3.7928992371582373, -4.384120341773882, -7.0, -7.0, -3.50611588719763, -4.08543329741699, -2.121465808378882, -3.5372432508097047, -3.134713812032996, -3.0654907946646865, -2.9013187157134652, -3.908181085136654, -3.2135000483995153, -2.89234761433871, -3.618780024506215, -2.7651716502632686, -3.3461039217773387, -3.695761776133511, -4.127978988916909, -3.6987267313033447, -2.957093956774686, -2.322852258026174, -3.6440773478650277, -2.1792825146142656, -3.6302098739419373, -3.787247880331954, -3.16189623398293, -3.0410800122072543, -3.694535004253942, -3.917855464834902, -7.0, -7.0, -3.1360860973840974, -3.5918592906551927, -3.0331052901726596, -3.6858312746260635, -7.0, -3.417836911626325, -4.382323283381981, -3.316958297346295, -2.6249224524783243, -7.0, -3.3065075067992313, -2.636810067102488, -4.082803315998645, -3.0151249381653735, -7.0, -4.085861173788451, -2.811449323773955, -3.330819466495837, -3.5426298348536434, -7.0, -3.19131947982865, -3.4888326343824008, -3.524493486633317, -2.0805322372237627, -3.326864749797675, -7.0, -1.5546954363548962, -2.020292753888836, -2.0633333589517493, -3.2068798223063, -7.0, -3.3059133062904342, -2.156687577399937, -2.164859597487805, -2.0264496151873232, -3.431202884556517, -2.3455535206185987, -7.0, -7.0, -4.3819810000434645, -2.4482437350117094, -3.905777896787175, -2.8125290030350776, -3.923364927071542, -2.876826150881778, -2.9438241512023096, -3.913619612233253, -7.0, -3.192828704060413, -3.3203367243872486, -2.6616761964944007, -4.394469192347434, -7.0, -2.6176259187047988, -2.9015544716083577, -2.0033718191111585, -2.7400116025859536, -2.354563031204298, -2.123238609395474, -7.0, -3.254676005181548, -4.0903815147216305, -3.113577139588002, -4.09652766560644, -3.3807702005041653, -2.7005149208160484, -7.0, -4.391993072259713, -2.487509434506823, -2.5719547470387742, -7.0, -7.0, -2.7113807411078614, -7.0, -7.0, -4.382197210377454, -7.0, -7.0, -3.0729341054228705, -2.930304643867514, -1.6669457144935187, -2.1261468749667998, -7.0, -3.3803921600570273, -4.081635301502951, -7.0, -3.2521592696791632, -3.8455445133344206, -3.637146504140139, -7.0, -7.0, -3.438067450453494, -3.094262930211214, -3.604154024809671, -4.381313673105942, -3.562530768862261, -3.622369470494735, -3.9072500828813284, -2.6749131095237257, -7.0, -3.9404666776635286, -3.0725506671486116, -3.70763829538, -2.729206697200022, -7.0, -3.9127179074056118, -2.5338099046916684, -7.0, -7.0, -7.0, -3.6148972160331345, -4.38747881199254, -4.085272735033534, -7.0, -2.711630374111664, -3.3078524552347384, -1.9388025691853918, -7.0, -2.9689045352426127, -2.2219363049007326, -3.7921464540322676, -2.7196534809864565, -2.5679637327475477, -4.099749680848987, -3.1359691202060493, -3.70372115992702, -2.974545805884931, -3.1935767529834385, -4.402897308556408, -3.1233070710124684, -3.690231531192315, -2.6235115781367413, -7.0, -2.910117254150511, -3.085986739996101, -2.589003893874719, -4.385302339856317, -3.404234866653423, -4.080788775961754, -3.865991800126275, -7.0, -3.9258275746247424, -7.0, -3.912647106218317, -2.907903783576497, -3.2988194999682423, -7.0, -3.23973313983308, -3.7119383877182592, -3.7101314745149105, -7.0, -4.3818908806262575, -3.6090605499300867, -3.6841628756550566, -7.0, -4.087870112690256, -7.0, -4.0894635308401925, -3.3884427945673337, -2.794202774938725, -2.443657006731713, -3.374130655189905, -7.0, -3.91087331482137, -2.8839983793774717, -3.0960405542954277, -7.0, -3.907160458165922, -3.8093576702111056, -2.811695282873729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.906819715466545, -4.103889203582334, -3.091471549501543, -7.0, -7.0, -7.0, -7.0, -3.915382244962084, -3.9142020722544286, -7.0, -7.0, -4.454433228116589, -3.0638789979485685, -2.304275050477128, -2.4085008811994832, -3.2911638495122544, -4.383366482755039, -7.0, -2.882102344676351, -2.8526155200794925, -1.9215443238125294, -4.393048466416778, -3.4949716071138606, -4.093736784562339, -3.344624454648622, -3.909948072212358, -3.1817396773133635, -2.0385958961296025, -2.0989869485301065, -2.7426798207116816, -3.5307829207652426, -2.518531255899576, -2.5770319856260313, -3.480868923687168, -3.3992236215272698, -3.1220027758749547, -2.7470479940428234, -7.0, -3.2725556132438163, -3.700721019369356, -4.3863384163575105, -4.404012226182244, -4.381764682017124, -3.4119898767888595, -3.043863436585028, -4.398460849608223, -4.120244795546365, -4.101317377184387, -3.1256124650617196, -2.338581857248278, -7.0, -2.762465651906572, -7.0, -2.977934547322576, -2.894505945868358, -3.503960827812307, -3.3678748470760316, -3.7298610470505493, -3.570367785823503, -3.5626836386190908, -3.6530194510996132, -3.372476821350871, -3.063053305570029, -2.368117767111091, -3.9047515997788804, -7.0, -7.0, -2.349710783664991, -3.1008872548535935, -3.542985391369392, -4.09029333131011, -3.139332147259633, -3.432024532665689, -3.296428912995118, -3.9112108931375533, -2.748081569233415, -3.3505651630873636, -3.191939809656508, -3.842047288509638, -3.3505651630873636, -2.8755306404318337, -7.0, -2.7794574747884377, -7.0, -3.3954283281670854, -3.1429502693797233, -2.7710727832211948, -7.0, -3.3948017771627113, -4.385499027152057, -3.830668848595259, -3.041100132448002, -2.903737929194321, -3.331309173955823, -4.3829710813619815, -7.0, -3.639021399134131, -3.687635961046466, -4.090434416175122, -3.7908654778443176, -2.7839967388630753, -7.0, -2.506119430030942, -7.0, -7.0, -3.845139399424021, -3.8038981197297295, -7.0, -3.9676883504533125, -4.0982686749242, -3.528062323092907, -3.5907721950139786, -2.8362754143350264, -2.736422771941762, -3.616842959534867, -4.44100348364844, -3.8630550617948773, -3.704470826766164, -3.811462114140843, -3.299000890190924, -4.653029106272008, -3.4880661257471295, -3.289848300578164, -7.0, -4.042969073393181, -4.437623742997059, -4.386648109594341, -4.150572247668998, -3.229049111241418, -2.726619352948061, -4.352404434139514, -3.8397419377808935, -4.289744985155116, -7.0, -3.038034210649267, -4.279176260897295, -3.7731401279444228, -7.0, -7.0, -7.0, -7.0, -7.0, -3.183939405552801, -3.687049367377696, -2.827739375052605, -4.09377178149873, -3.3850821170480616, -3.2594014866290206, -3.097326735715773, -2.4783802829285815, -3.1469802773754947, -3.412830002562326, -2.463013153914313, -3.378190179082691, -7.0, -4.709820961709942, -2.8938372187011825, -2.9091425428224214, -7.0, -2.8255200663675057, -2.61558977880885, -7.0, -3.298576553045992, -4.373298279614871, -4.4514486901432795, -7.0, -3.2996323109915098, -2.661496740207439, -4.182035386194043, -7.0, -7.0, -7.0, -3.551152538599382, -7.0, -3.9387307545245966, -3.5508884680813524, -7.0, -7.0, -3.80433418322736, -4.005935151237362, -3.9713944077328507, -3.66337107549875, -2.852795753117633, -3.1758450890945245, -3.211925316063954, -2.632850802194602, -3.6936214394729348, -2.674219902021187, -4.015428346874354, -2.9874108726919797, -3.928882994676684, -7.0, -7.0, -3.445441743912532, -3.938259470794594, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8669853928572224, -3.299138371401992, -2.125713570858261, -4.385516903399025, -3.930082633392371, -3.06752864063947, -3.1144608565074874, -3.5056925074122, -7.0, -3.067011308589492, -7.0, -3.1226190995465233, -2.8292096066377024, -4.089940418498635, -7.0, -3.790120894105942, -4.410406027068357, -3.547774705387823, -7.0, -7.0, -3.6933751510251853, -7.0, -4.0916669575956846, -3.706478811975557, -2.577588881425179, -7.0, -3.2995072987004876, -7.0, -3.6066321228503484, -3.4574621189595107, -2.818576388835446, -3.004280419991118, -7.0, -3.722502298201269, -2.449018025870428, -7.0, -2.9044368413491313, -7.0, -3.3606450425580268, -2.1153924936862136, -7.0, -7.0, -4.415741036222344, -3.1223711097261417, -3.3743664143331245, -4.38976836093798, -3.625946620256845, -3.2827266613816737, -3.7891751343253475, -3.175699365701362, -2.2801123594578954, -4.594315188234234, -7.0, -2.955110230970552, -2.8724961912956757, -7.0, -2.5237348569878146, -7.0, -7.0, -3.1554188575044515, -3.4564841235748665, -2.2898474903567414, -3.024830339364429, -3.160926389562797, -3.7031193462360776, -7.0, -7.0, -7.0, -3.6924356277125225, -7.0, -3.5080244315589613, -2.4872404509036055, -4.098972350263975, -7.0, -2.564081293595317, -2.0607577802449364, -3.1879122240468787, -3.4594595033417885, -2.9878250998853106, -3.724849087629386, -3.4632507733927764, -3.6996122849986963, -2.7870807690048474, -3.496129785515922, -4.400157923390449, -4.397522885718343, -4.383007041822538, -4.381584334652752, -4.0656170557268725, -4.122314197968806, -3.1631438287886273, -3.3810165714514735, -2.5137881643916122, -3.933571641443591, -3.5810503444369295, -2.9624655257438413, -3.605166468545595, -2.958629777768527, -7.0, -3.4047824189666427, -7.0, -2.8667691028858657, -3.0525708294952705, -4.454570482102004, -7.0, -3.174247988032499, -3.0338780932956375, -2.87143820792516, -3.547880146528284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.812622761461787, -7.0, -3.3671016750541347, -3.91184979649942, -7.0, -7.0, -7.0, -7.0, -7.0, -3.416007740449289, -7.0, -3.8627394429551383, -4.167538857059484, -7.0, -7.0, -7.0, -4.131121218232961, -7.0, -7.0, -3.0686515762089925, -3.915382244962084, -4.3919402351671355, -4.130140705819276, -4.420351882127958, -3.940831798389784, -7.0, -7.0, -4.112001395486189, -7.0, -3.847186928162049, -7.0, -7.0, -7.0, -4.875299770323185, -7.0, -5.574108275787997, -5.5741233283997955, -4.920999961706768, -4.553645538162373, -3.6349634466665375, -5.2731923196083965, -5.030313991627524, -2.2555795436938713, -3.326022133992245, -5.176164793362221, -4.875240734689373, -3.2580957138341553, -3.0483957996741426, -4.729500335406759, -4.796253928649793, -5.273060911077467, -5.176250471178607, -4.875159692319408, -3.034675266873209, -3.513578060938442, -7.0, -3.5062291748696355, -1.8671743601343673, -4.761607519173373, -5.030219092203501, -5.273071911554271, -4.263262426772131, -4.495450091431051, -4.833961483448347, -2.5332689299307587, -4.761607519173373, -5.574176008432909, -5.273151801393888, -5.03026885912154, -4.319705071921085, -5.1763095095662175, -4.120713017079302, -5.398033227215721, -4.194911338636273, -4.428157364717315, -2.197559184222238, -5.273184216267906, -4.92114927101706, -4.213323692974096, -4.699524967482672, -3.4915328873037605, -5.1763534937358475, -4.62026621966285, -3.762639904201196, -4.69954925623636, -4.127651373635002, -2.493914732519208, -4.168868798061637, -3.4034992663875285, -3.6555697303870756, -4.383982637289572, -4.185241987464146, -4.0634973325573265, -4.444124056396151, -4.307320804551934, -4.307327745831848, -5.574181797057869, -4.596687937868687, -3.7562988995765636, -2.765603018334299, -5.176259153797791, -4.596411301688093, -4.0909486408698665, -5.875149271488847, -3.4780471080710216, -4.057747916795115, -4.972116595970914, -3.885104366555775, -1.8116883655674934, -4.920947286097199, -4.413769595610617, -7.0, -4.761340791717771, -3.5005533808904343, -3.2757377809986696, -5.030226036766992, -7.0, -3.903258012587803, -4.699361850661637, -3.8853502563578943, -3.9372918723462416, -4.319602211530264, -3.8980360208904115, -2.2017314834669692, -3.83143508369811, -3.5077278367650973, -5.030081335414012, -5.574089169798587, -3.8007384436964013, -4.553678482278634, -4.128030391104316, -3.9905256674594383, -4.972161166333603, -3.0864008375291396, -4.4441072798376, -7.0, -5.574107117873171, -3.4890886085265387, -5.398046542517314, -4.1358447556263425, -4.069494658929803, -3.877240000888399, -3.0891539461867294, -4.343907655813822, -5.03019073408336, -4.384248171139348, -4.384329129555316, -3.043458415537492, -5.0973880528051705, -5.875131323916717, -4.398983377343561, -4.037985679548938, -3.856055887241909, -5.097397885872501, -3.1528535263650377, -2.6756150647365833, -4.532972571333027, -3.1934804975764015, -4.921193822378502, -2.3960388820617213, -4.645181184614235, -4.113006362769909, -3.8163929090370017, -5.273146012768928, -4.574411543157535, -3.0006263590418154, -3.9127134826695467, -7.0, -5.8751539029999655, -2.710710524510052, -7.0, -7.0, -5.3980216483607455, -4.4772468924150495, -5.574108275787997, -3.550381532463171, -3.7774671001061875, -3.171527266019217, -3.0105439709914843, -4.428283507479297, -3.419530098342456, -5.574130275583126, -4.833870622926967, -4.4777190114253855, -3.4386348677898724, -3.620867921864364, -4.972044810706296, -4.796110421820556, -5.176508560266957, -2.6087185575113128, -5.8751544819353825, -5.875116849527947, -3.8114022197337674, -4.119812498380216, -5.574186427902285, -4.043175550211232, -4.252563520384129, -4.186079508649366, -4.357711408399213, -4.444562331236816, -3.2799885722064595, -4.796675494929048, -5.030290268715527, -1.8170261065401723, -4.87533217863164, -5.875141745177931, -7.0, -5.097346982881885, -4.875305557698496, -4.761321692144821, -5.0970032315517395, -3.6490689996707366, -3.8839758763210157, -2.938347062491972, -5.398035542949671, -3.6987703555586187, -2.247491266694592, -5.176565249878006, -4.09941588705348, -4.08464776085473, -4.5969817431335205, -4.399095430831928, -4.203672752553866, -4.533510927304131, -4.495431586724228, -4.5747741441598, -3.721854410698838, -4.671239393939525, -3.57629872504821, -7.0, -3.4388088214050185, -4.307785625187721, -2.6993153798961673, -4.9209935946648535, -3.461456300498588, -5.2730707536224655, -3.9238441992488444, -4.796220949422049, -4.6453627332859915, -5.574279034422683, -4.875382522457109, -3.9589045217065673, -4.428986458109622, -7.0, -4.274178639459329, -3.5801274505122467, -3.8219614856202524, -7.0, -5.875135376659126, -4.7961191030165615, -4.875169533985348, -5.176266099768159, -5.176388793597084, -5.273133856405366, -4.796221528026575, -3.739550560964701, -3.9085028907118207, -3.1432576161632504, -1.8111816063523138, -7.0, -4.833930812913641, -4.699298785540872, -3.983469571943903, -5.875146955714764, -5.097057648035371, -4.370933279433978, -4.0976459525488895, -4.6205570690404585, -5.875105269669586, -7.0, -5.574184691341416, -5.875279513902236, -7.0, -5.273140224066812, -4.444501646725794, -2.7513837398972187, -5.875125534219098, -5.574118117939368, -7.0, -4.574218263621033, -4.875472201021432, -4.7962498787040815, -5.574085116904895, -4.72934300831835, -3.7635719665401894, -4.398810619711163, -3.302755655340937, -3.8873204210410535, -4.319571579852526, -5.8751828488254665, -7.0, -2.925193438133817, -3.889187878462289, -2.2608270533987813, -4.699390776552473, -2.51850739505998, -3.7482973971048668, -4.036352282404115, -4.574252990834661, -3.3696183681731737, -3.716523724333125, -3.1175533996403244, -3.760462770747876, -3.245918565044522, -4.295967357542262, -4.307227086413063, -5.273146591634895, -4.574661405945726, -4.168913242133391, -4.24291914249205, -7.0, -4.796104055499863, -4.6452557790817, -5.398155365331024, -4.729720613228042, -5.875131323916717, -4.370959852740585, -3.5614677682783173, -4.3842811346015615, -3.9625512306554445, -4.460806512248824, -2.272641177074865, -3.5288799874426102, -4.920982596827135, -2.933582396764532, -7.0, -4.796328556603315, -4.05096407122405, -4.597200233109779, -3.8756456625927447, -4.332621950244293, -3.8100859701678447, -4.5335513782347565, -4.091414960840913, -4.3446944522897075, -1.807119893883509, -3.5566981259337616, -5.875137113537153, -7.0, -7.0, -3.4869468392948924, -3.9581008310880366, -4.9722445064263345, -5.398319126995318, -3.9786496522708426, -4.796091901355749, -4.357542742943342, -3.713811373193294, -4.002621004336619, -4.699366478933639, -4.533168098898093, -3.6649077558393044, -4.671336598270019, -2.0602941627195324, -2.7794574747884377, -7.0, -4.33137175881028, -3.6607827145202725, -2.3649979458602117, -3.66064704025109, -5.8750983216063615, -4.574514513294094, -5.574220578855002, -4.063880466051713, -3.7138683912822246, -3.7378803015508915, -4.344579498976326, -5.574138959406015, -7.0, -4.160257808741388, -4.972194157032664, -4.921195558053335, -4.761540418793504, -3.9742473742929625, -4.972230038807431, -3.1126862649444966, -5.875111638629893, -5.875143482030488, -2.879348699802187, -2.526882454647063, -3.0440275882460224, -3.8437597778937755, -2.6381556106856254, -3.28801204284906, -3.7651353157102356, -2.711352486869325, -2.5448957195226938, -3.5812519238247402, -3.952789561110113, -3.0192717565242306, -2.6894274050095857, -2.325126873704227, -2.9962720047293314, -3.1832038591808423, -2.878622355982108, -2.583308275404773, -3.4168320210448146, -3.0584774293788746, -3.7869953976090103, -2.063605011562094, -3.2426676169006745, -2.871390169322596, -3.3327795532366213, -2.808008751906401, -2.542347267174691, -3.1687505243233347, -4.307912728272152, -2.7585280362135705, -3.0872420359898087, -2.682564292252525, -3.0086809154269707, -2.8435499033564087, -4.159927374995174, -3.0648442126351885, -3.300141591368224, -2.869465178735402, -3.2537496944674316, -2.7757071643361386, -4.645089803387881, -2.5990497947493694, -2.297533665441869, -3.519207039342475, -3.6220078252245322, -3.162173680246885, -4.344657485698993, -2.254843910889203, -3.420809805024999, -4.0636854794912205, -3.2427103877041388, -2.0877205730045074, -2.8704208306755414, -4.043217758875041, -3.028695580205779, -3.7646042932870474, -5.030107385215894, -3.716927395607391, -2.574061758322598, -3.7438572042505402, -4.620270268605282, -2.328167646552352, -2.031696637319982, -1.7075942074338524, -4.9721877906016765, -4.026349663465754, -5.030229509007095, -2.400852103270976, -3.6991885346483975, -2.1246224358834676, -3.483506848766961, -3.0249743375432385, -5.5741331702100485, -3.118303671078639, -3.0525460952777084, -2.562282086714992, -3.963282084212685, -3.2657370805458465, -3.7170204972570655, -2.5281314788427354, -3.1171319781420097, -4.875477407595086, -2.530911767785156, -2.4140516692585825, -3.9577889718788883, -1.9096004257787231, -4.8753385442652055, -4.057510501673362, -2.6311440540044337, -3.041518803428553, -5.2731691668058485, -5.875153324063777, -7.0, -5.097042018466742, -3.969276095488932, -2.932504495346671, -4.01278061660159, -3.052271563538768, -5.2731888467667005, -4.357423135618709, -2.956034209511922, -4.090878765174447, -4.4136032189545995, -4.671128276629089, -3.3977397844052803, -5.273121699701525, -2.6455801819214715, -3.6543391188817833, -4.644963688854928, -4.3445927865928935, -3.782040708598562, -4.160018673786781, -3.5719548849719382, -5.273512280679019, -5.5743693067715, -3.738290420067439, -4.875408560077064, -4.921236055163652, -4.5334698946539165, -3.8472998710539152, -5.875108743659514, -3.2508882480862953, -7.0, -4.532787375320257, -2.965275059204632, -2.5828362847759267, -2.9252857913595376, -7.0, -4.168841090364729, -3.497559335583093, -4.796370782244777, -3.8987211410850873, -7.0, -4.049657650569741, -2.988758028972738, -5.574128538797712, -5.273178428074985, -4.554022223501833, -4.1514513801528805, -4.137218265189426, -4.972292535465165, -4.620580189857018, -4.242114805477301, -4.972344030581982, -4.296128050854992, -3.349856647581789, -3.322334046036867, -5.875169533985348, -3.786833916184531, -3.8352453860764224, -4.331932594695503, -3.188614270106468, -5.176415411267064, -5.398118322328041, -3.888069980618693, -4.076688979039402, -2.148795703380202, -3.9626303167722345, -4.161074725658612, -4.645336141727953, -5.8754282319102185, -3.582044414222515, -5.2733283174018215, -3.448229758902606, -5.0971762986377085, -4.018698765367438, -3.351804931431722, -4.761772912039747, -7.0, -3.3543247155352574, -2.688179392577509, -3.9229191264016565, -4.319860472029068, -3.1314339683837114, -4.120612025542255, -4.008694523323237, -4.533239230579834, -3.1947717439536922, -4.057901706344098, -4.112240278641509, -4.671508966732346, -5.273107805909014, -5.574094380606331, -2.9059469355947005, -4.5147780911123805, -4.262704542325864, -4.534061891739996, -2.7349918073029826, -4.3445760325747065, -3.237262751459272, -2.781089127667723, -4.114020527757729, -3.8310311349676667, -5.176431033922291, -4.357349159048321, -7.0, -3.8438646402793872, -3.692677611096558, -4.187417688853972, -7.0, -4.135480179269442, -4.194312526129325, -2.963286852631787, -4.645035428217922, -5.176358702092532, -5.398021069409893, -5.398014700899577, -5.87520600409689, -5.273110700485775, -5.273173797465104, -3.6182452755730448, -4.46084697750166, -4.514273958642971, -4.644899460500739, -5.176453020410962, -4.513494376034757, -4.4950914223088745, -4.185237358982509, -4.22212834524257, -3.796965553865301, -3.9949205954815543, -3.173234179107539, -3.5475481338589487, -3.9042394603397237, -4.495213518763391, -5.875141745177931, -3.7153104543716355, -4.159329992391703, -5.875111059637361, -2.8071793729279872, -4.231980183961163, -4.252165055604942, -3.5421075775291375, -4.320082210826953, -3.9677663165382757, -4.79600507614726, -4.6991240068041105, -3.807852333206259, -5.097008441935764, -3.9231276844541685, -3.9949142356445018, -5.176576818277254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.506521267409151, -3.739809599021359, -7.0, -7.0, -3.9031442704095385, -3.9191565722392943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.368115969880938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1687213496997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.364163115095428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.910133278495993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.756346989433602, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.172135696649566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151959440597039, -7.0, -4.032376971209936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.858115932190066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.390405156480081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.911629328936281, -7.0, -7.0, -7.0, -4.694271673113084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.041471640613747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.545653424096331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.753847997272199, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6550846250819795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.660675788338524, -7.0, -3.693023067923694, -7.0, -7.0, -7.0, -3.569744443109588, -7.0, -7.0, -7.0, -3.7802452838653524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.281821741666723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.466951605477452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.71357453777207, -7.0, -7.0, -7.0, -7.0, -3.7634279935629373, -7.0, -3.74020473550745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6557401369917155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5275474157483435, -3.887335930399167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.557783811113845, -7.0, -4.33137175881028, -7.0, -7.0, -3.9058456771667958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.37984917876283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.206096944706567, -7.0, -7.0, -7.0, -7.0, -4.277173555485786, -7.0, -4.715066931328898, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.009110806132213, -4.7212086137835625, -4.299982082719686, -7.0, -7.0, -4.199060042514597, -4.446904618975314, -7.0, -7.0, -7.0, -4.786394685839313, -4.280555608006274, -7.0, -4.114344054609816, -7.0, -4.660893924309038, -7.0, -7.0, -4.475286107828074, -4.1667852197354325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.456957849457605, -4.192400170360129, -4.617000341120899, -7.0, -4.371824907328892, -4.766104120608411, -7.0, -7.0, -3.7321323001969113, -7.0, -4.634119409209181, -7.0, -7.0, -4.144667594231179, -4.265044352345405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.378161609554913, -7.0, -3.1684974835230326, -4.515728171743949, -4.710187907543857, -4.560521482829096, -7.0, -7.0, -7.0, -4.655834477402838, -7.0, -4.326639624238483, -7.0, -4.2249472187770865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.899793153046949, -7.0, -7.0, -4.944985767425724, -4.656285109743019, -3.5907304057926903, -4.3480652533682305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.322026232058189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.599490065125433, -4.794481075584251, -4.789869675649222, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.202379321079624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.870758843736827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.311478367438068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8877860348383715, -7.0, -7.0, -7.0, -7.0, -7.0, -4.169439298978941, -4.549861188471943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.399950474386311, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5674968911042226, -7.0, -7.0, -4.20115122765526, -7.0, -7.0, -7.0, -7.0, -3.45117215751254, -7.0, -7.0, -7.0, -7.0, -3.6797911709803546, -7.0, -7.0, -7.0, -2.946452265013073, -7.0, -7.0, -3.773127924033335, -7.0, -3.8572721735640414, -7.0, -3.484584529282843, -2.90132207214577, -2.626150781218194, -4.027553454050221, -7.0, -7.0, -3.7234556720351857, -3.3374392932692314, -3.5298151966446305, -7.0, -7.0, -7.0, -7.0, -3.0201699775354873, -2.9148057701698518, -7.0, -2.7728823371830527, -2.331915518756035, -7.0, -3.1915907263792107, -7.0, -3.0993928573323, -3.0570952896126675, -2.5178207322576007, -3.3652787155355575, -2.3873898263387296, -3.000867721531227, -7.0, -2.416640507338281, -2.969765257712867, -2.582986110380645, -2.4222717167305126, -3.2960066693136723, -3.4120123012470613, -7.0, -3.2826976226551636, -2.3833844469949503, -3.5020855592260456, -3.404833716619938, -7.0, -3.1478529205561894, -3.7945577512547617, -7.0, -3.937568038600383, -2.716965947239607, -3.8588378514285853, -1.749062739249335, -2.0456444402979317, -2.873837081117421, -2.6859655440604007, -7.0, -3.33665982345442, -2.960417921149897, -3.3394514413064407, -3.8221026686469206, -7.0, -7.0, -7.0, -2.961373627594801, -3.1653475667241158, -3.3056379379043346, -7.0, -3.2034136800964528, -3.7724684030532805, -3.7353992699626937, -3.290212746919529, -3.1781852925373903, -3.9116369331294423, -3.2731827770487643, -3.778729923996112, -1.909751520121109, -7.0, -7.0, -2.6065157176196125, -3.8768526476013436, -3.016057865962853, -7.0, -1.3461693549750695, -2.446550673565175, -1.645094623553164, -3.6516656039229356, -2.3408645645477133, -7.0, -2.8555712833674027, -7.0, -3.122598107677436, -3.4759615891924236, -7.0, -3.210318519826232, -2.74531506516047, -2.9927191631771874, -2.644673001133217, -7.0, -3.2916352070879005, -7.0, -3.294833494244287, -3.1685711364498443, -1.6657210594926508, -3.2976875755910435, -3.4180802200592306, -3.5412046906832586, -2.4291239733157144, -1.3176063039586632, -7.0, -3.4894662813031285, -2.506311711911182, -7.0, -2.7728202722091733, -7.0, -7.0, -3.5814945422908995, -2.747460362247467, -3.2108088200066947, -2.9170457648784867, -2.910133278495992, -3.6802797148108306, -3.80543288813214, -7.0, -7.0, -4.540262719307992, -2.716067583629281, -2.6847925759279203, -2.217206793928876, -7.0, -7.0, -2.521602560625828, -3.080781049287244, -7.0, -3.7730546933642626, -4.15839265038712, -7.0, -7.0, -7.0, -3.780677274433368, -7.0, -2.6267724474822196, -2.5269850685599957, -3.3406644011658675, -7.0, -7.0, -7.0, -7.0, -7.0, -2.629728066875223, -7.0, -2.8802060123609023, -7.0, -2.7488924788750166, -7.0, -1.9686150935365165, -7.0, -7.0, -3.390758528738717, -7.0, -3.7810369386211318, -2.84279639517558, -7.0, -3.1225435240687545, -2.814303100170861, -2.7489628612561616, -2.567933351135913, -2.8542452970661185, -3.3251734566778013, -2.2809179155135966, -2.4509485680967495, -7.0, -7.0, -7.0, -3.491921712586151, -3.1861083798132053, -3.4726833296130404, -2.026009487084626, -7.0, -4.0888622597780815, -3.4725370532620774, -3.251759854528801, -1.5758912380804402, -2.864049381360671, -2.2648178230095364, -2.2238026211274917, -3.064520383377145, -2.745966567012242, -3.004689784223429, -2.9605896808839542, -3.23140586884273, -2.8955453147983605, -2.5713504290799474, -2.8963194926231832, -3.7029472461815556, -7.0, -3.6812713956674576, -7.0, -3.961373627594801, -3.483301952358167, -3.092319541462881, -7.0, -3.0940050223646494, -3.3274951622675926, -3.2487699685205684, -7.0, -3.50112775752298, -3.4389377010955284, -3.5851786285035163, -7.0, -2.8542508196658543, -3.449740593779286, -2.797890483058349, -7.0, -7.0, -3.7927417858347487, -3.7763379096201755, -7.0, -7.0, -7.0, -3.503790683057181, -3.4351433255063055, -2.887570418003753, -2.897718704935313, -4.1492848720317275, -7.0, -7.0, -3.8038666342849843, -7.0, -7.0, -3.780677274433368, -3.579612130740304, -3.8549130223078554, -2.6754116937148633, -7.0, -7.0, -3.780821175853473, -2.78738962135211, -3.768860000842957, -3.176814480674777, -3.380693523251344, -3.1621021253086092, -7.0, -7.0, -7.0, -7.0, -3.033959590819456, -2.9042420522992467, -7.0, -3.1136760118971, -3.534618306668656, -2.5009401142109953, -4.061226225119115, -2.0548854710650257, -3.0142204250828595, -7.0, -7.0, -2.5338255544562176, -3.3985765072605454, -3.3939917506730426, -3.03576316966496, -3.5785933717199003, -3.8211858826088454, -7.0, -3.490590487028833, -3.1835829923510173, -3.4375920322539613, -3.3857849588433355, -2.275064432627511, -3.3931889920552485, -3.2448953336918613, -7.0, -3.478927055582925, -2.93468778256179, -2.062025553041343, -2.416479448748672, -7.0, -3.3135157072120407, -3.237292337567459, -3.7885925559203595, -3.1552752927300998, -3.4690115586556876, -2.0563850493810585, -1.9926583941651417, -2.719267527975772, -3.913124790389559, -3.8489277132270785, -2.89028821222648, -2.326534063327523, -7.0, -3.7918660152578747, -7.0, -2.913350180964195, -3.065906339656369, -2.8651632195060865, -1.9500953041050464, -2.3099341887767135, -2.9832126912055705, -3.3912880485952974, -2.989598116961936, -3.412460547429961, -3.537198825007745, -1.860008936540448, -7.0, -7.0, -7.0, -3.3478761996098028, -1.7836046842286568, -7.0, -3.8081434257614912, -3.2052043639481447, -7.0, -3.275829434043522, -7.0, -2.403329809639173, -3.8117760216029035, -3.5266622930104643, -1.7422854909460268, -3.3343867252256643, -3.847292161501474, -3.3954283281670854, -3.6607827145202725, -7.0, -7.0, -3.698203390582379, -2.5235934654071626, -7.0, -3.1228709228644354, -7.0, -0.9476527189396753, -2.479514695791261, -2.824776462475546, -2.3980558050950416, -3.473924693416157, -7.0, -1.9667561292534292, -3.312811826212088, -3.3312922966807057, -3.8145139523682383, -2.514592020993427, -2.7517688440873256, -1.529020268707673, -7.0, -3.7717344253867693, -3.395937645080042, -4.509142012692762, -7.0, -3.9848872010643275, -3.3756940896973213, -2.8600383898071935, -3.414639146737009, -2.807240810537173, -3.353750650088075, -3.6967348842666072, -7.0, -4.106972399886674, -2.897438783399574, -2.909244961224737, -3.639067930567106, -3.9507217509858714, -3.4655150366516616, -3.5025392884840008, -3.6071600317370307, -4.414488672236952, -3.9636461864848433, -3.5712306727055516, -3.481209652316441, -3.818170888296688, -3.5602893055163447, -4.428620672671939, -3.405918097912158, -3.5393061553487297, -7.0, -3.139604468701357, -7.0, -2.9524804970471568, -3.3815088944507314, -3.4194807372393323, -7.0, -3.340939602038078, -3.510913468005192, -3.750649793952829, -3.7145393107658986, -3.412441879739619, -3.3439335003272257, -3.395501124305626, -2.4344002341345896, -2.2268174247459047, -3.0437551269686796, -3.4271126760547097, -7.0, -2.869452666025396, -2.5796978721407147, -3.2329961103921536, -3.0134692323091703, -2.8967501983926742, -3.328941986935604, -7.0, -2.058253676825634, -2.9670076520726463, -7.0, -3.5895772957033327, -3.316614266155604, -3.5262961904825314, -7.0, -2.21534088621076, -2.555146071986981, -3.5935633748495976, -7.0, -2.580164389698552, -7.0, -2.228447191371028, -7.0, -3.5510119398324944, -3.5408048108305006, -3.061928418293076, -7.0, -3.342504925776889, -3.1495805394955223, -2.6249296556243613, -3.6744937172963503, -2.5166355178955753, -3.169233451301097, -2.7583298903723983, -2.6267629209386185, -3.335992499288236, -2.0691720545784595, -2.446815752736374, -3.4797671999304147, -3.083172755871391, -7.0, -3.493504521968632, -2.4188820199132657, -4.100111959529749, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7630409496258364, -2.806970935923172, -2.589759976078929, -7.0, -3.5650209283452936, -2.8690730733431287, -3.8961954104542107, -2.756870071608761, -3.786964259435733, -2.7185412294947793, -7.0, -2.802652263093126, -2.5152341673470433, -3.8067902715840667, -7.0, -3.018584930267812, -3.3996160424210022, -2.3971140642605224, -7.0, -7.0, -2.37325690926109, -7.0, -3.8133808067338557, -7.0, -2.6634033275146614, -7.0, -3.0195316845312554, -7.0, -7.0, -4.652497752773742, -2.3013004998657527, -3.292887763060018, -7.0, -7.0, -2.4051444819154186, -7.0, -2.716055539354098, -7.0, -2.8478193472952396, -2.7969679111473877, -7.0, -3.482873583608754, -7.0, -2.8040154544635683, -4.010384771498377, -3.1995494966993565, -3.3782767419344064, -3.130205069581069, -7.0, -2.5832584502973877, -3.2249069709218237, -7.0, -7.0, -2.6057456809049255, -2.4904601480516044, -7.0, -3.6863681034730362, -7.0, -7.0, -4.124275932006338, -3.577836341292744, -2.627442431481744, -2.174297741094978, -7.0, -2.8472641017707647, -7.0, -4.0965972083578945, -3.1026394836913003, -3.578371751958183, -7.0, -3.1807564923035585, -2.359984200595567, -3.840482487213442, -3.4685688527234655, -2.4098955692232766, -2.4866756505929275, -3.3792148413786265, -3.5878792635995502, -3.329516522848163, -3.9215824403934163, -3.5593479441958, -3.358315640082196, -2.8865712918143793, -3.5239631265725575, -3.8409212001987716, -7.0, -7.0, -7.0, -4.452323216977515, -7.0, -3.216297886630392, -3.9177155165594932, -3.363346478137335, -2.7004729549281645, -3.521225282676702, -2.756110879457404, -4.000781027353495, -2.834844405648704, -7.0, -2.903331194708171, -7.0, -2.4216039268698313, -3.525735671341458, -7.0, -7.0, -2.6267025813092193, -3.5258866515209393, -2.609796239029571, -3.1156105116742996, -7.0, -7.0, -3.469895618975018, -7.0, -7.0, -7.0, -3.468679571521236, -7.0, -3.8715729355458786, -3.0203612826477078, -7.0, -3.784759894664005, -3.1922188743934377, -3.2110537626799363, -7.0, -2.4313082951657576, -3.0043827972297295, -2.5030496272043883, -3.447778009294621, -3.997779430865604, -3.8091555317471806, -7.0, -2.602750365351694, -3.0233896558066746, -7.0, -2.7464926657826996, -2.966878904322697, -3.1108589567318674, -2.82910575870157, -3.910037123553051, -2.998586244334432, -3.778729923996112, -3.4815859363676225, -2.884965198200733, -3.7745169657285498, -3.0939467238905833, -2.7690078709437738, -7.0, -7.0, -7.0, -5.017492446477275, -7.0, -4.71651667687998, -4.319251841140254, -3.5174062290248944, -3.9075188461066293, -3.9390114469771156, -4.718418641829656, -2.2798193139542193, -3.781416261290161, -5.017446557593457, -7.0, -3.2130116859330546, -2.7044231927112703, -4.0667564855974705, -3.132542438758517, -4.7162997319773545, -4.239870653259158, -7.0, -2.9938977236207234, -3.176982408475351, -7.0, -3.344059276518739, -2.031074609133305, -3.5288918306317196, -3.8145305942352303, -5.01741735305172, -3.184860064113035, -3.2650455111829446, -4.115926549726361, -1.7125376361476683, -3.543140559786548, -4.318931056493988, -3.4992120475889656, -4.0190581035565085, -3.324578744752569, -4.240295419681809, -3.881999750051845, -7.0, -4.025006672633036, -4.717899237742219, -2.122540975250118, -5.018226009952465, -3.3561963473189524, -4.422474931931271, -3.2646480141320873, -3.389806176644556, -4.018729617051877, -3.9411841806116277, -3.852589773309593, -4.544022544449755, -3.846712266268432, -2.1660295690974434, -3.7482329235510705, -3.315208165872914, -3.277063583379518, -4.417085389641193, -4.116844250540653, -3.234157916937028, -3.741263590820309, -2.4527888371354494, -2.519628013580789, -4.4158910775027795, -5.019768281501304, -3.4865033443394324, -2.387525953718933, -5.018126051500581, -4.716741851172329, -3.795499715476454, -7.0, -3.024059030718059, -2.2386895205778723, -7.0, -3.664842196942971, -2.3883102514566867, -4.540738128377243, -4.246839022174548, -4.716174522142771, -4.416503208646225, -3.3554867054564532, -7.0, -3.977349410604157, -7.0, -3.9856346503592652, -4.320814875622444, -3.852280692954708, -3.449965321950027, -3.3600910199987775, -2.9725375579441833, -2.3541901018916573, -3.825628935910912, -3.9111728335206797, -4.7167460199658, -7.0, -3.6840084328169542, -5.023046584075505, -3.594036324592131, -3.4290332425510086, -7.0, -3.17288362158977, -3.9060033293720053, -7.0, -7.0, -3.4732910035356044, -7.0, -3.105776855928944, -4.067500678753396, -3.63502508274648, -3.0635551074793668, -4.065189516740959, -4.541433622726462, -4.117925559532407, -3.5900736323081026, -1.839296442332237, -5.020361282647708, -7.0, -2.937238280343299, -2.714537276775954, -2.9678504504373913, -4.543293896994105, -2.9055829657189505, -2.5507430055349456, -3.1863953736726964, -2.582059415336304, -3.0695267534267816, -2.070756812349173, -4.419017617657288, -3.5797795148825737, -3.5406321682598354, -3.3841324362612313, -4.417691691081776, -2.855297239874421, -3.8816739813278636, -7.0, -5.017550843499431, -2.4914167645416843, -7.0, -7.0, -5.017488274960921, -7.0, -7.0, -2.601259237413943, -3.424419460114532, -2.973800027588227, -3.466919695714147, -4.542705118606488, -2.5567109823851264, -4.239412105741857, -4.240228817121457, -4.118227513429574, -3.9146339999844666, -3.2642234085593933, -4.540333646667876, -5.018633935024163, -3.5883381171691284, -2.2651412914988205, -7.0, -7.0, -3.9095189999026805, -3.7429400140168823, -4.540871483046771, -7.0, -3.0261699521675665, -3.946689653741433, -3.578094568125386, -4.178150303064571, -2.871776605334238, -4.244487411937511, -4.320283410086904, -1.8826171285306872, -4.717870132737748, -4.5403253028737955, -7.0, -3.94079447058587, -5.018717137982806, -4.541312928143722, -5.017596721365986, -3.4155711595028895, -7.0, -3.016264717047424, -5.017588380296173, -3.7816875731600903, -2.257352046167068, -7.0, -4.035045307533338, -3.800870654906812, -4.4197864562419005, -3.769975996724676, -4.177206582920812, -3.216611188785647, -3.515844878746437, -3.6242325772522954, -3.6015852249836797, -4.542015814870588, -3.2487689647718163, -7.0, -3.7961308705829935, -3.592238460099942, -2.8378207563763533, -4.416124372065471, -2.549737219231734, -4.716370668196387, -3.079201130870865, -3.788846037218273, -3.340770374147969, -7.0, -3.27062477467715, -2.194455937161718, -2.633686887659093, -7.0, -4.180478150873018, -3.262358215691817, -3.066039375035261, -7.0, -5.01741735305172, -4.541558443904339, -7.0, -3.6200360619998735, -3.219201843901402, -3.762449313089825, -3.045531043985819, -2.262773158853526, -3.486980715548393, -2.1249663179455123, -2.21451713578345, -7.0, -4.416769445369875, -3.5877857724399735, -4.322132427150491, -4.415415768843478, -4.017913563370042, -2.6822192809215526, -4.177503519504816, -3.6421346345582744, -7.0, -7.0, -7.0, -4.319451690966244, -7.0, -4.716871065166026, -3.7922845448163978, -2.3033176067155994, -4.716308078016287, -4.540379534670119, -7.0, -5.018388393383747, -4.174765673953587, -4.417550573182442, -7.0, -3.815693943076172, -2.28735700871944, -4.324360662427652, -3.5776185595103214, -3.564835646603938, -4.721963044776573, -4.318755983130834, -7.0, -2.9145287867320646, -4.1789646208794, -2.741679904990016, -4.542887642342412, -2.8107834962325997, -5.02044001210619, -7.0, -4.54150019848575, -2.0656782194975314, -3.469559330634179, -2.849655016246537, -2.820697951673249, -3.47513697171306, -4.17699200238873, -4.718788079305774, -4.716916906053295, -3.790984341293377, -3.77203632193224, -3.664797257319109, -7.0, -7.0, -4.118487935113617, -7.0, -4.1774911511996935, -7.0, -4.547508059417997, -2.948409084250442, -3.7201220765691922, -3.5642373934871046, -4.244054348556946, -2.6169091123668817, -3.2404712429870326, -4.717091890401786, -1.9811477962844128, -4.239649777166663, -5.020199635347019, -2.6094077345866067, -3.1968111306617697, -3.1536335087788894, -3.551417465332544, -3.15904054763018, -3.7224117833264954, -3.7987927741252503, -4.246921016356379, -2.644079518156686, -3.568252584406445, -4.540291926094344, -7.0, -5.017183645990936, -3.205741564160098, -3.5409910910061515, -3.6965228010284625, -4.71858887116877, -2.9839295682683518, -4.1153525207127135, -3.878041442513559, -7.0, -3.5886637957802043, -4.174703437767008, -3.3770536230433184, -3.4412841466213813, -7.0, -2.480500139613694, -3.1429502693797233, -2.3649979458602117, -3.9058456771667958, -3.698203390582379, -7.0, -2.3860019205925016, -5.017150248999077, -3.304088493409747, -3.355122390781841, -2.9681254577062237, -2.0209917192807882, -2.4485416995909173, -3.3804908110338814, -4.063358382401493, -7.0, -5.025883174987696, -4.5414086541853065, -3.604479442251883, -4.718983048773428, -3.0984948177211837, -5.018804483937159, -2.692448070813735, -7.0, -7.0, -3.1377404849138455, -3.292103876106375, -3.65583181270073, -4.333825983402247, -3.4917705786758737, -3.284676781430669, -4.200928629688284, -3.2615495579978937, -2.8764774040208363, -3.731170345661575, -5.0318324518318445, -3.3847363232927834, -3.745768862350299, -3.294485488709798, -2.983371577045491, -3.7744822068760837, -2.8288274539936142, -2.882264257327153, -3.912157503683096, -3.4502456081885424, -3.8847346927599973, -2.9090196030296576, -3.1141174616703298, -3.7237366063718094, -3.9865702106959704, -4.096930858642897, -3.6683189267256213, -3.097045308948987, -7.0, -3.2296898397116656, -3.347363159274476, -3.4468390869568273, -3.220265033587232, -3.2835310112543548, -4.324533491388053, -3.51919023560018, -3.8417543174102082, -3.8900032587038527, -3.7964063374956316, -3.1347002127414654, -3.133327349797274, -3.2130497765462813, -2.802130831465385, -3.4028122078099425, -4.034010460806513, -3.263757868359468, -5.024850846911755, -2.6327946083041307, -3.1146991576799494, -3.496628515300069, -2.444798542184289, -2.469795166795331, -2.595193927668544, -4.022139570398392, -3.560749934897699, -4.088140027861661, -7.0, -4.040760524228698, -2.5556885987041573, -3.5291374854609625, -4.175337828792021, -2.562031018999178, -2.4750868264637527, -2.034410206973508, -4.240307906524845, -2.8729676179461134, -4.173702284990066, -2.572621734042997, -3.0615159677916264, -2.7089047150021646, -3.6154878703137148, -2.628959492782499, -4.716587577675693, -3.472056083784771, -2.6703693435998876, -2.39720514363694, -4.253814369244739, -3.5226615437344733, -4.0, -2.6678254243062796, -3.42035058816188, -3.3205741358813006, -2.867601703139016, -2.369231662128971, -4.5532719967524224, -2.4046365395859763, -4.319950913553649, -3.917545903402913, -2.7308155314228784, -3.5595369902185747, -4.7170793938576265, -7.0, -7.0, -4.0178010275503055, -3.3735156590247626, -3.2544076201709182, -3.609758541684431, -3.2823662563684763, -4.416174347457088, -4.324422394952085, -2.977633550844847, -4.423499820977251, -3.701465186162768, -3.5557238881668107, -3.623122005965013, -7.0, -2.462887260857094, -3.617234290359394, -4.32054091992458, -4.24619893571377, -4.290053170559201, -3.9827110624208517, -3.4900990050633047, -4.543443038006803, -7.0, -3.6780074233271307, -4.718418641829656, -4.320947640446896, -3.049123134141101, -3.1201797515823153, -7.0, -3.3079618675777316, -7.0, -4.416045232599017, -1.8859182451512673, -3.0670765813320258, -2.896233410673829, -5.017350592437945, -3.704554950656303, -3.2046780026252124, -4.242309477629206, -3.470945147978499, -7.0, -3.559617741918764, -3.0228800220022025, -4.540454613671412, -4.717146037938382, -2.5562242647185487, -3.32271947927634, -4.080866893505251, -4.17410551615397, -4.119552797667117, -3.906939764651386, -4.241430254748615, -3.7678729114200067, -3.7988884028032657, -3.026584330956644, -5.0176634441579555, -3.538229034708407, -3.4846739647335605, -3.643493800910431, -3.769340394703022, -7.0, -4.1150360645086375, -3.4559414209391317, -3.6439294805612317, -1.9862854524046398, -3.7262380468026377, -3.917598409792237, -3.980734503770833, -7.0, -3.410290598084559, -4.06495273646327, -3.2195964323588115, -4.319838638494149, -3.505639106593364, -3.4969652121341888, -3.9424132054969987, -7.0, -3.1889720317784556, -2.982637157656279, -3.199480914862356, -3.519651648851301, -2.9426693313867003, -3.3369332662477835, -2.1673496219002173, -3.304945993154212, -3.489977472033322, -4.432235498890437, -3.9802389553242405, -4.419001068534885, -4.318672590050602, -7.0, -3.080286255966738, -4.328375525537133, -4.065977853283259, -4.328216457500718, -3.535907776156941, -4.547134479806692, -3.729775730905153, -2.853459860691864, -2.544673895853184, -3.7716119750851425, -5.019361421009378, -3.3993110400675417, -7.0, -3.399754191090663, -3.46599342501868, -3.443984706747188, -7.0, -3.9814602868654, -4.020738225867342, -2.6520392665715007, -4.11691061520064, -5.018841912540566, -4.716445764507459, -7.0, -5.017926065550163, -5.017696801710228, -5.018151043270515, -4.138124995891195, -3.8463288633433605, -2.6835592462131155, -4.3200797861711155, -4.718480928596619, -7.0, -4.717774488273178, -4.174811308156082, -4.417176804312706, -4.071321397569312, -4.42024875711693, -3.031946790297499, -3.95981225658644, -2.9291814974678476, -4.718651133527875, -7.0, -3.229742771130175, -7.0, -7.0, -2.8485276350613553, -4.116765429332974, -4.174616292119658, -3.7987602916703658, -4.725589057037808, -3.724865454175407, -5.0178760546701096, -4.540971472183699, -3.6629260984538985, -5.017634254197808, -3.8297458846919756, -4.0679795950683815, -3.4886543840544424, -7.0, -3.775537634780957, -3.754348335711019, -3.452323216977515, -7.0, -7.0, -2.841672250073634, -2.919470349950749, -3.166133970305109, -2.8849368971038603, -3.09737827210023, -4.0178260380304245, -7.0, -3.7680458141024165, -2.4665961406123937, -2.4434966621063214, -2.700037723329635, -3.093001196684749, -7.0, -3.7646990637983677, -7.0, -2.451414739478241, -3.412830002562326, -7.0, -2.789007502449785, -1.8173674420354016, -1.9037854146535949, -2.1586566299201766, -3.45178643552429, -1.7977515163651112, -1.7218310466708049, -2.018496104177425, -2.818968476456068, -1.7624471699896267, -3.762378429311964, -3.4622482153549976, -3.4823017672234426, -3.0139201038746375, -2.993362739596023, -3.316022793314225, -7.0, -2.551391902262548, -3.478927055582925, -2.87303587216726, -3.466422722433792, -3.1843364700443417, -3.1690863574870227, -2.53315637946727, -2.7261383350625823, -3.4766142820325037, -2.901662615158517, -3.9255699095433765, -3.038288917572495, -3.543260747590362, -2.309233676772654, -2.7887664606630405, -2.116009679424738, -2.465077655032553, -3.7841178164629232, -2.717323705505671, -2.3076605745629943, -3.1984508855664053, -2.960470777534299, -2.961285461809911, -7.0, -3.191800210014707, -3.6497728273006773, -2.8900308871883484, -3.7658175153099185, -3.759592308645975, -2.56534174619609, -3.754806855354423, -3.0720864292830243, -1.9566718738913946, -3.7633531087482153, -3.2965006536117496, -3.040978874281845, -7.0, -3.1758016328482794, -7.0, -7.0, -2.5470906692062414, -3.385665843515682, -3.3007403694565793, -7.0, -7.0, -3.7951149856303634, -2.5770215296430306, -2.4913616938342726, -2.0708827673325994, -3.840670561333409, -2.652826800476945, -3.160368474792848, -2.747245294567787, -3.282244366936266, -7.0, -7.0, -3.243905770217521, -2.6775499250161365, -2.3409758350134933, -7.0, -3.0307346169761686, -3.7989267385772014, -7.0, -3.452169918535435, -2.7015679850559273, -7.0, -2.1276831637211653, -3.526210003841664, -2.152381013642323, -2.198732594105873, -3.4885507165004443, -3.7737133252770216, -2.8604045600125314, -2.441695135640717, -1.5690249136109147, -3.8041394323353503, -7.0, -2.451077576038457, -2.7358483078954117, -2.4072760390988797, -7.0, -2.7226555674530473, -2.9856790279839016, -2.943141057367911, -2.9378401619201777, -2.5345901249430756, -2.33573864700505, -3.2137169289704004, -2.2179771804757857, -3.3649728908307397, -3.4614985267830187, -7.0, -2.4584381274852687, -2.6571089938154944, -7.0, -7.0, -3.309356366125307, -7.0, -7.0, -7.0, -7.0, -7.0, -2.997222509991783, -2.944975908412048, -2.3367070221695694, -3.157197642540677, -7.0, -7.0, -2.800946076169, -3.469895618975018, -2.705007959333336, -7.0, -2.1848388616878607, -7.0, -3.297395711008887, -2.0030506803087964, -2.6817859439337655, -7.0, -7.0, -7.0, -3.1283992687178066, -2.7208355991282493, -3.527823164012659, -3.3624196382493063, -2.8077604599357904, -2.600629036221514, -3.2476664528683656, -2.724548924926919, -2.8855496750060046, -3.308706665276203, -2.723070670548517, -3.4784221877400805, -3.753812783564702, -7.0, -3.020430344344904, -3.7762652182681093, -3.470410490975931, -7.0, -2.64051349413832, -7.0, -3.7835641541035208, -7.0, -3.175055991624076, -2.3976064637013526, -7.0, -3.1540325012731145, -3.003077387416016, -2.6805297561976316, -3.10151795524841, -3.534660575828444, -3.071513805095089, -3.039744506778152, -2.7554937284151193, -2.9355988601479255, -7.0, -2.992995098431342, -7.0, -3.549095263822955, -2.815154959698523, -3.5895187615052655, -3.767304317453273, -2.618328772336617, -7.0, -2.997426102215431, -3.4873505196555823, -2.9906559275051268, -7.0, -2.784545974054523, -2.256252854237207, -2.725152937179735, -7.0, -2.841017999215743, -7.0, -2.944975908412048, -7.0, -7.0, -3.298489193286698, -3.281412167517624, -3.1642040993240332, -2.7014240597913446, -3.2836780569110555, -2.484869032720402, -2.3909351071033793, -2.4092566520389096, -3.2317012265137786, -4.149088396735554, -3.749427099121749, -3.4774830160749435, -2.44205196294031, -3.117204986092783, -3.277074133470176, -3.285932185579952, -2.542469739402932, -3.3629848397370954, -2.4935214192716417, -7.0, -7.0, -3.4623231130842345, -3.7716609593488872, -3.751048034820188, -3.761927838420529, -3.241172786770047, -3.134631721464408, -2.7961887392208773, -2.639026512722247, -7.0, -7.0, -3.1942367487238292, -3.792041310712082, -7.0, -2.45178643552429, -3.2232362731029975, -2.9471272548064458, -3.3529539117100877, -2.536892500990388, -7.0, -7.0, -7.0, -2.618756433176055, -2.958145631642097, -2.552048459343581, -3.0990587890680543, -3.221107261698154, -3.80543288813214, -7.0, -3.7748817658187965, -1.5947506413102113, -2.706595875112968, -1.9660799510358338, -1.4346404576189893, -3.6068111469189637, -3.3551321154773457, -3.494084989966382, -7.0, -2.977658292937134, -3.129475054459623, -2.8178957571617955, -7.0, -7.0, -3.12515582958053, -2.9927007612585004, -3.3627965209590185, -7.0, -2.6920239462715356, -1.9483546620868522, -2.818291890799996, -3.298033910215436, -7.0, -3.290578685153958, -2.25919667574194, -7.0, -2.8087793747812646, -7.0, -3.801472313521471, -1.3071078393578763, -2.7366416240451947, -2.77232170672292, -2.5427217148436054, -3.0535777871252825, -3.0757901954968463, -3.33046450572258, -2.972492117335942, -4.012137752982696, -2.2646442371397235, -7.0, -7.0, -7.0, -2.8061400553771305, -1.8154535181128486, -3.000723221619096, -3.791901080009571, -1.9224573872938893, -2.407501745719001, -2.369515102569025, -7.0, -2.6856137979674, -3.7956715059460215, -2.5087316694431436, -2.334780938528331, -7.0, -3.3072707814341467, -2.7710727832211948, -3.66064704025109, -7.0, -2.5235934654071626, -2.3860019205925016, -7.0, -7.0, -2.960742508800416, -3.068556895072363, -2.1114050956256545, -1.7342702822230114, -1.2129508474370692, -1.8440017975763174, -2.609441944950562, -7.0, -2.931966114728173, -2.9943904822573, -3.792461731346951, -7.0, -2.5665281401774287, -3.7777891874348675, -1.9531422419472886, -7.0, -3.054459837239404, -3.2870906259509054, -4.109571797908949, -7.0, -7.0, -4.055424205129799, -3.9825425823029432, -7.0, -3.6449307079135873, -3.184332449959256, -4.16705135873788, -7.0, -4.404012226182244, -4.157962696891443, -4.542779796679602, -3.52270499273475, -7.0, -4.719115743876443, -3.7725808366922844, -7.0, -7.0, -7.0, -4.79505407293256, -4.07923552946522, -3.31467646842225, -2.997677564080969, -7.0, -4.404209183192527, -3.8355003278673188, -7.0, -3.606414957134592, -7.0, -3.8771491224653936, -3.720242018287057, -4.016887157902775, -7.0, -7.0, -7.0, -4.224830777267873, -3.709566740542544, -3.3230082040914604, -3.1060548400937864, -3.812879948090056, -3.1869098660219337, -3.411249219353385, -3.5109915855486893, -3.57826253807072, -3.57153414742667, -3.1650651966570837, -3.0974019347178685, -3.016406500871118, -3.516085643024291, -2.7598835895931746, -2.4458018231993797, -7.0, -3.4712116739886065, -3.3739780274568667, -7.0, -3.212415920092334, -3.8574380412917293, -3.9933039379194746, -7.0, -3.1442417228775326, -3.5127121834169777, -4.5647049444621635, -3.2950537061049516, -1.9031341203675114, -3.778585327862962, -3.411351202966301, -7.0, -4.372754718401078, -3.6318241174379233, -3.6375697764175206, -7.0, -7.0, -3.6054531982661273, -3.672243038508735, -3.9646367037885013, -3.430679613881531, -7.0, -3.3344795275988064, -3.4089180208467798, -3.4961682741749778, -2.8370269714709435, -3.72488091090256, -3.1669725197384757, -3.448803620276374, -7.0, -3.482397122253336, -3.103509151942946, -4.397087956203049, -7.0, -7.0, -7.0, -7.0, -7.0, -2.970610705566062, -2.6415907465950124, -2.52336260719049, -7.0, -2.8967710973843452, -2.8895097937792866, -7.0, -3.557085936526085, -3.468716471515472, -2.952873129432044, -7.0, -3.052975943015183, -3.014333825736173, -7.0, -3.8661100398443766, -7.0, -3.8631443462526676, -3.0372936658607066, -7.0, -7.0, -4.049024097915049, -7.0, -7.0, -1.9385070581749333, -2.5317343092765503, -7.0, -3.712593587604018, -7.0, -7.0, -3.6958123304324237, -3.5100353535497364, -4.124236784040634, -7.0, -3.9014038268252516, -2.5594025837993186, -7.0, -2.628604007178344, -7.0, -3.134686992556854, -2.619681355828017, -7.0, -7.0, -2.5368452760024067, -3.053014383525799, -2.920123326290724, -7.0, -3.363737299322217, -3.336859820916809, -3.490660653356137, -3.0040755930845697, -2.7563434766857546, -3.8421514084022284, -7.0, -2.6815929538723164, -3.1497321599470633, -7.0, -3.0784568180532927, -7.0, -7.0, -7.0, -3.0864784741618685, -2.458402655474184, -3.0620982702573447, -3.483016420144132, -7.0, -7.0, -7.0, -3.4845133742926118, -4.046534182750969, -7.0, -3.1670217957902564, -2.8572193841811426, -3.524266268766979, -7.0, -2.549998911569488, -2.462662730904351, -2.8905141650708486, -3.398229441859627, -2.7701495884132963, -7.0, -2.145962558639885, -2.2977273601138957, -2.972175602200704, -3.6897970549034977, -7.0, -2.9700146181755556, -3.7576996250877386, -7.0, -4.448690864310427, -7.0, -3.8029104894190398, -3.905148001856016, -3.046706936468822, -7.0, -4.294422133112984, -3.327197556612044, -2.2373282608465153, -2.7872969497664726, -7.0, -2.335081616638203, -7.0, -2.9022749204745018, -2.712383834167483, -7.0, -7.0, -3.8446635282402393, -2.6335357828383685, -2.6835698996941697, -3.1966596938570437, -3.7784406835712327, -7.0, -7.0, -7.0, -7.0, -7.0, -3.761062896966188, -7.0, -2.1269824791182863, -7.0, -7.0, -3.7676010680503356, -7.0, -3.7974752875373343, -3.7856856682809013, -3.5824610945249487, -3.8355003278673188, -3.2555137128195333, -7.0, -7.0, -3.792951708250132, -7.0, -3.9355072658247128, -3.785756799962643, -7.0, -3.2856046796973826, -3.7967130632808965, -3.316808752053022, -3.4550987591574565, -7.0, -3.2870175013221017, -3.7613263224214566, -3.7655195430979527, -3.5713011255662694, -3.756940236046724, -3.3848907965305544, -3.0560150335589764, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.09437911228647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3823773034681137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9956351945975501, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2581581933407944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9924121171611855, -7.0, -3.3872118003137306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7507320413412115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8744818176994666, -3.000434077479319, -3.104487111312395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8924285469452298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.975845225467567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.8750983216063615, -7.0, -7.0, -5.017150248999077, -7.0, -7.0, -2.91539983521227, -7.0, -7.0, -3.7571681922142726, -7.0, -2.9390197764486667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.020996236394208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2095150145426308, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.59659709562646, -7.0, -7.0, -7.0, -7.0, -2.862131379313037, -7.0, -7.0, -7.0, -4.302793446245299, -7.0, -2.951337518795918, -7.0, -3.509121840939676, -3.3207173506008356, -7.0, -2.8527848686805477, -7.0, -7.0, -7.0, -3.444454682653069, -3.912168896059627, -7.0, -7.0, -3.7210252807581212, -7.0, -7.0, -2.9479236198317262, -7.0, -2.963787827345555, -7.0, -3.789316247841687, -2.910357557272878, -7.0, -7.0, -3.113609151073028, -3.090434416175122, -7.0, -1.8082237164938735, -2.3607826898732798, -3.13640344813399, -7.0, -3.912268957428651, -7.0, -7.0, -7.0, -2.940516484932567, -3.6848453616444123, -7.0, -7.0, -7.0, -2.6488477083728936, -7.0, -3.2383504459244157, -3.510813010512496, -3.082939166392626, -7.0, -7.0, -2.876217840591642, -3.5079907248196913, -2.888179493918325, -3.2116544005531824, -3.214843848047698, -7.0, -7.0, -7.0, -3.178431655600839, -7.0, -7.0, -2.7746629225378223, -7.0, -2.7254661258631927, -2.3722674440956544, -7.0, -7.0, -4.649785797412952, -2.998695158311656, -3.4358443659844413, -7.0, -3.0674428427763805, -2.7869151523951547, -3.401400540781544, -3.0881360887005513, -7.0, -3.208710019906401, -7.0, -3.5531545481696254, -7.0, -3.3592661646067485, -7.0, -3.3619778278554406, -3.291479852236699, -3.339133305969879, -7.0, -7.0, -7.0, -2.747994102251068, -3.4578818967339924, -7.0, -7.0, -3.8626381581186875, -2.879955585122749, -7.0, -7.0, -2.4863419105902533, -2.9763499790032735, -7.0, -7.0, -2.828567836231445, -3.344713721977851, -7.0, -7.0, -7.0, -7.0, -2.860426089824901, -7.0, -7.0, -2.815411701875331, -3.12057393120585, -7.0, -2.359021942641668, -3.1067007323623543, -3.9127760568902574, -7.0, -7.0, -7.0, -3.8197588361982464, -7.0, -7.0, -7.0, -7.0, -7.0, -2.910624404889201, -3.2342641243787895, -7.0, -7.0, -4.075382701327236, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7907932251273815, -3.162340331628426, -4.168055303459139, -3.4222614508136027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5538830266438746, -7.0, -7.0, -7.0, -3.769241895684789, -7.0, -2.6299190355035416, -7.0, -2.5103215502161387, -7.0, -7.0, -1.469822015978163, -7.0, -2.673020907128896, -7.0, -3.12434117077496, -7.0, -3.1258064581395266, -3.653531032753514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.903731084963894, -7.0, -3.989672247623873, -7.0, -2.9107768156582345, -2.98798391954084, -7.0, -3.717420836722375, -2.329092647195331, -3.292256071356476, -2.846491747873616, -2.411409240981208, -1.0824788661576048, -1.9474337218870508, -1.6996209579656139, -2.719054930320311, -7.0, -3.2286569581089353, -7.0, -3.273510545540457, -3.385963570600697, -4.049954148022047, -7.0, -3.0110415256389502, -7.0, -3.012133913649598, -3.1367205671564067, -2.6190933306267428, -7.0, -7.0, -2.451932564220791, -2.951337518795918, -7.0, -3.4583356259919475, -7.0, -3.5788110603225816, -7.0, -7.0, -7.0, -7.0, -3.028977705208778, -2.8058405488146727, -7.0, -2.5330726600488123, -2.820100366728689, -7.0, -3.5438508428044115, -4.434572265433589, -7.0, -2.788875115775417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.57672517213259, -2.9355072658247128, -7.0, -2.864708802200848, -3.903346539757214, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1522883443830563, -7.0, -7.0, -3.721563318357481, -2.762678563727436, -3.8131137540078983, -3.1453828919748745, -7.0, -7.0, -7.0, -3.0935658766580136, -7.0, -4.539790966345741, -7.0, -4.237686133897014, -7.0, -7.0, -7.0, -3.0565660880728815, -7.0, -3.5042895854462257, -7.0, -3.8669368177316397, -2.5261238000934845, -2.864511081058392, -3.0068937079479006, -2.6720978579357175, -2.476989630387119, -2.591481997238255, -7.0, -7.0, -2.801403710017355, -7.0, -3.3316297176299323, -7.0, -7.0, -2.745367607290579, -3.2610248339923973, -3.0242119239259035, -3.0105119627372137, -3.8544882250444306, -3.43970102987625, -7.0, -3.016351471856979, -7.0, -2.713770462202507, -3.3336487565147013, -2.890979596989689, -3.4994579639204475, -2.656936261920949, -3.8166389448984614, -7.0, -7.0, -7.0, -4.714740384665852, -3.594613509160098, -7.0, -7.0, -2.6175245348862926, -3.3104808914626753, -7.0, -1.9091993191743837, -7.0, -3.1782573208121887, -7.0, -7.0, -7.0, -3.4349678884278125, -3.16790781000148, -2.3863715504164245, -7.0, -2.6896048008603892, -4.382587317728938, -3.3948017771627113, -4.574514513294094, -7.0, -3.1228709228644354, -3.304088493409747, -2.960742508800416, -2.91539983521227, -7.0, -7.0, -2.381904399731051, -2.04356552011917, -2.9103956884008624, -2.121438887639747, -7.0, -2.91539983521227, -3.467756051244033, -7.0, -7.0, -3.179838928023187, -3.38524868240322, -7.0, -2.7151538610111667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.595419056052439, -4.581779045728458, -7.0, -7.0, -7.0, -4.7224529287900365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.662323319907556, -7.0, -7.0, -4.476382325832763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.317530579996265, -7.0, -7.0, -3.8915077231856623, -3.2102649990322885, -7.0, -4.337339439388419, -7.0, -3.9354493224404465, -7.0, -7.0, -7.0, -4.186565539383188, -3.730064136632307, -7.0, -4.444029173533431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6924944075030846, -4.342401529601869, -7.0, -3.0595634179012676, -3.725094521081469, -7.0, -4.1793985738477035, -7.0, -5.406115897462093, -7.0, -7.0, -7.0, -4.0296678026753225, -3.9619902874400648, -3.706511535925743, -7.0, -4.225438516805497, -7.0, -3.7865439418445064, -3.8912725631953657, -2.393867559040913, -4.100572381131625, -4.657008020434356, -3.6072405038317426, -3.8858873896236554, -7.0, -7.0, -3.6124235606645025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6300499369039914, -2.6524075191391137, -3.1539810696591877, -7.0, -7.0, -3.5725037282944347, -7.0, -3.0860037056183818, -2.5674185056727485, -3.7790912038454993, -7.0, -3.4019447911096794, -3.054708787938054, -7.0, -7.0, -7.0, -7.0, -3.7031193462360776, -7.0, -7.0, -3.506369717095504, -7.0, -7.0, -3.3498600821923312, -2.3431188516609445, -7.0, -7.0, -7.0, -7.0, -7.0, -3.734162995777309, -4.790932252099301, -7.0, -7.0, -2.7805093291574954, -7.0, -2.8237349883987313, -7.0, -2.8339965879428433, -3.2192510215768, -7.0, -7.0, -7.0, -2.456366033129043, -3.417388646165674, -7.0, -3.3346547668832414, -3.241795431295199, -7.0, -2.5822528043462953, -3.4024763265233604, -7.0, -7.0, -2.989004615698537, -2.868879446237088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0573910358048546, -2.7407573233077707, -7.0, -3.3100557377508917, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9334872878487053, -3.0519239160461065, -7.0, -7.0, -2.421143067071665, -3.1871781457685944, -2.658488381309017, -7.0, -2.7948047956207, -3.2220658425885866, -2.5622184925953624, -7.0, -3.2037320465140935, -7.0, -7.0, -7.0, -2.977266212427293, -7.0, -7.0, -7.0, -3.197831693328903, -7.0, -4.53487608457354, -7.0, -7.0, -4.250651726858576, -3.699577591398909, -2.550771730644782, -7.0, -2.3406423775607053, -7.0, -3.382647303154711, -2.4458635609892205, -7.0, -7.0, -3.3459615418131414, -2.929929560084588, -3.40224418233262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.830203598925704, -7.0, -2.124033012647276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.203209725325918, -3.172310968521954, -7.0, -7.0, -7.0, -3.473778834646725, -7.0, -7.0, -7.0, -7.0, -3.693287157005656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.741151598851785, -7.0, -4.903412873454334, -7.0, -7.0, -7.0, -3.7161981756548146, -4.209836595069655, -7.0, -2.4668676203541096, -7.0, -7.0, -7.0, -4.337079711800931, -7.0, -7.0, -7.0, -3.739148685632311, -1.911772031594504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3416323357780544, -7.0, -3.321162040332412, -7.0, -1.1387669360318688, -7.0, -7.0, -7.0, -7.0, -3.0310042813635367, -7.0, -3.0948203803548, -7.0, -3.7939568520276987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.035029282202368, -7.0, -7.0, -7.0, -7.0, -2.8146501647125612, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6239725120169965, -7.0, -7.0, -4.5230730485888655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5308397786165204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.116188673979431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.065206128054312, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9258275746247424, -7.0, -7.0, -7.0, -3.428872395902744, -7.0, -7.0, -3.0159881053841304, -3.534026106056135, -3.3224260524059526, -7.0, -3.86975959478241, -3.9755926285377265, -2.921166050637739, -7.0, -7.0, -4.090430007966779, -7.0, -7.0, -7.0, -1.9666109866819343, -7.0, -3.8206392563794713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.025674449410344, -7.0, -3.549463076236982, -7.0, -7.0, -7.0, -2.5888317255942073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9749719942980692, -7.0, -7.0, -7.0, -7.0, -2.8472641017707647, -2.6857417386022635, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5713011255662694, -7.0, -7.0, -4.753245909414036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9552816418448353, -7.0, -3.6695957810243134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1441589128307523, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071403283531469, -7.0, -7.0, -7.0, -3.188647295999717, -7.0, -7.0, -7.0, -7.0, -7.0, -3.367169488534681, -7.0, -3.847634344318255, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8674674878590514, -7.0, -2.4382785804926073, -3.906927347308956, -3.2704459080179626, -7.0, -5.7128987603665005, -7.0, -7.0, -7.0, -7.0, -7.0, -2.681241237375587, -3.3104808914626753, -7.0, -3.197831693328903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5646660642520893, -7.0, -7.0, -7.0, -7.0, -7.0, -2.977266212427293, -7.0, -7.0, -7.0, -3.809694358716924, -7.0, -7.0, -7.0, -7.0, -7.0, -4.532919914252143, -7.0, -4.710261259520343, -7.0, -7.0, -7.0, -2.9076800242424197, -7.0, -7.0, -3.2305340688115245, -7.0, -7.0, -7.0, -7.0, -3.1277525158329733, -7.0, -2.8107364373885813, -7.0, -7.0, -3.1332194567324945, -7.0, -7.0, -7.0, -7.0, -3.321287665169863, -3.1072099696478683, -7.0, -7.0, -7.0, -3.586305934735186, -7.0, -4.283775978711523, -7.0, -7.0, -2.6716355966021297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8646297245455123, -1.9294189257142926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3932241163612975, -2.780317312140151, -7.0, -7.0, -7.0, -7.0, -2.5903215880567183, -3.6085260335771943, -7.0, -4.555414909808997, -4.385499027152057, -5.574220578855002, -7.0, -7.0, -3.355122390781841, -3.068556895072363, -7.0, -7.0, -7.0, -3.523876475638131, -2.2671717284030137, -3.1103371400787525, -2.824125833916549, -2.605305046141109, -7.0, -3.3787611753163733, -7.0, -7.0, -7.0, -3.1573560154410694, -7.0, -3.5015658718510116, -7.0, -7.0, -4.594083019091813, -7.0, -7.0, -7.0, -7.0, -4.371123300581949, -7.0, -7.0, -4.578673585479501, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278970693925059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530583859645118, -7.0, -7.0, -7.0, -7.0, -7.0, -4.773464626158091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.065676794647086, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9876662649262746, -7.0, -7.0, -7.0, -7.0, -7.0, -4.134384320553547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.991128570067966, -7.0, -7.0, -7.0, -7.0, -7.0, -4.653945370217834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.129432074155575, -7.0, -7.0, -7.0, -7.0, -4.897638085948279, -7.0, -7.0, -3.480368786890804, -4.955437586216608, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.865192838908103, -3.3346547668832414, -3.87952594503966, -7.0, -7.0, -4.340186237916345, -7.0, -3.2778383330020473, -7.0, -7.0, -7.0, -7.0, -3.601951404133522, -7.0, -7.0, -7.0, -7.0, -3.6535983818432896, -7.0, -7.0, -7.0, -7.0, -7.0, -3.228913405994688, -2.90687353472207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.453776859690442, -7.0, -3.446537167073644, -7.0, -2.876506504265881, -3.9468941951023266, -7.0, -7.0, -3.0595634179012676, -3.167317334748176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6479596900461457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.31694832926197, -7.0, -7.0, -3.78511619502192, -3.851115599375254, -7.0, -7.0, -7.0, -7.0, -2.7248490876293854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0141003215196207, -7.0, -4.527926202533123, -7.0, -7.0, -4.243967684036416, -3.6496268868405295, -7.0, -7.0, -3.2214142378423385, -7.0, -7.0, -3.6546577546495245, -7.0, -7.0, -7.0, -7.0, -3.9159096427947526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2753113545418118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.367355921026019, -7.0, -3.803013034258028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.19574748437503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.580544849190167, -7.0, -3.49789674291322, -3.501470072100412, -7.0, -7.0, -7.0, -3.047145014047316, -2.780557320149522, -3.1394628347923637, -7.0, -7.0, -3.5237464668115646, -3.419625360887743, -3.5005794923633378, -3.3027637084729817, -7.0, -7.0, -3.517855418930029, -7.0, -3.1102706498108663, -3.540663098377016, -7.0, -2.6604504241975055, -2.5802286615929395, -2.889189612047073, -2.9370161074648142, -7.0, -2.98109342314593, -2.912434633375575, -2.8488047010518036, -3.559222427207474, -2.587037117743456, -2.9108910886445285, -7.0, -1.8132913875518861, -2.827553882825746, -2.5748026613264443, -2.5825935908267597, -3.5020172148271476, -7.0, -3.5446880223026773, -3.4252080511386565, -2.8229522405474814, -3.5561818466529114, -3.6871721045948, -7.0, -3.850829959848531, -7.0, -3.5878231713189552, -7.0, -2.7018916426154878, -2.9502674680135885, -2.1679751216076135, -2.4819996714322374, -3.0760332934499632, -2.670538800459197, -7.0, -7.0, -3.038699623020623, -7.0, -2.986211715514367, -3.2890312351397615, -3.5150786750759226, -7.0, -3.8067902715840667, -3.3140779917792127, -3.042181594515766, -7.0, -3.719082573901486, -7.0, -3.3071214846498904, -2.639361960384033, -3.2141813086638207, -7.0, -3.5541447248133005, -7.0, -2.261395053995737, -7.0, -7.0, -2.9300146074718962, -3.6787914343662442, -2.5390760987927767, -7.0, -1.6298403810901787, -2.5264567654148817, -1.8027353006529854, -3.793231447056521, -2.5408105809460935, -7.0, -3.1611439385978923, -7.0, -3.8187535904977166, -7.0, -7.0, -3.72956972630197, -2.748575616930992, -3.7095243558763413, -2.735465823404231, -7.0, -3.9250541203118425, -7.0, -3.198519630241168, -3.497620649781288, -1.9568500102505335, -7.0, -3.2302785764135864, -7.0, -2.728541072104733, -1.6429238914818773, -3.561101383649056, -3.2323607123535703, -2.6022770843001926, -3.6190933306267428, -2.5774270667201127, -3.5852350633657752, -7.0, -2.908842315881035, -2.4101443047027806, -3.8451600776519457, -2.7407009689987443, -2.813284389969057, -3.9964970786804326, -3.2587569725365753, -3.6828217233274905, -2.6606283529737342, -3.4143475818341713, -3.127428777851599, -2.739018245883481, -2.3486293266283655, -7.0, -7.0, -2.809713590178541, -3.2773035345575963, -7.0, -7.0, -3.7166376183281282, -7.0, -7.0, -7.0, -7.0, -3.49789674291322, -2.7835137861438874, -2.582604405067025, -3.530711837981657, -7.0, -7.0, -4.012162067970823, -2.2431758980706937, -3.529045170765769, -3.1344958558346736, -3.671697259882356, -2.7964355588101744, -7.0, -7.0, -7.0, -2.1724247283295366, -7.0, -7.0, -3.6649238934380817, -3.0211892990699383, -7.0, -3.324385356490427, -2.738284958200182, -7.0, -2.927626962444954, -3.3576490329184674, -3.40849436021236, -7.0, -7.0, -2.665751780385266, -2.9410142437055695, -7.0, -7.0, -7.0, -7.0, -3.2286569581089353, -3.502836638621003, -1.9712118454247622, -7.0, -4.338157564271773, -3.5025636691073636, -7.0, -1.8596955777710922, -2.8843421476470588, -2.455430557308209, -2.3506489672611517, -2.8454081396217936, -2.118664941398519, -3.3352572564345317, -2.452169918535435, -7.0, -2.5554975061310574, -2.6661434272915585, -2.948290680973653, -3.8654593226619647, -7.0, -3.7651094972067183, -7.0, -4.392573856408141, -7.0, -3.0840397806679536, -7.0, -3.9259821003271034, -3.559068334034537, -2.7912895457988998, -7.0, -3.554489160003819, -3.0700906651588995, -7.0, -7.0, -2.7541783906953876, -3.6269730385435053, -3.147278719784546, -7.0, -7.0, -7.0, -7.0, -3.521399628115376, -3.24699069924155, -3.5114822886260013, -3.081587315813503, -2.351135733834349, -3.0358964706119558, -3.256236533205923, -4.459944220602778, -7.0, -3.5422027824340283, -3.557266528869904, -7.0, -7.0, -3.5154764413823756, -2.905885787102876, -7.0, -2.5595076406424986, -7.0, -7.0, -7.0, -3.2287852009806493, -7.0, -3.5129510799724906, -3.3475251599986895, -3.424011600521135, -7.0, -7.0, -7.0, -7.0, -2.970114322285097, -3.0874264570362855, -7.0, -3.5735677730392186, -3.2738111993994035, -2.5117879011517172, -3.4649860542696933, -1.8364400847717912, -3.3507324517161297, -3.5081255360831993, -7.0, -2.8904955374150134, -2.9776321652459994, -3.311471301200697, -3.274734984872738, -3.5569936047645743, -3.5873741720730656, -7.0, -7.0, -2.395256480886022, -3.3116479226525204, -3.3740147402919116, -2.349915522861571, -7.0, -3.330007700872759, -3.570426178358973, -7.0, -3.014205413953746, -2.209357290015056, -2.9526310252827455, -7.0, -7.0, -7.0, -7.0, -3.1658376246901283, -7.0, -2.0480441310593758, -1.8376124087883927, -2.705756835334468, -3.73471984165568, -7.0, -3.270804691244306, -2.6582188456612497, -7.0, -3.2631624649622166, -7.0, -2.97806633408362, -2.7746496557637714, -3.18440748541232, -2.1772178342189354, -2.110963618614987, -3.3425707105283156, -3.66576855071938, -3.1789050382803548, -2.9200363194824788, -3.8855539571233466, -2.147828673906813, -7.0, -7.0, -3.4891143693789193, -3.224325836319485, -1.981235965607963, -3.2425414282983844, -3.564784384503987, -3.1192558892779365, -7.0, -3.078366179530183, -3.544564097496043, -2.7388937591840596, -7.0, -7.0, -1.865539983912389, -7.0, -3.969870006546593, -3.830668848595259, -4.063880466051713, -7.0, -0.9476527189396753, -2.9681254577062237, -2.1114050956256545, -7.0, -2.381904399731051, -3.523876475638131, -7.0, -1.9470697286324765, -2.170925605178104, -1.5839889457616856, -3.505149978319906, -7.0, -1.9497323077321136, -7.0, -3.5657297878311267, -3.274619619091238, -3.1524718103360363, -3.5407047833107623, -1.7533189919593353, -7.0, -7.0, -3.6237763280606363, -4.7912343651243665, -4.329092647195331, -7.0, -3.693183141082376, -3.164121434824116, -4.010299956639812, -3.1565909224659774, -3.7491784619809887, -4.085254891103877, -7.0, -4.358505911490235, -3.4850664949549346, -3.5039140446492345, -3.9117965904372523, -4.079651477073845, -3.9986428830113456, -3.790048796867443, -3.827207675105206, -4.064663855913281, -3.808818425092124, -4.137380489000302, -3.632963168167261, -3.8659208408403645, -4.187971701647396, -4.381512174732024, -3.9840680235504013, -4.2558270827032345, -7.0, -3.470963211036848, -7.0, -3.5247422079728614, -4.074432424783191, -3.9607323219456383, -7.0, -3.869055618701908, -7.0, -4.1909057081427346, -4.254741376091537, -3.8632633636504807, -2.4709529918306132, -3.8492965408347266, -2.8959235657954556, -2.3042116544501705, -3.0122344564170116, -3.601824684748978, -3.693463127219531, -3.1481795768335057, -2.8174957822367825, -2.8592884423200204, -3.250706949449761, -3.0299645394193337, -3.226608496506789, -7.0, -2.502049207161313, -3.190565127083142, -7.0, -3.4723663352268415, -3.465300215260955, -3.387449152133768, -3.5886078047426864, -2.6265655766809153, -2.999503780341293, -4.152356303773212, -3.0538464268522527, -2.6214647920373584, -7.0, -2.6946708788665745, -7.0, -3.9046851219657635, -3.8638282512985738, -3.3284702135959416, -7.0, -3.675063091209669, -3.242468347967402, -3.052638985331171, -3.8258154449852038, -2.7601024937899448, -3.3551640665152047, -3.187919607508631, -3.031603901657714, -2.4921781467062147, -2.568742383741263, -2.884786004759232, -3.799409479615127, -3.4603677039425986, -7.0, -3.3416323357780544, -2.596254003169732, -7.0, -7.0, -7.0, -7.0, -7.0, -3.894814329083301, -2.9875173043753707, -2.916278440573439, -2.8913677498314385, -7.0, -3.6618126855372615, -3.090716448481099, -7.0, -3.193958978019187, -3.5269850685599957, -3.0134692323091703, -7.0, -3.0823464673160794, -2.5748026613264443, -7.0, -7.0, -3.302357990059733, -3.678973375919765, -2.5824820176812113, -7.0, -7.0, -2.6352323462394964, -7.0, -3.5739154404215507, -3.0497024560521484, -2.6323849760606866, -7.0, -3.6353496846184767, -7.0, -7.0, -4.147820549940331, -2.733005108513303, -3.483994607181074, -7.0, -7.0, -2.7740941824480316, -7.0, -3.048053173115609, -7.0, -3.031206419827462, -3.1350053669438873, -7.0, -3.5216610151120733, -7.0, -2.674248595527798, -7.0, -3.076397685429307, -3.644832328825636, -3.1242868058150215, -7.0, -3.6585837154070626, -3.3136563466180315, -3.9623219727295846, -7.0, -2.7467049482220722, -3.0755469613925306, -7.0, -3.744866446899768, -7.0, -7.0, -7.0, -3.682145076373832, -2.915336042999824, -2.5390760987927767, -7.0, -2.5165862191199873, -7.0, -3.9882467233753784, -3.5542468081661105, -3.4576296199439165, -7.0, -2.984347257585864, -2.5551912165114072, -7.0, -3.495127881242933, -2.5488069263615474, -2.816836671284734, -2.988304089217602, -7.0, -3.514338998289733, -7.0, -2.9545640899663494, -3.3106933123433606, -3.12830231716435, -7.0, -7.0, -7.0, -3.505421327583281, -7.0, -4.40784960347914, -7.0, -3.1056237109716145, -3.741624257503812, -3.784260582566084, -2.9811841373983543, -3.7576996250877386, -3.059092737484648, -3.3835760193323763, -2.958882280950234, -7.0, -3.1720188094245563, -7.0, -2.894931123659502, -3.3866772839608377, -7.0, -7.0, -2.8041394323353503, -3.597366050266028, -3.040950269144804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9550620696750323, -7.0, -3.0678145111618402, -3.5490032620257876, -7.0, -3.5229655954919865, -3.239674787646781, -3.574147064150723, -7.0, -2.7083359026822635, -3.158463011591568, -2.7265304858618973, -3.9275756546911103, -7.0, -3.566555330883055, -7.0, -2.637203727209186, -3.076761771924212, -7.0, -3.027935408120664, -3.0952856128383934, -3.267406418752904, -3.17832933714299, -3.7300551523755, -3.241048150671644, -3.5118833609788744, -7.0, -2.914078585389112, -7.0, -3.254185409462092, -2.788572366037187, -7.0, -7.0, -3.084576277934331, -7.0, -7.0, -7.0, -3.7768464086952993, -2.5691890378923947, -3.2287210842783987, -2.629336773667501, -2.9514069115390393, -3.289092947357841, -4.022758194236769, -7.0, -3.475598557756169, -2.859676507874828, -2.625877098398814, -3.123916943498132, -2.2647483969871836, -3.459392487759231, -3.073938190635253, -7.0, -2.7892440932493145, -3.11544408343624, -7.0, -2.919513912264031, -2.5294363557246826, -2.3334472744967503, -2.743010616594783, -3.7620029693751156, -2.6390174887025926, -2.7129085955138073, -7.0, -3.103411940177142, -3.0356298277904386, -3.7712199019495336, -3.4710715736130306, -3.4907308083489235, -2.1987168371755947, -3.0813473078041325, -7.0, -7.0, -2.978864984347657, -3.4874212113594747, -2.8121296198154386, -3.475162519083091, -2.17679685544469, -3.8754664158663856, -1.9314311045195778, -2.8109490279235856, -2.830944910590037, -2.858403506793794, -3.3292961591399655, -3.3475251599986895, -3.374381698050882, -2.345800201367372, -3.3080305542661055, -2.8241583885046158, -2.7001391361209706, -3.4913616938342726, -3.328787200354535, -2.761766799738045, -7.0, -2.6988363547021272, -2.1760912590556813, -3.771954748963949, -3.8025000677643934, -3.4793353286902375, -2.408839837676014, -3.7745899502647946, -3.467312062980552, -3.2940250940953226, -3.7638022240745928, -4.03181227133037, -1.9842516874733798, -7.0, -3.3029799367482493, -3.0810935899469842, -3.4690115586556876, -2.83953518010886, -7.0, -7.0, -2.7862442464696757, -7.0, -3.184194404461818, -7.0, -3.06435100696701, -3.8033205235787544, -2.926856708949692, -2.769623455004179, -2.6237963756878444, -2.8928363526263907, -2.8326728977407982, -3.643798000679235, -3.5969542796066576, -7.0, -7.0, -3.6022770843001926, -3.5524857010929476, -2.40970774995732, -2.563053700270298, -7.0, -3.2475939016334037, -3.1075491297446862, -7.0, -7.0, -2.8457475186617014, -7.0, -2.6081317580331795, -3.5338355842360567, -2.9824973691977124, -2.365398121563634, -3.0985052832013156, -3.4811558708280352, -3.044735697450507, -2.986707768660134, -1.958292711812444, -7.0, -7.0, -2.0624056925748784, -2.270703608382223, -2.4762155307586386, -3.5121505369220305, -2.786708412045808, -3.120832862638392, -3.097881744713868, -2.9743345236890986, -1.9271734168466537, -2.755326094070565, -3.52283531366053, -3.21133416373255, -3.4955443375464483, -2.4463448147796543, -3.501470072100412, -2.6687654392008207, -3.141763230275788, -7.0, -7.0, -3.378170700063069, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4866211799441786, -2.8827277737122063, -2.772743880410262, -3.706803097037338, -7.0, -4.11143055176598, -2.986473147467338, -3.478566495593843, -3.8282731120520697, -3.922465945298413, -2.757540624926174, -7.0, -7.0, -3.105442054801695, -2.46108292457563, -7.0, -7.0, -7.0, -2.931521433730744, -2.993656628615462, -7.0, -2.8919708544400624, -3.1954014495202188, -2.655928985380298, -3.3799698999538514, -3.1555721862550743, -3.8481891169913984, -3.7944880466591697, -2.797293193949948, -7.0, -3.7628285531890904, -7.0, -3.506234359612126, -3.784831178124469, -3.3028357965272437, -7.0, -2.6304596577087733, -7.0, -3.3875321946343506, -7.0, -3.5482665451707454, -2.5115770590772803, -7.0, -3.703678200880355, -2.8163833578293587, -3.057158750485419, -3.1875771190550872, -3.843295082736507, -2.0368130875534725, -2.7457252252544877, -2.3930108178985368, -2.583198773968623, -7.0, -3.2996815916623548, -7.0, -4.154971441544471, -2.9096748675185355, -3.9595183769729982, -7.0, -2.477451294677366, -7.0, -2.867113779831977, -3.796851749049887, -2.4989367896326486, -7.0, -2.6785884095944708, -2.06547416845862, -2.319337436236881, -7.0, -3.4129083314437545, -3.8460586289641854, -3.095552896019402, -7.0, -7.0, -3.483301952358167, -7.0, -2.9965846321681098, -2.4869261276199506, -2.923983747103962, -2.0179524814025043, -1.8944413421587214, -2.638156336676239, -3.129574813769972, -4.198881922320664, -7.0, -3.486005186362242, -2.4921315335815697, -3.824516328007209, -3.4623231130842345, -2.816756695724616, -2.1273404437758536, -3.3703897104835856, -3.1465621131575565, -7.0, -3.758684849882441, -7.0, -7.0, -7.0, -7.0, -2.9470046073947573, -3.0230278632753684, -3.459543258280413, -3.462622574900549, -7.0, -3.7791634237644987, -3.8048887446223913, -3.197831693328903, -7.0, -2.8499650956427165, -2.6830041301242167, -3.5571461423183632, -3.57951684265999, -2.675485048073944, -3.8529676910288186, -3.7681198941847973, -7.0, -2.8228551350071545, -7.0, -3.0281644194244697, -3.8067225030761813, -3.012814225271012, -7.0, -7.0, -7.0, -1.8485279434560256, -3.131578568842297, -2.401491236089779, -2.172144044533389, -3.6110502851446897, -2.8389120274059985, -3.3260626338156793, -3.470410490975931, -2.9853623100167104, -2.766996754711321, -2.7572333005770804, -7.0, -7.0, -3.3549403598710645, -3.4790711958039306, -7.0, -7.0, -2.9215130698187295, -2.337443413729783, -3.3498600821923312, -3.6057358938767465, -3.2392368961623195, -3.5802929605940523, -2.351882901347562, -7.0, -2.570135907677381, -3.070037866607755, -3.8095597146352675, -1.9043483915868251, -2.5783375537206847, -2.7944880466591697, -2.7538893314598334, -2.7563317673210577, -3.384353414137506, -3.4614985267830187, -3.5820633629117085, -4.018845751189305, -2.8035253955765325, -3.159717546180216, -7.0, -7.0, -2.927686156168301, -2.6528906949522417, -2.5553789986175914, -7.0, -2.4640035246143746, -3.0815633209803854, -3.269045709657623, -7.0, -2.7827676182461665, -7.0, -2.3109586924199976, -2.720802226516568, -3.8038666342849843, -3.1886191672078485, -3.041100132448002, -3.7138683912822246, -7.0, -2.479514695791261, -2.0209917192807882, -1.7342702822230114, -3.7571681922142726, -2.04356552011917, -2.2671717284030137, -1.9470697286324765, -7.0, -1.918156201003093, -2.287624959905981, -3.2890684385904976, -7.0, -3.4164185888449987, -3.4807253789884878, -3.800717078282385, -3.3292622471045052, -3.034138055782684, -7.0, -2.3013485188018796, -7.0, -7.0, -3.6960067152185454, -4.3322498880444344, -7.0, -3.9795938958489305, -4.278212300455029, -4.461513533243928, -4.109949580230588, -3.8680269370808706, -3.511605323528979, -3.5683190850951116, -7.0, -4.104981897748486, -7.0, -4.543273178913283, -3.2574085565304025, -7.0, -4.720101393614298, -3.7187849063628957, -3.7290027092721902, -4.412527744472011, -7.0, -4.4430612262456535, -3.604118006192035, -3.553529977558765, -3.955567497098864, -7.0, -4.706273875527286, -7.0, -3.8777168008649765, -3.77000803178587, -3.5959148826640113, -4.246170191757922, -3.9441206092013927, -7.0, -7.0, -7.0, -3.8081434257614912, -4.527423658682064, -7.0, -3.821728703986952, -2.2405492482826, -4.114969412756915, -3.314252961500534, -2.96748111539479, -7.0, -3.5221833176186865, -7.0, -3.5672592416964437, -2.9492751746818158, -2.669368542313857, -3.371424127988508, -3.2965980399742842, -2.5873749918376694, -7.0, -3.559999668676523, -3.475307913956194, -7.0, -7.0, -3.558078266395439, -3.697403723200488, -7.0, -3.1000930325866447, -3.620145775285036, -4.2795478109928755, -3.4799350339443356, -2.4258258487434703, -3.309701124779525, -3.3890115198419006, -7.0, -4.812309936448493, -3.3916407034923877, -3.3387153993635277, -7.0, -4.119057837523237, -3.1480121795527896, -3.673027493285839, -7.0, -3.3818768603693616, -4.068519806000912, -3.2728828704665345, -3.954664535067499, -2.4602142372606046, -2.7608484390395938, -3.3894387111668958, -7.0, -3.166901615996242, -7.0, -3.965342835560622, -3.3602146132953523, -4.0980896903639525, -7.0, -3.4631461367263494, -7.0, -7.0, -7.0, -2.8074849162033497, -2.8797264966395772, -2.9704525414168397, -7.0, -3.8591983615338776, -3.157234020373384, -3.8896937914441856, -3.165896909992507, -2.999710373792598, -3.134057516640611, -7.0, -3.1077026245929917, -2.8946390783050586, -3.321391278311689, -7.0, -4.271934493817765, -7.0, -2.917330426106554, -7.0, -7.0, -3.2080572629476225, -7.0, -3.8055008581584002, -2.257493965097264, -2.2613894299129877, -7.0, -3.414722721158878, -7.0, -7.0, -2.7051928669597114, -3.3964106067359956, -4.045818287532453, -7.0, -7.0, -2.5517939440868913, -3.8144473785224875, -2.634954313027654, -7.0, -2.799027092578261, -2.818979550170818, -7.0, -7.0, -2.1927835740087853, -2.66149717917983, -3.5281021701384736, -7.0, -3.2460675192399124, -3.219650005970414, -7.0, -3.0113287324559876, -3.1342640621234383, -4.321826183768503, -7.0, -2.9021018307478776, -2.653872343068953, -7.0, -3.5867897782094236, -7.0, -3.775610448006361, -4.120442306873306, -3.5710679786102455, -2.326599552068477, -2.708474015096181, -3.965953889102063, -2.4580079801960197, -7.0, -3.6152484449094584, -3.7940695839816327, -3.7500453120117676, -3.786964259435733, -3.0276407874584117, -2.8103818884116567, -7.0, -7.0, -2.5975060579854494, -2.75060821076054, -2.558939222448887, -3.2800089531081857, -2.715252736283062, -3.136773397821505, -1.712289440733966, -2.5471266979833507, -3.1269427179442277, -3.695043658821294, -7.0, -3.221283799492686, -3.766635886310268, -7.0, -4.450526229129723, -7.0, -3.8109713998222077, -7.0, -3.446437302477664, -7.0, -3.8198289848169766, -3.226911231277746, -2.319526876598288, -2.9538670309532273, -7.0, -2.6190319158657123, -7.0, -2.872783607024382, -2.997167871445834, -7.0, -7.0, -3.152532948434526, -2.973523686361632, -2.8249642405126534, -3.807264355276107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.914847525422251, -7.0, -7.0, -3.7763379096201755, -3.485295438726089, -3.504470862494419, -3.7940695839816327, -3.8903092168999485, -3.5418287667813124, -3.0027178820160247, -4.045518562884493, -3.2933183494610736, -3.801197834459149, -7.0, -3.64033234004778, -7.0, -7.0, -3.203942924360925, -3.2024201977780304, -3.325036498467299, -7.0, -7.0, -3.5948895496460347, -3.7701890227359933, -7.0, -3.5781806096277777, -7.0, -3.9925093350677754, -3.1428272945383364, -7.0, -7.0, -3.721315880605899, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1727488389827436, -3.7134905430939424, -3.4353665066126613, -3.2034237103517693, -7.0, -7.0, -7.0, -2.3430729846351075, -2.523767438609714, -2.9875173043753707, -3.137986732723532, -7.0, -7.0, -7.0, -2.863322860120456, -3.7868223794991875, -7.0, -2.5286786915678543, -2.1466146192720306, -2.1824609220670608, -2.4902064351734503, -3.21818526771214, -2.0131048534191742, -1.9852018583645716, -3.1266183755229515, -3.3600919894948293, -3.1536624535754956, -7.0, -3.2301081646076315, -3.2528530309798933, -7.0, -3.1150277335990566, -3.1806419027298323, -7.0, -2.7179903781599086, -7.0, -3.1016132670886187, -3.7123129086813655, -2.955126283548938, -3.5241363765925686, -2.8608618390413807, -2.9950986973311724, -2.6428765252838393, -2.909326749263002, -7.0, -3.068556895072363, -3.7985815947285477, -2.6446273432908463, -3.164887957547954, -2.274927193099776, -2.854427505787861, -7.0, -3.144184880392236, -2.397340568298191, -7.0, -2.6752435432296338, -2.5787919691964865, -7.0, -3.139957755812176, -7.0, -3.1345887800261094, -2.864171920961574, -3.100628976831171, -2.9447910104534314, -7.0, -3.520134035100441, -2.451439772483668, -3.707485011967474, -3.8587176148602915, -3.015252577465673, -3.7051792448736762, -3.8327004709605674, -7.0, -7.0, -3.1264561134318045, -3.5180530800797216, -3.423081958297231, -7.0, -3.562827966219992, -3.2659963704950794, -2.928452752942272, -2.9039577085231705, -2.1853140753427507, -3.794418330874141, -2.9248458868910823, -3.902546779313991, -3.4768895692076844, -7.0, -7.0, -3.856547644856748, -7.0, -3.5405171695925723, -3.0770043267933502, -7.0, -4.270771972426836, -7.0, -3.697490887171057, -7.0, -2.623844235885958, -7.0, -2.2559069748756153, -3.3021865728639233, -2.2408486584853606, -2.5115145725207486, -2.6943658522855136, -3.241795431295199, -2.5337272110120566, -3.2994346559835996, -1.5139448067925088, -7.0, -7.0, -2.3031305776643296, -2.396689613731324, -2.5116853468494194, -3.7548832282521674, -2.5788638373041564, -2.948001668457551, -2.5583084834648857, -3.213593642804973, -2.624361440767268, -2.355495269475934, -2.9210916532959033, -2.34236285652541, -3.233858762564828, -3.4055171069763763, -3.441459468917794, -2.8560354841072253, -2.832915147969814, -7.0, -3.698448538015329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5804117262774118, -3.149746809539141, -2.325636926468734, -7.0, -7.0, -7.0, -2.9999131324165713, -3.113692725494897, -2.3208136900393996, -7.0, -2.633740290110152, -7.0, -3.7204900684500517, -1.8645271158562264, -2.960592445690832, -7.0, -7.0, -3.809222921689422, -2.8760734367725553, -3.2304489213782737, -7.0, -3.492271357949134, -3.846955325019824, -3.2371036915866878, -3.8048887446223913, -3.0812032393065754, -3.3171576110017376, -7.0, -2.766689925412973, -3.7259116322950483, -3.696618459232225, -7.0, -3.2706788361447066, -7.0, -3.4156409798961542, -7.0, -2.2869189482542525, -3.7218930162149575, -3.594705542151585, -3.699230502883409, -3.689530834330039, -2.3882351204884205, -7.0, -3.122449936204605, -2.666205875272384, -3.1781852925373903, -2.632204133050827, -7.0, -3.02626080875407, -2.86562209338572, -2.708562525598842, -2.6877270882627347, -7.0, -3.3594560201209864, -7.0, -3.6520851030278667, -7.0, -4.423491631454581, -7.0, -2.87146679000413, -7.0, -3.1653291327027926, -3.735997884091794, -2.943847687009491, -7.0, -2.7315081835960253, -2.468260428064313, -2.7494142103240775, -7.0, -2.6358605750224178, -7.0, -3.765594055319445, -7.0, -7.0, -3.721728198572788, -7.0, -3.4101020766428607, -2.4957891254243636, -3.7049222912234017, -2.6930871042673523, -2.223305533047631, -2.539023796211645, -3.7798368978412693, -4.637567275175051, -7.0, -7.0, -3.035189508908448, -3.466496903744401, -3.697403723200488, -3.4062846379247267, -2.184691430817599, -2.838709198810807, -3.0925803006913113, -7.0, -7.0, -7.0, -7.0, -3.693463127219531, -7.0, -3.3202847949567196, -3.517068589333369, -2.9944931228835125, -2.7934411329776636, -7.0, -3.4143883269310753, -3.2677972877216908, -3.4387796033573776, -7.0, -2.664798619194218, -3.4931326148751247, -2.8047526021504603, -3.0695036537131513, -2.610778418905969, -7.0, -7.0, -7.0, -3.170296236636731, -3.516997846195275, -2.4547206774916206, -3.747334109615905, -3.706143411054697, -7.0, -7.0, -3.720572720364261, -1.4235552874960704, -3.7000110623221123, -1.789187032292866, -1.5707500201996958, -4.058274146685951, -3.484157424365381, -3.2661532687922707, -7.0, -2.9964386998811507, -2.964966374831098, -2.902848645234189, -7.0, -7.0, -3.776555910703262, -3.7168377232995247, -7.0, -7.0, -2.7839685107944083, -2.2169099048509042, -2.8153563389481215, -2.9051960260157315, -3.309772070541653, -3.8036308979912206, -2.91409622851974, -3.710371264260763, -2.7630625795894206, -7.0, -7.0, -1.5085159774318875, -2.9611497871815335, -2.638779011985003, -2.174384795241664, -4.026574118150334, -7.0, -7.0, -3.055187138555754, -4.218481706596672, -2.420615770625765, -7.0, -7.0, -7.0, -2.6090819169066433, -2.300018832269119, -3.1233615587462964, -7.0, -1.5806866301735132, -2.3922781139158866, -2.495940591663266, -3.4252080511386565, -3.3763944420372662, -3.7440581658788354, -2.2135557015581133, -2.473260388201678, -7.0, -3.0314596718494946, -2.903737929194321, -3.7378803015508915, -7.0, -2.824776462475546, -2.4485416995909173, -1.2129508474370692, -7.0, -2.9103956884008624, -3.1103371400787525, -2.170925605178104, -1.918156201003093, -7.0, -1.6531440616541675, -2.55249439402386, -7.0, -2.8905452093885216, -3.718750734739665, -3.263004482246068, -7.0, -2.9086312213651015, -7.0, -1.8997005684246981, -7.0, -3.09429639740537, -4.040256111364648, -4.803846167521772, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03604971613695, -3.791328901157271, -7.0, -7.0, -7.0, -4.453708112597456, -5.017004106955629, -4.328766829591525, -7.0, -7.0, -4.945375019552896, -7.0, -7.0, -7.0, -5.094870998546221, -3.8902533051545345, -4.284960588171913, -3.759264833889892, -7.0, -7.0, -7.0, -7.0, -4.806010294559223, -7.0, -4.716545872727093, -3.9304226032574, -4.002014788579384, -7.0, -3.9194964878630616, -4.0806625563941825, -4.516733636616387, -7.0, -3.4548067623303504, -3.277761973532505, -4.233046902098183, -3.438826320043174, -2.9714542697101325, -3.6547539332529304, -4.411939417524044, -3.8298824464434933, -3.25060233715025, -3.253004643647484, -3.8820689444361483, -3.9048236998009442, -3.2048612693935485, -2.653220833513314, -7.0, -3.9012948171655673, -3.745660225706076, -7.0, -4.030518764843543, -7.0, -7.0, -7.0, -3.492349724648918, -3.7951678857272726, -5.409231263856362, -7.0, -2.296058079214253, -7.0, -4.0223687930961, -7.0, -7.0, -3.613709717089681, -7.0, -7.0, -4.406386872972728, -3.897063242076261, -4.114877749892836, -7.0, -3.1730613335266535, -7.0, -3.377894003655977, -3.7015679850559273, -3.268499966587276, -3.2659022043017565, -4.375027707231542, -3.210318519826232, -3.426517002165785, -7.0, -7.0, -3.4230240909444603, -4.384729651619834, -7.0, -7.0, -7.0, -7.0, -7.0, -3.251638220448212, -2.788554010783411, -3.1194318594918125, -7.0, -3.8069935136821074, -3.276789945089424, -7.0, -7.0, -3.2374599541198688, -3.526511582284746, -7.0, -3.5718899117990004, -3.634275694625944, -3.7382254481425052, -3.822625678774141, -4.2524889444849885, -7.0, -3.114468006623671, -7.0, -7.0, -4.020982442918419, -7.0, -7.0, -1.7274984504165358, -2.7797629407578768, -7.0, -4.169733197942518, -7.0, -7.0, -4.041234731171431, -3.647416697795443, -4.818667883372954, -7.0, -3.8614746688571686, -2.7023642471251033, -7.0, -2.966200417217455, -7.0, -7.0, -2.9675674753537584, -7.0, -7.0, -3.3624196382493063, -7.0, -3.491455080455835, -7.0, -7.0, -2.9860248820066873, -7.0, -2.9006401839826004, -3.373402454159332, -7.0, -7.0, -2.901076715726255, -3.1122697684172707, -7.0, -4.267124775110152, -7.0, -7.0, -7.0, -3.520483532740792, -2.719923162669042, -3.868526886768204, -7.0, -3.485366465708323, -7.0, -4.062769949815128, -3.7327956982893293, -7.0, -7.0, -3.5218569521701695, -2.9204043061400116, -7.0, -7.0, -2.915115597777663, -2.732975756918457, -3.0331220573283053, -3.833083334178343, -3.392609030497567, -7.0, -2.450513036909619, -2.925901165149684, -3.4056024552093134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7384407792400953, -7.0, -3.6765107102825536, -3.644329154042816, -2.423534985995795, -3.26030994579492, -7.0, -2.6503075231319366, -7.0, -2.8344696134717644, -3.1820340262209674, -7.0, -7.0, -7.0, -2.8064061101420315, -3.3531909881987607, -3.74795530690673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.034989216287685, -7.0, -2.3038707421637667, -7.0, -7.0, -7.0, -7.0, -3.7460890430562004, -7.0, -7.0, -7.0, -3.636538042936402, -7.0, -7.0, -3.740993931584886, -7.0, -3.8987251815894934, -7.0, -7.0, -3.6531642561518813, -2.9662982070631547, -3.7424108805804925, -3.5942267574809135, -7.0, -3.848312303627284, -7.0, -7.0, -3.5284667540562014, -7.0, -3.954724790979063, -3.1854004831904525, -7.0, -7.0, -7.0, -3.2605483726369795, -7.0, -7.0, -3.302114376956201, -7.0, -7.0, -3.30362797638389, -7.0, -3.4087190190682533, -7.0, -7.0, -3.301897717195208, -3.0854944484283413, -3.0705304036403067, -3.42845877351558, -3.369957607346053, -7.0, -7.0, -7.0, -3.5200153916133203, -3.9583727324786073, -7.0, -2.933270303341617, -2.7530969482246705, -2.2249644667161625, -3.0269416279590295, -2.7781512503836434, -2.233123078521081, -2.5354523617941673, -7.0, -3.669688708056208, -2.7055216134226674, -7.0, -7.0, -2.2620553771910674, -3.2278867046136734, -1.888438722625924, -3.345079526314867, -7.0, -2.8632038590286295, -7.0, -3.64033234004778, -2.6972293427597176, -3.0532705666813786, -7.0, -2.9475970826119045, -2.8047450374282943, -7.0, -3.403977963669355, -7.0, -2.2232038037013226, -3.4956830676169153, -2.824607287041005, -2.714434547894349, -2.555931150182966, -2.8796692056320534, -7.0, -2.9065146136422175, -2.5352941200427703, -7.0, -3.1043163645117278, -3.1063609088067503, -3.287353772714747, -3.374565060722765, -7.0, -3.2668341386777238, -7.0, -7.0, -3.113609151073028, -7.0, -7.0, -2.5470050888796587, -3.2880255353883627, -7.0, -3.6525750809701454, -3.2819419334408244, -3.084099424214281, -7.0, -7.0, -3.1037060059185544, -7.0, -1.8725724629880052, -7.0, -2.6624430114561872, -2.5967803035945445, -2.473535627784848, -3.2105860249051563, -2.6589648426644352, -7.0, -3.441210993482343, -3.684126925613075, -3.471144965160633, -7.0, -7.0, -7.0, -3.49996186559619, -3.578295305120826, -3.4158077276355434, -7.0, -3.5879914264312434, -7.0, -2.5603849229720153, -7.0, -2.669316880566112, -2.9689496809813427, -2.7965743332104296, -7.0, -2.5453071164658243, -2.5367140633936573, -3.3624824747511743, -2.714958109720149, -2.649010152542322, -3.450864692379766, -2.549139554034408, -7.0, -7.0, -2.7021842679490464, -2.6073656530153815, -3.0536161744043904, -3.1015752462559334, -3.0970970534252165, -3.9196756768967833, -3.36078268987328, -7.0, -3.369215857410143, -3.455610458764592, -2.582874673593952, -2.663700925389648, -2.452109391093665, -3.2860071220794747, -3.3749315539781883, -2.7473913623208097, -3.160868526065023, -7.0, -7.0, -4.091807597001675, -7.0, -7.0, -7.0, -3.2880255353883627, -7.0, -3.7806053058389697, -3.2259550728960145, -3.0174229159729875, -3.792881745385397, -7.0, -7.0, -2.055712716407559, -3.3106933123433606, -2.9626849566736677, -7.0, -3.003514384733037, -7.0, -7.0, -2.680698029697635, -3.0015173768235046, -7.0, -7.0, -7.0, -3.4578818967339924, -3.289142835932333, -2.9827233876685453, -7.0, -3.587935348636356, -3.2731170684867417, -3.030599721965951, -3.4728539231099913, -3.1862498207790875, -7.0, -3.4207119401016124, -3.3348556896172914, -7.0, -7.0, -3.3875677794171883, -7.0, -7.0, -7.0, -2.0899956366053125, -7.0, -7.0, -7.0, -3.5202869749271164, -2.110387743572669, -7.0, -2.744932749231845, -2.4597274623087366, -1.867839501143476, -2.455196373165623, -3.174931593528443, -2.359021942641668, -2.5303598067696527, -2.4325320082579323, -2.5734904758098778, -2.743313739231126, -7.0, -7.0, -3.4109880047872694, -7.0, -7.0, -7.0, -3.0074194882565544, -7.0, -3.5499224041295117, -7.0, -3.00014474070519, -3.3234583668494677, -3.351989455435632, -2.993121181893369, -3.5566642621225686, -7.0, -2.080347137974415, -7.0, -3.6283889300503116, -7.0, -7.0, -3.3244882333076564, -7.0, -7.0, -3.040602340114073, -3.2812606870550125, -3.0580462303952816, -2.864145820749306, -2.9362623419034777, -7.0, -5.413094305937094, -7.0, -3.3322364154914434, -2.8785217955012063, -7.0, -2.9595183769729982, -7.0, -2.941883951154944, -3.185258765296585, -3.4825877695267677, -7.0, -7.0, -2.986995539724382, -2.8344207036815328, -7.0, -2.9822712330395684, -7.0, -3.6938978589117037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4763968267253302, -3.7912694809102683, -3.0327530302850567, -7.0, -2.666132406127459, -3.4984484031739997, -7.0, -7.0, -3.0413532020469742, -3.0565237240791006, -3.135548513418428, -7.0, -4.023417089841105, -7.0, -7.0, -7.0, -2.2732563758039754, -3.836830286488879, -2.7410271294508175, -2.002705893375925, -7.0, -3.4686426683915115, -7.0, -3.286231854028553, -3.146283113159587, -3.325720858019412, -3.3066394410242617, -7.0, -7.0, -3.450249108319361, -7.0, -3.1848333339333537, -7.0, -2.506505032404872, -1.903587331203387, -2.737669627356642, -3.6120417446452695, -7.0, -4.0948203803548, -3.263399331334002, -7.0, -4.014520538757924, -7.0, -3.091842749738098, -2.0026318385574484, -3.0348957147764644, -2.7850784829355133, -1.7521469831532483, -3.1740598077250253, -7.0, -3.6729286904427223, -7.0, -4.550512853119367, -2.9886084971150124, -7.0, -7.0, -7.0, -3.002536304303998, -2.4592337253806016, -3.3348556896172914, -7.0, -2.8949802909279687, -7.0, -3.5392015992941275, -3.336059277866349, -3.5025636691073636, -7.0, -3.1190908524217216, -2.963079160641827, -7.0, -3.910861465201803, -3.331309173955823, -4.344579498976326, -3.37984917876283, -2.3980558050950416, -3.3804908110338814, -1.8440017975763174, -2.9390197764486667, -2.121438887639747, -2.824125833916549, -1.5839889457616856, -2.287624959905981, -1.6531440616541675, -7.0, -2.6669857183296606, -7.0, -2.983062194978853, -7.0, -7.0, -7.0, -3.2841298195890003, -3.0283678836970616, -1.234437876924377, -2.768144584737799, -1.8156269350825625, -3.910891088644528, -7.0, -7.0, -7.0, -7.0, -4.397314173908845, -7.0, -4.304361254225308, -3.773927025205094, -7.0, -7.0, -7.0, -4.1278253236331075, -4.401525468644719, -7.0, -7.0, -4.685884987381299, -4.628496213082012, -7.0, -7.0, -7.0, -4.913229103313806, -4.3042103864352335, -4.247838295127875, -7.0, -7.0, -4.369855691820066, -7.0, -7.0, -4.482980715414231, -7.0, -4.689371023618564, -7.0, -4.228836487527934, -7.0, -4.129045059887958, -7.0, -7.0, -7.0, -4.025940454660939, -7.0, -4.080500220172289, -3.7285197932079055, -3.110445402445486, -7.0, -7.0, -7.0, -3.7202044225667583, -7.0, -3.6497241859295224, -3.7629485074729363, -3.506402383271917, -3.546251743863432, -7.0, -4.458123944661062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8213431834400855, -4.042623321013089, -5.406550399007429, -7.0, -3.015429616984512, -7.0, -4.007648222996511, -7.0, -4.930548324687003, -3.4240645254174877, -7.0, -7.0, -7.0, -7.0, -3.947139517642829, -3.72916478969277, -3.549346636005761, -7.0, -3.701314284718106, -3.8069393250886248, -3.382557321908786, -3.193798082161599, -4.661372490991278, -7.0, -4.50505496600964, -7.0, -3.7206553565517244, -3.6678160103390933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8863073803643697, -3.5589484459780394, -3.1408221801093106, -7.0, -7.0, -3.413709458318653, -7.0, -3.0483122987091575, -3.307282047033346, -3.5395778833453093, -7.0, -3.5274806564486534, -2.891139058890472, -7.0, -7.0, -4.168114286819532, -3.5364321758220134, -3.775610448006361, -7.0, -7.0, -7.0, -7.0, -3.0811672147134725, -2.45484486000851, -2.8254261177678233, -7.0, -4.065355601289965, -7.0, -3.295567099962479, -7.0, -3.6076556067548955, -7.0, -7.0, -7.0, -2.5997084462241684, -7.0, -2.9293167267534956, -7.0, -3.1711411510283822, -3.2405719381016747, -7.0, -7.0, -7.0, -3.4670158184384356, -3.7887338588277077, -7.0, -7.0, -3.4252080511386565, -7.0, -3.507855871695831, -3.4402004153614896, -7.0, -7.0, -2.602150459921541, -3.3636119798921444, -7.0, -4.185825359612962, -7.0, -7.0, -7.0, -3.54082981411108, -2.9017229120897787, -3.0236639181977933, -7.0, -2.7709992051639407, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2421685899736654, -3.040093500592591, -7.0, -7.0, -2.8773713458697743, -2.5481614810386617, -3.1370374547895126, -3.084814508594119, -3.555195248040743, -3.327563260187278, -2.8763461592458195, -3.440279213235588, -3.304957028811091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7010990244718034, -7.0, -4.199755177253475, -3.562530768862261, -7.0, -3.0134692323091703, -7.0, -2.715446198616883, -7.0, -2.855216194733363, -3.475235222604128, -7.0, -7.0, -7.0, -2.940682467920219, -3.8158764720425014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5221833176186865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2774946096110122, -3.475525915039281, -3.452154585714663, -3.8529676910288186, -7.0, -3.3710678622717363, -7.0, -7.0, -7.0, -7.0, -3.7382783463742273, -7.0, -3.374381698050882, -3.6721902511882525, -7.0, -7.0, -7.0, -3.294466226161593, -3.5559404378185113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.358935075058239, -7.0, -7.0, -7.0, -4.189490313699367, -3.427621331714776, -7.0, -2.870403905279027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6447339274471924, -3.5460989704691377, -7.0, -7.0, -7.0, -2.6653464274249417, -2.281412167517624, -7.0, -7.0, -2.9749719942980692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.312811826212088, -7.0, -4.839635144312755, -7.0, -7.0, -7.0, -3.0257153839013404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062109025311936, -7.0, -3.8920946026904804, -7.0, -7.0, -7.0, -3.404149249209695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.361538971269279, -7.0, -7.0, -3.1316186643491255, -7.0, -3.3914644118391033, -4.647558999765845, -7.0, -7.0, -7.0, -7.0, -3.8632038590286295, -7.0, -2.732393759822968, -7.0, -7.0, -7.0, -7.0, -7.0, -3.204662511748219, -7.0, -4.752701320223626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.485674115137571, -7.0, -3.0338256939533106, -7.0, -3.3055663135153037, -3.5287514680743923, -7.0, -7.0, -2.5554975061310574, -7.0, -3.535547279176668, -7.0, -7.0, -2.9854264740830017, -7.0, -3.6088468223264116, -7.0, -4.166696470479601, -7.0, -2.8407332346118066, -7.0, -7.0, -4.147808778209056, -7.0, -3.4087486061842442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7104558643354246, -3.8462752424122133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.811373897053893, -7.0, -7.0, -2.2013971243204513, -4.5390007810803175, -7.0, -7.0, -7.0, -7.0, -2.53655844257153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275877756612034, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.609914410085998, -7.0, -7.0, -7.0, -7.0, -3.9912299292200473, -7.0, -7.0, -3.558708570533166, -7.0, -3.0269416279590295, -7.0, -7.0, -7.0, -7.0, -3.6068111469189637, -7.0, -7.0, -7.0, -3.9399682905513362, -7.0, -7.0, -7.0, -4.066176785772006, -7.0, -7.0, -7.0, -3.1470576710283598, -7.0, -2.8109042806687006, -3.246826721711981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.712780138713116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941446830252359, -1.4648867983026508, -1.485315733334934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8000981801747757, -7.0, -7.0, -7.0, -7.0, -7.0, -4.531121115412728, -7.0, -4.408019369129767, -7.0, -7.0, -7.0, -2.9806849743633146, -7.0, -3.6482624057480444, -2.791515211941625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6532125137753435, -7.0, -7.0, -7.0, -3.916295994563131, -7.0, -7.0, -7.0, -4.830126543985933, -3.578295305120826, -7.0, -7.0, -2.482873583608754, -7.0, -2.1221551759899824, -7.0, -7.0, -3.4712917110589387, -7.0, -7.0, -7.0, -3.0130479961152314, -5.527226347937657, -7.0, -7.0, -7.0, -7.0, -7.0, -3.113943352306837, -7.0, -7.0, -2.6672661193822744, -2.6646419755561257, -7.0, -7.0, -7.0, -7.0, -3.0132586652835167, -7.0, -7.0, -4.855603946870416, -4.3829710813619815, -5.574138959406015, -7.0, -3.473924693416157, -4.063358382401493, -2.609441944950562, -7.0, -7.0, -2.605305046141109, -3.505149978319906, -3.2890684385904976, -2.55249439402386, -2.6669857183296606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.323403371980216, -7.0, -7.0, -4.291468753334798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8789065156607965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.227719636143868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.463067642678739, -7.0, -7.0, -7.0, -7.0, -4.757714799332841, -3.9813201732591073, -7.0, -4.437338262919794, -4.183326796601633, -4.2010965650394665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3884165014521015, -5.487599303435275, -7.0, -7.0, -3.6651117370750512, -7.0, -7.0, -7.0, -7.0, -3.5902100254885054, -7.0, -7.0, -7.0, -7.0, -4.780950646376869, -7.0, -7.0, -7.0, -4.59582126988028, -4.483758413788249, -7.0, -4.641305515998657, -7.0, -7.0, -4.869929551264621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.465248972927137, -3.0038911662369103, -7.0, -7.0, -7.0, -4.036309443724438, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318327728670159, -3.586362223307866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.889581802149624, -3.189069009399324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9238654751855013, -7.0, -3.4240645254174877, -7.0, -7.0, -4.244499778833843, -7.0, -7.0, -7.0, -3.123524980942732, -3.657629431388952, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2066909810216324, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9665445398586376, -3.419625360887743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7844033017530085, -7.0, -7.0, -3.473778834646725, -4.150766670469652, -3.112157966516305, -7.0, -4.300008202553813, -7.0, -7.0, -7.0, -4.021891873919109, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.242218320247613, -3.6356847625472226, -7.0, -7.0, -2.8813846567705728, -7.0, -7.0, -3.640878778701618, -7.0, -7.0, -7.0, -2.403549454032318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.798167059715939, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.193792230279798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.270472701110684, -7.0, -7.0, -7.0, -3.238798562713917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2081725266671217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070721111676305, -7.0, -7.0, -7.0, -7.0, -4.378615902031225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.236386088609555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.451821730108041, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.449686625478326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6532125137753437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.975845225467567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.91539983521227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5948895496460347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.234532468368964, -7.0, -7.0, -7.0, -4.960936692468327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.487424038788304, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.346603306315429, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626658528085447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.696356388733332, -7.0, -7.0, -7.0, -3.3787611753163733, -3.543074235033532, -3.2023520678097515, -7.0, -3.1269427179442277, -3.460948825893139, -7.0, -7.0, -7.0, -3.2001288925178257, -3.302090308986348, -2.7868933252613157, -7.0, -7.0, -3.3703280077795106, -7.0, -3.417988073810789, -3.97648753730519, -7.0, -2.9604028181441433, -2.867777704440707, -7.0, -3.4008832155483626, -7.0, -3.2837533833325265, -2.4952667443878105, -2.810064414845355, -4.399079259948645, -3.467312062980552, -3.364550995353972, -7.0, -3.4154741681092355, -7.0, -2.9109799468508544, -3.38147609027503, -7.0, -7.0, -7.0, -3.7317467856612594, -2.294282475584744, -2.517855418930029, -2.990227824624168, -7.0, -3.311047116421505, -7.0, -2.5605044151950564, -7.0, -2.4877038631637265, -7.0, -2.46462799257641, -2.753199914199416, -2.3239691276496446, -2.947161317385927, -7.0, -7.0, -3.0529823500032394, -3.153814864344529, -3.4671639659690903, -7.0, -7.0, -2.740046724051494, -3.7371926427047373, -3.999855211039865, -7.0, -7.0, -2.727744530836107, -7.0, -3.5543680009900878, -7.0, -7.0, -7.0, -3.0773293096211045, -7.0, -3.0028137792246734, -7.0, -7.0, -2.852808311744541, -2.8826383616960385, -3.1015752462559334, -7.0, -2.1459341109231054, -3.44216608578472, -1.5036393872946674, -3.243781916093795, -2.511397165034557, -7.0, -3.162417568236465, -3.0179510688307425, -3.132579847659737, -3.0563330349511615, -7.0, -2.94527158150771, -7.0, -3.319314304090512, -2.6672193984439363, -7.0, -3.3555062516302954, -7.0, -7.0, -7.0, -2.9009910030419435, -3.35237549500052, -2.6164755138885654, -3.0340934464167257, -2.024353705634743, -1.4243576975802876, -3.4299136977637543, -7.0, -3.009592521262823, -7.0, -3.5700924009287913, -7.0, -7.0, -7.0, -3.4204508591060683, -3.1794081515138357, -7.0, -4.22188349178524, -3.8133808067338557, -7.0, -7.0, -7.0, -4.302646900425265, -2.4059721038560276, -2.8790958795000727, -3.4625477288026643, -7.0, -7.0, -2.9932357714670954, -2.3096301674258988, -7.0, -3.3469394626989906, -4.399621810671737, -7.0, -7.0, -7.0, -3.366982975977851, -7.0, -3.493144241793856, -2.646709977192606, -3.6026838413608373, -7.0, -7.0, -3.970114322285097, -7.0, -7.0, -2.8945929479229555, -4.118661462854496, -2.6246945312720813, -7.0, -3.394976719554564, -7.0, -2.092445701480322, -7.0, -7.0, -7.0, -3.512817758564873, -7.0, -1.5020609001161556, -7.0, -7.0, -3.1394592753662236, -3.5575072019056577, -3.4913149929920424, -7.0, -3.4216039268698313, -2.9276910886144174, -2.121438887639747, -7.0, -7.0, -7.0, -7.0, -2.784082117602856, -7.0, -2.9257846410591988, -3.3979400086720375, -7.0, -7.0, -3.846089580357984, -2.5414582697501884, -7.0, -3.8143142002074595, -3.2714543622113297, -3.5137501500818233, -7.0, -3.529045170765769, -7.0, -7.0, -2.8295610562993927, -2.455424982962566, -3.1149444157125847, -3.805296916157985, -7.0, -4.029302593558998, -3.5724068675580556, -3.676437528972767, -7.0, -3.1799027104409694, -7.0, -3.396780343144799, -7.0, -3.5304558435846762, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0218251622609853, -7.0, -3.9488529061997135, -7.0, -3.0392157659039505, -3.397592434038117, -7.0, -7.0, -7.0, -7.0, -7.0, -3.695350317569429, -2.5983214217685604, -3.5825462753591735, -4.635250787227244, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5381965783494542, -3.534660575828444, -7.0, -7.0, -7.0, -2.909556029241175, -7.0, -3.0620175988571123, -3.5446880223026773, -3.7749935764800484, -7.0, -7.0, -7.0, -7.0, -2.842765208181785, -7.0, -7.0, -7.0, -3.817631467190515, -2.515633037228158, -2.7772036781419343, -3.015254941970331, -7.0, -7.0, -7.0, -2.902488538172861, -2.3465830642477576, -2.8734538154104348, -3.4499409887733377, -4.725625818213062, -7.0, -7.0, -2.5479504264025215, -3.2178597940702534, -3.559487681797765, -3.036269495742815, -2.4412236742426123, -3.0339763250254843, -7.0, -7.0, -3.3654879848909, -7.0, -3.062299883223179, -3.647480773173676, -7.0, -2.487491891558492, -7.0, -3.3872118003137306, -7.0, -7.0, -1.2174221537205385, -2.804735581340288, -2.4510883249706517, -2.951531790542348, -3.525692524505011, -3.493777966279982, -2.546953732587764, -7.0, -7.0, -7.0, -3.1550322287909704, -3.749581734865559, -7.0, -3.032014034159506, -2.2751340914855125, -7.0, -7.0, -3.707229419327294, -2.4285667129921897, -4.216703246192243, -1.3043739542975754, -7.0, -7.0, -7.0, -3.3942181263801987, -1.9547699774270102, -7.0, -7.0, -3.3343532083835172, -7.0, -2.2185126722477833, -3.4073909044707316, -2.4111662699650966, -7.0, -3.4800069429571505, -1.1493282034085548, -3.4434194617828173, -3.788174265434528, -3.639021399134131, -4.160257808741388, -7.0, -1.9667561292534292, -5.025883174987696, -2.931966114728173, -7.0, -3.467756051244033, -3.3787611753163733, -1.9497323077321136, -3.4164185888449987, -2.8905452093885216, -2.983062194978853, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1484484035233837, -3.4885507165004443, -7.0, -2.0735278371719144, -7.0, -3.3434085938038574, -3.7688283078414297, -4.307367656038532, -7.0, -3.7745899502647946, -7.0, -2.8977816781075982, -7.0, -3.4953628544079263, -2.986200507770217, -3.748885440009517, -7.0, -4.0389974726186795, -4.130944568044679, -4.160125384843879, -3.822375148347866, -7.0, -7.0, -3.6760632984611115, -7.0, -7.0, -7.0, -4.487926322056887, -4.312473557686056, -3.5991792894059005, -4.160378481462862, -4.364044179182894, -4.197317322239914, -3.630122642859312, -7.0, -3.485480084723825, -7.0, -4.39174644414508, -4.35778243623142, -3.6364377439793962, -7.0, -3.664108964176918, -7.0, -4.478479916635806, -4.231189145482667, -3.1128384959261495, -7.0, -3.5397300961558305, -3.6921416093667836, -3.0193471139879318, -2.841428996506697, -2.6706244552094285, -2.900913067737669, -3.145810203973303, -2.9832503071149876, -3.083233790058822, -3.426111828467671, -2.905335203978694, -3.0420239272488674, -7.0, -2.3922759649804375, -3.0767964309148454, -7.0, -2.945632686581686, -3.704733761876889, -7.0, -7.0, -3.029959487494864, -3.0024024745333016, -4.4774353659300345, -7.0, -3.1209685650193766, -7.0, -3.2821120781959503, -7.0, -4.2041623921556805, -3.2322335211147335, -3.9599710276712154, -7.0, -3.2768063456287626, -4.158241837980873, -3.3632985230168235, -3.156927555539657, -2.3792692494736474, -3.130816050034744, -2.9672358709363653, -3.5109871220675624, -7.0, -2.1680995417304274, -3.6216199837199943, -3.0288964451314704, -3.903663497285699, -7.0, -2.9054874873267518, -2.8927334075286266, -7.0, -3.3727279408855955, -7.0, -7.0, -7.0, -7.0, -3.3473857798884064, -2.823800153749878, -2.4567519240544438, -7.0, -7.0, -2.7303601047963593, -7.0, -3.5733358400660675, -3.3830969299490943, -2.631980634727735, -7.0, -3.165062128728178, -2.6512034378011884, -7.0, -7.0, -7.0, -3.582744965691277, -2.956991217867476, -7.0, -7.0, -3.586699801624049, -7.0, -3.447158031342219, -3.071636573854042, -2.927027994490033, -7.0, -3.0374627178215423, -7.0, -7.0, -4.3140463825880415, -3.4012523038768094, -4.021781741232203, -7.0, -7.0, -2.838974954955468, -7.0, -3.0642707529740063, -7.0, -2.9228551562119045, -3.0350737955506264, -7.0, -7.0, -7.0, -3.2195845262142546, -3.8152455919165633, -3.4202858849419178, -3.5397032389478253, -3.484157424365381, -7.0, -3.255875273391467, -2.777350496469624, -7.0, -7.0, -2.568536957184299, -3.000086850211649, -7.0, -4.1966458867870875, -7.0, -7.0, -7.0, -7.0, -2.788205290121511, -2.9646367037885013, -7.0, -7.0, -7.0, -7.0, -7.0, -3.884228769632604, -7.0, -2.9863237770507656, -2.729596708656171, -7.0, -7.0, -2.8991088581933995, -2.2328478515978616, -3.166652089049701, -3.6061663146076204, -3.2616593037647066, -7.0, -3.855700830835437, -7.0, -2.982340825938027, -3.499687082618404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.856577857697687, -7.0, -2.9820143951684135, -7.0, -3.9091547098084254, -3.2658433400609064, -7.0, -2.7506048083231383, -7.0, -2.7662888869340487, -7.0, -3.0088130090520893, -2.9577440727248177, -7.0, -7.0, -3.5467893516312583, -3.176958980586908, -2.9610936335556257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4307198878632823, -3.076094046682475, -7.0, -7.0, -7.0, -2.6190933306267428, -3.2271150825891253, -3.083233790058822, -7.0, -7.0, -3.4372747974101237, -7.0, -3.410524172586188, -2.9429995933660407, -7.0, -3.375180069808788, -3.445759836488631, -3.138776215729349, -3.0068937079479006, -7.0, -3.154017995537149, -3.3619166186686433, -7.0, -3.2990712600274095, -7.0, -3.4939457483871506, -2.826981336911994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.204638112496441, -7.0, -7.0, -7.0, -3.8942883644490323, -4.211707750406687, -7.0, -7.0, -7.0, -7.0, -7.0, -4.037406575718464, -3.186786876733249, -7.0, -7.0, -4.080463555206556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6895752157599384, -7.0, -7.0, -7.0, -7.0, -2.9976047874604546, -7.0, -3.1812717715594614, -7.0, -2.8773713458697743, -7.0, -4.840297468206219, -2.7831886910752575, -7.0, -7.0, -3.104487111312395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6777840263288324, -7.0, -3.301301344927356, -3.4917117901707675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0884904701823963, -7.0, -7.0, -7.0, -3.0982975364946976, -7.0, -7.0, -3.153611638097534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5744364202024044, -7.0, -7.0, -7.0, -3.1398790864012365, -7.0, -2.7912694809102687, -7.0, -7.0, -7.0, -4.026175631261122, -3.53668467262093, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3794868137172736, -7.0, -7.0, -4.149373090491385, -7.0, -7.0, -7.0, -2.9305322640259663, -7.0, -7.0, -7.0, -3.1513698502474603, -3.4745804523423796, -7.0, -7.0, -7.0, -7.0, -3.3429069541501595, -7.0, -7.0, -7.0, -3.54282542695918, -7.0, -7.0, -3.473691295865516, -7.0, -2.9561684304753633, -7.0, -7.0, -4.391803709584173, -7.0, -3.443106456737266, -7.0, -7.0, -7.0, -3.521007252408604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.551246628977399, -3.426755178518925, -7.0, -7.0, -7.0, -3.8783494222177755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.842571798817237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6942541120252788, -1.9160777731414746, -7.0, -2.595670229633673, -2.622214022966295, -7.0, -3.9751253198007745, -2.4076741092293186, -7.0, -2.5550944485783194, -1.971444539546947, -2.2546688990549204, -7.0, -7.0, -3.922154325231059, -7.0, -7.0, -7.0, -7.0, -3.547026271580958, -7.0, -7.0, -7.0, -7.0, -3.068000226145172, -7.0, -2.9621324692982354, -7.0, -7.0, -3.327665387050042, -7.0, -7.0, -7.0, -7.0, -3.291812687467119, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2079035303860515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.90687353472207, -7.0, -7.0, -2.8303212953577908, -3.1022049490355927, -7.0, -7.0, -7.0, -2.8796692056320534, -2.944975908412048, -7.0, -7.0, -7.0, -3.3251049829714074, -7.0, -2.915135906622012, -7.0, -7.0, -2.1351326513767748, -2.8208579894397, -2.1072099696478683, -2.244689360492884, -1.998720781160827, -4.641454279253067, -7.0, -7.0, -7.0, -7.0, -3.0056094453602804, -2.975891136401793, -7.0, -7.0, -7.0, -7.0, -7.0, -3.513217600067939, -7.0, -7.0, -7.0, -3.837609479125121, -7.0, -7.0, -2.2346859743215286, -7.0, -7.0, -7.0, -2.8488047010518036, -3.6898414091375047, -3.7385427409287852, -7.0, -3.1113465408397287, -7.0, -7.0, -7.0, -2.1271047983648077, -1.883976712468301, -2.147212416970458, -1.896292339623125, -7.0, -7.0, -2.000929635350122, -2.3404441148401185, -7.0, -7.0, -3.3344537511509307, -3.023458237643675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8081434257614912, -7.0, -7.0, -3.584331224367531, -7.0, -7.0, -7.0, -2.782759192623997, -2.4994579639204475, -2.5185139398778875, -7.0, -5.828393696836685, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6143698395482886, -7.0, -2.673020907128896, -7.0, -7.0, -7.0, -7.0, -3.696618459232225, -7.0, -3.0941215958405612, -7.0, -7.0, -7.0, -3.687635961046466, -4.972194157032664, -7.0, -3.312811826212088, -4.5414086541853065, -2.9943904822573, -7.0, -7.0, -7.0, -7.0, -3.4807253789884878, -3.718750734739665, -7.0, -7.0, -7.0, -7.0, -7.0, -2.499687082618404, -1.5981336458132378, -2.2570783059665684, -2.088726563953855, -3.5025227088782835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.773976498617766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7558748556724915, -7.0, -3.704046016852243, -3.406199423663313, -7.0, -7.0, -7.0, -7.0, -1.9237347161072647, -2.405260961594782, -7.0, -4.360437198486716, -3.638598157276648, -7.0, -4.135498386458118, -7.0, -2.4345689040341987, -7.0, -7.0, -3.6625689669332604, -7.0, -3.2055770499167062, -5.1868645535267195, -7.0, -2.525692524505011, -2.641293793091543, -7.0, -4.177122689053482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.213012778808009, -7.0, -4.5969817431335205, -7.0, -2.3070679506612985, -4.466249583417726, -4.654734699236146, -7.0, -3.9856568286495526, -7.0, -7.0, -4.6075622431835885, -7.0, -7.0, -2.3443922736851106, -7.0, -7.0, -7.0, -4.468376873249617, -2.442675706122545, -4.18261434773635, -7.0, -7.0, -3.864372622679366, -7.0, -2.335792101923193, -7.0, -3.442244527847952, -7.0, -4.796941871056464, -3.6094876898532853, -7.0, -3.3218054838575393, -7.0, -7.0, -2.960565902818198, -7.0, -7.0, -3.774224904868919, -7.0, -7.0, -7.0, -2.562689299428688, -7.0, -7.0, -7.0, -7.0, -7.0, -4.793353776147056, -7.0, -7.0, -7.0, -2.552110290277687, -7.0, -3.4572761860613257, -7.0, -2.8962505624616384, -3.647480773173676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.535547279176668, -2.3294656796081408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5209252186589897, -3.4531653925258574, -7.0, -7.0, -7.0, -7.0, -2.6304278750250236, -7.0, -7.0, -7.0, -3.196728722623287, -7.0, -7.0, -3.312670913011013, -4.3290315750108395, -2.8334658601706924, -3.354108439147401, -3.304188829614843, -7.0, -7.0, -7.0, -4.030518764843543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.068717577790595, -7.0, -3.4379090355394983, -7.0, -3.2392994791268923, -7.0, -2.460095636143043, -3.1838390370564214, -7.0, -7.0, -2.3934498476670707, -2.788168371141168, -3.917137752756444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1265642948950374, -7.0, -7.0, -7.0, -2.531478917042255, -7.0, -7.0, -7.0, -3.80539889912943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.020596047624484, -3.0056094453602804, -2.989894563718773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2005769267548483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.059165668942177, -7.0, -7.0, -7.0, -7.0, -3.9177155165594932, -7.0, -7.0, -7.0, -7.0, -7.0, -4.042713299346113, -3.2016701796465816, -7.0, -3.689486448364248, -3.720785680270854, -2.6748611407378116, -7.0, -7.0, -2.890607291367314, -3.2137832993353044, -3.0330214446829107, -2.952644807190157, -7.0, -7.0, -7.0, -2.5599066250361124, -2.6534054906645013, -7.0, -7.0, -7.0, -2.800717078282385, -7.0, -3.451676806726055, -7.0, -3.0569048513364727, -3.38147609027503, -3.187520720836463, -7.0, -2.7041505168397992, -7.0, -7.0, -3.1992064791616577, -7.0, -3.733598460961339, -3.4823017672234426, -3.3156030329994124, -3.333850145102545, -7.0, -7.0, -2.699693225955115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.957798774929998, -7.0, -7.0, -4.524172100813481, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.09968064110925, -7.0, -7.0, -3.016824493667488, -7.0, -4.000525944129182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.683947130751512, -2.8698182079793284, -2.9443181355003873, -7.0, -7.0, -3.604442066260723, -7.0, -7.0, -2.2864003267074238, -7.0, -2.5948735262859217, -7.0, -7.0, -3.382917135087531, -7.0, -7.0, -7.0, -3.1386758157429933, -7.0, -7.0, -7.0, -7.0, -3.5034436006863636, -2.8937617620579434, -3.4831592097169795, -7.0, -7.0, -7.0, -4.004106323279658, -3.207365037469072, -7.0, -7.0, -4.37267270704506, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7381857702399692, -7.0, -4.161936705245781, -3.7062055418819706, -7.0, -7.0, -7.0, -7.0, -2.1665108452278266, -7.0, -3.5412046906832586, -7.0, -7.0, -2.806179973983887, -3.590532239192633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7389390312034796, -2.5728716022004803, -2.4746324543159677, -2.9365695895157997, -7.0, -7.0, -3.5660225067536415, -7.0, -2.234264124378789, -2.7972675408307164, -1.8291344242299696, -2.518075036877517, -7.0, -7.0, -3.236486876375591, -7.0, -7.0, -7.0, -7.0, -3.467181278616061, -7.0, -3.699924402742477, -3.1351326513767748, -7.0, -3.1151110355043476, -7.0, -7.0, -3.2052043639481447, -7.0, -3.354204511370313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.156851901070011, -3.7825801094983293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4606723718774317, -3.3944516808262164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.426917713880816, -7.0, -7.0, -3.6236110517531817, -3.6093809442507068, -4.139658736208178, -7.0, -7.0, -2.709269960975831, -7.0, -7.0, -7.0, -7.0, -2.5969634343085812, -2.986995539724382, -1.7488924788750166, -7.0, -7.0, -2.9138138523837167, -2.489489731962272, -7.0, -7.0, -3.299942900022767, -4.642780974929156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1095785469043866, -7.0, -7.0, -7.0, -3.530711837981657, -7.0, -7.0, -7.0, -4.3204163374561695, -7.0, -7.0, -2.3351234420807065, -4.713112365881025, -7.0, -7.0, -7.0, -2.745941820182873, -7.0, -7.0, -3.4346487302419235, -7.0, -7.0, -7.0, -7.0, -2.9237619608287004, -2.890281261927012, -2.687380306589906, -7.0, -7.0, -2.32299412898388, -2.968015713993642, -7.0, -7.0, -7.0, -2.8256757266498616, -7.0, -3.4727564493172123, -3.2659963704950794, -5.132698246374209, -7.0, -7.0, -3.990272240095868, -7.0, -7.0, -2.611723308007342, -7.0, -3.9672202597829673, -3.5364321758220134, -2.105961796878401, -2.2534591643398376, -2.951823035315912, -7.0, -5.050408759822028, -2.803798407989674, -7.0, -7.0, -7.0, -7.0, -3.6417714706539592, -7.0, -2.47928731647617, -7.0, -7.0, -3.3688445068258215, -7.0, -7.0, -3.1024337056813365, -2.7007037171450192, -3.6432552250247716, -7.0, -4.159476956474234, -4.090434416175122, -4.921195558053335, -7.0, -3.3312922966807057, -3.604479442251883, -3.792461731346951, -7.0, -7.0, -7.0, -3.5657297878311267, -3.800717078282385, -3.263004482246068, -7.0, -7.0, -7.0, -7.0, -2.499687082618404, -7.0, -3.1162755875805446, -1.6137635424090397, -2.401400540781544, -3.0907598218150745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.720754499225801, -4.998747427320433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.388367667157301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1492191126553797, -7.0, -4.2887483847147845, -7.0, -7.0, -7.0, -7.0, -5.236055844842364, -3.7013952690139202, -7.0, -4.444871979160645, -3.8845074375460937, -4.205438956780589, -7.0, -7.0, -7.0, -7.0, -7.0, -4.377160490206987, -7.0, -7.0, -4.515485276497102, -5.0111487717367345, -5.706624770219138, -7.0, -2.0991624929285946, -7.0, -4.6555705925491955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.784381896864668, -7.0, -7.0, -3.5189743111443366, -4.598451252655753, -7.0, -3.110589710299249, -4.4675735776765055, -4.656021498642462, -7.0, -4.502871722256952, -7.0, -3.616265405281708, -4.3093746249166704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.472317546316842, -3.0963885466873666, -7.0, -7.0, -7.0, -7.0, -7.0, -3.34908316877959, -7.0, -7.0, -7.0, -4.798795616224465, -7.0, -7.0, -3.3740147402919116, -7.0, -7.0, -3.0824263008607717, -7.0, -7.0, -3.7933712489189557, -7.0, -7.0, -3.307923703611882, -3.075303590984423, -7.0, -7.0, -7.0, -7.0, -7.0, -4.794289327161528, -7.0, -7.0, -7.0, -3.470655453745076, -7.0, -7.0, -7.0, -7.0, -4.256188382589775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5439439424829065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9163154981639994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8173008783933216, -7.0, -7.0, -7.0, -4.331751125024444, -3.64018319192134, -7.0, -4.0092383709684665, -7.0, -3.753046561626529, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7039420250692117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6860102913152857, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1192558892779365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8095597146352675, -7.0, -3.426185825244511, -7.0, -4.115510662384999, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.656194062179186, -7.0, -3.095169351431755, -3.5536403362313544, -7.0, -7.0, -7.0, -7.0, -3.393399695293102, -2.8651039746411278, -7.0, -2.9668454236549167, -7.0, -7.0, -7.0, -2.895422546039408, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.001398346081105, -7.0, -7.0, -7.0, -4.2050960475784835, -3.6188583722285905, -7.0, -7.0, -7.0, -7.0, -7.0, -3.646364510503877, -2.228706076874652, -7.0, -7.0, -3.808747483129663, -7.0, -7.0, -7.0, -2.781216659079688, -3.2362852774480286, -7.0, -3.5059399585908717, -7.0, -7.0, -7.0, -7.0, -3.3703280077795106, -3.0107238653917734, -7.0, -7.0, -3.117105502761251, -7.0, -4.4434507498835405, -7.0, -7.0, -7.0, -7.0, -2.827830650428466, -7.0, -7.0, -7.0, -7.0, -7.0, -3.631358311617795, -3.4945719842301988, -2.665476756172402, -3.214578953570499, -7.0, -3.1420764610732848, -3.4916417934775863, -7.0, -7.0, -7.0, -7.0, -2.823148059810694, -3.6060587494103142, -4.455925441183637, -7.0, -7.0, -3.457124626303409, -7.0, -7.0, -3.063145637106638, -7.0, -7.0, -4.825497520557007, -7.0, -7.0, -7.0, -7.0, -3.895643504824079, -7.0, -7.0, -7.0, -3.49373680227684, -7.0, -7.0, -7.0, -3.0346284566253203, -7.0, -4.085084062103758, -7.0, -4.033664963203177, -7.0, -7.0, -7.0, -7.0, -3.4394905903896835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6878409704006643, -7.0, -3.13481437032046, -3.2615007731982804, -2.7592900330243038, -3.153312603105892, -7.0, -3.0191162904470725, -7.0, -7.0, -3.9137785424538705, -7.0, -7.0, -7.0, -3.5848963441374497, -7.0, -7.0, -3.2284288772361536, -4.757061827559215, -7.0, -7.0, -7.0, -4.995450909360139, -7.0, -7.0, -3.6415732531781755, -7.0, -7.0, -3.4036566210857684, -3.52022143588196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2784487259091373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.757649040441254, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0688782010805165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5474670224263853, -2.5870692294283315, -2.4923612212763993, -2.5517825783198775, -1.2228834478542963, -7.0, -3.626602326942856, -2.447158031342219, -7.0, -2.8536982117761744, -1.8817649496862066, -1.6343092970463176, -7.0, -7.0, -3.036429265626675, -7.0, -7.0, -7.0, -3.747644819328248, -3.508768202830024, -7.0, -7.0, -3.144262773761991, -3.2650537885040145, -3.4307198878632823, -7.0, -3.3404441148401185, -3.2281436075977417, -7.0, -3.663700925389648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.376576957056512, -3.308279770272725, -2.8842287696326037, -3.7825442840100103, -3.0972573096934197, -2.6908603082720437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8730879855902858, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7634279935629373, -7.0, -7.0, -3.2298353665572654, -3.61857102812013, -4.1423894661188365, -7.0, -7.0, -7.0, -3.092018470752797, -7.0, -7.0, -7.0, -3.3925210899319325, -7.0, -3.0, -2.552668216112193, -7.0, -1.353484751416607, -7.0, -1.8177456121363058, -7.0, -0.9725720697647939, -4.2452411489044595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.137986732723532, -7.0, -7.0, -7.0, -3.3600250891893975, -7.0, -7.0, -7.0, -3.8450153093764405, -7.0, -4.538297185167974, -2.443106456737266, -4.412796428716543, -7.0, -7.0, -7.0, -4.006423252507643, -3.464638559095033, -3.675044735955893, -3.0431263979672254, -2.8587777373054495, -7.0, -7.0, -2.952792443044092, -2.4666205111116515, -2.5487305496263066, -2.111613128168343, -7.0, -2.4162243170985684, -2.949877704036875, -1.849507158919312, -3.3068537486930083, -7.0, -7.0, -3.1664794514726347, -3.2317243833285163, -7.0, -7.0, -7.0, -3.60959440922522, -7.0, -4.293274139710753, -7.0, -7.0, -3.622731965164719, -3.3461573022320086, -7.0, -7.0, -3.0298570495267563, -2.876217840591642, -1.5055268065274119, -2.8167382992623913, -4.6824777317622015, -2.544349962232232, -7.0, -7.0, -7.0, -3.779380011491656, -3.34908316877959, -7.0, -2.5095385335524316, -7.0, -7.0, -3.3847117429382823, -7.0, -3.7265642161622448, -7.0, -2.725094521081469, -3.3505387432018106, -7.0, -7.0, -3.7908654778443176, -4.761540418793504, -7.0, -3.8145139523682383, -4.718983048773428, -7.0, -7.0, -3.179838928023187, -7.0, -3.274619619091238, -3.3292622471045052, -7.0, -7.0, -7.0, -7.0, -3.1484484035233837, -1.5981336458132378, -3.1162755875805446, -7.0, -2.5595383447665103, -1.8852804285733862, -3.303060994604316, -7.0, -7.0, -4.598757687300256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.404998967853327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.535989952876927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067193646893265, -7.0, -3.6848453616444123, -7.0, -7.0, -4.537285025199807, -1.9594790127550423, -2.327103391877102, -7.0, -4.18600462715385, -3.604000925049828, -7.0, -7.0, -7.0, -2.4756711883244296, -7.0, -7.0, -7.0, -7.0, -3.8167934863114397, -4.78941711590118, -7.0, -2.3096301674258988, -3.0156112045035126, -3.0461047872460387, -3.877740780594422, -7.0, -7.0, -4.088029717842714, -4.22577434814393, -7.0, -7.0, -7.0, -4.1828994675482605, -7.0, -7.0, -7.0, -4.054804500220955, -7.0, -7.0, -3.9450547742554396, -4.656438409876108, -7.0, -3.8295240324621713, -7.0, -7.0, -4.13418773628865, -7.0, -7.0, -2.9025467793139916, -7.0, -7.0, -7.0, -7.0, -2.565510502554111, -2.9612814719845826, -7.0, -7.0, -3.570192561095726, -7.0, -1.9586594270529332, -7.0, -3.7704101315139065, -7.0, -3.6852868861271264, -3.043165720207454, -7.0, -7.0, -7.0, -7.0, -3.090169844444793, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3261309567107946, -2.8634418286137087, -7.0, -4.024813932629311, -7.0, -7.0, -7.0, -4.396631682159426, -7.0, -7.0, -7.0, -2.22286364804204, -7.0, -2.9051209859322786, -7.0, -3.2860071220794747, -3.303651959291475, -7.0, -7.0, -7.0, -2.799570274125377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.999652425366079, -7.0, -7.0, -2.878406887580996, -2.437750562820388, -7.0, -7.0, -7.0, -7.0, -7.0, -2.607097432019576, -3.261118502596643, -3.5043349118024643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7876375568784235, -3.8230175234460493, -7.0, -7.0, -3.035563141497501, -3.2352556647225166, -2.6929447884566646, -7.0, -3.0810294460597936, -7.0, -7.0, -7.0, -3.442362164383881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.533365272749635, -7.0, -7.0, -3.6469915374771227, -7.0, -2.711244671343486, -7.0, -2.8421930493708496, -7.0, -2.3267081665511262, -2.847572659142112, -7.0, -7.0, -3.020568434801363, -3.2000292665537704, -3.7013952690139202, -3.1470576710283598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2178597940702534, -7.0, -7.0, -7.0, -2.8379039445929424, -7.0, -3.4401216031878037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.571242850560224, -7.0, -7.0, -3.599364446251949, -7.0, -7.0, -7.0, -7.0, -3.4560622244549513, -7.0, -7.0, -7.0, -7.0, -3.682686478249768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.63558426631123, -3.6630409748939745, -3.305645895440672, -7.0, -7.0, -7.0, -3.588226874130211, -3.0446268544430195, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9584785584644475, -2.5773768919170146, -7.0, -3.1416587697865523, -3.084105580501069, -3.3849802956513044, -7.0, -7.0, -2.718124074303963, -3.102262149494273, -3.3530502396425894, -1.8912002859464372, -2.781845095648946, -3.6270584640009895, -7.0, -2.809367293505889, -2.497313673637103, -2.735997884091794, -3.8285310066451013, -7.0, -2.4718781993072905, -7.0, -3.0216333238569884, -2.8550141033002596, -2.960375631410158, -3.4651596976461785, -3.696531119969607, -2.9515533709285435, -3.647969458362972, -7.0, -7.0, -3.7001843296221977, -7.0, -2.80588684968878, -3.208306962353663, -2.7052313618495294, -3.0409976924234905, -7.0, -2.7193312869837265, -2.7666156147521748, -7.0, -3.686099771995916, -7.0, -7.0, -3.1925674533365456, -3.868174040859638, -3.9018668128655483, -3.6317480743965693, -7.0, -3.491921712586151, -7.0, -3.9586594270529334, -2.132160282103326, -3.3271545124094315, -7.0, -3.73916396315401, -3.625621081424908, -2.928834607453388, -7.0, -7.0, -3.2710279942623233, -7.0, -7.0, -7.0, -2.8091555317471806, -2.8920946026904804, -2.507727401207717, -3.3790636720075073, -2.8371937326899355, -7.0, -3.2392293856005003, -3.853759033074769, -7.0, -7.0, -7.0, -7.0, -3.0384611961785635, -3.4838724542226736, -3.3989232955264326, -7.0, -4.250541978010273, -7.0, -3.1388287969367386, -7.0, -2.365220479811975, -7.0, -2.6678838006255914, -3.41237653650371, -3.121942651159755, -2.7858990283843834, -3.186485453404858, -7.0, -2.794052139283516, -3.710371264260763, -2.1457341891998967, -7.0, -7.0, -3.289514631590605, -2.3212449937489508, -7.0, -2.6414741105040997, -2.1700723565596474, -4.179659489735338, -3.3619166186686433, -3.0249779720956247, -3.366142676814887, -2.8325302011296567, -7.0, -2.9071425310031405, -3.042181594515766, -7.0, -7.0, -3.0716242985397515, -2.4222614508136027, -7.0, -7.0, -3.954483717155552, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3792752943968063, -2.9140545254194707, -3.3506598211478686, -3.6291036501771363, -7.0, -7.0, -7.0, -7.0, -2.7490488686793366, -7.0, -3.31722734917642, -7.0, -7.0, -3.673389578188305, -2.9032143764500575, -3.617629297757842, -7.0, -7.0, -3.714245911017894, -7.0, -7.0, -3.2522055549271984, -2.1316186643491255, -1.890920833105978, -2.3239656832326614, -1.9543611529264453, -2.7754081588965955, -7.0, -2.8460762290468815, -3.349180358996378, -3.3140779917792127, -3.6084190513172856, -1.4693830636877623, -2.644143050509919, -7.0, -7.0, -2.6168918081997035, -7.0, -4.056065929431752, -3.6184664921990803, -3.9512403503243405, -2.642538710000905, -7.0, -2.925569909543376, -2.57362573693412, -3.7148325124333326, -2.738275942048923, -3.7245216271185626, -3.7431176252147416, -3.099507993727965, -3.2474003723989, -3.298252505655764, -3.354876422516234, -3.618414214801256, -7.0, -7.0, -7.0, -7.0, -1.8586823667982821, -3.5896983300424856, -7.0, -7.0, -7.0, -3.42422807069598, -3.6449307079135873, -7.0, -2.6838524719712984, -2.8676147812238355, -7.0, -3.3078524552347384, -7.0, -3.73275552117825, -7.0, -7.0, -7.0, -3.622214022966295, -7.0, -2.954145988829548, -7.0, -3.184975190698261, -2.656577291396114, -2.874017703862186, -3.536987475130602, -4.674649075135416, -7.0, -3.171628957978357, -3.3597406478637164, -7.0, -7.0, -7.0, -2.3994479771381387, -3.730378468587643, -1.8290948267207143, -7.0, -3.6094876898532853, -2.8494194137968996, -3.6396856612426816, -7.0, -3.325207689482919, -2.5863461416029554, -3.6815363811196473, -7.0, -7.0, -7.0, -3.638089721984506, -3.6732974397596356, -3.189583881400236, -7.0, -3.1963604423536847, -3.9290611240847655, -3.4429498695778618, -3.9880682033926353, -2.0427788247172347, -7.0, -7.0, -7.0, -3.6872970377689955, -7.0, -3.9763155826188763, -2.0556020599702647, -3.661694397512043, -7.0, -7.0, -7.0, -2.5366231805133514, -3.360356702117789, -2.9024448521908397, -2.6912288854662814, -7.0, -3.720242018287057, -3.671358003443492, -3.1500396976551133, -2.475414790905645, -2.5583751902435905, -1.8321578541777817, -3.6074550232146683, -3.3416323357780544, -2.172929010344586, -7.0, -3.0305187648435425, -7.0, -3.767897616018091, -2.526051950563682, -2.9242792860618816, -7.0, -3.4211924683057493, -3.9393288950774887, -3.759101003867064, -7.0, -3.4582033372516316, -7.0, -2.9005491846146607, -2.494502447046173, -3.7453871213200087, -3.50170953186571, -3.359645792674543, -1.388158829606327, -1.8926510338773004, -2.3957007311030742, -7.0, -4.024511963680228, -2.439885080817301, -7.0, -3.6074550232146683, -3.6082050077043264, -3.3690302218091532, -2.8504234343666353, -3.6504046698680317, -2.5506986232492888, -2.8913283438821975, -2.8616339626031766, -3.4599952560473914, -7.0, -7.0, -3.1944218305429115, -2.4606325707446945, -2.687974620034556, -7.0, -3.5774171131475145, -2.7839967388630753, -3.9742473742929625, -7.0, -2.514592020993427, -3.0984948177211837, -2.5665281401774287, -7.0, -3.38524868240322, -3.1573560154410694, -3.1524718103360363, -3.034138055782684, -2.9086312213651015, -3.2841298195890003, -7.0, -7.0, -3.4885507165004443, -2.2570783059665684, -1.6137635424090397, -2.5595383447665103, -7.0, -2.2453152163527337, -2.461205674017861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.74245017435857, -4.435732912484542, -7.0, -7.0, -4.201779353725061, -7.0, -7.0, -7.0, -7.0, -4.536305872351034, -7.0, -7.0, -4.405030301512223, -7.0, -7.0, -7.0, -7.0, -4.792349658966237, -7.0, -4.576341350205793, -7.0, -7.0, -4.691788524402698, -4.278662160909981, -7.0, -4.198106998873402, -7.0, -4.709405656800057, -4.392943042340061, -7.0, -7.0, -7.0, -7.0, -4.204309944940537, -7.0, -4.350005598857088, -3.0824263008607717, -4.7029558528042, -3.499477262788162, -3.2763852022713076, -3.611882555512116, -4.397418542351348, -7.0, -4.098433572355451, -2.636714318834443, -3.353403259377596, -3.893192868743221, -3.5023132962432744, -3.456939314742928, -3.4205333226934997, -4.190653797183291, -7.0, -3.326745379565322, -3.9947129854315704, -4.435589573086606, -7.0, -7.0, -3.427426313039922, -3.9132043533616425, -4.630343957562579, -3.163260789989906, -1.6474042335228791, -7.0, -3.4283939969501827, -7.0, -4.712597515821648, -7.0, -4.003482073960254, -7.0, -7.0, -7.0, -7.0, -7.0, -4.301702630953145, -4.00177696707744, -4.3157919753496214, -7.0, -2.6724673130680823, -3.4295290448490627, -4.0188945843702, -7.0, -3.7862908765224415, -7.0, -7.0, -3.946471915902509, -7.0, -7.0, -3.6174197467371765, -7.0, -7.0, -7.0, -3.8207792582284554, -2.491730208478279, -2.8609596278508898, -7.0, -7.0, -3.80704430934858, -7.0, -2.449324093098727, -7.0, -3.3632828442326597, -7.0, -3.4993793811041045, -3.2879695948354546, -7.0, -3.0637085593914173, -7.0, -3.759516759462188, -2.9167696842831363, -7.0, -7.0, -3.3820170425748683, -7.0, -7.0, -3.4363217001397333, -2.249543271982791, -7.0, -4.144044637110949, -7.0, -7.0, -3.4041190272580537, -3.5048071575589814, -7.0, -7.0, -3.506369717095504, -2.1245687128412167, -7.0, -2.7366620446156418, -7.0, -3.0227581942367694, -2.883580326836657, -7.0, -7.0, -3.7829024059746446, -3.241878383159056, -7.0, -7.0, -3.731346975545955, -3.0938592615034377, -7.0, -3.1401150518957146, -4.125058151172073, -7.0, -7.0, -2.705497167475071, -2.318253107516318, -7.0, -4.246720103107109, -7.0, -7.0, -7.0, -2.8067074419715725, -2.815279300524557, -3.3381243371969007, -7.0, -3.2441946258862364, -7.0, -7.0, -3.05595140532915, -3.9814561665221264, -7.0, -3.4625477288026643, -3.154293521704834, -7.0, -7.0, -2.879184132798873, -3.2678097897218614, -3.414694864805198, -3.1727488389827436, -3.2311417797607684, -3.8171024042569233, -3.1801736812604093, -7.0, -3.858115932190066, -3.916137983107175, -7.0, -7.0, -3.620656479819621, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096782601272063, -7.0, -7.0, -2.7955997369329895, -7.0, -3.109443547064349, -7.0, -2.889141564421198, -7.0, -2.358315640082196, -3.218902950862829, -7.0, -3.3140779917792127, -3.036309443724438, -3.69284691927723, -3.30821366567681, -3.1990234256365437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9735126958773432, -2.954724790979063, -7.0, -7.0, -7.0, -3.071697945221614, -7.0, -7.0, -7.0, -3.5177499628542592, -7.0, -3.4345689040341987, -7.0, -7.0, -7.0, -7.0, -7.0, -2.745186363703905, -3.070684206978637, -3.3687516195445553, -3.8457180179666586, -7.0, -3.4914317356829696, -7.0, -7.0, -3.470116353151004, -7.0, -3.610606937465461, -3.4220149959794637, -7.0, -7.0, -7.0, -2.6928469192772297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5058144831135785, -7.0, -7.0, -7.0, -4.197087495449889, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.038640028580474, -2.5068994614132776, -7.0, -3.670802284260944, -4.140542958380234, -3.085290578230065, -7.0, -7.0, -7.0, -3.155336037465062, -7.0, -3.450929751236355, -3.085290578230065, -7.0, -7.0, -2.6459132750338443, -7.0, -2.5622928644564746, -7.0, -7.0, -3.366982975977851, -7.0, -3.995318602010679, -1.9131513129998394, -7.0, -7.0, -7.0, -3.6462076122066853, -2.907411360774586, -7.0, -7.0, -2.8369567370595505, -3.255754786643044, -3.8294377936566226, -7.0, -7.0, -3.797198269838959, -7.0, -2.560305243220961, -3.448551739201578, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4102709642521845, -7.0, -7.0, -2.858236335429513, -7.0, -7.0, -4.824545600914718, -7.0, -3.3647385550553985, -7.0, -7.0, -3.879153246184246, -7.0, -7.0, -7.0, -3.450864692379766, -7.0, -2.1722136039924793, -7.0, -3.2730012720637376, -7.0, -4.276247284790318, -7.0, -4.0217266644137775, -7.0, -7.0, -7.0, -7.0, -3.089198366805149, -7.0, -7.0, -4.151277893904123, -7.0, -7.0, -7.0, -3.1970966908570375, -7.0, -3.386855529184724, -7.0, -3.6351820486562674, -3.4757074990540944, -2.989004615698537, -7.0, -2.527951958343942, -7.0, -3.9085743706908986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4754968545499993, -4.754829768633988, -7.0, -7.0, -7.0, -4.693124321053439, -7.0, -7.0, -7.0, -7.0, -7.0, -3.823517699915736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2555137128195333, -4.155730671278588, -7.0, -7.0, -7.0, -7.0, -2.8549130223078554, -2.676388734581175, -7.0, -7.0, -7.0, -7.0, -7.0, -3.542190320433657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2872848151912764, -2.781396305196791, -2.673941998634088, -2.5158162716983514, -2.3349561161368517, -7.0, -3.7040738770877333, -7.0, -2.6866362692622934, -7.0, -2.1375123531221294, -2.1122697684172707, -7.0, -7.0, -3.624230513855454, -7.0, -4.281487887940081, -7.0, -3.423081958297231, -3.1976853060411248, -7.0, -7.0, -3.590284403718162, -3.189770956346874, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6351820486562674, -7.0, -7.0, -7.0, -3.953373050726696, -7.0, -7.0, -2.520483532740792, -3.5989727919628125, -7.0, -3.7610252517113727, -7.0, -2.620656479819621, -7.0, -7.0, -7.0, -7.0, -7.0, -3.391111613702803, -4.357210419006122, -3.855700830835437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9139727115509713, -3.586812269443376, -7.0, -5.713009781068882, -7.0, -2.9138138523837167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3260797155471575, -2.145092768246633, -7.0, -2.1818435879447726, -2.2540644529143377, -2.1722136039924793, -1.4671015942208998, -1.8084360542881113, -3.9427122796492005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0338256939533106, -7.0, -7.0, -7.0, -3.039678449361962, -7.0, -7.0, -7.0, -4.015045239174416, -7.0, -7.0, -2.192328457926367, -4.109266296065941, -7.0, -7.0, -7.0, -3.99370069482035, -3.7434313651466837, -3.66138669778177, -3.4178866903508798, -3.540767303210374, -3.2076343673889616, -3.022840610876528, -2.3010299956639813, -2.690196080028514, -3.4634450317704277, -2.4324882557705063, -7.0, -2.576341350205793, -2.266290508320006, -2.5569052690554477, -3.239049093140191, -7.0, -7.0, -2.3354836176091194, -2.848189116991399, -7.0, -7.0, -4.831002238235833, -3.894814329083301, -7.0, -7.0, -7.0, -7.0, -3.591287265058499, -7.0, -3.957463615729931, -3.509605704611556, -2.530768705139248, -2.2479732663618064, -2.0021005820003483, -7.0, -4.787028090288343, -3.571242850560224, -7.0, -7.0, -7.0, -3.4565178578052627, -7.0, -7.0, -2.7007037171450192, -7.0, -7.0, -7.0, -7.0, -3.7019994748896368, -7.0, -3.1152775913959014, -3.321184027302314, -7.0, -4.8572540750698945, -7.0, -4.972230038807431, -7.0, -2.7517688440873256, -5.018804483937159, -3.7777891874348675, -7.0, -7.0, -7.0, -3.5407047833107623, -7.0, -7.0, -3.0283678836970616, -7.0, -7.0, -7.0, -2.088726563953855, -2.401400540781544, -1.8852804285733862, -2.2453152163527337, -7.0, -2.7166463680139135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.880470592803778, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.986906031380721, -3.40970774995732, -7.0, -7.0, -7.0, -4.934500976204146, -2.1486384153958378, -2.2362292611340204, -3.8394937596254946, -4.263811171112919, -3.6391603743363103, -7.0, -7.0, -7.0, -2.783903579272735, -7.0, -7.0, -7.0, -7.0, -4.088561311791215, -5.010858016949204, -7.0, -7.0, -2.385606273598312, -2.9132839017604186, -4.052463077483329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.481865250764642, -7.0, -3.9135754546260832, -7.0, -4.421219911007847, -4.487633217456876, -7.0, -4.341607614304764, -4.478931861027784, -7.0, -3.9857778134583097, -7.0, -3.594060901270418, -4.307175012040345, -7.0, -7.0, -2.7041505168397992, -7.0, -7.0, -7.0, -4.469291705846857, -2.8825245379548803, -3.5821486217835403, -7.0, -7.0, -3.7406192422595144, -7.0, -1.9761970853273751, -7.0, -3.4470804718310024, -7.0, -3.7972467606932976, -3.0133639615579817, -7.0, -7.0, -7.0, -7.0, -2.819919785398216, -7.0, -7.0, -3.778729923996112, -7.0, -7.0, -7.0, -2.827110687466011, -7.0, -7.0, -7.0, -7.0, -7.0, -4.39560942237794, -4.788026884095804, -7.0, -7.0, -2.5738298090754212, -7.0, -2.9888561135661607, -7.0, -3.214578953570499, -3.3477689676073514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.27669152884504, -3.9867269593312185, -7.0, -7.0, -3.0657041722395175, -3.517591730711908, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0299921753778474, -3.502011356235333, -3.1612182196910164, -7.0, -3.2121876044039577, -7.0, -7.0, -7.0, -7.0, -7.0, -2.732393759822968, -3.3260626338156793, -7.0, -7.0, -3.794418330874141, -3.6763073984105277, -3.1416587697865523, -7.0, -3.4025193025742495, -7.0, -7.0, -7.0, -3.3337293231565988, -7.0, -7.0, -7.0, -2.427323786357247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.768379075007812, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4380476517490206, -3.0645515770910676, -7.0, -7.0, -7.0, -7.0, -4.094348824158173, -3.0453229787866576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3047058982127653, -2.031913164461711, -7.0, -7.0, -7.0, -2.18590624134928, -7.0, -7.0, -7.0, -4.1085988459735665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7995473071256147, -7.0, -7.0, -7.0, -7.0, -3.409087369447835, -7.0, -7.0, -7.0, -7.0, -3.6554265877459184, -7.0, -7.0, -7.0, -3.1223524273957572, -4.1982445862282365, -4.499150755234518, -4.499508380406101, -3.4223298856764006, -3.6713447802948647, -2.9318056808578947, -3.7236198355154633, -3.073677626966478, -2.0227185065721027, -3.860972511322973, -3.897008193182832, -3.103201446615745, -2.5474390404359823, -2.3823865369984354, -2.4953961302668386, -4.5064238482786605, -7.0, -4.5011825459901935, -4.499879448956432, -2.241745652570644, -2.6579327842065577, -3.5950826736446, -2.407078961826646, -1.5961402421300699, -2.468807861671502, -2.820994641680185, -3.544591639398066, -2.2686546414005466, -2.5093503992977833, -2.9595047561076266, -2.2347644128428783, -2.5673103646159388, -3.4212747912103465, -4.023773574676574, -2.59402403573142, -2.770615346059276, -1.9817558986997879, -2.5676527679046632, -4.022387125686438, -2.7820685019399147, -3.6587879323179417, -2.4878451201114355, -2.3742382627571037, -3.226084115975824, -2.600959781544797, -3.254990926676981, -2.2762517344250175, -3.80453468538638, -2.674685572725944, -3.632242116329883, -1.8236010449684215, -3.6136700778166193, -1.2761911826202288, -2.0936429684529205, -1.5792468110427222, -2.100063531414098, -4.5048105531506915, -2.5606537342551157, -1.875192847844124, -3.3615794492016025, -3.3626574713677146, -3.7310109331253267, -3.6556322942792354, -2.9259766793032753, -2.6001965198996295, -2.454476626578019, -3.421905415588571, -4.500250200730158, -2.4827826631659913, -3.8003045775561985, -2.668756154146636, -2.412361709359006, -2.9815440587012345, -3.166816084791104, -2.2535578812749155, -3.655303117041215, -2.1876920011804275, -4.021203085977509, -3.07083112373925, -1.924716630482366, -2.589344990545666, -2.1736418872775687, -3.3522790172744976, -2.1294117956804723, -2.508631725896454, -1.527240429179981, -3.020084925984292, -2.152021152002349, -4.51615180913224, -1.9959062547102917, -3.307999130331943, -2.2861801654275338, -3.7219754015859534, -7.0, -3.1300892079409475, -2.775564113729958, -3.0333848384671733, -2.5282175541775285, -4.501989874055827, -2.9221677949187748, -3.9055260484350485, -2.5625003464965244, -3.6538600257721283, -1.4926406772196101, -3.220631019448092, -2.3849927064819196, -3.234144155367817, -1.7324701058690302, -0.9641357943202269, -3.4642184860833276, -2.9968535663367337, -2.761337071087618, -3.558415209393273, -2.052759379088285, -3.66343167895703, -4.021781741232203, -3.1793167197213412, -2.759831461061373, -2.8853243388390224, -3.1103337714833192, -2.445119865230657, -2.4358841638751363, -4.028584807240124, -3.4039551204923084, -3.5061260432424652, -2.84941605707404, -1.9475459819506464, -2.6039816229298722, -2.240162204345499, -3.8017329080485833, -4.029613716996135, -1.7812460927511966, -2.355768977002329, -7.0, -2.9186923711842754, -3.2442372058639073, -7.0, -7.0, -7.0, -3.546474114116154, -3.800070653111199, -2.6064231101466255, -2.6970859639264892, -2.5865680715067687, -3.1237911669042013, -4.5070053327802775, -3.6844413876256064, -2.9546697001875133, -3.5990775713183476, -2.6973500751374315, -4.151277893904123, -2.113325985068863, -4.499233310262374, -3.1222158782728267, -3.0915993262816954, -1.5324560835286616, -3.596225862608387, -4.197556213153536, -3.404741639586191, -3.151169920303053, -3.459337649135267, -2.506719307031022, -3.2144331927092873, -2.7469454096151047, -2.2700504293449453, -2.629661083959758, -2.2281367891278965, -2.7015679850559273, -2.9020709146074903, -1.785426825092026, -2.849542252005017, -3.7209169341271506, -4.498310553789601, -3.276853614306531, -3.247591421035026, -3.1401253083573186, -3.721357130022457, -1.5315953405161056, -4.02611088519185, -3.3993361902558252, -3.353132789439816, -2.788611718331111, -0.7893355732020385, -2.976201582968563, -2.3810662726088885, -2.1360407426264034, -2.330588455929623, -2.350719366024341, -2.5489232446175647, -2.5426135630696667, -2.652340368851867, -2.362236424639688, -2.197143907448683, -2.9475017963235906, -3.033983931269618, -7.0, -2.5962268159414412, -3.478159686911935, -3.683595498456455, -3.899519564476793, -2.372118250386322, -4.197969367916172, -2.5184783696676294, -3.249918186415877, -2.7734805897368733, -3.071117980626713, -3.124300397693026, -2.784545974054523, -3.0309912369409937, -7.0, -1.2666411303139182, -2.5614340302696146, -2.5007623243323183, -7.0, -3.5957717020009405, -3.388988785124714, -3.654850090561394, -4.024376190894477, -3.462779029617742, -4.023348501505407, -3.3913965882976815, -2.0129950311058975, -2.3968764042806954, -3.1178559416698866, -3.319674125495312, -4.498420836797279, -3.2245330626060857, -3.425968732272281, -3.5567446126282376, -3.8971870765801535, -3.898793720133296, -3.0297109791486663, -2.971116737367246, -2.372191314994798, -3.5438749816745454, -3.799368122831065, -3.3244882333076564, -2.08893477545536, -4.021533840525457, -2.2167074772748543, -3.0689011424160633, -2.154746751421589, -7.0, -4.499384620400921, -7.0, -3.900107566982329, -2.7498447604118503, -2.7339042088550625, -3.8964573201336714, -2.636108220873542, -3.2125749782567365, -2.2463255418458528, -2.9357415383958827, -1.8966704821219622, -3.4755523319785775, -4.023005397249935, -7.0, -1.9860191759019852, -2.355603430234352, -2.0016984553595427, -2.9384250560792444, -2.5620548296563785, -3.6056686020868565, -3.7241939195143297, -3.0874127989033524, -2.02071386904202, -3.0314322280053934, -2.2121220818387344, -1.7526431342571807, -2.916316600515288, -3.008467095467969, -3.5067079263501197, -3.5463644126266622, -2.943427667431837, -2.0691355946764824, -2.5092800864596443, -3.5437232293405754, -2.9579081586744045, -2.2108668629911357, -3.2467173689525204, -2.5843977472261894, -3.8968154670877886, -1.8084853593283476, -1.4433070787167055, -2.55030900697669, -2.9722671392456044, -2.8322959710584774, -2.391471506923992, -2.0524544489011003, -3.8023220978574237, -2.671492930691694, -7.0, -2.963180469568511, -2.1292139171150253, -2.4664306710374504, -1.6412637671866943, -1.005398821029378, -2.2272614893778035, -2.6538994379074516, -2.5759867517113815, -2.4917935477231654, -2.7382119030151055, -1.7858189578834474, -7.0, -4.498186451922232, -4.197225406118192, -2.824244202541404, -1.6711869701015334, -3.7256666603141784, -2.6719755425169955, -2.6446717677187572, -3.1798525964727418, -2.089413700330822, -3.327563260187278, -2.1961798384775983, -3.205488565953269, -2.885966677374664, -1.9074138842093709, -3.5067890573949856, -2.929317571471571, -2.506119430030942, -3.1126862649444966, -4.206096944706567, -1.529020268707673, -2.692448070813735, -1.9531422419472886, -4.020996236394208, -2.7151538610111667, -3.5015658718510116, -1.7533189919593353, -2.3013485188018796, -1.8997005684246981, -1.234437876924377, -3.323403371980216, -3.5948895496460347, -2.0735278371719144, -3.5025227088782835, -3.0907598218150745, -3.303060994604316, -2.461205674017861, -2.7166463680139135, -7.0, -3.006300381107872, -2.562403533879741, -2.3658050448996435, -3.109679769252334, -4.696784355456685, -3.5935075893317654, -3.235801898991499, -2.3432564443899238, -3.1716589589787767, -2.449712564810516, -1.9632118646144128, -2.9739758441821524, -4.24384384757082, -3.595496221825574, -2.7676418031828867, -2.871696335031655, -2.3742678477862706, -3.6403157705629567, -2.7849514424392368, -2.4493164716242184, -3.667297263882406, -3.049361302724119, -4.542240166289717, -3.2965499816921042, -3.153414127210913, -2.4724947715607035, -3.3861619419931306, -4.021007270859423, -3.2210795564374317, -3.4624635115214004, -3.920553753485052, -2.5361583110918096, -3.2958633803612676, -3.068933142369716, -3.225434348532171, -3.4647968279841517, -4.518921721978057, -3.4048136006153067, -3.7417254746093196, -3.0833051284625346, -3.5870558498481797, -2.4594530444588427, -3.663714383330552, -2.841091194229767, -2.089274358160125, -2.247384898685672, -2.7509122702070736, -3.2418203185180303, -3.3466528340631028, -2.161216268492156, -2.3653060993655983, -2.9534799201619046, -2.818136892763469, -1.8912109478360524, -2.244485605507447, -7.0, -2.1040376731383583, -2.903517141108291, -3.8987388901635986, -3.8728785244068824, -3.2461887364633246, -7.0, -7.0, -2.0795744506755742, -2.2477567527751328, -3.3758142265027953, -3.3561351686666177, -2.162728409930911, -3.549303048006186, -2.50158891826153, -4.569444140240524, -3.130559357019549, -2.713065260517642, -3.245805023585475, -7.0, -3.269087447472221, -3.5602579264510434, -2.4626554649657124, -3.398981066658131, -2.5246492705057113, -3.3974069470962536, -2.290401000434648, -2.441617301918038, -3.9052155343138026, -1.5622755306190403, -2.7116852039479586, -3.498874206668076, -2.8209730377477755, -7.0, -3.128548382704474, -2.0939454921482628, -3.8030215785684427, -3.899218417851373, -4.499480881230387, -7.0, -7.0, -4.258409781163722, -2.2121149993345925, -2.561992029499823, -1.8841903296890576, -7.0, -3.0125999845343534, -2.1484235191525474, -3.294569956855799, -2.4677798235250936, -3.8999982314291435, -2.5204478015727347, -4.500236474825639, -2.1002388609194944, -2.457310962806848, -3.660770643527697, -4.521647949497911, -2.361088118235532, -3.088949423617117, -2.422499190079314, -4.509404160258692, -4.204255678480151, -2.5020619934068473, -7.0, -3.5528979407839887, -2.472982377874486, -2.473544089440609, -7.0, -2.7518904746809025, -7.0, -3.8992594955985687, -3.5932122011334005, -1.7869661639365204, -2.7495713646784057, -7.0, -4.228644131738731, -1.8237737061247918, -4.509148736402258, -2.3401220669202907, -7.0, -2.9575540809979275, -2.104002177228143, -7.0, -3.387307669549021, -3.7468546628685075, -2.7345731588380384, -2.7902608916016636, -3.3005547261139583, -2.9590148778070953, -2.76889361210532, -7.0, -2.485933600889173, -1.917010589497117, -7.0, -7.0, -2.105491048217859, -2.5797073979181495, -7.0, -2.7129011581876155, -7.0, -7.0, -3.4443013689598114, -3.015490736645513, -1.5521877772198334, -2.5073674815312446, -3.7660284553347037, -2.7277411992455693, -7.0, -4.280407623567409, -3.3286377925655763, -3.312800085191476, -4.2026789942277265, -3.0023755306572752, -2.2024436883925915, -4.035803164245306, -4.021699123385047, -2.1102942919612793, -1.215738424976611, -2.352891753316144, -3.201019765456387, -2.238320187023523, -3.025587450804147, -2.871382288272447, -3.2327286876731725, -2.375229755914513, -3.2509929904658788, -3.9109310770872527, -4.0338658673479, -3.5966245817491806, -7.0, -2.9679754116075565, -4.230027195569308, -3.206906792930864, -3.4889351046198613, -2.139716276846601, -3.0153073518517566, -2.812454957991551, -2.4821356148977904, -3.3759195437046494, -2.350041162182644, -7.0, -2.4345422920373827, -7.0, -2.3646250417549757, -2.315835362781999, -3.5553967768062633, -3.897063242076261, -3.101363672652795, -3.2086160065968223, -2.1426920071504876, -3.361228515053669, -7.0, -7.0, -4.198065714165741, -7.0, -7.0, -7.0, -2.77942191922357, -4.515714926414582, -2.8195176138665428, -3.7262380468026377, -4.028774526500088, -3.656454147451837, -3.2991121572555873, -3.205840177622518, -4.505109261303588, -2.717761491475825, -3.172085226479833, -2.4694836796325514, -3.362293937964231, -4.551510990105817, -3.3019789772725154, -7.0, -2.993045536208752, -3.3005954838899636, -7.0, -2.4551104023475094, -3.2279948928142463, -3.163757523981956, -3.2144779988742656, -4.227668217528221, -2.8180446732975755, -3.8014860329219524, -3.899191030527895, -3.267341239709708, -4.022593314021462, -2.8259280154703044, -2.713930335011934, -4.508839337975575, -4.498351913199365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0409976924234905, -7.0, -7.0, -4.601715133199268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.726419799951237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.553883026643874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.906728207422946, -3.3902283624691303, -3.5852914908954987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.432969290874406, -7.0, -7.0, -7.0, -7.0, -3.598243191653623, -7.0, -7.0, -5.124364002028919, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3394514413064407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9581814975649476, -7.0, -7.0, -7.0, -3.294576439201622, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.862608363964942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292521884574141, -3.422589839851482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2062320243262996, -7.0, -7.0, -7.0, -7.0, -3.8613705825140756, -7.0, -7.0, -2.047588868180089, -7.0, -3.307282047033346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062393937253195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.250420002308894, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5425764762605296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.708208375304485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6869042695681773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.048053173115609, -7.0, -7.0, -7.0, -7.0, -3.3085644135612386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.547528576459782, -7.0, -3.9391696796251776, -2.853241780329114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.875111638629893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.768144584737799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.006300381107872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.577250458079471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.064772364522698, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.953817658206996, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464703114940226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7508168426497543, -7.0, -7.0, -3.161966616364075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.491218072720135, -7.0, -7.0, -7.0, -3.4412760841240377, -7.0, -7.0, -7.0, -7.0, -4.241994489156781, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6685256885568625, -7.0, -7.0, -3.494154594018443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1424696373647745, -7.0, -7.0, -3.0989896394011773, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7675268994083817, -3.5127049161671735, -3.578295305120826, -7.0, -4.297804266525286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6307328928171967, -7.0, -7.0, -7.0, -7.0, -3.9116369331294423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.902905372603798, -7.0, -7.0, -7.0, -7.0, -4.204798038190855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8714561740229536, -7.0, -7.0, -4.066373685809159, -7.0, -2.380211241711606, -7.0, -2.9564085711958326, -7.0, -7.0, -4.563267445405564, -7.0, -7.0, -7.0, -2.754348335711019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.140526897671522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.41954272470028, -7.0, -4.003858883484917, -7.0, -3.287129620719111, -7.0, -7.0, -7.0, -3.0948203803548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.60422605308447, -7.0, -7.0, -4.823506832637296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.693726948923647, -7.0, -3.3988077302032647, -2.5628873812938795, -3.453776859690442, -7.0, -3.1920095926536702, -7.0, -5.229715110508744, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9608036249117697, -7.0, -2.847983728251745, -7.0, -3.6018427897820984, -3.469877219395211, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.576226137449605, -7.0, -7.0, -4.293738117783524, -3.431524584187451, -7.0, -2.2741578492636796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.303196057420489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.237367773021761, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0930713063760633, -7.0, -3.0457140589408676, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752959126424497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.209193195719529, -7.0, -7.0, -7.0, -7.0, -3.4181277855872354, -7.0, -7.0, -7.0, -1.0903975088639173, -7.0, -7.0, -7.0, -3.0330214446829107, -7.0, -7.0, -2.75815462196739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.187520720836463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8967466156074058, -3.549371152333177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6074550232146687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530532657749054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2143138974243994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.150756439860309, -7.0, -7.0, -3.214472950523377, -7.0, -7.0, -7.0, -5.131015236742566, -7.0, -7.0, -7.0, -7.0, -7.0, -3.076640443670342, -7.0, -7.0, -2.9867717342662448, -7.0, -7.0, -7.0, -7.0, -7.0, -3.853393977450666, -7.0, -7.0, -7.0, -7.0, -3.285107029566812, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.85532528501812, -7.0, -5.875143482030488, -7.0, -3.7717344253867693, -7.0, -3.054459837239404, -7.0, -7.0, -7.0, -7.0, -7.0, -3.09429639740537, -1.8156269350825625, -7.0, -7.0, -3.3434085938038574, -7.0, -7.0, -7.0, -7.0, -7.0, -2.562403533879741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.610873000380051, -7.0, -7.0, -5.064978082276334, -3.5675556708947846, -7.0, -7.0, -7.0, -5.234729823201154, -7.0, -7.0, -7.0, -4.359218687757081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.186501471782027, -7.0, -7.0, -3.660770643527697, -7.0, -7.0, -7.0, -5.404867911689591, -4.065766387622749, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464976129693729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.175221800343052, -7.0, -7.0, -4.035389709198677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1165745397769165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4838724542226736, -7.0, -3.998956440470486, -7.0, -7.0, -7.0, -5.093491727010932, -7.0, -7.0, -7.0, -3.92147838037569, -7.0, -3.4164740791002206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.200440076436431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024458301085093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7811088357294667, -7.0, -7.0, -7.0, -3.6272736616580863, -7.0, -7.0, -7.0, -3.415974411376566, -3.7107940999303275, -7.0, -7.0, -3.6321534835106326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542700969448111, -7.0, -3.09377178149873, -7.0, -2.8680563618230415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.097673699449098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.494210269229327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5920545601729215, -7.0, -7.0, -7.0, -7.0, -3.4264136561316882, -7.0, -7.0, -2.419594993091023, -4.641751652976988, -7.0, -7.0, -4.434065661248002, -3.3971338420470936, -3.6982637017765465, -4.296763882338289, -7.0, -7.0, -4.115355295624343, -2.3494732486769028, -4.365029112607194, -7.0, -2.835720761230848, -2.5573110687395006, -4.298973090963759, -4.595463152458813, -3.989727837317633, -3.831613855309099, -3.8240824240027838, -4.5962561231022905, -3.0710793127277585, -3.754795943844005, -3.894172012566013, -4.593385766043638, -3.897352134344313, -4.609049866047581, -4.59470186120636, -4.620094394032491, -7.0, -3.435589573086606, -3.896834743546406, -3.6046064588259554, -4.594005601788341, -4.596926814342971, -4.008504360940798, -7.0, -3.5921161680291207, -7.0, -3.997779430865604, -4.6215293920698475, -3.9996306927125405, -3.3272190771136168, -2.0772479764810248, -3.470872305442661, -3.270641576038564, -3.806693456192453, -7.0, -4.297629218364148, -4.316001814931364, -4.298088569391382, -7.0, -7.0, -7.0, -7.0, -3.9276987831185015, -2.9855240968680246, -3.9916136656172863, -7.0, -4.137396314809074, -7.0, -7.0, -3.933760534062559, -7.0, -7.0, -3.42935099788424, -7.0, -3.3562171342197353, -7.0, -7.0, -3.5849434042753194, -3.7063977028613415, -3.6923511178233523, -4.290568798984483, -3.7719862146383307, -4.297169380969235, -4.018617292519441, -4.323674841477321, -4.005019553400609, -4.128550039238989, -3.03301518820464, -4.624271779929733, -3.8459569159936344, -7.0, -7.0, -7.0, -3.527275361588527, -7.0, -4.327123840812123, -7.0, -4.421283022642609, -4.598823323746008, -7.0, -4.591910100931143, -2.8053105152712585, -4.592520946518943, -4.312082105977306, -4.603458337409067, -3.456214155357989, -2.7571730707020574, -7.0, -7.0, -4.124362914853566, -7.0, -2.528965315202079, -3.4232567994467242, -7.0, -4.610713382191951, -7.0, -4.1556194006082015, -7.0, -3.524379892559869, -2.7133307257547616, -4.2962262872611605, -4.357610910158445, -7.0, -3.535240304710175, -7.0, -3.772112054543177, -3.785044958331544, -7.0, -4.598111733328968, -3.1990283740437233, -3.8410047143535224, -7.0, -7.0, -2.8224563318171123, -7.0, -4.2901793520677085, -4.592043449629362, -3.8151126581898125, -7.0, -2.865934433442102, -4.342432551039179, -4.723529553280573, -3.596637074866284, -4.598287002254073, -3.710390065701603, -7.0, -7.0, -4.301268791966063, -4.097048965011131, -3.4257834789437602, -7.0, -4.294036127859679, -4.297432204810169, -3.6105951086630115, -7.0, -7.0, -4.608033696827137, -7.0, -4.292377922610312, -7.0, -7.0, -4.614253730728656, -4.612995656032347, -7.0, -7.0, -7.0, -7.0, -2.2621076446317563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7311439906672614, -7.0, -3.7197530198840827, -7.0, -4.165264115808024, -1.9842665938798643, -3.218841731507062, -2.706396447183231, -3.025418521390219, -3.5620115365813385, -3.408335380863189, -4.127720152892319, -4.607379953483188, -7.0, -7.0, -7.0, -7.0, -4.636156783606082, -7.0, -4.6774061819799435, -7.0, -4.481600264553629, -7.0, -2.869757870745095, -7.0, -3.1993437186893927, -4.120025233114033, -4.605003198204288, -7.0, -7.0, -3.8668679796590735, -4.009280884255359, -7.0, -3.768162219987711, -2.646048382078891, -2.94359913882309, -7.0, -4.591854526887034, -3.8961954104542107, -3.747478395341935, -4.593872854295451, -7.0, -7.0, -4.597201388849116, -2.34831422597073, -3.5137706197390237, -3.1148194089047454, -2.744492493710069, -7.0, -7.0, -7.0, -3.4252950535893714, -7.0, -7.0, -3.463956945172151, -4.605660526371362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.593164181568868, -7.0, -2.119276841852149, -7.0, -7.0, -7.0, -7.0, -3.644055444774348, -3.752509400788843, -7.0, -7.0, -3.9389498039219983, -4.130355214606559, -3.951133439889513, -2.680026750383986, -3.460167322009192, -7.0, -7.0, -2.9147030098471265, -2.985340919887817, -2.1556565611703453, -7.0, -2.543752872635506, -7.0, -7.0, -4.117933835039642, -3.253481597485425, -4.343733454537848, -3.147066775257319, -3.279637191397853, -4.181281308004646, -4.604323272310015, -7.0, -7.0, -7.0, -4.14091637693907, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605628222007619, -7.0, -3.0538037967190252, -2.796740803977907, -4.1249821638851625, -4.139417271934507, -3.759376418957984, -2.4737871205362993, -3.712546820378931, -7.0, -3.420308385109363, -7.0, -7.0, -3.5489623660813248, -3.493490223737186, -2.3605621658536116, -2.8644382137298496, -4.34964656951508, -7.0, -7.0, -3.532648233450749, -2.3993947761729593, -3.516856325339205, -7.0, -7.0, -7.0, -3.8013841070255485, -2.9674971047891727, -7.0, -7.0, -3.7116701727504755, -7.0, -7.0, -7.0, -4.338745263175257, -7.0, -4.123808100490645, -3.6769170487121805, -7.0, -3.3712290462435877, -3.845139399424021, -2.879348699802187, -7.0, -3.395937645080042, -3.1377404849138455, -3.2870906259509054, -7.0, -7.0, -4.594083019091813, -3.6237763280606363, -3.6960067152185454, -4.040256111364648, -3.910891088644528, -4.291468753334798, -7.0, -3.7688283078414297, -7.0, -7.0, -4.598757687300256, -7.0, -7.0, -2.3658050448996435, -7.0, -7.0, -7.0, -1.9847812973414505, -2.783356110842911, -2.923172880290525, -3.162337921592594, -2.3787851013321077, -2.892424774997811, -3.0023904888563426, -1.635847285435352, -2.56923777141077, -2.6780577845734572, -2.2703129635463952, -2.5745451490260423, -2.58406577477417, -1.615575264152138, -2.8321095614303697, -2.801708531564807, -1.7650177661804587, -3.331330453063568, -1.840483998173458, -3.7238249526410367, -2.466469087237763, -2.65675206543432, -1.5340678634984088, -2.691735876574482, -3.5474923692614233, -3.073010596874898, -3.369941495811043, -3.5694377561074897, -1.6999933818566404, -2.4379733985675376, -2.943171365088493, -3.0590242564640455, -3.2020232907090485, -3.2457700783611916, -3.362456770008371, -3.3020296099215876, -2.5136353415760677, -2.6691227571656837, -2.019532794678204, -7.0, -2.889052006931635, -1.758803501867089, -2.3997588077471526, -3.077902620312059, -3.285833056152534, -4.611383384708976, -2.725231158078876, -4.083162074006658, -4.31940798167448, -2.9170129073424844, -2.7244530964883347, -2.8868833464580277, -4.303466057107086, -2.999031628930849, -4.655580191171864, -7.0, -3.9525890468356892, -3.514939021565843, -3.9369960240186312, -4.599981268266425, -2.215667789921735, -2.5587501988018895, -2.5471072512154564, -7.0, -7.0, -7.0, -2.5131497987623552, -4.047440374098858, -3.7342203245726457, -2.80475174035332, -4.440271334091512, -7.0, -2.834471862065311, -2.953117307835683, -2.9915637971969784, -3.0607488707845385, -3.5359188393134557, -4.35215356418076, -2.2206011546095503, -3.3220124385824006, -7.0, -2.0976120062438603, -2.519063074800671, -7.0, -2.823547604372849, -7.0, -3.0716058849177394, -3.0226757619537272, -3.724573739627489, -3.6904729652670305, -7.0, -7.0, -4.292023351257005, -3.6868744999220815, -2.4230980311936072, -4.611606489380638, -2.9451698151286747, -4.116928587217637, -2.254590341522387, -2.382812400965278, -2.97892329990125, -7.0, -4.293296245148464, -3.126249510323941, -4.115643789669941, -2.401257981304848, -3.727470088712329, -3.898439945099348, -3.147196411326264, -2.450451035316793, -3.6552451804139605, -2.459635313866705, -2.986575127017741, -4.596915827751136, -2.693394702830789, -3.5178444351168308, -3.4521589665758357, -4.129453564839296, -3.923803369532193, -7.0, -2.989387516858672, -4.592742859342505, -3.8154891981186587, -2.0441470547649265, -1.7556541929945808, -2.361666496845486, -4.290624405760645, -3.09758330530031, -3.975459381886746, -3.6456078256355733, -4.618299182370601, -7.0, -4.604604005662973, -3.0264176202165225, -7.0, -3.8948364609939157, -3.093846008089887, -7.0, -2.686485634707038, -3.751499055612203, -3.4593817164331497, -4.300236684117335, -3.643288139836406, -4.607315597669501, -2.408702390713377, -2.357878345009401, -4.59250984790068, -4.14701639612984, -4.144937265058756, -4.307848892509035, -2.0866368015294006, -3.2345062796618747, -3.8948364609939157, -2.746709209859118, -4.308980368720045, -1.9902478944627011, -3.6178282776177513, -3.083993764334864, -3.2616304843292867, -4.597442870900575, -3.278924999158791, -7.0, -2.876765648822366, -3.554026370894214, -7.0, -3.4764258270580113, -3.347492641973748, -7.0, -3.6513458672100474, -2.101315478526709, -4.329956915106239, -3.213464629039556, -2.936040396947672, -3.5388563856111075, -2.9269654172207527, -4.301257940436712, -2.598013466981827, -2.694252093463937, -3.824949798930412, -3.2030981895457566, -7.0, -4.591665521925527, -2.3892159144927385, -2.944839537394521, -4.298405457024487, -3.413058655343539, -1.8924205549625608, -3.018006626523271, -2.4502573438100157, -2.4689579482875295, -2.7889053791447824, -4.616989850789326, -3.517591730711908, -4.30525460989783, -4.290646646477703, -4.332549544296137, -3.85766412251388, -3.1751317569102886, -7.0, -4.305351369446623, -7.0, -2.2411935559760434, -7.0, -3.8965813275057326, -7.0, -7.0, -4.593208507509241, -4.29154643969221, -4.593806465329934, -2.155336037465062, -3.2069013989399444, -3.7634386903396253, -4.596278129409967, -3.898374094681203, -7.0, -4.595562353005851, -7.0, -7.0, -4.613397790379954, -4.604830619429156, -3.4099246739401154, -3.102600295396306, -3.5205137645101057, -4.597881585468683, -7.0, -3.2613663215042505, -4.295710008808256, -7.0, -2.481261868548562, -7.0, -7.0, -4.020796188104522, -3.0711874222402025, -4.614485917334474, -7.0, -7.0, -7.0, -7.0, -3.0899151994635075, -4.60471193172762, -7.0, -7.0, -7.0, -7.0, -7.0, -4.769894035812169, -7.0, -7.0, -7.0, -7.0, -7.0, -2.528231814320313, -7.0, -7.0, -7.0, -3.91551122358829, -3.572104523139882, -4.776083436639779, -7.0, -7.0, -7.0, -7.0, -2.7443962190392654, -4.343178747552447, -7.0, -3.653364145691976, -2.765523178137077, -7.0, -4.77205018781323, -7.0, -7.0, -7.0, -7.0, -3.2274680884279663, -4.775093209551623, -7.0, -7.0, -7.0, -4.4801004068772015, -7.0, -7.0, -7.0, -3.3513811045321633, -4.471291711058939, -3.5086224292083905, -4.77108014034136, -7.0, -4.481163042077974, -7.0, -3.3503587936139123, -7.0, -7.0, -7.0, -7.0, -4.177233398034179, -2.8376853012019145, -4.087667861923968, -4.8223969393404404, -4.810440875574879, -7.0, -7.0, -4.786545580235125, -7.0, -4.775085920101874, -7.0, -7.0, -7.0, -4.793133558969125, -3.4059085667542925, -4.469858819035844, -7.0, -4.483815437748665, -7.0, -7.0, -7.0, -7.0, -7.0, -3.278284880374089, -7.0, -4.783031257624278, -7.0, -7.0, -4.518059667235619, -7.0, -4.4710935923795985, -7.0, -7.0, -4.773888791889383, -4.4880004497062025, -7.0, -7.0, -3.8245452395328265, -3.394550649707553, -4.490400981300528, -7.0, -7.0, -7.0, -7.0, -4.77956041878952, -7.0, -7.0, -7.0, -4.383366482755039, -7.0, -7.0, -7.0, -3.789824197473217, -7.0, -4.306746608077712, -7.0, -4.098096620171149, -3.873891041234412, -7.0, -7.0, -7.0, -7.0, -2.8191384047482697, -4.297694869693073, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3880419647864235, -3.0695888195712855, -7.0, -4.33799140347015, -7.0, -3.276442424245893, -7.0, -4.184634656586273, -4.318383369999072, -7.0, -7.0, -3.7177814197394, -7.0, -7.0, -7.0, -2.865957174295529, -7.0, -7.0, -4.769775984917649, -4.469615861200391, -7.0, -3.7601773696361365, -4.503565989865016, -4.384239881687907, -4.4999481305756515, -7.0, -3.078344753114982, -4.769982552929515, -7.0, -7.0, -3.4632831558237545, -4.211561022536963, -7.0, -7.0, -7.0, -3.89026728376573, -7.0, -7.0, -7.0, -7.0, -4.770697404733859, -7.0, -7.0, -4.784652947530634, -7.0, -7.0, -4.819208214624241, -7.0, -7.0, -2.780265045023653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9912847249485184, -7.0, -3.5879577806232366, -7.0, -4.5028366386210035, -2.5037876063802758, -3.8204204130984976, -3.3529607929853014, -4.095148421072856, -3.874307833128039, -4.306503658116052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.828298908403947, -4.78090749382419, -4.905202028662319, -7.0, -3.1930812904776325, -7.0, -3.6929553268990984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3069180203772985, -2.8286921130318965, -3.1256405740546764, -7.0, -7.0, -7.0, -7.0, -7.0, -4.772549064918772, -7.0, -7.0, -3.03005754376382, -4.492913970848403, -3.3002995256899204, -2.62842688787771, -7.0, -7.0, -4.773091310242317, -4.299056717862567, -7.0, -7.0, -4.782028069027038, -4.4778227972045705, -7.0, -7.0, -7.0, -7.0, -7.0, -4.769465948560255, -7.0, -7.0, -2.3021789633202125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.800833882291923, -4.780115602859192, -4.508199664444567, -3.3350431336731856, -3.9342964068194055, -7.0, -7.0, -3.3178160068112277, -3.878234468675044, -2.7920671872686325, -7.0, -2.452137061828049, -7.0, -7.0, -7.0, -4.5328562543112625, -4.805507654575986, -3.829413136929344, -4.201349321982644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4813136109793765, -3.4270574456574274, -4.776512319240097, -4.786225977095757, -4.079130575402225, -2.484701328997382, -7.0, -7.0, -3.126439324237566, -7.0, -7.0, -7.0, -4.002007583780295, -2.952831174381129, -3.6132567330092735, -7.0, -7.0, -7.0, -3.937990472741036, -2.116939526080235, -4.040114242745428, -7.0, -7.0, -7.0, -3.602439832843189, -4.017930232863559, -7.0, -7.0, -3.939911295589801, -7.0, -4.781712301989469, -7.0, -7.0, -7.0, -7.0, -4.495211204457828, -4.7739472650096575, -3.433553165849193, -3.8038981197297295, -2.526882454647063, -7.0, -4.509142012692762, -3.292103876106375, -4.109571797908949, -7.0, -7.0, -7.0, -4.7912343651243665, -4.3322498880444344, -4.803846167521772, -7.0, -7.0, -7.0, -4.307367656038532, -7.0, -7.0, -7.0, -7.0, -7.0, -3.109679769252334, -7.0, -7.0, -1.9847812973414505, -7.0, -2.8480251906844667, -3.1427300374717926, -2.9067429323371465, -2.3748658643818557, -2.979383403046637, -2.938095122768641, -1.9287640656971603, -2.796856884709436, -2.9129767924100274, -2.083787164527067, -2.556136888509495, -2.5758631694680902, -2.1433481265648875, -2.5079819551578586, -2.630498155568272, -1.9130691095581158, -3.1488921215438626, -2.258915580298483, -4.015122141957127, -2.2118507979482045, -2.5587877893415656, -2.1103035006659145, -3.0382532300273724, -2.7541899247820285, -2.60967842177663, -2.9635635413114008, -3.3349417709129194, -2.1623104462387976, -2.819334514439521, -2.793223222015908, -2.8268651077942386, -2.76035179171932, -3.5760820785097818, -3.055002033070937, -3.0858981309770277, -2.5685340807475896, -2.5303242321888737, -2.7950488733397787, -7.0, -2.671811852902725, -2.4979057429957394, -3.372504332000748, -3.65240521701543, -3.321238576631269, -4.782716219408081, -2.897428686237337, -4.53283078772188, -4.3117044263500945, -2.892049044935811, -2.7949496312842714, -3.034538424505647, -7.0, -2.997868756155348, -7.0, -7.0, -4.2081523577244075, -3.290066426642698, -3.845139399424021, -7.0, -2.9894331308265776, -2.5593139772691327, -2.3555301048129142, -7.0, -4.801129187579704, -7.0, -2.432572144278123, -4.331663445310756, -2.8676151293759182, -2.6691184423266474, -3.670112435506491, -7.0, -2.78093812928399, -2.9529809709830217, -2.8413924052352826, -3.648826818285013, -3.572389430331052, -3.348566690474671, -2.1739519516906713, -3.4724590190584643, -7.0, -2.7161375485264965, -2.4048572591252984, -4.491333673931563, -2.5044817491532436, -7.0, -4.19230953183702, -2.7172300777638196, -3.3013083003719372, -4.293738117783524, -7.0, -4.769310847343161, -7.0, -3.1303611463227843, -2.8119620643588155, -4.782866607064193, -3.298552157043863, -7.0, -3.825865887784005, -2.5187259778241775, -3.742460890226512, -4.780965029608317, -7.0, -3.314159553257814, -7.0, -2.6008899920160955, -3.8926440828856643, -4.77340608801514, -4.179810222878796, -2.8546824696374555, -4.48050997294196, -4.021106568432121, -4.298081281898712, -4.073989470694238, -3.2767590718057047, -4.773252387838773, -4.4730780298442365, -7.0, -4.790482205963791, -7.0, -2.9436149885817446, -4.469195886353333, -7.0, -2.413263990604278, -2.048847991458375, -2.4027332051731176, -7.0, -4.309204179670408, -4.224150912195789, -4.172989479689795, -4.78738962135211, -7.0, -7.0, -3.767840603286548, -4.769960425341503, -4.7710065635306425, -4.084804981876372, -7.0, -3.092328393324933, -7.0, -4.176850610160418, -7.0, -4.773545103223439, -4.7799786753300575, -3.2091254812396053, -2.691605984637163, -7.0, -4.490337794344103, -4.789968302089217, -3.6669281777811387, -2.448265378036188, -3.9946616941251554, -7.0, -3.2644373865025944, -4.7818056206940485, -2.338376924058498, -7.0, -3.4139699717480614, -4.477048866273474, -4.472324865002763, -3.2968379697311563, -7.0, -3.3765364047914934, -4.471122948998581, -4.480911977846637, -3.8567020439662394, -3.7770423850498562, -7.0, -4.5091285649614745, -2.7041505168397992, -4.318890768083098, -4.482029890469332, -3.3898634973678488, -4.3102187625373105, -4.105925546289804, -7.0, -2.84293686639324, -3.336335493917067, -4.777223765819916, -4.1740161724638165, -7.0, -7.0, -3.131169383089324, -3.114369618804565, -7.0, -3.83248762323924, -2.071589960934999, -4.082677680648112, -2.7404284867039603, -2.805440337421175, -3.798919838387624, -4.786502980070113, -4.47203934482198, -4.779300608532864, -7.0, -4.496770562043202, -4.79940258709127, -3.2819419334408244, -7.0, -4.779365575669822, -7.0, -2.8856700339963552, -4.473267942835296, -4.295017011881458, -7.0, -4.769687425683675, -7.0, -4.770144787468645, -4.77094769310584, -3.0543711077640543, -4.301514687266299, -4.78088591593984, -7.0, -4.171258274675775, -7.0, -7.0, -7.0, -7.0, -7.0, -4.778310462506569, -3.5300349535029074, -3.0583378875755454, -4.798567783267658, -4.472617511351939, -7.0, -4.489909284707066, -7.0, -7.0, -2.8452482721624146, -7.0, -7.0, -4.489480351850566, -3.0775317725206657, -4.784809794314824, -7.0, -7.0, -7.0, -7.0, -3.081838720394356, -7.0, -4.29777509673101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8993636396151685, -4.363499161478234, -7.0, -7.0, -4.225348056287909, -3.755824058025565, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4848580937261096, -7.0, -7.0, -7.0, -3.2376616015703434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3692682018262334, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30513631894364, -7.0, -3.3876706252875857, -7.0, -7.0, -7.0, -7.0, -3.745933158459443, -7.0, -7.0, -3.8470788620657155, -7.0, -7.0, -3.6526286753910537, -7.0, -7.0, -4.382575319649486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.549908278205137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4638097498438154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276783384700269, -7.0, -7.0, -7.0, -7.0, -3.842428939473374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.337359412001355, -7.0, -4.505543379461151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.143992683660012, -7.0, -7.0, -7.0, -7.0, -4.147851449216902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8169832762228597, -3.3679554578097592, -7.0, -7.0, -7.0, -4.112124420332844, -7.0, -3.838723190031372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3597195707231196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.356790460351716, -7.0, -3.9290270323599734, -7.0, -7.0, -7.0, -4.466689715873475, -7.0, -7.0, -7.0, -7.0, -4.244895333691861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6336761746852697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6135599497377284, -7.0, -4.364776057277425, -3.8424541067345053, -7.0, -4.3553940446231705, -4.337559087628736, -3.9869507878585164, -7.0, -3.9895610468853566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.600864036309839, -7.0, -4.473939276599178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7635563374978425, -3.796383506975522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.416057729263038, -7.0, -7.0, -3.6745164870743796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.608163833374166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.294113356362043, -7.0, -7.0, -3.9841108210596157, -7.0, -3.8716980023521868, -7.0, -2.4936441152582307, -7.0, -7.0, -7.0, -7.0, -4.369234416606825, -7.0, -4.36359317885827, -4.0935792634395645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.42130771600335, -7.0, -7.0, -7.0, -2.8024273662401074, -4.4101189683595505, -7.0, -4.093550086590404, -7.0, -7.0, -7.0, -7.0, -4.430220226321072, -4.3241795297179, -7.0, -7.0, -7.0, -7.0, -2.690355650541242, -3.92620520709792, -7.0, -7.0, -7.0, -4.071587470514976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.359778584139239, -4.276967038147092, -7.0, -4.343487370238302, -7.0, -3.340342530579106, -7.0, -3.0440275882460224, -4.277173555485786, -7.0, -3.65583181270073, -7.0, -7.0, -7.0, -7.0, -4.329092647195331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.696784355456685, -7.0, -7.0, -2.783356110842911, -2.8480251906844667, -7.0, -3.645206050860345, -2.3286698819385094, -3.3623882165886987, -2.957384918427862, -1.481944569338266, -2.8776499600498724, -3.591922802571349, -3.7372721765355434, -2.215017272177907, -2.431700296126159, -2.629774074295825, -3.4469796237545136, -2.753205469435666, -1.7055071799719737, -3.5293362299185205, -3.3103594614375855, -3.54282542695918, -3.4898379926764123, -2.4442583789957952, -3.086620803576045, -2.0160115495985877, -3.0538037967190252, -2.347145941412144, -2.2034408668304377, -2.7344981587649517, -3.34865094891718, -3.074827688737842, -3.2532437471636304, -2.3435894368137173, -2.737550989984645, -3.046781218014158, -3.819763220818885, -2.8961634771431384, -2.8988965076723905, -3.363630780112138, -1.6525021007993246, -3.9926345078943504, -7.0, -3.2305228661556145, -3.696608755737047, -4.106700732362354, -3.8732236935293995, -3.145462789979763, -7.0, -3.3804608434865733, -4.44269921263019, -7.0, -4.180937863983749, -2.8598696403920845, -4.216165902285993, -7.0, -4.053491403339438, -4.3893787479525095, -7.0, -3.6829569263012085, -3.7146859363429696, -7.0, -7.0, -3.4205782962332605, -3.4049499154557576, -2.398040618620613, -7.0, -7.0, -7.0, -4.2558270827032345, -3.90100399089971, -3.8665731016850873, -4.173390251465195, -4.235339033014061, -7.0, -4.288517501797074, -3.6982359091337726, -3.940665872475829, -7.0, -4.057552001054533, -4.384980295651304, -4.141602052139997, -3.8414041670516013, -7.0, -4.0697790608815145, -3.571773065864809, -7.0, -2.675992379029217, -7.0, -7.0, -4.164561029265557, -3.6722364404445473, -7.0, -7.0, -7.0, -7.0, -3.0396218207214076, -3.294466226161593, -7.0, -4.219440435989858, -7.0, -4.296379953771385, -7.0, -7.0, -7.0, -7.0, -4.370383540607654, -7.0, -3.729968894052408, -4.342284474225749, -7.0, -7.0, -3.348499570283838, -7.0, -4.352143912441583, -4.280987889004646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.457329219483519, -3.2439287022907277, -2.394418534057963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.950462218905598, -7.0, -7.0, -7.0, -7.0, -3.401113213955382, -7.0, -4.292499739685581, -7.0, -7.0, -7.0, -4.139233459140505, -2.2127647225826825, -7.0, -7.0, -7.0, -3.344283085882674, -3.6581613625766054, -4.273626206272959, -7.0, -7.0, -7.0, -2.556340652472161, -7.0, -3.493159190231999, -7.0, -7.0, -4.396722278503773, -7.0, -3.677570455852376, -4.271353622102485, -7.0, -7.0, -4.287017501322102, -7.0, -7.0, -3.828043743777702, -7.0, -7.0, -7.0, -4.317791816053072, -7.0, -7.0, -4.457154942486584, -3.749388431581154, -7.0, -7.0, -7.0, -7.0, -3.0533345888650136, -2.838723190031372, -7.0, -3.4708932853456576, -4.41258653335607, -7.0, -7.0, -3.520491720719448, -7.0, -7.0, -7.0, -7.0, -4.262996581601494, -7.0, -7.0, -3.3561788855533754, -7.0, -7.0, -7.0, -4.028479748429411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.267476801134049, -3.6057358938767465, -4.29161301693988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.186122525982875, -2.9929767082011125, -4.350015298234692, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4628646357053148, -7.0, -7.0, -7.0, -2.932008441562367, -4.310204588898006, -7.0, -7.0, -7.0, -7.0, -2.9510848355357298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.642662331442035, -4.368865735415223, -7.0, -7.0, -7.0, -3.6804261708581456, -3.2163638637641165, -7.0, -7.0, -7.0, -7.0, -3.5979144712025284, -3.198313363563387, -7.0, -7.0, -3.4318460456987254, -3.724517013234964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.584952815690992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.373959669875467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.382305275193315, -7.0, -7.0, -3.986592606822211, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.898985570532309, -7.0, -7.0, -3.778078861937455, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659453466445408, -7.0, -3.7591388162811663, -7.0, -7.0, -7.0, -7.0, -7.0, -3.588943642740015, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7134065321676912, -3.1894226316376413, -3.238297067875394, -3.44504346145018, -7.0, -7.0, -7.0, -2.765420173578722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.808919584566607, -7.0, -7.0, -7.0, -7.0, -3.959978964701999, -7.0, -7.0, -7.0, -7.0, -3.4013378675031465, -7.0, -7.0, -7.0, -7.0, -3.8900295861634167, -7.0, -4.264321877763006, -2.966408908682189, -7.0, -4.016991578206205, -7.0, -4.7079532081514905, -7.0, -3.796782411701308, -7.0, -7.0, -7.0, -4.36945706512637, -7.0, -7.0, -7.0, -3.029546100423748, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4520932490177314, -7.0, -3.646746712800757, -2.6386993909768344, -7.0, -3.264660441423504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3964608915070755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5597869682005565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.471365065418019, -7.0, -4.353088764833949, -7.0, -3.9408649759667216, -3.160859669406353, -3.3616334139100563, -2.835161911071816, -3.1650661783897562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.07137210569682, -7.0, -3.6624272644527265, -7.0, -7.0, -3.6236627073562047, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9858919737062264, -3.4229999772716164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0234395345803486, -7.0, -3.9297253783780044, -3.030229102479042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.937274240502207, -7.0, -7.0, -7.0, -7.0, -7.0, -3.646893624167745, -7.0, -7.0, -7.0, -7.0, -3.978545700462739, -2.9996958874108395, -2.873984533887229, -7.0, -7.0, -3.9054360671891235, -3.7418603940652635, -2.591551523290097, -7.0, -3.7850132938291856, -7.0, -7.0, -7.0, -7.0, -3.952598734529773, -3.498103697638082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.712733859069952, -7.0, -7.0, -3.1736596536320567, -7.0, -7.0, -7.0, -3.212939250049553, -7.0, -7.0, -3.880356199419236, -7.0, -7.0, -7.0, -7.0, -3.0546130545568877, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3516858977234523, -4.036668810300097, -7.0, -7.0, -7.0, -3.9614685553507862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.952211058108669, -4.877451976617107, -3.9676883504533125, -3.8437597778937755, -7.0, -3.9848872010643275, -4.333825983402247, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9795938958489305, -7.0, -7.0, -7.0, -7.0, -3.7745899502647946, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5935075893317654, -7.0, -7.0, -2.923172880290525, -3.1427300374717926, -3.645206050860345, -7.0, -4.2636360685881085, -3.1530281714762953, -3.040760524228699, -3.348325362657893, -2.6724991858354983, -0.45695157034049433, -3.091373812473584, -3.5944293846472695, -3.424048946464159, -3.5209397111548792, -2.591379655630742, -3.352533321427612, -3.2413918876652534, -2.795730019248443, -3.110252917353403, -3.2653802984464786, -7.0, -3.554962935849245, -3.870033055380932, -2.9394612034997856, -3.208441356438567, -7.0, -3.2580960504481724, -3.231955883590876, -7.0, -2.8017639306855906, -3.296957546032856, -3.8624125229459523, -4.088153814644183, -3.8023403545380106, -3.4295100408131383, -3.714720839899443, -3.5633624094866074, -3.900353471382553, -3.3693550320570327, -2.7902851640332416, -7.0, -3.4455696105393483, -3.4552184030070845, -4.046768219660838, -2.9978230807457256, -2.8484706351194125, -3.4546162237926987, -2.886957591040489, -7.0, -7.0, -3.8902533051545345, -3.580578313675271, -3.3881604302759483, -7.0, -3.789665306746111, -3.5260375792311995, -7.0, -3.985336641735613, -7.0, -7.0, -7.0, -4.5294859637721405, -3.2135149609500795, -3.909919232626045, -7.0, -7.0, -7.0, -3.2389145669888704, -7.0, -4.332007318122397, -2.93075098801414, -7.0, -7.0, -3.9107488776877, -3.068685255866622, -3.0065950651517146, -3.571475903681944, -3.451742587325767, -3.3902283624691303, -3.282864400052556, -3.0556840649194132, -7.0, -3.0787905863221194, -3.281594492277713, -7.0, -3.8627486669658766, -7.0, -3.3891660843645326, -3.412677912040056, -4.365319475896217, -7.0, -7.0, -7.0, -7.0, -3.1563976972825034, -2.5232818316095447, -7.0, -3.670013796172048, -7.0, -3.7285161047597666, -2.9733673510945082, -2.767897616018091, -7.0, -7.0, -3.654465333520146, -7.0, -2.938677698315028, -7.0, -7.0, -7.0, -2.969804056523086, -3.4420876295507603, -3.60535892548885, -3.066046246604769, -3.338257230246256, -3.4974364901339174, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9604390644756187, -7.0, -7.0, -2.786264544872704, -2.6780919194391033, -2.5945879160333667, -7.0, -3.793021659845983, -4.0824981385057795, -7.0, -7.0, -7.0, -7.0, -3.3729733396670385, -7.0, -7.0, -3.7675268994083817, -7.0, -3.0705128226472103, -7.0, -3.236537261488694, -7.0, -7.0, -7.0, -2.8158432906632664, -2.802636918082811, -7.0, -7.0, -7.0, -3.737669627356642, -2.3399669095088056, -7.0, -7.0, -3.3544541997333255, -7.0, -3.014724717747699, -7.0, -2.0605779357471343, -7.0, -3.6442415858437287, -7.0, -7.0, -3.4944792655103964, -3.6277753752293034, -7.0, -3.9906495883188544, -3.3916407034923877, -7.0, -3.984797257089293, -2.713169514894598, -7.0, -7.0, -4.373886231789153, -3.8029104894190398, -7.0, -7.0, -2.809100386742738, -3.2054750367408906, -7.0, -7.0, -7.0, -7.0, -3.943412067973837, -2.9545870508948435, -7.0, -3.1953460583484197, -2.6401188376970386, -7.0, -3.022549658778618, -3.507563546199266, -3.4269447971948406, -3.7944880466591697, -7.0, -3.7180031682670176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2205695307771833, -7.0, -7.0, -7.0, -7.0, -3.604657972047871, -7.0, -7.0, -2.7099391015969876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.21133416373255, -3.06126394230025, -7.0, -3.648164778574001, -7.0, -7.0, -7.0, -7.0, -3.64018319192134, -7.0, -7.0, -7.0, -2.883590466204705, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9965116721541785, -7.0, -7.0, -7.0, -4.712616034083344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.169999038533825, -4.2714311165678955, -7.0, -7.0, -3.3314730127606, -3.4118333045591585, -4.717437485607079, -7.0, -7.0, -7.0, -4.710574276760383, -2.723077980324159, -4.290568798984483, -7.0, -4.443286462201648, -2.7399055130335364, -7.0, -7.0, -7.0, -7.0, -7.0, -4.713423335653093, -3.7933223233860316, -7.0, -7.0, -7.0, -7.0, -4.723225738862373, -4.712237094261041, -7.0, -7.0, -7.0, -7.0, -2.9953457062877002, -7.0, -7.0, -4.724439723397075, -7.0, -4.742308700116073, -7.0, -7.0, -4.255698548052355, -7.0, -4.721159097082167, -2.7136294231554277, -4.252407994907512, -3.991831302545872, -3.978317496746751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7368982408204765, -4.052996078945087, -7.0, -7.0, -4.250314262316336, -7.0, -4.273147942319154, -7.0, -4.711224968619355, -7.0, -2.889781425369628, -7.0, -7.0, -7.0, -7.0, -4.16423385469261, -4.723677278076476, -7.0, -7.0, -4.127404487771786, -4.714924620661709, -3.732096085685356, -4.434281408136301, -4.721761167105553, -7.0, -2.9949205202944613, -4.73497575120201, -4.0094650604236, -4.710811004797183, -7.0, -7.0, -4.244260623072277, -4.425493462722258, -4.26085019218336, -4.711874687022362, -3.6665179805548807, -7.0, -7.0, -7.0, -3.934952707817858, -7.0, -7.0, -7.0, -4.741435255767935, -3.426168384282751, -7.0, -7.0, -7.0, -4.417571328690727, -3.834293512442696, -7.0, -7.0, -4.724505247609918, -4.735367320687716, -7.0, -7.0, -3.738707905824672, -3.2187132100622513, -4.714203980582727, -7.0, -7.0, -3.7272797651098264, -4.416465756013914, -4.428564014832206, -4.739627715444244, -7.0, -7.0, -3.849953507030731, -4.731096984750186, -7.0, -7.0, -3.694148730583769, -7.0, -7.0, -7.0, -7.0, -7.0, -4.312149136258353, -3.272367705306956, -3.772268350314977, -4.046799415055245, -7.0, -4.465650484743692, -7.0, -7.0, -7.0, -3.060970500071584, -4.061158325937399, -7.0, -7.0, -7.0, -3.251191937135463, -7.0, -7.0, -7.0, -4.11688987733376, -7.0, -4.719140619695215, -7.0, -4.727232098507561, -7.0, -7.0, -4.766457464116555, -7.0, -7.0, -3.148695049166025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.869422415299701, -7.0, -3.6404131072346617, -7.0, -4.749109923611645, -2.920889075099427, -4.113834765112396, -4.44421660506962, -4.260929583529925, -7.0, -4.726091190633324, -7.0, -7.0, -4.7178119168765855, -3.3579679726998637, -7.0, -7.0, -4.7442147248141655, -7.0, -4.475663925814176, -7.0, -4.084200799448233, -7.0, -3.952349553703281, -7.0, -4.752716670115188, -7.0, -7.0, -7.0, -7.0, -4.751217497559819, -7.0, -7.0, -4.425517917846864, -2.979376888593836, -3.5078408854303, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6246945312720813, -7.0, -3.553424497508192, -2.886359484642336, -7.0, -7.0, -7.0, -4.717578975363936, -7.0, -7.0, -4.724234896490527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5963702096135868, -7.0, -7.0, -7.0, -7.0, -7.0, -4.714556070480403, -7.0, -7.0, -7.0, -4.421003066384153, -4.454143327174591, -3.7173905643876477, -7.0, -7.0, -7.0, -3.951288937277672, -4.422499557616591, -3.2302751688326863, -7.0, -3.040474730298592, -7.0, -7.0, -7.0, -4.783009785003973, -3.905765050916453, -3.999869692108268, -4.447576613522922, -4.761687331986636, -4.719596424038301, -4.714941365513727, -7.0, -7.0, -4.429138344767089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.423565331599704, -3.995115777910966, -7.0, -4.72902702519179, -7.0, -2.955505606253773, -3.923214403267866, -7.0, -3.669899269076556, -7.0, -7.0, -7.0, -3.39963252293413, -3.0361786912074473, -3.7784406835712327, -7.0, -7.0, -7.0, -4.725544122486353, -2.649097674518334, -4.0664377464539925, -7.0, -7.0, -7.0, -3.9741507821112436, -4.740331103292411, -7.0, -7.0, -4.426690147338194, -7.0, -7.0, -7.0, -4.144947633670373, -4.413944857617042, -7.0, -4.041416373302113, -7.0, -3.0631704352090847, -4.0982686749242, -2.6381556106856254, -4.715066931328898, -3.3756940896973213, -3.4917705786758737, -4.055424205129799, -7.0, -7.0, -7.0, -3.693183141082376, -4.278212300455029, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.74245017435857, -7.0, -3.235801898991499, -7.0, -7.0, -3.162337921592594, -2.9067429323371465, -2.3286698819385094, -4.2636360685881085, -7.0, -3.078784128724828, -2.9458563614043456, -1.87861512959996, -2.8562653278979666, -3.382197210377454, -4.261683078359308, -3.187851649239775, -1.326839984927838, -1.1523120753493836, -2.851131100146211, -3.3809585499884216, -1.7169891311275722, -3.07112912036772, -1.720617004776128, -3.229748863541315, -3.305359332235412, -1.91761130935738, -2.682690235626249, -2.932171297266403, -2.8830522639851215, -2.933414971724668, -1.4940749908103732, -2.0852872431088505, -3.155967607405664, -2.826473816129836, -2.817572046544905, -0.7221620522667832, -2.305894630568496, -2.716890229017429, -4.120285951147618, -2.764093069469182, -2.9523452929588734, -3.1821456867523463, -2.832377208540889, -3.255546809307727, -7.0, -3.0156807285576472, -2.950627740567455, -4.068341734353948, -4.26609051627518, -2.9940518573330643, -4.122911830365234, -2.7842439615296883, -7.0, -7.0, -3.33799140347015, -2.758203517991074, -2.8503641084073252, -7.0, -3.614286511004289, -4.060403175459535, -7.0, -3.610005795612442, -4.269740538936799, -4.744128624384017, -7.0, -3.0967435623888013, -2.717038465918362, -2.589937898460937, -7.0, -4.745987724433172, -4.712969413188024, -3.1403200681151864, -4.754699910729208, -3.479918656960047, -3.253234127833428, -4.3511518573324075, -7.0, -3.165486586709725, -3.6872334601981325, -3.356626730102122, -4.73917663191073, -3.713348361235772, -7.0, -3.3425464605295607, -3.869946063866585, -7.0, -3.356245348290053, -3.1535931582676557, -4.736037762378577, -3.251708184081412, -7.0, -3.738209577416493, -3.846846012948204, -4.547657811539415, -7.0, -7.0, -4.709676921319747, -7.0, -2.8073561540351877, -2.5200021753291946, -4.725192655638864, -3.6159369069513683, -4.711773496120913, -3.8189677843395207, -3.820846061385705, -3.8232785569516707, -7.0, -4.711967424641027, -4.149326902872513, -7.0, -3.3143499273401513, -4.73996769675951, -7.0, -4.423057365614425, -3.302080530992586, -4.7236936888413625, -3.965711137426735, -4.415415768843478, -4.0148899938902884, -4.152448881329991, -4.413148824714317, -4.238037735139086, -7.0, -4.432833051680936, -7.0, -4.485096501355642, -7.0, -7.0, -3.3119271590844845, -2.700126581535961, -1.9120606918208591, -7.0, -4.729172892126178, -3.929214503737394, -7.0, -4.253200650903366, -7.0, -7.0, -3.660378441183945, -7.0, -7.0, -7.0, -4.719505301432014, -3.6660185043849287, -4.412737668240323, -4.021685352215705, -7.0, -7.0, -4.420846541601197, -3.5263679996200654, -2.958518067079998, -4.23341073559512, -4.734903791882342, -4.7332935859176475, -3.7229628089424898, -3.198455916033554, -3.935540852652919, -7.0, -3.321147007783739, -4.723980776891, -2.6938067182423064, -4.4290898392125735, -3.6243217701134927, -7.0, -3.1226274960100633, -3.683234711411427, -7.0, -4.276913480580438, -4.71295259213018, -7.0, -3.9790093452191155, -3.417338810319398, -7.0, -4.1541347529656445, -3.144341815436957, -4.74020473550745, -7.0, -4.073321134413501, -4.730329986497589, -4.449277790579156, -7.0, -3.6755315934532256, -3.6643520357957935, -4.7187424355110865, -7.0, -7.0, -7.0, -3.1188136852015997, -4.127938555955461, -7.0, -2.6826247307581395, -3.219666695309768, -4.723865964443504, -3.472410684025669, -2.5170435584633832, -3.9653898702151222, -4.252189355651495, -7.0, -7.0, -7.0, -7.0, -7.0, -3.330359131857053, -7.0, -7.0, -4.716929407273744, -3.556497774483958, -7.0, -4.71295259213018, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4781486307637985, -4.243236537941076, -7.0, -7.0, -4.237166582685473, -7.0, -7.0, -7.0, -7.0, -4.72657236725846, -4.719985550860369, -3.6575611879403125, -4.2758025858486794, -7.0, -7.0, -7.0, -4.035381702958746, -7.0, -7.0, -2.492893110691421, -4.7151171474915134, -7.0, -4.7339271652304165, -4.427510452274621, -4.250257314731827, -7.0, -7.0, -4.7249881836146805, -4.710506616470952, -4.044022061416491, -7.0, -7.0, -7.0, -3.895790748250444, -7.0, -7.0, -7.0, -7.0, -3.913796197777649, -3.9084135241905464, -7.0, -3.8992366751075775, -2.408622637362252, -7.0, -7.0, -4.371104821931509, -3.4720359647608183, -3.362160803877537, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9865770270305676, -4.008316226356639, -7.0, -2.8821290848472056, -2.7991063030442995, -7.0, -4.373426962185743, -7.0, -3.9200015118779157, -4.3848370882036845, -7.0, -2.8210117908556285, -7.0, -4.369698138949881, -7.0, -3.772834927239018, -3.918659293421823, -7.0, -7.0, -7.0, -7.0, -3.771973104217725, -3.792666404313239, -7.0, -7.0, -3.6201013378002385, -7.0, -3.6571355618564843, -7.0, -7.0, -7.0, -4.383869200802545, -3.2448600309376636, -1.948028373420702, -3.1298424755099536, -3.343464864143649, -3.0829348950147435, -7.0, -7.0, -7.0, -4.379541187752597, -4.380988656432105, -7.0, -7.0, -7.0, -3.9472212610378086, -3.5321341220629616, -3.8933548248246317, -7.0, -3.927626962444954, -7.0, -4.150434052241625, -4.4340256963562465, -4.369939079029239, -7.0, -3.570642996208087, -7.0, -3.0775063313523123, -7.0, -4.372599050995377, -3.336345355527641, -4.095744541366045, -7.0, -4.367001630838441, -3.129740759259531, -4.378016135540437, -2.9667282209873846, -7.0, -4.0916669575956846, -7.0, -2.6073260527437156, -3.818291890799996, -3.124399877288873, -7.0, -7.0, -7.0, -3.0690687538613783, -4.402862957968563, -3.9494875899465036, -7.0, -3.966000857628784, -7.0, -7.0, -4.367486376167786, -2.5427307342716947, -4.368510019595464, -3.9253120914996495, -7.0, -3.4791752673307053, -2.42112697303189, -7.0, -4.372525382451559, -3.781324455666988, -4.385999284138968, -3.039109632768245, -3.7782236267660965, -7.0, -7.0, -4.42125832787776, -3.956792520370495, -4.380699548382717, -3.73201444825009, -2.2777634421104618, -7.0, -4.474201690191393, -7.0, -4.043083496916936, -3.480276495763096, -3.9321184720291225, -3.651681745998869, -7.0, -7.0, -3.007493765990561, -3.6340908348262704, -7.0, -7.0, -2.749378056777176, -7.0, -7.0, -7.0, -7.0, -3.8903278525489418, -3.446459496594692, -3.848620117434134, -3.791573698842515, -3.1409320744245472, -7.0, -3.529059442918842, -4.067163882602843, -7.0, -4.083735471103647, -3.3301980946221676, -3.038826142126565, -7.0, -7.0, -7.0, -2.9472526967087433, -7.0, -7.0, -4.093123881218075, -7.0, -4.370031712709581, -3.6880102529917385, -4.390139938467622, -4.404320467221731, -7.0, -7.0, -4.005895165424469, -7.0, -4.375681899659375, -2.1341739419354075, -4.072948031792886, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.095232898972203, -4.373114381203458, -4.3216502030686, -7.0, -3.1698135987952667, -1.8258445260898921, -2.860555779914859, -2.3133914202099204, -2.9344984512435675, -2.880688571764092, -3.225343748174189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.388278863459639, -3.6961641031417938, -4.3507615005427285, -7.0, -3.0487925259244864, -7.0, -2.5848352855479284, -3.7741335955563224, -4.389219260025098, -7.0, -7.0, -3.7542259820035175, -4.098626422903375, -7.0, -3.3611781830641054, -1.4409806003003571, -1.554289756780903, -7.0, -4.367393197922476, -4.072010804365697, -4.067758781177132, -7.0, -7.0, -7.0, -7.0, -1.8942816190154128, -3.8241746648835893, -3.606835011219978, -2.796924307054616, -7.0, -7.0, -7.0, -3.6846479101829965, -7.0, -7.0, -7.0, -7.0, -4.389803762974429, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4712237365671486, -7.0, -7.0, -7.0, -7.0, -3.6793188550209104, -7.0, -7.0, -4.077476919504343, -4.141136090120739, -3.79118168612114, -3.5066853872587527, -2.254213777108459, -2.8721562727482928, -4.0678516605123525, -7.0, -3.0818271912583772, -2.8902987339959663, -2.3725591487520004, -4.077858253926433, -2.940446167127642, -7.0, -7.0, -4.372819981678968, -4.5143219139450625, -3.7537055938395905, -3.390880782945212, -3.4936593893103947, -3.774779652677459, -4.3881012015705165, -7.0, -7.0, -7.0, -3.808346035740395, -4.10636090880675, -7.0, -4.372599050995377, -7.0, -7.0, -4.089180683445066, -4.36726271478424, -3.01778087917159, -2.472115362423072, -4.384514698685653, -3.9308981144101045, -3.241973165892279, -2.7023809792500697, -3.48654381988252, -7.0, -3.6249212039208625, -7.0, -4.379686151906955, -7.0, -2.994844849553398, -1.8552938792308002, -2.7423406445464393, -4.461963486124938, -7.0, -7.0, -3.9235721204036174, -2.2653463590536993, -2.7236860593523637, -7.0, -7.0, -7.0, -3.8534700560147392, -3.38971364302292, -7.0, -7.0, -7.0, -7.0, -3.3969138623652726, -7.0, -3.967828679330155, -7.0, -7.0, -2.8506945913152344, -3.5998285090380104, -3.800652937230222, -3.528062323092907, -3.28801204284906, -7.0, -2.8600383898071935, -3.284676781430669, -3.9825425823029432, -7.0, -7.0, -4.371123300581949, -3.164121434824116, -4.461513533243928, -7.0, -4.397314173908845, -7.0, -7.0, -2.8977816781075982, -7.0, -7.0, -7.0, -4.435732912484542, -7.0, -2.3432564443899238, -7.0, -7.0, -2.3787851013321077, -2.3748658643818557, -3.3623882165886987, -3.1530281714762953, -3.078784128724828, -7.0, -2.4003076860685573, -2.3526506225416637, -1.9645207229227155, -2.473311216228847, -2.996171029930056, -3.2014982759412427, -2.5557163181878044, -2.620089685524072, -2.0028711621238684, -2.8807741808299814, -2.167229322896238, -1.9753776890010881, -3.484675073321929, -3.1180842713160093, -3.9477113985684684, -2.5249336259746147, -2.608851014074864, -2.1835406129076365, -2.692112196581435, -4.043637309592571, -2.804126688578728, -2.947467918751744, -3.921911799387235, -1.8253256070739754, -2.8709888137605755, -2.8169100265677667, -2.8779370338525085, -3.0788757753354, -3.1630736369452643, -3.220830065905614, -3.159810595735413, -2.5766995945548037, -2.8900900929739746, -2.2937124685289176, -7.0, -2.9554815815548734, -1.9801848549570622, -2.542854032839964, -2.196349731859291, -2.7296092121055566, -4.098591815007755, -2.1229971975092385, -3.472610197596045, -4.414338145582368, -3.1342460459446086, -2.6939095886706075, -2.397698838735479, -7.0, -2.0121412609866733, -3.322972010036008, -7.0, -2.8825245379548803, -3.411423275153606, -4.439127342442847, -4.380934463330702, -2.372177459023404, -1.9042635560595857, -2.9307066729331126, -7.0, -3.965687638126618, -7.0, -2.445109514160607, -4.460206027457451, -3.46932055733037, -1.9662310320585514, -3.594768113447505, -7.0, -2.480575802792105, -3.0639439848052312, -2.465351428272144, -3.650760688764963, -2.632468416673561, -2.896556007555891, -2.1529583419251055, -2.3216303542229584, -7.0, -2.062991369166478, -2.467733650178315, -3.5773440554976808, -2.4468747963813797, -7.0, -3.4728864095132606, -2.2790374965594027, -3.7840974174736335, -4.069446083880313, -7.0, -7.0, -7.0, -3.845175585676797, -1.9600610429201442, -4.400019635065158, -2.570199433985714, -7.0, -3.09191304667608, -2.7581351874034996, -2.845235889398656, -4.395413767475018, -7.0, -3.249167772195713, -7.0, -2.260934510790345, -3.31635750347846, -3.899619900298734, -3.1183343552502207, -1.640317233216312, -3.9196532823103643, -3.057808690334717, -3.4780070353598553, -3.6767301802519694, -2.5711338477405756, -3.4218962826411565, -3.776428756703846, -4.391869775709361, -3.719082573901486, -7.0, -3.2643980119745235, -3.766710207262259, -4.3705685987670515, -1.8590974860992797, -1.303137657032866, -1.9722070522427055, -4.367094893123658, -3.261823435154435, -3.5437370271986532, -3.4776637838119564, -3.7117566286781725, -7.0, -4.087497472404264, -2.8756292278303137, -7.0, -7.0, -3.0035811527135046, -7.0, -2.5527472031596625, -4.375535592509499, -3.6913997990989937, -4.082030981267012, -3.8999663367071444, -4.0919481908785595, -2.1311338865820924, -2.8942029975509205, -3.891295806018899, -3.5750063009359265, -3.638655621439301, -3.5502982539858587, -2.074768494687751, -3.4721711466923635, -7.0, -2.4934011409892882, -4.397453326259252, -1.8047947564795233, -3.4558933499799442, -2.9352634125839745, -2.9561150478335527, -3.8995286868730945, -3.5211235488395993, -7.0, -3.417260269499742, -4.072654217333034, -3.7956541254765086, -3.2342641243787895, -4.0850764114720945, -7.0, -3.3489336028856633, -1.7535083087629977, -3.3894560543546906, -3.555215405126073, -2.4667153093618293, -3.456298538454589, -3.337228805205703, -7.0, -2.610647181831733, -2.643945912748067, -3.0845584053656787, -3.9063530023303885, -7.0, -7.0, -2.9603851469606433, -2.9621493926097586, -3.6809516111681853, -3.066427582089823, -1.8469616287811097, -3.220631019448092, -2.131231706151648, -2.697514929326022, -2.4958472539940426, -3.6304278750250236, -3.6768947099757874, -3.9141667938756353, -7.0, -3.434983840181938, -3.7398254113853047, -2.979061471018838, -7.0, -3.9143255240175927, -4.382359297519319, -2.7035291823183036, -4.379069719792747, -3.7715507369849686, -7.0, -7.0, -4.068593980976652, -4.3686401285764855, -4.069594105177555, -2.3116637023504474, -3.4864659011032937, -7.0, -4.073718350346122, -4.376704671946979, -4.069926968752473, -4.37359235519894, -4.378634063849602, -4.375572173918037, -3.3611953702529753, -3.4855972232092967, -2.724593738503572, -2.648664886024623, -4.437004965477303, -4.3774519630245745, -7.0, -3.2427401446056274, -3.898396045930009, -7.0, -2.724982248479115, -4.077367905284157, -3.5324631749035365, -3.639967665270556, -2.9008960175253944, -7.0, -7.0, -4.069409070671793, -3.79742336017649, -7.0, -2.930821728079435, -3.786573978023827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9159272116971158, -7.0, -7.0, -3.523543575296752, -4.079145053332749, -7.0, -7.0, -3.4490153163477864, -2.964975790327557, -7.0, -7.0, -7.0, -7.0, -3.8634418286137087, -2.291062491464624, -4.162086240240854, -7.0, -2.9789029787033003, -3.4302317784112404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.001290107998124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1817864401741915, -4.259109865420318, -7.0, -7.0, -2.997677564080969, -7.0, -3.7479165080965102, -7.0, -7.0, -7.0, -7.0, -3.9329301428307897, -3.261857385629898, -7.0, -3.8703453710809597, -4.115144351793107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0216440360874435, -3.6993792890721724, -3.86993541064686, -7.0, -3.492993067565435, -7.0, -7.0, -7.0, -7.0, -7.0, -3.891673714695143, -7.0, -3.355882344117442, -7.0, -7.0, -4.156488576050017, -3.64704048585496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9366142619752114, -3.9298785236567833, -2.655619817172903, -3.5342800052050816, -3.459141087183815, -3.5639554649958125, -7.0, -7.0, -2.8542047958554297, -7.0, -7.0, -7.0, -4.019780730403647, -7.0, -7.0, -7.0, -4.210131168184136, -7.0, -3.963976609996606, -7.0, -3.4424013694827025, -3.3406848506563924, -7.0, -7.0, -3.6085260335771943, -7.0, -2.8477688997530954, -3.9003671286564705, -7.0, -7.0, -7.0, -7.0, -7.0, -4.33683982531461, -2.3784529620552672, -7.0, -7.0, -7.0, -4.545834713183113, -7.0, -3.982406928863795, -4.035629827790439, -7.0, -7.0, -3.649058873947145, -7.0, -7.0, -7.0, -3.2747061463002716, -7.0, -7.0, -7.0, -7.0, -7.0, -4.243236537941076, -4.08543329741699, -4.022799404511688, -2.8095971199565004, -7.0, -3.8568496787251725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318397279217511, -7.0, -7.0, -7.0, -7.0, -7.0, -3.619249898968967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.178804645370451, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8744818176994666, -7.0, -3.4823017672234426, -7.0, -3.634762675439664, -7.0, -4.081599312732936, -2.9521320584091684, -3.2974869397629045, -2.6636632409363377, -3.4254527011208484, -3.919862253555538, -3.6612446089593336, -3.624797578960761, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.19725298299739, -7.0, -7.0, -7.0, -3.6693168805661123, -7.0, -3.3988770730873177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6639834546082666, -3.0070263462012052, -2.5508239426793615, -7.0, -7.0, -3.877889425371484, -7.0, -7.0, -7.0, -7.0, -7.0, -2.895422546039408, -4.02649240705284, -3.3082655332099327, -3.290085301024576, -7.0, -7.0, -7.0, -3.910464315995614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6832733908769533, -7.0, -7.0, -7.0, -7.0, -7.0, -3.890700397698875, -7.0, -7.0, -4.065280871102755, -7.0, -7.0, -3.0107890454131927, -3.933942602741261, -7.0, -7.0, -3.66061254003405, -3.3450304728916596, -2.3514033420374587, -7.0, -2.883108317483188, -7.0, -7.0, -7.0, -7.0, -7.0, -2.946288473013431, -3.7782236267660965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4763968267253302, -3.5820917843954336, -7.0, -7.0, -7.0, -2.937358852359666, -4.1648285343444815, -7.0, -4.11590992187706, -7.0, -7.0, -7.0, -7.0, -2.9433845818511166, -3.69888313675259, -7.0, -7.0, -7.0, -7.0, -2.272585387686152, -4.152930136422725, -7.0, -7.0, -7.0, -4.0965972083578945, -3.4368779277106576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039770926931579, -3.893595333819883, -3.8961733476900053, -3.5907721950139786, -3.7651353157102356, -7.0, -3.414639146737009, -4.200928629688284, -7.0, -7.0, -7.0, -7.0, -4.010299956639812, -4.109949580230588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1716589589787767, -7.0, -7.0, -2.892424774997811, -2.979383403046637, -2.957384918427862, -3.040760524228699, -2.9458563614043456, -2.4003076860685573, -7.0, -1.6753452130435258, -2.374827780920044, -2.4843535687148988, -2.234264124378789, -2.427063943715794, -2.6765977445754525, -2.7920351611920013, -2.1982852175720424, -2.577678072403625, -1.7387471884369516, -2.5739492265770068, -2.252452644220883, -2.608222582423682, -3.067979595068381, -3.0224682265597034, -2.850493071900963, -1.9948329128860245, -1.8485896890584994, -3.0689276116820716, -2.6522046472654086, -2.2646789598646593, -2.6304278750250236, -2.15915403552208, -2.1934983993948127, -2.760542783272158, -2.539154540856009, -2.054403749346116, -1.7932664017413886, -2.541579243946581, -2.597542839313678, -2.9538587750319683, -1.561142881377997, -2.253991129516915, -7.0, -2.74075325674677, -3.2268681559950823, -7.0, -2.470982714616232, -2.35145029399841, -7.0, -2.1829278707887827, -3.9195226242023646, -7.0, -3.758457688610466, -3.5163326117439992, -3.3397534541711176, -7.0, -3.0141130613510034, -3.428426386440588, -7.0, -3.636955706104427, -4.482773570074737, -7.0, -7.0, -3.8744445411585167, -2.486439517190511, -3.6512982446363424, -7.0, -7.0, -7.0, -3.2963830892565467, -7.0, -4.375390899472998, -3.5731734132550312, -4.367206781435987, -7.0, -7.0, -3.626224848161194, -3.4483326556439904, -3.25478968739721, -3.3644008892496857, -2.6262409978558114, -3.787738714389369, -2.358098418677797, -7.0, -3.259456038251947, -3.187534149648075, -3.5398703234865425, -4.059493364754587, -7.0, -7.0, -3.675053913679753, -4.122690884070814, -7.0, -7.0, -7.0, -7.0, -1.7228828732324626, -1.6104263490510267, -3.957128197676813, -2.850982017175569, -3.8718063644587293, -2.8967265840360867, -3.28266742031975, -2.027229653490911, -7.0, -7.0, -3.4900287479278442, -3.5638369186645447, -2.9063099793656395, -4.03734680356809, -7.0, -3.473389638266334, -2.6398977222691444, -3.4709492267992785, -3.102166811210593, -2.9022749204745018, -2.4521841151090564, -3.2027947216772894, -3.8882918453565156, -3.195512210674072, -7.0, -7.0, -7.0, -3.2315715255284156, -7.0, -7.0, -2.983175072037813, -2.3696436876791966, -1.3267335249988885, -7.0, -3.502654678010023, -4.188422214635828, -2.998368334404169, -7.0, -7.0, -7.0, -3.159903204454949, -7.0, -3.87075494489014, -3.486241511384074, -7.0, -1.6966371725035474, -3.2831315492788855, -2.649642251303885, -7.0, -3.5893910231369333, -7.0, -2.2432248018527514, -2.455976496389408, -7.0, -7.0, -7.0, -2.5808754128245637, -2.2119760939132904, -3.4081268530617237, -7.0, -2.6326061404166037, -7.0, -2.6300075308019943, -3.508035666557394, -2.3728711070256434, -3.3217537297632274, -2.656943297593573, -3.53873078529734, -7.0, -2.872636080463341, -3.4025479509123913, -7.0, -7.0, -2.517037463772293, -7.0, -7.0, -2.377081574961449, -4.038540686337457, -7.0, -3.829094617724282, -3.6852937813867843, -7.0, -7.0, -3.039587604005866, -1.842240185272119, -3.3154980294974736, -3.4324882557705063, -7.0, -7.0, -2.5405650003943974, -2.3180179422810476, -7.0, -1.4765437353767086, -2.781272974067587, -3.249931756634195, -3.096828255763481, -3.3922209233273932, -3.054766217838991, -7.0, -3.5858553633220276, -7.0, -7.0, -3.747489492258673, -7.0, -2.63230728977173, -7.0, -7.0, -7.0, -2.7910435886018217, -7.0, -7.0, -3.8608169638645378, -7.0, -7.0, -7.0, -3.024485667699167, -2.098257185804164, -3.3258234190027447, -7.0, -7.0, -3.18971484232368, -7.0, -7.0, -7.0, -7.0, -3.9651546459869254, -7.0, -4.292433298244021, -2.5654310959658013, -3.7517024117392372, -3.891425942847994, -7.0, -4.008600171761918, -7.0, -7.0, -3.3274270536683934, -7.0, -7.0, -3.704879450830578, -2.4419722269826796, -3.969974730121715, -7.0, -7.0, -7.0, -7.0, -2.5060022200171628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.297147471801269, -7.0, -4.592598628906131, -2.536932840085164, -3.3819269306372273, -7.0, -7.0, -2.3193500861082983, -2.324210088295366, -4.295830894958585, -7.0, -7.0, -7.0, -7.0, -2.0901845471034233, -7.0, -7.0, -3.352923487923558, -2.5967085150862332, -4.118220621846332, -4.289722698213798, -4.587127024478463, -3.827078353439126, -3.89867034296553, -7.0, -3.234478345557588, -7.0, -7.0, -7.0, -7.0, -7.0, -4.590005419651329, -3.2534749651978156, -7.0, -4.607465746402825, -4.114043562548077, -2.979154479109356, -4.112135602681912, -4.592254501367159, -2.9924565253794793, -7.0, -3.7261870607048433, -7.0, -7.0, -4.139952511628103, -3.7519056726903885, -3.397342442838698, -2.3490295119319136, -3.408377781046953, -2.9316838303621062, -3.023742247079222, -7.0, -3.815765857584692, -3.709354775834396, -7.0, -4.595374955168249, -7.0, -7.0, -3.8943714538562375, -4.145227492652394, -2.91296955152229, -4.287980783522498, -7.0, -3.568468407822322, -7.0, -3.8615045408853748, -4.327461109303142, -7.0, -4.009695170852119, -2.959675565620754, -4.588361358384558, -2.544186717310012, -7.0, -7.0, -3.2448858293864875, -3.9060439777650204, -7.0, -7.0, -3.106944816405672, -4.292510812271008, -3.200818940961113, -3.5409339789550547, -3.8243211248507714, -7.0, -2.0428200167086685, -3.1421599511455183, -2.480438147177817, -4.287062352554394, -7.0, -3.708197746332473, -2.686549079042787, -3.4044167476979577, -3.2809713502808844, -3.8904657315037134, -2.9184630502343385, -7.0, -4.587362941142179, -7.0, -2.9134027400377787, -7.0, -3.404192060041402, -3.9967305154351527, -3.165315974146904, -2.568110343224447, -7.0, -4.289176310578643, -3.555292359938342, -3.820179558051817, -2.744991093676315, -3.8167493372332375, -4.587048357103245, -4.30513631894364, -3.775173385424787, -3.305852740224386, -3.749968083509403, -3.2477032819341716, -2.3404810077814537, -7.0, -4.654609657359271, -7.0, -3.8573388457193865, -4.295929776786988, -3.6126885133197812, -3.5465323817635763, -7.0, -4.593452219346109, -2.8090431919338577, -3.4684211837380565, -7.0, -7.0, -3.2702905531667605, -7.0, -7.0, -7.0, -4.588663795780204, -3.985078270183812, -3.575276684956999, -3.4929000111087034, -2.7547470758907386, -3.156276496003016, -4.292577241855888, -3.262394129341876, -4.28657995889235, -7.0, -3.9955803559735865, -3.3729032398776235, -3.146718971926629, -7.0, -4.590395947184013, -7.0, -2.9818543579477965, -7.0, -7.0, -4.001355054084966, -4.1217786323442205, -7.0, -3.695886449894574, -4.600983780123833, -7.0, -4.608493941666254, -7.0, -7.0, -4.3001061379430885, -7.0, -2.7014459792761993, -4.591131416423124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.919115465508226, -3.687339417646106, -2.612989562531319, -7.0, -2.5216911650292575, -2.3196846398793265, -4.117746218143026, -2.702126302120017, -2.592353192288362, -4.121855182166855, -3.2856215965486952, -2.4151491401132317, -3.8245596945739138, -4.296325079116333, -3.7551122663950713, -3.929234950265582, -7.0, -7.0, -7.0, -2.447742764819307, -7.0, -3.6654871807828107, -7.0, -3.6203963453512844, -7.0, -3.7396415570897896, -4.291468753334798, -7.0, -4.289455165670285, -7.0, -4.038818787373656, -4.606886315027087, -7.0, -3.14589263991003, -2.8752399486367235, -3.032503639715015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5869059703826816, -3.720376396378187, -2.988844903796994, -2.560614268618336, -7.0, -4.289934377993168, -4.1151887695361165, -3.818808522067325, -7.0, -7.0, -4.128668465082902, -4.1239169434981315, -7.0, -7.0, -7.0, -7.0, -4.589916106886427, -7.0, -7.0, -7.0, -2.786630248644035, -7.0, -7.0, -7.0, -7.0, -7.0, -3.894016828216566, -7.0, -7.0, -4.031630604606654, -3.398515067967853, -3.303215699422342, -2.9094490469812664, -3.2591267144555607, -7.0, -7.0, -2.8393079489772797, -3.6047335137224517, -2.4804176233488913, -4.293064081916136, -1.8298429342682472, -3.816959005394395, -3.890867938811441, -7.0, -3.836296982759114, -2.8913183835707033, -3.002340719023859, -3.0686671411769404, -3.7511635847694937, -3.7545012293869173, -4.292532956594993, -7.0, -7.0, -4.011507007443322, -7.0, -7.0, -4.59027324779574, -7.0, -7.0, -3.9989237887958713, -7.0, -3.3506894128456532, -3.0664656972289, -4.597530649275731, -4.3110647990615965, -7.0, -2.0204866559028973, -3.0187004986662433, -4.589044343518194, -2.9459834032795715, -4.588271706842329, -4.1174149316527675, -4.624024124647861, -4.302081884881776, -3.1422237856667863, -3.361434010908688, -4.34552075797636, -7.0, -4.141439320940584, -4.130387381788316, -1.6550186730179992, -2.604006106298812, -7.0, -7.0, -7.0, -3.1947422321739922, -3.0698324778681014, -4.2900791521022015, -7.0, -4.6104259215337375, -7.0, -3.491156891329735, -4.114032429218625, -3.7323334369557415, -4.59365151826543, -4.295292143016351, -3.3962301252029676, -3.0744285441023065, -3.1275709364394157, -2.8362754143350264, -2.711352486869325, -7.0, -2.807240810537173, -3.2615495579978937, -3.6449307079135873, -7.0, -4.595419056052439, -7.0, -3.1565909224659774, -3.8680269370808706, -4.03604971613695, -4.304361254225308, -7.0, -7.0, -3.4953628544079263, -7.0, -7.0, -7.0, -7.0, -7.0, -2.449712564810516, -7.0, -7.0, -3.0023904888563426, -2.938095122768641, -1.481944569338266, -3.348325362657893, -1.87861512959996, -2.3526506225416637, -1.6753452130435258, -7.0, -2.319198283339407, -2.9784453056005, -3.323489298403336, -1.6580891171752072, -1.7860040591971704, -2.3118366821075793, -2.747594572531689, -2.02956215102457, -1.101724446438007, -2.9295368177157144, -2.650361001088155, -3.1347032871453275, -2.712556174226849, -1.8940522432779985, -1.969168459528491, -1.6877806393969483, -2.087105877348507, -2.690562171664373, -1.7706589656531093, -1.5717635398280054, -3.907465106765856, -2.059496009285706, -2.4166072267925043, -1.4176693603506239, -2.085280893078655, -2.021757440269967, -2.8463262584308806, -1.9334572522470266, -2.0417119019913423, -2.575351881915607, -2.01932320967471, -2.7675351409941324, -7.0, -2.7263837250269227, -2.8476261764648605, -3.4308998905960526, -3.0065475348576056, -2.2814982124294234, -3.402422600478645, -1.8749933830032488, -3.5673069327762104, -4.616034168348879, -3.562860975597884, -2.6134223028214976, -2.7517196188765767, -7.0, -2.6186675516888123, -2.830695571942768, -7.0, -2.8010703387598253, -2.850251774187875, -7.0, -7.0, -2.7827700631505725, -1.9465606832645925, -2.49380146683446, -7.0, -4.333134792524816, -7.0, -3.135007398371379, -4.344372621906474, -3.1152329844736144, -3.3017156394293377, -3.5916369257764496, -7.0, -3.8177929968390703, -3.2578185183129036, -3.064748596192895, -3.4789579468006946, -2.957830681368091, -2.6835364503597714, -3.3613833738997507, -2.011682253769414, -7.0, -2.5551880282267496, -2.984337778898843, -3.1582896875886353, -3.11029794935722, -7.0, -3.9252295573903355, -2.7842190856301663, -3.230982069913129, -7.0, -7.0, -7.0, -7.0, -2.221967023835514, -2.2489873811994956, -4.306038816336349, -2.6579706044265934, -7.0, -4.302071053650075, -3.478234515815185, -4.00665854393118, -4.3031852539407955, -7.0, -3.494830167764257, -7.0, -3.1000688469589184, -3.450002630173186, -4.291779415420275, -4.605660526371362, -3.0884651668070924, -4.605121806343587, -3.853282371443652, -4.595595414820133, -4.592243395937578, -3.800019526792286, -7.0, -4.593917107968336, -4.602049133830196, -3.7152196541314884, -7.0, -3.731069199110241, -7.0, -7.0, -3.4586322542136774, -2.2991392849753933, -1.1140188594582874, -7.0, -4.612306930268642, -3.524229160681178, -7.0, -3.9147978438103976, -7.0, -4.122849103955043, -2.8439098615708867, -7.0, -7.0, -7.0, -3.9005528249554966, -3.310764096221262, -7.0, -4.601212290310882, -4.295611076923875, -4.593042261900327, -4.00062927088754, -2.997986728734311, -2.738376029233355, -7.0, -3.7165562993397074, -3.6632820254469673, -3.0237721320079123, -3.3021476996357157, -7.0, -7.0, -3.663182477305838, -3.760271660542063, -2.2918120143098473, -3.409129696282029, -3.7211817929377893, -4.599915806604957, -7.0, -2.9919095417868324, -7.0, -4.167445339198895, -7.0, -3.760497875226527, -3.2332207210598045, -4.297475993324212, -4.28592843841554, -3.285244120563568, -2.40210991142646, -4.149527013754348, -7.0, -3.590105874562201, -4.613820687810423, -4.162624140307846, -4.120530060860654, -3.1329441849619486, -3.4004567198107583, -7.0, -7.0, -7.0, -7.0, -3.338392454638033, -4.136287113116408, -3.691567700438057, -3.498840504412899, -3.0786380383696725, -3.827089131715571, -4.244524511570083, -3.0724752248302725, -3.5895231155601817, -3.498331764235352, -4.5923433345820435, -7.0, -7.0, -3.72607487021537, -3.9325955124185206, -2.8196350367166048, -7.0, -4.300780204515047, -4.596212107141384, -3.0828267823103697, -4.5942046469788265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8703551273285175, -7.0, -4.604118006192035, -7.0, -7.0, -7.0, -4.289822980444232, -7.0, -7.0, -3.5672937724121385, -4.600243016285841, -3.5033139228158845, -4.041056964240598, -3.78519759407694, -7.0, -7.0, -4.141992954947583, -7.0, -7.0, -3.064320690534863, -7.0, -4.593418993965913, -7.0, -4.009376523937582, -4.30894838630958, -7.0, -7.0, -4.129657673312688, -7.0, -3.852134209659975, -7.0, -7.0, -7.0, -4.579251831894143, -7.0, -7.0, -3.7024994666070703, -4.180699201296035, -4.885971517631692, -2.724270179122184, -7.0, -4.404223451969429, -2.366764563371726, -3.5826260327397415, -7.0, -7.0, -3.088514404450885, -2.402800038634579, -3.6281106653728488, -7.0, -7.0, -7.0, -3.401452239428341, -2.2358864186637226, -4.07333598198359, -7.0, -2.4518960366559517, -2.0367966219629032, -3.8827009520401465, -7.0, -7.0, -3.586722297518069, -3.8047072118408556, -4.181826444403178, -3.2795236294273167, -4.104595216241666, -4.578232226348149, -7.0, -4.880922152331826, -4.10932538777049, -4.578994292445924, -4.41624097236815, -7.0, -3.8889765604386084, -3.0538235216291834, -3.0025226295727028, -4.879674935072914, -4.279096329747602, -2.9429039182926973, -4.883468372477887, -2.813011924279666, -4.880470592803778, -3.627274799986486, -4.593108767780639, -3.8422006200271137, -3.059297726935559, -1.9504973603195637, -3.493675492344039, -2.5231115907773183, -3.4051488504672323, -7.0, -3.7358269356613625, -3.8916656643321246, -4.581300973440315, -3.7365217067513323, -4.18385041331821, -7.0, -3.840288628653793, -3.4052526963247365, -2.8430643424451443, -4.1805215511284315, -7.0, -3.5099749598454677, -4.1796838976987285, -3.1422168015774887, -3.6959247197466625, -4.402204046065145, -4.192344395046124, -2.3604720822618974, -4.879193398354936, -3.3571610331780577, -7.0, -7.0, -2.9208556016179306, -2.8781048276889516, -4.1022907468986824, -4.577399875933421, -3.85034542706947, -3.881761148404959, -3.4620761790758543, -3.7196129897309733, -3.8450247113790064, -4.885779479387615, -2.180735816721301, -3.594375973933817, -3.2246244545428504, -3.97589687492733, -7.0, -4.5901170347847895, -3.3060919125073824, -3.8483011062859602, -3.2952206256871532, -7.0, -3.406447715743738, -4.882177191180505, -7.0, -7.0, -2.905050221975924, -4.8789065156607965, -3.3708157807234556, -3.7083472366371133, -2.969750193711248, -2.2420327113070426, -4.580383194629278, -4.278055883861635, -4.038421445642459, -4.58334049186249, -2.4644033698676973, -4.183594375321738, -7.0, -4.587368556643926, -3.8543833409958466, -3.6959083187944173, -4.882706641624157, -3.352211470111767, -2.342851180626867, -7.0, -4.437221902399778, -7.0, -3.4838874573139074, -3.8835251645274904, -3.511448849204857, -3.483587296968894, -7.0, -4.036640300004483, -2.374739137539774, -3.121442988413379, -7.0, -4.878745778536927, -2.5796019381303084, -4.878188478737013, -4.8782402170748815, -4.878659644885606, -3.1975676949836185, -4.4014579833425564, -2.220246301385376, -3.3258234190027447, -3.235057187684041, -2.3837059250399273, -4.580856577457996, -3.537320524271039, -7.0, -4.57890268604763, -3.98083251407348, -2.8831034194905643, -2.5143503569867414, -7.0, -7.0, -4.036834133116361, -2.961266809061622, -7.0, -7.0, -3.772919465833062, -3.9814731626861795, -4.034210058377503, -3.0644579892269186, -4.408556522973944, -4.112074096198641, -4.412471747659022, -3.9323046139517808, -3.8035358992281134, -4.1075830311913215, -3.5798864436574345, -1.9312898112904282, -4.880613542175367, -7.0, -7.0, -4.581164284641671, -4.880350478958987, -4.277889868055238, -7.0, -2.6552376394663915, -3.649701293987293, -3.382875633393018, -7.0, -3.5434633878211326, -1.8802465169819231, -3.3139469837438598, -2.7079357553475703, -3.084147133154448, -3.52270499273475, -3.181367126589355, -4.04017834859167, -4.409510452269316, -4.281737671706917, -4.283272953402787, -3.8585864097188036, -7.0, -4.123813543288926, -7.0, -3.74863243437746, -3.9841783874885084, -3.908207911377373, -7.0, -2.297941956450323, -7.0, -2.7131565574176917, -3.7050764816562776, -3.5427462308516486, -3.518313626141043, -4.403966542231021, -3.906803568389256, -4.189759734122248, -7.0, -2.9804410666564363, -2.359620733127385, -2.4684482778524823, -7.0, -4.878562006091662, -3.5578736854964284, -3.648371492507466, -7.0, -7.0, -7.0, -7.0, -2.419231714320627, -3.4993901215945535, -2.651627253844299, -2.6475054048611133, -4.878297696888866, -4.403395087002509, -4.580200547681287, -2.853083837210162, -7.0, -4.180332359773302, -4.189209489582306, -3.5430911940308167, -7.0, -7.0, -4.8783091919388095, -7.0, -7.0, -7.0, -4.879239282004893, -4.408901082354143, -1.8349429903280465, -7.0, -4.878699842715436, -7.0, -7.0, -3.268754858806963, -3.5389505620143615, -7.0, -4.1038208188273355, -3.999853400872363, -4.187712444905493, -2.5493098589194982, -2.624704142971265, -3.3543796472007004, -7.0, -7.0, -2.476232637385205, -2.5758328284484184, -1.2021624626183571, -4.882148707810854, -2.4731227267893687, -3.7686381012476144, -3.703744069681171, -3.880138768941943, -2.988958534263733, -3.508518945641213, -2.2019399337761323, -2.9696705018636695, -3.914147389545718, -4.106842247069822, -4.182859562041339, -4.8793023641093205, -7.0, -3.8508076943311957, -4.192283033926229, -7.0, -4.8801731073077965, -4.583317820106908, -4.402840056067149, -3.194995460578334, -4.878521795501206, -2.793677753532247, -2.849377765840031, -3.5614648480342446, -3.850010951288372, -3.168616455120142, -2.076825357874002, -3.1121387476657105, -7.0, -3.23450347863715, -7.0, -4.581346526814622, -3.450359098058306, -3.8867162741164782, -2.5988527169476825, -2.693721384719475, -4.432819692596553, -4.586007483440228, -3.690650079222292, -3.096046169288955, -2.0934010582009397, -2.952160466096275, -4.577537754493837, -7.0, -7.0, -3.263797406395141, -2.881159615232263, -7.0, -4.88160146454071, -3.6351652815006217, -7.0, -3.2342697517408654, -3.4331810064702166, -3.5613453617046673, -7.0, -4.1050898796005555, -3.2457100295452914, -4.182893766986047, -2.8008148119778054, -2.736422771941762, -2.5448957195226938, -7.0, -3.353750650088075, -2.8764774040208363, -3.184332449959256, -7.0, -4.581779045728458, -4.578673585479501, -3.7491784619809887, -3.511605323528979, -3.791328901157271, -3.773927025205094, -4.8789065156607965, -7.0, -2.986200507770217, -7.0, -7.0, -4.404998967853327, -4.201779353725061, -4.880470592803778, -1.9632118646144128, -7.0, -7.0, -1.635847285435352, -1.9287640656971603, -2.8776499600498724, -2.6724991858354983, -2.8562653278979666, -1.9645207229227155, -2.374827780920044, -2.319198283339407, -7.0, -2.1696796347232015, -2.3788076702177325, -1.6420777761975676, -2.300466146449801, -2.3231642439817457, -1.494460637807906, -2.7423955234251247, -2.4540304303616693, -1.4959910849691558, -2.7096152113478844, -2.0573576987385342, -3.7208646312144977, -2.5540990629431444, -2.313568607907434, -1.0650364639268783, -2.279458263588633, -3.465900847365547, -2.6081934347734985, -1.6857217503623843, -3.8092790719877616, -1.0138747530809518, -2.1240978284945977, -2.453382497794081, -2.7886849514854286, -2.6726653809000602, -2.9081801438349584, -2.9954806316406293, -3.0906633183364, -2.1826008732120212, -2.3147164804503, -1.4502611085537302, -4.882729399214851, -2.3270229704256304, -2.259338656408642, -2.972854758649604, -2.2840784231405773, -2.6321046372876338, -3.3201575182037963, -2.0243990147643496, -3.4977075869213845, -3.6146252807658557, -2.7956808317648716, -1.8442238177716326, -2.435729215832507, -4.5841106281854485, -2.2061016624806835, -3.6337129099766963, -4.879325300784807, -3.07725565617283, -3.0206257147651727, -4.056795991959564, -7.0, -2.215112894636366, -1.8801630543812344, -2.878640402307038, -4.579011466494655, -4.125047296659335, -4.181517744876915, -2.6079249046588773, -4.9093366872381266, -3.172844543701635, -2.2264107190468714, -3.349002555514242, -4.577807639942444, -3.0230307434509927, -2.6732086953863448, -3.063948902114075, -2.7508663941909006, -2.320932608707785, -3.49610432191286, -0.95391571228189, -2.726476108692137, -7.0, -1.401301031097911, -2.487664250163948, -3.6408898107842758, -2.863094770417211, -7.0, -2.3705308178486595, -2.7293004384241, -3.4206249305410177, -4.57848448648651, -4.878740036824943, -7.0, -7.0, -2.606001153050686, -1.80275017045316, -3.774803219379627, -2.219481487982073, -3.733443757892789, -3.1153058148784267, -1.4745388360584113, -2.544885102554565, -4.18837718436134, -4.578811060322582, -2.061366019546052, -4.180039810927176, -2.0474673297290966, -2.995113947880977, -3.538824988937904, -4.28604083928627, -2.608506315326026, -3.4561972767710216, -3.211109639334388, -3.2696723726683694, -3.8018779959930336, -2.8435442119456353, -4.404223451969429, -3.5393840807619363, -3.630789354092371, -3.572417938449931, -7.0, -1.9464574637475716, -4.879021291480248, -4.034376319641359, -2.247582651754639, -1.7163629722329221, -1.6654811074728242, -4.401325854091834, -3.3727446770262515, -2.944529423824312, -4.03763704841194, -3.71618147919181, -7.0, -3.9820280052712484, -2.4323720315236423, -7.0, -3.5369542230538054, -3.588394972942186, -3.9818186071706636, -2.123289611439104, -3.8809849904867533, -3.0857774428096105, -3.502990108608549, -4.5805543564083875, -3.5853761184457458, -1.8321033032122396, -2.357737088527054, -4.57785930100737, -3.418124443314898, -3.5517992006535386, -3.355603624458788, -1.120130913728231, -4.102873723286516, -4.879617637262669, -2.473816225498682, -3.8087453508147924, -1.5178397111018789, -3.360431906796075, -2.6760983533759655, -3.708896578694757, -3.2789535589511205, -3.039027907961798, -7.0, -2.7803603084010486, -3.9773520102903825, -3.6327046829529652, -2.9057264347043352, -3.105606683933109, -7.0, -3.0968191357320425, -1.403694988017363, -3.1826724835047404, -3.7749659069566945, -2.309547394740809, -3.549755432008307, -3.5080770088490123, -3.9296629703711963, -1.5492895682531027, -2.2484416866839902, -3.340013289599537, -3.364727190106312, -4.878917994607827, -4.401320108429818, -2.6996643202023733, -2.9618620050408455, -3.6518763532182574, -2.59756647208602, -0.8717851120656792, -2.9732461585033687, -1.1589200266038442, -2.0482695669897875, -2.9561738896938907, -3.529759443527333, -4.036069700697702, -3.8067846246122903, -7.0, -3.485388317827623, -2.96143200516566, -2.844934740714757, -7.0, -3.8446352981531975, -4.28113567588559, -2.0060432699385977, -4.280100110054924, -4.40337793172286, -4.878653902034747, -4.27649627062157, -4.277167820218901, -4.577905216795529, -4.101363231766848, -1.337734317746204, -3.931260059489091, -4.410186528657109, -7.0, -3.2181814592305806, -7.0, -4.579440597139797, -4.581016156545554, -3.880996414629062, -3.8105237427378844, -4.408172101497054, -3.2448953336918613, -3.151638616799286, -3.9011312513553715, -4.103478733439318, -7.0, -3.61627646616399, -4.403960831399213, -7.0, -2.592807487530051, -4.5809534717539675, -4.881789657203351, -3.5936515182654305, -3.1502259782112434, -4.0452391300593185, -4.879193398354936, -7.0, -4.587699742794285, -7.0, -3.137163053129165, -4.04008784346988, -7.0, -7.0, -7.0, -7.0, -7.0, -3.963976609996606, -7.0, -7.0, -3.7061628278930594, -7.0, -3.985022082109535, -3.3885567971144153, -7.0, -7.0, -7.0, -3.68897123937068, -2.9827929081556324, -7.0, -7.0, -7.0, -7.0, -3.664124650322944, -2.759382734236651, -4.216245097705822, -7.0, -2.89503234432232, -3.154853485461981, -7.0, -3.977586438003851, -7.0, -7.0, -7.0, -7.0, -3.684153359757077, -7.0, -7.0, -7.0, -7.0, -4.0313680628857735, -7.0, -7.0, -7.0, -7.0, -3.1337213467185854, -3.845632454617127, -7.0, -7.0, -3.4350077667145955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021106568432121, -2.684044326406123, -4.061678615245337, -3.7472823030451763, -3.697839368218363, -7.0, -7.0, -4.060886623004662, -3.9926418698783976, -3.695043658821294, -7.0, -7.0, -7.0, -3.7937205568135233, -3.6646419755561257, -7.0, -7.0, -3.7507397512353506, -7.0, -7.0, -7.0, -7.0, -7.0, -3.737855998205046, -7.0, -3.4395695171471754, -7.0, -7.0, -3.910224071953891, -3.33429287154846, -7.0, -3.66029616027073, -7.0, -7.0, -7.0, -3.6106246800650714, -7.0, -4.018617292519441, -2.651473316642036, -3.3078168266624304, -3.1690184512274984, -3.9665640840973104, -7.0, -7.0, -2.605346492386491, -7.0, -3.7985470652527273, -7.0, -7.0, -3.6902403935311185, -7.0, -7.0, -3.217053025228425, -7.0, -7.0, -7.0, -3.6371226589692447, -3.1513298716210123, -7.0, -7.0, -4.002209272988015, -4.008216801589691, -3.1562725432178564, -3.3923891456860735, -7.0, -7.0, -7.0, -4.115011071300453, -7.0, -3.771624221669053, -2.485434814042305, -7.0, -4.195013562875828, -7.0, -4.185699963145484, -7.0, -7.0, -3.629409599102719, -7.0, -7.0, -3.6793067375983877, -3.76767522402796, -7.0, -7.0, -2.903076415077322, -7.0, -7.0, -3.9632209865229884, -3.1902382914634244, -3.485437481076301, -3.2089561488344414, -4.149311505907915, -3.458543426918113, -2.3224777264475276, -7.0, -3.5134040668646405, -7.0, -7.0, -7.0, -4.303671144664021, -3.711582293398766, -7.0, -7.0, -7.0, -4.1619566462202044, -7.0, -7.0, -4.027512692448811, -7.0, -7.0, -3.709778601848225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8699956399169992, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9740047968974146, -7.0, -2.9772916357834776, -7.0, -4.444294677675202, -7.0, -3.543757723163865, -2.5852652334521258, -2.847043569352527, -2.5967587537269323, -2.8435442119456353, -4.010469569796392, -3.7441755903710754, -3.7142878374051356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9463539972262747, -7.0, -4.487477756438898, -7.0, -2.7686803765792845, -7.0, -2.9833556143317885, -7.0, -7.0, -3.97648753730519, -7.0, -4.154393537956997, -4.040206627574711, -7.0, -3.570270447480781, -2.387000299581458, -2.7218380839505403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.634838837899661, -3.797821311364024, -3.3061910011503572, -2.7057192665088827, -7.0, -7.0, -7.0, -4.002856926061121, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1637228015492442, -7.0, -7.0, -7.0, -7.0, -3.144307277987259, -3.5096504795465826, -7.0, -3.9902056151848067, -7.0, -4.025551622782544, -3.470675044798936, -2.6910529586002814, -2.7416905544137458, -7.0, -7.0, -3.690092664268553, -2.885764952032237, -2.005302224004762, -7.0, -3.301659266551521, -3.9955474494751373, -3.9740970037941312, -3.976074731619874, -7.0, -7.0, -2.7735670489260587, -4.144044637110949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.018284308426531, -7.0, -3.5608626947274646, -2.7721192856137304, -7.0, -4.059184617631371, -3.713196433725248, -2.9820570489258453, -4.218666771495871, -7.0, -3.4934270675834678, -7.0, -7.0, -7.0, -4.026206297083118, -2.729434789379367, -3.5993371329924893, -7.0, -7.0, -7.0, -4.042654253167793, -2.836668309629515, -4.208172526667122, -7.0, -7.0, -7.0, -3.8578750255235628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9793206973820245, -7.0, -7.0, -7.0, -7.0, -2.9469878800637836, -4.061619400488769, -3.616842959534867, -3.5812519238247402, -7.0, -3.6967348842666072, -3.731170345661575, -4.16705135873788, -7.0, -7.0, -7.0, -4.085254891103877, -3.5683190850951116, -7.0, -7.0, -7.0, -7.0, -3.748885440009517, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9739758441821524, -7.0, -7.0, -2.56923777141077, -2.796856884709436, -3.591922802571349, -0.45695157034049433, -3.382197210377454, -2.473311216228847, -2.4843535687148988, -2.9784453056005, -2.1696796347232015, -7.0, -2.9884903533744995, -3.3807989509841128, -3.0367999335587545, -3.170334064983499, -2.022059193165288, -2.6909074552603007, -2.6116374150164035, -2.188454974845586, -2.8903092168999485, -3.0851418625206697, -3.794766797940821, -2.84444447407917, -3.29301510647291, -2.5077741221460546, -2.6304075328867076, -4.478609778601228, -2.9775310775313324, -3.018664324039434, -7.0, -2.379838903069261, -3.001376230057043, -3.2057146347028325, -3.3273005379250478, -3.3061032087275857, -3.1236066689862163, -3.8414220444023592, -3.608632989490037, -3.2675940797612917, -2.8741011358794135, -2.149864746009101, -7.0, -2.681956604360934, -2.850715837004121, -3.0381696077218603, -2.6730538369148547, -2.5110983073046955, -3.5628477721477982, -2.455275875899563, -4.268297087223766, -7.0, -3.2377232209250724, -3.1441805525731445, -2.8380654566879544, -7.0, -3.17653738805171, -3.4075608494863623, -7.0, -3.0273787345298664, -4.509498225929598, -4.125676410382333, -7.0, -3.437221902399778, -2.5991895013035666, -3.21222038264635, -7.0, -7.0, -7.0, -2.6884374443720818, -4.16799631208688, -3.8401077460146227, -2.306371938560718, -7.0, -7.0, -2.903500611912562, -2.828027239737565, -2.4880405338781713, -3.259218324497471, -3.1201061374514323, -3.064313968505352, -2.6607264465669678, -2.485821206948855, -7.0, -2.5063330525119167, -2.7744114242269298, -3.488762172066694, -3.326399756229908, -7.0, -2.954139093679364, -2.9061760145910296, -3.852083335846628, -7.0, -7.0, -7.0, -7.0, -3.141825894511075, -2.0595761546756988, -4.040958173384207, -3.078221118535338, -3.6707559422151332, -2.983954149351602, -2.359749918312179, -2.5534523536943654, -7.0, -7.0, -3.154697793596388, -7.0, -2.5047157113257805, -3.63086838754785, -3.6848453616444123, -3.034949146676372, -2.411540484058249, -3.1300119496719043, -3.3464181789371965, -3.2977167512641525, -3.284250210312084, -2.911157608739977, -7.0, -3.6892200372638357, -7.0, -7.0, -7.0, -2.5861508162245195, -7.0, -7.0, -2.773108939489977, -2.190523521436355, -2.109722064140192, -7.0, -3.4575791469957626, -3.6373646266794686, -3.518908573691414, -4.065355601289965, -7.0, -4.0143104809633074, -2.931359432137285, -7.0, -7.0, -3.568983532526376, -4.0127528874912155, -2.749124111204883, -7.0, -3.240341203017829, -7.0, -7.0, -7.0, -2.35786341111216, -2.6607402205351565, -7.0, -7.0, -7.0, -3.3315082762863892, -1.9667086841340151, -7.0, -7.0, -2.963577972554372, -7.0, -2.4855607611392485, -7.0, -2.0774377893428646, -4.013932120711204, -3.9857407410500745, -3.720434958433874, -7.0, -3.3870930757416673, -3.978317496746751, -7.0, -3.3992698070995253, -3.406242032884039, -7.0, -3.5716797226239247, -2.1791309979534557, -4.109139643904016, -7.0, -3.381716596708923, -3.2196967711811264, -3.3723902909904426, -7.0, -2.5549600128917778, -2.8924220014861617, -7.0, -3.525044807036845, -7.0, -7.0, -3.137464198692464, -2.9839268369509955, -3.5166235018348, -2.760007594399437, -2.118578787437554, -3.557226403727186, -2.5503036305145543, -3.3198988389606625, -3.2200099682636307, -3.4583734153747776, -3.9839869219651898, -4.020899672862536, -7.0, -4.117702061209315, -4.125253486024798, -3.2287210842783987, -7.0, -7.0, -7.0, -2.9013934461316766, -7.0, -3.501013592678627, -7.0, -7.0, -3.9681559371499704, -7.0, -7.0, -2.1218059731155416, -3.5399538416563967, -7.0, -7.0, -3.985695859689842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6340538534220705, -3.014310480963307, -7.0, -3.9875322027298394, -7.0, -7.0, -7.0, -7.0, -3.428037553035308, -7.0, -7.0, -4.081635301502951, -3.0148258961140812, -3.7504698234687637, -7.0, -7.0, -7.0, -7.0, -3.0064660422492318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1902382914634244, -7.0, -7.0, -4.213291918281081, -7.0, -7.0, -7.0, -4.276989989368231, -3.989494312772709, -3.656385719058688, -7.0, -7.0, -7.0, -3.569958818096594, -3.119307993152975, -7.0, -7.0, -3.293362554711446, -4.031505412197983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.185581814639974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.779189213682492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.643057683751453, -7.0, -7.0, -7.0, -3.8403570592033565, -7.0, -7.0, -7.0, -3.4586378490256493, -7.0, -3.9362120443202486, -7.0, -7.0, -7.0, -4.834767110869274, -7.0, -7.0, -7.0, -7.0, -4.031448861859383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5059183613264397, -3.824971461123693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.132163596050864, -7.0, -7.0, -7.0, -7.0, -3.961974486582087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4559536698309694, -7.0, -7.0, -7.0, -4.162790498256462, -7.0, -7.0, -7.0, -7.0, -7.0, -4.063783560597355, -7.0, -7.0, -7.0, -3.219633636956903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4885507165004443, -7.0, -7.0, -7.0, -7.0, -7.0, -4.164531296305431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.59972845899828, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.462210761646044, -7.0, -7.0, -7.0, -7.0, -3.5959995535214295, -7.0, -3.424936056088804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1784301399477375, -7.0, -3.4744105358226856, -7.0, -7.0, -7.0, -7.0, -3.94215692846749, -3.7367151336056112, -7.0, -7.0, -3.091114004305992, -3.2364952743003883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4539677667583994, -7.0, -7.0, -3.027333697880316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.165301777551698, -7.0, -7.0, -7.0, -7.0, -3.628899564420607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5495520633853173, -7.0, -3.4818803652233727, -7.0, -7.0, -7.0, -4.115144351793107, -7.0, -3.3925210899319325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7670816213633223, -7.0, -7.0, -3.6829569263012085, -4.062860770694389, -7.0, -7.0, -4.0517504719073445, -3.5748411950633847, -7.0, -7.0, -3.7080808104682315, -3.485756906607567, -3.807061239917239, -7.0, -7.0, -7.0, -3.741624257503812, -3.5514827421828254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.398882851161249, -4.44100348364844, -3.952789561110113, -7.0, -7.0, -5.0318324518318445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.24384384757082, -7.0, -7.0, -2.6780577845734572, -2.9129767924100274, -3.7372721765355434, -3.091373812473584, -4.261683078359308, -2.996171029930056, -2.234264124378789, -3.323489298403336, -2.3788076702177325, -2.9884903533744995, -7.0, -2.8757145484344777, -3.2390177847393633, -3.5641247607847664, -2.3023797440604157, -3.3103569312843244, -3.359361102738486, -2.6605442616845707, -3.029945405802438, -2.842572532981465, -3.84223468634724, -3.685871647578485, -3.165738797864829, -2.6345475652023325, -2.537024762287411, -3.913513626432214, -3.307103640720233, -2.9449054803762325, -3.733999286538387, -2.661631761394197, -2.1791769792994247, -3.7511250715355837, -3.78265175161032, -2.9111344395713137, -2.3846691002476987, -4.1850035564918056, -3.42845877351558, -3.219860163746929, -2.5657297878311267, -2.7053819439084843, -7.0, -3.3183851086757383, -3.6463165753710434, -3.735918116531297, -3.285613561126485, -3.6902669794624976, -7.0, -3.436999507587265, -7.0, -7.0, -4.011753651565362, -4.074455292377034, -4.009586857130916, -7.0, -7.0, -7.0, -7.0, -3.9740970037941312, -7.0, -3.8943160626844384, -7.0, -4.528428165537636, -3.5144652617283954, -4.118026340232679, -7.0, -7.0, -7.0, -3.5390482048667, -3.964118143151485, -4.234670794831644, -2.659599312436744, -7.0, -7.0, -7.0, -3.7025454139708356, -3.690993032099869, -7.0, -3.9905830212758984, -3.981501488148247, -3.0634760790072133, -4.053219342138294, -7.0, -3.703706840716946, -3.479449917038245, -7.0, -4.0526477788535225, -7.0, -2.8505849763520317, -4.339948061694351, -7.0, -7.0, -7.0, -7.0, -7.0, -3.445085022719354, -2.322192435864935, -7.0, -3.567285217961632, -3.586249638866042, -2.9289929379588013, -2.393601262762674, -2.348927619178392, -7.0, -7.0, -2.6630062128618666, -7.0, -3.299916512376326, -3.2615602289423533, -3.1421808211559457, -3.7275412570285567, -2.786803984261438, -3.4222614508136027, -2.850479145287359, -2.5287189791351987, -3.1366148865422088, -3.2638726768652235, -3.0148354350727975, -3.629817196018516, -7.0, -7.0, -7.0, -2.1946612311654072, -7.0, -7.0, -2.6153370597431524, -2.89765782100233, -2.3982791687688554, -7.0, -2.73253996230942, -7.0, -3.643156465619706, -7.0, -7.0, -7.0, -3.367894054656778, -7.0, -3.2829618035343353, -3.146283113159587, -7.0, -2.019863713967843, -7.0, -2.788433535176211, -7.0, -3.019012379815664, -7.0, -2.853461603499059, -2.245256522432556, -7.0, -3.824386202318774, -7.0, -3.240133058042887, -1.9422406484836812, -2.912434633375575, -7.0, -3.2656038765850357, -7.0, -3.0346805077668035, -3.783975003412671, -1.831380385916425, -7.0, -3.1416587697865523, -3.5333483150767298, -7.0, -2.6797147174141145, -7.0, -7.0, -7.0, -2.627272730296267, -7.0, -7.0, -3.0276245407121563, -7.0, -7.0, -3.465977368285823, -7.0, -7.0, -3.6634182122526795, -2.248287721868922, -2.396593009974529, -3.1936810295412816, -3.179360261070836, -7.0, -7.0, -2.9103241897893297, -2.246961766528978, -3.6379897807846855, -2.2313967649954636, -2.1070551770361226, -3.122625396909397, -2.363240756276155, -3.241308712641187, -2.848189116991399, -7.0, -3.13756508756235, -7.0, -3.561220678933944, -7.0, -7.0, -2.6247704635184332, -7.0, -7.0, -7.0, -2.6327997957371, -7.0, -3.601734148260105, -7.0, -7.0, -3.577146984827525, -7.0, -2.980571448161674, -2.153676311310365, -3.3880123433641907, -7.0, -7.0, -2.9192873405043827, -7.0, -7.0, -7.0, -3.612571954065176, -7.0, -7.0, -4.2046896204203605, -2.5893667208240703, -7.0, -7.0, -7.0, -3.343014497150768, -7.0, -7.0, -3.7620906057314665, -7.0, -7.0, -3.515211304327802, -2.404833716619938, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5038474053823325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2807526808187015, -7.0, -7.0, -7.0, -3.067467630566799, -3.273488627403873, -7.0, -7.0, -7.0, -7.0, -7.0, -2.583484811154959, -7.0, -7.0, -4.079922532785249, -3.185122539673452, -7.0, -7.0, -7.0, -7.0, -4.317791816053072, -7.0, -3.6888224537429393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5578078557646045, -4.305286865476126, -2.9117177342322664, -7.0, -7.0, -3.856406623801429, -7.0, -4.07523664020612, -7.0, -7.0, -7.0, -3.7144764560755936, -7.0, -3.510129715427748, -4.34609858337099, -7.0, -4.408680821810468, -4.306489362708483, -7.0, -4.345687328898848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7318542123823653, -4.301073422940844, -7.0, -4.039949220939654, -7.0, -4.0935792634395645, -7.0, -7.0, -7.0, -3.4680802174026253, -7.0, -4.335919030990713, -7.0, -7.0, -4.430204098631749, -4.331730892815457, -7.0, -7.0, -7.0, -3.8326153443896276, -7.0, -7.0, -7.0, -4.324261872133069, -2.95005010742846, -3.6599542110524927, -3.8730879855902858, -7.0, -7.0, -7.0, -3.626996959365406, -3.8615543230335403, -7.0, -7.0, -4.224299926079827, -7.0, -4.297826142585328, -7.0, -3.982406928863795, -7.0, -4.03726709456871, -4.319938439980309, -4.37427164327598, -3.6820146380241794, -7.0, -7.0, -4.316222037426816, -7.0, -3.361031612033991, -7.0, -7.0, -7.0, -4.360006132229098, -3.7724500687215876, -7.0, -3.4937621344328145, -2.8238744531843705, -7.0, -7.0, -7.0, -3.2653190965276826, -7.0, -4.346216013155006, -3.6709320156880003, -7.0, -7.0, -4.117702061209315, -7.0, -7.0, -7.0, -3.2686390097338123, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7002420700306993, -7.0, -3.6239725120169965, -4.384443024058778, -4.0088768399046995, -3.2544352796249596, -7.0, -7.0, -7.0, -3.2325584913806904, -4.115693701882753, -7.0, -7.0, -7.0, -3.779820874875269, -7.0, -7.0, -4.328685336983151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.430462069819556, -7.0, -7.0, -3.3408505996186073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3641756327706194, -4.304081029459922, -3.470986875643894, -7.0, -3.245354008546808, -3.1531658615805016, -4.011337799051992, -2.967259886999739, -3.4118814755818088, -3.5418911250960012, -7.0, -2.752982303235319, -4.327440676242755, -7.0, -7.0, -4.37427164327598, -7.0, -4.380717623275317, -7.0, -3.753291899757915, -7.0, -4.3157919753496214, -7.0, -4.0180344027045285, -7.0, -4.400106070428546, -4.307816826662431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.861614054079856, -3.7212436846981767, -4.423737249982329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5369685561577207, -4.365843511533739, -3.371305405219536, -2.463564205754188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4380796338230235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6057000062196667, -7.0, -4.405653656099307, -3.6356680147894007, -4.325905450354342, -7.0, -7.0, -3.5611447675441923, -4.331407049219782, -3.5248178775073047, -7.0, -2.2610149130438777, -7.0, -4.302806962741421, -7.0, -7.0, -3.793964905280631, -4.154241330167298, -4.0897638544916886, -4.1189918001959756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.599961007377962, -4.317415586331099, -4.043735492958779, -4.322136564096103, -2.852345049726324, -4.434664693722909, -7.0, -3.225601410589217, -7.0, -7.0, -7.0, -7.0, -3.499198149854234, -4.353916230920363, -7.0, -7.0, -7.0, -7.0, -2.45081748723977, -3.3487752561911313, -7.0, -7.0, -7.0, -4.399344848180367, -4.371695749117709, -4.30513631894364, -7.0, -7.0, -7.0, -7.0, -4.305265362023449, -7.0, -7.0, -7.0, -4.070905588138982, -3.406604042573899, -3.3582490253904624, -3.8630550617948773, -3.0192717565242306, -4.009110806132213, -4.106972399886674, -3.3847363232927834, -4.404012226182244, -7.0, -7.0, -7.0, -4.358505911490235, -4.104981897748486, -7.0, -7.0, -7.0, -7.0, -4.0389974726186795, -7.0, -7.0, -7.0, -7.0, -7.0, -3.595496221825574, -7.0, -7.0, -2.2703129635463952, -2.083787164527067, -2.215017272177907, -3.5944293846472695, -3.187851649239775, -3.2014982759412427, -2.427063943715794, -1.6580891171752072, -1.6420777761975676, -3.3807989509841128, -2.8757145484344777, -7.0, -2.9201293958827286, -3.1105933696576265, -2.5642714304385623, -1.9036368885651656, -2.2572432976796954, -2.8103213009451276, -3.33248174292299, -2.068650987459734, -3.1595107974562135, -2.35509146725887, -2.787997211610608, -0.8852321221528484, -2.6659207135605842, -3.267406418752904, -3.0556130144779496, -2.5125761664772472, -3.857191730038569, -1.9994329149004895, -2.7868804268938447, -2.807281277268819, -2.7857934390100025, -2.951623914708634, -3.425187657417824, -2.8842564255361953, -2.7752948358246115, -2.7427890498392022, -1.7238471163939972, -3.3341807951817017, -7.0, -3.2291631327218884, -3.3196248838045315, -3.4779408149553697, -3.5331544660607777, -3.530060889683707, -4.3350364406355135, -2.776614663432653, -4.164456954998157, -7.0, -3.826925889164468, -3.0861720208846997, -3.5725295541760693, -4.321971055526301, -3.669558604643371, -4.114026862446869, -7.0, -4.107142105833073, -2.739643331627827, -7.0, -7.0, -3.5645366145556583, -2.900617546897137, -2.8789144981790824, -7.0, -7.0, -7.0, -3.495643434975721, -4.404560059092356, -3.9186529448762197, -4.018520198529056, -3.6004404347082204, -7.0, -3.9069058230743323, -3.2684562775010506, -3.522726715604926, -3.6698745024898027, -3.9511431601075526, -3.234382283672649, -3.0432297769069407, -3.1677168617280866, -7.0, -3.2101157547109618, -3.0352394685131796, -4.361595639318234, -2.8802327790571143, -7.0, -4.367057590612843, -3.300095257323717, -3.269746373130767, -7.0, -7.0, -7.0, -7.0, -3.1852410473078057, -2.861356052170766, -7.0, -3.6363875858131567, -4.000694315866355, -4.328012438855587, -3.440363248545816, -3.7364363439795194, -7.0, -7.0, -3.69810054562339, -7.0, -3.1501633583189568, -4.0697790608815145, -7.0, -7.0, -3.6700204280902877, -4.331771356290927, -4.38008455401153, -3.8365139988906716, -4.0062092405376575, -7.0, -4.307966447028274, -4.009429647995079, -7.0, -4.3564656684754, -7.0, -4.472053991449704, -7.0, -7.0, -2.854809451525546, -2.9035143691536285, -2.1688410903647286, -7.0, -4.345158000269438, -7.0, -7.0, -4.348012638422195, -7.0, -4.322136564096103, -3.4561907848321316, -7.0, -7.0, -7.0, -7.0, -2.8380931384455983, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4629667009097616, -1.8829559936467783, -7.0, -7.0, -7.0, -3.2507045590068007, -3.267614925979812, -4.3068965975393665, -4.301377292349344, -3.9581336756762355, -4.332478857523364, -2.954508910234011, -4.347486138076573, -3.4127591213991164, -4.321950362519417, -7.0, -3.518694858223309, -7.0, -3.1985024450926027, -7.0, -7.0, -7.0, -3.717129377876929, -7.0, -7.0, -3.2126851382937613, -7.0, -7.0, -4.120343562438025, -4.347954169894016, -7.0, -4.317729133728953, -3.6339731557896737, -2.9636607158787847, -7.0, -7.0, -7.0, -7.0, -2.9438138538855756, -3.0454990084378832, -7.0, -4.346509448774761, -2.918800028747105, -4.031125575731565, -3.2740808398686907, -3.3563446054510298, -3.7771729868397044, -7.0, -4.307474643569412, -7.0, -7.0, -4.3761022583701, -4.380283618094059, -3.6850785976925997, -7.0, -7.0, -7.0, -3.182591726772166, -7.0, -7.0, -4.2977167512641525, -7.0, -7.0, -7.0, -7.0, -3.5067586350292483, -3.6244471170144004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3069608628831935, -7.0, -7.0, -4.507828896045528, -3.144781706171568, -3.775919768093692, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3259430428795245, -7.0, -7.0, -4.356580328640258, -3.112585289100924, -7.0, -7.0, -7.0, -4.334956116136851, -7.0, -3.1470030416463004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.720349524086064, -2.2392673332458615, -7.0, -7.0, -7.0, -3.5725295541760693, -3.4001860878367687, -4.723545969628407, -7.0, -7.0, -7.0, -4.716779368873068, -2.708801104616171, -4.7731645347378375, -7.0, -3.846878096517459, -2.866564224322712, -4.245274069329869, -7.0, -7.0, -4.4288310513865685, -7.0, -4.242433752322269, -3.3977488770479587, -4.421381787662514, -4.416265954074959, -7.0, -4.242549709960113, -4.030219092203501, -4.718418641829656, -7.0, -7.0, -4.254322452836917, -4.7193147105421165, -3.421286223713023, -4.7178950800038555, -7.0, -3.9522191382314986, -7.0, -3.9028883034451844, -7.0, -7.0, -4.4377030097263495, -7.0, -4.7272158209084925, -2.4712818196355943, -3.3201303014782138, -3.696130590122991, -3.8589355191353056, -7.0, -4.721414872624389, -4.434289396703876, -7.0, -7.0, -7.0, -7.0, -4.7209692307416224, -4.265588169448128, -4.05703544658085, -7.0, -7.0, -4.432391984779924, -7.0, -7.0, -4.747388499864813, -4.717420836722375, -7.0, -3.3639197310923956, -7.0, -4.0323447224179185, -7.0, -7.0, -4.072771766971065, -4.127590677007958, -4.241936440037947, -4.71610355387604, -3.8322533701970083, -4.022032252601962, -3.738003205183249, -4.139083725519777, -4.125700797303299, -7.0, -2.9245662046369683, -4.439798323663113, -3.6166015302784342, -7.0, -7.0, -7.0, -3.685912654996182, -7.0, -3.789463192347201, -7.0, -3.817611638957548, -7.0, -7.0, -7.0, -3.279837982245049, -7.0, -4.732353545509138, -7.0, -4.270065189874711, -3.136928010655581, -7.0, -7.0, -4.024526714387152, -7.0, -3.6245857321792334, -4.421101895083551, -7.0, -4.031481177240234, -4.440184654070886, -4.270212854896243, -4.722288323541742, -4.044670394919461, -2.869597363597986, -7.0, -7.0, -7.0, -3.854401480650361, -4.246465753063679, -4.133443097549098, -4.268281477192605, -7.0, -7.0, -3.2859342110607686, -4.037983949447127, -7.0, -7.0, -3.4430426687837388, -7.0, -7.0, -7.0, -4.717420836722375, -7.0, -4.317331935445897, -3.9773806058118346, -3.9155119563119665, -3.7514176864921724, -7.0, -3.99392829901039, -7.0, -7.0, -4.724161135149409, -2.917381115415925, -4.765728145110631, -7.0, -7.0, -4.721266376133869, -3.5746903913851122, -7.0, -7.0, -7.0, -4.725086342200653, -7.0, -4.424179013578782, -7.0, -4.43215924174396, -7.0, -7.0, -4.470873354461882, -7.0, -7.0, -2.760084359239955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.547318532678011, -4.718850313114124, -3.807768655253699, -7.0, -4.45374630677039, -2.4526453462368933, -3.818868938770039, -3.0342041035442273, -3.7023600283713543, -4.725143591132016, -4.431033896809084, -4.2489454550567345, -4.7279883338825, -7.0, -3.1941142247242476, -7.0, -7.0, -7.0, -7.0, -4.782042416620554, -7.0, -4.565753396565981, -7.0, -3.7232846023981594, -7.0, -4.457306491666998, -4.72029163965499, -7.0, -7.0, -7.0, -4.756871825857871, -4.731040515294573, -7.0, -3.7324018022389076, -2.6089137703064407, -3.188536250695248, -7.0, -7.0, -7.0, -7.0, -7.0, -4.719555007041931, -7.0, -7.0, -2.7028319885284087, -4.442620852656338, -3.3083175852045503, -2.8604921461811275, -7.0, -7.0, -7.0, -4.2465314060467065, -7.0, -7.0, -7.0, -4.425640172818134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.438984050853466, -7.0, -7.0, -7.0, -7.0, -7.0, -4.41965841096058, -7.0, -4.119198133511922, -7.0, -4.728093939379775, -3.9825651870905556, -2.906095497131669, -7.0, -7.0, -7.0, -3.443654067612905, -3.775197678221991, -2.8388338627535266, -7.0, -2.84728947092095, -4.722304786874328, -7.0, -4.718717536873734, -4.186164961727415, -4.057582431413954, -3.7040718331758637, -3.851113049853365, -4.7672078298343825, -4.725674828273515, -7.0, -7.0, -7.0, -3.5897821032911432, -4.433617844253738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.128512351515452, -3.778585327862962, -4.246875921472082, -7.0, -7.0, -2.789201276386549, -3.995613259978898, -7.0, -3.7044263080176774, -4.41608272151237, -4.7218270966638265, -4.442934207756266, -3.449177857792815, -2.5762477421696715, -3.181851524540416, -7.0, -4.728556675966476, -7.0, -4.7315404180265235, -2.453093451791766, -3.691597150121523, -7.0, -7.0, -7.0, -3.979791099026134, -3.9678988267686317, -7.0, -7.0, -4.4326566786702815, -7.0, -4.729893403963238, -4.418259849029347, -7.0, -7.0, -4.723143590360814, -3.666892211066536, -7.0, -3.392510535867316, -3.704470826766164, -2.6894274050095857, -4.7212086137835625, -2.897438783399574, -3.745768862350299, -4.157962696891443, -7.0, -4.7224529287900365, -7.0, -3.4850664949549346, -7.0, -4.453708112597456, -4.1278253236331075, -7.0, -7.0, -4.130944568044679, -7.0, -4.720754499225801, -7.0, -7.0, -7.0, -2.7676418031828867, -7.0, -7.0, -2.5745451490260423, -2.556136888509495, -2.431700296126159, -3.424048946464159, -1.326839984927838, -2.5557163181878044, -2.6765977445754525, -1.7860040591971704, -2.300466146449801, -3.0367999335587545, -3.2390177847393633, -2.9201293958827286, -7.0, -0.6365434159664949, -2.406637769217446, -3.023192795602583, -2.1644910844766794, -2.421151220118294, -1.6082746126938272, -3.176163635438134, -2.963897960531188, -1.9598460752931772, -2.3315238475872873, -2.429680746621696, -2.1578492750447857, -2.456983802056859, -0.818488609320864, -1.5245601896323777, -2.9036244236153435, -2.3762930992903013, -2.818100471323298, -0.8754081495280539, -2.273348870888125, -2.2698529110122228, -3.4728864095132606, -2.2404044317337615, -2.314178888357582, -2.906041036728826, -2.5799337777611733, -3.167143788623054, -7.0, -3.037882245797163, -2.5756714430644854, -3.8184605047247477, -3.544649299599081, -2.6847975028662603, -4.731024379815688, -2.592071332845231, -4.788239097382168, -7.0, -3.6681281800318333, -2.778391444902281, -3.3954312402469182, -7.0, -3.596085536398726, -3.9867568098008093, -7.0, -3.4394003708137886, -3.553675014594602, -7.0, -7.0, -2.9811038911421357, -2.579879636568188, -2.7761143546073774, -7.0, -4.450664723252152, -7.0, -2.971914517208946, -4.061279028255576, -3.239565356161048, -3.5985306180872705, -4.054823640146561, -7.0, -3.4802225985844752, -2.965273657696096, -3.0364389585099576, -4.74498886151134, -3.9870211101488646, -3.8599409698362095, -2.969196179923055, -3.346781030447889, -7.0, -2.912756426732738, -2.995892805093479, -7.0, -2.8103755332701614, -7.0, -7.0, -3.0660379833117406, -3.8531138935152702, -7.0, -7.0, -7.0, -7.0, -2.2606288508494834, -2.383901844372175, -4.731193772452004, -3.244817292184848, -7.0, -3.6140774783100187, -3.524071415934022, -3.6531079488130422, -4.729051339750031, -7.0, -3.414342707762766, -7.0, -2.844522913823384, -3.8425702387141323, -7.0, -7.0, -2.577343959481118, -4.729715411103169, -3.3343300029005127, -4.421538119690085, -3.605942880164922, -3.5558196830611912, -4.419302990800441, -4.119222886923583, -4.727411111842715, -4.137654721417751, -7.0, -4.013139298635354, -7.0, -7.0, -2.805697049964797, -2.0794247965545014, -1.5910039725437615, -7.0, -4.434073653785051, -3.524244622768923, -4.421381787662514, -4.259131787155348, -7.0, -4.424840817562293, -3.393800752213584, -7.0, -7.0, -7.0, -7.0, -3.042760762022057, -7.0, -3.823580181490171, -4.422335359999594, -7.0, -4.250785826687035, -3.070428626873039, -2.8532514966327533, -7.0, -3.895580385213198, -4.040151199035471, -3.3137617962924364, -2.7582942184040564, -4.1178262411437965, -4.4167652866759886, -2.9951230979538104, -4.729998547283423, -2.408794439291495, -4.037035855706077, -3.382205042064938, -3.9475807493043225, -2.5658561294957485, -3.026926785105189, -7.0, -3.914494268631718, -4.719124035974351, -4.73016834043107, -4.063783560597355, -3.5784345375094544, -7.0, -3.807467375684278, -2.644110200429959, -7.0, -7.0, -3.651726133614305, -7.0, -4.153883431744387, -7.0, -3.226118985903011, -2.963199289389065, -4.724832720466561, -4.422540597322725, -7.0, -7.0, -2.921563734812705, -3.288392965587535, -4.119890696287638, -2.65458560671649, -2.617690610641423, -4.030850593183277, -2.955727278345016, -2.1055305200027217, -3.9041821041340743, -3.832085588672225, -7.0, -7.0, -7.0, -3.9028029475875803, -4.4487295022658, -2.979702664346866, -7.0, -4.25009456618883, -7.0, -3.142190307192792, -4.721546826892598, -7.0, -7.0, -7.0, -7.0, -4.415791055742342, -4.416698742157362, -2.88658095880711, -3.68490245896855, -7.0, -7.0, -3.766098745914636, -7.0, -4.719065987963929, -7.0, -7.0, -4.130446348767577, -4.123949591081828, -3.7295494884361307, -3.4572686093294647, -7.0, -4.419765806330483, -7.0, -3.785922728593503, -7.0, -7.0, -2.0863757697442034, -7.0, -4.720960973800096, -7.0, -3.478967099332149, -7.0, -4.717196014288484, -4.416615547168045, -4.730992107059345, -7.0, -3.4932798661842517, -4.72596877254668, -7.0, -7.0, -7.0, -4.996472268649586, -7.0, -7.0, -7.0, -7.0, -5.000742009326735, -7.0, -4.521395270332305, -2.0688106133725332, -4.238547887681328, -7.0, -7.0, -3.7362105259869303, -3.458501874686394, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7658601693581533, -4.550028490833373, -7.0, -4.1113045292815915, -2.490660190249227, -7.0, -7.0, -7.0, -4.702542542403012, -7.0, -4.697094149742253, -3.0799373127778655, -4.698592003682626, -7.0, -7.0, -4.52105522846, -4.401163509874326, -4.997517439414725, -7.0, -7.0, -4.226238917075984, -7.0, -2.8883171754889676, -4.696203441212152, -7.0, -4.7028482577600945, -7.0, -4.110219223689404, -4.997849268568125, -7.0, -3.8620887659114524, -7.0, -5.002166061756507, -2.3515394543670167, -3.2502316216477674, -4.074145715443282, -4.020978304790254, -7.0, -7.0, -4.705457439875169, -7.0, -7.0, -7.0, -7.0, -7.0, -4.533339835991969, -4.0622605454970895, -7.0, -7.0, -4.704442237268507, -4.996498538049875, -4.540529679695608, -7.0, -7.0, -5.006183552012837, -2.6581522930956862, -7.0, -4.3053771683525195, -7.0, -4.997622254961639, -4.248214474078034, -4.702447770011604, -4.520732378332008, -4.996301478805604, -3.591372872376177, -4.396826789268784, -3.7774182925111446, -4.1064926219915625, -4.701442772773218, -4.399820768420558, -2.81733848745083, -5.009455145234674, -3.9967941582341497, -7.0, -7.0, -7.0, -4.002222235519126, -4.527853219439823, -3.8970219560603634, -7.0, -3.9732933775729475, -7.0, -7.0, -4.996415346163988, -3.361575143217912, -7.0, -5.004901478799332, -5.001002063315146, -4.53576234847312, -3.2247777745222037, -7.0, -7.0, -4.155079984230847, -7.0, -3.509884883455448, -4.698444189830948, -7.0, -4.401835479094576, -4.106513862313081, -4.410895277968898, -4.999556793554726, -3.693673432840502, -2.8384656793906378, -7.0, -4.245759355967277, -7.0, -3.136273450520397, -7.0, -3.9651332556473258, -4.31293015797777, -7.0, -4.998869363882344, -3.5970586317707034, -4.530259478972904, -7.0, -7.0, -3.495305902889453, -7.0, -7.0, -7.0, -4.996992981890705, -7.0, -4.039100679482735, -4.0173964914623195, -3.939085125220391, -4.237065952555404, -4.998939026549519, -4.248410612082095, -7.0, -7.0, -4.699508195883737, -2.995690520245701, -4.420953643599573, -7.0, -7.0, -4.999017383695767, -3.4721939232088554, -7.0, -7.0, -7.0, -5.001036725417776, -7.0, -5.001110373201611, -7.0, -4.7043178510491535, -7.0, -7.0, -4.181324900516111, -7.0, -4.998355256330765, -2.6381982035389635, -4.219763480832674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.667960247051014, -4.997744507802489, -3.9571798173186563, -7.0, -4.01694981309756, -2.335090567509085, -4.045131655797483, -3.4018332745170223, -4.1079600064071435, -4.523928468273403, -4.70371686421357, -4.302569010936054, -7.0, -7.0, -3.6211806108451845, -7.0, -7.0, -7.0, -7.0, -4.554997659078943, -5.003107093215893, -4.303613586003601, -7.0, -4.140676919956626, -7.0, -4.717936655596407, -7.0, -7.0, -7.0, -7.0, -4.7171252127617045, -7.0, -7.0, -4.159854966195215, -2.667603798222223, -3.231884579725797, -7.0, -7.0, -7.0, -7.0, -7.0, -4.998115421830749, -7.0, -7.0, -2.9635883772282843, -4.408892612860078, -3.458963084952302, -2.51940983254529, -7.0, -7.0, -4.9984380774785055, -5.000295219884306, -7.0, -7.0, -7.0, -5.00188508390488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.002109880727161, -2.398842966792188, -7.0, -7.0, -7.0, -7.0, -7.0, -4.998721293602391, -7.0, -4.999039147060988, -4.413077529551733, -4.400546623391249, -4.543177863009376, -3.158436851222544, -5.002252479920538, -7.0, -7.0, -3.6454695755396407, -4.049105987818543, -3.0815600488549695, -7.0, -2.955453008282639, -4.999565488225983, -7.0, -7.0, -5.035645830977186, -4.114873582939299, -4.129758349398127, -4.11361333017611, -4.324854277099497, -5.001348559913318, -7.0, -7.0, -7.0, -3.8026668483425246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.304972809313226, -3.6150917778889546, -4.523338853616795, -7.0, -7.0, -2.6902686922258034, -3.823298943588325, -7.0, -3.5036029866649097, -4.695801150661582, -4.522174617722214, -4.534009174167328, -3.7984520950361382, -2.808421232157792, -3.451705434693038, -4.719497016610582, -5.002878497871973, -5.0089321523893044, -5.004467547322978, -2.2896490591165537, -3.9844536631926446, -7.0, -7.0, -7.0, -3.842584279440326, -4.109160755162784, -7.0, -7.0, -4.40353659220864, -7.0, -5.00358976718914, -4.9979845471666975, -5.015916938047925, -7.0, -7.0, -3.836163705227655, -4.998947733597284, -2.993273089347496, -3.811462114140843, -2.325126873704227, -4.299982082719686, -2.909244961224737, -3.294485488709798, -4.542779796679602, -7.0, -7.0, -7.0, -3.5039140446492345, -4.543273178913283, -5.017004106955629, -4.401525468644719, -7.0, -7.0, -4.160125384843879, -7.0, -4.998747427320433, -7.0, -4.536305872351034, -7.0, -2.871696335031655, -7.0, -7.0, -2.58406577477417, -2.5758631694680902, -2.629774074295825, -3.5209397111548792, -1.1523120753493836, -2.620089685524072, -2.7920351611920013, -2.3118366821075793, -2.3231642439817457, -3.170334064983499, -3.5641247607847664, -3.1105933696576265, -0.6365434159664949, -7.0, -2.56100247768708, -3.110252917353403, -1.955006965141668, -2.440305116263434, -1.967458826165813, -3.1413257861595296, -3.3474657774209113, -1.979424049114706, -2.519712754392714, -2.5619903668492667, -2.321979395394796, -2.391208588858177, -0.7319713505186216, -1.9270555394242939, -2.9060763278487287, -2.3427663427956724, -2.821787019668142, -1.3423384769387705, -2.2520215366540106, -2.79662007329528, -3.6408960461852953, -2.755336465082909, -2.8853366329178582, -2.932795883138276, -2.6915789833449795, -3.1075242462649646, -7.0, -2.8853402755410493, -2.2969874504106382, -3.9129329633004786, -3.8676316115708507, -2.7352794480604565, -7.0, -2.5550186319677652, -5.035629827790439, -7.0, -3.4480429520418703, -2.6246143661621346, -3.183424073896676, -5.001426483564586, -3.410136548836324, -4.244433817983656, -7.0, -3.57355535119803, -3.856949126259041, -4.412258893898136, -7.0, -2.54182344038921, -2.4785406722075933, -2.4619957270926496, -7.0, -4.112194305291189, -7.0, -2.963732558359301, -4.24185764667843, -3.187423422851196, -3.788553296952315, -4.061471328265031, -7.0, -3.3453228946874667, -2.5922392313282705, -2.7944497727116784, -4.710654609665483, -3.8056405409252037, -4.176459219407738, -2.6931633469304495, -3.49899264875909, -7.0, -2.735152816675169, -2.968216018931578, -7.0, -2.437470203359834, -7.0, -4.233059599096587, -3.0712452575312317, -3.927355695635591, -7.0, -7.0, -4.996191962799318, -7.0, -2.5427749755100844, -2.3967256942857986, -4.703244076143745, -3.5002860385469017, -4.696238405394714, -3.5253256032202396, -3.525214026475078, -3.6825705203662005, -5.003141587724114, -7.0, -3.787697956697124, -7.0, -2.8603946675787126, -4.01203958337256, -4.396539324126, -4.702671744161752, -2.7977964379494615, -5.003494998557833, -3.3606607212593573, -3.999635039330251, -3.794143716132249, -3.5011920917584893, -4.521395270332305, -4.0959012792258775, -5.002269761490024, -5.008872584806385, -7.0, -4.083092338711451, -4.695704895512169, -7.0, -2.8560078656920007, -2.0934592796492666, -1.7293426818743685, -7.0, -4.161231060219129, -3.8266132855775226, -4.522492051086991, -5.0070048320815355, -7.0, -5.001461111811095, -3.5221161996177264, -7.0, -7.0, -5.004862829229324, -4.52416235813557, -3.2902992675457483, -4.3962342287858, -3.9226605943560844, -4.522995988963267, -4.220513414767524, -4.400464593466745, -3.3625506487568675, -2.9205688835070207, -4.519512983257626, -4.3104128948315825, -4.40647630890183, -3.5258176385229847, -3.0136990008982516, -3.8842680192180294, -4.520059730604128, -3.063178290213317, -7.0, -2.3957825106707626, -4.161740095202392, -3.4089180208467798, -4.098271561167563, -2.790381335859961, -3.253017489746188, -4.998329099002421, -3.843498548954459, -4.219693653657075, -4.702697579901669, -3.94215692846749, -3.4954532718481337, -7.0, -4.17573954495255, -2.7356420508216597, -7.0, -4.703368770239115, -3.8990759849057426, -4.705953468599973, -4.318676760084946, -7.0, -3.3313995058663104, -3.083991358117948, -4.699863730746263, -4.3981571016442675, -7.0, -7.0, -2.835737134448514, -3.3937164142875456, -4.096253732723975, -2.6974483808191083, -2.729846051566213, -4.003507922770787, -2.981100342697114, -2.4706685145458436, -3.900026619266373, -4.006393297179845, -4.998433718864469, -5.002144454528368, -7.0, -4.536183744069879, -4.7132510690987335, -3.175780637934789, -7.0, -5.002183346765043, -4.999956568380193, -3.151729033249805, -7.0, -4.696849823367915, -7.0, -7.0, -7.0, -4.996686755600171, -4.395077279529279, -3.358265990350011, -4.30275938280919, -7.0, -7.0, -3.8845513831738536, -7.0, -4.997857997491355, -7.0, -7.0, -4.306004469823467, -4.399466041004344, -3.81685321027451, -3.4625103009160636, -4.536642600014271, -4.6977392085535925, -7.0, -3.8629189739820413, -7.0, -7.0, -2.460411189357846, -4.999013030891847, -7.0, -4.707859609285525, -3.4742934117900868, -5.005450789574089, -7.0, -7.0, -7.0, -4.996621107579201, -3.4571709418412215, -5.0015043932368455, -7.0, -7.0, -7.0, -4.276875221131548, -7.0, -7.0, -4.278970693925059, -4.592409947570861, -3.3098766010711036, -7.0, -7.0, -2.704124039236082, -4.629175057540406, -7.0, -7.0, -3.4942855831558868, -2.988648125235751, -3.8886287253852263, -3.805614117901356, -7.0, -7.0, -4.277357044047016, -2.265277762889534, -4.654195800629739, -7.0, -2.7708623790161773, -2.689407646790484, -4.108993244279538, -7.0, -7.0, -4.596322138680332, -4.5885518064856425, -4.105101244549642, -2.8475333646529832, -4.108993244279538, -4.278090224037604, -4.278250442299367, -3.9802988641377226, -3.5952757118020995, -7.0, -7.0, -7.0, -4.598495042273587, -3.4676763944587523, -3.3471792739642363, -7.0, -4.281907896489367, -3.234891248646208, -7.0, -3.1289097316047707, -4.581528692545709, -7.0, -7.0, -3.9858192722715877, -3.194225641306038, -2.2617433682586796, -4.001831028855596, -3.1652922028417336, -3.598034034702018, -7.0, -4.584772080866149, -4.001603924149798, -4.585246349458262, -3.98402071613294, -3.9841558665135035, -4.579257553258723, -4.283108920345892, -3.4092883851801457, -2.6478019710944465, -3.880607825103815, -7.0, -3.521737223361478, -4.577997033811073, -4.154271775993095, -3.3408405498123317, -7.0, -7.0, -3.2828435144698207, -7.0, -3.4519508268511805, -7.0, -7.0, -2.9524824679356727, -3.6928359076142545, -3.979457318097848, -4.1003130949578255, -4.126726516579761, -7.0, -4.005405755074863, -4.310587114890355, -4.11634203918834, -7.0, -2.47438284827198, -3.9121157290788537, -3.232306206383841, -4.1015637886590275, -7.0, -7.0, -3.3373926976485757, -4.29886398819428, -4.138028874733356, -7.0, -3.8087003759166254, -4.584918933640037, -7.0, -7.0, -3.1925953275692116, -7.0, -4.298634783124435, -7.0, -3.6195524378052375, -2.9735044105591664, -4.5834255004065065, -7.0, -4.110544819660737, -3.8902197546518407, -2.2536800143858366, -3.2843179154306097, -4.276588167779985, -4.296138453408722, -4.310640216862898, -4.619938129899724, -7.0, -3.67691797177574, -2.199264367788322, -4.583323488156762, -4.6465703535357274, -4.282780668249126, -3.3136116026561218, -7.0, -4.001895894107419, -3.537934471999746, -4.278136006715478, -4.5841841726968395, -2.568544573112223, -3.7607777873960946, -7.0, -7.0, -2.542861390695394, -7.0, -7.0, -7.0, -3.9771632326126296, -7.0, -2.7667392071108186, -4.32990612340021, -3.809929885460897, -2.991215769578708, -7.0, -3.8076509790725868, -4.578237961160632, -7.0, -3.986402202925147, -3.169077441109013, -3.4680222264940914, -7.0, -7.0, -4.584568664243272, -3.4966168337945307, -7.0, -7.0, -7.0, -4.589793271836795, -7.0, -3.987856115558465, -7.0, -4.299790489253733, -7.0, -7.0, -4.05043776144578, -4.5920545601729215, -4.582847113905814, -2.295800343216146, -4.280760426326267, -7.0, -7.0, -4.5849754022565214, -7.0, -4.279507247601757, -7.0, -2.7295268685288185, -7.0, -3.547428546724752, -7.0, -3.675462635556488, -2.079648086757684, -3.107899317144212, -2.597322560864555, -2.980943597662544, -3.5482553731774353, -3.3685165806453545, -4.114010161703462, -7.0, -4.5881932465586495, -4.591220479634285, -4.142577160920535, -7.0, -7.0, -7.0, -4.063717935250528, -4.117944868803997, -4.4725443682498565, -7.0, -2.641350150325749, -7.0, -2.713874964044091, -3.583028651429957, -3.8922393433956706, -3.7359409087579105, -7.0, -3.2519625023239493, -3.518481037534457, -7.0, -3.599752109269689, -2.1320969558218037, -2.552707456634642, -7.0, -4.577721524509021, -4.104065814376235, -4.101437735138849, -7.0, -4.582222499269305, -7.0, -7.0, -2.5288208020102343, -3.500774627565994, -2.906591550277436, -2.529386337146879, -7.0, -7.0, -7.0, -3.383422618537694, -4.577951127729755, -4.579291879863469, -3.642409556693114, -3.8929178678308505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.748040522552098, -7.0, -7.0, -7.0, -7.0, -3.885496915855738, -4.282746696970947, -7.0, -3.9824973691977124, -4.023190707213023, -7.0, -3.257178408417606, -2.8562335049184115, -3.291468753334798, -4.277609214304091, -7.0, -2.5711751665451406, -3.1038809318054197, -2.0258996031849703, -7.0, -2.3959134876036994, -7.0, -4.5805828768143675, -4.103906298088718, -2.7586442281355095, -4.155133521965051, -3.043605512125445, -3.424799994656599, -4.6463449013162945, -4.5905966532564, -7.0, -7.0, -7.0, -4.1276230495980295, -4.301767669438014, -7.0, -7.0, -7.0, -7.0, -3.6886978416536516, -4.577641134695527, -3.341687267347663, -2.9280827651572063, -3.7431176252147416, -3.758013840531501, -3.5906858261907315, -2.113836231826141, -3.353685468703508, -7.0, -3.0367823942793577, -4.101724167515184, -7.0, -4.138228993454836, -3.8158101067486827, -2.4650249966173132, -3.0277143177619745, -3.860128296542201, -7.0, -4.308809768641485, -3.3677833169346525, -2.4260327392136625, -3.537092242214232, -7.0, -7.0, -7.0, -3.8559126891882447, -3.3168506299260505, -4.280760426326267, -7.0, -3.902459802999296, -7.0, -4.295292143016351, -4.5818814213581875, -4.627160952374775, -7.0, -4.587138261511774, -3.919381469280224, -4.584387769446955, -3.576126791570625, -3.299000890190924, -2.9962720047293314, -7.0, -3.639067930567106, -2.983371577045491, -3.52270499273475, -7.0, -7.0, -4.278970693925059, -3.9117965904372523, -3.2574085565304025, -4.328766829591525, -7.0, -7.0, -7.0, -3.822375148347866, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3742678477862706, -4.577250458079471, -7.0, -1.615575264152138, -2.1433481265648875, -3.4469796237545136, -2.591379655630742, -2.851131100146211, -2.0028711621238684, -2.1982852175720424, -2.747594572531689, -1.494460637807906, -2.022059193165288, -2.3023797440604157, -2.5642714304385623, -2.406637769217446, -2.56100247768708, -7.0, -2.7025345217164407, -2.648623280773163, -0.9880076090941453, -2.3932614214511165, -2.2132900199790764, -3.7688177429936056, -2.831494189272503, -2.4700712032583296, -1.8028615604132865, -2.2905603916711716, -3.768889578891181, -2.177159713164186, -2.8513988476154615, -3.1655960082919816, -1.5774993553963323, -2.0473773557579658, -2.6892164429333363, -2.9875396517154216, -3.007049865423465, -3.0372825946866087, -3.278982116865443, -3.204555997008698, -2.4783935864814053, -2.3978735087320993, -2.078035082812725, -4.58601311649554, -2.379971981059453, -2.406878962573308, -2.3925803667445065, -2.8355554343211464, -3.0434215987515607, -3.694638098784492, -1.9962281749156106, -3.594530662789344, -4.005116136020933, -2.320186764043377, -2.5535517441075415, -2.103917521649834, -7.0, -2.450127508295634, -3.529222990264051, -7.0, -3.525164458378011, -2.8701540091435267, -4.146138375899948, -7.0, -2.7919448265559264, -2.140935356902671, -3.080398694355803, -7.0, -3.847500682027998, -4.581653887176893, -1.584075686912433, -3.858958054718006, -3.8115690484294324, -2.397132711912124, -3.8281441073037863, -7.0, -2.8104640202477995, -2.628036885368468, -2.8167527448722613, -2.5387173259661746, -2.8151564335444066, -2.6522762548686236, -2.2203232226446072, -2.6977548360067924, -7.0, -1.9190176999342903, -1.577950984534137, -3.4081445287928753, -2.8478625703283527, -7.0, -2.8150081817089876, -2.7286559894768234, -3.074747891283198, -4.278593568241134, -7.0, -7.0, -3.879921229553079, -2.9033459813889246, -1.692277730333473, -4.297059824075058, -2.1505180290920993, -3.538413768461401, -2.8446546561248995, -1.8987911888062636, -2.3922351600507605, -3.993072328895638, -4.58029758843657, -2.8836208828885987, -3.8796462871127257, -1.7942502416106776, -3.154812096658478, -3.5041195694658587, -2.5334404683641023, -1.783371722611579, -2.951701707062042, -2.6081000254382913, -2.806891904522298, -3.1509950913066977, -2.2429367436982206, -3.327654040806735, -3.092618786621763, -3.55135017418428, -3.910656415587733, -4.100025730107863, -1.9833146731753937, -3.9765104594534497, -3.9775521394123414, -1.9712042822210618, -1.4198155884716908, -1.6962648783645868, -4.100370545117563, -2.231029638923225, -3.4864965980488223, -2.9942381684952073, -4.303962418375775, -4.099876225207085, -4.590886398373238, -2.5662357477435127, -4.101036412174182, -3.403417959654622, -2.606238741465192, -7.0, -2.3219906037929525, -3.8836954961302164, -2.6872613462435067, -4.110297838172837, -2.929555153595555, -4.11651919378264, -2.0011879629820015, -2.050269725144891, -3.5781920805402576, -3.656662407539732, -3.8306741933963115, -3.2726592166607227, -1.8353730173054152, -3.0256471576060306, -3.349014550823123, -2.1161420690114334, -4.596487133736544, -1.581531830238294, -3.604528441456295, -2.1164603876093295, -3.1430259587562195, -3.038654218474643, -3.285351804567883, -7.0, -2.5849265976686113, -3.2387302111440825, -4.596718021556566, -2.854007215310917, -2.6684532822414764, -7.0, -3.2770608311398055, -1.7211625537518984, -3.2196683385331144, -2.881307826428729, -2.0847449955525903, -2.777480925923896, -2.553515879304976, -3.357710695004818, -2.414328326814164, -2.081597839444891, -3.1739143398014065, -2.3047285625735836, -4.578432899740808, -4.100359055693578, -2.428490722523472, -2.408120326456059, -4.108407151772364, -2.5011027525524465, -1.7151679913006146, -2.654917498508147, -1.8854265297985533, -2.361365722754338, -2.287780807637947, -3.7584360480054384, -2.7302020406314362, -3.8935842363360282, -3.878498816349271, -3.319355941066902, -3.2424793108010457, -2.324666910859278, -7.0, -4.29169067749809, -7.0, -1.8492098198301976, -4.584952815690992, -2.8644654403162026, -4.577905216795529, -3.9756500498329994, -2.9984887718285296, -3.675239720870955, -3.4033264618175827, -1.8255940093165168, -2.576553798431761, -3.553463748891934, -7.0, -2.9390538498961036, -4.579943570379943, -4.58155145789047, -7.0, -4.105612359686785, -3.9978339925302993, -7.0, -3.037045218591266, -2.3784689561522443, -3.9228603433350857, -3.629522858845675, -7.0, -3.6560129752094572, -4.281737671706917, -7.0, -2.7573327528430465, -7.0, -7.0, -3.24757837069717, -2.3736671551606547, -3.5594713511516147, -7.0, -7.0, -7.0, -7.0, -2.3604532331928016, -4.590997787350715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.068961297505777, -7.0, -7.0, -7.0, -7.0, -3.1514523585967154, -7.0, -7.0, -7.0, -7.0, -3.8468729474623116, -3.6273658565927325, -4.451970549629459, -7.0, -4.402106556827201, -3.166526206590297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.195115185724885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058445005444395, -7.0, -3.381716596708923, -7.0, -7.0, -3.87989832433001, -7.0, -3.6193194667848867, -7.0, -7.0, -4.075382701327236, -7.0, -7.0, -3.1312079111287887, -4.368937374244523, -4.456791008541905, -7.0, -7.0, -4.335437840434784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.326594080702326, -7.0, -7.0, -4.063051745747089, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4885168740534303, -7.0, -4.058217178825713, -7.0, -7.0, -3.9719249491841913, -4.3553173987845595, -7.0, -7.0, -7.0, -7.0, -4.073993133323909, -7.0, -7.0, -7.0, -3.7748019919787903, -7.0, -4.191255342246265, -7.0, -7.0, -7.0, -4.350015298234692, -7.0, -7.0, -7.0, -4.540604732747191, -4.335698551498222, -7.0, -7.0, -4.477280466842588, -7.0, -7.0, -7.0, -4.395710709035136, -3.8700232918953947, -7.0, -7.0, -7.0, -7.0, -3.748672460388167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.550093762080741, -3.2756090800864244, -7.0, -7.0, -7.0, -4.2981614375932145, -7.0, -4.067981658220164, -4.391693577036909, -7.0, -7.0, -3.9088387443656756, -7.0, -7.0, -7.0, -2.401360691767257, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495488833107507, -7.0, -4.241372130158436, -2.957316474397634, -7.0, -4.1487876840563125, -7.0, -7.0, -7.0, -3.4254119356933157, -4.436242180871562, -7.0, -7.0, -7.0, -4.14157518330082, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.348913033546515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.984857221809016, -7.0, -4.297465046609606, -7.0, -7.0, -3.0918665954520934, -7.0, -4.404149249209695, -7.0, -4.344451223686138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.328185860813199, -7.0, -3.9093955459671053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.936704709634012, -3.7438232216037504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.179461076912763, -7.0, -3.5330599332841146, -3.6158084723619432, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.906113825179055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.857975419541879, -7.0, -7.0, -7.0, -3.6552825351772134, -7.0, -7.0, -7.0, -3.6153607781848502, -7.0, -2.687799594320013, -7.0, -2.9814017743269394, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1721064777924965, -7.0, -2.976112707149161, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6852190769087634, -7.0, -7.0, -7.0, -3.2290694305991696, -7.0, -7.0, -4.123895177078786, -7.0, -7.0, -7.0, -7.0, -3.2951124104145713, -3.899163641477219, -7.0, -7.0, -7.0, -3.660542956258607, -2.8235708713982426, -3.8451445690733057, -7.0, -7.0, -7.0, -3.817449674494178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9163311004140837, -7.0, -3.447524488915304, -4.653029106272008, -3.1832038591808423, -7.0, -3.9507217509858714, -3.7744822068760837, -7.0, -7.0, -7.0, -7.0, -4.079651477073845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6403157705629567, -7.0, -7.0, -2.8321095614303697, -2.5079819551578586, -2.753205469435666, -3.352533321427612, -3.3809585499884216, -2.8807741808299814, -2.577678072403625, -2.02956215102457, -2.7423955234251247, -2.6909074552603007, -3.3103569312843244, -1.9036368885651656, -3.023192795602583, -3.110252917353403, -2.7025345217164407, -7.0, -2.529458729595605, -2.667913409733178, -3.216665841629038, -3.044910377574292, -2.5709199550197708, -1.3075349405691423, -2.9608025195287637, -2.20693859196342, -2.7968883756334444, -2.770146448968574, -3.2756666756431567, -2.618692549885404, -3.7556652770726693, -2.50972145474068, -1.4237401874818418, -2.8977740898582307, -2.7313375524452694, -2.824595830071867, -3.2056875899386528, -2.756996236366832, -2.543307363216651, -2.8370991724756154, -2.47998256835454, -3.3585129569787764, -7.0, -2.4773419163258668, -2.7320407640579987, -4.451248989796137, -3.922517860244611, -2.466857181962985, -4.358448838820213, -3.4780973196422216, -4.48297357411599, -7.0, -3.8378588862869516, -2.5063028215430774, -3.881340267564292, -7.0, -3.726328673977254, -7.0, -7.0, -3.427778137224173, -3.1675437784943665, -4.401658972495152, -7.0, -3.2676812852080124, -3.3789970083563663, -1.6504598920741185, -7.0, -7.0, -7.0, -3.702113159927229, -7.0, -4.183839037056421, -3.511763078159342, -4.56913972547246, -7.0, -3.7154287763129235, -3.56374570715459, -3.7334005839920277, -4.390687877285511, -4.090422660853439, -4.430687668976669, -2.8671443585668537, -4.1079219001862795, -7.0, -3.381448022513302, -3.252199023033889, -7.0, -2.8715639825526402, -7.0, -4.388846893599511, -3.03726282403086, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9043943027764954, -3.0355950362195, -7.0, -3.855349523582764, -7.0, -4.351796306897024, -3.6747387007928496, -4.361841115455327, -7.0, -7.0, -3.6392540064600425, -4.324611653328921, -3.5585311860973574, -4.091385542078368, -7.0, -7.0, -3.150078124560676, -4.355355723394707, -7.0, -3.133558866297746, -3.127469258299212, -4.4242771222724, -7.0, -7.0, -7.0, -4.3787793310606915, -7.0, -4.188197016558756, -7.0, -7.0, -3.1344958558346736, -2.8502016121912996, -2.0540071965371163, -7.0, -4.3680450262086765, -4.465680211598278, -7.0, -7.0, -7.0, -7.0, -2.819464511838505, -7.0, -7.0, -7.0, -4.044441758703649, -3.7052819837808864, -4.331852271933605, -3.503050994369906, -7.0, -7.0, -4.351138958581849, -3.878636673026517, -2.794271650788277, -7.0, -7.0, -7.0, -3.508664363052943, -2.865393819355079, -4.030761590951016, -7.0, -3.4537310295042936, -4.3560258571931225, -3.2005143208494475, -7.0, -3.7869110598911204, -4.346059433052574, -4.333165042543883, -3.742175043223677, -7.0, -3.821071148157465, -7.0, -7.0, -3.827837567359185, -3.8663661155186397, -7.0, -4.427875436313166, -3.5706184747312224, -7.0, -7.0, -4.3094065759545295, -4.069631102620343, -7.0, -7.0, -3.5417040232842885, -3.446209130517621, -7.0, -7.0, -7.0, -7.0, -3.5965671087812012, -2.362008176736463, -7.0, -3.327563260187278, -3.243837854588041, -7.0, -3.1292931856342396, -3.5700445384708317, -4.400537989391946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.149304662637318, -7.0, -7.0, -7.0, -3.4527445088929927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8846982859778065, -7.0, -7.0, -7.0, -4.333144876098619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.523694452381668, -2.5318437171325017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5703093854358796, -7.0, -7.0, -7.0, -2.4772904274083833, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5101618655131217, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.672605777753426, -7.0, -4.378851946448881, -7.0, -7.0, -2.581341392791031, -4.712742273917355, -7.0, -7.0, -3.67913426070467, -3.0642984967722686, -4.678809631951962, -7.0, -7.0, -7.0, -7.0, -2.7184633614386025, -4.733486163475413, -7.0, -3.593975822227341, -2.7514837724270707, -7.0, -7.0, -7.0, -4.685822321854299, -4.378461495902037, -7.0, -2.761223080137496, -4.6775704558523765, -7.0, -7.0, -7.0, -4.384084473382559, -4.673122322872762, -3.6942628926579433, -7.0, -7.0, -3.673951199690897, -2.8874289556954906, -7.0, -7.0, -3.607079544728571, -7.0, -4.404876460036331, -7.0, -7.0, -4.39458300002751, -4.6790188494009755, -3.904634411707706, -2.5538419022196304, -3.7376607990666866, -3.69446160677425, -3.545059584694003, -7.0, -4.3753983847779425, -4.691859164364127, -7.0, -7.0, -4.677670814860437, -7.0, -4.6759523910790906, -4.222881142422591, -3.0209970134783997, -4.0702041603125725, -7.0, -4.212604823985944, -7.0, -4.41355959230525, -4.7051621193592945, -7.0, -4.69121414838279, -3.127307918247353, -4.671765079379814, -2.962279967309778, -7.0, -7.0, -4.129883155340622, -4.208468230265617, -7.0, -7.0, -3.612616108978632, -4.676062281090912, -3.7917520352585377, -7.0, -4.683533319875132, -7.0, -2.511100633731271, -3.7947319638135193, -3.374488669017602, -3.972517564662308, -7.0, -7.0, -2.8494374804184424, -4.3877011963908155, -4.400192488592576, -4.371677294808661, -4.083058064691019, -7.0, -4.670941280735775, -7.0, -3.4243759871838835, -7.0, -7.0, -7.0, -4.005935151237362, -3.033343323135224, -4.675356669813541, -7.0, -3.678664029911573, -7.0, -3.343814631766453, -3.6356847625472226, -7.0, -7.0, -4.397322872237093, -4.10302505485856, -7.0, -3.6413678610890368, -2.405156044570522, -4.675274120888021, -7.0, -7.0, -3.6049876209917846, -4.377843321833933, -3.9138579857592846, -3.799797008054908, -7.0, -7.0, -3.4994579639204475, -4.216561735047927, -7.0, -7.0, -3.5211380837040362, -7.0, -7.0, -7.0, -3.972970739945679, -4.068695950887171, -3.4140460663081886, -4.413165598345893, -3.669016325787356, -3.6681910080926476, -4.676117215671485, -2.999130541287371, -4.671163582606086, -7.0, -4.202333898012999, -3.284408172506199, -3.822127198821849, -7.0, -7.0, -7.0, -3.4945612869265563, -7.0, -7.0, -4.684279692743619, -4.680516809381255, -7.0, -4.2035133564685125, -7.0, -7.0, -7.0, -7.0, -4.431074137951586, -7.0, -7.0, -2.6257797467621273, -7.0, -7.0, -7.0, -7.0, -7.0, -4.371990911464915, -7.0, -2.829025671794826, -4.372553009619916, -3.5607366671103913, -7.0, -4.014276862285691, -2.2785020622359897, -3.563015324620983, -2.5334291141562018, -2.6274179354754055, -3.601199598454282, -3.4838724542226736, -3.9033975033507677, -4.683731278618886, -7.0, -4.681675314854906, -7.0, -7.0, -4.2308404614194455, -7.0, -4.14109686377542, -4.684836388525229, -4.835100544787736, -7.0, -4.16354896490181, -7.0, -4.115119364816148, -4.675200730890694, -7.0, -4.6735369590268805, -7.0, -4.238447577141119, -7.0, -7.0, -4.211618830342925, -2.282571977286789, -2.777956017976713, -7.0, -7.0, -4.372534591702954, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9099230813909673, -4.701058275039644, -3.3003635663986217, -2.5964908564561173, -7.0, -4.673932797382339, -4.675063091209669, -3.9007220671142706, -7.0, -7.0, -4.686233958458255, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6730485683168865, -7.0, -7.0, -7.0, -2.2658244592417347, -7.0, -7.0, -7.0, -7.0, -4.199114962043649, -4.073544231160491, -7.0, -4.67632773388132, -7.0, -4.6838482118410445, -4.1178014079973275, -3.060476121176391, -3.163965080750694, -7.0, -7.0, -3.3949313708858924, -3.6439100599024514, -2.731680685657109, -7.0, -2.2631247697617454, -4.376385314272538, -4.673057788321386, -7.0, -4.750006699477232, -3.9370830455786803, -3.346384273825947, -3.56643749219507, -4.249801465031356, -4.38012075426844, -7.0, -7.0, -7.0, -4.69272357270089, -7.0, -7.0, -7.0, -7.0, -7.0, -4.381214388259336, -7.0, -3.8414399210172423, -3.207563090428015, -7.0, -4.691461665039397, -4.681404067277602, -2.77125463769855, -3.8310214644472946, -7.0, -3.6415005507635767, -7.0, -7.0, -4.701403906447556, -3.9057509200197873, -2.5955592041303617, -3.3942239667723677, -7.0, -7.0, -4.696871643812066, -4.386614880845291, -1.8954910820060986, -3.65168981681185, -7.0, -7.0, -7.0, -3.6374980684202, -4.226617087636269, -7.0, -7.0, -4.690054246427676, -7.0, -4.685840227213275, -7.0, -7.0, -4.676135525654282, -7.0, -4.226745934188872, -3.1440519712151684, -3.1483381904833547, -3.4880661257471295, -2.878622355982108, -4.199060042514597, -3.4655150366516616, -2.8288274539936142, -4.719115743876443, -7.0, -7.0, -7.0, -3.9986428830113456, -4.720101393614298, -7.0, -4.685884987381299, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.405030301512223, -7.0, -2.7849514424392368, -7.0, -7.0, -2.801708531564807, -2.630498155568272, -1.7055071799719737, -3.2413918876652534, -1.7169891311275722, -2.167229322896238, -1.7387471884369516, -1.101724446438007, -2.4540304303616693, -2.6116374150164035, -3.359361102738486, -2.2572432976796954, -2.1644910844766794, -1.955006965141668, -2.648623280773163, -2.529458729595605, -7.0, -2.4464557976539503, -2.7219708250308807, -2.6194129309927985, -3.208415347925735, -2.0059834242647963, -2.6246637460505315, -2.229221599200847, -2.4902690542323005, -2.3343890960940303, -1.8924969718749627, -2.2934016392073215, -3.3061836857929325, -2.275108261152224, -2.6516512549072933, -1.991976621484873, -2.1200579131259305, -2.5805237212934, -3.070722461788708, -2.536842221969682, -2.6260168765633383, -2.8041161229585065, -2.169506085719874, -2.7645248232817266, -7.0, -2.8158208567451415, -2.7773412012531984, -3.5287480250682557, -2.848394408643486, -2.682744445583209, -3.8418865974069525, -2.262992219097479, -3.846777678928908, -4.694728012329395, -3.1967463452310154, -2.760529731427365, -3.372198327443658, -3.7781150576687677, -2.75239125435271, -3.4231721195548976, -7.0, -3.9429170514135157, -3.136938063950316, -4.707902156725324, -7.0, -3.062178711611561, -2.2217850180702277, -2.381293414023723, -7.0, -7.0, -7.0, -3.0310520390949707, -3.0752150588300236, -3.0364553094923483, -3.4433971117592987, -3.7985539713675216, -7.0, -3.5978951269547883, -3.6353950338165637, -2.629580836403122, -4.100405011565889, -3.843412744894163, -3.576143823906798, -3.1438298559228537, -2.231772816968974, -7.0, -2.9119172679839167, -2.792140082434405, -3.920862181229238, -3.024121895656775, -7.0, -7.0, -3.0246508319859577, -3.5649880827373353, -7.0, -7.0, -7.0, -7.0, -2.251144529831166, -2.03567473319776, -4.386231350579525, -3.0903991492554628, -4.371566552483734, -4.081869155842856, -3.473036098059588, -3.0444684886302253, -7.0, -4.37177878380567, -3.569490954348783, -7.0, -2.7933752425966887, -3.7489972662694018, -4.675457541641209, -7.0, -2.2101258729288364, -3.907402402462683, -3.7075446286123026, -4.376695550700234, -3.8967282533689866, -3.572879896515506, -4.374216605428374, -4.074240289442827, -7.0, -4.696749435201623, -4.369271532621027, -3.639256561892579, -7.0, -7.0, -2.9598326973961973, -1.7985669223334704, -1.3470906831899716, -7.0, -4.390573044154603, -3.661355126505084, -4.376522210604112, -4.391860967473324, -7.0, -4.2042466334108095, -3.275683892428806, -7.0, -7.0, -4.68848211387478, -4.681069295110682, -2.8692487305408685, -4.674815229803586, -4.205240463402212, -7.0, -7.0, -4.206520053837808, -2.6131575505462368, -2.5022581338025716, -7.0, -3.998825819040286, -3.997071690906057, -3.2866360787164175, -2.741982383755251, -7.0, -7.0, -3.4332176170782738, -4.208799537474873, -2.1467575146020645, -3.738287162119798, -3.400373910783575, -4.681322659957815, -3.5960286592709947, -3.09377178149873, -7.0, -3.4879780258698023, -4.372856792535229, -4.0840308334294795, -3.6805744785938734, -4.203014745680014, -7.0, -3.875854676687327, -2.231362108759338, -7.0, -7.0, -3.6472329626331015, -4.215725664557567, -4.714631481192941, -4.2023248128295485, -3.4781334281005174, -2.958316395227076, -4.203078237036357, -4.076740541926454, -7.0, -7.0, -2.9764504825069613, -3.112137368289655, -4.074980914982268, -2.8336428415015997, -2.7725716041087916, -3.2874613245929347, -3.1504779795866655, -3.132846465926999, -3.665785597585392, -4.089693208784839, -7.0, -4.6828307381686844, -7.0, -4.228674059346633, -4.406744506234903, -2.643222875279266, -7.0, -4.682911863319907, -7.0, -3.2501515351166117, -4.676593024518754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.022288120503866, -3.681874122128647, -7.0, -7.0, -4.1982445862282365, -7.0, -4.196682704664896, -7.0, -7.0, -4.2116277231686166, -7.0, -3.357128221306194, -3.355393211588941, -3.803550997782215, -4.198620436084584, -7.0, -4.2201778486187775, -7.0, -7.0, -3.105549270910429, -7.0, -4.675943232322869, -4.395754359792703, -3.3683754441361047, -4.212542710296108, -7.0, -7.0, -4.209899096974045, -7.0, -3.3639536750174837, -4.681494501961706, -4.3763122852475576, -7.0, -4.922533433518409, -4.921056682142087, -7.0, -4.921134805306461, -4.922008825977601, -7.0, -4.0229693555731405, -7.0, -4.92350824633259, -2.415454189586277, -7.0, -7.0, -7.0, -3.8477620928900054, -3.2801930003350512, -4.323422277252024, -4.622726788799164, -7.0, -7.0, -4.076114874405903, -2.56447851894988, -4.957334270883196, -7.0, -2.9285151693915554, -2.468038753976699, -7.0, -4.621617624802069, -7.0, -4.929500667570718, -4.6248696977974015, -7.0, -2.7139201123494434, -4.4476695770227925, -4.921608451502453, -7.0, -4.62206370411517, -3.849813396694806, -7.0, -4.6333876490890935, -7.0, -4.4533693105866075, -3.881363903940163, -3.3858045901019573, -7.0, -4.923347656497826, -3.9297713276322854, -7.0, -3.372523889041039, -7.0, -4.924754681634838, -4.9351241922799405, -4.448489891511086, -3.396004368414134, -2.182883525110022, -3.677617090195124, -3.5114297398081336, -3.5882034813125916, -7.0, -4.623135531707399, -4.455813956286502, -4.623352681537992, -4.623766000133931, -4.924868286127619, -7.0, -7.0, -3.7614366627415046, -3.0157513574644783, -4.921847680638257, -7.0, -3.852459661022236, -7.0, -4.247148059443245, -3.5424619110008715, -7.0, -4.932585368076885, -3.3178444461454073, -7.0, -3.608026557407242, -7.0, -4.621384028481653, -3.2000292665537704, -3.8878933772167623, -4.019557633474107, -4.619813078098432, -3.818966517230984, -4.9239586170161465, -4.031580128138727, -4.334589446975158, -4.229185075523011, -4.927514077384218, -2.5121408620073256, -4.635418396663854, -3.5899170373224005, -4.444279064276847, -7.0, -7.0, -3.4963504075587175, -4.3290824690943, -4.3362745688528355, -4.922076385264607, -4.288003160031862, -4.6232027563533284, -7.0, -7.0, -3.331535580012643, -7.0, -7.0, -7.0, -3.5600910314244696, -2.963266621784164, -4.923560036840415, -4.922403639170158, -4.323432588871606, -4.324153794511119, -2.7167645248586396, -3.3221727606893467, -4.920926445630671, -4.6288638395509, -7.0, -4.940626040821762, -7.0, -3.84426410350694, -2.323020011428651, -4.622473071278123, -4.953556748124912, -4.622706082719948, -2.903812409252151, -7.0, -4.154890378645141, -3.7631583477788877, -7.0, -4.923906874020851, -2.8291767675714845, -4.235013047748127, -7.0, -7.0, -2.092587775775171, -4.920624146429142, -4.443528960275062, -4.921051473431425, -3.967350335584652, -7.0, -2.9021377646923416, -3.6447093236185086, -4.0333477919900265, -3.1645808501081465, -7.0, -3.3881252141814175, -4.921197293721232, -7.0, -4.08073983803469, -3.4427840098483937, -3.5720482948792145, -7.0, -7.0, -7.0, -3.3630328295053458, -7.0, -7.0, -7.0, -7.0, -4.921702078597868, -4.324477946722502, -7.0, -4.454463732751138, -7.0, -4.928293412232202, -4.111363344325131, -4.927524340875029, -7.0, -2.0528408093390866, -7.0, -7.0, -7.0, -7.0, -7.0, -4.922253029113159, -7.0, -2.594698610475544, -7.0, -3.4285269489377055, -7.0, -3.9453109893823255, -1.8355276596067984, -3.290686728614926, -2.715988429419859, -3.13160362896786, -3.3133218245947287, -3.3394412482752034, -4.626078479699109, -4.627268539143364, -4.925745138429951, -4.92713929387587, -4.639491469681335, -7.0, -4.942290872747812, -7.0, -4.060008086443594, -4.627898155557663, -4.719795170658459, -7.0, -2.9075813039928935, -7.0, -2.781922511200025, -4.321380918109828, -4.148972634509205, -4.922533433518409, -7.0, -3.6455254266003556, -4.231224848535276, -7.0, -3.7849279012531243, -2.2985376363883403, -2.428868995209785, -7.0, -4.920962915790826, -4.445417369765918, -4.62032347976926, -7.0, -4.923010742963713, -7.0, -7.0, -2.486831362034582, -3.858968070157197, -2.9791831314608577, -2.3638115672846007, -7.0, -7.0, -7.0, -3.67015304519218, -4.921067099376002, -7.0, -4.628695382714024, -4.626448157592176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4620224918544311, -7.0, -7.0, -7.0, -7.0, -4.145874623311332, -4.321639849041686, -7.0, -4.225097252907976, -3.9017108887365266, -4.9283753661847784, -3.7450113221483106, -2.7829403934279635, -3.082118290577008, -7.0, -7.0, -2.791219855377866, -3.1362908663453632, -2.0961008326833244, -7.0, -2.6168996494641785, -4.62369369776916, -7.0, -4.320395570236469, -3.5198654798127627, -4.1683747008805305, -3.060230250097313, -3.529869441846403, -4.95344557213989, -4.449709755571369, -4.923968964875471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626432760627577, -7.0, -3.2667530525395057, -2.910700616959574, -4.226806049500727, -4.330636951476591, -4.0238232536545935, -2.442962687016704, -3.6565629264017003, -7.0, -3.1397642460034194, -4.921493990967949, -7.0, -3.9383695974518065, -3.814391038834804, -2.412453408323028, -3.1083579944145168, -4.17133633956286, -7.0, -4.458698268402751, -3.889057104194969, -2.004684482079553, -3.557709264235409, -7.0, -7.0, -7.0, -3.69204355900132, -3.524610794377594, -4.445682026852679, -7.0, -4.329829924701549, -4.922315356850907, -4.92951088422108, -4.922855156211904, -4.643052744068198, -7.0, -7.0, -3.7356388146361157, -4.0788398805435415, -3.3767032686907177, -3.289848300578164, -2.583308275404773, -4.446904618975314, -3.5025392884840008, -2.882264257327153, -3.7725808366922844, -7.0, -7.0, -7.0, -3.790048796867443, -3.7187849063628957, -4.945375019552896, -4.628496213082012, -7.0, -7.0, -3.6760632984611115, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4493164716242184, -7.0, -7.0, -1.7650177661804587, -1.9130691095581158, -3.5293362299185205, -2.795730019248443, -3.07112912036772, -1.9753776890010881, -2.5739492265770068, -2.9295368177157144, -1.4959910849691558, -2.188454974845586, -2.6605442616845707, -2.8103213009451276, -2.421151220118294, -2.440305116263434, -0.9880076090941453, -2.667913409733178, -2.4464557976539503, -7.0, -2.796983878177528, -2.4433518041285436, -3.636598211193897, -2.1584243944033967, -2.661062804645361, -1.9835239517004495, -2.613034900595505, -3.5708722050483694, -2.8355583253959815, -3.000221522311308, -3.888567493904454, -1.7333563961813585, -2.4760577472967906, -2.9297861091112036, -3.052325839013353, -2.927936449612896, -3.1018393712025105, -3.1919226481853387, -3.376221462289134, -2.01774202765819, -2.556742982046201, -1.9898952783780006, -4.447602438713479, -2.4766193378373846, -1.9185563154786038, -2.70991529382808, -2.8264486037411776, -3.184875061321418, -4.152023201102708, -2.19155526331211, -3.4898647703982753, -3.7883451651521183, -2.3158672158872533, -2.480475187731228, -2.19368304673689, -4.926944073016233, -2.3439553576704903, -3.872709718287906, -7.0, -3.949921569950947, -2.8927573293012037, -3.3507945194988746, -4.924790831742455, -2.3469101691945125, -1.9390632418639553, -2.3268690046942035, -4.922315356850907, -3.9890936926103255, -4.44560939194609, -1.777208921234309, -4.4718244708456, -2.9088040173779457, -2.301511249454415, -3.520059730604128, -7.0, -2.078442368161196, -2.50580220363097, -2.4515092648300474, -3.239644774897795, -2.5244555335652943, -3.2601346916047342, -1.9578130755867933, -2.8639480396224033, -7.0, -1.709296921685804, -1.7967694016330327, -4.238116387877543, -2.269814768180237, -4.922881091208294, -3.2056604003828313, -2.2719945114792024, -2.969042967305813, -4.620796887671208, -7.0, -7.0, -4.620495214805232, -3.2631229746705865, -1.9129909650562347, -4.629292344154639, -2.133184446340877, -4.018851269187425, -3.1284761989930865, -2.0575751273111913, -2.6964074870111, -4.928979299448852, -7.0, -2.9415753859227842, -4.076250230266718, -1.675383716331126, -3.0696431011141416, -3.6930023482613774, -2.7462653713299305, -2.0028151592538186, -3.305730009050952, -3.0328375490074393, -2.994622467273687, -3.310143913579505, -2.4673646965972407, -3.431835679685695, -3.3797042690244474, -4.325854182575375, -4.634729108081331, -4.31863193011725, -2.425760609046802, -4.14317619866439, -3.9675271761766204, -1.8935198289459578, -1.2563143900118, -1.8472706032338282, -4.920879550924153, -2.7730038314669714, -3.6827386830952396, -3.2082811125687116, -4.0303973008567615, -4.619615005742807, -4.227974068680214, -2.6607788719967416, -4.921181672460438, -3.459231261369113, -2.861651828449679, -4.926795029613981, -2.5866818837066483, -3.9689289479655416, -2.939791919790285, -4.448268198264959, -3.4048699840315244, -4.6272378027861425, -2.1387716948758584, -2.2243872833409797, -3.7750067696282232, -3.7601811416654574, -3.856109322304873, -3.41019420529868, -1.8086779637406265, -3.241520540023374, -3.7176445027938008, -2.393382333506496, -4.151374958362349, -1.5069375528633904, -3.5907861238608794, -2.4840330875981227, -3.3583670730080253, -3.2796928632569657, -3.310152400147939, -4.622224387866044, -2.853933601745028, -3.692126038140325, -4.3275939007678375, -2.870247796549128, -3.1127132523362575, -7.0, -3.4725468065517364, -1.6977921195260013, -3.6843116372451057, -3.5152521051810535, -2.451548972465136, -3.18479786250099, -2.932330894115136, -3.6034691597338386, -2.4434754985754674, -2.4707024308114014, -3.4346513050366094, -2.875174992292159, -4.921285803587237, -4.61983392256601, -2.7396053042256097, -2.4620412878321645, -4.924542884841503, -2.7412736245332567, -1.6284648915833002, -2.8869980456710995, -2.1309178720102264, -2.4458894882440507, -2.692189463201086, -3.9786014653596657, -3.1904458346476585, -4.450654465942707, -4.4437478744709065, -3.5428503141820116, -3.8628814005637455, -2.592739228049737, -7.0, -4.927842388843768, -4.925198603055123, -2.0056139668441095, -4.225247235225021, -3.136788119976591, -4.620005851260625, -4.443846870844043, -3.6661486316329417, -3.8798150224247188, -3.8078107326236483, -2.1339934497456396, -2.8361851241746323, -4.326832352550085, -4.9230418536264855, -3.4608978427565478, -4.222960855556619, -4.62166432899245, -7.0, -4.446122763910614, -3.629969946292171, -4.148890444031688, -2.9630655210967376, -2.4520429504065073, -3.900078993301414, -3.6683496721951165, -7.0, -3.5556636584567096, -4.224258466480802, -7.0, -2.801826592423241, -4.924077602515123, -4.9238913499200505, -3.355643050220869, -2.459617346642649, -3.8176518028993587, -4.921535616470937, -4.620786488646187, -3.975880934391388, -7.0, -2.444300082182316, -4.625996286305002, -4.623652376727108, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0385804259615785, -3.090424194174312, -4.181729284882683, -7.0, -7.0, -3.7109462200485273, -4.119024820114783, -7.0, -7.0, -7.0, -7.0, -7.0, -3.326322203654834, -7.0, -7.0, -7.0, -3.5703411380770893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6908056454924374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.709132467226349, -7.0, -7.0, -7.0, -7.0, -3.857030798272624, -7.0, -7.0, -7.0, -7.0, -7.0, -3.402457224691137, -4.107006346381544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9804124616068917, -7.0, -7.0, -3.797059694699971, -7.0, -7.0, -7.0, -7.0, -7.0, -3.694269250936293, -7.0, -7.0, -7.0, -7.0, -4.243905770217522, -7.0, -7.0, -7.0, -4.1068026275996505, -3.56474494800163, -3.640878778701618, -7.0, -7.0, -7.0, -3.522613261968787, -7.0, -3.8340602317133556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.081509327758223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7519203184537346, -7.0, -7.0, -7.0, -7.0, -3.8358807318173946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9192873405043827, -3.620636975138439, -7.0, -7.0, -7.0, -4.33694379239423, -7.0, -4.107209969647869, -4.147738141119988, -7.0, -7.0, -3.9992175655301034, -7.0, -7.0, -7.0, -4.221974676757555, -7.0, -7.0, -7.0, -7.0, -7.0, -4.01500328646168, -7.0, -4.084129242916061, -7.0, -4.042260406689452, -4.245092976101281, -7.0, -7.0, -7.0, -3.4268364538035083, -7.0, -7.0, -7.0, -7.0, -3.748352794991759, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.036948112195279, -3.8652609558675195, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8615045408853748, -7.0, -7.0, -3.6162469698518693, -7.0, -3.868262279215955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7645870600628912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.505041391125465, -7.0, -3.7379277754753852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7931964895580594, -2.9457346643472886, -3.7567121601647715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5601219242961957, -7.0, -2.6982116373229816, -3.182922186436912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.975810900530579, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3152879462998093, -7.0, -7.0, -7.0, -3.8845829776955494, -7.0, -3.867261193187285, -7.0, -3.097384818350209, -7.0, -7.0, -7.0, -7.0, -4.19041574703329, -4.281873856870123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1034273973827675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.266795959846667, -4.055989583385691, -7.0, -7.0, -3.5605551894359078, -7.0, -7.0, -3.864970644137885, -7.0, -7.0, -7.0, -4.075181854618692, -3.376052019499695, -4.1204752166965255, -7.0, -7.0, -7.0, -4.089905111439398, -3.3780820118041603, -4.2409982862153175, -7.0, -7.0, -7.0, -4.195567580659728, -4.150480122270334, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8342564079801793, -7.0, -3.4168320210448146, -7.0, -3.6071600317370307, -3.912157503683096, -7.0, -7.0, -7.0, -7.0, -3.827207675105206, -3.7290027092721902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.667297263882406, -7.0, -7.0, -3.331330453063568, -3.1488921215438626, -3.3103594614375855, -3.110252917353403, -1.720617004776128, -3.484675073321929, -2.252452644220883, -2.650361001088155, -2.7096152113478844, -2.8903092168999485, -3.029945405802438, -3.33248174292299, -1.6082746126938272, -1.967458826165813, -2.3932614214511165, -3.216665841629038, -2.7219708250308807, -2.796983878177528, -7.0, -3.30798069389894, -2.6589648426644352, -2.8277325416887895, -2.497355009989592, -2.8295313775229554, -2.521234258047699, -3.4170424458046416, -1.7601052414855185, -2.0243284317283794, -3.131689936111311, -2.8863277558324616, -2.4153503631086912, -1.6391014484254336, -2.657533887557986, -2.2150157709674456, -2.130296789953377, -2.6262811305909497, -2.7367947549243605, -3.185190724277791, -2.4808205042723865, -4.231291146418349, -7.0, -4.453203634456222, -3.6866775108445764, -7.0, -4.161697342108118, -3.1524829269941343, -7.0, -3.488863681943735, -7.0, -7.0, -3.7970481447755815, -2.879331291507992, -3.8083760439961956, -7.0, -3.9701724724467833, -7.0, -7.0, -3.7324205672969377, -4.225154148849806, -7.0, -4.048325250931222, -3.8874886966978695, -3.533095238874848, -3.614293609984749, -7.0, -7.0, -7.0, -3.585894373560409, -7.0, -4.576984334177281, -4.039731296098691, -3.5777707354189983, -7.0, -7.0, -3.527067191319761, -4.003786622914721, -3.844880838468393, -3.642579921057928, -4.2139690824147, -4.046709722256071, -4.308532400503109, -7.0, -4.291355528330632, -3.509869954380526, -4.133538908370218, -4.06550502309839, -7.0, -4.142733511313519, -4.004562103992181, -4.473165692313548, -7.0, -7.0, -7.0, -7.0, -1.6887661065091777, -2.9514037575639716, -7.0, -4.10124858623158, -3.725870813226274, -3.5978779313445366, -4.027743624288048, -4.093946723890583, -7.0, -4.027920136405803, -7.0, -7.0, -3.4461367166026426, -7.0, -7.0, -4.083645927695585, -3.2889196056617265, -4.081851171517454, -2.820679034221769, -4.049218022670182, -2.757116212742724, -4.2033593015223, -7.0, -4.043283665570575, -7.0, -3.8237349883987313, -7.0, -7.0, -7.0, -7.0, -2.7483025782179413, -3.2763744121854446, -1.4394306513093977, -4.017992737766433, -7.0, -3.9691129189016645, -7.0, -7.0, -7.0, -4.064570292244026, -3.8418285554494096, -7.0, -7.0, -4.093141404751149, -4.063183187967576, -3.2662611035004745, -3.735519058815171, -2.863434394037579, -7.0, -7.0, -7.0, -7.0, -3.129537255261788, -7.0, -3.827885982789856, -4.122445256281956, -2.874082999847761, -3.601426182944163, -7.0, -3.725135413175271, -2.2834978755178232, -7.0, -3.502810470898115, -4.109409790546366, -3.5408923160154697, -7.0, -2.0729726418384122, -2.815015488573993, -7.0, -4.201615582313942, -4.0326590460399245, -7.0, -4.212826586101233, -2.8541921384524613, -7.0, -3.908243677120895, -4.1196352362091355, -7.0, -7.0, -7.0, -4.110219223689404, -7.0, -7.0, -7.0, -3.385010124593375, -7.0, -7.0, -7.0, -7.0, -2.791227076586569, -3.807940721215499, -3.7453480923842912, -2.6434186395347297, -3.79644547273806, -3.7815040572087324, -7.0, -2.4315865711875913, -2.8609665297584645, -3.804990823476288, -7.0, -7.0, -7.0, -3.856698688047469, -7.0, -2.5351468666314307, -7.0, -7.0, -7.0, -3.063971006964762, -7.0, -7.0, -3.2407571939326836, -7.0, -7.0, -7.0, -3.423614458082382, -3.6103939697123133, -7.0, -7.0, -7.0, -3.4368779277106576, -7.0, -7.0, -7.0, -7.0, -7.0, -4.065355601289965, -3.8808326398666764, -3.7204074008031087, -3.6838272261450347, -7.0, -7.0, -4.127007557371327, -7.0, -7.0, -2.394335622779952, -7.0, -7.0, -7.0, -3.6255182289716377, -7.0, -7.0, -7.0, -7.0, -7.0, -3.683737275960329, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3517842322607008, -7.0, -7.0, -7.0, -4.24896585586667, -3.477868562996478, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3387199291037737, -4.439285313665999, -7.0, -3.9106599721863757, -3.049510408263689, -7.0, -4.312621582586981, -7.0, -7.0, -7.0, -7.0, -3.8554772198341833, -4.32132911339302, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.313445370426414, -3.527034493844401, -7.0, -7.0, -7.0, -7.0, -3.9060475723377666, -7.0, -7.0, -7.0, -7.0, -3.8560841179056817, -2.7766536296320776, -4.353531559077762, -4.444247835796075, -7.0, -7.0, -7.0, -7.0, -7.0, -4.321308389775909, -7.0, -7.0, -7.0, -4.370772071705626, -3.2184992868459035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7495430810911663, -3.863127341104386, -7.0, -4.343526753097717, -7.0, -7.0, -4.43633760224632, -4.339411687131677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6356244675962635, -7.0, -3.318778615632663, -3.764120066661152, -4.480768447380031, -7.0, -7.0, -7.0, -3.29211504375923, -7.0, -7.0, -7.0, -7.0, -4.319043566399113, -7.0, -7.0, -3.510842778118108, -7.0, -7.0, -7.0, -4.381241468195862, -4.038123200593378, -7.0, -7.0, -7.0, -4.3270522653266985, -2.728522042246275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.063058005802612, -3.1432703594714555, -7.0, -4.426706406046314, -7.0, -3.7307932833288957, -7.0, -7.0, -3.5987540405401703, -7.0, -7.0, -3.9000173671380716, -7.0, -7.0, -7.0, -2.9012261674137614, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0854047573314234, -7.0, -4.054983106731511, -3.7890869150880286, -7.0, -3.834944974149341, -7.0, -7.0, -7.0, -3.1313396623596357, -4.122019172080031, -7.0, -7.0, -7.0, -4.737248317915621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.136648841036588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.14803165119416, -7.0, -4.112336835745317, -7.0, -4.398634324538392, -2.8348308015347112, -3.5420781463356255, -3.0089371159857716, -3.1969127457115927, -7.0, -3.8680367455497753, -7.0, -4.335197045077561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.337658891026142, -4.1436808323706815, -7.0, -3.244758029080568, -7.0, -4.105612359686785, -7.0, -7.0, -7.0, -7.0, -3.926153731092024, -7.0, -7.0, -3.869173027321683, -3.2129248075868446, -3.584670384464349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8014816677051737, -7.0, -3.124230259036586, -2.7579067817398406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0858174330519823, -7.0, -7.0, -7.0, -7.0, -7.0, -4.316976239321548, -7.0, -7.0, -4.089781514122957, -7.0, -3.508815787764874, -3.164518081003057, -3.8564872128686307, -7.0, -7.0, -3.402444091694104, -3.861892690391446, -3.0594345017074778, -4.31893939156067, -2.8922720043223014, -7.0, -7.0, -7.0, -4.471233018649645, -4.101695532777102, -3.98391181439848, -3.7953759433255803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.450895448690243, -7.0, -7.0, -4.028916761576257, -2.4806634430953562, -7.0, -7.0, -3.3364486150558688, -7.0, -7.0, -4.3736842129970155, -4.034708651341069, -3.0115251330042616, -3.5828773754300287, -7.0, -7.0, -7.0, -4.343920385393226, -2.9456789335701417, -4.434473093213079, -7.0, -7.0, -7.0, -3.928737144597974, -4.077640389544002, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318063334962762, -7.0, -7.0, -7.0, -3.640088468106248, -4.042969073393181, -3.0584774293788746, -7.0, -4.414488672236952, -3.4502456081885424, -7.0, -7.0, -7.0, -7.0, -4.064663855913281, -4.412527744472011, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.049361302724119, -7.0, -7.0, -1.840483998173458, -2.258915580298483, -3.54282542695918, -3.2653802984464786, -3.229748863541315, -3.1180842713160093, -2.608222582423682, -3.1347032871453275, -2.0573576987385342, -3.0851418625206697, -2.842572532981465, -2.068650987459734, -3.176163635438134, -3.1413257861595296, -2.2132900199790764, -3.044910377574292, -2.6194129309927985, -2.4433518041285436, -3.30798069389894, -7.0, -4.371326513861746, -3.1756534538660612, -2.6347375944562934, -1.9586868157082074, -2.7779501415669436, -3.5727343459905363, -3.2461124761404645, -2.9532763366673045, -3.6428995860133027, -1.6629294556640104, -2.3392654630551335, -3.214830930113703, -3.1789130287586653, -3.1005428500124648, -3.056824641809621, -3.4617303869186147, -3.0038752244370777, -2.817683070676147, -2.673680806269375, -3.0354940627547213, -7.0, -2.9245867697212566, -2.79432813146471, -2.8575863955802148, -4.084308112145074, -3.0943546489622813, -7.0, -2.9895792040529185, -4.471174318307337, -7.0, -3.77244090126548, -2.9001993095094276, -3.324938033068716, -4.028754203400251, -3.11632173560914, -7.0, -7.0, -3.7155521111846324, -3.490760871305561, -4.086324231307385, -7.0, -3.225722698684167, -3.0926953967432183, -3.278483007613615, -7.0, -7.0, -7.0, -2.9401368568647728, -3.93387517879672, -3.8579748912130563, -3.386704711065075, -4.258433734309274, -7.0, -3.655650574589957, -2.6390580531496957, -3.041160061689073, -2.2407895320869433, -3.353423308704367, -4.116292201435748, -2.8936120675847437, -3.623705748999227, -7.0, -2.6587743208443566, -2.8559741898563855, -3.8915746229185673, -3.5581746407589234, -7.0, -2.895956337455235, -3.5013908232543454, -3.450227107028447, -7.0, -7.0, -7.0, -7.0, -4.095552896019402, -2.7767543206122136, -7.0, -3.1821540422305667, -7.0, -3.1591057860218807, -2.841369900072221, -3.868977328651328, -7.0, -7.0, -3.4035151549893445, -4.307517431203132, -2.9023039620608135, -3.3775430081774003, -3.839310414647268, -7.0, -3.241100633388555, -3.7372721765355434, -3.608632989490037, -3.7195384391373816, -4.315403504634351, -3.2963951486038936, -4.316075234838397, -3.5402042998420598, -7.0, -7.0, -7.0, -3.1760478274358737, -7.0, -7.0, -2.612172884441745, -2.7207951665970045, -2.182484084353431, -7.0, -3.5742628297070267, -3.851243056390621, -4.020257669505882, -7.0, -7.0, -7.0, -3.1428990655480398, -7.0, -4.0085363002297925, -3.646599751720373, -7.0, -2.776009815603766, -4.315046224922345, -4.332216205878284, -4.323726367155352, -4.015841571684366, -4.335076597314406, -3.1896380429619335, -2.7086671756137686, -7.0, -7.0, -4.362350507594848, -3.735858281244711, -2.7343222637236377, -4.315025199312605, -4.309608877958903, -3.486886811075451, -3.8629459114132914, -2.7554055900734933, -4.0538272438101375, -3.1697111624179057, -4.0287338793493355, -4.316410710725809, -3.82610721152752, -7.0, -3.3301092545928297, -4.312959735882106, -4.340563083333371, -3.814480666721017, -2.644048599831964, -7.0, -3.8122948820149047, -2.8306026140807274, -3.679300678760339, -4.343644880252506, -3.455280024856446, -3.7531807480888677, -4.40134883597978, -4.024588277146048, -2.9653014978707772, -2.908270499495724, -4.0262880620239425, -3.722057771331464, -7.0, -7.0, -3.287088853378247, -3.149988456491476, -4.019178624894263, -4.052867009754181, -2.5714807915691624, -3.862667950228588, -2.8258332489949707, -3.067134195440871, -3.909038704007994, -7.0, -7.0, -7.0, -7.0, -4.383042999305744, -3.7849915231445306, -2.8985836484346144, -7.0, -4.333366655509717, -7.0, -2.718228062128552, -7.0, -4.312959735882106, -7.0, -7.0, -4.007214181076625, -4.307110778380075, -4.008365930205775, -3.1606685746425667, -2.898989122518341, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.346392098317329, -7.0, -4.035789833127757, -3.0640664031375557, -4.083932401638626, -4.3172482684453195, -7.0, -3.762809807339, -7.0, -7.0, -3.0462830464055406, -7.0, -7.0, -4.36383752883614, -2.9885589568786157, -4.348402227577635, -7.0, -7.0, -7.0, -7.0, -2.9861444647105206, -7.0, -7.0, -7.0, -3.5732198271144218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4800948155844096, -7.0, -7.0, -7.0, -7.0, -4.285782273779395, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7927942759520783, -7.0, -7.0, -7.0, -3.98425258295172, -7.0, -7.0, -7.0, -7.0, -7.0, -3.584218112117405, -4.105175109470305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.974551604853553, -7.0, -7.0, -7.0, -7.0, -3.868879446237088, -7.0, -7.0, -7.0, -7.0, -7.0, -4.146143545918482, -7.0, -7.0, -3.664312839896641, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.494766629133628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021103386169764, -7.0, -7.0, -7.0, -7.0, -4.02271698005103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334915948315707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.094191524909532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.43576475926038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.776911743973396, -7.0, -7.0, -7.0, -4.705987656603487, -7.0, -7.0, -7.0, -7.0, -7.0, -4.360820535237942, -7.0, -7.0, -7.0, -4.420731171441572, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9228810912082936, -7.0, -7.0, -7.0, -4.024690862355431, -7.0, -7.0, -7.0, -3.555880064636805, -7.0, -7.0, -7.0, -7.0, -3.9757419081167997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7410727723733213, -7.0, -7.0, -7.0, -7.0, -7.0, -4.456924486401631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.056409320649918, -7.0, -7.0, -7.0, -7.0, -4.016735228992858, -3.617000341120899, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.172748838982743, -7.0, -3.9412131875853214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.410406027068357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.218876715052756, -4.043322137271107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.957166544282454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9800033715837464, -7.0, -7.0, -7.0, -4.374253298101757, -7.0, -7.0, -7.0, -3.6563617665736747, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0841829114204735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.759063188160487, -7.0, -7.0, -7.0, -3.5849183061697203, -7.0, -7.0, -4.348674732191571, -7.0, -7.0, -7.0, -7.0, -4.080373916701309, -7.0, -7.0, -7.0, -7.0, -7.0, -3.880838632192856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8547916940539855, -7.0, -3.9204537932826264, -4.437623742997059, -3.7869953976090103, -7.0, -3.9636461864848433, -3.8847346927599973, -7.0, -7.0, -7.0, -7.0, -3.808818425092124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542240166289717, -7.0, -7.0, -3.7238249526410367, -4.015122141957127, -3.4898379926764123, -7.0, -3.305359332235412, -3.9477113985684684, -3.067979595068381, -2.712556174226849, -3.7208646312144977, -3.794766797940821, -3.84223468634724, -3.1595107974562135, -2.963897960531188, -3.3474657774209113, -3.7688177429936056, -2.5709199550197708, -3.208415347925735, -3.636598211193897, -2.6589648426644352, -4.371326513861746, -7.0, -2.5190513456031844, -3.4928002856307794, -3.3640582653991773, -3.417941993353871, -3.024396422382719, -2.9773469638264354, -2.1672933146999465, -3.4153072922255676, -3.754028474893647, -2.1197886570592095, -2.73360277288189, -2.8482978128953333, -2.6873881317862036, -2.6486260956304704, -2.730176424163481, -2.7194141597025934, -3.5928704078897615, -3.3585296895559917, -4.644487826413858, -7.0, -4.697133403663625, -3.8728625197457576, -7.0, -7.0, -3.129689892199301, -7.0, -4.128958182374678, -7.0, -7.0, -4.008727886652385, -4.022313790681457, -4.229647718448569, -7.0, -7.0, -3.982994454658664, -7.0, -3.964118143151485, -4.123688341667586, -2.2543523893313715, -7.0, -4.305643667345195, -4.261658837583175, -3.6673960621056523, -7.0, -7.0, -7.0, -4.191460329990939, -3.95390459341346, -3.5125577484873114, -7.0, -4.289834121485031, -7.0, -4.078601800355391, -7.0, -7.0, -3.8449118739121406, -4.2868829198267875, -7.0, -4.613302581680263, -4.226587017939536, -7.0, -4.958119328082719, -4.066940585379413, -7.0, -4.239349539006137, -7.0, -3.8384082784941866, -3.4924810101288766, -4.356599435724971, -7.0, -7.0, -7.0, -7.0, -2.1266724494173004, -4.033772123645866, -7.0, -7.0, -7.0, -7.0, -4.096614592305936, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7381130180022746, -7.0, -3.5968169359155904, -7.0, -4.213889470826336, -7.0, -7.0, -3.623456048069934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.929020213693863, -3.8494569513801715, -2.938303308337877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.589055531052344, -7.0, -7.0, -3.598899887063883, -7.0, -7.0, -3.668269405761896, -7.0, -7.0, -7.0, -2.618309641123432, -3.928779787288558, -7.0, -7.0, -7.0, -7.0, -4.122618655023341, -7.0, -7.0, -7.0, -3.295017011881458, -2.886490725172482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.358810172458563, -7.0, -7.0, -4.365338202346941, -7.0, -7.0, -7.0, -3.6612446089593336, -7.0, -7.0, -7.0, -7.0, -7.0, -4.111867146804469, -7.0, -7.0, -3.7646990637983677, -4.265041993273718, -3.707314633588708, -7.0, -3.467562573700709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.592620821321982, -7.0, -7.0, -7.0, -4.444372736248287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.423434930523369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.38794657658479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8799368743581009, -4.550675524721961, -7.0, -7.0, -3.8338597780951167, -3.274435639233948, -7.0, -7.0, -7.0, -7.0, -5.387516180530774, -3.3553336134554423, -4.497066208066182, -7.0, -3.9968162719234086, -2.2509900212015888, -7.0, -5.3879892372522376, -7.0, -7.0, -5.38910581074388, -5.388117194117044, -3.0454643571683375, -7.0, -5.086596492271168, -7.0, -7.0, -5.089175378296633, -7.0, -5.392056468286671, -5.387475252916437, -5.0896614144671775, -4.7859878975004735, -2.5913560510793734, -7.0, -7.0, -7.0, -7.0, -4.014096818000472, -7.0, -7.0, -3.994274909206636, -5.087976522642251, -4.5446455377810215, -2.534285926849549, -4.011288434183536, -4.196554403859942, -3.920379025396492, -5.388158061282813, -5.087476169013141, -4.914415445352857, -7.0, -5.388726249343061, -5.388747541941398, -7.0, -7.0, -4.6942049372013654, -3.047891541225409, -7.0, -7.0, -4.436854986375111, -7.0, -4.697197946843088, -7.0, -5.387653171001787, -5.391415037349662, -2.982230839189202, -5.086571586596441, -4.089576618238777, -7.0, -7.0, -4.057363492797426, -4.913177833990468, -5.388010566014608, -7.0, -3.9935455619442934, -4.911306788581634, -4.136833264807149, -5.392842865757514, -5.088860490105424, -4.275672746981688, -2.885445455825539, -4.915637233884228, -4.40488671783032, -7.0, -7.0, -4.914223237906244, -5.088786157341457, -4.69194038611791, -7.0, -5.387790118275218, -4.297135674099161, -7.0, -7.0, -7.0, -4.00508437344062, -7.0, -4.913759120768689, -4.912160035348151, -4.394162638736977, -3.2654424451322908, -7.0, -5.387902133932986, -5.388972824642233, -5.088187491943992, -3.5584150291351007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8325324419556304, -2.6842172306486525, -7.0, -4.4445513508584105, -7.0, -3.504628359610313, -4.610816253967414, -4.069301538220501, -4.013500808559337, -7.0, -7.0, -3.807901158075168, -4.4376448822061905, -7.0, -7.0, -2.909436977206239, -5.086260145091594, -7.0, -4.609270612890928, -7.0, -7.0, -4.229167994396186, -4.69711595791437, -4.110271447754429, -3.491809766592, -5.0874122525691, -3.607339126707328, -7.0, -7.0, -5.389102264976264, -2.738377285252023, -4.796366154977521, -7.0, -7.0, -7.0, -3.301228351076182, -7.0, -7.0, -4.6910567251326745, -4.912174212399739, -7.0, -5.389332679678082, -7.0, -5.391074553266963, -5.390864484372611, -7.0, -4.285901630834813, -7.0, -7.0, -2.5243952930230646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5685864807261023, -5.387959019712346, -3.544081279789947, -7.0, -4.015621678390377, -2.312517089214689, -4.242477535884849, -3.704684429931342, -4.31423073711276, -4.787244336213674, -4.913699084613634, -4.486407452843279, -5.389932955923036, -5.389049074987845, -7.0, -5.093160679820907, -7.0, -4.79274353560754, -7.0, -4.0597974201950455, -7.0, -4.168841090364729, -7.0, -4.203143419397126, -7.0, -4.618560575660246, -5.388268205795572, -7.0, -7.0, -7.0, -4.697405466651352, -5.390599546802992, -7.0, -4.913801494234826, -2.754528397576881, -3.46437688840658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.339859143610229, -4.9162679078390426, -3.427548654790397, -2.6138682380119556, -7.0, -7.0, -7.0, -4.911871077099282, -7.0, -7.0, -7.0, -5.088616206091066, -5.389600161843851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.441408622070083, -7.0, -7.0, -7.0, -5.086790351904906, -5.388475983084096, -4.689372799616249, -7.0, -4.786415991756133, -4.918007607412871, -5.0889224243582145, -4.552172639639922, -3.707785618912686, -4.787729611178186, -7.0, -7.0, -3.4923083627475915, -4.436007072111521, -2.9972281888728, -5.388523917575625, -2.6037277197660282, -4.911573053768388, -7.0, -5.08689702671432, -4.926664788909112, -4.442059730584969, -4.1472897692695145, -4.116986791074787, -2.3379091740877396, -4.912301785042612, -5.388438697043693, -7.0, -7.0, -4.914588183125443, -7.0, -7.0, -7.0, -5.389213942752022, -7.0, -7.0, -7.0, -4.913379340609699, -3.738584109859517, -4.7870032682937715, -4.789393840735944, -4.787405564322391, -2.223503245137466, -4.555220588225373, -5.387713646550734, -3.5622052695977127, -5.387590907962582, -7.0, -7.0, -4.310764096221262, -3.1369909694464804, -3.945037523575931, -5.397383755657276, -7.0, -5.392549232850399, -5.08967554556239, -1.6788487007501018, -3.7560549085593125, -7.0, -7.0, -7.0, -3.8402281093227377, -4.13861668044601, -7.0, -5.388353459785864, -5.391183960678366, -5.387871910331762, -4.691364443175833, -7.0, -5.395450459484108, -7.0, -7.0, -3.760359354637302, -7.0, -2.9796104478095966, -4.386648109594341, -2.063605011562094, -4.786394685839313, -3.5712306727055516, -2.9090196030296576, -4.79505407293256, -7.0, -7.0, -7.0, -4.137380489000302, -4.4430612262456535, -5.094870998546221, -4.913229103313806, -7.0, -7.0, -4.487926322056887, -7.0, -5.388367667157301, -7.0, -4.792349658966237, -7.0, -3.2965499816921042, -7.0, -7.0, -2.466469087237763, -2.2118507979482045, -2.4442583789957952, -3.554962935849245, -1.91761130935738, -2.5249336259746147, -3.0224682265597034, -1.8940522432779985, -2.5540990629431444, -2.84444447407917, -3.685871647578485, -2.35509146725887, -1.9598460752931772, -1.979424049114706, -2.831494189272503, -1.3075349405691423, -2.0059834242647963, -2.1584243944033967, -2.8277325416887895, -3.1756534538660612, -2.5190513456031844, -7.0, -2.6542912834839876, -2.314727385062696, -3.011685912675127, -2.4797710500612387, -2.2047227509440854, -2.2155813662933226, -2.7338042406523857, -2.5956201195001602, -2.0813620269415427, -1.7810677641337438, -2.3132412519697714, -2.4023711903588105, -3.3643527310171173, -2.4868256069365926, -2.5345762073670035, -2.811921195192953, -2.8604036253437966, -3.3109132647458086, -5.087671410994864, -1.8490797914449508, -2.09235891190916, -3.9850393715220522, -3.903130262435183, -2.605305046141109, -4.691611874214416, -2.6562304897937272, -4.403755191424458, -4.91498979717569, -3.1561980819184527, -2.3760196479500224, -3.305819930078247, -4.690477836866783, -3.1843079803901997, -4.620094394032491, -7.0, -3.528066796747986, -2.794959599574934, -4.549675739824959, -4.786650287881236, -2.4741497243612818, -2.3904087313468914, -0.665172524147913, -7.0, -5.395211031930954, -5.086987679705316, -2.9002119515293323, -4.251006913898273, -2.489382928319023, -3.320602517175809, -4.136261504095268, -7.0, -3.1618252599776655, -3.4408127327621263, -3.051022393331254, -4.071403283531469, -4.034566629756843, -4.552715136150618, -2.7685030703466915, -3.8045784042024806, -7.0, -2.6983874884158876, -2.8540400578056273, -4.790928737920774, -2.2659229226161925, -5.0870321105355965, -4.694526229121204, -3.072540923252852, -3.9018313429827627, -5.3877083108116155, -7.0, -7.0, -7.0, -2.939872919768489, -3.223459310119068, -5.089599585518829, -3.7793967967276476, -4.910640410533396, -4.435711680003175, -3.489377920934706, -4.788841571410247, -7.0, -7.0, -4.0953419884146625, -7.0, -2.8201260797803505, -4.279882704201669, -7.0, -4.487283351877082, -3.1865435658701995, -5.089276165036801, -4.394721279992447, -3.832335018177531, -3.9731616149516933, -3.9991235785945736, -5.087247091536476, -5.3884919618358005, -7.0, -4.278539038134198, -7.0, -4.149213979120526, -5.387551766625729, -4.785642983678979, -2.9498161951184456, -2.250368671567358, -1.8003968660120133, -7.0, -4.91436784225932, -4.447476741667826, -4.543608690196552, -5.391753492606618, -7.0, -4.544356887054272, -3.178634337498273, -7.0, -5.387736767329419, -5.089838020117933, -4.435139782024201, -3.963618202578722, -5.087160045935873, -4.009378294844197, -4.911805458566956, -5.388351683831754, -4.6909381778354655, -4.124708385166029, -3.101215445237254, -7.0, -4.614580866997486, -4.48928156309888, -3.7368159848109257, -3.4282647523308776, -4.689207600753705, -5.387736767329419, -3.460593731895895, -4.788300973396099, -2.4749326096229574, -4.613537039588475, -4.189360455115544, -5.389460241391956, -4.309088736043454, -3.4163873724604112, -7.0, -3.865441910416628, -7.0, -4.691424546532714, -3.920537239907697, -4.3478070778806455, -7.0, -3.93503619755571, -3.2440873084362094, -5.0928872442915525, -7.0, -4.006156544489312, -4.692764104726101, -5.095153653757149, -5.0880669506065805, -3.5989955722341023, -4.052204083450003, -5.088214077441379, -5.388978144868233, -7.0, -7.0, -3.331789628882886, -3.6133272674214836, -5.087602198880414, -4.09052080802686, -3.0787595940382304, -4.487232085266766, -3.4523543754279347, -2.9296423045259363, -4.3532533339846005, -4.613364293402583, -5.388239784079347, -5.389755969543411, -7.0, -4.491254858261633, -7.0, -3.426346824127506, -7.0, -5.38977190127149, -7.0, -3.530888353795369, -7.0, -7.0, -5.086404325780766, -7.0, -5.387626487935149, -7.0, -5.387722539303589, -3.6815647497582704, -4.544480870993537, -7.0, -7.0, -5.388307282618574, -7.0, -7.0, -7.0, -4.911068786880192, -4.6127626711063305, -4.38948149803539, -3.684426983291642, -3.625729137422857, -4.353132539312616, -5.388380098226059, -7.0, -4.489527836582873, -5.087165375759767, -7.0, -2.931909144999707, -7.0, -7.0, -4.489420548875373, -3.6836155489902587, -5.39111337840658, -5.387605140301401, -4.785634090525506, -4.691604806712127, -7.0, -3.6868097001081455, -4.9123655573140255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3457069458605324, -7.0, -7.0, -7.0, -3.625042219271894, -3.0166535452370566, -4.286972645457374, -7.0, -7.0, -7.0, -7.0, -2.6301872080515634, -7.0, -7.0, -7.0, -2.923950049247113, -7.0, -4.274411883425874, -7.0, -7.0, -7.0, -7.0, -3.4047624682427946, -7.0, -7.0, -7.0, -4.276392863069535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504148951133771, -7.0, -7.0, -4.305587802072341, -7.0, -7.0, -7.0, -7.0, -7.0, -4.287488208401288, -4.296928319310418, -2.787654051558582, -4.0178260380304245, -4.416357541374134, -3.6861176659198964, -7.0, -4.281124309449275, -7.0, -7.0, -3.9828137621318627, -3.9830847727377883, -7.0, -7.0, -7.0, -3.2848253676580463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9016733648001973, -7.0, -3.8308451923086118, -7.0, -7.0, -3.8057556510562356, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024690862355431, -7.0, -4.298525595321999, -7.0, -3.2206587681211514, -7.0, -4.1541347529656445, -7.0, -7.0, -7.0, -3.996533561445376, -7.0, -7.0, -7.0, -4.206488559912443, -7.0, -7.0, -7.0, -3.6604860157849677, -7.0, -7.0, -7.0, -7.0, -3.50849864133115, -7.0, -7.0, -7.0, -7.0, -2.334754204184258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.04083959468534, -3.5518738613848733, -7.0, -7.0, -7.0, -3.952945113862972, -7.0, -4.017951068830742, -7.0, -7.0, -4.2799405728395525, -3.977609302226758, -7.0, -7.0, -7.0, -3.502710674010765, -7.0, -7.0, -7.0, -7.0, -7.0, -3.179355219664356, -4.068464166454118, -4.032336659845735, -3.7574339899382694, -7.0, -3.232165670553036, -7.0, -7.0, -7.0, -3.5655822041542033, -3.5484420673337063, -7.0, -7.0, -7.0, -3.723118942779991, -7.0, -7.0, -7.0, -4.291168975715262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.107125138222283, -7.0, -7.0, -3.175413721180739, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5734518220354854, -7.0, -3.3077757131389833, -7.0, -3.4902863018778105, -7.0, -3.024336374304124, -2.7944540839567535, -3.583788016689579, -3.2786202444552437, -3.863303028869424, -3.8141143561291253, -4.309906835568681, -4.293914741031102, -7.0, -7.0, -7.0, -4.348830372378482, -7.0, -7.0, -7.0, -3.4767350435053235, -7.0, -7.0, -7.0, -3.998912904358786, -7.0, -4.376175322717834, -7.0, -7.0, -4.273857435371117, -7.0, -7.0, -7.0, -7.0, -3.833932934844275, -2.521416773066945, -2.9530171749931706, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275978986467148, -7.0, -7.0, -2.9862905766469647, -7.0, -3.4201621131797433, -3.133975329628081, -7.0, -3.97377419397058, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9260212381112978, -7.0, -7.0, -7.0, -7.0, -7.0, -4.27916484306227, -7.0, -7.0, -7.0, -7.0, -4.382035062718931, -3.34908316877959, -3.9962927185413215, -7.0, -7.0, -3.742669031778443, -4.303239268651996, -3.416781921212604, -4.281306136741821, -1.4033708818735386, -7.0, -7.0, -7.0, -4.44507463277493, -3.7698018112929326, -4.434297385124508, -3.889170927490876, -4.397227181043161, -7.0, -7.0, -7.0, -7.0, -4.019427873252668, -7.0, -7.0, -7.0, -7.0, -7.0, -4.295435142353147, -7.0, -4.306038816336349, -3.469232742506612, -3.8110832420318603, -4.317520127284809, -7.0, -1.6320143333368453, -7.0, -7.0, -3.6691889913068407, -7.0, -7.0, -7.0, -4.2996380249790755, -2.6525525283351086, -3.72503317572055, -7.0, -7.0, -7.0, -7.0, -2.2950577654310025, -3.56062387454993, -7.0, -7.0, -7.0, -3.676254521729781, -3.0666397361380295, -7.0, -7.0, -4.314183339137378, -7.0, -4.003029470553618, -7.0, -7.0, -7.0, -7.0, -3.568045193345566, -7.0, -3.6753006734237945, -4.150572247668998, -3.2426676169006745, -4.280555608006274, -3.481209652316441, -3.1141174616703298, -4.07923552946522, -7.0, -7.0, -7.0, -3.632963168167261, -3.604118006192035, -3.8902533051545345, -4.3042103864352335, -7.0, -7.0, -4.312473557686056, -7.0, -7.0, -7.0, -7.0, -7.0, -3.153414127210913, -7.0, -7.0, -2.65675206543432, -2.5587877893415656, -3.086620803576045, -3.870033055380932, -2.682690235626249, -2.608851014074864, -2.850493071900963, -1.969168459528491, -2.313568607907434, -3.29301510647291, -3.165738797864829, -2.787997211610608, -2.3315238475872873, -2.519712754392714, -2.4700712032583296, -2.9608025195287637, -2.6246637460505315, -2.661062804645361, -2.497355009989592, -2.6347375944562934, -3.4928002856307794, -2.6542912834839876, -7.0, -2.2272036990455257, -2.6409496943435684, -3.233470670817551, -2.4498226347770364, -2.1015620259249816, -4.005352136486216, -1.841950215529348, -2.7385521486165474, -2.304696536501167, -2.424434094874744, -2.50686913343504, -3.0690583773222135, -2.6320666419822683, -2.724787707588028, -1.8981841623788391, -2.6575404323265794, -3.215130634854388, -7.0, -2.896895724059367, -2.4695912148977635, -3.154423973114647, -3.0515191052522455, -3.1629182646528187, -7.0, -2.664125798067482, -4.445012287887958, -4.3252076894829194, -3.4831496918725606, -2.70245039072442, -2.5047923325915096, -7.0, -2.6135439287814037, -4.090927852581608, -7.0, -3.6856163571494998, -3.221028026628, -4.355451520126517, -7.0, -2.7268285792599825, -2.5604380346856566, -2.8904979072499057, -7.0, -4.359987174441292, -4.274827255438105, -2.7730868841903242, -4.079814130800685, -4.054841184337388, -2.793993985228541, -3.5380330425453947, -7.0, -3.113453102441966, -2.65653375964828, -2.865258990838749, -2.785547323317465, -3.4571372583035815, -3.60929196953529, -2.568444504925961, -3.4835427242299106, -7.0, -2.966861870621276, -2.7905545662675157, -7.0, -3.099655335838334, -7.0, -3.863976783904387, -2.802625019766844, -3.254513550378272, -7.0, -7.0, -7.0, -4.269396182694991, -2.647458205191794, -3.131765267829788, -7.0, -3.8233568364187, -7.0, -3.4542566949442497, -3.3009322684108247, -3.8337206904446335, -4.301854372269586, -7.0, -3.5277955602574043, -7.0, -2.76882167592319, -4.34519723192998, -7.0, -4.304705898212766, -2.695981727762372, -7.0, -3.8777935313390106, -3.8071289555924217, -3.162954824898502, -3.9033432515780624, -4.278181784567518, -7.0, -7.0, -7.0, -7.0, -3.7527703904636067, -7.0, -7.0, -2.3162754078854086, -2.42419057139359, -1.9850832255533275, -7.0, -4.016824493667488, -7.0, -7.0, -7.0, -7.0, -7.0, -4.253338005326106, -7.0, -7.0, -4.009365898346244, -4.292521884574141, -3.102567091434675, -3.799845783427429, -3.2953691485100065, -7.0, -7.0, -7.0, -3.8404668106930764, -2.882873675280301, -7.0, -7.0, -7.0, -3.45673465817014, -3.1826727446541563, -7.0, -4.271121055704133, -3.3337494624819706, -7.0, -2.7471726918545585, -7.0, -3.085488786659366, -4.293141483450931, -3.323939275128193, -0.9967664064449114, -4.277104727283855, -3.534062386452289, -7.0, -7.0, -3.9096629851540183, -3.8131137540078983, -7.0, -4.384514698685653, -3.0423248787407227, -7.0, -7.0, -3.6792234211650037, -4.0198014777812645, -7.0, -7.0, -3.379879362206697, -3.0314277016763533, -7.0, -3.8098738192491894, -7.0, -7.0, -3.4355683335961067, -4.320146286111054, -7.0, -3.620198538893282, -2.5541104258018246, -4.003007906240602, -2.6652190398290867, -2.918857291696986, -2.9060077736235383, -7.0, -4.277655047714709, -7.0, -7.0, -7.0, -7.0, -1.5702069657950393, -7.0, -7.0, -4.285602311285613, -3.051568839187227, -7.0, -7.0, -4.267195203145968, -7.0, -7.0, -7.0, -7.0, -3.2101222446610786, -3.6926927305822153, -7.0, -7.0, -4.278524964737017, -7.0, -7.0, -7.0, -7.0, -4.311160272879129, -7.0, -3.6440022469547033, -3.7745717052805707, -7.0, -4.279461609257673, -7.0, -4.33128554558701, -7.0, -7.0, -2.9014319539092193, -7.0, -7.0, -3.7278664494674896, -3.839100782707153, -7.0, -7.0, -7.0, -4.3070251187186726, -7.0, -3.875620660301091, -7.0, -4.283391697297128, -7.0, -7.0, -7.0, -7.0, -7.0, -4.229528263787672, -7.0, -3.8415972035066765, -7.0, -7.0, -2.727570543332238, -4.1081363805377995, -7.0, -4.530571059737016, -2.8828712516830937, -3.0714962638675525, -4.539163952951567, -7.0, -7.0, -7.0, -7.0, -1.930508951944087, -7.0, -7.0, -3.1013116450211458, -2.448803173921036, -3.4958091474186204, -4.532180884618628, -4.528003465383692, -3.7705329210993614, -4.239074138235893, -4.5330981124594105, -3.6131462965186256, -3.9353182915022433, -4.529597161225425, -7.0, -4.533276237578995, -4.246806220166817, -4.531300053075186, -3.9584205280525184, -7.0, -3.374797209025671, -3.3018212232307826, -3.2802773049196117, -7.0, -7.0, -3.1511491223040866, -7.0, -3.461913898795249, -7.0, -7.0, -4.562197666191757, -3.694203933575552, -3.465308479587306, -2.448595364081614, -3.9551824629011803, -2.9818817925949124, -3.6936060505361743, -7.0, -4.05872962075172, -3.7787901581790777, -7.0, -7.0, -7.0, -7.0, -4.058046230395282, -3.722939325314079, -2.8240267397174676, -4.530186886967461, -7.0, -3.6509385888289296, -4.528312379405361, -3.473588022310713, -4.274053883354042, -7.0, -7.0, -3.0395263052541535, -4.5294175204160725, -3.6478229105357323, -7.0, -7.0, -3.288281171909262, -3.5068984373862233, -4.231278397611435, -7.0, -3.8581761379823445, -4.234314768012676, -4.084123279339492, -4.264806021368701, -4.244611065056592, -3.844949113517317, -2.4188872035926767, -3.3608654723254574, -3.298307137328508, -4.051962449783047, -7.0, -7.0, -2.751241843078004, -3.774541295270132, -3.6153771576934948, -7.0, -3.4996229415662405, -4.536065794512006, -4.528273777167044, -7.0, -3.215047503142592, -7.0, -3.3480735347698563, -4.541416977191859, -3.620425256876902, -2.7103232406700224, -4.534394211412905, -7.0, -4.539189050875863, -4.239887318594856, -2.5220269964024324, -3.934889645032683, -7.0, -7.0, -4.264865026366129, -3.5334485099051594, -4.060067971523982, -3.6415281911320134, -2.4344378504815065, -7.0, -4.604506849267865, -7.0, -3.5179904971151483, -4.539276882190668, -3.515753457160138, -3.970067796549137, -7.0, -7.0, -2.939928231349194, -3.559379888183303, -7.0, -7.0, -2.996350348616368, -7.0, -7.0, -7.0, -4.529763904040117, -4.2270378449302255, -2.8714047098259203, -3.742040221497518, -3.1996546344860612, -3.2798265817940147, -4.5354460332310165, -3.2887919939714223, -7.0, -7.0, -7.0, -3.3710094985094377, -2.737214434244013, -7.0, -7.0, -4.058501943429649, -3.3143588613003385, -7.0, -7.0, -4.546690693184241, -4.064345657162171, -4.529828018849261, -3.6964812039323243, -7.0, -4.553846631726588, -7.0, -4.545900617729224, -4.611096367331743, -7.0, -4.056574560375764, -2.61485036404734, -7.0, -7.0, -7.0, -7.0, -7.0, -4.531185030184496, -7.0, -2.70972002338062, -3.8328919447597904, -3.4400635219066436, -7.0, -3.381611391532234, -2.300023362178051, -3.4226655866872724, -2.4568833994475088, -2.887582139061224, -3.3951515915045425, -3.375712374112721, -2.8257880038594525, -4.068767006668941, -4.5397283057269675, -4.543111543953438, -4.574852754517795, -7.0, -4.578925589458768, -7.0, -3.546275259758089, -4.547454710572725, -4.441538038702161, -7.0, -3.110156642805923, -7.0, -3.4149065282950337, -4.233123078521081, -7.0, -4.5318747110147335, -7.0, -4.111967837206073, -4.249516315801663, -7.0, -3.5984135413909475, -2.6672816919115228, -2.7923809128265353, -7.0, -7.0, -3.8328664197968454, -4.528993787130841, -7.0, -7.0, -7.0, -7.0, -2.637900340212178, -3.338737651026101, -3.289988209900654, -2.4925560800567275, -4.527410765292662, -4.5324231190671025, -7.0, -3.7611005389581424, -7.0, -7.0, -3.7710973064704123, -3.941821886920197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.544601278651145, -2.391442325089044, -4.527784518264025, -4.227256649297079, -7.0, -7.0, -4.5356611526594435, -4.233757362965511, -7.0, -4.535737051730224, -4.27997476431969, -7.0, -3.1964193881874445, -2.779334077665609, -3.1464753323636017, -7.0, -7.0, -2.9529779993305736, -3.116337117195697, -2.248090400539062, -7.0, -2.3852703943099414, -4.23620965371706, -4.531210593459676, -7.0, -3.5551750900198105, -3.309596552000989, -2.8941621612398625, -3.1534083167071616, -4.002133650511155, -4.54241458174664, -4.234340087615185, -7.0, -7.0, -3.956108374541934, -4.254994950511596, -7.0, -7.0, -7.0, -7.0, -3.9417846441215487, -4.527913324054898, -2.98085060800934, -2.996803438696495, -4.238848680362337, -4.079350105514485, -4.065567267015471, -2.215185156768748, -3.9148189804474733, -7.0, -3.39849389779482, -7.0, -7.0, -3.490590487028833, -7.0, -2.744200307271721, -3.084325995016827, -7.0, -4.546801682361427, -4.563884341080175, -3.0592335136550552, -2.1617231590741603, -2.9855547737831674, -4.22698634552522, -7.0, -7.0, -3.3116646514869297, -2.8560430122090255, -7.0, -7.0, -3.6001618428040993, -4.230282835852113, -3.6455696293511517, -4.2316097450225865, -4.583074023956643, -7.0, -4.061377074193888, -3.618977317675097, -3.330971503774443, -3.2363596486015918, -3.229049111241418, -2.871390169322596, -7.0, -3.818170888296688, -3.7237366063718094, -3.31467646842225, -7.0, -7.0, -4.530583859645118, -3.8659208408403645, -3.553529977558765, -4.284960588171913, -4.247838295127875, -4.227719636143868, -7.0, -3.5991792894059005, -7.0, -7.0, -4.535989952876927, -4.576341350205793, -7.0, -2.4724947715607035, -7.0, -7.0, -1.5340678634984088, -2.1103035006659145, -2.0160115495985877, -2.9394612034997856, -2.932171297266403, -2.1835406129076365, -1.9948329128860245, -1.6877806393969483, -1.0650364639268783, -2.5077741221460546, -2.6345475652023325, -0.8852321221528484, -2.429680746621696, -2.5619903668492667, -1.8028615604132865, -2.20693859196342, -2.229221599200847, -1.9835239517004495, -2.8295313775229554, -1.9586868157082074, -3.3640582653991773, -2.314727385062696, -2.2272036990455257, -7.0, -2.369092109159725, -3.2900902865734016, -2.661630051899821, -2.300416865454403, -3.704910051542378, -0.9568458642751151, -2.634907595612564, -2.52297964845796, -2.577427519432756, -2.7899553731353857, -2.943593432768369, -2.892392094254278, -2.69520396043928, -2.2940678038836153, -1.6649368604307129, -2.300187660198306, -7.0, -2.8378006143042986, -2.549569566907775, -3.020531260920681, -2.6163889429844382, -2.8219766055687945, -3.7053015503412405, -2.097787945361475, -3.680133984649043, -4.259916255109018, -3.2790320886972957, -2.1424620454245744, -2.9084850188786495, -7.0, -2.5709391184171992, -3.559406022425555, -7.0, -3.0643368455752453, -2.7712352239514018, -4.578799605747632, -7.0, -2.807501866452052, -1.9501801689771088, -2.660914577702647, -7.0, -4.581517309425811, -7.0, -2.795961136858702, -3.8951240732440984, -3.7027342912041856, -3.1231018793858474, -3.5828933782683268, -7.0, -3.6551064060137053, -2.7879229050489425, -3.0324195952491424, -2.6558292129755996, -2.618276682014942, -2.527585840254779, -2.2148751395299437, -2.3630373261769373, -7.0, -2.438506225611244, -2.671999095322251, -3.0610281561595416, -2.6121464739420484, -7.0, -3.107268464426313, -2.766365628359224, -3.2053848312193485, -4.530161263362409, -7.0, -7.0, -7.0, -3.204029495212759, -1.9476093557914202, -4.550802954195946, -2.6714604371096526, -3.752317396505286, -3.1142772965615864, -2.633302722941081, -2.765937135152177, -4.547553195630555, -7.0, -2.8807575651270136, -4.529109391761361, -2.4632874084964818, -3.5310723014339627, -4.057361762985039, -3.94704140525522, -2.5264329298349275, -3.770287307201907, -3.4643060782515827, -3.361249219040631, -3.834789347763296, -3.101946530502681, -4.0570952896126675, -3.757497251140972, -3.8459905281322375, -3.7184779627626545, -7.0, -3.1068405824589407, -4.529032325426976, -4.22914407968993, -2.3037087626829402, -1.9414629514463753, -1.6675127877368712, -4.226741639919595, -3.5151027924982197, -3.2997770081757754, -3.9353182915022433, -3.8594265299129775, -7.0, -4.241683421140342, -2.7826091089197362, -7.0, -4.05319372760087, -3.5522300511361626, -4.542277546927697, -1.3552594090066894, -4.533644978798763, -3.367666464108184, -4.538912893903674, -7.0, -4.244808836846276, -2.12549665884508, -1.9036270577576777, -7.0, -3.9631028015052774, -4.5628517332249725, -3.2684917546884384, -2.015957669406119, -3.8345605710335615, -4.5303662098847335, -2.5112890475342247, -4.24793646018509, -1.979057017608061, -3.859102254763127, -2.6765763753194163, -3.8435566646554724, -3.6892200372638357, -2.444088188482623, -7.0, -2.5494491496233778, -3.8333128902027824, -4.248194037940857, -3.5976513155803156, -3.426798944023706, -7.0, -3.897352134344313, -1.8524940966254402, -3.9709161076671813, -3.647896190630718, -2.8636975819970516, -3.6551984824411914, -3.7426017027800285, -3.8410214152574884, -2.566006465061365, -2.1815879907462583, -3.5409048153170177, -3.3347301238021214, -7.0, -4.527784518264025, -2.765730627864516, -2.6422714468377064, -4.536798248304418, -2.4338304210375745, -1.922777805741903, -3.4693678549817437, -2.2963622293270944, -2.582784501558062, -3.1150133695865434, -3.778717876156957, -3.9318391094686325, -4.544700412838673, -4.527823164012659, -4.098839777341088, -3.7334151031279044, -2.7944309034001953, -7.0, -4.544811911757776, -4.061226225119115, -2.42052842803183, -7.0, -4.231329390593782, -7.0, -4.227012095991085, -7.0, -4.528865301439568, -4.530263748713028, -2.2626506583095267, -3.3127620973617313, -7.0, -7.0, -4.057285644418214, -7.0, -7.0, -7.0, -4.5336703976909245, -4.552862814292621, -7.0, -3.6634841951143935, -2.635427892595569, -3.9751329846551604, -4.5349774634615505, -7.0, -3.786242554893265, -4.533683106579122, -7.0, -2.639183518940812, -7.0, -7.0, -3.9616583486377155, -2.6042988785196877, -7.0, -7.0, -7.0, -7.0, -7.0, -2.620933784949581, -7.0, -7.0, -7.0, -7.0, -7.0, -4.09429639740537, -7.0, -7.0, -4.137322456100344, -7.0, -3.800166990201364, -3.2072976788831435, -3.3783322773448266, -2.524790536255634, -7.0, -7.0, -2.4391431421511482, -2.9454839722770996, -4.123721006440036, -7.0, -7.0, -7.0, -3.6188844849954505, -2.4359427216196234, -7.0, -7.0, -3.044042990514571, -2.9815994616341035, -7.0, -3.8042076050820413, -7.0, -3.3029181682256157, -3.426998958756537, -7.0, -3.97727638194836, -7.0, -4.098366796439331, -7.0, -7.0, -4.146003933810869, -7.0, -3.3988944070784957, -7.0, -7.0, -3.805534839182783, -3.3777455512976413, -7.0, -4.109814695694399, -3.37211383659506, -2.946091841038187, -3.213597436747359, -7.0, -7.0, -4.18130038026682, -4.124471618919488, -3.3596774133729372, -2.2763438284791606, -3.8683799024767196, -3.124678081714868, -3.259928190374753, -7.0, -7.0, -4.168850903709554, -4.1165745397769165, -7.0, -7.0, -7.0, -7.0, -3.5933137634894505, -3.701211682926409, -7.0, -7.0, -3.316359806957494, -4.0948901970066505, -3.763253242238571, -3.7344797894255772, -7.0, -3.8656072985678236, -3.1014063406271877, -7.0, -7.0, -7.0, -7.0, -3.2485082765704014, -3.846615416837761, -4.105714510570921, -7.0, -3.868203455637116, -4.113776283837032, -4.179120729609299, -2.846449579949132, -7.0, -7.0, -2.3019444805059224, -3.586587304671755, -2.677451625650918, -4.09711842434465, -4.093141404751149, -3.466422722433792, -3.1385553051135826, -2.8562151648112137, -2.147968623792859, -3.8003733548913496, -1.9931308791052327, -7.0, -7.0, -7.0, -4.330393478740346, -7.0, -3.8566684836115352, -4.1295610023090825, -3.733892435884163, -3.7095970127717655, -7.0, -7.0, -4.123786328615372, -2.848416012647067, -3.303651959291475, -7.0, -4.093806775615175, -3.1960840270593827, -2.958844834507418, -2.6185308249743566, -7.0, -3.0309557541293497, -2.4077440864415216, -7.0, -7.0, -7.0, -3.7011989173716975, -7.0, -4.169645049134955, -3.727730982208553, -7.0, -4.113441953965322, -2.5881623506409634, -3.8739306272740444, -7.0, -7.0, -3.0031649931515867, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6565964439829135, -4.239299479126893, -2.44301317756863, -2.8823433932257045, -4.113976758289846, -3.8142031870727573, -7.0, -7.0, -7.0, -3.1375961048304024, -3.5725230978496376, -7.0, -7.0, -7.0, -3.368955945345503, -7.0, -7.0, -4.143046043337588, -3.4305909979730638, -7.0, -4.130365937265207, -7.0, -4.160948480864697, -7.0, -7.0, -4.290702243287854, -7.0, -3.8083797948823843, -3.0479780566846206, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3084790401617297, -3.8036277953448154, -3.1113885483342627, -7.0, -3.1568771206909294, -2.7724390677510367, -7.0, -3.019064338239115, -3.5974209235343935, -4.130044142287605, -7.0, -3.656545368541022, -4.141136090120739, -4.125188384168597, -7.0, -3.910037123553051, -7.0, -3.9193919267738595, -7.0, -3.3660907531790603, -2.9399246544550244, -3.208377364442061, -7.0, -3.775537634780957, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3399976925134327, -3.85171686836248, -7.0, -4.158483112699248, -2.9832126912055705, -2.8029560678922834, -7.0, -7.0, -7.0, -4.096736260462469, -7.0, -7.0, -7.0, -7.0, -3.024658469643913, -7.0, -2.814691432747457, -2.980882286861777, -7.0, -7.0, -4.1101181270103275, -3.5220201655517376, -7.0, -7.0, -7.0, -4.136086097384098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6270199151057425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.141543834220653, -2.954145988829548, -2.674955301826999, -3.2932994029762894, -7.0, -7.0, -2.788221750502334, -3.669967369908504, -2.142461959498398, -7.0, -3.030387005736945, -3.817664512233857, -7.0, -7.0, -3.6393071563607533, -2.986473147467338, -2.142347745144511, -3.389621664607619, -7.0, -2.9851697609193852, -4.113843118937487, -4.098539897992862, -7.0, -7.0, -4.166370901288565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.850125259486936, -3.6118294794983736, -7.0, -7.0, -7.0, -3.29321813423232, -1.7105666632245071, -7.0, -2.6068836655376235, -7.0, -7.0, -7.0, -4.142045148157744, -2.9993791357314246, -7.0, -7.0, -7.0, -7.0, -3.8536069638544386, -2.6689652196894014, -3.509359359920102, -7.0, -7.0, -7.0, -3.292526805507146, -4.207365037469072, -3.805296916157985, -7.0, -4.162803292382675, -4.103050747435957, -7.0, -3.8055008581584002, -2.502942175170398, -7.0, -4.122117536313263, -7.0, -3.4148062795010126, -3.52572876813568, -2.726619352948061, -3.3327795532366213, -4.114344054609816, -3.5602893055163447, -3.9865702106959704, -2.997677564080969, -7.0, -7.0, -7.0, -4.187971701647396, -3.955567497098864, -3.759264833889892, -7.0, -7.0, -7.0, -4.160378481462862, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3861619419931306, -7.0, -7.0, -2.691735876574482, -3.0382532300273724, -3.0538037967190252, -3.208441356438567, -2.8830522639851215, -2.692112196581435, -1.8485896890584994, -2.087105877348507, -2.279458263588633, -2.6304075328867076, -2.537024762287411, -2.6659207135605842, -2.1578492750447857, -2.321979395394796, -2.2905603916711716, -2.7968883756334444, -2.4902690542323005, -2.613034900595505, -2.521234258047699, -2.7779501415669436, -3.417941993353871, -3.011685912675127, -2.6409496943435684, -2.369092109159725, -7.0, -3.481442628502305, -1.9942192749800425, -1.8977249567941763, -2.55837005931667, -2.23503054018388, -2.5799160842572224, -2.4452442714219425, -2.999407376098304, -2.4978983291481995, -2.3126383071751855, -3.3397946214759404, -3.1432602210975396, -3.113522863829351, -0.9851421527466361, -2.555234327252782, -7.0, -3.407073002684905, -3.7104660152370172, -3.448065555627402, -2.8939466075520737, -2.600894204894378, -3.1521965823342093, -2.327137353740817, -4.338356873353703, -7.0, -4.597585501752205, -3.015108160645837, -1.9329058771013887, -7.0, -3.251837240301341, -2.495779447167773, -7.0, -2.8969094467064838, -4.073901558314207, -7.0, -7.0, -3.7192247131031593, -2.7540402045573704, -3.4195335419309956, -7.0, -7.0, -7.0, -3.5943883000660994, -7.0, -4.249204881954037, -3.42380999917332, -4.4543569571548876, -7.0, -4.040641891544537, -3.335647312963058, -4.258864665172021, -3.6011905326153335, -2.827830650428466, -3.418159186999809, -3.703974054821806, -2.5826365539208287, -3.4156076226641474, -2.5371629618741345, -3.3661554207584863, -2.961197677184457, -3.7366614272636336, -7.0, -3.899492196138132, -3.7659085216120016, -4.5011551526205675, -7.0, -7.0, -4.092439911331141, -7.0, -2.310424569709, -1.7993838349774411, -3.8522969658269255, -2.5518671414727314, -2.9862892996576695, -3.0273182383152535, -3.275285754348347, -2.8144897448778106, -7.0, -7.0, -3.0673436774644065, -4.097048965011131, -3.474857031317561, -3.5069377582913672, -4.111564935454498, -4.149311505907915, -2.9404649600696073, -3.6705241577820797, -3.139800402737301, -2.8634880853390756, -2.9046479350221572, -3.6518834713412964, -7.0, -4.114844413145024, -7.0, -3.1051410195295324, -7.0, -2.984507745681445, -4.09684052033139, -4.099991233544684, -2.932203091884407, -2.627250609866013, -1.5312093266203366, -3.792391689498254, -3.5658183139700923, -2.8980075137525616, -4.1192558892779365, -3.4731364734564774, -7.0, -3.65571454961871, -2.470954121333649, -7.0, -7.0, -4.157486989384848, -7.0, -2.7175664928276775, -3.330718078732588, -2.8565699071538484, -7.0, -4.112202690730536, -3.663700925389648, -2.5131368536733767, -2.563797396028862, -7.0, -3.3431271326910226, -3.483672863806311, -1.6116777049205535, -2.1176281732215787, -3.4099331233312946, -7.0, -2.623271290574289, -3.8477576883923312, -2.6675199254122264, -3.694312646223346, -2.6307576146032075, -4.132675849092962, -2.854980412250097, -3.237155148617628, -7.0, -3.349107468372933, -3.8047526021504607, -4.149496233465742, -3.262094964674063, -2.353978137771715, -7.0, -3.1796953833245065, -2.4748004181498424, -3.7297046213121874, -7.0, -3.5071944854321804, -3.8711641328029494, -3.7633281442736357, -4.126131407261984, -2.864147294190161, -2.5260490176773085, -4.12881914219451, -4.123884293460008, -7.0, -7.0, -2.490272090219577, -2.258033898662295, -3.339053735709139, -2.006331374972674, -2.7247329816316608, -3.001486462883789, -3.217878578027433, -2.461009143239449, -3.3730697084061685, -3.4694685478507536, -4.110084422886923, -3.836893516376434, -7.0, -3.099202372435998, -3.74262040632664, -2.5328063591818957, -7.0, -4.138271111964449, -3.3432444303235798, -2.874493650852932, -7.0, -3.8047526021504607, -4.094610863032137, -7.0, -7.0, -3.6191281284699492, -3.4009177230754477, -2.377943380255784, -7.0, -7.0, -7.0, -3.6341076435144934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.916980047320382, -2.574646851788124, -3.7394404803282644, -7.0, -7.0, -2.805330913142769, -7.0, -7.0, -2.4447296125141382, -7.0, -7.0, -4.185117001142592, -2.4909740240681018, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5420569281178227, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7890510200852203, -7.0, -7.0, -7.0, -4.560408824046945, -3.8684680990209865, -7.0, -7.0, -7.0, -7.0, -7.0, -4.326949994165998, -4.452644967679994, -7.0, -7.0, -3.2255688175185697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6308991759102316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.247007093589786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0761851605990795, -7.0, -7.0, -3.5154721662623363, -7.0, -4.457457987982031, -4.429235339626655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2414664304127747, -7.0, -7.0, -4.364944777212948, -7.0, -7.0, -7.0, -7.0, -7.0, -3.447220068979908, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.375864714311806, -7.0, -7.0, -4.349102608563031, -3.9183654379299813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.323850003846802, -4.176857835696882, -7.0, -7.0, -7.0, -7.0, -4.046582950842146, -7.0, -7.0, -7.0, -7.0, -4.652323713973758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9487185272362937, -3.7128404350917226, -7.0, -7.0, -7.0, -3.1783138409662524, -7.0, -4.068797896861347, -7.0, -7.0, -7.0, -4.307314152387912, -7.0, -7.0, -7.0, -3.8650052152360628, -7.0, -7.0, -7.0, -7.0, -7.0, -3.650834630108787, -7.0, -7.0, -7.0, -7.0, -4.450526229129723, -7.0, -7.0, -7.0, -2.7480927765437277, -4.436941451239042, -7.0, -7.0, -7.0, -3.898834838068274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.690334723349453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.462697408101717, -7.0, -4.297946441222536, -7.0, -7.0, -3.9000286541655096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.512123826722944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.637099289431483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4594226460511015, -7.0, -4.533848288291342, -2.885011903141026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.779055089381888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.138849827637302, -7.0, -7.0, -7.0, -3.0644942191796862, -7.0, -7.0, -7.0, -7.0, -4.1162091258034, -4.172748838982743, -7.0, -4.440090074313282, -7.0, -7.0, -7.0, -7.0, -4.371178731816287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.386955759983757, -7.0, -7.0, -3.9994133063420474, -7.0, -7.0, -7.0, -7.0, -7.0, -4.377160490206987, -7.0, -7.0, -7.0, -7.0, -3.284762751307711, -4.146918352521449, -7.0, -7.0, -7.0, -4.119272389514709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9171027120527055, -7.0, -3.519133917830289, -4.352404434139514, -2.808008751906401, -7.0, -4.428620672671939, -4.096930858642897, -7.0, -7.0, -7.0, -7.0, -4.381512174732024, -7.0, -7.0, -7.0, -7.0, -7.0, -4.364044179182894, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021007270859423, -7.0, -7.0, -3.5474923692614233, -2.7541899247820285, -2.347145941412144, -7.0, -2.933414971724668, -4.043637309592571, -3.0689276116820716, -2.690562171664373, -3.465900847365547, -4.478609778601228, -3.913513626432214, -3.267406418752904, -2.456983802056859, -2.391208588858177, -3.768889578891181, -2.770146448968574, -2.3343890960940303, -3.5708722050483694, -3.4170424458046416, -3.5727343459905363, -3.024396422382719, -2.4797710500612387, -3.233470670817551, -3.2900902865734016, -3.481442628502305, -7.0, -3.1296438644866935, -2.540475264195069, -3.6595549297109704, -3.2498720445016467, -3.0522097301280926, -2.5005019364006, -2.5100106099225887, -2.2848187024759126, -3.5748219286222884, -2.4666939907094694, -2.7236415128461675, -3.3674180474093456, -2.910745645079236, -4.489508491577916, -7.0, -3.137986732723532, -3.7750339396089885, -4.451924528420122, -4.400468911217488, -2.7822752388298224, -7.0, -3.621699974221918, -4.483601559279265, -7.0, -3.729074752482558, -3.237334892511582, -3.9907890290468746, -7.0, -3.601734148260105, -7.0, -7.0, -7.0, -3.4992844078926906, -7.0, -4.338695489014784, -3.6593273360246177, -3.3634742633268195, -2.6465529378608714, -7.0, -7.0, -7.0, -3.0106100786713155, -7.0, -3.4218759084509527, -4.211534339415678, -3.967524576101294, -7.0, -4.141961636010401, -3.8331015573439173, -3.2861890569077867, -4.391464411839103, -3.8690438760940067, -7.0, -3.919561825762341, -4.409358189930165, -7.0, -3.712809987468449, -2.8797516081234797, -7.0, -3.3482101573364997, -7.0, -7.0, -4.087518774750445, -7.0, -7.0, -7.0, -4.3227979683463875, -7.0, -3.456821348021599, -3.7451355399585355, -7.0, -7.0, -7.0, -7.0, -2.7893558638643454, -7.0, -7.0, -7.0, -4.117238142139819, -7.0, -3.429043414844925, -4.3932241163612975, -7.0, -7.0, -7.0, -3.355853635810542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.489874142210878, -7.0, -7.0, -4.000665408189577, -4.1197296465874, -3.120664134523185, -7.0, -3.8916675221214505, -4.466333688132342, -7.0, -7.0, -7.0, -7.0, -4.283629087730046, -7.0, -4.327522402716821, -7.0, -7.0, -3.927951770866328, -7.0, -4.349238662688126, -7.0, -3.8573324964312685, -7.0, -4.481413961253745, -3.258110255321881, -7.0, -7.0, -7.0, -4.354838055584639, -4.5392015992941275, -7.0, -7.0, -4.454677205220384, -7.0, -3.46125191780495, -7.0, -3.9126648075972716, -7.0, -4.334051440346892, -3.079543007402906, -7.0, -3.724849087629386, -7.0, -7.0, -7.0, -3.7422536699065936, -7.0, -7.0, -4.500545202798604, -7.0, -7.0, -4.3098749213150755, -7.0, -7.0, -7.0, -4.1957198117305765, -7.0, -7.0, -7.0, -4.325022800270452, -7.0, -3.3829870641565014, -3.893669309799605, -7.0, -3.7679717213816186, -4.133921940423772, -4.055531225050898, -4.0682600937746995, -3.746556361410369, -4.401297125021583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.104845461232334, -7.0, -7.0, -7.0, -3.276921132065774, -7.0, -4.330738358178876, -7.0, -7.0, -7.0, -7.0, -3.8501559224220925, -4.430574884046865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.524266268766978, -7.0, -4.400106070428546, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6754617093945177, -7.0, -7.0, -7.0, -7.0, -4.364813556261336, -7.0, -7.0, -7.0, -7.0, -4.400054211274874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.659906696804346, -2.73148245387053, -4.397627204021875, -7.0, -7.0, -3.4010485392138086, -3.463381000147473, -7.0, -7.0, -7.0, -7.0, -4.655800900961374, -2.971282383756981, -4.720084846541146, -7.0, -4.392855169389535, -2.9388927346460196, -4.361246068497589, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7715176648201174, -4.361246068497589, -4.355365304018832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1690602549929996, -7.0, -7.0, -4.069381308695122, -7.0, -3.9925888608075706, -4.658412098960092, -7.0, -7.0, -7.0, -4.36674038984291, -2.8528922168871693, -3.978235314045796, -3.944457995626289, -3.8623954891178243, -7.0, -4.661130904420943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.208387603795154, -3.687136402800057, -7.0, -7.0, -4.373867870327068, -7.0, -4.700599889320824, -7.0, -7.0, -4.67641923171836, -3.0022344165281387, -7.0, -3.9735157732409796, -7.0, -7.0, -3.8733455175941787, -4.670635429748331, -4.658459776998312, -7.0, -3.8989810036504373, -4.3596837372363515, -4.2031417191119855, -3.780560319410449, -4.191311257590993, -7.0, -2.952604003896067, -4.683380289928945, -3.8391086457313133, -7.0, -7.0, -4.676089749249794, -3.588691788592222, -4.372819981678968, -3.572630359747045, -7.0, -4.07109367343858, -7.0, -7.0, -7.0, -3.9556877503135057, -7.0, -4.372626673477937, -7.0, -7.0, -3.7226718836790575, -7.0, -7.0, -4.362548443294778, -7.0, -3.3763692615312713, -4.184814416196629, -7.0, -4.0694553366895745, -7.0, -4.213659399781825, -7.0, -3.930687109941523, -3.023796701804347, -7.0, -7.0, -7.0, -3.24224136405354, -7.0, -4.20017537681442, -4.086502198970369, -7.0, -7.0, -3.5555377913202615, -3.979966989370279, -7.0, -7.0, -3.510768355278083, -7.0, -7.0, -7.0, -7.0, -7.0, -4.141990345122414, -4.22303708921397, -3.7710654259763947, -3.8503836364759403, -4.660789612079682, -4.417894986250287, -7.0, -7.0, -4.664284616658668, -3.448103143768015, -7.0, -7.0, -7.0, -4.6609602917760835, -3.5784809383880685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.674649910242433, -7.0, -7.0, -4.417629438837392, -7.0, -7.0, -3.1157417527104747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.026508750502279, -4.6581831714879405, -3.6008640363098396, -7.0, -4.398217868234877, -2.8722222919570086, -4.661888372968945, -3.3723771304851287, -4.385829618669783, -4.665412118002188, -4.673361938712162, -4.365459904598516, -4.367626106062465, -7.0, -3.435797540266917, -7.0, -7.0, -7.0, -7.0, -4.730103665154419, -7.0, -4.222430314660491, -7.0, -4.054191576796431, -7.0, -4.703308577559542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.895652709000915, -3.0503668651683298, -3.538900337140719, -7.0, -7.0, -7.0, -7.0, -7.0, -4.658993413729996, -7.0, -7.0, -3.1320707676294646, -4.686600523389447, -3.651702853962148, -2.851895212589347, -7.0, -7.0, -7.0, -4.6637386065732995, -7.0, -7.0, -4.370216920815891, -4.667182018074072, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.667667712106219, -2.8327985213557447, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6603151495574515, -7.0, -4.661007690901031, -7.0, -4.191637287031295, -4.228921951650121, -3.387711783284205, -7.0, -7.0, -7.0, -3.493365094127988, -4.068371418032643, -3.077252254231666, -7.0, -2.9446954207059086, -7.0, -7.0, -7.0, -3.7827432771138936, -3.7981238562219866, -3.7315001246145556, -4.096605900418895, -4.713347714848314, -4.666021627895574, -7.0, -7.0, -7.0, -4.677980868888067, -4.676318583037297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.671691093948305, -3.948119424380536, -4.186975160132497, -7.0, -7.0, -2.8855714145494162, -3.875648198186427, -7.0, -3.6304888957237034, -4.6562036470321875, -4.661604477060614, -4.686957849789318, -3.969900262617777, -3.2251396023011987, -3.566781853917318, -4.706530030980853, -7.0, -4.682271463859843, -4.672744198306599, -2.6308337889825735, -3.6760115020411783, -7.0, -7.0, -7.0, -3.799719530025879, -4.212249768898902, -7.0, -7.0, -4.67521907955274, -7.0, -4.6708578881893095, -4.658707618456519, -4.696958914626985, -7.0, -4.663116448584376, -4.3884919618358005, -7.0, -3.25375912042996, -3.8397419377808935, -2.542347267174691, -4.660893924309038, -3.405918097912158, -3.6683189267256213, -4.404209183192527, -7.0, -4.662323319907556, -7.0, -3.9840680235504013, -4.706273875527286, -7.0, -4.369855691820066, -7.0, -7.0, -4.197317322239914, -7.0, -7.0, -7.0, -4.691788524402698, -7.0, -3.2210795564374317, -7.0, -7.0, -3.073010596874898, -2.60967842177663, -2.2034408668304377, -3.2580960504481724, -1.4940749908103732, -2.804126688578728, -2.6522046472654086, -1.7706589656531093, -2.6081934347734985, -2.9775310775313324, -3.307103640720233, -3.0556130144779496, -0.818488609320864, -0.7319713505186216, -2.177159713164186, -3.2756666756431567, -1.8924969718749627, -2.8355583253959815, -1.7601052414855185, -3.2461124761404645, -2.9773469638264354, -2.2047227509440854, -2.4498226347770364, -2.661630051899821, -1.9942192749800425, -3.1296438644866935, -7.0, -1.6026370462159074, -2.6324294286822028, -2.5763371611864883, -3.0308351478228945, -1.3323484797349916, -2.4478630874001825, -2.59659709562646, -3.5550199970319314, -2.514163733887782, -2.5637651072627095, -3.070871674152227, -2.8086755289151313, -3.2173371298910296, -7.0, -3.3592614171553317, -3.033358978921552, -3.7195467231686625, -3.847475707588656, -3.0483627882402398, -4.672153296245931, -2.6780196452952088, -4.436035362607869, -7.0, -3.4791372440872745, -2.8621983673306364, -3.551768939006816, -4.6661902641189865, -3.426384731849464, -4.011790283886408, -7.0, -3.593209359886835, -3.403107805589821, -4.392626616474039, -7.0, -3.4643739521604857, -2.8036537624626874, -3.06561587658654, -7.0, -4.394714279533342, -7.0, -2.8131005261146176, -4.404483061833551, -3.2347252291627706, -4.054459837239404, -4.486125728191671, -7.0, -3.5623193047159516, -3.0165246700574415, -3.0582815767255327, -4.688108228551808, -3.7068955023874866, -3.629367119082936, -3.479894689528358, -3.2645241259165214, -7.0, -3.187405934399452, -2.780965997073155, -7.0, -3.0761363519495823, -7.0, -4.085067485564809, -2.511683639438494, -3.6632431070858584, -7.0, -7.0, -7.0, -7.0, -2.5787179284944166, -2.6925531793391446, -4.6723472746210035, -3.5739805970823184, -7.0, -4.066819584762148, -3.710371264260763, -3.828595456371702, -4.3688445068258215, -7.0, -4.002831038473649, -7.0, -2.9510581008223427, -4.688997903106314, -7.0, -7.0, -3.120319621011636, -4.670653972304613, -3.9152239006415415, -4.6624745037503095, -4.057485427208782, -3.8021577531869615, -7.0, -4.661036127893079, -7.0, -4.204987704187151, -7.0, -4.263438796505723, -4.655992731385616, -7.0, -3.132481759763925, -2.561057478866997, -1.8973124808813662, -7.0, -4.375791597685192, -3.6859777483144347, -4.662294967076999, -4.67817226232306, -7.0, -4.666265192538056, -3.7962134274930612, -7.0, -7.0, -7.0, -7.0, -3.3937067877220115, -4.659440781870318, -3.8890494582775337, -7.0, -4.35923767911977, -4.367570219499281, -3.258278015243031, -3.108341874862239, -7.0, -4.0811852273835525, -4.204328032253934, -3.766775227663688, -3.237003787001136, -4.659431268195865, -4.656988885990069, -3.2435836759981913, -4.6709783389504365, -2.6631251964165, -4.3768779392470645, -3.4082221074413357, -7.0, -2.918668816066225, -3.316003912815251, -7.0, -4.403772331808551, -4.658497915660603, -7.0, -4.708369903659491, -3.7617681419738305, -7.0, -4.4062079458419, -2.8724800107296673, -7.0, -7.0, -3.8582965245338854, -7.0, -7.0, -7.0, -3.5401260471738896, -3.124363208685011, -4.66505539251443, -4.061509024166617, -7.0, -7.0, -3.1862369644127835, -3.8995834172273165, -4.360754303685361, -3.074697614873553, -3.062111714033968, -4.193690297357073, -3.4299210335094057, -1.5957417359449504, -4.090989492731618, -4.0749169601414925, -7.0, -7.0, -7.0, -4.390484690310887, -7.0, -3.3941013020400446, -7.0, -4.3667777196075805, -7.0, -3.4443009228773778, -4.661282503857652, -7.0, -7.0, -7.0, -7.0, -7.0, -4.355863205457035, -2.901049445343407, -4.666920265359489, -7.0, -7.0, -3.8148371659627713, -7.0, -7.0, -7.0, -7.0, -4.196747128441428, -4.365413100076178, -3.5839314291637243, -3.424511976727283, -7.0, -4.359389580131493, -7.0, -3.983707456077561, -7.0, -7.0, -1.5741752586053788, -7.0, -7.0, -7.0, -3.471749972663032, -4.6748519589392314, -7.0, -7.0, -7.0, -7.0, -3.4617368034318816, -4.666358834886494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.043110966748345, -7.0, -7.0, -7.0, -3.1383170547713606, -3.313389092794885, -7.0, -7.0, -7.0, -7.0, -7.0, -2.634992781745514, -4.348441167278361, -7.0, -4.2841147684017695, -3.2078295271901087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6434378707401143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.436404044035392, -4.182386117037066, -7.0, -3.74681576560032, -7.0, -3.6760531246518715, -7.0, -7.0, -7.0, -7.0, -7.0, -3.180540019942531, -7.0, -4.3545501955078825, -4.318459865188351, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.262308674749025, -3.3303122908199514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7079370718550817, -7.0, -4.227012095991085, -7.0, -7.0, -4.344804755754967, -7.0, -4.186476030554059, -7.0, -7.0, -7.0, -3.646060468555641, -7.0, -7.0, -7.0, -3.1900867571876605, -4.256549382152194, -3.7968690816574724, -7.0, -7.0, -7.0, -4.214393431255206, -4.230653247179221, -3.7883805153195635, -7.0, -3.6128595111893813, -7.0, -7.0, -7.0, -4.380319801762641, -7.0, -7.0, -7.0, -4.27570284944821, -3.6308796768674907, -7.0, -7.0, -7.0, -7.0, -3.0204844661071655, -7.0, -7.0, -7.0, -7.0, -4.2761399853501425, -7.0, -4.469851458673805, -3.362050543687252, -7.0, -7.0, -7.0, -4.275714358663436, -7.0, -7.0, -7.0, -7.0, -4.192901826109565, -3.8392014186667978, -4.244771761495295, -7.0, -7.0, -3.624568550883257, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0598215015104135, -3.8228869478341507, -3.6150628307515076, -4.288428094800999, -4.1933472563864616, -3.743568555128344, -7.0, -7.0, -4.203522416822585, -3.41427122809658, -4.027308827035546, -7.0, -7.0, -7.0, -3.693718157448391, -7.0, -7.0, -7.0, -4.2065830348377915, -7.0, -3.905957699092427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5394262421725897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6819902660768373, -7.0, -7.0, -3.34288063988093, -7.0, -3.809582158214607, -4.265831566255261, -7.0, -7.0, -3.607696230930896, -4.216086692421913, -7.0, -7.0, -7.0, -7.0, -4.283775978711523, -7.0, -4.371658839715409, -7.0, -4.563219955576987, -7.0, -4.422737533946394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.230729844577681, -2.927393696523618, -3.1902716533078457, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4024906523461884, -4.265100966221937, -3.3027482594758824, -3.3686808154548578, -7.0, -7.0, -4.190135520877031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1638085844113726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7125444818854723, -3.722798396870905, -7.0, -7.0, -7.0, -3.643982882895379, -7.0, -3.064395586111371, -7.0, -2.6532720020956755, -7.0, -7.0, -7.0, -3.5421849794668856, -7.0, -3.6760531246518715, -4.296379953771385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.363047594521094, -7.0, -7.0, -7.0, -2.8508261874537557, -3.873029812061044, -7.0, -3.751958761232796, -7.0, -7.0, -7.0, -7.0, -3.5279059647530167, -3.7727860752162554, -7.0, -7.0, -7.0, -4.227526784937202, -2.7801343698768295, -3.6433737066738225, -7.0, -7.0, -7.0, -3.4615842710047984, -3.5733126399548465, -3.8859545764960806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.20013885385738, -3.6706168864003255, -7.0, -3.790943296475265, -4.289744985155116, -3.1687505243233347, -7.0, -3.5393061553487297, -3.097045308948987, -3.8355003278673188, -7.0, -7.0, -7.0, -4.2558270827032345, -7.0, -7.0, -7.0, -7.0, -7.0, -3.630122642859312, -7.0, -7.0, -7.0, -4.278662160909981, -7.0, -3.4624635115214004, -7.0, -7.0, -3.369941495811043, -2.9635635413114008, -2.7344981587649517, -3.231955883590876, -2.0852872431088505, -2.947467918751744, -2.2646789598646593, -1.5717635398280054, -1.6857217503623843, -3.018664324039434, -2.9449054803762325, -2.5125761664772472, -1.5245601896323777, -1.9270555394242939, -2.8513988476154615, -2.618692549885404, -2.2934016392073215, -3.000221522311308, -2.0243284317283794, -2.9532763366673045, -2.1672933146999465, -2.2155813662933226, -2.1015620259249816, -2.300416865454403, -1.8977249567941763, -2.540475264195069, -1.6026370462159074, -7.0, -2.7612017667507374, -2.150720749801374, -2.08949399909346, -1.4770168803050245, -1.9661604130089516, -1.4229130248643294, -1.8927428035300704, -1.8506730122857966, -1.9974024177152132, -2.722633922533812, -2.214623113871712, -3.143100713325941, -7.0, -3.0883133155880964, -3.537268839048176, -3.8703258579283086, -3.2805556080062743, -2.84609443527844, -3.6236627073562047, -2.8146330590485418, -4.387425422788231, -7.0, -3.7220474759675914, -3.1175781525058817, -3.113943352306837, -7.0, -2.603425452536781, -3.211900575986455, -7.0, -3.0867575075215505, -3.2010555635620643, -3.9824521513849898, -7.0, -3.90554147191974, -2.7717931351637475, -2.97269969669112, -7.0, -7.0, -7.0, -3.0559680048965525, -4.313382057578149, -3.795968887121449, -3.578016706360594, -3.213154119962002, -7.0, -4.073718350346122, -3.0623521379767524, -3.0831846311384115, -3.5699120543965486, -3.234812449442134, -3.116503972397613, -3.192966813152586, -3.3333512978152764, -7.0, -2.0532640920024914, -3.0072172913073967, -3.782520398709198, -3.7951662739081384, -7.0, -3.0898815718051527, -3.0593424912315332, -3.6902214025836595, -7.0, -7.0, -7.0, -7.0, -1.3206070069540838, -2.886609449744545, -7.0, -3.775697807765654, -7.0, -4.216825423266047, -3.5628992633333025, -4.230474467361159, -7.0, -7.0, -4.003223501202289, -7.0, -3.369108985997604, -3.794185864065302, -7.0, -7.0, -3.4046471506478975, -3.9205928620848085, -3.981909170090792, -4.198272098469347, -2.8083516624462996, -4.312980861723379, -7.0, -7.0, -7.0, -4.25324105377265, -7.0, -3.6169129139475986, -7.0, -7.0, -3.2137913435388277, -3.1291922661481304, -1.6647434274063997, -7.0, -7.0, -3.8885725968575997, -7.0, -7.0, -7.0, -7.0, -3.4686426683915115, -7.0, -7.0, -7.0, -7.0, -3.140395796137267, -4.1893780058420305, -2.932447061047428, -4.2009325358991925, -7.0, -4.215928229339918, -3.5393808228365784, -2.7713568794849883, -7.0, -3.6541283912618123, -4.251467875483525, -2.2757745455678955, -2.992523047441195, -7.0, -7.0, -3.1463218738791365, -7.0, -3.2129898529812593, -7.0, -3.3635179665825654, -7.0, -2.6452257115354163, -2.7535427437866438, -7.0, -3.6124871640450116, -7.0, -7.0, -4.320354032817672, -3.0006238500328752, -7.0, -4.317624643080059, -3.3596837372363515, -7.0, -7.0, -4.064108416233477, -7.0, -4.301181972138315, -7.0, -3.4034980044519982, -3.2404584771500917, -7.0, -3.5993917577937564, -7.0, -7.0, -3.1750941332353855, -2.6715480863793686, -3.8952291148413942, -2.841434558110041, -2.838552266388136, -4.222222082360713, -3.3490083922712177, -2.542115014259059, -4.282055370683707, -3.938294514123816, -4.1901074883140454, -7.0, -7.0, -3.8007857903277626, -4.283233364888754, -2.695346948869479, -7.0, -7.0, -7.0, -3.252665509389223, -7.0, -7.0, -3.876188963668735, -7.0, -4.180326625415149, -7.0, -3.4826735335033296, -3.319813684538678, -7.0, -7.0, -7.0, -3.1492191126553797, -7.0, -7.0, -7.0, -3.8883480101780488, -4.230755374041985, -7.0, -4.136546180350109, -3.2667233307073897, -3.4351159893241427, -7.0, -7.0, -3.9537838453708924, -7.0, -7.0, -2.5054251214759526, -7.0, -7.0, -7.0, -3.195043800258105, -4.2333769034738955, -7.0, -7.0, -7.0, -7.0, -3.2007365309762705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.82833491324989, -7.0, -7.0, -7.0, -7.0, -3.94875518016827, -7.0, -7.0, -7.0, -7.0, -7.0, -2.742481981003778, -7.0, -7.0, -7.0, -4.294835039979782, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.668860957617935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.013179676320571, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.472902651803664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.13021472332266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.003642970457874, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2125870781238937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163526613344592, -7.0, -7.0, -7.0, -4.398335036939955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.394679275545099, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8000293592441343, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1091734214254725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2784853222167785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6924503234060153, -7.0, -4.31285409125829, -7.0, -7.0, -3.7651047158339206, -7.0, -3.49380646215058, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.017617573339674, -7.0, -4.37032800777951, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.176641017292667, -4.413150502106627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.472697954538768, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3873898263387296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5107521158725525, -7.0, -3.4677478333627345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.182310013476203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9789271551990844, -3.3676354197905107, -7.0, -7.0, -7.0, -7.0, -3.683048969004335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7500453120117676, -7.0, -4.388663548407268, -7.0, -4.307912728272152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8777168008649765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.920553753485052, -7.0, -7.0, -3.5694377561074897, -3.3349417709129194, -3.34865094891718, -7.0, -3.155967607405664, -3.921911799387235, -2.6304278750250236, -3.907465106765856, -3.8092790719877616, -7.0, -3.733999286538387, -3.857191730038569, -2.9036244236153435, -2.9060763278487287, -3.1655960082919816, -3.7556652770726693, -3.3061836857929325, -3.888567493904454, -3.131689936111311, -3.6428995860133027, -3.4153072922255676, -2.7338042406523857, -4.005352136486216, -3.704910051542378, -2.55837005931667, -3.6595549297109704, -2.6324294286822028, -2.7612017667507374, -7.0, -3.529244938240268, -2.9439065209478206, -3.1456136683405305, -3.7501611290217176, -3.328022642064409, -3.529430354366986, -7.0, -7.0, -3.6290890758031935, -2.730964517156539, -3.930062226735009, -7.0, -4.081428325336669, -4.770439604180736, -7.0, -3.7766285534201502, -3.8800510030033712, -7.0, -3.694898389725206, -7.0, -7.0, -4.463579467456969, -4.492401820088892, -4.392468317043854, -7.0, -4.459678907011742, -7.0, -7.0, -3.8849651982007325, -7.0, -7.0, -7.0, -4.998006362349715, -4.2346817578497795, -3.9082236656987925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.254233782650147, -7.0, -7.0, -7.0, -4.793042643127849, -7.0, -7.0, -7.0, -4.906151802007568, -7.0, -7.0, -4.47357941507252, -7.0, -7.0, -4.174230427986725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.519434194913703, -3.146888794364442, -7.0, -3.621046389600625, -7.0, -3.5259513412480126, -4.370161366676781, -3.2879136470760337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.383456296524753, -7.0, -3.8700525816935447, -7.0, -3.1805559407036412, -7.0, -7.0, -3.570426178358973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9130399071502957, -3.6522359775051445, -2.8523552103155794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9836713828601966, -7.0, -7.0, -7.0, -7.0, -3.4947805290034273, -7.0, -3.5025636691073636, -7.0, -7.0, -7.0, -7.0, -3.3877710651183564, -7.0, -7.0, -7.0, -3.540454613671412, -3.8876454273058507, -3.370513089598593, -7.0, -3.2701662292606937, -7.0, -3.844894416747932, -7.0, -2.7745980589006467, -7.0, -3.382557321908786, -3.6282867310895144, -7.0, -2.6900778885780894, -7.0, -7.0, -7.0, -3.467608105583633, -7.0, -7.0, -4.167868469951459, -7.0, -7.0, -4.034548247098469, -7.0, -7.0, -7.0, -4.087142279383808, -2.665220071457662, -7.0, -7.0, -7.0, -7.0, -3.0846834979032507, -3.1581613832785496, -7.0, -2.6299190355035416, -3.769340394703022, -3.0742067332841834, -3.600346581311417, -2.74287979246495, -3.1776086358791855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.799064719351008, -7.0, -7.0, -7.0, -3.3780177889279908, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8912028272602956, -7.0, -7.0, -7.0, -3.3823773034681137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8591983615338776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6966607992196483, -7.0, -7.0, -7.0, -3.616790486329716, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7748817658187965, -7.0, -7.0, -7.0, -4.774202992384649, -7.0, -7.0, -7.0, -4.472419996698072, -7.0, -3.8760662153210648, -7.0, -4.474529484366441, -2.687256167541895, -3.9023972780121996, -7.0, -7.0, -2.6216749415481964, -2.787437245245736, -4.778390046685725, -7.0, -7.0, -7.0, -4.073403051739167, -2.2568180678516794, -4.822410013411183, -7.0, -3.0376462686996453, -2.334279232192053, -4.300254812427243, -4.297227800014187, -7.0, -4.783975003412671, -3.9337619793526004, -3.9966794618656425, -3.3883742444866853, -4.078377057151801, -7.0, -7.0, -4.775005728078465, -4.482380436634382, -7.0, -3.9456654994321343, -7.0, -4.308237057684112, -3.5191422616644465, -2.894141677812021, -7.0, -4.076319974124645, -2.8289676454127086, -7.0, -3.2197912707627743, -7.0, -4.300175042202833, -4.314667608117513, -3.8753651631765127, -3.781496874572939, -2.135514407143608, -4.788945727023748, -3.0455511516724045, -3.4698688556921424, -7.0, -4.174408732073123, -4.788797430139894, -4.2996670699201935, -4.476353322595013, -4.777484821118284, -7.0, -4.776119799052988, -3.649042634086176, -2.8044200749828567, -4.171133829751535, -7.0, -3.6108304412657146, -7.0, -3.6607841925779394, -4.197370165202425, -7.0, -4.788281527598792, -2.7611418053448147, -7.0, -3.4232601245473617, -7.0, -4.774049574030081, -2.9225415156302677, -3.3684871392613425, -4.774465869254357, -7.0, -3.4664015254461162, -3.931021759038731, -3.6149955887542284, -3.492683577744274, -3.7028109519217565, -4.7811950965511025, -2.053037863611757, -3.6173848117347926, -2.6890820438778835, -4.170533064658333, -7.0, -4.4869827371917586, -3.2628751809008034, -3.6721973575474354, -3.2907369876802903, -4.773559733815069, -3.029103150471092, -7.0, -7.0, -7.0, -3.100306711137599, -7.0, -3.7446272007728325, -4.3025401594317065, -3.3517894071459464, -2.6340286106172917, -4.775646850041662, -4.77402034534064, -3.9332196580203544, -3.825058099093539, -2.4300950892631468, -4.300008202553813, -7.0, -4.7845388415525, -3.8908260595923116, -3.2426656366452633, -4.777281791671014, -3.690810157601429, -2.138451442869295, -4.775581324181115, -7.0, -7.0, -3.5433974725754194, -4.477410687907252, -3.533475481486863, -3.5670679035778576, -7.0, -4.776134343165844, -2.6738533037533747, -3.27132050661406, -7.0, -7.0, -2.635680509209594, -7.0, -7.0, -4.7721162485787625, -4.471951454680982, -4.772042847107852, -2.3923943485481045, -3.6304888957237034, -2.797452607384794, -3.09491620426256, -4.077222510411053, -3.478809087081396, -7.0, -7.0, -4.477887831360864, -3.0254051779754487, -2.963588319885388, -7.0, -7.0, -4.776381518592003, -3.1011198063080787, -7.0, -7.0, -7.0, -4.080720261319698, -3.9948082246466132, -3.2742733377584177, -7.0, -4.786914606730178, -7.0, -7.0, -4.043080517519958, -4.781209471689111, -4.173171694527412, -2.3493012237976245, -7.0, -7.0, -7.0, -7.0, -7.0, -4.296657878845073, -7.0, -2.714479217325374, -3.7741226371486234, -3.267272325511575, -7.0, -3.3907313564630464, -2.116931894711265, -3.4150459663945143, -2.8670081599665216, -3.415856350335432, -3.6656819947685397, -3.4431989589824896, -3.780511728833051, -4.180204752401327, -7.0, -4.303520036907281, -3.685211031044629, -7.0, -4.50070976802415, -7.0, -3.3385978508664627, -3.9380047853444586, -3.444217143549448, -7.0, -2.8699169070651678, -7.0, -3.6329294614279912, -4.77552307067083, -4.7807204498661315, -7.0, -7.0, -3.693787808102676, -4.1828994675482605, -7.0, -3.941149251276355, -2.155087384231883, -2.417338810319398, -7.0, -4.470946779511408, -4.172135696649566, -4.170452410963683, -7.0, -7.0, -7.0, -7.0, -2.480039624936464, -3.619886029358387, -3.0130118711375116, -2.248097000248326, -7.0, -4.77451696572855, -4.298263432540114, -3.5478325978105967, -7.0, -7.0, -4.307153601875836, -3.826801619428277, -7.0, -7.0, -7.0, -7.0, -4.7738156894162005, -7.0, -7.0, -4.781532786564054, -2.086052271614508, -7.0, -7.0, -7.0, -7.0, -4.077346099156037, -3.997663009732473, -7.0, -7.0, -4.325864436615347, -4.180297952488594, -2.837003810313908, -2.796267368858326, -3.3189695689123093, -7.0, -7.0, -2.702139548178527, -2.7528020888068068, -2.0148522278951115, -4.776570440218725, -2.306863306422832, -4.078268268673513, -3.928637222466674, -7.0, -3.6596500299986263, -3.0074836024192964, -3.158881948644272, -3.3281008587026437, -3.913913146172642, -3.603973901841678, -4.475177060761012, -7.0, -4.779264511479166, -3.944306380496884, -4.487159594558902, -7.0, -7.0, -7.0, -7.0, -4.303987581009804, -4.771940064202349, -3.1505636786888123, -2.9342782700303656, -3.9336318839818554, -7.0, -4.0814265251112465, -1.9979223205494447, -3.1596652554067797, -4.773245067425772, -3.059022969905103, -7.0, -4.475830932831453, -4.319300424211257, -3.782386616743111, -2.635773643682964, -3.147725497474199, -4.510692430840357, -4.782809322668878, -4.491767779403694, -3.387161939946565, -2.1133843004353485, -3.1037511078985416, -4.470968804605796, -7.0, -7.0, -3.5782480812332245, -3.1543063709318093, -4.297461397643421, -7.0, -4.185251678187814, -4.4728514865317806, -4.306839464804704, -3.9964314019794394, -3.7627126567903657, -7.0, -4.175931988544272, -3.4759615891924236, -3.821906377352323, -3.011523824754196, -3.038034210649267, -2.7585280362135705, -4.475286107828074, -3.139604468701357, -3.2296898397116656, -3.606414957134592, -7.0, -4.476382325832763, -4.773464626158091, -3.470963211036848, -3.77000803178587, -4.806010294559223, -4.482980715414231, -7.0, -7.0, -3.485480084723825, -4.773976498617766, -7.0, -7.0, -4.198106998873402, -7.0, -2.5361583110918096, -7.0, -7.0, -1.6999933818566404, -2.1623104462387976, -3.074827688737842, -2.8017639306855906, -2.826473816129836, -1.8253256070739754, -2.15915403552208, -2.059496009285706, -1.0138747530809518, -2.379838903069261, -2.661631761394197, -1.9994329149004895, -2.3762930992903013, -2.3427663427956724, -1.5774993553963323, -2.50972145474068, -2.275108261152224, -1.7333563961813585, -2.8863277558324616, -1.6629294556640104, -3.754028474893647, -2.5956201195001602, -1.841950215529348, -0.9568458642751151, -2.23503054018388, -3.2498720445016467, -2.5763371611864883, -2.150720749801374, -3.529244938240268, -7.0, -2.194721969117901, -2.478184036613144, -2.7830739811562824, -2.8485116746039396, -2.9688707307451963, -3.1593154656815914, -2.9689036873904175, -1.3235047974925307, -2.2826316017388204, -2.102554815370903, -4.777310801689522, -2.4071006006618583, -2.3086996539594438, -2.763716901638116, -2.3625947261651086, -2.262967172383463, -3.103076438493488, -1.579555753108801, -3.4553905597931154, -3.8367389381738333, -2.9529185089385104, -2.176527237504239, -2.0837428200895722, -7.0, -2.0870630004271984, -2.7884085266163745, -7.0, -2.540390030364661, -2.985125198180277, -4.10265319875918, -7.0, -2.4211910728677872, -1.3959028996833276, -2.684629432936173, -7.0, -4.803306862008678, -4.77450966660029, -2.3645362928944373, -3.9657726771873762, -3.3368112188941668, -2.870132733146647, -3.6719534541166303, -4.1702543792775595, -3.210651511243684, -1.9910194262396508, -2.9296487854824935, -2.904181310719912, -1.6926772003490882, -2.0964627896675685, -2.0448195975918297, -2.180051080456895, -7.0, -1.7797251329891868, -2.287525122351788, -2.551632247867079, -2.667011301386366, -7.0, -2.7657660113656077, -2.9543916354735393, -3.080937141070891, -4.773223105446387, -7.0, -7.0, -4.4717536368068815, -3.2733281472184315, -1.752576741650785, -3.7436024005366573, -2.256824609777707, -3.773340223171566, -3.276913958802221, -2.289659636281177, -2.723940845569182, -4.482201621904094, -4.296489682285046, -2.5937004799072296, -7.0, -2.216836286104777, -2.971047256283564, -3.629409599102719, -3.5051785493854672, -2.2769065190323636, -3.7422965511890913, -3.1777013644974312, -3.379254741314769, -3.6290234850671896, -2.818293237576922, -3.821215016691195, -3.697098511464285, -4.781798443044012, -3.4702144212290773, -7.0, -2.62445926333515, -4.29542781019911, -4.773245067425772, -2.242814416095409, -1.609297500646989, -1.607291828089711, -4.294723346427345, -2.974787932213558, -3.079407382205769, -3.6632876671684618, -3.710300751607476, -4.470513392168665, -3.9352696848113395, -2.4935723149618294, -7.0, -3.928154347824516, -3.463594402187, -3.8258298578112866, -2.1675045440973943, -4.173113394096824, -3.1574063947093705, -3.736707894580018, -3.8215062500719243, -3.7407286347551265, -2.0324609465937584, -2.276804279785151, -4.772424399356814, -3.3160822265631986, -3.449485411797984, -3.8289676454127086, -1.8713288289316703, -3.519689475629554, -4.773340223171566, -2.7535765122498272, -4.085054988986404, -1.6894476119461646, -3.3419077084620636, -2.3953054205960362, -3.549709912785665, -3.8213315334803046, -2.4686001095378365, -4.775231685855374, -2.5880623578472397, -3.6603764938868153, -3.742696572451403, -2.925673663220366, -3.247518382950562, -7.0, -3.158503212876601, -1.6554587420039284, -3.8438899878252886, -3.387062202035878, -2.8389594999108265, -3.257671517702943, -3.3595848033967033, -3.778794976552835, -2.2391351005633666, -1.4459683637782925, -3.82516637225655, -3.363091034829397, -7.0, -7.0, -2.6692527401905854, -2.762579485676154, -3.873836274597429, -2.853393977450666, -1.6504266854666678, -3.2921917372575997, -2.2019923324997857, -2.6183549594754334, -2.9807950320434013, -3.4267163023532548, -3.5198863039908845, -4.003367171740312, -4.771888663626186, -3.4194807372393323, -3.625305590015191, -2.505920882889847, -7.0, -3.9364706555715805, -4.1758450890945245, -2.1028331240006084, -4.17452497792015, -4.172391277829509, -7.0, -4.470983487381527, -4.772886215949434, -4.295332480930185, -4.1711777555614145, -2.2225070244468474, -3.382672494563074, -4.783167226237643, -4.473873648418939, -3.6615651537654403, -7.0, -4.774443968924965, -4.776454190482185, -4.298081281898712, -3.4638361311346295, -4.00238207493276, -3.3225537065176844, -2.8444028825329357, -4.022538340036338, -3.9307962629833004, -7.0, -3.7138474083382946, -4.298088569391382, -7.0, -2.7835414519189197, -7.0, -4.776112526813905, -3.61646851190577, -2.8473315065761877, -4.48602646088109, -7.0, -4.773208463509772, -4.3078097005972085, -4.772373056075185, -2.840457680151218, -4.002302882576187, -7.0, -7.0, -4.158060793936605, -7.0, -7.0, -7.0, -7.0, -7.0, -3.576341350205793, -7.0, -7.0, -3.2143839279787567, -7.0, -7.0, -7.0, -4.467696879027591, -3.476237290271068, -7.0, -7.0, -7.0, -7.0, -7.0, -3.270740112262184, -7.0, -7.0, -3.5632674454055637, -3.3670470284765495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.559567511673805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2230544131791055, -7.0, -7.0, -4.159958002678519, -3.558754271310005, -7.0, -7.0, -3.897956810006952, -7.0, -3.9551824629011803, -7.0, -7.0, -7.0, -7.0, -3.710709565724337, -3.3036463463892605, -7.0, -4.3361794534374445, -7.0, -7.0, -7.0, -7.0, -4.168762575622357, -7.0, -7.0, -7.0, -7.0, -4.2394746634651845, -3.776898262895438, -7.0, -7.0, -3.363692546534042, -7.0, -7.0, -3.776894806141374, -7.0, -7.0, -3.468483210827674, -7.0, -4.202188512266052, -7.0, -7.0, -3.848804701051804, -7.0, -7.0, -7.0, -4.215822555154372, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4712988104094005, -4.233402277811895, -4.382485323486555, -7.0, -7.0, -7.0, -3.8877297972880305, -7.0, -7.0, -7.0, -3.9665484487767353, -7.0, -7.0, -7.0, -3.5177047595531556, -7.0, -7.0, -7.0, -4.253580289562183, -4.097430853944242, -7.0, -7.0, -7.0, -7.0, -3.23598728950903, -3.692905643431454, -7.0, -7.0, -7.0, -7.0, -7.0, -3.610553705317095, -2.972067003654662, -7.0, -4.313550871333505, -3.863976783904387, -3.971028316966284, -7.0, -7.0, -7.0, -7.0, -7.0, -3.412072669033916, -4.220970587520289, -7.0, -7.0, -3.288954860175721, -7.0, -7.0, -7.0, -7.0, -7.0, -4.386570301700929, -7.0, -7.0, -3.6647594635811633, -7.0, -3.724808168565719, -7.0, -7.0, -4.177276711258586, -3.6202922479198407, -7.0, -7.0, -7.0, -7.0, -4.384514698685653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.160453890169641, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.56474494800163, -7.0, -4.213929278444742, -7.0, -7.0, -3.010802052272352, -3.3914350229382695, -3.3106225169268044, -3.765966424785714, -3.8796405572939117, -4.204554060135243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.55194988078541, -7.0, -3.561782630034868, -7.0, -3.588226874130211, -7.0, -4.184379080658596, -7.0, -7.0, -7.0, -7.0, -7.0, -4.206123963991852, -3.0549121513317727, -3.2033258343997835, -7.0, -7.0, -4.158211669214101, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3384166482463584, -3.941337481247457, -3.3928567672382504, -3.0404734857859026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721123331508574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6941189367490233, -7.0, -7.0, -7.0, -7.0, -7.0, -4.164977077110886, -7.0, -4.167140035508358, -4.2664198658791035, -7.0, -3.8173449714419307, -3.828079590556746, -4.188506633818114, -7.0, -7.0, -3.9334113556023538, -3.894952635024377, -3.1478762882177977, -7.0, -2.937277107785396, -4.17070165581607, -7.0, -7.0, -7.0, -7.0, -4.357668093043634, -4.275311354541811, -4.011993114659257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.199618067707931, -3.7428625445258743, -7.0, -7.0, -3.7060916285745886, -3.0725066521685744, -4.0305997219659515, -7.0, -3.4385950832263315, -7.0, -7.0, -4.243410141653711, -7.0, -3.012415374762433, -3.3810892828256227, -7.0, -4.192567453336546, -7.0, -7.0, -3.3958655545065732, -7.0, -7.0, -7.0, -7.0, -3.985314180745103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8725932620341004, -7.0, -7.0, -3.653537478094413, -4.279176260897295, -3.0872420359898087, -4.1667852197354325, -7.0, -3.347363159274476, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5959148826640113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2958633803612676, -7.0, -7.0, -2.4379733985675376, -2.819334514439521, -3.2532437471636304, -3.296957546032856, -2.817572046544905, -2.8709888137605755, -2.1934983993948127, -2.4166072267925043, -2.1240978284945977, -3.001376230057043, -2.1791769792994247, -2.7868804268938447, -2.818100471323298, -2.821787019668142, -2.0473773557579658, -1.4237401874818418, -2.6516512549072933, -2.4760577472967906, -2.4153503631086912, -2.3392654630551335, -2.1197886570592095, -2.0813620269415427, -2.7385521486165474, -2.634907595612564, -2.5799160842572224, -3.0522097301280926, -3.0308351478228945, -2.08949399909346, -2.9439065209478206, -2.194721969117901, -7.0, -2.8879518576185252, -2.5601080778478438, -2.1393215934514913, -2.295736217753519, -2.718857424981556, -2.780193827782793, -2.76435258836705, -2.2006073320814195, -3.893206753059848, -7.0, -3.525778813891725, -2.992730873083119, -3.8516455748718625, -3.258685162607472, -2.940354590418678, -7.0, -3.196185555942593, -7.0, -7.0, -3.916475004741629, -3.332281780585766, -3.1976763157398866, -7.0, -3.3336487565147013, -4.005630880886649, -7.0, -3.9967742708613048, -3.66774471943227, -7.0, -7.0, -3.4680712409883463, -3.2414788062846314, -2.724172386274545, -7.0, -7.0, -7.0, -2.819405603168696, -7.0, -4.013002607838666, -3.008923643234805, -4.001935529214752, -7.0, -3.9371541560218692, -3.353862824646005, -4.171820028914312, -3.9455178220778397, -4.176149161126549, -7.0, -3.364874485205343, -4.044755286295232, -7.0, -2.960003418425458, -2.811554061380131, -7.0, -3.9930704902346563, -7.0, -4.2440295890300215, -3.779508308822964, -4.5234472987303755, -7.0, -7.0, -7.0, -7.0, -2.174945640259249, -2.424181349757642, -7.0, -3.0800248875987006, -3.113031287956422, -3.07678043480133, -3.0459338868658743, -2.741939077729199, -7.0, -7.0, -3.3802112417116064, -4.151492428425498, -3.0966707291567483, -7.0, -3.049665211124215, -4.197914303318418, -2.3596084935067267, -3.7193036592295328, -3.3578157806578566, -3.393253384446486, -3.3842936639163343, -2.6003949625208245, -4.163697945892569, -3.8661395947446504, -4.1886191672078485, -7.0, -7.0, -2.962660686276774, -7.0, -4.154089069014421, -2.4945826812703573, -2.387224813600485, -2.0437751727897377, -4.1483558264494045, -3.436295195334751, -7.0, -7.0, -7.0, -7.0, -7.0, -3.135215642869843, -7.0, -7.0, -3.9041472917242928, -7.0, -2.9424096635273034, -3.8611459408661815, -3.231752684425389, -7.0, -3.8637985386805003, -7.0, -2.753302742300264, -2.6586373316420966, -4.150664353529561, -7.0, -7.0, -3.2398831523208846, -2.8961481317298348, -3.3837555416836356, -7.0, -2.8542047958554297, -7.0, -2.4214779359271756, -4.217852280259893, -2.8281391448173476, -3.7058352143356887, -2.4367925158703856, -3.168897163634367, -7.0, -3.5129288625798827, -7.0, -7.0, -4.300443302006029, -3.13746920199865, -7.0, -4.297585445297346, -2.6249331307836736, -4.249785175832251, -3.087754123432391, -3.130861035664435, -3.176564776618749, -2.5455361868239503, -3.876160084825628, -3.108048462345716, -3.0044408002874246, -3.8785505177314277, -3.0606106822139933, -7.0, -7.0, -2.9383648306422847, -2.9378608845484484, -3.868526886768204, -2.6963299081698104, -2.5807226917052044, -2.834171816391641, -3.1474598958471045, -2.881313314761065, -2.9168366290301573, -4.215267343431722, -7.0, -7.0, -3.8473258307854237, -7.0, -7.0, -2.987030866887691, -7.0, -4.188056208438369, -7.0, -2.8763989853208183, -7.0, -4.1592663310934945, -7.0, -7.0, -3.8515029527705447, -7.0, -3.5519986190490087, -3.1535753376869526, -3.486118638421901, -7.0, -7.0, -3.4649364291217326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.644175898105283, -3.287667391274135, -3.656409670222731, -3.8642736968043794, -7.0, -3.7543993062505883, -7.0, -7.0, -2.868037067135169, -7.0, -7.0, -7.0, -3.2580250191096125, -7.0, -7.0, -7.0, -7.0, -7.0, -3.258110255321881, -7.0, -7.0, -7.0, -4.677123120126264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9673058820223024, -3.485303795444586, -7.0, -7.0, -2.745207280286089, -3.0918668725187803, -4.6823526935396655, -7.0, -7.0, -7.0, -4.674907046819129, -2.3985208083390748, -4.259458489134114, -7.0, -4.012398492238693, -2.7644190002806313, -7.0, -4.677342280911539, -7.0, -7.0, -7.0, -4.677999100468688, -3.3985222965710804, -7.0, -4.374445883792621, -7.0, -7.0, -4.688624461754994, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0939831124466552, -4.3750872200075035, -4.678554796337683, -3.648368883096271, -4.682181190837443, -3.9310169108928728, -7.0, -7.0, -4.096927384439907, -7.0, -4.686385986344789, -2.4621346471263537, -3.850278552518037, -3.697570111966399, -3.5482747377831885, -7.0, -4.378960846770892, -4.695297762874286, -7.0, -4.681114549675511, -4.681223141395172, -7.0, -4.378470580135305, -4.402364568884161, -3.833830684582083, -7.0, -7.0, -4.693216748951045, -4.674576414677026, -4.717870132737748, -7.0, -4.073498398717262, -4.393610296355292, -3.0430294039698493, -7.0, -4.0888445627270045, -7.0, -4.375882991545229, -3.889933671305516, -3.8439087506401615, -7.0, -7.0, -3.792216535439859, -4.202470152962895, -3.552024726583321, -3.7985038995469633, -3.987996774847518, -7.0, -2.7121713616353462, -4.224178991184729, -3.527334155497215, -7.0, -7.0, -4.393294356452329, -4.209506078350244, -4.391164551697127, -3.500227895915016, -7.0, -3.0681501687539985, -4.680126929448146, -7.0, -7.0, -3.635808418306866, -7.0, -4.089913938473309, -4.68397410472636, -4.407263402053051, -3.1586701314662657, -7.0, -7.0, -4.205213389092977, -3.9845903152271513, -3.5504790704430675, -4.203658299456246, -7.0, -3.844805457441659, -4.400710636773232, -4.10636090880675, -7.0, -3.6763277338813203, -2.914078585389112, -7.0, -7.0, -7.0, -3.8615254500826492, -3.8372275786535504, -4.093421685162236, -4.1042480469904445, -7.0, -4.679536910832304, -3.279979648597117, -3.696985092452125, -7.0, -7.0, -3.3832890421810387, -7.0, -7.0, -7.0, -4.675613388396707, -7.0, -3.8053875688707084, -3.125781451979629, -3.3083865333695637, -3.7129021250472225, -4.378634063849602, -4.133403170134419, -7.0, -7.0, -7.0, -3.056576055470881, -3.7741437419835786, -7.0, -7.0, -4.6798456359364575, -3.1259183533156225, -7.0, -7.0, -4.687778586493365, -4.684046027136429, -4.675659215036463, -3.905957699092427, -7.0, -4.692961424024017, -4.691912136795967, -7.0, -4.036221553313943, -7.0, -4.6784637473673705, -2.941432342498225, -4.677634323358943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5655566178828098, -3.978143981690324, -3.5175389738505816, -7.0, -4.114477539928802, -2.728725081971991, -4.0786199197404995, -4.0134018619680445, -4.1025794751762215, -7.0, -7.0, -4.384111374953769, -4.687234575674327, -7.0, -2.884741434421791, -7.0, -7.0, -4.711309402572865, -7.0, -3.843061394239539, -4.211173956728494, -3.7582556676825742, -7.0, -3.654435722700975, -7.0, -3.9422396150016215, -4.678773236017987, -7.0, -7.0, -7.0, -4.7188586102814725, -7.0, -7.0, -4.692238657427663, -2.8916940312831434, -3.0780135164511284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.378073856605894, -4.102313623466469, -2.9284607665244224, -2.9281254077339445, -7.0, -7.0, -3.9795938958489305, -7.0, -7.0, -7.0, -4.2125604579711435, -4.6858044157570795, -7.0, -7.0, -4.673951199690897, -7.0, -7.0, -7.0, -7.0, -7.0, -2.574746369947656, -7.0, -7.0, -7.0, -7.0, -7.0, -4.679227966109899, -7.0, -4.679891018182745, -7.0, -7.0, -3.400587324218979, -3.580827260638217, -7.0, -7.0, -7.0, -3.36639719186507, -3.843766528040535, -2.7703843143959808, -4.077967145146871, -2.6209142371841354, -3.777771076361577, -4.6766478920100125, -4.67704090631023, -4.75301588461289, -3.6770176510941748, -3.706197776014635, -3.636696802260469, -4.42908175442676, -3.985650973690949, -7.0, -7.0, -7.0, -3.7929429635083816, -4.694561328588372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.38907744379235, -3.7425051796758373, -4.381836799998343, -4.393855868587961, -4.684926111375293, -2.5439889874149095, -3.205339721431523, -4.675924914230961, -3.6440773478650277, -7.0, -7.0, -7.0, -3.1684081904984973, -2.9007493580610797, -3.6196236950212635, -4.7235705929867065, -7.0, -4.700270937356437, -4.3900868754237665, -2.322504808736829, -3.271344802890412, -4.674383429621003, -7.0, -7.0, -3.719960723392482, -3.928882112666166, -7.0, -7.0, -4.216350669139196, -7.0, -7.0, -4.677689059461427, -3.869173027321683, -4.679700380871964, -7.0, -3.5028707477497782, -7.0, -3.176461259564539, -3.7731401279444228, -2.682564292252525, -7.0, -2.9524804970471568, -3.4468390869568273, -3.8771491224653936, -7.0, -7.0, -7.0, -3.5247422079728614, -4.246170191757922, -4.716545872727093, -4.689371023618564, -7.0, -7.0, -4.39174644414508, -7.0, -7.0, -7.0, -4.709405656800057, -7.0, -3.068933142369716, -7.0, -7.0, -2.943171365088493, -2.793223222015908, -2.3435894368137173, -3.8624125229459523, -0.7221620522667832, -2.8169100265677667, -2.760542783272158, -1.4176693603506239, -2.453382497794081, -3.2057146347028325, -3.7511250715355837, -2.807281277268819, -0.8754081495280539, -1.3423384769387705, -2.6892164429333363, -2.8977740898582307, -1.991976621484873, -2.9297861091112036, -1.6391014484254336, -3.214830930113703, -2.73360277288189, -1.7810677641337438, -2.304696536501167, -2.52297964845796, -2.4452442714219425, -2.5005019364006, -1.3323484797349916, -1.4770168803050245, -3.1456136683405305, -2.478184036613144, -2.8879518576185252, -7.0, -2.162850015554981, -2.09527901059004, -3.2723058444020863, -2.1063346999125083, -2.254529486133525, -3.2032875576673656, -2.4826412859817872, -3.085998757380345, -7.0, -2.762930069450772, -2.873181900714484, -3.833035494730326, -3.4089095516830414, -2.7488412845235115, -3.6111920608684343, -2.5616466373074993, -4.451939869365103, -4.698144059924504, -3.5096874640549123, -2.6927430839305604, -2.7075517636469266, -7.0, -3.3015285611502345, -3.64834374496539, -7.0, -3.4453173644300032, -3.485548612258038, -7.0, -4.681087397502494, -3.023471752494701, -2.4769029428357405, -2.374764904123681, -7.0, -3.868022733383526, -4.677506578952049, -2.866211090217405, -4.421562798551045, -2.986469775153835, -3.564473725064019, -3.801245880819417, -7.0, -3.600409093134968, -3.390876255625289, -3.1166603796090073, -4.228716809495001, -3.897276490656009, -4.026655813877043, -3.28004693749461, -3.370457012527794, -7.0, -2.853714388484917, -3.0224347162992182, -4.100370545117563, -3.0567337084348547, -7.0, -3.859781410816321, -3.0109680484355525, -3.977867257898025, -7.0, -7.0, -7.0, -7.0, -2.459779837201633, -2.3109090808281607, -4.690754099997801, -3.2125030089235405, -7.0, -4.386436536805701, -3.4222298618548153, -3.650581244643046, -7.0, -4.375370938029058, -4.020054516012569, -7.0, -3.0473583240315048, -3.928489734390515, -4.377979759421654, -7.0, -3.0796876276113365, -4.689131197234498, -3.5968676524903462, -4.380247431410548, -3.599164109114247, -3.877256133113586, -4.076722343959474, -4.378870098398975, -7.0, -4.098037713285091, -7.0, -3.911180445710889, -7.0, -7.0, -3.333422082670884, -2.535271144672889, -1.611547280631969, -7.0, -7.0, -3.3632122826984414, -4.6811236000226275, -4.219182700931299, -7.0, -4.383878172624137, -3.0771390209860074, -7.0, -7.0, -7.0, -4.207436875114079, -3.508184502854504, -4.678390894445093, -3.8407063757428226, -4.682172162503082, -7.0, -4.085067485564809, -3.25998670693116, -3.0704978948302255, -4.674897865991049, -3.856055311086805, -4.222360914986827, -3.4094258686714434, -2.919414846427105, -4.678381786970454, -7.0, -3.020855097836129, -4.388394304726096, -2.6344302874418735, -3.79289049135988, -3.382531609556752, -4.684845361644412, -2.929792841881867, -3.1283992687178066, -4.201251424585158, -4.119816545937216, -4.677488326683328, -4.212471712342394, -3.683783616260912, -3.604325072460819, -7.0, -3.644906115230781, -2.80433418322736, -4.405935153146291, -7.0, -3.6217343758620233, -4.6963126949376415, -4.115785192710546, -4.683020006620726, -3.312555128668243, -3.5344322734758764, -4.081653294769661, -7.0, -7.0, -7.0, -2.984902189915971, -3.9177680024477564, -4.203495235193291, -2.540901998604406, -2.9610487745668284, -4.388269982091079, -3.1957222952450492, -2.4348625067705156, -4.1085565677610685, -4.0931326430729955, -7.0, -4.686341277784655, -7.0, -4.010121791503448, -4.2339516914043775, -3.3508376918557152, -7.0, -4.209264731625127, -4.079687627611336, -3.2748321112406487, -4.680154141734373, -4.677488326683328, -4.674502906671874, -7.0, -7.0, -7.0, -7.0, -3.1806500887021416, -3.9073128091789755, -7.0, -7.0, -4.678973375919766, -7.0, -7.0, -7.0, -7.0, -4.391199840108775, -7.0, -3.2433663825535968, -3.7663550034322113, -4.232928378875812, -7.0, -4.674456957849724, -4.098617771188012, -7.0, -7.0, -2.411815395815549, -7.0, -4.378461495902037, -4.700201652550818, -4.0922819190362185, -4.215998664514626, -7.0, -4.675879115620618, -4.389485040708147, -7.0, -3.8648584454950887, -4.383967880647654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3210596292066805, -7.0, -7.0, -7.0, -7.0, -2.899413095561151, -7.0, -7.0, -7.0, -3.7781633139517035, -3.387199929316944, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2624201339243, -4.146484631135281, -7.0, -3.9199492952397463, -2.985512748745352, -7.0, -7.0, -7.0, -4.350209240309948, -7.0, -4.325125526216931, -2.910229876516631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067554376693503, -7.0, -4.052963128755503, -7.0, -3.308315360887939, -7.0, -7.0, -4.050515089642183, -3.857292282117438, -4.392626616474039, -7.0, -7.0, -4.371178731816287, -7.0, -4.343802333161655, -2.8806889746807043, -7.0, -3.975232615453934, -2.9176859904596166, -7.0, -7.0, -4.363179350058686, -7.0, -4.332115143703462, -7.0, -7.0, -7.0, -7.0, -3.3240318112662224, -7.0, -7.0, -3.7565220053905515, -7.0, -7.0, -7.0, -7.0, -4.3618033589256875, -3.5634726096192386, -7.0, -4.0527324074032185, -7.0, -7.0, -4.444653631000238, -4.349782453363471, -7.0, -7.0, -4.062393937253195, -4.328787200354535, -3.670653972304614, -7.0, -4.34523646004688, -7.0, -3.446623958820909, -7.0, -7.0, -7.0, -7.0, -7.0, -4.043342626242493, -7.0, -7.0, -7.0, -4.5370000873213385, -4.32990612340021, -7.0, -7.0, -3.7740203453406393, -7.0, -4.356121506236986, -4.338476414912923, -3.913478292083329, -3.1977726765713683, -7.0, -7.0, -7.0, -7.0, -3.8038958708450883, -4.331447542877797, -7.0, -7.0, -4.376941757146759, -4.39100571835171, -7.0, -3.9446553685692547, -3.3683545135832196, -7.0, -7.0, -7.0, -4.37630315575592, -7.0, -3.886490725172482, -7.0, -7.0, -7.0, -3.7015679850559273, -7.0, -7.0, -7.0, -3.5983825736810133, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4912355900332503, -7.0, -4.061666055214047, -4.400468911217488, -7.0, -3.6670947846969737, -7.0, -7.0, -7.0, -2.8369842214428083, -3.4771534234898636, -7.0, -7.0, -7.0, -2.969660680946805, -7.0, -7.0, -7.0, -7.0, -7.0, -4.33897415086708, -7.0, -7.0, -7.0, -7.0, -4.143841983496664, -7.0, -4.3261719452891745, -3.061721880100873, -4.3243030374868345, -7.0, -7.0, -7.0, -7.0, -7.0, -4.317770922950241, -3.5032306252680336, -7.0, -3.6921195499645236, -7.0, -7.0, -2.93201920696319, -3.729083757043612, -3.797042369698197, -4.082048958148108, -7.0, -3.8782727899035083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4661258704182, -7.0, -4.3252487652875375, -7.0, -4.507680500010818, -7.0, -3.637256175066493, -4.326868159893682, -4.341315794596473, -7.0, -7.0, -7.0, -7.0, -7.0, -3.657457437356336, -2.64957822912025, -3.4381149636619983, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325043347403704, -7.0, -7.0, -3.454128063868426, -7.0, -3.3531722243599043, -3.493923076927451, -7.0, -7.0, -4.326561143964193, -7.0, -7.0, -7.0, -7.0, -4.342521372898964, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.835977193225308, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5836844714826976, -7.0, -7.0, -7.0, -3.570914245110417, -4.0484029561527395, -3.9582691573533264, -7.0, -2.7269035130189034, -7.0, -4.322074505773784, -7.0, -4.478912638929306, -4.411737521817357, -4.468952557265534, -4.406625327867205, -4.4348402532975735, -7.0, -7.0, -7.0, -7.0, -4.365019742816535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504727542189424, -3.8588578876206907, -7.0, -7.0, -3.154535643494955, -7.0, -7.0, -3.9957996689346427, -7.0, -7.0, -7.0, -4.3462355816990375, -3.1657931554017056, -4.371086342494794, -7.0, -7.0, -7.0, -7.0, -2.793026934015807, -4.442824559187638, -7.0, -7.0, -7.0, -4.414839698336927, -3.689077884492417, -7.0, -7.0, -4.058255158229489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.543145296881339, -7.0, -3.321132199092705, -7.0, -3.0086809154269707, -7.0, -3.3815088944507314, -3.220265033587232, -3.720242018287057, -7.0, -7.0, -7.0, -4.074432424783191, -3.9441206092013927, -3.9304226032574, -7.0, -7.0, -7.0, -4.35778243623142, -7.0, -7.0, -7.0, -4.392943042340061, -7.0, -3.225434348532171, -7.0, -7.0, -3.0590242564640455, -2.8268651077942386, -2.737550989984645, -4.088153814644183, -2.305894630568496, -2.8779370338525085, -2.539154540856009, -2.085280893078655, -2.7886849514854286, -3.3273005379250478, -3.78265175161032, -2.7857934390100025, -2.273348870888125, -2.2520215366540106, -2.9875396517154216, -2.7313375524452694, -2.1200579131259305, -3.052325839013353, -2.657533887557986, -3.1789130287586653, -2.8482978128953333, -2.3132412519697714, -2.424434094874744, -2.577427519432756, -2.999407376098304, -2.5100106099225887, -2.4478630874001825, -1.9661604130089516, -3.7501611290217176, -2.7830739811562824, -2.5601080778478438, -2.162850015554981, -7.0, -0.7927023310481276, -1.8474761957022081, -0.6804478110759631, -0.7157613197949776, -3.1066023897279793, -2.75733479414663, -3.5575425837527512, -7.0, -2.9564864261652346, -3.232258962342702, -3.7477224620355085, -3.695604242313307, -2.7788221050942195, -3.75077829865311, -3.0450899717952025, -4.177796133292215, -4.369271532621027, -3.217565622015339, -2.9278717568932096, -3.0622695903007724, -7.0, -2.8707787029439324, -3.5847510978442347, -7.0, -3.4230983526454675, -2.8022083732093863, -4.396687435992471, -7.0, -3.246711655738116, -2.8414298821170925, -2.8523820261304644, -7.0, -4.400814192267559, -3.7218312169289187, -3.1453341143778153, -3.817714075084912, -3.8822983828565656, -3.6628926848054344, -3.866700756042499, -7.0, -3.9166013204578434, -3.6751181523167986, -3.074875572578264, -7.0, -3.609772216589793, -3.5227212849892453, -3.5822032661043184, -3.6282271039209024, -7.0, -3.2625435942161194, -3.210908385564785, -7.0, -3.2743834261010925, -7.0, -4.383725626444643, -3.352454090637652, -3.7571790442859356, -7.0, -7.0, -7.0, -7.0, -2.2363923022305676, -3.1049071253508416, -7.0, -3.5964871337365443, -7.0, -4.346216013155006, -3.3035765799789134, -4.055320982366588, -7.0, -7.0, -3.810618908484714, -7.0, -2.4996186230269615, -4.086306430529356, -4.327440676242755, -7.0, -2.8015719634582323, -4.349821269512391, -3.919078092376074, -3.855317205195943, -4.326356346034385, -3.817400081458108, -7.0, -7.0, -7.0, -7.0, -7.0, -4.184137565214032, -7.0, -7.0, -3.270889819404854, -2.6266693909392713, -1.7867272544558848, -7.0, -7.0, -4.461393467035359, -7.0, -4.365413100076178, -7.0, -7.0, -3.626500047045582, -7.0, -7.0, -7.0, -3.8626480890490678, -3.797284856852405, -7.0, -4.0416886941315635, -7.0, -7.0, -7.0, -3.698347069034933, -3.2126838649269582, -7.0, -3.7737133252770216, -4.372193719275734, -3.1173687913306387, -3.5348000348742032, -7.0, -7.0, -3.3700811092612613, -4.350499991128803, -2.8337395275925594, -4.063839803002981, -4.08289303328818, -7.0, -3.4819951270342555, -2.855774116844509, -7.0, -3.941312625360662, -7.0, -3.7487305560984945, -3.580044747846509, -3.492540892167152, -7.0, -3.821038361317505, -3.3365287406782453, -7.0, -4.353916230920363, -4.005266332972769, -3.7631845706896083, -4.109291622066701, -7.0, -3.4505010436345014, -3.4924111373136824, -4.338017993470888, -7.0, -7.0, -7.0, -3.312660846032607, -4.364701049594699, -4.0300124406298, -3.886772643054438, -3.0699012492626916, -4.350228629754866, -3.638052246729691, -3.099986529255579, -3.4922189290866443, -4.06199877337403, -4.326540668516562, -7.0, -7.0, -7.0, -3.919269907010536, -3.4457079649469864, -7.0, -4.042811691807148, -7.0, -3.3987980983714206, -7.0, -4.323973605350882, -7.0, -7.0, -7.0, -7.0, -4.32054091992458, -7.0, -4.3419684081799375, -7.0, -7.0, -4.026247181477774, -7.0, -7.0, -7.0, -7.0, -4.356599435724971, -7.0, -3.0568128857204915, -3.938903149306872, -3.917155272048159, -4.328155261969947, -7.0, -4.374766670285203, -4.326069466588894, -7.0, -3.0800808854947244, -7.0, -7.0, -3.771477239864823, -4.361236616731331, -7.0, -7.0, -7.0, -4.051808294317092, -7.0, -4.394294045352843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.05207305990422, -7.0, -7.0, -7.0, -3.70661822733253, -3.590089133690572, -7.0, -7.0, -7.0, -7.0, -4.185683780318504, -2.972262193363085, -4.3532813395452905, -7.0, -4.289722698213798, -3.1938514061610848, -7.0, -7.0, -7.0, -4.228656958108935, -7.0, -7.0, -3.3120050534980376, -4.204581175577571, -7.0, -7.0, -3.8944545273697826, -7.0, -7.0, -7.0, -7.0, -4.233706654286382, -7.0, -3.352724338457504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.256188382589775, -7.0, -7.0, -3.0412792182779183, -4.2462523122993225, -4.359323129976207, -3.000599326273475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.077246746270425, -7.0, -7.0, -3.9387698227831174, -7.0, -7.0, -7.0, -7.0, -7.0, -3.480754677678501, -7.0, -4.233402277811895, -7.0, -7.0, -4.349685397810314, -7.0, -7.0, -7.0, -3.9450252012424625, -4.200084063662152, -3.408966412900081, -7.0, -7.0, -7.0, -3.481165275721802, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.461903519335254, -7.0, -7.0, -7.0, -3.9076263048432662, -7.0, -7.0, -4.213065962065718, -7.0, -3.286658524615686, -7.0, -7.0, -7.0, -4.212054364801163, -3.550661875014696, -4.203658299456246, -7.0, -7.0, -7.0, -7.0, -7.0, -3.996336518095784, -3.7412061626491493, -7.0, -7.0, -4.198959338670202, -4.100558162695284, -7.0, -3.945320840792275, -4.27618597407067, -7.0, -7.0, -4.064233296034753, -7.0, -7.0, -7.0, -3.678598037912645, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3655050023663393, -7.0, -3.986906031380721, -3.9929068182233123, -7.0, -4.350616236975831, -7.0, -7.0, -7.0, -3.377008051526662, -3.6343160172184157, -7.0, -7.0, -7.0, -2.9876224583030213, -7.0, -7.0, -7.0, -7.0, -7.0, -4.213730203854841, -7.0, -7.0, -7.0, -7.0, -4.349995899262856, -7.0, -4.196563035148052, -3.4965392919327227, -4.194042327886423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9283190245037223, -7.0, -7.0, -3.3125444135063975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.566178134479448, -7.0, -4.426820199963355, -7.0, -4.012119835804513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.237065952555404, -3.3439296430348087, -3.864689034136851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.884587698518654, -4.2709581850920975, -3.6748152298035857, -3.3785664849510084, -4.182671386675478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.59536901816875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.992398858487621, -4.222976449893391, -7.0, -4.029018329546481, -7.0, -7.0, -7.0, -3.7720404001784864, -4.22768107275287, -3.9915538885915707, -7.0, -2.778355189294754, -7.0, -7.0, -7.0, -7.0, -4.308329596317398, -7.0, -4.301832698184397, -7.0, -7.0, -7.0, -7.0, -7.0, -4.248144987287778, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.066661302300677, -3.908753019184534, -7.0, -7.0, -3.0270197814276156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3777978331112255, -3.9549898177161404, -7.0, -7.0, -4.259593878885949, -7.0, -3.153316096131449, -4.046339055604809, -7.0, -7.0, -7.0, -3.835056101720116, -3.8010147519958153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5001907186772634, -7.0, -3.358300615104299, -7.0, -2.8435499033564087, -7.0, -3.4194807372393323, -3.2835310112543548, -4.016887157902775, -7.0, -7.0, -7.0, -3.9607323219456383, -7.0, -4.002014788579384, -4.228836487527934, -7.0, -7.0, -3.6364377439793962, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4647968279841517, -7.0, -7.0, -3.2020232907090485, -2.76035179171932, -3.046781218014158, -3.8023403545380106, -2.716890229017429, -3.0788757753354, -2.054403749346116, -2.021757440269967, -2.6726653809000602, -3.3061032087275857, -2.9111344395713137, -2.951623914708634, -2.2698529110122228, -2.79662007329528, -3.007049865423465, -2.824595830071867, -2.5805237212934, -2.927936449612896, -2.2150157709674456, -3.1005428500124648, -2.6873881317862036, -2.4023711903588105, -2.50686913343504, -2.7899553731353857, -2.4978983291481995, -2.2848187024759126, -2.59659709562646, -1.4229130248643294, -3.328022642064409, -2.8485116746039396, -2.1393215934514913, -2.09527901059004, -0.7927023310481276, -7.0, -0.9626905343016964, -0.5112127463855725, -0.7618305723701568, -3.458889540995547, -2.364456457828549, -3.9025234837947833, -7.0, -3.2707776164081075, -3.3618801933185427, -3.875177059814704, -3.8094025770958426, -2.9336559786575473, -7.0, -3.0665239222329292, -3.914660430589222, -7.0, -3.02498822250529, -3.072768502132931, -3.454858712881094, -7.0, -2.8458109383710863, -3.553073530637089, -7.0, -4.021995097954464, -2.8430401435941177, -4.289142835932333, -4.204472703648964, -3.194853381628648, -2.8934458584929437, -2.8227317862798773, -7.0, -3.99334803992326, -7.0, -3.1017884680466774, -7.0, -3.548920928104592, -3.728288835934386, -3.3194114508266073, -7.0, -3.599494919231938, -3.475588180969073, -3.3860154118710715, -3.42949850224274, -3.794975744051132, -3.627263416568221, -3.592398846115564, -3.481986946998056, -7.0, -3.2549718659011795, -3.1021773798589933, -4.265666699452483, -3.333751293283423, -7.0, -7.0, -3.061311084170788, -3.7603470785299065, -7.0, -7.0, -7.0, -7.0, -1.7297421890640772, -3.077141932831542, -7.0, -3.4781478706432734, -7.0, -3.6211503064479005, -3.611640712232615, -4.236814275171272, -7.0, -7.0, -4.30965145584932, -4.186419489155475, -3.043513847574348, -3.9760976755658817, -7.0, -7.0, -3.7511250715355837, -4.228143607597742, -3.9875322027298394, -2.973779621328686, -3.2933349269572516, -3.5398703234865425, -4.197693975083923, -4.200959878391846, -7.0, -7.0, -7.0, -4.098522590941953, -7.0, -7.0, -3.3727439493813733, -3.213505256885292, -1.783566892227157, -7.0, -7.0, -7.0, -3.727351448929302, -7.0, -7.0, -7.0, -3.7353593330017105, -7.0, -4.189181397180737, -3.9351544472161684, -4.214896807560221, -3.292278228672973, -4.1963420201397685, -3.315314212257778, -7.0, -4.198794500175598, -7.0, -4.088082906528282, -2.926642506981403, -7.0, -4.262308674749025, -7.0, -2.4524621781219906, -3.2037730116913004, -3.594088548371163, -7.0, -3.878636673026517, -7.0, -3.3335516904838083, -7.0, -3.494386526991594, -7.0, -3.2434514656445983, -3.038023740045158, -7.0, -3.83968749733336, -4.193597610298094, -4.229579462665645, -3.422138240878906, -3.170341737717802, -7.0, -3.8456147497502875, -3.680531913962837, -7.0, -7.0, -3.942256150419465, -7.0, -7.0, -7.0, -4.107006346381544, -2.9252223797699557, -4.212453961040276, -4.208387603795154, -7.0, -7.0, -3.1134361873995866, -3.293092341218131, -7.0, -3.3433347279168006, -3.2717075994955067, -3.9276013093257225, -3.563733164073743, -3.179978077587035, -3.509314554959585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.116961764372151, -7.0, -7.0, -7.0, -3.342652927457154, -7.0, -7.0, -3.8833490849946153, -7.0, -7.0, -7.0, -4.188956592526399, -3.4219739065729424, -3.615502908341466, -7.0, -7.0, -4.198106998873402, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216429830876251, -3.362026703997158, -3.468495024507069, -3.5077659463446653, -4.199233930536901, -7.0, -7.0, -4.196424913949195, -7.0, -3.1881313117838195, -7.0, -7.0, -4.259402728142589, -3.4647875196459372, -4.2396747876467815, -7.0, -7.0, -3.75495958772171, -7.0, -3.5076984901097985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.093887520508484, -7.0, -7.0, -7.0, -7.0, -4.242740144605627, -7.0, -7.0, -7.0, -7.0, -3.225050696138049, -2.945941786252861, -3.9494388010365045, -7.0, -7.0, -4.251030698729345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.844063809083758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.437681873346445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5653755027140734, -7.0, -7.0, -3.2688119037397803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6340740254874686, -7.0, -7.0, -7.0, -4.330317365509652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.928549467001664, -3.36679638328673, -7.0, -7.0, -7.0, -7.0, -7.0, -4.206717963375834, -4.064450501326473, -7.0, -7.0, -7.0, -4.999169704354565, -7.0, -7.0, -3.718667735316211, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.912416922612287, -7.0, -7.0, -7.0, -7.0, -7.0, -4.074999186064199, -7.0, -7.0, -3.478566495593843, -7.0, -7.0, -7.0, -7.0, -7.0, -4.099335277685958, -7.0, -7.0, -7.0, -7.0, -4.2553810651543404, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2236821951943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.993951595374087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1160429268492065, -7.0, -3.839603729470837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.600173959212428, -3.442636525782232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9706722426897194, -7.0, -3.690993032099869, -4.672561306030661, -3.196728722623287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.86914367814229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8880671134074367, -7.0, -7.0, -7.0, -4.0384015690099515, -7.0, -4.071697945221614, -7.0, -3.378158303868406, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.59140490963274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0090682761922185, -7.0, -7.0, -7.0, -3.6555225962534177, -7.0, -3.824720456582034, -3.9343974407809883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.86410151204742, -7.0, -4.159927374995174, -7.0, -7.0, -4.324533491388053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.518921721978057, -7.0, -7.0, -3.2457700783611916, -3.5760820785097818, -3.819763220818885, -3.4295100408131383, -4.120285951147618, -3.1630736369452643, -1.7932664017413886, -2.8463262584308806, -2.9081801438349584, -3.1236066689862163, -2.3846691002476987, -3.425187657417824, -3.4728864095132606, -3.6408960461852953, -3.0372825946866087, -3.2056875899386528, -3.070722461788708, -3.1018393712025105, -2.130296789953377, -3.056824641809621, -2.6486260956304704, -3.3643527310171173, -3.0690583773222135, -2.943593432768369, -2.3126383071751855, -3.5748219286222884, -3.5550199970319314, -1.8927428035300704, -3.529430354366986, -2.9688707307451963, -2.295736217753519, -3.2723058444020863, -1.8474761957022081, -0.9626905343016964, -7.0, -1.8485087913944487, -1.7603398472357488, -3.771058068606956, -2.4000462323938807, -4.626165793139279, -7.0, -7.0, -3.8942200345812, -3.947139517642829, -7.0, -3.2721124722621524, -7.0, -3.733109454087558, -7.0, -7.0, -3.116200062045703, -4.013880713023503, -4.389927647380955, -7.0, -3.756225197591558, -3.414416202952902, -7.0, -3.8683504996479683, -4.393926006585837, -7.0, -7.0, -4.394661772492929, -3.5917505350796386, -4.139161474170334, -7.0, -7.0, -7.0, -3.4836918763698206, -7.0, -4.805291816380721, -4.117204986092783, -4.247211970742112, -7.0, -3.5669871327264575, -3.9734049744100606, -4.489979561169549, -2.867804085032966, -3.9428757745535403, -3.5766292484476274, -3.863095647914823, -4.2024474467730135, -7.0, -3.907826497930791, -3.52992441071121, -7.0, -4.44670022987886, -7.0, -7.0, -3.7170668969538765, -3.8431081419996067, -7.0, -7.0, -7.0, -7.0, -1.7529016789031202, -2.9664119711717043, -7.0, -3.370301561079633, -7.0, -3.009309224134771, -3.8875985480102555, -7.0, -7.0, -7.0, -7.0, -3.2317243833285163, -3.236530453031208, -7.0, -7.0, -7.0, -3.8615344108590377, -3.51241754860084, -3.460747541844197, -2.1953460583484197, -2.411409240981208, -3.0756685954731195, -3.3240765797394864, -3.3479151865016914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.462622574900549, -3.373948932062513, -2.0463848759412233, -7.0, -7.0, -7.0, -2.895238327804661, -7.0, -7.0, -7.0, -7.0, -7.0, -3.255995726722402, -3.251638220448212, -7.0, -2.8713539819330216, -3.3138672203691533, -2.5561516778861386, -7.0, -3.3322364154914434, -7.0, -3.7340393487571233, -2.7190462913403337, -7.0, -7.0, -7.0, -2.2679994817957256, -2.949189030779539, -2.7103289580426293, -7.0, -3.478566495593843, -7.0, -3.6592232743780433, -7.0, -2.9271992125020683, -7.0, -2.5471591213274176, -3.9144489406985543, -7.0, -3.373157297798375, -3.292477593667784, -7.0, -3.0965624383741357, -2.3780673876278455, -7.0, -7.0, -3.943138228539406, -7.0, -7.0, -4.0287338793493355, -7.0, -7.0, -7.0, -4.076786033508079, -2.414061283620403, -7.0, -3.398287305357401, -7.0, -7.0, -3.339469510182976, -2.7011360660925265, -7.0, -2.7551122663950713, -3.181781470447434, -3.213916009644023, -3.4162243170985684, -3.4463100912355067, -3.156321950446713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.932763584161985, -7.0, -7.0, -7.0, -3.2103352437217962, -7.0, -7.0, -3.2135177569963047, -7.0, -7.0, -7.0, -3.254064452914338, -3.272421826371504, -3.1539672216454786, -7.0, -7.0, -3.3271545124094315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.062769949815128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4724505940728925, -7.0, -7.0, -7.0, -2.806179973983887, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9744349283567657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.140411729722199, -7.0, -7.0, -7.0, -3.5291093917613616, -3.742866469979114, -7.0, -7.0, -7.0, -7.0, -7.0, -3.742672771972318, -4.280578370368076, -7.0, -4.2043642046210055, -3.2133504384571974, -7.0, -7.0, -7.0, -7.0, -7.0, -4.086217415693343, -3.3259772150789204, -7.0, -7.0, -7.0, -4.086715663944882, -7.0, -7.0, -7.0, -7.0, -4.135164466656955, -7.0, -3.419451371669478, -7.0, -7.0, -7.0, -7.0, -4.197308131503102, -7.0, -7.0, -3.8621015503709666, -7.0, -7.0, -3.050954749853564, -7.0, -7.0, -2.82910575870157, -7.0, -7.0, -4.150203628762808, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.318557569110699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8597865518865944, -7.0, -3.8336888448364133, -7.0, -7.0, -4.276323911020188, -7.0, -7.0, -7.0, -4.150664353529561, -3.791445017261999, -3.0810771401550445, -7.0, -7.0, -7.0, -3.6901553555257225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.406369835469268, -7.0, -7.0, -7.0, -4.016552844116219, -7.0, -7.0, -7.0, -4.19423674872383, -3.4330309235264505, -7.0, -7.0, -7.0, -7.0, -3.706595875112968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.41954272470028, -3.754373821728567, -7.0, -7.0, -7.0, -4.564208255737469, -7.0, -4.151032581756442, -7.0, -7.0, -7.0, -3.8935259698929654, -7.0, -7.0, -7.0, -3.585936751082949, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3891266907882067, -7.0, -4.107786384315953, -7.0, -7.0, -3.8002128574963217, -7.0, -7.0, -7.0, -3.3151876434820333, -3.5578679615680224, -7.0, -7.0, -7.0, -2.9646555488767823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276691528845039, -7.0, -3.7869287937967515, -3.248848894607795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073388381115178, -3.693243153309189, -7.0, -3.7844033017530085, -7.0, -7.0, -3.260409000530892, -4.096805769822717, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.52310886038063, -7.0, -7.0, -7.0, -3.6305549918068194, -4.089233731365399, -4.113909943754037, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6621279628519448, -3.253350760498344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5914653093294784, -4.181414796254284, -3.618048096712093, -3.5854846070205957, -4.0701117827822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5639686348131656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.731696184054935, -4.12165831249807, -7.0, -3.9519443296839407, -7.0, -7.0, -7.0, -3.9034155857690864, -4.127590677007958, -4.658659967620744, -7.0, -2.964328969759512, -7.0, -7.0, -7.0, -4.325905450354342, -7.0, -7.0, -3.917977882592908, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153204900084284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5192371614969833, -3.6277412634214152, -7.0, -7.0, -3.231884293201811, -7.0, -7.0, -4.009620840814325, -7.0, -7.0, -7.0, -4.122183100093868, -3.3090336675041403, -4.163042046914198, -7.0, -7.0, -7.0, -7.0, -3.09778853040459, -3.7964124254316354, -7.0, -7.0, -7.0, -4.2316479611536, -3.4911374839780263, -7.0, -7.0, -4.1438887581092745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2872697292733806, -7.0, -3.4432734208344367, -7.0, -3.0648442126351885, -7.0, -3.340939602038078, -3.51919023560018, -7.0, -7.0, -7.0, -7.0, -3.869055618701908, -7.0, -3.9194964878630616, -4.129045059887958, -7.0, -7.0, -3.664108964176918, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4048136006153067, -7.0, -7.0, -3.362456770008371, -3.055002033070937, -2.8961634771431384, -3.714720839899443, -2.764093069469182, -3.220830065905614, -2.541579243946581, -1.9334572522470266, -2.9954806316406293, -3.8414220444023592, -4.1850035564918056, -2.8842564255361953, -2.2404044317337615, -2.755336465082909, -3.278982116865443, -2.756996236366832, -2.536842221969682, -3.1919226481853387, -2.6262811305909497, -3.4617303869186147, -2.730176424163481, -2.4868256069365926, -2.6320666419822683, -2.892392094254278, -3.3397946214759404, -2.4666939907094694, -2.514163733887782, -1.8506730122857966, -7.0, -3.1593154656815914, -2.718857424981556, -2.1063346999125083, -0.6804478110759631, -0.5112127463855725, -1.8485087913944487, -7.0, -0.3823794915671303, -3.255919078468227, -2.7077993811677814, -4.020808607577536, -7.0, -3.286965169029477, -3.3136597486201063, -3.8022947113974634, -3.7233461952304965, -2.889608468886824, -7.0, -3.2671243008085686, -3.626689305465622, -7.0, -3.335078828132144, -3.340848980668569, -3.4503004403307562, -7.0, -2.984887201064328, -3.6524155764759088, -7.0, -3.4662248436369283, -2.7222723585019852, -7.0, -4.098158983460533, -3.3575338601983535, -3.0846717677458857, -2.989210536493393, -7.0, -4.2100776242952875, -3.607025878434786, -3.3252889815821676, -7.0, -3.8221419162617774, -3.8897311147926015, -3.9676103703690884, -7.0, -4.0323904074998875, -3.681094185704896, -3.534775285671484, -3.885134966063434, -3.8405765344542693, -3.771391477501237, -3.6775157047987577, -3.5822493606940435, -7.0, -3.4775597146073878, -3.3348428675388484, -7.0, -3.4097603888227894, -7.0, -7.0, -3.2375186046331073, -4.191520876040194, -7.0, -7.0, -7.0, -7.0, -2.1586559793926074, -3.464116794444044, -7.0, -4.124014878887408, -7.0, -7.0, -4.221935599828005, -4.139060078649301, -7.0, -7.0, -4.228503016659257, -7.0, -3.0693861561522637, -4.18904090790901, -4.090222771686575, -7.0, -3.113679530602721, -7.0, -4.203005674728483, -3.7978558985883404, -4.088348752288528, -4.238823622261076, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3348155125062116, -7.0, -7.0, -4.007047564562988, -3.011044733143276, -2.0595688877160585, -7.0, -7.0, -4.300769340770549, -7.0, -7.0, -7.0, -7.0, -3.619436216286686, -7.0, -7.0, -7.0, -3.8103333486611493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4310419453358856, -7.0, -4.17076028088121, -7.0, -2.894381228035585, -4.1026394836913, -7.0, -7.0, -3.8063835018241674, -7.0, -3.1893992052440003, -4.153021743626138, -4.1836399042213515, -7.0, -3.4877744973806672, -3.0085292028130053, -7.0, -3.9361365870214917, -7.0, -3.8288853618404413, -3.94647682848594, -4.10809123558122, -7.0, -3.943247125137862, -3.6912503203314233, -7.0, -7.0, -4.0218092770223395, -7.0, -3.9237101943965627, -7.0, -3.645520514905874, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3580237285881256, -4.152685756036786, -4.096492890054361, -4.151492428425498, -3.575534218319864, -7.0, -3.935003151453655, -3.3451589343977806, -4.201888500365973, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9022205282793148, -7.0, -7.0, -4.118231648327027, -7.0, -3.780173243642594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.078239253809666, -4.247359422468937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.113375057094903, -3.3035919995390772, -4.233554492714523, -3.5008125896329667, -7.0, -7.0, -4.168968646554766, -4.087852375163169, -7.0, -3.3092853524161985, -7.0, -7.0, -4.167169590408632, -4.147026715222231, -7.0, -7.0, -7.0, -4.13325141247232, -7.0, -4.199919651590568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3358276770370354, -7.0, -7.0, -7.0, -3.57362573693412, -3.58508455410005, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6781995973581743, -7.0, -7.0, -7.0, -3.4621784516532577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.790268920325332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.957798774929998, -7.0, -3.957969247759722, -7.0, -7.0, -7.0, -3.6062738531699883, -7.0, -7.0, -7.0, -3.9993045723383487, -7.0, -7.0, -3.4807847825492697, -7.0, -7.0, -3.512183922360945, -7.0, -7.0, -3.9802306913910317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.641102123773089, -7.0, -7.0, -3.969322706112202, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9708085142876324, -7.0, -3.9572240578431668, -7.0, -7.0, -3.8547613566936363, -7.0, -7.0, -7.0, -3.6797911709803546, -7.0, -3.296665190261531, -7.0, -7.0, -7.0, -3.9049023407213768, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9334366678262804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.043872912391425, -3.7085908451503435, -7.0, -7.0, -7.0, -7.0, -4.014954336507545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.336419704862658, -3.849166803871281, -7.0, -7.0, -7.0, -4.545748198286153, -7.0, -3.680335513414563, -7.0, -7.0, -7.0, -3.8248739727439425, -7.0, -7.0, -7.0, -3.7798705441457825, -7.0, -7.0, -7.0, -7.0, -7.0, -3.765494702849603, -7.0, -7.0, -7.0, -7.0, -3.6800634274819486, -7.0, -7.0, -7.0, -2.957463615729931, -3.6529550777975013, -7.0, -7.0, -7.0, -3.539818116473136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8847953639489807, -3.5816083660320572, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8798124189827012, -7.0, -3.810568529216413, -7.0, -7.0, -3.5667853047831293, -3.8987251815894934, -4.0626195838543415, -7.0, -7.0, -3.961373627594801, -7.0, -7.0, -3.9108377649926833, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6201360549737576, -3.8867162741164782, -3.925415237084246, -7.0, -7.0, -7.0, -7.0, -7.0, -3.964118143151485, -3.323428906178432, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.697374664655637, -7.0, -3.529836566775372, -3.89246176118724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4976114436533603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8237349883987313, -7.0, -7.0, -7.0, -3.836434890986501, -3.9463539972262747, -4.135524877036065, -7.0, -3.073972577349435, -7.0, -7.0, -7.0, -7.0, -7.0, -4.201915782740697, -4.078565559317117, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.183725258045579, -3.6104472214421213, -7.0, -7.0, -3.4285412579858168, -7.0, -7.0, -3.9394360464718168, -7.0, -7.0, -7.0, -7.0, -3.5967894619644882, -7.0, -7.0, -7.0, -7.0, -7.0, -3.146401062863181, -4.152288344383057, -7.0, -7.0, -7.0, -7.0, -4.038341933653606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.561657814835876, -7.0, -3.749885323442982, -7.0, -3.300141591368224, -7.0, -3.510913468005192, -3.8417543174102082, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8081434257614912, -4.0806625563941825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7417254746093196, -7.0, -7.0, -3.3020296099215876, -3.0858981309770277, -2.8988965076723905, -3.5633624094866074, -2.9523452929588734, -3.159810595735413, -2.597542839313678, -2.0417119019913423, -3.0906633183364, -3.608632989490037, -3.42845877351558, -2.7752948358246115, -2.314178888357582, -2.8853366329178582, -3.204555997008698, -2.543307363216651, -2.6260168765633383, -3.376221462289134, -2.7367947549243605, -3.0038752244370777, -2.7194141597025934, -2.5345762073670035, -2.724787707588028, -2.69520396043928, -3.1432602210975396, -2.7236415128461675, -2.5637651072627095, -1.9974024177152132, -7.0, -2.9689036873904175, -2.780193827782793, -2.254529486133525, -0.7157613197949776, -0.7618305723701568, -1.7603398472357488, -0.3823794915671303, -7.0, -3.2664050133806186, -2.8510412458810004, -3.981156925112127, -7.0, -3.330584210632285, -3.6754751741703275, -4.160048139552876, -3.575534218319864, -2.8343431524801153, -7.0, -3.519592243525824, -4.220055760251341, -7.0, -3.6912204643369493, -3.3211134511957323, -3.783538338997308, -7.0, -3.1346232896624375, -3.5247205856840464, -7.0, -3.8124119583013405, -3.139449729488457, -7.0, -3.9008585047019917, -3.790011806634576, -3.178770868485576, -3.2934291915274496, -7.0, -4.066102196766773, -3.878808932359205, -3.606497806352983, -7.0, -4.1156887109195965, -3.970765159780768, -4.366815046163848, -7.0, -4.443262987458695, -4.052052348542061, -3.5980498568165213, -4.03249788285711, -3.5860056057388867, -4.118892725373621, -4.331801701423656, -3.573602552304502, -7.0, -3.7204028076946365, -3.81111902545676, -4.01628102454283, -3.5090320510666366, -7.0, -7.0, -3.498678054959745, -4.122346966255079, -7.0, -7.0, -7.0, -7.0, -2.3569079722192807, -3.4445972265477596, -7.0, -4.0420436387878205, -7.0, -3.6369390072874714, -7.0, -3.9636461864848433, -7.0, -7.0, -3.79046109860397, -7.0, -3.1335451697795484, -7.0, -7.0, -7.0, -3.2244898986163966, -7.0, -3.7551122663950713, -3.9021117234480043, -3.885304667588968, -3.804548308388056, -7.0, -7.0, -7.0, -7.0, -7.0, -4.23149507644823, -7.0, -7.0, -3.761880874972859, -3.177463522640562, -2.150533460409309, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.089481202687437, -7.0, -7.0, -7.0, -3.9215824403934163, -3.762040529978979, -7.0, -7.0, -7.0, -7.0, -7.0, -4.216033877818673, -3.3961024388097374, -7.0, -4.010299956639812, -7.0, -3.2443760940205717, -3.8399596313535307, -7.0, -7.0, -3.864333055033393, -7.0, -3.310710377369317, -3.9843922785242656, -7.0, -7.0, -3.4106647801187093, -3.139753185695353, -7.0, -7.0, -7.0, -7.0, -3.816373888752362, -3.9164013036038754, -7.0, -4.113107366520495, -3.791164125033335, -7.0, -7.0, -4.430913151004603, -7.0, -7.0, -7.0, -3.766710207262259, -3.5777980724041525, -7.0, -7.0, -7.0, -7.0, -3.869994000121742, -7.0, -7.0, -7.0, -3.6541230408637997, -7.0, -4.327501972540084, -3.622597359604622, -3.7535447596308416, -7.0, -7.0, -7.0, -7.0, -7.0, -4.056638097379652, -3.7637274037656985, -7.0, -3.9320676922007216, -7.0, -4.198643343240695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5135948904405634, -7.0, -4.0520009801013, -7.0, -7.0, -4.00770511436478, -7.0, -7.0, -3.5826427934453213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.46304147484323, -7.0, -4.4553778768849766, -2.7937927043611674, -7.0, -7.0, -7.0, -3.079613314908311, -3.4662347397183657, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0304677189005575, -4.2470521748566155, -7.0, -3.6633508724665367, -2.933524217189809, -7.0, -4.452874643755949, -7.0, -7.0, -3.8602481432437283, -4.453975401295882, -3.858318018621179, -7.0, -7.0, -7.0, -4.454189113874769, -7.0, -7.0, -3.8845688149183335, -7.0, -4.475642137554701, -4.453471233722936, -3.919227191992776, -7.0, -4.454905809342959, -3.194514341882467, -7.0, -3.7268358369615817, -7.0, -7.0, -7.0, -4.461588557771539, -7.0, -2.7964740671351396, -7.0, -3.510337805729326, -3.7511379096597075, -7.0, -7.0, -7.0, -7.0, -7.0, -4.459362327372962, -7.0, -7.0, -7.0, -3.705459384667452, -7.0, -7.0, -3.877025615867249, -7.0, -4.041655814207112, -7.0, -7.0, -4.180469961659198, -3.662846839441356, -7.0, -3.6971712003830453, -7.0, -7.0, -3.5913738234738113, -3.9952548376314962, -7.0, -7.0, -3.441109303452063, -3.757608568481492, -3.7885077521028796, -3.6477321656644315, -3.769923543522596, -7.0, -2.923693671895851, -4.492383185039623, -3.1329568741326845, -4.449216046206292, -7.0, -4.179953729631548, -4.167332106418112, -3.8753796292918614, -3.895519229340754, -7.0, -3.921467973002443, -7.0, -7.0, -7.0, -3.364034788118208, -7.0, -4.477222578278151, -4.463937759305199, -3.6583521534277548, -3.1928039051875543, -7.0, -7.0, -7.0, -4.162310446238798, -3.3924373204536415, -7.0, -7.0, -7.0, -7.0, -3.7255849722706946, -3.8567892887533164, -4.6286136831451605, -3.106299094127515, -3.9782109606289833, -4.061175930448312, -7.0, -3.3604453764272515, -7.0, -4.482959291167214, -4.19942604159399, -7.0, -7.0, -3.4216222048724814, -3.281033367247727, -7.0, -7.0, -2.751390315674036, -7.0, -7.0, -7.0, -4.449971810566892, -7.0, -3.738089394524819, -3.2166804145591215, -3.2598534598303455, -3.73290281908457, -7.0, -3.6431441191148397, -7.0, -7.0, -7.0, -3.0339372775416797, -3.690297361391357, -7.0, -7.0, -7.0, -3.516437948521294, -7.0, -7.0, -7.0, -7.0, -3.84789640861558, -3.9871297676598974, -7.0, -7.0, -7.0, -7.0, -4.546011808977598, -7.0, -7.0, -3.128491583413, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2770056921365063, -3.975431808509263, -3.1773037216202193, -7.0, -4.039625596193842, -2.829463733017695, -4.458547204196593, -3.5557525825740743, -3.719510824558501, -4.163101715043975, -3.999550997010515, -4.1648433909076195, -7.0, -7.0, -4.465962515279378, -7.0, -7.0, -4.508408503596661, -7.0, -4.261857385629898, -4.471144965160633, -4.21830788296991, -7.0, -3.693232151688388, -7.0, -4.522939542252115, -7.0, -4.466066475658547, -7.0, -7.0, -7.0, -7.0, -7.0, -3.875423024746981, -2.8878249642615463, -3.1600806843827383, -7.0, -7.0, -7.0, -4.449046203903854, -7.0, -7.0, -7.0, -7.0, -3.0212744465031887, -4.196314385353599, -3.4380568912567635, -3.4008001306246003, -7.0, -7.0, -7.0, -4.461498526783019, -7.0, -7.0, -7.0, -4.165911730053656, -7.0, -7.0, -7.0, -7.0, -4.451694349193542, -7.0, -7.0, -7.0, -2.890194363359256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.469527479187014, -3.184162110347251, -3.3289399506281896, -3.9910487764526765, -7.0, -7.0, -3.1268076047048265, -3.1493950828692556, -2.9035339248279906, -7.0, -2.923580200410283, -3.9817884153334724, -3.9745270439853426, -7.0, -7.0, -3.4056877866727775, -3.719934712141819, -4.038792309231842, -4.538058205908395, -4.4651299351405545, -7.0, -7.0, -7.0, -3.6387031424462313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6958026089088825, -3.278199853444053, -4.161068385471174, -7.0, -4.46551668871213, -2.7812747683709502, -3.645974611730776, -7.0, -3.525017026117495, -7.0, -7.0, -7.0, -4.46976312459806, -3.284739350248932, -3.4469182571714287, -7.0, -7.0, -7.0, -3.6974618344579375, -2.580415991076328, -3.2886714373796004, -4.146840934035067, -7.0, -7.0, -3.480712327117477, -3.3874308989061266, -7.0, -7.0, -7.0, -4.451863159220613, -4.171726453653231, -4.453455946777304, -7.0, -7.0, -7.0, -3.7236198355154633, -7.0, -3.582880285080852, -3.183939405552801, -2.869465178735402, -4.456957849457605, -3.750649793952829, -3.8900032587038527, -4.224830777267873, -7.0, -7.0, -7.0, -4.1909057081427346, -4.527423658682064, -4.516733636616387, -7.0, -7.0, -7.0, -4.478479916635806, -7.0, -7.0, -7.0, -4.204309944940537, -7.0, -3.0833051284625346, -7.0, -7.0, -2.5136353415760677, -2.5685340807475896, -3.363630780112138, -3.900353471382553, -3.1821456867523463, -2.5766995945548037, -2.9538587750319683, -2.575351881915607, -2.1826008732120212, -3.2675940797612917, -3.219860163746929, -2.7427890498392022, -2.906041036728826, -2.932795883138276, -2.4783935864814053, -2.8370991724756154, -2.8041161229585065, -2.01774202765819, -3.185190724277791, -2.817683070676147, -3.5928704078897615, -2.811921195192953, -1.8981841623788391, -2.2940678038836153, -3.113522863829351, -3.3674180474093456, -3.070871674152227, -2.722633922533812, -3.6290890758031935, -1.3235047974925307, -2.76435258836705, -3.2032875576673656, -3.1066023897279793, -3.458889540995547, -3.771058068606956, -3.255919078468227, -3.2664050133806186, -7.0, -3.330870151502827, -2.9668580923192476, -7.0, -2.762836754244074, -2.6708822353808133, -3.6442662161844077, -2.94948487959529, -2.86207795289074, -3.8726806071519295, -2.5980824712218, -4.573126994434775, -7.0, -3.0979431935650594, -2.917472686782482, -2.7302976620971497, -4.465397724292443, -2.644652967661531, -3.6310123043958322, -7.0, -3.4148062795010126, -3.6298681187461233, -3.906119457545562, -4.459136057687617, -2.942947645715167, -2.3340211016163104, -3.0067079239265064, -7.0, -4.2103987886522445, -7.0, -2.9119340261025153, -4.52630049936563, -2.883128885139733, -2.6455326560720773, -3.689989223876995, -7.0, -2.99534861432112, -2.885201898527871, -2.858068551271974, -3.721412123150759, -2.9519418546272673, -2.9620107849938013, -2.7501858408226485, -3.3339545320608925, -7.0, -2.503234411866825, -2.984446149906882, -4.017061177796396, -3.315092095446996, -4.453532376125107, -3.5438060099142876, -3.4529103602313107, -3.1694539986517043, -4.14938848527283, -7.0, -7.0, -4.449555531677028, -3.7369804812535694, -2.586587304671755, -4.174074351837882, -3.0872843914537613, -3.973789571309058, -4.1686889551577195, -3.2034978657478983, -3.699129216458944, -7.0, -4.4513258084895195, -3.289890477664777, -7.0, -2.967919314432321, -3.5977911368585116, -4.455697373286557, -7.0, -3.164713909486058, -4.472463896606989, -4.2068798223063, -3.982301391331439, -4.454890572811237, -3.9239172231131056, -4.4553778768849766, -4.457185256553668, -4.4682882387076095, -4.013286746786349, -7.0, -3.4640192523981677, -7.0, -7.0, -3.1825378519450087, -2.416343886613213, -2.33449317333422, -7.0, -4.181128699747295, -3.4448971661165024, -3.982014802967955, -4.484271360086347, -7.0, -7.0, -3.5776832455012926, -7.0, -7.0, -3.9999131324165713, -3.9877853965912387, -2.837064325573253, -7.0, -3.8650002766762355, -3.983761560286165, -4.455986239067319, -4.16818800475665, -3.0390990451760107, -2.7152076832489747, -7.0, -3.8901134942909175, -4.48943813884058, -4.170364408028852, -2.8774027622267004, -4.454616223792699, -7.0, -3.6464772461535957, -4.472975734594228, -2.5993545857525744, -4.182828205141933, -3.117602691690084, -4.465382851448418, -7.0, -2.446577575487802, -7.0, -3.2460059040760294, -4.4531194977640025, -7.0, -3.6853321958295053, -3.9863088371831394, -7.0, -3.5744557037528772, -2.5522708062068267, -4.200426389032534, -4.1744959193753, -3.7250036359745344, -3.8820831889703804, -7.0, -4.462353068559615, -3.0516518159075736, -1.9439033000780936, -7.0, -3.9841370981421775, -7.0, -7.0, -3.5567847823070253, -4.006551609086649, -7.0, -3.441495184218261, -2.497805680042165, -4.171711830697223, -2.969964388176368, -3.4357820663112877, -3.4657207449392846, -4.181429096133507, -3.7559358050069402, -3.9906791703965108, -7.0, -3.9028320480601133, -7.0, -3.0953571428528686, -7.0, -4.4679926595211485, -7.0, -3.002689293174031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0526170007462916, -4.466556239671248, -7.0, -7.0, -4.455606112581867, -7.0, -4.453012391121455, -7.0, -7.0, -4.176525336535, -4.465828815357437, -3.703259127330976, -3.921205104140926, -4.506450911340324, -4.45622934552542, -7.0, -7.0, -7.0, -7.0, -3.4288045757556866, -7.0, -7.0, -4.189490313699367, -3.8789524296286104, -7.0, -7.0, -7.0, -4.4747697096158685, -7.0, -3.9042691229519955, -4.164605624889347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.712256751122368, -3.124519158023724, -3.090500533931496, -7.0, -7.0, -3.4390167283875126, -3.187675798317812, -7.0, -7.0, -7.0, -7.0, -4.177247836255623, -2.788479959678761, -7.0, -7.0, -3.680901812206373, -3.190027865967299, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5292131133128692, -7.0, -7.0, -7.0, -7.0, -4.21900787825689, -7.0, -4.245636029406203, -7.0, -7.0, -7.0, -3.4135952373045524, -4.181100079728049, -7.0, -3.921790485658187, -3.8986429210566396, -3.976143559821804, -7.0, -7.0, -7.0, -7.0, -4.212374071200659, -2.8422811813183144, -4.2389238459924155, -4.353685468703508, -3.715334683792313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.179379417881757, -7.0, -4.261239071182586, -2.710525162960417, -7.0, -7.0, -4.232411578420845, -7.0, -3.9990652616597355, -7.0, -7.0, -7.0, -3.5790797156168574, -7.0, -3.924770174906564, -7.0, -7.0, -7.0, -3.7432222303773846, -7.0, -7.0, -7.0, -4.191925851711436, -4.247162809039331, -3.9554472105776957, -4.214313897424399, -7.0, -2.924612032671514, -4.255465481992464, -3.4437322414015967, -7.0, -7.0, -7.0, -3.9121157290788537, -3.752278985460119, -3.5653755027140734, -7.0, -2.924978217261524, -7.0, -7.0, -7.0, -3.6803899101516118, -7.0, -7.0, -4.2051502091401805, -7.0, -7.0, -7.0, -7.0, -7.0, -4.204119982655925, -3.6857417386022635, -7.0, -7.0, -7.0, -4.256645598044453, -3.797890483058349, -7.0, -3.514710047826209, -3.0266247225387346, -7.0, -7.0, -7.0, -4.208587222943199, -7.0, -3.9379940509361124, -7.0, -7.0, -7.0, -3.49606119726865, -7.0, -7.0, -7.0, -3.146518495349268, -7.0, -7.0, -7.0, -4.179465613075431, -7.0, -3.4018828223212823, -4.299114883600537, -3.6813618579795855, -3.3840172121632652, -7.0, -3.867663867912998, -7.0, -7.0, -7.0, -3.5104947417324657, -7.0, -7.0, -7.0, -7.0, -4.09136794755239, -7.0, -7.0, -7.0, -4.205366787866476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.344235034551639, -7.0, -7.0, -3.2457301694120755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5819875631939313, -7.0, -3.4850112145785728, -7.0, -7.0, -2.915673570986958, -3.7180862947830917, -3.5866323069495945, -3.565611724902059, -7.0, -4.2280922391569815, -4.208710019906401, -7.0, -7.0, -7.0, -4.2746657690813885, -7.0, -3.9816827273712856, -7.0, -4.370827547784376, -3.917058907196864, -4.261631565092629, -7.0, -3.944811558558846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3027204498961344, -7.0, -7.0, -7.0, -3.209083536295187, -3.034227260770551, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4528210635348096, -7.0, -3.272058312630265, -3.2805415242209643, -7.0, -7.0, -7.0, -4.2007137339640135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7549331407101207, -7.0, -7.0, -7.0, -7.0, -4.192567453336546, -7.0, -7.0, -7.0, -4.286905352972375, -7.0, -4.313782883155197, -3.092947575753602, -7.0, -7.0, -7.0, -3.847622007983925, -7.0, -2.6862071244824106, -7.0, -2.4602287034964188, -7.0, -7.0, -7.0, -7.0, -7.0, -3.143308763870973, -3.9943171526696366, -4.33150827628639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.223418056905294, -3.4588455054292027, -7.0, -7.0, -7.0, -2.9525169334354104, -2.4714090720870554, -7.0, -3.5752135116917656, -7.0, -7.0, -7.0, -3.914581133948868, -3.092979054430626, -3.9478256844424506, -7.0, -7.0, -7.0, -4.226367875856486, -2.6694011842990233, -3.864412186720744, -7.0, -7.0, -7.0, -3.7037855905304915, -4.271423367743581, -7.0, -7.0, -7.0, -7.0, -7.0, -4.185938589826589, -3.3363262895451586, -7.0, -7.0, -3.970695473826257, -7.0, -3.5943423167877353, -3.687049367377696, -3.2537496944674316, -4.192400170360129, -3.7145393107658986, -3.7964063374956316, -3.709566740542544, -7.0, -7.0, -7.0, -4.254741376091537, -7.0, -7.0, -7.0, -7.0, -7.0, -4.231189145482667, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5870558498481797, -7.0, -7.0, -2.6691227571656837, -2.5303242321888737, -1.6525021007993246, -3.3693550320570327, -2.832377208540889, -2.8900900929739746, -1.561142881377997, -2.01932320967471, -2.3147164804503, -2.8741011358794135, -2.5657297878311267, -1.7238471163939972, -2.5799337777611733, -2.6915789833449795, -2.3978735087320993, -2.47998256835454, -2.169506085719874, -2.556742982046201, -2.4808205042723865, -2.673680806269375, -3.3585296895559917, -2.8604036253437966, -2.6575404323265794, -1.6649368604307129, -0.9851421527466361, -2.910745645079236, -2.8086755289151313, -2.214623113871712, -2.730964517156539, -2.2826316017388204, -2.2006073320814195, -2.4826412859817872, -2.75733479414663, -2.364456457828549, -2.4000462323938807, -2.7077993811677814, -2.8510412458810004, -3.330870151502827, -7.0, -2.988668459314975, -4.196148539699125, -3.282069548255956, -3.4178535051684764, -3.501313618914804, -3.2795300649754404, -2.7820715967043443, -7.0, -2.629180391564149, -4.085558138243807, -4.246498580795801, -3.2819625605980587, -3.133809030190632, -2.511841381231268, -3.906712056942964, -3.116337886260724, -3.325043347403704, -7.0, -3.316557399977768, -2.606026703562754, -3.805296916157985, -3.8953120244757873, -3.507265878790705, -2.871348574274271, -2.5692679331476356, -7.0, -7.0, -7.0, -3.329729861208485, -3.197979956461525, -4.107216432315288, -3.380852339683557, -3.0761080654523694, -4.1769589805869085, -3.4708880404649234, -3.5047217366334786, -3.6205524447294355, -3.6658154279909354, -3.4104397862103464, -4.019240950395851, -3.5240482133438253, -3.110801275118248, -4.192818257048295, -2.944635805429082, -2.6926266329514807, -3.5594996572146744, -3.1095143538438785, -7.0, -4.265572461743118, -2.739406189097407, -4.233846088909559, -7.0, -7.0, -7.0, -7.0, -1.9070634317438555, -2.103623174492221, -4.225257576924099, -3.1948501384831234, -3.1393638071453336, -2.98434196069803, -3.2833964582800528, -3.0525143912994106, -7.0, -4.181986424480151, -3.2615007731982804, -7.0, -3.1547394712862498, -3.793138220806962, -3.888993384102904, -4.221805317996549, -2.9261396911223496, -3.7432745235119333, -2.882934163885178, -3.196535414422256, -3.073972002343153, -3.533666161312212, -3.8884041677370464, -4.192818257048295, -7.0, -3.9510702531688118, -7.0, -2.861815439410074, -7.0, -4.180441298194719, -2.7352439389249232, -2.7094772569508208, -1.4415908197937384, -4.175047699526168, -3.9366393882144446, -3.762753564933374, -3.7192760297176806, -3.764151215182033, -7.0, -7.0, -3.278820823997914, -7.0, -4.180813775754397, -4.228733908376136, -4.2070146586829, -2.5849189336400373, -3.585883537734565, -3.1311907879776646, -7.0, -4.190611797813605, -7.0, -3.104487111312395, -1.9242203627211898, -7.0, -7.0, -7.0, -1.4880478344452681, -2.64698541854197, -3.2845999065332405, -3.8797264966395772, -2.817390356669279, -4.221414237842339, -2.7778645655145366, -4.240698979186308, -2.6619782346651584, -7.0, -2.6696267589109772, -2.9906415201297722, -7.0, -3.079543007402906, -3.884228769632604, -7.0, -3.7172334927773156, -2.319434821234563, -7.0, -4.015611204503513, -2.943760779227193, -4.271051261492347, -7.0, -3.938582263081691, -7.0, -4.300204051252466, -4.20227029773729, -3.040550745877968, -2.635871988956423, -3.9034427079849827, -3.8993005694607925, -7.0, -7.0, -2.3848346308010715, -2.4310872155201055, -3.7178368674869255, -1.935062037626079, -3.1925854369172395, -3.618832257891557, -3.3831268885240657, -3.1644228411978355, -3.2013515984037575, -7.0, -4.188844146546897, -4.212240888801534, -7.0, -3.975891136401793, -4.282214133062335, -1.7335810253677884, -7.0, -7.0, -3.5963496422097987, -2.8950024143828985, -7.0, -4.1853154580036565, -4.175975431749513, -7.0, -7.0, -7.0, -3.48138529211277, -2.7994032136888687, -3.4314709841279067, -7.0, -7.0, -3.3444764855229927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2059363836944823, -2.7038500115766535, -3.501082095186496, -4.191059581827398, -7.0, -3.2533380053261065, -4.188197016558756, -7.0, -3.118311975665972, -7.0, -7.0, -3.775076200645214, -2.6317734235564716, -4.2322335211147335, -7.0, -7.0, -3.4462004946297733, -7.0, -2.6647795193361836, -7.0, -7.0, -7.0, -4.011802963585356, -7.0, -7.0, -4.310023834437932, -4.13569437848255, -7.0, -3.1893135196884166, -4.311880953037904, -4.138744663948892, -3.1141125249955577, -3.5122363800088334, -7.0, -7.0, -2.6328153576642506, -2.393888158192224, -3.7167335134653343, -7.0, -7.0, -7.0, -3.4069232124875093, -2.3395571527890606, -3.681874122128647, -7.0, -2.520449566143865, -2.2066781165037477, -4.016427410068392, -4.01205647985382, -4.610724025229824, -3.5138013224159392, -4.018648496692656, -4.012816141937047, -3.6943075566062507, -7.0, -4.6120417446452695, -7.0, -7.0, -4.627201940953156, -4.312399526311494, -3.6833972959193733, -7.0, -3.3743918868972482, -3.4101548610762307, -2.3674122514997986, -7.0, -4.138418494589286, -2.746367854866736, -7.0, -2.893917426651345, -7.0, -7.0, -3.9401278366627084, -3.6200214777674438, -3.032773683437139, -2.2706282102214805, -4.635091498324376, -2.3171222847962842, -3.43763866489855, -3.769957264165465, -4.617262517091374, -4.032759742667216, -4.617702616734304, -4.61853966998575, -4.31761419263232, -4.612147838326487, -3.771471989594546, -3.2820307129338744, -2.7780432982809646, -4.01040597262518, -7.0, -2.8754775801315455, -4.6109793799229974, -2.943751272633304, -4.650015952471839, -4.61217966137758, -3.332731257471133, -2.2878320147549918, -4.6118931699365255, -3.5504831459529296, -7.0, -7.0, -2.7293650302622163, -2.280836949797404, -3.8360496933453354, -4.610500466643181, -3.7898123009874545, -7.0, -3.462048424905515, -3.3408405498123317, -3.7221401254574156, -7.0, -2.0264030876062473, -3.298972099243842, -2.447898457853143, -4.009535876619219, -7.0, -3.271609301378832, -3.3235202277543374, -3.7861122837198264, -3.283399563240798, -7.0, -2.6932471538294744, -3.7721749608246142, -7.0, -7.0, -3.2987570408817506, -7.0, -3.3755010405719097, -4.621840721731609, -2.553980847326294, -2.34015780277726, -3.9169590156013583, -4.61366214952783, -4.0178677189635055, -4.144283542967987, -2.9835387745764432, -4.618194580987137, -7.0, -4.327747071252456, -4.341246520447747, -3.8047720536881493, -4.3173214779522615, -3.079126168979742, -2.2320793958503162, -7.0, -4.373840326678294, -7.0, -3.651453097444137, -4.319012316571296, -3.634970735172564, -3.4712036694702526, -7.0, -3.084544737611001, -2.237638431057246, -2.754680207530774, -7.0, -7.0, -2.541675231234385, -7.0, -7.0, -7.0, -3.120181063048784, -3.5691929602308528, -2.672935521979907, -3.4839199622336494, -2.8671488448410494, -2.2613454218203253, -3.6624745037503095, -3.7264011621029223, -7.0, -7.0, -3.9216968776220655, -3.9357339265238256, -2.94760940922976, -7.0, -7.0, -4.617073766347765, -2.8794376498259213, -7.0, -7.0, -3.626042522003252, -3.8436687229791437, -7.0, -2.578441237407785, -4.322808294799657, -7.0, -7.0, -4.625569658243046, -3.53413493815341, -7.0, -4.615476591451174, -2.2053263437697814, -7.0, -7.0, -7.0, -7.0, -7.0, -4.613355477979113, -7.0, -2.841663316638509, -3.5723962996252667, -3.3758683698200267, -7.0, -2.765697204987075, -2.1920479519897156, -3.5386889104527226, -3.040968776406264, -2.904233438555862, -3.621809598806646, -3.3999992948322952, -3.844953251054122, -3.7223665188137702, -4.620437977338462, -7.0, -3.186858953470273, -4.137976196582096, -3.2725764208314096, -7.0, -2.4569605985584455, -4.024742145874638, -2.5444674536166065, -7.0, -2.9177138502369337, -7.0, -3.517318456171289, -7.0, -4.021199639291648, -7.0, -7.0, -3.758628070702716, -4.328410186480327, -7.0, -3.250684239710383, -2.658211932290689, -2.235565441198802, -7.0, -4.610724025229824, -4.0118557916799, -4.13437900863513, -7.0, -7.0, -7.0, -4.615844882874702, -2.9691290599776985, -3.302517863774588, -3.1748670767814025, -2.239635732795565, -7.0, -7.0, -4.314625519201271, -2.833565094651821, -7.0, -7.0, -7.0, -3.419522063196344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9725495168372835, -7.0, -7.0, -7.0, -4.613196769750614, -4.014940349792936, -4.315308959193267, -7.0, -7.0, -4.6550038979849875, -4.32468363214722, -2.4032525456431375, -3.193653224907199, -2.5115932164835013, -7.0, -7.0, -2.2955167940561765, -2.8782857909806667, -1.1875312483580989, -4.6173463799861105, -3.0274444318978198, -3.6639834546082666, -3.6131861871396045, -4.613831254971802, -3.6212195705347923, -3.0926447886982458, -2.018017951790213, -3.3158368132320577, -3.259244597605882, -3.5810700271536153, -3.9177889950271254, -7.0, -7.0, -4.3348155125062116, -4.634033680419679, -7.0, -4.613704432062307, -7.0, -7.0, -4.623920893251629, -7.0, -3.151216578856456, -3.2905065109413227, -3.9215304135012423, -3.8561748468979484, -3.8446842291378767, -2.346971357713787, -2.9495164993070224, -4.1353765089832155, -3.2840594143879214, -7.0, -7.0, -4.043627490035012, -4.324848110377474, -3.030159555627922, -3.3600151119450192, -4.667219398443936, -4.325269301733074, -7.0, -2.7041198625619036, -2.3856381651674483, -2.5697669818215867, -7.0, -7.0, -7.0, -3.4869214098225383, -3.156490530223249, -4.614517569528736, -7.0, -3.933770650991845, -4.613482402816421, -3.9289588408808296, -3.0697949105630427, -3.5425573202945824, -7.0, -4.318407710839007, -3.3929801389148486, -3.8386497310943164, -2.8820014945835553, -2.827739375052605, -2.7757071643361386, -4.617000341120899, -3.412441879739619, -3.1347002127414654, -3.3230082040914604, -7.0, -4.317530579996265, -7.0, -3.8632633636504807, -3.821728703986952, -3.4548067623303504, -4.025940454660939, -7.0, -7.0, -3.1128384959261495, -7.0, -7.0, -7.0, -4.350005598857088, -7.0, -2.4594530444588427, -7.0, -4.610873000380051, -2.019532794678204, -2.7950488733397787, -3.9926345078943504, -2.7902851640332416, -3.255546809307727, -2.2937124685289176, -2.253991129516915, -2.7675351409941324, -1.4502611085537302, -2.149864746009101, -2.7053819439084843, -3.3341807951817017, -3.167143788623054, -3.1075242462649646, -2.078035082812725, -3.3585129569787764, -2.7645248232817266, -1.9898952783780006, -4.231291146418349, -3.0354940627547213, -4.644487826413858, -3.3109132647458086, -3.215130634854388, -2.300187660198306, -2.555234327252782, -4.489508491577916, -3.2173371298910296, -3.143100713325941, -3.930062226735009, -2.102554815370903, -3.893206753059848, -3.085998757380345, -3.5575425837527512, -3.9025234837947833, -4.626165793139279, -4.020808607577536, -3.981156925112127, -2.9668580923192476, -2.988668459314975, -7.0, -7.0, -1.7783881673180861, -2.7739059677955167, -3.101158960619402, -2.535586213640982, -2.651384140518479, -2.6733793415503886, -1.8712949403042993, -3.9223188192407434, -4.638149675666846, -3.4703593508796775, -2.146828699151382, -2.6428452266208504, -7.0, -2.4208937149668244, -2.6970715980125615, -7.0, -2.59405527791589, -3.152077602666315, -7.0, -7.0, -3.0401092144357094, -1.947122643788279, -3.0964269752170814, -7.0, -4.354367785390444, -7.0, -2.6592621570681594, -4.188965961710644, -2.443380274264685, -2.8085610491031643, -4.453731029504294, -7.0, -3.3559762530979853, -2.8880890751037303, -3.1285888003429183, -2.770498543514735, -2.12827185996548, -3.0668475109738993, -2.276799916691148, -2.282499252841805, -7.0, -1.98598050263825, -2.7764112555325746, -2.90968476924063, -3.181283347564006, -7.0, -2.8251703089538873, -3.1291794789307543, -3.664721509386932, -4.311457168381031, -7.0, -7.0, -7.0, -4.056037301237244, -1.8762702230288588, -3.328236854094916, -2.1019438184669204, -4.612868588840168, -3.5842900960487443, -2.4655511935198726, -2.542437654891962, -4.626945698847907, -4.135948506676213, -2.8283376000590046, -7.0, -2.611245003078948, -2.732589873839353, -3.7709045864841553, -4.628296952067896, -2.732986387417268, -4.02566421518471, -3.205214033739003, -4.6187486814592855, -4.314520279061685, -3.6243664894996273, -7.0, -3.575555201770702, -4.022747891057003, -3.242034289782914, -7.0, -2.571734705001743, -7.0, -4.1353765089832155, -2.675057846930607, -2.1915354346857767, -2.2435349655419285, -7.0, -4.157446693916665, -2.650815298037088, -4.3174992211071315, -3.255403175912266, -7.0, -3.4185084434734003, -2.120642153928635, -7.0, -4.135514280998787, -4.32997723012551, -3.4181251342675383, -2.733999286538387, -4.6153923666841115, -3.419646017478006, -3.257574239858015, -4.31527743947181, -3.4211101297934343, -2.1013592637731815, -3.5438818782481594, -7.0, -2.9417796781737486, -3.0827255460196543, -4.3260079677596055, -1.3571357449282986, -7.0, -7.0, -3.569076654313889, -3.7829228611700847, -1.975255533631949, -3.066879711943878, -2.973118023373419, -3.9237930177264575, -4.315025199312605, -3.7725508979688867, -7.0, -3.3639596522893145, -4.313297626086869, -3.165387610350267, -2.663047513975216, -3.5799290297453163, -7.0, -2.649053877131526, -1.7119647740280666, -3.392677416406296, -4.629949582692884, -2.8834170375771606, -3.857794693596045, -4.18359247818067, -4.319688893249499, -2.193891013244078, -2.812438617225954, -4.144439280361414, -4.318970646636086, -7.0, -7.0, -3.119125240272365, -3.6812915000319597, -3.237313293174686, -2.550096897281136, -1.6796462880176226, -3.326581618446525, -2.448244007666316, -2.835529158016355, -3.874249822778403, -2.9526310252827455, -7.0, -3.478174691234221, -7.0, -3.2189048941931206, -3.0087162777596426, -3.2232266527926114, -7.0, -3.510472828012453, -4.318282514840762, -2.39909658587198, -4.015307351851757, -7.0, -7.0, -7.0, -7.0, -4.611436515265544, -7.0, -1.6869443681868634, -7.0, -7.0, -7.0, -4.616065707908696, -3.9137291037285733, -3.915220381223052, -7.0, -4.615413424407249, -3.631190018213138, -3.84490152901065, -3.220026323099231, -3.6224024370611825, -4.35078086534774, -4.139333252881835, -7.0, -4.163956058605712, -3.9163697135728093, -7.0, -3.0703952134392365, -4.139900066304233, -4.01456253812761, -3.225040747463099, -3.6794379916710307, -4.030296054911111, -4.310841945164296, -4.311435968289161, -3.8511461924705577, -7.0, -3.5724068675580556, -3.719807589302826, -7.0, -7.0, -2.767526899408382, -2.9489017609702137, -7.0, -7.0, -7.0, -3.336859820916809, -7.0, -7.0, -7.0, -4.251592260928416, -7.0, -7.0, -7.0, -3.508691286860763, -3.9226735678585545, -7.0, -7.0, -7.0, -1.4507923159973133, -7.0, -3.7453285766010675, -3.3089377249826804, -7.0, -3.7060346607143506, -3.7334205850552626, -7.0, -7.0, -7.0, -7.0, -3.2615007731982804, -7.0, -3.2883139564962867, -3.2076343673889616, -7.0, -7.0, -7.0, -2.6885977750811696, -7.0, -3.06595298031387, -2.958085848521085, -3.4352071032407476, -7.0, -3.624053838228878, -3.0273496077747564, -3.123851640967086, -7.0, -2.537063142781617, -3.683407299132095, -3.0806264869218056, -7.0, -7.0, -3.248463717551032, -7.0, -3.3541778267734723, -3.508664363052943, -7.0, -3.3464181789371965, -7.0, -7.0, -7.0, -2.707002099520009, -7.0, -2.362266997454815, -7.0, -7.0, -7.0, -3.0950935120040057, -7.0, -7.0, -7.0, -7.0, -7.0, -3.197831693328903, -7.0, -7.0, -4.34868446133753, -7.0, -2.955527405293444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1607685618611283, -2.948412965778601, -7.0, -3.3562171342197353, -7.0, -3.5323211420823304, -3.590953235187986, -4.037784941753637, -7.0, -7.0, -3.013118230526625, -7.0, -3.4554539687786283, -2.785024602845055, -7.0, -4.163250849512631, -7.0, -7.0, -2.9425041061680806, -3.294201600694746, -7.0, -7.0, -7.0, -3.19580743572306, -3.271805875368442, -7.0, -7.0, -7.0, -7.0, -3.1881371786857495, -7.0, -7.0, -2.4127964287165433, -2.057576614010089, -3.675044735955893, -7.0, -2.981082082531969, -3.9796166546322134, -7.0, -7.0, -2.5443781439578124, -4.041590046889366, -7.0, -7.0, -3.6516656039229356, -2.394889257167419, -7.0, -3.8320403031849812, -3.2322335211147335, -7.0, -7.0, -3.7739874607135038, -7.0, -7.0, -7.0, -7.0, -7.0, -2.683321176971368, -3.462472869803616, -4.167583147965841, -7.0, -7.0, -7.0, -7.0, -3.0461047872460387, -3.2610248339923973, -7.0, -3.251638220448212, -7.0, -7.0, -7.0, -3.4330802233513356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.849214606209089, -7.0, -3.450249108319361, -7.0, -3.4248272103534214, -3.330413773349191, -7.0, -3.921456953158924, -7.0, -7.0, -7.0, -3.1784013415337555, -2.468716471515472, -7.0, -7.0, -3.3429652099145004, -7.0, -4.290390809440229, -7.0, -3.7555699806288, -3.186450837846928, -7.0, -7.0, -3.632356046239073, -7.0, -2.9692605575027797, -7.0, -2.757206173278786, -2.9523080096621253, -2.614264287358705, -3.3720831085742526, -7.0, -3.704750904290671, -7.0, -7.0, -3.3830969299490943, -4.35071308475223, -7.0, -3.3119303676551777, -7.0, -7.0, -7.0, -3.0149403497929366, -7.0, -7.0, -3.4747260421801167, -3.4265112613645754, -7.0, -7.0, -7.0, -3.879038505237237, -7.0, -7.0, -7.0, -7.0, -3.0224283711854865, -1.9469432706978254, -2.080987046910887, -2.0102347031678383, -1.9711211579147767, -7.0, -3.6683548501652967, -4.868234549092891, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1089031276673134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7361972389182934, -4.342669368975334, -7.0, -7.0, -7.0, -7.0, -3.16761267272753, -7.0, -7.0, -7.0, -3.720242018287057, -7.0, -7.0, -3.0650815277143657, -7.0, -7.0, -7.0, -4.023273041822853, -7.0, -3.761313781974698, -7.0, -3.7145560704804033, -7.0, -7.0, -7.0, -3.2322335211147335, -7.0, -3.980866554582079, -3.0511525224473814, -3.5648435325438337, -7.0, -7.0, -7.0, -2.187520720836463, -2.3391200452721206, -2.891398059667226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.104487111312395, -3.2571984261393445, -7.0, -7.0, -3.854437093603298, -3.6150553041797218, -7.0, -3.1488449390421698, -2.988112840268352, -7.0, -2.85410352630107, -3.0644579892269186, -3.27669152884504, -3.5597869682005565, -2.9696821057315477, -2.895606686165933, -2.8771408897848207, -7.0, -5.129713732636669, -3.417527049073855, -2.941511432634403, -7.0, -7.0, -7.0, -3.3589812256253495, -2.787814567063023, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0352696000994364, -7.0, -3.2304489213782737, -3.3604040547299387, -7.0, -4.859636578999392, -4.09377178149873, -4.645089803387881, -7.0, -3.3439335003272257, -3.133327349797274, -3.1060548400937864, -7.0, -7.0, -7.0, -2.4709529918306132, -2.2405492482826, -3.277761973532505, -7.0, -7.0, -7.0, -7.0, -2.7558748556724915, -3.1492191126553797, -7.0, -3.0824263008607717, -7.0, -3.663714383330552, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.882729399214851, -7.0, -7.0, -7.0, -7.0, -7.0, -4.58601311649554, -7.0, -7.0, -4.447602438713479, -7.0, -7.0, -7.0, -5.087671410994864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.777310801689522, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.196148539699125, -7.0, -7.0, -4.3730683944308, -3.20378520893911, -2.4285667129921897, -3.693990610460777, -4.035949779536674, -3.426185825244511, -4.391406471815851, -1.8788176305132411, -1.5092155761636503, -2.813053178509492, -4.119533952374401, -3.5701476202881377, -7.0, -7.0, -7.0, -3.0017337128090005, -3.344588742578714, -3.5352941200427703, -3.101231386790699, -7.0, -2.9590944164932984, -4.209739299771616, -5.2296622214205515, -2.2037320465140935, -2.5171958979499744, -2.4803663095328092, -3.303886921725102, -7.0, -5.406088620120958, -3.6144050179114284, -3.626212010796037, -1.4908610661339912, -7.0, -3.9617374047008993, -3.785607409972391, -7.0, -3.747800090864369, -3.832445041174111, -3.9973645380489646, -7.0, -1.0324520237811379, -3.5652130253955923, -3.314106725411292, -7.0, -3.4135336749389187, -7.0, -3.1582619493278363, -3.570840009456516, -4.003417445202194, -7.0, -2.3502480183341627, -7.0, -7.0, -7.0, -3.24417521304034, -2.100862663563312, -4.195484523033764, -7.0, -3.3656751404559175, -3.3959861203155404, -7.0, -2.537279263453857, -3.0398105541483504, -7.0, -7.0, -3.5211036582367834, -3.354588587877241, -7.0, -7.0, -3.8385972528166565, -7.0, -2.92272545799326, -3.2127201544178425, -7.0, -3.5052856741441323, -7.0, -7.0, -3.346744054604849, -2.248557074060829, -7.0, -3.727907081406697, -7.0, -7.0, -4.6009620109768665, -3.794826009545771, -4.489775728090475, -7.0, -2.8992731873176036, -3.11150254819892, -7.0, -2.674992288098586, -7.0, -3.3085644135612386, -3.113991074353135, -7.0, -7.0, -3.450864692379766, -2.3944516808262164, -7.0, -7.0, -7.0, -7.0, -2.8447877188278463, -2.8813846567705728, -7.0, -7.0, -7.0, -7.0, -3.2656431419421352, -7.0, -7.0, -7.0, -3.0232524596337114, -7.0, -2.8019179723413923, -3.057359811393562, -2.4740837562241507, -7.0, -7.0, -7.0, -7.0, -3.118595365223762, -3.8020892578817325, -3.083860800866573, -2.561442140419698, -3.130205069581069, -7.0, -2.9334872878487053, -3.1216911303075765, -3.9356684589162554, -2.9589459324939362, -2.733999286538387, -3.6151922673739656, -3.0436242167998198, -2.485945462845539, -7.0, -3.5713982332029914, -7.0, -7.0, -7.0, -7.0, -7.0, -4.367505009418113, -7.0, -3.1934029030624176, -7.0, -4.057501279050107, -7.0, -4.173390251465195, -3.706266554579547, -3.3969835082752007, -3.505014240084107, -7.0, -2.737788791709675, -7.0, -2.836233665954909, -3.4014867017741692, -7.0, -7.0, -3.3428173146357327, -3.227372442289636, -3.4989477407243084, -2.574031267727719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.476940260975887, -2.625655360163779, -7.0, -7.0, -7.0, -2.8692317197309762, -7.0, -7.0, -7.0, -3.3433101031623416, -7.0, -3.214667269683036, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6587879323179417, -2.466274321789292, -2.855216194733363, -7.0, -3.4916417934775863, -7.0, -7.0, -7.0, -2.822494985278751, -7.0, -7.0, -2.8327217499964084, -7.0, -7.0, -4.670171608355266, -7.0, -7.0, -4.667667712106219, -4.368184576507716, -7.0, -4.19942604159399, -4.192139824255448, -7.0, -2.695688893192003, -4.1075576053544465, -7.0, -7.0, -2.944623653966665, -3.0952460874520806, -4.374436714981712, -7.0, -7.0, -7.0, -7.0, -3.0113525433140276, -3.885361220031512, -7.0, -3.324411077979487, -2.535360810015817, -7.0, -4.193235941639753, -7.0, -4.205393852614679, -4.199032580145495, -7.0, -3.6147663409308692, -7.0, -7.0, -7.0, -4.671191362340761, -7.0, -4.192595327569212, -3.9921733990840766, -7.0, -3.985291718592888, -4.670755942215133, -2.6743108342734345, -4.368119458615029, -4.19446808867598, -3.427612318183267, -7.0, -3.2551777082639703, -4.67045923596689, -7.0, -3.9933921374490025, -4.374647548674498, -3.6794188108584622, -2.8194068259963245, -4.211663292650559, -3.2274528359297285, -4.417322197099729, -4.671274690884761, -4.673103885408021, -4.688633356948537, -4.673490907887271, -4.37317875450557, -7.0, -7.0, -4.672605777753426, -4.2197154758555016, -2.656862143033687, -7.0, -7.0, -3.841314769257563, -7.0, -3.480826709583002, -4.0029949671388145, -4.668637473671116, -4.085870083398395, -3.0127887570435066, -7.0, -3.684064005878023, -7.0, -7.0, -3.5827125326617333, -3.150277739061255, -7.0, -7.0, -3.5124264461634938, -4.672716517725188, -3.7373781989912187, -3.4395782859015425, -3.981202277975283, -4.377988853736994, -2.6064965269485283, -3.9957229219954655, -3.2746965330172166, -4.1910222841219555, -7.0, -4.085549222231902, -4.679863789404051, -4.208342804842957, -3.852880642366062, -7.0, -3.3989232955264326, -4.673223714939716, -4.667555677069314, -7.0, -3.1099393869325063, -4.6679196853173615, -3.9862699911219206, -7.0, -3.3212358493275413, -2.70957546628389, -7.0, -7.0, -3.9764600291302, -7.0, -3.203119460219802, -4.37287519679339, -7.0, -7.0, -7.0, -3.321399911624453, -7.0, -3.4625904995809047, -2.904038968600478, -7.0, -4.0251337522189905, -7.0, -3.340474160464808, -4.675567556920825, -3.647302933044288, -3.6997076781100517, -7.0, -7.0, -3.1957613200360613, -3.1458354531056396, -7.0, -7.0, -2.4673278150101323, -7.0, -7.0, -4.667518325633491, -4.191478960443599, -4.6674249329872435, -3.090564725600136, -3.5970028677416908, -3.0554937278103553, -3.1497577964089167, -7.0, -3.4503949834196197, -7.0, -7.0, -3.7729539810278334, -3.6128973334826258, -3.6429835826026475, -7.0, -7.0, -7.0, -2.95751581642942, -7.0, -7.0, -4.680996877996996, -4.677205318381814, -4.066568168015852, -3.5309950844480262, -4.678909705045905, -7.0, -7.0, -7.0, -3.7290351301957916, -7.0, -4.370485332353556, -2.919031843391535, -4.369642518405259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5595715027824424, -4.670236573178357, -3.637536425333415, -7.0, -3.8070358438167355, -2.6376631672377724, -4.372792371489067, -4.1039233919222635, -3.8529676910288186, -4.376220981693863, -4.685006846094914, -3.900093901543398, -4.680444300076152, -4.675897435644324, -7.0, -4.002805149342968, -3.9721935782700672, -4.4038408865808965, -7.0, -3.962108775554161, -7.0, -3.107843280562333, -7.0, -3.6488102126265374, -7.0, -4.4131404376555805, -7.0, -4.201278747009084, -7.0, -7.0, -7.0, -7.0, -7.0, -4.208369684768811, -2.997734511191365, -3.248218561190075, -7.0, -4.6673595461830875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4328090050331683, -3.0739364463090766, -3.102492092329077, -2.7685993636921173, -7.0, -7.0, -4.069594105177555, -3.5962579570038544, -7.0, -7.0, -4.205808634353865, -4.201833930474351, -7.0, -7.0, -7.0, -7.0, -4.3686308363704, -7.0, -7.0, -7.0, -2.920895834382227, -7.0, -7.0, -7.0, -4.669530720269089, -3.9738848986568547, -3.9732664361085286, -7.0, -4.371935583802963, -4.706461737631355, -4.2034046174735815, -3.225025663553466, -3.720828841381453, -3.980721296481127, -7.0, -7.0, -3.2004856980008305, -3.9039667381715213, -2.2357912707484835, -7.0, -3.010282098769298, -4.674098390094781, -7.0, -4.369039505473969, -3.901995116585794, -3.2968676113707205, -3.008615941064652, -3.630343109828716, -3.8207759774515604, -4.376814111968198, -4.672734971642158, -7.0, -7.0, -3.8442996228070254, -4.386837707954007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.641807500477222, -3.414137362184477, -4.198867769452965, -4.688232892760542, -7.0, -2.570023759327654, -3.5005915939162997, -4.668954041997986, -3.472663385738777, -7.0, -4.372516173004876, -4.6982484764620995, -4.680707088728766, -3.2934256972649014, -3.43681615981553, -7.0, -7.0, -7.0, -3.2860340960543226, -2.227424714159795, -3.0283353358183884, -7.0, -7.0, -7.0, -3.5374916772907965, -3.5864834354604564, -7.0, -7.0, -3.9877734848951945, -4.669781615208537, -7.0, -4.369698138949881, -4.105884708669233, -7.0, -4.675035558038081, -3.554411275946719, -7.0, -3.131736625062677, -3.3850821170480616, -2.5990497947493694, -4.371824907328892, -3.395501124305626, -3.2130497765462813, -3.812879948090056, -7.0, -7.0, -7.0, -3.8492965408347266, -4.114969412756915, -4.233046902098183, -4.080500220172289, -7.0, -7.0, -3.5397300961558305, -7.0, -7.0, -7.0, -4.7029558528042, -7.0, -2.841091194229767, -7.0, -7.0, -2.889052006931635, -2.671811852902725, -3.2305228661556145, -3.4455696105393483, -3.0156807285576472, -2.9554815815548734, -2.74075325674677, -2.7263837250269227, -2.3270229704256304, -2.681956604360934, -3.3183851086757383, -3.2291631327218884, -3.037882245797163, -2.8853402755410493, -2.379971981059453, -2.4773419163258668, -2.8158208567451415, -2.4766193378373846, -4.453203634456222, -2.9245867697212566, -4.697133403663625, -1.8490797914449508, -2.896895724059367, -2.8378006143042986, -3.407073002684905, -3.137986732723532, -3.3592614171553317, -3.0883133155880964, -4.081428325336669, -2.4071006006618583, -3.525778813891725, -2.762930069450772, -2.9564864261652346, -3.2707776164081075, -7.0, -3.286965169029477, -3.330584210632285, -2.762836754244074, -3.282069548255956, -1.7783881673180861, -4.3730683944308, -7.0, -2.9000644256032926, -2.779361358372878, -3.4024677308028304, -2.801656065740837, -2.4795816475112002, -2.363943628997153, -3.9019640161341345, -3.846319435967003, -2.590875020869651, -2.7046063428076352, -3.224241622388078, -7.0, -2.6462789366413837, -3.229665331102911, -7.0, -3.1264394677377028, -2.7658437971630474, -4.4037466209787235, -4.674199554567703, -2.7455680003520904, -2.3649605963793237, -2.0150952003982225, -7.0, -4.104717513058913, -7.0, -2.838781990842552, -4.114243913688907, -2.658166819056501, -3.3314422939128954, -3.682047830196072, -7.0, -3.547210993643507, -3.1472659700294767, -3.264174369359504, -3.619997169624987, -2.7563080253465677, -3.046619678938016, -3.035937611771501, -2.7902624576059285, -7.0, -2.564375831288106, -2.6781412485624716, -3.163871400527174, -2.842481181980336, -7.0, -3.7952541825808828, -3.2742432132856725, -3.49560379871742, -2.8416209136493107, -7.0, -7.0, -7.0, -3.667699110681242, -2.4822890258970154, -4.20686184095936, -2.8319834676564324, -7.0, -3.902456178608144, -3.178951381008244, -3.3426379800822894, -7.0, -7.0, -3.370008135101853, -7.0, -2.5900861226739664, -3.301880379744083, -4.672107098145544, -7.0, -3.1011106055740547, -3.7791543969313732, -3.5282566195152594, -4.674411004165626, -4.3705685987670515, -3.4371411554875295, -7.0, -4.371963248515009, -4.679800248947389, -3.915320673475215, -7.0, -3.2877554109495852, -7.0, -4.367905431054023, -3.931966114728173, -2.6327416798138907, -2.6155926176472097, -7.0, -3.785178517542211, -3.339507091038311, -4.19707829984804, -3.6481203953298564, -7.0, -4.200941650254682, -2.9233053861436202, -7.0, -7.0, -4.685231030488811, -3.899519564476793, -3.664590698092, -3.165735709164142, -3.7758833889278214, -3.897058654934976, -7.0, -4.078275522086601, -3.0731487427978834, -3.6439036572971206, -7.0, -3.393320693557942, -4.215760900002956, -4.0796153235269434, -2.389217144793949, -7.0, -7.0, -4.254475567803871, -4.381638446726156, -2.5729984391183094, -3.6478806474013523, -3.192889639956309, -4.678017331283984, -7.0, -3.879759230965237, -7.0, -3.091725562883123, -7.0, -4.080761731999528, -3.4400718197081073, -4.676858153201195, -7.0, -3.4624811881074096, -2.520650955442134, -4.001456783431275, -7.0, -3.2524528472130885, -7.0, -4.234416037567035, -3.9771197449137747, -3.063455909025938, -3.361547557812611, -4.375873853024666, -7.0, -7.0, -4.667200708661177, -3.423100874797959, -4.6893532632422525, -4.071642711381079, -3.4099331233312946, -2.696531119969607, -4.205402873822617, -3.334396300991193, -2.752827162590486, -4.403189178907667, -3.5744230695504813, -7.0, -4.202379321079624, -7.0, -3.9244688176869937, -3.8594814096820422, -3.5923903063414606, -7.0, -3.980575989779568, -7.0, -2.752029999520418, -7.0, -7.0, -7.0, -7.0, -4.367449107268604, -7.0, -7.0, -2.7262197341176018, -7.0, -4.681530670563176, -3.9720361262003894, -4.672051653937387, -4.368119458615029, -4.670477786047275, -4.3719816906773925, -4.671478315597623, -3.7823203077273884, -3.979247815423111, -2.6998895859055763, -4.413400361189813, -4.004605077491578, -4.1952721924613625, -4.667462292455807, -3.6147742187886363, -4.069372054308515, -7.0, -2.720558665026306, -3.8277199645519246, -7.0, -3.994572286223859, -4.687716193623689, -3.644885992908976, -4.66838591669, -7.0, -3.139114126747177, -4.667845041827829, -3.6620534634123754, -4.201032783290775, -7.0, -7.0, -3.534328527851568, -7.0, -7.0, -4.764011652390399, -4.764639332067447, -5.0697642673235235, -5.068642187918206, -7.0, -4.765716972542505, -1.3727607434870837, -4.04089709143117, -5.064951905427961, -4.764635598561476, -3.2730178163003028, -3.2940448558627553, -3.892001794808537, -7.0, -7.0, -4.287316422082007, -4.764112590683704, -2.947038239970433, -4.049876719873882, -7.0, -3.0502460076216558, -2.0350499109066176, -4.465609606995967, -4.066076087588171, -7.0, -4.071005172856093, -4.068415939746929, -4.024944423608711, -2.925498564509372, -4.2895034823507485, -5.065389225679412, -7.0, -4.367464015212066, -4.468705401846396, -4.220742994305462, -2.874826644359406, -4.023596615284432, -4.469718950821701, -4.464206284343785, -2.507019396581007, -3.919425538440869, -7.0, -4.117031796709582, -7.0, -3.209703356355492, -7.0, -4.1645089952494, -3.8197412972730103, -3.5766979443367655, -3.6383043327526083, -1.3313716618442355, -2.4462729199993634, -3.367809356499877, -3.5295194685658156, -7.0, -4.164092498531462, -3.7946824578784644, -4.222248116858932, -4.4656058906462865, -4.113430805202484, -7.0, -4.46495131726153, -2.885529009742976, -2.9640842761672306, -3.951528055366644, -4.4631685609915746, -3.1970930127175414, -7.0, -3.5915815730415983, -3.8485766745910306, -4.220294921547735, -4.471218344307872, -2.716334138671556, -4.46325450995035, -2.9845051793652493, -7.0, -7.0, -2.311960322158872, -4.07092403147615, -3.787300106090019, -4.763809705396578, -2.349604963917566, -3.5227571257978822, -2.7789588305843886, -3.695886449894574, -3.3976922977836024, -4.592502448664263, -2.3130636356412113, -3.8207085337685434, -3.702826735552145, -4.764217242658816, -7.0, -5.073168262265102, -3.345314535659132, -4.072213122603382, -3.2846526458315903, -7.0, -3.2151822754505077, -4.76624549251132, -4.21986134467424, -4.1106420768469505, -1.9181298934192341, -3.834581509861899, -3.867971760315312, -4.466782383550875, -2.935046695204227, -1.9473491021061466, -5.066791656754556, -5.065960442354263, -3.2481776883387057, -4.068657019746832, -2.769785387826406, -3.7056741038112646, -7.0, -4.029896363201768, -3.473939276599178, -3.522574632691177, -3.636071642004376, -2.8643510609821883, -2.5017057319481153, -4.765720696763816, -3.0270622879889344, -4.464843366682843, -3.3094415672514828, -3.8376626956490294, -3.869437080721956, -3.0205066629195114, -5.065404169016913, -4.766003644178281, -2.1480678125148733, -3.642786833027063, -7.0, -5.0650453869280705, -3.193171516140053, -5.0646825662285115, -7.0, -5.064989300442656, -4.764400322956388, -5.064951905427961, -2.3143427867681856, -3.760627087876746, -3.405915255308017, -4.039623193624272, -5.067100626711813, -3.585485404630345, -4.463011566814714, -5.065826106006714, -3.26867453046004, -3.7059594516948704, -3.745209688797541, -7.0, -4.46393402862153, -4.288979144953989, -2.6253095519834253, -7.0, -7.0, -4.468354716309928, -3.954861957873765, -4.764419000280632, -4.1658153906150925, -4.4675045136258955, -4.595455803368671, -3.691773806297744, -4.4681183052566995, -3.3421652709718277, -3.8654149200566366, -4.765564251964924, -1.7082095909969017, -3.2084002959915017, -7.0, -5.064723726084838, -4.590165392435617, -3.66797192812771, -4.46376984680511, -7.0, -2.487716546462839, -4.7650423619133955, -3.549571102270827, -7.0, -3.429077262814052, -1.182962689199345, -3.2817559066229203, -2.7529647996826467, -2.9272866169481597, -3.336133464245632, -3.390489844778819, -4.592217482164138, -4.1670698345582835, -4.369364308781235, -4.370368732547782, -3.3626890460874135, -3.603875734432136, -3.6329884465050295, -7.0, -3.527176875493069, -4.468583616860806, -3.3826362538303836, -7.0, -3.2991360121936095, -5.064918247161494, -3.527730122124633, -4.367728546086976, -4.115092525350614, -4.765016250940787, -4.589450639051082, -3.65203492789085, -4.2934141218173325, -7.0, -3.459212229915092, -1.9540949941996784, -2.618855352283515, -7.0, -4.587789512472801, -4.287883805323705, -4.588077398322267, -4.764568389965006, -4.1120945993276115, -4.764288242139756, -4.066665027256672, -2.171168871249555, -3.244415385955302, -2.625039053970189, -2.8380917602820355, -7.0, -4.464131710707957, -4.58953632259307, -4.767222675478806, -7.0, -5.065437789646456, -4.4691590270720125, -4.291431754946445, -7.0, -7.0, -7.0, -4.764407793982475, -4.162713725583078, -5.064832219738574, -7.0, -3.236807611141011, -1.7874437108032026, -7.0, -7.0, -7.0, -4.58866006326894, -3.8629322656865397, -3.7050228564102046, -7.0, -4.067119232342068, -4.302817775635442, -3.1946512225101293, -4.38643832060867, -2.382042120106383, -4.028467731285911, -4.7641948193584245, -7.0, -2.0802478193290583, -3.2443694472721205, -3.0135839120839165, -4.465182018186956, -2.602768412048955, -5.067636150031888, -7.0, -4.111717932914938, -3.298894643645755, -3.304888879148899, -3.005539729015686, -3.275746726696121, -3.6411375648112925, -3.6887793603355443, -4.288897276322566, -3.8892120324534645, -2.9604930743921973, -2.4232864741068187, -3.175060190094287, -7.0, -4.2877868054647905, -3.9546765869186435, -5.065852230217733, -4.115307194646102, -5.0648995469973555, -3.330649859099253, -2.5069980127184524, -3.9891530670696294, -4.772365720825139, -4.291069003840989, -2.2056860269673777, -3.1132782144229987, -5.065564777430062, -3.175527919520875, -7.0, -3.8120215812126705, -3.600224844436374, -3.250294294532932, -1.9945033548218805, -2.9097061995921036, -4.2404850620891335, -3.9564381178018633, -3.820259857910027, -4.3728310252634595, -1.8738303081546903, -2.879619688796236, -5.064936946520462, -7.0, -7.0, -3.298366239267854, -3.2927897119911833, -7.0, -4.367907292617928, -3.7939336804318997, -4.764859552129425, -3.690698035157469, -4.5891487492977605, -3.189004157062433, -4.3681082945672856, -5.068015079913622, -2.5459526635880794, -5.067108069059566, -2.78760911244904, -3.2594014866290206, -2.297533665441869, -4.766104120608411, -2.4344002341345896, -2.802130831465385, -3.1869098660219337, -7.0, -3.8915077231856623, -5.065676794647086, -2.8959235657954556, -3.314252961500534, -3.438826320043174, -3.7285197932079055, -4.463067642678739, -7.0, -3.6921416093667836, -3.704046016852243, -4.2887483847147845, -4.067193646893265, -3.499477262788162, -3.986906031380721, -2.089274358160125, -5.064772364522698, -5.064978082276334, -1.758803501867089, -2.4979057429957394, -3.696608755737047, -3.4552184030070845, -2.950627740567455, -1.9801848549570622, -3.2268681559950823, -2.8476261764648605, -2.259338656408642, -2.850715837004121, -3.6463165753710434, -3.3196248838045315, -2.5756714430644854, -2.2969874504106382, -2.406878962573308, -2.7320407640579987, -2.7773412012531984, -1.9185563154786038, -3.6866775108445764, -2.79432813146471, -3.8728625197457576, -2.09235891190916, -2.4695912148977635, -2.549569566907775, -3.7104660152370172, -3.7750339396089885, -3.033358978921552, -3.537268839048176, -4.770439604180736, -2.3086996539594438, -2.992730873083119, -2.873181900714484, -3.232258962342702, -3.3618801933185427, -3.8942200345812, -3.3136597486201063, -3.6754751741703275, -2.6708822353808133, -3.4178535051684764, -2.7739059677955167, -3.20378520893911, -2.9000644256032926, -7.0, -2.2616759128999493, -3.632540440843605, -3.1818562864281845, -4.770557474850995, -2.1947223439203243, -2.2698908472038735, -2.776653498621149, -2.5061605659193376, -2.406641469178499, -2.341780233246614, -4.768190258560652, -2.543381533214589, -4.309239694613544, -5.065422847465759, -4.1828317685399785, -3.575449990754737, -2.4336680285437815, -7.0, -0.6755530875172971, -1.8731804991743521, -2.079139523035249, -3.9518640925869866, -3.4680878435600424, -4.163068152729703, -2.0992450911191702, -4.182068534220791, -2.817909297102525, -1.6487264577005731, -2.62775226752316, -4.3661127695587165, -1.7088699103967022, -2.870044039039802, -1.9045744446491906, -3.2782344594580577, -3.0988414244579596, -4.007288924125068, -1.1624663622221725, -3.0062847512451514, -3.766025974282846, -1.937665082874569, -2.485678995021301, -4.5994536575971905, -1.9555751738308984, -4.112001395486189, -3.321365831759885, -2.158785476021301, -3.6401094007920802, -3.861321542455379, -5.065041648054379, -4.763716179607514, -7.0, -4.237047980435429, -2.2323788794900854, -3.017768120712702, -2.474687312034128, -3.861448529146899, -2.5286826823843556, -2.5171165611354143, -3.6570963223312, -3.8664645659717403, -4.287577809078705, -2.839399028578788, -4.76420976835399, -2.0270631939449606, -2.5051463299974426, -3.8114334945608093, -4.594046155430341, -2.1238174830124894, -3.6906168758571534, -2.7149390821628323, -3.9884995011345423, -5.0666352267141015, -1.9520292794553855, -5.066754416617172, -4.368197598914685, -4.028482521569151, -2.9072211855036825, -5.064753658075849, -2.9593559844984885, -4.764187344667675, -4.764527312924223, -2.710510943898011, -1.1560214758601268, -2.4490943841052553, -7.0, -3.897275115194261, -2.7942848236913926, -4.590555776208226, -2.9115800295579106, -7.0, -3.0641947231369087, -2.529584855843978, -5.065082773894735, -4.366613444636752, -3.8416023541757394, -3.269320178171262, -2.5958115596594458, -3.7442035439045456, -4.028197720101696, -3.5238021896457496, -4.367903569482139, -3.040021591492229, -2.8983745114874, -3.3050105477691814, -7.0, -2.8902712123140275, -2.737298928882287, -4.292547718850385, -3.1484115092286706, -4.589432009956984, -7.0, -2.706294486458381, -3.8949323529090556, -1.5008258604492917, -2.5691493015140976, -3.931472400204468, -3.171018804632408, -7.0, -3.1487798874796478, -4.464496999231432, -2.99768710765127, -4.024735619217597, -3.3718728705973113, -2.08724344131914, -4.0686866818845795, -4.06480977499933, -2.20374132393189, -2.188065485960007, -3.8231009262048943, -4.372779486133048, -2.8054559734849365, -4.2288511397148065, -3.2974088730612636, -3.7258930786484834, -2.581104556080377, -3.273471503089958, -3.706888394981618, -4.165073602671241, -7.0, -7.0, -2.9025185013539017, -4.295677034017465, -3.6523393356894247, -3.67560605568558, -2.331785136469075, -2.6187489037583633, -2.4282121139948085, -2.5188993059374263, -3.6649130538258987, -2.932661224370865, -4.7656313066366955, -3.2180655795999282, -7.0, -2.908097212236117, -3.535941190545326, -3.2292743435523663, -7.0, -3.04379216985318, -3.837402739134079, -2.3368591970429793, -3.9210693316079035, -7.0, -7.0, -7.0, -7.0, -7.0, -4.588447257083161, -3.5298151966446305, -4.2243739512352265, -4.070588240085541, -4.112116965273502, -5.0668102756258335, -3.919425538440869, -3.7438083002149427, -4.1129027694460705, -4.1634371956104115, -2.763309942668417, -3.5376117097515545, -2.52194468698677, -3.4406336268506807, -4.125517410220768, -3.890767421900135, -7.0, -2.791153148992849, -3.522261608845393, -7.0, -2.5080905010569623, -3.487104869552999, -3.6689112256610885, -3.359251556898101, -4.031724199984835, -3.730095580067584, -4.0652696604655, -4.024078722515256, -3.0886085331114645, -4.286931523511091, -3.602475990905145, -3.290705949488817, -4.590470293581849, -4.763697472032553, -7.0, -7.0, -7.0, -3.8698182079793284, -7.0, -7.0, -7.0, -7.0, -3.895809150169131, -3.09532291400805, -7.0, -7.0, -7.0, -3.0755277528968996, -3.2867557767759927, -7.0, -7.0, -7.0, -3.8769103113446275, -7.0, -2.5019260722283025, -3.8650150921872437, -7.0, -2.517384434736918, -3.0108795765633274, -3.608365550303124, -3.8866598978612026, -7.0, -3.6546577546495245, -3.9207492612757084, -3.5895586720415062, -3.8258857029949604, -3.9095025414054154, -3.8751191654625683, -7.0, -3.8914817038395197, -7.0, -3.8827521556130797, -1.6300281227436775, -3.170613703377405, -7.0, -3.043081453904068, -2.858252805913937, -7.0, -7.0, -3.658059118703411, -7.0, -3.451939869365103, -7.0, -2.8664484574247195, -7.0, -3.315550534421905, -2.93881982502621, -2.4359189840380653, -3.20960436635488, -3.0955470872642685, -3.818522802003136, -3.414639146737009, -7.0, -3.9872639541222354, -2.862673366756278, -3.9094490469812664, -3.6089536992758626, -7.0, -7.0, -3.181598615963903, -1.794614194858966, -2.7000688257699466, -7.0, -3.6754116937148633, -7.0, -3.137072650257898, -3.448513085427185, -7.0, -3.2053848312193485, -3.391247815367535, -2.9191362269698162, -1.7802978462168428, -7.0, -7.0, -2.7611758131557314, -3.2553690042664414, -3.284938054343137, -3.8666417205660397, -2.3823773034681137, -3.0548318427136074, -2.7000977046130537, -3.71796159904163, -2.9883111708948853, -7.0, -2.702026582792653, -2.8118681227282054, -3.337484220026441, -7.0, -7.0, -3.9823617016331467, -2.419555246345498, -3.67015304519218, -3.187238619831479, -7.0, -3.4202652587643403, -7.0, -3.09037563638456, -2.9642596301968487, -1.5709235268536406, -3.0255984179749933, -7.0, -3.926085086925144, -3.0077865594877418, -2.320629926146124, -3.1176578997854874, -3.1051694279993316, -1.9890314480164784, -3.6229907048100864, -2.7073048557521924, -2.906712056942964, -3.8674674878590514, -3.6584407064111257, -2.7875021474524684, -3.573413164820461, -2.730997486018614, -2.2519497768153833, -2.386066582440751, -7.0, -7.0, -3.8983411657275093, -3.8772931691185653, -3.917190308511564, -3.6873505695580273, -1.7688546896541124, -7.0, -7.0, -2.9234059419317693, -7.0, -7.0, -7.0, -2.9119633768201263, -7.0, -7.0, -7.0, -3.5747255835940734, -3.8682916880178557, -2.2505444669536296, -3.390970414162616, -3.7244602007755776, -4.071145290451083, -7.0, -3.6847556221086237, -3.8705209500127644, -3.8818409683249273, -1.9929312832109043, -3.4847268042986617, -3.231660699116671, -7.0, -3.8847387377696316, -7.0, -2.7869496562880802, -7.0, -7.0, -7.0, -3.1478308499434595, -7.0, -3.0235610900969454, -3.9360107957152097, -3.9752019622578523, -3.1910782294789994, -3.643156465619706, -3.11904583148332, -3.0330214446829107, -3.8935398435646613, -2.3559534274988096, -3.18904090790901, -7.0, -7.0, -3.903849338096681, -3.4085226171161014, -3.8822398480188234, -7.0, -1.6879303697434271, -7.0, -3.8131805325860118, -7.0, -3.785329835010767, -1.7566465429864107, -2.2691870196383395, -1.6589416127705028, -1.8078005551873275, -2.37927961214755, -1.9821283495107576, -3.9328287669008466, -3.4671145890738178, -3.6179434348289727, -3.9330314951024055, -3.049256797232227, -2.81135154588012, -3.461160744254032, -7.0, -7.0, -3.649334858712142, -3.4196554065124327, -7.0, -3.320030828319093, -7.0, -3.4035323048494335, -7.0, -7.0, -3.885304667588968, -7.0, -3.493771633610371, -7.0, -7.0, -3.6702922495788317, -2.891361368543823, -2.9170109744688304, -7.0, -2.720218387071364, -3.885587356189656, -7.0, -7.0, -3.413132050434872, -7.0, -3.1167737269758997, -2.006348800031633, -3.253418781757457, -3.134835596316012, -3.330982302212323, -7.0, -7.0, -3.8945929479229555, -3.3152354096177272, -7.0, -3.875871190727366, -3.0542299098633974, -7.0, -7.0, -7.0, -7.0, -3.5748411950633847, -3.8822968009376515, -7.0, -7.0, -3.637939801558909, -2.7115905922749253, -7.0, -7.0, -7.0, -7.0, -2.621121595068182, -2.302918960185348, -7.0, -3.4248272103534214, -7.0, -2.713045594527829, -3.511448849204857, -1.7855294035898643, -1.7525382585237885, -2.9175055095525466, -3.0878996736256314, -2.8717149005099007, -2.953082843912086, -2.9231276609444166, -3.903307079964174, -3.334297341231131, -7.0, -7.0, -3.407447560198671, -3.269564828153454, -3.492585798277992, -3.205664407371687, -3.0420741003156624, -3.8403884196021063, -2.849879878037141, -3.298307137328508, -3.5742628297070267, -2.0582783662301987, -1.7328989937968162, -3.1378512485602417, -7.0, -7.0, -3.6227837254272086, -3.279837982245049, -3.0906107078284064, -3.8674674878590514, -3.260834312172319, -2.1405651757728412, -7.0, -3.9852467908028615, -3.630377017892592, -2.7848376022392927, -2.9374293839197807, -7.0, -3.640895326720516, -7.0, -3.0017337128090005, -3.5563025007672873, -3.16721884410666, -1.9117848898005676, -2.5887025545779663, -3.6382229411517786, -7.0, -3.5347873586294916, -7.0, -3.1195531811384214, -2.952004964166678, -3.8680563618230415, -7.0, -7.0, -2.9242103449581727, -3.743392160047862, -7.0, -3.8980666606416348, -3.978043493909963, -7.0, -3.9558800862253753, -3.5876548509957176, -2.796829854240984, -7.0, -7.0, -2.6816344420035367, -2.483312930618305, -3.6415567309708003, -3.097326735715773, -3.519207039342475, -7.0, -2.2268174247459047, -3.4028122078099425, -3.411249219353385, -7.0, -3.2102649990322885, -7.0, -2.3042116544501705, -2.96748111539479, -2.9714542697101325, -3.110445402445486, -7.0, -7.0, -3.0193471139879318, -3.406199423663313, -7.0, -7.0, -3.2763852022713076, -3.40970774995732, -2.247384898685672, -7.0, -3.5675556708947846, -2.3997588077471526, -3.372504332000748, -4.106700732362354, -4.046768219660838, -4.068341734353948, -2.542854032839964, -7.0, -3.4308998905960526, -2.972854758649604, -3.0381696077218603, -3.735918116531297, -3.4779408149553697, -3.8184605047247477, -3.9129329633004786, -2.3925803667445065, -4.451248989796137, -3.5287480250682557, -2.70991529382808, -7.0, -2.8575863955802148, -7.0, -3.9850393715220522, -3.154423973114647, -3.020531260920681, -3.448065555627402, -4.451924528420122, -3.7195467231686625, -3.8703258579283086, -7.0, -2.763716901638116, -3.8516455748718625, -3.833035494730326, -3.7477224620355085, -3.875177059814704, -3.947139517642829, -3.8022947113974634, -4.160048139552876, -3.6442662161844077, -3.501313618914804, -3.101158960619402, -2.4285667129921897, -2.779361358372878, -2.2616759128999493, -7.0, -3.2802368096096894, -3.450495446659433, -7.0, -2.6861758282690205, -2.146128035678238, -2.454583551648098, -2.7888625054157443, -3.3706936886585264, -3.3963895768324193, -7.0, -3.304300406296957, -2.8756399370041685, -3.8756399370041685, -3.641441057915941, -1.9960417286434593, -3.28450592984192, -7.0, -2.3225283506064525, -2.8364446201316853, -3.948777928708192, -3.4055740076619347, -3.372617466178957, -3.2852759390712047, -2.376531898750521, -4.111564935454498, -4.270870076550308, -3.3720370124661687, -3.0071723936424135, -2.7903438168096026, -3.542389669540937, -2.491027393657021, -3.3822036435596736, -2.9965514700448734, -3.1625830742133614, -3.646763038740345, -3.226604958933488, -2.349050573178034, -2.8219500053077473, -2.988894392169021, -2.356873331695484, -7.0, -3.0547381672190057, -7.0, -3.7334781411151887, -1.8598212968349632, -3.1949874740307362, -2.2496641512224946, -3.5685537120494426, -7.0, -7.0, -4.082282589912437, -2.2637568032034094, -3.059800000399848, -2.882681528415911, -3.879611907065851, -2.8306873495494416, -2.743675563376944, -3.067210388410234, -3.473535627784848, -3.880927865267085, -3.0170681371419867, -7.0, -2.917399217307005, -2.5934047537390925, -3.5958267770732233, -7.0, -2.512486428200025, -3.4775071227876087, -2.8055763679355015, -7.0, -3.1946253294838645, -2.2308574768946725, -7.0, -3.9023293058583186, -3.463594402187, -3.0107238653917734, -7.0, -3.234997879686031, -7.0, -3.5766868052009952, -3.9675198959264786, -1.8809732400149861, -3.170975596352534, -7.0, -3.9860547807696953, -3.0775914946999468, -3.9095025414054154, -3.213960237403306, -7.0, -3.1528486915725082, -2.8008932412190894, -7.0, -2.763255162964953, -3.9698816437465, -3.4522976709946303, -3.165355631362408, -2.188647295999717, -2.487188895396036, -3.6145281197475394, -7.0, -3.244771761495295, -2.7133592688790253, -3.876468026859822, -7.0, -3.3175619366212463, -2.893420302005442, -3.951386094880293, -3.115672905824526, -7.0, -7.0, -3.567790710533536, -3.6553785755318513, -2.485076000522817, -2.470000425955779, -3.335818826915165, -2.03104575333472, -7.0, -3.8441042306975133, -7.0, -3.4095273670122404, -3.887561040930009, -3.2581581933407944, -2.5071974505844183, -3.9245377177754897, -3.2646997921671455, -2.7551122663950713, -2.4675023992470027, -7.0, -3.663795122219408, -3.2868733052667998, -3.6913025633834833, -4.091983332237311, -3.9205928620848085, -3.1010101904226492, -3.759894374025499, -3.9248992640142837, -7.0, -7.0, -3.866877814337499, -2.954973030186681, -7.0, -3.207311151436134, -3.511838815670676, -2.9279581791148983, -2.6316852986795403, -3.2162471281677285, -3.02153039646357, -4.060584531360865, -3.9869955397243815, -7.0, -3.2400997455874054, -7.0, -3.354530998050396, -3.4602587043308133, -4.070628844051428, -7.0, -3.094221491063981, -3.612359947967774, -2.249025531378285, -3.9037409406215384, -7.0, -7.0, -3.56702636615906, -7.0, -7.0, -3.8781194846971676, -3.2187979981117376, -3.935053589231065, -3.473000092791711, -3.589670402034894, -3.8966364305295844, -7.0, -3.5860243823869755, -7.0, -7.0, -3.192846115188842, -3.6314437690131722, -2.7498466966808266, -3.802739527529692, -3.756864224060549, -3.8988896559265864, -7.0, -2.093635192114032, -3.1938478199735574, -3.865400118179301, -2.970924885385915, -3.6007006960652372, -3.8998751960210107, -3.166133970305109, -7.0, -7.0, -3.57316180901509, -7.0, -2.882144909887086, -7.0, -4.057856208741888, -3.9320169064342014, -7.0, -7.0, -3.353531559077762, -7.0, -7.0, -7.0, -3.6449307079135873, -7.0, -3.4158077276355434, -3.3443922736851106, -3.194976603216055, -3.601826892720257, -3.9528408566757016, -7.0, -7.0, -2.675062643529782, -1.9735918316724699, -3.4056877866727775, -7.0, -7.0, -7.0, -3.630834517828051, -2.1959855509600987, -7.0, -7.0, -2.9705018430406236, -3.183032267162237, -7.0, -7.0, -7.0, -7.0, -3.7134065321676912, -3.6638892986226614, -4.109544800878346, -7.0, -7.0, -7.0, -7.0, -3.2854072677273374, -7.0, -3.2325514293947246, -7.0, -7.0, -7.0, -3.7057721050805066, -7.0, -3.3683798716238016, -2.658084813018018, -7.0, -3.008227455332087, -7.0, -7.0, -3.8436687229791437, -2.8627275283179747, -3.4424013694827025, -2.6476300090757197, -3.8174992618677583, -2.655507827095201, -3.699230502883409, -7.0, -2.9845273133437926, -3.5149460053080044, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3967222785037734, -3.6601197915175523, -7.0, -7.0, -2.8447532250045566, -7.0, -3.9634572601167077, -3.9073038488339695, -7.0, -7.0, -3.2920407700035588, -7.0, -7.0, -7.0, -7.0, -2.5067755366066433, -2.9880384429265163, -3.6582022533870147, -7.0, -3.8171024042569233, -3.6804261708581456, -7.0, -3.0837414400078025, -7.0, -7.0, -2.400854247259087, -2.0895396974658813, -2.4264191815419247, -3.3324384599156054, -7.0, -3.808818425092124, -2.597851829563605, -2.749384916179469, -2.7344569203867417, -3.1686938635769795, -2.853892809956602, -7.0, -7.0, -7.0, -2.973424761988879, -7.0, -2.789439684567179, -7.0, -3.0603740219104476, -2.86114122047067, -7.0, -3.652343055062715, -3.4058583993176366, -3.7188337183038622, -3.1685905167231248, -3.6921416093667836, -7.0, -7.0, -3.5616379545646066, -3.061398619785096, -7.0, -3.493248870057419, -2.826966962249786, -7.0, -7.0, -7.0, -4.408231482914914, -7.0, -3.8178957571617955, -7.0, -7.0, -3.6795187436957892, -2.5532760461370994, -3.528723923260994, -7.0, -7.0, -2.841006320237581, -7.0, -7.0, -7.0, -3.337359412001355, -7.0, -2.2420685056980982, -3.261881149383667, -2.5551912165114072, -1.4041818673690032, -7.0, -3.5780276351697315, -7.0, -7.0, -7.0, -7.0, -3.0658285940945165, -7.0, -7.0, -7.0, -3.5450370748081865, -7.0, -7.0, -3.454463732751138, -7.0, -7.0, -2.8779469516291885, -3.7377490738915573, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.042364962306286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9378759549297913, -7.0, -3.881859970905687, -7.0, -3.3537720189044595, -2.850280070939956, -2.9916690073799486, -3.0278590441755795, -7.0, -7.0, -7.0, -7.0, -2.9720484774455382, -7.0, -7.0, -3.127428777851599, -7.0, -7.0, -7.0, -3.103906298088718, -3.282924073246148, -4.110000151133113, -7.0, -3.4955443375464483, -7.0, -3.978043493909963, -3.671820560183249, -7.0, -7.0, -7.0, -3.969042967305813, -7.0, -7.0, -2.946452265013073, -2.5230711116183655, -2.5037906830571814, -7.0, -7.0, -3.655234507034294, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4405429904293583, -3.2784677868708427, -2.8395534609966906, -3.5760348835966065, -7.0, -7.0, -3.369215857410143, -3.105765577004269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.887946129001034, -7.0, -7.0, -7.0, -7.0, -3.381295623003826, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4211590897092523, -2.4925910899380925, -7.0, -7.0, -7.0, -2.5469358681060803, -2.684920130428604, -1.6781075804207748, -7.0, -3.4405155211122285, -3.392609030497567, -3.348499570283838, -7.0, -3.434153571066601, -1.9855315734532346, -2.391545786109887, -3.174447484146129, -3.426592582305156, -3.0288964451314704, -3.203123582322945, -7.0, -7.0, -3.345177616542704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0757658782157344, -3.0084937139891323, -3.711891549880579, -3.8131137540078983, -7.0, -2.848167227384979, -2.664265800147675, -3.6419695977020594, -3.5851221863068155, -7.0, -3.211209563392604, -7.0, -3.2757719001649312, -2.707842589142404, -3.143888758109275, -7.0, -7.0, -7.0, -7.0, -2.8083010194685842, -2.9689108057647475, -7.0, -7.0, -7.0, -3.373693397708325, -2.8181158760118716, -7.0, -7.0, -3.8023631743095474, -7.0, -3.7687120803776635, -3.660675788338524, -2.8280647007154767, -7.0, -3.7026889681591335, -3.1999196515905677, -3.681150749932421, -3.8791417734536084, -2.4783802829285815, -3.6220078252245322, -7.0, -3.0437551269686796, -4.034010460806513, -3.5109915855486893, -7.0, -7.0, -7.0, -3.0122344564170116, -7.0, -3.6547539332529304, -7.0, -7.0, -7.0, -2.841428996506697, -7.0, -7.0, -3.6848453616444123, -3.611882555512116, -7.0, -2.7509122702070736, -7.0, -7.0, -3.077902620312059, -3.65240521701543, -3.8732236935293995, -2.9978230807457256, -4.26609051627518, -2.196349731859291, -2.470982714616232, -3.0065475348576056, -2.2840784231405773, -2.6730538369148547, -3.285613561126485, -3.5331544660607777, -3.544649299599081, -3.8676316115708507, -2.8355554343211464, -3.922517860244611, -2.848394408643486, -2.8264486037411776, -4.161697342108118, -4.084308112145074, -7.0, -3.903130262435183, -3.0515191052522455, -2.6163889429844382, -2.8939466075520737, -4.400468911217488, -3.847475707588656, -3.2805556080062743, -3.7766285534201502, -2.3625947261651086, -3.258685162607472, -3.4089095516830414, -3.695604242313307, -3.8094025770958426, -7.0, -3.7233461952304965, -3.575534218319864, -2.94948487959529, -3.2795300649754404, -2.535586213640982, -3.693990610460777, -3.4024677308028304, -3.632540440843605, -3.2802368096096894, -7.0, -2.5840353300734824, -7.0, -2.2447685124090837, -4.13325141247232, -7.0, -4.195678299457498, -3.1734048180177767, -3.235738809944795, -7.0, -2.372209056194802, -2.9743441893192255, -7.0, -3.044191209425144, -4.136133714782523, -3.924227581260118, -3.6947806360120614, -3.3948316503650684, -2.03835220370558, -4.046795346217831, -7.0, -7.0, -7.0, -3.349615134542817, -7.0, -4.370324641925331, -3.5934799052213555, -4.306725176782492, -7.0, -4.092387253618812, -4.011612729219424, -3.6625824599965613, -3.589279221235967, -2.855562418553915, -2.774302234212727, -2.803115554890027, -2.448072442801128, -7.0, -2.0679544077499283, -3.405143222504934, -2.7872833199241156, -3.7636141895615403, -7.0, -3.8845688149183335, -3.248100836962856, -3.0481642458737346, -7.0, -7.0, -7.0, -7.0, -3.9505108929859967, -2.3074300025941716, -3.177969136009376, -2.270482815851919, -7.0, -3.7531232446817127, -2.8656960599160706, -2.8363241157067516, -7.0, -7.0, -2.792951708250132, -7.0, -3.479823878409032, -2.8534769715870274, -3.1969127457115927, -7.0, -2.4908264559884237, -7.0, -2.922050402167174, -7.0, -7.0, -3.687751847789659, -7.0, -7.0, -7.0, -3.374198257929083, -7.0, -2.9702228629562915, -7.0, -3.6419695977020594, -3.103763488014902, -2.4184379801183886, -2.583574351028345, -7.0, -3.8143142002074595, -3.1387586872454243, -7.0, -3.045127306568027, -7.0, -3.253176407377487, -2.5533367823768884, -7.0, -7.0, -7.0, -3.727622577969137, -2.549820373239367, -7.0, -7.0, -3.00552369267328, -7.0, -3.147985320683805, -2.248463717551032, -3.5889660227086835, -7.0, -3.080566364476648, -3.147614498562027, -7.0, -1.8839376639813945, -7.0, -7.0, -3.2870175013221017, -3.468495024507069, -2.5814964717554, -2.7794653042814748, -2.804877401046314, -7.0, -7.0, -4.033705151467852, -7.0, -3.9860099318532614, -7.0, -7.0, -2.7988663582008604, -3.719497016610582, -3.623352681537992, -2.654351590039098, -2.16292458092848, -3.5964871337365443, -7.0, -3.2029784607370653, -7.0, -7.0, -3.7131544018372984, -2.3805428677942175, -2.361465501680469, -3.7200765727681406, -7.0, -7.0, -7.0, -3.647399272154069, -3.8214480190175304, -2.844388408349991, -3.040074643230312, -2.2438800675491812, -3.166133970305109, -2.7282105056746593, -3.414081572540633, -7.0, -2.969815141260817, -7.0, -3.442009159140952, -7.0, -2.9563818954498764, -3.446226401778163, -3.332286935410293, -7.0, -3.743901550485179, -3.400451639956946, -3.0576052527843403, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.152855964055146, -7.0, -7.0, -7.0, -3.6738499773429494, -3.6442415858437287, -2.958181497564948, -7.0, -7.0, -2.8370971945258145, -3.4311224224012324, -3.5204049202902374, -3.979457318097848, -7.0, -7.0, -7.0, -3.3782767419344064, -3.190705124231049, -7.0, -3.644044492814749, -3.682506085939011, -7.0, -3.0060991361599037, -7.0, -7.0, -7.0, -3.6414741105040997, -3.4774830160749435, -7.0, -7.0, -3.1288837020997735, -7.0, -3.6194064108867776, -4.328399992372424, -7.0, -7.0, -7.0, -4.326335860928752, -7.0, -3.6432354749403233, -4.326479236380961, -3.8550141033002596, -2.9359963484480627, -3.8087172420492474, -7.0, -7.0, -2.7872683035008583, -2.719922888331037, -4.038918066030369, -7.0, -7.0, -4.325392500017263, -3.6243027269124592, -2.9635517335740964, -3.8493426222695306, -7.0, -3.4012626476284873, -2.7214155369241313, -7.0, -4.0278183112472155, -7.0, -4.355144896174567, -7.0, -4.02928229515597, -3.49578015230518, -4.337279516037941, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4700060000867836, -7.0, -7.0, -7.0, -2.694635357225439, -7.0, -7.0, -3.1518102044229432, -4.038540686337457, -3.2827440836856336, -4.3290315750108395, -4.035989756936426, -4.074816440645175, -4.3404441148401185, -3.871611849078623, -2.733334614498629, -7.0, -2.7736493354356497, -3.649707970928423, -3.853617103459214, -4.3348155125062116, -7.0, -7.0, -7.0, -7.0, -7.0, -4.333729323156598, -3.5397211439377028, -2.77852640452227, -7.0, -7.0, -3.2491418907324983, -7.0, -3.812445402872756, -7.0, -7.0, -3.889413764042709, -3.040763348421484, -7.0, -7.0, -7.0, -7.0, -3.192830638664709, -3.275119316297735, -7.0, -7.0, -3.6691308473733324, -4.333970933444835, -7.0, -2.7672644940171898, -4.350228629754866, -7.0, -2.3021270370426237, -3.1496718328901663, -2.4636253971574824, -7.0, -7.0, -3.520614521878236, -4.349413526814732, -3.1054723361070975, -2.7425287512507515, -3.8493989373838775, -2.848817254910999, -4.335076597314406, -7.0, -7.0, -4.175772659601536, -7.0, -7.0, -3.8663464227496016, -3.4406467477280938, -2.854384409551896, -7.0, -7.0, -4.0389577711393665, -3.865597435075882, -3.2039163593896003, -7.0, -7.0, -3.8794590739205956, -4.080518260527118, -3.1908567368986396, -7.0, -3.435697388325448, -2.3717872165703136, -7.0, -7.0, -7.0, -3.6288813378134526, -7.0, -3.4651224941954424, -3.9139550634016746, -7.0, -7.0, -2.8989186743447117, -3.330118485571775, -7.0, -7.0, -2.22407987684108, -7.0, -7.0, -4.021478732257528, -3.5466660250701842, -7.0, -2.8706686043154397, -3.8116587737331162, -2.984864716816858, -2.5451008497880436, -7.0, -4.449370390682258, -7.0, -7.0, -4.341474094026657, -4.5044708624944185, -3.3940375664247404, -7.0, -7.0, -4.334453751150931, -2.957167487189121, -7.0, -7.0, -7.0, -3.5653558117307824, -7.0, -2.8514950644672523, -4.0463000196529695, -7.0, -7.0, -7.0, -4.448876295154121, -7.0, -7.0, -3.1338538323631155, -7.0, -7.0, -7.0, -7.0, -7.0, -4.327297617895854, -7.0, -3.683272236315922, -3.629409599102719, -3.694934085342246, -7.0, -3.71291894805983, -3.0767729606871117, -7.0, -3.8014551636613825, -3.6885799830542143, -7.0, -7.0, -7.0, -4.04958624131185, -3.562530768862261, -4.045146877757589, -3.13930174154602, -7.0, -3.3595767940674306, -7.0, -3.1906265348970964, -4.051962449783047, -3.2482389961733467, -7.0, -3.908980689485702, -7.0, -4.41982362360833, -7.0, -7.0, -7.0, -4.331305798553269, -3.1856088078847637, -3.4545399849648186, -7.0, -4.0603767213953565, -3.4899584794248346, -3.4007263285869342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.33209492844608, -3.5549885839573387, -4.387140569465301, -2.6677343311128334, -2.423695121216955, -7.0, -7.0, -3.553417750819333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4210579070373512, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7053675809749085, -7.0, -2.855748283000016, -3.587807143622317, -4.349199794429999, -7.0, -7.0, -2.9610834419339636, -3.399865929708076, -2.212115371138457, -7.0, -3.0174990966378847, -4.035909798456609, -7.0, -4.328216457500718, -3.6373181507329417, -2.8350059725018575, -2.848262446579062, -3.5076366460222475, -3.438621448045396, -3.4417540323451767, -4.032940937780854, -7.0, -7.0, -4.369790824030776, -7.0, -7.0, -3.3276041138143158, -7.0, -7.0, -4.347486138076573, -7.0, -2.3113299523037933, -3.421364580221776, -4.341157437445437, -7.0, -7.0, -2.7768603700505596, -2.687728795861634, -7.0, -3.25784214067938, -4.3243030374868345, -7.0, -4.387852352763043, -3.749040268703457, -3.567864134341705, -4.375791597685192, -7.0, -7.0, -7.0, -3.5137501500818233, -2.937921285521538, -3.123976018280717, -7.0, -7.0, -7.0, -3.5157745272157848, -3.6936038520721226, -7.0, -7.0, -4.364156856122531, -7.0, -3.656059852021028, -3.484320180532331, -2.7726457370988777, -7.0, -3.6398847419163043, -2.9606997475594645, -7.0, -3.1081937454828905, -3.1469802773754947, -3.162173680246885, -3.7321323001969113, -3.4271126760547097, -3.263757868359468, -3.57826253807072, -7.0, -4.337339439388419, -7.0, -3.601824684748978, -3.5221833176186865, -4.411939417524044, -7.0, -7.0, -7.0, -2.6706244552094285, -7.0, -7.0, -7.0, -4.397418542351348, -7.0, -3.2418203185180303, -7.0, -7.0, -3.285833056152534, -3.321238576631269, -3.145462789979763, -2.8484706351194125, -2.9940518573330643, -2.7296092121055566, -2.35145029399841, -2.2814982124294234, -2.6321046372876338, -2.5110983073046955, -3.6902669794624976, -3.530060889683707, -2.6847975028662603, -2.7352794480604565, -3.0434215987515607, -2.466857181962985, -2.682744445583209, -3.184875061321418, -3.1524829269941343, -3.0943546489622813, -3.129689892199301, -2.605305046141109, -3.1629182646528187, -2.8219766055687945, -2.600894204894378, -2.7822752388298224, -3.0483627882402398, -2.84609443527844, -3.8800510030033712, -2.262967172383463, -2.940354590418678, -2.7488412845235115, -2.7788221050942195, -2.9336559786575473, -3.2721124722621524, -2.889608468886824, -2.8343431524801153, -2.86207795289074, -2.7820715967043443, -2.651384140518479, -4.035949779536674, -2.801656065740837, -3.1818562864281845, -3.450495446659433, -2.5840353300734824, -7.0, -3.2434578228326734, -2.1585935454352914, -3.704236337308788, -3.896801697664922, -2.620027365870543, -2.6251609671120715, -2.538527803450734, -7.0, -2.625321558245327, -2.5072131388836794, -7.0, -0.8127436357743372, -2.9114929941425376, -4.100060223931153, -7.0, -3.0606245045746627, -2.20705239464774, -3.0001274730417, -4.327542831932522, -3.803047210491129, -4.028184770141744, -2.979218596375799, -4.424080882717048, -3.173719779362857, -3.3973248795188713, -3.2065325725278244, -4.323231468114774, -3.4139071836972685, -2.8635424688134687, -3.1530013881396495, -3.3483933771587093, -1.9523585217464556, -2.7755538165527383, -3.2421489580346923, -2.8825755074974517, -4.334614571179395, -2.624600317850178, -2.8183280278667078, -2.6737254469058893, -3.5932789192578536, -7.0, -2.8958679123662567, -3.58167949072423, -3.4287825114969546, -3.7234761958641114, -7.0, -7.0, -7.0, -3.0290792589288484, -2.5565996215786173, -3.659136240870397, -2.607442837452188, -7.0, -3.873998355018009, -3.151114367869422, -3.582915199370299, -7.0, -7.0, -3.302713794348007, -7.0, -2.9555884130934214, -3.350159881452703, -4.332640410387462, -7.0, -3.530250939366719, -7.0, -3.3211494758498192, -3.3830969299490943, -3.2897713227931304, -4.423769988626339, -7.0, -7.0, -4.349277527467955, -3.1471851128693182, -7.0, -3.374536856119436, -7.0, -7.0, -3.6020527530262783, -3.049599606087976, -1.8344561795716325, -7.0, -4.367467742117974, -3.1859296516724465, -7.0, -3.290591042549338, -7.0, -3.868428902768081, -2.473737803040008, -7.0, -4.024916464556482, -7.0, -3.8677031332700977, -3.1992236364745255, -3.6320926962641336, -3.3474275986185416, -3.8623898110266452, -7.0, -3.5052081388648544, -2.935291288456696, -3.110890197740769, -7.0, -3.2661593022103284, -3.5315701457962727, -3.3988462553946235, -2.6386661486929914, -4.331204524275846, -7.0, -3.675228253593064, -3.7532574074565974, -2.816171405839661, -3.670561251605292, -3.6101986574867384, -7.0, -3.633407852121307, -3.595496221825574, -7.0, -3.30838379618209, -4.329214765805725, -3.878636673026517, -3.0863921912039465, -3.7407770455884624, -7.0, -2.9493086704742653, -2.692116792460456, -3.7902675666555816, -4.358810172458563, -3.706888394981618, -7.0, -7.0, -4.341454309753056, -3.0636529945906887, -2.9368256236283132, -7.0, -7.0, -7.0, -7.0, -3.257178408417606, -2.6039279274630815, -3.6371093051016494, -3.006205517657194, -2.859186349350555, -4.355164066515204, -3.5900612308037427, -3.111988908987206, -3.7008940037108062, -3.4645081766878896, -7.0, -3.6495879611004387, -7.0, -3.7947493812264192, -3.622576647353478, -3.705521613422667, -7.0, -7.0, -3.7365956742507382, -2.9747131347031917, -7.0, -7.0, -4.322529394341456, -7.0, -7.0, -7.0, -3.848620117434134, -2.93703230311591, -7.0, -3.6538490123638514, -7.0, -4.332519251373731, -7.0, -7.0, -7.0, -7.0, -3.5161385767170743, -3.442675706122545, -3.1609901905696485, -2.7467169895057046, -3.6996990068748015, -4.333346498424387, -7.0, -3.174768266934489, -7.0, -7.0, -3.12469646635406, -7.0, -4.333709182897272, -3.4237918130180067, -2.7016055229341567, -4.062337507279505, -7.0, -3.8484149324724117, -3.403234944699574, -7.0, -2.725059716266424, -3.5674772960726626, -7.0, -7.0, -3.350441856535061, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.782293422809544, -4.606679571415898, -3.5246557123577773, -7.0, -7.0, -2.484731884687293, -3.5514499979728753, -7.0, -7.0, -7.0, -3.3209766773428235, -7.0, -3.1119529215825246, -3.9647780220223763, -7.0, -3.788875115775417, -3.1597691998503703, -7.0, -7.0, -7.0, -7.0, -7.0, -3.368658712392227, -4.57372425780422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.659345635746177, -7.0, -7.0, -7.0, -3.844946010338845, -7.0, -7.0, -2.71755163219766, -3.446847710155809, -3.29284654660978, -7.0, -7.0, -3.6722826247889206, -7.0, -3.2127201544178425, -3.372085742489799, -7.0, -3.3770784782188477, -7.0, -3.3729120029701067, -7.0, -3.329499575762843, -7.0, -7.0, -7.0, -7.0, -3.398634324538392, -3.2392160331698863, -3.7742833327557155, -7.0, -7.0, -3.3047058982127653, -7.0, -7.0, -7.0, -7.0, -2.667349166419893, -3.5986263846416544, -7.0, -7.0, -7.0, -7.0, -3.177295960194052, -2.6481159567559627, -7.0, -7.0, -7.0, -7.0, -7.0, -3.097344090487375, -7.0, -7.0, -2.943235703699528, -3.6960941599952233, -2.8731388810370233, -7.0, -7.0, -3.318272080211627, -7.0, -3.5935075893317654, -2.612213113865918, -7.0, -2.4922853379102463, -7.0, -7.0, -7.0, -4.038222638368718, -7.0, -3.2899232395240046, -7.0, -3.2845811128217504, -2.989004615698537, -7.0, -7.0, -7.0, -7.0, -4.110101275275583, -7.0, -7.0, -7.0, -7.0, -3.2860071220794747, -7.0, -4.215267343431722, -3.209045615689968, -7.0, -7.0, -7.0, -5.000559878837396, -7.0, -7.0, -3.7444494574467986, -7.0, -3.398981066658131, -3.3768607169371743, -2.747217536139993, -7.0, -7.0, -4.094174043697868, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2410125337870626, -3.5358635207124522, -3.197528655522771, -3.5010592622177517, -2.798650645445269, -7.0, -7.0, -7.0, -7.0, -7.0, -2.633893505265488, -7.0, -7.0, -7.0, -3.0972094232108174, -7.0, -7.0, -7.0, -3.4778444763387584, -7.0, -2.7007037171450192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.039618480853048, -7.0, -7.0, -7.0, -3.4109458586877746, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4101443047027806, -7.0, -7.0, -3.799939493279297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.460822698802402, -7.0, -3.486642969023512, -7.0, -3.7178368674869255, -3.240798771117331, -3.0479605907788403, -7.0, -4.126553477961279, -7.0, -7.0, -7.0, -3.496929648073215, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5938396610812715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.123851640967086, -7.0, -4.63503950719497, -7.0, -3.35869609957381, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203984244420126, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.648954928341813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.575014554582114, -7.0, -7.0, -7.0, -7.0, -3.3454325474991466, -3.5509617522981762, -3.0078818364351347, -7.0, -4.723562385355725, -7.0, -3.3402457615679317, -7.0, -4.053846426852253, -3.3679147387937527, -3.424514126822372, -7.0, -3.9249508889156104, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6221103603612193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8666417205660397, -7.0, -7.0, -7.0, -7.0, -3.9061543387262456, -2.821747409869795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3706056009381484, -7.0, -7.0, -7.0, -2.87989832433001, -3.5886045866476044, -3.171628957978357, -7.0, -7.0, -7.0, -7.0, -3.7513560997253936, -7.0, -7.0, -7.0, -7.0, -7.0, -3.362293937964231, -3.0340265237751103, -7.0, -7.0, -7.0, -7.0, -4.564955891631275, -3.412830002562326, -4.344657485698993, -7.0, -7.0, -5.024850846911755, -3.57153414742667, -7.0, -7.0, -7.0, -3.693463127219531, -7.0, -3.8298824464434933, -7.0, -7.0, -7.0, -2.900913067737669, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3466528340631028, -7.0, -7.0, -4.611383384708976, -4.782716219408081, -7.0, -3.4546162237926987, -4.122911830365234, -4.098591815007755, -7.0, -3.402422600478645, -3.3201575182037963, -3.5628477721477982, -7.0, -4.3350364406355135, -4.731024379815688, -7.0, -3.694638098784492, -4.358448838820213, -3.8418865974069525, -4.152023201102708, -7.0, -7.0, -7.0, -4.691611874214416, -7.0, -3.7053015503412405, -3.1521965823342093, -7.0, -4.672153296245931, -3.6236627073562047, -7.0, -3.103076438493488, -7.0, -3.6111920608684343, -3.75077829865311, -7.0, -7.0, -7.0, -7.0, -3.8726806071519295, -7.0, -2.6733793415503886, -3.426185825244511, -2.4795816475112002, -4.770557474850995, -7.0, -7.0, -3.2434578228326734, -7.0, -2.7137997846022897, -7.0, -7.0, -7.0, -2.6603092564193918, -3.4147271193671846, -7.0, -2.554685971338815, -1.4532725187258406, -7.0, -2.73917663191073, -7.0, -7.0, -7.0, -3.998067439033124, -2.872937535397121, -5.230572379710766, -7.0, -3.8035936647713444, -7.0, -4.059449812507961, -7.0, -3.9306858969758305, -3.8265930539340482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.449441664614968, -2.2377112577136704, -4.304231942185673, -2.581318327670128, -7.0, -2.8356759403257485, -4.264042955041059, -2.2403770800020877, -4.873308973962765, -7.0, -3.2542257208262924, -4.0214993986774745, -4.326909078957348, -7.0, -7.0, -7.0, -7.0, -7.0, -2.945327877376854, -3.273579945676206, -2.8249064713021124, -7.0, -7.0, -3.7685826086289427, -3.592731766393962, -7.0, -7.0, -3.371744956775117, -7.0, -3.765864901136174, -2.9017695878361724, -7.0, -7.0, -7.0, -3.2518814545525276, -2.829946695941636, -7.0, -7.0, -7.0, -7.0, -3.406199423663313, -7.0, -3.2064660628531048, -7.0, -3.769266522533784, -7.0, -7.0, -7.0, -3.844301102714822, -3.953082843912086, -7.0, -7.0, -3.4032492455205543, -7.0, -2.942900541140294, -7.0, -3.190471770573345, -3.138753678977215, -7.0, -7.0, -7.0, -3.4865721505183562, -7.0, -7.0, -7.0, -7.0, -7.0, -3.048053173115609, -4.047780924741197, -7.0, -7.0, -3.217834747530156, -3.3761205256094518, -7.0, -3.8885445298732684, -7.0, -7.0, -7.0, -3.5573868820595074, -3.486624537921495, -7.0, -3.431524584187451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2586372827240764, -3.5922878159521305, -7.0, -7.0, -3.283696889741305, -3.100606831566212, -7.0, -7.0, -4.035189508908448, -7.0, -7.0, -7.0, -3.184691430817599, -3.7831886910752575, -7.0, -7.0, -7.0, -7.0, -3.784795537856762, -7.0, -7.0, -7.0, -3.702762777554604, -7.0, -7.0, -3.564133223842105, -7.0, -3.0274515428724906, -7.0, -3.0356965038452106, -7.0, -3.2920344359947364, -3.7861122837198264, -7.0, -7.0, -3.2132520521963968, -7.0, -3.818110374400107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.892984550710717, -7.0, -7.0, -7.0, -7.0, -3.3289908554494287, -7.0, -7.0, -7.0, -3.29269900304393, -3.1934029030624176, -3.200759326791928, -3.8611160441613954, -7.0, -7.0, -7.0, -7.0, -3.0757293997408985, -3.2780673308886628, -3.518105774529618, -3.1032904715577496, -3.0970836960665213, -3.3832766504076504, -7.0, -7.0, -7.0, -7.0, -3.2706788361447066, -7.0, -7.0, -2.890281261927012, -7.0, -7.0, -3.8039626383243994, -7.0, -7.0, -5.234777883233506, -4.059040586854335, -5.2379732962172065, -3.9583677010595633, -4.4570437728006915, -3.855604956189789, -2.2745287875181255, -3.2166590965381316, -7.0, -4.758068714620923, -1.7277239847974963, -2.1651070250386395, -3.668526947558438, -4.935023327267549, -7.0, -4.058924316651292, -4.193402903062418, -1.895847650950953, -3.661487467656179, -7.0, -2.928230055583499, -1.5946023431755172, -3.8747288064840673, -4.281235435173627, -4.933659351805472, -3.3141657830188542, -3.574119376510415, -3.820600545981254, -2.4655151160777895, -4.0903739568450685, -4.933972940101611, -7.0, -4.3906071186911975, -3.7913748112350265, -4.934309037350079, -3.0282892554324534, -4.331662602150657, -3.682879314925225, -3.2439007156385253, -1.9451744228401158, -4.193741688019228, -3.980495747537131, -2.47194779850952, -4.195419072502522, -3.194814042376054, -4.758404667212629, -4.935504746707883, -3.628645567732361, -3.774428864606044, -3.3291517006052955, -1.743560429664772, -3.749100187575694, -2.6894426659813675, -3.0636742407951223, -3.956913696991375, -4.157020844572027, -3.3425426075024336, -4.634288295838262, -4.5375748144154935, -4.759463867212711, -7.0, -3.874282612188991, -3.3912805950499947, -2.474819422014234, -4.389995895119275, -5.23491444587379, -3.4915042671197116, -4.933720063988503, -3.1709836240531404, -3.8825245379548803, -4.536050627244502, -3.5773943798662415, -2.104594825392442, -4.757841230761179, -3.615872429541114, -7.0, -4.332279357797102, -2.756616605608402, -3.557329216984655, -4.53655844257153, -5.234641277637988, -3.2956795321953303, -4.634076546929765, -3.058842915637728, -2.602749911220061, -3.6045425009088827, -7.0, -1.0662335505085947, -2.6221765574101847, -1.9583311604617466, -3.836855579548605, -4.63255345397555, -2.9865440595674193, -2.9771354402245875, -2.9787046199000207, -2.867310817312023, -3.3715485984422466, -2.370579019237581, -5.236290318561915, -7.0, -7.0, -2.931547037066958, -4.757714799332841, -3.22208086808631, -4.123359044078283, -3.0703874932053874, -2.2349232022351155, -4.281674608555453, -4.536404392209844, -3.6456590285707335, -3.3337796697190534, -2.536594192858174, -3.914161753873292, -7.0, -3.747547120072836, -3.6511561995853357, -2.8988715494355066, -4.391396394500959, -2.9051695198309795, -1.1812620732648487, -5.235934776600263, -4.551837762017642, -4.935013239477764, -3.1404790343114897, -3.805437923313723, -3.0042438678517387, -3.303794175527941, -7.0, -4.634051331848015, -2.3692685542924994, -3.2674937710653538, -5.234547652694329, -4.331649954552743, -2.8135451686201822, -7.0, -7.0, -7.0, -4.280757898293844, -4.234666578212518, -2.231604854564069, -3.3774047104492237, -2.158923013122718, -2.910177095137938, -3.3549748484830855, -3.1246501914547884, -5.234808234198132, -4.633228517359263, -3.7184236754355378, -3.6593051923304962, -2.4626905274261266, -7.0, -4.390304140143775, -4.1947690667173525, -2.3463189508318423, -4.757646511054261, -4.933578389023442, -3.5057703147997277, -3.5381663917586375, -4.757922127563481, -3.3678266846246245, -3.9824948572205137, -4.239849820690192, -4.540607234292212, -4.124265894402821, -3.598897456689798, -4.93685792517924, -4.457652330856984, -1.7698732638523096, -4.194155961022921, -7.0, -7.0, -4.9352678844590505, -5.235482995106691, -4.281038420091887, -4.632728009129432, -2.8058356979612458, -4.121471456178261, -3.253687674240615, -4.535807878897487, -2.2984009709195474, -1.5997196899125223, -3.5037982464619217, -3.0041087957295773, -3.099556441287455, -4.006871077377176, -3.4833895781053097, -3.2830045605653697, -3.212443912811824, -4.032827699694245, -3.958860503280292, -2.66149717917983, -3.9569036002309135, -3.405996818295181, -7.0, -1.951185252252834, -4.460409174486291, -2.828409743123176, -7.0, -3.2014826209704887, -7.0, -3.390201345934264, -4.934879554137214, -4.158485625272292, -4.934422695599237, -4.758687373229256, -3.4836954821069357, -4.125218432391805, -7.0, -3.3308044475799257, -2.350363247273812, -2.72075606342588, -7.0, -4.933659351805472, -4.194027174554883, -4.757757790148306, -7.0, -4.934654971046216, -7.0, -5.235917117994777, -2.4141641972154555, -3.3794992284803076, -2.832419348499102, -1.5079704602782635, -5.234578019752476, -4.332440984876183, -3.758609142659744, -3.458504393116643, -7.0, -7.0, -4.3938483531306005, -3.5563979948413116, -4.936770021230186, -7.0, -7.0, -5.235045910065424, -4.758192516865709, -7.0, -5.234992823547606, -4.760874638052189, -2.1823385085466485, -4.933616342206829, -4.23470958580684, -7.0, -4.390155098146551, -4.33308437114365, -4.28175784998152, -7.0, -4.391096487376276, -3.713994267660644, -3.5056498329258434, -2.844317521748743, -2.6458666533498327, -3.1168566946868985, -4.933866750067607, -5.234641277637988, -2.393663044735808, -3.1968265991549494, -2.074214113604477, -4.634202600383421, -2.4991534837660314, -3.6565596501083624, -4.15608957773648, -5.235435013044649, -3.359799471686457, -2.2557597558295988, -2.5478473545856404, -2.9011006530221057, -2.942289137919038, -3.2780698466783362, -3.5924871452980516, -4.933985580042992, -4.635139291129992, -3.793511005792858, -4.126346240058687, -7.0, -4.05924272179019, -5.237257129870853, -7.0, -4.635792770070686, -5.234676698029644, -3.2011238972073794, -2.8123440918353033, -3.9359327868037766, -3.5870146381512305, -4.15839265038712, -1.4214863526530293, -2.719833155981937, -4.934091741029214, -2.717245161243629, -4.632877210811569, -4.282100737285847, -3.780741787862935, -3.5138129077677016, -2.391460040062417, -3.0449390290609553, -3.9934484777722394, -4.9374175814771375, -3.8801447410266907, -3.393933520699538, -1.3471535638118464, -2.5621022515114826, -5.234701996540841, -5.234534999126725, -7.0, -3.18275152356222, -2.948522186033202, -4.633524001321515, -5.236035669145632, -4.063888540530298, -4.536361450403717, -3.807372143360144, -4.332488956338184, -3.0439032795531493, -4.457995373496883, -3.8749479543989533, -2.9463554862980423, -3.163699460691016, -2.040840249302447, -2.463013153914313, -2.254843910889203, -4.634119409209181, -2.869452666025396, -2.6327946083041307, -3.1650651966570837, -7.0, -3.9354493224404465, -7.0, -3.1481795768335057, -3.5672592416964437, -3.25060233715025, -3.7202044225667583, -4.757714799332841, -5.234532468368964, -3.145810203973303, -7.0, -5.236055844842364, -4.537285025199807, -4.098433572355451, -4.934500976204146, -2.161216268492156, -7.0, -5.234729823201154, -2.725231158078876, -2.897428686237337, -3.3804608434865733, -2.886957591040489, -2.7842439615296883, -2.1229971975092385, -2.1829278707887827, -1.8749933830032488, -2.0243990147643496, -2.455275875899563, -3.436999507587265, -2.776614663432653, -2.592071332845231, -2.5550186319677652, -1.9962281749156106, -3.4780973196422216, -2.262992219097479, -2.19155526331211, -3.488863681943735, -2.9895792040529185, -4.128958182374678, -2.6562304897937272, -2.664125798067482, -2.097787945361475, -2.327137353740817, -3.621699974221918, -2.6780196452952088, -2.8146330590485418, -3.694898389725206, -1.579555753108801, -3.196185555942593, -2.5616466373074993, -3.0450899717952025, -3.0665239222329292, -3.733109454087558, -3.2671243008085686, -3.519592243525824, -2.5980824712218, -2.629180391564149, -1.8712949403042993, -4.391406471815851, -2.363943628997153, -2.1947223439203243, -2.6861758282690205, -2.2447685124090837, -2.1585935454352914, -2.7137997846022897, -7.0, -3.219846386024361, -3.879534666600482, -2.786549875081608, -1.7204902741566295, -1.8246625809658572, -4.459432698349686, -1.8541116197418506, -2.3713068124942698, -7.0, -2.4023884497671752, -3.1276252821015027, -3.8833182081550213, -4.759426083090233, -1.9576295382648627, -0.5227568413154664, -2.25148193134294, -4.536361450403717, -3.4530494125334665, -4.457387296278139, -1.9726040220056356, -3.668552656897619, -2.384066517495708, -2.8962196591822815, -3.6822700751862243, -4.63274571370413, -2.952373688836708, -2.1213684437968094, -2.308277941800968, -3.132373881522234, -1.5814191386454624, -1.630903483314324, -2.0907098018780537, -1.3994450492106825, -4.634157225354798, -1.7180762856263596, -2.048935890938645, -1.8200791452840763, -2.302756357937335, -4.390498575676762, -2.7271730084083075, -2.2106312850861856, -2.9495564322620074, -4.93408415896217, -5.234772824533177, -7.0, -7.0, -3.6780678315733484, -1.5818406616841054, -3.6158148299730293, -2.2111068681045203, -4.235159645042988, -3.5138103976343795, -2.7466702927662827, -2.6827758928984187, -4.335480467368298, -4.332137884743325, -3.190012065678453, -4.9338768645229125, -2.487714328217087, -3.1226229161409838, -4.235939821784239, -4.937901366175979, -2.4723137566575435, -4.034615924863207, -3.137257654522995, -4.759484017400655, -4.121847611906487, -3.2702864641306397, -5.235932253986295, -4.281949496845566, -4.636023765759377, -3.216118577374879, -7.0, -3.0677833511916037, -7.0, -4.633051635913091, -2.974439403782802, -1.6694289158435365, -1.8319076454770165, -5.234653928109494, -3.7351870627759025, -2.9400762423001052, -4.759436159177652, -3.3539861346639293, -7.0, -3.5746451400686006, -2.2563819751372423, -7.0, -4.934124595123546, -4.637532256267815, -3.5560586443269586, -2.6960319843565825, -4.194365473068565, -3.746393108385608, -3.731553512580534, -4.457856675648477, -3.594593426642608, -2.2896782179173534, -3.341730044534258, -4.757712270328809, -3.2003305651247738, -3.2919372792280885, -3.9832753825780216, -2.379252320088521, -4.934771062200509, -4.934124595123546, -3.227243781503063, -3.7916054455762533, -1.7364954278650726, -3.240294587212841, -2.6057463605514704, -3.8061121101690913, -4.28168974454697, -3.7457601584924167, -4.934778632284937, -3.3906334089447348, -4.758427391461484, -3.475237729405027, -2.867950913934925, -3.7186123935535487, -5.234661518215525, -2.897671264567575, -1.798681228722877, -3.845861726455298, -4.461165750357359, -2.8988821501556634, -3.8257505813480277, -3.904592609709625, -3.8056015349439924, -2.8053644286916284, -2.5003513413022445, -4.538314788965302, -4.060760777022355, -7.0, -5.234651398044672, -2.8139581849717996, -3.6965236329297477, -3.5286142667822133, -2.4888974345488073, -2.29209349276241, -3.5951954985716172, -2.991483921567074, -2.809587153336223, -3.621542245011795, -3.2763019240069164, -4.93483918821054, -3.7327203631568318, -7.0, -3.227011105616783, -3.315288564340599, -3.611982518295699, -4.933687179276238, -3.4669053026275845, -3.856429290988121, -2.505047454180356, -4.391169593074347, -7.0, -5.234734882402388, -5.2347070560662425, -4.933967884022049, -7.0, -4.456962904242507, -2.788514525238426, -4.091611693937414, -4.2385328425772455, -4.934670115130671, -4.235924686056476, -4.536194694903611, -4.089347383665818, -4.6341622672587635, -4.633738543145729, -3.426458707426532, -3.982324008676067, -3.0823459420467962, -3.6349783452242814, -4.290541610857977, -3.804578580195262, -4.75759086081304, -3.6291310202406026, -4.08962255158434, -7.0, -2.9858538902073053, -4.060047800629704, -4.156882164439376, -3.32247585881818, -3.777764206446543, -4.198507132018743, -4.757841230761179, -4.456937629729642, -4.008677806857828, -5.234825937948012, -3.676436539951696, -3.82255531024074, -5.236509550399869, -5.234565367069626, -3.037205088564478, -7.0, -7.0, -7.0, -3.9876662649262746, -2.7316693318286362, -7.0, -7.0, -7.0, -3.3590428498964116, -3.8535156967569284, -7.0, -7.0, -3.247640144480507, -3.450112193286101, -3.7157944980035067, -7.0, -7.0, -3.207005670893413, -7.0, -3.167275127208233, -2.151110436197178, -7.0, -3.5354207180561734, -2.9252392145091695, -7.0, -3.692097489441729, -7.0, -3.348927619178392, -4.020112569565467, -3.297059824075058, -2.882055227035669, -3.5338991007965945, -7.0, -7.0, -7.0, -3.2666627971449946, -3.290835646600807, -3.1295466788486532, -7.0, -3.7547304690237535, -7.0, -3.0008175943550923, -3.6862339584582546, -7.0, -4.050959459771651, -7.0, -2.9243439084088356, -3.9935244031670654, -3.53343309682066, -7.0, -4.0178677189635055, -4.035269600099436, -2.4237999078399373, -3.7734938922709707, -2.72670174542351, -3.7078255683322316, -7.0, -3.160339883036565, -3.374565060722765, -7.0, -4.011147360775797, -4.011655010724778, -7.0, -3.7025166974381505, -2.7435779267754823, -2.1073754466862216, -7.0, -7.0, -3.0229155215247347, -7.0, -2.9562885174336575, -2.846630059514878, -7.0, -7.0, -3.2090303669607603, -7.0, -3.15175279223674, -7.0, -7.0, -2.7877752377008136, -3.746244871720198, -7.0, -7.0, -2.89726044333122, -3.703033304733686, -2.7426537306498884, -3.4008141922675588, -2.8609764989868767, -7.0, -2.8368059648499044, -3.621280167550415, -4.29130223575985, -7.0, -7.0, -3.4675341138495925, -3.7353992699626937, -3.4584867637982066, -2.7297383385189824, -7.0, -2.9333560385709307, -7.0, -3.979548374704095, -7.0, -2.2990902273367504, -3.9813201732591073, -3.2814500293791102, -3.2458004570397443, -2.4507403361535487, -2.246205705248979, -7.0, -3.5137501500818233, -3.7158780483080935, -3.5455132852244566, -2.7507698054481593, -7.0, -7.0, -7.0, -3.2547206696009736, -3.2229114697957306, -7.0, -2.6458223899269093, -3.517651074521444, -7.0, -3.9034698285071703, -4.00238207493276, -3.600678509318092, -7.0, -3.4725370532620774, -3.272835795025385, -7.0, -4.003718963823115, -2.4642696995224282, -7.0, -7.0, -3.9800488450649567, -4.033705151467852, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5303984448232404, -2.6014865855147615, -3.326652341050451, -4.14370162942477, -7.0, -3.7445276734725663, -7.0, -3.5121505369220305, -4.020029633542699, -7.0, -2.8549130223078554, -7.0, -3.9917132757130895, -7.0, -2.8351453800598083, -7.0, -7.0, -4.041471640613747, -3.7235788004625765, -7.0, -3.5481026604586483, -3.2537417373268314, -2.543051622006951, -2.0431695751374144, -2.694844413746504, -1.8133711181752914, -1.7993405494535817, -7.0, -2.890928982172711, -2.7891839552635496, -3.979092900638326, -3.4988157877634483, -2.39050430210634, -1.9496158605591523, -7.0, -3.9805487393597705, -2.94019263553191, -3.9924651478080433, -3.5463884121954212, -3.9804578922761, -3.554428584722055, -2.389380612961912, -4.009365898346244, -3.4421974643102136, -3.4125949311184796, -4.024977972095624, -3.7575858013465804, -4.0297489185668365, -3.56177695739487, -3.173186268412274, -4.029911104912444, -3.0111147988652363, -7.0, -2.9902436878140852, -7.0, -3.6536947953150816, -2.6618915263256966, -3.714078164981856, -3.2878465002495174, -2.6762154147284902, -3.978500069311459, -3.055966089594232, -7.0, -2.666680729097877, -7.0, -7.0, -3.210140091523844, -3.4514794051248616, -7.0, -3.2823577252216545, -4.025333178524231, -2.270895401371112, -7.0, -7.0, -3.992376759798803, -7.0, -7.0, -7.0, -7.0, -7.0, -2.820479343292401, -3.110185527411162, -3.4513450110399573, -3.6234345498576377, -7.0, -3.3917288224907427, -3.6983180735427403, -7.0, -7.0, -3.683677298818692, -4.049992856920142, -4.0326590460399245, -3.5542468081661105, -3.02123525372655, -3.3742441252240405, -2.584783378996508, -2.8124676978229344, -2.89726044333122, -3.1383026981662816, -1.545383382070007, -2.816813757343871, -7.0, -7.0, -7.0, -3.687974620034556, -3.402820015912672, -3.0014740966917324, -3.9770831203158528, -3.4030776045809015, -4.142983554922818, -3.7384634394619525, -3.5777502315508336, -3.1141103565318917, -7.0, -7.0, -7.0, -2.52647144918348, -7.0, -3.5221933557442147, -2.6241101320710367, -3.0405663811422534, -7.0, -7.0, -3.6906390117159673, -3.4310879340564138, -3.2091276107865587, -2.917051738708869, -3.3763031557559207, -2.972611176217687, -3.7265234583862394, -7.0, -2.7040601611790334, -2.0907449772627436, -2.000704692511774, -1.8986117147091868, -7.0, -2.6089715095439416, -1.864892319838019, -2.0964585634020168, -3.3332456989619628, -7.0, -3.5744942682853273, -2.2018229155361007, -4.019365574572488, -3.469895618975018, -4.028693228393916, -3.1424406089605474, -2.749091866004445, -7.0, -3.5499683102108293, -7.0, -4.0080889362915775, -3.208575708947575, -3.4379090355394983, -3.479551317993014, -3.389839162125274, -2.5067640292211575, -2.4707758982656967, -1.7046012485275561, -7.0, -3.817061044059383, -3.040602340114073, -7.0, -7.0, -3.6749070468191296, -3.323870606540509, -3.4220314306536217, -3.693507108634517, -2.17696773661231, -4.06628864526571, -7.0, -3.7471786713601642, -7.0, -3.001641010581909, -3.1588792018312803, -7.0, -2.8418203302530207, -4.004493337547275, -3.3768184031718285, -3.378190179082691, -3.420809805024999, -7.0, -2.5796978721407147, -3.1146991576799494, -3.0974019347178685, -7.0, -7.0, -3.9876662649262746, -2.8174957822367825, -2.9492751746818158, -3.253004643647484, -7.0, -3.9813201732591073, -7.0, -2.9832503071149876, -1.9237347161072647, -3.7013952690139202, -1.9594790127550423, -2.636714318834443, -2.1486384153958378, -2.3653060993655983, -7.0, -7.0, -4.083162074006658, -4.53283078772188, -4.44269921263019, -7.0, -7.0, -3.472610197596045, -3.9195226242023646, -3.5673069327762104, -3.4977075869213845, -4.268297087223766, -7.0, -4.164456954998157, -4.788239097382168, -5.035629827790439, -3.594530662789344, -4.48297357411599, -3.846777678928908, -3.4898647703982753, -7.0, -4.471174318307337, -7.0, -4.403755191424458, -4.445012287887958, -3.680133984649043, -4.338356873353703, -4.483601559279265, -4.436035362607869, -4.387425422788231, -7.0, -3.4553905597931154, -7.0, -4.451939869365103, -4.177796133292215, -3.914660430589222, -7.0, -3.626689305465622, -4.220055760251341, -4.573126994434775, -4.085558138243807, -3.9223188192407434, -1.8788176305132411, -3.9019640161341345, -2.2698908472038735, -2.146128035678238, -4.13325141247232, -3.704236337308788, -7.0, -3.219846386024361, -7.0, -1.2964611045050014, -2.457762729111166, -3.0944538743639973, -2.969538119736259, -4.028367883697062, -3.607037804850964, -4.195733648273212, -1.6541060757513173, -3.8831786174475216, -2.4466228563122, -2.4526168878277472, -7.0, -1.8392162318059182, -2.9772139868108893, -3.827484243811539, -2.4558744716935386, -2.22543536518789, -3.03906142848015, -2.3785742856804393, -3.5759091446814137, -3.852267278371824, -3.1174370252826193, -2.7070759915092815, -3.281533313857376, -2.4453568207946823, -2.5299337271288262, -2.9558251417989614, -4.116441697539312, -3.5601629215805253, -4.188844146546897, -2.9400527111730854, -3.7544247892772584, -2.6055205234374688, -3.4177319539974764, -2.2475405745696984, -7.0, -1.8879605115175833, -7.0, -3.510712529777408, -2.572748425547102, -3.459241664878082, -7.0, -1.9577885519831222, -7.0, -3.983581186705791, -7.0, -2.961375888020618, -2.2233370581702534, -2.694282782822322, -7.0, -3.562887381293879, -2.2836545147247422, -4.060508975605298, -1.6720978579357175, -3.68761812957177, -2.6725447396234787, -3.9824973691977124, -2.5771329918429693, -2.6708089041495477, -3.5240064455573727, -7.0, -3.309281663075056, -3.1437952038457664, -1.8844112025069455, -3.710878617685173, -3.99899997221832, -2.833958011421064, -7.0, -4.00552369267328, -3.735119634081872, -2.559976996012837, -7.0, -2.9051885225908243, -7.0, -3.9863237770507656, -3.907921679343844, -2.9627937383396477, -3.847609671299165, -7.0, -3.7717344253867693, -1.6866618002274048, -7.0, -2.5193174451614886, -7.0, -2.564012682679818, -2.106685142415535, -7.0, -7.0, -4.059639138323725, -3.3278899816485428, -3.5396092256382468, -3.6971421262754594, -3.430840687404714, -4.016071816734024, -4.002122846225162, -3.0839403565513352, -3.573683693093798, -3.6147039190058914, -7.0, -2.3958503760187813, -2.161046976362107, -7.0, -3.760592096579792, -7.0, -3.986906031380721, -7.0, -2.3373222073764235, -2.3116364657450608, -3.0350657025539265, -3.8123116091311235, -3.5510431647048075, -7.0, -7.0, -3.1527250407314686, -2.9988403344727614, -3.993920958801287, -2.747100931364986, -2.6416440555197305, -7.0, -7.0, -2.625626794735946, -2.832021234198613, -2.4013673973861067, -3.0134500940704583, -2.3130291026996175, -4.0780578669791865, -3.4621882878701635, -3.0650815277143657, -2.716003343634799, -7.0, -4.023417089841105, -4.017116849438813, -3.9814108401658883, -7.0, -4.504552412486566, -7.0, -3.4066678953244223, -7.0, -3.169481875974883, -3.2697074770238133, -3.0095432654699916, -2.575474042203768, -4.134782529381855, -2.5397032389478253, -7.0, -2.803336595463957, -7.0, -2.024091421981584, -2.306152858032541, -7.0, -3.67797175281074, -2.2828162543573365, -3.059437187851868, -2.4407155720669604, -3.051709777448058, -7.0, -7.0, -3.6776981814745104, -7.0, -7.0, -7.0, -4.187407902422553, -7.0, -3.566516054872908, -1.9746055802306293, -7.0, -3.9873533887357935, -3.5163149757779495, -1.916102861641635, -3.3960248966085933, -3.0187761267869226, -2.7269715836828765, -2.462138341981881, -3.0246322452029726, -2.9274986816932005, -3.2242308245491174, -3.024120637644558, -3.250594242825535, -3.521094477651296, -7.0, -2.530092029003328, -2.4838681350548732, -2.5239631265725575, -2.694359467902212, -7.0, -3.109953326425318, -3.983581186705791, -3.9860996250551297, -2.8218601782690493, -3.378624983035352, -3.177728835841732, -2.3821398923654864, -4.010215125214227, -3.9762582492570453, -2.7918309476748364, -7.0, -2.668851648082519, -7.0, -2.8746267516176824, -2.4340363540203143, -2.87989832433001, -7.0, -7.0, -3.932217342027368, -7.0, -7.0, -7.0, -4.256958152560932, -3.1566656185163415, -3.0882542479944113, -7.0, -7.0, -2.6912288854662814, -7.0, -3.9064427938170323, -1.9994732631471908, -7.0, -7.0, -3.4129654293113334, -7.0, -3.193958978019187, -7.0, -7.0, -7.0, -3.505149978319906, -3.5177579875862306, -7.0, -7.0, -7.0, -7.0, -3.6414741105040997, -3.485579476984679, -7.0, -7.0, -3.3667030568692864, -7.0, -3.4494907413063243, -3.1752218003430523, -7.0, -7.0, -3.563599728881531, -7.0, -3.194930399217724, -7.0, -3.745465168670727, -7.0, -7.0, -2.907129476778215, -7.0, -3.5397450161093125, -3.1556396337597765, -7.0, -3.5341530741850624, -3.4094258686714434, -3.539452491549461, -7.0, -3.550839605065785, -7.0, -7.0, -3.305852740224386, -2.928495423564597, -7.0, -7.0, -3.3889001083542367, -7.0, -3.4136908442354623, -3.1243737864846297, -7.0, -7.0, -3.9868740596438528, -7.0, -3.365581572755049, -7.0, -7.0, -3.9955474494751373, -7.0, -7.0, -7.0, -3.109325387770489, -7.0, -2.960550050051066, -7.0, -3.322219294733919, -7.0, -3.520173535708888, -7.0, -4.108565023732835, -7.0, -7.0, -7.0, -7.0, -3.6798819421128623, -3.491921712586151, -7.0, -3.7400994009248563, -3.5358002908248976, -3.4507108781469196, -7.0, -2.7911733677996433, -7.0, -7.0, -3.586587304671755, -3.219977256744623, -2.677192034869211, -3.518777068926775, -7.0, -7.0, -3.1047146693379855, -2.6381781753347258, -7.0, -7.0, -7.0, -7.0, -3.346287760172882, -7.0, -3.3921188489937446, -4.471203669470253, -7.0, -7.0, -7.0, -3.6616836424574517, -7.0, -7.0, -7.0, -7.0, -3.226213120724107, -3.306775830866937, -3.7281101841003403, -7.0, -7.0, -4.109004507541385, -7.0, -7.0, -7.0, -7.0, -7.0, -2.667252771055618, -2.887392218971847, -3.920071124297524, -7.0, -7.0, -7.0, -7.0, -3.181986424480151, -7.0, -4.138397442990546, -2.877707208602452, -7.0, -7.0, -7.0, -3.1897241951643895, -7.0, -3.4424797690644486, -7.0, -7.0, -7.0, -7.0, -2.7033988634507047, -3.6875289612146345, -2.6335602628903403, -3.147882346295201, -3.1506248819812086, -2.350786244307008, -7.0, -3.4103242034855046, -3.02201573981772, -7.0, -7.0, -3.5364321758220134, -3.4933186082321015, -7.0, -7.0, -3.18574446281066, -7.0, -4.331366551785781, -7.0, -7.0, -2.916064682913849, -7.0, -3.5520595341878844, -3.7937903846908188, -3.2870175013221017, -7.0, -7.0, -3.3244882333076564, -3.5711262770843115, -3.601625479553945, -3.822429623779357, -7.0, -3.543819805142658, -7.0, -7.0, -2.3119555770286806, -4.386588133907789, -7.0, -2.1655905154476702, -3.447158031342219, -2.507693992654917, -3.215240887065359, -1.8501447725143394, -3.491921712586151, -2.9086190397042477, -3.2952371307315342, -3.6628522332647964, -7.0, -7.0, -4.09841873415025, -3.199114962043649, -7.0, -7.0, -7.0, -7.0, -3.474798818800631, -3.5046067706419537, -7.0, -3.516667559099043, -2.9802100308700172, -3.791620482692814, -3.900694774452398, -4.334712541690554, -7.0, -7.0, -3.514547752660286, -7.0, -7.0, -7.0, -7.0, -3.6089536992758626, -2.562401018978738, -7.0, -7.0, -2.9907826918031377, -3.1831274287013995, -7.0, -7.0, -2.612571954065176, -3.749914980946592, -7.0, -7.0, -7.0, -7.0, -3.5317343092765503, -3.221805317996549, -7.0, -7.0, -3.010421115653543, -7.0, -7.0, -3.472610197596045, -7.0, -7.0, -7.0, -4.061301656206044, -7.0, -4.563148711095859, -3.535167485114944, -3.3878264901627837, -7.0, -7.0, -7.0, -2.34956530647751, -7.0, -3.759592308645975, -7.0, -3.3650197428165347, -7.0, -7.0, -3.4670158184384356, -2.345777216071331, -2.3932826505593647, -2.799168176170151, -7.0, -3.0112884341835358, -2.8819549713396007, -3.0066086442803615, -3.3073890556533043, -7.0, -3.657915936829955, -2.803577602396836, -7.0, -3.4056024552093134, -3.2971036501492565, -3.6340866325525636, -3.161966616364075, -7.0, -3.3814961375657253, -3.462996612028056, -3.540454613671412, -2.793161529245551, -2.782370232445453, -3.7555699806288, -3.2676409823459154, -2.9728711024944356, -2.7283537820212285, -1.7501619167867744, -7.0, -4.139673515374664, -3.388056774739942, -7.0, -7.0, -7.0, -3.905849826642319, -3.2107197156810017, -7.0, -3.52283531366053, -7.0, -7.0, -7.0, -7.0, -3.0882542479944113, -3.5298151966446305, -2.9572480195790503, -2.8588712445685736, -7.0, -4.17205387889541, -7.0, -4.0636854794912205, -7.0, -3.2329961103921536, -3.496628515300069, -3.016406500871118, -7.0, -7.0, -7.0, -2.8592884423200204, -2.669368542313857, -3.8820689444361483, -3.6497241859295224, -7.0, -7.0, -3.083233790058822, -2.405260961594782, -7.0, -2.327103391877102, -3.353403259377596, -2.2362292611340204, -2.9534799201619046, -7.0, -7.0, -4.31940798167448, -4.3117044263500945, -7.0, -7.0, -7.0, -4.414338145582368, -7.0, -4.616034168348879, -3.6146252807658557, -7.0, -7.0, -7.0, -7.0, -7.0, -4.005116136020933, -7.0, -4.694728012329395, -3.7883451651521183, -7.0, -7.0, -7.0, -4.91498979717569, -4.3252076894829194, -4.259916255109018, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8367389381738333, -7.0, -4.698144059924504, -4.369271532621027, -7.0, -7.0, -7.0, -7.0, -7.0, -4.246498580795801, -4.638149675666846, -1.5092155761636503, -3.846319435967003, -2.776653498621149, -2.454583551648098, -7.0, -3.896801697664922, -7.0, -3.879534666600482, -1.2964611045050014, -7.0, -1.7684913037225938, -3.542087379865947, -2.9761422612774444, -7.0, -4.472961119019948, -7.0, -2.4649364291217326, -3.932879457823799, -3.0710614934952005, -2.4612108026907533, -3.5490032620257876, -2.4234506815246184, -3.6986953313061885, -4.863322860120456, -2.336173731545205, -2.60151678365001, -1.9195021390967313, -3.1879670063434964, -7.0, -4.564249997194994, -3.007839185967241, -2.811667438451958, -2.977418730245156, -2.7130796684351948, -3.866272566911813, -3.5437508246183773, -7.0, -3.79509178180048, -7.0, -2.8804342467699544, -7.0, -2.530583859645118, -3.7788262946792774, -3.002471266421594, -3.4742891261654965, -2.766294698357867, -3.1998922435263193, -3.796157876906914, -3.270273663420831, -4.3442153756565, -7.0, -2.6725596277632757, -7.0, -7.0, -7.0, -3.7240163079266475, -2.167603148830162, -3.0991378037792234, -7.0, -3.3273589343863303, -2.3532455307117077, -7.0, -1.9970611158472376, -3.481012420956573, -3.120464247032542, -7.0, -2.3092797016404227, -2.5525330271673186, -3.2189291850880872, -7.0, -4.196590654117307, -2.6453240015622934, -2.518075036877517, -3.2505419780102724, -3.513217600067939, -3.920905604164024, -7.0, -3.5328817194073974, -2.8391636829146503, -3.2779146790481093, -7.0, -2.7572579602870437, -7.0, -7.0, -4.62148786458063, -3.5461174829126922, -4.804187154381649, -7.0, -7.0, -2.2582380782820484, -7.0, -2.2535218195346234, -7.0, -3.2971036501492565, -2.569785593990233, -7.0, -7.0, -7.0, -3.2930309056064373, -3.854063011866421, -7.0, -3.3089910290001643, -3.5634810853944106, -7.0, -2.720572720364261, -7.0, -3.7781029927601812, -7.0, -2.586812269443376, -2.468191808662276, -7.0, -7.0, -7.0, -2.997386384397313, -4.009323393381013, -2.4434585715565302, -2.7439558295413367, -3.4171394097273255, -3.797059694699971, -7.0, -7.0, -3.6717743266725966, -3.2099169530089915, -3.0137322976039687, -3.4974825373673704, -2.4737302041688842, -3.0931714434486546, -7.0, -7.0, -2.8898617212581885, -3.3746422429034686, -1.9039138148998769, -7.0, -2.2842945700302977, -3.1177682949263725, -3.4138583422700264, -3.5744942682853273, -2.9127201197567394, -7.0, -3.5839917991983166, -7.0, -7.0, -7.0, -4.402072143635273, -3.717420836722375, -7.0, -7.0, -3.3276593802522756, -3.3479151865016914, -2.863426312832213, -2.6750122057523718, -3.8402315949581087, -2.53164919521809, -7.0, -2.356450802904036, -7.0, -2.59640302644237, -2.0963411095954876, -7.0, -7.0, -3.616265405281708, -3.080987046910887, -2.7894525071503864, -3.234896745731588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.160368474792848, -2.658692643042924, -7.0, -7.0, -7.0, -2.6865085919184652, -3.511214701136388, -3.2027606873931997, -3.1230890516896657, -2.4218347504106905, -2.794648886540733, -2.931902616741086, -7.0, -2.9714304844819157, -3.459241664878082, -7.0, -7.0, -2.6953271324584724, -7.0, -2.9242792860618816, -3.056218581272306, -3.7018269303971394, -2.843321781988454, -3.4641913706409997, -7.0, -2.455320799214393, -3.1541195255158465, -2.989831056446319, -2.4202858849419178, -7.0, -7.0, -3.963976609996606, -7.0, -7.0, -7.0, -4.439569517147175, -4.456593750244408, -4.150909873701122, -7.0, -4.4441072798376, -2.753333878586034, -7.0, -7.0, -7.0, -4.027104865879351, -2.5055245577766834, -3.495636829183877, -7.0, -7.0, -3.9616583486377155, -7.0, -3.4319709942774352, -2.9359856330811804, -7.0, -3.498407052952736, -2.8337005490492997, -4.448025752873446, -4.441538038702161, -7.0, -7.0, -4.150249723240066, -3.3631417096979495, -2.137802313334469, -4.448025752873446, -7.0, -7.0, -7.0, -3.8586274155837232, -4.139391017726584, -7.0, -7.0, -4.163831985102053, -7.0, -2.884876998002835, -3.962274604623315, -7.0, -7.0, -7.0, -4.194028437352706, -7.0, -7.0, -7.0, -4.45048005460606, -3.9798062647929684, -2.5882575453845966, -4.171243635947135, -3.639710551318162, -3.176958980586908, -7.0, -7.0, -3.869847511611599, -7.0, -4.448010273039476, -3.971012841545116, -7.0, -7.0, -4.008302024212002, -2.1030600316071943, -7.0, -7.0, -3.866361192410094, -7.0, -7.0, -3.8917046762391827, -7.0, -7.0, -3.592122572182833, -7.0, -4.163653256961294, -7.0, -7.0, -4.059512930284156, -7.0, -7.0, -7.0, -3.773127924033335, -7.0, -3.4768750847585057, -7.0, -4.157033449661202, -7.0, -2.9944542210356926, -7.0, -4.572313860922749, -7.0, -7.0, -7.0, -7.0, -7.0, -3.885304667588968, -7.0, -4.135683786580058, -7.0, -7.0, -7.0, -3.4134075458060016, -7.0, -4.466511738486146, -4.151829340131871, -3.648276350695849, -2.5795343256482703, -7.0, -4.440767441204506, -4.450156695406595, -3.607025878434786, -2.0391677845130314, -3.3331836568930138, -7.0, -7.0, -4.48274499054841, -3.590521399348547, -7.0, -3.4746844500636387, -3.354160372717795, -7.0, -4.228002329762995, -4.444825199509748, -3.0979718667204446, -4.450264508559852, -3.9952109288456903, -4.490337794344103, -7.0, -7.0, -3.1513698502474603, -3.9978958207981363, -7.0, -7.0, -3.237994161276691, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3838852800395403, -3.730189896716472, -2.8808770809852247, -7.0, -7.0, -4.060118394661378, -7.0, -7.0, -4.451279718904047, -2.9096584343751273, -3.2704847380490047, -7.0, -7.0, -7.0, -2.870093513523827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6105841244865333, -3.865932668193186, -4.165259168471885, -7.0, -3.8378156259146805, -3.978925773721295, -7.0, -2.842119590139838, -3.7429449715938286, -7.0, -7.0, -7.0, -7.0, -7.0, -4.437068470428161, -3.5928426831311002, -7.0, -3.2305151486023247, -7.0, -7.0, -2.609245488115293, -7.0, -3.801211562533051, -4.186532564592397, -4.4531194977640025, -7.0, -4.153845340080965, -7.0, -4.450818553829668, -4.454966750124916, -4.493541695167482, -7.0, -7.0, -7.0, -7.0, -4.159221183790382, -4.387967907442333, -7.0, -2.3671864402504426, -7.0, -2.5816485319957305, -4.44399792707814, -3.4133759761516242, -4.441160774035116, -4.443403816887126, -3.431229701962552, -4.16302712860075, -7.0, -3.864718685895433, -2.7802558253347023, -3.452169918535435, -7.0, -7.0, -7.0, -7.0, -7.0, -4.141543834220653, -4.438083288767236, -7.0, -3.16380716614717, -3.788069335049545, -3.2637866524058152, -2.8495597287699477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9854414443345294, -3.9788193867328423, -7.0, -7.0, -7.0, -4.438589810070449, -4.440326485098404, -7.0, -4.438257472106888, -7.0, -2.751922856035796, -7.0, -7.0, -7.0, -7.0, -3.8436687229791437, -4.1437172265617965, -7.0, -7.0, -2.590294044407944, -7.0, -4.2165353574183575, -3.4445782233980897, -4.457291339128507, -7.0, -7.0, -3.314984059305763, -4.461363445295965, -3.4053890531697864, -4.446241945325413, -2.99520185010408, -7.0, -7.0, -4.441019215250851, -2.018567843634294, -4.510250018728974, -3.8573807486930707, -3.8071018705893316, -4.051589813697189, -7.0, -7.0, -7.0, -4.451985888948909, -3.996248914569132, -3.993583175003126, -7.0, -4.139768925279731, -7.0, -4.440310728382506, -3.677652569492963, -7.0, -3.86116088844683, -3.0564007084194564, -4.14997308296338, -4.471335725161158, -4.153448988600982, -2.6184756300183856, -3.363737299322217, -7.0, -2.923187478458534, -7.0, -4.446894272471873, -3.642450387422455, -3.613585124332224, -3.350684032686936, -3.6328909362366324, -3.313774975701645, -4.158422806584882, -3.1787036296790685, -7.0, -2.6237566562009254, -3.388748048895302, -4.436433002660097, -7.0, -7.0, -3.910584388197811, -3.4913336739315626, -7.0, -7.0, -3.991816550945799, -7.0, -7.0, -7.0, -3.6581749932745304, -7.0, -4.449370390682258, -3.4501230858349725, -7.0, -3.4147623034302255, -4.709820961709942, -3.2427103877041388, -4.144667594231179, -3.0134692323091703, -2.444798542184289, -3.516085643024291, -7.0, -7.0, -7.0, -3.250706949449761, -3.371424127988508, -3.9048236998009442, -3.7629485074729363, -4.437338262919794, -7.0, -3.426111828467671, -7.0, -4.444871979160645, -7.0, -3.893192868743221, -3.8394937596254946, -2.818136892763469, -7.0, -7.0, -2.9170129073424844, -2.892049044935811, -4.180937863983749, -3.8902533051545345, -3.33799140347015, -3.1342460459446086, -3.758457688610466, -3.562860975597884, -2.7956808317648716, -3.2377232209250724, -4.011753651565362, -3.826925889164468, -3.6681281800318333, -3.4480429520418703, -2.320186764043377, -3.8378588862869516, -3.1967463452310154, -2.3158672158872533, -3.7970481447755815, -3.77244090126548, -4.008727886652385, -3.1561980819184527, -3.4831496918725606, -3.2790320886972957, -4.597585501752205, -3.729074752482558, -3.4791372440872745, -3.7220474759675914, -4.463579467456969, -2.9529185089385104, -3.916475004741629, -3.5096874640549123, -3.217565622015339, -3.02498822250529, -3.116200062045703, -3.335078828132144, -3.6912204643369493, -3.0979431935650594, -3.2819625605980587, -3.4703593508796775, -2.813053178509492, -2.590875020869651, -2.5061605659193376, -2.7888625054157443, -4.195678299457498, -2.620027365870543, -7.0, -2.786549875081608, -2.457762729111166, -1.7684913037225938, -7.0, -2.784992074056289, -2.3946566209585978, -3.4999008177352655, -3.0613722606710536, -4.524902179460859, -4.137433239453652, -4.218509247198932, -2.358777707275306, -2.151799281836671, -2.9699437035468206, -2.1137563442359215, -2.7519311783407066, -3.036016731476465, -4.139438274158168, -3.501319486926531, -3.1860140602380915, -1.843936289441158, -3.4372747974101237, -3.255377663399359, -1.935358383836394, -2.132483316887697, -4.437179581752512, -2.0884775551021204, -2.123189899230609, -2.3073306678011605, -3.011598634469503, -3.3566899315482526, -3.480033088737352, -2.225578910053748, -3.9150378351369337, -3.8438087552360534, -2.7793002285795017, -1.7551506194349336, -3.5294731314644747, -2.5258019888373338, -3.0435194602457565, -3.2835273648616936, -3.014991990808102, -3.0995406620105483, -2.8357539675193832, -4.436877927710658, -4.134591434710877, -3.7390340870857917, -3.6602012013806817, -3.0421893218318448, -3.8622208538486498, -3.6243852414202653, -7.0, -3.417154519038368, -2.0000181330027336, -3.7676307319608626, -3.557100988756635, -7.0, -2.7614176776053556, -4.437750562820388, -0.9327696000728138, -3.376661168894394, -3.9672514815286246, -3.8602331642145686, -3.0598229758332827, -2.032065988195396, -3.020043457313073, -3.5450131567760717, -4.443607156584516, -3.61322057968259, -3.5407985597854283, -3.065034793369011, -3.9801700844088446, -4.179020086986456, -4.435653285326419, -2.5298116675310487, -3.437369992197025, -7.0, -2.709519755741255, -2.5643484603220394, -2.97617242001532, -7.0, -3.3573043401887683, -3.5958390150297412, -2.576528116757655, -3.4320504882965372, -7.0, -7.0, -3.1308890762967754, -4.135990846921625, -7.0, -3.864229172807904, -3.7548526807047184, -3.5460214167615582, -3.08092436232493, -3.4559102403827433, -7.0, -4.14367043347016, -4.157275396454035, -3.717504074764202, -2.250792024445299, -7.0, -3.8797694599360364, -3.8768814804300282, -3.7614767795447017, -3.4348030193176577, -3.5400164697453222, -3.5940135021454704, -3.336196976263483, -3.9849771264154934, -2.3907209570806813, -3.3938383323184746, -2.7792710233263387, -4.4543722124188445, -7.0, -3.4160385034771386, -7.0, -1.932780239030511, -2.96375635559063, -3.462203270516635, -3.5208894705351628, -4.151369850247461, -7.0, -3.519171463821659, -3.1257626964147756, -3.260464236932625, -4.163742630225824, -2.621426678455252, -3.7746045457003254, -3.907008053689199, -3.1719572771940903, -2.4356514252474963, -3.4558826011997703, -2.883231607770849, -3.671897605098547, -7.0, -7.0, -3.1398878281506537, -3.8710326501566796, -4.447220068979909, -4.171550945676746, -2.590604564498762, -3.762858544866317, -2.4520720964238154, -2.320259357867973, -3.383124584091668, -3.6266336114657944, -4.142686612105551, -3.1776124321762143, -4.4361626470407565, -4.017756560917876, -3.2672269610727946, -3.722812100254417, -7.0, -4.457048826585631, -7.0, -2.1046236604353257, -4.4463662736803595, -4.140727962844183, -7.0, -7.0, -4.438320794186449, -4.136387586102837, -4.138113146487167, -3.441551132284383, -2.831077154621386, -3.858085826163788, -3.597413084920528, -3.599056096864108, -4.138397442990546, -4.140618016861667, -7.0, -3.238782899762625, -3.512402718924654, -3.07391682215682, -2.209448542593025, -2.6667853209646175, -2.44414242309212, -3.842827579929976, -4.135498386458118, -3.480782802561479, -3.841234295506041, -7.0, -2.2701451708811593, -3.8436687229791437, -3.968078040985985, -2.6521885909973335, -3.214711421005384, -2.4081506686153484, -3.9609461957338317, -3.8368619025833786, -2.7381670529898856, -4.437211322624582, -2.5445696679092684, -3.852510490774041, -7.0, -7.0, -4.0595160859321835, -4.961326155934711, -4.961273931114606, -4.660357872417049, -4.117039167877679, -4.189176714937135, -3.8866692944119765, -4.661187760411323, -3.5483516147701626, -2.5149218317456623, -3.6608609625459816, -4.961273931114606, -4.962189329010532, -2.5315935346979557, -2.65590723100227, -3.421001889716546, -4.662757831681574, -7.0, -4.262968138090902, -4.35943703830399, -2.396793274079153, -3.23814298390106, -4.961003210960297, -3.2479141932058226, -1.1542108054016846, -3.709317082386597, -3.707352501227481, -7.0, -3.3666050425418725, -3.4883579673077088, -3.1917256596242463, -2.5979606503538215, -3.362322223700609, -4.359740647863716, -7.0, -3.963107529523544, -3.8224202856192337, -4.008141034105658, -3.797309098122926, -4.961416347652731, -3.5717879989217423, -4.962970396091709, -2.3011102715552583, -4.059004571695273, -4.118260000849086, -2.6981192619861707, -4.488160428173718, -3.33577236081626, -4.48567884650391, -4.061542005396714, -3.42978456835467, -3.224627223695273, -3.7368977726140367, -2.012415374762433, -3.5918573057581438, -2.496215485540377, -2.831310315348419, -4.185036647576167, -3.7599085281865303, -3.359029886980261, -4.663328648045545, -4.487604955956124, -3.8185510684090147, -4.359788067690362, -3.5012529106922354, -3.212541180290165, -2.914095011775121, -4.962047165769254, -7.0, -3.150937764940095, -4.3592661646067485, -3.1775139549882887, -3.473778834646725, -4.359802292628766, -3.741248952988005, -2.174932377602814, -7.0, -3.4255109308089216, -7.0, -4.66153347407699, -2.564830020031201, -2.809227601158241, -3.96275751707078, -4.961140966863463, -3.4156270813608494, -4.361883587627972, -2.8358386353693876, -3.4189638307036225, -3.167917176154837, -4.490075587280986, -1.8677389543993326, -3.395262000678114, -2.456909251591883, -4.359569893603762, -7.0, -3.494289130228922, -3.9675573359128724, -3.6279381446854235, -2.94272439249383, -7.0, -2.824635644686762, -4.00991336809817, -4.660300907670251, -7.0, -3.046906848709895, -7.0, -2.9566718738913944, -3.518824039485424, -2.687304816301919, -1.8093513194989694, -4.185409929405979, -4.117399149800422, -4.120244795546365, -3.735457994116918, -2.634931608578787, -3.6633805032588294, -7.0, -4.066242040644645, -3.4982232265431157, -3.3255840723546894, -4.010351789910468, -3.033033765851075, -2.421473723156698, -4.264558112800327, -3.4109325485434154, -4.264770614521865, -2.7768252714096775, -3.7099997689230975, -3.1588030588943528, -3.472633052674273, -4.961848059018324, -4.185726258953287, -2.3458438852429713, -2.560855262616385, -7.0, -4.359304142349933, -2.923739123457494, -7.0, -7.0, -7.0, -4.058734362760268, -4.961273931114606, -2.8418478220804433, -2.9788266104365038, -2.8336437606968583, -3.337817621904792, -4.3619119001023545, -3.5623104914749812, -4.660414829692979, -4.661344076016006, -4.06258668435946, -3.3867579277666837, -1.3705642541562597, -7.0, -4.360536614583294, -3.9640002020590774, -2.0424620473036907, -7.0, -7.0, -3.6670184411159363, -3.790050473683351, -4.262906504093203, -3.1876476065305965, -3.925663623625178, -3.628333188143986, -3.4649596916158814, -3.666719169536483, -3.187026923760066, -3.688302707830574, -3.8840822792097556, -1.9809387012166204, -4.008619094856489, -4.262284934377744, -7.0, -4.362166629347626, -4.008401429472742, -4.1842180852863775, -4.660405337332384, -3.0472617379123195, -4.96270546410181, -3.2152191679480744, -4.262427357143091, -3.1078383370643294, -1.9744799056675177, -3.964462347945267, -3.318163182165152, -3.579014901222905, -3.9248194680033985, -3.7940788875341207, -3.665646646127807, -3.8886567869289896, -3.9241147494121003, -3.7362746108444544, -2.936723893079625, -4.3611279066318485, -3.3468713070701095, -7.0, -2.7836029465276524, -3.822266176981333, -2.858818584987489, -4.962141946433934, -2.6905352070203894, -7.0, -3.2692119949493845, -4.009210026465004, -3.551698604499414, -4.263664468388576, -4.662309143723654, -3.3216344468426913, -3.62708175893708, -7.0, -2.9696488404807253, -2.908756846562415, -3.013378368536278, -7.0, -7.0, -4.485555814223788, -4.3595177052971295, -7.0, -4.117952749892627, -4.660708990011405, -4.0603767213953565, -3.0926855629374908, -3.0124107871850496, -3.167583563821491, -2.3847686963298202, -4.961022214372552, -4.263867945962747, -4.009139157111882, -3.9239830751954003, -7.0, -4.961890732435836, -4.066088209902013, -3.259153356124792, -3.5518533253826576, -4.960993708942336, -7.0, -7.0, -3.962336182154077, -7.0, -3.9617152704537655, -3.967351376033999, -2.5385311917995725, -7.0, -4.961354639553441, -7.0, -4.48520545453641, -3.7086474787139507, -3.621143221998132, -7.0, -4.060952677550257, -3.9022749204745018, -3.4625617634285892, -2.8686848113835097, -3.020018039073415, -3.7913677900080844, -4.961629884931725, -7.0, -2.322942123838025, -3.305673745669693, -2.1608163787942525, -4.119053120904281, -2.614964624993414, -4.265671410801216, -3.962340918525596, -4.2636218679914135, -2.902197215252984, -3.103155305052969, -2.792478696306499, -2.6194835119620117, -3.087151162750692, -3.925124491288567, -4.009663316679379, -4.961852800716229, -4.011640917347032, -3.71720804477317, -3.5565900792280734, -7.0, -4.059416672002962, -4.0628826901303645, -4.360328288072052, -3.7365792753038436, -7.0, -2.7919758753523225, -2.7869309831175997, -3.488273318680757, -3.610044198283449, -3.8526770142842115, -2.0084125462234126, -2.7681357668442947, -4.35996347604274, -2.9887719836341766, -4.660685274789785, -3.96432092693784, -3.1192329712423796, -3.9679923390652525, -3.096458111717453, -2.796676072928307, -3.5099771967991025, -3.9267819449923036, -3.695900837452605, -2.547587547806455, -2.300605695144895, -2.467792474575587, -4.961254938713763, -7.0, -7.0, -3.493844657983327, -2.274047172789609, -4.36084891709733, -4.185556319479281, -3.5908139802145596, -4.184274913997588, -3.355881177150099, -3.3498032819722785, -2.928277998809836, -4.361921337183666, -3.92367254220629, -2.96901827581697, -4.1188549766382225, -2.4351598613738563, -2.8938372187011825, -2.0877205730045074, -4.265044352345405, -2.8967501983926742, -2.469795166795331, -2.7598835895931746, -7.0, -4.186565539383188, -7.0, -3.0299645394193337, -3.2965980399742842, -3.2048612693935485, -3.506402383271917, -4.183326796601633, -4.960936692468327, -2.905335203978694, -4.360437198486716, -3.8845074375460937, -4.18600462715385, -3.5023132962432744, -4.263811171112919, -1.8912109478360524, -7.0, -4.359218687757081, -2.7244530964883347, -2.7949496312842714, -2.8598696403920845, -3.580578313675271, -2.758203517991074, -2.6939095886706075, -3.5163326117439992, -2.6134223028214976, -1.8442238177716326, -3.1441805525731445, -4.074455292377034, -3.0861720208846997, -2.778391444902281, -2.6246143661621346, -2.5535517441075415, -2.5063028215430774, -2.760529731427365, -2.480475187731228, -2.879331291507992, -2.9001993095094276, -4.022313790681457, -2.3760196479500224, -2.70245039072442, -2.1424620454245744, -3.015108160645837, -3.237334892511582, -2.8621983673306364, -3.1175781525058817, -4.492401820088892, -2.176527237504239, -3.332281780585766, -2.6927430839305604, -2.9278717568932096, -3.072768502132931, -4.013880713023503, -3.340848980668569, -3.3211134511957323, -2.917472686782482, -3.133809030190632, -2.146828699151382, -4.119533952374401, -2.7046063428076352, -2.406641469178499, -3.3706936886585264, -3.1734048180177767, -2.6251609671120715, -2.6603092564193918, -1.7204902741566295, -3.0944538743639973, -3.542087379865947, -2.784992074056289, -7.0, -1.5570719148008938, -4.012377857151723, -1.8600402748354252, -2.5607303312262646, -4.961871766990156, -2.889772166771449, -3.0209881375257415, -3.9391878461917433, -3.9646461264348587, -2.4052297140153964, -1.7730029976670396, -2.2444650393016303, -3.8831880896223963, -2.4682698165014303, -3.4712254448577413, -1.9177551208044752, -3.7562422146809546, -2.6408277411455305, -3.1254559158008726, -3.0912423383323984, -4.484337808789187, -3.145479988322081, -2.632357524451859, -2.5368523462149337, -2.735672303650337, -1.9690079356415473, -2.825860172884344, -2.389011691420147, -2.3690287824635057, -4.185924437664244, -1.7979145401958574, -1.970380140469246, -2.770414736749944, -2.4479998133798366, -7.0, -2.083171585668804, -2.543779303467573, -3.25854700301131, -4.660998211489886, -7.0, -4.4838819562406345, -7.0, -4.079890918334672, -2.4802574419693437, -3.450976523069686, -2.4516753369831368, -4.485058598189106, -3.9679876639285983, -2.4512565368187738, -3.6085911403132283, -3.8544975657150813, -4.661268293658268, -2.923198950972694, -7.0, -2.337613269461743, -3.1923846271401124, -3.9635753487276815, -4.124014878887408, -3.093667615655394, -4.190737783739713, -3.1604276017717767, -7.0, -7.0, -3.3429114356402447, -7.0, -4.4869827371917586, -3.5871822704263163, -3.469320263337147, -4.961022214372552, -2.971189916194264, -7.0, -4.962051905293788, -3.0936951178653964, -2.4080326832694694, -2.6481939831377432, -7.0, -3.9719759088495237, -2.666211711073482, -4.487609666333967, -3.510077924907464, -7.0, -3.7113009599161657, -2.6367726520161257, -7.0, -4.661074040986242, -4.016099716932023, -3.53495165163851, -3.0885994524870846, -7.0, -4.189050275274487, -3.4598540572723233, -4.48660992182486, -3.4112829130173843, -2.741333451523255, -3.5226072263706474, -7.0, -3.155202571949865, -3.32080150469275, -4.1234502812832154, -2.614249325129989, -7.0, -4.661074040986242, -3.6727002600533996, -4.065943652583075, -2.043329136724385, -3.592186013360358, -3.773132500540181, -4.188492565093906, -4.963636742118113, -3.4596984085744094, -4.185140631715381, -3.5090814946225235, -4.661822147187612, -3.521786984796864, -2.8973275362164874, -4.66505539251443, -7.0, -2.862705131498745, -2.0137055223163682, -3.446619391266607, -4.191725738520312, -2.662260023490515, -3.8934380930119987, -3.753682170713773, -3.851681614802406, -2.696283563298114, -3.701508905718383, -4.267120079501657, -3.789190423837699, -4.660495506382359, -7.0, -3.3749201057441613, -4.018242667457909, -3.8504482908911513, -4.018062177109417, -2.289844875657108, -3.927547666088493, -2.997073010851781, -2.61321980160087, -3.4887417131238716, -3.215762754420895, -4.486312383821238, -3.5693083507830243, -4.961174211742868, -3.280150238221159, -3.0353387578800564, -3.5834391002295347, -7.0, -3.475872616012005, -3.8858180821280595, -2.653709857986787, -4.362157197594989, -4.9628616042958145, -4.359228183542235, -4.9612644350180055, -7.0, -4.961558717504052, -4.661036127893079, -3.0143283621784036, -4.666021627895574, -4.014184397501279, -4.662096445417923, -4.963632019857728, -4.059004571695273, -4.184629925065294, -4.118977648033631, -4.361250794303581, -3.279932199005493, -3.5864044349502087, -2.759541943983747, -3.494181534527859, -3.7494680374713956, -3.9223384913862973, -7.0, -3.527657515157577, -4.361255520058149, -7.0, -2.632842096574864, -3.787857038774162, -3.8846254632562345, -3.406250093617719, -4.272700056789586, -3.766793803133404, -4.359674251406698, -3.961942883141387, -3.5070132546179886, -4.961487538412329, -3.7494543917836216, -3.4479657068003102, -4.663601996724677, -7.0, -3.9814108401658883, -4.376823230725233, -3.677606952720493, -7.0, -3.6793733792387515, -2.989574392477443, -3.8415114201192337, -3.9805578230230227, -3.037924256713626, -2.914332661311729, -3.3965148413899895, -7.0, -3.8343207708442053, -2.3901629165142837, -2.693685737345204, -3.4812544651364226, -4.080491199713847, -7.0, -4.07700432679335, -7.0, -2.4122607967275096, -3.039770926931579, -7.0, -3.014722098700544, -1.822649805614788, -3.7812076748228813, -3.777454010257933, -7.0, -3.6923885981513846, -3.2879628814848645, -3.265896771013757, -2.3805998688962626, -3.5380618005555218, -4.678836926900922, -4.6789642806521305, -4.079335031445408, -3.0783772340214464, -3.834838355672986, -3.1441069730493227, -7.0, -3.995248983383211, -4.681024035829723, -2.322103599668317, -4.0773588195305, -3.9036325160842376, -3.2777590363616937, -2.5933761303711673, -3.1319392952104246, -3.7263467971429836, -3.5079817359140435, -3.5558541878466463, -3.5394883214712616, -3.8444416709646037, -1.7490204093596096, -3.8534722294921817, -2.7191812866158296, -2.338021768462477, -4.380482590974981, -3.905075955657791, -3.317880600528345, -4.081581317229508, -4.20725725871634, -3.730136003996678, -7.0, -3.904589330951372, -2.745966567012242, -2.968044570194652, -4.202097621452882, -7.0, -3.1159956797476744, -4.6779261695536105, -2.987633166996761, -2.8591552176390183, -4.201797546736893, -3.3550682063488506, -2.688079627476112, -4.377661338348732, -3.489800333711403, -7.0, -4.203105444776454, -2.4209086143865757, -3.9141138709336474, -4.680779554175909, -7.0, -3.6570558528571038, -4.205781595442862, -3.238668921279138, -2.8908507580818754, -3.411220843713945, -4.68911342704763, -1.8010976657860946, -3.0702956591451445, -2.3769645469813034, -4.2013515984037575, -7.0, -3.6181701703721543, -3.7355368025021285, -2.824917010852793, -2.134394814640429, -4.679654978699333, -2.031300237856936, -3.683272236315922, -4.37685058584761, -7.0, -2.843040423444765, -4.67825426226744, -3.3524544153835043, -4.085138887686988, -2.846870690323001, -2.013423140564389, -4.205087019994803, -3.9811841373983543, -3.907420318901708, -2.2133008673073458, -2.347673607595536, -3.453381302785419, -4.677643446521776, -2.6230106014763095, -2.5119264649918027, -2.502036742895763, -3.8390648356407997, -2.7703610059573918, -2.3326829808604845, -4.381115080709851, -3.241417934056642, -3.7281823755077257, -2.8300452929631956, -3.6441520091914086, -3.300369365845536, -3.5631249603380444, -3.7756559500737605, -4.381800742504703, -1.9396384060736354, -3.194635733117443, -7.0, -7.0, -3.062224316869885, -7.0, -7.0, -4.6778623449547885, -4.678955185194013, -4.677771150682378, -2.8318246230659576, -2.727682314264488, -2.3835517923802207, -3.373346748955261, -3.9047515997788804, -3.290837234488692, -4.678117587090789, -4.378851946448881, -4.209157423347539, -2.598127683341974, -2.2143383709237106, -7.0, -4.680362712634757, -3.904913807999268, -1.812896980222412, -7.0, -7.0, -4.088915346604906, -3.2719041290077024, -7.0, -3.784260582566084, -3.6474185374117942, -2.6185578527092255, -2.706673799140085, -2.896988214036109, -2.6392872259102367, -3.433556500023043, -3.9035421416209206, -1.9821451783870967, -3.8357539675193832, -4.677807630689279, -7.0, -3.905238042799656, -4.379495876529263, -4.077849178425541, -7.0, -3.027937365993989, -7.0, -3.373713078578499, -4.075966455076692, -3.8164235991034614, -2.157864117754172, -4.2068798223063, -3.51113941243943, -3.3852571999019094, -3.9883448780958206, -3.9167083091985275, -4.387380926770457, -3.5763324887711336, -3.907805343672493, -3.273045812803421, -2.871412168783088, -3.6399209285998153, -3.0059791649763743, -7.0, -2.9923597003927576, -2.4235129951027297, -2.894303472796426, -4.679436982175699, -2.6357276141635664, -3.171973141806358, -2.8245789062256326, -4.381042842771909, -3.0750303788179263, -4.203295851245676, -3.7273604892915437, -2.478475272065988, -2.7190490484802736, -7.0, -3.3940925389475614, -2.2553478969066205, -2.8092630297861527, -7.0, -4.376659063797446, -3.726111136977972, -3.979366242396161, -4.378316122321516, -4.6812864740280835, -4.678682232836399, -3.983057679286212, -2.711980581220753, -2.8551009287477815, -2.7248289875184812, -3.059992840480373, -4.67728750108277, -3.7776261605789925, -3.3805820432409472, -4.083681747274301, -3.7235012792268165, -4.377906998042317, -3.6135775721070993, -3.8438643110807478, -3.484433310991099, -7.0, -4.677305761793444, -4.678973375919766, -7.0, -7.0, -4.076667745482861, -3.735146273829275, -2.0783434964707808, -4.376503960252927, -4.075811472000948, -7.0, -4.3787793310606915, -3.3817736974197277, -3.7281553051362044, -7.0, -3.6038207385595746, -3.224064991755207, -3.36802996095516, -3.1815087582709314, -2.831245910079074, -4.689823667987483, -4.201296961003463, -7.0, -2.0659647007387014, -2.9277773123297144, -2.319807004048228, -4.2062320243263, -2.7321418065585115, -4.207131483023054, -4.378933624250314, -3.9021298594796567, -2.724811610504629, -2.8879894216431103, -2.487705415687573, -2.879129136471997, -3.069595713827564, -3.1688812344644344, -3.536594512043907, -4.678882414670736, -3.540365232436269, -3.2839358508812513, -2.9979365499064756, -7.0, -3.7258753488678242, -3.4078022359577385, -4.679963619914295, -3.688882348427024, -7.0, -2.7781159404537976, -2.9592447613165698, -3.840965941921735, -2.799113613408675, -3.511856634342237, -2.1867531119226142, -1.7112783140789294, -3.5998830720736876, -2.5579145953128126, -4.201479058946089, -3.4793773350238864, -3.26027587412959, -3.514406063663669, -2.9226634989052327, -3.0023475200438834, -2.8276636767360315, -3.110669438809445, -3.0124067613119134, -3.6149850498855733, -2.5071985596277795, -3.168338191237685, -4.376686429261915, -7.0, -7.0, -3.0992036383921366, -2.9310762969506765, -3.5046158296730847, -4.38147609027503, -3.3346023369658453, -4.680072499759905, -3.3911998401087744, -3.7266276095452504, -1.8087365536104805, -3.904769625906595, -3.5710455540362562, -3.534026106056135, -7.0, -2.7585206179623727, -2.9091425428224214, -2.8704208306755414, -7.0, -3.328941986935604, -2.595193927668544, -2.4458018231993797, -7.0, -3.730064136632307, -7.0, -3.226608496506789, -2.5873749918376694, -2.653220833513314, -3.546251743863432, -4.2010965650394665, -7.0, -3.0420239272488674, -3.638598157276648, -4.205438956780589, -3.604000925049828, -3.456939314742928, -3.6391603743363103, -2.244485605507447, -7.0, -7.0, -2.8868833464580277, -3.034538424505647, -4.216165902285993, -3.3881604302759483, -2.8503641084073252, -2.397698838735479, -3.3397534541711176, -2.7517196188765767, -2.435729215832507, -2.8380654566879544, -4.009586857130916, -3.5725295541760693, -3.3954312402469182, -3.183424073896676, -2.103917521649834, -3.881340267564292, -3.372198327443658, -2.19368304673689, -3.8083760439961956, -3.324938033068716, -4.229647718448569, -3.305819930078247, -2.5047923325915096, -2.9084850188786495, -1.9329058771013887, -3.9907890290468746, -3.551768939006816, -3.113943352306837, -4.392468317043854, -2.0837428200895722, -3.1976763157398866, -2.7075517636469266, -3.0622695903007724, -3.454858712881094, -4.389927647380955, -3.4503004403307562, -3.783538338997308, -2.7302976620971497, -2.511841381231268, -2.6428452266208504, -3.5701476202881377, -3.224241622388078, -2.341780233246614, -3.3963895768324193, -3.235738809944795, -2.538527803450734, -3.4147271193671846, -1.8246625809658572, -2.969538119736259, -2.9761422612774444, -2.3946566209585978, -1.5570719148008938, -7.0, -4.688126039915543, -1.955369780836698, -2.9663197853048757, -7.0, -3.158566223619323, -3.7357094243870126, -3.9360611166099884, -3.985345625806566, -2.7009919975949694, -2.112371098999698, -3.082405952527268, -3.9018305180672983, -2.348818836031915, -2.840751399088864, -1.714214894373381, -7.0, -3.922847951771373, -2.8839046692579333, -3.1311475216888907, -3.8999207687549164, -2.8192627477807326, -2.8358079642440264, -2.7234799365560174, -3.328388098944101, -1.960426769803533, -3.2096368533656783, -2.492137764338401, -2.656479275172621, -3.2678032983436163, -1.5104049697509885, -1.9071020789098865, -2.884966913359453, -3.1849171639857268, -4.20390278111006, -2.2689030342501972, -2.9508514588885464, -3.9802501704106534, -7.0, -7.0, -4.200129722638182, -7.0, -4.417621137863894, -2.011953813769505, -3.188286757912536, -2.347442339513145, -4.2023884051228775, -3.544378143957812, -2.545111375970089, -3.4397974472398007, -3.2140133047697534, -4.202597285692431, -2.8287507574419504, -7.0, -1.9751876306754927, -2.8635692587023267, -4.080229524884867, -3.738428189717044, -2.72347007482365, -3.244736448694373, -2.69115730066159, -4.383546091724474, -7.0, -3.2778546939989375, -4.381106051624685, -3.6416543530806247, -3.7354746964258965, -2.507509902999208, -4.67728750108277, -3.115042880588522, -7.0, -4.3782161497498775, -3.4059035502713977, -2.113966497603125, -2.59396236274275, -4.6775613311560935, -3.656690453523865, -2.444695882802925, -3.906182347343318, -2.9910870235879203, -7.0, -3.2898296651030074, -2.3993302273046977, -7.0, -4.378334296680487, -4.218010042984363, -3.432292125651154, -3.2680176943347163, -4.204554060135243, -3.9901345373455035, -3.3840934407581154, -4.682515107334342, -3.0769422219858713, -2.327316515095668, -3.567365472210331, -4.678245151927042, -3.0223596265107244, -2.8954139125550196, -3.650175015279832, -2.763706024166811, -4.681702430297234, -7.0, -3.0496135189928455, -3.4619484952037616, -1.94185981840554, -3.2838837251182076, -3.8050078342861804, -3.989075878689533, -4.682298542107937, -3.335706570895733, -3.6401560685761862, -3.3628429259206896, -4.379767672984586, -3.135944978136096, -2.6328979269485404, -4.08487106917708, -7.0, -2.6961440038114928, -1.9990152048344794, -3.165447834096422, -3.3514449075074313, -2.785614524946824, -3.398139738199443, -3.038909793675739, -3.572147472450605, -2.7791754592501485, -3.1947917577219247, -3.988005704058146, -3.5093459189172926, -7.0, -7.0, -3.413709458318653, -4.000156317877956, -3.5375942467731942, -3.552503086780776, -2.413748485257935, -3.7893427015222065, -3.342373326372252, -2.342342859505044, -3.3911956392577416, -3.1067137971904137, -3.5355834327235693, -3.257776317896286, -7.0, -2.623850648027604, -3.1572972322407757, -3.937768567049936, -7.0, -3.309062090847971, -2.9598870060542675, -2.510223434172348, -3.4527242421699578, -3.726428342031079, -7.0, -4.677752909529766, -7.0, -4.678318029299685, -4.679309766985715, -3.1365742333036484, -4.211663292650559, -3.6121743576976613, -3.6811778981450454, -7.0, -3.679309766985715, -3.6805893065823088, -3.22034258343606, -3.8365230388765568, -3.05125779319857, -3.6468134968556387, -2.2627366580503083, -3.3431541139519694, -3.7587941814657166, -3.728272597895017, -4.677807630689279, -3.8006741277327873, -4.079624362195828, -7.0, -2.2970055092917994, -3.2202433892972593, -3.360241681417266, -3.1713133807585514, -3.998555743525529, -3.115934425853832, -4.2015518767496935, -4.07710434122473, -3.1617026236005494, -4.377133154598361, -3.1104297662155624, -3.182584042752654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4288526229295515, -7.0, -7.0, -7.0, -4.219217657022907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.271849734966777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1714924272529013, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.240967118022486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.913124790389559, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.162848068856491, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.22511535697073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.971507781711256, -7.0, -7.0, -7.0, -7.0, -4.056465254980514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6726519228400023, -7.0, -4.175801632848279, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.372175286115064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.923036668670786, -7.0, -7.0, -7.0, -3.640978057358332, -2.4794143960621255, -7.0, -7.0, -4.283919055485216, -7.0, -3.8918161195248606, -7.0, -4.6967319740211, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3636746441274314, -7.0, -7.0, -7.0, -2.968015713993642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.552546547955661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.754707550504426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.878019807285231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.62797998982998, -7.0, -3.8189513116401725, -7.0, -7.0, -7.0, -7.0, -3.805908455074197, -3.490941205356787, -7.0, -7.0, -7.0, -3.9028727854460796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6814221557210085, -3.810478671681402, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.247850566973534, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7541953881898387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.332680789215245, -7.0, -7.0, -7.0, -4.116159272795033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.669363376415619, -7.0, -7.0, -7.0, -4.532588780613535, -7.0, -7.0, -4.003762020828246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.749768512958104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.385045916619704, -7.0, -4.043217758875041, -7.0, -7.0, -4.022139570398392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4205333226934997, -7.0, -7.0, -7.0, -7.0, -4.303466057107086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5841106281854485, -7.0, -7.0, -4.321971055526301, -7.0, -5.001426483564586, -7.0, -7.0, -3.7781150576687677, -4.926944073016233, -7.0, -4.028754203400251, -7.0, -4.690477836866783, -7.0, -7.0, -7.0, -7.0, -4.6661902641189865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.465397724292443, -3.906712056942964, -7.0, -7.0, -7.0, -4.768190258560652, -7.0, -7.0, -7.0, -7.0, -4.459432698349686, -4.028367883697062, -7.0, -3.4999008177352655, -4.012377857151723, -4.688126039915543, -7.0, -7.0, -7.0, -7.0, -7.0, -4.388261100540889, -3.739018245883481, -7.0, -4.150190458013526, -4.644030411318001, -3.868185977531273, -7.0, -7.0, -7.0, -4.005242495654679, -2.196863537872375, -4.202644950872879, -4.106428894793411, -3.5400790888041724, -7.0, -4.338994048444886, -3.2690924557404304, -3.408225827891581, -3.0835026198302673, -7.0, -7.0, -4.300763908796391, -7.0, -7.0, -7.0, -3.9599234024401224, -7.0, -3.686261179638182, -7.0, -3.676693609624867, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1486026548060932, -7.0, -7.0, -7.0, -3.7299203662157314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.723701893991268, -3.694956002249818, -7.0, -7.0, -4.152930136422725, -7.0, -3.737113094305961, -7.0, -7.0, -7.0, -2.5514499979728753, -7.0, -7.0, -7.0, -7.0, -4.046026669702541, -7.0, -3.1670217957902564, -2.9612052955616837, -5.097472494247438, -4.793811330864881, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.793580867368156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.74020473550745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.11847091885741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.926406762728239, -7.0, -3.475525915039281, -7.0, -3.3666097103924297, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7210476638575587, -3.5737995822157407, -7.0, -7.0, -4.064944426038617, -7.0, -7.0, -7.0, -7.0, -7.0, -4.074322643568778, -7.0, -7.0, -7.0, -4.540054042264075, -7.0, -7.0, -4.556688368835233, -7.0, -3.2581581933407944, -7.0, -7.0, -3.1085650237328344, -3.241878383159056, -3.737987326333431, -7.0, -7.0, -3.118430077122089, -7.0, -3.932372282147914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1355778533449294, -3.8209891764160497, -2.2767079331012847, -7.0, -7.0, -7.0, -7.0, -7.0, -4.50982058221228, -7.0, -7.0, -7.0, -3.5476516583599693, -3.5299434016586693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.437052595060992, -7.0, -7.0, -7.0, -3.9582611890127564, -4.452629651622018, -4.146902869928199, -3.6572471298837166, -3.209073241435683, -3.0010773939545063, -3.657315422696258, -7.0, -7.0, -2.3926348919812734, -2.7334816953436976, -3.241515351722801, -7.0, -7.0, -4.133650660953161, -7.0, -2.719799490227212, -4.234694407142218, -7.0, -3.453387843845202, -2.209663496366329, -4.443982303007413, -4.136371723492323, -7.0, -3.9808362964839756, -3.8451445690733057, -3.9613894503284546, -3.537636744269928, -3.744887285866299, -7.0, -7.0, -3.7396988963507187, -3.9796697538222423, -4.1352758017868725, -2.994478461422008, -4.131762977530949, -3.9838216681692966, -4.4380516115621225, -2.7644850574458855, -3.5900452854920486, -3.325215588977838, -3.0269416279590295, -7.0, -3.013525366277892, -7.0, -7.0, -3.6291910861512395, -3.404755990537958, -7.0, -1.9880584847930771, -3.6232049723732787, -2.6686628982503926, -3.3400473176613934, -7.0, -4.140994858693246, -3.5136910100964522, -4.44271488292848, -4.443966678374578, -7.0, -7.0, -3.662899426362577, -2.9125380115265718, -2.9253041562091404, -4.434951936087753, -4.43362584503636, -3.0014203636304737, -4.43261658390379, -2.611410087031918, -3.8880671134074367, -4.434425179874951, -4.166030272340217, -2.7764617563695646, -7.0, -2.9547398536507683, -7.0, -7.0, -2.5095481300541147, -3.378170700063069, -4.1365620365899805, -7.0, -3.0697420760416447, -4.441396602854368, -2.838658761600265, -3.046827431231041, -3.499656540441669, -7.0, -2.0815386661433966, -3.3018110230174766, -2.174362462314216, -3.7345438163285243, -7.0, -3.261991039833867, -3.4532265779981905, -2.7894756959671048, -2.51736804348248, -4.435653285326419, -2.9100691775662204, -7.0, -4.432568465297358, -7.0, -2.73561099552132, -7.0, -3.462368045522524, -7.0, -2.807337679149665, -1.9766977434027933, -4.440184654070886, -7.0, -3.9689496809813427, -3.603020580277891, -2.8729613626370636, -4.4434507498835405, -7.0, -3.982029891281814, -3.700718135713169, -2.9577621734819206, -4.443716607769532, -3.4719723825183952, -2.7156064510285387, -7.0, -4.048532433967157, -4.440751700479185, -3.921568567164905, -3.667935234429692, -3.565272115090149, -3.5833829982144385, -4.434281408136301, -7.0, -2.188267686917002, -2.8904063096687422, -7.0, -4.43274487412905, -3.744240812483908, -7.0, -7.0, -7.0, -7.0, -3.9551583869257936, -2.2662552222976506, -2.891088504138878, -2.395995993135859, -3.116870521097874, -3.839336611526406, -3.4923539602839244, -7.0, -7.0, -7.0, -3.181351871191431, -2.750456093844882, -7.0, -7.0, -7.0, -2.4235165556085847, -7.0, -7.0, -4.154347881220995, -3.603731904850924, -7.0, -2.9860145716111237, -7.0, -4.4642211975344495, -3.9852617672492965, -4.454433228116589, -3.277889231857295, -3.9749566587701834, -3.9621956462968417, -2.6424335601227265, -3.835785662062868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.397617270024851, -7.0, -3.659735602456012, -7.0, -3.2726196065078565, -2.2814544937302186, -4.1422486417643345, -3.651444166323796, -3.638631858985767, -4.4491234131845605, -3.9849471533672807, -4.450926202822742, -3.0558062980983522, -4.446801142847091, -3.9738049481030795, -3.1883377790407526, -4.4388744689064445, -3.8927066378056656, -7.0, -2.6980024692403273, -3.678047714275594, -3.3641219830507363, -7.0, -3.5852350633657752, -7.0, -3.731548476260331, -4.439916624576895, -4.150034573810802, -4.437052595060992, -7.0, -4.507207993183979, -4.460190975748579, -7.0, -2.828270112376824, -2.4675593699303873, -2.4212410860808884, -7.0, -7.0, -4.43713196609433, -7.0, -7.0, -7.0, -7.0, -4.138870857319504, -3.310505887547859, -2.926156591030201, -3.3994141053637703, -3.2485958522995344, -7.0, -7.0, -3.6613709124303133, -4.4463662736803595, -4.1314903456949486, -7.0, -7.0, -3.974849294909796, -7.0, -7.0, -7.0, -7.0, -3.959025483806947, -7.0, -7.0, -7.0, -2.5186401699272873, -7.0, -3.9554311698573885, -7.0, -4.4359557908892375, -3.9645738809210544, -4.44070447487986, -7.0, -4.441852175773292, -7.0, -3.375160455307423, -3.0219891049716843, -2.9756943410739467, -7.0, -7.0, -7.0, -2.2161844940573054, -3.058775141896555, -2.307070834815396, -7.0, -2.339299816876127, -3.9665640840973104, -4.436226275270583, -7.0, -3.1459490312866523, -2.685443151803357, -2.738829325480311, -3.1596492103844547, -2.8908497591813425, -3.4084249945620684, -4.140366607190387, -4.434297385124508, -7.0, -3.4279284993570225, -3.563629384689655, -7.0, -3.180906049868878, -7.0, -7.0, -4.150925214104221, -4.432119101024855, -2.679473322529414, -3.2896013381314955, -4.145957386466343, -4.4675045136258955, -4.450526229129723, -2.2325572566707454, -2.26745232159952, -4.4349678884278125, -3.7588929767211523, -7.0, -7.0, -3.881883722962457, -7.0, -3.0071134864303173, -2.8499456188070376, -4.514853112350159, -4.154484837032048, -3.7774413227977166, -3.1180692300331043, -2.6022769596369226, -2.4721017822730618, -7.0, -7.0, -7.0, -3.3627651265554266, -2.398139311220743, -7.0, -4.440672988293759, -3.561846442129789, -7.0, -4.45804831917427, -4.13697409575783, -2.497150888262362, -7.0, -4.445339498742793, -2.521777452137303, -4.1404609028733015, -3.0151743839266087, -2.8255200663675057, -3.028695580205779, -7.0, -2.058253676825634, -3.560749934897699, -3.4712116739886065, -7.0, -4.444029173533431, -4.134384320553547, -2.502049207161313, -3.559999668676523, -3.9012948171655673, -4.458123944661062, -7.0, -7.0, -2.3922759649804375, -4.135498386458118, -7.0, -7.0, -4.190653797183291, -7.0, -2.1040376731383583, -7.0, -7.0, -2.999031628930849, -2.997868756155348, -4.053491403339438, -3.789665306746111, -3.614286511004289, -2.0121412609866733, -3.0141130613510034, -2.6186675516888123, -2.2061016624806835, -3.17653738805171, -7.0, -3.669558604643371, -3.596085536398726, -3.410136548836324, -2.450127508295634, -3.726328673977254, -2.75239125435271, -2.3439553576704903, -3.9701724724467833, -3.11632173560914, -7.0, -3.1843079803901997, -2.6135439287814037, -2.5709391184171992, -3.251837240301341, -3.601734148260105, -3.426384731849464, -2.603425452536781, -4.459678907011742, -2.0870630004271984, -3.3336487565147013, -3.3015285611502345, -2.8707787029439324, -2.8458109383710863, -3.756225197591558, -2.984887201064328, -3.1346232896624375, -2.644652967661531, -3.116337886260724, -2.4208937149668244, -7.0, -2.6462789366413837, -2.543381533214589, -3.304300406296957, -2.372209056194802, -2.625321558245327, -2.554685971338815, -1.8541116197418506, -3.607037804850964, -4.472961119019948, -3.0613722606710536, -1.8600402748354252, -1.955369780836698, -7.0, -7.0, -1.9784848578622045, -7.0, -2.675486111089519, -3.268933152150145, -4.193639321922583, -3.540610986582727, -2.3907490483465703, -1.4136036413282196, -2.8994611250867406, -7.0, -3.2422514706002343, -3.835563751669097, -2.3248192261464693, -7.0, -3.3913251836514897, -2.792063924327391, -3.7312865070964243, -7.0, -3.0045134565169995, -2.3796810920364257, -2.8188354859318134, -3.3093746249166704, -1.8633124773794558, -2.0018841438745514, -2.6567382459105713, -2.1131439144706006, -4.441899276742038, -1.1213559191731346, -2.6219268392563837, -2.3558663952923395, -3.147983575558577, -4.438114963661999, -2.649964478499643, -2.945267692378855, -3.5518158223510157, -4.133858125203335, -7.0, -7.0, -7.0, -4.200864172135313, -2.01596835978946, -3.1588748984559967, -1.938057301280704, -7.0, -3.8527543908053885, -2.5166837422777864, -3.3485444903288952, -3.8543212266573574, -3.958643504540717, -2.926802604741088, -4.433609843323718, -2.445300606978883, -2.6101205079956773, -3.74126193189077, -7.0, -2.680946811516913, -3.554413439581362, -2.562600715951575, -4.444279064276847, -7.0, -2.9936766592628796, -7.0, -4.441899276742038, -3.754302457110145, -2.931268942740345, -7.0, -2.9976696969261343, -7.0, -7.0, -3.2881702892508025, -2.22618371217853, -2.536940995549226, -7.0, -7.0, -2.472310103458907, -7.0, -2.977679362510885, -7.0, -2.9872654962543743, -2.281260687055013, -7.0, -7.0, -4.1614428741396345, -2.9174591708031667, -3.0812364901250664, -4.138192136407885, -3.8500639271210804, -2.9534946926692696, -4.440657244144619, -3.2234501285027197, -2.5486182064918386, -3.5464604029452773, -7.0, -2.6911104914874224, -2.69539410829111, -4.456639279342896, -2.703635237583896, -7.0, -7.0, -3.390972935985586, -3.5549432055045624, -2.0644721772204484, -2.7275708300415333, -3.8824249177039785, -3.97320484934175, -7.0, -3.5724972715840555, -3.3975766285797615, -3.557734381817368, -7.0, -2.8892714106403634, -2.5194832735069945, -4.448428035011636, -7.0, -2.5403827297856556, -1.8276261561842277, -3.2568026105565364, -4.159852819341846, -2.9210823527319962, -4.168821463009824, -3.903496947335859, -4.4472510844758615, -2.416933359904303, -3.0460350401114673, -7.0, -4.44617976779828, -7.0, -7.0, -3.7401432934391092, -7.0, -3.401463205016831, -3.7697021868101284, -2.3207996990859354, -2.9947872586547124, -3.1507458562177173, -2.537988791073051, -4.4937925310696665, -2.7105478667613006, -7.0, -3.411252282521769, -7.0, -2.656915154219173, -3.171740379820262, -2.991516800560143, -7.0, -3.0209287974587418, -3.7460578706127543, -2.3513910114435865, -3.4006007781992125, -7.0, -7.0, -7.0, -7.0, -7.0, -4.435047641339964, -3.1190314237972894, -7.0, -4.155244917176186, -3.9614210940664485, -7.0, -3.3936230567743357, -3.1359432138552865, -3.964746621944139, -4.138223728353917, -2.6481797995677563, -2.905734219276379, -2.37726626057981, -3.468588985513581, -4.492830205678688, -3.9637248815548944, -4.43240803142708, -3.221530150162211, -3.3597722616567713, -7.0, -2.4990106464473296, -3.162438624324789, -3.1853847390413126, -2.970361406717804, -7.0, -3.4228583372213346, -3.9568085108888016, -3.3931762188759738, -2.927626962444954, -3.587775086454419, -3.4925369002881332, -3.034936816821393, -4.142561522784965, -4.431412016420789, -3.8207923810882036, -7.0, -3.8009918612601714, -7.0, -3.5129510799724906, -3.8818409683249273, -3.8642143304613294, -3.814580516010319, -3.054166019538618, -4.178911575955362, -3.3450206615421147, -7.0, -7.0, -1.7606681875250838, -3.1694392989789413, -3.857030798272624, -7.0, -7.0, -3.5098742850047193, -7.0, -2.57103173507351, -3.8324131018851166, -7.0, -3.7212333700172775, -2.89186034424264, -7.0, -7.0, -7.0, -3.90156729002845, -3.861653870213911, -3.8270460170047342, -3.8993224739323775, -7.0, -7.0, -7.0, -3.82795052830263, -7.0, -7.0, -2.501646014590592, -3.3256524705723134, -3.6110857334148725, -7.0, -3.101882679381091, -7.0, -3.353595694717235, -2.825047270292454, -7.0, -3.1078880251827985, -7.0, -7.0, -3.958085848521085, -3.557266528869904, -3.883320678382975, -2.7042659439453036, -7.0, -2.8200136970607947, -7.0, -7.0, -7.0, -3.937066312017428, -7.0, -7.0, -7.0, -7.0, -7.0, -3.981637424655769, -3.2314950764482293, -7.0, -7.0, -3.146334793350271, -7.0, -3.5756496147552195, -3.530498519797741, -7.0, -3.9333860419030544, -3.280406843747666, -3.8080082999104, -3.3092041796704077, -7.0, -7.0, -2.980555227710052, -2.785110715691334, -7.0, -7.0, -3.636688447953283, -7.0, -3.653309012938479, -2.522956290942878, -7.0, -7.0, -2.035607069257544, -2.5882250060000986, -1.6303389406217021, -3.204052118841129, -7.0, -2.6745549761273852, -3.5839352025367517, -2.6160551949765862, -2.1625010435296215, -3.036162949823816, -2.235550402595322, -3.841922311679451, -7.0, -7.0, -3.229937685907934, -7.0, -3.616842959534867, -3.8677620246502005, -2.8295610562993927, -2.8098231096591526, -7.0, -7.0, -7.0, -3.865518519074774, -3.3998034713645615, -7.0, -7.0, -3.4285127466072924, -3.4955443375464483, -2.7509367354343515, -3.8476960207341655, -3.3633612324937796, -2.7275064998451697, -7.0, -7.0, -7.0, -4.064836376044476, -7.0, -3.239049093140191, -3.519653016141642, -7.0, -3.53668467262093, -2.8426766923530917, -2.90515782541163, -7.0, -7.0, -3.9885440937056678, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3901174996631, -3.2055523408496573, -2.509354301527002, -4.030194785356751, -3.2364112877439664, -3.6518269976896685, -7.0, -7.0, -3.8615344108590377, -7.0, -2.8200977060751757, -7.0, -7.0, -7.0, -2.868174040859638, -7.0, -7.0, -7.0, -3.390876255625289, -7.0, -2.7215750975918596, -7.0, -7.0, -7.0, -7.0, -4.128043673826458, -7.0, -3.8303319934519617, -3.4356701134142202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8531199842175665, -7.0, -3.6981701664125586, -7.0, -2.8998205024270964, -3.120974200048109, -7.0, -3.3279308045542364, -2.7564571100024473, -7.0, -7.0, -3.3981136917305026, -3.587542601193619, -3.859738566197147, -3.875697761980208, -2.51291667836589, -7.0, -3.7206140404234618, -7.0, -2.226377657373889, -2.9916690073799486, -3.365612764228607, -7.0, -4.2494674142722895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.057475915826254, -7.0, -7.0, -3.441904509867698, -3.9792447784093805, -3.41520713590843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5096504795465826, -3.9873757445117697, -3.5217359059530144, -3.7973368007753496, -7.0, -3.530391821401041, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.794599568642681, -7.0, -3.8021577531869615, -7.0, -7.0, -7.0, -3.8356905714924254, -7.0, -7.0, -3.5519783121038806, -7.0, -2.505919581839303, -3.6170702701898696, -3.5833121519830775, -3.8061121101690913, -7.0, -2.799455426978892, -3.2971036501492565, -2.869459892616723, -7.0, -3.97985934080671, -3.8478193472952396, -3.516204734761517, -7.0, -3.894758994371892, -2.371337287669071, -2.85314753632743, -3.198931869932209, -3.6296474104571437, -2.5478918606304815, -2.79594318285679, -7.0, -3.8642736968043794, -3.464638559095033, -7.0, -7.0, -7.0, -7.0, -7.0, -3.879439965995217, -7.0, -3.4292137870854282, -4.157214922391151, -3.8605775512444156, -3.934801341746537, -3.5728135375594547, -3.292597537758045, -2.096169472880984, -7.0, -3.7022064378331843, -7.0, -3.543074235033532, -7.0, -7.0, -7.0, -3.0540861434129027, -7.0, -7.0, -7.0, -2.9575540809979275, -2.9602453639496735, -2.7799242854328723, -7.0, -7.0, -7.0, -3.5859117103194342, -3.0000434272768626, -7.0, -7.0, -7.0, -7.0, -3.901676231326376, -7.0, -2.420519244652838, -7.0, -3.854063011866421, -3.302157695941016, -2.993121181893369, -3.443681988438522, -2.61558977880885, -3.7646042932870474, -7.0, -2.9670076520726463, -4.088140027861661, -3.3739780274568667, -7.0, -7.0, -7.0, -3.190565127083142, -3.475307913956194, -3.745660225706076, -7.0, -7.0, -7.0, -3.0767964309148454, -7.0, -7.0, -7.0, -7.0, -7.0, -2.903517141108291, -7.0, -7.0, -4.655580191171864, -7.0, -4.3893787479525095, -3.5260375792311995, -4.060403175459535, -3.322972010036008, -3.428426386440588, -2.830695571942768, -3.6337129099766963, -3.4075608494863623, -7.0, -4.114026862446869, -3.9867568098008093, -4.244433817983656, -3.529222990264051, -7.0, -3.4231721195548976, -3.872709718287906, -7.0, -7.0, -3.982994454658664, -4.620094394032491, -4.090927852581608, -3.559406022425555, -2.495779447167773, -7.0, -4.011790283886408, -3.211900575986455, -7.0, -2.7884085266163745, -4.005630880886649, -3.64834374496539, -3.5847510978442347, -3.553073530637089, -3.414416202952902, -3.6524155764759088, -3.5247205856840464, -3.6310123043958322, -3.325043347403704, -2.6970715980125615, -7.0, -3.229665331102911, -4.309239694613544, -2.8756399370041685, -2.9743441893192255, -2.5072131388836794, -1.4532725187258406, -2.3713068124942698, -4.195733648273212, -7.0, -4.524902179460859, -2.5607303312262646, -2.9663197853048757, -7.0, -1.9784848578622045, -7.0, -7.0, -2.00937029517419, -7.0, -7.0, -7.0, -3.363252530311502, -2.310948723918212, -4.264204556194133, -7.0, -4.031004281363537, -3.823539433656859, -3.4774197295869875, -7.0, -4.000218762497649, -3.949243590568265, -7.0, -7.0, -4.428879585851619, -3.403199740672326, -4.044624677304607, -7.0, -2.1022194978435347, -2.343748662446433, -4.230285391495177, -1.9802034192957039, -7.0, -2.458110687811594, -3.6608745087788024, -2.527077246100807, -4.5137197362380554, -7.0, -3.086137286738593, -3.625069132996176, -3.63002085111341, -7.0, -7.0, -7.0, -7.0, -4.04241798814325, -2.2881498219364174, -3.3079771322250884, -2.2790236522979446, -7.0, -7.0, -3.541688427827535, -7.0, -3.8959747323590648, -3.815710539788963, -4.058539897939781, -7.0, -3.6317417368754, -2.8515640822634887, -7.0, -7.0, -3.9831299247347003, -7.0, -3.0195316845312554, -7.0, -7.0, -7.0, -7.0, -7.0, -3.884682104206025, -2.786751422145561, -7.0, -3.605601299868819, -7.0, -7.0, -7.0, -3.189714174255922, -3.048597158401606, -7.0, -7.0, -2.779987084404963, -7.0, -2.9421073089893555, -7.0, -3.873959654743353, -2.5143263432841403, -7.0, -7.0, -7.0, -3.269396182694991, -3.7266864665450092, -3.8298181874388773, -7.0, -3.3784584677820555, -7.0, -2.9332059908106287, -3.0446237442419464, -7.0, -7.0, -3.0151734029146566, -2.8804801242258704, -7.0, -3.5986810989071634, -7.0, -7.0, -7.0, -7.0, -2.936027951220748, -2.9407654356312176, -3.6893088591236203, -7.0, -7.0, -7.0, -7.0, -3.7702627381705933, -7.0, -3.1248301494138593, -2.579068708419333, -3.865991800126275, -7.0, -2.6025302223541824, -2.5701116642934236, -4.000130268805227, -3.9119029960440326, -3.6377898293622293, -7.0, -7.0, -3.8614746688571686, -3.2662839740877176, -7.0, -7.0, -7.0, -7.0, -7.0, -4.458698268402751, -7.0, -3.544378143957812, -7.0, -3.3943093735350707, -3.901621764093357, -4.308628432599052, -3.334189114934161, -7.0, -2.8564771400530096, -7.0, -3.1836114492184326, -7.0, -2.666900712558807, -3.418425594468589, -7.0, -7.0, -3.1048284036536553, -3.007503929323978, -3.231342137903896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.812445402872756, -3.785044958331544, -7.0, -3.5942267574809135, -7.0, -7.0, -7.0, -3.345569756056392, -3.84060787900929, -7.0, -3.219898739044966, -3.3978241813658694, -3.0947039943211667, -7.0, -7.0, -7.0, -7.0, -3.1216536240371213, -7.0, -7.0, -3.293292754890996, -3.2374809016410064, -3.8376515578463923, -3.9644482079166607, -7.0, -3.924641047417163, -7.0, -7.0, -3.6078837443569896, -7.0, -4.01556930642988, -3.5733938349225207, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1975562131535367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.208011148892835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9744541207240007, -7.0, -7.0, -4.726622434922055, -7.0, -7.0, -7.0, -7.0, -3.089905111439398, -7.0, -4.56397324415489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.839864403842175, -7.0, -7.0, -7.0, -7.0, -3.6261349786353887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8961402514420196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.448366169700718, -7.0, -7.0, -7.0, -7.0, -3.7204900684500517, -3.014205413953746, -7.0, -7.0, -5.124931136388365, -7.0, -7.0, -7.0, -7.0, -3.8675264111997434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752888040393171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.741939077729199, -7.0, -7.0, -3.7800111094361224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.516142987566927, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8191489428071344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.022881813332031, -3.7165875776756923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.539916260467521, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3697722885969625, -3.0457140589408676, -7.0, -3.2660552139992545, -2.5848963441374497, -7.0, -4.753141646600399, -7.0, -7.0, -7.0, -2.2571984261393445, -2.2885473000393515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.450066188704678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9585638832219674, -7.0, -7.0, -3.591621038213319, -7.0, -3.7456992266025058, -7.0, -3.1690863574870227, -7.0, -7.0, -3.730216840568694, -3.316808752053022, -7.0, -7.0, -7.0, -3.843419665204918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5637183399656776, -4.12668326338829, -5.712841556805494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.416640507338281, -7.0, -7.0, -2.352733653314646, -4.163608563431052, -7.0, -7.0, -7.0, -7.0, -2.942008053022313, -2.605305046141109, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.532053338514362, -2.9552065375419416, -4.2325302427478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8292394281413893, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40226138245468, -7.0, -2.4424797690644486, -1.9888332625766045, -1.5502283530550942, -3.185825359612962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.131397290957086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.296665190261531, -3.247236549506764, -2.242486213183962, -7.0, -5.226240851740608, -3.8605775512444156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8151348166368135, -7.0, -7.0, -7.0, -7.0, -3.6843964784190204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.030107385215894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4345689040341987, -7.0, -2.4756711883244296, -3.326745379565322, -2.783903579272735, -3.8987388901635986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.879325300784807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0017337128090005, -7.0, -5.065422847465759, -3.8756399370041685, -7.0, -7.0, -7.0, -7.0, -1.6541060757513173, -2.4649364291217326, -4.137433239453652, -4.961871766990156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.291821559582458, -5.010575544390487, -7.0, -2.425697213362591, -3.671913012441587, -7.0, -4.352568386179309, -7.0, -7.0, -7.0, -4.212853189947111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.420120848085703, -7.0, -2.946452265013073, -7.0, -4.353021343506187, -7.0, -3.5476184492199474, -7.0, -7.0, -7.0, -7.0, -7.0, -0.9734699524609507, -7.0, -7.0, -7.0, -7.0, -7.0, -4.178660458538169, -7.0, -7.0, -3.4934978835625743, -7.0, -1.8017955841534885, -7.0, -7.0, -7.0, -4.318835191727664, -3.594503043820089, -7.0, -7.0, -7.0, -7.0, -2.9472376078706666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.624642998257259, -7.0, -3.1344958558346736, -7.0, -3.158060793936605, -3.4679039465228003, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.216429830876251, -3.189069009399324, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8109042806687006, -3.85550938603252, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2935835134961167, -7.0, -7.0, -7.0, -3.7802452838653524, -7.0, -3.1202447955463652, -7.0, -3.6024506805778724, -7.0, -7.0, -7.0, -3.5476106349355865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.527049594892765, -7.0, -7.0, -3.9420452766683427, -7.0, -7.0, -7.0, -2.9017306917292185, -7.0, -3.022325250092303, -3.346841769642251, -7.0, -7.0, -7.0, -7.0, -4.09083978004538, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9764154883905163, -7.0, -7.0, -7.0, -2.244524511570084, -7.0, -3.3544926005894364, -2.8627275283179747, -4.101781431327967, -7.0, -7.0, -7.0, -2.456366033129043, -7.0, -7.0, -7.0, -3.893720160977218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.617210094557434, -7.0, -7.0, -7.0, -2.5452658709667757, -3.0585259150851116, -7.0, -7.0, -7.0, -3.7826875682349663, -3.1733319803686495, -3.1132428258259015, -7.0, -7.0, -3.5278446323871613, -3.079212265974205, -7.0, -3.794766797940821, -7.0, -3.878694100396108, -7.0, -7.0, -4.42003280277851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.629969946292171, -7.0, -7.0, -7.0, -2.909199319174384, -7.0, -7.0, -2.6255410871774854, -3.830396176483469, -3.215329068686353, -7.0, -3.8221026686469206, -7.0, -7.0, -7.0, -3.188174892591544, -7.0, -2.953534192980002, -4.0682600937746995, -2.8459932798880287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.962700731704341, -3.184807536815324, -7.0, -7.0, -3.4260230156898763, -7.0, -4.036908222920219, -7.0, -7.0, -3.611032559924521, -3.4705168322128936, -7.0, -7.0, -7.0, -7.0, -3.4148396983369262, -3.87742894078822, -7.0, -7.0, -3.916822284595912, -7.0, -3.934245881023071, -2.608817669502134, -7.0, -7.0, -2.489341120532883, -3.251784177257485, -2.206109627437567, -7.0, -7.0, -3.3078702684248684, -7.0, -3.0513730604650204, -2.688794375266033, -3.7868933252613157, -3.0362295440862943, -7.0, -7.0, -7.0, -3.8717771927051063, -7.0, -7.0, -7.0, -3.5117051523256135, -3.2633253244695006, -7.0, -7.0, -3.530583859645118, -7.0, -3.628096869190681, -7.0, -7.0, -3.88320703335239, -7.0, -3.2112540676178725, -7.0, -3.6101702411170487, -2.7028506723802965, -7.0, -7.0, -7.0, -4.239249413476724, -7.0, -3.6163179419637905, -3.9786825651569444, -7.0, -7.0, -3.3634239329171765, -2.884589415168878, -7.0, -7.0, -2.733757322895717, -7.0, -7.0, -3.7726883546821415, -3.4802225985844752, -7.0, -3.3053513694466234, -3.733919151012391, -2.896482124440946, -2.5337297026542602, -7.0, -4.115677065115837, -7.0, -7.0, -3.836387419326411, -7.0, -2.8541630994869776, -7.0, -3.792391689498254, -7.0, -3.2826544758187164, -7.0, -7.0, -7.0, -3.366111523378347, -7.0, -2.7291024582277323, -3.854973673726417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6970774544704295, -3.7969903905456865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14157518330082, -3.4924111373136824, -4.390104563825434, -7.0, -3.428418289294446, -3.720283369820714, -7.0, -7.0, -3.668572269184558, -7.0, -7.0, -3.5499836111596887, -3.3877456596088638, -3.2320426643848315, -7.0, -3.1433717301956188, -7.0, -3.7033773685123497, -7.0, -2.835388558627749, -3.5711845677336043, -3.4384315856144934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7405205860536648, -3.8868853589860084, -7.0, -3.8972971220594963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.805636766305935, -7.0, -3.968249394107917, -3.2787993137555556, -3.79313738833959, -7.0, -7.0, -3.804548308388056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.190719121464074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.737873889090549, -7.0, -7.0, -7.0, -7.0, -3.13795345982699, -7.0, -2.396442136180449, -7.0, -4.0559437693150855, -7.0, -7.0, -7.0, -4.184379080658596, -2.6768128503198643, -2.8411210108843323, -3.182577675890636, -2.8127726716782617, -3.002104323966667, -3.8120438979302267, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0920887392558067, -7.0, -7.0, -7.0, -7.0, -2.6267394565233526, -3.8435753430507633, -3.8353734524700087, -3.91365493508662, -7.0, -3.4245118144555238, -2.9181614445539976, -7.0, -3.6950962442731257, -7.0, -7.0, -7.0, -3.866818802926048, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2879695948354546, -3.398607443661825, -2.7283876042619606, -7.0, -7.0, -7.0, -3.445253824487426, -3.9827233876685453, -7.0, -7.0, -7.0, -7.0, -3.878808932359205, -3.194930399217724, -2.7880851490499095, -7.0, -3.5273076043950233, -3.0796785902590686, -7.0, -3.508383807427543, -3.298576553045992, -3.716927395607391, -7.0, -3.5895772957033327, -4.040760524228698, -3.212415920092334, -7.0, -7.0, -7.0, -3.4723663352268415, -7.0, -4.030518764843543, -7.0, -7.0, -7.0, -2.945632686581686, -7.0, -7.0, -7.0, -3.9947129854315704, -7.0, -3.8728785244068824, -7.0, -7.0, -3.9525890468356892, -4.2081523577244075, -3.6829569263012085, -3.985336641735613, -3.610005795612442, -2.8825245379548803, -3.636955706104427, -2.8010703387598253, -3.07725565617283, -3.0273787345298664, -3.9740970037941312, -4.107142105833073, -3.4394003708137886, -3.57355535119803, -3.525164458378011, -3.427778137224173, -3.9429170514135157, -3.949921569950947, -3.7324205672969377, -3.7155521111846324, -3.964118143151485, -3.528066796747986, -3.6856163571494998, -3.0643368455752453, -2.8969094467064838, -7.0, -3.593209359886835, -3.0867575075215505, -3.8849651982007325, -2.540390030364661, -3.9967742708613048, -3.4453173644300032, -3.4230983526454675, -4.021995097954464, -3.8683504996479683, -3.4662248436369283, -3.8124119583013405, -3.4148062795010126, -3.316557399977768, -2.59405527791589, -3.344588742578714, -3.1264394677377028, -4.1828317685399785, -3.641441057915941, -3.044191209425144, -0.8127436357743372, -2.73917663191073, -2.4023884497671752, -3.8831786174475216, -3.932879457823799, -4.218509247198932, -2.889772166771449, -3.158566223619323, -7.0, -2.675486111089519, -2.00937029517419, -7.0, -7.0, -3.861130992771048, -4.004020273253242, -7.0, -3.7845375828635124, -2.464456302618722, -3.706572455351785, -3.7901443650429005, -4.014142361545006, -3.7960189693471493, -3.9809164758354942, -7.0, -4.715608958857198, -3.939144699355296, -7.0, -3.17260293120986, -7.0, -3.210492416869035, -4.343014497150768, -3.0723418215173193, -1.9837359712978422, -2.21677901089471, -4.228189834000131, -2.717839278097978, -3.8140477209955996, -3.065934324651937, -3.7508304455965837, -2.211993787829547, -4.45494580269563, -7.0, -3.067535789696351, -3.9637595028687533, -3.6230251917855596, -7.0, -7.0, -7.0, -7.0, -3.7248900028380363, -3.0649444260386174, -3.586812269443376, -2.823810663374714, -7.0, -7.0, -3.9613894503284546, -7.0, -7.0, -7.0, -3.264187954179907, -7.0, -3.7919329546000036, -3.6795187436957892, -7.0, -7.0, -7.0, -7.0, -3.7018700729474063, -7.0, -7.0, -4.058463985602251, -7.0, -7.0, -7.0, -3.643304596306801, -7.0, -3.4182460340536993, -7.0, -3.783832143384441, -4.652594410868086, -4.158884939598661, -2.8743254302416155, -7.0, -7.0, -3.1071482757090045, -7.0, -3.444929147447511, -7.0, -3.5483894181329183, -2.702261911134961, -7.0, -7.0, -7.0, -3.8472641017707643, -3.7096938697277917, -3.802705327074352, -7.0, -3.8303319934519617, -7.0, -3.262332413822626, -3.137929259755552, -4.324447085505086, -7.0, -3.1050233074971167, -3.9408152086508013, -7.0, -3.1120685042681973, -7.0, -7.0, -7.0, -3.8795546009389743, -3.289226756097386, -3.619719265611727, -7.0, -7.0, -7.0, -7.0, -7.0, -3.754921409665169, -7.0, -3.8807564445102103, -2.9916321136550907, -3.8411090844681537, -7.0, -2.9196756768967838, -2.918238282434964, -3.6808791744268112, -7.0, -3.9320507642717413, -7.0, -7.0, -7.0, -3.0332896932905147, -3.399370820918436, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4429498695778618, -3.3420276880874717, -3.9182400902214147, -3.1465045564041887, -7.0, -4.299812265495717, -3.830716949436898, -7.0, -3.2163242786866677, -7.0, -3.859138297294531, -7.0, -3.391111613702803, -3.7023443583557687, -4.012710712741787, -7.0, -3.8596785766284483, -3.5265331155907425, -3.526798605282374, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2928096654172903, -7.0, -3.571009672309305, -7.0, -7.0, -3.785472203306388, -3.7953933349312896, -7.0, -7.0, -3.897352134344313, -3.373463721632369, -3.784617292632875, -3.7493497605974766, -3.998215732370958, -7.0, -7.0, -3.3453737305590887, -7.0, -7.0, -3.8686209306148043, -7.0, -7.0, -3.6436007061922973, -3.9105710484812586, -7.0, -7.0, -3.7834747875822465, -7.0, -7.0, -3.998084887936556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3908291687001455, -7.0, -7.0, -7.0, -3.317723909793547, -4.146871903085739, -7.0, -7.0, -3.8078843976025314, -3.4786552765992944, -4.383294618363712, -7.0, -7.0, -7.0, -7.0, -2.3769986069777973, -4.184308060645372, -7.0, -4.439395859342977, -2.892479561925183, -7.0, -7.0, -7.0, -4.397035735379094, -7.0, -3.772413397736013, -3.090850169017244, -4.380844126464666, -7.0, -4.068723756708053, -7.0, -4.395693247503584, -7.0, -3.635282637998212, -7.0, -7.0, -7.0, -2.5864168811897237, -7.0, -7.0, -7.0, -7.0, -3.590013393112236, -7.0, -7.0, -4.114844413145024, -3.9065146136422175, -7.0, -2.7159571753585046, -4.409053505010069, -3.8876876143457504, -4.162639072470405, -4.37500481553064, -4.378615902031225, -7.0, -7.0, -7.0, -4.381042842771909, -7.0, -7.0, -3.3099248374464105, -1.1806561030119451, -7.0, -7.0, -4.1035984939779375, -7.0, -4.451356532162689, -3.956696564894651, -7.0, -7.0, -2.664594552988194, -7.0, -4.400261610744863, -7.0, -7.0, -2.8480458327664424, -7.0, -7.0, -7.0, -3.4086469256557654, -4.3778524190067545, -3.5113150657669396, -4.119964833979976, -3.790408325715892, -7.0, -3.1055665756655806, -4.119239388414244, -4.045674966769105, -4.3688630818982945, -7.0, -4.4068466330976666, -7.0, -4.101643985490313, -4.125464999685052, -7.0, -3.965895171299572, -4.378851946448881, -7.0, -7.0, -3.809775125133529, -7.0, -4.402347372848368, -4.386516800686768, -3.7344317630530526, -2.8051562428121297, -7.0, -7.0, -4.383330552045836, -3.9086458389071135, -2.814626734760099, -7.0, -7.0, -7.0, -7.0, -3.5885438061451786, -4.380536840488749, -3.5769399643348927, -3.247662360557147, -7.0, -3.8719230318823734, -7.0, -3.10156450476769, -7.0, -4.10809123558122, -4.429849137858492, -7.0, -4.377670439334323, -2.732271578226466, -7.0, -7.0, -7.0, -3.8194217142704345, -7.0, -7.0, -7.0, -7.0, -7.0, -2.506101564166644, -4.149573180097276, -3.9676064709973065, -7.0, -7.0, -3.5801120504438124, -7.0, -7.0, -4.384640100826291, -7.0, -3.429135405190724, -7.0, -7.0, -7.0, -2.927543961579448, -7.0, -7.0, -7.0, -4.386659455414194, -4.369864957856229, -7.0, -4.3899807298820175, -4.404166374048794, -3.4987928353293385, -7.0, -3.704650897336816, -7.0, -4.375517300649672, -3.1489862682916314, -4.373849508088649, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7956158859950087, -7.0, -3.260423992354916, -4.367989193531104, -3.749890841271422, -2.823549599065664, -4.380066452751471, -4.140209402207167, -7.0, -4.3867842398736805, -4.4017623021368255, -4.3888646325755944, -3.614633607841792, -7.0, -4.388935581235242, -3.7344317630530526, -4.374931553978188, -4.439158941284675, -7.0, -4.502427119984433, -4.395116622747174, -3.2895695656943067, -7.0, -3.762516016666799, -7.0, -7.0, -7.0, -7.0, -7.0, -4.375444125505117, -3.411481958597725, -4.399535278865296, -7.0, -3.9255699095433765, -3.959728084371596, -3.330486246354266, -7.0, -7.0, -4.372912002970106, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5883697622678854, -3.2215772307066666, -3.281977758929144, -2.879998788198969, -7.0, -3.896415976473123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.391058669254854, -3.1914667588994208, -7.0, -7.0, -7.0, -7.0, -7.0, -4.377051137447527, -7.0, -7.0, -4.140994858693246, -4.393188992055249, -3.8588829315609967, -4.468376873249617, -7.0, -7.0, -7.0, -2.6545675678603096, -7.0, -4.057323705369284, -7.0, -2.4219280998205424, -7.0, -7.0, -7.0, -3.4347285417797577, -7.0, -3.5505680437113667, -3.6697041939618917, -3.8715875285292607, -3.609612193237913, -4.076822423342773, -4.369623976640633, -7.0, -4.109291622066701, -3.70816585785554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.398634324538392, -3.153066152285301, -7.0, -4.106870544478654, -7.0, -2.754048441822166, -3.8845263238153, -7.0, -3.420584854485378, -7.0, -7.0, -7.0, -7.0, -4.026410680578774, -4.415824398888761, -3.984647309056901, -4.3941889232411695, -7.0, -4.400607056580689, -3.1824152768205396, -3.7027463765507442, -7.0, -7.0, -7.0, -4.154423973114647, -3.8291268019900375, -7.0, -7.0, -7.0, -7.0, -4.397070549959409, -7.0, -3.8427184234915157, -4.076931574555656, -4.382413313126267, -3.200560828955417, -3.90080393481037, -3.0315507573120577, -4.373298279614871, -2.574061758322598, -4.378161609554913, -3.316614266155604, -2.5556885987041573, -3.8574380412917293, -7.0, -7.0, -7.0, -3.465300215260955, -3.558078266395439, -7.0, -7.0, -7.0, -7.0, -3.704733761876889, -7.0, -4.377160490206987, -7.0, -4.435589573086606, -7.0, -3.2461887364633246, -7.0, -7.0, -3.514939021565843, -3.290066426642698, -3.7146859363429696, -7.0, -4.269740538936799, -3.411423275153606, -4.482773570074737, -2.850251774187875, -3.0206257147651727, -4.509498225929598, -7.0, -2.739643331627827, -3.553675014594602, -3.856949126259041, -2.8701540091435267, -3.1675437784943665, -3.136938063950316, -2.8927573293012037, -4.225154148849806, -3.490760871305561, -4.123688341667586, -2.794959599574934, -3.221028026628, -2.7712352239514018, -4.073901558314207, -3.4992844078926906, -3.403107805589821, -3.2010555635620643, -7.0, -2.985125198180277, -3.66774471943227, -3.485548612258038, -2.8022083732093863, -2.8430401435941177, -4.393926006585837, -2.7222723585019852, -3.139449729488457, -3.6298681187461233, -2.606026703562754, -3.152077602666315, -3.5352941200427703, -2.7658437971630474, -3.575449990754737, -1.9960417286434593, -4.136133714782523, -2.9114929941425376, -7.0, -3.1276252821015027, -2.4466228563122, -3.0710614934952005, -2.358777707275306, -3.0209881375257415, -3.7357094243870126, -4.388261100540889, -3.268933152150145, -7.0, -7.0, -3.861130992771048, -7.0, -3.2080301376260425, -3.7786034050126207, -2.804712615697911, -2.7804346952659618, -2.775640783247661, -4.0709793567886825, -7.0, -4.37359235519894, -2.3185520603058944, -3.6147917919564176, -3.274950722956219, -7.0, -1.9237936053901579, -3.765985034880714, -3.8634418286137087, -2.7881858354814497, -3.2876715574381974, -3.173105296195781, -3.638988159343682, -4.46569507426257, -3.5029815839207563, -3.074857057384218, -4.378434242062079, -3.2305707425619747, -1.7256314710525595, -4.422491349209966, -2.163152765510742, -7.0, -4.126180128666808, -1.1779344090499038, -1.7089606328996565, -4.069279499594718, -7.0, -7.0, -7.0, -3.332873313531299, -3.572008127378336, -3.797700234382403, -3.350190990629806, -7.0, -3.4901165675714214, -2.223246074709505, -7.0, -4.3952564808860215, -7.0, -3.0056247565585017, -4.368825930958845, -2.3025248099237756, -3.2539999289782684, -3.5983162068659507, -7.0, -3.7806292966955923, -3.697578033651113, -3.359076226059263, -7.0, -4.074615331828475, -4.459784382296269, -7.0, -4.378434242062079, -4.391711200121372, -4.418035992299948, -7.0, -2.987653123403257, -7.0, -7.0, -3.432599847601894, -3.0431494595623994, -2.9330738905666194, -7.0, -3.9310508467773912, -4.498076109372166, -4.380844126464666, -3.8085485512404054, -7.0, -7.0, -2.9004206824492385, -7.0, -3.46729355361571, -7.0, -4.086680093734625, -3.839336611526406, -3.676254521729781, -3.545041898453366, -3.683821230045629, -7.0, -3.9156636035057732, -3.557654214241106, -2.940957708931293, -7.0, -3.574857708475501, -4.115760242578008, -3.440926565388096, -3.787920738554055, -7.0, -3.893447344047389, -3.708958831371789, -3.9201059263234987, -2.7852108631125287, -4.410254078446397, -3.4271614029259654, -4.388243336895596, -7.0, -3.9982884066933058, -7.0, -2.547911383432036, -4.3735556066389325, -3.9204711793184543, -3.185765752903851, -4.385981427736939, -7.0, -3.030959348925247, -3.075467327907453, -4.129963656273567, -4.099300726233463, -3.3324990549181783, -3.565358624783057, -7.0, -4.083556365821537, -2.9233735621008576, -3.7390340870857917, -4.085040706742194, -4.38338444699495, -7.0, -7.0, -3.298055299407909, -7.0, -4.379903507451503, -7.0, -3.5226819908643168, -4.397053143018109, -3.4578236920187804, -2.5941218354020963, -7.0, -3.630275285757692, -7.0, -3.7890339749426714, -7.0, -3.832971700601181, -3.8366247257537696, -3.840043330603494, -7.0, -4.09029333131011, -4.382197210377454, -2.320045134490263, -4.378906400023262, -7.0, -4.3675236418690195, -7.0, -7.0, -7.0, -7.0, -3.9877556167385233, -3.9124523434166374, -7.0, -3.7724500687215876, -4.376540460188395, -4.370827547784376, -7.0, -4.077404246398098, -3.8982130849457537, -3.448259603224894, -3.2744065555635453, -2.421812577729229, -3.4563508477418177, -2.944546347024838, -3.4739429223184204, -7.0, -3.464638559095033, -3.5301081810850734, -4.366441636156833, -2.5595692527659755, -4.378270683096358, -4.3776158305597805, -2.753882675656707, -4.406948735950354, -3.4500265994660992, -4.369271532621027, -4.370309495258699, -2.9671664837366802, -4.368193878266824, -3.7377172970215713, -3.786414216302987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.800016123199396, -3.958277125547698, -7.0, -7.0, -7.0, -3.828058082844378, -7.0, -7.0, -7.0, -7.0, -7.0, -4.109122754158086, -7.0, -7.0, -7.0, -3.6367091893856673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.189372389686722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.540954808926133, -7.0, -7.0, -7.0, -3.48106126027507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.649964779534759, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.88058495606498, -3.1841504223615846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.961753214186783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.690550461510359, -3.8459657615454836, -7.0, -7.0, -7.0, -4.1262563229823215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.489364647145191, -7.0, -7.0, -7.0, -3.7281101841003403, -3.3701274134264128, -7.0, -7.0, -3.7825442840100103, -7.0, -7.0, -7.0, -3.672051653937386, -3.8289390268079373, -7.0, -7.0, -7.0, -4.232602273130774, -7.0, -3.5241363765925686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.957910437209481, -7.0, -7.0, -7.0, -7.0, -7.0, -2.55975704883973, -7.0, -4.259235402198733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0253877998904075, -7.0, -7.0, -7.0, -3.888864386018648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058388059993333, -7.0, -7.0, -4.416870375999975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6116879117416305, -7.0, -3.7590253691608635, -7.0, -7.0, -3.3519345493940382, -7.0, -3.9373674175172897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6291036501771363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9831750720378127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9479236198317262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.241521577676051, -4.637037521027568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6604860157849677, -7.0, -7.0, -7.0, -3.9613926148060097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.717420836722375, -7.0, -7.0, -7.0, -4.390210679109047, -7.0, -7.0, -7.0, -3.701183205404621, -3.703635237583896, -7.0, -7.0, -3.1822243810265145, -7.0, -4.114777731971562, -3.958516103423041, -7.0, -7.0, -7.0, -7.0, -7.0, -3.528723923260994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7913397039651393, -7.0, -7.0, -7.0, -3.5529083326924566, -7.0, -7.0, -4.064514144365488, -7.0, -7.0, -7.0, -7.0, -4.111228898234156, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8765533138467743, -4.0533089811241, -7.0, -7.0, -7.0, -3.6800634274819486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.94875518016827, -7.0, -7.0, -7.0, -7.0, -3.256173477745645, -4.4514486901432795, -3.7438572042505402, -7.0, -3.5262961904825314, -3.5291374854609625, -3.9933039379194746, -7.0, -7.0, -7.0, -3.387449152133768, -3.697403723200488, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6625689669332604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9369960240186312, -3.845139399424021, -7.0, -7.0, -4.744128624384017, -4.439127342442847, -7.0, -7.0, -4.056795991959564, -4.125676410382333, -3.8943160626844384, -7.0, -7.0, -4.412258893898136, -4.146138375899948, -4.401658972495152, -4.707902156725324, -3.3507945194988746, -7.0, -4.086324231307385, -2.2543523893313715, -4.549675739824959, -4.355451520126517, -4.578799605747632, -7.0, -7.0, -4.392626616474039, -3.9824521513849898, -7.0, -4.10265319875918, -7.0, -7.0, -4.396687435992471, -4.289142835932333, -7.0, -7.0, -7.0, -3.906119457545562, -3.805296916157985, -7.0, -3.101231386790699, -4.4037466209787235, -2.4336680285437815, -3.28450592984192, -3.924227581260118, -4.100060223931153, -7.0, -3.8833182081550213, -2.4526168878277472, -2.4612108026907533, -2.151799281836671, -3.9391878461917433, -3.9360611166099884, -3.739018245883481, -4.193639321922583, -7.0, -7.0, -4.004020273253242, -3.2080301376260425, -7.0, -7.0, -2.1701063358406323, -3.7942830503276914, -4.2625214322808995, -3.360309344342059, -7.0, -3.669409867287783, -3.320146286111054, -7.0, -3.5604471976694194, -2.4635058925862654, -3.267321091480779, -7.0, -2.600902666954075, -3.791297571494794, -3.265121183675147, -3.896691526562884, -3.7041290590724634, -7.0, -2.7051183043865903, -4.237857784350719, -3.392169149489736, -3.816084982682152, -3.10429328547008, -7.0, -3.5989516891716944, -7.0, -3.890923771489014, -3.80240229112848, -3.5278875659527045, -3.6527296960692475, -3.6392872259102367, -7.0, -7.0, -3.9559762222483257, -4.045479453110779, -3.788521887222473, -4.2819646232599, -7.0, -3.2842803027789684, -2.2144532419764444, -3.7995473071256147, -7.0, -7.0, -2.4040474118956006, -7.0, -2.3264346547815506, -2.8217863778714993, -3.383456296524753, -3.7790189719148706, -3.122241090573313, -3.075838825974687, -7.0, -3.103974669386388, -3.378670385207983, -2.993083360698062, -7.0, -3.215901813204032, -7.0, -3.858416877723488, -7.0, -3.3051977728112814, -7.0, -7.0, -3.937989041454751, -3.2685474497400993, -3.8601116485509888, -7.0, -7.0, -7.0, -3.4037209086266897, -7.0, -7.0, -2.893603260420453, -3.33577873881047, -7.0, -7.0, -3.797959643737196, -3.435525851498655, -3.6369390072874714, -3.3771240423464564, -2.9022360696016483, -7.0, -7.0, -7.0, -7.0, -3.085847809030809, -7.0, -3.564902672529205, -3.854002233126989, -3.7701890227359933, -7.0, -7.0, -7.0, -4.069742076041645, -3.7779340488377793, -2.828504069597003, -3.227050718827332, -3.289254408054181, -7.0, -7.0, -3.5609422722781963, -7.0, -3.1454184040139723, -3.3680078052211746, -3.302042169044836, -3.4067955726682504, -3.029140179764322, -7.0, -3.304188829614843, -4.191040933375073, -3.9037951427410356, -7.0, -3.682506085939011, -3.8310374856400253, -3.3665630296290265, -2.0335075233494724, -2.4300511544770096, -7.0, -3.7293268096468606, -3.7168377232995247, -7.0, -7.0, -4.126488570700374, -3.828788748184953, -7.0, -7.0, -2.9319776588193447, -3.0773679052841567, -3.1172002493079924, -3.6884976854468556, -3.926702494182645, -3.345765693114488, -7.0, -3.450787792072898, -7.0, -3.6163179419637905, -7.0, -7.0, -7.0, -3.752662943120972, -7.0, -2.3235805527428437, -3.6956567599361905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7451528950769006, -3.7685641095135733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3229081045244717, -7.0, -3.5233562066547925, -3.507271023804603, -3.9231403560252005, -3.6877964113812944, -7.0, -3.862429556106009, -7.0, -7.0, -3.6454345512591875, -7.0, -7.0, -3.381415942849977, -7.0, -3.8073320392911905, -7.0, -3.652536418593025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.205902356214027, -7.0, -7.0, -7.0, -7.0, -4.223988882570092, -7.0, -7.0, -7.0, -7.0, -7.0, -4.046612209068446, -7.0, -7.0, -7.0, -4.250172460601185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6379486218402337, -7.0, -7.0, -7.0, -7.0, -3.390581878550435, -7.0, -7.0, -7.0, -7.0, -7.0, -5.142796035713555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.007737112484662, -7.0, -7.0, -3.3470045791968865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.679321884323715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.427901379055738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.754432433893692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3863384163575105, -7.0, -7.0, -7.0, -7.0, -3.7907776013376937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1863063842699075, -4.7579120162872295, -7.0, -7.0, -7.0, -4.518803373065476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073021454359739, -7.0, -7.0, -7.0, -3.1705550585212086, -4.547430085818267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.451632947456991, -7.0, -7.0, -7.0, -7.0, -4.67488409438502, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.290591042549338, -7.0, -7.0, -4.5092255714044756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.090751689644903, -7.0, -3.79049627696711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3648697986669625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14587979647062, -5.01437350897037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.944803339433345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.539703238947825, -7.0, -4.71478226334653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.434338922543306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.129719531464096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8596905752051205, -7.0, -4.620270268605282, -3.1684974835230326, -7.0, -4.175337828792021, -7.0, -7.0, -7.0, -7.0, -3.5886078047426864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.599981268266425, -7.0, -7.0, -7.0, -7.0, -4.380934463330702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.924790831742455, -4.048325250931222, -7.0, -7.0, -4.786650287881236, -7.0, -7.0, -7.0, -4.338695489014784, -7.0, -7.0, -7.0, -7.0, -7.0, -4.681087397502494, -7.0, -4.204472703648964, -7.0, -4.098158983460533, -3.9008585047019917, -4.459136057687617, -3.8953120244757873, -7.0, -7.0, -4.674199554567703, -7.0, -7.0, -3.6947806360120614, -7.0, -7.0, -4.759426083090233, -7.0, -3.5490032620257876, -2.9699437035468206, -3.9646461264348587, -3.985345625806566, -7.0, -3.540610986582727, -7.0, -7.0, -7.0, -3.7786034050126207, -7.0, -7.0, -7.0, -5.011429461780782, -4.803692636045678, -7.0, -3.4233278085624455, -7.0, -3.5593942622111583, -7.0, -5.406103963836156, -7.0, -1.9519410519031546, -7.0, -7.0, -7.0, -7.0, -7.0, -3.623042434246382, -7.0, -4.900580126539175, -4.4933186082321015, -7.0, -3.7994390177641506, -3.3448473709418876, -7.0, -4.445263561049475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6190933306267428, -7.0, -7.0, -3.8730734429384888, -7.0, -7.0, -7.0, -7.0, -3.6515881136056807, -7.0, -7.0, -7.0, -7.0, -7.0, -2.366711037235561, -7.0, -7.0, -3.409087369447835, -7.0, -3.0991624929285946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.39702180876549, -4.012661503690474, -7.0, -3.5033820634737327, -7.0, -2.9084850188786495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.427864626379701, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.234178406311674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8986566322275165, -3.0870712059065353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.668553637533001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6305381471430116, -3.6989700043360187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.344588742578714, -7.0, -3.5571289415150695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2029266830692276, -3.4915017662373264, -3.692935002531138, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5776285553511253, -7.0, -7.0, -7.0, -7.0, -3.4727564493172123, -7.0, -7.0, -3.426998958756537, -7.0, -3.692670699156369, -7.0, -7.0, -7.0, -3.3099183595839303, -7.0, -4.9902677987531, -4.689344382781724, -4.991128570067966, -4.217782145093702, -4.51750819605495, -4.389073011288796, -4.089255832753279, -1.4218568548007218, -3.5054552343235024, -7.0, -7.0, -2.870245998917889, -2.930692472486093, -3.6137053129046692, -7.0, -7.0, -3.99084479280467, -4.990503127353854, -2.8708682408513573, -3.5740519479249517, -7.0, -3.317944006899941, -1.9694607920772684, -4.692481182743817, -4.292676867185116, -7.0, -3.8213126016291095, -4.040145039872181, -3.736577973773599, -2.385667809098233, -4.215324660030519, -4.689748260013518, -7.0, -4.213867353906041, -3.9179123059424894, -4.213181170119872, -2.910780532325959, -4.388314387117743, -4.396303983762163, -7.0, -2.145536311770067, -3.5929447015163736, -4.9922706704370094, -3.9977576042802543, -4.516896584853889, -3.2994517494807445, -7.0, -4.993471501713574, -3.7717517097073854, -3.5168437434754565, -4.217896108987832, -1.2089927449211242, -2.2063387404607777, -3.1896760533932764, -3.3616564967654905, -4.992102642595412, -4.089825660059739, -3.6023335107020023, -4.294157480769691, -3.9934362304976116, -4.0392554438064865, -7.0, -4.515600116635371, -3.171433900943008, -2.467588955990991, -4.087839071542424, -4.689584091501692, -3.308838714446678, -4.990343295403774, -3.052004367218563, -3.6846786877449325, -3.9907649470287008, -3.6382461055317314, -2.1651144697096663, -4.990725018635123, -3.0062651558823856, -7.0, -4.991483031090237, -2.538156595659039, -4.043117659208095, -4.146584248339436, -7.0, -2.2366355570771637, -3.369180504365074, -2.5037602347919004, -3.295670568078613, -3.352581534731333, -4.995828171486707, -2.0107652729108403, -3.459120968849541, -3.360210581728592, -4.689588529304547, -7.0, -4.221814004667988, -3.615814203848796, -3.743535894777588, -2.876868140105446, -4.514047206658893, -2.563351832831913, -4.993034818671166, -4.513190955417365, -3.9901789623582675, -1.9244209115260107, -3.990423218731616, -3.7682767279530007, -4.149759993749519, -2.8384078498875294, -1.6278041831150603, -4.515312959331332, -4.991465314908383, -3.391724416965437, -3.6935466881001595, -2.3746115195185786, -4.516231195157669, -7.0, -4.152720675940873, -3.38009058759723, -3.0377862259665536, -3.8793958675739386, -2.7140812719788183, -2.5188513286665026, -7.0, -3.4157910557423414, -4.691572118017887, -3.2272149385107447, -3.7387365280203073, -3.770011186958184, -3.036723311871272, -4.5136658731638, -4.214552455234245, -2.358757360512426, -3.6032483309255765, -7.0, -4.990378818698668, -3.194608034580432, -7.0, -7.0, -7.0, -4.6898059261126965, -4.689228920267321, -1.847972154164334, -3.613465481647862, -2.9163447519231225, -4.055055378965599, -4.515679603561216, -3.4523625686594706, -4.990436537856399, -4.991305836741952, -3.4143399064296043, -4.5592041671686045, -3.1533261255705463, -7.0, -4.292526313416355, -4.992897989215456, -2.3966798842050885, -7.0, -7.0, -4.2977692625370425, -3.95346534860555, -7.0, -3.489598174792466, -4.150616110038816, -4.300321518092267, -3.4800156583921136, -4.042181594515767, -3.1750601376136602, -3.427319398414071, -4.214030992451019, -1.941162923416565, -2.945526249464059, -7.0, -4.989996790919562, -4.038743761778693, -3.499992878560925, -4.292331401620799, -4.990427658485263, -2.702310954593247, -4.991607024131837, -3.2330259885856854, -4.990418778932582, -3.159304480085414, -1.2807873175934574, -3.6921327857403368, -3.0945520778220583, -3.106861947992472, -3.6330554819280527, -3.7198064999622655, -4.518351597460188, -4.093356010668287, -4.517178297006411, -3.849265817161557, -3.2905354315009356, -3.8158698359694636, -3.3004889195397658, -7.0, -3.071497433304764, -3.9555653103685438, -2.7367107503568193, -4.513940821687035, -3.1568957026324207, -7.0, -3.521517693337017, -4.39029024855987, -3.9954596866210643, -4.292570599354629, -4.9922087730059355, -3.0525079069210648, -3.956674753874899, -7.0, -3.493549535982762, -2.4397883590508522, -2.808156769243597, -7.0, -4.990236708081907, -4.5144592024546775, -4.689539710978861, -4.991044343044156, -4.292977818238843, -7.0, -3.8783317390376957, -2.5350333608143405, -3.25636548177581, -2.574239994047324, -2.48410899263124, -7.0, -4.5146274324113405, -4.51517151980495, -4.994193931082229, -7.0, -4.99084479280467, -4.298722113605708, -4.041493570137533, -4.694644678455609, -7.0, -7.0, -4.990853663651464, -4.088189264361116, -4.990125651797603, -7.0, -3.162937607956918, -2.3115310523352646, -7.0, -7.0, -7.0, -4.690231531192315, -3.84665074436028, -3.6121831971282083, -7.0, -3.9928405962889184, -4.310264115074859, -3.0562913790574244, -3.7839077810179074, -2.606179758384244, -4.394092538947562, -4.689561901807182, -7.0, -2.2651415915061928, -3.5347174140748496, -3.000950428851235, -4.089860973578503, -2.531428995267167, -3.879404687616423, -4.991345711774112, -4.14638499107598, -3.029221394253928, -2.9142077165291074, -2.8499391912595735, -3.197433250218922, -3.3842617011209635, -3.764672712576838, -4.390714372927393, -3.689610717638639, -2.7051492306402203, -2.2703679455185184, -3.012511088004144, -7.0, -4.213287488896829, -3.5631337570664607, -4.38925027615392, -3.9957141500530717, -4.689166735427055, -3.067775173091482, -2.5320820293338104, -3.5962275132351498, -4.699247863898858, -4.092224852134988, -1.9336346652537082, -2.6414450686151305, -7.0, -2.8102960066995175, -7.0, -4.038884975666385, -3.8009489378786143, -3.4778400968029173, -2.4258823583037517, -3.1208552310470163, -3.735808937174781, -3.741392368925786, -3.3898227579994757, -4.396338857049362, -2.220587807932981, -2.4769710404510628, -7.0, -7.0, -7.0, -3.2801060177153403, -3.102609480470218, -4.991823926808468, -3.951107812817263, -4.0964450691230585, -4.99139001307188, -3.6751408739135, -4.213654974143963, -2.8504547726388982, -4.390740866952916, -4.993903341793256, -2.2542267303652044, -4.691788524402698, -2.5711701247620056, -3.2996323109915098, -2.328167646552352, -4.515728171743949, -2.21534088621076, -2.562031018999178, -3.1442417228775326, -7.0, -4.6924944075030846, -4.991128570067966, -2.6265655766809153, -3.1000930325866447, -3.492349724648918, -3.8213431834400855, -4.3884165014521015, -7.0, -3.029959487494864, -3.2055770499167062, -4.515485276497102, -3.8167934863114397, -3.427426313039922, -4.088561311791215, -2.0795744506755742, -7.0, -7.0, -2.215667789921735, -2.9894331308265776, -3.4205782962332605, -4.5294859637721405, -3.0967435623888013, -2.372177459023404, -3.8744445411585167, -2.7827700631505725, -2.215112894636366, -3.437221902399778, -4.528428165537636, -3.5645366145556583, -2.9811038911421357, -2.54182344038921, -2.7919448265559264, -3.2676812852080124, -3.062178711611561, -2.3469101691945125, -3.8874886966978695, -3.225722698684167, -4.305643667345195, -2.4741497243612818, -2.7268285792599825, -2.807501866452052, -3.7192247131031593, -3.6593273360246177, -3.4643739521604857, -3.90554147191974, -4.998006362349715, -2.4211910728677872, -3.4680712409883463, -3.023471752494701, -3.246711655738116, -3.194853381628648, -4.394661772492929, -3.3575338601983535, -3.790011806634576, -2.942947645715167, -3.507265878790705, -3.0401092144357094, -2.9590944164932984, -2.7455680003520904, -0.6755530875172971, -2.3225283506064525, -3.3948316503650684, -3.0606245045746627, -3.998067439033124, -1.9576295382648627, -1.8392162318059182, -2.4234506815246184, -2.1137563442359215, -2.4052297140153964, -2.7009919975949694, -4.150190458013526, -2.3907490483465703, -3.363252530311502, -4.291821559582458, -3.7845375828635124, -2.804712615697911, -2.1701063358406323, -7.0, -7.0, -1.5807136932117263, -2.1257024521454118, -3.73596686511474, -3.17002349406913, -3.991682288353693, -2.1790050976603923, -3.7353172901274787, -2.2644821120797367, -2.2460919417551084, -2.3197189388741886, -3.7862055500107257, -1.6437905174070773, -2.5532584907282443, -2.366179004261212, -3.1856494511134392, -2.7895232336183433, -3.6538875580709775, -1.374014313167986, -2.82959643786932, -3.2142608667775416, -2.0983757093395856, -2.3203916456109437, -3.962575949894103, -1.7081361940220896, -4.51473364934416, -3.4998888933231624, -2.2806547667765416, -3.1593517822748245, -3.5757871627509847, -4.036060818784233, -7.0, -7.0, -4.709626072126764, -2.297940489369286, -3.1167693598151747, -2.4376922862503956, -4.513994017430478, -2.7048937314310724, -2.1023679011904353, -3.6977304979257712, -3.565489255361976, -4.21303937125096, -2.617649653602112, -4.990618524968529, -2.0522754028118952, -2.5741259734216677, -3.9132220320428264, -7.0, -2.520404604548894, -3.2894315519433857, -2.784202883354968, -3.5620107348170253, -4.992266249484483, -2.2294632784465835, -4.992407697648305, -4.038620161949702, -4.041883730497782, -2.9725921035590557, -7.0, -2.69966350973298, -4.689553025611917, -4.990995572563205, -3.1487202942127217, -1.5742934586537918, -2.6949928256605835, -7.0, -4.523226041965701, -2.6950498311524966, -4.215324660030519, -3.0708502534275732, -7.0, -3.0970639128944124, -2.3902359679939655, -4.990423218731616, -4.513914221371679, -3.852584546335328, -3.2787623922501217, -2.8091205530979613, -3.6302686502254105, -3.9957799353027403, -3.6136172198239294, -4.390497944533399, -3.2106254789227284, -3.125656086902075, -3.2531725590743164, -7.0, -2.973145124860241, -2.9260093638621822, -4.9971285274358905, -3.2331328437628977, -4.992186664642423, -4.690014347380175, -3.134863987908941, -3.5660007738899773, -1.7592731713118281, -2.7344736994187495, -3.774774503479862, -3.4039384266415245, -7.0, -3.6204358958338836, -4.390113407756115, -2.9715625841386353, -4.088601155118618, -3.4533183400470375, -2.2375759475971955, -4.149628133631338, -4.513039938178816, -2.3465434795560767, -2.3107716124156723, -3.4497054723137457, -4.396277826958957, -2.638403885379292, -5.000984731226351, -3.3779962559461034, -3.437834208405836, -2.4384715316007095, -3.2595512186026316, -3.693612645861557, -4.3920547074108764, -7.0, -4.990161192898479, -3.273319637963899, -4.222638447166434, -3.595138939338682, -4.155513883900176, -2.377777299026072, -2.840952300877853, -2.284342443665945, -2.352751603076248, -3.9666834625327567, -2.9952658503599583, -7.0, -3.47727476603862, -7.0, -3.01534692246958, -3.259726099140045, -3.4069147043332144, -7.0, -2.8487607596866726, -3.7895983373945126, -2.2901028574074784, -4.038734934385949, -7.0, -7.0, -4.990258915931302, -7.0, -7.0, -4.689978878482649, -3.584004375232658, -4.995683446859352, -4.218837358365702, -3.9919301253434987, -4.992473985619664, -3.6106823385082976, -3.6297994823657387, -4.147791120013851, -4.214004460658973, -2.9260719967632776, -3.313814511529729, -2.44224154929421, -3.053462604925455, -3.7524496752187972, -3.28464301844565, -7.0, -2.997995908477958, -3.649595923467478, -4.689011234360268, -2.4328708171745355, -3.474097008828839, -3.5453380480196923, -3.189451441189139, -3.958555196376776, -3.522048449634903, -3.9114461543905747, -3.844730063328676, -3.152428134995643, -4.513328601853055, -3.463496250272348, -3.2390534871210988, -4.69237977954167, -4.512871092039323, -3.8750443149836546, -5.1865071251858526, -5.487524400587733, -4.709395763745806, -4.341633748391168, -4.586239786338633, -4.057485779478209, -4.2090039452634525, -3.944042514505542, -1.8792359176358457, -3.383240433663356, -5.487524400587733, -5.186764277238947, -1.9471842971207132, -2.6543763807785092, -4.090746051250861, -5.187244263647723, -7.0, -4.341568763431911, -4.446178354569201, -2.2425211132791127, -3.816315886150352, -7.0, -3.328668590032598, -1.572719571751327, -4.534296926538465, -4.232654522990873, -5.010387598375084, -3.9456837798020445, -3.9446983557777644, -4.0108735476108945, -2.4276495217654266, -4.209757632436364, -4.584579967666666, -5.487709514323861, -4.257602351404392, -4.210934941717513, -4.885809137896048, -2.7352684767977125, -4.0403324467250155, -4.234805424012735, -4.186946452188543, -2.000189042149084, -4.089780807751493, -4.187079151712716, -3.0676033749641594, -4.643611982577783, -3.218386036788657, -5.186952099802866, -4.789565201370235, -3.4266220223396426, -3.520043796485627, -3.9210830062916417, -1.6347709985244734, -3.283555448089596, -2.7278653418997396, -3.0782651004780597, -4.3741319181946805, -4.126598625117727, -3.8472276214102914, -4.447026877167566, -4.4885352057062535, -4.488552126545175, -7.0, -4.257818283151665, -3.315602333060121, -2.5431083893749618, -5.010627815666308, -5.186604634819657, -3.2469415124832546, -4.788567116513815, -3.3208973293592754, -3.987705358606155, -4.487682670658282, -3.8373625351400262, -2.207049609429497, -5.487669954658609, -3.3893869036091617, -7.0, -4.885843030854342, -2.6173947603991423, -3.608791967362849, -4.789010679234133, -5.487484824056203, -3.012861117271863, -4.4091169986649135, -2.953775138981921, -3.173191873622384, -3.580778595978624, -4.4892762842812886, -1.165977904281495, -2.9430122187969388, -2.1432883960858957, -4.072594865284654, -4.788496443675952, -3.1890591740845484, -3.2903305242929637, -3.1167357534143045, -2.9460181511423937, -3.64252387306301, -2.622428887614762, -4.374429661918521, -5.487544187501127, -4.642406572758529, -2.737265698588125, -4.7886179938368425, -3.5979678700808284, -4.284845089938738, -3.0705723554074527, -2.0647399279260505, -4.5851108969871746, -4.53364074217209, -3.9701523850893725, -3.8655889804759167, -2.5301878237441495, -3.7981825766565604, -4.709339227683591, -4.091951002291903, -3.889672795651036, -3.0839852555724914, -4.23321757514249, -3.203772786441661, -1.8121470850110704, -5.187175121844392, -4.098595275921422, -5.187238619831478, -2.925675141252281, -3.9446025096115447, -3.4652383057772145, -3.330820864782268, -5.487695386285646, -4.488289779428209, -2.3012246728032446, -3.338413000249206, -7.0, -4.642444734165811, -2.9941168602919603, -7.0, -7.0, -5.186505711841796, -4.6425931077703, -4.788543089039288, -2.281367945106283, -3.3868666670825744, -2.285476692176725, -2.8776494642934214, -3.56902823202862, -3.2717254694902382, -5.186545283736885, -5.01072810239044, -3.9702552789348484, -3.88983032468367, -2.729010494963514, -7.0, -4.373949784702526, -4.534098059219949, -2.403069276989103, -4.64244614748687, -5.18643645234799, -3.7992744224867123, -3.7406756071737606, -4.533450051183524, -3.378092120780078, -4.285119700058644, -4.490402385350703, -4.167985074726467, -4.887447093306888, -3.61643128894415, -4.790323171935713, -4.312017888321016, -1.8695167124430236, -3.7889118350573208, -5.487530054083552, -7.0, -5.48841392039751, -5.186922449008297, -4.209060446571925, -5.186542457292524, -2.9844886573576357, -4.4465301066949845, -3.4336005087190618, -5.186539630829768, -2.546849252465312, -1.5609197077617303, -3.8162737456632567, -3.2782934176322724, -3.3129223784024946, -3.7485136257833434, -3.818003957176613, -3.703694399052745, -3.5207778508255867, -4.210012799175211, -4.1669232380950865, -2.89521267096554, -3.9828660012906787, -3.590094714052817, -7.0, -2.1175031458345996, -4.285530586698769, -3.0123253976287834, -5.487782972714756, -3.15253949843463, -5.487511679953053, -3.0742475617285216, -4.232876161954841, -4.25871473283981, -4.78895984789585, -7.0, -3.746319983424443, -4.25955593653417, -7.0, -3.359602222607438, -2.2193551859321543, -2.510130451735458, -7.0, -5.186481684289071, -4.311817411695856, -5.186590504345145, -7.0, -7.0, -5.487665715909312, -5.011071162077137, -2.8390371820264875, -3.3779713645, -2.9157804804891008, -1.4709056178981428, -5.186416661892306, -4.885933399147209, -3.944011460905156, -4.374800497685027, -5.1865099518601685, -7.0, -4.644797188035574, -4.057857616615388, -5.188222357172769, -7.0, -7.0, -7.0, -4.78888500204134, -5.487479169971561, -7.0, -4.887299338914315, -1.7681133133424474, -5.487490478067235, -4.709383043773476, -7.0, -7.0, -3.99691538735805, -4.056830063846329, -7.0, -4.4883448008271, -3.79455496328573, -3.440007581697311, -2.9191504502067827, -2.975320719769701, -3.921111158696558, -5.487630391389559, -4.7093194383229315, -2.2402649767471305, -3.3754877506331518, -2.0575039051303508, -5.011272918351647, -2.310144621207025, -4.108264735866179, -4.709702343683791, -4.788947139131619, -3.5865392788050334, -2.3304081594443957, -2.7242179266966917, -3.1356263628227774, -3.005757876815866, -3.178917728971351, -3.630799234060891, -4.788715492049406, -4.312793510081284, -3.4694573219276164, -4.1288935255919, -7.0, -3.875014653677954, -5.0118212780525235, -7.0, -4.074246624930057, -5.010377704226107, -3.181912549378863, -2.9426573673260323, -3.825952190910465, -3.959166300694504, -4.127366817859523, -1.3564708036543416, -2.8849628456125957, -5.186723312657822, -2.9927016507951634, -4.788677343181599, -4.209654677443103, -4.2370114348310794, -3.8983890103941574, -2.8106243908861606, -3.363917733183663, -4.032978416988432, -4.790636961931703, -4.093593967828657, -3.65109673914952, -1.2835321333668661, -2.603575145913418, -5.186485924542031, -7.0, -7.0, -3.4189958185764824, -3.0325208298782202, -4.709854846624769, -5.488264382585144, -4.189431355695534, -5.4878818393933395, -3.8176230297552216, -4.2838663484734685, -3.133441284331229, -4.789359278340753, -4.312553920321048, -2.6500663146368284, -3.695776736052128, -2.4047181728190323, -2.661496740207439, -2.031696637319982, -4.710187907543857, -2.555146071986981, -2.4750868264637527, -3.5127121834169777, -7.0, -4.342401529601869, -7.0, -2.999503780341293, -3.620145775285036, -3.7951678857272726, -4.042623321013089, -5.487599303435275, -5.487424038788304, -3.0024024745333016, -5.1868645535267195, -5.0111487717367345, -4.78941711590118, -3.9132043533616425, -5.010858016949204, -2.2477567527751328, -7.0, -5.186501471782027, -2.5587501988018895, -2.5593139772691327, -3.4049499154557576, -3.2135149609500795, -2.717038465918362, -1.9042635560595857, -2.486439517190511, -1.9465606832645925, -1.8801630543812344, -2.5991895013035666, -3.5144652617283954, -2.900617546897137, -2.579879636568188, -2.4785406722075933, -2.140935356902671, -3.3789970083563663, -2.2217850180702277, -1.9390632418639553, -3.533095238874848, -3.0926953967432183, -4.261658837583175, -2.3904087313468914, -2.5604380346856566, -1.9501801689771088, -2.7540402045573704, -3.3634742633268195, -2.8036537624626874, -2.7717931351637475, -4.2346817578497795, -1.3959028996833276, -3.2414788062846314, -2.4769029428357405, -2.8414298821170925, -2.8934458584929437, -3.5917505350796386, -3.0846717677458857, -3.178770868485576, -2.3340211016163104, -2.871348574274271, -1.947122643788279, -4.209739299771616, -2.3649605963793237, -1.8731804991743521, -2.8364446201316853, -2.03835220370558, -2.20705239464774, -2.872937535397121, -0.5227568413154664, -2.9772139868108893, -3.6986953313061885, -2.7519311783407066, -1.7730029976670396, -2.112371098999698, -4.644030411318001, -1.4136036413282196, -2.310948723918212, -5.010575544390487, -2.464456302618722, -2.7804346952659618, -3.7942830503276914, -5.011429461780782, -1.5807136932117263, -7.0, -1.8050116406177041, -4.709716466576368, -3.6806297324576893, -4.44657952693536, -1.9256485743396834, -3.6755672791395586, -2.0140910909448078, -2.76396563495061, -3.422942178067513, -5.0104582643132565, -2.845048881845784, -2.060945385706451, -2.092560220395226, -3.035348556674808, -1.834346849885255, -2.1046905386248174, -1.8472781055600258, -1.4842765317911912, -4.44695352638232, -1.4722734507089599, -2.0008942662102447, -2.3485222969110127, -1.863450981279705, -5.187002925027144, -2.8816355753447067, -2.168510155883977, -2.887522641700816, -4.311621080820672, -5.01043141261124, -7.0, -5.487669954658609, -3.694606591570367, -1.9742279440562436, -3.4141978319393456, -2.167444459932046, -4.788818618509576, -3.6969957883137, -2.525808134205592, -3.2321140257972862, -4.448283200109149, -4.408620089323603, -3.090878144270523, -4.709470662693623, -2.2572806664127243, -2.9004987767588752, -4.126446234651181, -3.6701628893926337, -2.3743272623116396, -3.9983732561577563, -3.053258692438889, -4.4885634067382085, -4.6430463929643135, -3.076238707188634, -4.7892252348732285, -4.011171346488324, -4.410207639094926, -3.221550244716166, -7.0, -2.943890048248473, -5.487627565303852, -5.186723312657822, -2.744795466104949, -1.5372684228232258, -1.8605113744781039, -5.487491891558491, -3.8778669740330005, -2.888225045301837, -4.041327818151258, -3.332204135799646, -7.0, -3.3918972562576584, -2.4031340054832113, -7.0, -4.709609121072649, -3.7192512084878806, -3.3333683469708335, -2.8352909915364135, -4.232816881084013, -3.9210083935915856, -3.4884463604842493, -4.20945857234593, -3.5447837581666044, -2.460737593625028, -3.1133664244900174, -5.487597890293567, -3.0051847197848223, -3.1604685311190375, -4.091711967160965, -2.3781140519032173, -4.64302098761995, -5.01064759234639, -3.2618698203144056, -3.808495118821508, -1.5535269280041977, -3.1173583818192303, -3.2390337015827275, -3.6965804265510367, -4.710063745199173, -3.451107081704346, -4.886071739164197, -3.285214082720241, -4.4465767030731165, -3.352794959068467, -2.739829921144155, -4.011762105452167, -7.0, -2.803128777106358, -1.7694320620004897, -3.700131238924358, -3.8367811013221695, -2.693933677387551, -3.7199489403687105, -3.4730209701593884, -4.073814191846539, -2.7042644827295077, -2.602411941428692, -4.146493084391314, -3.9088728605363263, -5.010475222427599, -5.487490478067235, -3.1318786178175038, -3.6914000796900464, -3.519746158174064, -3.232676070228884, -2.2477567146336086, -3.3925900368430986, -2.841967182770774, -2.621868384681515, -3.6122762328527447, -3.0397543442571333, -4.090166315732656, -3.7183637376108463, -5.010367809851715, -3.1213292991298016, -3.340689835489153, -3.250150837583095, -5.186497231680861, -3.451661114468938, -4.057230661599434, -2.4180374701498426, -4.257917039669347, -3.9693933187382284, -5.487537120849834, -5.487521573812226, -4.88561844070513, -4.885540725244422, -4.487737769021568, -2.784202841695126, -3.807881581230128, -4.285526367236513, -4.709914138864821, -4.409015404360969, -3.86442349007059, -3.797656101724403, -4.6432622784087, -4.585030452089273, -3.2019697799138243, -3.6024813908768083, -2.9249826236060295, -3.4415853127846754, -4.15072156097165, -3.908397530346767, -4.885461582484264, -3.6164068895888386, -3.7978100169799, -7.0, -2.807813258486935, -4.056924604372458, -3.8349742581415307, -3.2684083975867497, -3.6453647152002744, -3.8468851178579158, -4.311539132333878, -4.186665390621664, -3.7495269157653, -4.373610728312931, -3.47587783963758, -3.544442954987437, -4.789548279872023, -5.010315507270583, -4.928262675512426, -7.0, -7.0, -7.0, -5.7063362205981605, -7.0, -5.707016310494369, -5.405310494817033, -7.0, -1.8493349356858948, -4.1660840290700145, -7.0, -7.0, -3.5514566369878167, -3.4291582429146765, -5.405882279740203, -7.0, -7.0, -7.0, -7.0, -3.3852503234021976, -4.297326083558631, -7.0, -4.864639045160562, -1.9535562765024543, -7.0, -7.0, -7.0, -5.707576136961682, -5.70697964523269, -5.007527588642865, -2.622502345281835, -5.405766276814029, -5.706270459100365, -7.0, -5.706516373170063, -5.105445461553958, -7.0, -5.407369656667116, -5.405164440985005, -4.707729388220862, -7.0, -2.044118073016288, -5.40529853903925, -7.0, -4.929476827785161, -7.0, -4.028207663558861, -7.0, -7.0, -3.695508028511194, -7.0, -5.230172076871155, -2.469803455512416, -3.8329846728331125, -4.482131758974784, -3.91859170736518, -5.706524055741483, -5.405661335712202, -4.7081386445035935, -5.22960420662649, -4.592833298965716, -4.592843536226989, -7.0, -5.706646958404988, -4.8638401357766385, -2.937301172731602, -5.706309746387422, -5.2291141844551285, -4.593988585146381, -5.706185039691581, -4.348632429022909, -5.232328494095948, -5.1042164465018764, -4.929932111748548, -2.398676368633677, -5.405226797459939, -4.428950249146652, -7.0, -5.104339419249784, -3.996095565863999, -4.8624491434142385, -7.0, -7.0, -3.8272255388870633, -4.530542045215246, -3.9524839979613797, -5.106716018172097, -4.628158948559419, -3.991155335155191, -2.4000807260175354, -4.453442357929439, -4.112531272447809, -5.706239710048615, -7.0, -4.594097480135254, -5.105258050483448, -4.6286553858870985, -5.7090663377095066, -5.706347322206261, -3.672201070733908, -5.10463901952532, -7.0, -5.706168808104415, -3.7050004010621724, -7.0, -5.008860670309308, -5.008090641409871, -4.478958431351312, -3.0365430003709086, -5.706591485814721, -7.0, -4.928755907897674, -5.104969961264324, -3.608579923054669, -5.706768973168231, -7.0, -5.707643403895459, -5.231660699116671, -4.864342382017525, -7.0, -3.3999523032960326, -2.6399487127568735, -4.80348186836277, -3.7292483387796818, -5.7066222099709005, -2.825397392497991, -4.928761877868489, -3.983812595814348, -3.87661767349757, -5.706273875527286, -5.104583553583756, -3.7585836296443214, -4.708318051103554, -5.706114983237485, -7.0, -2.9624332428694204, -7.0, -7.0, -5.229054387811185, -5.706281562389593, -7.0, -3.8886622314961086, -4.312377102890958, -3.574584146421634, -3.812150663318405, -5.104597207395862, -3.0670446953285406, -7.0, -5.229245708098079, -5.10491283211916, -3.3170641442873174, -4.206290264448695, -7.0, -5.104348811569977, -7.0, -2.9179709844755197, -7.0, -7.0, -4.116300295134973, -4.928914510676959, -7.0, -5.105023672859679, -5.008256858305089, -5.7079276831885455, -5.230701760433507, -7.0, -3.748257144463063, -7.0, -5.405516253409338, -2.2888070603124966, -4.7064549077057105, -7.0, -7.0, -7.0, -5.405399298863896, -5.104311241070395, -7.0, -3.949376545158274, -5.405396737463029, -3.471096313722673, -7.0, -3.7463253048559455, -2.2880182983636352, -4.627561279277749, -4.387594889675789, -4.709059548622802, -5.707080254125105, -7.0, -4.707164645304338, -5.230253018905105, -5.405920656239976, -7.0, -4.595470784074642, -5.706520641282075, -4.329484322820614, -7.0, -3.5796062459057905, -7.0, -3.6595514860340135, -5.007349990324425, -4.159471942771147, -7.0, -4.7106478453622085, -5.706576976429825, -7.0, -7.0, -7.0, -4.710482932879111, -5.406667044016165, -7.0, -4.66644820193318, -3.2057463603963625, -3.8196249153075152, -7.0, -7.0, -5.70642673312701, -7.0, -7.0, -5.7065010076195035, -7.0, -7.0, -3.6594500427691656, -5.40801682313519, -3.4336048426676036, -1.8900756630525175, -7.0, -7.0, -7.0, -5.405896777927573, -7.0, -7.0, -7.0, -4.628041355416391, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.7072856626157895, -2.758036819412388, -7.0, -7.0, -7.0, -5.405331843601616, -7.0, -5.4055879471929815, -7.0, -5.104616833998747, -3.903603711265901, -4.862280493299705, -4.40987397414063, -3.92592130988984, -5.406282081740148, -7.0, -7.0, -3.5080022347321136, -5.1054786759881114, -3.2594046528982172, -5.706699864120133, -2.554358006985142, -4.592821355189226, -5.104312948890889, -5.706414779723215, -4.413043974836716, -4.166343830003034, -4.090214370967739, -4.431429792218557, -2.301314657665541, -5.105070558504534, -5.706658905420156, -7.0, -5.104952055922925, -4.429453073733615, -7.0, -7.0, -7.0, -5.405999956928305, -7.0, -7.0, -7.0, -4.666244758796689, -3.773319780326815, -4.665554555638625, -4.863007435910946, -7.0, -2.0031671015981236, -4.809317250044303, -7.0, -3.1638994222456214, -5.405219964310453, -7.0, -5.7090824613650915, -4.862294124024368, -3.495683908270132, -4.478038265223136, -4.807879046479349, -5.707437312758631, -5.231514614715537, -5.230626860502488, -1.5451646690906655, -3.757693723849235, -7.0, -7.0, -7.0, -3.884439426078936, -4.190747538701007, -7.0, -7.0, -5.707980433125192, -5.706386602541032, -5.230453179146441, -5.405443694078799, -5.710042859862826, -7.0, -7.0, -3.5819980288675377, -5.4056323231287156, -2.6535150368844436, -4.182035386194043, -1.7075942074338524, -4.560521482829096, -3.5935633748495976, -2.034410206973508, -4.5647049444621635, -7.0, -7.0, -7.0, -4.152356303773212, -4.2795478109928755, -5.409231263856362, -5.406550399007429, -7.0, -7.0, -4.4774353659300345, -7.0, -5.706624770219138, -7.0, -4.630343957562579, -7.0, -3.3758142265027953, -7.0, -7.0, -2.5471072512154564, -2.3555301048129142, -2.398040618620613, -3.909919232626045, -2.589937898460937, -2.9307066729331126, -3.6512982446363424, -2.49380146683446, -2.878640402307038, -3.21222038264635, -4.118026340232679, -2.8789144981790824, -2.7761143546073774, -2.4619957270926496, -3.080398694355803, -1.6504598920741185, -2.381293414023723, -2.3268690046942035, -3.614293609984749, -3.278483007613615, -3.6673960621056523, -0.665172524147913, -2.8904979072499057, -2.660914577702647, -3.4195335419309956, -2.6465529378608714, -3.06561587658654, -2.97269969669112, -3.9082236656987925, -2.684629432936173, -2.724172386274545, -2.374764904123681, -2.8523820261304644, -2.8227317862798773, -4.139161474170334, -2.989210536493393, -3.2934291915274496, -3.0067079239265064, -2.5692679331476356, -3.0964269752170814, -5.2296622214205515, -2.0150952003982225, -2.079139523035249, -3.948777928708192, -4.046795346217831, -3.0001274730417, -5.230572379710766, -2.25148193134294, -3.827484243811539, -4.863322860120456, -3.036016731476465, -2.2444650393016303, -3.082405952527268, -3.868185977531273, -2.8994611250867406, -4.264204556194133, -7.0, -3.706572455351785, -2.775640783247661, -4.2625214322808995, -4.803692636045678, -2.1257024521454118, -1.8050116406177041, -7.0, -7.0, -4.864818639765679, -5.1043932088795545, -2.654326066576254, -3.3945633363947443, -2.213856436325215, -3.3770429432419937, -3.3408720500410354, -5.706207250354149, -3.2851588190256975, -2.919740203125908, -2.4974588609355894, -3.993102029263803, -3.8003410391868053, -3.940249653918925, -2.515095200120832, -3.3845665101372733, -7.0, -2.5178660540770967, -2.711872821428245, -4.453555302306861, -1.5072522144271299, -5.4054479626103085, -4.532988656508851, -3.0718843869084713, -3.782677688081816, -4.803206094655253, -7.0, -7.0, -7.0, -3.102029487303426, -3.5597505795177193, -4.707699593599912, -3.9123549292524067, -7.0, -5.406369835469268, -3.2212435936124524, -5.008872584806385, -7.0, -5.706356715653006, -3.9042352843723984, -7.0, -3.001880164887663, -4.204074175744145, -5.40556917139356, -5.707601682593951, -3.523683948711941, -4.345793798572643, -4.24725943193383, -4.364355676677317, -4.592591800242331, -4.330615822099622, -7.0, -7.0, -7.0, -4.366169013886152, -7.0, -3.9661937108212517, -5.007256038768518, -5.70631060041941, -2.6146262332789756, -2.5021355057145747, -2.274319023392659, -7.0, -4.753874873446505, -4.168980419083789, -5.2296733116017595, -4.7539990265859995, -7.0, -4.476681628454222, -3.4086543665017204, -5.70620041642511, -7.0, -4.8047279217580705, -4.47665008775944, -4.630660046928468, -5.0075642946226235, -4.6658418474962895, -4.665487180782811, -5.706617089429145, -4.804270655346634, -4.195406484730991, -3.0827604445276005, -7.0, -4.1901677985567725, -4.217152684288512, -3.205900770092607, -3.9616092434165946, -4.928380487793358, -5.405289998996462, -4.207251363794358, -4.428804653172165, -2.473979288039574, -4.365773790016144, -4.430330557604345, -5.406118454624989, -5.104531494486759, -3.6623555521273166, -7.0, -3.728379994487447, -7.0, -4.327356379705393, -3.918668585682132, -4.861933617810139, -7.0, -3.8913989046384003, -3.4549798528548243, -4.9311424604222625, -7.0, -3.959196881074919, -4.594288830951021, -4.8072981986022025, -5.008000260913889, -3.750948369230112, -4.709664209579645, -4.861939586069795, -5.229793579223345, -7.0, -5.405118308515801, -3.224719055787612, -4.203020131467844, -4.928593834480787, -4.708174361678332, -3.396978293242532, -4.666167272125798, -3.8605426258743467, -2.972770585594578, -4.755414072917662, -4.407086536735488, -7.0, -4.804190562898591, -7.0, -4.479043219385034, -4.806612356691847, -3.745956036332752, -7.0, -5.008323327254799, -5.706861954410581, -3.422986516221185, -5.405674988022053, -7.0, -5.007201366690912, -7.0, -7.0, -5.405190068017276, -5.229190199730057, -4.368698411516462, -7.0, -5.707479901588531, -5.706506129530095, -5.706595753188616, -5.229205571988446, -5.104385525054603, -7.0, -5.104477721982713, -4.452557318494008, -4.34541038552945, -3.6789959046615417, -3.970235265877339, -3.745669552326026, -4.706615382568476, -7.0, -4.293668467719096, -4.752287521541528, -7.0, -2.9638136486207034, -5.007699994446809, -4.9284863208502925, -4.140369580790315, -4.0547789790079305, -4.260742423565542, -5.706258501394493, -4.928146539379594, -4.365235196874075, -5.706208958819606, -3.8834224248181477, -4.665756617515032, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9103308634911365, -7.0, -7.0, -7.0, -2.745855195173729, -7.0, -4.037187370937113, -7.0, -7.0, -7.0, -4.027735087817683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.263671568048523, -7.0, -7.0, -7.0, -2.910624404889201, -3.296665190261531, -7.0, -7.0, -7.0, -3.3531465462139796, -7.0, -4.2381653294663355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.063183187967576, -7.0, -3.9030899869919438, -7.0, -7.0, -7.0, -3.4371160930480786, -3.0265332645232967, -7.0, -3.062581984228163, -7.0, -7.0, -7.0, -3.8481737162047907, -7.0, -7.0, -7.0, -7.0, -3.730862992046494, -7.0, -7.0, -7.0, -5.125344612231581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4898179083014504, -7.0, -3.255754786643044, -7.0, -4.327218404614085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.972341716325748, -7.0, -7.0, -7.0, -3.3265406685165617, -3.6786094165589263, -7.0, -7.0, -7.0, -7.0, -4.384460943824492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7542718686834595, -7.0, -7.0, -2.9722028383790646, -4.692802870950005, -7.0, -3.4413808849165113, -7.0, -7.0, -7.0, -3.599992177584098, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7269715836828765, -3.24960595430691, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3471998701311088, -7.0, -7.0, -7.0, -3.587062093703546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3712526291249394, -2.140604724802137, -3.176438555741045, -2.5219222448835006, -7.0, -3.632575382630548, -7.0, -7.0, -7.0, -2.3142886609474975, -7.0, -7.0, -7.0, -3.31921019418185, -7.0, -7.0, -7.0, -7.0, -3.672005445022952, -7.0, -7.0, -3.5820633629117085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6625689669332604, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1699681739968923, -7.0, -3.7554937284151193, -7.0, -2.7267272090265724, -7.0, -7.0, -3.4391747398434687, -3.342620042553348, -7.0, -7.0, -7.0, -3.373892352104008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.910090545594068, -7.0, -7.0, -5.712948386763919, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9122220565324155, -2.2405492482826, -2.553883026643874, -7.0, -7.0, -7.0, -7.0, -2.4538277764478607, -4.942439651291005, -7.0, -7.0, -7.0, -7.0, -2.6989700043360187, -7.0, -7.0, -7.0, -3.679609571779756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0135113334659, -7.0, -7.0, -7.0, -4.710760288222427, -7.0, -7.0, -7.0, -3.9904720535256195, -7.0, -7.0, -3.712986233594383, -7.0, -7.0, -7.0, -7.0, -3.146438135285775, -3.15106325335375, -2.945796726048, -7.0, -7.0, -3.151676230847048, -7.0, -7.0, -7.0, -7.0, -3.32433390894172, -7.0, -7.0, -7.0, -4.432809005033168, -7.0, -7.0, -3.682911863319907, -7.0, -7.0, -7.0, -3.2678754193188975, -3.9539528832319233, -7.0, -7.0, -7.0, -3.519434194913703, -7.0, -5.527355319356032, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.856813445749757, -7.0, -4.9721877906016765, -7.0, -7.0, -4.240307906524845, -3.2950537061049516, -7.0, -3.0595634179012676, -7.0, -3.0538464268522527, -3.4799350339443356, -7.0, -7.0, -7.0, -7.0, -7.0, -2.525692524505011, -7.0, -2.3096301674258988, -3.163260789989906, -7.0, -3.3561351686666177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.579011466494655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.922315356850907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2037320465140935, -7.0, -3.9518640925869866, -3.4055740076619347, -7.0, -4.327542831932522, -7.0, -4.536361450403717, -2.4558744716935386, -2.336173731545205, -4.139438274158168, -3.8831880896223963, -3.9018305180672983, -7.0, -7.0, -7.0, -2.425697213362591, -3.7901443650429005, -4.0709793567886825, -3.360309344342059, -7.0, -3.73596686511474, -4.709716466576368, -7.0, -7.0, -1.6220255270944546, -2.0205980199018136, -4.110113312295695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431444181617213, -4.481342284852483, -7.0, -3.7354924419253943, -3.801403710017355, -3.9436318943534263, -4.486600479306201, -2.7028611705729295, -4.341246520447747, -4.256712936488155, -7.0, -3.7791068199807696, -7.0, -3.5859117103194342, -4.607444299761739, -4.294267772179458, -7.0, -2.6364878963533656, -7.0, -7.0, -7.0, -4.167154813209906, -2.6458151182966416, -7.0, -7.0, -7.0, -3.8641549560020256, -7.0, -7.0, -7.0, -3.742568034366142, -7.0, -3.796740803977907, -3.307067950661298, -7.0, -7.0, -7.0, -7.0, -2.7034824447657835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.216297886630392, -7.0, -7.0, -7.0, -7.0, -7.0, -4.793315333574228, -7.0, -7.0, -7.0, -3.1554372598130094, -7.0, -7.0, -7.0, -7.0, -4.249418507235988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2595938788859486, -7.0, -7.0, -7.0, -3.2328691051326137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3163897510731957, -3.9321653404475576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3207692283386865, -3.7984434603501875, -7.0, -7.0, -3.488127496247458, -7.0, -3.6115108871266566, -7.0, -3.8271322421466074, -3.4551495211798278, -3.7311050512159203, -7.0, -3.7289621797138666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.159507037477322, -3.6424892515699323, -7.0, -7.0, -7.0, -3.236537261488694, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.695026128922327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.70372115992702, -7.0, -3.378216149749878, -2.898999270889789, -3.2606164705566645, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5943372931093807, -2.6989700043360187, -2.5060538173181506, -3.217088951479172, -7.0, -7.0, -7.0, -7.0, -3.34143452457814, -7.0, -7.0, -2.416640507338281, -7.0, -7.0, -3.6872613462435067, -3.183649388808035, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6787914343662442, -7.0, -4.101744430958274, -3.969509098596567, -7.0, -7.0, -3.996314618870713, -3.465000231841943, -2.889781762778371, -3.4067955726682504, -7.0, -3.3727279408855955, -7.0, -3.81202716049957, -2.4171578765916593, -3.6546577546495245, -2.9424049408561066, -2.667967660341314, -2.5464604029452773, -3.0868045767268297, -3.659440781870318, -2.5125158799574394, -2.3961993470957363, -2.1851347241927237, -2.9393453429619147, -2.769295252092732, -7.0, -7.0, -2.548564890653246, -2.404904953310314, -2.7275412570285567, -7.0, -7.0, -2.2845332706132413, -7.0, -2.4521453857623565, -2.7218106152125467, -2.796747738875302, -3.7987196851850062, -7.0, -3.3279716236230104, -2.165792706193744, -3.422753941301348, -3.8649854606597938, -2.4796872561691394, -3.4690852991231202, -2.8758957414137782, -7.0, -2.804999776617182, -2.8099382947684113, -7.0, -3.714664992862537, -3.361413015792206, -3.718169405391307, -7.0, -3.2483002953545963, -7.0, -3.7101173651118162, -3.291590825658001, -3.7318304202881625, -7.0, -7.0, -2.9777236052888476, -7.0, -3.0247592390353963, -2.298281123103342, -3.6722826247889206, -3.83416628394262, -3.99247461688504, -7.0, -3.1070742314120694, -7.0, -7.0, -2.986734422140967, -7.0, -3.6904618932461783, -7.0, -3.5385737338068557, -7.0, -2.3380941285590486, -7.0, -3.076057595762826, -7.0, -3.3428372865598073, -3.278010092736105, -4.164442085209516, -7.0, -7.0, -7.0, -7.0, -3.5149460053080044, -7.0, -7.0, -3.659226673770496, -7.0, -7.0, -7.0, -3.177055287158298, -7.0, -2.8135142715418833, -2.9710437918360286, -3.020827236121162, -2.4809437977431954, -3.102004688080605, -3.0824263008607717, -3.258557471186242, -7.0, -2.2814971589213475, -2.875970261782902, -3.658774320844357, -2.9533454203359306, -2.73559889969818, -3.925621454790829, -3.7234556720351857, -2.977815026083187, -3.638681758636586, -7.0, -3.566555330883055, -2.9286518466536946, -3.0715561430703127, -3.1340176456759834, -3.0617037342182414, -3.912647106218317, -3.3702354372831773, -3.710286647702891, -2.5402750553331366, -3.550717423469283, -7.0, -7.0, -4.4388744689064445, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4719661042730605, -2.4303975913869666, -3.9638114296651668, -7.0, -3.711638538232349, -7.0, -3.18620267890855, -3.3805730030668872, -2.9628426812012423, -7.0, -2.4190284146106347, -7.0, -7.0, -3.2356967454881875, -2.2412601798924205, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1622656142980214, -2.225640576640016, -2.488953400332635, -2.062102487957556, -2.1867303757923113, -2.8105312074717155, -3.7001843296221977, -2.427256070563432, -3.3910233693700995, -2.275886960301226, -7.0, -2.1539841469356036, -2.8419848045901137, -7.0, -7.0, -2.664119421670553, -7.0, -3.8884790331883443, -7.0, -3.6715430852625737, -2.573729292503959, -7.0, -3.346792914871751, -3.4248272103534214, -3.273695587930092, -2.8112397727532894, -3.4588643783615183, -3.299797748122384, -3.4382258076045296, -2.6795036038348163, -2.8822139578592343, -7.0, -3.4652340949880145, -7.0, -4.11634203918834, -7.0, -4.4169399175410415, -2.418761495327949, -2.8051200889239234, -7.0, -2.7883451651521183, -7.0, -2.981969534880924, -3.209783014848515, -7.0, -2.281714970027296, -2.546131204914049, -7.0, -3.213849659558812, -3.5836844714826976, -2.904522345185676, -7.0, -7.0, -7.0, -7.0, -3.67641923171836, -7.0, -3.669502834104343, -3.0035466931021317, -2.858076971052982, -2.294135419126248, -7.0, -4.813334084359419, -7.0, -2.7354214555764456, -3.2243603809012646, -7.0, -3.66133934000604, -7.0, -2.649056554004186, -3.76544501809015, -1.1925336639891464, -3.3532428314337293, -3.177728835841732, -3.194976603216055, -2.40049254446103, -3.1795517911651876, -2.3659557226656793, -2.3856807347184095, -3.1986381299941233, -3.356599435724971, -3.3604987444680012, -7.0, -7.0, -2.2310446031358775, -2.6263403673750423, -3.65628990119136, -2.8674674878590514, -3.1729433064580195, -2.9992755720056676, -7.0, -3.0734332064655683, -7.0, -7.0, -7.0, -2.7802119008576183, -7.0, -4.106428894793411, -1.8714699123021497, -2.987846517260498, -7.0, -7.0, -7.0, -2.174956836603337, -7.0, -3.2771506139637965, -2.5873835309602837, -4.0429297333431595, -3.7561033715851053, -7.0, -3.1940515879954208, -2.56710482239302, -2.697167047058269, -2.1844978518164426, -7.0, -3.6853834098014873, -2.6308970444785422, -3.204933522354145, -2.3140177818135124, -7.0, -3.498999363580153, -1.9449054803762327, -3.7405205860536648, -2.931966114728173, -2.853926247739357, -3.667649041607016, -3.231433179239555, -7.0, -3.767842028696057, -3.669037800885156, -7.0, -2.1329879829101857, -3.079759919660093, -3.164385905857274, -2.909496597905892, -1.9593016307081295, -2.050460012950964, -2.5284492142455366, -3.3305490465108214, -3.944474339974218, -2.759894374025499, -7.0, -7.0, -7.0, -3.9918460536448968, -2.9164013036038754, -3.6922298357727557, -2.558879923655098, -2.7451398788031467, -7.0, -3.4927603890268375, -7.0, -3.6591076791998134, -3.711807229041191, -3.0322963447394726, -3.9181352261663593, -7.0, -3.7671729976765063, -7.0, -4.026349663465754, -7.0, -2.580164389698552, -2.8729676179461134, -1.9031341203675114, -7.0, -3.725094521081469, -7.0, -2.6214647920373584, -2.4258258487434703, -2.296058079214253, -3.015429616984512, -3.6651117370750512, -7.0, -3.1209685650193766, -2.641293793091543, -2.0991624929285946, -3.0156112045035126, -1.6474042335228791, -2.385606273598312, -2.162728409930911, -7.0, -3.660770643527697, -7.0, -4.801129187579704, -7.0, -7.0, -4.745987724433172, -3.965687638126618, -7.0, -4.333134792524816, -4.125047296659335, -7.0, -7.0, -7.0, -4.450664723252152, -4.112194305291189, -3.847500682027998, -7.0, -7.0, -3.9890936926103255, -7.0, -7.0, -7.0, -5.395211031930954, -4.359987174441292, -4.581517309425811, -7.0, -7.0, -4.394714279533342, -7.0, -7.0, -4.803306862008678, -7.0, -3.868022733383526, -4.400814192267559, -3.99334803992326, -7.0, -4.2100776242952875, -4.066102196766773, -4.2103987886522445, -7.0, -4.354367785390444, -2.5171958979499744, -4.104717513058913, -3.4680878435600424, -3.372617466178957, -7.0, -3.803047210491129, -3.8035936647713444, -3.4530494125334665, -2.22543536518789, -2.60151678365001, -3.501319486926531, -2.4682698165014303, -2.348818836031915, -7.0, -3.2422514706002343, -4.031004281363537, -3.671913012441587, -4.014142361545006, -7.0, -7.0, -3.4233278085624455, -3.17002349406913, -3.6806297324576893, -4.864818639765679, -1.6220255270944546, -7.0, -1.9409690164749218, -3.1547189913487803, -7.0, -5.111307890355802, -3.5061260432424652, -4.314183339137378, -7.0, -3.797406049676382, -3.5904238285747008, -3.8568966428983535, -3.909609510490169, -3.1347082247787115, -4.020899672862536, -3.664798619194218, -4.240836187180583, -2.5353785228186467, -2.921038214613296, -3.696374784805933, -7.0, -3.5844232261646978, -7.0, -2.7564730949882934, -4.0478198278165936, -7.0, -7.0, -3.361160995195026, -3.353820094897413, -7.0, -7.0, -3.6224730712781232, -2.323939275128193, -3.2869277849592553, -7.0, -7.0, -3.5134673141995356, -7.0, -2.6085260335771943, -3.680335513414563, -3.986368593570273, -7.0, -2.60784062997041, -3.4375920322539613, -7.0, -7.0, -4.242740144605627, -3.1899112096928057, -2.381014746995207, -7.0, -7.0, -3.7031193462360776, -7.0, -3.7138264243805246, -3.294613170667107, -2.167789779159089, -7.0, -3.680667831562386, -7.0, -7.0, -4.037296987157902, -3.5521238242332, -4.117019265436686, -7.0, -7.0, -2.0220226780388404, -3.4236553925733784, -2.5888317255942073, -7.0, -2.642312296447397, -2.8926510338773004, -7.0, -7.0, -2.8129133566428557, -3.1527468640264606, -3.9498289589353135, -7.0, -7.0, -3.1316988442592404, -2.8610220696884467, -3.174277918292213, -4.139532771597939, -4.295896818678989, -7.0, -2.535063847247395, -2.564961804462294, -7.0, -7.0, -7.0, -7.0, -3.7773543130842087, -2.793580867368156, -2.6964930237767444, -3.1450720377049977, -7.0, -7.0, -7.0, -7.0, -2.2030679971228104, -7.0, -7.0, -3.017450729510536, -3.5418287667813124, -7.0, -7.0, -2.8082531845665653, -3.222753620498096, -3.314130668652575, -2.7263196121107756, -3.3855705277254655, -3.846027675364379, -2.8325545294787067, -3.74170298395774, -3.2178931872102416, -7.0, -3.7481880270062002, -7.0, -3.665299499499897, -7.0, -7.0, -7.0, -3.720572720364261, -7.0, -4.2781016701595505, -7.0, -7.0, -2.9212657547472802, -3.336409697039683, -2.992553517832136, -7.0, -2.923909830929517, -7.0, -2.3023206191454757, -3.464042205438811, -7.0, -3.6604860157849677, -3.2931414834509307, -3.2534995431676204, -3.029428873420872, -2.714497408649806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6077408843287597, -3.218447972316523, -7.0, -7.0, -3.690196080028514, -2.3485588116852982, -7.0, -3.213916009644023, -2.8042151791711407, -2.5930541202839628, -3.995152376891454, -7.0, -3.708505880955237, -7.0, -3.876391061819188, -3.398547595734928, -7.0, -2.851441814672055, -3.0134271270706963, -2.8057556510562356, -3.173419384081802, -7.0, -3.345765693114488, -7.0, -7.0, -2.8020892578817325, -7.0, -3.3327918116376987, -2.4773497706322765, -7.0, -7.0, -2.8965262174895554, -7.0, -2.6928469192772297, -7.0, -7.0, -3.252124552505644, -7.0, -7.0, -7.0, -5.2048359780172, -7.0, -7.0, -7.0, -7.0, -3.7364230638180045, -7.0, -7.0, -7.0, -7.0, -7.0, -4.339928207778514, -2.7750219919935004, -7.0, -7.0, -3.7936914585507266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2641682560516845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1915907263792107, -7.0, -7.0, -7.0, -3.965383599222163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.840419777736486, -7.0, -3.6298493584358824, -7.0, -7.0, -3.3205616801952367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9744349283567657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.824581376233483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2755416884013093, -7.0, -4.116554105154213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151614972016013, -7.0, -7.0, -7.0, -3.6750906226358344, -7.0, -7.0, -7.0, -7.0, -3.424718337331567, -7.0, -7.0, -7.0, -3.177824971864682, -3.6868506827358676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.175018675936629, -4.754913773651104, -7.0, -7.0, -7.0, -4.994211536306786, -7.0, -7.0, -7.0, -7.0, -7.0, -3.69877452783365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4326486600131068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3526326642053124, -7.0, -7.0, -7.0, -3.4630963008800726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4072208929273966, -7.0, -7.0, -3.8806992892187013, -2.9427519204298136, -7.0, -3.5948972149333307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.624797578960761, -7.0, -7.0, -7.0, -7.0, -4.011085787106548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.225309281725863, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0062520513693647, -7.0, -7.0, -2.732686115594294, -2.6848453616444123, -2.9829492885744986, -7.0, -2.320405953970451, -7.0, -2.9689496809813427, -3.7469454096151047, -7.0, -7.0, -7.0, -4.056352107632129, -3.555215405126073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.934859371642858, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6319508262592173, -7.0, -7.0, -7.0, -2.564073978977147, -7.0, -2.7810369386211318, -3.255272505103306, -4.340766245814562, -2.6711728427150834, -2.7075701760979367, -7.0, -7.0, -3.035829825252828, -7.0, -7.0, -7.0, -3.084576277934331, -3.2835273648616936, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8391427171910273, -7.0, -7.0, -7.0, -4.410422906967378, -7.0, -7.0, -7.0, -3.2155935061708187, -7.0, -3.963031875053898, -7.0, -7.0, -7.0, -7.0, -7.0, -2.870111155364401, -3.4650852875574327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6298681187461233, -7.0, -2.840262964417612, -3.2174839442139063, -4.132016211406724, -3.895422546039408, -7.0, -3.8097840982527122, -7.0, -7.0, -3.59250984790068, -3.287129620719111, -7.0, -7.0, -7.0, -2.9947569445876283, -2.9274986816932005, -7.0, -4.925341748364358, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5562783726258385, -7.0, -5.030229509007095, -7.0, -7.0, -4.173702284990066, -3.778585327862962, -7.0, -7.0, -7.0, -7.0, -3.309701124779525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0461047872460387, -7.0, -2.9132839017604186, -3.549303048006186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.712969413188024, -7.0, -7.0, -7.0, -4.181517744876915, -7.0, -7.0, -7.0, -7.0, -7.0, -4.581653887176893, -7.0, -7.0, -4.44560939194609, -7.0, -7.0, -7.0, -5.086987679705316, -4.274827255438105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.77450966660029, -7.0, -4.677506578952049, -3.7218312169289187, -7.0, -7.0, -3.607025878434786, -3.878808932359205, -7.0, -7.0, -7.0, -2.4803663095328092, -7.0, -4.163068152729703, -3.2852759390712047, -7.0, -4.028184770141744, -7.0, -4.457387296278139, -3.03906142848015, -1.9195021390967313, -3.1860140602380915, -3.4712254448577413, -2.840751399088864, -7.0, -3.835563751669097, -3.823539433656859, -7.0, -3.7960189693471493, -4.37359235519894, -3.669409867287783, -7.0, -3.991682288353693, -4.44657952693536, -5.1043932088795545, -2.0205980199018136, -1.9409690164749218, -7.0, -3.4112780997968533, -7.0, -5.1043983313539965, -7.0, -3.917347937627772, -7.0, -4.322529394341456, -4.43279297319493, -4.180885369444393, -7.0, -4.214949760615447, -7.0, -4.597382512974542, -7.0, -7.0, -4.165550964917679, -3.4787251788694604, -7.0, -4.117101600989737, -7.0, -3.5952757118020995, -4.131180085665366, -4.296116492169714, -7.0, -7.0, -7.0, -7.0, -7.0, -4.469453813767127, -7.0, -7.0, -7.0, -3.286905352972375, -3.3426595041391187, -7.0, -7.0, -7.0, -3.2716867502389397, -7.0, -3.3199245800341806, -3.617210094557434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.227243781503063, -7.0, -4.013090138125056, -7.0, -7.0, -4.596750995512816, -4.492564842670765, -4.310955155085438, -7.0, -7.0, -3.335959106148248, -7.0, -3.4681995860726125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5446880223026773, -7.0, -3.311753861055754, -7.0, -7.0, -7.0, -7.0, -3.3336487565147013, -4.068576414364122, -7.0, -7.0, -7.0, -7.0, -3.8499719123288503, -2.968015713993642, -3.7748817658187965, -7.0, -7.0, -3.8042076050820413, -7.0, -7.0, -7.0, -4.329774037157664, -3.3191060593097763, -7.0, -3.7039573587561563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7514843956354293, -7.0, -4.162026432421177, -3.4003405940215106, -7.0, -3.449324093098727, -7.0, -7.0, -7.0, -7.0, -3.190705124231049, -7.0, -7.0, -7.0, -7.0, -3.7934411329776636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.968015713993642, -7.0, -3.2229764498933915, -2.994215598949566, -3.7641761323903307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3223020096150195, -7.0, -7.0, -3.5293019977879805, -7.0, -3.4109458586877746, -7.0, -7.0, -2.8798601462734688, -7.0, -3.6564815157904986, -7.0, -7.0, -7.0, -4.654431651055449, -4.653062897685104, -7.0, -7.0, -4.477844476338758, -4.659212396143382, -4.481667123172043, -4.477878197285531, -4.479234496909399, -2.7962063793826166, -4.131242766886208, -7.0, -4.954980183213358, -2.9311890460376633, -2.9029254503421624, -4.180035029080566, -4.956614986067625, -7.0, -7.0, -7.0, -2.501106366166521, -3.431207354239188, -4.953774184077026, -3.4295031177076867, -2.1332646988911512, -7.0, -4.65454712291749, -7.0, -4.183734740768417, -4.356513447223032, -3.508515290343504, -2.426379720020594, -3.67865732337852, -4.653574275130625, -7.0, -3.75173606623822, -3.706134349566367, -4.353165804965758, -3.090751689644903, -4.477053692545283, -4.263863215008734, -4.955774312014999, -2.2811719675702458, -4.176751849112052, -4.956226076359381, -4.117114978346134, -4.481002855946895, -2.6898989932168496, -7.0, -7.0, -4.666115322770356, -4.113188647173712, -4.358287092179741, -1.995999092965569, -4.010921547963273, -3.688032522105424, -2.59874036491712, -4.6550038979849875, -4.111838373829939, -4.061984653726177, -4.656155720651669, -4.355489832903385, -4.179436883244977, -7.0, -4.655695358099588, -2.9685950100903336, -1.8568627185206399, -7.0, -7.0, -3.3838909217359983, -7.0, -3.458605805035887, -3.9307962629833004, -7.0, -4.362708610909318, -2.5879341741548614, -4.954546409224138, -3.0224805150602982, -7.0, -4.95537020971636, -2.554833535393301, -4.961829091708983, -3.9555578754030956, -7.0, -3.0053219657545895, -3.726190060052768, -3.1738345463777593, -3.5369930805939256, -3.730121737157226, -4.4829497689403945, -2.218890315867444, -3.792172151861495, -3.3975620080186446, -4.255431717226232, -7.0, -4.186428913233115, -3.7842986456020222, -3.8842004205035816, -3.2372783666008687, -4.955047620244845, -3.391955332135257, -4.4799158561965475, -7.0, -4.954039791376542, -2.688225928730787, -4.352216295257527, -4.0090682761922185, -4.357005262671767, -3.3807630389163634, -2.3633996005628086, -7.0, -4.95535095736766, -4.05508672862109, -3.543700408844007, -2.3907696872309554, -4.957420505061151, -7.0, -4.007989459470628, -3.424237414280535, -3.3186475690036548, -7.0, -2.805288155767483, -2.431384692068434, -4.956379761319415, -2.7447043988534787, -4.956595788822287, -3.072360897625468, -4.113121711270605, -3.7890445634880243, -2.90936065045019, -4.954633198689235, -4.4796040990439066, -2.133112383842677, -4.187934137794767, -4.953735536752166, -4.954170120993136, -3.2739306322608575, -7.0, -7.0, -7.0, -7.0, -7.0, -2.35969125581128, -2.9005690684574574, -2.989974234237973, -4.129616245517439, -4.956821302879551, -3.8109892965113796, -7.0, -7.0, -4.004273593983716, -3.2874658053432286, -2.969542568385431, -7.0, -7.0, -4.9569076389632665, -2.0983138589928285, -7.0, -7.0, -4.6600777237750135, -3.9590461647617055, -7.0, -3.8799269556700935, -4.65898389025032, -3.9223998627538696, -3.582896287811938, -4.261805100794075, -2.9733117237162716, -3.7294982943302246, -4.6551384348113825, -2.11770545472094, -4.110584900809918, -7.0, -7.0, -4.258071901096532, -3.8414605469662466, -4.955211352309952, -4.6531835598447415, -2.6967886312133325, -7.0, -3.2571984261393445, -7.0, -3.3328606129435316, -1.8320963527302048, -3.8433190436791786, -3.00044792387416, -3.253733976788288, -3.9176773410199104, -3.758963906261545, -4.056566617596654, -3.960741829684198, -4.958449202872238, -4.260734254748414, -3.629562492778617, -4.353935455571521, -3.7695573215600326, -7.0, -3.530614754420801, -3.8473543181408956, -3.6491712371470424, -4.65389237604383, -2.9716837962818903, -4.954005995831296, -3.7234191828331897, -4.956341345177691, -3.8135238031731653, -4.478330767958597, -4.9561588220840775, -3.635342066205612, -4.059459280759199, -7.0, -3.9220126057956737, -2.2201785795834823, -2.831649008045522, -7.0, -4.652976000167315, -3.9554087118535692, -4.477246699451068, -4.95489346306892, -4.9559137362541525, -7.0, -4.956346147381247, -2.955433843351917, -3.206109057007845, -3.1736886626993055, -2.4269866827278737, -7.0, -4.110522372601323, -7.0, -4.958315370845764, -7.0, -7.0, -4.962151423362826, -4.482925962459884, -4.181734048110948, -7.0, -7.0, -4.653646591254662, -4.9552161670245845, -4.953894934805404, -4.653545345309011, -3.2696606383128284, -2.040166187706178, -7.0, -7.0, -7.0, -7.0, -4.655863255143841, -4.002262080877372, -7.0, -4.655892030978066, -3.9745807690805917, -3.9608036249117697, -3.6791143282160643, -2.917052562679025, -4.960470777534299, -4.954411368906185, -7.0, -2.1939996969068654, -3.882467614895371, -3.2724499385486108, -3.7808067878569203, -2.3313884183808486, -4.95751151145448, -7.0, -4.654388341190573, -3.204172515101434, -3.2214142378423385, -3.3405014000346305, -3.4197951747985944, -3.753605586292964, -4.357386871335479, -4.95680211475213, -4.477497480263115, -3.7033773685123497, -3.1726358824113596, -3.373322322112365, -4.953711380427555, -3.9138812542789005, -3.9588074784637617, -4.955211352309952, -4.261043881578282, -4.953981854545893, -3.6611593333465513, -2.831585410556541, -4.356427441692355, -4.663889298622661, -4.6585598838444096, -1.7524393038328663, -3.033195825123681, -4.954840458899287, -3.288125411314306, -4.9545078305606225, -4.355144896174567, -3.7940323677785246, -3.784740883765015, -2.684354440963692, -3.4897382311301004, -3.6186301025123226, -3.784935706040011, -3.569654763999852, -3.9628237572821168, -2.5073619679009456, -3.159800554607567, -7.0, -7.0, -7.0, -3.4870105827412474, -3.2721062829317655, -4.256732174125921, -4.479431337197736, -3.9640945574951996, -4.654229501390483, -4.262934951640582, -7.0, -3.1825388976316757, -4.47969045420215, -4.179800654075695, -3.113609151073028, -4.65579130721557, -2.8339003854460367, -3.551152538599382, -2.400852103270976, -4.655834477402838, -2.228447191371028, -2.572621734042997, -3.411351202966301, -7.0, -4.1793985738477035, -4.653945370217834, -2.6946708788665745, -3.3890115198419006, -4.0223687930961, -4.007648222996511, -7.0, -7.0, -3.2821120781959503, -4.177122689053482, -4.6555705925491955, -3.877740780594422, -3.4283939969501827, -4.052463077483329, -2.50158891826153, -4.953817658206996, -7.0, -2.5131497987623552, -2.432572144278123, -4.2558270827032345, -3.2389145669888704, -3.1403200681151864, -2.445109514160607, -3.2963830892565467, -3.135007398371379, -2.6079249046588773, -2.6884374443720818, -3.5390482048667, -3.495643434975721, -2.971914517208946, -2.963732558359301, -1.584075686912433, -3.702113159927229, -3.0310520390949707, -1.777208921234309, -3.585894373560409, -2.9401368568647728, -4.191460329990939, -2.9002119515293323, -2.7730868841903242, -2.795961136858702, -3.5943883000660994, -3.0106100786713155, -2.8131005261146176, -3.0559680048965525, -7.0, -2.3645362928944373, -2.819405603168696, -2.866211090217405, -3.1453341143778153, -3.1017884680466774, -3.4836918763698206, -3.3252889815821676, -3.606497806352983, -2.9119340261025153, -3.329729861208485, -2.6592621570681594, -3.303886921725102, -2.838781990842552, -2.0992450911191702, -2.376531898750521, -3.349615134542817, -2.979218596375799, -4.059449812507961, -1.9726040220056356, -2.3785742856804393, -3.1879670063434964, -1.843936289441158, -1.9177551208044752, -1.714214894373381, -4.005242495654679, -2.3248192261464693, -3.4774197295869875, -4.352568386179309, -3.9809164758354942, -2.3185520603058944, -3.320146286111054, -3.5593942622111583, -2.1790050976603923, -1.9256485743396834, -2.654326066576254, -4.110113312295695, -3.1547189913487803, -3.4112780997968533, -7.0, -4.025710835815091, -3.0672391752241204, -2.5906602640072958, -2.3231177054469523, -3.698820388245779, -2.586208153029271, -1.8587823323091992, -2.179117652198935, -3.015783409685465, -2.651785109751889, -3.155059444203544, -2.1068804851954357, -2.897015436856953, -4.0537888751837405, -2.0711876357354817, -0.2526488849797658, -3.690093441922547, -2.005672876125111, -4.177594209647827, -2.8292151798431755, -2.087542546880814, -2.9134871923593626, -4.352737095711291, -4.255156677797138, -7.0, -4.653506769215551, -3.934691224185509, -1.8508118273944065, -3.339067945753538, -2.6547014748369984, -4.25598127408652, -3.4982962910108375, -2.2218894833457847, -3.207048242986976, -3.0063614376592094, -4.051943183341951, -2.8663239810637275, -3.2463778783937567, -1.9249605003446761, -2.6534315872359553, -3.5583052812817852, -3.9619902874400648, -1.8720934227629034, -3.2624036232587823, -2.8170056788606863, -4.355585600061131, -4.178021984207647, -2.218087383804092, -4.479234496909399, -4.11179041463582, -3.4416713367267233, -2.9022186525648697, -7.0, -2.7670903566949376, -4.954401721562251, -4.653800825418502, -3.0305423788965262, -1.2690758123899828, -2.286489046836051, -4.652898743329887, -3.2569722899812006, -2.602313552390272, -3.843525053233252, -3.2931697115807563, -7.0, -2.994943243789128, -2.1448000423056075, -4.954218381297876, -4.0517456530256775, -3.485948449216443, -3.561254075742359, -3.1609946019388135, -3.2744465129379186, -3.3364835588742867, -3.702703320968491, -4.257558587444218, -3.337159644526856, -3.09810021660978, -3.1639022977727844, -7.0, -3.075537603513607, -2.9452481227416465, -4.058345346004422, -3.0550967654044965, -4.956134800175796, -4.954903099495695, -3.1885222651994, -3.016696288653449, -1.5493542710373036, -2.6151760173596306, -3.3467998944611654, -3.0449697502337134, -7.0, -3.5073520497345663, -3.725546525521209, -3.070434676288165, -4.353574851673284, -3.042248063558637, -2.770561112325769, -3.657739280815576, -3.9996331075055283, -2.7808594201090915, -2.519851127858414, -3.078647329681168, -3.5312328417522694, -2.180226161614204, -3.1199389460651723, -3.2867908860202397, -3.2591493237467004, -2.677128774472802, -3.2326542662501723, -3.9588981947107715, -2.8046192945802098, -4.352225945388225, -4.351844602085498, -2.9459490851608128, -3.622901339450227, -3.7530705265357844, -3.9238513610441434, -2.598946250333827, -2.667829235565519, -2.770010546065663, -2.0282002587582526, -3.274042330049831, -3.107110998040215, -4.479124035234161, -3.482954530079902, -7.0, -2.689847910948187, -2.6886376191642114, -3.744108823475306, -3.874781294503695, -2.6775496264220617, -3.781717088051875, -1.89528078671618, -3.232295921471446, -4.955663702334214, -4.050935320901517, -4.3519508325993845, -3.954517475547784, -4.109183071663385, -4.176665113572594, -3.601081727784023, -4.959932927904161, -3.7059634403790094, -3.274249280187803, -3.877160099130066, -4.051793839436376, -4.256621546069706, -3.3884084627688495, -3.751885076250019, -3.0489247370565566, -3.45425397010459, -2.120914451235308, -3.1270911037675013, -3.3495180415860877, -3.57621173370578, -4.653029106272008, -2.950069818943341, -3.654941420288582, -4.953812827963013, -2.062930815889548, -3.4652532922333523, -3.50931295469693, -3.1410892522830585, -3.5842275392635443, -3.6415826941573264, -4.255537826224604, -4.1766169196757135, -2.9979369293522593, -4.352177692590311, -3.4165064451418456, -3.4969821074492327, -4.179274044963151, -4.6527296960692475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.320687797220125, -7.0, -7.0, -7.0, -7.0, -4.032638903912429, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.113140836867081, -7.0, -7.0, -3.697012416744354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3158046790494526, -7.0, -7.0, -7.0, -7.0, -3.861653870213911, -7.0, -7.0, -7.0, -7.0, -7.0, -3.243286146083446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6260836162697796, -7.0, -7.0, -4.458698268402751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.162707234517458, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7107064345118013, -7.0, -7.0, -7.0, -7.0, -3.629613445378183, -7.0, -7.0, -7.0, -7.0, -3.7973368007753496, -7.0, -7.0, -7.0, -7.0, -3.8818236174163134, -3.9406160823374075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464713045757064, -7.0, -7.0, -7.0, -7.0, -3.8680857845717336, -7.0, -7.0, -7.0, -7.0, -3.679109782081773, -7.0, -4.003654370310405, -3.889777764467921, -7.0, -7.0, -7.0, -4.317545213369664, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9242965196279602, -7.0, -7.0, -7.0, -3.6780629049743454, -7.0, -7.0, -7.0, -7.0, -7.0, -3.248354776253106, -4.026369811573718, -7.0, -7.0, -7.0, -2.993741367349005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.602992722137344, -7.0, -7.0, -7.0, -3.829946695941636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4081721014970534, -7.0, -7.0, -4.181547240276837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.085237046441033, -7.0, -4.02197445511006, -3.807061239917239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7319914490189294, -7.0, -7.0, -7.0, -7.0, -4.093141404751149, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.27429643177251, -2.651360811389999, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.666878183240443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.510410948010177, -7.0, -4.596201102454085, -7.0, -4.753337885232085, -7.0, -7.0, -7.0, -7.0, -4.0317315399458264, -4.158121150337495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.399920830723496, -7.0, -7.0, -3.5451303224548734, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.124151183547985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.455994682544721, -7.0, -3.6991885346483975, -7.0, -7.0, -3.0615159677916264, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.569444140240524, -7.0, -7.0, -4.047440374098858, -4.331663445310756, -3.90100399089971, -7.0, -4.754699910729208, -4.460206027457451, -7.0, -4.344372621906474, -4.9093366872381266, -4.16799631208688, -3.964118143151485, -4.404560059092356, -4.061279028255576, -4.24185764667843, -3.858958054718006, -7.0, -3.0752150588300236, -4.4718244708456, -7.0, -3.93387517879672, -3.95390459341346, -4.251006913898273, -4.079814130800685, -3.8951240732440984, -7.0, -7.0, -4.404483061833551, -4.313382057578149, -7.0, -3.9657726771873762, -7.0, -4.421562798551045, -3.817714075084912, -7.0, -7.0, -7.0, -7.0, -4.52630049936563, -3.197979956461525, -4.188965961710644, -7.0, -4.114243913688907, -4.182068534220791, -4.111564935454498, -7.0, -4.424080882717048, -7.0, -3.668552656897619, -3.5759091446814137, -7.0, -3.4372747974101237, -3.7562422146809546, -7.0, -2.196863537872375, -7.0, -7.0, -7.0, -7.0, -3.6147917919564176, -7.0, -7.0, -3.7353172901274787, -3.6755672791395586, -3.3945633363947443, -7.0, -7.0, -7.0, -4.025710835815091, -7.0, -2.769310175788892, -7.0, -3.735159593090218, -7.0, -7.0, -3.304638606422875, -3.004995610796561, -7.0, -4.334694958867158, -7.0, -4.080940705963939, -4.5557472140872095, -7.0, -4.968763048197249, -3.7015361741036097, -7.0, -3.3003189233265715, -7.0, -3.961231197044663, -4.058663227194839, -4.397644587969917, -7.0, -7.0, -7.0, -3.7637274037656985, -7.0, -4.062945310995021, -3.8757555792580543, -7.0, -7.0, -7.0, -3.8330195470765314, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5765972691771957, -7.0, -7.0, -7.0, -7.0, -3.865044721693099, -3.6925384871257463, -7.0, -7.0, -7.0, -3.7912694809102683, -7.0, -7.0, -7.0, -7.0, -3.7134905430939424, -7.0, -7.0, -2.527395527157122, -4.635329571719198, -4.522424670251202, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5843500735453686, -7.0, -7.0, -3.88349109018893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.851869600729766, -7.0, -3.3654463838101742, -7.0, -3.4628470358316736, -3.628899564420607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.211269325159594, -3.6084190513172856, -3.9618480590183243, -7.0, -7.0, -7.0, -7.0, -3.1441459284677373, -7.0, -3.8683504996479683, -3.762566037627078, -7.0, -7.0, -3.456441952101687, -4.6807614389476635, -7.0, -7.0, -3.8034400439889096, -3.9108377649926833, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5168657614978143, -7.0, -7.0, -4.148124297389897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.305630775996965, -3.9918460536448968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.436509596914933, -7.0, -7.0, -7.0, -7.0, -7.0, -3.760497875226527, -3.4674601095072637, -7.0, -3.539452491549461, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.787956123283932, -3.8854177651109363, -7.0, -7.0, -7.0, -2.3125644482543892, -7.0, -7.0, -7.0, -7.0, -7.0, -4.264109156305809, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.803289784441723, -7.0, -7.0, -7.0, -7.0, -5.407062722441135, -7.0, -5.405199464216897, -4.8036107303933635, -2.2394401715727943, -3.242146747175157, -7.0, -7.0, -3.2255612545205037, -3.3777235917236528, -5.105309170614622, -7.0, -7.0, -7.0, -7.0, -3.5258850736023364, -3.8984991354385503, -7.0, -4.934856848765115, -2.065997950804967, -7.0, -5.405401006456081, -7.0, -5.407664483299706, -5.105440351415542, -4.706540274057084, -2.9609541815104348, -4.707127140138086, -7.0, -7.0, -7.0, -5.106500268626982, -5.405283166841318, -4.807238971050686, -7.0, -5.408000698156257, -7.0, -1.9413530558205947, -7.0, -7.0, -4.56266665574757, -7.0, -4.566432441251003, -7.0, -7.0, -3.417988261884268, -4.804311547921729, -5.1060735504822965, -2.7663789840964386, -3.9463590805881705, -4.417614496970858, -3.581906175240146, -4.502449312138587, -5.104867635083071, -4.931688348356623, -5.40597267230393, -5.406109078287424, -7.0, -7.0, -7.0, -4.808327467093671, -3.170618332897216, -7.0, -4.927864609296833, -4.6302464573197675, -7.0, -3.981823638939474, -4.809330723851234, -5.405078152192411, -4.129878070570166, -2.309152289779365, -7.0, -4.562861918686101, -7.0, -4.803253919365127, -4.1863080477904715, -4.009605548485871, -7.0, -5.103774653029688, -3.7652433977308273, -4.451559595114814, -4.233275391293944, -4.330846499235686, -4.562112650103821, -5.407004882289126, -2.307957045494282, -4.263818606337028, -3.7982921198880066, -7.0, -5.404799518857654, -4.709648107508037, -7.0, -4.563102904899838, -4.507518555576424, -4.928081626246693, -3.340892514452765, -4.5608047076145, -7.0, -4.927724430480919, -3.656317987928804, -5.103913135702874, -5.107152286081356, -5.406649166157267, -4.369937394597604, -2.9593881995919062, -5.405698025321797, -7.0, -4.804275767129094, -4.628416179045295, -4.16498489374402, -7.0, -5.404832006795777, -7.0, -5.410073359216594, -5.411395767749028, -7.0, -3.12076675689277, -2.1598146554537774, -5.405682667257748, -4.4157827195557315, -5.405759452147459, -3.344997458978293, -5.105324505480681, -3.8289531480657217, -3.3935971367804583, -7.0, -4.9286842618460565, -3.712543290572643, -4.631005532907514, -5.404744796836268, -7.0, -3.4208261382255905, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7229200677911893, -4.714212366993632, -3.4831170267746994, -4.567189427160923, -4.063345302141709, -3.617343218781815, -7.0, -5.104222425149045, -4.929342278748438, -3.8789958794490644, -4.160113226773964, -7.0, -4.928214858512939, -7.0, -3.1969926658789696, -7.0, -7.0, -4.328153561970996, -4.4523930349981296, -7.0, -4.084404330348212, -5.406981063516755, -5.107332097797437, -5.408163617774523, -7.0, -4.0550357871696905, -5.407008284864256, -5.405610989110177, -2.4705293932107346, -4.56033711687566, -7.0, -7.0, -7.0, -5.405377099554486, -5.405267794099257, -7.0, -3.8160323905754923, -4.560253443542344, -3.7030444592234555, -5.404914070763187, -3.740764037376217, -2.109916599235302, -5.10500406463443, -5.111151572881174, -4.711665533165346, -5.105641304876784, -7.0, -7.0, -5.407268502868533, -5.105385839530771, -4.929752608152573, -4.265191937350579, -5.104522959613173, -3.6193626605466327, -7.0, -3.580076671327345, -7.0, -2.743169825496728, -7.0, -4.193481450939115, -7.0, -4.635632842395605, -5.405669015189301, -5.406892582351948, -7.0, -5.405604162002902, -4.936346158266162, -7.0, -7.0, -4.2620542460671, -3.549033145088479, -4.054346554904802, -7.0, -5.404843975423541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.162531217536575, -4.808526616621753, -3.694137019956113, -2.3696922569462044, -7.0, -7.0, -5.4056434164042, -7.0, -7.0, -7.0, -7.0, -4.503882569503796, -7.0, -7.0, -7.0, -7.0, -4.928141415011316, -7.0, -7.0, -7.0, -3.112374317534743, -7.0, -7.0, -7.0, -7.0, -4.560750124434581, -4.928626254003232, -7.0, -5.104845461232334, -5.111235621527294, -3.7258895224423694, -3.4897844322789955, -4.41513534300341, -5.407140964505215, -5.404984154791237, -7.0, -3.4378139588473458, -4.453330233708015, -3.5143092296787004, -7.0, -3.768122743166399, -4.6279169106070865, -4.80320097026682, -5.4053446523686475, -4.6424265961372715, -3.5323520060651012, -3.5741404480439325, -4.298926935444693, -3.8135843241504817, -5.40678535986194, -5.104799404232248, -7.0, -7.0, -4.262810310487699, -5.408674042791168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.504706975657982, -4.272214693977678, -4.804372879565798, -4.7097565730871915, -5.406829613621545, -2.9095246982537577, -4.094986592030411, -5.104102836565097, -3.349232928245844, -7.0, -4.928858238901066, -7.0, -4.805247615802404, -4.0767992665280355, -4.807463992788396, -4.937302195705841, -7.0, -7.0, -4.709030693820238, -2.4203060853745657, -3.7932297824775407, -7.0, -7.0, -7.0, -3.6811557775072417, -4.030839131797785, -7.0, -7.0, -4.3670440252690375, -7.0, -5.106634487635724, -4.92833780587623, -5.111538062043175, -7.0, -7.0, -3.6401056483657737, -7.0, -2.496559231614817, -3.9387307545245966, -2.1246224358834676, -4.326639624238483, -3.5510119398324944, -2.7089047150021646, -4.372754718401078, -7.0, -5.406115897462093, -7.0, -3.9046851219657635, -4.812309936448493, -7.0, -4.930548324687003, -7.0, -7.0, -4.2041623921556805, -7.0, -7.0, -7.0, -4.712597515821648, -7.0, -3.130559357019549, -7.0, -5.404867911689591, -3.7342203245726457, -2.8676151293759182, -3.8665731016850873, -4.332007318122397, -3.479918656960047, -3.46932055733037, -4.375390899472998, -3.1152329844736144, -3.172844543701635, -3.8401077460146227, -4.234670794831644, -3.9186529448762197, -3.239565356161048, -3.187423422851196, -3.8115690484294324, -4.183839037056421, -3.0364553094923483, -2.9088040173779457, -4.576984334177281, -3.8579748912130563, -3.5125577484873114, -2.489382928319023, -4.054841184337388, -3.7027342912041856, -4.249204881954037, -3.4218759084509527, -3.2347252291627706, -3.795968887121449, -7.0, -3.3368112188941668, -4.013002607838666, -2.986469775153835, -3.8822983828565656, -3.548920928104592, -4.805291816380721, -3.8221419162617774, -4.1156887109195965, -2.883128885139733, -4.107216432315288, -2.443380274264685, -5.406088620120958, -2.658166819056501, -2.817909297102525, -4.270870076550308, -4.370324641925331, -3.173719779362857, -3.9306858969758305, -2.384066517495708, -3.852267278371824, -4.564249997194994, -3.255377663399359, -2.6408277411455305, -3.922847951771373, -4.202644950872879, -3.3913251836514897, -4.000218762497649, -7.0, -4.715608958857198, -3.274950722956219, -3.5604471976694194, -5.406103963836156, -2.2644821120797367, -2.0140910909448078, -2.213856436325215, -7.0, -5.111307890355802, -5.1043983313539965, -3.0672391752241204, -2.769310175788892, -7.0, -3.638513806542383, -3.240626535195097, -7.0, -3.3626772629262764, -3.5670557889077523, -2.778917466444301, -4.933753789312102, -4.069442865465664, -4.113769599761249, -3.1063569862135556, -2.860354858662413, -7.0, -3.150599766818814, -2.9100690256570454, -4.264043292828227, -2.748842971431182, -4.803404191319472, -4.632538271950371, -3.587464304551835, -4.056347339540412, -5.104097710604107, -5.404896975382031, -5.4047653184023146, -7.0, -4.810751545940375, -3.871881587834298, -4.930813239879962, -3.7480684503090216, -5.405189213807231, -4.80524591569032, -2.9272945385073883, -5.408209427907497, -7.0, -7.0, -3.95102918525155, -7.0, -3.0521000423687106, -4.180547512138109, -5.40571679555144, -7.0, -3.934936434427346, -5.407630507725026, -4.013879965230417, -5.1051097680662885, -7.0, -4.63603464296186, -7.0, -7.0, -5.10611437035037, -4.932631015748351, -7.0, -2.512324146310632, -7.0, -7.0, -3.6033816839102117, -2.9388562285678494, -3.3304676115937397, -7.0, -5.4087706338279675, -4.117533119495977, -7.0, -4.931889916029512, -7.0, -4.707845993224391, -3.865233662340489, -7.0, -7.0, -5.107137015619441, -5.105733235627028, -4.935080486984058, -5.405597334788302, -7.0, -7.0, -7.0, -5.1062249048967985, -4.077843403008046, -4.032067283910736, -7.0, -4.409944952202783, -4.807565468204041, -7.0, -3.84748823364797, -5.405595627967882, -7.0, -4.3381226757764235, -5.106656570334018, -2.943474400663783, -4.709988666197879, -4.456458821182361, -7.0, -7.0, -4.81390275426885, -7.0, -3.9990384774352434, -7.0, -4.629557397189861, -3.9095376435406557, -5.406598082504823, -7.0, -4.238434200651701, -3.471381201714428, -4.809030832780143, -7.0, -4.323383804818248, -7.0, -5.413279641863039, -4.929340575328879, -3.472452387696761, -4.934722274046495, -5.105576601200196, -5.406351093443442, -7.0, -7.0, -3.8851931120167453, -5.107920206498857, -4.8039519020845045, -5.408887531084357, -3.330958646960376, -4.805595998327254, -3.837015086445894, -3.3017140736148685, -5.110798390836454, -4.4087757169717054, -7.0, -4.929970384909012, -7.0, -4.934404175542786, -4.712935770420799, -5.111250748556312, -7.0, -5.407113751472994, -4.929110552332653, -3.4357319757793103, -5.1048949244222035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2686063846163975, -7.0, -7.0, -7.0, -7.0, -4.928047457542404, -4.50230248143607, -7.0, -4.803530516138413, -4.45395843547477, -4.151534982202108, -3.429533699751271, -4.45958345491435, -3.996658141016183, -4.502662640381697, -7.0, -4.205701595473211, -4.5604839331487765, -5.404772158708847, -3.3052812228291697, -4.627700325714928, -5.104773814899298, -4.1309547125837796, -5.107608455539725, -4.505289065996569, -5.103998596797865, -5.405127706268088, -4.261726661736097, -5.103899460366908, -4.809640506093394, -4.292862432927566, -7.0, -7.0, -4.076385543954533, -7.0, -7.0, -7.0, -4.0726909550128685, -7.0, -3.0210858833099774, -7.0, -4.083180004129977, -2.577545294261374, -3.5150786750759226, -7.0, -7.0, -2.8602084679303394, -2.8043771978112435, -3.2513600717031963, -7.0, -7.0, -7.0, -7.0, -3.4769764657595275, -3.6743328717415724, -7.0, -3.2960615842131453, -2.9753050118273934, -4.092123869244251, -7.0, -7.0, -3.5208109315364733, -3.7984434603501875, -4.079868335175173, -4.082369848659487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.852601969338235, -7.0, -3.6522463410033232, -4.078674273360466, -3.389459486355433, -7.0, -4.082066934285113, -3.426153268215979, -3.7951149856303634, -3.3469673709650354, -7.0, -3.4894662813031285, -4.157879674389154, -7.0, -7.0, -2.4098904000047168, -7.0, -3.2418859234519886, -7.0, -7.0, -3.7866804531966487, -3.8436375985671978, -7.0, -4.092088739255806, -3.79140991566716, -7.0, -4.085861173788451, -3.3274465143581065, -3.9936345938361932, -7.0, -7.0, -3.3588228453741857, -7.0, -3.520928734708947, -3.888825118125633, -7.0, -7.0, -3.2356216202519827, -4.0693350347899395, -3.651859269246949, -7.0, -7.0, -3.1925442234426136, -7.0, -7.0, -7.0, -3.2416709737841294, -7.0, -3.6783362467321803, -2.673971678762711, -3.813547631336185, -7.0, -2.8572315530485044, -3.3873601604019097, -3.256015799029937, -7.0, -7.0, -7.0, -3.8121443089703804, -3.2301294697405507, -2.5115636955824665, -7.0, -3.256769272878171, -7.0, -7.0, -7.0, -2.932727367301529, -4.067480023931482, -3.433769833924866, -3.8019864946643342, -3.1473389862875183, -2.4970293197660967, -7.0, -4.075473964588946, -3.619684515103055, -4.101781431327967, -2.8001399589911173, -7.0, -7.0, -3.5233887417323, -3.6900187807886953, -3.2351354964027053, -4.091526272631091, -4.416607226792504, -3.08367535113763, -7.0, -3.479719235439571, -7.0, -3.836407199815395, -4.0971878725708955, -3.8444771757456815, -3.881726935376418, -7.0, -7.0, -2.801669663167534, -3.4520319036568123, -7.0, -7.0, -3.5837150342679753, -7.0, -7.0, -4.065878352857392, -4.070333455853063, -7.0, -3.1635390310183986, -4.218876715052756, -3.174846201664013, -3.602548297999073, -7.0, -7.0, -7.0, -4.074157919697316, -3.7983743766815614, -3.575226344505001, -3.951677437343301, -7.0, -7.0, -3.4848690327204026, -3.407287016436204, -7.0, -7.0, -7.0, -4.103358939866563, -4.070518097019869, -3.6266824662362946, -7.0, -4.136371723492323, -3.8314858392486575, -4.115277591395902, -3.317993730910701, -3.5079907248196913, -7.0, -2.878087407900039, -3.299906616595543, -7.0, -7.0, -3.7873187566245474, -7.0, -7.0, -7.0, -3.035496444963253, -7.0, -4.003776372214725, -7.0, -4.216060285923142, -2.654915656899987, -3.6133484255114983, -3.7255577395080643, -4.177218959332716, -3.501333178645566, -7.0, -3.6303261548039467, -7.0, -7.0, -3.6304617764716594, -4.189293755885692, -7.0, -3.7218930162149575, -7.0, -3.604657972047871, -7.0, -3.2415726926544917, -4.072286669509892, -2.5152491909615082, -7.0, -2.8119872455616344, -3.781827152932428, -3.3294656796081403, -3.47410694801697, -4.081563320980385, -3.9221283467963626, -7.0, -7.0, -3.4345369694423313, -2.2489976533134346, -2.9397331381102125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.082964793777752, -2.9054135689643457, -4.176322821034989, -3.2789118170826983, -3.6576360198439435, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7692295817365937, -3.823474229170301, -3.5077547043664365, -7.0, -7.0, -7.0, -7.0, -4.0744507189545915, -7.0, -7.0, -7.0, -2.496487537030572, -7.0, -7.0, -7.0, -7.0, -3.3085999808584132, -3.3062105081677613, -7.0, -3.610056557041494, -3.6019242530921636, -3.814713612695977, -3.759239633293262, -2.8002259615480365, -7.0, -7.0, -7.0, -2.9000255678980835, -3.0419187839286823, -2.877688023441787, -4.088065177690204, -2.956745935939529, -4.091596620810058, -7.0, -3.598790506763115, -2.6212593923832506, -3.075520892513991, -4.0068295849344855, -3.515211304327802, -4.257558587444218, -7.0, -7.0, -7.0, -3.7999605274059833, -3.5455235910936778, -7.0, -7.0, -7.0, -3.8005452505919526, -7.0, -3.1551335219650514, -4.064981821697305, -3.08402351282453, -3.088933040771907, -3.797821311364024, -7.0, -3.4074588904573924, -2.9426614178394863, -2.9352552817840474, -7.0, -3.2797382181499897, -7.0, -3.612289256263882, -3.7002420700306993, -3.5140826625258312, -2.9429565299567932, -3.3122680517480134, -7.0, -4.117702061209315, -3.4629367877312602, -3.4305265386806405, -2.7775910217147204, -2.4742632732749703, -7.0, -7.0, -7.0, -3.1473671077937864, -3.5831137210293744, -7.0, -3.607383528526565, -7.0, -7.0, -3.6458805585863616, -7.0, -2.952819340172389, -7.0, -7.0, -2.752930091089968, -7.0, -3.5045388218845748, -3.5508884680813524, -3.483506848766961, -7.0, -3.5408048108305006, -3.6154878703137148, -3.6318241174379233, -7.0, -7.0, -7.0, -3.8638282512985738, -3.3916407034923877, -3.613709717089681, -3.4240645254174877, -3.5902100254885054, -7.0, -3.2322335211147335, -7.0, -7.0, -4.088029717842714, -7.0, -7.0, -2.713065260517642, -7.0, -4.065766387622749, -2.80475174035332, -2.6691184423266474, -4.173390251465195, -2.93075098801414, -3.253234127833428, -1.9662310320585514, -3.5731734132550312, -3.3017156394293377, -2.2264107190468714, -2.306371938560718, -2.659599312436744, -4.018520198529056, -3.5985306180872705, -3.788553296952315, -2.397132711912124, -3.511763078159342, -3.4433971117592987, -2.301511249454415, -4.039731296098691, -3.386704711065075, -7.0, -3.320602517175809, -2.793993985228541, -3.1231018793858474, -3.42380999917332, -4.211534339415678, -4.054459837239404, -3.578016706360594, -7.0, -2.870132733146647, -3.008923643234805, -3.564473725064019, -3.6628926848054344, -3.728288835934386, -4.117204986092783, -3.8897311147926015, -3.970765159780768, -2.6455326560720773, -3.380852339683557, -2.8085610491031643, -3.6144050179114284, -3.3314422939128954, -1.6487264577005731, -3.3720370124661687, -3.5934799052213555, -3.3973248795188713, -3.8265930539340482, -2.8962196591822815, -3.1174370252826193, -3.007839185967241, -1.935358383836394, -3.1254559158008726, -2.8839046692579333, -4.106428894793411, -2.792063924327391, -3.949243590568265, -7.0, -3.939144699355296, -7.0, -2.4635058925862654, -7.0, -2.2460919417551084, -2.76396563495061, -3.3770429432419937, -7.0, -3.5061260432424652, -7.0, -2.5906602640072958, -7.0, -3.638513806542383, -7.0, -3.26549391469512, -7.0, -1.4696850134258492, -3.1667943211978447, -2.2278193953785186, -3.180670552957893, -2.631776592097428, -4.244252373972473, -1.4509450560382438, -3.7187818554344205, -3.7863254343900703, -2.4090144205749637, -3.0189834518139866, -4.169733197942518, -2.780787255202442, -3.7777167386096258, -2.2930425467054785, -2.699088048927707, -4.18904090790901, -3.7703732878674874, -7.0, -7.0, -7.0, -7.0, -2.9355501421681085, -3.526113023421766, -2.787328645420259, -4.072727689585266, -3.815212362299354, -1.7551976671084402, -3.8323492162595376, -7.0, -3.7724684030532805, -2.0705391938699713, -3.767341422368662, -2.395121957146396, -3.4056024552093134, -7.0, -7.0, -2.735172911942689, -2.86602464772164, -3.5959369062691735, -4.092790799676886, -7.0, -3.3309208305952356, -7.0, -7.0, -4.113006940000935, -3.6844862921887342, -7.0, -2.071120574370989, -7.0, -7.0, -3.3820084612910795, -2.5059473911672296, -2.7909163930169654, -7.0, -7.0, -3.182436601464549, -3.614862077517649, -3.5461723683169426, -7.0, -3.4074588904573924, -2.837588438235511, -7.0, -4.072065991414746, -3.6554585929400747, -3.8043439184798657, -3.600945683400521, -7.0, -3.633165353683903, -3.618919299575765, -7.0, -3.5129177534573452, -3.20455823185195, -3.3867583135862205, -4.067442842776381, -3.0508851820376446, -4.159537116397021, -3.818984256414086, -2.8195958815358186, -7.0, -7.0, -3.0235268086522495, -7.0, -2.400911878345167, -3.5453380480196923, -4.178574103379925, -3.504130905935453, -7.0, -3.218535505216528, -7.0, -3.5335687131945797, -3.378579576115775, -3.278753600952829, -3.2427401446056274, -7.0, -7.0, -3.0931464113450193, -2.712682071804389, -3.070265260804666, -4.129303107716051, -2.5255045769947024, -3.8472332339728976, -3.4417736628051845, -3.400192488592576, -1.910701486221636, -3.351906688008789, -3.500030534183874, -3.619788758288394, -7.0, -7.0, -3.753940355895292, -4.147243359543369, -3.789192776022594, -3.6687895794127114, -1.4083960534693816, -3.6458478396740848, -2.183475662326633, -2.7053655117911855, -3.594806755921277, -3.3660803677069033, -7.0, -3.634779458145952, -7.0, -3.4929000111087034, -2.942256150419465, -2.7557659962955827, -7.0, -3.8112397727532894, -7.0, -2.5122840632818537, -4.088348752288528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.288348606460727, -4.10907208097888, -4.1193548812964265, -7.0, -7.0, -7.0, -3.475307913956194, -7.0, -7.0, -3.8327004709605674, -3.8063156698081135, -2.734963395399042, -3.7518177877368792, -7.0, -3.6079194520225313, -4.065654393514962, -7.0, -3.604262062742623, -7.0, -2.7836075540653025, -7.0, -4.085825533520743, -3.161368002234975, -7.0, -3.659821158055705, -7.0, -7.0, -3.525304009958239, -4.067182485523405, -3.7178091444980614, -4.107040290223204, -7.0, -7.0, -4.217325990227112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2718514891065444, -7.0, -7.0, -7.0, -4.497758718287268, -3.602697393370634, -7.0, -7.0, -7.0, -7.0, -7.0, -3.574748708350177, -4.370587100246676, -7.0, -4.309694029565843, -3.037637975298863, -7.0, -7.0, -7.0, -7.0, -4.234188147853202, -3.617629297757842, -2.5535111069782914, -7.0, -4.212613696645057, -7.0, -7.0, -3.9486085498764365, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1422597796874947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2777237887624535, -3.9317374785123613, -7.0, -2.7939975497333496, -4.2682736719666154, -4.376394442037267, -3.111064738491977, -7.0, -4.2255935481548, -4.267781659715359, -7.0, -7.0, -7.0, -7.0, -7.0, -4.289165152649889, -2.009698542326087, -7.0, -7.0, -4.262189959913005, -7.0, -4.3257413721537965, -4.30224432095016, -7.0, -7.0, -3.049287989292018, -7.0, -3.9549898177161404, -7.0, -7.0, -3.668012971641832, -7.0, -7.0, -7.0, -3.422753941301348, -3.9234253686715865, -3.3213682553052477, -7.0, -3.9442358437934804, -7.0, -3.455713751383308, -7.0, -7.0, -7.0, -7.0, -4.26521888809996, -7.0, -7.0, -3.991181757667873, -7.0, -4.174379665748987, -7.0, -7.0, -7.0, -3.7987714577882628, -7.0, -7.0, -7.0, -3.8245596945739138, -2.783958521961391, -7.0, -7.0, -3.9312035254507522, -4.235831337410517, -3.1868259884637125, -7.0, -7.0, -7.0, -4.284859176733764, -4.302179353813202, -7.0, -3.163913523111784, -3.7145333249968298, -7.0, -4.054747075382486, -4.223444019809615, -3.212735360541053, -7.0, -3.7911992464988753, -7.0, -7.0, -7.0, -3.774431801598087, -3.971623701765836, -7.0, -7.0, -4.114988853907845, -7.0, -7.0, -7.0, -7.0, -7.0, -3.041590046889367, -3.7225927942150254, -7.0, -7.0, -7.0, -3.76585474746579, -7.0, -7.0, -4.234137489450963, -4.132595849372379, -3.8743465023900985, -7.0, -7.0, -3.924046565962411, -2.637575986336545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.258661223325604, -4.245784017077525, -3.765258649601729, -7.0, -7.0, -3.2152728670850608, -4.218797998111738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3823773034681137, -7.0, -3.1435019365824877, -7.0, -7.0, -2.8325269538104827, -4.227655361923043, -4.312219683273972, -7.0, -4.237166582685473, -7.0, -7.0, -3.9447786811235073, -7.0, -3.939119717648487, -3.6026242074933377, -7.0, -7.0, -7.0, -7.0, -7.0, -3.877797367506874, -7.0, -3.6631667570922044, -7.0, -3.5537819221196365, -7.0, -3.939294559426453, -7.0, -7.0, -4.328175661438323, -7.0, -7.0, -7.0, -2.89394283598136, -3.660523976930213, -7.0, -4.209300495159705, -7.0, -7.0, -7.0, -4.219741661046302, -7.0, -7.0, -4.077694865886587, -4.291790506385784, -3.989746365634447, -3.273783014280978, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2431869241314715, -3.4578272491973956, -7.0, -7.0, -7.0, -4.215505378231819, -3.9240207004740677, -3.9222841941001536, -7.0, -7.0, -4.012204296030743, -3.945099129999455, -4.338615838490599, -3.7461474853576635, -7.0, -7.0, -7.0, -3.561172964752188, -7.0, -4.397592434038117, -4.225800170570545, -3.6808533012337556, -4.228374690421907, -7.0, -7.0, -3.9305924884425982, -4.327481541402221, -3.918833842068481, -3.542908378823037, -4.0543065658484, -4.238798562713917, -7.0, -7.0, -4.235301140319991, -3.968996326648312, -7.0, -7.0, -4.216772698429039, -7.0, -7.0, -7.0, -7.0, -7.0, -2.952182327565487, -4.233732009366046, -4.26672546703192, -3.9383695974518065, -3.1145707251839956, -3.7701152947871015, -7.0, -3.590495072886447, -7.0, -7.0, -7.0, -3.7693527055096814, -3.3524281101826423, -4.277609214304091, -4.339670024244455, -7.0, -4.280965148097093, -7.0, -3.7111774515498808, -3.519621762715661, -7.0, -7.0, -7.0, -3.7290634965186893, -3.122019172080031, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.317059958740005, -7.0, -7.0, -3.067901916340883, -7.0, -3.374460999517715, -7.0, -3.0249743375432385, -4.2249472187770865, -3.061928418293076, -2.628959492782499, -3.6375697764175206, -7.0, -7.0, -7.0, -3.3284702135959416, -3.3387153993635277, -7.0, -7.0, -7.0, -7.0, -3.9599710276712154, -7.0, -7.0, -4.22577434814393, -4.003482073960254, -7.0, -3.245805023585475, -7.0, -7.0, -4.440271334091512, -3.670112435506491, -4.235339033014061, -7.0, -4.3511518573324075, -3.594768113447505, -4.367206781435987, -3.5916369257764496, -3.349002555514242, -7.0, -7.0, -3.6004404347082204, -4.054823640146561, -4.061471328265031, -3.8281441073037863, -4.56913972547246, -3.7985539713675216, -3.520059730604128, -3.5777707354189983, -4.258433734309274, -4.289834121485031, -4.136261504095268, -3.5380330425453947, -3.5828933782683268, -4.4543569571548876, -3.967524576101294, -4.486125728191671, -3.213154119962002, -4.254233782650147, -3.6719534541166303, -4.001935529214752, -3.801245880819417, -3.866700756042499, -3.3194114508266073, -4.247211970742112, -3.9676103703690884, -4.366815046163848, -3.689989223876995, -3.0761080654523694, -4.453731029504294, -3.626212010796037, -3.682047830196072, -2.62775226752316, -3.0071723936424135, -4.306725176782492, -3.2065325725278244, -7.0, -3.6822700751862243, -2.7070759915092815, -2.811667438451958, -2.132483316887697, -3.0912423383323984, -3.1311475216888907, -3.5400790888041724, -3.7312865070964243, -7.0, -4.212853189947111, -7.0, -1.9237936053901579, -3.267321091480779, -1.9519410519031546, -2.3197189388741886, -3.422942178067513, -3.3408720500410354, -7.0, -4.314183339137378, -3.917347937627772, -2.3231177054469523, -3.735159593090218, -3.240626535195097, -3.26549391469512, -7.0, -3.909556029241175, -3.7196745139150305, -2.8820872587514916, -3.0013009330204183, -3.6933311562440196, -3.464977031937279, -4.34478512263266, -2.926806228001346, -4.064888326512362, -4.22533513181854, -3.67258480109312, -2.0586701512560586, -7.0, -2.6071822797801416, -3.918004110480823, -3.594083019091813, -2.2389523321619205, -2.756108284585342, -7.0, -7.0, -7.0, -7.0, -3.416786079747206, -3.6133708647836684, -4.255513712819534, -3.6461795886879207, -7.0, -3.547380832120237, -2.3475855441575137, -4.259307121211679, -4.249076003683611, -3.914210891401378, -2.8652061159153597, -7.0, -1.8379213235574254, -3.2180538557946807, -4.222794481113707, -4.2522946401444495, -3.463848214050881, -3.1365498395337705, -3.1319392952104246, -7.0, -4.221414237842339, -3.637829827012092, -4.222248116858932, -7.0, -7.0, -3.9795711358729324, -7.0, -3.1841902253587353, -7.0, -7.0, -3.2945134637464593, -2.9931380494395485, -2.590357448108568, -4.208871138246926, -3.567990394261677, -4.3870693269320205, -4.228759555435635, -3.793347951733536, -7.0, -3.9383695974518065, -2.9684699766014884, -3.9093420383613084, -4.214207829654449, -3.559595448664063, -4.238522812218293, -4.312515855663387, -2.941275993039616, -3.9411137270371017, -3.9306434410421645, -4.223288219096948, -3.546542663478131, -4.104043029922009, -2.6314993658233234, -7.0, -4.283549972002684, -3.801769470209016, -3.207462994948207, -3.9959859979137993, -7.0, -7.0, -3.331280021886835, -3.5527655261018234, -2.8354255599643508, -3.792718454857177, -2.8945154378485984, -7.0, -7.0, -2.4682513982516863, -7.0, -2.382745351375009, -7.0, -3.951361807517263, -3.2295243251624277, -7.0, -7.0, -3.4379882502194996, -3.7252060359060395, -3.8211640307644217, -7.0, -3.232911444346091, -7.0, -3.8485996032997494, -7.0, -3.042395011075458, -4.006915080181949, -3.633998375410592, -7.0, -7.0, -7.0, -2.3959387783291315, -4.269676357629865, -3.750199727829182, -4.268765127447861, -3.3146220116074567, -4.251589557275781, -3.4387292874597497, -2.0712580457768963, -3.705564390520156, -3.665440268065303, -7.0, -3.3399480616943507, -7.0, -4.002856926061121, -3.463509053954063, -4.012394271505212, -7.0, -3.942528893958499, -7.0, -2.392556699913734, -7.0, -7.0, -2.9300101317088076, -7.0, -7.0, -7.0, -4.213995616368085, -4.042713299346113, -3.9401178667477184, -7.0, -3.9188163903603797, -7.0, -3.515290862441523, -3.7409676481411824, -3.6231717308866838, -3.618806141984161, -3.4141851761757067, -3.0351043958312034, -1.8413594704548548, -2.840187066673251, -2.452002523936502, -3.3782940524345144, -7.0, -2.6367613528522122, -3.0442260771126826, -3.7309436934277356, -2.0390959615616686, -3.525925466513464, -3.621954820044902, -2.4717270710635377, -7.0, -3.220155653286464, -4.212240888801534, -4.213730203854841, -2.7091972493398817, -7.0, -3.5278446323871613, -3.394301553101531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3437742207570813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.032981193097368, -7.0, -7.0, -7.0, -4.872658481383454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.864522946865742, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4497868469857735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9072178201144485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.668774060859105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.823624184856377, -7.0, -3.3081373786380386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9074855796797707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5563025007672873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2846562827885157, -7.0, -7.0, -7.0, -7.0, -3.9074727842216728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4372747974101237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019448637493637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8107028609471167, -7.0, -7.0, -7.0, -4.061703734218241, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.849927431523094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.239033680055692, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.712771724599352, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.257438566859814, -4.053820849274466, -7.0, -4.708981466496654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.830094433725594, -3.878866336956725, -2.5599066250361124, -3.803138333966474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.351127349378787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6768764319731373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.5741331702100485, -7.0, -7.0, -4.716587577675693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.577807639942444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1702543792775595, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1769589805869085, -7.0, -1.4908610661339912, -7.0, -4.3661127695587165, -2.7903438168096026, -7.0, -4.323231468114774, -7.0, -4.63274571370413, -3.281533313857376, -2.977418730245156, -4.437179581752512, -4.484337808789187, -3.8999207687549164, -7.0, -7.0, -7.0, -7.0, -3.17260293120986, -3.765985034880714, -7.0, -7.0, -3.7862055500107257, -5.0104582643132565, -5.706207250354149, -7.0, -7.0, -7.0, -3.698820388245779, -7.0, -7.0, -7.0, -3.909556029241175, -7.0, -7.0, -7.0, -4.479834341319361, -7.0, -4.207095540419218, -3.7867514221455614, -4.419663919061534, -7.0, -2.60151678365001, -4.641255916921171, -3.7241071319763024, -7.0, -4.648053456819172, -7.0, -7.0, -3.8269274294752718, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.102716997946335, -7.0, -7.0, -7.0, -7.0, -3.8599784416420206, -3.336059277866349, -3.241795431295199, -7.0, -7.0, -7.0, -4.1933055166998825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2803506930460054, -7.0, -7.0, -7.0, -7.0, -7.0, -4.000520840936185, -7.0, -7.0, -7.0, -3.947398708021437, -4.308870197167231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.244252373972473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9738664498353784, -7.0, -7.0, -7.0, -7.0, -7.0, -4.13760727050463, -7.0, -7.0, -7.0, -7.0, -4.346790960566614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.752893154884594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.150664353529561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021478732257528, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354665362435607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.634678752178682, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.390440506647526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.338257230246256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4983105537896004, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.319564066092164, -4.341869590349321, -7.0, -7.0, -4.325536187192074, -2.5497663234514962, -3.928122625143642, -7.0, -7.0, -3.5553484184305875, -3.0305044767258296, -4.03235681599555, -7.0, -7.0, -7.0, -7.0, -3.3682352170082024, -3.103352715920879, -7.0, -4.0948203803548, -2.9435609055482006, -7.0, -7.0, -7.0, -4.348810920405178, -7.0, -4.32364392313595, -3.556446313801048, -4.330677516998936, -7.0, -7.0, -7.0, -7.0, -7.0, -4.367281357632943, -7.0, -4.352645518668972, -7.0, -3.222396072786465, -4.319418389047728, -7.0, -4.350189849999334, -7.0, -3.5460488664017342, -7.0, -7.0, -3.6707281346138623, -4.032820149438564, -3.865182965998549, -2.5700731177530822, -4.362218500326052, -3.974127735076475, -7.0, -7.0, -4.328175661438323, -7.0, -7.0, -4.330657234711394, -7.0, -7.0, -7.0, -3.264745192441276, -3.2226088481959576, -7.0, -7.0, -3.6582022533870147, -7.0, -3.8069257768837317, -3.9125939977521056, -7.0, -7.0, -3.0822339210963783, -7.0, -7.0, -7.0, -7.0, -3.1419042120922844, -7.0, -7.0, -7.0, -3.4075608494863623, -4.327318057687924, -3.4650852875574327, -3.5972013888491157, -3.866622040290432, -7.0, -2.8801959980434404, -4.073663372881412, -3.8851208212759687, -7.0, -7.0, -7.0, -4.3429947829274775, -3.752969865029084, -3.176977039695874, -7.0, -3.0729847446279304, -4.3284407673684075, -7.0, -7.0, -3.26749439494725, -7.0, -4.053673748961832, -7.0, -3.611068009641454, -2.541915867977676, -7.0, -7.0, -7.0, -7.0, -2.7777500274085205, -7.0, -7.0, -7.0, -3.8984326288792706, -3.7875667325987648, -7.0, -3.6426376099687454, -3.3066225174929165, -7.0, -3.178241315561237, -7.0, -4.120738405542943, -4.032538179260007, -4.06126394230025, -4.385320224200911, -7.0, -7.0, -2.7830802719514693, -7.0, -7.0, -7.0, -3.6848553315594024, -7.0, -7.0, -7.0, -7.0, -7.0, -3.285936869490004, -3.629969946292171, -3.537705786080527, -4.098158983460533, -7.0, -4.444279064276847, -7.0, -7.0, -7.0, -4.198931869932209, -7.0, -7.0, -7.0, -7.0, -3.360285663517499, -7.0, -4.314688651046116, -7.0, -4.337199605373581, -4.318334684226136, -4.337539124196711, -4.340919793400163, -7.0, -4.354492600589436, -7.0, -4.44377913892142, -7.0, -7.0, -3.1087398391394285, -3.118078630895967, -7.0, -7.0, -7.0, -7.0, -7.0, -4.31626397191069, -3.6113439120874298, -7.0, -4.117403884416343, -7.0, -3.7073657541210374, -2.883148251980255, -7.0, -3.9207666354873765, -4.381818771625734, -4.036269495742816, -4.354089222152247, -3.862469297548378, -4.344254692556935, -4.334333097036555, -7.0, -7.0, -7.0, -4.3956233943558365, -7.0, -3.3185403196146663, -3.501333178645566, -3.6711522644269463, -7.0, -2.925922465342976, -7.0, -3.5690727925168053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.355202404658053, -2.5974514056878997, -3.114404445907608, -7.0, -7.0, -4.3217640810754965, -4.316976239321548, -7.0, -7.0, -7.0, -7.0, -3.9761206182998157, -3.234661879645836, -3.5742499683912072, -3.2336204521463214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.320561680195237, -7.0, -7.0, -7.0, -2.7215762524015634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.026839573092644, -3.9216344610537055, -4.344510165686533, -7.0, -3.7287108119954437, -7.0, -7.0, -7.0, -2.735119634081872, -3.8708718950677428, -3.694373832632661, -7.0, -3.2419168188948717, -7.0, -7.0, -4.321474151030555, -3.3313694445848774, -3.5071978624095173, -3.4676229024178253, -3.6270755470762954, -3.8315338496935043, -4.0375659279128495, -7.0, -4.318063334962762, -4.034788831251184, -3.460315136748682, -4.059165668942177, -7.0, -3.844021310509786, -4.0351294308208, -4.32054091992458, -7.0, -7.0, -3.8733981128778754, -3.6798214301325634, -7.0, -7.0, -7.0, -2.8816000105663435, -2.7837016649131177, -7.0, -3.4207366659537195, -7.0, -7.0, -4.3819810000434645, -7.0, -3.424629239099311, -3.767582527077297, -7.0, -7.0, -3.258084440350568, -4.051731196059849, -2.521009015556184, -3.2371036915866878, -7.0, -7.0, -7.0, -3.4133332990399112, -3.6877964113812944, -7.0, -4.02530586526477, -7.0, -4.320789977698806, -4.348849823480575, -7.0, -3.1709343851533065, -7.0, -7.0, -3.4326486600131068, -7.0, -3.3207928070801973, -3.80433418322736, -3.118303671078639, -7.0, -3.342504925776889, -3.472056083784771, -7.0, -7.0, -4.0296678026753225, -7.0, -3.675063091209669, -4.119057837523237, -4.406386872972728, -7.0, -7.0, -7.0, -3.2768063456287626, -7.0, -7.0, -7.0, -7.0, -7.0, -3.269087447472221, -7.0, -7.0, -2.834471862065311, -2.78093812928399, -4.288517501797074, -3.9107488776877, -3.165486586709725, -2.480575802792105, -7.0, -3.8177929968390703, -3.0230307434509927, -2.903500611912562, -7.0, -3.9069058230743323, -3.4802225985844752, -3.3453228946874667, -2.8104640202477995, -3.7154287763129235, -3.5978951269547883, -2.078442368161196, -7.0, -3.655650574589957, -4.078601800355391, -3.1618252599776655, -3.113453102441966, -3.6551064060137053, -4.040641891544537, -4.141961636010401, -3.5623193047159516, -4.073718350346122, -7.0, -3.210651511243684, -3.9371541560218692, -3.600409093134968, -3.9166013204578434, -3.599494919231938, -3.5669871327264575, -4.0323904074998875, -4.443262987458695, -2.99534861432112, -3.4708880404649234, -3.3559762530979853, -7.0, -3.547210993643507, -1.7088699103967022, -3.542389669540937, -4.092387253618812, -3.4139071836972685, -7.0, -2.952373688836708, -2.4453568207946823, -2.7130796684351948, -2.0884775551021204, -3.145479988322081, -2.8192627477807326, -4.338994048444886, -3.0045134565169995, -4.428879585851619, -7.0, -7.0, -3.8634418286137087, -2.600902666954075, -7.0, -1.6437905174070773, -2.845048881845784, -3.2851588190256975, -7.0, -3.797406049676382, -4.322529394341456, -2.586208153029271, -7.0, -3.3626772629262764, -1.4696850134258492, -3.7196745139150305, -7.0, -7.0, -3.196967937436222, -1.926279770490996, -3.6059690913902385, -3.4491222254534297, -7.0, -1.600913671489379, -3.5928341520800386, -3.85076872692888, -2.772043492449563, -3.3108505941855153, -7.0, -2.5768306637209446, -3.8458419074217574, -3.3028538166713055, -2.484184760155121, -3.9995002739482257, -4.318876874660981, -7.0, -7.0, -3.840461585060537, -4.404491617758686, -2.9391512732498355, -3.6528456212808718, -2.886184084983295, -7.0, -3.44143982425051, -2.669389205292351, -3.576667620464078, -3.501489624786272, -4.32006315959498, -3.0684388733943915, -7.0, -2.3223303532901833, -2.922689672356959, -3.8487636892493367, -4.048325250931222, -2.792495451171643, -2.985836342397358, -2.97916300467107, -4.029992175377847, -4.324878943111994, -3.0559099036346367, -2.847222944219378, -4.026900808890256, -3.865656612667585, -3.526892871450658, -7.0, -2.9919545302079595, -7.0, -7.0, -2.936127472933785, -2.5632183241547377, -3.2676516413178485, -7.0, -4.060244426898225, -3.0281644194244697, -4.02960695581261, -3.3637247690063745, -7.0, -3.5608030019939636, -2.8888096618586907, -7.0, -7.0, -4.053501002386415, -3.6392872259102367, -3.3186371431419577, -3.7223459424755814, -4.0402660074460846, -3.5546708351714558, -7.0, -3.343782654669529, -3.8734513937097477, -2.8459609051863803, -7.0, -3.012029849231654, -3.2912763272867207, -4.347037133784953, -3.57966929355472, -3.4211307158850603, -3.0880943777437477, -3.1468719030857386, -3.503771233697277, -2.271584888563998, -3.084124534836101, -3.604334073102911, -7.0, -7.0, -3.590300340253103, -4.324570517218835, -2.8598385304010416, -4.322488060518078, -2.9684051110267253, -3.1931900978616974, -7.0, -4.315088273088317, -3.1203600214031, -2.991765838498609, -2.8413415905280566, -7.0, -1.7726772486845728, -3.585667487180534, -4.409138161153864, -3.7327354312288112, -3.0132305819648155, -3.616160312847583, -3.294786768279219, -7.0, -7.0, -4.3150041726848976, -4.1573963193232295, -4.062281069972644, -3.6304888957237034, -7.0, -2.744486551338886, -3.005589957599989, -2.4546181138415584, -2.6481946989112175, -3.9171027120527055, -3.0822750248608437, -7.0, -3.4969494062444113, -7.0, -3.214578953570499, -3.0327063325812817, -3.921790485658187, -7.0, -3.3879037141941413, -7.0, -2.7490886413527207, -4.328501922685259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.122969094393747, -3.7383642922611235, -4.045538116450688, -4.022613927471968, -4.325843928293292, -3.8422138683580256, -4.021272013951038, -4.328012438855587, -2.9812830767955023, -3.0992968870134994, -2.9071724091966717, -2.4868209570763073, -2.024778530093382, -3.3135157072120407, -7.0, -7.0, -3.418908657676565, -3.5462341061067835, -4.314478175864182, -2.6397987097716804, -4.026717075588475, -4.3270522653266985, -2.563814687624541, -4.058805486675907, -3.3568477513592394, -7.0, -4.017763509129315, -3.271880311984758, -7.0, -3.438507188934901, -3.384791331426507, -7.0, -7.0, -4.432119101024855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4306071113013985, -7.0, -3.3727419230221223, -4.19728055812562, -7.0, -7.0, -3.104207672494023, -3.1237699989926178, -4.441270843420499, -7.0, -4.426933964071905, -7.0, -7.0, -2.933261259967396, -4.054651350441742, -7.0, -4.013567461993526, -2.702714399048319, -7.0, -4.432504298861027, -7.0, -3.9761359127824605, -7.0, -4.433657846692988, -2.57835482977221, -4.1380657456377685, -7.0, -7.0, -7.0, -3.9749566587701834, -7.0, -4.4679039465228, -7.0, -7.0, -7.0, -2.79560515242787, -7.0, -4.4346327661741425, -7.0, -4.440972018733961, -3.1643245251486003, -7.0, -7.0, -3.867791467345843, -3.5963457132407983, -4.147212416970458, -2.9578385224220214, -4.463892988985907, -3.9337023571451573, -3.9102641218577268, -7.0, -7.0, -7.0, -7.0, -4.439111542159727, -3.74020473550745, -7.0, -4.436321700139733, -3.699027906406887, -2.5193316846166227, -7.0, -7.0, -3.4183314286836173, -7.0, -3.8023084048433162, -3.707555983235898, -7.0, -7.0, -3.169573755223163, -7.0, -7.0, -7.0, -7.0, -2.8848854358386515, -7.0, -7.0, -7.0, -3.618526230092146, -7.0, -3.991639492650799, -4.474463945321284, -7.0, -7.0, -2.5796857514914913, -3.5705283464081514, -3.4514203359243973, -4.428669230652189, -7.0, -4.461948495203762, -4.448752683389127, -4.1572451604751945, -4.479330527707678, -4.430703778718752, -3.703538554624196, -7.0, -7.0, -7.0, -4.075814511416446, -7.0, -4.1569275555396565, -4.444091659700497, -3.485281231935597, -3.0872791930511436, -4.435286812240127, -4.431717489646013, -4.441302286693167, -7.0, -2.9035636610561455, -4.137528174126554, -7.0, -7.0, -3.997357255688633, -3.8836614351536176, -7.0, -3.1521406718110985, -2.897496181121582, -7.0, -3.919548758968848, -7.0, -3.634091414447039, -7.0, -3.560683591907453, -4.181214548490415, -4.429316152131662, -4.4363535037706585, -2.477612987408589, -4.466719371681599, -7.0, -7.0, -2.8752454704640726, -7.0, -7.0, -7.0, -7.0, -7.0, -2.493694292457702, -3.500497192859225, -3.37755264713504, -3.891286509038756, -7.0, -3.8309862157427426, -7.0, -7.0, -7.0, -7.0, -3.564324069003793, -7.0, -7.0, -7.0, -3.4242636158693003, -7.0, -7.0, -7.0, -4.143155376433176, -7.0, -4.143420785129937, -4.447127009199851, -7.0, -4.457791093970606, -7.0, -3.8305758385257054, -7.0, -7.0, -3.172282884840051, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431251154695155, -7.0, -3.9380817075075885, -4.131169383089324, -3.2585606639293814, -7.0, -2.864649035534284, -2.9548180739640073, -4.438447410654374, -4.015233976246709, -4.178415740979452, -4.444325902788053, -7.0, -3.843995394703985, -4.4497405937792855, -7.0, -7.0, -3.883391691428558, -7.0, -3.5872478073521594, -7.0, -2.8470047440551416, -7.0, -4.08181520063228, -7.0, -3.6275137828715196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.910911595998181, -3.2789973469852707, -7.0, -4.458350742139663, -3.611103456465005, -3.2934405530022266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.935343492830046, -3.3025329462561266, -2.909261218458848, -1.9021018307478776, -4.426494995349033, -4.432809005033168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.448072189065087, -2.931778936116568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0159322888519835, -4.14888016912823, -4.032846994195768, -3.9144489406985543, -7.0, -7.0, -7.0, -2.446088626264233, -7.0, -3.3665307092379146, -4.437306531324273, -3.020478867616935, -4.438890277816841, -7.0, -7.0, -3.0385358691662154, -3.599268842327689, -3.101710259449637, -4.021230658479703, -3.6181134975829194, -4.445339498742793, -7.0, -7.0, -4.443169075796116, -4.163980869053427, -4.1612631598785494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153662453575496, -3.939319531078238, -4.141136090120739, -7.0, -7.0, -2.217429614958867, -4.532996293865759, -7.0, -3.045637778266747, -4.428895762801387, -7.0, -3.5251312252008757, -4.4501875018958374, -3.7029841305063393, -7.0, -4.510732627784333, -7.0, -4.472024697700282, -4.456457134303779, -2.818836872130782, -3.2970778706412265, -7.0, -7.0, -7.0, -3.6598075789270585, -3.4040493408544776, -3.654705846613685, -7.0, -4.460521992900201, -4.130382020756808, -7.0, -7.0, -3.8934704707737686, -7.0, -7.0, -3.40426340205091, -4.43663963169266, -3.0725599244856134, -4.005935151237362, -3.0525460952777084, -7.0, -3.1495805394955223, -2.6703693435998876, -3.6054531982661273, -7.0, -3.9619902874400648, -4.129432074155575, -3.242468347967402, -3.1480121795527896, -3.897063242076261, -7.0, -7.0, -7.0, -4.158241837980873, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5602579264510434, -7.0, -7.0, -2.953117307835683, -2.9529809709830217, -3.6982359091337726, -3.068685255866622, -3.6872334601981325, -3.0639439848052312, -3.626224848161194, -3.2578185183129036, -2.6732086953863448, -2.828027239737565, -3.7025454139708356, -3.2684562775010506, -2.965273657696096, -2.5922392313282705, -2.628036885368468, -3.56374570715459, -3.6353950338165637, -2.50580220363097, -3.527067191319761, -2.6390580531496957, -7.0, -3.4408127327621263, -2.65653375964828, -2.7879229050489425, -3.335647312963058, -3.8331015573439173, -3.0165246700574415, -3.0623521379767524, -7.0, -1.9910194262396508, -3.353862824646005, -3.390876255625289, -3.6751181523167986, -3.475588180969073, -3.9734049744100606, -3.681094185704896, -4.052052348542061, -2.885201898527871, -3.5047217366334786, -2.8880890751037303, -3.9617374047008993, -3.1472659700294767, -2.870044039039802, -2.491027393657021, -4.011612729219424, -2.8635424688134687, -7.0, -2.1213684437968094, -2.5299337271288262, -3.866272566911813, -2.123189899230609, -2.632357524451859, -2.8358079642440264, -3.2690924557404304, -2.3796810920364257, -3.403199740672326, -7.0, -3.210492416869035, -2.7881858354814497, -3.791297571494794, -7.0, -2.5532584907282443, -2.060945385706451, -2.919740203125908, -4.431444181617213, -3.5904238285747008, -4.43279297319493, -1.8587823323091992, -3.304638606422875, -3.5670557889077523, -3.1667943211978447, -2.8820872587514916, -7.0, -3.196967937436222, -7.0, -2.3106756566094355, -3.0035036147425362, -2.7773655477127432, -2.7201726455814055, -2.726772703727427, -2.741518756968152, -3.7379238051278323, -2.8439050429734927, -2.0514974698808905, -3.2199917955016972, -2.080310862052228, -4.433193591714845, -3.0478515240423842, -2.422114838495176, -3.185409929405979, -7.0, -4.427745699349721, -7.0, -4.429025156711519, -4.1966182713302445, -2.9458123456233185, -3.4555300473427017, -2.643589159589936, -7.0, -4.450172098924372, -2.68206380784874, -4.458199556981169, -4.150695051142714, -3.585589628962412, -3.356913217543442, -7.0, -2.3198753769375866, -3.2783391091415632, -4.435462120559821, -4.453776859690442, -3.820179558051817, -3.975829920744224, -3.4897897886159925, -4.439427438654527, -7.0, -3.554448777421438, -7.0, -7.0, -4.147583582421641, -3.325310371711061, -7.0, -3.240370929872415, -3.951353711427746, -7.0, -2.124052746679584, -2.9567902084396147, -2.474475717141794, -7.0, -3.9859949811851734, -3.3387676596864866, -4.1380657456377685, -3.2607866686549762, -7.0, -3.8435909077665396, -2.521296614270463, -4.427924077684321, -4.430220226321072, -3.75876054390998, -3.189365525398271, -2.947587749368504, -4.434345312562829, -4.146391634457859, -3.838801882249584, -4.134702916820561, -4.1485872321429795, -3.1574084097585495, -2.8733517463155307, -7.0, -3.0104754173446038, -3.3564524365081927, -4.451924528420122, -3.3743061732665587, -4.434329337337729, -4.430220226321072, -3.7552394576339077, -3.60826617378758, -2.4007377331885125, -3.35065050865804, -2.3624824747511743, -7.0, -4.4353824437324185, -3.0908978446864057, -4.434377261250224, -2.5815216458876193, -4.432760907742915, -3.307343198044698, -3.0815606548059806, -3.239033439221906, -7.0, -2.877277570359336, -2.8247133373599675, -3.483059261945647, -4.155184159694008, -2.7019244639680973, -3.066653852292839, -2.9322405937904947, -3.4007263285869342, -3.136931851267557, -2.7245865742611057, -3.23914300480277, -3.7422536699065936, -7.0, -7.0, -3.067832201725068, -3.4645193538566796, -3.9611203854246293, -7.0, -3.301514687266299, -4.152273052054602, -3.248261207021154, -3.089063955206904, -4.012288739834607, -3.258921492187305, -4.1336985461157765, -3.5448893247242212, -3.5817221599490985, -3.2824096712156043, -3.188633231831517, -3.4929837628169764, -7.0, -2.879018344912913, -3.9631264410819047, -2.433620111870197, -7.0, -4.432760907742915, -7.0, -7.0, -4.429219175321009, -4.428329210721689, -3.827934392823744, -3.7352261832683493, -3.2422462910244345, -2.9735742390073434, -7.0, -7.0, -4.129319230615535, -3.9554632507055585, -7.0, -3.957192106805308, -3.9811841373983543, -3.6677641635674796, -2.989371940260124, -3.2752029198527173, -3.1076338783998296, -3.0550755705285217, -7.0, -4.171741076116891, -4.133331291536332, -7.0, -3.028684194331513, -4.13581616679784, -4.436305797450854, -3.6266336114657944, -3.2855273048983347, -3.505436397572418, -4.127962816184046, -4.42992983624063, -3.3759073599933274, -7.0, -3.232699706990279, -3.8437465242516153, -7.0, -7.0, -4.481643246275584, -7.0, -7.0, -7.0, -7.0, -3.886596465825174, -7.0, -7.0, -3.7839035792727347, -2.6416882303329805, -3.968302789055736, -7.0, -7.0, -3.3596170445871087, -3.1409591869267732, -3.7866662580150985, -7.0, -7.0, -4.48058896756481, -7.0, -3.09207170551119, -3.449504111539399, -7.0, -4.332674059671321, -2.4024357720287437, -4.7858279199958655, -4.004636588688825, -7.0, -4.315123310117041, -4.185237503623307, -4.084347453490981, -2.9170845376550236, -4.183725258045579, -4.78141067367645, -7.0, -4.306324931691518, -4.490688716713189, -4.782365112225669, -3.65270899188202, -7.0, -7.0, -7.0, -2.709217217996484, -4.480868923687168, -4.482766425369471, -4.792769781353479, -7.0, -3.330569333851446, -7.0, -7.0, -3.8456147497502875, -3.9417740027353023, -4.789968302089217, -2.0056119598463003, -3.797025044005262, -3.5307630187585595, -3.8659983698441036, -4.78353913333115, -3.705614291809137, -3.4542903824586904, -4.785251512550317, -4.086793908154067, -3.70656844127109, -7.0, -7.0, -3.371717619876, -3.0252416887994142, -7.0, -7.0, -3.681248197167286, -7.0, -4.036741978159807, -4.330332589222979, -4.781504057208732, -7.0, -2.57570289904199, -7.0, -4.492529914411559, -7.0, -7.0, -2.9192976711334797, -4.792118418302425, -7.0, -7.0, -3.1337263032129754, -4.307503169126945, -3.242658737113416, -4.324940602014902, -3.312952693706642, -3.748011735352916, -2.4603389393750867, -3.8016643457002885, -3.5683870164605773, -4.781151968281956, -7.0, -4.194146492730399, -4.790186609533173, -4.095538954876556, -3.3890706245373754, -7.0, -3.2560955895173525, -7.0, -4.4796256894432895, -4.780554920725867, -2.900191278044629, -4.780950646376869, -3.891230722978062, -7.0, -3.1940064148643312, -2.3571042909697755, -7.0, -4.305358535963103, -4.786808188955903, -7.0, -2.7901816398064154, -4.785586064349684, -7.0, -4.491781775584165, -7.0, -3.807338807112571, -4.785707009008745, -3.42645897557501, -2.8899288750065226, -4.784039275096961, -3.7456147202331636, -7.0, -3.4922343499973505, -4.4858136687807795, -3.6508831472750027, -3.6294979442363786, -7.0, -7.0, -2.5086063508026295, -3.8952774807183097, -7.0, -7.0, -3.5050664521186863, -7.0, -7.0, -7.0, -7.0, -7.0, -3.25723537950945, -3.8145272659128477, -3.527536166563112, -4.112088634880837, -4.784695729544385, -3.7498007079602984, -4.479798374009022, -7.0, -4.1852233285961535, -3.648658790620699, -4.221394674587222, -7.0, -7.0, -7.0, -2.8680655566461386, -7.0, -7.0, -4.490021721589144, -4.48708178619026, -7.0, -3.7467120225166606, -4.312297271757502, -4.795156749400232, -4.794327683619487, -4.790615862092096, -3.787396063026728, -7.0, -7.0, -2.589920354236246, -4.3059386314136505, -7.0, -7.0, -4.484036334901612, -4.305609289566193, -4.782300592283702, -4.780828369673003, -3.3287108050659557, -7.0, -3.4992745818922173, -7.0, -3.211354185453311, -2.166767369596477, -4.086495081663903, -3.8105013477665297, -3.804330289065253, -4.089148851582349, -4.794181213459668, -4.186899856567887, -4.489592899821886, -7.0, -4.311880953037904, -3.6310512384048725, -4.084483332544515, -4.110697428903857, -4.780014713076167, -2.8922274521845277, -4.189399065777632, -3.682564456357042, -7.0, -2.9465007841151127, -7.0, -3.3853347960853286, -4.783982145180654, -4.010858016949204, -4.083660255881591, -4.48266638715213, -3.9705726665984176, -4.79328038282763, -7.0, -3.302805567509679, -2.7085475735379623, -2.8427392173094055, -7.0, -7.0, -7.0, -7.0, -7.0, -4.783346067476675, -7.0, -4.783989286831195, -3.6865724352823293, -3.690134715405524, -3.2026422864977273, -2.4091530701680073, -7.0, -7.0, -7.0, -4.786914606730178, -7.0, -4.781504057208732, -7.0, -4.789510204090254, -7.0, -7.0, -7.0, -7.0, -4.305157828786486, -7.0, -7.0, -4.011655010724778, -2.5100624294816565, -7.0, -4.780691666721215, -7.0, -7.0, -4.4837726704803105, -4.182236275432045, -7.0, -4.182756931040399, -3.2083741645947104, -3.3924507246560327, -4.217075778865637, -3.9192284996576987, -7.0, -7.0, -7.0, -2.514314591877321, -7.0, -3.3604271516917166, -7.0, -3.1767011903680267, -4.007498847687, -4.481270596619721, -4.782623096183696, -2.912822005835123, -3.861175835513029, -3.5377435590296185, -3.4910280061636856, -3.545801757159276, -4.788634951620105, -7.0, -7.0, -4.486607561214442, -3.7975583584025268, -4.79642167893092, -7.0, -4.782537118557698, -7.0, -7.0, -3.944306380496884, -7.0, -4.093890749991982, -3.254630748387398, -3.6730989213414653, -4.1945906489052245, -4.311669112400611, -2.476428154161269, -3.051692641798037, -4.781748196171954, -3.149966494141885, -7.0, -7.0, -4.327365746795361, -4.790840874214755, -3.1387572849361476, -3.8967466156074058, -4.217424718200872, -7.0, -3.624660176608305, -4.793713573408255, -2.6003021925239067, -2.7473405850027395, -4.780540523905541, -7.0, -7.0, -3.640474811527331, -3.0981345283359283, -4.783088512755294, -7.0, -4.49454417069265, -7.0, -4.190184573508741, -4.482087141826486, -3.1213253059294366, -4.784709989279148, -7.0, -3.143116671590088, -4.784709989279148, -2.6950585421423634, -3.9713944077328507, -2.562282086714992, -7.0, -2.6249296556243613, -2.39720514363694, -3.672243038508735, -7.0, -3.706511535925743, -7.0, -3.052638985331171, -3.673027493285839, -4.114877749892836, -3.947139517642829, -4.780950646376869, -7.0, -3.3632985230168235, -7.0, -4.784381896864668, -4.1828994675482605, -7.0, -4.481865250764642, -2.4626554649657124, -7.0, -7.0, -2.9915637971969784, -2.8413924052352826, -3.940665872475829, -3.0065950651517146, -3.356626730102122, -2.465351428272144, -3.4483326556439904, -3.064748596192895, -3.063948902114075, -2.4880405338781713, -3.690993032099869, -3.522726715604926, -3.0364389585099576, -2.7944497727116784, -2.8167527448722613, -3.7334005839920277, -2.629580836403122, -2.4515092648300474, -4.003786622914721, -3.041160061689073, -7.0, -3.051022393331254, -2.865258990838749, -3.0324195952491424, -4.258864665172021, -3.2861890569077867, -3.0582815767255327, -3.0831846311384115, -4.793042643127849, -2.9296487854824935, -4.171820028914312, -3.1166603796090073, -3.074875572578264, -3.3860154118710715, -4.489979561169549, -3.534775285671484, -3.5980498568165213, -2.858068551271974, -3.6205524447294355, -3.1285888003429183, -3.785607409972391, -3.264174369359504, -1.9045744446491906, -3.3822036435596736, -3.6625824599965613, -3.1530013881396495, -7.0, -2.308277941800968, -2.9558251417989614, -3.5437508246183773, -2.3073306678011605, -2.5368523462149337, -2.7234799365560174, -3.408225827891581, -2.8188354859318134, -4.044624677304607, -7.0, -4.343014497150768, -3.2876715574381974, -3.265121183675147, -7.0, -2.366179004261212, -2.092560220395226, -2.4974588609355894, -4.481342284852483, -3.8568966428983535, -4.180885369444393, -2.179117652198935, -3.004995610796561, -2.778917466444301, -2.2278193953785186, -3.0013009330204183, -4.479834341319361, -1.926279770490996, -2.3106756566094355, -7.0, -2.8958180100741187, -3.2797125608209257, -3.7797014123145414, -1.8306118315036168, -3.2753785478707846, -4.483836819803626, -2.4917169691818404, -2.499166668224345, -4.024478826207317, -2.1337589216397337, -4.482122920092511, -3.191355575615615, -2.318268587392731, -3.453553118913122, -4.78172666001846, -4.780742035973011, -7.0, -4.3041600855231055, -3.9679823208536535, -3.165020412803073, -3.7932873732019723, -3.0425986729597225, -7.0, -4.091807597001675, -2.4987805579480185, -4.493471992809347, -4.314407994796529, -4.304985720206672, -2.880308304868466, -7.0, -2.022161631575954, -3.0271184662702364, -4.307032257669135, -4.19038072865045, -3.174047934618734, -3.1287433422317372, -2.8304941217738633, -4.785963015980978, -4.181700704415961, -3.517347676486939, -4.306882315060308, -4.78488106958609, -4.489093245592739, -3.6245639690895306, -7.0, -2.71726052749008, -4.781094457259969, -7.0, -2.3559024079364916, -2.5223114231876465, -2.7833468581688714, -7.0, -4.319668091214678, -3.0569048513364727, -4.7858279199958655, -3.2922491469632345, -7.0, -3.9436358188134504, -2.7955380509603387, -4.780821175853473, -7.0, -3.471857266930764, -3.8342016289315226, -3.5800524263882556, -4.306532247519607, -3.9444121640759975, -3.9414688387364754, -4.182214865267536, -3.8362396965244656, -3.696019208407526, -2.8598885038757995, -7.0, -3.2571915630244033, -3.596019484843069, -4.314485193347227, -3.664136414560668, -7.0, -4.781841507164946, -3.2283040948254293, -3.7130422969110426, -2.338984518829484, -3.4549279706167253, -3.5257742727724612, -4.78875505029906, -7.0, -3.570069212412138, -7.0, -2.686099771995916, -4.481929682430211, -3.449807869542202, -3.0207886311085175, -4.310707470041913, -7.0, -3.01307433535058, -2.8425115981217535, -3.358750423731978, -4.4925718279855245, -2.58954640724269, -3.894620626740205, -3.700876708376904, -3.4252789783622632, -2.6217016393133123, -3.8549332403885326, -3.4258672276790443, -4.7868294745969555, -7.0, -4.780396529447265, -3.8385500169443825, -4.496521440773309, -4.308308242998225, -4.496251398039319, -3.016708424906099, -3.9470974721907366, -3.0510589270197617, -2.1165112778013424, -3.964030532827803, -3.2524230295413887, -7.0, -3.613644530590093, -7.0, -3.345231725806989, -3.175525297628974, -4.509974959845468, -4.780598108323546, -3.643685271947555, -4.309211282891381, -2.181096235879441, -4.086039331268039, -7.0, -4.780634094707888, -4.780554920725867, -7.0, -4.781000985603031, -4.7817840873880515, -4.3437432950100945, -3.9441300172530784, -4.791480116020001, -4.783388978417696, -3.7840107110782126, -3.878722811233517, -3.7827950003893553, -4.085868301491028, -3.6695814827928674, -3.1407663501232905, -3.2570217673283017, -2.0227566114894464, -2.8337180367331363, -3.2768198514902487, -3.48313065555793, -7.0, -3.3095340131587996, -3.742167894637497, -4.7802164692102265, -2.099685469420008, -3.6707024644784183, -3.8813703893061944, -2.961104552884867, -3.951108444044104, -3.347775931528265, -3.8269525871117778, -3.82735491122635, -3.0070688591807055, -4.081865559037354, -3.361201508369878, -3.5098813506672766, -4.785664326504347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.912323043506921, -3.9271136119337604, -7.0, -7.0, -3.323366704864766, -3.446159780273893, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0335648288946877, -7.0, -7.0, -3.5969817431335205, -3.140506887703148, -7.0, -3.604657972047871, -7.0, -7.0, -7.0, -3.612359947967774, -3.6058831910843505, -7.0, -7.0, -7.0, -7.0, -3.7223047868743278, -7.0, -7.0, -7.0, -7.0, -3.6088468223264116, -3.2372064601272545, -7.0, -7.0, -7.0, -7.0, -3.8837182019639593, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1542227520047104, -7.0, -4.052924683707729, -3.6762362167633116, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.629715332647132, -7.0, -2.7564701305444474, -7.0, -7.0, -3.160543558238841, -7.0, -3.461048091670658, -7.0, -7.0, -7.0, -4.021920461493033, -7.0, -3.442244527847952, -7.0, -7.0, -3.254628628807601, -7.0, -3.605951157564873, -7.0, -7.0, -7.0, -3.805160901599434, -3.8305886686851442, -3.1048284036536553, -7.0, -2.9011418058474736, -3.350377253413796, -3.359392744171009, -7.0, -7.0, -7.0, -3.226342087163631, -7.0, -3.5504729571065634, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8019864946643342, -7.0, -7.0, -7.0, -3.031581570404944, -3.319586473608658, -7.0, -7.0, -7.0, -7.0, -1.7604028989952634, -7.0, -7.0, -7.0, -7.0, -3.577319426553794, -7.0, -3.9583966309230707, -3.5480930182552797, -7.0, -7.0, -7.0, -5.008123037385538, -7.0, -3.7824009524965296, -3.562827966219992, -7.0, -7.0, -3.323889335413958, -7.0, -7.0, -7.0, -4.123884293460008, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6801411837154883, -7.0, -3.766710207262259, -3.431202884556517, -7.0, -3.1895304166110634, -7.0, -7.0, -7.0, -3.688568121297955, -2.7933974567588, -7.0, -7.0, -7.0, -3.580605691790701, -7.0, -7.0, -7.0, -3.67797175281074, -7.0, -3.2020339865636913, -7.0, -7.0, -7.0, -3.7090154169721172, -7.0, -7.0, -3.3164945392223113, -3.7329078712997776, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5961570809161723, -7.0, -3.4638183615294293, -7.0, -3.7469648528798047, -7.0, -3.9305924884425982, -3.35074194501045, -3.643156465619706, -2.9036325160842376, -3.8522359394118872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.086537783753207, -7.0, -4.402278581895561, -7.0, -2.856815171198087, -7.0, -7.0, -7.0, -7.0, -3.6020599913279625, -7.0, -3.944285220688753, -7.0, -7.0, -7.0, -3.6364043058455713, -3.3175619366212463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7567881987681178, -3.5491872461344083, -3.322115878973958, -3.858260579266509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7822575736633017, -7.0, -7.0, -7.0, -7.0, -7.0, -3.325207689482919, -7.0, -7.0, -7.0, -3.232911444346091, -3.9691362335967124, -3.9915361753000314, -7.0, -7.0, -7.0, -3.299362001114019, -3.4243098202457563, -2.6968803716827625, -3.635986111800833, -2.6946371018559296, -7.0, -7.0, -7.0, -4.1165745397769165, -3.6414741105040997, -3.3147798252899086, -3.4500437195797073, -7.0, -7.0, -7.0, -7.0, -7.0, -3.486288760960566, -7.0, -7.0, -3.5997739391463885, -7.0, -7.0, -3.6952189189051508, -7.0, -3.4348083386530925, -3.76867509238787, -3.666049738480516, -7.0, -7.0, -1.7579431527357852, -7.0, -7.0, -7.0, -7.0, -3.64018319192134, -7.0, -7.0, -3.612289256263882, -7.0, -7.0, -7.0, -7.0, -7.0, -3.943918286779118, -3.551165254706615, -7.0, -7.0, -7.0, -3.1730405075510624, -2.663347505203127, -7.0, -7.0, -3.4643404846276673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2676996034544477, -3.6317480743965693, -3.9731047522149807, -3.66337107549875, -3.963282084212685, -7.0, -3.6744937172963503, -4.253814369244739, -3.9646367037885013, -7.0, -7.0, -7.0, -3.8258154449852038, -7.0, -7.0, -3.72916478969277, -7.0, -7.0, -3.156927555539657, -7.0, -7.0, -7.0, -7.0, -7.0, -3.398981066658131, -7.0, -7.0, -3.0607488707845385, -3.648826818285013, -7.0, -3.571475903681944, -4.73917663191073, -3.650760688764963, -3.25478968739721, -3.4789579468006946, -2.7508663941909006, -3.259218324497471, -7.0, -3.6698745024898027, -4.74498886151134, -4.710654609665483, -2.5387173259661746, -4.390687877285511, -4.100405011565889, -3.239644774897795, -3.844880838468393, -2.2407895320869433, -3.8449118739121406, -4.071403283531469, -2.785547323317465, -2.6558292129755996, -3.6011905326153335, -4.391464411839103, -4.688108228551808, -3.5699120543965486, -7.0, -2.904181310719912, -3.9455178220778397, -4.228716809495001, -7.0, -3.42949850224274, -2.867804085032966, -3.885134966063434, -4.03249788285711, -3.721412123150759, -3.6658154279909354, -2.770498543514735, -7.0, -3.619997169624987, -3.2782344594580577, -2.9965514700448734, -3.589279221235967, -3.3483933771587093, -7.0, -3.132373881522234, -4.116441697539312, -7.0, -3.011598634469503, -2.735672303650337, -3.328388098944101, -3.0835026198302673, -3.3093746249166704, -7.0, -7.0, -3.0723418215173193, -3.173105296195781, -3.896691526562884, -7.0, -3.1856494511134392, -3.035348556674808, -3.993102029263803, -7.0, -3.909609510490169, -7.0, -3.015783409685465, -7.0, -4.933753789312102, -3.180670552957893, -3.6933311562440196, -7.0, -3.6059690913902385, -3.0035036147425362, -2.8958180100741187, -7.0, -3.5934632939080027, -3.079723775139919, -2.828062666544521, -3.4514794051248616, -7.0, -3.0447595861672774, -3.0729382721626735, -3.5351041538013934, -3.8222277099699213, -7.0, -2.853211334503317, -3.1784708516886595, -3.7593089314156347, -7.0, -7.0, -7.0, -3.580696939712437, -7.0, -2.764723060841219, -3.440436766105774, -3.2670308532927654, -3.591064607026499, -3.234179705196503, -3.255548160131223, -3.452706226511029, -7.0, -7.0, -3.246301577171691, -7.0, -3.1653432655224587, -2.962606072924127, -3.6241789257480224, -7.0, -3.6184403542867676, -3.7269715836828765, -3.195954973023525, -3.6492374723496073, -3.1411360901207392, -7.0, -7.0, -7.0, -7.0, -3.2163638637641165, -7.0, -3.6536626598692936, -7.0, -7.0, -4.630692236153442, -3.537274397054826, -2.0276750310603933, -7.0, -7.0, -3.120281378495627, -7.0, -3.311541958401195, -7.0, -3.209336255749449, -3.208916571076424, -7.0, -3.287801729930226, -3.149603954933024, -3.2060158767633444, -2.247373072874618, -7.0, -3.219060332448861, -7.0, -7.0, -3.1061908972634154, -2.8549130223078554, -3.09968064110925, -7.0, -3.526016021340753, -3.512817758564873, -3.419955748489758, -2.9131576276683173, -7.0, -7.0, -3.5685537120494426, -3.7298125071609354, -3.2391839343012987, -3.485863329597335, -2.899881272661842, -7.0, -7.0, -3.4101443047027806, -7.0, -2.5448786068287874, -2.8271537957574657, -2.952550293898202, -3.379169496092038, -2.593286067020457, -7.0, -3.1969127457115927, -3.038269981689261, -3.5671440451956573, -7.0, -3.255736247252979, -3.4875625602563782, -3.938519725176492, -3.667452952889954, -3.1917924531631767, -2.5295307808865464, -7.0, -3.6609602917760835, -7.0, -7.0, -3.7181195409349796, -3.78625439578978, -2.9425041061680806, -3.3060674363555953, -3.1213253059294366, -7.0, -3.072029200827922, -3.885632569294887, -7.0, -3.001156577199942, -7.0, -3.7007037171450192, -7.0, -3.8830933585756897, -3.4186326873540653, -2.760260885474593, -7.0, -7.0, -7.0, -2.7937903846908188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5881596163830918, -2.617410633529217, -3.693023067923694, -7.0, -7.0, -2.7772196208195874, -7.0, -7.0, -7.0, -7.0, -3.2773035345575963, -3.6886867242841235, -3.6036314622515433, -7.0, -3.588103560302743, -7.0, -7.0, -3.823213313282668, -7.0, -7.0, -3.9387698227831174, -7.0, -3.629613445378183, -3.5180530800797216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.889077492650064, -7.0, -7.0, -7.0, -3.912753303671323, -7.0, -7.0, -7.0, -2.9091011725201548, -7.0, -3.2314695904306814, -3.7341061109103197, -3.3153404766272883, -3.676733145302988, -3.36384170456394, -7.0, -7.0, -2.3920825172342264, -2.7703473589832392, -2.9975919432613582, -7.0, -7.0, -3.9088333870375656, -7.0, -2.6171168833145146, -3.4135977618504896, -7.0, -3.1601897454261945, -2.3455343675432965, -3.7481363222044366, -3.9133899436317554, -7.0, -3.771121828334957, -3.6286187898185123, -4.216377057988173, -3.518114068443985, -3.9242792860618816, -7.0, -7.0, -4.216746333609975, -3.9453700944903036, -7.0, -3.1569915605680214, -7.0, -3.554004321011903, -4.215505378231819, -2.9196207980200626, -7.0, -4.217983753176437, -2.8338823321356137, -3.927293353644034, -2.999456792322048, -7.0, -7.0, -3.672490393581568, -3.752227765448041, -7.0, -2.5481092893492856, -3.9640945574951996, -2.3974222428995087, -3.6404019249815684, -3.7397568869831948, -7.0, -3.9635989625972416, -7.0, -7.0, -7.0, -7.0, -3.073953889255577, -2.8378363553807753, -2.8700962645020613, -4.210318519826232, -7.0, -2.9571042293287895, -7.0, -3.623889919047242, -7.0, -7.0, -3.7857330906965307, -2.7883027995907916, -7.0, -3.7756589833754215, -7.0, -3.611059147483494, -2.556113963980344, -3.0429444862795263, -3.913707913980483, -4.205177287388274, -3.0089548426529267, -7.0, -3.1262010075957805, -2.048802363539486, -3.2415962821540716, -7.0, -2.2379135844464617, -3.104031637246626, -2.431162655342287, -7.0, -7.0, -3.358672330617676, -3.939918420369057, -3.109554442867644, -3.0581579690126945, -3.910410939914688, -2.9674602192761386, -7.0, -4.2063130519359575, -7.0, -2.999878380517545, -7.0, -2.6102729187647107, -3.153713263108388, -2.7659751825768173, -2.1562617891349682, -3.74183416300906, -3.513989584700717, -3.1491677745760125, -3.7552648914122466, -2.8754980695455994, -4.224481265303632, -7.0, -4.250273586232247, -4.281873856870123, -3.219650005970414, -3.923839598909276, -3.2802795193979817, -2.184145217084545, -4.218824238677402, -4.0522128357697484, -7.0, -2.8748631189600693, -7.0, -3.1185717564889077, -3.214203409601812, -4.209193195719529, -3.743588150159904, -2.245179416380027, -2.837050380417555, -7.0, -4.2066100238992234, -3.511259310502346, -7.0, -7.0, -7.0, -3.2089516750078246, -3.6037125907704572, -2.379380373882321, -2.7765766670051226, -3.1326089412441998, -3.465616508703862, -3.442819337136645, -3.5872244024425086, -7.0, -7.0, -3.4523743044357436, -3.3172112567454075, -2.5613164825661228, -7.0, -3.2589032153035102, -3.443289070428097, -2.6364360144838876, -7.0, -7.0, -4.244103863376508, -3.534483017704701, -7.0, -2.641092581460935, -3.9372921607115727, -7.0, -7.0, -7.0, -4.0638960381259945, -7.0, -4.217720767530819, -2.8050057580560037, -3.738093174367565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3385651441864757, -3.9129390867507183, -3.3639502593966446, -7.0, -3.0403316283858697, -2.6037090637586675, -4.224248100962593, -4.008344629252689, -3.2098723115450163, -7.0, -3.7777650391693047, -7.0, -3.3971948649686743, -3.7527908536104846, -3.9358094538099326, -2.2815849084078117, -3.313418991194657, -3.461198288622493, -7.0, -2.51853172389058, -3.768416088216332, -2.633828187038318, -7.0, -3.183586154317256, -7.0, -3.7272768587594616, -4.218614269745094, -3.9359856330811804, -7.0, -7.0, -3.5471180513494303, -3.7746385998091383, -7.0, -3.1096267509648063, -3.3280736545131555, -2.9247768693591403, -7.0, -7.0, -4.2139690824147, -4.207822799001508, -7.0, -7.0, -7.0, -4.218640521413849, -3.3760291817281805, -3.2884504482756363, -3.1856763274980158, -3.072943861541842, -4.204499824171151, -7.0, -3.917137752756444, -3.6270840883619675, -7.0, -3.9083509566822143, -7.0, -2.5929838089301427, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.121126149683747, -7.0, -7.0, -7.0, -7.0, -3.1797606367964804, -3.5207454715194824, -7.0, -7.0, -3.611340875583321, -3.46451438626162, -2.6528504508265676, -3.2661336596046886, -3.638514215690422, -7.0, -7.0, -2.22222026594213, -2.54602416180365, -2.291692966600889, -4.222378265944956, -3.2943884118784865, -3.1830626791773424, -3.911370707116138, -4.213597436747359, -3.006774003996861, -2.908773627744193, -2.6134894531087443, -3.062540203047516, -3.176207055478685, -3.332034277027518, -3.618910596192326, -7.0, -3.930872653792662, -3.965906915495192, -7.0, -7.0, -3.9121954771094196, -7.0, -4.212400702780119, -3.23807120613056, -7.0, -2.3719048431670435, -3.30252933962341, -3.9292911732550975, -4.263612400668982, -3.935053589231065, -2.681969076348861, -2.921686475483602, -7.0, -3.2876026948754578, -7.0, -3.6212541984361724, -3.8125345758070877, -7.0, -3.277485792612607, -2.9118289775122443, -7.0, -7.0, -3.800739983505454, -2.4112047787845436, -2.7231186834574888, -2.3249870307193867, -7.0, -7.0, -7.0, -3.425187657417824, -2.993964998195119, -7.0, -7.0, -3.657629431388952, -7.0, -3.168669320925909, -3.613260260001968, -2.865991800126275, -7.0, -3.750379810251768, -2.603851081315202, -3.3758725475060314, -2.615994902631364, -2.852795753117633, -3.2657370805458465, -7.0, -2.5166355178955753, -3.5226615437344733, -3.430679613881531, -7.0, -4.225438516805497, -7.0, -2.7601024937899448, -3.3818768603693616, -3.1730613335266535, -3.549346636005761, -7.0, -7.0, -2.3792692494736474, -4.213012778808009, -7.0, -7.0, -4.301702630953145, -3.9135754546260832, -2.5246492705057113, -7.0, -7.0, -3.5359188393134557, -3.572389430331052, -4.057552001054533, -3.451742587325767, -3.713348361235772, -2.632468416673561, -3.3644008892496857, -2.957830681368091, -2.320932608707785, -3.1201061374514323, -3.9905830212758984, -3.9511431601075526, -3.9870211101488646, -3.8056405409252037, -2.8151564335444066, -4.090422660853439, -3.843412744894163, -2.5244555335652943, -3.642579921057928, -3.353423308704367, -4.2868829198267875, -4.034566629756843, -3.4571372583035815, -2.618276682014942, -2.827830650428466, -3.8690438760940067, -3.7068955023874866, -3.234812449442134, -7.0, -1.6926772003490882, -4.176149161126549, -3.897276490656009, -3.609772216589793, -3.794975744051132, -3.9428757745535403, -3.8405765344542693, -3.5860056057388867, -2.9519418546272673, -3.4104397862103464, -2.12827185996548, -3.747800090864369, -2.7563080253465677, -3.0988414244579596, -3.1625830742133614, -2.855562418553915, -1.9523585217464556, -2.449441664614968, -1.5814191386454624, -3.5601629215805253, -3.79509178180048, -3.3566899315482526, -1.9690079356415473, -1.960426769803533, -7.0, -1.8633124773794558, -2.1022194978435347, -7.0, -1.9837359712978422, -3.638988159343682, -3.7041290590724634, -3.623042434246382, -2.7895232336183433, -1.834346849885255, -3.8003410391868053, -3.7354924419253943, -3.1347082247787115, -4.214949760615447, -2.651785109751889, -4.334694958867158, -4.069442865465664, -2.631776592097428, -3.464977031937279, -4.207095540419218, -3.4491222254534297, -2.7773655477127432, -3.2797125608209257, -3.5934632939080027, -7.0, -1.3756529076910702, -2.472470358889752, -1.8336878797815284, -7.0, -1.8852044228885487, -2.893728892398651, -1.5095625244090545, -3.557195395395744, -7.0, -1.2438694482941055, -3.0326110132705195, -3.5939380039687028, -4.2102649990322885, -7.0, -7.0, -7.0, -4.317415586331099, -2.357652922807868, -3.1377921781310056, -1.9049102040302717, -7.0, -3.2428394686728192, -1.9507381240225095, -3.0512972631525717, -4.245833335097326, -7.0, -2.1679410523362126, -3.906981153228854, -2.6487892135944495, -2.4658265977646407, -3.742122617525653, -7.0, -3.683842216031373, -3.5486841714830053, -2.8274338954007794, -7.0, -3.9168748785386835, -3.3339508043872472, -7.0, -3.9208274397551555, -3.395426248098107, -3.1008987303125495, -7.0, -2.308378061066681, -7.0, -7.0, -3.6617022843828044, -2.9300353482108923, -2.7642384191572935, -4.205312653309609, -7.0, -2.506991818723615, -7.0, -3.036276545653646, -7.0, -3.2814878879400813, -2.2738821275668677, -7.0, -3.733464770185494, -7.0, -2.955535845981106, -3.4063272387861963, -7.0, -3.1970047280230456, -3.023458237643675, -7.0, -2.9863237770507656, -2.4862403588911572, -7.0, -7.0, -2.8321666341003913, -2.7974983643715756, -3.9450252012424625, -2.126360812021379, -7.0, -7.0, -3.768434593637725, -3.1341771075767664, -2.2870284657939095, -3.2664198658791035, -3.512217305233624, -7.0, -7.0, -3.1784973288215594, -7.0, -3.2912275344074153, -7.0, -2.9057713571186508, -2.606838988475993, -3.6304787262026363, -7.0, -2.5730317402855922, -2.132052669278517, -3.0643258308401697, -3.7758045569461376, -2.4647118247672366, -4.267406418752904, -7.0, -3.452348761457827, -2.234347416698314, -2.9618308160440634, -3.9317882969633793, -4.228990310840724, -7.0, -7.0, -3.4390054396547645, -7.0, -3.1821032558041695, -2.707712079213691, -2.1041161084632165, -3.6461585698621124, -2.8976560240030134, -2.3737923474189735, -3.605778955151077, -2.8319408361283087, -7.0, -3.2854572872473353, -7.0, -2.837457816805311, -2.3941056294279046, -4.310672074930124, -7.0, -3.198432135130042, -7.0, -2.0975214186846465, -7.0, -7.0, -7.0, -4.205880729887537, -7.0, -4.207553585949308, -3.733250779305627, -2.892948829012671, -7.0, -7.0, -7.0, -3.74196530244959, -3.3655414661398932, -3.2600448734710765, -4.221961651505041, -7.0, -2.663507637160854, -3.3332204954403872, -2.6065042033187225, -3.5517345546707815, -4.303433666006204, -4.220265033587232, -7.0, -3.5800121125294244, -3.740362689494244, -7.0, -2.752501999787115, -3.443262987458695, -3.1788200395482566, -2.1037106595141473, -7.0, -3.3554515201265174, -3.7314813197428696, -4.210211471641834, -3.0468608244404245, -4.207149453209543, -3.4580115820428454, -3.235932253986295, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.797821311364024, -3.515741416669365, -4.178265177719533, -3.557226403727186, -7.0, -7.0, -2.6195434403670323, -2.2289494568369124, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3139311012962236, -7.0, -7.0, -3.057116444267286, -3.021303027970397, -7.0, -7.0, -7.0, -3.887898488096872, -7.0, -7.0, -4.199052719385967, -7.0, -7.0, -7.0, -3.811709026696191, -3.883547879268044, -7.0, -2.984227178928321, -7.0, -7.0, -7.0, -3.3659647706873033, -7.0, -3.337459261290656, -2.45760158014135, -7.0, -3.046061390345488, -7.0, -7.0, -7.0, -3.843295082736507, -3.0232524596337114, -3.2470509203392064, -7.0, -3.3572358579987425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6691773631428735, -3.353403259377596, -7.0, -7.0, -3.6109261934087056, -7.0, -7.0, -7.0, -7.0, -3.92069713446992, -3.7118821817068475, -3.790988475088816, -3.5970915798771266, -7.0, -7.0, -3.0395463043793804, -3.8866598978612026, -3.8067225030761813, -7.0, -3.9252605095194353, -7.0, -3.2429884121947947, -3.182414652434554, -3.5721743136130595, -7.0, -2.605961594892811, -3.2595938788859486, -2.6028735310261824, -3.789439684567179, -7.0, -3.61768166971834, -3.171433900943008, -3.303574009998992, -3.374381698050882, -3.798236176367936, -3.5174598265402324, -7.0, -7.0, -7.0, -3.399125460874943, -7.0, -7.0, -7.0, -3.695043658821294, -3.214505343088467, -7.0, -7.0, -3.0632082200712114, -7.0, -3.1529286821843288, -3.5299434016586693, -7.0, -3.2899232395240046, -7.0, -3.39467052410719, -7.0, -4.011676149933908, -1.9634327504866755, -7.0, -7.0, -7.0, -4.416032735575399, -7.0, -3.448551739201578, -7.0, -7.0, -3.821971817642043, -3.0647812072898275, -3.634124451552187, -7.0, -7.0, -4.462038432969983, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9818452452840774, -3.2629254693318317, -2.997167871445834, -7.0, -3.8230175234460493, -3.6437815628948647, -7.0, -7.0, -3.244091485200853, -7.0, -3.4892199729008753, -7.0, -3.8035936647713444, -7.0, -3.6068541017166744, -7.0, -7.0, -7.0, -3.8534548413680665, -7.0, -3.5533367823768884, -3.864689034136851, -7.0, -7.0, -7.0, -4.119981307304154, -7.0, -7.0, -3.377774222209929, -3.808075868091307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.544378143957812, -7.0, -4.091895473508298, -7.0, -2.99503658046845, -3.239854331887638, -3.529366180819488, -3.5397450161093125, -3.4998702905864882, -7.0, -3.6018427897820984, -3.5597869682005565, -3.3972445810103866, -7.0, -7.0, -2.9160150455495546, -3.8120438979302267, -4.011401259924744, -7.0, -2.764295715094164, -3.8816699076720615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8615941446438655, -7.0, -7.0, -3.7468676278504294, -3.895919545310016, -7.0, -3.6049816296074315, -3.7535677395933793, -4.106122874006655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1971426649725627, -3.805682059572066, -3.3039603780983073, -7.0, -7.0, -3.212986184736668, -3.2404868451670525, -7.0, -7.0, -7.0, -3.5640739789771465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6270538048638272, -7.0, -7.0, -7.0, -3.7995473071256147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.590395947184013, -4.0856116304716465, -3.1707895904463914, -7.0, -7.0, -2.9419087743655994, -7.0, -3.369521437296432, -7.0, -3.454890572811237, -3.8323172699222616, -7.0, -7.0, -3.7117228918272347, -2.899507835399982, -3.0224283711854865, -3.131056990114102, -3.252922346195411, -3.5566642621225686, -7.0, -7.0, -7.0, -3.929521100631104, -3.6189889203649335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5918989866912243, -3.45046466200715, -7.0, -7.0, -7.0, -2.9258676763970497, -4.1285285037974395, -7.0, -3.919844843125104, -7.0, -7.0, -3.977586438003851, -7.0, -4.166193215170067, -3.9458623244896174, -7.0, -7.0, -7.0, -3.899327949877654, -2.7740444161690005, -2.6824793547784997, -7.0, -7.0, -7.0, -4.053808059920658, -3.989983458301399, -7.0, -7.0, -3.9138138523837167, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8387861449465945, -3.3883232675782713, -3.345765693114488, -3.26605241210841, -3.1758450890945245, -3.7170204972570655, -7.0, -3.169233451301097, -4.0, -7.0, -7.0, -7.0, -7.0, -3.3551640665152047, -4.068519806000912, -7.0, -7.0, -7.0, -7.0, -3.130816050034744, -7.0, -3.5189743111443366, -7.0, -4.00177696707744, -7.0, -3.3974069470962536, -7.0, -7.0, -4.35215356418076, -3.348566690474671, -4.384980295651304, -3.3902283624691303, -7.0, -2.896556007555891, -2.6262409978558114, -2.6835364503597714, -3.49610432191286, -3.064313968505352, -3.981501488148247, -3.234382283672649, -3.8599409698362095, -4.176459219407738, -2.6522762548686236, -4.430687668976669, -3.576143823906798, -3.2601346916047342, -4.2139690824147, -4.116292201435748, -7.0, -4.552715136150618, -3.60929196953529, -2.527585840254779, -3.418159186999809, -7.0, -3.629367119082936, -3.116503972397613, -7.0, -2.0964627896675685, -7.0, -4.026655813877043, -3.5227212849892453, -3.627263416568221, -3.5766292484476274, -3.771391477501237, -4.118892725373621, -2.9620107849938013, -4.019240950395851, -3.0668475109738993, -3.832445041174111, -3.046619678938016, -4.007288924125068, -3.646763038740345, -2.774302234212727, -2.7755538165527383, -2.2377112577136704, -1.630903483314324, -4.188844146546897, -7.0, -3.480033088737352, -2.825860172884344, -3.2096368533656783, -7.0, -2.0018841438745514, -2.343748662446433, -7.0, -2.21677901089471, -4.46569507426257, -7.0, -7.0, -3.6538875580709775, -2.1046905386248174, -3.940249653918925, -3.801403710017355, -4.020899672862536, -7.0, -3.155059444203544, -7.0, -4.113769599761249, -4.244252373972473, -4.34478512263266, -3.7867514221455614, -7.0, -2.7201726455814055, -3.7797014123145414, -3.079723775139919, -1.3756529076910702, -7.0, -3.4506134342821477, -1.7608630121665352, -7.0, -2.6280388337138167, -3.36901210676981, -1.017448486549346, -4.127861009273555, -7.0, -3.279393142747864, -3.5849434042753194, -3.6258095810155693, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2567402897487763, -3.5958267770732233, -2.5042303053800343, -7.0, -3.876217840591642, -3.5378190950732744, -2.825209673964737, -7.0, -3.7989957344438814, -3.74795530690673, -7.0, -3.630173529786771, -2.987129767659897, -7.0, -7.0, -4.278593568241134, -7.0, -3.10623340638907, -7.0, -3.8147801457458046, -7.0, -7.0, -7.0, -3.87046243158892, -3.1737203067447206, -7.0, -4.201123897207379, -7.0, -7.0, -4.6541572822721164, -3.1087324348173704, -2.7136598180717924, -7.0, -7.0, -2.675228253593064, -7.0, -3.4532673635246596, -7.0, -3.3820170425748683, -2.5611945858903096, -7.0, -7.0, -3.904336792202495, -3.078396394473104, -2.6354837468149124, -7.0, -3.564784384503987, -3.363235804483694, -7.0, -7.0, -2.7681255921293118, -3.3273998072376996, -7.0, -3.179886765714693, -3.1031192535457137, -7.0, -3.690196080028514, -7.0, -7.0, -7.0, -3.587598729721245, -2.9680672298020014, -2.781755374652469, -2.002375108442567, -7.0, -3.817961804531994, -7.0, -7.0, -3.0614901766248153, -7.0, -3.190499779633489, -3.0354297381845483, -7.0, -7.0, -2.9256803561548907, -2.6290576038052467, -7.0, -7.0, -3.712868477066893, -3.4531143980466226, -4.043440876244474, -3.8464608251293324, -3.259779639261108, -2.559179629032332, -7.0, -7.0, -7.0, -7.0, -3.500465183284189, -3.6275194713376826, -3.3525683861793083, -3.080935556664588, -3.5958488051466677, -7.0, -4.002252479920538, -3.4642978858554994, -4.008174184006426, -3.3218054838575393, -7.0, -3.5676144427308447, -7.0, -2.9203842421783577, -3.709269960975831, -7.0, -7.0, -3.3919343639822452, -7.0, -3.020389861233702, -3.826398782187618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8635607645262424, -7.0, -7.0, -7.0, -3.796851749049887, -3.5053535061601866, -7.0, -7.0, -3.428836444372765, -3.2582181084242725, -3.2238026211274917, -4.056676215120661, -7.0, -7.0, -7.0, -3.4782778319196046, -7.0, -7.0, -3.4231522154326917, -3.824125833916549, -3.8217754671834636, -3.4753321417033707, -3.9191304138606142, -7.0, -3.790988475088816, -3.3175061899448455, -3.1961761850399735, -7.0, -4.005094675072549, -3.3826173114774845, -3.5306478535274857, -7.0, -3.9950260973716762, -7.0, -4.89657030606194, -3.896614390159009, -4.1194318594918125, -3.301160264469208, -3.043891449779881, -7.0, -4.4220807309448755, -1.929307150190183, -3.9218944709291024, -7.0, -7.0, -3.09770144457668, -2.631775727952187, -3.3098648282852214, -4.899497669943841, -7.0, -7.0, -4.419718996229201, -2.729700270514178, -2.819670459790951, -7.0, -3.305938282296858, -2.1571977400586926, -4.423458871819513, -4.296231776287164, -7.0, -3.413872747686039, -3.82246230575867, -4.053555850013714, -3.1807364413106, -4.201588281073518, -4.897214590564255, -7.0, -4.199782593968986, -4.4279997312126165, -4.198931869932209, -4.308671106715418, -7.0, -3.2248782201699746, -4.421395503250161, -2.7081274579060466, -3.9944326411643747, -4.598013113465622, -3.72969922631617, -3.90114215765946, -3.273884754313585, -4.5973221466588425, -3.5578898161615204, -4.3094065759545295, -3.521007252408604, -4.20477093628552, -1.763978013763368, -3.653866144211602, -2.9813705460996927, -4.02418282850698, -7.0, -3.9455998712518956, -3.245968394913303, -7.0, -3.42315845996139, -4.122456176023025, -7.0, -3.899535984652174, -3.032576351350964, -2.966145815394173, -7.0, -7.0, -3.2640231786798104, -7.0, -3.331681605284793, -4.014158125505415, -4.897286118766272, -4.20980444773022, -2.6276481114978902, -4.4199942773430445, -3.443861601587795, -7.0, -7.0, -2.72553118169117, -3.6042044458563303, -4.296297639188485, -7.0, -3.0163689690175235, -3.996533561445376, -2.9323669403052204, -3.188312816947483, -3.625231195952194, -4.602418136560929, -2.3220357412983232, -3.5324517957802373, -3.7443369972248948, -7.0, -7.0, -7.0, -3.9038547572602984, -3.952996819452678, -2.8885026908124822, -7.0, -3.447294314502097, -4.9000009651534695, -4.896647450295432, -4.595518266671238, -2.855846711602347, -7.0, -3.628265212453981, -4.12411823117788, -3.0299158432131796, -1.9889092796979757, -4.200264845080476, -3.9437252868815347, -3.859853068732257, -4.60107628682684, -2.030618256351181, -4.900416291286778, -7.0, -4.127779483108085, -4.01000297412706, -2.957317790730713, -7.0, -3.335919497002167, -2.6292256683079684, -4.899229372297198, -3.091396761403906, -4.899475774307042, -3.1609971346756005, -4.299300234916784, -3.608119360712597, -3.614770704069749, -4.897236600496572, -4.422502293717657, -2.250571908204015, -3.4628897771447584, -7.0, -4.896708054009982, -3.0242675420961667, -7.0, -7.0, -4.896625410484115, -3.666661106771804, -4.89657030606194, -1.889446776659733, -3.181973441281636, -3.0910382116121973, -3.457453809482078, -7.0, -4.031059878820723, -7.0, -4.596816935915591, -4.123546765923394, -3.697607078592231, -3.725533909439875, -7.0, -4.597097070985185, -4.121625492208471, -2.8883526261417334, -7.0, -4.8963553319839965, -4.205615719952685, -4.203353863290381, -4.295220625687153, -3.2392124047210666, -3.3715459208911014, -4.907782072798176, -3.6516871265575213, -4.904282657645628, -3.6116373406428166, -3.6728473065142366, -4.120793216482866, -2.2130732049854096, -3.4668511507782, -7.0, -7.0, -3.9968617684906733, -3.9439175024002817, -7.0, -7.0, -3.1895153784531334, -4.199217459919978, -3.1621005214870497, -7.0, -3.64340072427823, -2.005961638087528, -4.201353419532058, -3.414289004059428, -3.7106937137287193, -4.30031281793437, -4.128824522553188, -4.204027685271576, -3.6253503647640803, -3.9984228221379965, -3.9029651093763786, -3.5745626242687933, -3.9444936390440697, -3.8049934405673325, -7.0, -3.287403568562064, -3.582528699729632, -3.586344904524066, -4.897577611885395, -2.1288224143721775, -4.896520706103291, -2.684938712580087, -3.694901207906907, -3.1782600386264073, -3.36635153037522, -3.7227326146105697, -3.5255682376605524, -3.760066888531863, -7.0, -3.444642334143387, -2.233248271010596, -2.7075548783828673, -7.0, -4.896531728805878, -4.296127472928034, -4.294862862277967, -7.0, -4.199683885691952, -4.8971210359055855, -4.297098172131839, -2.882957513408003, -3.2241047564436607, -2.1929284346460203, -2.5728158133110224, -7.0, -4.053265078626461, -4.421960209240158, -4.2993438354972895, -7.0, -4.420142856623786, -4.90580667015885, -3.8619306724050175, -7.0, -7.0, -4.896289164699955, -7.0, -4.596860890622566, -7.0, -4.897181573574155, -4.125508374372735, -2.134937569307635, -7.0, -7.0, -7.0, -7.0, -3.3431404280146, -3.556806691474991, -7.0, -4.054695113032692, -2.9648512800439804, -3.3725329665551333, -3.2447048118717836, -2.973804948103079, -4.903892689512359, -4.896983418904129, -7.0, -2.190887275170587, -3.26143590310203, -2.2737798138314833, -4.598932695782928, -2.5073611639251636, -4.122314197968806, -4.420764137471791, -4.119937377051041, -2.56099245477133, -3.071596807492829, -3.038128173022914, -3.506780736959667, -3.7002098042781433, -4.300666121641863, -7.0, -4.596201102454085, -3.998836705660125, -3.478090632561218, -3.3769256694846685, -7.0, -4.119871473338342, -3.788021441365733, -3.994729470636526, -2.9782348791753277, -4.595452128776965, -2.8078055322706246, -3.008489956179166, -3.3698268023206466, -3.732726055601024, -3.3114223779423435, -1.8296101947465104, -3.2536660661600085, -4.897473136847621, -3.0806042203199797, -7.0, -4.423060098203508, -3.710741267979859, -3.9501267602586227, -2.958260192959905, -3.2033688982360395, -3.8852069687488022, -4.205664407371687, -2.9668454236549167, -3.2159557219790544, -2.0240841674513033, -2.628160093047439, -7.0, -7.0, -7.0, -3.3801181686358697, -3.3362964345490296, -4.898500299212667, -4.200434601526638, -3.9537865290254914, -7.0, -3.428134794028789, -3.857030798272624, -3.100741177063841, -4.8997439198220505, -4.202063077955703, -2.7107518348841255, -7.0, -2.868331669204607, -3.211925316063954, -2.5281314788427354, -4.899793153046949, -2.7583298903723983, -2.6678254243062796, -3.3344795275988064, -7.0, -3.7865439418445064, -4.897638085948279, -3.187919607508631, -3.2728828704665345, -3.377894003655977, -3.701314284718106, -4.59582126988028, -7.0, -2.9672358709363653, -4.5969817431335205, -4.598451252655753, -4.054804500220955, -4.3157919753496214, -4.421219911007847, -2.290401000434648, -7.0, -7.0, -2.2206011546095503, -2.1739519516906713, -4.141602052139997, -3.282864400052556, -3.3425464605295607, -2.1529583419251055, -3.787738714389369, -3.3613833738997507, -0.95391571228189, -2.6607264465669678, -3.0634760790072133, -3.0432297769069407, -2.969196179923055, -2.6931633469304495, -2.2203232226446072, -2.8671443585668537, -3.1438298559228537, -1.9578130755867933, -4.046709722256071, -2.8936120675847437, -4.613302581680263, -2.7685030703466915, -2.568444504925961, -2.2148751395299437, -3.703974054821806, -3.919561825762341, -3.479894689528358, -3.192966813152586, -4.906151802007568, -2.0448195975918297, -3.364874485205343, -3.28004693749461, -3.5822032661043184, -3.592398846115564, -3.863095647914823, -3.6775157047987577, -4.331801701423656, -2.7501858408226485, -3.5240482133438253, -2.276799916691148, -3.9973645380489646, -3.035937611771501, -1.1624663622221725, -3.226604958933488, -2.803115554890027, -3.2421489580346923, -4.304231942185673, -2.0907098018780537, -2.9400527111730854, -2.8804342467699544, -2.225578910053748, -2.389011691420147, -2.492137764338401, -4.300763908796391, -2.6567382459105713, -4.230285391495177, -4.420120848085703, -4.228189834000131, -3.5029815839207563, -2.7051183043865903, -4.900580126539175, -1.374014313167986, -1.8472781055600258, -2.515095200120832, -3.9436318943534263, -3.664798619194218, -4.597382512974542, -2.1068804851954357, -4.080940705963939, -3.1063569862135556, -1.4509450560382438, -2.926806228001346, -4.419663919061534, -1.600913671489379, -2.726772703727427, -1.8306118315036168, -2.828062666544521, -2.472470358889752, -3.4506134342821477, -7.0, -3.2590480800312243, -4.598834262189267, -1.9705540795833119, -2.6850159966339313, -3.6581598480282054, -2.095196476989915, -4.199546753633805, -2.572399436253159, -2.3503364723516253, -3.3680122364583953, -4.420313384988272, -4.896702544930834, -7.0, -7.0, -3.9674127581339027, -2.4590356178104207, -3.3875785621090952, -2.5423591104831424, -3.465993871030563, -2.8350072579387113, -1.3681036709887278, -3.4756442895302118, -3.825707333540593, -4.295677034017465, -2.1916334435642377, -3.817703061606812, -1.9197028858240717, -2.821508245755972, -3.668714720098945, -7.0, -2.843978894828009, -3.0722174492367933, -2.97845862997429, -2.838761511501365, -7.0, -2.990627916448299, -4.121017869041896, -3.7236307775414375, -3.6026784204385085, -3.1712423051291543, -7.0, -1.722413237979192, -4.294879380924228, -7.0, -2.704058018898603, -2.0784389533027587, -2.574713083213216, -7.0, -3.7047830444928618, -2.77367125082646, -4.055438403167174, -3.1768840607081366, -7.0, -3.384038274877458, -2.584540109305189, -7.0, -3.5751053343390393, -3.730922174525645, -3.322513078828487, -2.35013736535928, -4.199941576796646, -3.7894234092048125, -3.578797423889578, -7.0, -3.4726210327460354, -2.8161868675127377, -2.8513463849849727, -4.419713488826743, -3.0547725984703322, -3.1788331173591167, -4.302974532353225, -2.438485502098389, -4.199936095598896, -4.295451639247148, -2.3993945580839453, -3.490396121091794, -1.8450460753738236, -3.176739535862114, -3.22451720694511, -4.601810200179028, -4.598270573796811, -3.2875370837896747, -4.5979254325604595, -2.6495834057326055, -4.053248614045589, -3.197642657119169, -2.840208966400272, -3.559509455037446, -7.0, -2.735222746605809, -2.1521137507096944, -2.707871554701903, -7.0, -1.9518613306048493, -3.630882647692306, -3.50792330349193, -3.9985807979185166, -1.7150023967551769, -2.7381713171231103, -2.8004661324505897, -3.670747763693703, -7.0, -4.896438026915203, -3.4865549806566514, -3.7334005839920277, -3.7862434657429205, -3.830134036038414, -1.2414399903315696, -3.5831285727428983, -0.9834106257004745, -1.4384512519152548, -3.2649908769069174, -3.095577023862968, -7.0, -3.398271032027867, -7.0, -3.1612681529456736, -2.3826085158714565, -3.351493360537302, -7.0, -3.6248572269753003, -4.201997619583105, -1.9689475312906737, -4.422874242967947, -7.0, -7.0, -4.0513951081085375, -4.897203585179786, -4.595859818764418, -4.198486634155306, -2.3226958811209695, -4.204266532314703, -3.758679442661326, -4.898730665071061, -2.82614071641586, -4.420456357165732, -3.7842990115765605, -4.5988452003570295, -3.7526958379880133, -3.1142988325370893, -3.5048132696049445, -2.861744637352507, -3.124943906749929, -3.6628522332647964, -3.6689064071901316, -7.0, -3.4972965474240967, -3.8196700381046775, -7.0, -2.6391410942742572, -3.5985880805539687, -3.695344843418741, -2.976808337338066, -3.586222828744241, -3.0620606254686873, -4.897137547015729, -4.198431635107324, -3.7922300113372116, -4.896818220919975, -3.0036233830206034, -3.3974674564260865, -4.599435452688469, -4.595209536956467, -4.18613667169178, -7.0, -7.0, -7.0, -4.184705623215826, -7.0, -4.496929648073215, -7.0, -3.7115541682501694, -2.8978606679033883, -3.504396712847337, -7.0, -7.0, -1.8531491656109444, -2.8006323498354555, -4.495266744387811, -7.0, -7.0, -4.184052292391864, -7.0, -1.7198329870017677, -4.098989639401177, -7.0, -2.8849211734753255, -2.338098971306541, -3.590089133690572, -4.186476030554059, -7.0, -3.6606622359058285, -4.496334505996817, -4.1874925189804255, -3.0051216062891455, -4.192316504702737, -4.484669899885333, -7.0, -4.011570443597278, -4.20382130251655, -3.7082650587622488, -2.2813789526405572, -4.182371848635196, -4.031421930538409, -3.408593251333042, -2.504439732505021, -3.8835194856567163, -4.012232445789756, -2.9618954736678504, -7.0, -3.2567810237713575, -7.0, -7.0, -3.3742113633648128, -3.0635001547221736, -3.0535585922132595, -2.3432052719514065, -4.038129830486775, -2.7521975657445132, -3.44442916986232, -7.0, -4.491655793718779, -3.5605707855599604, -3.8900995107287524, -7.0, -4.49352775559078, -7.0, -4.013721778051063, -3.225735611624981, -2.537151705229521, -4.00814576996069, -7.0, -3.1495537774495497, -7.0, -3.594331152979141, -4.534863410548415, -7.0, -4.036881628034608, -2.9452556043235774, -4.48447067570193, -2.7510493864592833, -7.0, -7.0, -2.4994074638844803, -3.9034833881331887, -7.0, -7.0, -3.2136903779841535, -4.491067394653292, -3.0876368391806537, -2.8801377283430174, -3.9003124969837266, -7.0, -1.6723016903916712, -2.790363365974914, -1.9096308571332221, -3.6388884247050757, -4.482530584131741, -3.610300763470534, -2.2772362929775247, -3.0782822381018162, -3.1860826583241453, -3.4856930402936617, -2.7917400551248437, -4.190779770928018, -7.0, -4.48297357411599, -2.669195082125619, -4.006580127619797, -3.555604924999254, -4.497758718287268, -2.9654686736239295, -2.5218768249046994, -7.0, -4.185782890670649, -2.975891136401793, -3.8950908969343994, -2.035287051820646, -3.2371526076727806, -7.0, -3.7287054046396793, -4.524772477368776, -3.420577719678888, -3.4514654440388877, -3.289889338077369, -1.5440151493399303, -7.0, -3.8679504234198077, -7.0, -3.853826602306928, -3.8932484033466537, -3.91324412938236, -2.907372966708177, -7.0, -7.0, -2.239942415275768, -3.476159478508521, -7.0, -7.0, -3.612653467322403, -7.0, -7.0, -7.0, -4.007676669612222, -3.48274499054841, -2.485871928296167, -3.4339543652562603, -2.6062630018624766, -3.42739871208322, -3.168371192294914, -3.3188977146274867, -7.0, -7.0, -3.349818497045375, -4.139343756152375, -3.183637533042316, -7.0, -7.0, -4.491403720299015, -2.73075536687231, -4.18231477033948, -4.482444791918265, -4.202529183501342, -3.418384164038612, -4.484925911049592, -3.8959609362542365, -4.1993848820922866, -4.034307529596563, -7.0, -4.5027138235713355, -3.4947573623066033, -7.0, -4.48926924575802, -2.4321309691020256, -4.186928096934767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.657579387241831, -7.0, -3.991571601160679, -7.0, -2.4720991694607215, -1.940362892721548, -3.2370268123180517, -2.4005947059556028, -2.488964478096017, -3.6527020902669305, -3.093960178079215, -3.3231007756543756, -2.933569361832112, -3.8937478954738043, -4.499632105153693, -3.1360352997371708, -4.488818542833805, -3.693802297126462, -7.0, -2.1778023535384485, -4.027254446759137, -2.4980498652488414, -7.0, -3.7184186418296554, -7.0, -7.0, -7.0, -4.19867083023323, -7.0, -7.0, -3.508590926001464, -3.8087914452522758, -7.0, -3.5101426994025733, -2.7909140607501293, -2.7483055150312383, -7.0, -4.482902154674314, -4.487265674419202, -4.484000713927198, -7.0, -4.187436109773708, -7.0, -7.0, -2.978317496746751, -3.0094380184660547, -3.295786940251609, -2.5552255565887765, -7.0, -4.186744501716686, -3.586249638866042, -3.2909662309839347, -7.0, -7.0, -4.506545618777679, -4.500565776862321, -7.0, -7.0, -7.0, -7.0, -4.486444648100676, -7.0, -7.0, -7.0, -2.583808065111376, -7.0, -7.0, -7.0, -7.0, -7.0, -4.189392045912569, -7.0, -7.0, -4.5413545507544155, -3.599651131814264, -2.9993722322513157, -2.8369090241882997, -2.241532645817008, -7.0, -4.181543478219937, -2.2766438601314345, -3.505163549810412, -2.6751942746956026, -7.0, -3.096899322550773, -4.493165169463191, -4.486458816884649, -4.487067637716316, -3.8214370998255576, -2.6447831309233574, -2.384510219368008, -3.3152539527018177, -3.335917852253625, -3.0667813125922603, -3.7128039778168795, -7.0, -4.496943478887435, -3.5618696012378313, -4.513909787827383, -7.0, -3.787814567063023, -7.0, -7.0, -4.500524627760176, -7.0, -3.2056238349015698, -3.1529109077659996, -3.650820767065712, -4.037253808313048, -7.0, -2.0456998974532627, -2.996580792472938, -7.0, -3.148002970984834, -7.0, -4.191297279429712, -3.9271521342774345, -4.503150341603528, -2.857421848243517, -3.5661624108509122, -4.557158182475332, -4.503708989891708, -4.045362102653348, -3.5084623812733606, -1.3745518607680296, -2.6569508479447186, -7.0, -7.0, -7.0, -3.472622387120777, -3.0004851169060904, -3.8858416187005536, -7.0, -3.365835495343365, -7.0, -4.20489288154292, -4.48807103570631, -3.4293546881848322, -7.0, -4.017409008536211, -3.1173860382869454, -1.9006401839826004, -2.802756626747439, -2.632850802194602, -3.1171319781420097, -7.0, -2.6267629209386185, -3.42035058816188, -3.4089180208467798, -7.0, -3.8912725631953657, -7.0, -3.031603901657714, -3.954664535067499, -3.7015679850559273, -3.8069393250886248, -4.483758413788249, -7.0, -3.5109871220675624, -7.0, -7.0, -7.0, -7.0, -4.487633217456876, -2.441617301918038, -7.0, -7.0, -3.3220124385824006, -3.4724590190584643, -3.8414041670516013, -3.0556840649194132, -3.869946063866585, -2.3216303542229584, -2.358098418677797, -2.011682253769414, -2.726476108692137, -2.485821206948855, -4.053219342138294, -3.1677168617280866, -3.346781030447889, -3.49899264875909, -2.6977548360067924, -4.1079219001862795, -2.231772816968974, -2.8639480396224033, -4.308532400503109, -3.623705748999227, -4.226587017939536, -3.8045784042024806, -3.4835427242299106, -2.3630373261769373, -2.5826365539208287, -4.409358189930165, -3.2645241259165214, -3.3333512978152764, -7.0, -2.180051080456895, -4.044755286295232, -3.370457012527794, -3.6282271039209024, -3.481986946998056, -4.2024474467730135, -3.5822493606940435, -3.573602552304502, -3.3339545320608925, -3.110801275118248, -2.282499252841805, -7.0, -2.7902624576059285, -3.0062847512451514, -2.349050573178034, -2.448072442801128, -2.8825755074974517, -2.581318327670128, -1.3994450492106825, -3.7544247892772584, -7.0, -3.9150378351369337, -2.3690287824635057, -2.656479275172621, -7.0, -2.1131439144706006, -1.9802034192957039, -7.0, -2.717839278097978, -3.074857057384218, -4.237857784350719, -4.4933186082321015, -2.82959643786932, -1.4842765317911912, -3.3845665101372733, -4.486600479306201, -4.240836187180583, -7.0, -2.897015436856953, -4.5557472140872095, -2.860354858662413, -3.7187818554344205, -4.064888326512362, -7.0, -3.5928341520800386, -2.741518756968152, -3.2753785478707846, -3.4514794051248616, -1.8336878797815284, -1.7608630121665352, -3.2590480800312243, -7.0, -7.0, -2.238680703786003, -2.9587701447437897, -2.0264278180492825, -3.237514472958049, -7.0, -3.0236639181977933, -1.7562256821745161, -3.4407079732485175, -4.485295438726089, -7.0, -7.0, -7.0, -3.846374229730093, -1.6830957807759497, -3.3616469040394903, -2.10320901727473, -7.0, -3.724849087629386, -3.223688497483371, -2.8187643531484383, -3.80546007741919, -4.486104458535134, -3.436333932581096, -7.0, -3.0165920641827304, -2.840797177614897, -4.189083059462634, -7.0, -2.8093385666210025, -4.505651841230991, -2.981428467644333, -7.0, -7.0, -3.3510349484072637, -7.0, -7.0, -4.5017847633885, -3.1237863286153718, -7.0, -3.2422604784110143, -7.0, -7.0, -3.2500069070898077, -2.0931871771753436, -2.148891215845606, -7.0, -7.0, -2.7998149290549836, -7.0, -3.135781751822861, -7.0, -3.2946866242794433, -2.2395294860605826, -7.0, -7.0, -4.509941404158226, -3.1759395741789724, -2.609380944250707, -4.489156613869192, -3.801650631931656, -3.3185085369309166, -4.189349924339198, -3.2469360469440005, -2.1012174708869567, -3.6174006916297037, -7.0, -2.759107523483687, -2.9641810319735047, -7.0, -2.878284021346949, -7.0, -4.4855226841924045, -3.7994209669118066, -3.8070476955151142, -2.2351909578380664, -2.8618661613005787, -2.8852198251151067, -4.198038188846813, -4.490070903572991, -4.568143031657702, -7.0, -3.440509463541816, -7.0, -3.2048657855557696, -2.566196905821079, -4.196286748808876, -4.482716409141232, -2.596971482238792, -1.9284288922720902, -3.5323721335678773, -3.906375451942542, -3.1556396337597765, -4.039387677306854, -4.247752382497469, -3.7972121249212494, -3.0905786601228313, -3.157444175325761, -7.0, -4.194278399010635, -7.0, -7.0, -3.4922425742591727, -4.516098877052355, -3.2133919170914584, -2.7817819605838476, -2.9286279602268506, -3.3594560201209864, -3.948706308904852, -3.027690411734007, -3.3916407034923877, -2.934179390755185, -7.0, -3.5011414552877826, -7.0, -3.0727441557987976, -3.23724203998423, -3.842397032423771, -7.0, -3.3872391936833566, -3.795337679341311, -2.703514281036142, -4.014702506699758, -7.0, -7.0, -7.0, -7.0, -7.0, -4.485409076322577, -3.4454245571564948, -4.50018156686907, -4.504389297186282, -7.0, -7.0, -3.7073714338087607, -3.642393851544235, -7.0, -4.489184774579998, -2.846431244791793, -3.6542453192131115, -2.939946918317287, -3.7077404542737713, -7.0, -4.18957452553725, -7.0, -3.6199537588433968, -3.7901161997663317, -7.0, -3.0168492772142694, -3.8892456608929797, -3.791802891569532, -3.567979955556931, -4.212600387588411, -4.210719715681002, -4.007292482997014, -7.0, -3.7295022630813444, -4.48364434340033, -4.0600175425316, -3.3528713279019153, -4.493053543571646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9818186071706636, -3.09377178149873, -7.0, -7.0, -7.0, -7.0, -3.6024127123210015, -4.220631019448092, -7.0, -7.0, -7.0, -1.57377942980712, -7.0, -4.345158000269438, -7.0, -7.0, -7.0, -3.864601811346698, -7.0, -7.0, -7.0, -2.9034517483472246, -7.0, -7.0, -4.390681989145567, -7.0, -7.0, -7.0, -7.0, -3.367169488534681, -7.0, -2.925569909543376, -7.0, -7.0, -7.0, -3.8870136942873503, -7.0, -3.08278537031645, -3.3939260065858368, -2.905256048748451, -3.6724673130680823, -3.035029282202368, -7.0, -7.0, -7.0, -7.0, -3.4949729430284626, -7.0, -7.0, -3.5147469246343817, -7.0, -7.0, -7.0, -2.4483971034577676, -2.6954816764901977, -2.3961993470957363, -7.0, -7.0, -7.0, -4.1546065392836224, -7.0, -7.0, -7.0, -7.0, -3.75815462196739, -2.8179429348797176, -7.0, -3.478854967528663, -4.825442346705323, -7.0, -7.0, -7.0, -7.0, -3.89470365260923, -7.0, -2.7351995484223135, -7.0, -7.0, -7.0, -7.0, -3.582404298019028, -3.3326404103874627, -7.0, -3.3796195458659186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4367985102318035, -2.502532161581729, -7.0, -3.381205361238583, -7.0, -7.0, -7.0, -3.20960436635488, -7.0, -7.0, -7.0, -3.6620964454179235, -3.781863037624198, -7.0, -7.0, -7.0, -7.0, -3.009645618907136, -7.0, -7.0, -1.2263655314931408, -1.0019077918180315, -2.297998259220199, -7.0, -2.5173106692196443, -3.911743377855932, -7.0, -7.0, -3.1095785469043866, -3.9952972785716847, -7.0, -7.0, -3.6398847419163043, -2.9439888750737717, -7.0, -3.352096723073173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9620139876491844, -3.2771506139637965, -3.209306455462485, -7.0, -7.0, -7.0, -7.0, -2.9965116721541785, -3.2314695904306814, -7.0, -3.846708145456007, -7.0, -7.0, -7.0, -3.5456163329131365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.301897717195208, -7.0, -7.0, -7.0, -3.8955882756662628, -3.3053513694466234, -7.0, -3.9476083114045495, -7.0, -7.0, -7.0, -7.0, -3.0265332645232967, -7.0, -7.0, -3.63823959067475, -7.0, -4.287712175443486, -7.0, -7.0, -3.1688228100135096, -7.0, -7.0, -7.0, -7.0, -2.950202531637585, -7.0, -2.2534591643398376, -2.9222062774390163, -2.9874428049358013, -3.184596802974997, -7.0, -7.0, -7.0, -7.0, -3.3609718837259357, -7.0, -7.0, -4.086181804649749, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7670816213633223, -7.0, -7.0, -7.0, -7.0, -3.8720979742742268, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7570162347313003, -7.0, -2.085290578230065, -2.0698556251176052, -3.139249217571607, -3.840764567859676, -5.412210146909904, -7.0, -7.0, -3.0860037056183818, -7.0, -7.0, -7.0, -2.7863964613723042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.342077081830135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7102020146553847, -7.0, -7.0, -2.7208587017418626, -7.0, -7.0, -7.0, -3.622731965164719, -7.0, -4.538083367813495, -3.139249217571607, -4.713700499337772, -7.0, -7.0, -7.0, -3.2271150825891253, -3.4633703272924072, -3.6742639196922253, -3.263951517653659, -7.0, -7.0, -7.0, -2.9444826721501687, -2.1583624920952498, -2.4206432497919548, -2.9995654882259823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3419288837458097, -7.0, -7.0, -7.0, -4.655788109253206, -3.064083435963596, -7.0, -4.292898175018025, -7.0, -7.0, -7.0, -3.3428173146357327, -7.0, -7.0, -3.807535028068853, -3.04941186087108, -3.5630061870617937, -7.0, -5.351487734879554, -3.888179493918325, -7.0, -7.0, -7.0, -3.1756567472816637, -7.0, -2.7431176252147416, -7.0, -7.0, -7.0, -7.0, -7.0, -3.122625396909397, -7.0, -2.89707700320942, -7.0, -7.0, -4.256819935036449, -3.6936214394729348, -4.875477407595086, -7.0, -3.335992499288236, -3.3205741358813006, -3.4961682741749778, -7.0, -2.393867559040913, -7.0, -2.4921781467062147, -2.4602142372606046, -3.268499966587276, -3.382557321908786, -7.0, -7.0, -7.0, -2.3070679506612985, -3.110589710299249, -7.0, -2.6724673130680823, -7.0, -3.9052155343138026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4156076226641474, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.192818257048295, -7.0, -1.0324520237811379, -7.0, -3.766025974282846, -2.8219500053077473, -7.0, -4.334614571179395, -7.0, -4.634157225354798, -2.6055205234374688, -2.530583859645118, -3.8438087552360534, -4.185924437664244, -3.2678032983436163, -7.0, -4.441899276742038, -7.0, -2.946452265013073, -3.8140477209955996, -4.378434242062079, -3.392169149489736, -7.0, -3.2142608667775416, -4.44695352638232, -7.0, -2.7028611705729295, -2.5353785228186467, -7.0, -4.0537888751837405, -7.0, -7.0, -3.7863254343900703, -4.22533513181854, -2.60151678365001, -3.85076872692888, -3.7379238051278323, -4.483836819803626, -7.0, -7.0, -7.0, -4.598834262189267, -7.0, -7.0, -4.04190070985669, -4.112241022105839, -3.592398846115564, -3.986315982401342, -7.0, -7.0, -4.31011953734681, -7.0, -7.0, -2.893206753059848, -7.0, -7.0, -7.0, -3.2424244938652858, -2.931966114728173, -4.192149125018534, -7.0, -7.0, -7.0, -7.0, -3.0610753236297916, -2.9894498176666917, -7.0, -7.0, -4.79927850295274, -2.944383957640844, -7.0, -7.0, -4.135895575564019, -7.0, -2.7869287937967515, -7.0, -7.0, -3.1957613200360613, -7.0, -7.0, -3.3226327116922234, -1.7192323137649976, -7.0, -7.0, -7.0, -7.0, -4.599653861243402, -3.891345773877661, -4.789975345977952, -7.0, -7.0, -3.2520273296527864, -7.0, -3.2043913319193, -7.0, -2.9806849743633146, -3.65566656923067, -7.0, -7.0, -3.4320066872695985, -2.367355921026019, -7.0, -7.0, -7.0, -3.2065560440990297, -7.0, -3.335858911319818, -3.697795823376305, -7.0, -7.0, -2.973589623427257, -2.6477496180738416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1350975152303273, -2.655275674339117, -7.0, -2.9786369483844743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.917899189424106, -7.0, -7.0, -3.034427905025403, -3.9344580498777164, -3.647089428716555, -7.0, -4.311796229182407, -7.0, -2.715471538902324, -2.929674317948588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1586639808139894, -7.0, -7.0, -7.0, -7.0, -4.5500448095649055, -3.210140091523844, -3.1870975005834774, -7.0, -7.0, -7.0, -3.3702354372831773, -7.0, -7.0, -7.0, -2.470872305442661, -7.0, -4.4002097701620615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.757206173278786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.437433443797971, -7.0, -4.117834518543748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.502413462710515, -2.4291060083326967, -2.4173055832445254, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2844307338445193, -7.0, -7.0, -3.1505484752433546, -7.0, -4.339992729686746, -4.340121744752816, -3.6206267580510696, -3.7722287734114994, -3.5487971072480162, -3.451419954806697, -2.76401274186685, -2.5813718616043118, -3.5334283871579544, -7.0, -4.340949506018236, -2.5095342818699766, -2.502507448197351, -2.632620223899974, -4.1665189175409445, -7.0, -3.9427271453659487, -4.46520433758063, -2.557499181619563, -3.485125843470917, -7.0, -2.7820595190929014, -1.807053650433598, -3.866425188468594, -4.040503445776426, -4.0968901590922195, -3.47278081981647, -3.7161556147759103, -3.829956579636221, -2.7311626256773534, -3.440259515107366, -4.465521644855828, -4.9427321004917895, -4.098930359493644, -3.2681097298084785, -3.5281005197417086, -3.0095619469467327, -4.465090248626674, -4.172948167029386, -4.040696268880752, -2.2816739211328607, -3.738740931267598, -3.051464211738796, -3.3590957107594277, -3.322637630953044, -2.7091317439789475, -4.244687712313355, -3.991339312324231, -3.6129234633249223, -3.082465665425615, -3.7723559402990166, -1.4066223881833373, -3.674653294607066, -2.464702931034069, -3.0660648974596776, -4.643092259961168, -3.439653361113439, -3.3510422057394447, -4.343226368551779, -4.343620273078088, -4.246759473024701, -7.0, -3.798586527286706, -2.8043362399890293, -2.5448603970897627, -3.8288283871565176, -7.0, -3.0539483984211167, -4.641126932803509, -2.9565309447935024, -3.244324706895344, -4.243717497987774, -3.748861243039218, -2.388176642312316, -4.94259333559316, -2.945795102198527, -7.0, -4.466299058751786, -2.2857011143608963, -3.5519035743682226, -3.797465397090131, -4.6409036004935205, -2.998448247407814, -3.990580555633907, -2.7129639995853343, -3.0019355292147516, -3.430114163564744, -4.6472509010376575, -1.741856805260137, -2.8518070711361267, -2.6589380136616834, -4.16428344244365, -4.941918703252601, -3.126238053970879, -3.3048624642031603, -2.569242196573409, -2.262852075825894, -4.943108524727579, -2.49865185631621, -7.0, -4.465010864717407, -4.641032650947389, -2.4012689989328777, -4.641305515998657, -3.3602437635106135, -3.691827770244213, -2.7312214971040447, -1.8320297478103873, -4.2455126678141495, -4.165219587753745, -3.366245959064888, -3.6246650845838033, -2.3165851251386878, -3.5836028559611703, -7.0, -3.2873732587262765, -3.026831167505327, -2.8227835078967374, -3.547454710572725, -2.8581231914869507, -2.2849265430389543, -7.0, -3.630534193424769, -3.9446109674771273, -3.0834042439258478, -3.6037986196117022, -3.4218119281070436, -3.2431287160911935, -4.039523174872934, -4.041693625905536, -1.923718753317517, -3.263838883574003, -7.0, -3.619788758288394, -3.318339014987736, -7.0, -7.0, -7.0, -4.097569639431371, -7.0, -1.505915105333337, -2.5098742850047193, -2.5657099692891188, -2.788780317525239, -4.09977433523932, -3.470695247147661, -4.942271031757259, -4.642202281545473, -3.3901055464932925, -3.2145833698026913, -2.874064137571404, -7.0, -4.341404845125625, -3.5298004013227113, -2.070948234903138, -7.0, -4.038729417174369, -3.1291672607368097, -3.344863649797128, -3.988430125810669, -3.183402394973477, -4.471081359869327, -4.049033796209662, -3.317737880642894, -4.647993878193836, -2.7956268447938633, -3.3351250742114362, -3.621853565463195, -1.9992580337565171, -3.424990468728342, -7.0, -4.941779678173749, -4.100040513510458, -4.244583864390973, -4.040117542542043, -4.465120013852074, -2.758182016200969, -4.040419367879847, -3.457435881002328, -7.0, -3.4087250711423263, -1.6012965834315163, -3.6442859194512525, -3.003128984279141, -3.1319823469987957, -3.8332795434419458, -3.4888423524253844, -3.743646929950466, -3.357612376480327, -3.8325433011792596, -3.5497583267385253, -2.367053946493985, -3.6651809221500327, -3.0585493860490587, -7.0, -3.0470710104770475, -3.0797042363088907, -3.2378348616764314, -7.0, -2.893955407756366, -4.942037832194369, -3.3139281203953006, -4.342348647043824, -3.9064770729424234, -4.244534404270211, -4.643210786071658, -2.970083775646671, -3.1869027780703103, -7.0, -2.5859439053216287, -2.3145906949270607, -2.491287464977637, -7.0, -4.3399579883119195, -3.563129908519703, -4.243420059770134, -7.0, -4.6429588794097905, -7.0, -3.830381365856538, -2.339368616002117, -2.4061503095447603, -2.837077956461961, -2.8024756669227284, -4.941819404166313, -3.9436676056327267, -3.6654328603308586, -3.7158608480887176, -4.340057242010565, -4.942727145365949, -3.996088262193923, -3.6470502748685387, -4.470988381529795, -7.0, -7.0, -7.0, -4.165081026825811, -7.0, -7.0, -3.9941997995697123, -1.9970857105306132, -7.0, -7.0, -7.0, -4.642162684587794, -3.272463769669973, -3.6657537463191843, -7.0, -3.7987887139512493, -3.883973560827824, -3.115948067174583, -3.070706396887966, -2.449777503300706, -4.2496727637035345, -4.465313438107631, -7.0, -1.9478840526363634, -2.725662258356222, -2.1090686261873266, -4.041989429902784, -2.7366893243538843, -4.343551365571408, -7.0, -4.165298745583048, -2.5304116602699116, -2.9162188771060786, -2.2994462066840407, -2.561290725973153, -2.8073496539487848, -3.0174163713523345, -3.9448230650732317, -3.7964306017613634, -3.6457611226334046, -2.779334958513331, -2.837879683009075, -7.0, -3.3867911712924914, -3.992740017742474, -4.466135768755128, -3.6258365028509325, -4.640973093964463, -2.5502626059169518, -2.79702595590107, -3.742405968608249, -3.9117724037085435, -3.7435195636811023, -2.3073699418672065, -1.805133287613335, -4.465754519833878, -3.1689719167337276, -4.6415137702896985, -3.282153987685595, -3.286193609993445, -3.772961916786803, -2.628511537066202, -2.4169266341952547, -3.2876291344721302, -3.5341726044491257, -3.293040522188929, -3.2346875960305317, -2.2679092957043285, -2.403764919833581, -4.6410227253507275, -4.640695053335942, -4.941769746107795, -3.2186433339985294, -2.4027463568008933, -4.040661665909112, -4.245665630974936, -3.0378927084593257, -4.466195154039558, -3.569759062947957, -4.098693158915045, -2.1005526734054927, -4.467800425116173, -3.354704236683152, -2.4491908282001305, -4.342851828039207, -2.7638008538551375, -2.674219902021187, -2.530911767785156, -4.944985767425724, -2.0691720545784595, -2.867601703139016, -2.8370269714709435, -7.0, -4.100572381131625, -3.480368786890804, -2.568742383741263, -2.7608484390395938, -3.2659022043017565, -3.193798082161599, -4.641305515998657, -7.0, -2.1680995417304274, -4.466249583417726, -4.4675735776765055, -3.9450547742554396, -3.4295290448490627, -4.341607614304764, -1.5622755306190403, -4.464703114940226, -4.464976129693729, -2.0976120062438603, -2.7161375485264965, -4.0697790608815145, -3.0787905863221194, -3.356245348290053, -2.062991369166478, -3.259456038251947, -2.5551880282267496, -1.401301031097911, -2.5063330525119167, -3.703706840716946, -3.2101157547109618, -2.912756426732738, -2.735152816675169, -1.9190176999342903, -3.381448022513302, -2.9119172679839167, -1.709296921685804, -4.291355528330632, -2.6587743208443566, -4.958119328082719, -2.6983874884158876, -2.966861870621276, -2.438506225611244, -2.5371629618741345, -3.712809987468449, -3.187405934399452, -2.0532640920024914, -4.47357941507252, -1.7797251329891868, -2.960003418425458, -2.853714388484917, -3.2625435942161194, -3.2549718659011795, -3.907826497930791, -3.4775597146073878, -3.7204028076946365, -2.503234411866825, -2.944635805429082, -1.98598050263825, -3.5652130253955923, -2.564375831288106, -1.937665082874569, -2.988894392169021, -2.0679544077499283, -2.624600317850178, -2.8356759403257485, -1.7180762856263596, -3.4177319539974764, -3.7788262946792774, -2.7793002285795017, -1.7979145401958574, -1.5104049697509885, -7.0, -1.1213559191731346, -2.458110687811594, -7.0, -3.065934324651937, -3.2305707425619747, -3.816084982682152, -3.7994390177641506, -2.0983757093395856, -1.4722734507089599, -2.5178660540770967, -4.341246520447747, -2.921038214613296, -4.165550964917679, -2.0711876357354817, -4.968763048197249, -3.150599766818814, -2.4090144205749637, -3.67258480109312, -4.641255916921171, -2.772043492449563, -2.8439050429734927, -2.4917169691818404, -3.0447595861672774, -1.8852044228885487, -2.6280388337138167, -1.9705540795833119, -2.238680703786003, -4.04190070985669, -7.0, -2.4144285369048415, -2.8558891544742817, -2.7759546315332426, -4.642835342363899, -2.5347278137414437, -2.7580077906876372, -3.5369532983211798, -4.097723243076378, -7.0, -4.941819404166313, -7.0, -3.7342113386428104, -2.0251805414512707, -3.0207413920716344, -1.928715713074086, -4.642009212267617, -3.471780506250551, -2.2695693006163253, -3.0424831440096773, -3.06245500039278, -3.7969062206302726, -2.577096087297863, -3.9009825016883535, -2.050429939315604, -2.4599012485521397, -3.7139695888931765, -4.473190039859534, -2.473924693416157, -3.4874163364389537, -2.5431114010135016, -4.468667270826408, -4.099157555211003, -2.711727577657698, -7.0, -3.798803504402391, -3.335526392136679, -2.729246771628713, -7.0, -2.6683231839204535, -7.0, -4.465754519833878, -3.1571338189519675, -1.668933935404147, -2.3832816661680436, -4.941968344282969, -3.6521350932027876, -2.313958872681808, -7.0, -2.8004024124640825, -7.0, -2.9784014307637876, -2.180523842173084, -7.0, -4.34087026785223, -3.696196156653132, -3.017362374468477, -3.1991212741882054, -3.9441420122234043, -2.882740385211145, -3.082254038925177, -4.0415111129593235, -2.906560310984251, -2.040214856216984, -3.548969417380984, -7.0, -2.6346315231555373, -2.648524247498229, -4.046582950842146, -2.067731459944934, -7.0, -4.465818910021945, -3.1638720742640283, -3.3936141954120003, -1.4715853537193864, -2.6826205370617333, -3.657701075470702, -3.7434754666528636, -7.0, -3.611663286550839, -3.1110696839689878, -3.204414716161362, -4.466600736296882, -2.9079045970364654, -2.436959672719197, -4.1019629894917475, -4.339893461241669, -2.448115806419691, -1.3964818075340644, -3.2351948324743183, -3.036516919249531, -2.537973874395819, -3.6316273438088653, -3.1459399887032697, -3.1980185268365826, -2.224120397960542, -2.8965309686284746, -4.101997329797019, -3.167676636159579, -4.243345668375362, -7.0, -2.964695295079257, -4.47673021369108, -3.2637543888400056, -3.5555103977981775, -1.8682955254059768, -2.9492240646946035, -2.5602335762820863, -2.367513609110171, -3.6000917717260705, -2.694027985973858, -4.944359275507229, -3.1998335061349032, -7.0, -2.220396547201303, -2.944264331148952, -3.849244545652974, -4.942102346729723, -3.023512115776103, -3.2212961066711223, -1.9616750071319988, -3.025300928950266, -4.943741765831314, -7.0, -4.464931466295046, -4.942652811693212, -7.0, -4.641880451715565, -2.467650247139099, -4.948129212291016, -3.6272195063025854, -3.4666205111116515, -4.944546824551128, -3.6003787854957343, -3.290059356781852, -3.2544000860757474, -3.9441518901855095, -2.719706525314566, -3.169159910621571, -2.347213763892428, -3.4233114228739034, -4.961701040699168, -3.4973246408079492, -4.942102346729723, -3.0924706854854187, -3.3310666545009067, -7.0, -2.349908131181242, -3.1382138561176456, -3.151844154295226, -2.8686685229153204, -4.475840612428527, -3.4606456955356406, -3.7119857714490196, -3.5624316578638844, -3.0868325865723842, -3.8630153739209696, -3.393143421154438, -2.973795787525392, -4.343511984943949, -4.941794575846803, -4.654883740590171, -4.954556053354576, -7.0, -7.0, -7.0, -4.960699043221426, -7.0, -4.654431651055449, -4.354737326259845, -2.9282686696920193, -4.976826661613164, -7.0, -7.0, -3.000442341412527, -2.839021836222007, -4.356594659032601, -7.0, -7.0, -7.0, -7.0, -2.563218623279188, -3.687042671622682, -7.0, -3.5938949816955623, -2.2413054552329488, -7.0, -4.4788982217971025, -7.0, -4.485238608775484, -4.481910592562872, -3.5089671596982126, -2.3451158088439428, -3.7537697194437687, -4.95506688604493, -7.0, -4.111296126482262, -4.007695632987596, -4.478566495593843, -3.34331479369941, -7.0, -4.486175353339631, -7.0, -2.2334933588947083, -4.353315031342222, -4.956677371255107, -4.117560097792157, -4.958592548578363, -2.994534789598222, -7.0, -7.0, -4.66655541812069, -4.356704509667284, -4.3587341271980105, -2.1120992116084665, -4.1874831179547645, -3.9481683617271317, -2.7010814773381697, -4.655455392526795, -4.054287403120578, -4.488442599438955, -7.0, -7.0, -4.4809454614645, -7.0, -7.0, -3.2705297765360086, -1.5695436588515528, -7.0, -7.0, -3.788243812055398, -7.0, -3.722414526478677, -4.370628725694252, -4.955129493993415, -4.187041040042328, -2.614008118910353, -7.0, -3.3608299960638286, -7.0, -7.0, -2.8928886460307943, -4.962274604623315, -4.354007540435039, -4.95436795417073, -3.3120268276113047, -3.752979452844521, -3.387108699250326, -3.6901167708948885, -3.881883722962457, -4.96053736742071, -2.349371214094059, -3.822583674439643, -3.4437626385196736, -4.477752934854223, -7.0, -4.965069934066822, -4.182771186796507, -4.185730978545133, -3.4932116717848376, -4.654460521899409, -3.673343511417442, -4.65646714762775, -7.0, -4.653453721491571, -2.97365555048346, -4.954758530638175, -4.264822543576076, -4.959542212459511, -3.7420177471401384, -2.5949505049713553, -7.0, -7.0, -4.4815525020951625, -3.5441491687091413, -2.497401951504548, -4.957870561119627, -7.0, -7.0, -3.968977668982721, -3.4953130222377027, -7.0, -3.014062856681733, -2.454188307497151, -4.9568308966253545, -2.825074341788919, -7.0, -3.1096825421353387, -4.259718081767896, -3.924222880518338, -3.280912700239786, -7.0, -4.957195302014875, -2.381885165105794, -4.364485330317109, -7.0, -4.954623556271786, -3.1491998615867844, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1720863832034163, -3.05779895700737, -3.024514987157872, -4.498062314581983, -4.656232400322034, -4.142474385719971, -7.0, -7.0, -4.658001851618553, -3.158620923808858, -3.0384575826438036, -7.0, -7.0, -7.0, -2.2217251522999155, -7.0, -7.0, -4.660523976930213, -4.2605722081234925, -7.0, -4.260653238993932, -4.659431268195865, -3.8502738366161147, -4.009450895798694, -4.3591712057167005, -3.44311092982662, -4.659507371756729, -4.956629383444768, -2.199263549662286, -4.257184013472698, -7.0, -7.0, -4.656491094301585, -4.654931807537483, -7.0, -7.0, -2.7319180593504395, -7.0, -3.3115059646600127, -7.0, -3.5789782627210145, -1.9229710652447798, -3.9577413374336854, -3.2184756161909616, -3.5232399900485603, -4.056456992407894, -4.00935173048672, -4.115015832022429, -4.262265941146297, -7.0, -4.358101485058426, -3.9311295061305005, -7.0, -3.8280012359052726, -7.0, -3.6712786585118917, -4.262849603407645, -3.649537352421843, -7.0, -3.0919199043047665, -4.954459602411555, -3.775018486890885, -4.956792520370495, -4.115068196520122, -4.955923350069222, -7.0, -4.279379448150558, -7.0, -7.0, -4.486803448227884, -2.2626113582592984, -2.9277079623485593, -7.0, -4.9544692484698345, -4.256938924930791, -4.954840458899287, -7.0, -4.956365355664486, -7.0, -4.9567973175878075, -3.0209268196192873, -3.824256037629682, -3.1740851015212996, -2.437682710736257, -7.0, -4.655090390729038, -7.0, -4.958764500995247, -7.0, -7.0, -7.0, -4.960513586490487, -4.65934087789275, -7.0, -7.0, -7.0, -7.0, -7.0, -4.955037987024298, -3.919273076788743, -2.155445376459069, -7.0, -7.0, -7.0, -7.0, -4.656313857640156, -4.479891882820856, -7.0, -4.656342603634468, -3.975013397518679, -4.183136924486553, -3.8666916741838224, -3.2042918568738163, -4.3588291816933245, -7.0, -7.0, -2.4821408576705712, -4.059042482306292, -3.321521198841677, -4.112327255332538, -2.3190687511911268, -4.957961473262439, -7.0, -7.0, -3.343911641883861, -3.4464503579779815, -3.45014789315114, -3.8627962621128322, -3.905341566811897, -4.357834833466437, -7.0, -4.955090967093244, -4.260252703870242, -3.534435092755253, -4.120033076541163, -7.0, -4.478681907362235, -4.482201621904094, -7.0, -4.960499317307279, -7.0, -3.8835289504000867, -2.7726950181443613, -4.35687639402912, -4.664331654369715, -4.960047217179546, -1.8355476285248808, -3.3755119467888526, -4.95529319520027, -3.273244808029194, -4.954960913566566, -7.0, -4.271683652549704, -3.785187420029362, -2.680494704168573, -3.6249521046631217, -4.503845136631561, -4.3595177052971295, -4.013941466909771, -4.486213159170506, -2.506490145776442, -3.481460544571774, -7.0, -7.0, -7.0, -3.5809158565356407, -3.5403619216668547, -4.257184013472698, -7.0, -4.663583150614173, -4.955721415247588, -4.962388279400015, -7.0, -3.560720336969559, -4.656241984328962, -4.6574096491453805, -3.4946461449564397, -4.355192820439621, -2.8667134247107615, -4.015428346874354, -2.4140516692585825, -4.656285109743019, -2.446815752736374, -2.369231662128971, -3.72488091090256, -7.0, -4.657008020434356, -4.955437586216608, -2.884786004759232, -3.3894387111668958, -4.375027707231542, -4.661372490991278, -7.0, -7.0, -3.6216199837199943, -4.654734699236146, -4.656021498642462, -4.656438409876108, -4.0188945843702, -4.478931861027784, -2.7116852039479586, -7.0, -7.0, -2.519063074800671, -2.4048572591252984, -3.571773065864809, -3.281594492277713, -3.1535931582676557, -2.467733650178315, -3.187534149648075, -2.984337778898843, -2.487664250163948, -2.7744114242269298, -3.479449917038245, -3.0352394685131796, -2.995892805093479, -2.968216018931578, -1.577950984534137, -3.252199023033889, -2.792140082434405, -1.7967694016330327, -3.509869954380526, -2.8559741898563855, -4.066940585379413, -2.8540400578056273, -2.7905545662675157, -2.671999095322251, -3.3661554207584863, -2.8797516081234797, -2.780965997073155, -3.0072172913073967, -7.0, -2.287525122351788, -2.811554061380131, -3.0224347162992182, -3.210908385564785, -3.1021773798589933, -3.52992441071121, -3.3348428675388484, -3.81111902545676, -2.984446149906882, -2.6926266329514807, -2.7764112555325746, -3.314106725411292, -2.6781412485624716, -2.485678995021301, -2.356873331695484, -3.405143222504934, -2.8183280278667078, -4.264042955041059, -2.048935890938645, -2.2475405745696984, -3.002471266421594, -1.7551506194349336, -1.970380140469246, -1.9071020789098865, -3.9599234024401224, -2.6219268392563837, -3.6608745087788024, -4.353021343506187, -3.7508304455965837, -1.7256314710525595, -3.10429328547008, -3.3448473709418876, -2.3203916456109437, -2.0008942662102447, -2.711872821428245, -4.256712936488155, -3.696374784805933, -3.4787251788694604, -0.2526488849797658, -3.7015361741036097, -2.9100690256570454, -3.0189834518139866, -2.0586701512560586, -3.7241071319763024, -3.3108505941855153, -2.0514974698808905, -2.499166668224345, -3.0729382721626735, -2.893728892398651, -3.36901210676981, -2.6850159966339313, -2.9587701447437897, -4.112241022105839, -2.4144285369048415, -7.0, -4.015136122818329, -1.9226075427970335, -3.677318736042354, -3.289128887401494, -2.067243312868712, -2.8884304517591888, -3.9137897777429553, -4.176419268765049, -4.95424733490676, -4.653959822052159, -3.746011107751926, -1.8597310679542078, -3.640741642283412, -2.885955406959308, -4.353353533052763, -3.2797192128666035, -2.085841949767647, -3.1437384944823323, -3.3704703854098397, -4.2565445707979865, -2.86005440509186, -3.331239249545775, -1.852576756016548, -2.766157140465059, -3.5949879216683773, -4.008202596193274, -1.862660366976328, -3.135583545936889, -2.973174052682972, -4.48098372529553, -4.178473333988442, -2.282136641500025, -4.479685657143802, -4.054239492601495, -3.6597260952377915, -3.376773425950115, -7.0, -2.833806182171555, -7.0, -4.654253571761437, -3.068715330889723, -1.301832343155351, -2.239880436218544, -4.954392074004006, -2.9868471342502714, -2.9957725377281763, -4.11287778605754, -3.567976301950993, -7.0, -3.296860645545076, -2.2081172670574314, -7.0, -4.001036244018628, -3.6625784121215883, -3.783646355064819, -3.148248025288188, -3.354156477915428, -3.392026389643856, -4.004268815714698, -4.258009568255152, -3.599308630368478, -3.248152870802089, -2.924275149904263, -7.0, -3.3773716406852055, -3.314227811461609, -3.600011149657793, -3.090312649208021, -4.655546595064349, -4.955355770534847, -3.113114060796176, -3.142289898072111, -1.6221062926556562, -2.8442088006324573, -3.1994762648542516, -3.133300533875017, -4.956902842964416, -3.4407831813593344, -4.354511799744273, -2.7799889851678676, -4.177916281379359, -3.213840180147667, -3.0126467625667734, -3.728797638546838, -4.653366902145936, -3.01205216495471, -2.645389296060444, -3.2993681849804, -3.884001924768787, -2.266548465254177, -3.3637012736897, -3.635241490628815, -3.3676091497883256, -2.7328022131463108, -3.2922745358653924, -4.005113751523483, -2.8468930643543624, -4.954768170059357, -4.954387250144515, -2.8652240048558992, -3.710531050569225, -3.878497858858221, -3.789557210744906, -2.5399156234701907, -2.821204883319006, -2.730217259371856, -2.025458371872805, -3.1671372646333364, -3.302373284873846, -4.354626976852949, -3.5988618448663616, -7.0, -3.0585139781456494, -2.811440943674158, -3.8610838454082805, -4.255513712819534, -2.884171593021045, -3.78216674257991, -1.9083761390330394, -3.781295712526443, -4.478975107638949, -3.8752590636046054, -4.954493362678243, -4.051899830724197, -4.477651734970054, -4.478176754287997, -3.659526848500998, -4.65934087789275, -4.4847030950325495, -3.5582236176342548, -4.002578793440226, -4.256395392373177, -4.478941471757991, -3.6349951780447043, -3.752336600753975, -3.2645155999758346, -3.579716923486651, -2.086321041875386, -3.146296793808566, -3.1036743098329627, -3.5766628241474274, -4.477381753267053, -3.141814671730619, -3.677678977013519, -4.653226990016805, -2.047247488233153, -3.5954147420331193, -3.7265786003464605, -3.075406572032361, -3.6638892986226614, -3.6632249190405806, -4.352910557168874, -4.256260606512207, -2.875526160477312, -4.477579434897986, -3.510910004340515, -3.637685056151331, -4.3558344958849355, -4.6531835598447415, -3.5569052690554477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2777237887624535, -4.610327395866563, -3.428998202825899, -7.0, -7.0, -2.396175776800113, -2.5992916070757954, -3.621280167550415, -7.0, -7.0, -7.0, -7.0, -2.718819594561594, -4.024690862355431, -7.0, -7.0, -3.0278914426406773, -7.0, -7.0, -7.0, -3.6953065224318027, -3.0265332645232967, -7.0, -4.183582992351017, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5514499979728753, -2.7715874808812555, -7.0, -7.0, -7.0, -3.4687748900951387, -7.0, -3.57541879121436, -2.040602340114073, -7.0, -3.1612481803327377, -7.0, -3.6057358938767465, -7.0, -7.0, -3.188084373714938, -3.1827102725665637, -7.0, -3.338177499296536, -3.9588981947107715, -7.0, -7.0, -3.751048034820188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2370967031246045, -7.0, -7.0, -3.732393759822968, -7.0, -3.9181352261663593, -7.0, -7.0, -7.0, -4.093227419114197, -7.0, -7.0, -7.0, -7.0, -3.2384224958854797, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7774268223893115, -2.5468852480836555, -3.6723749787460793, -7.0, -2.6537124603849924, -2.9555503153497313, -2.5097924183374514, -7.0, -7.0, -2.8965262174895554, -3.6684791029325856, -3.7231271587956916, -2.6207214890977757, -3.068556895072363, -3.3268732749874856, -7.0, -7.0, -7.0, -3.788239097382168, -7.0, -3.4202033743532962, -7.0, -3.3766377783551063, -3.5242337993653035, -7.0, -7.0, -3.018804483937159, -2.51942409281017, -3.257022238514035, -7.0, -7.0, -2.797873191167606, -3.8048206787211623, -2.7397548594693375, -7.0, -7.0, -2.159285509899914, -7.0, -7.0, -7.0, -5.0064360898728, -7.0, -2.3342990603276026, -3.839854984601885, -7.0, -7.0, -3.1535099893008374, -3.767007363949804, -7.0, -7.0, -4.418450450829583, -7.0, -7.0, -7.0, -7.0, -7.0, -3.287065556036607, -3.6145281197475394, -2.5414009255363963, -3.585686278452497, -2.6334684555795866, -7.0, -7.0, -7.0, -3.026328938722349, -7.0, -2.636943561573955, -7.0, -7.0, -7.0, -3.4620637966651473, -7.0, -7.0, -7.0, -3.339153196257359, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7241878485223547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8641945398768103, -7.0, -3.909983694939844, -3.404394640735732, -7.0, -3.8826952623815973, -3.2249860256767717, -7.0, -3.7185847200274362, -3.1750283506819907, -2.7186861810033975, -3.3246939138617746, -7.0, -2.6480549217643783, -7.0, -3.8750033536000412, -7.0, -2.9574230844522935, -7.0, -4.094366298336134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9243309847086785, -3.7077404542737713, -7.0, -7.0, -4.408070285887185, -3.6989265727162115, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2665844470668635, -7.0, -7.0, -7.0, -3.8254261177678233, -3.738013790760599, -3.9444324811357743, -7.0, -7.0, -7.0, -3.623042434246382, -7.0, -7.0, -7.0, -3.659440781870318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1783917416380465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.17167770855167, -3.9736819185039836, -3.1899579507445543, -7.0, -7.0, -3.7695434784017907, -7.0, -3.4896186879579, -7.0, -4.4335698364624765, -3.1277525158329733, -7.0, -7.0, -4.103256233355051, -2.967495974245274, -3.476940260975887, -3.304221164444191, -3.2908801052671617, -2.7430195349869044, -3.111486550023024, -7.0, -7.0, -7.0, -3.7445276734725663, -7.0, -7.0, -7.0, -7.0, -3.6591552809406296, -7.0, -3.7032913781186614, -3.753812783564702, -7.0, -3.747567162737625, -7.0, -3.4082808041632413, -2.725870813226274, -7.0, -4.345981121826305, -7.0, -7.0, -7.0, -7.0, -4.075364446373285, -3.7825442840100103, -7.0, -7.0, -3.315550534421905, -7.0, -3.1036590691700097, -2.8066886148562817, -7.0, -7.0, -7.0, -7.0, -3.3680388229322835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1961761850399735, -7.0, -3.616160312847583, -3.846337112129805, -2.986995539724382, -3.643353961976863, -2.9874108726919797, -3.9577889718788883, -3.5907304057926903, -3.4797671999304147, -4.5532719967524224, -3.1669725197384757, -7.0, -3.6072405038317426, -7.0, -3.799409479615127, -7.0, -3.210318519826232, -7.0, -7.0, -7.0, -3.0288964451314704, -7.0, -7.0, -7.0, -7.0, -7.0, -3.498874206668076, -7.0, -7.0, -7.0, -4.491333673931563, -7.0, -7.0, -4.736037762378577, -3.5773440554976808, -3.5398703234865425, -3.1582896875886353, -3.6408898107842758, -3.488762172066694, -7.0, -4.361595639318234, -7.0, -7.0, -3.4081445287928753, -7.0, -3.920862181229238, -4.238116387877543, -4.133538908370218, -3.8915746229185673, -7.0, -4.790928737920774, -7.0, -3.0610281561595416, -2.961197677184457, -7.0, -7.0, -3.782520398709198, -7.0, -2.551632247867079, -7.0, -4.100370545117563, -7.0, -4.265666699452483, -7.0, -7.0, -4.01628102454283, -4.017061177796396, -3.5594996572146744, -2.90968476924063, -7.0, -3.163871400527174, -4.5994536575971905, -7.0, -2.7872833199241156, -2.6737254469058893, -2.2403770800020877, -1.8200791452840763, -7.0, -3.4742891261654965, -3.5294731314644747, -2.770414736749944, -2.884966913359453, -7.0, -2.3558663952923395, -2.527077246100807, -7.0, -2.211993787829547, -4.422491349209966, -7.0, -7.0, -3.962575949894103, -2.3485222969110127, -4.453555302306861, -7.0, -7.0, -7.0, -3.690093441922547, -7.0, -4.264043292828227, -4.169733197942518, -7.0, -7.0, -7.0, -3.2199917955016972, -4.024478826207317, -3.5351041538013934, -1.5095625244090545, -1.017448486549346, -3.6581598480282054, -2.0264278180492825, -3.592398846115564, -2.8558891544742817, -4.015136122818329, -7.0, -4.654087940618245, -7.0, -3.0508307036242797, -4.160328445806977, -3.654830860802844, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5334583477582, -7.0, -2.825474201745054, -7.0, -7.0, -3.7931090834994587, -7.0, -3.385069776331935, -7.0, -3.624642998257259, -7.0, -4.339378555872695, -3.842546836495015, -7.0, -7.0, -7.0, -7.0, -3.8729716307384434, -7.0, -7.0, -3.946255707199397, -7.0, -7.0, -7.0, -3.3145693943004555, -7.0, -3.5157745272157848, -7.0, -7.0, -4.149496233465742, -3.74249629730124, -3.4850992085981027, -7.0, -3.748962861256161, -3.361160995195026, -7.0, -3.7601207852645677, -7.0, -3.6500159524718385, -2.8515535433095853, -7.0, -7.0, -7.0, -2.9466487339066765, -3.88349109018893, -7.0, -7.0, -3.6191977157929474, -7.0, -3.6738499773429494, -2.9207840090040063, -7.0, -7.0, -3.3234583668494677, -7.0, -7.0, -3.9252347162317127, -7.0, -7.0, -7.0, -7.0, -3.466079589486035, -3.2806542362922633, -3.353082344206042, -3.649140064144219, -7.0, -7.0, -7.0, -3.9430986230054854, -7.0, -3.2209792909037276, -3.1175553648789545, -7.0, -7.0, -3.053222543849251, -3.024275600667789, -3.8444150404738244, -7.0, -4.061678615245337, -7.0, -3.9182925127553556, -3.628899564420607, -3.4348881208673157, -3.871222556759707, -7.0, -7.0, -7.0, -7.0, -4.410608542568368, -7.0, -3.601299310194338, -7.0, -3.450237261608906, -7.0, -7.0, -4.279153424927057, -7.0, -3.7505855273410087, -7.0, -7.0, -7.0, -3.8600383898071935, -3.873611196996467, -7.0, -7.0, -3.1884597362982907, -7.0, -3.7431176252147416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9628426812012423, -7.0, -3.384084473382558, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4222614508136027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.234884102331191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.569360252341128, -7.0, -5.346955091548924, -5.045971979060437, -4.870204856809119, -3.2122264987691906, -4.445769561712997, -4.7452758796054475, -5.046863748480282, -2.0426176388850696, -4.40186369436619, -7.0, -7.0, -3.362579456941744, -3.140734536805062, -4.871524288726237, -4.56982435888469, -5.04587039244936, -5.046210223646017, -7.0, -3.1051248065332584, -3.3605650150028246, -7.0, -4.355056701706884, -2.067252249586692, -5.348388597857494, -4.171431949930172, -7.0, -4.17401714218392, -4.394529504405298, -4.444600977071155, -2.698431410789216, -4.3069569682845685, -7.0, -7.0, -5.046711672296513, -4.3957398100276555, -4.444325902788053, -4.448922640496831, -7.0, -3.888039982719819, -7.0, -2.159286004048917, -4.30588853028431, -5.3478372092177215, -4.873171354062279, -4.570445640792904, -3.3088507917845416, -5.046557592118178, -5.348367178861577, -3.7958684360034725, -4.570527373492466, -4.6505406388014645, -2.071175331434878, -3.6109465017556057, -3.6623819098923875, -3.8666398160622153, -7.0, -4.306717383322012, -3.989664512841722, -4.649245264062297, -4.87125760736155, -4.746338342087566, -7.0, -7.0, -3.408463532402235, -2.2304805461701447, -5.34727340695374, -7.0, -3.9195545664811595, -7.0, -3.9092999920457463, -4.01192205783923, -5.046175081023443, -4.749264672310713, -2.1828985513030816, -5.347156262771363, -4.236533385918288, -7.0, -4.745418341943429, -3.373452353063682, -5.350120037711959, -5.347601242663674, -7.0, -3.346798235955029, -4.09272844024296, -3.3975731161775657, -4.273678243554927, -3.793229505047091, -4.145231378313219, -2.356584118819276, -4.122306487424473, -4.043828045520829, -7.0, -7.0, -4.652281160545874, -4.872457356924434, -4.028501536907509, -3.9917363704435638, -7.0, -3.616818104596417, -4.306742711557243, -7.0, -5.04591728153028, -3.2667658843118588, -5.046024716583911, -4.2367677957015015, -5.04796957212993, -3.7521733375654627, -2.4611826307022295, -4.569746392449806, -4.5023607806305135, -4.5035358273840576, -5.348929563892298, -2.8945266176998237, -5.348322390274462, -7.0, -4.748244248991798, -4.206733381111317, -3.922956005832465, -5.348355495327635, -3.19194348272539, -2.7799828499205974, -4.648913992932156, -3.495855943071568, -4.56981656287103, -3.107200469352167, -4.746599173776715, -3.749318821331103, -4.011439716547123, -7.0, -5.047013822754954, -2.72383261448073, -4.50676394702445, -7.0, -5.347003928080234, -3.3721345176926727, -7.0, -7.0, -5.3469746268204545, -5.046175081023443, -7.0, -3.170065419875544, -3.382987914288671, -3.5600188883949224, -4.510338154055093, -5.348078893239702, -4.214501346733814, -7.0, -5.0463780880482725, -4.503677864643271, -4.367791860564098, -3.0550739051169837, -7.0, -5.347511502724772, -7.0, -2.871693397817705, -7.0, -5.3468788955925985, -3.781487556381919, -4.348984012346455, -5.347218743600781, -5.34905206331604, -3.3277888798400754, -4.3509280096547585, -3.5870836235508463, -4.2035262997736105, -3.1725176377328155, -3.497883136800558, -5.046783817638138, -2.1775500004755646, -4.171494377994071, -7.0, -5.34683590735996, -4.06936036427513, -3.985736838507217, -4.870296586555347, -5.347025414414368, -3.4534070626854416, -7.0, -3.123591776731282, -7.0, -3.683993042899125, -2.1158342216543464, -5.047270972348938, -3.9750199143327536, -4.50844698833347, -4.57086192796976, -4.65170628080527, -3.8050598346304128, -3.6774341478786607, -4.06991723951933, -4.0939292328222185, -3.87715049456365, -4.648769713584033, -3.9932502424781573, -7.0, -3.7720432235573, -3.390558578656912, -3.5295444172650554, -7.0, -2.436157032337598, -5.346937509053203, -2.664205244538261, -3.9860703793072267, -3.503915138339147, -4.092192169421503, -4.117298596651012, -3.45886342278972, -4.071618483796091, -7.0, -4.236814275171272, -2.226154552287061, -2.482505310216106, -7.0, -7.0, -5.046506870227673, -5.347091819999941, -5.347296831998954, -4.444593175946113, -4.870021339171948, -5.3478859466608935, -3.304450842619542, -4.052405342192183, -3.4794516439702257, -2.1965745690813323, -5.346851539936892, -4.648629287656581, -5.046820860589155, -7.0, -7.0, -7.0, -4.049148219733418, -4.349364960508261, -4.872216506284493, -5.3468398155569465, -5.346855447993205, -4.870083821967762, -4.444310290512258, -4.568721783427787, -5.046137982947624, -3.284596018245864, -2.1129300018512898, -7.0, -4.744916588971316, -7.0, -5.046362475491852, -4.2688879044704535, -4.393707762272921, -5.346876941674333, -4.503002286443708, -2.9890410933670744, -3.9517026778225817, -4.35774241954003, -3.7150988877405458, -4.872435996539984, -7.0, -7.0, -2.6694283903107014, -4.308657529042319, -3.390977543124353, -4.143986189041628, -1.9876354496935726, -4.87123034602681, -7.0, -4.87038439475624, -3.323090768869078, -3.733317662782867, -3.7102321082951955, -3.67472530682938, -3.35042475664405, -4.650173424940093, -4.745999416249925, -4.3471582154333515, -3.9174238127281167, -3.603266196253487, -3.5185468397288107, -7.0, -4.648504426480184, -3.7577093522289338, -4.068601788131928, -3.934323610582884, -7.0, -3.9523080096621253, -3.2755643375933237, -4.0062637263183625, -3.447994792653729, -3.4350807053258485, -2.106234717856727, -3.6205467693713365, -7.0, -2.7799308552177844, -4.444023314994304, -5.047212542627943, -3.2849529807279723, -3.769839674254719, -3.19554385153028, -3.795858784650379, -4.05677530559286, -4.119335472875041, -3.3609796041735946, -5.049528122277718, -2.052100755959316, -3.306863228890472, -5.346947277194261, -5.346818320038284, -5.346831999127804, -3.8656006168719523, -3.5614880122402224, -4.569469498508897, -4.268753432587635, -3.9530499415686555, -5.046415165620504, -4.505045269707098, -7.0, -3.9242965196279602, -4.444965523348666, -4.871428925150091, -3.0501776876640005, -5.348082790267155, -2.410481646285617, -3.928882994676684, -1.9096004257787231, -4.3480652533682305, -3.083172755871391, -2.4046365395859763, -3.448803620276374, -7.0, -3.8858873896236554, -7.0, -3.4603677039425986, -3.166901615996242, -3.426517002165785, -4.50505496600964, -4.869929551264621, -7.0, -3.903663497285699, -3.9856568286495526, -4.502871722256952, -3.8295240324621713, -3.7862908765224415, -3.9857778134583097, -2.8209730377477755, -7.0, -7.0, -2.823547604372849, -2.5044817491532436, -2.675992379029217, -3.8627486669658766, -3.251708184081412, -2.4468747963813797, -4.059493364754587, -3.11029794935722, -2.863094770417211, -3.326399756229908, -4.0526477788535225, -2.8802327790571143, -2.8103755332701614, -2.437470203359834, -2.8478625703283527, -2.8715639825526402, -3.024121895656775, -2.269814768180237, -4.06550502309839, -3.5581746407589234, -4.239349539006137, -2.2659229226161925, -3.099655335838334, -2.6121464739420484, -3.7366614272636336, -3.3482101573364997, -3.0761363519495823, -3.7951662739081384, -4.174230427986725, -2.667011301386366, -3.9930704902346563, -3.0567337084348547, -3.2743834261010925, -3.333751293283423, -4.44670022987886, -3.4097603888227894, -3.5090320510666366, -3.315092095446996, -3.1095143538438785, -3.181283347564006, -3.4135336749389187, -2.842481181980336, -1.9555751738308984, -3.0547381672190057, -3.7636141895615403, -3.5932789192578536, -4.873308973962765, -2.302756357937335, -1.8879605115175833, -2.766294698357867, -2.5258019888373338, -2.4479998133798366, -3.1849171639857268, -3.686261179638182, -3.147983575558577, -4.5137197362380554, -3.5476184492199474, -4.45494580269563, -2.163152765510742, -3.5989516891716944, -4.445263561049475, -1.7081361940220896, -1.863450981279705, -1.5072522144271299, -3.7791068199807696, -3.5844232261646978, -4.117101600989737, -2.005672876125111, -3.3003189233265715, -2.748842971431182, -2.780787255202442, -2.6071822797801416, -4.648053456819172, -2.5768306637209446, -2.080310862052228, -2.1337589216397337, -3.8222277099699213, -3.557195395395744, -4.127861009273555, -2.095196476989915, -3.237514472958049, -3.986315982401342, -2.7759546315332426, -1.9226075427970335, -4.654087940618245, -7.0, -7.0, -3.8094346505993877, -1.9709155878448599, -3.268671559746992, -4.648283880781487, -3.841730871182167, -5.045817636181431, -4.87002719731595, -4.209867209371226, -3.279148234766356, -3.386338028485665, -3.263900181091419, -5.046301971533895, -4.007260775655791, -2.287490547609792, -4.5056634605284716, -3.245671962807084, -4.3931070242921315, -3.1440352668252016, -5.046075494813826, -2.1047566320349174, -3.4042973855837975, -4.648952979124083, -4.748149248981986, -2.935910876657456, -3.6597416171192387, -3.061990705060039, -5.047391702200444, -4.87070620635306, -3.78927954367021, -4.502776210159077, -4.0056250349389275, -3.9181080350553983, -3.5964620508094636, -7.0, -3.2479564089581063, -5.34709767882886, -5.347275359089101, -3.0528104935015095, -2.153010293782384, -2.8971231267326427, -7.0, -4.4483081629668995, -2.8991655304327213, -4.649403016174663, -3.3736203980607287, -7.0, -3.805009292324597, -2.5643200201098937, -4.648037830429489, -4.444183419961797, -4.071916873438521, -3.886630734857297, -4.05424332563753, -4.745730424798123, -4.0483194224790955, -4.234624344891733, -4.7459039238674015, -4.048595216808917, -3.7016712064148596, -2.946553076387335, -5.347056665366522, -3.444006221109515, -3.369774219408229, -4.50486487900771, -3.8953838666914047, -4.6488145622990995, -4.50217927120143, -3.5414014660058277, -3.4865896136882237, -1.815969937516831, -3.9043928530236642, -3.92219473304098, -5.349192020360922, -5.3479288310870485, -3.7260065455287896, -4.5026845767730315, -2.808377404094648, -4.745537349984803, -3.4926246022881955, -3.49469198112742, -4.348910116361356, -7.0, -3.336454015647858, -2.861417552427749, -2.878724160018126, -4.236545012525752, -2.12532741051893, -3.397115031195473, -3.6081686862660067, -3.6673731692458102, -2.9122632327080114, -4.076115148448237, -3.780616977232055, -4.7465913900240135, -5.046028622812387, -4.6479225684382985, -2.706666122284256, -4.397360562979804, -4.570116608419219, -5.351558616325058, -2.408690408121786, -4.5050433304206114, -3.3437581932446805, -2.62763585627933, -4.208738795422854, -3.587817368255725, -7.0, -3.6680926378460614, -7.0, -3.2205176429386384, -2.9036882696704707, -4.179287457481868, -4.869833836829262, -3.585884509233432, -3.986721118781962, -2.385114864768354, -4.092841460124653, -5.347609045260355, -7.0, -4.86982211524454, -4.569008917702917, -4.170926342269268, -4.745213415625778, -4.513152888794917, -3.91788072846784, -3.9519103706754914, -3.6232434373330964, -4.347891794786546, -4.30588853028431, -4.268371227210525, -3.528336162914621, -3.508691677048606, -3.697423094483611, -3.051818806655435, -2.7690970145159275, -2.6251955317528344, -3.3290753634861527, -3.4338771116793816, -4.443845568406682, -3.8340448037769277, -4.005303386569579, -4.501737867345703, -2.6308431290241736, -3.950078476170064, -3.7246327574688074, -2.6937579306776436, -3.7829372345148538, -3.6184064694663602, -4.502034790128414, -4.6482799763089355, -3.4750820463296552, -4.501921514596224, -3.638579485603398, -3.435100153553497, -5.047309921129448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.204903719464446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.094883215846508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.389266521813607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.363458414291912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6078891006939875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.452001227726593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2225636610285875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.753491134989102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.379704269024447, -7.0, -7.0, -7.0, -7.0, -4.085344103421502, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.175743684421761, -4.755104633736051, -7.0, -7.0, -7.0, -4.994321552794073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.369531255941311, -7.0, -7.0, -2.722633922533812, -7.0, -7.0, -7.0, -7.0, -4.156821635591626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.059260404121731, -7.0, -7.0, -7.0, -7.0, -4.5428627572586375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9753582709428334, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.654651983255935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.343684248831774, -7.0, -4.077549580451794, -7.0, -7.0, -2.997386384397313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357896749322294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.713040054517326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.942979784728125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2166935991697545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.353723937588949, -7.0, -7.0, -7.0, -7.0, -5.132153985533335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.351333044285805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.380325832080988, -7.0, -4.8753385442652055, -7.0, -7.0, -4.319950913553649, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.922881091208294, -7.0, -7.0, -7.0, -5.0870321105355965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.453532376125107, -7.0, -7.0, -7.0, -7.0, -4.112001395486189, -7.0, -7.0, -7.0, -7.0, -4.390498575676762, -7.0, -3.1998922435263193, -3.0435194602457565, -7.0, -4.20390278111006, -7.0, -4.438114963661999, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.51473364934416, -5.187002925027144, -5.4054479626103085, -7.0, -7.0, -7.0, -4.177594209647827, -7.0, -4.803404191319472, -3.7777167386096258, -3.918004110480823, -7.0, -3.8458419074217574, -4.433193591714845, -4.482122920092511, -7.0, -7.0, -7.0, -4.199546753633805, -7.0, -7.0, -4.642835342363899, -3.677318736042354, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.469822015978163, -7.0, -7.0, -7.0, -7.0, -3.8663070345324604, -7.0, -7.0, -7.0, -3.751048034820188, -7.0, -3.350088729351078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5705429398818973, -3.269979676645324, -7.0, -7.0, -4.014142361545006, -2.7715874808812555, -7.0, -4.597025681164456, -4.395735153999889, -4.311131986528651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3931753318356845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.776701183988411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.034468022755043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.052911867935484, -3.335858911319818, -4.1627734388351865, -4.246042874223341, -3.665674780993893, -7.0, -2.9903388547876015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6177165808503444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.109814695694399, -7.0, -3.6591552809406296, -7.0, -7.0, -7.0, -7.0, -7.0, -4.198065714165741, -7.0, -7.0, -3.5324995860946626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8793253007848074, -3.6897526961391565, -3.0593740590659575, -7.0, -7.0, -4.3680476847285785, -3.9217384836845985, -7.0, -7.0, -2.8118984338735538, -3.2095373542191825, -2.9507541815935037, -7.0, -7.0, -7.0, -7.0, -3.166621628581135, -7.0, -7.0, -3.1929575298846564, -2.6401117866545993, -7.0, -7.0, -7.0, -3.117519866385761, -3.657915936829955, -7.0, -4.185236086141411, -3.6370892735303304, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7937205568135233, -7.0, -7.0, -7.0, -3.4519275966524705, -7.0, -7.0, -2.8216772586543666, -7.0, -3.031985216636394, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0670708560453703, -7.0, -2.599649182211521, -3.4952667443878105, -7.0, -7.0, -7.0, -7.0, -7.0, -3.638189640190837, -7.0, -7.0, -2.932537179217954, -3.4966390991807463, -7.0, -7.0, -3.0556076517087116, -7.0, -3.330768775572884, -7.0, -7.0, -7.0, -3.6583040093579355, -7.0, -3.257758548072965, -7.0, -7.0, -3.074084689028244, -7.0, -7.0, -7.0, -7.0, -7.0, -3.496860487394368, -3.8238653093245114, -2.998782269831736, -7.0, -3.0558232833751444, -3.519827993775719, -3.356089625562946, -7.0, -7.0, -3.7648483571934106, -7.0, -7.0, -3.5440680443502757, -7.0, -3.5385234653327093, -7.0, -7.0, -7.0, -4.099507993727965, -7.0, -2.8987251815894934, -3.667639706056411, -2.870286828992591, -2.7146037676665995, -3.6121478383264867, -7.0, -3.6506959797606107, -3.664077590185075, -3.1153410244613617, -7.0, -7.0, -3.7265642161622448, -7.0, -3.8724476477890133, -7.0, -3.6547779745760787, -3.663903785487646, -7.0, -7.0, -7.0, -4.16253026924255, -7.0, -2.996000608571067, -3.556603989486027, -7.0, -3.6191977157929474, -2.830984707712957, -3.3106933123433606, -7.0, -7.0, -3.9460590603851236, -7.0, -7.0, -7.0, -2.667102574103782, -3.556423121371285, -3.1870190811827652, -3.1520844023826413, -3.940267391446012, -3.9029270960172626, -7.0, -4.030923399627219, -7.0, -7.0, -7.0, -3.8616240084555944, -2.500263040699733, -7.0, -7.0, -3.622731965164719, -3.1318477105449856, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3687516195445553, -7.0, -7.0, -3.7437448785924614, -7.0, -7.0, -7.0, -3.606703741333674, -3.3529979066449345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062205808819712, -7.0, -4.3471152548414045, -7.0, -3.624127331511917, -3.4196823422019547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3991543339582164, -7.0, -3.680154141734373, -3.171901890731724, -7.0, -3.8915374576725643, -7.0, -4.08282126093933, -3.2334191932136345, -3.923295840655504, -7.0, -2.493225621510431, -7.0, -3.1701149694966517, -7.0, -7.0, -3.590618948206578, -7.0, -3.939119717648487, -3.7318304202881625, -7.0, -3.2692015103702907, -4.111917494923382, -3.313192063634804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.053923150548575, -3.1444496608688994, -3.523694452381668, -3.852181593605025, -7.0, -7.0, -7.0, -7.0, -3.557988148224913, -7.0, -7.0, -2.907232159417844, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.344818642061682, -7.0, -7.0, -7.0, -3.5828584622244994, -2.7180862947830917, -2.7110687225172314, -7.0, -7.0, -3.4243370666764497, -7.0, -3.486949715838293, -3.6857865089215553, -7.0, -7.0, -7.0, -2.8317418336456384, -3.7169210731667612, -2.908648169194429, -7.0, -3.532579224934103, -7.0, -7.0, -7.0, -2.9360778889459787, -3.636287252098513, -3.3111178426625054, -3.4446692309385245, -3.30362797638389, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1107019165992926, -7.0, -7.0, -3.083413028394797, -7.0, -2.881547680226655, -3.7648110386557376, -3.3549723250189762, -3.7695988483874463, -2.9777236052888476, -3.232933396387438, -2.808409580181492, -7.0, -3.5732971725254727, -7.0, -7.0, -3.846398973034675, -7.0, -4.085861173788451, -7.0, -7.0, -3.7063763558396903, -7.0, -2.7353593330017105, -3.719685794237588, -2.846955325019824, -7.0, -7.0, -7.0, -7.0, -2.9591606876059813, -7.0, -7.0, -7.0, -7.0, -3.4190465771041594, -7.0, -2.9562751760779418, -7.0, -7.0, -3.386617852625555, -7.0, -3.9725036844873167, -7.0, -4.057510501673362, -7.0, -3.493504521968632, -3.917545903402913, -3.482397122253336, -7.0, -7.0, -7.0, -3.3416323357780544, -3.965342835560622, -7.0, -3.7206553565517244, -7.0, -7.0, -2.9054874873267518, -7.0, -3.616265405281708, -7.0, -7.0, -3.594060901270418, -3.128548382704474, -7.0, -7.0, -3.0716058849177394, -4.19230953183702, -7.0, -3.3891660843645326, -3.738209577416493, -3.4728864095132606, -7.0, -3.9252295573903355, -2.3705308178486595, -2.954139093679364, -2.8505849763520317, -4.367057590612843, -7.0, -4.233059599096587, -2.8150081817089876, -4.388846893599511, -7.0, -3.2056604003828313, -4.142733511313519, -2.895956337455235, -3.8384082784941866, -4.694526229121204, -3.863976783904387, -3.107268464426313, -3.899492196138132, -7.0, -4.085067485564809, -3.0898815718051527, -7.0, -2.7657660113656077, -4.2440295890300215, -3.859781410816321, -4.383725626444643, -7.0, -7.0, -7.0, -7.0, -3.5438060099142876, -4.265572461743118, -2.8251703089538873, -3.1582619493278363, -3.7952541825808828, -3.321365831759885, -3.7334781411151887, -3.8845688149183335, -2.8958679123662567, -3.2542257208262924, -2.7271730084083075, -3.510712529777408, -3.796157876906914, -3.2835273648616936, -2.083171585668804, -2.2689030342501972, -3.676693609624867, -2.649964478499643, -3.086137286738593, -7.0, -3.067535789696351, -4.126180128666808, -3.890923771489014, -7.0, -3.4998888933231624, -2.8816355753447067, -4.532988656508851, -3.5859117103194342, -2.7564730949882934, -3.5952757118020995, -2.8292151798431755, -3.961231197044663, -4.632538271950371, -2.2930425467054785, -3.594083019091813, -7.0, -3.3028538166713055, -3.0478515240423842, -3.191355575615615, -2.853211334503317, -1.2438694482941055, -3.279393142747864, -2.572399436253159, -3.0236639181977933, -7.0, -2.5347278137414437, -3.289128887401494, -3.0508307036242797, -3.8094346505993877, -7.0, -7.0, -3.526210003841664, -4.359512960594626, -7.0, -7.0, -7.0, -7.0, -7.0, -2.943828604020416, -3.7333577879255855, -2.6834736303972564, -7.0, -3.225309281725863, -1.8530557878276115, -3.143327129992046, -3.7115541682501694, -3.2806921642851177, -2.368713956878259, -2.4840624550927735, -2.998047874277389, -2.6825662250351265, -3.6133131614554594, -7.0, -3.916848582363452, -3.4172225044337696, -3.412236482169269, -7.0, -7.0, -3.9603280505301433, -7.0, -3.623559390005437, -3.3929606147967957, -3.811909980420099, -7.0, -1.9917548970447791, -7.0, -7.0, -3.784413494186196, -3.548826018446806, -3.332041016492325, -7.0, -7.0, -2.8941683183448936, -7.0, -3.304131339528794, -7.0, -3.6774244377012475, -2.706759401357577, -7.0, -2.8773713458697743, -7.0, -3.372819981678968, -3.4223709414184693, -7.0, -3.3861421089308186, -2.9488040459328113, -7.0, -2.9208187539523753, -3.0657494206748472, -7.0, -7.0, -2.819214799882384, -3.8069935136821074, -7.0, -2.4312616252869494, -7.0, -7.0, -7.0, -3.0216853522157057, -2.8737009429131453, -3.4784221877400805, -3.0029062314830117, -7.0, -7.0, -7.0, -7.0, -3.957271979992943, -7.0, -2.9440712135860867, -2.9759370424831104, -2.965107585849056, -7.0, -3.125062803023057, -2.7251991210907534, -2.68436653636779, -7.0, -2.364494711644551, -3.4801507252732806, -7.0, -7.0, -2.3196737645957173, -7.0, -7.0, -7.0, -7.0, -7.0, -4.415490852171469, -7.0, -7.0, -3.474798818800631, -2.2577973416492347, -7.0, -2.8834392328044864, -2.7559430819678017, -3.4099331233312946, -2.8683504996479683, -7.0, -3.214137103413449, -7.0, -3.0313507468640846, -2.16006627804627, -7.0, -7.0, -7.0, -7.0, -2.302600682663212, -7.0, -7.0, -7.0, -3.5561818466529114, -3.5700757053216043, -3.563599728881531, -3.2750808984568587, -3.072663402044344, -7.0, -7.0, -7.0, -3.311435968289161, -3.2771506139637965, -3.594282028811806, -3.623766000133931, -7.0, -3.2692793897718984, -7.0, -2.7866968316757634, -3.9502674680135885, -3.883377489748339, -3.617000341120899, -7.0, -3.816373888752362, -7.0, -7.0, -3.047488412623774, -7.0, -7.0, -2.2894943600325126, -7.0, -3.754654069255432, -7.0, -7.0, -7.0, -3.5618166643189575, -3.88320703335239, -3.6783362467321803, -7.0, -7.0, -4.130730350227968, -7.0, -7.0, -7.0, -4.3057596722628215, -4.317415586331099, -7.0, -3.9078304032196507, -3.0070112422218074, -2.689705825691564, -4.051056001837605, -4.604722722859099, -4.60680040755567, -2.605493791188096, -3.085569767549475, -3.613831254971802, -7.0, -7.0, -4.606316861140107, -7.0, -2.5806841888260506, -3.4461441031404796, -7.0, -3.744644971105124, -2.2896969042724162, -4.612582551653833, -4.130987398931264, -4.6046471793073565, -3.667743423125636, -4.1376705372367555, -3.43253103602832, -2.8710311121124183, -3.767357323504857, -7.0, -4.305082539675178, -4.006947136561108, -4.621352872810209, -4.130247973456816, -3.251415136117222, -4.605046332184747, -4.14703703406944, -7.0, -2.4250559185103264, -4.305684487423615, -7.0, -3.719652330718798, -7.0, -3.011048910322697, -7.0, -7.0, -3.934437847785288, -3.1512747226484303, -4.3176873404861835, -1.975059370771855, -3.6291648572073134, -2.8272327153437096, -3.5836804262469997, -4.60916737430202, -3.6110857334148725, -3.3277164414769396, -4.310672074930124, -4.3115207624480485, -7.0, -7.0, -4.133538908370218, -2.956388564539977, -1.7478708307789022, -7.0, -7.0, -3.3475867664222134, -4.303854561999643, -3.70091514151692, -4.34341844163964, -4.60612329172563, -3.6739828907278897, -2.5624768485650953, -7.0, -3.3449504264625767, -7.0, -7.0, -2.529627893960828, -4.32087296522725, -4.608279934969188, -7.0, -2.8958111947786325, -3.707591464521357, -2.6670873338292944, -3.6821952345400715, -2.8329170498173046, -4.6181108817371745, -2.1688958897764117, -3.6359760701938337, -3.0103432315964427, -4.605595915240784, -7.0, -4.326970450324921, -3.6646524202232635, -3.056595854893766, -2.72987442952283, -4.12978653452034, -2.9046994005024, -7.0, -4.6048737705526355, -7.0, -2.7220320878181923, -4.304242719659696, -3.5111323333436464, -3.712681262579364, -2.9806060027559775, -1.9058797317933902, -4.610010364384026, -4.13046242928158, -3.835785662062868, -4.6155186977102085, -2.690979421266162, -4.010098454941318, -7.0, -4.145807366632503, -4.335598296533003, -3.343034210479198, -4.61240235746753, -3.193506227976473, -2.7531277550280353, -4.3088630883653005, -3.715260324665018, -4.309342671528001, -3.172166484285892, -4.011993114659257, -3.515221504900477, -3.340582908247528, -4.304974961155454, -4.610724025229824, -2.3559012253026625, -3.4848893472645464, -7.0, -4.6049924140397565, -3.8459864004658586, -7.0, -7.0, -7.0, -4.60612329172563, -4.604722722859099, -3.0898620501650678, -3.5084816216810326, -3.1642322463464287, -4.348694190265541, -7.0, -3.8304145127503877, -7.0, -4.6072405038317426, -3.8365561838816618, -4.232029937620133, -3.087108614449726, -7.0, -7.0, -4.3100344691359895, -2.3532228716177452, -7.0, -4.604301669918353, -4.143202225049597, -4.314951601661373, -4.305125563622699, -3.4117459360126303, -4.015841571684366, -4.149249912590282, -3.4787931682426243, -4.619698415640197, -3.2946958051075232, -3.7729081949712717, -4.609466342831634, -2.3310680174503204, -3.6540802353065707, -7.0, -7.0, -4.310417144932937, -4.608001568513314, -4.306264147948217, -7.0, -2.9576976220470885, -7.0, -3.728457085328827, -4.6050894618815805, -3.539655029536453, -1.9352171200597414, -3.3813380926383116, -3.4726687041948, -3.3386457091490778, -4.013953149375142, -3.925920296643791, -4.015181557509164, -4.017607147477976, -7.0, -4.6173463799861105, -2.7506369413912526, -3.654711189836538, -3.606136981286755, -7.0, -3.1688544721436047, -4.319959229070181, -3.343394525079649, -7.0, -2.906107664694548, -7.0, -3.126207830557576, -4.308777773664721, -4.140256569677416, -4.607894456964924, -7.0, -3.2943032512870527, -3.9245893856694183, -7.0, -2.9343850705382533, -2.115525895116428, -2.345411075571206, -7.0, -7.0, -4.60794801604128, -7.0, -4.3055555688380585, -7.0, -7.0, -4.609839764305466, -2.516959135876479, -3.3383369465610726, -2.919935696126473, -2.7748202689123707, -4.604150423082331, -4.006230646481024, -7.0, -4.012077599531015, -7.0, -7.0, -4.145465748882863, -3.4716583590181602, -7.0, -7.0, -4.6041720329983375, -7.0, -3.908270499495724, -7.0, -7.0, -4.141439320940584, -2.3454803518919145, -7.0, -7.0, -7.0, -4.607154666400511, -3.7658494287817996, -4.008238108813141, -7.0, -3.9120838257658943, -3.5031386548731835, -2.798964374045131, -3.661216185615503, -2.9407795229136404, -4.317896266492956, -7.0, -7.0, -2.3226037128118584, -3.542348146022223, -3.1362683085718692, -4.611362130666253, -2.995401486253443, -7.0, -4.30628560200552, -7.0, -2.81352831808339, -3.240674027620307, -3.1091965308476417, -2.999159551305879, -3.2539993085092718, -3.71352204300198, -7.0, -4.304985720206672, -4.013174409878867, -3.374514134412372, -3.850023034064681, -4.603966695368847, -3.8294109927999447, -4.3144255411267, -4.130151433775354, -4.140864047889339, -4.604571622612871, -3.224667706687742, -2.8903128238621623, -3.122649163553088, -3.628491104967123, -3.662621437602524, -2.3163582346557057, -2.622599100855059, -4.606488850442648, -3.492694236580896, -4.605746659595613, -4.611808247276516, -3.79492600409461, -3.774808830310706, -2.4400589014712017, -3.1142772965615864, -3.883642511234492, -4.31940798167448, -3.5933263522096612, -3.301649973616383, -2.3591801406581605, -2.6855663052536576, -7.0, -7.0, -7.0, -3.9588504516796785, -2.623795791562612, -4.608493941666254, -7.0, -4.024926716417962, -4.306392856397526, -3.4457909564400544, -4.307506734689901, -2.774769926364078, -7.0, -3.835246539996311, -2.3990368383908267, -3.3552812002137884, -2.8567210964328824, -3.445441743912532, -2.6311440540044337, -7.0, -2.4188820199132657, -2.7308155314228784, -3.103509151942946, -7.0, -3.6124235606645025, -7.0, -2.596254003169732, -3.3602146132953523, -3.4230240909444603, -3.6678160103390933, -7.0, -7.0, -2.8927334075286266, -4.6075622431835885, -4.3093746249166704, -4.13418773628865, -3.946471915902509, -4.307175012040345, -2.0939454921482628, -7.0, -7.0, -3.0226757619537272, -2.7172300777638196, -4.164561029265557, -3.412677912040056, -3.846846012948204, -2.2790374965594027, -3.675053913679753, -2.7842190856301663, -2.7293004384241, -2.9061760145910296, -4.339948061694351, -3.300095257323717, -3.0660379833117406, -3.0712452575312317, -2.7286559894768234, -3.03726282403086, -3.0246508319859577, -2.2719945114792024, -4.004562103992181, -3.5013908232543454, -3.4924810101288766, -3.072540923252852, -2.802625019766844, -2.766365628359224, -3.7659085216120016, -4.087518774750445, -2.511683639438494, -3.0593424912315332, -7.0, -2.9543916354735393, -3.779508308822964, -3.0109680484355525, -3.352454090637652, -3.061311084170788, -3.7170668969538765, -3.2375186046331073, -3.498678054959745, -3.4529103602313107, -2.739406189097407, -3.1291794789307543, -3.570840009456516, -3.2742432132856725, -2.158785476021301, -1.8598212968349632, -3.248100836962856, -3.58167949072423, -4.0214993986774745, -2.2106312850861856, -2.572748425547102, -3.270273663420831, -3.014991990808102, -2.543779303467573, -2.9508514588885464, -7.0, -2.945267692378855, -3.625069132996176, -7.0, -3.9637595028687533, -1.1779344090499038, -3.80240229112848, -7.0, -2.2806547667765416, -2.168510155883977, -3.0718843869084713, -4.607444299761739, -4.0478198278165936, -4.131180085665366, -2.087542546880814, -4.058663227194839, -3.587464304551835, -2.699088048927707, -2.2389523321619205, -3.8269274294752718, -2.484184760155121, -2.422114838495176, -2.318268587392731, -3.1784708516886595, -3.0326110132705195, -3.5849434042753194, -2.3503364723516253, -1.7562256821745161, -4.31011953734681, -2.7580077906876372, -2.067243312868712, -4.160328445806977, -1.9709155878448599, -7.0, -3.526210003841664, -7.0, -2.195198314008875, -7.0, -4.6049816296074315, -7.0, -4.605832775740528, -2.770445033138055, -2.587635303959155, -3.4774416871683957, -2.7016471896231704, -4.606821886016697, -3.540610986582727, -2.69221219192535, -4.625466793609239, -3.7178576585672802, -7.0, -3.3553269802541617, -7.0, -2.478852407969493, -2.925401353528513, -4.132963726130726, -4.321411997974006, -2.2479815277012127, -4.144781706171568, -2.607838532274997, -7.0, -4.609562396167091, -3.0917144760028554, -4.308852424944224, -7.0, -4.016866270828975, -3.3791644574345927, -7.0, -3.284074822337217, -4.304458212993763, -4.606488850442648, -3.0061532507739805, -1.8757383000886039, -2.550725195760618, -4.604474458972241, -3.8506053969224783, -3.031103116367241, -7.0, -3.453970311619139, -7.0, -3.917977882592908, -2.7858596932679207, -7.0, -4.305577057926727, -3.5110396509000643, -3.537231245931346, -3.4447569701519756, -4.132216983942544, -3.714947644666789, -3.6593984972774454, -3.911274825786263, -3.5780658838360915, -2.9008162576433216, -3.2118191363261213, -4.605283492530251, -3.0555392705956312, -3.4876534031172053, -3.342079681345193, -3.33225258250488, -7.0, -4.004504083022066, -3.2304489213782737, -4.14514459027186, -1.9641584760546043, -3.287221333246573, -3.795303884967312, -4.315886415708487, -7.0, -3.5911573950798172, -4.609402295470293, -2.903051889313784, -4.608322744745895, -3.719289844693328, -2.7933183562093538, -4.314551853781383, -7.0, -2.905758019331565, -2.3502692650982824, -3.4663435817339256, -4.146975117308223, -2.5426143376142067, -3.6759106662919567, -3.9562933202213877, -3.9157479755368123, -2.9868750434247, -3.646913208595694, -4.138513214157753, -3.915019727210068, -7.0, -7.0, -3.4350684440390644, -4.629959764611881, -3.9129762338315563, -4.152400471674778, -2.700922906704107, -3.8439072693947747, -3.142926666624649, -2.1093033285923224, -3.416219418368308, -3.0969202315815303, -7.0, -4.016563295318421, -7.0, -3.4988518534235458, -3.1417338533026715, -3.5702120340015426, -7.0, -3.4423961423406735, -4.312325482315131, -2.2051077514026, -7.0, -7.0, -7.0, -4.303649561060314, -4.605961917948959, -7.0, -4.129378342793226, -3.6222705557781127, -4.140602308020332, -4.143815995423801, -4.608943012764416, -4.6100636631681216, -3.492534750799617, -3.461841402144283, -3.6110006527050493, -3.3537666767989336, -2.6842880577485695, -2.935024167906121, -1.9611385794778147, -2.748599530903582, -3.532126927376701, -2.9563498823917462, -4.6047658847038875, -2.9184235414128294, -3.1316721192672685, -7.0, -2.0832314678333397, -3.248879101447868, -3.4062526845360575, -2.673982441385144, -3.5864850094217466, -3.422210117588728, -3.651418016932037, -3.9073791099869006, -2.702804123119662, -3.906151802007568, -3.3906702126261803, -2.9630003484681415, -4.311287538662283, -4.604096393587492, -7.0, -7.0, -7.0, -7.0, -7.0, -4.01556930642988, -7.0, -7.0, -7.0, -3.3721825624561594, -3.6844862921887342, -7.0, -7.0, -3.4260731174384857, -3.4013266748944875, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6044078535129347, -4.125660151674213, -7.0, -3.8964894735932685, -3.0742400121298266, -7.0, -7.0, -7.0, -4.323994202181974, -4.309332019875982, -3.820091941269979, -3.48847080648477, -4.003697433719652, -7.0, -7.0, -7.0, -4.0213340397751285, -7.0, -3.741348602475895, -7.0, -4.328053250252685, -7.0, -2.7213706944108016, -7.0, -7.0, -7.0, -7.0, -3.4143790345261684, -7.0, -7.0, -7.0, -4.308180101030666, -4.016113666358908, -2.99915229898292, -7.0, -3.732731413127401, -4.401831174908948, -7.0, -7.0, -4.337758671493417, -7.0, -7.0, -4.003934206173708, -7.0, -4.300943128080553, -3.8788280680681337, -1.64251162631971, -7.0, -7.0, -3.6338722626583326, -7.0, -3.910375352215901, -4.06619543102185, -7.0, -4.336299595763418, -3.0586286357672274, -7.0, -7.0, -7.0, -7.0, -2.7990942809571027, -7.0, -7.0, -7.0, -7.0, -4.301203678722446, -7.0, -4.051171823995435, -7.0, -4.315928382610187, -2.879093575458894, -3.6522656855382767, -3.7702774797561722, -7.0, -7.0, -7.0, -4.016761820389091, -3.6315655167545393, -4.0576090562294835, -7.0, -3.6168560768455857, -4.302395873152567, -7.0, -7.0, -3.8513500913836216, -7.0, -7.0, -4.3115207624480485, -3.667733052533267, -3.456001437208452, -4.299529089146387, -7.0, -4.307731306161607, -7.0, -3.0556096627549363, -7.0, -7.0, -7.0, -3.875138464437482, -3.5888690345141137, -7.0, -3.488653253269166, -3.3230744031087247, -7.0, -4.413769018024154, -7.0, -2.6569631495746546, -7.0, -7.0, -7.0, -7.0, -4.300986564044174, -2.818270638563707, -7.0, -7.0, -7.0, -3.304090270521751, -7.0, -7.0, -7.0, -7.0, -7.0, -3.171126508351265, -7.0, -3.822965297912282, -3.7750276000988445, -7.0, -4.123410591862496, -7.0, -7.0, -4.309289410655256, -3.0505086461516764, -7.0, -7.0, -7.0, -7.0, -3.4754209652146257, -7.0, -7.0, -7.0, -3.61255075811203, -7.0, -4.312050351180238, -7.0, -7.0, -3.3754400598577745, -7.0, -3.724849087629386, -7.0, -7.0, -3.5025536090581117, -4.2964238485037765, -7.0, -7.0, -4.302504092355714, -7.0, -7.0, -7.0, -3.738288925247438, -7.0, -3.3014869073125475, -7.0, -7.0, -3.3237231691877547, -7.0, -7.0, -4.057799186029343, -7.0, -3.8523783210431803, -4.013237602964741, -3.0396645412571153, -7.0, -7.0, -7.0, -7.0, -3.896213795234906, -7.0, -7.0, -4.020651268004342, -2.921399787918667, -7.0, -3.644340098826323, -7.0, -4.3931187349197875, -7.0, -4.314541329129881, -7.0, -4.298328988073496, -3.3101089047316647, -4.326949994165998, -7.0, -7.0, -3.775100498879025, -3.571825249040829, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0565237240791006, -3.3981938297209937, -3.2525104653286196, -7.0, -3.5969927280580043, -7.0, -7.0, -7.0, -4.29154643969221, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015841571684366, -2.6738111180539055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.075711159354416, -7.0, -3.9215650987885304, -4.106156886966839, -7.0, -7.0, -7.0, -2.7046014348376373, -7.0, -3.5795794628965285, -7.0, -2.5876985647538873, -7.0, -7.0, -7.0, -3.9823918536435667, -3.0661483724233816, -3.5458481008534783, -4.082623825798577, -4.41338359662314, -3.409827494124425, -4.000173683058465, -4.291368850451582, -7.0, -4.3397097547798325, -3.490740829565697, -7.0, -7.0, -4.310629596987806, -7.0, -7.0, -7.0, -7.0, -3.66064416533768, -7.0, -7.0, -7.0, -2.880258687674373, -3.8260585973805052, -7.0, -3.628876882304244, -7.0, -7.0, -4.057970231710706, -7.0, -3.9703313765073305, -7.0, -3.5543680009900878, -3.3660492098002353, -3.8718063644587293, -7.0, -2.503720650468077, -3.819609732751585, -7.0, -7.0, -7.0, -3.6140178991060923, -4.063164412942957, -7.0, -7.0, -3.8564670670037584, -7.0, -4.324035392913916, -7.0, -3.9028546804129594, -4.301377292349344, -3.6074979143787846, -4.063445953123033, -7.0, -3.187362958111993, -3.938259470794594, -3.041518803428553, -7.0, -4.100111959529749, -3.5595369902185747, -4.397087956203049, -7.0, -7.0, -7.0, -7.0, -4.0980896903639525, -4.384729651619834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8030215785684427, -7.0, -7.0, -3.724573739627489, -3.3013083003719372, -3.6722364404445473, -4.365319475896217, -4.547657811539415, -3.7840974174736335, -4.122690884070814, -3.230982069913129, -3.4206249305410177, -3.852083335846628, -7.0, -3.269746373130767, -3.8531138935152702, -3.927355695635591, -3.074747891283198, -7.0, -3.5649880827373353, -2.969042967305813, -4.473165692313548, -3.450227107028447, -4.356599435724971, -3.9018313429827627, -3.254513550378272, -3.2053848312193485, -4.5011551526205675, -7.0, -3.6632431070858584, -3.6902214025836595, -7.0, -3.080937141070891, -4.5234472987303755, -3.977867257898025, -3.7571790442859356, -3.7603470785299065, -3.8431081419996067, -4.191520876040194, -4.122346966255079, -3.1694539986517043, -4.233846088909559, -3.664721509386932, -4.003417445202194, -3.49560379871742, -3.6401094007920802, -3.1949874740307362, -3.0481642458737346, -3.4287825114969546, -4.326909078957348, -2.9495564322620074, -3.459241664878082, -4.3442153756565, -3.0995406620105483, -3.25854700301131, -3.9802501704106534, -7.0, -3.5518158223510157, -3.63002085111341, -7.0, -3.6230251917855596, -1.7089606328996565, -3.5278875659527045, -7.0, -3.1593517822748245, -2.887522641700816, -3.782677688081816, -4.294267772179458, -7.0, -4.296116492169714, -2.9134871923593626, -4.397644587969917, -4.056347339540412, -4.18904090790901, -2.756108284585342, -7.0, -3.9995002739482257, -3.185409929405979, -3.453553118913122, -3.7593089314156347, -3.5939380039687028, -3.6258095810155693, -3.3680122364583953, -3.4407079732485175, -7.0, -3.5369532983211798, -2.8884304517591888, -3.654830860802844, -3.268671559746992, -7.0, -4.359512960594626, -2.195198314008875, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0816712872909235, -3.2696027394176372, -4.026267622231873, -3.172310968521954, -7.0, -4.018679698624002, -3.043553438113086, -4.330555809062996, -7.0, -4.2934951434720245, -3.389856860618742, -3.9893385599532865, -3.0918320976941964, -3.5850280996750423, -3.998695158311656, -4.324611653328921, -4.032753030285057, -3.846378353712088, -3.8955698643861068, -7.0, -4.298612947759947, -7.0, -7.0, -4.000824376605606, -7.0, -4.04766419460156, -7.0, -3.261575091606645, -7.0, -7.0, -3.620530148253107, -3.5649360299941315, -2.995559366519752, -7.0, -4.337219584418181, -7.0, -4.304770488523259, -7.0, -7.0, -4.313761796292436, -2.9737434376601035, -4.289432863850786, -3.5934411445018064, -4.029018329546481, -4.011908613349155, -3.3757915976851924, -3.69605043980775, -3.537714180353135, -7.0, -4.300182294646901, -4.319043566399113, -3.678897576201988, -3.2837659364659917, -4.289811839117621, -3.874017703862186, -4.046241459145623, -7.0, -4.040905475737317, -7.0, -7.0, -4.127817234480274, -3.8470994481573415, -2.873870943586566, -4.03852081516169, -3.7575858013465804, -4.313571968439817, -7.0, -3.813213918024926, -7.0, -3.219619449979454, -3.8188634466898144, -3.8475315308233258, -3.1475389218886427, -3.708697027024642, -7.0, -3.0201367562556896, -3.166345522007818, -4.062863902110119, -4.0268599859845615, -3.2704237178699413, -3.640938348618988, -4.086555575051295, -4.0081954933208195, -3.6281552970774773, -3.770041554319669, -4.009960531470598, -4.307795448115974, -4.289878682790416, -7.0, -2.660969667837611, -3.7371926427047373, -7.0, -4.338595923576831, -3.6811672035972047, -7.0, -3.6213450835431074, -3.2708715098186003, -4.070942474030112, -4.036569016076007, -7.0, -4.016009034734362, -7.0, -3.6695957810243134, -3.6738499773429494, -4.376941757146759, -7.0, -7.0, -4.005309236848516, -2.6574243844044845, -7.0, -7.0, -7.0, -7.0, -3.990138980051281, -7.0, -7.0, -3.6249349378555262, -3.6160972451781976, -7.0, -3.82013575187043, -4.2996380249790755, -7.0, -7.0, -4.000867721531227, -4.298285285484084, -4.029708362514895, -3.7120180004512506, -3.3259122856009586, -3.916471495447239, -3.4673860925523505, -7.0, -7.0, -3.8728358439998014, -7.0, -7.0, -3.255487875542584, -7.0, -7.0, -3.746673112470323, -4.335698551498222, -3.8556604651432527, -7.0, -7.0, -3.724644453746363, -7.0, -3.768508607439089, -7.0, -2.6897635157677504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.602282510234337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.336419704862658, -7.0, -7.0, -7.0, -4.668668908051015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.186717819029356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.06268940309636, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5456008773184835, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1233615587462964, -7.0, -3.4766867429456445, -7.0, -7.0, -7.0, -4.45193219896035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.845098040014257, -7.0, -7.0, -7.0, -3.365721916747837, -7.0, -7.0, -7.0, -7.0, -3.676931263673469, -7.0, -7.0, -7.0, -7.0, -4.081743249922721, -7.0, -7.0, -3.3104808914626753, -3.5298151966446305, -7.0, -7.0, -7.0, -4.452522424089479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.365787395093661, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024321442141565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.540354505451778, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.41075423394305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.574872019591453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354050785610767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.7128710007558485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163782345773859, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.231444102917431, -7.0, -4.709981891514242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313234291694724, -3.319574469725743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.103803720955957, -7.0, -7.0, -7.0, -7.0, -7.0, -4.874074455499286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6049816296074315, -7.0, -4.555215405126073, -7.0, -5.2731691668058485, -7.0, -7.0, -4.7170793938576265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3727279408855955, -7.0, -7.0, -7.0, -7.0, -7.0, -3.899218417851373, -7.0, -7.0, -3.6904729652670305, -4.293738117783524, -7.0, -7.0, -7.0, -4.069446083880313, -7.0, -7.0, -4.57848448648651, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278593568241134, -7.0, -7.0, -4.620796887671208, -7.0, -7.0, -7.0, -5.3877083108116155, -7.0, -4.530161263362409, -7.0, -7.0, -7.0, -7.0, -7.0, -4.773223105446387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.14938848527283, -7.0, -4.311457168381031, -7.0, -2.8416209136493107, -3.861321542455379, -2.2496641512224946, -7.0, -3.7234761958641114, -7.0, -4.93408415896217, -7.0, -7.0, -2.8357539675193832, -4.660998211489886, -7.0, -7.0, -4.133858125203335, -7.0, -7.0, -7.0, -4.069279499594718, -3.6527296960692475, -7.0, -3.5757871627509847, -4.311621080820672, -4.803206094655253, -7.0, -7.0, -7.0, -4.352737095711291, -7.0, -5.104097710604107, -3.7703732878674874, -7.0, -7.0, -4.318876874660981, -7.0, -4.78172666001846, -7.0, -4.2102649990322885, -7.0, -4.420313384988272, -4.485295438726089, -7.0, -4.097723243076378, -3.9137897777429553, -7.0, -4.648283880781487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7024305364455254, -7.0, -3.24551266781415, -4.038461196178564, -7.0, -7.0, -7.0, -7.0, -7.0, -3.540718677399603, -3.5983527098692836, -7.0, -7.0, -4.12165831249807, -7.0, -3.6504046698680317, -7.0, -7.0, -3.766635886310268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.838639235946072, -4.184755292957543, -7.0, -3.417803722639881, -7.0, -3.02201573981772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.667826378950711, -1.6830470382388496, -3.1997551772534747, -7.0, -2.9242792860618816, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4952667443878105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024759239035396, -7.0, -2.797613730153076, -7.0, -7.0, -7.0, -7.0, -3.761852694466383, -7.0, -7.0, -3.49087108434559, -7.0, -7.0, -7.0, -3.5874354265840136, -7.0, -7.0, -4.302352577919563, -7.0, -7.0, -7.0, -7.0, -3.3462551493613857, -7.0, -7.0, -7.0, -7.0, -3.7547495668660162, -7.0, -7.0, -7.0, -4.226445232748228, -7.0, -4.156730826499419, -3.7663384752512874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0695976288793294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188647295999717, -7.0, -1.88711696101553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1746411926604483, -3.4037380503638555, -7.0, -7.0, -7.0, -7.0, -3.036628895362161, -7.0, -7.0, -3.7180585877122407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0213960567419713, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1886754229698315, -4.205258512004059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5713011255662694, -7.0, -7.0, -4.96954869669576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.387265215784176, -7.0, -7.0, -7.0, -7.0, -2.9417598138146954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.907115638871369, -7.0, -3.8904769089601707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145724574880668, -7.0, -7.0, -7.0, -7.0, -3.711975854351756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.229758611221373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6036855496146996, -7.0, -7.0, -7.0, -7.0, -7.0, -4.079271714641203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8506462351830666, -4.691792939736922, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.018658897585517, -3.707995746422929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.175263242633451, -7.0, -3.385069776331935, -2.8573324964312685, -7.0, -4.752985205432184, -7.0, -7.0, -7.0, -2.4292137870854282, -2.0782755220866007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.574816148523287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.137986732723532, -7.0, -7.0, -3.7218930162149575, -3.2949069106051923, -7.0, -7.0, -7.0, -3.837019948540908, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5514499979728753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.110589710299249, -7.0, -7.0, -7.0, -7.0, -2.568495067193246, -4.941302682607611, -7.0, -7.0, -7.0, -7.0, -2.888179493918325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9030899869919438, -4.231664945021339, -7.0, -7.0, -7.0, -3.9801852369473347, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4800069429571505, -7.0, -7.0, -2.683947130751512, -7.0, -7.0, -2.470924753299968, -2.6242820958356683, -3.1559430179718366, -7.0, -7.0, -3.9147661369258526, -7.0, -7.0, -7.0, -5.131069836497796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4653828514484184, -2.919862253555538, -3.48826861549546, -7.0, -5.8282389295255035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.675136504467994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.875153324063777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4631461367263494, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3443922736851106, -7.0, -2.9025467793139916, -3.6174197467371765, -2.7041505168397992, -4.499480881230387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.878740036824943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3502480183341627, -7.0, -5.065041648054379, -3.5685537120494426, -7.0, -7.0, -7.0, -5.234772824533177, -1.9577885519831222, -2.6725596277632757, -4.436877927710658, -7.0, -7.0, -7.0, -7.0, -7.0, -0.9734699524609507, -7.0, -7.0, -3.6392872259102367, -7.0, -4.036060818784233, -5.01043141261124, -7.0, -2.6364878963533656, -3.361160995195026, -7.0, -4.255156677797138, -7.0, -5.404896975382031, -7.0, -7.0, -7.0, -7.0, -4.427745699349721, -4.780742035973011, -7.0, -7.0, -7.0, -4.896702544930834, -7.0, -2.893206753059848, -7.0, -4.176419268765049, -7.0, -3.841730871182167, -7.0, -7.0, -4.6049816296074315, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2990712600274095, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6334684555795866, -7.0, -7.0, -7.0, -4.318125969073185, -7.0, -7.0, -7.0, -7.0, -7.0, -3.636888906983799, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.093551253702007, -7.0, -7.0, -7.0, -3.4450330705113963, -7.0, -3.1179338350396413, -7.0, -7.0, -3.766561552637531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1744959193752993, -7.0, -7.0, -7.0, -7.0, -7.0, -3.265525335219074, -4.116277542184733, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7895807121644256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.772834927239018, -7.0, -3.5864747785713966, -3.3053513694466234, -3.998302940098541, -7.0, -7.0, -7.0, -4.020692678682027, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.525731356850706, -7.0, -7.0, -4.542912526000351, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313128713845194, -3.6379897807846855, -7.0, -7.0, -3.1772478362556233, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7013324461464732, -7.0, -7.0, -7.0, -2.8943160626844384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.494446809281385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.203168922875464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.270493668465084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7058637122839193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.605660526371362, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.445588636884166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.124347694112854, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.13950127473591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.501470072100412, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.537668009845832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7528670703486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.653852867088518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.893428841779545, -7.0, -4.120837060254737, -5.4116592619924875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9409197134280625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.828189263324731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.769310847343161, -7.0, -7.0, -4.709676921319747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.996191962799318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092439911331141, -4.3227979683463875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.763716179607514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.134591434710877, -4.4838819562406345, -4.200129722638182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6190933306267428, -7.0, -7.0, -7.0, -7.0, -3.353820094897413, -7.0, -7.0, -7.0, -5.4047653184023146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941819404166313, -4.95424733490676, -7.0, -5.045817636181431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4636690681343865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.493695000988786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.792244564836703, -4.785336954534081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.045604591991318, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.017492446477275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.903165981876918, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.571707667478758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.563836918664545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.839792184445329, -7.0, -7.0, -7.0, -7.0, -3.623766000133931, -7.0, -7.0, -7.0, -7.0, -2.720159303405957, -4.6064995975128875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5466660250701842, -4.448010273039476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.928925593652149, -7.0, -4.0124153747624325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.61627627546151, -2.9822712330395684, -7.0, -7.0, -7.0, -3.614158709509175, -7.0, -7.0, -4.753123244681713, -7.0, -7.0, -7.0, -4.090028673590874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.364701049594699, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.974961259485409, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.975316900589052, -7.0, -7.0, -4.654153430248454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4657545198338777, -7.0, -3.743901550485179, -7.0, -7.0, -7.0, -7.0, -3.7283537820212285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.411790528526162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163494325730938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.364550995353972, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.424291655008933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.83028705968542, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4693310102934105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.097042018466742, -7.0, -7.0, -4.0178010275503055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292023351257005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.879921229553079, -7.0, -7.0, -4.620495214805232, -7.0, -7.0, -7.0, -7.0, -4.269396182694991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4717536368068815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.449555531677028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983581186705791, -7.0, -3.7390340870857917, -7.0, -7.0, -3.1486026548060932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.487669954658609, -7.0, -7.0, -7.0, -7.0, -4.653506769215551, -3.7637274037656985, -7.0, -7.0, -7.0, -7.0, -3.840461585060537, -4.429025156711519, -4.3041600855231055, -3.580696939712437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.653959822052159, -7.0, -4.87002719731595, -7.0, -7.0, -4.605832775740528, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.465992220784308, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5289167002776547, -3.3330370740447055, -7.0, -7.0, -2.6837222824514324, -7.0, -2.4953130222377027, -2.298158125667446, -2.0444526488723307, -7.0, -7.0, -1.5947607525864629, -2.0247934233387634, -3.204933522354145, -7.0, -7.0, -7.0, -2.2174839442139063, -7.0, -3.8159096508867747, -4.616692519380448, -4.3092965124823595, -7.0, -3.1067007323623543, -7.0, -2.5185139398778875, -7.0, -7.0, -7.0, -7.0, -1.9852767431792937, -7.0, -3.0419845014867866, -7.0, -2.8832828000102766, -7.0, -2.7052933977148914, -7.0, -7.0, -7.0, -7.0, -3.0421252913482664, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0556331242728354, -1.021779774323242, -3.5834821635264125, -7.0, -4.170797405996383, -7.0, -2.9674309630208207, -7.0, -2.8796692056320534, -3.5342165443323297, -7.0, -2.2340722388625216, -2.4712917110589387, -7.0, -7.0, -2.503109436671369, -7.0, -7.0, -4.3273895893854775, -3.5952757118020995, -7.0, -3.823887025677337, -3.4316853446860116, -7.0, -3.0806264869218056, -7.0, -2.795482766475396, -2.2017384166617116, -3.0549958615291417, -7.0, -7.0, -7.0, -3.12466721769861, -7.0, -7.0, -4.526752694348148, -7.0, -3.677728586801082, -4.24283946867282, -2.4919616863062677, -7.0, -2.251029538523903, -7.0, -2.0718820073061255, -7.0, -7.0, -3.3653943768547783, -7.0, -7.0, -7.0, -3.4881627803586124, -7.0, -2.167317334748176, -7.0, -7.0, -7.0, -7.0, -2.6314437690131722, -3.78738962135211, -1.817144512411414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5397032389478253, -7.0, -7.0, -3.799891684656865, -2.9673919516143807, -2.72926605924713, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8934010868997206, -7.0, -7.0, -7.0, -2.5477747053878224, -3.0681858617461617, -7.0, -7.0, -3.3106933123433606, -7.0, -2.933689708957895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4380436918998125, -7.0, -7.0, -7.0, -4.303606390634642, -4.015317833069116, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3394017480193674, -7.0, -7.0, -7.0, -3.895680320361074, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7200765727681406, -3.548662964853018, -7.0, -7.0, -7.0, -3.7212333700172775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.113581795950651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8900804415092565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.337472572794907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.361403567658646, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8435068516736086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.156594577249076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008805916155986, -7.0, -7.0, -7.0, -4.167861444567519, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.966188680956137, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7022294276288252, -7.0, -7.0, -3.6652056284346006, -7.0, -7.0, -7.0, -7.0, -7.0, -4.198712057460401, -7.0, -7.0, -7.0, -7.0, -4.593762200380792, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.940474224586627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.069926968752473, -7.0, -3.985695859689842, -4.039612381896724, -7.0, -3.962889987391791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9109710618483087, -7.0, -4.0062092405376575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.530263748713028, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7197454925295768, -7.0, -7.0, -7.0, -7.0, -3.555215405126073, -4.009020737800639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2474728128175467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03981055414835, -7.0, -7.0, -7.0, -7.0, -7.0, -3.887763540692103, -7.0, -3.122941047649739, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8308131351407133, -3.9828589423120753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6331990421206344, -7.0, -7.0, -7.0, -3.6542914604812795, -7.0, -7.0, -3.8980849663796677, -7.0, -7.0, -7.0, -7.0, -3.827401585429265, -7.0, -7.0, -7.0, -7.0, -7.0, -3.222200535388768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.882882981767894, -7.0, -3.969276095488932, -7.0, -7.0, -3.3735156590247626, -7.0, -7.0, -7.0, -7.0, -3.894814329083301, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.258409781163722, -7.0, -7.0, -3.6868744999220815, -3.1303611463227843, -3.0396218207214076, -3.1563976972825034, -2.8073561540351877, -3.845175585676797, -1.7228828732324626, -2.221967023835514, -2.606001153050686, -3.141825894511075, -3.445085022719354, -3.1852410473078057, -2.2606288508494834, -2.5427749755100844, -2.9033459813889246, -2.9043943027764954, -2.251144529831166, -3.2631229746705865, -1.6887661065091777, -4.095552896019402, -2.1266724494173004, -2.939872919768489, -2.647458205191794, -3.204029495212759, -2.310424569709, -3.456821348021599, -2.5787179284944166, -1.3206070069540838, -3.519434194913703, -3.2733281472184315, -2.174945640259249, -2.459779837201633, -2.2363923022305676, -1.7297421890640772, -1.7529016789031202, -2.1586559793926074, -2.3569079722192807, -3.7369804812535694, -1.9070634317438555, -4.056037301237244, -7.0, -3.667699110681242, -4.237047980435429, -4.082282589912437, -3.9505108929859967, -3.0290792589288484, -7.0, -3.6780678315733484, -7.0, -7.0, -3.6602012013806817, -4.079890918334672, -4.417621137863894, -7.0, -4.200864172135313, -4.04241798814325, -7.0, -3.7248900028380363, -3.332873313531299, -3.9559762222483257, -7.0, -4.709626072126764, -3.694606591570367, -3.102029487303426, -7.0, -7.0, -7.0, -3.934691224185509, -7.0, -4.810751545940375, -7.0, -3.416786079747206, -7.0, -4.404491617758686, -4.1966182713302445, -3.9679823208536535, -7.0, -4.317415586331099, -7.0, -3.9674127581339027, -3.846374229730093, -7.0, -3.7342113386428104, -3.746011107751926, -7.0, -4.209867209371226, -7.0, -7.0, -2.770445033138055, -4.0816712872909235, -7.0, -7.0, -7.0, -7.0, -7.0, -2.997103582001591, -7.0, -7.0, -3.7035492982382308, -3.4982416126858915, -3.576226137449605, -3.1347506861086147, -7.0, -7.0, -3.6978829086948046, -7.0, -3.224099069292356, -7.0, -3.7293268096468606, -7.0, -3.3463529744506384, -3.1124709393381393, -3.2554654819924638, -7.0, -2.6819808818607593, -7.0, -7.0, -3.4360035356698964, -7.0, -7.0, -7.0, -3.865370512911087, -7.0, -7.0, -3.4378397108401133, -3.1847894164948185, -1.6538959041317818, -7.0, -7.0, -7.0, -3.2702128548962426, -7.0, -7.0, -7.0, -4.045440339814774, -7.0, -7.0, -7.0, -7.0, -2.921213387765902, -3.121067167467729, -2.639130597679463, -7.0, -3.730862992046494, -7.0, -4.148448403523384, -2.5287642283562692, -7.0, -7.0, -7.0, -1.1449689891352024, -3.4191293077419758, -3.4223435713550034, -7.0, -2.8571195547835098, -3.8143142002074595, -3.190928131487656, -7.0, -3.618780024506215, -7.0, -2.4472396579718936, -2.641702867149843, -7.0, -2.866456128235913, -7.0, -7.0, -7.0, -2.5629616387073972, -7.0, -7.0, -4.070942474030112, -7.0, -7.0, -4.390970414162616, -7.0, -7.0, -7.0, -3.703635237583896, -2.9110122544187993, -3.4686426683915115, -3.4572761860613257, -7.0, -7.0, -3.205013199181547, -3.0154795112301587, -7.0, -2.743570062469853, -3.502984425501946, -3.8133808067338557, -4.276162980319142, -2.915256893802922, -3.1742052269401473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6018711265796486, -7.0, -7.0, -7.0, -3.261277741636518, -7.0, -7.0, -3.3860528489403894, -7.0, -7.0, -7.0, -3.7013088852280753, -3.4282158115613255, -7.0, -7.0, -7.0, -3.4276483711869328, -7.0, -7.0, -7.0, -3.7237839369653294, -3.834929096460576, -7.0, -2.9798264849916336, -3.405218256006282, -3.0457140589408676, -7.0, -7.0, -3.892595422828898, -7.0, -7.0, -2.8727024406868487, -7.0, -7.0, -7.0, -3.2477278329097232, -7.0, -7.0, -7.0, -3.822429623779357, -7.0, -3.3469883009877015, -7.0, -7.0, -7.0, -3.991654250266102, -4.163563865300896, -7.0, -7.0, -3.865192838908103, -3.3068394648047046, -3.0803522609890255, -3.689146005168144, -2.902341063964813, -2.61519069651607, -3.207313717589319, -7.0, -7.0, -1.8580870827174711, -2.0874794254002533, -3.8751046906685627, -7.0, -7.0, -3.9894794815772188, -3.3187339450877964, -1.7072040483297801, -3.9591249024611264, -7.0, -2.0108367493541595, -2.361788883265569, -3.433595295800582, -4.469188514747329, -7.0, -2.9823277781189925, -3.331860940572651, -4.470248739825372, -3.054200095548161, -3.8731316106240805, -7.0, -7.0, -3.771366970857781, -3.5839776507243726, -3.5648731035431913, -2.570103203626733, -3.987725834843644, -3.1683571576689884, -2.4712324257565594, -2.7358779665299697, -7.0, -2.8166389448984614, -2.5182733060633335, -3.17539583139403, -2.0158041779437648, -3.867143266506253, -4.174059807725025, -4.202651759757338, -3.0789495605356465, -2.5570486620906934, -1.9248511184664823, -3.2935835134961167, -2.0426826637480007, -2.908622155975595, -7.0, -3.5190108276524095, -3.0992247033606977, -3.570805538589023, -3.998084887936556, -4.475438727737104, -4.466348528450199, -3.4724346304941105, -2.454453609769247, -2.663601345551572, -3.425193219436662, -7.0, -2.5426995708464664, -7.0, -3.356433813056529, -3.0705787477018935, -4.466393046361356, -3.5935352716775633, -2.4419703231780603, -3.9888115530228063, -2.506025600803707, -7.0, -4.468524557299703, -1.9915809464515983, -3.0559443349503614, -3.624090474733072, -7.0, -3.196480167700148, -3.99569368149844, -3.657411014595813, -2.2502154969062373, -3.7856572123457646, -4.482845010663455, -1.378056211132438, -2.235132460652098, -1.6018854005791172, -2.8847804630386533, -7.0, -3.349832359203467, -1.8382778529086805, -2.2762220844992402, -2.156162297781227, -3.353235425636195, -2.2165201664611134, -4.473676704353028, -7.0, -7.0, -2.2979792441593623, -4.164189220875209, -3.34617128174312, -3.634578022853888, -2.40418376369826, -2.355393211588941, -3.693448465758027, -4.167405957232292, -2.9448454003779725, -2.910061669631165, -2.480593341977752, -2.9297253783780044, -4.4642510223795595, -2.4910644209166546, -2.556194049154312, -2.1209749788674674, -3.6967348842666072, -2.7294847709059216, -1.2114867846608905, -4.471614377603175, -3.7065471026403576, -7.0, -3.135789010791428, -4.477381753267053, -3.321722674346009, -2.9012855101952053, -7.0, -3.9955474494751373, -1.3857541362954808, -2.94346703500111, -4.463489848289935, -4.464832197849968, -2.0944999610199337, -7.0, -3.9863387164044726, -3.987427903514197, -3.2106157375232303, -3.0835623371877907, -2.6020932268788046, -2.79054104530852, -1.8216207799937747, -2.3037326193533505, -3.9957813970840017, -3.144035046172394, -7.0, -7.0, -3.097459771245042, -3.28029646656266, -3.0041739220558177, -7.0, -4.468686951770906, -7.0, -2.7444782755162587, -7.0, -7.0, -4.008742074877672, -3.0478515240423842, -7.0, -2.9741661461216427, -7.0, -3.7950592943557186, -3.7933992038918922, -3.7859274684801276, -3.067142878347675, -4.005695181118511, -7.0, -1.928812549985953, -4.168600594123457, -7.0, -7.0, -7.0, -7.0, -4.166977447595255, -4.464995978618864, -2.037486139848775, -3.1673468775856355, -3.2808332273459495, -4.464966204890961, -2.848471368001359, -1.675543884919733, -2.680481725745306, -1.8278961396555933, -2.0288404510802023, -2.6028699186636284, -2.439854098108879, -3.4814856258274136, -3.3085644135612386, -3.8757555792580543, -3.7035063221873417, -3.563705162555925, -7.0, -3.3763292395085953, -7.0, -2.7415686772957413, -2.8323385677415485, -2.744284383998204, -7.0, -2.7743129733104617, -4.464325575532697, -3.073756261784487, -3.9943171526696366, -3.226141456150439, -4.468834530432752, -7.0, -2.953670693054014, -3.2858384967689096, -7.0, -2.973589623427257, -2.276811893626411, -2.1663600898260897, -7.0, -3.862205942706113, -3.213133908974258, -3.4238116524224047, -4.166000639801866, -4.470189906285553, -7.0, -4.471511736976963, -2.345177616542704, -2.8877780013484498, -2.322811252582744, -2.655004010022997, -7.0, -3.6911699341316035, -2.6118560183160606, -2.398523541822513, -4.464653457449502, -4.466393046361356, -4.011824095594308, -4.00559515442157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.483515978390542, -1.763111382025732, -4.163042046914198, -3.9875322027298394, -7.0, -7.0, -3.5187332251549033, -3.3927262568919367, -7.0, -3.871149525585623, -3.923049630943971, -4.184180195347259, -2.4039905604956546, -2.2590012368621273, -2.1024597589212073, -4.164516429061985, -4.464042205438811, -1.6076627897985016, -2.4720886863444194, -1.4569662182585454, -4.473603739435952, -2.778374326838308, -3.360768133085603, -3.5647695962352564, -4.468701711894003, -3.0935572398057647, -2.3719524902252824, -1.8312226028239351, -2.7805101861860018, -3.597073275682156, -2.5702113127983788, -2.953452164395173, -4.466274321789292, -3.437318070354534, -3.0360090550537797, -3.2921314153833943, -7.0, -4.167465028843088, -3.8770976656512293, -4.468037009225747, -4.005552278783667, -7.0, -3.3131639093135794, -2.5263157759703248, -7.0, -4.196148539699125, -4.004192356259714, -2.482519614750209, -1.9781489374492274, -3.621621331667342, -2.939981890516324, -4.465873386571601, -3.5709221981779065, -2.980297527520052, -3.3089768152351886, -2.284337689848148, -2.922848330955433, -3.7633031783639455, -3.7077546411086244, -3.903496947335859, -3.2119912370348325, -2.116145767991693, -2.611047062431195, -4.163340305618251, -7.0, -7.0, -2.6151511448726805, -3.1354904389696348, -4.168600594123457, -7.0, -3.3185224421412562, -4.46821436276855, -3.7892986111594413, -3.8676000541351447, -2.441623734985907, -4.4729903496766585, -3.1972660451184867, -3.474851739592984, -2.521020484331018, -2.918961319225426, -1.8669853928572224, -2.932504495346671, -7.0, -2.7630409496258364, -3.2544076201709182, -2.970610705566062, -7.0, -3.6300499369039914, -3.865192838908103, -2.9875173043753707, -2.8074849162033497, -3.251638220448212, -3.8863073803643697, -4.465248972927137, -7.0, -3.3473857798884064, -4.468376873249617, -4.472317546316842, -7.0, -3.8207792582284554, -4.469291705846857, -2.2121149993345925, -7.0, -7.0, -2.4230980311936072, -2.8119620643588155, -3.294466226161593, -2.5232818316095447, -2.5200021753291946, -1.9600610429201442, -1.6104263490510267, -2.2489873811994956, -1.80275017045316, -2.0595761546756988, -2.322192435864935, -2.861356052170766, -2.383901844372175, -2.3967256942857986, -1.692277730333473, -3.0355950362195, -2.03567473319776, -1.9129909650562347, -2.9514037575639716, -2.7767543206122136, -4.033772123645866, -3.223459310119068, -3.131765267829788, -1.9476093557914202, -1.7993838349774411, -3.7451355399585355, -2.6925531793391446, -2.886609449744545, -3.146888794364442, -1.752576741650785, -2.424181349757642, -2.3109090808281607, -3.1049071253508416, -3.077141932831542, -2.9664119711717043, -3.464116794444044, -3.4445972265477596, -2.586587304671755, -2.103623174492221, -1.8762702230288588, -3.24417521304034, -2.4822890258970154, -2.2323788794900854, -2.2637568032034094, -2.3074300025941716, -2.5565996215786173, -2.945327877376854, -1.5818406616841054, -2.961375888020618, -3.7240163079266475, -3.0421893218318448, -2.4802574419693437, -2.011953813769505, -7.0, -2.01596835978946, -2.2881498219364174, -7.0, -3.0649444260386174, -3.572008127378336, -4.045479453110779, -3.8730734429384888, -2.297940489369286, -1.9742279440562436, -3.5597505795177193, -4.167154813209906, -3.6224730712781232, -4.469453813767127, -1.8508118273944065, -4.062945310995021, -3.871881587834298, -2.9355501421681085, -3.6133708647836684, -3.102716997946335, -2.9391512732498355, -2.9458123456233185, -3.165020412803073, -2.764723060841219, -2.357652922807868, -2.2567402897487763, -2.4590356178104207, -1.6830957807759497, -3.2424244938652858, -2.0251805414512707, -1.8597310679542078, -2.5334583477582, -3.279148234766356, -4.469822015978163, -2.943828604020416, -2.587635303959155, -3.2696027394176372, -7.0, -7.0, -4.4636690681343865, -4.465992220784308, -2.997103582001591, -7.0, -2.492252293640538, -1.1759232859412674, -2.620210439573049, -1.9574911927012917, -1.7542720461167403, -1.1202428662818602, -2.8947703456567213, -3.3881900415998545, -1.8830699435990796, -3.261069475456373, -1.8089182124058005, -1.8790904415064849, -2.3474778602483877, -3.1659928785648397, -1.7354019465713875, -2.5666717184381787, -2.0871825845455936, -2.7839618855736754, -2.5657150317200914, -1.6511105267296189, -3.6263256999716096, -2.531302696921394, -3.2794958384653494, -1.7777310331453406, -7.0, -1.6888866193218477, -3.988365695942476, -2.863679667875898, -2.293848773185784, -1.1262950143354775, -1.3053238048195381, -3.861967294772421, -2.5264226592624057, -1.7886949330230073, -3.1524776333829094, -2.443297610528981, -4.463474909963959, -2.4655993959782605, -1.1205007875965254, -7.0, -2.9610204328379766, -2.8285197970206033, -2.4323480341699906, -1.7262590452768576, -2.816373888752362, -2.077832842045998, -2.6425081628115623, -2.577830453990907, -2.381029081802262, -1.3006191504514415, -2.1492489190780883, -3.51075346917954, -2.114986933832905, -2.1176993012518817, -3.207804384478623, -1.2142070073224809, -3.3243559586374474, -3.768001359986824, -1.891948375590815, -2.5318052249185006, -1.221134651437184, -1.7425355244551888, -1.599799126102246, -2.2281914879610185, -2.6919503906454767, -3.406515849529335, -3.215137985872625, -2.2374371011262446, -2.900160378015098, -2.381491717770132, -1.746521162964555, -2.1639005948322336, -3.3176455432211585, -1.8283882350228342, -1.0236274499334386, -2.483900426858269, -2.998849699010446, -2.075546961392531, -2.640136227278698, -2.686061425390275, -2.344101045186752, -1.44360833679831, -1.7415820477549837, -2.737597390620243, -2.6558947921952347, -3.988097961819528, -3.8619523749214517, -1.8521684108312613, -2.026992120467688, -2.2391227510637246, -1.323246817734007, -1.4078192004090677, -2.0798270372177763, -1.863002557270298, -2.2539200856685158, -2.204688959253367, -2.2473733831061242, -3.7721749608246142, -2.6965855300976074, -4.163086798780062, -1.9882213973042904, -2.3087488049859366, -2.3980183705310725, -3.987338484245791, -2.043021327727601, -2.5601983327861335, -1.2657706323852562, -2.916395453771481, -3.8672759317711667, -3.8624444595730716, -3.9872490465625705, -3.6208941807700508, -3.4650852875574327, -2.8222423977763826, -1.6458970683831013, -3.120015684402852, -2.7217111449013283, -3.86812991495759, -2.7714110818203803, -3.6889386481371726, -3.6910225207762957, -4.172310968521954, -3.470645657886728, -2.4773179778843373, -3.2259120500140233, -2.2148332553701793, -2.4002966758658393, -3.3444446740811564, -2.5725039734840767, -3.765430111553846, -2.4740936647517855, -3.516447228070065, -4.46372879165109, -2.2892988830661953, -3.2174400738687097, -3.3261748728967495, -2.7114806713603596, -2.378872890939344, -3.171670744519088, -3.511512010394553, -3.9896425968775038, -3.109437921160224, -3.9879491492900074, -2.337941652904336, -3.119155439530316, -3.9977648799305885, -7.0, -3.05307844348342, -7.0, -2.5930644316587177, -7.0, -3.3346547668832414, -2.3961993470957363, -2.8680563618230415, -7.0, -7.0, -3.595813344772756, -7.0, -7.0, -7.0, -3.3327918116376987, -3.0462756204011914, -7.0, -7.0, -7.0, -7.0, -7.0, -3.413709458318653, -2.9649192942866427, -7.0, -3.0908221633946567, -3.1258865574656323, -7.0, -7.0, -7.0, -3.080506233707164, -2.861683729919097, -7.0, -3.5322214596157986, -2.953920690616223, -7.0, -7.0, -7.0, -3.5487578285737045, -3.345765693114488, -2.379162335877126, -3.300378064870703, -3.2800089531081857, -7.0, -3.5438570500705913, -2.7299742856995555, -7.0, -2.8666417205660397, -3.1487568513217923, -2.2227164711475833, -3.058995093525416, -7.0, -7.0, -2.4998397612917653, -3.5167997040816243, -2.654641898988549, -3.0323165027604055, -2.313500417575471, -3.287129620719111, -3.37675939540488, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40226138245468, -2.222044838333418, -3.172091867626748, -3.3283796034387376, -3.3111178426625054, -1.9867717342662448, -3.2975416678181597, -2.5378820317420177, -2.3636871758895452, -7.0, -3.147882346295201, -3.6988541770298506, -7.0, -2.977151788903537, -7.0, -7.0, -1.51638280249711, -3.0778522036135776, -3.0599418880619544, -7.0, -2.552972237463008, -3.404320467221731, -2.7114322715545685, -3.2242740142942576, -3.225050696138049, -7.0, -3.0431948924722545, -2.998259338423699, -2.6972293427597176, -7.0, -7.0, -7.0, -2.7414142504968653, -3.5958267770732233, -3.428620672671939, -7.0, -3.2398831523208846, -7.0, -7.0, -7.0, -2.0679840801684466, -3.0038911662369103, -2.74707871738161, -3.479719235439571, -2.113639543632745, -2.8476925944963933, -3.3909351071033793, -7.0, -2.850339854583479, -3.4742162640762553, -3.234955743400412, -7.0, -7.0, -2.788168371141168, -3.2247056756774772, -3.7649975992848805, -7.0, -3.136059641017734, -3.6866809474663245, -3.389343311252078, -3.6260836162697796, -7.0, -4.000572890691385, -2.9766556049707797, -2.935809453809933, -3.7460890430562004, -3.018284308426531, -7.0, -1.7400274402031979, -2.9539528832319233, -7.0, -3.29928933408768, -3.7934411329776636, -7.0, -7.0, -7.0, -7.0, -7.0, -2.94023179499651, -2.722886934182042, -3.1566592665661197, -7.0, -7.0, -3.959232249050996, -7.0, -7.0, -3.1630122097748297, -7.0, -3.4383313469688166, -7.0, -3.0511525224473814, -7.0, -3.179767161604466, -7.0, -3.285107029566812, -3.235654676956949, -2.8779469516291885, -7.0, -7.0, -3.0292484623758416, -2.8258586820285867, -2.3329992017390233, -3.2275010649714306, -2.290615219045122, -2.6623530208877133, -2.4247001891741125, -3.4090416060671918, -7.0, -7.0, -7.0, -2.5673625074157043, -3.0549958615291417, -7.0, -7.0, -2.953627920966533, -7.0, -3.614833964658131, -7.0, -2.9856830355921042, -2.7821160652538497, -7.0, -3.321253121961899, -2.080167159029276, -3.4818724103106633, -3.2884728005997825, -2.3183416396707175, -2.4852050239452272, -2.8568798705623637, -2.7987887139512493, -3.064008486531724, -7.0, -3.0104413055367156, -7.0, -3.2412558576352395, -2.285182108568106, -3.2246995121061377, -7.0, -2.9221413362079565, -2.9903388547876015, -3.3831568450325724, -7.0, -3.4998244958395794, -3.3544926005894364, -3.3811150807098507, -2.5677072241765035, -2.572987708198205, -7.0, -2.388722700475175, -4.083592192787562, -3.03362477121926, -7.0, -3.292256071356476, -7.0, -7.0, -3.330819466495837, -3.371806458507416, -3.3153404766272883, -7.0, -3.082516096060493, -2.772566173085639, -3.399731392881681, -4.195689202054842, -7.0, -2.456935102197454, -2.605305046141109, -7.0, -7.0, -7.0, -3.262332413822626, -3.20682587603185, -3.203032887014711, -7.0, -7.0, -7.0, -3.0427723374976736, -3.28668096935493, -3.0161973535124393, -2.471024863442615, -3.4182964159614206, -3.2884728005997825, -2.9960736544852753, -7.0, -7.0, -3.4082399653118496, -3.0953437318725254, -3.284881714655453, -7.0, -3.5009222391903005, -3.5308397786165204, -3.2770358881721102, -2.7915826961282115, -7.0, -7.0, -7.0, -1.728232000140194, -7.0, -2.870647712887689, -2.455859567203536, -3.9455014103827257, -3.4292676664331685, -7.0, -7.0, -3.012492105236467, -3.545430829465351, -2.299141220240316, -2.8722210396534766, -3.3236645356081, -2.1231411967028095, -2.926856708949692, -2.8419848045901137, -2.468495024507069, -2.1046075980608174, -1.7102566530665484, -7.0, -3.350441856535061, -2.2651127598506875, -3.3439990690571615, -3.2064210652379885, -7.0, -2.8691143269793753, -2.8529589869476504, -3.4619484952037616, -3.3270522653266985, -7.0, -3.5924876498132257, -2.4902394852462875, -3.328583449714202, -3.3642799327019315, -3.3142886609474975, -2.719497016610582, -2.3123238548327696, -2.4508903227897534, -3.244771761495295, -3.3725438007590705, -2.625255273095499, -2.2107897277615662, -2.4287645323832137, -3.1046009052294363, -4.285278190754191, -2.773835184612231, -7.0, -7.0, -7.0, -3.1584228065848823, -2.7100403966611224, -2.8872420998960684, -2.2456888879350108, -2.609807769328702, -3.3463529744506384, -3.2570783059665684, -7.0, -2.430961453354948, -7.0, -3.1441069730493227, -2.908101874185159, -3.1043163645117278, -4.167104566972922, -3.299138371401992, -4.01278061660159, -7.0, -2.806970935923172, -3.609758541684431, -2.6415907465950124, -7.0, -2.6524075191391137, -3.3346547668832414, -2.916278440573439, -2.8797264966395772, -2.788554010783411, -3.5589484459780394, -3.0038911662369103, -7.0, -2.823800153749878, -2.442675706122545, -3.0963885466873666, -2.565510502554111, -2.491730208478279, -2.8825245379548803, -2.561992029499823, -7.0, -7.0, -4.611606489380638, -4.782866607064193, -7.0, -7.0, -4.725192655638864, -4.400019635065158, -3.957128197676813, -4.306038816336349, -3.774803219379627, -4.040958173384207, -7.0, -7.0, -4.731193772452004, -4.703244076143745, -4.297059824075058, -7.0, -4.386231350579525, -4.629292344154639, -7.0, -7.0, -7.0, -5.089599585518829, -7.0, -4.550802954195946, -3.8522969658269255, -7.0, -4.6723472746210035, -7.0, -7.0, -3.7436024005366573, -7.0, -4.690754099997801, -7.0, -7.0, -7.0, -7.0, -7.0, -4.174074351837882, -4.225257576924099, -3.328236854094916, -2.100862663563312, -4.20686184095936, -3.017768120712702, -3.059800000399848, -3.177969136009376, -3.659136240870397, -3.273579945676206, -3.6158148299730293, -2.2233370581702534, -2.167603148830162, -3.8622208538486498, -3.450976523069686, -3.188286757912536, -7.0, -3.1588748984559967, -3.3079771322250884, -7.0, -3.586812269443376, -3.797700234382403, -3.788521887222473, -7.0, -3.1167693598151747, -3.4141978319393456, -4.707699593599912, -2.6458151182966416, -2.323939275128193, -7.0, -3.339067945753538, -3.8757555792580543, -4.930813239879962, -3.526113023421766, -4.255513712819534, -7.0, -3.6528456212808718, -3.4555300473427017, -3.7932873732019723, -3.440436766105774, -3.1377921781310056, -3.5958267770732233, -3.3875785621090952, -3.3616469040394903, -2.931966114728173, -3.0207413920716344, -3.640741642283412, -7.0, -3.386338028485665, -7.0, -3.7333577879255855, -3.4774416871683957, -4.026267622231873, -7.0, -3.2990712600274095, -7.0, -7.0, -7.0, -2.492252293640538, -7.0, -1.8789046024734604, -7.0, -7.0, -2.716300195650392, -7.0, -1.683175737152787, -2.1881246066559927, -2.1281008870627143, -7.0, -2.5216419609600518, -1.6221168399989923, -2.6924944075030846, -7.0, -7.0, -7.0, -1.9716092134509804, -7.0, -7.0, -2.75931910713189, -7.0, -2.709439574132411, -2.1924612493910622, -1.6122210560164774, -7.0, -2.7271714243553484, -7.0, -3.328583449714202, -4.0105331576559315, -2.7308030624345148, -3.7190756631711492, -7.0, -3.630122642859312, -1.395451208268343, -7.0, -1.2613174455417835, -7.0, -1.4391836821692012, -1.8523459656801773, -7.0, -7.0, -3.59250984790068, -1.4993583093807943, -7.0, -3.0790002523038495, -3.509740015570382, -1.813866802650178, -3.3961993470957363, -1.2965236571066519, -2.0588844995901434, -3.757294782847373, -7.0, -1.3742947154876974, -1.1407535470370553, -7.0, -3.2355284469075487, -7.0, -7.0, -3.971971276399757, -1.7599772814550572, -2.078739953895659, -1.6405642464819516, -3.433209608771474, -2.7933712489189557, -7.0, -7.0, -2.095444656976254, -3.0251302389975376, -7.0, -1.469695084958144, -1.3925294659911405, -3.4753805931433615, -3.2893659515200318, -1.2451116571837162, -2.11653395340411, -2.082004405384004, -2.7341137402172424, -2.23127940943518, -2.94468003388131, -2.6636381161507066, -2.986473147467338, -2.185839694183446, -3.307282047033346, -3.4763968267253302, -7.0, -3.0043213737826426, -7.0, -7.0, -7.0, -1.7654653443605923, -7.0, -2.9344984512435675, -3.256958152560932, -3.203522416822585, -2.9955403342287124, -3.4827307000799426, -1.38594604140928, -7.0, -1.3776389075463482, -7.0, -1.3366766942669703, -1.8010970512692204, -7.0, -2.6913025633834833, -1.8523444248884782, -2.004002742453674, -2.2826021227981115, -2.0261585937576614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9902833432540814, -7.0, -2.462397997898956, -2.022690750805371, -7.0, -2.855317205195943, -7.0, -2.0605261485221984, -7.0, -2.2696241164908653, -2.5411630537068683, -2.609990566026695, -3.561220678933944, -7.0, -2.921166050637739, -2.993215720474137, -3.6917885244026984, -3.079543007402906, -7.0, -2.83613942742759, -2.325310371711061, -2.4450850227193537, -2.8401957413725274, -7.0, -2.563912360982884, -2.8380090624639394, -3.327563260187278, -2.492644002993204, -2.700270937356437, -2.6630482325495684, -1.9822712330395684, -3.1266183755229515, -7.0, -3.7062624873330328, -3.874249822778403, -7.0, -3.573538788190414, -2.453347192030566, -3.0964554363454075, -2.5986810989071634, -3.8797264966395772, -3.1883096301940044, -2.714369682021485, -2.8163517934364455, -7.0, -3.703348706939536, -2.1938236640698334, -1.961018183415195, -2.5953859808091417, -7.0, -7.0, -4.179293205577373, -3.4773528166989705, -1.9520735304976586, -3.346744054604849, -4.173361116894232, -2.5642334659748904, -2.2851670183537824, -3.593618308129536, -4.184180195347259, -3.5725812013324862, -2.6745462253948187, -2.8783849969106328, -3.5839917991983166, -3.1513204137732407, -2.7794854894727083, -7.0, -7.0, -3.7093830437734763, -3.372964577812118, -3.2787250280075306, -2.5349960967118763, -3.573654715980733, -3.2708857785427625, -3.0706629143802995, -2.704435569281117, -3.8793253007848074, -3.011062694729735, -2.4410139714466967, -3.499879448956432, -1.688740276308066, -7.0, -3.7183078877374, -4.2484392081415105, -2.2819474676523446, -2.9804311689285914, -2.007424337771746, -2.958664455093407, -1.3489325701049661, -2.9543683736575375, -3.34143452457814, -2.8109322482432924, -2.7046550997731758, -3.8925119929022363, -3.89473132437208, -4.196148539699125, -7.0, -1.8741716975886615, -2.3879426850315597, -2.531591308128764, -3.577491799837225, -4.1773344555057, -1.8582494207270297, -7.0, -2.8671181483544954, -2.7047532207811775, -4.178775572045411, -2.803280043602782, -2.2873217580833582, -7.0, -2.8623647524766747, -4.173390251465195, -3.881812462894711, -1.3989831930562173, -2.574110223183241, -2.9047440096065236, -7.0, -3.091390568954869, -3.492061604512599, -2.9233673942402945, -2.497366198100159, -2.890394401911138, -7.0, -1.7958326537414153, -2.3534755341236973, -1.7267344196871608, -3.5751300891616467, -7.0, -3.3316044201502746, -2.719598561582539, -2.573413164820461, -2.513170019187924, -3.4025479509123913, -2.102005842956844, -7.0, -7.0, -7.0, -2.1946154079057703, -4.17655425961329, -2.0656606596823064, -2.1611756115490883, -1.7829501332654125, -1.8804077149768044, -3.888010912245029, -3.404348996995556, -3.2961713931851344, -3.5042805196072773, -2.6181718577859976, -3.194403325910006, -7.0, -2.9662982070631547, -2.823450076875887, -2.458672707384415, -3.2918958564339373, -2.8143216000742486, -2.0526511985085754, -4.188844146546897, -3.553134295203366, -7.0, -3.305028753746333, -3.1578961429241805, -2.8571062424631903, -3.4234097277330933, -7.0, -3.7137424784090824, -1.202831589142154, -2.1159381384569778, -7.0, -3.4765418090274287, -2.646853300505588, -7.0, -7.0, -4.175308824585785, -3.4795753101749884, -7.0, -2.464343951785702, -2.5326665362571856, -2.116277118838028, -2.4143634630235606, -3.8903371700735754, -3.1396823505057303, -7.0, -4.181757863468677, -3.5994190676181264, -3.811256540556303, -2.691780309707951, -7.0, -3.882125919770032, -3.4927324592231748, -2.63437118943673, -7.0, -3.8727970399895986, -3.5166939913124287, -2.7117256126381752, -7.0, -2.6849269269525506, -3.7325277806485664, -3.3856573340277287, -3.3245653749310993, -3.5149990780786804, -2.7188969332355657, -2.8666363533065913, -3.187153953785416, -2.4539985977209984, -3.4858917046574147, -7.0, -7.0, -3.4144998202843357, -3.7065471026403576, -3.579726448846229, -7.0, -2.594278217221705, -3.338257230246256, -3.048480647473502, -4.176004391472253, -2.3380800304755907, -2.128652562662778, -3.2911745290335737, -2.584059705457841, -2.268367803193454, -2.973589623427257, -3.0806780138224896, -2.864511081058392, -2.781516028004414, -3.2973500894444876, -3.1283992687178066, -2.754116576016153, -3.7095243558763413, -3.6800180632491917, -7.0, -2.5227236124042807, -2.697308615276485, -2.715657201884874, -3.703061987128565, -2.3806094943593243, -4.1747573763106605, -3.00455780640836, -3.7113853790984517, -2.662461007332455, -3.484299839346786, -3.4091155877956507, -2.732437230568403, -3.1443925650070628, -7.0, -2.174018250432816, -3.269571313209591, -2.4131583231153693, -7.0, -4.174815456482182, -3.405204019876869, -3.3316008061043147, -7.0, -3.8850217948622974, -7.0, -4.188647295999718, -2.993148586498641, -2.2457761160975718, -2.73062700968143, -2.497475787005654, -7.0, -3.2300229336227826, -2.695142604658866, -2.9687301046728525, -7.0, -3.576542899012627, -3.4431847291501847, -2.1393361503611485, -4.209246848753374, -7.0, -4.173535895009906, -4.178833117359116, -3.704750904290671, -4.174088895463686, -4.178228510935771, -2.9800836156911226, -2.4319767053533137, -7.0, -3.6982745766743674, -7.0, -4.1815291821065035, -3.3464647475774694, -3.888937302687291, -7.0, -3.492872090283087, -3.6841718627005906, -3.037771671331138, -2.3003908572382463, -2.5889767978378466, -2.8889813672663376, -7.0, -7.0, -1.2639810792597537, -2.4381466362467488, -1.575003900577211, -3.414221033214868, -3.078008384692729, -3.0485805158968846, -3.704779473476742, -3.1827284181242677, -2.5778327537276855, -2.368385340810993, -1.5225415500375052, -2.2649068816547584, -2.6958480495106723, -2.040514435148303, -2.645338041178953, -3.7013088852280753, -3.5037089898917078, -2.7335483317430804, -2.5170943442299034, -7.0, -3.2282006765179165, -3.1614224558093555, -3.8808707325324234, -3.0953303204780394, -7.0, -2.587136432247095, -2.8835289504000867, -3.3557798057347688, -3.7594411971336976, -3.508179448873524, -2.744819187545737, -2.096515020273322, -7.0, -2.7644595723897676, -3.7005306569785916, -3.5915932335792364, -2.4834684261642916, -3.311568451887975, -2.736933594392909, -2.4459252900038795, -3.109641813636512, -3.215637563435062, -2.759082706355693, -2.3185589412002856, -2.830781771889899, -1.659812892549702, -7.0, -7.0, -7.0, -2.8128055778901238, -2.353263964356718, -3.884001924768787, -3.8888812140288245, -2.5869962448920862, -3.483102099521368, -2.3909087566812675, -3.038393050174673, -2.2903719274819245, -3.714245911017894, -2.9669143516284455, -2.5969712253922594, -2.8893857513693093, -2.777054076316709, -2.125713570858261, -3.052271563538768, -7.0, -2.589759976078929, -3.2823662563684763, -2.52336260719049, -7.0, -3.1539810696591877, -3.87952594503966, -2.8913677498314385, -2.9704525414168397, -3.1194318594918125, -3.1408221801093106, -7.0, -7.0, -2.4567519240544438, -4.18261434773635, -7.0, -2.9612814719845826, -2.8609596278508898, -3.5821486217835403, -1.8841903296890576, -7.0, -4.175221800343052, -2.9451698151286747, -3.298552157043863, -4.219440435989858, -3.670013796172048, -3.6159369069513683, -2.570199433985714, -2.850982017175569, -2.6579706044265934, -2.219481487982073, -3.078221118535338, -3.567285217961632, -3.6363875858131567, -3.244817292184848, -3.5002860385469017, -2.1505180290920993, -3.855349523582764, -3.0903991492554628, -2.133184446340877, -4.10124858623158, -3.1821540422305667, -7.0, -3.7793967967276476, -3.8233568364187, -2.6714604371096526, -2.5518671414727314, -7.0, -3.5739805970823184, -3.775697807765654, -3.621046389600625, -2.256824609777707, -3.0800248875987006, -3.2125030089235405, -3.5964871337365443, -3.4781478706432734, -3.370301561079633, -4.124014878887408, -4.0420436387878205, -3.0872843914537613, -3.1948501384831234, -2.1019438184669204, -4.195484523033764, -2.8319834676564324, -2.474687312034128, -2.882681528415911, -2.270482815851919, -2.607442837452188, -2.8249064713021124, -2.2111068681045203, -2.694282782822322, -3.0991378037792234, -3.6243852414202653, -2.4516753369831368, -2.347442339513145, -3.7299203662157314, -1.938057301280704, -2.2790236522979446, -4.178660458538169, -2.823810663374714, -3.350190990629806, -4.2819646232599, -7.0, -2.4376922862503956, -2.167444459932046, -3.9123549292524067, -7.0, -3.2869277849592553, -7.0, -2.6547014748369984, -7.0, -3.7480684503090216, -2.787328645420259, -3.6461795886879207, -7.0, -2.886184084983295, -2.643589159589936, -3.0425986729597225, -3.2670308532927654, -1.9049102040302717, -2.5042303053800343, -2.5423591104831424, -2.10320901727473, -4.192149125018534, -1.928715713074086, -2.885955406959308, -2.825474201745054, -3.263900181091419, -7.0, -2.6834736303972564, -2.7016471896231704, -3.172310968521954, -3.7024305364455254, -7.0, -7.0, -7.0, -7.0, -1.1759232859412674, -1.8789046024734604, -7.0, -3.4022040460651453, -2.7987037539114805, -1.786412434699108, -2.2063587531499906, -1.978287955736132, -3.034427905025403, -1.689971068634483, -3.700068825769947, -1.7887705714663293, -1.0402631800172553, -2.2818568360599505, -4.221179420598498, -2.711229034334036, -2.771298695058256, -2.231069884282878, -3.8952843896896177, -3.3424790790408303, -2.1626159757428707, -3.711582293398766, -2.536474268817627, -2.2159503314026674, -1.7086080382628424, -7.0, -2.016569101433193, -7.0, -3.276260695356544, -2.9319257996219097, -1.8334502422862748, -2.2593254108482665, -7.0, -3.3917162351570154, -1.274108033424912, -7.0, -1.6217621131032312, -7.0, -2.023170121121397, -0.804111708162889, -7.0, -3.1381591060069627, -3.5289423974157295, -1.9126260848936751, -2.3272908044180514, -3.14547892920631, -2.286829670251312, -1.7220301264804447, -3.5877109650189114, -1.6777728089309885, -1.2537182492765606, -2.590688431618049, -4.176525336535, -1.4903084222666931, -1.6427890468225592, -7.0, -1.7131629510254187, -3.88632148655948, -7.0, -3.20305232331814, -1.9343915611416491, -1.1876341890151132, -1.6481773094924157, -1.8554706961183298, -2.9273973806434306, -4.189265668934548, -4.333427121152962, -3.145535411776542, -2.2295678466428646, -3.2811470420244278, -1.8303389761662683, -1.1361883244479989, -2.6704095833237176, -3.6972002725443778, -1.23227990455565, -0.9919156165114691, -1.8979615866993214, -2.73247158340205, -1.5525004346117142, -2.0203511131266407, -2.5189523997656127, -2.5087907256424193, -1.483485671315326, -2.379546464195344, -2.998940114940036, -3.5975032204392736, -3.5743785644130823, -3.3958794676543818, -2.808036260432666, -3.1600932009756324, -1.9544695321741878, -2.4878955578888458, -1.5860470645033387, -2.650333781149533, -2.4176075541104693, -2.2634417415239945, -2.816812514702439, -1.515618012680628, -7.0, -2.0245454695294156, -7.0, -1.5341136742552226, -1.461718957918466, -3.985493836151524, -3.874046725512229, -1.9323482720593461, -2.10483958902677, -1.295472883356695, -2.52760188458375, -7.0, -7.0, -3.6977232389357932, -3.877256133113586, -3.0621189528182424, -3.3344537511509307, -2.121951467621187, -3.732018281336871, -2.7106461542699276, -3.2315828501736372, -3.4900428002642228, -3.065780743753253, -2.9530771516434475, -3.589977511385285, -3.7102584385195545, -2.0820304601868975, -2.7440230673390325, -2.1610780537551473, -2.891022534799987, -3.801700913633025, -3.110589710299249, -4.175134758658844, -2.871864702088195, -2.806010294559223, -4.173594138754633, -2.314229569502311, -3.015024263324625, -3.0140162292583637, -2.3970337739112404, -3.193301721983993, -2.8881284154728792, -3.5757649805367193, -3.7023730862857875, -3.019090315119938, -3.574089169798587, -2.745855195173729, -2.7748682601673127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426272632057094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.036029730656543, -7.0, -7.0, -3.658488381309017, -4.668708488848728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.33193317250328, -7.0, -7.0, -7.0, -7.0, -7.0, -4.004869271063189, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0802656273398448, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.188752123630888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6685256885568625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.082354451330969, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7536902788618263, -7.0, -7.0, -7.0, -4.993586113386161, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9967961469213473, -3.460747541844197, -7.0, -7.0, -4.065355601289965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.874365835730049, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.30606181471495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.918554530550274, -7.0, -7.0, -7.0, -7.0, -3.876083065187758, -3.018284308426531, -7.0, -3.57541879121436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071440127177888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.735758537443739, -7.0, -7.0, -7.0, -3.6555801911718633, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.444630230042095, -5.411867923528265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8628615491435725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5085970462300686, -7.0, -7.0, -7.0, -4.313360951244128, -7.0, -4.055760464687735, -7.0, -4.710269722412766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4434194617828173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.432622999315182, -3.586362223307866, -7.0, -4.283798572914993, -7.0, -7.0, -7.0, -7.0, -3.473827459679738, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7143903787417765, -7.0, -7.0, -7.0, -7.0, -3.747644819328248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0692980121155293, -7.0, -7.0, -7.0, -4.385516903399025, -5.2731888467667005, -7.0, -7.0, -4.416174347457088, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.116928587217637, -7.0, -7.0, -7.0, -4.711773496120913, -7.0, -3.8718063644587293, -7.0, -3.733443757892789, -3.6707559422151332, -3.586249638866042, -4.000694315866355, -7.0, -4.696238405394714, -3.538413768461401, -7.0, -4.371566552483734, -4.018851269187425, -3.725870813226274, -7.0, -7.0, -4.910640410533396, -7.0, -3.752317396505286, -2.9862892996576695, -7.0, -7.0, -7.0, -7.0, -3.773340223171566, -3.113031287956422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.973789571309058, -3.1393638071453336, -4.612868588840168, -7.0, -7.0, -3.861448529146899, -3.879611907065851, -7.0, -7.0, -7.0, -4.235159645042988, -7.0, -7.0, -7.0, -4.485058598189106, -4.2023884051228775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.513994017430478, -4.788818618509576, -7.0, -7.0, -7.0, -7.0, -4.25598127408652, -7.0, -5.405189213807231, -4.072727689585266, -7.0, -7.0, -7.0, -7.0, -7.0, -3.591064607026499, -7.0, -7.0, -3.465993871030563, -7.0, -7.0, -4.642009212267617, -4.353353533052763, -7.0, -5.046301971533895, -7.0, -7.0, -4.606821886016697, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7035492982382308, -2.620210439573049, -7.0, -3.4022040460651453, -7.0, -2.552911450216509, -3.863005451385769, -2.103803720955957, -7.0, -7.0, -3.2605483726369795, -2.6334684555795866, -3.620177711918963, -3.6020599913279625, -2.3268476989159903, -7.0, -2.8204970207913975, -2.8184458452428167, -2.697907095962328, -2.2612628687924934, -2.6020599913279625, -2.161293117420253, -2.4419568376564116, -2.979092900638326, -7.0, -7.0, -7.0, -3.103376055257288, -7.0, -2.409087369447835, -3.480979310410153, -3.190506781616284, -3.038130304046716, -7.0, -3.4234097277330933, -7.0, -2.5571060060508883, -7.0, -7.0, -7.0, -3.101231386790699, -7.0, -7.0, -2.8832828000102766, -7.0, -2.412553873847405, -2.592731766393962, -2.2041199826559246, -7.0, -2.462397997898956, -2.9439888750737717, -3.378488748031808, -3.288081468736615, -2.605305046141109, -3.5267268673146357, -3.49996186559619, -2.979092900638326, -2.7429449715938286, -7.0, -7.0, -1.7375872659716323, -7.0, -3.1451084132832223, -7.0, -2.4641225315292545, -2.697519937940786, -2.929418925714293, -7.0, -7.0, -2.985501320180887, -2.3566631199368167, -7.0, -7.0, -2.015746539892464, -7.0, -7.0, -3.4530021891110505, -7.0, -7.0, -3.5247205856840464, -7.0, -3.7264011621029223, -7.0, -2.703864326067068, -2.3460594330525737, -2.535610545908793, -3.0888445627270045, -7.0, -7.0, -3.014348680847394, -2.661023489459825, -2.3121773564397787, -2.253983796496258, -3.184975190698261, -2.4533183400470375, -2.6242820958356683, -3.69978818845623, -2.870598962314376, -7.0, -2.429752280002408, -7.0, -7.0, -7.0, -7.0, -2.975431808509263, -7.0, -7.0, -7.0, -2.9608405922118757, -7.0, -2.8363241157067516, -7.0, -7.0, -7.0, -2.6138418218760693, -2.413299764081252, -2.7510690461887255, -2.7198834733033834, -7.0, -7.0, -2.32376758329678, -7.0, -7.0, -7.0, -7.0, -2.7643629658980102, -7.0, -3.404902104067037, -3.452246574520437, -3.341731207601339, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7977382907854604, -7.0, -7.0, -3.5106790310322102, -3.1094097905463656, -7.0, -7.0, -2.7075701760979367, -7.0, -7.0, -3.34143452457814, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.243544879306084, -7.0, -7.0, -7.0, -3.749633267880381, -3.7648483571934106, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6351042182738458, -7.0, -7.0, -2.4384293248474367, -3.399735263171256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.173733891880797, -7.0, -2.932980821923198, -3.2380461031287955, -2.6011905326153335, -3.5010592622177517, -7.0, -7.0, -7.0, -7.0, -3.291590825658001, -4.5429374082326195, -7.0, -7.0, -3.2195845262142546, -7.0, -3.0443045191759146, -7.0, -3.0646451447919367, -7.0, -3.3967222785037734, -2.560056149734406, -2.8882642901467257, -2.817014164406586, -3.662190990859007, -7.0, -7.0, -3.344588742578714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2092468487533736, -3.145462789979763, -7.0, -7.0, -2.866995813110648, -7.0, -7.0, -3.43568513794163, -7.0, -7.0, -4.174905787979731, -7.0, -2.8356905714924254, -7.0, -7.0, -3.46159856006272, -7.0, -7.0, -7.0, -3.595606434865603, -7.0, -3.3301092545928297, -7.0, -7.0, -7.0, -3.31387992033792, -3.6646419755561257, -3.4632956099620027, -2.9237619608287004, -7.0, -7.0, -2.6229537514399808, -7.0, -7.0, -7.0, -4.184237029016371, -7.0, -7.0, -7.0, -3.3248994970523134, -7.0, -7.0, -7.0, -3.735119634081872, -3.2845001459966476, -7.0, -7.0, -7.0, -7.0, -3.2287082598019725, -7.0, -7.0, -7.0, -7.0, -3.1340973839451696, -3.3649260337899753, -7.0, -2.9048807704973005, -3.318689269947746, -7.0, -7.0, -4.04474005060347, -7.0, -7.0, -3.716420733846555, -7.0, -7.0, -2.8919089670894906, -3.616685520895512, -7.0, -7.0, -3.4346043841601857, -7.0, -3.1863912156954934, -7.0, -7.0, -7.0, -2.842388953284813, -3.8145139523682383, -4.188365926063148, -3.078239253809666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.895809150169131, -7.0, -7.0, -7.0, -3.777837479938187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4787107555127594, -3.939718882354105, -7.0, -7.0, -3.0805087817900456, -7.0, -7.0, -7.0, -7.0, -3.2796669440484556, -7.0, -7.0, -3.0757293997408985, -7.0, -4.005073213063604, -7.0, -3.8073320392911905, -2.816573656226861, -3.3600250891893975, -2.539666373408828, -3.398634324538392, -2.8226583460036045, -2.846584502898046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0042783722001625, -7.0, -7.0, -7.0, -3.2115877040189345, -7.0, -3.536747773889752, -7.0, -7.0, -7.0, -7.0, -3.524266268766979, -7.0, -7.0, -7.0, -3.2014153333509525, -3.1398790864012365, -7.0, -7.0, -7.0, -3.222456336679247, -3.2489536154957075, -7.0, -7.0, -7.0, -2.688981530831051, -3.395937645080042, -3.5651982517156657, -4.567798263269426, -7.0, -7.0, -7.0, -3.09429639740537, -7.0, -7.0, -3.216297886630392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.960588455242285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0407718208896495, -2.688568121297955, -7.0, -7.0, -2.940038099187222, -2.7268629897004635, -2.9794499342929743, -7.0, -3.544382277123792, -7.0, -7.0, -7.0, -3.7392162193937257, -3.823213313282668, -2.8974579076179072, -3.803047210491129, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2223262109908117, -3.381611391532234, -7.0, -7.0, -3.1389339402569236, -3.387065510037909, -3.475283684857362, -7.0, -4.0100454126360985, -7.0, -7.0, -3.700617195682057, -3.181986424480151, -2.6079265932033473, -3.1609684672648433, -3.860996436757196, -7.0, -7.0, -7.0, -4.009525576799297, -3.455707512181184, -7.0, -7.0, -7.0, -2.9311399158597338, -2.8195439355418688, -7.0, -7.0, -3.269512944217916, -7.0, -7.0, -7.0, -7.0, -7.0, -3.383994789441733, -3.247564133517697, -7.0, -4.5628992633333025, -3.930082633392371, -4.357423135618709, -7.0, -3.5650209283452936, -4.324422394952085, -2.8967710973843452, -7.0, -7.0, -7.0, -3.6618126855372615, -3.8591983615338776, -3.8069935136821074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0125999845343534, -7.0, -7.0, -2.254590341522387, -3.825865887784005, -4.296379953771385, -3.7285161047597666, -3.8189677843395207, -3.09191304667608, -2.8967265840360867, -4.302071053650075, -3.1153058148784267, -2.983954149351602, -2.9289929379588013, -4.328012438855587, -3.6140774783100187, -3.5253256032202396, -2.8446546561248995, -4.351796306897024, -4.081869155842856, -3.1284761989930865, -3.5978779313445366, -3.1591057860218807, -7.0, -4.435711680003175, -3.4542566949442497, -3.1142772965615864, -3.0273182383152535, -7.0, -4.066819584762148, -4.216825423266047, -3.5259513412480126, -3.276913958802221, -3.07678043480133, -4.386436536805701, -4.346216013155006, -3.6211503064479005, -3.009309224134771, -7.0, -3.6369390072874714, -4.1686889551577195, -2.98434196069803, -3.5842900960487443, -3.3656751404559175, -3.902456178608144, -2.5286826823843556, -2.8306873495494416, -3.7531232446817127, -3.873998355018009, -7.0, -3.5138103976343795, -3.562887381293879, -3.3273589343863303, -3.417154519038368, -3.9679876639285983, -3.544378143957812, -7.0, -3.8527543908053885, -7.0, -7.0, -7.0, -3.4901165675714214, -3.2842803027789684, -7.0, -2.7048937314310724, -3.6969957883137, -5.406369835469268, -7.0, -7.0, -3.286905352972375, -3.4982962910108375, -7.0, -4.80524591569032, -3.815212362299354, -3.547380832120237, -7.0, -3.44143982425051, -4.450172098924372, -4.091807597001675, -3.234179705196503, -3.2428394686728192, -3.876217840591642, -2.8350072579387113, -3.724849087629386, -7.0, -3.471780506250551, -3.2797192128666035, -7.0, -4.007260775655791, -7.0, -3.225309281725863, -3.540610986582727, -4.018679698624002, -3.24551266781415, -7.0, -7.0, -7.0, -3.4982416126858915, -1.9574911927012917, -7.0, -2.7987037539114805, -2.552911450216509, -7.0, -1.8225317226314617, -1.2199445427615632, -3.497620649781288, -3.2593549273080344, -2.2426460271625466, -2.621176281775035, -2.849583190354663, -2.8739015978644615, -1.8974156013997738, -3.2141813086638207, -2.641383961156209, -2.506369717095504, -1.5762221640507468, -2.0861724328371465, -2.4641061396561508, -2.165775860559767, -3.0170333392987803, -2.495147721553675, -3.167465028843088, -3.1740598077250253, -7.0, -2.06779903132787, -3.2232362731029975, -2.768144584737799, -3.3531037459299293, -2.6035794555086023, -2.6972223660854966, -2.8959747323590643, -2.9882244123901995, -3.9904276584852636, -3.0666985504229953, -3.0042138618420258, -3.1855421548543754, -2.962527174843811, -2.4753944354191564, -3.2132520521963968, -2.7713424628313694, -2.5474054596674893, -3.1330596427539095, -1.796182030208752, -2.527844632387161, -1.971275848738105, -3.3891660843645326, -2.8488047010518036, -3.4782778319196046, -2.4399396743370376, -2.8815921305506578, -2.9161906599805376, -2.9640709705579553, -3.1669232380950865, -7.0, -2.288905106221548, -2.829946695941636, -3.249442961442582, -2.74901124252752, -7.0, -2.560422414267646, -2.6994040818153375, -2.179847626177222, -2.4360035356698964, -2.718501688867274, -3.310640216862898, -7.0, -2.4658164336527726, -2.6830470382388496, -3.2149762347220667, -3.3963737275365067, -1.9027505618227292, -7.0, -3.3886931254483055, -2.695710464573313, -3.7224693858840308, -2.2531083481429803, -2.9666313775302093, -3.0038911662369103, -2.9138138523837167, -2.558365661331061, -2.308196304976814, -1.948769918041402, -2.5140494227353822, -2.4365160192993924, -7.0, -7.0, -2.2972314509435923, -2.7564187436357535, -7.0, -1.785442829542926, -2.528342484271277, -2.16354083719592, -2.111748093301207, -2.9257437004504925, -2.498922883086532, -3.2920344359947364, -7.0, -7.0, -7.0, -3.1405080430381793, -3.061150780928549, -2.821367938567036, -7.0, -2.988112840268352, -7.0, -2.273212556174888, -7.0, -3.286456469746983, -3.2062860444124324, -2.9017306917292185, -3.2340108175871793, -2.9182925127553556, -2.4668676203541096, -2.266643210950574, -3.149834696715785, -7.0, -7.0, -2.4740080192955194, -3.2518814545525276, -7.0, -7.0, -7.0, -3.2524889444849885, -3.4435758797502576, -3.0301324538917136, -3.5386993795424067, -3.7515100502700416, -3.028571252692538, -7.0, -2.2056682712187854, -3.0073209529227447, -7.0, -3.3092308161500323, -7.0, -7.0, -2.570834706424214, -3.1048284036536553, -3.5660837841679958, -3.230959555748569, -7.0, -3.529558673021163, -7.0, -3.2738497297176563, -7.0, -7.0, -3.1878026387184195, -3.8649854606597938, -7.0, -4.035249578686349, -3.222416302158394, -3.561836516419704, -3.1567951515677546, -2.0109093174202606, -4.340325113748292, -4.0448140475286385, -2.6864680842729807, -4.121247880500199, -7.0, -4.340166394886077, -3.010535512583051, -2.4221985394696524, -2.708304990392847, -7.0, -7.0, -7.0, -3.8601782366871342, -2.5383061088410503, -3.0297744519159444, -7.0, -2.5849553440962674, -2.488678178460122, -4.350790547426457, -4.342659504139119, -7.0, -3.253729320398597, -3.2082685564036995, -4.043008409879952, -2.9500615985548566, -3.748614356905319, -4.3386556655787, -7.0, -3.6452257115354163, -3.463332970234029, -3.7391172439194027, -4.084737097962795, -4.336919802200228, -2.908355580205547, -3.388870545406613, -3.017884063335557, -4.340047317661393, -4.044206464382898, -2.863136906582225, -4.35305023964259, -2.442019395215901, -7.0, -2.6956567599361905, -4.087195576859718, -3.27425409180854, -3.157286734403413, -2.153616806044849, -3.535637657401434, -2.210928431339089, -3.058077892589143, -7.0, -3.4450395648772703, -3.300993802949105, -7.0, -3.748594987350116, -7.0, -4.3388547462523235, -3.232937497195236, -2.5195129832576257, -2.180982024435645, -4.339570682001439, -7.0, -2.6339272981810673, -7.0, -3.3842230394187056, -3.230823445277533, -4.338914452663329, -4.078184845714645, -2.6349370993059553, -3.639247362265076, -2.6536762559250167, -7.0, -4.040701211937358, -2.165455437571897, -3.4131693257315994, -3.740717876059285, -7.0, -3.149816603750927, -4.347583686308583, -3.240317420069045, -2.861077351252817, -3.585009279902461, -4.059771617303871, -2.4240244874694508, -3.489606966267722, -2.956387992907696, -3.735758537443739, -7.0, -4.077531416354595, -3.584218112117405, -3.595845133878683, -2.921443688161596, -4.3404441148401185, -3.226022671672174, -3.746478509930031, -7.0, -7.0, -2.7951135650233447, -7.0, -2.895606686165933, -3.0551106378541464, -2.378123530264194, -2.107591139790693, -3.6469523748023223, -3.299903317951841, -3.097527237460007, -3.7539658658651605, -2.233218159615806, -3.504800851389655, -4.336039245371044, -3.8923914547060727, -3.6946929263314843, -3.1763466512899763, -4.350461235597642, -3.256777860100623, -2.878532949990976, -4.345902796476545, -3.6716818448830852, -4.346783143258122, -3.239390163072411, -3.3532428314337293, -3.301482150292958, -3.70399599724626, -4.338735308799518, -4.34738856792903, -1.8085012734625698, -2.8148772297450946, -7.0, -7.0, -3.287100374971208, -7.0, -7.0, -4.336519770410416, -2.8191249923035215, -3.381756668168806, -2.4931435578660768, -2.8005861681135253, -3.0056216943620413, -2.9383695974518065, -7.0, -3.614565797008349, -7.0, -7.0, -3.178228510935771, -3.8146337595794417, -2.7460578706127543, -7.0, -4.3419881690481885, -3.648925689157213, -2.660554467906144, -7.0, -7.0, -3.7627348158461476, -3.657896842346367, -3.8618130982567225, -3.3570004904409223, -3.1046577910087962, -3.5304192606354143, -3.3732247295944737, -3.664585570012582, -2.8048206787211623, -3.156189361686134, -3.6459525315178176, -2.282539867650608, -3.644162759365265, -7.0, -7.0, -3.6496268868405295, -3.6432552250247716, -3.8639173769578603, -4.337039739920378, -2.8578030213764305, -7.0, -3.2434370925285267, -4.336999764360528, -3.4231311394854274, -2.2733622557608473, -7.0, -3.210619451457561, -3.1438818288549104, -3.4537959541740304, -3.6740523984521385, -4.058312121108386, -3.284167445275132, -3.877083256650651, -3.3591142204149063, -3.9298274812306917, -4.344451223686138, -3.9358094538099326, -7.0, -3.7016111533360587, -3.1101593173871143, -3.7326450149540165, -3.8627672425040847, -1.7843966678397087, -4.035069344421104, -2.2003064428510677, -3.1146698436863396, -2.571975972535329, -2.8639173769578603, -3.198362483563655, -2.870436420869347, -3.291202294560029, -7.0, -3.227629649571009, -2.7608885125470173, -2.618509539449221, -7.0, -3.5578278919567095, -3.8650842245566794, -4.337718762057449, -4.038739348104749, -7.0, -7.0, -4.345765693114489, -3.322041995494101, -3.000434077479319, -3.179276960763326, -3.1664195985419643, -7.0, -3.643906474455095, -3.7432745235119333, -3.39919282841684, -7.0, -4.338914452663329, -3.669855926622826, -2.9618954736678504, -4.360214613295352, -7.0, -7.0, -7.0, -4.040068042960068, -7.0, -4.0374663396435, -3.3613878203125966, -2.231131517275498, -7.0, -7.0, -7.0, -3.8636202202703154, -2.481893986310889, -2.566260674190903, -7.0, -4.3481490343841624, -2.8964928140759403, -3.6648863149590496, -2.943877294761792, -3.239377695152661, -3.8851538250634543, -7.0, -7.0, -1.8514501231419902, -2.7029734397201044, -1.8337843746564788, -3.871358848768327, -2.6663139371005946, -3.7483237228304267, -4.341157437445437, -3.739829364386337, -2.0820754602559584, -3.064881008648573, -2.3583098729804317, -3.041425585009148, -3.604349502341101, -3.3580491199867475, -3.7454456581479403, -4.338755217322839, -3.753563909684063, -3.1264561134318045, -3.2646725497243874, -7.0, -4.040701211937358, -3.4015154183068543, -3.8639173769578603, -2.398226262323115, -7.0, -2.6960216006793116, -2.9407654356312176, -3.4000004248702242, -3.3001786684400054, -2.5712696007142037, -2.6466932781616226, -2.9853066934901156, -4.3395905522680405, -3.22743675839222, -4.338217366601095, -7.0, -2.8802764528742517, -3.322538787843612, -3.1381016558472252, -2.8685197614044755, -3.591748122447564, -3.323308364436474, -2.664659711634453, -2.424231786918459, -3.0930099610151447, -2.64249495859943, -7.0, -7.0, -7.0, -3.0316023385073954, -2.8984166242181457, -4.343290402353433, -3.2670739033137606, -3.422334447617187, -7.0, -2.84845038043803, -3.5650603397961036, -2.9868380590192607, -4.347739717920052, -3.750296209841865, -2.859652864276414, -7.0, -3.149256445629004, -3.06752864063947, -2.956034209511922, -7.0, -2.8690730733431287, -2.977633550844847, -2.8895097937792866, -7.0, -3.5725037282944347, -4.340186237916345, -3.090716448481099, -3.157234020373384, -3.276789945089424, -3.413709458318653, -4.036309443724438, -7.0, -2.7303601047963593, -3.864372622679366, -7.0, -3.570192561095726, -3.80704430934858, -3.7406192422595144, -2.1484235191525474, -7.0, -4.035389709198677, -2.382812400965278, -2.5187259778241775, -7.0, -2.9733673510945082, -3.820846061385705, -2.7581351874034996, -3.28266742031975, -3.478234515815185, -1.4745388360584113, -2.359749918312179, -2.393601262762674, -3.440363248545816, -3.524071415934022, -3.525214026475078, -1.8987911888062636, -3.6747387007928496, -3.473036098059588, -2.0575751273111913, -4.027743624288048, -2.841369900072221, -4.096614592305936, -3.489377920934706, -3.3009322684108247, -2.633302722941081, -3.275285754348347, -2.7893558638643454, -3.710371264260763, -3.5628992633333025, -4.370161366676781, -2.289659636281177, -3.0459338868658743, -3.4222298618548153, -3.3035765799789134, -3.611640712232615, -3.8875985480102555, -4.221935599828005, -7.0, -3.2034978657478983, -3.2833964582800528, -2.4655511935198726, -3.3959861203155404, -3.178951381008244, -2.5171165611354143, -2.743675563376944, -2.8656960599160706, -3.151114367869422, -3.7685826086289427, -2.7466702927662827, -2.2836545147247422, -2.3532455307117077, -2.0000181330027336, -2.4512565368187738, -2.545111375970089, -7.0, -2.5166837422777864, -3.541688427827535, -3.4934978835625743, -3.9613894503284546, -2.223246074709505, -2.2144532419764444, -3.6515881136056807, -2.1023679011904353, -2.525808134205592, -3.2212435936124524, -3.8641549560020256, -3.5134673141995356, -3.3426595041391187, -2.2218894833457847, -3.8330195470765314, -2.9272945385073883, -1.7551976671084402, -2.3475855441575137, -3.8599784416420206, -2.669389205292351, -2.68206380784874, -2.4987805579480185, -3.255548160131223, -1.9507381240225095, -3.5378190950732744, -1.3681036709887278, -3.223688497483371, -7.0, -2.2695693006163253, -2.085841949767647, -3.7931090834994587, -2.287490547609792, -3.8663070345324604, -1.8530557878276115, -2.69221219192535, -3.043553438113086, -4.038461196178564, -7.0, -7.0, -7.0, -3.576226137449605, -1.7542720461167403, -2.716300195650392, -1.786412434699108, -3.863005451385769, -1.8225317226314617, -7.0, -2.046201947356664, -2.5858553633220276, -3.8634616535278656, -1.4080095203436613, -2.975291916582815, -1.3696800207907336, -2.0640050001968224, -2.776681555302868, -3.5903401790321667, -2.711454666165046, -1.9481731218751213, -2.4750458298528333, -3.748982214411482, -4.044186850767364, -2.507936146456582, -3.5675360785152037, -2.693277378791741, -2.589381549515688, -2.54926988029305, -4.335257256434532, -1.0520053944772132, -3.8605775512444156, -7.0, -2.566106798329171, -1.9209980385338585, -2.2455179858468557, -4.034788831251184, -3.017559547973121, -2.0075047762576936, -3.027796003500773, -2.4606805234666274, -7.0, -2.7663747092874, -1.677145884991026, -4.035949779536674, -2.5593479441958, -2.974806341932808, -2.7546349672131645, -2.4989489998913625, -3.2305078713793014, -2.4283635105171277, -2.920664310678378, -3.346313847059117, -2.54165487206726, -2.318659483967699, -2.370071610360726, -3.433989724808988, -2.416374900038764, -2.580818098726168, -3.764250875438773, -1.7967906818747728, -4.043833654133147, -3.3852884293013306, -2.4565914962046436, -2.6945865312432264, -1.599418080433217, -2.4987094715497626, -2.4682256622556245, -3.316941985816457, -3.74401901732498, -2.8940851900609035, -3.441596956713679, -1.841770975803067, -3.0199664335597736, -2.4851795276536532, -2.1309095650419336, -2.731473644051034, -7.0, -2.135437853436796, -1.7279980930228536, -1.9319485989693566, -3.329915358697696, -1.5452882850766474, -2.6324934457316256, -2.9198296084259026, -2.581754942494377, -1.1905309123113172, -2.3435613799028485, -2.283784282700699, -2.670458463029679, -3.4340496757326173, -3.7336586083863925, -2.63837062156992, -3.4786927256432434, -3.0703295678267613, -2.716946437342873, -1.141066773176585, -2.9693040624631877, -1.2656919266736266, -1.317611285700861, -2.124244675406698, -2.496929648073215, -7.0, -2.737078997674152, -7.0, -2.3403415296307353, -1.769724761680191, -3.374498392344555, -7.0, -2.737249454070101, -3.205610309902521, -1.0178926649257336, -3.306931652542162, -7.0, -7.0, -3.056804587113032, -3.7364363439795194, -3.735339363143935, -3.2978997176105405, -2.2176434353952446, -3.213593642804973, -3.110103147722846, -3.3437629752857023, -2.7318245278608315, -3.3396898899664773, -3.2632216936676484, -3.393692169195935, -2.671054613726539, -2.601267970296191, -2.275560877376543, -1.8302041241340057, -2.4153947885491625, -3.179568686824779, -2.682459014749771, -3.4910613864705238, -2.8992908534140494, -3.08904115613125, -3.5569855749879813, -1.6794090213681825, -3.4446692309385245, -3.3055467775407656, -1.7764931142422742, -3.3783797292507396, -2.7411332683893193, -3.736197238918293, -3.640362163527487, -2.6444757499437666, -3.638089721984506, -2.7368540379145427, -2.880851686617196, -4.350344948249062, -4.335156899534743, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5338991007965945, -2.793511005792858, -7.0, -7.0, -3.866700756042499, -7.0, -7.0, -7.0, -3.939119717648487, -3.213082882645646, -7.0, -7.0, -7.0, -7.0, -3.036628895362161, -2.7067548777441615, -7.0, -7.0, -2.3202155460556875, -3.670601819347056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.398657449294496, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3756636139608855, -7.0, -7.0, -7.0, -2.391816923613249, -4.845612684135473, -7.0, -7.0, -3.2835273648616936, -7.0, -3.305852740224386, -7.0, -7.0, -7.0, -7.0, -2.8372095278012064, -3.254222215638808, -3.349374674204051, -3.3851592385800426, -3.898286278589123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7758126429361747, -4.475976104139765, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7768464086952993, -7.0, -7.0, -3.5743657065242562, -7.0, -2.994866823015008, -7.0, -7.0, -3.362105319293773, -3.0965624383741357, -3.3902283624691303, -7.0, -7.0, -7.0, -3.681693392004564, -3.4139699717480614, -7.0, -7.0, -2.663457086695989, -2.8653578243211677, -2.8047490188774384, -2.740362689494244, -7.0, -7.0, -2.071628108157179, -3.612889769287485, -3.7424108805804925, -7.0, -3.3535040694754548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0756929182018036, -3.7087777078901545, -7.0, -7.0, -7.0, -7.0, -3.372443327772641, -2.9734357546986665, -7.0, -7.0, -3.7155855518931964, -3.299216654900513, -7.0, -3.7427513086038777, -2.2079846976535187, -7.0, -7.0, -7.0, -4.524196997775221, -7.0, -7.0, -3.7582304084577496, -7.0, -7.0, -2.9539005690195412, -3.668665415454492, -7.0, -7.0, -2.5207192847497857, -7.0, -7.0, -7.0, -3.0517311960598494, -3.0259199985020175, -3.6155993899644367, -3.8481891169913984, -3.7256938862479183, -2.53315637946727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.562411832949728, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5052856741441323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.975459290283739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7460284279171123, -7.0, -7.0, -7.0, -3.841547165256553, -2.7800950588159346, -3.1484484035233837, -2.0780873047087587, -2.4391747398434687, -2.386704711065075, -2.76063785386249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.026328938722349, -7.0, -4.374216605428374, -7.0, -3.6550743748537613, -7.0, -3.568729599118429, -7.0, -7.0, -7.0, -7.0, -3.8582965245338854, -7.0, -7.0, -7.0, -3.273108162165656, -2.713243405727743, -7.0, -7.0, -7.0, -7.0, -3.361727836017593, -7.0, -7.0, -7.0, -3.147632163939886, -3.7407573233077707, -3.2280009024796756, -3.75519697151723, -7.0, -7.0, -7.0, -2.1724569744005873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6286919625857674, -7.0, -7.0, -7.0, -7.0, -3.4342494523964753, -3.4234097277330933, -7.0, -7.0, -7.0, -7.0, -2.845886949371798, -3.215848976111454, -2.17242523816747, -3.342422680822206, -7.0, -3.1726418447426044, -2.969532392033345, -2.1934188358195805, -7.0, -3.4943183242680367, -7.0, -7.0, -7.0, -3.759554535696884, -3.555094448578319, -2.8287404332962187, -3.837588438235511, -7.0, -7.0, -7.0, -7.0, -3.49373680227684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.285894712480839, -3.2284431358004935, -7.0, -7.0, -7.0, -3.580747624719427, -3.3750231289878903, -7.0, -4.322136564096103, -7.0, -7.0, -7.0, -3.074938279468222, -2.9148718175400505, -3.2105860249051563, -7.0, -7.0, -7.0, -7.0, -3.239042654578873, -3.6577727077355213, -7.0, -7.0, -7.0, -3.389933545757039, -7.0, -7.0, -7.0, -3.326949994165999, -7.0, -3.5769169559652068, -7.0, -3.523486332343228, -7.0, -3.1680553034591394, -3.766040860381389, -3.4318460456987254, -4.168037606888807, -3.1144608565074874, -4.090878765174447, -7.0, -3.8961954104542107, -4.423499820977251, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8896937914441856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.294569956855799, -7.0, -7.0, -2.97892329990125, -3.742460890226512, -7.0, -2.767897616018091, -3.8232785569516707, -2.845235889398656, -2.027229653490911, -4.00665854393118, -2.544885102554565, -2.5534523536943654, -2.348927619178392, -3.7364363439795194, -3.6531079488130422, -3.6825705203662005, -2.3922351600507605, -4.361841115455327, -3.0444684886302253, -2.6964074870111, -4.093946723890583, -3.868977328651328, -7.0, -4.788841571410247, -3.8337206904446335, -2.765937135152177, -2.8144897448778106, -7.0, -3.828595456371702, -4.230474467361159, -3.2879136470760337, -2.723940845569182, -2.741939077729199, -3.650581244643046, -4.055320982366588, -4.236814275171272, -7.0, -4.139060078649301, -3.9636461864848433, -3.699129216458944, -3.0525143912994106, -2.542437654891962, -7.0, -3.3426379800822894, -3.6570963223312, -3.067210388410234, -2.8363241157067516, -3.582915199370299, -3.592731766393962, -2.6827758928984187, -4.060508975605298, -7.0, -3.7676307319608626, -3.6085911403132283, -3.4397974472398007, -7.0, -3.3485444903288952, -7.0, -7.0, -7.0, -7.0, -3.7995473071256147, -7.0, -3.6977304979257712, -3.2321140257972862, -5.008872584806385, -7.0, -7.0, -7.0, -3.207048242986976, -7.0, -5.408209427907497, -3.8323492162595376, -4.259307121211679, -3.336059277866349, -3.576667620464078, -4.458199556981169, -4.493471992809347, -3.452706226511029, -3.0512972631525717, -2.825209673964737, -3.4756442895302118, -2.8187643531484383, -7.0, -3.0424831440096773, -3.1437384944823323, -7.0, -4.5056634605284716, -7.0, -3.143327129992046, -4.625466793609239, -4.330555809062996, -7.0, -7.0, -7.0, -7.0, -3.1347506861086147, -1.1202428662818602, -7.0, -2.2063587531499906, -2.103803720955957, -1.2199445427615632, -2.046201947356664, -7.0, -7.0, -3.3697722885969625, -2.425485914566185, -2.4373541278481747, -3.0153867999328026, -2.8060291511027384, -1.8905734295699475, -2.9773806058118346, -2.0558192245960782, -2.268928822432613, -2.236719159078696, -2.6123296529322277, -2.2301081646076315, -1.9499125186171895, -3.4163075870598827, -2.2267609637969663, -3.5402042998420598, -3.222282827095675, -7.0, -2.151845939100076, -3.3420276880874717, -2.512264990600886, -2.8136762808300997, -2.3216767395735283, -2.2098569649819138, -7.0, -2.299348789831753, -3.4108615542165976, -2.853393977450666, -3.3587911623917237, -7.0, -7.0, -2.194096756428317, -7.0, -2.278753600952829, -2.7633210113030287, -3.511214701136388, -1.8695078128629088, -2.502597799680834, -1.7078362064167623, -7.0, -2.213849659558812, -2.7016913116170014, -1.7472373637694574, -2.7899833959966163, -2.7345998321264577, -3.011062694729735, -3.392169149489736, -3.5660837841679958, -1.3921904418969324, -2.8048206787211623, -3.362105319293773, -2.3522284727679743, -3.578409970331236, -2.3841632002260216, -3.1799345981374416, -1.7886343092918957, -2.208844289340738, -2.5718751325887794, -3.9400680137393524, -7.0, -2.7324512023839813, -2.4338586921311918, -3.103233406386929, -3.2038484637462346, -1.7674413044637363, -7.0, -3.5949447366950835, -2.0460908387151995, -3.2863067388432747, -3.2969940766702086, -2.7701950001292666, -3.3585059114902354, -3.373892352104008, -2.5306265232810774, -2.114901864243015, -1.688607900299527, -2.3814622108393566, -2.2971036501492565, -7.0, -7.0, -2.3292194070638392, -2.159237204338384, -2.36579986604032, -1.2505704519861625, -2.29543118794837, -1.8078434842931863, -2.2395714741767447, -3.2235431366244605, -2.3138672203691537, -7.0, -2.9346667498242063, -7.0, -7.0, -3.0829289150151302, -3.798650645445269, -2.3472290439950934, -7.0, -3.2364112877439664, -7.0, -2.0837025712527235, -7.0, -3.089551882886454, -7.0, -3.025510672852581, -2.872350544494723, -3.038023740045158, -2.513217600067939, -1.7132480512166643, -2.745855195173729, -7.0, -7.0, -2.335959106148248, -7.0, -7.0, -3.4360035356698964, -7.0, -3.3120715213029315, -7.0, -3.3154305138375006, -2.829128264854539, -3.312811826212088, -2.21649578796984, -7.0, -2.6624143801161035, -7.0, -7.0, -3.6174197467371765, -7.0, -7.0, -3.097691040361552, -2.489657199855414, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7471998707621346, -7.0, -7.0, -7.0, -7.0, -2.6301735297867714, -2.7528164311882715, -7.0, -7.0, -2.1699681739968923, -7.0, -7.0, -3.3394514413064407, -3.8462537204442393, -7.0, -7.0, -7.0, -3.2748503200166645, -3.545455567836917, -7.0, -7.0, -3.2242740142942576, -7.0, -7.0, -3.459938782046067, -2.0767781650347885, -3.2161659022859928, -3.7712934426290596, -3.539712523108797, -7.0, -7.0, -3.229169702539101, -3.525044807036845, -7.0, -7.0, -3.0530493264922316, -2.6864575104691117, -3.2598326990634834, -7.0, -7.0, -2.231389098449744, -3.290479813330673, -3.635483746814912, -7.0, -7.0, -7.0, -3.8664707831458736, -3.2762319579218335, -7.0, -7.0, -2.8041394323353503, -2.202566154587303, -2.70372115992702, -7.0, -7.0, -3.11293997608408, -7.0, -3.1511954337292214, -3.6074550232146683, -2.2917371727664304, -3.2720157538950723, -7.0, -7.0, -3.127644629984225, -7.0, -7.0, -7.0, -7.0, -2.750893920382125, -2.6942541120252788, -3.6245178211861346, -7.0, -7.0, -2.462167541814003, -7.0, -3.523226041965701, -2.5968326345359145, -7.0, -3.2960066693136723, -4.088074848055238, -7.0, -2.9457147140598603, -7.0, -7.0, -2.738433697678285, -7.0, -3.0066799277408256, -7.0, -7.0, -7.0, -2.795383396956165, -3.377032909310364, -3.1893499243391976, -7.0, -3.2887114923125513, -3.6742179455767, -3.370142847051102, -3.2511513431753545, -7.0, -7.0, -3.4847268042986617, -7.0, -3.230363757247811, -7.0, -3.3417170844331974, -3.36679638328673, -7.0, -7.0, -3.182822096391546, -7.0, -7.0, -2.8367986680925994, -2.627444640172432, -2.952550293898202, -3.34143452457814, -3.2949069106051923, -7.0, -7.0, -3.8048717291471643, -7.0, -7.0, -3.233884108765886, -7.0, -2.8987251815894934, -7.0, -3.2082800785453096, -3.8096868795851906, -7.0, -3.6122539060964374, -7.0, -4.2213055419384045, -7.0, -3.005395031886706, -7.0, -3.2607866686549762, -7.0, -2.2315276052084614, -3.3261309567107946, -7.0, -7.0, -4.08988745683333, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3665511298083617, -2.4761330984755965, -3.2877737461368017, -7.0, -7.0, -3.9464031338990546, -7.0, -7.0, -3.422917980767662, -7.0, -3.600319329751661, -7.0, -7.0, -7.0, -3.3265165785186688, -7.0, -2.6172625170913744, -7.0, -7.0, -7.0, -7.0, -3.469527479187014, -2.316319878258001, -1.8507687269288802, -2.3435492559854603, -1.846367536626781, -1.676083645364622, -7.0, -3.54556672041147, -2.8344207036815328, -7.0, -7.0, -2.8898617212581885, -2.396417311708544, -2.986995539724382, -2.9385197251764916, -3.98412208286111, -7.0, -3.8311442784902705, -7.0, -3.81424759573192, -3.0562975709559037, -7.0, -7.0, -2.665580991017953, -3.44216608578472, -3.0814673283885368, -3.1588146467242266, -3.192428055331207, -2.940184328524863, -2.8577846510602454, -3.26583941549449, -7.0, -3.1676864758514913, -7.0, -7.0, -1.7893594719752786, -4.366385596953946, -3.2753113545418118, -2.5139164381268553, -7.0, -3.144885418287142, -7.0, -2.226524092257544, -2.998912904358786, -3.330413773349191, -2.8309092995464433, -2.5870870682273686, -7.0, -2.866050924009275, -7.0, -2.7463746862427323, -7.0, -7.0, -3.3014640731432996, -7.0, -7.0, -3.0184924534014725, -7.0, -3.338257230246256, -3.3718525790917426, -2.859909919319079, -4.170467076385937, -4.7140194385588226, -7.0, -2.099076074764564, -2.7317901537745826, -7.0, -7.0, -7.0, -3.0533345888650136, -3.4708513245261177, -2.863768824029474, -3.215637563435062, -2.9161906599805376, -2.482873583608754, -2.2846562827885157, -2.744553742351106, -2.4104156728052764, -1.8123190431982061, -3.1700758288813535, -7.0, -7.0, -7.0, -7.0, -3.36078268987328, -2.8700135281903574, -7.0, -3.060508975605298, -3.482373285458582, -7.0, -3.863976783904387, -3.4149733479708178, -7.0, -7.0, -7.0, -2.4239448191097, -7.0, -3.7715262393269122, -2.1293865609616143, -3.60741377771562, -7.0, -3.2889196056617265, -3.2984163800612945, -4.044382947073537, -3.352504098638387, -2.8394780473741985, -2.808818425092124, -3.4348349343530247, -3.1509098737011216, -7.0, -3.2610248339923973, -2.9526310252827455, -2.6137361412618714, -1.9232665507054019, -3.2127201544178425, -2.6924062348336304, -1.69186516156754, -2.5080806036449093, -2.690786555281818, -7.0, -3.2355284469075487, -2.731767781875961, -7.0, -3.600319329751661, -3.456214155357989, -4.181637185532979, -3.2582061260688273, -7.0, -3.5349352251341584, -7.0, -7.0, -3.709439574132411, -7.0, -4.012288739834607, -3.046007138120972, -1.8508342033943512, -1.6796833556134474, -1.4575791469957626, -3.5509617522981762, -4.683074711723954, -2.8958242057044803, -7.0, -3.2127201544178425, -3.214578953570499, -3.540454613671412, -3.2547091655685, -7.0, -1.5088921272146836, -3.5826314394896364, -7.0, -3.04766419460156, -7.0, -3.0173811923265106, -3.0565237240791006, -2.622214022966295, -3.7333577879255855, -3.357934847000454, -4.3874076249281835, -3.5056925074122, -4.4136032189545995, -7.0, -2.756870071608761, -3.701465186162768, -3.557085936526085, -7.0, -3.0860037056183818, -3.2778383330020473, -3.193958978019187, -3.165896909992507, -7.0, -3.0483122987091575, -7.0, -7.0, -3.5733358400660675, -2.335792101923193, -3.34908316877959, -1.9586594270529332, -2.449324093098727, -1.9761970853273751, -2.4677798235250936, -7.0, -7.0, -7.0, -4.780965029608317, -7.0, -7.0, -7.0, -4.395413767475018, -7.0, -4.3031852539407955, -4.18837718436134, -7.0, -7.0, -7.0, -4.729051339750031, -5.003141587724114, -3.993072328895638, -7.0, -7.0, -4.928979299448852, -7.0, -7.0, -7.0, -7.0, -4.301854372269586, -4.547553195630555, -7.0, -7.0, -4.3688445068258215, -7.0, -7.0, -4.482201621904094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626945698847907, -2.537279263453857, -7.0, -3.8664645659717403, -3.473535627784848, -7.0, -7.0, -7.0, -4.335480467368298, -1.6720978579357175, -1.9970611158472376, -3.557100988756635, -3.8544975657150813, -3.2140133047697534, -7.0, -3.8543212266573574, -3.8959747323590648, -1.8017955841534885, -7.0, -4.3952564808860215, -7.0, -7.0, -3.565489255361976, -4.448283200109149, -7.0, -7.0, -2.6085260335771943, -7.0, -3.0063614376592094, -7.0, -7.0, -7.0, -4.249076003683611, -3.241795431295199, -3.501489624786272, -4.150695051142714, -4.314407994796529, -7.0, -4.245833335097326, -7.0, -3.825707333540593, -3.80546007741919, -3.0610753236297916, -3.06245500039278, -3.3704703854098397, -3.385069776331935, -3.245671962807084, -7.0, -3.7115541682501694, -3.7178576585672802, -7.0, -7.0, -2.6334684555795866, -7.0, -7.0, -7.0, -2.8947703456567213, -1.683175737152787, -1.978287955736132, -7.0, -3.497620649781288, -2.5858553633220276, -7.0, -7.0, -3.2833012287035497, -2.4506980578348374, -7.0, -2.714172956272963, -2.119997780003502, -2.8656960599160706, -7.0, -7.0, -2.919601023784111, -1.8361867990361727, -7.0, -7.0, -3.381656482585787, -3.038023740045158, -2.662001879389917, -7.0, -2.193700204113876, -7.0, -3.215713079777089, -7.0, -3.270911639410481, -4.007715780666695, -3.3742121051701033, -4.495530462101731, -7.0, -2.9995654882259823, -1.3332552999187972, -7.0, -1.9965970875309715, -7.0, -2.275848610309422, -1.952335972434747, -7.0, -7.0, -3.5620548296563785, -2.4938451572530163, -3.780965029608317, -7.0, -3.472610197596045, -2.627195109792065, -3.0459094670350093, -2.0542157128256915, -2.8910194679543166, -3.92667678639669, -7.0, -2.064083435963596, -1.8723044539775622, -7.0, -3.7054930930166874, -7.0, -7.0, -3.9595183769729982, -1.5646796659208264, -2.264066972315376, -2.6131015169669127, -3.013005850015737, -3.45484486000851, -7.0, -3.9184497424011577, -1.7232240539209986, -3.252731702726023, -7.0, -2.321701969500738, -2.3073225398823136, -7.0, -7.0, -2.4376918545429205, -2.4065700586274863, -1.477724023007823, -1.7639353469873473, -1.941345766226938, -2.661602373435377, -2.781885871793446, -3.121395680707223, -2.463856586950606, -7.0, -3.13481437032046, -7.0, -2.396697391280942, -7.0, -7.0, -7.0, -2.530199698203082, -7.0, -3.368559589517835, -7.0, -3.4183289173165043, -3.1806872647181375, -3.7645497190644672, -2.05307844348342, -7.0, -2.244495414087114, -7.0, -1.4252792663679836, -1.6944512483889211, -7.0, -2.325310371711061, -2.132376137978425, -2.494502447046173, -2.650893423614602, -1.728547016499123, -7.0, -7.0, -2.7523045932010324, -7.0, -7.0, -3.27207378750001, -3.5780658838360915, -7.0, -3.208844289340738, -0.8869604866914078, -7.0, -3.2762319579218335, -7.0, -1.5181149554842737, -7.0, -2.8661691476337707, -2.9816676269911824, -2.8042943549217694, -3.1468099627758708, -7.0, -3.049024097915049, -2.383815365980431, -7.0, -3.0287745265000883, -7.0, -3.0830644414577666, -2.4035018157410506, -2.350441856535061, -3.0593740590659575, -7.0, -2.975316900589052, -7.0, -7.0, -2.93976877545335, -2.9407654356312176, -3.0595634179012676, -2.1734929735676083, -7.0, -7.0, -2.8254261177678233, -7.0, -7.0, -7.0, -7.0, -3.22219604630172, -3.1351326513767748, -7.0, -2.932980821923198, -4.602437120867181, -7.0, -7.0, -7.0, -3.893012332222442, -4.210479042645248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.660675788338524, -4.156809994461382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.020390881862707, -7.0, -7.0, -2.400537989391946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.864511081058392, -4.442194326559684, -7.0, -2.916980047320382, -7.0, -7.0, -2.789177654611687, -7.0, -7.0, -7.0, -7.0, -7.0, -4.306065647659647, -7.0, -3.6000467200622737, -3.488480208426273, -7.0, -7.0, -3.431524584187451, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7140901489905187, -4.4497868469857735, -7.0, -7.0, -3.090258052931316, -7.0, -3.7280289544205187, -2.477637964455693, -7.0, -7.0, -5.12523070148519, -7.0, -3.3439990690571615, -7.0, -7.0, -2.725269745809246, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1835545336188615, -7.0, -7.0, -7.0, -4.054091894984775, -7.0, -3.716128602823834, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5769169559652068, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9707187037201894, -7.0, -3.367169488534681, -7.0, -3.1466447454142683, -4.076021141783546, -7.0, -7.0, -7.0, -3.1420764610732848, -3.9066402697645035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.87046243158892, -4.452958827892976, -7.0, -7.0, -7.0, -4.148536553821937, -7.0, -7.0, -7.0, -7.0, -7.0, -2.819982395429594, -3.162862993321926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7255441224863532, -3.7241939195143297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8222988712623667, -7.0, -7.0, -7.0, -4.2400122882325455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3647385550553985, -7.0, -7.0, -7.0, -7.0, -4.497997933100203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9197577805018944, -7.0, -3.977952121201462, -7.0, -7.0, -4.074537365086869, -7.0, -7.0, -3.5780658838360915, -7.0, -7.0, -7.0, -2.7745169657285493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2814878879400813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1953460583484197, -7.0, -7.0, -2.782074298464784, -2.8577344348976292, -7.0, -7.0, -7.0, -3.8491121661845775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5744942682853273, -7.0, -5.013942214596968, -7.0, -2.852479993636856, -2.921686475483602, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2043913319193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.225567713439471, -3.8629756824198656, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9542425094393248, -7.0, -7.0, -3.67641923171836, -7.0, -7.0, -3.811306840081336, -7.0, -7.0, -7.0, -2.6685765035393483, -7.0, -4.056053206022728, -7.0, -4.233309231323719, -7.0, -7.0, -7.0, -3.2895889525425965, -7.0, -3.3550202683299375, -3.408833321776418, -7.0, -3.1775364999298623, -7.0, -7.0, -7.0, -7.0, -2.9400181550076634, -7.0, -7.0, -3.1408221801093106, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1152775913959014, -7.0, -7.0, -4.432696769735502, -7.0, -7.0, -4.28431791543061, -7.0, -7.0, -3.10151795524841, -7.0, -3.9522595365908204, -7.0, -7.0, -3.2692793897718984, -7.0, -7.0, -5.527332752122445, -3.866050924009275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0960405542954277, -7.0, -3.3062105081677613, -7.0, -3.3913762391696496, -7.0, -7.0, -3.3098430047160705, -2.9786369483844743, -4.856602026457208, -7.0, -4.671128276629089, -7.0, -3.786964259435733, -3.5557238881668107, -3.468716471515472, -7.0, -2.5674185056727485, -7.0, -3.5269850685599957, -2.999710373792598, -3.2374599541198688, -3.307282047033346, -7.0, -7.0, -3.3830969299490943, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8999982314291435, -7.0, -7.0, -4.293296245148464, -7.0, -7.0, -7.0, -4.711967424641027, -7.0, -7.0, -7.0, -4.578811060322582, -7.0, -7.0, -7.0, -7.0, -7.0, -4.58029758843657, -7.0, -4.37177878380567, -7.0, -4.027920136405803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.296489682285046, -7.0, -4.375370938029058, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4513258084895195, -4.181986424480151, -4.135948506676213, -3.0398105541483504, -7.0, -4.287577809078705, -3.880927865267085, -7.0, -7.0, -7.0, -4.332137884743325, -3.68761812957177, -3.481012420956573, -7.0, -4.661268293658268, -4.202597285692431, -7.0, -3.958643504540717, -3.815710539788963, -7.0, -7.0, -7.0, -7.0, -7.0, -4.21303937125096, -4.408620089323603, -5.706356715653006, -7.0, -3.680335513414563, -7.0, -4.051943183341951, -7.0, -7.0, -3.7724684030532805, -3.914210891401378, -7.0, -4.32006315959498, -3.585589628962412, -4.304985720206672, -7.0, -7.0, -3.7989957344438814, -4.295677034017465, -4.486104458535134, -2.9894498176666917, -3.7969062206302726, -4.2565445707979865, -7.0, -4.3931070242921315, -7.0, -3.2806921642851177, -7.0, -4.2934951434720245, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3881900415998545, -2.1881246066559927, -3.034427905025403, -7.0, -3.2593549273080344, -3.8634616535278656, -3.3697722885969625, -3.2833012287035497, -7.0, -2.835611313442766, -7.0, -3.31909911609709, -2.3218926347095654, -2.9434945159061026, -7.0, -3.822429623779357, -3.0, -3.1784013415337555, -7.0, -7.0, -3.2934362201313325, -7.0, -7.0, -2.9334872878487053, -2.0585344760699806, -7.0, -3.104359057505805, -7.0, -7.0, -4.595441104815296, -3.50289960722803, -4.787262056515856, -7.0, -7.0, -2.3974799238385747, -7.0, -2.367666464108184, -7.0, -2.000867721531227, -2.7154625954409997, -7.0, -7.0, -2.518137764469437, -1.5725047477662464, -3.6731131042382335, -7.0, -3.215108581053093, -2.60959440922522, -7.0, -2.246744709723841, -3.379532125886119, -7.0, -7.0, -2.380211241711606, -2.219419059683715, -7.0, -3.6658623002031554, -7.0, -7.0, -7.0, -2.305136318943639, -3.0019157039612216, -2.139091607523823, -7.0, -2.7041505168397992, -7.0, -3.842609239610562, -2.303196057420489, -7.0, -7.0, -2.1617956679336436, -2.4923412532549745, -7.0, -7.0, -2.250635230436816, -3.5154254660566715, -3.607776603741693, -3.0437551269686796, -3.126888677692568, -3.4497868469857735, -2.087929919941919, -2.641804498106114, -2.7969006863964827, -3.6530194510996132, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.321805483857539, -7.0, -3.8291622019278186, -2.828015064223977, -4.1584529606888285, -3.64205624987141, -7.0, -2.249931756634195, -7.0, -2.2692534315230697, -7.0, -2.3519792918643674, -2.7011840783065937, -3.677241845946654, -7.0, -2.323252100171687, -2.594760752586463, -3.137652964068974, -1.9929950984313414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.27669152884504, -7.0, -7.0, -7.0, -7.0, -2.9903388547876015, -2.9084850188786495, -2.8939466075520737, -7.0, -3.2594232126040716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.651873099180296, -7.0, -2.9689496809813427, -3.212453961040276, -7.0, -7.0, -7.0, -7.0, -2.8565275017950387, -7.0, -7.0, -3.1878026387184195, -2.733999286538387, -7.0, -7.0, -7.0, -7.0, -3.7243578042264267, -3.737907923374639, -3.2150424129289608, -2.7542092947359547, -7.0, -3.760271660542063, -3.0495186327171995, -3.398764385277643, -7.0, -7.0, -3.409129696282029, -2.5824559315131506, -2.6729499729544792, -3.7640266076920375, -7.0, -7.0, -3.7265642161622448, -2.7430195349869044, -3.399396792103312, -7.0, -2.594438592727116, -3.046531995970811, -7.0, -7.0, -3.721645766289746, -3.5391388535767745, -3.7939998009844706, -3.7532765701844184, -3.614686342282013, -3.7788744720027396, -7.0, -7.0, -7.0, -3.5342800052050816, -7.0, -3.419900701340701, -7.0, -3.0067104742139805, -3.7507397512353506, -3.775950081737593, -3.7373516958037145, -7.0, -3.06595298031387, -3.486076097372589, -2.119475840906798, -7.0, -2.8226764934027218, -7.0, -3.312811826212088, -3.819214799882384, -2.624144869156648, -3.5809819659626774, -2.349771556978745, -3.198264238006873, -7.0, -3.1673911880740753, -3.1815005884677596, -2.8175653695597807, -7.0, -7.0, -7.0, -3.066325925362038, -2.8888939620872947, -2.905611623054157, -7.0, -7.0, -2.6612801355233766, -7.0, -3.232021452903135, -3.1148967983141596, -7.0, -3.1773055843418603, -3.2109508249954035, -7.0, -2.7040892061201514, -7.0, -3.744214724814166, -2.2884408683559605, -2.837777769553733, -3.146128035678238, -3.719911064198339, -3.279381730613431, -3.766784515497859, -3.2012332086808746, -2.9202277114569286, -7.0, -7.0, -2.8703715256338183, -2.9179254220647413, -3.0079752466359797, -7.0, -7.0, -7.0, -3.343867921696387, -3.5592481040882538, -3.1596674343147124, -7.0, -3.277425832275861, -7.0, -7.0, -3.722057771331464, -2.897474358923155, -7.0, -3.159687479754789, -3.1986570869544226, -2.5771086551437348, -2.4257200579414895, -7.0, -3.743901550485179, -3.089198366805149, -3.7985125330313516, -2.706373359682506, -3.475235222604128, -3.721068301797159, -3.367852683427225, -3.319053982508718, -3.0054188608341708, -7.0, -3.340862563370483, -3.233179496887814, -7.0, -7.0, -7.0, -3.81051814410331, -7.0, -3.405118593299161, -3.647334060324388, -7.0, -7.0, -2.0017372877052377, -2.7775383515326832, -7.0, -7.0, -3.6715430852625737, -7.0, -7.0, -7.0, -3.033182413729195, -3.119668207244826, -2.847684807491839, -2.559136826639166, -3.0251237329568363, -2.728669353880582, -7.0, -3.491571785500985, -7.0, -7.0, -3.7938602013426697, -3.9089405210453623, -2.7822085121410036, -7.0, -7.0, -7.0, -2.995437743136134, -7.0, -3.7189996378787185, -3.82936810798882, -3.8016780590358934, -7.0, -3.3254472435942937, -3.8143142002074595, -3.5643109099606027, -3.3809946774704036, -3.8252313231999002, -2.8875469749397595, -3.2129196924327945, -7.0, -2.9428531209508777, -3.1476763242410986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9159272116971158, -3.4452148760562173, -3.3368779979381324, -7.0, -3.3047058982127653, -2.7473040474314554, -3.775756037844098, -2.939882147548364, -2.983776588036885, -3.8021577531869615, -3.8570911546735136, -7.0, -3.046625212091902, -3.189279712637177, -3.509202522331103, -7.0, -7.0, -3.976074731619874, -7.0, -3.536842408605631, -3.355962079458681, -3.7293754038488665, -3.4358443659844413, -2.479850035212238, -7.0, -2.8464608251293324, -3.282319942414035, -3.2083741645947104, -3.2684219472783616, -3.4556821645007902, -2.9355072658247128, -3.371867951531505, -7.0, -2.780077171419682, -3.16087904727443, -2.9008403154999742, -7.0, -7.0, -3.445059047392219, -3.7279477095447966, -7.0, -7.0, -7.0, -7.0, -3.414572275617945, -3.334905905779908, -3.008268884068272, -3.659928704049752, -7.0, -3.448010273039476, -3.0590330049637804, -7.0, -7.0, -7.0, -3.36579986604032, -3.3375258147321936, -7.0, -7.0, -7.0, -7.0, -3.74170298395774, -7.0, -7.0, -3.118859695409587, -3.096002916788983, -7.0, -7.0, -7.0, -3.740441644949766, -2.725614678791579, -2.8593634953716034, -7.0, -7.0, -3.9844372947960762, -3.826269219393726, -2.956728552408984, -3.0553400995441815, -7.0, -7.0, -7.0, -1.9930020488667601, -2.6054318104391205, -2.103272957302832, -3.2930677680163307, -3.795694678823433, -3.7777891874348675, -3.2643455070500926, -3.7451528950769006, -2.4143465095431558, -3.0134271270706963, -2.4795064594884484, -3.1556829873392385, -3.7686381012476144, -3.1070742314120694, -3.4657545198338777, -3.7321524180652137, -3.4958910796661877, -3.1077750894177876, -3.097373013565665, -7.0, -3.744214724814166, -3.09871293057888, -3.440436766105774, -2.7340660548499804, -3.721068301797159, -2.5886451329030864, -3.0443764119563244, -3.3153404766272883, -3.8783494222177755, -2.765600828523882, -3.2716123995984345, -2.8702661651948076, -7.0, -4.081779226767534, -7.0, -7.0, -2.8589881003426956, -3.224856655856958, -2.6212392458174656, -2.726890140741822, -3.737788791709675, -3.3525683861793083, -3.066645337841675, -3.1535709814337802, -3.621791538802892, -2.654818040490762, -7.0, -7.0, -7.0, -3.4195840447594805, -3.350441856535061, -7.0, -3.4621733047067904, -3.1696744340588068, -3.742568034366142, -3.1409477713426623, -3.7506626461340558, -2.9916690073799486, -3.7673785241141804, -3.4839437142904197, -2.673020907128896, -7.0, -3.9309150873258627, -3.067011308589492, -3.3977397844052803, -7.0, -2.7185412294947793, -3.623122005965013, -2.952873129432044, -7.0, -3.7790912038454993, -7.0, -3.0134692323091703, -3.134057516640611, -3.526511582284746, -3.5395778833453093, -7.0, -7.0, -2.631980634727735, -3.442244527847952, -7.0, -3.7704101315139065, -3.3632828442326597, -3.4470804718310024, -2.5204478015727347, -7.0, -7.0, -3.126249510323941, -3.314159553257814, -4.370383540607654, -3.654465333520146, -4.149326902872513, -3.249167772195713, -3.4900287479278442, -3.494830167764257, -2.061366019546052, -3.154697793596388, -2.6630062128618666, -3.69810054562339, -3.414342707762766, -3.787697956697124, -2.8836208828885987, -3.6392540064600425, -3.569490954348783, -2.9415753859227842, -7.0, -3.4035151549893445, -7.0, -4.0953419884146625, -3.5277955602574043, -2.8807575651270136, -3.0673436774644065, -4.117238142139819, -4.002831038473649, -4.003223501202289, -7.0, -2.5937004799072296, -3.3802112417116064, -4.020054516012569, -3.810618908484714, -4.30965145584932, -7.0, -4.228503016659257, -3.79046109860397, -3.289890477664777, -3.2615007731982804, -2.8283376000590046, -7.0, -3.370008135101853, -2.839399028578788, -3.0170681371419867, -2.792951708250132, -3.302713794348007, -3.371744956775117, -3.190012065678453, -2.6725447396234787, -3.120464247032542, -2.7614176776053556, -2.923198950972694, -2.8287507574419504, -7.0, -2.926802604741088, -4.058539897939781, -7.0, -3.264187954179907, -3.0056247565585017, -2.4040474118956006, -7.0, -2.617649653602112, -3.090878144270523, -3.9042352843723984, -3.742568034366142, -3.986368593570273, -3.2716867502389397, -2.8663239810637275, -7.0, -3.95102918525155, -2.0705391938699713, -2.8652061159153597, -7.0, -3.0684388733943915, -3.356913217543442, -2.880308304868466, -3.246301577171691, -2.1679410523362126, -3.74795530690673, -2.1916334435642377, -3.436333932581096, -7.0, -2.577096087297863, -2.86005440509186, -3.624642998257259, -3.1440352668252016, -3.751048034820188, -2.368713956878259, -3.3553269802541617, -3.389856860618742, -7.0, -7.0, -7.0, -7.0, -3.6978829086948046, -1.8830699435990796, -2.1281008870627143, -1.689971068634483, -3.2605483726369795, -2.2426460271625466, -1.4080095203436613, -2.425485914566185, -2.4506980578348374, -2.835611313442766, -7.0, -2.5804361804840066, -1.9553354391429998, -1.6578082654644928, -2.2520182138943667, -7.0, -2.7018796595988106, -1.7598631356238528, -2.221181284727327, -3.7802452838653524, -3.155336037465062, -2.554004321011903, -3.760271660542063, -2.0207378494638983, -2.437552390568762, -2.0784784602759463, -7.0, -1.3172311355441193, -3.7281913985899466, -3.735519058815171, -3.154414155554896, -2.1837010676471413, -2.631147162536491, -3.7203247174174416, -3.2769785139092744, -1.8669838821074494, -3.3014640731432996, -2.10283374010311, -7.0, -2.169168462503224, -1.6991097547853513, -7.0, -2.735119634081872, -2.7432081503806565, -2.0422922040434477, -2.4356623863120097, -2.6757019822045427, -2.1566164472925426, -2.368644417219931, -3.1607685618611283, -2.175959634723138, -2.287499106768442, -2.6559916658950637, -3.4252896164467943, -1.8947353540933787, -2.036607022607408, -3.8345478576809486, -1.6499674589621967, -7.0, -7.0, -2.898073525383819, -2.360467183515849, -2.050780311800198, -1.9577168838246266, -2.5072059920620737, -3.5065726742525136, -7.0, -3.37485828006509, -2.910700616959574, -2.0097148594798413, -2.970036776622557, -2.0719454589070714, -1.890301229948437, -2.3035444126825313, -7.0, -1.8602570494485853, -1.9812927455892713, -2.075645586232719, -3.5510228130338692, -2.103715576919223, -2.7722088296639598, -2.7080808104682315, -2.1247026428368407, -0.8404898135031628, -2.2695596400388207, -1.7387948376762659, -3.0894105109835444, -3.7267272090265724, -3.720242018287057, -3.010378489484261, -3.4081834128693056, -2.356467138669094, -2.7680116190327637, -1.6318249995296534, -3.0615781248227445, -1.6675233466792163, -2.1184190556782965, -2.3893526369799023, -1.9210138986341143, -7.0, -2.2116544005531824, -7.0, -1.9548211830517932, -1.9036560889385818, -3.6837222824514324, -7.0, -2.353378922399407, -2.9383052411083064, -1.3581579462144981, -2.866951567327725, -3.748962861256161, -3.7229628089424898, -3.0224283711854865, -3.7315887651867388, -3.7271344237604884, -3.2584776449785178, -2.4103259367461924, -3.8130469651601078, -2.9291633832050645, -3.452246574520437, -2.718501688867274, -3.13481437032046, -2.9694935689446047, -3.166800009514995, -2.675854687720147, -2.2430380486862944, -2.248722343662518, -1.9489370135764186, -2.7011154878043895, -7.0, -2.4605971888976015, -3.119997780003502, -2.5147070975462795, -2.452859335795852, -3.018534070428183, -2.181528697484242, -2.9225030280360786, -2.9198249446356317, -1.6500020632708234, -3.2725957412701385, -2.689012715585447, -3.1280760126687155, -3.2576785748691846, -2.1902071514295747, -2.8216772586543666, -2.6451414452320305, -2.5514499979728753, -3.4760341590784485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0884904701823963, -7.0, -7.0, -5.204136268393641, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3344135368371, -7.0, -7.0, -7.0, -4.4255214113236825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.839716812268482, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2083983548560875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.242417184417719, -3.8454856299390485, -7.0, -7.0, -3.3664229572259727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1746411926604483, -4.928864207465377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7723767236537498, -7.0, -7.0, -7.0, -7.0, -3.904138265829186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9942511454528664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02094105986232, -3.7126497016272113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0484029561527395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.84998264839255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.574922104783855, -7.0, -3.658774320844357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.766040860381389, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.345177616542704, -4.352471951298952, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.712786869886757, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941576025408112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6635124704151556, -7.0, -3.766710207262259, -7.0, -7.0, -7.0, -7.0, -4.009833178608563, -7.0, -3.9293167267534956, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9826781933834843, -7.0, -7.0, -3.69810054562339, -7.0, -7.0, -7.0, -7.0, -7.0, -3.424881636631067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.529167182538893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.8282744019060555, -3.8577545220594422, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.273121699701525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.500236474825639, -7.0, -7.0, -4.115643789669941, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5638369186645447, -7.0, -4.180039810927176, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8796462871127257, -4.324611653328921, -7.0, -4.076250230266718, -7.0, -4.307517431203132, -7.0, -7.0, -7.0, -4.529109391761361, -4.097048965011131, -7.0, -7.0, -7.0, -7.0, -7.0, -4.151492428425498, -7.0, -7.0, -4.186419489155475, -3.2317243833285163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.76420976835399, -7.0, -7.0, -7.0, -7.0, -4.9338768645229125, -3.9824973691977124, -7.0, -4.437750562820388, -7.0, -7.0, -7.0, -4.433609843323718, -7.0, -7.0, -7.0, -4.368825930958845, -7.0, -7.0, -4.990618524968529, -4.709470662693623, -7.0, -7.0, -7.0, -7.0, -3.2463778783937567, -7.0, -7.0, -3.767341422368662, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.906981153228854, -7.0, -3.817703061606812, -7.0, -7.0, -3.9009825016883535, -3.331239249545775, -7.0, -5.046075494813826, -7.0, -2.4840624550927735, -7.0, -3.9893385599532865, -7.0, -7.0, -7.0, -2.5289167002776547, -7.0, -3.261069475456373, -7.0, -3.700068825769947, -2.6334684555795866, -2.621176281775035, -2.975291916582815, -2.4373541278481747, -7.0, -7.0, -2.5804361804840066, -7.0, -3.47316012696852, -3.2880255353883627, -2.1649473726218416, -7.0, -3.8178627297096406, -2.666751912411818, -3.341137638740964, -7.0, -2.8363241157067516, -3.459317082865925, -2.553883026643874, -2.4435237466871254, -3.1983821300082944, -7.0, -7.0, -2.7702453944880805, -7.0, -7.0, -3.593706862849097, -3.6956357536491224, -3.405737555618183, -7.0, -3.102605194126567, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6429341748117063, -7.0, -1.5518933818622322, -2.5585085730707764, -7.0, -2.8138668026501783, -2.8254261177678233, -1.7136105305189089, -3.035829825252828, -2.4002500911501117, -7.0, -3.9755237129603316, -3.409876790951437, -1.9746651808046278, -7.0, -7.0, -3.2533380053261065, -3.1381763395730413, -7.0, -7.0, -3.405915255308017, -7.0, -3.7032757416722104, -7.0, -2.7880504684712695, -7.0, -2.5634810853944106, -7.0, -7.0, -3.278219929091885, -7.0, -3.2830749747354715, -3.485082288055845, -1.8573324964312685, -7.0, -3.7768464086952993, -3.782973994944048, -3.1150555026762046, -7.0, -3.123873409568474, -7.0, -3.7168377232995247, -1.885361220031512, -3.3236645356081, -2.79309160017658, -2.6229044753882, -2.56702636615906, -7.0, -7.0, -3.510027684973431, -3.4220971631317103, -7.0, -3.1142772965615864, -3.484791459355562, -2.973589623427257, -3.3087777736647213, -3.2879012132617578, -2.6364878963533656, -7.0, -2.8419848045901137, -7.0, -7.0, -7.0, -3.1659364290317904, -3.3631417096979495, -7.0, -3.192846115188842, -7.0, -2.3004244091989325, -7.0, -7.0, -7.0, -2.062581984228163, -2.2405492482826, -7.0, -1.9978230807457253, -3.006822459570757, -7.0, -7.0, -7.0, -2.161368002234975, -7.0, -7.0, -7.0, -2.826722520168992, -7.0, -7.0, -7.0, -3.7444494574467986, -3.6313422864839326, -7.0, -7.0, -3.503245771465113, -7.0, -7.0, -7.0, -7.0, -7.0, -3.01717251394567, -3.0893751608160995, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6310376965367404, -7.0, -7.0, -7.0, -4.1950551387337205, -4.795184589682424, -4.317958924700952, -4.494245062612022, -3.9512750558456595, -3.2124403056987485, -3.439922795914063, -7.0, -4.099432007131712, -2.3263950637972677, -4.826974868372878, -7.0, -7.0, -3.2986515788116426, -2.487563118856403, -3.3536002754719343, -4.798802518387985, -7.0, -7.0, -4.795476804945366, -2.6832553179742296, -2.773373813613427, -7.0, -2.521985231565218, -2.2974027680604534, -3.897008193182832, -4.496279102458945, -4.494015374757144, -3.444404634409438, -3.687549540152836, -3.756290249756674, -2.1566356727947436, -3.5695253732681067, -7.0, -7.0, -4.019697730980192, -3.5046203591177894, -4.018624226973913, -3.4702567619633173, -4.79531680665612, -3.263243690843952, -4.195491445109328, -2.751431342261705, -4.194306163649559, -4.0992177915305135, -3.4844218721716147, -3.4997076973735277, -2.3868423283433025, -4.797371426606096, -4.322970043852789, -4.512837759385333, -3.32376758329678, -2.4961003641614714, -1.9809767626865695, -3.5098675725188127, -2.513954995368114, -2.951861342460453, -7.0, -3.799223343064828, -3.4683070414857493, -4.322488060518078, -4.0219675739438765, -4.499226431276069, -7.0, -4.321826183768503, -2.6883733297085577, -2.1366033236200126, -4.796241200121809, -7.0, -2.7471820510443075, -4.795226346759703, -3.3967093741958863, -3.289247845781579, -7.0, -3.856171486902885, -2.961686186921197, -4.7958244240923475, -3.1736537289204207, -7.0, -4.4959673257948305, -2.058357342596415, -3.851930678640268, -4.195304510332836, -7.0, -3.3958033777212555, -4.1000326290916975, -3.2107932280693396, -3.5852748953242775, -3.658393026279124, -4.502747942346888, -2.268350538181473, -3.4173853239538325, -2.8674674878590514, -4.7956715059460215, -7.0, -4.111255790782233, -3.5031230720768396, -3.6945444541986068, -3.370645242623348, -4.796546581877668, -3.257518584268037, -4.021216872447421, -7.0, -7.0, -2.8393926115935413, -4.795476804945366, -3.8083865463958886, -3.523363056347348, -2.654756567983414, -2.197454784251053, -4.196424913949195, -3.6206980868786585, -3.801019329998165, -3.7227709888066567, -1.9101034484834232, -2.1554547095577474, -3.11311433972209, -3.903781592845338, -3.8616206903556995, -3.4406270662633185, -4.499033775408696, -3.2319846838805257, -2.651175185897296, -4.497420372448701, -3.723992130319009, -4.798774909075712, -2.7015245409453135, -3.8468386188677917, -3.5321976642124797, -3.6432354749403233, -4.193847819973557, -7.0, -1.70009092165823, -2.979019176102845, -7.0, -7.0, -3.104140450597083, -7.0, -7.0, -7.0, -4.193910349874993, -4.795108024611571, -2.674711087015539, -2.797351686984816, -3.0960548217598056, -3.7105794809614463, -7.0, -3.611498388544544, -7.0, -4.495690002957289, -3.801520329527164, -3.2737845225610633, -2.9606863649414112, -4.795149789050817, -4.797087413265331, -4.197121977222839, -2.4972910932956123, -7.0, -4.3176873404861835, -7.0, -4.024198232206868, -7.0, -3.848182272264775, -3.28474510325095, -3.6329429444376293, -3.4859308862166265, -3.8047049422008414, -2.8914560170811243, -3.341024973759354, -4.0991486671778645, -1.9956480250981299, -3.71821095473187, -4.795135868017322, -7.0, -4.0212513367076275, -3.894039000804609, -4.319633418942298, -4.795358551023385, -2.859169259280036, -4.797205197435356, -2.8318160223023767, -4.795344636680122, -3.713316040684306, -1.9587220825148883, -3.6236144956512026, -2.972033255790299, -3.093263058089709, -3.339684409858061, -3.1449124695489097, -3.761736537321043, -3.2022566678949334, -3.9562576411013985, -3.4050251743409166, -3.7794915448471396, -4.797952728164908, -4.045114258618323, -7.0, -3.8962383070652464, -3.1518735616556226, -3.84464800191945, -4.796380036631384, -1.8934722806395246, -4.795045370421125, -1.8264516538547082, -2.9052491234718767, -2.9272676808108815, -2.957364336755806, -3.5426387273151625, -2.7824338841919594, -3.275480729561276, -7.0, -2.904512682924551, -2.188139451818331, -2.60677324209835, -7.0, -4.494015374757144, -4.496147490722734, -4.193493313706491, -7.0, -4.496749807394558, -7.0, -4.798415828201429, -2.9527303663895785, -3.2612562584760996, -2.8945468126404026, -2.6544096723290584, -7.0, -3.621169355173038, -3.62202049941778, -3.5222451276547213, -7.0, -4.796012022802761, -3.765214587179864, -3.689650312464508, -3.6572607893053757, -7.0, -7.0, -4.0970003368669365, -3.5924612881106253, -4.317736098878416, -4.494836124034309, -3.6278299485495435, -1.836016424279723, -4.794940926679733, -4.795226346759703, -7.0, -4.319529385513524, -2.985419564562094, -3.1749385054686314, -4.7948294923299635, -4.3221089837143, -2.793764282125484, -3.8048138715442734, -3.790975697775765, -3.1448282738585607, -4.026117701022133, -7.0, -7.0, -1.6729151549139654, -3.5271752239289236, -2.488796268163124, -3.757872028479324, -2.6986085824733417, -4.499047539376685, -4.7967962800566575, -4.194992773454235, -1.997850861270173, -3.3814503138271546, -2.5461004834142376, -3.2583395325646, -3.7238470364005316, -3.311138373930121, -4.196970236939209, -4.017735715616553, -4.102934262243328, -3.4311492447760616, -3.1866469562045387, -7.0, -3.717677436128305, -3.847723429663294, -3.7552510186268915, -2.7121635957440384, -4.795010558631446, -3.329540247656664, -2.8781201029720007, -3.687426051894165, -3.1379934577865467, -2.824077854285757, -2.4723159962011216, -2.7246885128491662, -4.31909911609709, -2.940409365458403, -4.096743211899143, -4.197590657733156, -3.355517574528589, -3.2024542587546296, -2.770459251514174, -3.150489469216031, -3.276085047995312, -3.659019262122172, -2.8358507120379075, -3.302256501206462, -2.471170466488659, -2.871478775477452, -7.0, -7.0, -4.794669255342644, -3.750823266316629, -3.0199400975188997, -4.320395570236469, -3.7194072542466587, -3.605318516604717, -4.495821753385906, -3.575778550967052, -4.019365574572488, -3.061530470374447, -4.197011625911117, -4.10176768870149, -3.056017227469607, -4.197011625911117, -3.20194306340165, -3.1226190995465233, -2.6455801819214715, -4.322026232058189, -2.802652263093126, -2.462887260857094, -3.052975943015183, -7.0, -3.4019447911096794, -7.0, -3.0823464673160794, -3.1077026245929917, -3.5718899117990004, -3.5274806564486534, -4.318327728670159, -7.0, -3.165062128728178, -4.796941871056464, -4.798795616224465, -3.6852868861271264, -3.4993793811041045, -3.7972467606932976, -2.1002388609194944, -7.0, -7.0, -2.401257981304848, -2.6008899920160955, -3.729968894052408, -2.938677698315028, -3.3143499273401513, -2.260934510790345, -2.9063099793656395, -3.1000688469589184, -2.0474673297290966, -2.5047157113257805, -3.299916512376326, -3.1501633583189568, -2.844522913823384, -2.8603946675787126, -1.7942502416106776, -3.5585311860973574, -2.7933752425966887, -1.675383716331126, -3.4461367166026426, -2.9023039620608135, -3.7381130180022746, -2.8201260797803505, -2.76882167592319, -2.4632874084964818, -3.474857031317561, -3.429043414844925, -2.9510581008223427, -3.369108985997604, -7.0, -2.216836286104777, -3.0966707291567483, -3.0473583240315048, -2.4996186230269615, -3.043513847574348, -3.236530453031208, -3.0693861561522637, -3.1335451697795484, -2.967919314432321, -3.1547394712862498, -2.611245003078948, -3.5211036582367834, -2.5900861226739664, -2.0270631939449606, -2.917399217307005, -3.479823878409032, -2.9555884130934214, -3.765864901136174, -2.487714328217087, -2.5771329918429693, -2.3092797016404227, -0.9327696000728138, -2.337613269461743, -1.9751876306754927, -3.723701893991268, -2.445300606978883, -3.6317417368754, -4.318835191727664, -3.7919329546000036, -2.3025248099237756, -2.3264346547815506, -2.366711037235561, -2.0522754028118952, -2.2572806664127243, -3.001880164887663, -3.796740803977907, -2.60784062997041, -3.3199245800341806, -1.9249605003446761, -3.5765972691771957, -3.0521000423687106, -2.395121957146396, -1.8379213235574254, -4.1933055166998825, -2.3223303532901833, -2.3198753769375866, -2.022161631575954, -3.1653432655224587, -2.6487892135944495, -3.630173529786771, -1.9197028858240717, -3.0165920641827304, -4.79927850295274, -2.050429939315604, -1.852576756016548, -4.339378555872695, -2.1047566320349174, -3.350088729351078, -2.998047874277389, -2.478852407969493, -3.0918320976941964, -3.540718677399603, -4.318125969073185, -4.493695000988786, -3.3330370740447055, -3.224099069292356, -1.8089182124058005, -2.5216419609600518, -1.7887705714663293, -3.620177711918963, -2.849583190354663, -1.3696800207907336, -3.0153867999328026, -2.714172956272963, -3.31909911609709, -1.9553354391429998, -3.47316012696852, -7.0, -2.05482190018818, -2.911060711264808, -2.690938586205463, -2.159902929311491, -1.6736634719517163, -2.369169785054117, -3.2813708599038294, -3.7981117584734614, -2.5133527289221607, -3.0573479242379045, -1.9766408215681843, -2.8073915104764544, -2.213975951766273, -3.396464377702049, -1.9256484258513418, -3.591287265058499, -4.194146492730399, -2.292411841023868, -1.3630551204315158, -1.8095524510925622, -4.493903967206503, -2.6722799280279195, -1.9284311273607093, -2.0189165076565057, -2.206575032733398, -4.794648350506729, -2.4344312381751503, -1.6443702746331539, -3.7538197430218148, -3.6200527290943953, -3.0368115269308613, -2.3289736002463024, -2.459576027555685, -2.9776751167547753, -2.8248312077777618, -2.536033815546728, -3.436701808477978, -2.3879804323128875, -2.354206346938359, -1.7251131088741447, -3.7161355606084956, -2.1055472807534796, -2.1801731188663362, -3.1617762377172385, -2.3211349422448873, -3.519109214749844, -3.1425146049993744, -1.8938785493174628, -2.6141076142372945, -1.1855364761020941, -2.2232796748825896, -2.463388589573727, -3.5723589989833546, -3.594240575973108, -2.7066672175675204, -3.43610039301166, -1.5224876590191092, -2.466108443220432, -2.208055890576209, -2.000863828451263, -2.8515606482504188, -4.493924858299271, -1.8720024944383251, -1.6923392945564069, -2.072350177271125, -3.2887842587243155, -1.6243973159395524, -2.709740945168942, -2.935339292710299, -2.9812006288632373, -1.629136988000415, -2.537103861234642, -2.34499385193559, -2.836124511281903, -3.7953655080278454, -3.840586982890639, -2.5720744624304026, -2.9977827887044515, -2.8162551132098277, -3.0111204844541164, -1.5001926955968021, -3.0498026747855222, -1.9804532507909565, -1.6689104123448641, -2.151177176389977, -2.2249155731390533, -3.475802584198905, -2.51372545859298, -4.49391789471334, -2.1295437254991, -1.8915327727519662, -3.0244400557176196, -4.317986769891909, -2.6688448027085734, -3.295133963911634, -1.2168557349039093, -3.117568183066225, -3.5184308133618134, -4.318021573870186, -3.6188078830935138, -3.7165736764711426, -3.7539936932143556, -3.494988973683168, -2.721938362035024, -2.233874094776021, -3.1616265959265073, -3.435802833862011, -3.2666259282807415, -3.4951139924860954, -3.334599323559856, -3.4565799526055105, -2.8378450212522504, -2.4652809689598794, -2.674305772490644, -1.6582085612684359, -2.339545308873615, -2.2446078253972623, -3.057735242568242, -4.193034110911296, -2.831643187009035, -3.253601050494452, -4.095741057659923, -1.5689077665521831, -3.1754013550473683, -3.2670336159890963, -2.21625344740169, -2.7223304252478906, -1.8210315087287055, -3.5403155682447576, -3.380892771727473, -2.5771993708172927, -3.5910924455241147, -1.851762744123039, -2.8674948950584738, -3.8968498887351135, -4.493660163508368, -3.6127838567197355, -3.5816083660320572, -7.0, -3.5833121519830775, -3.300704152596124, -3.1049136848482157, -3.379668034033654, -3.6027109449575576, -3.1547282074401557, -3.1267167672610237, -3.454895651714539, -7.0, -7.0, -2.787529031094406, -2.8153341918009738, -3.192381579384681, -3.6372895476781744, -7.0, -3.5969268143429707, -7.0, -2.5413711986818104, -3.2659963704950794, -3.5737995822157407, -3.301192825565996, -2.970664845450082, -7.0, -7.0, -3.278296208091274, -2.7811168235623858, -3.199480914862356, -3.62283547952152, -3.470150302299499, -2.8779469516291885, -7.0, -7.0, -3.3230457354817013, -3.4292676664331685, -3.130440988463926, -3.1082266563749283, -3.5837653682849995, -3.752125307297898, -7.0, -3.498341190767632, -3.299942900022767, -3.151574127994361, -2.8962111688853125, -7.0, -1.8437747597848402, -7.0, -7.0, -7.0, -2.7676196082318536, -3.7096938697277917, -2.573638156762303, -3.089551882886454, -2.3122543112520475, -3.0269416279590295, -7.0, -3.343900712249606, -3.486430478854434, -7.0, -3.656960182742849, -7.0, -7.0, -2.8606374167737547, -2.264879931623429, -2.875323139822814, -3.598571663482141, -7.0, -2.33527212215128, -7.0, -3.1646997561706938, -3.0385633951393607, -3.5949447366950835, -2.9364419285916847, -3.3229377518009224, -3.591954555046735, -3.1486797599073886, -3.5739154404215507, -3.610553705317095, -1.7478578905540405, -3.1323397511926045, -3.0138900603284386, -7.0, -2.673020907128896, -3.640978057358332, -2.8107028609471167, -2.756382505621472, -2.714329759745233, -7.0, -2.61462290914302, -2.7535830588929064, -2.475418507891467, -7.0, -7.0, -3.7798128631705805, -3.4111144185509046, -2.983099823925019, -2.9024863809435577, -3.6033609243483804, -2.861434836289783, -7.0, -7.0, -7.0, -2.3391772005636295, -7.0, -2.804971921794919, -2.7306028522050876, -2.3351425609414833, -2.3788479304282237, -7.0, -3.6101276130759956, -3.1925674533365456, -3.6828667956623247, -2.9781332725009353, -3.1762842359448387, -7.0, -3.043283665570575, -2.9914159588764146, -2.929021350145649, -3.354204511370313, -3.4164740791002206, -3.007805620305211, -7.0, -3.4103131758945273, -7.0, -3.72964214883219, -3.670709595223797, -3.0106532426610046, -3.8698768132667665, -7.0, -7.0, -1.8153973017930358, -2.498655095245119, -7.0, -7.0, -3.2800252325377413, -7.0, -7.0, -7.0, -3.5949447366950835, -7.0, -2.5896393688088346, -2.4466574036419377, -2.6534599045435847, -2.8714137075030672, -7.0, -4.03909671044145, -7.0, -7.0, -3.6767850304192056, -7.0, -3.157543108985783, -7.0, -7.0, -3.342126469955725, -2.90880431953092, -3.5833121519830775, -3.5758803156806462, -3.7227161674884948, -3.2095150145426308, -3.595496221825574, -3.211031500871904, -3.402175375031505, -3.1658376246901283, -3.282017561561504, -3.2399664702073565, -2.7811966938121566, -3.0050946750725487, -3.0254082811317473, -3.2751915932865505, -3.0159881053841304, -7.0, -7.0, -3.646893624167745, -7.0, -7.0, -7.0, -3.291294833496669, -7.0, -3.505750595352085, -7.0, -2.934750874663579, -2.65470822726565, -7.0, -3.909983694939844, -2.6009728956867484, -3.386409778881913, -3.75785134368558, -3.220456778931451, -2.674610658476574, -7.0, -2.9986080293150947, -3.8830933585756897, -3.3235614634628665, -7.0, -7.0, -3.4878098101815893, -3.1252372114756253, -3.324436797945258, -3.600755149639618, -2.750194009703799, -7.0, -3.3562649403160907, -3.6315452278343097, -2.919862253555538, -7.0, -3.3264382767957286, -2.834078180834267, -3.446770095200388, -7.0, -2.4583356259919475, -3.9392029844167507, -2.764342210588111, -7.0, -7.0, -3.1357685145678222, -7.0, -7.0, -7.0, -7.0, -7.0, -3.459392487759231, -2.3906306168140334, -2.8846409115206195, -3.4876277826957134, -7.0, -3.1397741716810974, -2.850850368903348, -7.0, -7.0, -3.5949447366950835, -3.4390957413017493, -3.004493337547274, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7085908451503435, -3.202550451648127, -7.0, -3.5822906827189938, -7.0, -7.0, -3.6432552250247716, -3.636588183729842, -7.0, -3.342620042553348, -3.1339644786952103, -3.417554724363455, -3.070037866607755, -2.9157954276020663, -7.0, -7.0, -7.0, -1.743161629859857, -2.9546444479056855, -2.4965342957637975, -3.6459132750338443, -3.5922243573975843, -7.0, -7.0, -7.0, -3.274388795550379, -2.644635503768153, -2.228414422871205, -2.651889840089335, -3.107972707737791, -2.4866075612144423, -2.7366952259948767, -7.0, -3.379758615842701, -2.713770462202507, -2.5002653709620417, -7.0, -7.0, -2.9828137621318627, -7.0, -3.7038929536325447, -7.0, -3.44271488292848, -3.0313350044270404, -7.0, -3.4832305869021027, -3.3944516808262164, -3.2177595992418233, -2.4216822557512594, -7.0, -4.054498146636677, -3.591064607026499, -7.0, -2.778332168729065, -3.242624237809914, -2.8614992695002854, -2.8613352388849425, -3.02123525372655, -3.0238283925348863, -2.7456602257060756, -3.1502189941321563, -3.716461809044155, -2.3660979777088698, -7.0, -7.0, -7.0, -3.479191276121532, -2.510778063328332, -7.0, -7.0, -2.6572029965081487, -3.1307624896373274, -3.2593549273080344, -7.0, -2.488028162614872, -3.3405432575141942, -3.3640817414110704, -2.5950899322706067, -2.795482766475396, -3.9736819185039836, -2.8292096066377024, -3.6543391188817833, -7.0, -2.5152341673470433, -3.617234290359394, -3.014333825736173, -7.0, -3.054708787938054, -3.601951404133522, -2.5748026613264443, -2.8946390783050586, -3.634275694625944, -2.891139058890472, -3.586362223307866, -7.0, -2.6512034378011884, -3.6094876898532853, -7.0, -3.043165720207454, -3.2879695948354546, -3.0133639615579817, -2.457310962806848, -7.0, -7.0, -3.727470088712329, -3.8926440828856643, -4.342284474225749, -7.0, -4.73996769675951, -3.31635750347846, -4.03734680356809, -3.450002630173186, -2.995113947880977, -3.63086838754785, -3.2615602289423533, -4.0697790608815145, -3.8425702387141323, -4.01203958337256, -3.154812096658478, -4.091385542078368, -3.7489972662694018, -3.0696431011141416, -7.0, -3.3775430081774003, -7.0, -4.279882704201669, -4.34519723192998, -3.5310723014339627, -3.5069377582913672, -4.3932241163612975, -4.688997903106314, -3.794185864065302, -7.0, -2.971047256283564, -7.0, -3.928489734390515, -4.086306430529356, -3.9760976755658817, -7.0, -4.18904090790901, -7.0, -3.5977911368585116, -3.793138220806962, -2.732589873839353, -3.354588587877241, -3.301880379744083, -2.5051463299974426, -2.5934047537390925, -2.8534769715870274, -3.350159881452703, -2.9017695878361724, -3.1226229161409838, -2.6708089041495477, -2.5525330271673186, -3.376661168894394, -3.1923846271401124, -2.8635692587023267, -3.694956002249818, -2.6101205079956773, -2.8515640822634887, -3.594503043820089, -3.6795187436957892, -3.2539999289782684, -2.8217863778714993, -7.0, -2.5741259734216677, -2.9004987767588752, -4.204074175744145, -3.307067950661298, -3.4375920322539613, -3.617210094557434, -2.6534315872359553, -7.0, -4.180547512138109, -3.4056024552093134, -3.2180538557946807, -7.0, -2.922689672356959, -3.2783391091415632, -3.0271184662702364, -2.962606072924127, -2.4658265977646407, -2.987129767659897, -2.821508245755972, -2.840797177614897, -2.944383957640844, -2.4599012485521397, -2.766157140465059, -3.842546836495015, -3.4042973855837975, -7.0, -2.6825662250351265, -2.925401353528513, -3.5850280996750423, -3.5983527098692836, -7.0, -7.0, -7.0, -7.0, -1.8790904415064849, -1.6221168399989923, -1.0402631800172553, -3.6020599913279625, -2.8739015978644615, -2.0640050001968224, -2.8060291511027384, -2.119997780003502, -2.3218926347095654, -1.6578082654644928, -3.2880255353883627, -2.05482190018818, -7.0, -2.096194114724361, -3.739018245883481, -3.0464431343260316, -2.5868283338973868, -1.9674253901773011, -3.6588695922019623, -3.327767489902729, -2.1647775936979032, -3.6322547766847135, -2.297561567219382, -2.3861166079483445, -1.5386094401174262, -7.0, -2.1741567592784814, -7.0, -3.5986810989071634, -3.552303109338354, -2.270849066453705, -2.712346599731528, -3.577721524509021, -7.0, -1.4609288261682685, -3.6570558528571038, -1.4348821563488658, -7.0, -1.5989467559038193, -1.3800556005286617, -7.0, -2.9002578584377776, -3.1572300416963417, -1.4740281763808496, -2.79550569467443, -2.5458223549672385, -2.526683818845363, -1.3993516938589772, -7.0, -1.283374781838098, -2.00941689881391, -3.073901558314207, -7.0, -1.278331409265105, -1.3830628243918157, -7.0, -2.3001200546170666, -7.0, -7.0, -3.1460892576540234, -1.914627900385701, -1.7928881963339756, -1.334118518033627, -2.325672585645238, -3.092281919036219, -7.0, -4.016657344822202, -2.7229422608370752, -2.2377618169642237, -3.1394592753662236, -1.4472427799973624, -0.9118308708506876, -2.983896791326306, -3.2768063456287626, -1.1743423508074868, -1.8841649089154773, -2.020952883995018, -2.8474955403490654, -1.9143998300983032, -2.4309439531239745, -2.6629565479888173, -2.350801612394977, -1.7271583656818212, -2.783958521961391, -2.83803909146875, -3.6703386411274423, -3.586587304671755, -7.0, -3.377157176891517, -3.4921315335815697, -1.6653893141043976, -2.789298611159441, -2.3384564936046046, -2.62085647728201, -2.8027737252919755, -2.2424456838620324, -3.119915410257991, -1.2465238312090121, -7.0, -1.7200712915540184, -7.0, -1.3735696006624911, -1.6468822374664192, -7.0, -7.0, -1.9368429437934995, -2.515590022016421, -1.6214444276157096, -2.226798122683141, -7.0, -7.0, -3.102548038835058, -7.0, -2.984414787243434, -3.2979792441593623, -2.7537632453831598, -7.0, -3.027920136405803, -2.776701183988411, -3.6337713460825554, -2.4846283111753045, -2.249889274536743, -3.1668246580284043, -2.671584203846386, -1.6763418117264048, -2.186903386714175, -1.9056857651335304, -2.5776832455012926, -3.5936736569452488, -2.556503516499598, -2.880927865267085, -2.268863871489262, -2.420368379857524, -3.2734642726213465, -2.208456496827347, -2.3384564936046046, -2.4909612378520922, -2.07832497394727, -3.0013730929411464, -2.72709742001302, -2.6873059601920692, -2.6421346345582744, -2.2807196273157855, -2.6807886115066824, -2.74707871738161, -2.0876039736878083, -3.353627758985543, -3.272421826371504, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9894498176666917, -3.2177470732627937, -7.0, -7.0, -4.4271099688460005, -7.0, -7.0, -7.0, -3.9008857870767155, -3.5188822759238745, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1965906541173066, -7.0, -7.0, -3.2095150145426308, -3.7867048864389106, -7.0, -7.0, -7.0, -3.363235804483694, -7.0, -7.0, -4.566207614748667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.00774777800074, -4.23895202975007, -7.0, -7.0, -7.0, -7.0, -2.963598962597241, -7.0, -7.0, -7.0, -3.1914510144648953, -3.296665190261531, -3.654235385382136, -7.0, -3.1378286637565806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6374897295125104, -2.921686475483602, -7.0, -7.0, -3.439332693830263, -7.0, -3.449478399187365, -2.750411959970989, -7.0, -7.0, -4.281023622310831, -7.0, -7.0, -7.0, -7.0, -2.7416579991601333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0109356647043852, -7.0, -3.5679975423604118, -3.0883723751492, -3.727907081406697, -7.0, -7.0, -7.0, -3.303412070596742, -7.0, -3.608632989490037, -7.0, -4.156700552582017, -7.0, -7.0, -7.0, -3.9838066419784153, -7.0, -7.0, -7.0, -3.6527296960692475, -3.6831551478893028, -7.0, -7.0, -3.1855421548543754, -7.0, -3.5436246604609187, -2.6554585929400747, -7.0, -3.3778524190067545, -3.5717088318086874, -3.3533390953113047, -7.0, -4.1798389280231865, -4.057156212228546, -7.0, -7.0, -7.0, -4.994945918272672, -7.0, -3.479143247978613, -7.0, -7.0, -7.0, -2.7846821175426015, -7.0, -7.0, -7.0, -3.7699862407512437, -7.0, -7.0, -7.0, -2.8976270912904414, -7.0, -3.2596336913699937, -7.0, -3.4618885263439725, -3.7038070652743285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.84060787900929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2352758766870524, -7.0, -3.239549720840473, -3.2801228963023075, -7.0, -7.0, -7.0, -7.0, -7.0, -3.042181594515766, -3.9612495778051544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6333169310742743, -7.0, -3.8083010194685842, -7.0, -7.0, -3.6909795692123, -7.0, -3.697490887171057, -3.6097011023793995, -7.0, -7.0, -3.265525335219074, -3.3170181010481117, -7.0, -7.0, -7.0, -7.0, -3.6856521841155243, -7.0, -7.0, -3.3420276880874717, -7.0, -7.0, -3.781575877033917, -7.0, -7.0, -7.0, -2.966610986681934, -7.0, -7.0, -2.5533519651097434, -2.689131197234498, -7.0, -3.4214393902200495, -3.883396425218766, -3.8663464227496016, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0199466816788423, -7.0, -7.0, -3.4459672607227367, -7.0, -3.8376831142120307, -4.457858357099747, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8976270912904414, -3.371806458507416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7394141026986953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4960296990359896, -3.5289167002776547, -7.0, -7.0, -7.0, -2.813393320802116, -3.3560258571931225, -3.39039253072292, -7.0, -4.411830069000477, -7.0, -7.0, -7.0, -3.3991543339582164, -3.4559862390673195, -2.6070818778952654, -3.733598460961339, -7.0, -7.0, -3.0906107078284064, -7.0, -7.0, -3.4892551683692608, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.638289535414257, -7.0, -7.0, -7.0, -3.956427776718407, -3.6034150454129286, -7.0, -7.0, -2.5757649805367193, -7.0, -3.61066016308988, -3.3230457354817013, -3.4885977155245587, -3.5328817194073974, -7.0, -7.0, -3.5512059437479064, -7.0, -4.682403615511475, -7.0, -7.0, -7.0, -7.0, -7.0, -3.638988159343682, -7.0, -7.0, -7.0, -7.0, -3.3636119798921444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.381181288265895, -4.089940418498635, -4.644963688854928, -7.0, -3.8067902715840667, -4.32054091992458, -7.0, -7.0, -7.0, -7.0, -7.0, -3.321391278311689, -3.7382254481425052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.660770643527697, -7.0, -7.0, -3.898439945099348, -4.77340608801514, -7.0, -7.0, -7.0, -3.899619900298734, -7.0, -4.291779415420275, -3.538824988937904, -3.6848453616444123, -3.1421808211559457, -7.0, -7.0, -4.396539324126, -3.5041195694658587, -7.0, -4.675457541641209, -3.6930023482613774, -7.0, -3.839310414647268, -3.5968169359155904, -7.0, -7.0, -4.057361762985039, -4.111564935454498, -7.0, -7.0, -7.0, -3.383456296524753, -3.629409599102719, -3.049665211124215, -4.377979759421654, -4.327440676242755, -7.0, -7.0, -4.090222771686575, -7.0, -4.455697373286557, -3.888993384102904, -3.7709045864841553, -7.0, -4.672107098145544, -3.8114334945608093, -3.5958267770732233, -3.1969127457115927, -4.332640410387462, -7.0, -4.235939821784239, -3.5240064455573727, -3.2189291850880872, -3.9672514815286246, -3.9635753487276815, -4.080229524884867, -7.0, -3.74126193189077, -7.0, -7.0, -7.0, -3.5983162068659507, -3.383456296524753, -7.0, -3.9132220320428264, -4.126446234651181, -5.40556917139356, -7.0, -7.0, -7.0, -3.5583052812817852, -7.0, -5.40571679555144, -7.0, -4.222794481113707, -7.0, -3.8487636892493367, -4.435462120559821, -4.307032257669135, -3.6241789257480224, -3.742122617525653, -7.0, -3.668714720098945, -4.189083059462634, -7.0, -3.7139695888931765, -3.5949879216683773, -7.0, -4.648952979124083, -7.0, -3.6133131614554594, -4.132963726130726, -3.998695158311656, -7.0, -7.0, -7.0, -7.0, -3.7293268096468606, -2.3474778602483877, -2.6924944075030846, -2.2818568360599505, -2.3268476989159903, -1.8974156013997738, -2.776681555302868, -1.8905734295699475, -2.8656960599160706, -2.9434945159061026, -2.2520182138943667, -2.1649473726218416, -2.911060711264808, -2.096194114724361, -7.0, -7.0, -2.8305245140972586, -2.314250365062644, -2.4756711883244296, -7.0, -2.743901550485179, -2.325062476619459, -3.0580462303952816, -2.1931245983544616, -2.454191294073423, -2.315105585855791, -7.0, -2.4039570705665243, -2.5628873812938795, -2.9159272116971158, -3.5569709750138014, -3.107786733638018, -2.907411360774586, -2.8041394323353503, -2.8683504996479683, -2.363166473460289, -3.144574207609616, -2.0874974724042636, -7.0, -2.4788069021772885, -1.9105651195868223, -7.0, -2.0123098482203265, -2.5688719317338045, -2.2922560713564764, -2.6176118390341196, -2.560305243220961, -1.9752019622578523, -1.9664350758652838, -2.2911467617318855, -2.0293837776852097, -2.7142856308540804, -3.3546845539547285, -2.3729120029701067, -2.281870273597101, -2.3059832544437397, -7.0, -2.5159046349117986, -7.0, -7.0, -2.7291647896927698, -3.0646451447919367, -2.768761392797599, -2.181986424480151, -2.3096301674258988, -2.5563025007672873, -3.064083435963596, -3.5589484459780394, -7.0, -2.638916922653306, -2.036540182363813, -2.0402631800172553, -2.3971374932322815, -2.042181594515766, -7.0, -2.3558208239930427, -2.7388618337689525, -2.5939905188892736, -2.920123326290724, -2.7519203184537346, -2.791690649020118, -2.7079570754392517, -1.9931605754696946, -1.970306441009925, -2.3977571093297247, -2.1808033611434947, -2.227601078505448, -7.0, -7.0, -2.8571062424631903, -3.009167506240904, -2.3466788990302154, -2.1973531158873625, -2.798151698966038, -2.212377875811997, -2.6335575629523102, -3.15031424729026, -2.4719331419959465, -2.2658492268440344, -7.0, -2.4478222595857493, -7.0, -2.2425605395871684, -2.8373178216631016, -2.8564699450416704, -7.0, -2.9960736544852753, -3.167317334748176, -2.3338413910185927, -2.808210972924222, -7.0, -7.0, -2.3384564936046046, -7.0, -7.0, -2.439332693830263, -2.699370706638998, -3.2757719001649312, -3.0400086360135417, -7.0, -2.0147495769008272, -2.625826713285711, -7.0, -2.8000293592441343, -2.737987326333431, -3.1202447955463652, -2.5634810853944106, -2.9375513237160584, -3.7764832558336816, -3.3712526291249394, -1.681618065583093, -1.909823369650912, -2.9548452777274856, -7.0, -7.0, -3.270185428658033, -3.0979510709941502, -3.085290578230065, -2.548020694905531, -3.1586639808139894, -3.4382258076045296, -2.403120521175818, -7.0, -7.0, -7.0, -3.1946993054635864, -7.0, -7.0, -7.0, -7.0, -2.662521737910115, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3085644135612386, -7.0, -3.595455892992471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3240016916965534, -7.0, -7.0, -3.479719235439571, -4.054949478651154, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.159735490902105, -7.0, -7.0, -7.0, -7.0, -2.35243980157973, -7.0, -7.0, -7.0, -7.0, -7.0, -4.24261285243832, -7.0, -7.0, -7.0, -7.0, -3.460747541844197, -7.0, -3.407900540142635, -7.0, -7.0, -2.8959747323590643, -4.438779603357378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.471731651480051, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7997233564258357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.233924659610991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3098430047160705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.277265309456845, -7.0, -7.0, -4.402914482831523, -7.0, -7.0, -7.0, -7.0, -3.932084619469911, -3.102605194126567, -3.2600713879850747, -7.0, -7.0, -3.75495958772171, -7.0, -4.2122941666623515, -3.919847330372185, -7.0, -3.4430020715710614, -7.0, -4.221879149166118, -7.0, -7.0, -7.0, -7.0, -7.0, -3.63002085111341, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7814322255046484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.519827993775719, -7.0, -7.0, -7.0, -7.0, -3.590507462008583, -7.0, -3.511348515490213, -7.0, -7.0, -7.0, -3.9772875681464983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.010087846998524, -7.0, -7.0, -4.209983906602265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.122903649173324, -7.0, -3.375114684692225, -7.0, -3.4811558708280352, -7.0, -7.0, -2.374495518477478, -2.3516997004052667, -7.0, -7.0, -3.126383977482481, -2.7531743591973843, -7.0, -7.0, -3.329194415088451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.415974411376566, -4.17432152726404, -4.634945571955361, -7.0, -7.0, -7.0, -7.0, -3.2664668954402414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6642795206007728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.792881745385397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.042516447524275, -7.0, -3.7731401279444228, -7.0, -7.0, -7.0, -7.0, -7.0, -4.049528122277718, -7.0, -3.7211095747344105, -3.2163638637641165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.453776859690442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.233215107208646, -7.0, -7.0, -3.713889373212412, -7.0, -7.0, -7.0, -7.0, -7.0, -3.66133934000604, -2.2907373533959543, -2.8209891764160493, -3.675044735955893, -3.5667909123815917, -4.467548269765181, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3823773034681137, -3.42422807069598, -7.0, -7.0, -7.0, -7.0, -4.3445927865928935, -7.0, -7.0, -4.24619893571377, -3.8661100398443766, -7.0, -7.0, -7.0, -7.0, -7.0, -3.822625678774141, -7.0, -7.0, -7.0, -7.0, -3.3218054838575393, -3.3740147402919116, -7.0, -3.0637085593914173, -7.0, -4.521647949497911, -7.0, -7.0, -3.147196411326264, -4.179810222878796, -7.0, -7.0, -4.423057365614425, -3.1183343552502207, -3.473389638266334, -4.605660526371362, -4.28604083928627, -3.034949146676372, -3.7275412570285567, -7.0, -7.0, -4.702671744161752, -2.5334404683641023, -7.0, -7.0, -2.7462653713299305, -4.083645927695585, -7.0, -7.0, -4.487283351877082, -4.304705898212766, -3.94704140525522, -4.149311505907915, -7.0, -7.0, -7.0, -7.0, -3.5051785493854672, -4.197914303318418, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.221805317996549, -4.628296952067896, -7.0, -7.0, -4.594046155430341, -7.0, -7.0, -7.0, -7.0, -4.937901366175979, -7.0, -7.0, -3.8602331642145686, -4.124014878887408, -3.738428189717044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7790189719148706, -3.409087369447835, -7.0, -3.6701628893926337, -5.707601682593951, -7.0, -7.0, -7.0, -3.9619902874400648, -7.0, -7.0, -7.0, -4.2522946401444495, -7.0, -4.048325250931222, -4.453776859690442, -4.19038072865045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.473190039859534, -4.008202596193274, -7.0, -4.748149248981986, -7.0, -7.0, -4.321411997974006, -4.324611653328921, -7.0, -7.0, -7.0, -2.6837222824514324, -7.0, -3.1659928785648397, -7.0, -4.221179420598498, -7.0, -3.2141813086638207, -3.5903401790321667, -2.9773806058118346, -7.0, -7.0, -7.0, -7.0, -2.690938586205463, -3.739018245883481, -7.0, -7.0, -3.26528962586083, -2.2560337576766627, -3.174786417367337, -2.935171254603384, -7.0, -3.264463634204881, -2.2464607024231023, -2.150485541952428, -7.0, -7.0, -7.0, -3.366945663852573, -2.978864984347657, -7.0, -2.452879674925722, -3.3507359100116605, -3.291909716380065, -7.0, -0.9934804453918538, -4.000737673774033, -2.3649771503110424, -7.0, -3.2474822606770544, -7.0, -4.282939165754773, -3.271609301378832, -3.303412070596742, -2.4607822312872365, -7.0, -2.509060966110194, -7.0, -2.2565479670535487, -7.0, -1.4816585538068021, -7.0, -4.043401578910881, -2.8876428703838406, -2.6720978579357175, -7.0, -7.0, -3.5303277897780863, -3.8853894934914943, -2.5080485061997226, -2.6027109449575576, -2.621365146523349, -7.0, -2.995027215050598, -3.628695382714023, -2.6805827164277285, -3.474507639116976, -3.0665122778565954, -7.0, -3.0546130545568877, -2.4987299594058783, -2.154525408238757, -7.0, -7.0, -2.8526324579115143, -7.0, -7.0, -4.0421224759982755, -7.0, -2.096070564624839, -4.032940937780854, -7.0, -3.5319257549406173, -3.1425458840862763, -3.4820155764507117, -2.4296054845026487, -2.6097468199942533, -2.732715340349993, -7.0, -7.0, -3.6858491796159405, -2.67168698327697, -7.0, -3.3223226858740107, -3.643366302517658, -3.541953474458236, -2.995443229111311, -3.960886796912443, -2.4929073583960584, -7.0, -1.0760995692822106, -7.0, -7.0, -3.4599199557469165, -7.0, -3.3161101923368586, -7.0, -7.0, -7.0, -2.660682445518988, -3.089905111439398, -1.1095739243160885, -7.0, -7.0, -7.0, -7.0, -3.3016809492935764, -3.2843179154306097, -1.8403103790671382, -7.0, -7.0, -3.3677285460869766, -7.0, -7.0, -7.0, -3.3560258571931225, -7.0, -7.0, -3.8509830043868534, -3.2519422417990267, -2.621176281775035, -7.0, -7.0, -3.6798819421128623, -7.0, -7.0, -3.5166279077623535, -7.0, -7.0, -7.0, -2.829089253448099, -3.115388593181018, -3.287129620719111, -7.0, -7.0, -7.0, -3.069446083880313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8469862125758914, -7.0, -4.132099521916504, -2.40236142856909, -7.0, -7.0, -7.0, -4.452292561617729, -3.9842271789283203, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0593740590659575, -7.0, -7.0, -2.486481081182706, -3.263685654331817, -7.0, -7.0, -7.0, -7.0, -4.14674801363064, -7.0, -4.031716401140356, -7.0, -7.0, -7.0, -4.129593228367933, -7.0, -7.0, -3.5933968423002067, -7.0, -7.0, -3.650825388129239, -4.334175046895992, -7.0, -7.0, -3.567761337534174, -7.0, -3.1890051397458556, -7.0, -7.0, -7.0, -7.0, -3.379668034033654, -2.2102621819656822, -2.806575635021643, -4.3151933756957135, -3.5763643890897483, -7.0, -7.0, -7.0, -3.136974095757829, -7.0, -7.0, -7.0, -7.0, -3.3096301674258988, -3.83312585370862, -3.4224913492099662, -7.0, -3.8796692056320534, -7.0, -7.0, -7.0, -7.0, -7.0, -4.050697945784732, -7.0, -2.603056550608781, -7.0, -7.0, -3.7023228111611077, -7.0, -3.82610721152752, -4.11541079013392, -3.073295267524642, -3.657629431388952, -3.896250562461638, -7.0, -7.0, -7.0, -2.761746516558966, -3.3612150119217006, -3.1870504506422686, -4.119024820114783, -7.0, -7.0, -2.8568798705623637, -7.0, -7.0, -7.0, -7.0, -4.136625455760932, -7.0, -4.116275587580544, -2.141240010315327, -7.0, -7.0, -7.0, -4.22806655265797, -3.306925161088451, -7.0, -3.5229655954919865, -3.4451992957056476, -7.0, -3.0221454662121063, -3.0243277596576124, -7.0, -7.0, -4.207957342972937, -7.0, -3.6623170194385057, -3.485500596100668, -2.2796580981362657, -7.0, -7.0, -7.0, -3.598950661412175, -7.0, -4.188253327026504, -3.0172420845476458, -7.0, -7.0, -2.8039923566354417, -4.193402903062418, -7.0, -7.0, -3.710709565724337, -7.0, -7.0, -7.0, -4.120639728415567, -7.0, -3.5895959185665633, -3.954121855324949, -7.0, -3.543074235033532, -7.0, -7.0, -7.0, -7.0, -4.146686055647526, -3.6813859780807774, -3.985381560231997, -7.0, -7.0, -7.0, -3.721911325425833, -7.0, -7.0, -7.0, -7.0, -7.0, -4.150695051142714, -7.0, -7.0, -7.0, -7.0, -4.3048565939970285, -7.0, -7.0, -2.108182553886976, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1144683064163274, -7.0, -4.501196242027088, -7.0, -4.252610340567373, -1.8147899877143951, -2.5026176418045107, -2.1856281472511823, -2.3265220536355278, -2.61687690940715, -2.571563266370119, -7.0, -7.0, -4.145755623637207, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3338904116161245, -4.164650215934297, -7.0, -7.0, -4.389325591817493, -7.0, -3.485437481076301, -4.131875187972593, -7.0, -7.0, -7.0, -4.259187582942805, -7.0, -7.0, -7.0, -0.8339791677991037, -2.0631411665497734, -7.0, -4.116109414063344, -2.949194774237982, -4.118661462854496, -7.0, -3.82791825674535, -7.0, -7.0, -1.8417377870110583, -3.915135906622012, -3.0369447882289555, -3.8257152717519975, -7.0, -7.0, -7.0, -3.843793198325913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6687809505328624, -7.0, -7.0, -7.0, -7.0, -4.135609636028679, -3.832381160247041, -7.0, -4.135800283302111, -7.0, -4.161368002234974, -3.794185864065302, -2.034254941351962, -3.0788795478889806, -4.11882666293329, -7.0, -3.1067791154359465, -2.573466689278932, -2.6039745230837372, -7.0, -2.8509932054387264, -7.0, -7.0, -3.824646414718352, -7.0, -7.0, -3.3831568450325724, -3.949999542859922, -7.0, -7.0, -7.0, -7.0, -7.0, -3.344813169678549, -4.185117001142592, -7.0, -7.0, -4.14863349848935, -7.0, -3.6788217632521745, -7.0, -3.6933751510251853, -2.316032659035029, -7.0, -4.186221536270829, -3.6759310203474467, -2.976582156824352, -3.708272143674309, -7.0, -3.902234126966771, -7.0, -7.0, -7.0, -2.728924648972301, -1.5726392970428134, -2.389636684288985, -7.0, -7.0, -7.0, -3.696705780933917, -2.664337629065647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.181700704415961, -7.0, -3.866877814337499, -7.0, -4.246129125663436, -7.0, -4.142827294538336, -7.0, -3.8340390181594666, -4.450110481575011, -3.790120894105942, -3.782040708598562, -7.0, -3.018584930267812, -4.290053170559201, -7.0, -7.0, -7.0, -7.0, -3.302357990059733, -4.271934493817765, -4.2524889444849885, -4.168114286819532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.361088118235532, -7.0, -4.1165745397769165, -2.450451035316793, -2.8546824696374555, -3.348499570283838, -2.969804056523086, -3.302080530992586, -1.640317233216312, -2.6398977222691444, -3.0884651668070924, -2.608506315326026, -2.411540484058249, -2.786803984261438, -3.6700204280902877, -2.577343959481118, -2.7977964379494615, -1.783371722611579, -3.150078124560676, -2.2101258729288364, -2.0028151592538186, -3.2889196056617265, -3.241100633388555, -4.213889470826336, -3.1865435658701995, -2.695981727762372, -2.5264329298349275, -2.9404649600696073, -7.0, -3.120319621011636, -3.4046471506478975, -3.8700525816935447, -2.2769065190323636, -2.3596084935067267, -3.0796876276113365, -2.8015719634582323, -3.7511250715355837, -3.8615344108590377, -3.113679530602721, -3.2244898986163966, -3.164713909486058, -2.9261396911223496, -2.732986387417268, -3.8385972528166565, -3.1011106055740547, -2.1238174830124894, -2.512486428200025, -2.4908264559884237, -3.530250939366719, -7.0, -2.4723137566575435, -3.309281663075056, -4.196590654117307, -3.0598229758332827, -3.093667615655394, -2.72347007482365, -4.152930136422725, -2.680946811516913, -3.9831299247347003, -7.0, -7.0, -3.7806292966955923, -3.122241090573313, -7.0, -2.520404604548894, -2.3743272623116396, -3.523683948711941, -7.0, -4.242740144605627, -7.0, -1.8720934227629034, -7.0, -3.934936434427346, -2.735172911942689, -3.463848214050881, -7.0, -2.792495451171643, -3.820179558051817, -3.174047934618734, -3.6184403542867676, -3.683842216031373, -4.278593568241134, -2.843978894828009, -2.8093385666210025, -4.135895575564019, -2.473924693416157, -1.862660366976328, -7.0, -2.935910876657456, -7.0, -3.916848582363452, -2.2479815277012127, -4.032753030285057, -4.12165831249807, -7.0, -7.0, -7.0, -3.3463529744506384, -1.7354019465713875, -7.0, -2.711229034334036, -2.8204970207913975, -2.641383961156209, -2.711454666165046, -2.0558192245960782, -7.0, -3.822429623779357, -2.7018796595988106, -3.8178627297096406, -2.159902929311491, -3.0464431343260316, -2.8305245140972586, -3.26528962586083, -7.0, -2.84391467557119, -2.6108628676358716, -3.441475184011856, -3.1304945885234696, -1.2906528242525366, -3.2866168384508114, -2.930821728079435, -7.0, -3.1609866359213985, -7.0, -2.617133832301317, -4.118760590442381, -7.0, -2.7808613258809114, -1.0110508776114095, -2.1197997981541117, -3.212021048512404, -3.0098473307709073, -3.6283276135598355, -2.993152697040286, -3.8897497752640375, -7.0, -3.307709923404807, -2.828717168654868, -7.0, -4.122183100093868, -3.134640664105797, -7.0, -2.2869708813680116, -2.8990476216383856, -2.793456323676415, -3.5414856359104596, -3.2298417622229714, -2.8171144355748146, -2.229090858172361, -2.881939567275474, -7.0, -3.0014632759848294, -2.7370006044606603, -3.562976488666603, -2.1445907669858943, -4.13049458852347, -3.821087540649282, -1.7345536657835299, -7.0, -1.209496753221182, -2.5442090261667722, -2.6365406820698576, -2.208095245943409, -3.287129620719111, -3.088756066652953, -7.0, -2.8353852017492147, -2.870956339503118, -7.0, -3.2771964957959563, -2.8468008542794783, -4.115677065115837, -3.4962144560637816, -2.159414400415508, -3.74681576560032, -3.4743328375521676, -2.675432957123123, -3.2872697292733806, -3.3529779956963357, -3.669409867287783, -2.253473250403829, -2.1925111879673103, -2.9722645673937236, -2.842297134328065, -7.0, -7.0, -2.297952062994036, -3.1892656689345484, -2.394674502055374, -2.4782834938362055, -2.108798685448187, -1.4682339277267094, -2.226494526388427, -2.56989488208644, -2.715015187390733, -3.7100891449303903, -4.131361989115943, -4.157970243604713, -7.0, -3.5314533695566217, -3.935381292079985, -2.6961316309388828, -7.0, -3.0113287324559876, -7.0, -2.1390210173169324, -7.0, -3.8262368226549173, -7.0, -7.0, -3.642892997358405, -3.516072408592942, -3.2183713665540417, -2.4418337034106465, -2.9238837398640314, -7.0, -7.0, -3.052693941924968, -4.12251077061032, -4.127104798364808, -4.1359590921245575, -3.6533411745619175, -3.274100093497666, -7.0, -2.3932998649986676, -3.4191765753173273, -3.5342292372487547, -3.2303531105571546, -7.0, -2.5395397244572258, -3.829528904200033, -7.0, -2.570374714161939, -4.135609636028679, -7.0, -3.0884904701823963, -3.4061426048653116, -3.703320043475056, -7.0, -7.0, -3.6947221648599164, -4.117834518543748, -3.329880725319446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.48826861549546, -7.0, -7.0, -7.0, -3.8657848031269304, -7.0, -7.0, -7.0, -3.9305160483329398, -3.4012527964419994, -3.4240645254174877, -7.0, -7.0, -7.0, -7.0, -3.5195092317558236, -3.655954372078779, -7.0, -2.9984046603196184, -3.9106174457294722, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9194906795740487, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0823065450398275, -3.330819466495837, -4.104136231496542, -3.2946866242794433, -7.0, -3.2431621151010512, -3.420945405921972, -2.9792447784093805, -7.0, -7.0, -7.0, -3.1264561134318045, -3.491921712586151, -3.2919763699421907, -7.0, -3.27263051589404, -3.5780085095732557, -7.0, -7.0, -7.0, -3.387033701282363, -7.0, -7.0, -7.0, -7.0, -2.9239344710521813, -3.1694098981407004, -7.0, -7.0, -3.110589710299249, -7.0, -7.0, -7.0, -7.0, -7.0, -5.129796197569744, -7.0, -3.558468562523795, -7.0, -7.0, -2.9930441352384736, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6497241859295224, -7.0, -7.0, -7.0, -3.689603110337512, -3.681693392004564, -3.5951654147902294, -7.0, -7.0, -7.0, -7.0, -3.575187844927661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.730620797887283, -7.0, -7.0, -7.0, -3.2722285058778144, -3.401745082237063, -7.0, -7.0, -7.0, -7.0, -3.065291062340054, -2.4382785804926073, -7.0, -7.0, -7.0, -3.7511250715355837, -7.0, -4.210960255416812, -3.9864358096792474, -7.0, -7.0, -7.0, -4.30085189841397, -7.0, -7.0, -7.0, -7.0, -7.0, -2.601732098158817, -3.3344537511509307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0800850850458694, -3.8266577918758693, -7.0, -3.790988475088816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6047658847038875, -7.0, -7.0, -7.0, -3.7130943492255923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9488529061997135, -7.0, -7.0, -3.609112439335402, -3.329397879361043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.707910665713106, -7.0, -3.8196755199942927, -3.5297386382916294, -7.0, -3.7858279199958655, -7.0, -3.45484486000851, -7.0, -7.0, -3.2037126406077068, -3.4313637641589874, -7.0, -7.0, -7.0, -7.0, -7.0, -4.012162067970823, -7.0, -4.367914738793752, -7.0, -2.4279032320494807, -7.0, -2.5920533256821177, -3.052693941924968, -2.694312646223346, -2.537609240282091, -7.0, -3.359898693821246, -7.0, -7.0, -2.972781203735422, -3.4268364538035083, -3.450813427021517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.977952121201462, -7.0, -3.5706304904278854, -4.333853500787942, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4827307000799426, -7.0, -7.0, -7.0, -3.2823955047425257, -3.3066394410242617, -7.0, -7.0, -7.0, -3.471800046620036, -7.0, -7.0, -7.0, -7.0, -3.3760291817281805, -3.3636119798921444, -7.0, -7.0, -3.3119656603683665, -7.0, -3.8688207061975177, -3.5957166199434245, -7.0, -7.0, -7.0, -2.592236256582886, -3.530711837981657, -3.3743694711197056, -7.0, -4.0231948243142535, -7.0, -7.0, -7.0, -2.703525857283128, -7.0, -3.174558185305092, -7.0, -7.0, -3.163310488963686, -7.0, -7.0, -7.0, -3.6241789257480224, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7027176733035243, -7.0, -7.0, -3.5149017730441883, -3.1322596895310446, -2.9093420383613084, -2.7683420586445333, -3.8350402280936993, -3.359123718484473, -7.0, -4.315025199312605, -7.0, -7.0, -7.0, -3.5089335260500327, -3.4134255068264925, -7.0, -7.0, -7.0, -3.369215857410143, -3.083263668252353, -4.2610241904782855, -3.4649860542696933, -7.0, -7.0, -7.0, -3.846708145456007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.80188370712524, -7.0, -7.0, -3.739888655084543, -7.0, -4.563996948568181, -4.410406027068357, -4.160018673786781, -7.0, -3.3996160424210022, -3.9827110624208517, -3.8631443462526676, -7.0, -7.0, -7.0, -3.678973375919765, -7.0, -7.0, -3.5364321758220134, -7.0, -7.0, -3.582744965691277, -7.0, -7.0, -7.0, -3.759516759462188, -7.0, -3.088949423617117, -7.0, -7.0, -3.6552451804139605, -4.48050997294196, -7.0, -3.4420876295507603, -4.7236936888413625, -3.9196532823103643, -3.4709492267992785, -4.605121806343587, -3.4561972767710216, -3.1300119496719043, -3.4222614508136027, -4.331771356290927, -4.729715411103169, -5.003494998557833, -2.951701707062042, -4.355355723394707, -3.907402402462683, -3.305730009050952, -4.081851171517454, -3.7372721765355434, -7.0, -5.089276165036801, -7.0, -3.770287307201907, -3.6705241577820797, -3.355853635810542, -4.670653972304613, -3.9205928620848085, -7.0, -3.7422965511890913, -3.7193036592295328, -4.689131197234498, -4.349821269512391, -4.228143607597742, -3.51241754860084, -7.0, -7.0, -4.472463896606989, -3.7432745235119333, -4.02566421518471, -7.0, -3.7791543969313732, -3.6906168758571534, -3.4775071227876087, -7.0, -7.0, -3.2518814545525276, -4.034615924863207, -3.1437952038457664, -2.6453240015622934, -2.032065988195396, -4.190737783739713, -3.244736448694373, -7.0, -3.554413439581362, -7.0, -7.0, -7.0, -3.697578033651113, -3.075838825974687, -3.0991624929285946, -3.2894315519433857, -3.9983732561577563, -4.345793798572643, -7.0, -3.1899112096928057, -7.0, -3.2624036232587823, -3.865044721693099, -5.407630507725026, -2.86602464772164, -3.1365498395337705, -7.0, -2.985836342397358, -3.975829920744224, -3.1287433422317372, -3.7269715836828765, -3.5486841714830053, -7.0, -3.0722174492367933, -4.505651841230991, -7.0, -3.4874163364389537, -3.135583545936889, -7.0, -3.6597416171192387, -7.0, -3.4172225044337696, -4.144781706171568, -3.846378353712088, -7.0, -7.0, -7.0, -2.4953130222377027, -3.1124709393381393, -2.5666717184381787, -7.0, -2.771298695058256, -2.8184458452428167, -2.506369717095504, -1.9481731218751213, -2.268928822432613, -2.919601023784111, -3.0, -1.7598631356238528, -2.666751912411818, -1.6736634719517163, -2.5868283338973868, -2.314250365062644, -2.2560337576766627, -2.84391467557119, -7.0, -2.5408445212507855, -2.7041505168397992, -3.0478587274074567, -2.6861594155422437, -2.310210387260904, -0.9593742275515137, -2.64849940898627, -3.1916372870312952, -2.1918573243828754, -1.5734794322253864, -2.7907541645992353, -7.0, -3.030141476104852, -2.8548887593685546, -2.7163094690071827, -7.0, -2.4320066872695985, -2.851302038119233, -1.5517776163059283, -2.7218106152125467, -3.2350231594952237, -2.7683420586445333, -2.5551629186862312, -7.0, -2.6890867704039234, -2.0324765479535576, -2.5578078557646045, -2.250635230436816, -2.10920123623541, -2.0295287116034255, -2.9429995933660407, -2.6625689669332604, -2.8041394323353503, -2.9992492063863114, -2.2710409206551185, -2.6603910984024672, -2.725185387172794, -2.8831880896223963, -2.744423382307533, -2.559479127726367, -2.7425287512507515, -2.173186268412274, -2.455320799214393, -3.059815767985011, -2.627714946767376, -2.719020373369276, -2.267841936069823, -3.4671639659690903, -2.6580113966571126, -3.0770043267933502, -7.0, -1.5391521640319417, -1.8369567370595505, -2.4231197904747805, -2.736737884043391, -1.9193950956616108, -7.0, -2.834305076821983, -2.8363241157067516, -2.2006735010229588, -7.0, -2.287190764555977, -3.1484998267052453, -2.874610650237315, -2.048409430960333, -1.878094420045513, -2.2481962673843716, -1.2646125313574494, -2.380211241711606, -3.2645817292380777, -7.0, -2.8778031216951354, -2.4434194617828173, -2.7890516223748403, -2.2715247959581437, -2.5435590011736546, -2.4537004733597723, -1.9488568372466288, -2.3827732455867023, -2.0643831044121965, -2.7087394925064303, -2.3475251599986895, -2.791129000727286, -3.246252312299322, -2.8531656617622896, -2.2130009594217945, -3.0111473607757975, -7.0, -3.1911714557285586, -7.0, -1.8009534980203061, -3.080987046910887, -2.6255182289716377, -7.0, -2.5499836111596887, -2.8004879595844288, -2.7876965682898738, -2.384487822086762, -2.580696939712437, -1.6611062344271388, -3.521007252408604, -3.036429265626675, -2.510927817178866, -3.2946866242794433, -7.0, -7.0, -2.7431176252147416, -3.274388795550379, -2.8686444383948255, -2.2650972418515827, -2.673512399026766, -2.810083096186659, -2.7628660424620133, -7.0, -2.673665876245702, -3.045127306568027, -7.0, -2.372685248678423, -7.0, -7.0, -2.2174839442139063, -2.395544796132492, -1.7137937806530432, -3.2757719001649312, -7.0, -2.0684332525144025, -7.0, -1.7828731511714586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6370892735303304, -3.6535983818432896, -3.748498126613737, -3.246908718215935, -7.0, -3.203123582322945, -3.026726887267514, -7.0, -7.0, -3.653501946962933, -3.060453411515471, -3.526382360022874, -3.714413592287121, -7.0, -7.0, -7.0, -7.0, -2.7956426794216003, -3.021752951948413, -3.628695382714023, -2.849828739446336, -3.0928267958659172, -7.0, -7.0, -3.6337713460825554, -3.775100498879025, -3.7208205817703437, -3.1946993054635864, -3.410805342142755, -3.4016589724951523, -3.6461095219788477, -7.0, -7.0, -3.4682734645251005, -3.357744325180376, -3.539452491549461, -7.0, -3.488127496247458, -7.0, -3.389590696801049, -7.0, -3.677789391068861, -3.0806986228711293, -7.0, -2.6846341802729268, -3.6661434272915585, -7.0, -7.0, -2.9373506949096404, -3.2730784731095195, -2.480321244013076, -2.7427251313046983, -2.554727707734111, -2.7238875480472107, -7.0, -3.6921416093667836, -3.821971817642043, -7.0, -3.702775077901044, -7.0, -7.0, -7.0, -2.0657430578984863, -2.9742135903699447, -3.349374674204051, -7.0, -2.7255032688593155, -3.6361868951987244, -3.268297087223767, -2.679908635894604, -3.3461573022320086, -7.0, -3.6605524456117786, -7.0, -3.009592521262823, -7.0, -7.0, -2.4410242032009224, -3.1709947020363, -3.66661156841903, -7.0, -2.867663867912998, -3.3872118003137306, -2.8433573784379553, -3.265348565194829, -3.7561033715851053, -7.0, -2.8123574644378384, -3.165719029800832, -2.4209637116600056, -7.0, -7.0, -3.3373926976485757, -2.8487278007449355, -3.4972061807039547, -2.5228976272386414, -7.0, -3.213276213896695, -7.0, -7.0, -7.0, -2.448212784700745, -7.0, -3.0973961506415026, -7.0, -2.445496837517327, -2.3461951811553288, -7.0, -7.0, -7.0, -7.0, -2.5070955710456486, -3.3987210360255333, -7.0, -3.303412070596742, -3.0222515771745355, -3.309523709653113, -7.0, -3.9726193390596234, -3.291333037371177, -7.0, -4.033423755486949, -7.0, -3.780109668814816, -2.9361785093615893, -3.8237349883987313, -3.8985057855343586, -7.0, -7.0, -2.145388810849714, -3.1360860973840974, -7.0, -7.0, -3.656401686648149, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5377291697221085, -2.405829968530948, -3.258230090449129, -3.9398186628213794, -7.0, -7.0, -7.0, -7.0, -7.0, -3.706148588963142, -2.909473737534268, -7.0, -7.0, -3.690550461510359, -2.722712787865719, -7.0, -3.630529571426824, -7.0, -3.7298934039632377, -7.0, -3.731266349075492, -3.0451664480652285, -2.6563035907524855, -2.891955383429181, -2.6766936096248664, -2.226349785441235, -2.6651117370750512, -3.3756636139608855, -3.0087031950056464, -3.190984983213069, -7.0, -7.0, -3.693726948923647, -2.66247450375031, -3.658106835506393, -7.0, -3.1845139866958645, -7.0, -3.406199423663313, -3.33665982345442, -3.358030076576957, -2.6329460616904314, -3.699143687394484, -3.1575071357169904, -3.0419000056568426, -3.4292676664331685, -3.4933883352101596, -3.438621448045396, -3.4565937502444077, -7.0, -7.0, -3.609754439128856, -7.0, -3.9293678292400998, -7.0, -3.6302922427684865, -2.921017243207157, -3.810400556101999, -3.652536418593025, -2.748547943404879, -7.0, -3.2034861742721255, -7.0, -2.9617374047008993, -7.0, -7.0, -2.892975289811869, -3.484299839346786, -7.0, -3.0990587890680543, -3.424424243769512, -2.6080106916094867, -7.0, -7.0, -3.3624824747511743, -7.0, -7.0, -7.0, -7.0, -3.378851946448881, -2.9332341287148083, -3.2835273648616936, -3.0641333950665963, -4.172092285066876, -7.0, -3.3660492098002353, -7.0, -3.715836275164994, -7.0, -7.0, -3.477265995424853, -3.745465168670727, -2.5103084019294966, -7.0, -3.629307640073749, -3.3463529744506384, -2.958468318366944, -7.0, -3.344294005898312, -2.445526365746388, -2.866773111164473, -7.0, -3.3349561161368517, -7.0, -7.0, -7.0, -3.6844862921887342, -7.0, -3.2135177569963047, -3.2392994791268923, -3.2813364338908033, -3.150844122978294, -3.171935299284524, -3.7520484478194387, -7.0, -7.0, -2.447211512591213, -3.471144965160633, -2.733942048385829, -3.215373152783422, -2.9219779562319195, -7.0, -7.0, -7.0, -2.3924091398153755, -3.0678609473534806, -2.8116755253669115, -2.8771312847935695, -3.731387283168788, -3.133139557094351, -7.0, -3.646599751720373, -2.82020145948564, -2.7128438865094555, -2.187722109424307, -7.0, -7.0, -3.0262062970831183, -7.0, -7.0, -7.0, -2.7804613328617176, -2.944553168779153, -3.241878383159056, -3.8190171986890595, -7.0, -3.2351510964530643, -2.4623605571056313, -7.0, -3.762959751488572, -7.0, -3.3953263930693507, -2.607398581017968, -2.85582190540603, -2.589746565098586, -2.3830101417228375, -2.9565176821885184, -2.720159303405957, -2.251029538523903, -3.4886916983169405, -3.7373151443998833, -2.8471097408372383, -7.0, -7.0, -7.0, -3.377761438702263, -2.8229848832234263, -3.190984983213069, -2.682686478249768, -3.507248513918787, -7.0, -3.4740705032150436, -7.0, -2.946697837245742, -7.0, -3.710286647702891, -2.5400573092860066, -7.0, -4.034588353713625, -3.547774705387823, -3.5719548849719382, -7.0, -2.3971140642605224, -3.4900990050633047, -3.0372936658607066, -7.0, -3.7031193462360776, -3.6535983818432896, -2.5824820176812113, -2.917330426106554, -3.114468006623671, -3.775610448006361, -7.0, -7.0, -2.956991217867476, -2.960565902818198, -3.0824263008607717, -3.090169844444793, -2.9167696842831363, -2.819919785398216, -2.422499190079314, -7.0, -7.0, -2.459635313866705, -4.021106568432121, -4.352143912441583, -3.60535892548885, -3.965711137426735, -3.057808690334717, -3.102166811210593, -3.853282371443652, -3.211109639334388, -3.3464181789371965, -2.850479145287359, -4.38008455401153, -3.3343300029005127, -3.3606607212593573, -2.6081000254382913, -7.0, -3.7075446286123026, -3.0328375490074393, -2.820679034221769, -3.608632989490037, -7.0, -4.394721279992447, -3.8777935313390106, -3.4643060782515827, -3.139800402737301, -7.0, -3.9152239006415415, -3.981909170090792, -3.1805559407036412, -3.1777013644974312, -3.3578157806578566, -3.5968676524903462, -3.919078092376074, -3.9875322027298394, -3.460747541844197, -4.203005674728483, -3.7551122663950713, -4.2068798223063, -2.882934163885178, -3.205214033739003, -2.92272545799326, -3.5282566195152594, -2.7149390821628323, -2.8055763679355015, -2.922050402167174, -3.3211494758498192, -2.829946695941636, -3.137257654522995, -1.8844112025069455, -2.518075036877517, -3.020043457313073, -3.1604276017717767, -2.69115730066159, -3.737113094305961, -2.562600715951575, -3.0195316845312554, -2.9472376078706666, -3.7018700729474063, -3.359076226059263, -7.0, -7.0, -2.784202883354968, -3.053258692438889, -4.24725943193383, -2.7034824447657835, -2.381014746995207, -7.0, -2.8170056788606863, -3.6925384871257463, -4.013879965230417, -3.5959369062691735, -3.1319392952104246, -7.0, -2.97916300467107, -3.4897897886159925, -2.8304941217738633, -3.195954973023525, -2.8274338954007794, -3.10623340638907, -2.97845862997429, -2.981428467644333, -2.7869287937967515, -2.5431114010135016, -2.973174052682972, -3.8729716307384434, -3.061990705060039, -7.0, -3.412236482169269, -2.607838532274997, -3.8955698643861068, -3.6504046698680317, -3.636888906983799, -7.0, -2.298158125667446, -3.2554654819924638, -2.0871825845455936, -1.9716092134509804, -2.231069884282878, -2.697907095962328, -1.5762221640507468, -2.4750458298528333, -2.236719159078696, -1.8361867990361727, -3.1784013415337555, -2.221181284727327, -3.341137638740964, -2.369169785054117, -1.9674253901773011, -2.4756711883244296, -3.174786417367337, -2.6108628676358716, -2.5408445212507855, -7.0, -2.9254839872002525, -2.8986337800355617, -2.2808103891240723, -2.9809119377768436, -2.1945590983602625, -2.519441919893148, -2.4065401804339555, -7.0, -2.2644760667733554, -2.8626282269612133, -7.0, -2.6480983392885165, -2.341920335600977, -2.4591243219699734, -3.6321534835106326, -2.704678374069052, -1.7906369619317033, -2.7985643303338046, -2.161107477642937, -3.6277753752293034, -2.241594675741352, -2.058662717220406, -2.140589132424944, -2.8728358439998014, -2.753513421358579, -2.6538554368859546, -2.1676737520697014, -2.5276299008713385, -2.1970047280230456, -2.71121652432109, -3.08161730749073, -2.355719638613961, -2.465544485482776, -2.588943642740015, -3.037027879755775, -2.2061659906502573, -2.059830242641179, -3.2909986394651347, -2.3905671544575418, -2.8969852540843504, -2.3054490844840263, -2.2863067388432747, -2.2530000501017793, -2.2728122492352103, -2.23195291641955, -2.342422680822206, -2.890979596989689, -2.5034274846401083, -3.258717079597411, -2.89726044333122, -2.0966843468653313, -2.665299499499897, -2.376284896196881, -2.3609546876901435, -2.244936516611802, -3.3312247810207323, -2.282037920728629, -2.305784919389692, -2.180908497191226, -2.8847953639489807, -2.428607941216987, -3.0507019092929966, -3.365441183394879, -2.941594242145933, -2.225309281725863, -1.9878764752313967, -2.3083180985067657, -2.598874647901013, -7.0, -7.0, -1.8008846495627382, -2.462658366301181, -2.7427251313046983, -1.807186606162684, -2.5962497526472124, -2.5970366649776535, -2.5890936141146526, -1.6332240350786766, -2.4171082451130608, -2.24863590683504, -3.377306251068199, -2.1101196945803173, -7.0, -1.8433140432437767, -2.368235217008203, -2.4590907896005865, -3.3336487565147013, -2.090767351466499, -2.7077404542737713, -2.1005705354955055, -2.486784571399042, -3.1894903136993675, -7.0, -3.1567510079386705, -3.344686943705623, -3.162962476653458, -2.6953843774012043, -2.391537517062907, -2.206587797735214, -3.164278483923325, -2.1219816941302403, -2.3561169519982608, -1.5168785621604606, -1.2328602186007682, -0.7158076493735616, -1.9682961150462555, -0.8613293708732156, -1.1684328023599524, -1.2538560276860629, -1.3974531313991803, -2.7162120888836645, -1.5409548089261327, -1.9629660778441818, -1.3691249967503878, -1.6859322186412395, -3.3282776444097677, -1.5890927346358725, -0.7268769915705309, -0.7524833221700973, -1.3103988069707881, -2.136922862547955, -2.1273116216794095, -1.6386436178881632, -1.6126819933483518, -1.4883383994676636, -1.5752928357372873, -2.175722610349459, -0.3797171802809775, -2.2987657722618797, -2.3022690677795294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.164517780650602, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3477787170653643, -7.0, -7.0, -7.0, -4.873485683733355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.686278678067201, -7.0, -7.0, -7.0, -7.0, -7.0, -4.433881792287146, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3191060593097763, -7.0, -7.0, -7.0, -3.1758016328482794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.629547205832985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0922819190362185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.695004215553539, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.899546931090867, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3487331037982857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.856003453997221, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.152052782798216, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9900278987702946, -7.0, -3.758003009299799, -4.354356262178817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3923099598928186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7782236267660965, -7.0, -7.0, -7.0, -4.064233296034753, -3.579726448846229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3011230487976233, -4.567219679170076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.497492403996519, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325002252165038, -7.0, -4.238936372332732, -7.0, -3.936739878637037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.686077403554104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.072762487893174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.85982853501601, -7.0, -5.273512280679019, -7.0, -7.0, -4.543443038006803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.509404160258692, -7.0, -7.0, -2.986575127017741, -4.298081281898712, -4.280987889004646, -3.066046246604769, -4.415415768843478, -3.4780070353598553, -2.9022749204745018, -4.595595414820133, -3.2696723726683694, -3.2977167512641525, -2.5287189791351987, -3.8365139988906716, -4.421538119690085, -3.999635039330251, -2.806891904522298, -3.133558866297746, -4.376695550700234, -2.994622467273687, -4.049218022670182, -3.7195384391373816, -3.623456048069934, -3.832335018177531, -3.8071289555924217, -3.361249219040631, -2.8634880853390756, -7.0, -4.6624745037503095, -4.198272098469347, -7.0, -3.379254741314769, -3.393253384446486, -4.380247431410548, -3.855317205195943, -2.973779621328686, -2.1953460583484197, -3.7978558985883404, -3.9021117234480043, -3.982301391331439, -3.196535414422256, -4.6187486814592855, -3.2127201544178425, -4.674411004165626, -3.9884995011345423, -7.0, -7.0, -3.3830969299490943, -7.0, -4.759484017400655, -3.710878617685173, -3.2505419780102724, -3.5450131567760717, -7.0, -4.383546091724474, -7.0, -4.444279064276847, -7.0, -7.0, -7.0, -7.0, -3.103974669386388, -7.0, -3.5620107348170253, -4.4885634067382085, -4.364355676677317, -7.0, -7.0, -7.0, -4.355585600061131, -7.0, -5.1051097680662885, -4.092790799676886, -7.0, -7.0, -4.029992175377847, -4.439427438654527, -4.785963015980978, -3.6492374723496073, -7.0, -7.0, -2.838761511501365, -7.0, -7.0, -4.468667270826408, -4.48098372529553, -7.0, -5.047391702200444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0444526488723307, -7.0, -2.7839618855736754, -7.0, -3.8952843896896177, -2.2612628687924934, -2.0861724328371465, -3.748982214411482, -2.6123296529322277, -7.0, -7.0, -3.7802452838653524, -7.0, -3.2813708599038294, -3.6588695922019623, -7.0, -2.935171254603384, -3.441475184011856, -2.7041505168397992, -2.9254839872002525, -7.0, -2.1280760126687155, -3.109105863755288, -1.8309092995464433, -2.5757649805367193, -7.0, -7.0, -7.0, -3.184731979296402, -1.7219937073239866, -7.0, -2.966927174230582, -3.5643910191366928, -2.678652458663491, -7.0, -2.6597804193959593, -7.0, -2.095839662541678, -7.0, -2.926342446625655, -7.0, -3.416117232254335, -7.0, -3.0362295440862943, -3.455758203104137, -7.0, -1.7711087121610372, -3.1283992687178066, -2.156145156435762, -7.0, -3.1562461903973444, -7.0, -4.005480809979401, -1.9493348651412958, -7.0, -3.5935075893317654, -7.0, -2.9143431571194407, -3.117542456671693, -1.0003875899247916, -2.075546961392531, -2.519565500880509, -7.0, -3.5845632073128884, -2.919470349950749, -2.2741578492636796, -7.0, -3.1489109931093564, -3.573683693093798, -7.0, -2.3231833228365364, -2.0467434035423264, -7.0, -7.0, -2.3279262688653164, -7.0, -7.0, -4.032920808723266, -7.0, -7.0, -3.615865918668555, -7.0, -7.0, -3.268343913951065, -3.2713768718940743, -1.8917409426693867, -2.683947130751512, -2.950364854376123, -7.0, -7.0, -3.5227794666236236, -1.1569935095207584, -3.2022157758011316, -2.433636512517248, -3.3305786318991895, -3.1067007323623543, -2.2004562652820434, -3.2727085961319107, -3.0013009330204183, -7.0, -3.1367205671564067, -7.0, -2.646893624167745, -7.0, -7.0, -2.9446471464872617, -7.0, -7.0, -7.0, -3.101145379367524, -7.0, -3.095169351431755, -7.0, -7.0, -7.0, -7.0, -2.330819466495837, -2.5737738317498766, -1.978761346480108, -7.0, -7.0, -2.846955325019824, -7.0, -7.0, -7.0, -3.1290450598879582, -7.0, -7.0, -4.122838194089266, -1.5789769709225503, -3.0923696996291206, -3.1610683854711747, -7.0, -3.2854447829074154, -7.0, -7.0, -3.3280124388555863, -7.0, -7.0, -3.57978359661681, -1.2577400940253047, -7.0, -7.0, -7.0, -7.0, -7.0, -1.4675800089413817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426966462630075, -7.0, -7.0, -7.0, -7.0, -2.9369632542966944, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9795879585788803, -7.0, -7.0, -7.0, -4.367957784495365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.86693681773164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.840883613589037, -7.0, -7.0, -3.3666097103924297, -7.0, -3.6582976503081897, -7.0, -7.0, -7.0, -7.0, -3.284881714655453, -4.432263590253666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6750600320545788, -7.0, -7.0, -3.1295287738587763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02665326111819, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9814108401658883, -7.0, -7.0, -7.0, -7.0, -3.9041202134761996, -7.0, -7.0, -7.0, -7.0, -3.7858279199958655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1783149348321595, -3.9105939163159213, -7.0, -7.0, -7.0, -4.99471298543157, -7.0, -7.0, -7.0, -7.0, -7.0, -4.002360478449408, -7.0, -7.0, -7.0, -3.6720608951303078, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5587885437369464, -7.0, -7.0, -3.699230502883409, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0626195838543415, -7.0, -7.0, -7.0, -7.0, -4.5439687656935615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.607505573069506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.207630520994443, -7.0, -7.0, -3.60400993241223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.345432547499147, -7.0, -3.6035052322021435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058520921099337, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5370000873213385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165219587753745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318730966888098, -7.0, -3.757901904775561, -7.0, -3.5660837841679958, -7.0, -7.0, -7.0, -3.999174055588485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.481729196960016, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7898818450576406, -7.0, -7.0, -4.289544361497647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008886510427643, -3.578467291585447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.5743693067715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.204255678480151, -7.0, -7.0, -4.596915827751136, -4.073989470694238, -7.0, -3.338257230246256, -4.0148899938902884, -3.6767301802519694, -2.4521841151090564, -4.592243395937578, -3.8018779959930336, -3.284250210312084, -3.1366148865422088, -4.0062092405376575, -3.605942880164922, -3.794143716132249, -3.1509950913066977, -3.127469258299212, -3.8967282533689866, -3.310143913579505, -2.757116212742724, -4.315403504634351, -7.0, -3.9731616149516933, -3.162954824898502, -3.834789347763296, -2.9046479350221572, -7.0, -4.057485427208782, -2.8083516624462996, -7.0, -3.6290234850671896, -3.3842936639163343, -3.599164109114247, -4.326356346034385, -3.2933349269572516, -2.411409240981208, -4.088348752288528, -3.885304667588968, -4.454890572811237, -3.073972002343153, -4.314520279061685, -7.0, -4.3705685987670515, -5.0666352267141015, -3.1946253294838645, -7.0, -3.2897713227931304, -7.0, -4.121847611906487, -3.99899997221832, -3.513217600067939, -4.443607156584516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.074615331828475, -3.378670385207983, -7.0, -4.992266249484483, -4.6430463929643135, -4.592591800242331, -7.0, -7.0, -7.0, -4.178021984207647, -7.0, -7.0, -7.0, -4.221414237842339, -7.0, -4.324878943111994, -7.0, -4.181700704415961, -3.1411360901207392, -3.9168748785386835, -3.8147801457458046, -7.0, -7.0, -7.0, -4.099157555211003, -4.178473333988442, -7.0, -4.87070620635306, -7.0, -7.0, -4.609562396167091, -4.298612947759947, -7.0, -7.0, -7.0, -7.0, -2.6819808818607593, -2.5657150317200914, -7.0, -3.3424790790408303, -2.6020599913279625, -2.4641061396561508, -4.044186850767364, -2.2301081646076315, -7.0, -7.0, -3.155336037465062, -2.8363241157067516, -3.7981117584734614, -3.327767489902729, -2.743901550485179, -7.0, -3.1304945885234696, -3.0478587274074567, -2.8986337800355617, -2.1280760126687155, -7.0, -3.787672964687493, -7.0, -2.603865792191225, -3.2902572693945182, -7.0, -7.0, -3.172269243539273, -7.0, -7.0, -3.3935532686509355, -3.481980662231437, -2.1372151547842573, -2.7664128471123997, -2.8604877374747018, -3.6428600525844916, -2.8260748027008264, -7.0, -7.0, -7.0, -3.174520134964361, -7.0, -2.5921767573958667, -2.929248580749605, -3.237292337567459, -2.3683311667764393, -2.167317334748176, -0.5664196350588286, -3.163757523981956, -2.751279103983342, -7.0, -3.6911699341316035, -2.7199386533405456, -2.5165353738957994, -7.0, -7.0, -3.0338256939533106, -2.848127510567875, -7.0, -7.0, -3.9039035266901636, -7.0, -3.5992200567060535, -7.0, -2.0097994292833405, -3.244277120801843, -1.6086905702269756, -3.0781546160496553, -7.0, -3.1806275769070043, -2.9740509027928774, -7.0, -3.811909980420099, -1.4587090974027928, -7.0, -7.0, -3.5903858080526803, -7.0, -7.0, -4.007513076120703, -7.0, -7.0, -2.4896772916636984, -3.259474419531075, -2.100090986381226, -3.2135177569963047, -2.6928469192772297, -7.0, -7.0, -3.106511974326567, -1.8440627725826517, -2.6321197138685406, -1.8829138114849069, -3.752944296486384, -2.875447131459646, -3.210704863182517, -3.849124460263414, -2.9742352774430265, -3.4665710723863543, -3.0281644194244697, -7.0, -7.0, -3.6572471298837166, -7.0, -1.9730389953933727, -7.0, -7.0, -7.0, -2.5692166356836568, -7.0, -7.0, -2.7895807121644256, -2.47928731647617, -2.5563025007672873, -2.5217916496391233, -1.978864984347657, -2.5538156262430403, -3.263399331334002, -7.0, -7.0, -1.8561244442423004, -7.0, -2.49182842626168, -7.0, -7.0, -7.0, -3.251638220448212, -7.0, -2.5662901488579815, -3.6675463395115164, -3.059184617631371, -7.0, -2.704640691250642, -7.0, -7.0, -4.1992888280824054, -7.0, -7.0, -2.9408898574862166, -2.243193126167643, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4603339459252327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8243211248507714, -7.0, -3.7899330809317506, -2.605872556477404, -4.018367578387845, -7.0, -7.0, -4.321038892726055, -3.4299540428315436, -7.0, -7.0, -7.0, -7.0, -3.7585334222372864, -3.051425881072855, -4.112504458767161, -7.0, -2.4006044003534495, -3.4377827213819003, -7.0, -7.0, -7.0, -7.0, -3.821513528404773, -7.0, -3.8543888618404702, -7.0, -3.7633531087482153, -7.0, -3.0848621390484223, -7.0, -3.4720246977002813, -2.713385526896622, -7.0, -7.0, -3.7810369386211318, -4.043516438047088, -7.0, -7.0, -7.0, -7.0, -2.9033613362553186, -7.0, -3.2041199826559246, -7.0, -3.3405763000433617, -3.066450169242703, -2.4455129265851774, -2.580327484580072, -3.168202746842631, -4.05952555273869, -7.0, -3.7989267385772014, -7.0, -2.046021089340296, -7.0, -7.0, -3.462921830369343, -7.0, -2.8041394323353503, -3.3483048630481607, -3.067219688974141, -7.0, -2.986659788272094, -7.0, -4.027512692448811, -3.2008960765643213, -7.0, -7.0, -3.799619335919808, -7.0, -2.055613530125348, -7.0, -7.0, -2.657226639945664, -7.0, -3.0002170929722305, -3.0527708694748816, -2.309193251411278, -3.3186197661495815, -3.9223101632143957, -7.0, -3.8497264441963277, -7.0, -3.063892314170801, -7.0, -3.5940332524095524, -3.4594678795625455, -7.0, -7.0, -2.6994040818153375, -7.0, -3.4809167613786745, -7.0, -3.8098513907377116, -7.0, -3.7555699806288, -3.1518293401318713, -1.660352445316127, -3.15601883092165, -7.0, -3.8282086144679455, -3.132854081187205, -2.819693460240162, -7.0, -3.297249705130254, -2.970678880284106, -3.8257505813480277, -3.0890657240506734, -2.598858872679337, -3.753429841575423, -3.86975959478241, -3.4647875196459372, -7.0, -3.806179973983887, -2.59458751984308, -2.883226677829262, -7.0, -3.6080979463252794, -7.0, -3.78588648069122, -3.817036226050029, -3.9050399280762114, -2.925593339959713, -7.0, -7.0, -2.44872368508559, -3.9148718175400505, -7.0, -7.0, -3.3095541288225525, -7.0, -7.0, -7.0, -7.0, -3.7545012293869173, -3.087917863970426, -3.2470316839518056, -3.9892495332565354, -3.3040594662175993, -7.0, -7.0, -7.0, -3.772028165324855, -3.3439990690571615, -4.220787776165875, -3.7762652182681093, -7.0, -7.0, -7.0, -3.259908659769131, -7.0, -7.0, -7.0, -3.8287243271387914, -7.0, -3.8298181874388773, -7.0, -7.0, -7.0, -7.0, -3.805670736698373, -7.0, -7.0, -2.6283435784500924, -3.3031240291456903, -7.0, -7.0, -7.0, -3.777209258145685, -7.0, -7.0, -2.3039049519688835, -7.0, -4.084897858461355, -7.0, -4.021189299069938, -2.0916688687624085, -2.9003671286564705, -2.1428387408691347, -2.2639016404506758, -2.548098346867815, -2.333015212300375, -7.0, -3.5499224041295117, -3.216957207361097, -7.0, -3.978500069311459, -3.784759894664005, -3.693243153309189, -7.0, -3.8506462351830666, -3.858537197569639, -4.435015741932561, -7.0, -3.3880758153666863, -7.0, -3.3408405498123317, -7.0, -3.13786028215286, -3.7764832558336816, -7.0, -2.855115160771781, -3.3961993470957363, -7.0, -3.884285462339675, -2.4799444140560416, -2.91539983521227, -7.0, -3.452782787900721, -2.5190984547466106, -3.4586378490256493, -7.0, -7.0, -7.0, -3.3121068025476728, -2.157476477884026, -3.9572240578431668, -2.431853031350563, -4.126233008108469, -7.0, -7.0, -7.0, -3.8175653695597807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3670451557305383, -2.352272175741767, -7.0, -7.0, -7.0, -7.0, -3.496445291873353, -3.093421685162235, -7.0, -7.0, -7.0, -7.0, -3.7516254773755455, -2.0098793906010903, -2.9425041061680806, -3.282773119305837, -7.0, -2.6332832517813607, -2.8202611850556862, -2.7684613836716037, -7.0, -2.675832234393879, -7.0, -7.0, -3.7758288144646124, -3.5754765086019, -4.030963842378275, -3.0106330626283864, -7.0, -7.0, -3.355962079458681, -7.0, -3.4625477288026643, -2.9203842421783577, -2.3487914675605843, -3.1995906406036934, -7.0, -7.0, -3.825491029879431, -7.0, -3.0622058088197126, -7.0, -3.8705209500127644, -2.658393026279124, -7.0, -7.0, -7.0, -3.1391657840831786, -3.5133175029511547, -7.0, -3.690993032099869, -7.0, -2.9564428661760616, -3.6580113966571126, -2.18456799910385, -1.8546190242893335, -2.5084261181878986, -4.054766217838991, -3.8553374044695405, -7.0, -7.0, -3.5667211474848406, -3.4029831731411804, -7.0, -7.0, -7.0, -3.561101383649056, -7.0, -3.7805333253164046, -7.0, -3.591231611251554, -7.0, -3.865222456290179, -3.479791180189492, -3.5327968299462387, -7.0, -3.5120169694961265, -3.1271047983648077, -3.7965743332104296, -4.109336642421726, -3.6933751510251853, -3.738290420067439, -7.0, -2.37325690926109, -3.6780074233271307, -4.049024097915049, -7.0, -3.506369717095504, -7.0, -2.6352323462394964, -3.2080572629476225, -4.020982442918419, -7.0, -7.0, -7.0, -3.586699801624049, -3.774224904868919, -3.7933712489189557, -7.0, -3.3820170425748683, -3.778729923996112, -2.5020619934068473, -3.7508168426497543, -7.0, -2.693394702830789, -3.2767590718057047, -7.0, -3.4974364901339174, -4.152448881329991, -2.5711338477405756, -3.2027947216772894, -3.800019526792286, -2.8435442119456353, -2.911157608739977, -3.2638726768652235, -7.0, -3.5558196830611912, -3.5011920917584893, -2.2429367436982206, -4.4242771222724, -3.572879896515506, -2.4673646965972407, -4.2033593015223, -3.2963951486038936, -7.0, -3.9991235785945736, -3.9033432515780624, -3.101946530502681, -3.6518834713412964, -7.0, -3.8021577531869615, -4.312980861723379, -3.570426178358973, -2.818293237576922, -2.6003949625208245, -3.877256133113586, -3.817400081458108, -3.5398703234865425, -3.0756685954731195, -4.238823622261076, -3.804548308388056, -3.9239172231131056, -3.533666161312212, -3.6243664894996273, -3.5052856741441323, -3.4371411554875295, -1.9520292794553855, -2.2308574768946725, -3.687751847789659, -4.423769988626339, -7.0, -3.2702864641306397, -2.833958011421064, -3.920905604164024, -3.61322057968259, -3.3429114356402447, -3.2778546939989375, -7.0, -2.9936766592628796, -7.0, -7.0, -4.058463985602251, -4.459784382296269, -2.993083360698062, -7.0, -2.2294632784465835, -3.076238707188634, -4.330615822099622, -7.0, -3.7031193462360776, -7.0, -2.218087383804092, -7.0, -4.63603464296186, -3.3309208305952356, -3.637829827012092, -3.2803506930460054, -3.0559099036346367, -3.554448777421438, -3.517347676486939, -7.0, -3.3339508043872472, -7.0, -2.990627916448299, -3.3510349484072637, -3.1957613200360613, -2.711727577657698, -2.282136641500025, -3.946255707199397, -3.78927954367021, -7.0, -3.9603280505301433, -3.0917144760028554, -7.0, -3.766635886310268, -7.0, -7.0, -7.0, -7.0, -1.6511105267296189, -2.75931910713189, -2.1626159757428707, -2.161293117420253, -2.165775860559767, -2.507936146456582, -1.9499125186171895, -3.381656482585787, -3.2934362201313325, -2.554004321011903, -3.459317082865925, -2.5133527289221607, -2.1647775936979032, -2.325062476619459, -3.264463634204881, -1.2906528242525366, -2.6861594155422437, -2.2808103891240723, -3.109105863755288, -3.787672964687493, -7.0, -3.312529954073747, -2.755459063891662, -3.545554507234065, -2.1486026548060932, -3.750431248660202, -2.4972964389519117, -7.0, -3.7668588110214176, -3.1726515725810147, -1.502857768958537, -2.5984563004865473, -3.2753113545418118, -2.696356388733332, -2.798179627198126, -3.028503473608217, -2.565311056175449, -7.0, -2.2742220133299713, -2.034269509370409, -7.0, -3.0682600937746995, -3.2800089531081857, -2.8314858392486575, -2.18232684521996, -2.5287739107048073, -2.3467944909178753, -3.8151126581898125, -2.9468030399953147, -2.2900964722673876, -2.1853119149262725, -2.956982282900748, -7.0, -2.489355711136674, -2.1095525886555575, -7.0, -2.2253779069107895, -3.485224400125799, -7.0, -1.9977723246559227, -3.0872488677956578, -1.6349616438564416, -1.7252780880807221, -2.578543708157483, -1.2733707271961023, -7.0, -3.787672964687493, -3.3092041796704077, -2.7445276734725668, -2.778078861937455, -2.8661691476337707, -1.8906329778663251, -2.4616811788749517, -2.7515870050823104, -2.0684564381754846, -2.202435106951743, -3.016336796275526, -3.0305418969899116, -2.679222134851209, -2.954724790979063, -2.6106192208808556, -2.82013575187043, -2.244744296231608, -2.121744173030045, -2.9808471031895913, -2.9708779609577287, -3.457503426573305, -7.0, -2.2131895097881804, -3.0041063232796583, -2.7610389412724987, -2.4557690646750436, -2.4007397782617166, -1.1696838475727276, -2.2366665416716964, -2.8810830558880607, -2.608748828678732, -2.558544943096918, -7.0, -2.8896751285670677, -7.0, -2.4115742086626906, -3.5160062303860475, -3.400451639956946, -3.754806855354423, -1.991732246474622, -3.511214701136388, -2.0570960247337777, -2.7193312869837265, -7.0, -7.0, -3.4531653925258574, -7.0, -3.4578818967339924, -3.0676658819742486, -2.3965025724401565, -2.935444283519925, -3.158905021187544, -7.0, -3.012133913649598, -3.7685641095135733, -3.4776999283321306, -3.7983743766815614, -3.78660947264866, -2.4500208926115854, -3.233884108765886, -2.62076532707056, -3.0406418915445363, -3.6868149545073168, -2.8384992763954235, -7.0, -2.065533673461455, -3.7866804531966487, -7.0, -2.8917509168182045, -3.1951382785109965, -3.7951149856303634, -2.9780282664601656, -2.9428344937700954, -3.287745760540123, -7.0, -7.0, -2.9692994014258773, -7.0, -2.9076352585379115, -3.5344703322033375, -3.8057726319356693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.506239774721532, -7.0, -7.0, -7.0, -3.9003124969837266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.082516096060493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.088915346604906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3953263930693507, -7.0, -5.142020096199679, -7.0, -7.0, -7.0, -7.0, -3.66133934000604, -7.0, -7.0, -7.0, -7.0, -2.688642251959892, -4.432434774521513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.126092426202353, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.116926885756776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4174716932032934, -3.6063813651106047, -7.0, -4.156064312339866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3818908806262575, -7.0, -7.0, -7.0, -7.0, -3.911370707116138, -2.6486852034198645, -2.795880017344075, -7.0, -7.0, -2.650793039651931, -7.0, -7.0, -4.45498198398436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8945744943980465, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7453871213200087, -3.859378504425601, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.498403989816759, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.285039447366519, -7.0, -7.0, -4.654884701981255, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0398105541483504, -7.0, -3.073131564940993, -7.0, -3.2631624649622166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.882998606861143, -3.3877456596088638, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.758885830584383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.712971392093174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.319397574051826, -7.0, -7.0, -7.0, -3.4571414688886586, -7.0, -7.0, -7.0, -4.000564216165375, -3.454387467146955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530462245283984, -7.0, -7.0, -3.6880636969463443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.787129297761864, -3.881441721941393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.875408560077064, -7.0, -7.0, -4.718418641829656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5178444351168308, -4.773252387838773, -7.0, -7.0, -4.413148824714317, -3.4218962826411565, -3.8882918453565156, -7.0, -4.404223451969429, -7.0, -3.0148354350727975, -4.307966447028274, -4.419302990800441, -4.521395270332305, -3.327654040806735, -7.0, -4.374216605428374, -3.431835679685695, -7.0, -4.316075234838397, -7.0, -5.087247091536476, -4.278181784567518, -4.0570952896126675, -7.0, -7.0, -7.0, -7.0, -7.0, -3.821215016691195, -4.163697945892569, -4.076722343959474, -7.0, -4.197693975083923, -3.3240765797394864, -7.0, -7.0, -4.4553778768849766, -3.8884041677370464, -7.0, -7.0, -7.0, -5.066754416617172, -7.0, -7.0, -7.0, -7.0, -5.235932253986295, -7.0, -7.0, -3.5407985597854283, -7.0, -4.381106051624685, -2.5514499979728753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.992407697648305, -4.7892252348732285, -7.0, -7.0, -7.0, -7.0, -4.479234496909399, -3.7912694809102683, -7.0, -7.0, -4.222248116858932, -7.0, -2.847222944219378, -7.0, -4.306882315060308, -7.0, -7.0, -7.0, -4.121017869041896, -7.0, -7.0, -7.0, -4.479685657143802, -7.0, -4.502776210159077, -7.0, -7.0, -4.308852424944224, -7.0, -7.0, -7.0, -7.0, -1.5947607525864629, -7.0, -3.6263256999716096, -7.0, -3.711582293398766, -2.4419568376564116, -3.0170333392987803, -3.5675360785152037, -3.4163075870598827, -3.038023740045158, -7.0, -3.760271660542063, -2.553883026643874, -3.0573479242379045, -3.6322547766847135, -3.0580462303952816, -2.2464607024231023, -3.2866168384508114, -2.310210387260904, -2.9809119377768436, -1.8309092995464433, -7.0, -3.312529954073747, -7.0, -2.3121068025476728, -3.2973227142053023, -7.0, -7.0, -3.5419119092113363, -2.3729120029701067, -7.0, -3.342707730097314, -3.647808951020386, -3.466634635428093, -7.0, -2.621324682419535, -7.0, -1.9529538008322767, -7.0, -2.455606112581867, -7.0, -7.0, -2.348953547981164, -2.9116901587538613, -3.412460547429961, -7.0, -2.5183384319014017, -3.030599721965951, -2.9786369483844743, -7.0, -2.586587304671755, -7.0, -7.0, -2.3145878572394274, -1.8750612633917, -7.0, -7.0, -3.0402066275747113, -3.674064663366411, -1.5444957100489443, -1.637934247956542, -2.95052711646727, -7.0, -3.591591770128131, -7.0, -2.6565240853339462, -7.0, -7.0, -3.8588378514285853, -7.0, -2.1258786900701554, -2.383815365980431, -7.0, -7.0, -2.37185916734684, -7.0, -7.0, -4.155143649983192, -3.334051440346892, -7.0, -2.910304168068569, -3.187520720836463, -3.448087666692341, -3.1997551772534747, -3.4369970267054812, -2.3733718171813005, -1.9337003600874467, -2.8788089323592057, -7.0, -7.0, -3.663908131452911, -2.1158274961813883, -7.0, -3.4782778319196046, -3.929495559155406, -7.0, -3.019472366839173, -4.247531386233569, -2.498218629885796, -7.0, -1.9530344572503566, -7.0, -2.184691430817599, -7.0, -3.0790002523038495, -3.700790221374347, -7.0, -7.0, -7.0, -3.2837881449671475, -7.0, -2.383815365980431, -7.0, -2.8041394323353503, -7.0, -7.0, -2.605305046141109, -3.034695286583428, -1.8441424962142483, -7.0, -7.0, -2.451402613597493, -7.0, -7.0, -7.0, -2.552668216112193, -7.0, -7.0, -3.812779707008964, -2.4935681057700907, -2.714795291445831, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8986429210566396, -7.0, -7.0, -3.2463754640035085, -2.2764618041732443, -2.8318697742805017, -7.0, -7.0, -7.0, -7.0, -2.388138610113707, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.205504800451809, -7.0, -7.0, -7.0, -4.204635401383848, -3.375219296154107, -7.0, -7.0, -7.0, -7.0, -7.0, -3.646031033842023, -7.0, -7.0, -2.7913397039651393, -4.341802148803916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.168809686171092, -3.1740598077250253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.841356341520803, -7.0, -7.0, -3.0925452076056064, -7.0, -2.972758083903539, -7.0, -7.0, -7.0, -7.0, -2.83968749733336, -3.733972576339301, -7.0, -7.0, -3.5147469246343817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8249931222365388, -4.1546065392836224, -7.0, -7.0, -7.0, -7.0, -3.456973013635818, -3.6641717053619307, -7.0, -7.0, -4.825442346705323, -7.0, -3.413634997198556, -7.0, -7.0, -3.1159985963842782, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.582404298019028, -7.0, -7.0, -3.7997386616885427, -3.5773768919170146, -3.555698894718901, -7.0, -7.0, -7.0, -3.3240765797394864, -7.0, -7.0, -7.0, -4.1596574112477045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.906837655959449, -7.0, -7.0, -7.0, -7.0, -2.5891336581773676, -2.1166681087783803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0579018215218525, -7.0, -7.0, -7.0, -4.092224852134988, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8583653018690365, -2.738516308715399, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7409545058228053, -3.7545776560447304, -4.1640255242878395, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2314695904306814, -7.0, -3.846708145456007, -7.0, -3.018284308426531, -7.0, -4.545838832510257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4500950758716025, -7.0, -7.0, -3.8955882756662628, -7.0, -7.0, -3.720297152790356, -3.04493154614916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.63823959067475, -7.0, -3.8105013477665297, -7.0, -7.0, -3.672676916048187, -7.0, -7.0, -3.6200318951262975, -7.0, -3.1266183755229515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0473138158153885, -7.0, -2.7043292903498783, -7.0, -2.575043441108574, -2.7895807121644256, -2.589726256254237, -7.0, -7.0, -3.1645758949823053, -3.406540180433955, -7.0, -3.4372747974101237, -3.760271660542063, -3.8720979742742268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.141857223238367, -4.7132266941659084, -7.0, -7.0, -3.0860037056183818, -2.9148718175400505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.481492050349517, -7.0, -7.0, -7.0, -7.0, -3.130655349022031, -7.0, -7.0, -7.0, -3.7102020146553847, -7.0, -3.803934849863842, -7.0, -7.0, -7.0, -7.0, -2.7763898245663734, -7.0, -3.307231680910892, -7.0, -4.111590127767469, -7.0, -7.0, -7.0, -2.148394076647004, -7.0, -3.9753858489894673, -3.741387992479269, -7.0, -3.2762319579218335, -7.0, -7.0, -7.0, -7.0, -3.477265995424853, -7.0, -3.0136796972911926, -7.0, -7.0, -3.303196057420489, -7.0, -7.0, -3.643156465619706, -3.227372442289636, -7.0, -3.2821687783046416, -3.9567413467550643, -7.0, -7.0, -3.9918239268084683, -7.0, -7.0, -7.0, -7.0, -3.493179120682515, -7.0, -7.0, -3.350829273582968, -3.5630061870617937, -3.4169731726030363, -4.486161819770721, -3.888179493918325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0916669575956846, -4.921236055163652, -7.0, -3.8133808067338557, -4.320947640446896, -7.0, -7.0, -7.0, -7.0, -3.5739154404215507, -3.8055008581584002, -7.0, -3.0811672147134725, -7.0, -7.0, -3.447158031342219, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5528979407839887, -7.0, -7.0, -3.4521589665758357, -4.4730780298442365, -7.0, -7.0, -4.238037735139086, -3.776428756703846, -3.195512210674072, -4.593917107968336, -3.5393840807619363, -3.6892200372638357, -3.629817196018516, -4.009429647995079, -4.119222886923583, -4.0959012792258775, -3.092618786621763, -7.0, -4.074240289442827, -3.3797042690244474, -4.043283665570575, -3.5402042998420598, -7.0, -5.3884919618358005, -7.0, -3.757497251140972, -4.114844413145024, -7.0, -4.661036127893079, -7.0, -7.0, -3.697098511464285, -3.8661395947446504, -4.378870098398975, -7.0, -4.200959878391846, -3.3479151865016914, -7.0, -7.0, -4.457185256553668, -4.192818257048295, -3.575555201770702, -7.0, -4.371963248515009, -4.368197598914685, -3.9023293058583186, -7.0, -7.0, -3.406199423663313, -4.281949496845566, -4.00552369267328, -3.5328817194073974, -3.065034793369011, -4.4869827371917586, -3.6416543530806247, -7.0, -4.441899276742038, -7.0, -7.0, -7.0, -4.378434242062079, -3.215901813204032, -7.0, -4.038620161949702, -4.011171346488324, -7.0, -7.0, -3.7138264243805246, -7.0, -4.11179041463582, -7.0, -7.0, -7.0, -7.0, -7.0, -4.026900808890256, -7.0, -4.78488106958609, -7.0, -3.9208274397551555, -7.0, -3.7236307775414375, -7.0, -7.0, -3.798803504402391, -4.054239492601495, -7.0, -4.0056250349389275, -2.5705429398818973, -3.623559390005437, -7.0, -4.000824376605606, -7.0, -7.0, -7.0, -2.0247934233387634, -3.4360035356698964, -2.531302696921394, -2.709439574132411, -2.536474268817627, -2.979092900638326, -2.495147721553675, -2.693277378791741, -2.2267609637969663, -2.662001879389917, -7.0, -2.0207378494638983, -2.4435237466871254, -1.9766408215681843, -2.297561567219382, -2.1931245983544616, -2.150485541952428, -2.930821728079435, -0.9593742275515137, -2.1945590983602625, -2.5757649805367193, -2.603865792191225, -2.755459063891662, -2.3121068025476728, -7.0, -2.4750482460967973, -2.7819945894654037, -1.9363880603822547, -2.544605409694115, -2.4403842548328845, -7.0, -3.0674537787406724, -3.008366279393024, -2.743099952936036, -2.8662873390841948, -2.250420002308894, -2.773932647467645, -1.6097468199942533, -2.805636766305935, -2.840106094456758, -2.581380688709987, -2.4842274307854315, -2.597146487833695, -2.49182842626168, -2.7317498835272636, -2.269512944217916, -2.2878878226021113, -1.953499490469544, -1.665223510201882, -1.7954628943903799, -1.952515690138819, -2.0055481951688097, -2.4776035362594007, -2.6326214246439354, -2.2052043639481447, -2.494618336168116, -2.4706799424243178, -3.364550995353972, -2.4274922332943896, -2.7741518589547103, -2.0090730019467866, -2.390078298969682, -2.9061553956879878, -2.8828921086125296, -2.545581986400255, -2.278129763907229, -2.8020892578817325, -2.4951973183654577, -3.263517716091967, -3.0770043267933502, -2.1647775936979032, -1.72222246396973, -2.269512944217916, -2.497061352238562, -1.8228216453031048, -7.0, -2.635282637998212, -2.8541642908673475, -2.530790575140356, -7.0, -2.7420666425654527, -2.805228914203426, -3.4572004127937683, -2.6276218509897133, -2.332478065449526, -2.164352855784437, -1.8991237997743422, -1.9020028913507296, -2.910090545594068, -2.8656960599160706, -2.9329245114554494, -2.350801612394977, -2.3774883833761327, -2.167317334748176, -2.7758466875586456, -2.681060243631812, -2.5995585423686345, -3.057948165085225, -2.0072391725850767, -2.3710678622717363, -2.1256619582273957, -2.6159500516564007, -7.0, -2.4927603890268375, -2.5761640871494937, -3.011316643366872, -7.0, -2.8405242885014963, -3.1953460583484197, -2.218937929477692, -2.663386788318517, -2.3364597338485296, -7.0, -2.576341350205793, -2.461898521729004, -2.912753303671323, -2.48808044630625, -2.4965342957637975, -1.3890478929141081, -3.3604040547299387, -3.0610753236297916, -2.1391791757229104, -7.0, -7.0, -7.0, -7.0, -2.9596772555121413, -3.286905352972375, -3.11723814213982, -2.8794542970180665, -3.2039389889121495, -2.8112397727532894, -7.0, -2.78993308093175, -7.0, -7.0, -3.0244993503595516, -7.0, -7.0, -3.084457113581298, -2.239373094599889, -2.4967759427161327, -7.0, -7.0, -3.4055171069763763, -2.904715545278681, -2.1184668132481392, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.446226401778163, -2.6164755138885654, -7.0, -7.0, -4.093548291027968, -7.0, -7.0, -7.0, -3.525122584158249, -2.6695932692069277, -1.4135955714364747, -7.0, -3.1684974835230326, -7.0, -7.0, -3.2128531899471113, -7.0, -7.0, -3.278753600952829, -2.864397059718746, -3.3492775274679554, -3.2598326990634834, -7.0, -2.651278013998144, -1.8587923111903113, -7.0, -4.093964214254529, -2.2658001678796333, -7.0, -3.212453961040276, -7.0, -7.0, -3.2430380486862944, -7.0, -7.0, -3.5245259366263757, -7.0, -3.889329720601343, -3.2271150825891253, -2.989004615698537, -3.2064210652379885, -3.070037866607755, -2.2691907672877827, -7.0, -2.8692317197309762, -3.6290016192869916, -2.678700434998304, -7.0, -3.173223363367037, -7.0, -2.464374148443393, -3.862548769524793, -7.0, -7.0, -3.1052830432993654, -7.0, -7.0, -7.0, -7.0, -2.835479184541597, -3.0751818546186915, -3.320294686755554, -7.0, -3.1986570869544226, -2.3207570223696323, -7.0, -3.811038508604216, -2.8246951871909625, -7.0, -3.5744942682853273, -3.456485559127413, -7.0, -7.0, -7.0, -7.0, -2.3991135714003433, -3.1936810295412816, -2.482158695411276, -7.0, -7.0, -2.8380090624639394, -3.621176281775035, -3.659440781870318, -2.9836262871245345, -7.0, -3.741609018477117, -3.655234507034294, -4.061866972138563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.838471279071929, -3.40671045860979, -2.2915168465279523, -3.0539859144018386, -7.0, -7.0, -3.375297738217339, -7.0, -1.6781969175288394, -7.0, -7.0, -2.6620829372459838, -3.6599162000698504, -3.4274861090957858, -7.0, -3.72607487021537, -4.285384757063689, -7.0, -3.902546779313991, -2.829303772831025, -2.793113454220208, -7.0, -3.5859117103194342, -7.0, -7.0, -7.0, -2.313825471320152, -2.650199556821398, -7.0, -7.0, -4.38737202701981, -7.0, -7.0, -7.0, -7.0, -7.0, -4.070370390367003, -3.5067079263501197, -3.8844838285545573, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0870712059065353, -7.0, -3.1908917169221698, -7.0, -7.0, -2.2372085050255706, -4.077743283566271, -7.0, -7.0, -7.0, -7.0, -2.6098610929805472, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6336199272367296, -3.4412236742426123, -7.0, -3.7462647282196215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.497620649781288, -7.0, -3.5256493733815315, -7.0, -7.0, -3.0222633656812588, -7.0, -7.0, -3.213694803261253, -2.806179973983887, -3.2328691051326137, -7.0, -3.163310488963686, -7.0, -2.9514994179522764, -3.7271344237604884, -7.0, -7.0, -7.0, -7.0, -3.4825877695267677, -7.0, -7.0, -2.712279215017366, -7.0, -3.052822146939007, -7.0, -2.4274861090957858, -3.254064452914338, -2.5069557791831683, -2.5378190950732744, -3.2161659022859928, -7.0, -3.0638335542064703, -7.0, -3.913336925932623, -7.0, -7.0, -7.0, -7.0, -3.224014811372864, -2.574956775764507, -7.0, -2.818005830532529, -2.9639294220265584, -2.9887372752888, -7.0, -5.014888315259641, -7.0, -7.0, -2.8144695709383387, -7.0, -7.0, -7.0, -3.203032887014711, -2.739888655084543, -7.0, -7.0, -7.0, -7.0, -3.241048150671644, -3.166726055580052, -3.207095540419218, -7.0, -3.6254006534766647, -3.1690863574870227, -2.8793826371743427, -7.0, -7.0, -3.019324037153691, -7.0, -7.0, -3.020568434801363, -3.4676820847136822, -3.4665710723863543, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4953834355923443, -3.4927603890268375, -3.0024129251889913, -7.0, -3.9416521994105165, -3.3463529744506384, -7.0, -3.2518814545525276, -1.2149155345054852, -7.0, -2.341606539426177, -2.260141565650559, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3995006613146104, -7.0, -2.9618954736678504, -7.0, -3.510545010206612, -2.9371530153045136, -7.0, -7.0, -2.946615995262667, -4.056037301237244, -3.3454227452289564, -7.0, -3.5306478535274857, -7.0, -7.0, -1.5581688314517086, -2.7687860469080143, -2.7982620922768358, -2.052870647076631, -3.855034316675884, -7.0, -7.0, -2.3175410324561483, -4.874836658990174, -2.8855668032220505, -7.0, -7.0, -7.0, -3.828788748184953, -2.7600034015785693, -7.0, -7.0, -2.409812402140273, -2.6402329136549687, -2.651554899236661, -7.0, -3.3045623297876885, -7.0, -2.8879921769079147, -3.4156409798961542, -7.0, -4.018183173433062, -3.706478811975557, -4.5334698946539165, -7.0, -7.0, -3.049123134141101, -1.9385070581749333, -7.0, -3.3498600821923312, -3.228913405994688, -3.0497024560521484, -2.257493965097264, -1.7274984504165358, -2.45484486000851, -2.889581802149624, -7.0, -3.071636573854042, -7.0, -3.307923703611882, -3.3261309567107946, -3.4363217001397333, -7.0, -2.472982377874486, -3.161966616364075, -7.0, -4.129453564839296, -7.0, -7.0, -7.0, -7.0, -4.391869775709361, -7.0, -4.602049133830196, -3.630789354092371, -7.0, -7.0, -7.0, -4.727411111842715, -5.002269761490024, -3.55135017418428, -7.0, -7.0, -4.325854182575375, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8459905281322375, -7.0, -7.0, -7.0, -7.0, -7.0, -4.781798443044012, -4.1886191672078485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4682882387076095, -7.0, -4.022747891057003, -3.346744054604849, -4.679800248947389, -4.028482521569151, -3.463594402187, -7.0, -4.349277527467955, -7.0, -4.636023765759377, -3.735119634081872, -2.8391636829146503, -3.9801700844088446, -3.5871822704263163, -3.7354746964258965, -7.0, -3.754302457110145, -3.884682104206025, -7.0, -7.0, -4.391711200121372, -7.0, -7.0, -4.041883730497782, -4.410207639094926, -7.0, -7.0, -3.294613170667107, -7.0, -3.4416713367267233, -7.0, -5.10611437035037, -4.113006940000935, -7.0, -7.0, -3.865656612667585, -4.147583582421641, -4.489093245592739, -7.0, -3.395426248098107, -3.87046243158892, -3.6026784204385085, -4.5017847633885, -3.3226327116922234, -3.335526392136679, -3.6597260952377915, -7.0, -3.9181080350553983, -3.269979676645324, -3.3929606147967957, -4.016866270828975, -7.0, -7.0, -7.0, -7.0, -3.204933522354145, -7.0, -3.2794958384653494, -2.1924612493910622, -2.2159503314026674, -7.0, -3.167465028843088, -2.589381549515688, -3.5402042998420598, -7.0, -2.9334872878487053, -2.437552390568762, -3.1983821300082944, -2.8073915104764544, -2.3861166079483445, -2.454191294073423, -7.0, -7.0, -2.64849940898627, -2.519441919893148, -7.0, -3.2902572693945182, -3.545554507234065, -3.2973227142053023, -2.4750482460967973, -7.0, -2.295267138296195, -3.1604685311190375, -3.35430056234536, -7.0, -3.2211533219547053, -4.130516026695155, -3.6508034376395506, -4.494126753736251, -7.0, -3.57978359661681, -2.0869527242574843, -3.3492775274679554, -2.019957892316097, -7.0, -2.5773276363569475, -2.446184640239396, -3.1861083798132053, -2.3178022622275756, -3.059689611271879, -2.5712095470456258, -2.9872937677065066, -7.0, -2.3242824552976926, -2.5239321817948963, -3.3059958827708047, -2.3137166067099697, -3.0751818546186915, -3.745309059940828, -7.0, -2.044735697450507, -2.3521825181113627, -7.0, -3.134959072444847, -7.0, -2.922984815708883, -7.0, -2.5436542334738954, -2.4218095100603696, -2.893317811616112, -3.6953065224318027, -3.1215598441875008, -7.0, -7.0, -2.9854264740830017, -2.8416097121684354, -2.562768543016519, -2.8029104894190398, -2.307496037913213, -3.401572845676446, -7.0, -2.2115209972402297, -2.1804176619850706, -1.775818418551172, -3.222456336679247, -2.2542815303849095, -2.7494050038058324, -2.2381817777571724, -2.270051437134896, -2.655360107882245, -3.7500453120117676, -3.101403350555331, -2.595863489908268, -3.1917303933628562, -3.1690863574870227, -4.378942698613438, -7.0, -2.8611359755265933, -7.0, -3.079393349595296, -7.0, -3.5889156661572823, -3.4448012079904675, -1.5745203381419075, -2.4028915836471096, -7.0, -1.7534873044041706, -7.0, -2.3162123596631825, -1.9102947457629293, -7.0, -7.0, -3.450864692379766, -1.9061810639690855, -2.571708831808688, -2.850033257689769, -7.0, -7.0, -2.571708831808688, -7.0, -7.0, -7.0, -3.8674674878590514, -3.13433651094868, -1.8161676220745815, -3.2771506139637965, -2.6972293427597176, -7.0, -7.0, -3.021602716028242, -7.0, -2.636738571385955, -7.0, -3.2962576521896327, -3.8335932939984563, -7.0, -7.0, -3.1772478362556233, -7.0, -7.0, -7.0, -3.5121905991407667, -7.0, -3.0117818305481068, -2.796177717217656, -3.571009672309305, -3.076640443670342, -7.0, -7.0, -7.0, -7.0, -3.2661532687922707, -2.308153810824874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.732393759822968, -3.605412798153051, -3.5106790310322102, -2.4300005901760695, -3.440522194608935, -3.8915374576725643, -7.0, -3.208306962353663, -2.389764533517935, -2.9533684457836418, -3.5922878159521305, -3.0754252932359982, -7.0, -2.724002642487717, -7.0, -2.723402127046082, -3.1097894001793462, -7.0, -2.779476238043183, -3.026344570437043, -3.5769169559652068, -7.0, -7.0, -2.7665987210642644, -3.1231980750319988, -7.0, -3.4036066130850333, -7.0, -3.4992745818922173, -7.0, -3.2359070270406924, -3.0611696432049054, -3.517195897949974, -3.05307844348342, -3.4871383754771865, -3.688953462637418, -3.229937685907934, -3.4087794137661467, -7.0, -2.940267391446012, -3.074907822966796, -2.1868433703244703, -2.044185585342395, -3.0494764543837896, -2.796343017901684, -7.0, -3.1172712956557644, -3.639486489268586, -2.602013009816451, -3.1288837020997735, -2.3697516927426494, -3.2464493382670443, -7.0, -7.0, -3.2522865422434055, -3.089905111439398, -7.0, -2.622098840766468, -7.0, -3.0784568180532927, -2.4541516523882234, -3.108198447191592, -3.0278929853644447, -7.0, -2.4283053396747674, -7.0, -3.204337075628155, -2.1998699333598113, -3.5010592622177517, -3.422589839851482, -3.4803295879249125, -7.0, -2.5394345754799916, -7.0, -3.5203525040833177, -2.001445240874181, -3.668944734457734, -2.4107123600509404, -7.0, -3.031327657761131, -2.7781512503836434, -3.7573960287930244, -2.4021897107849237, -3.6466977312993345, -7.0, -2.4867864709381777, -2.5248286863646054, -2.4903264264026674, -3.1929853790931624, -7.0, -3.0211892990699383, -2.640779477344857, -2.189806023929912, -2.212733800963175, -3.5114822886260013, -2.4963812798964615, -7.0, -7.0, -7.0, -2.327504891195603, -7.0, -3.3973315703911284, -3.6118294794983736, -2.556239002780201, -2.7589118923979736, -7.0, -3.218535505216528, -3.1149444157125847, -3.0050732130636044, -2.89667208170219, -7.0, -7.0, -1.5508540336935677, -1.7541130095162047, -2.017418636809106, -3.574956775764507, -2.5164231095855185, -2.8135809885681917, -3.54703589974001, -3.979092900638326, -3.5525465479556604, -3.5136600060801557, -3.593286067020457, -3.7319109421168726, -3.822560336942692, -3.022153327172555, -7.0, -1.770374283682813, -2.630662523107402, -7.0, -7.0, -3.510628778069135, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6166395905393904, -2.598078862529418, -2.2220137501713593, -3.171901890731724, -7.0, -3.5303277897780863, -7.0, -7.0, -2.9978230807457256, -7.0, -3.1902382914634244, -7.0, -7.0, -7.0, -2.95944860705501, -7.0, -3.477265995424853, -7.0, -3.009981753317307, -7.0, -3.136931851267557, -3.154525408238757, -3.230193378869046, -2.695831772826692, -2.802284930100363, -2.3591021316622953, -2.7291647896927698, -3.2405492482826, -3.200516109714852, -3.5303277897780863, -3.182129214052998, -3.4740705032150436, -2.4154503326227226, -2.5220528008688223, -3.5160062303860475, -7.0, -2.7380270223694625, -7.0, -3.636888906983799, -3.1863912156954934, -3.417969642214737, -2.6699765409218195, -7.0, -2.865991800126275, -2.328583449714202, -3.3121773564397787, -2.9165416759478404, -3.1480882706622184, -2.3665704006094646, -3.2960066693136723, -2.721501472134904, -3.536116348245079, -3.5378190950732744, -3.2566576235323295, -7.0, -3.7611005389581424, -2.3560258571931225, -3.612359947967774, -3.5082603055123345, -2.880843667034579, -7.0, -3.443106456737266, -7.0, -3.1492191126553797, -7.0, -3.2400497721126476, -2.415565653474683, -2.505511739675187, -7.0, -2.493893521283257, -3.8013007844375624, -2.907993255039917, -7.0, -3.1805559407036412, -2.920905604164024, -3.4927603890268375, -2.9043097257675417, -2.834929096460576, -7.0, -2.5899496013257077, -2.2489128117674015, -2.903496947335859, -3.304571304204838, -3.936905637015932, -7.0, -3.051023823533444, -2.309755378463786, -7.0, -7.0, -7.0, -2.9755237129603316, -3.3317308928154574, -3.15259407792747, -7.0, -7.0, -3.0236639181977933, -3.214843848047698, -3.176958980586908, -3.4984484031739997, -2.170160516633716, -3.222388868967012, -7.0, -7.0, -7.0, -7.0, -3.5602653978627146, -7.0, -7.0, -3.2597133053907306, -7.0, -7.0, -3.237594000799247, -2.3552599055273786, -7.0, -7.0, -7.0, -1.8005361037952268, -7.0, -2.6775951034242316, -2.1259027647109168, -4.130341810910945, -7.0, -7.0, -7.0, -2.8887409606828927, -2.5839540689101295, -2.4430393548678095, -2.5886637957802043, -3.1994351876202076, -2.538762188781348, -2.8578147779710066, -3.022290870952613, -2.1525067474461976, -2.140443576569526, -1.8010393369976914, -3.4727564493172123, -3.5203525040833177, -3.6073477767684134, -3.5160062303860475, -3.6326597132939136, -7.0, -3.378216149749878, -3.089591144693822, -3.598790506763115, -7.0, -2.9231403560252005, -3.58363637568586, -2.036365534687841, -7.0, -3.298872915814105, -7.0, -3.090845652103492, -2.577626946713033, -2.80540375486411, -3.219846386024361, -2.858612380549469, -2.859338479128867, -2.6123021101568566, -2.77232170672292, -3.2121876044039577, -4.023818757084455, -2.6562724774894497, -3.4823017672234426, -7.0, -7.0, -2.875692505482342, -2.8271753482986925, -2.486366067362747, -2.949145952419944, -2.808632904835291, -3.517591730711908, -7.0, -7.0, -2.296376488208818, -7.0, -2.807535028068853, -2.983432966630845, -3.0808668935052506, -3.9180827846421873, -2.577588881425179, -3.8472998710539152, -7.0, -2.6634033275146614, -3.1201797515823153, -2.5317343092765503, -7.0, -2.3431188516609445, -2.90687353472207, -2.6323849760606866, -2.2613894299129877, -2.7797629407578768, -2.8254261177678233, -3.189069009399324, -7.0, -2.927027994490033, -2.562689299428688, -3.075303590984423, -2.8634418286137087, -2.249543271982791, -2.827110687466011, -2.473544089440609, -7.0, -3.4838724542226736, -3.923803369532193, -4.790482205963791, -7.0, -7.0, -4.432833051680936, -3.719082573901486, -7.0, -3.7152196541314884, -3.572417938449931, -7.0, -7.0, -4.3564656684754, -4.137654721417751, -5.008872584806385, -3.910656415587733, -4.3787793310606915, -4.696749435201623, -4.634729108081331, -3.8237349883987313, -7.0, -7.0, -4.278539038134198, -7.0, -3.7184779627626545, -3.1051410195295324, -7.0, -4.204987704187151, -4.25324105377265, -7.0, -3.4702144212290773, -7.0, -4.098037713285091, -7.0, -7.0, -7.0, -7.0, -7.0, -4.013286746786349, -3.9510702531688118, -3.242034289782914, -2.248557074060829, -3.915320673475215, -2.9072211855036825, -3.0107238653917734, -3.374198257929083, -3.1471851128693182, -3.2064660628531048, -3.216118577374879, -2.559976996012837, -3.2779146790481093, -4.179020086986456, -3.469320263337147, -2.507509902999208, -7.0, -2.931268942740345, -2.786751422145561, -7.0, -3.643304596306801, -4.418035992299948, -3.858416877723488, -7.0, -2.9725921035590557, -3.221550244716166, -4.366169013886152, -3.216297886630392, -2.167789779159089, -3.227243781503063, -2.9022186525648697, -7.0, -4.932631015748351, -3.6844862921887342, -3.9795711358729324, -7.0, -3.526892871450658, -3.325310371711061, -3.6245639690895306, -3.2163638637641165, -3.1008987303125495, -3.1737203067447206, -3.1712423051291543, -3.1237863286153718, -1.7192323137649976, -2.729246771628713, -3.376773425950115, -3.3145693943004555, -3.5964620508094636, -7.0, -3.811909980420099, -3.3791644574345927, -4.04766419460156, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7777310331453406, -1.6122210560164774, -1.7086080382628424, -7.0, -3.1740598077250253, -2.54926988029305, -3.222282827095675, -2.193700204113876, -2.0585344760699806, -2.0784784602759463, -7.0, -2.213975951766273, -1.5386094401174262, -2.315105585855791, -7.0, -3.1609866359213985, -3.1916372870312952, -2.4065401804339555, -7.0, -7.0, -2.1486026548060932, -7.0, -2.7819945894654037, -2.295267138296195, -7.0, -7.0, -2.493509055455922, -7.0, -7.0, -4.021757645983594, -2.446183662771694, -3.4074928794601025, -7.0, -3.7275412570285567, -1.3411158971195234, -3.5769169559652068, -1.4839205244275175, -7.0, -1.1488531225305814, -1.61783606882438, -7.0, -7.0, -2.9187291212991187, -1.1899783738265433, -2.963964813484758, -3.0632082200712114, -2.7878651281530042, -1.6921741159174137, -3.5518158223510157, -1.3539385356851514, -2.1277884718276874, -3.7836415902165057, -7.0, -1.3738778291825056, -1.2058757236399429, -7.0, -2.9631316941464156, -7.0, -7.0, -3.7179200258369938, -2.0012256229266927, -1.8834011507076147, -1.2448576899725807, -3.1132746924643504, -2.2956194529830842, -7.0, -3.98344585734134, -2.538824988937904, -2.7238659644435037, -7.0, -1.54669807392241, -1.5777379287652658, -3.3073890556533043, -2.877083256650651, -1.3505172146992581, -1.9970167545733903, -2.048889285630866, -2.9093777108309906, -2.2630488002706897, -2.6580909304879183, -2.1908807431004385, -2.1799713887242653, -2.0649877782305905, -3.554004321011903, -3.6093809442507068, -3.5928426831311002, -7.0, -7.0, -4.406028944963615, -7.0, -1.709391119989562, -3.4319263739116437, -2.684426418406065, -2.7153532715849886, -3.152466715105975, -2.8858110689434704, -2.811879538862458, -1.4843429861832331, -7.0, -1.5629767514931665, -7.0, -1.308824261316819, -1.8731473888125145, -3.8705209500127644, -3.4834446480985353, -1.6382812116898668, -2.0596666697498907, -2.0612945649523997, -2.35674271207154, -7.0, -7.0, -3.004894321731049, -7.0, -7.0, -7.0, -3.1712387562612694, -7.0, -1.8351537728060792, -2.4186836489220545, -7.0, -7.0, -3.226084115975824, -3.5615783683009608, -3.541079767776629, -2.2985911112975694, -3.147573276552419, -2.6415024392919446, -3.922050402167174, -3.850278552518037, -3.076154791417437, -7.0, -3.0779489985060278, -2.9383946223434494, -7.0, -2.745650634785171, -2.5581083016305497, -2.5121262549907444, -2.625018313136747, -7.0, -2.325395921692999, -2.8944545273697826, -2.9021389272114826, -2.9045352278661247, -7.0, -2.505088284381042, -2.7776339251504623, -3.5742628297070267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3329431601256925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8861521819707967, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9017488436793126, -2.425968732272281, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7528670703486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062205808819712, -7.0, -3.7315081835960253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9409197134280625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4993662825855276, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.875108743659514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100025730107863, -7.0, -4.369271532621027, -4.31863193011725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.064753658075849, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.435653285326419, -4.961022214372552, -4.67728750108277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335257256434532, -7.0, -7.0, -7.0, -7.0, -7.0, -3.396464377702049, -7.0, -7.0, -7.0, -7.0, -2.1918573243828754, -7.0, -7.0, -7.0, -3.750431248660202, -7.0, -1.9363880603822547, -3.1604685311190375, -7.0, -7.0, -3.996336518095784, -7.0, -7.0, -7.0, -4.792244564836703, -7.0, -7.0, -3.3807537708039, -7.0, -2.220108088040055, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.427323786357247, -7.0, -7.0, -7.0, -7.0, -7.0, -4.184577874932025, -2.1903316981702914, -7.0, -7.0, -7.0, -7.0, -7.0, -2.447158031342219, -3.5745521086639047, -7.0, -4.3923647071668075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3384564936046046, -7.0, -7.0, -7.0, -7.0, -7.0, -4.626843159658239, -7.0, -7.0, -3.8204860776625775, -7.0, -7.0, -7.0, -7.0, -7.0, -2.449092531119419, -2.688864568054792, -7.0, -7.0, -4.35281901669987, -3.399846712712922, -7.0, -7.0, -4.524733559186517, -7.0, -7.0, -4.541953474458237, -3.3236645356081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.689628467489746, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8221680793680175, -3.2143138974243994, -7.0, -2.7788744720027396, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.095587746918743, -7.0, -7.0, -7.0, -7.0, -3.1835545336188615, -7.0, -7.0, -4.016197353512439, -7.0, -7.0, -7.0, -7.0, -3.0382226383687185, -7.0, -7.0, -7.0, -7.0, -3.1398790864012365, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9986515959983735, -3.6986658917468582, -3.7059064557003114, -4.051654084113286, -2.590507462008583, -7.0, -4.019199401055288, -3.121923860479097, -3.5656412436434057, -7.0, -7.0, -3.225343748174189, -2.787511076846687, -3.2564772062416765, -7.0, -7.0, -7.0, -3.523659772633833, -2.716448545602954, -3.3912376459396496, -7.0, -2.895146189375992, -3.096454474606331, -7.0, -7.0, -7.0, -4.065093989357153, -7.0, -4.015359755409214, -3.2557023906723335, -7.0, -7.0, -7.0, -7.0, -3.7611005389581424, -7.0, -3.6226629418839154, -7.0, -3.3731695589037214, -3.314667608117513, -3.3247937807091326, -4.006722692201684, -4.017909395896689, -3.0670708560453703, -3.7331571251294715, -2.597287647853614, -7.0, -4.029099566823543, -4.104657791008797, -7.0, -3.207095540419218, -2.6878710752582675, -3.789404420511141, -2.6745384205386324, -3.498255401782173, -7.0, -4.024526714387152, -3.612501296864678, -7.0, -4.029505525426577, -7.0, -7.0, -7.0, -2.642563437104388, -2.812348521866597, -7.0, -7.0, -3.0391977292952763, -7.0, -3.5721452356121848, -4.140696552546415, -4.0042783722001625, -7.0, -3.3161284299147518, -7.0, -3.5947239464097467, -7.0, -7.0, -2.566872823826931, -4.064270752974006, -7.0, -7.0, -3.613030945877725, -4.022799404511688, -3.624797578960761, -3.035162808562191, -7.0, -3.7492337269818146, -2.8819088886180406, -3.6363541438170746, -3.096258082214778, -7.0, -7.0, -4.0858968111315885, -4.053846426852253, -3.7760834366397793, -3.426901463081663, -7.0, -3.227298926507505, -7.0, -7.0, -7.0, -3.374037684237919, -7.0, -3.2308866447298628, -3.564902672529205, -2.9349400959933765, -2.677150521273433, -7.0, -4.010257542998302, -7.0, -4.040681439373358, -2.904560992080643, -7.0, -7.0, -3.5907675519657363, -7.0, -3.663355362110471, -7.0, -3.7859168036624746, -3.1980545731753773, -7.0, -3.915320673475215, -7.0, -3.7328519400012916, -3.7342796444928203, -4.090716448481099, -4.132739838260885, -7.0, -4.022387125686438, -2.1165090213190982, -3.0965276656064398, -7.0, -7.0, -3.0246180624451555, -7.0, -7.0, -3.9990870226258886, -3.703162360595733, -7.0, -2.9626275880950166, -2.9961028694112493, -3.014045480587391, -2.333813535941105, -7.0, -3.1534083167071616, -7.0, -7.0, -4.038023740045158, -3.718231727911598, -3.2100240738042323, -7.0, -4.010893313104381, -7.0, -3.0899443413280387, -7.0, -7.0, -4.058615797010562, -3.565217949843888, -7.0, -4.043165720207454, -4.049799277918987, -7.0, -3.7748452995958517, -7.0, -3.3288890398395607, -7.0, -3.71637901287223, -2.982956717529521, -3.7125655278733083, -7.0, -7.0, -7.0, -4.011739561388318, -7.0, -7.0, -3.5538830266438746, -7.0, -3.4561989646592375, -7.0, -3.470675044798936, -2.8803510158338645, -7.0, -3.3766377783551063, -3.280968396871078, -4.042772337497674, -4.075181854618692, -4.047352760753935, -3.755188585608325, -7.0, -7.0, -4.140004950619449, -7.0, -7.0, -7.0, -4.266443381296273, -7.0, -4.197459753794603, -7.0, -2.2576170469974515, -7.0, -2.9271706808539353, -7.0, -3.0929154916889843, -3.4090027034017725, -4.017325554561722, -3.3993852495462185, -3.769340394703022, -7.0, -3.076640443670342, -3.394249573718604, -2.878156073810623, -7.0, -3.9983465373963645, -4.011528153857539, -7.0, -7.0, -7.0, -7.0, -7.0, -3.645520514905874, -3.5231934946968355, -3.3213536036656532, -3.356923549057265, -7.0, -3.5358424451061152, -3.71717102683231, -3.3364197048626583, -7.0, -4.0042783722001625, -7.0, -4.050147658020303, -7.0, -7.0, -7.0, -7.0, -4.0090682761922185, -7.0, -7.0, -4.052155067199565, -2.8338785384191922, -7.0, -7.0, -7.0, -4.008387230114159, -3.5464604029452773, -3.242417184417719, -7.0, -4.023992804606471, -3.3781555491104296, -7.0, -3.1505610819947703, -3.5068566550233227, -7.0, -7.0, -7.0, -2.137202378501745, -3.4613859617950706, -2.0569250609496317, -4.024854948305018, -3.3865917002612993, -7.0, -7.0, -4.010935664704385, -2.905278555134687, -3.33139837151611, -2.5048222618840112, -3.4688197748230705, -3.7385691715335407, -3.1997551772534747, -7.0, -7.0, -7.0, -3.7921114090871684, -7.0, -7.0, -4.0104271727170495, -7.0, -7.0, -3.007864112074002, -7.0, -3.4662372137034914, -3.300812794118117, -3.4350875123045923, -3.7870706389786783, -3.2007723524351035, -3.139609254468416, -3.3355080472724206, -7.0, -3.9828137621318627, -7.0, -7.0, -4.126748141560192, -7.0, -3.3138203683833587, -3.3259943001703647, -4.193986763085695, -7.0, -3.3309883935203723, -2.7702995911963613, -3.5694566075340854, -2.885438325132807, -7.0, -7.0, -7.0, -3.5799264331521883, -3.2900982395923446, -7.0, -7.0, -7.0, -7.0, -3.7640639936931715, -7.0, -7.0, -7.0, -4.0330616925381735, -2.856156278179049, -4.0231289460104955, -3.4957790855584014, -3.2995072987004876, -3.2508882480862953, -7.0, -3.0195316845312554, -3.3079618675777316, -3.712593587604018, -7.0, -7.0, -7.0, -3.6353496846184767, -3.414722721158878, -4.169733197942518, -4.065355601289965, -7.0, -7.0, -3.0374627178215423, -7.0, -7.0, -4.024813932629311, -4.144044637110949, -7.0, -2.7518904746809025, -7.0, -3.998956440470486, -2.989387516858672, -2.9436149885817446, -7.0, -2.9604390644756187, -4.485096501355642, -3.2643980119745235, -3.2315715255284156, -3.731069199110241, -1.9464574637475716, -2.5861508162245195, -2.1946612311654072, -4.472053991449704, -4.013139298635354, -4.083092338711451, -1.9833146731753937, -4.188197016558756, -3.639256561892579, -2.425760609046802, -7.0, -3.1760478274358737, -7.0, -4.149213979120526, -3.7527703904636067, -3.1068405824589407, -2.984507745681445, -4.489874142210878, -4.263438796505723, -3.6169129139475986, -7.0, -2.62445926333515, -2.962660686276774, -3.911180445710889, -4.184137565214032, -4.098522590941953, -7.0, -4.3348155125062116, -4.23149507644823, -3.4640192523981677, -2.861815439410074, -2.571734705001743, -3.727907081406697, -3.2877554109495852, -2.9593559844984885, -3.234997879686031, -2.9702228629562915, -3.374536856119436, -3.769266522533784, -3.0677833511916037, -2.9051885225908243, -2.7572579602870437, -2.5298116675310487, -2.971189916194264, -3.115042880588522, -4.046026669702541, -2.9976696969261343, -3.605601299868819, -7.0, -3.4182460340536993, -2.987653123403257, -3.3051977728112814, -7.0, -2.69966350973298, -2.943890048248473, -3.9661937108212517, -7.0, -3.680667831562386, -4.013090138125056, -2.7670903566949376, -3.7134905430939424, -2.512324146310632, -2.071120574370989, -3.1841902253587353, -4.000520840936185, -2.9919545302079595, -3.240370929872415, -2.71726052749008, -3.6536626598692936, -2.308378061066681, -4.201123897207379, -1.722413237979192, -3.2422604784110143, -7.0, -2.6683231839204535, -2.833806182171555, -3.5157745272157848, -3.2479564089581063, -4.014142361545006, -1.9917548970447791, -3.284074822337217, -3.261575091606645, -7.0, -7.0, -7.0, -7.0, -3.865370512911087, -1.6888866193218477, -2.7271714243553484, -2.016569101433193, -3.103376055257288, -2.06779903132787, -1.0520053944772132, -2.151845939100076, -3.215713079777089, -3.104359057505805, -1.3172311355441193, -2.7702453944880805, -1.9256484258513418, -2.1741567592784814, -2.4039570705665243, -3.366945663852573, -2.617133832301317, -1.5734794322253864, -2.2644760667733554, -3.184731979296402, -3.172269243539273, -2.4972964389519117, -3.5419119092113363, -2.544605409694115, -3.35430056234536, -2.493509055455922, -3.996336518095784, -7.0, -3.5245259366263757, -3.528445316413632, -2.6350386908415664, -2.1758151157660324, -2.351058713979487, -3.696531119969607, -2.744897231384195, -2.310258703941368, -2.7977968951941996, -2.5115667556967685, -7.0, -2.597068045770463, -1.8587888459766797, -7.0, -2.7259975546381723, -2.9612750268046986, -2.5108208903713702, -2.3454962568631608, -2.974930168855565, -2.2327225144353644, -2.600771282720914, -3.117188407119984, -2.4851072570571047, -2.404560059092356, -2.717878448652346, -3.097213912792869, -2.4023794041326516, -2.535875482088115, -3.760573253944394, -1.538415794607338, -7.0, -3.2277153514917414, -2.565571525942708, -2.950814047122843, -2.092794451687219, -2.4565778668777694, -2.2976135389667594, -3.0452838513951357, -3.5425764762605296, -3.3154717746546822, -4.017242084547646, -1.9979666349340235, -2.7562979384939723, -2.4099331233312946, -2.2457067039669436, -2.3652489456323726, -7.0, -2.262255606244936, -2.1754932718147155, -2.2611663839218252, -3.2936939507457654, -1.9011018868675789, -2.8373779732534894, -3.4752643006050032, -2.3910955706122814, -0.9610558337573624, -2.199125362687427, -1.7087205168985131, -2.43003472172494, -4.001041057986094, -3.9976047874604546, -2.5078693588926737, -3.1378110969861503, -2.770770215901832, -2.140593739321926, -1.4880132232611647, -2.6318194238085884, -1.2116210789649458, -1.4335810512738152, -2.4049580494240805, -2.337459261290656, -4.018242667457909, -2.6355610715693056, -7.0, -2.468158711741699, -2.018224820106199, -3.114883810844791, -7.0, -2.6359088626932117, -3.731467887193129, -1.2212825246575263, -3.1215188091346144, -3.53571596998551, -7.0, -2.8835740871078883, -3.3043181544900566, -3.097560966637652, -2.9258275746247424, -1.8658932424311052, -3.2034991183873496, -3.583576585633949, -3.714329759745233, -2.3346631405199663, -3.307410454213674, -3.234137489450963, -4.024198232206868, -2.567824277243263, -2.7972675408307164, -2.582572707393813, -2.158204767567675, -2.650935735392299, -3.1045181489741487, -2.67735804958144, -3.6977087205918364, -2.9061329346974785, -2.870069317834201, -3.69539410829111, -2.269812738261015, -3.5464604029452773, -3.5449770427414777, -1.766266186167217, -3.131297796597623, -2.4761792624817036, -3.400796934733158, -3.704407927386841, -2.52363499968979, -4.00060758706289, -2.520639467711374, -2.9318488804227223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.425941588018896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8574531170352664, -7.0, -7.0, -7.0, -5.270640411608736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.692009236142928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.151009576636842, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7658175153099185, -7.0, -3.7415455167762093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.181262515397696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.038386660938553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.060320028688285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.709236030394002, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.432231485690214, -7.0, -7.0, -3.4356623863120097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.527239246803147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.592742859342505, -4.469195886353333, -7.0, -7.0, -7.0, -3.766710207262259, -7.0, -7.0, -4.879021291480248, -7.0, -7.0, -7.0, -7.0, -4.695704895512169, -3.9765104594534497, -7.0, -7.0, -4.14317619866439, -7.0, -7.0, -7.0, -5.387551766625729, -7.0, -4.529032325426976, -4.09684052033139, -7.0, -4.655992731385616, -7.0, -7.0, -4.29542781019911, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.764187344667675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.437369992197025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.689553025611917, -5.487627565303852, -5.007256038768518, -7.0, -7.0, -7.0, -4.954401721562251, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.951353711427746, -4.781094457259969, -7.0, -7.0, -7.0, -4.294879380924228, -7.0, -7.0, -7.0, -7.0, -7.0, -5.34709767882886, -2.7715874808812555, -7.0, -4.304458212993763, -7.0, -7.0, -7.0, -7.0, -2.2174839442139063, -7.0, -3.988365695942476, -7.0, -7.0, -7.0, -3.2232362731029975, -3.8605775512444156, -3.3420276880874717, -7.0, -7.0, -3.7281913985899466, -7.0, -3.591287265058499, -7.0, -2.5628873812938795, -2.978864984347657, -4.118760590442381, -2.7907541645992353, -2.8626282269612133, -1.7219937073239866, -7.0, -7.0, -2.3729120029701067, -2.4403842548328845, -7.0, -7.0, -7.0, -3.5245259366263757, -7.0, -7.0, -3.552225622971311, -4.248582743583236, -4.008010777850515, -7.0, -2.7026028413404273, -7.0, -2.2013971243204513, -7.0, -7.0, -7.0, -3.943914757063198, -7.0, -7.0, -7.0, -7.0, -2.6578204560156973, -7.0, -2.393867559040913, -7.0, -7.0, -7.0, -7.0, -2.436843893426568, -2.44870631990508, -7.0, -7.0, -7.0, -3.8374621714859947, -1.9084850188786497, -2.305351369446624, -3.8829227906025987, -7.0, -4.045780507558271, -7.0, -2.522918224802378, -7.0, -7.0, -3.8334658601706924, -7.0, -2.607071878521178, -2.144574207609616, -2.9802306913910317, -7.0, -2.6183967876034884, -7.0, -7.0, -4.628133387541083, -3.591954555046735, -7.0, -3.823235062261409, -2.7265642161622448, -7.0, -7.0, -3.7216045442801375, -2.5224442335063197, -2.397592434038117, -3.0433622780211294, -7.0, -7.0, -4.35524073941683, -2.2120210485124043, -7.0, -3.1132746924643504, -7.0, -7.0, -3.3085948999942936, -4.2424668862353405, -2.9379189026477803, -7.0, -2.2323607123535703, -7.0, -2.3180633349627615, -3.6195107208384987, -7.0, -7.0, -7.0, -7.0, -7.0, -3.186320523991601, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9777236052888478, -1.9912260756924949, -3.4840861993579386, -2.1577588860468637, -7.0, -7.0, -2.8615344108590377, -7.0, -7.0, -7.0, -2.8228216453031045, -7.0, -7.0, -4.099956734241182, -2.595811042050961, -3.329499575762843, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495127881242933, -7.0, -7.0, -3.1927068066128585, -2.0818871394235496, -7.0, -7.0, -7.0, -7.0, -7.0, -2.514036637523143, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.204366917427087, -7.0, -7.0, -7.0, -7.0, -3.1671024172716122, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7342996631372682, -7.0, -7.0, -2.751086554886017, -4.425620381490889, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.865240225749968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.839983696540098, -7.0, -7.0, -7.0, -7.0, -3.0273496077747564, -7.0, -7.0, -7.0, -7.0, -7.0, -4.430725257445344, -7.0, -3.898231384513097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.554125581513013, -4.14789264483285, -7.0, -7.0, -7.0, -7.0, -7.0, -3.620864475265121, -7.0, -7.0, -4.124996276815198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8135809885681917, -7.0, -7.0, -7.0, -7.0, -3.0519239160461065, -7.0, -7.0, -4.025919998502018, -3.523876475638131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8451910931478994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6205524447294355, -7.0, -3.692729447141836, -4.151484768302879, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6949998327470954, -7.0, -7.0, -7.0, -2.084633313128044, -2.3944516808262164, -2.4099331233312946, -2.0360963453482763, -7.0, -7.0, -4.0244446171313495, -3.4185498620497423, -7.0, -2.2373947775919705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8706964579892498, -7.0, -7.0, -3.7116538764683042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.961842790404378, -7.0, -7.0, -7.0, -7.0, -3.67183404403012, -2.3027637084729817, -2.6235312082798568, -2.725328138344716, -3.141763230275788, -2.649918718735419, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6540802353065707, -7.0, -7.0, -7.0, -4.33976934376873, -7.0, -3.769192637796977, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8290624310732704, -2.8467493518208467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.792391689498254, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9053100621160857, -7.0, -2.896428947456993, -5.235748904808164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.900506160093372, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8076703012304836, -2.741939077729199, -7.0, -7.0, -3.8355003278673188, -7.0, -2.929482787854236, -7.0, -4.010969543011004, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6536465912546623, -3.2279723558282107, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.680901812206373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0576661039098294, -7.0, -7.0, -7.0, -3.6066321228503484, -4.532787375320257, -7.0, -7.0, -4.416045232599017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.295567099962479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8992594955985687, -7.0, -7.0, -3.8154891981186587, -7.0, -7.0, -7.0, -7.0, -4.3705685987670515, -7.0, -7.0, -4.034376319641359, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9775521394123414, -7.0, -7.0, -3.9675271761766204, -7.0, -7.0, -7.0, -4.785642983678979, -7.0, -4.22914407968993, -4.099991233544684, -7.0, -7.0, -7.0, -7.0, -4.773245067425772, -4.154089069014421, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.180441298194719, -4.1353765089832155, -7.0, -4.367905431054023, -4.764527312924223, -3.5766868052009952, -3.6419695977020594, -7.0, -7.0, -4.633051635913091, -3.9863237770507656, -7.0, -7.0, -4.962051905293788, -4.3782161497498775, -3.1670217957902564, -7.0, -7.0, -7.0, -3.783832143384441, -7.0, -7.0, -7.0, -4.990995572563205, -5.186723312657822, -5.70631060041941, -7.0, -7.0, -7.0, -4.653800825418502, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.465754519833878, -4.654253571761437, -7.0, -5.347275359089101, -7.0, -7.0, -4.606488850442648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.863679667875898, -3.328583449714202, -3.276260695356544, -2.409087369447835, -2.768144584737799, -7.0, -2.512264990600886, -3.270911639410481, -7.0, -3.735519058815171, -7.0, -4.194146492730399, -3.5986810989071634, -2.9159272116971158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7668588110214176, -7.0, -7.0, -3.2211533219547053, -7.0, -7.0, -3.528445316413632, -7.0, -7.0, -4.117679981058723, -3.9800138658866406, -3.707541789910018, -7.0, -7.0, -3.327205626925103, -7.0, -3.441852175773292, -7.0, -3.1693804953119495, -2.2044684736900795, -7.0, -2.696356388733332, -7.0, -7.0, -7.0, -2.8773713458697743, -2.596871878604247, -7.0, -7.0, -2.9362623419034777, -3.502108338302493, -3.7134625412575164, -7.0, -3.52270499273475, -7.0, -7.0, -3.4421974643102136, -2.8767949762007006, -7.0, -3.5869247081448203, -1.8712585060577351, -2.982551193789339, -3.1362448017461424, -7.0, -2.8651039746411278, -7.0, -7.0, -7.0, -3.062506775208683, -7.0, -2.8239087409443187, -3.491081413423187, -3.127428777851599, -7.0, -7.0, -3.3734433001016995, -3.300704152596124, -7.0, -3.70022763564825, -3.4413808849165113, -7.0, -7.0, -3.725339815909737, -3.64777405026883, -7.0, -7.0, -7.0, -2.4712917110589387, -7.0, -2.391255974854882, -3.0013009330204183, -2.7293268096468606, -3.485889125183105, -7.0, -4.156821635591626, -4.067480023931482, -3.6466977312993345, -7.0, -7.0, -7.0, -7.0, -3.628899564420607, -3.651762447380111, -7.0, -2.510545010206612, -7.0, -7.0, -3.1131866342143066, -2.976808337338066, -7.0, -7.0, -7.0, -7.0, -2.57978359661681, -2.2086204838826013, -3.791690649020118, -3.1894903136993675, -3.268343913951065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8019864946643342, -7.0, -3.6398847419163043, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019213251277154, -7.0, -7.0, -7.0, -3.4055171069763763, -7.0, -7.0, -7.0, -3.3234583668494677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.59315309937685, -7.0, -4.5933193025713, -7.0, -4.607143935528615, -3.7006388276638265, -7.0, -7.0, -2.638741521002334, -7.0, -7.0, -7.0, -4.133794300604513, -3.418135498425232, -7.0, -3.6956567599361905, -7.0, -7.0, -4.593618308129535, -2.955149043650492, -3.6668360970433427, -7.0, -3.294456205407271, -3.003290482940511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8774881971522934, -7.0, -7.0, -7.0, -7.0, -3.495907076467104, -4.294741706336959, -7.0, -7.0, -4.613027417022225, -3.897923849397611, -3.308571772551367, -7.0, -7.0, -4.310629596987806, -4.602374740744461, -3.4302867467096143, -7.0, -7.0, -7.0, -4.602830180692315, -3.762196103597941, -3.123357926443381, -4.618309641123433, -3.9709044981537835, -4.175705047841342, -7.0, -7.0, -4.618089954403986, -7.0, -3.278437833555403, -3.322077772222365, -7.0, -4.599173217352912, -3.212279823265849, -3.234342035215775, -7.0, -7.0, -3.9165486933741898, -7.0, -7.0, -3.6794077057902967, -4.59446989873833, -4.617325415780569, -3.3436156038671037, -7.0, -4.135736743509474, -7.0, -7.0, -3.62368148968865, -4.133528263767173, -7.0, -7.0, -4.618246884828072, -7.0, -7.0, -4.324693913861775, -7.0, -3.527361337086945, -3.0112411831706627, -3.8470376869548146, -3.788822149804023, -7.0, -7.0, -7.0, -4.607755172446473, -7.0, -4.629185257633928, -7.0, -4.422097163131711, -4.59990489536868, -7.0, -7.0, -4.682605310982301, -7.0, -7.0, -4.303476853603883, -7.0, -4.0185687482376276, -7.0, -7.0, -7.0, -7.0, -2.7258701213445855, -7.0, -7.0, -4.310714548718119, -3.9267436234751827, -4.156619811816865, -7.0, -3.775173385424787, -3.06571631252638, -3.7531341982986697, -3.81439030710247, -4.598856138249309, -2.916707569686794, -4.602678420438509, -7.0, -7.0, -4.594370448312677, -4.599195076346368, -2.837833439531023, -4.62029224791984, -7.0, -7.0, -2.5184717118179676, -7.0, -7.0, -4.29208985543996, -7.0, -7.0, -3.6938851650535165, -3.945409493427272, -3.7699678013294426, -3.296375963121168, -7.0, -2.392715859055194, -7.0, -7.0, -4.60339339779644, -3.8548176958191123, -4.65748610775906, -7.0, -7.0, -7.0, -3.690396931704288, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604798253272669, -4.606628541616139, -7.0, -7.0, -7.0, -4.665412118002188, -7.0, -7.0, -2.9192578788432386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.827959748307129, -4.596366143491465, -3.0623337450205455, -7.0, -4.342353583021706, -2.9589360561417233, -4.123470513709713, -3.596896850256032, -3.7840668171930565, -4.303638768856199, -4.136657161873879, -4.605951157564873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.377260706054062, -7.0, -4.78335321959462, -4.595055089759304, -2.9791014989115605, -7.0, -4.346949230796109, -7.0, -4.305017995761173, -7.0, -7.0, -3.604500960302884, -4.135291704475752, -7.0, -4.614433158550452, -2.2259461349748757, -2.8895580718964715, -7.0, -7.0, -7.0, -7.0, -7.0, -4.597300193190778, -7.0, -4.297235101842306, -3.4948036944645287, -4.628971005345094, -2.9465355253959706, -1.9941292181677637, -7.0, -7.0, -7.0, -3.561155612840848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5957056026935375, -7.0, -7.0, -7.0, -2.234434536184744, -7.0, -7.0, -7.0, -7.0, -7.0, -4.598823323746008, -7.0, -4.599621106961551, -3.0046812200872597, -7.0, -3.2704847380490047, -3.9568500834811964, -4.607637281414817, -7.0, -7.0, -2.9467601245381916, -3.911466567282492, -2.3664980284404695, -7.0, -2.356750609732126, -4.60094024073866, -7.0, -7.0, -3.0834399077661003, -7.0, -3.299416493405678, -4.165620175981658, -7.0, -4.605391249889289, -7.0, -7.0, -7.0, -4.619114209667246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.611903784101518, -3.8288715612054722, -4.603220178008266, -7.0, -7.0, -2.753868319655627, -7.0, -7.0, -2.6314437690131722, -4.116917527602884, -7.0, -4.629379013907319, -4.006626466242401, -3.637507923286498, -7.0, -3.1887151855781966, -4.308137378638039, -4.624024124647861, -3.709873905727599, -2.5894363731585797, -4.664162294761991, -7.0, -7.0, -7.0, -4.0454501184690255, -4.632173744035556, -7.0, -7.0, -4.314899024273395, -7.0, -4.6109474687960565, -7.0, -7.0, -7.0, -4.602049133830196, -4.6323256678521805, -4.599391757793756, -3.596707029681446, -3.4574621189595107, -2.965275059204632, -4.599490065125433, -4.652497752773742, -1.8859182451512673, -3.6958123304324237, -7.0, -7.0, -7.0, -4.147820549940331, -2.7051928669597114, -4.041234731171431, -7.0, -7.0, -7.0, -4.3140463825880415, -7.0, -7.0, -7.0, -3.4041190272580537, -7.0, -3.5932122011334005, -7.0, -7.0, -2.0441470547649265, -2.413263990604278, -3.457329219483519, -2.786264544872704, -3.3119271590844845, -1.8590974860992797, -2.983175072037813, -3.4586322542136774, -2.247582651754639, -2.773108939489977, -2.6153370597431524, -2.854809451525546, -2.805697049964797, -2.8560078656920007, -1.9712042822210618, -3.1344958558346736, -2.9598326973961973, -1.8935198289459578, -2.7483025782179413, -2.612172884441745, -3.929020213693863, -2.9498161951184456, -2.3162754078854086, -2.3037087626829402, -2.932203091884407, -4.000665408189577, -3.132481759763925, -3.2137913435388277, -3.9130399071502957, -2.242814416095409, -2.4945826812703573, -3.333422082670884, -3.270889819404854, -3.3727439493813733, -3.462622574900549, -4.007047564562988, -3.761880874972859, -3.1825378519450087, -2.7352439389249232, -2.675057846930607, -4.6009620109768665, -3.931966114728173, -2.710510943898011, -3.9675198959264786, -3.103763488014902, -3.6020527530262783, -7.0, -2.974439403782802, -3.907921679343844, -4.62148786458063, -2.709519755741255, -3.0936951178653964, -3.4059035502713977, -2.9612052955616837, -3.2881702892508025, -7.0, -7.0, -4.652594410868086, -3.432599847601894, -3.937989041454751, -7.0, -3.1487202942127217, -2.744795466104949, -2.6146262332789756, -7.0, -4.037296987157902, -4.596750995512816, -3.0305423788965262, -2.527395527157122, -3.6033816839102117, -3.3820084612910795, -3.2945134637464593, -7.0, -2.936127472933785, -2.124052746679584, -2.3559024079364916, -4.630692236153442, -3.6617022843828044, -4.6541572822721164, -2.704058018898603, -3.2500069070898077, -4.599653861243402, -3.1571338189519675, -3.068715330889723, -4.149496233465742, -3.0528104935015095, -4.597025681164456, -3.784413494186196, -3.0061532507739805, -3.620530148253107, -7.0, -7.0, -7.0, -3.8159096508867747, -3.4378397108401133, -2.293848773185784, -4.0105331576559315, -2.9319257996219097, -3.480979310410153, -3.3531037459299293, -2.566106798329171, -2.8136762808300997, -4.007715780666695, -4.595441104815296, -3.154414155554896, -3.593706862849097, -2.292411841023868, -3.552303109338354, -3.5569709750138014, -2.452879674925722, -2.7808613258809114, -3.030141476104852, -2.6480983392885165, -2.966927174230582, -3.3935532686509355, -3.1726515725810147, -3.342707730097314, -3.0674537787406724, -4.130516026695155, -4.021757645983594, -7.0, -2.6350386908415664, -3.552225622971311, -4.117679981058723, -7.0, -2.39927383467822, -2.1397778404555856, -4.291723956343732, -2.7838930747319504, -3.675246601092355, -3.5216827902622145, -4.318282514840762, -4.115133246647497, -4.128506967287956, -2.9251657982919412, -4.2923668466362255, -4.117823481975421, -1.9947418610649346, -3.827013678162476, -2.62375095902467, -3.367015895779413, -2.665483945585669, -4.602363891112775, -3.3943422178182256, -3.763149784852867, -2.877479330077011, -2.2821566721414137, -3.3628039075477067, -3.9261468671635575, -3.844870492827602, -3.247759853835692, -2.43998053517108, -3.165870561968359, -3.3641866774785254, -2.37457916233757, -4.008961933117199, -2.3021093395845074, -3.9199980309640186, -2.6023159857249434, -3.7023335848920693, -3.3677285460869766, -2.54076873485839, -7.0, -2.779059969890307, -3.751499055612203, -4.009185223506869, -3.8754953408710184, -2.85482636272822, -7.0, -3.807264355276107, -2.72159115966934, -3.932960550995896, -3.8347067478454924, -3.079365855819545, -3.276440914085364, -2.5352347645179423, -3.3242391211845153, -2.801025316543808, -2.2856890592745738, -3.2235716481850916, -3.1106222893084463, -4.593640448502303, -7.0, -2.5859995828684834, -2.5409180494795067, -3.75530848871007, -2.6624220153246885, -2.581918971095267, -3.2882918201661653, -2.571364316383313, -2.6654098753610374, -1.746031891867261, -3.772803522998071, -3.421702618946589, -4.607369228176479, -3.1943255978407317, -4.333548027189907, -3.791690649020118, -2.1633534445111513, -7.0, -3.829207252221248, -7.0, -2.0472192207082234, -7.0, -3.751499055612203, -4.292078772116658, -3.9908824926522315, -4.117138666403885, -3.6904508209430453, -3.272239555081664, -2.3487817408115292, -3.061624783982095, -3.4333323865845595, -7.0, -3.092687755629679, -7.0, -4.596652066132439, -7.0, -3.8987800132898256, -3.8361869262013224, -4.605897351644974, -2.9952469568942646, -2.6923180442592787, -2.6250601389959516, -4.121800505098974, -7.0, -3.281714970027296, -7.0, -7.0, -2.6714275736474455, -7.0, -4.599162287443591, -3.2810850412893027, -2.7403942733989815, -3.46912743091224, -7.0, -7.0, -3.767166471434543, -7.0, -2.7255688345434206, -4.304727429383633, -3.3700556852672308, -7.0, -4.617363849384386, -4.616370472291269, -7.0, -4.792521258038025, -4.617010831199084, -4.056513325012579, -3.8180452184344693, -7.0, -3.9489366538703976, -1.6682477198295125, -4.632656340381764, -7.0, -4.6170073345345095, -3.147623242121687, -2.841300312661918, -4.494425943281818, -7.0, -7.0, -7.0, -4.2485127322209, -2.388904173729535, -4.273087295212427, -7.0, -2.331601685199343, -2.173289056021275, -4.794996633134222, -7.0, -7.0, -3.952982608415478, -4.0175167795241205, -4.4927534067443124, -3.0149138474140975, -4.250893773087252, -4.190737783739713, -7.0, -3.7330017659072214, -4.253794771352397, -4.094278920414607, -2.6503591996329794, -4.052109547155785, -4.497803581102442, -3.3539791447958756, -2.8657658594694206, -4.139823135037863, -4.191908403649229, -3.169446216533984, -4.397442891379402, -2.6690579115218163, -5.094607370220264, -3.618672055598137, -5.103013064468925, -3.591221175368724, -2.9267837763578677, -1.4629860836945814, -2.696756854265414, -2.8347054240009544, -2.916329870639243, -4.793877653752079, -4.054142784362693, -3.9875150122754737, -2.640456940990227, -4.493949229970773, -7.0, -4.139613253202229, -4.250277072903023, -2.8630116102274084, -2.641505723669546, -3.0977164374180046, -4.616612029993923, -3.1606133994250425, -7.0, -3.5788380110719613, -3.550228353055094, -4.792885243796325, -4.402292340957852, -2.6948003131206746, -4.093764782337062, -2.237519302805797, -7.0, -4.79338872098791, -2.295675862872818, -3.593760125350598, -3.3618606916229434, -3.574630969495031, -2.665156614154294, -3.603887881296596, -3.338933666773873, -3.6725288583784526, -3.842928048908947, -5.097857477901066, -1.8461171517183268, -3.2341888323857413, -2.6690306426372117, -3.947531745695593, -7.0, -4.800129146035911, -2.5813604913799524, -3.757765146438979, -3.4921605252594574, -4.249051528805085, -3.3461509887569085, -4.4935695729787, -4.315329971070087, -3.83806861796557, -1.7203746208767083, -3.6163284485376055, -4.100198171834132, -4.097069803977662, -3.0528539087031565, -2.234246248744979, -4.317004147587592, -3.7720526346874497, -2.9193849551394147, -4.4949195032388225, -2.4175264570697843, -2.7499880034871875, -4.190279159369666, -3.9232854767451384, -3.264773351385913, -3.6294401821443074, -3.5394281056065973, -2.5207438940479294, -1.6328792743501936, -4.7941219138720745, -3.7175207204583036, -4.618180632232297, -2.953076575498739, -3.7346572321257514, -3.759066626088062, -2.675959499234379, -5.093890749991982, -4.618288723365895, -1.866267135039807, -3.639675361483828, -7.0, -5.093554755017995, -2.92298926049107, -7.0, -5.09324653110384, -7.0, -3.602350591194482, -3.5369195031302656, -2.7901261941058086, -3.132023632424381, -3.07420462936341, -3.1167127610047314, -7.0, -4.003745460946834, -4.79256327196696, -5.09428591129531, -3.1985979337016874, -3.260493610483121, -3.3586327127997206, -4.792451225789749, -5.094464140741792, -4.794505473856937, -2.619032726143369, -4.491477256827805, -7.0, -4.797568741143527, -3.892935928788486, -4.7929027354282665, -3.8418285554494096, -4.319623016720785, -4.059163946293072, -3.82133766507704, -3.7365038932973587, -3.4452596250187617, -3.8189859902803294, -4.140714002992303, -1.2604109603899747, -4.094631819313487, -7.0, -7.0, -4.39667001368851, -4.492453062351789, -4.3953124115330064, -7.0, -1.8082686682108675, -4.7934865515862635, -3.541247339056982, -7.0, -3.3034154449502564, -0.8980588707318411, -2.584432755164712, -1.8885611758793897, -2.1077502834521247, -2.5884514800267557, -2.480284740313284, -4.097528008441893, -3.554090939110258, -3.774304893442617, -3.9214159323948645, -3.7641285619338616, -4.24976074088798, -4.028639021200423, -7.0, -3.4317476643821796, -3.7976587145026497, -3.907665102853612, -7.0, -3.023753872818503, -7.0, -2.9316093963691396, -3.6477845207887927, -3.7172577826630526, -3.6171751426857073, -7.0, -3.2412165693415527, -3.869138498669444, -7.0, -3.2937284566278207, -1.2119596828671277, -2.0498136513778378, -7.0, -3.8380511024893247, -3.102612192216802, -3.5620023044114753, -4.616944389757526, -3.9807932332478377, -7.0, -4.0158764651452445, -1.7275234724556605, -3.278620528841023, -2.725536651487612, -2.6685256544799585, -7.0, -4.395651336963195, -3.8645180609843313, -3.226826240808092, -4.792475738361253, -4.315736001000132, -3.820481469946896, -4.495759350270359, -7.0, -7.0, -5.093288574520754, -5.0939292328222185, -4.4922329107355194, -4.792318133397602, -5.093855762641554, -3.842630038656657, -1.1139979281615506, -7.0, -7.0, -7.0, -5.094257947097275, -3.387620104684051, -3.1169256768200073, -5.093327110744394, -4.192421084256289, -4.067057323249598, -3.5667320289862197, -3.379929663285281, -1.8873167550101948, -2.641317523344695, -3.695621748893251, -7.0, -1.979818970838536, -2.6346683329870553, -1.9610176464287086, -5.095633048907243, -2.1655873706582036, -5.095981367848225, -7.0, -3.7325860376752544, -3.481380730938571, -3.5423812529322762, -2.6801712307043437, -3.2459991511977875, -4.001520705885766, -3.2840522425014473, -3.7150941324710653, -4.139595758469972, -3.2513496376590156, -2.622697454895568, -3.352685456896385, -7.0, -4.617290473188997, -4.0555242765059525, -4.492229415365499, -3.092814413659737, -7.0, -3.1644324022827406, -2.2004357471339104, -4.494631082083801, -3.897163000414094, -3.473966358354253, -2.0258117253219763, -3.003732212587054, -4.79300417300328, -3.2737138444188143, -5.09379977701746, -3.203147997054803, -3.707178282743617, -2.512643299825052, -1.4171224151307773, -2.320720809309493, -4.413859458706849, -4.144338922661946, -4.062038134817108, -3.953694125087313, -1.657708358382131, -3.1298127670406317, -5.0934532053920565, -7.0, -5.09324653110384, -3.241724797625303, -3.381588418818051, -4.492613737514819, -4.493217484224955, -3.7582717409698585, -4.793315333574228, -3.9851811187481068, -4.191576757210136, -3.436717388027081, -5.095486671604796, -3.9501178678525184, -3.1711922262700494, -3.262510415525468, -3.108671821835402, -2.818576388835446, -2.5828362847759267, -4.794481075584251, -2.3013004998657527, -3.0670765813320258, -3.5100353535497364, -7.0, -3.734162995777309, -7.0, -2.733005108513303, -3.3964106067359956, -3.647416697795443, -3.6076556067548955, -7.0, -7.0, -3.4012523038768094, -4.793353776147056, -4.794289327161528, -4.396631682159426, -3.5048071575589814, -4.39560942237794, -1.7869661639365204, -4.491218072720135, -5.093491727010932, -1.7556541929945808, -2.048847991458375, -3.2439287022907277, -2.6780919194391033, -2.700126581535961, -1.303137657032866, -2.3696436876791966, -2.2991392849753933, -1.7163629722329221, -2.190523521436355, -2.89765782100233, -2.9035143691536285, -2.0794247965545014, -2.0934592796492666, -1.4198155884716908, -2.8502016121912996, -1.7985669223334704, -1.2563143900118, -3.2763744121854446, -2.7207951665970045, -3.8494569513801715, -2.250368671567358, -2.42419057139359, -1.9414629514463753, -2.627250609866013, -4.1197296465874, -2.561057478866997, -3.1291922661481304, -3.6522359775051445, -1.609297500646989, -2.387224813600485, -2.535271144672889, -2.6266693909392713, -3.213505256885292, -3.373948932062513, -3.011044733143276, -3.177463522640562, -2.416343886613213, -2.7094772569508208, -2.1915354346857767, -3.794826009545771, -2.6327416798138907, -1.1560214758601268, -1.8809732400149861, -2.4184379801183886, -3.049599606087976, -3.844301102714822, -1.6694289158435365, -2.9627937383396477, -3.5461174829126922, -2.5643484603220394, -2.4080326832694694, -2.113966497603125, -5.097472494247438, -2.22618371217853, -3.189714174255922, -7.0, -4.158884939598661, -3.0431494595623994, -3.2685474497400993, -4.39702180876549, -1.5742934586537918, -1.5372684228232258, -2.5021355057145747, -4.793315333574228, -3.5521238242332, -4.492564842670765, -1.2690758123899828, -4.635329571719198, -2.9388562285678494, -2.5059473911672296, -2.9931380494395485, -3.947398708021437, -2.5632183241547377, -2.9567902084396147, -2.5223114231876465, -3.537274397054826, -2.9300353482108923, -3.1087324348173704, -2.0784389533027587, -2.0931871771753436, -3.891345773877661, -1.668933935404147, -1.301832343155351, -3.74249629730124, -2.153010293782384, -4.395735153999889, -3.548826018446806, -1.8757383000886039, -3.5649360299941315, -3.838639235946072, -5.093551253702007, -4.792244564836703, -4.616692519380448, -3.1847894164948185, -1.1262950143354775, -2.7308030624345148, -1.8334502422862748, -3.190506781616284, -2.6035794555086023, -1.9209980385338585, -2.3216767395735283, -3.3742121051701033, -3.50289960722803, -2.1837010676471413, -3.6956357536491224, -1.3630551204315158, -2.270849066453705, -3.107786733638018, -3.3507359100116605, -1.0110508776114095, -2.8548887593685546, -2.341920335600977, -3.5643910191366928, -3.481980662231437, -1.502857768958537, -3.647808951020386, -3.008366279393024, -3.6508034376395506, -2.446183662771694, -4.792244564836703, -2.1758151157660324, -4.248582743583236, -3.9800138658866406, -2.39927383467822, -7.0, -1.4770836778663488, -3.6018147558619757, -2.948189037822062, -2.336201203518688, -3.3881151384632187, -2.7700705006688313, -5.093236019613618, -2.7535552052190964, -1.842919698597131, -7.0, -3.6789383930785604, -3.248487880403575, -2.8384420423712386, -2.2965011662837895, -2.8172084784393747, -2.808739845117393, -3.113504660424134, -3.4822319819836443, -2.707514560598585, -1.825356965962974, -2.40145085584641, -4.394651270323019, -2.591129904389959, -2.4854802225929227, -3.5801505485256566, -1.7957676115403478, -3.9187919567908267, -4.0940236762236575, -1.9457789280586943, -3.130133092270322, -0.7900158494868508, -2.057289489110179, -2.546655746275776, -2.2375655006215744, -3.6636660324894645, -3.050716345041008, -3.6634461427299287, -2.3745420600585905, -3.242891220100266, -2.842813720315582, -2.0828023643522995, -3.0206606640506393, -3.5020662836896532, -2.161235694155678, -1.2597635834634564, -3.0446897027771316, -3.4868035633279826, -2.2751022703904096, -3.2093156249993453, -3.005896289935211, -3.2389377641260206, -1.8397649061247883, -2.217655493624378, -3.0206850232239995, -3.0426660978826257, -4.394661772492929, -4.792346156238286, -2.030548370317692, -3.1617086942021646, -2.9101010197335384, -2.576953229867915, -1.3640214094351226, -1.925256900674232, -2.0358785286367036, -1.9949881177338864, -2.832209858620681, -2.6748128133041775, -3.890850489627583, -3.097361444565494, -7.0, -2.4819725290651156, -2.84651383420016, -2.8127539221439144, -4.616345958929143, -2.5746412931863643, -3.5397484973580404, -1.4557226282155344, -3.3963493184894906, -3.8640781064148335, -7.0, -4.315273937139323, -4.139571264660785, -4.093614273071337, -3.5140161804006493, -2.23757282760331, -3.3570056965083346, -3.756241807581338, -3.793678654697431, -3.5151659357206038, -3.771762409180194, -3.5758768211262666, -3.949358635926558, -3.492659134941496, -2.5088385055893094, -3.311826787232616, -2.025559020614836, -2.9493630832543674, -3.602043026368414, -3.1653455932368795, -4.491400218248948, -2.2849563718082075, -3.563285601908917, -5.093295581361213, -2.0062076411186065, -3.3242824552976926, -3.4930814527344283, -2.8098790829156988, -3.1868151244474543, -3.4282864740894166, -3.771468489379099, -3.8151441461710167, -3.057531251859636, -3.814745129621724, -3.0310450563595204, -3.2710019473768117, -4.016695655448349, -5.0932640496888615, -7.0, -7.0, -4.785714122351664, -7.0, -4.787091911760731, -4.493778599541865, -3.9475247447286654, -7.0, -4.789136320068675, -2.262693712352328, -3.81813348070119, -7.0, -7.0, -2.9084222715130106, -2.398270231684452, -7.0, -7.0, -7.0, -7.0, -3.5817577144343704, -1.8047641753770183, -4.135584210067757, -7.0, -3.1608352072202557, -2.500372706879035, -7.0, -7.0, -7.0, -4.0190608745376055, -7.0, -4.788486548560839, -3.1773289409373007, -4.790911166601595, -7.0, -7.0, -7.0, -4.796747738875302, -7.0, -4.201847573590095, -4.785927468480128, -4.798650645445269, -3.833897567980089, -3.031089518782224, -7.0, -7.0, -3.3824534742228978, -7.0, -2.892738121210747, -7.0, -4.790833844350289, -4.202787915033841, -4.013805927340592, -3.8406496682305784, -2.2779269716765342, -3.80197964291853, -3.128405604667181, -3.333291224196901, -4.78864908260037, -4.790045778582493, -4.324810422951253, -7.0, -7.0, -4.790988475088816, -4.786616571225525, -7.0, -3.316551992958615, -2.689215620233142, -4.786872042749559, -7.0, -3.337548761830192, -4.785835031358666, -4.041497955909414, -4.210218162926443, -7.0, -7.0, -3.1381861986579302, -7.0, -3.1447471299618526, -7.0, -4.787658801910277, -3.179647524546354, -3.8939419873734353, -4.788062260178738, -7.0, -3.9568816029042733, -4.789749884853146, -3.8042485035940143, -3.806864804730897, -4.318362505336116, -7.0, -2.0005574162607793, -3.408423144659725, -2.8293160278815903, -4.008067621748033, -7.0, -4.324062851231625, -3.2149204978830515, -3.845194539177392, -3.729927106517317, -4.486139907384003, -3.191759484998457, -4.790137323895, -7.0, -7.0, -3.3397370674146667, -7.0, -4.197301238322852, -4.315977338870528, -3.4896839887265743, -2.904638275554804, -7.0, -4.787630474970182, -3.75034707354675, -4.491816764062082, -2.19495760403611, -4.012450544579183, -4.7856145249468245, -4.797828229029252, -4.204919975839634, -3.6079774707180796, -7.0, -3.4798688671351194, -2.1879892336633064, -7.0, -7.0, -7.0, -3.5583566952997225, -4.79192912977267, -3.760614364094956, -4.111611959923377, -7.0, -4.312529954073747, -2.5515042136251402, -3.8490506905695123, -7.0, -7.0, -2.4526468430785457, -7.0, -7.0, -4.785785249373541, -7.0, -7.0, -2.9437081969398093, -3.3876995495175377, -3.4939167341048294, -2.400865826995819, -4.488748078231586, -3.719630829001067, -7.0, -7.0, -4.792391689498254, -2.7694983905214636, -3.3653976050539876, -7.0, -4.78773669147004, -4.789918991668926, -3.2388714591998307, -7.0, -7.0, -7.0, -4.3160332821256615, -7.0, -3.838946988281371, -7.0, -7.0, -7.0, -7.0, -4.356376467413694, -4.794599568642681, -4.186744501716686, -2.4672732956813768, -7.0, -7.0, -7.0, -7.0, -7.0, -4.787425049380184, -7.0, -3.139217700137586, -4.7878570387741615, -3.2777183335212237, -7.0, -3.2741842493416127, -2.17972919898145, -3.6764966379114132, -2.982025009825869, -3.3037561196781047, -4.015010278861907, -3.8959816302471357, -3.112150977941765, -4.795664553841684, -4.792181496149679, -4.493032610522491, -4.335023054250718, -7.0, -4.337386040723217, -7.0, -3.3367848326610927, -7.0, -3.875482193380458, -7.0, -2.9785709156211735, -7.0, -3.675477189270931, -4.789086915088029, -4.493081452734428, -7.0, -4.788818618509576, -3.565001221278613, -4.020057280643444, -7.0, -3.845215214780156, -2.087717864069486, -2.578181898509458, -7.0, -7.0, -4.486798729097594, -7.0, -7.0, -7.0, -7.0, -7.0, -2.912101803317774, -4.508071616599375, -2.653406667089867, -2.524833607996835, -7.0, -7.0, -4.186878675087556, -3.512979142422869, -4.785806585208766, -4.786637866259987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.785486437569411, -7.0, -7.0, -2.002222839113038, -7.0, -7.0, -7.0, -7.0, -7.0, -4.488395583624388, -7.0, -7.0, -4.338609200287477, -4.193653224907199, -3.461870273308123, -3.0781848457146452, -3.9499612543414617, -7.0, -7.0, -2.6625915062474363, -3.7554867957317724, -1.7901419060922004, -7.0, -1.8424856208936586, -4.091779472763749, -4.7874392197822315, -4.787743771646467, -4.002573311204613, -3.541283570850919, -2.8510773029398084, -3.671985639697291, -4.227340280666198, -4.0154645435583305, -4.4887198891891655, -7.0, -7.0, -4.80263007659096, -4.801383126852731, -7.0, -7.0, -7.0, -4.787425049380184, -7.0, -7.0, -3.6516102551072227, -3.1761038471190988, -7.0, -4.801650631931656, -7.0, -1.7751789704469467, -3.086302615981995, -7.0, -3.1461987796436697, -7.0, -7.0, -4.332236415491443, -3.9506846844686647, -2.656261089071224, -3.389540902111774, -7.0, -7.0, -7.0, -4.196604462943301, -1.7272055849648744, -3.3699192720233055, -4.308535957626102, -7.0, -7.0, -3.5424978305931125, -3.7319042325346716, -7.0, -7.0, -7.0, -7.0, -4.195193696188285, -4.089219585886864, -3.8626017427642996, -7.0, -4.314372900009328, -3.8112129429218173, -3.789679404241183, -3.4318985066229555, -3.004280419991118, -2.9252857913595376, -4.789869675649222, -3.292887763060018, -2.896233410673829, -4.124236784040634, -7.0, -4.790932252099301, -7.0, -3.483994607181074, -4.045818287532453, -4.818667883372954, -7.0, -7.0, -7.0, -4.021781741232203, -7.0, -7.0, -7.0, -7.0, -4.788026884095804, -2.7495713646784057, -7.0, -7.0, -2.361666496845486, -2.4027332051731176, -2.394418534057963, -2.5945879160333667, -1.9120606918208591, -1.9722070522427055, -1.3267335249988885, -1.1140188594582874, -1.6654811074728242, -2.109722064140192, -2.3982791687688554, -2.1688410903647286, -1.5910039725437615, -1.7293426818743685, -1.6962648783645868, -2.0540071965371163, -1.3470906831899716, -1.8472706032338282, -1.4394306513093977, -2.182484084353431, -2.938303308337877, -1.8003968660120133, -1.9850832255533275, -1.6675127877368712, -1.5312093266203366, -3.120664134523185, -1.8973124808813662, -1.6647434274063997, -2.8523552103155794, -1.607291828089711, -2.0437751727897377, -1.611547280631969, -1.7867272544558848, -1.783566892227157, -2.0463848759412233, -2.0595688877160585, -2.150533460409309, -2.33449317333422, -1.4415908197937384, -2.2435349655419285, -4.489775728090475, -2.6155926176472097, -2.4490943841052553, -3.170975596352534, -2.583574351028345, -1.8344561795716325, -3.953082843912086, -1.8319076454770165, -3.847609671299165, -4.804187154381649, -2.97617242001532, -2.6481939831377432, -2.59396236274275, -4.793811330864881, -2.536940995549226, -3.048597158401606, -7.0, -2.8743254302416155, -2.9330738905666194, -3.8601116485509888, -4.012661503690474, -2.6949928256605835, -1.8605113744781039, -2.274319023392659, -7.0, -4.117019265436686, -4.310955155085438, -2.286489046836051, -4.522424670251202, -3.3304676115937397, -2.7909163930169654, -2.590357448108568, -4.308870197167231, -3.2676516413178485, -2.474475717141794, -2.7833468581688714, -2.0276750310603933, -2.7642384191572935, -2.7136598180717924, -2.574713083213216, -2.148891215845606, -4.789975345977952, -2.3832816661680436, -2.239880436218544, -3.4850992085981027, -2.8971231267326427, -4.311131986528651, -3.332041016492325, -2.550725195760618, -2.995559366519752, -4.184755292957543, -7.0, -4.785336954534081, -4.3092965124823595, -1.6538959041317818, -1.3053238048195381, -3.7190756631711492, -2.2593254108482665, -3.038130304046716, -2.6972223660854966, -2.2455179858468557, -2.2098569649819138, -4.495530462101731, -4.787262056515856, -2.631147162536491, -3.405737555618183, -1.8095524510925622, -2.712346599731528, -2.907411360774586, -3.291909716380065, -2.1197997981541117, -2.7163094690071827, -2.4591243219699734, -2.678652458663491, -2.1372151547842573, -2.5984563004865473, -3.466634635428093, -2.743099952936036, -4.494126753736251, -3.4074928794601025, -7.0, -2.351058713979487, -4.008010777850515, -3.707541789910018, -2.1397778404555856, -1.4770836778663488, -7.0, -3.7440154581905425, -2.8414969837489883, -3.1407530894468425, -3.1090087311892693, -3.5237738403252923, -4.785244391626177, -3.6175804115626624, -2.102208700116164, -4.484918801665807, -3.3241759801248705, -3.108482182629693, -3.6173219216479233, -1.8457064057873396, -2.700717899347058, -2.1235193223274114, -3.8373709559972196, -3.2704529682818424, -3.3480891924506277, -2.2204146672656555, -1.7647792549889878, -3.4433625685513345, -3.3438498292968344, -3.3899494256021807, -1.9913180954838037, -1.7602164742279682, -3.2200727321168943, -3.5562954043942465, -2.021777927452259, -3.39911275611016, -1.6313124360568332, -3.0459471672500875, -1.8824886165043124, -3.3955290747807227, -2.1365631103550466, -2.294349499507947, -4.7888044930446485, -2.09671105393827, -3.031422639278778, -3.4354981435439496, -2.8800206450425603, -1.8620810642481713, -4.785571833351669, -3.152086572482463, -1.8249202407771479, -3.363605265330623, -4.497565410086237, -2.7268081430156443, -3.189421836754017, -3.6734356400732615, -3.3770609522814232, -2.1928042040338416, -1.849699039591056, -2.8572763824080747, -2.978089173056143, -4.485060967233931, -4.785543369956593, -1.9864002384688655, -1.9534876520964986, -2.9444756218578463, -1.7812251479704675, -1.7593966529774778, -2.6986571996858566, -2.1568929555183947, -2.27688356060408, -2.2578200904549908, -3.2332225681395017, -3.885785128783473, -4.016747891765552, -3.744029694553289, -3.3210770203302395, -3.535380743722831, -1.5278802544226242, -7.0, -3.49373680227684, -4.09241182801244, -1.5949442024881448, -4.313009027913279, -3.6417785481765814, -3.1319392952104246, -3.882510307889449, -4.008309125342374, -3.744605875414239, -2.841195882321743, -1.9278409009449988, -3.053239134155262, -4.796498012777912, -4.788500684370557, -2.505519312608658, -4.309892651745501, -4.310891478136077, -4.7899894334126945, -3.533291784717795, -3.307799585981291, -4.316864588319736, -2.5964187650127157, -2.1953102756059963, -3.0724838474728275, -3.6754187475570377, -7.0, -2.711119811778399, -4.089785045963041, -7.0, -2.3370168971938905, -4.488867861253645, -4.789658257826966, -2.953589557642728, -2.1817462514719943, -3.845931361165108, -4.3092965124823595, -4.485799478932974, -4.7982361763679355, -4.484989890267077, -2.1712567871600528, -4.793936986698624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.229638333914494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2930751401228635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.150862315007684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.750824551038603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8733012218880476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.712716187359675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530148450992933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9404168646816653, -7.0, -7.0, -7.0, -7.0, -7.0, -5.527177328754575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.017350592437945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.290624405760645, -7.0, -7.0, -7.0, -7.0, -4.367094893123658, -7.0, -7.0, -4.401325854091834, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100370545117563, -7.0, -7.0, -4.920879550924153, -4.017992737766433, -7.0, -7.0, -7.0, -7.0, -4.226741639919595, -3.792391689498254, -7.0, -7.0, -7.0, -7.0, -4.294723346427345, -4.1483558264494045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.175047699526168, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.234653928109494, -7.0, -7.0, -7.0, -7.0, -4.6775613311560935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.487491891558491, -7.0, -7.0, -7.0, -7.0, -4.652898743329887, -7.0, -7.0, -7.0, -4.208871138246926, -7.0, -7.0, -7.0, -7.0, -7.0, -4.205312653309609, -7.0, -7.0, -7.0, -7.0, -4.941968344282969, -4.954392074004006, -7.0, -7.0, -7.0, -7.0, -4.604474458972241, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.861967294772421, -7.0, -7.0, -7.0, -2.8959747323590643, -4.034788831251184, -7.0, -7.0, -7.0, -3.7203247174174416, -7.0, -4.493903967206503, -3.577721524509021, -2.8041394323353503, -7.0, -3.212021048512404, -7.0, -3.6321534835106326, -7.0, -2.7664128471123997, -3.2753113545418118, -7.0, -2.8662873390841948, -7.0, -7.0, -7.0, -3.696531119969607, -7.0, -7.0, -4.291723956343732, -3.6018147558619757, -3.7440154581905425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2426159575692655, -7.0, -7.0, -3.317854489331469, -7.0, -7.0, -2.7535830588929064, -3.146128035678238, -7.0, -7.0, -7.0, -3.9708116108725178, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4362898941796396, -7.0, -7.0, -3.4000772605521274, -7.0, -3.9152317214694095, -7.0, -7.0, -7.0, -2.800717078282385, -7.0, -7.0, -3.747800090864369, -7.0, -7.0, -7.0, -3.0622058088197126, -7.0, -7.0, -4.149988456491476, -7.0, -7.0, -4.298350837719157, -7.0, -7.0, -7.0, -3.7176289019215365, -3.151574127994361, -7.0, -7.0, -7.0, -7.0, -3.450037299616192, -7.0, -7.0, -2.6979264448065052, -4.224066664334767, -2.7728105019145324, -4.151124590050682, -3.0100254420896038, -3.62797998982998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6546577546495245, -7.0, -7.0, -7.0, -3.912080280808671, -7.0, -7.0, -7.0, -7.0, -7.0, -2.285557309007774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.505149978319906, -7.0, -7.0, -7.0, -2.846955325019824, -7.0, -2.562852432234841, -7.0, -7.0, -2.8273692730538253, -7.0, -2.7095526127800826, -2.4533183400470375, -7.0, -2.9613931732408316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2830749747354715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5449534564447305, -7.0, -7.0, -7.0, -7.0, -3.5374412834079476, -3.4243915544102776, -7.0, -3.4104505028495264, -7.0, -7.0, -7.0, -7.0, -3.9618006391916785, -7.0, -2.9978230807457256, -7.0, -7.0, -7.0, -2.9784361776439243, -3.3858296186697827, -7.0, -3.2210228052048415, -3.6990255904722655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1872701029937605, -2.598927227835204, -3.4104397862103464, -2.632963168167261, -3.4565178578052627, -2.258005644909925, -7.0, -7.0, -7.0, -7.0, -7.0, -4.244539968815006, -7.0, -3.1622656142980214, -7.0, -7.0, -2.850986404764101, -7.0, -3.5024271199844326, -7.0, -7.0, -7.0, -3.964861744466946, -7.0, -3.700919945420287, -3.916085299843703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.75724415102197, -3.635483746814912, -7.0, -7.0, -3.657629431388952, -7.0, -7.0, -2.622214022966295, -7.0, -7.0, -5.131955320541395, -7.0, -7.0, -7.0, -7.0, -3.502472641129268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.612087216539411, -7.0, -4.096458111717453, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.425371166438941, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.305334830880316, -3.021602716028242, -7.0, -7.0, -7.0, -7.0, -7.0, -4.22855433653901, -2.949145952419944, -2.9906347965243705, -3.650501794878367, -7.0, -4.303761784087927, -7.0, -7.0, -7.0, -7.0, -7.0, -3.018621255078412, -3.3972445810103866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3258234190027447, -7.0, -7.0, -3.835817354293473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.413467412985825, -7.0, -3.5684364144168854, -7.0, -7.0, -3.286231854028553, -7.0, -7.0, -7.0, -3.662867457405056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.016824493667488, -7.0, -3.545801757159276, -7.0, -7.0, -3.7774249144047936, -3.498034723687027, -7.0, -3.768416088216332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4435758797502576, -7.0, -7.0, -7.0, -3.2610248339923973, -7.0, -7.0, -2.532928015757083, -2.6263403673750423, -7.0, -7.0, -3.393013327901293, -2.7043888651701895, -7.0, -7.0, -2.5349774634615505, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7065044222332766, -2.3645885137749625, -3.4136070709868043, -4.372208800370736, -7.0, -2.8432327780980096, -7.0, -2.9214263410152657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6718838191177494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0073209529227447, -3.834357112718405, -7.0, -7.0, -3.932372282147914, -7.0, -7.0, -7.0, -3.1790344659320064, -7.0, -3.5173038881240966, -7.0, -3.613589771790102, -7.0, -7.0, -7.0, -2.958159426578339, -7.0, -3.4448641829020725, -2.815396603595091, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7198282862543346, -7.0, -7.0, -7.0, -3.815972841673966, -7.0, -7.0, -3.4255545979519635, -7.0, -7.0, -3.769081787118219, -7.0, -3.5657297878311267, -7.0, -2.4148655692180863, -2.690970914278475, -7.0, -7.0, -4.044297447111979, -7.0, -7.0, -7.0, -7.0, -3.886377906758572, -7.0, -3.448242412634439, -7.0, -3.660770643527697, -7.0, -7.0, -7.0, -7.0, -3.1806992012960347, -3.2143138974243994, -7.0, -7.0, -4.869002774465852, -3.722502298201269, -4.168841090364729, -7.0, -7.0, -3.704554950656303, -3.9014038268252516, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8614746688571686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.506369717095504, -7.0, -4.228644131738731, -7.0, -7.0, -3.09758330530031, -4.309204179670408, -7.0, -3.793021659845983, -4.729172892126178, -3.261823435154435, -3.502654678010023, -4.612306930268642, -3.3727446770262515, -3.4575791469957626, -2.73253996230942, -4.345158000269438, -4.434073653785051, -4.161231060219129, -2.231029638923225, -4.3680450262086765, -4.390573044154603, -2.7730038314669714, -7.0, -3.5742628297070267, -7.0, -4.91436784225932, -4.016824493667488, -3.5151027924982197, -3.5658183139700923, -3.8916675221214505, -4.375791597685192, -7.0, -7.0, -2.974787932213558, -3.436295195334751, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.181128699747295, -3.9366393882144446, -4.157446693916665, -2.8992731873176036, -3.785178517542211, -3.897275115194261, -3.9860547807696953, -3.8143142002074595, -4.367467742117974, -7.0, -3.7351870627759025, -3.7717344253867693, -7.0, -3.3573043401887683, -3.9719759088495237, -3.656690453523865, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9310508467773912, -7.0, -3.5033820634737327, -4.523226041965701, -3.8778669740330005, -4.753874873446505, -7.0, -7.0, -7.0, -3.2569722899812006, -7.0, -5.4087706338279675, -7.0, -3.567990394261677, -7.0, -4.060244426898225, -3.9859949811851734, -4.319668091214678, -7.0, -7.0, -7.0, -3.7047830444928618, -7.0, -7.0, -3.6521350932027876, -2.9868471342502714, -3.748962861256161, -4.4483081629668995, -7.0, -7.0, -3.8506053969224783, -4.337219584418181, -3.417803722639881, -7.0, -7.0, -3.1067007323623543, -7.0, -2.5264226592624057, -3.630122642859312, -3.3917162351570154, -3.4234097277330933, -2.9882244123901995, -3.017559547973121, -2.299348789831753, -2.9995654882259823, -7.0, -3.2769785139092744, -3.102605194126567, -2.6722799280279195, -7.0, -2.8683504996479683, -0.9934804453918538, -3.0098473307709073, -2.4320066872695985, -2.704678374069052, -2.6597804193959593, -2.8604877374747018, -2.696356388733332, -2.621324682419535, -2.250420002308894, -3.57978359661681, -3.7275412570285567, -3.3807537708039, -2.744897231384195, -2.7026028413404273, -7.0, -2.7838930747319504, -2.948189037822062, -2.8414969837489883, -7.0, -7.0, -3.424595822549081, -2.501470072100412, -3.212897526069033, -3.3783979009481375, -7.0, -2.9736994962949725, -3.3963737275365067, -2.64064704020671, -2.146328125284129, -7.0, -2.336846920633673, -2.760723972141952, -2.1019129120616467, -3.519434194913703, -1.0695692111150856, -2.984414787243434, -3.221637755336672, -2.6111796985484577, -3.0979510709941502, -3.7378285058957847, -3.2441121152976153, -7.0, -2.670436865698442, -2.681090414494438, -2.720159303405957, -2.472712135814607, -3.6147917919564176, -2.479114039078266, -7.0, -1.7437988835406757, -2.8568496787251725, -3.4705574852172743, -3.052501563413781, -2.7610252517113727, -2.2308929853043895, -2.328065806834115, -3.3157604906657347, -3.9208534961212593, -2.4973066943841817, -7.0, -3.612836816232258, -3.288171433357922, -3.486642969023512, -1.581701955729663, -3.3917973471304803, -2.911068786880192, -3.0252473310667027, -2.6849735288231216, -2.5852897810780693, -2.2109869738321453, -2.334202350575515, -2.195240531806313, -3.399846712712922, -7.0, -2.9801083032031275, -2.4536780042348014, -7.0, -2.425153665754839, -3.021955025654265, -2.5697993757102093, -2.5155294493748626, -3.1225552211338643, -1.5777702383669767, -3.377943380255784, -1.352587832636258, -3.5764565324056203, -3.386498965550653, -2.6576703723114363, -3.5197623854242224, -2.9309490311675233, -7.0, -7.0, -7.0, -2.0593987627272057, -2.161225353364616, -1.6965505302126058, -7.0, -7.0, -7.0, -3.400710636773231, -2.941345766226938, -2.877999241615634, -2.08218675618735, -7.0, -3.454692449239477, -2.690786555281818, -3.4220971631317103, -7.0, -7.0, -2.858236335429513, -3.345765693114488, -3.2591158441850663, -2.965701346206212, -3.413243866728462, -3.0340934464167257, -3.17507672117621, -7.0, -3.130414185953231, -3.461348433647983, -7.0, -3.0471320265779482, -7.0, -7.0, -2.949064570524849, -2.626993231531775, -3.3557387836020354, -3.1067007323623543, -7.0, -3.326335860928751, -7.0, -2.769981211895668, -7.0, -7.0, -7.0, -3.458889540995547, -7.0, -2.878678439139299, -7.0, -3.2317243833285163, -2.006902900435532, -2.7130236099429497, -3.329092647195331, -3.246203041837881, -2.9235341423585184, -3.2714100837230893, -3.9211139738366807, -3.453725936962835, -2.4010297608718005, -2.3759079631553948, -3.118595365223762, -3.470704429722788, -3.9197577805018944, -7.0, -7.0, -2.483462297921356, -2.370339227105049, -3.4408041673450787, -2.9513722165534486, -2.5628684747750716, -3.957798774929998, -3.636287252098513, -3.6196150057428067, -2.696749435201623, -2.8876641776072915, -3.6398847419163043, -2.815577748324267, -2.6549462265843444, -3.626032247829019, -3.6267508536833932, -3.242342621024643, -2.46169268798851, -2.8187840149946926, -2.5903879807436074, -3.621539773321731, -3.0530357378949193, -3.9393694700746598, -3.018534070428183, -3.3283796034387376, -3.1653927267698108, -2.6024940688072813, -2.660533466698088, -1.7877087345941876, -2.9827233876685453, -3.111598524880394, -3.74401901732498, -2.6848925855320145, -3.984932166067412, -2.199974858252197, -2.948779613737823, -1.5631994287047477, -2.8478193472952396, -3.4648371618111513, -2.871621576917034, -2.725421550074259, -7.0, -3.65662517127951, -7.0, -7.0, -2.6463547060207597, -2.336308661760076, -2.9549295985668733, -3.3271545124094315, -3.624127331511917, -1.9003244482493893, -3.9219984313082707, -2.439891652622822, -2.375071602059195, -3.9278321328665817, -2.6079908585471747, -2.8525354413843815, -3.9264453478183894, -2.7047937573650462, -3.9181876613589255, -3.0313579619570263, -1.748246333307141, -2.6957880262155345, -2.8577344348976292, -7.0, -3.027879409207207, -2.9489506102455483, -2.7183434903473924, -2.640175541918576, -2.9459159885729576, -7.0, -2.264543971936078, -2.576034048242217, -2.1177035011801437, -3.6241789257480224, -7.0, -3.722428241979694, -2.7808571437595684, -2.596385605735793, -2.358382804215933, -3.6306312440205, -2.1550562214147613, -3.9525018478630236, -3.921842481405858, -3.9210098014970343, -2.187495313840703, -7.0, -2.396411996799786, -2.7671558660821804, -1.8897592881369922, -2.0350264999666092, -7.0, -3.934952707817858, -3.060603418246075, -3.368565785360332, -2.7817147401787943, -7.0, -7.0, -2.5857209678955364, -2.563595902178134, -2.4496398236151484, -3.95698436774276, -2.529510797360305, -2.880490776744196, -3.6444878264138585, -3.4719075029395614, -7.0, -3.403855575481451, -3.1860612225861757, -2.8819142594125116, -3.0765312192538117, -3.9273703630390235, -7.0, -1.3828369208823523, -1.9367507024376451, -3.9177155165594932, -3.445085022719354, -3.1931245983544616, -7.0, -7.0, -3.9216344610537055, -3.9278321328665817, -7.0, -2.396811726205253, -2.285755813383243, -2.3081294666226277, -3.062923679353503, -3.9501213475113732, -2.9334310430151227, -7.0, -3.632001499438424, -3.064036594084469, -7.0, -2.933159642052778, -7.0, -3.3333464984243864, -3.473681568244996, -2.5910441739661128, -3.621332101120809, -3.6179434348289727, -3.690771803180663, -3.273695587930092, -3.325720858019412, -3.3714834772045275, -3.2029875322570165, -2.3410765519431496, -1.844533654643206, -2.3417491818783844, -1.6870169853097867, -1.991364540377839, -2.4635446177561664, -2.761238656368773, -2.733397909361422, -7.0, -3.9179254220647413, -2.38104186650127, -2.572770615225975, -3.3311234878466514, -3.9229848157088827, -2.596677537910252, -3.6354334783407656, -3.0878942990597675, -7.0, -2.839213334538938, -2.248952111278853, -3.9557358422776656, -3.3240079328600416, -2.2013597061080556, -3.49605279796331, -2.779341797976024, -2.8314126702682967, -2.5719774398876987, -3.0626289832522775, -2.83159556961061, -3.0433265468530726, -3.464638559095033, -2.6044350997705297, -7.0, -3.18440748541232, -1.7437922504744756, -3.270897092861874, -2.8502376796666677, -2.300630970538965, -3.4433151518310963, -2.771203913197322, -3.945222316635341, -2.4197263393238386, -3.15755749745902, -3.3409891196804447, -2.4347643707610316, -2.7489198511564084, -7.0, -2.087559066692512, -4.00881300905209, -2.5513337987796993, -7.0, -7.0, -3.157809218605523, -3.2253609803726597, -3.1514720011315966, -3.3384564936046046, -3.9262909868848634, -3.1666274307398634, -2.824288582459545, -2.182482228792729, -2.9880316788997914, -3.507111357932569, -7.0, -2.366549150596584, -2.5999822600339004, -7.0, -3.921790485658187, -3.325464349547066, -2.8864473369430734, -2.804639117480264, -2.7239115285711124, -7.0, -3.9184497424011577, -2.9728711024944356, -2.853241780329114, -3.2200557602513413, -3.023046584075505, -1.9842976372678365, -2.77724438595689, -3.919862253555538, -3.620864475265121, -7.0, -7.0, -3.3485968911765482, -3.2483166403417796, -7.0, -3.2518814545525276, -3.803115554890027, -3.2111650546063077, -2.7814119230869983, -2.432182415639667, -3.985830489858392, -7.0, -3.9196532823103643, -1.5074491231009153, -2.9969929818907057, -2.214217852914229, -2.0583372711707346, -3.149248445976245, -3.0020700214018694, -3.234213474838595, -3.4584363903733517, -2.8156515263728443, -2.7103777725439344, -2.0474565968529115, -2.334989586483437, -2.847043569352527, -2.3598817355463755, -2.9075579250873234, -2.5634294911583058, -2.302961138562647, -2.1280064197702564, -1.533045512062462, -3.6163179419637905, -2.8548624729879006, -1.8051273703396125, -2.727846132072248, -2.7499635402286176, -7.0, -2.6591812433275916, -2.418595284333892, -7.0, -3.3268681598936816, -3.500236474825639, -3.2317304480045337, -2.064851907151343, -3.92957217907655, -3.0189564176376464, -3.62490060220449, -3.254934589077441, -2.4764897696670043, -3.211876648386651, -3.3250536206057983, -2.485879093748479, -2.037963736953456, -2.0155940853488956, -1.7838157793202036, -1.696804163033507, -3.6264398375610822, -1.9887152789244085, -3.920905604164024, -7.0, -3.917820481993697, -2.7891639074176022, -2.44389944970457, -3.461698570306548, -1.864078461683041, -2.5702092522113107, -2.97904226290937, -2.2962701975267965, -3.4619984629288245, -2.090555945268356, -3.472902651803664, -2.7299742856995555, -2.6990785643870536, -3.3478664523399497, -3.424805437932406, -2.449018025870428, -3.497559335583093, -7.0, -2.4051444819154186, -3.2046780026252124, -2.5594025837993186, -7.0, -2.7805093291574954, -3.453776859690442, -2.7740941824480316, -2.5517939440868913, -2.7023642471251033, -2.5997084462241684, -3.9238654751855013, -7.0, -2.838974954955468, -2.552110290277687, -3.470655453745076, -2.22286364804204, -2.1245687128412167, -2.5738298090754212, -1.8237737061247918, -3.4412760841240377, -3.92147838037569, -3.975459381886746, -4.224150912195789, -7.0, -4.0824981385057795, -3.929214503737394, -3.5437370271986532, -4.188422214635828, -3.524229160681178, -2.944529423824312, -3.6373646266794686, -7.0, -7.0, -3.524244622768923, -3.8266132855775226, -3.4864965980488223, -4.465680211598278, -3.661355126505084, -3.6827386830952396, -3.9691129189016645, -3.851243056390621, -7.0, -4.447476741667826, -7.0, -3.2997770081757754, -2.8980075137525616, -4.466333688132342, -3.6859777483144347, -3.8885725968575997, -7.0, -3.079407382205769, -7.0, -3.3632122826984414, -4.461393467035359, -7.0, -7.0, -4.300769340770549, -7.0, -3.4448971661165024, -3.762753564933374, -2.650815298037088, -3.11150254819892, -3.339507091038311, -2.7942848236913926, -3.0775914946999468, -3.1387586872454243, -3.1859296516724465, -3.4032492455205543, -2.9400762423001052, -1.6866618002274048, -2.2582380782820484, -3.5958390150297412, -2.666211711073482, -2.444695882802925, -7.0, -2.472310103458907, -2.779987084404963, -2.624642998257259, -3.1071482757090045, -4.498076109372166, -7.0, -7.0, -2.6950498311524966, -2.888225045301837, -4.168980419083789, -3.1554372598130094, -2.0220226780388404, -3.335959106148248, -2.602313552390272, -7.0, -4.117533119495977, -3.182436601464549, -4.3870693269320205, -7.0, -3.0281644194244697, -3.3387676596864866, -3.0569048513364727, -3.120281378495627, -2.506991818723615, -2.675228253593064, -2.77367125082646, -2.7998149290549836, -3.2520273296527864, -2.313958872681808, -2.9957725377281763, -3.361160995195026, -2.8991655304327213, -7.0, -2.8941683183448936, -3.031103116367241, -7.0, -7.0, -3.4450330705113963, -7.0, -7.0, -7.0, -1.7886949330230073, -1.395451208268343, -1.274108033424912, -7.0, -3.9904276584852636, -2.0075047762576936, -3.4108615542165976, -1.3332552999187972, -2.3974799238385747, -1.8669838821074494, -7.0, -1.9284311273607093, -1.4609288261682685, -2.363166473460289, -4.000737673774033, -3.6283276135598355, -2.851302038119233, -1.7906369619317033, -7.0, -3.6428600525844916, -2.798179627198126, -7.0, -2.773932647467645, -2.0869527242574843, -1.3411158971195234, -7.0, -2.310258703941368, -7.0, -3.327205626925103, -3.675246601092355, -2.336201203518688, -3.1407530894468425, -7.0, -3.424595822549081, -7.0, -7.0, -1.2242740142942576, -7.0, -1.5543757252825565, -1.1639224845618, -7.0, -7.0, -3.711089840140532, -1.6128320019979738, -3.1481911962420113, -3.4658288153574364, -2.9023655589976114, -1.5914621306074836, -3.345177616542704, -1.4046223390223078, -1.816445265937485, -3.526339277389844, -7.0, -1.0528443612908982, -1.0872307423607976, -7.0, -2.4560062365109467, -7.0, -7.0, -3.594972327590039, -1.5279979470644702, -1.4669628805341084, -1.5437694575513685, -2.9246853240244777, -2.976304116552003, -7.0, -4.1739143398014065, -2.1975061070696156, -2.5246019076142345, -3.938219417812743, -1.5033581233797837, -1.4432138730134176, -7.0, -3.4427409988358755, -1.2548616304445581, -1.525040258236046, -1.5424664648514743, -2.2873279149265278, -1.5779153111051087, -2.5992359578069637, -2.519696767159853, -2.6233432833604797, -1.6739954057443227, -3.6183619311098782, -3.3692622539148505, -7.0, -2.8087821056864235, -3.919862253555538, -4.4881133818002965, -7.0, -1.721735691640912, -3.5524248457040857, -2.142782517687065, -3.3001605369513523, -2.933681925274947, -2.3290722907547305, -3.249722340340543, -1.3026454760706987, -7.0, -1.5475513896384343, -7.0, -1.0092351981682364, -1.3563206759578796, -4.104521252618329, -3.3189498101690718, -1.7526303780711907, -1.8561146882139077, -1.7356264276341637, -2.058731591462859, -7.0, -7.0, -3.2216228577487898, -7.0, -7.0, -3.452501996795578, -3.1105591035490403, -7.0, -2.347241284193564, -1.998076772254723, -7.0, -3.085035605826861, -2.7058134205252036, -2.153126132579586, -3.3408900787491365, -2.188587626698794, -2.654451585890892, -2.1999336736522723, -2.9038557135762706, -4.09282587292398, -2.645422269349092, -2.8061277719906874, -3.0105312308878815, -2.7376894903529134, -3.918554530550274, -2.3931418587761177, -2.379231997820056, -2.3433101031623416, -2.4239087107304087, -4.023787279789847, -2.568536957184299, -3.625312450961674, -3.025510672852581, -2.681456607814865, -3.077731179652392, -2.6759897286249137, -2.139323367218689, -3.956696564894651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.728781101494365, -7.0, -7.0, -7.0, -7.0, -4.224092588494267, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8705599579152383, -3.9120093755869783, -7.0, -2.705607163404605, -4.794280028116081, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.567567425898288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0965624383741357, -4.443813527217629, -7.0, -7.0, -7.0, -7.0, -3.6845760873884554, -7.0, -7.0, -7.0, -7.0, -2.0144405287205007, -4.211910420101903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.457685133412637, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.126910294600161, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.453397341833707, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3506356082589543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.288249225571986, -3.6744937172963503, -7.0, -7.0, -7.0, -7.0, -3.2796669440484556, -2.8733734517676273, -1.7731110257441203, -2.9429995933660407, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7579423494097774, -7.0, -7.0, -7.0, -4.995959697491984, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008451123572122, -7.0, -7.0, -7.0, -4.376394442037267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.547479333931025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3663264876639647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.644832328825636, -7.0, -3.989605530597564, -7.0, -7.0, -4.0755315946639925, -7.0, -3.415974411376566, -7.0, -7.0, -3.1476763242410986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7058637122839193, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4647449647018136, -7.0, -2.034785967937848, -2.657374601115011, -7.0, -7.0, -7.0, -3.4756711883244296, -3.428620672671939, -7.0, -7.0, -3.7627723132112116, -3.1803552964487887, -7.0, -7.0, -3.075911761482778, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9351040211514494, -7.0, -7.0, -4.868245473292132, -7.0, -7.0, -7.0, -3.250175948083925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0355483209306082, -7.0, -7.0, -7.0, -7.0, -2.8698182079793284, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062581984228163, -7.0, -3.53848994978385, -7.0, -7.0, -7.0, -2.7310795776557337, -7.0, -7.0, -7.0, -7.0, -3.3057811512549824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.501470072100412, -7.0, -4.019327232480801, -7.0, -7.0, -4.295830894958585, -7.0, -7.0, -7.0, -3.368286884902131, -3.9766250520507276, -7.0, -7.0, -7.0, -3.578524605274993, -3.4385423487861106, -4.71473845170617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.796370782244777, -7.0, -7.0, -4.242309477629206, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8144473785224875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.509148736402258, -7.0, -7.0, -3.6456078256355733, -4.172989479689795, -7.0, -7.0, -7.0, -3.4776637838119564, -2.998368334404169, -7.0, -4.03763704841194, -3.518908573691414, -3.643156465619706, -7.0, -4.421381787662514, -4.522492051086991, -2.9942381684952073, -7.0, -4.376522210604112, -3.2082811125687116, -7.0, -4.020257669505882, -7.0, -4.543608690196552, -7.0, -3.9353182915022433, -4.1192558892779365, -7.0, -4.662294967076999, -7.0, -7.0, -3.6632876671684618, -7.0, -4.6811236000226275, -7.0, -3.727351448929302, -2.895238327804661, -7.0, -7.0, -3.982014802967955, -3.7192760297176806, -4.3174992211071315, -7.0, -4.19707829984804, -4.590555776208226, -3.9095025414054154, -7.0, -7.0, -7.0, -4.759436159177652, -7.0, -7.0, -2.576528116757655, -4.487609666333967, -3.906182347343318, -7.0, -7.0, -7.0, -7.0, -7.0, -4.380844126464666, -3.4037209086266897, -2.9084850188786495, -4.215324660030519, -4.041327818151258, -5.2296733116017595, -7.0, -3.4236553925733784, -7.0, -3.843525053233252, -7.0, -7.0, -3.614862077517649, -4.228759555435635, -7.0, -4.02960695581261, -4.1380657456377685, -4.7858279199958655, -7.0, -7.0, -7.0, -4.055438403167174, -7.0, -7.0, -7.0, -4.11287778605754, -7.0, -4.649403016174663, -7.0, -7.0, -7.0, -4.304770488523259, -3.02201573981772, -7.0, -7.0, -2.5185139398778875, -3.2702128548962426, -3.1524776333829094, -7.0, -7.0, -2.5571060060508883, -3.0666985504229953, -3.027796003500773, -2.853393977450666, -7.0, -7.0, -3.3014640731432996, -7.0, -2.0189165076565057, -3.6570558528571038, -3.144574207609616, -2.3649771503110424, -2.993152697040286, -1.5517776163059283, -2.7985643303338046, -2.095839662541678, -2.8260748027008264, -3.028503473608217, -1.9529538008322767, -1.6097468199942533, -3.3492775274679554, -3.5769169559652068, -2.220108088040055, -2.7977968951941996, -2.2013971243204513, -7.0, -3.5216827902622145, -3.3881151384632187, -3.1090087311892693, -7.0, -2.501470072100412, -7.0, -7.0, -7.0, -2.916453948549925, -7.0, -3.658845776321838, -2.966610986681934, -3.028571252692538, -2.9751253198007745, -7.0, -2.1561788370346315, -2.420615770625765, -2.4865316776156754, -7.0, -2.546542663478131, -3.361727836017593, -7.0, -2.351338936973356, -2.6725596277632757, -7.0, -7.0, -2.9109799468508544, -3.4597542491145123, -2.272835795025385, -1.9789685974894828, -2.6868990162494977, -7.0, -2.9222609572605434, -7.0, -2.3797082949479225, -7.0, -3.143014800254095, -3.271318745081179, -7.0, -2.1637298142593724, -1.4464007609116358, -7.0, -7.0, -2.4336555609385724, -7.0, -7.0, -4.157688410663372, -3.35869609957381, -7.0, -2.866308441316016, -3.5229655954919865, -3.7683420586445333, -3.2638726768652235, -2.746673112470323, -2.2036819649870214, -1.6862127738782688, -2.2890436366441214, -7.0, -7.0, -3.6686281593438146, -2.114076960824089, -7.0, -2.6665179805548807, -3.2121114724935333, -2.927027994490033, -2.580486338650246, -3.3752367289481646, -2.3337538404726046, -7.0, -2.1248301494138593, -7.0, -7.0, -7.0, -3.101231386790699, -3.0224283711854865, -7.0, -7.0, -7.0, -2.6847418143802058, -7.0, -3.0884904701823963, -7.0, -2.646893624167745, -7.0, -7.0, -2.7234556720351857, -3.3526326642053124, -1.4859397197668511, -7.0, -3.1085650237328344, -2.8410464654093035, -7.0, -7.0, -7.0, -2.8211858826088454, -7.0, -7.0, -3.42298357920928, -2.586727921309507, -3.39208111979816, -7.0, -7.0, -3.2833012287035497, -7.0, -7.0, -2.9011039843968383, -7.0, -7.0, -3.5776066773625357, -2.411198673955554, -2.0343164474392905, -7.0, -7.0, -7.0, -7.0, -2.062492448204363, -7.0, -7.0, -7.0, -3.4619484952037616, -7.0, -2.714999967412042, -3.419625360887743, -2.968794159231461, -1.7844102063306588, -2.7089062809976463, -7.0, -7.0, -3.384085811808576, -3.8664054983780547, -7.0, -3.446381812222442, -3.020726778628466, -2.8501747908446484, -2.937893850328434, -3.018561812897253, -7.0, -7.0, -7.0, -3.0173781687181025, -3.039678449361962, -7.0, -2.928907690243953, -2.981346957908639, -7.0, -3.46553155697355, -3.414137362184477, -2.849214606209089, -2.59402403573142, -7.0, -3.3218457327785256, -3.0457140589408676, -7.0, -7.0, -3.4781334281005174, -3.0177635091293156, -2.977418730245156, -2.636655029117369, -7.0, -3.3469394626989906, -7.0, -3.407427989055528, -3.44544851426605, -3.4848690327204026, -2.8564267724702446, -2.6334684555795866, -2.0014903272465965, -7.0, -2.9190780923760737, -7.0, -2.309128961967035, -3.5935075893317654, -2.625653611314028, -2.915575698540003, -2.066499279114226, -3.321339474830754, -7.0, -3.205745540942662, -2.993083360698062, -3.5126843962171637, -3.523226041965701, -7.0, -7.0, -3.1983821300082944, -2.4430020715710614, -3.251938666314157, -3.14035088925253, -7.0, -1.9128670578471783, -7.0, -2.57611089412084, -2.604023443105566, -7.0, -2.6430936070305093, -3.4508807115632663, -7.0, -3.0443437348951075, -7.0, -3.458788881710845, -1.5528622465259387, -2.7798025621902336, -2.687677564973793, -7.0, -2.6924944075030846, -3.2000292665537704, -3.1202447955463652, -3.2759253069068666, -3.60151678365001, -7.0, -2.878744437967794, -2.9710437918360286, -2.567752698038627, -7.0, -7.0, -3.6830470382388496, -3.2956770340174653, -2.7562556487542333, -2.7770641547424293, -7.0, -2.6659560294539566, -7.0, -7.0, -7.0, -2.458562312981994, -7.0, -2.812435847543729, -2.716122638919687, -2.0609724061803028, -2.594191581153005, -3.490660653356137, -3.4581844355702627, -3.0633333589517497, -3.5581083016305497, -3.078967336244875, -7.0, -7.0, -3.0337252442056895, -2.8495729561290286, -2.808750972349595, -3.5211380837040362, -2.8509013873447464, -3.448212941467618, -3.188084373714938, -3.9586594270529334, -3.4956830676169153, -3.641478421525803, -7.0, -2.9954596866210643, -3.792951708250132, -3.4350476413399647, -7.0, -1.6594079752165853, -2.4528083053649254, -3.404320467221731, -7.0, -4.105493153279868, -7.0, -7.0, -7.0, -3.436480695009495, -7.0, -2.829303772831025, -2.5123479092054417, -2.913681425341403, -3.8449739381468877, -7.0, -3.142880875861225, -7.0, -3.452706226511029, -3.2487087356009177, -7.0, -3.248561741359574, -3.4163075870598827, -3.4604467838807205, -3.0269416279590295, -3.245359885849709, -7.0, -7.0, -7.0, -2.784260582566084, -3.4372747974101237, -3.2643455070500926, -2.436162647040756, -2.8224482994972595, -2.6141299110951928, -2.9037409406215384, -2.3926067758336975, -2.585009279902461, -2.401113213955382, -3.3060217652155757, -3.4702634469650784, -3.415974411376566, -7.0, -2.7299742856995555, -3.4634450317704277, -3.152441238058955, -3.4212747912103465, -2.9079485216122722, -7.0, -3.372584727534948, -3.420945405921972, -2.96649372072148, -2.7411611641985343, -7.0, -3.1409477713426623, -2.3280153540825674, -3.5644293269979834, -3.6554265877459184, -3.100485422642873, -2.8246680920490563, -2.7669083343103593, -2.6224442957616705, -3.2062185182548055, -3.478854967528663, -3.053142493993366, -7.0, -3.0905323648171175, -1.6386537936044188, -3.5375672571526753, -7.0, -2.4631772812264816, -2.9360107957152097, -2.6911920418198627, -2.885361220031512, -2.3452006933769454, -2.8589881003426956, -3.1815577738627865, -2.3508748293464587, -2.526538084663585, -7.0, -2.0092770195830605, -4.0948203803548, -2.6043669434285777, -7.0, -7.0, -3.4626974081017172, -3.125481265700594, -3.4435758797502576, -3.1742052269401473, -7.0, -2.8855025689284157, -3.110126552632497, -2.3754075333087856, -7.0, -3.7017808510958523, -7.0, -2.6214730323720974, -2.7065755539150183, -3.065206128054312, -7.0, -7.0, -3.6330642726914992, -3.2849943867229943, -3.5830853663476874, -7.0, -7.0, -3.4367985102318035, -2.674248595527798, -3.1085650237328344, -3.1320995219165044, -2.7456323657784334, -3.077401823751774, -7.0, -3.418135498425232, -7.0, -7.0, -7.0, -7.0, -3.4085791254086675, -7.0, -2.939581646768845, -2.7589118923979736, -3.4370631787035837, -3.09402167763423, -7.0, -7.0, -7.0, -1.631065576393257, -7.0, -2.7668324495485024, -2.2733417616789073, -3.72876758516651, -3.521399628115376, -7.0, -7.0, -2.7982507258405214, -3.105453410538649, -2.3245154042476206, -2.7862188721316765, -3.2582061260688273, -2.1346020532876793, -3.200303182981585, -2.4323277922616042, -2.709027541498756, -2.3969835082752007, -2.122670875152478, -7.0, -2.9810631808506, -2.475792212285615, -3.453776859690442, -2.6298624609601275, -7.0, -3.637689819118401, -2.795184589682424, -3.2467447097238415, -2.9890936926103255, -3.0974886866205247, -3.5364732165424573, -2.253558269307043, -3.441852175773292, -3.03009349218267, -3.1295287738587763, -3.212453961040276, -2.1945873632331065, -2.458098017406232, -3.270174000547579, -2.647627436477339, -2.7696937519421607, -2.6094876898532853, -2.4363217001397333, -2.6055988523188973, -4.00363862217658, -2.5473644129795048, -7.0, -7.0, -7.0, -3.2921452678141216, -2.7563594434924856, -3.4702634469650784, -2.794906106516804, -2.5258774093447136, -3.455606112581867, -2.7822678165784755, -7.0, -2.4200780505130677, -3.5024271199844326, -3.2332500095411003, -2.9542425094393248, -3.2011238972073794, -3.7557752085304474, -2.9044368413491313, -3.8987211410850873, -7.0, -2.716055539354098, -3.470945147978499, -2.628604007178344, -7.0, -2.8237349883987313, -3.446537167073644, -3.048053173115609, -2.634954313027654, -2.966200417217455, -2.9293167267534956, -3.4240645254174877, -7.0, -3.0642707529740063, -3.4572761860613257, -7.0, -2.9051209859322786, -2.7366620446156418, -2.9888561135661607, -2.3401220669202907, -7.0, -3.4164740791002206, -4.618299182370601, -4.78738962135211, -7.0, -7.0, -4.253200650903366, -3.7117566286781725, -7.0, -3.9147978438103976, -3.71618147919181, -4.065355601289965, -7.0, -4.348012638422195, -4.259131787155348, -5.0070048320815355, -4.303962418375775, -7.0, -4.391860967473324, -4.0303973008567615, -7.0, -7.0, -7.0, -5.391753492606618, -7.0, -3.8594265299129775, -3.4731364734564774, -7.0, -4.67817226232306, -7.0, -7.0, -3.710300751607476, -7.0, -4.219182700931299, -4.365413100076178, -7.0, -7.0, -7.0, -7.0, -4.484271360086347, -3.764151215182033, -3.255403175912266, -2.674992288098586, -3.6481203953298564, -2.9115800295579106, -3.213960237403306, -3.045127306568027, -3.290591042549338, -2.942900541140294, -3.3539861346639293, -2.5193174451614886, -2.2535218195346234, -3.4320504882965372, -3.510077924907464, -2.9910870235879203, -7.0, -2.977679362510885, -2.9421073089893555, -3.1344958558346736, -3.444929147447511, -3.8085485512404054, -7.0, -7.0, -3.0708502534275732, -3.332204135799646, -4.7539990265859995, -7.0, -2.5888317255942073, -3.4681995860726125, -3.2931697115807563, -7.0, -4.931889916029512, -3.5461723683169426, -3.793347951733536, -7.0, -3.3637247690063745, -3.2607866686549762, -3.2922491469632345, -3.311541958401195, -3.036276545653646, -3.4532673635246596, -3.1768840607081366, -3.135781751822861, -3.2043913319193, -2.8004024124640825, -3.567976301950993, -3.7601207852645677, -3.3736203980607287, -7.0, -3.304131339528794, -3.453970311619139, -7.0, -7.0, -3.1179338350396413, -7.0, -7.0, -7.0, -2.443297610528981, -1.2613174455417835, -1.6217621131032312, -7.0, -3.0042138618420258, -2.4606805234666274, -3.3587911623917237, -1.9965970875309715, -2.367666464108184, -2.10283374010311, -7.0, -2.206575032733398, -1.4348821563488658, -2.0874974724042636, -7.0, -3.8897497752640375, -2.7218106152125467, -2.161107477642937, -7.0, -7.0, -2.565311056175449, -7.0, -2.805636766305935, -2.019957892316097, -1.4839205244275175, -7.0, -2.5115667556967685, -7.0, -3.441852175773292, -4.318282514840762, -2.7700705006688313, -3.5237738403252923, -7.0, -3.212897526069033, -1.2242740142942576, -7.0, -7.0, -7.0, -1.3989386742041412, -1.5572683665739167, -7.0, -3.443888546777372, -7.0, -1.4328691191563043, -3.2388612088708095, -3.4823017672234426, -2.984864716816858, -1.4727162014619495, -3.01717251394567, -0.9627609703517096, -1.9161154053482399, -3.5511327007286075, -7.0, -1.1461280356782382, -1.1707535448630952, -7.0, -3.2529878004090285, -7.0, -7.0, -4.000434077479318, -1.770536428863159, -2.0031124836563117, -1.5043238869079565, -2.827081946227663, -2.971275848738105, -7.0, -7.0, -2.4002500911501117, -2.649443040175375, -3.4679039465228003, -1.2698720136735946, -1.353829848797285, -3.2577985291530305, -7.0, -1.1884851927829543, -1.882366565539136, -1.4327763469597874, -2.60422605308447, -1.912224047434943, -2.1528995963937474, -2.731876434589787, -2.315476407977569, -1.939760173603782, -3.827756862978617, -3.2586372827240764, -3.5413295776666933, -3.4243915544102776, -7.0, -7.0, -7.0, -1.904038968600478, -7.0, -2.6676712278896417, -3.150961006271017, -3.375506847812425, -3.0397988994599308, -3.048247531803974, -1.2880936272069723, -7.0, -1.0881683171508576, -7.0, -1.2278569950445073, -1.5291070133753117, -7.0, -2.938186037505905, -1.858014813118205, -1.8304184418497222, -2.014431933015437, -2.1227618173540255, -7.0, -7.0, -3.4149733479708178, -3.1327398382608846, -7.0, -7.0, -3.450659594627712, -3.5830853663476874, -2.290246669219223, -2.394013663157313, -3.4913616938342726, -3.44544851426605, -2.6872316010647745, -2.222305661264923, -7.0, -2.3564083270389813, -2.9747419045009504, -2.668007141833563, -3.296281174399547, -7.0, -3.497067936398505, -2.459057254641927, -7.0, -3.4827307000799426, -3.40705081480425, -2.809572662995666, -2.4222888260527875, -2.349832359203467, -2.960787780819836, -7.0, -2.3447664235957415, -2.9544033294677883, -3.4410664066392633, -2.9425041061680806, -2.7224693858840308, -2.5188428262865648, -2.0778951394943377, -3.5203525040833177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.884323253366666, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.099876225207085, -7.0, -7.0, -4.619615005742807, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.470513392168665, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.463474909963959, -7.0, -7.0, -7.0, -3.1855421548543754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.794648350506729, -7.0, -7.0, -3.2474822606770544, -7.0, -3.2350231594952237, -3.6277753752293034, -2.926342446625655, -7.0, -7.0, -2.455606112581867, -2.840106094456758, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.115133246647497, -5.093236019613618, -4.785244391626177, -7.0, -3.3783979009481375, -7.0, -2.916453948549925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6461095219788477, -7.0, -3.132579847659737, -7.0, -7.0, -7.0, -7.0, -3.7069736761761782, -7.0, -7.0, -7.0, -7.0, -7.0, -2.718501688867274, -2.4265112613645754, -3.874945436085532, -7.0, -5.346613081976176, -7.0, -3.2487087356009177, -7.0, -7.0, -7.0, -7.0, -3.7444494574467986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3234583668494677, -7.0, -7.0, -7.0, -7.0, -4.352568386179309, -2.9197751944228614, -7.0, -3.390758528738717, -7.0, -7.0, -4.149803938227022, -7.0, -7.0, -7.0, -7.0, -7.0, -1.335792101923193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.388509715314879, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.732956369575625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3643633546157306, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6160551949765862, -7.0, -7.0, -7.0, -7.0, -7.0, -3.118264726089479, -7.0, -7.0, -2.8130803608679105, -7.0, -7.0, -7.0, -3.6157828483192556, -7.0, -7.0, -7.0, -3.4410139714466967, -3.75767433350098, -7.0, -3.266231696689893, -7.0, -3.1646502159342966, -7.0, -3.2415081678196804, -3.4565684542382322, -7.0, -3.74170298395774, -3.5949912045608907, -7.0, -7.0, -7.0, -3.471438407389299, -7.0, -7.0, -3.615611083250255, -3.00987563371216, -7.0, -7.0, -2.6314437690131722, -3.1586639808139894, -7.0, -2.991779669753309, -7.0, -7.0, -7.0, -3.8015720810951765, -3.1760912590556813, -2.945222316635341, -3.180412632838324, -2.8575335121635788, -2.374998155900169, -7.0, -3.3089910290001643, -3.6094876898532853, -2.865893242431105, -7.0, -2.9531700326373262, -3.262332413822626, -2.743999441724611, -3.550105999347593, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3136563466180315, -7.0, -7.0, -2.334357996662195, -3.685726814136828, -7.0, -7.0, -2.4498639247181444, -7.0, -3.098782124314692, -2.9344984512435675, -7.0, -3.552303109338354, -4.128218274974031, -7.0, -3.1965906541173066, -7.0, -7.0, -1.9608405922118757, -7.0, -7.0, -7.0, -2.78354628227035, -7.0, -3.3000517321200418, -3.3400473176613934, -3.4323277922616042, -7.0, -3.17516835576208, -3.3356584522893016, -2.9399030745454158, -7.0, -7.0, -3.5478977175630972, -3.4255342204982635, -2.914210891401378, -3.1958996524092336, -7.0, -3.2725377773752373, -7.0, -7.0, -7.0, -2.8350137707602987, -7.0, -3.514282047860378, -7.0, -2.7101173651118162, -3.0507136194470106, -7.0, -7.0, -3.339650157613684, -3.3666097103924297, -3.6220412382089324, -7.0, -7.0, -2.879955585122749, -2.6859406824820153, -3.2357808703275603, -3.307709923404807, -3.3527611917238307, -3.6817837664678814, -7.0, -3.591120282237383, -7.0, -4.298800696027079, -3.341038631677523, -3.5643109099606027, -3.6918768225593315, -3.1565491513317814, -3.2725377773752373, -1.9959119441113262, -3.2843179154306097, -7.0, -7.0, -3.781863037624198, -7.0, -7.0, -7.0, -7.0, -7.0, -2.916303517484374, -2.7937903846908188, -3.276748941031243, -3.279134394034571, -7.0, -3.4495298223692266, -7.0, -7.0, -7.0, -7.0, -3.0339404652229804, -3.1202447955463652, -7.0, -7.0, -3.2511513431753545, -3.126780577012009, -3.1051694279993316, -7.0, -3.375114684692225, -7.0, -7.0, -7.0, -3.226857570288723, -2.8125122842899826, -2.957607287060095, -2.6681787645363455, -2.5636505661699873, -2.766164891363784, -3.729267205559747, -7.0, -7.0, -7.0, -2.986995539724382, -2.605305046141109, -3.1914510144648953, -7.0, -3.1876147137990425, -7.0, -4.299964668624155, -7.0, -3.087994255099714, -3.11145839180201, -7.0, -3.1484484035233837, -2.718593944732072, -7.0, -3.509740015570382, -3.3972445810103866, -2.8328281295393536, -3.3481100684802376, -2.7948364578145615, -3.234179705196503, -7.0, -3.439332693830263, -7.0, -3.514503479814343, -2.977266212427293, -3.881859970905687, -3.174931593528443, -3.20194306340165, -7.0, -3.819478128362123, -3.252610340567373, -3.3991543339582164, -7.0, -3.243286146083446, -2.9024108711664565, -3.014380511517664, -7.0, -2.6707758036974223, -4.37278316770235, -2.94819554675934, -7.0, -3.115943176939055, -3.2076343673889616, -2.8391636829146503, -3.17260293120986, -2.6268534146667255, -7.0, -3.2528530309798933, -2.8407814386722263, -2.8252406011131854, -3.380452449427833, -4.169582914463755, -7.0, -7.0, -2.645422269349092, -7.0, -7.0, -3.159266331093494, -3.4781334281005174, -7.0, -3.103461622094705, -7.0, -3.1010593549081156, -2.858236335429513, -3.1917303933628562, -2.8058405488146727, -7.0, -2.3003613358214947, -3.499475970480061, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2814878879400813, -3.754806855354423, -7.0, -7.0, -2.827545493174686, -7.0, -7.0, -7.0, -1.837937142458874, -3.4658288153574364, -3.0819181438484713, -2.3283796034387376, -4.241181094571635, -7.0, -7.0, -7.0, -3.4265519237382676, -3.5029730590656314, -2.74342265320835, -3.4818724103106633, -3.413634997198556, -2.910268571619067, -7.0, -3.156851901070011, -2.5153060147156823, -2.3384564936046046, -1.986024882006687, -3.094471128641645, -3.2005769267548483, -2.762678563727436, -7.0, -3.409087369447835, -7.0, -3.4847268042986617, -3.125202335387921, -7.0, -3.555698894718901, -7.0, -3.879312558336867, -2.7910888551844675, -7.0, -4.003934206173708, -3.1486026548060932, -3.295567099962479, -3.0725256109749517, -7.0, -3.2962262872611605, -3.0062520513693647, -3.8435442119456353, -2.7466341989375787, -2.8452014311543485, -3.500648063371912, -4.448728214389335, -2.8379565067088195, -7.0, -7.0, -7.0, -3.8165726960261033, -3.22219604630172, -2.919601023784111, -2.962606072924127, -3.2347702951609167, -7.0, -3.471731651480051, -3.2227164711475833, -2.86421433046133, -7.0, -7.0, -2.9219464542294102, -2.9752019622578523, -4.561196822498337, -3.3606450425580268, -4.049657650569741, -7.0, -2.8478193472952396, -3.559617741918764, -3.134686992556854, -7.0, -2.8339965879428433, -2.876506504265881, -3.031206419827462, -2.799027092578261, -7.0, -3.1711411510283822, -7.0, -7.0, -2.9228551562119045, -2.8962505624616384, -7.0, -3.2860071220794747, -3.0227581942367694, -3.214578953570499, -2.9575540809979275, -7.0, -7.0, -4.604604005662973, -7.0, -7.0, -7.0, -7.0, -4.087497472404264, -7.0, -4.122849103955043, -3.9820280052712484, -4.0143104809633074, -7.0, -4.322136564096103, -4.424840817562293, -5.001461111811095, -4.590886398373238, -7.0, -4.2042466334108095, -4.227974068680214, -4.064570292244026, -7.0, -7.0, -4.544356887054272, -7.0, -4.241683421140342, -3.65571454961871, -7.0, -4.666265192538056, -7.0, -7.0, -3.9352696848113395, -7.0, -4.383878172624137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4185084434734003, -3.3085644135612386, -4.200941650254682, -3.0641947231369087, -3.1528486915725082, -3.253176407377487, -3.868428902768081, -3.190471770573345, -3.5746451400686006, -2.564012682679818, -3.2971036501492565, -7.0, -3.7113009599161657, -3.2898296651030074, -7.0, -2.9872654962543743, -3.873959654743353, -3.158060793936605, -3.5483894181329183, -7.0, -2.893603260420453, -7.0, -3.0970639128944124, -3.3918972562576584, -4.476681628454222, -7.0, -2.642312296447397, -7.0, -2.994943243789128, -7.0, -4.707845993224391, -3.4074588904573924, -3.9383695974518065, -7.0, -3.5608030019939636, -3.8435909077665396, -3.9436358188134504, -3.209336255749449, -3.2814878879400813, -3.3820170425748683, -3.384038274877458, -3.2946866242794433, -2.9806849743633146, -2.9784014307637876, -3.296860645545076, -3.6500159524718385, -3.805009292324597, -7.0, -3.6774244377012475, -3.917977882592908, -4.313761796292436, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4655993959782605, -1.4391836821692012, -2.023170121121397, -7.0, -2.962527174843811, -2.7663747092874, -7.0, -2.275848610309422, -2.000867721531227, -2.169168462503224, -7.0, -2.4344312381751503, -1.5989467559038193, -2.4788069021772885, -7.0, -3.307709923404807, -2.7683420586445333, -2.241594675741352, -7.0, -7.0, -2.2742220133299713, -7.0, -2.581380688709987, -2.5773276363569475, -1.1488531225305814, -7.0, -2.597068045770463, -7.0, -3.1693804953119495, -4.128506967287956, -2.7535552052190964, -3.6175804115626624, -7.0, -7.0, -1.5543757252825565, -7.0, -1.3989386742041412, -7.0, -7.0, -1.918244856167806, -7.0, -7.0, -7.0, -1.3306868777352578, -3.450864692379766, -2.7641761323903307, -3.41161970596323, -1.5327543789924976, -7.0, -1.406798151621762, -2.2856406428815594, -3.6154239528859438, -7.0, -1.3250852078064717, -1.1694498158686364, -7.0, -3.129514123772523, -7.0, -7.0, -7.0, -1.932414071943652, -2.267696802793544, -1.3174007955788842, -3.2011238972073794, -2.6111920608684343, -7.0, -3.8975721138257304, -2.3947017784328417, -2.598404238298366, -7.0, -1.4516779142260183, -1.7000386892774444, -7.0, -2.507518555576424, -1.4764657157545893, -2.4183113373400764, -2.2623631847646597, -2.7191931306339363, -2.4570934773357136, -2.9719712763997563, -2.7557363026383275, -2.6532125137753435, -2.1453328670424816, -7.0, -7.0, -7.0, -3.1360860973840974, -7.0, -7.0, -7.0, -1.7039697867157162, -7.0, -3.0480406308580337, -2.993876914941211, -3.407447560198671, -3.1089755442778646, -3.433289685195026, -1.2708904806332533, -7.0, -1.414617806009165, -7.0, -1.3707986436567077, -1.9737758126634288, -7.0, -3.119585774961784, -1.5936667387290353, -2.3694220261687753, -2.322834152526903, -1.9784087926230391, -7.0, -7.0, -7.0, -7.0, -3.137670537236755, -7.0, -3.378942698613437, -7.0, -2.4978507395784066, -2.7538383010289067, -7.0, -7.0, -2.9135489579065177, -2.2785249647370174, -2.94126290931895, -2.190064768547934, -2.5491784867535645, -2.754157142891773, -3.3441301768262788, -7.0, -2.7895807121644256, -3.119585774961784, -3.629817196018516, -2.5420781463356255, -3.1017470739463664, -2.990554105139274, -2.1958996524092336, -2.2676409823459154, -2.5071290188367894, -7.0, -2.57467419083833, -2.8494194137968996, -2.6896048008603892, -2.8883199286752164, -7.0, -2.824451270036613, -2.1850461017086076, -3.0049658871068234, -7.0, -7.0, -3.766239292954104, -3.9421073089893555, -3.7666111098329864, -3.2060895755188294, -2.8415911806891856, -2.868032822188796, -3.548978724921236, -3.4096191784089713, -2.764291683647891, -2.7023130166283007, -7.0, -7.0, -2.183471294547756, -1.8582697748506578, -3.263849021837472, -3.7789948919347194, -7.0, -3.644635503768153, -3.6422913615024184, -1.9284255736341038, -2.720405641746029, -3.940690765404612, -2.4644976034256225, -2.370965741214641, -4.261048643344225, -3.9499508114323683, -4.2430132311496775, -2.866150961478457, -3.034887856589644, -7.0, -2.955740651181192, -3.0049658871068234, -7.0, -7.0, -3.952041340793274, -2.917779411584164, -3.403953488790828, -2.6296264535946183, -3.54476236021663, -3.207050607980928, -2.9085337585096873, -2.4305067377450893, -3.6455941844910615, -3.253822438708073, -2.750893920382125, -3.2219592832353405, -1.6823812847962216, -3.648993910859345, -3.95970902424643, -4.306682311019055, -2.2557500142024325, -2.931365398745314, -2.036197075021773, -3.256017623739166, -1.6921632174908048, -2.9348910465273987, -3.407949045697151, -3.0268936051269018, -2.8648844787899463, -3.958038016098337, -3.9599472157084987, -3.960232873128512, -7.0, -2.7640073104321687, -2.1781725804252074, -2.3383017338766767, -3.9461328133753497, -7.0, -1.9279696154297532, -7.0, -2.9891788795202707, -2.5209131930646254, -7.0, -3.1190798477344224, -2.343836681055772, -7.0, -3.2067809156837686, -7.0, -4.2499317566341945, -1.4591621739243248, -2.7119211722353125, -3.0464707760442677, -7.0, -3.2973227142053023, -3.4787107555127594, -3.100284367027806, -1.9949680589177388, -3.674240933242811, -4.273371711989729, -1.7817445817033408, -2.2467768032158, -1.836405272525313, -3.399797293677605, -7.0, -3.0154479997419172, -2.7056094753324085, -2.494513663474121, -2.298957986061134, -3.6460849959598156, -1.849486707095343, -3.957343853304138, -7.0, -7.0, -2.4153039871051005, -7.0, -2.7193536865753405, -2.852362676992824, -1.958065052462858, -2.2234036800839756, -7.0, -3.772615049849171, -3.485934263771752, -3.364199102439187, -2.763565073147549, -7.0, -7.0, -2.9609235685693225, -2.897330976597888, -2.376617961114693, -3.959566046637928, -2.795893642055278, -2.1090583522445936, -4.255031163345551, -3.601806578961057, -4.2561161466543815, -3.3386256077370664, -3.7872715070480547, -2.8654768631810366, -4.023458237643675, -7.0, -3.478470295686062, -1.196619752663687, -2.4121877253877053, -7.0, -3.4654076392388364, -1.896603369554253, -4.2413970416496465, -3.463220879774792, -3.6412261547554836, -3.468002515402457, -4.2431869241314715, -2.2929993067646084, -2.563189201196379, -2.141555221367973, -2.17947947504115, -3.7800291273373383, -3.245107089975072, -7.0, -4.248953615495708, -3.4876567673027137, -3.851930678640268, -3.03291165884321, -7.0, -4.250200359678991, -4.2576785748691846, -2.6640120336367628, -7.0, -3.9411385943096846, -3.5791888919086445, -2.7620921705056984, -3.769303460189082, -2.790613517602193, -3.096307373399723, -3.513150985376206, -3.112157966516305, -3.2350231594952237, -2.6409957833019644, -2.7154926546774614, -3.408627555236641, -2.519460226604742, -4.2518084986240465, -4.243286146083446, -7.0, -3.4801507252732806, -3.29605548290054, -4.249124949303172, -4.244079106672388, -2.6327660323507387, -2.9486574321413204, -3.110228850717288, -3.942950070077099, -2.3627886725708787, -2.232104663558627, -3.2595938788859486, -2.6469235999743512, -2.485199324904065, -3.268437552261454, -2.742814875476512, -3.191893281428276, -2.651808555723068, -3.3619166186686433, -3.0668614734064072, -2.8228012362482873, -3.298610521540568, -3.2219355998280053, -7.0, -2.4341989911773516, -2.4775805826121924, -2.598254368247123, -3.770483809431108, -2.3143674461762864, -3.941883951154944, -3.181157317880606, -4.254837993329288, -2.7139103541289553, -3.949365607393135, -3.9528408566757016, -2.104272447338898, -2.504697352451001, -7.0, -2.4231560648103123, -3.4533183400470375, -2.506035758960099, -7.0, -7.0, -3.5514011980984597, -3.642711770167333, -7.0, -3.9516046200484136, -7.0, -3.777644277696485, -2.8692489806948664, -2.4910270096971785, -2.293993567509566, -2.4554864349684373, -4.241870088685618, -3.0202637650809114, -2.6728995653153875, -2.9850717645683855, -3.9424297343069687, -3.5472330375018624, -3.504923724351828, -2.7153300367198354, -3.5734518220354854, -7.0, -7.0, -7.0, -3.470753400178036, -3.5432234514864356, -3.94485265185328, -3.097719940343722, -2.4545566959901555, -7.0, -3.942528893958499, -7.0, -7.0, -3.6554505918626528, -4.256043898702031, -7.0, -3.5586365820562924, -2.924060492895014, -3.4988616889928843, -2.2588006605991375, -2.6722826247889206, -2.99563519459755, -7.0, -7.0, -1.2533958383431552, -2.8029560678922834, -1.6038331880566845, -3.178593294899047, -2.948063489231294, -3.0046079422403533, -3.4707778833351246, -4.250224769901964, -2.966125542521808, -2.4259105639374527, -1.4326116352142744, -2.458078374515982, -2.9315849874708, -2.189294463936617, -2.793404987454742, -3.9451237701221196, -3.225262277614999, -3.0947549170487743, -2.714131144414292, -7.0, -3.77271278687713, -3.062699472253201, -3.4037331527937047, -3.4948036944645287, -7.0, -2.8518017263087634, -2.8746864162342978, -3.9645895874899035, -3.8191928486335787, -3.79376710997917, -2.7002609340449686, -1.945108057741629, -4.247236549506764, -2.248480619786217, -3.165812920092044, -3.6571036800122543, -2.646674801889762, -3.3229998633420332, -2.9684329117450887, -2.90760481522294, -2.807271876243159, -3.047366505192591, -2.3818883055109636, -2.4387005329007363, -2.9478744658331997, -2.2408364563492156, -7.0, -7.0, -4.241621180791424, -2.9410142437055695, -2.5999448332762145, -3.4064185122774226, -3.3013676489684136, -2.711474223671339, -3.4040269092889157, -2.959177727114837, -3.0751818546186915, -2.2596934032537566, -3.6550903907290384, -2.9611837098124356, -2.9640340493016373, -2.9776754813504196, -2.7957772425463525, -2.1153924936862136, -2.988758028972738, -7.0, -2.7969679111473877, -3.0228800220022025, -2.619681355828017, -7.0, -3.2192510215768, -3.9468941951023266, -3.1350053669438873, -2.818979550170818, -2.9675674753537584, -3.2405719381016747, -4.244499778833843, -7.0, -3.0350737955506264, -3.647480773173676, -4.256188382589775, -3.303651959291475, -2.883580326836657, -3.3477689676073514, -2.104002177228143, -4.241994489156781, -7.0, -3.0264176202165225, -3.767840603286548, -3.950462218905598, -3.3729733396670385, -3.660378441183945, -2.8756292278303137, -3.159903204454949, -2.8439098615708867, -2.4323720315236423, -2.931359432137285, -3.367894054656778, -3.4561907848321316, -3.393800752213584, -3.5221161996177264, -2.5662357477435127, -2.819464511838505, -3.275683892428806, -2.6607788719967416, -3.8418285554494096, -3.1428990655480398, -7.0, -3.178634337498273, -4.253338005326106, -2.7826091089197362, -2.470954121333649, -4.283629087730046, -3.7962134274930612, -3.4686426683915115, -3.9836713828601966, -2.4935723149618294, -3.135215642869843, -3.0771390209860074, -3.626500047045582, -3.7353593330017105, -7.0, -3.619436216286686, -4.089481202687437, -3.5776832455012926, -3.278820823997914, -2.120642153928635, -3.113991074353135, -2.9233053861436202, -2.529584855843978, -2.8008932412190894, -2.5533367823768884, -2.473737803040008, -3.138753678977215, -2.2563819751372423, -2.106685142415535, -2.569785593990233, -3.1308890762967754, -2.6367726520161257, -2.3993302273046977, -3.793580867368156, -2.281260687055013, -2.5143263432841403, -3.4679039465228003, -2.702261911134961, -2.9004206824492385, -3.33577873881047, -7.0, -2.3902359679939655, -2.4031340054832113, -3.4086543665017204, -4.249418507235988, -2.8926510338773004, -7.0, -2.1448000423056075, -3.5843500735453686, -3.865233662340489, -2.837588438235511, -2.9684699766014884, -4.244252373972473, -2.8888096618586907, -2.521296614270463, -2.7955380509603387, -3.208916571076424, -2.2738821275668677, -2.5611945858903096, -2.584540109305189, -2.2395294860605826, -3.65566656923067, -2.180523842173084, -2.2081172670574314, -2.8515535433095853, -2.5643200201098937, -7.0, -2.706759401357577, -2.7858596932679207, -2.9737434376601035, -7.0, -3.766561552637531, -7.0, -7.0, -4.045440339814774, -1.1205007875965254, -1.8523459656801773, -0.804111708162889, -3.101231386790699, -2.4753944354191564, -1.677145884991026, -2.194096756428317, -1.952335972434747, -2.7154625954409997, -1.6991097547853513, -3.6429341748117063, -1.6443702746331539, -1.3800556005286617, -1.9105651195868223, -4.282939165754773, -2.828717168654868, -2.5551629186862312, -2.058662717220406, -3.416117232254335, -3.174520134964361, -2.034269509370409, -7.0, -2.4842274307854315, -2.446184640239396, -1.61783606882438, -7.0, -1.8587888459766797, -3.943914757063198, -2.2044684736900795, -2.9251657982919412, -1.842919698597131, -2.102208700116164, -4.2426159575692655, -2.9736994962949725, -1.1639224845618, -3.658845776321838, -1.5572683665739167, -7.0, -1.918244856167806, -7.0, -4.244054348556946, -3.2056717837772264, -3.032931991648217, -1.808155685991323, -2.3913561974297854, -3.2991924258016807, -2.4252313570756017, -1.8834187583022521, -3.051128394305932, -1.6768850447403816, -1.4689551604370634, -2.4249485448383665, -3.466076375349264, -1.50250361077883, -1.5797610983920323, -4.280191247872142, -1.784103074779229, -3.776580126292323, -7.0, -2.6541940498694125, -1.4718095262845452, -1.252321396213063, -1.584555984799597, -1.8408142274924864, -2.5359033274007983, -7.0, -3.6827586141990913, -2.5889290464869177, -2.1039573855243545, -3.347988277492058, -1.5863065297899643, -1.2803158130038816, -2.4725441322844315, -3.5435217306752924, -1.2543395413032599, -1.1881122908453896, -1.711828523727601, -2.551811307878826, -1.4987260783768248, -1.8420407941839496, -2.586179744185137, -2.399294321418118, -1.3188443294618295, -2.3399176726790794, -2.6751200346244075, -3.184691430817599, -3.2026616633987213, -3.162862993321926, -2.736472907805405, -2.572608605937758, -2.0212136286115205, -2.276748941031243, -1.5830380370702757, -2.7243896635178304, -2.33042767321899, -2.2446977694747496, -2.742241574420333, -1.5786092358059542, -7.0, -1.9405589700314552, -7.0, -1.3593776211753175, -1.4526195693282578, -3.863005451385769, -2.9871695309342248, -1.7719023011066422, -2.021696949018919, -1.2099718795968286, -2.2493557916402818, -7.0, -7.0, -3.3977414286585623, -3.342595377241292, -3.1649473726218416, -2.967720359276515, -2.211210817095178, -3.0958664534785427, -2.6054884378490457, -2.746171833995682, -3.1756567472816637, -3.247359422468937, -3.0463976029545603, -2.7248539013834177, -3.2534349352410055, -2.163269826589994, -2.3381282463964803, -2.1183798879274023, -2.5233064424095346, -3.378882199277559, -2.4403519370473017, -2.9636387304229133, -2.7071228779824272, -3.212018019632142, -4.241969611913073, -2.238716226946245, -2.7791393517925442, -2.5642794877753574, -2.176738976523847, -2.7752020949482215, -2.6086820021484174, -3.9446553685692547, -3.205228977537763, -2.8069483569904206, -3.2438562328065057, -2.47929746034392, -2.4486360627696193, -3.6582976503081897, -4.241745652570644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3338904116161245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1792644643390253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145895315578768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.229786756419653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8352374734003063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8248414717537007, -7.0, -4.147729310675981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019116290447073, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.451984355041344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.797613730153076, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.764400322956388, -7.0, -3.7385427409287852, -7.0, -7.0, -7.0, -7.0, -3.4216039268698313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.712764993190968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.659345635746177, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5009222391903005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.574128538797712, -7.0, -7.0, -4.540454613671412, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.769960425341503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.101036412174182, -7.0, -7.0, -4.921181672460438, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.065082773894735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.135990846921625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.990423218731616, -7.0, -5.70620041642511, -7.0, -7.0, -7.0, -4.954218381297876, -7.0, -7.0, -7.0, -3.9093420383613084, -7.0, -7.0, -4.427924077684321, -4.780821175853473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.648037830429489, -7.0, -7.0, -7.0, -4.289432863850786, -7.0, -7.0, -7.0, -1.9852767431792937, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2132520521963968, -4.035949779536674, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7538197430218148, -7.0, -7.0, -3.271609301378832, -7.0, -7.0, -2.140589132424944, -7.0, -7.0, -7.0, -2.348953547981164, -2.597146487833695, -3.1861083798132053, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2923668466362255, -7.0, -4.484918801665807, -7.0, -3.3963737275365067, -7.0, -2.966610986681934, -7.0, -7.0, -7.0, -4.244054348556946, -7.0, -2.2624510897304293, -7.0, -7.0, -3.3546845539547285, -7.0, -2.685443151803357, -7.0, -7.0, -7.0, -7.0, -3.408635626349605, -2.385606273598312, -7.0, -7.0, -7.0, -7.0, -2.795184589682424, -1.1936545489777597, -3.8807564445102103, -7.0, -4.56863971018297, -7.0, -2.7156452610404553, -7.0, -7.0, -7.0, -7.0, -2.8481121075964095, -7.0, -7.0, -7.0, -3.0835026198302673, -7.0, -7.0, -7.0, -7.0, -7.0, -3.998542671094514, -7.0, -7.0, -7.0, -7.0, -3.3337494624819706, -2.304275050477128, -3.0281644194244697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8518085142282374, -4.543049360639533, -2.63205216670581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4869615094670436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8388490907372554, -7.0, -7.0, -2.8382192219076257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.740993931584886, -3.6268534146667255, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4945997959865975, -7.0, -7.0, -7.0, -2.779776808670381, -7.0, -7.0, -7.0, -7.0, -7.0, -3.325310371711061, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4202858849419178, -7.0, -7.0, -5.2044021823641895, -7.0, -7.0, -7.0, -7.0, -4.209380952346196, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8039388622112926, -7.0, -7.0, -3.6567687792660166, -3.928241018789919, -7.0, -7.0, -7.0, -7.0, -3.1075491297446862, -7.0, -4.865317218342029, -7.0, -7.0, -7.0, -7.0, -7.0, -2.765668554759014, -3.4699692094999595, -7.0, -7.0, -7.0, -4.237926844051205, -7.0, -7.0, -7.0, -7.0, -3.6313422864839326, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7036567197634023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.555698894718901, -2.9711366294768062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.647962946176167, -7.0, -7.0, -7.0, -7.0, -3.8705209500127644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.237040791379191, -7.0, -4.116145210655378, -7.0, -7.0, -7.0, -7.0, -7.0, -3.226342087163631, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9688097139128584, -7.0, -7.0, -3.1411360901207392, -7.0, -3.376010910646249, -7.0, -7.0, -3.0813473078041325, -7.0, -3.4797552093043174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8692610629614124, -3.908500337637823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5191057562064487, -7.0, -7.0, -7.0, -4.36608659902, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7238659644435037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0904068162207485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.440279213235588, -7.0, -7.0, -7.0, -7.0, -3.671859084349393, -7.0, -3.668012971641832, -7.0, -7.0, -3.3529539117100877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.468495024507069, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.131779009369187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6048737705526355, -7.0, -7.0, -4.411822497698959, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3068537486930083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.096905049614187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.195161370069258, -7.0, -7.0, -3.8085485512404054, -7.0, -7.0, -7.0, -7.0, -3.2884728005997825, -3.6294350851202672, -7.0, -4.232962245954388, -7.0, -7.0, -7.0, -3.1414497734004674, -7.0, -3.6542728270977105, -3.7065471026403576, -3.832508912706236, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2000292665537704, -7.0, -3.0151501032294714, -3.922777341928798, -7.0, -7.0, -7.0, -4.052309099647323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0464951643347082, -3.0114294617807817, -7.0, -7.0, -7.0, -7.0, -4.87408477318204, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6050894618815805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.062581984228163, -7.0, -7.0, -4.5553121461148125, -7.0, -5.273178428074985, -7.0, -3.482873583608754, -4.717146037938382, -7.0, -7.0, -7.0, -7.0, -3.5216610151120733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.387307669549021, -7.0, -7.0, -3.8948364609939157, -4.7710065635306425, -7.0, -7.0, -7.0, -7.0, -3.87075494489014, -7.0, -3.5369542230538054, -7.0, -3.2829618035343353, -7.0, -7.0, -7.0, -3.403417959654622, -7.0, -7.0, -3.459231261369113, -7.0, -4.0085363002297925, -7.0, -5.387736767329419, -7.0, -4.05319372760087, -7.0, -4.327522402716821, -7.0, -7.0, -7.0, -3.928154347824516, -7.0, -7.0, -7.0, -4.189181397180737, -3.255995726722402, -7.0, -7.0, -7.0, -4.180813775754397, -4.135514280998787, -7.0, -7.0, -4.366613444636752, -2.763255162964953, -7.0, -4.024916464556482, -7.0, -4.934124595123546, -7.0, -7.0, -7.0, -4.661074040986242, -4.378334296680487, -7.0, -7.0, -7.0, -7.0, -7.0, -3.46729355361571, -7.0, -7.0, -4.513914221371679, -4.709609121072649, -7.0, -7.0, -7.0, -7.0, -4.0517456530256775, -7.0, -7.0, -4.072065991414746, -4.214207829654449, -7.0, -7.0, -4.430220226321072, -7.0, -3.287801729930226, -3.733464770185494, -7.0, -3.5751053343390393, -7.0, -7.0, -4.34087026785223, -4.001036244018628, -7.0, -4.444183419961797, -7.0, -2.8773713458697743, -4.305577057926727, -3.5934411445018064, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9610204328379766, -7.0, -3.1381591060069627, -7.0, -2.7713424628313694, -2.5593479441958, -2.278753600952829, -7.0, -7.0, -2.735119634081872, -1.5518933818622322, -3.6200527290943953, -2.9002578584377776, -2.0123098482203265, -3.303412070596742, -4.122183100093868, -2.6890867704039234, -2.8728358439998014, -3.0362295440862943, -2.5921767573958667, -3.0682600937746995, -2.9116901587538613, -2.49182842626168, -2.3178022622275756, -7.0, -7.0, -2.7259975546381723, -7.0, -2.696356388733332, -4.117823481975421, -3.6789383930785604, -3.3241759801248705, -7.0, -2.64064704020671, -7.0, -3.028571252692538, -3.443888546777372, -7.0, -7.0, -3.2056717837772264, -2.2624510897304293, -7.0, -2.3125235457621383, -7.0, -2.969602264848539, -2.8847953639489807, -1.4334061336424062, -7.0, -2.081244406611398, -3.241048150671644, -2.802636918082811, -3.8899736384039962, -2.5854607295085006, -7.0, -7.0, -7.0, -2.994882517664086, -7.0, -7.0, -3.5876548509957176, -2.998695158311656, -3.282180508437446, -7.0, -2.273348568749101, -2.868938178332911, -7.0, -3.840043330603494, -7.0, -2.9841521129041246, -2.3450468246483553, -7.0, -3.491991664182002, -1.9770700393537608, -7.0, -3.7839035792727347, -3.0155948545166624, -2.6473829701146196, -3.0356298277904386, -3.260873289344748, -2.7431960814487013, -7.0, -1.8920946026904806, -2.7703200637483674, -2.9492924014120256, -2.6554585929400747, -1.8961586385578335, -7.0, -7.0, -3.658106835506393, -2.960153542690461, -7.0, -2.584654239988151, -2.8103876324018415, -2.99563519459755, -3.010299956639812, -3.3683736731283878, -2.4143834074473625, -7.0, -7.0, -3.216957207361097, -7.0, -7.0, -3.3517963068970236, -3.372267444095655, -7.0, -7.0, -7.0, -2.1775899351168753, -7.0, -7.0, -7.0, -1.810232517995084, -1.590051083854947, -2.5943925503754266, -2.220108088040055, -2.9466627639986482, -2.8915374576725643, -2.9698816437465, -7.0, -1.7929301824152337, -2.716003343634799, -7.0, -7.0, -2.885926339801431, -3.062769949815128, -7.0, -3.626271915253866, -3.7520484478194387, -3.641176546613114, -7.0, -7.0, -3.516403148447403, -2.886490725172482, -2.4533183400470375, -3.894426837964188, -7.0, -7.0, -3.2069607291557105, -3.1063609088067503, -7.0, -2.639486489268586, -7.0, -7.0, -7.0, -3.339650157613684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.828839741403645, -7.0, -7.0, -7.0, -4.239624765246138, -4.254403046390677, -7.0, -3.119420863442087, -7.0, -7.0, -7.0, -2.9073186796496047, -7.0, -7.0, -3.498586208817518, -3.586854002667875, -3.4528593357958526, -7.0, -7.0, -7.0, -3.1829849670035815, -7.0, -3.79636037082412, -3.151523067564944, -7.0, -7.0, -7.0, -3.0874264570362855, -7.0, -7.0, -7.0, -7.0, -7.0, -3.891199727625491, -7.0, -7.0, -7.0, -3.470410490975931, -2.877515318847026, -7.0, -3.45117215751254, -7.0, -7.0, -7.0, -3.638389407665336, -7.0, -3.9864582127373063, -7.0, -7.0, -7.0, -7.0, -7.0, -3.452706226511029, -2.607608186496772, -7.0, -7.0, -3.4282968139828798, -3.3961412047190644, -7.0, -7.0, -7.0, -7.0, -7.0, -2.568861467689039, -7.0, -7.0, -4.528739991281119, -7.0, -3.2938043599193367, -7.0, -7.0, -3.4860524616555892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.526597709103452, -4.058486760696795, -7.0, -3.7828666070641925, -7.0, -7.0, -7.0, -7.0, -3.6104472214421213, -3.7405995128111567, -7.0, -7.0, -7.0, -7.0, -3.322219294733919, -7.0, -7.0, -7.0, -7.0, -3.7735670489260587, -4.4074928794601025, -7.0, -7.0, -7.0, -7.0, -2.8443764113642773, -3.146283113159587, -7.0, -7.0, -7.0, -3.7749546890801384, -7.0, -7.0, -3.921842481405858, -3.111262513659065, -7.0, -2.6403157705629567, -3.569646964941176, -7.0, -7.0, -7.0, -3.0455185628844927, -7.0, -3.032779879191245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9450111181475167, -3.8467699535372186, -4.2022975561388, -3.812779707008964, -7.0, -3.965624967109243, -7.0, -7.0, -7.0, -7.0, -3.92272545799326, -7.0, -7.0, -7.0, -4.261084354924705, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.964118143151485, -7.0, -7.0, -3.852726958888889, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.700660458568172, -7.0, -3.7146231028714842, -7.0, -7.0, -3.9586422307145206, -7.0, -3.807873132003332, -3.741387992479269, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5170638734826545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.131586588239808, -7.0, -3.868526886768204, -7.0, -3.2166935991697545, -7.0, -7.0, -2.7092093687913024, -3.112828346606045, -7.0, -3.610766594773271, -3.5417574891704673, -2.943247125137862, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9336559786575473, -3.292920299600006, -7.0, -4.182043545943064, -5.015393290367874, -7.0, -7.0, -3.4087486061842442, -7.0, -7.0, -7.0, -3.1017470739463664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.734321633758071, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.431524584187451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2344199320783495, -7.0, -7.0, -7.0, -3.5485204443196916, -7.0, -7.0, -7.0, -2.6105841244865338, -7.0, -3.430840687404714, -2.8808770809852247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7049222912234017, -7.0, -7.0, -3.513084360465144, -3.4556599840667923, -7.0, -7.0, -4.321660556848671, -7.0, -7.0, -2.661181443446619, -3.248463717551032, -4.028855809390444, -7.0, -7.0, -3.5547313766759667, -7.0, -7.0, -4.449235985453029, -7.0, -7.0, -7.0, -7.0, -3.865932668193186, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5742628297070267, -7.0, -7.0, -7.0, -3.465977368285823, -7.0, -7.0, -7.0, -4.415741036222344, -4.554022223501833, -7.0, -7.0, -2.5562242647185487, -2.5368452760024067, -7.0, -7.0, -3.0595634179012676, -7.0, -2.1927835740087853, -3.3624196382493063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7829024059746446, -7.0, -3.7468546628685075, -7.0, -7.0, -3.093846008089887, -4.084804981876372, -7.0, -3.7675268994083817, -7.0, -3.0035811527135046, -3.486241511384074, -7.0, -3.588394972942186, -3.568983532526376, -3.146283113159587, -7.0, -7.0, -5.004862829229324, -2.606238741465192, -7.0, -4.68848211387478, -2.861651828449679, -4.093141404751149, -3.646599751720373, -7.0, -5.089838020117933, -4.009365898346244, -3.5522300511361626, -4.157486989384848, -7.0, -7.0, -7.0, -7.0, -3.463594402187, -3.9041472917242928, -7.0, -7.0, -3.9351544472161684, -3.251638220448212, -7.0, -7.0, -3.9999131324165713, -4.228733908376136, -4.32997723012551, -3.450864692379766, -4.685231030488811, -3.8416023541757394, -3.9698816437465, -7.0, -7.0, -7.0, -4.637532256267815, -4.059639138323725, -7.0, -3.864229172807904, -4.016099716932023, -4.218010042984363, -7.0, -4.1614428741396345, -7.0, -7.0, -7.0, -7.0, -3.797959643737196, -7.0, -3.852584546335328, -3.7192512084878806, -4.8047279217580705, -7.0, -2.8129133566428557, -7.0, -3.485948449216443, -3.88349109018893, -5.107137015619441, -3.6554585929400747, -3.559595448664063, -7.0, -4.053501002386415, -3.75876054390998, -3.471857266930764, -3.149603954933024, -7.0, -3.904336792202495, -3.730922174525645, -4.509941404158226, -3.4320066872695985, -3.696196156653132, -3.6625784121215883, -7.0, -4.071916873438521, -7.0, -7.0, -3.5110396509000643, -4.029018329546481, -7.0, -7.0, -7.0, -3.0419845014867866, -7.0, -2.8285197970206033, -3.59250984790068, -3.5289423974157295, -2.8832828000102766, -2.5474054596674893, -2.974806341932808, -2.7633210113030287, -3.5620548296563785, -2.518137764469437, -2.7432081503806565, -2.5585085730707764, -3.0368115269308613, -3.1572300416963417, -2.5688719317338045, -2.4607822312872365, -3.134640664105797, -2.0324765479535576, -2.753513421358579, -3.455758203104137, -2.929248580749605, -3.2800089531081857, -3.412460547429961, -2.7317498835272636, -3.059689611271879, -2.9187291212991187, -7.0, -2.9612750268046986, -7.0, -7.0, -1.9947418610649346, -3.248487880403575, -3.108482182629693, -3.317854489331469, -2.146328125284129, -3.711089840140532, -2.9751253198007745, -7.0, -7.0, -7.0, -3.032931991648217, -7.0, -2.3125235457621383, -7.0, -3.0304647850433484, -2.602670288928142, -3.1027766148834415, -1.7729881093117132, -3.4702634469650784, -1.598773142276921, -3.545430829465351, -3.576533303571085, -3.3344788832062546, -7.0, -3.4075608494863623, -3.088756066652953, -7.0, -3.0471357373231136, -3.403977963669355, -7.0, -2.8979934299725625, -7.0, -2.3405477545742386, -2.955495329184127, -2.6641717053619307, -3.2105860249051563, -3.415140352195873, -7.0, -3.4044916177586857, -2.836208994571047, -2.6864575104691117, -3.5781806096277777, -3.9020028913507296, -1.7817553746524688, -7.0, -3.4174716932032934, -3.367767751185798, -3.460822698802402, -2.6397077858246627, -3.4360035356698964, -2.8784260410124705, -1.15567179973304, -1.4018004294852757, -2.837307795588005, -2.469190620933241, -2.4513677038686126, -1.5890769857909857, -7.0, -3.3176455432211585, -3.611404637711593, -3.17666993266815, -3.4448251995097476, -2.871280972857973, -3.206985243407348, -2.7948364578145615, -2.8084270532729314, -2.997138334234319, -1.2986532346892896, -3.344490519241893, -2.503109436671369, -3.2323607123535703, -7.0, -7.0, -3.797059694699971, -2.1526959412988536, -7.0, -2.6881654767644583, -7.0, -1.7044780107893729, -7.0, -2.7837249675153735, -3.3244882333076564, -2.718916686014861, -2.037227234582274, -3.0334237554869494, -2.3989040367746544, -2.997713947818426, -2.617393545748848, -1.7322700115725504, -3.397070549959409, -2.2970025063809376, -3.359645792674543, -7.0, -3.4323277922616042, -2.801403710017355, -3.1333259667224587, -3.214578953570499, -2.88036222087494, -3.5691982833478133, -3.311188557387388, -3.1204093945560682, -2.8455114569725612, -3.100973313405724, -7.0, -3.312388949370592, -3.042509884259952, -3.1292063577475293, -2.7244397233970745, -2.4400340173284967, -3.3348556896172914, -3.1441589128307523, -3.0419845014867866, -3.052886235256382, -2.986995539724382, -7.0, -3.1858961319559693, -3.2131191388114564, -3.147985320683805, -7.0, -3.1961761850399735, -7.0, -7.0, -3.114610984232173, -3.167317334748176, -2.8068580295188172, -3.3554515201265174, -7.0, -3.245265839457461, -3.70163543360813, -3.7800291273373383, -7.0, -3.1670217957902564, -3.138697331979808, -3.2793119832751985, -7.0, -3.257438566859814, -7.0, -2.851869600729766, -7.0, -3.124139666498967, -7.0, -7.0, -7.0, -3.4454764029676785, -7.0, -7.0, -7.0, -2.988261596728756, -7.0, -7.0, -3.8293564113962555, -7.0, -7.0, -3.148294097434746, -3.225567713439471, -3.454387467146955, -3.1835545336188615, -2.508754102588731, -2.6374897295125104, -7.0, -7.0, -3.9134616631596444, -7.0, -7.0, -3.4763968267253302, -2.5477747053878224, -2.087713828597375, -7.0, -3.3010299956639813, -7.0, -2.858537197569639, -7.0, -2.85870218386402, -3.081587315813503, -2.530347492821457, -3.8489892062511672, -7.0, -3.27600198996205, -2.8567288903828825, -3.285557309007774, -7.0, -2.8277999071812294, -3.1470576710283598, -2.9618954736678504, -2.5082410552970478, -3.68517424805309, -7.0, -7.0, -2.3191060593097763, -7.0, -2.7150278702988717, -2.5943925503754266, -3.147985320683805, -3.547774705387823, -3.897604454353708, -7.0, -2.7132104434506292, -7.0, -7.0, -1.9395723545911616, -3.4626974081017172, -7.0, -7.0, -2.858537197569639, -7.0, -2.994537104298498, -2.8584369333461987, -3.4263485737875077, -7.0, -3.079548100481859, -3.633165353683903, -2.821667629171724, -7.0, -7.0, -3.2420442393695508, -2.941677035870691, -2.7326617601288525, -2.970253869594787, -7.0, -3.4757583289758744, -7.0, -7.0, -7.0, -2.545946631353733, -7.0, -2.8092903011763157, -3.36679638328673, -2.5601629215805253, -2.873584787286106, -7.0, -7.0, -7.0, -7.0, -3.120348760073331, -7.0, -7.0, -2.6307183730170616, -3.160568564398739, -2.931118710592187, -7.0, -3.3517411058188555, -3.64672787441551, -7.0, -3.890197386210029, -7.0, -3.956164063051131, -3.3336487565147013, -3.5599066250361124, -3.6885977750811696, -7.0, -7.0, -1.923637882191193, -3.581380688709987, -7.0, -7.0, -4.082300556381854, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7819064730211855, -2.7117369491669536, -3.0323021042694998, -3.27630858685576, -7.0, -3.9249508889156104, -7.0, -7.0, -3.346744054604849, -7.0, -3.275196141785624, -7.0, -7.0, -7.0, -3.4727442635547314, -7.0, -7.0, -7.0, -3.0668847431297714, -7.0, -2.8935768378559144, -3.401745082237063, -3.5233562066547925, -2.904715545278681, -7.0, -2.808107049860337, -7.0, -2.534026106056135, -3.6209317465873228, -3.2113875529368587, -7.0, -7.0, -2.6766936096248664, -3.198931869932209, -7.0, -7.0, -3.0094981094185593, -7.0, -3.8219500053077473, -7.0, -3.307496037913213, -3.0779098222198, -7.0, -3.1455848280002856, -2.4374707639390873, -3.369586890736344, -3.504742636271688, -3.390758528738717, -2.426998958756537, -3.0394141191761372, -2.544245271237821, -7.0, -7.0, -3.7375901662857216, -7.0, -3.990161192898479, -7.0, -3.8811563210755637, -7.0, -2.8727045811704075, -7.0, -3.515873843711679, -7.0, -2.6923180442592787, -7.0, -3.2340108175871793, -2.8998888683433184, -3.1855421548543754, -7.0, -2.3327077063482236, -3.8949065379377426, -3.201888500365973, -7.0, -7.0, -7.0, -2.8273692730538253, -7.0, -7.0, -7.0, -2.765668554759014, -2.8738532112027317, -2.9682961150462557, -3.680547018019107, -4.145414804953056, -7.0, -3.2079035303860515, -2.7616773079942547, -7.0, -7.0, -7.0, -3.4727564493172123, -3.4032921451582543, -3.3984608496082234, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1420764610732848, -2.632288535826703, -3.4550610931773704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2730012720637376, -3.751971574736327, -7.0, -3.8379039445929424, -3.022133674504637, -7.0, -7.0, -7.0, -1.8004462886496526, -7.0, -3.182278161831841, -2.7997998773461115, -4.240873600020581, -7.0, -7.0, -7.0, -3.1817619459703046, -2.8975583683720445, -2.404175594836316, -3.3029799367482493, -3.8889092592635315, -2.298307137328508, -3.2667019668840878, -2.8438554226231614, -3.355643050220869, -2.6121949827557454, -2.4295038277748633, -7.0, -3.1903316981702914, -2.7556843338524133, -7.0, -7.0, -7.0, -3.4794313371977363, -3.668012971641832, -3.343605508104172, -3.249931756634195, -7.0, -3.6572694400502246, -2.679680202714552, -7.0, -4.003137276060415, -7.0, -2.8093352150273203, -2.716003343634799, -2.9568085108888016, -3.038973211034812, -2.758587509600443, -3.841234295506041, -7.0, -3.143014800254095, -2.716003343634799, -4.28483341767671, -2.801139749344364, -7.0, -7.0, -7.0, -3.2116544005531824, -3.0938592615034377, -2.7331972651065692, -2.9537596917332287, -3.0537185238968583, -7.0, -3.1649473726218416, -7.0, -3.163086798780063, -7.0, -2.8438554226231614, -2.8516077409196603, -2.6646419755561257, -4.384872894492921, -3.1223711097261417, -4.1514513801528805, -7.0, -2.8040154544635683, -3.32271947927634, -3.053014383525799, -7.0, -2.456366033129043, -3.167317334748176, -2.674248595527798, -2.66149717917983, -7.0, -3.4670158184384356, -3.123524980942732, -7.0, -3.2195845262142546, -7.0, -7.0, -2.799570274125377, -3.241878383159056, -7.0, -2.7345731588380384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.719505301432014, -7.0, -7.0, -3.9005528249554966, -3.9818186071706636, -4.0127528874912155, -7.0, -7.0, -7.0, -4.52416235813557, -7.0, -4.044441758703649, -4.681069295110682, -4.926795029613981, -4.063183187967576, -7.0, -7.0, -4.435139782024201, -4.292521884574141, -4.542277546927697, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8258298578112866, -7.0, -4.207436875114079, -3.8626480890490678, -4.214896807560221, -7.0, -3.8103333486611493, -3.9215824403934163, -3.9877853965912387, -4.2070146586829, -3.4181251342675383, -2.3944516808262164, -3.899519564476793, -3.269320178171262, -3.4522976709946303, -3.727622577969137, -3.8677031332700977, -3.4865721505183562, -3.5560586443269586, -3.3278899816485428, -3.2930309056064373, -3.7548526807047184, -3.53495165163851, -3.432292125651154, -7.0, -2.9174591708031667, -3.269396182694991, -7.0, -3.8472641017707643, -4.086680093734625, -3.435525851498655, -7.0, -3.2787623922501217, -3.3333683469708335, -4.47665008775944, -7.0, -3.1527468640264606, -7.0, -3.561254075742359, -7.0, -5.105733235627028, -3.8043439184798657, -4.238522812218293, -7.0, -3.6392872259102367, -3.189365525398271, -3.8342016289315226, -3.2060158767633444, -2.955535845981106, -3.078396394473104, -3.322513078828487, -3.1759395741789724, -2.367355921026019, -3.017362374468477, -3.783646355064819, -2.9466487339066765, -3.886630734857297, -7.0, -3.372819981678968, -3.537231245931346, -4.011908613349155, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4323480341699906, -1.4993583093807943, -1.9126260848936751, -7.0, -3.1330596427539095, -2.7546349672131645, -3.511214701136388, -2.4938451572530163, -1.5725047477662464, -2.0422922040434477, -7.0, -2.3289736002463024, -1.4740281763808496, -2.2922560713564764, -7.0, -7.0, -2.5578078557646045, -2.6538554368859546, -7.0, -3.237292337567459, -2.8314858392486575, -7.0, -2.269512944217916, -2.5712095470456258, -1.1899783738265433, -7.0, -2.5108208903713702, -7.0, -7.0, -3.827013678162476, -2.8384420423712386, -3.6173219216479233, -7.0, -7.0, -1.6128320019979738, -7.0, -1.4328691191563043, -7.0, -1.3306868777352578, -1.808155685991323, -7.0, -7.0, -3.0304647850433484, -7.0, -3.7491950422196725, -2.931457870689005, -2.8022604758937684, -1.4669983859942513, -7.0, -1.4196949370625, -2.404792011671339, -3.7394404803282644, -7.0, -1.3946705241071904, -1.313680817884655, -7.0, -3.3249582172365435, -7.0, -7.0, -7.0, -1.9678799710438093, -2.273924028536512, -1.3775456819423355, -2.9755237129603316, -7.0, -7.0, -7.0, -2.6299190355035416, -2.7858473143474205, -7.0, -1.268798910830716, -1.5619728950307412, -3.361160995195026, -7.0, -1.2780707478531816, -2.387208782294461, -2.2277094415573746, -3.1922886125681202, -2.3503314002067244, -2.526691646157169, -2.6179085419287893, -2.743313739231126, -2.0608122638773674, -3.431202884556517, -3.0610753236297916, -7.0, -7.0, -7.0, -7.0, -7.0, -1.6955277579250017, -3.2604291755779347, -3.1589025110397135, -3.164798819693455, -3.3393946485141663, -3.2548500689728237, -3.7315081835960253, -1.3146091060655962, -7.0, -1.4604324568764007, -7.0, -1.4825717867894328, -1.9056323658772685, -3.752662943120972, -7.0, -1.8345753455433524, -2.413299764081252, -2.1285333149993586, -2.2755416884013093, -7.0, -7.0, -3.1051694279993316, -7.0, -3.1258064581395266, -7.0, -3.854063011866421, -7.0, -2.2684219472783616, -2.920905604164024, -7.0, -2.8636202202703154, -2.9036325160842376, -7.0, -7.0, -2.2065560440990297, -2.609949951186873, -2.9031857766806537, -3.819083075743703, -7.0, -3.258876629372131, -7.0, -3.1484998267052453, -2.932220013877119, -7.0, -3.1108454983739153, -2.491128139388255, -2.6596785560245753, -2.9199144806594317, -7.0, -2.523876475638131, -2.8379039445929424, -2.855216194733363, -2.7064332788991994, -2.819214799882384, -2.7701152947871015, -2.6875289612146345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.369679599559816, -7.0, -3.4379090355394983, -7.0, -7.0, -3.1214698267373375, -7.0, -7.0, -3.670802284260944, -3.2952591364816795, -3.308286888629105, -7.0, -7.0, -7.0, -7.0, -7.0, -1.761625795377137, -7.0, -7.0, -3.0355798140307355, -2.9994017131904993, -2.8140810398403664, -7.0, -3.3506356082589543, -3.1857545757350607, -3.036069700697702, -7.0, -3.9349471026077483, -3.7183355789085066, -3.663700925389648, -7.0, -7.0, -3.782759192623997, -7.0, -7.0, -7.0, -7.0, -2.7814861003965117, -3.792062646197921, -7.0, -7.0, -3.0937017848055484, -7.0, -2.8838678243612104, -7.0, -7.0, -7.0, -3.2539031250960253, -3.2869801217565664, -2.7638790808327, -3.0563330349511615, -2.738275942048923, -4.011993114659257, -7.0, -2.8618756361619213, -2.8785217955012063, -3.7115541682501694, -7.0, -7.0, -7.0, -3.402175375031505, -3.110870171711581, -3.166066636783229, -7.0, -7.0, -2.737788791709675, -7.0, -3.4988157877634483, -7.0, -7.0, -7.0, -3.456897187449348, -7.0, -3.500030534183874, -7.0, -7.0, -2.9166794974939214, -3.7866804531966487, -7.0, -7.0, -3.533581425058706, -7.0, -3.3783373256663736, -7.0, -3.769820257763592, -7.0, -2.883501347796778, -3.2734642726213465, -3.1200951059292272, -3.66029616027073, -7.0, -7.0, -2.685890955055167, -3.3334472744967503, -3.5961570809161723, -7.0, -3.958468318366944, -7.0, -3.6538875580709775, -7.0, -2.8977887493909136, -7.0, -3.1099158630237933, -3.442636525782232, -3.0167200331782524, -3.1234938576460367, -7.0, -7.0, -3.7296506683359203, -3.4396484295634737, -2.2954586870249005, -3.715501945293284, -7.0, -3.7937903846908188, -7.0, -3.6203963453512844, -3.7169210731667612, -3.8006941718512026, -2.6927824567955687, -7.0, -7.0, -7.0, -3.835259232912736, -3.4290251567115186, -3.2330595990965874, -3.908431398966006, -7.0, -3.7035492982382308, -2.564920867827693, -3.0011772023979564, -7.0, -7.0, -3.4831274827577, -7.0, -7.0, -7.0, -7.0, -7.0, -2.866700756042499, -7.0, -3.563860630519641, -3.1031681798660387, -7.0, -3.764475027434409, -7.0, -7.0, -7.0, -3.489367774704734, -3.186270022871516, -7.0, -7.0, -3.7064617376313547, -3.7444718063201807, -7.0, -7.0, -7.0, -3.443262987458695, -3.665393350279712, -7.0, -7.0, -3.8165064370463573, -3.8085485512404054, -7.0, -3.5871120413150903, -7.0, -3.693287157005656, -3.0961132018222703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.979758432498712, -7.0, -3.8869980456710995, -7.0, -3.3666563861388235, -2.7799987809677282, -7.0, -2.3618272055368235, -2.94272439249383, -3.1424676821446043, -3.204662511748219, -3.4528593357958526, -7.0, -7.0, -3.4531653925258574, -3.92054071650248, -7.0, -7.0, -7.0, -3.8126125871077585, -7.0, -4.1145609474233265, -7.0, -2.9460153489984524, -7.0, -3.9902944461284386, -7.0, -7.0, -7.0, -7.0, -3.135904649927143, -3.497137064051958, -7.0, -3.811038508604216, -2.8353978544636607, -2.8169038393756605, -7.0, -7.0, -3.6806074289917876, -3.659250468772661, -7.0, -7.0, -7.0, -7.0, -2.6224641411494662, -2.571708831808688, -3.3420276880874717, -3.2315623356402465, -7.0, -3.6840370374865197, -7.0, -3.429671548617864, -7.0, -7.0, -3.490309708301158, -3.759516759462188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.748506684505836, -3.6502103546603593, -3.3529539117100877, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3453737305590887, -7.0, -3.402089350572097, -2.9450169861592435, -3.163385026762188, -7.0, -7.0, -2.7480469994089542, -2.9395905594871645, -2.4829650044030926, -7.0, -3.0188888310551025, -3.717087724927019, -7.0, -7.0, -3.0999630070456647, -3.9800033715837464, -2.612850055101375, -2.7340935447008627, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3626081204867253, -3.8284020784915933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.75190866845489, -3.194410265239743, -7.0, -7.0, -7.0, -2.4857840825802984, -3.3748216384719947, -7.0, -3.5902100254885054, -7.0, -7.0, -3.052584021782163, -3.4723907276266286, -2.8601382850306134, -3.0812272540419574, -7.0, -7.0, -3.8687032022785366, -3.103050747435957, -2.9384760476656964, -3.457086728098236, -7.0, -7.0, -7.0, -3.2890089115394634, -2.707463718325151, -7.0, -7.0, -2.8194123112093252, -3.375114684692225, -3.310976378660635, -3.6857417386022635, -3.9564565834098997, -7.0, -3.4243098202457563, -3.9139727115509713, -3.4038922955594204, -3.8392951720994892, -3.3743664143331245, -4.137218265189426, -7.0, -4.010384771498377, -4.080866893505251, -2.920123326290724, -7.0, -3.417388646165674, -7.0, -7.0, -3.5281021701384736, -3.491455080455835, -3.7887338588277077, -3.657629431388952, -7.0, -3.8152455919165633, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7902608916016636, -7.0, -7.0, -2.686485634707038, -3.092328393324933, -3.401113213955382, -3.0705128226472103, -3.6660185043849287, -2.5527472031596625, -1.6966371725035474, -3.310764096221262, -2.123289611439104, -2.749124111204883, -2.019863713967843, -2.8380931384455983, -3.042760762022057, -3.2902992675457483, -2.3219906037929525, -3.7052819837808864, -2.8692487305408685, -2.5866818837066483, -3.2662611035004745, -2.776009815603766, -7.0, -3.963618202578722, -3.102567091434675, -1.3552594090066894, -2.7175664928276775, -3.927951770866328, -3.3937067877220115, -3.140395796137267, -3.4947805290034273, -2.1675045440973943, -2.9424096635273034, -3.508184502854504, -3.797284856852405, -3.292278228672973, -2.8713539819330216, -7.0, -3.762040529978979, -2.837064325573253, -2.5849189336400373, -2.733999286538387, -7.0, -3.664590698092, -2.5958115596594458, -3.165355631362408, -2.549820373239367, -3.1992236364745255, -7.0, -2.6960319843565825, -3.5396092256382468, -3.854063011866421, -3.5460214167615582, -3.0885994524870846, -3.2680176943347163, -7.0, -3.0812364901250664, -3.7266864665450092, -7.0, -3.7096938697277917, -3.839336611526406, -3.6369390072874714, -7.0, -2.8091205530979613, -2.8352909915364135, -4.630660046928468, -7.0, -3.9498289589353135, -7.0, -3.1609946019388135, -7.0, -4.935080486984058, -3.600945683400521, -4.312515855663387, -7.0, -3.3186371431419577, -2.947587749368504, -3.5800524263882556, -2.247373072874618, -3.4063272387861963, -2.6354837468149124, -2.35013736535928, -2.609380944250707, -7.0, -3.1991212741882054, -3.148248025288188, -3.88349109018893, -4.05424332563753, -7.0, -3.4223709414184693, -3.4447569701519756, -3.3757915976851924, -3.667826378950711, -7.0, -7.0, -2.8832828000102766, -2.921213387765902, -1.7262590452768576, -7.0, -2.3272908044180514, -2.412553873847405, -1.796182030208752, -2.4989489998913625, -1.8695078128629088, -3.780965029608317, -3.6731131042382335, -2.4356623863120097, -2.8138668026501783, -2.459576027555685, -2.79550569467443, -2.6176118390341196, -2.509060966110194, -2.2869708813680116, -2.250635230436816, -2.1676737520697014, -1.7711087121610372, -2.3683311667764393, -2.18232684521996, -2.5183384319014017, -2.2878878226021113, -2.9872937677065066, -2.963964813484758, -7.0, -2.3454962568631608, -2.6578204560156973, -7.0, -2.62375095902467, -2.2965011662837895, -1.8457064057873396, -7.0, -2.336846920633673, -3.1481911962420113, -2.1561788370346315, -3.2388612088708095, -3.6461095219788477, -3.450864692379766, -2.3913561974297854, -3.3546845539547285, -2.969602264848539, -2.602670288928142, -3.7491950422196725, -7.0, -2.9135489579065177, -2.045246255090335, -7.0, -2.79605370040254, -3.7709992051639407, -2.1176895206789914, -1.8474637815711823, -2.7017598112436323, -2.920181321147177, -3.8635607645262424, -2.8776592441116087, -1.9967673882774597, -2.2251309633156784, -2.667639706056411, -2.0181876357676427, -3.311895072073712, -2.3345234110246715, -2.5821896663826887, -1.447333586615877, -3.051769746899332, -2.5498786795403077, -2.9296153946078958, -7.0, -1.6815593851971848, -2.032508873155982, -3.7907776013376937, -3.0150662140111493, -2.0259480753365513, -7.0, -3.3109905271345785, -2.1682978754273456, -3.1336453400536084, -3.1991378431311865, -2.739482441437391, -2.9952590191890995, -3.197648059295764, -2.5872297522473473, -2.220672589241897, -1.020829485891193, -2.1449332770652947, -2.294302896155191, -7.0, -7.0, -2.315384450620127, -1.4829942936151554, -3.014352500651009, -1.6410773133253744, -2.3068363763346516, -2.369786546693187, -1.5109633769042548, -3.087670523729859, -2.0764199154189162, -3.230959555748569, -2.790549039169605, -3.286606149046036, -3.0478587274074567, -3.4483971034577676, -3.3350565194390915, -2.171602514700333, -7.0, -2.9858005756496806, -3.024895960107485, -2.0175856816804645, -7.0, -2.904715545278681, -3.6534054906645013, -3.652343055062715, -7.0, -3.357076839842412, -2.587336734507256, -1.504927434383751, -2.1384952472636067, -3.478999131673357, -7.0, -2.187608839834818, -7.0, -7.0, -7.0, -3.090169844444793, -7.0, -7.0, -3.624436805027557, -1.8908252650965474, -2.8888939620872947, -3.400537989391946, -7.0, -3.3944516808262164, -7.0, -7.0, -3.4711938859696856, -7.0, -7.0, -3.390876255625289, -1.7175497146599723, -3.3405763000433617, -7.0, -7.0, -7.0, -7.0, -1.8038771296868603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163651902679467, -7.0, -7.0, -7.0, -4.200056665972214, -4.216218700837137, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5635008615598887, -7.0, -7.0, -3.3794868137172736, -4.668986616818102, -3.1222158782728267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1222158782728267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.539787833529511, -7.0, -7.0, -7.0, -7.0, -3.65667304588485, -7.0, -7.0, -7.0, -7.0, -3.281033367247727, -3.6786950815004658, -7.0, -3.912806392661292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.108113808646113, -3.276584339119928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.648798963271332, -7.0, -2.781396305196791, -7.0, -7.0, -3.885304667588968, -7.0, -7.0, -7.0, -3.1658376246901283, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8327438790877433, -3.5576274884268266, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4092566520389096, -3.601081727784023, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4865447338028455, -2.3283796034387376, -7.0, -7.0, -7.0, -3.3806814727378263, -7.0, -7.0, -7.0, -7.0, -3.9104998964054243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1358551510973984, -3.6763048564097263, -7.0, -7.0, -7.0, -4.392551871155508, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2234094022589295, -7.0, -7.0, -7.0, -4.370864527900364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1863912156954934, -7.0, -3.5350408132511606, -7.0, -7.0, -7.0, -4.543757723163865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8090115272825527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.453573132944873, -7.0, -4.283934113456609, -7.0, -7.0, -3.1278237828537074, -3.1078880251827985, -3.3901399384676227, -3.3009214084695406, -7.0, -3.399846712712922, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6028915923882656, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2769976395057503, -3.3769417571467586, -7.0, -7.0, -3.404719713605265, -3.384831120201789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9196532823103643, -7.0, -7.0, -4.93494093679307, -7.0, -7.0, -3.021602716028242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.165135466748402, -7.0, -7.0, -7.0, -7.0, -7.0, -3.04766419460156, -7.0, -7.0, -7.0, -7.0, -7.0, -2.870273818567884, -7.0, -7.0, -7.0, -3.318000691817921, -3.342422680822206, -3.6326976567506746, -7.0, -3.7579103310516335, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7279477095447966, -7.0, -7.0, -7.0, -7.0, -2.8976270912904414, -2.876362196412118, -3.452246574520437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.236537261488694, -7.0, -7.0, -7.0, -4.178090837363468, -3.9007493580610793, -7.0, -4.289165152649889, -7.0, -7.0, -7.0, -7.0, -2.5623880418581058, -2.618962813876879, -7.0, -7.0, -7.0, -7.0, -4.573208868733832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6334684555795866, -7.0, -7.0, -4.38976836093798, -4.972292535465165, -7.0, -3.1995494966993565, -4.17410551615397, -7.0, -7.0, -7.0, -7.0, -3.076397685429307, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4202858849419178, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3005547261139583, -7.0, -7.0, -3.751499055612203, -7.0, -7.0, -7.0, -4.412737668240323, -4.375535592509499, -3.2831315492788855, -7.0, -3.8809849904867533, -7.0, -7.0, -7.0, -7.0, -4.3962342287858, -3.8836954961302164, -4.331852271933605, -4.674815229803586, -3.9689289479655416, -3.735519058815171, -4.315046224922345, -3.589055531052344, -5.087160045935873, -3.799845783427429, -4.533644978798763, -3.330718078732588, -7.0, -4.659440781870318, -4.1893780058420305, -7.0, -4.173113394096824, -3.8611459408661815, -4.678390894445093, -7.0, -4.1963420201397685, -3.3138672203691533, -7.0, -7.0, -7.0, -3.585883537734565, -4.6153923666841115, -7.0, -3.165735709164142, -3.7442035439045456, -2.188647295999717, -7.0, -3.6320926962641336, -7.0, -4.194365473068565, -3.6971421262754594, -7.0, -3.08092436232493, -7.0, -4.204554060135243, -7.0, -4.138192136407885, -3.8298181874388773, -7.0, -3.802705327074352, -3.676254521729781, -3.3771240423464564, -7.0, -3.6302686502254105, -4.232816881084013, -5.0075642946226235, -7.0, -7.0, -7.0, -3.2744465129379186, -7.0, -5.405597334788302, -7.0, -2.941275993039616, -7.0, -3.7223459424755814, -4.434345312562829, -4.306532247519607, -7.0, -7.0, -7.0, -4.199941576796646, -4.489156613869192, -7.0, -3.9441420122234043, -3.354156477915428, -7.0, -4.745730424798123, -7.0, -7.0, -4.132216983942544, -3.69605043980775, -1.6830470382388496, -7.0, -7.0, -7.0, -3.121067167467729, -2.816373888752362, -3.0790002523038495, -3.14547892920631, -2.592731766393962, -2.527844632387161, -3.2305078713793014, -2.502597799680834, -7.0, -7.0, -2.6757019822045427, -2.8254261177678233, -2.9776751167547753, -2.5458223549672385, -2.560305243220961, -7.0, -2.8990476216383856, -2.10920123623541, -2.5276299008713385, -3.1283992687178066, -2.167317334748176, -2.5287739107048073, -3.030599721965951, -1.953499490469544, -7.0, -3.0632082200712114, -2.427323786357247, -2.974930168855565, -7.0, -2.8773713458697743, -3.367015895779413, -2.8172084784393747, -2.700717899347058, -2.7535830588929064, -2.760723972141952, -3.4658288153574364, -2.420615770625765, -3.4823017672234426, -7.0, -2.7641761323903307, -3.2991924258016807, -7.0, -2.8847953639489807, -3.1027766148834415, -2.931457870689005, -2.9135489579065177, -7.0, -1.9588027033995024, -7.0, -7.0, -2.9993480692067216, -3.1459064003164983, -3.5959644342051575, -7.0, -3.255272505103306, -3.531606631932722, -2.8539009163221665, -3.0028754162503097, -3.00987563371216, -7.0, -3.203576774977973, -3.3527611917238307, -3.1767539326356737, -2.3285252176838247, -2.123851640967086, -2.5390760987927767, -2.3348556896172914, -3.3785190261704825, -7.0, -2.6339010916591, -2.4871383754771865, -3.055378331375, -2.6327946083041307, -2.0233896558066746, -2.7558748556724915, -3.500716623555479, -3.2511310447723267, -3.6303261548039467, -7.0, -3.7060346607143506, -3.4818724103106633, -7.0, -2.582347494084358, -2.8601382850306134, -2.6301504001043488, -2.250420002308894, -2.864511081058392, -7.0, -7.0, -3.0188895442801207, -3.1755118133634475, -3.1048284036536553, -2.6915235221681546, -3.4515433876937274, -1.8922934099642215, -2.9599055416319153, -3.0420707406931555, -2.670709595223797, -3.162713725583078, -2.7193312869837265, -7.0, -7.0, -7.0, -3.3759378186307774, -3.3953263930693507, -7.0, -2.9804578922761, -3.146128035678238, -2.187608839834818, -7.0, -7.0, -1.5509922837391463, -2.7693773260761385, -7.0, -2.8129133566428557, -2.88024177589548, -2.8090207204836726, -2.95784663370815, -7.0, -2.2900346113625183, -2.5579080274827057, -7.0, -2.9628426812012423, -3.0770043267933502, -7.0, -2.6300887149282057, -2.7693773260761385, -2.9352048674265814, -3.4701899062855524, -3.3647385550553985, -2.750893920382125, -7.0, -1.538143413273622, -3.0115704435972783, -7.0, -2.9941108467981485, -3.0729847446279304, -7.0, -2.8416097121684354, -3.147985320683805, -2.823963024361914, -7.0, -7.0, -2.528549432194961, -2.8027737252919755, -2.965953889102063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1610683854711747, -7.0, -7.0, -2.9048957878552057, -3.2105860249051563, -7.0, -4.128108349103107, -7.0, -7.0, -7.0, -3.9212181211949506, -3.1231226002485672, -7.0, -7.0, -7.0, -7.0, -7.0, -2.631749987592334, -7.0, -7.0, -2.7947977592641324, -3.618611674183966, -7.0, -7.0, -7.0, -7.0, -3.3749315539781883, -7.0, -3.9685529904026318, -7.0, -7.0, -7.0, -2.960470777534299, -3.4762517960070336, -3.2234959409623944, -3.606488850442648, -7.0, -7.0, -7.0, -4.241334760242145, -7.0, -7.0, -7.0, -7.0, -3.030275802889288, -7.0, -7.0, -7.0, -3.3649260337899753, -3.4382258076045296, -3.2411648323430047, -7.0, -3.1762842359448387, -7.0, -7.0, -3.3085644135612386, -7.0, -7.0, -7.0, -7.0, -7.0, -3.296884475538547, -3.0680930538642177, -3.049948192500717, -7.0, -7.0, -2.7662888869340487, -7.0, -3.5046747087698833, -3.0230053972499347, -7.0, -7.0, -3.98241985006465, -7.0, -2.9099569781681645, -7.0, -7.0, -3.026226739761552, -7.0, -3.2440295890300215, -7.0, -3.5757649805367193, -7.0, -7.0, -7.0, -3.4496326504700745, -7.0, -3.36923873849768, -2.9480215331411035, -4.058957178777311, -7.0, -7.0, -7.0, -3.443106456737266, -3.0537185238968583, -7.0, -7.0, -4.179206976155488, -7.0, -7.0, -7.0, -3.2383388812371847, -7.0, -7.0, -7.0, -3.7208205817703437, -2.932421276674442, -7.0, -7.0, -3.0595634179012676, -7.0, -3.1228881475449426, -2.849214606209089, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2465259353438465, -3.2991389499032406, -7.0, -7.0, -7.0, -4.220090646144356, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6285140388898274, -7.0, -7.0, -7.0, -3.239406743231971, -7.0, -7.0, -7.0, -7.0, -7.0, -3.288994028501752, -3.802636918082811, -3.8822968009376515, -3.2874284643448046, -7.0, -7.0, -7.0, -7.0, -3.0731682622651015, -3.791164125033335, -7.0, -7.0, -7.0, -7.0, -3.9518472968997793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4263485737875077, -7.0, -3.5269850685599957, -7.0, -3.930847191682497, -7.0, -7.0, -3.5903271909002226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0676287167282457, -7.0, -3.6032093494771824, -7.0, -3.7952541825808828, -3.139905950729172, -3.325310371711061, -3.4581844355702627, -2.779957051246906, -7.0, -3.524266268766979, -7.0, -3.4530123911214554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9966429913554724, -7.0, -4.361142087753333, -7.0, -2.877710029878129, -7.0, -7.0, -7.0, -3.116441697539312, -7.0, -7.0, -3.114344054609816, -3.205880729887537, -7.0, -3.2304489213782737, -3.4714567409470156, -3.431899599491494, -7.0, -7.0, -2.934750874663579, -7.0, -7.0, -7.0, -7.0, -7.0, -2.960280464436642, -7.0, -3.161667412437736, -3.794584622327861, -7.0, -7.0, -3.2750808984568587, -3.3637999454791094, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5158198968280416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0635585181109812, -3.45499721730946, -3.5459253293558426, -2.6706516545283736, -3.140036410975282, -7.0, -7.0, -2.8026127711598994, -2.781755374652469, -2.863966883310938, -7.0, -3.4885341273951536, -7.0, -7.0, -3.232742062720737, -2.8560841179056817, -7.0, -3.0499928569201424, -3.091315159697223, -7.0, -7.0, -3.299942900022767, -7.0, -3.081527326244805, -3.107662124276845, -3.564192460626198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8000293592441343, -3.373601541853096, -7.0, -3.568788212315347, -7.0, -3.532735274709472, -3.9439888750737717, -7.0, -3.306982282551364, -3.1812717715594614, -7.0, -3.3839050869769083, -3.4574276929464847, -3.1547282074401557, -2.6646419755561257, -3.850339854583479, -7.0, -7.0, -7.0, -3.977691410286653, -3.145351816558461, -7.0, -7.0, -7.0, -7.0, -3.407900540142635, -3.2489536154957075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3012470886362113, -4.385749227675279, -3.625946620256845, -4.620580189857018, -7.0, -3.3782767419344064, -4.119552797667117, -3.363737299322217, -7.0, -3.3346547668832414, -7.0, -3.644832328825636, -3.2460675192399124, -7.0, -7.0, -7.0, -7.0, -3.5397032389478253, -7.0, -7.0, -7.0, -3.731346975545955, -7.0, -2.9590148778070953, -7.0, -7.0, -3.4593817164331497, -4.176850610160418, -4.292499739685581, -3.236537261488694, -4.021685352215705, -3.6913997990989937, -2.649642251303885, -4.601212290310882, -3.0857774428096105, -3.240341203017829, -2.788433535176211, -7.0, -3.823580181490171, -3.9226605943560844, -2.6872613462435067, -3.503050994369906, -4.205240463402212, -2.939791919790285, -2.863434394037579, -4.332216205878284, -7.0, -4.009378294844197, -3.2953691485100065, -3.367666464108184, -2.8565699071538484, -4.349238662688126, -3.8890494582775337, -2.932447061047428, -3.5025636691073636, -3.1574063947093705, -3.231752684425389, -3.8407063757428226, -4.0416886941315635, -3.315314212257778, -2.5561516778861386, -7.0, -7.0, -3.8650002766762355, -3.1311907879776646, -3.419646017478006, -7.0, -3.7758833889278214, -4.028197720101696, -2.487188895396036, -7.0, -3.3474275986185416, -7.0, -3.746393108385608, -3.430840687404714, -3.3089910290001643, -3.4559102403827433, -4.189050275274487, -3.9901345373455035, -7.0, -3.8500639271210804, -7.0, -7.0, -7.0, -3.545041898453366, -2.9022360696016483, -7.0, -3.9957799353027403, -3.9210083935915856, -4.6658418474962895, -7.0, -7.0, -7.0, -3.3364835588742867, -7.0, -7.0, -3.633165353683903, -3.9411137270371017, -7.0, -4.0402660074460846, -4.146391634457859, -3.9444121640759975, -3.219060332448861, -3.1970047280230456, -3.564784384503987, -3.7894234092048125, -3.801650631931656, -7.0, -2.882740385211145, -3.392026389643856, -7.0, -4.0483194224790955, -7.0, -3.3861421089308186, -3.714947644666789, -3.537714180353135, -3.1997551772534747, -7.0, -7.0, -2.7052933977148914, -2.639130597679463, -2.077832842045998, -3.509740015570382, -2.286829670251312, -2.2041199826559246, -1.971275848738105, -2.4283635105171277, -1.7078362064167623, -3.472610197596045, -3.215108581053093, -2.1566164472925426, -1.7136105305189089, -2.8248312077777618, -2.526683818845363, -1.9752019622578523, -2.2565479670535487, -2.793456323676415, -2.0295287116034255, -2.1970047280230456, -2.156145156435762, -0.5664196350588286, -2.3467944909178753, -2.9786369483844743, -1.665223510201882, -2.3242824552976926, -2.7878651281530042, -7.0, -2.2327225144353644, -2.393867559040913, -2.596871878604247, -2.665483945585669, -2.808739845117393, -2.1235193223274114, -3.146128035678238, -2.1019129120616467, -2.9023655589976114, -2.4865316776156754, -2.984864716816858, -3.132579847659737, -3.41161970596323, -2.4252313570756017, -2.685443151803357, -1.4334061336424062, -1.7729881093117132, -2.8022604758937684, -2.045246255090335, -1.9588027033995024, -7.0, -2.57672517213259, -1.515684649859023, -2.449324093098727, -2.0414757957664404, -2.4541085892161996, -2.4674601095072637, -3.044245688956796, -2.926959488380276, -3.172894697752176, -2.081252842052782, -2.790519727626253, -2.7259116322950483, -2.512081284866043, -2.886490725172482, -2.5651020273557044, -2.738100733954366, -1.7882785888429444, -2.200884682394445, -1.8242188405518553, -3.426240081535656, -7.0, -2.5131541577360896, -2.1986570869544226, -2.53585649562398, -2.6574741619879405, -1.237036828856375, -7.0, -2.951580344903392, -2.2461266112866, -2.6266824662362946, -2.73413281289821, -2.7679182021097164, -2.281941933440825, -2.850714290418167, -1.3364597338485296, -2.301665995794215, -1.7561179536256082, -2.104163534134702, -1.7119052749795018, -2.6913762288033705, -7.0, -2.6196241523468924, -1.8912818604740502, -2.62283547952152, -1.7945234910719294, -2.4741911363832516, -2.048643178798163, -2.333773571713693, -3.052212835769748, -1.8745784456856038, -3.27207378750001, -2.2706788361447066, -2.9596772555121413, -7.0, -2.648034574860868, -2.9683272595463874, -2.0754709227891843, -3.154423973114647, -2.961104552884867, -3.348888723071438, -1.460834848706078, -3.3119656603683665, -2.9434945159061026, -3.1559430179718366, -1.8626961724476383, -1.8126227614617871, -1.837047036359575, -1.439625049601588, -2.049157430485653, -2.517855418930029, -2.5144001589521867, -2.7810369386211318, -1.6749317634685799, -7.0, -2.7651716502632686, -7.0, -2.9677819080757994, -3.230576636268741, -2.9373506949096404, -3.1845652557783897, -2.5038555079669074, -2.958802703399502, -2.814691432747457, -7.0, -2.4072408977401274, -2.968015713993642, -7.0, -3.334936032690669, -7.0, -7.0, -2.4860254478323944, -2.022525403969648, -3.544811911757776, -7.0, -7.0, -7.0, -7.0, -2.31854490346367, -3.413299764081252, -7.0, -7.0, -3.114610984232173, -7.0, -7.0, -7.0, -7.0, -2.8840397404753637, -2.8226038992559745, -7.0, -3.173186268412274, -3.844379916604807, -7.0, -7.0, -3.0791812460476247, -3.1694072252385252, -3.0802914129703645, -3.273695587930092, -7.0, -7.0, -7.0, -7.0, -3.070562787817278, -3.9181352261663593, -7.0, -3.23946632295603, -3.5470277612346184, -7.0, -3.1225435240687545, -7.0, -2.946288473013431, -3.291146761731886, -7.0, -3.7899800418403067, -3.241048150671644, -7.0, -7.0, -7.0, -2.808210972924222, -3.0993352776859577, -3.081707270097349, -7.0, -3.1539672216454786, -7.0, -3.8643049389888486, -7.0, -2.862429556106009, -2.9577668661476535, -7.0, -2.0643688391738695, -7.0, -7.0, -7.0, -2.4311339179075766, -7.0, -3.0657077276443823, -3.224403557764839, -2.4691615691918494, -3.8321255425340093, -7.0, -7.0, -3.2216749970707688, -7.0, -7.0, -7.0, -7.0, -2.4933186082321015, -3.329092647195331, -3.6811356668587436, -7.0, -7.0, -2.408663874063811, -7.0, -3.1741325234191096, -3.6869935662646784, -7.0, -3.0356965038452106, -3.679953248981408, -7.0, -3.453471233722936, -7.0, -2.6290696425437527, -1.9298033300351878, -2.9426693313867003, -2.648034574860868, -7.0, -2.8249064713021124, -7.0, -3.5666731376061165, -3.3085644135612386, -7.0, -7.0, -3.141342687508441, -2.905256048748451, -2.9628426812012423, -7.0, -7.0, -3.5085297189712863, -2.8946852037877533, -2.996949248495381, -3.343014497150768, -7.0, -3.2635768963716663, -7.0, -7.0, -7.0, -2.76733050948733, -7.0, -2.56643749219507, -3.011993114659257, -2.451696154995558, -2.956186223231246, -7.0, -7.0, -7.0, -7.0, -3.3154805264453038, -7.0, -7.0, -7.0, -3.6103407114521566, -3.2092468487533736, -3.236789099409293, -3.286203768893748, -3.8556251420846746, -7.0, -7.0, -7.0, -4.297462857233573, -3.2757719001649312, -3.225180008177683, -3.6639834546082666, -7.0, -3.19506899646859, -2.106629778521703, -2.5474054596674893, -7.0, -3.0136796972911926, -4.077440584471324, -7.0, -7.0, -7.0, -3.0557604646877348, -7.0, -3.2732328340430454, -2.6924062348336304, -3.170848203643309, -3.1300924267372516, -7.0, -3.433503150169539, -7.0, -3.09377178149873, -3.2907022432878543, -7.0, -3.384472889924203, -7.0, -7.0, -2.7261836614188204, -3.3444168371579774, -3.0141003215196207, -7.0, -7.0, -3.315130317183602, -3.0576661039098294, -2.5384480517102173, -3.3527611917238307, -3.4868553552769432, -3.168350140185944, -3.3836358683618797, -3.063386978864393, -7.0, -2.557206339765532, -3.840327991445741, -7.0, -7.0, -7.0, -3.2140486794119414, -7.0, -7.0, -7.0, -3.172991909723909, -3.116939646550756, -4.293252033147825, -7.0, -3.7652959296980564, -3.246879252504379, -7.0, -7.0, -2.8660903354600853, -7.0, -7.0, -2.7371926427047373, -2.906335041805091, -7.0, -2.737987326333431, -3.383815365980431, -7.0, -3.4144719496293026, -7.0, -7.0, -2.8026027095457597, -3.4498446565674765, -7.0, -3.492690561149542, -7.0, -7.0, -7.0, -3.041195233696809, -7.0, -7.0, -3.006323393378873, -3.145662470707546, -7.0, -2.3251636753807006, -7.0, -3.28397928423848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.598790506763115, -3.8484970180903666, -4.122322600329196, -7.0, -7.0, -2.688419822002711, -7.0, -7.0, -7.0, -7.0, -3.3544926005894364, -7.0, -7.0, -7.0, -7.0, -3.0965624383741357, -7.0, -3.0484418035504044, -3.0629578340845103, -3.799138619593707, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1855421548543754, -7.0, -7.0, -3.7307822756663893, -7.0, -3.519434194913703, -3.152349508312726, -7.0, -7.0, -7.0, -2.0404357682520624, -7.0, -2.9721027186202433, -2.363074486652865, -4.1136760118971, -7.0, -7.0, -7.0, -3.5389505620143615, -3.4815859363676225, -2.6626679063304084, -2.8564267724702446, -3.3961993470957363, -2.1481911962420113, -2.896801697664922, -3.052693941924968, -3.300812794118117, -3.057919558531498, -2.6651788044030984, -7.0, -2.6290696425437527, -7.0, -7.0, -7.0, -7.0, -3.1375123531221294, -3.257054277944658, -3.287129620719111, -7.0, -7.0, -3.811370704099495, -2.842609239610562, -3.068556895072363, -3.8211640307644217, -7.0, -7.0, -3.0434605235779117, -3.0879587894607328, -3.981909170090792, -2.795648331832097, -3.522900459461583, -3.095169351431755, -3.591621038213319, -2.60959440922522, -4.397374736429878, -2.644821396440092, -7.0, -7.0, -7.0, -7.0, -2.893206753059848, -7.0, -7.0, -3.0178677189635055, -7.0, -2.946615995262667, -7.0, -2.5386051486487737, -7.0, -2.9607085516885565, -3.372451701409366, -2.498861688992884, -3.9572360388763665, -3.2827266613816737, -4.242114805477301, -7.0, -3.130205069581069, -3.906939764651386, -3.336859820916809, -7.0, -3.241795431295199, -7.0, -3.1242868058150215, -3.219650005970414, -2.9860248820066873, -3.4252080511386565, -7.0, -7.0, -3.484157424365381, -7.0, -7.0, -7.0, -3.0938592615034377, -7.0, -2.76889361210532, -7.0, -7.0, -4.300236684117335, -7.0, -7.0, -7.0, -7.0, -4.082030981267012, -7.0, -4.295611076923875, -3.502990108608549, -7.0, -7.0, -7.0, -4.422335359999594, -4.522995988963267, -4.110297838172837, -7.0, -7.0, -4.448268198264959, -7.0, -4.323726367155352, -7.0, -4.911805458566956, -7.0, -4.538912893903674, -7.0, -7.0, -7.0, -4.2009325358991925, -7.0, -3.736707894580018, -7.0, -4.682172162503082, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983761560286165, -7.0, -3.257574239858015, -7.0, -3.897058654934976, -3.5238021896457496, -3.6145281197475394, -3.00552369267328, -3.8623898110266452, -7.0, -3.731553512580534, -4.016071816734024, -3.5634810853944106, -7.0, -3.4598540572723233, -3.3840934407581154, -7.0, -2.9534946926692696, -3.3784584677820555, -7.0, -3.8303319934519617, -3.683821230045629, -7.0, -7.0, -3.6136172198239294, -3.4884463604842493, -4.665487180782811, -7.0, -3.1316988442592404, -7.0, -3.702703320968491, -7.0, -7.0, -3.618919299575765, -3.9306434410421645, -7.0, -3.5546708351714558, -3.838801882249584, -3.9414688387364754, -7.0, -3.023458237643675, -3.363235804483694, -3.578797423889578, -3.3185085369309166, -3.2065560440990297, -3.082254038925177, -4.004268815714698, -3.6191977157929474, -4.234624344891733, -7.0, -2.9488040459328113, -3.6593984972774454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6425081628115623, -1.813866802650178, -1.7220301264804447, -7.0, -3.3891660843645326, -2.920664310678378, -7.0, -2.627195109792065, -2.60959440922522, -2.368644417219931, -3.035829825252828, -2.536033815546728, -1.3993516938589772, -1.9664350758652838, -7.0, -3.5414856359104596, -2.9429995933660407, -2.71121652432109, -7.0, -3.163757523981956, -3.8151126581898125, -7.0, -1.7954628943903799, -2.5239321817948963, -1.6921741159174137, -7.0, -2.600771282720914, -7.0, -7.0, -4.602363891112775, -3.113504660424134, -3.8373709559972196, -7.0, -3.519434194913703, -1.5914621306074836, -7.0, -1.4727162014619495, -7.0, -1.5327543789924976, -1.8834187583022521, -7.0, -7.0, -3.4702634469650784, -1.4669983859942513, -7.0, -7.0, -2.57672517213259, -7.0, -7.0, -0.7767155648384892, -2.7069736761761782, -3.908431398966006, -7.0, -1.332733677438973, -1.3799649732151271, -7.0, -3.1204542743702937, -7.0, -7.0, -7.0, -2.5794569365924565, -2.386287988405634, -1.542330061958561, -3.649821463224565, -3.3334472744967503, -7.0, -7.0, -3.159266331093494, -2.8096270418940494, -7.0, -1.4670743944328781, -1.680388070759728, -3.307067950661298, -7.0, -1.4862558922341522, -2.5161264550669142, -2.366236123718293, -3.454387467146955, -2.5512185706063266, -2.7584071921878865, -2.9979685486693444, -2.5100979751883425, -2.149998186291342, -7.0, -3.3085644135612386, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8174331441113842, -3.528402437953617, -2.9332594512699535, -3.42422807069598, -7.0, -3.322243624275502, -7.0, -1.2625668398595538, -7.0, -1.7163916266127448, -7.0, -1.4382031886892928, -2.062923679353503, -7.0, -7.0, -2.1577966360127188, -2.41137916622742, -2.2567281259887664, -2.2087100199064014, -7.0, -7.0, -2.523312822759656, -7.0, -7.0, -2.7686381012476144, -7.0, -7.0, -7.0, -3.146128035678238, -7.0, -7.0, -2.823800153749878, -7.0, -3.159266331093494, -2.518660142364339, -2.7361972389182934, -2.948999454026953, -3.3235958235627225, -7.0, -2.887617300335736, -7.0, -3.2962262872611605, -7.0, -7.0, -3.226559207269092, -3.2041199826559246, -2.716003343634799, -2.890867938811441, -7.0, -2.8870543780509568, -7.0, -7.0, -3.446070935701005, -7.0, -3.2256538231813816, -2.636688447953283, -7.0, -7.0, -7.0, -2.53655844257153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.883012144086084, -7.0, -7.0, -7.0, -4.2024883170600935, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.440239816085663, -3.9005855866499615, -7.0, -3.6886867242841235, -3.9810434059034163, -7.0, -7.0, -7.0, -3.36679638328673, -7.0, -7.0, -2.8839688333242246, -2.301649973616383, -2.900913067737669, -7.0, -7.0, -2.4463818122224423, -7.0, -7.0, -7.0, -7.0, -3.015778756389041, -4.841109084468154, -7.0, -7.0, -7.0, -7.0, -3.062487970918584, -7.0, -3.1470576710283598, -7.0, -7.0, -3.300812794118117, -4.307699231631596, -7.0, -7.0, -7.0, -7.0, -3.1109262422664203, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2943559851451605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3981329855611953, -7.0, -7.0, -5.126222349463532, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.287577809078705, -3.908712191721561, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.389272429175553, -2.8382192219076257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.199496156206543, -3.0655797147284485, -3.855458580386036, -7.0, -4.995029392086501, -7.0, -7.0, -7.0, -7.0, -7.0, -3.304598226343637, -3.20615098159626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.436639631692661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5448614576459025, -7.0, -7.0, -7.0, -7.0, -2.910624404889201, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5900612308037427, -7.0, -7.0, -3.9474873313986176, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.935406489752349, -7.0, -7.0, -7.0, -7.0, -3.9559146976452366, -7.0, -7.0, -7.0, -7.0, -3.4149733479708178, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.083359264660818, -7.0, -7.0, -7.0, -2.9710437918360286, -7.0, -7.0, -2.6130863955560057, -2.9150478947700735, -7.0, -7.0, -4.360952968049115, -3.2650537885040145, -7.0, -7.0, -2.688864568054792, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8291965263847696, -7.0, -4.67176592005093, -7.0, -2.528488190640618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2801228963023075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0979956320455218, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7985125330313516, -7.0, -3.305136318943639, -7.0, -7.0, -3.7180447335139175, -7.0, -3.934952707817858, -7.0, -3.867837730406542, -7.0, -7.0, -7.0, -7.0, -3.758609142659744, -3.494432898726399, -3.735119634081872, -3.854063011866421, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9403670459856652, -7.0, -7.0, -7.0, -4.053417803596533, -7.0, -7.0, -3.990072334692153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8981078474672053, -2.8573324964312685, -7.0, -7.0, -4.8285490535326625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7891751343253475, -4.972344030581982, -7.0, -7.0, -4.241430254748615, -3.490660653356137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.643288139836406, -4.773545103223439, -7.0, -7.0, -7.0, -3.8999663367071444, -3.5893910231369333, -4.593042261900327, -4.5805543564083875, -7.0, -3.019012379815664, -7.0, -7.0, -4.220513414767524, -2.929555153595555, -7.0, -7.0, -3.4048699840315244, -7.0, -4.015841571684366, -3.598899887063883, -5.388351683831754, -7.0, -7.0, -4.112202690730536, -3.8573324964312685, -4.35923767911977, -7.0, -7.0, -3.8215062500719243, -3.8637985386805003, -7.0, -7.0, -4.198794500175598, -3.3322364154914434, -7.0, -7.0, -4.455986239067319, -4.190611797813605, -4.31527743947181, -2.8447877188278463, -7.0, -4.367903569482139, -7.0, -7.0, -7.0, -7.0, -4.457856675648477, -4.002122846225162, -7.0, -4.14367043347016, -4.48660992182486, -4.682515107334342, -7.0, -4.440657244144619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.390497944533399, -4.20945857234593, -5.706617089429145, -7.0, -2.8610220696884467, -7.0, -4.257558587444218, -7.0, -7.0, -7.0, -4.223288219096948, -7.0, -7.0, -4.134702916820561, -4.182214865267536, -7.0, -7.0, -7.0, -7.0, -4.189349924339198, -7.0, -4.0415111129593235, -4.258009568255152, -7.0, -4.7459039238674015, -7.0, -7.0, -3.911274825786263, -4.300182294646901, -2.9242792860618816, -7.0, -7.0, -7.0, -3.730862992046494, -2.577830453990907, -3.3961993470957363, -3.5877109650189114, -2.462397997898956, -2.8488047010518036, -3.346313847059117, -2.213849659558812, -3.0459094670350093, -7.0, -3.1607685618611283, -2.4002500911501117, -3.436701808477978, -7.0, -2.2911467617318855, -1.4816585538068021, -3.2298417622229714, -2.6625689669332604, -3.08161730749073, -3.1562461903973444, -2.751279103983342, -2.9468030399953147, -2.586587304671755, -1.952515690138819, -3.3059958827708047, -3.5518158223510157, -7.0, -3.117188407119984, -7.0, -7.0, -3.3943422178182256, -3.4822319819836443, -3.2704529682818424, -7.0, -1.0695692111150856, -3.345177616542704, -2.546542663478131, -3.01717251394567, -7.0, -7.0, -3.051128394305932, -7.0, -2.081244406611398, -1.598773142276921, -7.0, -2.79605370040254, -7.0, -1.515684649859023, -7.0, -7.0, -2.4137187650610787, -3.9954596866210643, -3.4222066951579917, -2.8639173769578603, -3.5671440451956573, -2.8428587624452937, -7.0, -2.947494989360088, -3.0461047872460387, -7.0, -3.208387603795154, -7.0, -2.761935665168088, -7.0, -2.5002153572023382, -2.4812036769243906, -7.0, -3.560086048497414, -2.265211027637486, -2.707499207149024, -2.1557696815169702, -3.373463721632369, -3.816705183666515, -1.6313369446412391, -7.0, -3.807940721215499, -3.4863191329739993, -3.338057875419756, -1.3248674400236076, -3.6109793799229974, -3.1931245983544616, -2.750970984437319, -1.8567837983394515, -2.784260582566084, -2.902456178608144, -2.6286443222846065, -1.7134036349493234, -2.5634810853944106, -2.816241299991783, -3.363442741279142, -2.8866317069889784, -2.832508912706236, -2.527486687520691, -3.6868915113982936, -2.5196405150411416, -2.9361587817056365, -3.293387111239789, -2.1836830421216202, -7.0, -1.6776862831585442, -7.0, -7.0, -2.4853427913382387, -3.685204134471015, -3.226771698912882, -2.8344207036815328, -3.0002170929722305, -7.0, -1.9482924534631156, -1.8495558985503493, -2.0448880318480462, -7.0, -2.8305886686851442, -1.6789733759197651, -2.2630439833131657, -1.919078092376074, -2.970280444951661, -2.9786369483844743, -3.345177616542704, -2.5514499979728753, -2.466496903744401, -2.9375178920173464, -7.0, -7.0, -2.745465168670727, -3.1233615587462964, -2.6653464274249417, -3.114610984232173, -3.4766867429456445, -3.3730040047672736, -7.0, -7.0, -3.2586372827240764, -3.04766419460156, -7.0, -3.3248583881988676, -7.0, -7.0, -2.7059858251715236, -3.161517733138683, -3.1398790864012365, -2.591064607026499, -7.0, -3.391816923613249, -7.0, -3.3727279408855955, -7.0, -7.0, -7.0, -3.269512944217916, -7.0, -7.0, -7.0, -3.245265839457461, -2.6765411988558334, -3.4075608494863623, -7.0, -3.00987563371216, -3.5353857052762576, -3.8003733548913496, -7.0, -3.245018870737753, -3.1840716740489867, -3.0944461713401465, -3.085290578230065, -7.0, -7.0, -7.0, -7.0, -3.15601883092165, -3.6453240015622934, -3.1784013415337555, -3.0615278708905076, -3.2205229985629567, -7.0, -7.0, -7.0, -2.904038968600478, -2.922379406594948, -7.0, -3.6682577529497595, -2.7585334222372864, -7.0, -7.0, -7.0, -2.7962967400517917, -7.0, -2.505045568058097, -7.0, -3.5328817194073974, -7.0, -3.8437620828337336, -7.0, -7.0, -3.215108581053093, -2.6033248398913864, -2.07132157559902, -7.0, -2.8817649496862066, -7.0, -2.3458191151555057, -7.0, -2.7731714320613046, -2.9897834198968223, -2.2242548193822347, -3.8664054983780547, -3.296445794206396, -3.3378584290410944, -3.2889196056617265, -3.3461573022320086, -3.361538971269279, -7.0, -3.228400358703005, -3.025510672852581, -2.476849735809972, -3.236848334173514, -7.0, -3.2161659022859928, -2.2573185130976388, -7.0, -2.7726550358373743, -3.1316186643491255, -7.0, -2.979206813945708, -3.6817579471116177, -7.0, -2.8313577854420675, -7.0, -2.963079160641827, -1.7369950446660034, -2.901049445343407, -2.5770319856260313, -7.0, -2.6358187213644175, -2.8514621949945393, -3.3266430361026345, -2.886490725172482, -3.4709981696608736, -7.0, -3.0045477615939205, -2.815198120256473, -2.7842042331316814, -7.0, -7.0, -3.577836341292744, -2.7646243978509815, -3.071513805095089, -2.916980047320382, -7.0, -2.6763506101478534, -7.0, -7.0, -3.193958978019187, -2.2253509746632445, -3.2089785172762535, -2.9437417658313136, -2.8145805160103183, -2.330576096087729, -2.79485387103731, -7.0, -3.263636068588108, -2.783903579272735, -3.4112829130173843, -3.2581239524386674, -7.0, -7.0, -3.0398105541483504, -2.886960486691408, -2.887858329561368, -3.0570952896126675, -2.86150725642242, -3.648900196979764, -7.0, -3.6049277034284457, -3.0195316845312554, -3.884856337732354, -3.388278863459639, -2.9904498565727176, -3.71357453777207, -7.0, -7.0, -1.933466196889718, -2.3542151847499793, -7.0, -7.0, -3.6894154213820136, -7.0, -7.0, -7.0, -3.229169702539101, -7.0, -2.792686526225059, -2.811038508604216, -3.040545831821507, -3.4741433897608056, -7.0, -3.3372595397502756, -7.0, -3.2550311633455515, -2.922033079238554, -4.097222592519901, -3.0481642458737346, -7.0, -7.0, -3.032820149438564, -3.4092566520389096, -3.2016701796465816, -7.0, -3.483016420144132, -2.718667735316211, -3.2304489213782737, -3.1204093945560682, -7.0, -3.55942779975949, -2.6401085986457034, -3.473778834646725, -2.65745844336742, -2.848343094827404, -2.6018427897820984, -3.540025634074014, -7.0, -7.0, -7.0, -3.34143452457814, -7.0, -3.256717745977487, -7.0, -2.8305886686851442, -7.0, -3.7032268741481635, -3.2038484637462346, -2.9591095650677848, -2.8280227464330054, -7.0, -2.923983747103962, -2.06641467461787, -3.420120848085703, -2.842359573330675, -2.738780558484369, -2.5176356898679657, -3.394626764272209, -2.5343434568060275, -3.12985095078891, -2.99409708958821, -3.282546589969968, -7.0, -3.7016974770258484, -2.256830895064795, -3.460465587356657, -7.0, -3.2685111110587712, -7.0, -3.8357539675193832, -3.3098430047160705, -2.9630003484681415, -7.0, -7.0, -2.742594221135839, -3.2246625288410296, -7.0, -2.1636085634310516, -7.0, -2.961684702257791, -7.0, -2.890979596989689, -3.2706788361447066, -3.2135177569963047, -7.0, -3.290479813330673, -7.0, -7.0, -3.666705136119899, -2.578110012727244, -4.166430113843282, -3.965639236752102, -7.0, -2.801403710017355, -3.0051805125037805, -7.0, -7.0, -7.0, -7.0, -2.9725113957504123, -7.0, -7.0, -7.0, -7.0, -3.256958152560932, -7.0, -3.2242740142942576, -3.4581844355702627, -3.646918104564691, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.773640193260026, -3.174786417367337, -3.3783979009481375, -2.627422757278291, -7.0, -7.0, -7.0, -1.8943896435119245, -3.5017437296279943, -2.9036078703683783, -2.6388884247050757, -4.02138778832472, -3.057475915826254, -7.0, -7.0, -3.038262407104784, -2.916980047320382, -2.428049496084509, -2.6851213670441716, -3.4274861090957858, -1.9908976866546153, -2.851869600729766, -2.5260806918020298, -2.6278776945799716, -2.4520056101349996, -2.5370172851730106, -7.0, -3.2645817292380777, -3.109240968588203, -3.256717745977487, -7.0, -7.0, -2.9163223242173815, -3.380075503475807, -7.0, -3.5851221863068155, -7.0, -3.688165476764458, -2.283792678888281, -7.0, -3.611255844847484, -7.0, -2.7444885672205115, -2.549266072612872, -2.875495340871019, -3.160854246873126, -2.553680794052605, -3.3815963601406294, -2.7841892053809607, -2.870501444747579, -2.7544757508452475, -4.3105761718588536, -2.674299673973244, -7.0, -7.0, -7.0, -3.355579216240905, -2.6399842480415883, -7.0, -3.3199384399803087, -2.866877814337499, -7.0, -2.8071289555924217, -3.2837533833325265, -2.2015408590501777, -3.3310221710418286, -3.0764583877121514, -3.119668207244826, -2.8530895298518657, -3.960565902818198, -3.175699365701362, -4.296128050854992, -7.0, -2.5832584502973877, -3.7678729114200067, -3.0040755930845697, -7.0, -2.5822528043462953, -7.0, -3.6585837154070626, -3.0113287324559876, -2.9006401839826004, -3.507855871695831, -7.0, -7.0, -3.255875273391467, -7.0, -7.0, -7.0, -3.1401150518957146, -3.27669152884504, -2.485933600889173, -7.0, -7.0, -4.607315597669501, -4.7799786753300575, -7.0, -7.0, -4.420846541601197, -4.0919481908785595, -7.0, -4.00062927088754, -3.5853761184457458, -7.0, -7.0, -7.0, -4.250785826687035, -4.400464593466745, -4.11651919378264, -4.351138958581849, -4.206520053837808, -4.6272378027861425, -7.0, -4.335076597314406, -7.0, -4.6909381778354655, -7.0, -4.244808836846276, -3.663700925389648, -7.0, -4.367570219499281, -4.215928229339918, -7.0, -3.7407286347551265, -7.0, -4.085067485564809, -7.0, -7.0, -7.0, -7.0, -7.0, -4.16818800475665, -7.0, -3.4211101297934343, -2.8813846567705728, -4.078275522086601, -3.040021591492229, -3.244771761495295, -3.147985320683805, -3.5052081388648544, -3.048053173115609, -3.594593426642608, -3.0839403565513352, -2.720572720364261, -4.157275396454035, -3.4112829130173843, -3.0769422219858713, -7.0, -3.2234501285027197, -2.9332059908106287, -7.0, -3.262332413822626, -3.9156636035057732, -7.0, -7.0, -3.2106254789227284, -3.5447837581666044, -4.804270655346634, -3.2595938788859486, -3.174277918292213, -7.0, -3.337159644526856, -3.851869600729766, -5.1062249048967985, -3.5129177534573452, -3.546542663478131, -7.0, -3.343782654669529, -4.1485872321429795, -3.8362396965244656, -3.1061908972634154, -2.9863237770507656, -7.0, -3.4726210327460354, -3.2469360469440005, -3.335858911319818, -2.906560310984251, -3.599308630368478, -3.6738499773429494, -4.048595216808917, -7.0, -2.9208187539523753, -3.5780658838360915, -4.319043566399113, -7.0, -7.0, -7.0, -7.0, -7.0, -2.381029081802262, -1.2965236571066519, -1.6777728089309885, -2.9439888750737717, -3.4782778319196046, -2.54165487206726, -2.7016913116170014, -2.0542157128256915, -2.246744709723841, -2.175959634723138, -7.0, -2.3879804323128875, -1.283374781838098, -2.0293837776852097, -7.0, -2.8171144355748146, -2.8041394323353503, -2.355719638613961, -7.0, -7.0, -2.2900964722673876, -7.0, -2.0055481951688097, -2.3137166067099697, -1.3539385356851514, -7.0, -2.4851072570571047, -7.0, -2.9362623419034777, -3.763149784852867, -2.707514560598585, -3.3480891924506277, -7.0, -2.984414787243434, -1.4046223390223078, -3.361727836017593, -0.9627609703517096, -7.0, -1.406798151621762, -1.6768850447403816, -7.0, -3.241048150671644, -3.545430829465351, -1.4196949370625, -3.7709992051639407, -2.9993480692067216, -2.449324093098727, -0.7767155648384892, -2.4137187650610787, -7.0, -1.612403878049977, -3.525044807036845, -7.0, -1.2899823276711404, -1.2798511362397667, -7.0, -2.8158086639122692, -7.0, -7.0, -3.6518108610117204, -1.853753504217767, -2.18519344738246, -1.3148722551578658, -3.0013009330204183, -2.3888436682532856, -7.0, -3.9112108931375533, -2.2973227142053028, -2.614338797449572, -3.278753600952829, -1.2659149386601007, -1.3566800444024676, -2.8095597146352675, -2.2818852037063175, -1.2457243123026969, -1.969628590819608, -1.970262325566553, -2.5298151966446305, -2.2445039010543644, -2.4237918130180067, -2.7349331100815006, -2.494154594018443, -2.085283143653935, -3.2776092143040914, -3.4138025167693513, -3.3875677794171883, -3.2095150145426308, -7.0, -3.9029270960172626, -7.0, -1.6914030131311042, -3.2935835134961167, -2.666393165355889, -2.6020599913279625, -3.192455938511975, -3.053918355714631, -2.9081785301701615, -1.1380148847219913, -7.0, -1.1548038032485408, -7.0, -1.3266469230038163, -1.815812058813848, -7.0, -3.1956229435869368, -1.7038382993699157, -2.139323367218689, -2.093149570816301, -1.9334872878487053, -7.0, -7.0, -7.0, -7.0, -3.210853365314893, -2.9375178920173464, -3.0925452076056064, -3.4459154139511234, -2.5348718599395945, -2.511437702158953, -3.0130479961152314, -7.0, -3.2771506139637965, -2.556101391950587, -3.3012470886362113, -2.145755623637207, -2.737987326333431, -2.7272283421926953, -3.837714668284911, -3.748885440009517, -3.021602716028242, -2.717393087162805, -3.0521165505499983, -3.3014640731432996, -7.0, -3.0211359262688506, -3.334051440346892, -2.4791844152834357, -2.7443907861817323, -3.277265309456845, -2.959279950130939, -7.0, -3.236537261488694, -3.2238851518758858, -2.7286242862229995, -3.146128035678238, -2.5894708640199418, -7.0, -7.0, -7.0, -7.0, -7.0, -3.495775529716882, -2.7752917999785107, -2.913120709844209, -2.521644156181464, -3.6799726942774185, -3.3913762391696496, -3.0152362915297055, -2.9184928935246375, -7.0, -3.9807303765359454, -2.5138565817652143, -2.2448344222145216, -4.010469569796392, -3.995898323646437, -7.0, -3.6775613311560935, -3.6732052817790453, -2.2500774312148915, -3.7441364524012473, -7.0, -2.203181876449656, -2.6487906292519825, -4.004665233247877, -7.0, -3.971554153446061, -3.087347537450042, -3.4114092409812082, -7.0, -3.6145703180599975, -3.527372082827612, -3.977266212427293, -7.0, -3.9902500329278165, -7.0, -3.682190218984122, -2.2479732663618064, -3.9732664361085286, -3.271415618781008, -2.907993255039917, -3.1426196465966703, -7.0, -3.9923325590474645, -2.485957905922165, -3.0088981147709397, -2.0679538048440853, -7.0, -3.5268990185335793, -3.481550113834348, -2.47716383052303, -2.7052526322873587, -2.0908384551410677, -3.290442730593008, -1.888069214244454, -2.975718945367262, -3.9906495883188544, -3.220761653975142, -3.1645758949823053, -3.00039068924991, -7.0, -7.0, -3.6766021695820186, -2.614765431938085, -2.6684204324445906, -2.755769346221779, -2.978545700462739, -3.9755696578936623, -2.306922610847946, -7.0, -2.77509442444802, -2.9745774799800357, -3.9778607292646972, -3.1106271156204817, -2.5414995135598417, -7.0, -2.616105810460869, -7.0, -3.683272236315922, -1.3070412898672565, -2.5072604310624937, -3.2876226024861923, -3.493272117359938, -3.4664598146729486, -3.997517439414725, -3.6038297496598206, -2.6780278487139313, -3.429752280002408, -7.0, -2.093744898972794, -2.467079316425522, -1.9647492132986788, -3.1970047280230456, -7.0, -3.2185730139164606, -2.373565814884186, -2.710924711347061, -2.5856316106761206, -3.504062882678692, -2.233968902971278, -7.0, -7.0, -7.0, -2.0687398856757437, -3.974327435423617, -2.848881587744384, -2.812662729830916, -2.146261438991191, -2.2165476761046525, -7.0, -3.984212166761434, -3.1649473726218416, -3.3171436620228896, -2.907306471393107, -2.3660970326463957, -3.2718880526604837, -2.96528011476304, -2.917855464834902, -2.7582864160604745, -3.304619762853121, -2.7526154239139053, -1.9074980009049258, -7.0, -3.7231545443921883, -7.0, -3.855430309029509, -3.533560238411781, -2.7890980595595236, -3.0711788047067543, -7.0, -7.0, -1.4298799326440386, -2.7126131063474843, -3.9688563746146923, -3.671913012441587, -2.799907883932568, -7.0, -7.0, -7.0, -3.375526446675889, -7.0, -2.786440847338095, -3.1132746924643504, -2.4178112658140627, -2.605336740684594, -3.997779430865604, -3.1031719432008473, -7.0, -7.0, -3.411325026421723, -3.8306528137974243, -3.1144719788595743, -7.0, -3.9848872010643275, -7.0, -2.9869706781459966, -7.0, -7.0, -4.035389709198677, -2.524500814263041, -3.9780891730561425, -2.6951897138022916, -7.0, -7.0, -3.098797499203422, -7.0, -2.960734963005006, -3.2481776883387057, -3.213296347620159, -2.4529220306674047, -7.0, -7.0, -7.0, -7.0, -7.0, -3.982904117792628, -3.9735434685324895, -2.377437798729648, -3.5083501285699255, -3.333012995488623, -7.0, -2.687897814926582, -2.086134111752849, -2.6206131348939996, -2.134698573897456, -2.0420156273858576, -2.841401187421594, -2.5882910298599247, -3.5462135278186464, -3.1292869842179925, -4.012373167222489, -3.4213570985131425, -2.739110644752371, -3.388145623856844, -3.433097476967988, -7.0, -2.8530895298518657, -2.6044260689687695, -2.6431846848842975, -7.0, -2.9749719942980692, -3.971461405024587, -3.0192053369187453, -3.9933921374490025, -2.9817362608522706, -3.985336641735613, -3.9917132757130895, -2.903993825990188, -3.202293662186187, -7.0, -2.575726528681198, -2.876039047832732, -2.3095755769561013, -7.0, -3.6704314093606056, -3.1399240420952785, -3.3727739637205776, -3.6787914343662442, -7.0, -7.0, -3.9934362304976116, -2.0671535473026466, -3.202045350620628, -3.1751250862836606, -3.161117232139066, -7.0, -3.5099637749044597, -2.8154006298544783, -2.5617400834287203, -7.0, -7.0, -7.0, -2.662921995161852, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.187470603188043, -7.0, -7.0, -7.0, -7.0, -3.697403723200488, -3.2962701975267965, -7.0, -3.998782269831736, -4.138176339573041, -2.991266360881699, -2.408824558860751, -2.1302198775923924, -2.5087948871576584, -3.498034723687027, -7.0, -1.5172706109957594, -1.990621349001281, -1.6733169604664826, -3.999695887410839, -2.980371353572635, -3.1003274582102502, -3.681874122128647, -3.0812122449879595, -3.494548806405942, -2.6522463410033232, -1.9017122104576005, -2.8266300482253013, -2.968428005865279, -1.6814996690891952, -2.110190848049964, -7.0, -2.838303257217854, -2.7084578503607872, -2.8598135415071138, -7.0, -3.285061975935162, -3.23771125771367, -3.982904117792628, -3.247768748118374, -7.0, -1.9761305930235014, -2.6950561797445025, -3.234390722392192, -3.765407750790011, -3.545142110961596, -2.9008708648852064, -1.798591765678604, -7.0, -3.0351833474357774, -7.0, -2.7960971103163055, -3.0649002270174326, -3.556824948270698, -2.180424883222142, -2.113289239500206, -7.0, -3.558468562523795, -3.3103746420476123, -2.633351902960404, -2.6871515323369826, -2.529638852931278, -7.0, -7.0, -7.0, -3.1642636080226607, -2.7723883930158575, -7.0, -7.0, -3.1056993786226297, -3.98344585734134, -2.8651039746411278, -3.2887856124025046, -1.797830963889765, -3.9978667262391445, -2.9282677984501237, -3.2712107746411596, -2.820551732299791, -3.208333844497951, -2.2801123594578954, -3.349856647581789, -7.0, -3.2249069709218237, -3.7988884028032657, -2.7563434766857546, -7.0, -3.4024763265233604, -7.0, -3.3136563466180315, -3.1342640621234383, -3.373402454159332, -3.4402004153614896, -7.0, -7.0, -2.777350496469624, -7.0, -7.0, -3.999652425366079, -4.125058151172073, -3.9867269593312185, -1.917010589497117, -3.6685256885568625, -7.0, -2.408702390713377, -3.2091254812396053, -4.139233459140505, -2.8158432906632664, -3.5263679996200654, -2.1311338865820924, -2.2432248018527514, -2.997986728734311, -1.8321033032122396, -2.35786341111216, -2.853461603499059, -3.4629667009097616, -3.070428626873039, -3.3625506487568675, -2.0011879629820015, -3.878636673026517, -2.6131575505462368, -2.1387716948758584, -7.0, -3.1896380429619335, -7.0, -4.124708385166029, -3.8404668106930764, -2.12549665884508, -2.5131368536733767, -4.481413961253745, -3.258278015243031, -3.5393808228365784, -7.0, -2.0324609465937584, -2.753302742300264, -3.25998670693116, -3.698347069034933, -4.088082906528282, -3.7340393487571233, -7.0, -4.216033877818673, -3.0390990451760107, -3.104487111312395, -2.1013592637731815, -7.0, -3.0731487427978834, -2.8983745114874, -2.7133592688790253, -2.248463717551032, -2.935291288456696, -4.047780924741197, -2.2896782179173534, -3.573683693093798, -7.0, -3.717504074764202, -2.741333451523255, -2.327316515095668, -7.0, -2.5486182064918386, -3.0446237442419464, -7.0, -3.137929259755552, -3.557654214241106, -7.0, -7.0, -3.125656086902075, -2.460737593625028, -4.195406484730991, -7.0, -4.139532771597939, -7.0, -3.09810021660978, -7.0, -4.077843403008046, -3.20455823185195, -4.104043029922009, -3.9738664498353784, -3.8734513937097477, -3.1574084097585495, -3.696019208407526, -2.8549130223078554, -2.4862403588911572, -2.7681255921293118, -2.8161868675127377, -2.1012174708869567, -3.697795823376305, -2.040214856216984, -3.248152870802089, -2.9207840090040063, -3.7016712064148596, -7.0, -3.0657494206748472, -2.9008162576433216, -3.678897576201988, -7.0, -7.0, -7.0, -7.0, -4.148448403523384, -1.3006191504514415, -2.0588844995901434, -1.2537182492765606, -3.378488748031808, -2.4399396743370376, -2.318659483967699, -1.7472373637694574, -2.8910194679543166, -3.379532125886119, -2.287499106768442, -3.9755237129603316, -2.354206346938359, -2.00941689881391, -2.7142856308540804, -4.043401578910881, -2.229090858172361, -2.9992492063863114, -2.465544485482776, -4.005480809979401, -3.6911699341316035, -2.1853119149262725, -7.0, -2.4776035362594007, -3.0751818546186915, -2.1277884718276874, -7.0, -2.404560059092356, -7.0, -3.502108338302493, -2.877479330077011, -1.825356965962974, -2.2204146672656555, -3.9708116108725178, -3.221637755336672, -1.816445265937485, -7.0, -1.9161154053482399, -7.0, -2.2856406428815594, -1.4689551604370634, -7.0, -2.802636918082811, -3.576533303571085, -2.404792011671339, -2.1176895206789914, -3.1459064003164983, -2.0414757957664404, -2.7069736761761782, -3.9954596866210643, -1.612403878049977, -7.0, -3.213747903069593, -3.6731591954541862, -2.117912478570315, -1.9457967260479998, -7.0, -1.2955932026846997, -7.0, -7.0, -3.0480013294385864, -2.6093967600697114, -1.362223758624564, -2.018085446189288, -2.043637998675992, -2.4878451201114355, -7.0, -3.9019212493762616, -3.292300384859081, -2.789727567230209, -2.9069632186628955, -2.349654097721151, -1.2769941764972297, -2.7365223057290464, -3.4936439050611052, -1.4237712239985465, -0.5505993099604394, -2.1964390649696863, -2.8725447293769673, -2.0694466906279434, -2.565035708058474, -2.9253727683396926, -3.2350231594952237, -1.9298934287203138, -1.8510599199240134, -3.539786789252412, -2.930567009900929, -3.9744195738522863, -3.970765159780768, -2.6027054557581097, -3.0705180970198693, -2.494589366786662, -2.1340645523132356, -1.7028743734610616, -2.3056697671748903, -2.369965093310457, -2.729026432136778, -3.0878459249737014, -2.0183978544157357, -3.992686039162128, -2.5494120098036346, -7.0, -2.03342375548695, -2.033750562998724, -3.0964359785983557, -3.6709412807357755, -2.043837786748507, -1.8465476663945941, -1.8544581971920788, -2.9992610711131005, -7.0, -7.0, -3.9717859378791145, -7.0, -3.974649834438722, -3.9796394122229075, -1.5739712574358031, -7.0, -3.037027879755775, -3.51241754860084, -2.9935684827897275, -3.0767314430382817, -3.384487822086762, -3.99899997221832, -3.9916247345340055, -2.5341415331616393, -3.323994202181974, -2.7019493236739613, -3.1250374286850575, -7.0, -3.296840627340024, -7.0, -2.9136725954360077, -3.2130748253088512, -7.0, -2.7790362224230765, -7.0, -3.695831772826692, -3.0464951643347082, -3.160731069351768, -2.756560043006683, -3.9766250520507276, -7.0, -3.570348319900194, -3.9739586861067036, -2.6633434412297596, -3.3235408460980116, -7.0, -3.9691828592322613, -7.0, -7.0, -7.0, -7.0, -7.0, -4.221231613181412, -7.0, -7.0, -7.0, -3.0578897480168896, -7.0, -7.0, -7.0, -4.008685319195168, -3.649042634086176, -7.0, -7.0, -4.185343801582189, -7.0, -7.0, -2.6336110186015156, -3.7523942084053634, -7.0, -7.0, -3.4010680453089526, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.283015932570804, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.934321667513431, -7.0, -3.6173970865153198, -7.0, -7.0, -4.232182634187274, -7.0, -2.2943298414179085, -7.0, -7.0, -7.0, -7.0, -3.9208274397551555, -3.4133541437902304, -7.0, -4.05952555273869, -3.8478193472952396, -7.0, -4.20306009759596, -7.0, -7.0, -3.9052830562719762, -7.0, -7.0, -7.0, -3.064949100672052, -2.8010706272538823, -7.0, -7.0, -3.3961245911816342, -7.0, -4.307945075845931, -3.9823617016331467, -7.0, -7.0, -4.092182412910935, -7.0, -7.0, -7.0, -7.0, -3.651859269246949, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7431176252147416, -3.1659764148756198, -4.264109156305809, -7.0, -7.0, -7.0, -7.0, -4.222716471147583, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.282939165754773, -3.8898057518680855, -7.0, -7.0, -7.0, -7.0, -2.5952066401840526, -4.205475036740891, -7.0, -7.0, -4.265266047887377, -3.584218112117405, -7.0, -4.474493075006849, -3.3639757106352675, -7.0, -4.038162978435675, -7.0, -3.1250562356895384, -7.0, -4.248046869358661, -7.0, -7.0, -7.0, -2.9284583038295486, -7.0, -7.0, -7.0, -2.8825245379548803, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5050481786205916, -7.0, -4.465085287557433, -3.693265155714742, -7.0, -3.874713688757779, -7.0, -7.0, -7.0, -3.574543846224296, -7.0, -7.0, -7.0, -7.0, -3.851450549213087, -7.0, -7.0, -7.0, -4.21505564736031, -7.0, -7.0, -4.219977256744623, -7.0, -7.0, -7.0, -7.0, -4.2203957782315955, -7.0, -3.565916291001725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8899363358931804, -7.0, -3.169022388112188, -7.0, -4.30464129829467, -3.359705418354718, -4.205231438820003, -3.691656043498147, -3.9721565358594937, -7.0, -4.2372923375674585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.56696751468097, -7.0, -2.935572270237632, -7.0, -4.314604473213435, -7.0, -4.218614269745094, -7.0, -7.0, -3.532117116248804, -3.9329554831162303, -7.0, -7.0, -2.8033297854157246, -2.810430203137513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.760874638052189, -7.0, -3.1110791251778114, -2.7374265241697593, -7.0, -7.0, -4.198931869932209, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7867131768474955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.725476030972769, -3.1804787808061468, -7.0, -7.0, -7.0, -3.921348270280974, -7.0, -7.0, -3.1033149257643444, -7.0, -3.2757719001649312, -7.0, -2.333318409122339, -7.0, -4.192901826109565, -7.0, -3.1137147160910255, -4.309757882316366, -3.6818199109880556, -4.002209272988015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.608085178437431, -7.0, -7.0, -2.9651635486826406, -7.0, -7.0, -7.0, -7.0, -3.7768464086952993, -7.0, -7.0, -7.0, -3.9601138720366857, -3.633392699935256, -2.7468102160993535, -3.8715145587083817, -7.0, -7.0, -7.0, -4.012605257946353, -7.0, -7.0, -7.0, -3.94126290931895, -7.0, -7.0, -7.0, -7.0, -7.0, -4.208736877114406, -4.280100110054924, -4.202133980060819, -3.9386998099696515, -4.594315188234234, -3.322334046036867, -4.202379321079624, -7.0, -3.026584330956644, -3.8421514084022284, -7.0, -7.0, -7.0, -3.9623219727295846, -4.321826183768503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.357878345009401, -2.691605984637163, -2.2127647225826825, -2.802636918082811, -2.958518067079998, -2.8942029975509205, -2.455976496389408, -2.738376029233355, -2.357737088527054, -2.6607402205351565, -2.245256522432556, -1.8829559936467783, -2.8532514966327533, -2.9205688835070207, -2.050269725144891, -2.794271650788277, -2.5022581338025716, -2.2243872833409797, -3.129537255261788, -2.7086671756137686, -3.668269405761896, -3.101215445237254, -2.882873675280301, -1.9036270577576777, -2.563797396028862, -3.258110255321881, -3.108341874862239, -2.7713568794849883, -3.3877710651183564, -2.276804279785151, -2.6586373316420966, -3.0704978948302255, -3.2126838649269582, -2.926642506981403, -2.7190462913403337, -3.4310419453358856, -3.3961024388097374, -2.7152076832489747, -1.9242203627211898, -3.5438818782481594, -7.0, -3.6439036572971206, -3.3050105477691814, -3.876468026859822, -3.5889660227086835, -3.110890197740769, -7.0, -3.341730044534258, -3.6147039190058914, -3.7781029927601812, -2.250792024445299, -3.5226072263706474, -3.567365472210331, -3.74020473550745, -3.5464604029452773, -7.0, -7.0, -4.324447085505086, -2.940957708931293, -3.085847809030809, -3.427864626379701, -3.2531725590743164, -3.1133664244900174, -3.0827604445276005, -7.0, -4.295896818678989, -7.0, -3.1639022977727844, -3.3654463838101742, -4.032067283910736, -3.3867583135862205, -2.6314993658233234, -7.0, -2.8459609051863803, -2.8733517463155307, -2.8598885038757995, -3.09968064110925, -7.0, -3.3273998072376996, -2.8513463849849727, -3.6174006916297037, -7.0, -3.548969417380984, -2.924275149904263, -7.0, -2.946553076387335, -7.0, -7.0, -3.2118191363261213, -3.2837659364659917, -7.0, -7.0, -7.0, -3.0421252913482664, -2.5287642283562692, -2.1492489190780883, -3.757294782847373, -2.590688431618049, -3.288081468736615, -2.8815921305506578, -2.370071610360726, -2.7899833959966163, -3.92667678639669, -7.0, -2.6559916658950637, -3.409876790951437, -1.7251131088741447, -3.073901558314207, -3.3546845539547285, -2.8876428703838406, -2.881939567275474, -2.2710409206551185, -2.588943642740015, -1.9493348651412958, -2.7199386533405456, -2.956982282900748, -2.3145878572394274, -2.6326214246439354, -3.745309059940828, -3.7836415902165057, -4.184577874932025, -2.717878448652346, -2.436843893426568, -3.7134625412575164, -2.2821566721414137, -2.40145085584641, -1.7647792549889878, -7.0, -2.6111796985484577, -3.526339277389844, -2.351338936973356, -3.5511327007286075, -3.7069736761761782, -3.6154239528859438, -2.4249485448383665, -3.408635626349605, -3.8899736384039962, -3.3344788832062546, -3.7394404803282644, -1.8474637815711823, -3.5959644342051575, -2.4541085892161996, -3.908431398966006, -3.4222066951579917, -3.525044807036845, -3.213747903069593, -7.0, -3.4883532650390285, -3.4855084848338214, -3.7818989193511494, -2.764201907308401, -2.6734288443646643, -2.005023411506081, -3.1905557923351724, -2.2025192329253795, -3.452348761457827, -1.7444664398795455, -3.4712428012687067, -1.5998588226819117, -4.217404974401542, -3.1201899153438655, -2.7834469809135887, -7.0, -1.1591758179606904, -2.675167089663394, -3.1167354288396383, -3.1221544171577533, -2.3844577343685702, -7.0, -3.4208218220040685, -2.9465051692283937, -3.3759835025820006, -7.0, -2.6741781802543962, -2.786457682207476, -3.462654647851409, -3.6098077693287025, -2.4282882881236194, -1.7559902827779956, -2.5785326019327033, -2.6769355639062264, -7.0, -4.1854004831904525, -2.7764821024837807, -1.488920663651653, -3.505800931949501, -2.3815477619447862, -2.3576112698227605, -3.1506541205096408, -2.3502480183341627, -2.4688190763202438, -2.3309546133716443, -3.4688394488579064, -2.855326386800406, -4.22177925693969, -3.2307894109934434, -3.5068206042642256, -3.3869446243705745, -2.831516743132146, -7.0, -3.7447882918684714, -7.0, -1.8881200547559909, -4.203495235193291, -3.1535099893008374, -3.8852481077813863, -3.8849368971038603, -3.888235673270567, -3.2842897062472733, -3.0762201993238683, -2.6257444722246497, -2.1644059707459053, -7.0, -3.594834355583318, -3.053105894858664, -7.0, -7.0, -4.202842365194632, -2.8167658936635127, -4.238773501720696, -2.801904793732039, -2.4953866359281345, -1.5672944772204624, -2.181639454224491, -3.723838623672183, -4.186193249920351, -3.7852348968790297, -3.721040784326413, -4.184691430817598, -2.3981665380079065, -7.0, -7.0, -2.44502907393028, -1.5297811767161091, -2.8422097046404304, -7.0, -7.0, -3.1541449043022327, -4.187351482223461, -1.5843312243675307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7320518194031846, -7.0, -7.0, -7.0, -5.270615957861121, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752698761855619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.778675706087729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9745040169098305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.162564406523019, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.673843841896885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275219186782149, -7.0, -7.0, -4.750969058002591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0661394928706995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.53763023032496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.124275932006338, -4.536664478278395, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464300725903642, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.659250468772661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.408010882423134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.131101950794651, -7.0, -7.0, -3.9794800840392948, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.226193127497442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.875169533985348, -7.0, -7.0, -5.0176634441579555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.59250984790068, -7.0, -7.0, -7.0, -4.23341073559512, -3.891295806018899, -7.0, -7.0, -4.57785930100737, -7.0, -7.0, -7.0, -7.0, -4.519512983257626, -3.5781920805402576, -7.0, -7.0, -3.7750067696282232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.772424399356814, -4.150664353529561, -4.674897865991049, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.757712270328809, -7.0, -7.0, -7.0, -7.0, -4.678245151927042, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.487597890293567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.067442842776381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.419713488826743, -7.0, -7.0, -7.0, -7.0, -7.0, -5.347056665366522, -7.0, -7.0, -4.605283492530251, -4.289811839117621, -7.0, -7.0, -7.0, -7.0, -7.0, -3.51075346917954, -7.0, -4.176525336535, -2.605305046141109, -2.9161906599805376, -3.433989724808988, -2.7345998321264577, -7.0, -7.0, -3.4252896164467943, -1.9746651808046278, -3.7161355606084956, -7.0, -2.3729120029701067, -2.6720978579357175, -7.0, -2.6603910984024672, -3.037027879755775, -7.0, -2.5165353738957994, -7.0, -1.8750612633917, -2.2052043639481447, -7.0, -7.0, -2.1903316981702914, -3.097213912792869, -2.44870631990508, -7.0, -3.3628039075477067, -4.394651270323019, -3.4433625685513345, -7.0, -3.0979510709941502, -7.0, -2.6725596277632757, -7.0, -7.0, -7.0, -3.466076375349264, -2.385606273598312, -2.5854607295085006, -7.0, -7.0, -2.7017598112436323, -7.0, -2.4674601095072637, -7.0, -2.8639173769578603, -7.0, -3.6731591954541862, -3.4883532650390285, -7.0, -7.0, -7.0, -7.0, -3.5356421758189995, -2.0218781088604905, -2.5854607295085006, -3.2793246654426103, -7.0, -4.091504775081104, -7.0, -2.1972206099604468, -3.1322596895310446, -7.0, -7.0, -7.0, -3.0539998606930654, -2.734799829588847, -7.0, -7.0, -2.3078524552347384, -7.0, -7.0, -3.9288667653964007, -7.0, -7.0, -3.822778104826663, -3.4234097277330933, -3.7145812088395314, -3.061829307294699, -3.7207379770184255, -2.6348801407665263, -2.4878451201114355, -2.5563025007672873, -7.0, -7.0, -3.752662943120972, -2.9398519178833737, -7.0, -2.808042085314898, -3.6808403640591796, -7.0, -3.0387424037299495, -7.0, -2.5192220013770665, -7.0, -2.3450468246483553, -7.0, -7.0, -7.0, -3.640779477344857, -7.0, -7.0, -7.0, -7.0, -3.390281408229663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.576341350205793, -3.004894321731049, -2.3756636139608855, -7.0, -7.0, -2.144885418287142, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7423322823571485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.385963570600697, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3270522653266985, -7.0, -7.0, -7.0, -3.539452491549461, -7.0, -7.0, -3.5043349118024643, -3.225309281725863, -2.533243945589153, -7.0, -3.52750101098112, -3.261143867700667, -3.1986437435491863, -3.8986154974161855, -7.0, -3.225180008177683, -2.832910851172597, -2.7338160978899246, -3.0035682306796563, -3.5683190850951116, -7.0, -3.520614521878236, -7.0, -2.8447611095485645, -3.416515692139289, -7.0, -3.2651717231909316, -2.9306133334104154, -7.0, -3.241172786770047, -3.4998244958395794, -2.7269987279362624, -2.768109312089503, -7.0, -3.3131772257740724, -2.812133153334518, -7.0, -7.0, -7.0, -3.0730765131400317, -2.833784374656479, -2.8069333037164066, -3.504878459410216, -3.2227164711475833, -7.0, -3.4335513705142096, -7.0, -7.0, -2.607901598556746, -3.60422605308447, -1.8674800254095916, -3.0657041722395175, -2.9874428049358013, -7.0, -2.652783368995461, -3.174544349203273, -2.562600654599416, -2.6607074090369185, -1.8971308019513333, -2.909701871683438, -7.0, -3.099910730906369, -2.8357698150802566, -3.5822906827189938, -3.591287265058499, -7.0, -7.0, -2.7247438593895046, -2.2008504980910777, -3.344364199443406, -3.221283799492686, -7.0, -1.9041066737190036, -3.503109436671369, -2.6299458313993953, -2.6688206148564593, -3.5182506513085, -2.5276299008713385, -3.471186441854217, -7.0, -2.920123326290724, -7.0, -3.2355284469075487, -1.7065594219777749, -3.0780941504064105, -2.6973539073617196, -7.0, -2.6602328566510707, -2.726144810545967, -2.686189234244024, -2.75190866845489, -2.7546349672131645, -3.6462076122066853, -2.6977850942665635, -2.945679561323437, -2.38464540805471, -3.511749711344983, -7.0, -3.731266349075492, -3.1775364999298623, -3.108734108602365, -2.7747823052705765, -3.5282737771670436, -2.8452789583596783, -7.0, -7.0, -3.5005109105263372, -2.427918673356549, -7.0, -2.56118659791047, -3.0225314677988853, -1.9001129694791195, -2.2970608126818783, -3.563599728881531, -3.5363058723510337, -3.128937494690652, -3.3200423754796446, -3.1296415629730068, -7.0, -7.0, -2.9107133176711484, -2.94911107633224, -2.8453461374114086, -3.1119342763326814, -3.041590046889367, -3.3120678713554006, -3.2612628687924934, -3.9848872010643275, -7.0, -3.82961678096687, -2.605305046141109, -3.13956426617585, -3.131361989115943, -7.0, -7.0, -1.5977354300511866, -2.1708790495172456, -7.0, -3.0265332645232967, -3.374365024877566, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7113853790984517, -2.7928763631597087, -2.7102712611027617, -3.1000257301078626, -7.0, -3.41073506681745, -3.505963518018126, -7.0, -3.0115704435972783, -7.0, -2.859738566197147, -7.0, -3.5381965783494542, -3.0978355210448445, -2.9108447206229275, -7.0, -3.4954055631461936, -3.666892211066536, -3.1484998267052453, -7.0, -3.3265406685165617, -7.0, -3.018783688874697, -2.5600775062037324, -2.814628055223535, -2.299878868399812, -2.644635503768153, -2.710963118995276, -3.268541503618488, -2.8464608251293324, -7.0, -7.0, -2.8796692056320534, -3.0630830451223976, -3.0549958615291417, -3.5056925074122, -2.8403021730559184, -7.0, -3.3840147208069307, -7.0, -2.9472158119567875, -2.629950556958126, -7.0, -3.175105740887016, -2.3833498485369895, -3.325515663363148, -3.229169702539101, -3.035929789456723, -2.814913181275074, -3.1335389083702174, -2.5226448314230057, -3.242851882584178, -7.0, -2.8656368876996288, -7.0, -3.3677285460869766, -2.493968958417453, -3.4384192768514645, -3.5251744278352715, -2.7157348093720355, -3.499549625905149, -3.0813473078041325, -3.5615783683009608, -2.7351995484223135, -3.2381716036301467, -3.255754786643044, -2.7393613426327974, -2.916453948549925, -7.0, -1.9461246192171453, -7.0, -2.788389352411851, -7.0, -3.4998244958395794, -3.238798562713917, -3.03261876085072, -7.0, -7.0, -7.0, -3.5616975326539935, -3.337698805964078, -2.1378656637782965, -3.5122840632818537, -3.715097061723223, -3.4934580509951885, -3.0671948870277648, -2.655018314638606, -7.0, -7.0, -3.5182506513085, -3.6868149545073168, -3.168202746842631, -2.9431976300689264, -7.0, -7.0, -7.0, -3.532754378992498, -7.0, -3.0380900496081393, -2.6490426340861766, -3.2394149932197545, -3.1961761850399735, -3.201806642957022, -7.0, -7.0, -3.274042330049831, -7.0, -7.0, -3.274734984872738, -3.2750232653226883, -3.184880624670255, -3.0395628247012687, -2.789674705127005, -3.653983907374069, -7.0, -7.0, -1.5174322594135998, -3.3780343224573315, -2.515554531259106, -2.3192217631820213, -3.830275825517338, -3.589726256254237, -7.0, -7.0, -3.018423082826786, -2.834791465503346, -2.1542606375239313, -2.4983105537896004, -3.9838517189914717, -2.3509617316943032, -3.271609301378832, -3.0395463043793804, -2.9192873405043827, -2.8434663744184254, -2.1249115923549144, -7.0, -3.5368108659915416, -2.5044185788030413, -3.5326270012288914, -2.8662873390841948, -7.0, -2.8447433691232478, -2.7928584219256614, -7.0, -3.2589563822842833, -7.0, -3.560545286566989, -2.488426282762359, -3.52270499273475, -3.439825930092142, -3.513617073787875, -3.2819419334408244, -2.4354992980773567, -3.1863912156954934, -3.224607048037594, -2.407280034926181, -2.8308353288166703, -2.62446961504493, -2.6048018496313974, -2.2490235558263048, -3.7808012637673216, -2.285643847711239, -7.0, -7.0, -7.0, -3.3224260524059526, -2.4719928544270404, -7.0, -2.8673496171887924, -2.358183228180746, -2.83416628394262, -2.4245186658770486, -3.5471591213274176, -2.5631984703770168, -7.0, -3.6009728956867484, -2.4543366159693427, -3.0959825284443285, -3.918828024910367, -2.955110230970552, -3.786833916184531, -7.0, -2.6057456809049255, -3.538229034708407, -2.6815929538723164, -7.0, -2.989004615698537, -7.0, -2.7467049482220722, -2.9021018307478776, -2.901076715726255, -2.602150459921541, -3.2066909810216324, -7.0, -2.568536957184299, -3.535547279176668, -7.0, -2.878406887580996, -2.705497167475071, -3.0657041722395175, -2.105491048217859, -3.494154594018443, -3.200440076436431, -4.14701639612984, -4.490337794344103, -7.0, -7.0, -4.734903791882342, -3.5750063009359265, -7.0, -3.7165562993397074, -3.418124443314898, -7.0, -3.824386202318774, -7.0, -3.895580385213198, -4.3104128948315825, -3.656662407539732, -7.0, -3.998825819040286, -3.7601811416654574, -3.827885982789856, -7.0, -7.0, -4.614580866997486, -7.0, -3.9631028015052774, -3.3431271326910226, -7.0, -4.0811852273835525, -3.6541283912618123, -7.0, -3.3160822265631986, -7.0, -3.856055311086805, -3.7737133252770216, -4.262308674749025, -7.0, -4.17076028088121, -4.010299956639812, -3.8901134942909175, -7.0, -2.9417796781737486, -7.0, -3.393320693557942, -2.8902712123140275, -3.3175619366212463, -3.080566364476648, -3.2661593022103284, -3.217834747530156, -3.2003305651247738, -2.3958503760187813, -2.586812269443376, -3.8797694599360364, -3.155202571949865, -3.0223596265107244, -7.0, -2.6911104914874224, -3.0151734029146566, -3.216429830876251, -3.1050233074971167, -3.574857708475501, -3.564902672529205, -7.0, -2.973145124860241, -3.0051847197848223, -4.1901677985567725, -3.2328691051326137, -2.535063847247395, -3.5446880223026773, -3.075537603513607, -3.4628470358316736, -4.409944952202783, -3.0508851820376446, -4.283549972002684, -7.0, -3.012029849231654, -3.0104754173446038, -3.2571915630244033, -3.526016021340753, -2.8321666341003913, -3.179886765714693, -3.0547725984703322, -2.759107523483687, -2.973589623427257, -2.6346315231555373, -3.3773716406852055, -3.3234583668494677, -3.444006221109515, -7.0, -2.819214799882384, -3.0555392705956312, -3.874017703862186, -7.0, -7.0, -7.0, -7.0, -7.0, -2.114986933832905, -1.3742947154876974, -1.4903084222666931, -3.5267268673146357, -2.9640709705579553, -2.416374900038764, -3.011062694729735, -2.064083435963596, -2.380211241711606, -1.8947353540933787, -7.0, -2.1055472807534796, -1.278331409265105, -2.281870273597101, -7.0, -3.0014632759848294, -2.725185387172794, -2.2061659906502573, -3.5935075893317654, -7.0, -2.489355711136674, -7.0, -2.494618336168116, -2.044735697450507, -1.3738778291825056, -7.0, -2.4023794041326516, -7.0, -3.52270499273475, -3.9261468671635575, -2.591129904389959, -3.3438498292968344, -7.0, -3.7378285058957847, -1.0528443612908982, -7.0, -1.1461280356782382, -7.0, -1.3250852078064717, -1.50250361077883, -7.0, -7.0, -3.4075608494863623, -1.3946705241071904, -2.920181321147177, -3.255272505103306, -3.044245688956796, -1.332733677438973, -3.5671440451956573, -1.2899823276711404, -2.117912478570315, -3.4855084848338214, -7.0, -7.0, -1.0459574485589669, -7.0, -2.758781422699542, -7.0, -7.0, -3.723209310405111, -1.8951461893759922, -1.862408455607033, -1.3714474350404606, -3.1217567584878156, -2.8559227751038248, -7.0, -3.9891827512555476, -2.5129753158318624, -2.502022277744067, -3.5444401373176926, -1.2708026832045765, -1.4685934593401977, -2.9223101632143957, -7.0, -1.171911616738176, -1.8989723109196854, -1.900562185691819, -3.0970836960665213, -1.949041315753517, -2.5161074400320955, -2.566115951349753, -2.6582234545138173, -1.8384513851399538, -3.2604291755779347, -3.1453000192560077, -7.0, -3.030599721965951, -7.0, -7.0, -7.0, -1.631467366203099, -3.1407436671412032, -2.495580220261618, -3.080175365574602, -3.0886675525424048, -2.7575455534913176, -3.2597730063299823, -0.9031888588152286, -7.0, -1.3197856732887936, -7.0, -1.1760219880639236, -1.561138862137888, -3.877946951629188, -3.501333178645566, -1.8409420802430991, -2.1465709673656916, -1.9177558908826795, -2.0149403497929366, -7.0, -7.0, -3.022840610876528, -3.5162708827293403, -3.5089335260500327, -3.2220658425885866, -3.353723937588949, -7.0, -2.5911573950798172, -2.3437777349071722, -3.564192460626198, -3.525692524505011, -2.843606471924511, -2.6204830741547482, -3.0791812460476247, -2.1255668662689016, -2.636287252098513, -2.4638929889859074, -3.024844694749236, -3.8580557180503643, -3.09143245732978, -3.501333178645566, -3.0871422793838077, -2.7103591771903925, -3.4940153747571436, -2.6689855331549603, -3.097719940343722, -2.4893724660018175, -2.6666619535321328, -7.0, -2.3947017784328417, -7.0, -3.0444090865590487, -2.9952841076892596, -3.205610309902521, -2.576947229882608, -2.200384310237582, -3.5888317255942073, -7.0, -3.513483956704257, -2.996219709466273, -3.472317546316842, -7.0, -3.198519630241168, -2.2445863372491552, -2.9947569445876283, -2.897901874268228, -3.236537261488694, -3.3477816552152717, -3.8874485002499535, -7.0, -3.499687082618404, -2.861653870213911, -3.128099110367532, -3.282848602834645, -3.2427898094786767, -7.0, -3.192149125018534, -7.0, -2.908306260085468, -2.863152848577121, -7.0, -3.0097543224035777, -3.16095264798927, -7.0, -7.0, -7.0, -2.9644482079166607, -3.291479852236699, -7.0, -3.1396615986156613, -7.0, -7.0, -7.0, -3.2265999052073573, -2.3521825181113627, -3.029789470831856, -2.5405640806209617, -2.8737564217033555, -3.381205361238583, -7.0, -3.5579511712575087, -3.4988616889928843, -7.0, -3.0681858617461617, -2.5798978696031036, -1.9493257951445513, -3.0399426187629923, -3.5671440451956573, -7.0, -2.584670384464349, -3.3309208305952356, -2.585157724841503, -3.0258790832933666, -2.226142380929929, -3.6410773133253747, -7.0, -3.553761698390004, -3.2463344173155235, -7.0, -7.0, -7.0, -7.0, -3.5471591213274176, -2.4296118679475467, -3.373746382634832, -3.4955443375464483, -3.4838724542226736, -1.9705924583816672, -7.0, -2.4655480766670377, -2.4158718443377936, -7.0, -3.0181177205910004, -3.4343069710353125, -3.4871383754771865, -2.981637424655769, -7.0, -3.5106790310322102, -1.6224357506996805, -3.3608772971020398, -3.5182506513085, -7.0, -2.6440280643574865, -3.548635059814752, -2.9057958803678687, -2.9344984512435675, -2.9397188823541045, -7.0, -2.7328058051535415, -3.174786417367337, -2.531613352728796, -7.0, -7.0, -3.41355121317555, -2.9355072658247128, -2.5455721726119234, -2.8027737252919755, -7.0, -2.840053791875626, -7.0, -7.0, -7.0, -2.3094466032480514, -3.4800069429571505, -3.214667269683036, -7.0, -2.16409411613907, -2.656643331233824, -7.0, -7.0, -2.9815921172140816, -3.5998830720736876, -3.2234310385514684, -7.0, -7.0, -2.5903215880567183, -2.6651478515386624, -2.686061425390275, -2.9636697965031646, -2.860113313378828, -3.254423558725655, -7.0, -3.9757533890362873, -7.0, -3.8909194769224866, -3.5851221863068155, -3.7259932589247224, -3.817763632280368, -3.188365926063148, -7.0, -1.627499437712944, -2.6249164497653634, -7.0, -7.0, -3.810568529216413, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4954782600291048, -2.719552245768398, -2.667141519042328, -3.8670548004767014, -7.0, -3.100801179244967, -7.0, -3.5052856741441323, -2.9897834198968223, -7.0, -3.0616880350304325, -7.0, -7.0, -3.5515719736742537, -3.173815393774398, -3.4761067168401913, -3.4665710723863543, -7.0, -3.002166061756508, -7.0, -3.606703741333674, -3.6245914591268478, -2.855259487808403, -2.093152188112381, -2.9416108021536336, -2.0769079055377255, -2.2412766228690244, -2.3831739621097427, -3.259847906091858, -3.520876381688342, -7.0, -3.4632956099620027, -2.376455288899979, -2.7353327063206136, -7.0, -7.0, -2.713850405963783, -7.0, -3.857352602191875, -7.0, -3.59011703478479, -2.7252511895279548, -3.5633624094866074, -2.820141725700813, -2.2952921430163506, -7.0, -2.9894498176666917, -3.1405080430381793, -2.6858412219337957, -3.111598524880394, -2.918659293421823, -3.531478917042255, -7.0, -2.7069614941736275, -7.0, -3.7583440634019762, -2.1858644078490883, -3.158380232520566, -3.4983105537896004, -2.856305866433299, -3.1696744340588068, -3.3142360032351683, -7.0, -2.714644048372074, -7.0, -7.0, -2.41161970596323, -2.44413668092464, -7.0, -2.78993308093175, -3.360472922041386, -2.660865478003869, -7.0, -7.0, -3.5141491344754376, -7.0, -7.0, -2.92272545799326, -7.0, -3.537063142781617, -2.772240187345505, -2.5699244335130755, -3.7288405683399715, -3.8889092592635315, -3.4644895474339714, -2.437089636681715, -2.4530633975789575, -3.5860243823869755, -7.0, -3.1896306576921556, -3.36726271478424, -3.3242824552976926, -2.922829219666649, -7.0, -7.0, -3.1899112096928057, -3.506369717095504, -2.989894563718773, -3.48826861549546, -2.210750561554938, -3.1762215278609083, -7.0, -7.0, -7.0, -7.0, -3.5514499979728753, -7.0, -7.0, -3.0745726604075623, -3.8656960599160706, -3.1654421823847256, -3.6321534835106326, -2.8424652188889956, -7.0, -7.0, -7.0, -1.592444509859282, -3.6605809124272994, -2.7245607930040894, -2.4728782881402593, -3.82865989653532, -7.0, -7.0, -3.5122840632818537, -3.4890791624977924, -3.2049877041871517, -2.3302634204025954, -2.7100609229151154, -3.1960840270593827, -2.2095150145426308, -2.7695004079763255, -2.340018961128335, -2.2310039303763696, -2.134520365244195, -1.546895032245456, -7.0, -2.605708978411961, -2.252411674761112, -3.028571252692538, -3.1476763242410986, -7.0, -3.0701302598602904, -2.641751652976988, -7.0, -3.7200765727681406, -7.0, -3.4768883097095413, -2.2385138867041006, -7.0, -3.2247919564926817, -7.0, -3.5597869682005565, -2.6897185709293874, -3.3433101031623416, -3.217107768805456, -2.9112337273068007, -2.3884564527002667, -2.165738797864829, -2.286830571313662, -2.7787841351367035, -3.949122824379861, -2.5176796445749416, -7.0, -7.0, -7.0, -3.613154437759265, -2.9777236052888476, -7.0, -2.2834268744391006, -2.8024316264307236, -3.507855871695831, -3.0617351308914453, -7.0, -2.2482068836250533, -3.5496162395190853, -3.578524605274993, -2.5920460639004768, -3.248341156669196, -3.968821379558316, -2.8724961912956757, -3.8352453860764224, -7.0, -2.4904601480516044, -3.4846739647335605, -3.1497321599470633, -7.0, -2.868879446237088, -7.0, -3.0755469613925306, -2.653872343068953, -3.1122697684172707, -3.3636119798921444, -7.0, -7.0, -3.000086850211649, -2.3294656796081408, -3.5439439424829065, -2.437750562820388, -2.318253107516318, -3.517591730711908, -2.5797073979181495, -7.0, -7.0, -4.144937265058756, -4.789968302089217, -7.0, -7.0, -4.7332935859176475, -3.638655621439301, -7.0, -3.6632820254469673, -3.5517992006535386, -7.0, -7.0, -7.0, -4.040151199035471, -4.40647630890183, -3.8306741933963115, -7.0, -3.997071690906057, -3.856109322304873, -4.122445256281956, -4.362350507594848, -7.0, -4.48928156309888, -7.0, -4.5628517332249725, -3.483672863806311, -7.0, -4.204328032253934, -4.251467875483525, -7.0, -3.449485411797984, -7.0, -4.222360914986827, -4.372193719275734, -7.0, -7.0, -7.0, -7.0, -4.48943813884058, -7.0, -3.0827255460196543, -3.2656431419421352, -4.215760900002956, -2.737298928882287, -2.893420302005442, -3.147614498562027, -3.5315701457962727, -3.3761205256094518, -3.2919372792280885, -2.161046976362107, -2.468191808662276, -3.8768814804300282, -3.32080150469275, -2.8954139125550196, -7.0, -2.69539410829111, -2.8804801242258704, -3.189069009399324, -3.9408152086508013, -4.115760242578008, -3.854002233126989, -7.0, -2.9260093638621822, -3.1604685311190375, -4.217152684288512, -7.0, -2.564961804462294, -7.0, -2.9452481227416465, -3.628899564420607, -4.807565468204041, -4.159537116397021, -3.801769470209016, -7.0, -3.2912763272867207, -3.3564524365081927, -3.596019484843069, -3.512817758564873, -2.7974983643715756, -3.1031192535457137, -3.1788331173591167, -2.9641810319735047, -2.6477496180738416, -2.648524247498229, -3.314227811461609, -7.0, -3.369774219408229, -7.0, -3.8069935136821074, -3.4876534031172053, -4.046241459145623, -3.4952667443878105, -3.1744959193752993, -7.0, -7.0, -7.0, -2.1176993012518817, -1.1407535470370553, -1.6427890468225592, -3.49996186559619, -3.1669232380950865, -2.580818098726168, -3.392169149489736, -1.8723044539775622, -2.219419059683715, -2.036607022607408, -7.0, -2.1801731188663362, -1.3830628243918157, -2.3059832544437397, -7.0, -2.7370006044606603, -2.8831880896223963, -2.059830242641179, -7.0, -7.0, -2.1095525886555575, -7.0, -2.4706799424243178, -2.3521825181113627, -1.2058757236399429, -7.0, -2.535875482088115, -7.0, -7.0, -3.844870492827602, -2.4854802225929227, -3.3899494256021807, -7.0, -3.2441121152976153, -1.0872307423607976, -7.0, -1.1707535448630952, -7.0, -1.1694498158686364, -1.5797610983920323, -7.0, -7.0, -3.088756066652953, -1.313680817884655, -3.8635607645262424, -3.531606631932722, -2.926959488380276, -1.3799649732151271, -2.8428587624452937, -1.2798511362397667, -1.9457967260479998, -3.7818989193511494, -7.0, -1.0459574485589669, -7.0, -7.0, -2.818173088643144, -7.0, -7.0, -3.714874382231572, -1.7201106402335262, -1.8969745014802077, -1.3350882209232402, -3.0290454103273037, -2.532860498597645, -7.0, -3.9801397777457543, -2.3824030249571733, -2.6687481953707617, -3.518777068926775, -1.2954129399365204, -1.3974630822209442, -3.1231980750319988, -3.1680553034591394, -1.1738931510871389, -1.9855284446213737, -1.8980291537927607, -2.2974869397629045, -2.0564575761112773, -2.7776684326775474, -2.4822137286093358, -2.358382804215933, -1.9490890981808844, -3.8507074853745373, -3.3002693145303565, -7.0, -2.8773713458697743, -7.0, -7.0, -7.0, -1.6753323777650668, -3.4260230156898763, -2.672073856472178, -2.759856627340681, -3.2756951764686093, -2.9124762123293606, -3.548880562637515, -1.1500821857422776, -7.0, -1.4180394841289152, -7.0, -1.0224261256148603, -1.6378847222472452, -7.0, -7.0, -1.5324438971546441, -2.09330492363931, -2.011818266177299, -1.7556249739153658, -7.0, -7.0, -2.9943171526696366, -3.4888326343824008, -3.1796953833245065, -3.19506899646859, -2.991275312638515, -7.0, -2.3711651177825903, -2.0416558142071124, -3.5397032389478253, -3.0211892990699383, -3.0402066275747113, -2.1316926770993665, -3.531861949095809, -2.1976806451938993, -2.574031267727719, -2.5811528919662887, -3.0725124857356105, -7.0, -3.0671948870277648, -2.6932871570056554, -2.9261954026148027, -2.831997677235896, -7.0, -2.774273595320442, -2.245759355967277, -2.2638228753077008, -2.686859614333764, -7.0, -2.470081735600318, -3.185825359612962, -3.0173116440067362, -2.977266212427293, -7.0, -2.66776416356748, -2.1961123854440547, -3.0881360887005513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2538439565439745, -7.0, -7.0, -7.0, -7.0, -4.244895333691861, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7613263224214566, -7.0, -7.0, -7.0, -4.211618443694198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.396269107674459, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.103915622081331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.137079689009317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.624679808177516, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4305716611898776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.330538057138943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.708760723690317, -7.0, -3.7102302275037986, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.407220892927397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2090590341287974, -4.065101466171193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.326683976381879, -7.0, -7.0, -7.0, -4.0900816180388215, -7.0, -7.0, -7.0, -7.0, -7.0, -4.078166708168154, -7.0, -4.191562787591726, -3.7859701251320095, -7.0, -7.0, -7.0, -7.0, -7.0, -3.801232153830292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.308145007944962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8313791303653706, -7.0, -7.0, -4.241940905630259, -7.0, -3.7807492311035524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8327643049405316, -7.0, -7.0, -7.0, -3.9028908897244614, -3.623352681537992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.974695871909683, -7.0, -4.170789590446391, -4.412981891778567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3149787437751113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040127441781456, -7.0, -3.850866695456682, -7.0, -3.943412067973837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8107700112343634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9890491564382202, -7.0, -7.0, -7.0, -4.232830996311034, -7.0, -7.0, -4.012457578200774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8895966069886656, -3.9387698227831174, -7.0, -7.0, -7.0, -3.842297134328065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.864617861655226, -7.0, -4.331932594695503, -7.0, -7.0, -3.643493800910431, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.307848892509035, -3.6669281777811387, -3.344283085882674, -3.737669627356642, -3.7229628089424898, -3.5502982539858587, -2.5808754128245637, -3.0237721320079123, -3.355603624458788, -3.3315082762863892, -3.240133058042887, -3.2507045590068007, -3.3137617962924364, -3.5258176385229847, -3.2726592166607227, -3.508664363052943, -3.2866360787164175, -3.41019420529868, -2.874082999847761, -3.735858281244711, -2.618309641123432, -3.7368159848109257, -3.45673465817014, -3.2684917546884384, -1.6116777049205535, -4.354838055584639, -3.766775227663688, -2.2757745455678955, -3.540454613671412, -3.8289676454127086, -3.2398831523208846, -3.4094258686714434, -3.1173687913306387, -2.4524621781219906, -2.2679994817957256, -2.894381228035585, -3.2443760940205717, -4.170364408028852, -1.4880478344452681, -4.3260079677596055, -7.0, -4.0796153235269434, -4.292547718850385, -3.951386094880293, -7.0, -3.3988462553946235, -7.0, -3.9832753825780216, -7.0, -7.0, -3.7614767795447017, -4.1234502812832154, -3.650175015279832, -7.0, -4.456639279342896, -7.0, -7.0, -7.0, -3.440926565388096, -3.7701890227359933, -7.0, -4.9971285274358905, -4.091711967160965, -3.205900770092607, -7.0, -7.0, -3.311753861055754, -4.058345346004422, -7.0, -7.0, -3.818984256414086, -3.207462994948207, -7.0, -4.347037133784953, -4.451924528420122, -4.314485193347227, -3.419955748489758, -3.9450252012424625, -7.0, -4.302974532353225, -7.0, -7.0, -4.046582950842146, -3.600011149657793, -7.0, -4.50486487900771, -7.0, -7.0, -3.342079681345193, -7.0, -7.0, -7.0, -7.0, -7.0, -1.1449689891352024, -3.207804384478623, -7.0, -7.0, -2.979092900638326, -7.0, -3.764250875438773, -3.5660837841679958, -7.0, -7.0, -3.8345478576809486, -3.2533380053261065, -3.1617762377172385, -7.0, -7.0, -3.5303277897780863, -3.562976488666603, -2.744423382307533, -3.2909986394651347, -2.9143431571194407, -3.0338256939533106, -7.0, -3.0402066275747113, -3.364550995353972, -7.0, -7.0, -7.0, -3.760573253944394, -7.0, -7.0, -3.247759853835692, -3.5801505485256566, -1.9913180954838037, -7.0, -7.0, -7.0, -2.9109799468508544, -7.0, -7.0, -7.0, -4.280191247872142, -7.0, -7.0, -7.0, -7.0, -2.8776592441116087, -2.8539009163221665, -3.172894697752176, -7.0, -7.0, -7.0, -7.0, -2.764201907308401, -7.0, -7.0, -7.0, -7.0, -3.8819549713396007, -3.3316297176299323, -2.9749719942980692, -2.7544916751089548, -7.0, -3.7368355309230132, -7.0, -3.41237653650371, -7.0, -2.3873898263387296, -2.5947081713790734, -7.0, -2.900609852978509, -7.0, -7.0, -7.0, -1.513655821726943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9201978896837995, -7.0, -3.413132050434872, -7.0, -7.0, -3.1033895669314213, -2.4985226116463055, -7.0, -2.6089536992758626, -3.5906932564421776, -3.526597709103452, -3.594834355583318, -3.1137762838370313, -2.919376987420152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4395479930903456, -7.0, -7.0, -7.0, -3.160568564398739, -7.0, -7.0, -2.757901904775561, -7.0, -7.0, -3.2487087356009177, -3.274619619091238, -3.578696500975596, -7.0, -7.0, -7.0, -3.043165720207454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.892032732972888, -3.846955325019824, -3.060622304309956, -7.0, -7.0, -3.668758541750958, -7.0, -7.0, -3.052123191595359, -7.0, -7.0, -7.0, -3.5951654147902294, -7.0, -7.0, -7.0, -7.0, -7.0, -3.458788881710845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.534819048547555, -3.3638938977741004, -4.175482820774772, -2.620522715839948, -4.142577160920535, -7.0, -3.238693296822902, -3.2237790380327067, -7.0, -7.0, -3.507105924208658, -2.094393478993324, -3.8619523749214517, -7.0, -7.0, -7.0, -2.721366648562226, -2.3000304682218546, -4.3213912783116895, -7.0, -2.261127916622565, -2.8817780961533748, -7.0, -7.0, -7.0, -7.0, -3.8642440146472476, -4.148479258163154, -3.6590249900894882, -4.15896526038341, -7.0, -7.0, -7.0, -3.882353746388714, -7.0, -4.212267528548938, -7.0, -3.5889716175206554, -2.730937486161556, -3.8799269556700935, -4.142139080132135, -3.849265817161557, -2.6416440555197305, -3.861385040442465, -2.385432481320828, -7.0, -4.158633841358625, -7.0, -3.8626381581186875, -2.971246848405424, -2.5585973864013347, -4.205014792569004, -2.4215627985510446, -3.386008212064673, -7.0, -3.5530026278959586, -3.602222821229977, -3.855428289576475, -3.857844902792016, -7.0, -7.0, -4.153601474288411, -2.780548750718452, -3.5036545192429593, -3.5391388535767745, -7.0, -3.021106568432122, -7.0, -3.571685544616966, -3.398683876079538, -4.14035088925253, -7.0, -2.697931199339346, -7.0, -3.412432545593535, -7.0, -7.0, -2.824902278076417, -2.4832448609315168, -7.0, -7.0, -3.903768042526874, -7.0, -3.9128329347228377, -3.1821032558041695, -4.17834373897622, -7.0, -2.370587673923368, -2.9431819988751764, -2.7202144484103994, -4.138807765217715, -7.0, -7.0, -2.9457581341004113, -3.893734028446905, -3.4542348957482654, -7.0, -3.0563330349511615, -7.0, -7.0, -7.0, -3.3548956047110607, -7.0, -3.5920101162931366, -3.2136653005621554, -2.7368445108368746, -2.7487634148774998, -7.0, -4.14472984082465, -3.6858611158657704, -3.8661691476337707, -3.0170565381707126, -4.157940055964767, -7.0, -3.886772643054438, -7.0, -3.544836685408386, -7.0, -3.4078542343317864, -2.4586940243408293, -7.0, -4.304813543394108, -7.0, -4.203561244770675, -3.8622208538486498, -3.904093133539673, -3.936739878637037, -7.0, -3.8525714786244296, -1.9527335904784822, -3.209649035368229, -7.0, -4.137037454789513, -2.3136036121778107, -4.133953844517957, -3.6569920751226617, -3.835468612492718, -3.361885160591638, -4.136244801746143, -3.036011561239873, -3.424368203361429, -3.023822067750505, -1.8177411126078982, -7.0, -3.2388820889151364, -7.0, -7.0, -3.688034006672403, -3.789280973760941, -3.1233070710124684, -7.0, -3.8441042306975133, -7.0, -3.3805006748991953, -7.0, -7.0, -3.5784959493756787, -3.8675264111997434, -7.0, -3.3236645356081, -7.0, -7.0, -7.0, -7.0, -3.8406496682305784, -7.0, -4.150049945162385, -2.4356099266236675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7772253777538043, -3.543478244384271, -3.6062335293295447, -7.0, -3.4218623585834393, -2.4577373207082234, -3.5554269980568862, -2.6738935688061143, -2.7690715925317253, -3.3233699788402276, -3.0464394176583074, -7.0, -4.17897694729317, -7.0, -4.172369376763842, -3.942454526342477, -7.0, -7.0, -7.0, -3.7438819695892174, -4.1825002473792, -3.701678980536721, -7.0, -2.690751843657941, -7.0, -2.976189439230457, -7.0, -3.269074926549013, -7.0, -4.14992695911359, -3.574447990435435, -3.712453270817587, -7.0, -3.592676297400732, -2.7690987497112878, -2.0766317760693416, -7.0, -4.136022599397011, -3.668416980992571, -3.536211120636487, -7.0, -7.0, -7.0, -7.0, -2.572382394058745, -3.7548832282521674, -2.979938401207097, -3.0969404022915272, -7.0, -3.845748993643852, -3.4514179729892613, -2.412070359196469, -7.0, -7.0, -7.0, -3.6971130502213594, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.9845317083029534, -7.0, -7.0, -7.0, -7.0, -4.154667377622576, -3.5503812467309923, -7.0, -7.0, -4.256669648687233, -7.0, -2.456366033129043, -2.88030779314603, -2.5835475348642203, -7.0, -7.0, -2.118964758392623, -2.5386479834077615, -1.0294141960937242, -7.0, -3.06165439200259, -3.313053285378446, -3.4446692309385245, -3.844135321686674, -3.21622247191661, -3.3182025096096512, -1.9868509706251407, -3.48737408483543, -3.702128838286881, -3.3252810364088172, -3.3755721739180373, -7.0, -3.6893976628212823, -7.0, -3.724930914192398, -7.0, -7.0, -7.0, -4.143826390839561, -3.873175231276166, -7.0, -2.886123958121435, -3.057445878513803, -3.863709388627451, -3.7259932589247224, -3.5692568333286103, -3.0254697190610558, -2.9243620009429816, -7.0, -3.470971474238306, -3.838156184752148, -4.1567610983066245, -3.5339499073574743, -3.48061050905939, -2.57460013973368, -2.9596243024569144, -4.286613631657004, -4.18098558078673, -4.219663100737022, -3.287941621856674, -2.732826796502639, -3.411682825574111, -7.0, -7.0, -7.0, -3.67488409438502, -3.4616485680634552, -7.0, -7.0, -7.0, -4.144200460183879, -3.8845971400109183, -3.368968325638322, -3.4825877695267677, -7.0, -4.1615776110488705, -4.240424433083608, -4.154210882206974, -3.2671717284030137, -2.5237348569878146, -3.188614270106468, -7.0, -3.6863681034730362, -3.769340394703022, -3.0784568180532927, -7.0, -7.0, -7.0, -3.744866446899768, -3.5867897782094236, -4.267124775110152, -4.185825359612962, -7.0, -7.0, -4.1966458867870875, -7.0, -7.0, -7.0, -4.246720103107109, -7.0, -2.7129011581876155, -7.0, -7.0, -2.0866368015294006, -2.448265378036188, -3.6581613625766054, -2.3399669095088056, -3.198455916033554, -2.074768494687751, -2.2119760939132904, -3.3021476996357157, -1.120130913728231, -1.9667086841340151, -1.9422406484836812, -3.267614925979812, -2.7582942184040564, -3.0136990008982516, -1.8353730173054152, -2.865393819355079, -2.741982383755251, -1.8086779637406265, -3.601426182944163, -2.7343222637236377, -3.928779787288558, -3.4282647523308776, -3.1826727446541563, -2.015957669406119, -2.1176281732215787, -4.5392015992941275, -3.237003787001136, -2.992523047441195, -3.8876454273058507, -1.8713288289316703, -2.8961481317298348, -2.919414846427105, -3.5348000348742032, -3.2037730116913004, -2.949189030779539, -4.1026394836913, -3.8399596313535307, -2.8774027622267004, -2.64698541854197, -1.3571357449282986, -7.0, -2.389217144793949, -3.1484115092286706, -3.115672905824526, -1.8839376639813945, -2.6386661486929914, -3.8885445298732684, -2.379252320088521, -3.760592096579792, -7.0, -3.4348030193176577, -2.614249325129989, -2.763706024166811, -7.0, -2.703635237583896, -3.5986810989071634, -7.0, -3.1120685042681973, -3.787920738554055, -7.0, -7.0, -3.2331328437628977, -2.3781140519032173, -3.9616092434165946, -7.0, -7.0, -7.0, -3.0550967654044965, -7.0, -3.84748823364797, -2.8195958815358186, -3.9959859979137993, -4.13760727050463, -3.57966929355472, -3.3743061732665587, -3.664136414560668, -2.9131576276683173, -2.126360812021379, -3.690196080028514, -2.438485502098389, -2.878284021346949, -7.0, -2.067731459944934, -3.090312649208021, -3.9252347162317127, -3.8953838666914047, -7.0, -2.4312616252869494, -3.33225258250488, -4.040905475737317, -7.0, -7.0, -7.0, -7.0, -3.4191293077419758, -1.2142070073224809, -3.2355284469075487, -1.7131629510254187, -2.7429449715938286, -2.288905106221548, -1.7967906818747728, -1.3921904418969324, -3.7054930930166874, -3.6658623002031554, -1.6499674589621967, -3.1381763395730413, -2.3211349422448873, -2.3001200546170666, -2.5159046349117986, -3.8853894934914943, -2.1445907669858943, -2.559479127726367, -2.3905671544575418, -3.117542456671693, -2.848127510567875, -2.2253779069107895, -3.674064663366411, -2.4274922332943896, -3.134959072444847, -2.9631316941464156, -7.0, -1.538415794607338, -3.8374621714859947, -3.4421974643102136, -2.43998053517108, -1.7957676115403478, -1.7602164742279682, -3.4362898941796396, -2.670436865698442, -2.4560062365109467, -3.4597542491145123, -3.2529878004090285, -7.0, -3.129514123772523, -1.784103074779229, -7.0, -2.994882517664086, -3.0471357373231136, -3.3249582172365435, -1.9967673882774597, -3.0028754162503097, -2.081252842052782, -3.1204542743702937, -2.947494989360088, -2.8158086639122692, -1.2955932026846997, -2.6734288443646643, -3.5356421758189995, -2.758781422699542, -2.818173088643144, -3.8819549713396007, -7.0, -3.547528576459782, -7.0, -2.356586974678113, -3.0391874223254183, -1.6840900900394933, -2.7139509594753366, -1.9433183777656895, -3.0565823808163457, -3.0719433440030572, -3.2272223343324167, -7.0, -2.626887596279581, -3.032060581504032, -3.18613667169178, -2.4072790622610785, -2.123641887530551, -3.658361236616049, -2.5150651850861645, -1.247843653300319, -2.858286493595753, -3.7137984441929106, -2.3775080333764484, -3.0307346169761686, -3.4925275857610627, -2.9602328731285126, -1.1648593169081123, -1.7801460365337847, -2.8442996228070254, -2.931786802387928, -3.836893516376434, -4.135482491335711, -2.114933427545565, -2.3217564538166924, -2.611267993114786, -1.6370485285004908, -1.163124429608849, -2.1033724596429346, -1.627536536289134, -2.4097613921943695, -2.2543852841984124, -2.9022205282793148, -3.5483587031513357, -3.3306456444075034, -7.0, -2.813358558611011, -2.870306343898879, -2.521936753042379, -7.0, -2.9713628381188473, -3.5589784210949995, -1.6661515214372502, -3.678488028959253, -3.8456560599835443, -4.1365303235313, -3.658933094831393, -3.53763023032496, -3.2346121801550183, -2.7978338888552106, -0.8646140052979363, -3.2700379829462642, -3.8813275841005512, -7.0, -2.752355804153501, -3.5398912045347903, -3.5442851373225057, -4.155001836231253, -3.6726211599937417, -2.938714257982389, -7.0, -2.909522600115815, -2.720893995028669, -3.7714649891354415, -4.153021743626138, -7.0, -2.66291515625562, -4.14989620715876, -7.0, -2.8041199524420146, -4.154667377622576, -3.6763277338813203, -2.270387656461051, -2.694797079605313, -4.197776611271387, -3.8384082784941866, -7.0, -4.189518386126378, -7.0, -2.7285259405518585, -3.8706964579892498, -4.158272004652084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.603019806464783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.387271150430926, -7.0, -7.0, -7.0, -5.094965819049405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.866830605849827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.656577291396114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.950202531637585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.628728568774205, -7.0, -4.02612451674545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7855077880892263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.454600977097761, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.001971557991861, -7.0, -7.0, -7.0, -3.8936508169859634, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.697665162647674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.151561363449798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.283911526303729, -7.0, -7.0, -5.052740100090059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4778444763387584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058179196100317, -3.862131379313037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.508954547385386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.989009564895201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.318355550225704, -7.0, -3.933816174257383, -7.0, -3.4332222533989265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8535124940543097, -7.0, -7.0, -4.289142835932333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.624363325033174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.176415411267064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2345062796618747, -3.9946616941251554, -4.273626206272959, -7.0, -3.935540852652919, -3.4721711466923635, -3.4081268530617237, -7.0, -4.102873723286516, -7.0, -2.912434633375575, -4.3068965975393665, -4.1178262411437965, -3.8842680192180294, -3.0256471576060306, -4.030761590951016, -7.0, -3.241520540023374, -7.0, -4.315025199312605, -7.0, -4.689207600753705, -7.0, -3.8345605710335615, -3.4099331233312946, -7.0, -4.659431268195865, -7.0, -3.370513089598593, -3.519689475629554, -3.3837555416836356, -4.678381786970454, -7.0, -3.594088548371163, -2.7103289580426293, -7.0, -7.0, -4.454616223792699, -3.2845999065332405, -7.0, -7.0, -7.0, -4.589432009956984, -7.0, -7.0, -4.331204524275846, -7.0, -4.934771062200509, -7.0, -7.0, -3.5400164697453222, -7.0, -4.681702430297234, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.992186664642423, -4.64302098761995, -4.928380487793358, -7.0, -7.0, -7.0, -4.956134800175796, -7.0, -5.405595627967882, -7.0, -7.0, -7.0, -3.4211307158850603, -4.434329337337729, -7.0, -7.0, -7.0, -7.0, -4.199936095598896, -7.0, -7.0, -7.0, -4.655546595064349, -7.0, -4.6488145622990995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0556331242728354, -3.4223435713550034, -3.3243559586374474, -7.0, -3.88632148655948, -7.0, -2.829946695941636, -4.043833654133147, -2.8048206787211623, -7.0, -7.0, -7.0, -7.0, -3.519109214749844, -7.0, -7.0, -2.5080485061997226, -4.13049458852347, -2.7425287512507515, -2.8969852540843504, -1.0003875899247916, -7.0, -3.485224400125799, -1.5444957100489443, -2.7741518589547103, -7.0, -7.0, -7.0, -7.0, -1.9084850188786497, -2.8767949762007006, -3.165870561968359, -3.9187919567908267, -3.2200727321168943, -7.0, -2.681090414494438, -7.0, -2.272835795025385, -7.0, -2.718501688867274, -7.0, -3.776580126292323, -2.795184589682424, -7.0, -3.403977963669355, -7.0, -2.2251309633156784, -3.00987563371216, -2.790519727626253, -7.0, -3.0461047872460387, -7.0, -7.0, -2.005023411506081, -2.0218781088604905, -7.0, -7.0, -3.3316297176299323, -3.547528576459782, -7.0, -2.404833716619938, -3.425588558250215, -7.0, -3.932516692455748, -7.0, -2.2806000476987807, -7.0, -7.0, -3.85582190540603, -7.0, -2.3307760174955603, -2.3607826898732798, -7.0, -7.0, -2.7286242862229995, -7.0, -7.0, -4.330748497546924, -7.0, -7.0, -3.529836566775372, -3.0040346161083726, -7.0, -7.0, -7.0, -2.0639897471525535, -2.360376996726634, -2.3171675742837645, -7.0, -7.0, -3.4587322506088714, -1.4659711795948707, -7.0, -2.624134702492355, -3.928856533581911, -7.0, -3.017986785306103, -4.246916917014926, -2.972573080926555, -7.0, -2.1706807163747843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6189541113654435, -7.0, -2.663700925389648, -7.0, -7.0, -7.0, -7.0, -2.8796692056320534, -3.509000790741858, -2.1393946530192696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0107238653917734, -7.0, -7.0, -3.8111056070179306, -1.8399850957844133, -2.8867726430544383, -7.0, -7.0, -3.5490032620257876, -7.0, -7.0, -3.897956810006952, -7.0, -7.0, -3.541454428747589, -1.4984746552394665, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7308406263593452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.903366761511649, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.336739833491843, -7.0, -7.0, -3.6567687792660166, -5.270761495592153, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2182728535714475, -4.305845581858454, -7.0, -3.898944466866509, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.148093417520579, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.335858911319818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.929114813125132, -7.0, -4.015527404313787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5612098352620314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1703497391391835, -7.0, -7.0, -7.0, -7.0, -4.039193721058287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024977972095624, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.975074728368803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.800877389480626, -7.0, -7.0, -5.0522474932238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5935075893317654, -7.0, -3.2722285058778144, -7.0, -7.0, -7.0, -7.0, -3.4331295175804857, -7.0, -7.0, -7.0, -4.3543581827353215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9060116252714128, -7.0, -7.0, -5.41185278211309, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4649215404715346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.371437317404101, -7.0, -7.0, -3.8085485512404054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.710117365111816, -7.0, -7.0, -7.0, -2.439963935920905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.529481686378381, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9502674680135885, -7.0, -7.0, -7.0, -7.0, -7.0, -4.925238585322531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.398118322328041, -7.0, -7.0, -4.1150360645086375, -7.0, -7.0, -7.0, -7.0, -7.0, -3.775610448006361, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8948364609939157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.879617637262669, -7.0, -7.0, -4.301377292349344, -4.4167652866759886, -4.520059730604128, -3.349014550823123, -7.0, -7.0, -3.7176445027938008, -3.725135413175271, -4.309608877958903, -7.0, -5.387736767329419, -4.271121055704133, -4.5303662098847335, -7.0, -7.0, -4.656988885990069, -7.0, -7.0, -4.773340223171566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8797264966395772, -7.0, -3.0232524596337114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.934124595123546, -3.986906031380721, -2.997386384397313, -3.5940135021454704, -4.661074040986242, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.893447344047389, -7.0, -7.0, -4.690014347380175, -5.01064759234639, -5.405289998996462, -7.0, -7.0, -7.0, -4.954903099495695, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0880943777437477, -4.430220226321072, -4.781841507164946, -7.0, -7.0, -7.0, -4.295451639247148, -4.4855226841924045, -7.0, -4.465818910021945, -4.955355770534847, -7.0, -4.50217927120143, -7.0, -7.0, -4.004504083022066, -7.0, -7.0, -7.0, -7.0, -1.021779774323242, -7.0, -3.768001359986824, -7.0, -7.0, -7.0, -3.249442961442582, -3.3852884293013306, -3.362105319293773, -7.0, -7.0, -7.0, -7.0, -3.1425146049993744, -7.0, -7.0, -2.6027109449575576, -3.821087540649282, -2.173186268412274, -2.3054490844840263, -2.075546961392531, -7.0, -7.0, -1.637934247956542, -2.0090730019467866, -2.922984815708883, -7.0, -2.447158031342219, -3.2277153514917414, -2.305351369446624, -7.0, -3.3641866774785254, -4.0940236762236575, -3.5562954043942465, -7.0, -2.720159303405957, -7.0, -1.9789685974894828, -7.0, -2.4265112613645754, -7.0, -7.0, -1.1936545489777597, -7.0, -7.0, -7.0, -2.667639706056411, -7.0, -2.7259116322950483, -7.0, -7.0, -7.0, -7.0, -3.1905557923351724, -2.5854607295085006, -7.0, -7.0, -2.9749719942980692, -7.0, -2.404833716619938, -7.0, -2.9849209252530855, -7.0, -4.004583200605057, -7.0, -2.4620522678964307, -7.0, -2.920123326290724, -3.840043330603494, -7.0, -2.6822203114510064, -2.824776462475546, -7.0, -7.0, -2.2826544758187164, -7.0, -7.0, -4.152033401914976, -3.6033609243483804, -7.0, -3.7005090196080914, -3.1420764610732848, -7.0, -3.1065308538223815, -3.4246775029107854, -2.60569674355833, -1.8434622773199978, -3.0824263008607717, -7.0, -7.0, -3.880031921104297, -3.1365620365899805, -7.0, -3.130333768495006, -3.9255699095433765, -7.0, -2.833784374656479, -3.766536771919034, -2.2114962884255043, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6734816970733473, -7.0, -7.0, -7.0, -3.136931851267557, -7.0, -2.5224442335063197, -7.0, -2.519827993775719, -7.0, -7.0, -2.7007037171450192, -3.315200381631911, -1.6428716804371248, -7.0, -7.0, -2.919601023784111, -7.0, -7.0, -7.0, -2.4065401804339555, -7.0, -7.0, -7.0, -3.450864692379766, -3.0385208151616903, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019393263978083, -7.0, -7.0, -7.0, -3.4077307280263356, -3.3830969299490943, -7.0, -7.0, -7.0, -7.0, -2.7363965022766426, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.932220013877119, -7.0, -3.9056340013269546, -3.007896027561071, -7.0, -7.0, -7.0, -4.358410786206337, -3.223087821731905, -7.0, -7.0, -7.0, -7.0, -7.0, -2.998334510992717, -7.0, -7.0, -2.4240645254174877, -3.5670606448979316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.374322358254613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.05307844348342, -4.385001176125872, -7.0, -7.0, -7.0, -7.0, -3.458788881710845, -3.89707700320942, -3.9184497424011577, -7.0, -7.0, -2.9477277269633158, -3.181128699747295, -7.0, -7.0, -4.125513795904115, -7.0, -3.912540882790638, -7.0, -3.9147661369258526, -7.0, -7.0, -7.0, -7.0, -3.255915428213917, -3.7032668063071807, -7.0, -7.0, -3.984707294482673, -7.0, -7.0, -3.1540814545553224, -7.0, -7.0, -4.068776273957364, -7.0, -3.973035440686933, -7.0, -7.0, -7.0, -7.0, -3.897352134344313, -7.0, -3.995898323646437, -7.0, -7.0, -4.02649240705284, -7.0, -7.0, -3.3845767907683544, -4.024690862355431, -4.24538927117121, -7.0, -7.0, -7.0, -3.3477689676073514, -3.979548374704095, -4.040008636013542, -7.0, -4.327338496518052, -7.0, -7.0, -7.0, -3.7412566785720904, -7.0, -7.0, -7.0, -7.0, -3.8894697839695076, -3.9061733636440485, -7.0, -3.926188049107206, -7.0, -3.2175532041585395, -3.9172428579074663, -7.0, -7.0, -4.02669665597816, -7.0, -7.0, -3.497758718287268, -2.896233540984362, -3.6045500325712614, -3.448582659744249, -3.4307735806966204, -4.179120729609299, -7.0, -7.0, -7.0, -7.0, -3.9097699147327694, -3.1095946155190184, -2.7017406324372124, -7.0, -7.0, -2.8698467969123844, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4725858175201463, -3.7954281160534724, -7.0, -2.930657997829841, -7.0, -4.1673468775856355, -3.880927865267085, -7.0, -7.0, -3.0112884341835358, -7.0, -7.0, -7.0, -7.0, -3.923668776807718, -7.0, -7.0, -7.0, -3.9356583861006342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.764431226367127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5972168724961677, -7.0, -3.7192318188422293, -7.0, -3.615529223637133, -2.6261585957866243, -3.2173786479394413, -2.843452636935933, -3.261857385629898, -7.0, -3.073305849619936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6580113966571126, -7.0, -7.0, -3.3753663634022653, -7.0, -3.6316466629584196, -7.0, -7.0, -7.0, -7.0, -3.2567520979238687, -3.9710902131371153, -7.0, -7.0, -1.4197913690146289, -2.633499060172947, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.427972713608209, -2.882154404634234, -7.0, -1.334394071037258, -4.01127183969032, -7.0, -7.0, -7.0, -3.926959488380276, -7.0, -7.0, -2.663700925389648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2424450033000847, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9079485216122722, -7.0, -3.91184979649942, -3.7757924276787924, -7.0, -7.0, -2.5771086551437348, -7.0, -7.0, -7.0, -3.443591518448947, -3.183933830133716, -2.844161141324878, -7.0, -2.9671243503847156, -7.0, -7.0, -3.417527049073855, -4.2288621285305625, -3.799994944688714, -3.169059607803795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9995220131289035, -3.9915361753000314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9686697017203922, -2.849586911831464, -7.0, -7.0, -3.9405662864900903, -3.278646919030887, -3.8730007223740444, -7.0, -3.6438637455958203, -7.0, -7.0, -7.0, -3.954628377507271, -2.759532949679413, -3.411156548296478, -7.0, -7.0, -7.0, -7.0, -3.4176715797939443, -7.0, -7.0, -7.0, -7.0, -3.630156568140109, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9644482079166607, -7.0, -4.08339510788965, -7.0, -3.446226401778163, -4.05207803048417, -3.9107310980433807, -7.0, -3.1554188575044515, -3.888069980618693, -7.0, -4.124275932006338, -3.4559414209391317, -7.0, -7.0, -7.0, -7.0, -7.0, -4.120442306873306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4443013689598114, -7.0, -7.0, -2.746709209859118, -3.2644373865025944, -7.0, -3.3544541997333255, -3.321147007783739, -2.4934011409892882, -2.6326061404166037, -3.663182477305838, -2.473816225498682, -2.963577972554372, -3.2656038765850357, -3.9581336756762355, -2.9951230979538104, -3.063178290213317, -2.1161420690114334, -3.4537310295042936, -3.4332176170782738, -2.393382333506496, -2.2834978755178232, -3.486886811075451, -7.0, -3.460593731895895, -3.3337494624819706, -2.5112890475342247, -2.623271290574289, -4.454677205220384, -3.2435836759981913, -3.1463218738791365, -3.2701662292606937, -2.7535765122498272, -2.8542047958554297, -3.020855097836129, -3.3700811092612613, -3.878636673026517, -3.478566495593843, -3.8063835018241674, -3.864333055033393, -3.6464772461535957, -2.817390356669279, -3.569076654313889, -7.0, -4.254475567803871, -2.706294486458381, -3.567790710533536, -3.2870175013221017, -3.675228253593064, -7.0, -3.227243781503063, -7.0, -4.009323393381013, -3.336196976263483, -3.6727002600533996, -3.0496135189928455, -7.0, -3.390972935985586, -7.0, -7.0, -7.0, -3.708958831371789, -4.069742076041645, -7.0, -3.134863987908941, -3.2618698203144056, -4.207251363794358, -7.0, -3.7773543130842087, -7.0, -3.1885222651994, -7.0, -4.3381226757764235, -3.0235268086522495, -3.331280021886835, -7.0, -3.1468719030857386, -3.7552394576339077, -3.2283040948254293, -3.5685537120494426, -3.768434593637725, -7.0, -2.3993945580839453, -3.7994209669118066, -7.0, -3.1638720742640283, -3.113114060796176, -7.0, -3.5414014660058277, -7.0, -7.0, -3.2304489213782737, -4.127817234480274, -7.0, -7.0, -7.0, -3.5834821635264125, -2.8571195547835098, -1.891948375590815, -3.971971276399757, -3.20305232331814, -1.7375872659716323, -2.74901124252752, -2.4565914962046436, -2.3522284727679743, -3.9595183769729982, -7.0, -2.898073525383819, -3.405915255308017, -1.8938785493174628, -3.1460892576540234, -2.7291647896927698, -2.621365146523349, -1.7345536657835299, -2.455320799214393, -2.2863067388432747, -2.519565500880509, -3.9039035266901636, -1.9977723246559227, -2.95052711646727, -2.390078298969682, -7.0, -3.7179200258369938, -3.5745521086639047, -2.565571525942708, -3.8829227906025987, -3.5869247081448203, -2.37457916233757, -1.9457789280586943, -2.021777927452259, -3.4000772605521274, -2.472712135814607, -3.594972327590039, -2.6868990162494977, -4.000434077479318, -3.874945436085532, -7.0, -2.6541940498694125, -3.8807564445102103, -3.5876548509957176, -2.8979934299725625, -7.0, -2.0181876357676427, -3.203576774977973, -2.512081284866043, -7.0, -3.208387603795154, -3.6518108610117204, -3.0480013294385864, -2.2025192329253795, -3.2793246654426103, -3.723209310405111, -3.714874382231572, -2.7544916751089548, -2.356586974678113, -3.425588558250215, -2.9849209252530855, -7.0, -3.9650605206111984, -2.0824874482169866, -3.299942900022767, -2.495504692242491, -2.7926917893479724, -2.864025383544317, -2.78767604349099, -7.0, -2.271403826616148, -2.7823072101548014, -7.0, -4.128463891064761, -2.338813916630284, -7.0, -3.8231154293976726, -2.7463892697195718, -7.0, -3.6721902511882525, -3.037585842826617, -3.221718441724624, -3.143465871142305, -7.0, -2.3974993739082215, -2.169885344384398, -2.570136677474439, -2.694243781641912, -7.0, -7.0, -2.271037506173659, -2.598746746928134, -2.7687966125269106, -2.109658461244828, -1.9404752505634317, -2.619994012623545, -2.0078421153915804, -2.5556730808874315, -2.029990281380748, -3.6938587997009296, -3.4270531135645013, -7.0, -7.0, -3.5833877208856357, -3.5919915966674587, -2.2208444301661006, -7.0, -3.647676313240871, -7.0, -2.008752704189001, -3.9133899436317554, -3.11887070567672, -7.0, -3.577491799837225, -3.885304667588968, -3.182756931040399, -2.8873359303991672, -2.523616419054371, -2.901656425850182, -7.0, -7.0, -2.951337518795918, -7.0, -7.0, -3.9121157290788537, -3.9030899869919438, -3.2011238972073794, -3.9416108021536336, -2.3510624376615725, -2.8535292190187196, -2.6650178254124723, -3.2092468487533736, -7.0, -3.0669054262816697, -7.0, -7.0, -2.5233731817819334, -3.9115304623071623, -7.0, -2.977058147228131, -2.91053547390048, -3.683272236315922, -7.0, -7.0, -3.9708116108725178, -7.0, -2.9175430182524797, -3.941063988219902, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2659963704950794, -3.3038437748886547, -2.713630525200522, -3.1473671077937864, -7.0, -7.0, -3.9778795468239343, -7.0, -7.0, -7.0, -3.630275285757692, -2.8313035974632434, -7.0, -7.0, -7.0, -7.0, -3.2723058444020863, -3.1095785469043866, -2.726775136464893, -3.2460059040760294, -3.1773200201636933, -3.391326344070833, -7.0, -7.0, -7.0, -2.839980557678343, -7.0, -7.0, -3.2825233495096477, -3.1058506743851435, -7.0, -7.0, -7.0, -3.052565699053254, -3.014310480963307, -3.345863628503764, -3.266936911159173, -3.0864784741618685, -7.0, -3.6983739916872556, -7.0, -3.3562171342197353, -3.2474822606770544, -3.426673888021373, -2.1871394597445524, -3.331427296520743, -7.0, -7.0, -2.9556877503135057, -7.0, -3.1749104800117314, -3.619823500457278, -2.508599367673529, -3.8811563210755637, -7.0, -3.3857849588433355, -3.617629297757842, -7.0, -3.40705081480425, -7.0, -7.0, -3.3760291817281805, -2.3404441148401185, -3.295009672664702, -7.0, -7.0, -2.286793175654974, -3.2638726768652235, -3.3545565944718043, -2.7985739217489467, -7.0, -7.0, -3.9836971497497697, -7.0, -7.0, -7.0, -7.0, -2.302114376956201, -3.537189226243645, -3.3324384599156054, -7.0, -3.6191977157929474, -7.0, -7.0, -2.7331080601187026, -7.0, -7.0, -3.191986755816186, -3.207365037469072, -3.2952004520032574, -7.0, -7.0, -7.0, -3.5010592622177517, -3.5792117802314993, -3.4164740791002206, -7.0, -3.1484904774886924, -7.0, -7.0, -7.0, -3.2545883548258496, -7.0, -3.2755416884013093, -3.1565491513317814, -2.7094241574915294, -3.07974959296128, -7.0, -7.0, -3.4300750555519395, -7.0, -3.2946696745484663, -7.0, -7.0, -3.549738731264899, -7.0, -2.907795114870337, -7.0, -3.51271107196312, -3.6855775412674463, -7.0, -7.0, -7.0, -3.999930507323333, -7.0, -3.31921019418185, -7.0, -7.0, -7.0, -2.0541159367668493, -2.7346998423702855, -7.0, -7.0, -2.5271529938173596, -7.0, -7.0, -3.262213705476417, -3.2898118391176214, -7.0, -3.0813473078041325, -2.622861354256069, -3.114722156505122, -2.889371744355007, -7.0, -3.6509870943834453, -7.0, -7.0, -7.0, -7.0, -3.4304513240788883, -7.0, -7.0, -7.0, -3.5585405788545965, -7.0, -7.0, -7.0, -3.4590907896005865, -7.0, -7.0, -2.7068599641949294, -7.0, -2.493574219106595, -2.9064697276433242, -2.626389255142517, -2.583623788990542, -3.052886235256382, -3.6984287038382186, -7.0, -7.0, -7.0, -3.087603973687808, -2.849214606209089, -7.0, -7.0, -3.512061496535885, -7.0, -3.611702070594105, -7.0, -3.2195190365840465, -3.3263435190252575, -7.0, -7.0, -2.7629285173929854, -7.0, -3.271609301378832, -3.1760912590556813, -2.7302437827494095, -7.0, -3.4779889762508893, -7.0, -7.0, -3.3013194288515706, -7.0, -4.013637612453532, -2.3462225361009863, -3.891370174696148, -7.0, -2.658175933306894, -7.0, -3.550411819008074, -7.0, -2.3291071869258904, -3.3251049829714074, -7.0, -2.3038310838268075, -2.5554572172046495, -7.0, -2.976808337338066, -4.381999021683067, -3.4526041236583422, -7.0, -7.0, -3.3261309567107946, -2.9747419045009504, -7.0, -7.0, -7.0, -3.3609718837259357, -3.377215156263061, -3.0162810245428306, -2.792333312660757, -3.6420543617517414, -3.24699069924155, -3.032417278832769, -2.510545010206612, -7.0, -7.0, -3.2898118391176214, -3.5456781497920256, -2.7081375105769228, -7.0, -7.0, -7.0, -2.98878184345364, -3.3140779917792127, -7.0, -7.0, -2.5385178795875127, -3.357939731076476, -7.0, -7.0, -7.0, -7.0, -3.3823773034681137, -7.0, -7.0, -7.0, -2.945890435074559, -7.0, -3.3935167084911435, -3.4214393902200495, -7.0, -7.0, -7.0, -2.164233055917399, -7.0, -2.7716364679076344, -2.9093777108309906, -3.8773219727168056, -7.0, -7.0, -7.0, -3.203382607459245, -3.058552548706088, -2.6216747070193795, -2.8166389448984614, -7.0, -2.690196080028514, -3.378579576115775, -7.0, -7.0, -3.3265406685165617, -2.2618033722622637, -7.0, -7.0, -2.4070044182995427, -3.3138672203691533, -3.009592521262823, -7.0, -3.551327988003846, -3.038796722367585, -7.0, -3.612889769287485, -7.0, -4.057050861483566, -2.9207871677505426, -7.0, -2.795901073535779, -2.803912112528065, -3.09324653110384, -2.940267391446012, -3.035963105745482, -3.716086853774832, -3.182414652434554, -2.9187873026217193, -2.4750104632891783, -2.1627697069974556, -3.2637543888400056, -4.32410489341645, -3.098347009010774, -7.0, -7.0, -7.0, -3.3714988627144713, -3.2640303441321223, -3.3364597338485296, -2.3664229572259727, -2.8958643512472992, -2.8384292797022423, -3.2389238459924155, -3.3376588910261424, -3.104760166638525, -3.0782755220866007, -3.1204093945560682, -7.0, -7.0, -4.166228758210086, -3.4564841235748665, -4.076688979039402, -7.0, -3.577836341292744, -3.6439294805612317, -3.0864784741618685, -7.0, -7.0, -7.0, -3.682145076373832, -3.5710679786102455, -3.520483532740792, -3.54082981411108, -7.0, -7.0, -7.0, -7.0, -7.0, -2.607097432019576, -2.8067074419715725, -3.0299921753778474, -3.015490736645513, -7.0, -7.0, -4.308980368720045, -4.7818056206940485, -7.0, -7.0, -4.723980776891, -4.397453326259252, -7.0, -3.760271660542063, -3.8087453508147924, -7.0, -7.0, -4.332478857523364, -4.729998547283423, -7.0, -4.596487133736544, -4.3560258571931225, -4.208799537474873, -4.151374958362349, -7.0, -3.8629459114132914, -7.0, -4.788300973396099, -7.0, -4.24793646018509, -3.8477576883923312, -7.0, -4.6709783389504365, -7.0, -7.0, -4.085054988986404, -7.0, -4.388394304726096, -4.350499991128803, -7.0, -7.0, -7.0, -7.0, -4.472975734594228, -4.221414237842339, -3.7829228611700847, -2.8019179723413923, -4.381638446726156, -3.8949323529090556, -3.6553785755318513, -3.468495024507069, -3.7532574074565974, -3.5573868820595074, -3.7916054455762533, -2.3373222073764235, -2.4434585715565302, -3.9849771264154934, -4.065943652583075, -3.4619484952037616, -7.0, -3.5549432055045624, -7.0, -2.8109042806687006, -3.8795546009389743, -3.9201059263234987, -3.7779340488377793, -7.0, -3.5660007738899773, -3.808495118821508, -4.428804653172165, -3.3163897510731957, -2.793580867368156, -3.3336487565147013, -3.016696288653449, -7.0, -5.106656570334018, -7.0, -3.5527655261018234, -7.0, -3.503771233697277, -3.60826617378758, -3.7130422969110426, -3.7298125071609354, -3.1341771075767664, -3.587598729721245, -3.490396121091794, -3.8070476955151142, -7.0, -3.3936141954120003, -3.142289898072111, -7.0, -3.4865896136882237, -7.0, -3.0216853522157057, -4.14514459027186, -3.8470994481573415, -7.0, -3.265525335219074, -7.0, -7.0, -3.8143142002074595, -2.5318052249185006, -1.7599772814550572, -1.9343915611416491, -7.0, -7.0, -2.6945865312432264, -3.578409970331236, -1.5646796659208264, -2.305136318943639, -2.360467183515849, -7.0, -2.6141076142372945, -1.914627900385701, -3.0646451447919367, -7.0, -7.0, -3.059815767985011, -2.2530000501017793, -7.0, -7.0, -3.0872488677956578, -7.0, -2.9061553956879878, -2.5436542334738954, -2.0012256229266927, -7.0, -2.950814047122843, -7.0, -1.8712585060577351, -4.008961933117199, -3.130133092270322, -3.39911275611016, -7.0, -3.6147917919564176, -1.5279979470644702, -7.0, -1.770536428863159, -7.0, -1.932414071943652, -1.4718095262845452, -7.0, -2.998695158311656, -7.0, -1.9678799710438093, -3.311895072073712, -3.3527611917238307, -2.886490725172482, -2.5794569365924565, -7.0, -1.853753504217767, -2.6093967600697114, -3.452348761457827, -7.0, -1.8951461893759922, -1.7201106402335262, -7.0, -3.0391874223254183, -7.0, -7.0, -3.9650605206111984, -7.0, -2.3305861217577855, -2.0397271242216886, -2.6413914743166362, -3.472317546316842, -7.0, -7.0, -1.895462011211129, -2.7468137707747053, -3.3332456989619628, -1.5145871999087717, -2.079927407371031, -3.151982395457474, -7.0, -1.8629103407362515, -2.4001209713388727, -1.7973082833122795, -2.561220678933944, -2.1314797188836154, -2.0422230763899947, -2.8309733973226505, -2.536242706838319, -2.0508610740801623, -3.7740057302582093, -3.153052275067109, -3.4305587695227575, -2.669316880566112, -2.775974331129369, -4.384693833518213, -3.32479671762173, -2.1622480318813917, -7.0, -2.8127400992175207, -7.0, -4.1999744625304904, -3.164329058174529, -3.4720246977002813, -1.8988111890126687, -7.0, -1.9178034622952473, -7.0, -1.5226122251848893, -1.7277520576687817, -7.0, -1.8512583487190755, -1.931260059489091, -2.4168068718229443, -2.2801295979122562, -1.9010948950302153, -7.0, -7.0, -3.2593549273080344, -7.0, -7.0, -2.996949248495381, -3.040093500592591, -3.4837298990000236, -2.620656479819621, -2.3412366232386925, -3.3649260337899753, -3.302330928684399, -3.331832044436249, -2.266086895660994, -3.3531465462139796, -2.400365273349939, -2.2681975636609173, -2.8494194137968996, -3.3760900797836544, -3.165615232699998, -2.5925468421919335, -3.2607866686549762, -3.678518379040114, -7.0, -7.0, -3.0535288053252456, -2.535113201697349, -2.6754116937148633, -2.5567662429169604, -3.606703741333674, -2.8914259428479943, -7.0, -3.2962262872611605, -3.5569052690554477, -3.2704459080179626, -3.0683343131172545, -2.2665844470668635, -2.9254839872002525, -7.0, -3.9855045740664705, -3.8552846237426173, -3.9487082638609827, -4.024495441072, -3.338126291801089, -2.6405673372975262, -2.8069966367379076, -3.949101031499502, -3.576606809002626, -1.8005233458116274, -3.441804303701005, -5.045708195339422, -3.855640280890145, -2.4931434135012362, -2.189266777664425, -3.027484215567386, -3.3980493004965044, -4.647705636658856, -4.045927049451639, -3.9665445398586376, -2.096902767158549, -2.9235400612333575, -4.501509176591876, -2.458668755128016, -1.5869527633672311, -3.6577931719269867, -3.870130678165955, -4.267504168979949, -3.031083981800209, -3.0878145586758183, -4.201326882336002, -2.161629083938574, -3.146163152410619, -3.7033500097793364, -3.899734541432098, -3.455137807393583, -2.851655565747637, -3.4718801529442906, -2.829410346975762, -3.984986899788327, -3.3499512783389576, -3.4550460384689026, -2.273237707705318, -3.8998439433821988, -3.444226364912892, -2.874719133905513, -3.1355852630128624, -2.0489385872046793, -3.554748951661129, -3.3610089326644585, -4.0509922864820505, -2.9341805204045848, -3.0221578694079523, -1.5092546199558015, -2.947210858187439, -1.8890652399519134, -2.9660386578756874, -4.17140463483013, -3.360790493311147, -3.0387228771693704, -3.290672982696028, -3.685241164788095, -3.4728480752993205, -4.305558499230943, -2.909014990979134, -2.45908807414116, -2.214262203173111, -3.471710153639844, -4.44378109287485, -2.457934544280078, -4.392501545165524, -2.975226868144468, -2.354764024955734, -4.267771891925815, -3.305376548576951, -1.948236494735222, -4.5687725829029615, -2.735939519022239, -4.744560911018383, -3.855798474252288, -1.79928192676247, -3.006635214937953, -3.072500197917994, -4.067863391226035, -3.0787339479321156, -3.521522538611938, -3.0959844627642767, -2.90757760381829, -3.2808195391969055, -4.006693535071508, -1.484563928788008, -2.8772437594565354, -2.158260116465521, -3.7785579664213467, -7.0, -3.643292012003188, -2.9058211989484706, -2.989867387070781, -2.8794415101012185, -4.0460422943353755, -2.440656947429615, -4.306530298301876, -4.346734281891791, -4.17059220118295, -2.0706133304677987, -4.142667069274032, -2.8001732097794916, -3.0928219760363977, -2.2681711037010768, -1.889157549797829, -4.092365798646165, -3.778927200514638, -3.2798072880412437, -3.725308675038557, -2.082394361228675, -2.968783745744303, -4.091375767429715, -2.7804691164051643, -2.8135539162279573, -2.767271546839847, -3.521811143960067, -2.513555597597894, -1.8546868060656614, -3.767759122103009, -3.24147994288686, -3.1457610911129, -2.146758187865031, -3.4086044543256793, -3.143873651331759, -3.105082752277355, -3.6478170475939384, -3.856356573063003, -1.3575070081612544, -2.5974408315902817, -5.3466150370819205, -4.024493486415029, -2.43727961654529, -5.346601351156874, -4.443501588240124, -4.443644294899848, -3.70337541437429, -4.392468317043854, -2.384599679214964, -2.641639335722719, -2.4302382070616937, -2.7615760296211613, -4.745794763999385, -3.314732439818183, -4.346781188909013, -4.201020416357374, -3.375097154242902, -3.3179906233268124, -2.90289755953152, -4.869624754401409, -4.004794110388712, -3.623422895447224, -2.378674481411176, -4.4436755668075785, -4.305234082373335, -3.9345470056046117, -3.244512826988333, -3.8417347789747436, -2.9229263274952144, -3.205619067144219, -3.2972393665700785, -2.863616334522576, -3.353477133530903, -2.451559520940352, -3.024102248275479, -3.3343698044247776, -1.4459702182069452, -3.5083130299937353, -4.869620845360168, -5.346622857416885, -3.4726218995463567, -3.4837338052460667, -3.915747584963322, -4.443695110606494, -2.28936785799692, -3.8420609556687633, -2.9335577844776894, -4.17066256804232, -2.935099035747168, -1.155032859480172, -3.148823197531414, -2.411743376027878, -2.330203984262001, -3.015548843110824, -2.709304978291998, -3.184131141132529, -2.8785334793494717, -3.3939396432145785, -3.0811681883904147, -3.09340628983506, -3.8560639533331, -3.358842046056894, -7.0, -3.031829245646604, -2.575115649019939, -2.8428684115952803, -4.024802213153309, -2.0892217923700414, -4.267500259393266, -2.3018772792906352, -3.1979059063300923, -2.8279565728594, -3.293802406018653, -3.294081724603141, -2.3161806776496223, -2.756538835744164, -5.346595485628397, -2.4880440505901413, -1.6053596806286088, -2.1350392900048805, -7.0, -4.1705824271062575, -3.3298924476951335, -3.7339386976260975, -3.6479225684382985, -3.466391484406633, -4.068113570998315, -3.1217122261613652, -2.0483114655495376, -2.546018275861391, -2.4984814656575884, -2.037757352000563, -4.869509422891369, -3.1214406364012652, -3.0635952517578597, -3.2510811878677695, -3.9316964284988503, -3.8153882549088887, -2.8185275687875655, -2.9735214604632243, -3.715501945293284, -4.869497692547343, -4.647656763195541, -4.091661096631954, -3.6842812553010647, -4.116168070800589, -3.915493637849186, -2.926661984253831, -1.3226176461093304, -4.346660002085005, -4.02447784884254, -7.0, -4.870054534276521, -3.3981663683672236, -3.3980356405224597, -5.346663911865268, -3.5215791047702303, -3.015917053277, -3.2883833843997747, -2.738991077258886, -2.1964721921744053, -3.155626015396081, -4.3054569007373225, -5.346687369807717, -1.4326777481022428, -2.5628942100918968, -1.5860465135153958, -3.2611204538110883, -2.2028758014872105, -3.61554676628177, -3.8557379379199967, -3.5019332341249347, -2.2599178382806886, -2.928986233688613, -2.0873167387804843, -2.424804525369085, -3.197286263105973, -2.6292455153672183, -3.1799716890427616, -3.6565968348432376, -3.0382557792349947, -2.6936066086433788, -2.512758383307129, -4.869476186093696, -3.5988744976635094, -3.019504393829438, -3.949179151853337, -2.9572937964557795, -4.744643016404164, -2.6771378628204405, -2.424932952019074, -3.35695218082546, -3.1278203345326987, -2.8839754128255146, -1.9929038165296251, -2.300441888065399, -4.1709165757098265, -2.348481212264502, -3.6746501056927805, -3.15430495170648, -2.3990765371483125, -2.9684148414805858, -2.0885417282256857, -2.4383109930925673, -2.5573136775643146, -2.766089567870567, -2.6647563148321183, -2.6636289016346657, -1.7654434528074723, -2.3008443764220465, -4.647748640757452, -5.346605261465181, -4.64763330197941, -3.0550781209749545, -2.71676053323091, -3.554797767332964, -3.148495270466624, -2.863967853967334, -3.631033790150154, -2.9048342025822866, -3.561875241676657, -2.5185100861451684, -3.648709257986968, -3.0465400352110676, -2.8815061040436714, -3.4783539173187754, -2.605425429396821, -2.2898474903567414, -2.148795703380202, -4.870758843736827, -2.627442431481744, -1.9862854524046398, -2.458402655474184, -7.0, -3.0573910358048546, -3.6479596900461457, -2.915336042999824, -2.326599552068477, -2.719923162669042, -2.9017229120897787, -3.9665445398586376, -5.346603306315429, -2.788205290121511, -3.5209252186589897, -3.9163154981639994, -3.261118502596643, -2.815279300524557, -3.502011356235333, -1.5521877772198334, -4.1424696373647745, -4.024458301085093, -1.9902478944627011, -2.338376924058498, -2.556340652472161, -3.014724717747699, -2.6938067182423064, -1.8047947564795233, -2.6300075308019943, -2.2918120143098473, -1.5178397111018789, -2.4855607611392485, -3.0346805077668035, -2.954508910234011, -2.408794439291495, -2.3957825106707626, -1.581531830238294, -3.2005143208494475, -2.1467575146020645, -1.5069375528633904, -3.502810470898115, -2.7554055900734933, -4.122618655023341, -2.4749326096229574, -2.7471726918545585, -1.979057017608061, -2.6675199254122264, -3.46125191780495, -2.6631251964165, -3.2129898529812593, -3.844894416747932, -1.6894476119461646, -2.4214779359271756, -2.6344302874418735, -2.8337395275925594, -3.3335516904838083, -3.6592232743780433, -3.1893992052440003, -3.310710377369317, -2.5993545857525744, -2.7778645655145366, -1.975255533631949, -3.057359811393562, -2.5729984391183094, -1.5008258604492917, -2.485076000522817, -2.5814964717554, -2.816171405839661, -3.486624537921495, -1.7364954278650726, -2.3116364657450608, -2.7439558295413367, -2.3907209570806813, -2.043329136724385, -1.94185981840554, -4.11847091885741, -2.0644721772204484, -2.936027951220748, -3.85550938603252, -3.289226756097386, -2.7852108631125287, -2.828504069597003, -4.234178406311674, -1.7592731713118281, -1.5535269280041977, -2.473979288039574, -3.9321653404475576, -2.6964930237767444, -4.068576414364122, -1.5493542710373036, -4.211269325159594, -2.943474400663783, -2.400911878345167, -2.8354255599643508, -4.346790960566614, -2.271584888563998, -2.4007377331885125, -2.338984518829484, -3.2391839343012987, -2.2870284657939095, -2.9680672298020014, -1.8450460753738236, -2.2351909578380664, -3.1350975152303273, -1.4715853537193864, -1.6221062926556562, -3.466079589486035, -1.815969937516831, -4.3931753318356845, -2.8737009429131453, -1.9641584760546043, -2.873870943586566, -4.024759239035396, -4.116277542184733, -5.045604591991318, -4.170797405996383, -3.190928131487656, -1.221134651437184, -2.078739953895659, -1.1876341890151132, -3.1451084132832223, -2.560422414267646, -1.599418080433217, -2.3841632002260216, -2.264066972315376, -3.0019157039612216, -2.050780311800198, -3.7032757416722104, -1.1855364761020941, -1.7928881963339756, -2.768761392797599, -2.995027215050598, -1.209496753221182, -2.627714946767376, -2.2728122492352103, -3.5845632073128884, -3.5992200567060535, -1.6349616438564416, -3.591591770128131, -2.8828921086125296, -2.4218095100603696, -1.8834011507076147, -4.3923647071668075, -2.092794451687219, -4.045780507558271, -2.982551193789339, -2.3021093395845074, -0.7900158494868508, -1.6313124360568332, -3.9152317214694095, -2.479114039078266, -1.4669628805341084, -2.9222609572605434, -2.0031124836563117, -5.346613081976176, -2.267696802793544, -1.252321396213063, -4.56863971018297, -3.282180508437446, -2.3405477545742386, -2.273924028536512, -2.3345234110246715, -3.1767539326356737, -2.5651020273557044, -2.386287988405634, -2.761935665168088, -2.18519344738246, -1.362223758624564, -1.7444664398795455, -4.091504775081104, -1.862408455607033, -1.8969745014802077, -3.7368355309230132, -1.6840900900394933, -3.932516692455748, -4.004583200605057, -2.0824874482169866, -2.3305861217577855, -7.0, -1.9578061260017514, -2.3697577314189413, -2.267679113991627, -3.816108670739904, -3.0915566948636353, -2.7494564645739383, -2.291803437457964, -3.0962849601241924, -2.112152582492313, -1.6254145743535335, -2.853366663945809, -3.583052120570069, -1.6670636256725735, -0.6356793335097679, -1.7924393247415067, -2.0681148898978354, -1.0549175366838799, -1.9552950764646821, -1.6351238441823128, -2.669125374602297, -1.7005207901605823, -2.330748972067424, -2.857588141136608, -2.768337370331206, -3.3508312293578544, -3.6563114131651067, -2.3619123209253394, -3.0835394196053243, -2.463718413219569, -2.6258451726313417, -1.277894090983314, -2.3421330285112987, -2.0306609636259325, -1.8450285000466284, -2.3902430658089173, -1.9734638067201293, -3.657256886657311, -2.269112488235736, -4.869571979375695, -1.7450716082583857, -1.8163174258363546, -2.942617465122138, -3.5139790241916455, -2.3454227452289564, -2.5328738841522354, -1.2625900233526535, -2.502013488424476, -3.915931115801124, -5.346759690488342, -3.733797942367466, -3.422363121576346, -3.590765596983205, -3.2784330855208434, -2.1483644013756353, -3.0765684092605996, -2.225674775060652, -2.9167102323944154, -3.253812677241476, -3.471757056646584, -3.3016301591867827, -3.054904096730085, -3.267947678534008, -2.4996695373751536, -2.8649850707577986, -1.9795876955750071, -2.2972787559859684, -3.385738853559706, -3.10407720615511, -3.6933653747922923, -2.7899679150590524, -3.3343600421243718, -4.568475517147917, -1.9058828871761138, -3.0615930957249455, -3.0637827794015475, -2.4691775785110766, -3.1573424507933363, -2.8004219198943976, -3.665518453112754, -3.6225737162947587, -2.9672702005446325, -3.755616898414391, -2.695770873257886, -2.8111227700633705, -4.171985685657181, -4.44351136416493, -7.0, -7.0, -3.41077723337721, -7.0, -7.0, -2.8877297972880305, -7.0, -7.0, -3.485437481076301, -3.2055848656934796, -7.0, -7.0, -7.0, -2.971666401356065, -2.8666181041282894, -7.0, -7.0, -7.0, -3.1336985461157765, -7.0, -2.696465603994037, -3.9934362304976116, -7.0, -2.6532768489331393, -3.2537679958814194, -7.0, -7.0, -7.0, -7.0, -3.245636029406203, -7.0, -3.49791974275339, -3.519827993775719, -7.0, -7.0, -3.4742162640762553, -3.3163897510731957, -3.1496808824829383, -2.411198673955554, -3.4158077276355434, -7.0, -3.467312062980552, -3.5567415224990464, -3.1398790864012365, -3.0033168924581544, -3.3316297176299323, -3.233630580164463, -2.100032493818558, -7.0, -3.518382315545344, -7.0, -2.8402315949581087, -3.11293997608408, -2.74800982910615, -2.649069208087953, -2.4128265592104112, -3.222924466593083, -7.0, -7.0, -3.690373306916059, -2.6040909902682974, -3.519696767159853, -7.0, -7.0, -3.194653071952934, -2.299604971476159, -3.203190398327238, -2.7371926427047373, -3.4240645254174877, -2.461929755824591, -7.0, -2.922610138162019, -2.9043097257675417, -7.0, -3.382647303154711, -3.7342428077758956, -3.42781057267599, -2.224413521046866, -7.0, -7.0, -1.77500484574455, -3.623352681537992, -2.616400486768762, -7.0, -2.4334142191808175, -2.6508623548674484, -2.8163241727106496, -2.905256048748451, -3.1210123910935756, -7.0, -2.730445584805495, -2.704930079931728, -2.5418564826932464, -7.0, -7.0, -3.3793961751941644, -2.386498965550653, -2.7023347819567896, -2.6956275842630815, -7.0, -3.0642975059528488, -7.0, -3.413132050434872, -2.9326428495466836, -1.9220138307296577, -2.8165726960261033, -3.053462604925455, -3.2581581933407944, -2.371956759419767, -2.7148492608370254, -3.1855421548543754, -3.45408227073109, -2.690955115144948, -3.5548524343720542, -3.119981307304154, -7.0, -7.0, -2.5902539778001947, -2.635870232986101, -2.7653975864258418, -2.6709081903717906, -2.6984331912878923, -3.1571544399062814, -7.0, -3.480054875685184, -3.491921712586151, -3.827067574895181, -3.237166582685473, -3.090169844444793, -3.3136563466180315, -7.0, -7.0, -1.8246994918709745, -3.0090257420869104, -7.0, -7.0, -3.5607944737908017, -7.0, -7.0, -7.0, -7.0, -3.41077723337721, -2.708794691425808, -2.669200619159474, -2.694791266284906, -3.1438263908395614, -7.0, -3.208710019906401, -7.0, -7.0, -3.2453892711712102, -7.0, -3.4692818791793925, -7.0, -7.0, -7.0, -3.1357567477801735, -3.415140352195873, -7.0, -7.0, -3.08278537031645, -7.0, -3.261143867700667, -7.0, -3.6661434272915585, -3.353627758985543, -3.29939833006815, -2.943584441257268, -3.2827353726210187, -2.699982177716874, -3.180898772908726, -3.466274321789292, -7.0, -7.0, -7.0, -7.0, -3.4496326504700745, -7.0, -2.697893274831548, -7.0, -3.724419245052999, -3.4164740791002206, -2.9136372740190546, -2.5036065640735687, -7.0, -2.690955115144948, -2.079919214758588, -3.259952059922254, -2.8065675639086787, -2.9722028383790646, -2.3670268684921036, -3.2416709737841294, -2.7961115793233833, -3.107345665472095, -3.4749443354653877, -3.529045170765769, -7.0, -3.2658001678796333, -2.6582234545138173, -3.5370811569459977, -7.0, -3.104487111312395, -7.0, -3.418135498425232, -7.0, -2.973474226991902, -3.1565491513317814, -7.0, -3.2821687783046416, -3.64018319192134, -7.0, -2.273772665662463, -3.6963039556509614, -2.8518226118758494, -7.0, -3.4095950193968156, -2.855670556918036, -3.121067167467729, -3.439332693830263, -3.47158505418519, -7.0, -3.484584529282843, -2.970431410436084, -2.7735670489260587, -2.851758527971641, -3.8225427432313115, -7.0, -3.1630122097748297, -2.7027176733035243, -7.0, -7.0, -3.130816050034744, -3.6303261548039467, -3.583198773968623, -3.5800121125294244, -7.0, -7.0, -7.0, -7.0, -3.405346360175709, -7.0, -2.9863237770507656, -3.475646979484606, -7.0, -7.0, -7.0, -7.0, -3.500785172917456, -3.190191580575302, -7.0, -3.5016069224188295, -7.0, -2.9996741569321426, -3.310587114890355, -2.217230785080009, -7.0, -7.0, -7.0, -1.7978103057604256, -3.6216954623292787, -2.6953137219358365, -3.504470862494419, -4.0296596902528306, -7.0, -3.4499409887733377, -3.4565178578052627, -3.475053440975798, -2.7049508491377243, -2.469124104866961, -3.0863598306747484, -3.353916230920363, -2.4197197829952795, -2.797821311364024, -2.953115098691848, -2.4704349934714607, -2.2023652550893744, -2.4245186658770486, -7.0, -3.1533574714829737, -3.2530955858490316, -7.0, -2.9801170463604465, -7.0, -3.157456768134226, -3.0709404248961243, -7.0, -7.0, -3.571941635074462, -3.405965787718157, -2.580310759718442, -7.0, -4.030275802889288, -7.0, -2.7306477150202615, -3.078239253809666, -2.824884805866878, -2.568279968276179, -2.548020694905531, -3.9157690659836843, -3.130976691605617, -3.4370367191134883, -3.345079526314867, -3.838430136872837, -2.699472580721697, -7.0, -7.0, -7.0, -3.1936254184928794, -3.018423082826786, -3.466274321789292, -3.4912215762392833, -3.671913012441587, -7.0, -3.148294097434746, -3.4671639659690903, -2.675167089663394, -7.0, -3.531095546870028, -2.7555283901719436, -3.0210514059168814, -4.024532577883043, -3.024830339364429, -3.9626303167722345, -7.0, -2.174297741094978, -3.7262380468026377, -3.0620982702573447, -7.0, -2.7407573233077707, -7.0, -2.5390760987927767, -2.708474015096181, -3.868526886768204, -3.0236639181977933, -3.419625360887743, -7.0, -2.9646367037885013, -3.4531653925258574, -7.0, -3.5043349118024643, -3.3381243371969007, -3.1612182196910164, -2.5073674815312446, -7.0, -7.0, -3.6178282776177513, -7.0, -7.0, -7.0, -4.4290898392125735, -3.4558933499799442, -3.508035666557394, -3.409129696282029, -3.360431906796075, -7.0, -3.783975003412671, -4.347486138076573, -4.037035855706077, -4.161740095202392, -3.604528441456295, -7.0, -3.738287162119798, -3.5907861238608794, -4.109409790546366, -4.0538272438101375, -7.0, -4.613537039588475, -7.0, -3.859102254763127, -3.694312646223346, -7.0, -4.3768779392470645, -7.0, -7.0, -3.3419077084620636, -4.217852280259893, -3.79289049135988, -4.063839803002981, -7.0, -7.0, -4.153021743626138, -3.9843922785242656, -4.182828205141933, -4.240698979186308, -3.066879711943878, -2.4740837562241507, -3.6478806474013523, -2.5691493015140976, -2.470000425955779, -2.7794653042814748, -3.670561251605292, -7.0, -3.240294587212841, -3.0350657025539265, -3.4171394097273255, -3.3938383323184746, -3.592186013360358, -3.2838837251182076, -7.0, -2.7275708300415333, -2.9407654356312176, -7.0, -3.619719265611727, -4.410254078446397, -3.227050718827332, -7.0, -2.7344736994187495, -3.1173583818192303, -4.365773790016144, -7.0, -3.1450720377049977, -7.0, -2.6151760173596306, -3.6084190513172856, -4.709988666197879, -3.5453380480196923, -3.792718454857177, -7.0, -3.084124534836101, -3.35065050865804, -3.4549279706167253, -3.485863329597335, -3.2664198658791035, -2.781755374652469, -3.176739535862114, -2.8618661613005787, -2.655275674339117, -2.6826205370617333, -2.8442088006324573, -3.2806542362922633, -3.9043928530236642, -7.0, -3.4784221877400805, -3.287221333246573, -4.03852081516169, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7425355244551888, -1.6405642464819516, -1.6481773094924157, -7.0, -2.6994040818153375, -2.4987094715497626, -3.1799345981374416, -2.6131015169669127, -2.139091607523823, -1.9577168838246266, -7.0, -2.2232796748825896, -1.334118518033627, -2.181986424480151, -3.628695382714023, -2.5442090261667722, -2.719020373369276, -2.23195291641955, -2.919470349950749, -7.0, -1.7252780880807221, -7.0, -2.545581986400255, -2.893317811616112, -1.2448576899725807, -7.0, -2.4565778668777694, -7.0, -3.1362448017461424, -3.9199980309640186, -2.057289489110179, -3.0459471672500875, -7.0, -7.0, -1.5437694575513685, -7.0, -1.5043238869079565, -7.0, -1.3174007955788842, -1.584555984799597, -7.0, -7.0, -2.955495329184127, -1.3775456819423355, -2.5821896663826887, -2.3285252176838247, -2.738100733954366, -1.542330061958561, -7.0, -1.3148722551578658, -2.018085446189288, -3.4712428012687067, -7.0, -1.3714474350404606, -1.3350882209232402, -7.0, -2.7139509594753366, -7.0, -7.0, -3.299942900022767, -2.0397271242216886, -1.9578061260017514, -7.0, -2.825137502052331, -1.9942101088827324, -7.0, -3.961942883141387, -2.573596755953701, -2.370033892087685, -7.0, -1.5863729441136503, -1.3676237078845837, -3.2545480771089736, -1.6163597886715864, -1.3630906859285676, -2.008590292788681, -2.1997832969389326, -3.0422801074983603, -2.3276143266206253, -2.9215130698187295, -2.8354022910424757, -2.077179885446353, -1.926735963784648, -3.348629326628365, -3.0790605919332488, -3.5379449592914867, -3.118595365223762, -7.0, -4.398026858883687, -3.396286546068402, -1.6757228088459417, -3.2166056942039845, -2.5489303754800257, -2.0382645000952824, -2.7000215653386404, -2.712743208890336, -3.3479151865016914, -1.4121167635748022, -7.0, -1.698042519772291, -7.0, -1.355387657986574, -1.9620798147780567, -3.8424220033576497, -2.9336559786575473, -1.4882899572720143, -2.6829183011749445, -1.9039828148855922, -1.9521695008164597, -7.0, -7.0, -3.4104397862103464, -7.0, -3.4207806195485655, -7.0, -2.884177224385151, -7.0, -2.5323296410790315, -2.77232170672292, -7.0, -7.0, -2.762678563727436, -3.5022905279147727, -2.875784485010796, -2.0273496077747564, -2.5722906061514177, -2.3643164317609604, -2.8961954104542107, -3.3434085938038574, -2.8904210188009145, -7.0, -2.3069410289151175, -2.875928984922927, -7.0, -2.638087126400092, -2.320838389017534, -2.5907861238608794, -2.353707909300785, -3.379939722801916, -2.55201267714712, -3.1264561134318045, -2.6570558528571038, -2.523246069841925, -3.116939646550756, -2.7399676967595092, -2.5710096723093048, -3.215505378231818, -3.4008832155483626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5814945422908995, -7.0, -4.037046490078626, -3.445085022719354, -7.0, -7.0, -3.0447011267454616, -2.6856969636672376, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4168506413604782, -7.0, -7.0, -2.9379634365364478, -3.606901208545657, -7.0, -7.0, -7.0, -3.721150843749684, -7.0, -7.0, -3.8842230999548395, -7.0, -3.571825249040829, -7.0, -7.0, -7.0, -7.0, -3.794627444664508, -7.0, -7.0, -3.297760511099134, -3.753150847267354, -7.0, -7.0, -2.8808952189104655, -7.0, -2.412894827472052, -7.0, -7.0, -7.0, -3.3527611917238307, -3.2157256645575676, -3.2913017193269773, -7.0, -3.4471192533180046, -3.9731740526829724, -7.0, -7.0, -3.773859552376687, -7.0, -7.0, -7.0, -7.0, -7.0, -2.882081606267427, -2.952058661925562, -7.0, -7.0, -2.675319983339292, -7.0, -3.93379088414342, -3.873378736409141, -7.0, -7.0, -3.8345001792937783, -7.0, -7.0, -7.0, -7.0, -2.5357023683167728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.222261133522809, -7.0, -7.0, -2.7317045750351814, -2.9759567150326314, -2.9880171842020564, -7.0, -7.0, -7.0, -3.3947142795333423, -3.446226401778163, -3.846027675364379, -7.0, -3.2375688701981984, -7.0, -7.0, -7.0, -4.099956734241182, -7.0, -7.0, -7.0, -3.3947434473685325, -3.7333577879255855, -7.0, -7.0, -7.0, -3.665299499499897, -2.7556684532606974, -7.0, -7.0, -7.0, -7.0, -3.8732043092770407, -7.0, -3.780077171419682, -2.223970863337823, -7.0, -7.0, -7.0, -4.40564938958902, -7.0, -7.0, -7.0, -7.0, -3.319314304090512, -2.176395920226999, -7.0, -7.0, -7.0, -3.5781642220843577, -7.0, -7.0, -7.0, -3.5733358400660675, -7.0, -3.4429498695778618, -3.9314070135565733, -3.639461586348088, -2.948521634484761, -7.0, -3.730338067221792, -7.0, -7.0, -3.658964842664435, -7.0, -7.0, -7.0, -7.0, -7.0, -4.579772167664273, -7.0, -7.0, -7.0, -3.3683798716238016, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6080979463252794, -3.4037853762493175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7615895881903603, -7.0, -3.502036742895763, -7.0, -3.1472639867006027, -3.2872265141673314, -7.0, -3.200248413515354, -3.000805798884526, -7.0, -3.140586598610774, -7.0, -3.7014816356209272, -7.0, -7.0, -7.0, -7.0, -3.892261606915535, -7.0, -4.0832875693272825, -7.0, -4.099646117123231, -7.0, -2.8145660465211737, -7.0, -7.0, -7.0, -3.204481744011206, -3.592065670432247, -7.0, -3.240399465738641, -3.7328760413627067, -7.0, -7.0, -3.2988530764097064, -2.7812483667358685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.620994421851143, -2.654532673821854, -7.0, -7.0, -3.6101276130759956, -3.3521825181113627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0765158873126466, -7.0, -7.0, -7.0, -7.0, -3.6239725120169965, -7.0, -7.0, -3.6245914591268478, -3.9023836844324715, -7.0, -3.362529596161941, -7.0, -3.694956002249818, -7.0, -7.0, -2.424679797081162, -7.0, -2.487021447340703, -3.6267508536833932, -3.2894535727211567, -7.0, -3.586249638866042, -7.0, -3.1587644305616105, -3.460747541844197, -2.6410135085221333, -7.0, -4.003503614742536, -3.0736267173714387, -3.3205616801952367, -7.0, -7.0, -7.0, -3.76767522402796, -7.0, -7.0, -7.0, -3.2847690133490195, -3.6871721045948, -7.0, -7.0, -3.7652959296980564, -7.0, -7.0, -7.0, -3.0512905959414938, -3.341355374863705, -7.0, -3.272286511062136, -3.5692568333286103, -7.0, -7.0, -7.0, -3.3870693269320205, -3.502631927572243, -7.0, -3.707485011967474, -3.3363262895451586, -7.0, -3.267687879865739, -3.5474465024763755, -7.0, -7.0, -7.0, -3.947237607870666, -3.2614413093134877, -7.0, -7.0, -3.758684849882441, -7.0, -7.0, -7.0, -3.912062555588502, -7.0, -3.6469915374771227, -7.0, -3.321184027302314, -3.8756457198482495, -3.160926389562797, -4.161074725658612, -7.0, -7.0, -3.917598409792237, -3.483016420144132, -7.0, -7.0, -7.0, -7.0, -3.965953889102063, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7660284553347037, -7.0, -7.0, -3.083993764334864, -3.4139699717480614, -3.493159190231999, -2.0605779357471343, -3.6243217701134927, -2.9352634125839745, -2.3728711070256434, -3.7211817929377893, -2.6760983533759655, -2.0774377893428646, -1.831380385916425, -3.4127591213991164, -3.382205042064938, -3.4089180208467798, -2.1164603876093295, -3.7869110598911204, -3.400373910783575, -2.4840330875981227, -3.5408923160154697, -3.1697111624179057, -7.0, -4.189360455115544, -3.085488786659366, -2.6765763753194163, -2.6307576146032075, -3.9126648075972716, -3.4082221074413357, -3.3635179665825654, -2.7745980589006467, -2.3953054205960362, -2.8281391448173476, -3.382531609556752, -4.08289303328818, -3.494386526991594, -2.9271992125020683, -4.1836399042213515, -7.0, -3.117602691690084, -2.6619782346651584, -2.973118023373419, -7.0, -3.192889639956309, -3.931472400204468, -3.335818826915165, -2.804877401046314, -3.6101986574867384, -3.431524584187451, -2.6057463605514704, -3.8123116091311235, -3.797059694699971, -2.7792710233263387, -3.773132500540181, -3.8050078342861804, -7.0, -3.8824249177039785, -3.6893088591236203, -7.0, -7.0, -3.4271614029259654, -3.289254408054181, -7.0, -3.774774503479862, -3.2390337015827275, -4.430330557604345, -7.0, -7.0, -7.0, -3.3467998944611654, -3.9618480590183243, -4.456458821182361, -4.178574103379925, -2.8945154378485984, -7.0, -3.604334073102911, -2.3624824747511743, -3.5257742727724612, -2.899881272661842, -3.512217305233624, -2.002375108442567, -3.22451720694511, -2.8852198251151067, -7.0, -3.657701075470702, -3.1994762648542516, -3.353082344206042, -3.92219473304098, -7.0, -3.0029062314830117, -3.795303884967312, -3.7575858013465804, -2.797613730153076, -7.0, -7.0, -2.9674309630208207, -3.618780024506215, -1.599799126102246, -3.433209608771474, -1.8554706961183298, -2.4641225315292545, -2.179847626177222, -2.4682256622556245, -1.7886343092918957, -3.013005850015737, -7.0, -2.5072059920620737, -2.7880504684712695, -2.463388589573727, -2.325672585645238, -2.3096301674258988, -2.6805827164277285, -2.6365406820698576, -2.267841936069823, -2.342422680822206, -2.2741578492636796, -2.0097994292833405, -2.578543708157483, -2.6565240853339462, -2.278129763907229, -3.6953065224318027, -3.1132746924643504, -7.0, -2.2976135389667594, -2.522918224802378, -7.0, -2.6023159857249434, -2.546655746275776, -1.8824886165043124, -7.0, -1.7437988835406757, -2.9246853240244777, -2.3797082949479225, -2.827081946227663, -3.2487087356009177, -3.2011238972073794, -1.8408142274924864, -2.7156452610404553, -2.273348568749101, -2.6641717053619307, -2.9755237129603316, -1.447333586615877, -2.123851640967086, -1.7882785888429444, -3.649821463224565, -2.5002153572023382, -3.0013009330204183, -2.043637998675992, -1.5998588226819117, -2.1972206099604468, -3.1217567584878156, -3.0290454103273037, -3.41237653650371, -1.9433183777656895, -2.2806000476987807, -2.4620522678964307, -2.495504692242491, -2.6413914743166362, -2.3697577314189413, -2.825137502052331, -7.0, -2.8987251815894934, -2.4652766020333554, -3.1049136848482157, -7.0, -1.743946161887734, -2.4173055832445254, -3.024485667699167, -2.3503403330293566, -1.731326577491958, -7.0, -2.537539266144841, -2.1339811341121924, -2.747531316550332, -3.435525851498655, -2.331014665152977, -2.3158256288671404, -3.234567897635686, -2.5102576833804497, -2.146381194812135, -1.246613541615036, -1.97657921864011, -2.3475251599986895, -3.564547711755948, -7.0, -2.258691231511513, -1.7563228128879709, -2.5167895405103597, -1.4577654795018509, -2.3769204460896, -2.4631461367263494, -1.9974215371337367, -2.874959064430903, -1.710146556473407, -2.9274436926266865, -3.0073209529227447, -3.2152849801139682, -2.952671385348004, -3.0321004752575327, -2.3961993470957363, -2.62215946678484, -7.0, -2.9145194487727255, -2.9460590603851236, -1.7600533559612246, -3.326335860928751, -2.993766785745261, -3.2577985291530305, -3.0801452741502415, -3.0940050223646494, -2.7186202999514206, -2.2510005323805027, -1.7469567911439805, -2.1881570498615166, -7.0, -2.4538641419058598, -2.062743102568688, -3.2786392978907393, -7.0, -7.0, -2.8282301147269613, -3.2702905531667605, -3.680516809381255, -2.972066640403255, -2.0805177662808054, -3.281714970027296, -7.0, -7.0, -2.7745169657285493, -7.0, -7.0, -3.1077499885923325, -7.0, -7.0, -2.697631653563757, -1.8860331716812706, -3.1531285942803624, -3.570192561095726, -7.0, -2.953437514803095, -7.0, -1.9717975238541687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9506082247842307, -3.458543426918113, -7.0, -7.0, -7.0, -7.0, -3.7574466429160234, -7.0, -7.0, -7.0, -7.0, -7.0, -3.753563909684063, -3.9334366678262804, -7.0, -2.534502045262018, -3.9817698346980532, -7.0, -7.0, -7.0, -7.0, -3.3525683861793083, -7.0, -4.393885094130324, -7.0, -3.15259407792747, -7.0, -2.754603128608854, -7.0, -7.0, -2.81424759573192, -7.0, -7.0, -3.220631019448092, -4.102642600790214, -7.0, -7.0, -3.480438147177817, -7.0, -2.8740674540749565, -7.0, -2.829089253448099, -7.0, -7.0, -7.0, -3.1721835050848726, -2.7831886910752575, -3.6480182966516828, -7.0, -7.0, -7.0, -3.560026248912892, -3.291812687467119, -3.3092041796704077, -7.0, -7.0, -7.0, -3.6595359071542166, -3.8617434431712057, -2.4650852875574327, -7.0, -7.0, -7.0, -7.0, -2.6316973716375482, -7.0, -7.0, -4.128189179657028, -7.0, -1.7750175934288313, -7.0, -7.0, -3.4465889396769005, -3.4668676203541096, -2.3066930278565714, -2.6273658565927325, -3.2605483726369795, -7.0, -7.0, -7.0, -3.4308809464528913, -7.0, -3.491987848930919, -3.3347552398696707, -4.054421524462536, -7.0, -7.0, -7.0, -2.8210219669692687, -7.0, -3.6725596277632757, -7.0, -7.0, -7.0, -3.119915410257991, -3.114610984232173, -1.9990529802371073, -3.132579847659737, -7.0, -7.0, -7.0, -3.548406968575704, -3.2545480771089736, -7.0, -2.859938471600862, -7.0, -3.4968777785966436, -2.6014080605346837, -7.0, -3.0038911662369103, -2.7363965022766426, -3.712481337801919, -3.0043213737826426, -2.0047988828817687, -3.0882718434369, -7.0, -3.8917604014566716, -3.2631624649622166, -4.219571429078233, -7.0, -3.563243701140398, -2.786751422145561, -7.0, -7.0, -2.693266203420536, -3.10698371567979, -7.0, -7.0, -3.2372743748135773, -7.0, -3.09377178149873, -7.0, -7.0, -7.0, -7.0, -3.794418330874141, -7.0, -3.7558748556724915, -7.0, -7.0, -7.0, -7.0, -2.5047620421780743, -4.088065177690204, -3.879210605291759, -7.0, -7.0, -7.0, -4.075364446373285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.406540180433955, -7.0, -7.0, -3.433929765608464, -3.6236110517531817, -7.0, -7.0, -3.0931554842829083, -2.9172428579074663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1969952135148922, -7.0, -7.0, -7.0, -7.0, -2.4473453533502263, -2.6967930850817443, -2.240315190350821, -2.1625830742133614, -2.594760752586463, -2.5060989599284405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.358886204405869, -7.0, -7.0, -7.0, -3.5177235948337353, -3.250420002308894, -7.0, -3.2038484637462346, -7.0, -2.7630875039477676, -2.887898488096872, -7.0, -3.5162708827293403, -3.2930309056064373, -3.300432429830641, -7.0, -3.11293997608408, -2.2466079886517525, -2.8363241157067516, -3.1699681739968923, -2.527114111639805, -7.0, -2.130828409188458, -1.5750966481019517, -3.6706168864003255, -3.6813920078967692, -5.111635470248563, -7.0, -7.0, -2.945222316635341, -3.0394141191761372, -3.119585774961784, -7.0, -2.8739015978644615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.11544408343624, -2.9728131759430343, -7.0, -7.0, -7.0, -7.0, -3.2780673308886628, -7.0, -7.0, -7.0, -7.0, -3.436480695009495, -3.8396665568824333, -1.3121078748810506, -2.3394514413064407, -2.8379039445929424, -7.0, -3.332660600270635, -2.8615344108590377, -3.067058450998685, -7.0, -3.7181112296356043, -7.0, -7.0, -7.0, -3.5512059437479064, -7.0, -3.300465045540311, -7.0, -3.8904769089601707, -3.386498965550653, -3.2732328340430454, -7.0, -2.1511399228714536, -2.150756439860309, -2.645053650442902, -7.0, -7.0, -7.0, -7.0, -3.4075608494863623, -7.0, -3.4834446480985353, -2.7135838695113863, -7.0, -7.0, -7.0, -4.435669211926046, -3.9380691862233856, -7.0, -3.5264469759599937, -7.0, -1.9624369880545964, -7.0, -2.8360074591255313, -2.150289133478534, -2.6060587494103142, -7.0, -7.0, -3.623456048069934, -7.0, -4.397566032746728, -7.0, -7.0, -7.0, -7.0, -3.8159760009719856, -7.0, -7.0, -7.0, -3.0572856444182146, -7.0, -7.0, -7.0, -3.76767522402796, -7.0, -3.327563260187278, -7.0, -7.0, -4.385039951486824, -3.7031193462360776, -4.645336141727953, -7.0, -2.8472641017707647, -3.980734503770833, -7.0, -7.0, -3.3100557377508917, -7.0, -2.5165862191199873, -2.4580079801960197, -3.485366465708323, -2.7709992051639407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2441946258862364, -3.2121876044039577, -2.7277411992455693, -3.0989896394011773, -7.0, -3.2616304843292867, -4.477048866273474, -7.0, -7.0, -7.0, -2.9561150478335527, -3.3217537297632274, -4.599915806604957, -3.708896578694757, -4.013932120711204, -7.0, -4.321950362519417, -3.9475807493043225, -4.098271561167563, -3.1430259587562195, -4.346059433052574, -4.681322659957815, -3.3583670730080253, -7.0, -4.0287338793493355, -7.0, -5.389460241391956, -4.293141483450931, -3.8435566646554724, -4.132675849092962, -7.0, -7.0, -7.0, -7.0, -3.549709912785665, -3.7058352143356887, -4.684845361644412, -7.0, -7.0, -7.0, -7.0, -7.0, -4.465382851448418, -7.0, -3.9237930177264575, -7.0, -4.678017331283984, -3.171018804632408, -2.03104575333472, -7.0, -7.0, -7.0, -3.8061121101690913, -3.5510431647048075, -7.0, -4.4543722124188445, -4.188492565093906, -3.989075878689533, -7.0, -3.97320484934175, -7.0, -7.0, -7.0, -4.388243336895596, -7.0, -7.0, -3.4039384266415245, -3.6965804265510367, -5.406118454624989, -7.0, -7.0, -7.0, -3.0449697502337134, -7.0, -7.0, -3.504130905935453, -7.0, -7.0, -7.0, -7.0, -4.78875505029906, -7.0, -7.0, -7.0, -4.601810200179028, -4.198038188846813, -2.9786369483844743, -3.7434754666528636, -3.133300533875017, -3.649140064144219, -5.349192020360922, -7.0, -7.0, -4.315886415708487, -4.313571968439817, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2281914879610185, -2.7933712489189557, -2.9273973806434306, -2.697519937940786, -2.4360035356698964, -3.316941985816457, -2.208844289340738, -3.45484486000851, -2.7041505168397992, -3.5065726742525136, -7.0, -3.5723589989833546, -3.092281919036219, -2.5563025007672873, -3.474507639116976, -2.208095245943409, -3.4671639659690903, -2.890979596989689, -7.0, -3.244277120801843, -1.2733707271961023, -7.0, -2.8020892578817325, -3.1215598441875008, -2.2956194529830842, -7.0, -3.0452838513951357, -7.0, -2.8651039746411278, -3.7023335848920693, -2.2375655006215744, -3.3955290747807227, -7.0, -2.8568496787251725, -2.976304116552003, -7.0, -2.971275848738105, -7.0, -2.6111920608684343, -2.5359033274007983, -7.0, -2.868938178332911, -3.2105860249051563, -7.0, -3.051769746899332, -2.5390760987927767, -2.200884682394445, -3.3334472744967503, -2.4812036769243906, -2.3888436682532856, -2.4878451201114355, -4.217404974401542, -3.1322596895310446, -2.8559227751038248, -2.532860498597645, -7.0, -3.0565823808163457, -7.0, -7.0, -2.7926917893479724, -3.472317546316842, -2.267679113991627, -1.9942101088827324, -2.8987251815894934, -7.0, -3.255995726722402, -7.0, -3.2405492482826, -3.8303319934519617, -2.91301868374796, -3.4753805931433615, -2.813641631517659, -2.763240757310025, -2.2007137339640135, -3.0694830939346116, -2.599402281048723, -3.220020871555797, -2.7179477417489277, -3.0213960567419713, -2.7943718474659938, -3.195415296209372, -3.0505730767551476, -3.064233296034753, -2.888580615662831, -2.8898617212581885, -2.86053763630648, -7.0, -7.0, -3.295786940251609, -7.0, -2.517855418930029, -3.0874264570362855, -3.260836819581087, -1.6595481798668492, -3.1436675973631676, -3.7784045149697625, -3.1312175426046194, -3.2580383383705556, -7.0, -7.0, -7.0, -2.7636775163976686, -3.737907923374639, -3.754806855354423, -7.0, -2.1122697684172707, -7.0, -2.7646345803270043, -3.2860071220794747, -7.0, -7.0, -7.0, -7.0, -3.13481437032046, -3.168202746842631, -3.0099362766616276, -2.9254839872002525, -3.4531653925258574, -7.0, -2.9542425094393248, -3.1734776434529945, -7.0, -7.0, -3.2405492482826, -3.516403148447403, -7.0, -3.6582976503081897, -7.0, -7.0, -2.9640237928400337, -7.0, -2.395172160046634, -7.0, -7.0, -3.907666595015563, -3.2780673308886628, -7.0, -3.6226284261293253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.091266426750714, -7.0, -7.0, -7.0, -7.0, -4.217931168785781, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7409545058228053, -7.0, -7.0, -7.0, -4.727056500770033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.841033940514008, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.608622295084001, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.531981896330715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278997346985271, -7.0, -7.0, -7.0, -4.5177851177248165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7033773685123497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.85062632701075, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.508779739050585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.781396305196791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.759365621655929, -3.388633969351789, -7.0, -7.0, -3.5151734143886832, -3.866050924009275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.412123565494064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8643676769207596, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.934649922900711, -7.0, -3.80962704189405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3544093944426345, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6645479622465467, -7.0, -7.0, -7.0, -7.0, -7.0, -4.272197566611441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.858296524533886, -7.0, -5.8754282319102185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.597442870900575, -4.472324865002763, -7.0, -3.6442415858437287, -3.1226274960100633, -3.8995286868730945, -2.656943297593573, -7.0, -3.2789535589511205, -3.9857407410500745, -3.1416587697865523, -7.0, -2.5658561294957485, -2.790381335859961, -3.038654218474643, -4.333165042543883, -3.5960286592709947, -3.2796928632569657, -2.0729726418384122, -4.316410710725809, -3.295017011881458, -4.309088736043454, -3.323939275128193, -3.6892200372638357, -2.854980412250097, -4.334051440346892, -2.918668816066225, -2.6452257115354163, -3.382557321908786, -3.8213315334803046, -2.4367925158703856, -2.929792841881867, -3.4819951270342555, -3.2434514656445983, -2.5471591213274176, -3.4877744973806672, -3.4106647801187093, -7.0, -2.6696267589109772, -4.315025199312605, -7.0, -7.0, -7.0, -7.0, -7.0, -3.633407852121307, -7.0, -4.28168974454697, -7.0, -7.0, -7.0, -4.963636742118113, -4.682298542107937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.710063745199173, -5.104531494486759, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4353824437324185, -7.0, -7.0, -7.0, -3.817961804531994, -4.598270573796811, -4.490070903572991, -7.0, -7.0, -4.956902842964416, -7.0, -5.3479288310870485, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8796692056320534, -2.4472396579718936, -2.6919503906454767, -7.0, -4.189265668934548, -2.929418925714293, -2.718501688867274, -3.74401901732498, -2.5718751325887794, -7.0, -7.0, -7.0, -2.5634810853944106, -3.594240575973108, -7.0, -3.064083435963596, -3.0665122778565954, -3.287129620719111, -2.6580113966571126, -2.5034274846401083, -3.1489109931093564, -1.6086905702269756, -7.0, -7.0, -2.4951973183654577, -7.0, -7.0, -7.0, -3.5425764762605296, -7.0, -7.0, -3.3677285460869766, -3.6636660324894645, -2.1365631103550466, -2.800717078282385, -3.4705574852172743, -7.0, -3.143014800254095, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.415140352195873, -7.0, -2.5498786795403077, -2.3348556896172914, -1.8242188405518553, -7.0, -7.0, -7.0, -7.0, -3.1201899153438655, -7.0, -7.0, -7.0, -2.3873898263387296, -3.0719433440030572, -7.0, -2.920123326290724, -2.864025383544317, -7.0, -3.816108670739904, -7.0, -2.4652766020333554, -3.255995726722402, -7.0, -3.859798547480566, -7.0, -3.1840522923918644, -2.99563519459755, -7.0, -7.0, -1.5276573193177572, -7.0, -7.0, -4.632467415481234, -7.0, -7.0, -4.309608877958903, -7.0, -7.0, -7.0, -3.3406423775607053, -2.4209637116600056, -2.9245377177754897, -2.581209852354842, -7.0, -7.0, -2.915154763984291, -2.441909267199942, -2.824776462475546, -1.6630574484453744, -3.4901884068008413, -7.0, -3.263340126851339, -3.4693310102934105, -2.832143805932397, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0127493730851898, -7.0, -7.0, -7.0, -3.0359341352045495, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8543060418010806, -2.1324731545055577, -2.9686830381598255, -2.9731278535996988, -7.0, -7.0, -1.8191566912166992, -7.0, -7.0, -7.0, -7.0, -3.4207806195485655, -7.0, -4.1144108023978365, -3.4749443354653877, -3.672005445022952, -7.0, -7.0, -3.557025722386383, -7.0, -7.0, -3.4215216663369774, -7.0, -7.0, -7.0, -3.157909866226345, -7.0, -7.0, -7.0, -7.0, -7.0, -3.370513089598593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8858714298613544, -7.0, -7.0, -7.0, -4.041412425367856, -3.8769871844277386, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6707559422151332, -3.1046422774442766, -7.0, -4.0392554438064865, -3.5182323296424447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.787629385435588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5170128532784437, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.639830003827776, -3.9585638832219674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.424051942460124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9540494467635945, -3.765125036304772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.864036182725775, -7.0, -7.0, -7.0, -7.0, -3.9239147590658896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.254377447706169, -7.0, -7.0, -7.0, -7.0, -4.025141949625193, -7.0, -3.62744779121837, -4.323038854969626, -7.0, -4.121625492208471, -7.0, -2.3239399715085596, -7.0, -3.6577249542051082, -7.0, -7.0, -3.8634418286137087, -4.419063124492548, -7.0, -7.0, -7.0, -3.7728056166847854, -7.0, -7.0, -7.0, -7.0, -7.0, -3.929393378228659, -3.4646758040229666, -4.313297626086869, -4.04680721355374, -7.0, -3.841265592625782, -7.0, -7.0, -7.0, -3.645422269349092, -4.114277296561586, -7.0, -7.0, -7.0, -3.6139369124465115, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9303406348743843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6895160395121422, -7.0, -3.5591881890047756, -7.0, -3.585686278452497, -3.559032745721805, -7.0, -3.5666731376061165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.25956998964356, -7.0, -4.08019341942848, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.87052395074504, -3.3496983398039943, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8530286147129895, -7.0, -7.0, -4.16025838620267, -7.0, -3.9966211075792013, -3.0281219670061663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.453948101422571, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.091702121717148, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8292501529183816, -7.0, -1.9821867377077855, -7.0, -7.0, -7.0, -4.20725725871634, -3.7707415837527742, -7.0, -4.060584531360865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8685856665587655, -7.0, -7.0, -7.0, -2.6091944610327804, -7.0, -7.0, -3.5631588895944604, -7.0, -7.0, -7.0, -7.0, -3.5832271212472397, -7.0, -4.093561757565289, -7.0, -7.0, -7.0, -3.188436925219375, -7.0, -7.0, -7.0, -7.0, -4.078601800355391, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.990299997459176, -7.0, -3.582044414222515, -7.0, -4.0965972083578945, -3.410290598084559, -7.0, -7.0, -7.0, -7.0, -3.9882467233753784, -3.6152484449094584, -4.062769949815128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.280407623567409, -7.0, -7.0, -3.278924999158791, -3.2968379697311563, -4.396722278503773, -7.0, -3.683234711411427, -3.5211235488395993, -3.53873078529734, -2.9919095417868324, -3.039027907961798, -3.720434958433874, -3.5333483150767298, -3.518694858223309, -3.026926785105189, -3.253017489746188, -3.285351804567883, -3.742175043223677, -3.09377178149873, -3.310152400147939, -2.815015488573993, -3.82610721152752, -2.886490725172482, -3.4163873724604112, -0.9967664064449114, -2.444088188482623, -3.237155148617628, -3.079543007402906, -3.316003912815251, -2.7535427437866438, -3.6282867310895144, -2.4686001095378365, -3.168897163634367, -3.1283992687178066, -2.855774116844509, -3.038023740045158, -3.9144489406985543, -3.0085292028130053, -3.139753185695353, -2.446577575487802, -2.9906415201297722, -3.7725508979688867, -7.0, -3.879759230965237, -3.1487798874796478, -3.8441042306975133, -4.033705151467852, -3.595496221825574, -7.0, -3.7457601584924167, -7.0, -3.6717743266725966, -3.4160385034771386, -3.4596984085744094, -3.335706570895733, -7.0, -3.5724972715840555, -7.0, -7.0, -7.0, -3.9982884066933058, -3.5609422722781963, -7.0, -3.6204358958338836, -3.451107081704346, -3.6623555521273166, -7.0, -7.0, -3.8499719123288503, -3.5073520497345663, -7.0, -4.81390275426885, -3.218535505216528, -2.4682513982516863, -7.0, -3.590300340253103, -3.0908978446864057, -3.570069212412138, -3.4101443047027806, -3.1784973288215594, -7.0, -3.2875370837896747, -4.568143031657702, -7.0, -3.611663286550839, -3.4407831813593344, -7.0, -3.7260065455287896, -7.0, -7.0, -3.5911573950798172, -3.813213918024926, -7.0, -7.0, -7.0, -3.5342165443323297, -2.641702867149843, -3.406515849529335, -7.0, -4.333427121152962, -7.0, -3.310640216862898, -2.8940851900609035, -3.9400680137393524, -3.9184497424011577, -3.842609239610562, -3.37485828006509, -7.0, -2.7066672175675204, -4.016657344822202, -3.5589484459780394, -7.0, -3.088756066652953, -3.0770043267933502, -3.258717079597411, -3.573683693093798, -3.0781546160496553, -3.787672964687493, -3.8588378514285853, -3.263517716091967, -7.0, -3.98344585734134, -7.0, -3.3154717746546822, -3.8334658601706924, -7.0, -2.54076873485839, -3.050716345041008, -2.294349499507947, -7.0, -3.052501563413781, -4.1739143398014065, -3.271318745081179, -7.0, -7.0, -3.8975721138257304, -3.6827586141990913, -7.0, -3.840043330603494, -7.0, -7.0, -2.9296153946078958, -3.3785190261704825, -3.426240081535656, -7.0, -3.560086048497414, -3.9112108931375533, -3.9019212493762616, -2.7834469809135887, -7.0, -3.9891827512555476, -3.9801397777457543, -2.5947081713790734, -3.2272223343324167, -3.85582190540603, -3.840043330603494, -2.78767604349099, -7.0, -3.0915566948636353, -3.961942883141387, -3.1049136848482157, -7.0, -3.859798547480566, -7.0, -7.0, -3.0858611737884503, -3.3724824033627847, -3.925621454790829, -4.101059354908116, -3.190611797813605, -7.0, -4.09652766560644, -3.6107133821919506, -7.0, -7.0, -3.9458295265073566, -7.0, -4.06881642992222, -3.885756881069267, -3.151982395457474, -2.528434597195507, -3.2880255353883627, -3.580696939712437, -7.0, -7.0, -3.2340406260556973, -3.9614210940664485, -3.8706964579892498, -3.1809378639837487, -3.187791799106236, -3.4464853882977966, -3.0614734225676257, -2.935496769408188, -2.7554335198406235, -3.957271979992943, -3.8574531170352664, -3.9061733636440485, -7.0, -7.0, -7.0, -1.64697522012513, -7.0, -7.0, -7.0, -2.7755404355153734, -7.0, -7.0, -3.528209432477408, -7.0, -7.0, -7.0, -7.0, -3.7996850909091004, -3.9014038268252516, -7.0, -7.0, -7.0, -3.840670561333409, -7.0, -7.0, -3.5548524343720542, -3.9406160823374075, -7.0, -2.918326697955654, -3.60404595999381, -3.333568174923988, -7.0, -7.0, -3.685338597906292, -7.0, -7.0, -2.9041398021650044, -7.0, -7.0, -3.5064148268833297, -3.475283684857362, -3.9457147140598603, -3.8353734524700087, -7.0, -3.0270436588491743, -7.0, -3.731629050375943, -7.0, -7.0, -7.0, -7.0, -2.780317312140151, -7.0, -7.0, -7.0, -3.2755416884013093, -7.0, -7.0, -7.0, -4.125863341790067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8692317197309762, -7.0, -4.341889355714299, -3.0500481493617353, -7.0, -3.379668034033654, -3.847698347974595, -7.0, -7.0, -7.0, -3.0488300865283504, -7.0, -7.0, -3.213116184718616, -2.34143452457814, -7.0, -7.0, -2.6967930850817443, -2.2896294858836037, -7.0, -7.0, -7.0, -3.387033701282363, -7.0, -5.141872886754569, -7.0, -7.0, -7.0, -2.857935264719429, -2.957128197676813, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6787057884301517, -7.0, -3.435578953471198, -3.8047526021504607, -7.0, -7.0, -3.4652340949880145, -7.0, -7.0, -7.0, -7.0, -7.0, -2.806632128612864, -4.152074202768228, -7.0, -7.0, -7.0, -7.0, -3.7453871213200087, -2.3221208040924033, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.584274671924987, -7.0, -7.0, -7.0, -3.4674601095072637, -7.0, -7.0, -7.0, -3.297760511099134, -3.2676409823459154, -4.116806915962344, -3.5578679615680224, -3.725135413175271, -7.0, -7.0, -3.44870631990508, -7.0, -3.4095950193968156, -7.0, -2.9025467793139916, -7.0, -7.0, -7.0, -7.0, -3.3783979009481375, -7.0, -7.0, -7.0, -3.6461095219788477, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3877278748679, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.700646038084983, -7.0, -7.0, -7.0, -2.5709319183959467, -4.994647038353484, -7.0, -2.991521413671849, -7.0, -7.0, -7.0, -2.980025026216241, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.858256399391167, -2.179854874505845, -4.159055603513488, -3.6979264448065052, -7.0, -7.0, -2.7993405494535817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6405187032046085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9459607035775686, -2.556647042222806, -2.8239087409443187, -2.4207522017843215, -2.6646419755561257, -7.0, -4.021155595897658, -7.0, -7.0, -7.0, -3.0870712059065353, -7.0, -7.0, -7.0, -3.930999941956152, -7.0, -7.0, -7.0, -7.0, -3.7515696914384007, -7.0, -7.0, -3.602385590105105, -7.0, -2.7970943426302544, -3.249198357391113, -2.8245596945739138, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3283796034387376, -7.0, -7.0, -3.4779528557799653, -7.0, -3.7692295817365937, -7.0, -3.2518814545525276, -7.0, -7.0, -2.673711908836969, -2.597329464234929, -7.0, -3.4101020766428607, -7.0, -3.0835623371877907, -7.0, -7.0, -7.0, -7.0, -2.8847953639489807, -7.0, -7.0, -3.028977705208778, -3.618623286646383, -2.899163641477219, -7.0, -5.412070599420136, -7.0, -1.9176487071628685, -7.0, -7.0, -7.0, -2.858537197569639, -3.359076226059263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7481880270062007, -2.367355921026019, -2.9770373352246815, -3.581400491476937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.99536354504628, -7.0, -7.0, -2.381656482585787, -3.809096556968516, -7.0, -7.0, -7.0, -3.998520882835038, -7.0, -3.3653475652695106, -2.882036383746232, -3.8487431818956837, -7.0, -7.0, -2.8536982117761744, -7.0, -3.4795753101749884, -2.752355804153501, -7.0, -7.0, -2.2974869397629045, -2.9206450014067875, -3.2657609167176105, -7.0, -7.0, -3.0322157032979815, -7.0, -7.0, -7.0, -4.65525692082863, -3.5997193623970984, -7.0, -3.988135156985908, -7.0, -7.0, -2.903524064471262, -3.3087777736647213, -7.0, -7.0, -2.3452336581560345, -1.9093420383613084, -2.363235804483694, -7.0, -5.226440720641296, -7.0, -7.0, -7.0, -7.0, -3.765966424785714, -3.6321534835106326, -7.0, -7.0, -3.1324197980976147, -7.0, -7.0, -7.0, -3.4101865286571087, -3.0681858617461617, -2.6720978579357175, -3.633670406051444, -7.0, -4.556875150501956, -7.0, -5.2733283174018215, -7.0, -3.1026394836913003, -4.06495273646327, -3.4845133742926118, -7.0, -7.0, -7.0, -3.5542468081661105, -3.7940695839816327, -3.7327956982893293, -7.0, -7.0, -7.0, -7.0, -2.6304278750250236, -7.0, -7.0, -3.05595140532915, -7.0, -3.3286377925655763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.998329099002421, -7.0, -7.0, -7.0, -4.622224387866044, -7.0, -7.0, -7.0, -7.0, -4.277104727283855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.775231685855374, -7.0, -4.201251424585158, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.118595365223762, -7.0, -4.464496999231432, -7.0, -7.0, -7.0, -7.0, -4.934778632284937, -3.1527250407314686, -3.2099169530089915, -7.0, -4.185140631715381, -3.6401560685761862, -7.0, -3.3975766285797615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.390113407756115, -4.886071739164197, -7.0, -7.0, -2.2030679971228104, -2.968015713993642, -3.725546525521209, -7.0, -7.0, -7.0, -7.0, -7.0, -4.324570517218835, -4.434377261250224, -7.0, -7.0, -7.0, -7.0, -4.5979254325604595, -7.0, -7.0, -3.1110696839689878, -4.354511799744273, -7.0, -4.5026845767730315, -7.0, -7.0, -4.609402295470293, -7.0, -7.0, -2.7895807121644256, -7.0, -7.0, -7.0, -3.215137985872625, -2.095444656976254, -3.145535411776542, -7.0, -7.0, -3.441596956713679, -7.0, -1.7232240539209986, -2.303196057420489, -2.910700616959574, -7.0, -3.43610039301166, -2.7229422608370752, -7.0, -3.0546130545568877, -7.0, -7.0, -2.89726044333122, -7.0, -7.0, -3.3092041796704077, -7.0, -3.0770043267933502, -2.9854264740830017, -2.538824988937904, -7.0, -4.017242084547646, -7.0, -7.0, -7.0, -3.6634461427299287, -4.7888044930446485, -7.0, -2.7610252517113727, -2.1975061070696156, -7.0, -2.4002500911501117, -7.0, -2.3947017784328417, -2.5889290464869177, -7.0, -7.0, -3.4044916177586857, -2.6299190355035416, -7.0, -7.0, -7.0, -3.159266331093494, -2.265211027637486, -2.2973227142053028, -3.292300384859081, -7.0, -7.0, -2.5129753158318624, -2.3824030249571733, -7.0, -7.0, -7.0, -7.0, -7.0, -1.895462011211129, -2.7494564645739383, -2.573596755953701, -7.0, -3.2405492482826, -7.0, -7.0, -7.0, -7.0, -7.0, -2.353723937588949, -3.208441356438567, -7.0, -7.0, -2.956099794444892, -3.3092041796704077, -2.3480998137138966, -1.642707106377062, -3.077132683372356, -3.482158695411276, -3.2681878052211655, -7.0, -2.9952362102039363, -7.0, -7.0, -7.0, -2.106530853822381, -7.0, -7.0, -7.0, -3.105510184769974, -7.0, -4.053859215076276, -7.0, -4.164977077110886, -3.2688119037397803, -3.6725596277632757, -2.7641761323903307, -7.0, -2.6769221255374807, -7.0, -1.5381235426720743, -2.8982679813347163, -7.0, -1.6097468199942533, -2.3761205256094518, -2.4452927694259716, -3.250750999543319, -0.7659167939666319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.026328938722349, -2.143014800254095, -7.0, -7.0, -7.0, -2.775974331129369, -7.0, -3.1089031276673134, -3.247973266361807, -2.832340809556507, -3.7715139899796664, -7.0, -3.053462604925455, -7.0, -3.549371152333177, -3.012415374762433, -7.0, -3.1985883640360258, -2.5951286428938523, -7.0, -7.0, -7.0, -3.427323786357247, -7.0, -7.0, -7.0, -7.0, -3.6658623002031554, -7.0, -7.0, -7.0, -3.7718078789991054, -7.0, -7.0, -7.0, -7.0, -3.839603729470837, -3.82013575187043, -7.0, -7.0, -3.3316165762659744, -7.0, -7.0, -7.0, -3.8425052294359774, -3.4286611380324996, -3.3347887257004363, -7.0, -7.0, -7.0, -7.0, -2.494106034228388, -3.4111144185509046, -7.0, -3.2928760493088776, -3.564831473888491, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7788022040132385, -2.9451752606966317, -7.0, -7.0, -7.0, -7.0, -3.8566684836115352, -7.0, -7.0, -7.0, -3.571825249040829, -7.0, -3.5773315251569056, -7.0, -7.0, -3.865518519074774, -7.0, -2.563389799113065, -3.774078800752519, -7.0, -7.0, -3.813714391881145, -3.5400790888041724, -3.2722100098422344, -3.901240302073309, -3.819774182176816, -3.5798216909532146, -7.0, -3.7944880466591697, -7.0, -7.0, -3.8029104894190398, -7.0, -7.0, -7.0, -3.1027276444281937, -2.3868660119200196, -7.0, -7.0, -3.1082266563749283, -7.0, -7.0, -3.6754575416412085, -7.0, -7.0, -3.8631067550339733, -7.0, -3.872272846224205, -7.0, -7.0, -2.9570254668704434, -7.0, -7.0, -7.0, -3.5997739391463885, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2259103952026758, -3.6353329239337633, -3.7172543127625497, -7.0, -7.0, -3.592953571547866, -7.0, -3.403120521175818, -3.9551583869257936, -7.0, -3.3822197260983238, -7.0, -7.0, -7.0, -3.6868744999220815, -7.0, -7.0, -3.824060717418653, -3.6744477675018934, -3.232547690649782, -7.0, -7.0, -7.0, -7.0, -2.244008706403989, -2.954724790979063, -3.748498126613737, -7.0, -3.9389198122447717, -3.374106508804013, -7.0, -4.001863462692524, -3.3941083123867233, -7.0, -3.781970673912552, -7.0, -3.654289570174457, -3.5116160205691376, -7.0, -7.0, -7.0, -7.0, -2.5166397339784603, -3.9114772171061025, -7.0, -7.0, -2.949008611624438, -7.0, -7.0, -7.0, -3.759516759462188, -7.0, -2.81929710718518, -3.4206569887230676, -4.288897276322566, -3.6994908452722046, -7.0, -4.105680462945809, -7.0, -7.0, -3.8171685723810556, -3.61689542640076, -4.0750357259221905, -7.0, -7.0, -7.0, -3.371296092257093, -7.0, -7.0, -7.0, -3.824581376233483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.837588438235511, -7.0, -3.579190698925359, -3.7759015788916743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.132163596050864, -7.0, -3.430290106054924, -7.0, -3.319231018160272, -3.2556512166305875, -7.0, -3.093728034887572, -3.955639653023252, -7.0, -7.0, -3.83257277484618, -3.545987102271373, -7.0, -3.8328281295393536, -7.0, -7.0, -7.0, -7.0, -4.149773177559665, -3.8546703318953357, -4.433993721794708, -7.0, -2.6986888993039364, -7.0, -3.560305243220961, -7.0, -3.532117116248804, -7.0, -3.7821858664920165, -3.4274455340986147, -7.0, -7.0, -3.8806421264042847, -3.1439511164239637, -3.0895872186728046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5228678877825708, -3.954145988829548, -3.317761636804117, -3.318952727334636, -7.0, -3.7749546890801384, -3.306425027550687, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2681003598156644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0959099852263767, -7.0, -7.0, -4.068927611682072, -3.84248442441157, -7.0, -7.0, -2.5712023068131966, -3.859018143888894, -3.2524006351067714, -7.0, -2.742548008123852, -7.0, -7.0, -7.0, -2.482873583608754, -3.7272565137622964, -3.2008808842713874, -7.0, -7.0, -3.8292394281413893, -3.791690649020118, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.866759783495108, -3.5330726600488123, -3.816108670739904, -3.8976270912904414, -7.0, -2.702433636058207, -3.5111812411046364, -7.0, -3.27460186778912, -7.0, -7.0, -7.0, -7.0, -3.3069149600365777, -3.3203021054568276, -3.7512020945883533, -3.851441814672055, -7.0, -3.873436863222037, -3.5392265670071406, -3.7989267385772014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3674491072686044, -7.0, -3.9840150839542603, -3.6924356277125225, -3.448229758902606, -7.0, -3.578371751958183, -3.2195964323588115, -4.046534182750969, -7.0, -7.0, -7.0, -3.4576296199439165, -3.7500453120117676, -7.0, -7.0, -7.0, -7.0, -3.884228769632604, -7.0, -7.0, -7.0, -3.9814561665221264, -7.0, -3.312800085191476, -7.0, -7.0, -2.876765648822366, -3.3765364047914934, -3.677570455852376, -3.4944792655103964, -4.276913480580438, -3.417260269499742, -2.872636080463341, -4.167445339198895, -2.7803603084010486, -3.3870930757416673, -2.6797147174141145, -3.1985024450926027, -3.914494268631718, -3.843498548954459, -2.5849265976686113, -3.821071148157465, -3.4879780258698023, -2.853933601745028, -4.201615582313942, -3.3301092545928297, -7.0, -3.865441910416628, -3.534062386452289, -2.5494491496233778, -3.349107468372933, -3.724849087629386, -4.403772331808551, -3.6124871640450116, -2.6900778885780894, -2.5880623578472397, -3.5129288625798827, -4.119816545937216, -3.941312625360662, -3.83968749733336, -3.373157297798375, -3.9361365870214917, -7.0, -3.2460059040760294, -3.079543007402906, -3.3639596522893145, -3.8020892578817325, -3.091725562883123, -2.99768710765127, -3.4095273670122404, -3.9860099318532614, -3.30838379618209, -7.0, -3.3906334089447348, -2.9988403344727614, -3.0137322976039687, -1.932780239030511, -3.5090814946225235, -3.3628429259206896, -2.926406762728239, -3.557734381817368, -3.7702627381705933, -7.0, -3.754921409665169, -2.547911383432036, -3.1454184040139723, -2.8986566322275165, -2.9715625841386353, -3.285214082720241, -3.728379994487447, -7.0, -7.0, -3.7748817658187965, -3.070434676288165, -3.1441459284677373, -3.9990384774352434, -3.5335687131945797, -2.382745351375009, -3.752893154884594, -2.8598385304010416, -2.5815216458876193, -2.686099771995916, -2.5448786068287874, -3.2912275344074153, -3.0614901766248153, -2.6495834057326055, -3.440509463541816, -7.0, -3.204414716161362, -2.7799889851678676, -3.9430986230054854, -2.808377404094648, -3.776701183988411, -3.957271979992943, -2.903051889313784, -3.219619449979454, -3.761852694466383, -7.0, -7.0, -2.2340722388625216, -2.866456128235913, -2.2374371011262446, -3.0251302389975376, -2.2295678466428646, -2.985501320180887, -2.4658164336527726, -1.841770975803067, -2.7324512023839813, -3.252731702726023, -7.0, -2.0097148594798413, -3.278219929091885, -1.5224876590191092, -2.2377618169642237, -2.638916922653306, -2.4987299594058783, -2.8353852017492147, -1.5391521640319417, -2.0966843468653313, -2.3231833228365364, -3.1806275769070043, -2.7445276734725668, -2.1258786900701554, -2.1647775936979032, -2.8416097121684354, -2.7238659644435037, -7.0, -1.9979666349340235, -2.607071878521178, -3.062506775208683, -2.779059969890307, -2.3745420600585905, -2.09671105393827, -3.747800090864369, -2.2308929853043895, -2.5246019076142345, -2.1637298142593724, -2.649443040175375, -3.7444494574467986, -2.598404238298366, -2.1039573855243545, -2.8481121075964095, -2.9841521129041246, -2.836208994571047, -2.7858473143474205, -1.6815593851971848, -2.6339010916591, -2.5131541577360896, -2.8096270418940494, -2.707499207149024, -2.614338797449572, -2.789727567230209, -1.1591758179606904, -3.0539998606930654, -2.502022277744067, -2.6687481953707617, -2.900609852978509, -2.626887596279581, -2.3307760174955603, -2.6822203114510064, -2.271403826616148, -2.7468137707747053, -2.291803437457964, -2.370033892087685, -1.743946161887734, -3.8303319934519617, -3.1840522923918644, -3.0858611737884503, -7.0, -7.0, -1.9805621414192482, -2.5185139398778875, -2.2427707082765576, -2.31287786353935, -7.0, -2.361689298861358, -2.5986628615845535, -2.711479158948072, -3.3952681336981585, -2.3433913163594253, -2.5820092216061594, -2.9828055470486436, -2.7015679850559273, -1.7975996627959798, -1.8596286553271737, -2.067124016518159, -2.634544441219856, -7.0, -3.2702905531667605, -2.8669709739278395, -1.9118231942831303, -2.718709237010724, -2.7548395882408863, -2.175290653648693, -2.655438589970129, -2.1224851942745757, -2.2095477063625797, -2.1902865038852304, -2.555039457190857, -2.526051950563682, -3.0621430812277928, -2.843777640858486, -2.7482336437786707, -2.510768355278083, -3.3006824210300603, -7.0, -2.760924848409133, -7.0, -1.4827285394930332, -3.494432898726399, -2.59659709562646, -3.2728468287897403, -3.448242412634439, -3.4572004127937683, -3.151676230847048, -2.7611005389581424, -2.5666085378764327, -2.0280933459471977, -3.5533367823768884, -3.079398339019855, -2.882382216314445, -3.2863816107479344, -3.774224904868919, -3.4927603890268375, -1.946393600352454, -2.5998830720736876, -1.9846251384330458, -1.9667343903374412, -1.819094122470168, -1.9716615699299038, -2.5831278976760292, -3.749890841271422, -2.8526324579115143, -3.003245054813147, -3.444591225642957, -2.141335623717553, -3.491991664182002, -3.313234291694724, -1.7442929831226763, -1.9351788082734205, -1.7276816577351548, -3.28004693749461, -7.0, -2.2413804341476116, -7.0, -1.8839152129132857, -2.9856830355921042, -3.801403710017355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.505838874143429, -7.0, -7.0, -7.0, -7.0, -3.7363699391106717, -7.0, -7.0, -7.0, -7.0, -7.0, -3.436520434633616, -7.0, -7.0, -2.669967369908504, -4.367822816121378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2641564367458855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.647089428716555, -7.0, -7.0, -7.0, -7.0, -2.7798368978412693, -3.8294860310311734, -7.0, -3.6063813651106047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5743785644130823, -3.6732820814542, -7.0, -7.0, -7.0, -7.0, -7.0, -3.638289535414257, -7.0, -7.0, -5.125611371897464, -7.0, -3.3664229572259727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.276270274078892, -7.0, -7.0, -7.0, -7.0, -7.0, -3.26528962586083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3348556896172914, -4.3792148413786265, -7.0, -7.0, -7.0, -7.0, -2.703004620444392, -1.592980333476044, -2.0709609158009337, -7.0, -3.5515719736742537, -7.0, -7.0, -7.0, -4.4538532325881866, -7.0, -7.0, -7.0, -4.994202733783717, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6987310766598367, -7.0, -7.0, -7.0, -4.369030221809153, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7302976620971497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8612632080683564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9258275746247424, -7.0, -7.0, -7.0, -7.0, -3.9917729345886532, -7.0, -3.381295623003826, -7.0, -7.0, -3.080987046910887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.231032454528749, -7.0, -2.6459510217186626, -7.0, -7.0, -7.0, -2.968015713993642, -3.7467898321526123, -7.0, -7.0, -7.0, -4.357382103296111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1334111559110225, -4.867909218171997, -7.0, -7.0, -7.0, -2.8379039445929424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7385774307676627, -7.0, -7.0, -7.0, -7.0, -3.035029282202368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3163059023458565, -7.0, -3.580265878156548, -7.0, -3.933217246191068, -7.0, -7.0, -7.0, -2.8468229248922086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3993339455805467, -7.0, -7.0, -4.286950215787549, -7.0, -7.0, -7.0, -3.28668096935493, -3.9578944872128985, -7.0, -7.0, -7.0, -7.0, -3.370142847051102, -4.925340458977568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.702775077901044, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.0971762986377085, -7.0, -7.0, -4.319838638494149, -7.0, -7.0, -7.0, -7.0, -7.0, -3.786964259435733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2026789942277265, -7.0, -7.0, -3.554026370894214, -4.471122948998581, -4.271353622102485, -3.6277753752293034, -4.71295259213018, -4.072654217333034, -3.4025479509123913, -7.0, -3.9773520102903825, -3.978317496746751, -7.0, -7.0, -4.719124035974351, -4.219693653657075, -3.2387302111440825, -7.0, -4.372856792535229, -3.692126038140325, -4.0326590460399245, -4.312959735882106, -7.0, -7.0, -7.0, -3.8333128902027824, -3.8047526021504607, -7.0, -4.658497915660603, -7.0, -7.0, -3.6603764938868153, -7.0, -4.677488326683328, -7.0, -4.193597610298094, -3.292477593667784, -7.0, -7.0, -4.4531194977640025, -3.884228769632604, -4.313297626086869, -3.083860800866573, -7.0, -4.024735619217597, -3.887561040930009, -7.0, -4.329214765805725, -7.0, -4.758427391461484, -3.993920958801287, -3.4974825373673704, -2.96375635559063, -4.661822147187612, -4.379767672984586, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3735556066389325, -3.3680078052211746, -3.0870712059065353, -4.088601155118618, -4.4465767030731165, -7.0, -7.0, -7.0, -7.0, -4.353574851673284, -7.0, -7.0, -3.378579576115775, -7.0, -7.0, -4.322488060518078, -4.432760907742915, -4.481929682430211, -2.8271537957574657, -7.0, -7.0, -4.053248614045589, -7.0, -7.0, -4.466600736296882, -4.177916281379359, -7.0, -4.745537349984803, -7.0, -7.0, -4.608322744745895, -3.8188634466898144, -7.0, -7.0, -7.0, -2.4712917110589387, -7.0, -2.900160378015098, -7.0, -3.2811470420244278, -2.3566631199368167, -2.6830470382388496, -3.0199664335597736, -2.4338586921311918, -7.0, -7.0, -2.970036776622557, -7.0, -2.466108443220432, -3.1394592753662236, -2.036540182363813, -2.154525408238757, -2.870956339503118, -1.8369567370595505, -2.665299499499897, -2.0467434035423264, -2.9740509027928774, -2.778078861937455, -2.383815365980431, -1.72222246396973, -2.562768543016519, -7.0, -2.3384564936046046, -2.7562979384939723, -2.144574207609616, -7.0, -3.751499055612203, -3.242891220100266, -3.031422639278778, -7.0, -2.328065806834115, -3.938219417812743, -1.4464007609116358, -3.4679039465228003, -7.0, -7.0, -3.347988277492058, -7.0, -2.3450468246483553, -2.6864575104691117, -7.0, -2.032508873155982, -2.4871383754771865, -2.1986570869544226, -7.0, -2.1557696815169702, -3.278753600952829, -2.9069632186628955, -2.675167089663394, -2.734799829588847, -3.5444401373176926, -3.518777068926775, -7.0, -3.032060581504032, -2.3607826898732798, -2.824776462475546, -2.7823072101548014, -3.3332456989619628, -3.0962849601241924, -7.0, -2.4173055832445254, -2.91301868374796, -2.99563519459755, -3.3724824033627847, -7.0, -1.9805621414192482, -7.0, -7.0, -7.0, -2.2206890840891176, -7.0, -7.0, -3.308178066726313, -3.017450729510536, -3.3675422735205767, -3.191644449765504, -2.5622928644564746, -3.260230441084052, -2.8555191556678, -2.7095526127800826, -2.1264370197877, -1.8695250628572273, -1.8224949852787509, -7.0, -7.0, -3.5818927949386175, -2.379758615842701, -2.591064607026499, -2.6766936096248664, -2.9725370989719093, -2.4244732731953342, -2.426390757900455, -3.3703280077795106, -2.3167326001184234, -3.4490153163477864, -2.499228724283611, -3.256717745977487, -7.0, -7.0, -3.668012971641832, -2.988112840268352, -7.0, -7.0, -7.0, -2.694885864251942, -7.0, -2.437750562820388, -7.0, -2.6893088591236203, -2.782472624166286, -7.0, -2.1152775913959014, -2.802294711397464, -1.9470723905090646, -3.3066394410242617, -7.0, -2.0859146287065933, -7.0, -7.0, -7.0, -2.0573807905423553, -7.0, -7.0, -3.5066403055665023, -2.7211358372887746, -2.9568404901592333, -3.0128372247051725, -7.0, -3.059184617631371, -7.0, -2.645422269349092, -3.384477484490442, -7.0, -7.0, -2.926213785839081, -2.253176407377487, -2.2925968281271185, -7.0, -7.0, -7.0, -7.0, -2.4775071227876087, -7.0, -7.0, -7.0, -3.329397879361043, -7.0, -7.0, -7.0, -3.3083509485867255, -2.716559774821619, -3.15060295179301, -3.3098430047160705, -7.0, -3.536125759194601, -7.0, -7.0, -7.0, -3.056218581272306, -3.133489777256199, -3.131779009369187, -7.0, -7.0, -7.0, -7.0, -3.0864534992789943, -3.181128699747295, -7.0, -3.781324455666988, -3.340154094072924, -7.0, -3.334252642334231, -7.0, -7.0, -7.0, -7.0, -3.66985708763779, -7.0, -7.0, -7.0, -3.351216345339342, -3.055250878848215, -3.320146286111054, -3.3479151865016914, -7.0, -7.0, -7.0, -3.6684635732806234, -7.0, -7.0, -2.9485352161613654, -2.8270460170047342, -2.047236679256487, -7.0, -7.0, -7.0, -2.9590413923210934, -3.499687082618404, -2.8734104429078826, -3.1444704211395553, -2.4530865803521715, -7.0, -7.0, -3.3895204658463776, -7.0, -7.0, -7.0, -7.0, -7.0, -2.776701183988411, -2.4495641011080975, -3.3923158260022936, -7.0, -7.0, -2.1412257370365086, -7.0, -3.1337943006045124, -2.754271868683459, -7.0, -7.0, -3.95379511660877, -7.0, -3.2638726768652235, -7.0, -7.0, -1.882764132185854, -3.238547887681328, -3.33665982345442, -7.0, -2.7750380149595006, -3.3820170425748683, -3.353916230920363, -2.9909600996821992, -3.208306962353663, -7.0, -3.0236537634194707, -3.2092468487533736, -2.6412169684899625, -7.0, -7.0, -3.608312042697327, -3.5039268041935103, -2.978864984347657, -2.873320601815399, -7.0, -2.986071597919377, -7.0, -7.0, -7.0, -3.188406132930918, -7.0, -3.2779528470388093, -3.159717546180216, -2.287261034195944, -2.799616204481499, -7.0, -7.0, -3.433449793761596, -7.0, -3.409070437559028, -7.0, -7.0, -3.552303109338354, -7.0, -3.2779910116754087, -7.0, -3.610234175334389, -3.618757636846373, -7.0, -3.6195107208384987, -7.0, -4.301095134950942, -7.0, -3.6226284261293253, -7.0, -3.292477593667784, -7.0, -1.763133428232782, -2.639486489268586, -7.0, -7.0, -3.216799061647665, -7.0, -7.0, -7.0, -7.0, -7.0, -2.877551304634999, -2.652375288296997, -2.9901445333695924, -3.192428055331207, -7.0, -3.953131225183445, -7.0, -7.0, -3.4449811120879446, -4.106666761969916, -3.306532247519607, -7.0, -3.3273589343863303, -3.386320573894046, -3.236309282228153, -7.0, -7.0, -7.0, -3.1609184995397808, -3.295567099962479, -3.16345955176999, -2.789298611159441, -3.2899232395240046, -3.2764618041732443, -3.5121505369220305, -2.9092155396260058, -2.8887409606828927, -3.358315640082196, -3.648134265580902, -7.0, -7.0, -7.0, -3.091315159697223, -3.0299921753778474, -7.0, -7.0, -3.6891756195208254, -7.0, -3.407900540142635, -7.0, -3.2208922492195193, -3.2384043062825043, -7.0, -3.312388949370592, -2.718750734739665, -7.0, -3.575303333422399, -3.1791207296092994, -2.8125122842899826, -7.0, -3.0033168924581544, -3.7539658658651605, -7.0, -7.0, -7.0, -3.4122084658816805, -2.623766000133931, -3.8917604014566716, -7.0, -2.6159171891478232, -3.2626883443016963, -3.250420002308894, -7.0, -2.576916955965207, -7.0, -3.056142262059052, -2.476302246967727, -2.557988148224913, -7.0, -2.8820689444361483, -7.0, -2.725350033521565, -7.0, -7.0, -7.0, -7.0, -7.0, -3.347720217034038, -7.0, -3.063520999689991, -3.6793824659429104, -2.8715729355458786, -3.475293376659103, -3.627587447405682, -7.0, -3.036628895362161, -3.3619166186686433, -7.0, -3.2678754193188975, -2.992995098431342, -3.5482665451707454, -7.0, -3.1854004831904525, -7.0, -7.0, -7.0, -3.3184807251745174, -3.2571984261393445, -7.0, -2.7183632683141012, -3.2007528138238346, -3.2591158441850663, -3.2688119037397803, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3872118003137306, -2.88923164935963, -3.514282047860378, -3.269688027663909, -3.2975416678181597, -7.0, -7.0, -7.0, -1.672446796026297, -7.0, -2.869097204551567, -2.9131071077494677, -3.7225434350906466, -3.106870544478654, -7.0, -7.0, -3.4474681309497557, -3.0598788326016764, -2.5286264657570126, -3.216759516219574, -3.919444210465237, -2.4702634469650784, -3.3823773034681137, -7.0, -7.0, -3.152390279480791, -2.655031662965263, -7.0, -3.0236639181977933, -2.9769610160114275, -7.0, -3.490239485246287, -7.0, -3.252610340567373, -3.295347148333618, -3.1411360901207392, -3.615107987443194, -3.4766867429456445, -3.545062759071212, -2.707238888404291, -7.0, -2.7833359701684657, -3.28668096935493, -7.0, -2.942008053022313, -3.516403148447403, -3.7169627421024516, -2.962179852908768, -3.2727695865517594, -2.8217754671834636, -2.8965262174895554, -3.089905111439398, -4.1858002648308315, -2.7676010680503356, -7.0, -7.0, -7.0, -3.5490032620257876, -2.7876178846259387, -3.3406423775607053, -7.0, -2.9953060589380653, -7.0, -3.54282542695918, -3.040404528914159, -3.3283116334124774, -3.383456296524753, -7.0, -2.840106094456758, -3.383456296524753, -4.263274992597102, -3.5080244315589613, -4.018698765367438, -7.0, -3.1807564923035585, -3.505639106593364, -3.1670217957902564, -7.0, -2.9334872878487053, -7.0, -2.984347257585864, -3.0276407874584117, -3.5218569521701695, -3.2421685899736654, -7.0, -7.0, -2.9863237770507656, -7.0, -7.0, -2.7876375568784235, -3.4625477288026643, -2.732393759822968, -3.0023755306572752, -7.0, -7.0, -7.0, -4.480911977846637, -7.0, -7.0, -7.0, -3.7956541254765086, -7.0, -3.760497875226527, -3.6327046829529652, -7.0, -7.0, -7.0, -4.73016834043107, -4.702697579901669, -4.596718021556566, -7.0, -4.0840308334294795, -4.3275939007678375, -7.0, -4.340563083333371, -7.0, -4.691424546532714, -7.0, -4.248194037940857, -4.149496233465742, -7.0, -7.0, -7.0, -7.0, -3.742696572451403, -7.0, -4.212471712342394, -3.7487305560984945, -4.229579462665645, -7.0, -3.8288853618404413, -7.0, -7.0, -7.0, -3.165387610350267, -2.561442140419698, -4.080761731999528, -3.3718728705973113, -3.2581581933407944, -7.0, -3.878636673026517, -3.2586372827240764, -3.475237729405027, -2.747100931364986, -2.4737302041688842, -3.462203270516635, -3.521786984796864, -3.135944978136096, -3.475525915039281, -2.8892714106403634, -3.1248301494138593, -3.2935835134961167, -3.8807564445102103, -3.9204711793184543, -3.302042169044836, -7.0, -3.4533183400470375, -3.352794959068467, -4.327356379705393, -3.3207692283386865, -3.017450729510536, -7.0, -3.042248063558637, -3.8683504996479683, -4.629557397189861, -3.278753600952829, -3.951361807517263, -7.0, -2.9684051110267253, -3.307343198044698, -3.449807869542202, -2.952550293898202, -2.9057713571186508, -3.190499779633489, -3.197642657119169, -3.2048657855557696, -7.0, -2.9079045970364654, -3.213840180147667, -3.2209792909037276, -3.4926246022881955, -7.0, -2.9440712135860867, -3.719289844693328, -3.8475315308233258, -7.0, -7.0, -7.0, -7.0, -7.0, -2.381491717770132, -1.469695084958144, -1.8303389761662683, -7.0, -3.2149762347220667, -2.4851795276536532, -3.103233406386929, -2.321701969500738, -2.1617956679336436, -2.0719454589070714, -3.2830749747354715, -2.208055890576209, -1.4472427799973624, -2.0402631800172553, -7.0, -7.0, -2.4231197904747805, -2.376284896196881, -7.0, -7.0, -2.8661691476337707, -7.0, -2.269512944217916, -2.8029104894190398, -1.54669807392241, -7.0, -2.4099331233312946, -2.9802306913910317, -2.8239087409443187, -4.009185223506869, -2.842813720315582, -3.4354981435439496, -7.0, -3.3157604906657347, -1.5033581233797837, -7.0, -1.2698720136735946, -7.0, -1.4516779142260183, -1.5863065297899643, -7.0, -7.0, -3.5781806096277777, -1.268798910830716, -3.7907776013376937, -3.055378331375, -2.53585649562398, -1.4670743944328781, -3.373463721632369, -1.2659149386601007, -2.349654097721151, -3.1167354288396383, -7.0, -1.2708026832045765, -1.2954129399365204, -7.0, -3.18613667169178, -7.0, -7.0, -7.0, -1.5145871999087717, -2.112152582492313, -1.5863729441136503, -3.024485667699167, -3.4753805931433615, -7.0, -3.925621454790829, -2.353723937588949, -2.5185139398778875, -7.0, -7.0, -1.6566918418331302, -7.0, -3.2600713879850747, -1.313578498288837, -2.3306524622707823, -2.001044267268093, -3.5658478186735176, -1.9225112682144678, -1.7011887621408714, -2.6555865901357856, -2.442009159140952, -1.8578471069651707, -3.4743619760326307, -2.677910974071308, -7.0, -3.2776092143040914, -3.2591158441850663, -7.0, -7.0, -1.7751396102537014, -3.1466447454142683, -2.774417984050812, -3.5427009694481106, -3.158609180248377, -2.8807302492686424, -3.2973227142053023, -1.294075663213465, -7.0, -1.3553377591547957, -7.0, -1.326352314905222, -1.5256197523772965, -7.0, -2.9642596301968487, -1.8655833439845002, -2.5761767511960896, -1.9449064485366196, -1.87614564468392, -7.0, -7.0, -3.2643455070500926, -3.291146761731886, -2.5779511277297553, -2.8249931222365388, -3.2846562827885157, -3.4867137759824858, -3.5282737771670436, -2.6483600109809315, -7.0, -7.0, -7.0, -2.910268571619067, -3.0557604646877348, -2.3229081045244717, -2.151705398682238, -2.547805461698299, -2.5513889972730204, -7.0, -2.898542359241223, -2.9642596301968487, -3.0778219507849, -3.05595140532915, -7.0, -2.775153508489039, -2.538896749427476, -2.901821443893775, -2.238696453314147, -2.762571396673986, -2.4144162029529017, -3.2884728005997825, -3.300812794118117, -2.603264692466333, -2.9738203243526837, -2.5912872650584995, -2.433842537445903, -7.0, -3.250907699700856, -3.8013350956745464, -7.0, -3.7806053058389697, -7.0, -3.0154994673235294, -3.086241154766945, -3.067876424980735, -7.0, -3.5128844243846222, -2.6967220860533225, -3.430478187932044, -7.0, -7.0, -2.8356905714924254, -2.439632448459834, -3.060383020128225, -7.0, -7.0, -3.4899584794248346, -3.7844033017530085, -2.4809167613786745, -3.521889599753865, -7.0, -2.930099638207734, -2.702762185550534, -7.0, -3.8029788553352617, -7.0, -2.805047523584979, -3.2415464805965484, -7.0, -3.365988720422906, -2.9846558789107185, -7.0, -7.0, -3.507653513464988, -3.278696453182248, -3.798236176367936, -2.1245653543272263, -3.0832158621559973, -3.419184452746418, -3.805636766305935, -3.027452297858026, -7.0, -3.3345877719765284, -2.7741799549910717, -3.360593413565249, -1.767133369022842, -7.0, -3.8298181874388773, -7.0, -2.233630580164463, -7.0, -2.17589311462405, -2.6663099352901103, -1.9312165724204984, -2.9926639550817846, -3.809425028797034, -3.345177616542704, -2.6901439407065344, -3.5241363765925686, -7.0, -7.0, -3.7896512087934098, -2.9731278535996988, -2.0106048316835032, -2.513837983934262, -3.792181496149679, -7.0, -1.8773164864644205, -7.0, -2.864431967389915, -2.88024177589548, -7.0, -3.316075234838397, -2.9354478045109147, -7.0, -2.718224803628757, -7.0, -7.0, -0.8657929080680717, -2.6784045552989557, -2.899752125747131, -7.0, -2.375428443512786, -3.5186455243303114, -2.8978269506965932, -3.1133224880382615, -2.966904013129798, -7.0, -2.363953901817385, -2.6764047859729647, -2.150619399537976, -3.7863964613723042, -7.0, -3.6154239528859438, -2.7529934654248027, -2.6978829086948046, -2.827415432854252, -3.317854489331469, -2.514126978289329, -7.0, -3.78161178249315, -7.0, -1.8030872037155392, -3.4832305869021027, -2.7872424278303134, -2.8492350913147226, -1.8934956267411402, -2.2367816506792306, -7.0, -7.0, -3.139816140610576, -3.546851001781394, -2.840412485349145, -3.8283376000590046, -7.0, -2.8889092592635315, -2.7023347819567896, -2.8801097112808387, -3.5282737771670436, -2.84825283857935, -2.9191966786934156, -7.0, -3.398495550138137, -7.0, -3.5405755469905653, -7.0, -2.6666219658257964, -3.2054750367408906, -7.0, -3.8191489428071344, -1.2009914311738055, -2.532703432370127, -7.0, -7.0, -3.230463948609012, -7.0, -7.0, -7.0, -3.4886916983169405, -7.0, -2.6538286674168488, -2.6762959040275653, -2.539758208062269, -2.9033404692531812, -3.82020145948564, -3.5173608721141245, -7.0, -3.4959603948817053, -3.2414219517119953, -7.0, -2.8583956413487304, -7.0, -7.0, -3.821382499747299, -2.80591061065459, -7.0, -3.7777891874348675, -3.8756399370041685, -2.3152910364949637, -3.7902147702439795, -2.7041505168397992, -3.862131379313037, -3.4308809464528913, -2.821404340602337, -3.570776368794748, -2.6543093434941327, -3.5619357633137816, -2.855990008555759, -2.97994313447669, -3.503994848765824, -7.0, -7.0, -3.8237349883987313, -3.1025023091854522, -7.0, -3.7831886910752575, -2.681147629339466, -7.0, -3.4888678612536452, -7.0, -2.2828971210332805, -2.2956666962796732, -7.0, -2.734968177098234, -1.9887466584404367, -3.1517987225928614, -3.0548865225351345, -3.2559355042329616, -2.7916321778679727, -3.841984804590114, -2.9033914757106833, -2.691567700438057, -3.3317646126401494, -3.4072634020530512, -7.0, -2.5065350967489293, -2.6469224244915, -2.8160518172305298, -7.0, -2.696556075836984, -7.0, -3.0989896394011773, -3.813580988568192, -2.857935264719429, -3.500167838795168, -7.0, -2.8691143269793753, -3.4161965568964496, -7.0, -2.1907709896295726, -4.452001227726593, -2.8246737964299387, -7.0, -3.7801011914679115, -3.8016780590358934, -3.1831274287013995, -7.0, -3.330210784571528, -7.0, -3.3362595520141936, -3.183712614093036, -2.306844433166965, -3.1352008241234657, -3.2414865112767166, -7.0, -3.104760166638525, -2.606448546560488, -3.36285930295868, -7.0, -3.7898626300463816, -7.0, -2.630308201703268, -3.5598468007393165, -7.0, -7.0, -3.7900035203904894, -3.7976829349148993, -7.0, -7.0, -3.263340126851339, -3.0392694469066375, -7.0, -7.0, -7.0, -7.0, -3.520155886944864, -3.8169038393756605, -7.0, -3.344326764297868, -3.5400373437681525, -2.792391689498254, -2.684134415450565, -2.525260820213098, -3.8677031332700977, -7.0, -7.0, -1.202763479095864, -3.883320678382975, -2.1911946670584164, -3.3457003905834424, -3.5515338599475053, -3.130076332517164, -3.1952768094473876, -3.800717078282385, -2.844138148029867, -2.6280350619091335, -1.7772683830244533, -2.6331047079116674, -2.9499125186171895, -1.6173816356861317, -2.141749896293137, -3.311895072073712, -2.6989700043360187, -2.2794284147221058, -2.382917135087531, -7.0, -7.0, -2.943803556324682, -7.0, -3.0837414400078025, -7.0, -2.9867717342662448, -3.00142462840203, -3.8428587624452937, -3.442584279829459, -3.254366781142282, -2.975376286330473, -2.0365035188081575, -3.792251571903264, -3.140420742400279, -3.78738962135211, -3.3484346775706944, -2.7187783976895714, -2.8727388274726686, -2.885093274841376, -2.6195405190807763, -3.4657545198338777, -3.3988077302032647, -2.9085824926714285, -2.552225622971311, -3.4643456035121996, -2.2520435349731076, -7.0, -7.0, -7.0, -3.0972958810760023, -2.4666879184866843, -7.0, -3.8167714123333463, -2.5668658433400444, -3.4972752863579952, -2.8845688149183335, -3.1060548400937864, -2.149510376031406, -3.8203328448994096, -3.35869609957381, -2.45430670073035, -3.120837060254737, -3.474266708363068, -2.4872404509036055, -3.351804931431722, -7.0, -2.359984200595567, -3.4969652121341888, -2.8572193841811426, -7.0, -3.0519239160461065, -3.31694832926197, -2.5551912165114072, -2.8103818884116567, -2.9204043061400116, -3.040093500592591, -3.7844033017530085, -7.0, -2.729596708656171, -3.196728722623287, -3.8173008783933216, -3.8230175234460493, -3.154293521704834, -3.3260626338156793, -2.2024436883925915, -7.0, -3.7811088357294667, -3.4764258270580113, -3.8567020439662394, -7.0, -3.9906495883188544, -3.9790093452191155, -3.2342641243787895, -7.0, -3.2332207210598045, -2.9057264347043352, -3.3992698070995253, -7.0, -7.0, -4.063783560597355, -3.94215692846749, -2.854007215310917, -3.827837567359185, -3.6805744785938734, -2.870247796549128, -4.212826586101233, -3.814480666721017, -7.0, -3.920537239907697, -3.9096629851540183, -3.5976513155803156, -3.262094964674063, -7.0, -4.708369903659491, -4.320354032817672, -7.0, -2.925673663220366, -4.300443302006029, -3.683783616260912, -3.580044747846509, -3.422138240878906, -3.0965624383741357, -3.94647682848594, -3.816373888752362, -3.6853321958295053, -3.7172334927773156, -2.663047513975216, -3.130205069581069, -3.4400718197081073, -2.08724344131914, -2.5071974505844183, -2.7988663582008604, -3.0863921912039465, -3.5922878159521305, -2.867950913934925, -2.6416440555197305, -3.0931714434486546, -3.5208894705351628, -2.8973275362164874, -2.6328979269485404, -7.0, -2.5194832735069945, -2.579068708419333, -7.0, -2.9916321136550907, -3.185765752903851, -3.4067955726682504, -7.0, -2.2375759475971955, -2.739829921144155, -3.918668585682132, -3.7984434603501875, -3.5418287667813124, -3.8042076050820413, -2.770561112325769, -3.762566037627078, -3.9095376435406557, -3.2427401446056274, -3.2295243251624277, -7.0, -3.1931900978616974, -3.0815606548059806, -3.0207886311085175, -3.379169496092038, -2.606838988475993, -3.0354297381845483, -2.840208966400272, -2.566196905821079, -2.917899189424106, -2.436959672719197, -3.0126467625667734, -3.1175553648789545, -3.49469198112742, -7.0, -2.9759370424831104, -2.7933183562093538, -3.1475389218886427, -3.49087108434559, -7.0, -7.0, -7.0, -7.0, -1.746521162964555, -1.3925294659911405, -1.1361883244479989, -7.0, -3.3963737275365067, -2.1309095650419336, -3.2038484637462346, -2.3073225398823136, -2.4923412532549745, -1.890301229948437, -3.485082288055845, -2.000863828451263, -0.9118308708506876, -2.3971374932322815, -7.0, -3.2771964957959563, -2.736737884043391, -2.3609546876901435, -7.0, -3.811909980420099, -1.8906329778663251, -7.0, -2.497061352238562, -2.307496037913213, -1.5777379287652658, -7.0, -2.2457067039669436, -7.0, -3.491081413423187, -3.8754953408710184, -2.0828023643522995, -2.8800206450425603, -7.0, -3.9208534961212593, -1.4432138730134176, -7.0, -1.353829848797285, -7.0, -1.7000386892774444, -1.2803158130038816, -7.0, -3.491991664182002, -3.9020028913507296, -1.5619728950307412, -3.0150662140111493, -2.6327946083041307, -2.6574741619879405, -1.680388070759728, -3.816705183666515, -1.3566800444024676, -1.2769941764972297, -3.1221544171577533, -7.0, -1.4685934593401977, -1.3974630822209442, -7.0, -2.4072790622610785, -7.0, -7.0, -4.128463891064761, -2.079927407371031, -1.6254145743535335, -1.3676237078845837, -2.3503403330293566, -2.813641631517659, -7.0, -4.101059354908116, -3.208441356438567, -2.2427707082765576, -7.0, -1.6566918418331302, -7.0, -2.4654448182719384, -2.933197951074577, -0.6597265191984446, -1.4238266369036738, -1.9919108308906996, -2.748630958693654, -1.9390025428825879, -2.4199041419919367, -2.5480127619342015, -2.498749013677326, -1.7624394624489559, -2.750079631382911, -3.149465450995452, -7.0, -3.4833733060890273, -3.7788744720027396, -3.609014760011556, -7.0, -1.8186790056099098, -2.969364133578134, -2.1252408467371016, -2.8051042162920505, -2.8863388474014275, -2.5952285980591694, -3.1026480556594813, -1.4447695028784557, -7.0, -1.77650584730532, -7.0, -1.5071439664174373, -1.7327912834039527, -4.017700971224117, -3.7808931086870787, -1.8460701601334177, -1.8950974022929163, -1.6253034758644873, -2.5200903281128424, -7.0, -7.0, -3.7804613328617176, -7.0, -3.784902449886655, -3.7926017811649664, -2.693800204297339, -7.0, -2.7637158918047717, -2.7273378880330803, -3.8150461760646306, -3.3164596126484933, -3.326199268859092, -3.822037248072585, -3.333514445555875, -1.9300848514495261, -2.7426647161300997, -2.2778717360486387, -3.0543448887676306, -4.0033743540197495, -3.3403780071480957, -3.7808931086870787, -2.503742058024168, -2.906940799413896, -3.7770641547424293, -2.5019205716318917, -2.917308535712038, -2.8636532477224708, -2.6060880880154507, -3.3144992279731516, -2.606327612467192, -3.0090966299483104, -3.1894201246920386, -2.5104332945836414, -3.08429022853693, -2.6396163943940087, -2.679609571779756, -7.0, -3.7764105888073423, -7.0, -7.0, -7.0, -7.0, -3.1370374547895126, -7.0, -7.0, -7.0, -7.0, -4.252399899119838, -7.0, -7.0, -7.0, -4.215848976111454, -3.5322701446090563, -7.0, -7.0, -7.0, -7.0, -3.089905111439398, -2.580209546390239, -7.0, -7.0, -3.730862992046494, -4.054186930134149, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.092077028628151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.666567896592164, -7.0, -7.0, -3.461798557525109, -7.0, -3.00987563371216, -7.0, -7.0, -7.0, -7.0, -3.0960405542954277, -3.7983743766815614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3460594330525737, -3.762903528499057, -7.0, -7.0, -3.5141491344754376, -7.0, -7.0, -2.855778668362647, -7.0, -7.0, -4.650702451094931, -7.0, -7.0, -7.0, -7.0, -3.9172954009456893, -3.447623097760286, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1500396976551133, -7.0, -7.0, -3.5599702588597113, -3.623042434246382, -3.7484206224675685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.00650882777529, -7.0, -3.495821753385906, -7.0, -3.7000110623221123, -4.391482044225046, -7.0, -7.0, -7.0, -7.0, -3.075094879174926, -7.0, -7.0, -7.0, -7.0, -3.7016543173257483, -7.0, -7.0, -3.555759293089335, -7.0, -7.0, -7.0, -4.997211582832505, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2011238972073794, -7.0, -7.0, -7.0, -3.5362697788972914, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058274146685951, -7.0, -7.0, -2.9000548550626433, -7.0, -3.9198100201701958, -7.0, -7.0, -7.0, -4.083538451230139, -7.0, -7.0, -7.0, -7.0, -4.550986177622661, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.991010555927018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9598043165083383, -7.0, -3.819785143258096, -7.0, -7.0, -3.7984664857978987, -7.0, -3.740362689494244, -3.66162340922923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3223571441183184, -7.0, -3.810434155922673, -7.0, -7.0, -7.0, -3.2081725266671217, -2.716420733846555, -2.6929937147769896, -7.0, -7.0, -3.5249521970606112, -3.5947239464097467, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.455575688084891, -3.8939407273161857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.414427680794785, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2668586105221804, -7.0, -3.831613855309099, -7.0, -7.0, -7.0, -7.0, -3.427080188436359, -3.445136968713304, -2.9742253132466328, -7.0, -3.3551098872819316, -7.0, -7.0, -7.0, -4.023293623036605, -3.794766797940821, -3.3919050068671566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.534026106056135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4649364291217326, -7.0, -7.0, -7.0, -7.0, -3.2043051569961905, -7.0, -7.0, -3.6029277128591892, -3.104487111312395, -7.0, -7.0, -3.4184670209466006, -3.688419822002711, -7.0, -7.0, -7.0, -7.0, -7.0, -3.879378127844931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.184123354239671, -7.0, -7.0, -7.0, -7.0, -3.185825359612962, -7.0, -7.0, -3.300812794118117, -7.0, -7.0, -4.861426869337884, -4.098972350263975, -4.761772912039747, -7.0, -3.840482487213442, -3.9424132054969987, -3.524266268766979, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.035803164245306, -7.0, -7.0, -3.347492641973748, -3.7770423850498562, -4.287017501322102, -3.3916407034923877, -3.417338810319398, -4.0850764114720945, -2.517037463772293, -4.297475993324212, -3.105606683933109, -3.406242032884039, -2.627272730296267, -3.717129377876929, -3.5784345375094544, -3.4954532718481337, -2.6684532822414764, -3.8663661155186397, -4.203014745680014, -3.1127132523362575, -2.8541921384524613, -2.644048599831964, -7.0, -4.3478070778806455, -3.8131137540078983, -3.426798944023706, -2.353978137771715, -3.7422536699065936, -3.7617681419738305, -3.0006238500328752, -3.467608105583633, -3.247518382950562, -3.13746920199865, -3.604325072460819, -3.492540892167152, -3.170341737717802, -2.3780673876278455, -4.10809123558122, -3.9164013036038754, -3.9863088371831394, -2.319434821234563, -3.5799290297453163, -7.0, -4.676858153201195, -4.0686866818845795, -3.9245377177754897, -3.719497016610582, -3.7407770455884624, -7.0, -3.7186123935535487, -7.0, -7.0, -4.151369850247461, -4.66505539251443, -4.08487106917708, -3.3666097103924297, -4.448428035011636, -3.865991800126275, -7.0, -3.8411090844681537, -4.385981427736939, -3.029140179764322, -7.0, -4.149628133631338, -4.011762105452167, -4.861933617810139, -7.0, -7.0, -7.0, -3.657739280815576, -7.0, -5.406598082504823, -7.0, -7.0, -7.0, -7.0, -3.239033439221906, -4.310707470041913, -2.593286067020457, -3.6304787262026363, -7.0, -3.559509455037446, -4.196286748808876, -7.0, -4.1019629894917475, -3.728797638546838, -7.0, -4.348910116361356, -7.0, -2.965107585849056, -4.314551853781383, -3.708697027024642, -7.0, -7.0, -7.0, -2.503109436671369, -2.5629616387073972, -2.1639005948322336, -3.4753805931433615, -2.6704095833237176, -2.015746539892464, -1.9027505618227292, -2.731473644051034, -1.7674413044637363, -7.0, -7.0, -2.3035444126825313, -1.8573324964312685, -2.8515606482504188, -2.983896791326306, -2.042181594515766, -2.8526324579115143, -2.8468008542794783, -1.9193950956616108, -2.244936516611802, -2.3279262688653164, -1.4587090974027928, -2.4616811788749517, -2.37185916734684, -1.8228216453031048, -3.401572845676446, -3.3073890556533043, -7.0, -2.3652489456323726, -2.6183967876034884, -3.127428777851599, -2.85482636272822, -3.0206606640506393, -1.8620810642481713, -3.0622058088197126, -2.4973066943841817, -7.0, -2.4336555609385724, -3.2577985291530305, -7.0, -7.0, -2.4725441322844315, -3.0835026198302673, -1.9770700393537608, -1.7817553746524688, -3.361160995195026, -2.0259480753365513, -2.0233896558066746, -1.237036828856375, -3.307067950661298, -1.6313369446412391, -2.8095597146352675, -2.7365223057290464, -2.3844577343685702, -2.3078524552347384, -2.9223101632143957, -3.1231980750319988, -1.513655821726943, -2.123641887530551, -2.7286242862229995, -2.2826544758187164, -2.338813916630284, -3.151982395457474, -2.853366663945809, -3.2545480771089736, -1.731326577491958, -2.763240757310025, -1.5276573193177572, -3.190611797813605, -7.0, -2.31287786353935, -2.2206890840891176, -7.0, -2.4654448182719384, -7.0, -7.0, -2.9363880603822547, -2.9206951294678225, -2.7819347981137703, -2.5744653452070376, -2.904569910106494, -2.3792450689395857, -2.5563025007672873, -1.5237464668115646, -2.501173415058967, -1.8025625849883842, -1.9729269308656483, -2.10187590011488, -3.0906107078284064, -7.0, -2.501114799780252, -1.9896228285885555, -3.269512944217916, -1.497920176700931, -2.667377219263133, -2.2707564511001275, -2.358742193235699, -2.963157958515926, -1.8243033747578454, -3.2425414282983844, -2.912487761332324, -7.0, -3.0629578340845103, -3.7085908451503435, -2.948738890358178, -1.9151759061138112, -7.0, -3.096736260462469, -7.0, -1.8512933005908019, -7.0, -3.1795517911651876, -3.074084689028244, -2.1098409265242712, -1.2171077688054557, -2.0860037056183818, -1.5369677039323366, -2.0271299739606383, -2.3359135659099737, -2.8302678009336417, -7.0, -1.5899768306734643, -7.0, -7.0, -7.0, -7.0, -2.8963884118460372, -7.0, -3.830396176483469, -2.3941821837763624, -3.115194321434587, -3.2345172835126865, -7.0, -2.4668676203541096, -7.0, -7.0, -3.428620672671939, -7.0, -7.0, -2.9094490469812664, -1.9916169212103128, -3.513217600067939, -7.0, -7.0, -7.0, -7.0, -2.2355284469075487, -7.0, -7.0, -3.0488300865283504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.902832048060113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.031711354754593, -7.0, -7.0, -7.0, -4.872585108926733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.439963935920905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.20786585760749, -3.3951515915045425, -3.888010912245029, -7.0, -7.0, -7.0, -3.3914644118391033, -2.8976270912904414, -7.0, -7.0, -7.0, -7.0, -3.531223374533027, -7.0, -7.0, -2.334453751150931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.992995098431342, -7.0, -7.0, -7.0, -7.0, -2.669316880566112, -7.0, -3.3941013020400446, -7.0, -3.148294097434746, -7.0, -7.0, -7.0, -4.3265201921035406, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6940198963087196, -7.0, -7.0, -7.0, -4.140539466972342, -7.0, -7.0, -7.0, -3.18089014193745, -7.0, -7.0, -7.0, -7.0, -3.89553303948407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.505963518018126, -7.0, -7.0, -3.6872910893851065, -4.752179100840631, -7.0, -7.0, -7.0, -4.992637452702946, -7.0, -7.0, -7.0, -7.0, -7.0, -3.447778009294621, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2370282102444135, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.372684981838931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4298060925892933, -7.0, -7.0, -7.0, -3.694956002249818, -3.7729756674752157, -7.0, -7.0, -3.072249897613515, -3.079904467666721, -3.313234291694724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9363126336621934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.121920785563038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2624510897304293, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.941083884430364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.095518042323151, -7.0, -7.0, -7.0, -3.609658428263034, -7.0, -4.530186886967461, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.40840957846843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.912434633375575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1986570869544226, -3.639436681999548, -3.159115821827769, -7.0, -7.0, -7.0, -7.0, -5.226146688064462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4685688527234655, -7.0, -7.0, -7.0, -7.0, -7.0, -3.495127881242933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021699123385047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.28592843841554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9334872878487053, -7.0, -4.06480977499933, -3.2646997921671455, -3.623352681537992, -7.0, -7.0, -5.234661518215525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.513039938178816, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9996331075055283, -7.0, -7.0, -7.0, -7.0, -7.0, -4.315088273088317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.482716409141232, -7.0, -4.339893461241669, -4.653366902145936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3176455432211585, -3.2893659515200318, -3.6972002725443778, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.493924858299271, -3.2768063456287626, -7.0, -7.0, -4.115677065115837, -7.0, -3.3312247810207323, -7.0, -7.0, -2.7515870050823104, -7.0, -7.0, -7.0, -2.877083256650651, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5020662836896532, -4.785571833351669, -7.0, -7.0, -3.4427409988358755, -7.0, -7.0, -7.0, -2.507518555576424, -3.5435217306752924, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7558748556724915, -7.0, -7.0, -7.0, -2.2818852037063175, -3.4936439050611052, -7.0, -7.0, -7.0, -3.1680553034591394, -7.0, -3.658361236616049, -7.0, -7.0, -7.0, -7.0, -3.583052120570069, -1.6163597886715864, -7.0, -2.2007137339640135, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2600713879850747, -2.933197951074577, -7.0, -7.0, -3.7695988483874463, -3.626996959365406, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7319914490189294, -4.018866863150907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.525161467496205, -3.251638220448212, -7.0, -7.0, -7.0, -3.390405156480081, -7.0, -3.161667412437736, -7.0, -3.132152917684925, -7.0, -7.0, -7.0, -2.8627275283179747, -2.975891136401793, -3.5440148621780065, -2.8830933585756897, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.847572659142112, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.188225172705279, -7.0, -7.0, -7.0, -2.8627275283179747, -2.8407332346118066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.491081413423187, -7.0, -3.7710727832211948, -7.0, -3.182628608173459, -2.901942417287845, -2.9926166282706546, -3.484442207642407, -3.504062882678692, -2.825265766924533, -3.4251672627392926, -7.0, -7.0, -2.7801320724351024, -2.603244641473375, -2.9849771264154934, -3.808616035426992, -7.0, -3.781827152932428, -3.7749546890801384, -2.5886078047426864, -3.216297886630392, -7.0, -3.100930286261298, -2.7284228629426615, -7.0, -3.4927603890268375, -7.0, -2.7975560510930397, -2.931775592908094, -3.7989267385772014, -3.2338565584774353, -3.0432312493636555, -7.0, -7.0, -3.799891684656865, -3.3961993470957363, -3.186603221792895, -2.0419637496480063, -3.295860195625301, -2.985370331043443, -3.495474955889315, -2.992970913857653, -3.784617292632875, -3.5019488596712804, -2.8016323462331667, -2.8743529469323774, -1.7666773799436992, -7.0, -7.0, -7.0, -2.3371048535184054, -3.557567349330711, -2.1706181828672553, -2.7690078709437738, -1.9156636035057732, -2.98781517440207, -3.4993433592273684, -3.0350960505139617, -2.835056101720116, -3.2142476081039772, -3.821971817642043, -7.0, -7.0, -2.662420515562167, -2.0043213737826426, -2.4914265477852484, -3.481729196960016, -7.0, -1.8255715969364985, -7.0, -2.6543771120020185, -2.686725621074542, -7.0, -2.764015925386275, -3.0557479410565587, -3.778585327862962, -2.887561040930009, -3.766933093837284, -3.313375022247447, -1.0264431267973328, -2.796285169818761, -2.839408208267848, -7.0, -2.4820791907004085, -3.2086428696191542, -2.7861934963110553, -2.910333290266367, -3.5619357633137816, -7.0, -2.4050707803378453, -2.6700504449799825, -2.1838914979181148, -3.776991584856405, -7.0, -3.307228532834288, -2.817985819267376, -2.7489075617740846, -2.688232424165109, -3.786041210242554, -2.4501151701588846, -7.0, -3.772101569277012, -7.0, -1.842195051239908, -3.473778834646725, -2.7477446431168433, -3.2397998184470986, -1.8768041309026244, -2.2022517250991593, -7.0, -3.79049627696711, -3.0521807430683183, -3.3624824747511743, -2.6651704215534737, -7.0, -7.0, -2.7349140725151675, -2.5890749869470655, -2.909154709808426, -3.2184698571955574, -2.776166851774666, -3.0377199826622547, -3.805296916157985, -3.3939260065858368, -7.0, -3.4730404547971117, -3.2289774943120633, -2.7111215146502694, -3.1324883979895946, -3.7798849631926443, -3.2079707950778773, -1.2204912496352502, -2.525977214441068, -7.0, -7.0, -3.2036371649498285, -7.0, -7.0, -7.0, -3.7805333253164046, -7.0, -2.5727635687467134, -2.585218939867717, -2.568644429999217, -2.9326851104800995, -7.0, -3.6380230970734444, -7.0, -3.787956123283932, -3.2331865486683484, -4.226522575863549, -2.7829382019344346, -7.0, -3.490379920003179, -3.8127128667653687, -2.855800287422407, -7.0, -7.0, -7.0, -2.408114283215211, -3.7808931086870787, -3.3664229572259727, -3.0754861315749507, -3.4237918130180067, -2.570153612664517, -3.386855529184724, -2.4580499998837215, -2.7075093462803563, -2.7217419357655936, -2.988479111564272, -3.1936810295412816, -7.0, -7.0, -3.337725413884801, -3.491781775584166, -3.4872798164430687, -7.0, -2.6206722405382417, -3.7927417858347487, -3.243303861903959, -3.7735670489260587, -2.522566483889084, -2.309649141115875, -7.0, -2.8624721360836793, -1.8976748921249955, -7.0, -2.745855195173729, -3.0045670154644757, -2.1595671932336202, -2.8784579615212427, -2.73523028079199, -2.6247751793691476, -2.95431143960087, -2.9238482245059934, -7.0, -2.7419693368814078, -2.437221902399778, -2.8037269968989373, -7.0, -2.574031267727719, -7.0, -3.048092051812372, -3.8047526021504607, -2.8499719123288503, -3.013399054643686, -3.8021577531869615, -2.607732946282463, -2.7709086304391612, -7.0, -2.0632268998054837, -4.148926404279561, -2.6834626973695452, -7.0, -7.0, -7.0, -7.0, -3.783760695743924, -3.321253121961899, -7.0, -3.025988181951707, -2.987347001159854, -2.5674968911042226, -3.0477557503058947, -3.3535498845126734, -7.0, -2.9493202908598843, -2.6558241991760436, -7.0, -7.0, -7.0, -3.4032921451582543, -3.155336037465062, -3.5519376953648374, -7.0, -7.0, -7.0, -7.0, -7.0, -3.301753217283077, -2.9027279240431674, -3.0089789965072575, -7.0, -7.0, -7.0, -7.0, -3.5114822886260013, -3.506978304246419, -7.0, -3.8130469651601078, -3.2332500095411003, -2.659262365784863, -2.9463010745913882, -2.442844232397271, -7.0, -7.0, -7.0, -1.1923525723728117, -3.5746677663162267, -2.282174309626252, -3.0356298277904386, -3.249259521320783, -3.8210547550468883, -7.0, -7.0, -2.6380326155436737, -2.8080917649591837, -1.8379315022237082, -2.703823426271219, -3.13756508756235, -1.7033555516661596, -2.1930566920949373, -3.7799570512469063, -2.8373990243420226, -2.4403842548328845, -2.2628823653189034, -7.0, -3.313375022247447, -2.9356332030394285, -3.7884512070234555, -2.8535156967569284, -7.0, -2.979377627903428, -2.997355174991824, -3.232169911523715, -7.0, -3.5476516583599693, -3.0276892984310293, -1.997006000905822, -7.0, -3.2796318509627507, -3.1755118133634475, -2.971342127941882, -2.5871963148858668, -2.9109207100667613, -2.9295992181746016, -2.4571751520997434, -3.159529596862398, -3.1690863574870227, -3.0407506394093176, -2.8092790719877616, -3.5241600544162317, -2.2415396580206215, -3.7707783961691477, -7.0, -7.0, -3.092213632973267, -2.5024271199844326, -3.796157876906914, -3.2055426785885324, -2.5801100111243995, -3.7892986111594413, -2.645826667299605, -3.194097885578952, -1.8844077740241894, -3.8116420214531512, -3.048894766621091, -2.4483880055226477, -2.9657391111262315, -3.54612746259304, -2.564081293595317, -3.3543247155352574, -7.0, -2.4098955692232766, -3.1889720317784556, -2.549998911569488, -7.0, -2.421143067071665, -3.78511619502192, -2.5488069263615474, -2.5975060579854494, -2.915115597777663, -2.8773713458697743, -3.473778834646725, -7.0, -2.8991088581933995, -3.312670913011013, -7.0, -3.035563141497501, -2.879184132798873, -3.794418330874141, -2.1102942919612793, -3.7675268994083817, -7.0, -3.6513458672100474, -4.5091285649614745, -7.0, -3.984797257089293, -4.1541347529656445, -3.3489336028856633, -7.0, -3.285244120563568, -3.0968191357320425, -3.5716797226239247, -7.0, -7.0, -3.807467375684278, -4.17573954495255, -3.2770608311398055, -4.427875436313166, -3.875854676687327, -3.4725468065517364, -3.908243677120895, -3.8122948820149047, -7.0, -3.93503619755571, -4.384514698685653, -3.897352134344313, -3.1796953833245065, -7.0, -4.4062079458419, -4.317624643080059, -7.0, -3.158503212876601, -4.297585445297346, -3.644906115230781, -3.821038361317505, -3.8456147497502875, -7.0, -3.943247125137862, -4.113107366520495, -3.5744557037528772, -4.015611204503513, -2.649053877131526, -3.1216911303075765, -3.4624811881074096, -2.20374132393189, -2.7551122663950713, -2.654351590039098, -2.9493086704742653, -3.283696889741305, -2.897671264567575, -2.625626794735946, -2.8898617212581885, -3.519171463821659, -2.862705131498745, -2.6961440038114928, -7.0, -2.5403827297856556, -2.6025302223541824, -3.7802452838653524, -2.9196756768967838, -3.030959348925247, -3.304188829614843, -7.0, -2.3465434795560767, -2.803128777106358, -3.8913989046384003, -3.488127496247458, -2.8082531845665653, -7.0, -2.7808594201090915, -3.456441952101687, -4.238434200651701, -3.0931464113450193, -3.4379882502194996, -7.0, -3.1203600214031, -2.877277570359336, -3.01307433535058, -3.1969127457115927, -2.5730317402855922, -2.9256803561548907, -2.735222746605809, -2.596971482238792, -3.034427905025403, -2.448115806419691, -3.01205216495471, -3.053222543849251, -3.336454015647858, -7.0, -3.125062803023057, -2.905758019331565, -3.0201367562556896, -7.0, -3.772834927239018, -7.0, -7.0, -7.0, -1.8283882350228342, -1.2451116571837162, -1.23227990455565, -7.0, -3.3886931254483055, -2.135437853436796, -3.5949447366950835, -2.4376918545429205, -2.250635230436816, -1.8602570494485853, -3.7768464086952993, -1.8720024944383251, -1.1743423508074868, -2.3558208239930427, -7.0, -3.4962144560637816, -2.834305076821983, -2.282037920728629, -7.0, -7.0, -2.0684564381754846, -7.0, -2.635282637998212, -2.2115209972402297, -1.3505172146992581, -7.0, -2.262255606244936, -7.0, -7.0, -3.807264355276107, -2.161235694155678, -3.152086572482463, -7.0, -3.612836816232258, -1.2548616304445581, -7.0, -1.1884851927829543, -7.0, -1.4764657157545893, -1.2543395413032599, -7.0, -3.7839035792727347, -3.4174716932032934, -1.2780707478531816, -3.3109905271345785, -3.500716623555479, -2.951580344903392, -1.4862558922341522, -3.807940721215499, -1.2457243123026969, -1.4237712239985465, -3.4208218220040685, -7.0, -1.171911616738176, -1.1738931510871389, -7.0, -2.5150651850861645, -7.0, -7.0, -3.8231154293976726, -1.8629103407362515, -1.6670636256725735, -1.3630906859285676, -2.537539266144841, -3.0694830939346116, -7.0, -4.09652766560644, -2.956099794444892, -2.361689298861358, -7.0, -1.313578498288837, -0.6597265191984446, -2.9363880603822547, -3.7695988483874463, -7.0, -1.5000305341838744, -1.8289772882134558, -2.933768402805704, -1.7778189334524992, -2.4269832351280023, -2.4313637641589874, -2.4524253858850975, -1.6571173838987634, -3.2225864233903896, -2.798148207810744, -7.0, -3.2976875755910435, -7.0, -4.452292561617729, -7.0, -1.758543655498327, -3.3152354096177272, -2.199531302573584, -2.9741661461216427, -2.9562121023022296, -2.5419233758836866, -3.0969968632197054, -1.1883086759638373, -7.0, -1.4057299595320005, -7.0, -1.3198078810877178, -1.4992287242836109, -3.711089840140532, -7.0, -1.7055765671716585, -1.7246115691474593, -1.6253274745535427, -2.2790896121741575, -7.0, -7.0, -3.1684238181031454, -3.7794521834040617, -3.7754648093457392, -7.0, -2.7684530982706304, -3.8530895298518657, -2.470704429722788, -3.0202231262979176, -7.0, -2.9386626557296673, -2.7517688440873256, -3.8133808067338557, -3.3246253644997976, -1.819373724102534, -2.505088284381042, -2.227093428556467, -3.049295568332722, -3.6965747917964733, -3.2065560440990297, -7.0, -2.6666164935374748, -2.800854491503561, -7.0, -2.408856423161136, -2.9667449661622203, -2.906200314184372, -2.712104758955936, -3.432595198514682, -2.2960066693136723, -2.9326186985953693, -3.0037476689675056, -2.48521019101124, -3.7743709598499167, -2.3812692068679397, -2.448520816457295, -3.82052984852352, -3.766784515497859, -3.675992076790947, -4.3264485170542, -4.025264892154508, -3.7824316703747614, -3.1373949534718495, -2.8990042527308097, -2.4822997524547086, -4.0273190225793565, -3.2338790396440125, -2.186162785636252, -2.991392228018147, -4.326335860928752, -3.327941009681113, -2.252289842346699, -2.0183876337299034, -2.5510162532011527, -4.331761240775492, -7.0, -4.151737481038518, -3.5137399148914126, -1.9576587855573357, -3.394793028193001, -4.626802137202601, -2.2435755711032357, -1.9160871107025628, -3.5554471443890283, -3.5890453605786625, -3.9282626755124257, -2.7674230420253365, -2.903532098852894, -4.029251845772462, -2.993164817641717, -3.157144358673168, -4.1514209286929065, -4.628726016090374, -3.786294990698501, -3.49680119804521, -3.1379663399603084, -2.4045032846576886, -3.782472624166286, -3.032323877412346, -3.0740236540366594, -2.596142567343199, -3.5151092854215533, -3.4855997583250473, -2.405737390282291, -3.459653790072658, -1.9738748705565081, -4.1535506516745295, -2.943575266054042, -3.6131496270446064, -2.4402024359984047, -2.9407554803427463, -1.5394602992448396, -2.623444347433249, -1.4321668029911794, -2.689969920318199, -3.786386315371722, -2.9514184759183264, -2.6150826222252115, -3.3326202195656403, -3.85658792817761, -4.032840283162028, -3.929633465282292, -2.639872555925874, -2.5202587512953705, -2.366950530833321, -3.1098852087458977, -4.026083620800987, -2.0836891886444, -4.025439001182824, -2.640150040936102, -2.7240591863401407, -3.7834952158370023, -2.7851542481914966, -1.9161042138199231, -4.151277893904123, -2.5128029425484315, -4.32576188531923, -3.374565060722765, -1.5025185305685673, -2.461782667055416, -2.7100153557906577, -3.6726929365789984, -2.968580225848978, -3.101039111382258, -2.749388431581154, -2.678173221476225, -2.8999895331008956, -7.0, -1.5619018309927175, -2.530892675383932, -1.6920185449540748, -3.4518375861611674, -7.0, -3.1575834883314, -2.467818013504448, -2.7161015891915814, -2.605686349075591, -3.515313299274702, -2.2278945392681075, -4.633741066536528, -4.025408281131747, -3.8491121661845775, -1.8549582075503341, -3.928876996969838, -2.547617198943898, -2.9045652859678013, -1.8130004972943008, -1.5179407613891247, -3.6322243912130614, -3.3745243201522004, -2.963214952322519, -3.491251605244094, -2.2600117280520315, -2.807100657788488, -3.928190948038757, -3.052910882091185, -2.830406713089672, -2.6257088170171308, -3.2540039620051373, -2.5566097483796093, -1.7160900952334388, -4.632315541250991, -3.512897756320646, -4.331720776357499, -2.965161456900238, -3.0557805676563268, -2.8715534774719087, -2.7582493530140964, -4.628623896431819, -3.632902494152879, -1.1993577444736312, -2.2677777526259044, -4.6267200806648345, -3.4812480635880934, -2.622534885779015, -7.0, -7.0, -4.6274887527352035, -3.248034603058738, -4.025264892154508, -2.4755715775939935, -2.7241009012423585, -2.2042842200431023, -2.465887682029916, -4.33219599532464, -3.1628893293628004, -4.627775375229303, -3.9307249527694874, -3.274800178065412, -3.5507825912650164, -2.6360578308137783, -4.326397313347113, -3.399521024913897, -3.4870373180056653, -2.318857746688286, -3.9286006598445242, -7.0, -3.6006561380617996, -2.7674065990040475, -4.026645602751596, -2.3769800333134876, -3.794746893067343, -3.568602576714357, -2.938284207555805, -3.6872117698137425, -2.6396186932498518, -2.9231044670500483, -2.9975692409571537, -1.8831761038277461, -3.138994979537685, -4.627427309011094, -7.0, -3.788572366037187, -3.3997246084084973, -3.453471233722936, -4.326704445074325, -2.133302624302217, -3.374850137756006, -2.9585995363634856, -3.8494808372439864, -2.6113260888251135, -1.4260844558204882, -2.909091575516218, -2.243028648271097, -1.9865589396383379, -2.9295992181746016, -2.565109599080669, -2.768648099163793, -2.877083256650651, -3.221193473064788, -3.176420598928824, -2.598365925717433, -3.2508873899067634, -3.389212730031502, -7.0, -2.6674615213066, -2.7274420645374544, -2.416921167679809, -4.629256651581539, -2.3204395467030783, -4.326243665994105, -2.6511865508463828, -3.455859567203536, -2.8056007947586763, -3.152685756036786, -3.5524451317812034, -2.711174300366762, -3.167671716230021, -7.0, -1.9705668126696234, -2.375792274747459, -2.0687890798848607, -7.0, -3.849060937109684, -3.3513283280710824, -3.513913880331417, -3.8509217930432844, -3.589736410795124, -7.0, -3.7870250509366583, -1.9809552818196143, -2.5829032804168657, -2.965272274026404, -2.576109955786417, -7.0, -3.5166472255324543, -2.882778567794427, -2.7961719664962326, -7.0, -3.8504624327615167, -3.6028094892346934, -2.7693673449336376, -4.162614185247574, -7.0, -7.0, -4.327685809541024, -3.453481424721092, -4.3260079677596055, -3.674115763447881, -2.9864831036687094, -1.7600494895554875, -4.627140456634811, -4.15039821661802, -7.0, -7.0, -3.2712454436613365, -3.234314768012676, -7.0, -3.457104414338873, -3.5906282374313663, -2.7710906787017704, -2.345013359928831, -1.9986504087043486, -2.764365456468543, -4.150991682923507, -4.627099462252875, -1.347080670472507, -2.093822918082407, -1.35109713021616, -3.5542872095319615, -2.613996088101989, -3.1717365381636147, -3.4534916154801154, -3.1245246022879822, -2.196775443561625, -2.587738559420033, -1.8349213979782772, -2.2709954180459664, -2.9098322781643, -2.1163708047186955, -2.601674231495388, -3.725401117975179, -2.973770182401431, -2.6241945001620497, -2.520072713605655, -4.62666878745452, -3.2317549484334687, -3.1184451059128824, -4.152685756036786, -2.7353593330017105, -4.6272429256634116, -2.0598778316475386, -2.2987748165342907, -3.2939649049909505, -3.172466706380776, -3.1613779859014137, -2.34923925531571, -1.9357412477103655, -3.783842349230774, -2.7523259318317654, -3.929306505534561, -2.7693368531734577, -2.6058673507596914, -3.1789769472931693, -2.074915184686576, -1.9460098847657648, -3.2499860332676347, -3.411570193966152, -3.0020412051534886, -2.4199854117249155, -2.156405666626288, -1.9061656116739139, -4.326294887818489, -7.0, -4.024619055253279, -2.9959092838978454, -2.365497487116762, -4.329916282216644, -3.456345785828081, -2.8480522019581387, -3.726737394049776, -2.4422018332921795, -2.9488305125930703, -2.0621775825245305, -4.633266411155424, -2.8282771428330555, -2.5341966517021137, -3.0643365478833755, -2.674512861609274, -2.0607577802449364, -2.688179392577509, -7.0, -2.4866756505929275, -2.982637157656279, -2.462662730904351, -7.0, -3.1871781457685944, -3.851115599375254, -2.816836671284734, -2.75060821076054, -2.732975756918457, -2.5481614810386617, -4.150766670469652, -4.626658528085447, -2.2328478515978616, -4.3290315750108395, -4.331751125024444, -3.2352556647225166, -3.2678097897218614, -3.6763073984105277, -1.215738424976611, -3.5127049161671735, -3.6272736616580863, -2.101315478526709, -2.7041505168397992, -3.828043743777702, -2.713169514894598, -3.144341815436957, -1.7535083087629977, -2.377081574961449, -2.40210991142646, -1.403694988017363, -2.1791309979534557, -3.0276245407121563, -3.2126851382937613, -2.644110200429959, -2.7356420508216597, -1.7211625537518984, -3.5706184747312224, -2.231362108759338, -1.6977921195260013, -4.1196352362091355, -2.8306026140807274, -4.358810172458563, -3.2440873084362094, -3.0423248787407227, -1.8524940966254402, -2.4748004181498424, -4.500545202798604, -2.8724800107296673, -3.3596837372363515, -4.167868469951459, -1.6554587420039284, -2.6249331307836736, -2.80433418322736, -3.3365287406782453, -3.680531913962837, -3.943138228539406, -3.6912503203314233, -3.791164125033335, -2.5522708062068267, -2.943760779227193, -1.7119647740280666, -3.9356684589162554, -2.520650955442134, -2.188065485960007, -2.4675023992470027, -2.16292458092848, -2.692116792460456, -3.100606831566212, -1.798681228722877, -2.832021234198613, -3.3746422429034686, -3.1257626964147756, -2.0137055223163682, -1.9990152048344794, -7.0, -1.8276261561842277, -2.5701116642934236, -7.0, -2.918238282434964, -3.075467327907453, -4.191040933375073, -7.0, -2.3107716124156723, -1.7694320620004897, -3.4549798528548243, -7.0, -3.222753620498096, -4.329774037157664, -2.519851127858414, -4.6807614389476635, -3.471381201714428, -2.712682071804389, -3.7252060359060395, -4.150664353529561, -2.991765838498609, -2.8247133373599675, -2.8425115981217535, -3.038269981689261, -2.132052669278517, -2.6290576038052467, -2.1521137507096944, -1.9284288922720902, -3.9344580498777164, -1.3964818075340644, -2.645389296060444, -3.024275600667789, -2.861417552427749, -7.0, -2.7251991210907534, -2.3502692650982824, -3.166345522007818, -3.5874354265840136, -7.0, -7.0, -4.3273895893854775, -4.070942474030112, -1.0236274499334386, -2.11653395340411, -0.9919156165114691, -3.4530021891110505, -2.695710464573313, -1.7279980930228536, -2.0460908387151995, -2.4065700586274863, -3.5154254660566715, -1.9812927455892713, -3.782973994944048, -1.6923392945564069, -1.8841649089154773, -2.7388618337689525, -4.0421224759982755, -2.159414400415508, -2.8363241157067516, -2.305784919389692, -4.032920808723266, -3.5903858080526803, -2.202435106951743, -4.155143649983192, -2.8541642908673475, -2.1804176619850706, -1.9970167545733903, -4.626843159658239, -2.1754932718147155, -4.628133387541083, -3.3734433001016995, -2.72159115966934, -1.2597635834634564, -1.8249202407771479, -4.149988456491476, -3.288171433357922, -1.525040258236046, -4.157688410663372, -1.882366565539136, -7.0, -2.4183113373400764, -1.1881122908453896, -7.0, -3.0155948545166624, -3.367767751185798, -2.387208782294461, -2.1682978754273456, -3.2511310447723267, -2.2461266112866, -2.5161264550669142, -3.4863191329739993, -1.969628590819608, -0.5505993099604394, -2.9465051692283937, -3.9288667653964007, -1.8989723109196854, -1.9855284446213737, -7.0, -1.247843653300319, -4.330748497546924, -4.152033401914976, -2.7463892697195718, -2.4001209713388727, -0.6356793335097679, -2.008590292788681, -2.1339811341121924, -2.599402281048723, -4.632467415481234, -3.6107133821919506, -3.3092041796704077, -2.5986628615845535, -3.308178066726313, -2.3306524622707823, -1.4238266369036738, -2.9206951294678225, -3.626996959365406, -1.5000305341838744, -7.0, -1.80312867811694, -2.78710609303657, -1.5215472333066158, -2.4527823002912648, -2.5427701169130144, -2.8433433124477063, -1.6822034347539272, -2.0750063044594707, -3.3151703553952925, -2.945106673042623, -3.6277651419682626, -3.781919421864166, -2.539790831601422, -3.1736911943077897, -2.04105414195654, -2.387399605873772, -1.2549987492914396, -2.510971747503651, -2.158963699887905, -2.221174975962108, -2.7417610824258207, -2.0086496781149954, -4.632072431957763, -2.3269680437679976, -7.0, -1.9183971468776533, -1.7094541093211546, -3.0565702209242036, -3.928375366184779, -2.222284502229978, -2.0908150144050226, -1.4534478436425606, -3.114610984232173, -7.0, -7.0, -3.72413244679981, -4.327512187748588, -4.326949994165998, -3.783893374865213, -1.6550294708928528, -3.7945577512547617, -2.632228959099475, -3.0743795706254873, -3.331042436293782, -3.2864462624614332, -3.1530217436261383, -3.354411752731074, -3.9327780700605506, -2.462397997898956, -3.0587655588941463, -2.293178336476699, -2.945331786541246, -4.365899620723788, -3.4020994719811863, -3.7822063554634027, -2.9396248374684815, -3.139868934471412, -4.626884178239356, -2.2816611981573267, -3.428994833472571, -3.3539364673716925, -2.7000688257699466, -3.287431711515602, -2.8273986480399302, -3.628256066711006, -3.9299601790626792, -3.1261609360385996, -3.928795137632244, -2.7110100570641573, -2.913863814360407, -7.0, -4.3257413721537965, -7.0, -3.2837533833325265, -2.804480189105993, -3.1091283841463793, -3.0024900412432993, -1.5141347630240631, -2.0744507189545915, -7.0, -7.0, -3.4975250381729923, -7.0, -7.0, -7.0, -2.9375634800593664, -2.649047063199393, -3.6726519228400023, -3.339053735709139, -3.580810972660946, -7.0, -7.0, -3.0999912335446846, -2.4746886656622498, -7.0, -2.7576671070627974, -3.1142888471310615, -7.0, -7.0, -3.281714970027296, -3.1364827496008227, -2.9800033715837464, -7.0, -3.3667002284829333, -3.182414652434554, -7.0, -7.0, -7.0, -2.777346255747414, -3.309949384259016, -3.5085970462300686, -7.0, -2.711500469726369, -7.0, -3.4440386695597027, -3.604442066260723, -3.3309208305952356, -3.1420764610732848, -2.4374707639390873, -2.0509821774826937, -3.317958924700952, -3.3576490329184674, -3.517789511883555, -2.8956987269593055, -7.0, -2.7850511532902402, -3.3137969404949157, -2.3134070001050655, -7.0, -3.6282867310895144, -3.346841769642251, -3.010865076409731, -7.0, -3.3586010159430195, -7.0, -7.0, -3.1652443261253107, -2.5937167011478612, -3.022194594880668, -3.6018427897820984, -7.0, -2.468864040148188, -7.0, -2.902447941243036, -2.4358216226950797, -7.0, -3.4833733060890273, -3.2220245503322613, -7.0, -3.2760786594797535, -7.0, -7.0, -2.4015608266227817, -3.43608309864198, -2.9199144806594317, -7.0, -3.7907776013376937, -3.643945912748067, -3.336526440627234, -3.2364112877439664, -3.4171394097273255, -7.0, -3.036822159992723, -2.9320930828571, -3.5397032389478253, -7.0, -7.0, -7.0, -3.7148325124333326, -2.9853516150839536, -3.08074670684836, -3.606596309179285, -2.827319557012113, -3.649334858712142, -7.0, -7.0, -3.1069044989356436, -7.0, -3.2852571745923016, -2.8427874848344485, -2.560305243220961, -2.7624231433300555, -3.636287252098513, -3.1357685145678222, -3.672836454171397, -3.68556261115823, -2.7413722369066322, -3.3554515201265174, -7.0, -3.04563587107822, -3.3617907726863363, -2.7081942032839943, -7.0, -3.0858136527815203, -3.41766661081607, -7.0, -3.5366005233314004, -7.0, -3.4769168327427638, -3.6734816970733473, -3.49045012035602, -3.5704845630444004, -3.5972562829251418, -7.0, -1.8994239108121036, -2.598174728741539, -7.0, -3.586587304671755, -4.126001456787675, -7.0, -7.0, -7.0, -3.598243191653623, -7.0, -3.1942984514279047, -2.407740718812563, -2.865794662364423, -3.2160602859231417, -3.6445370577784075, -4.040285798932492, -7.0, -3.6094876898532853, -3.6795187436957892, -7.0, -3.7033343754437698, -3.584444307165176, -7.0, -3.345079526314867, -3.4358671080828365, -7.0, -3.5793262037552553, -7.0, -3.3884564527002667, -3.598790506763115, -3.6911699341316035, -2.321788233178031, -2.9916690073799486, -2.41611074141508, -3.0202783941119273, -2.4125005469217604, -2.5006309216347464, -3.32990612340021, -2.947359354704174, -7.0, -7.0, -7.0, -3.172310968521954, -3.3157604906657347, -7.0, -7.0, -3.028793001220155, -7.0, -3.2050302708857896, -3.587598729721245, -3.937166703715033, -2.8468583713444207, -7.0, -3.132899769944483, -2.9561684304753633, -3.3890774437923494, -2.914116391219987, -3.7005306569785916, -2.3742482947379293, -2.897718704935313, -2.3353270562549815, -3.5836521085420436, -7.0, -3.4270531135645013, -7.0, -7.0, -1.4372999419590848, -3.705401815129262, -3.60400993241223, -1.7936260659291523, -3.2814878879400813, -1.9779667032419643, -2.3297028971532154, -1.8194550045531472, -2.1476230267651895, -2.092493594974741, -2.098792008234216, -2.3851397918328363, -7.0, -2.616400486768762, -4.416890030173012, -2.4880527674890005, -7.0, -7.0, -3.3152354096177272, -7.0, -3.603144372620182, -3.147985320683805, -3.2936939507457654, -2.6788217632521745, -2.8311543282301015, -2.857151502687493, -3.5297382554659538, -3.7471836863659025, -7.0, -2.337931919942683, -2.5516532717804257, -7.0, -7.0, -3.598243191653623, -3.265211027637486, -2.8024316264307236, -3.7043221408222355, -7.0, -3.5779511277297553, -3.2972131959896416, -2.8311229220209437, -3.5801263254115825, -3.2949069106051923, -2.504470862494419, -2.690172124901124, -7.0, -7.0, -7.0, -7.0, -3.0435587469147327, -3.639586086673426, -7.0, -7.0, -2.6820919614123637, -3.420038306133178, -3.2758179278775392, -3.3949329905627432, -7.0, -7.0, -7.0, -2.1003338756801364, -7.0, -2.7042432949819815, -7.0, -2.95970902424643, -7.0, -7.0, -3.3137617962924364, -2.4457366606080297, -3.1033149257643444, -2.604365428721707, -2.891588136764973, -3.410608542568368, -2.916980047320382, -3.644143050509919, -3.597366050266028, -3.0810771401550445, -2.753791904524199, -2.4188774698213766, -7.0, -7.0, -2.6835873175727674, -3.3089910290001643, -2.0456706229772466, -7.0, -3.2688119037397803, -2.711220195775293, -2.529558673021163, -2.5802833190970835, -2.2309771531262292, -3.744562084061763, -2.5152503052242317, -7.0, -2.7636199469282294, -3.2931414834509307, -7.0, -2.3948741756650853, -2.818308388529562, -4.094121595840561, -2.612518962242537, -2.2654190507574126, -2.4442092079896605, -1.8723549587518664, -2.6069185259482914, -4.325400198749759, -2.953638903390939, -7.0, -7.0, -3.2753113545418118, -7.0, -3.0310042813635367, -3.6217992240026677, -2.523045749505392, -2.9291268648546622, -7.0, -2.834976727785526, -3.6224212739756703, -3.019842969563268, -3.6447339274471924, -2.7637086966742306, -3.8776592441116087, -3.6447339274471924, -3.8769218431745798, -3.1879122240468787, -3.9229191264016565, -7.0, -3.3792148413786265, -3.199480914862356, -2.8905141650708486, -7.0, -2.658488381309017, -7.0, -2.988304089217602, -2.558939222448887, -3.0331220573283053, -3.1370374547895126, -3.112157966516305, -7.0, -3.166652089049701, -2.8334658601706924, -3.64018319192134, -2.6929447884566646, -3.414694864805198, -3.1416587697865523, -2.352891753316144, -3.578295305120826, -7.0, -4.329956915106239, -4.318890768083098, -7.0, -7.0, -4.74020473550745, -3.3894560543546906, -4.038540686337457, -4.149527013754348, -3.1826724835047404, -4.109139643904016, -7.0, -7.0, -7.0, -7.0, -3.2196683385331144, -7.0, -7.0, -3.6843116372451057, -7.0, -3.679300678760339, -7.0, -5.0928872442915525, -7.0, -3.9709161076671813, -3.7297046213121874, -7.0, -7.0, -7.0, -7.0, -3.8438899878252886, -4.249785175832251, -4.405935153146291, -7.0, -7.0, -7.0, -7.0, -7.0, -4.200426389032534, -4.271051261492347, -3.392677416406296, -2.9589459324939362, -4.001456783431275, -3.8231009262048943, -7.0, -3.5964871337365443, -3.7902675666555816, -7.0, -3.845861726455298, -2.4013673973861067, -1.9039138148998769, -3.260464236932625, -3.446619391266607, -3.165447834096422, -7.0, -3.2568026105565364, -4.000130268805227, -3.1202447955463652, -3.6808791744268112, -4.129963656273567, -3.9037951427410356, -7.0, -3.4497054723137457, -3.700131238924358, -4.9311424604222625, -3.6115108871266566, -3.314130668652575, -3.3191060593097763, -3.078647329681168, -7.0, -4.809030832780143, -3.070265260804666, -3.8211640307644217, -7.0, -2.8413415905280566, -3.483059261945647, -3.358750423731978, -3.5671440451956573, -3.0643258308401697, -7.0, -2.707871554701903, -3.5323721335678773, -3.647089428716555, -3.2351948324743183, -3.2993681849804, -3.8444150404738244, -2.878724160018126, -7.0, -2.68436653636779, -3.4663435817339256, -4.062863902110119, -7.0, -3.5864747785713966, -7.0, -3.5952757118020995, -7.0, -2.483900426858269, -2.082004405384004, -1.8979615866993214, -7.0, -3.7224693858840308, -1.9319485989693566, -3.2863067388432747, -1.477724023007823, -3.607776603741693, -2.075645586232719, -3.1150555026762046, -2.072350177271125, -2.020952883995018, -2.5939905188892736, -7.0, -3.74681576560032, -2.2006735010229588, -2.180908497191226, -7.0, -7.0, -3.016336796275526, -3.334051440346892, -2.530790575140356, -1.775818418551172, -2.048889285630866, -7.0, -2.2611663839218252, -3.591954555046735, -3.300704152596124, -3.932960550995896, -3.0446897027771316, -3.363605265330623, -7.0, -3.486642969023512, -1.5424664648514743, -3.35869609957381, -1.4327763469597874, -7.0, -2.2623631847646597, -1.711828523727601, -7.0, -2.6473829701146196, -3.460822698802402, -2.2277094415573746, -3.1336453400536084, -3.6303261548039467, -2.6266824662362946, -2.366236123718293, -3.338057875419756, -1.970262325566553, -2.1964390649696863, -3.3759835025820006, -7.0, -1.900562185691819, -1.8980291537927607, -7.0, -2.858286493595753, -7.0, -3.6033609243483804, -7.0, -1.7973082833122795, -1.7924393247415067, -2.1997832969389326, -2.747531316550332, -3.220020871555797, -7.0, -7.0, -2.3480998137138966, -2.711479158948072, -3.017450729510536, -2.001044267268093, -1.9919108308906996, -2.7819347981137703, -7.0, -1.8289772882134558, -1.80312867811694, -7.0, -2.4960835946220876, -1.1324203264110135, -1.7975602137559035, -2.620780298632121, -2.636214267562268, -1.8152930583882103, -3.2984709911247934, -2.605753836593265, -2.9734049744100606, -2.987219229908005, -2.8811563210755637, -4.4193774051391275, -3.7953933349312896, -2.476155081947642, -3.7926717891415676, -2.4404156056103177, -3.4379090355394983, -2.7591558917762122, -2.5503189632122982, -2.668056864156085, -2.1106613346882797, -7.0, -1.561670856908037, -3.581380688709987, -1.7758472954740794, -0.9323077387049005, -7.0, -3.584218112117405, -2.408324780170415, -2.1165128680770238, -1.9669130564385204, -2.6478717653062325, -7.0, -7.0, -2.8042530476353846, -7.0, -7.0, -3.6024940688072813, -3.2083965630310805, -3.226857570288723, -2.059876090852238, -2.3436676730228414, -2.790486226296973, -3.604442066260723, -7.0, -2.3007337847975, -3.1530013881396495, -2.72166075514139, -2.5215739035919933, -2.4136782342419387, -2.1226013182643153, -3.8964711004792774, -2.9411137270371017, -3.2829618035343353, -3.831613855309099, -3.6306312440205, -3.5781806096277777, -2.64851013005671, -3.1686938635769795, -2.796376070489843, -2.4094779220657947, -3.7824009524965296, -2.624134702492355, -7.0, -3.601408060534684, -3.147289769269514, -3.287577809078705, -2.639154332860882, -2.188576970603741, -7.0, -7.0, -7.0, -2.3448287505880847, -7.0, -7.0, -7.0, -7.0, -3.475235222604128, -7.0, -7.0, -3.7316129367486814, -7.0, -7.0, -7.0, -3.9358849679635246, -3.2972010255940374, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1641111006552047, -3.012133913649598, -7.0, -2.5596954436646264, -3.433528666134524, -7.0, -7.0, -7.0, -3.26030994579492, -3.4689378056654614, -7.0, -2.388658488974814, -2.1076944030298352, -2.241172786770047, -2.7244806771885997, -2.2620858294213435, -1.8236998953130263, -2.8735143535392917, -3.664077590185075, -7.0, -3.10698371567979, -7.0, -3.8451011421066204, -7.0, -7.0, -3.569958818096594, -3.153204900084284, -2.5676144427308447, -2.585836579364848, -7.0, -7.0, -3.4608978427565478, -2.8205954965444904, -3.536321662293841, -7.0, -3.077958071921229, -7.0, -7.0, -3.4163075870598827, -3.334554270647249, -7.0, -7.0, -7.0, -7.0, -3.4072208929273966, -3.419625360887743, -3.359806304706641, -7.0, -7.0, -3.6112983622964285, -7.0, -7.0, -2.035316439045186, -7.0, -7.0, -4.130420618706655, -7.0, -3.583198773968623, -7.0, -7.0, -2.878090733945318, -7.0, -3.36679638328673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5126843962171637, -3.6901403652094, -3.7004441010277516, -4.080157310970184, -7.0, -7.0, -7.0, -3.5246557123577773, -7.0, -3.430961453354948, -7.0, -7.0, -7.0, -7.0, -7.0, -4.040206627574711, -7.0, -3.596707029681446, -3.4838724542226736, -3.7657430414210444, -3.8035253955765325, -7.0, -7.0, -7.0, -7.0, -3.5667067908011667, -7.0, -7.0, -7.0, -3.7046651854545294, -7.0, -3.433609843323718, -3.5174070536521542, -3.464928984860436, -3.0930713063760633, -3.928703027430597, -2.9244515909567834, -4.097626008369331, -7.0, -3.1609684672648433, -7.0, -7.0, -7.0, -2.53058589134187, -2.7520484478194387, -7.0, -7.0, -4.3961121306114785, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5295230327534557, -3.237732193117367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9909305367345755, -7.0, -3.6160551949765862, -7.0, -7.0, -3.413299764081252, -4.083705625352265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.510813010512496, -3.130655349022031, -2.8160202287312686, -2.753072124149383, -2.634956835670927, -7.0, -7.0, -3.3207936392476864, -7.0, -7.0, -7.0, -3.4192947217534604, -7.0, -7.0, -7.0, -2.99638031323341, -7.0, -3.8373779732534894, -7.0, -3.8334021292318585, -3.2878419086342974, -3.429429264381788, -3.1981757979993914, -3.431765702625348, -2.8830933585756897, -2.476341051411325, -7.0, -3.23159700556491, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021023822031585, -3.5482665451707454, -7.0, -7.0, -3.2826868363479145, -7.0, -7.0, -7.0, -3.2024883170600935, -7.0, -7.0, -2.1034305088316687, -2.295509228754198, -7.0, -3.2980885693913815, -4.0841113519406775, -2.7068181508331386, -7.0, -7.0, -2.7577754910119254, -3.315130317183602, -3.33665982345442, -3.3771240423464564, -7.0, -7.0, -3.288204496751523, -2.0901513799358766, -4.17900570756482, -5.015304417065566, -3.2884728005997825, -2.1583624920952498, -7.0, -7.0, -7.0, -7.0, -2.332794779762124, -3.5120169694961265, -3.2069607291557105, -7.0, -7.0, -3.0265332645232967, -7.0, -7.0, -7.0, -7.0, -2.4972434305077478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.414137362184477, -7.0, -7.0, -3.579954994822772, -3.2089785172762535, -7.0, -7.0, -7.0, -2.7542110775942783, -7.0, -3.1378043403467784, -3.4176377396522297, -3.422630871027468, -7.0, -7.0, -7.0, -3.578486396989049, -3.8483738838446016, -2.948779613737823, -2.484235111053663, -7.0, -7.0, -7.0, -7.0, -3.4753805931433615, -7.0, -2.780934207814762, -7.0, -7.0, -2.6310086768259344, -7.0, -7.0, -7.0, -7.0, -3.1558563583922012, -3.1649473726218416, -3.631240780235509, -7.0, -4.057612225741657, -3.4941081925565785, -7.0, -3.277650881240888, -7.0, -7.0, -3.131137273778607, -7.0, -7.0, -7.0, -2.197510282797415, -2.0572856444182146, -2.733999286538387, -7.0, -4.431437748768506, -7.0, -7.0, -7.0, -7.0, -3.2571984261393445, -3.45400593810379, -3.069112851387121, -2.7983052820219765, -2.710223174463516, -7.0, -3.5618166643189575, -7.0, -3.816174990428802, -2.4536580307033105, -2.749736315569061, -7.0, -3.410608542568368, -4.167275971399233, -3.4594595033417885, -4.319860472029068, -7.0, -3.5878792635995502, -3.519651648851301, -3.398229441859627, -7.0, -7.0, -7.0, -7.0, -3.2800089531081857, -3.833083334178343, -3.084814508594119, -7.0, -7.0, -3.6061663146076204, -3.354108439147401, -7.0, -7.0, -3.1727488389827436, -7.0, -3.201019765456387, -7.0, -7.0, -3.213464629039556, -4.482029890469332, -7.0, -7.0, -7.0, -3.555215405126073, -7.0, -7.0, -3.7749659069566945, -7.0, -7.0, -7.0, -7.0, -4.703368770239115, -2.881307826428729, -7.0, -7.0, -3.5152521051810535, -7.0, -4.343644880252506, -7.0, -7.0, -7.0, -3.647896190630718, -7.0, -7.0, -7.0, -7.0, -7.0, -3.387062202035878, -3.087754123432391, -7.0, -4.353916230920363, -7.0, -7.0, -7.0, -7.0, -4.1744959193753, -7.0, -4.629949582692884, -2.733999286538387, -7.0, -4.372779486133048, -3.663795122219408, -7.0, -4.358810172458563, -7.0, -4.461165750357359, -3.0134500940704583, -7.0, -4.163742630225824, -4.191725738520312, -3.3514449075074313, -7.0, -4.159852819341846, -3.9119029960440326, -7.0, -7.0, -4.099300726233463, -7.0, -7.0, -4.396277826958957, -3.8367811013221695, -7.0, -7.0, -2.7263196121107756, -7.0, -3.5312328417522694, -7.0, -7.0, -4.129303107716051, -7.0, -7.0, -7.0, -4.155184159694008, -4.4925718279855245, -7.0, -3.7758045569461376, -7.0, -7.0, -3.906375451942542, -7.0, -3.036516919249531, -3.884001924768787, -7.0, -4.236545012525752, -7.0, -7.0, -4.146975117308223, -4.0268599859845615, -7.0, -3.3053513694466234, -7.0, -7.0, -7.0, -2.998849699010446, -2.7341137402172424, -2.73247158340205, -7.0, -2.2531083481429803, -3.329915358697696, -3.2969940766702086, -1.7639353469873473, -3.0437551269686796, -3.5510228130338692, -7.0, -3.2887842587243155, -2.8474955403490654, -2.920123326290724, -2.096070564624839, -3.4743328375521676, -7.0, -2.8847953639489807, -7.0, -7.0, -3.0305418969899116, -7.0, -7.0, -3.222456336679247, -2.9093777108309906, -7.0, -3.2936939507457654, -7.0, -7.0, -3.8347067478454924, -3.4868035633279826, -4.497565410086237, -7.0, -1.581701955729663, -2.2873279149265278, -7.0, -2.60422605308447, -7.0, -2.7191931306339363, -2.551811307878826, -7.0, -3.0356298277904386, -2.6397077858246627, -3.1922886125681202, -3.1991378431311865, -7.0, -2.73413281289821, -3.454387467146955, -1.3248674400236076, -2.5298151966446305, -2.8725447293769673, -7.0, -7.0, -3.0970836960665213, -2.2974869397629045, -7.0, -3.7137984441929106, -7.0, -7.0, -3.6721902511882525, -2.561220678933944, -2.0681148898978354, -3.0422801074983603, -3.435525851498655, -2.7179477417489277, -7.0, -7.0, -1.642707106377062, -3.3952681336981585, -3.3675422735205767, -3.5658478186735176, -2.748630958693654, -2.5744653452070376, -7.0, -2.933768402805704, -2.78710609303657, -2.4960835946220876, -7.0, -2.744674039978551, -2.321134667242944, -2.0803859471859956, -3.167169590408631, -3.244524511570084, -3.0872133412316147, -3.480581786829169, -2.678518379040114, -2.0028137792246734, -7.0, -4.387852352763043, -7.0, -7.0, -7.0, -3.434384633690481, -7.0, -3.9037138370248186, -3.610506382373693, -2.8305886686851442, -2.788875115775417, -3.3902283624691303, -3.5199591807520685, -7.0, -1.7407421517131454, -2.674012770977095, -7.0, -2.118815651549511, -2.674467460866252, -3.448087666692341, -2.3643102026822547, -1.2827901651204379, -3.0661394928706995, -7.0, -7.0, -3.3244882333076564, -7.0, -7.0, -2.991890303936025, -7.0, -2.7685147746865404, -2.259887792766994, -3.396896449142524, -7.0, -7.0, -2.714664992862537, -7.0, -3.121887985103681, -7.0, -3.311541958401195, -3.8640955734242475, -7.0, -3.102605194126567, -3.3010299956639813, -7.0, -7.0, -7.0, -3.5187639162599584, -3.111766433052562, -2.803968953635653, -2.989271791641693, -7.0, -3.610553705317095, -7.0, -3.3334472744967503, -3.577721524509021, -7.0, -3.780821175853473, -3.500099191915723, -7.0, -7.0, -4.305243857506007, -4.299093072361705, -3.821644517542217, -3.5210508672197784, -3.261241234655554, -1.9647518554481722, -2.4360160992135165, -4.002144454528368, -4.309268104477122, -2.746423205073747, -3.7896512087934098, -4.298853076409706, -4.303044784243365, -3.14752792782225, -2.1996912391745638, -3.317080886073193, -3.5319682869631666, -3.997211582832505, -7.0, -3.998934672960174, -2.6007614933013325, -2.5995138354528406, -7.0, -2.8494194137968996, -2.6109625965853214, -4.314604473213435, -4.0046867154273835, -4.298700282631671, -3.1286819205220584, -3.4156826728335363, -4.307303450866765, -3.064200518562613, -3.314225470926497, -4.301398989173564, -7.0, -3.830396176483469, -3.030052968297048, -4.304275050477128, -3.6534054906645013, -4.299507298700488, -3.1326598503277174, -4.00552369267328, -3.1223040090061507, -4.302915079568861, -3.8314004742396546, -2.9915683807473004, -3.0610753236297916, -1.9344984512435677, -3.460554221350507, -3.8371674062278354, -4.355183236009675, -3.1712666394420372, -3.372175286115064, -2.3527629361796283, -3.8700916316852, -2.0569209253036416, -3.4094089499748597, -7.0, -3.408621501803481, -2.914499864344777, -3.8356905714924254, -4.0135113334659, -4.314835923004574, -7.0, -2.911902996044033, -2.4869308453661136, -2.597128185952831, -4.302395873152567, -7.0, -2.329617194839177, -7.0, -3.0940166811204226, -2.8304786835886837, -7.0, -3.500118806417088, -2.8291585566933986, -7.0, -3.257518584268037, -7.0, -7.0, -2.0359052102283863, -3.487623124274871, -3.7038285389563477, -7.0, -3.64804759698893, -4.311117842662505, -3.274119346273105, -3.457711625975908, -3.5498815946498814, -7.0, -2.5607880199041153, -3.1836114492184326, -2.77572692378081, -4.300617219806582, -7.0, -7.0, -4.02630850085407, -3.2603496926930307, -3.252983654280911, -3.826139617935915, -2.7251983664911528, -4.011210849480231, -7.0, -7.0, -2.8465181435963296, -7.0, -2.7146689821747727, -2.8887617418146476, -2.4178774724990104, -2.4667768618677837, -4.0084085289779425, -3.459349400851918, -3.6183619311098782, -3.5420573701746005, -2.5242362970977723, -3.468537213596077, -4.298547435078706, -3.5566441721731303, -3.457806229082977, -2.8181525516426755, -7.0, -3.213454508691831, -2.8990620586655056, -4.309289410655256, -3.2448870966392214, -7.0, -3.2723905327008245, -4.016573746269123, -3.745230984528141, -3.5258589244021965, -7.0, -3.3563233628438742, -1.481442628502305, -2.3650197428165347, -7.0, -3.9983247392945254, -3.4270091132974243, -7.0, -7.0, -4.29907126002741, -4.00060758706289, -7.0, -2.9101771619648984, -2.4326874301696493, -2.9472918061248987, -3.6864217498793677, -7.0, -4.431958501037113, -7.0, -3.826722520168992, -4.017951068830742, -4.011993114659257, -3.0948868726586736, -7.0, -4.305028753746333, -3.8344207036815328, -3.0712013889421295, -7.0, -3.996927380146128, -3.6307938706772975, -3.719186221662629, -4.301789346768719, -3.476376111016299, -2.496433925220682, -3.563303059369412, -2.781595824877749, -3.550269129965307, -2.5779284961856375, -2.744251796297106, -3.609252814885003, -2.2616399738667665, -3.6073048707733277, -7.0, -7.0, -3.534026106056135, -3.3508722985960704, -3.82687351534638, -7.0, -2.952354913935259, -4.305394366771733, -3.0168753032003806, -7.0, -3.4896772916636984, -2.3982883768309535, -7.0, -2.803115554890027, -2.904118345948579, -3.4761688995605318, -3.015858520286947, -3.2442977420825336, -2.619072860004698, -3.318021573870186, -2.7203453897396916, -4.074322643568778, -7.0, -3.7796505943430723, -7.0, -3.7542259820035175, -2.0470378042585065, -3.7722588216951434, -4.3028285882602555, -1.4665183710211236, -3.696465603994037, -1.5472866808111132, -2.3366963890101053, -2.11069425125296, -2.4571679344887163, -2.6160573404936036, -2.6399580644294924, -3.0803458442742997, -7.0, -2.7474516477618667, -2.8997585768372334, -1.7812158154954059, -7.0, -4.298700282631671, -4.0042783722001625, -3.823169812057419, -7.0, -3.8300109359361176, -7.0, -3.3545565944718043, -2.9932314749036784, -2.8745005215682826, -3.2170494324398886, -2.631499142736381, -7.0, -3.0043213737826426, -3.229148350269773, -4.01674092728626, -7.0, -4.301680949293576, -3.3797686793220243, -3.0236022242589295, -7.0, -7.0, -4.297738631732803, -3.824516328007209, -3.701913211212344, -3.9970804354717306, -3.6021251306149233, -2.8782139380544858, -1.7148591343418107, -4.298328988073496, -3.9981503150813658, -7.0, -4.00268431298973, -3.0097694881704116, -3.1635021317476606, -7.0, -4.311732675442349, -2.6428241099806553, -3.8517474191332637, -3.202062396148503, -3.5116828711013874, -4.3271545124094315, -4.300486787986029, -7.0, -1.5571600787125126, -3.3780747351016545, -2.26713900887448, -4.01110502981598, -2.3814797977204503, -4.013216539624441, -4.30412415273291, -3.4596939764779706, -2.6516656039229356, -3.3554515201265174, -2.4277218284229525, -2.9931186605828173, -3.2745042226558834, -3.146190073315927, -3.7089729784630787, -7.0, -3.365404778744098, -3.047021617404377, -2.6713304313164055, -7.0, -3.7026028413404273, -3.2785249647370174, -3.400689059603588, -2.3169041116345332, -7.0, -3.1305347842273163, -2.8216694633753554, -2.6176711958314747, -2.329150944343016, -1.9799823174336075, -2.7805170155714753, -2.821577430480578, -4.302417519150622, -2.499427906598886, -3.52255290221248, -3.835859607003717, -2.7752462597402365, -3.2874759886947014, -3.1530064771007162, -3.0756429911291083, -2.5418185152424937, -2.7972879125492702, -2.156012553918777, -2.1353656392669924, -3.388635223628259, -2.5696664623252685, -7.0, -7.0, -3.996402209146188, -3.3208383890175335, -2.924666875986673, -3.8292394281413893, -3.355557936162409, -3.019867665170659, -3.702150395107271, -2.934538848851327, -7.0, -3.0258221513726404, -4.010215125214227, -3.20198503030335, -3.1684238181031454, -4.311287538662283, -3.252924384710753, -2.9878250998853106, -3.1314339683837114, -4.311478367438068, -3.329516522848163, -2.9426693313867003, -2.7701495884132963, -7.0, -2.7948047956207, -7.0, -3.514338998289733, -2.715252736283062, -3.392609030497567, -3.555195248040743, -4.300008202553813, -7.0, -3.2616593037647066, -3.304188829614843, -4.0092383709684665, -3.0810294460597936, -3.2311417797607684, -3.4025193025742495, -2.238320187023523, -4.297804266525286, -7.0, -2.936040396947672, -3.3898634973678488, -7.0, -4.373886231789153, -4.073321134413501, -2.4667153093618293, -3.829094617724282, -3.590105874562201, -2.309547394740809, -3.381716596708923, -3.465977368285823, -4.120343562438025, -3.651726133614305, -3.8990759849057426, -2.0847449955525903, -4.3094065759545295, -3.6472329626331015, -2.451548972465136, -7.0, -3.455280024856446, -4.365338202346941, -4.006156544489312, -3.6792234211650037, -2.8636975819970516, -3.5071944854321804, -4.3098749213150755, -3.8582965245338854, -4.064108416233477, -4.034548247098469, -2.8389594999108265, -3.130861035664435, -3.6217343758620233, -4.005266332972769, -3.942256150419465, -4.0287338793493355, -4.0218092770223395, -4.430913151004603, -3.7250036359745344, -3.938582263081691, -2.8834170375771606, -3.6151922673739656, -3.2524528472130885, -2.8054559734849365, -3.2868733052667998, -3.2029784607370653, -3.706888394981618, -4.035189508908448, -2.8988821501556634, -2.3130291026996175, -2.2842945700302977, -2.621426678455252, -2.662260023490515, -2.785614524946824, -3.7210476638575587, -2.9210823527319962, -3.6377898293622293, -3.6024506805778724, -3.9320507642717413, -3.3324990549181783, -3.682506085939011, -7.0, -2.638403885379292, -2.693933677387551, -3.959196881074919, -3.8271322421466074, -3.3855705277254655, -3.7039573587561563, -2.180226161614204, -3.8034400439889096, -4.323383804818248, -2.5255045769947024, -3.232911444346091, -7.0, -1.7726772486845728, -2.7019244639680973, -2.58954640724269, -3.255736247252979, -2.4647118247672366, -3.712868477066893, -1.9518613306048493, -3.1556396337597765, -4.311796229182407, -2.537973874395819, -2.266548465254177, -4.061678615245337, -2.12532741051893, -7.0, -2.364494711644551, -2.5426143376142067, -3.2704237178699413, -4.302352577919563, -3.998302940098541, -7.0, -3.823887025677337, -4.390970414162616, -2.075546961392531, -2.23127940943518, -1.5525004346117142, -3.5247205856840464, -2.9666313775302093, -1.5452882850766474, -2.7701950001292666, -1.941345766226938, -3.126888677692568, -2.103715576919223, -3.123873409568474, -1.6243973159395524, -1.9143998300983032, -2.7519203184537346, -4.032940937780854, -2.675432957123123, -2.287190764555977, -2.428607941216987, -3.615865918668555, -4.007513076120703, -2.679222134851209, -2.910304168068569, -2.7420666425654527, -2.2542815303849095, -2.2630488002706897, -3.8204860776625775, -1.9011018868675789, -3.823235062261409, -3.70022763564825, -3.079365855819545, -2.2751022703904096, -2.7268081430156443, -4.298350837719157, -3.3917973471304803, -1.5779153111051087, -2.866308441316016, -1.912224047434943, -7.0, -2.4570934773357136, -1.4987260783768248, -3.998542671094514, -3.260873289344748, -3.4360035356698964, -2.3503314002067244, -2.739482441437391, -3.7060346607143506, -2.7679182021097164, -2.5512185706063266, -3.6109793799229974, -2.2445039010543644, -2.0694466906279434, -2.6741781802543962, -3.822778104826663, -1.949041315753517, -2.0564575761112773, -7.0, -2.3775080333764484, -3.529836566775372, -3.7005090196080914, -3.037585842826617, -2.1314797188836154, -1.0549175366838799, -2.3276143266206253, -2.331014665152977, -3.0213960567419713, -4.309608877958903, -3.9458295265073566, -3.077132683372356, -2.3433913163594253, -3.191644449765504, -1.9225112682144678, -1.9390025428825879, -2.904569910106494, -7.0, -1.7778189334524992, -1.5215472333066158, -1.1324203264110135, -2.744674039978551, -7.0, -1.6821531740483902, -2.2875372441329467, -3.063020444115889, -1.6289763335903875, -2.7456556904908056, -2.312236026195126, -2.954913364149901, -3.0205139306557727, -3.2979355063596474, -3.245964822443127, -3.7462838201514073, -2.688525755237839, -3.1710630510449134, -1.848084338954773, -3.2538022647686016, -2.1726159027748584, -1.9230356919061111, -2.7557115563729915, -1.9683432302185928, -3.8315711874815945, -2.0789523907738947, -7.0, -1.922956834920365, -0.6022494799944972, -3.6069543130590116, -3.821731821690044, -2.4980429599586, -2.701715371253416, -1.5258510550714373, -3.1356626020000733, -7.0, -4.2990494465975395, -3.1221066080541338, -3.8241475372464007, -3.4548013195320686, -3.3021360369887187, -2.676930586781101, -3.045343570734785, -2.761460516422466, -2.7495430810911663, -3.00774777800074, -3.524547568608145, -3.4605971888976015, -2.9887712324006594, -2.6629723510645, -2.4860011910312005, -2.550580705005715, -2.020462813267919, -1.5351210126789396, -3.2996162399984135, -3.1960060319521792, -3.821731821690044, -3.881707926973662, -3.609146011529596, -3.8205736149734113, -2.133720605254398, -3.6124659639531425, -3.0797131438261793, -2.167220775510412, -3.1137861131733655, -2.58399378491216, -3.6989048552774317, -4.0012359788389915, -2.973569556684414, -4.299834040645859, -2.5441957592407425, -2.6314230602187614, -7.0, -4.297585445297346, -7.0, -3.416640507338281, -3.4148062795010126, -7.0, -7.0, -2.588271706842329, -7.0, -3.447158031342219, -7.0, -3.7479579825589826, -7.0, -7.0, -7.0, -3.5527168738324733, -2.8178249809742413, -7.0, -3.495821753385906, -7.0, -7.0, -7.0, -3.1751855350946574, -3.994493122883512, -7.0, -2.7521124983293848, -3.3950994847121656, -7.0, -7.0, -7.0, -3.3268476989159903, -7.0, -7.0, -4.033366305327212, -3.5229655954919865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7165906667718334, -7.0, -7.0, -3.635282637998212, -3.5379449592914867, -2.052538695727877, -7.0, -7.0, -7.0, -7.0, -2.746745371210528, -3.4882999691020795, -7.0, -3.162564406523019, -7.0, -7.0, -7.0, -3.6924944075030846, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9219835813490653, -3.1204451686960653, -7.0, -7.0, -3.1935883405041348, -7.0, -7.0, -2.104350519242735, -7.0, -7.0, -3.831261720302822, -7.0, -3.6466977312993345, -7.0, -7.0, -2.943943956577388, -7.0, -2.6199872475431762, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.32701565249362, -3.2723058444020863, -3.6241445302716726, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4769764657595275, -7.0, -2.9097164532343447, -7.0, -7.0, -7.0, -4.063445953123033, -7.0, -7.0, -7.0, -3.5073160400764136, -4.1147944032247805, -7.0, -7.0, -7.0, -3.5577477416414682, -3.3803099337883635, -2.671833768853756, -7.0, -3.636086515103073, -7.0, -3.2072976788831435, -7.0, -7.0, -3.4693948724333543, -7.0, -3.958516103423041, -7.0, -4.401297125021583, -7.0, -3.092281919036219, -7.0, -7.0, -7.0, -2.1743625435790905, -3.409510452269316, -7.0, -7.0, -3.7073998311332486, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0306575392437978, -3.437221902399778, -3.543633532576258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.47045949458466, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0856472882968564, -7.0, -7.0, -2.468233685381572, -7.0, -3.657151501900967, -7.0, -3.9869507878585164, -3.1091283841463793, -7.0, -3.3281528261484916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.721645766289746, -3.4625477288026643, -3.4237167870764944, -7.0, -2.9663177623902586, -3.3401961590915024, -3.5173278822943734, -3.140759370870369, -3.7788744720027396, -2.9613024181586454, -2.7507012003958686, -3.577721524509021, -3.000867721531227, -3.068309574745689, -7.0, -3.5073160400764136, -7.0, -7.0, -7.0, -3.4429890216609986, -2.573188181839261, -4.382827209736365, -7.0, -2.463083841024901, -7.0, -2.5936736569452488, -3.186532564592397, -2.8790958795000727, -7.0, -3.4824447919182653, -2.2375894317072182, -2.640779477344857, -7.0, -7.0, -4.3958329201019835, -2.502991872316166, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1866738674997452, -3.3143729000093276, -2.8212222999064145, -3.8949249773595436, -3.0382150869314946, -3.4058583993176366, -3.4679039465228003, -3.48572142648158, -3.064832219738574, -3.4169731726030363, -3.4360035356698964, -2.51638280249711, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4573950576660026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0272136570828017, -2.3774569867029287, -7.0, -7.0, -3.4622482153549976, -7.0, -7.0, -7.0, -2.3010299956639813, -3.3229425163530153, -3.112844295431148, -7.0, -3.2971036501492565, -7.0, -7.0, -7.0, -3.4759252997015397, -3.5828584622244994, -3.0105312308878815, -2.6606283529737342, -7.0, -2.9689496809813427, -7.0, -7.0, -3.555215405126073, -3.70104963072914, -7.0, -7.0, -7.0, -7.0, -7.0, -3.585573518622731, -7.0, -7.0, -3.0260836208009874, -3.2463754640035085, -3.0859146287065933, -2.6700137961720474, -3.55875276807147, -3.1528995963937474, -7.0, -1.932680798328356, -2.4274861090957858, -7.0, -2.4757438067481257, -7.0, -4.0485971584016065, -3.7283537820212285, -7.0, -3.6110857334148725, -3.1375914523814146, -7.0, -4.3383960814697495, -7.0, -7.0, -7.0, -7.0, -3.593230668783007, -3.020084925984292, -3.1684974835230326, -7.0, -3.674125982742708, -7.0, -7.0, -7.0, -3.854427505787861, -7.0, -3.2328691051326137, -7.0, -7.0, -4.267746494644809, -3.724849087629386, -4.120612025542255, -7.0, -3.9215824403934163, -3.3369332662477835, -7.0, -7.0, -3.2220658425885866, -7.0, -7.0, -3.136773397821505, -7.0, -3.327563260187278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8171024042569233, -7.0, -3.025587450804147, -7.0, -3.415974411376566, -3.5388563856111075, -4.3102187625373105, -4.317791816053072, -3.8029104894190398, -4.730329986497589, -3.456298538454589, -3.6852937813867843, -4.613820687810423, -3.549755432008307, -3.2196967711811264, -7.0, -4.347954169894016, -7.0, -4.705953468599973, -2.777480925923896, -4.069631102620343, -4.215725664557567, -3.18479786250099, -4.110219223689404, -3.7531807480888677, -7.0, -4.692764104726101, -4.0198014777812645, -3.6551984824411914, -3.8711641328029494, -7.0, -7.0, -7.0, -7.0, -3.257671517702943, -3.176564776618749, -4.6963126949376415, -3.7631845706896083, -7.0, -7.0, -7.0, -7.0, -3.8820831889703804, -7.0, -3.857794693596045, -3.0436242167998198, -7.0, -4.2288511397148065, -3.6913025633834833, -7.0, -7.0, -7.0, -3.8257505813480277, -4.0780578669791865, -3.1177682949263725, -3.7746045457003254, -3.8934380930119987, -3.398139738199443, -3.5737995822157407, -4.168821463009824, -7.0, -7.0, -7.0, -3.565358624783057, -3.8310374856400253, -7.0, -5.000984731226351, -3.7199489403687105, -4.594288830951021, -3.4551495211798278, -3.846027675364379, -7.0, -3.1199389460651723, -3.9108377649926833, -7.0, -3.8472332339728976, -7.0, -7.0, -3.585667487180534, -3.066653852292839, -3.894620626740205, -3.4875625602563782, -4.267406418752904, -3.4531143980466226, -3.630882647692306, -4.039387677306854, -7.0, -3.6316273438088653, -3.3637012736897, -7.0, -3.397115031195473, -7.0, -3.4801507252732806, -3.6759106662919567, -3.640938348618988, -7.0, -7.0, -7.0, -3.4316853446860116, -7.0, -2.640136227278698, -2.94468003388131, -2.0203511131266407, -7.0, -3.0038911662369103, -2.6324934457316256, -3.3585059114902354, -2.661602373435377, -3.4497868469857735, -2.7722088296639598, -7.0, -2.709740945168942, -2.4309439531239745, -2.791690649020118, -7.0, -3.2872697292733806, -3.1484998267052453, -3.0507019092929966, -7.0, -7.0, -2.954724790979063, -3.187520720836463, -2.805228914203426, -2.7494050038058324, -2.6580909304879183, -7.0, -2.8373779732534894, -2.7265642161622448, -3.4413808849165113, -3.276440914085364, -3.2093156249993453, -3.189421836754017, -7.0, -2.911068786880192, -2.5992359578069637, -3.5229655954919865, -2.1528995963937474, -7.0, -2.9719712763997563, -1.8420407941839496, -7.0, -2.7431960814487013, -2.8784260410124705, -2.526691646157169, -2.9952590191890995, -3.4818724103106633, -2.281941933440825, -2.7584071921878865, -3.1931245983544616, -2.4237918130180067, -2.565035708058474, -2.786457682207476, -3.4234097277330933, -2.5161074400320955, -2.7776684326775474, -7.0, -3.0307346169761686, -3.0040346161083726, -3.1420764610732848, -3.221718441724624, -2.0422230763899947, -1.9552950764646821, -2.9215130698187295, -2.3158256288671404, -2.7943718474659938, -7.0, -7.0, -3.482158695411276, -2.5820092216061594, -2.5622928644564746, -1.7011887621408714, -2.4199041419919367, -2.3792450689395857, -7.0, -2.4269832351280023, -2.4527823002912648, -1.7975602137559035, -2.321134667242944, -1.6821531740483902, -7.0, -2.211375947146398, -2.7701152947871015, -2.3143090428641004, -2.7848765342355013, -2.780197258377976, -2.33306924358772, -3.4239009185284166, -2.4538277764478607, -3.495110520227484, -2.920558099058943, -3.214843848047698, -3.6961815871685237, -2.855809799467775, -7.0, -3.106269372399645, -3.0029711861626316, -2.569373909615046, -2.410022054320016, -3.485579476984679, -2.1720637697726377, -7.0, -2.4902929895560635, -1.7585400649078777, -3.8439176380063924, -7.0, -2.9908935802199035, -2.8326366275967034, -1.9425765714778218, -3.2074997233073055, -3.4674601095072637, -7.0, -3.1131073665204956, -2.4307198878632823, -2.1890111514077963, -2.0546768791557097, -3.2284516907144, -3.1051694279993316, -2.770009947428937, -3.4759615891924236, -2.6441571283550034, -3.4449811120879446, -7.0, -3.5055569386638217, -3.00446468164796, -3.660770643527697, -2.8772561331135864, -2.696065013692612, -2.8560144545033554, -3.344981413927258, -3.018977737412909, -7.0, -7.0, -3.1809855807867304, -3.1051694279993316, -2.957723742446469, -7.0, -7.0, -2.506505032404872, -2.602150459921541, -2.8913515837206996, -7.0, -7.0, -3.6419695977020594, -7.0, -2.866877814337499, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.205407384356316, -3.7868933252613157, -3.726890140741822, -7.0, -3.324725548379901, -7.0, -7.0, -7.0, -3.531095546870028, -2.978782076032242, -7.0, -2.5202137247557816, -3.707995746422929, -3.245101209250068, -7.0, -2.865991800126275, -3.6163704722912695, -7.0, -2.9277901740740364, -2.9449171643218968, -3.0687793630095612, -3.4352071032407476, -7.0, -3.353788044826781, -2.9378759549297913, -7.0, -3.550183864786063, -3.4671639659690903, -7.0, -3.2436993270506815, -7.0, -3.1267157036857394, -7.0, -7.0, -3.712733859069952, -7.0, -3.739493230781615, -3.0547346171400873, -7.0, -2.7913787118676137, -3.8356905714924254, -3.2995072987004876, -2.1668327392036955, -3.736953953783146, -3.466348528450199, -7.0, -3.3025473724874854, -3.3322364154914434, -3.0689073066358095, -3.5726973849826984, -2.957538878068554, -3.4358443659844413, -7.0, -7.0, -7.0, -3.7623033632877685, -2.9893756490247383, -2.4439703985762407, -7.0, -3.7550359337677714, -3.145248215775073, -2.791902403152317, -7.0, -7.0, -3.2561763441015508, -7.0, -4.004450352989225, -2.0655404049454833, -7.0, -7.0, -3.6931174038890284, -7.0, -3.842921120759982, -7.0, -7.0, -2.493297151524906, -7.0, -3.037745129269592, -7.0, -3.873494982256169, -7.0, -7.0, -3.4362686889120932, -7.0, -3.3281756614383227, -3.361058984763492, -7.0, -3.7035206480101697, -7.0, -7.0, -7.0, -3.510545010206612, -3.005854359779236, -3.9310508467773912, -7.0, -3.9734511440249345, -3.7601207852645677, -7.0, -7.0, -3.3709138298239774, -7.0, -2.8951769043575744, -7.0, -3.475283684857362, -3.455864634787528, -3.7500453120117676, -7.0, -3.477265995424853, -3.4872798164430687, -2.3209494269230264, -3.464638559095033, -7.0, -2.720731622155907, -3.0100348033976156, -2.998501514575574, -7.0, -3.250442182257414, -3.297174328047748, -2.9033225824533115, -3.2196967711811264, -2.037504615484121, -2.9718491303519903, -3.4777722083492573, -3.396838400023691, -7.0, -2.60439222660167, -7.0, -2.1929282505859278, -3.0389606070796815, -7.0, -7.0, -4.1465621131575565, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5033366375564374, -3.7013088852280753, -3.046701692585523, -3.376622573828982, -7.0, -7.0, -3.7134065321676912, -3.72956972630197, -3.1812002415449867, -4.206150981596259, -3.357591847523441, -7.0, -7.0, -3.7577754910119254, -3.693529097671857, -7.0, -7.0, -7.0, -3.791690649020118, -3.7214808547700495, -3.792881745385397, -3.1051012445496426, -7.0, -3.3722367269416367, -7.0, -3.309133141070118, -3.8057047044338645, -7.0, -2.9714345133418503, -3.7389390312034796, -7.0, -7.0, -3.760497875226527, -7.0, -3.730136003996678, -7.0, -3.3377919265554117, -7.0, -3.7738412766815257, -7.0, -3.997779430865604, -3.07614031416888, -7.0, -3.020637463567606, -3.329194415088451, -3.792181496149679, -3.5471591213274176, -7.0, -2.451319129142515, -7.0, -3.3231833228365364, -3.6514718521990424, -7.0, -7.0, -7.0, -7.0, -3.522900459461583, -4.426136988786424, -7.0, -3.1773528270652496, -7.0, -3.3184390042001923, -7.0, -3.8010605298478555, -7.0, -7.0, -2.2337272822600673, -2.582883679648842, -7.0, -3.851869600729766, -3.4376395975003704, -2.690786555281818, -7.0, -7.0, -7.0, -3.716086853774832, -3.4235735197327357, -2.9628426812012423, -7.0, -2.5705429398818973, -2.3416732509867053, -3.151318765793846, -3.6587266773270137, -4.637702321658437, -7.0, -3.436719078227576, -2.901536158923322, -3.77952434332479, -3.108734108602365, -3.721068301797159, -1.9208404681336204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5075860397630105, -2.222088458466134, -3.406965750758948, -3.4104397862103464, -7.0, -7.0, -7.0, -7.0, -7.0, -3.75815462196739, -3.6767850304192056, -7.0, -7.0, -3.0956342104345573, -3.8109713998222077, -7.0, -7.0, -2.432434774521513, -3.8287243271387914, -2.8644439099992676, -7.0, -3.301371093057613, -7.0, -7.0, -7.0, -2.2270393595261635, -4.0080889362915775, -2.6334684555795866, -2.4736859899176977, -7.0, -3.4955443375464483, -3.7561033715851053, -3.4192120226230758, -7.0, -3.40094072657035, -3.566555330883055, -7.0, -7.0, -7.0, -7.0, -3.327631347430798, -7.0, -7.0, -3.274058834676048, -3.7825442840100103, -7.0, -3.1960379407345236, -3.447412329358754, -3.795741020869244, -7.0, -3.203649241936576, -7.0, -7.0, -2.073589284256462, -3.5167336366163866, -3.182478057717082, -3.2942457161381182, -3.333850145102545, -3.3432115901797474, -7.0, -3.543012046377035, -4.600951125994174, -3.48061768932015, -7.0, -7.0, -7.0, -3.3165993020938607, -3.246400090154285, -2.783427117917317, -7.0, -2.905376069332856, -3.7311050512159203, -3.8312937443770094, -7.0, -3.9860547807696953, -3.756560043006683, -2.731881663179229, -7.0, -7.0, -3.4862207199417723, -3.4632507733927764, -4.008694523323237, -7.0, -3.5593479441958, -2.1673496219002173, -2.145962558639885, -7.0, -2.5622184925953624, -2.7248490876293854, -2.9545640899663494, -1.712289440733966, -2.450513036909619, -2.8763461592458195, -7.0, -7.0, -3.855700830835437, -7.0, -3.753046561626529, -7.0, -3.1801736812604093, -7.0, -2.871382288272447, -7.0, -3.7107940999303275, -2.9269654172207527, -4.105925546289804, -7.0, -7.0, -4.449277790579156, -3.337228805205703, -7.0, -4.162624140307846, -3.5080770088490123, -3.3723902909904426, -7.0, -7.0, -4.153883431744387, -4.318676760084946, -2.553515879304976, -7.0, -4.714631481192941, -2.932330894115136, -7.0, -4.40134883597978, -7.0, -5.095153653757149, -7.0, -3.7426017027800285, -3.7633281442736357, -7.0, -7.0, -4.301181972138315, -7.0, -3.3595848033967033, -2.5455361868239503, -4.115785192710546, -4.109291622066701, -7.0, -7.0, -3.9237101943965627, -7.0, -7.0, -4.300204051252466, -4.18359247818067, -2.485945462845539, -4.234416037567035, -3.2974088730612636, -4.091983332237311, -7.0, -7.0, -7.0, -3.904592609709625, -3.4621882878701635, -3.4138583422700264, -3.907008053689199, -3.753682170713773, -3.038909793675739, -7.0, -3.903496947335859, -7.0, -7.0, -7.0, -7.0, -3.3665630296290265, -7.0, -3.3779962559461034, -3.4730209701593884, -4.8072981986022025, -3.7311050512159203, -2.8325545294787067, -7.0, -3.2867908860202397, -7.0, -5.413279641863039, -3.4417736628051845, -3.8485996032997494, -7.0, -4.409138161153864, -2.9322405937904947, -3.700876708376904, -3.938519725176492, -7.0, -4.043440876244474, -3.50792330349193, -4.247752382497469, -2.715471538902324, -3.1459399887032697, -3.635241490628815, -3.9182925127553556, -3.6081686862660067, -7.0, -7.0, -3.9562933202213877, -4.086555575051295, -7.0, -7.0, -7.0, -7.0, -7.0, -2.686061425390275, -2.6636381161507066, -2.5189523997656127, -3.7264011621029223, -2.9138138523837167, -2.9198296084259026, -3.373892352104008, -2.781885871793446, -2.087929919941919, -2.7080808104682315, -3.7168377232995247, -2.935339292710299, -2.6629565479888173, -2.7079570754392517, -3.5319257549406173, -3.3529779956963357, -2.874610650237315, -3.365441183394879, -7.0, -7.0, -2.6106192208808556, -3.448087666692341, -3.4572004127937683, -2.2381817777571724, -2.1908807431004385, -7.0, -3.4752643006050032, -7.0, -7.0, -2.5352347645179423, -3.005896289935211, -3.6734356400732615, -7.0, -3.0252473310667027, -2.519696767159853, -3.7683420586445333, -2.731876434589787, -7.0, -2.7557363026383275, -2.586179744185137, -7.0, -7.0, -1.15567179973304, -2.6179085419287893, -3.197648059295764, -7.0, -2.850714290418167, -2.9979685486693444, -2.750970984437319, -2.7349331100815006, -2.9253727683396926, -3.462654647851409, -3.7145812088395314, -2.566115951349753, -2.4822137286093358, -7.0, -3.4925275857610627, -7.0, -7.0, -3.143465871142305, -2.8309733973226505, -1.6351238441823128, -2.8354022910424757, -3.234567897635686, -3.195415296209372, -7.0, -4.06881642992222, -3.2681878052211655, -2.9828055470486436, -3.260230441084052, -2.6555865901357856, -2.5480127619342015, -2.5563025007672873, -7.0, -2.4313637641589874, -2.5427701169130144, -2.620780298632121, -2.0803859471859956, -2.2875372441329467, -2.211375947146398, -7.0, -1.9160150455495546, -2.825651857221624, -3.120714913022346, -3.4883391579275007, -2.6629756505352096, -2.810568529216413, -7.0, -4.139233459140505, -3.5761685196078083, -2.9855761533820546, -3.8750612633917, -3.0796559960555983, -3.353852142602988, -3.327790176166056, -2.9463430772106367, -1.7815613199209546, -2.547716115912941, -7.0, -2.6614069923906154, -7.0, -2.633276034450208, -2.604507788080989, -3.501013592678627, -3.710540447933297, -3.2074323856093794, -3.171360731962648, -2.066318439655697, -2.8562000460323604, -7.0, -7.0, -3.7100326990657537, -3.7198282862543346, -7.0, -3.724275869600789, -3.740323206382993, -7.0, -1.2675688224251873, -3.042654253167793, -7.0, -3.7257483329955483, -7.0, -7.0, -7.0, -3.249504090935526, -7.0, -2.649833933096992, -3.541745608431244, -3.6614813978436156, -7.0, -7.0, -7.0, -3.7456992266025058, -7.0, -2.913886068299728, -3.1551841596940076, -7.0, -3.4268906288777257, -3.866582677063549, -3.255754786643044, -7.0, -7.0, -2.8846695179666737, -7.0, -3.66133934000604, -7.0, -3.766635886310268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.303352677683149, -7.0, -7.0, -7.0, -3.171912521004568, -3.5303277897780863, -3.2949069106051923, -3.2132520521963968, -7.0, -7.0, -7.0, -3.0500702643674384, -3.923036668670786, -7.0, -3.7246853882373596, -3.3495845998050275, -2.962369335670021, -7.0, -7.0, -2.961421094066448, -3.010087846998524, -7.0, -4.267746494644809, -7.0, -7.0, -7.0, -3.177824971864682, -3.125481265700594, -2.828981954007923, -3.2691625654317447, -7.0, -7.0, -7.0, -3.5750379762374167, -7.0, -2.7129301630395437, -7.0, -3.2907022432878543, -2.7014816356209272, -7.0, -7.0, -7.0, -7.0, -7.0, -3.278125892353155, -7.0, -3.461798557525109, -3.8380931384455983, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8606374167737547, -3.1815577738627865, -7.0, -7.0, -3.5039268041935103, -7.0, -7.0, -2.99563519459755, -7.0, -7.0, -4.173296366404801, -7.0, -3.166282067316571, -7.0, -7.0, -2.7980660232801418, -7.0, -3.1559430179718366, -7.0, -2.934119540809263, -3.2229764498933915, -3.5776066773625357, -3.3184807251745174, -7.0, -3.373095987078727, -3.2493537988389694, -3.13756508756235, -3.5692958622643274, -2.7708520116421442, -7.0, -7.0, -7.0, -2.641332438840177, -2.7489628612561616, -7.0, -3.8687619582120503, -7.0, -7.0, -7.0, -7.0, -7.0, -3.485153349903652, -7.0, -2.99370069482035, -3.3105694127898815, -7.0, -7.0, -7.0, -3.0236639181977933, -2.9644167839824984, -7.0, -7.0, -2.751279103983342, -3.017555014414844, -2.9160150455495546, -7.0, -4.192316504702737, -3.179188820411169, -7.0, -7.0, -7.0, -3.9176017753699286, -7.0, -3.5384480517102173, -7.0, -3.0870712059065353, -7.0, -2.478630145582756, -3.5609820555862357, -7.0, -7.0, -4.380211241711606, -7.0, -7.0, -7.0, -7.0, -7.0, -2.731627132118333, -3.7800291273373383, -2.9691245764056418, -3.4389377010955284, -7.0, -7.0, -7.0, -7.0, -7.0, -3.779704690689162, -3.1679668133956205, -7.0, -7.0, -2.927626962444954, -4.550057048211167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.483301952358167, -7.0, -3.1354506993455136, -3.373463721632369, -7.0, -4.073096393762054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.353820094897413, -7.0, -4.295325147042704, -7.0, -7.0, -3.4794121371941125, -7.0, -7.0, -2.9546283775072713, -3.335858911319818, -3.4802944600030066, -3.35869609957381, -3.400710636773231, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3197304943302246, -7.0, -3.805296916157985, -7.0, -7.0, -7.0, -7.0, -2.5591317907861515, -2.858386792552758, -7.0, -3.4885507165004443, -4.067795935294864, -3.192232822924277, -7.0, -7.0, -7.0, -7.0, -7.0, -3.17260293120986, -7.0, -7.0, -3.3432115901797474, -3.3501510667807066, -7.0, -4.13368426512856, -7.0, -7.0, -3.1936810295412816, -7.0, -7.0, -2.788521887222473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7152510288788494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4371160930480786, -7.0, -3.826722520168992, -3.85751341477669, -7.0, -7.0, -7.0, -2.703987002349199, -7.0, -3.587935348636356, -7.0, -3.637206111340114, -7.0, -7.0, -7.0, -2.540621409441836, -7.0, -2.6881527555915663, -2.534772444926707, -3.878981123393736, -3.348694190265541, -7.0, -7.0, -7.0, -3.2460059040760294, -3.2229764498933915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.453471233722936, -3.1152300105158863, -7.0, -7.0, -7.0, -4.092561159359732, -3.082066934285113, -7.0, -3.698231075449119, -7.0, -7.0, -2.3087583816224817, -3.4056877866727775, -3.685024785105714, -3.585686278452497, -3.528980940272137, -3.111262513659065, -3.601951404133522, -7.0, -4.652723254872325, -7.0, -7.0, -7.0, -7.0, -7.0, -2.901821443893775, -7.0, -7.0, -2.808346035740395, -7.0, -3.1381447441794874, -7.0, -3.752355804153501, -7.0, -3.28397928423848, -3.6822353569025643, -7.0, -4.860972511322973, -3.6996122849986963, -4.533239230579834, -7.0, -3.358315640082196, -3.304945993154212, -2.2977273601138957, -7.0, -7.0, -7.0, -3.3106933123433606, -2.5471266979833507, -2.925901165149684, -3.440279213235588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2327286876731725, -7.0, -7.0, -4.301257940436712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.120530060860654, -3.9296629703711963, -7.0, -3.6634182122526795, -4.317729133728953, -7.0, -7.0, -3.357710695004818, -7.0, -4.2023248128295485, -3.6034691597338386, -7.0, -4.024588277146048, -7.0, -5.0880669506065805, -7.0, -3.8410214152574884, -4.126131407261984, -7.0, -7.0, -7.0, -7.0, -3.778794976552835, -3.876160084825628, -4.683020006620726, -7.0, -7.0, -7.0, -7.0, -7.0, -4.462353068559615, -4.20227029773729, -4.319688893249499, -7.0, -3.9771197449137747, -3.7258930786484834, -3.9205928620848085, -3.7131544018372984, -4.341454309753056, -7.0, -3.8056015349439924, -3.0650815277143657, -3.5744942682853273, -3.1719572771940903, -3.851681614802406, -3.572147472450605, -7.0, -4.4472510844758615, -3.8614746688571686, -7.0, -7.0, -4.083556365821537, -2.0335075233494724, -7.0, -3.437834208405836, -4.073814191846539, -5.008000260913889, -7.0, -3.74170298395774, -7.0, -3.2591493237467004, -7.0, -4.929340575328879, -3.400192488592576, -7.0, -7.0, -3.7327354312288112, -3.4007263285869342, -3.4252789783622632, -3.667452952889954, -3.452348761457827, -3.8464608251293324, -3.9985807979185166, -3.7972121249212494, -2.929674317948588, -3.1980185268365826, -3.3676091497883256, -3.628899564420607, -3.6673731692458102, -7.0, -7.0, -3.9157479755368123, -4.0081954933208195, -7.0, -7.0, -7.0, -3.0806264869218056, -7.0, -2.344101045186752, -2.986473147467338, -2.5087907256424193, -7.0, -2.558365661331061, -2.581754942494377, -2.5306265232810774, -3.121395680707223, -2.641804498106114, -2.1247026428368407, -1.885361220031512, -2.9812006288632373, -2.350801612394977, -1.9931605754696946, -3.1425458840862763, -3.669409867287783, -2.048409430960333, -2.941594242145933, -3.268343913951065, -2.4896772916636984, -2.82013575187043, -3.1997551772534747, -2.6276218509897133, -2.270051437134896, -2.1799713887242653, -7.0, -2.3910955706122814, -7.0, -7.0, -3.3242391211845153, -3.2389377641260206, -3.3770609522814232, -7.0, -2.6849735288231216, -2.6233432833604797, -3.2638726768652235, -2.315476407977569, -7.0, -2.6532125137753435, -2.399294321418118, -7.0, -1.8920946026904806, -1.4018004294852757, -2.743313739231126, -2.5872297522473473, -2.582347494084358, -1.3364597338485296, -2.5100979751883425, -1.8567837983394515, -2.494154594018443, -3.2350231594952237, -3.6098077693287025, -3.061829307294699, -2.6582234545138173, -2.358382804215933, -7.0, -2.9602328731285126, -7.0, -3.1065308538223815, -7.0, -2.536242706838319, -2.669125374602297, -2.077179885446353, -2.5102576833804497, -3.0505730767551476, -7.0, -3.885756881069267, -7.0, -2.7015679850559273, -2.8555191556678, -2.442009159140952, -2.498749013677326, -1.5237464668115646, -2.7319914490189294, -2.4524253858850975, -2.8433433124477063, -2.636214267562268, -3.167169590408631, -3.063020444115889, -2.7701152947871015, -1.9160150455495546, -7.0, -2.2462446141581744, -2.939103062378906, -1.9028811413606512, -2.2920344359947364, -7.0, -7.0, -4.371640383837884, -3.243905770217521, -2.7732987475892314, -3.062707303658236, -2.980306438226822, -7.0, -2.6095655687376507, -3.1222280177113233, -1.4631105402768478, -2.5780021341872574, -7.0, -2.425968732272281, -7.0, -2.4688683796431086, -2.640481436970422, -3.437829806408219, -2.7415455167762097, -2.3397223955516253, -2.803229438326343, -1.7035306905732894, -2.457124626303409, -7.0, -7.0, -1.9530344572503566, -1.9978230807457253, -2.36285930295868, -2.3222192947339195, -3.24086112943202, -3.366982975977851, -1.7630875039477678, -7.0, -2.3554788867405914, -3.1099158630237933, -3.1550322287909704, -7.0, -2.885078384149224, -2.885785128783473, -2.8798601462734688, -2.826787238816292, -7.0, -7.0, -2.9132839017604186, -7.0, -2.8284450587956416, -3.1869563354654122, -7.0, -3.144750136698065, -3.228913405994688, -3.2195845262142546, -2.696465603994037, -3.2205003456147296, -3.0253058652647704, -3.0806264869218056, -3.100370545117563, -2.6135398090113924, -7.0, -3.233672845210665, -3.0542299098633974, -7.0, -3.018284308426531, -3.554489160003819, -7.0, -4.019697730980192, -4.020775488193558, -3.7265642161622448, -3.3710678622717363, -2.853736226085963, -7.0, -3.562015144502433, -2.7717052452427855, -3.705007959333336, -7.0, -7.0, -3.087460275326437, -2.3300143608606736, -3.208863467300243, -7.0, -7.0, -7.0, -3.544605409694115, -2.6032814432190676, -3.2942947280422334, -4.017325554561722, -2.673229066355951, -2.848202755608424, -7.0, -4.0327396052094935, -4.019407108018883, -4.083215862155997, -3.4550733759211245, -3.734519807346076, -3.5788735345046243, -3.5719028431953865, -7.0, -7.0, -7.0, -3.4781695335569047, -3.7288405683399715, -3.5144149205803688, -7.0, -3.1866738674997452, -3.557025722386383, -3.4724902344224757, -7.0, -7.0, -2.686099771995916, -3.4514026135974927, -2.010447450097471, -4.033021444682911, -3.0938884175896426, -7.0, -3.4530123911214554, -3.59402403573142, -2.3839067705717834, -3.1528317219727446, -2.238825325284622, -3.2562097835226953, -7.0, -3.7432745235119333, -3.6296474104571437, -7.0, -3.7480328941301435, -7.0, -7.0, -4.042260406689452, -2.4442997758061598, -2.8180210108772434, -7.0, -7.0, -2.552355286244995, -7.0, -3.343098976544499, -3.155427138639798, -3.7239479764316434, -4.104418820647595, -3.091736676786907, -7.0, -3.390581878550435, -7.0, -7.0, -2.0240724665968712, -2.9353632928474607, -4.03322264667025, -7.0, -3.4081721014970534, -7.0, -3.2732328340430454, -2.8749003837892295, -7.0, -4.069075809766398, -2.546989318695974, -3.1292708601213155, -2.628410218473732, -7.0, -7.0, -4.103187748850943, -3.4701531312754197, -3.24930320456868, -2.994976673649691, -4.028205119905443, -3.0018598590524785, -7.0, -7.0, -7.0, -2.8561244442423, -7.0, -3.190506781616284, -3.3619921087578137, -2.5192784084468745, -2.3934203469720283, -7.0, -3.3314677882910306, -3.452208248219225, -3.5825557388650933, -2.7139866398277115, -3.7467509290772156, -7.0, -3.784938081382093, -3.654176541877961, -2.978940969735289, -7.0, -3.697682586349585, -3.018069554387154, -7.0, -3.928190948038757, -7.0, -3.6741139861546683, -3.577491799837225, -3.8067225030761813, -4.1482940974347455, -7.0, -7.0, -1.583612163337186, -2.750810139591715, -7.0, -7.0, -2.888701812129037, -7.0, -7.0, -4.020112569565467, -2.7448280567121106, -3.417388646165674, -2.5983063786100478, -2.5033082439451104, -2.7211472552953344, -2.625958853800841, -7.0, -3.643329279843248, -7.0, -3.7281913985899466, -7.0, -4.029505525426577, -2.860676455064863, -7.0, -3.7302572532130167, -4.043676585602717, -2.926468642816955, -7.0, -4.018076063645795, -3.7759015788916743, -3.459279375509105, -7.0, -3.216655927791676, -3.2230135770130466, -3.495509648103409, -3.394381627679536, -3.3754075333087856, -2.8120959658119626, -3.2906281126259174, -4.0376654933508025, -2.714514051108974, -3.7329162073263795, -7.0, -7.0, -3.743979865241843, -4.032175376961363, -7.0, -4.021189299069938, -3.060060092379906, -7.0, -3.6186456812328025, -7.0, -3.2294827486062534, -2.5819281733903634, -4.0475085055940125, -2.8677325799583757, -3.187489385327816, -4.061829307294699, -3.4906255716095282, -3.366945663852573, -3.074121305906298, -4.056142262059052, -3.464079501542737, -3.854214921512205, -7.0, -4.165926549609097, -7.0, -3.499549625905149, -3.233721143084592, -3.550826031030187, -7.0, -2.132754928671835, -7.0, -2.5416347058561004, -2.924120174691022, -2.666892211066536, -2.5379814936848337, -7.0, -2.889777764467921, -3.787247880331954, -7.0, -2.7131053594927255, -3.0091586473368697, -2.507473984797903, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9800990996894745, -3.061389642585325, -2.737322108939681, -3.3425333465625737, -7.0, -3.431202884556517, -3.1347745687824307, -3.2765383925663363, -7.0, -7.0, -3.6075979772916353, -3.1652814310406994, -4.0678516605123525, -7.0, -7.0, -7.0, -7.0, -7.0, -4.02428037604708, -3.2252723503527463, -2.673941998634088, -7.0, -7.0, -7.0, -7.0, -3.198067680193197, -3.0861224464207355, -7.0, -4.043872912391425, -3.3258966620220436, -3.4729757345942285, -2.8068580295188172, -3.07240746953829, -3.2935098730581442, -7.0, -7.0, -1.5883647214454781, -2.8253539818184996, -1.80294087559935, -3.2661532687922707, -3.1156388335343226, -3.747489492258673, -7.0, -3.554125581513013, -2.9541547643169124, -3.0763042807313594, -2.269077790844336, -3.1404223298412495, -3.325233362316072, -2.9494275412788675, -3.74170298395774, -7.0, -3.7579271831133294, -3.3317308928154574, -3.1492533346704406, -7.0, -3.7298125071609354, -3.1048284036536553, -3.4272831961911443, -2.422127038242261, -4.019116290447073, -2.939447934040266, -3.225356280749977, -3.7555699806288, -2.9906120389336768, -2.808698501861456, -2.947083883460867, -2.8185435657769307, -4.02645154573824, -3.3530872831590104, -7.0, -4.046339055604809, -3.141951195862753, -3.376576957056512, -2.9567399759502986, -2.9159601514735285, -3.5083411471001154, -3.475053440975798, -2.676954760854566, -2.6113692154627337, -3.2990928815880203, -2.5860368997013805, -7.0, -7.0, -7.0, -3.3506356082589543, -2.9459914424728573, -7.0, -3.563639269509036, -3.3214258105330647, -4.030073230712518, -3.0826417781571314, -3.5569855749879813, -3.221877701616761, -7.0, -3.7514330818193473, -2.702676665373566, -7.0, -3.436220973274136, -2.7870807690048474, -3.1947717439536922, -7.0, -2.8865712918143793, -3.489977472033322, -2.972175602200704, -7.0, -3.2037320465140935, -7.0, -3.12830231716435, -3.1269427179442277, -3.4056024552093134, -3.304957028811091, -4.021891873919109, -7.0, -2.982340825938027, -4.030518764843543, -7.0, -3.442362164383881, -3.858115932190066, -3.3337293231565988, -2.375229755914513, -7.0, -7.0, -2.598013466981827, -2.84293686639324, -4.457154942486584, -2.809100386742738, -3.6755315934532256, -2.610647181831733, -3.039587604005866, -3.1329441849619486, -1.5492895682531027, -2.5549600128917778, -2.248287721868922, -3.6339731557896737, -3.226118985903011, -3.3313995058663104, -2.414328326814164, -3.5417040232842885, -3.4781334281005174, -2.4434754985754674, -7.0, -2.9653014978707772, -3.6612446089593336, -3.5989955722341023, -3.379879362206697, -2.566006465061365, -2.864147294190161, -4.1957198117305765, -3.5401260471738896, -3.4034980044519982, -4.087142279383808, -2.2391351005633666, -3.108048462345716, -3.312555128668243, -3.4505010436345014, -4.107006346381544, -4.076786033508079, -3.645520514905874, -3.766710207262259, -3.0516518159075736, -3.040550745877968, -2.193891013244078, -3.5713982332029914, -3.063455909025938, -2.581104556080377, -3.1010101904226492, -2.3805428677942175, -3.0636529945906887, -3.184691430817599, -2.8053644286916284, -2.716003343634799, -2.9127201197567394, -2.4356514252474963, -2.696283563298114, -2.7791754592501485, -4.064944426038617, -2.416933359904303, -3.2662839740877176, -3.5476106349355865, -3.0332896932905147, -2.9233735621008576, -2.4300511544770096, -7.0, -2.4384715316007095, -2.7042644827295077, -3.750948369230112, -3.7289621797138666, -3.2178931872102416, -7.0, -2.677128774472802, -7.0, -3.472452387696761, -1.910701486221636, -3.042395011075458, -4.021478732257528, -3.0132305819648155, -3.136931851267557, -2.6217016393133123, -3.1917924531631767, -2.234347416698314, -3.259779639261108, -1.7150023967551769, -3.0905786601228313, -7.0, -2.224120397960542, -2.7328022131463108, -3.4348881208673157, -2.9122632327080114, -4.034468022755043, -2.3196737645957173, -2.9868750434247, -3.6281552970774773, -7.0, -4.020692678682027, -4.017492446477275, -7.0, -3.703635237583896, -1.44360833679831, -2.185839694183446, -1.483485671315326, -2.703864326067068, -2.308196304976814, -1.1905309123113172, -2.114901864243015, -2.463856586950606, -2.7969006863964827, -0.8404898135031628, -3.3236645356081, -1.629136988000415, -1.7271583656818212, -1.970306441009925, -3.4820155764507117, -2.253473250403829, -1.878094420045513, -2.225309281725863, -3.2713768718940743, -3.259474419531075, -2.244744296231608, -3.4369970267054812, -2.332478065449526, -2.655360107882245, -2.0649877782305905, -7.0, -0.9610558337573624, -3.7216045442801375, -3.725339815909737, -2.801025316543808, -1.8397649061247883, -2.1928042040338416, -3.7176289019215365, -2.5852897810780693, -1.6739954057443227, -2.746673112470323, -1.939760173603782, -7.0, -2.1453328670424816, -1.3188443294618295, -7.0, -2.7703200637483674, -2.837307795588005, -2.0608122638773674, -2.220672589241897, -2.8601382850306134, -2.301665995794215, -2.149998186291342, -2.784260582566084, -2.085283143653935, -1.9298934287203138, -2.4282882881236194, -3.7207379770184255, -1.8384513851399538, -1.9490890981808844, -7.0, -1.1648593169081123, -7.0, -3.4246775029107854, -2.3974993739082215, -2.0508610740801623, -1.7005207901605823, -1.926735963784648, -2.146381194812135, -3.064233296034753, -3.3406423775607053, -3.151982395457474, -2.9952362102039363, -1.7975996627959798, -2.7095526127800826, -1.8578471069651707, -1.7624394624489559, -2.501173415058967, -4.018866863150907, -1.6571173838987634, -1.6822034347539272, -1.8152930583882103, -3.244524511570084, -1.6289763335903875, -2.3143090428641004, -2.825651857221624, -2.2462446141581744, -7.0, -2.162485955739945, -1.8091508569124712, -2.7308591487495004, -4.02197445511006, -4.018700498666243, -2.5015776958751967, -3.154863354315963, -2.279265624615706, -2.246163347678497, -1.2379289660703994, -2.549399993299562, -1.2948061551940808, -1.9204875806010393, -2.4044435823115102, -1.841583157038063, -3.561101383649056, -2.173298358871511, -7.0, -1.7806196381984027, -1.5696117214590237, -2.827956395600868, -7.0, -2.2675069615203176, -2.6700911622507957, -1.0848064277366656, -2.7212215815105543, -3.7322731057085923, -7.0, -3.0647075120616503, -3.5471591213274176, -3.322880573098306, -2.9117310971035075, -1.7999169191226552, -3.0257153839013404, -3.3798853986437485, -3.08082683498178, -2.6229310093415856, -3.026655813877043, -3.1294481922680633, -3.198499990015866, -2.6204563902137306, -2.170120274429075, -2.185409929405979, -1.8894676369974646, -2.514298659173731, -3.5593679094633317, -2.266056211278075, -3.2412973871099933, -2.634282198523119, -2.7572761297037145, -3.3183555502257036, -2.066666623656604, -3.198067680193197, -2.9621719559993496, -1.7853298350107671, -3.023458237643675, -2.396164462603818, -3.0232112923288885, -3.326949994165999, -2.320647574215737, -3.0666571634232116, -2.477452880802274, -2.6487727136426256, -3.7471786713601642, -4.017283821560018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.420698202908807, -7.0, -7.0, -3.63499934000661, -7.0, -7.0, -7.0, -7.0, -3.2244467303362647, -7.0, -7.0, -7.0, -7.0, -7.0, -2.18620267890855, -7.0, -7.0, -3.9286006598445242, -3.593874237290987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.587042737459709, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3651134316275773, -4.198983753867747, -7.0, -7.0, -2.735235868261925, -7.0, -2.834844405648704, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0890804641352507, -7.0, -3.4722077512253953, -4.002900068611387, -7.0, -3.689486448364248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.17805561153123, -3.250447110981036, -7.0, -7.0, -2.900093901543398, -7.0, -7.0, -7.0, -7.0, -7.0, -3.836612072683855, -7.0, -3.485153349903652, -7.0, -7.0, -2.940861147914118, -3.470116353151004, -7.0, -7.0, -7.0, -7.0, -7.0, -3.865991800126275, -7.0, -7.0, -2.856906803417547, -3.863382348440788, -2.950638636498252, -7.0, -7.0, -7.0, -3.27315566043433, -7.0, -7.0, -7.0, -4.254427221540668, -7.0, -7.0, -7.0, -4.122346966255079, -7.0, -7.0, -3.726808682524964, -3.3069073090904255, -3.7439172145663298, -7.0, -7.0, -3.712060142461075, -3.723701893991268, -2.327507119163714, -7.0, -7.0, -7.0, -7.0, -3.910304168068569, -7.0, -3.9719249491841913, -2.670483178363864, -7.0, -7.0, -7.0, -4.232373429428926, -7.0, -7.0, -7.0, -7.0, -3.6848453616444123, -2.693323823347178, -7.0, -7.0, -7.0, -3.287689783936075, -7.0, -7.0, -7.0, -7.0, -7.0, -3.161996525422446, -7.0, -4.257942430573135, -2.9832753825780216, -7.0, -7.0, -7.0, -7.0, -3.718169405391307, -4.182528775278964, -7.0, -7.0, -7.0, -7.0, -4.286265553793083, -7.0, -7.0, -7.0, -3.7274599208579087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3644178393114275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.78593457821307, -7.0, -3.514851216368609, -7.0, -3.9589459324939362, -3.119610411536237, -7.0, -3.0308526157493176, -3.584839865239925, -3.7280289544205187, -7.0, -3.7374312005145827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.106530853822381, -7.0, -4.412057146690156, -7.0, -2.8527848686805477, -7.0, -3.5034274846401083, -7.0, -3.738304793074105, -7.0, -7.0, -3.272445019048976, -3.783331762887424, -7.0, -7.0, -2.769574240376453, -2.5909452789636784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.476940260975887, -3.884228769632604, -3.285532305727194, -3.237124377704049, -7.0, -7.0, -7.0, -3.0136796972911926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.910948213864197, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.937166703715033, -7.0, -3.0914471173065543, -3.7151673578484576, -3.749736315569061, -7.0, -7.0, -2.8317098425969034, -2.9912260756924947, -2.325794612183868, -7.0, -2.8115671210045012, -7.0, -7.0, -7.0, -2.7186932752898665, -3.9702073588068547, -2.998225795694823, -7.0, -7.0, -3.733277533932582, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7795964912578244, -3.3912880485952974, -7.0, -7.0, -7.0, -2.5550474356478134, -3.588943642740015, -7.0, -3.4612170595896647, -7.0, -7.0, -3.886490725172482, -3.4565178578052627, -3.029485236506347, -3.2445863372491552, -7.0, -7.0, -7.0, -3.7877437716464666, -3.013794686966823, -7.0, -7.0, -7.0, -7.0, -3.3763944420372662, -3.4243915544102776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7077404542737713, -7.0, -7.0, -4.0344164421362345, -3.496129785515922, -4.057901706344098, -7.0, -3.5239631265725575, -4.432235498890437, -3.6897970549034977, -7.0, -7.0, -7.0, -7.0, -3.695043658821294, -7.0, -7.0, -7.0, -7.0, -3.499687082618404, -7.0, -7.0, -7.0, -3.916137983107175, -7.0, -3.2509929904658788, -7.0, -3.6321534835106326, -2.694252093463937, -3.336335493917067, -3.749388431581154, -3.2054750367408906, -3.6643520357957935, -2.643945912748067, -1.842240185272119, -3.4004567198107583, -2.2484416866839902, -2.8924220014861617, -2.396593009974529, -2.9636607158787847, -2.963199289389065, -3.083991358117948, -2.081597839444891, -3.446209130517621, -2.958316395227076, -2.4707024308114014, -3.385010124593375, -2.908270499495724, -7.0, -4.052204083450003, -3.0314277016763533, -2.1815879907462583, -2.5260490176773085, -7.0, -3.124363208685011, -3.2404584771500917, -2.665220071457662, -1.4459683637782925, -3.0044408002874246, -3.5344322734758764, -3.4924111373136824, -2.9252223797699557, -2.414061283620403, -7.0, -3.5777980724041525, -1.9439033000780936, -2.635871988956423, -2.812438617225954, -7.0, -3.361547557812611, -3.273471503089958, -3.759894374025499, -2.361465501680469, -2.9368256236283132, -3.7831886910752575, -2.5003513413022445, -7.0, -7.0, -3.4558826011997703, -3.701508905718383, -3.1947917577219247, -7.0, -3.0460350401114673, -7.0, -7.0, -3.399370820918436, -3.7390340870857917, -7.0, -7.0, -3.2595512186026316, -2.602411941428692, -4.709664209579645, -7.0, -7.0, -7.0, -3.2326542662501723, -7.0, -4.934722274046495, -3.351906688008789, -4.006915080181949, -7.0, -3.616160312847583, -2.7245865742611057, -3.8549332403885326, -2.5295307808865464, -2.9618308160440634, -2.559179629032332, -2.7381713171231103, -3.157444175325761, -7.0, -2.8965309686284746, -3.2922745358653924, -3.871222556759707, -4.076115148448237, -7.0, -7.0, -3.646913208595694, -3.770041554319669, -3.3462551493613857, -7.0, -7.0, -2.795482766475396, -2.9110122544187993, -1.7415820477549837, -3.307282047033346, -2.379546464195344, -2.3460594330525737, -1.948769918041402, -2.3435613799028485, -1.688607900299527, -7.0, -3.6530194510996132, -2.2695596400388207, -2.79309160017658, -2.537103861234642, -2.783958521961391, -2.3977571093297247, -2.4296054845026487, -2.1925111879673103, -2.2481962673843716, -1.9878764752313967, -1.8917409426693867, -2.100090986381226, -2.121744173030045, -2.3733718171813005, -2.164352855784437, -3.7500453120117676, -3.554004321011903, -7.0, -2.199125362687427, -2.5224442335063197, -3.64777405026883, -2.2856890592745738, -2.217655493624378, -1.849699039591056, -3.151574127994361, -2.2109869738321453, -3.6183619311098782, -2.2036819649870214, -3.827756862978617, -3.3234583668494677, -7.0, -2.3399176726790794, -3.3337494624819706, -2.9492924014120256, -2.469190620933241, -3.431202884556517, -1.020829485891193, -2.6301504001043488, -1.7561179536256082, -7.0, -2.902456178608144, -3.2776092143040914, -1.8510599199240134, -1.7559902827779956, -2.6348801407665263, -3.2604291755779347, -3.8507074853745373, -2.9201978896837995, -1.7801460365337847, -2.0639897471525535, -2.60569674355833, -2.169885344384398, -3.7740057302582093, -2.330748972067424, -3.348629326628365, -1.246613541615036, -2.888580615662831, -2.4209637116600056, -2.528434597195507, -7.0, -1.8596286553271737, -2.1264370197877, -3.4743619760326307, -2.750079631382911, -1.8025625849883842, -7.0, -3.2225864233903896, -2.0750063044594707, -3.2984709911247934, -3.0872133412316147, -2.7456556904908056, -2.7848765342355013, -3.120714913022346, -2.939103062378906, -2.162485955739945, -7.0, -2.0644579892269186, -2.0139544368112854, -7.0, -7.0, -2.1213337939445793, -1.5093059380910636, -2.7914274668192127, -1.6390359691991763, -2.193720747359399, -2.2772024156793007, -1.7056024795477285, -2.891080064811009, -1.913548957906518, -7.0, -2.442387532793123, -7.0, -2.782984220976423, -3.613471827163333, -3.9265996539070276, -1.8280924946729211, -7.0, -3.271066772286538, -3.4055171069763763, -2.014307391119922, -7.0, -2.885078384149224, -3.632356046239073, -3.631240780235509, -3.6429588794097905, -7.0, -2.6465017500316117, -1.4477083517730727, -1.9761165933464382, -7.0, -7.0, -2.182396242715304, -7.0, -7.0, -7.0, -3.0709609158009337, -3.4954055631461936, -7.0, -3.2664668954402414, -1.9430504992721556, -2.9652539784237364, -3.080355870349396, -7.0, -2.8166028104026988, -7.0, -7.0, -3.317190430361258, -7.0, -7.0, -2.951580344903392, -1.7694049362660398, -3.8036619232362243, -7.0, -7.0, -7.0, -7.0, -1.8592133762958247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3941013020400446, -3.337459261290656, -7.0, -7.0, -3.7594007119061725, -7.0, -7.0, -7.0, -7.0, -4.2316224841065795, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3534353378561645, -3.927319024959656, -7.0, -2.775893494557353, -4.110320296840297, -7.0, -7.0, -7.0, -7.0, -3.328787200354535, -7.0, -4.0921180144435105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.143723465259768, -7.0, -7.0, -7.0, -7.0, -2.931118710592187, -3.1789769472931693, -7.0, -7.0, -7.0, -2.61874519875888, -3.9123868126570245, -7.0, -3.4659278562887446, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9813655090785445, -3.285557309007774, -7.0, -7.0, -2.868840287093479, -3.616820471794698, -7.0, -7.0, -3.5150786750759226, -7.0, -7.0, -7.0, -7.0, -3.5363058723510337, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1389865023728007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153082804361832, -7.0, -4.049799277918987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.172281761455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3492775274679554, -3.3994141053637703, -3.6924944075030846, -7.0, -7.0, -7.0, -7.0, -3.443610631649284, -2.191031608848618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.76015850899809, -7.0, -7.0, -2.7556208080010745, -4.395155962401246, -7.0, -7.0, -7.0, -7.0, -7.0, -2.992658696801893, -3.570776368794748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058539897939781, -3.4847979243318843, -4.176525336535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.083789188287978, -3.872272846224205, -7.0, -7.0, -7.0, -4.250017239260571, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.885193069546282, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9601376748637946, -7.0, -4.297147471801269, -7.0, -7.0, -4.099578979292946, -7.0, -7.0, -7.0, -7.0, -3.492061604512599, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4348881208673157, -7.0, -7.0, -2.6076625217766205, -7.0, -2.965000000666886, -7.0, -3.074816440645175, -7.0, -7.0, -3.496445291873353, -3.473632926873841, -7.0, -3.500099191915723, -3.328639027551356, -2.992387809283771, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.041424605049602, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2382035881544415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.744840396785379, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.153936754460935, -7.0, -3.698162707576105, -7.0, -3.762886868437604, -7.0, -7.0, -7.0, -3.7224693858840308, -7.0, -3.2159458392045663, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.930066690773242, -3.9320169064342014, -7.0, -4.00114935814922, -7.0, -7.0, -7.0, -7.0, -3.512550992904211, -3.5949447366950835, -7.0, -7.0, -3.3096301674258988, -3.1812717715594614, -4.573591603576932, -7.0, -7.0, -7.0, -7.0, -3.807940721215499, -3.688330818112266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.861468694204958, -4.400157923390449, -4.112240278641509, -7.0, -3.8409212001987716, -3.9802389553242405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9109310770872527, -7.0, -7.0, -3.824949798930412, -4.777223765819916, -7.0, -7.0, -4.7187424355110865, -3.0845584053656787, -3.3154980294974736, -7.0, -3.340013289599537, -7.0, -3.1936810295412816, -7.0, -4.724832720466561, -4.699863730746263, -3.1739143398014065, -7.0, -4.203078237036357, -3.4346513050366094, -7.0, -4.0262880620239425, -7.0, -5.088214077441379, -7.0, -3.5409048153170177, -4.12881914219451, -7.0, -4.66505539251443, -7.0, -7.0, -3.82516637225655, -3.8785505177314277, -4.081653294769661, -4.338017993470888, -4.212453961040276, -7.0, -7.0, -7.0, -7.0, -3.9034427079849827, -4.144439280361414, -7.0, -4.375873853024666, -3.706888394981618, -3.9248992640142837, -3.7200765727681406, -7.0, -7.0, -4.538314788965302, -4.023417089841105, -3.5839917991983166, -2.883231607770849, -4.267120079501657, -3.988005704058146, -7.0, -7.0, -7.0, -7.0, -7.0, -4.085040706742194, -3.7293268096468606, -7.0, -3.693612645861557, -4.146493084391314, -4.861939586069795, -7.0, -3.7481880270062002, -7.0, -3.9588981947107715, -7.0, -5.105576601200196, -3.500030534183874, -3.633998375410592, -7.0, -3.294786768279219, -3.23914300480277, -3.4258672276790443, -7.0, -3.9317882969633793, -7.0, -2.8004661324505897, -7.0, -7.0, -4.101997329797019, -4.005113751523483, -7.0, -3.780616977232055, -7.0, -7.0, -4.138513214157753, -4.009960531470598, -7.0, -7.0, -7.0, -2.2017384166617116, -3.4686426683915115, -2.737597390620243, -3.4763968267253302, -2.998940114940036, -2.535610545908793, -2.5140494227353822, -2.283784282700699, -2.3814622108393566, -3.13481437032046, -7.0, -1.7387948376762659, -2.6229044753882, -2.34499385193559, -2.83803909146875, -2.1808033611434947, -2.6097468199942533, -2.9722645673937236, -1.2646125313574494, -2.3083180985067657, -2.683947130751512, -3.2135177569963047, -2.9808471031895913, -1.9337003600874467, -1.8991237997743422, -3.101403350555331, -3.6093809442507068, -2.449092531119419, -1.7087205168985131, -2.397592434038117, -7.0, -3.2235716481850916, -3.0206850232239995, -2.8572763824080747, -7.0, -2.334202350575515, -3.3692622539148505, -1.6862127738782688, -3.2586372827240764, -7.0, -7.0, -2.6751200346244075, -2.304275050477128, -2.6554585929400747, -2.4513677038686126, -3.0610753236297916, -2.1449332770652947, -2.250420002308894, -2.104163534134702, -3.3085644135612386, -2.6286443222846065, -3.4138025167693513, -3.539786789252412, -2.5785326019327033, -2.4878451201114355, -3.1453000192560077, -3.3002693145303565, -7.0, -2.8442996228070254, -2.360376996726634, -1.8434622773199978, -2.570136677474439, -3.153052275067109, -2.857588141136608, -3.0790605919332488, -1.97657921864011, -2.8898617212581885, -2.9245377177754897, -3.2880255353883627, -7.0, -2.067124016518159, -1.8695250628572273, -2.677910974071308, -3.149465450995452, -1.9729269308656483, -7.0, -2.798148207810744, -3.3151703553952925, -2.605753836593265, -3.480581786829169, -2.312236026195126, -2.780197258377976, -3.4883391579275007, -1.9028811413606512, -1.8091508569124712, -2.0644579892269186, -7.0, -2.1318324445562005, -7.0, -7.0, -3.1684974835230326, -2.599155000684555, -2.6676863818028047, -2.5483894181329183, -2.601895837393877, -2.849265817161557, -1.6458759840538448, -2.396443216311737, -1.8307405759693782, -2.69810054562339, -2.514813294999285, -3.0963885466873666, -7.0, -3.4079854213081364, -2.726808682524964, -3.045948538105334, -7.0, -3.0979510709941502, -7.0, -1.9768742733499245, -3.2581581933407944, -2.4802944600030066, -7.0, -2.370698092575577, -7.0, -7.0, -2.429752280002408, -2.483990181949066, -1.7658547474657904, -2.9566485792052033, -3.197831693328903, -1.937676229923422, -2.8353734524700087, -7.0, -7.0, -1.9450306778782789, -3.0225658278987413, -2.895422546039408, -2.6111437334348, -2.134692413648349, -2.872239542709607, -2.6327103038329542, -7.0, -2.660549282517093, -2.606112535339159, -7.0, -2.7212428392417465, -2.9481683617271317, -7.0, -2.0222763947111524, -2.3830455675834847, -2.25433319950825, -2.807873132003332, -7.0, -2.2642273477562327, -3.089551882886454, -2.01983661903724, -2.670802284260944, -2.9763499790032735, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.004536317851323, -7.0, -7.0, -4.905258749576383, -7.0, -7.0, -7.0, -7.0, -4.227732489846626, -7.0, -7.0, -7.0, -7.0, -7.0, -2.746925965479895, -7.0, -7.0, -3.2415464805965484, -3.500452781846228, -7.0, -7.0, -7.0, -3.126780577012009, -3.296665190261531, -7.0, -4.392292361088971, -2.9457147140598603, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1431928557306, -7.0, -7.0, -7.0, -7.0, -3.6970548922725746, -7.0, -7.0, -7.0, -7.0, -3.371437317404101, -3.406194097216772, -7.0, -3.6345276494290326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0974233099838835, -7.0, -7.0, -7.0, -7.0, -7.0, -2.646047089387669, -7.0, -7.0, -4.428371322869534, -7.0, -3.1559430179718366, -7.0, -7.0, -7.0, -7.0, -3.1344958558346736, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3847117429382823, -7.0, -3.8700933294312776, -7.0, -3.742764396661798, -7.0, -7.0, -7.0, -3.3771240423464564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.00026049854739, -7.0, -7.0, -7.0, -3.6872613462435067, -4.087852375163169, -7.0, -7.0, -7.0, -7.0, -2.600955339568225, -3.238798562713917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8558143392341657, -3.1806992012960347, -7.0, -7.0, -4.394491080756056, -7.0, -3.5296869537729165, -7.0, -7.0, -7.0, -3.270700005235491, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4504415720858184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.549211771460929, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.910464315995614, -7.0, -7.0, -3.9480276519900452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9528408566757016, -7.0, -4.293804359919337, -7.0, -3.2897375563017555, -3.7312183500213, -3.236537261488694, -2.773217411418584, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2895889525425965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1922537448805817, -7.0, -7.0, -7.0, -3.0461047872460387, -7.0, -7.0, -3.0874264570362855, -7.0, -7.0, -7.0, -3.589241947538832, -7.0, -7.0, -7.0, -3.1245042248342823, -7.0, -7.0, -7.0, -7.0, -7.0, -3.641027688177414, -3.644635503768153, -3.849265817161557, -4.079933035415702, -7.0, -7.0, -7.0, -2.9818186071706636, -7.0, -7.0, -3.435525851498655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3016415253209725, -7.0, -7.0, -7.0, -7.0, -3.210853365314893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5521813388393357, -7.0, -7.0, -7.0, -3.628368492182033, -3.4219328132785085, -3.84244697285584, -7.0, -3.1839644940529617, -7.0, -7.0, -7.0, -2.840022407303227, -7.0, -3.5105003274058215, -2.681618065583093, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.442793225939769, -7.0, -3.29269900304393, -7.0, -7.0, -2.925949152253038, -7.0, -7.0, -4.298918543005097, -7.0, -7.0, -3.3473300153169503, -3.39375064034808, -3.38070858592305, -3.577836341292744, -3.8256857080217586, -7.0, -3.5943925503754266, -3.4602963267574753, -4.652678808009644, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3733718171813005, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.747023177451628, -7.0, -2.966610986681934, -7.0, -7.0, -7.0, -4.397522885718343, -4.671508966732346, -7.0, -7.0, -4.419001068534885, -2.9700146181755556, -7.0, -7.0, -7.0, -7.0, -3.221283799492686, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0338658673479, -7.0, -7.0, -3.2030981895457566, -4.1740161724638165, -7.0, -7.0, -7.0, -3.9063530023303885, -3.4324882557705063, -7.0, -3.364727190106312, -3.525044807036845, -3.179360261070836, -7.0, -4.422540597322725, -4.3981571016442675, -2.3047285625735836, -7.0, -4.076740541926454, -2.875174992292159, -7.0, -3.722057771331464, -7.0, -5.388978144868233, -3.8098738192491894, -3.3347301238021214, -4.123884293460008, -7.0, -4.061509024166617, -3.5993917577937564, -7.0, -3.363091034829397, -3.0606106822139933, -7.0, -7.0, -4.208387603795154, -3.398287305357401, -7.0, -7.0, -3.9841370981421775, -3.8993005694607925, -4.318970646636086, -7.0, -7.0, -4.165073602671241, -7.0, -7.0, -7.0, -7.0, -4.060760777022355, -4.017116849438813, -7.0, -3.671897605098547, -3.789190423837699, -3.5093459189172926, -7.0, -4.44617976779828, -7.0, -7.0, -7.0, -4.38338444699495, -3.7168377232995247, -7.0, -4.3920547074108764, -3.9088728605363263, -5.229793579223345, -7.0, -7.0, -7.0, -2.8046192945802098, -3.5168657614978143, -5.406351093443442, -3.619788758288394, -7.0, -7.0, -7.0, -3.7422536699065936, -4.7868294745969555, -3.6609602917760835, -4.228990310840724, -7.0, -3.670747763693703, -4.194278399010635, -7.0, -3.167676636159579, -2.8468930643543624, -7.0, -4.7465913900240135, -7.0, -7.0, -3.915019727210068, -4.307795448115974, -7.0, -7.0, -7.0, -3.0549958615291417, -3.4572761860613257, -2.6558947921952347, -7.0, -3.5975032204392736, -3.0888445627270045, -2.4365160192993924, -2.670458463029679, -2.2971036501492565, -7.0, -7.0, -3.0894105109835444, -2.56702636615906, -2.836124511281903, -3.6703386411274423, -2.227601078505448, -2.732715340349993, -2.842297134328065, -2.380211241711606, -2.598874647901013, -2.950364854376123, -2.6928469192772297, -2.9708779609577287, -2.8788089323592057, -1.9020028913507296, -2.595863489908268, -3.5928426831311002, -2.688864568054792, -2.43003472172494, -3.0433622780211294, -7.0, -3.1106222893084463, -3.0426660978826257, -2.978089173056143, -7.0, -2.195240531806313, -7.0, -2.2890436366441214, -3.5413295776666933, -7.0, -7.0, -3.184691430817599, -3.0281644194244697, -1.8961586385578335, -1.5890769857909857, -7.0, -2.294302896155191, -2.864511081058392, -1.7119052749795018, -7.0, -1.7134036349493234, -3.3875677794171883, -2.930567009900929, -2.6769355639062264, -2.5563025007672873, -7.0, -7.0, -3.413132050434872, -2.931786802387928, -2.3171675742837645, -3.0824263008607717, -2.694243781641912, -3.4305587695227575, -2.768337370331206, -3.5379449592914867, -2.3475251599986895, -2.86053763630648, -2.581209852354842, -3.580696939712437, -7.0, -2.634544441219856, -1.8224949852787509, -7.0, -7.0, -2.10187590011488, -7.0, -7.0, -2.945106673042623, -2.9734049744100606, -2.678518379040114, -2.954913364149901, -2.33306924358772, -2.6629756505352096, -2.2920344359947364, -2.7308591487495004, -2.0139544368112854, -2.1318324445562005, -7.0, -3.0362295440862943, -7.0, -3.290776361298428, -2.757142869659127, -2.932727367301529, -2.928779787288558, -2.912335949924013, -2.8252637950292847, -2.5220963108104413, -3.251893612682507, -2.275609912017191, -7.0, -2.6954816764901977, -3.370513089598593, -7.0, -7.0, -3.7157527168228595, -2.829303772831025, -7.0, -7.0, -7.0, -1.7360776370039457, -7.0, -7.0, -7.0, -2.4082399653118496, -1.5023467769110552, -2.433769833924866, -2.03085721245529, -2.837840861655523, -2.5738382050519886, -2.8063495871404673, -7.0, -1.772908194971272, -7.0, -7.0, -7.0, -2.688419822002711, -3.478854967528663, -7.0, -3.3483373203167313, -2.65479514613498, -3.705521613422667, -7.0, -7.0, -3.122652684426726, -7.0, -7.0, -3.505895781219751, -7.0, -7.0, -2.4768984824747657, -2.395527999795712, -3.015778756389041, -7.0, -7.0, -7.0, -3.0322157032979815, -2.5569052690554477, -3.3422252293607904, -7.0, -7.0, -7.0, -7.0, -7.0, -2.374748346010104, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.728867596032789, -7.0, -7.0, -7.0, -7.0, -7.0, -4.03322264667025, -3.396896449142524, -7.0, -3.167415803058745, -4.229180184178066, -2.975891136401793, -7.0, -7.0, -3.2692793897718984, -7.0, -7.0, -3.7505083948513462, -2.975891136401793, -7.0, -7.0, -2.1832698436828046, -7.0, -2.3607826898732798, -7.0, -7.0, -3.313234291694724, -7.0, -4.53859886586218, -7.0, -7.0, -7.0, -3.0265332645232967, -7.0, -7.0, -2.9708116108725178, -7.0, -7.0, -3.184975190698261, -3.952953800832277, -7.0, -3.8922059459757725, -7.0, -7.0, -7.0, -3.4044916177586857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.146205581340778, -7.0, -7.0, -3.3619166186686433, -7.0, -7.0, -2.4928677946121267, -7.0, -7.0, -7.0, -7.0, -3.3106933123433606, -7.0, -7.0, -3.5621738633646483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.451661090997188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.963079160641827, -7.0, -7.0, -7.0, -3.607025878434786, -4.073039808062093, -7.0, -7.0, -7.0, -7.0, -4.3808983308391545, -7.0, -7.0, -7.0, -3.5160062303860475, -7.0, -7.0, -4.166755638665237, -7.0, -7.0, -7.0, -7.0, -4.691929792837514, -7.0, -3.409087369447835, -7.0, -7.0, -7.0, -3.1803244198726213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4176377396522297, -7.0, -7.0, -3.6634182122526795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3564083270389813, -7.0, -2.606650028578439, -3.5631249603380444, -7.0, -7.0, -4.173206210830642, -7.0, -7.0, -7.0, -2.924795995797912, -7.0, -7.0, -7.0, -3.9111576087399764, -7.0, -7.0, -7.0, -7.0, -4.051943183341951, -7.0, -7.0, -3.5589484459780394, -7.0, -3.0273496077747564, -7.0, -2.909556029241175, -7.0, -3.1455071714096627, -3.607025878434786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.588980942047111, -7.0, -3.7401257369657306, -7.0, -7.0, -7.0, -7.0, -2.5460488664017342, -2.8236915393984545, -7.0, -7.0, -4.352008765565775, -3.5378190950732744, -7.0, -7.0, -7.0, -2.44870631990508, -2.586587304671755, -2.776701183988411, -7.0, -7.0, -7.0, -7.0, -7.0, -5.712781821516307, -7.0, -2.4369573306694496, -7.0, -7.0, -7.0, -2.5327543789924976, -2.8018608621457806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7652263375961468, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8674674878590514, -7.0, -7.0, -7.0, -7.0, -3.7649229846498886, -3.800235789327354, -7.0, -7.0, -7.0, -3.465042761781937, -7.0, -4.053974292150365, -7.0, -4.106972399886674, -7.0, -7.0, -7.0, -3.6804714924842656, -7.0, -3.9494875899465036, -3.6960067152185454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2170099098042058, -7.0, -7.0, -7.0, -5.131169383089324, -3.8795546009389743, -7.0, -3.979548374704095, -7.0, -7.0, -3.560026248912892, -7.0, -3.944285220688753, -7.0, -2.864733511015573, -2.5284024379536176, -2.7925317619013077, -7.0, -5.828258923405385, -7.0, -7.0, -2.1492191126553797, -7.0, -7.0, -7.0, -7.0, -7.0, -3.368100851709351, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.383007041822538, -5.273107805909014, -7.0, -7.0, -4.318672590050602, -3.7576996250877386, -7.0, -2.977266212427293, -7.0, -3.505421327583281, -3.766635886310268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.620656479819621, -2.427323786357247, -3.5966245817491806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.878917994607827, -7.0, -7.0, -7.0, -7.0, -7.0, -4.578432899740808, -7.0, -7.0, -4.921285803587237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325022800270452, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9814108401658883, -7.0, -7.0, -4.660495506382359, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.010475222427599, -7.0, -7.0, -3.665299499499897, -7.0, -4.352225945388225, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.243345668375362, -4.954768170059357, -7.0, -5.046028622812387, -7.0, -7.0, -7.0, -4.289878682790416, -7.0, -7.0, -7.0, -7.0, -7.0, -3.988097961819528, -3.0043213737826426, -3.5743785644130823, -7.0, -7.0, -3.4340496757326173, -7.0, -2.396697391280942, -7.0, -3.7267272090265724, -7.0, -3.7953655080278454, -3.586587304671755, -7.0, -7.0, -7.0, -3.2645817292380777, -7.0, -7.0, -7.0, -3.457503426573305, -7.0, -2.910090545594068, -3.1917303933628562, -7.0, -7.0, -4.001041057986094, -7.0, -7.0, -4.593640448502303, -4.394661772492929, -4.485060967233931, -7.0, -3.399846712712922, -2.8087821056864235, -7.0, -3.4243915544102776, -7.0, -3.1360860973840974, -3.2026616633987213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6913762288033705, -7.0, -2.5634810853944106, -3.2095150145426308, -3.9744195738522863, -7.0, -7.0, -3.030599721965951, -2.8773713458697743, -7.0, -3.836893516376434, -7.0, -7.0, -7.0, -2.669316880566112, -3.3508312293578544, -3.118595365223762, -3.564547711755948, -7.0, -7.0, -7.0, -2.106530853822381, -7.0, -7.0, -3.2776092143040914, -3.4833733060890273, -3.0906107078284064, -7.0, -3.2976875755910435, -3.6277651419682626, -2.987219229908005, -2.0028137792246734, -3.0205139306557727, -3.4239009185284166, -2.810568529216413, -7.0, -4.02197445511006, -7.0, -7.0, -3.0362295440862943, -7.0, -7.0, -4.354895604711061, -7.0, -7.0, -3.41161970596323, -7.0, -7.0, -7.0, -4.543298040491669, -7.0, -7.0, -7.0, -3.1835545336188615, -7.0, -2.7712724322770126, -3.1635588985580028, -7.0, -7.0, -7.0, -7.0, -3.7884865485608397, -2.3185850100788254, -7.0, -7.0, -7.0, -7.0, -7.0, -2.57978359661681, -7.0, -7.0, -3.2420442393695508, -2.478566495593843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.099335277685958, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1938200260161125, -7.0, -7.0, -7.0, -7.0, -3.360593413565249, -7.0, -7.0, -3.300378064870703, -7.0, -3.6285932558512592, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1541195255158465, -7.0, -7.0, -7.0, -5.203856611783906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.031630604606654, -7.0, -7.0, -7.0, -4.872580449939517, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.140429473253813, -7.0, -7.0, -7.0, -7.0, -3.6104472214421213, -7.0, -7.0, -7.0, -7.0, -7.0, -4.906857389645695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2996162399984135, -7.0, -7.0, -5.124442271503, -7.0, -7.0, -7.0, -7.0, -3.8585973449946924, -7.0, -2.665580991017953, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1832698436828046, -7.0, -5.229635774460915, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1711411510283822, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752148362489249, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6908603082720437, -7.0, -7.0, -7.0, -4.362312795326511, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.806179973983887, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.558408539791075, -7.0, -7.0, -5.150860780769569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.694605198933569, -5.051860327904435, -7.0, -7.0, -7.0, -3.0784568180532927, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7621907399180134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.240466042135798, -2.9827233876685453, -7.0, -7.0, -7.0, -3.532818053867167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.712700198049791, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.095906254104675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.308713776639004, -7.0, -4.530135638245461, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9456162792267317, -3.3878345723908105, -7.0, -3.101403350555331, -7.0, -7.0, -7.0, -3.4077307280263356, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.130915654808137, -7.0, -7.0, -4.278822168352688, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.82820796944373, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5828584622244994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.381584334652752, -5.574094380606331, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.591665521925527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.401320108429818, -7.0, -7.0, -7.0, -7.0, -7.0, -4.100359055693578, -7.0, -7.0, -4.61983392256601, -7.0, -7.0, -7.0, -7.0, -7.0, -4.527784518264025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.667200708661177, -7.0, -3.866877814337499, -7.0, -7.0, -7.0, -5.234651398044672, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.990161192898479, -5.487490478067235, -5.405118308515801, -7.0, -7.0, -7.0, -4.351844602085498, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3150041726848976, -7.0, -4.780396529447265, -7.0, -7.0, -7.0, -4.896438026915203, -7.0, -7.0, -7.0, -4.954387250144515, -7.0, -4.6479225684382985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8619523749214517, -7.0, -3.3958794676543818, -7.0, -7.0, -3.7336586083863925, -7.0, -7.0, -7.0, -3.720242018287057, -7.0, -3.840586982890639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8656960599160706, -3.1690863574870227, -7.0, -7.0, -3.9976047874604546, -7.0, -2.4712917110589387, -7.0, -4.792346156238286, -4.785543369956593, -7.0, -7.0, -3.919862253555538, -7.0, -7.0, -7.0, -7.0, -3.162862993321926, -7.0, -7.0, -3.3176455432211585, -7.0, -7.0, -7.0, -7.0, -7.0, -2.816241299991783, -7.0, -3.970765159780768, -4.1854004831904525, -7.0, -7.0, -7.0, -7.0, -4.135482491335711, -7.0, -7.0, -7.0, -2.775974331129369, -3.6563114131651067, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2702905531667605, -7.0, -3.2591158441850663, -3.7788744720027396, -7.0, -7.0, -7.0, -3.781919421864166, -2.8811563210755637, -7.0, -3.2979355063596474, -2.4538277764478607, -7.0, -7.0, -4.018700498666243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.224053701674689, -7.0, -4.151093922785061, -4.542314924348526, -3.6278776945799716, -7.0, -7.0, -2.8588378514285857, -7.0, -3.3080305542661055, -2.9333860419030544, -7.0, -7.0, -7.0, -7.0, -3.347507423196012, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.778295991088834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.754348335711019, -3.3246939138617746, -3.1172712956557644, -4.0965972083578945, -3.258876629372131, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.493778599541865, -7.0, -7.0, -3.4802944600030066, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354050785610767, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0195483874768687, -4.4367349657907065, -7.0, -7.0, -7.0, -3.329217026937669, -4.370272467849528, -7.0, -7.0, -7.0, -7.0, -2.7783792447073528, -3.5206290737883683, -7.0, -3.3484346775706944, -3.044724692093926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2475322959136936, -7.0, -4.356083249147294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.785792361435081, -4.360669133987706, -3.2608705827096878, -7.0, -7.0, -4.385695625410561, -4.068853493671498, -3.5204507792823576, -7.0, -7.0, -7.0, -7.0, -3.9013129873424166, -3.004021960672549, -3.9196010237841112, -4.479676062868145, -4.452905258057521, -7.0, -7.0, -4.3964260280181024, -4.0651687517057455, -7.0, -7.0, -7.0, -7.0, -4.111363344325131, -3.088801396163152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3466239745960986, -7.0, -3.48440661994362, -7.0, -7.0, -4.171331460918497, -7.0, -4.360157764747342, -7.0, -7.0, -7.0, -4.101472117000238, -7.0, -7.0, -4.076349117493459, -3.015604410495885, -7.0, -3.9113041251051985, -4.3553940446231705, -7.0, -7.0, -3.679954545361563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.352651027608356, -7.0, -7.0, -7.0, -7.0, -4.061018722050734, -4.36321698715741, -7.0, -4.069242472185548, -7.0, -3.1889753306927693, -3.7649416395104787, -4.353570041598004, -7.0, -7.0, -4.12119860258469, -7.0, -3.3380344158933815, -2.854852362417834, -7.0, -7.0, -7.0, -2.703670619430989, -7.0, -3.7947319638135193, -4.418168662067866, -7.0, -7.0, -3.2257433592051816, -4.400088784732035, -7.0, -7.0, -3.4271136315361073, -7.0, -7.0, -7.0, -7.0, -7.0, -3.671212526660277, -3.9623219727295846, -3.86223874654393, -3.5277587525209717, -7.0, -4.172033422048232, -7.0, -7.0, -7.0, -3.8263599174077894, -4.1591459278540475, -7.0, -7.0, -7.0, -3.5513051073181363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.835421213289978, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.530185463473508, -7.0, -3.0015226545932983, -7.0, -7.0, -2.662284635697243, -3.521623683742995, -3.128253833270144, -3.4146224299225225, -3.896673161995069, -3.7871238189802026, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.167592989776093, -7.0, -3.8327004709605674, -7.0, -4.144106973049323, -7.0, -7.0, -7.0, -7.0, -4.1410576338867795, -7.0, -7.0, -7.0, -3.049101678208557, -3.5120466546965416, -7.0, -7.0, -3.6604480513212954, -7.0, -7.0, -7.0, -7.0, -7.0, -3.065852517288246, -7.0, -2.6367691316157806, -2.8356307249148243, -7.0, -7.0, -7.0, -4.370587100246676, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8809643628019734, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062769949815128, -7.0, -4.365207100231824, -7.0, -7.0, -4.1491112956784875, -3.3433934428512173, -4.077803798076088, -7.0, -7.0, -3.455179975545529, -4.082677680648112, -2.740726384592418, -7.0, -2.1760134858627667, -7.0, -4.358486888100237, -7.0, -7.0, -7.0, -3.591940663624408, -3.8346590868996135, -7.0, -4.375059753585813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.372819981678968, -7.0, -7.0, -7.0, -4.386070702406175, -3.3395650046154235, -7.0, -7.0, -7.0, -2.874280210118406, -3.6981440599245037, -7.0, -3.5034030276792736, -7.0, -7.0, -7.0, -3.4774106879072515, -2.567152449621088, -2.955670573321319, -7.0, -7.0, -7.0, -7.0, -2.8875728691520535, -7.0, -7.0, -7.0, -7.0, -3.8423283549514857, -4.118578839244122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.433593841021467, -7.0, -7.0, -4.11882666293329, -7.0, -3.718118617465126, -4.0656170557268725, -2.9059469355947005, -3.8877860348383715, -4.452323216977515, -3.080286255966738, -4.448690864310427, -7.0, -7.0, -7.0, -4.40784960347914, -4.450526229129723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9679754116075565, -7.0, -7.0, -2.3892159144927385, -3.131169383089324, -3.0533345888650136, -3.943412067973837, -3.1188136852015997, -2.9603851469606433, -2.5405650003943974, -3.338392454638033, -2.6996643202023733, -3.137464198692464, -2.9103241897893297, -2.9438138538855756, -2.921563734812705, -2.835737134448514, -2.428490722523472, -3.5965671087812012, -2.9764504825069613, -2.7396053042256097, -2.791227076586569, -3.287088853378247, -4.111867146804469, -3.331789628882886, -3.4355683335961067, -2.765730627864516, -2.490272090219577, -3.3829870641565014, -3.1862369644127835, -3.1750941332353855, -3.0846834979032507, -2.6692527401905854, -2.9383648306422847, -2.984902189915971, -3.312660846032607, -3.1134361873995866, -3.339469510182976, -3.3580237285881256, -3.869994000121742, -3.5567847823070253, -2.3848346308010715, -3.119125240272365, -4.367505009418113, -3.423100874797959, -2.9025185013539017, -2.954973030186681, -3.647399272154069, -3.257178408417606, -3.784795537856762, -2.8139581849717996, -4.504552412486566, -4.402072143635273, -3.1398878281506537, -3.3749201057441613, -3.413709458318653, -4.074322643568778, -3.7401432934391092, -4.458698268402751, -7.0, -7.0, -3.298055299407909, -4.126488570700374, -3.668553637533001, -3.273319637963899, -3.1318786178175038, -3.224719055787612, -7.0, -7.0, -7.0, -2.9459490851608128, -4.148124297389897, -3.8851931120167453, -3.753940355895292, -2.3959387783291315, -4.354665362435607, -4.1573963193232295, -3.067832201725068, -3.8385500169443825, -3.7181195409349796, -3.4390054396547645, -3.500465183284189, -3.4865549806566514, -3.4922425742591727, -7.0, -2.964695295079257, -2.8652240048558992, -4.410608542568368, -2.706666122284256, -7.0, -4.415490852171469, -3.4350684440390644, -2.660969667837611, -3.7547495668660162, -7.0, -7.0, -7.0, -3.205013199181547, -1.8521684108312613, -7.0, -2.808036260432666, -3.014348680847394, -2.2972314509435923, -2.63837062156992, -2.3292194070638392, -7.0, -7.0, -3.010378489484261, -3.510027684973431, -2.5720744624304026, -3.377157176891517, -2.8571062424631903, -3.6858491796159405, -2.297952062994036, -2.8778031216951354, -1.8008846495627382, -3.5227794666236236, -3.106511974326567, -2.2131895097881804, -3.663908131452911, -2.9329245114554494, -4.378942698613438, -4.406028944963615, -4.35281901669987, -2.5078693588926737, -4.35524073941683, -7.0, -2.5859995828684834, -2.030548370317692, -1.9864002384688655, -3.450037299616192, -2.9801083032031275, -4.4881133818002965, -3.6686281593438146, -7.0, -4.352568386179309, -7.0, -2.736472907805405, -7.0, -3.658106835506393, -3.611404637711593, -7.0, -2.315384450620127, -3.0188895442801207, -2.6196241523468924, -7.0, -3.363442741279142, -3.9029270960172626, -2.6027054557581097, -2.7764821024837807, -3.752662943120972, -7.0, -7.0, -3.1033895669314213, -2.114933427545565, -3.4587322506088714, -3.880031921104297, -2.271037506173659, -4.384693833518213, -2.3619123209253394, -4.398026858883687, -2.258691231511513, -3.295786940251609, -2.915154763984291, -3.2340406260556973, -7.0, -2.8669709739278395, -3.5818927949386175, -7.0, -3.609014760011556, -2.501114799780252, -7.0, -4.452292561617729, -2.539790831601422, -4.4193774051391275, -4.387852352763043, -3.245964822443127, -3.495110520227484, -4.139233459140505, -4.371640383837884, -2.5015776958751967, -2.1213337939445793, -3.1684974835230326, -3.290776361298428, -4.354895604711061, -7.0, -7.0, -2.7059683825753047, -3.325011592333475, -1.8656889096233065, -2.2824786342607655, -2.5368649376417416, -2.5040652696400008, -2.3689637403858352, -2.5791463818227767, -7.0, -4.061527870890508, -7.0, -7.0, -4.12252714764831, -7.0, -2.6731664725674644, -7.0, -4.378579576115775, -7.0, -2.222519981089832, -7.0, -4.360233561157832, -3.8768142008518582, -7.0, -7.0, -4.053923150548575, -3.1260167470971267, -2.3132820630167794, -3.5314971643262183, -7.0, -7.0, -2.9822335322294484, -7.0, -4.05903300496378, -7.0, -4.061075323629792, -3.435808987019662, -4.375919543704649, -2.264554092853232, -3.2691236170005356, -3.0629251643976625, -3.664961468665818, -7.0, -2.2956186350156695, -3.8849651982007325, -7.0, -2.2920188927402747, -7.0, -7.0, -3.201499540187428, -3.2480433647368927, -2.8346149517300243, -7.0, -7.0, -3.541579243946581, -4.354703744625813, -2.7247508753987764, -7.0, -3.287727102473748, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.210364007315791, -7.0, -7.0, -7.0, -7.0, -3.4200500988012092, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7867696174440493, -7.0, -7.0, -3.228015175101788, -4.069161463720277, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.401187937219147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.670873332461625, -7.0, -7.0, -7.0, -7.0, -3.114076960824089, -7.0, -7.0, -7.0, -3.538824988937904, -7.0, -3.9654264492027846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7653704802916486, -3.8801559384642488, -7.0, -7.0, -2.9681092011281978, -7.0, -7.0, -7.0, -7.0, -7.0, -4.655167258709841, -7.0, -7.0, -7.0, -7.0, -3.9846623061901068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5823815773367187, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.415273909352888, -7.0, -7.0, -7.0, -7.0, -3.5761602878635035, -3.5138831856110926, -7.0, -7.0, -7.0, -3.8073997127594854, -7.0, -7.0, -3.624127331511917, -7.0, -7.0, -7.0, -4.7021935055383075, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4403973832463586, -7.0, -7.0, -7.0, -2.0305667155192975, -7.0, -3.3981136917305026, -7.0, -7.0, -7.0, -4.107989642267512, -7.0, -7.0, -2.5178867997228385, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.792714397167913, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.021313365484695, -7.0, -3.4229999772716164, -7.0, -3.868174040859638, -3.7041753111617277, -7.0, -3.1385553051135826, -3.7763379096201755, -2.957128197676813, -3.651762447380111, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8294967497201826, -7.0, -7.0, -7.0, -4.382197210377454, -7.0, -3.3676975062069, -7.0, -3.8948696567452528, -7.0, -7.0, -7.0, -7.0, -3.5828017176654714, -7.0, -7.0, -7.0, -3.353479077417884, -3.0626289832522775, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.534914104429867, -7.0, -3.1530939053914806, -3.8008075748040797, -7.0, -7.0, -7.0, -3.538070787043172, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1010593549081156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.841171694499532, -7.0, -7.0, -3.636688447953283, -7.0, -7.0, -7.0, -3.7555509188304823, -7.0, -2.7954365110794464, -7.0, -3.2657527953446097, -7.0, -7.0, -7.0, -4.076931574555656, -7.0, -4.051345499336539, -3.563303059369412, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0253877998904075, -7.0, -7.0, -7.0, -3.274881913341615, -7.0, -7.0, -3.4277497542165274, -7.0, -7.0, -7.0, -7.0, -4.047235915459681, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5484961800176205, -7.0, -7.0, -7.0, -7.0, -3.8924285469452298, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.869636481314028, -4.122314197968806, -4.5147780911123805, -7.0, -7.0, -4.328375525537133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.230027195569308, -7.0, -7.0, -2.944839537394521, -3.114369618804565, -2.838723190031372, -2.9545870508948435, -4.127938555955461, -2.9621493926097586, -2.3180179422810476, -4.136287113116408, -2.9618620050408455, -2.9839268369509955, -2.246961766528978, -3.0454990084378832, -3.288392965587535, -3.3937164142875456, -2.408120326456059, -2.362008176736463, -3.112137368289655, -2.4620412878321645, -3.807940721215499, -3.149988456491476, -7.0, -3.6133272674214836, -4.320146286111054, -2.6422714468377064, -2.258033898662295, -3.893669309799605, -3.8995834172273165, -2.6715480863793686, -3.1581613832785496, -2.762579485676154, -2.9378608845484484, -3.9177680024477564, -4.364701049594699, -3.293092341218131, -2.7011360660925265, -4.152685756036786, -7.0, -4.006551609086649, -2.4310872155201055, -3.6812915000319597, -7.0, -4.6893532632422525, -4.295677034017465, -7.0, -3.8214480190175304, -2.6039279274630815, -7.0, -3.6965236329297477, -7.0, -3.717420836722375, -3.8710326501566796, -4.018242667457909, -4.000156317877956, -7.0, -7.0, -7.0, -7.0, -3.4429498695778618, -7.0, -3.828788748184953, -7.0, -4.222638447166434, -3.6914000796900464, -4.203020131467844, -7.0, -7.0, -7.0, -3.622901339450227, -7.0, -5.107920206498857, -4.147243359543369, -4.269676357629865, -7.0, -4.062281069972644, -3.4645193538566796, -4.496521440773309, -3.78625439578978, -7.0, -3.6275194713376826, -3.7334005839920277, -4.516098877052355, -7.0, -4.47673021369108, -3.710531050569225, -7.0, -4.397360562979804, -7.0, -7.0, -4.629959764611881, -3.7371926427047373, -7.0, -7.0, -7.0, -3.12466721769861, -3.0154795112301587, -2.026992120467688, -7.0, -3.1600932009756324, -2.661023489459825, -2.7564187436357535, -3.4786927256432434, -2.159237204338384, -7.0, -7.0, -3.4081834128693056, -3.4220971631317103, -2.9977827887044515, -3.4921315335815697, -3.009167506240904, -2.67168698327697, -3.1892656689345484, -2.4434194617828173, -2.462658366301181, -1.1569935095207584, -1.8440627725826517, -3.0041063232796583, -2.1158274961813883, -2.350801612394977, -7.0, -7.0, -3.399846712712922, -3.1378110969861503, -2.2120210485124043, -2.391255974854882, -2.5409180494795067, -3.1617086942021646, -1.9534876520964986, -7.0, -2.4536780042348014, -7.0, -2.114076960824089, -7.0, -2.9197751944228614, -7.0, -2.572608605937758, -7.0, -2.960153542690461, -3.17666993266815, -7.0, -1.4829942936151554, -3.1755118133634475, -1.8912818604740502, -7.0, -2.8866317069889784, -7.0, -3.0705180970198693, -1.488920663651653, -2.9398519178833737, -7.0, -7.0, -2.4985226116463055, -2.3217564538166924, -1.4659711795948707, -3.1365620365899805, -2.598746746928134, -3.32479671762173, -3.0835394196053243, -3.396286546068402, -1.7563228128879709, -7.0, -2.441909267199942, -3.9614210940664485, -7.0, -1.9118231942831303, -2.379758615842701, -7.0, -7.0, -1.9896228285885555, -7.0, -7.0, -3.1736911943077897, -3.7953933349312896, -7.0, -3.7462838201514073, -2.920558099058943, -3.5761685196078083, -3.243905770217521, -3.154863354315963, -1.5093059380910636, -2.599155000684555, -2.757142869659127, -7.0, -7.0, -2.7059683825753047, -7.0, -3.5114822886260013, -1.6575522630041335, -3.0634544267719757, -3.021912520689034, -2.5097294828785595, -3.571394349314386, -2.373896723704669, -7.0, -2.52403532248028, -7.0, -2.44836273248059, -7.0, -3.82795052830263, -2.4586378490256493, -7.0, -7.0, -3.5281450782531065, -2.5471104854035294, -7.0, -3.1609184995397808, -7.0, -7.0, -3.427972713608209, -3.117602691690084, -2.2863602200922686, -2.204745917640909, -1.9055612534135378, -7.0, -7.0, -2.336173731545205, -7.0, -7.0, -7.0, -3.4771212547196626, -3.6574383227029625, -7.0, -4.173856138986269, -0.9681884753070655, -2.613973886490711, -7.0, -7.0, -3.4403579968152878, -7.0, -7.0, -4.0492309479088515, -7.0, -7.0, -3.435525851498655, -0.6851016581888254, -7.0, -7.0, -7.0, -7.0, -7.0, -0.8667808508413924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6283889300503116, -2.9609461957338317, -7.0, -7.0, -4.12653184328548, -3.446148675696183, -7.0, -7.0, -3.0299786646845117, -3.180829397202488, -3.2329961103921536, -7.0, -7.0, -7.0, -2.950364854376123, -3.067286255616976, -7.0, -7.0, -3.4014867017741692, -3.7397177364027008, -7.0, -7.0, -2.920123326290724, -7.0, -3.252124552505644, -7.0, -3.9139668289142224, -3.1970047280230456, -7.0, -7.0, -3.0948203803548, -7.0, -3.037027879755775, -2.838723190031372, -7.0, -7.0, -7.0, -3.9964366147788897, -7.0, -2.809222921689422, -2.930099638207734, -3.2281436075977417, -2.5986993354639654, -7.0, -3.193958978019187, -7.0, -2.76067373855426, -2.730984038495525, -3.06481084382274, -7.0, -2.4457079649469864, -7.0, -7.0, -7.0, -3.1992064791616577, -7.0, -7.0, -7.0, -7.0, -3.1451964061141817, -2.6569495514291095, -3.854746187218726, -7.0, -7.0, -2.464042205438811, -7.0, -3.4630713808122473, -3.671728088239558, -7.0, -3.0126966535817883, -3.5583063198302427, -7.0, -7.0, -7.0, -7.0, -2.1294454133258283, -2.5445995081921287, -7.0, -7.0, -3.2012605322507914, -7.0, -3.5464192668351915, -3.2902572693945182, -7.0, -7.0, -3.0459745835329053, -2.8867162741164782, -2.6192539127997327, -7.0, -7.0, -7.0, -3.3404441148401185, -3.1481397365012196, -2.9275756546911103, -7.0, -3.015180059737978, -7.0, -7.0, -7.0, -2.7863520708696945, -7.0, -7.0, -7.0, -2.823474229170301, -3.0423069707976276, -7.0, -7.0, -7.0, -7.0, -3.488762172066694, -7.0, -7.0, -2.931457870689005, -7.0, -2.8923729073984363, -7.0, -7.0, -3.3954859330755176, -7.0, -7.0, -7.0, -4.393645386605536, -7.0, -7.0, -3.6478717653062325, -7.0, -7.0, -2.1348187022405427, -3.050895086469539, -7.0, -7.0, -3.4209087921309544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9818186071706636, -2.961421094066448, -3.2414634653077736, -7.0, -3.4244460353087876, -7.0, -7.0, -3.251638220448212, -4.0712558776812955, -7.0, -7.0, -3.0507663112330423, -7.0, -3.592398846115564, -7.0, -7.0, -7.0, -2.800258719947592, -7.0, -2.581380688709987, -7.0, -7.0, -7.0, -7.0, -3.297651103243182, -7.0, -7.0, -3.829602391215558, -3.0755469613925306, -7.0, -7.0, -7.0, -3.058426024457005, -7.0, -7.0, -3.9433955765089546, -3.0572856444182146, -3.6873282654478152, -7.0, -3.752586178740409, -3.3285449954753994, -7.0, -3.235360083082256, -2.546953732587764, -7.0, -3.13956426617585, -3.3057811512549824, -2.8750612633917, -7.0, -7.0, -7.0, -7.0, -3.7013952690139202, -7.0, -3.6691773631428735, -2.772871562650226, -3.3081762173504505, -7.0, -3.787956123283932, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2956403924243696, -3.1187605904423816, -7.0, -2.846955325019824, -3.5186455243303114, -3.8767949762007006, -7.0, -7.0, -7.0, -2.9585638832219674, -7.0, -7.0, -7.0, -7.0, -3.932473764677153, -3.0225314677988853, -3.064520383377145, -4.315329550842513, -7.0, -7.0, -2.6354837468149124, -7.0, -7.0, -7.0, -7.0, -3.3209766773428235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.830504772317295, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1351326513767748, -7.0, -3.1577588860468637, -7.0, -3.3554515201265174, -3.1099158630237933, -3.2389864740813414, -3.338257230246256, -7.0, -7.0, -2.2179850051081407, -3.087603973687808, -2.7049071715672994, -7.0, -4.71438006121222, -7.0, -3.034227260770551, -7.0, -4.009153331907709, -2.924574624041236, -2.545352940204395, -3.446537167073644, -3.863679667875898, -2.0836817472743014, -2.545616332913136, -7.0, -3.2626883443016963, -2.813714391881145, -2.3714941287694646, -7.0, -7.0, -3.2667019668840878, -7.0, -7.0, -7.0, -3.4114513421379375, -3.9482662198802956, -7.0, -7.0, -7.0, -4.019161044289363, -2.589790080853059, -7.0, -4.294686624279444, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0774890305065017, -3.8129801660394804, -3.366236123718293, -3.2712606104874364, -2.827207675105206, -4.215828355014351, -3.0469408803270346, -7.0, -7.0, -7.0, -7.0, -3.1789769472931693, -3.0755469613925306, -7.0, -3.1702617153949575, -7.0, -7.0, -2.599155000684555, -2.776216750606444, -7.0, -3.2203696324513946, -3.356694958541127, -7.0, -4.257306505895937, -3.1631438287886273, -4.262704542325864, -7.0, -3.216297886630392, -4.065977853283259, -3.8029104894190398, -7.0, -3.197831693328903, -3.0141003215196207, -3.1056237109716145, -3.8109713998222077, -7.0, -7.0, -7.0, -7.0, -2.856577857697687, -7.0, -7.0, -7.0, -7.0, -7.0, -3.206906792930864, -7.0, -7.0, -4.298405457024487, -7.0, -7.0, -7.0, -7.0, -3.6809516111681853, -7.0, -3.691567700438057, -3.6518763532182574, -3.5166235018348, -3.6379897807846855, -7.0, -4.119890696287638, -4.096253732723975, -4.108407151772364, -7.0, -4.074980914982268, -4.924542884841503, -3.7453480923842912, -4.019178624894263, -7.0, -5.087602198880414, -7.0, -4.536798248304418, -3.339053735709139, -7.0, -4.360754303685361, -3.8952291148413942, -7.0, -3.873836274597429, -3.868526886768204, -4.203495235193291, -4.0300124406298, -7.0, -7.0, -4.096492890054361, -7.0, -7.0, -3.7178368674869255, -3.237313293174686, -3.1934029030624176, -4.071642711381079, -3.6523393356894247, -3.207311151436134, -2.844388408349991, -3.6371093051016494, -7.0, -3.5286142667822133, -3.4066678953244223, -7.0, -4.447220068979909, -3.8504482908911513, -3.5375942467731942, -7.0, -3.401463205016831, -3.544378143957812, -7.0, -3.3420276880874717, -4.379903507451503, -7.0, -7.0, -3.595138939338682, -3.519746158174064, -4.928593834480787, -7.0, -3.720572720364261, -7.0, -3.7530705265357844, -7.0, -4.8039519020845045, -3.789192776022594, -3.750199727829182, -7.0, -3.6304888957237034, -3.9611203854246293, -4.308308242998225, -2.9425041061680806, -3.1821032558041695, -3.3525683861793083, -3.7862434657429205, -3.2133919170914584, -3.1586639808139894, -3.2637543888400056, -3.878497858858221, -3.601299310194338, -4.570116608419219, -7.0, -7.0, -3.9129762338315563, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2391227510637246, -1.7654653443605923, -1.9544695321741878, -2.3121773564397787, -7.0, -3.0703295678267613, -2.36579986604032, -2.530199698203082, -2.321805483857539, -2.356467138669094, -7.0, -2.8162551132098277, -1.6653893141043976, -2.3466788990302154, -7.0, -2.394674502055374, -2.7890516223748403, -2.7427251313046983, -3.2022157758011316, -2.6321197138685406, -2.7610389412724987, -7.0, -2.3774883833761327, -2.8611359755265933, -1.709391119989562, -7.0, -2.770770215901832, -7.0, -3.0013009330204183, -3.75530848871007, -2.9101010197335384, -2.9444756218578463, -7.0, -7.0, -1.721735691640912, -7.0, -1.904038968600478, -7.0, -1.7039697867157162, -2.0212136286115205, -7.0, -7.0, -3.4448251995097476, -1.6955277579250017, -3.014352500651009, -3.1048284036536553, -2.62283547952152, -1.8174331441113842, -2.832508912706236, -1.6914030131311042, -2.494589366786662, -3.505800931949501, -7.0, -1.631467366203099, -1.6753323777650668, -7.0, -2.611267993114786, -7.0, -7.0, -2.7687966125269106, -2.1622480318813917, -2.463718413219569, -1.6757228088459417, -2.5167895405103597, -2.517855418930029, -2.824776462475546, -3.8706964579892498, -3.105510184769974, -2.718709237010724, -2.591064607026499, -1.7751396102537014, -1.8186790056099098, -3.269512944217916, -7.0, -1.758543655498327, -2.04105414195654, -2.476155081947642, -7.0, -2.688525755237839, -3.214843848047698, -2.9855761533820546, -2.7732987475892314, -2.279265624615706, -2.7914274668192127, -2.6676863818028047, -2.932727367301529, -7.0, -7.0, -3.325011592333475, -3.5114822886260013, -7.0, -2.7267272090265724, -2.784591823056473, -2.6954816764901977, -3.025364391574663, -3.4045893877910447, -3.3935752032695876, -1.5465426634781312, -7.0, -2.002885688237488, -7.0, -1.7500754462389447, -2.1620721685536584, -3.115194321434587, -2.9258275746247424, -1.7644667275713992, -2.212453961040276, -2.469284769398786, -2.6881230714056485, -7.0, -7.0, -7.0, -7.0, -2.9537596917332287, -2.3988077302032647, -2.7839685107944083, -2.8371674062278354, -3.074084689028244, -7.0, -2.824451270036613, -7.0, -3.0670708560453703, -7.0, -7.0, -2.4473131088235682, -2.826722520168992, -3.0784568180532927, -7.0, -3.6886867242841235, -2.357934847000454, -2.9258275746247424, -3.1010593549081156, -2.8041394323353503, -7.0, -3.3570359400465626, -3.1559430179718366, -3.144885418287142, -3.0940050223646494, -7.0, -2.8627275283179747, -7.0, -7.0, -3.1177682949263725, -2.946452265013073, -3.085825533520743, -2.6989700043360187, -3.190611797813605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0684332525144025, -7.0, -7.0, -3.8677727313159287, -3.560683591907453, -7.0, -7.0, -4.250078287979645, -2.706551844648906, -7.0, -7.0, -7.0, -7.0, -7.0, -2.669116253163979, -7.0, -7.0, -3.225503119926761, -3.858216656412867, -7.0, -7.0, -7.0, -7.0, -3.5407047833107623, -7.0, -3.7988002176790006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4100176082030527, -7.0, -7.0, -2.7596678446896306, -4.4488917441512195, -7.0, -7.0, -2.9279859470994287, -7.0, -3.2085085378884504, -7.0, -7.0, -7.0, -7.0, -3.2836403888003676, -3.3877247363085967, -7.0, -4.0050088206723675, -3.919705534549121, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.983551117157769, -4.481743520420445, -7.0, -7.0, -2.7597622462728526, -7.0, -7.0, -7.0, -7.0, -7.0, -4.052924683707729, -7.0, -7.0, -7.0, -7.0, -3.505602132948883, -3.6181527333785195, -7.0, -7.0, -3.6872613462435067, -7.0, -7.0, -3.269979676645324, -7.0, -7.0, -2.8597765299970876, -3.1414497734004674, -3.0567662983023087, -3.415974411376566, -7.0, -7.0, -2.8885164610749454, -3.653309012938479, -3.47158505418519, -7.0, -3.732554579851432, -7.0, -7.0, -7.0, -3.759554535696884, -7.0, -7.0, -7.0, -3.3260626338156793, -3.812462124192689, -7.0, -7.0, -7.0, -3.2474822606770544, -3.6424974950329125, -3.0310042813635367, -7.0, -7.0, -7.0, -3.8047526021504607, -7.0, -4.230321168919079, -2.3667837426355174, -7.0, -7.0, -7.0, -5.003063971227445, -7.0, -7.0, -7.0, -7.0, -7.0, -2.616663732437289, -3.704407927386841, -7.0, -7.0, -3.006483156965472, -3.3896975482063856, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9125939977521056, -2.75960489889897, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6520851030278667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9836262871245345, -7.0, -7.0, -3.365273341438565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019697730980192, -7.0, -4.024506191528093, -7.0, -7.0, -3.217079406146907, -7.0, -2.9315849874708, -3.296079887636682, -7.0, -3.647969458362972, -7.0, -7.0, -7.0, -7.0, -3.803457115648414, -7.0, -7.0, -7.0, -4.042378598139876, -7.0, -7.0, -7.0, -3.3664852172048483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5805828768143675, -7.0, -7.0, -7.0, -3.3942239667723677, -2.817187475707873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.709439574132411, -7.0, -2.9626199946269987, -3.882103298105706, -7.0, -7.0, -7.0, -3.231851723743416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.938980958131319, -7.0, -7.0, -7.0, -7.0, -7.0, -3.484442207642407, -7.0, -7.0, -3.838723190031372, -7.0, -3.60916737430202, -3.236486876375591, -3.5871494982543437, -7.0, -7.0, -2.975891136401793, -7.0, -2.2857992018968964, -7.0, -3.4057446650019667, -7.0, -7.0, -7.0, -4.075510464524414, -7.0, -2.7696882025975755, -3.862131379313037, -7.0, -7.0, -3.1896306576921556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4214805302268916, -7.0, -7.0, -7.0, -3.6612319765917327, -3.3929606147967957, -7.0, -4.029261995804175, -7.0, -7.0, -7.0, -3.5986810989071634, -3.1420764610732848, -3.4211101297934343, -7.0, -7.0, -7.0, -7.0, -2.9919093037691393, -3.977586438003851, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4596939764779706, -3.5487578285737045, -7.0, -7.0, -7.0, -3.491781775584166, -4.0911978303754495, -3.3810165714514735, -4.534061891739996, -7.0, -3.9177155165594932, -4.328216457500718, -3.905148001856016, -7.0, -7.0, -7.0, -3.741624257503812, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4889351046198613, -7.0, -7.0, -3.413058655343539, -3.83248762323924, -3.4708932853456576, -3.1953460583484197, -2.6826247307581395, -3.066427582089823, -1.4765437353767086, -3.498840504412899, -2.59756647208602, -2.760007594399437, -2.2313967649954636, -4.346509448774761, -2.65458560671649, -2.6974483808191083, -2.5011027525524465, -3.327563260187278, -2.8336428415015997, -2.7412736245332567, -2.6434186395347297, -4.052867009754181, -3.7646990637983677, -4.09052080802686, -3.620198538893282, -2.4338304210375745, -2.006331374972674, -3.7679717213816186, -3.074697614873553, -2.841434558110041, -2.6299190355035416, -2.853393977450666, -2.6963299081698104, -2.540901998604406, -3.886772643054438, -3.3433347279168006, -2.7551122663950713, -4.151492428425498, -7.0, -3.441495184218261, -1.935062037626079, -2.550096897281136, -7.0, -3.4099331233312946, -3.67560605568558, -3.511838815670676, -3.040074643230312, -3.006205517657194, -7.0, -2.4888974345488073, -7.0, -7.0, -4.171550945676746, -4.018062177109417, -3.552503086780776, -7.0, -3.7697021868101284, -7.0, -7.0, -3.9182400902214147, -7.0, -7.0, -7.0, -4.155513883900176, -3.232676070228884, -4.708174361678332, -7.0, -7.0, -7.0, -3.9238513610441434, -7.0, -5.408887531084357, -3.6687895794127114, -4.268765127447861, -7.0, -7.0, -7.0, -4.496251398039319, -3.3060674363555953, -2.707712079213691, -3.080935556664588, -3.830134036038414, -2.7817819605838476, -7.0, -3.5555103977981775, -3.789557210744906, -7.0, -5.351558616325058, -7.0, -3.474798818800631, -4.152400471674778, -4.338595923576831, -7.0, -7.0, -7.0, -7.0, -2.743570062469853, -1.323246817734007, -7.0, -2.4878955578888458, -2.253983796496258, -1.785442829542926, -2.716946437342873, -1.2505704519861625, -7.0, -7.0, -2.7680116190327637, -3.1142772965615864, -3.0111204844541164, -2.789298611159441, -2.1973531158873625, -3.3223226858740107, -2.4782834938362055, -2.2715247959581437, -1.807186606162684, -2.433636512517248, -1.8829138114849069, -2.4557690646750436, -3.4782778319196046, -2.167317334748176, -7.0, -3.4319263739116437, -7.0, -2.140593739321926, -3.1132746924643504, -2.7293268096468606, -2.6624220153246885, -2.576953229867915, -1.7812251479704675, -2.6979264448065052, -2.425153665754839, -3.5524248457040857, -2.6665179805548807, -7.0, -3.390758528738717, -7.0, -2.276748941031243, -7.0, -2.584654239988151, -2.871280972857973, -3.2604291755779347, -1.6410773133253744, -2.6915235221681546, -1.7945234910719294, -3.528402437953617, -2.527486687520691, -3.2935835134961167, -2.1340645523132356, -2.3815477619447862, -2.808042085314898, -3.1407436671412032, -3.4260230156898763, -2.6089536992758626, -1.6370485285004908, -2.624134702492355, -3.130333768495006, -2.109658461244828, -7.0, -2.6258451726313417, -3.2166056942039845, -1.4577654795018509, -3.0874264570362855, -1.6630574484453744, -3.1809378639837487, -7.0, -2.7548395882408863, -2.6766936096248664, -3.1466447454142683, -2.969364133578134, -1.497920176700931, -7.0, -3.3152354096177272, -2.387399605873772, -3.7926717891415676, -7.0, -3.1710630510449134, -3.6961815871685237, -3.8750612633917, -3.062707303658236, -2.246163347678497, -1.6390359691991763, -2.5483894181329183, -2.928779787288558, -3.41161970596323, -7.0, -1.8656889096233065, -1.6575522630041335, -2.7267272090265724, -7.0, -2.4447764653480064, -2.0693509006842974, -2.3578290118636067, -2.7567414073569965, -2.3872579622169017, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.991803723060169, -7.0, -3.1077750894177876, -3.523095838252568, -2.2149746005646884, -7.0, -3.456366033129043, -2.9259992664561554, -3.4019172505175748, -3.4216039268698313, -3.111094410509336, -2.007288102842785, -1.6757244422657747, -3.5742628297070267, -7.0, -7.0, -2.075546961392531, -3.1319392952104246, -3.4553017716570764, -3.4954055631461936, -2.5148427896837955, -2.0784960072323395, -2.486784571399042, -2.536793259815371, -2.2991327791835294, -3.8174992618677583, -2.403977963669355, -3.1015752462559334, -1.8282845410046067, -2.6919651027673606, -7.0, -2.843440425475574, -2.890979596989689, -3.187520720836463, -2.0933402269453776, -2.0785311739978143, -2.707759369950592, -3.419625360887743, -2.31093828432423, -2.6787206587279364, -3.1085650237328344, -2.139074837130837, -2.3878642059401316, -2.810098040681143, -3.0907869279492677, -4.22816928953985, -7.0, -7.0, -3.246537452532851, -3.749646150178696, -3.9397313561662894, -2.2545353570538538, -4.0508435809569185, -4.054459837239404, -2.453241420511788, -3.40655153438964, -7.0, -7.0, -2.9549924939289824, -1.9893726580880053, -3.155766069605062, -7.0, -7.0, -7.0, -3.295243603126737, -2.442073689143087, -3.76547695894516, -7.0, -2.3744350901089546, -2.444336669547818, -3.8357666456143447, -4.529533012323238, -7.0, -3.504619123819373, -3.8384586796874895, -4.530455843584676, -3.5358737182193245, -4.057666103909829, -3.924795995797912, -7.0, -4.229579462665645, -3.6420438720485455, -7.0, -3.443840458807008, -4.52580901112709, -3.2695006550094687, -3.325528490869888, -3.2995174339276034, -4.527836045164708, -3.8321638947835877, -2.7393992645779885, -3.9341827155103566, -2.248747410028291, -7.0, -3.0153724583497334, -7.0, -3.495203630280667, -3.036266998871953, -2.1387837461092274, -3.350332833192728, -2.137976018001224, -3.251682454964639, -4.053577787125283, -3.254064452914338, -3.3781313064867438, -3.3293088754705984, -3.6895752157599384, -7.0, -4.04988962552391, -3.6873378244924546, -2.808542631074618, -3.0386698268227517, -4.226471015317139, -7.0, -2.680666199170931, -4.224584853731531, -3.682224072862761, -3.618280588410313, -7.0, -3.775404112153162, -2.272527237654037, -4.049579784025463, -2.7143914028949405, -7.0, -7.0, -2.3399696410082558, -2.6248782618895143, -3.6844349723089813, -4.224001847164982, -3.6003072173984116, -3.9306052271529284, -3.8597505631165796, -3.386986195869725, -3.9409644934927996, -7.0, -2.191526832708817, -3.2006364134455194, -2.5293381019103465, -4.2254126728659545, -7.0, -4.553239600315695, -3.286880427183525, -3.470839085190034, -3.244689360492884, -4.528093588006807, -2.991964044403458, -7.0, -7.0, -4.2243387908596555, -2.7696337073496875, -7.0, -3.4357953789580624, -3.3923702932353117, -2.597158169482056, -2.362843928614233, -3.832687703038595, -3.487254103329864, -3.2573753848060916, -4.2372923375674585, -2.7441942081672615, -3.6891565819544923, -7.0, -3.8481644754706736, -3.785199289728364, -3.618245722588928, -7.0, -3.2658062062050908, -2.510234078042335, -4.531644939077263, -4.125101566510315, -7.0, -3.3633810336054455, -4.0595003074627485, -3.475441149842973, -3.7245450253450594, -7.0, -4.055442043614812, -1.7357602354022215, -2.9226289132446137, -4.524577851572574, -4.525744300194379, -2.6561755102498417, -7.0, -7.0, -7.0, -2.565731085047682, -2.922349113974395, -2.715426287355302, -3.262270237307056, -2.7444494574467986, -2.3630117907552672, -4.532818053867167, -3.7059919299146995, -4.525912528568072, -4.0512683188703855, -3.2582969314691157, -3.156148415962715, -2.792293174032692, -7.0, -7.0, -4.231991755088181, -3.15927273458622, -7.0, -7.0, -3.3396377405079405, -3.760648619581356, -4.049992856920142, -3.158349925522182, -4.541267138664084, -3.852260351006953, -4.248818948640947, -3.640071297202855, -3.176969682371759, -4.240411949590544, -4.230052766370181, -1.9809381370915902, -3.9278064918639526, -7.0, -7.0, -4.232449724062003, -7.0, -7.0, -7.0, -2.5546208162578674, -3.1863526580107426, -3.6758366435022687, -7.0, -3.304569887203933, -2.0320037772941855, -3.4926461193813223, -2.673182239227937, -2.933039743665037, -3.3625704305827226, -3.2939270038674855, -3.7622032550681346, -3.6981254114721787, -3.758848836937695, -4.2394746634651845, -3.4582309613062225, -4.530699041844945, -7.0, -7.0, -3.392769346877258, -3.845829520066492, -3.4619169336782014, -4.527784518264025, -2.13469679217285, -7.0, -2.3106368275692746, -3.230027195569308, -3.048504453322141, -3.0232781872177306, -4.230001623262765, -3.5073835557363866, -4.070862550639413, -7.0, -3.0310287880069935, -2.002570998365708, -2.3012918028548115, -7.0, -3.7470490969695196, -3.8302164400865957, -4.049153390706091, -7.0, -7.0, -7.0, -4.531555550483368, -2.349123534570507, -3.3907114290470077, -2.8751733249280984, -3.1735195916930334, -7.0, -4.529776727759189, -3.4518887307742987, -2.9560546332453033, -7.0, -3.6818483081437425, -4.069655765831316, -3.3949267432044627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542028281879299, -1.8673473998790473, -7.0, -7.0, -7.0, -4.528338112324839, -2.496878418998322, -2.655228102880582, -7.0, -7.0, -4.101495036729082, -4.066363202258494, -2.345681730913762, -2.5829565081628103, -3.337945698102355, -4.526390976036641, -7.0, -1.9000856192499211, -2.248686239706898, -1.2378704566780478, -7.0, -2.9045764498757327, -3.303793008415947, -3.5283252460556915, -3.298249291813928, -2.7859904363508843, -3.1708932853355596, -2.0605408948064348, -3.013998045006722, -3.69877452783365, -3.091993372103274, -3.100740597292186, -7.0, -4.538083367813495, -3.7774751552013255, -3.708299470109623, -7.0, -3.926818160391426, -3.8392265740134355, -3.9263939002696824, -2.676217409487349, -7.0, -2.713231045167001, -2.7848374672798744, -4.537302670071282, -3.274826041478985, -2.60862669869485, -2.6698579446524158, -2.7907541645992353, -7.0, -3.2417290583944616, -4.526649376997381, -3.9317755929080946, -3.186850431506691, -3.6984858063814814, -2.287551764275916, -2.7320094709078133, -4.292134185904887, -4.2431869241314715, -3.4149852789740165, -2.8150978852636968, -2.4006578648786436, -2.8580965785556107, -7.0, -7.0, -7.0, -3.01949801872729, -3.208581549418287, -7.0, -3.833083334178343, -3.5518645756606655, -7.0, -3.1142772965615864, -3.0821696407966246, -3.2580440465002014, -7.0, -3.6906896037283614, -3.2695246186438496, -3.8337716385611715, -2.9233932493257404, -2.5137881643916122, -2.7349918073029826, -7.0, -3.363346478137335, -3.535907776156941, -3.046706936468822, -7.0, -4.53487608457354, -4.527926202533123, -3.784260582566084, -3.446437302477664, -3.7384407792400953, -3.7010990244718034, -7.0, -7.0, -2.9820143951684135, -7.0, -7.0, -4.533365272749635, -4.096782601272063, -7.0, -2.139716276846601, -7.0, -7.0, -1.8924205549625608, -2.071589960934999, -4.41258653335607, -2.6401188376970386, -3.219666695309768, -1.8469616287811097, -2.781272974067587, -3.0786380383696725, -0.8717851120656792, -2.118578787437554, -2.1070551770361226, -2.918800028747105, -2.617690610641423, -2.729846051566213, -1.7151679913006146, -3.243837854588041, -2.7725716041087916, -1.6284648915833002, -3.79644547273806, -2.5714807915691624, -4.265041993273718, -3.0787595940382304, -2.5541104258018246, -1.922777805741903, -2.7247329816316608, -4.133921940423772, -3.062111714033968, -2.838552266388136, -3.769340394703022, -1.6504266854666678, -2.5807226917052044, -2.9610487745668284, -3.0699012492626916, -3.2717075994955067, -3.181781470447434, -3.575534218319864, -3.6541230408637997, -2.497805680042165, -3.1925854369172395, -1.6796462880176226, -4.057501279050107, -2.696531119969607, -2.331785136469075, -2.9279581791148983, -2.2438800675491812, -2.859186349350555, -3.702762777554604, -2.29209349276241, -3.169481875974883, -3.3276593802522756, -2.590604564498762, -2.289844875657108, -2.413748485257935, -4.540054042264075, -2.3207996990859354, -3.3943093735350707, -4.527049594892765, -3.1465045564041887, -3.5226819908643168, -2.9319776588193447, -7.0, -2.377777299026072, -2.2477567146336086, -3.396978293242532, -7.0, -4.2781016701595505, -3.7514843956354293, -2.598946250333827, -7.0, -3.330958646960376, -1.4083960534693816, -3.3146220116074567, -7.0, -2.744486551338886, -3.301514687266299, -3.016708424906099, -3.1213253059294366, -2.1041161084632165, -3.5958488051466677, -1.2414399903315696, -2.9286279602268506, -7.0, -1.8682955254059768, -2.5399156234701907, -3.450237261608906, -2.408690408121786, -4.052911867935484, -2.2577973416492347, -2.700922906704107, -3.6811672035972047, -4.226445232748228, -4.525731356850706, -7.0, -4.526752694348148, -3.502984425501946, -1.4078192004090677, -2.9344984512435675, -1.5860470645033387, -3.184975190698261, -2.528342484271277, -1.141066773176585, -2.29543118794837, -3.368559589517835, -3.8291622019278186, -1.6318249995296534, -3.484791459355562, -1.5001926955968021, -2.3384564936046046, -2.798151698966038, -3.643366302517658, -2.108798685448187, -2.5435590011736546, -2.5962497526472124, -3.3305786318991895, -3.752944296486384, -2.4007397782617166, -3.929495559155406, -2.7758466875586456, -3.079393349595296, -2.684426418406065, -4.524733559186517, -1.4880132232611647, -7.0, -3.485889125183105, -2.581918971095267, -1.3640214094351226, -1.7593966529774778, -4.224066664334767, -3.021955025654265, -2.142782517687065, -3.2121114724935333, -2.6676712278896417, -7.0, -3.0480406308580337, -1.5830380370702757, -7.0, -2.8103876324018415, -3.206985243407348, -3.1589025110397135, -2.3068363763346516, -3.4515433876937274, -2.4741911363832516, -2.9332594512699535, -3.6868915113982936, -2.666393165355889, -1.7028743734610616, -2.3576112698227605, -3.6808403640591796, -2.495580220261618, -2.672073856472178, -3.5906932564421776, -1.163124429608849, -3.928856533581911, -3.9255699095433765, -1.9404752505634317, -2.8127400992175207, -1.277894090983314, -2.5489303754800257, -2.3769204460896, -3.260836819581087, -3.4901884068008413, -3.187791799106236, -4.053859215076276, -2.175290653648693, -2.9725370989719093, -2.774417984050812, -2.1252408467371016, -2.667377219263133, -4.525161467496205, -2.199531302573584, -1.2549987492914396, -2.4404156056103177, -3.434384633690481, -1.848084338954773, -2.855809799467775, -3.0796559960555983, -2.980306438226822, -1.2379289660703994, -2.193720747359399, -2.601895837393877, -2.912335949924013, -7.0, -4.224053701674689, -2.2824786342607655, -3.0634544267719757, -2.784591823056473, -2.4447764653480064, -7.0, -2.7890113727979955, -0.9931111367443974, -1.69371900482725, -2.4079610051383122, -2.5653852463756084, -4.054166019538618, -2.997211582832505, -7.0, -2.6741748768003752, -2.2840002381605906, -2.829315261951061, -4.525472408936226, -2.868994403748707, -2.9327400435462407, -1.337860722048636, -3.688229077040167, -4.529738255465954, -4.525537160391059, -3.8263210491496613, -3.7486272694622023, -3.680943850666622, -3.3511518573324075, -1.6490746525211883, -3.394576747632524, -3.3984112726125186, -4.530481449815745, -3.012492105236467, -3.6825834061045346, -3.5294175204160725, -4.05600230865876, -3.2295154631250256, -2.9058326626454822, -3.1596298466206187, -2.158804092216579, -3.0203388819007317, -3.533251952091484, -2.878010860757683, -4.0482993461008, -3.029789470831856, -3.530814193504616, -4.223729509364877, -1.865900612004408, -3.7547559326268156, -3.532346638573482, -2.3242583813241886, -3.2306070390410833, -3.597158688659135, -4.049579784025463, -3.682222460833141, -3.4685073300813962, -3.9238654751855013, -3.0425986729597225, -3.4986363091211903, -4.534546439654068, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.207844328838135, -7.0, -7.0, -7.0, -7.0, -3.644955299203869, -7.0, -7.0, -7.0, -7.0, -7.0, -3.160543558238841, -7.0, -7.0, -3.1763083520279114, -3.8744203511135016, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.396803566827695, -7.0, -7.0, -7.0, -3.3443922736851106, -7.0, -7.0, -3.0430674079304287, -7.0, -7.0, -3.3350565194390915, -4.4466614109543094, -7.0, -7.0, -3.54703589974001, -7.0, -2.9808362964839756, -7.0, -7.0, -7.0, -7.0, -3.494850021680094, -3.136995216462121, -3.1408221801093106, -3.495636829183877, -3.2779528470388093, -7.0, -7.0, -7.0, -2.7876375568784235, -7.0, -7.0, -7.0, -7.0, -2.858623119912763, -4.170247043036237, -2.992553517832136, -7.0, -7.0, -7.0, -7.0, -3.752969865029084, -7.0, -7.0, -4.2847271454137505, -7.0, -2.604825824595212, -7.0, -7.0, -3.2497363045688332, -7.0, -3.3296012483565187, -2.7715874808812555, -2.3839209181700145, -7.0, -7.0, -7.0, -7.0, -7.0, -3.407487299358585, -3.683587317572767, -3.3739413115180614, -7.0, -7.0, -7.0, -3.0214649540978553, -7.0, -7.0, -7.0, -4.190051417759206, -7.0, -7.0, -3.255995726722402, -2.18821497141379, -7.0, -7.0, -7.0, -7.0, -3.1465586698056422, -7.0, -7.0, -2.9500401482063032, -7.0, -3.5634810853944106, -3.398981066658131, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4331028172342286, -3.1207234559041432, -7.0, -7.0, -7.0, -4.154797716800404, -3.428944290035574, -7.0, -3.733277533932582, -7.0, -7.0, -2.7359467527259103, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.28668096935493, -7.0, -3.3822332349705566, -3.5268559871258747, -7.0, -3.792461731346951, -7.0, -7.0, -7.0, -7.0, -3.4394905903896835, -4.105476121121821, -3.907034952483417, -7.0, -7.0, -7.0, -3.859522564958292, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.159388533747565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7319467248046987, -7.0, -4.009472142562814, -7.0, -3.218601143315633, -2.666713973094915, -3.0960405542954277, -2.336316756240027, -2.636320699245659, -3.458033192496506, -2.7919244549379605, -7.0, -7.0, -3.4347285417797577, -7.0, -7.0, -7.0, -7.0, -7.0, -3.41073506681745, -7.0, -7.0, -7.0, -3.8208579894396997, -7.0, -3.373341178041854, -7.0, -7.0, -3.322219294733919, -7.0, -3.8385972528166565, -7.0, -7.0, -7.0, -2.9829402547939723, -3.0835026198302673, -7.0, -3.25478968739721, -2.4756711883244296, -3.2730012720637376, -7.0, -7.0, -7.0, -7.0, -3.023938007498089, -3.71474876072506, -3.474274554725548, -4.935961307815725, -7.0, -7.0, -7.0, -2.952469547503639, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.858209418903174, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0661394928706995, -7.0, -7.0, -7.0, -3.509605704611556, -3.5689054149828787, -2.53386043964867, -3.497620649781288, -7.0, -7.0, -3.0870712059065353, -2.930567009900929, -2.9590658658204045, -7.0, -3.4916912040791415, -7.0, -7.0, -7.0, -7.0, -7.0, -3.321722674346009, -3.8169038393756605, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3251049829714074, -7.0, -7.0, -7.0, -7.0, -7.0, -3.485295438726089, -7.0, -3.5496162395190853, -2.7876818161887194, -7.0, -7.0, -7.0, -3.6736817501041967, -3.9624640460579013, -7.0, -4.315466523495654, -7.0, -7.0, -7.0, -3.511749711344983, -2.3695531735295496, -2.754157142891773, -7.0, -7.0, -7.0, -7.0, -3.7722354673339833, -3.943346098356591, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.292920299600006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.564121375515653, -3.933571641443591, -4.3445760325747065, -7.0, -2.7004729549281645, -4.547134479806692, -7.0, -7.0, -7.0, -7.0, -2.9811841373983543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0153073518517566, -7.0, -7.0, -3.018006626523271, -4.082677680648112, -7.0, -7.0, -4.723865964443504, -3.220631019448092, -3.249931756634195, -3.827089131715571, -2.9732461585033687, -3.557226403727186, -3.122625396909397, -4.031125575731565, -4.030850593183277, -4.003507922770787, -2.654917498508147, -7.0, -3.2874613245929347, -2.8869980456710995, -3.7815040572087324, -3.862667950228588, -3.707314633588708, -4.487232085266766, -4.003007906240602, -3.4693678549817437, -3.001486462883789, -4.055531225050898, -4.193690297357073, -4.222222082360713, -3.0742067332841834, -3.2921917372575997, -2.834171816391641, -4.388269982091079, -4.350228629754866, -3.9276013093257225, -3.213916009644023, -7.0, -7.0, -4.171711830697223, -3.618832257891557, -3.326581618446525, -7.0, -4.205402873822617, -2.6187489037583633, -2.6316852986795403, -3.166133970305109, -4.355164066515204, -7.0, -3.5951954985716172, -3.2697074770238133, -3.3479151865016914, -3.762858544866317, -3.927547666088493, -3.7893427015222065, -7.0, -2.9947872586547124, -3.901621764093357, -7.0, -7.0, -4.397053143018109, -3.0773679052841567, -7.0, -2.840952300877853, -3.3925900368430986, -4.666167272125798, -7.0, -7.0, -7.0, -2.667829235565519, -7.0, -4.805595998327254, -3.6458478396740848, -4.251589557275781, -7.0, -3.005589957599989, -4.152273052054602, -3.9470974721907366, -7.0, -3.6461585698621124, -7.0, -3.5831285727428983, -3.3594560201209864, -7.0, -2.9492240646946035, -2.821204883319006, -7.0, -4.5050433304206114, -3.335858911319818, -7.0, -3.8439072693947747, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8133808067338557, -2.0798270372177763, -3.256958152560932, -2.650333781149533, -2.4533183400470375, -2.16354083719592, -2.9693040624631877, -1.8078434842931863, -7.0, -2.828015064223977, -3.0615781248227445, -2.973589623427257, -3.0498026747855222, -2.62085647728201, -2.212377875811997, -3.541953474458236, -1.4682339277267094, -2.4537004733597723, -2.5970366649776535, -3.1067007323623543, -2.875447131459646, -1.1696838475727276, -7.0, -2.681060243631812, -7.0, -2.7153532715849886, -7.0, -2.6318194238085884, -7.0, -7.0, -3.2882918201661653, -1.925256900674232, -2.6986571996858566, -2.7728105019145324, -2.5697993757102093, -3.3001605369513523, -2.927027994490033, -3.150961006271017, -7.0, -2.993876914941211, -2.7243896635178304, -7.0, -2.99563519459755, -2.7948364578145615, -3.164798819693455, -2.369786546693187, -1.8922934099642215, -2.048643178798163, -3.42422807069598, -2.5196405150411416, -2.6020599913279625, -2.3056697671748903, -3.1506541205096408, -7.0, -3.080175365574602, -2.759856627340681, -3.526597709103452, -2.1033724596429346, -7.0, -7.0, -2.619994012623545, -7.0, -2.3421330285112987, -2.0382645000952824, -2.4631461367263494, -1.6595481798668492, -7.0, -3.4464853882977966, -7.0, -2.655438589970129, -2.4244732731953342, -3.5427009694481106, -2.8051042162920505, -2.2707564511001275, -3.251638220448212, -2.9741661461216427, -2.510971747503651, -3.4379090355394983, -7.0, -3.2538022647686016, -7.0, -3.353852142602988, -7.0, -2.549399993299562, -2.2772024156793007, -2.849265817161557, -2.8252637950292847, -7.0, -7.0, -2.5368649376417416, -3.021912520689034, -2.6954816764901977, -2.0693509006842974, -2.7890113727979955, -7.0, -2.5537727296320045, -3.219751182542442, -2.5393713363853183, -3.0128372247051725, -3.3550682063488506, -3.016476194280864, -7.0, -2.912904969285542, -7.0, -3.0919481908785595, -7.0, -2.5903680640032447, -7.0, -2.2640471138775404, -7.0, -3.028977705208778, -7.0, -7.0, -3.2833012287035497, -2.9691828592322613, -2.6919651027673606, -2.2077431980508453, -3.481729196960016, -3.222456336679247, -7.0, -2.5149270491751405, -7.0, -3.3289908554494287, -3.3818367999983434, -3.350441856535061, -2.7987657055815633, -7.0, -3.0042599416470424, -3.3752367289481646, -3.7670816213633223, -7.0, -7.0, -2.015918333597989, -3.3506356082589543, -7.0, -3.3119656603683665, -3.37984917876283, -7.0, -3.069020241410887, -3.3039516339434503, -3.112157966516305, -7.0, -7.0, -3.2539434626692585, -7.0, -3.0672940863159766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5503812467309923, -7.0, -4.18974290024157, -2.976177969832669, -4.157940055964767, -7.0, -2.515994425243755, -7.0, -7.0, -7.0, -3.866877814337499, -2.9085574677038912, -3.5754765086019, -7.0, -7.0, -7.0, -3.8523579836678272, -2.778764227876941, -4.030559245291156, -7.0, -3.0084818837366996, -3.0872320042826615, -7.0, -7.0, -7.0, -3.898478353232805, -3.577692815569536, -4.163638359628923, -3.8263937997178976, -7.0, -4.155396773704851, -7.0, -7.0, -7.0, -7.0, -3.924305136154559, -7.0, -3.903876433238587, -3.4634450317704277, -4.036292323610829, -7.0, -7.0, -3.5992825013197454, -4.177161199726047, -2.751784139570337, -7.0, -7.0, -7.0, -7.0, -3.5882436869396193, -2.7876536516949577, -3.9172691302211917, -3.014960330675915, -4.300421557383072, -7.0, -3.869084973832671, -3.9167170775988125, -7.0, -4.173739713951887, -7.0, -7.0, -7.0, -3.036853369184079, -3.3216294947679144, -7.0, -7.0, -3.5123374623329355, -7.0, -3.5831760948134486, -3.9552065375419416, -7.0, -7.0, -3.4687489409171475, -7.0, -3.4262129542373616, -7.0, -7.0, -3.0718820073061255, -3.721728198572788, -7.0, -7.0, -3.917111472493697, -4.168939213835978, -7.0, -3.9357087478426633, -7.0, -3.887701675781762, -3.010496569131057, -3.758457688610466, -3.605771778568517, -4.154302219684665, -7.0, -7.0, -3.4921455180442877, -7.0, -3.767947020998737, -7.0, -3.7460422835519394, -7.0, -7.0, -7.0, -3.1336703790124876, -7.0, -4.2079035303860515, -3.5806399120080803, -3.77853711845159, -3.1436738997980007, -7.0, -7.0, -3.8766796104192007, -7.0, -2.4801679759527886, -7.0, -7.0, -4.201724770116379, -3.7596930204516097, -3.9551343096156333, -7.0, -3.5027153400182796, -3.1404094433880916, -7.0, -3.6163074351357913, -7.0, -3.846406705028264, -7.0, -4.218509247198932, -7.0, -7.0, -7.0, -2.5162760703791833, -3.4449031627954616, -7.0, -7.0, -3.66593259903762, -7.0, -7.0, -7.0, -3.1137914745357826, -7.0, -2.5797478801414493, -3.3778524190067545, -4.146345128650468, -3.1223329230065637, -7.0, -4.328827939014281, -7.0, -7.0, -7.0, -3.9229848157088827, -3.356174635493612, -7.0, -7.0, -7.0, -3.5722100992493604, -7.0, -7.0, -7.0, -4.1830989401001295, -7.0, -7.0, -7.0, -7.0, -4.207553585949308, -7.0, -7.0, -7.0, -3.8640658790902367, -2.8807329970954307, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0218584437341813, -7.0, -3.5159400420933182, -7.0, -4.278822168352688, -2.7441364524012473, -3.695277323219642, -3.225497247312828, -3.4000196350651586, -4.183298321075812, -4.206987694756409, -7.0, -3.7158919717962857, -3.8779181894528207, -7.0, -4.2557547866430445, -7.0, -7.0, -7.0, -7.0, -3.594309661839646, -7.0, -7.0, -2.260894630279264, -7.0, -2.9662758570396366, -4.166163593747834, -3.2834425776004537, -3.8596785766284483, -7.0, -3.4396484295634737, -3.9024108711664565, -7.0, -7.0, -2.295068142326665, -2.8560827272755613, -7.0, -4.151614972016013, -3.461708570064366, -3.250450499446079, -7.0, -7.0, -7.0, -7.0, -2.726190294147344, -3.5454803047994106, -2.564442126906085, -3.6907840966330903, -7.0, -7.0, -7.0, -3.5759667969424704, -7.0, -3.854700675614607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5705903249024113, -7.0, -7.0, -7.0, -7.0, -3.470410490975931, -3.5654050375151254, -7.0, -7.0, -4.268531170386822, -7.0, -3.0917548625614546, -3.0053735847160605, -3.7137984441929106, -4.1541195255158465, -7.0, -2.5949891349772547, -3.721288378818099, -2.0343471972167597, -4.170408411725318, -3.28200866481907, -7.0, -4.159206133646325, -7.0, -2.5705244084026475, -3.9831750720378127, -2.80174661921946, -3.2769670381470917, -7.0, -4.18514535767565, -7.0, -7.0, -3.880098704083314, -3.6181527333785195, -7.0, -7.0, -7.0, -7.0, -7.0, -3.887476638154133, -7.0, -3.9009948994400565, -3.023800984470638, -3.702171950857711, -3.9155317393839453, -3.407447560198671, -2.6964586647109856, -3.7313066641817545, -7.0, -4.042076489364744, -7.0, -3.6944004327307844, -3.6434279999623076, -3.7166987712964503, -2.9250063310491754, -3.186904991316638, -7.0, -4.19506899646859, -3.9314832970220768, -3.3017080511989114, -2.588199629329094, -3.32508443875409, -7.0, -7.0, -7.0, -3.2465657207019256, -3.4739733021220007, -7.0, -7.0, -7.0, -7.0, -7.0, -4.162624140307846, -3.7955092611743777, -7.0, -4.176293882538767, -3.951653166268217, -7.0, -3.8536373819585945, -3.5810503444369295, -3.237262751459272, -4.169439298978941, -3.521225282676702, -3.729775730905153, -4.294422133112984, -7.0, -7.0, -7.0, -3.7576996250877386, -3.8198289848169766, -3.6765107102825536, -4.199755177253475, -7.0, -7.0, -3.9091547098084254, -7.0, -7.0, -7.0, -7.0, -7.0, -2.812454957991551, -7.0, -7.0, -2.4502573438100157, -2.7404284867039603, -7.0, -3.022549658778618, -3.472410684025669, -2.131231706151648, -3.096828255763481, -4.244524511570083, -1.1589200266038442, -2.5503036305145543, -2.363240756276155, -3.2740808398686907, -2.955727278345016, -2.981100342697114, -1.8854265297985533, -3.1292931856342396, -3.1504779795866655, -2.1309178720102264, -7.0, -2.8258332489949707, -7.0, -3.4523543754279347, -2.6652190398290867, -2.2963622293270944, -3.217878578027433, -4.0682600937746995, -3.4299210335094057, -3.3490083922712177, -3.600346581311417, -2.2019923324997857, -3.1474598958471045, -3.1957222952450492, -3.638052246729691, -3.563733164073743, -3.4162243170985684, -3.935003151453655, -4.327501972540084, -2.969964388176368, -3.3831268885240657, -2.448244007666316, -4.173390251465195, -3.334396300991193, -2.4282121139948085, -3.2162471281677285, -2.7282105056746593, -3.5900612308037427, -7.0, -2.991483921567074, -3.0095432654699916, -2.863426312832213, -2.4520720964238154, -2.997073010851781, -3.342373326372252, -7.0, -3.1507458562177173, -4.308628432599052, -7.0, -4.299812265495717, -3.4578236920187804, -3.1172002493079924, -7.0, -2.284342443665945, -2.841967182770774, -3.8605426258743467, -4.159507037477322, -7.0, -4.162026432421177, -2.770010546065663, -7.0, -3.837015086445894, -2.183475662326633, -3.4387292874597497, -7.0, -2.4546181138415584, -3.248261207021154, -3.0510589270197617, -3.072029200827922, -2.8976560240030134, -4.002252479920538, -0.9834106257004745, -3.948706308904852, -7.0, -2.5602335762820863, -2.730217259371856, -7.0, -3.3437581932446805, -4.1627734388351865, -2.8834392328044864, -3.142926666624649, -3.6213450835431074, -4.156730826499419, -7.0, -7.0, -3.677728586801082, -4.276162980319142, -1.863002557270298, -3.203522416822585, -2.4176075541104693, -2.6242820958356683, -2.111748093301207, -1.2656919266736266, -2.2395714741767447, -3.4183289173165043, -4.1584529606888285, -1.6675233466792163, -3.3087777736647213, -1.9804532507909565, -2.8027737252919755, -2.6335575629523102, -2.995443229111311, -2.226494526388427, -1.9488568372466288, -2.5890936141146526, -2.2004562652820434, -3.210704863182517, -2.2366665416716964, -3.019472366839173, -2.5995585423686345, -3.5889156661572823, -3.152466715105975, -7.0, -1.2116210789649458, -3.3085948999942936, -4.156821635591626, -2.571364316383313, -2.0358785286367036, -2.1568929555183947, -4.151124590050682, -2.5155294493748626, -2.933681925274947, -2.580486338650246, -3.375506847812425, -4.149803938227022, -3.407447560198671, -2.33042767321899, -3.8518085142282374, -3.010299956639812, -2.8084270532729314, -3.3393946485141663, -1.5109633769042548, -2.9599055416319153, -2.333773571713693, -7.0, -2.9361587817056365, -3.192455938511975, -2.369965093310457, -2.3502480183341627, -3.0387424037299495, -3.0886675525424048, -3.2756951764686093, -3.594834355583318, -1.627536536289134, -3.017986785306103, -2.833784374656479, -2.0078421153915804, -4.1999744625304904, -2.0306609636259325, -2.7000215653386404, -1.9974215371337367, -3.1436675973631676, -3.263340126851339, -3.0614734225676257, -4.164977077110886, -2.1224851942745757, -2.426390757900455, -3.158609180248377, -2.8863388474014275, -2.358742193235699, -7.0, -2.9562121023022296, -2.158963699887905, -2.7591558917762122, -3.9037138370248186, -2.1726159027748584, -3.106269372399645, -3.327790176166056, -2.6095655687376507, -1.2948061551940808, -1.7056024795477285, -1.6458759840538448, -2.5220963108104413, -7.0, -4.151093922785061, -2.5040652696400008, -2.5097294828785595, -3.025364391574663, -2.3578290118636067, -0.9931111367443974, -2.5537727296320045, -7.0, -1.7310881077814002, -1.9912260756924949, -3.175722610349459, -3.0858552339469405, -3.3448972999500617, -7.0, -3.4127724458089577, -2.670769013549252, -2.8203187697918297, -7.0, -3.412152427883938, -3.698709349442587, -1.6528950083522316, -3.69340447840352, -3.31650950689414, -4.152104800892868, -3.151216578856456, -3.553093786437186, -3.454448480701692, -3.042302838090508, -1.0695819409462475, -2.7714744128040993, -3.895367288773362, -7.0, -2.264548845239721, -3.458305392118017, -4.161757195261727, -7.0, -2.7162120888836645, -3.3051094301418535, -3.408041999536708, -2.529344787529569, -2.6755100930664812, -3.0295508737036134, -2.9911078842420706, -7.0, -3.1541702816056496, -3.4657990986731795, -7.0, -2.368403115193713, -3.868526886768204, -7.0, -2.4298547744230627, -2.766492517118781, -2.7326617601288525, -3.677728586801082, -7.0, -3.0264787870418024, -4.153204900084284, -2.50213950773425, -3.7089305358066165, -7.0, -7.0, -7.0, -4.542750756732575, -7.0, -4.24188253033637, -3.942888158023463, -3.7801612357769154, -2.9410263770393295, -7.0, -4.07141556509424, -2.543278923231109, -4.29700503526225, -7.0, -4.243955301978741, -3.119793994782099, -3.0325073142652674, -3.4390896638956034, -4.248144987287778, -7.0, -4.067281687644021, -4.543273178913283, -2.7946119582066142, -2.790988475088816, -7.0, -3.550417377372692, -2.5964964499907106, -4.074499499644511, -4.069396732234589, -7.0, -3.659405104516471, -3.7759864553175277, -4.246400090154285, -2.581998623763598, -3.9495363733761426, -4.544068044350276, -7.0, -7.0, -3.862679866500334, -4.244660516448021, -4.096875268059688, -7.0, -4.087840549742632, -7.0, -3.0091289241314882, -3.9428014663179405, -7.0, -3.387081201499178, -7.0, -2.9649887923442346, -7.0, -4.0743653395608534, -4.5756380764913755, -3.6503439557045767, -4.2576905717886175, -2.239857278674468, -3.208663307762238, -2.7754309567465465, -2.9361927798732688, -7.0, -4.24911271341542, -3.2691859328139516, -7.0, -3.9495241780324495, -4.551803633168402, -7.0, -4.072335693862353, -2.687586122524311, -2.3870476724736753, -7.0, -4.543608690196552, -3.266408107693024, -7.0, -3.29903853947173, -3.286703412934269, -7.0, -3.791538607647169, -2.869859699265831, -4.543894291804688, -3.6616115767205613, -7.0, -4.244957106607392, -2.7522146133891745, -3.4481709982818494, -7.0, -7.0, -3.366364580388476, -7.0, -3.212523418522336, -3.2565115772188546, -3.7143776660363743, -3.7797527706739227, -2.5530187035215763, -3.432259004032759, -3.1746992883707756, -7.0, -7.0, -4.09221753532326, -4.25806231201092, -3.612112476645736, -2.9485949073321223, -4.545183368215406, -3.3637730982326692, -4.0731560301682705, -7.0, -7.0, -3.1228907572854245, -7.0, -3.4868553552769432, -3.5138710931559025, -3.095877687895717, -2.2785354966808096, -4.071538361623433, -4.244907688977901, -3.951216054809137, -3.8559792519028737, -2.611270116902844, -7.0, -7.0, -4.26254600711293, -3.800980415439888, -3.4739134752498346, -4.250407802854353, -2.9069264651891564, -2.9637306042765084, -4.548598222418581, -3.097530741912097, -7.0, -2.95579570442515, -3.7081901540503384, -3.792706788898358, -4.284284064190723, -7.0, -4.549530474736012, -2.210364597401199, -3.293943784029869, -7.0, -7.0, -3.1701563643860604, -7.0, -7.0, -7.0, -4.243174519793413, -7.0, -2.808153075999404, -2.4732289564856345, -3.1429790911205524, -3.7489296824118883, -7.0, -3.3443302124067187, -7.0, -3.943383207499316, -3.650974968502697, -3.546950572002201, -3.215933512374288, -7.0, -4.068977016662719, -4.24889240846553, -2.423985572258576, -7.0, -4.542128005067315, -7.0, -3.777330140625354, -7.0, -3.555590156480247, -3.60342105844824, -2.7399146106536945, -2.9524143949959307, -3.0677665718200244, -1.8444814312609394, -2.913561002070361, -3.8490138010230566, -2.330235887509512, -3.5467400252092727, -7.0, -7.0, -3.4039412508343103, -3.701148412597393, -4.545603968481417, -7.0, -3.3760494820288316, -7.0, -3.1368424743801975, -7.0, -3.8205407905494937, -2.37289179868471, -7.0, -3.6389327540387777, -3.737896578909624, -4.55568681403678, -4.56589502203011, -4.55709797835226, -4.258828770593979, -3.951738109097343, -3.6538875580709775, -4.110746791003332, -4.547688576129021, -2.999955454691801, -7.0, -4.035199521115102, -3.6580949067971456, -3.1827461425895804, -4.243831461981921, -2.3588058219694283, -7.0, -3.2416872093953355, -4.247445412862625, -3.3263961084813074, -4.245216456947668, -3.8489646100863593, -3.522357278959648, -3.7861004389479858, -7.0, -3.3109056293761414, -2.489507574006869, -2.9551227939084574, -7.0, -4.241471767550763, -4.546332868319189, -7.0, -7.0, -4.246350836456256, -7.0, -7.0, -3.0053643927472597, -3.351966736536176, -3.1892276127480357, -2.9662942563851096, -7.0, -4.069631102620343, -4.247261126880467, -3.951398238052487, -4.542775648234625, -4.544229323779228, -4.262154339133367, -3.7796926698612303, -3.8585612575392805, -7.0, -3.9398436043565996, -4.243199328115247, -7.0, -7.0, -7.0, -3.604154024809671, -2.4904995403286, -7.0, -7.0, -7.0, -4.24436372360166, -3.9478011971439804, -4.248059135312142, -7.0, -3.9478746548976984, -3.4796970961954656, -4.082869110489787, -3.7041290590724634, -3.311192092821401, -4.558984415870133, -7.0, -7.0, -2.286513799829162, -3.5205788014860047, -2.655736154949934, -4.073094864515745, -2.973787374579753, -4.250432201420758, -4.244573972817435, -3.944025929336147, -2.7468213460131796, -3.202945801696211, -3.0049209520857496, -3.3673120617569547, -4.13931224557867, -3.95433900860246, -4.248622995006579, -4.544130081987965, -3.4753442550701354, -3.1733028418881863, -3.24699069924155, -7.0, -3.6427488455183137, -3.5547798038037937, -3.846535036016974, -3.6034932083789473, -7.0, -3.2208328926130463, -2.630661741157685, -3.231336067802886, -3.9680040266867103, -3.7785130117389247, -2.7501725423153607, -3.022964206517993, -4.067480023931482, -3.2113794640853506, -7.0, -7.0, -3.221005778388855, -3.7819587156422436, -3.0576460880332545, -3.319915339824355, -2.9256880250155644, -3.2815357045635154, -2.7305861876933264, -2.7374656084886224, -2.9443634251545596, -2.888252317609033, -7.0, -7.0, -7.0, -3.2049551958985103, -3.307180646118739, -7.0, -3.5488682907918565, -3.665017825412473, -7.0, -3.562471304977469, -4.2459812555626195, -3.3167426208727453, -3.9476174983825936, -4.075559126333692, -2.8449288014012546, -4.248696487980903, -3.021754067367309, -2.9624655257438413, -2.781089127667723, -4.549861188471943, -2.756110879457404, -2.853459860691864, -3.327197556612044, -7.0, -4.250651726858576, -4.243967684036416, -3.059092737484648, -3.226911231277746, -3.644329154042816, -3.562530768862261, -4.242218320247613, -7.0, -3.2658433400609064, -4.068717577790595, -3.7039420250692117, -3.6469915374771227, -2.7955997369329895, -3.768379075007812, -2.4821356148977904, -7.0, -4.542700969448111, -2.4689579482875295, -2.805440337421175, -3.520491720719448, -3.507563546199266, -2.5170435584633832, -2.697514929326022, -3.3922209233273932, -3.0724752248302725, -2.0482695669897875, -3.3198988389606625, -3.241308712641187, -3.3563446054510298, -2.1055305200027217, -2.4706685145458436, -2.361365722754338, -3.5700445384708317, -3.132846465926999, -2.4458894882440507, -2.4315865711875913, -3.067134195440871, -3.467562573700709, -2.9296423045259363, -2.918857291696986, -2.582784501558062, -2.461009143239449, -3.746556361410369, -1.5957417359449504, -2.542115014259059, -2.74287979246495, -2.6183549594754334, -2.881313314761065, -2.4348625067705156, -3.099986529255579, -3.179978077587035, -3.4463100912355067, -3.3451589343977806, -3.622597359604622, -3.4357820663112877, -3.1644228411978355, -2.835529158016355, -3.706266554579547, -2.752827162590486, -2.5188993059374263, -3.02153039646357, -3.414081572540633, -3.111988908987206, -3.564133223842105, -2.809587153336223, -2.575474042203768, -2.6750122057523718, -2.320259357867973, -2.61321980160087, -2.342342859505044, -4.556688368835233, -2.537988791073051, -3.334189114934161, -3.9420452766683427, -3.830716949436898, -2.5941218354020963, -3.6884976854468556, -2.6305381471430116, -2.352751603076248, -2.621868384681515, -2.972770585594578, -3.6424892515699323, -2.9212657547472802, -3.4003405940215106, -2.0282002587582526, -4.305630775996965, -3.3017140736148685, -2.7053655117911855, -2.0712580457768963, -7.0, -2.6481946989112175, -3.089063955206904, -2.1165112778013424, -3.885632569294887, -2.3737923474189735, -3.4642978858554994, -1.4384512519152548, -3.027690411734007, -4.5500448095649055, -2.367513609110171, -2.025458371872805, -4.279153424927057, -2.62763585627933, -4.246042874223341, -2.7559430819678017, -2.1093033285923224, -3.2708715098186003, -3.7663384752512874, -4.542912526000351, -7.0, -4.24283946867282, -2.915256893802922, -2.2539200856685158, -2.9955403342287124, -2.2634417415239945, -3.69978818845623, -2.9257437004504925, -1.317611285700861, -3.2235431366244605, -3.1806872647181375, -3.64205624987141, -2.1184190556782965, -3.2879012132617578, -1.6689104123448641, -2.2424456838620324, -3.15031424729026, -3.960886796912443, -2.56989488208644, -2.3827732455867023, -1.6332240350786766, -3.2727085961319107, -3.849124460263414, -2.8810830558880607, -4.247531386233569, -3.057948165085225, -3.4448012079904675, -2.8858110689434704, -4.541953474458237, -1.4335810512738152, -4.2424668862353405, -4.067480023931482, -2.6654098753610374, -1.9949881177338864, -2.27688356060408, -3.0100254420896038, -3.1225552211338643, -2.3290722907547305, -3.3752367289481646, -3.0397988994599308, -7.0, -3.1089755442778646, -2.2446977694747496, -4.543049360639533, -3.3683736731283878, -2.997138334234319, -3.2548500689728237, -3.087670523729859, -3.0420707406931555, -3.052212835769748, -3.322243624275502, -3.293387111239789, -3.053918355714631, -2.729026432136778, -2.4688190763202438, -7.0, -2.7575455534913176, -2.9124762123293606, -3.1137762838370313, -2.4097613921943695, -4.246916917014926, -3.766536771919034, -2.5556730808874315, -3.164329058174529, -1.8450285000466284, -2.712743208890336, -2.874959064430903, -3.7784045149697625, -3.4693310102934105, -2.935496769408188, -3.2688119037397803, -2.2095477063625797, -3.3703280077795106, -2.8807302492686424, -2.5952285980591694, -2.963157958515926, -7.0, -2.5419233758836866, -2.221174975962108, -2.5503189632122982, -3.610506382373693, -1.9230356919061111, -3.0029711861626316, -2.9463430772106367, -3.1222280177113233, -1.9204875806010393, -2.891080064811009, -2.396443216311737, -3.251893612682507, -4.543298040491669, -4.542314924348526, -2.3689637403858352, -3.571394349314386, -3.4045893877910447, -2.7567414073569965, -1.69371900482725, -3.219751182542442, -1.7310881077814002, -7.0, -2.639665524407431, -2.6823209302068585, -4.247248838367474, -3.2359851056925977, -7.0, -2.657730572540051, -2.3274824394944114, -3.8157437313119185, -4.542663625238801, -3.1602764026089654, -3.707338977449808, -1.5880155126080546, -3.319522449065454, -3.8476960207341655, -3.764450127369505, -3.588147160101612, -4.242988412194795, -3.7650846334933146, -3.4652588912700675, -2.823549053162249, -3.478181568042029, -3.7160749247379314, -3.7022335328214155, -2.3490237296492333, -2.4591681041417863, -2.479374231246622, -2.6134853541155074, -2.5039268041935103, -1.7443845311071429, -1.8567264148606428, -0.25487660158808295, -1.9857695200222167, -3.209526184524548, -2.1668453699832115, -3.5424394925233997, -1.9354861259295948, -1.8225177834877329, -3.7637274037656985, -2.2418140039845724, -2.234859558209032, -1.5897489827548932, -2.977500833043951, -2.4610279826243358, -2.5547326248656144, -2.437650707791632, -1.309076483900133, -2.8176027845485527, -2.483592912107618, -1.9007254013943047, -2.948376283952328, -3.587449037524363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.874895786353347, -7.0, -7.0, -3.6707016495286346, -7.0, -7.0, -7.0, -3.989627770745151, -3.1894039256177455, -2.1134290899827994, -3.2039389889121495, -3.6276730317666157, -7.0, -7.0, -2.902886363725619, -7.0, -7.0, -3.0242290379677126, -3.0415392723231385, -7.0, -7.0, -3.629613445378183, -3.169600968020925, -2.6743600316646345, -7.0, -3.319415576268741, -3.3981136917305026, -3.642068627341504, -2.797168578888417, -7.0, -3.1639064334577514, -3.655042341331202, -7.0, -7.0, -3.7863964613723042, -7.0, -3.5967253493187594, -7.0, -3.372819981678968, -3.777281791671015, -3.408155133886264, -2.9595183769729982, -7.0, -3.3971575742021414, -7.0, -7.0, -3.2699019227319654, -3.2560008516550725, -7.0, -3.031959017228676, -4.0024252646779015, -7.0, -7.0, -3.341895943969397, -7.0, -7.0, -3.700270937356437, -7.0, -7.0, -3.1774210574831687, -3.359550916763318, -7.0, -7.0, -3.3259943001703647, -7.0, -7.0, -2.003831230105671, -7.0, -7.0, -3.4746849021732746, -7.0, -7.0, -7.0, -7.0, -3.2767680767401712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.865340905624584, -3.752969865029084, -7.0, -3.3476176979760814, -3.5615783683009608, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3181329278612206, -3.407447560198671, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1300119496719043, -3.5395308656643945, -7.0, -7.0, -7.0, -3.1202447955463652, -1.7813244556669878, -3.3951515915045425, -7.0, -2.931893544842148, -3.2632216936676484, -3.432381286685753, -7.0, -4.272746411201189, -2.878607956493832, -3.6769678142947586, -4.031771907514002, -2.9813655090785445, -2.746523605930747, -7.0, -3.042247272320338, -7.0, -7.0, -7.0, -2.8307719153047, -3.054166019538618, -7.0, -7.0, -3.655746533599422, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3837555416836356, -7.0, -3.47928731647617, -7.0, -7.0, -3.579859781948451, -7.0, -7.0, -7.0, -3.483016420144132, -3.7216045442801375, -7.0, -7.0, -2.2846562827885157, -4.110028243534681, -7.0, -7.0, -7.0, -7.0, -3.342620042553348, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055913223916149, -7.0, -7.0, -3.3644011919351606, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3873898263387296, -7.0, -3.359626819150352, -7.0, -7.0, -3.2811621964134967, -7.0, -3.4567707810445487, -3.885361220031512, -7.0, -3.189209489582306, -3.736555847162636, -7.0, -7.0, -3.7368743616484226, -3.908699432352224, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6142309497578875, -7.0, -2.8329192912697265, -7.0, -3.037824750588342, -7.0, -3.3715296320992945, -1.6582293734253237, -1.6974081935732832, -7.0, -7.0, -2.5075761646833645, -2.924915149252929, -7.0, -7.0, -3.1823195271506552, -7.0, -3.64777405026883, -3.1905184513367484, -7.0, -3.375114684692225, -3.078166708168154, -3.2812038682570117, -3.1980069079575624, -4.072658392225891, -7.0, -7.0, -3.3736474722092176, -3.712397131406715, -3.6316466629584196, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.535408776423756, -3.0252034252402584, -3.0293837776852097, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6873505695580273, -3.4592919449918176, -7.0, -7.0, -4.015820634262069, -7.0, -7.0, -7.0, -3.212471712342394, -3.468125695050418, -2.846543280888438, -7.0, -3.4408933464728357, -7.0, -7.0, -7.0, -1.2734329281934174, -7.0, -2.486599130358205, -2.723407376846712, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8256857080217586, -3.813714391881145, -7.0, -7.0, -7.0, -7.0, -3.7420177471401384, -7.0, -3.7788022040132385, -3.612889769287485, -3.0162810245428306, -7.0, -3.7344797894255772, -3.6252937390341455, -3.2202575612757083, -7.0, -3.1333134374911014, -3.6398847419163043, -7.0, -1.9965001510314468, -3.1543478812209957, -3.3305490465108214, -3.368968325638322, -3.519696767159853, -3.7599698575543075, -7.0, -2.744150684798368, -3.8962608225275375, -7.0, -7.0, -7.0, -7.0, -3.3758921298735, -3.4237918130180067, -3.6646419755561257, -7.0, -3.203168922875464, -7.0, -3.4710715736130306, -7.0, -7.0, -7.0, -3.104230965930801, -7.0, -3.384263785722803, -3.925185991397114, -3.605166468545595, -4.114020527757729, -7.0, -4.000781027353495, -2.544673895853184, -2.2373282608465153, -7.0, -3.699577591398909, -3.6496268868405295, -3.3835760193323763, -2.319526876598288, -2.423534985995795, -7.0, -3.6356847625472226, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3759195437046494, -7.0, -7.0, -2.7889053791447824, -3.798919838387624, -7.0, -3.4269447971948406, -3.9653898702151222, -2.4958472539940426, -3.054766217838991, -3.5895231155601817, -2.9561738896938907, -3.2200099682636307, -2.848189116991399, -3.7771729868397044, -3.9041821041340743, -3.900026619266373, -2.287780807637947, -4.400537989391946, -3.665785597585392, -2.692189463201086, -2.8609665297584645, -3.909038704007994, -7.0, -4.3532533339846005, -2.9060077736235383, -3.1150133695865434, -3.3730697084061685, -4.401297125021583, -4.090989492731618, -4.282055370683707, -3.1776086358791855, -2.9807950320434013, -2.9168366290301573, -4.1085565677610685, -3.4922189290866443, -3.509314554959585, -3.156321950446713, -4.201888500365973, -3.7535447596308416, -3.4657207449392846, -3.2013515984037575, -3.874249822778403, -3.3969835082752007, -4.403189178907667, -3.6649130538258987, -4.060584531360865, -7.0, -3.7008940037108062, -7.0, -3.621542245011795, -4.134782529381855, -3.8402315949581087, -3.383124584091668, -3.4887417131238716, -3.3911956392577416, -7.0, -4.4937925310696665, -7.0, -7.0, -7.0, -7.0, -3.926702494182645, -3.6989700043360187, -3.9666834625327567, -3.6122762328527447, -4.755414072917662, -7.0, -3.336409697039683, -7.0, -3.274042330049831, -3.9918460536448968, -5.110798390836454, -3.594806755921277, -3.705564390520156, -3.634678752178682, -3.9171027120527055, -4.012288739834607, -3.964030532827803, -7.0, -3.605778955151077, -4.008174184006426, -3.2649908769069174, -3.3916407034923877, -3.210140091523844, -3.6000917717260705, -3.1671372646333364, -7.0, -4.208738795422854, -3.665674780993893, -3.4099331233312946, -3.416219418368308, -4.070942474030112, -7.0, -7.0, -7.0, -2.4919616863062677, -3.1742052269401473, -2.204688959253367, -3.4827307000799426, -2.816812514702439, -2.870598962314376, -2.498922883086532, -2.124244675406698, -2.3138672203691537, -3.7645497190644672, -7.0, -2.3893526369799023, -2.6364878963533656, -2.151177176389977, -3.119915410257991, -2.4719331419959465, -2.4929073583960584, -2.715015187390733, -2.0643831044121965, -2.4171082451130608, -3.0013009330204183, -2.9742352774430265, -2.608748828678732, -2.498218629885796, -2.0072391725850767, -1.5745203381419075, -2.811879538862458, -3.3236645356081, -2.4049580494240805, -2.9379189026477803, -3.6466977312993345, -1.746031891867261, -2.832209858620681, -2.2578200904549908, -3.62797998982998, -1.5777702383669767, -3.249722340340543, -2.3337538404726046, -3.048247531803974, -7.0, -3.433289685195026, -2.742241574420333, -2.63205216670581, -2.4143834074473625, -1.2986532346892896, -3.7315081835960253, -2.0764199154189162, -2.670709595223797, -1.8745784456856038, -7.0, -2.1836830421216202, -2.9081785301701615, -3.0878459249737014, -2.3309546133716443, -2.5192220013770665, -3.2597730063299823, -3.548880562637515, -2.919376987420152, -2.2543852841984124, -2.972573080926555, -2.2114962884255043, -2.029990281380748, -3.4720246977002813, -2.3902430658089173, -3.3479151865016914, -1.710146556473407, -3.1312175426046194, -2.832143805932397, -2.7554335198406235, -3.6725596277632757, -2.1902865038852304, -2.3167326001184234, -3.2973227142053023, -3.1026480556594813, -1.8243033747578454, -7.0, -3.0969968632197054, -2.7417610824258207, -2.668056864156085, -2.8305886686851442, -2.7557115563729915, -2.569373909615046, -1.7815613199209546, -1.4631105402768478, -2.4044435823115102, -1.913548957906518, -1.8307405759693782, -2.275609912017191, -7.0, -3.6278776945799716, -2.5791463818227767, -2.373896723704669, -3.3935752032695876, -2.3872579622169017, -2.4079610051383122, -2.5393713363853183, -1.9912260756924949, -2.639665524407431, -7.0, -3.5177235948337353, -2.6731131042382335, -3.144418518602069, -7.0, -3.612889769287485, -3.2266514504548103, -2.160351513808608, -7.0, -3.446459496594692, -3.1032048709894418, -1.7889612255173273, -3.689930104018218, -2.7587226985453177, -7.0, -3.0274515428724906, -3.6418705454763125, -3.1588648570811704, -2.7427251313046983, -2.348996759212671, -2.2583179485318188, -2.0846903408324007, -7.0, -2.037055702202493, -7.0, -7.0, -7.0, -2.97285055584723, -3.7958105246674085, -7.0, -2.7569769267273, -3.135995383131673, -2.714067678703001, -3.3807537708039, -7.0, -2.954604270794606, -3.195161370069258, -7.0, -2.78306531546524, -7.0, -3.683587317572767, -3.252428233716468, -2.9665439814388943, -7.0, -7.0, -7.0, -2.7013520792687795, -7.0, -3.015778756389041, -3.7352794480604565, -3.697316541732383, -7.0, -7.0, -7.0, -7.0, -3.3984608496082234, -7.0, -2.7299742856995555, -3.0624566286256467, -7.0, -3.1699681739968923, -3.3232815728385168, -7.0, -7.0, -7.0, -3.017671538505329, -2.8307787007318903, -3.2234959409623944, -3.478566495593843, -7.0, -7.0, -3.403120521175818, -2.9294919102505377, -3.9890936926103255, -7.0, -3.1253511205147526, -3.1172562261895367, -7.0, -3.446537167073644, -7.0, -3.314183339137377, -3.534660575828444, -7.0, -3.4796156140571486, -3.0291131048924633, -7.0, -7.0, -7.0, -2.907411360774586, -2.832668550451795, -3.007491733295336, -7.0, -3.635785235533652, -3.452553063228925, -3.603459883471974, -3.4255342204982635, -3.4667193716815987, -2.776493635844961, -3.2210228052048415, -1.959594369612932, -3.447623097760286, -3.5052856741441323, -7.0, -2.4837817426770465, -7.0, -2.6670224853340585, -2.90444504107691, -2.0409537821578545, -3.1385132141577534, -7.0, -2.886913533398546, -3.0790002523038495, -7.0, -7.0, -7.0, -7.0, -2.63534010716356, -2.2489689159055066, -3.2252949198983876, -3.4216039268698313, -3.4077307280263356, -2.223293990490537, -7.0, -2.9681909858660296, -2.846337112129805, -7.0, -2.6317204190800085, -3.407413353850794, -7.0, -7.0, -7.0, -7.0, -1.6727134419961225, -2.569586694764772, -3.1470576710283598, -7.0, -2.53447939331355, -3.182557301304913, -2.756805094427709, -3.266231696689893, -2.887842265107357, -7.0, -2.7901509501858306, -3.137670537236755, -2.4036456868836145, -7.0, -7.0, -3.6716355966021297, -3.281714970027296, -2.49998148630061, -2.8138033046630917, -7.0, -2.9771854460106875, -7.0, -7.0, -7.0, -2.57951684265999, -7.0, -2.603242818609928, -2.847572659142112, -2.0604180114251784, -2.3727600307164853, -3.4727564493172123, -3.438858659420562, -3.525044807036845, -7.0, -3.1641875676827644, -7.0, -7.0, -2.8444771757456815, -3.044461360810665, -2.8974208899024245, -3.203168922875464, -3.2744401002736403, -3.3892547068486483, -7.0, -3.952647169758943, -7.0, -4.099706532297829, -3.5259513412480126, -2.904985881099363, -2.938162192858692, -7.0, -3.4824447919182653, -1.6490830949843571, -2.657142807403776, -7.0, -3.398287305357401, -3.6261007377332617, -7.0, -3.3827372657613304, -3.395675785269936, -3.114777731971562, -7.0, -2.7814476190128725, -2.5050319474775153, -2.868858087141923, -2.991289379312154, -7.0, -3.0279382361570777, -7.0, -7.0, -3.0567778460769324, -7.0, -3.0960654201442166, -7.0, -7.0, -3.4872798164430687, -3.168072999308404, -2.7953585510233854, -3.387033701282363, -7.0, -3.5485122563410356, -3.4169731726030363, -2.9478011971439804, -7.0, -3.6568644915489172, -3.04267393611923, -3.1122697684172707, -2.581335138918986, -2.87285524470481, -2.765072201102792, -3.472916355763714, -2.9737434376601035, -7.0, -7.0, -7.0, -3.4443571256560275, -3.4342494523964753, -7.0, -2.9754735856707497, -3.443888546777372, -3.282786844559675, -7.0, -3.2606079589006254, -2.8070379004300423, -7.0, -3.3551321154773457, -2.6219177784241787, -3.24809593109413, -3.6432552250247716, -3.262213705476417, -3.5901728315963144, -3.229297794114105, -2.5618166643189575, -3.10064620014548, -7.0, -3.52270499273475, -7.0, -3.5632041244800616, -2.824451270036613, -3.4260953830271657, -7.0, -2.694605198933569, -7.0, -3.287633800116223, -3.4702634469650784, -2.5626496722119168, -3.442793225939769, -3.464638559095033, -2.836439206334669, -3.329092647195331, -7.0, -2.085766126574217, -7.0, -2.730307169523499, -7.0, -7.0, -3.4435758797502576, -7.0, -7.0, -3.456973013635818, -7.0, -7.0, -3.531223374533027, -2.6519486241231784, -3.150672725821067, -3.7800433735207384, -7.0, -3.1481397365012196, -2.8651039746411278, -7.0, -7.0, -7.0, -3.6202401898458314, -2.9691828592322613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.111598524880394, -2.798650645445269, -3.219666980592045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4879863311293935, -3.358315640082196, -3.114054695592129, -3.1290450598879582, -3.0877307268865897, -7.0, -7.0, -7.0, -1.5558988438166708, -3.611404637711593, -2.5979843300652896, -3.490941205356787, -4.028863936842829, -3.504742636271688, -3.4345689040341987, -7.0, -3.3744917249438164, -2.921859811938469, -2.2167368891063215, -2.7115662221083117, -3.6504046698680317, -2.251638220448212, -3.0064660422492318, -3.4148062795010126, -2.8402315949581087, -2.786041210242554, -2.415529779157638, -7.0, -3.1381447441794874, -2.695731774096823, -7.0, -3.2703293970898586, -7.0, -2.7786679601196744, -2.9795897577601944, -7.0, -3.6775157047987577, -3.5603849229720157, -3.4946604700009796, -2.6109261934087056, -7.0, -3.4259823037627872, -3.1089031276673134, -3.195484523033764, -2.866508861395503, -2.8935398435646613, -3.3445494559097377, -2.7168377232995247, -2.95547394379502, -2.818665685531947, -2.9514184759183264, -2.555195248040743, -3.98453117086462, -2.3589093822301255, -7.0, -7.0, -3.3827372657613304, -3.887561040930009, -2.612359947967774, -7.0, -2.8743368353973677, -2.816525369214973, -7.0, -2.7110687225172314, -3.4523998459114416, -2.522257881011762, -7.0, -2.9155317393839453, -2.510192126070919, -3.4850112145785728, -4.267030853292765, -2.958629777768527, -3.8310311349676667, -7.0, -2.834844405648704, -3.7716119750851425, -2.7872969497664726, -7.0, -2.550771730644782, -7.0, -2.958882280950234, -2.9538670309532273, -3.26030994579492, -3.0134692323091703, -7.0, -7.0, -2.7506048083231383, -3.4379090355394983, -7.0, -2.711244671343486, -3.109443547064349, -7.0, -2.350041162182644, -7.0, -3.09377178149873, -4.616989850789326, -4.786502980070113, -7.0, -3.7944880466591697, -4.252189355651495, -3.6304278750250236, -7.0, -3.498331764235352, -3.529759443527333, -3.4583734153747776, -7.0, -7.0, -3.832085588672225, -4.006393297179845, -3.7584360480054384, -7.0, -4.089693208784839, -3.9786014653596657, -3.804990823476288, -7.0, -7.0, -4.613364293402583, -7.0, -3.778717876156957, -3.4694685478507536, -7.0, -4.0749169601414925, -3.938294514123816, -7.0, -3.4267163023532548, -4.215267343431722, -4.0931326430729955, -4.06199877337403, -7.0, -7.0, -7.0, -7.0, -4.181429096133507, -7.0, -2.9526310252827455, -3.505014240084107, -3.5744230695504813, -2.932661224370865, -3.9869955397243815, -2.969815141260817, -3.4645081766878896, -3.0274515428724906, -3.2763019240069164, -2.5397032389478253, -2.53164919521809, -3.6266336114657944, -3.215762754420895, -3.1067137971904137, -3.2581581933407944, -2.7105478667613006, -2.8564771400530096, -7.0, -3.2163242786866677, -3.630275285757692, -3.345765693114488, -7.0, -2.9952658503599583, -3.0397543442571333, -4.407086536735488, -7.0, -2.992553517832136, -3.449324093098727, -3.107110998040215, -7.0, -4.4087757169717054, -3.3660803677069033, -3.665440268065303, -7.0, -3.0822750248608437, -3.258921492187305, -3.2524230295413887, -3.001156577199942, -2.8319408361283087, -3.3218054838575393, -3.095577023862968, -2.934179390755185, -3.1870975005834774, -2.694027985973858, -3.302373284873846, -3.7505855273410087, -3.587817368255725, -7.0, -2.8683504996479683, -3.0969202315815303, -4.036569016076007, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2473733831061242, -1.38594604140928, -1.515618012680628, -7.0, -3.2920344359947364, -2.496929648073215, -7.0, -2.05307844348342, -2.249931756634195, -1.9210138986341143, -7.0, -2.2249155731390533, -1.2465238312090121, -2.2658492268440344, -7.0, -3.7100891449303903, -2.7087394925064303, -2.24863590683504, -7.0, -3.4665710723863543, -2.558544943096918, -7.0, -2.3710678622717363, -2.4028915836471096, -1.4843429861832331, -7.0, -2.337459261290656, -7.0, -7.0, -3.772803522998071, -2.6748128133041775, -3.2332225681395017, -7.0, -3.377943380255784, -1.3026454760706987, -7.0, -1.2880936272069723, -7.0, -1.2708904806332533, -1.5786092358059542, -7.0, -7.0, -3.344490519241893, -1.3146091060655962, -3.230959555748569, -3.162713725583078, -3.27207378750001, -1.2625668398595538, -7.0, -1.1380148847219913, -2.0183978544157357, -3.4688394488579064, -7.0, -0.9031888588152286, -1.1500821857422776, -7.0, -2.9022205282793148, -7.0, -7.0, -3.6938587997009296, -1.8988111890126687, -1.9734638067201293, -1.4121167635748022, -2.9274436926266865, -3.2580383383705556, -7.0, -3.957271979992943, -2.7641761323903307, -2.555039457190857, -3.4490153163477864, -1.294075663213465, -1.4447695028784557, -3.2425414282983844, -3.390405156480081, -1.1883086759638373, -2.0086496781149954, -2.1106613346882797, -2.788875115775417, -1.9683432302185928, -2.410022054320016, -2.547716115912941, -2.5780021341872574, -1.841583157038063, -7.0, -2.69810054562339, -7.0, -7.0, -7.0, -7.0, -7.0, -1.5465426634781312, -7.0, -2.5653852463756084, -3.0128372247051725, -3.175722610349459, -2.6823209302068585, -3.5177235948337353, -7.0, -7.0, -1.3135157072120407, -7.0, -1.2593504175237453, -1.555888689890907, -7.0, -3.394626764272209, -1.745240448962118, -2.367222763127719, -1.9601667654364898, -2.124135493579742, -7.0, -7.0, -2.915751490682417, -7.0, -7.0, -7.0, -3.319158129866988, -7.0, -2.6014080605346837, -2.6782147827453997, -3.4734869700645685, -2.9477603819114044, -2.445136968713304, -2.885785128783473, -3.1630122097748297, -1.977425360239766, -2.4460828966060557, -2.3546402645539692, -2.936625429372116, -7.0, -2.699837725867246, -3.394626764272209, -3.035029282202368, -2.507855871695831, -7.0, -2.6093601127809265, -2.7870351820262234, -2.332149796241367, -2.4256157245769305, -7.0, -2.425457496801941, -3.110252917353403, -2.9431646302222556, -2.7251967440975706, -2.7013952690139202, -2.58152802295868, -2.2785129279170753, -7.0, -3.3836358683618797, -7.0, -2.7972675408307164, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.426990834952875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.865163219506086, -7.0, -7.0, -7.0, -4.617862013700557, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7039196051869374, -7.0, -7.0, -7.0, -7.0, -3.3398487830376373, -7.0, -7.0, -7.0, -7.0, -7.0, -4.840911803851301, -7.0, -7.0, -7.0, -7.0, -3.6591552809406296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.388154507768882, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.178574103379925, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.002554808148482, -7.0, -7.0, -7.0, -4.371344983082098, -7.0, -7.0, -7.0, -7.0, -7.0, -4.036429265626675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.607519358372464, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.284520967479148, -7.0, -3.735119634081872, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.08109515656134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7564078725489582, -3.381656482585787, -7.0, -7.0, -4.05869168281923, -3.5625902246063346, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.713122454881604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.226956631551876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.536293239983433, -7.0, -4.411459761879543, -7.0, -7.0, -7.0, -3.9995654882259823, -7.0, -7.0, -3.4288634082992564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.831431420994256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.496652939250918, -7.0, -7.0, -7.0, -5.129544888382884, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.176431033922291, -7.0, -7.0, -5.019361421009378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.517591730711908, -4.47203934482198, -7.0, -7.0, -7.0, -3.6768947099757874, -3.5858553633220276, -4.5923433345820435, -4.036069700697702, -3.9839869219651898, -3.13756508756235, -4.307474643569412, -7.0, -4.998433718864469, -2.7302020406314362, -7.0, -7.0, -3.1904458346476585, -7.0, -7.0, -7.0, -5.388239784079347, -4.277655047714709, -3.9318391094686325, -4.110084422886923, -7.0, -7.0, -4.1901074883140454, -7.0, -3.5198863039908845, -7.0, -7.0, -4.326540668516562, -7.0, -7.0, -7.0, -7.0, -3.7559358050069402, -4.188844146546897, -7.0, -7.0, -7.0, -4.7656313066366955, -7.0, -7.0, -7.0, -7.0, -4.93483918821054, -7.0, -7.0, -4.142686612105551, -4.486312383821238, -3.5355834327235693, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.090166315732656, -7.0, -7.0, -7.0, -7.0, -4.479124035234161, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1336985461157765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.944359275507229, -4.354626976852949, -7.0, -7.0, -2.9903388547876015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.251029538523903, -7.0, -3.7721749608246142, -7.0, -7.0, -2.429752280002408, -7.0, -7.0, -2.9346667498242063, -7.0, -7.0, -7.0, -2.8419848045901137, -3.475802584198905, -7.0, -7.0, -1.0760995692822106, -4.131361989115943, -2.3475251599986895, -3.377306251068199, -3.1367205671564067, -3.0281644194244697, -7.0, -1.9530344572503566, -2.1256619582273957, -7.0, -7.0, -7.0, -4.018242667457909, -2.2323607123535703, -7.0, -3.421702618946589, -3.890850489627583, -3.885785128783473, -7.0, -1.352587832636258, -7.0, -2.1248301494138593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.503109436671369, -7.0, -2.790549039169605, -2.7193312869837265, -2.2706788361447066, -7.0, -1.6776862831585442, -7.0, -3.992686039162128, -2.855326386800406, -2.3450468246483553, -7.0, -7.0, -7.0, -3.5483587031513357, -2.1706807163747843, -7.0, -3.4270531135645013, -7.0, -3.657256886657311, -7.0, -3.0073209529227447, -7.0, -7.0, -3.8574531170352664, -7.0, -2.526051950563682, -2.499228724283611, -7.0, -7.0, -2.912487761332324, -7.0, -7.0, -4.632072431957763, -7.0, -3.3902283624691303, -3.8315711874815945, -3.485579476984679, -7.0, -7.0, -3.561101383649056, -2.442387532793123, -2.514813294999285, -2.6954816764901977, -7.0, -7.0, -4.061527870890508, -2.52403532248028, -7.0, -7.0, -4.054166019538618, -3.3550682063488506, -3.0858552339469405, -4.247248838367474, -2.6731131042382335, -7.0, -7.0, -7.0, -2.4720246977002813, -7.0, -7.0, -3.698796251790431, -7.0, -7.0, -7.0, -3.118369165644749, -3.0948203803548, -0.6388219222193926, -7.0, -7.0, -7.0, -7.0, -7.0, -3.510813010512496, -2.1132268916297963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8120104224238394, -3.170774935911056, -3.367169488534681, -7.0, -7.0, -3.552303109338354, -7.0, -7.0, -4.199412322193509, -7.0, -7.0, -3.544811911757776, -2.7531232446817127, -7.0, -7.0, -7.0, -3.3805730030668872, -7.0, -3.190611797813605, -7.0, -7.0, -7.0, -3.24699069924155, -3.170848203643309, -2.563777633362166, -7.0, -7.0, -2.113147211878742, -2.913460623830773, -7.0, -3.2909245593827543, -3.7021611731162283, -7.0, -7.0, -7.0, -3.181635741814027, -3.393474921682372, -7.0, -3.301897717195208, -7.0, -7.0, -7.0, -3.2793246654426103, -3.4644895474339714, -7.0, -3.2765383925663363, -3.108549913289516, -7.0, -3.2528530309798933, -3.165541076722373, -2.4915017662373264, -2.174096167093953, -2.7919244549379605, -3.5100201829742788, -2.5634810853944106, -7.0, -7.0, -7.0, -3.1818435879447726, -2.934245881023071, -3.008919388595035, -7.0, -7.0, -7.0, -3.6972916295266804, -7.0, -7.0, -3.2024883170600935, -2.4603339459252327, -2.2375599525385867, -7.0, -3.34143452457814, -7.0, -2.4681626421329956, -7.0, -2.8157795753077126, -7.0, -2.244834763479088, -3.383456296524753, -7.0, -3.318689269947746, -2.8796692056320534, -7.0, -3.3434085938038574, -7.0, -7.0, -3.0058237530290275, -2.2727695865517594, -3.4246886399517753, -7.0, -7.0, -2.1304574814945334, -7.0, -3.3316971703724616, -2.822331563082315, -7.0, -7.0, -3.786228560690241, -7.0, -3.217878578027433, -7.0, -3.241795431295199, -2.015794267183232, -3.490941205356787, -2.5548524343720542, -7.0, -3.103689717941284, -2.8318697742805017, -2.8389539801187342, -3.3554515201265174, -2.854002233126989, -7.0, -3.2154926659956033, -3.6524397475894204, -2.8042151791711407, -7.0, -7.0, -3.5669086552268032, -3.450557009418329, -3.2361592305796636, -2.783367523477168, -7.0, -3.2770932548562834, -7.0, -7.0, -7.0, -2.7871269470128004, -7.0, -3.057158750485419, -7.0, -2.420615770625765, -2.827177095755159, -3.2931414834509307, -3.240798771117331, -3.369957607346053, -7.0, -2.89687054041404, -7.0, -7.0, -3.203576774977973, -3.355930187078868, -3.4251264705087734, -7.0, -3.160577657190823, -3.8079557396120394, -7.0, -7.0, -7.0, -3.794243992434201, -7.0, -7.0, -3.4044060509212692, -7.0, -7.0, -1.9277901740740364, -2.6470568007550126, -7.0, -7.0, -3.9096629851540183, -7.0, -7.0, -7.0, -7.0, -7.0, -3.027164209914138, -2.725230813090089, -3.070123153384824, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0818871394235496, -4.093946723890583, -3.411339063315724, -7.0, -3.244524511570084, -3.31492005599242, -3.3500783389094986, -3.1752218003430523, -7.0, -7.0, -3.1017470739463664, -2.9041743682841634, -7.0, -2.7338390006971496, -3.2467447097238415, -3.231851723743416, -2.8568798705623637, -2.7557732544363507, -2.7363965022766426, -2.9802306913910317, -3.5963939497883994, -7.0, -7.0, -7.0, -2.8444771757456815, -7.0, -7.0, -7.0, -3.018608046407905, -7.0, -4.303390474113389, -3.1775364999298623, -2.8432327780980096, -2.992860751859648, -7.0, -7.0, -2.572514158162275, -2.9265139350708855, -7.0, -2.9461246192171453, -2.4575791469957626, -2.5978779313445366, -2.1636913256003165, -3.7247672456463103, -3.274388795550379, -3.7528164311882715, -7.0, -3.396417311708544, -2.1503909028621253, -4.060980983566012, -7.0, -2.747648195386783, -7.0, -2.983883913993666, -3.2893659515200318, -2.5786392099680726, -3.24699069924155, -2.500373714353374, -2.4159077455568165, -2.431497784984585, -7.0, -2.170516807608989, -4.375681899659375, -2.869338412885156, -7.0, -7.0, -3.248218561190075, -3.1878026387184195, -7.0, -3.269045709657623, -3.1961761850399735, -2.988112840268352, -3.1847860380463584, -2.6842167951388807, -4.163638359628923, -4.12271229119345, -7.0, -3.257438566859814, -2.4382031886892928, -7.0, -7.0, -7.0, -3.1990691962517417, -3.1341771075767664, -3.4310419453358856, -7.0, -7.0, -7.0, -3.2337573629655108, -7.0, -7.0, -2.965985202017604, -3.516055252248334, -7.0, -7.0, -7.0, -7.0, -3.0132586652835167, -2.998912904358786, -7.0, -3.315970345456918, -2.98781517440207, -7.0, -3.850033257689769, -3.2768637426396046, -7.0, -7.0, -7.0, -1.9248123892178863, -3.4886916983169405, -3.0991378037792234, -3.0189084443163274, -4.020609853377705, -7.0, -7.0, -7.0, -2.8299065411191857, -3.3373926976485757, -2.7266843220979933, -2.3278871661342855, -3.8997110945711446, -2.5098742850047193, -7.0, -7.0, -2.7883451651521183, -3.113051576876652, -2.6137243973838293, -7.0, -7.0, -3.3944516808262164, -3.2335037603411343, -2.832029647089928, -7.0, -7.0, -2.8979476545330574, -7.0, -3.096794185701888, -2.9418425759839604, -3.930980851109795, -2.689407528778004, -7.0, -3.1939376036814164, -2.893206753059848, -3.3289908554494287, -2.1520184006375565, -2.284355524825039, -3.303109622057102, -2.509099081939545, -3.007442945755542, -2.770557474850995, -2.86123561863404, -2.8217754671834636, -4.486621080900413, -2.8461824213064766, -3.1664301138432824, -7.0, -7.0, -3.5257572431523108, -2.808885867359812, -7.0, -7.0, -2.709027541498756, -7.0, -2.4501090810791015, -7.0, -2.778585327862962, -3.311541958401195, -2.757206173278786, -3.0147724740730637, -7.0, -4.562138156677707, -3.4047824189666427, -4.357349159048321, -7.0, -2.903331194708171, -3.3993110400675417, -2.335081616638203, -7.0, -2.3406423775607053, -3.2214142378423385, -3.1720188094245563, -2.6190319158657123, -2.6503075231319366, -2.715446198616883, -2.8813846567705728, -7.0, -2.7662888869340487, -3.2392994791268923, -7.0, -2.8421930493708496, -2.889141564421198, -7.0, -2.4345422920373827, -7.0, -2.8680563618230415, -4.30525460989783, -4.779300608532864, -7.0, -3.7180031682670176, -7.0, -3.9141667938756353, -7.0, -7.0, -3.8067846246122903, -4.020899672862536, -7.0, -7.0, -7.0, -5.002144454528368, -3.8935842363360282, -7.0, -4.6828307381686844, -4.450654465942707, -7.0, -7.0, -7.0, -5.389755969543411, -7.0, -4.544700412838673, -3.836893516376434, -7.0, -7.0, -7.0, -7.0, -4.003367171740312, -7.0, -4.686341277784655, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9906791703965108, -4.212240888801534, -3.478174691234221, -2.737788791709675, -4.202379321079624, -3.2180655795999282, -3.2400997455874054, -3.442009159140952, -3.6495879611004387, -3.0356965038452106, -3.7327203631568318, -2.803336595463957, -2.356450802904036, -3.1776124321762143, -3.5693083507830243, -3.257776317896286, -7.0, -3.411252282521769, -3.1836114492184326, -2.9017306917292185, -3.859138297294531, -3.7890339749426714, -3.450787792072898, -7.0, -3.47727476603862, -3.7183637376108463, -4.804190562898591, -3.236537261488694, -2.923909830929517, -7.0, -3.482954530079902, -7.0, -4.929970384909012, -3.634779458145952, -3.3399480616943507, -7.0, -3.4969494062444113, -3.5448893247242212, -3.613644530590093, -3.7007037171450192, -3.2854572872473353, -3.5676144427308447, -3.398271032027867, -3.5011414552877826, -7.0, -3.1998335061349032, -3.5988618448663616, -7.0, -3.6680926378460614, -7.0, -3.214137103413449, -4.016563295318421, -4.016009034734362, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6965855300976074, -1.3776389075463482, -2.0245454695294156, -7.0, -7.0, -2.737078997674152, -7.0, -2.244495414087114, -2.2692534315230697, -2.2116544005531824, -7.0, -2.51372545859298, -1.7200712915540184, -2.4478222595857493, -7.0, -4.157970243604713, -2.791129000727286, -2.1101196945803173, -7.0, -7.0, -2.8896751285670677, -7.0, -2.6159500516564007, -1.7534873044041706, -1.5629767514931665, -7.0, -2.6355610715693056, -7.0, -7.0, -4.607369228176479, -3.097361444565494, -4.016747891765552, -7.0, -3.5764565324056203, -1.5475513896384343, -7.0, -1.0881683171508576, -7.0, -1.414617806009165, -1.9405589700314552, -7.0, -3.216957207361097, -3.2323607123535703, -1.4604324568764007, -3.286606149046036, -7.0, -2.9596772555121413, -1.7163916266127448, -7.0, -1.1548038032485408, -2.5494120098036346, -4.22177925693969, -7.0, -1.3197856732887936, -1.4180394841289152, -7.0, -3.3306456444075034, -7.0, -7.0, -7.0, -1.9178034622952473, -2.269112488235736, -1.698042519772291, -3.2152849801139682, -7.0, -7.0, -3.9061733636440485, -2.6769221255374807, -3.0621430812277928, -3.256717745977487, -1.3553377591547957, -1.77650584730532, -7.0, -3.161667412437736, -1.4057299595320005, -2.3269680437679976, -1.561670856908037, -3.5199591807520685, -2.0789523907738947, -2.1720637697726377, -2.6614069923906154, -2.425968732272281, -2.173298358871511, -7.0, -3.0963885466873666, -3.370513089598593, -3.1835545336188615, -2.8588378514285857, -7.0, -7.0, -2.002885688237488, -7.0, -2.997211582832505, -3.016476194280864, -3.3448972999500617, -3.2359851056925977, -3.144418518602069, -1.3135157072120407, -7.0, -7.0, -7.0, -1.5111592882183627, -1.606284363029592, -7.0, -7.0, -1.843344600561001, -1.9690662857563495, -2.32916049510703, -2.1116405080098097, -7.0, -7.0, -7.0, -3.200303182981585, -3.184975190698261, -7.0, -3.263340126851339, -7.0, -2.3956175727530065, -2.9689496809813427, -3.2942457161381182, -7.0, -3.2550311633455515, -2.1654139227229567, -7.0, -2.358315640082196, -2.9453044216515423, -2.9093672192323017, -3.1322596895310446, -7.0, -3.303196057420489, -2.387686374306485, -3.1681044568157537, -2.979092900638326, -7.0, -3.0799847513312257, -2.357087442864468, -2.0964755012340386, -2.7350996531988936, -7.0, -2.6459132750338443, -3.1970047280230456, -7.0, -3.2115209972402297, -2.4794313371977363, -2.837114748515506, -2.03342375548695, -3.339053735709139, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.140438902378489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.75251196027259, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6008640363098396, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.760196229455134, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.671308354448867, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.130925292767531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.226146043037373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.290646646477703, -7.0, -4.262996581601494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.561220678933944, -7.0, -7.0, -7.0, -3.878498816349271, -7.0, -7.0, -4.4437478744709065, -7.0, -7.0, -7.0, -7.0, -7.0, -4.527823164012659, -7.0, -7.0, -7.0, -7.0, -7.0, -4.771888663626186, -3.8473258307854237, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4361626470407565, -4.961174211742868, -7.0, -3.1085650237328344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.010367809851715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5817221599490985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0718820073061255, -7.0, -4.163086798780062, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.49391789471334, -7.0, -7.0, -7.0, -7.0, -3.246252312299322, -7.0, -2.646893624167745, -7.0, -7.0, -2.184691430817599, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3180633349627615, -7.0, -3.1943255978407317, -7.0, -3.744029694553289, -7.0, -3.386498965550653, -7.0, -7.0, -7.0, -1.335792101923193, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0478587274074567, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2307894109934434, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.869571979375695, -7.0, -2.952671385348004, -7.0, -7.0, -7.0, -7.0, -2.843777640858486, -7.0, -7.0, -7.0, -3.0629578340845103, -7.0, -7.0, -7.0, -3.581380688709987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.782984220976423, -7.0, -7.0, -7.0, -7.0, -7.0, -2.44836273248059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4720246977002813, -7.0, -7.0, -7.0, -7.0, -3.353627758985543, -7.0, -7.0, -7.0, -4.088242433511572, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7785130117389247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1340176456759834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.769561935848059, -7.0, -7.0, -7.0, -7.0, -7.0, -3.018076063645795, -7.0, -7.0, -7.0, -3.642068627341504, -3.010299956639812, -3.134283382991931, -7.0, -3.631950826259217, -2.688177041143745, -3.7060346607143506, -3.331427296520743, -3.66029616027073, -3.259763720056213, -3.9465013905695874, -7.0, -3.6318494621598183, -2.621943546842604, -3.2203478430987618, -3.21818526771214, -7.0, -7.0, -3.1497321599470633, -7.0, -2.836631992552943, -2.3799801725484517, -3.6057358938767465, -3.0730896213446686, -2.972079277025493, -7.0, -3.3432115901797474, -3.6110857334148725, -2.854685504019982, -3.0026843129897296, -3.3502480183341627, -2.6865910208269637, -2.5049689845761307, -7.0, -3.6255182289716377, -2.651084089243011, -2.369215857410143, -2.594191581153005, -3.0478587274074567, -7.0, -2.9946836768553746, -3.6482624057480444, -3.3461328370047307, -7.0, -3.657342736814626, -2.918180171004722, -2.7383400528355843, -1.8898284729852795, -2.6893088591236203, -3.3813858660133773, -7.0, -2.9979976364080043, -7.0, -2.5673875601601006, -3.507653513464988, -2.2849568326149767, -3.039722488755794, -7.0, -7.0, -3.506234359612126, -7.0, -7.0, -7.0, -7.0, -2.967641564083011, -2.400746348353711, -3.2727286880397863, -7.0, -7.0, -2.407603325351417, -7.0, -2.751712027576497, -2.2621750492444925, -7.0, -3.5012647157334826, -3.483672863806311, -7.0, -3.073131564940993, -7.0, -3.6399842480415883, -1.9075705888173975, -7.0, -3.3443922736851106, -7.0, -2.8530895298518657, -3.6684791029325856, -3.051859685552474, -2.7069614941736275, -3.1365620365899805, -7.0, -2.6323316733428355, -2.7042731123189205, -2.4657545198338777, -3.6203442997544935, -7.0, -3.322563836189438, -3.0361496297458532, -2.6048737705526355, -2.5713593927538394, -3.6332664111554247, -2.7297536636567603, -7.0, -7.0, -7.0, -2.5697750745872114, -7.0, -3.4802944600030066, -2.8068580295188172, -2.3268891728674044, -2.682398447819868, -7.0, -7.0, -3.09324653110384, -3.1053398398052865, -3.123042319020609, -7.0, -7.0, -2.8606374167737547, -2.8997597236876644, -2.5756825795343086, -3.079452595311, -2.8048910915321743, -3.262580517382081, -3.6603910984024672, -3.32522822787085, -7.0, -3.7791804149414143, -7.0, -2.9051885225908243, -3.5851786285035163, -7.0, -7.0, -1.677365372298483, -2.563942294779078, -7.0, -7.0, -3.5859117103194342, -7.0, -7.0, -7.0, -7.0, -7.0, -2.089198366805149, -2.3277966577379194, -2.552035169157616, -3.2293746309288434, -7.0, -3.049605612594973, -7.0, -7.0, -3.2247056756774772, -3.876015661798158, -3.1697164090727963, -7.0, -7.0, -3.0680930538642177, -2.902886363725619, -7.0, -3.306425027550687, -7.0, -3.2343485271546655, -3.148396974251975, -3.7132384615456617, -2.948331446401186, -2.5563025007672873, -2.0012495576348677, -2.73917663191073, -1.888844414342479, -2.326745379565322, -3.05375050316729, -3.1832016721251284, -3.6475785542124552, -7.0, -3.605305046141109, -2.5255075609238915, -2.4943534012921837, -7.0, -7.0, -2.8002104435489317, -7.0, -3.4532227541587015, -7.0, -3.1711899563868537, -2.6622180000621567, -7.0, -3.4476747410782496, -2.550635949970891, -7.0, -2.933053210369387, -3.244689360492884, -2.8947906150702862, -3.2221092481637466, -3.119915410257991, -7.0, -7.0, -3.072302427940994, -7.0, -3.4977932285564193, -2.404755990537958, -3.367135583118011, -3.3296012483565187, -2.72714845883997, -7.0, -3.0683250363930514, -7.0, -2.721563318357481, -7.0, -7.0, -2.0413926851582254, -2.1843177798594184, -7.0, -2.525476726000246, -3.9439394644722165, -2.5680397947280933, -7.0, -7.0, -3.1650463796852826, -3.1416587697865523, -3.63002085111341, -3.3498600821923312, -7.0, -3.3585059114902354, -3.0716611234417877, -2.151405212887992, -3.390026224005205, -3.8708209420761808, -3.6061663146076204, -2.1350332136014343, -2.8790958795000727, -7.0, -7.0, -3.625415352154408, -3.1597927031384208, -3.4268364538035083, -2.7701972139577498, -3.6055205234374688, -7.0, -3.022943609686901, -3.159266331093494, -3.1308696038275126, -3.322219294733919, -2.062173082510824, -2.9507608581826994, -7.0, -3.312388949370592, -7.0, -3.6351820486562674, -3.3694014136966244, -7.0, -7.0, -3.6711728427150834, -3.325207689482919, -3.4406729882937586, -3.5094713521025485, -2.8029019429227557, -7.0, -7.0, -7.0, -1.6287817789978616, -7.0, -2.7072017786784093, -2.148658732600981, -3.116923847417229, -3.6822353569025643, -7.0, -7.0, -3.174447484146129, -2.729355395130064, -2.4131286270329313, -2.5128226971247, -2.6414741105040997, -2.484718436470184, -3.1911714557285586, -2.8454081396217936, -2.8018323042314583, -2.412830002562326, -1.8932208126749903, -3.604334073102911, -3.0373268776897215, -2.121438887639747, -3.0340265237751103, -3.426592582305156, -7.0, -3.464564059655464, -2.684162875655056, -3.700790221374347, -3.2018748585358794, -3.719993826367604, -3.5521501101340105, -2.21507405981132, -3.1513698502474603, -3.31923859026851, -7.0, -3.199480914862356, -2.4749734329483575, -3.0435194602457565, -3.199412322193509, -2.7925190299131533, -1.8336560803707163, -1.9098433138304707, -1.9781678314360502, -2.818738940905639, -3.949844352716353, -2.579270968576654, -7.0, -3.604334073102911, -7.0, -3.2706788361447066, -2.8109042806687006, -3.3463529744506384, -2.211902040898719, -2.5871494982543437, -3.0352295563502123, -3.0594119374386564, -7.0, -2.241668433463518, -3.06660542412653, -2.845186662498373, -2.7445723620206373, -3.1917303933628562, -3.924164378141671, -2.8667691028858657, -3.8438646402793872, -7.0, -2.4216039268698313, -3.399754191090663, -2.9022749204745018, -7.0, -3.382647303154711, -7.0, -2.894931123659502, -2.872783607024382, -2.8344696134717644, -2.855216194733363, -7.0, -7.0, -3.0088130090520893, -2.460095636143043, -7.0, -2.3267081665511262, -2.358315640082196, -2.4380476517490206, -2.3646250417549757, -7.0, -7.0, -4.332549544296137, -4.496770562043202, -7.0, -7.0, -7.0, -3.434983840181938, -3.747489492258673, -3.72607487021537, -3.485388317827623, -4.117702061209315, -7.0, -4.3761022583701, -3.9028029475875803, -4.536183744069879, -3.319355941066902, -7.0, -4.228674059346633, -3.5428503141820116, -3.856698688047469, -4.383042999305744, -7.0, -4.491254858261633, -7.0, -4.098839777341088, -3.099202372435998, -7.0, -4.390484690310887, -3.8007857903277626, -7.0, -3.4194807372393323, -7.0, -4.010121791503448, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9028320480601133, -3.975891136401793, -3.2189048941931206, -2.836233665954909, -3.9244688176869937, -2.908097212236117, -3.354530998050396, -2.9563818954498764, -3.7947493812264192, -3.2920344359947364, -3.227011105616783, -2.024091421981584, -2.59640302644237, -4.017756560917876, -3.280150238221159, -2.623850648027604, -3.241878383159056, -2.656915154219173, -2.666900712558807, -3.022325250092303, -3.391111613702803, -3.832971700601181, -3.6163179419637905, -7.0, -3.01534692246958, -3.1213292991298016, -4.479043219385034, -7.0, -2.3023206191454757, -7.0, -2.689847910948187, -7.0, -4.934404175542786, -3.4929000111087034, -4.002856926061121, -7.0, -3.214578953570499, -3.2824096712156043, -3.345231725806989, -3.8830933585756897, -2.837457816805311, -2.9203842421783577, -3.1612681529456736, -3.0727441557987976, -3.3702354372831773, -2.220396547201303, -3.0585139781456494, -3.8600383898071935, -3.2205176429386384, -7.0, -3.0313507468640846, -3.4988518534235458, -3.6695957810243134, -7.0, -3.313128713845194, -7.0, -7.0, -7.0, -1.9882213973042904, -1.3366766942669703, -1.5341136742552226, -7.0, -3.1405080430381793, -2.3403415296307353, -3.0829289150151302, -1.4252792663679836, -2.3519792918643674, -1.9548211830517932, -7.0, -2.1295437254991, -1.3735696006624911, -2.2425605395871684, -3.4599199557469165, -3.5314533695566217, -2.8531656617622896, -1.8433140432437767, -7.0, -3.6572471298837166, -2.4115742086626906, -7.0, -2.4927603890268375, -2.3162123596631825, -1.308824261316819, -7.0, -2.468158711741699, -3.6195107208384987, -3.628899564420607, -4.333548027189907, -2.4819725290651156, -3.3210770203302395, -7.0, -2.6576703723114363, -1.0092351981682364, -7.0, -1.2278569950445073, -7.0, -1.3707986436567077, -1.3593776211753175, -7.0, -7.0, -7.0, -1.4825717867894328, -3.4483971034577676, -7.0, -2.648034574860868, -1.4382031886892928, -2.4853427913382387, -1.3266469230038163, -2.03342375548695, -3.5068206042642256, -7.0, -1.1760219880639236, -1.0224261256148603, -7.0, -2.813358558611011, -7.0, -7.0, -3.5833877208856357, -1.5226122251848893, -1.7450716082583857, -1.355387657986574, -3.0321004752575327, -2.7636775163976686, -7.0, -7.0, -1.5381235426720743, -2.7482336437786707, -7.0, -1.326352314905222, -1.5071439664174373, -3.7085908451503435, -3.132152917684925, -1.3198078810877178, -1.9183971468776533, -1.7758472954740794, -1.7407421517131454, -1.922956834920365, -2.4902929895560635, -2.633276034450208, -2.4688683796431086, -1.7806196381984027, -3.613471827163333, -3.4079854213081364, -7.0, -2.7712724322770126, -3.3080305542661055, -4.12252714764831, -7.0, -1.7500754462389447, -7.0, -2.6741748768003752, -2.912904969285542, -3.4127724458089577, -2.657730572540051, -3.612889769287485, -1.2593504175237453, -7.0, -1.5111592882183627, -7.0, -7.0, -1.6273438285192878, -3.928037206406883, -2.404940567274162, -1.5238144501376383, -2.127734536719233, -1.856956321022818, -1.3228241617981338, -7.0, -7.0, -3.3103746420476123, -7.0, -7.0, -3.629409599102719, -3.2989839997333843, -3.7257483329955483, -2.6020599913279625, -1.792991681970249, -7.0, -3.028571252692538, -2.643551368562945, -1.981610995889209, -7.0, -2.20987713787046, -2.488633652523212, -2.3550682063488506, -3.2741578492636796, -7.0, -2.886490725172482, -2.7076766077813272, -2.846584502898046, -3.0532705666813786, -7.0, -2.589254372459997, -2.304790144537288, -2.23101625585726, -2.3214038358007936, -7.0, -2.67493176346858, -3.6226284261293253, -3.1508587351103174, -2.688345653360757, -3.0138900603284386, -2.8677352568310357, -2.080357968800938, -3.681512586638962, -7.0, -7.0, -7.0, -3.63558426631123, -3.3369597851207042, -2.750219025946535, -2.1999901215285598, -2.341269613058443, -7.0, -7.0, -3.333876636650032, -3.355307817103565, -7.0, -7.0, -3.2500205694119897, -2.387671913248881, -3.11277252110537, -3.686099771995916, -3.632963168167261, -7.0, -3.640878778701618, -2.7958291701355673, -2.6309925539264505, -7.0, -2.929776432804902, -2.9811151224266053, -7.0, -3.6665179805548807, -3.6348801407665263, -2.8204933731124284, -2.9427519204298136, -3.6732052817790453, -3.4408528809028094, -3.004149341900059, -7.0, -7.0, -3.6744937172963503, -2.814839277678894, -7.0, -3.540141698835551, -7.0, -2.709340641174848, -7.0, -3.4810215787471606, -7.0, -3.6787914343662442, -2.876939140345395, -2.934750874663579, -1.8254802118678997, -3.6671726724788685, -3.4016589724951523, -7.0, -2.7157527168228595, -3.273926780100526, -2.7203699127714107, -3.522900459461583, -1.9324886865786444, -3.527372082827612, -7.0, -2.914078585389112, -2.779989814589074, -7.0, -3.70372115992702, -7.0, -7.0, -2.4815322014595997, -2.34456563320384, -2.925949573169082, -7.0, -7.0, -1.9217211483096077, -7.0, -2.8530895298518657, -2.8322959710584774, -7.0, -3.340510212470853, -3.1978285278826197, -7.0, -3.186744501716686, -7.0, -7.0, -1.8697009736738779, -3.074743320941003, -3.190144864662612, -7.0, -3.8236698132681366, -7.0, -3.1456935239042205, -3.391052786139976, -3.455758203104137, -7.0, -2.8393027327129636, -2.864748335629659, -2.574883781005765, -7.0, -7.0, -7.0, -3.452553063228925, -3.1966596938570437, -3.0419563380367, -3.655906418180215, -2.7353569124617954, -3.6942541120252788, -7.0, -7.0, -2.9185872716624233, -7.0, -2.4940153747571436, -2.5517751904118082, -2.1269967514723724, -2.511600289536558, -7.0, -3.0592793486780776, -3.715501945293284, -3.4258601450778405, -3.0014555467434025, -7.0, -7.0, -3.480438147177817, -3.3913468443013244, -2.6554052496393994, -7.0, -3.3193374362368813, -3.2914118222501534, -7.0, -3.73275552117825, -7.0, -3.780156291265134, -7.0, -3.52329112918679, -3.597969275225808, -7.0, -3.0859146287065933, -1.582612259836227, -2.113750575290176, -7.0, -7.0, -3.9577030415488315, -7.0, -7.0, -7.0, -3.6484575942825224, -7.0, -2.9868314269997462, -2.6215539291743997, -3.0540861434129027, -3.3380080224113904, -7.0, -4.059108817913594, -7.0, -7.0, -3.721563318357481, -4.18369680863468, -3.1211903890551365, -7.0, -7.0, -7.0, -3.332124127960269, -7.0, -3.330413773349191, -7.0, -3.4295908022233017, -3.6489451821656727, -3.0325381792600066, -2.2942299611370496, -3.503790683057181, -2.8927205376754648, -3.4572004127937683, -2.6245494597571613, -2.3817035291290907, -3.200394450079095, -3.052674253551032, -3.368286884902131, -7.0, -7.0, -2.995020606124758, -3.187708686423428, -3.6591552809406296, -7.0, -3.0463887326513173, -7.0, -3.2465553921611647, -7.0, -3.261548338444689, -2.8411318527966554, -7.0, -3.459392487759231, -2.7407009689987443, -3.731346975545955, -3.192846115188842, -3.4394905903896835, -2.235222282297123, -3.0194486374936367, -2.5928109955252414, -3.9114772171061025, -7.0, -7.0, -7.0, -3.630665129596291, -2.2445395004217272, -3.810585322955202, -3.6535983818432896, -1.7527194376029664, -3.3334472744967503, -2.1505044159392837, -2.679337030520794, -1.798691258386048, -2.298378385705651, -2.498861688992884, -2.6932639977211865, -3.0073921195729496, -7.0, -2.333064896491424, -3.9477113985684684, -2.366124780433001, -7.0, -7.0, -3.664735968518705, -3.341335585180992, -7.0, -7.0, -7.0, -3.203576774977973, -3.381440002819618, -2.680732000090073, -3.2865562616780064, -3.434875590599677, -7.0, -2.712556174226849, -2.833420339025857, -7.0, -7.0, -7.0, -3.7792356316758635, -2.6305061051399616, -7.0, -7.0, -7.0, -3.3474275986185416, -3.358030076576957, -3.632356046239073, -3.646599751720373, -2.517428784441516, -2.8108661942666147, -3.633165353683903, -3.336059277866349, -7.0, -3.6577249542051082, -2.8452752669018024, -3.0828750913129275, -7.0, -3.6919651027673606, -2.984177136353868, -3.1570788249532042, -2.996161293368007, -3.5407047833107623, -3.752893154884594, -7.0, -7.0, -1.64742734474242, -3.4719514546809824, -2.5698327279788904, -3.392609030497567, -2.956357404797833, -3.4013143626917874, -3.659345635746177, -3.185919720174312, -2.8343253137447935, -3.670987603010034, -2.2773395080498693, -3.0028856882374884, -2.9907423617216766, -2.655618583541222, -3.388367667157301, -7.0, -3.424146305755156, -2.7135551558266218, -2.513617073787875, -7.0, -3.059658066366697, -2.8806502929812914, -2.8800510030033712, -2.196689278957495, -7.0, -2.8271537957574657, -2.977195801518918, -2.8741503584336896, -2.864445154002189, -2.271761515345511, -3.462635047996229, -2.7237541049498004, -3.651762447380111, -3.1094285444913927, -3.343802333161655, -3.697490887171057, -2.682990720468959, -3.0612262251191154, -4.110791660771106, -2.8069196184690592, -2.742506925762298, -2.6830470382388496, -2.0731682622651015, -1.8388490907372554, -4.1065590646715435, -2.49380646215058, -7.0, -7.0, -3.3279716236230104, -3.201988527362111, -2.6468392183446987, -7.0, -2.9856060830524367, -2.631173096220426, -3.359076226059263, -2.5697395697207623, -7.0, -2.9472376078706666, -3.6901074394563307, -2.80694271207381, -2.8622940465782776, -3.6901074394563307, -3.765737312131352, -3.0525708294952705, -3.692677611096558, -7.0, -3.525735671341458, -3.46599342501868, -2.712383834167483, -7.0, -2.4458635609892205, -3.6546577546495245, -3.3866772839608377, -2.997167871445834, -3.1820340262209674, -3.475235222604128, -3.640878778701618, -7.0, -2.9577440727248177, -3.1838390370564214, -3.6860102913152857, -2.847572659142112, -3.218902950862829, -3.0645515770910676, -2.315835362781999, -3.6307328928171967, -7.0, -3.85766412251388, -4.79940258709127, -7.0, -7.0, -7.0, -3.7398254113853047, -7.0, -3.9325955124185206, -2.96143200516566, -4.125253486024798, -7.0, -4.380283618094059, -4.4487295022658, -4.7132510690987335, -3.2424793108010457, -7.0, -4.406744506234903, -3.8628814005637455, -7.0, -3.7849915231445306, -7.0, -7.0, -7.0, -3.7334151031279044, -3.74262040632664, -7.0, -7.0, -4.283233364888754, -7.0, -3.625305590015191, -7.0, -4.2339516914043775, -3.919269907010536, -7.0, -7.0, -3.9022205282793148, -4.056638097379652, -7.0, -4.282214133062335, -3.0087162777596426, -3.4014867017741692, -3.8594814096820422, -3.535941190545326, -3.4602587043308133, -3.446226401778163, -3.622576647353478, -3.7861122837198264, -3.315288564340599, -2.306152858032541, -2.0963411095954876, -3.2672269610727946, -3.0353387578800564, -3.1572972322407757, -3.737987326333431, -3.171740379820262, -3.418425594468589, -3.346841769642251, -3.7023443583557687, -3.8366247257537696, -7.0, -7.0, -3.259726099140045, -3.340689835489153, -4.806612356691847, -7.0, -3.464042205438811, -3.190705124231049, -2.6886376191642114, -7.0, -4.712935770420799, -2.942256150419465, -3.463509053954063, -7.0, -3.0327063325812817, -3.188633231831517, -3.175525297628974, -3.4186326873540653, -2.3941056294279046, -3.709269960975831, -2.3826085158714565, -3.23724203998423, -7.0, -2.944264331148952, -2.811440943674158, -3.873611196996467, -2.9036882696704707, -7.0, -2.16006627804627, -3.1417338533026715, -3.6738499773429494, -7.0, -3.6379897807846855, -7.0, -7.0, -7.0, -2.3087488049859366, -1.8010970512692204, -1.461718957918466, -7.0, -3.061150780928549, -1.769724761680191, -3.798650645445269, -1.6944512483889211, -2.7011840783065937, -1.9036560889385818, -3.1659364290317904, -1.8915327727519662, -1.6468822374664192, -2.8373178216631016, -7.0, -3.935381292079985, -2.2130009594217945, -2.368235217008203, -7.0, -7.0, -3.5160062303860475, -3.0790002523038495, -2.5761640871494937, -1.9102947457629293, -1.8731473888125145, -7.0, -2.018224820106199, -7.0, -3.651762447380111, -3.791690649020118, -2.84651383420016, -3.535380743722831, -7.0, -3.5197623854242224, -1.3563206759578796, -3.101231386790699, -1.5291070133753117, -7.0, -1.9737758126634288, -1.4526195693282578, -7.0, -3.3517963068970236, -3.797059694699971, -1.9056323658772685, -3.3350565194390915, -3.3759378186307774, -2.9683272595463874, -2.062923679353503, -3.685204134471015, -1.815812058813848, -2.033750562998724, -3.3869446243705745, -3.640779477344857, -1.561138862137888, -1.6378847222472452, -7.0, -2.870306343898879, -7.0, -7.0, -3.5919915966674587, -1.7277520576687817, -1.8163174258363546, -1.9620798147780567, -2.3961993470957363, -3.737907923374639, -7.0, -7.0, -2.8982679813347163, -2.510768355278083, -3.668012971641832, -1.5256197523772965, -1.7327912834039527, -2.948738890358178, -7.0, -1.4992287242836109, -1.7094541093211546, -0.9323077387049005, -2.674012770977095, -0.6022494799944972, -1.7585400649078777, -2.604507788080989, -2.640481436970422, -1.5696117214590237, -3.9265996539070276, -2.726808682524964, -3.7157527168228595, -3.1635588985580028, -2.9333860419030544, -7.0, -3.82795052830263, -2.1620721685536584, -7.0, -2.2840002381605906, -7.0, -2.670769013549252, -2.3274824394944114, -3.2266514504548103, -1.555888689890907, -7.0, -1.606284363029592, -7.0, -1.6273438285192878, -7.0, -7.0, -3.635986111800833, -2.0819262315953124, -2.199772312903496, -1.7079320554082063, -2.613401316227284, -7.0, -7.0, -2.789076831748343, -7.0, -3.340344949528144, -3.1747380145272865, -3.007449044497749, -3.7441364524012473, -2.724722598063189, -2.414973347970818, -2.9832653525665456, -7.0, -3.366142676814887, -2.6112806471985532, -3.074725039091243, -2.1304036975639766, -2.4586775995617534, -2.2988267818265906, -2.1263738165269244, -3.922465945298413, -2.9869507878585164, -3.3347552398696707, -3.861653870213911, -2.9777236052888476, -3.6306312440205, -2.5247854493212225, -3.3902283624691303, -2.909199319174384, -2.3356098422232794, -3.5147469246343817, -2.502836638621003, -7.0, -3.651278013998144, -2.939875669940144, -7.0, -2.5980084167230095, -2.2725617633734894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9336224223562404, -7.0, -7.0, -7.0, -4.29664325564288, -2.232737755546996, -7.0, -7.0, -7.0, -7.0, -7.0, -2.360664401848062, -7.0, -7.0, -3.4642907856538874, -3.770336441095149, -7.0, -7.0, -3.656194062179186, -7.0, -7.0, -7.0, -4.588490200062119, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.19977040897577, -7.0, -7.0, -7.0, -7.0, -3.62746827245971, -7.0, -7.0, -7.0, -7.0, -3.4665710723863543, -3.3062769183480922, -3.837967018368655, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7229628089424898, -7.0, -7.0, -3.4147505757259213, -3.395393605710807, -3.3709754493589705, -7.0, -3.2189291850880872, -7.0, -7.0, -7.0, -7.0, -7.0, -4.837541092506384, -7.0, -3.503109436671369, -7.0, -3.6823256186678073, -4.065467672465651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.684291672207031, -7.0, -3.686189234244024, -7.0, -7.0, -7.0, -3.770041554319669, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.130719636562953, -7.0, -7.0, -7.0, -3.9228810912082936, -4.145972902802181, -7.0, -7.0, -7.0, -7.0, -2.761114365809316, -3.719248398447946, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2789364233011, -3.6084618473837273, -7.0, -7.0, -7.0, -4.233465707171558, -7.0, -7.0, -7.0, -7.0, -7.0, -3.477627636283374, -3.8497878242376857, -7.0, -7.0, -4.438336623263845, -7.0, -7.0, -7.0, -7.0, -7.0, -4.170173673806271, -7.0, -7.0, -2.9960249585742633, -7.0, -3.7661524898594236, -7.0, -7.0, -3.739097446117475, -3.3443922736851106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.63232733040593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0954831858295404, -7.0, -3.665918540181034, -7.0, -7.0, -3.352320637745696, -3.4173055832445254, -2.9051087054113625, -3.5991732173529125, -7.0, -3.8101652845431495, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9408649759667216, -7.0, -7.0, -7.0, -4.4163741915354215, -7.0, -3.6012177295644547, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.983581186705791, -7.0, -7.0, -7.0, -3.105558842490254, -3.0496443525693, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6924062348336304, -7.0, -7.0, -3.1848688024687895, -7.0, -3.343137690775371, -4.373949656322176, -7.0, -7.0, -7.0, -3.7344797894255772, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9320563015173873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.006337660374551, -3.3276449635986567, -3.7692295817365937, -7.0, -7.0, -3.4904676686713505, -7.0, -2.857753385075089, -7.0, -1.5214019507737675, -7.0, -7.0, -7.0, -7.0, -3.9820449790714902, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2478757389051127, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.214479576471884, -3.3853083013863463, -7.0, -7.0, -7.0, -7.0, -3.5755387065320834, -7.0, -7.0, -7.0, -7.0, -3.990338854787601, -3.91555811541152, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.881059242040658, -4.454570482102004, -4.187417688853972, -7.0, -7.0, -3.443984706747188, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5553967768062633, -7.0, -7.0, -3.1751317569102886, -3.2819419334408244, -3.3561788855533754, -7.0, -3.330359131857053, -2.979061471018838, -2.63230728977173, -2.8196350367166048, -2.844934740714757, -3.2287210842783987, -2.6247704635184332, -3.6850785976925997, -2.979702664346866, -3.175780637934789, -2.324666910859278, -3.149304662637318, -2.643222875279266, -2.592739228049737, -2.5351468666314307, -2.8985836484346144, -3.592620821321982, -3.426346824127506, -1.5702069657950393, -2.7944309034001953, -2.5328063591818957, -4.104845461232334, -3.3941013020400446, -2.695346948869479, -3.799064719351008, -2.505920882889847, -2.987030866887691, -3.3508376918557152, -3.4457079649469864, -3.116961764372151, -2.932763584161985, -7.0, -3.7637274037656985, -3.0953571428528686, -1.7335810253677884, -3.2232266527926114, -7.0, -3.5923903063414606, -3.2292743435523663, -4.070628844051428, -3.332286935410293, -3.705521613422667, -7.0, -3.611982518295699, -7.0, -7.0, -3.722812100254417, -3.5834391002295347, -3.937768567049936, -7.0, -2.991516800560143, -7.0, -7.0, -4.012710712741787, -3.840043330603494, -7.0, -7.0, -3.4069147043332144, -3.250150837583095, -3.745956036332752, -7.0, -7.0, -7.0, -3.744108823475306, -7.0, -5.111250748556312, -2.7557659962955827, -4.012394271505212, -7.0, -3.921790485658187, -3.4929837628169764, -4.509974959845468, -2.760260885474593, -4.310672074930124, -7.0, -3.351493360537302, -3.842397032423771, -7.0, -3.849244545652974, -3.8610838454082805, -7.0, -4.179287457481868, -7.0, -7.0, -3.5702120340015426, -4.376941757146759, -7.0, -7.0, -7.0, -3.3653943768547783, -2.6018711265796486, -2.3980183705310725, -7.0, -3.985493836151524, -2.975431808509263, -2.821367938567036, -3.374498392344555, -2.3472290439950934, -7.0, -3.677241845946654, -3.6837222824514324, -3.3631417096979495, -3.0244400557176196, -7.0, -2.8564699450416704, -3.3161101923368586, -2.6961316309388828, -3.0111473607757975, -2.4590907896005865, -2.9446471464872617, -1.9730389953933727, -3.400451639956946, -3.700790221374347, -3.011316643366872, -7.0, -3.8705209500127644, -7.0, -3.114883810844791, -7.0, -7.0, -2.1633534445111513, -2.8127539221439144, -1.5278802544226242, -3.6546577546495245, -2.9309490311675233, -4.104521252618329, -3.0224283711854865, -7.0, -7.0, -7.0, -3.863005451385769, -7.0, -3.372267444095655, -2.1526959412988536, -3.752662943120972, -2.171602514700333, -3.3953263930693507, -2.0754709227891843, -7.0, -3.226771698912882, -7.0, -3.0964359785983557, -2.831516743132146, -7.0, -3.877946951629188, -7.0, -2.4395479930903456, -2.521936753042379, -7.0, -3.6734816970733473, -2.2208444301661006, -7.0, -2.942617465122138, -3.8424220033576497, -2.62215946678484, -3.754806855354423, -2.0127493730851898, -1.64697522012513, -7.0, -3.3006824210300603, -2.988112840268352, -7.0, -4.017700971224117, -1.9151759061138112, -7.0, -3.711089840140532, -3.0565702209242036, -7.0, -7.0, -3.6069543130590116, -3.8439176380063924, -3.501013592678627, -3.437829806408219, -2.827956395600868, -1.8280924946729211, -3.045948538105334, -2.829303772831025, -7.0, -7.0, -2.6731664725674644, -2.4586378490256493, -3.115194321434587, -1.991803723060169, -2.829315261951061, -3.0919481908785595, -2.8203187697918297, -3.8157437313119185, -2.160351513808608, -7.0, -3.698796251790431, -7.0, -3.353627758985543, -3.928037206406883, -7.0, -7.0, -7.0, -7.0, -7.0, -2.356920794010944, -7.0, -7.0, -3.6577249542051082, -7.0, -7.0, -3.6625689669332604, -2.7170229235078334, -2.552626265425669, -3.0612262251191154, -7.0, -7.0, -2.4688683796431086, -7.0, -3.6871721045948, -7.0, -7.0, -7.0, -7.0, -4.227809604075215, -3.089949244814966, -3.456264787183392, -3.705607163404605, -7.0, -3.1749896504073343, -7.0, -7.0, -3.852126070250302, -7.0, -7.0, -3.569724949226159, -2.926085086925144, -7.0, -7.0, -3.671820560183249, -7.0, -7.0, -3.0296373803095857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.188112537165025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3939260065858368, -7.0, -7.0, -4.726480367434906, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.262195896425577, -2.649821463224565, -2.4424797690644486, -7.0, -2.7520484478194387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.140517470457171, -7.0, -7.0, -7.0, -7.0, -3.613418945034573, -2.6866362692622934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.928672319688248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6035773681514667, -7.0, -7.0, -4.752363485275562, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8164622587764545, -3.4310419453358856, -7.0, -7.0, -4.362840469311725, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8447566745101733, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3226327116922234, -7.0, -3.560086048497414, -7.0, -7.0, -5.150903737388157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.449831168353349, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.064345657162171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2427898094786767, -7.0, -7.0, -3.330210784571528, -7.0, -7.0, -7.0, -7.0, -2.6627578316815743, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.946206553842783, -7.0, -5.411707229364498, -7.0, -2.2166056942039845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.432969290874406, -7.0, -4.941203242555451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.309310715788175, -7.0, -4.530494252365142, -7.0, -4.708650310198278, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3807537708039, -7.0, -7.0, -3.0678145111618402, -7.0, -7.0, -7.0, -7.0, -3.913707913980483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4065401804339555, -7.0, -3.5538830266438746, -7.0, -7.0, -7.0, -2.98617435524234, -2.5150786750759226, -2.8825245379548803, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3140779917792127, -7.0, -3.897063242076261, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.933687179276238, -3.67797175281074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.186497231680861, -7.0, -7.0, -3.6604860157849677, -7.0, -3.874781294503695, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.780598108323546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.942102346729723, -4.255513712819534, -7.0, -4.869833836829262, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.987338484245791, -2.6913025633834833, -3.874046725512229, -7.0, -7.0, -7.0, -7.0, -2.325310371711061, -7.0, -7.0, -7.0, -4.317986769891909, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3336487565147013, -7.0, -7.0, -3.754806855354423, -7.0, -7.0, -7.0, -3.4834446480985353, -7.0, -7.0, -7.0, -2.510545010206612, -7.0, -4.616345958929143, -7.0, -7.0, -7.0, -3.3189498101690718, -7.0, -2.938186037505905, -7.0, -3.119585774961784, -2.9871695309342248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.154423973114647, -7.0, -2.8344207036815328, -3.1956229435869368, -3.6709412807357755, -7.0, -7.0, -3.501333178645566, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.8512583487190755, -3.5139790241916455, -2.9336559786575473, -7.0, -7.0, -7.0, -7.0, -1.6097468199942533, -7.0, -7.0, -2.9642596301968487, -3.7808931086870787, -7.0, -7.0, -7.0, -3.928375366184779, -3.584218112117405, -2.118815651549511, -3.821731821690044, -7.0, -3.710540447933297, -2.7415455167762097, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9258275746247424, -7.0, -4.525472408936226, -7.0, -7.0, -4.542663625238801, -7.0, -3.394626764272209, -7.0, -7.0, -7.0, -2.404940567274162, -3.635986111800833, -7.0, -7.0, -2.693140460675295, -2.9867717342662448, -4.088685256807787, -1.6755492229761288, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8830933585756897, -7.0, -7.0, -7.0, -4.097569639431371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.193110678436452, -7.0, -7.0, -7.0, -7.0, -3.350829273582968, -7.0, -7.0, -7.0, -7.0, -3.623352681537992, -3.1228709228644354, -2.940516484932567, -7.0, -7.0, -3.1734776434529945, -7.0, -7.0, -3.2237554536572413, -3.443106456737266, -7.0, -7.0, -3.292920299600006, -3.5082683903483165, -3.7944880466591697, -7.0, -7.0, -3.1092149901535073, -3.124554383000522, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2794958384653494, -3.6411269328035094, -7.0, -3.2772270809913566, -3.59063520421957, -7.0, -7.0, -7.0, -3.193958978019187, -7.0, -7.0, -3.570805538589023, -7.0, -3.203304916138483, -7.0, -2.6718667887725633, -3.484442207642407, -3.2380461031287955, -2.531052929286764, -7.0, -7.0, -3.2643455070500926, -3.6973196556576204, -7.0, -7.0, -3.505014240084107, -3.066325925362038, -2.4764773784239575, -7.0, -7.0, -7.0, -2.8976270912904414, -7.0, -2.815827362700702, -3.5829719291048057, -2.7007517771773712, -3.560205622970059, -7.0, -7.0, -3.5805828768143675, -7.0, -7.0, -7.0, -7.0, -7.0, -2.165095874754218, -3.5632140189832664, -7.0, -7.0, -2.7732987475892314, -7.0, -3.2072303098483532, -2.948331446401186, -7.0, -3.094587577089025, -3.9245990727152424, -7.0, -2.5179872030250783, -7.0, -7.0, -2.044446917238644, -3.1908917169221698, -2.7798368978412693, -7.0, -2.5802405082653763, -3.010299956639812, -7.0, -2.753104075187242, -7.0, -7.0, -2.832127070576861, -2.874191804679071, -2.5271368799683067, -7.0, -7.0, -3.567966906823154, -2.848958460827495, -2.582315933132205, -2.5724247511661993, -3.2271150825891253, -2.6225306165918294, -7.0, -7.0, -3.1696744340588068, -2.3623986907281687, -7.0, -3.5359267413955693, -7.0, -2.644520647943643, -2.964521521588674, -7.0, -7.0, -3.371621927176021, -3.3967222785037734, -3.49991035702922, -7.0, -7.0, -2.659372822480162, -2.614705516854607, -2.880976830201113, -3.040602340114073, -2.879450884912662, -3.3470371337849536, -7.0, -3.600319329751661, -3.3029799367482493, -4.044221718804828, -7.0, -3.1060775192489603, -3.4051755462179893, -7.0, -7.0, -2.0329181739608138, -3.1264561134318045, -7.0, -7.0, -3.7848489971615793, -7.0, -7.0, -7.0, -7.0, -7.0, -2.89250272192097, -2.9606066644196076, -2.822025869575364, -3.166578109919652, -7.0, -3.2359827034818394, -7.0, -7.0, -3.3848907965305544, -7.0, -3.889189612047073, -7.0, -7.0, -7.0, -3.3501874261496343, -7.0, -7.0, -7.0, -2.926856708949692, -7.0, -3.4075608494863623, -7.0, -3.5491259267581112, -2.754857772111842, -3.1598678470925665, -2.8534446979741572, -3.1367205671564067, -7.0, -3.7295223758548572, -7.0, -7.0, -7.0, -3.3242824552976926, -2.345128574198131, -7.0, -7.0, -3.195392218148846, -7.0, -4.002511631284908, -7.0, -3.09968064110925, -2.976173410782892, -3.336859820916809, -2.9847522781154137, -2.4560979776847325, -7.0, -3.2303211689190787, -3.1240148788874076, -3.4616485680634552, -7.0, -7.0, -3.7255032688593155, -7.0, -3.053923150548575, -7.0, -3.6980135039391815, -2.700126581535961, -3.2826221128780624, -7.0, -3.411922596466199, -7.0, -3.8303319934519617, -3.291368850451583, -2.949390006644913, -7.0, -3.282848602834645, -2.70209898861516, -2.6681195600536824, -7.0, -2.9361365870214917, -3.773676760807886, -3.008440475315219, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2711443179490782, -7.0, -7.0, -3.1852115157200926, -2.90759048821862, -3.163370120225884, -4.182313930896806, -7.0, -2.958085848521085, -2.6846209780269676, -7.0, -3.1740598077250253, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.236033147117636, -7.0, -7.0, -2.3625138895930924, -3.5160993671937972, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.248157250470427, -2.9246238275174004, -7.0, -7.0, -7.0, -2.0432502611543164, -7.0, -3.0839842431054527, -7.0, -4.117610973351813, -7.0, -3.2362852774480286, -7.0, -3.7344797894255772, -2.8600716907681347, -2.486108325822895, -3.1923583395461788, -3.9002032130168933, -2.3339508043872472, -2.708845638048179, -3.204662511748219, -2.1569409049604555, -2.0153370951873573, -2.0724752248302725, -7.0, -3.2440295890300215, -2.6956567599361905, -3.2357808703275603, -7.0, -7.0, -3.2065560440990297, -3.023572516643862, -7.0, -7.0, -3.4211101297934343, -3.904674184959942, -2.2518616038128814, -3.215901813204032, -4.308585754289083, -7.0, -7.0, -3.690196080028514, -7.0, -4.002813779224673, -3.6264430253312945, -3.376455288899979, -2.6924062348336304, -2.941511432634403, -7.0, -4.397679353778606, -3.2275782202995997, -7.0, -7.0, -7.0, -3.3501187447859833, -3.4127124827451016, -7.0, -3.000434077479319, -3.255393125707304, -7.0, -7.0, -7.0, -2.1308452620130898, -7.0, -3.362105319293773, -3.1126050015345745, -7.0, -4.164216001716105, -3.174247988032499, -4.135480179269442, -7.0, -2.6267025813092193, -3.9814602868654, -3.8446635282402393, -7.0, -3.3459615418131414, -7.0, -2.8041394323353503, -3.152532948434526, -7.0, -7.0, -7.0, -7.0, -3.5467893516312583, -2.3934498476670707, -7.0, -3.020568434801363, -3.036309443724438, -7.0, -3.101363672652795, -7.0, -7.0, -4.305351369446623, -4.779365575669822, -7.0, -7.0, -7.0, -3.9143255240175927, -7.0, -4.300780204515047, -3.8446352981531975, -7.0, -7.0, -7.0, -4.25009456618883, -5.002183346765043, -4.29169067749809, -7.0, -4.682911863319907, -4.927842388843768, -7.0, -4.333366655509717, -7.0, -5.38977190127149, -7.0, -4.544811911757776, -4.138271111964449, -7.0, -4.3667777196075805, -7.0, -7.0, -3.9364706555715805, -4.188056208438369, -4.209264731625127, -4.042811691807148, -7.0, -7.0, -4.118231648327027, -3.9320676922007216, -4.4679926595211485, -7.0, -3.510472828012453, -3.3428173146357327, -3.980575989779568, -3.04379216985318, -3.094221491063981, -3.743901550485179, -7.0, -3.2132520521963968, -3.4669053026275845, -2.2828162543573365, -3.616265405281708, -4.457048826585631, -3.475872616012005, -3.309062090847971, -3.118430077122089, -3.0209287974587418, -3.1048284036536553, -7.0, -3.8596785766284483, -4.09029333131011, -3.752662943120972, -3.344588742578714, -2.8487607596866726, -3.451661114468938, -5.008323327254799, -7.0, -3.2931414834509307, -7.0, -2.6775496264220617, -7.0, -5.407113751472994, -3.8112397727532894, -3.942528893958499, -7.0, -3.3879037141941413, -2.879018344912913, -3.643685271947555, -7.0, -3.198432135130042, -3.3919343639822452, -3.6248572269753003, -3.3872391936833566, -2.470872305442661, -3.023512115776103, -2.884171593021045, -3.1884597362982907, -3.585884509233432, -7.0, -7.0, -3.4423961423406735, -7.0, -7.0, -3.1772478362556233, -7.0, -7.0, -7.0, -2.043021327727601, -1.8523444248884782, -1.9323482720593461, -7.0, -2.988112840268352, -2.737249454070101, -3.2364112877439664, -2.132376137978425, -2.323252100171687, -2.353378922399407, -3.192846115188842, -2.6688448027085734, -1.9368429437934995, -2.9960736544852753, -7.0, -3.0113287324559876, -3.1911714557285586, -2.090767351466499, -7.0, -7.0, -1.991732246474622, -7.0, -2.8405242885014963, -3.450864692379766, -1.6382812116898668, -7.0, -2.6359088626932117, -7.0, -7.0, -3.829207252221248, -2.5746412931863643, -3.49373680227684, -7.0, -7.0, -1.7526303780711907, -7.0, -1.858014813118205, -7.0, -1.5936667387290353, -1.7719023011066422, -7.0, -7.0, -2.6881654767644583, -1.8345753455433524, -2.9858005756496806, -2.9804578922761, -2.961104552884867, -2.1577966360127188, -3.0002170929722305, -1.7038382993699157, -2.043837786748507, -3.7447882918684714, -7.0, -1.8409420802430991, -1.5324438971546441, -7.0, -2.9713628381188473, -7.0, -7.0, -3.647676313240871, -1.931260059489091, -2.3454227452289564, -1.4882899572720143, -2.9145194487727255, -2.1122697684172707, -7.0, -7.0, -2.3761205256094518, -2.760924848409133, -7.0, -1.8655833439845002, -1.8460701601334177, -3.096736260462469, -2.8627275283179747, -1.7055765671716585, -2.222284502229978, -2.408324780170415, -2.674467460866252, -2.4980429599586, -2.9908935802199035, -3.2074323856093794, -2.3397223955516253, -2.2675069615203176, -3.271066772286538, -3.0979510709941502, -7.0, -7.0, -7.0, -4.378579576115775, -7.0, -1.7644667275713992, -3.1077750894177876, -2.868994403748707, -2.5903680640032447, -3.412152427883938, -3.1602764026089654, -3.446459496594692, -1.745240448962118, -7.0, -1.843344600561001, -7.0, -1.5238144501376383, -2.0819262315953124, -7.0, -2.693140460675295, -7.0, -1.8866851708806343, -2.422501842403204, -2.0149403497929366, -7.0, -7.0, -3.1696744340588068, -7.0, -7.0, -7.0, -3.0875448095324267, -7.0, -2.574176008432909, -2.366189402779955, -7.0, -3.2219355998280053, -7.0, -2.6182573448404014, -7.0, -2.3045918918728865, -2.821513528404773, -2.7416557497979346, -3.531159465404532, -7.0, -1.974226499472477, -2.8698182079793284, -3.043853283705882, -2.8045937153076332, -7.0, -3.0342673970380254, -2.2327844143207414, -2.157284034918504, -3.162962476653458, -7.0, -2.7724439571056845, -7.0, -7.0, -2.73453314583352, -3.1832698436828046, -2.8959747323590643, -2.7224693858840308, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0644579892269186, -2.396780343144799, -2.8135809885681917, -7.0, -7.0, -4.164669131964212, -2.64132153910541, -7.0, -7.0, -3.033396946358147, -3.2713768718940743, -7.0, -3.1758016328482794, -7.0, -7.0, -7.0, -3.3946656621210396, -3.6148445071937103, -2.9585638832219674, -3.7134905430939424, -3.2065048501589817, -2.9291633832050645, -3.1089031276673134, -7.0, -3.115943176939055, -2.324053698651949, -7.0, -3.754965460970997, -2.5296869537729165, -7.0, -7.0, -3.1370374547895126, -3.1029479680053735, -7.0, -2.707813410202252, -7.0, -3.4490153163477864, -7.0, -3.680469929748303, -3.061829307294699, -7.0, -3.428944290035574, -2.4790471757557007, -2.6896639650157703, -7.0, -7.0, -3.269512944217916, -2.568670978009897, -3.359076226059263, -2.7082391243246837, -7.0, -2.4983105537896004, -3.8294967497201826, -7.0, -7.0, -3.0399426187629923, -7.0, -7.0, -7.0, -7.0, -2.70472233322511, -2.846955325019824, -3.179521555186347, -7.0, -3.0195316845312554, -2.3677858446531794, -7.0, -3.773640193260026, -2.9042646112937147, -7.0, -2.425697213362591, -3.313825053809394, -7.0, -3.1458177144918276, -7.0, -7.0, -2.167918737160758, -3.1122697684172707, -7.0, -7.0, -7.0, -7.0, -3.5618166643189575, -3.605412798153051, -7.0, -7.0, -3.043464350877091, -2.6960285780634194, -2.784656909005254, -7.0, -7.0, -3.2016701796465816, -7.0, -2.689012715585447, -2.6383894076653363, -7.0, -2.3104389933890426, -3.2016701796465816, -7.0, -7.0, -2.6734158998636306, -7.0, -2.98781517440207, -3.3047058982127653, -2.447978401055593, -3.1318680643619947, -7.0, -7.0, -7.0, -2.390272567719502, -3.549020787680313, -7.0, -7.0, -3.4302363534115106, -3.1283992687178066, -3.3818367999983434, -7.0, -3.1880280413350803, -3.8041470076134645, -3.161368002234975, -7.0, -7.0, -4.21809328354526, -2.9647309210536292, -3.0434932671585737, -3.660106221723244, -3.0362295440862943, -7.0, -2.125728950919596, -3.544564097496043, -7.0, -7.0, -4.076695045579167, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6867528114559094, -7.0, -2.9387845299228235, -3.7293268096468606, -3.188084373714938, -3.2092468487533736, -7.0, -7.0, -7.0, -7.0, -3.859378504425601, -7.0, -7.0, -3.1931245983544616, -3.3719663222631246, -7.0, -7.0, -7.0, -2.8284450587956416, -3.041787318971752, -7.0, -7.0, -7.0, -2.8606374167737547, -7.0, -3.207526655463334, -7.0, -2.846955325019824, -3.8848596333686762, -7.0, -7.0, -7.0, -3.203032887014711, -3.104145550554008, -7.0, -7.0, -3.2502735862322463, -7.0, -3.8151348166368138, -7.0, -2.983325529161058, -3.371862186930359, -7.0, -7.0, -2.6853435772341014, -7.0, -3.159115821827769, -7.0, -2.529467020708508, -2.9731278535996988, -2.7297720531082863, -3.2038484637462346, -7.0, -3.109662900499272, -7.0, -3.3738311450738303, -2.61874519875888, -2.586781246747011, -7.0, -3.315025199312605, -7.0, -7.0, -7.0, -3.0330214446829107, -7.0, -7.0, -2.4784943476608086, -2.357934847000454, -7.0, -3.1677602664356295, -7.0, -3.1846346565862738, -7.0, -7.0, -7.0, -3.0153597554092144, -7.0, -3.131297796597623, -7.0, -7.0, -3.637739827119136, -2.556704439233648, -7.0, -4.15705529761581, -7.0, -2.8135809885681917, -2.373218599863817, -7.0, -7.0, -7.0, -3.424881636631067, -3.346548558548474, -3.341038631677523, -2.957607287060095, -7.0, -7.0, -2.780317312140151, -7.0, -7.0, -3.055187138555754, -3.903701516648935, -2.9740509027928774, -2.6906390117159673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.426267207139606, -7.0, -2.7023642471251033, -3.8492965408347266, -3.36285930295868, -7.0, -7.0, -2.3830927975696685, -7.0, -2.876807514113195, -3.200303182981585, -4.016406500871118, -7.0, -7.0, -7.0, -3.4122084658816805, -3.1773200201636933, -2.463440504592086, -2.5792499247558665, -3.570017265641518, -2.0126263509540503, -2.3384564936046046, -7.0, -2.9903388547876015, -2.574031267727719, -2.7268629897004635, -7.0, -7.0, -2.99409708958821, -7.0, -7.0, -7.0, -2.9545640899663494, -3.2550794424275757, -3.2778383330020473, -7.0, -7.0, -4.179293205577373, -1.844187849680195, -3.05307844348342, -3.4521151559753847, -7.0, -7.0, -2.1895304166110634, -3.3820170425748683, -7.0, -3.570192561095726, -3.2189291850880872, -2.911512714632127, -3.5870371177434555, -2.6705550695214364, -4.624606277253296, -3.598571663482141, -7.0, -7.0, -7.0, -3.0141003215196207, -3.190984983213069, -7.0, -7.0, -2.4872798164430687, -2.6074550232146687, -3.4176377396522297, -2.819872821950546, -1.6213576534552254, -7.0, -2.5514499979728753, -3.368658712392227, -7.0, -4.081953072849033, -3.0338780932956375, -4.194312526129325, -7.0, -3.5258866515209393, -4.020738225867342, -2.6335357828383685, -7.0, -2.929929560084588, -7.0, -3.597366050266028, -2.973523686361632, -2.8064061101420315, -2.940682467920219, -2.403549454032318, -7.0, -3.176958980586908, -2.788168371141168, -7.0, -3.2000292665537704, -3.69284691927723, -7.0, -3.2086160065968223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.716929407273744, -4.382359297519319, -7.0, -4.596212107141384, -4.28113567588559, -7.0, -7.0, -7.0, -7.0, -4.999956568380193, -7.0, -7.0, -7.0, -4.925198603055123, -7.0, -7.0, -7.0, -7.0, -4.285602311285613, -4.061226225119115, -3.3432444303235798, -7.0, -7.0, -7.0, -7.0, -4.1758450890945245, -7.0, -4.079687627611336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5963496422097987, -4.318282514840762, -3.227372442289636, -7.0, -3.837402739134079, -3.612359947967774, -3.400451639956946, -3.7365956742507382, -7.0, -3.856429290988121, -3.059437187851868, -3.080987046910887, -7.0, -3.8858180821280595, -2.9598870060542675, -7.0, -3.7460578706127543, -3.007503929323978, -7.0, -3.5265331155907425, -4.382197210377454, -7.0, -7.0, -3.7895983373945126, -4.057230661599434, -5.706861954410581, -7.0, -3.2534995431676204, -7.0, -3.781717088051875, -7.0, -4.929110552332653, -7.0, -7.0, -7.0, -7.0, -3.9631264410819047, -4.309211282891381, -7.0, -7.0, -7.0, -4.201997619583105, -3.795337679341311, -7.0, -3.2212961066711223, -3.78216674257991, -7.0, -3.986721118781962, -7.0, -7.0, -4.312325482315131, -4.005309236848516, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5601983327861335, -2.004002742453674, -2.10483958902677, -7.0, -7.0, -3.205610309902521, -7.0, -2.494502447046173, -2.594760752586463, -2.9383052411083064, -7.0, -3.295133963911634, -2.515590022016421, -3.167317334748176, -7.0, -7.0, -7.0, -2.7077404542737713, -7.0, -7.0, -3.511214701136388, -7.0, -3.1953460583484197, -1.9061810639690855, -2.0596666697498907, -7.0, -3.731467887193129, -7.0, -7.0, -7.0, -3.5397484973580404, -4.09241182801244, -7.0, -7.0, -1.8561146882139077, -7.0, -1.8304184418497222, -7.0, -2.3694220261687753, -2.021696949018919, -7.0, -7.0, -7.0, -2.413299764081252, -3.024895960107485, -3.146128035678238, -3.348888723071438, -2.41137916622742, -7.0, -2.139323367218689, -1.8465476663945941, -7.0, -7.0, -2.1465709673656916, -2.09330492363931, -7.0, -3.5589784210949995, -7.0, -7.0, -7.0, -2.4168068718229443, -2.5328738841522354, -2.6829183011749445, -2.9460590603851236, -7.0, -7.0, -7.0, -2.4452927694259716, -7.0, -7.0, -2.5761767511960896, -1.8950974022929163, -7.0, -2.975891136401793, -1.7246115691474593, -2.0908150144050226, -2.1165128680770238, -3.448087666692341, -2.701715371253416, -2.8326366275967034, -3.171360731962648, -2.803229438326343, -2.6700911622507957, -3.4055171069763763, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5281450782531065, -2.212453961040276, -3.523095838252568, -2.9327400435462407, -7.0, -3.698709349442587, -3.707338977449808, -3.1032048709894418, -2.367222763127719, -7.0, -1.9690662857563495, -7.0, -2.127734536719233, -2.199772312903496, -7.0, -2.9867717342662448, -1.8866851708806343, -7.0, -2.9715335443974213, -2.4216039268698313, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3574266029612865, -7.0, -2.7950105586314464, -2.5292378052696605, -7.0, -7.0, -7.0, -2.3474694133222886, -7.0, -7.0, -3.3312247810207323, -3.4254363954090103, -3.798167059715939, -7.0, -7.0, -2.6848453616444123, -7.0, -7.0, -7.0, -3.50500066392687, -2.7146091386431936, -2.8810992183890174, -7.0, -7.0, -3.0064660422492318, -7.0, -3.0511525224473814, -3.4396484295634737, -7.0, -3.2221092481637466, -2.7257074985747667, -7.0, -7.0, -3.9176805224430487, -4.389874558390986, -7.0, -3.912947931581974, -4.0920360389444586, -3.3702775172275845, -2.837451932032312, -3.9160326101885694, -7.0, -2.6465741881944087, -7.0, -7.0, -4.393083602089456, -2.8582308632790943, -2.4448360285808475, -3.148979483013599, -4.3990157256487645, -7.0, -7.0, -4.089551882886454, -1.9283455066819617, -3.548020694905531, -4.388669463976623, -2.766731439484117, -2.4342353567673647, -4.402502112664219, -7.0, -3.912363785988484, -3.241363826010479, -3.8039860045173377, -4.095483185829541, -2.8030999214991477, -3.255926900338438, -3.7895807121644256, -7.0, -4.09572712255598, -3.054179909539224, -3.7919186113238093, -3.17790506896417, -3.7880445724974723, -3.72209071485586, -4.094907649416061, -2.859604649512901, -4.392978186542541, -3.4430890609518037, -3.4187982905903533, -3.802346059593307, -1.9987107152217967, -4.395413767475018, -4.10124858623158, -4.134862127351672, -3.200594030012974, -3.2658786595628224, -2.0908341738705243, -3.127736334664101, -2.2928847904644725, -3.1588792018312803, -7.0, -4.400382548045428, -3.282492636993701, -3.79894398857152, -4.101420543187383, -3.925501173028865, -7.0, -3.700340211110526, -2.3259101824596113, -1.9209689244466794, -3.79039073332807, -7.0, -2.514088407416947, -7.0, -3.4695716724419987, -2.6449921835286525, -4.391975460609762, -3.7287594751678745, -2.9176989407505602, -7.0, -3.0051970177572516, -7.0, -7.0, -1.8462862609521928, -3.572257382889322, -3.492166493894078, -4.088118362033397, -3.1276392349882074, -3.922465945298413, -3.3930005495543805, -3.0250536617257993, -3.568369372971568, -4.4114345021650045, -2.222872748808266, -3.0970363348477785, -2.5968876654475994, -3.913919764951466, -7.0, -4.126212606567055, -3.333413685070855, -3.0608784167694707, -3.1667571956139016, -7.0, -2.9184406291931984, -4.099542528695332, -7.0, -7.0, -2.4320040756867116, -4.390617214336786, -3.644668314139634, -3.3661681643281374, -2.5156582441630277, -2.14472570968999, -7.0, -4.394434168598875, -3.2282976764748628, -3.7081488497104047, -2.2449861731746967, -3.1709171502194033, -4.389431897582197, -3.5159069441638047, -3.4863989899853727, -3.197265238826092, -7.0, -2.9466420375666296, -2.3899405804127625, -3.796001602777842, -3.3773482883807557, -3.620621804225215, -3.1907074866648917, -3.927797944526652, -3.2829294634880095, -3.6709412807357755, -4.3918169236132485, -4.09841873415025, -1.4547709833513456, -2.8630816077402663, -7.0, -7.0, -2.692020268786095, -7.0, -4.388562971398075, -7.0, -3.789809784381399, -4.389679843219249, -2.437926640050411, -2.674949986825319, -2.8043893467729935, -2.8472866865744257, -7.0, -3.7223047868743278, -4.390352125833223, -4.092738184494764, -3.6277924301285536, -3.850829959848531, -2.9312176596502852, -7.0, -4.394696777891884, -3.621747346264817, -2.7232707289332865, -7.0, -7.0, -4.415056858110851, -3.5047086738488433, -4.090998297753198, -3.4538108048586555, -3.296850746548013, -3.6464037262230695, -3.5774753862813395, -4.112923233491434, -2.8086380688088775, -3.2649021111188556, -3.7952715790631664, -2.483657679695685, -3.441328487681495, -7.0, -7.0, -3.798529799485261, -7.0, -4.393926006585837, -7.0, -2.769645823445991, -4.394994209918511, -3.129377671109127, -7.0, -2.9224881953209727, -2.1151526142609294, -3.4472441923348445, -2.7426345053908503, -2.6449541282216202, -3.6298341709244926, -3.2458744291694313, -4.10907208097888, -3.112370365525832, -3.706495885648506, -3.631883252821722, -3.8506156068476467, -4.3968790352215565, -3.856003453997221, -7.0, -3.2880255353883627, -3.1851086606334373, -3.5840766803638173, -7.0, -2.1943737331623745, -7.0, -2.7486413997448866, -3.6197018907049654, -2.932220013877119, -3.31530545711496, -3.7952019889525492, -2.5661722381854584, -3.057847945044547, -7.0, -2.8539940191313975, -2.5407495746008397, -2.523382794642113, -7.0, -4.389555888095237, -3.2483761775934874, -3.6918061854702637, -7.0, -4.095413464448447, -7.0, -3.9208534961212593, -2.8445582083948397, -2.6444698516678162, -2.609687187367402, -2.5142252978510746, -4.388740444524611, -3.5503157274607613, -3.552459621256164, -3.5017950212228697, -7.0, -4.391975460609762, -3.8165230027390296, -3.411047002456093, -4.109814695694399, -7.0, -7.0, -4.392010683195499, -7.0, -7.0, -7.0, -3.5088998897969157, -2.1630660097373533, -7.0, -4.3899807298820175, -7.0, -4.393662930667503, -3.3204924754334133, -3.553588313493936, -7.0, -3.797994219946912, -3.0985383930592922, -3.4597442042559603, -3.1775364999298623, -2.7286954435449196, -3.5674800954170154, -7.0, -7.0, -1.4750142282715528, -3.018550716122285, -1.9996202059382764, -3.9233303852372834, -2.5595770555682282, -4.101179784380764, -4.092896010921856, -4.0936492798811175, -2.478166954695277, -3.108712057787089, -2.142299301357695, -2.6385935525920776, -3.4910533754308664, -2.9611837098124356, -3.399379478152629, -4.090769309154487, -3.3273419028962246, -2.9525664413757333, -3.0289614544096257, -7.0, -3.7923391506976287, -3.3654539479394416, -4.393926006585837, -3.109629161027386, -7.0, -2.913267330378869, -2.812498908830492, -3.6275194713376826, -3.524996189261706, -3.205068964264459, -2.2379910476057443, -2.8493238489418755, -4.392573856408141, -2.6019192249352625, -3.349613033193485, -4.4012454079054875, -2.7728364862556436, -3.1351661410808247, -2.4919428312363485, -2.7099096642611826, -3.303383275046943, -3.373480429443243, -3.0394775730947807, -2.915152406858784, -2.9456071083058015, -2.6270750853803926, -4.3896090160519865, -7.0, -7.0, -3.394291125637746, -2.7960498415335424, -3.6967407046991165, -7.0, -2.9935178724720797, -3.916944993889482, -3.303611372056618, -3.918764031027999, -3.20784373080153, -7.0, -3.324436797945258, -2.8934689290303233, -3.445275460995549, -3.3800121444441236, -2.87143820792516, -2.963286852631787, -4.399950474386311, -2.609796239029571, -2.6520392665715007, -2.6835698996941697, -7.0, -3.40224418233262, -3.9159096427947526, -3.040950269144804, -2.8249642405126534, -3.3531909881987607, -3.8158764720425014, -7.0, -7.0, -2.9610936335556257, -3.917137752756444, -7.0, -3.7013952690139202, -3.30821366567681, -4.094348824158173, -2.1426920071504876, -3.9116369331294423, -7.0, -2.2411935559760434, -2.8856700339963552, -4.028479748429411, -3.2205695307771833, -3.556497774483958, -2.7035291823183036, -2.7910435886018217, -3.0828267823103697, -2.0060432699385977, -2.9013934461316766, -2.6327997957371, -3.182591726772166, -3.142190307192792, -3.151729033249805, -1.8492098198301976, -3.4527445088929927, -3.2501515351166117, -2.0056139668441095, -3.063971006964762, -2.718228062128552, -4.444372736248287, -3.530888353795369, -3.051568839187227, -2.42052842803183, -2.874493650852932, -3.276921132065774, -3.4443009228773778, -3.252665509389223, -3.3780177889279908, -2.1028331240006084, -2.8763989853208183, -3.2748321112406487, -3.3987980983714206, -3.342652927457154, -3.2103352437217962, -3.780173243642594, -4.198643343240695, -3.002689293174031, -2.8950024143828985, -2.39909658587198, -3.4989477407243084, -2.752029999520418, -2.3368591970429793, -2.249025531378285, -3.0576052527843403, -2.9747131347031917, -3.818110374400107, -2.505047454180356, -2.4407155720669604, -2.7894525071503864, -2.1046236604353257, -2.653709857986787, -2.510223434172348, -3.932372282147914, -2.3513910114435865, -3.231342137903896, -4.09083978004538, -3.526798605282374, -2.320045134490263, -2.3235805527428437, -3.5571289415150695, -2.2901028574074784, -2.4180374701498426, -3.422986516221185, -3.695026128922327, -3.029428873420872, -3.7934411329776636, -1.89528078671618, -3.436509596914933, -3.4357319757793103, -2.5122840632818537, -2.392556699913734, -4.390440506647526, -2.7490886413527207, -2.433620111870197, -2.181096235879441, -2.7937903846908188, -2.0975214186846465, -3.020389861233702, -1.9689475312906737, -2.703514281036142, -4.4002097701620615, -1.9616750071319988, -1.9083761390330394, -3.7431176252147416, -2.385114864768354, -3.6177165808503444, -2.302600682663212, -2.2051077514026, -2.6574243844044845, -3.0695976288793294, -7.0, -7.0, -3.4881627803586124, -3.261277741636518, -1.2657706323852562, -2.2826021227981115, -1.295472883356695, -2.9608405922118757, -2.273212556174888, -1.0178926649257336, -2.0837025712527235, -2.650893423614602, -3.137652964068974, -1.3581579462144981, -2.3004244091989325, -1.2168557349039093, -1.6214444276157096, -2.3338413910185927, -2.660682445518988, -2.1390210173169324, -1.8009534980203061, -2.1005705354955055, -3.101145379367524, -2.5692166356836568, -2.0570960247337777, -3.2837881449671475, -2.218937929477692, -2.571708831808688, -2.0612945649523997, -3.689628467489746, -1.2212825246575263, -3.186320523991601, -3.1131866342143066, -2.0472192207082234, -1.4557226282155344, -1.5949442024881448, -3.912080280808671, -2.0593987627272057, -1.7356264276341637, -2.6847418143802058, -2.014431933015437, -4.388509715314879, -2.322834152526903, -1.2099718795968286, -3.4869615094670436, -2.1775899351168753, -1.7044780107893729, -2.1285333149993586, -2.0175856816804645, -2.187608839834818, -1.460834848706078, -2.2567281259887664, -1.9482924534631156, -2.093149570816301, -1.8544581971920788, -1.8881200547559909, -3.390281408229663, -1.9177558908826795, -2.011818266177299, -3.160568564398739, -1.6661515214372502, -3.6189541113654435, -3.136931851267557, -2.008752704189001, -2.2801295979122562, -1.2625900233526535, -1.9039828148855922, -1.7600533559612246, -2.7646345803270043, -3.0359341352045495, -2.7755404355153734, -3.250750999543319, -1.4827285394930332, -2.694885864251942, -1.9449064485366196, -1.6253034758644873, -1.8512933005908019, -3.5440148621780065, -1.6253274745535427, -1.4534478436425606, -1.9669130564385204, -2.3643102026822547, -1.5258510550714373, -1.9425765714778218, -2.066318439655697, -1.7035306905732894, -1.0848064277366656, -2.014307391119922, -1.9768742733499245, -1.7360776370039457, -3.7884865485608397, -3.347507423196012, -2.222519981089832, -2.5471104854035294, -2.469284769398786, -2.2149746005646884, -1.337860722048636, -2.2640471138775404, -1.6528950083522316, -1.5880155126080546, -1.7889612255173273, -1.9601667654364898, -3.118369165644749, -2.32916049510703, -4.088242433511572, -1.856956321022818, -1.7079320554082063, -2.356920794010944, -4.088685256807787, -2.422501842403204, -2.9715335443974213, -7.0, -2.726969851013355, -3.5502633049268204, -3.787672964687493, -2.6093987370065896, -2.231341246495776, -2.3535208688836247, -2.0404627180322072, -2.138157788427899, -2.5761041141490666, -2.70680142436115, -3.0534276951965746, -2.1942683822178575, -3.0119579077781298, -2.721740474382757, -3.2858860643833867, -2.4860542124935545, -2.10490328559909, -2.2088485647553826, -1.6283827667413842, -2.337400529194833, -2.910853000989875, -2.46166601136025, -3.5444401373176926, -2.1879371259474465, -2.7726709022727314, -3.43428495862892, -1.740338392619813, -2.951961654685714, -2.9671664837366802, -1.6367282157789547, -2.490105540033013, -2.458309335786155, -3.186850431506691, -3.069562390574965, -2.219123803572551, -3.4871383754771865, -2.2993138989499227, -2.588118849042228, -3.9249164729965895, -3.911459467254995, -7.0, -2.295017011881458, -2.8943160626844384, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.029456830425565, -7.0, -7.0, -7.0, -4.205339721431523, -7.0, -7.0, -7.0, -2.8796692056320534, -2.9694159123539814, -7.0, -3.646540953360931, -3.002436061443105, -7.0, -3.6979264448065052, -3.8240025694369812, -7.0, -7.0, -7.0, -3.385963570600697, -7.0, -7.0, -2.8937558614379575, -2.4802944600030066, -7.0, -2.961421094066448, -7.0, -2.0865471476851583, -2.7126497016272113, -3.2304489213782737, -7.0, -7.0, -7.0, -4.841437686480623, -7.0, -7.0, -7.0, -3.2137832993353044, -2.392789484309745, -2.74350976472843, -7.0, -7.0, -7.0, -7.0, -3.5677052562909872, -7.0, -3.4456560872091355, -7.0, -7.0, -7.0, -7.0, -3.1577588860468637, -7.0, -7.0, -7.0, -7.0, -2.76063785386249, -4.155001836231253, -7.0, -7.0, -7.0, -7.0, -7.0, -2.459675139563483, -2.9609461957338317, -7.0, -4.825526727405714, -7.0, -3.417969642214737, -7.0, -7.0, -2.992277301781418, -7.0, -3.0472748673841794, -7.0, -3.494988973683168, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7540321847750318, -3.1027766148834415, -3.7329162073263795, -7.0, -7.0, -3.4774106879072515, -7.0, -3.13956426617585, -3.6216954623292787, -7.0, -4.160438516641545, -7.0, -7.0, -7.0, -3.387033701282363, -7.0, -7.0, -3.263636068588108, -3.6645479622465467, -3.5391836728713275, -7.0, -7.0, -7.0, -7.0, -4.391129260417903, -7.0, -7.0, -3.399846712712922, -7.0, -7.0, -7.0, -3.484185911097994, -4.279978563206881, -7.0, -3.3844131561393755, -2.8165726960261033, -4.694451633333337, -2.919601023784111, -3.1953460583484197, -7.0, -7.0, -7.0, -2.556690090692079, -7.0, -7.0, -7.0, -4.374436714981712, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5493592897669206, -2.5783335302215775, -3.863709388627451, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.591719884720196, -7.0, -7.0, -7.0, -7.0, -7.0, -3.269512944217916, -3.0060379549973173, -3.45408227073109, -2.7352794480604565, -2.5614989072300403, -2.5142709732984847, -3.009450895798694, -7.0, -3.9756829679517423, -7.0, -7.0, -7.0, -2.6720978579357175, -3.037027879755775, -7.0, -7.0, -3.940665872475829, -7.0, -3.8110832420318603, -7.0, -7.0, -3.646386425606992, -7.0, -7.0, -3.321494866739587, -7.0, -2.8291428932285543, -3.2938043599193367, -2.864313269858478, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3658622154025553, -7.0, -7.0, -3.4848334799814933, -7.0, -3.4820155764507117, -7.0, -2.9947569445876283, -7.0, -7.0, -2.5361869649319937, -2.5054891384167237, -7.0, -3.4413808849165113, -7.0, -3.0948785616774006, -7.0, -7.0, -3.035029282202368, -7.0, -2.9818186071706636, -7.0, -7.0, -3.1007150865730817, -3.6285421834125686, -2.714958109720149, -4.142670977910689, -5.412231999684705, -2.8639173769578603, -2.0895126175293544, -7.0, -7.0, -2.9014583213961123, -7.0, -3.0927206446840994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.951823035315912, -3.3203540328176717, -3.6653637153823238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2349388877414125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.564209087043202, -7.0, -4.538410339987667, -2.8457180179666586, -3.935683567701656, -7.0, -7.0, -7.0, -7.0, -3.7664872062396944, -3.021602716028242, -2.8973914245675183, -7.0, -3.2821687783046416, -7.0, -7.0, -7.0, -3.028706779135174, -3.1796953833245065, -7.0, -7.0, -2.6500645611776816, -3.0107238653917734, -7.0, -7.0, -7.0, -3.4682488397706415, -7.0, -7.0, -7.0, -4.4340097093697395, -3.6100743221400546, -7.0, -4.293473048156108, -7.0, -7.0, -3.3224260524059526, -3.3479151865016914, -7.0, -7.0, -2.2130748253088512, -1.9667282209873844, -2.563955464995813, -7.0, -4.828616722682745, -7.0, -7.0, -7.0, -7.0, -7.0, -3.651181062444688, -7.0, -2.814913181275074, -2.8604877374747018, -7.0, -7.0, -7.0, -3.4261044280965076, -2.285235728480749, -3.205745540942662, -3.351409751925439, -3.1341771075767664, -4.2569761776910955, -3.547880146528284, -4.645035428217922, -7.0, -3.1156105116742996, -4.11691061520064, -3.1966596938570437, -7.0, -7.0, -7.0, -7.0, -3.807264355276107, -3.74795530690673, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1192558892779365, -3.1470576710283598, -3.1990234256365437, -3.0453229787866576, -3.361228515053669, -7.0, -7.0, -7.0, -4.473267942835296, -7.0, -7.0, -7.0, -4.379069719792747, -7.0, -4.5942046469788265, -4.280100110054924, -7.0, -7.0, -7.0, -4.721546826892598, -7.0, -4.584952815690992, -7.0, -4.676593024518754, -4.225247235225021, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.661282503857652, -7.0, -7.0, -4.17452497792015, -7.0, -4.680154141734373, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.015307351851757, -2.574031267727719, -7.0, -3.9210693316079035, -3.9037409406215384, -7.0, -7.0, -7.0, -4.391169593074347, -3.051709777448058, -3.234896745731588, -4.4463662736803595, -4.362157197594989, -3.4527242421699578, -7.0, -3.4006007781992125, -7.0, -7.0, -7.0, -4.378906400023262, -3.6956567599361905, -7.0, -4.038734934385949, -4.257917039669347, -5.405674988022053, -7.0, -2.714497408649806, -7.0, -3.232295921471446, -7.0, -5.1048949244222035, -4.088348752288528, -7.0, -7.0, -4.328501922685259, -7.0, -4.086039331268039, -7.0, -7.0, -3.826398782187618, -4.422874242967947, -4.014702506699758, -7.0, -3.025300928950266, -3.781295712526443, -7.0, -4.092841460124653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.916395453771481, -2.0261585937576614, -2.52760188458375, -7.0, -7.0, -3.306931652542162, -7.0, -1.728547016499123, -1.9929950984313414, -2.866951567327725, -7.0, -3.117568183066225, -2.226798122683141, -2.808210972924222, -3.089905111439398, -7.0, -3.080987046910887, -2.486784571399042, -7.0, -7.0, -2.7193312869837265, -7.0, -2.663386788318517, -2.850033257689769, -2.35674271207154, -7.0, -3.1215188091346144, -7.0, -2.976808337338066, -7.0, -3.3963493184894906, -4.313009027913279, -7.0, -2.161225353364616, -2.058731591462859, -7.0, -2.1227618173540255, -7.0, -1.9784087926230391, -2.2493557916402818, -7.0, -7.0, -7.0, -2.2755416884013093, -7.0, -7.0, -3.3119656603683665, -2.2087100199064014, -1.8495558985503493, -1.9334872878487053, -2.9992610711131005, -4.203495235193291, -7.0, -2.0149403497929366, -1.7556249739153658, -7.0, -3.678488028959253, -7.0, -7.0, -3.9133899436317554, -1.9010948950302153, -2.502013488424476, -1.9521695008164597, -3.326335860928751, -3.2860071220794747, -7.0, -7.0, -0.7659167939666319, -3.494432898726399, -7.0, -1.87614564468392, -2.5200903281128424, -7.0, -2.8830933585756897, -2.2790896121741575, -3.114610984232173, -2.6478717653062325, -1.2827901651204379, -3.1356626020000733, -3.2074997233073055, -2.8562000460323604, -2.457124626303409, -2.7212215815105543, -7.0, -3.2581581933407944, -7.0, -2.3185850100788254, -7.0, -7.0, -7.0, -2.6881230714056485, -7.0, -3.688229077040167, -7.0, -3.69340447840352, -3.319522449065454, -3.689930104018218, -2.124135493579742, -3.0948203803548, -2.1116405080098097, -7.0, -1.3228241617981338, -2.613401316227284, -7.0, -1.6755492229761288, -2.0149403497929366, -2.4216039268698313, -2.726969851013355, -7.0, -3.0488300865283504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.063896038125994, -2.1624897277365047, -7.0, -2.987219229908005, -3.0461047872460387, -2.234896745731588, -7.0, -2.8385342705118686, -2.814691432747457, -3.003957379757683, -3.3079949403022577, -7.0, -2.819872821950546, -2.8965262174895554, -7.0, -3.0867156639448825, -7.0, -3.2235232653918677, -3.1389339402569236, -2.8257505813480277, -3.2638726768652235, -7.0, -2.979700093301936, -2.6459132750338443, -7.0, -2.8068580295188172, -2.439332693830263, -3.2060158767633444, -2.812244696800369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.727698463777806, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.038818787373656, -7.0, -7.0, -7.0, -4.969910735382101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.901387240163748, -7.0, -7.0, -7.0, -7.0, -3.3142886609474975, -7.0, -7.0, -7.0, -7.0, -7.0, -5.141556374124269, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.607744456402258, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4515868904569045, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.989004615698537, -7.0, -7.0, -4.994202733783717, -7.0, -7.0, -7.0, -7.0, -7.0, -4.300921408469541, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.031408464251625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.542526668991491, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.151411224250535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.281692267160937, -7.0, -7.0, -5.353585433651377, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.076567630444938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.357382103296111, -3.555094448578319, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1334111559110225, -5.713017349628834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2891973858841714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6869935662646784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.534711293390327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.132067481304007, -3.8953120244757873, -7.0, -4.286950215787549, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.527408186568847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.176358702092532, -7.0, -7.0, -5.018841912540566, -3.7784406835712327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8965813275057326, -4.295017011881458, -7.0, -7.0, -4.71295259213018, -3.7715507369849686, -7.0, -7.0, -4.40337793172286, -3.501013592678627, -3.601734148260105, -7.0, -7.0, -4.696849823367915, -2.8644654403162026, -7.0, -7.0, -3.136788119976591, -7.0, -4.312959735882106, -7.0, -7.0, -7.0, -4.231329390593782, -3.8047526021504607, -4.330738358178876, -7.0, -7.0, -7.0, -4.172391277829509, -4.1592663310934945, -4.677488326683328, -4.323973605350882, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1853154580036565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.140727962844183, -4.9628616042958145, -3.726428342031079, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9693933187382284, -7.0, -7.0, -7.0, -7.0, -4.955663702334214, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.432760907742915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.943741765831314, -4.478975107638949, -7.0, -5.347609045260355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.167317334748176, -7.0, -3.8672759317711667, -7.0, -7.0, -2.8363241157067516, -3.286456469746983, -7.0, -3.089551882886454, -7.0, -7.0, -3.748962861256161, -7.0, -3.5184308133618134, -7.0, -7.0, -1.1095739243160885, -3.8262368226549173, -2.6255182289716377, -3.1894903136993675, -3.095169351431755, -7.0, -7.0, -2.383815365980431, -2.3364597338485296, -7.0, -7.0, -7.0, -3.53571596998551, -7.0, -7.0, -3.751499055612203, -3.8640781064148335, -3.6417785481765814, -7.0, -1.6965505302126058, -7.0, -3.0884904701823963, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7837249675153735, -7.0, -2.904715545278681, -7.0, -2.9434945159061026, -7.0, -2.0448880318480462, -7.0, -7.0, -3.1535099893008374, -7.0, -7.0, -7.0, -7.0, -3.8456560599835443, -2.663700925389648, -2.5224442335063197, -3.11887070567672, -7.0, -3.915931115801124, -7.0, -2.993766785745261, -7.0, -7.0, -7.0, -7.0, -2.59659709562646, -2.437750562820388, -7.0, -7.0, -3.1795517911651876, -7.0, -7.0, -7.0, -7.0, -3.0661394928706995, -7.0, -3.4674601095072637, -7.0, -7.0, -3.7322731057085923, -2.885078384149224, -2.4802944600030066, -7.0, -7.0, -7.0, -4.360233561157832, -3.1609184995397808, -7.0, -3.456366033129043, -4.529738255465954, -3.028977705208778, -3.31650950689414, -3.8476960207341655, -2.7587226985453177, -7.0, -0.6388219222193926, -7.0, -2.6720978579357175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5502633049268204, -3.0488300865283504, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8035253955765325, -2.3283796034387376, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8078055322706246, -3.4628470358316736, -3.656577291396114, -7.0, -7.0, -3.5368108659915416, -7.0, -7.0, -3.7204625143161145, -7.0, -7.0, -7.0, -2.956008262860823, -3.410608542568368, -7.0, -7.0, -7.0, -7.0, -3.3550682063488506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.571598206525296, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.2297202284658, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.380066452751471, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.973150953755652, -7.0, -7.0, -4.87582880342868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.7127431153931285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.708692780248078, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.612836816232258, -7.0, -7.0, -7.0, -5.131021660599472, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.398021069409893, -7.0, -7.0, -4.716445764507459, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8608169638645378, -7.0, -4.878653902034747, -7.0, -7.0, -4.2977167512641525, -7.0, -7.0, -4.577905216795529, -7.0, -7.0, -4.620005851260625, -3.2407571939326836, -7.0, -7.0, -5.086404325780766, -4.267195203145968, -7.0, -4.094610863032137, -7.0, -7.0, -3.876188963668735, -7.0, -7.0, -7.0, -4.674502906671874, -7.0, -3.8833490849946153, -3.2135177569963047, -7.0, -7.0, -7.0, -4.175975431749513, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.322529394341456, -7.0, -5.234734882402388, -7.0, -7.0, -7.0, -4.359228183542235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3675236418690195, -7.0, -7.0, -7.0, -5.487537120849834, -5.007201366690912, -7.0, -7.0, -7.0, -4.050935320901517, -7.0, -7.0, -7.0, -2.9300101317088076, -7.0, -7.0, -7.0, -4.780634094707888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8752590636046054, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3860528489403894, -3.8624444595730716, -7.0, -7.0, -7.0, -3.2062860444124324, -7.0, -7.0, -7.0, -7.0, -3.7229628089424898, -7.0, -4.318021573870186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7895807121644256, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.292078772116658, -7.0, -3.1319392952104246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3244882333076564, -7.0, -3.6534054906645013, -1.5509922837391463, -3.1559430179718366, -7.0, -7.0, -7.0, -7.0, -3.8852481077813863, -7.0, -7.0, -7.0, -2.757901904775561, -4.1365303235313, -7.0, -7.0, -7.0, -7.0, -5.346759690488342, -7.0, -3.2577985291530305, -7.0, -7.0, -3.528209432477408, -7.0, -3.2728468287897403, -7.0, -7.0, -7.0, -3.074084689028244, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2990494465975395, -7.0, -7.0, -7.0, -7.0, -3.632356046239073, -7.0, -7.0, -7.0, -7.0, -3.8768142008518582, -7.0, -7.0, -2.9259992664561554, -4.525537160391059, -7.0, -4.152104800892868, -3.764450127369505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6577249542051082, -7.0, -7.0, -7.0, -3.787672964687493, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.780677274433368, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.398495550138137, -7.0, -7.0, -7.0, -7.0, -3.493597449000527, -7.0, -7.0, -3.71594766128561, -7.0, -7.0, -7.0, -7.0, -3.3517963068970236, -2.428134794028789, -7.0, -2.98878184345364, -7.0, -3.6238692683503024, -7.0, -2.9429995933660407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.726784242080268, -7.0, -7.0, -7.0, -7.0, -3.9034698285071703, -3.0107238653917734, -7.0, -7.0, -7.0, -7.0, -4.333144876098619, -7.0, -7.0, -7.0, -4.668479102932586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.747411807886423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.140498615414539, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.003810454857046, -7.0, -3.8890214220952246, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.844228581301628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.859918485200716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752560587598014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6008640363098396, -3.673941998634088, -7.0, -7.0, -7.0, -7.0, -3.777698624514739, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.691678126455561, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5943925503754266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0175758683910745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.321391278311689, -7.0, -3.5597271274175606, -7.0, -7.0, -5.150894532756141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.273712931612605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.064120905829622, -7.0, -7.0, -7.0, -3.129689892199301, -7.0, -7.0, -3.7197454925295768, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.896250562461638, -7.0, -7.0, -5.712733859069952, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.640133464494492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8319763626923518, -7.0, -4.22936182573706, -7.0, -7.0, -7.0, -7.0, -7.0, -3.200394450079095, -7.0, -7.0, -3.690993032099869, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0782755220866007, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.528907063458861, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.203576774977973, -3.94146173934733, -7.0, -7.0, -7.0, -7.0, -7.0, -5.527190874082044, -3.852845818014997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.256236533205923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.554228626325214, -7.0, -5.398014700899577, -7.0, -3.469895618975018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.198065714165741, -7.0, -7.0, -7.0, -4.769687425683675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.27649627062157, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9756500498329994, -7.0, -7.0, -4.443846870844043, -7.0, -7.0, -7.0, -7.0, -7.0, -4.227012095991085, -7.0, -7.0, -7.0, -7.0, -7.0, -4.470983487381527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.56702636615906, -7.0, -7.0, -7.0, -5.2347070560662425, -3.6776981814745104, -7.0, -7.0, -4.9612644350180055, -4.677752909529766, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.990258915931302, -5.487521573812226, -7.0, -7.0, -7.0, -7.0, -4.3519508325993845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.780554920725867, -7.0, -4.205880729887537, -7.0, -4.0513951081085375, -7.0, -7.0, -4.464931466295046, -4.954493362678243, -7.0, -4.86982211524454, -7.0, -3.5561818466529114, -4.303649561060314, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9872490465625705, -7.0, -3.6977232389357932, -7.0, -2.9017306917292185, -3.056804587113032, -3.025510672852581, -2.7523045932010324, -7.0, -3.0224283711854865, -2.062581984228163, -3.6188078830935138, -3.102548038835058, -2.3384564936046046, -7.0, -7.0, -2.5499836111596887, -3.1567510079386705, -7.0, -2.47928731647617, -3.4531653925258574, -2.8041394323353503, -2.576341350205793, -2.571708831808688, -3.004894321731049, -7.0, -2.8835740871078883, -7.0, -7.0, -3.9908824926522315, -4.315273937139323, -3.882510307889449, -7.0, -7.0, -3.2216228577487898, -2.646893624167745, -3.4149733479708178, -7.0, -7.0, -3.3977414286585623, -7.0, -1.810232517995084, -2.718916686014861, -3.1051694279993316, -3.652343055062715, -2.7693773260761385, -1.8626961724476383, -2.523312822759656, -2.8305886686851442, -7.0, -3.9717859378791145, -3.8849368971038603, -7.0, -3.022840610876528, -2.9943171526696366, -7.0, -3.658933094831393, -7.0, -2.519827993775719, -3.577491799837225, -3.2593549273080344, -3.733797942367466, -3.4104397862103464, -3.0801452741502415, -7.0, -7.0, -7.0, -7.0, -3.448242412634439, -2.6893088591236203, -3.2643455070500926, -3.7804613328617176, -2.1098409265242712, -7.0, -3.1684238181031454, -3.72413244679981, -2.8042530476353846, -7.0, -3.1221066080541338, -3.1131073665204956, -3.7100326990657537, -1.9530344572503566, -3.0647075120616503, -3.631240780235509, -2.370698092575577, -2.4082399653118496, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4019172505175748, -3.8263210491496613, -7.0, -3.151216578856456, -3.588147160101612, -3.0274515428724906, -2.915751490682417, -7.0, -7.0, -7.0, -3.3103746420476123, -2.789076831748343, -7.0, -7.0, -3.1696744340588068, -7.0, -2.6093987370065896, -7.0, -7.0, -7.0, -7.0, -7.0, -2.0253058652647704, -2.0266694283375184, -3.7798849631926443, -3.140193678578631, -7.0, -7.0, -2.334453751150931, -2.5327543789924976, -7.0, -7.0, -2.4683473304121573, -3.329194415088451, -3.1245042248342823, -3.7962620284279147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.016908043972075, -7.0, -7.0, -3.182129214052998, -7.0, -7.0, -2.4099331233312946, -7.0, -7.0, -7.0, -3.622731965164719, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.335498018419024, -7.0, -7.0, -7.0, -5.270689314973614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.86494990015796, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.90760481522294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5481436374348454, -3.971012841545116, -7.0, -7.0, -7.0, -7.0, -7.0, -3.615739688619155, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.627916058122411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.37520622109933, -7.0, -7.0, -3.058426024457005, -7.0, -4.080914958856625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.296116492169714, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.085290578230065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.452107050529845, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.353161953283723, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.126780577012009, -2.836535091898369, -7.0, -7.0, -4.353165804965758, -3.8427340189482697, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.250387189204171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8276922886744456, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1893967258352185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.311669112400611, -7.0, -4.531912994521574, -7.0, -4.232437009220555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.228227068357458, -7.0, -7.0, -3.804775295526398, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.527266333173729, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.87520600409689, -7.0, -7.0, -5.017926065550163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.593208507509241, -7.0, -7.0, -3.604657972047871, -7.0, -4.068593980976652, -7.0, -7.0, -4.277167820218901, -3.9681559371499704, -3.577146984827525, -7.0, -7.0, -7.0, -2.9984887718285296, -7.0, -7.0, -3.6661486316329417, -7.0, -4.007214181076625, -7.0, -5.387626487935149, -7.0, -7.0, -7.0, -7.0, -7.0, -4.180326625415149, -7.0, -4.772886215949434, -3.8515029527705447, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.367449107268604, -7.0, -7.0, -7.0, -7.0, -7.0, -4.933967884022049, -7.0, -7.0, -4.438320794186449, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.88561844070513, -7.0, -7.0, -7.0, -7.0, -3.954517475547784, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.429219175321009, -7.0, -7.0, -7.0, -7.0, -4.897203585179786, -7.0, -7.0, -4.942652811693212, -4.051899830724197, -7.0, -4.569008917702917, -7.0, -3.5700757053216043, -4.605961917948959, -3.990138980051281, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6208941807700508, -7.0, -3.877256133113586, -7.0, -3.2340108175871793, -3.7364363439795194, -2.872350544494723, -7.0, -7.0, -3.7315887651867388, -2.2405492482826, -3.7165736764711426, -7.0, -7.0, -7.0, -3.642892997358405, -2.8004879595844288, -3.344686943705623, -7.0, -2.5563025007672873, -7.0, -7.0, -2.461898521729004, -7.0, -7.0, -7.0, -3.3043181544900566, -7.0, -7.0, -4.117138666403885, -4.139571264660785, -4.008309125342374, -7.0, -7.0, -7.0, -7.0, -3.1327398382608846, -7.0, -7.0, -3.342595377241292, -7.0, -1.590051083854947, -2.037227234582274, -7.0, -7.0, -7.0, -1.8126227614617871, -7.0, -1.6789733759197651, -7.0, -7.0, -3.888235673270567, -7.0, -3.5162708827293403, -3.4888326343824008, -7.0, -3.53763023032496, -7.0, -7.0, -3.885304667588968, -7.0, -3.422363121576346, -7.0, -3.0940050223646494, -7.0, -7.0, -7.0, -7.0, -3.4572004127937683, -2.782472624166286, -3.291146761731886, -7.0, -1.2171077688054557, -7.0, -3.7794521834040617, -4.327512187748588, -7.0, -3.3244882333076564, -3.8241475372464007, -2.4307198878632823, -3.7198282862543346, -1.9978230807457253, -3.5471591213274176, -3.6429588794097905, -7.0, -1.5023467769110552, -7.0, -7.0, -7.0, -3.427972713608209, -7.0, -3.4216039268698313, -3.7486272694622023, -3.2833012287035497, -3.553093786437186, -4.242988412194795, -3.6418705454763125, -7.0, -7.0, -3.200303182981585, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.231341246495776, -7.0, -7.0, -7.0, -7.0, -7.0, -1.909823369650912, -1.7863457289989153, -3.788239097382168, -2.8739015978644615, -7.0, -7.0, -2.1020905255118367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.101403350555331, -3.7472563974421442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.495710808313926, -7.0, -7.0, -3.022153327172555, -2.6171751426857073, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3334472744967503, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.204084694795681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.334393428283704, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3142886609474975, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.907309225063157, -7.0, -3.591342911734455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.447344117675954, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.12471610363175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.752719228377702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.380988656432105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.294906910605192, -7.0, -7.0, -7.0, -4.3638938977741, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6638892986226614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.849953507030731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.275403502745404, -7.0, -7.0, -5.0520221703193435, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4641540841432814, -7.0, -3.7405205860536648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.051036695141213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.124536828301277, -3.8866001478715915, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.464340484627667, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.059089865916824, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8332958902132748, -7.0, -4.230155034520514, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5815856036702556, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.527230862584156, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.273110700485775, -7.0, -7.0, -5.017696801710228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.29154643969221, -4.770144787468645, -7.0, -7.0, -7.0, -4.3686401285764855, -7.0, -7.0, -4.577905216795529, -7.0, -7.0, -7.0, -4.415791055742342, -4.996686755600171, -3.675239720870955, -7.0, -7.0, -3.8798150224247188, -7.0, -4.307110778380075, -7.0, -7.0, -7.0, -4.528865301439568, -3.6191281284699492, -7.0, -7.0, -7.0, -7.0, -4.295332480930185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.611436515265544, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.136387586102837, -4.961558717504052, -4.678318029299685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.885540725244422, -5.405190068017276, -7.0, -7.0, -7.0, -4.109183071663385, -3.760497875226527, -7.0, -7.0, -7.0, -7.0, -7.0, -4.428329210721689, -4.781000985603031, -7.0, -4.207553585949308, -7.0, -4.595859818764418, -7.0, -7.0, -7.0, -4.477651734970054, -7.0, -4.170926342269268, -7.0, -3.563599728881531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4650852875574327, -7.0, -3.0621189528182424, -2.6138418218760693, -2.9182925127553556, -3.735339363143935, -3.038023740045158, -7.0, -7.0, -3.7271344237604884, -7.0, -3.7539936932143556, -2.984414787243434, -7.0, -7.0, -3.516072408592942, -2.7876965682898738, -3.162962476653458, -7.0, -2.5217916496391233, -3.4578818967339924, -7.0, -2.912753303671323, -7.0, -7.0, -7.0, -3.097560966637652, -1.9777236052888478, -2.57978359661681, -3.6904508209430453, -4.093614273071337, -3.744605875414239, -2.285557309007774, -3.400710636773231, -7.0, -7.0, -7.0, -7.0, -3.137670537236755, -3.1649473726218416, -7.0, -2.5943925503754266, -3.0334237554869494, -3.1258064581395266, -3.357076839842412, -2.8129133566428557, -1.837047036359575, -7.0, -2.2630439833131657, -3.210853365314893, -3.974649834438722, -3.2842897062472733, -7.0, -3.5089335260500327, -3.1796953833245065, -3.2487087356009177, -3.2346121801550183, -7.0, -7.0, -3.182756931040399, -7.0, -3.590765596983205, -3.4207806195485655, -2.7186202999514206, -3.13481437032046, -2.8543060418010806, -7.0, -7.0, -3.151676230847048, -7.0, -2.5779511277297553, -3.784902449886655, -2.0860037056183818, -7.0, -3.7754648093457392, -4.326949994165998, -7.0, -7.0, -3.4548013195320686, -2.1890111514077963, -7.0, -2.36285930295868, -3.322880573098306, -7.0, -7.0, -2.433769833924866, -7.0, -7.0, -4.053923150548575, -3.117602691690084, -2.9537596917332287, -3.111094410509336, -3.680943850666622, -2.9691828592322613, -3.454448480701692, -3.7650846334933146, -3.1588648570811704, -7.0, -7.0, -3.184975190698261, -7.0, -7.0, -3.340344949528144, -3.6625689669332604, -7.0, -7.0, -7.0, -2.3535208688836247, -7.0, -7.0, -7.0, -2.0253058652647704, -1.909823369650912, -7.0, -0.9879910925269847, -3.4831592097169795, -3.159266331093494, -7.0, -7.0, -2.149834696715785, -7.0, -2.73559889969818, -7.0, -7.0, -3.3416323357780544, -2.665893545534433, -4.099507993727965, -7.0, -3.629409599102719, -7.0, -7.0, -7.0, -2.814913181275074, -7.0, -4.494947292750087, -2.9079485216122722, -7.0, -2.7126497016272113, -2.6869935662646784, -7.0, -7.0, -7.0, -3.3014640731432996, -7.0, -7.0, -3.1408221801093106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.903345060079677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9334872878487053, -7.0, -7.0, -7.0, -3.3820170425748683, -7.0, -7.0, -7.0, -5.571784506559266, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2778383330020473, -7.0, -7.0, -7.0, -3.33665982345442, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.630529571426824, -7.0, -7.0, -7.0, -7.0, -7.0, -4.907894835416283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.147969876081947, -7.0, -7.0, -3.382917135087531, -7.0, -7.0, -3.320146286111054, -7.0, -7.0, -5.125071176229265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.531139012496997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.753629013549518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5189304872813425, -7.0, -7.0, -7.0, -3.462585153463974, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0246498311794445, -7.0, -7.0, -3.372819981678968, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.975062462891647, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.876136980368427, -7.0, -7.0, -3.5724068675580556, -7.0, -7.0, -7.0, -3.2405492482826, -7.0, -7.0, -7.0, -7.0, -3.6545615547417434, -7.0, -7.0, -7.0, -4.339868640584651, -7.0, -3.5932122011334005, -7.0, -3.749040268703457, -7.0, -3.1815577738627865, -7.0, -7.0, -3.733678655677088, -3.325720858019412, -7.0, -7.0, -3.8770064005726015, -3.846089580357984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.650825388129239, -4.2214655609036065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.941933596157502, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8928363526263907, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8356060290584613, -7.0, -3.4531398960347057, -7.0, -4.7100496335954745, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.4325395915742165, -7.0, -7.0, -3.379803899663388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.682187639532793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.856305866433299, -7.0, -5.273173797465104, -7.0, -7.0, -5.018151043270515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.593806465329934, -4.77094769310584, -4.267476801134049, -7.0, -7.0, -4.069594105177555, -3.024485667699167, -7.0, -4.101363231766848, -7.0, -2.980571448161674, -7.0, -4.416698742157362, -4.395077279529279, -3.4033264618175827, -7.0, -7.0, -3.8078107326236483, -3.423614458082382, -4.008365930205775, -7.0, -5.387722539303589, -7.0, -4.530263748713028, -3.4009177230754477, -3.8501559224220925, -4.355863205457035, -3.4826735335033296, -7.0, -4.1711777555614145, -3.5519986190490087, -7.0, -4.32054091992458, -4.188956592526399, -3.254064452914338, -4.078239253809666, -7.0, -7.0, -3.48138529211277, -7.0, -7.0, -7.0, -4.588447257083161, -3.8781194846971676, -7.0, -3.848620117434134, -7.0, -4.456962904242507, -7.0, -7.0, -4.138113146487167, -4.661036127893079, -4.679309766985715, -7.0, -4.435047641339964, -3.812445402872756, -7.0, -7.0, -7.0, -7.0, -7.0, -4.689978878482649, -4.487737769021568, -5.229190199730057, -7.0, -7.0, -7.0, -4.176665113572594, -3.4674601095072637, -7.0, -7.0, -4.213995616368085, -7.0, -7.0, -3.827934392823744, -4.7817840873880515, -3.5881596163830918, -3.733250779305627, -7.0, -4.198486634155306, -4.485409076322577, -7.0, -4.641880451715565, -4.478176754287997, -7.0, -4.745213415625778, -7.0, -3.2750808984568587, -4.129378342793226, -7.0, -7.0, -7.0, -7.0, -2.6314437690131722, -3.7013088852280753, -2.8222423977763826, -7.0, -3.3344537511509307, -2.413299764081252, -2.4668676203541096, -3.2978997176105405, -2.513217600067939, -3.27207378750001, -7.0, -3.2584776449785178, -1.9978230807457253, -3.494988973683168, -3.2979792441593623, -2.439332693830263, -3.3016809492935764, -3.2183713665540417, -2.384487822086762, -2.6953843774012043, -2.330819466495837, -1.978864984347657, -3.0676658819742486, -2.605305046141109, -2.48808044630625, -7.0, -7.0, -7.0, -2.9258275746247424, -1.9912260756924949, -2.2086204838826013, -3.272239555081664, -3.5140161804006493, -2.841195882321743, -7.0, -2.941345766226938, -3.452501996795578, -2.7234556720351857, -7.0, -7.0, -7.0, -2.967720359276515, -7.0, -2.220108088040055, -2.3989040367746544, -7.0, -2.587336734507256, -2.88024177589548, -1.439625049601588, -2.7686381012476144, -1.919078092376074, -2.9375178920173464, -3.9796394122229075, -3.0762201993238683, -2.576341350205793, -3.2220658425885866, -3.19506899646859, -3.274619619091238, -2.7978338888552106, -2.8796692056320534, -2.7007037171450192, -2.8873359303991672, -2.996949248495381, -3.2784330855208434, -7.0, -2.2510005323805027, -3.168202746842631, -2.1324731545055577, -7.0, -7.0, -2.7611005389581424, -2.1152775913959014, -2.8249931222365388, -3.7926017811649664, -1.5369677039323366, -7.0, -7.0, -3.783893374865213, -3.6024940688072813, -7.0, -3.3021360369887187, -2.0546768791557097, -3.724275869600789, -2.3222192947339195, -2.9117310971035075, -2.6465017500316117, -2.429752280002408, -2.03085721245529, -2.57978359661681, -7.0, -3.1260167470971267, -2.2863602200922686, -2.3988077302032647, -2.007288102842785, -3.3511518573324075, -2.6919651027673606, -3.042302838090508, -3.4652588912700675, -2.7427251313046983, -7.0, -7.0, -7.0, -7.0, -3.629409599102719, -3.1747380145272865, -2.7170229235078334, -7.0, -7.0, -7.0, -2.0404627180322072, -7.0, -7.0, -7.0, -2.0266694283375184, -1.7863457289989153, -0.9879910925269847, -7.0, -2.5858130982758256, -3.1908917169221698, -7.0, -7.0, -1.5715424673240241, -7.0, -7.0, -2.4890204780193703, -7.0, -3.362670929725667, -2.875350696579289, -4.103256233355051, -2.8472641017707647, -3.0377252216588575, -2.936513742478893, -7.0, -3.037692040279623, -7.0, -7.0, -3.8943160626844384, -2.9628426812012423, -2.9454685851318194, -2.6604588986495648, -2.32342399587229, -3.381656482585787, -7.0, -7.0, -7.0, -7.0, -2.6842467475153122, -2.8721562727482928, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4807253789884878, -7.0, -7.0, -3.243719975783927, -3.7942788657214, -7.0, -3.433932386948738, -3.4301557119700194, -7.0, -7.0, -3.6289812102321743, -2.439472605071242, -7.0, -7.0, -7.0, -7.0, -2.7825442840100103, -2.3335112471695822, -7.0, -7.0, -2.3831311681517926, -3.1798595945524055, -7.0, -7.0, -7.0, -3.8850217948622974, -3.366111523378347, -3.8073320392911905, -3.943456042152199, -7.0, -3.310976378660635, -7.0, -7.0, -3.8806421264042847, -7.0, -3.3343532083835172, -7.0, -7.0, -2.657192487900516, -4.1585162774930335, -7.0, -7.0, -3.0432499701637923, -7.0, -2.549266072612872, -7.0, -7.0, -7.0, -7.0, -2.718383045380154, -2.879432926021307, -3.4456042032735974, -2.7524006087838484, -7.0, -7.0, -7.0, -3.921842481405858, -3.824776462475546, -7.0, -7.0, -7.0, -3.5173278822943734, -2.8877110498195115, -3.528968093033398, -3.791620482692814, -7.0, -2.7618204859340345, -7.0, -3.5640344779100492, -3.994888795364911, -7.0, -7.0, -3.2619668131766253, -7.0, -3.0496609543576354, -7.0, -7.0, -2.8154781280733654, -2.928623410282304, -3.8032522114304568, -7.0, -7.0, -3.8192806469724814, -7.0, -7.0, -7.0, -7.0, -2.82487074756354, -3.6553785755318513, -3.091071440262167, -3.7858279199958655, -7.0, -7.0, -3.0220747111643926, -7.0, -7.0, -7.0, -3.3401134757058357, -7.0, -7.0, -7.0, -2.999188559386703, -7.0, -3.9020573108084666, -3.849849195605258, -3.5166235018348, -3.1071509582364176, -7.0, -7.0, -3.53763023032496, -7.0, -3.076349117493459, -7.0, -7.0, -7.0, -3.9588504516796785, -7.0, -7.0, -3.3112875386622824, -2.864643680472179, -7.0, -7.0, -7.0, -4.172757175089349, -7.0, -3.9232440186302764, -3.9837164739137494, -7.0, -7.0, -2.2853339462641507, -3.2333007715634716, -7.0, -7.0, -2.836791139563708, -7.0, -7.0, -7.0, -3.1868151244474543, -3.7800291273373383, -3.366369584424885, -4.039453778961736, -3.51954361930943, -2.0140705937929684, -7.0, -3.8182588934606265, -7.0, -7.0, -3.8433573784379558, -7.0, -3.3904405066475256, -7.0, -7.0, -7.0, -3.9074436091675, -7.0, -7.0, -7.0, -7.0, -7.0, -3.550228353055094, -7.0, -7.0, -7.0, -7.0, -4.118297801332776, -7.0, -7.0, -2.754312139979706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.637958544442607, -3.500099191915723, -3.7898978569176265, -7.0, -3.7340794072805945, -2.7529841877809456, -3.0484418035504044, -2.7122707911929065, -2.672051653937386, -3.5496162395190853, -3.2978152046930482, -7.0, -3.5704845630444004, -3.364113040786379, -7.0, -3.5166235018348, -7.0, -7.0, -7.0, -3.8610562445768735, -3.5776066773625357, -4.139406770441792, -7.0, -2.77832593141989, -7.0, -3.098682174268404, -3.8130469651601078, -3.256116146654382, -3.3233896221747057, -7.0, -3.568710059628092, -3.893095666096228, -7.0, -7.0, -2.906765889540728, -2.337045942694717, -7.0, -7.0, -3.3237332367838985, -2.939091165366704, -7.0, -7.0, -7.0, -7.0, -2.8359757807651174, -3.496098992132571, -3.1350190063461896, -3.474319516452789, -7.0, -7.0, -7.0, -2.3891660843645326, -7.0, -7.0, -3.5864747785713966, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2966934306284106, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.439445482944493, -3.0038194235289084, -3.0214255855185868, -7.0, -7.0, -2.5080057059156724, -2.8403342502181927, -1.2729106902546903, -3.822560336942692, -3.1531667488581956, -7.0, -7.0, -7.0, -3.488325050357719, -4.044657333234866, -2.119945364700318, -3.187077336947106, -7.0, -3.377366970324768, -3.8194123112093252, -7.0, -3.846213363879387, -3.4495812394629826, -3.6163179419637905, -7.0, -7.0, -7.0, -7.0, -3.384652041999031, -7.0, -3.111486550023024, -3.44889174415122, -3.8423595733306746, -3.6183619311098782, -2.855216194733363, -3.135984372831044, -3.3484022275776355, -7.0, -3.550839605065785, -7.0, -3.5241363765925686, -3.975247941240681, -3.873320601815399, -2.821007062479266, -2.9009626645494517, -7.0, -7.0, -7.0, -3.294135419126248, -3.0769191490994303, -3.5116160205691376, -7.0, -7.0, -7.0, -7.0, -3.6865915864615024, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5471591213274176, -7.0, -3.534406899137877, -3.9883805652220086, -3.8198070645907563, -3.8893745457940083, -2.812622761461787, -3.6182452755730448, -7.0, -3.468679571521236, -4.138124995891195, -3.761062896966188, -7.0, -3.830203598925704, -7.0, -3.9550620696750323, -7.0, -4.034989216287685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.77942191922357, -7.0, -7.0, -2.155336037465062, -3.0543711077640543, -3.6057358938767465, -2.7099391015969876, -3.4781486307637985, -2.3116637023504474, -2.098257185804164, -3.8703551273285175, -1.337734317746204, -2.1218059731155416, -2.153676311310365, -3.5067586350292483, -2.88658095880711, -3.358265990350011, -1.8255940093165168, -2.8846982859778065, -3.022288120503866, -2.1339934497456396, -3.6103939697123133, -3.1606685746425667, -7.0, -3.6815647497582704, -3.2101222446610786, -2.2626506583095267, -2.377943380255784, -4.430574884046865, -2.901049445343407, -3.319813684538678, -3.8912028272602956, -2.2225070244468474, -3.1535753376869526, -3.1806500887021416, -7.0, -3.4219739065729424, -3.272421826371504, -4.247359422468937, -7.0, -3.0526170007462916, -2.7994032136888687, -1.6869443681868634, -7.0, -2.7262197341176018, -3.5298151966446305, -3.2187979981117376, -2.152855964055146, -2.93703230311591, -3.892984550710717, -2.788514525238426, -4.187407902422553, -7.0, -3.441551132284383, -3.0143283621784036, -3.1365742333036484, -7.0, -3.1190314237972894, -3.785044958331544, -7.0, -3.2928096654172903, -3.9877556167385233, -7.0, -7.0, -3.584004375232658, -2.784202841695126, -4.368698411516462, -7.0, -7.0, -7.0, -3.601081727784023, -7.0, -4.2686063846163975, -3.288348606460727, -4.042713299346113, -7.0, -4.122969094393747, -3.7352261832683493, -4.3437432950100945, -2.617410633529217, -2.892948829012671, -7.0, -2.3226958811209695, -3.4454245571564948, -7.0, -2.467650247139099, -3.659526848500998, -3.9628426812012423, -4.513152888794917, -7.0, -3.072663402044344, -3.6222705557781127, -3.6249349378555262, -7.0, -7.0, -7.0, -3.78738962135211, -3.4282158115613255, -1.6458970683831013, -2.9902833432540814, -2.121951467621187, -2.7510690461887255, -2.266643210950574, -2.2176434353952446, -1.7132480512166643, -3.5780658838360915, -7.0, -2.4103259367461924, -3.006822459570757, -2.721938362035024, -2.7537632453831598, -2.699370706638998, -3.2843179154306097, -2.4418337034106465, -2.580696939712437, -2.391537517062907, -2.5737738317498766, -2.5538156262430403, -2.3965025724401565, -3.034695286583428, -2.4965342957637975, -3.8674674878590514, -3.1712387562612694, -7.0, -1.8658932424311052, -3.4840861993579386, -3.791690649020118, -2.3487817408115292, -2.23757282760331, -1.9278409009449988, -7.0, -2.877999241615634, -3.1105591035490403, -3.3526326642053124, -3.450659594627712, -7.0, -3.378942698613437, -2.211210817095178, -7.0, -2.9466627639986482, -2.997713947818426, -3.854063011866421, -1.504927434383751, -2.8090207204836726, -2.049157430485653, -7.0, -2.970280444951661, -3.0925452076056064, -1.5739712574358031, -2.6257444722246497, -3.004894321731049, -3.353723937588949, -2.991275312638515, -3.578696500975596, -0.8646140052979363, -3.509000790741858, -3.315200381631911, -2.523616419054371, -3.040093500592591, -2.1483644013756353, -2.884177224385151, -1.7469567911439805, -3.0099362766616276, -2.9686830381598255, -3.7996850909091004, -7.0, -2.5666085378764327, -2.802294711397464, -3.2846562827885157, -2.693800204297339, -2.0271299739606383, -7.0, -2.7684530982706304, -1.6550294708928528, -3.2083965630310805, -2.991890303936025, -2.676930586781101, -3.2284516907144, -3.740323206382993, -3.24086112943202, -1.7999169191226552, -1.4477083517730727, -2.483990181949066, -2.837840861655523, -7.0, -3.778295991088834, -2.3132820630167794, -2.204745917640909, -2.7839685107944083, -1.6757244422657747, -1.6490746525211883, -2.2077431980508453, -1.0695819409462475, -2.823549053162249, -2.348996759212671, -3.319158129866988, -3.510813010512496, -3.263340126851339, -3.7785130117389247, -3.2989839997333843, -3.007449044497749, -2.552626265425669, -7.0, -3.0875448095324267, -3.3574266029612865, -2.138157788427899, -7.0, -3.8035253955765325, -3.780677274433368, -3.7798849631926443, -3.788239097382168, -3.4831592097169795, -2.5858130982758256, -7.0, -2.859438535455056, -7.0, -7.0, -2.333514445555875, -3.315900405126321, -3.3256524705723134, -7.0, -3.2079035303860515, -3.3010299956639813, -7.0, -3.419082035021574, -2.7522405710173974, -4.003029470553618, -3.3398487830376373, -7.0, -2.9522595365908204, -7.0, -7.0, -3.4547627993176926, -7.0, -3.818423855092079, -2.869915879065291, -2.592123862385521, -3.9089673004183876, -7.0, -7.0, -7.0, -7.0, -2.6392698943402007, -3.856910060300786, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.976705922742223, -7.0, -7.0, -7.0, -7.0, -3.9355828325357876, -7.0, -3.2823955047425257, -7.0, -7.0, -7.0, -3.3154741615241607, -7.0, -7.0, -3.269746373130767, -4.2942190152208815, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3147798252899086, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.240798771117331, -4.667210053653095, -7.0, -7.0, -7.0, -7.0, -3.249198357391113, -7.0, -7.0, -7.0, -7.0, -3.1304945885234696, -3.913442954859396, -7.0, -3.9529860651970554, -3.8555191556678, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8629211006820983, -7.0, -7.0, -7.0, -7.0, -7.0, -3.418135498425232, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1913824121648675, -7.0, -3.7563317673210577, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3027637084729817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.39509913731257, -7.0, -7.0, -7.0, -7.0, -2.2764618041732443, -2.840942080243099, -3.13640344813399, -7.0, -7.0, -7.0, -7.0, -7.0, -4.062627103388964, -7.0, -7.0, -7.0, -3.655505141739744, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7176913020483573, -7.0, -7.0, -7.0, -3.384962397302607, -7.0, -7.0, -7.0, -7.0, -7.0, -4.066027594948862, -3.799891684656865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6754774075729344, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.367169488534681, -7.0, -3.824277734453902, -7.0, -7.0, -3.764087957385868, -7.0, -3.153814864344529, -7.0, -3.388988785124714, -2.6141059109580307, -7.0, -3.446847710155809, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6006326194945357, -7.0, -2.3287740580361573, -2.421368855425985, -3.4111144185509046, -7.0, -7.0, -2.3301431005564446, -2.457606678421928, -7.0, -7.0, -3.227464319520702, -3.003245054813147, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.161008437306002, -4.599803323786212, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.838785161346223, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.914116391219987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.033544376090948, -3.174786417367337, -4.545875904696417, -7.0, -3.9406824679202184, -7.0, -7.0, -7.0, -2.5379003019699025, -7.0, -7.0, -7.0, -7.0, -3.400365273349939, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4967913157000425, -7.0, -7.0, -7.0, -3.9587358469865994, -7.0, -7.0, -4.3065108056433825, -7.0, -7.0, -7.0, -2.973589623427257, -3.29928933408768, -7.0, -7.0, -7.0, -7.0, -7.0, -4.249182904087916, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.46084697750166, -7.0, -7.0, -3.8463288633433605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.515714926414582, -7.0, -7.0, -3.2069013989399444, -4.301514687266299, -4.29161301693988, -7.0, -4.243236537941076, -3.4864659011032937, -3.3258234190027447, -7.0, -3.931260059489091, -3.5399538416563967, -3.3880123433641907, -3.6244471170144004, -3.68490245896855, -4.30275938280919, -2.576553798431761, -7.0, -3.681874122128647, -2.8361851241746323, -7.0, -2.898989122518341, -7.0, -4.544480870993537, -3.6926927305822153, -3.3127620973617313, -7.0, -7.0, -4.666920265359489, -7.0, -7.0, -3.382672494563074, -3.486118638421901, -3.9073128091789755, -4.3419684081799375, -3.615502908341466, -3.1539672216454786, -7.0, -7.0, -4.466556239671248, -3.4314709841279067, -7.0, -7.0, -7.0, -4.2243739512352265, -3.935053589231065, -7.0, -7.0, -7.0, -4.091611693937414, -7.0, -7.0, -2.831077154621386, -4.666021627895574, -4.211663292650559, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9124523434166374, -3.7451528950769006, -7.0, -4.995683446859352, -3.807881581230128, -7.0, -7.0, -7.0, -7.0, -4.959932927904161, -3.539452491549461, -7.0, -4.10907208097888, -3.9401178667477184, -7.0, -3.7383642922611235, -3.2422462910244345, -3.9441300172530784, -3.693023067923694, -7.0, -3.8635607645262424, -4.204266532314703, -4.50018156686907, -7.0, -4.948129212291016, -4.65934087789275, -7.0, -3.91788072846784, -7.0, -7.0, -4.140602308020332, -3.6160972451781976, -3.188647295999717, -7.0, -7.0, -1.817144512411414, -7.0, -3.120015684402852, -7.0, -3.732018281336871, -2.7198834733033834, -3.149834696715785, -3.213593642804973, -2.745855195173729, -7.0, -7.0, -3.8130469651601078, -7.0, -2.233874094776021, -7.0, -3.2757719001649312, -1.8403103790671382, -2.9238837398640314, -1.6611062344271388, -2.206587797735214, -1.978761346480108, -3.263399331334002, -2.935444283519925, -1.8441424962142483, -1.3890478929141081, -3.13433651094868, -7.0, -2.8221680793680175, -3.2034991183873496, -2.1577588860468637, -3.1894903136993675, -3.061624783982095, -3.3570056965083346, -3.053239134155262, -7.0, -2.08218675618735, -7.0, -1.4859397197668511, -3.5830853663476874, -7.0, -7.0, -3.0958664534785427, -1.8388490907372554, -2.8915374576725643, -2.617393545748848, -7.0, -2.1384952472636067, -2.95784663370815, -2.517855418930029, -7.0, -2.9786369483844743, -3.4459154139511234, -7.0, -2.1644059707459053, -2.3756636139608855, -7.0, -7.0, -7.0, -3.2700379829462642, -2.1393946530192696, -1.6428716804371248, -2.901656425850182, -3.4837298990000236, -3.0765684092605996, -7.0, -2.1881570498615166, -2.9254839872002525, -2.9731278535996988, -3.9014038268252516, -7.0, -2.0280933459471977, -1.9470723905090646, -3.4867137759824858, -7.0, -2.3359135659099737, -7.0, -3.8530895298518657, -3.7945577512547617, -3.226857570288723, -7.0, -3.045343570734785, -3.1051694279993316, -7.0, -3.366982975977851, -3.0257153839013404, -1.9761165933464382, -1.7658547474657904, -2.5738382050519886, -7.0, -7.0, -3.5314971643262183, -1.9055612534135378, -2.8371674062278354, -3.5742628297070267, -3.394576747632524, -3.481729196960016, -2.7714744128040993, -3.478181568042029, -2.2583179485318188, -7.0, -2.1132268916297963, -7.0, -7.0, -3.7257483329955483, -3.7441364524012473, -3.0612262251191154, -7.0, -7.0, -7.0, -2.5761041141490666, -7.0, -2.3283796034387376, -7.0, -3.140193678578631, -2.8739015978644615, -3.159266331093494, -3.1908917169221698, -2.859438535455056, -7.0, -7.0, -3.249442961442582, -2.4265112613645754, -7.0, -7.0, -7.0, -2.958324931644053, -3.225438516805496, -3.107040290223204, -3.5358002908248976, -2.425012231875444, -2.7790350244932567, -3.2837533833325265, -7.0, -3.3356584522893016, -7.0, -7.0, -3.1678809876266514, -7.0, -7.0, -3.153204900084284, -2.1361105172149624, -3.0622058088197126, -7.0, -7.0, -3.199618067707931, -7.0, -2.2241768313269548, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7748088303107057, -7.0, -3.276921132065774, -3.3372595397502756, -3.9775353253878825, -7.0, -7.0, -7.0, -3.1873155746437476, -3.0394884783034315, -7.0, -2.1958996524092336, -7.0, -3.2645817292380777, -7.0, -3.459731647856049, -7.0, -7.0, -3.469306445431168, -3.0567387302695983, -3.0835026198302673, -3.303196057420489, -3.226342087163631, -2.61870166264718, -2.5743620327718135, -3.0170333392987803, -3.7939765374934558, -7.0, -7.0, -2.782472624166286, -7.0, -3.513483956704257, -7.0, -7.0, -7.0, -3.247359422468937, -7.0, -3.3667839409230824, -7.0, -2.8530895298518657, -7.0, -2.1693977913346485, -2.3493941009438672, -7.0, -2.779776808670381, -7.0, -3.111094410509336, -7.0, -3.437739995916121, -3.6062738531699883, -2.966798546383361, -3.572639297042813, -7.0, -7.0, -7.0, -7.0, -2.90687353472207, -2.4812634271455627, -3.2595938788859486, -3.351989455435632, -2.9951962915971793, -3.3553336134554423, -7.0, -7.0, -3.2763468962530333, -7.0, -7.0, -2.147081481685561, -7.0, -7.0, -4.088039388997349, -7.0, -7.0, -7.0, -7.0, -2.7114598529873253, -7.0, -2.7024305364455254, -3.2208922492195193, -7.0, -7.0, -7.0, -3.3760291817281805, -2.8862086241674976, -7.0, -3.314113533503361, -3.6732052817790453, -4.0690017170456, -7.0, -7.0, -7.0, -3.4831592097169795, -2.7849737099544005, -3.007235537545952, -7.0, -3.40840957846843, -3.3647385550553985, -7.0, -7.0, -3.3286649614415253, -7.0, -3.0842186867392387, -7.0, -3.042811691807148, -3.497119783170118, -7.0, -2.991004440330755, -7.0, -7.0, -2.474559037955062, -7.0, -7.0, -2.2064403505010706, -2.7219937073239864, -2.7424894645817752, -7.0, -3.4300481667501534, -3.559622386202792, -3.337459261290656, -7.0, -2.1095983962831193, -3.243090291496643, -7.0, -3.305673745669693, -7.0, -2.2538224387080734, -7.0, -2.5040175279209977, -3.3250022521650378, -7.0, -7.0, -4.390758528738717, -7.0, -7.0, -7.0, -7.0, -7.0, -2.845754459710494, -3.2181414681576777, -2.9859875056581204, -3.7844033017530085, -7.0, -3.9458623244896174, -3.2377949932739227, -7.0, -3.4211101297934343, -4.101575246255933, -3.5997193623970984, -7.0, -7.0, -2.7556843338524133, -3.778946727968617, -7.0, -7.0, -7.0, -7.0, -2.783427117917317, -7.0, -2.76774936734558, -7.0, -7.0, -7.0, -3.165639948545658, -7.0, -7.0, -3.7298445624133887, -7.0, -2.927626962444954, -7.0, -7.0, -3.3001605369513523, -7.0, -7.0, -3.2050238216541693, -7.0, -3.705927825831053, -7.0, -7.0, -3.306244991644289, -7.0, -7.0, -3.406540180433955, -7.0, -2.8578147779710066, -7.0, -2.374889282075564, -3.416141031168329, -2.5024271199844326, -7.0, -7.0, -3.4681995860726125, -7.0, -7.0, -3.031408464251624, -4.366180057989114, -7.0, -3.117602691690084, -7.0, -3.542514216281654, -7.0, -3.46014581749175, -7.0, -3.3281756614383227, -2.092122568184241, -2.362356792654536, -7.0, -3.263399331334002, -4.379686151906955, -3.077627417979003, -7.0, -7.0, -7.0, -3.245759355967277, -3.270911639410481, -2.617000341120899, -3.2530955858490316, -2.3324384599156054, -2.3790962360108145, -2.926085086925144, -7.0, -4.71401020939888, -7.0, -7.0, -2.249198357391113, -7.0, -3.2314695904306814, -3.26030994579492, -2.5732585015417953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1488033442895493, -7.0, -7.0, -7.0, -7.0, -3.35869609957381, -3.345765693114488, -7.0, -2.8819549713396007, -3.3053513694466234, -3.1927068066128585, -7.0, -3.1922886125681202, -7.0, -7.0, -7.0, -2.8079725242641853, -7.0, -3.345177616542704, -3.062393937253195, -4.0224283711854865, -7.0, -7.0, -3.2960066693136723, -2.299328972154782, -3.5280163411892014, -2.599211049530462, -2.1701252091917578, -3.9115837009810757, -7.0, -7.0, -7.0, -3.1272668183188985, -7.0, -2.690196080028514, -7.0, -7.0, -3.4313637641589874, -7.0, -3.4687902620996107, -7.0, -7.0, -2.987263954122236, -3.4184670209466006, -3.5991185650553628, -7.0, -4.181602246187018, -3.0532705666813786, -7.0, -3.081940027992318, -7.0, -3.371621927176021, -1.8327712998747674, -3.496237545166735, -7.0, -2.86844850133673, -3.1670217957902564, -3.2005769267548483, -7.0, -7.0, -5.227148547975863, -3.335307426189327, -7.0, -7.0, -7.0, -3.8409212001987716, -3.253822438708073, -3.0086001717619175, -7.0, -2.347272603130747, -2.6852937813867843, -3.2225864233903896, -7.0, -3.0166155475571776, -7.0, -2.6203095992245795, -7.0, -7.0, -4.019318102912398, -3.3671016750541347, -4.514273958642971, -7.0, -3.8715729355458786, -2.6835592462131155, -2.1269824791182863, -3.2095150145426308, -2.124033012647276, -3.2753113545418118, -3.0678145111618402, -1.914847525422251, -2.3038707421637667, -2.5221833176186865, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9735126958773432, -3.3047058982127653, -2.8195176138665428, -7.0, -7.0, -3.7634386903396253, -4.78088591593984, -7.0, -7.0, -7.0, -7.0, -7.0, -4.604118006192035, -4.410186528657109, -7.0, -7.0, -7.0, -7.0, -7.0, -3.553463748891934, -7.0, -7.0, -4.326832352550085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.783167226237643, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.476940260975887, -4.681530670563176, -4.070588240085541, -3.473000092791711, -7.0, -3.6538490123638514, -7.0, -4.2385328425772455, -3.566516054872908, -3.160368474792848, -3.858085826163788, -4.014184397501279, -3.6121743576976613, -7.0, -4.155244917176186, -3.5942267574809135, -7.0, -3.571009672309305, -7.0, -3.7685641095135733, -7.0, -4.218837358365702, -4.285526367236513, -5.707479901588531, -7.0, -2.6077408843287597, -7.0, -3.7059634403790094, -7.0, -7.0, -4.1193548812964265, -7.0, -7.0, -4.045538116450688, -2.9735742390073434, -4.791480116020001, -7.0, -7.0, -7.0, -3.758679442661326, -4.504389297186282, -2.757206173278786, -3.6272195063025854, -4.4847030950325495, -3.384084473382558, -3.9519103706754914, -7.0, -7.0, -4.143815995423801, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7217111449013283, -2.462397997898956, -2.7106461542699276, -7.0, -7.0, -3.110103147722846, -7.0, -3.208844289340738, -2.27669152884504, -2.9291633832050645, -7.0, -3.1616265959265073, -3.027920136405803, -3.0400086360135417, -7.0, -7.0, -3.521007252408604, -3.164278483923325, -7.0, -7.0, -3.158905021187544, -7.0, -3.3604040547299387, -1.8161676220745815, -1.8351537728060792, -3.2143138974243994, -3.583576585633949, -7.0, -3.268343913951065, -3.4333323865845595, -3.756241807581338, -4.796498012777912, -7.0, -7.0, -2.347241284193564, -7.0, -2.290246669219223, -7.0, -2.4978507395784066, -2.6054884378490457, -7.0, -2.9698816437465, -1.7322700115725504, -2.2684219472783616, -3.478999131673357, -7.0, -2.5144001589521867, -7.0, -3.345177616542704, -2.5348718599395945, -3.037027879755775, -7.0, -7.0, -2.5911573950798172, -2.3711651177825903, -7.0, -3.8813275841005512, -7.0, -7.0, -7.0, -2.620656479819621, -2.225674775060652, -2.5323296410790315, -7.0, -3.4531653925258574, -7.0, -7.0, -3.026328938722349, -3.5533367823768884, -3.3066394410242617, -3.5282737771670436, -2.7637158918047717, -2.8302678009336417, -7.0, -2.470704429722788, -2.632228959099475, -2.059876090852238, -2.7685147746865404, -2.761460516422466, -2.770009947428937, -1.2675688224251873, -1.7630875039477678, -3.3798853986437485, -7.0, -2.9566485792052033, -2.8063495871404673, -3.2420442393695508, -7.0, -7.0, -7.0, -3.074084689028244, -7.0, -3.3984112726125186, -3.222456336679247, -3.895367288773362, -3.7160749247379314, -2.0846903408324007, -2.6014080605346837, -7.0, -2.3956175727530065, -7.0, -2.6020599913279625, -2.724722598063189, -7.0, -7.0, -2.574176008432909, -2.7950105586314464, -2.70680142436115, -3.063896038125994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3022071980619376, -7.0, -7.0, -7.0, -7.0, -3.666705136119899, -3.3279716236230104, -7.0, -3.5147336493441603, -3.0572856444182146, -7.0, -3.6609602917760835, -7.0, -3.0992200954861304, -2.9523080096621253, -3.2671717284030137, -3.0635835285910997, -7.0, -3.280881754580137, -7.0, -3.3807537708039, -7.0, -7.0, -2.4456042032735974, -7.0, -7.0, -7.0, -3.265525335219074, -7.0, -7.0, -7.0, -4.602911459019037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.718501688867274, -7.0, -7.0, -4.03996902686746, -2.8509245755642554, -7.0, -7.0, -4.425886906586064, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7872833199241156, -2.8068580295188172, -7.0, -7.0, -7.0, -3.024895960107485, -7.0, -7.0, -7.0, -7.0, -7.0, -4.442743088040626, -7.0, -7.0, -7.0, -7.0, -2.473924693416157, -7.0, -3.1048284036536553, -7.0, -7.0, -7.0, -3.954767634541571, -3.4619484952037616, -7.0, -3.801815168581437, -7.0, -3.064832219738574, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9782946697786294, -3.54917191710199, -7.0, -7.0, -2.641639335722719, -7.0, -7.0, -7.0, -7.0, -7.0, -4.648665698738682, -7.0, -7.0, -7.0, -2.91539983521227, -2.8404482831667024, -7.0, -7.0, -7.0, -3.461048091670658, -7.0, -7.0, -7.0, -3.288249225571986, -7.0, -4.0845073368306215, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.153326961490906, -7.0, -7.0, -7.0, -3.3764400779834967, -7.0, -7.0, -7.0, -3.164352855784437, -3.681150749932421, -7.0, -7.0, -7.0, -7.0, -4.386962441214617, -7.0, -7.0, -3.3571722577230334, -3.5585885831081994, -7.0, -7.0, -4.176641017292667, -4.45429593073985, -7.0, -7.0, -7.0, -4.994457934544334, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6568601414481825, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6516817459988693, -3.1357685145678222, -4.157758886046864, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6399842480415883, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8135809885681917, -2.1112978955061585, -2.8144695709383387, -2.1536710820283993, -2.2117029006908067, -7.0, -4.173724392544616, -7.0, -7.0, -7.0, -2.7697464671794534, -7.0, -2.8976270912904414, -2.7671558660821804, -3.928805370893284, -7.0, -4.283007075553755, -7.0, -7.0, -3.7737710523822834, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2931414834509307, -7.0, -7.0, -3.6418705454763125, -7.0, -3.0729847446279304, -7.0, -7.0, -2.8415680152280833, -7.0, -7.0, -3.3001605369513523, -7.0, -3.766040860381389, -7.0, -2.76317832728305, -7.0, -7.0, -3.751279103983342, -3.3694014136966244, -7.0, -3.402777069610347, -4.358486888100237, -3.0139201038746375, -7.0, -7.0, -7.0, -7.0, -2.859738566197147, -7.0, -7.0, -7.0, -3.9175055095525466, -7.0, -7.0, -7.0, -7.0, -2.6459132750338443, -2.7024305364455254, -7.0, -7.0, -2.529558673021163, -7.0, -3.256236533205923, -2.9479236198317262, -2.690196080028514, -7.0, -2.833147111912785, -7.0, -2.41077723337721, -7.0, -1.9813177870322458, -3.6642014217072965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8228869478341507, -7.0, -7.0, -7.0, -2.853949830834142, -7.0, -4.234390722392193, -2.589204670642375, -4.410895277968898, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6645479622465467, -3.7246035153967165, -7.0, -7.0, -7.0, -7.0, -7.0, -2.870403905279027, -2.1389339402569236, -7.0, -2.436162647040756, -2.3441114495680493, -7.0, -7.0, -7.0, -7.0, -3.4565178578052627, -7.0, -7.0, -7.0, -4.831216882631442, -3.8985057855343586, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9606610072709816, -7.0, -2.645211668286901, -2.1566356727947436, -2.3029417866392774, -7.0, -5.351353028253276, -7.0, -7.0, -2.680335513414563, -2.383815365980431, -3.762753564933374, -7.0, -7.0, -2.2483820141396533, -7.0, -7.0, -7.0, -7.0, -3.406540180433955, -7.0, -7.0, -7.0, -7.0, -7.0, -3.91184979649942, -4.644899460500739, -7.0, -3.0203612826477078, -4.3200797861711155, -7.0, -7.0, -7.0, -7.0, -3.5490032620257876, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.1265642948950374, -7.0, -2.2178597940702534, -2.954724790979063, -2.031913164461711, -3.7262380468026377, -7.0, -7.0, -4.596278129409967, -7.0, -7.0, -7.0, -7.0, -4.073718350346122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9230418536264855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.473873648418939, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.625655360163779, -3.9720361262003894, -4.112116965273502, -3.589670402034894, -7.0, -7.0, -7.0, -4.934670115130671, -1.9746055802306293, -2.658692643042924, -3.597413084920528, -4.662096445417923, -3.6811778981450454, -7.0, -3.9614210940664485, -7.0, -1.9764154883905163, -7.0, -3.7724500687215876, -7.0, -7.0, -3.9919301253434987, -4.709914138864821, -5.706506129530095, -7.0, -3.218447972316523, -7.0, -3.274249280187803, -7.0, -7.0, -7.0, -3.9188163903603797, -7.0, -4.022613927471968, -7.0, -4.783388978417696, -7.0, -7.0, -7.0, -4.898730665071061, -7.0, -7.0, -3.4666205111116515, -3.5582236176342548, -7.0, -3.6232434373330964, -7.0, -7.0, -4.608943012764416, -3.82013575187043, -1.88711696101553, -1.7013324461464732, -7.0, -7.0, -7.0, -3.86812991495759, -2.022690750805371, -3.2315828501736372, -7.0, -7.0, -3.3437629752857023, -7.0, -0.8869604866914078, -7.0, -3.452246574520437, -7.0, -3.435802833862011, -2.776701183988411, -7.0, -7.0, -7.0, -3.036429265626675, -2.1219816941302403, -7.0, -7.0, -7.0, -7.0, -3.0610753236297916, -3.2771506139637965, -2.4186836489220545, -7.0, -3.714329759745233, -7.0, -7.0, -7.0, -3.793678654697431, -4.788500684370557, -7.0, -3.454692449239477, -1.998076772254723, -3.1085650237328344, -2.394013663157313, -7.0, -2.7538383010289067, -2.746171833995682, -7.0, -7.0, -3.397070549959409, -2.920905604164024, -7.0, -2.2900346113625183, -2.7810369386211318, -3.146128035678238, -2.5514499979728753, -2.511437702158953, -3.51241754860084, -3.594834355583318, -7.0, -2.3437777349071722, -2.0416558142071124, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3412366232386925, -2.9167102323944154, -2.77232170672292, -2.4538641419058598, -7.0, -7.0, -7.0, -2.143014800254095, -3.079398339019855, -7.0, -2.6483600109809315, -2.7273378880330803, -7.0, -7.0, -3.0202231262979176, -3.0743795706254873, -2.3436676730228414, -2.259887792766994, -2.7495430810911663, -3.4759615891924236, -3.042654253167793, -7.0, -3.08082683498178, -7.0, -3.197831693328903, -7.0, -2.478566495593843, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530481449815745, -7.0, -7.0, -3.7022335328214155, -7.0, -2.6782147827453997, -7.0, -2.9689496809813427, -7.0, -1.792991681970249, -2.414973347970818, -7.0, -7.0, -2.366189402779955, -2.5292378052696605, -3.0534276951965746, -2.1624897277365047, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.249442961442582, -7.0, -7.0, -7.0, -7.0, -7.0, -1.532674772268436, -7.0, -3.4029488293444046, -2.759164022728366, -3.3323711222176793, -3.2909245593827543, -7.0, -2.734799829588847, -2.2624510897304293, -3.2427898094786767, -2.993876914941211, -7.0, -3.5962671263955155, -2.57902100733939, -2.2616593037647066, -3.5364321758220134, -7.0, -3.4202858849419178, -7.0, -7.0, -3.0668847431297714, -2.7737864449811935, -3.6618126855372615, -2.3863715504164245, -7.0, -7.0, -7.0, -7.0, -7.0, -2.832508912706236, -7.0, -7.0, -3.2161659022859928, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.879609931118383, -3.4218780161701265, -7.0, -3.38524868240322, -4.271093139365375, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.566172238185459, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.142067067435677, -7.0, -7.0, -7.0, -7.0, -3.185258765296585, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9095613776624525, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5928426831311002, -3.851930678640268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.427145161242989, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9804578922761, -4.026773224566896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.382161182795874, -7.0, -7.0, -7.0, -7.0, -3.309257450996068, -7.0, -7.0, -7.0, -7.0, -3.653983907374069, -7.0, -7.0, -4.0571105210678615, -7.0, -7.0, -7.0, -4.994919554787319, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8272399995056454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.544551703070268, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.498426962809987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9843022319799033, -7.0, -7.0, -4.149721263992506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.178869079308535, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.281866292147957, -7.0, -7.0, -7.0, -3.883282800010276, -3.865991800126275, -7.0, -7.0, -2.979548374704095, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9229848157088827, -7.0, -3.8374937416151766, -4.332904487195654, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.244643209101521, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7013088852280753, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.354876422516234, -3.457314067737995, -7.0, -3.809618626557482, -7.0, -7.0, -7.0, -3.222629776969852, -3.7567121601647715, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.379124146070392, -3.939119717648487, -7.0, -7.0, -7.0, -3.5641572397284045, -7.0, -7.0, -3.8133808067338557, -7.0, -7.0, -7.0, -7.0, -3.965624967109243, -3.532117116248804, -7.0, -7.0, -7.0, -7.0, -4.652435235750351, -7.0, -7.0, -7.0, -7.0, -7.0, -3.638389407665336, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3386556655787003, -7.0, -4.159272350379319, -7.0, -5.176453020410962, -7.0, -7.0, -4.718480928596619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4307198878632823, -7.0, -7.0, -7.0, -7.0, -7.0, -4.028774526500088, -7.0, -7.0, -3.898374094681203, -4.171258274675775, -7.0, -7.0, -4.237166582685473, -4.376704671946979, -3.18971484232368, -7.0, -3.2181814592305806, -3.985695859689842, -2.9192873405043827, -7.0, -3.766098745914636, -3.8845513831738536, -2.9390538498961036, -4.333144876098619, -4.1982445862282365, -3.4608978427565478, -3.4368779277106576, -7.0, -7.0, -5.388307282618574, -4.278524964737017, -4.057285644418214, -3.6341076435144934, -7.0, -3.8148371659627713, -3.1492191126553797, -3.3823773034681137, -3.6615651537654403, -3.4649364291217326, -4.678973375919766, -4.026247181477774, -4.198106998873402, -3.3271545124094315, -7.0, -7.0, -4.455606112581867, -3.3444764855229927, -4.616065707908696, -7.0, -4.672051653937387, -5.0668102756258335, -3.8966364305295844, -3.6738499773429494, -4.332519251373731, -7.0, -4.235924686056476, -7.0, -7.0, -3.599056096864108, -4.963632019857728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.376540460188395, -7.0, -7.0, -4.992473985619664, -4.409015404360969, -5.706595753188616, -7.0, -7.0, -7.0, -3.877160099130066, -7.0, -7.0, -7.0, -7.0, -7.0, -4.325843928293292, -7.0, -3.7840107110782126, -2.7772196208195874, -3.74196530244959, -7.0, -2.82614071641586, -7.0, -7.0, -4.944546824551128, -4.002578793440226, -7.0, -4.347891794786546, -7.0, -3.311435968289161, -4.6100636631681216, -4.2996380249790755, -7.0, -7.0, -7.0, -7.0, -3.4276483711869328, -2.7714110818203803, -7.0, -3.4900428002642228, -2.32376758329678, -2.4740080192955194, -2.7318245278608315, -2.335959106148248, -7.0, -7.0, -2.718501688867274, -2.161368002234975, -3.2666259282807415, -3.6337713460825554, -2.0147495769008272, -3.3677285460869766, -3.052693941924968, -2.510927817178866, -2.3561169519982608, -2.846955325019824, -1.8561244442423004, -3.012133913649598, -2.451402613597493, -2.1391791757229104, -2.6972293427597176, -7.0, -2.7788744720027396, -2.3346631405199663, -2.8615344108590377, -7.0, -3.092687755629679, -3.5151659357206038, -2.505519312608658, -7.0, -2.690786555281818, -7.0, -2.8410464654093035, -3.4913616938342726, -7.0, -7.0, -3.1756567472816637, -2.8382192219076257, -1.7929301824152337, -2.2970025063809376, -7.0, -2.187608839834818, -2.5579080274827057, -1.6749317634685799, -7.0, -2.466496903744401, -3.0130479961152314, -2.9935684827897275, -3.053105894858664, -2.144885418287142, -3.564192460626198, -3.5397032389478253, -3.043165720207454, -2.752355804153501, -7.0, -2.919601023784111, -2.951337518795918, -3.3649260337899753, -3.253812677241476, -7.0, -2.062743102568688, -2.9542425094393248, -1.8191566912166992, -7.0, -7.0, -2.882382216314445, -2.0859146287065933, -7.0, -3.8150461760646306, -1.5899768306734643, -7.0, -7.0, -3.331042436293782, -2.790486226296973, -3.396896449142524, -3.00774777800074, -2.6441571283550034, -7.0, -2.3554788867405914, -2.6229310093415856, -2.182396242715304, -1.937676229923422, -1.772908194971272, -7.0, -7.0, -2.9822335322294484, -2.336173731545205, -2.824451270036613, -2.075546961392531, -3.012492105236467, -2.5149270491751405, -2.264548845239721, -2.3490237296492333, -2.037055702202493, -3.4734869700645685, -7.0, -3.2942457161381182, -7.0, -7.0, -2.9832653525665456, -2.4688683796431086, -7.0, -7.0, -7.0, -2.1942683822178575, -7.0, -7.0, -7.0, -2.334453751150931, -2.1020905255118367, -2.149834696715785, -1.5715424673240241, -2.333514445555875, -2.4265112613645754, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.73559889969818, -3.420615770625765, -7.0, -3.6371226589692447, -3.0764948050097205, -3.671913012441587, -2.7748817658187965, -7.0, -2.7103591771903925, -7.0, -7.0, -3.898848543181547, -7.0, -7.0, -2.315105585855791, -2.553883026643874, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9719249491841913, -3.26030994579492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.125188384168597, -7.0, -7.0, -7.0, -7.0, -4.209649035368229, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6577249542051082, -4.191540668110219, -7.0, -7.0, -7.0, -7.0, -3.1109262422664203, -7.0, -4.865376434126184, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.471438407389299, -7.0, -7.0, -7.0, -4.663958348341331, -7.0, -7.0, -7.0, -7.0, -3.632356046239073, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5097937283256178, -7.0, -3.2971036501492565, -3.3100557377508917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.954121855324949, -4.449308659474037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6748611407378116, -7.0, -5.125129784152959, -7.0, -7.0, -7.0, -7.0, -3.2686949535621777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.999644755141952, -7.0, -3.2373761539301436, -7.0, -7.0, -3.40840957846843, -7.0, -7.0, -7.0, -7.0, -4.146995757209465, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3613500243522663, -7.0, -3.62096843564429, -3.1454888972525032, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.753766848350539, -7.0, -7.0, -7.0, -7.0, -3.0874264570362855, -7.0, -7.0, -7.0, -7.0, -3.2180319499420165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.724275869600789, -3.2441946258862364, -4.151492428425498, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5191057562064487, -7.0, -7.0, -7.0, -3.5862371276818306, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.570893036218392, -3.2054750367408906, -7.0, -4.497950407312327, -2.841359470454855, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9218367044079674, -7.0, -7.0, -3.5744942682853273, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.62096843564429, -7.0, -3.65628990119136, -7.0, -7.0, -7.0, -7.0, -7.0, -4.071145290451083, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5460488664017342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.71289287211251, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163911396227727, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.312811826212088, -7.0, -3.9306943876645355, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.478566495593843, -7.0, -3.833147111912785, -3.1684974835230326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.318689269947746, -3.923295840655504, -7.0, -7.0, -7.0, -4.830556592575827, -3.5859117103194342, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5106790310322102, -7.0, -4.983238270378447, -3.2617979705560107, -7.0, -7.0, -7.0, -7.0, -3.3049211619008916, -7.0, -2.9380190974762104, -7.0, -7.0, -7.0, -7.0, -3.6898414091375047, -7.0, -7.0, -3.306532247519607, -7.0, -4.856414683381129, -7.0, -4.513494376034757, -7.0, -3.784759894664005, -7.0, -3.7676010680503356, -7.0, -7.0, -7.0, -3.5229655954919865, -3.7763379096201755, -7.0, -7.0, -7.0, -7.0, -3.076094046682475, -7.0, -7.0, -7.0, -7.0, -7.0, -3.656454147451837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.069926968752473, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.579943570379943, -7.0, -7.0, -4.222960855556619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9137291037285733, -7.0, -4.368119458615029, -3.919425538440869, -7.0, -3.6442415858437287, -7.0, -3.3289908554494287, -4.536194694903611, -3.9873533887357935, -7.0, -4.138397442990546, -4.059004571695273, -3.679309766985715, -7.0, -3.3936230567743357, -7.0, -7.0, -3.785472203306388, -4.370827547784376, -7.0, -7.0, -3.6106823385082976, -3.86442349007059, -5.229205571988446, -7.0, -7.0, -7.0, -4.051793839436376, -7.0, -4.928047457542404, -7.0, -3.515290862441523, -7.0, -3.8422138683580256, -4.129319230615535, -3.878722811233517, -7.0, -3.3655414661398932, -3.796851749049887, -4.420456357165732, -3.7073714338087607, -7.0, -3.6003787854957343, -4.256395392373177, -7.0, -4.30588853028431, -7.0, -3.2771506139637965, -3.492534750799617, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6889386481371726, -2.855317205195943, -3.065780743753253, -7.0, -3.2518814545525276, -3.3396898899664773, -7.0, -3.2762319579218335, -7.0, -3.13481437032046, -7.0, -3.4951139924860954, -2.4846283111753045, -2.625826713285711, -7.0, -4.12251077061032, -3.2946866242794433, -1.5168785621604606, -7.0, -7.0, -3.7685641095135733, -7.0, -7.0, -7.0, -7.0, -7.0, -3.307410454213674, -7.0, -7.0, -7.0, -3.771762409180194, -4.309892651745501, -2.505149978319906, -3.4220971631317103, -3.085035605826861, -7.0, -3.44544851426605, -7.0, -7.0, -3.247359422468937, -7.0, -2.716003343634799, -3.359645792674543, -2.8636202202703154, -7.0, -7.0, -7.0, -7.0, -2.9375178920173464, -7.0, -3.0767314430382817, -7.0, -7.0, -3.525692524505011, -3.0211892990699383, -7.0, -3.5398912045347903, -7.0, -7.0, -7.0, -3.302330928684399, -3.471757056646584, -7.0, -3.2786392978907393, -3.1734776434529945, -7.0, -3.840670561333409, -7.0, -3.2863816107479344, -7.0, -7.0, -3.3164596126484933, -7.0, -7.0, -2.9386626557296673, -3.2864462624614332, -3.604442066260723, -7.0, -3.524547568608145, -3.4449811120879446, -3.7257483329955483, -3.1099158630237933, -3.026655813877043, -7.0, -2.8353734524700087, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1319392952104246, -3.6825834061045346, -7.0, -3.458305392118017, -2.4591681041417863, -7.0, -2.9477603819114044, -7.0, -7.0, -7.0, -3.028571252692538, -7.0, -7.0, -7.0, -3.2219355998280053, -7.0, -3.0119579077781298, -2.987219229908005, -7.0, -7.0, -2.5327543789924976, -7.0, -7.0, -7.0, -3.315900405126321, -7.0, -7.0, -7.0, -7.0, -7.0, -0.8895046912839731, -2.0667916567545563, -2.1077750894177876, -1.4151745499581567, -1.6313840762796707, -2.0128023766022927, -2.0736013686667882, -3.642167634404945, -1.8553172051959428, -7.0, -2.4356320489516605, -1.6174663223693628, -7.0, -2.4105890203936555, -1.2859662492281052, -1.1583624920952496, -2.0396192169281915, -3.4094258686714434, -2.907052884087371, -0.5818566052396754, -1.9138138523837167, -1.9573782232921835, -1.7993405494535817, -3.164352855784437, -1.292256071356476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.00061029760018, -7.0, -7.0, -7.0, -4.197142664972563, -3.6111920608684343, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.670987603010034, -4.109506397038123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.264115066642318, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8656960599160706, -7.0, -7.0, -7.0, -7.0, -5.14153442905532, -2.826722520168992, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.139249217571607, -7.0, -3.3172756228920153, -7.0, -3.207742052606945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9708116108725178, -4.451479405124862, -7.0, -7.0, -7.0, -7.0, -3.43568513794163, -3.6375897858387, -7.0, -7.0, -4.824552105737333, -7.0, -7.0, -7.0, -7.0, -3.4019172505175748, -3.3242824552976926, -7.0, -7.0, -7.0, -7.0, -3.0225658278987413, -7.0, -7.0, -7.0, -3.815434696709049, -7.0, -3.720696668749796, -7.0, -7.0, -7.0, -7.0, -3.089551882886454, -3.2881373948820665, -7.0, -3.549095263822955, -7.0, -7.0, -7.0, -3.2764618041732443, -7.0, -3.3872118003137306, -7.0, -3.157859545331566, -2.963206442410132, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.079904467666721, -7.0, -4.754845043482116, -7.0, -7.0, -7.0, -7.0, -3.13481437032046, -7.0, -7.0, -7.0, -7.0, -3.154076015574228, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.553842587658613, -2.8870543780509568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8294324336175984, -7.0, -7.0, -7.0, -3.6971919664111508, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2778383330020473, -3.579040088400086, -7.0, -2.966610986681934, -4.130152966318875, -2.921686475483602, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6812970606493245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9534697432534016, -7.0, -4.041945072145264, -7.0, -3.59904568462527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3914644118391033, -7.0, -3.3784584677820555, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5870371177434555, -7.0, -4.633811715526896, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.942722190183571, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.48365860383744, -7.0, -7.0, -7.0, -7.0, -3.361580948311831, -3.3209766773428235, -3.455162210758403, -7.0, -4.410346942254636, -7.0, -7.0, -7.0, -3.993788813818705, -7.0, -3.6614813978436156, -3.719248398447946, -7.0, -7.0, -7.0, -7.0, -7.0, -3.463743721247059, -3.13433651094868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1504494094608804, -7.0, -7.0, -4.831008647067558, -3.292532956594993, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9575594018974796, -7.0, -7.0, -7.0, -3.529173603261723, -7.0, -4.828423354273742, -3.3951515915045425, -7.0, -7.0, -7.0, -7.0, -3.621072371143626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0199466816788423, -7.0, -7.0, -7.0, -4.4950914223088745, -7.0, -3.1922188743934377, -4.717774488273178, -7.0, -7.0, -7.0, -7.0, -3.239674787646781, -3.485295438726089, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2991121572555873, -7.0, -7.0, -4.595562353005851, -7.0, -7.0, -7.0, -7.0, -4.37359235519894, -7.0, -4.289822980444232, -4.579440597139797, -7.0, -7.0, -7.0, -4.719065987963929, -4.997857997491355, -4.58155145789047, -7.0, -4.196682704664896, -4.62166432899245, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.774443968924965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.453012391121455, -7.0, -3.915220381223052, -7.0, -4.670477786047275, -3.7438083002149427, -3.5860243823869755, -2.958181497564948, -7.0, -7.0, -4.089347383665818, -3.5163149757779495, -7.0, -4.140618016861667, -4.184629925065294, -3.6805893065823088, -7.0, -3.1359432138552865, -3.345569756056392, -7.0, -3.7953933349312896, -7.0, -7.0, -7.0, -3.6297994823657387, -3.797656101724403, -5.104385525054603, -7.0, -3.690196080028514, -7.0, -4.256621546069706, -7.0, -4.50230248143607, -3.475307913956194, -3.7409676481411824, -7.0, -4.021272013951038, -3.9554632507055585, -3.7827950003893553, -7.0, -3.2600448734710765, -3.5053535061601866, -3.7842990115765605, -3.642393851544235, -7.0, -3.290059356781852, -4.478941471757991, -7.0, -4.268371227210525, -7.0, -3.594282028811806, -3.461841402144283, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6910225207762957, -7.0, -2.9530771516434475, -7.0, -7.0, -3.2632216936676484, -7.0, -7.0, -7.0, -2.9694935689446047, -7.0, -3.334599323559856, -2.249889274536743, -7.0, -7.0, -4.127104798364808, -7.0, -1.2328602186007682, -7.0, -2.49182842626168, -3.4776999283321306, -7.0, -7.0, -7.0, -3.226084115975824, -7.0, -3.234137489450963, -7.0, -7.0, -4.596652066132439, -3.5758768211262666, -4.310891478136077, -7.0, -7.0, -2.7058134205252036, -7.0, -2.6872316010647745, -7.0, -2.9135489579065177, -3.0463976029545603, -7.0, -7.0, -7.0, -2.9036325160842376, -7.0, -2.9628426812012423, -2.7651716502632686, -2.823800153749878, -7.0, -3.2771506139637965, -3.384487822086762, -7.0, -7.0, -2.843606471924511, -3.0402066275747113, -7.0, -3.5442851373225057, -7.0, -7.0, -7.0, -3.331832044436249, -3.3016301591867827, -2.762678563727436, -7.0, -7.0, -7.0, -7.0, -7.0, -3.774224904868919, -7.0, -7.0, -3.326199268859092, -7.0, -7.0, -2.7517688440873256, -3.1530217436261383, -7.0, -7.0, -3.4605971888976015, -7.0, -7.0, -3.1550322287909704, -3.1294481922680633, -7.0, -7.0, -7.0, -7.0, -7.0, -4.05903300496378, -7.0, -3.0670708560453703, -3.4553017716570764, -3.5294175204160725, -3.3289908554494287, -4.161757195261727, -2.479374231246622, -7.0, -2.445136968713304, -7.0, -3.2550311633455515, -7.0, -2.643551368562945, -3.366142676814887, -3.6871721045948, -7.0, -7.0, -7.0, -2.721740474382757, -3.0461047872460387, -7.0, -7.0, -7.0, -7.0, -2.73559889969818, -7.0, -3.3256524705723134, -7.0, -7.0, -7.0, -7.0, -0.8895046912839731, -7.0, -2.0293837776852097, -2.18089014193745, -1.2603842239301006, -1.6456405626343629, -2.051875744066477, -1.8654808495638453, -7.0, -2.002166061756508, -7.0, -2.0979382336289936, -1.8388490907372554, -7.0, -2.4348048695286773, -1.0352390909111167, -0.8542527574035039, -1.844040718781357, -3.131297796597623, -2.7091002815511667, -1.2463344173155233, -1.458098017406232, -2.04766419460156, -2.2430380486862944, -2.809367293505889, -1.0260558343362822, -3.077731179652392, -1.7719023011066422, -7.0, -7.0, -7.0, -2.895422546039408, -2.979548374704095, -7.0, -7.0, -7.0, -7.0, -4.1263181429721, -7.0, -7.0, -2.979092900638326, -4.2046896204203605, -4.220683277974345, -7.0, -7.0, -7.0, -7.0, -7.0, -4.34519723192998, -3.0011385293481347, -2.846955325019824, -3.394626764272209, -4.0407349395278604, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.91350184863534, -7.0, -7.0, -7.0, -7.0, -3.0661394928706995, -3.0043213737826426, -7.0, -7.0, -3.415974411376566, -7.0, -3.8870199535759746, -7.0, -7.0, -7.0, -7.0, -2.8935768378559144, -3.035829825252828, -7.0, -7.0, -7.0, -7.0, -3.5482612020793662, -3.1911714557285586, -3.319366349687303, -3.5148796552227934, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4253168014790023, -3.8535461212539044, -7.0, -7.0, -3.45484486000851, -7.0, -7.0, -2.9646367037885013, -7.0, -7.0, -4.649351087649642, -7.0, -7.0, -7.0, -7.0, -3.292422223682128, -7.0, -7.0, -7.0, -3.4916417934775863, -7.0, -3.2352758766870524, -7.0, -7.0, -7.0, -4.189796460324443, -7.0, -3.555779424013014, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9882913419074875, -7.0, -7.0, -7.0, -3.66228551572213, -3.3044905277734875, -7.0, -7.0, -7.0, -7.0, -4.390705541226371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8603380065709936, -7.0, -4.9953850742482295, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8584082821730847, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7183434903473924, -2.638949802577757, -4.164085057458859, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7672300981107183, -7.0, -7.0, -7.0, -7.0, -3.3150190151160137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.302330928684399, -2.4059204236653433, -2.6519238051682956, -2.379406247075376, -2.227942566017301, -2.399673721481038, -7.0, -3.861675308158829, -7.0, -7.0, -7.0, -3.143014800254095, -3.0273496077747564, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6296269035573974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.694517453811156, -7.0, -7.0, -2.8834721588455867, -7.0, -2.9745116927373285, -3.3869980727100555, -7.0, -3.4802944600030066, -7.0, -2.9894498176666917, -7.0, -7.0, -3.1647245241698965, -3.4068806700491248, -7.0, -7.0, -7.0, -2.917038463418648, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4511209284376467, -3.3157604906657347, -3.8408272275743864, -7.0, -7.0, -2.738780558484369, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2141813086638207, -7.0, -7.0, -2.950364854376123, -2.3961993470957363, -7.0, -2.637989780784685, -2.3577231509290413, -3.4253464559371563, -7.0, -7.0, -7.0, -7.0, -7.0, -3.109240968588203, -7.0, -3.1332194567324945, -3.409172018991404, -3.3400473176613934, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1452378543373385, -7.0, -7.0, -2.66149717917983, -4.014680114759413, -7.0, -7.0, -7.0, -7.0, -7.0, -3.674355853325486, -7.0, -7.0, -7.0, -7.0, -2.9454685851318194, -2.765420173578722, -3.201806642957022, -2.149512356746132, -7.0, -7.0, -2.6441923209713596, -7.0, -7.0, -7.0, -2.920123326290724, -3.098693158915045, -7.0, -7.0, -7.0, -4.655794505154385, -3.064190484147994, -7.0, -7.0, -7.0, -7.0, -2.8419848045901137, -3.3432115901797474, -3.9705793057148506, -3.0678145111618402, -2.9036325160842376, -2.3059373301587254, -2.1256619582273957, -7.0, -5.226548998271254, -3.8882918453565156, -7.0, -7.0, -7.0, -7.0, -3.347622699467242, -7.0, -2.259389071298138, -7.0, -7.0, -3.3820170425748683, -7.0, -7.0, -7.0, -7.0, -3.34908316877959, -7.0, -4.557885991687047, -7.0, -4.185237358982509, -7.0, -3.2110537626799363, -4.174811308156082, -3.7974752875373343, -7.0, -7.0, -7.0, -3.574147064150723, -3.504470862494419, -3.7460890430562004, -7.0, -7.0, -7.0, -7.0, -2.531478917042255, -2.8095597146352675, -2.8379039445929424, -3.071697945221614, -2.18590624134928, -3.205840177622518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.378634063849602, -7.0, -7.0, -4.581016156545554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.776454190482185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8692317197309762, -4.3719816906773925, -4.1129027694460705, -7.0, -7.0, -7.0, -7.0, -4.6341622672587635, -1.916102861641635, -2.6865085919184652, -7.0, -4.118977648033631, -3.22034258343606, -7.0, -3.964746621944139, -3.84060787900929, -2.244524511570084, -7.0, -4.077404246398098, -7.0, -7.0, -4.147791120013851, -4.6432622784087, -7.0, -2.70372115992702, -2.3485588116852982, -7.0, -3.3884084627688495, -7.0, -7.0, -7.0, -3.6231717308866838, -7.0, -4.328012438855587, -7.0, -4.085868301491028, -7.0, -4.221961651505041, -7.0, -4.5988452003570295, -7.0, -7.0, -3.2544000860757474, -3.6349951780447043, -7.0, -3.528336162914621, -7.0, -3.623766000133931, -3.6110006527050493, -4.000867721531227, -7.0, -2.8943160626844384, -7.0, -7.0, -7.0, -4.172310968521954, -2.0605261485221984, -3.589977511385285, -7.0, -7.0, -3.393692169195935, -3.4360035356698964, -1.5181149554842737, -2.9903388547876015, -3.166800009514995, -7.0, -3.4565799526055105, -3.1668246580284043, -2.8000293592441343, -7.0, -4.1359590921245575, -7.0, -0.7158076493735616, -7.0, -7.0, -3.7983743766815614, -7.0, -7.0, -3.021602716028242, -3.5615783683009608, -7.0, -4.024198232206868, -7.0, -7.0, -7.0, -3.949358635926558, -4.7899894334126945, -7.0, -7.0, -2.153126132579586, -7.0, -2.222305661264923, -7.0, -2.2785249647370174, -2.7248539013834177, -7.0, -7.0, -3.4323277922616042, -7.0, -7.0, -3.0770043267933502, -7.0, -7.0, -7.0, -2.556101391950587, -3.99899997221832, -4.202842365194632, -7.0, -2.6204830741547482, -2.1316926770993665, -7.0, -4.155001836231253, -7.0, -7.0, -3.9121157290788537, -2.266086895660994, -3.054904096730085, -3.5022905279147727, -7.0, -7.0, -7.0, -7.0, -2.775974331129369, -3.4927603890268375, -7.0, -2.910268571619067, -3.822037248072585, -7.0, -7.0, -3.8133808067338557, -3.354411752731074, -2.3007337847975, -2.714664992862537, -2.9887712324006594, -3.5055569386638217, -7.0, -7.0, -3.198499990015866, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4954055631461936, -4.05600230865876, -3.3818367999983434, -7.0, -2.6134853541155074, -7.0, -2.885785128783473, -7.0, -2.1654139227229567, -7.0, -1.981610995889209, -2.6112806471985532, -7.0, -2.8830933585756897, -2.6182573448404014, -2.3474694133222886, -3.2858860643833867, -2.234896745731588, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4890204780193703, -7.0, -7.0, -7.0, -1.532674772268436, -7.0, -2.0667916567545563, -2.0293837776852097, -7.0, -3.077731179652392, -1.5146654180326051, -1.9777236052888478, -2.1777377796253714, -1.9753953330981715, -7.0, -2.4119562379304016, -1.3716834463321412, -2.148626380910713, -2.4738517701548153, -7.0, -2.5506405275389614, -1.0089069310767398, -0.9494303329815315, -2.214843848047698, -2.7746629225378223, -2.85079934446789, -2.1527977807838794, -2.3584107862063366, -2.255272505103306, -1.8959747323590646, -3.681331705969166, -1.152596646205211, -2.3192548157701802, -2.846337112129805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.904068760153015, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1918304604119605, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.167831093602893, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.840836625751898, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3072338845509375, -7.0, -3.6117763969973113, -3.8047526021504607, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1083394747888384, -3.2766149674553477, -7.0, -7.0, -3.42845877351558, -7.0, -3.7453871213200087, -7.0, -7.0, -7.0, -4.648805462934326, -7.0, -3.3848907965305544, -7.0, -7.0, -3.8854177651109363, -7.0, -7.0, -7.0, -3.4674601095072637, -7.0, -7.0, -7.0, -7.0, -7.0, -4.6287362267356755, -7.0, -4.026247181477774, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.406028944963615, -7.0, -3.344883279369863, -3.6027109449575576, -7.0, -7.0, -7.0, -3.2054750367408906, -3.6093987370065896, -7.0, -7.0, -7.0, -7.0, -3.647969458362972, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.700919945420287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.336179453437444, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1869563354654122, -7.0, -3.535167485114944, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0145205387579237, -4.411175696829874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.450662800025085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.602963830326207, -7.0, -3.7692295817365937, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.058236168942767, -3.8623103099542706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.136625455760932, -4.671692775575364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.098188677117789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6959192528313998, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.017346419558815, -3.3428173146357327, -4.535989952876927, -7.0, -7.0, -7.0, -7.0, -7.0, -3.697403723200488, -7.0, -3.9676883504533125, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.354207713411756, -3.9008585047019917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.05034688321775, -3.8787515201730023, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.633670406051444, -7.0, -7.0, -7.0, -4.22212834524257, -7.0, -7.0, -4.417176804312706, -3.7856856682809013, -7.0, -7.0, -7.0, -7.0, -3.7940695839816327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.505109261303588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.375572173918037, -7.0, -7.0, -3.880996414629062, -7.0, -3.612571954065176, -4.3069608628831935, -7.0, -7.0, -4.105612359686785, -7.0, -7.0, -4.446122763910614, -7.0, -7.0, -7.0, -4.911068786880192, -7.0, -4.5336703976909245, -7.0, -7.0, -7.0, -3.8883480101780488, -7.0, -4.298081281898712, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.615413424407249, -7.0, -4.671478315597623, -4.1634371956104115, -7.0, -7.0, -7.0, -7.0, -4.633738543145729, -3.3960248966085933, -3.511214701136388, -3.238782899762625, -4.361250794303581, -3.8365230388765568, -7.0, -4.138223728353917, -7.0, -7.0, -7.0, -3.8982130849457537, -7.0, -7.0, -4.214004460658973, -4.585030452089273, -5.104477721982713, -7.0, -7.0, -2.968015713993642, -3.751885076250019, -3.787956123283932, -4.803530516138413, -7.0, -3.618806141984161, -7.0, -2.9812830767955023, -3.957192106805308, -3.6695814827928674, -7.0, -7.0, -7.0, -3.7526958379880133, -4.489184774579998, -7.0, -3.9441518901855095, -3.752336600753975, -7.0, -3.508691677048606, -7.0, -7.0, -3.3537666767989336, -4.298285285484084, -7.0, -7.0, -7.0, -2.5397032389478253, -3.7237839369653294, -3.470645657886728, -7.0, -3.7102584385195545, -7.0, -7.0, -2.671054613726539, -7.0, -7.0, -2.9084850188786495, -2.675854687720147, -2.826722520168992, -2.8378450212522504, -2.671584203846386, -2.737987326333431, -3.3560258571931225, -3.6533411745619175, -2.7431176252147416, -1.9682961150462555, -3.1290450598879582, -7.0, -3.78660947264866, -2.552668216112193, -7.0, -7.0, -3.541079767776629, -7.0, -2.567824277243263, -2.8228216453031045, -7.0, -3.8987800132898256, -3.492659134941496, -3.533291784717795, -7.0, -2.858236335429513, -3.3408900787491365, -2.8211858826088454, -7.0, -7.0, -2.94126290931895, -3.2534349352410055, -7.0, -2.885926339801431, -2.801403710017355, -7.0, -3.090169844444793, -7.0, -2.9677819080757994, -3.159266331093494, -2.745465168670727, -3.3012470886362113, -3.9916247345340055, -2.8167658936635127, -7.0, -3.0791812460476247, -3.531861949095809, -7.0, -3.6726211599937417, -3.0107238653917734, -2.4065401804339555, -3.9030899869919438, -3.3531465462139796, -3.267947678534008, -2.875784485010796, -2.8282301147269613, -3.2405492482826, -7.0, -3.5548524343720542, -7.0, -1.946393600352454, -2.0573807905423553, -3.0557604646877348, -3.333514445555875, -7.0, -7.0, -3.3246253644997976, -3.9327780700605506, -3.1530013881396495, -7.0, -2.6629723510645, -3.00446468164796, -7.0, -2.885078384149224, -2.6204563902137306, -3.0709609158009337, -1.9450306778782789, -2.688419822002711, -7.0, -2.754348335711019, -4.061075323629792, -3.4771212547196626, -7.0, -2.5148427896837955, -3.2295154631250256, -3.350441856535061, -2.7162120888836645, -2.5039268041935103, -2.97285055584723, -3.1630122097748297, -7.0, -7.0, -7.0, -7.0, -3.074725039091243, -7.0, -7.0, -7.0, -7.0, -2.4860542124935545, -7.0, -7.0, -7.0, -2.4683473304121573, -7.0, -7.0, -7.0, -3.2079035303860515, -2.958324931644053, -7.0, -7.0, -2.73559889969818, -2.1077750894177876, -2.18089014193745, -3.077731179652392, -7.0, -1.9867717342662448, -1.3744029614591415, -2.105612359686785, -1.7262624417714705, -3.3649260337899753, -1.482465220173021, -7.0, -2.0955429381058917, -2.3100557377508917, -2.4321672694425884, -2.459738214092112, -2.2918866162241116, -2.151905874537198, -1.2586068361221225, -2.4929155219028942, -2.0985613248146464, -2.362356792654536, -1.6830470382388496, -1.919078092376074, -2.019116290447073, -2.4073909044707316, -1.768816650063645, -2.6368220975871743, -7.0, -7.0, -7.0, -7.0, -3.0334237554869494, -7.0, -3.2340108175871793, -3.193820026016113, -7.0, -7.0, -3.0879883443610066, -7.0, -7.0, -7.0, -3.3370347431766225, -3.5560611590095323, -3.176814480674777, -7.0, -7.0, -7.0, -7.0, -3.1947732688446826, -7.0, -7.0, -3.8020892578817325, -3.3279693044605367, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.030698006758963, -3.458033192496506, -7.0, -7.0, -3.4050046650503694, -3.5690225860295635, -7.0, -3.375846436309156, -7.0, -7.0, -7.0, -4.105228305092498, -7.0, -7.0, -3.2847690133490195, -7.0, -2.782759192623997, -7.0, -7.0, -7.0, -3.0037476689675056, -7.0, -2.7227551756750508, -2.6083315007712975, -2.5707673930792567, -2.897901874268228, -7.0, -7.0, -3.6496268868405295, -7.0, -7.0, -7.0, -7.0, -7.0, -2.28070841812527, -3.361844019667805, -7.0, -7.0, -2.8467493518208467, -7.0, -7.0, -7.0, -7.0, -7.0, -3.875546758345239, -7.0, -3.2975416678181597, -7.0, -7.0, -2.0488827895528776, -7.0, -3.392169149489736, -7.0, -2.695287056508494, -3.130976691605617, -2.982994454658664, -3.716086853774832, -3.5476516583599693, -7.0, -3.02980974554449, -3.712397131406715, -2.5513423438970744, -7.0, -7.0, -3.3376588910261424, -3.5424519473759766, -3.312811826212088, -3.26583941549449, -7.0, -3.3538063594424754, -7.0, -7.0, -7.0, -2.3988865280773632, -7.0, -3.134283382991931, -7.0, -2.8206392563794713, -2.4706770949744215, -7.0, -7.0, -3.4784221877400805, -7.0, -3.459844642388208, -7.0, -7.0, -3.285669805960068, -3.716504163773217, -3.7774268223893115, -7.0, -7.0, -3.5629393628164787, -7.0, -3.9358094538099326, -7.0, -4.399297227459307, -3.1781132523146316, -3.1747380145272865, -7.0, -7.0, -7.0, -2.1590547896953014, -7.0, -7.0, -7.0, -4.398547595734928, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8616749478659766, -2.5914974484339126, -3.248545405594516, -3.3376588910261424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0787674351712444, -7.0, -7.0, -7.0, -2.9383171596692224, -7.0, -3.321598430465344, -7.0, -3.203168922875464, -7.0, -3.5067755366066433, -7.0, -7.0, -7.0, -3.2487087356009177, -3.1870975005834774, -3.531223374533027, -7.0, -3.4769475021740748, -3.395675785269936, -7.0, -7.0, -7.0, -7.0, -3.0746336182969043, -7.0, -3.157629432675573, -7.0, -4.317520127284809, -7.0, -3.541079767776629, -2.8857923101128033, -7.0, -3.8101652845431495, -3.4428715548211977, -3.505421327583281, -7.0, -7.0, -7.0, -7.0, -7.0, -3.474871583227693, -7.0, -3.8010605298478555, -7.0, -4.026778328659529, -3.0875448095324267, -3.8972237615049465, -7.0, -3.433449793761596, -7.0, -3.5693739096150456, -7.0, -3.5224442335063197, -7.0, -7.0, -3.25653735366673, -3.594171479114912, -7.0, -2.768003476952656, -3.7855077880892263, -2.903435311184991, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.993744756554462, -3.440436766105774, -3.2795243607444062, -4.080859627349738, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3191060593097763, -7.0, -7.0, -3.3230457354817013, -7.0, -3.5369370227046737, -3.4320942849063436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.949145952419944, -3.8890214220952246, -3.216429830876251, -7.0, -7.0, -7.0, -2.223798690700624, -7.0, -2.9979321862561354, -7.0, -4.424072704144278, -3.455758203104137, -7.0, -7.0, -3.2155242642956994, -7.0, -2.8027737252919755, -2.83714634390906, -3.6335189520021656, -2.911290807477995, -7.0, -3.353723937588949, -7.0, -3.6590600722409383, -3.6413749451921253, -7.0, -7.0, -3.497620649781288, -7.0, -7.0, -7.0, -2.985650973690949, -2.9652444739103614, -7.0, -3.6452257115354163, -3.517591730711908, -3.7057782128285974, -2.862819170960624, -7.0, -4.32236403543911, -7.0, -3.446847710155809, -3.0451664480652285, -3.5538830266438746, -3.1265778156833792, -2.9893608137762473, -7.0, -7.0, -3.400710636773231, -3.2997251539756367, -3.899971697328381, -2.7538701957509053, -7.0, -7.0, -7.0, -7.0, -2.919750317179154, -7.0, -7.0, -7.0, -7.0, -3.276921132065774, -7.0, -3.2229114697957306, -7.0, -7.0, -2.5605044151950564, -7.0, -4.02195086208636, -3.416007740449289, -3.796965553865301, -7.0, -2.4313082951657576, -4.071321397569312, -3.5824610945249487, -7.0, -7.0, -3.367355921026019, -2.7083359026822635, -3.8903092168999485, -7.0, -3.2774946096110122, -7.0, -7.0, -2.6190933306267428, -7.0, -3.426185825244511, -3.4401216031878037, -7.0, -7.0, -2.717761491475825, -7.0, -7.0, -4.613397790379954, -7.0, -7.0, -7.0, -4.72657236725846, -3.3611953702529753, -3.9651546459869254, -3.5672937724121385, -3.8105237427378844, -7.0, -7.0, -7.0, -4.130446348767577, -4.306004469823467, -3.9978339925302993, -7.0, -4.2116277231686166, -3.629969946292171, -7.0, -4.346392098317329, -7.0, -4.6127626711063305, -4.311160272879129, -4.552862814292621, -7.0, -7.0, -4.196747128441428, -4.230755374041985, -7.0, -3.4638361311346295, -7.0, -4.391199840108775, -4.356599435724971, -7.0, -7.0, -7.0, -7.0, -4.176525336535, -7.0, -3.631190018213138, -7.0, -3.7823203077273884, -2.763309942668417, -3.192846115188842, -2.8370971945258145, -3.5161385767170743, -3.29269900304393, -3.426458707426532, -3.0187761267869226, -3.2027606873931997, -3.512402718924654, -3.279932199005493, -3.05125779319857, -7.0, -2.6481797995677563, -3.219898739044966, -3.3544926005894364, -3.897352134344313, -3.448259603224894, -3.3229081045244717, -7.0, -2.9260719967632776, -3.2019697799138243, -4.452557318494008, -3.378216149749878, -3.213916009644023, -7.0, -3.0489247370565566, -3.8854177651109363, -4.45395843547477, -3.8327004709605674, -3.4141851761757067, -3.338257230246256, -3.0992968870134994, -3.9811841373983543, -3.1407663501232905, -3.2773035345575963, -2.663507637160854, -3.428836444372765, -3.1142988325370893, -2.846431244791793, -3.437433443797971, -2.719706525314566, -3.2645155999758346, -3.4222614508136027, -3.697423094483611, -7.0, -3.2692793897718984, -2.6842880577485695, -4.029708362514895, -7.0, -7.0, -7.0, -7.0, -3.834929096460576, -2.4773179778843373, -2.2696241164908653, -2.0820304601868975, -2.7643629658980102, -3.2524889444849885, -2.601267970296191, -3.3120715213029315, -2.8661691476337707, -2.8939466075520737, -2.2430380486862944, -7.0, -2.4652809689598794, -1.6763418117264048, -3.1202447955463652, -7.0, -3.274100093497666, -3.274388795550379, -0.8613293708732156, -7.0, -7.0, -2.4500208926115854, -7.0, -2.9596772555121413, -2.636738571385955, -2.2985911112975694, -7.0, -2.7972675408307164, -7.0, -7.0, -3.8361869262013224, -2.5088385055893094, -3.307799585981291, -2.846955325019824, -3.345765693114488, -2.188587626698794, -7.0, -2.3564083270389813, -7.0, -2.190064768547934, -2.163269826589994, -7.0, -3.062769949815128, -3.1333259667224587, -2.2065560440990297, -7.0, -2.6300887149282057, -3.230576636268741, -2.518660142364339, -3.1233615587462964, -2.145755623637207, -2.5341415331616393, -4.238773501720696, -7.0, -2.1255668662689016, -2.1976806451938993, -7.0, -2.938714257982389, -7.0, -7.0, -3.2011238972073794, -2.400365273349939, -2.4996695373751536, -2.0273496077747564, -3.2702905531667605, -3.516403148447403, -3.4207806195485655, -3.9406160823374075, -3.1089031276673134, -2.5998830720736876, -7.0, -2.3229081045244717, -1.9300848514495261, -2.8963884118460372, -2.847572659142112, -1.819373724102534, -2.462397997898956, -2.72166075514139, -3.121887985103681, -2.4860011910312005, -3.660770643527697, -3.249504090935526, -2.885785128783473, -2.170120274429075, -3.4954055631461936, -3.0225658278987413, -3.478854967528663, -7.0, -3.3246939138617746, -3.435808987019662, -3.6574383227029625, -2.4473131088235682, -2.0784960072323395, -2.9058326626454822, -2.7987657055815633, -3.3051094301418535, -1.7443845311071429, -3.7958105246674085, -1.977425360239766, -7.0, -2.358315640082196, -7.0, -2.20987713787046, -2.1304036975639766, -7.0, -7.0, -2.3045918918728865, -7.0, -2.10490328559909, -2.8385342705118686, -7.0, -7.0, -3.329194415088451, -7.0, -3.3416323357780544, -3.362670929725667, -3.3010299956639813, -3.225438516805496, -7.0, -3.4029488293444046, -3.420615770625765, -1.4151745499581567, -1.2603842239301006, -1.5146654180326051, -1.9867717342662448, -7.0, -1.3533961305050177, -1.3201889594210516, -1.666603061264704, -3.790988475088816, -1.5527196149502795, -2.3729120029701067, -1.1750283506819905, -1.468383357993737, -7.0, -1.6885097614621598, -1.1168864858535805, -1.1903316981702914, -1.4432861381014097, -2.5960970443542855, -1.9341827155103566, -1.679427896612119, -1.6806507621222833, -1.422175743255142, -1.6289099792812627, -2.1723323383021844, -0.9445149269299304, -2.2458210061174126, -2.3600461515081728, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.516654072656089, -7.0, -7.0, -7.0, -4.219977256744623, -3.7582051477637246, -7.0, -7.0, -7.0, -7.0, -7.0, -4.356312741150645, -3.63382180730168, -7.0, -7.0, -3.7666312408284446, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9680332443643405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.299055679117874, -7.0, -7.0, -3.4847268042986617, -7.0, -3.722633922533812, -7.0, -7.0, -7.0, -3.3479151865016914, -7.0, -3.0930447510064027, -3.5660837841679958, -2.908241238641037, -3.5513889972730204, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7066229685645444, -3.2085607829433496, -7.0, -7.0, -3.0569048513364727, -7.0, -7.0, -3.4140536750309463, -7.0, -7.0, -4.429348472923662, -7.0, -7.0, -7.0, -7.0, -2.810284228953281, -3.4712917110589387, -7.0, -7.0, -7.0, -3.2796669440484556, -3.12602311790052, -7.0, -3.43568513794163, -7.0, -3.7701610584356504, -7.0, -3.054881054862772, -7.0, -7.0, -7.0, -7.0, -3.519827993775719, -7.0, -7.0, -3.8755531851015124, -7.0, -7.0, -7.0, -3.712060142461075, -7.0, -3.5170638734826545, -7.0, -2.867299091392458, -2.8880038865883257, -7.0, -7.0, -7.0, -7.0, -3.7985643303338046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8976820617964196, -4.284137344987011, -7.0, -7.0, -7.0, -4.997897275474923, -3.0437551269686796, -3.5667909123815917, -7.0, -7.0, -7.0, -2.7610921743529877, -3.587935348636356, -7.0, -7.0, -3.5390940296563826, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3649260337899753, -3.1940284373527064, -7.0, -7.0, -7.0, -3.9279346817411795, -7.0, -7.0, -7.0, -7.0, -3.1815005884677596, -7.0, -7.0, -7.0, -3.2737077590078454, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.41161970596323, -7.0, -7.0, -3.137354111370733, -3.9262909868848634, -7.0, -7.0, -3.9484893763004485, -2.9250541203118425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9672202597829673, -7.0, -3.999348069206721, -3.1360860973840974, -3.7890163267933747, -3.5420455433005573, -7.0, -3.752586178740409, -7.0, -7.0, -7.0, -3.4008832155483626, -3.4391747398434687, -7.0, -7.0, -3.7134065321676912, -7.0, -7.0, -7.0, -3.992730203954143, -7.0, -7.0, -3.1809855807867304, -3.151437953506484, -7.0, -3.8208579894396997, -3.2576785748691846, -3.101403350555331, -7.0, -7.0, -3.5067079263501197, -3.494988973683168, -7.0, -3.52022143588196, -3.8959747323590648, -3.6033067965385137, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.159537116397021, -4.391472808302644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6245865503192305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4412236742426123, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9903590390407087, -7.0, -3.5450472044011843, -7.0, -4.241355521703736, -7.0, -7.0, -7.0, -4.029708362514895, -7.0, -3.398764385277643, -3.7845459740545224, -3.892150277901364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4126285205443754, -7.0, -7.0, -3.971832279924925, -7.0, -3.5582284218033258, -3.094994900944612, -3.8124135509583827, -3.638439335179549, -7.0, -7.0, -7.0, -7.0, -3.074450718954591, -7.0, -3.9964678902617172, -3.6111920608684343, -3.8448498008066387, -3.1487568513217923, -3.6265456590271294, -7.0, -4.297461182997396, -3.2200034261569357, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5386993795424067, -7.0, -2.871864702088195, -7.0, -7.0, -7.0, -7.0, -2.856642592422956, -7.0, -4.862363974774405, -7.0, -3.9949205954815543, -7.0, -3.0043827972297295, -4.42024875711693, -3.8355003278673188, -7.0, -7.0, -7.0, -3.158463011591568, -3.5418287667813124, -7.0, -3.475525915039281, -7.0, -7.0, -3.2271150825891253, -7.0, -7.0, -7.0, -7.0, -7.0, -3.172085226479833, -7.0, -7.0, -4.604830619429156, -4.778310462506569, -7.0, -7.0, -4.719985550860369, -3.4855972232092967, -7.0, -4.600243016285841, -4.408172101497054, -7.0, -7.0, -7.0, -4.123949591081828, -4.399466041004344, -7.0, -7.0, -7.0, -4.148890444031688, -4.065355601289965, -7.0, -7.0, -4.38948149803539, -7.0, -7.0, -7.0, -7.0, -4.365413100076178, -7.0, -7.0, -4.00238207493276, -7.0, -7.0, -7.0, -4.216429830876251, -7.0, -4.113375057094903, -7.0, -4.465828815357437, -7.0, -3.84490152901065, -7.0, -3.979247815423111, -3.5376117097515545, -3.6314437690131722, -3.4311224224012324, -3.442675706122545, -3.1934029030624176, -3.982324008676067, -2.7269715836828765, -3.1230890516896657, -3.07391682215682, -3.5864044349502087, -3.6468134968556387, -7.0, -2.905734219276379, -3.3978241813658694, -2.8627275283179747, -3.373463721632369, -3.2744065555635453, -7.0, -7.0, -3.313814511529729, -3.6024813908768083, -4.34541038552945, -2.898999270889789, -2.8042151791711407, -3.2229764498933915, -3.45425397010459, -7.0, -4.151534982202108, -3.8063156698081135, -3.0351043958312034, -7.0, -2.9071724091966717, -3.6677641635674796, -3.2570217673283017, -3.6886867242841235, -3.3332204954403872, -3.2582181084242725, -3.5048132696049445, -3.6542453192131115, -7.0, -3.169159910621571, -3.579716923486651, -7.0, -3.051818806655435, -7.0, -7.0, -2.935024167906121, -3.7120180004512506, -3.1746411926604483, -7.0, -7.0, -7.0, -7.0, -3.2259120500140233, -2.5411630537068683, -2.7440230673390325, -7.0, -3.4435758797502576, -2.275560877376543, -7.0, -2.9816676269911824, -7.0, -2.248722343662518, -7.0, -2.674305772490644, -2.186903386714175, -2.5634810853944106, -7.0, -7.0, -2.8686444383948255, -1.1684328023599524, -7.0, -3.251638220448212, -3.233884108765886, -7.0, -3.286905352972375, -7.0, -3.147573276552419, -7.0, -2.582572707393813, -7.0, -7.0, -4.605897351644974, -3.311826787232616, -4.316864588319736, -7.0, -3.2591158441850663, -2.654451585890892, -7.0, -2.9747419045009504, -7.0, -2.5491784867535645, -2.3381282463964803, -7.0, -7.0, -3.214578953570499, -2.609949951186873, -7.0, -2.7693773260761385, -2.9373506949096404, -2.7361972389182934, -2.6653464274249417, -2.737987326333431, -3.323994202181974, -2.801904793732039, -7.0, -2.636287252098513, -2.574031267727719, -7.0, -7.0, -7.0, -7.0, -3.9416108021536336, -2.2681975636609173, -2.8649850707577986, -2.5722906061514177, -3.680516809381255, -7.0, -7.0, -7.0, -3.247973266361807, -1.9846251384330458, -7.0, -2.151705398682238, -2.7426647161300997, -7.0, -7.0, -2.505088284381042, -3.0587655588941463, -2.5215739035919933, -7.0, -2.550580705005715, -2.8772561331135864, -7.0, -2.8798601462734688, -2.185409929405979, -7.0, -2.895422546039408, -7.0, -7.0, -3.1172712956557644, -4.375919543704649, -7.0, -2.826722520168992, -2.486784571399042, -3.1596298466206187, -7.0, -3.408041999536708, -1.8567264148606428, -7.0, -2.4460828966060557, -7.0, -2.9453044216515423, -7.0, -2.488633652523212, -2.4586775995617534, -7.0, -7.0, -2.821513528404773, -3.3312247810207323, -2.2088485647553826, -2.814691432747457, -7.0, -7.0, -3.1245042248342823, -7.0, -2.665893545534433, -2.875350696579289, -7.0, -3.107040290223204, -7.0, -2.759164022728366, -7.0, -1.6313840762796707, -1.6456405626343629, -1.9777236052888478, -1.3744029614591415, -1.3533961305050177, -7.0, -1.42473163539556, -1.6614653888518978, -3.730620797887283, -1.2143762781314738, -2.2774454840544975, -1.7726359953497612, -1.3545885878772408, -2.2010555635620648, -1.811284715922013, -1.5632437011403981, -1.4122628487890587, -0.9300539521206114, -2.4693310102934105, -2.2991097516428893, -1.71008600924148, -1.1927969525585338, -1.372730958925838, -1.6144357966418779, -2.582144562216779, -0.9866043276989207, -2.073610544839325, -2.8041394323353503, -7.0, -4.097812407365289, -7.0, -4.098332167847684, -3.803013034258028, -4.140162229613637, -4.130526745384164, -7.0, -7.0, -2.6793469026880157, -7.0, -7.0, -7.0, -3.744574596327337, -3.607684747886464, -3.524396122103842, -3.8144473785224875, -7.0, -3.6252781451453204, -7.0, -3.4884994390363193, -3.9953719060281623, -7.0, -3.9221283467963626, -2.887396965867297, -4.122215878272827, -4.108362034955172, -7.0, -3.67391132703678, -3.5268882610813685, -3.809694358716924, -2.6653770298617583, -3.8211203237768236, -7.0, -7.0, -7.0, -3.8476960207341655, -4.106020819140269, -7.0, -7.0, -4.157184682201611, -7.0, -3.296457344130786, -4.103872108403055, -7.0, -3.454112800025813, -7.0, -2.800161697509443, -7.0, -7.0, -7.0, -3.28190951735707, -7.0, -2.3663547276041825, -2.940721513523347, -2.783427117917317, -2.6925849445879813, -7.0, -7.0, -3.6942541120252788, -7.0, -3.6449307079135873, -7.0, -7.0, -7.0, -2.4390555435452326, -2.276592468177811, -7.0, -7.0, -3.2609950704669153, -7.0, -3.28807525427587, -3.213623993416087, -7.0, -7.0, -3.618783009440332, -7.0, -3.5545800070874893, -7.0, -7.0, -2.4972418495113913, -3.548235821497576, -7.0, -7.0, -3.092106304605236, -7.0, -3.034828915655837, -7.0, -3.3648010569597884, -3.837998551821702, -2.932882805129326, -3.7141061271543476, -2.9719712763997563, -7.0, -7.0, -3.8672022338494396, -4.141951195862753, -3.6838572054003462, -3.298361762129775, -7.0, -3.418002818524436, -7.0, -7.0, -7.0, -2.8998002437923684, -7.0, -3.4612583528618397, -4.132451812729004, -2.957341191541751, -2.2370823187516176, -3.636955706104427, -4.106700732362354, -7.0, -3.4320066872695985, -2.90614341663761, -7.0, -7.0, -3.852479993636856, -3.715474072849549, -3.6118029390588564, -7.0, -3.4766223338421334, -3.246650061258412, -7.0, -3.4334955282268766, -7.0, -3.5124018465749907, -3.427713259052271, -3.695043658821294, -7.0, -7.0, -7.0, -2.129824800037075, -3.3321786712443293, -7.0, -7.0, -3.4349372103306783, -7.0, -7.0, -7.0, -4.101918833680424, -7.0, -2.7431271938070174, -2.1419552372400017, -3.8185557792978027, -4.22816928953985, -7.0, -3.5150344563229545, -7.0, -7.0, -3.8279827974620537, -3.369976134872427, -2.994178178434242, -7.0, -4.107209969647869, -4.117569563463827, -2.4053379610598817, -7.0, -4.096075366085106, -7.0, -4.132707844855448, -7.0, -3.530999651425947, -3.837556874989602, -3.2601310397236345, -2.928666900449495, -3.66661156841903, -2.893695198415863, -3.5369054869618646, -3.510243312047968, -2.9047450178455057, -3.4102034170894533, -7.0, -7.0, -7.0, -3.8067902715840667, -4.105714510570921, -7.0, -3.2689607038867696, -7.0, -3.3470092300017322, -7.0, -3.5397032389478253, -2.5259755974116596, -7.0, -3.322839272686321, -3.724876364863443, -4.132931749214915, -7.0, -7.0, -4.143951116423963, -7.0, -3.291305408119733, -7.0, -4.11143055176598, -3.6206044653897242, -7.0, -4.021458064854097, -3.448551739201578, -4.0550851346254175, -7.0, -2.606381365110605, -7.0, -3.045591884218734, -3.8125457211365865, -3.3585376152886144, -4.107549129744687, -4.112370365525832, -3.4672627029211815, -3.553306415318742, -7.0, -3.3827372657613304, -2.3334094862099475, -2.701976775583116, -7.0, -4.0971878725708955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7483172620858336, -3.5020718912066613, -3.3668472801536247, -3.778387251620757, -7.0, -7.0, -4.113140836867081, -4.127202017590354, -4.0978817447138685, -7.0, -4.152563514256539, -4.138933940256924, -3.4388270387221676, -7.0, -3.7945577512547617, -7.0, -7.0, -7.0, -7.0, -3.8394780473741985, -2.6020556133373285, -7.0, -7.0, -7.0, -7.0, -3.816440167956139, -7.0, -7.0, -3.640481436970422, -3.750354088762708, -3.84326393153455, -4.258254053507148, -3.0650893162830104, -4.141606530118251, -7.0, -7.0, -2.247772101653081, -3.4507724103773856, -3.084895978565494, -7.0, -3.656344656846971, -7.0, -7.0, -7.0, -3.0842783057223655, -7.0, -3.121723945637367, -3.1227450294577785, -3.977266212427293, -3.657756790475467, -7.0, -4.101643985490313, -7.0, -3.572116155664274, -3.390581878550435, -7.0, -3.8057386695128246, -7.0, -4.105714510570921, -3.6615918551563493, -7.0, -3.0741152033076804, -2.7799994503958123, -2.89707700320942, -3.692935002531138, -3.3573630306151427, -3.096409181545141, -2.8348371039433498, -3.625826713285711, -3.4172501991365754, -7.0, -7.0, -2.9002851785700106, -3.445635334378726, -2.8044492222635324, -3.069098604983803, -3.9584444238670944, -3.6688826790912064, -3.041025918107178, -3.458214677865592, -3.402811300216939, -2.841381819328237, -7.0, -7.0, -7.0, -3.647162832668712, -2.97847590970199, -7.0, -3.5129844039304507, -3.466274321789292, -7.0, -3.247697143973421, -7.0, -3.117628173221579, -7.0, -3.823963024361914, -2.6060318539477323, -3.8159428271964737, -3.623156217322164, -3.8627394429551383, -3.173234179107539, -7.0, -2.5030496272043883, -3.031946790297499, -3.2555137128195333, -7.0, -7.0, -3.803013034258028, -2.7265304858618973, -3.0027178820160247, -3.636538042936402, -3.452154585714663, -3.798167059715939, -7.0, -3.083233790058822, -3.80539889912943, -4.115510662384999, -7.0, -3.5177499628542592, -4.1085988459735665, -2.4694836796325514, -7.0, -4.097673699449098, -3.4099246739401154, -3.5300349535029074, -4.186122525982875, -4.21133416373255, -3.6575611879403125, -2.724593738503572, -4.292433298244021, -3.5033139228158845, -3.2448953336918613, -3.6340538534220705, -4.2046896204203605, -4.507828896045528, -3.7295494884361307, -3.81685321027451, -3.037045218591266, -4.523694452381668, -3.357128221306194, -2.9630655210967376, -3.8808326398666764, -4.035789833127757, -7.0, -3.684426983291642, -3.6440022469547033, -3.6634841951143935, -3.916980047320382, -4.524266268766978, -3.5839314291637243, -4.136546180350109, -7.0, -3.3225537065176844, -3.644175898105283, -3.2433663825535968, -3.0568128857204915, -3.362026703997158, -7.0, -3.3035919995390772, -3.5135948904405634, -3.703259127330976, -3.2059363836944823, -3.220026323099231, -3.3433101031623416, -2.6998895859055763, -2.52194468698677, -2.7498466966808266, -3.5204049202902374, -3.1609901905696485, -3.200759326791928, -3.0823459420467962, -2.462138341981881, -2.4218347504106905, -2.209448542593025, -2.759541943983747, -2.2627366580503083, -4.1355778533449294, -2.37726626057981, -3.0947039943211667, -4.101781431327967, -3.784617292632875, -2.421812577729229, -3.5233562066547925, -2.2029266830692276, -2.44224154929421, -2.9249826236060295, -3.6789959046615417, -3.2606164705566645, -2.5930541202839628, -2.994215598949566, -2.120914451235308, -7.0, -3.429533699751271, -2.734963395399042, -1.8413594704548548, -7.0, -2.4868209570763073, -2.989371940260124, -2.0227566114894464, -3.6036314622515433, -2.6065042033187225, -3.2238026211274917, -2.861744637352507, -2.939946918317287, -4.117834518543748, -2.347213763892428, -2.086321041875386, -7.0, -2.7690970145159275, -4.109814695694399, -2.7866968316757634, -1.9611385794778147, -3.3259122856009586, -3.4037380503638555, -7.0, -7.0, -3.799891684656865, -2.9798264849916336, -2.2148332553701793, -2.609990566026695, -2.1610780537551473, -3.404902104067037, -3.0301324538917136, -1.8302041241340057, -3.3154305138375006, -2.8042943549217694, -3.2594232126040716, -1.9489370135764186, -7.0, -1.6582085612684359, -1.9056857651335304, -2.9375513237160584, -3.8509830043868534, -2.3932998649986676, -2.2650972418515827, -1.2538560276860629, -4.122838194089266, -7.0, -2.62076532707056, -3.812779707008964, -3.11723814213982, -3.2962576521896327, -2.6415024392919446, -4.095587746918743, -2.158204767567675, -4.099956734241182, -3.8019864946643342, -2.9952469568942646, -2.025559020614836, -2.5964187650127157, -2.562852432234841, -2.965701346206212, -2.1999336736522723, -3.42298357920928, -2.668007141833563, -7.0, -2.754157142891773, -2.1183798879274023, -7.0, -3.626271915253866, -2.88036222087494, -2.9031857766806537, -3.624436805027557, -2.9352048674265814, -3.1845652557783897, -2.948999454026953, -3.114610984232173, -2.7272283421926953, -2.7019493236739613, -2.4953866359281345, -7.0, -2.4638929889859074, -2.5811528919662887, -2.892032732972888, -2.909522600115815, -3.8111056070179306, -7.0, -2.3510624376615725, -2.8494194137968996, -1.9795876955750071, -2.3643164317609604, -2.972066640403255, -3.6582976503081897, -4.1144108023978365, -2.918326697955654, -2.832340809556507, -1.9667343903374412, -3.5066403055665023, -2.547805461698299, -2.2778717360486387, -3.830396176483469, -7.0, -2.227093428556467, -2.293178336476699, -2.4136782342419387, -3.311541958401195, -2.020462813267919, -2.696065013692612, -2.649833933096992, -2.826787238816292, -1.8894676369974646, -3.2664668954402414, -2.6111437334348, -3.3483373203167313, -4.099335277685958, -4.0965972083578945, -2.264554092853232, -4.173856138986269, -3.0784568180532927, -2.536793259815371, -2.158804092216579, -3.0042599416470424, -2.529344787529569, -0.25487660158808295, -2.7569769267273, -2.3546402645539692, -3.8120104224238394, -2.9093672192323017, -7.0, -2.3550682063488506, -2.2988267818265906, -4.227809604075215, -4.097569639431371, -2.7416557497979346, -3.4254363954090103, -1.6283827667413842, -3.003957379757683, -3.8078055322706246, -3.398495550138137, -3.7962620284279147, -4.101403350555331, -4.099507993727965, -4.103256233355051, -3.419082035021574, -3.5358002908248976, -3.3022071980619376, -3.3323711222176793, -3.6371226589692447, -2.0128023766022927, -2.051875744066477, -2.1777377796253714, -2.105612359686785, -1.3201889594210516, -1.42473163539556, -7.0, -1.6561465161471933, -3.0722236300668953, -1.7269067066451238, -3.0969447551769402, -1.559752605194504, -1.3636994158662474, -3.31722734917642, -0.17667281526607695, -1.807617016832907, -1.7952120167866616, -1.226212174618504, -2.769111350065843, -2.167257037006753, -2.1075596150108513, -1.990387803953575, -0.8312446358989443, -2.371102729959275, -2.2749006866771184, -1.4670676927742645, -2.527894170739935, -3.1406127806443553, -7.0, -7.0, -7.0, -3.7402837196818792, -7.0, -3.051602668541331, -3.8105013477665297, -7.0, -7.0, -3.510292623460062, -7.0, -7.0, -7.0, -7.0, -3.3287260851987845, -7.0, -7.0, -7.0, -7.0, -7.0, -3.030292004582297, -3.8043439184798657, -7.0, -3.9857407410500745, -3.5862875532129364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.89463723318385, -7.0, -3.747411807886423, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9807243231871605, -7.0, -7.0, -7.0, -3.8010605298478555, -2.742077896487582, -7.0, -7.0, -7.0, -3.803934849863842, -7.0, -3.17068649287322, -3.5921212174658845, -3.1154773741864688, -3.5742628297070267, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7637772854038287, -3.4425712173591396, -7.0, -7.0, -3.0329064302537683, -7.0, -4.018908444316327, -3.9698816437465, -7.0, -7.0, -3.8626522704255013, -7.0, -7.0, -7.0, -7.0, -3.2535456858028002, -3.5500448095649055, -7.0, -7.0, -7.0, -3.7812525942484565, -3.610180897473572, -7.0, -7.0, -7.0, -3.589664195567082, -3.62797998982998, -3.4912496033750355, -7.0, -7.0, -3.8859828113549733, -3.8340390181594666, -7.0, -3.948119424380536, -7.0, -3.981274832706589, -7.0, -7.0, -7.0, -3.3813257060905904, -7.0, -3.569724949226159, -3.8145139523682383, -3.1902382914634244, -3.0626421420676335, -7.0, -7.0, -7.0, -7.0, -3.3873601604019097, -3.7905666251460763, -7.0, -7.0, -3.931610406362962, -3.668618844816744, -7.0, -4.299790489253733, -3.645057162575253, -7.0, -4.077840102734994, -7.0, -4.061284894874462, -7.0, -7.0, -7.0, -7.0, -3.7805333253164046, -2.5500360674635556, -3.9036867317365025, -7.0, -7.0, -2.7793815471891445, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4975930308120327, -2.714329759745233, -4.28564730890073, -3.391949041795651, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5924358498630324, -7.0, -7.0, -7.0, -3.755286690608231, -7.0, -7.0, -7.0, -7.0, -7.0, -3.816174990428802, -3.5261453526347117, -7.0, -3.8701111553644005, -7.0, -3.622352201294506, -3.8283376000590046, -3.771954748963949, -3.4511073667886003, -3.7652213663049805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.127493544756782, -7.0, -3.5369009816688104, -7.0, -4.012457578200774, -3.3849887735590265, -7.0, -3.5137501500818233, -3.9486085498764365, -3.21305266686185, -7.0, -3.823213313282668, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8457799671118895, -7.0, -7.0, -2.1692737957643833, -7.0, -2.6496998632008384, -3.774443968924965, -2.743313739231126, -3.459844642388208, -7.0, -3.546542663478131, -7.0, -7.0, -7.0, -3.1875050533647573, -2.2413443286912247, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8192806469724814, -7.0, -3.365581572755049, -3.558586083017636, -7.0, -7.0, -7.0, -3.8035253955765325, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8312296938670634, -2.4711737520274553, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.214667269683036, -7.0, -7.0, -4.063520999689991, -7.0, -7.0, -7.0, -2.755197064693086, -3.850217241798389, -2.920567344816164, -7.0, -3.1599371992043745, -7.0, -7.0, -7.0, -3.8705502062680823, -7.0, -3.673941998634088, -3.5324995860946626, -7.0, -7.0, -7.0, -7.0, -7.0, -3.596377143997599, -3.8873922189718466, -7.0, -7.0, -7.0, -7.0, -3.5265331155907425, -7.0, -3.556965499896943, -4.130687493982032, -3.3289908554494287, -3.2871856695650172, -3.219060332448861, -3.308474709179702, -3.807467375684278, -7.0, -3.483052121938875, -3.7456992266025058, -7.0, -7.0, -7.0, -3.5456781497920256, -7.0, -7.0, -7.0, -3.320405953970451, -3.8649261915390056, -3.6383164263566528, -3.492725476491596, -7.0, -7.0, -7.0, -4.029992175377847, -3.962274604623315, -3.7652213663049805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.485674115137571, -7.0, -3.932033835682918, -4.167538857059484, -3.5475481338589487, -7.0, -3.447778009294621, -3.95981225658644, -7.0, -7.0, -7.0, -7.0, -3.9275756546911103, -4.045518562884493, -7.0, -3.8529676910288186, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.362293937964231, -7.0, -7.0, -3.102600295396306, -3.0583378875755454, -2.9929767082011125, -3.06126394230025, -4.2758025858486794, -2.648664886024623, -2.5654310959658013, -4.041056964240598, -3.151638616799286, -3.014310480963307, -2.5893667208240703, -3.144781706171568, -3.4572686093294647, -3.4625103009160636, -2.3784689561522443, -2.5318437171325017, -3.355393211588941, -2.4520429504065073, -3.7204074008031087, -3.0640664031375557, -7.0, -3.625729137422857, -3.7745717052805707, -2.635427892595569, -2.574646851788124, -7.0, -3.424511976727283, -3.2667233307073897, -3.8591983615338776, -2.8444028825329357, -3.287667391274135, -3.7663550034322113, -3.938903149306872, -3.468495024507069, -3.062769949815128, -4.233554492714523, -7.0, -3.921205104140926, -2.7038500115766535, -3.6224024370611825, -7.0, -4.413400361189813, -3.4406336268506807, -3.802739527529692, -3.979457318097848, -2.7467169895057046, -3.8611160441613954, -3.6349783452242814, -3.0246322452029726, -2.794648886540733, -2.6667853209646175, -3.494181534527859, -3.3431541139519694, -3.8209891764160497, -3.468588985513581, -7.0, -7.0, -3.7493497605974766, -3.4563508477418177, -3.507271023804603, -3.4915017662373264, -3.053462604925455, -3.4415853127846754, -3.970235265877339, -7.0, -3.995152376891454, -3.7641761323903307, -3.1270911037675013, -7.0, -4.45958345491435, -3.7518177877368792, -2.840187066673251, -7.0, -2.024778530093382, -3.2752029198527173, -2.8337180367331363, -7.0, -3.5517345546707815, -4.056676215120661, -3.124943906749929, -3.7077404542737713, -7.0, -3.4233114228739034, -3.146296793808566, -7.0, -2.6251955317528344, -7.0, -3.9502674680135885, -2.748599530903582, -3.916471495447239, -7.0, -7.0, -7.0, -2.9673919516143807, -3.405218256006282, -2.4002966758658393, -3.561220678933944, -2.891022534799987, -3.452246574520437, -3.5386993795424067, -2.4153947885491625, -2.829128264854539, -3.1468099627758708, -7.0, -2.7011154878043895, -3.7444494574467986, -2.339545308873615, -2.5776832455012926, -3.7764832558336816, -3.2519422417990267, -3.4191765753173273, -2.673512399026766, -1.3974531313991803, -1.5789769709225503, -2.5662901488579815, -3.0406418915445363, -2.4935681057700907, -2.8794542970180665, -3.8335932939984563, -3.922050402167174, -7.0, -2.650935735392299, -2.595811042050961, -7.0, -2.6923180442592787, -2.9493630832543674, -2.1953102756059963, -7.0, -3.413243866728462, -2.9038557135762706, -2.586727921309507, -3.296281174399547, -3.732956369575625, -3.3441301768262788, -2.5233064424095346, -3.740993931584886, -3.7520484478194387, -3.5691982833478133, -3.819083075743703, -1.8908252650965474, -3.4701899062855524, -2.5038555079669074, -3.3235958235627225, -3.4766867429456445, -3.837714668284911, -3.1250374286850575, -1.5672944772204624, -3.7423322823571485, -3.024844694749236, -3.0725124857356105, -3.846955325019824, -2.720893995028669, -1.8399850957844133, -3.450864692379766, -2.8535292190187196, -3.3760900797836544, -2.2972787559859684, -2.8961954104542107, -2.0805177662808054, -7.0, -3.4749443354653877, -3.60404595999381, -3.7715139899796664, -1.819094122470168, -2.7211358372887746, -2.5513889972730204, -3.0543448887676306, -2.3941821837763624, -7.0, -3.049295568332722, -2.945331786541246, -2.1226013182643153, -3.8640955734242475, -1.5351210126789396, -2.8560144545033554, -3.541745608431244, -7.0, -2.514298659173731, -1.9430504992721556, -2.134692413648349, -2.65479514613498, -7.0, -3.258876629372131, -3.2691236170005356, -0.9681884753070655, -7.0, -2.2991327791835294, -3.0203388819007317, -3.3752367289481646, -2.6755100930664812, -1.9857695200222167, -3.135995383131673, -2.936625429372116, -3.170774935911056, -3.1322596895310446, -3.1340176456759834, -3.2741578492636796, -2.1263738165269244, -3.089949244814966, -7.0, -3.531159465404532, -3.798167059715939, -2.337400529194833, -3.3079949403022577, -3.4628470358316736, -7.0, -7.0, -3.7472563974421442, -7.0, -2.8472641017707647, -2.7522405710173974, -2.425012231875444, -7.0, -3.2909245593827543, -3.0764948050097205, -2.0736013686667882, -1.8654808495638453, -1.9753953330981715, -1.7262624417714705, -1.666603061264704, -1.6614653888518978, -1.6561465161471933, -7.0, -2.654451585890892, -2.360418623725794, -7.0, -2.1486444762209174, -2.4066142226269402, -3.034708651341069, -1.944190840255279, -1.8107788654424986, -1.8032195366042487, -1.4369712595163502, -0.2285455990501929, -2.1316769784790424, -2.1607369894368547, -2.2271852867246182, -2.130333768495006, -2.5352941200427703, -0.4126325672878087, -1.5228325412820065, -3.490169250834894, -3.131056990114102, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.13552752600499, -7.0, -7.0, -7.0, -7.0, -4.001300933020418, -7.0, -7.0, -7.0, -7.0, -7.0, -3.930728348759478, -3.281222808682314, -7.0, -3.924486043733915, -3.790804110222411, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3913719860159928, -7.0, -7.0, -7.0, -7.0, -3.460070543294161, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5846092940960688, -7.0, -7.0, -7.0, -7.0, -3.9109444057499787, -7.0, -7.0, -7.0, -7.0, -3.741939077729199, -3.9738920729868967, -7.0, -7.0, -7.0, -7.0, -7.0, -3.814713612695977, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2704459080179626, -2.7326663010819305, -7.0, -7.0, -7.0, -7.0, -3.66133934000604, -3.6050355490912556, -7.0, -7.0, -3.8151633044075393, -7.0, -3.4794313371977363, -7.0, -7.0, -4.052655473039527, -7.0, -7.0, -7.0, -3.815710539788963, -7.0, -7.0, -7.0, -7.0, -7.0, -4.035729838034267, -3.8585973449946924, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6834973176798114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.441757958508164, -7.0, -7.0, -3.7052648623174043, -7.0, -2.755890404784822, -7.0, -7.0, -7.0, -7.0, -2.6489018631808574, -7.0, -3.229286150986481, -4.305186506919846, -7.0, -7.0, -7.0, -3.6120841852279186, -7.0, -7.0, -7.0, -7.0, -7.0, -4.073754998123192, -7.0, -7.0, -7.0, -2.7237775027823625, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6828968412870142, -7.0, -4.256019813380122, -3.9342964068194055, -7.0, -4.054498146636677, -7.0, -7.0, -7.0, -4.180240600955741, -7.0, -7.0, -7.0, -7.0, -3.741185377248953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.736077637003946, -7.0, -7.0, -7.0, -7.0, -3.7373516958037145, -7.0, -3.980881682840616, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4041111915939406, -7.0, -7.0, -3.9134031970453065, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9237101943965627, -7.0, -7.0, -7.0, -4.410709764916316, -7.0, -3.5919267717577323, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.968062460076449, -3.77757180469141, -7.0, -7.0, -3.381197154693257, -3.4347684420491507, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8568043870335558, -3.1931262703866703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.006523088680669, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6744937172963503, -7.0, -7.0, -3.0293330393847953, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6830470382388496, -3.3099060475906565, -7.0, -7.0, -7.0, -3.1779531201340987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.08771044886063, -7.0, -7.0, -7.0, -3.681219397305083, -4.063220735581995, -7.0, -3.1071534172053243, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.215373152783422, -3.7547304690237535, -3.3737699294162615, -7.0, -4.600354596150628, -7.0, -7.0, -7.0, -7.0, -3.975063996095236, -7.0, -7.0, -7.0, -3.8009231818132183, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.924790257954725, -7.0, -3.9042394603397237, -7.0, -3.997779430865604, -2.9291814974678476, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2933183494610736, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4345689040341987, -7.0, -4.551510990105817, -7.0, -7.0, -3.5205137645101057, -4.798567783267658, -4.350015298234692, -7.0, -7.0, -4.437004965477303, -3.7517024117392372, -3.78519759407694, -3.9011312513553715, -7.0, -7.0, -3.775919768093692, -7.0, -4.536642600014271, -3.9228603433350857, -7.0, -3.803550997782215, -3.900078993301414, -3.6838272261450347, -4.083932401638626, -7.0, -4.353132539312616, -7.0, -3.9751329846551604, -3.7394404803282644, -4.400106070428546, -7.0, -3.4351159893241427, -7.0, -4.022538340036338, -3.656409670222731, -4.232928378875812, -3.917155272048159, -3.5077659463446653, -7.0, -3.5008125896329667, -4.0520009801013, -4.506450911340324, -3.501082095186496, -4.35078086534774, -3.214667269683036, -4.004605077491578, -4.125517410220768, -3.756864224060549, -7.0, -3.6996990068748015, -7.0, -4.290541610857977, -2.9274986816932005, -2.931902616741086, -2.44414242309212, -3.7494680374713956, -3.7587941814657166, -2.2767079331012847, -4.492830205678688, -7.0, -7.0, -3.998215732370958, -2.944546347024838, -3.9231403560252005, -3.692935002531138, -3.7524496752187972, -4.15072156097165, -3.745669552326026, -7.0, -7.0, -7.0, -3.3495180415860877, -2.3125644482543892, -3.996658141016183, -7.0, -2.452002523936502, -7.0, -3.3135157072120407, -3.1076338783998296, -3.2768198514902487, -3.588103560302743, -4.303433666006204, -7.0, -3.6628522332647964, -7.0, -7.0, -4.961701040699168, -3.1036743098329627, -7.0, -3.3290753634861527, -3.6591552809406296, -3.883377489748339, -3.532126927376701, -3.4673860925523505, -7.0, -7.0, -7.0, -2.72926605924713, -3.0457140589408676, -3.3444446740811564, -7.0, -3.801700913633025, -3.341731207601339, -3.7515100502700416, -3.179568686824779, -3.312811826212088, -7.0, -7.0, -7.0, -3.6313422864839326, -2.2446078253972623, -3.5936736569452488, -3.3712526291249394, -2.621176281775035, -3.5342292372487547, -2.810083096186659, -2.7162120888836645, -3.0923696996291206, -3.6675463395115164, -3.6868149545073168, -2.714795291445831, -3.2039389889121495, -7.0, -3.850278552518037, -7.0, -3.1045181489741487, -3.329499575762843, -3.6398847419163043, -2.6250601389959516, -3.602043026368414, -3.0724838474728275, -7.0, -3.0340934464167257, -4.09282587292398, -3.39208111979816, -7.0, -7.0, -7.0, -3.378882199277559, -3.6268534146667255, -3.641176546613114, -3.311188557387388, -7.0, -2.8888939620872947, -3.3647385550553985, -2.958802703399502, -7.0, -3.3730040047672736, -3.748885440009517, -7.0, -2.181639454224491, -7.0, -3.8580557180503643, -7.0, -3.060622304309956, -3.7714649891354415, -2.8867726430544383, -3.0385208151616903, -2.6650178254124723, -3.165615232699998, -3.385738853559706, -3.3434085938038574, -3.281714970027296, -7.0, -3.672005445022952, -3.333568174923988, -7.0, -1.9716615699299038, -2.9568404901592333, -7.0, -4.0033743540197495, -3.115194321434587, -7.0, -3.6965747917964733, -4.365899620723788, -3.8964711004792774, -7.0, -3.2996162399984135, -3.344981413927258, -3.6614813978436156, -7.0, -3.5593679094633317, -2.9652539784237364, -2.872239542709607, -3.705521613422667, -7.0, -7.0, -3.0629251643976625, -2.613973886490711, -3.6886867242841235, -3.8174992618677583, -3.533251952091484, -3.7670816213633223, -3.0295508737036134, -3.209526184524548, -2.714067678703001, -7.0, -3.367169488534681, -7.0, -7.0, -7.0, -3.922465945298413, -3.456264787183392, -7.0, -7.0, -7.0, -2.910853000989875, -7.0, -3.656577291396114, -7.0, -7.0, -7.0, -3.629409599102719, -3.0377252216588575, -4.003029470553618, -2.7790350244932567, -7.0, -7.0, -3.671913012441587, -3.642167634404945, -7.0, -7.0, -3.3649260337899753, -3.790988475088816, -3.730620797887283, -3.0722236300668953, -2.654451585890892, -7.0, -7.0, -7.0, -3.5532153014021377, -7.0, -3.6181527333785195, -3.166269727827661, -7.0, -7.0, -3.0718820073061255, -2.765058638089037, -3.019324037153691, -3.6337713460825554, -7.0, -3.2997251539756367, -7.0, -2.7684795320928424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0913747147621224, -7.0, -7.0, -7.0, -7.0, -3.917899189424106, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8667204327514666, -7.0, -7.0, -3.6901074394563307, -4.0669929309681, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.566413920620156, -7.0, -7.0, -7.0, -7.0, -3.3552599055273786, -7.0, -3.52022143588196, -7.0, -7.0, -7.0, -4.239061615868581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.529419659434229, -3.181986424480151, -3.918344928962275, -3.510545010206612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2961164921697144, -3.5514042482512638, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6582022533870147, -7.0, -7.0, -5.126274307886984, -7.0, -7.0, -7.0, -7.0, -3.4138583422700264, -3.3656751404559175, -7.0, -7.0, -3.4824447919182653, -7.0, -7.0, -7.0, -7.0, -7.0, -3.712397131406715, -7.0, -3.1848536020225837, -7.0, -7.0, -7.0, -3.3109056293761414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6842617229289067, -7.0, -7.0, -7.0, -7.0, -3.4795573161627673, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1808424146466825, -3.580149164384105, -7.0, -7.0, -7.0, -4.9950996733824, -3.197280558125619, -7.0, -7.0, -7.0, -7.0, -3.4019387667543897, -7.0, -7.0, -7.0, -3.895606686165933, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4372747974101237, -3.749736315569061, -7.0, -7.0, -7.0, -3.8938726787950815, -7.0, -7.0, -7.0, -7.0, -3.541641638096807, -7.0, -7.0, -7.0, -3.641796241478543, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2880255353883627, -7.0, -7.0, -3.3236645356081, -3.590953235187986, -7.0, -7.0, -3.934144811792477, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.286299250942829, -7.0, -7.0, -3.6295019187038324, -7.0, -3.399327532158679, -3.613418945034573, -2.94423584379348, -3.4176377396522297, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6624272644527265, -7.0, -7.0, -7.0, -3.606667933568316, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4579008115869776, -3.86840930331496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6239725120169965, -7.0, -3.6626319309756905, -4.671779370567489, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.378216149749878, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.906335041805091, -7.0, -3.4250250914043128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5422027824340283, -7.0, -4.060118394661378, -7.0, -7.0, -7.0, -7.0, -2.9916690073799486, -7.0, -7.0, -3.972480549876476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.166726055580052, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.210853365314893, -7.0, -7.0, -4.354537397297181, -3.605305046141109, -7.0, -4.2915020491896, -7.0, -7.0, -3.313128713845194, -7.0, -7.0, -3.059689611271879, -7.0, -7.0, -7.0, -7.0, -4.5275164797878, -3.8846254632562345, -7.0, -7.0, -7.0, -3.7735670489260587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.858537197569639, -7.0, -4.495213518763391, -7.0, -3.8091555317471806, -4.718651133527875, -3.792951708250132, -7.0, -7.0, -7.0, -3.566555330883055, -3.801197834459149, -3.740993931584886, -3.3710678622717363, -7.0, -7.0, -3.4372747974101237, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3019789772725154, -7.0, -7.0, -4.597881585468683, -4.472617511351939, -7.0, -3.648164778574001, -7.0, -4.3774519630245745, -3.891425942847994, -7.0, -4.103478733439318, -3.9875322027298394, -7.0, -7.0, -4.419765806330483, -4.6977392085535925, -3.629522858845675, -7.0, -4.198620436084584, -3.6683496721951165, -7.0, -4.3172482684453195, -7.0, -5.388380098226059, -4.279461609257673, -4.5349774634615505, -7.0, -7.0, -4.359389580131493, -7.0, -7.0, -3.9307962629833004, -3.8642736968043794, -7.0, -4.328155261969947, -4.199233930536901, -7.0, -7.0, -7.0, -4.45622934552542, -4.191059581827398, -4.139333252881835, -7.0, -4.1952721924613625, -3.890767421900135, -3.8988896559265864, -7.0, -4.333346498424387, -7.0, -3.804578580195262, -3.2242308245491174, -7.0, -3.842827579929976, -3.9223384913862973, -3.728272597895017, -7.0, -3.9637248815548944, -7.0, -7.0, -7.0, -3.4739429223184204, -3.6877964113812944, -7.0, -3.28464301844565, -3.908397530346767, -4.706615382568476, -7.0, -3.708505880955237, -7.0, -3.57621173370578, -7.0, -4.502662640381697, -3.6079194520225313, -3.3782940524345144, -7.0, -7.0, -3.0550755705285217, -3.48313065555793, -7.0, -4.220265033587232, -7.0, -3.6689064071901316, -4.18957452553725, -7.0, -3.4973246408079492, -3.5766628241474274, -7.0, -3.4338771116793816, -7.0, -3.617000341120899, -2.9563498823917462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5725039734840767, -2.921166050637739, -3.110589710299249, -7.0, -3.028571252692538, -2.682459014749771, -2.21649578796984, -3.049024097915049, -7.0, -2.4605971888976015, -7.0, -3.057735242568242, -2.556503516499598, -1.681618065583093, -7.0, -3.2303531105571546, -2.7628660424620133, -1.5409548089261327, -3.1610683854711747, -3.059184617631371, -2.8384992763954235, -7.0, -2.8112397727532894, -7.0, -3.076154791417437, -7.0, -2.67735804958144, -7.0, -7.0, -4.121800505098974, -3.1653455932368795, -3.6754187475570377, -2.8273692730538253, -3.17507672117621, -2.645422269349092, -7.0, -3.497067936398505, -7.0, -2.7895807121644256, -2.4403519370473017, -7.0, -7.0, -3.1204093945560682, -3.258876629372131, -3.400537989391946, -2.750893920382125, -2.814691432747457, -2.887617300335736, -7.0, -3.021602716028242, -3.296840627340024, -3.723838623672183, -7.0, -3.09143245732978, -3.0671948870277648, -7.0, -4.153021743626138, -7.0, -7.0, -3.2092468487533736, -2.5925468421919335, -3.10407720615511, -2.8904210188009145, -7.0, -2.9640237928400337, -7.0, -7.0, -3.053462604925455, -2.5831278976760292, -3.0128372247051725, -2.898542359241223, -3.3403780071480957, -3.2345172835126865, -7.0, -3.2065560440990297, -3.4020994719811863, -2.9411137270371017, -3.102605194126567, -3.1960060319521792, -3.018977737412909, -7.0, -2.9132839017604186, -2.266056211278075, -3.080355870349396, -2.6327103038329542, -7.0, -7.0, -7.0, -3.664961468665818, -7.0, -2.357934847000454, -2.403977963669355, -2.878010860757683, -7.0, -2.9911078842420706, -2.1668453699832115, -3.3807537708039, -2.699837725867246, -7.0, -3.303196057420489, -7.0, -2.886490725172482, -2.9869507878585164, -3.705607163404605, -7.0, -1.974226499472477, -7.0, -2.46166601136025, -2.819872821950546, -7.0, -7.0, -7.0, -7.0, -7.0, -2.936513742478893, -3.3398487830376373, -3.2837533833325265, -7.0, -2.734799829588847, -2.7748817658187965, -1.8553172051959428, -2.002166061756508, -2.4119562379304016, -1.482465220173021, -1.5527196149502795, -1.2143762781314738, -1.7269067066451238, -2.360418623725794, -7.0, -7.0, -1.593676912538275, -1.8421685551669627, -1.6749010593445681, -7.0, -2.1129163556418598, -1.818850727921582, -1.4561437549623364, -1.286707687770264, -2.618346991756171, -2.4409090820652177, -1.9389642436205232, -1.3380135619171512, -1.7900504736833514, -1.5935321959484976, -2.526892871450658, -1.3343519355410627, -2.6699364163086976, -2.5017437296279943, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3939260065858368, -7.0, -7.0, -4.969525404133492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4437322414015967, -7.0, -7.0, -7.0, -5.140517470457171, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.207995007816801, -7.0, -7.0, -3.7742979384992776, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5342800052050816, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.860278099752235, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530716956330775, -7.0, -4.008216801589691, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9606610072709816, -7.0, -7.0, -7.0, -3.60151678365001, -4.373169558903721, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.992743452515999, -7.0, -7.0, -7.0, -7.0, -7.0, -3.992597696102038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7062909572587635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.538385197019912, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.542410429811593, -7.0, -2.90603559031291, -2.6745549761273852, -7.0, -5.150903737388157, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.750876579084994, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4190465771041594, -7.0, -7.0, -7.0, -7.0, -3.8357539675193832, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8965813275057326, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.339113414771401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.008238108813141, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9469923407483725, -7.0, -7.0, -7.0, -7.0, -7.0, -3.061452479087193, -7.0, -3.079362164393046, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.252610340567373, -7.0, -7.0, -7.0, -3.765072201102792, -3.2161659022859928, -3.00774777800074, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.229169702539101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.875141745177931, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.674456957849724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.667462292455807, -7.0, -7.0, -7.0, -7.0, -7.0, -4.75759086081304, -3.024120637644558, -2.9714304844819157, -4.135498386458118, -7.0, -4.677807630689279, -7.0, -4.43240803142708, -7.0, -2.456366033129043, -7.0, -7.0, -7.0, -7.0, -7.0, -4.885461582484264, -7.0, -7.0, -7.0, -7.0, -4.653029106272008, -7.0, -7.0, -4.065654393514962, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.942102346729723, -4.477381753267053, -7.0, -4.443845568406682, -7.0, -7.0, -4.6047658847038875, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.765430111553846, -2.993215720474137, -4.175134758658844, -7.0, -7.0, -3.4910613864705238, -7.0, -2.383815365980431, -7.0, -3.119997780003502, -7.0, -4.193034110911296, -2.880927865267085, -1.909823369650912, -7.0, -7.0, -7.0, -1.9629660778441818, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1772478362556233, -7.0, -7.0, -3.6977087205918364, -7.0, -7.0, -7.0, -4.491400218248948, -7.0, -7.0, -7.0, -2.8061277719906874, -7.0, -2.459057254641927, -7.0, -3.119585774961784, -2.9636387304229133, -7.0, -7.0, -2.8455114569725612, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.717393087162805, -7.0, -4.186193249920351, -7.0, -3.501333178645566, -2.6932871570056554, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2607866686549762, -3.6933653747922923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.749890841271422, -7.0, -2.9642596301968487, -3.7808931086870787, -7.0, -7.0, -7.0, -3.7822063554634027, -3.2829618035343353, -3.3010299956639813, -3.821731821690044, -7.0, -7.0, -7.0, -3.2412973871099933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9258275746247424, -3.1015752462559334, -4.0482993461008, -7.0, -7.0, -3.5424394925233997, -7.0, -3.394626764272209, -7.0, -2.387686374306485, -7.0, -2.7076766077813272, -3.3347552398696707, -7.0, -7.0, -2.8698182079793284, -2.6848453616444123, -3.5444401373176926, -2.8965262174895554, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.2624510897304293, -7.0, -7.0, -7.0, -1.3716834463321412, -7.0, -2.3729120029701067, -2.2774454840544975, -3.0969447551769402, -7.0, -7.0, -1.593676912538275, -7.0, -3.015219998535312, -7.0, -2.0453229787866576, -3.49391789471334, -1.9132249784197266, -1.8018400929397844, -2.366925571380331, -3.377306251068199, -3.350829273582968, -7.0, -7.0, -2.9876662649262746, -2.0064660422492318, -3.623352681537992, -1.9375178920173466, -2.940516484932567, -2.0086001717619175, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2336372538662697, -7.0, -7.0, -7.0, -3.962984584316997, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4856149687087945, -7.0, -7.0, -2.7834867041809632, -3.736004819709059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.036275202822311, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.911766184046292, -7.0, -7.0, -7.0, -3.9735034636555957, -7.0, -7.0, -7.0, -7.0, -3.2459442801693057, -7.0, -7.0, -7.0, -3.602168551378997, -3.344883279369863, -2.9348107061271715, -2.95784663370815, -3.7281913985899466, -3.647969458362972, -7.0, -7.0, -3.735119634081872, -3.097719940343722, -7.0, -7.0, -7.0, -7.0, -2.8028421127390746, -3.3135157072120407, -3.514547752660286, -7.0, -3.414555556229215, -7.0, -7.0, -3.8428587624452937, -7.0, -7.0, -4.020016872748719, -3.506505032404872, -2.5453954864899164, -7.0, -7.0, -2.80303012271076, -3.675136504467994, -3.5363058723510337, -7.0, -2.890261292987454, -7.0, -3.762453482363547, -7.0, -7.0, -7.0, -3.3617504942690473, -7.0, -3.2730343599066476, -7.0, -7.0, -7.0, -3.649140064144219, -3.7061201097027037, -3.8134475442648212, -7.0, -7.0, -7.0, -7.0, -7.0, -2.121413924158609, -3.1983821300082944, -7.0, -7.0, -7.0, -2.8790630951351517, -7.0, -7.0, -3.5998830720736876, -7.0, -3.388585562915087, -3.1031192535457137, -7.0, -7.0, -7.0, -3.8426716337607885, -7.0, -3.098173830542939, -3.518908573691414, -7.0, -7.0, -7.0, -3.528196562395411, -3.6006462356623947, -7.0, -3.224468315012689, -7.0, -7.0, -2.8618041111314847, -3.4504800546060603, -7.0, -7.0, -3.7159699350819997, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4267714347926965, -3.4274861090957858, -4.2288621285305625, -3.875234946450165, -7.0, -3.311160272879129, -7.0, -7.0, -3.130226522048751, -7.0, -3.971971276399757, -7.0, -7.0, -7.0, -3.494502447046173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.009110806132213, -3.6403820447095683, -7.0, -3.2006179734428333, -3.538824988937904, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.042496757433736, -7.0, -3.433989724808988, -7.0, -7.0, -2.6800892113547894, -3.278410601475816, -3.0922526548953835, -3.114610984232173, -7.0, -3.0988167170489413, -7.0, -7.0, -7.0, -7.0, -3.841484609335393, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8615941446438655, -7.0, -3.6227837254272086, -7.0, -7.0, -7.0, -7.0, -3.612571954065176, -7.0, -7.0, -7.0, -3.102930835735232, -2.9488573477695916, -7.0, -7.0, -3.2310871205848226, -7.0, -7.0, -3.543322900646912, -7.0, -7.0, -2.829223340479299, -7.0, -3.510652230175532, -3.5846536420330626, -7.0, -7.0, -7.0, -3.3002693145303565, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.644832328825636, -3.273921964852061, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5602653978627146, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5468747110475065, -3.648067129448935, -7.0, -7.0, -3.088527756680114, -3.372451701409366, -3.0095453179062304, -7.0, -3.6188523459824924, -7.0, -7.0, -7.0, -4.096249383189612, -7.0, -4.0718083918331285, -7.0, -7.0, -7.0, -7.0, -7.0, -2.912859475162355, -2.838691709151223, -3.7283537820212285, -7.0, -3.529045170765769, -7.0, -7.0, -7.0, -7.0, -3.6854730197227594, -2.8999376945524498, -7.0, -7.0, -7.0, -3.8849903531831114, -3.3208107260676276, -7.0, -3.496652939250918, -7.0, -7.0, -7.0, -7.0, -2.4521231704399007, -2.9217607710071607, -7.0, -7.0, -7.0, -7.0, -4.114053839214257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5830853663476874, -7.0, -7.0, -3.3562171342197353, -7.0, -3.969637197040949, -4.131121218232961, -3.7153104543716355, -3.5674968911042226, -2.602750365351694, -3.229742771130175, -3.9355072658247128, -7.0, -7.0, -7.0, -2.637203727209186, -3.64033234004778, -3.8987251815894934, -7.0, -7.0, -7.0, -3.410524172586188, -7.0, -7.0, -3.571242850560224, -7.0, -7.0, -2.993045536208752, -7.0, -7.0, -3.2613663215042505, -4.489909284707066, -7.0, -7.0, -4.035381702958746, -3.2427401446056274, -4.008600171761918, -4.141992954947583, -3.61627646616399, -7.0, -3.343014497150768, -7.0, -3.785922728593503, -3.8629189739820413, -3.6560129752094572, -7.0, -4.2201778486187775, -3.5556636584567096, -4.127007557371327, -3.762809807339, -7.0, -4.489527836582873, -4.33128554558701, -3.786242554893265, -2.805330913142769, -7.0, -3.983707456077561, -3.9537838453708924, -7.0, -3.7138474083382946, -3.7543993062505883, -4.098617771188012, -4.374766670285203, -7.0, -7.0, -4.168968646554766, -4.00770511436478, -7.0, -3.2533380053261065, -4.163956058605712, -7.0, -3.6147742187886363, -2.791153148992849, -2.093635192114032, -3.3782767419344064, -3.174768266934489, -7.0, -3.6291310202406026, -3.250594242825535, -3.459241664878082, -3.480782802561479, -3.527657515157577, -3.8006741277327873, -7.0, -3.221530150162211, -3.1216536240371213, -7.0, -3.3453737305590887, -3.464638559095033, -3.862429556106009, -7.0, -2.997995908477958, -3.6164068895888386, -4.293668467719096, -7.0, -3.876391061819188, -7.0, -2.950069818943341, -7.0, -4.205701595473211, -7.0, -2.6367613528522122, -3.4983105537896004, -3.418908657676565, -4.171741076116891, -3.3095340131587996, -3.823213313282668, -3.5800121125294244, -3.4782778319196046, -3.4972965474240967, -3.6199537588433968, -7.0, -3.0924706854854187, -3.141814671730619, -7.0, -3.8340448037769277, -7.0, -3.816373888752362, -2.9184235414128294, -3.8728358439998014, -3.036628895362161, -7.0, -7.0, -7.0, -3.892595422828898, -2.4740936647517855, -3.6917885244026984, -2.871864702088195, -7.0, -2.2056682712187854, -2.8992908534140494, -2.6624143801161035, -7.0, -7.0, -2.5147070975462795, -3.503245771465113, -2.831643187009035, -2.268863871489262, -2.9548452777274856, -3.6798819421128623, -2.5395397244572258, -2.673665876245702, -1.3691249967503878, -3.2854447829074154, -2.704640691250642, -2.065533673461455, -7.0, -2.78993308093175, -7.0, -3.0779489985060278, -3.1835545336188615, -2.9061329346974785, -7.0, -7.0, -3.281714970027296, -2.2849563718082075, -2.711119811778399, -2.7095526127800826, -3.130414185953231, -3.0105312308878815, -3.2833012287035497, -7.0, -7.0, -3.629817196018516, -2.7071228779824272, -7.0, -3.516403148447403, -3.100973313405724, -3.1484998267052453, -3.3944516808262164, -1.538143413273622, -2.4072408977401274, -3.2962262872611605, -3.2586372827240764, -3.0521165505499983, -2.9136725954360077, -3.7852348968790297, -7.0, -3.0871422793838077, -2.9261954026148027, -3.668758541750958, -2.66291515625562, -3.5490032620257876, -7.0, -3.0669054262816697, -3.678518379040114, -2.7899679150590524, -2.3069410289151175, -2.7745169657285493, -2.395172160046634, -3.557025722386383, -3.685338597906292, -3.549371152333177, -2.8526324579115143, -3.059184617631371, -3.0778219507849, -2.503742058024168, -2.4668676203541096, -3.188225172705279, -2.6666164935374748, -2.9396248374684815, -3.831613855309099, -7.0, -3.881707926973662, -7.0, -7.0, -2.8284450587956416, -2.634282198523119, -2.8166028104026988, -2.660549282517093, -3.122652684426726, -7.0, -7.0, -2.2956186350156695, -3.4403579968152878, -3.1010593549081156, -1.8282845410046067, -3.029789470831856, -2.015918333597989, -3.1541702816056496, -1.9354861259295948, -2.954604270794606, -3.035029282202368, -3.552303109338354, -3.1681044568157537, -7.0, -2.846584502898046, -3.861653870213911, -3.1749896504073343, -7.0, -3.043853283705882, -7.0, -2.1879371259474465, -7.0, -3.5368108659915416, -3.493597449000527, -7.0, -7.0, -7.0, -3.037692040279623, -2.9522595365908204, -3.3356584522893016, -3.666705136119899, -3.2427898094786767, -2.7103591771903925, -2.4356320489516605, -2.0979382336289936, -2.148626380910713, -2.0955429381058917, -1.1750283506819905, -1.7726359953497612, -1.559752605194504, -2.1486444762209174, -3.5532153014021377, -1.8421685551669627, -3.015219998535312, -7.0, -1.8755645015498659, -3.184123354239671, -1.8695714308265334, -1.663492885987207, -1.8105990628039323, -1.6849509138339958, -2.7712607594199907, -1.9420936198597298, -2.6597804193959593, -2.0291131048924633, -1.7192391876340223, -2.214843848047698, -2.0688040746361804, -1.6840000193202802, -2.5382766083964956, -2.6373467519040084, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1997551772534747, -7.0, -7.0, -3.561421238043235, -7.0, -7.0, -7.0, -4.20013885385738, -7.0, -3.165541076722373, -7.0, -7.0, -7.0, -7.0, -4.341909120179768, -7.0, -7.0, -7.0, -4.210317356400843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.264758811598086, -3.1231980750319988, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.442880953337685, -7.0, -7.0, -7.0, -7.0, -3.1794560366764517, -7.0, -7.0, -7.0, -3.172310968521954, -7.0, -3.3904747828500743, -2.865548114255671, -3.4356320489516605, -3.5036545192429593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2847690133490195, -3.498662748618196, -7.0, -7.0, -3.428620672671939, -7.0, -3.745465168670727, -7.0, -7.0, -7.0, -4.426946963787001, -7.0, -3.385069776331935, -7.0, -7.0, -3.0396973239347242, -7.0, -7.0, -7.0, -3.166282067316571, -7.0, -3.5149460053080044, -7.0, -3.2979792441593623, -7.0, -3.888284185954415, -7.0, -3.725176301419137, -7.0, -7.0, -7.0, -7.0, -7.0, -3.601408060534684, -7.0, -4.154667377622576, -7.0, -7.0, -7.0, -3.378443326865433, -7.0, -3.406199423663313, -7.0, -3.6462076122066853, -3.0378790294829785, -7.0, -7.0, -7.0, -7.0, -4.086680093734625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.278524964737017, -7.0, -7.0, -7.0, -7.0, -3.168202746842631, -7.0, -7.0, -7.0, -7.0, -3.0719902426915837, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.859138297294531, -7.0, -4.035509785089559, -3.2643455070500926, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5435714239623652, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4239009185284166, -7.0, -3.302114376956201, -3.5852350633657752, -7.0, -3.0149403497929366, -4.306432686997816, -7.0, -7.0, -7.0, -7.0, -7.0, -2.921166050637739, -7.0, -3.6299190355035416, -7.0, -7.0, -7.0, -7.0, -3.6375820900165774, -7.0, -7.0, -3.6024940688072813, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4102709642521845, -7.0, -3.8623699371228826, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.136657161873879, -5.111038081401025, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.733999286538387, -7.0, -7.0, -7.0, -7.0, -7.0, -4.0981936258632885, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.076276255404218, -7.0, -3.3055663135153037, -7.0, -3.8257505813480277, -7.0, -7.0, -7.0, -3.141763230275788, -3.041590046889367, -4.058830772372511, -7.0, -4.7123129086813655, -7.0, -7.0, -7.0, -3.697447307372525, -7.0, -3.96773513178388, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3679147387937527, -3.2366883817646155, -3.182699903336043, -7.0, -7.0, -4.287257721739699, -3.900913067737669, -7.0, -7.0, -7.0, -7.0, -3.6034691597338386, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.787099647059502, -3.577664104732127, -7.0, -7.0, -7.0, -7.0, -3.3310221710418286, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7114697818743276, -7.0, -7.0, -2.8546096380957953, -7.0, -4.556881174379756, -7.0, -4.159329992391703, -7.0, -3.0233896558066746, -7.0, -3.785756799962643, -7.0, -7.0, -7.0, -3.076761771924212, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9429995933660407, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3005954838899636, -7.0, -7.0, -4.295710008808256, -7.0, -7.0, -7.0, -7.0, -3.898396045930009, -7.0, -7.0, -4.403960831399213, -7.0, -7.0, -7.0, -7.0, -7.0, -4.281737671706917, -7.0, -7.0, -4.224258466480802, -7.0, -7.0, -7.0, -5.087165375759767, -7.0, -4.533683106579122, -7.0, -7.0, -7.0, -7.0, -7.0, -4.298088569391382, -7.0, -7.0, -4.326069466588894, -4.196424913949195, -7.0, -4.087852375163169, -7.0, -7.0, -4.188197016558756, -3.9163697135728093, -7.0, -4.069372054308515, -3.522261608845393, -3.1938478199735574, -3.190705124231049, -7.0, -3.0757293997408985, -4.08962255158434, -3.521094477651296, -7.0, -3.841234295506041, -4.361255520058149, -4.079624362195828, -7.0, -3.3597722616567713, -7.0, -7.0, -7.0, -3.5301081810850734, -7.0, -7.0, -3.649595923467478, -3.7978100169799, -4.752287521541528, -7.0, -3.398547595734928, -7.0, -3.654941420288582, -7.0, -4.5604839331487765, -3.604262062742623, -3.0442260771126826, -7.0, -3.5462341061067835, -4.133331291536332, -3.742167894637497, -7.0, -3.740362689494244, -7.0, -3.8196700381046775, -3.7901161997663317, -7.0, -3.3310666545009067, -3.677678977013519, -7.0, -4.005303386569579, -7.0, -7.0, -3.1316721192672685, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.516447228070065, -3.079543007402906, -2.806010294559223, -7.0, -3.0073209529227447, -3.08904115613125, -7.0, -3.0287745265000883, -7.0, -2.452859335795852, -7.0, -3.253601050494452, -2.420368379857524, -7.0, -7.0, -3.829528904200033, -3.045127306568027, -1.6859322186412395, -7.0, -7.0, -3.7866804531966487, -7.0, -7.0, -7.0, -2.9383946223434494, -7.0, -2.870069317834201, -7.0, -7.0, -7.0, -3.563285601908917, -4.089785045963041, -2.4533183400470375, -3.461348433647983, -2.7376894903529134, -7.0, -3.4827307000799426, -7.0, -2.5420781463356255, -3.212018019632142, -7.0, -2.886490725172482, -7.0, -2.932220013877119, -7.0, -3.0115704435972783, -2.968015713993642, -7.0, -3.04766419460156, -3.3014640731432996, -3.2130748253088512, -3.721040784326413, -7.0, -2.7103591771903925, -2.831997677235896, -7.0, -4.14989620715876, -7.0, -7.0, -7.0, -7.0, -3.3343600421243718, -2.875928984922927, -7.0, -7.0, -7.0, -7.0, -3.012415374762433, -3.003245054813147, -7.0, -3.05595140532915, -2.906940799413896, -7.0, -7.0, -2.800854491503561, -3.139868934471412, -3.6306312440205, -7.0, -3.609146011529596, -3.1809855807867304, -3.7456992266025058, -3.1869563354654122, -2.7572761297037145, -7.0, -2.606112535339159, -7.0, -7.0, -7.0, -3.8849651982007325, -7.0, -2.8041394323353503, -2.6919651027673606, -3.530814193504616, -3.3506356082589543, -3.4657990986731795, -1.8225177834877329, -3.195161370069258, -2.507855871695831, -7.0, -2.979092900638326, -7.0, -3.0532705666813786, -2.9777236052888476, -7.0, -7.0, -2.8045937153076332, -7.0, -2.7726709022727314, -3.0867156639448825, -7.0, -7.0, -7.0, -7.0, -2.814913181275074, -7.0, -7.0, -7.0, -3.3279716236230104, -2.993876914941211, -7.0, -1.6174663223693628, -1.8388490907372554, -2.4738517701548153, -2.3100557377508917, -1.468383357993737, -1.3545885878772408, -1.3636994158662474, -2.4066142226269402, -7.0, -1.6749010593445681, -7.0, -1.8755645015498659, -7.0, -2.255272505103306, -1.7731284916647108, -1.6766936096248666, -1.845098040014257, -1.4940220052578637, -3.4497868469857735, -2.2771178382585697, -1.7494786504876951, -1.6544172149137142, -1.2014587307439752, -1.8920946026904806, -2.8197319011288338, -1.5216610151120733, -2.5115491597450657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.400537989391946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.8757170352614105, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8178296997456056, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4778444763387584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.875111059637361, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.865400118179301, -7.0, -7.0, -3.2780673308886628, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.366441636156833, -7.0, -7.0, -4.689011234360268, -7.0, -7.0, -7.0, -7.0, -7.0, -4.953812827963013, -7.0, -5.404772158708847, -7.0, -3.7309436934277356, -7.0, -4.314478175864182, -7.0, -4.7802164692102265, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.653226990016805, -7.0, -4.501737867345703, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.46372879165109, -7.0, -4.173594138754633, -7.0, -7.0, -3.5569855749879813, -7.0, -7.0, -7.0, -3.018534070428183, -7.0, -4.095741057659923, -3.2734642726213465, -7.0, -7.0, -7.0, -7.0, -3.3282776444097677, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.69539410829111, -7.0, -7.0, -7.0, -5.093295581361213, -7.0, -7.0, -7.0, -3.918554530550274, -7.0, -3.40705081480425, -7.0, -3.1017470739463664, -4.241969611913073, -7.0, -2.4533183400470375, -3.312388949370592, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.184691430817598, -7.0, -3.4940153747571436, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.568475517147917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.444591225642957, -2.645422269349092, -7.0, -3.7770641547424293, -7.0, -7.0, -7.0, -4.626884178239356, -3.5781806096277777, -7.0, -3.8205736149734113, -3.1051694279993316, -7.0, -7.0, -3.3183555502257036, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.223729509364877, -7.0, -7.0, -3.7637274037656985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6306312440205, -7.0, -7.0, -7.0, -7.0, -3.43428495862892, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4321672694425884, -7.0, -2.2010555635620648, -3.31722734917642, -3.034708651341069, -3.6181527333785195, -7.0, -2.0453229787866576, -3.184123354239671, -2.255272505103306, -7.0, -3.590144934086627, -2.845098040014257, -2.519827993775719, -2.006097026608113, -7.0, -3.3404441148401185, -7.0, -7.0, -2.9756615331810585, -7.0, -3.6178387477170033, -7.0, -7.0, -7.0, -7.0, -4.494265937303735, -7.0, -4.494474629054753, -4.019628552674895, -3.909622879773425, -4.030518764843543, -7.0, -4.02360907957383, -2.531785552707462, -4.254608492283572, -7.0, -4.195733648273212, -3.286419041860382, -3.2249860256767717, -3.8069935136821074, -4.200412701197246, -7.0, -4.018991594705612, -7.0, -2.893637567918888, -2.9213697694196323, -7.0, -3.3725806350309133, -2.630698004360275, -4.027050460056304, -4.197473535014777, -7.0, -3.7381857702399692, -3.8080353284442587, -4.1984646353719155, -2.484841345882423, -3.8051472978004104, -4.495738547239104, -7.0, -4.499714568741124, -3.7371661281907387, -4.196521603400585, -3.8300366292735153, -7.0, -3.9169406120116785, -4.4990681845107945, -2.984571029906977, -4.195650622404186, -7.0, -3.7391238429861597, -3.6605538012167345, -2.9651397854416572, -7.0, -3.9019348574378614, -4.530878153458473, -3.426904171590417, -4.211053762679936, -2.2926173616597527, -3.1633299348401485, -2.9155682164446812, -2.89483434203002, -7.0, -7.0, -3.3208470333280387, -7.0, -3.805133693575249, -4.5043757014788, -7.0, -4.501812117075094, -2.7161172171175747, -2.3744663365963614, -7.0, -4.495225090106221, -3.179303656465203, -7.0, -3.256849986066561, -3.265537737431737, -7.0, -3.8253352245089047, -3.081241379736605, -4.495544337546448, -3.740638970811629, -7.0, -4.19685294676045, -2.497523633254155, -3.914038885724392, -7.0, -7.0, -3.3790852708537966, -7.0, -3.299045597055003, -3.4205650352890364, -3.667826378950711, -3.9091680930993435, -2.640755354769382, -3.534026106056135, -3.083017551279961, -7.0, -7.0, -4.046768219660838, -4.512524307323576, -3.61751143775027, -3.1405080430381793, -4.496984968687506, -3.350674348233281, -4.025551622782544, -7.0, -7.0, -3.0717196036338423, -7.0, -3.617236306615377, -3.5540447449409966, -2.999553067213758, -2.3463289211437783, -4.0237461631524765, -4.196797740419523, -4.028923533513322, -3.662730856031272, -2.68185985669508, -3.4620983811351556, -7.0, -4.216456214915742, -3.6896259318411455, -3.5444773290864293, -4.202937636552238, -2.852222588740421, -3.0495360706389203, -4.500798881491561, -3.084137899575048, -7.0, -2.888034807041142, -3.6029141680346397, -3.680452069509349, -4.54161668151239, -7.0, -4.200782121411112, -2.1340345939992327, -3.486430478854434, -7.0, -7.0, -3.141489972824933, -7.0, -7.0, -7.0, -4.495918807079969, -7.0, -2.9263844500573724, -2.4274570408261784, -3.3106546980922547, -4.074194530401818, -7.0, -3.3044224938606197, -7.0, -3.895215295030033, -3.8080082999104, -3.545296805458288, -3.192880935351771, -7.0, -4.020885876319437, -4.201246870680715, -2.405154189748663, -7.0, -4.4935695729787, -7.0, -3.6633508724665367, -7.0, -3.9066985977508377, -4.210064237291544, -2.687633863263913, -2.8960141473867185, -3.0211759564845853, -1.8026158669942771, -2.876741321509722, -3.7219342108540117, -2.353090061965932, -3.799891684656865, -7.0, -7.0, -3.4611300237200586, -3.7992578188157653, -4.497454909613176, -7.0, -3.313423156443038, -7.0, -3.2056495748651743, -7.0, -3.7782115648732764, -2.3838017055920684, -7.0, -3.6472117617451385, -3.584733162833891, -4.508704748138777, -4.520064101808785, -4.510276844417355, -4.212320803141976, -3.904539736714001, -3.5558733559874045, -3.9423305520097855, -4.499783276438258, -2.9681387192007698, -7.0, -3.996632049605175, -3.5605575122983906, -3.1775364999298623, -4.195595263005526, -2.6106192208808556, -7.0, -3.0428140768022023, -4.199631780610535, -3.4687634306105437, -4.021023822031585, -4.199110385681477, -3.4455323537437947, -3.6731131042382335, -7.0, -3.3163111433656165, -2.4748625905317962, -2.9440692989142505, -7.0, -4.494015374757144, -4.498269190440657, -7.0, -7.0, -4.198409633537761, -7.0, -7.0, -2.9764730006818385, -3.538561167233788, -3.230959555748569, -2.9805589206857506, -7.0, -4.498792835329338, -3.801403710017355, -4.506302043627209, -4.494293768665333, -4.495918807079969, -4.039903003595179, -3.8121643883928478, -3.665607790220819, -7.0, -4.016225245647056, -4.1948888114159875, -4.19641109941299, -7.0, -4.495655325147846, -3.5574804670426556, -2.547063203346281, -7.0, -7.0, -7.0, -4.196190007050506, -4.02511462433611, -4.200316874268984, -7.0, -3.9002305365868106, -3.852016173286643, -4.036376015529204, -4.088750166273466, -3.292524215549357, -4.512377507312931, -7.0, -7.0, -2.2304147438003934, -3.670709595223797, -3.0056228426882443, -4.025483370754005, -3.270774088928408, -7.0, -7.0, -3.89593334272974, -2.9444934006362775, -3.354876422516234, -2.909599687897347, -3.3512405258734037, -3.973797259774123, -3.8105013477665297, -7.0, -4.194750156641199, -3.4282293130141395, -3.128063077420776, -3.201527172077645, -7.0, -3.5946273153522026, -3.507693992654917, -3.7983743766815614, -3.4695408715573652, -7.0, -3.313168308546585, -2.6002948575060483, -3.275988458642023, -3.92263464618843, -3.6646688327641304, -2.9208623994457943, -2.860733410301672, -4.019213251277154, -3.2076777920604744, -7.0, -7.0, -3.196339507959142, -3.8146869966218184, -3.0190944165906677, -3.3263102531878377, -2.857793512133298, -3.2350763753367193, -2.7753868598238993, -3.740901932571898, -2.9464497931401237, -3.089665858974108, -7.0, -7.0, -7.0, -3.3851413476046583, -3.3118784613957004, -7.0, -3.4596802769848254, -3.6774505159720032, -7.0, -3.5620416016746557, -7.0, -3.2740848933351994, -3.8999435533286775, -4.028232251440524, -2.88860378026851, -4.201028227093125, -3.071331704755304, -3.0686515762089925, -2.8071793729279872, -4.20115122765526, -2.7464926657826996, -2.8485276350613553, -3.2856046796973826, -7.0, -4.203209725325918, -4.19574748437503, -3.027935408120664, -3.203942924360925, -3.6531642561518813, -3.7382783463742273, -4.193792230279798, -7.0, -3.375180069808788, -4.020596047624484, -3.656194062179186, -3.599364446251949, -2.745186363703905, -3.7995473071256147, -2.4551104023475094, -7.0, -4.494210269229327, -2.481261868548562, -2.8452482721624146, -3.4628646357053148, -3.64018319192134, -2.492893110691421, -2.724982248479115, -3.3274270536683934, -3.064320690534863, -2.592807487530051, -3.428037553035308, -3.7620906057314665, -3.3259430428795245, -2.0863757697442034, -2.460411189357846, -2.7573327528430465, -3.5703093854358796, -3.105549270910429, -2.801826592423241, -2.394335622779952, -3.0462830464055406, -3.423434930523369, -2.931909144999707, -2.9014319539092193, -2.639183518940812, -2.4447296125141382, -3.6754617093945177, -1.5741752586053788, -2.5054251214759526, -2.6966607992196483, -2.7835414519189197, -2.868037067135169, -2.411815395815549, -3.0800808854947244, -3.1881313117838195, -3.4724505940728925, -3.3092853524161985, -3.5826427934453213, -3.4288045757556866, -3.118311975665972, -3.0703952134392365, -3.6587879323179417, -2.720558665026306, -2.5080905010569623, -2.970924885385915, -3.644044492814749, -3.12469646635406, -3.518105774529618, -2.9858538902073053, -2.530092029003328, -2.6953271324584724, -2.2701451708811593, -2.632842096574864, -2.2970055092917994, -4.50982058221228, -2.4990106464473296, -3.293292754890996, -3.893720160977218, -3.8686209306148043, -2.5595692527659755, -3.6454345512591875, -2.5776285553511253, -2.4328708171745355, -2.807813258486935, -2.9638136486207034, -3.5943372931093807, -2.851441814672055, -3.3223020096150195, -2.062930815889548, -4.264109156305809, -3.3052812228291697, -2.7836075540653025, -2.0390959615616686, -7.0, -2.6397987097716804, -3.028684194331513, -2.099685469420008, -3.9387698227831174, -2.752501999787115, -3.4231522154326917, -2.6391410942742572, -3.0168492772142694, -4.502413462710515, -2.349908131181242, -2.047247488233153, -4.234884102331191, -2.6308431290241736, -4.198065714165741, -3.047488412623774, -2.0832314678333397, -3.255487875542584, -3.7180585877122407, -4.494446809281385, -7.0, -3.8934010868997206, -2.8727024406868487, -2.2892988830661953, -2.83613942742759, -2.314229569502311, -3.7977382907854604, -3.3092308161500323, -1.6794090213681825, -3.6174197467371765, -3.0830644414577666, -3.651873099180296, -2.181528697484242, -7.0, -1.5689077665521831, -2.208456496827347, -3.270185428658033, -3.5166279077623535, -2.570374714161939, -2.372685248678423, -1.5890927346358725, -3.3280124388555863, -4.1992888280824054, -2.8917509168182045, -3.8986429210566396, -3.0244993503595516, -3.5121905991407667, -2.745650634785171, -4.016197353512439, -2.269812738261015, -4.495127881242933, -4.019213251277154, -2.6714275736474455, -2.0062076411186065, -2.3370168971938905, -2.9613931732408316, -3.0471320265779482, -2.3931418587761177, -2.9011039843968383, -2.809572662995666, -7.0, -2.990554105139274, -2.238716226946245, -4.4945997959865975, -3.894426837964188, -3.042509884259952, -3.1108454983739153, -3.4711938859696856, -2.9941108467981485, -3.334936032690669, -3.226559207269092, -3.3248583881988676, -3.0211359262688506, -2.7790362224230765, -2.3981665380079065, -7.0, -2.6689855331549603, -2.774273595320442, -3.052123191595359, -2.8041199524420146, -3.897956810006952, -4.019393263978083, -2.5233731817819334, -3.0535288053252456, -1.9058828871761138, -2.638087126400092, -3.1077499885923325, -3.907666595015563, -3.4215216663369774, -2.9041398021650044, -3.1985883640360258, -2.141335623717553, -3.384477484490442, -2.775153508489039, -2.5019205716318917, -3.428620672671939, -7.0, -2.408856423161136, -2.2816611981573267, -2.64851013005671, -3.5187639162599584, -2.133720605254398, -2.957723742446469, -2.913886068299728, -3.144750136698065, -2.066666623656604, -3.317190430361258, -2.7212428392417465, -3.505895781219751, -4.1938200260161125, -4.493778599541865, -2.2920188927402747, -4.0492309479088515, -3.3570359400465626, -2.843440425475574, -1.865900612004408, -3.3119656603683665, -2.368403115193713, -2.78306531546524, -2.6093601127809265, -4.199412322193509, -3.0799847513312257, -7.0, -2.589254372459997, -2.5247854493212225, -3.852126070250302, -4.193110678436452, -3.0342673970380254, -3.50500066392687, -1.740338392619813, -3.2235232653918677, -3.7204625143161145, -3.71594766128561, -4.016908043972075, -4.495710808313926, -4.494947292750087, -3.8943160626844384, -3.4547627993176926, -3.1678809876266514, -3.5147336493441603, -3.5962671263955155, -3.898848543181547, -2.4105890203936555, -2.4348048695286773, -2.5506405275389614, -2.459738214092112, -1.6885097614621598, -1.811284715922013, -0.17667281526607695, -1.944190840255279, -3.166269727827661, -2.1129163556418598, -3.49391789471334, -1.8695714308265334, -1.7731284916647108, -3.590144934086627, -7.0, -2.1892399324978666, -2.17803565716981, -1.579904306623212, -2.86966188853846, -1.212640474666788, -2.501618091969828, -2.3821706787275887, -1.2576917341781915, -2.745018994770533, -1.2438901187636742, -1.85062416092448, -2.900790291266021, -3.5388389432951035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0906107078284064, -3.862992822376717, -7.0, -7.0, -7.0, -3.425968732272281, -7.0, -3.2095150145426308, -7.0, -7.0, -7.0, -7.0, -4.344981413927258, -3.6032526619816467, -7.0, -7.0, -3.948933164706531, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.168756686444427, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9995654882259823, -3.527243116388089, -7.0, -7.0, -7.0, -4.239230637369824, -7.0, -7.0, -3.392345155361204, -7.0, -2.8925583448401535, -7.0, -7.0, -7.0, -2.737457698850837, -7.0, -3.089926509999768, -3.490941205356787, -2.878730641132499, -3.5141491344754376, -7.0, -7.0, -3.4879863311293935, -7.0, -3.1711411510283822, -7.0, -7.0, -7.0, -2.4543002900538933, -3.853378760138451, -7.0, -7.0, -2.975431808509263, -2.8842287696326037, -3.28004693749461, -3.060697840353612, -7.0, -7.0, -4.348265911123662, -7.0, -7.0, -7.0, -7.0, -2.893206753059848, -3.3756636139608855, -7.0, -7.0, -3.4900990050633047, -7.0, -7.0, -3.2801228963023075, -7.0, -7.0, -3.4827434594492797, -3.576341350205793, -3.1289643884877254, -7.0, -7.0, -3.1709947020363, -3.322219294733919, -3.1340176456759834, -2.501585871330296, -7.0, -3.8582965245338854, -7.0, -7.0, -7.0, -3.032842520184797, -7.0, -7.0, -7.0, -7.0, -2.951571353764591, -7.0, -7.0, -7.0, -7.0, -3.7883451651521183, -3.161368002234975, -7.0, -3.39375064034808, -2.979206813945708, -3.6630409748939745, -7.0, -4.182386117037066, -4.154758619154177, -7.0, -7.0, -7.0, -7.0, -3.2119210843085093, -7.0, -7.0, -7.0, -7.0, -2.9075188461066293, -7.0, -7.0, -7.0, -4.373794416714731, -7.0, -7.0, -7.0, -7.0, -7.0, -3.196136691157174, -3.0543065658483997, -3.862667950228588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1466860556475256, -7.0, -7.0, -7.0, -3.2230135770130466, -7.0, -2.8512583487190755, -7.0, -7.0, -7.0, -7.0, -7.0, -3.44870631990508, -2.9521464117135063, -3.0332226466702497, -2.7475227813077256, -2.8254261177678233, -3.075911761482778, -3.9475945305730864, -3.041392685158225, -7.0, -7.0, -7.0, -2.3205616801952367, -7.0, -7.0, -3.9389198122447717, -7.0, -7.0, -2.591621038213319, -7.0, -3.4964760607131895, -7.0, -7.0, -3.6190933306267428, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9694159123539814, -3.60859734044574, -7.0, -7.0, -7.0, -2.986995539724382, -7.0, -7.0, -3.288994028501752, -7.0, -7.0, -7.0, -7.0, -3.1721356966495664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0884904701823963, -3.325515663363148, -7.0, -3.840482487213442, -5.111169224446162, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3879234669734366, -7.0, -2.81778565588553, -7.0, -2.8438554226231614, -2.944975908412048, -7.0, -7.0, -2.9344984512435675, -2.612359947967774, -3.7978657801465183, -7.0, -2.582063362911709, -7.0, -7.0, -7.0, -7.0, -7.0, -3.129689892199301, -7.0, -7.0, -3.8033205235787544, -7.0, -7.0, -7.0, -7.0, -3.3671073265819653, -3.3727279408855955, -3.7596930204516097, -7.0, -4.713624926782461, -7.0, -7.0, -7.0, -3.704193429194155, -3.161368002234975, -3.6738499773429494, -3.740678425227455, -3.5571461423183632, -7.0, -7.0, -7.0, -2.762678563727436, -3.023938007498089, -2.6291182240619984, -7.0, -7.0, -3.245018870737753, -7.0, -7.0, -7.0, -3.0946457896059547, -3.943840626401261, -7.0, -7.0, -7.0, -4.530814193504615, -2.7036137543417307, -7.0, -3.9916247345340055, -7.0, -7.0, -3.142493751023144, -7.0, -3.668944734457734, -3.066450169242703, -7.0, -3.04766419460156, -2.9591606876059813, -7.0, -4.828594167470897, -3.2852759390712047, -7.0, -7.0, -7.0, -3.476324317420228, -3.346548558548474, -2.739572344450092, -3.1048284036536553, -7.0, -7.0, -7.0, -7.0, -2.9454685851318194, -7.0, -3.1961761850399735, -3.171726453653231, -7.0, -4.85886189474819, -3.915382244962084, -4.231980183961163, -7.0, -2.966878904322697, -4.116765429332974, -3.7967130632808965, -7.0, -3.172310968521954, -7.0, -3.0952856128383934, -3.2024201977780304, -2.9662982070631547, -7.0, -7.0, -7.0, -3.445759836488631, -3.0056094453602804, -7.0, -7.0, -3.070684206978637, -7.0, -3.2279948928142463, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7151171474915134, -4.077367905284157, -7.0, -7.0, -4.5809534717539675, -7.0, -7.0, -7.0, -7.0, -4.999013030891847, -7.0, -7.0, -7.0, -4.924077602515123, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.139900066304233, -2.466274321789292, -3.8277199645519246, -3.487104869552999, -3.6007006960652372, -3.682506085939011, -7.0, -3.1032904715577496, -4.060047800629704, -2.4838681350548732, -7.0, -3.8436687229791437, -3.787857038774162, -3.2202433892972593, -7.0, -3.162438624324789, -3.2374809016410064, -7.0, -7.0, -4.378270683096358, -7.0, -7.0, -3.474097008828839, -4.056924604372458, -5.007699994446809, -2.6989700043360187, -3.0134271270706963, -7.0, -3.4652532922333523, -7.0, -4.627700325714928, -7.0, -3.525925466513464, -7.0, -4.026717075588475, -4.13581616679784, -3.6707024644784183, -7.0, -3.443262987458695, -3.824125833916549, -3.5985880805539687, -3.8892456608929797, -2.4291060083326967, -3.1382138561176456, -3.5954147420331193, -7.0, -3.950078476170064, -7.0, -7.0, -3.248879101447868, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2174400738687097, -2.325310371711061, -3.015024263324625, -7.0, -7.0, -3.4446692309385245, -7.0, -2.4035018157410506, -7.0, -2.9225030280360786, -7.0, -3.1754013550473683, -2.3384564936046046, -3.0979510709941502, -7.0, -4.135609636028679, -7.0, -0.7268769915705309, -7.0, -7.0, -3.1951382785109965, -7.0, -7.0, -7.0, -2.5581083016305497, -7.0, -3.5464604029452773, -7.0, -7.0, -7.0, -3.3242824552976926, -4.488867861253645, -7.0, -7.0, -2.379231997820056, -7.0, -2.4222888260527875, -7.0, -2.1958996524092336, -2.7791393517925442, -7.0, -7.0, -3.1292063577475293, -2.491128139388255, -7.0, -3.0729847446279304, -7.0, -3.2041199826559246, -7.0, -3.334051440346892, -7.0, -7.0, -7.0, -3.097719940343722, -2.245759355967277, -7.0, -4.154667377622576, -7.0, -7.0, -3.9115304623071623, -2.535113201697349, -3.0615930957249455, -2.320838389017534, -7.0, -3.2780673308886628, -7.0, -7.0, -2.5951286428938523, -3.491991664182002, -7.0, -2.538896749427476, -2.917308535712038, -7.0, -2.8627275283179747, -2.9667449661622203, -3.428994833472571, -3.1686938635769795, -3.111766433052562, -3.6124659639531425, -7.0, -3.1551841596940076, -3.228913405994688, -3.198067680193197, -7.0, -2.9481683617271317, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1559430179718366, -2.890979596989689, -3.7547559326268156, -3.37984917876283, -3.868526886768204, -2.2418140039845724, -7.0, -2.7870351820262234, -7.0, -2.357087442864468, -7.0, -2.304790144537288, -3.3902283624691303, -7.0, -7.0, -2.2327844143207414, -2.7146091386431936, -2.951961654685714, -3.1389339402569236, -7.0, -7.0, -7.0, -7.0, -2.9079485216122722, -2.9628426812012423, -7.0, -7.0, -3.0572856444182146, -2.57902100733939, -7.0, -1.2859662492281052, -1.0352390909111167, -1.0089069310767398, -2.2918866162241116, -1.1168864858535805, -1.5632437011403981, -1.807617016832907, -1.8107788654424986, -7.0, -1.818850727921582, -1.9132249784197266, -1.663492885987207, -1.6766936096248666, -2.845098040014257, -2.1892399324978666, -7.0, -0.4843273272091896, -1.7188609631806762, -2.9954889428763822, -2.243348148293831, -1.178401341533755, -1.5365584425715302, -1.5756568260144563, -1.5133334273741073, -2.637125693881889, -0.7282449109488612, -2.159266331093494, -2.1354506993455136, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.077731179652392, -3.9265807069892746, -7.0, -7.0, -7.0, -3.5042261205990135, -4.219453537076811, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.601299310194338, -7.0, -7.0, -3.89088538729425, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.826051231125912, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9836262871245345, -7.0, -7.0, -7.0, -7.0, -3.9960423505978575, -7.0, -7.0, -3.385963570600697, -7.0, -3.36707624226875, -7.0, -7.0, -7.0, -2.7278122676344823, -7.0, -3.1099693811795874, -7.0, -2.87684740506319, -3.3355247615134567, -7.0, -7.0, -3.482873583608754, -7.0, -7.0, -7.0, -7.0, -7.0, -2.450359098058306, -4.153921520067111, -7.0, -7.0, -3.447623097760286, -7.0, -3.453547660380749, -2.8808135922807914, -7.0, -7.0, -4.649198511689143, -7.0, -7.0, -7.0, -7.0, -2.937071889942818, -3.3690302218091532, -7.0, -7.0, -3.4850112145785728, -7.0, -3.530583859645118, -3.27600198996205, -3.3234583668494677, -7.0, -3.5406792623976844, -7.0, -3.1275097349740077, -7.0, -7.0, -3.4670158184384356, -3.314709692955174, -3.4295908022233017, -2.612359947967774, -7.0, -3.681060243631812, -7.0, -7.0, -7.0, -3.207589490666431, -7.0, -3.426185825244511, -7.0, -3.055187138555754, -2.967349935411163, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0860037056183818, -2.9750869934995627, -3.3584107862063366, -7.0, -7.0, -4.057559608844285, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.799232824169164, -3.5120169694961265, -7.0, -7.0, -4.373132774549157, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1366413091067473, -2.749736315569061, -3.5604446731931874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.066586796470695, -3.3665474682594816, -7.0, -7.0, -7.0, -3.314437307092213, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.742882171437273, -3.4240645254174877, -3.0259199985020175, -2.635930322156989, -2.99409708958821, -3.062581984228163, -3.9755742521196726, -7.0, -7.0, -7.0, -7.0, -3.00774777800074, -7.0, -7.0, -7.0, -7.0, -7.0, -2.873320601815399, -7.0, -3.56845179951805, -7.0, -7.0, -3.6153186566114788, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.347505649475902, -2.9523080096621253, -3.3853202242009113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7637274037656985, -3.3988077302032647, -7.0, -7.0, -7.0, -3.0907281958534445, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0755469613925306, -3.62490060220449, -7.0, -4.140445188347875, -5.014227269985497, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8097840982527122, -7.0, -2.8208579894397, -7.0, -2.9800033715837464, -7.0, -7.0, -2.7019994748896368, -3.7677147687058827, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1179338350396413, -7.0, -7.0, -3.8008544915035607, -7.0, -7.0, -7.0, -7.0, -3.2064937513760277, -7.0, -3.3910611905654067, -7.0, -4.713322504987028, -7.0, -7.0, -7.0, -4.003762020828246, -3.061603249608375, -3.1946993054635864, -7.0, -3.8561244442423, -7.0, -7.0, -7.0, -2.7535830588929064, -2.8937617620579434, -2.1425682249120177, -7.0, -7.0, -3.236033147117636, -7.0, -7.0, -7.0, -2.911867530405052, -3.6409284208668327, -7.0, -7.0, -7.0, -4.530699041844945, -2.9523080096621253, -7.0, -7.0, -7.0, -7.0, -3.0135744775494535, -2.8559227751038248, -3.6672661193822744, -3.061954844073114, -3.327086350362379, -2.86411536851903, -2.7782718709876417, -3.4094258686714434, -4.682437775007122, -3.885643871835764, -7.0, -7.0, -7.0, -3.473705886887772, -3.343014497150768, -3.0269416279590295, -2.7906369619317033, -7.0, -7.0, -3.373463721632369, -7.0, -3.2440295890300215, -7.0, -7.0, -3.0430674079304287, -7.0, -4.557603433787706, -4.3919402351671355, -4.252165055604942, -7.0, -3.1108589567318674, -4.174616292119658, -3.316808752053022, -7.0, -7.0, -7.0, -3.267406418752904, -3.325036498467299, -3.7424108805804925, -3.374381698050882, -7.0, -7.0, -3.138776215729349, -2.989894563718773, -3.095169351431755, -7.0, -3.3687516195445553, -7.0, -3.163757523981956, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5324631749035365, -7.0, -4.593418993965913, -4.881789657203351, -7.0, -7.0, -7.0, -4.720960973800096, -7.0, -7.0, -7.0, -4.675943232322869, -4.9238913499200505, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.776112526813905, -7.0, -4.378461495902037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.01456253812761, -2.855216194733363, -7.0, -3.6689112256610885, -3.8998751960210107, -7.0, -4.333709182897272, -3.0970836960665213, -4.156882164439376, -2.5239631265725575, -2.9242792860618816, -3.968078040985985, -3.8846254632562345, -3.360241681417266, -7.0, -3.1853847390413126, -3.8376515578463923, -7.0, -7.0, -4.3776158305597805, -7.0, -7.0, -3.5453380480196923, -3.8349742581415307, -4.9284863208502925, -2.5060538173181506, -2.8057556510562356, -7.0, -3.50931295469693, -7.0, -5.104773814899298, -4.085825533520743, -3.621954820044902, -7.0, -4.3270522653266985, -4.436305797450854, -3.8813703893061944, -3.629613445378183, -3.1788200395482566, -3.8217754671834636, -3.695344843418741, -3.791802891569532, -2.4173055832445254, -3.151844154295226, -3.7265786003464605, -7.0, -3.7246327574688074, -7.0, -7.0, -3.4062526845360575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3261748728967495, -2.4450850227193537, -3.0140162292583637, -7.0, -7.0, -3.3055467775407656, -7.0, -2.350441856535061, -2.9689496809813427, -2.9198249446356317, -7.0, -3.2670336159890963, -2.4909612378520922, -3.085290578230065, -7.0, -7.0, -7.0, -0.7524833221700973, -7.0, -7.0, -3.7951149856303634, -7.0, -7.0, -3.0117818305481068, -2.5121262549907444, -7.0, -3.5449770427414777, -7.0, -7.0, -4.599162287443591, -3.4930814527344283, -4.789658257826966, -7.0, -7.0, -2.3433101031623416, -7.0, -2.349832359203467, -7.0, -2.2676409823459154, -2.5642794877753574, -7.0, -7.0, -2.7244397233970745, -2.6596785560245753, -7.0, -7.0, -7.0, -2.716003343634799, -7.0, -2.4791844152834357, -3.695831772826692, -7.0, -7.0, -2.4893724660018175, -2.2638228753077008, -7.0, -3.6763277338813203, -7.0, -7.0, -7.0, -2.6754116937148633, -3.0637827794015475, -2.5907861238608794, -7.0, -7.0, -7.0, -7.0, -7.0, -3.313234291694724, -7.0, -2.901821443893775, -2.8636532477224708, -7.0, -2.8407332346118066, -2.906200314184372, -3.3539364673716925, -2.796376070489843, -2.803968953635653, -3.0797131438261793, -7.0, -7.0, -3.2195845262142546, -2.9621719559993496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.144885418287142, -3.187520720836463, -3.532346638573482, -7.0, -7.0, -2.234859558209032, -3.683587317572767, -2.332149796241367, -7.0, -2.0964755012340386, -7.0, -2.23101625585726, -2.909199319174384, -7.0, -7.0, -2.157284034918504, -2.8810992183890174, -2.9671664837366802, -2.8257505813480277, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9454685851318194, -3.818423855092079, -7.0, -7.0, -2.2616593037647066, -7.0, -1.1583624920952496, -0.8542527574035039, -0.9494303329815315, -2.151905874537198, -1.1903316981702914, -1.4122628487890587, -1.7952120167866616, -1.8032195366042487, -7.0, -1.4561437549623364, -1.8018400929397844, -1.8105990628039323, -1.845098040014257, -2.519827993775719, -2.17803565716981, -0.4843273272091896, -7.0, -1.735024716699371, -2.9901908082608895, -2.3288498736329326, -1.1981787890185196, -1.4655952723291037, -1.6998738433342633, -1.1951914409557332, -2.6754116937148633, -0.7473115494495717, -2.305044121834302, -1.903768042526874, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6060587494103142, -7.0, -7.0, -3.5487017862716375, -7.0, -7.0, -7.0, -3.9615397375535686, -3.9755696578936623, -3.291701770729981, -7.0, -7.0, -7.0, -7.0, -3.6095410528172773, -3.3144150134136665, -7.0, -7.0, -3.499120804923696, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8809907025954717, -3.5776066773625357, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7531232446817127, -7.0, -7.0, -7.0, -4.149437744906596, -7.0, -7.0, -7.0, -7.0, -2.6968554344439792, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0183519664861995, -3.254467510467076, -3.327522402716821, -2.7986999606649783, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7191931306339363, -2.780161942131146, -7.0, -7.0, -3.4094258686714434, -7.0, -7.0, -3.839037873388306, -7.0, -7.0, -3.9296264433432477, -7.0, -7.0, -7.0, -7.0, -3.3065108056433825, -7.0, -7.0, -7.0, -3.4302363534115106, -7.0, -3.2804265987495813, -7.0, -7.0, -3.6340740254874686, -3.437378050057053, -3.782973994944048, -3.4172723536273164, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8093576702111056, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1763083520279114, -7.0, -7.0, -7.0, -3.36027776962236, -2.809148956558773, -7.0, -7.0, -3.1156105116742996, -7.0, -3.3876001266898017, -7.0, -7.0, -7.0, -7.0, -3.838849090737255, -7.0, -7.0, -3.8196243530000937, -7.0, -7.0, -7.0, -4.528166530720789, -3.5939502952639875, -7.0, -7.0, -3.500648063371912, -3.557025722386383, -2.7388192156993934, -7.0, -7.0, -7.0, -3.714949737697635, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0819688735880715, -2.669316880566112, -7.0, -3.871689665685515, -7.0, -4.007875743767586, -7.0, -7.0, -7.0, -7.0, -3.1234782951612408, -7.0, -7.0, -7.0, -3.2303211689190787, -7.0, -3.4781334281005174, -7.0, -7.0, -7.0, -3.3138672203691533, -3.1551335219650514, -3.70816585785554, -7.0, -3.3479151865016914, -4.00650882777529, -7.0, -7.0, -3.7079866314297973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7339592206237033, -7.0, -3.895643504824079, -3.3088330016116188, -7.0, -3.867408556522791, -7.0, -3.614053105987219, -7.0, -3.6262376851469007, -7.0, -7.0, -7.0, -3.8376515578463923, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7792657147626283, -7.0, -3.2213620672035708, -7.0, -3.3261309567107946, -7.0, -7.0, -3.6093275616088962, -7.0, -7.0, -3.7011360660925265, -3.2892114990916705, -3.033468433690981, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.730984038495525, -3.807940721215499, -3.9071156388713693, -3.944211571736122, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.675778341674085, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2224177849842386, -7.0, -7.0, -7.0, -7.0, -7.0, -3.552911450216509, -7.0, -7.0, -3.2679340087937794, -7.0, -3.9372670722114127, -3.6602012013806817, -7.0, -7.0, -7.0, -2.9857444809540734, -3.668012971641832, -3.1674473082034846, -7.0, -4.431452222544104, -7.0, -7.0, -7.0, -3.4918517497214157, -7.0, -4.069557104582695, -7.0, -3.6771961860105447, -7.0, -7.0, -7.0, -7.0, -3.7380667147774695, -3.42217931474113, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.833784374656479, -3.743588150159904, -3.5994463757252757, -3.7265642161622448, -3.3223226858740107, -3.6486275257525964, -3.2390073481041712, -7.0, -3.4954452174999373, -7.0, -7.0, -3.2081725266671217, -3.6522463410033232, -3.764512374855157, -3.4620234446356335, -3.939918420369057, -3.656194062179186, -3.1715802019320636, -7.0, -4.122449110339567, -3.1551624585331335, -7.0, -7.0, -7.0, -3.9184497424011577, -3.8287243271387914, -7.0, -7.0, -3.235949071135977, -3.518382315545344, -3.671728088239558, -7.0, -7.0, -7.0, -7.0, -2.9256987611930096, -7.0, -4.094243964322999, -4.130140705819276, -3.5421075775291375, -7.0, -2.82910575870157, -3.7987602916703658, -3.4550987591574565, -7.0, -7.0, -7.0, -3.17832933714299, -7.0, -3.5942267574809135, -3.6721902511882525, -7.0, -7.0, -3.0068937079479006, -7.0, -3.5536403362313544, -7.0, -3.8457180179666586, -7.0, -3.2144779988742656, -7.0, -7.0, -4.020796188104522, -4.489480351850566, -7.0, -7.0, -4.7339271652304165, -3.639967665270556, -3.704879450830578, -7.0, -3.5936515182654305, -4.081635301502951, -3.515211304327802, -4.356580328640258, -7.0, -4.707859609285525, -3.24757837069717, -7.0, -4.395754359792703, -3.355643050220869, -7.0, -4.36383752883614, -7.0, -4.489420548875373, -3.7278664494674896, -3.9616583486377155, -4.185117001142592, -7.0, -7.0, -7.0, -7.0, -3.61646851190577, -7.0, -4.700201652550818, -3.771477239864823, -4.259402728142589, -7.0, -4.167169590408632, -7.0, -4.189490313699367, -3.775076200645214, -3.225040747463099, -7.0, -3.994572286223859, -3.359251556898101, -3.166133970305109, -3.0060991361599037, -3.4237918130180067, -3.3832766504076504, -3.32247585881818, -2.694359467902212, -3.056218581272306, -2.6521885909973335, -3.406250093617719, -3.1713133807585514, -7.0, -2.970361406717804, -3.9644482079166607, -7.0, -3.6436007061922973, -2.753882675656707, -3.381415942849977, -7.0, -3.189451441189139, -3.2684083975867497, -4.140369580790315, -3.217088951479172, -3.173419384081802, -3.5293019977879805, -3.1410892522830585, -7.0, -4.1309547125837796, -3.161368002234975, -2.4717270710635377, -7.0, -2.563814687624541, -3.6266336114657944, -2.961104552884867, -3.5180530800797216, -2.1037106595141473, -3.4753321417033707, -2.976808337338066, -3.567979955556931, -7.0, -2.8686685229153204, -3.075406572032361, -7.0, -2.6937579306776436, -3.5324995860946626, -2.2894943600325126, -2.673982441385144, -3.746673112470323, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7114806713603596, -2.8401957413725274, -2.3970337739112404, -3.5106790310322102, -2.570834706424214, -1.7764931142422742, -3.097691040361552, -3.0593740590659575, -3.212453961040276, -1.6500020632708234, -3.01717251394567, -2.21625344740169, -2.07832497394727, -2.548020694905531, -7.0, -3.0884904701823963, -2.2174839442139063, -1.3103988069707881, -3.57978359661681, -2.9408898574862166, -2.9780282664601656, -3.2463754640035085, -3.084457113581298, -2.796177717217656, -2.625018313136747, -7.0, -1.766266186167217, -3.1927068066128585, -7.0, -3.2810850412893027, -2.8098790829156988, -2.953589557642728, -7.0, -2.949064570524849, -2.4239087107304087, -3.5776066773625357, -2.960787780819836, -7.0, -2.5071290188367894, -2.176738976523847, -7.0, -3.2069607291557105, -2.4400340173284967, -2.9199144806594317, -3.390876255625289, -2.8416097121684354, -2.4860254478323944, -2.890867938811441, -2.7059858251715236, -2.7443907861817323, -3.0464951643347082, -2.44502907393028, -7.0, -2.6666619535321328, -2.686859614333764, -7.0, -2.270387656461051, -3.541454428747589, -7.0, -2.977058147228131, -2.5567662429169604, -2.4691775785110766, -2.353707909300785, -2.697631653563757, -3.6226284261293253, -7.0, -3.5064148268833297, -7.0, -1.7442929831226763, -2.926213785839081, -2.238696453314147, -2.6060880880154507, -2.9094490469812664, -7.0, -2.712104758955936, -2.7000688257699466, -2.4094779220657947, -2.989271791641693, -2.167220775510412, -2.506505032404872, -3.4268906288777257, -2.696465603994037, -1.7853298350107671, -2.951580344903392, -2.0222763947111524, -2.4768984824747657, -7.0, -3.4802944600030066, -3.201499540187428, -3.435525851498655, -3.0940050223646494, -2.0933402269453776, -2.3242583813241886, -3.069020241410887, -2.4298547744230627, -1.5897489827548932, -3.252428233716468, -2.4256157245769305, -3.544811911757776, -2.7350996531988936, -7.0, -2.3214038358007936, -2.3356098422232794, -3.569724949226159, -7.0, -3.162962476653458, -7.0, -1.6367282157789547, -3.2638726768652235, -7.0, -7.0, -3.182129214052998, -3.022153327172555, -2.7126497016272113, -2.6604588986495648, -2.869915879065291, -3.153204900084284, -3.6609602917760835, -3.5364321758220134, -2.315105585855791, -2.0396192169281915, -1.844040718781357, -2.214843848047698, -1.2586068361221225, -1.4432861381014097, -0.9300539521206114, -1.226212174618504, -1.4369712595163502, -3.0718820073061255, -1.286707687770264, -2.366925571380331, -1.6849509138339958, -1.4940220052578637, -2.006097026608113, -1.579904306623212, -1.7188609631806762, -1.735024716699371, -7.0, -2.2254760294652516, -1.921773152358833, -2.093561757565289, -1.5807824672307302, -1.2961115457914827, -2.01976069751232, -2.172689860892129, -1.3228968213641614, -2.493225621510431, -2.7752462597402365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.209871418668929, -7.0, -7.0, -7.0, -7.0, -4.261072451390823, -7.0, -7.0, -7.0, -7.0, -7.0, -2.959976522554131, -7.0, -7.0, -3.8184898222042136, -4.159138980494756, -7.0, -7.0, -7.0, -7.0, -3.5221833176186865, -7.0, -4.576231898813378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.670304621143013, -7.0, -7.0, -7.0, -7.0, -2.8457868498048096, -7.0, -7.0, -7.0, -3.5150786750759226, -7.0, -3.8394937596254946, -7.0, -7.0, -3.912062555588502, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0518468383137356, -3.877515318847026, -7.0, -7.0, -3.04766419460156, -7.0, -7.0, -7.0, -7.0, -7.0, -4.654577589539578, -7.0, -7.0, -7.0, -7.0, -3.976304116552003, -3.6027109449575576, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8735126691141897, -7.0, -3.792706788898358, -7.0, -7.0, -7.0, -3.571825249040829, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.055148889889394, -7.0, -7.0, -7.0, -7.0, -4.111128036345124, -7.0, -7.0, -7.0, -7.0, -3.4181189156542, -7.0, -7.0, -7.0, -7.0, -3.493597449000527, -7.0, -7.0, -3.6897453025712523, -7.0, -7.0, -7.0, -4.701399587752211, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4947904572094903, -7.0, -7.0, -7.0, -2.7021029686899287, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.20980980578538, -3.2285286773571817, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.565434570307759, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8594985581877763, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.023886248324208, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.623456048069934, -7.0, -7.0, -3.7659950553707966, -7.0, -3.5251096222719336, -3.762753564933374, -2.9344984512435675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.361948074467151, -7.0, -7.0, -7.0, -3.5531545481696254, -7.0, -7.0, -3.3960248966085933, -7.0, -7.0, -7.0, -3.437468690682047, -2.7802212717855133, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.703248376536181, -7.0, -3.490716778256952, -3.6730276130332227, -7.0, -7.0, -7.0, -3.514282047860378, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0940827414918974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8742240379133537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.053136089367437, -7.0, -3.0257514993660317, -7.0, -3.221454991793657, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.552242228356702, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3668596440286906, -7.0, -7.0, -3.180719663237752, -7.0, -7.0, -7.0, -7.0, -3.562728923030002, -3.7102020146553847, -7.0, -7.0, -7.0, -7.0, -3.7256898131853, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4363217001397333, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.567514525876742, -4.420351882127958, -4.320082210826953, -7.0, -3.910037123553051, -4.725589057037808, -7.0, -7.0, -7.0, -7.0, -3.7300551523755, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.227668217528221, -7.0, -7.0, -3.0711874222402025, -3.0775317725206657, -2.932008441562367, -2.883590466204705, -4.427510452274621, -2.9008960175253944, -2.4419722269826796, -4.009376523937582, -3.1502259782112434, -3.0148258961140812, -2.404833716619938, -3.112585289100924, -3.478967099332149, -3.4742934117900868, -2.3736671551606547, -2.4772904274083833, -3.3683754441361047, -2.459617346642649, -3.6255182289716377, -2.9885589568786157, -7.0, -3.6836155489902587, -3.839100782707153, -2.6042988785196877, -2.4909740240681018, -7.0, -3.471749972663032, -3.195043800258105, -3.616790486329716, -2.8473315065761877, -3.2580250191096125, -4.0922819190362185, -4.361236616731331, -3.4647875196459372, -2.806179973983887, -4.147026715222231, -7.0, -3.8789524296286104, -2.6317734235564716, -3.6794379916710307, -3.4916417934775863, -4.687716193623689, -4.031724199984835, -7.0, -7.0, -2.7016055229341567, -7.0, -3.777764206446543, -7.0, -3.7018269303971394, -3.214711421005384, -4.272700056789586, -3.998555743525529, -3.5476516583599693, -7.0, -7.0, -7.0, -3.9105710484812586, -4.406948735950354, -7.0, -7.0, -3.958555196376776, -3.6453647152002744, -4.0547789790079305, -7.0, -7.0, -7.0, -3.5842275392635443, -7.0, -5.107608455539725, -7.0, -7.0, -7.0, -4.058805486675907, -3.2855273048983347, -3.951108444044104, -7.0, -7.0, -3.9191304138606142, -3.586222828744241, -4.212600387588411, -7.0, -4.475840612428527, -3.6638892986226614, -7.0, -3.7829372345148538, -7.0, -7.0, -3.5864850094217466, -4.335698551498222, -7.0, -7.0, -7.0, -2.5477747053878224, -3.2477278329097232, -2.378872890939344, -7.0, -3.193301721983993, -3.1094097905463656, -3.1048284036536553, -3.3783797292507396, -2.489657199855414, -7.0, -7.0, -3.2725957412701385, -3.0893751608160995, -2.7223304252478906, -3.0013730929411464, -3.1586639808139894, -2.829089253448099, -3.4061426048653116, -2.395544796132492, -2.136922862547955, -1.2577400940253047, -2.243193126167643, -2.9428344937700954, -2.2764618041732443, -2.239373094599889, -3.571009672309305, -7.0, -7.0, -3.131297796597623, -2.0818871394235496, -3.4055171069763763, -2.7403942733989815, -3.1868151244474543, -2.1817462514719943, -7.0, -2.626993231531775, -4.023787279789847, -2.411198673955554, -7.0, -3.3643633546157306, -7.0, -2.7752020949482215, -2.779776808670381, -3.1063609088067503, -3.3348556896172914, -7.0, -1.7175497146599723, -3.147985320683805, -2.022525403969648, -7.0, -3.161517733138683, -3.277265309456845, -3.160731069351768, -1.5297811767161091, -3.385963570600697, -7.0, -7.0, -3.5951654147902294, -2.694797079605313, -1.4984746552394665, -3.4077307280263356, -2.91053547390048, -3.606703741333674, -3.1573424507933363, -3.379939722801916, -1.8860331716812706, -7.0, -3.157909866226345, -3.475283684857362, -7.0, -1.9351788082734205, -2.253176407377487, -2.762571396673986, -3.3144992279731516, -1.9916169212103128, -7.0, -3.432595198514682, -3.287431711515602, -3.7824009524965296, -7.0, -3.1137861131733655, -2.602150459921541, -3.866582677063549, -3.2205003456147296, -3.023458237643675, -1.7694049362660398, -2.3830455675834847, -2.395527999795712, -7.0, -7.0, -3.2480433647368927, -0.6851016581888254, -7.0, -2.0785311739978143, -3.2306070390410833, -3.3039516339434503, -2.766492517118781, -2.977500833043951, -2.9665439814388943, -7.0, -2.7531232446817127, -7.0, -2.769561935848059, -7.0, -3.5147469246343817, -2.926085086925144, -7.0, -7.0, -7.0, -2.490105540033013, -7.0, -2.956008262860823, -7.0, -7.0, -2.6171751426857073, -2.6869935662646784, -2.32342399587229, -2.592123862385521, -2.1361105172149624, -7.0, -7.0, -2.553883026643874, -3.4094258686714434, -3.131297796597623, -2.7746629225378223, -2.4929155219028942, -2.5960970443542855, -2.4693310102934105, -2.769111350065843, -0.2285455990501929, -2.765058638089037, -2.618346991756171, -3.377306251068199, -2.7712607594199907, -3.4497868469857735, -7.0, -2.86966188853846, -2.9954889428763822, -2.9901908082608895, -2.2254760294652516, -7.0, -2.2835961655447004, -3.093596768608228, -2.624797578960761, -2.7151673578484576, -3.083323418473525, -0.04312571374013441, -2.645053650442902, -3.1889284837608534, -3.3658622154025553, -7.0, -7.0, -7.0, -7.0, -7.0, -3.246867721899116, -7.0, -7.0, -7.0, -3.746993680946003, -7.0, -7.0, -7.0, -3.9419584165308135, -3.4793113232466855, -3.4927603890268375, -7.0, -7.0, -7.0, -7.0, -3.896085085423285, -3.5010592622177517, -7.0, -2.7663452368558756, -3.6100082786464394, -3.4733409641859354, -7.0, -7.0, -7.0, -3.202079441007388, -3.419955748489758, -2.9947800791984687, -3.1720188094245563, -7.0, -7.0, -3.4222614508136027, -3.5809249756756194, -3.3960248966085933, -3.3851592385800426, -7.0, -3.309949384259016, -3.4144719496293026, -4.032984289505631, -7.0, -7.0, -3.5974757898703773, -2.6433116488889414, -2.8359722608046543, -7.0, -3.471731651480051, -7.0, -2.893067889914971, -3.0737183503461227, -3.019605257246508, -7.0, -2.991757539534348, -3.4271614029259654, -7.0, -7.0, -3.1820340262209674, -7.0, -3.473194909204938, -7.0, -7.0, -7.0, -2.7849341224714053, -3.4773672852240134, -7.0, -7.0, -2.4876433104043176, -7.0, -3.857995495560924, -7.0, -7.0, -7.0, -4.176965401689464, -7.0, -3.609914410085998, -7.0, -7.0, -2.216448676782301, -7.0, -7.0, -7.0, -3.183459657707637, -7.0, -7.0, -3.4234097277330933, -7.0, -7.0, -3.4865291479340192, -7.0, -3.3895913074551967, -7.0, -7.0, -7.0, -3.555094448578319, -7.0, -3.751279103983342, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2041587572179706, -7.0, -3.6226284261293253, -7.0, -2.5507317995589878, -2.917437743688254, -7.0, -3.3995006613146104, -7.0, -3.210853365314893, -3.072951369451591, -2.3183615117557332, -7.0, -7.0, -3.725012725341157, -3.784831178124469, -7.0, -3.6207344897857445, -3.9228588613062128, -7.0, -7.0, -7.0, -3.47006442579016, -3.4940153747571436, -3.6620964454179235, -3.766784515497859, -7.0, -3.4470028984661623, -2.235427436444969, -3.2016701796465816, -7.0, -7.0, -3.9231403560252005, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6195802468903406, -3.252731702726023, -4.206015876763344, -3.8218409272004545, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.929776432804902, -7.0, -7.0, -7.0, -3.6093334933375862, -7.0, -7.0, -7.0, -3.5182506513085, -7.0, -7.0, -7.0, -3.6334684555795866, -3.3200423754796446, -7.0, -3.1919165461654937, -3.242913946818925, -3.4282968139828798, -3.6555850665814984, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5303704785756733, -7.0, -3.6205316347204755, -7.0, -7.0, -3.2883065634754933, -7.0, -3.817036226050029, -3.274619619091238, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2335037603411343, -3.4823017672234426, -7.0, -7.0, -7.0, -7.0, -3.275886960301226, -7.0, -7.0, -2.5774279658572614, -7.0, -2.644206811219827, -7.0, -3.0580462303952816, -3.1024337056813365, -3.4276483711869328, -3.5639554649958125, -3.304167271724397, -7.0, -2.8459244807620387, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6971421262754594, -3.7496590320949, -3.7087041048933, -3.755292559435586, -7.0, -3.4111144185509046, -2.9535986331436197, -7.0, -7.0, -7.0, -3.5947239464097467, -3.0657041722395175, -7.0, -7.0, -7.0, -7.0, -3.09324653110384, -7.0, -3.3710678622717363, -7.0, -3.629006478444398, -7.0, -7.0, -7.0, -7.0, -3.4520932490177314, -3.441695135640717, -7.0, -7.0, -3.8203328448994096, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.313906259830001, -3.284092190642834, -3.8572601079850797, -7.0, -4.123851640967086, -7.0, -7.0, -7.0, -3.0642707529740063, -7.0, -2.8614149186359965, -3.844725627973226, -3.9398186628213794, -3.5276299008713385, -7.0, -3.373095987078727, -7.0, -7.0, -3.3502480183341627, -7.0, -3.400192488592576, -7.0, -3.3944516808262164, -2.940142791106066, -7.0, -3.298525595321999, -4.011866356527724, -7.0, -3.655234507034294, -3.5309676815719153, -4.058381732260055, -2.8352374734003063, -7.0, -3.8472846790838813, -7.0, -7.0, -3.752739693935328, -7.0, -4.034387783589566, -3.220631019448092, -3.2952921430163506, -7.0, -3.409510452269316, -3.6120417446452695, -4.3243750674682415, -3.361963801512071, -7.0, -7.0, -7.0, -3.873959654743353, -7.0, -7.0, -3.4413808849165113, -7.0, -7.0, -3.58983794314746, -7.0, -3.3546205789259758, -7.0, -3.485863329597335, -3.1719457389302472, -7.0, -4.168709570145828, -3.940831798389784, -3.9677663165382757, -3.45117215751254, -2.998586244334432, -3.724865454175407, -3.2870175013221017, -7.0, -3.473778834646725, -7.0, -3.241048150671644, -3.5948895496460347, -3.848312303627284, -7.0, -7.0, -7.0, -3.154017995537149, -7.0, -7.0, -3.4560622244549513, -3.4914317356829696, -3.409087369447835, -2.8180446732975755, -7.0, -7.0, -4.614485917334474, -4.784809794314824, -4.310204588898006, -7.0, -4.250257314731827, -7.0, -3.969974730121715, -4.30894838630958, -4.0452391300593185, -3.7504698234687637, -7.0, -7.0, -7.0, -5.005450789574089, -3.5594713511516147, -7.0, -4.212542710296108, -3.8176518028993587, -7.0, -4.348402227577635, -7.0, -5.39111337840658, -7.0, -7.0, -7.0, -4.364813556261336, -4.6748519589392314, -4.2333769034738955, -7.0, -4.48602646088109, -7.0, -4.215998664514626, -7.0, -4.2396747876467815, -7.0, -7.0, -7.0, -7.0, -4.2322335211147335, -4.030296054911111, -7.0, -3.644885992908976, -3.730095580067584, -7.0, -7.0, -4.062337507279505, -7.0, -4.198507132018743, -3.109953326425318, -2.843321781988454, -2.4081506686153484, -3.766793803133404, -3.115934425853832, -3.5299434016586693, -3.4228583372213346, -3.924641047417163, -7.0, -7.0, -3.4500265994660992, -3.8073320392911905, -3.4727564493172123, -3.522048449634903, -3.8468851178579158, -4.260742423565542, -7.0, -3.345765693114488, -3.4109458586877746, -3.6415826941573264, -7.0, -4.505289065996569, -3.659821158055705, -3.220155653286464, -7.0, -3.3568477513592394, -3.505436397572418, -3.347775931528265, -7.0, -3.3554515201265174, -7.0, -3.0620606254686873, -4.210719715681002, -7.0, -3.4606456955356406, -3.6632249190405806, -7.0, -3.6184064694663602, -7.0, -3.754654069255432, -3.422210117588728, -3.8556604651432527, -7.0, -7.0, -7.0, -3.0681858617461617, -7.0, -3.171670744519088, -2.563912360982884, -2.8881284154728792, -7.0, -3.5660837841679958, -2.7411332683893193, -7.0, -2.975316900589052, -7.0, -2.689012715585447, -7.0, -1.8210315087287055, -2.72709742001302, -3.4382258076045296, -3.115388593181018, -3.703320043475056, -1.7137937806530432, -2.1273116216794095, -7.0, -7.0, -3.287745760540123, -2.8318697742805017, -2.4967759427161327, -3.076640443670342, -2.325395921692999, -3.0382226383687185, -2.4761792624817036, -7.0, -7.0, -3.46912743091224, -3.4282864740894166, -3.845931361165108, -7.0, -3.3557387836020354, -2.568536957184299, -2.0343164474392905, -2.3447664235957415, -7.0, -2.57467419083833, -2.6086820021484174, -7.0, -7.0, -3.1441589128307523, -2.523876475638131, -3.3405763000433617, -2.823963024361914, -3.544811911757776, -2.8870543780509568, -3.1398790864012365, -2.959279950130939, -2.756560043006683, -2.8422097046404304, -7.0, -2.3947017784328417, -2.470081735600318, -7.0, -4.197776611271387, -7.0, -3.3830969299490943, -3.683272236315922, -2.8914259428479943, -2.8004219198943976, -2.55201267714712, -3.1531285942803624, -7.0, -7.0, -3.9457147140598603, -3.427323786357247, -1.7276816577351548, -2.2925968281271185, -2.4144162029529017, -2.606327612467192, -3.513217600067939, -7.0, -2.2960066693136723, -2.8273986480399302, -2.624134702492355, -3.610553705317095, -2.58399378491216, -2.8913515837206996, -3.255754786643044, -3.0253058652647704, -2.396164462603818, -3.8036619232362243, -2.25433319950825, -3.015778756389041, -3.360593413565249, -7.0, -2.8346149517300243, -7.0, -2.8627275283179747, -2.707759369950592, -3.597158688659135, -3.112157966516305, -2.7326617601288525, -2.4610279826243358, -7.0, -2.425457496801941, -7.0, -2.6459132750338443, -7.0, -2.67493176346858, -2.502836638621003, -7.0, -3.350829273582968, -2.7724439571056845, -3.0064660422492318, -2.458309335786155, -2.979700093301936, -3.410608542568368, -3.3517963068970236, -7.0, -7.0, -7.0, -3.381656482585787, -3.9089673004183876, -3.0622058088197126, -3.0992200954861304, -3.4202858849419178, -7.0, -2.907052884087371, -2.7091002815511667, -2.85079934446789, -2.0985613248146464, -1.9341827155103566, -2.2991097516428893, -2.167257037006753, -2.1316769784790424, -3.019324037153691, -2.4409090820652177, -3.350829273582968, -1.9420936198597298, -2.2771178382585697, -3.3404441148401185, -1.212640474666788, -2.243348148293831, -2.3288498736329326, -1.921773152358833, -2.2835961655447004, -7.0, -2.7664128471123997, -2.261537362311736, -2.0054225267100447, -2.8808135922807914, -0.18221499328361404, -2.2488762999185097, -2.9922588811302626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.204152553520675, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.341221485894443, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.38773380319581, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.14082846053363, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6285932558512592, -7.0, -3.8948696567452528, -3.781468142841798, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.06905111359728, -4.448010273039476, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5650209283452936, -3.2753113545418118, -7.0, -7.0, -7.0, -7.0, -3.166873950858819, -7.0, -7.0, -7.0, -4.229914666155714, -7.0, -4.0124153747624325, -7.0, -7.0, -3.3939260065858368, -3.20682587603185, -3.3492775274679554, -3.5634810853944106, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4880333912672628, -7.0, -7.0, -7.0, -3.6121478383264867, -3.4204508591060683, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.614158709509175, -7.0, -7.0, -4.452077913489846, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4504910489855627, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.419625360887743, -3.714664992862537, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.814713612695977, -7.0, -7.0, -7.0, -3.9374928165543124, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.673922062342239, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.4668676203541096, -7.0, -4.030842502824917, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.235697586817248, -7.0, -7.0, -7.0, -7.0, -2.4345689040341987, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.163494325730938, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2271150825891253, -7.0, -7.0, -7.0, -7.0, -7.0, -3.70922754733432, -7.0, -4.230704313612569, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4287825114969546, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6177863946963984, -7.0, -7.0, -7.0, -5.131323474743548, -3.8822968009376515, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.983184100935266, -3.558048229082988, -7.0, -7.0, -7.0, -7.0, -3.5970366649776535, -7.0, -7.0, -7.0, -7.0, -3.280805928393667, -7.0, -7.0, -7.0, -7.0, -3.2974322048101694, -7.0, -4.855906637526463, -7.0, -4.79600507614726, -7.0, -3.778729923996112, -5.0178760546701096, -3.7613263224214566, -7.0, -7.0, -7.0, -3.5118833609788744, -3.7701890227359933, -7.0, -7.0, -7.0, -7.0, -3.3619166186686433, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8014860329219524, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.879193398354936, -7.0, -7.0, -7.0, -4.717196014288484, -7.0, -7.0, -7.0, -7.0, -4.921535616470937, -7.0, -7.0, -7.0, -5.387605140301401, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.310841945164296, -7.0, -4.66838591669, -4.0652696604655, -3.57316180901509, -7.0, -7.0, -7.0, -4.757841230761179, -3.983581186705791, -3.4641913706409997, -3.9609461957338317, -4.359674251406698, -4.2015518767496935, -7.0, -3.9568085108888016, -7.0, -7.0, -7.0, -4.369271532621027, -7.0, -7.0, -3.9114461543905747, -4.311539132333878, -5.706258501394493, -7.0, -7.0, -7.0, -4.255537826224604, -7.0, -5.103998596797865, -7.0, -4.212240888801534, -7.0, -7.0, -4.127962816184046, -3.8269525871117778, -7.0, -3.7314813197428696, -3.790988475088816, -4.897137547015729, -4.007292482997014, -7.0, -3.7119857714490196, -4.352910557168874, -7.0, -4.502034790128414, -7.0, -7.0, -3.651418016932037, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.511512010394553, -2.8380090624639394, -3.5757649805367193, -7.0, -3.230959555748569, -3.736197238918293, -7.0, -7.0, -7.0, -3.1280760126687155, -7.0, -3.5403155682447576, -2.6873059601920692, -2.403120521175818, -3.287129620719111, -7.0, -3.2757719001649312, -1.6386436178881632, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8944545273697826, -7.0, -3.400796934733158, -7.0, -7.0, -7.0, -3.771468489379099, -4.3092965124823595, -7.0, -3.1067007323623543, -3.625312450961674, -7.0, -2.9544033294677883, -7.0, -2.8494194137968996, -3.9446553685692547, -7.0, -2.639486489268586, -3.0419845014867866, -2.8379039445929424, -7.0, -7.0, -7.0, -7.0, -2.591064607026499, -7.0, -3.9766250520507276, -7.0, -7.0, -7.0, -3.185825359612962, -7.0, -3.8384082784941866, -7.0, -7.0, -7.0, -7.0, -3.665518453112754, -3.1264561134318045, -3.570192561095726, -7.0, -7.0, -3.8353734524700087, -7.0, -3.28004693749461, -7.0, -3.2884728005997825, -3.0090966299483104, -7.0, -7.0, -2.9326186985953693, -3.628256066711006, -7.0, -7.0, -3.6989048552774317, -7.0, -7.0, -3.0806264869218056, -3.0232112923288885, -7.0, -2.807873132003332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.419625360887743, -4.049579784025463, -7.0, -3.677728586801082, -2.5547326248656144, -7.0, -3.110252917353403, -7.0, -3.1970047280230456, -7.0, -3.6226284261293253, -7.0, -7.0, -7.0, -7.0, -7.0, -3.186850431506691, -2.6459132750338443, -7.0, -2.428134794028789, -2.4099331233312946, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9523080096621253, -7.0, -7.0, -0.5818566052396754, -1.2463344173155233, -2.1527977807838794, -2.362356792654536, -1.679427896612119, -1.71008600924148, -2.1075596150108513, -2.1607369894368547, -3.6337713460825554, -1.9389642436205232, -7.0, -2.6597804193959593, -1.7494786504876951, -7.0, -2.501618091969828, -1.178401341533755, -1.1981787890185196, -2.093561757565289, -3.093596768608228, -2.7664128471123997, -7.0, -1.6020599913279623, -1.8681435345415003, -1.872156272748293, -3.0308020487722676, -1.3627205095512707, -2.6852937813867843, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.125112419666765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.2706986292759455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.564168766882124, -3.0211892990699383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.663870464975706, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.652386032176815, -3.1240148788874076, -3.295567099962479, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2522460504731185, -4.448876295154121, -7.0, -7.0, -3.3811150807098507, -7.0, -7.0, -7.0, -7.0, -7.0, -5.1250386128538095, -7.0, -7.0, -7.0, -7.0, -3.267054335651413, -7.0, -7.0, -7.0, -3.4243915544102776, -7.0, -7.0, -7.0, -7.0, -7.0, -4.230057880349691, -7.0, -4.014772474073064, -7.0, -7.0, -7.0, -7.0, -3.3600250891893975, -3.5700757053216043, -7.0, -3.845035993513415, -7.0, -7.0, -7.0, -3.666845449884052, -7.0, -3.3560258571931225, -7.0, -3.618048096712093, -3.7738412766815257, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0141003215196207, -7.0, -4.75355241975346, -7.0, -7.0, -7.0, -7.0, -3.0773679052841567, -7.0, -7.0, -7.0, -7.0, -3.393684859748368, -7.0, -7.0, -7.0, -4.0646825662285115, -7.0, -7.0, -7.0, -7.0, -7.0, -4.024239306069092, -3.0196977309801922, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.215967850531294, -7.0, -7.0, -7.0, -3.762053049458416, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.452146919101275, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.052143512563366, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5928426831311002, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7328760413627067, -3.3236645356081, -7.0, -7.0, -4.052943906657025, -3.368100851709351, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.9347096555283905, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.242963591821483, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3697722885969625, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4092143375767625, -7.0, -4.055301864347441, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.954531942626914, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.407900540142635, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6207084880206177, -7.0, -7.0, -7.0, -4.8304667668642045, -3.4081268530617237, -7.0, -4.282984440133955, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.527294707559675, -7.0, -7.0, -7.0, -7.0, -7.0, -3.603144372620182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6873505695580273, -7.0, -7.0, -3.30352003690728, -7.0, -4.555203310987142, -7.0, -4.6991240068041105, -7.0, -3.4815859363676225, -4.540971472183699, -3.7655195430979527, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.294466226161593, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.899191030527895, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.069409070671793, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.416615547168045, -7.0, -7.0, -7.0, -7.0, -4.620786488646187, -7.0, -7.0, -7.0, -4.785634090525506, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.773208463509772, -7.0, -4.675879115620618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.311435968289161, -7.0, -7.0, -4.024078722515256, -7.0, -3.6414741105040997, -3.8484149324724117, -7.0, -4.456937629729642, -3.9860996250551297, -7.0, -3.8368619025833786, -3.961942883141387, -4.07710434122473, -7.0, -3.3931762188759738, -7.0, -7.0, -3.7834747875822465, -4.370309495258699, -3.652536418593025, -7.0, -3.844730063328676, -4.186665390621664, -4.928146539379594, -7.0, -7.0, -7.0, -4.1766169196757135, -7.0, -5.405127706268088, -7.0, -4.213730203854841, -7.0, -4.017763509129315, -4.42992983624063, -3.82735491122635, -7.0, -4.210211471641834, -3.3175061899448455, -4.198431635107324, -7.0, -7.0, -3.5624316578638844, -4.256260606512207, -7.0, -4.6482799763089355, -7.0, -7.0, -3.9073791099869006, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9896425968775038, -3.327563260187278, -3.7023730862857875, -2.7075701760979367, -7.0, -3.640362163527487, -7.0, -7.0, -7.0, -3.2576785748691846, -7.0, -3.380892771727473, -2.6421346345582744, -7.0, -7.0, -7.0, -7.0, -1.6126819933483518, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9021389272114826, -7.0, -3.704407927386841, -7.0, -7.0, -7.0, -3.8151441461710167, -4.485799478932974, -7.0, -7.0, -3.025510672852581, -7.0, -3.4410664066392633, -7.0, -2.6896048008603892, -3.205228977537763, -7.0, -7.0, -3.052886235256382, -2.855216194733363, -7.0, -7.0, -7.0, -7.0, -7.0, -3.236537261488694, -7.0, -7.0, -7.0, -3.0444090865590487, -3.0173116440067362, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2962262872611605, -3.6225737162947587, -2.6570558528571038, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.300812794118117, -3.1894201246920386, -7.0, -7.0, -3.0037476689675056, -3.9299601790626792, -3.601408060534684, -3.3334472744967503, -4.0012359788389915, -7.0, -7.0, -3.100370545117563, -3.326949994165999, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.31093828432423, -3.682222460833141, -7.0, -7.0, -2.437650707791632, -7.0, -2.9431646302222556, -7.0, -7.0, -7.0, -3.1508587351103174, -3.651278013998144, -3.671820560183249, -7.0, -7.0, -3.0511525224473814, -3.069562390574965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2671717284030137, -7.0, -7.0, -1.9138138523837167, -1.458098017406232, -2.3584107862063366, -1.6830470382388496, -1.6806507621222833, -1.1927969525585338, -1.990387803953575, -2.2271852867246182, -7.0, -1.3380135619171512, -7.0, -2.0291131048924633, -1.6544172149137142, -7.0, -2.3821706787275887, -1.5365584425715302, -1.4655952723291037, -1.5807824672307302, -2.624797578960761, -2.261537362311736, -1.6020599913279623, -7.0, -1.6818870285457388, -1.765916793966632, -2.4903598606751274, -1.237360915794604, -2.0038911662369103, -2.4099331233312946, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3052304166418587, -7.0, -7.0, -7.0, -4.2356041893398375, -7.0, -3.1478308499434595, -7.0, -7.0, -7.0, -7.0, -4.3677844122811535, -3.9645895874899035, -7.0, -3.7885925559203595, -3.5911713115781194, -7.0, -7.0, -7.0, -7.0, -3.4608978427565478, -7.0, -3.8332340664594575, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8035284989545763, -7.0, -7.0, -3.563599728881531, -7.0, -3.0704073217401198, -7.0, -7.0, -7.0, -3.452706226511029, -7.0, -3.05240929690904, -3.1549309119861473, -3.075501339828131, -2.932980821923198, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7148325124333326, -2.52134380601364, -7.0, -7.0, -3.6055205234374688, -7.0, -7.0, -3.285932185579952, -7.0, -7.0, -4.528225519543581, -7.0, -7.0, -7.0, -7.0, -2.9548693710664784, -3.5524248457040857, -7.0, -7.0, -7.0, -7.0, -2.965107585849056, -7.0, -7.0, -7.0, -3.702597774525026, -3.6957442751973235, -3.29968885235135, -7.0, -7.0, -7.0, -3.517591730711908, -3.5930644316587173, -3.1252372114756253, -7.0, -3.8927900303521317, -7.0, -7.0, -7.0, -3.1924878028123604, -7.0, -3.1131631489984994, -7.0, -3.761702367541413, -2.956682855238677, -7.0, -7.0, -7.0, -7.0, -3.711992713282365, -3.4220971631317103, -7.0, -3.564547711755948, -3.3988077302032647, -3.763128376799137, -7.0, -3.7379343926406476, -4.76583985498647, -7.0, -3.9259305978684713, -7.0, -4.398456511847029, -7.0, -7.0, -7.0, -7.0, -7.0, -2.988072261480011, -3.651278013998144, -7.0, -7.0, -3.616842959534867, -7.0, -7.0, -7.0, -7.0, -7.0, -3.04429025803639, -2.5557306843819765, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1101181270103275, -3.214949760615447, -7.0, -7.0, -7.0, -3.1124254445460724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5035183127240748, -3.602385590105105, -3.589279221235967, -7.0, -3.479191276121532, -3.2043913319193, -7.0, -3.9494174541647484, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.693682989767589, -7.0, -4.313445370426414, -7.0, -7.0, -3.3389408586501794, -7.0, -3.796921075330169, -3.728597243383432, -7.0, -7.0, -7.0, -7.0, -7.0, -3.194097885578952, -7.0, -3.371437317404101, -7.0, -7.0, -7.0, -7.0, -4.370846038235976, -7.0, -3.42719388446982, -7.0, -3.859018143888894, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.685096533739927, -3.0323668937196664, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.50781091134775, -7.0, -3.7002132007860378, -4.435452056925035, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.504742636271688, -3.0232524596337114, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.511749711344983, -3.745708976279389, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8003733548913496, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0439317931257013, -7.0, -3.8536617149080574, -7.0, -4.422483140648195, -7.0, -7.0, -7.0, -3.576418141733162, -7.0, -3.7255441224863532, -3.348499570283838, -3.924744352479949, -7.0, -7.0, -7.0, -7.0, -3.64018319192134, -3.6216954623292787, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5660837841679958, -3.521835185750824, -7.0, -3.625723909525756, -3.4912215762392833, -4.291555951352488, -3.1232447909446885, -7.0, -7.0, -7.0, -7.0, -3.7293268096468606, -7.0, -4.022304622935068, -3.6714505542124947, -7.0, -7.0, -7.0, -7.0, -4.382181127004978, -3.1043895499322467, -7.0, -7.0, -7.0, -7.0, -3.751048034820188, -7.0, -7.0, -3.006359059989323, -7.0, -3.254064452914338, -7.0, -3.2101177828307916, -7.0, -7.0, -2.9061810639690853, -7.0, -4.388829153898841, -4.112001395486189, -3.807852333206259, -7.0, -2.884965198200733, -3.6629260984538985, -3.5713011255662694, -7.0, -7.0, -7.0, -2.914078585389112, -3.5781806096277777, -3.5284667540562014, -3.5559404378185113, -7.0, -7.0, -3.2990712600274095, -7.0, -3.393399695293102, -7.0, -3.470116353151004, -7.0, -3.267341239709708, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.7249881836146805, -3.79742336017649, -7.0, -4.129657673312688, -4.587699742794285, -7.0, -7.0, -4.334956116136851, -4.730992107059345, -7.0, -7.0, -7.0, -4.209899096974045, -3.975880934391388, -7.0, -7.0, -7.0, -4.691604806712127, -4.3070251187186726, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3078097005972085, -7.0, -4.389485040708147, -4.051808294317092, -3.75495958772171, -7.0, -4.13325141247232, -7.0, -4.4747697096158685, -3.4462004946297733, -3.8511461924705577, -2.822494985278751, -3.139114126747177, -3.0886085331114645, -2.882144909887086, -3.4774830160749435, -3.403234944699574, -3.2706788361447066, -4.008677806857828, -2.8218601782690493, -2.455320799214393, -2.7381670529898856, -3.5070132546179886, -3.1617026236005494, -7.0, -2.927626962444954, -3.6078837443569896, -7.0, -7.0, -2.9671664837366802, -7.0, -3.426998958756537, -3.152428134995643, -3.7495269157653, -4.365235196874075, -3.34143452457814, -2.8020892578817325, -2.8798601462734688, -2.9979369293522593, -7.0, -4.261726661736097, -3.525304009958239, -2.7091972493398817, -7.0, -3.271880311984758, -3.3759073599933274, -3.0070688591807055, -7.0, -3.0468608244404245, -3.1961761850399735, -3.7922300113372116, -3.7295022630813444, -7.0, -3.0868325865723842, -2.875526160477312, -7.0, -3.4750820463296552, -7.0, -7.0, -2.702804123119662, -3.724644453746363, -3.0213960567419713, -7.0, -7.0, -3.3106933123433606, -3.822429623779357, -3.109437921160224, -2.492644002993204, -3.019090315119938, -7.0, -3.529558673021163, -2.6444757499437666, -7.0, -2.93976877545335, -2.8565275017950387, -2.1902071514295747, -7.0, -2.5771993708172927, -2.2807196273157855, -7.0, -7.0, -3.6947221648599164, -2.0684332525144025, -1.4883383994676636, -7.0, -7.0, -2.9692994014258773, -7.0, -3.4055171069763763, -7.0, -2.9045352278661247, -7.0, -2.52363499968979, -7.0, -3.3234583668494677, -3.767166471434543, -3.057531251859636, -4.7982361763679355, -3.2830749747354715, -3.326335860928751, -2.681456607814865, -7.0, -2.9425041061680806, -7.0, -2.8883199286752164, -2.8069483569904206, -7.0, -7.0, -2.986995539724382, -2.7064332788991994, -7.0, -2.528549432194961, -7.0, -3.446070935701005, -3.391816923613249, -3.2238851518758858, -3.570348319900194, -3.1541449043022327, -7.0, -2.9952841076892596, -2.977266212427293, -7.0, -4.189518386126378, -7.0, -7.0, -3.9708116108725178, -3.5569052690554477, -2.9672702005446325, -2.523246069841925, -2.953437514803095, -7.0, -7.0, -3.0270436588491743, -7.0, -2.2413804341476116, -7.0, -2.603264692466333, -2.5104332945836414, -7.0, -7.0, -2.48521019101124, -3.1261609360385996, -3.147289769269514, -3.577721524509021, -2.973569556684414, -3.6419695977020594, -2.8846695179666737, -2.6135398090113924, -2.320647574215737, -7.0, -2.2642273477562327, -7.0, -3.300378064870703, -7.0, -3.541579243946581, -7.0, -3.1177682949263725, -2.6787206587279364, -3.4685073300813962, -3.2539434626692585, -3.0264787870418024, -1.309076483900133, -2.7013520792687795, -2.7251967440975706, -3.3805730030668872, -3.2115209972402297, -7.0, -2.688345653360757, -2.939875669940144, -7.0, -7.0, -2.73453314583352, -3.4396484295634737, -2.219123803572551, -2.8068580295188172, -7.0, -2.98878184345364, -7.0, -7.0, -3.3014640731432996, -7.0, -7.0, -3.199618067707931, -3.0635835285910997, -3.0668847431297714, -7.0, -1.9573782232921835, -2.04766419460156, -2.255272505103306, -1.919078092376074, -1.422175743255142, -1.372730958925838, -0.8312446358989443, -2.130333768495006, -3.2997251539756367, -1.7900504736833514, -2.9876662649262746, -1.7192391876340223, -1.2014587307439752, -2.9756615331810585, -1.2576917341781915, -1.5756568260144563, -1.6998738433342633, -1.2961115457914827, -2.7151673578484576, -2.0054225267100447, -1.8681435345415003, -1.6818870285457388, -7.0, -2.1789769472931693, -2.375480714618573, -1.4458136965328934, -2.1881837659757917, -3.2750808984568587, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.601967693943614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.726528116611382, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.5385674505657745, -7.0, -7.0, -7.0, -7.0, -3.617734035364018, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8279290141975606, -7.0, -3.4143046881283317, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.760045327965811, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.608312042697327, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.8627275283179747, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530821869196451, -7.0, -4.009960531470598, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6614813978436156, -7.0, -7.0, -7.0, -7.0, -3.771752789954584, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.692384188868911, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.061728851738383, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.562530768862261, -7.0, -7.0, -5.15096663048619, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.507905964887182, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.7647737169110402, -7.0, -3.7393349601960795, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.351815625616891, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.1240475191100305, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.6464037262230695, -7.0, -7.0, -7.0, -4.640367133908332, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.009110806132213, -7.0, -4.531018832208792, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3881012015705165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.053462604925455, -7.0, -7.0, -4.830100855967594, -3.577836341292744, -7.0, -7.0, -7.0, -7.0, -3.5588285248170117, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1899112096928057, -7.0, -5.129277309831823, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6770591773921617, -7.0, -7.0, -3.5922878159521305, -7.0, -7.0, -7.0, -5.097008441935764, -7.0, -3.7745169657285498, -5.017634254197808, -3.756940236046724, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8651039746411278, -7.0, -7.0, -7.0, -4.022593314021462, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.710506616470952, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.996621107579201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.772373056075185, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.667845041827829, -4.286931523511091, -7.0, -7.0, -7.0, -7.0, -5.234825937948012, -3.378624983035352, -3.1541195255158465, -4.437211322624582, -4.961487538412329, -4.377133154598361, -7.0, -3.587775086454419, -7.0, -7.0, -7.0, -4.368193878266824, -7.0, -7.0, -4.513328601853055, -4.373610728312931, -5.706208958819606, -7.0, -7.0, -7.0, -4.352177692590311, -7.0, -5.103899460366908, -4.067182485523405, -7.0, -7.0, -7.0, -7.0, -4.081865559037354, -7.0, -4.207149453209543, -7.0, -4.896818220919975, -4.48364434340033, -7.0, -3.8630153739209696, -4.477579434897986, -7.0, -4.501921514596224, -7.0, -3.5618166643189575, -3.906151802007568, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9879491492900074, -2.700270937356437, -3.574089169798587, -7.0, -7.0, -3.638089721984506, -7.0, -2.9407654356312176, -7.0, -2.8216772586543666, -7.0, -3.5910924455241147, -2.6807886115066824, -7.0, -7.0, -4.117834518543748, -7.0, -1.5752928357372873, -7.0, -7.0, -7.0, -7.0, -2.904715545278681, -7.0, -7.0, -7.0, -4.00060758706289, -7.0, -7.0, -7.0, -3.814745129621724, -4.484989890267077, -7.0, -7.0, -3.077731179652392, -7.0, -2.7224693858840308, -7.0, -7.0, -3.2438562328065057, -7.0, -7.0, -7.0, -2.819214799882384, -7.0, -2.8027737252919755, -7.0, -7.0, -7.0, -2.7286242862229995, -3.9739586861067036, -4.187351482223461, -7.0, -3.205610309902521, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2704459080179626, -3.755616898414391, -3.116939646550756, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9738203243526837, -3.08429022853693, -7.0, -7.0, -3.7743709598499167, -3.928795137632244, -3.287577809078705, -7.0, -4.299834040645859, -7.0, -7.0, -7.0, -3.0666571634232116, -7.0, -3.089551882886454, -3.0322157032979815, -7.0, -7.0, -4.354703744625813, -7.0, -2.946452265013073, -3.1085650237328344, -3.9238654751855013, -7.0, -4.153204900084284, -2.8176027845485527, -7.0, -2.7013952690139202, -7.0, -2.4794313371977363, -7.0, -3.0138900603284386, -7.0, -7.0, -7.0, -3.1832698436828046, -7.0, -3.4871383754771865, -2.439332693830263, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.7737864449811935, -7.0, -1.7993405494535817, -2.2430380486862944, -1.8959747323590646, -2.019116290447073, -1.6289099792812627, -1.6144357966418779, -2.371102729959275, -2.5352941200427703, -7.0, -1.5935321959484976, -2.0064660422492318, -2.214843848047698, -1.8920946026904806, -7.0, -2.745018994770533, -1.5133334273741073, -1.1951914409557332, -2.01976069751232, -3.083323418473525, -2.8808135922807914, -1.872156272748293, -1.765916793966632, -2.1789769472931693, -7.0, -3.627570664180543, -1.4142910312838815, -2.2576785748691846, -2.155336037465062, -7.0, -7.0, -7.0, -7.0, -7.0, -3.438463235117634, -7.0, -7.0, -7.0, -3.6124924639062823, -7.0, -7.0, -7.0, -3.9880235619286597, -3.4569513503619937, -3.7048366062114035, -7.0, -7.0, -7.0, -7.0, -2.9597907046081344, -3.5823664295547846, -7.0, -2.844010944373043, -3.542598380426847, -3.693023067923694, -7.0, -7.0, -7.0, -3.7113853790984517, -7.0, -3.131111922645758, -3.693023067923694, -7.0, -7.0, -3.6629466143326246, -3.7610252517113727, -3.648067129448935, -3.5323083932754162, -7.0, -3.4800788400654854, -3.658488381309017, -3.9768449851151355, -7.0, -7.0, -3.772028165324855, -2.857073910843454, -2.653694795315082, -7.0, -3.6920533650340808, -7.0, -3.007150105366685, -3.0421027680373025, -2.9682365578051644, -7.0, -3.0707764628434346, -3.522009286567709, -7.0, -7.0, -3.3371263410122576, -7.0, -3.692935002531138, -7.0, -7.0, -7.0, -2.9175055095525466, -3.550595207489328, -7.0, -7.0, -2.5408159235773624, -7.0, -3.9623219727295846, -7.0, -7.0, -7.0, -4.137442733854849, -7.0, -3.7803893284709527, -7.0, -7.0, -2.3000983660999252, -7.0, -7.0, -7.0, -3.5143484893019368, -7.0, -7.0, -3.5599066250361124, -7.0, -7.0, -3.3530464870062326, -7.0, -3.374687259508575, -7.0, -7.0, -7.0, -3.4429498695778618, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.2741248469093267, -7.0, -3.7890163267933747, -7.0, -2.6726410656136697, -2.9221905350019726, -7.0, -3.6500159524718385, -7.0, -3.4156409798961542, -2.8127579461985768, -2.646849110819487, -7.0, -7.0, -3.86135516019326, -3.6047119317276204, -7.0, -3.668874921546896, -3.526798605282374, -7.0, -7.0, -7.0, -3.4784561468433646, -3.705607163404605, -3.8163075994319398, -7.0, -7.0, -3.677333151419902, -2.252704839216663, -3.3509583358370834, -7.0, -7.0, -2.715263899914411, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5578078557646045, -3.260739019910411, -3.9548693710664784, -3.3317814715707588, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.019739232674706, -7.0, -7.0, -7.0, -3.6319620874766763, -7.0, -7.0, -7.0, -3.7206553565517244, -7.0, -7.0, -7.0, -3.796435558810175, -3.3106933123433606, -7.0, -3.3538777790648417, -3.4359239581191647, -3.6664243725187595, -3.4987724041202775, -3.6578204560156973, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6068111469189637, -7.0, -3.455244683982738, -7.0, -7.0, -3.178242157957572, -7.0, -3.4531143980466226, -3.1818435879447726, -3.118677985690463, -3.485437481076301, -7.0, -7.0, -7.0, -3.4299136977637543, -3.6036855496146996, -7.0, -7.0, -7.0, -7.0, -3.4573519461106943, -7.0, -7.0, -2.5194090466884345, -7.0, -2.799570274125377, -7.0, -3.129125716306038, -3.351216345339342, -3.666049738480516, -3.268577971882843, -3.4761792624817036, -7.0, -3.0118522700068455, -3.468363743347739, -2.889781762778371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5989363410431636, -3.8794972872494284, -3.538925450303585, -3.4879554190332436, -7.0, -3.656577291396114, -3.190705124231049, -3.7062909572587635, -7.0, -7.0, -3.7701890227359933, -3.2591158441850663, -7.0, -7.0, -7.0, -7.0, -3.3460594330525737, -7.0, -3.634275694625944, -7.0, -2.9961736756972437, -7.0, -7.0, -7.0, -7.0, -3.680335513414563, -3.6742179455767, -7.0, -7.0, -3.455656815340888, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.3268387244988404, -3.4627722284106115, -3.010299956639812, -7.0, -3.184801803914325, -7.0, -7.0, -7.0, -3.0178997784978576, -7.0, -2.963180469568511, -3.4746047207049298, -4.027920136405803, -3.7265642161622448, -7.0, -3.6353832040474985, -7.0, -7.0, -3.5077209766856137, -7.0, -3.6504046698680317, -7.0, -3.6471872978959894, -3.1337783429891113, -7.0, -3.4723907276266286, -4.087603973687808, -7.0, -3.510343901389912, -3.4274861090957858, -3.317296035535606, -2.9160024989438855, -7.0, -3.5176859234556574, -7.0, -7.0, -3.881783955593385, -7.0, -3.5043349118024643, -3.5407047833107623, -3.391508491461765, -7.0, -3.5497999641845497, -3.781827152932428, -3.6157691968961876, -3.445720933413234, -7.0, -7.0, -7.0, -3.9749259860897626, -7.0, -3.6578204560156973, -3.674034000431255, -7.0, -7.0, -3.766933093837284, -7.0, -3.464688218289176, -7.0, -3.700617195682057, -3.2956220704684576, -7.0, -4.180091451515921, -3.847186928162049, -3.9231276844541685, -3.6797911709803546, -3.0939467238905833, -3.8297458846919756, -3.3848907965305544, -7.0, -3.693287157005656, -7.0, -3.254185409462092, -3.9925093350677754, -3.954724790979063, -7.0, -7.0, -7.0, -3.4939457483871506, -7.0, -7.0, -3.682686478249768, -3.610606937465461, -3.6554265877459184, -2.8259280154703044, -7.0, -7.0, -3.0899151994635075, -3.081838720394356, -2.9510848355357298, -2.9965116721541785, -4.044022061416491, -2.930821728079435, -2.5060022200171628, -3.852134209659975, -3.137163053129165, -3.0064660422492318, -2.5038474053823325, -3.1470030416463004, -3.4932798661842517, -3.4571709418412215, -2.3604532331928016, -2.5101618655131217, -3.3639536750174837, -2.444300082182316, -3.683737275960329, -2.9861444647105206, -7.0, -3.6868097001081455, -3.875620660301091, -2.620933784949581, -2.5420569281178227, -4.400054211274874, -3.4617368034318816, -3.2007365309762705, -3.7748817658187965, -2.840457680151218, -3.258110255321881, -3.8648584454950887, -4.394294045352843, -3.5076984901097985, -2.9744349283567657, -4.199919651590568, -7.0, -3.9042691229519955, -2.6647795193361836, -3.5724068675580556, -7.0, -3.6620534634123754, -3.602475990905145, -4.057856208741888, -7.0, -2.725059716266424, -7.0, -3.676436539951696, -3.177728835841732, -2.989831056446319, -2.5445696679092684, -3.7494543917836216, -3.1104297662155624, -7.0, -3.4925369002881332, -4.01556930642988, -7.0, -3.998084887936556, -3.7377172970215713, -7.0, -3.692670699156369, -3.463496250272348, -3.47587783963758, -3.8834224248181477, -7.0, -3.3327918116376987, -3.6564815157904986, -3.4165064451418456, -7.0, -4.809640506093394, -3.7178091444980614, -3.5278446323871613, -7.0, -3.438507188934901, -3.232699706990279, -3.361201508369878, -3.889077492650064, -3.4580115820428454, -4.005094675072549, -3.0036233830206034, -4.0600175425316, -7.0, -3.393143421154438, -3.510910004340515, -7.0, -3.638579485603398, -7.0, -3.88320703335239, -3.3906702126261803, -3.768508607439089, -7.0, -7.0, -7.0, -2.933689708957895, -3.3469883009877015, -2.337941652904336, -2.6630482325495684, -2.745855195173729, -3.34143452457814, -3.2738497297176563, -2.7368540379145427, -2.7471998707621346, -3.0595634179012676, -7.0, -2.6451414452320305, -3.6310376965367404, -1.851762744123039, -2.74707871738161, -3.1946993054635864, -3.069446083880313, -3.329880725319446, -1.7828731511714586, -2.175722610349459, -1.4675800089413817, -2.4603339459252327, -2.9076352585379115, -2.388138610113707, -2.1184668132481392, -3.2661532687922707, -2.505088284381042, -3.1398790864012365, -2.520639467711374, -2.514036637523143, -7.0, -2.7255688345434206, -3.0310450563595204, -2.1712567871600528, -7.0, -2.769981211895668, -2.6759897286249137, -2.062492448204363, -2.5188428262865648, -3.6160551949765862, -2.824451270036613, -2.47929746034392, -3.325310371711061, -3.339650157613684, -3.1858961319559693, -2.7701152947871015, -1.8038771296868603, -2.965953889102063, -2.31854490346367, -3.2256538231813816, -3.3727279408855955, -3.146128035678238, -2.6633434412297596, -1.5843312243675307, -3.3270522653266985, -2.576947229882608, -2.66776416356748, -3.458788881710845, -2.7285259405518585, -1.7308406263593452, -2.7363965022766426, -2.9175430182524797, -3.0683343131172545, -2.695770873257886, -2.7399676967595092, -1.9717975238541687, -7.0, -3.370513089598593, -3.731629050375943, -3.6658623002031554, -1.8839152129132857, -2.4775071227876087, -2.5912872650584995, -2.6396163943940087, -2.2355284469075487, -7.0, -2.3812692068679397, -2.7110100570641573, -2.639154332860882, -3.780821175853473, -2.5441957592407425, -2.866877814337499, -3.66133934000604, -3.233672845210665, -2.477452880802274, -1.8592133762958247, -2.01983661903724, -2.5569052690554477, -3.6285932558512592, -7.0, -2.7247508753987764, -0.8667808508413924, -3.085825533520743, -2.139074837130837, -3.0425986729597225, -3.0672940863159766, -2.50213950773425, -2.483592912107618, -3.015778756389041, -2.58152802295868, -3.190611797813605, -2.837114748515506, -3.018076063645795, -2.8677352568310357, -2.5980084167230095, -3.0296373803095857, -3.623352681537992, -2.8959747323590643, -3.2221092481637466, -2.2993138989499227, -3.2060158767633444, -3.3550682063488506, -3.6238692683503024, -3.622731965164719, -3.3334472744967503, -7.0, -2.6842467475153122, -2.6392698943402007, -2.2241768313269548, -3.280881754580137, -3.6618126855372615, -2.9719249491841913, -3.164352855784437, -2.809367293505889, -3.681331705969166, -2.4073909044707316, -2.1723323383021844, -2.582144562216779, -2.2749006866771184, -0.4126325672878087, -2.7684795320928424, -2.526892871450658, -3.623352681537992, -2.0688040746361804, -2.8197319011288338, -3.6178387477170033, -1.2438901187636742, -2.637125693881889, -2.6754116937148633, -2.172689860892129, -0.04312571374013441, -0.18221499328361404, -3.0308020487722676, -2.4903598606751274, -2.375480714618573, -3.627570664180543, -7.0, -2.6135979047217197, -3.3897860623169342, -3.315655525231531, -7.0, -7.0, -7.0, -3.1300119496719043, -3.1809855807867304, -3.417803722639881, -3.0629578340845103, -7.0, -7.0, -3.4509024629823473, -7.0, -7.0, -7.0, -3.7424632714945925, -3.7579271831133294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.457074094628222, -7.0, -3.7424894645817752, -3.4023415632229432, -7.0, -7.0, -7.0, -7.0, -3.3562171342197353, -3.2340108175871793, -3.9168047518661746, -3.313445370426414, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.199618067707931, -7.0, -3.6668548025233454, -7.0, -7.0, -3.1818435879447726, -7.0, -2.9427519204298136, -7.0, -7.0, -7.0, -3.0443437348951075, -7.0, -2.8513115352333664, -2.7854484784978877, -2.7444885672205115, -2.8092535500248417, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.258828770593979, -3.349875009222593, -7.0, -7.0, -2.628261177591116, -7.0, -3.4978277360835044, -3.111766433052562, -2.8606374167737547, -7.0, -4.128250600818072, -7.0, -7.0, -7.0, -7.0, -2.6442830677179567, -3.469674772551798, -7.0, -7.0, -3.5640739789771465, -3.2771506139637965, -2.7559836877697665, -3.6422666189026733, -7.0, -7.0, -3.5081331656581813, -3.6378898165807905, -3.151523067564944, -7.0, -7.0, -3.5491259267581112, -7.0, -3.518382315545344, -2.895238327804661, -7.0, -3.574089169798587, -7.0, -7.0, -7.0, -3.0577928497102045, -7.0, -2.815577748324267, -7.0, -2.4082399653118496, -2.5925292262557798, -7.0, -7.0, -7.0, -7.0, -3.622214022966295, -7.0, -7.0, -7.0, -3.6427612032653203, -7.0, -7.0, -7.0, -4.062175700706289, -7.0, -7.0, -7.0, -4.997849268568125, -2.6424645202421213, -3.5654936298688624, -7.0, -7.0, -7.0, -2.584016950902841, -7.0, -7.0, -7.0, -4.384209999793958, -7.0, -7.0, -7.0, -7.0, -7.0, -3.218235318937493, -2.6478019710944465, -3.7032913781186614, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.088738365273999, -3.034513867051594, -7.0, -7.0, -3.2826221128780624, -3.0606734753233433, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.8066886148562817, -2.9265996539070276, -3.2125870781238937, -3.4369573306694496, -2.693623508532089, -2.809391350809975, -3.2467447097238415, -3.8408111814354173, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4893959217271293, -7.0, -7.0, -7.0, -3.4870676377163163, -3.196272162145656, -7.0, -3.7517408738109004, -7.0, -7.0, -7.0, -3.398981066658131, -3.1360860973840974, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9922441440467713, -2.8535461212539044, -7.0, -7.0, -2.958836809849585, -7.0, -3.3427515672308834, -7.0, -2.9230712338729132, -7.0, -7.0, -3.329736774799155, -7.0, -7.0, -2.8187535904977166, -4.3729672063871545, -3.12515582958053, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.255272505103306, -3.9563605536733224, -7.0, -7.0, -4.672306974556731, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -2.5010592622177517, -7.0, -7.0, -3.162862993321926, -2.8929289823552056, -7.0, -3.1565491513317814, -2.640150040936102, -3.5487725584928786, -7.0, -2.8254261177678233, -7.0, -7.0, -7.0, -3.266936911159173, -7.0, -3.2837533833325265, -3.7555699806288, -3.4394905903896835, -7.0, -3.8706964579892498, -3.425371166438941, -7.0, -7.0, -2.7879662326772423, -7.0, -3.5449109978822997, -7.0, -7.0, -7.0, -7.0, -7.0, -3.329967072734659, -3.8048206787211623, -3.398287305357401, -3.004894321731049, -7.0, -3.3898745583909853, -7.0, -7.0, -3.364550995353972, -3.5737995822157407, -2.7728105019145324, -7.0, -7.0, -3.3677285460869766, -7.0, -7.0, -7.0, -2.786041210242554, -3.125667119766511, -3.3527611917238307, -3.5569052690554477, -7.0, -4.0932688273621345, -2.6820447426591882, -7.0, -4.004149341900059, -7.0, -3.297760511099134, -2.5599066250361124, -2.839006415311301, -3.694868327982456, -2.7054360465852505, -3.543012046377035, -3.4483971034577676, -2.7790808857337654, -3.5020172148271476, -4.413969971748061, -2.9637353731535834, -7.0, -7.0, -7.0, -3.8172347304254983, -2.796227314029439, -7.0, -2.6629937971760524, -3.236033147117636, -7.0, -3.473194909204938, -7.0, -3.166578109919652, -7.0, -7.0, -2.495110520227484, -7.0, -4.561256461130405, -7.0, -3.9949142356445018, -7.0, -2.7690078709437738, -4.0679795950683815, -3.0560150335589764, -7.0, -7.0, -7.0, -2.788572366037187, -3.1428272945383364, -3.1854004831904525, -7.0, -7.0, -7.0, -2.826981336911994, -3.2005769267548483, -2.9668454236549167, -7.0, -3.4220149959794637, -7.0, -2.713930335011934, -7.0, -7.0, -4.60471193172762, -7.0, -7.0, -7.0, -7.0, -3.786573978023827, -7.0, -7.0, -4.04008784346988, -7.0, -7.0, -7.0, -4.72596877254668, -5.0015043932368455, -4.590997787350715, -7.0, -4.681494501961706, -4.625996286305002, -7.0, -7.0, -7.0, -4.9123655573140255, -7.0, -7.0, -7.0, -7.0, -4.666358834886494, -7.0, -7.0, -4.002302882576187, -7.0, -4.383967880647654, -7.0, -7.0, -7.0, -7.0, -7.0, -4.164605624889347, -7.0, -3.719807589302826, -2.8327217499964084, -4.201032783290775, -3.290705949488817, -3.9320169064342014, -3.1288837020997735, -3.5674772960726626, -2.890281261927012, -3.82255531024074, -2.3821398923654864, -2.4202858849419178, -3.852510490774041, -3.4479657068003102, -3.182584042752654, -7.0, -3.034936816821393, -3.5733938349225207, -7.0, -7.0, -3.786414216302987, -7.0, -7.0, -3.2390534871210988, -3.544442954987437, -4.665756617515032, -2.416640507338281, -2.4773497706322765, -7.0, -3.4969821074492327, -7.0, -4.292862432927566, -4.107040290223204, -3.394301553101531, -7.0, -3.384791331426507, -3.8437465242516153, -3.5098813506672766, -7.0, -3.235932253986295, -3.3826173114774845, -3.3974674564260865, -3.3528713279019153, -3.2844307338445193, -2.973795787525392, -3.637685056151331, -7.0, -3.435100153553497, -7.0, -3.6783362467321803, -2.9630003484681415, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.119155439530316, -1.9822712330395684, -2.7748682601673127, -7.0, -7.0, -2.880851686617196, -7.0, -2.1734929735676083, -3.1878026387184195, -2.5514499979728753, -7.0, -2.8674948950584738, -2.0876039736878083, -7.0, -7.0, -7.0, -7.0, -0.3797171802809775, -7.0, -7.0, -3.5344703322033375, -7.0, -7.0, -2.308153810824874, -2.7776339251504623, -7.0, -2.9318488804227223, -7.0, -7.0, -4.304727429383633, -3.2710019473768117, -4.793936986698624, -7.0, -7.0, -2.139323367218689, -7.0, -2.0778951394943377, -7.0, -2.1850461017086076, -2.4486360627696193, -7.0, -7.0, -3.2131191388114564, -2.6875289612146345, -7.0, -7.0, -3.413299764081252, -2.636688447953283, -7.0, -2.5894708640199418, -3.3235408460980116, -7.0, -7.0, -2.200384310237582, -2.1961123854440547, -7.0, -3.8706964579892498, -7.0, -7.0, -3.941063988219902, -2.2665844470668635, -2.8111227700633705, -2.5710096723093048, -7.0, -7.0, -7.0, -7.0, -7.0, -2.9856830355921042, -7.0, -2.433842537445903, -2.679609571779756, -7.0, -7.0, -2.448520816457295, -2.913863814360407, -2.188576970603741, -3.500099191915723, -2.6314230602187614, -7.0, -7.0, -3.0542299098633974, -2.6487727136426256, -7.0, -2.670802284260944, -3.3422252293607904, -7.0, -7.0, -7.0, -7.0, -2.6989700043360187, -2.3878642059401316, -3.4986363091211903, -7.0, -3.7089305358066165, -1.9007254013943047, -3.7352794480604565, -2.2785129279170753, -7.0, -2.03342375548695, -7.0, -2.080357968800938, -2.2725617633734894, -7.0, -3.1228709228644354, -2.7224693858840308, -2.7257074985747667, -2.588118849042228, -2.812244696800369, -7.0, -7.0, -7.0, -7.0, -3.1408221801093106, -2.8721562727482928, -3.856910060300786, -7.0, -7.0, -2.3863715504164245, -3.26030994579492, -1.292256071356476, -1.0260558343362822, -1.152596646205211, -1.768816650063645, -0.9445149269299304, -0.9866043276989207, -1.4670676927742645, -1.5228325412820065, -7.0, -1.3343519355410627, -1.9375178920173466, -1.6840000193202802, -1.5216610151120733, -7.0, -1.85062416092448, -0.7282449109488612, -0.7473115494495717, -1.3228968213641614, -2.645053650442902, -2.2488762999185097, -1.3627205095512707, -1.237360915794604, -1.4458136965328934, -1.4142910312838815, -2.6135979047217197, -7.0, -2.3047058982127653, -2.2528530309798933, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3607205081851985, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.531000232674238, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.868473978153819, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.682506085939011, -7.0, -7.0, -7.0, -7.0, -7.0, -4.007635777016201, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.314709692955174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.126835711721174, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.084933574936716, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.757767905015857, -7.0, -7.0, -7.0, -4.393772565000729, -7.0, -7.0, -7.0, -7.0, -7.0, -4.007961033336183, -7.0, -7.0, -7.0, -4.375974366176192, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.547196080987191, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.4667193716815987, -3.44870631990508, -7.0, -3.6004828134659586, -7.0, -7.0, -5.151988516548684, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.812957897382539, -7.0, -7.0, -4.6553247955498565, -7.0, -3.7152510288788494, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1283992687178066, -7.0, -7.0, -7.0, -3.775173385424787, -3.424881636631067, -7.0, -7.0, -4.36451347369151, -3.577319426553794, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.145289659054146, -5.412302593443167, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.467568644894248, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.324138352655017, -7.0, -7.0, -7.0, -4.413576350079674, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.832237393796547, -3.6145281197475394, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5758803156806462, -7.0, -4.1126133790479455, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1436392352745433, -7.0, -7.0, -7.0, -7.0, -3.7340794072805945, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.176576818277254, -7.0, -7.0, -3.4886543840544424, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.508839337975575, -7.0, -7.0, -7.0, -4.29777509673101, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.3763122852475576, -4.623652376727108, -7.0, -7.0, -7.0, -7.0, -4.283391697297128, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.590470293581849, -7.0, -7.0, -7.0, -7.0, -5.236509550399869, -4.010215125214227, -7.0, -7.0, -4.663601996724677, -7.0, -7.0, -4.142561522784965, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.69237977954167, -4.789548279872023, -7.0, -7.0, -7.0, -7.0, -4.179274044963151, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.785664326504347, -7.0, -7.0, -3.5306478535274857, -4.599435452688469, -4.493053543571646, -7.0, -4.343511984943949, -4.3558344958849355, -7.0, -5.047309921129448, -7.0, -7.0, -4.311287538662283, -2.6897635157677504, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9977648799305885, -3.1266183755229515, -7.0, -7.0, -7.0, -4.350344948249062, -7.0, -7.0, -2.733999286538387, -3.4760341590784485, -7.0, -3.8968498887351135, -3.353627758985543, -7.0, -7.0, -7.0, -7.0, -2.2987657722618797, -7.0, -7.0, -3.8057726319356693, -7.0, -7.0, -7.0, -3.5742628297070267, -7.0, -7.0, -7.0, -7.0, -3.3700556852672308, -4.016695655448349, -7.0, -7.0, -7.0, -3.956696564894651, -7.0, -3.5203525040833177, -7.0, -3.0049658871068234, -3.6582976503081897, -7.0, -7.0, -3.147985320683805, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5888317255942073, -3.0881360887005513, -7.0, -4.158272004652084, -7.0, -7.0, -7.0, -2.9254839872002525, -4.171985685657181, -3.215505378231818, -7.0, -7.0, -7.0, -7.0, -7.0, -3.801403710017355, -7.0, -7.0, -7.0, -7.0, -7.0, -3.82052984852352, -7.0, -7.0, -7.0, -7.0, -7.0, -3.766635886310268, -7.0, -3.7471786713601642, -7.0, -2.9763499790032735, -7.0, -7.0, -7.0, -3.287727102473748, -7.0, -3.190611797813605, -2.810098040681143, -4.534546439654068, -7.0, -7.0, -2.948376283952328, -3.697316541732383, -7.0, -7.0, -3.339053735709139, -7.0, -3.681512586638962, -7.0, -7.0, -2.940516484932567, -7.0, -7.0, -3.9249164729965895, -7.0, -7.0, -2.9429995933660407, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.3807537708039, -7.0, -7.0, -7.0, -3.077731179652392, -2.3192548157701802, -2.6368220975871743, -2.2458210061174126, -2.073610544839325, -2.527894170739935, -3.490169250834894, -7.0, -2.6699364163086976, -2.940516484932567, -2.5382766083964956, -2.5115491597450657, -7.0, -2.900790291266021, -2.159266331093494, -2.305044121834302, -2.493225621510431, -3.1889284837608534, -2.9922588811302626, -2.6852937813867843, -2.0038911662369103, -2.1881837659757917, -2.2576785748691846, -3.3897860623169342, -2.3047058982127653, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.203764258404371, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.140322595530777, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.42953157865769, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.530558259451653, -7.0, -4.005566571133294, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5439439424829065, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9577030415488315, -7.0, -7.0, -7.0, -7.0, -4.372027792657405, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.451841677951873, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.6916118742144164, -4.875699689346818, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.5306478535274857, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.940894833619059, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.228644131738731, -7.0, -4.708123336243728, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9439394644722165, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.395675785269936, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.828186038050364, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.498351913199365, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.763697472032553, -7.0, -3.6194064108867776, -7.0, -7.0, -5.234565367069626, -3.9762582492570453, -7.0, -7.0, -7.0, -7.0, -7.0, -4.431412016420789, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.512871092039323, -5.010315507270583, -7.0, -7.0, -7.0, -7.0, -4.6527296960692475, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.595209536956467, -7.0, -7.0, -4.941794575846803, -4.6531835598447415, -7.0, -7.0, -7.0, -7.0, -4.604096393587492, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.1878026387184195, -4.335156899534743, -7.0, -7.0, -7.0, -7.0, -7.0, -4.493660163508368, -3.272421826371504, -7.0, -7.0, -7.0, -7.0, -2.3022690677795294, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -5.0932640496888615, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.241745652570644, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.9691828592322613, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -4.44351136416493, -3.4008832155483626, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.250907699700856, -3.7764105888073423, -3.0488300865283504, -7.0, -3.766784515497859, -4.3257413721537965, -7.0, -7.0, -4.297585445297346, -7.0, -7.0, -3.018284308426531, -4.017283821560018, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.0907869279492677, -7.0, -7.0, -7.0, -3.587449037524363, -7.0, -3.3836358683618797, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -3.911459467254995, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -7.0, -1.7719023011066422, -2.846337112129805, -7.0, -2.3600461515081728, -2.8041394323353503, -3.1406127806443553, -3.131056990114102, -7.0, -2.5017437296279943, -2.0086001717619175, -2.6373467519040084, -7.0, -7.0, -3.5388389432951035, -2.1354506993455136, -1.903768042526874, -2.7752462597402365, -3.3658622154025553, -7.0, -7.0, -2.4099331233312946, -3.2750808984568587, -2.155336037465062, -3.315655525231531, -2.2528530309798933, -7.0, -7.0], \"xaxis\": \"x\", \"yaxis\": \"y\"}],                        {\"barmode\": \"overlay\", \"legend\": {\"title\": {\"text\": \"series\"}, \"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"carpet\": [{\"aaxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"baxis\": {\"endlinecolor\": \"#2a3f5f\", \"gridcolor\": \"white\", \"linecolor\": \"white\", \"minorgridcolor\": \"white\", \"startlinecolor\": \"#2a3f5f\"}, \"type\": \"carpet\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"contour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"heatmap\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmap\"}], \"heatmapgl\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"histogram2d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2d\"}], \"histogram2dcontour\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"surface\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"colorscale\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"autotypenumbers\": \"strict\", \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"diverging\": [[0, \"#8e0152\"], [0.1, \"#c51b7d\"], [0.2, \"#de77ae\"], [0.3, \"#f1b6da\"], [0.4, \"#fde0ef\"], [0.5, \"#f7f7f7\"], [0.6, \"#e6f5d0\"], [0.7, \"#b8e186\"], [0.8, \"#7fbc41\"], [0.9, \"#4d9221\"], [1, \"#276419\"]], \"sequential\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]], \"sequentialminus\": [[0.0, \"#0d0887\"], [0.1111111111111111, \"#46039f\"], [0.2222222222222222, \"#7201a8\"], [0.3333333333333333, \"#9c179e\"], [0.4444444444444444, \"#bd3786\"], [0.5555555555555556, \"#d8576b\"], [0.6666666666666666, \"#ed7953\"], [0.7777777777777778, \"#fb9f3a\"], [0.8888888888888888, \"#fdca26\"], [1.0, \"#f0f921\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"Connectivity Pre-2000 vs. Post-2000\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"nticks\": 20, \"range\": [-7.5, 0.5], \"title\": {\"text\": \"Connectivity\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"Count\"}, \"type\": \"log\"}},                        {\"responsive\": true}                    ).then(function(){\n",
       "                            \n",
       "var gd = document.getElementById('7959d97e-0b64-4df8-a59d-fa579c8c4f98');\n",
       "var x = new MutationObserver(function (mutations, observer) {{\n",
       "        var display = window.getComputedStyle(gd).display;\n",
       "        if (!display || display === 'none') {{\n",
       "            console.log([gd, 'removed!']);\n",
       "            Plotly.purge(gd);\n",
       "            observer.disconnect();\n",
       "        }}\n",
       "}});\n",
       "\n",
       "// Listen for the removal of the full notebook cells\n",
       "var notebookContainer = gd.closest('#notebook-container');\n",
       "if (notebookContainer) {{\n",
       "    x.observe(notebookContainer, {childList: true});\n",
       "}}\n",
       "\n",
       "// Listen for the clearing of the current output cell\n",
       "var outputEl = gd.closest('.output');\n",
       "if (outputEl) {{\n",
       "    x.observe(outputEl, {childList: true});\n",
       "}}\n",
       "\n",
       "                        })                };                });            </script>        </div>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "cn_df =pd.DataFrame(dict(\n",
    "    series=np.concatenate(([f\"pre-2000 mean: {outlier_removed_pre.mean():0.3f}\"]*len(outlier_removed_pre), \\\n",
    "                           [f\"post-2000 mean:{outlier_removed_post.mean():0.3f}\"]*len(outlier_removed_post))), \n",
    "    data=np.concatenate((outlier_removed_pre,outlier_removed_post))\n",
    "))\n",
    "\n",
    "cn_df.replace(0,10e-8,inplace = True)\n",
    "cn_df['data'] = np.log10(cn_df['data'])\n",
    "\n",
    "fig = px.histogram(cn_df,x=\"data\", color=\"series\", \n",
    "                   nbins=100, log_y=True,\n",
    "                   labels=dict(x=\"Connectivity\"),\n",
    "                   barmode=\"overlay\", title='Connectivity Pre-2000 vs. Post-2000')\n",
    "fig.update_xaxes(nticks=20, range=[-7.5,.5], title_text=\"Connectivity\")\n",
    "fig.update_yaxes(title_text=\"Count\")\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "<img src=\"https://drive.google.com/uc?id=1rDTnMCIl7QUVoZZHAAhYQ1ZcKJnsJinZ\">"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The distribution of Jaccard indices in both the pre- and post- 2000 data have a similar fall off as the the index increases. We then see a bin centered at 1 which is of size 591 that is representative of the jaccard index of a term and itself."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "#### Connectivity Explorer\n",
    "Interactive widget to look at the percentage change in connectivity across pre-2000 and post-2000 data"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "metadata": {
    "scrolled": true
   },
   "outputs": [
    {
     "data": {
      "application/vnd.jupyter.widget-view+json": {
       "model_id": "cfc1d3c3e1c34332b375a5050707e02c",
       "version_major": 2,
       "version_minor": 0
      },
      "text/plain": [
       "VBox(children=(HBox(children=(Dropdown(description='Term 1:', options=(['\"5-Hydroxytryptamine\"', '\"serotonin\"'…"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# Instantiate a new MicroLisc object for indexing helpers\n",
    "ml = MicroLisc(terms=lis)\n",
    "\n",
    "# Sort terms alphabetically\n",
    "sorted_terms = sorted(lis, key=lambda x: x[0].lower())\n",
    "\n",
    "# Event Handler for Button Click\n",
    "def on_button_clicked(b):\n",
    "    with output:\n",
    "        output.clear_output()\n",
    "        # Fetch Relevant Entry in Connectivity Matrix\n",
    "        r = ml.term_to_idx[tuple(term1.value)]\n",
    "        c = ml.term_to_idx[tuple(term2.value)]\n",
    "        \n",
    "        # Calculate percent growth across pre- and post-\n",
    "        change = percentage_change(pre=cn_pre[r][c], post=cn_post[r][c])\n",
    "        \n",
    "        # Display.\n",
    "        output.append_display_data(HTML(f'<h4>Connectivity: {cn_pre[r][c]:0.3e} (Pre) | {cn_post[r][c]:0.3e} (Post) | {change:0.3f}% (Percent Change) </h4>'))\n",
    "\n",
    "\n",
    "# Generate GUI \n",
    "term1 = widgets.Dropdown(\n",
    "    options=sorted_terms,\n",
    "    value=sorted_terms[0],\n",
    "    description='Term 1:',\n",
    "    disabled=False,\n",
    ")\n",
    "term2 = widgets.Dropdown(\n",
    "    options=sorted_terms,\n",
    "    value=sorted_terms[1],\n",
    "    description='Term 2:',\n",
    "    disabled=False,\n",
    ")\n",
    "\n",
    "button = widgets.Button(\n",
    "    description='Get Connectivity',\n",
    "    disabled=False,\n",
    "    button_style='info', # 'success', 'info', 'warning', 'danger' or ''\n",
    "    tooltip='Get Data',\n",
    "    icon='arrow-right' # (FontAwesome names without the `fa-` prefix)\n",
    ")\n",
    "\n",
    "output = widgets.Output()\n",
    "\n",
    "button.on_click(on_button_clicked)\n",
    "hb = widgets.HBox([term1, term2, button])\n",
    "widgets.VBox([hb, output])"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Approaches and Methods"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Neighbors of Neighbors connectivity transformation\n",
    "\n",
    "Our hypothesis generation algorithms rely on jaccard index connectivity, however this only reflects the popularity of terms in the scientific literature. <i>Not</i> the actual relatedness of two terms. And so there is an implicit assumption stating that two terms are related when the scientific literature references them together often. <br>\n",
    "\n",
    "The <b>neighbors of neighbors tranformation</b> tries to fix this, while still relying on the scientific literature. In essence, it reflects the held belief in distributional semantics that <i>\"you shall know a word by the company it keeps.\"</i><br>\n",
    "\n",
    "Conceretely, the relatedness of two terms $a$ and $b$ is the jaccard index of the $n$ neighbors most similar to term $a$ and the $n$ neighbors most similar to term $b$. \n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Here are the terms most related to memory. Just on inspection, it seems to be recommending better terms than the original connectivity matrix it was based off of."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Words with highest connectivity to memory from the pre-2000 connecvity matrix"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "memory                 1.000000\n",
       "learning               0.098232\n",
       "short term memory      0.056706\n",
       "working memory         0.049321\n",
       "amnesia                0.047396\n",
       "hippocampus            0.046770\n",
       "dementia               0.035915\n",
       "long term memory       0.033667\n",
       "Alzheimer's disease    0.031437\n",
       "recognition memory     0.030314\n",
       "Name: memory, dtype: float64"
      ]
     },
     "execution_count": 12,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "conj_df = pd.read_csv(os.path.join(new_data_dir, 'conn_pre.csv'), header=None)\n",
    "conj_df.columns, conj_df.index = df.term.unique(), df.term.unique()\n",
    "conj_df['memory'].nlargest(10)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "metadata": {
    "scrolled": false
   },
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Most related to memory by category 'function': \n",
      " Index(['Alzheimer's disease', 'amnesia', 'long term memory', 'entorhinal area',\n",
      "       'short term memory', 'basal forebrain nucleus', 'cognition', 'dementia',\n",
      "       'dentate gyrus', 'forgetting'],\n",
      "      dtype='object') \n",
      "\n",
      "Most related to memory by category 'neurochemical': \n",
      " Index(['histamine', 'facial nucleus', 'hippocampus', 'learning',\n",
      "       'somatosensation', 'Alzheimer's disease', 'acetylcholine', 'amnesia',\n",
      "       'caudate nucleus', 'claustrum'],\n",
      "      dtype='object') \n",
      "\n",
      "Most related to memory by category 'pathology': \n",
      " Index(['declarative memory', 'learning', 'acetylcholine',\n",
      "       'delayed recognition', 'fastigial nucleus', 'fornix',\n",
      "       'stria terminalis', 'uncertainty', 'Alzheimer's disease', 'GABA'],\n",
      "      dtype='object') \n",
      "\n",
      "Most related to memory by category 'structure': \n",
      " Index(['learning', 'Alzheimer's disease', 'corpus callosum', 'seizure',\n",
      "       'Huntington's disease', 'alcoholism', 'attention', 'cognition',\n",
      "       'consciousness', 'dementia'],\n",
      "      dtype='object') \n",
      "\n",
      "Most related to memory by category 'white matter': \n",
      " Index(['dementia', 'emotion', 'orbital gyri', 'Alzheimer's disease', 'BDNF',\n",
      "       'Huntington's disease', 'Parkinson's disease', 'abducens nucleus',\n",
      "       'acetylcholine', 'adenohypophysis'],\n",
      "      dtype='object') \n",
      "\n"
     ]
    }
   ],
   "source": [
    "na = NeighborAnalysis()\n",
    "na.get_related_terms(query='memory')"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The results above, indicate the related terms to a source term, in this case memory, that share a parent from a specific term category."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "/home/AD/juy003/Projects-W21-text-mining/neighbors.py:63: UserWarning:\n",
      "\n",
      "This figure includes Axes that are not compatible with tight_layout, so results might be incorrect.\n",
      "\n"
     ]
    },
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAz0AAAGBCAYAAABM/99SAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjMsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAAgAElEQVR4nOzdeZwdVZ338c83+8qSIBEC0sgiCAMIGJRFIyCCM7IM4ggo4MYAM4Mg6iBugZFHnnk5LjygEhBZDCACgYwihsWwbwGSQAgSJBEigRBCgCRk6e7f80edhsrNvd23Ty/pbr7v1+u+um7V+Z06tdzqe+45dUoRgZmZmZmZWV/Vb30XwMzMzMzMrCu50mNmZmZmZn2aKz1mZmZmZtanudJjZmZmZmZ9mis9ZmZmZmbWp7nSY2ZmZmZmfZorPWbvIJLmSzowM3Y/SX/p7DK1sc5pkr7cnevsLSTNljS+zrQ1j7uk8ZIWdGrh2kHSGEl3SXpD0v90ct7vkbRMUv860jZICkkDaiyfIOk3nVm+7ibpfZIeS/v61PVdnkqSjpU0tZvWFZK27aK8e/R+NnuncqXHrBtJOkbS9PRFbKGkP0rad32Xq5rKLwURcXdEvG99lqk9+nqFKSJ2iohp67scneBEYDGwQUSc0ZkZR8RzETEiIpo6M9+u0E3n6zeBaRExMiLO7+J1tapaJTMiJkXEQeuzXJXaqgzX0GP2s5m9zZUes24i6WvAT4H/A4wB3gP8HDgsI691/gG385+yWafLPAe3Ap6Md9CTsutpeaoS0xmf762A2TmBvr60S6v7Oef4m1nHudJj1g0kbQicA/xbRNwQEcsjYk1E/G9EfCOlGSzpp5JeSK+fShqclo2XtEDSf0p6Efh1tXkp7T9JmiFpqaT7JO1So0zjJN2f0i2UdIGkQWnZXSnZzNQq9S+V3aAk7Zh+nV6aulodWlp2maQLJf0hdfF4UNI2aZkk/UTSIkmvSZolaedWdt82kh5KaW+SNKq0ng+lbVwqaWZLdy9J5wL7ARek8l8g6WxJ/y8tHyhpuaT/Tu+HSlopaePW8m05lpJ+lfbZ3yX9oOVLjKQTJN0j6UeSXpU0T9IhrZwX8yV9Pe2D1yT9VtKQ0vKax1KlLmup/Jendc6R9E2t22Vtt1rrSXmcJWlxyvfYiu29QtLLkv4m6TuS+pW29950PJcAE2ps596SHk7rfljS3mn+ZcDxwDfTcVqnC57e/qX9eEnPpTJ+u7S8n6QzJf1V0iuSrm05R1TxK72krfV2V7rb0jla2WXt2GrrSYakffeGpEcl7VoqR1ufh19IulnScuBjFdu4zvma5oekf5M0F5ib5v1M0vOSXpf0iKT9SvlMSNt/RSrjbEl7pmV3pPW2rGP79h7binlLJT2bju0JqUyLJB1fKs8/qujm9XpaXj4/Wq4xS1N5Ppzyuaet8yYtmybpv1J53pA0VdImledPKf03VHxmX5D0xYpl7S3nNpLuSOfbYkmTJG3Uyn5e5/i3ts7SefuFtOxVSSdJ+qCKz/DSlnOkFPNFFZ/9VyX9SdJWab7UvuutWd8VEX755VcXv4CDgUZgQCtpzgEeADYF3gXcB/xXWjY+xf9fYDAwtMa83YFFwF5Af4ovlPOBwSmf+cCBaXoP4EPAAKABmAOcVipPANuW3o8HFqTpgcAzwFnAIGB/4A3gfWn5ZcASYFzKfxJwTVr2CeARYCNAwI7AZjX2yTTg78DOwHDgeuA3adlY4BXgkxQ/4Hw8vX9XKfbLpbz2Bx5P03sDfwUeLC2bWWe+NwIXpfJsCjwE/GtadgKwBvhK2v8nAy8AqrF981P85sCodAxOSsvacyzPA+4ENga2AGa1HKs61jOe4jz6McV59FFgeelYXgHcBIykOE+eBr5U2t5G4D/ScR5aZRtHAa8Cn09pjk7vR5fOlR+08rlooDgXL6Y4x3cFVgE7puWnUXxutkjlvwi4uiJ2QHp/P/AjinN2X+B13j6f2lrPhHRsP01x/n8dmJem6/k8vAbsQ3FODalxrn+5Yl4At6Z9ODTN+xwwOu3LM4AXW/JLZVxJce72B34IPFBrHe09tqV5X0j5/wB4Drgw7fuD0naPKJ1b/5C2eRfgJeDwasemtM576jxvplF8hrdPZZsGnNfK9fcl3r6OXEXp+pZRzm0prguDKa7VdwE/bWU/r3P861znL1Pag9JxvZHimjOW4trw0ZT+cIrzb8e0r74D3Nfe661ffvX113ovgF9+vRNewLHAi22k+SvwydL7TwDz0/R4YDWlL0s15v2CVFEqzftL6Z/jfNIX5SrrPw2YXHrfWqVnP4ovW/1Ky68GJqTpy4BLSss+CTyVpven+HL1oXJ8jTJNo/RFBnh/2ub+wH8CV1ak/xNwfCm2/MVjaPriMBo4k+IL6gJgBHA2cH5KVzNfim6Jqyh9uaf4MvbnNH0C8Exp2bC0H99dY/vmA58rvf9v4JftPZbAs8AnSum+zLqVnlrrGU/xRXZ4afm1wHfTfl4FvL+07F8p7ldo2d7n2jiGnwceqph3P3BC6Vypp9KzRWneQ8Bn0/Qc4IDSss0oKicDSrEDKLqTNgLDSml/w7qVnlrrmcDaFYh+wEKKz0I9n4cr6jjXq1V69m8j7lVg11IZb6v4vLxZbR05xzbNm1t6/w+pjGNK814BdqtR1p8CP6nY37UqPW2dN9OA75SWnQLcUmO9l7L2dWR7Kq5v7SlnlfSHA4/VOpZ1Hv9q6xxbsV//pfT+etKPVMAfSZXV0rm5gqKbXd3XW7/86usvd28z6x6vAJuo9X7xmwN/K73/W5rX4uWIWFkRUzlvK+CM1P1hqaSlwJYV+QCQul38XtKLkl6nuNeoZveQKmV9PiKaK8o7tvT+xdL0CorKBRFxB3ABxa/DL0maKGmDVtb1fMU6BqZybgUcVbGt+1J86V1HRLwJTKdoyfgIRcvIfRS/vn40vaeNfLdK619YWnYRxa+v62x3RKxIkyNa2b6q+4l2HMs0r7yfnq+SptZ6AF6NiOWl9y3n3iYULReV52X5OK+1rtSlall67ce653W1PMrxy0qv99RR/q2AyaV9NAdooqiglm0OLCkdk3XK3sZ61kqfzv0FKd96Pg/V1lWPyv17RurG9Fra3g1Z+3NbWf4hNa477T62yUul6TcBIqJy3ohU1r0k/VlF97nXgJNo3zWmrfOmtWNVmVfldeQt7S2npE0lXaOie+vrFJXntrar8jjWs87K/Vp1P1N8Bn5W+gwsoWjVGZtxvTXrs1zpMese91O0MhzeSpoXKP55tXhPmtciqsRUznseODciNiq9hkXE1VVifwE8BWwXERtQtHyoje0ol3VLpf7/pfL+vZ7giDg/IvYAdqL41fUbrSTfsmIdayhG+3qeokWmvK3DI+K8ltVUyetOil8+PwA8nN5/gqIbXkvf/dbyfZ7i1/FNSss2iIid6tnudmrPsVxI0b2rxZZV0rRmY0nDS+9bzr3FFPu78rwsH+e19nMUo8qNSK+7Wfe8rpZHOX5E6fVcHWV/HjikYj8NiYjK/BcCoyQNK81r7356K30697eg2L56Pg/VzkfqWP7W/FSJ/E/gM8DGEbERRbepej+3Ze0+thmuAqYAW0bEhhTdtVrK2lbe7Tpv2rCQda8jHSnnD9P8XdK183O0fQwq82ltne31PEUX2/JnYGhE3Aftvt6a9Vmu9Jh1g4h4DfgecKGkwyUNU3Ez/SFKN9NTdIf5jqR3pRtyv0fxC2J7XAyclH5FlKTh6YbZkVXSjqS4p2GZpB0o7j8pewl4b431PEhx38c303aMBz4FXNNWAdPNuHtJGpjyWEnxy3wtn5P0/vRl9RzguiiGIP4N8ClJn5DUX9IQFYMttHz5r1b+O4HjKEYLW03qhgLMi4iXU5qa+UbEQmAq8D+SNlBxE/02kj7a1nZnaM+xvBb4lqSNJY0F/j1jfWdLGpS+WP8T8Lu0n68FzpU0Mt0c/TXad17eDGyvYrj2AZL+haLb1e8zyljNL1P5tgJIn591RkSMiL9RtPRNSNv5YYpztj32kPTPqeXkNIoK8AN04PNQ0trnrcVIii56LwMDJH0PyPrVvpOObVtGUrSurZQ0DjimtOxloJna29yZ5821wAml68j3O1jOkcAyisENxpJXiWhtne31S4rP/07w1uAjR6Xp9l5vzfosV3rMuklE/JjiS8V3KP6RPk/x5fTGlOQHFF/KZgGPA4+mee1Zx3SKm+gvoOjr/wxFP/lqvk7xj/YNii/Yv61YPgG4PHWZ+EzFelYDhwKHUPxi/HPguIh4qo5ibpDW9ypFN5NXKG4ur+VKij7xL1Lc1HtqKsPzFMN9n8Xb+/MbvH1d+xnwaRWjGbU8K+M+int7Wlp1nqT4EtDyvp58j6PoFvRk2obrqNGlriPaeSzPoehqNQ+4LZVpVTtW92JaxwsUg06cVDqW/0HxZelZ4B6KX6gvbcd2vEJRiTqD4lh/E/iniFjcjvK15mcUv5hPlfQGRSVkrxppjwU+nMrxA4pzvj376SbgX3j7Bvt/jmIUxo58HsrbUXm+VvoTxf0bT1N8dlaS320OOnhs63AKcE46Lt+jqHwAb3X9PBe4N11jPlQO7MzzJiL+SHHPzB0Un6M7OljOsykGGnkN+ANwQ3vL1No62ysiJlMMaHNN6m73BMW5CO2/3pr1WYroaOu1mZn1JJJOprgBvytaoPoMSb+lGGCj8pd/MzPrY9zSY2bWy0naTNI+qbvd+yh+HZ+8vsvV06SuPtuk/XQwRYvejW3FmZlZ7+cnLJuZ9X6DKEaR2xpYSnEvyc/Xa4l6pndTdEUaTdEd8OSIeGz9FsnMzLqDu7eZmZmZmVmf5u5tZmZmZmbWp7nSY2ZmZmZmfZorPWZmZmZm1qe50mNmZmZmZn2aKz1mZmZmZtanudJjZmZmZmZ9mis9ZmZmZmbWp7nSY2ZmZmZmfZorPWZmZmZm1qe50mNmZmZmZn2aKz1mZmZmZtanudJjZmZmZmZ9mis9ZmZmZmbWp7nSY2ZmZmZmfZorPWZmZmZm1qe50mNmZmZmZn2aKz1mZmZmZtanudJjZmZmZmZ9mis9ZmZmZmbWp7nSY2ZrkXS8pEckvS5pgaT/ljSgtHyUpMmSlkv6m6RjKuKPSfOXS7pR0qh6Y83MejJJl0n6QRtpfA0164Fc6THrw8r/aNthGHAasAmwF3AA8PXS8guB1cAY4FjgF5J2SuvbCbgI+HxavgL4eT2xZmZ9hK+hZj2QKz1mvZCk+ZK+JelJSa9K+rWkIZLGp18W/1PSi8CvU/p/kjRD0lJJ90napVbeEfGLiLg7IlZHxN+BScA+KZ/hwJHAdyNiWUTcA0yh+AcNxT/h/42IuyJiGfBd4J8ljWwrVtK2ku6U9JqkxZJ+2wW7zszeQWpdK9Oyr0h6RtISSVMkbZ7mS9JPJC1K16NZknaWdCLFNe6bkpZJ+t9q6/Q11KxncqXHrPc6FvgEsA2wPfCdNP/dwChgK+BESbsDlwL/Coym+BVxiqTBda7nI8DsNL090BQRT5eWzwRafmncKb0HICL+SvGr5PZ1xP4XMBXYGNgC+H91ls/MrDXrXCsl7Q/8EPgMsBnwN+CalP4giuve9sBGwL8Ar0TERIoKzH9HxIiI+FSd6/c11KwHcKXHrPe6ICKej4glwLnA0Wl+M/D9iFgVEW8CXwEuiogHI6IpIi4HVgEfamsFkr4A7An8KM0aAbxWkew1YGQdy9uKXUNRUds8IlamXzHNzDqq2rXyWODSiHg0IlYB3wI+LKmB4lo0EtgBUETMiYiFOSv2NdSs53Clx6z3er40/Tdg8zT9ckSsLC3bCjgjdW1bKmkpsCWwuaRjUzeNZZL+WM5c0uHAecAhEbE4zV4GbFBRjg2AN+pY3lbsNwEBD0maLemLrW28mVmdql0rN0/TAKSuZK8AYyPiDuACivtnXpI0UVLltQsAX0PNeg9Xesx6ry1L0+8BXkjTUZHueeDciNio9BoWEVdHxKTUTWNERBzSEiDpYOBi4FMR8Xgpr6eBAZK2K83blbe7bsxO71vyeS8wOMW1GhsRL0bEVyJic4queD+XtG079oeZWTXVrpUvUPwgBLx1r81o4O8AEXF+ROxB0XVse+AbKela11dfQ816D1d6zHqvf5O0RRrO9Cyg1k2rFwMnSdor3aA7XNI/ShpZLXHq6z4JODIiHiovi4jlwA3AOSmffYDDgCtTkknApyTtl75EnAPcEBFvtBUr6ShJW6R8XqX4ctGUsV/MzMqqXSuvAr4gabd0f+P/AR6MiPmSPpiulwOB5cBK3r4WvQS8t7WV+Rpq1jO50mPWe11FcdPqs+lV9dkRETGd4r6eCyj+ET4DnNBKvt8FNgRurtFt4xRgKLAIuBo4OSJafmmcDZxE8Y97EUVf81PqiQU+CDwoaRnFiERfjYh5be8GM7NWrXOtjIjbKa511wMLKQY5+GxKvwHFj0WvUnSBe4W378n5FfD+1FX4xhrr8zXUrAdSRGVPGDPr6STNB74cEbet77KYmfVUvlaaWQu39JiZmZmZWZ/mSo+ZmZmZmfVp7t5mZmZmZmZ9mlt6zMzMzMysT3Olx8zMzMzM+rQB67sAVp81i59tdz/ExpsvzlrX7LPmZMU9oBFZcQCP9l+ZFXffir+1naiKwf0GZsX1Q1lxK5vXZMXtNnTzrLj+mb9nNNGcFbciGrPiZix/LivugyMasuKUefxinee9dq1Xm/I+D7mkvP0CsKxpVVbcX15fkBX36rJn6i5s1nXzjt+0N+Qtf59wb1bcE0tGZ8UtGJj3Of9t88KsuObMz8FA5ZUz99zaetCorLjB9M+KG5S5fbmeXL04K27vQe/Oisv9v7c68//Jqsy45ZH3SKKV5P3/AhiY+b92ZWZZn161KCtu9ksP5l/k+xC39JiZmZmZWZ/mSo+ZmZmZmfVprvSYmZmZmVmf1usrPZJOlTRH0qROyq9B0jGl93tKOr8z8k75DZH0kKSZkmZLOruz8jYzMzMzs3X1hYEMTgEOiYh5nZRfA3AMcBVAREwHpndS3gCrgP0jYpmkgcA9kv4YEQ904jrMzMzMzCzp1S09kn4JvBeYIuk1SV8vLXsitdo0pJagi1PLylRJQ1OabSXdllpdHpW0DXAesJ+kGZJOlzRe0u9T+lGSbpQ0S9IDknZJ8ydIulTSNEnPSjq1VpmjsCy9HZhefkKsmZmZmVkX6dWVnog4CXgB+Bjwk1aSbgdcGBE7AUuBI9P8SWn+rsDewELgTODuiNgtIirzPBt4LCJ2Ac4Crigt2wH4BDAO+H5qxalKUn9JM4BFwK0R8WCNdCdKmi5p+iVXXN3K5pmZmZmZWS19oXtbPeZFxIw0/QjQIGkkMDYiJgNExEpo83kV+5IqTBFxh6TRkjZMy/4QEauAVZIWAWOAqg+iiIgmYDdJGwGTJe0cEU9USTcRmAh5z5swMzMzM7Ne3tJToZG1t2dIabr8hLMmispezoOaqsW0VEaqraNVEbEUmAYcnFEWMzMzMzOrQ1+q9MwHdgeQtDuwdWuJI+J1YIGkw1PMYEnDgDeAkTXC7gKOTenHA4tTPnWT9K7UwkO6t+hA4Kn25GFmZmZmZvXrS5We64FR6V6Zk4Gn64j5PHCqpFnAfcC7gVlAYxrc4PSK9BOAPVP684DjM8q5GfDnlMfDFPf0/D4jHzMzMzMzq0Ovv6cnIhpKbw+qkWznUvoflabnAvtXSX9AxftpKf0S4LAqZZhQ8X7nyjSlZbOAD9RabmZmZmZmnavXV3reKRpvvrjdMQM++ZWsde04/7t5cQRzf/VGVuzzDM+Ka4rmbo3rp/5ZcZE5Kvlw5X1Eh5BXzjXk7Ze8KFjVtCYrbmBmI/XQzP2Z2yTelHncV/RrzIqLyFtff+U3+r+pvGO4ujlvG9uj8Y7ftDtmwP6fy17f5kteyYobcdXMrLj5z4zKiruuX84traDM4XQGZF43+2WelxtpUFbcsMzr5pCsW4S73+bNede/mkPRtqE5c3++kXmiLVLeNWVVZjkBBmYe+9fJK2vudxcruNLTRSSNBm6vsuiAiMj7z9jD5VZ4zMzMzMy6kis9XSRVbHZb3+UwMzMzM3un60sDGZiZmZmZma3DlR4zMzMzM+vTen2lR9KpkuZImtRJ+TVIOqb0fk9J53dG3qU850t6XNIMSdM7M28zMzMzM1tbX7in5xTgkIiY10n5NQDHAFcBRMR0oCsqJh+LiMVdkK+ZmZmZmZX06pYeSb8E3gtMkfSapK+Xlj2RWm0aUkvQxZJmS5oqaWhKs62k29KDSB+VtA3FQ0f3S60wp0saL+n3Kf0oSTdKmiXpAUm7pPkTJF0qaZqkZyWd2v17w8zMzMzMqunVlZ6IOAl4AfgY8JNWkm4HXBgROwFLgSPT/Elp/q7A3sBC4Ezg7ojYLSIq8zwbeCwidgHOAq4oLdsB+AQwDvi+pNaGtg9gqqRHJJ1YK5GkEyVNlzT9V3+e0Up2ZmZmZmZWS1/o3laPeRHRUmt4BGiQNBIYGxGTASJiJYDU6oOm9iVVmCLiDkmjJW2Ylv0hIlYBqyQtAsYAC2rks09EvCBpU+BWSU9FxF2ViSJiIjAR4M0rvpX5WDgzMzMzs3e2Xt3SU6GRtbdnSGl6VWm6iaKyl/MY3WoxLZWRauuoKiJeSH8XAZMpWofMzMzMzKwL9KVKz3xgdwBJuwNbt5Y4Il4HFkg6PMUMljQMeAMYWSPsLuDYlH48sDjlUzdJw1MrE5KGAwcBT7QnDzMzMzMzq19fqvRcD4ySNAM4GXi6jpjPA6dKmgXcB7wbmAU0psENTq9IPwHYM6U/Dzg+o5xjgHskzQQeougWd0tGPmZmZmZmVodef09PRDSU3h5UI9nOpfQ/Kk3PBfavkv6AivfTUvolwGFVyjCh4v3OlWlKy54Fdq213MzMzMzsnU7SwcDPgP7AJRFxXsXy9wCXAxulNGdGxM218uv1lZ53itlnzWl3zI7zv5u1rkGn/FdW3E6nQOOtl2fF7nLGX7PiftO4MiuuuX/euBCN/fpnxb22enlW3LBheevbgLy4NZmNv6+zJitu2eq847eK5qy44VlRMCR7f+aVs3/mcVhNU1acyB8nZU3krXNVY9450x5/n3Bvu2M2X/JK9voGfvqrWXEbbjs1K27HK3+XFdd8W1ZYttzzOTLPyw0zv9psHHnlHBY5twjDmrwwmjP3y4jMj/nGjXmBgyMv7uUBecfhzQF51+khHej0NCTr9nDIPGVY3dyYF9gLSeoPXAh8nGJgsIclTYmIJ0vJvgNcGxG/kPR+4GaK521W5UpPF5E0Gri9yqIDIiL/v2oPllvhMTMzMzMrGQc8k3pIIekait5W5UpPABuk6Q0pHmNTkys9XSRVbHZb3+UwMzMzM+ssaxY/2+HHqAx61zb/CpSfVTkxPaqlxVjg+dL7BcBeFdlMoHju5X9QdOY4sLV1utJjZmZmZmbdpvwsyhpae0xMi6OByyLifyR9GLhS0s4RUbVvuSs9ZmZmZmZWn+a8eznbaQGwZen9Fqzbfe1LwMEAEXG/pCHAJsCiahn2pSGrzczMzMysK0Vzx19texjYTtLWkgYBnwWmVKR5jjTisqQdgSHAy7Uy7BWVHkmnSpojaVIn5dcg6ZjS+z0lnd8ZeZfyvFTSIklPVMwfJelWSXPT3407c71mZmZmZl2mubnjrzZERCPw78CfgDkUo7TNlnSOpENTsjOAr6RnX14NnBBRe9jA3tK97RTgkIiY10n5NQDHAFcBRMR0YHon5d3iMuAC4IqK+WcCt0fEeZLOTO//s5PXbWZmZmbW6WrcMtMF64mbKYahLs/7Xmn6SWCfevPr8S09kn4JvBeYIuk1SV8vLXsitdo0pJagiyXNljRV0tCUZltJt0maKelRSdsA5wH7SZoh6XRJ4yX9PqUfJelGSbMkPSBplzR/Qmq9mSbpWUmntlbuiLgLWFJl0WEUD1Ii/T28lW0/UdJ0SdNvWD6/3l1mZmZmZtY1uqGlpyv0+EpPRJxEcePSx4CftJJ0O+DCiNgJWAocmeZPSvN3BfYGFlK0rtwdEbtFRGWeZwOPRcQuwFms3VKzA/AJirHDvy9pYMYmjYmIhWnbFgKb1koYERMjYs+I2POfhzdkrMrMzMzMrBN1zz09na63dG+rx7yImJGmHwEaJI0ExkbEZICIWAkgtfoo3H1JFaaIuEPSaEkbpmV/iIhVwCpJi4AxFKNLmJmZmZn1fd0zelun622VnkbWbp0aUppeVZpuAoZSfYzvtrQ2LnjlOnL230uSNouIhZI2o8awemZmZmZmPc56aqnpqB7fva3CfGB3AEm7A1u3ljgiXgcWSDo8xQyWNAx4AxhZI+wu4NiUfjywOOXTWaYAx6fp44GbOjFvMzMzM7Ou43t6usX1wChJM4CTgafriPk8cKqkWcB9wLuBWUBjGtzg9Ir0E4A9U/rzeLuC0i6SrgbuB94naYGkL6VF5wEflzQX+Hh6b2ZmZmbW40U0d/i1PvSK7m0R0VB6e1CNZDuX0v+oND0X2L9K+gMq3k9L6ZdQjLBWWYYJFe93rkxTsfzoGvNfqbLuNj2gEe0NYcCv8hqo3rfd5W0nqrXOj2fVEfnHj36p7URVfGdq3incX3n1/ebaw7+3ak1zY1bcgKwemjCmKW/7huVtHmsGDGk7URX9Wr+/rqYh9M+KG555yRuR+fvQiszjNzjz/GyM3tPPun+/rv/N7Yklo9sdM+Kqmdnr23DbqVlxA3ar9W+tDZnnCbf9Niss9/Oae6RXZ143h2R+7jZozosbmfn97Y3MHZP7/6Q577LJsMwvqKNYkxW3qmlwVlzTgLx/YM1k/uMDBkfmdwnlrfP11cuz4jrdemqp6aheUemx3iG3wmNmZmZmvUQvvafHlZ4OkDQauL3KogNSi46ZmZmZWd/h0dveeVLFZrf1XQ4zMzMzs27hlh4zMzMzM+vTfE+PmZmZmZn1ab20padXDFkt6VRJcyRN6qT8GiQdU3q/p6TzOyPvlN+Wkv6cyjxb0ldLy0ZJulXS3PR3485ar5mZmZlZl/JzerrUKcAnI+LYTsqvAaxNtKcAACAASURBVHir0hMR0yPi1E7KG6AROCMidgQ+BPybpPenZWcCt0fEdhSDIJzZies1MzMzM+syEU0dfq0PPb7SI+mXwHuBKZJek/T10rInUqtNQ2pVuTi1rEyVNDSl2VbSbelBpI9K2obigaD7SZoh6XRJ4yX9PqUfJelGSbMkPSBplzR/gqRLJU2T9KykmpWkiFgYEY+m6TeAOcDYtPgwoOVBOJcDh7ey7SdKmi5p+r3L5ubtQDMzMzOzzhLNHX+tBz2+0hMRJwEvAB8DftJK0u2ACyNiJ2ApcGSaPynN3xXYG1hI0bpyd0TsFhGVeZ4NPBYRuwBnAVeUlu0AfAIYB3xf0sC2yi+pAfgA8GCaNSYiFqZtWwhsWis2IiZGxJ4Rsec+I7Zra1VmZmZmZl2rl3Zv60sDGcyLiBlp+hGgQdJIYGxETAaIiJUAav2p0vuSKkwRcYek0ZI2TMv+EBGrgFWSFgFjgAW1MpI0ArgeOC0iXs/fNDMzMzOzHqCXDmTQ2yo9jazdOjWkNL2qNN0EDAVard3UUC0maqyj5v5LrUDXA5Mi4obSopckbRYRCyVtBizKKKOZmZmZWffrpQ8n7fHd2yrMB3YHkLQ7sHVriVPrygJJh6eYwZKGAW8AI2uE3QUcm9KPBxa3t5VGRVPSr4A5EfHjisVTgOPT9PHATe3J28zMzMxsvfE9Pd3iemCUpBnAycDTdcR8HjhV0izgPuDdwCygMQ1ucHpF+gnAnin9ebxdQWmPfdJ690+DJcyQ9Mm07Dzg45LmAh9P783MzMzMej7f09N1IqKh9PagGsl2LqX/UWl6LrB/lfQHVLyfltIvoRhhrbIMEyre71yZprTsHmp0rYuIV6qsu02P9l/Z3hCeZ3i7YwB2OeOvWXHwPf7xo3/Pihz+/36VFbfHHqdlxQ3NPPUbyfugrhya1xT8fLyZFTesf96x/9Tq9p9nAP/UsCQrboP4cFbcHJZnxS1lTVYctDlmSVWbRP+suA1rNkS3rrF/tJ2oipXkxQG8MmhoVtyajRqz11mvBQPb/7ve/GdGZa9vxyt/lxeovN8fB+x6YFbcysh75N3gzOvm8lidFbdo5dKsuBVD8q7TyvwdeMvGvOvKMuVdH15vzPu/sGJQVhgrMs/PTZV3HLaMvP9Dc2JI24mqWKL8a9GyzG1cnjlk89KVef/7Ol0vvaent7X0WA+WW+ExMzMzs16im1p6JB0s6S+SnpG0znMtJf2k1KPqaUmt/lLSK1p6eipJoykeMFrpgNSiY2ZmZmbWd3RD9zRJ/YELKW4FWQA8LGlKRDzZkiYiTi+l/w+KR8TU5EpPB6SKzW7ruxxmZmZmZt0hMrvntdM44JmIeBZA0jUUt588WSP90cD3W8vQ3dvMzMzMzKw+ndC9TdKJkqaXXidWrGUs8Hzp/YI0bx2StqIY0fmO1ortlh4zMzMzM6tPJwxkEBETgYmtJGntuZmVPgtcF200QfWKlh5Jp0qaIylvyJl182uQdEzp/Z6Szu+MvEt5zpf0eLq5anpp/ihJt0qam/5u3JnrNTMzMzPrMt0zkMECYMvS+y2AF2qk/SxwdVsZ9opKD3AK8MmIOLaT8msA3qr0RMT0iDi1k/Iu+1hE7BYRe5bmnQncHhHbUQyCsM5oFGZmZmZmPVL3PJz0YWA7SVtLGkRRsZlSmUjS+4CNgfvbyrDHV3ok/RJ4LzBF0muSvl5a9kRqtWlILUEXS5otaaqkoSnNtpJuSw8ifVTSNhQPBN0vtcKcLmm8pN+n9KMk3ShplqQHJO2S5k+QdKmkaZKelZRbSToMuDxNXw4c3sq2v9Xf8S9vPJu5OjMzMzOzTtINLT0R0Qj8O/AnYA5wbUTMlnSOpENLSY8GromINh841+MrPRFxEkVz1seAn7SSdDvgwojYCVgKHJnmT0rzdwX2BhZStK7cnVphKvM8G3gsInYBzgKuKC3bAfgExYgS35fU2hMLA5gq6ZGKm7PGRMTCtG0LgU1rZhAxMSL2jIg93zfyva2syszMzMysG3RPSw8RcXNEbB8R20TEuWne9yJiSinNhIioq9dUXxrIYF5EzEjTjwANkkYCYyNiMkBE8Zhfqdq9UW/Zl1Rhiog7JI2WtGFa9oeIWAWskrQIGEPR57CafSLiBUmbArdKeioi7urIBpqZmZmZrVfd8JyertDjW3oqNLJ2mYeUpleVppsoKnSt1m5qaG20iGrrqCoiXkh/FwGTKVqHAF6StBlA+rsoo4xmZmZmZt2vewYy6HS9rdIzH9gdQNLuFGNy1xQRrwMLJB2eYgZLGga8AYysEXYXcGxKPx5YnPKpm6ThqZUJScOBg4An0uIpwPFp+njgpvbkbWZmZma23nRT97bO1tu6t10PHCdpBsWoDk/XEfN54CJJ5wBrgKOAWUCjpJnAZcBjpfQTgF9LmgWs4O0KSnuMASanbnQDgKsi4pa07DzgWklfAp5L5TEzMzMz6/l6afc21THYgfUAO2z6wXYfqKbMmvSKxpVZcQCD+uXVo/cYsVVW3NWP/DQrrnlJraHeW9d4+c+y4pZMXZIVd+pLw7LiNuo3KCtuy7V6jNbv3U05PUlhyzWtPkespl8PXp4Vt6x5dVbcAOU1im+kwVlxWyjvOLxB3v4cSf+sOIDcf31LWJMVd+n86+o+2fYbe0C7r5v9W7/ns1XN3fz/dGU0ZsXdO+vXWXGND9yYFffit/+YFXfbK2Oy4qb0W5oVN0R5n4MhmZ+fxsxPz6yVC7Pithg0Kisud78Mb3Wsp9pGKe//18CsOxrgntV53wcAhmf+r+2f2dFqceOyrLiZL96Xf2Gr4s2b/rvDF7uhh32zU8tUj97W0mM9WG6Fx8zMzMx6iV7a0uNvqR0gaTTFA0YrHRARr3R3eczMzMzMutR6uieno1zp6YBUsdltfZfDzMzMzKxbuKXHzMzMzMz6NFd6zMzMzMysT+ulg6D1tuf0rEPSZZI+3QX5HirpzMzY+ZI2qbFsiKSHJM2UNFvS2R0rqZmZmZlZN+mlDyftUS09kvpHRN6Yq50sIqZQPEi0s60C9o+IZZIGAvdI+mNEPNAF6zIzMzMz6zy9tHtbdkuPpAZJcyRdnFospkoaKmkbSbdIekTS3ZJ2SOnXapGRtCz9HS/pz5KuAh5P874m6Yn0Oq0Uc5ykWamV5MpScT4i6T5Jz1as4xuSHk4xZ5fK/ZSkS1L+kyQdKOleSXMljUvpTpB0QZoeI2lyWu9MSXun+Tem7Zwt6cR69lsUWgZaH5heVdsJJZ0oabqk6UvffLme7M3MzMzMuk40d/y1HnS0pWc74OiI+Iqka4EjgS8AJ0XEXEl7AT8H9m8jn3HAzhExT9IeKY+9AAEPSroTWA18G9gnIhZLKj9lazNgX2AHitaZ6yQdlMo3LuUzRdJHgOeAbYGjgBOBh4FjUvyhwFnA4RXlOx+4MyKOkNQfGJHmfzEilkgaCjws6fp6hqpOeTySynFhRDxYLV1ETAQmQt7DSc3MzMzMOlUvbenpaKVnXkTMSNOPAA3A3sDv9PZTret5JPlDETEvTe8LTI6I5QCSbgD2o2gNuS4iFgNERPkR9zdGRDPwpKSWRzgflF6PpfcjKCpBz6Vyt7QqzQZuj4iQ9Hjahkr7A8el9TYBr6X5p0o6Ik1vmfJvs9KT8thN0kbAZEk7R8QTbcWZmZmZma1XvXQgg45WelaVppuAMcDSiKj27JpGUnc6FTWiQaVly0vTojpRoxtYRTlU+vvDiLhorUykhor0zaX3zdS5TySNBw4EPhwRKyRNA4bUE9siIpamuIMBV3rMzMzMrGfrpS09nT162+vAPElHQVG5kbRrWjYf2CNNH0ZxL0s1dwGHSxomaThwBHA3cDvwGUmjU96jasS3+BPwRUkjUvqxkjbN2yxuB05O+fSXtAGwIfBqqvDsAHyonowkvSu18JC6xR0IPJVZLjMzMzOz7uPR295yLPALSd+hqNhcA8wELgZukvQQRSViebXgiHhU0mXAQ2nWJRHxGICkc4E7JTVRdFs7oVYhImKqpB2B+1NXu2XA5yhapNrrq8BESV9K8ScDtwAnSZoF/AWod/S1zYDL0309/YBrI+L3GWUyMzMzM+te62kggo5S9NJ+ee80u75773YfqKbMk/LNptVZcQD9ldd4uNew92TFXXLr17Li+o3aPCuu6e95jXJN112WFff5K1ZmxY3SoLYTVbFjc7t6aL7lA6vyzpnByjtHJw7Ju269EWuy4oZn/j60hfL2506r8z5HL2f+jDW6Aw8KeLNWh+Q2PDcg79ifO/+qute4z9j9232i9K/Zw7rr9FPeOpsy/39Pvegfs+IGfKhyjJ/6rLnih1lxT/44b9TSc/vlndDDVasDSus2yowblHmu/Xnl81lxYwdtlBU3VHkXlhGZcRvV7AjUuk2if1YcwM2NC7PihvbLK2u/zGP/wuqlWXFPvPRAp17YVkw8vcOVh2En/qTbL7Y96jk91rvlVnjMzMzM1ofcCs87Wi+9p8eVni6S7j26vcqiA+oZ1trMzMzMrMfppd3bXOnpIqliU20UOzMzMzOz3qm5d94a4/5IZmZmZmZWn24avU3SwZL+IukZSWfWSPMZSU9Kmi3pqtbyc0uPmZmZmZnVpxvu6UmjHF8IfBxYADwsaUpEPFlKsx3wLWCfiHi1rUfT9PqWHkmXSfp0F+R7aK1aZR2x8yVt0sbyxyXNkDQ9v5RmZmZmZt0oouOvto0DnomIZyNiNcUjcA6rSPMV4MKIeLUoVixqLcMe1dIjqX9EdGDw1M4TEVOAKV24io9FxOIuzN/MzMzMrHN1QkuPpBOBE0uzJkbExNL7sUB5fPYFwF4V2Wyf8roX6A9MiIhbaq0zu6VHUoOkOZIuTv3opkoaKmkbSbdIekTS3ZJ2SOnXapGRtCz9HS/pz6kf3uNp3tckPZFep5VijpM0S9JMSVeWivMRSfdJerZiHd+Q9HCKObtU7qckXZLynyTpQEn3SporaVxKd4KkC9L0GEmT03pnSto7zb8xbefsdPA6laQTJU2XNP2VFS91dvZmZmZmZu3THB1+RcTEiNiz9JpYsZZqz/GpbCIaAGwHjAeOBi6RVPOBVB1t6dkOODoiviLpWuBI4AvASRExV9JewM+B/dvIZxywc0TMk7RHymMvig1+UNKdwGrg2xT99hZLGlWK3wzYF9iBonXmOkkHpfKNS/lMkfQR4DlgW+Aoihrmw8AxKf5Q4Cyg8gls5wN3RsQRqY/hiDT/ixGxRNJQir6G19c5HHUAUyUFcFGVA10kKuZPhLyHk5qZmZmZdaruGbJ6AbBl6f0WwAtV0jwQEWuAeZL+QvHd/+FqGXa00jMvImak6UeABmBv4Hd6+wnTg+vI56GImJem9wUmR8RyAEk3APtRVBSua+kSFhFLSvE3RkQz8KSkMWneQen1WHo/gmJHPJfK3dKqNBu4PSJC0uNpGyrtDxyX1tsEvJbmnyrpiDS9Zcq/nkrPPhHxQrrh6lZJT0XEXXXEmZmZmZmtP90zZPXDwHaStgb+DnyWopGi7EaKFp7L0r302wPP1sqwo5WeVaXpJmAMsDQiqj2fppHUnU5FjWhQadny0nS15qyW+bX28qqKdC1/fxgRF62VidRQkb659L6ZOveJpPHAgcCHI2KFpGnAkHpiI+KF9HeRpMkUrVGu9JiZmZlZjxbdMHpbRDRK+nfgTxT361waEbMlnQNMT/fe/wk4SNKTFPWQb7TW46qzR297naJ56SgoKjeSdk3L5gN7pOnDgIE18rgLOFzSMEnDgSOAu4Hbgc9IGp3yHlUjvsWfgC9KGpHSj21rKLtW3A6cnPLpL2kDYEPg1VTh2QH4UD0ZSRouaWTLNEVr1BOZ5TIzMzMz6z6dcE9PPSLi5ojYPiK2iYhz07zvpQoPUfhaRLw/Iv4hIq5pLb+uGL3tWOAXkr5DUbG5BpgJXAzcJOkhikrE8mrBEfGopMuAh9KsSyLiMQBJ5wJ3Smqi6LZ2Qq1CRMRUSTsC96eudsuAz1HUBNvrq8BESV9K8ScDtwAnSZoF/AV4oM68xgCTU5kGAFe1NtKEmZmZmVmP0T339HQ6RX1jZdt69oF379NtB+rN5tXZsc2Z59Mew7bIirvkc7UaDFvX/zNfyIsbu0NWXNPfn8qKO+bQX2bFjVTeftmteWhW3LjVK7Pi3rPlq1lxP3i5rYbe6lZkjoi/meq5NXFd72nqnxW3j97Iinth1bCsuLFDqv4GVZfGprwOA/OahmfFHbVwUq0u0OsYv8WBWRekAco7bv0zO0/kdrlYnnmtvnyTvDWOOb4hK27gcd/Kilt9wbez4j7/67zzeXjm78AbZ15vN4u8uBvWPJcVt+XAmoNatSp3v2yiQW0nqmLjyPv8vaex7kvDOq7vvzQrbpjy9k3uZ/7JVa0+hqammS/el79zqlh+zrEd/k46/Hv1X8s7S496To/1brkVHjOzniK3wmNmvVNuhecdrRvu6ekKrvR0kXTv0e1VFh1Q57DWZmZmZmY9S/eM3tbpXOnpIqliU20UOzMzMzOz3qmX3tPjSo+ZmZmZmdXHLT1mZmZmZtaXdcdzerpCZz+np8tIukzSp7sg30MlnZkZOz89AbbW8kslLZL0RMX8UZJulTQ3/d04Z/1mZmZmZt2qm57T09nWS6VH6jnD40TElIg4r4uyvww4uMr8M4HbI2I7isEOsipdZmZmZmbdqq9WeiQ1SJoj6WJJsyVNlTRU0jaSbpH0iKS7Je2Q0q/VIiNpWfo7XtKfJV0FPJ7mfU3SE+l1WinmOEmzJM2UdGWpOB+RdJ+kZyvW8Q1JD6eYs0vlfkrSJSn/SZIOlHRvamEZl9KdIOmCND1G0uS03pmS9k7zb0zbOVvSifXu3Ii4C1hSZdFhwOVp+nLg8Br7/kRJ0yVNX7zixXpXa2ZmZmbWNaK546/1oN57erYDjo6Ir0i6FjgS+AJwUkTMlbQX8HNg/zbyGQfsHBHzJO2R8tgLEPCgpDuB1cC3gX0iYrGk8lMINwP2BXYApgDXSToolW9cymeKpI8AzwHbAkcBJwIPA8ek+EOBs1i3snE+cGdEHJFao0ak+V+MiCWShgIPS7q+g8NOj4mIhQARsVDSptUSRcREYCJ078NJzczMzMyq6uMDGcyLiBlp+hGgAdgb+J301gNV63lk+UMRMS9N7wtMjojlAJJuAPYDArguIhYDRES5peTGiGgGnpQ0Js07KL0eS+9HUFSCnkvlbmlVmk3RpSwkPZ62odL+wHFpvU3Aa2n+qZKOSNNbpvz9rB0zMzMze0eJPl7pWVWabgLGAEsjotpzaBpJ3eZU1IgGlZYtL02L6kRR8WmrHCr9/WFEXLRWJlJDRfrm0vtm6tx2SeOBA4EPR8QKSdOAIfXEtuIlSZulVp7NgEUdzM/MzMzMrOv10kpP7kAGrwPzJB0FReVG0q5p2XxgjzR9GDCwRh53AYdLGiZpOHAEcDfFjf2fkTQ65T2qRnyLPwFflDQipR9bq7tYHW4HTk759Je0AbAh8Gqq8OwAfCgz77IpwPFp+njgpk7I08zMzMysazU3d/y1HnRk9LZjgS9JmgnMpqjgAFwMfFTSQxT36yyvFhwRj1KMbvYQ8CBwSUQ8FhGzgXOBO1PeP26tEBExFbgKuD91W7sOGJm5TV8FPpbyeQTYCbgFGCBpFvBfwAP1ZibpauB+4H2SFkj6Ulp0HvBxSXOBj6f3ZmZmZmbWBRTRO5uo3ml23HRcuw9U1Owl2LbXVletq7ZpTXNjVtx+G70vK+78MSuy4kYdPDorrv+nT8iLG7tDVtzxe5yRFTdcec8dbohBbSeqYvyqVW0nqmK3L9Xq5dq670zKG/X+NfLOz62jnlsW17VVY972HfL+57Pi5j5R87Fhbdpmh8VZcQM3yFvf8hfyztEtH7697p2652b7ZV0E+ynv98Dca+7qzOvmopVLs+LOGbF7VtwHWJYVt+OXh2bFDfr3c7PiPrfH17Li+tfsdd+63OM+KPPpHTtF3v58iNez4kaqVoed1m1Qs6NP64Z14Pf4D67Mi7tu8JtZcZso73/me5rz9s2byjvXvvu3SXkndw1vnHJIhysPI3/+x04tUz3y/utYn9bdFR4zW79yKzx9UW6Fx8zWr+6u8Lyj9dJ7elzp6aB079HtVRYd0MFhrc3MzMzMepTe2kvMlZ4OShWbaqPYmZmZmZn1LW7pMTMzMzOzPs2VHjMzMzMz68t668NJe80dm5Iuk/TpLsj3UElnZsbOl1R1uCRJW0r6s6Q5kmZL+mpp2ShJt0qam/5unFt+MzMzM7Nu0xwdf9VB0sGS/iLpmWrf1SWdIOllSTPS68ut5bdeKj1S5jiNXSAipkREVzwnpxE4IyJ2pHig6b9Jen9adiZwe0RsRzEIQlaly8zMzMysWzV3wqsNqa5wIXAI8H7g6NL36LLfRsRu6XVJa3m2WemR1JBaKy5OLRZTJQ2VtI2kWyQ9IuluSTuk9Gu1yEhalv6OTy0fVwGPp3lfk/REep1WijlO0ixJMyVdWSrORyTdJ+nZinV8Q9LDKebsUrmfknRJyn+SpAMl3ZtaWMaldCdIuiBNj5E0Oa13pqS90/wb03bOlnRiW/sMICIWpgewEhFvAHOAsWnxYcDlafpy4PAa+/5ESdMlTV/65qJ6VmtmZmZm1mWiOTr8qsM44JmIeDYiVgPXUHx/zlbvPT3bAUdHxFckXQscCXwBOCki5kraC/g5sH8b+YwDdo6IeZL2SHnsBQh4UNKdwGrg28A+EbFY0qhS/GbAvsAOwBTgOkkHpfKNS/lMkfQR4DlgW+Ao4ETgYeCYFH8ocBbrVjbOB+6MiCNSDXNEmv/FiFgiaSjwsKTr2zMctaQG4APAg2nWmIhYCEXlSNKm1eIiYiIwEfIeTmpmZmZm1qk64Z6e1IhQbkiYmL73thgLlJ/UvYCizlDpyPS9/2ng9Iio+XTveis98yJiRpp+BGgA9gZ+J731QNV6Hln+UETMS9P7ApMjYjmApBuA/YAArouIxQARsaQUf2NENANPShqT5h2UXo+l9yMoKkHPpXK3tCrNpuhSFpIeT9tQaX/guLTeJuC1NP9USUek6S1T/nVVeiSNAK4HTouIvMchm5mZmZn1BHV0T2tL+Yf9GlRlXmVt63+BqyNilaSTKHpP1WyAqbfSs6o03QSMAZZGRLXn0zSSus2pqBENKi1bXpqutjEt82tVIVdVpGv5+8OIuGitTIrWlXL65tL7ZurcdknjgQOBD0fECknTgCF1xg6kqPBMiogbSotekrRZauXZDHDfNTMzMzPr8bpp9LYFFA0NLbYAXlirHGv3uroY+L+tZZg7kMHrwDxJR0FRuZG0a1o2H9gjTR8GDKyRx13A4ZKGSRoOHAHcTXFj/2ckjU55j6oR3+JPwBdTiwqSxtbqLlaH24GTUz79JW0AbAi8mio8O1AMStCmVOH7FTAnIn5csXgKcHyaPh64KbO8ZmZmZmbdpxsGMqC4LWU7SVtLGgR8luL781tSw0GLQynun6+pI8/pORb4haTvUFRsrgFmUtS0bpL0EEUlYnm14Ih4VNJlwENp1iUR8VjaiHOBOyU1UXRbO6FWISJiqqQdgftTV7tlwOcoWqTa66vARElfSvEnA7cAJ0maBfwFeKDOvPYBPg88Lqmla+BZEXEzcB5wbVrPcxT3HZmZmZmZ9Wjd0dITEY2S/p2icaM/cGlEzJZ0DjA9IqZQ3H5yKEUvsyW0Ul+AOio9ETEf2Ln0/kelxQdXSf8Sa7eGfCvNnwZMq0j7Y6CyFYSIuJy3RzdrmXdCxfsRpemfAT+rUvxyuU8oTc9vWRYRlwGXlcpebWSIQ6rMIyIaqs1Py+6hRhe+1Bx3QK1YMzMzM7MeqRPu6alHaii4uWLe90rT3yLVM+qhCA8K1hscvdXh7T5Qw5XXkDeMvMcoDah5m1bbno83s+IaI++TVxqAo1sMydynlz/yP1lxjbf8KivuqbOeyIq7rt/wrLiZza+1naiKgZk9cwdlPiJsSGbcmszz8/VYnRW3rHlV24mqGJR5rQBoytzGV5tWZMU9uvCeuj+8R211WLuvmxtpUNuJatgws/PEkMxr54rMbx5zm5dlxeVe43Ovt7mf8988ss5vqXVpvP3KthNV8dz36+0AsrYrV+Y9l/zexpez4v5hQFt3C1Q3JvLO6w2b8477qsx/z3/tl3fdfKYpf4yp4ap1B0frVkZjVtwrmdfNh164s1O/9LzyqY92uPIw+n87t0z16Ej3NgPSvUe3V1l0QHuGtTYzMzMz6/G6qaWns7nS00GpYlNtFDszMzMzsz4ls4F/vXOlx8zMzMzM6uNKj5mZmZmZ9WW9taUn9zk9PZKkEyRtXno///+zd+dxclZ13vc/33T2BQggwxqCbLJH0ihRHIjgiMrI8JAZwzAj4MzkZpBBZsQbBUXI4Chz84KHEAQzDkRCcCPKIMIDyhpWEyBkEVDEKAFvIIIhIVun+/f8cZ2GK5Xq6urTWzV833nVK1edOr9znauqurpOn03S9l2Mn9k7tdvsPO+TtCjdnpR0Qm+f08zMzMysu6Kt+7f+8Hbr6TkVWErFjq0NaCnQnNYg3wl4UtJPIjKX8zAzMzMz6wPu6ekFksZLelrSdyQtlnSTpJGSLpC0QNJSSbNUmAI0A3NTD8qIVMy/SHpc0hJJ70nlbivp5lTmI5IOrnLu3SXdlfLcJWlcSt8zxSyQNF3SmpQ+R9Lxpfi5acOkLUTE2lIDZzhQdek/SdMkLZS08Nk1y/OeRDMzMzOznhLq/q0fNHSjJ9kXmBURBwOvA2cAMyPisIg4EBgBHBcRNwELgZMjYkLEmxu/rIyIQ4GrgXNS2kXAE6nM84Drq5x3JnB9yjMXmJHSrwCuiIjD2LxH6dvAaQCStgY+QMWGSmWS3i9pV4GW2wAAIABJREFUGbAEOL1aL09EzIqI5oho3mv0+BpPkZmZmZlZ7xuow9sGQqPn+Yh4MB3fABwBTJb0qKQlwIeBA2rE/yj9/xgwPh0fAcwBiIi7ge1SQ6VsEnBjOp6TYtrTf5iO2x8nIu4D9pK0A3ASMK/WcLWIeDQiDgAOA74kaXiNazAzMzMz63fRpm7f+sNAmNNTOfQrgG9SzIl5XtKFFEPEOtK+RXkrb11vtWe7s91l69l9dg5wMjAV+Ewd+YmIpyS9ARxI0VNlZmZmZtaQPKen94yTNCkdnwQ8kI5XShoNTCnlXQ2MqaPM+ykaJ0g6imII3OsVeR6iaLyQ8raf9xHgxHQ8tSJmNnA2QEQs6+jkkvaQNDgd704xhG95HfU2MzMzM+s3Eer2rT8MhJ6ep4BTJH0L+DXF3JyxFHNhlgMLSnlnA9dIWkcxDK0jFwLXSVoMrAVOqZLnLOBaSV8AXiHN16Fo1Nwg6fPAT4FV7QER8ZKkp4CbO7mmI4AvSmqh2OLpjIhY2UmMmZmZmVm/Gqg9PQOh0dMWEadXpH053TYTEfOAeaWk8aXHFgJHpeNXgeOpEBGzKRpORMRyivlClV4ADo+IkDSV0pA0SSOBvYHv1rqgiJhDmlNkZmZmZjZQ9NecnO4aCI2eRjMRmClJwJ9Ic3ckHQNcC1wWEatqxGdpyhiJOJymrHNtlRn3Z635oyVHNo3KintBGzrPVEVT1WldnWupa2rXloZmjiTd9P/9d1bc4GP/IStun99dmBV3+JUtWXErhuet37E68s6X+zqMzPyZQHlxkfk+axqU974eovyf3ZbMP/m93rY++5z1GpbxumW/1sDYyHset8r8AqHM9/Pzg/KuMef5hOqTaOvRmvlzsOmuvL8pDj7677PidnthRVbcYf/5RlbcgiF5X91GZL5fxma+P3duyftsyH2/vDFsSFbcy4OGZp4RRinvnE2Zw7tWtub9TPS0aIxqdFlDN3pSb8uB/V2PsoiYDxxSJf3nwLhymqSPApdUZP1tRJzQezU0MzMzM+sd7umxLUTEHcAd/V0PMzMzM7Oe4EaPmZmZmZm9rXl4m5mZmZmZva0N1J6egbBPT90knSpp59L95ZK272L8zN6p3WbnGS9pnaRF6XZNb5/TzMzMzKy7vE9PYzgVWAq82M/1qMdvImJCf1fCzMzMzKxeA3Wfnobu6Uk9Ik9L+o6kxZJukjRS0gWSFkhaKmmWClOAZmBu6j0ZkYr5F0mPS1oi6T2p3G0l3ZzKfETSwVXOvbuku1KeuySNS+l7ppgFkqZLWpPS50g6vhQ/V9Inu3n90yQtlLTw12t+252izMzMzMy6rS3U7Vt/aOhGT7IvMCsiDgZeB84AZkbEYRFxIDACOC4ibqLYKPTkiJgQEetS/MqIOBS4GjgnpV0EPJHKPA+4vsp5ZwLXpzxzgRkp/Qrgiog4jM17lL4NnAYgaWvgA8BtNa5rD0lPSLpP0oeqZYiIWRHRHBHNe4/eo0ZRZmZmZma9r6+Gt0k6VtIzkp6V9MUa+aZICknNtcobCI2e5yPiwXR8A3AEMFnSo5KWAB8GDqgR/6P0/2PA+HR8BDAHICLuBrZLDZWyScCN6XhOimlP/2E6bn+ciLgP2EvSDsBJwLyI2NRBnf4AjIuI9wL/Btwoaasa12BmZmZm1u+iTd2+dUZSE3AV8DFgf+AkSftXyTcGOAt4tLMyB0Kjp3JhvAC+CUyJiIOA/wJqbeu+If3fyltzmKo9250twFfPAn1zgJMpenyu67CgiA0R8cd0/BjwG2CfOso3MzMzM+s3Ed2/1eF9wLMR8VxEbAS+BxxfJd+/A/8JrO+swIHQ6BknaVI6Pgl4IB2vlDQamFLKuxoYU0eZ91M0TpB0FMUQuNcr8jwETE3HJ5fO+whwYjqeWhEzGzgbICKWdXRySe9KLVgkvRvYG3iujnqbmZmZmfWbnujpKc9bT7dpFafZBXi+dH9FSnuTpPcCu0XErfXUeyCs3vYUcIqkbwG/ppibMxZYAiwHFpTyzgaukbSOYhhaRy4ErpO0GFgLnFIlz1nAtZK+ALxCmq9D0ai5QdLngZ8Cq9oDIuIlSU8BN3dyTX8OTJe0iaIH6vSIeLWTGDMzMzOzftUTCxFExCxgVo0sNUdlSRoEXE6xcnNdBkKjpy0iTq9I+3K6bSYi5gHzSknjS48tBI5Kx69SpYssImZTNJyIiOUU84UqvQAcHhEhaSrF4gkASBpJ0Wvz3VoXVKWeZmZmZmYNr4/22VkB7Fa6vyubLyA2BjgQuFcSwI7ALZI+mb7zb2EgNHoazURgpopn+E/AZwAkHQNcC1wWEatqxGdppeuLordkxBRxeaMeR9Y3RrOqv9zY6VDMqn46dETnmarYOnM34dzxoGuV9+Q8fd7SrLh9fndhVtzQ/5UXd/S2l2fFvfi117LiHmjKez4HKe91H575yo+hKStuG+V9NLdlvs8GV/2DWn3WKO9zZs2gjdnnrNdQdf11G96N52Jk5heBMZl7Xuy2qSUr7tHhee/LrTUkKy73c/OV2NB5pip+/9VHsuJ2e2FFVtyQT38pK+6Y1zpcjKqmK2fnvWGGZb4SQzJ/t28Tee/PbYbnve4tG+uZ3bClF4YNy4qD/Oe0ta5p4lta19r7n5v1qHNOTnctAPaWtAdFh8NU4G/fqkOsArZvvy/pXuCcjho80OCNntTbcmB/16MsIuYDh1RJ/zkwrpwm6aPAJRVZfxsRJ/ReDc3MzMzMekdf7LMTEZsknQncATQB10bEMknTgYURcUtXy2zoRs9AFxF3ULxYZmZmZmYDXh8NbyMibqNiz8uIuKCDvEd1Vp4bPWZmZmZmVpc+Gt7W49zoMTMzMzOzuvTF8LbeMBD26dmMpFMl7Vy6v1zS9rViqsTP7J3abXae7STdI2lN5fkkTZS0RNKzkmakRRHMzMzMzBpahLp96w8DrtFDsR73zp1lagDrga8A51R57GpgGsXy1nsDx/ZhvczMzMzMsrSFun3rD/3e6JE0XtLTkr4jabGkmySNlHSBpAWSlkqapcIUoBmYK2mRpPb1iv9F0uOp9+Q9qdxtJd2cynxE0sFVzr27pLtSnrskjUvpe6aYBZKmS1qT0udIOr4UP1fSJ6tdV0S8EREPUDR+yufcCdgqIh6OiACuB/6qg+fmzd1qn12zvGtPrJmZmZlZD4seuPWHfm/0JPsCsyLiYOB14AxgZkQcFhEHAiOA4yLiJorNQE+OiAkRsS7Fr4yIQyl6UNp7Vi4CnkhlnkfRuKg0E7g+5ZkLzEjpVwBXRMRhbL4R0reB0wAkbQ18gIpVJeqwC8WGS+1WpLQtRMSsiGiOiOa9Ro/v4mnMzMzMzHqWe3q65/mIeDAd3wAcAUyW9KikJcCHgQNqxP8o/f8YMD4dHwHMAYiIu4HtUkOlbBJwYzqek2La03+YjtsfJyLuA/aStANwEjAvIjbVe5FJtVd6gK6DYWZmZmbvJAN1Tk+jrN5W+aU/gG8CzRHxvKQLgeE14tu3723lrWvKaVzU0/iYA5xMsTPsZ+rIX2kFsGvp/q5s3ptkZmZmZtaQ2vq7ApkapadnnKRJ6fgk4IF0vFLSaGBKKe9qYEwdZd5P0ThB0lEUQ+Ber8jzEEXjhZS3/byPACem46kVMbOBswEiYlkd9dhMRPwBWC3p8LRq26eB/+lqOWZmZmZmfS1Qt2/9oVF6ep4CTpH0LeDXFHNzxgJLgOXAglLe2cA1ktZRDEPryIXAdZIWA2uBU6rkOQu4VtIXgFdI83UoGjU3SPo88FNgVXtARLwk6Sng5s4uStJyYCtgqKS/Av4iIn4J/HO6jhHA7elmZmZmZtbQ2gbopIxGafS0RcTpFWlfTrfNRMQ8YF4paXzpsYXAUen4VeB4KkTEbIoGBxGxnGK+UKUXgMMjIiRNpVg8AQBJIymWmf5uZxcVEeM7SF8IHNhZvJmZmZlZI2nrp56a7mqURk+jmQjMTMPP/kSauyPpGOBa4LKIWFUjvset7fJ6CfljLl+nJSuuZXCtaVe1HTf+1ay4HX+za+eZqnjPxo1ZccPUtyNZbxo+Kivu8CvzXsOjt708K27IX/9rVtzf3J0zLQ7u+8XYrLh1GT9HAE2Z+wdvH01Zcfu05I08HtvamhW3jfJ+HgB+05T3c//6kHpGKQ8sLZnfA1ZnDjRfo7z316Y3p8F2zdDMLzrviryvGquU9/M6Z33e58Nh//lGVtwxr30xK27o576RFbf3nLzzrc38VvByU94bdIOGZcXttT7vfb3vyMoZDPVZFPmfRUMzJ+RvUl5XybrW/M/qntRfw9O6q98bPam3paF6PSJiPnBIlfSfA+PKaZI+ClxSkfW3EXFC79XQzMzMzKzvDdSFDPq90TPQRcQdwB39XQ8zMzMzs97mnh4zMzMzM3tbc0+PmZmZmZm9rQ3URk+j7NNTN0mnStq5dH+5pO27GD+zd2q32Xk+IukxSUvS/x8uPTYxpT8raUZaMMHMzMzMrKEN1H16BlyjBzgV2LmzTA1gJfCXEXEQxR5Bc0qPXQ1Mo1j6em/g2L6vnpmZmZlZ17Sp+7f+0O+NHknjJT0t6TuSFku6SdJISRdIWiBpqaRZKkwBmoG5khZJGpGK+RdJj6fek/ekcreVdHMq8xFJB1c59+6S7kp57pI0LqXvmWIWSJouaU1KnyPp+FL8XEmfrHZdEfFERLyY7i4DhksaJmknYKuIeDgiArge+KsOnptpkhZKWrh8ze9znl4zMzMzsx7Thrp96w/93uhJ9gVmRcTBwOvAGcDMiDgsIg4ERgDHRcRNFBuFnhwREyJiXYpfGRGHUvSgnJPSLgKeSGWeR9G4qDQTuD7lmQvMSOlXAFdExGHAi6X83wZOA5C0NfAB4LY6ru/EVJcNwC7AitJjK1LaFiJiVkQ0R0Tz+NHjqmUxMzMzM+sz0QO3/tAojZ7nI+LBdHwDcAQwWdKjkpYAHwYOqBH/o/T/Y8D4dHwEaUhZRNwNbJcaKmWTgBvT8ZwU057+w3Tc/jgRcR+wl6QdgJOAeRG1dzuUdADFPj7/qz2pSrb+ev3NzMzMzOrW1gO3/tAojZ7KL/0BfBOYkubE/BdQa9vv9u2lW3lrRbqcxkU9jY85wMkUPT7X1cooaVfgx8CnI+I3KXkFsGsp265s3ptkZmZmZtaQ2qRu3+oh6VhJz6SFv75Y5fHT09SWRZIekLR/rfIapdEzTtKkdHwS8EA6XilpNDCllHc1MKaOMu+naJwg6SiKIXCvV+R5CJiajk8unfcRiiFplB5vNxs4GyAilnV0cknbAD8FvlTqxSIi/gCslnR4WrXt08D/1HE9ZmZmZmb9qi+Gt0lqAq4CPgbsD5xUpVFzY0QcFBETgP8ELqtVZqM0ep4CTpG0GNiWYm7OfwFLgJuBBaW8s4FrKhYyqOZCoDmV+Q2KFdQqnQWclvL8PfC5lH428G+SfgHsBKxqD4iIl1J9a/byAGcCewFfSXVdlIbFAfwzxfygZ4HfALd3UpaZmZmZWb/ro+Ft7wOejYjnImIj8D3g+HKGis6MUXTSnmqUzUnbIuL0irQvp9tmImIeMK+UNL702ELgqHT8KhVPTkqfTdFwIiKWU8wXqvQCcHhEhKSpFIsnACBpJMUy09+tdUERcTFwcQePLQQOrBVvZmZmZtZoemLJaUnTKLZvaTcrImaV7u8CPF+6vwJ4f5VyPgv8GzCU6t/p39QojZ5GMxGYmYaf/Qn4DICkY4BrgcsiYlWN+B636I2uL1m9obUl61xrNq7PihvUjT1Wt4pJnWeqYmJLa1bcMOVNoxu322tZcdv+xbZZcV+fk/c2WzG81hS4jr34tbzr+5u7P5MVN/rqa7PiVr73jKy411rXZsWN0JCsuNcHj8qK269tdFbciiFNWXHDW/Knle7HG1lx+2zs/SVLf7lxZa+fo6wtc02alraa6+F06PVN6zrPVMXwyHs/P628rwyDB+W9L/96SN6qpbe3vpQVt2BI3vVdOTvv52fvOVtMUajLjIXfyIr70MF5n9ObIu/37Lq2jVlxazflfQc5om3PrLiX2/J+7wEMVd57ez/VM0tjS1c27ZMV19N6Ysnp1MCZVSNLXXPzI+Iq4CpJf0vRWVJtZBfQAI2e1NvSUL0eETEfOKRK+s+BzT6FJX2UYnW2st9GxAm9V0MzMzMzs77XR0sOrwB2K93vbOGv71FMj+lQvzd6BrqIuAO4o7/rYWZmZmbW23pieFsdFgB7S9qDYtrJVOBvyxkk7R0Rv053PwH8mhrc6DEzMzMzs7r0xT47EbFJ0pkUHQtNwLURsUzSdGBhRNwCnJmmnrQAr1FjaBu40WNmZmZmZnXqo+FtRMRtwG0VaReUjj+3RVANjbJkdd0knSpp59L95ZK272L8zN6p3WbnGS9pXWm56mtKj01Mmyk9K2lGWjDBzMzMzKyhtan7t/4wEHt6TgWWUnsyU6P4TdowqdLVFMv0PULRgj0W79VjZmZmZg2uL4a39YZ+7+lJPSJPS/qOpMWSbpI0UtIFkhZIWipplgpTgGZgbsXmpP8i6fHUe/KeVO62km5OZT4i6eAq595d0l0pz12SxqX0PVPMAknTJa1J6XMkHV+Knyvpk1283p2ArSLi4YgI4HrgrzrIO03SQkkL16x/tSunMTMzMzPrcX20OWmP6/dGT7IvxaZEBwOvA2cAMyPisIg4EBgBHBcRN1FsFHpyREyIiPZNClZGxKEUPSjnpLSLgCdSmedRNC4qzQSuT3nmAjNS+hXAFRFxGJv3KH0bOA1A0tbAB6gYa1hhD0lPSLpP0odS2i4Uy/C1W5HSthARsyKiOSKaRw/P2+fFzMzMzKynhLp/6w+N0uh5PiIeTMc3AEcAkyU9KmkJxQ6rB9SI/1H6/zFgfDo+ApgDEBF3A9ulhkrZJODGdDwnxbSn/zAdtz9ORNwH7CVpB+AkYF5EdLSr3B+AcRHxXoqdYm+UtBV1brZkZmZmZmY9o1Hm9FR+6Q/gm0BzRDwv6UKg1hbzG9L/rbx1TTmNi3oaH3OAkynWC+9we+OI2NBer4h4TNJvgH0oenZ2LWXtbLMlMzMzM7OG4Dk93TNO0qR0fBLwQDpeKWk0MKWUdzUwpo4y76donCDpKIohcK9X5HmIovFCytt+3keAE9Px1IqY2cDZABGxrKOTS3qXpKZ0/G5gb+C5iPgDsFrS4WnVtk8D/1PH9ZiZmZmZ9auBOqenUXp6ngJOkfQtit1UrwbGAkuA5RS7srabDVwjaR3FMLSOXAhcJ2kxsJbqGxadBVwr6QvAK6T5OhSNmhskfR74KbCqPSAiXpL0FHBzJ9f058B0SZsoeqBOj4j21Qj+OV3HCIpV27xym5mZmZk1vIE6J6NRGj1tEXF6RdqX020zETEPmFdKGl96bCFwVDp+FTieChExm6LBQUQsp5gvVOkF4PCICElTKRZPAEDSSIpem+/WuqAq9Sw/thA4sFa8mZmZmVmj6a99drqrURo9jWYiMDMNP/sTae6OpGOAa4HLImJVjfged9jo8V2OGZI5enFDZsfjcJqy4gCe4o2suMXD8uo6RkOy4oa/kreK3si5ec9N7mu4Olqy4h5oyvv7zX2/GJsVt/K9Z2TF/fSJb2bFbbr/e1lxL198d1bcshdGZsU9NSzvdX95UGtW3DOD83+DjWRE55mqeJ28uh7ehbwfGLpjl8vfuS3/1+LozD9/tmV+dK4dmhf3s/hjVtwQ5b0vhyrvAn9B5Yj0+hw0OO9zekTm5+2wzLi1mb9rP3Rwh9OJa5q/+NqsuE0/+05W3MrLHug8UxW//v3uWXFLIu8H4umm/J/5IVWnj3duJXm/o//PkLyvnh/PiurYQJ3T0++NntTb0lC9HhExHzikSvrPgXHlNEkfBS6pyPrbiDih92poZmZmZtb33Oh5h4qIO4A7+rseZmZmZma9zXN6zMzMzMzsbc1zeszMzMzM7G1toA5va5R9erJJOjutqNZT5Z3XU2XVOMfxkhZLWiRpoaQjevucZmZmZmbdFT1w6w8DvtFDsadO1UZP++agXdTlRo+krvaY3QUcEhETKFaG+3ZXz2lmZmZm1tfaiG7f+sOAavRIGiXpp5KelLRU0leBnYF7JN2T8qyRNF3So8AkScslbZ8ea5Z0bzoeLek6SUtSr8uJkr4BjEg9MHMljZe0tHT+cyRdmI7vlfQfku4DPifpXZLmSVqQbh/s6DoiYk1EtL/io+ig0StpWuoJWvjcmt9189kzMzMzM+ueth649YeBNqfnWODFiPgEgKStgdOAyRGxMuUZBSyNiAtSno7K+gqwKiIOSvnGRsQ8SWemHhgkje+kPttExJEp743A5RHxgKRxFCu67ddRoKQTgK8DOwCfqJYnImYBswCm7P7JgbpYhpmZmZm9TQzUL6QDrdGzBLhU0iXArRExv0qjphWYV0dZxwBT2+9ExGsZ9fl+RXn7l+qzlaQxEbG6WmBE/Bj4saQ/B/49xZuZmZmZNayBupDBgGr0RMSvJE2k2Fz265LurJJtfUSUt/rexFvD+IaX0kXnjdVybGU8wBul40HApIhY10mZm4mI+yXtKWn7Um+VmZmZmVnDGahLVg+0OT07A2sj4gbgUuBQYDUwpkbYcmBiOj6xlH4ncGap7LHpsEXSkHT8ErCDpO0kDQOOq3GeyvIm1LiOvZS6hCQdCgwF/lijbDMzMzOzfueFDPrGQcAvJC0Czgcuppjzcnv7QgZVXARcIWk+xdC3dhcDY9OCCE8Ck1P6LGCxpLkR0QJMBx4FbgWerlG3s4DmtCjCL4HTa+Q9EViaruMq4FOlhQ3MzMzMzBrSQF2yeqANb7uDYoGAsoXAlaU8oyti5gP7VClrDXBKlfRzgXNL92cAM6rkO6ri/krgU3VcBhFxCXBJPXnNzMzMzBpFX83pkXQscAXQBHw7Ir5R8fi/Af9IMR3lFeAzEdHhcscDqtHzTia6PoByRJe3DyqMyoqCUd14O/2Jlqy411rX550ws4+zLfMaW5T3d42hWVtNwdDMCxzU8WqHNa2LTVlxr7WuzYrbdP/3suIG//nUzjNVscNnX80737cfz4pb9budsuLWDsl73dco/1fY2LbM99qg3h8UPijjc3NI51k6NHZT3s/5yMh7/tcq77kfPiTzcyXz82g4eXGDMz+P/izyPqfHZk5UGJL5Z+uXm/Jev02bTVvuQtzPvpMVN/gjW/x9uC7bD8q7vtE3dTRwp7ZN9++YFffCiLz3J8DIyLvGpsz3dlPmz3xP64vhaWmvzauAjwArgAWSbomIX5ayPQE0R8RaSf8M/Cc1OiAa49l7m5J0Wtrzp3y7qr/rZWZmZmaWo4+Gt70PeDYinouIjcD3gOM3q0fEPRHR/tfTR4BdaxXonp5eFBHXAdf1dz3MzMzMzHpCTwxvkzQNmFZKmpX2p2y3C/B86f4K4P01ivwH4PZa53Sjx8zMzMzM6tITw9tSA2dWjSzVxgBWPbGkvwOagSNrndONHjMzMzMzq0sfrb62AtitdH9X4MXKTJKOoVjR+ciI2FCrwAE9p0fS2ZJG9mB55/VUWTXOcZSkVaU5Phf09jnNzMzMzHpCWw/c6rAA2FvSHpKGAlOBW8oZJL0X+BbwyYh4ubMCB3SjBzgbqNroSas+dFWXGz1S1hJp8yNiQrpNz4g3MzMzM+tz0QP/Oj1HxCbgTIqtap4CfhARyyRNl/TJlO3/AKOBH6aOhFs6KA4YQMPbJI0CfkDRvdUE/BDYGbhH0sqImCxpDXAZ8FHg85JuoFjKbqWkZuDSiDhK0miKvX2aKXrpLgIOA0akDUOXUXSV3RoRB6bznwOMjogLJd0LPAR8ELhF0vXANcC4VN2zI+LBHrjmNyd5Hbrtwbx79PjuFmlmZmZmlq2v9umJiNuA2yrSLigdH9OV8gZMowc4FngxIj4BIGlr4DRgctoYFIotZpa2PyHqeB30rwCrIuKglG9sRMyTdGZETEhp4zupzzYRcWTKeyNweUQ8IGkcRat0vxqxkyQ9STE28ZyIWFYtU3mS11/vfnx/bWBrZmZmZgb0zT49vWEgNXqWAJdKuoSiB2Z+lUZNKzCvjrKOoRgbCEBEvJZRn+9XlLd/qT5bSRoTEaurxD0O7B4RayR9HLgZ2Dvj/GZmZmZmfWpgNnkGUKMnIn4laSLwceDrku6skm19xGZbFW/irXlLw0vpovPXrBxbGQ/wRul4EDApItZ1UiYR8Xrp+DZJ35S0fam3yszMzMysIQ3Unp4Bs5CBpJ2BtRFxA3ApcCiwGhhTI2w5MDEdn1hKv5NiclR72WPTYYukIen4JWAHSdtJGgYcV+M8leVNqHEdOyp1CUl6H8Vr8McaZZuZmZmZNYQ+Wr2txw2YRg9wEPCLtNDA+cDFFPNdbpd0TwcxFwFXSJpPMfSt3cXAWElL09yaySl9FrBY0tyIaAGmA48CtwJP16jbWUCzpMWSfgmcXiPvFKD9vDOAqRExMJvMZmZmZvaO0hert/WGgTS87Q6KBQLKFlKswtaeZ3RFzHxgnyplrQFOqZJ+LnBu6f4MioZJZb6jKu6vBD5Vx2UQETOBmfXkNTMzMzNrJP3VU9NdA6bR806X0yrO7cYbTs4WRzC6Wx2HQzrPUsUryjvnqMy3/k4alhU3JvLq+azy/hoyMvM1HJ75GjZ1vFJiTSOU97q/fPHdWXE7fPbVrLjBx5+RFbfdPnkr108+/7/zzvfMjllx6zJ/jgDepU6nMlb1/BbTJHvexoxfzW2ZPzsAwzI77belJStuB+V99RiV+XM3LPN9sk3m53vuF6ut2/I+j3ZuyTvjNpH3+m3I/H2yrm1jVtzKyx7Iitt+UN7rPvjov8+KG3nIUVlxEz+ft9f7oqW7ZcUB7LgpL+6VprzvIE83yACt/uqp6S43enqJpNOAz1UkPxgRn+2P+pigh7NiAAAgAElEQVSZmZmZdZd7emwzEXEdcF1/18PMzMzMrKe0DdCp6G70mJmZmZlZXQZmk8eNHjMzMzMzq5P36elFks6WNLIHyzuvp8qqcY73SHpY0gZJ51Q8dqykZyQ9K+mLvV0XMzMzM7OeMFCXrB4QjR7gbKBqo0dSzlI7XW70SOpqr9irFPv3XFpRThNwFfAxYH/gJEn7d7U+ZmZmZmZ9zZuT9hBJoyT9VNKTafPQrwI7A/e0b0IqaY2k6ZIeBSZJWi5p+/RYs6R70/FoSddJWpI2Dj1R0jeAEZIWSZorabykpaXznyPpwnR8r6T/kHQf8DlJ75I0T9KCdPtgR9cRES9HxALYYi3S9wHPRsRzEbER+B5wfAfPxTRJCyUtfG7N73KeTjMzMzOzHtNGdPvWHxpxTs+xwIsR8QkASVsDpwGT0yagAKOApRFxQcrTUVlfAVZFxEEp39iImCfpzIiYkNLGd1KfbSLiyJT3RuDyiHhA0jiKzVL36+L17QI8X7q/Anh/tYwRMQuYBTBl908OzAGUZmZmZva24X16es4S4FJJlwC3RsT8Ko2aVmBeHWUdA0xtvxMRr2XU5/sV5e1fqs9WksZExOoulFethTYw3z1mZmZm9o7ifXp6SET8StJE4OPA1yXdWSXb+ohoLd3fxFtD9crbfIvOGxTl2Mp4gDdKx4OASRGRtwV5YQVQ3v53V+DFbpRnZmZmZtYnYoDu09OIc3p2BtZGxA0UiwAcCqwGxtQIWw5MTMcnltLvBM4slT02HbZIGpKOXwJ2kLSdpGHAcTXOU1nehE4vaEsLgL0l7SFpKEVP1C0Z5ZiZmZmZ9amBOqen4Ro9wEHALyQtAs4HLqaY13J7+0IGVVwEXCFpPsXQt3YXA2PTgghPApNT+ixgsaS5EdECTAceBW4Fnq5Rt7OA5rQowi+B0zvKKGlHSSuAfwO+LGmFpK0iYhNFw+kO4CngBxGxrMY5zczMzMwawkBdva0Rh7fdQdEgKFsIXFnKM7oiZj6wT5Wy1gCnVEk/Fzi3dH8GMKNKvqMq7q8EPlXHZRAR/5di6Fq1x24DbqunHDMzMzOzRuGFDKzhtGa+KVsy2+Brq67RUJ/tI2e7JXhFw7LidlXl1K367NKa1zm6VeafNZ4anBmYtX0VjCEvLvf1e33wqKy4ZS/k7VU8+NuPZ8Vtt8+DWXFN+3W4qn1NW5+/Kiuu+Zs/zIpr25gVBkDT6Lyf+22f7LH9pju0IeOzbLXyf5m/Mjjv82FDa97n2G6xPitu2zdHd3fNkMzP+LGZnw/rMl+LDZm/inJ/g20zfENW3F7r856XtZvyXvdf/373rLjRN3U0yKa2kYcclRU3aPvdOs9U7XxnnJAVt9s/LciKA9ipNe/Dc2Tb0Ky4jU2tnWfqA/01PK27GnF424Ai6bS050/5dlV/18vMzMzMrKdFRLdv9ZB0rKRnJD0r6YtVHv9zSY9L2iRpSmfluaenmyLiOuC6/q6HmZmZmVlv64s5OZKagKuAj1CsfLxA0i0R8ctStt8DpwLn1FOmGz1mZmZmZlaXPprT8z7g2Yh4DkDS94DjgTcbPRGxPD1WVzvMw9vMzMzMzKwuPbFktaRpkhaWbtMqTrML8Hzp/oqUlm1ANHoknS2px2a9Sjqvp8qqcY6T09LWiyU9JOmQ0mM1xyiamZmZmTWinpjTExGzIqK5dJtVcZpqa4t0q4tpQDR6gLOBqo2eNOavq7rc6JHU1aGAvwWOjIiDgX+n2BuoPEbxY8D+wEmS9u9qfczMzMzM+lofbU66Aigv5bcr8GJ36t1wjR5JoyT9VNKTaVPRrwI7A/e0b04qaY2k6ZIeBSZJWi5p+/RYs6R70/FoSddJWpJ6XE6U9A1gRFplba6k8ZKWls5/jqQL0/G9kv5D0n3A5yS9S9I8SQvSrcP1aCPioYh4Ld19hLf27HlzjGJEbATaxyhWey7e7Pp7bs3vMp9RMzMzM7OeET3wrw4LgL0l7SFpKDAVuKU79W7EhQyOBV6MiE8ASNoaOA2YnDYHBRgFLI2IC1Kejsr6CrAqIg5K+cZGxDxJZ0bEhJQ2vpP6bBMRR6a8NwKXR8QDksZRbKK6Xx3X9A/A7em42hjF91cLSl19swCm7P7JgbkoupmZmZm9bbTVueR0d0TEJklnUnzXbgKujYhlkqYDCyPiFkmHAT8GxgJ/KemiiDigozIbsdGzBLhU0iXArRExv0qjphWYV0dZx1C0DAEo9bx0xfcrytu/VJ+tJI2JiNUdBUuaTNHoOaI9qUo2N2jMzMzMrOH11ZfWiLgNuK0i7YLS8QLeGknVqYZr9ETEryRNBD4OfF3SnVWyrY+I8ra0m3hrqN7wUrro/LUpx1bGA7xROh4ETIqIdZ2UWZxcOhj4NvCxiPhjSu7xMYpmZmZmZn2hzjk5DacR5/TsDKyNiBuAS4FDgdXAmBphy4GJ6fjEUvqdwJmlssemwxZJQ9LxS8AOkraTNAw4rsZ5KsubUOM6xgE/Av4+In5VeqjHxyiamZmZmfWFPlrIoMc1XKMHOAj4haRFwPnAxRTzWm5vX8igiouAKyTNpxj61u5iYGxaEOFJYHJKnwUsljQ3IlqA6cCjwK3A0zXqdhbQnBZF+CVweo28FwDbAd9MiyYshGKMIkXD6Q7gKeAHEbGsRjlmZmZmZg2hJ5as7g+NOLztDooGQdlC4MpSntEVMfOBfaqUtQY4pUr6ucC5pfszgBlV8h1VcX8l8Kk6LoOI+EfgHzt4bIsximZmZmZmjW6gDm9ruEaPVfda6/oux6wdtCnrXE3d6AAcprzYrWuOXuzYrqqcglWfAzbm1fOAwR2uWVHTrvv/KSvuB8+M7jxTFXUuB7mFbbq8HVVhn5a853O/trzre2pY3vlW/W6nrLjJ5/93VtzW56/Kihs88eNZccMmPpwVN+jADhe76Tx2n8Oy4nZ/5PbOM3XTG5tN/azPy8r73ARYNzhn2zhoHZz38/pU5H3+DaHrzwvA9pF3fbts6nCF1Zq2as17Xn4+fGNW3BvDhnSeqYqWjXm/v/Yd+XpW3BFte2bFLYmhWXGb7t8xK27i5y/oPFMVI884IStu8Ps/mRW3desjWXEAu26X9xrWPfO+wj5rt8mM7Fm53zH6mxs93STpNOBzFckPRsRn+6M+/Sm3wWNmZmZmA0N/DU/rLjd6uikirgOu6+96mJmZmZn1Ng9vMzMzMzOztzX39JiZmZmZ2dvaQO3pGRCTMCSdLWlkD5Z3Xk+VVeMcR0lalZarXiTpgtJjx0p6RtKzkr7Y23UxMzMzM+sJ0QP/+sOAaPQAZwNVGz2ScpaT6XKjR8pa1mp+RExIt+mpnCbgKuBjwP7ASZL2zyjbzMzMzKxPtUV0+9YfGq7RI2mUpJ9KejJtKvpVYGfgnvbNSSWtkTRd0qPAJEnLJW2fHmuWdG86Hi3pOklL0oaiJ0r6BjAi9b7MlTRe0tLS+c+RdGE6vlfSf0i6D/icpHdJmidpQbp9MOMS3wc8GxHPRcRG4HvA8dlPmJmZmZlZHxmoPT2NOKfnWODFiPgEgKStgdOAyWlzUIBRwNKIuCDl6aisrwCrIuKglG9sRMyTdGZETEhp4zupzzYRcWTKeyNweUQ8IGkcxSaq+9WInSTpSeBF4JyIWAbsAjxfyrMCeH+1YEnTgGkA+26zH7uMyl3Z3czMzMys+/qrp6a7GrHRswS4VNIlwK0RMb9Ko6YVmFdHWccAU9vvRMRrGfX5fkV5+5fqs5WkMRFRbcfKx4HdI2KNpI8DNwN7A9VaaFXfPRExC5gFcPSufzEw32FmZmZm9rbhzUl7SET8StJE4OPA1yXdWSXb+ojNttrexFtD9cpbVIsOGhQdxFbGA7xROh4ETIqIdZ2USUS8Xjq+TdI30xC8FcBupay7UvQEmZmZmZk1tIHa09OIc3p2BtZGxA3ApcChwGpgTI2w5cDEdHxiKf1O4MxS2WPTYYukIen4JWAHSdtJGgYcV+M8leVNqHEdOyp1CUl6H8Vz/UdgAbC3pD0kDaXoibqlxjnNzMzMzBrCQJ3T03CNHuAg4BeSFgHnAxdTDPG6vX0hgyouAq6QNJ9i6Fu7i4GxaUGEJ4HJKX0WsFjS3IhoAaYDjwK3Ak/XqNtZQHNaFOGXwOk18k4B2s87A5gahU0UDac7gKeAH6S5PmZmZmZmDW2grt7WiMPb7qBoEJQtBK4s5RldETMf2KdKWWuAU6qknwucW7o/g6JhUpnvqIr7K4FP1XEZRMRMYGYHj90G3FZPOWZmZmZmjcJzeqzhRGZLeuNmnWVdiIvW7K7DTU15dV2dWddXBuds7wQvbsjbI3fd0rwftTVNq7LimgZ1uKJhTW3Kex3Gtua9DiuG5L0OLw/KO9/aIXnv0O2e2TErrvmbP8yKGzbx4ay4oWf8e1Zcd7R899KsuD9e/0xW3G7/WH/e9WzqcvkbyHtPAgzP/ATM3d38VXX9+gAe3viHrLihWdvVwbZNeZ+bYwYP6TxTFStbO512W9XLg4Zmxb0wbFhW3KKoNWq/Yy+35azJBE835b1+L4zI+5lYtHS3zjNVsds/LciK27r1kay4jyz7j6w4gE0P/SgrbtkZD2TFbRjclhXX0yIaox5d5UZPN0k6DfhcRfKDEfHZ/qhPf2rEsZJmZmZm1nNy/1DT39zo6aaIuA64rr/rYWZmZmbW23JHEvU3/3HezMzMzMzq0kZ0+1YPScdKekbSs5K+WOXxYZK+nx5/VNL4WuW50WNmZmZmZnWJiG7fOiOpCbgK+BiwP3CSpP0rsv0D8FpE7AVcDlxSq8x+b/RIWtNB+umSPp2OT0379/Rlvc6WNLJ0/7weLPu/JT2Zlr6+SdLozqPMzMzMzPpXHy1Z/T7g2Yh4LiI2At8Djq/IczzwnXR8E3B0+x6Z1fR7o6cjEXFNRFyf7p4K9GmjBzgbKC850+VGT2qlVvOvEXFIRBwM/J7ShqdmZmZmZu9wuwDPl+6vSGlV86R9MFcB23VUYK82eiT9b0lnpePLJd2djo+WdEMp39dSz8cjkv4spV0o6RxJU4BmYK6kRZJGSJoo6T5Jj0m6Q9JOVc49W9LVku6R9JykIyVdK+kpSbNL+a6WtFDSMkkXpbSzKBpZ96T4bwAj0vnnpjx/J+kXKe1b7Q0cSWskTZf0KDCp2vMSEa+nvAJGwABdBsPMzMzM3lGiB/5Jmpa+f7ffplWcplqPTeX35XryvKm3e3ruBz6UjpuB0ZKGAEcA81P6KOCRiDgk5f+ncgERcRPF5qQnR8QEYBPFRqVTImIicC3wtQ7OPxb4MPCvwE8oxvsdABwkaULKc35ENAMHA0dKOjhtVvoiMDkiJkfEF4F1ETEhIk6WtB/FJqUfTHVqBU4uXc/SiHh/RHS4ELuk64D/C7yH0sarFXnefEO88MaKjooyMzMzM+sTPTGnJyJmRURz6Tar4jQrgPJmT7tSfDevmkfSYGBr4NWO6t3bjZ7HgImSxgAbgIcpGj8f4q1Gz0bg1lL+8Z2UuS9wIPAzSYuAL1M8EdX8JIrZUkuAlyJiSRQ7Ki0rnedvJD0OPEHRIKqcJFXN0cBEYEGqw9HAu9NjrcC8zgqIiNMoepOeomhAVcvz5htil1EdXaKZmZmZWd/oo9XbFgB7S9pD0lBgKnBLRZ5bgFPS8RTg7qixSkKv7tMTES2SlgOnAQ8Bi4HJwJ4UX/YBWkoVbK2jTgKWRUTVoWMVNqT/20rH7fcHS9oDOAc4LCJeS8PehtdRroDvRMSXqjy2PiLq2i4+IlolfR/4At7rx8zMzMwaXF/s0xMRmySdCdwBNAHXRsQySdOBhRFxC/DfwBxJz1L08EytVWZfbE56P0XD4jMUPS6XAY/VaolVsRoYk46fAd4laVJEPJyGy+0TEcsy6rYV8AawKs0l+hhwb8U5V6b7LZKGREQLcBfwP5Iuj4iXJW0LjImI33V2wjSPZ8+IeDYd/yXwdEbdzczMzMz6VJ2rr3VbRNwG3FaRdkHpeD3w1/WW1xeNnvnA+cDDEfGGpPW8NbStXrOBaySto1gcYAowQ9LWFNfw/1IMWeuSiHhS0hMp9jngwdLDs4DbJf0hIian+4slPZ7m9XwZuFPSIKAF+CzQaaOH1Eskaat0/CTwz12tu5mZmZlZX+uLnp7e0OuNnoi4CxhSur9PxeOjS8c3UayzTURcWEqfx+bzZBYBf97JeU8tHS+nmAdU7bFTqSIirqS0wEBEnAucW7r/feD7VeJq7rmT5hR9sFYeMzMzM7NGVOecnIbTFz091gNq7LXUoSblrVOhfngzr8885xg62gqptu3qmnW1pV2Gv5EVt9O7V2XFDX12RFbckMzXfnDV1R87t402ZsUNb2nLintmcF491yjvfOsyn8+2vKeFQQcekBfYD5o++rdZcdu+PKOHa7KlIRlr9QzJ/BkAGJ4ZOyzy3l+57+dRg4ZmxQ3ucOu52kYq76vG9sqr5zptyoobpSGdZ6piWOaaUEMj7/0yNPN1yH1vj8x8f+6Y9zKwU2veB+eu272eFbfpoR9lxQEM/sD/kxW375T7suL2/1Fj7GXvnh7bgqQfA3tUJJ8bEXf0R33MzMzMzLqjr+b09DQ3enpRRJzQ33UwMzMzM+sp4eFtZmZmZmb2duaeHjMzMzMze1vznB4zMzMzM3tbG6jD2/KW5OhBktZ0kH66pE+n41Ml7dzH9Tpb0sjS/fN6sOzZkn4raVG6Teipss3MzMzMektEdPvWH/q90dORiLgmIq5Pd08F+rTRA5wNjCzd73KjR6q5ruQXImJCui3qcu3MzMzMzPrYQG309OrwNkn/G1gfETMkXQ4cEhEflnQ0cFpE/F3K9zXgOGAdcHxEvCTpQmANsBxoBuZKWgdMAvYHLgNGAyuBUyPiDxXnnp3Kew+wO3AacEqKf7R9U1JJVwOHASOAmyLiq5LOomhk3SNpJfAoMELSImBZRJws6e+As4Ch6fEzIqI19VxdBnwU+DzwQDeev2nANID3bLM/u4zeNbcoMzMzM7Nua9n4Qv6GZv2ot3t67gc+lI6bgdGShgBHAPNT+ijgkYg4JOX/p3IBEXETsBA4OSImAJuAK4EpETERuBb4WgfnHwt8GPhX4CfA5cABwEGlIWXnR0QzcDBwpKSDI2IG8CIwOSImR8QXgXWpV+ZkSfsBnwI+mOrUCpxcup6lEfH+iKjV4PmapMWSLpc0rFqGiJgVEc0R0ewGj5mZmZlZnt5u9DwGTJQ0BtgAPEzR+PkQbzV6NgK3lvKP76TMfYEDgZ+lnpcvAx21CH4SRR/aEuCliFgSEW3AstJ5/kbS48ATFA2i/eu4rqOBicCCVIejgXenx1qBeZ3Ef4miB+owYFvg3DrOaWZmZmZmGXp1eFtEtEhaTjG07CFgMTAZ2BN4KmVribcG97XWUSdRDDGbVEcVNqT/20rH7fcHS9oDOAc4LCJeS0PihtdRroDvRMSXqjy2PiJaawWXhuJtkHRdqoOZmZmZmfWCvljI4H6KL/X3U/TunA4sKjV06rEaGJOOnwHeJWkSgKQhkg7IrNtWwBvAKkl/Bnysg3MCtKSheQB3AVMk7ZDqsK2k3es9qaSd0v8C/gpYmll/MzMzMzPrRF80euYDOwEPR8RLwHreGtpWr9nANWkoWRMwBbhE0pPAIuADORWLiCcphrUto5gb9GDp4VnA7ZLuKd1fLGluRPySYljdnZIWAz+juMZ6zZW0hGLY3fbAxTn1NzMzMzOzzmmg7qr6TnP4zkd1+YVqUl6btqX26LxeccDQ7bPitmNoVtzem2qtJt6xiVTdVqpT7574WlbcXz9WdY2LTo0elPe8jB80OituYkveSNn9eCMr7n+GjMiKG9uW9zMxqWVdVtx+R/wxK27kV8/Pimu958dZcU0f/dusOIBB2+btJhDrVmfFDd3tkLpXDTph3F92+XNz1Jsd+l03Rnk/B22ZG/29kflZ/YfWvM+x3N8p2w2qZ9T4liZG3ufRXZH3czdqUN5rPzxzpsBWme+X0eT9/lpJS1bc1pnXt2tbXtzuLXk/DxPGrsyK+9Preb9PAPadkvczOPzLV2TFrf3CtKy4ra/7+YBcba2nNew+PWZmZmZmZj2hVxcyeKeT9GNgj4rkcyPijv6oj5mZmZnZO5EbPb0oIk7o7zqYmZmZmb3TeXibmZmZmZm9rbnRY2ZmZmZmb2t91uiRVHW5GEmnS/p0Oj5VUt5SQPn1OlvSyNL983qw7DMlPSspJG1fSpekGemxxZIO7alzmpmZmZnZ5vq9pyciromI69PdU4E+bfQAZwMjS/e73OiR1NH6kQ8CxwC/q0j/GLB3uk0Dru7qOc3MzMzMrD490uiR9L8lnZWOL5d0dzo+WtINpXxfk/SkpEck/VlKu1DSOZKmAM0UG3cukjRC0kRJ90l6TNIdkrbYAFTSbElXS7pH0nOSjpR0raSnJM0u5bta0kJJyyRdlNLOomhk3ZPivwGMSOefm/L8naRfpLRvtTdwJK2RNF3So8Ckas9LRDwREcurPHQ8cH0UHgG26eDapqU6L3x57Yudvg5mZmZmZralnurpuR/4UDpuBkZLGgIcAcxP6aOARyLikJT/n8oFRMRNwELg5IiYAGwCrgSmRMRE4Frgax2cfyzwYeBfgZ8AlwMHAAdJmpDynB8RzcDBwJGSDo6IGcCLwOSImBwRXwTWRcSEiDhZ0n7Ap4APpjq1AieXrmdpRLw/Ih7o4vO1C/B86f6KlLaZiJgVEc0R0bzDyL7uADMzMzMze3voqSWrHwMmShoDbAAep2j8fAg4K+XZCNxayv+RTsrcFzgQ+JkkgCbgDx3k/UlEhKQlwEsRsQRA0jJgPLAI+BtJ0yiueSdgf2BxJ3U4GpgILEh1GAG8nB5rBeZ1Et+Rajvj5m1BbGZmZmZmNfVIoyciWiQtB04DHqJoTEwG9gSeStlaIqL9i31rHecWsCwiqg4dq7Ah/d9WOm6/P1jSHsA5wGER8Voa9ja8jnIFfCcivlTlsfUR0VpHGdWsAHYr3d+VosfJzMzMzMx6WE8uZHA/RcPifoohbacDi0oNnXqsBsak42eAd0maBCBpiKQDMuu2FfAGsCrNJfpYB+cEaElD8wDuAqZI2iHVYVtJu2fWoewW4NNpFbfDgVUR0VEvlpmZmZmZdUNPNnrmUwwbezgiXgLW89Z8nnrNBq6RtIhiONsU4BJJT/7/7d1raB3VGsbx/2MaNbUtteop3q2Xqs1Rq414Oyq1iPpJhKBIVSpoFQ8UBbHHC+o5ICh+ECzYWg9SxQhCRbBSrUWL9dJaqybRKEIpgsEbindskiavH2bFTuNO997LbaPx+UHIrDXrnbVmJtntm1kzQzFF7cycgUVEF/Au0ENxb9DrpdXLgeclrSuVuyV1RMQHwB3Ai5K6gbUU+1gTSYsk9VJcyemW9P+0ajWwFdgCPALckLNfZmZmZmZWneq7EGNjZd9JR9d9ovqHtmf11bd9ICsOoGmPvDx61tTDsuJO3rvmHHQnB7JnVtzsvkq3Y1V3+iGfZ8Vd3NtXvVEFTco7D1P2qGXW528dNmFy9UYVXNef9/nz5J7N1RtVMDVzRm9r3mngpMnfZMUdfstxWXFfPdyVFTftwv2y4gCaF96eFaeWvJ+Z5v2PrPmXsHX6aXX/gA3GUL0hv8r9zP2+/6esuG+35cW1TsubsJB7bHI/j9r3mpEVt2qgNysuMm+t/Xmwf7fGLWmamRV3f/PXWXG556858+/q/Zl3DsycMDUrro/83/lZQ3n/Zl47L+//BBPvX54VV8/n5ng25u/psfEjN+ExMzMzM/sjNerpbX9rkp4BRv5JanFErBmL8ZiZmZmZ2Q5OehogIi4Z6zGYmZmZmVllno9kZmZmZmbjmpMeMzMzMzMb13Zb0iPpx1Hqr5d0VVpeIOmg3TWm1OeNkiaWyrc1cNsdkj6S9L6kR4ff/5Pez/OgpC2SuiWd0qg+zczMzMxsZ2N+pScilkXE46m4ANitSQ9wIzCxVK476ZHUNMqqDuA44ASgBbgm1V8EHJO+FgJL6+3TzMzMzMxq05CkR9Itkhal5QckvZyW50l6otTuHkldkjZKmp7q7pZ0s6R2oA3okNQpqUXSHEmvSHpb0hpJv3kpi6QVkpZKWidpq6Rz01WVDyWtKLVbKmmzpB5J/011iyiSrHUp/l6gJfXfkdpcIWlTqnt4OMGR9KOk/0l6Ezij0nGJiNWRAJsoXlIKcDHweFq1EZg6yr4tTGPe3DfwfT2nxMzMzMzMkkZd6VkPnJ2W24BJaSrXv4BXU/0+wMaIOCm1v7a8gYhYCWwG5kfEbGA7sARoj4g5wKPAPaP0vy9wHnATsAp4AGgFTpA0O7W5PSLagBOBcyWdGBEPAp8CcyNibkT8B/g5ImZHxHxJxwOXAWelMQ0C80v7835EnBYRr+3q4KRjcSXwQqo6GPik1KQ31e0kIpZHRFtEtO3VPGVXXZiZmZmZ2Sga9cjqt4E5kiYDfcA7FMnP2cCi1KYfeK7U/vwq2zwW+CewVhJAE/DZKG1XRURIeg/4IiLeA5DUAxwBdAKXSlpIsc8HArOA7ipjmAfMAd5KY2gBvkzrBoGnq8QPewhYHxHDCWClN+PmvQrazMzMzMx2qSFJT0QMSPoYuBp4gyKZmAscBXyYmg2kaV5QJAzV+hbQExEVp46N0Je+D5WWh8sTJM0AbgZOjYhv0rS3vWvYroDHIuLWCuu2RcRg1Q1IdwEHANeVqnuBQ0vlQyiuOJmZmZmZWYM18kEG6ykSi/UUU9quBzpLiU4tfgAmp+WPgAMknQHFFDFJrZljmwL8BHyX7iW6aJQ+AQaGn7IGvAS0S/pHGsM0SYfX2qmka4ALgMsjYqi06lngqvQUt9OB7yJitKtYZmZmZmb2OzQy6XmVYtrYhoj4AtjGjvt5arUCWCapk+7neC8AAAEESURBVGI6Wztwn6QuiilqZ+YMLCK6gHeBHop7g14vrV4OPC9pXancLakjIj4A7gBelNQNrKXYx1otA6YDG9KDEO5M9auBrcAW4BHghpz9MjMzMzOz6hp1Tw8R8RLQXCrPHLF+Uml5JbAyLd9dqn+ane+T6QTOqdLvgtLyxxT3AVVat4AKImIJxQMThsuLgcWl8lPAUxXiJo2sq9Cm4vFNV7/+XS3ezMzMzMx+P9U3+8zMzMzMzOyvpWFXev7OJD0DzBhRvTgi1ozFeMzMzMzMbAdf6TEzMzMzs3GtkQ8yMDMzMzMz+9Nx0mNmZmZmZuOakx4zMzMzMxvXnPSYmZmZmdm49gs8kyyF+4GPLwAAAABJRU5ErkJggg==\n",
      "text/plain": [
       "<Figure size 864x432 with 3 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "na.generate_heat_maps()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "##### Correlation of neighbors-of-neighbors dataframes (hyperparameter search). <br>\n",
    "We see that datasets within the same term category are most closely correlated with one another, where (within-term category) the correlations highest for the closest number of neighbors analyzed. <br> Suprisingly, the correlations between dataframes are relatively low."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "metadata": {},
   "outputs": [],
   "source": [
    "# get all neighbors-of-neighbors dataframes into list\n",
    "term_nvals_before, term_nvals_after = [], []\n",
    "names_before, names_after = [], []\n",
    "\n",
    "for term in term_types:\n",
    "    for n in [3, 5, 10, 20, 50]:\n",
    "        try:\n",
    "            assc_before = pd.read_csv(os.path.join(neighbor_data_dir, \\\n",
    "                          f'pairwise_logtransform_{n}nn_{term}_pre.csv'), index_col = 0).values.flatten()\n",
    "            term_nvals_before.append(assc_before)\n",
    "            names_before.append(f'{term}_{n}')            \n",
    "            assc_after = pd.read_csv(os.path.join(neighbor_data_dir, \\\n",
    "                          f'pairwise_logtransform_{n}nn_{term}_post.csv'), index_col = 0).values.flatten()\n",
    "            term_nvals_after.append(assc_after)\n",
    "            names_after.append(f'{term}_{n}')\n",
    "        except: \n",
    "            pass"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAq4AAAIqCAYAAADl3sjIAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjMsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAAgAElEQVR4nOzdd5xkVZ3//9d7uicnYMgIjBIFFgOICRUE065r+IkBA6KuOfFddVXWgHHVNa+oYAIRERVRVBQUBRQk5yBIGB2C5GESE7r78/vjnmZqaip8eqanu6r6/Xw8+tFVt07dVLeqTp177nkrIjAzMzMz63STxnsFzMzMzMwyXHE1MzMzs67giquZmZmZdQVXXM3MzMysK7jiamZmZmZdwRVXMzMzM+sKrriamZmZ2aiT9FxJN0i6SdIHGjy+g6Q/Srpc0lWS/rXtPD2Oq5mZmZmNJkl9wI3As4DbgIuBQyPiupoyxwKXR8Q3JO0BnB4R81vN1y2uZmZmZjba9gNuiohbImIV8CPghXVlAphTbs8F7mg30/5RXUUzMzMzM9gOWFhz/zbgiXVljgLOlPROYCZwcLuZuuJqZmZm1gNW33vLmPX/nLLFTm8G3lQz6diIOLbmvho8rX79DgWOi4gvSHoycIKkvSJiqNlyXXE1MzMzsxEpldRjWxS5Ddi+5v4jWLcrwBuA55b5/UXSNGBz4O5mM3XF1czMzKwXDA2O9xrUuhjYRdIjgduBVwCvrCvzD+Ag4DhJjwamAfe0mqkvzjIzMzOzURURA8A7gDOA64EfR8S1kj4u6QWl2HuAN0q6EjgJODzaDHfl4bDMzMzMesDqu24Ys0rd5K12a9SHdaNzi6uZmZmZdQX3cTUzMzPrBUNNL8bvGW5xNTMzM7Ou4BZXMzMzsx7QYvjTnuEWVzMzMzPrCq64mpmZmVlXcFcBMzMzs17gi7PMzMzMzDqDW1zNzMzMeoEvzjIzMzMz6wxucTUzMzPrBUOD470GG51bXM3MzMysK7jF1czMzKwXuI+rWXeRtEDSwev53KdJumG016nNMs+W9B9jucxOIelwSX+uuR+Sdt4Iy/mNpNcmyzZ9PSTNL+s4Lj/4JU2X9EtJD0r6yUaY/1JJj0qWbfpa1b+u3UjSVpLOlbRE0hfGe33qjeVn1YZ8pibm3dH72TqTW1xtVEl6JfCfwO7AEuAK4FMR0XFfZJIC2CUibgKIiD8Bu43vWuVJOhv4QUR8e7zXpZNFxPPGex1GySHAVsC8iBgY7ZlHxKzRnufGIOk44LaI+NBGXMybgHuBORERG3E5Kd3yWVW/ngkdtZ97gsdxNcuT9J/Al4FPU33B7gB8HXjhesxrnR9V49XSZTba1vNY3hG4cWNUWjvV+uynUfqc2BG4bn0qU/6cGpGW+9n70hpxxdVGhaS5wMeBt0fEzyJiWUSsjohfRsT7Spmpkr4s6Y7y92VJU8tjB0i6TdL7Jf0T+F6jaaXs8yVdIWmRpPMl7d1knfaT9JdS7k5JX5M0pTx2bil2ZTlF+vLh5dU8/9Hl1PEiSddKekHNY8dJOlrSr8tprgsl7VQek6QvSbq7nNa9StJeLXbfTpIuKmV/IWmzmuU8qWzjIklXSjqgTP8U8DTga2X9vybpY5L+rzw+WdIySZ8r96dLWiFp01bzHX4tJX2n7LPbJX1SUl957HBJf5b0eUkPSLpVUtMWTUkfkHRz2UfXSXpxi/3QVHkdPiHpvDKvMyVt3m4/1Tz3P8rtPklfkHRvWfd3aN3T/zs2W07x+nL83inpPTXLGdHx3WQ7Gx5zkj4GfAR4eXm939Dk+SHpLZL+Vl6foyWp5vHXS7q+PHaGpB3rnrtzuT1PVbeExZIuLsdA/VmTg5stp5qF/q8c03+VdFDNA9tKOk3S/ZJukvTGmseOkvRTST+QtBg4vG773gS8Cvivsh9+WaYvKPv2KmCZpP5Wx16r41hVi+5ra5Zx8Ehf25pp/6Xqc+BOSS+S9K+SbizbfmTN+ozLZ1WTY+g1kv4u6T5J/1332EjXc1NJv5J0T9nPv5L0iBb7eZ3Xv9Uyy3xC0tvKsbhE1efETuU5iyX9uK580++P8hreXuZzQ+1x2y0ihsbsbxw3Mvznvw3+A54LDAD9Lcp8HLgA2BLYAjgf+ER57IDy/M8CU4HpTaY9HrgbeCLQR/XBtwCYWuazADi43N4HeBJVl5j5wPXAETXrE8DONfcPoDoFCTAZuAk4EpgCPJOq68Nu5fHjgPuB/cr8TwR+VB57DnApsAkg4NHANk32ydnA7cBewEzgFKrT/wDbAfcB/0r1I/NZ5f4WNc/9j5p5PRO4utx+CnAzcGHNY1cm5/tz4JiyPlsCFwFvLo8dDqwG3lj2/1uBOwA12b6XAtuW5bwcWDa8L8q8/tzs9Wiwn24Gdi3HwdnAZ0a6n4C3ANcBjwA2BX5fltufWM78Uvaksm/+BbiHNcfbiI7vBtvY7pg7inJstHiPBfArqmNvh7J+zy2PvajM/9FUx+yHgPMb7X/gR+VvBrAHsLDBa9VsOYeXbf1/ZZteDjwIbFYeP4fqTMw04LHluQfVbOPqsq6Tmuyn44BP1k1bQNUtafvh59D+2Gt6HNcvY6Svbc20j5R98MaynT8EZgN7AiuAR43nZ1WDfbsHsBR4etmWL5btWN/P1HnAS6iOo9nAT4CfN3stG73+yWWeBswp+3UlcBbwKGAu1fv9taVs0+8Pqq4XC4Fta97vO43Wd+RY/a246S8xVn/jtY1ucbXRMg+4N1qfxnwV8PGIuDsi7gE+Brym5vEh4KMRsTIiHmoy7Y3AMRFxYUQMRsTxVB9UT6pfWERcGhEXRMRARCygqow9I7k9TwJmUVVaVkXEH6i+qA+tKfOziLiobPOJVF/CUH3wzqbq56uIuD4i7myxrBMi4pqIWAZ8GHiZqhbOVwOnR8TpETEUEb8DLqGqoDXyF2AXSfOovni+A2wnaVbZ7nNKuabzlbQV8DyqL4ZlEXE38CXgFTXL+XtEfCsiBoHjgW2ouoasIyJ+EhF3lOWcDPyN6gt0fXwvIm4sx8GPWbO/R7KfXgZ8JSJui4gHgM+MYDnDPlb2zdVULafDx8T6HN+1MsdcxmciYlFE/AP4Y836vxn4n3I8DlB16XmsalpdoWqVpqpsfDQilkfEdVSvc3Y5UFUOvhzVWZeTgRuAf5O0PbA/8P6IWBERVwDfZu399JeI+Hl5LRvtp2a+GhELh5+TOPbSxzHr99qupurfv5rqR8DmVMfekoi4FrgW2Lus63h9VtU7BPhVRJwbESupPo8eblob6XpGxH0RcUo5jpYAn0ps11qvf3KZn42IxWW/XgOcGRG3RMSDwG+Ax5Vyrb4/BqkqsHtImhwRCyLi5jbr2nmGhsbub5y44mqj5T5gc7Xuk7Qt8Pea+38v04bdExEr6p5TP21H4D3lNM8iSYuoWlm2rXseknYtp6b+WU47fZrqyyNjW2BhrH0+5O9UrXvD/llzeznVlwfli+NrwNHAXZKOlTSnxbIW1i1jclnPHYGX1m3r/lRfsOsoX5iXUH2oP52qono+8FTWrri2mu+OZfl31jx2DFVL0zrbHRHLy82GF/ZIOqzmtNwiqpbl7GtQr+H+brM99bZl7f29sEGZZstp9JzaY3hEx7eq0Q6Wlr9XkTvmqHn+tTXPf1pi/XcEvlKzj+6nOiNQP/8tqFq3NmQ/3R4Rtf0Wh/fFtsD9pRLTbBsbLStjrecljr30ccz6fXbdVyrFAMOV2btqHn9oeHnj9VnVbF7Dd8qP6fuG7490PSXNkHRM6XqwGDgX2KT8OGqm/nXMLLN+vzbcz7T4/ojqgrIjqFp975b0I0nrfK/Y+HPF1UbLX6hOfb2oRZk7qD44hu1Qpg1r1EG/ftpCqlaMTWr+ZkTESQ2e+w3gr1RXuc6hOpWmBuWarev2kmrfIztQndZvKyK+GhH7UJ262hV4X4vi29ctYzXVlbYLqVpja7d1ZkQMtxI22l/nUJ0qfBxwcbn/HKqWpuE+aK3mu5CqBWLzmsfmRMSeme2uVVryvgW8g+pK+E2oWkOyr0FWu/1U606qbgLDtm9Qpp3612v4GB7R8R0Rz4uIWeXvREZ4zEXEnjXP/1NivRdSdfmo3U/TI+L8unL3UJ0e3pD9tJ20Vp/X4X1xB7CZpNl1j9VuY7sLopo9/vD0jXDsrc9n10iM22dVnTupea0lzaA6m7a+6/keqlPwTyzlnz486xbPqd+XG7Jv6rX8/oiIH0bE/lSvdVB1/+guMTR2f+PEFVcbFeWUzEeAo1VdhDBD1QVCz1O5QIiqb+CHJG2h6oKXjwA/GOGivgW8RdITVZkp6d/qvgiHzQYWA0sl7U7Vj63WXVT9oBq5kKpP3H+V7TgA+HeqU34tSXpCWb/JZR4rqE5DNfNqSXuUL4mPAz8tLTU/AP5d0nNUXVQ0TdVFGcMVikbrfw5wGNWVuqso/TuBW8spTlrNN6ouDWcCX5A0R9IkVRc6ZE9b1ppJ9eF/T9kvr6Nq9Rpt7fZTrR8D75a0naRNgPevx/I+XI7vPYHXASeX6Rt6fK/3MZf0TeCDZb2HL8J7aX2hcuz9DDiqbOfuVMfUSGwJvKtsx0up+tWeHhELqc4C/E95nfYG3kB1+jqr1ft22Ggfe6Px2dXKuHxWNfBT4PmS9ld1QdPHWbueMNL1nE3V4rlI1UWnH12PdWq3zJFo+v0haTdJz1R10d2Kst69n5/ahVxxtVETEV+kGsP1Q1RfGAupWjx+Xop8kupU9lXA1cBlZdpIlnEJVT+lrwEPUF2UcHiT4u8FXkl1ocK3WFPBGHYUcHw5ZfSyuuWsAl5A1d/zXqqLSQ6LiL8mVnNOWd4DVKfs7gM+36L8CVQXKfyT6oKVd5V1WEg1lNiRrNmf72PN+/YrwCGqrtb9apl2PtUFDcOtq9dRfQgP38/M9zCqizyuK9vwU5p0T2glqr6RX6Bqjb+L6mKm80Y6n8Ry2m1PrW9RVcyvAi4HTqdqXRzJF9Q5VMfdWcDnI+LMMn2Dju8NPOYy8z+VqgXpR+WU6zVlWY28g+rCln9SHZ8nUbXEZ10I7EK1HZ8CDomI4VPOh1Jd+HIHcCpV39DfjWDe36Hqh7hI0s8bFdgIx94Gf3a1MV6fVWspfUTfTnUR2Z1U7//baoqMdD2/TPV5dC/VxW2/Hek6JZaZ1ub7YypVn/d7qY77Lak+U7rL0ODY/Y2T4SsozcwmHFVDIH0zInZsW3gCk/RZYOuIeO14r4uZNbfyr+eMWaVu6u7PGO1uXyke3NfMJgxJ04EDqVpdt6I6dXnquK5UByqnZKdQtS4+gep0/oSMJjbrKuM5vuoYcVcBM5tIRDWU0QNUXQWup+qvaGubTdXPdRlVv+AvAL8Y1zUyM8MtrmY2gZRhj54w3uvR6SLiYmDn8V4PMxuhcRxfday4xdXMzMzMuoIrrmZmZmbWFdxVwNay+t5bUlckDvyuUQLkuv7+0YtT5a5csmmq3BVT8xdM/mXg7lS5qZqcKpf9lbeiZertGnv3z2tfaATLhZpsxjZWJEd/unxVbh/uO6VZUubaJo169gAMJcd+XxSrR3W52W1ZllzuX1fc1b5Q8SW1G8a0MiV5RKxIHmX39+W+MpaN4KD9ue5rXwhYO8+gucnJbXko+T7doa9ZyNTa+kZwbGfXcXXy9btp4MFUuX2Tnzkbw+rs+5Tc65I9xJR8XVZE7jPxloFFySXDebf/YeyvuvfFWWZmZmZmnaEnK66S3iXpekkjSWNpNb/5kl5Zc3/fmgHfR2P+0yRdJOlKVfnjHxuteZuZmdkEMTQ0dn/jpFe7CrwNeF5E3DpK85tPldzxQ3g4feOSUZo3VIk0z4yIpSUm9M+SfhMRF6zvDCX1RyTPhZmZmZl1gZ5rcZX0Taqs5NMkPSjpvTWPXVNaT+eXFtlvlRbOM8vA5EjaWdLvS+vnZZJ2ooqBe5qkKyT9v5KD/qtSfjNJP5d0laQLSvY2ko6S9F1JZ0u6RdK7mq1zVJaWu5PLX9MOQZIWSPpsaaW9SNLOZfpxkr4o6Y/AZ0sO83clXSzpckkv3JB9a2ZmZp0rYnDM/sZLz1VcI+ItVBnYBwJfalF0F+DoiNgTWAS8pEw/sUx/DPAUqrzmDwB/iojHRkT9PD8GXB4Re1PlGn+/5rHdgecA+wEfLa2pDUnqk3QFcDfwu4i4sM2mLo6I/agyl79cM31X4OCIeA/w38AfIuIJVPvjfyXNbLDsN0m6RNIl3/7+SW0Wa2ZmZjY+erWrQMatEXFFuX0pMF/SbGC7iDgVICJWQNurWfenVHoj4g+S5kmaWx77dUSsBFZKupsqYvK2RjOJ6ufLYyVtApwqaa+IuKbFck+q+V9bmf5JrPkp9GzgBTWtztOAHajSgmqXfSxwLORHFTAzM7MOMwFGFej1iusAa7cqT6u5vbLm9iAwHdZrrJ5Gzxmu/NUvo+3+johFks4Gngu0qrhGk9vL6tbtJRFxQ7vlmpmZmXW6nusqUGcB8HgASY8HHtmqcEQsBm6T9KLynKmSZgBLqLK7GzkXeFUpfwBwb5lPmqQtSksrpa/twcBf2zzt5TX//9KkzBnAO1WajCU9biTrZWZmZl3Eowp0vVOAw0rf0YuBGxPPeQ1wjKSPA6uBlwJXAQOSrgSOAy6vKX8U8D1JVwHLgdeux3puAxwvqY/qx8SPI+JXbZ4zVdKFpfyhTcp8gqr/61Wl8roAeH6rmWaDBfqfldvMHf7xj9z8jr8jVW7h0i1S5QAGI9frYVDZN+Do/s6blZzf1MifCFil3DZHcjDw1UO5gSmyA6pPS57UGElQQTaAYEXydc7um+yA88uT5R49fWuuXNawJ9E6Vvfn5rnVlJXtCwFTJ+de5y1X5sI6lg/kygH8YsroHhPZcquTF5fMoC9VbvoIPh+mJsuuTAYQZN8DMyO33CnJfTh5BB3LViXf0tnPsGnJfZh9VR5Mrt9ek+elg1ls4+jJimtEzK+5++wmxfaqKf/5mtt/A57ZoPxBdffPLuXvB9a5Wj8ijqq7v1d9mZrHrgJG2hp6dESsNd5rRBxed/8h4M0jnK+ZjYNspdXMxk/HV1onQB/XXu8qYGZmZmY9oidbXDuVpHnAWQ0eOigi1gnslnQq6/bLfX9di7KZmZkZDI3f+KpjpScrrmWw/7cCl0XEq0ZhfvOBp0TED8v9fYHDIqJpqEAjpXL62CbLWEB1EdggMBAR+0bEizdgtc3MzMx6Sk9WXOm+yNdhB0bEvaMxI0e+mpmZTTDu49p9ujHydT228WxJX5Z0ftmm/WqWeaykM4HvlzSu/y2Rr1dJanihVm1y1nfOunS0VtPMzMxsVPVcxbVbI1+pQgTOlHSppDclNnVmRDyFqnX5uzXT9wFeGBGvBN4APFgiX58AvFHSOmPZRsSxpWvCvm84aJ/Eos3MzKzjeBzXntZRka/AUyPiDklbAr+T9NeIOLfFck8qyzxX0pzhAAPgtDIMFlRDge0t6ZByfy5VhX20ulCYmZmZjZler7h2TeRrRNxR/t9dRhPYjyqVq+lTmtyvj3x9Z0Sc0WI+ZmZm1gvcx7XrLaA7Il9nltZeJM2kaim9ps3TXl7K70/VHeDBBmXOAN463EVB0q5l/mZmZmZdp9dbXLsl8nUr4NTSJaEf+GFE/LbNcx6QdD4wB3h9kzLfphoR4bIS+XoP8KJWM/37Ry9OrXA2ynXyGz6cKrfdTj9Mldvj7e3q82v8aNKqVLlsXOJk5X7nLR5ckSo3rS/XwD9nBJGvA8myiyflxvpbmtyW1cloylnJj5yRxdzmymUjWlckWyzadCF62Ork/PaYsS2XL12QKnv75FwM6eyVU1Ll5m+2PFVus+2WtS8ETBpBFmjcOCNVbjD5Ps2eN1s2lP18yJk8ghN2c4dyZZclP3NWJAeQGUiu4rTkrp41gsa91cllD/ZlI5dz+rPxtcl2vKEJ0KLZ6Xqy4tqFka+3AI9p9ngTp0TEB9ssc4jqgrEjRzhvMxtj2UqrmVlT43jR1Fjp9a4CZmZmZtYjurbiKuldZSzWE0dpfvMlvbLm/r6Svjoa866Z54mSVkt6qIwJO/y3k6TfSfpb+b9pKX90XbkrJL0uIg4oIQhmZmZmFQ+H1dG6MR3rGOALwPcj4uHoV0mfA86KiM9I+gDVuLHvj4i3r89CJPVFRO8HFpuZmdmE0pUtrt2ajlXGZb2/wUMvBI4vt4+nxQVUZZknSPpDaaF9Y5l+gKQ/SvohcHWZ9mpJF5VtOkZSw/7stclZP34wd9GVmZmZdZaIwTH7Gy9dWXHt4nSsZraKiDvLtt0JbNmm/N7AvwFPBj4iadsyfT/gvyNiD0mPphoy66mldXeQMmxXvdrkrJfN3WE9Vt/MzMxs4+vmrgIZnZaONVp+UdKxHpL0R6oK6yLgopquEwdRxb9eXLZtOnD3Rl4vMzMzGy8TYFSBXqi4dk06Vgt3SdomIu6UtA3tK5jZ1Kzj64fMMjMzM+tWXdlVoM4CuiAdq43TWBNc8FrgF23Kv1DSNEnzgAOowhXqnQUcImlLeLif7o6jtL5mZmbWaWJo7P7GSS+0uHZLOhaSTqKqaG4u6TbgoxHxHaoLw34s6Q3AP8r6tHIR8GtgB+ATEXGHpF1rC0TEdZI+BJwpaVLZzrcDf2814yuXbJralv7j70iVyyZi9R/wyvaFgP1f9NZUOYD+X+ayVbKJSkORS3RZNZRLsckm7Ww5kE8hmj6UK7t6aq4rdl8yuWdq8jfwjGQiVrYcwIpsMk4y6WogWS6SSU7Z1oF9Zs3nimW5iyPvm5Rb9p19ueSs6Xc3+82+tq0n5X6vz90lf+HG4I354zsjm6iUPbazqXCD6SXDlOQmT0++D+ZMmta+ELCE3OsymNw3fZPybV/Zykb28zibiJX+LGl87fI6Zvfl9rVtPF1bce22dKzy+KFNpt/XYNmt3BgRb6qbx9nD61sz7WTg5BHM18zGSbbSambW1ATo49oLXQXMzMzMbALo2hbXMmbqW4HLIqLhME8jnN984CkR8cNyf1/gsIhoOTZrg/nMo+pfWu81wFeBrYEh4NiI+Ep5zmZULaPzqfrsvoxqLNd3183jvPUNJTAzM7MeN459T8dK11Zc6dDkrHLa/7H108toAe+JiMvKkFyXSvpdRFxHNYbsWslZEfF+4HvrsyFOzjIzM7Ne1JVdBboxOSsi7oyIy8rtJcD1wHbl4Y5Jzvr98pva7H0zMzPrSENDY/c3Trqy4trtyVmlW8LjgAvLpI5Jzjp4xs7tVt/MzMxsXHRzV4GMjkvOkjSLagivIzZgLFgnZ5mZmdna3Me1K3RNclZpjT0FODEiflbzkJOzzMzMzNroyq4CdRbQBclZqpo9vwNcHxFfrHvYyVlmZma2YSZAH9deaHHtluSsp5blXl3WFeDIiDidDkrOumJqLtJl4dItUuX2ePs1qXLZRKzpn/pGqhzA48/4QKrcjGTizepkUtKKyZulyt3G6lS56f25lCuAZ01elCr3tD2WpsrNumK3VLkbk9vyoLIfdvnf1POGcidRZpNLkcrmOD2UXMV7J+WWu9vsPbl6MPf63aVcOtvqybmP+H/GjFS5OXfnym19e35Qk0V9uRS+ScmTZdMn5d4ve0/ePFVuwWDuvXK38l+nf5+UK7s7uf19yOC8VLlzYnmq3GAyLezWZMoc5BPItmBqqtzUZCJWNolrr1WpYjAl991nG0/XVly7LTkrIv5Mk24KTs4ys2yl1cysKSdnmZmZmZl1hq5tce3C5KyDqEY2WEJ1EddAROxbnuPkLDMzM7M2urbiSpclZ8HDQ24dGBH31j3k5CwzMzPbMBNgOKyu7CrQjclZbXRMctYVS5ycZWZmZp2pKyuuXZycFVRX+V8qqfbiqo5JznrsbCdnmZmZdSUPh9X1Oi0566ll6Kotgd9J+mtEnLse2+XkLDMzM5tweqHi2jXJWRFxR/l/t6RTqSqc5+LkLDMzM9tQ7uPaFRbQHclZM0trL5JmUo09Ozw6v5OzzMzMzNrohRbXbknO2go4tZy27wd+GBG/LY91THLWXwZyvQkGI5cv9KNJuTiS/l/m0quyaVgAX7nkM6lyQw/8M1Vu4OSvp8ot++OdqXIfvrldV+bK7ZPyA0SctWrTVLktL9kkVe4xVU+atq7ty/0Gvj9Wti8E3DOCRJ57+3JJSdtE7uNueTI7a1YyuWfzZDLbgZPm8UAyWey81XelymXTigaSg5AMJltz7hvI/67/TN+/pMpNH8q9LpsN5VLcNp2cO7Y/N2l6qlz/CI7ZRUO5z8UzBnOfJftNzn2W3DP4UKpcX3Jbpo0gLSybYLU4cqlwtw4tSZWbmUxSu3lKLrGr402AAIKurbh2YXLWLcBjmjzm5CyzCS5baTUzm8i6tuJqZmZmZjUmQB/Xnqy4SjoO+FVE/HSU5/sCYI+IaHoOukVy1mbA4xuEDyBpGlU/2qlUr8lPqfruOjnLzMzMrOj4imsnpUBFxGlUF1K1KtMwOUvSghZPWwk8MyKWlnFg/wy8u4y/ul4k9UckOwuZmZlZ95sAfVxHdVSBZmlVknaS9Nsy8P6fJO1eyh8n6ZCa5y8t/xulQP1nScW6RtIRNc85rCRaXSnphJrVebqk80uiVe0y3ifp4vKcj9Ws918lfbvM/0RJB0s6r6RT7VfKHS7pa+X2VpJOLcu9UtJTyvSfl+28ti5koKmoLC13J5e/plciSFog6bMlFesiSTvX7M8vlrFdP1tGMvhu2d7LJa3TT9fMzMysW2yMFtddgEMj4o2Sfkw1cP/rgLdExN8kPRH4Oo0vjqq1H7BXRNwqaZ8yjydSjU96oaRzgFXAf1MN7H+vpM1qnr8NVXDA7lStpD+V9OyyfvuV+Zwm6elUV/LvTHU1/5uoRid4ZXn+C6jSsupjWL8KnBMRLy5RqrPK9NdHxP2q4mUvlnRKaYVtqczj0rIeR0fEhW2esjgi9pN0GPBl4Pll+q7AwRExKOnTwB8i4vWSNgEukvT7iKgd75VSwX4TwC6b7M62M7drt7pmZmbWaSZAi+vGqLiuk1ZFFav6k5p0qsy4E7UpUPsDpw5XuCT9DPgwMlEAACAASURBVHgaVavkT4f7jZar/4f9PCKGgOskbVWmPbv8DQ91NYuqIvuPst7DrbvXAmdFREi6umxDvWcCh5XlDgIPlunvkvTicnv7Mv+2Fdcyj8eWCuapkvaKiGtaPOWkmv+1EbU/qela8WzgBZLeW+5PoxpC6/q6ZR8LHAtwwCMOzo05Y2ZmZjbGNkbFtT5JaitgUZP+mg+nXqmq1U6peaw+BaoR0fyU+sq6csP//ycijllrJtL8uvJDNfeHSO6nEk5wMPDkiFgu6WzWTvJqKyIWlec9lzUBBQ2LNrldv99eEhE3jGQdzMzMrAslx1jvZmORnLUYuFXSS6GqoEoaHs90AbBPuf1Cqr6djZwLvEjSjJI69WLgT1RX77+sXMlPXVeBRs4AXi9pVim/3XCy1Ho4C3hrmU+fpDnAXOCBUmndHXhSZkaStigtrZQuBgcDf23ztJfX/P9LkzJnAO8sPwqQ9LjM+piZmZl1orEaVeBVwDdKktNk4EfAlcC3gF9IuoiqIris0ZMj4rIyxNVFZdK3I+JyAEmfAs6RNEjVBeDwZisREWdKejTwl1KXWwq8mqpleKTeDRyrKu1qkKoS+1vgLaoStm4ALkjOaxvg+NLPdRLw44j4VZvnTJV0YSl/aJMyn6Dq/3pVqbwuYE1f2CYzzaWMDCYHSx9KphBlU1VmJFOIIJ+INWnTrVPl+l/wmlS5mToxt9ybc8k9k5P7BmBusnvTLv1L2xcCJvfnZjg7ZrUvBM3PndSZOYLXebuhXNndVuYG2bi3P/exOG8g97Hx0KRs+4C4fXJuB01Wbpv7km0Tg9k2jOTrt7wvn0LUn2wgmp0cXGbzWctT5bbeK/cemHXlVu0LjVC/cvs7m0w1N3LHQzZFalry/Td7IyRnbZaslgxOyn02zUp+p23ZtN1sbR3fg9R9XEcmIhbQJK2K6tR3ffm7WLtV8oNl+tmsmwL1ReCLDeZxPHB83bTD6+7Pqrn9FeArDVa/dr0Pr7m9YPixiDiOKg52eN0bXaX/vAbT6pO+6h+7Chhpa+jREfGxuvkcXnf/IeDNI5yvmY2DbKXVzGwi6/hxXM3MzMwswS2u3UnjmJzV4rkLgGcBP2nw8EFUIzAsoep2MBAR+0o6FXhkXdn3t2q9NTMzM+tVHV9xVZclZ7XxQLM0rNLn9sDaSNiIeHGjshlycpaZmZn1GCdnrVnvcUvOWo/9fLakL5ftu6Zm/Y6SdKykM4Hvl9EO/rdme93f1czMrFfF0Nj9jRMnZ3VIchbVWKxnSgrgmBIK0MrMiHhKWf/vsubisn2A/SPioVJxfjAiniBpKnCepDNrgh2AtZOz9thkTx4xa/vE6pqZmZmNLSdndUhyFlXl+44yruzvJP01Is5tUf6ksuxzJc0ZHgcWOK2MJjC8vXvXtDjPLeuzVsW1NjnrOds/r/dHLzYzM+tFvjhrvTg5az2SsyLijvL/7nJR1n5UwQtNn9Lkfv1+e2dEnJFZBzMzM7NO5uSszkjOmilp9vBtqpbSVnGvUJKzJO1P1R3gwQZlzgDeKlUjMEvatczfzMzMek3E2P2NEydndUZy1lbAqWWd+oEfRsRv2zznAUnnA3OA1zcp822qbg6XlRbte1i3r+5a8r9kciUnJxNihpJvgtXJJC6AgZO/niqXTcSatO0uufn9+6tS5fSt76TKjWSbs/r7cqeTtnrU4lS5aTfPSZUbyUmsrZOJWFsP5PbPzpstSpWb+0AuBWyreUtS5QYGctuxF3D7g7NTZX85JRdWMCl56PRNSqYVbYQLMhb35bZl7lCu3My5K9sXAqbunUvEmn1l7vUbSXzE8mTi1D3Jd8zcyC19WjJxLZuItV1MaV+omJLcQ5skD7F/9uXWcRty67jdgANAuoWTs9YYz+SsW4DHNHu8iVMi4oN18zmq7v4Q1YVlR45w3mbjKltp7SXZSquZWVMToI/rWHQVMDMzMzPbYB0fQNBLSl/csxo8dFCjIbMkHQ08tW7yVyLigI2wemZmZtbNJkCLa1dXXNW50a771iZgDYuI+yRdBjwfuDsi9qp53mbAyVR9UhcAL4uIt6/XBpiZmZn1oI7pKlAG8e8IEXHa+lRak46jQX9f4ANUY8fuQtUq+4ENWUgn7U8zMzMbAxMgOWu9Kq5ytOt6R7uWUIH7Gzz0QtZcZHY8La7+VxXteoKkP5T1fmOL/flqSRdJukLSMY0qtJLeJOkSSZcsXLowuylmZmZmY2pDugo42nX9ol2b2Soi7gSIiDsT48vuTTUiw0zgckm/LtNr9+ejqcZ7fWpErJb0daqhyb5fO6Pa5KznOTnLzMysK8VQ73+Fb0jF1dGu6xftOlp+UaJdH5L0R6oK6yLW3p8HUQU8XFxek+nA3WO4jmZmZmajZkMqro52XY9o1xbukrRNaW3dhvYVzGzk6/H1472amZlZD+qwUQUkPZdq7Pw+qvCoda4fkvQy4CiqesyVEfHKVvMczYuzHO26YU4DXltuvxb4RZvyL5Q0reyTA6i6PTRa90OGt13SZpJ2HIV1NTMzM2uqdK88miqYaQ/gUEl71JXZhSp86qkRsSdwxDozqjPaw2E52rUNSSdRVTQ3l3Qb8NGI+A7wGeDHZTn/oOqH28pFwK+BHYBPRMQdknatLRAR15XX4kxJk4DVwNuBvzeb6YoYyG5KyuLBFalyq4Zyy10xud1vljWW/fHOVLmZOjFVLhvlmo2GnZqNzR1BmORDo5xaOPPA7VPlpt+Um99q5VZw1gi6ac0ZzLUwbLFH7lhceVmz39Vr22yX3PwmzUpG17KCVf/MfUQN3JBbx8FklLKS+zv7+bBo1dLcDIHbp+cWvjgZS6vb56XKzRvIbcumyVjTkbz1FiWjsLOv346rcu+Bq6clI1+TVYPNkjG8AHOSDYHZ9/Pqvty+6U8e2zOT6ze7w1o01zGOV/s3sB9wU0kHRdKPqBovr6sp80bg6Ih4ACAi2nZnXK+Kq6NdgfWIdi2PH9pk+n1UfVKzboyItUYzaLI/T6YaH9bMOli20mpm1gnKiEq19ZBjy8Xew7YDaocquo3q4vtau5Z5nUfVneCoiPhtq+V2dQCBmZmZmRVjOKpA7YhETTRqkq9fwX6qi9sPAB4B/EnSXhGxqNlMu7riqs5NznoW8JMGD7+GanitrakuBju2tAw3TM6iGprr3XXzOM+JWmZmZtbhbqMadWnYI4A7GpS5ICJWU10ndQNVRbbRdTtAB1VcJfWV4abGXUScRnWx1Pp6oNHoCmW0gPeUvryzgUsl/S4irmNNctZnJH0A+EBEvB/43vqsQCftTzMzMxsDndUH92JgF0mPBG4HXkE1dn6tnwOHAsdJ2pyq68AtrWbq5KwxTM6KiDsj4rJyewlwPVUfEOiQ5Kw7lt2W2RQzMzOzpiJiAHgH1UhP1wM/johrJX28nNmmPHafpOuAPwLvaxfm5OSscUrOUjWm7OOAC8ukjkjOOvARz+r92A0zMzPb6CLidOD0umkfqbkdwH+WvxQnZ41Dcpaq8WVPAY6IiMWZ5zTg5CwzMzNbo7O6CmwUTs4a4+QsSZOpKq0nRsTPah5ycpaZmZlZC07Oam/UkrNKpf07wPVlvNpaTs4yMzOz9Rcxdn/jxMlZ7Y1mctZTqYbEulrScDeLI0sfkI5Iztq7P5c6Myv5m2daXy5ZJZsOdRurU+UAPnxz7rfKpJtzCUj61ndS5bKJWJ+75NOpcgN/+EGqHMDCj56fKvfrZZunyn3127l905dMxMrum1uSqTgANySTl069NLfNS5LpUFOuyL1XBpueLFrXoljZvhCwY//0VLkpyf09i1yiUl/yfbp6yjapcgDXR8Ovg3X0J9Omrpue25YfnJQqxrOSHzl9I3idZ/VletHB3Mm5z7Dj+3I9zrYkd9ysIHe6eUFuVwPQlyy7aHLu/bc8+T79Gw+lyl01ysuFxslFtuEU41hrtvUj6ShgaV1i2ah49/xXpA6IdMU1RrniqnzFdXXyw3dSctnZcMNeqrheOylZcU3uney+mTaCk0GrkxWGJeS+cNIV1+Q6Ziuu2UorwBaTOrziOoJK3N2RO8b6s8fOugOnNLQq+fnwrFW5fT2Siut9yR/0/+jLtbXcMLQkVW7L5HGzMd6n2TruouT79P5YlSo3Lbnkh5LLHUnF9fR/nD7KIdztLf/iG8esUjfjP7815tsHo9tVwMzMzMxso+mYAIKNRdLhwJkRcUe5vwDYd3iEguTz942Id4xgmfOoukTUO6jZkFllDNnh6DQBRwGb4OQsMzMzyxjDyNfx0vMVV6q+sNewbszYRlMqp41GV2jlGqoK8kAZVeBKYNuIWK/kLHB6lpmZmfWWrusqUJN+dXxJxfppGYXgIyUp6xpJx5ZRDQ4B9gVOLMlRwx183inpMklXa02612YlDesqSRdI2rvBsneUdFYpc5akHcr0ncpzLi6JEMPJYCdIemHN80+sSYtYS0QsLykTUA2t1fRnU7N9UB5bUPbFn4GXqkmaWd38Hk7OumbJze1fBDMzM+s8MTR2f+Ok6yquxW7AsRGxN9UwXG8DvhYRT4iIvagG2n9+RPwUuAR4VUQ8tgzYD3BvRDwe+Abw3jLtY8DlZZ5HUpcuVXwN+H4pcyJVqhbAV4CvRMQTWLtl99tUSWBImksV0LBWgkQtSU8soQhXUyWQteoF3mgfDFsREftHxI+ouh+8MyL2Kdv69foZRcSxEbFvROy71+ydWizSzMzMbPx0a8V1YUScV27/gCpx60BJF5YErGcCe7Z4/vDA/8OJX5R5nAAQEX8A5pXKZq0nAz8st08ozxme/pNye/hxIuIcYOcyjuqhwCmtKqMRcWFE7Ak8AfigpFahBo32wbCT4eGEruE0syuAY6gics3MzKzXDMXY/Y2Tbu3j2ig16utUfUQXluGiWlX6hsedGWTNPmg0rEO7Vybzyp1ANb7tK4DXJ8oTEddLWgbsRdVinFl27f3hgREn0TzNzMzMzKyrdGuL6w6SnlxuHwr8udy+t7QyHlJTdgkwOzHPc6kqmMORrvdGRP2ozudTVUApZYeXewHwknL7FXXPOQ44AiAirm22cEmPlNRfbu9I1RVgQYv1bbYPHlbWv1mamZmZmfWQGBoas7/x0q0trtcDr5V0DPA3qr6qm1L1DV3A2vGnxwHflPQQ1Sn9Zo4CvlfSsJazJn611ruA70p6H3APpf8qVcX0B5LeQ5Vm9eDwEyLiLknXAz9vs037Ax+QtBoYAt7WZsiuRvugkWZpZg1lf8lMTQYLzEmW23Igd9phen+ztOB13T4pN6BCNvwgO6h6dn7ZYIH+Z746VQ7gEbctTJXb93MPpMrdPi23v5clQ+n6k/tmRoz+b+qh5FDZSqaAZV/nbADBbPVz+9DyVNlssMD0ZLkZyXLZAIKRpIUtU+5raPIob/NDyW3JBgvMG8wP4LJpsujUybl9c1tf7n2afVflA0Xy489nw2gGk8fDCuUqTrOT1ZwZ6YgEG2/dWnEdioi31E37UPlbS0ScApxSM2l+zWOXAAeU2/fTIKEtIo6jqvwSEQuo+s/Wux14UkSEpFdQc3q/XO2/C9AyYDAiTqD0sU1qtA+IiPl1928FnjuC+ZrZOMhWWs3MmvI4rpa0D/A1VU01iyh9WSUdDHwX+GJEPNji+WZmZmbWRtdVXEur516ZsmOVmhURfwLW6TsaEb8Hdqib53OAz9YVvQt4OnBDuX9BRLylTQJXah+YmZnZBDGO46uOla6ruI7Q4YxxalY7EXEGcEbtNEnzgV/VX/2/nglcw/PsbzMOrJmZmVlX6apRBXo1NWs99sNSSV8o23GWpC3K9LMlfVrSOcC7JW0h6ZSybhdLeupoLN/MzMw60AQYx7WrKq5FT6ZmAY+UdLmkcyQ9rc0+mAlcVrbjHOCjNY9tEhHPiIgvlHX7Ulm3l5R1Wkdt5OvVjnw1MzOzDtWNFddeTM26E9ghIh4H/CfwQ0lzWmzDECUdiyapWcXBVBeNXQGcBsyRtM6YtrWRr//iyFczMzPrUN3Yx7XnUrMiYuXwekXEpZJuBnaleWpWq3VZVnN7EvDkmtZmMzMz61XjGAwwVrqxxbUXU7O2kNRXbj+KatzXW1qs7yTWbOcraZCaVZwJPDwigiRHv5qZmVnX6sYW115MzXo68HFJA1QtwW8pgQjNLAP2lHRpWd7Lm5R7F3B02a5+qgr6OqEFtbK/1VYp1zF7IJmWMj3Z0ftZkxelygGctWrTVLm5o/wD9aFkmMzCj56fKpdNwwKYfNgHU+X2nfv1VLm7PnRnqtwFU1PF8slsI0jkmZV8/eYmE3kGkx+L2Zyd5cn3yg6awrXkQghGOwEpW25y8nqMwfzLh5LLnpbc6k0j98rsGLnX+Y7kt2T2uAHYcjA34Mueg7mTZXf2zUiV+yerU+U2RobU6uQxsfVQcumTpqSKbZpM4csme/1jUocnbDmAoCP1YmpW/Xq2FREfBj5cN+2Auvv30rxSa2YdJFtpNTObyLqx4tppnJplZmZm488BBJ2lWWrWWCVkNVmnkaRmHQJ8D5gB3E/VWntrRLxY0j5UrbvTqYbNejdV/9n6k7CviYhZI11PMzMzs27XVRXXFg6nwxKymvgN8DyqyvdedRXlbwBvoqqsng48NyKeuL4LcnKWmZnZBDMB+rh25KgCvZqQFRHLIuLPwIq6ZW4DzImIv0REUAUgvKjF/jlb0pclnV/2xX5l+lFlv5wJfF9Sn6T/Let8laQ3Z18DMzMzs07TkRXXolcTshrZDrit5v5tZVorMyPiKVT75bs10/cBXhgRrwTeADxY1vkJwBslPbJ+RrXJWdc4OcvMzKwrxdDQmP2Nl06uuPZiQlYz6xOAcFJZ/rlUiViblOmn1VTenw0cVpKzLgTmUY1ysPaCapKz9nJylpmZmXWoTu7j2nMJWS3cBjyi5v4jaN9ft9H+gbWTswS8MyLOWI91MjMzs27iPq7jqucSspqJiDuBJZKeVIbVOgz4RZunvRxA0v5U3QEaDbl1BvBWSZNL2V0lzRzp+pmZmZl1gk5uce3FhKzhobrmAFMkvQh4dkRcB7yVNcNh/ab8tfKApPPLvJq18n6bqpvEZaVCfA8tLvoCWMFgu00AIFIN0bB4Um5+q6dOTpV72h5LU+UAtrxkk/aFgF36c/Ps7xvdPj2/XrZ5qty+n3sgPc9sIlb/C9+WKvfs83PX85131rxUueXJbDaNIHlps2RS0k6rcj145ipXbva0le0LAQsfyo1e91imce709uUA7ksmIA0m36crk6/LYPKFuZ98b6nFkduWSCaQbZn8Wnv8qhXtCwEnT8sdX3dNybcDzUges49dmZvngStzx+Lxrc5R1piUTDOLdNYirE4ei1tG7rtgbjIRa/NkjNtmg7n1G5zSydUmJkSLaye/Aj2XkFXmP7/J9EtoMEZtC6dExFr5nhFxVN39IaqL0I4cwXzNbBxkK61mZhNZJ1dcO40TsszMzKxzOTlrfDRLyGpmLJKzRpiQ9Rzgs3VFb6W6uOwzwBRgFfC+MroBTZKzvgY8tW4+X4mIAzLbZWZmZtZLOrLiuh4Op4OSs8pV/OtcyS/pccC/R8QdkvYqZYbHa22UnPX29V0HJ2eZmZlNMBOgj2tHjirQw8lZlw+3CgPXAtMkTXVylpmZmVl7HVlxLXo9OeslZV1W0kHJWdcvuSWx6mZmZtZpYijG7G+8dHLFtWeTsyTtSdUHdrgFtGOSsx49+1FtFmtmZmY2Pjq5j2tPJmdJegRwKnBYRNxcJjs5y8zMzDaM+7iOq55Lziqtor8GPljTmuzkLDMzM7OETm5x7cXkrHcAOwMflvThMu3ZEXE3HZKcdfmqu9sstrJ6KDdgwdLBXDpNn3K/oY67EN4xdbdU2cdEbtmT+3Pj3m31qPrfOI3NPHD7VLmvfju3ftdOg03Ipcnc9aE7U+WyiVjTP3tMqtw9+7y3fSFgUeQSfgBmKrfNS/qnpMrtkgto4k5NTZWbOpB7DzxqTm5450cBMZRL+Tn8oVza20Dkkuuy5VYM5nbiwqX3pMoBHLRFbuTDJbEqVW71pFyL076R+/rLpo8tYZChZNkrhpakyp2m3Ot8xl65JK5br88d2yPRr9yylw/lXr/b+2akyq1MHrNz+3KfD3v1Zdt0giesyC3bNo5Orrj2XHJWRHwS+GSTx5yclZCttPaSbKW1l2Qrrb0kW2m1zpSttPaSbKW1l3R8pXXIAQS2hpOzzMzMzMZRR1ZcR5qcNRZGIzkrIl48kmVKOhonZ5mZmVnGBLg4qyMrriM1FpGvI9EiOWs+Vd/dG8qkC4a7QzSKfN2Q5CwzMzOzXtMTFVc6LPK1jZsj4rENpq8T+Ur7C7SacuSrmZnZBDMBWlw7cjisXo18bbG94xr5Wpucdffy3FXpZmZmZmOtIyuuRa9Gvj5S0uWSzpH0tDJtXCNfa5OztpyxTZvFmpmZWSeKiDH7Gy+dXHHtxcjXO4EdIuJxwH8CP5Q0h3GOfDUzMzPrBp3cx7XnIl8jYuXwekXEpZJuBnbFka9mZma2odzHdVz1YuTrFlI1YrOkR1G1ft7iyFczMzOz9jq5xbUXI1+fDnxc0gBVS/BbSpoXdEjk675Ttmqz2Mrk5G+e1eRSPKYm53cjydxO4Nq+3Dxnx6xUuWk3z0mVm35Tqhh9yiUlLSOf1HJBMtHxvLPmpcplo1y/d+nnU+UGzv9Z+0LA4i/+KlUO4OYbcttyU//09oWAu5NhQDcpd9xMz6fcsli51pLHTMnFYmbfV9n36apkuaGZO6bKAaxIRndm1zHrl7nDIb3cKSNoB9q9r76HWmNLkjGkb74x97n4uqHcZ1jWtBH0c8yWvD/5ubgwGdU9qeGJ1nUtTa7hz6fnj8Nnp0uOognQ4trJFddejHytX8/axxz5ajaBZSutZmYTWSdXXDuNI1/NzMysY4VbXMfHhkS+SjqCahit5aOxLpKOjIhPb8zI1zIO7CeAIWAAOCIi/uzIVzMzM7M1OrLiuoGOoBo+a52Kq6S+iGSHqjWOBD49wuec1SQdq2l5qmGsooQi/BjYfUMiX9dzW83MzKxbTYAW104eVaAtSTMl/VrSlSVB6qPAtsAfJf2xlFlakq4uBJ4saYGkzctj+0o6u9yeJel7JWnrKkkvkfQZYHpJ5DpRVaLXNTXLf28Zlms4zerTks4B3l1GEDilpFZdLKm+5fRhEbE01ozmO5MW/dglHSDpXEmnSrpO0jclTWqyrfuUoINLJZ1REroazfPh5KzrltyS2/lmZmZmY6zbW1yfC9wREf8GDydXvQ44MCLuLWVmAtdExEdKmWbz+jDVsFL/UsptGhGnSHrHcOuppPlt1meTiHhGKftD4EvllP8OVENTPbrZEyW9GPgfYEvg39osZz9gD+DvwG+B/w/4ae22liGwzqFK0bpH0suBT9FgBIKIOBY4FuBt81/W+z/XzMzMetHoDr7Rkbq94no18HlJnwV+FRF/alAxHaTJlfx1DqZmfNaIeGA91ufkuvntUbM+cyTNjogljZ4YEacCp0p6OlV/14NbLOeiiLgFQNJJVOleP2Xtbd2Nqp/w78o69FEld5mZmZl1pa6uuEbEjZL2Af4V+B9JZzYotqKur+cAa7pI1CZvifZDzdU+t/75sHZq1STgyTXxqykRca6knSRtXtNqvE6xJvdrt1XAtRHRalxbMzMz6xETYVSBbu/jui2wPCJ+AHweeDztU7QWUA1tBWuSsADOBN5RM+9Ny83Vw8lTwF3AlpLmSZoKPL/Fcurn1/RiLUk7l2G2kPR4YApwX4t57yfpkaVv68tZk+5V6wZgi+H0MUmTJe3ZYp5mZmZmHa2rW1yBfwH+V9IQsJoqferJwG8k3RkRBzZ4zseA70g6EriwZvongaPLxVeDpdzPqPp+XiXpsoh4laSPl+fdCvy1xbq9q8zvKqr9fC5QH6gw7CXAYZJWAw8BL6+5WKuRvwCfKdt/LnBqfYGIWCXpEOCrpe9vP/BloGkkLeRTRqYly81KHmIzIje/B5XvwHN/JCOLcotOdx1anUx+yaYa9WdXkPwv0eXJrVmU3IfZRKz+p/x/qXJzFud76ux6QqPfbetaekXDaxPXsXxS7phd1r4IAJsmx/bYFLE4+QL+vS/XqpI9HrLHYtZI5rcsmYbX+iOxRvLtMpBMSsomYs0dwdfp9OTnXTZd766Rndhra5vB3Gsyb9roLhfgjhW5VLh7+3IRd9nP7RnJ13m5Ory9bwK0uHZ1xTUizqC66KnWJcD/1ZSZVfecPwG7NpjXUhpEwEbE+4H319z/KvDVBuUOqLt/L1VraFsR8VnWHfe1leURsc68G2zrFVQxs2bW4bKVVjOzicwflWZmZmbWFbq6xbWRjZWcNUrzeh3w7rrJ5wE/AX5B1f0Aqi4KpwIn1JVdGRFPBM4ejfUxMzOzHuLhsLrSuCdnSeqPiIH66RHxPeB7DcofAPwpIuov9hpJ+lb9PJ2cZWZmZj2lq7sK9Epy1gi3eb6kv0o6vqznTyXNKI8tkPQRSX8GXlqG1fptSc76k6Tdm8zz4eSsa5fcPBqraWZmZmMshmLM/sZLt7e49kxyFlWl+krgDuC9EdHq6v/dgDdExHmSvgu8jWo4MKjGct2/rMNZwFsi4m+Sngh8HXhm/cxqk7PeMf/lvX9JopmZmXWlbq+49kpy1mXAjhGxVNK/Aj8HdmmxnIURcV65/QOqobeGK64nQ9WCDDwF+EnNOkwd4faYmZlZt3Af187WK8lZEbG45vbpkr6+nslZteswCVg03FpsZmZm1u26vY9rryRnbV2TnLUf1evSKjlrh+FELOBQGiRnlcrwrZJeWuYrSY9pMU8zMzPrYu7j2vl6JTnrEOCtkgaokrNe0SY563rgtZKOAf4GfKNJuVcB35D0IWAy8CPgyhbzTcsmbE1Np52DVgAAIABJREFUJsRkk7NG8lvrnmTqzExyCSxbD+XKzUq+n29Jph/NiPw2T02+Lsldw8yHf7O1tviLv0qVyyZi9T/3DalyALN22itVbp9PfzNVbu6l81LlViaPh02nr0iVA7hz+cxUuUun546dbDpUNumqL3l8ZcsBTEm+/waV25bZya+1zZLlsilzs9KfYfnPu1WjnNK0OrmKU5QbkGabRz2YXvbUrZMJZNfl0rhuv2+rVLlZyQrWpGQy2+CU3PFqG09XV1x7KDnra8DXMmWLoYhYpxIcEfPr7t9KdQGbmXW4bKXVzKypCdDHtau7CpiZmZnZxNG1FVdJRwyPXzpK8ztytObVYhkflLRM0pCk28v4sEeXx54r6QZJN0n6QOlHe0X9H7AkInLnRs3MzGzCiKGx+xsv3dxVoGMTslr4DvB74EXAAxHx+TKfPuBo4FnAbcDFwGkbMiLAeqybmZmZWUfrihbXXknIioi7I+JiqgvJau0H3BQRt0TEKqqLqF7YYn8skPRZSReVv53L9OMkfbHsk8+W/fbdsl6XS2o6TzMzM+tyQ2P4N066pcW1lxKyGtkOWFhz/zbgiW2eszgi9pN0GPBl1gzNtStwcEQMSvo08IeIeL2kTYCLJP0+ImrHm0XSm4A3ARyw2T7sOXunEa6+mZmZ2cbXFS2uVAlZB5dWxqdFRKMxOEaSkHX08J1RSsj6Wul/eholIWuE82tUy243NsdJNf+fXDP9JzXdJJ4NfKCs29lUgQk7rLOgiGMjYt+I2NeVVjMzs+7kPq4dolcSslq4Ddi+5v4jgDvaPCea3K5dNwEviYgbNmDdzMzMzDpCV7S49kpCVgsXA7tIeqSkKcArqFpvW3l5zf+/NClzBvDOmlSux63HupmZmVk3cB/XjtETCVmStqYKSJgDDEk6AtgjIhZLegdVRbMP+G5EXNtmn0wtF6JNoop9beQTVP1fryqV1wW0roQzlEzayZZblUxqWZFM2pk3lE+nubcvl/q0XTIBaeuB3DbPGcy9o29Iph+NxKzkh8lmkdvmJf1TUuVuviGXNrXrCeukEzeUTcMC6NulXXfwyowjlqTK7X7cye0LAbEqt7M1I7evd+AhHrw6d0ysvmduqlx/Mm0q+y20KlluJEf25GQ6VF8y2WjyKH+WLJmUTFRKlapkE6ymJxO2NlP9ScHGFidDnx4aGP2qQd9Ws9oXAubNWpkqN+PXueVuM7gqVW7W5PprphubtMpBIeOtKyquPZSQ9U+qbgCNHjsdOD0zn+LoiPhY3TwOr7v/EPDmEczTzMZJttJqZtbMePY9HStd0VXAzMzMzKxrK66dnJwl6XUNUq+OlvSqMnbsVZLOl/SYmueslZxVpp3aYD7PiYj5NcOAmZmZmU0IXdFVoImOTc6KiO8B32tQ/inAMyLiAUnPo+pX+8RGyVmSTouIF49wG9qum5mZmfUmdxXoED2UnHV+zbixF7Cmv6uTs8zMzMza6JYW115MznoD8Jtyu2OSs56x2T7sMftRidU3MzOzTuIW187RU8lZkg6kqrgOj2LQMclZrrSamZlZp+qKFtdeSs6StDfwbeB5EXFfmezkLDMzM9swybF/u1lXtLj2SnJW6UrwM+A1EXFjzUNOzjIzMzNroytaXOmR5CzgI8A84OulLjlQTtEPdEpy1qLIpYesUK4jTV8yxWZy8z7Ja5lNLskJYJvIHd67rcwNvrDzZotS5bbYY0Wq3KmXbp4qN4KwMOYqt807rcpt8y65w4Gb+qenyi29YptUuX0+/c3cgsknYvU/5uBUudj7glQ57bZHqtyknXK/F6cBQ5f+PlV2yYeuTpVbnfyIz75PH0oOVLJiBAOabDJpaqrcQDKPazBZLvu+/1sy4W5x8jMRYFFyHVckk8oOHMiNDLmwL7fchZNzx80WN2+SKgew9erFqXLTt8vN74FkCtj2yZdlm+1z67fl6tznzXiZCH1cu6Li2kPJWf8B/EeTx5ycZTaBZSutZmYTWVdUXM3MzMystRjJKbou1RV9XBvp0uSsAyQ9WDPtIzXPcXKWmZmZWQvd3OLajclZBwB/iojn1013cpaZmZltkInQx7UrWlx7JTmrBSdnmZmZmbXRLS2uvZSc9WRJV1KN0/reMnpAxyRnPWGzx7LzrHabb2ZmZp0mPI5rx+iV5KzLgB0j4jFUIyL8vEzvmOQsV1rNzMysU3VFi2uvJGdFxOKa26dL+nrpzuDkLDMzM9sg7uPaIXooOWvrmhSr/aj2/304OcvMzMysra5ocaV3krMOAd4qaQB4CHhFRATQMclZZmZm1p0mwjiuqupN1k0kLQD23Rhjub5yxxenDoipyjXWDySPr/5k5OvjB3PRogD3Tcot+1EDuWXvNJiLcp0zfWWq3CeHcpmFcx4+EdDebkO5+Mwnr8pty53KzW/B5Nw+nJX8uHnc4Dqj3DW1+0GNuryva/LeO+bKve5D6WVnrP7Z/7UvBCw9+bL0PN9y09xUuanJk2pTlDsWVyfPQy5JRkePRPb04JaTcp8RT12dO7bP6F+aKpfdhwBDo/y9uxO5bb5fuRES55DblkcO5E/abjqQO3Y2J3fs/CMZFfyo9r34ANhkRu4z8Z9LZ6bKATzzrh+PeS1y4RMOGrNK3fYXnzUuteRuaXE1MzMzsxYmQlukK64bgaTXAe+um3xeRLx9hPM5FXhk3eT3R8T8DVg9MzMzs67UkRVXSUsjYlaD6W+hukjr+5IOB86MiHZX34/meh0BHBsRy8v9IyNinbStZslZbeb9HWBfqpEAbgQO35DkLDMzM5tYOq2Pq6TnAl+hun7n2xHxmSblDgF+AjwhIi5pNc+uGFVgWER8MyK+X+4eTpWeNZaOAGbU3D9ypDMo8a6N/L+IeExE7A38g5qRCtaHpI78UWJmZma9rybO/nnAHsChkvZoUG421YXuF9Y/1siYV1wl/Zekd5XbX5L0h3L7IEk/qCn3qRLxeoGkrcq0o0r86iFUrZMnlpjW6ZL2kXSOpEslnSFpmwbLPk7SNyT9UdItkp5RIlGvl3RcTblvSLpE0rWSPlamvYuamFnVxcSWMq8uEaxXSDpmuJKqujjaRvtleIzXcvX/dFqMNVu245uS/iTpRknPL9MPl/QTSb+kGqYLSe8rka9XDW9Lg/m9qWzvJTctXdBssWZmZmZZ2Tj7TwCfA1JXyI1Hi+u5wNPK7X2BWWX81P2BP5XpM4ELSsLUucAba2cQET8FLgFeVWJaB6iSqA6JiH2A7wKfarL8Tfn/2bvveLmrOv/jr88t6T20gEBogtQAEQRBml1XUFFkUQQLoriIu7IguyLirsLqTyywICpVQKQJUgQ2lCC9hQ6hRXonpCe3fH5/nHPJZDLlM+HeOyXvJ495ZO53PvOd7/c7hTNnzve8YXfgu8BfgROAzYAtCuZg/Q93nwpsCexiZlu6+69JoQC7uftu7n4ksNDdp+Tps95DmlP1/XmbeoD9CvbnQXff3t3/Xu7AmNnpwEvAJnl/KpkM7AJ8AjjFzPpCEnYAvuzuu5vZh4GNSC+eKcC2ZvaB4hUpOUtERKT5ea8N2qWw0ytfDiranFJx9msVFuT55dd298uj+1iPn5PvJjWgRgOLSTGoU0mN2UNzzRLg8oL6D1VZ58bA5sC1ea79duDFMrV/dXc3sweAl939AQAze4jUGJwBfD4/AR3AJFIX9/1VtmEPUuDBnXkbhgOv5NtCcbTufmDupf0NqRFcaZzsn929F3jczJ4iNXYBrnX3N/L1D+fLvfnvUaSG7PRq2yIiIiJSjrufSpoDv5yKcfZm1kbqPDyglscd9Iaru3fleUgPBG4hNQh3AzYAHsllXb50gtmewHYa8JC7l/wZvkjfJJu9Bdf7/u4ws/WA75EGCL+ZhxAUR76W24Yz3f37JW4rjqMty917zOx84HAqN1yLhxL0/V0c+fpTd/9t5LFFRESkeTXYdFjV4uxHkzodb8gdfmsAl5nZpyqdoFWvk7OmkxqH00nDAw4GZhQ0ViMKI18fA1Y1sx0AzKzTzDZbwW0bQ2r8vZXH1n6szGPCsjGx04C9zWy1vA0TzCw047klG/ZdB/6JymldAJ8zszYz2wBYn3QMil0NfMXMRuV1r9W3fSIiIiIDqGKcvbu/5e6ruPvkPM3nbUDFRivUbzqsm4D/AG519/lmtoil41ujziCN7VxIGte5N/BrMxtL2q9fAtViU5fj7veZ2b35vk8BNxfcfCrLxswWx8T+J3BN7v7uAg4B/hF4WAPONLMx+fp9pFjbSh4DbgRWBw5290VWlD7l7tfksbe35tvmAV9k6RCG5bSV7NlfXnuwrnibyvHy56ItY2ENX7VGeeyxJ3aHOsNZfeLcUN2EjWIJLENmTAzVdQaPNRDMu4HRw2LpXkO7Y0k7T9hys9eVNL96CQCLg6liAL4klshjGy93MuugaN/tc6G6sbt9ju4/nxKqbXtidqiuI9g3MSxY1xl8P3cRe04AOqKfJcG60cF3warB9/34ziGhus4a+oG6LHZ8FgWP4+jgFEjzgomHYzxWt0ZX7BgCrNIe+8wZHUwenLUolpw1asiSUN2EtWKfTt3PNPZkTI00HZa7l4yzN7Njgbvc/bLKayitLg1Xd58GdBb8/e6i20cVXL8QuDBfP6Zg+UUsO250BrDciUdF6z2g4PosUhd1qdsOoAR3/w0FJ025+xHAEQV/nw+cX+J+Ff+vnseqvr9STQk3u/t3i9ZzBqlBX7jsV6Q51ESkgUUbrSIizcLdrwSuLFp2dJnaXSPr1FyfIiIiIi3Ag780NrOGbLhakydnVVlHyRhXYF/S9FZv5WUHkKa6Kv6d8YJyPcIiIiIirawhG67luHvhb2kHAA+y7BlqA+0w4I/Agvz3UUBNDVfSXLPLDQwys32Bw/PQiD4zKD8fbUVm1h6dyUBERESan8eHlzctJWc1SHJWjcfwGDM728yuM7PHzezrefmuedvOBfrmpy25TUXre3sS4cfnPf1ON09ERERkQCg5q4GSs4D/thTNeoKZVTtlckvSUIIdgKPNbM28fLu8/ZtW2aa3FSZnbTSqeBSDiIiININet0G71IuSsxonOev7pLjXIaRpto4Ajq1Qf6m7LwQWmtn1pAbrbOAOd+/rNq20TSIiIiJNRclZS9U1Ocvd+xrai83s9LwNFe9S5u/i5Kxy2yQiIiItZGWYVUDJWcsb9OSsXD8p/2vAXqQTzyrZ08yGmdlEYFdSQkWxd7RNIiIiIo1EyVlF6pScBelEs1VJvaQzSI35Su4ArgDWAX7s7i+YWXGQw8O1btN87wpt7IJgik1X8BTH6Deo19piKTYAqwQTdBa2xR69uzu2vrZRsbqeYFpYtA5ggcVqn10YS7paf8xb1YuAYNgN44PzXIwfHksfA7ARwedlg61DdV0X/6Z6EfFErLbxa4TqhnzjGHxhLJ1tzilHVC8CFlgs+Wx2MClpscfWN6cn/vyt3Tk2VNcTTJGaT+xF1vV2n0Nl0USsWhLuYp+yMD94vKP/I49+lkRPTK8lpKkt+NnU0xs73s92xNa3ysKRobrV22LvvYmTovl/9dFIyVkDRclZpW87gBIGKjkr1+xerabITHc/qGgdNwA3FC0ruU0i0liijVYRkZVZU83jKiIiIiKl1TTgsknVa4wrkOY3LbP8YDPbP18/oGCqp8HarsPMbETB30f147rvM7PFZuZm9kCeX/UjlvzazJ7IU2JtY2YH5tsLLye5+zHu/vP+2iYRERGRZtCQPa6tkJBl5ZOrDgDeJP2kv5u7v5brPw5slC/bAye7+/bA6Suw/dW2QURERFrMyjDGdcB6XE0JWSWn5nL3e/P42mJ7Amd5chswrtS+5cfZ1cymm9klZvawmZ2ST75abhuCx+vt5KxZ86LnkomIiIgMroEcKqCErNqsBTxb8PdzeVk52wH/BmxBmgP3M8XbANxO4HgVJmdNHqXZskRERKQxDeRQASVk1aZU/36lYdZ3uPtTAGZ2HukLwYVF21DL8RIREZEmVs8o1sEyYA1XJWTV7Dlg7YK/30Xlcb3lkrMKt6GW4yUiIiLS0AZ6VgElZMVdBuyfZxd4H/BWQQxsKduZ2Xp5bOs+QKmhCf15vERERKSBudugXeploGcVUEJWkXzy178Da+R1XunuXwOuBD4OPEGazeDAKqu6FTiONMZ1OnBJiX1ckk9wCx+vRxe9HNkNlvTGEl0W9y4J1bVb7DvUkhGVhv0ua0r7+FDd852xxx7/1ujqRcCEl2LJKrM9Fjc1x2PHEGBuMClpzvDIjwuwXvAM1TnBVJz2ttj6XlwQS7sBGPvAgupFwJC7/y9UN+/8e0J1I199PVTXuf+/heoAbHjsNfb8kjdDdV29sR+AFvXEXotzlyzs1zqACWtsFapbEPwsWWixXKpnOyeG6rqIvaeiaVgAbwbf0890x5Lr3tseS8KbHdzKTou9T5/vjKXWAczpCb6ngyl8M4cEX2PDYp91ox5dNVT37ne/GntcGTAD2nBVQlbJdf8a+HWJ5U5qAEctcPd9qm2Du1c9XiJSf9FGq4hIOQogEBERERFpEHUNIDCzeaV6Kc3sYFKP4llmdgBwjbsPWgCBmR0GnOruC/LfR7l7rQEElwDrFS0+AtifNLtCF3AH8I18IpsBvyINF1hACiroAs4uWsfiPNXVDbVsj4iIiLQ2zSpQJ62QnEWaO3W5AWY5rOCL+c9zga8BJ5NODiuVnDWleB1RSs4SERGRVqLkrMFPzroyp2M5qcf1XfmmuiVniYiISPNbGWYVUHJWnZKz8rH4EvC3vKhuyVmFka+zF75SfLOIiIhIQ1ByVv2Ss/4XmO7ufY34uiVnufuppCm/eM9q260E5ySKiIi0npVhVgElZ9UhOcvMfgisCnyjYLGSs0REREQqUHLWICdnmdnXgI8A+7p7b8FNSs4SERGRFdbrNmiXelFy1iAnZwGn5Npb88/3F7v7sTRIctYJtn5oJ7o6+jdZ5fW22HeZl4PJUAA3d8VSwDotto1/HRLb5+7HOqsXAet2DA/VDanh+2W08vVggs4BC+eF6rYaMiJU94/22PN89/D4d9uuV8eG6ub+5wOhunaLra/tidmhujmnHFG9KIsmYs146LxQXfdNfw7VvX7cNaG6p/4RS5t60YaE6gAusLmhuhHtsf9dtQffBVd77FivTyyVqqPkaK/SJlvs/TK5M1Z3c28sYWt7D762Q1Xxz22AF4IhW/OITYQzktgKX7HY+s4bFnv+Zj4Vf21PC1dKLZScVfr+A5mcVfKYKzlLZOUWbbSKiJRTz7P9B4uSs0RERESkKTRkAEEt8ryr3wTucff9qtUH1jcZ2NHdz81/TwX2d/dDK92vxHrKJWfdSPppfyjp+F/o7j8ss44t6IfkrDz915rufmX0PiIiItJclJzVHL4FfMzdn+6n9U0G/pmUaoW730WaS7Ym7v7pUstztOvu7j4vn/D1dzO7KocOFK/jAd5BclaBKaSpyNRwFRERkabV1EMFzOwUYH3gMjN7y8y+V3Dbg2Y2OV8eMbPf5YSsa8xseK7Z0Mz+z1Jy1z1mtgHphKedcyrWd3NK1eW5foKZ/cXM7reU9LVlXn5MTua6ISd1le2dzclYfWe8dOZL2RHuZjbLzI7PSV13mNmGefm6ZjYtb8s0M1snL/9c3vf7crrWEOBYYJ+8T8uNixUREZHm54N4qZembri6+8HklCtSMlY5GwEnuftmwGzgs3n5OXn5VsCOpMn5jwRuyklZxev8EXCvu28JHAWcVXDbJqRprrYDflgwfdZyzKzdzGaQgguudffbq+zqHHffDjiRNCsA+fpZeVvOAX6dlx8NfCTv06fcfUledn7ep+VOKitMzrpy4ZNVNkVERESkPpq64VqDp/PZ9ZASuibnRK+13P0SAHdf5O4LqqxnJ/KYU3e/DpiYp5kCuMLdF7v7a6QG6erlVuLuPTku9l2k+Vg3L1ebnVfwb1+YwA7k4Qx5m3bK128GzjCzr0NsvhB3P9Xdp7r71I8P3yByFxEREWkwK8M8rq3UcO1m2f0pTMEqTM7qS+hakaNeKZa11GNU5O6zSSdZfbRaaZnry9XkXuj/JKVwzTCz2MSLIiIiIg2ulRqus4BtAMxsG5Y/o38Z7j4HeM7M9sr3GWpmI1g+NavQdGC/XL8r8FpeT5iZrWpm4/L14cAHgUer3G2fgn9vzddvAb6Qr+9HTs4ysw3c/XZ3Pxp4jdSArbRPIiIiIk2hFWYV6HMRKTJ1BnAnMDNwny8BvzWzY0kJWJ8D7ge6zew+UmrXvQX1xwCnm9n9pHSrL6/Adk4CzjSzdtIXhz+7++VV7jPUzG7P9fvmZYcCp5nZ4cCrLE3a+pmZbUTqHZ4G3Ac8AxyZj81PS41z7TOE3nI3LWP1IYurFwGjF8dSRl5sj9V1dcZfsl3BfYkm7URDYnqCicbRRKzhNXy/bA/+kNATHFrf7bHUmaHRYxiqgu4ahv53WKy2K/hxF93GjmDlgmDa27pDJ/LEwldCtdFErI6dPx+qmzj7jVDd8AurDcdPJjwS/558cU/seekNviY6g89L9L0yOpjQNKKGn06H1eln1jWCwYOd0c86i+/HguAb65W22PFeYrEVdgSP9ZzgrkRfh/WyMgQQNH3D1d0nF/z54TJlhclZPy+4/jiwe4n6PYr+viHXvwHsWWIbjin6u+yYVXe/H9i63O1lnOTuPypazyxKbLu7f6bE/d8A3lvjY4rIIIo2WkVEVmZN33AVEREREYK/Mza3pm+4NnBy1kTST/XF9iDNbDCXdBJXt7tPLZe0VdSjvEKK90lERESkGTV9w5XGTc56nTKpVyk8i93y1Fl99SWTtvrJZAr2SURERFqPr9CESc2lqWcVaMbkrBXYxxvM7Jdmdkvep+2qbMsuedtnmNm9eb7aZfapv7ZNREREZDA1dcO1WZOzSHOuXmNmd5vZQYFdHenuO5J6l0+rsi3fAw7JAQc7Awur7NMyyVmXL3wqsDkiIiLSaHp98C710tQN1xo0VHIW8H533wb4GHCImX2gyuOelx9zOjAmzwNbbltuBn6Re33HuXvVCVAKk7M+OXz9auUiIiIiddFKDdemSc5y9xfyv68Al5B6aSsp/m7j5bbF3Y8DvgYMB24zs02qrFtERERaQC82aJd6aaWG6yyaIzlrZO7txcxGkuaefbDK3fbJ9TsBb7n7W+W2JSdnPeDux5NOKtukyj6JiIiINIVWmFWgT7MkZ60OXJJnFugAznX3v1W5z5tmdgswBvhKlW05zMx2I/X6PgxcRZra7e19KjXOVURERJrbyjCrQNM3XJswOespYKtyt5dxkbt/v2g95bblX8qso3ifSloU7IQf2hnLDpw8odqw4WT4K7EO4Zd8RKgO4nGlPdGIyLbY2yWYQMqoaJTkAES+Lg5OUx09htF43Wg0bLQuiUb7xo5NZzBKclhwG2d7rG7j4Wtw37x/hGpfP+6aUF00yrXjnw4O1Y2Y/O5Q3boXXBSqA+i9IvY+iGoPxpBGTy4ZG3z+xsbeKgCMDM4S3xVsg3S3x3ZmVHCnx/bGPt87a5ju/o2K5ysvtXBI7Hh3Bd/PQ4PPc68Fo2aDn4kycJq+4Soi0gqijVYRkXKUnCUrrFJyVg4nKK4/CXh/0eJfufuuA7B5IiIiIk2nKU7OMrNDc4jAOf20vslm9s8Ff081s1/3x7oL/AxYE+jI86dOyXOruplda2aP53/HA7j7IYV1+XJ6f2yImR3VH+sRERGRxuXYoF3qpSkarqSJ9z/u7vv10/omkyJQgRTr6u79lnaVnQF8tMTyI4Fp7r4RqUf2yH5+3FLUcBUREZGm1/AN12aNdc1hAaXOjNgTODNfPxPYq8K+H2NmZ5vZdbmH9ut5uZnZz/L+P2BmfdNlTTKz6Xm/HjSznc3sOGB4Xlayx7owOeuqhU9W2i0RERFpUL2DeKmXhm+4NnGsazmru/uLed9eBFarUr8l8AlgB+BoM1sT+AwwhTQ7wQeBn5nZJFIv8tV5SMJWwAx3PxJYmPe1ZI91YXLWx4ZvsAK7JCIiIjLwWunkrFCsK4BVni5lJ3Kj192vM7PlYl2BxWbWF+v6XP/vyjIudfeFwEIzu57UaN4JOM/de4CXzexG4L2k+WtPyw3qvxQcDxEREWlxK8OsAg3f41qkaWJdK3g5946S/32lSn007rVveMIHgOeBs81s/xXYPhEREZGG1GwN11k0QaxrFZexNOXqy8ClVer3NLNheXqtXUm9qtOBfcys3cxWJTVW7zCzdYFX3P13wB/IxwroWsFhDSIiIiINo9mGCjRLrCtmdh6pobmKmT0H/NDd/0A6MezPZvZV4Jm8PZXcAVwBrAP82N1fMLNLSGNe7yP1wP67u79kZl8GDjezLmAe0Nfjeipwv5ndU21mhjfaYy+J1RbH2sET1pofqlujLfbdYMwr8eSsHg/+aBLsl4+ub5HHUmeiSU7ROoDOYEpMTzBdaFFPV6huST//QFXLPkcfe2HweYl+LHYGj+Hi4ONuMnIt7nzziVDtU/+YGKobfuHtobpoIlbHFqWCBksIfo4AcMUlobK24Gsi2hsTTUAaGlzfmGgUFzCqN/aandcW25towl10C4dZbH3jhi+uXpR1LYjtSzTJMPqJE03Oiprbs7B/V9jPFPnaIJot1jXfvm+Z5a+XeOxKZrr7QUXrcODwfClcfiZLZywoXH4EcEQNjykigyzaaBURWZk1RcNVRERERCrrbf0O1+YY49qoyVl5xoEZJS5bmNn1eZsfMrPvFNxnQnFylpkdWGIdJ7n7MYW9x+9gfxVAICIiIk2vWXpcvwV8zN2f7qf1TSbNeXoupOQs4K5aV5J/9p9SvDzPFvBv7n5PnpLrbjO71t0fZmly1nFmdiRwZP4pv1/iXcs4CvjJAK5fRERE6qxURra8AAAgAElEQVR3JRjj2vA9rs2YnOXuL7r7Pfn6XOARYK18c0MnZ1234PEqz4iIiIhIfTR8w7XZk7PMbDKwNdB3em9DJ2ftPmKjarskIiIiDcgH8VIvzTJUIKLhkrPMbBRpCq/D3sFcsErOEhEREaEJelyLNE1yVm48XgSc4+4XF9yk5CwRERHpd72DeKmXZmu4zqIJkrMsden+AXjE3X9RdLOSs0RERERWQLMNFWiW5Kz358d9IG8rwFHufiUNnpw1P/hVZkF3rB3cFoxyGrtRLKlljedjdQCvd8e+byxoj2bjxMxeMi9U1zVkUqiup4bRRD3B3xjeIJbm9Oy8V0N1vSPXDdUNDX5XriU5K3p0oolm3cE1dgX7HOb0LArVbTzmXdz1WuzkyBdtSKhuwiPlvp8va90LLgrVRROxOjb9QGx9wBK/MFTXabHXzoLgC+L17tj7dOGQWEpZWw2D/iZ1xNKXop+zcyyWYDW/LZiY190eqmtvi/e7TRoZS1F8rGtcqO5Nix3w+cGEu3nE/t/yxpK5obp66Q3ubzNrioZrsyVnufvfKf9zvpKzRGQ50UariMjKrCkariIiIiJSWT3P9h8sTdFwzXOmfhOo+lN3cH2TgR3d/dz891Rgf3cvOzdrmfVMBKaVuGkP0swGc0kncXW7+9R8nwnA+aQQhFnA50lzuX6naB03u/shtWxPhe08yt0VQCAiIiJNrSkarjRZcha8PeXWbu7+WtFNSs4SERGRflfPs/0HS8PPKtCMyVlVNHRy1k3zNc5OREREGlPDN1ybODnLgWvM7G4zKzy5qqGTs3YeqeQsERGRZtRrg3epl2YZKhDRaMlZ789TV60GXGtmj+aAgFopOUtERESEJuhxLdI0yVnu/kL+9xXgElKDE5ScJSIiIgOgFxu0S700W8N1Fs2RnDUy9/ZiZiNJc88+mG9WcpaIiIjICmi2oQLNkpy1OnBJHpLQAZzr7n/LtzV0ctZf7PXQDl46JPZty2eOCNX1zIzNPje7/YVQHcBx7VuE6jqCE9/NaY/t8/PDYyt8xGNJMvMt/ja14LfgOd4Vqttj1bI5G8tY5LHUmfnEHncIseQeiCcqjWuLJaTNCyZsdQSP9dqdY6sXAWtPmsr84PNygcXSey7uib12eq8IHu8rLgmVRdOwAC6859ehuu67rwzVzf5xLAXs1ifWDtVdFUylemFovB/oToaH6rqCH07DumPP8/XBxK5hnbF9GdETS2YDmOCx11hH8DDe4W+F6kYFPz/NY+/nzUbGXjf1onlcG0QTJmc9RTo5qtRtSs4SkeVEG60iIiuzZhsqICIiIiIrqaboca3EzM4ALnev4bep2Ho/BWzq7sdVqCmXnDUB2KZE+ABmNow0RnUo6fhfSBq7O5DJWVOANd099lubiIiINJ16TlM1WBqq4Wpm7XmKp7pz98tIJ1JVqimZnGVmsyrcbTGwu7vPyydM/R34Tp57daBMAaYCariKiIhI01rhoQLl0qrMbAMz+1ueeP8mM9sk159hZnsX3H9e/ndXM7vezM4FHsjL/jUnPz1oZocV3Gf/nGh1n5mdXbA5HzCzW3KiVeFjHG5md+b7/Khgux81s9/n9Z9jZh80s5tzOtV2ue4AMzsxX1/dzC7Jj3ufme2Yl/8l7+dDRSEDZXkyL//ZmS9lx1Ob2SwzO97M7siXDfPydc1sWt63aWa2Tl7+ubxf9+UUrSHAsaRZCGZYTtkSERGR1tI7iJd6eac9rhsB+7r7183sz6SJ+w8EDnb3x81se+B/KX1yVKHtgM3d/Wkz2zavY3vSfKW35wn2lwD/QZrY/zUzm1Bw/0mkSfk3IfWSXmhmH87bt11ez2Vm9gHSmfwbks7mP4g0O8E/5/t/ipSWVRzD+mvgRnf/tJm1A6Py8q+4+xuW4mXvNLOLci9sRXkdd+ftOMndb69ylznuvl2el/WXwCeBE4Gz3P1MM/tK3sa9gKOBj7j782Y2zt2XmNnRwFR3/3aZ7TkoHws2G7cZa49q7LMmRUREZOX0Thuuy6VVkWJVL7Cl6VSROWjucPen8/WdgEvc01xBZnYxsDOpV/LCvnGj+ez/Pn9x917gYTNbPS/7cL70TXU1itSQfSZvd1/v7kPANHd3M3sg70Ox3clTS+WhDH3zcBxqZp/O19fO66/acM3rmGJm40jTZm3u7g9WuMt5Bf/2RdTuQIp+BTgb+J98/WbgjPxF4uJq25K351TSlFl8bO2PrQyzaYiIiLScleF/4O+04VqcJLU6MLvMeM23U68stWqHFNxWOKFluaHFRvnnZHFRXd+/P3X33y6zErPJRfW9BX/3EjwmOZzgg8AO7r7AzG5g2SSvqtx9dr7fR1kaUFCytMz15Wrc/eDc0/0JYEY+MUtERESk6fX3dFhzgKfN7HOQGqhm1jef6Sxg23x9T9LYzlKmA3uZ2QhLqVOfBm4inb3/+XwmP0VDBUq5GviKmY3K9WuZ2WortltMA76Z19NuZmOAscCbudG6CfC+yIrMbNXc00oeYvBB4NEqd9un4N9b8/VbgC/k6/uRTvLCzDZw99vd/WjgNVJPcKWkMBEREWkBvTZ4l3oZiFkF9gNONrP/JDVO/0RKePodcKmZ3UFqCJaMDXL3eyxNcXVHXvR7d78XwMz+G7jRzHpIQwAOKLcR7n6Nmb0HuDUPW5gHfJHUM1yr7wCnWkq76iE1Yv8GHGwpYesx4LbguiYBZ+Zxrm3An9398ir3GWpmt+f6ffOyQ4HTzOxw4FXSuGCAn5nZRqQe52mkY/8McKSlxLGfuvv55R6oYIhHRW3B1KCefv7hIvq4AMN7Y489OjiRxdjgO3VOW+xt1RFMfOqs4fvlsGCtW+zYzPUlobqu4FD9lJ1RXU9w+wDag+vsDr4Wo0c7mlLWEzw2w6yDN3oWhGpHtAcTser0/oummUE8Eatj24+H6sbu91iobtMTngzVXbtkVPUi4klqAGM8dnyGBNc502KpVJ3R5y/4LohuXy2PPT74f+ih7bFtbA/uS3RPou9nGTgr3HB191mUSasi/fRdXP8yy/ZKfj8vv4GcWlVQ+wvgFyXWsVwylLsfUPT3qILrvwJ+VWLzC7f7gILrs/puc/czSHGwfdu+XJoW8LESy4qTvopvux/YutztZZzk7j8qWs8sSpz05u6fKV4GvAG8t8bHFJFBFG20ioiUszI0q5WcJSIiIiJNoaECCFaE1TE5q8J9ZwEfAi4ocfMepBkY5pKGHXS7+1QzuwRYr6j2iEq9tzVsz2RgR3c/952uS0RERBrTytDj2lANV2uy5Kwq3iyXhpXHke5WGAnr7p8uVdtPJpPmqlXDVURERJqWkrMGOTlrBY7zDWb2y7x/DxZs34T8+Peb2W1mtmVevoulhKwZZnavmY0GjgN2zsu+OxDbKSIiIvXlNniXelFyVh2Ss0hzrl5jZg78NgcAVDLS3XfM238a6QSyHwH3uvteZrY7cBYwBfgecIi735ynAlsEHAl8z90/WWrlVpicNX4z1hm1TmAXRERERAaXkrPqkJxFany/kOeVvdbMHnX36RXqz8uPPd3MxuR5YHcifVHA3a8zs4lmNpaUnPULMzsHuNjdn6s2xVVhctbH1/n4yhC8ISIi0nI0xrU6JWetQHKWu7+Q/30ln5S1HSl4oexdSvxd6ji5ux9nZlcAHwduM7MPRrZJREREpNEpOSumP5OzRuZxp+T9+zCV414hJ2eZ2U7AW+7+Fuk47ZeX7wq85u5zLCVnPeDuxwN3kYZPKDlLRESkxfUO4qVelJwV05/JWasDl+Rt6gDOdfe/VbnPm2Z2CzAG+Epedgxwen78BcCX8/LDzGy3vJ0PA1eRXmPdZnYfcIa7n1DugaKJKeEEq2BZLPcFhreV+76zvAm9XaG6VUbFJn4fOXZx9SLAnp8Yqnt4eGyvh9fw/XK8x9a5WvCt39XWzyNHgq+H0TV8NEUTeaIpbgst9pE8OviqnR/8yFm1YyjP9MwL1UbTgKLv5/ZwYl7MghpeNrN/fFGoLpqI1fm52Pmn68z5cajOTi75v6rl1JLqF62cGPy/VUdb7LU4JPgMRhP4xgU/bwDGBFs6a3bHdnp8R2QUIowI/98lZkL7EB7teat6oQwYJWcNfnLWU8BW5W4v4yJ3/37Ret4otU3u/i9l1rFHjY8pIoMo2mgVkfpp9EbrynCSipKzRERERKQpNFQAQSvJY3Gnlbhpj1JTZpnZScD7ixb/yt13HYDNExERkRbTW8f5VQdL0/S4WlGAQT+u91NmduQK3neWma1S6rbcOL0HWBPocPcp+fJ6Dg+4NgceXGtm4939kIKavsvp72DXirf1qP5al4iIiEg91KXhmifxbwjufpm7HzdAqz+DEuN9SYEA09x9I1Kv7Ao1nGukhquIiIg0taoNV1O06wpHu+ZQgTdK3LQnS08yO5Plk7oKj/8xZna2mV2Xt/vrebmZ2c/yvj1gZn1TZk0ys+mW4l0fNLOdzew4YHhedk6JxzjIzO4ys7tmzXsmunsiIiLSQDQd1lKKdl2xaNdyVnf3FwHc/cXA/LJbkmZkGAncaylgYAdSxOtWwCp5u6bnfbza3f8778MId7/JzL5dJhhimeSsPdf55MpwUqKIiIg0oWjDVdGuKxbt2l8udfeFwEIzu57USN8JOC9v58u50f9eUgP9NDPrJB2vGWXXKiIiIi1jZYh8jY5xLY52nUCOdi24vCffXq9o177t2NDd/1Civj+iXbciNZBD0a4VvGxmk/L6JwGvVKmPRr72DU/4APA8cLaZ7f8Ot1VERESkZmb2UTN7zMyeKHUifB4y+nAe6jnNzNatts4VPTlL0a7vzGUsTbr6MnBplfo9zWxYPia7knpVpwP75O1cldRYvSM/6a+4+++APwDb5HV05V5YERERaUE+iJdq8nDFk0hhTZsC+5rZpkVl9wJT3X1L4ELgf6qt953M46po1yrM7DxSQ3MVM3sO+GHuDT4O+HN+nGdI43AruQO4AlgH+LG7v2Bml5DGud5Heg39u7u/ZGZfBg43sy7SsejrcT0VuN/M7nH3/co90ELvDu1bl8cO7/zeJaG6dot9h9qys+TsYyWN71wUqltj81hi0dAtV69eBEzsjh3DP54XKmNhDVGS63rsLb3NktixmRpc31+Hh8roDua6TKjho2licOLCjRfHnpeXglGSqwajKbvC3xfH82xn7H1wtb8ZqmsPvnZ6gyPblwTf9693x1PAbn1i7VDdpic8GaqLRrl2fvUHobqOk79fvYh4pDDAaxY7jnM7Ys/fZ7rGherubAt+HoeqoLeGfV4cjBUeHfx/0KjgVk4IxtKu3R3bvve0xSK9BUjDGp/IiaGY2Z9IHZoP9xW4+/UF9beR2m8VVf2/g6JdgRWIds2371tm+evUFsE6092Xmc3A3R04PF8Kly937PLyI4AjanhMERlE0UariEg5gxlAkGdZKmybnJpP9u6zFvBswd/PkU7IL+erwFXVHlfJWSIiIiJSk8IZicoo1Ywu2U1vZl8EpgK7VHvcpmm45mEFl7v7hf283k8Bm65ICIGZzQI+BFxQ4uYvkabXWoN0MtipuWe4b9zu+aSZDWYBnydNzfWdonXc7O6H1LpdZbb1KHf/SX+sS0RERBpPg80q8BxpJqY+7wJeKC4ysw+SpkHdxd0XF99erC4NVzNrz9M41Z27X0Y6WWpFvVlqftQ8W8C/5bG8o4G7zexad3+YpclZx+Wz7I7MP+X3W8RrCUcBariKiIjIYLgT2MjM1iPNdPQF0lzzbzOzrYHfAh9192ozLAFKzhqw5Cx3f9Hd78nX5wKPkMZ7QAMnZz0379nim0VERKQJNNKsAu7eDXybNPvTI8Cf3f0hMzs2/9oN8DPS/PsX5DZK1Y5EJWcta0CSs8xsMrA1cHte1LDJWR9e+6NKzhIREZF3zN2vBK4sWnZ0wfUP1rpOJWctq9+TsyzNL3sRcJi7z4ncpwQlZ4mIiEhFtUxR1qyiDdfi5KzVyclZJWrrlZz122VWkno5+zs5a4GZ3UAwOSs3Hi8CznH3iwtuetnMJuXe1n5Pzso9zp8gJWf9zN3PimyviIiISCNTctay+i05Kzfa/wA8kuerLaTkLBEREelXvYN4qRclZy2rP5Oz3k+aEusBM+v7uf6oPN6jYZOz1mkfVe6mZYwIppZEX9xdwcpZPfFEnv9pi8U5jbovlog1+r7YPo/3IdWLgA91hcpor+GnnxeC7+jzh8X2JZoGFH3+hgS/Ky+o4WNxbltsGx8fHqt73WOvsfGdsee5M9w/0Bs+jusTe5+ODr5Px3psG2OZYrBwSDxd6CqrOvsNANcuie2znVzyfznLiSZi/b+7fhqq657+p1AdwKs/mRaqu/TlSaG6azpir9lNfWSobrWe2Cz2Y6KRa0BXcGL86cNi76vXfGGobpHFPhSf6ow1Gd7ojb1eAQ4OV0otLAUwSaMys2OAeUWJZQPma5P3Dr0gmqHhulq04Rr8YIs2AsZHIwYHpOEa+7/D022xB69XwzX6+oJatjHacI39j2m89W/DNXoMATqCUa793nANvhQX1pDe82Sw4Rrd5+hDR9fXDA3XW9qCDVfq2XCNrXNWR/CLKLGGa/TzfVGwr6uWhuulz1w+iDlWybHr7jdojbqj/3HOoO8frPhQARERERGRQdU0yVkRZnYAcI27v5D/ngVM7ZuhIHj/qe7+7RoecyJpSESxPcpNmZXnkO2LSTPgGGAcA5uctRcwMwcgiIiISItpsOSsAdFSDVfSWNgHKREpNlBy47Tk/KgVPEhqIHfnWQXuA9Z094FMztoLuBxQw1VERESaUkMPFbCl6VdnWkrFujDPQnC0paSsB83s1Dyrwd7AVOCcnL7QN8DxX8zsnpwu1ZfuNcFSGtb9ZnabmW1Z4rHXNbNpuWaama2Tl2+Q73NnTn/oSwY728z2LLj/OQXJEMtw9wU5UQLS1Fplx6SUOwb5tj3M7N68b6eZ2dC8/DgzezjX/9xSAtingJ/lY7NB0WO8nZz16NynAs+MiIiIyOBr6IZrtjFwqrtvSZqG61vAie7+XnffHBgOfNLdLwTuAvZz9yl5wn6A19x9G+Bk4Ht52Y+Ae/M6jwJKzXN6InBWrjmHlKoF8CvgV+7+Xpbt2f09KQkMMxtLCmhYJi2ikJltbykU4QFSAll3udpSx8DMhgFnAPu4+xak3vNv5unDPg1sluv/y91vIU3BdXg+Nk8WrtzdT3X3qe4+dZPR61fYDBEREWlUvTZ4l3pphobrs+5+c77+R1Ji1G5mdrulBKzdgc0q3L9v4v++xC/yOs4GcPfrgIm5sVloB+DcfP3sfJ++5Rfk63234+43AhvmOWT3BS6q1Bh199vdfTNS2tX3c0O0nFLHYGNSMtjMvPxM0lyuc4BFwO/N7DPAggrrFREREWkazdBwLZUa9b/A3rmn8XdUTrLqm7uih6Vjekt9V6g2hURkiomzSfPbHgiExqu6+yOkuW43r+GxKyVndZMiYS8ijWv9W2Q7REREpLn14oN2qZdmaLiuY2Y75Ov7An/P11/LaVl7F9TOBUYH1jmd1MDsi3R9zd3nFNXcAnwhX9+v4HFvAz6br3+h6D5nAIcBuPtD5R7czNYzS5PL5aSrjUmJY+WUOgaPApPNbMO8/Euk0IZRwNgcdHAYS08cix4bERERkYbUDLMKPAJ82cx+CzxOGqs6njQ2dBYp/rTPGcApZraQ9JN+OccAp+c0rAUsjV8tdChwmpkdDrxKHr9Kagz+0cz+jZRm9VbfHdz9ZTN7BPhLlX3aCTgyp1v1At+qMmXXcsfA3ReZ2YHABbkRfCdwCjCBlFw2jNQr+928jj8BvzOzQ0m91U8u9yhAe3BS7uHB7zydwfX1BCdKfyU4mTRAR3DC66jo2qJ10WCBiT3xELie4Fv65SGx5+8tKg29XioaLDA2uH2jPP7cRY/OHAuGJFjstRgNFoi+BzppZ0Fwb6KT548IHsexwYMYnXA+GGYGwAtDY8cxus9t4c+c2EZGgwU6PlDcj1HeKi/GJr6Z8uOXQnV3BZPwRgQHJo7riR2bSb4kVFeLBW2xfLZX2mMJ5iOC79PoJ06jTze1MkRKNUPDtdfdi5PT/jNfluHuF5F+Iu8zueC2u4Bd8/U3gD0p4u5nkBq/uPss0vjZYs8D73N3N7MvkE4IAyCf7b8RcF6lHXL3s8ljbINKHQPcfRqwddHiF0lDBYprbwY2reExRWQQRRutIiIrs2ZouDaabYETzcyA2cBXAMzsg8BpwC/c/a0K9xcRERHpd43eI9wfGrrhmns9K520tIzBSM5y95uArUos/z9gnaL1fQQ4vqj0adLP948Aj+VltwH/QfkErvAxKCeP5V2Sp8YSERERaToN3XBdAQcwyMlZlbj71cDVxcvNbDLwpLsXJ27VmsBVi12BeaSTzkRERKTF1PNs/8HS0LMKtGpy1goch3lm9v/yfkwzs1Xz8il5W+43s0vMbHxefmhBctafckP5YOC7+djs3B/bJSIiIjKYGrrhmrVkchawXo5rvTHQkBwJ3JP340bgh3n5WcAReRsfKFh+JLB1Xn5wHnJxCnBCPjY3Fa68MPL1EUW+ioiINCUfxEu9NEPDtRWTs14E1nH3rYF/Bc41szEV9qEXOD9f/yOwU97ecflxYWlyFsD9pJ7nL0L1+YwKI1/fo8hXERERaVDN0HBtueQsd1/s7q/n63cDTwLvDqw/ui2fAE4izYBwd1/YgYiIiLSu3kG81EszNFxbMTlrVbM0y7mZrU+a+7XSb/RtLN3Pfwb+nqfcerNgmEFfclYbsLa7Xw/8OzAOGIWSs0RERKTJNUNPXCsmZ30AONbMukk9wQfnUIRy5gObmdnd+fH2ycu/TNrfEaSG74FAe96+saSe5RPcfbaZ/RW4MJ9A9i/F41z7RNOAhkaTkoJJLUOCA2b+0RZ/yc7ujaW6dFhsXxYEO65nB9c3qj2WEDO+hnnpV+uJJV2N8FjSzozeuaG6TdqLR9qUNjyY5BRNfALoCpbODo7K6vVYXVcwiasrVJW8GUwimmwjQnXDgsdxZLD7ZFRvrHBSx8LqRdmdDK9eBIzx/k1Aes1ib6xXf1JqlsLlRdOwADr3+ddQ3TazjwnV9Zw6L1Q3NPg5OzT4HhjVGU/OGjN6Uaiu+/XYZ8lzw2Ofx9HPnG6L7fNCr+UdPfhWhlkFmqHh2orJWcXbWZW7/wD4QdGyGcD7SpTvVLzA3WcCy82eICKNIdpoFRFZmTVDw7XRKDlLREREGk7r97c2eMO1VHLWYKRjVdmmUHKWmU0Ersvb/wappxZSctZ/kXp2h5OmzPpO7sG9HSj+/fhL7j5qRba1YFsmAzu6+7lVSkVEREQaVkM3XMs4gAZKx6pgEXAIqeG6eWFD2czuAA4ineh1JfBR4Cp3336AtmUy6aQuNVxFRERaVD3P9h8sdZ9VoFXTsdx9vrv/ndSALXzMScAYd7/V3Z0UIrBXheNzg5n90sxuycdiu0r7Z2a75GMzIwccjAaOA3bOy74bemJEREREGkzdG65Zq6ZjlbIW8FzB38/lZZWMdPcdScfltLys3P59DzjE3acAOwMLSUlaN+VjdkLxyguTsx6a+2SNuyMiIiKNwAfxv3pplIZrK6ZjlbMi4Qfn5cefDowxs3GU37+bgV+Y2aGkZK2akrM2G71BDbsiIiIiMngapeHaculYFTwHvKvg73dRfbxuqeNTcv/c/Tjga6Re6tv6hk6IiIiINLtGabi2XDpWOe7+IjDXzN6Xp9TaH7i0yt32ATCznYC38nRbJffPzDZw9wfc/XjSsIpNUGqWiIhIy1sZIl8bZVaBVkzH6puqawwwxMz2Aj7s7g8D32TpdFhX5Uslb5rZLXldX6myf4eZ2W6k3ueH87p7gW4zuw84o9Q41z5dwZfj4mDd/GCKVDTdZBNiiUEAV/e8GKobFkzEejW4zz3B1JmxnauF6oZ2xt+mm/XEEoumLI49L5dZLJFnbvvIUF27xZ7nJcHXDcRfO4v6+aM2ur75NYwmeqY7NgX05M74+yAimj42ry2YMtfdGX/sjtj7ZUgwE2tiMGlubkdsfZe+PClUN+XHL8UemHgi1pBvxOo2PPUH1YuABcG31csdscLF3fGZGtedHUvrm7za7FDd6rNjn5/RV2JPW2z7FvfWOjpQ+lujNFxbLh0rr39ymeV3UTQ/bRUXufv3i9ZRbv/+pcw69qjh8URkkEUbrSIi5SjydeWldCwRERGRBlP3hmupdKxKBiM5K5qOldf3EeD4otKnSSeXHQcMAZYAh+ez/zGzbSlKziJNzfX+ovX8yt13jexXJUrOEhERaX2t39/aAA3XFXAADZSc5e5XA1cXLzezrYF/cvcXzGzzXNM3X+vJFCVnufshA7iZk1FyloiIiDS5us8q0MLJWff29QoDDwHDzGyokrNERERkIPTig3apl7o3XLNWT876bN6WxTR4ctYjc58K7I6IiIjI4GuUhmvLJmeZ2WakMbDf6FtUoqxhkrPeM3r9auUiIiLSgFaGeVwbpeHakslZZvYu4BJgf3d/Mi9WcpaIiIjICmiUhmvLJWflXtErgO8X9CYrOUtEREQGhA/if/XSKLMKtGJy1reBDYEfmFlfrMmH3f0VGjg564ngJOjRgdmLgqlBY9oqdagvtXfPxFAdwHbBZKqxHktMGRtMaFp3SexHlDPbi79HlfZcezyF6MX2WKLSbosXVy8Crt48dmy+MbMrVPeyx5K9ajHBYq+d3bpjx+bZ4PEe3Rt7PUQ/ZHdsH0XsKMLNvf07jXR3e+z93O2xWKo5Fnt9AQzrjh2hmRZ7LXYEE5A+0zUuVHdNRyw97q5hsccF6Dk1ts5oItZ/3P3jUN3e2xwaqutpi70eFoZfsTC/d0mobqe5saSyV9tjnyWdwcS1TbK1PugAACAASURBVHpjnyN7tk9ip+4FoVoZGI3ScG255Cx3/y/gv8rcpuQsEVlGvAkgIvXS6I3Weo49HSyN0nBtNErOEhEREWkwdW+41pqcNRj6IznL3T9dy2Oa2UkMUHKWiIiItL56jj0dLHVvuNZqMCJfa1EhOWsyaezuY3nRbX3DIUpFvg5kcpYiX0VERKQVNMqsArU4AFiz3hsR9GSe9H9K0RjevsjXjfLlowO8HZNJka8iIiLSojSP6yBo1cjXCvvbcJGvhclZz89/rvhmERERkYZQ94Zr1qqRr+vlxuONZrZzXtZwka+FyVlrjXxX8c0iIiLSBHrdB+1SL43ScG3FyNcXgXXcfWvgX4FzzWwMDRj5KiIiItIMGqXh2nKRr+6+2N1fz9fvBp4E3o0iX0VERERWSKM0XFsx8nVVsxT1Ymbrk07CekqRryIiIjIQfBAv9dIo02G1YuTrB4Bjzayb1BN8cE67ggaOfJ3aEYtUHemx7zzdsbQ95hKLkrzR46klr/bEIgFHtsUiPocFIycfCEY/rsbw6kXU9u3ypWD+0pmxdEOefmRoqO7A3jGxFQZ1BV83AHOCSZvPBmNN37DY6Jp5Fntmemr4iJ8dfP629+JRT6WtERwoNKo3to3RPZnfFn8Cr+/o3+jOIcF3zJ1tsQjSTX1kqG5EMAIYYGjwQC4IvvmjUa4X3vPr6kVA9w2xmRPnnnxtqA7guZmxiN1HlsTe0I8NiX2IdQaP9ettsfPkf9UZP5/+feFKqUWjNFxbMfK1eDsLb1Pkq4gsI9poFREpp1cBBCstRb6KiIiINJi6N1zfaeSrmR1Gmkor/hty5fUd5e4/YQAjX/NcsD8m/4RPGpqwLwMY+VqcOCYiIiKtRZGvzeEw0hRayzVczazd3WODJ5c6CvhJtNjdrzazaTVOOzUNuCwPRdgS+LO7D/TZ/wcAD1J9BgMRERGRhtQoswqEmNlIM7vCzO7LKVI/JMW/Xm9m1+eaeTnt6nZgBzObZWar5NummtkN+fooMzs9p23db2afNbPjgOE5YeocS6leDxY8/vfM7Jh8/QYz+4mZ3Qh8J88icFFO27rTzIp7T9/m7vNyahbASCqc82Bmu5rZdDO7xMweNrNTzNJZIWa2b97+B83s+Lys3czOyMseMLPvWvnEsb7HeDs5a8bcJ2p4RkRERKRRrAyRr83W4/pR4AV3/wS8nV51ILCbu7+Wa0YCD7r70bmm3Lp+QJpaaotcN97dLzKzb+fUKcxscpXtGefuu+Tac4ET3P3vlqJjrwbeU+6OZvZp4KfAasAnqjzOdsCmwD+AvwGfybMMHE8aj/smcI2Z7QU8C6yVE8cws3HuPtvMvg18L58Ytgx3PxU4FeCIyfu2/u8MIiIi0pSaqseVND3WB83seDPbucwJUj2UOZu/yAeBk/r+cPc3V2B7zi9a34lmNgO4jJRwVXbuVHe/JA8P2Is03rWSO9z9qTzs4TxSatZ7gRvc/dU8TOEc0hRcTwHrm9lvzOyjpAhdERERaXG9+KBd6qWpelzdfaaZbQt8HPipmV1TomxR0bjWbpY20AsnfjOqT0tYeN/i+wPML7jeBuzg7rFJCTN3n25mG5jZKgW9xsuVlfi7ZFeyu79pZlsBHwEOAT7P0rlfRURERJpWU/W4mtmawAJ3/yPwc2AbqqdCzSL9nA5L07AArgG+XbDu8flql5n1zUj/MrCamU00s6HAJys8TvH6plTYjw3zVFuY2TbAEOD1CuvezszWy2Nb9yElfN0O7GJmq+SErn2BG/N43rY8j+wPSMcIlJ4lIiLS0nwQ/6uXpupxBbYAfmZmvUAXKYFqB+AqM3vR3XcrcZ8fAX8ws6NIjb0+/wWclE++6sl1F5PGet5vZve4+35mdmy+39PAoxW27dC8vvtJx3U6UByq0OezwP5m1gUsBPYpOFmrlFuB4/L+TwcucfdeM/s+cD2p9/VKd78097ae3ncCF9AXXHAGBYljtfYMFxsSTLEZFnxt94RTiOJDwtvLj29exjBiSS2jLfZ2GR18Wy0K7kt78Fin2pi2GtbZnyb1xCbZH2LxyUAWdseO97OdsbrujthRHBNMj4u+YlengzeC+x3tcYimBo3tjU2KMiy4fYu6o69EGNYZ25vO4F4PC9ZFt3C1nth7ZVxP/H/kQyt+3C/1ckfwc7Ettr5oIlbHrv8cqhvdFu/72vCK60N1XVfFnpkXe0eE6qL/D+oIpr21N1d/X0tqqoaru19NOump0F3AbwpqRhXd5ybg3SXWNY8SMbDufgRwRMHfvwaWy8krnl81/8y/T2A3cPfjWX7u10oWuPty63b3c4Fzi5bdx9Je1sLlZZO8RKT+oo1WEZFy6nm2/2DRVwcRERERaQpN1eNabABTs/qFmR0IfKdo8dPA7vlfgIvd/Vgz2wI4u6h2sbtvD9zwDrdjL2Cmuz/8TtYjIiIijavyqMPW0NQNV+qcmpUfp6Ncapa7nw6cXlS/K9Dp7p8sqn0AKHtC1zu0F3A5oIariIiINK2mGSrQKqlZNe7zZDN71MzOzNt5oZmNyLftYWb35n04Lc96gJkdlxO27jezn5vZjsCnSCe1zTCzDUo8jpKzREREmpzmcW0sLZOaRWpU3we8QEqzeqhC7cbAV939ZjM7DfiWmZ1ImiVgjzy37VnAN/O/nwY2cXcvSM26DLjc3S8s9QBKzhIREZFm0DQ9rrROatY9wLruvhVpNoS/VHmcZ9395nz9j6TUrI2Bp919Zl5+Jik1aw6wCPi9mX2GEkMoREREpDX1DuKlXpqm4ZobaduSGrA/NbOjS5TVOzVrSr6s5e5zy+zHnDwVF+5+JdDZN5yhjFpSs7qB7UiN972Av1VYr4iIiEhTaZqGawulZq1RkJq1Hek5qJSatY6Z7ZCv70tKzXoUmGxmG+blXyKlZo0CxuYG8WEsPdlLqVkiIiItTslZjaVVUrP2Jo1H7SalZn2hSmrWI8CXzey3wOPAye6+KE+1dYGZdQB3AqcAE4BLzWwYqVf2u3kdfwJ+Z2aHAnu7+5MVHi8kmsgzKvh7QnswgeXpYBoWwLBo0lWwbi0fEqqb0BvbxlnB6J6hA5By5cEfejostpHDglOwTBwWC2ybtH6pkUDvzKpPjosVdse+463RFZu0JPhyAOD5ztjxfj2YlNQTfL90Bl8P44YvDtW1t8V/SBzREzve0bS+cR47htGTS8b0xuom+ZJQHcCozljt4u5R1YuAhcQS6eaefG2oLpqI1fGBL4TqANo2/0CobuMFPwjVPTw9lpy1Wnfsffp6MDFvZmd9UgdlqaZpuLZQataJwImR2qzX3ZdrBLv7NGDrosUvkoYKFNfeDGxaw2OKyCCLNlpFRFZmTdNwFREREZHy6jlN1WBpijGuZnZY3/yl/bS+o/prXRUe4/tmNt/Mes3s+TyH6kn5to+a2WNm9oSZHZnH0c4ovgBz3X3zftiWKWb28Xe8UyIiIiJ11Cw9rg2dkFXGH4D/I53d/6a7/zyvp500FdeHgOdI41Mv65s/doBMAaYCVw7gY4iIiEgdrQyRrw3X49oqCVnu/oq73wnLjZrfDnjC3Z9y9yWkE6f2rHA8ZuW5a+/Ilw3z8nXNbFrer2k5+AAz+1w+bveZ2XQzGwIcC+yT9zk0FldERESk0TRij2srJWSVshbwbMHfzwHbV7nPHHffzsz2B35JmprrROAsdz/TzL5COolsL+Bo4CPu/nxOzlqS57yd6u7fLrVyMzsIOAjgwxOmMmX0hqXKREREpIHVMxhgsDRcjyutk5BVTqlWdrW+/fMK/u2b03UH4Nx8/WxSohbAzcAZZvZ1IHSasruf6u5T3X2qGq0iIiLSqBqux9XdZ5rZtsDHSQlZ15Qoq3dCVmwyytKeA9Yu+PtdwAtV7uNlri9X4+4Hm9n2wCeAGZXCEERERKR11DMYYLA0XI9rqyRkVXAnsJGZrZfHn36B1HtbyT4F/96ar9+S7wuwHylRCzPbwN1vz8MoXiM1kpWcJSIiIk2v4XpcaZGELDNbgxSQMAboNbPDgE3dfY6ZfZs0PrYdOM3dH6pyTIbmE9HaSLGvfdtympkdDrxKGgcM6dhtROptngbcBzwDHJmHOPzU3c+njK7gt7UlwfCQrmBd9IXYVcMInvZg0k60LprcMyaaFhacb36Yx5Naosc7+jwv6I0l/PT3d/yha8S/U7evHksXWqNrTqhu/BMjQ3WrtMdSpNosdnTW6IWZHnvsF4KvnQXBw/jG29/jK+sKrnDSyPnVi7IJwaSrzn5+/y0OpopF31O1GDN6Uahu3dmxYzM/+D59bmYsPW7DK64P1UXTsADaJqwZqht6wGerFwFrXff3UN2qQ2M/kA5fPDRUt7ijsUeRrgzzuDZcw7WFErJeIg0DKHXbldQ2NdVJ7v6jonXMAnYvse7PlLj/G8B7a3g8ERlk0UariMjKrOEariIiIiJSO83j2iAaOTnLzA4skXp1kpntl+dYvd/MbjGzrQrus0xyVl52SYn1fMTdJxdMA7ai26jkLBEREWl6zdLj2rDJWe5+OnB6ifodgV3c/U0z+xhpXO32pZKzzOwyd/90jftQCyVniYiItLiVYYxrw/W4WuskZ91SMG/sbSwd76rkLBEREZEV0Ig9rq2YnPVV4Kp8vaGTs/aYMJUtR28Q2CURERFpJJrHtT5aKjnLzHYjNVz7ZjFo6OQsNVpFRESkUTVcj2srJWeZ2ZbA74GPufvrebGSs0RERKTf9WpWgcFnLZKclYcSXAx8yd1nFtyk5CwRERGRFdBwPa60SHIWaazpROB/8xjc7vxzfLc1cHLWbJabOKGkJcE0oJ72WF00vWpVYukmAHOWnwSipAnBt8G4YGDKmJ5Y4ezO2Pb1WPxtukZvLGlnNY8lJT3fHpuF7o1gCtELi2LrG/twLO0GYOKoWILV8LVi61vlia5Q3ejhscft6Y31D2zJW9y/eGyodh6xiVReaYu9HhYOiW1jT7Cv47GuWEITQEew+2R8cO6YNbtjhaODnw/Thw0J1S1oi382db8ee54nrzY7VLfT3EmhukeWxF4PXVfF6jZe8INQHcQTsTq2jc3cOKb9ulDdqpPmxuqI1b37pdixrpfW729twIZrCyVnfQ34WpnblJwlIsuINlpFRFZmDTdUQERERESklKZouFpzJmftamZvFSw7uuA+Ss4SERGRftWLD9qlXhpuqEAZzZictStwk7t/smi5krNEREREVkDD9bhaiyRnVaDkLBEREel36nGtj1ZKztrBzO4jzdP6vTx7QEMnZ+04YWs2Hr1+lc0RERERGXwN1+NK6yRn3QOs6+5bkWZE+Ete3tDJWWq0ioiINCd3H7RLvTRcj2urJGe5+5yC61ea2f/m4QxKzhIRERFZAQ3X42qtk5y1huUxDGa2HelYv46Ss0RERGQAaIxrfbRKctbewDfNrBtYCHzBU996QydnRb/JDAtWxvJXoCOYnAUw1GO1T/fGklB62mJJVy+1x94uXcG0sAXB5J43WMKIaHpWWyzlZ6zHnr/FwQk7nu2IHcPX2mOviHtnr8ZqPbHnecQVoTLeDL4YxwXfBLMWxZKSnu0IfsB3OjNtUah0ZPCdtcRiO9MVfP8Fw+N4M5isB3BHydFgyxvaHtuX8R2x52VU8Bi+Vv0HNgAeb4OxFkuke2547P28+uzVQnWvtse28bEhxT8olvZib2z2yZtuHsHE4Jw+a13391BdNBFr2/t/HqrrvvPyUN0/vvO3UN0Xhr7JmUviyXDS/xqu4dpCyVknkk6gKnWbkrNWULTR2krCjdYWEm20tpJoo1UaU7TR2kqijdZW0uiNVl8JQl8bbqiAiIiIiEgpK19XTj8zswOB7xQtvtndD6lxPZcA6xUtPsLdJ7+DzRMREZGVRD3P9h8sde9xNbN5ZZYfnOctxcwOyCdtDeZ2LRMza2ViYt39dHefUnSp2Gg1sz/kgID7zexCMxvl7p8usZ7iIRMrui/jzOxb/bEuERERkQgrEXFfdPtQMzs/3357YG79+jdcy3H3U9z9rPznAaT0rMF0GFA4Qr1kw7USS/GupXzX3bdy9y1JJ06VDAboR+MANVxFRERaWCPNKmBLI+4/BmwK7GtmmxaVfRV40903BE4Ajq+23gFtuJrZv5vZofn6CWZ2Xb6+h5n9saDuv3MP5G1mtnpedkyOX90bmAqckyNLh5vZtmZ2o5ndbWZXm9mkEo99hpmdbGbXm9lTZraLmZ1mZo+Y2RkFdSeb2V1m9pCZ/SgvO5SCmFkrionNNV+0FME6w8x+29dItaI42lLHpW+O1zxd1nAqzDWb9+MUM7vJzGaa2Sfz8mG2NM72XjPbLS/frGC77s8zDBwHbJCX/azEYxyUj8Fdj859qtymiIiIiERFIu73BM7M1y8E9uibSrScge5xnQ7snK9PBUbl+VN3Am7Ky0cCt+WEqenA1wtX4O4XkmYV2C/HtHaTZhjY2923BU4D/rvM448nnXn/XeCvpNb8ZsAWBXOw/oe7TwW2BHYxsy3zLAMvkGJmd3P3I4GF+ef7/czsPaTZBd6ft6mHNJdq3/486O7bu3vZ+T/M7HTgJWATCmZMKGMysAspVOAUMxsGHJKPzxakKbLOzMsPBn6Vt2sqKfDgSODJvP2HF6+8MDlrEyVniYiINKXBTM4q7PTKl4OKNqdUxP1a5WrcvRt4C5hYaR8H+uSsu4FtLcWiLibFoE4lNWYPzTVLgMsL6j9UZZ0bA5sD1+ZGeTvwYpnav7q7m9kDwMvu/gCAmT1EagzOAD6fD3YHMInUnX1/lW3YgxR4cGfehuHAK/m2UBytux+Ye2l/Q2oEn16h/M/u3gs8bmZPkRq7O+X74u6P/v/27j/GsrK+4/jnM7OzLOziUmDBLW7rguIvCNRmtaatpU0TqthoLHSLUTo22JK0SSGKBrSWYFpLaNIWWyU0lV8FQlpFMVIhUWFbupUYWSr+WKBbsaQiCrh0fw27M9/+8Tyze/fumZnv3b1zf837tbnZe8995pznnDvn5jnPPOf52H5SZUqwzZI+bPtlkj4bEY8vcPECAADQkYi4QWVe/LlkIu4zZQ6yqA3XiNhr+3sqk+P/u0qD8FclnSbpO7XY3jhwG9x0ok6W9K2IaPwzfJup+v9My/PZ18tsr5f0AUkbIuL5OoQgM0OzJd0cEVc0vNceRzuniJi2faekyzV/w7X9Qww1f9iKiNvrMIXzJN1r+2JJ/P0fAIAR189EqwaZiPvZMk/ZXiZptcrc83Pqxc1Zm1Qah5tUhgdcImlLS2M1ozWydKukNbbfJEm2J2y/7jDr9hJJOyVtr2Nr3zLHNqWDY2K/LOl82yfVOhxv+2czG3Txitnnkn5T86d1SdIFtsdsnybpVJVjsEl1eILt0yX9jKSttk+VtK0Od7hbZQgEka8AAKCXMhH3d+tAUNT5kr6yUPuwF/O4/qukD0vaHBE7be/RgfGtWTepjO3crXLD0/mSrrO9WmUf/lrSQrGph4iIR2w/XH92m6QHW96+QQfHzLbHxH5E0n22x1Siaf9Q0pOJzVplPOpL6vNHVGJt57NV0gOSTpZ0SUTssf1JlWPyTZVxv5MRMWV7o6R3296rMob26oh4zvaDLtG3/9I0zvVA5XLDCrJXPNko12OSiVjjHUTDrhzLJdmsSiberFUuTjWb8Pm4cjGNx3Zwmv5UMsr1xGQy1erx3D6PdTkydNVM/rp27fSLqXLrkhtf5lzBVctz2z1x98pUuZ/ThB5ekYshfca5yKJlyfPqqOThzpbb2cHwpFXJZLjx5LfOMcko1+MjV25Psn7HdNAPdHTyc8lmcU0kz7+J5Oe3IlnupH356Kw1R+W+79aszUV1Z6Ncl214W6rcugtyzZJX3TSwkzFJGqzkrIhojLi3fbWkr0fE3ZL+QdKttp9Q6Wn9nYXWu+gN14j4slrOv4g4ve39VS3P/1nlrjJFxFUtyz+jg8eNbpH05gW2O9ny/Hsq42Kb3ptUg4j4hA6OmW2Pib1T0p0NP7eqfVnb+zOSfnG+Mg0ejIjL2tazR2WasPb1f1zSxxuWv6vDbQLooWyjFQCGRVPEfUR8tOX5HkkXdLJOkrMAAABGwMwSSM7qe8PV9o6mXkrbl0jaFRG32J6UdF9EtA/qXcx6XSrphojYVV9fGRF/3uE6GmNcVaav+hWVaR+k0nN6ng696vinuXqEO3U49QcAABgkfW+4ziUirm95OSnpUR16N9piulTSP0raVV9fKanTht/5TTMM2L5Q0uV1aMSsLZp7PtpuOJz6AwAADAySs/qQnNXhMbzK9q22v2L7cdvvq8tt+1rbj7qkZ22sy9fa3lTr9ajtX26qf9s2SM4CAGDIRQ//9QvJWX1KzpL0Zy6RrH9l+6h5yqnW7TyVhvBHbf+0pHdKOlvSWZJ+XdK1tQH/Lkn31nqdpTL12EH1b185yVkAAGAYkJzVn+SsK1SmqlquMs3WhyRdPU/5z0fEbkm7bX9VJf/3lyTdUYci/ND2A5I2qMyb9ul6gfC5iNiyQF0AAMAI4OasI0RyVrOImG1oT9m+sdZh3h9peD1XctYm229W6aG91fa1EXHLAusHAAAYeCRn9Tg5q5ZfW/+3pHeo3Hg2n7fbXmH7BEnnqPSqbpK00fa47TUq89o+VOvxTET8vcrEvq9vqD8AABgxS2GMK8lZvU/OksqNZmtUek23qDTm5/OQpC+qxLp+LCL+t0619SaV5K2Q9MGIeNr270q63CU5a4eki1r2Z3/959rQnvk7i/fbngzGmcheGzk3+foZubAiSdJ/LV9o6HBxUjKf5pR9uZ1emUxo+s+Jfaly2SQgSVqRTOQ5fjr3pXPGeC71aUfySyybLjTWwXXtqom9qXJr172QKrf9maNT5Y4/ZWeq3MljuSSgn5e09btrUmXvWJH7nF9InqczyfMva4fyiUpO/s7ms7hy1iXP520TuX3ppH77nPv9nh7LfS6vnsn8oVB6diz35bRsLLc3zy7L/94cPZX7Pl6j3Pny5B9/KVUum4i1/LJrUuV+a/sfpcph8ZCc1ePkrFrm1xYq0+axiPj9tnWEpMvro3X5zZJubtjmQfUHMFiyjVYAmMtSGOM62KG7AAAAQNWzhqvtHXMsv8T2RfX5ZJ3qqWdsX2r7mJbXV3Zx3Y/YnrIdda7VLbbPrXOwXmf7iTol1uttv7e+3/r4u4i4KiL+sgt16fmxBQAAvcMY1x4YhYQs2+NzzCQwKel5SferzAn741r+rZJeWR9vlPSpiHijpBsPo/5Zk+r9sQUAAOiarvS4moSsxqm5IuLhOr623dsl3RLFf0g6rmnf6nbOcUnCusv2t21fX28Ik+0La0/uo7avqcvG6zGZTdS6rOnYtm1jf3LW4zv+u6kaAABgwM1E9OzRL90aKkBCVmdOkfQ/La+fqsvm8gZJ75d0psocuO+sf/a/pu732ZI22H5HfX5KRJwREWdKurH92NYwg/1ak7NeuWp9h7sCAADQG90aKkBCVmea5hqZ7/LloYjYJkm271C5INgr6f6I+FFdfpvKTAsfk3Sq7U+oTKF132HWEQAADJF+jj3tla40XEnI6thTkta1vH6Z5h972kly1vO2z5J0rsrcsr8t6fcOs54AAAADo5uzCpCQlXe3pIvq7AK/IGl7SwxskzfYXl/Htm6U9G+SvqYy5OHEOu72QkkP2D5R0lid+/ZPdCA5q30/AQDACImY6dmjX7o5qwAJWW3qzV8flPTSus57IuJiSfdIequkJ1RmM3jvAqvaLOkvVMa4bpJ0V0TM2L5C0ldVel/viYjP197WG2dv4JI021t8k1qObfs411nb9v0ks2vam+xsnkn+ch87nkt+0fLuT9Le7dPv2JncGndFLjmrE99PJu1ML8+d+hv25Or4uaOT++zctfL08nwiz9iLuXSvk/bmEnme3pFb377v5/blhLW5hK3T1j+r8YnccXxs2/JUuZnknw1fTJ7P/zfd+LVxiOdezB1rSXrdynULF5I0nTxTn1Gujq8ZOyFV7rmZqYULqbPvkd2RS3ubmsmdf9fG6lS5v0n+fo0n+7Qem8jnhU0ty2379Kcb71M+dH3J9LFX3ZTbl2wi1oqr/jZVDounaw1XErIa132dpOsalodKAzhrV0RsbFjP7ZJub1v2iA70srYubz+2AAZIttEKAHPJXqwOM5KzAAAAMBRIzupCcladY7U99epc27fZ3lrnVP307NjZOra1PTnrzIZ1fC0i7o+It3VhP0nOAgBghEVEzx79QnJWF5KzVOaaPWSQWL1p6t315e2SLpb0KZWbw5qSs85uX0cXTYrkLAAAMMRIzlrc5Kx7ajpWSHpIZdoracCSswAAAIYByVk9SM6qx+I9kr5UFw1UcpZbIl+f3kmHLAAAw2hG0bNHv3Sr4dqenLVZB5KzZhuu7clZL19gna3JWVskfUQHeizbfaH2au5PzooyydhscpZUkrO+IelhlUbtaxP71ZqctaW+PrW+10ly1iclbYqI2WNxWMlZdTjCbHLWBtXkrIjYJ2k2OWubanKW7d+Q9MJClWuNfH3pSobBAgCAwURy1sJ1OKLkLNt/KmmNpD9oWUxyFgAA6Kp+3jTVKyRnLWJylu2LVRqQF8bBMRMkZwEAAHSI5KxFTM6SdH0tu9m2JH02Iq7WACdnAeiP6b1jhBAAOCIzS6DH1UuhW3mY2T5H0ge6MZcrAAAYXWuPe23PGnU/+Mm385m/XdT3eVwBAABw5GIJRL7ScO0C23dJWt+2+EMRcW8H6zhT0q1ti6dqMMH9R1ZDAACA4cdQAQAAgBFw8upX96xR98Pt3+3LUIFuzioAAAAALBqGCgAAAIyAfiZa9Qo9rgAAABgK9LgCAACMgKVw3xI9rgAAABgK9LgCAACMgKWQnEWPKwAAAIYCPa4AAAAjgDGuAAAAafOv8AAAANlJREFUwICgxxUAAGAEMI8rAAAAMCDocQUAABgBjHEFAAAABgQNVwAAAAwFhgoAAACMAAIIAAAAgAFBjysAAMAICKbDAgAAAAYDPa4AAAAjgDGuAAAAwICgxxUAAGAEEEAAAAAADAh6XAEAAEYAswoAAAAAA4IeVwAAgBHAGFcAAABgQNDjCgAAMALocQUAAAAGBD2uAAAAI2D0+1vpcQUAAMCQ8FIYDwEAAIDhR48rAAAAhgINVwAAAAwFGq4AAAAYCjRcAQAAMBRouAIAAGAo0HAFAADAUPh/nwPH9rDSkloAAAAASUVORK5CYII=\n",
      "text/plain": [
       "<Figure size 720x576 with 2 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "names_full = [*[names + '_pre' for names in names_before], *[names + '_post' for names in names_after]]\n",
    "terms_full = [*term_nvals_before, *term_nvals_after]\n",
    "\n",
    "plt.figure(figsize = (10,8))\n",
    "sns.heatmap(spearmanr(terms_full, axis=1)[0], square = True, \\\n",
    "            yticklabels=names_full, xticklabels=False, vmax=0.8)\n",
    "plt.title('Correlations between all neighbor-of-neighbor tranformation dataframes')\n",
    "plt.tight_layout()\n",
    "plt.show()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "How are the transformed jaccard indices distributed across all transformations?"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 17,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAABDAAAAHwCAYAAABQRJ8FAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjMsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAAgAElEQVR4nOzdfdxlZX3f+89XJuBD0GEgPg3oYJgYkWOOOgXMIxWFgRjHc6opasOo9Ew1mJiaNoCag0clL2xsibaKJYJAYgRKG52TgjhFiU0LyPgQEdEwDgZGUJSZwVEiFP31j3XduGez9/38sO89n/frtV+z1m9d17quve61r3vP717rWqkqJEmSJEmSRtmjlroDkiRJkiRJUzGBIUmSJEmSRp4JDEmSJEmSNPJMYEiSJEmSpJFnAkOSJEmSJI08ExiSJEmSJGnkmcDQpJJUkiOGbLs6ycZZ7vftSf58br2bWTtJnpbk+0n2m6d9fzDJH7bl45LsmI/9tv39SpKvzdf+pmjr/0pyZzs2z12MNlu7r07yycVqT1oKjqGT7nssxtDlIMl1Sf75IrX1/STPmOM+Lk7yrvnqkzQXjuOT7ttxvM9cjkOS1yT5m/nu07gxgbHEFvNLxXyrqpOq6pKl7sd0VdUdVfXTVfWjycpNd/CoqtdX1Tvno2/9vxyr6r9X1TPnY9/T8B7gje3YfGEhGkiypr3HFROxqvpIVZ2wEO1p3+EYungcQzUd7RzZvtT90PLhOL54HMfn32QJLi0MExgCoPc/lprafGWuR8TTgVuWuhPScuYYOjNjNoYuCs8xaWH5GZsZx3EtFRMYIyLJQUn+Ksl3kuxqy4f2bF+V5MNJ7mrbP9azbUOSLyb5XpKvJ1nf4q9NcmuSPUm2J/kXPXWOS7IjyRlJvgV8uMX/dZK7Wzuvm6LPD2fMJzK1Sd7T+nd7kpN6yh6e5K9bX7YAh/Tt69gk/zPJ7iR/m+S4nve9I8lvtPWfTrItyalD+jS0nf6rAFqft7eyt6e7peFZwAeBF7RL7Ha3shcnOT/JVUl+APzjDLjENclbknw3yTeSvHrQseo9Xm35My38t63Nf9p/+VmSZ7V97E5yS5KX9my7OMn7k/zX9l5uTPKzk/3sWr0Dknwf2K+1/fUW3yuT3Ps+e86b309yTztXXttT9jFJ/m2Sv09yXzsnHgNMvMfd7T2+IH3Z/SS/mOSmVu+mJL/Yd/zemeR/tPf4ySR7nUPat8Ux1DF0kcfQvmOyMckdre9v7dn+qCRntvPq3iRXJFnVtj3iMuP2vl/Ult+e5Mokf57ke8Br0o3bf9LOr7va8gE99Qeey83TM2QMHXb+9Bz7d7Xt30/y/yc5OMlHWjs3JVnTU/7h3yEZ/juBJP8pybda/DNJnj2dY67xFcdxx/GlHcc3tZ/53Ul+v2f70Umub+3eneQ/JNl/WL976g37rvyEJJe28/zvk7wtycD/k2fy78aHpxs79yT5b+39T9wq9F+T/E7fvr6U5GXTOSYjr6p8LeELuA7458DBwD8BHgscCPwn4GM95f4rcDlwEPBTwK+1+NHAfcCL6RJSq4Gfb9t+HfhZIMCvAfcDz2vbjgMeAt4NHAA8BlgPfBs4Cngc8BdAAUdM1ve2/BrgfwH/D91/iN8A3AWkbb8e+HetrV8F9gB/3ratBu4FTm7v4cVt/Wfa9hOAbwFPBP4UuHKS4zlZO2va+1nR3t/3gGe2bU8Bnt3zXv6mb78Xt+P8S62Pj26xd/Udz4m2fw34Qc/+Hz5Wg9roP85tfzva8k8B24C3APsDL2zv65k9fdtJdy6sAD4CXNazr78CzpzkmPW33b8+6H2+o/XrZLrz6qC2/f3tva5u58EvtuPx8LEfdAyAVcAu4Lfae3hlWz+45/h9Hfg5unP1OuDcpf78+lr6F46h4BhK/3FmkcbQnmPyp+0c+AXgAeBZbfvvATcAh7b39R+Bj/b3sWd/3wBe1JbfTndOvKwds8fQjb03tJ/lzwD/E3jnNM7l6xgyhjL1+XNdO34/CzwB+Arwd8CL2vG6FPjwoJ8FQ34ntG2vo/usHgD8CfDFvvPlXUs9vvhanBeO49P5HDqOL/w4/tF2TP4P4Dv8ZCx+PnBs2+8a4Fbg96bo92TflS8FPk53jq+hG09P6z8mTP3d+Hq628D3B365/Swnfs6/CdzY06dfoDuf9l/qz/u8jBlL3YF9/dX/Ye6J/5/Arrb8FODHEyd+X7n/CJw3zbY+BrypLR8HPAg8umf7RfT8p5Dui85MBu1tPdse2+o+GXha+yA/rmf7X/R8yM4A/qxv39cAG3vW/z1wM90vgoOH9GeqdiYGqIlBezfdL8rH9O3n4cGjJ3YxcOmAWP+g3dv2FcAfDvo597fRf5zZe9D+FbpfWo/q2f5R4O09/fhQz7aTga/O4Bzsb7t/vf99/gN7JyLuoRvYH9W2/cKANh4+9oOOAd3g/Nm+OtcDr+k5fm/r2fbbwCcW4zPqa7Rf/Z+tnrhjqGPogo+hPcfk0J7YZ4FT2vKtwPE9255C9x+cFUwvgfGZvu1fB07uWT8R+MZU5zKTjKFTnT+t7lt7tv1b4Oqe9d9g7+RDAUcwye+EAf1b2eo9of/c8DX+r/7Pd0/ccdxxfDHH8Z/vif0b4MIh5X8P+Msp+j3su/J+dEnuI3u2/Qvguv5jwiTfjXt+zo/t2fbnPT/nA+gSOmvb+nuADyzUZ3ixX95CMiKSPDbJf2yXEn2P7pL7lenuLzsM2FlVuwZUPYzuC82gfZ6U5IYkO9vlXyez9+Vq36mqH/asPxW4s2f972f4Nr41sVBV97fFn2773VVVPxiy76cDr2iXZu1uff1lul9WEy6gy4Z/uKruHdL+VO08rJX5p8DrgbvbpVY/P8X7u3OK7YPafuoUdabjqcCdVfXjvn2v7ln/Vs/y/XTHfaHcW1UPDWjvELps/MDzcQpP5ZE/q6V8j1pmHEMdQyexGGPosPpPB/6y5+dyK/Aj4EnT3G//MesfK3uP0dBzeRp9nOr8+XbP8j8MWB90vIb+TkiyX5Jz013q/z26xM1EHe2jHMcdxyexGON4/8/9qQBJfi7d7UzfauflHzH1WDXZd+X9eeQ43vs+Jkz23fipdJ+H+3u2Pdz/qnqALnn0z9rtKa8E/myKPi8bJjBGx+8DzwSOqarH013yBd0lb3cCq5KsHFDvTrpL4/aS7p7Y/0yXcXtSVa0Ermr7m1B91e6m+yUw4WmzeB+D3A0clORxQ/Z9J13WeWXP63FVdW57L/vRZdcvBd6Q4TP9TtXOXqrqmqp6Md0vh6/SXZIHjzwuTBGfMKjtu9ryD+gy8ROePMW+et0FHNZ3f9zTgG/OYB8zcT+z6+t3gR8y4Hxk6mN3F90v714L+R41fhxDHUOHWewxtNedwEl9P5tHV9U36XtP7ef0M331+49Z/1jZe4wGnsvT7OPQ82cOJvud8CpgA91tKE+g+wso7P350r7HcdxxfJjFGMf7f+4T/T6f7tisbeflW5j9WPVduqvw+sfxQe9jsu/Gd9N9HnqP52F9ZS8BXg0cD9xfVdfPss8jxwTG6DiQ7q8Yu9NN8HX2xIaquhu4GvhAugmOfirJxKB+IfDaJMenmyxsdcue7k93+dB3gIfSTSI01SMrr6CbJOzI9oE4e4ry01JVfw9sBf6/JPsn+WW6S04n/DnwG0lObH+VeXS6iXsmJm56S/v3dXS/hC7NgJmPp9HOw5I8KclL2yD7APB9ur+KQfeXpUPTJuiZoYm2fwV4Cd39mwBfBP7v9teFI4DT+up9G3jGkH3eSDfo/0H72R/X3tdls+jfdHwReFX7Waynu4dxSi0rfhHw75I8tdV/QfsC8R26Sz+HvcergJ9L8qokK9JNgnQk3T2L0nQ4hjqGjsoY2uuDwDlJng6Q5GeSbGjb/g54dJJfT/JTwNvozrnJfBR4W9vPIcD/S/fzh+Hn8lSmOn9mZYrfCQfSnTf30v2H5o/m0pbGhuO44/hSjuN/2Pr2bOC1dPOtQHdefg/4fjuv3jCDfu+lusfXXkH3e+HA9rvhzfxkHO819Ltxz8/57e1Yv4C+n3NLWPyY7ra/sbn6AkxgjIqim8DqMXSZuRuAT/SV+S26jN1X6e6j+j2Aqvos3YfsPLqJdf4aeHpV7QF+l+5Dsovurx2bJ+1E1dWtH5+imyjnU3N/aw97FXAM3f1YZ9NlkCfavZPuLzFvofslcyfwr4FHJXk+3Qf71Pahfzfd8Tpzpu30eRRdpv+uVvbX6O4Jhu593wJ8K8l3Z/Aev0V3rO+imzzo9VX11bbtPLr7LL9NlxH9SF/dtwOXpLts8Dd7N1TVg8BLgZPozo8P0B2PrzINSa5O8papSz7sTXSD4G66zO3HJi++l39Fd3/mTXTH9d109yveD5wD/I/2Ho/trdQuhXwJ3c/kXuAPgJdU1UyOv/ZdjqGOoW9ndMbQXu+lO28+mWQP3bl5TOvXfXTH7EN0f1H7AbBjyH4mvIvuS+uX6Mbaz7fY0HN5qg5Odv5M/20ONfB3At159fd07/srdMdF+zbHccfxt7O04/hf0/3MrwXeU1WfbPF/RXdM99BdoXJ5X72h/R7id+jG++3A39DNUXJRf6FpfDd+NfCCtu1drV8P9O3mUrpJSQclSJatiVlxtUSSfB54R1XN5D+JkiQcQyVpuXMc11JK9xjo24Gf6pu3YllJcjndxKVn98ROBTZV1S8vXc/mn1dgLKF2idKzgC8sdV8kablxDJWk5c1xXJqdJP8oyc+226bW013B87Ge7Y+lu6LmgqXq40IxgbFEkrwb+CRwRruPSZI0TY6hkrS8OY5Lc/JkukfTfh94H/CGqvoCQJIT6W5F+jbdLSpjxVtIJEmSJEnSyPMKDEmSJEmSNPJWLHUHFsshhxxSa9asWepuSNoHfO5zn/tuVf3MUvdjlDkmS1oMjsdTczyWtFjmY0zeZxIYa9asYevWrUvdDUn7gCTeyzsFx2RJi8HxeGqOx5IWy3yMyd5CIkmSJEmSRp4JDEmSJEmSNPJMYEiSJEmSpJFnAkOSJEmSJI28KRMYSS5Kck+SL/fE/jjJV5N8KclfJlnZs+2sJNuSfC3JiT3x9S22LcmZPfHDk9yY5LYklyfZv8UPaOvb2vY1U7UhSZIkSZLG03SuwLgYWN8X2wIcVVXPAf4OOAsgyZHAKcCzW50PJNkvyX7A+4GTgCOBV7ayAO8GzquqtcAu4LQWPw3YVVVHAOe1ckPbmOH7liRJkiRJy8iUCYyq+gywsy/2yap6qK3eABzaljcAl1XVA1V1O7ANOLq9tlXV9qp6ELgM2JAkwAuBK1v9S4CX9ezrkrZ8JXB8Kz+sDUmSJEmSNKbmYw6M1wFXt+XVwJ0923a02LD4wcDunmTIRHyvfbXt97Xyw/YlSZIkSZLG1Iq5VE7yVuAh4CMToQHFisGJkpqk/GT7mqxOf/82AZsADnnyav7ixjsGFZvUq4552ozrSJImt/MHDzomS9IIcDyWtJzM+gqMJBuBlwCvrqqJBMIO4LCeYocCd00S/y6wMsmKvvhe+2rbn0B3K8uwfT1CVV1QVeuqat2BK1fN5m1KkiRJkqQRMKsERpL1wBnAS6vq/p5Nm4FT2hNEDgfWAp8FbgLWtieO7E83Cefmlvj4NPDyVn8j8PGefW1syy8HPtXKD2tDkiRJkiSNqSlvIUnyUeA44JAkO4Cz6Z46cgCwpZtXkxuq6vVVdUuSK4Cv0N1acnpV/ajt543ANcB+wEVVdUtr4gzgsiTvAr4AXNjiFwJ/lmQb3ZUXpwBM1oYkSZIkSRpPUyYwquqVA8IXDohNlD8HOGdA/CrgqgHx7Qx4ikhV/RB4xUzakCRJkiRJ42k+nkIiSZIkSZK0oExgSJIkSZKkkWcCQ5KWkSQXJbknyZd7Yn+c5KtJvpTkL5Os7Nl2VpJtSb6W5MSe+PoW25bkzJ744UluTHJbksvbxMu0iZMvb+VvTLJmqjYkSZKk+WQCQ5KWl4uB9X2xLcBRVfUc4O/oJlomyZF0EyA/u9X5QJL9kuwHvB84CTgSeGUrC/Bu4LyqWgvsAk5r8dOAXVV1BHBeKze0jfl+05IkSZIJDElaRqrqM3RPZuqNfbKqHmqrNwCHtuUNwGVV9UBV3Q5so5s0+WhgW1Vtr6oHgcuADekeK/VC4MpW/xLgZT37uqQtXwkc38oPa0OSJEmaVyYwJGm8vA64ui2vBu7s2bajxYbFDwZ29yRDJuJ77attv6+VH7avR0iyKcnWJFv37N45qIgkSZI0lAkMSRoTSd4KPAR8ZCI0oFjNIj6bfT0yWHVBVa2rqnUHrlw1qIgkSZI0lAkMSRoDSTYCLwFeXVUTCYQdwGE9xQ4F7pok/l1gZZIVffG99tW2P4HuVpZh+5KksTZoUuWebf8qSSU5pK0nyfvahMdfSvK8nrIb28TJt7WxfCL+/CQ3tzrva7ftkWRVki2t/JYkB03VhiSNCxMYkrTMJVkPnAG8tKru79m0GTilPUHkcGAt8FngJmBte+LI/nSTcG5uiY9PAy9v9TcCH+/Z18QX65cDn2rlh7UhSePuYh45qTJJDgNeDNzREz6JbnxcC2wCzm9lVwFnA8fQzR909kRCopXZ1FNvoq0zgWvbZMvXtvWhbUjSODGBIUnLSJKPAtcDz0yyI8lpwH8ADgS2JPlikg8CVNUtwBXAV4BPAKdX1Y/aHBZvBK4BbgWuaGWhS4S8Ock2ujkuLmzxC4GDW/zNtC/Mw9pY0IMgSSNg0KTKzXnAH7D37XQbgEurcwPd1W5PAU4EtlTVzqraRfdUqfVt2+Or6vqWLL6UwZMq90+2PKgNSRobK6YuIkkaFVX1ygHhCwfEJsqfA5wzIH4VcNWA+HYGPEWkqn4IvGImbUjSvibJS4FvVtXftjs+Jsx0UuXVbbk/DvCkqroboKruTvLEKdq4ey7vSZJGiQkMSZIkaY6SPBZ4K3DCoM0DYrOdVHloF6ZbJ8kmuttMOOTJAx8cJUkjyVtIJEmSpLn7WeBw4G+TfINuUuPPJ3kyM59UeUdb7o8DfHvi1pD27z0tPu1JlX0qlKTlygSGJEmSNEdVdXNVPbGq1lTVGrqEwvOq6lt0Ex6f2p4UcixwX7sN5BrghCQHtck7TwCuadv2JDm2PX3kVAZPqtw/2fKgNiRpbHgLiSRJkjRDbVLl44BDkuwAzq6qYXMSXQWcDGwD7gdeC1BVO5O8k+7pUADvqKqJiUHfQPekk8cAV7cXwLnAFW0S5zv4yfxEA9uQpHFiAkOSJEmaoSGTKvduX9OzXMDpQ8pdBFw0IL4VOGpA/F7g+AHxoW1I0rjwFhJJkiRJkjTyTGBIkiRJkqSRZwJDkiRJkiSNPBMYkiRJkiRp5JnAkCRJkiRJI88EhiRJkiRJGnkmMCRJkiRJ0sgzgSFJkiRJkkbelAmMJBcluSfJl3tiq5JsSXJb+/egFk+S9yXZluRLSZ7XU2djK39bko098ecnubnVeV+SzLYNSZIkSZI0nqZzBcbFwPq+2JnAtVW1Fri2rQOcBKxtr03A+dAlI4CzgWOAo4GzJxISrcymnnrrZ9OGJEmSJEkaX1MmMKrqM8DOvvAG4JK2fAnwsp74pdW5AViZ5CnAicCWqtpZVbuALcD6tu3xVXV9VRVwad++ZtKGJEmSJEkaU7OdA+NJVXU3QPv3iS2+Grizp9yOFpssvmNAfDZtPEKSTUm2Jtm6Z3d/DkaSJEmSJC0X8z2JZwbEahbx2bTxyGDVBVW1rqrWHbhy1RS7lSRJkiRJo2q2CYxvT9y20f69p8V3AIf1lDsUuGuK+KED4rNpQ5IkSZIkjanZJjA2AxNPEtkIfLwnfmp7UsixwH3t9o9rgBOSHNQm7zwBuKZt25Pk2Pb0kVP79jWTNiRJkiRJ0phaMVWBJB8FjgMOSbKD7mki5wJXJDkNuAN4RSt+FXAysA24H3gtQFXtTPJO4KZW7h1VNTEpxRvonnTyGODq9mKmbUiSJEmSpPE1ZQKjql45ZNPxA8oWcPqQ/VwEXDQgvhU4akD83pm2IUnjLslFwEuAe6rqqBZbBVwOrAG+AfxmVe1qV7a9ly7pez/wmqr6fKuzEXhb2+27quqSFn8+P0kqXwW8qapqNm1IkiRJ82m+J/GUJC2si4H1fbEzgWurai1wbVsHOAlY216bgPPh4YTH2cAxwNHA2e32PlqZTT311s+mDUkad0kuSnJPki/3xP44yVeTfCnJXyZZ2bPtrCTbknwtyYk98fUtti3JmT3xw5PcmOS2JJcn2b/FD2jr29r2NVO1IUnjwgSGJC0jVfUZoP+50BuAS9ryJcDLeuKXVucGYGWbFPlEYEtV7ayqXcAWYH3b9viqur5d7XZp375m0oYkjbuLeWRCeQtwVFU9B/g74CyAJEcCpwDPbnU+kGS/JPsB76dLBh8JvLKVBXg3cF5LHO8CTmvx04BdVXUEcF4rN7SN+X7TkrSUTGBI0vL3pInJjNu/T2zx1cCdPeV2tNhk8R0D4rNp4xGSbEqyNcnWPbv7czCStLwMSihX1Ser6qG2egM/edreBuCyqnqgqm6nm8vt6PbaVlXbq+pB4DJgQ7s974XAla1+f+J4IqF8JXB8Kz+sDUkaGyYwJGl8ZUCsZhGfTRuPDFZdUFXrqmrdgStXTbFbSVr2XsdPJqefaUL5YGB3TzKkNzn8cJ22/b5W3oSypLFnAkOSlr9vT9y20f69p8V3AIf1lDsUuGuK+KED4rNpQ5L2WUneCjwEfGQiNKDYbBPKc05Cm1CWtFyZwJCk5W8zsLEtbwQ+3hM/NZ1jgfva7R/XACckOahN3nkCcE3btifJse1y5FP79jWTNiRpn9Se8vQS4NVtPiGYeUL5u3RzCq3oi++1r7b9CXS3sphQljT2TGBI0jKS5KPA9cAzk+xIchpwLvDiJLcBL27r0D0GdTvdfdB/Cvw2QFXtBN4J3NRe72gxgDcAH2p1vs5PLn+eURuStC9Ksh44A3hpVd3fs2kzcEp7gsjhdE9u+izdGLy2PXFkf7pJODe3xMengZe3+v2J44mE8suBT7Xyw9qQpLGxYuoikqRRUVWvHLLp+AFlCzh9yH4uAi4aEN8KHDUgfu9M25CkcdYSyscBhyTZQfd46rOAA4At3YVs3FBVr6+qW5JcAXyF7taS06vqR20/b6S7Mm4/4KKquqU1cQZwWZJ3AV8ALmzxC4E/S7KN7sqLUwAma0OSxoUJDEmSJGmGhiSULxwQmyh/DnDOgPhVdFez9ce3M+ApIlX1Q+AVM2lDksaFt5BIkiRJkqSRZwJDkiRJkiSNPBMYkiRJkiRp5JnAkCRJkiRJI88EhiRJkiRJGnkmMCRJkiRJ0sgzgSFJkiRJkkaeCQxJkiRJkjTyTGBIkiRJkqSRZwJDkiRJkiSNPBMYkiRJkiRp5JnAkCRJkiRJI88EhiRJkiRJGnkmMCRJkiRJ0sibUwIjyb9MckuSLyf5aJJHJzk8yY1JbktyeZL9W9kD2vq2tn1Nz37OavGvJTmxJ76+xbYlObMnPrANSZIkSZI0nmadwEiyGvhdYF1VHQXsB5wCvBs4r6rWAruA01qV04BdVXUEcF4rR5IjW71nA+uBDyTZL8l+wPuBk4AjgVe2skzShiRJkiRJGkNzvYVkBfCYJCuAxwJ3Ay8ErmzbLwFe1pY3tHXa9uOTpMUvq6oHqup2YBtwdHttq6rtVfUgcBmwodUZ1oYkSZK04JJclOSeJF/uia1KsqVdJbwlyUEtniTva1cVfynJ83rqbGzlb0uysSf+/CQ3tzrva9+BZ9WGJI2LWScwquqbwHuAO+gSF/cBnwN2V9VDrdgOYHVbXg3c2eo+1Mof3BvvqzMsfvAkbewlyaYkW5Ns3bN752zfqiRJktTvYrqrh3udCVzbrhK+tq1Dd0Xx2vbaBJwPXTICOBs4hu6Pd2dPJCRamU099dbPpg1JGidzuYXkILqrJw4Hngo8jm7g7FcTVYZsm6/4I4NVF1TVuqpad+DKVYOKSJIkSTNWVZ8B+v9C1nvFcf+VyJdW5wZgZZKnACcCW6pqZ1XtArYA69u2x1fV9VVVwKUMvqp5Om1I0tiYyy0kLwJur6rvVNX/Av4L8It0g+WKVuZQ4K62vAM4DKBtfwLdoP9wvK/OsPh3J2lDkiRJWipPqqq7Adq/T2zxmV5xvLot98dn08YjeJWypOVqLgmMO4Bjkzy23ZN3PPAV4NPAy1uZjcDH2/Lmtk7b/qmWUd4MnNKeUnI43WVvnwVuAta2J47sTzfR5+ZWZ1gbkiRJ0qhZsCuOp9HGI4NepSxpmZrLHBg30k2k+Xng5ravC4AzgDcn2UY3X8WFrcqFwMEt/mba/XpVdQtwBV3y4xPA6VX1ozbHxRuBa4BbgStaWSZpQ5L2WT7aWpKW3Lcnbtto/97T4jO94nhHW+6Pz6YNSRobc3oKSVWdXVU/X1VHVdVvtSeJbK+qo6vqiKp6RVU90Mr+sK0f0bZv79nPOVX1s1X1zKq6uid+VVX9XNt2Tk98YBuStK/y0daSNBJ6rzjuvxL51PakkGOB+9rtH9cAJyQ5qM0vdwJwTdu2J8mx7UrnUxl8VfN02pCksTHXx6hKkkaHj7aWpEWS5KPA9cAzk+xIchpwLvDiJLcBL27rAFcB2+nG1D8FfhugqnYC76S7dfom4B0tBvAG4EOtzteBiT/yzagNSRonK6YuIkkadVX1zSQTj7b+B+CTzODR1kl6H219Q8+ue+v0Tw53DDN8tDXdo/045MkDi0jSslFVrxyy6fgBZQs4fch+LgIuGhDfChw1IH7vTNuQpHHhFRiSNAZ8tLUkSZLGnQkMSRoPPtpakiRJY80EhiSNBx9tLUmSpLFmAkOSxoCPtpYkSdK4cxJPSRoTVXU2cHZfeDvdE0T6y/4QeMWQ/ZwDnDMgfhXdLPf98YFtSJIkSfPJKzAkSZIkSdLIM4EhSZIkSZJGngkMSZIkSZI08kxgSJIkSZKkkWcCQ5IkSZIkjTwTGJIkSZIkaeSZwJAkSZIkSSPPBIYkSZIkSRp5JjAkSZIkSdLIM4EhSZIkSZJGngkMSZIkSZI08mRMeRQAACAASURBVExgSJIkSZKkkWcCQ5IkSZpHSf5lkluSfDnJR5M8OsnhSW5McluSy5Ps38oe0Na3te1revZzVot/LcmJPfH1LbYtyZk98YFtSNK4MIEhSZIkzZMkq4HfBdZV1VHAfsApwLuB86pqLbALOK1VOQ3YVVVHAOe1ciQ5stV7NrAe+ECS/ZLsB7wfOAk4EnhlK8skbUjSWDCBIUmSJM2vFcBjkqwAHgvcDbwQuLJtvwR4WVve0NZp249Pkha/rKoeqKrbgW3A0e21raq2V9WDwGXAhlZnWBuSNBZMYEiSJEnzpKq+CbwHuIMucXEf8Dlgd1U91IrtAFa35dXAna3uQ638wb3xvjrD4gdP0sZekmxKsjXJ1j27d87+zUrSIptTAiPJyiRXJvlqkluTvCDJqiRb2r13W5Ic1MomyfvavXpfSvK8nv1sbOVvS7KxJ/78JDe3Ou9rmWWGtSFJkiQtpfa9dANwOPBU4HF0t3v0q4kqQ7bNV/yRwaoLqmpdVa07cOWqQUUkaSTN9QqM9wKfqKqfB34BuBU4E7i23Xt3bVuHbuBe216bgPOhS0YAZwPH0F0Sd3ZPQuL8Vnai3voWH9aGJEmStJReBNxeVd+pqv8F/BfgF4GV7ZYSgEOBu9ryDuAwgLb9CcDO3nhfnWHx707ShiSNhVknMJI8HvhV4EKAqnqwqnaz9318/ff3XVqdG+gG2KcAJwJbqmpnVe0CtgDr27bHV9X1VVXApQy+V9D7+yRJkjQq7gCOTfLYdvXw8cBXgE8DL29lNgIfb8ub2zpt+6fad9/NwCntKSWH0/0x77PATcDa9sSR/ekm+tzc6gxrQ5LGwlyuwHgG8B3gw0m+kORDSR4HPKmq7gZo/z6xlZ/pfXyr23J/nEna2Iv390mSJGkxVdWNdBNpfh64me779gXAGcCbk2yjm6/iwlblQuDgFn8z7criqroFuIIu+fEJ4PSq+lGb4+KNwDV0Vz9f0coySRuSNBZWTF1k0rrPA36nqm5M8l4mv5Vjwe7jG6aqLqD7hcEznvWcGdWVJEmSZqOqzqa7RbrXdrrbpfvL/hB4xZD9nAOcMyB+FXDVgPjANiRpXMzlCowdwI6WZYYu0/w84Nvt9g/av/f0lJ/JfXw72nJ/nEnakKR9lhMrS5IkaZzNOoFRVd8C7kzyzBaauL+v9z6+/vv7Tm1fmo8F7mu3f1wDnJDkoPal9wTgmrZtT5Jj25fkUxl8r6D390lSx4mVJUmSNLbmcgsJwO8AH2kTCG0HXkuXFLkiyWl0kxhNXBJ3FXAysA24v5WlqnYmeSfdhEQA76iqiQkr3gBcDDwGuLq9AM4d0oYk7ZN6JlZ+DXQTKwMPJtkAHNeKXQJcR3eP9MMTKwM3tKs3ntLKbpkYh5NMTKx8HW1i5RafmFj56ravQW1IkiRJ82ZOCYyq+iKwbsCm4weULeD0Ifu5CLhoQHwrcNSA+L2D2pCkfVjvxMq/AHwOeBN9kx4nWfCJlXva2EuSTXRXcHDIk1cPKiJJkiQNNZc5MCRJo2NiYuXzq+q5wA8YwYmVq2pdVa07cOWqmVSVJEmSTGBI0phwYmVJkiSNNRMYkjQGnFhZkiRJ426uk3hKkkaHEytLkiRpbJnAkKQx4cTKkiRJGmfeQiJJkiRJkkaeCQxJkiRJkjTyTGBIkiRJkqSRZwJDkiRJkiSNPBMYkiRJkiRp5JnAkCRJkiRJI88EhiRJkiRJGnkmMCRJkqR5lGRlkiuTfDXJrUlekGRVki1Jbmv/HtTKJsn7kmxL8qUkz+vZz8ZW/rYkG3viz09yc6vzviRp8YFtSNK4MIEhSZIkza/3Ap+oqp8HfgG4FTgTuLaq1gLXtnWAk4C17bUJOB+6ZARwNnAMcDRwdk9C4vxWdqLe+hYf1oYkjQUTGJIkSdI8SfJ44FeBCwGq6sGq2g1sAC5pxS4BXtaWNwCXVucGYGWSpwAnAluqamdV7QK2AOvbtsdX1fVVVcClffsa1IYkjQUTGJIkSdL8eQbwHeDDSb6Q5ENJHgc8qaruBmj/PrGVXw3c2VN/R4tNFt8xIM4kbewlyaYkW5Ns3bN75+zfqSQtMhMYkiRJ0vxZATwPOL+qngv8gMlv5ciAWM0iPm1VdUFVrauqdQeuXDWTqpK0pExgSJIkSfNnB7Cjqm5s61fSJTS+3W7/oP17T0/5w3rqHwrcNUX80AFxJmlDksaCCQxJkiRpnlTVt4A7kzyzhY4HvgJsBiaeJLIR+Hhb3gyc2p5GcixwX7v94xrghCQHtck7TwCuadv2JDm2PX3k1L59DWpDksbCiqXugCRJkjRmfgf4SJL9ge3Aa+n+cHhFktOAO4BXtLJXAScD24D7W1mqameSdwI3tXLvqKqJCSveAFwMPAa4ur0Azh3ShiSNBRMYkiRJ0jyqqi8C6wZsOn5A2QJOH7Kfi4CLBsS3AkcNiN87qA1JGhfeQiJJkiRJkkaeCQxJkiRJkjTy5pzASLJfe8b1X7X1w5PcmOS2JJe3e/9IckBb39a2r+nZx1kt/rUkJ/bE17fYtiRn9sQHtiFJkiRJksbTfFyB8Sbg1p71dwPnVdVaYBdwWoufBuyqqiOA81o5khwJnAI8G1gPfKAlRfYD3g+cBBwJvLKVnawNSZIkSZI0huaUwEhyKPDrwIfaeoAX0j3vGuAS4GVteUNbp20/vpXfAFxWVQ9U1e10MzAf3V7bqmp7VT0IXAZsmKINSZIkSZI0huZ6BcafAH8A/LitHwzsrqqH2voOYHVbXg3cCdC239fKPxzvqzMsPlkbkiRJkiRpDM06gZHkJcA9VfW53vCAojXFtvmKD+rjpiRbk2zds3vnoCKSNFacl0iSJEnjai5XYPwS8NIk36C7veOFdFdkrEyyopU5FLirLe8ADgNo258A7OyN99UZFv/uJG3spaouqKp1VbXuwJWrZv9OJWn5cF4iSZIkjaVZJzCq6qyqOrSq1tB92f1UVb0a+DTw8lZsI/Dxtry5rdO2f6qqqsVPaX8NPBxYC3wWuAlY2/6yt39rY3OrM6wNSdpnOS+RJEmSxtl8PIWk3xnAm5Nso5uv4sIWvxA4uMXfDJwJUFW3AFcAXwE+AZxeVT9qc1y8EbiG7q+JV7Syk7UhSfuykZ6XyNv6JEmSNBcrpi4ytaq6DriuLW+n+0tdf5kfAq8YUv8c4JwB8auAqwbEB7YhSfuq3nmJkhw3ER5QdLbzEg1KeM9oXqKqugC4AOAZz3rOwDKSJEnSMPOSwJAkLbmJeYlOBh4NPJ6eeYnaFRKD5iXaMc15iRgSf3heogFtSJIkSfNmIW4hkSQtMuclkiRJ0rgzgSFJ4815iSRJkjQWvIVkAf3FjXfMqt6rjnnaPPdE0r7EeYkkSZI0jrwCQ5IkSZIkjTwTGJIkSdI8S7Jfki8k+au2fniSG5PcluTyNp8Qbc6hy5Nsa9vX9OzjrBb/WpITe+LrW2xbkjN74gPbkKRx4S0kI8hbTyRpfjmuSloCb6KbM+jxbf3dwHlVdVmSDwKnAee3f3dV1RFJTmnl/mmSI+kmTH428FTgvyX5ubav9wMvpnty1E1JNlfVVyZpQ5LGgldgSJIkSfMoyaHArwMfausBXghc2YpcArysLW9o67Ttx7fyG4DLquqBqrod2EY339DRwLaq2l5VDwKXARumaEOSxoIJDEmSJGl+/QnwB8CP2/rBwO72RCforpxY3ZZXA3cCtO33tfIPx/vqDItP1sZekmxKsjXJ1j27d872PUrSojOBIUmSJM2TJC8B7qmqz/WGBxStKbbNV/yRwaoLqmpdVa07cOWqQUUkaSQ5B4YkSZI0f34JeGmSk4FH082B8SfAyiQr2hUShwJ3tfI7gMOAHUlWAE8AdvbEJ/TWGRT/7iRtSNJY8AoMSZIkaZ5U1VlVdWhVraGbhPNTVfVq4NPAy1uxjcDH2/Lmtk7b/qmqqhY/pT2l5HBgLfBZ4CZgbXviyP6tjc2tzrA2JGksmMCQJEmSFt4ZwJuTbKObr+LCFr8QOLjF3wycCVBVtwBXAF8BPgGcXlU/aldXvBG4hu4pJ1e0spO1IUljwVtIJEmSpAVQVdcB17Xl7XRPEOkv80PgFUPqnwOcMyB+FXDVgPjANiRpXHgFhiRJkiRJGnlegSFJkiRpUfzFjXfMuu6rjnnaPPZE0nJkAkOSJEnSyJtt8sPEhzQ+vIVEkiRJkiSNPK/AkCRpCP/aJ0mSNDq8AkOSJEmSJI08r8AYI/6lUJIkSZI0rrwCQ5IkSZIkjTyvwJjCXB71JEmSJEmS5odXYEiSJEmSpJE36yswkhwGXAo8GfgxcEFVvTfJKuByYA3wDeA3q2pXkgDvBU4G7gdeU1Wfb/vaCLyt7fpdVXVJiz8fuBh4DHAV8KaqqmFtzPa9SJKWB6+KkyRJ2nfN5RaSh4Dfr6rPJzkQ+FySLcBrgGur6twkZwJnAmcAJwFr2+sY4HzgmJaMOBtYB1Tbz+aWkDgf2ATcQJfAWA9c3fY5qA1J2ieZVB4tc0m0OLGyJEnSYLO+haSq7p74sltVe4BbgdXABuCSVuwS4GVteQNwaXVuAFYmeQpwIrClqna2L7xbgPVt2+Or6vqqKrov5r37GtSGJO2rJpLKzwKOBU5PciQ/SfiuBa5t67B3UnkTXcKYnqTyMcDRwNlJDmp1JpLKE/XWt/iwNiRJkqR5My9zYCRZAzwXuBF4UlXdDV2SA3hiK7YauLOn2o4Wmyy+Y0CcSdro79emJFuTbN2ze+ds354kjTyTypIkSRp3c05gJPlp4D8Dv1dV35us6IBYzSI+bVV1QVWtq6p1B65cNZOqkrRsjWpSWZIkSZqLOT1GNclP0SUvPlJV/6WFv53kKVV1d/uL3T0tvgM4rKf6ocBdLX5cX/y6Fj90QPnJ2pCkfVp/Urmb6mJw0QGxBU0qJ9lEdwsKhzx59RSlJUmaH7Odl8g5iaTRM5enkAS4ELi1qv5dz6bNwEbg3Pbvx3vib0xyGd291fe1BMQ1wB/13GN9AnBWVe1MsifJsXR/RTwV+PdTtCFJ+6xRTypX1QXABQDPeNZzZpT8kCSNFp8KJWkpzOUWkl8Cfgt4YZIvttfJdEmFFye5DXhxW4duxvrtwDbgT4HfBqiqncA7gZva6x0tBvAG4EOtztfpnkDCJG1I0j5pGklleGRS+dR0jqUllYFrgBOSHNQSyycA17Rte5Ic29o6tW9fg9qQpH1OksOSfDrJrUluSfKmFl+VZEuS29q/B7V4krwvybYkX0ryvJ59bWzlb2tPiJqIPz/Jza3O+9q4PLQNSRoXs74Co6r+hsGXFAMcP6B8AacP2ddFwEUD4luBowbE7x3UhiTtwyaSyjcn+WKLvYUuwXtFktOAO4BXtG1X0T1CdRvdY1RfC11SOclEUhkemVS+mO4xqlezd1J5UBuStC+aeCrU55McCHwuyRbgNXRPbDo3yZl0T2w6g72fCnUM3ROfjul5KtQ6ulv2Ppdkc5tgeeKpUDfQjefr6cbkM4e0IUljYU5zYEiSRoNJZUkaDe2KtYmJjfck6X0q1HGt2CV0t+edQc9ToYAbkkw8Feo42lOhAFoSZH2S62hPhWrxiadCXT1JG5I0FublMaqSJEmS9jaqT4VKsinJ1iRb9+zeOaiIJI0kExiSJEnSPOt/KtRkRQfEFvSpUFV1QVWtq6p1B65cNZOqkrSkTGBIkiRJ82iyp0K17dN9KtSw+KRPhRrQhiSNBefA0KwtxeOzfB63JEkaZdN4KtS5PPKpUG9MchndJJ73tcdSXwP8Uc+TRE4AzmqTLe9pT5C6ke6pUP9+ijYkaSyYwJAkSZLmj0+FkqQFYgJDkiRJmic+FUqSFo5zYEiSJEmSpJHnFRhakrksJEmSpHG02N+tnSNO+xKvwJAkSZIkSSPPBIYkSZIkSRp5JjAkSZIkSdLIcw4MSZIkSerjPHHS6DGBIUnSCJntF+bZTuK22O1JkiTNlreQSJIkSZKkkecVGNon+BdGSZIkSVreTGBoWRn3exHn8v68fFzat437+ChJkmQCQ5IkSZL2Qf4hS8uNCQxJkiRJWqb2hSvwliLRYnJnNJnAkCaxnAaufeGXlyRJkqR9lwkMSZKkAZZTEluSFtNyGR/9A9/4MYEhSZJmbLl8eZUkSePDBIYkSVo0S/HXsOWSNDEpJEnS5JZ1AiPJeuC9wH7Ah6rq3CXukgR4uZr2PY7H0k/4O0BLyfFY0jhbtgmMJPsB7wdeDOwAbkqyuaq+srQ9k6R9i+OxJI0Gx2ONOhO8mqtHLXUH5uBoYFtVba+qB4HLgA1L3CdJ2hc5HkvSaHA8ljTWlu0VGMBq4M6e9R3AMb0FkmwCNrXVB1597NO/vEh9m45DgO8udSeaUeoLjFZ/7MsQrx6t/oxSXwCeudQdWGRTjscw0mPyqJ0/o9SfsejLq+e5I83IHJsRG49htPrjeOx4PBej1J9R6guMVn9GqS+jNiaPUl9gHsbk5ZzAyIBY7bVSdQFwAUCSrVW1bjE6Nh2j1J9R6guMVn/sy3Cj1J9R6gt0/VnqPiyyKcdjGN0xeZT6AqPVH/sy3Cj1Z5T6AqPVH8djwPF41kapP6PUFxit/oxSX2C0+jNKfYH5GZOX8y0kO4DDetYPBe5aor5I0r7M8ViSRoPjsaSxtpwTGDcBa5McnmR/4BRg8xL3SZL2RY7HkjQaHI8ljbVlewtJVT2U5I3ANXSPibqoqm6ZpMoFi9OzaRul/oxSX2C0+mNfhhul/oxSX2D0+rOgZjEew2gdo1HqC4xWf+zLcKPUn1HqC4xWf0apLwvO8XjejVJ/RqkvMFr9GaW+wGj1Z5T6AvPQn1Q94rY4SZIkSZKkkbKcbyGRJEmSJEn7CBMYkiRJkiRp5I1FAiPJ+iRfS7ItyZkDth+Q5PK2/cYka3q2ndXiX0ty4lL1JcmaJP+Q5Ivt9cG59mWa/fnVJJ9P8lCSl/dt25jktvbauMR9+VHPsZmXyaim0Z83J/lKki8luTbJ03u2LfaxmawvS3FsXp/k5tbm3yQ5smfbYn+mBvZlIT5TU/Wlp9zLk1SSdT2xeT0uo2qUxuO59Gcpzh/HY8fjWfZnnxyPp9OfnnKOySMwJjseL1h/5nXcGaXxeB76s9jHZtHG47n0Zyk+Uz3l5j4eV9WyftFNUPR14BnA/sDfAkf2lflt4INt+RTg8rZ8ZCt/AHB4289+S9SXNcCXl+DYrAGeA1wKvLwnvgrY3v49qC0ftBR9adu+vwTH5h8Dj23Lb+j5WS3FsRnYlyU8No/vWX4p8Im2vBSfqWF9mdfP1HT60sodCHwGuAFYtxDHZVRf0/x5Lcp4PA/9WfTzB8djx+PZ9WefG4+n259WzjF5BMbkOfZlXs+fafZlDYswHs+1P23bvI070+zLoozHc+3PEh2bRRmP56E/i/6ZauXmZTwehyswjga2VdX2qnoQuAzY0FdmA3BJW74SOD5JWvyyqnqgqm4HtrX9LUVfFsKU/amqb1TVl4Af99U9EdhSVTurahewBVi/RH1ZCNPpz6er6v62egPds9RhaY7NsL4shOn053s9q48DJmYDXvTP1CR9mW/T+XwDvBP4N8APe2LzfVxG1SiNx3Ptz3xzPJ5bfxyPHY9n3J/GMXk0xmTH44Xpz3wbpfF4rv2Zb6M0Hs+1P/NtUcfjcUhgrAbu7Fnf0WIDy1TVQ8B9wMHTrLtYfQE4PMkXkvx1kl+ZQz9m0p+FqLsQ+3t0kq1Jbkjysjn0Y7b9OQ24epZ1F7IvsETHJsnpSb5ONxD97kzqLlJfYH4/U1P2JclzgcOq6q9mWndMjNJ4PNf+wCKfPwtUdyH253g8uC/geLxY4/G0+uOYPFJjsuPxwu1zPsedURqP59ofWIJjs0jj8Vz7A8v4O/KK2fdzZAzKzPZnl4aVmU7dxerL3cDTqureJM8HPpbk2X2Zs4Xoz0LUXYj9Pa2q7kryDOBTSW6uqq8vRn+S/DNgHfBrM627CH2BJTo2VfV+4P1JXgW8Ddg43bqL1Jf5/kxN2pckjwLOA14z07pjZJTG47n2Z1HPnwWsuxD7czwe3BdwPF6s8XjK/jgmA6M1JjseL9w+53PcGaXxeK79gSU4Nos0Hs+1P8v6O/I4XIGxAzisZ/1Q4K5hZZKsAJ4A7Jxm3UXpS7ts5l6Aqvoc3f0/PzeHvky3PwtRd973V1V3tX+3A9cBz51DX6bdnyQvAt4KvLSqHphJ3UXqy5Idmx6XARNZ7aU+bx7uywJ8pqbqy4HAUcB1Sb4BHAtsTjdJ0Xwfl1E1SuPxnPqzBOfPQtWd9/05Hjsez7QvS/QdxzF5tMZkx+MF2uc8jzujNB7PtT9Lcmx6LOR4PKf+LPvvyDVPk3cs1YvuKpLtdJN+TEwa8uy+Mqez96RAV7TlZ7P3pCHbmdsERXPpy89MtE03Aco3gVULfWx6yl7MIycpup1uEp6D2vKs+zPHvhwEHNCWDwFuY8DEMAvws3ou3Qd6bV980Y/NJH1ZqmOztmf5N4CtS/iZGtaXef1MzeQcbuWv4ycTFM3rcRnV1zR/XosyHs9Df5bs/MHx2PF4Zv3Z58bjmZ7Hrfx1OCb7HXmG5w4LPB7PQ3/mddyZ5s9pUcbjeejPUhybRRmP56E/y/o78qwP2ii9gJOBv2sn71tb7B10WTiARwP/iW5SkM8Cz+ip+9ZW72vASUvVF+CfALe0H+Dngd9YpGPzj+gyXz8A7gVu6an7utbPbcBrl6ovwC8CN7djczNw2iIdm/8GfBv4YnttXsJjM7AvS3hs3tvO1y8Cn6ZnkFqCz9TAvizEZ2qqvvSVvY42OC/EcRnV1zR+Xos2Hs+lP0tx/uB47Hg8u/7sk+PxdPrTV/Y6HJP9jjz9vizaeDyX/rAA4840+rJo4/Fc+rNEx2bRxuO59GcpPlN9Za9jDuNxWiVJkiRJkqSRNQ5zYEiSJEmSpDFnAkOSJEmSJI08ExiSJEmSJGnkmcCQJEmSJEkjzwSGJEmSJEkaeSYwJEmSJEnSyDOBIUmSJEmSRp4JDEmSJEmSNPJMYEiSJEmSpJFnAkOSJEmSJI08ExiSJEmSJGnkmcCQJEmSJEkjzwSGHiFJJTliyLark2yc5X7fnuTP59a7mbWT5GlJvp9kv3na9weT/GFbPi7JjvnYb9vfryT52nztT9JocoyddN/7zBg71fvrPRaSJKljAmMJJLkuyT9f6n7MRlWdVFWXLHU/pquq7qiqn66qH01WLslrkvzNNPb3+qp653z0rf8/MVX136vqmfOx7zn0aUHPzSTfSPKihdq/BI6xi8kxduH0Hov5TubMVf+xHbX+SZLGlwmMfViSFUvdh+Vkvv7CuJwt9Tmz1O1LM+H5OjOOsfsuPyuSpOkygbGEkhyU5K+SfCfJrrZ8aM/2VUk+nOSutv1jPds2JPliku8l+XqS9S3+2iS3JtmTZHuSf9FT57gkO5KckeRbwIdb/F8nubu187op+vzwXzYn/qKW5D2tf7cnOamn7OFJ/rr1ZQtwSN++jk3yP5PsTvK3SY7red87kvxGW//pJNuSnDqkT0PbSbKm/aVoRU+ft7eyt//v9u4+2rKqvPP99ycV8CVg8RLfqtDCtjoRuKaVaiBJJxpJoCDGYtyGBDWhonW7bgzGdIhXIeYGo9KtdsYlMoIkRAhFWkVCXqw2IFaDaOdeQQolIqDhWBooQVCqCokoiD73jzUP7jrsfd7rnF37fD9j7HHWftaca869zj6zdj17rrmSvCbJC4E/A36qTYXe1cpemuTCJFcl+Tbw8y32zgnt/36Sb7bZBa/pd656z1fb/lQL/1Nr81cnfoOV5IXtGLuS3JbklT37Lk1yQZJ/aK/lxiT/ZrLfXU/dJyf570keaMe+Kckzk5wL/Czwp61Pf9rKV5IzktwJ3DnxnA54rf+p5314e5KXJPkr4LnA/2jHf/PE19zqPj5LI91U9Stbf78F/EaSJyU5q73vH0hyRZKDpvPatbTEMdYxdnHG2E1Jfq9tr2jn57fa8xck2ZEkPeV/L8n97T3y2gl9eGeSpwFXA89pr+VfkzwnMxgLe96bb+5p6+QkJyX559an3+8pf3SST7dzc2+SP02y74Bzu36m/et532xIchdw3XTOrSRJJjAW15PoPuA+j+4/dt8B/rRn/18BTwWOAJ4BnAfdBwvgMuD/ApYDPwd8tdW5H3gFcADwWuC8JC/pOeazgINamxvTfSh/E/CLwGpgptP7jwG+RPeB9j3AxT0fzD4I3Nz2vQN4/LruJCuAfwDe2frzJuBvkvxYVe0AXgf8RZLx131LVV02oA8D2+nVPgSeD5xYVfsDP92Oewfwm8Cn21To5T3VXg2cC+wP9Jv+/KzW7orW7kVJppyiXFU/1zZ/srX54Ql9/RHgfwAfp/vd/zbwgQnHfhXwR8CBwFjr53j9jyY5a0Dz64GnA4cCB7fX/p2qeivwv4A3tD69oafOyXS/68Onem1JTgXeBpxO9z58JfBAVf06cBfwy+3475nqWM064Eq69/oHgDe2/rwUeA6wE7hgmsfS0uIY6xi7GGPsJ4GXte2XAtvaT+jeS/+rqqrn9T29vb4NwAVJDpzwWr4NnAjc017Lj1bVPcx8LHwW8OTW1h8CfwH8GnAUXfL6D5M8v5X9PvC7dOf+p4DjgN9q/Zl4bjfNoX8vBV4InDBJvyVJepwJjEVUVQ9U1d9U1cNV9RDdh6OXAiR5Nt0Hgt+sqp1V9b2q+mSrugG4pKq2VNUPquprVfXFdsx/qKovV+eTdB/Ofran2R8A51TVI1X1HeBXgL+sqi+0D0lvm+HL+Jeq+ot2/fMm4NnAM5M8F/j3wP/d2voU3YfFcb8GXFVVV7XXsAXYCpzUXsfHgb8GrgV+Cfg/6WMa7Uz0A+DIJE+pqnur6rYpXt9Hqur/bX387oAy421/zLY0pgAAIABJREFUku4/DL8yxTGn41jgR4F3VdWjVXUd8FG6D9Tj/raqPlNVj9H9x/7fje+oqldU1bsGHPt7dImLF1TV96vq5qr61hT9+a9VtaO9Z6byfwDvqaqb2vtwrKr+ZRr1Bvl0Vf19+x18h+698Naq2l5Vj9C9Z0+JU5A1gWOsY+wk9uQY+0ngZ5M8iS5h8R7gZ9q+l7b9474HvL29/64C/hWY7jodMx0LvwecW1XfAy6nS068t6oear+n24AXtdd3c1XdUFWPVdVXgT/nh0mY6ZpO/95WVd+e5r8tkiSZwFhMSZ6a5M+T/Eu66fGfApanuw74UGBHVe3sU/VQ4MsDjnlikhvadNBddB9We6cVf2PCh8TnAHf3PJ/pfzS/Pr5RVQ+3zR9tx93ZPrD3O/bzgFPb9NRdra//ge7D+biLgCPpPvw/MKD9qdp5XCvzq3TfBN7bpgb/xBSv7+4p9vdr+zlT1JmO5wB3V9UPJhx7Rc/zr/dsP0x33qfjr4BrgMvTTWl/T/s2cjJTnYdeA9+fszSx7ecBf9fzvrmD7tvCZ85jmxoBjrGOsZPYY2NsVX2ZLhHx7+iSWx8F7mmzOyYmMB5oCZIZt8PMx8IH6oeLrY4nDO7r2f+d8baT/Ns2y+Tr7W/nvzDhEqV56t9M/m2RJMkExiL7PbpvWo6pqgPovqkBCN0/6gclWd6n3t3AE67FTbIf8DfAHwPPrG6a7lXteONqQrV76T6sj3vuLF5HP/cCB7Ypxf2OfTfwV1W1vOfxtPFvtNp/MP6cbhr36zPgloPTaGc3VXVNVf0i3Yf4L9JNoYUnnhemiI/r1/Y9bfvbdNPTxz1rimP1ugc4tH2D13vsr83gGH21b/r+qKoOp5vi/Qq6yz1geudh/D8Tg15b3/fngOPvdo7a7/3HpqhzN90U9d73zpOras7nRiPHMdYxdpA9NsY2nwROAfZtY9Mn6cbZA4FbZnG8fudpT46FF9L9/la3v53fZ/f3+Xz1b6rfvyRJuzGBsbj2p/vGY1db2Oqc8R1VdS/doljvS7cQ3Y8kGf/wfTHw2iTHtUWyVrRvufYF9gO+ATyWbrG346fowxV0CyMenuSpvX2Yi+ouGdgK/FGSfZP8B+CXe4r8d+CXk5yQZJ90C0u+LD9cYG98MbHX0f1n4bL0WaF+Gu08Lt1Cla9sH4YfofuGbPzbqPuAlWmLlM3QeNs/S5cM+OsWvwX439u3wC+gm5be6z7g+fR3I92H8ze33/3L2uu6fBb9202Sn0/yv7Xz+S26acW952FQnwCoqm/Qfcj/tfa7ex27/2fv/cCbkhyVzguSPG/A8f8ZeHKSX2qzQP6A7j08mT8Dzh0/ZpIfS7JuqtetJckx1jF2wcfY5pPAG+hm/QBcT7fOxj/WFLecHeA+4OAkT++J7cmxcH+6fx/+tb33X9+nP8+f8Hwh+ydJWqJMYCyeAv4EeArwTeAG4GMTyvw63X8uv0i3cNx/Bqiqz9AWjwMepPug9LzqrvF+I90H5p10i6NtnrQTVVe3flxHt0jZfK4E/mq6Beh20H1of3yBuKq6m25xxt+n+8/A3XQL5j0pyVHAmcDp7YPeu+nO16AF0wa2M8GT6L6RvaeVfSltUTK6130b8PUk35zBa/w63bm+h+4a6d8cv1ae7vfzKN0Hu01tf6+3AZva9NrdrumuqkfpFr88ke798T668/FFpiHJ1elZUX6CZ9Etivktuim9n6T7zw7Ae+muUd6Z5PxJmvhPdL+vB+gWQPz/evr+13RrDXwQeAj4e7pFBAH+K/AH7TW/qaoepPsdvJ8uKfJtYLe7kvTxXrr39ceTPET3t3PMFHW09DjGOsa+jcUZY6F7z+zPDxMY/0g3W+RTA2tMovXrQ8C29nqew54dC99E93t/iG4WzYcn7H8bPed2EfonSVqiUuXsvYWW5LN0i3b9/ZSFJUkz4hgrSZI0mpyBscCSHEF3y7DPLXZfJGnUOMZKkiSNLhMYCyjJu+luufeWmtttJSVJEzjGSpIkjTYvIZEkSZIkSUPPGRiSJEmSJGnoLVvsDiyUQw45pFatWrXY3ZC0BNx8883frKofW+x+DDPHZEkLwfFYkkbLkklgrFq1iq1bty52NyQtAUlcf2EKjsmSFoLjsSSNFi8hkSRJkiRJQ88EhiRJkiRJGnomMCRJkiRJ0tAzgSFJkiRJkoaeCQxJkiRJkjT0TGBIkiRJkqShZwJDkiRJkiQNPRMYkiRJkiRp6C1b7A4slB3ffpQP3njXjOu9+pjn7oHeSNLS5pgsSZKkmXIGhiRJkiRJGnomMCRJkiRJ0tAzgSFJkiRJkoaeCQxJkiRJkjT0TGBIkiRJkqShZwJDkvYiSS5Jcn+SL/TE/luSLyb5fJK/S7K8Z9/ZScaSfCnJCT3xtS02luSsnvhhSW5McmeSDyfZt8X3a8/H2v5VU7UhSZIkzScTGJK0d7kUWDshtgU4sqpeBPwzcDZAksOB04AjWp33JdknyT7ABcCJwOHAq1pZgHcD51XVamAnsKHFNwA7q+oFwHmt3MA25vtFS5IkSSYwJGkvUlWfAnZMiH28qh5rT28AVrbtdcDlVfVIVX0FGAOObo+xqtpWVY8ClwPrkgR4OXBlq78JOLnnWJva9pXAca38oDYkSZKkeWUCQ5JGy+uAq9v2CuDunn3bW2xQ/GBgV08yZDy+27Ha/gdb+UHHeoIkG5NsTbL1oV07+hWRJEmSBjKBIUkjIslbgceAD4yH+hSrWcRnc6wnBqsuqqo1VbVm/+UH9SsiSZIkDbRssTsgSZq7JOuBVwDHVdV4AmE7cGhPsZXAPW27X/ybwPIky9osi97y48fanmQZ8HS6S1kma0OSJEmaN1POwOi34n3PvjclqSSHtOdJcn5bjf7zSV7SU3Z9W9X+zvZBezx+VJJbW53z2zXVJDkoyZZWfkuSA6dqQ5KWoiRrgbcAr6yqh3t2bQZOa3cQOQxYDXwGuAlY3e44si/dIpybW+LjE8Aprf564CM9xxofu08BrmvlB7UhSZIkzavpXEJyKU9c8Z4khwK/CNzVEz6R7sPramAjcGErexBwDnAM3eJu54wnJFqZjT31xts6C7i2rYR/bXs+sA1JWgqSfAj4NPDjSbYn2QD8KbA/sCXJLUn+DKCqbgOuAG4HPgacUVXfb7Mr3gBcA9wBXNHKQpcIOTPJGN0aFxe3+MXAwS1+Jm1MHtTGHj0JkiRJWpKmvISkqj6VZFWfXecBb+aH385Btxr9Ze1buRuSLE/ybOBlwJaq2gGQZAuwNsn1wAFV9ekWv4xuxfur27Fe1o67Cbie7oN13zaq6t7pv2xJ2jtV1av6hC/uExsvfy5wbp/4VcBVfeLb6HMXkar6LnDqTNqQJEmS5tOsFvFM8krga1X1TxN2zXTF+xVte2Ic4JnjSYn28xlTtNGvn654L0mSJEnSCJhxAiPJU4G3An/Yb3ef2GxXvB/YhenWccV7SZIkSZJGw2xmYPwb4DDgn5J8lW7F+c8meRaDV6OfLL6yTxzgvnb5Ce3n/S3uiveSJEmSJC0xM05gVNWtVfWMqlpVVavoEgovqaqv061Gf3q7U8ixwIPt8o9rgOOTHNgW7zweuKbteyjJse3uI6fTf8X7iSvh92tDkiRJkiSNqCkX8Wwr3r8MOCTJduCcqhq0YNxVwEnAGPAw8FqAqtqR5B10t+4DePv4gp7A6+nudPIUusU7r27xdwFXtBX27+KHi8f1bUOSJEmSJI2u6dyFpN+K9737V/VsF3DGgHKXAJf0iW8FjuwTfwA4rk98YBuSJEmSJGk0zeouJJIkSZIkSQvJBIYkSZIkSRp6JjAkSZIkSdLQM4EhSZIkSZKGngkMSZIkSZI09ExgSJIkSZKkoWcCQ5IkSZIkDT0TGJIkSZIkaeiZwJAkSZIkSUPPBIYkSZIkSRp6JjAkSZIkSdLQM4EhSZIkSZKGngkMSZIkSZI09ExgSJIkSZKkoWcCQ5IkSZIkDT0TGJIkSZIkaehNmcBIckmS+5N8oSf235J8Mcnnk/xdkuU9+85OMpbkS0lO6ImvbbGxJGf1xA9LcmOSO5N8OMm+Lb5fez7W9q+aqg1JGnUDxuSDkmxp4+iWJAe2eJKc38bLzyd5SU+d9a38nUnW98SPSnJrq3N+ksy2DUmSJGk+TWcGxqXA2gmxLcCRVfUi4J+BswGSHA6cBhzR6rwvyT5J9gEuAE4EDgde1coCvBs4r6pWAzuBDS2+AdhZVS8AzmvlBrYxw9ctSXurS3nimHwWcG0bR69tz6Ebc1e3x0bgQuiSEcA5wDHA0cA54wmJVmZjT721s2lDkiRJmm9TJjCq6lPAjgmxj1fVY+3pDcDKtr0OuLyqHqmqrwBjdB+OjwbGqmpbVT0KXA6sa9/svRy4stXfBJzcc6xNbftK4LhWflAbkjTy+o3J7D5eThxHL6vODcDyJM8GTgC2VNWOqtpJl5Re2/YdUFWfrqoCLqP/mDydNiRJkqR5NR9rYLwOuLptrwDu7tm3vcUGxQ8GdvUkQ8bjux2r7X+wlR90LElaqp5ZVfcCtJ/PaPGZjskr2vbE+GzaeIIkG5NsTbL1oV0TczCSJEnS5OaUwEjyVuAx4APjoT7Fahbx2RyrX//8sCxpKZvPMXmmbTwxWHVRVa2pqjX7Lz9oisNKkiRJu5t1AqMt+vYK4DVtqjF037wd2lNsJXDPJPFv0k03XjYhvtux2v6n002bHnSsJ/DDsqQl4r7xyzbaz/tbfKZj8nZ+eElgb3w2bUiSJEnzalYJjCRrgbcAr6yqh3t2bQZOa3cQOYxuUbfPADcBq9sdR/alW4Rzc0t8fAI4pdVfD3yk51jjK+OfAlzXyg9qQ5KWqt7xcuI4enq7U8ixwIPt8o9rgOOTHNgW7zweuKbteyjJsW3NodPpPyZPpw1JkiRpXi2bqkCSDwEvAw5Jsp1u5fqzgf2ALe0OezdU1W9W1W1JrgBup7u05Iyq+n47zhvoPjTvA1xSVbe1Jt4CXJ7kncDngItb/GLgr5KM0c28OA1gsjYkadQNGJPfBVyRZANwF3BqK34VcBLdYscPA68FqKodSd5Bl1wGeHtVjV9n93q6O508hW59o/E1jmbUhiRJkjTf8sOrP0bb81/4onrnpR+dcb1XH/PcPdAbSaMsyc1VtWax+zHMHJMlLQTHY0kaLfNxFxJJkiRJkqQ9ygSGJEmSJEkaeiYwJEmSJEnS0DOBIUmSJEmShp4JDEmSJEmSNPRMYEiSJEmSpKFnAkOSJEmSJA09ExiSJEmSJGnomcCQJEmSJElDzwSGJEmSJEkaeiYwJEmSJEnS0DOBIUmSJEmShp4JDEmSJEmSNPRMYEiSJEmSpKFnAkOSJEmSJA09ExiSJEmSJGnomcCQJEmSJElDb8oERpJLktyf5As9sYOSbElyZ/t5YIsnyflJxpJ8PslLeuqsb+XvTLK+J35UkltbnfOTZLZtSJIkSZKk0TSdGRiXAmsnxM4Crq2q1cC17TnAicDq9tgIXAhdMgI4BzgGOBo4Zzwh0cps7Km3djZtSJIkSZKk0TVlAqOqPgXsmBBeB2xq25uAk3vil1XnBmB5kmcDJwBbqmpHVe0EtgBr274DqurTVVXAZROONZM2JEmSJEnSiJrtGhjPrKp7AdrPZ7T4CuDunnLbW2yy+PY+8dm08QRJNibZmmTrQ7sm5mAkSZIkSdLeYr4X8UyfWM0iPps2nhisuqiq1lTVmv2XHzTFYSVp75bkd5PcluQLST6U5MlJDktyY1tP6MNJ9m1l92vPx9r+VT3HObvFv5TkhJ742hYbS3JWT7xvG5IkSdJ8mm0C477xyzbaz/tbfDtwaE+5lcA9U8RX9onPpg1JWrKSrADeCKypqiOBfYDTgHcD57X1hHYCG1qVDcDOqnoBcF4rR5LDW70j6NYkel+SfZLsA1xAtw7R4cCrWlkmaUOSJEmaN7NNYGwGxu8ksh74SE/89HankGOBB9vlH9cAxyc5sC3eeTxwTdv3UJJj291HTp9wrJm0IUlL3TLgKUmWAU8F7gVeDlzZ9k9cT2h8naErgePaOLwOuLyqHqmqrwBjdIsvHw2MVdW2qnoUuBxY1+oMakOSJEmaN8umKpDkQ8DLgEOSbKe7m8i7gCuSbADuAk5txa8CTqL7wPsw8FqAqtqR5B3ATa3c26tqfFGK19Pd6eQpwNXtwUzbkKSlrKq+luSP6cbL7wAfB24GdlXVY61Y75pBj68nVFWPJXkQOLjFb+g5dG+diesPHdPqDGpDkiRJmjdTJjCq6lUDdh3Xp2wBZww4ziXAJX3iW4Ej+8QfmGkbkrRUtdlt64DDgF3AX9Nd7jHR+JpBM12bqN+MvRmtZZRkI93trznkWeY4JEmSNDPzvYinJGlx/ALwlar6RlV9D/hb4KfpbjU9nqzuXTPo8fWE2v6n090ye6ZrGX1zkjZ248LKkiRJmgsTGJI0Gu4Cjk3y1LYuxXHA7cAngFNamYnrCY2vM3QKcF2b4bYZOK3dpeQwYDXwGbpLAFe3O47sS7fQ5+ZWZ1AbkiRJ0rwxgSFJI6CqbqRbSPOzwK104/tFwFuAM5OM0a1XcXGrcjFwcIufCZzVjnMbcAVd8uNjwBlV9f22xsUb6BZlvgO4opVlkjYkSZKkeTPlGhiSpL1DVZ1Dt9Byr210dxCZWPa7/HBx5In7zgXO7RO/im4h5Ynxvm1IkiRJ88kZGJIkSZIkaeiZwJAkSZIkSUPPBIYkSZIkSRp6JjAkSZIkSdLQM4EhSZIkSZKGngkMSZIkSZI09ExgSJIkSZKkoWcCQ5IkSZIkDT0TGJIkSZIkaeiZwJAkSZIkSUPPBIYkSZIkSRp6JjAkSZIkSdLQm1MCI8nvJrktyReSfCjJk5McluTGJHcm+XCSfVvZ/drzsbZ/Vc9xzm7xLyU5oSe+tsXGkpzVE+/bhiRJkiRJGk2zTmAkWQG8EVhTVUcC+wCnAe8Gzquq1cBOYEOrsgHYWVUvAM5r5UhyeKt3BLAWeF+SfZLsA1wAnAgcDryqlWWSNiRJkiRJ0gia6yUky4CnJFkGPBW4F3g5cGXbvwk4uW2va89p+49Lkha/vKoeqaqvAGPA0e0xVlXbqupR4HJgXaszqA1JkiRJkjSCZp3AqKqvAX8M3EWXuHgQuBnYVVWPtWLbgRVtewVwd6v7WCt/cG98Qp1B8YMnaWM3STYm2Zpk60O7dsz2pUqSJEmSpEU2l0tIDqSbPXEY8BzgaXSXe0xU41UG7Juv+BODVRdV1ZqqWrP/8oP6FZEkSZIkSXuBuVxC8gvAV6rqG1X1PeBvgZ8GlrdLSgBWAve07e3AoQBt/9OBHb3xCXUGxb85SRuSJEmSJGkEzSWBcRdwbJKntnUpjgNuBz4BnNLKrAc+0rY3t+e0/ddVVbX4ae0uJYcBq4HPADcBq9sdR/alW+hzc6szqA1JkiRJkjSC5rIGxo10C2l+Fri1Hesi4C3AmUnG6NaruLhVuRg4uMXPBM5qx7kNuIIu+fEx4Iyq+n5b4+INwDXAHcAVrSyTtCFJkiRJkkbQsqmLDFZV5wDnTAhvo7uDyMSy3wVOHXCcc4Fz+8SvAq7qE+/bhiRJkiRJGk1zvY2qJEmSJEnSHmcCQ5JGRJLlSa5M8sUkdyT5qSQHJdmS5M7288BWNknOTzKW5PNJXtJznPWt/J1J1vfEj0pya6tzflv/iEFtSJIkSfPJBIYkjY73Ah+rqp8AfpJu/aCzgGurajVwbXsO3W2vV7fHRuBC6JIRdJcGHkN3qd45PQmJC1vZ8XprW3xQG5IkSdK8MYEhSSMgyQHAz9EWNa6qR6tqF7AO2NSKbQJObtvrgMuqcwPd7amfDZwAbKmqHVW1E9gCrG37DqiqT7e7QV024Vj92pAkSZLmjQkMSRoNzwe+Afxlks8leX+SpwHPrKp7AdrPZ7TyK4C7e+pvb7HJ4tv7xJmkjd0k2Zhka5KtD+3aMftXKkmSpCXJBIYkjYZlwEuAC6vqxcC3mfxSjvSJ1Szi01ZVF1XVmqpas//yg2ZSVZIkSTKBIUkjYjuwvapubM+vpEto3Ncu/6D9vL+n/KE99VcC90wRX9knziRtSJIkSfPGBIYkjYCq+jpwd5Ifb6HjgNuBzcD4nUTWAx9p25uB09vdSI4FHmyXf1wDHJ/kwLZ45/HANW3fQ0mObXcfOX3Csfq1IUmSJM2bZYvdAUnSvPlt4ANJ9gW2Aa+lS1RfkWQDcBdwait7FXASMAY83MpSVTuSvAO4qZV7e1WNL1jxeuBS4CnA1e0B8K4BbUiSJEnzxgSGJI2IqroFWNNn13F9yhZwxoDjXAJc0ie+FTiyT/yBfm1IkiRJ88lLSCRJkiRJ0tAzgSFJkiRJkoaeCQxJkiRJkjT0TGBIkiRJkqShZwJDkiRJkiQNPRMYkiRJkiRp6JnAkCRJkiRJQ29OCYwky5NcmeSLSe5I8lNJDkqyJcmd7eeBrWySnJ9kLMnnk7yk5zjrW/k7k6zviR+V5NZW5/wkafG+bUiSJEmSpNE01xkY7wU+VlU/AfwkcAdwFnBtVa0Grm3PAU4EVrfHRuBC6JIRwDnAMcDRwDk9CYkLW9nxemtbfFAbkiRJkiRpBM06gZHkAODngIsBqurRqtoFrAM2tWKbgJPb9jrgsurcACxP8mzgBGBLVe2oqp3AFmBt23dAVX26qgq4bMKx+rUhSZIkSZJG0FxmYDwf+Abwl0k+l+T9SZ4GPLOq7gVoP5/Ryq8A7u6pv73FJotv7xNnkjZ2k2Rjkq1Jtj60a8fsX6kkSZIkSVpUc0lgLANeAlxYVS8Gvs3kl3KkT6xmEZ+2qrqoqtZU1Zr9lx80k6qSJEmSJGmIzCWBsR3YXlU3tudX0iU07muXf9B+3t9T/tCe+iuBe6aIr+wTZ5I2JEmSJEnSCJp1AqOqvg7cneTHW+g44HZgMzB+J5H1wEfa9mbg9HY3kmOBB9vlH9cAxyc5sC3eeTxwTdv3UJJj291HTp9wrH5tSJIkSZKkEbRsjvV/G/hAkn2BbcBr6ZIiVyTZANwFnNrKXgWcBIwBD7eyVNWOJO8Abmrl3l5V4wtWvB64FHgKcHV7ALxrQBuSJEmSJGkEzSmBUVW3AGv67DquT9kCzhhwnEuAS/rEtwJH9ok/0K8NSZIkSZI0muayBoYkSZIkSdKCMIEhSZIkSZKGngkMSZIkSZI09ExgSJIkSZKkoWcCQ5IkSZIkDT0TGJI0QpLsk+RzST7anh+W5MYkdyb5cLvtNUn2a8/H2v5VPcc4u8W/lOSEnvjaFhtLclZPvG8bkiRJ0nwygSFJo+V3gDt6nr8bOK+qVgM7gQ0tvgHYWVUvAM5r5UhyOHAacASwFnhfS4rsA1wAnAgcDryqlZ2sDUmSJGnemMCQpBGRZCXwS8D72/MALweubEU2ASe37XXtOW3/ca38OuDyqnqkqr4CjAFHt8dYVW2rqkeBy4F1U7QhSZIkzRsTGJI0Ov4EeDPwg/b8YGBXVT3Wnm8HVrTtFcDdAG3/g6384/EJdQbFJ2tDkiRJmjcmMCRpBCR5BXB/Vd3cG+5TtKbYN1/xfn3cmGRrkq0P7drRr4gkSZI00LLF7oAkaV78DPDKJCcBTwYOoJuRsTzJsjZDYiVwTyu/HTgU2J5kGfB0YEdPfFxvnX7xb07Sxm6q6iLgIoDnv/BFfZMckiRJ0iDOwJCkEVBVZ1fVyqpaRbcI53VV9RrgE8Aprdh64CNte3N7Ttt/XVVVi5/W7lJyGLAa+AxwE7C63XFk39bG5lZnUBuSJEnSvDGBIUmj7S3AmUnG6NaruLjFLwYObvEzgbMAquo24ArgduBjwBlV9f02u+INwDV0dzm5opWdrA1JkiRp3ngJiSSNmKq6Hri+bW+ju4PIxDLfBU4dUP9c4Nw+8auAq/rE+7YhSZIkzSdnYEiSJEmSpKFnAkOSJEmSJA29OV9CkmQfYCvwtap6RVv07XLgIOCzwK9X1aNJ9gMuA44CHgB+taq+2o5xNrAB+D7wxqq6psXXAu8F9gHeX1XvavG+bcz1tUiSRtMHb7xrVvVefcxz57knkiRJmq35mIHxO3QLuo17N3BeVa0GdtIlJmg/d1bVC4DzWjmSHE63mv0RwFrgfUn2aYmRC4ATgcOBV7Wyk7UhSZIkSZJG0JwSGElWAr8EvL89D/By4MpWZBNwctte157T9h/Xyq8DLq+qR6rqK8AY3WJwRwNjVbWtza64HFg3RRuSJEmSJGkEzXUGxp8AbwZ+0J4fDOxqt9sD2A6saNsrgLsB2v4HW/nH4xPqDIpP1sZukmxMsjXJ1od27Zjta5QkSZIkSYts1gmMJK8A7q+qm3vDfYrWFPvmK/7EYNVFVbWmqtbsv/ygfkUkSZIkSdJeYC6LeP4M8MokJwFPBg6gm5GxPMmyNkNiJXBPK78dOBTYnmQZ8HRgR098XG+dfvFvTtKGJEmSJEkaQbOegVFVZ1fVyqpaRbcI53VV9RrgE8Aprdh64CNte3N7Ttt/XVVVi5+WZL92d5HVwGeAm4DVSQ5Lsm9rY3OrM6gNSZIkSZI0gubjLiQTvQU4M8kY3XoVF7f4xcDBLX4mcBZAVd0GXAHcDnwMOKOqvt9mV7wBuIbuLidXtLKTtSFJkiRJkkbQXC4heVxVXQ9c37a30d1BZGKZ7wKnDqh/LnBun/hVwFV94n3bkCRJkiRJo2leEhjq74M33jWreq8+5rnz3BNJkiRJkvZuJjCGkIkPSZIkSZJ2tyfWwJAkSZIkSZpXJjAkSZIkSdLQ8xISSZIG8JI+SZKk4eEMDEmSJEmSNPRMYEiSJEmSpKFnAkOSJEmSJA09ExiSJEmSJGnouYinJGmvMdtFNSVJkrT3cwaGJEmSJEkaes7AkKQRkORQ4DLgWcAPgIuq6r1JDgI+DKwCvgrRaMjTAAAKuUlEQVT8SlXtTBLgvcBJwMPAb1TVZ9ux1gN/0A79zqra1OJHAZcCTwGuAn6nqmpQG3v4JQ+1ucwU8RaskiRJ/TkDQ5JGw2PA71XVC4FjgTOSHA6cBVxbVauBa9tzgBOB1e2xEbgQoCUjzgGOAY4GzklyYKtzYSs7Xm9tiw9qQ5IkSZo3JjAkaQRU1b3jMyiq6iHgDmAFsA7Y1IptAk5u2+uAy6pzA7A8ybOBE4AtVbWjzaLYAqxt+w6oqk9XVdHN9ug9Vr82JEmSpHnjJSQjZLZTlp2uLI2WJKuAFwM3As+sqnuhS3IkeUYrtgK4u6fa9habLL69T5xJ2pjYr410Mzg45Fkr+hWRJEmSBnIGhiSNkCQ/CvwN8J+r6luTFe0Tq1nEp62qLqqqNVW1Zv/lB82kqiRJkjT7GRhLZcE4b9knaW+R5EfokhcfqKq/beH7kjy7zYx4NnB/i28HDu2pvhK4p8VfNiF+fYuv7FN+sjYkSZKkeTOXGRguGCdJQ6IliS8G7qiq/6dn12ZgfdteD3ykJ356OscCD7bLQK4Bjk9yYBuLjweuafseSnJsa+v0Ccfq14YkSZI0b2adwHDBOEkaKj8D/Drw8iS3tMdJwLuAX0xyJ/CL7Tl0s9q2AWPAXwC/BVBVO4B3ADe1x9tbDOD1wPtbnS8DV7f4oDYkSZKkeTMvi3i6YJwkLa6q+kf6r1MBcFyf8gWcMeBYlwCX9IlvBY7sE3+gXxuSJEnSfJrzIp4uGCdJkiRJkva0OSUwJlswru2f7oJxg+KTLhjXpw1JkiRJkjSCZp3AcME4SZIkSZK0UOayBsb4gnG3JrmlxX6fbvG2K5JsAO4CTm37rqK7heoY3W1UXwvdgnFJxheMgycuGHcp3W1Ur2b3BeP6tSFJkiRJkkbQrBMYLhgnSZIkSZIWypwX8ZQkSZIkSdrTTGBIkiRJkqShN5c1MLTEffDGuxa8zVcf89wFb1OSJEmStPicgSFJkiRJkoaeCQxJkiRJkjT0TGBIkiRJkqSh5xoYWpS1LCRJ/c12TJ7tGkEL3Z4kSdJsOQNDkiRJkiQNPRMYkiRJkiRp6JnAkCRJkiRJQ881MCRJGgGuZyRJkkadCQwtCS5SJ0mSJEl7NxMY2quM+jeMc3l93oFAkiRJ0igzgSFJktSHCV5JkoaLCQxpEnvTh9dRn50iSZIkaWkzgSFJkmZsoZOmS2FWw96UNJckaTGYwJAkSUNvMdYImi1nxEmStGfs1QmMJGuB9wL7AO+vqnctcpckwA+vWnocjyVJkrSnPWmxOzBbSfYBLgBOBA4HXpXk8MXtlSQtPY7HkiRJWgh78wyMo4GxqtoGkORyYB1w+6L2SpKWHsdjDTVnxUmSNBr25gTGCuDunufbgWN6CyTZCGxsTx95zbHP+8IC9W06DgG+udidaIapLzBc/bEvA7xmuPozTH0B+PHF7sACm3I8hqEek4ft/TNM/bEvgw1Nf4ZsPIbh6s9SG48laaTtzQmM9InVbk+qLgIuAkiytarWLETHpmOY+jNMfYHh6o99GWyY+jNMfYGuP4vdhwU25XgMwzsmD1NfYLj6Y18GG6b+DFNfYLj6swTHY0kaaXvtGhh03/Ad2vN8JXDPIvVFkpYyx2NJkiTtcXtzAuMmYHWSw5LsC5wGbF7kPknSUuR4LEmSpD1ur72EpKoeS/IG4Bq62/ZdUlW3TVLlooXp2bQNU3+GqS8wXP2xL4MNU3+GqS8wfP3Zo2YxHsNwnaNh6gsMV3/sy2DD1J9h6gsMV3+GqS+SpDlK1RMuU5YkSZIkSRoqe/MlJJIkSZIkaYkwgSFJkiRJkobeSCQwkqxN8qUkY0nO6rN/vyQfbvtvTLKqZ9/ZLf6lJCcsVl+SrErynSS3tMefzbUv0+zPzyX5bJLHkpwyYd/6JHe2x/pF7sv3e87NvCwOOI3+nJnk9iSfT3Jtkuf17FvoczNZXxbj3Pxmkltbm/+Y5PCefQv9N9W3L3vib2qqvvSUOyVJJVnTE5vX8zKshmk8nkt/FuP943jseDzL/izJ8Xg6/ekpt2THZEkaOVW1Vz/oFoz7MvB8YF/gn4DDJ5T5LeDP2vZpwIfb9uGt/H7AYe04+yxSX1YBX1iEc7MKeBFwGXBKT/wgYFv7eWDbPnAx+tL2/esinJufB57atl/f87tajHPTty+LeG4O6Nl+JfCxtr0Yf1OD+jKvf1PT6Usrtz/wKeAGYM2eOC/D+pjm72tBxuN56M+Cv39wPHY8nl1/ltx4PN3+tHJLdkz24cOHj1F8jMIMjKOBsaraVlWPApcD6yaUWQdsattXAsclSYtfXlWPVNVXgLF2vMXoy54wZX+q6qtV9XngBxPqngBsqaodVbUT2AKsXaS+7AnT6c8nqurh9vQGYGXbXoxzM6gve8J0+vOtnqdPA8ZXA17wv6lJ+jLfpvP3DfAO4D3Ad3ti831ehtUwjcdz7c98czyeW38cjx2PZ9yfZimPyZI0ckYhgbECuLvn+fYW61umqh4DHgQOnmbdheoLwGFJPpfkk0l+dg79mEl/9kTdPXG8JyfZmuSGJCfPoR+z7c8G4OpZ1t2TfYFFOjdJzkjyZboPhm+cSd0F6gvM79/UlH1J8mLg0Kr66EzrjohhGo/n2h9Y4PfPHqq7J47neNy/L+B4vFDj8bT645gsSaNn2WJ3YB70+6ZsYsZ/UJnp1F2ovtwLPLeqHkhyFPD3SY6Y8G3GnujPnqi7J4733Kq6J8nzgeuS3FpVX16I/iT5NWAN8NKZ1l2AvsAinZuqugC4IMmrgT8A1k+37gL1Zb7/pibtS5InAecBvzHTuiNkmMbjufZnQd8/e7Dunjie43H/voDj8UKNx1P2xzFZkkbTKMzA2A4c2vN8JXDPoDJJlgFPB3ZMs+6C9KVNY3wAoKpuprse89/OoS/T7c+eqDvvx6uqe9rPbcD1wIvn0Jdp9yfJLwBvBV5ZVY/MpO4C9WXRzk2Py4HxbxoX+33zeF/2wN/UVH3ZHzgSuD7JV4Fjgc1t0bj5Pi/DapjG4zn1ZxHeP3uq7rwfz/HY8XimfVmkzziOyZI0imoIFuKYy4NuFsk2ukWYxhdxOmJCmTPYfZG2K9r2Eey+iNM25rbA1Vz68mPjbdMtSPU14KA9fW56yl7KExeN+wrdomgHtu1Z92eOfTkQ2K9tHwLcSZ+FuvbA7+rFdB+yVk+IL/i5maQvi3VuVvds/zKwdRH/pgb1ZV7/pmbyHm7lr+eHC8bN63kZ1sc0f18LMh7PQ38W7f2D47Hj8cz6s+TG45m+j1v561liY7IPHz58jOJj0TswLy8CTgL+uX2geGuLvZ3umxGAJwN/TbdI02eA5/fUfWur9yXgxMXqC/AfgdvaP6ifBX55gc7Nv6f7JuLbwAPAbT11X9f6OQa8drH6Avw0cGs7N7cCGxbo3PxP4D7glvbYvIjnpm9fFvHcvLe9X28BPkHPh8ZF+Jvq25c98Tc1VV8mlL2e9mF5T5yXYX1M4/e1YOPxXPqzGO8fHI8dj2fXnyU5Hk+nPxPKXs8SHJN9+PDhY9QeqSokSZIkSZKG2SisgSFJkiRJkkacCQxJkiRJkjT0TGBIkiRJkqShZwJDkiRJkiQNPRMYkiRJkiRp6JnAkCRJkiRJQ88EhiRJkiRJGnr/P8z4rd7xlE3bAAAAAElFTkSuQmCC\n",
      "text/plain": [
       "<Figure size 1080x504 with 5 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "fig=plt.figure(figsize=(15,7), constrained_layout=False)\n",
    "col, row = 3,2\n",
    "type_index = [list(filter(lambda i: term in names_full[i], range(len(names_full)))) for term in term_types]\n",
    "for i, term in enumerate(term_types):\n",
    "    ind = list(filter(lambda j: term in names_full[j], range(len(names_full))))\n",
    "    corrs = np.asarray(list(compress(terms_full, ind))).flatten()\n",
    "    fig.add_subplot(row, col, i+1)\n",
    "    plt.ticklabel_format(axis=\"y\", style=\"sci\")\n",
    "    plt.title(f'Jaccard index distribution: {term}')\n",
    "    sns.distplot(corrs, kde=False)\n",
    "    plt.xlim(0, 0.4)\n",
    "plt.tight_layout()\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Unfortunately, we did not use the 'neighbor or neighbors' transformation on our hypothesis generation, however we predict that it might lead to more valid hypotheses that does not necessarily depend so heavily on the current scientific literature."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### 'Hypothesis-First' Attractiveness Algorithm\n",
    "\n",
    "At its core, the hypothesis-first attractiveness algorithm relies on the same principle as Voytek's algorithm: \"a friend-of-a-friend should be a friend\". <br>\n",
    "\n",
    "The hypothesis-first algorithm improves on this idea by evaluating \"friend of a friend\" criterion over all parent terms:\n",
    "\n",
    "<img src=\"https://drive.google.com/uc?id=1orAvoXuUt-u-laSwMacmIu9lIdevPd_a\" alt=\"description of algorithm\" width = '800'>\n",
    "\n",
    "The total number of parent terms that strongly relate two terms is the score of \"attractiveness\" between two terms. If two terms are strongly related to one another, they should share this link for <i>many</i> parent terms. By using this method, we are able to store <i>which</i> parent terms relate the two terms. Moreover, since our terms can be partitioned into 5 term categories (e.g., function), we are also able to analyze <i>in which categories</i> are the terms related. This gives us several advantages: \n",
    "- robustness to spurious correlations (popular topics dominating generated hypotheses)\n",
    "- ordinal - not binary - measurement scale allows us to rank and compare how good the hypotheses are\n",
    "- comparability across time scales (did the attractiveness go up or down?)\n",
    "- greater specificity: now that we know this hypothesis is attractive, <i>where</i> should we start looking? We should look for similarities in their parents to find out.\n",
    "\n",
    "Given three terms, P, H1, and H2, the algorithm employed in the Voytek & Voytek paper recommends terms H1 and H2 as a hypothesis if the following requirements are met:\n",
    "- There exists a term P which has a conjunction with term H1 of over 1000 papers, and a conjunction with term H2 of over 1000 papers. \n",
    "- Terms H1 and H2 have a conjunction of less than 30 papers.\n",
    "\n",
    "\n",
    "\n",
    "A potential area for improvement of this generation method is its lack of robustness in regards to it being skewed towards popular or commonly used terms in the literature. The hypothesis first model takes a different approach, in order to address this issue. In our model, the threshold that we use to determine a good hypothesis depends on the parent term. For candidate hypothesis terms $h_1$ and $h_2$ and parent term $p$, a triplet is defined as being a good hypothesis when:\n",
    "- The jaccard index between $p$ and $h_1$ is in the top $n$ percentile of jaccard indices associated with parent $p$. \n",
    "- The jaccard index between $p$ and $h_2$ is in the top $n$ percentile of jaccard indices associated with parent $p$. \n",
    "- The jaccard index between $h_1$ and $h_2$ is in the bottom $l$ percentile of jaccard indices associated with parent $p$.\n",
    "\n",
    "The bottom threshold needs to be adjusted to reflect the bottom $l$ percentile of jaccard indices associated with hypothesis $h_1$ or $h_2$, however the current parameters $l$ is tested on (0.4, 0.55) almost always necessitates $h_1$ and $h_2$ to have a jaccard index of 0. The upper threshold parameters are currently (0.95, 0.85), respectively. This gives us a <i>strict</i> and a <i>lax</i> attractiveness measure: \n",
    "- $l = 0.40$, $n = 0.95$\n",
    "- $l = 0.55$, $n = 0.85$"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "hf = HypothesisFirst(generate_hypothesis_matrices=True)\n",
    "hf.plot_attractiveness_distribution()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Distribution of attractiveness scores of predicted hypotheses for each metric (relaxed and strict)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "##### These are the top 10 most attractive hypotheses in the strict and lax algorithms, based on data pre-2000"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "scrolled": false
   },
   "outputs": [],
   "source": [
    "hf.generate_top_k_hypotheses(k=10, mode='relaxed')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "hf.generate_top_k_hypotheses(k=10, mode='strict')"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Are these hypotheses valid? Looking at <i>only</i> the top hypothesis for the two metrics, it appears to be the case. <br>\n",
    "\n",
    "The best hypothesis for the strict metric is a link between the <b>inferior parietal lobule</b> and <b>broca's area</b>. According the [first result on google](https://thebrain.mcgill.ca/flash/i/i_10/i_10_cr/i_10_cr_lan/i_10_cr_lan.html) when searching up these two terms, it appears to be the case:\n",
    "\n",
    "> For many years, scientists’ understanding of how the brain processes language was rather simple: they believed that Wernicke’s area interpreted the words that we hear or read, then relayed this information via a dense bundle of fibres to Broca’s area, which generated any words that we spoke in response. But subsequent experiments with brain imaging have revealed the existence of a third region of the brain that is also indispensable for language. <br> <br>\n",
    "> This region is the inferior parietal lobule, also known as “Geschwind’s territory”, in honour of the American neurologist Norman Geschwind, who foresaw its importance as early as the 1960s. Brain imaging studies have now shown that the inferior parietal lobule (angular gyrus and supramarginal gyrus) is connected by large bundles of nerve fibres to both Broca’s area and Wernicke’s area. Information might therefore travel between these last two areas either directly, via the arcuate fasciculus, or by a second, parallel route that passes through the inferior parietal lobule.\n",
    "\n",
    "This is supported by Web of Science analytics, which shows that no articles were published (pre-2000, hence the chart starting at 2000) containing these two terms in their title: \n",
    "\n",
    "(publications per year)\n",
    "<img src=\"https://drive.google.com/uc?id=1fiEENgpwikgLOYOUfqU4uv_7EkHoI5d7\" alt=\"description of algorithm\" width = '800'>The best hypothesis for the lax metric is a link between the <b>verbal memory</b> and <b>eye movement</b>. According a research article published in 2016 named \"[Listen up, eye movements play a role in verbal memory retrieval](https://www.researchgate.net/publication/269820004_Listen_up_eye_movements_play_a_role_in_verbal_memory_retrieval)\" when searching up these two terms, it appears to be the case. Here is the Web of Science publication-over-time chart: \n",
    "\n",
    "<img src=\"https://drive.google.com/uc?id=1GpOpn4-bk3e5TlxV86OdABXWXtC5xtEF\" alt=\"description of algorithm\" width = '800'>\n",
    "The following graph demonstrates the ability of the hypothesis first model to find and recommend hypotheses for rarely studied terms. The inferior parietal lobule had only been studied in around 100 papers up to the year 2000. In the following years, the inferior parietal lobule was heavily explored, climbing up to numbers in the thousands of papers. The hypothesis first model  predicted a strong connection between broca’s area and the inferior parietal lobule, which ended up being studied in the post 2000 years.  The model utilized by Voytek and Voytek would have been unable to predict this hypothesis, simply due to the small amount of papers written about the inferior parietal lobule: \n",
    "\n",
    "<img src=\"https://drive.google.com/uc?id=1Zx-5ky402vhImHAhOJzIuKcfO6cvEhg-\" width='800'>\n",
    "\n",
    "\n",
    "Although a few papers were published pre-2000, the increase post-2000 is quite significant. There is good evidence that this algorithm is producing fruitful hypotheses."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "##### These are the top 10 most attractive hypotheses for the future (post-2020) using the strict and lax algorithms, based on data from 2000-present"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "lax_pre, lax_post, strict_pre, strict_post = hf.get_hypothesis_matrices()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "hf.generate_top_k_hypotheses(k=10, mode='relaxed', lm=lax_post)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {
    "scrolled": true
   },
   "outputs": [],
   "source": [
    "hf.generate_top_k_hypotheses(k=10, mode='strict', sm=strict_post)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "#### Headline from July 2020 mentioning a link between projections from the thalamus (location of pulvinar) and the cerebellum. The top hypothesis for the the strict metric on post-2000 data."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "<img src='https://drive.google.com/uc?id=1cj7VpbFfrCpiUrBu-DvwFZHmSnIwQCz3'>"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "hf.smoothed_jaccard()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "It seems that our top hypotheses (blue) where (index 0 is the most attractive) are performing better than a random sample of hypotheses, in terms of the difference in connectivity pre-2000 vs post-2000. This suggests that our top hypotheses are getting studied more than any random hypothesis on average. This serves in some capacity as a validation of the algorithm predicting hypotheses better than chance."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "hf.parents()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "When a hypotheses gets counted as attractive, what are the parents that it comes from? At first glance, it seems like there's an bias towards functions counting all the hypotheses, however we see that this is not the case. The bias towards functions as parents is explained by the fact most of the terms in our dataset are function terms."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "hf.scaled_frequency()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "And so when we scale by term category frequency, we see something interesting. The parents of a hypothesis are mainly of the same term category as the hypotheses themselves. "
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "Overall, there is still a lot of work to be done on the hypothesis first algorithm (e.g. implementing it on the neighbors-of-neighbors data) however it does seem to be a promising approach to hypothesis discovery."
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Results"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### Hypothesis Generation Tool"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Sort terms alphabetically\n",
    "search_terms = [i for i in df.term.unique()]\n",
    "sorted_terms = sorted(search_terms, key=lambda x: x[0].lower())"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Generate GUI \n",
    "hyp_term = widgets.Dropdown(\n",
    "    options=sorted_terms,\n",
    "    value=sorted_terms[0],\n",
    "    description='Search Term:',\n",
    "    disabled=False,\n",
    ")\n",
    "\n",
    "hyp_button = widgets.Button(\n",
    "    description='View Hypotheses',\n",
    "    disabled=False,\n",
    "    button_style='info',\n",
    "    tooltip='Get Data',\n",
    "    icon='arrow-right'\n",
    ")\n",
    "       \n",
    "\n",
    "output_hyp = widgets.Output()\n",
    "output_hyp1 = widgets.Output()\n",
    "\n",
    "def display_side_by_side(*args,titles=cycle([''])):\n",
    "    html_str=''\n",
    "    for df,title in zip(args, chain(titles,cycle(['</br>'])) ):\n",
    "        html_str+='<th style=\"text-align:center\"><td style=\"vertical-align:top\">'\n",
    "        html_str+=f'<h2>{title}</h2>'\n",
    "        html_str+=df.to_html().replace('table','table style=\"display:inline\"')\n",
    "        html_str+='</td></th>'\n",
    "    display_html(html_str,raw=True)\n",
    "    \n",
    "# Event Handler for Button Click\n",
    "def on_button_clicked(b):\n",
    "    with output_hyp:\n",
    "        output_hyp.clear_output()\n",
    "        display(hf.generate_top_k_hypotheses(k=10, mode='relaxed', term=hyp_term.value))\n",
    "    with output_hyp1:\n",
    "        output_hyp1.clear_output()\n",
    "        display(va.show_hypothesis(hyp_term.value).iloc[:10])\n",
    "\n",
    "\n",
    "\n",
    "hyp_button.on_click(on_button_clicked)\n",
    "hyp_box = widgets.HBox([hyp_term, hyp_button])\n",
    "\n",
    "table1_box = widgets.VBox([widgets.Text('Hypothesis-First Algorithm'),output_hyp])\n",
    "table2_box = widgets.VBox([widgets.Text('Voytek\\'s Algorithm'), output_hyp1])\n",
    "\n",
    "table_box = widgets.HBox([table1_box , table2_box])\n",
    "\n",
    "widgets.VBox([hyp_box, widgets.HBox([]), table_box])"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Analysis"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "<img src=\"https://drive.google.com/uc?id=1xsLzwZz0vSJ6Z3gWA5uRVtvK6bz8odfi\">"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "The performance of both models is difficult to properly convey given the sheer scope of true negatives, i.e. term combinations that experienced no growth in the pre to post 2000 period. This is because it is significantly more likely for a term pair to not see any growth than for a term pair to explode in occurrence. Hence, when visualizing the performance of the model it is only relevant to compare the rate of true positives and false positives. We can visualize this in a side-by-side bar chart, contrasting the performance of the original Voytek model and the new Attractiveness model.  \n",
    "\n",
    "To evaluate what constitutes a true positive vs a false positive we use the distribution of percentage value increase/decrease seen in term co-occurrence in the pre- to post-2000s. Anything above a standard deviation of zero in percentage increase constitutes a “positive.” In our dataset, 20% of term pairs were positive, with the remaining 80% fell below the threshold and was marked as negative.\n",
    "\n",
    "\n",
    "The contrast between the Voytek model and the Attractiveness model is significant in two major ways. Primarily we can see a stark contrast between the number of true positives within the model, with the attractiveness model producing many more plausible hypotheses. Additionally, we can see that the Attractiveness model also predicts a greater number of hypotheses that experienced insignificant growth over the pre to post 2000s period. Despite this, the ratio of true positives to false positives is significantly more favorable for the Attractiveness model, suggesting that a randomly selected term pair recommended by the model has a greater chance of experiencing occurrence growth in the post-2000 period. \n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Discussion and Further Directions\n",
    "Based on the approaches implemented so far and the success we have seen, there is a range of different directions we could choose to further develop our architecture for automated hypothesis generation.\n",
    "\n",
    "**A more descriptive dataset:**\n",
    "Currently, our architecture is limited by the scope of terms we are investigating and the data we are capturing related to those terms. To be specific the current architecture leans heavily on the scraped term-pair counts of just PubMed published literature. Whilst this is sufficient as a proof of concept, it isn’t comprehensive and there are many ways we can further develop this stage of the project. One idea was to explore the citations of the papers we are scraping and the h-index of the authors publishing said papers. Based on how the current architecture works, terms can co-occur frequently in a range of papers, however, these papers can be largely insignificant, rarely being cited or reviewed. By utilizing the citations of each paper and how citations are growing over time we can add an extra dimension of scrutiny to our produced hypotheses, potentially boosting the utility of the output.\n",
    "\n",
    "**Addition of NLP to add extra insight into scraped hypotheses:**\n",
    "One proposed area for further investigation is the addition of NLP-driven insights into the data collection process. Currently, the models derive insight from data relating to term occurrence. The addition of sentiment analysis could add a level of scrutiny to the number and type of occurring matches, possibly resulting in more accurate hypotheses. This is because simply capturing term occurrence fails to account for how the terms are occurring together. For example, take into account these two passages:\n",
    "- Alzheimer's disease is related to the deterioration of the prefrontal cortex. \n",
    "- Alzheimer's disease has no relation to the deterioration of the prefrontal cortex. \n",
    "\n",
    "Although these statements communicate contradictory information, our current algorithm counts them the same. By building functionality for understanding sentiment, our model would be better able to make better decisions relating to the hypothesis it produces.\n",
    "\n",
    "**Construction of a research tool:**\n",
    "Following the testing and finalization of the hypothesis generation framework, the team is interested in developing a Python Package Index API for public use. This API would function as a streamlined way for prospective researchers to query for hypotheses based on our refined models, allowing for deployment in the wider scientific community. \n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "## Conclusion\n",
    "Our goal was to improve upon the hypothesis generation methods presented in the 2012 Voytek & Voytek paper, to identify and rank candidate hypotheses accurately and then to validate them by their characteristics (particularly co-occurrence data) in future time periods. The favorable true positive ratio for the Attractiveness model is indicative of a greater number of plausible hypotheses being generated by the Attractiveness model than by the Voytek model. In other words,  a randomly selected term pair recommended by the Attractiveness model- therefore, based on the number of parent terms that strongly relate two terms- has a greater chance of experiencing occurrence growth in the post-2000 period. These results support the promise of implementing a hypothesis generation tool that utilizes novel metrics and measures of association between topics to suggest viable, cutting-edge areas of research. Prominent areas for future exploration that we believe will be useful in such a task are gathering and extracting more descriptive data, such as author information, h-index, and various context-specific features, as well as the application of sentiment analysis and other natural language processing (NLP)  tools for producing more meaningful relationships and representations from the data. \n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "### References\n",
    "1. Donoghue | *LISC: A Python Package for Scientific Literature Collection and Analysis* (2019)\n",
    "2. Sybrandt, et al. | *MOLIERE: Automatic Biomedical Hypothesis Generation System* (2017)\n",
    "3. Sybrandt, et al. | *AGATHA: Automatic Graph-mining And Transformer based Hypothesis generation Approach* (2020)\n",
    "4. Voytek, Voytek | *Automated cognome construction and semi-automated hypothesis generation* (2012)\n",
    "5. Wilson, et al.  | *Automated literature mining and hypothesis generation through a network of Medical Subject Headings* (2018)\n"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.9.13"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}
